[
  {
    "path": ".gitignore",
    "content": "*.o\nglitch.alsa\nglitch.pulse\nglitch.jack\nglitch.mac\nglitch.exe\n\nweb/dist\n\nsamples\n\n.idea/\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: go\n\nmatrix:\n  include:\n    - os: linux\n      before_install:\n        - sudo add-apt-repository ppa:webkit-team/ppa -y\n        - sudo apt-get update\n        - sudo apt-get install libwebkit2gtk-4.0-dev -y\n      addons:\n        apt:\n          packages:\n            - libasound2-dev\n            - libpulse-dev\n      script:\n        - ./dist/release-linux.sh\n    - os: osx\n      osx_image: xcode8.3\n      script:\n        - ./dist/release-macos.sh\n\ninstall:\n  - git fetch --unshallow --tags\n\ndeploy:\n  provider: releases\n  api_key: $GITHUB_ACCESS_TOKEN\n  file_glob: true\n  file: \"dist/glitch-*.tar.gz\"\n  skip_cleanup: true\n  on:\n    tags: true\n"
  },
  {
    "path": "API.md",
    "content": "# Glitch API\n\nGlitch is an algorithmic synthesizer. It creates music with math. Below is a\nlist of functions that you can use in Glitch to generate or modify the sound.\n\n## Input and output\n\nMusic can be seen as a function `f(t)` where `t` is increasing in time.\n\nGlitch increases a variable `t` at `8000/sec` rate and it can be a real number if your\nhardware sample rate is higher. Expression result is expected to be in range\n`[-1..1]` otherwise it will be clipped.\n\nMusic expression is evaluated once for each audio frame. You can use numbers,\nmath operators, variables and functions to compose more complex expressions.\n\nMost of the functions keep track of time internally, so you only have to\nspecify other arguments such as frequency.\n\n## Math\n\nEverything in Glitch is a number. Time is a number. Notes are represented as\nnumbers. Every signal is represented as the value of its current amplitude.\n\nThat is why music in Glitch is made using the following arithmetic operators:\n\n* Arithmetics: `+` `-` `*` `/` `%` (modulo) `**` (power)\n* Bitwise: `&` `|` `^` (xor or bitwise not) `<<` `>>`\n* Compare: `==` `!=` `<` `<=` `>` `>=` (return 1 or 0)\n* Grouping: `(` `)` `,` (separates expressions or function arguments)\n* Conditional: `&&` `||` ([short-circuit operators][short-circuit])\n* Assignment: `=` (left side must be a variable)\n\nThese arithmetic operators have the same meaning as they have in most\nprogramming languages. The priority of the operators is the one [used in C\nlanguage][operator-priority].\n\nSince everything in Glitch is a number, `+` can be used to mix signals\ntogether. `-` can be used to subtract one signal from another.\n\n> Example: `piano+drums` returns two signals (piano and drums) mixed together.\n\nIn a similar manner, `*` can be used to modulate signals. \n\n> Example: `piano*lfo` modulates piano signal with the lfo signal value.\n\nParenthesis can be used to group subexpressions, but also to pass parameter\ntuples instead of single arguments. If a function takes a tuple as an argument\nit will be mentioned in the documentation.\n\nComma operator separate function arguments. Outside of functions comma allows\nto evaluate parts of the formula one by one, from left to right. The result of\nthe last part is returned. Comma is so frequently used in Glitch, that you may\nomit commas at the end of line:\n\n```\n# Comma at the end of line is optional:\nx=(a=1,b=2,a+b)\nx = (\n  a = 1\n\tb = 2\n\ta + b\n)\n```\n\n> Example: `x=5, y=6, x+y`. X is set to 5, then y is set to 6, then 11 is returned.\n\n> Example: `x=(a=1,a+2). A is set to 1, then 3 is retured and assigned to X.\n\nShort circuit operators (`&&` and `||`) are used to achieve the effect of\nif/else statements. `&&` evaluates the rigth side only if the left side is\ntrue. `||` evaluates the right side only if the left side is false.\n\n> Example: `(b && 1 || 0)` returns 1 if b is non-zero (true) and returns 0 if b is zero.\n\n## Math functions\n\n### l(x)\n\n`l(x)` returns a binary logarithm (log2) of `x`. Useful to convert frequencies\nto note values. It is rarely used in Glitch.\n\n> Example: `note=l(440) * 12` - returns note value for the frequency 440Hz, which is `A4`, or 0.\n\n### r(max=1)\n\n`r(max)` returns a random number in the range [0..max), it sounds like white\nnoise, good for synthesizing drums or making randomized music patterns.\n\n`max` parameter is optional and by default `r()` returns numbers in the range `[0..1)`\n\n> Example: `r(100)` - returns a random number in the range [0..100)\n\n### s(phase=0)\n\n`s(phase)` returns a sine wave amplitude for the given phase. Phase must be in the range `[0..1)`. Returned value is in the range `[-1..1]`.\n\n> Example: [x=x+1, s(x*0.006)](http://naivesound.com/glitch/#x%3Dx%2B1%2C%20s(x*0.006)) - plays a sine wave at 437Hz\n\n### byte(x=127)\n\n`byte(x)` converts the value `x` from [Bytebeat][bytebeat] range `[0..255]` to\nthe common amplitude range `[-1..1]`. It is used to play short Bytebeat\nformulas in Glitch as well as add effects to them or mix with other sounds.\n\n> Example: [byte(t*5&(t>>7)|t*3&(t*4>>10))](http://naivesound.com/glitch/#byte(t*5%26(t%3E%3E7)%7Ct*3%26(t*4%3E%3E10))) - Bytebeat music\n\n## Sequencers\n\nSequencers are used to describe melodies, chord progressions, rhythmic patterns\nor other repetitive parts of your song.\n\n### a(index, values...)\n\n`a(i, x0, x1, x2, ...)` returns x[i] value for the given index i. If index is\nnegative or out of array bounds - it gets wrapped around.\n\n> Example: `a(0, 5, 6, 7)` - returns 5, because it is at index 0 in the list of values.\n\n> Example: `a(2, 5, 6, 7)` - returns 7\n\n> Example: `a(3, 5, 6, 7)` - returns 5\n\n> Example: `a(4, 5, 6, 7)` - returns 6\n\n> Example: `a(-1, 5, 6, 7)` - returns 7\n\n> Example: [byte(t*a(t>>11,4,5,6))](http://naivesound.com/glitch/#byte(t*a(t%3E%3E11%2C4%2C5%2C6))) - plays saw-tooth wave with 3 changing frequencies in a loop\n\n### seq((offset, bpm), (step, values...)...)\n\n`seq(bpm, x0, x1, x2, ...)` returns x[i] value where i is increated at given tempo (`bpm`).\n\nValues can be numeric constants, variables or expressions. Values are evaluated\nonce per beat and the result is remembered and then reused.\n\nValues can be a tuples. In a pair of numbers like (2,3) the first number is\nrelative step duration and the second one is the actual value. This means value\n3 will be played for 2 beats.\n\nValue can be a tuple of more than 2 numbers. The first number is always a\nrelative step duration, and the other values are gradually slided, e.g.\n(0.5,2,4,2) is a value changed from 2 to 4 back to 2 and the step duration is\nhalf of a beat.\n\n> Example: [byte(t*seq(120,4,5,6))](http://naivesound.com/glitch/#byte(t*seq(120%2C4%2C5%2C6)))\n\n> Example [byte(t*seq(120,(1,4,6,4),(1/2,5),(1/2,6)))](http://naivesound.com/glitch/#byte(t*seq(120%2C(1%2C4%2C6%2C4)%2C(1%2F2%2C5)%2C(1%2F2%2C6))))\n\n### loop((offset, bpm), (step, expr)...)\n\n`loop(bpm, x0, x1, x2, ...)` evaluates x[i] increasing i at the given tempo.\n\nUnlike `seq()`, `loop()` evaluates x[i] for every audio frame, so other\nfunctions can be used as loop values.\n\n`seq()` is often used to change pitch or volume, `loop()` is often used to\nschedule inner sequences and loops.\n\n> Example: [byte(t*loop(30,seq(240,4,5),seq(240,4,6)))](http://naivesound.com/glitch/#byte(t*loop(30%2Cseq(240%2C4%2C5)%2Cseq(240%2C4%2C6))))\n\n`seq()` and `loop()` return NaN at the beginning of each step. NaN value is\nused by the instruments and effects to detect the start of a new note.\n\n## Instruments\n\nOscillators are the building blocks of synthesizers. Oscillator phase is\nmanaged internally, only frequency must be provided (in Hz).\n\n### sin(freq)\n\n`sin(freq)` plays a sine wave at the given frequency. If frequency is negative\n- sine wave is played \"backwards\". The start of the wave is always at zero\namplitude.\n\n### tri(freq)\n\n`tri(freq)` plays a trianglular wave. Like `sin()`, is starts at zero value and\nplays backwards if frequency is a negative value.\n\n## saw(freq)\n\n`saw(freq)` plays a sawtooth wave. Like `sin()` and `tri()`, is starts at zero\nvalue and plays backwards if frequency is a negative value.\n\n## sqr(freq, pwm=0.5)\n\n`sqr(freq, pwm)` plays a square wave with the given pulse width. By default if\nno pulse width is given it is assumed to be 50%, or `0.5`.\n\n> Example: [(sin(220)+tri(440))/2](http://naivesound.com/glitch/#(sin(220)%2Btri(440))%2F2)\n\n## fm(freq, mf1=0, ma1=0, mf2=0, ma2=0, mf3=0, ma3=0)\n\n`fm(freq, mf1, ma1, mf2, ma2, mf3, ma3)` is a 3-operator FM synthesizer, `mf`\nis an operator frequency ratio, `ma` is an operator amplification. Operators M2\nand M1 are parallel, M3 is sequential to M1.\n\n> Example: [fm(seq(120,440,494),1,0.5,0.01,1)](http://naivesound.com/glitch/#fm(seq(120%2C440%2C494)%2C1%2C0.5%2C0.01%2C1))\n\n## tr808(instr, volume=1, pitch=0)\n\n`tr808(instr, volume)` is a set of samples from the TR808 drum kit.\n\nThe following instruments are supported (you can use two-letter constants\ninstead of remembering numbers):\n\n* `BD=0` - Bass drum\n* `SD=1` - Snare drum\n* `MT=2` - Middle tom\n* `MA=3` - Maracas\n* `RS=4` - Rimshot\n* `CP=5` - Clap\n* `CB=6` - Cowbell\n* `OH=7` - Open hat\n* `HH=8` - High hat\n\n> Example: [tr808(SD,seq(240,1,0.2))](http://naivesound.com/glitch/#tr808(SD%2Cseq(240%2C1%2C0.2)))\n\n## Effects and signal processing\n\n### lpf(signal, cutoff=200, Q=1)\n\n`lpf(signal, cutoff, Q)` is a bi-quadratic low-pass filter. It passes the\nsignals with the frequencies lower than the given cutoff frequency and\nattenuates the signals with the frequency higher than cutoff. Q is the Q-factor\nof the filter.\n\n### hpf(signal, cutoff=200, Q=1)\n\n`hpf(signal, cutoff, Q)` is a bi-quadratic high-pass filter. It passes the\nsignals with the frequencies higher than the given cutoff frequency and\nattenuates the signals with the frequency lower than cutoff. Q is the Q-factor\nof the filter.\n\n`hpf()` is complementary to the `lpf()`.\n\n### bpf(signal, cutoff=200, Q=1)\n\n`bpf(signal, cutoff, Q)` is a bi-quadratic band-pass filter. It passes the\nsignals with the frequencies in the range around the given cutoff frequency and\nattenuates other signals. Q is the Q-factor of the filter and defines the width\nof the range.\n\n### bsf(signal, cutoff=200, Q=1)\n\n`bsf(signal, cutoff, Q)` is a bi-quadratic band-stop filter. Some variants of\nit are known as Notch filter.  It passes the signals with the frequencies\noutside of the range around the given cutoff frequency and attenuates the rest\nof the signals. Q is the Q-factor of the filter and defines the width of the\nrange.\n\n### delay(signal, time=0, damp=0, feedback=0)\n\n`delay(signal, time, damp, feedback)` is a simple delay effect. It delays the\nincoming signal for the given time in seconds. The signal is damped to the\ngiven level and on further loops of the delay line is amplified by the feedback\nlevel.\n\n### env((gate, signal), a=0.01, r=10, acur=0.5, rcur=0.5)\n\n`env(signal)` is a simple attack-release signal envelope. Attack and release\ntime are specified in seconds. The curve of the attack and release parts can be\ncontrolled using `acur` and `rcur` parameters. Values are in the range of\n[0..1] and make logarithm or exponential curves. The value of 0.5 makes a\nlinear shape.\n\n> Example: [env(sin(seq(240,440,480)),0.01,0.3,0.5,0.2)](http://naivesound.com/glitch/#env(sin(seq(240%2C440%2C480))%2C0.01%2C0.3%2C0.5%2C0.2))\n\n### mix(signal...)\n\n`mix(z1, z2, ...)` mixes signals together. It soft-clips the resulting signal if the\nvalue is outside of the [-1..1] range.\n\n> Example: [mix(0.3*sin(440),0.7*tri(220))](http://naivesound.com/glitch/#mix(0.3*sin(440)%2C0.7*tri(220)))\n\n## Notes and melody\n\n### C0..B#8\n\nNotes in Glitch are represented as numbers, often integer. The note of A4 is\nconsidered to be 0. A#4 = 1, G#4 = -1 etc.\n\nGlitch provides a set of useful constants for note indices (not frequencies).\nAny note in the range C0..B#8 can be represented as a constant.\n\n### hz(note)\n\n`hz(note)` returns note frequency in hertz.\n\n> Example: [sin(hz(A4))](http://naivesound.com/glitch/#sin(hz(A4))) - plays sine wave at 440 Hz, which is A4 note.\n\n### scale(index, mode=0)\n\n`scale(i, mode)` returns a note index at position i in the given scale. Default\nmode is major scale.\n\n> Example: [tri(hz(scale(seq(480,r(5)))))](http://naivesound.com/glitch/#tri(hz(scale(seq(480%2Cr(5)))))) - plays random notes from the major scale\n\n## Polyphony and live MIDI input\n\n### each(vars, expr, values...)\n\n`each(vars, expr, values...)` applies and adds up the given expression\nevaluated for each of the values from the list.  Useful to construct chords.\n\n> Example: [each((vol,note),vol*sin(hz(note)),(0.8,0),(0.5,4),(0.5,7))](http://naivesound.com/glitch/#each((vol%2Cnote)%2Cvol*sin(hz(note))%2C(0.8%2C0)%2C(0.5%2C4)%2C(0.5%2C7))%0A)\n\n### MIDI input\n\nIf a MIDI keyboard is available, the following variables are set as you press the keys:\n\n* `k0, k1, k2, ..., k9` are MIDI keyboard note indices that are currently played.\n* `v0, v1, v2, ..., v9` are MIDI keyboard note velocities in the range [0..1]. Velocity quickly fades out if the key is released.\n* `g0, g1, g2, ..., g9` are MIDI keyboard gate values that are either 1 if key is pressed or NaN otherwise.\n\nAdditionally, there are two variables, `x` and `y`, that are controlled using\nthe pitch and the mod wheel of the MIDI keyboard. They can also be controlled\nmy moving a mouse custor while keeping the Control key pressed.\n\n### bpm\n\n`bpm` is a special variable that allows to specify a tempo of the song. It is\nused to synchronize user input with the song tempo, so that the changes user\nmakes in the formula would not interrupt the rhythm of the song.\n\n> Example: `bpm=120/4` - set tempo to 4 beats at 120 beat per minute.\n\n## Macros\n\nTo make reusable snippets of code and to simplify dealing with polyphony Glitch\nsupports macros. Macros look like functions and are automatically expended as you use them.\n\nMacro definition starts with a dollar sign function with the macro name as the\nfirst parameter: `$(mymacro, ...)`. Macro can be later be called by its name,\ne.g. `mymacro()`.\n\nAll the parameters passed into the macro appear as `$1`, `$2`, ... variables.\n\nThe body of the macro is wrapped into extra parenthesis so you can put multiple\nexpressions into the macro.\n\n[short-circuit]:\n[operator-priority]: \n[bytebeat]:\n"
  },
  {
    "path": "Gopkg.toml",
    "content": "\n# Gopkg.toml example\n#\n# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md\n# for detailed Gopkg.toml documentation.\n#\n# required = [\"github.com/user/thing/cmd/thing\"]\n# ignored = [\"github.com/user/project/pkgX\", \"bitbucket.org/user/project/pkgA/pkgY\"]\n#\n# [[constraint]]\n#   name = \"github.com/user/project\"\n#   version = \"1.0.0\"\n#\n# [[constraint]]\n#   name = \"github.com/user/project2\"\n#   branch = \"dev\"\n#   source = \"github.com/myfork/project2\"\n#\n# [[override]]\n#  name = \"github.com/x/y\"\n#  version = \"2.4.0\"\n\n\n[[constraint]]\n  name = \"github.com/jteeuwen/go-bindata\"\n  version = \"3.0.7\"\n\n[[constraint]]\n  branch = \"master\"\n  name = \"github.com/thestk/rtaudio\"\n\n[[constraint]]\n  branch = \"master\"\n  name = \"github.com/thestk/rtmidi\"\n\n[[constraint]]\n  branch = \"master\"\n  name = \"github.com/zserge/webview\"\n"
  },
  {
    "path": "LICENSE",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    {one line to give the program's name and a brief idea of what it does.}\n    Copyright (C) {year}  {name of author}\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    {project}  Copyright (C) {year}  {fullname}\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<http://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<http://www.gnu.org/philosophy/why-not-lgpl.html>.\n"
  },
  {
    "path": "README.md",
    "content": "# Glitch\n\n[![Build Status](https://travis-ci.org/naivesound/glitch.svg?branch=master)](https://travis-ci.org/naivesound/glitch)\n\nGlitch is a minimal environment for creating algorithmic music and live coding.\n\nIt uses arithmetic expressions to synthesize instruments and create music patterns.\n\nTry it online: http://naivesound.com/glitch\n\nDownload for Mac, Windows or Linux: https://github.com/naivesound/glitch/releases\n\nRead more about Glitch on Medium: https://medium.com/@naive_sound\n\n## Build\n\nOn linux: `make alsa=1` or `make alsa=1 pulse=1`. If you want to use JACK: `make jack=1`.\n\nOn windows: `make windows=1`.\n\nOn MacOS: `make macos=1`.\n\nAsm.js: `make js` (requires Docker).\n\n## Reference\n\nGlitch syntax is arithmetic expressions, most likely you still remember it from\nthe math class.\n\nArithmetics: `+` `-` `*` `/` `%` (modulo) `**` (power)\n\nBitwise: `&` `|` `^` (xor or bitwise not) `<<` `>>`\n\nCompare: `==` `!=` `<` `<=` `>` `>=` (return 1 or 0)\n\nGrouping: `(` `)` `,` (separates expressions or function arguments)\n\nConditional: `&&` `||` ([short-circuit operators][shortcircuit])\n\nAssignment: `=` (left side must be a variable)\n\n### Instruments\n\n| Function | Description | Example |\n|----------|-------------|---------|\n| sin(freq) | sine wave at given frequency | `sin(440)` |\n| tri(freq) | triangular wave at given frequency | `tri(440)` |\n| saw(freq) | saw-tooth wave at given frequency | `saw(440)` |\n| sqr(freq, [pwm=0.5]) | square wave at given frequency and (optionally) pwm | `sqr(440)` |\n| fm(freq, [m1, v1, m2, v2, m3, v3]) | FM-synthesizer with 3 operators, vN is operator strength, mN is operator multiplier, operators 1 and 2 are parallel, operator 3 is sequential to operator 1 | `fm(440, 0.5, 0.5)` |\n| tr808(drum, [vol=1], [shift=0]) | plays TR808 drum sample at given volume and pitch shift. The following drum IDs may be used: BD (bass drum), SD (snare drum), MT (middle tom), MA (maracas), RS (rimshot), CP (clap), CB (cowbell), OH (open hat), HH (hi-hat) | `tr808(BD, 1)` |\n| piano(freq) | very basic piano sample at the given frequency | `piano(440)`\n| pluck(freq, decay) | Karplus-Strong string synthesizer, fill is a function used to prepare the initial values in the delay buffer | `pluck(440, 0.7)` |\n\nFM synthesizer, TR808 sampler and Piano are reset if any of the parameters is NAN. All\ninstruments return NAN if the input is NAN.\n\nAll instruments return a sound wave with the given frequency in the range\n[-1..1], so you can combine them by adding the signals (e.g.\n`(sin(440)+sin(220))/2`) or modulate using multiplication, e.g.\n`saw(440)*sin(1)`.\n\nYou may put custom samples into the `samples` subdirectory, each group of\nsamples should be in a separate folder. Then you could use samples providing\nthe directory name as a function. For example if you have\n`samples/bass/bass0.wav` and `samples/bass/bass1.wav` you may call them as\n`bass(0)` and `bass(1)` respectively. Samples are expected to be in the WAV\nmono 16-bit format with 44100 Hz sample rate.\n\n### Sequencers:\n\n| Function | Description | Example |\n|----------|-------------|---------|\n|a(i, ...) | array element by its index, most primitive sequencer | `sin(a(t>>10, 440, 466, 493))` |\n|seq(tempo, ...) | switches elements at given tempo | `sin(loop(120, 400, 466, 493))` |\n|loop(tempo, ...) | switches elements at given tempo, unlike seq() it evaluates each argument for each time frame which makes it possible to nest loops | `sin(loop(60, seq(240,400,466,493), seq(480, 400,493)))` |\n\nTempo can be a single number (beats per minute) or a pair `(offset, bpm)`, where\noffset is number of beats to skip before starting the sequence.\n\nSeq and loop values can be pairs, too. Then the first value is a relative beat\nduration and the second is the actual returned value: `seq(120, (3/4, 1), (1/4,\n1))` returns the value of \"1\", but the first value lasts 3 times longer than\nthe second value.\n\nIf seq takes more values, they will be sliding from one another, e.g.\n`seq(120, (1, 0, 4, 2), (1, 2, 4, 0))` slides the values like\n`0->4->2->2->4->0`. The first value in a group is still a relative beat\nduration.\n\nSeq and loop return NAN every then the value is changed.\n\n### Utils\n\n| Function | Description | Example |\n|----------|-------------|---------|\n| r(max) | random number in the range [0..max), it sounds like white noise, good for synthesizing drums or making randomized music patterns | `r(100)` |\n| s(phase)  | sine wave amplitude at the given phase, unline sin() you must provide phase in the range [0..1] | `s(t*14)` |\n| l(x) | binary logarithm, useful to convert frequencies to note values | `note=l(440)*12` |\n| hz(note) | note frequency of the given note index, index 0 is note A of 4th octave, you may also use helper variables like `A#4`, `C2`, `Db3` | `sin(hz(A4))` |\n| scale(pos, mode) | return note index at given position in given scale, scale 0 is major scale, scale 6 is minor | `sin(hz(scale(t>>11&7)))` |\n| env(signal, (dt, level)...) | Creates an ADSR envelope for the signal, envelope is reset if signal is NAN, if first part has non-zero level - the initial level starts from 1, otherwise from 0; if last argument is not zero - the release section is inserted automatically | `env(v, (0.1, 0.2))` |\n| mix(...) | mixes voices together, each parameter is a signal or a pair of (volume, signal). Signals are clipped if overflow occurs | `mix(sin(220), sin(440), tri(880))` |\n| lpf(voice, cutoff) | applies low-pass filter to the voice at given cutoff frequency | `lpf(v, 200)` |\n| hpf(voice, cutoff) | applies high-pass filter to the voice at given cutoff frequency | `hpf(v, 400)` |\n| bpf(voice, cutoff) | applies band-pass filter to the voice at given cutoff frequency | `bpf(v, 400)` |\n| bsf(voice, cutoff) | applies band-stop filter to the voice at given cutoff frequency | `bsf(v, 400)` |\n| delay(voice, time, level, feedback) | delays signal by given time, delay level can be controlled as well as the amount of delay feedback, which affect the number of delay repetitions | `delay(v, 0.1, 0.5, 0.2)` |\n\n### Macros\n\nTo reuse the same expression multiple times you may create a macro:\n\n```\n$(organ, (sin($1)+0.4*sin($1+7)+0.3*sin($1-5))/3)\n(organ(hz(C4))+organ(hz(G4)))/2\n```\n\nMacros are definde using the `$(name, body)` function. Body can consist of multiple expressions if you extra parenthesis, e.g. `$(filter, (z=saw($1), lpf(z)))`.\n\nThere are special argument variables $1..$9 that get expanded to the actual values when the macro is called.\n\n## Special variables:\n\n`t` is time variable that increases at rate 8000/second.\n\n`x` and `y` in the web version are mouse cursor position, normalized to (0..1) range.\n\n`bpm` is a tempo, user input is synchronized with the playback at this rate, so\nyou might want to use `bpm=120/4` to synchronize user input every 4 beats.\n\n### Polyphony\n\nTo apply the same expression to a number of variables you may use `each()` function. It takes a list of formal variables, a function, and a list of actual values: `each(f, sin(f), 440, 880, 220)`.\n\nYou may pass multiple variables as well: `each((vol, freq), vol*sin(freq), (1, 440), (0.4, 880), (0.2, 220))`.\n\nThis is useful for live MIDI input.\n\n### MIDI\n\nGlitch provides special variables that change their values if a MIDI keyboard is used:\n\n* k0, k1, ..., k9 - MIDI key values (0=A4, 1=A#4 etc)\n* v0, v1, ..., v9 - MIDI velocity (it gradually fades out on key release)\n* g0, g1, ..., g9 - MIDI gate signal (it is set to NAN immediately on key release)\n\nHere's how you can play a sine wave with a MIDI keyboard (handling up to 5 keys pressed at a time, use k5, k6 etc to get more polyphony):\n\n```\neach((k, v), v*sin(hz(k)),\n  (k0, v0), (k1, v1), (k2, v2), (k3, v3), (k4, v4))\n```\n\nSpecial variables `x` and `y` are set to the pitch wheel and modulation wheel values if a MIDI keyboard is used.\n\n\n\n[shortcircuit]: https://en.wikipedia.org/wiki/Short-circuit_evaluation\n"
  },
  {
    "path": "appveyor.yml",
    "content": "os: Visual Studio 2017\n\nversion: \"{build}\"\n\nclone_folder: c:\\gopath\\src\\github.com\\naivesound\\glitch\n\nenvironment:\n  global:\n    GOPATH: C:\\gopath\n  matrix:\n    - GETH_ARCH: amd64\n      GOARCH: amd64\n      CGO_ENABLED: 1\n      MSYS2_ARCH: x86_64\n      MSYS2_BITS: 64\n      MSYSTEM: MINGW64\n      PATH: C:\\msys64\\mingw64\\bin\\;C:\\Program Files (x86)\\NSIS\\;%PATH%\n    - GETH_ARCH: 386\n      GOARCH: 386\n      CGO_ENABLED: 1\n      MSYS2_ARCH: i686\n      MSYS2_BITS: 32\n      MSYSTEM: MINGW32\n      PATH: C:\\msys64\\mingw32\\bin\\;C:\\Program Files (x86)\\NSIS\\;%PATH%\n\ninstall:\n  - echo %PATH%\n  - echo %GOPATH%\n  - set PATH=%GOPATH%\\bin;c:\\go\\bin;%PATH%\n  - go version\n  - go env\n  - gcc --version\n\nbuild_script:\n  - IF EXIST .git\\shallow (git fetch --unshallow --tags)\n  - cd dist && release-windows.bat && cd ..\n\nartifacts:\n  - path: '**\\glitch*.zip'\n\ndeploy:\n  description: 'Glitch release'\n  provider: GitHub\n  auth_token:\n    secure: y3+wTHgRTx60M3ZWVy29AzzWPBCFFHah7sRDHvh32pAYaxeKHRN6qNXFnb6IAKeX\n  artifact: /dist\\/glitch.*\\.zip/\n  draft: false\n  prerelease: false\n  on:\n    appveyor_repo_tag: true\n"
  },
  {
    "path": "audio/audio.go",
    "content": "package audio\n\nimport (\n\t\"log\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/thestk/rtaudio/contrib/go/rtaudio\"\n)\n\ntype Callback func(in, out []float32, sr, frames, inChannels, outChannels int)\n\ntype Device struct {\n\tID                int    `json:\"id\"`\n\tName              string `json:\"name\"`\n\tSampleRates       []int  `json:\"sampleRates\"`\n\tDefaultSampleRate int    `json:\"defaultSampleRate\"`\n\tInputChannels     int    `json:\"inputChannels\"`\n\tOutputChannels    int    `json:\"outputChannels\"`\n}\n\ntype Audio interface {\n\tDevices() []Device\n\tCurrent() Device\n\tOpen(i, sr, bufSz, inChans, outChans int)\n\tDestroy()\n}\n\ntype rt struct {\n\tsync.Mutex\n\taudio     rtaudio.RtAudio\n\tcb        Callback\n\tcurrentID int\n\tnotify    chan<- struct{}\n}\n\nfunc NewAudio(notify chan<- struct{}, cb Callback) (Audio, error) {\n\taudio, err := rtaudio.Create(rtaudio.APIUnspecified)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\trt := &rt{audio: audio, cb: cb, notify: notify}\n\trt.currentID = -1\n\treturn rt, nil\n}\n\nfunc (rt *rt) Destroy() {\n\trt.Lock()\n\tdefer rt.Unlock()\n\trt.closeAudio()\n\trt.audio.Destroy()\n}\n\nfunc (rt *rt) closeAudio() {\n\tif rt.currentID != -1 {\n\t\trt.audio.Close()\n\t\trt.currentID = -1\n\t}\n}\n\nfunc (rt *rt) Devices() []Device {\n\trt.Lock()\n\tdefer rt.Unlock()\n\tdevices := []Device{}\n\tinfos, err := rt.audio.Devices()\n\tif err == nil {\n\t\tfor i, info := range infos {\n\t\t\tdevices = append(devices, Device{\n\t\t\t\tID:                i,\n\t\t\t\tName:              info.Name,\n\t\t\t\tOutputChannels:    info.NumOutputChannels,\n\t\t\t\tInputChannels:     info.NumInputChannels,\n\t\t\t\tSampleRates:       info.SampleRates,\n\t\t\t\tDefaultSampleRate: int(info.PreferredSampleRate),\n\t\t\t})\n\t\t}\n\t}\n\treturn devices\n}\n\nfunc (rt *rt) Current() Device {\n\tdevices := rt.Devices()\n\trt.Lock()\n\tdefer rt.Unlock()\n\tif rt.currentID >= 0 && rt.currentID < len(devices) && devices[rt.currentID].ID == rt.currentID {\n\t\treturn devices[rt.currentID]\n\t}\n\treturn Device{ID: -1}\n}\n\nfunc (rt *rt) Open(id, sampleRate, bufSz int, inChans, outChans int) {\n\trt.Lock()\n\trt.closeAudio()\n\trt.Unlock()\n\tvar inParams, outParams *rtaudio.StreamParams\n\tdevices := rt.Devices()\n\tif id < 0 || id >= len(devices) {\n\t\treturn\n\t}\n\tif inChans > 0 {\n\t\tinParams = &rtaudio.StreamParams{\n\t\t\tDeviceID:     uint(id),\n\t\t\tNumChannels:  uint(inChans),\n\t\t\tFirstChannel: 0,\n\t\t}\n\t}\n\tif outChans > 0 {\n\t\toutParams = &rtaudio.StreamParams{\n\t\t\tDeviceID:     uint(id),\n\t\t\tNumChannels:  uint(outChans),\n\t\t\tFirstChannel: 0,\n\t\t}\n\t}\n\terr := rt.audio.Open(outParams, inParams, rtaudio.FormatFloat32,\n\t\tuint(sampleRate), uint(bufSz),\n\t\tfunc(out, in rtaudio.Buffer, dur time.Duration, status rtaudio.StreamStatus) int {\n\t\t\tif status == rtaudio.StatusOutputUnderflow {\n\t\t\t\treturn 0\n\t\t\t}\n\t\t\trt.cb(in.Float32(), out.Float32(), sampleRate, bufSz, inChans, outChans)\n\t\t\treturn 0\n\t\t}, nil)\n\tif err == nil {\n\t\trt.Lock()\n\t\trt.currentID = id\n\t\trt.audio.Start()\n\t\trt.Unlock()\n\t} else {\n\t\tlog.Println(err)\n\t}\n}\n"
  },
  {
    "path": "audio/midi.go",
    "content": "package audio\n\nimport (\n\t\"log\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/thestk/rtmidi/contrib/go/rtmidi\"\n)\n\ntype MIDICallback func(msg []byte)\n\ntype MIDIDevice struct {\n\tID        int    `json:\"id\"`\n\tName      string `json:\"name\"`\n\tConnected bool   `json:\"connected\"`\n\tmidi      rtmidi.MIDIIn\n}\n\ntype MIDI interface {\n\tSetAutoConnect(bool)\n\tAutoConnect() bool\n\tSetConnect(name string, connect bool)\n\tDevices() []MIDIDevice\n\tDestroy()\n}\n\ntype midi struct {\n\tsync.Mutex\n\tcb          MIDICallback\n\twg          *sync.WaitGroup\n\tmidi        rtmidi.MIDIIn\n\tautoConnect bool\n\tconnect     map[string]bool\n\tinputs      []*MIDIDevice\n\tconfigc     chan struct{}\n\texitc       chan struct{}\n\tnotify      chan<- struct{}\n}\n\nfunc NewMIDI(notify chan<- struct{}, cb MIDICallback) (MIDI, error) {\n\tmidiIn, err := rtmidi.NewMIDIInDefault()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tm := &midi{\n\t\tcb:          cb,\n\t\twg:          &sync.WaitGroup{},\n\t\tmidi:        midiIn,\n\t\tnotify:      notify,\n\t\tautoConnect: true,\n\t\tconnect:     map[string]bool{},\n\t\tconfigc:     make(chan struct{}, 1),\n\t\texitc:       make(chan struct{}),\n\t}\n\tm.wg.Add(1)\n\tgo m.poll()\n\treturn m, nil\n}\n\nfunc (m *midi) SetAutoConnect(connect bool) {\n\tm.Lock()\n\tdefer m.Unlock()\n\tm.autoConnect = connect\n\tm.configc <- struct{}{}\n}\n\nfunc (m *midi) AutoConnect() bool {\n\tm.Lock()\n\tdefer m.Unlock()\n\treturn m.autoConnect\n}\n\nfunc (m *midi) SetConnect(name string, connect bool) {\n\tm.Lock()\n\tdefer m.Unlock()\n\tm.connect[name] = connect\n\tm.configc <- struct{}{}\n}\n\nfunc (m *midi) Devices() (devices []MIDIDevice) {\n\tm.Lock()\n\tdefer m.Unlock()\n\tdevices = []MIDIDevice{}\n\tfor _, d := range m.inputs {\n\t\tdevices = append(devices, MIDIDevice{ID: d.ID, Name: d.Name, Connected: d.Connected})\n\t}\n\treturn devices\n}\n\nfunc (m *midi) Destroy() {\n\tclose(m.exitc)\n\tclose(m.configc)\n\tm.wg.Wait()\n\tm.midi.Close()\n}\n\nfunc (m *midi) shouldConnect(name string) bool {\n\tconnect, ok := m.connect[name]\n\treturn (connect && ok) || (!ok && m.autoConnect)\n}\n\nfunc (m *midi) openDevice(d *MIDIDevice) (err error) {\n\tif d.midi, err = rtmidi.NewMIDIInDefault(); err != nil {\n\t\treturn err\n\t} else if err = d.midi.OpenPort(d.ID, d.Name); err != nil {\n\t\treturn err\n\t} else {\n\t\td.Connected = true\n\t\td.midi.SetCallback(func(_ rtmidi.MIDIIn, msg []byte, _ float64) {\n\t\t\tm.cb(msg)\n\t\t})\n\t}\n\treturn nil\n}\n\nfunc (m *midi) closeDevice(d *MIDIDevice) {\n\td.Connected = false\n\td.midi.CancelCallback()\n\td.midi.Close()\n}\n\nfunc (m *midi) poll() {\n\tdefer m.wg.Done()\n\tfor {\n\t\tif changed, err := m.pollOnce(); err != nil {\n\t\t\tlog.Println(err)\n\t\t} else if changed {\n\t\t\tm.notify <- struct{}{}\n\t\t}\n\t\tselect {\n\t\tcase <-m.exitc:\n\t\t\treturn\n\t\tcase <-m.configc:\n\t\tcase <-time.After(time.Second):\n\t\t}\n\t}\n}\n\nfunc (m *midi) pollOnce() (changed bool, err error) {\n\tm.Lock()\n\tdefer m.Unlock()\n\n\t// Get a list of currently connected devices\n\tn, err := m.midi.PortCount()\n\tif err != nil {\n\t\treturn changed, err\n\t}\n\tnames := make([]string, n, n)\n\tfor i := 0; i < n; i++ {\n\t\tname, err := m.midi.PortName(i)\n\t\tif err == nil {\n\t\t\tnames[i] = name\n\t\t}\n\t}\n\tinputs := []*MIDIDevice{}\n\n\t// Close and remove disconnected devices\n\tfor _, d := range m.inputs {\n\t\tif d.ID < len(names) && d.Name == names[d.ID] {\n\t\t\tinputs = append(inputs, d)\n\t\t} else {\n\t\t\tm.closeDevice(d)\n\t\t\tchanged = true\n\t\t}\n\t}\n\n\t// Add newly connected devices and change connection status if needed\n\tm.inputs = inputs\n\tfor i := 0; i < n; i++ {\n\t\tvar device *MIDIDevice\n\t\tfor _, d := range m.inputs {\n\t\t\tif d.ID == i && d.Name == names[i] {\n\t\t\t\tdevice = d\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\tif device != nil {\n\t\t\tif device.Connected && !m.shouldConnect(device.Name) {\n\t\t\t\t// Existing device should be disconnected\n\t\t\t\tm.closeDevice(device)\n\t\t\t\tchanged = true\n\t\t\t} else if !device.Connected && m.shouldConnect(device.Name) {\n\t\t\t\t// Existing device should be connected\n\t\t\t\tif err := m.openDevice(device); err != nil {\n\t\t\t\t\treturn changed, err\n\t\t\t\t}\n\t\t\t\tchanged = true\n\t\t\t}\n\t\t} else {\n\t\t\t// New device should be connected\n\t\t\tdevice = &MIDIDevice{ID: i, Name: names[i], Connected: m.shouldConnect(names[i])}\n\t\t\tif device.Connected {\n\t\t\t\tif err := m.openDevice(device); err != nil {\n\t\t\t\t\treturn changed, err\n\t\t\t\t}\n\t\t\t\tchanged = true\n\t\t\t}\n\t\t\tm.inputs = append(m.inputs, device)\n\t\t}\n\t}\n\treturn changed, nil\n}\n"
  },
  {
    "path": "cmd/glitch/app.go",
    "content": "package main\n\nimport (\n\t\"io/ioutil\"\n\t\"log\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"time\"\n\n\t\"github.com/naivesound/glitch/audio\"\n\t\"github.com/naivesound/glitch/core\"\n\t\"github.com/zserge/webview\"\n)\n\ntype App struct {\n\tglitch  core.Glitch\n\taudio   audio.Audio\n\tmidi    audio.MIDI\n\tnotify  chan struct{}\n\twebview webview.WebView\n\n\tsync func()\n\n\t*Config\n\n\tIsPlaying    bool               `json:\"isPlaying\"`\n\tText         string             `json:\"text\"`\n\tError        error              `json:\"error\"`\n\tAudioDevices []audio.Device     `json:\"audioDevices\"`\n\tMIDIDevices  []audio.MIDIDevice `json:\"midiDevices\"`\n}\n\nfunc NewApp(config *Config) (app *App, err error) {\n\tapp = &App{Config: config}\n\n\tloader := &sampleLoader{}\n\tgo loader.poll()\n\tcore.Loader = loader\n\tcore.Init(config.SampleRate, uint64(time.Now().UnixNano()))\n\n\tapp.glitch = core.NewGlitch()\n\n\tapp.notify = make(chan struct{}, 256)\n\tif app.midi, err = audio.NewMIDI(app.notify, func(msg []byte) {\n\t\tapp.glitch.MIDI(msg)\n\t}); err != nil {\n\t\tapp.Destroy()\n\t\treturn nil, err\n\t}\n\n\tif app.audio, err = audio.NewAudio(app.notify, func(in, out []float32, sr, frames, inChannels, outChannels int) {\n\t\tsamples := out\n\t\tif app.IsPlaying {\n\t\t\tapp.glitch.Fill(samples, len(samples)/outChannels, outChannels)\n\t\t} else {\n\t\t\tfor i := 0; i < len(samples); i++ {\n\t\t\t\tsamples[i] = 0\n\t\t\t}\n\t\t}\n\t}); err != nil {\n\t\tapp.Destroy()\n\t\treturn nil, err\n\t}\n\n\tapp.AudioDevices = app.audio.Devices()\n\tapp.MIDIDevices = app.midi.Devices()\n\n\turl := startServer()\n\tapp.webview = webview.New(webview.Settings{\n\t\tWidth:     windowWidth,\n\t\tHeight:    windowHeight,\n\t\tResizable: true,\n\t\tURL:       url,\n\t\tExternalInvokeCallback: func(w webview.WebView, data string) {\n\t\t\tif data == \"__app_js_loaded__\" {\n\t\t\t\tapp.sync, err = app.webview.Bind(\"app\", app)\n\t\t\t\tif err != nil {\n\t\t\t\t\tlog.Println(err)\n\t\t\t\t} else {\n\t\t\t\t\tw.Eval(`init(); app.render();`)\n\t\t\t\t\tgo func() {\n\t\t\t\t\t\tfor range app.notify {\n\t\t\t\t\t\t\tapp.webview.Dispatch(func() {\n\t\t\t\t\t\t\t\tapp.AudioDevice = app.audio.Current().ID\n\t\t\t\t\t\t\t\tapp.AudioDevices = app.audio.Devices()\n\t\t\t\t\t\t\t\tapp.MIDIDevices = app.midi.Devices()\n\t\t\t\t\t\t\t\tapp.sync()\n\t\t\t\t\t\t\t})\n\t\t\t\t\t\t}\n\t\t\t\t\t}()\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tlog.Println(\"unhandled external invoke:\", data)\n\t\t\t}\n\t\t},\n\t})\n\n\tfor midi, connect := range config.MIDI {\n\t\tapp.SelectMIDI(midi, connect)\n\t}\n\tapp.SelectAudio(config.AudioDevice, config.SampleRate, config.BufferSize)\n\tapp.Load(config.Filename)\n\treturn app, nil\n}\n\nfunc (app *App) Run() {\n\tapp.webview.Run()\n}\n\nfunc (app *App) Destroy() {\n\tclose(app.notify)\n\tif app.webview != nil {\n\t\tapp.webview.Exit()\n\t}\n\tif app.audio != nil {\n\t\tapp.audio.Destroy()\n\t}\n\tif app.midi != nil {\n\t\tapp.midi.Destroy()\n\t}\n\tif app.glitch != nil {\n\t\tapp.glitch.Destroy()\n\t}\n}\n\nfunc (app *App) NewFile() {\n\tif name := app.webview.Dialog(webview.DialogTypeSave, 0, \"New file...\", \"\"); name != \"\" {\n\t\tapp.Load(name)\n\t}\n}\n\nfunc (app *App) LoadFile() {\n\tif name := app.webview.Dialog(webview.DialogTypeOpen, 0, \"Open file...\", \"\"); name != \"\" {\n\t\tapp.Load(name)\n\t}\n}\n\nfunc (app *App) Load(path string) {\n\tapp.glitch.Reset()\n\tapp.Filename = path\n\tos.MkdirAll(filepath.Dir(path), 0755)\n\tapp.webview.SetTitle(\"Glitch - \" + path)\n\tif b, err := ioutil.ReadFile(path); err == nil {\n\t\tapp.Text = string(b)\n\t} else {\n\t\tapp.Text = \"\"\n\t}\n\tapp.Error = app.glitch.Compile(app.Text)\n\tapp.Config.Save()\n}\n\nfunc (app *App) SetVar(name string, value float32) {\n\tapp.glitch.Set(name, value)\n}\n\nfunc (app *App) ChangeText(text string) {\n\tapp.Text = text\n\tapp.Error = app.glitch.Compile(app.Text)\n\tioutil.WriteFile(app.Filename, []byte(app.Text), 0644)\n}\n\nfunc (app *App) SelectAudio(id, sampleRate, bufsz int) {\n\tdevices := app.audio.Devices()\n\tif id < 0 || id >= len(devices) {\n\t\treturn\n\t}\n\tin := 0\n\tout := 1\n\tif devices[id].InputChannels == 0 {\n\t\tin = 0\n\t}\n\tif devices[id].OutputChannels == 0 {\n\t\tout = 0\n\t}\n\tapp.audio.Open(id, sampleRate, bufsz, in, out)\n\tapp.AudioDevice = id\n\tapp.BufferSize = bufsz\n\tapp.SampleRate = sampleRate\n\tcore.Init(sampleRate, uint64(time.Now().UnixNano()))\n\tapp.Config.Save()\n}\n\nfunc (app *App) SelectMIDI(name string, connected bool) {\n\tapp.Config.MIDI[name] = connected\n\tapp.midi.SetConnect(name, connected)\n\tapp.Config.Save()\n}\n\nfunc (app *App) TogglePlayback() {\n\tapp.IsPlaying = !app.IsPlaying\n}\n\nfunc (app *App) Stop() {\n\tapp.glitch.Reset()\n\tapp.glitch.Compile(app.Text)\n\tapp.IsPlaying = false\n}\n"
  },
  {
    "path": "cmd/glitch/assets.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"compress/gzip\"\n\t\"fmt\"\n\t\"io\"\n\t\"strings\"\n)\n\nfunc bindata_read(data []byte, name string) ([]byte, error) {\n\tgz, err := gzip.NewReader(bytes.NewBuffer(data))\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"Read %q: %v\", name, err)\n\t}\n\n\tvar buf bytes.Buffer\n\t_, err = io.Copy(&buf, gz)\n\tgz.Close()\n\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"Read %q: %v\", name, err)\n\t}\n\n\treturn buf.Bytes(), nil\n}\n\nvar _app_js = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xcc\\x3b\\xeb\\x72\\xdb\\xb6\\x9a\\xff\\xfd\\x14\\x48\\xce\\x6e\\x48\\x9d\\x50\\x94\\xed\\xa4\\xad\\xab\\xac\\xb6\\xe3\\x38\\x4e\\xeb\\xd9\\xe6\\x32\\xb1\\x73\\x72\\xba\\x8e\\x57\\x03\\x91\\x9f\\x24\\xd4\\x20\\xc0\\x02\\xa0\\x6d\\x25\\xd2\\x73\\xec\\x03\\xed\\x8b\\xed\\xe0\\x42\\x12\\xbc\\xc8\\x76\\xdb\\x34\\xbb\\x9c\\x69\\x43\\x83\\xdf\\x0d\\x1f\\xbe\\x2b\\x00\\x05\\x85\\x04\\x24\\x95\\x20\\x89\\x0a\\x9e\\xed\\xec\\x5c\\x61\\x81\\x96\\x68\\x82\\x72\\x92\\xf0\\x94\\x67\\xf1\\xf2\\xd9\\xce\\xce\\xbc\\x60\\x89\\x22\\x9c\\x21\\x22\\x3f\\xc0\\xec\\x1f\\x04\\xae\\xc3\\x01\\xfa\\xbc\\x83\\x90\\x12\\x2b\\xf3\\x2f\\x42\\xd7\\x84\\xa5\\xfc\\x3a\\x86\\x1b\\x05\\x82\\x61\\x1a\\x13\\x76\\xc5\\x2f\\x21\\x0c\\x82\\xc1\\x33\\xf3\\x5d\\x80\\x2a\\x04\\x43\\x4a\\x14\\xa0\\x07\\x36\\x28\\xc1\\x2a\\x59\\xa2\\x10\\x06\\x8e\\x80\\x03\\x98\\x63\\x2a\\x2d\\xc4\\xce\\x66\\x67\\x67\\x34\\x42\\x09\\xc5\\x6c\\x31\\x9c\\x73\\x91\\x61\\x85\\xf8\\x7c\\x5e\\x0b\\xf3\\xfe\\x24\\xc4\\x79\\x6e\\xf1\\x1d\\xf6\\x32\\x0c\\x52\\x72\\x15\\x44\\xe8\\x73\\x42\\xb1\\x94\\x63\\x14\\x24\\x9c\\x29\\x4c\\x18\\x88\\x60\\x13\\x19\\x3e\\xee\\xb9\\x86\\xd9\\x4f\\x80\\x53\\x10\\x86\\x46\\xe3\\x13\\xce\\xf3\\x0f\\x66\\x36\\xdd\\x4f\\xd7\\x30\\x7b\\xc9\\xb9\\x72\\x58\\x83\\x67\\x5a\\xc6\\x4a\\x9e\\x9a\\x64\\x5b\\xa6\\xa5\\x19\\xf6\\xc5\\xba\\x86\\x19\\xce\\xf3\\xa1\\x5c\\xf2\\x6b\\xd6\\x92\\x6c\\x19\\x06\\x79\\x10\\x21\\x56\\x50\\xda\\x18\\x37\\x5f\\x96\\x7b\\xe5\\x27\\x14\\xfc\\x6d\\x41\\x89\\x4a\\x96\\xc1\\xa0\\x05\\x86\\x50\\x30\\x5b\\x21\\x86\\xc9\\x15\\x48\\x5e\\xb0\\xb4\\x05\\xb0\\x0c\\x83\\x82\\x6e\\x65\\x40\\x49\\xc5\\x60\\x19\\x06\\x58\\xcb\\xac\\xb0\\x58\\x80\\x1a\\xa3\\x60\\x3a\\xa3\\x98\\x5d\\x06\\x11\\x5a\\x0a\\x98\\x8f\\x51\\xb0\\x54\\x2a\\x1f\\x8f\\x46\\x35\\xa7\\x38\\xe1\\xd9\\x28\\x17\\x3c\\x2d\\x12\\x25\\x47\\x4e\\xbc\\x4d\\x84\\x02\\x3c\\xe3\\x85\\x0a\\x06\\x6d\\x49\\xff\\x00\\x3f\\x39\\x1e\\x8d\\x0c\\xaf\\x84\\xf2\\xc2\\x32\\xf4\\x66\\xaa\\x79\\xc1\\x0d\\xce\\x72\\x0a\\xf2\\x8b\\xb1\\x5b\\x10\\xb5\\x2c\\x66\\x2d\\x56\\xfe\\xec\\x2c\\xc0\\x57\\xe1\\x37\\x9a\\x51\\x3e\\x1b\\x65\\x58\\x2a\\x10\\xa3\\xc3\\xb7\\x27\\x71\\x66\\x27\\xbd\\x04\\x9a\\x07\\x83\\x41\\x67\\xa5\\x5b\\xde\\x60\\xbd\\x74\\xa8\\x88\\xa2\\x30\\x9c\\xe1\\xb6\\x53\\xdc\\x07\\x65\\x38\\x2b\\x94\\xe2\\x2c\\xd8\\xf4\\xcc\\xf6\\x6b\\xa0\\xf6\\x78\\x9d\\x73\\xc9\\xb6\\xd7\\xcd\\xcd\\x70\\xd0\\x82\\x6f\\x7a\\xf7\\xed\\xc1\\x43\\xbb\\xa8\\x95\\xa4\\xa5\\x28\\x48\\x89\\xe2\\x3d\\xa1\\x23\\xe3\\x29\\xa6\\x7a\\x38\\x36\\x6f\\xaf\\x71\\x06\\x68\\x32\\x41\\x81\\x04\\xa5\\x08\\x5b\\xc8\\x20\\xd2\\xfc\\x23\\x54\\xfe\\x6d\\xc3\\x48\\x93\\xb4\\x10\\x5c\\x3c\\xc7\\x3d\\xc4\\x15\\xe7\\x74\\x86\\x7b\\x43\\x8f\\x27\\x8f\\x99\\x91\\x0e\\xe2\\x8a\\xa4\\xcf\\xdc\\x2b\\x67\\x89\\x00\\xac\\x00\\x4d\\x50\\x89\\x12\\x02\\x2d\\x23\\xef\\x11\\x4f\\xe1\\x15\\xd1\\x6c\\xe3\\x14\\xe6\\x84\\xc1\\x2b\\x9e\\x42\\xf8\\xd0\\x1a\\xdc\\xc3\\xa8\\x46\\x29\\x11\\x50\\x35\\x84\\x14\\xbf\\x04\\x46\\x3e\\x41\\x28\\x95\\x00\\x9c\\x45\\x48\\x2a\\xac\\xa0\\x06\\xb4\\xfc\\x13\\x34\\x41\\x16\\x20\\x66\\x70\\xa3\\x42\\x97\\x13\\xf4\\x43\\xe6\\x28\\x1c\\x7d\\x4c\\x47\\xb1\\x02\\xa9\\xc2\\x64\\xe0\\xa3\\xa2\\x12\\x09\\xb0\\xfa\\xb0\\x24\\x14\\xc2\\xd1\\xf9\\xc7\\xf4\\x63\\x7c\\x31\\xf2\\x08\\x54\\xcb\\xf7\\x90\\x15\\xd9\\x0c\\xc4\\xc3\\xfa\\xd3\\x06\\x01\\x95\\x60\\x58\\x24\\x7a\\x19\\x1e\\xfe\\xed\\x61\\x2f\\x79\\x79\\x49\\xf2\\x33\\x7e\\xcc\\xd2\\xb0\\x97\\x6e\\xc2\\xb3\\x0c\\x98\\xea\\x27\\x3c\\x3a\\x1f\\x3e\\xfe\\xfb\\xc7\\xd1\\xbf\\x3e\\x5a\\xff\\xd7\\x83\\xc9\\xbf\\xfd\\x7b\\x74\\xb1\\x65\\x26\\x25\\x31\\x9e\\x83\\xc0\\x8a\\xdf\\x26\\x66\\x10\\x06\\x68\\xbd\\x46\\xf6\\x7d\\x10\\xdc\\x41\\x67\\x3b\\x99\\x7f\\x69\\xa1\\xea\\x2f\\xb5\\x42\\xb5\\xd6\\x1f\\x8f\\x5a\\x52\\xd6\\xf4\\xaf\\xb0\\x20\\x78\\x46\\x61\\xf8\\xe4\\xa1\\xaf\\x93\\x4d\\x8f\\x28\\xb3\\x82\\x50\\x45\\x58\\x47\\x92\\x3b\\x16\\xf2\\xfa\\x63\\x3a\\xfd\\xdb\\xc5\\xe3\\xd1\\xa0\\x17\\xec\\x34\\xc7\\x09\\x34\\xd7\\xc3\\x93\\x3f\\x07\\xb8\\x0c\\x07\\x4e\\x59\\xed\\x29\\x68\\x8b\\x93\\xb5\\xc5\\x25\\x85\\x10\\xc0\\x54\\x93\\x96\\x33\\xbc\\xe5\\xa7\\xb5\\x24\\x6c\\xad\\x04\\x59\\x4b\\x7c\\xbd\\x96\\xbf\\x89\\x35\\xcd\\xe7\\xeb\\x65\\x3e\\x5f\\xcf\\xf4\\x7f\\x72\\xbe\\x56\\xe2\\x60\\xf7\\x60\\x9d\\xd3\\x22\\xb9\\x5c\\xcf\\xb3\\x75\\x0a\\x14\\xaf\\xd6\\xc0\\xd2\\x75\\x46\\x6e\\xd6\\x12\\x7e\\x5b\\x53\\xce\\xf3\\x35\\x5e\\xcb\\x35\\x5d\\x0b\\xb7\\xf8\\xb2\\xa3\\xd6\\x5a\\x5b\\x97\\xb0\\xba\\xe6\\x22\\x7d\\xd8\\x94\\x66\\x73\\xfb\\x22\\xec\\xdf\\xb9\\x08\\x25\\xa8\\x6f\\x57\\x3b\\xcd\\x7f\\x1d\\x68\\x2d\\x98\\x54\\x58\\xa8\\x53\\xed\\xb0\\xe3\\x3e\\x27\\xef\\xc5\\x41\\x26\\x10\\x59\\xa7\\x1f\\x57\\x6f\\x7e\\x9c\\xda\\x78\\x12\\xd4\\xe3\\x06\\xd2\\x63\\xb3\\x35\\x5e\\xb4\\xed\\xd4\\x19\\xc2\\xa0\\x14\\x45\\x27\\xd3\\x1e\\x2f\\x35\\x74\\xe2\\x2d\\xe1\\xa8\\x47\\x22\\x27\\xe5\\xc6\\x7d\\xd3\\x21\\xdb\\x06\\x51\\x34\\xf1\\x03\\xe2\\x5c\\xf0\\xec\\x0c\\x6e\\xd4\\xa1\\x00\\x1c\\x02\\x8d\\x2a\\x41\\x29\\x61\\xf0\\xda\\x04\\x1c\\x89\\xc6\\xa6\\xac\\x2d\\x29\\xab\\x25\\x64\\x80\\xc6\\x28\\xc8\\xb0\\x02\\x41\\x30\\x0d\\xca\\x2f\\xb8\\x50\\x7c\\xce\\x93\\xa2\\x8d\\x91\\xe9\\x52\\xf8\\xb9\\xc0\\xc9\\x25\\x28\\xd9\\xfc\\xa4\\x51\\x8e\\x28\\x97\\xd0\\xff\\x59\\x26\\x82\\x53\\x9d\\x14\\x4e\\xd5\\x8a\\x1a\\xa6\\x92\\xe8\\xe2\\xc7\\xb1\\xec\\xce\\x2e\\x96\\xa0\\xfe\\x81\\x69\\x01\\x26\\x49\\xa5\\x58\\xe1\\x58\\xc1\\x8d\\xea\\xc2\\x71\\x16\\x06\\xc9\\x12\\xb3\\x05\\x04\\x5e\\x06\\x48\\xb2\\x08\\xd9\\xd1\\x7a\\xc9\\x12\\x0a\\x58\\x9c\\x91\\x0c\\x78\\xa1\\x42\\x45\\xd2\\x4a\\xdb\\x8a\\xa4\\xda\\x0b\\x41\\x95\\x1f\\x7b\\x6d\\x4c\\xf3\\xb4\\x24\\xb5\\x9e\\xc3\\x24\\x8b\\x17\\xa5\\x88\\x83\\x8a\\xd4\\x26\\x42\\xfb\\xdf\\xec\\x0e\\xfc\\x35\\xdb\\x94\\xc9\\x0d\\x28\\x9a\\xf4\\xe4\\x6e\\x3b\\x8f\\xe9\\xf4\\x5a\\xe0\\x3c\\x07\\x31\\x9c\\x93\\x1b\\x48\\xef\\x51\\xef\\xb4\\xf1\\x78\\xa1\\x3a\\xcd\\xc3\\xfd\\x30\\x09\\xeb\\xb6\\x1d\\x15\\xae\\xd6\\x3a\\x16\\x80\\xfb\\x08\\x78\\xdf\\xca\\xcc\\x3d\\xae\\xde\\x74\\x05\\x64\\x14\\xa0\\xdd\\xc4\\x33\\xdb\\x47\\x8f\\x50\\x63\\x49\\xd1\\x83\\x89\\xbf\\x9e\\x9e\\x52\\x9d\\xf2\\xef\\x67\\x14\\x9b\\xba\\x3e\\x02\\xda\\x2a\\x3a\\xfc\\x4a\\xe5\\xf6\\x42\\xca\\x80\\x0e\\x53\\x82\\x29\\x5f\\x04\\xda\\x2b\\x57\\x14\\xc6\\xe8\\x73\\x4a\\x64\\x4e\\xf1\\x6a\\x8c\\x6a\\xc6\\x06\\x12\\xfd\\x80\\x82\\x19\\xe5\\xc9\\x65\\xa0\\x4d\\x9a\\x71\\x06\\xc1\\x60\\xd3\\x54\\x64\\xe9\\x5c\\x27\\x89\\xb6\\xd4\\x8f\\xc5\\xf1\\xee\\xee\\x6e\\xd0\\x2e\\x8b\\x6c\\x39\\x76\\x45\\x24\\x99\\x51\\x70\\xa5\\x97\\x6e\\x08\\x81\\x29\\xb9\\x45\\xe2\\xc6\\x62\\x95\\xe2\\x1b\\x3a\\xc3\\x19\\x4e\\x2e\\x17\\xc2\\xf4\\x19\\xcd\\x35\\xed\\x4e\\xc7\\xb1\\xec\\x9d\\x47\\x13\\x97\\xb3\\x84\\x92\\xe4\\xb2\\x19\\x80\\x51\\x55\\x41\\x86\\x83\\x67\\xa8\\x81\\xb1\\x89\\xee\\x25\\x6c\\x70\\x17\\x17\\xe8\\x66\\x28\\x88\\x73\\x01\\x57\\xc0\\xd4\\x0b\\x98\\xe3\\x82\\x76\\x32\\xa6\\x86\\x90\\x8a\\xe7\\x6f\\x05\\xcf\\xf1\\x02\\x5b\\x61\\xb7\\xa7\\xb1\\x8d\\xa7\\xeb\\xd6\\xba\\x34\\xca\\xdf\\xaa\\x60\\x95\\xa6\\x6f\\x7b\\x87\\x15\\xe8\\xec\\x7d\\x7e\\xe1\\x1b\\xb9\\xb1\\x0d\\x5c\\xa4\\x84\\xbf\\x80\\x2b\\x92\\x80\\x3c\\xef\\x1b\\xbd\\x28\\x27\\xd5\\x24\\xf5\\x3b\\x08\\xc4\\x1e\\x66\\xcb\\xfc\\x2b\\xb5\\x77\\x1a\\xe7\\xae\\xbd\\x5b\\x83\\x71\\x6d\\xbf\\xee\\xcf\\x4e\\x8f\\xcf\\xce\\x4e\\x5e\\xff\\x78\\x1a\\xdc\\x19\\x7f\\x7c\\xd4\\x61\\xa2\\x43\\xbf\\x0d\\x03\\x77\\x5a\\x89\\x66\\xf3\\x3f\\xff\\xdd\\xee\\x42\\xb7\\x31\\x70\\x4b\\xd3\\x17\\x10\\xe7\\x5c\\x64\\xfd\\xfb\\x03\\xdb\\xc9\\x69\\x9c\\xa1\\x76\\x8e\\x7c\\x5b\\xc0\\xa3\\x78\\x06\\x74\\x0b\\x62\\xf9\\x6d\\xce\\x85\\xee\\xba\\xf4\\x7a\\x0c\\x53\\xb3\\x20\\x43\\x09\\x14\\x12\\x65\\x74\\x78\\xa8\\xc7\\x91\\x1d\\x1f\\xf7\\xec\\x7a\\x18\\x36\\x0e\\xbe\\xed\\x1c\\xee\\x21\\xe9\\x16\\xfa\\x3d\\xc4\\xda\\xee\\x6f\\x24\\xbd\\xd2\\x61\\xb2\\x1f\\xda\\x7c\\x1a\\xa3\\x20\\x78\\xdc\\x67\\x59\\xbd\\x28\\x9c\\xd9\\xcc\\xb7\\xb5\\xfc\\xf2\\x1e\\x4d\\xd4\\x0a\\x6b\\xf4\\x10\\x3e\\x56\\x4b\\x22\\x63\\xc3\\x34\\xaa\\x2d\\xbc\\x36\\x5f\\x6f\\x70\\x56\\xcc\\xe7\\x20\\x4e\\xc9\\x27\\xe8\\x78\\xb4\\x79\\x36\\xdd\\xc1\\x4d\\xd4\\xef\\x35\\x71\\x86\\xf3\\xb0\\xa7\\x87\\x6c\\x3d\\xb5\\xcb\\xf0\\x5c\\x43\\xea\\xf5\\xa8\\xf5\\x03\\x34\\x26\\xe9\\x26\\x42\\x40\\x63\\x86\\xb3\\x5e\\xa1\\x36\\xed\\xbd\\x0c\\xf4\\x95\\x8c\\xcf\\x2a\\x70\\x28\\xb0\\x6a\\xd8\\xde\\xa9\\x19\\x46\\x7a\\xf8\\xcf\\x98\\x5e\\x0f\\xf5\\x2f\\x67\\x79\\x7d\\x46\\xf0\\xa5\\xad\\xae\\xd7\\xb4\\x51\\xbf\\x2d\\xfe\\x31\\xb3\\xf3\\x02\\xf0\\x9f\\x37\\x36\\xa0\\xc6\\xcc\\xfe\\x5f\\x59\\x98\\x55\\xcb\\x50\\x92\\x4f\\x0d\\x0b\\x7b\\x6e\\x86\\x91\\x1e\\xfe\\x33\\x16\\xd6\\x43\\xfd\\x2f\\xb0\\xb0\\x7a\\x69\\xbf\\x92\\x85\\xf5\\x06\\x38\\xcf\\xec\\x7e\\x8f\\x85\\x9d\\x7f\\xfb\\x34\\x42\\x7b\\xfb\\x07\\xba\\xa7\\xf8\\x36\\x42\\xdf\\xec\\xed\\x47\\x68\\x6f\\x77\\xff\\x69\\x84\\xf6\\x77\\x9f\\x1e\\x44\\xe8\\xe9\\xee\\xf7\\xdf\\x46\\xe8\\x60\\xef\\xfb\\xfd\\x8b\\x2f\\x66\\x81\\xe8\\x31\\xaa\\x8e\\x42\\x9a\\xf2\\x0c\\xba\\x76\\xb8\\xbd\\xd2\\x40\\x7f\\xb1\\x8d\\x6a\\x43\\x7c\\x75\\xf2\\xe2\\xc4\\x65\\x59\\xb9\\xd5\\x12\\xb7\\x4b\\x60\\xad\\xa8\\x4f\\x02\\x54\\xaf\\x62\\x46\\x52\\x52\\x66\\x14\\x0a\\x6c\\xa1\\x96\\x68\\x32\\x41\\xbb\\xe8\\x87\\x7e\\x1b\\x69\\x2a\\x04\\x05\\xa1\\x2e\\xa5\\x07\\xc1\\x00\\x8d\\xb7\\xdb\\x54\\x87\\x4f\\x6b\\x29\\x23\\x44\\xb6\\xda\\xa4\\xad\\x47\\x4d\\xfb\\x1a\\x68\\x12\\xc3\\xe0\\x31\\xe9\\x35\\x30\\x84\\xee\\x51\\x1e\\x6e\\x9b\\x52\\xb5\\x1c\\xba\\xe2\\x0a\\xc6\\x48\\xe7\\xc4\\x3b\\xf1\\x0c\\x26\\x61\\x79\\xb1\\x35\\x0c\\x74\\x1e\\xb5\\xca\\x75\\xde\\x4d\\x96\\x90\\x5c\\xce\\xf8\\x4d\\xbf\\x87\\x77\\x1e\\x03\\x0e\\xa9\\xb6\\xe0\\x38\\xe1\\x8c\\x41\\xa2\\x20\\xbd\\x1f\\xaa\\x4e\\xea\\x7a\\x3a\\xf7\\x83\\xd6\\x61\\xeb\\xbe\\xb0\\xbf\\x27\\xb0\\x74\\x9e\\x3a\\xd2\\x68\\x13\\x0f\\x5d\\xf5\\x11\\xa1\\x07\\xfe\\x0c\\xfb\\x03\\x49\\xe7\\xb9\\xd7\\x4a\\x75\\xce\\x39\\x7a\\x9f\\xb2\\x0a\\xda\\x12\\xc2\\x06\\x83\\x41\\xe7\\xcc\\xc3\\x3f\\x09\\xa8\\xda\\x27\\x92\\x70\\xa6\\xbb\\x1d\\xd7\\xdd\\xa7\\xe9\\xb8\\xdb\\x24\\xef\\x3d\\xfd\\xa6\\xf4\\xe8\\x39\\xa7\\x29\\x88\\x37\\x39\\xb0\\x1e\\xb8\\xfd\\xa3\\x83\\x12\\x4e\\x77\\xb4\\x87\\x42\\xf0\\xeb\\x1e\\xb0\\xdd\\x27\\xdf\\x55\\x60\\xb8\\x90\\xd0\\x0b\\xf2\\xb4\\x04\\xd1\\xbd\\x63\\x1f\\xc4\\xd3\\x8a\\x48\\xd9\\x17\\xf6\\x40\\x1d\\x3c\\xaf\\x24\\x5a\\x02\\xed\\xa3\\x73\\xf0\\xf2\\x85\\x85\\x30\\x3b\\x43\\x5b\\xb7\\x22\\x9c\\xee\\xba\\x87\\xae\\xf7\\x3e\\x14\\xed\\x6b\\xbe\\xbd\\x8c\\xea\\x18\\x4c\\xa7\\x33\\xc5\\x50\\x0a\\xf2\\x52\\xf1\\x7c\\xc8\\x19\\x5d\\x75\\x1d\\xaf\\x6a\\xeb\\xb4\\x69\\x32\\xb8\\x7e\\x49\\x28\\xc4\\x33\\xc2\\xd2\\xee\\xe1\\x8f\\xc9\\x5c\\x66\\x89\\x63\\x9c\\xa6\\x77\\x1f\\x35\\xfe\\x45\\x42\\x52\\x8e\\xd3\\xfb\\x49\\x59\\xdb\\xd7\\x17\\x15\\x76\\xbb\\x7c\\x5a\\x3c\\xc5\\x17\\x0b\\x0a\\x6f\\x29\\x5e\\xcd\\x70\\x72\\x79\\x9b\\x90\\x75\\x9d\\x41\\xa4\\x86\\x27\\x6c\\x81\\x7e\\x70\\xa2\\x1b\\x5b\\x46\\xe3\\xf2\\xaf\\xd2\\x01\\x7a\\x13\\xf5\\x5f\\x30\\x11\\x1b\\xa8\\x14\\xcf\\xef\\x56\\xb2\\x86\\xfa\\x3f\\xb1\\x85\\x2d\\xfb\\x10\\xf5\\x41\\x67\\x7b\\xdf\\xaa\\x21\\xb5\\x03\\xfa\\x5a\\xfa\\x6c\\x08\\xeb\\x2e\\xaa\\xf0\\x1c\\x58\\xf8\\x87\\x8f\\xdc\\x6f\\x9b\\x9d\\x0e\\x4f\\xdd\\x90\\xdd\\x08\\x57\\x1a\\xb0\\xbd\\xff\\x48\\x1a\\xf5\\x94\\x83\\x1e\\x1a\\x92\\xd5\\x8e\\x69\\xbd\\xc3\\x18\\x10\\x46\\x09\\x33\\x7b\\xf3\\x9c\\xa9\\x53\\x73\\x18\\x13\\x3c\\xd9\\xcf\\x6f\\x82\\xc8\\x1c\\x4d\\xfc\\x04\\x64\\xb1\\x54\\x63\\x14\\x7c\\xfb\\x34\\xbf\\x09\\x36\\x4e\\xb8\\x96\\x4c\\x4b\\x92\\xc2\\xcf\\x1c\\xa7\\x84\\x2d\\x4e\\x58\\x4a\\x12\\xac\\x78\\x79\\x8a\\x9e\\xf2\\xa4\\xc8\\x80\\xa9\\x78\\x01\\xea\\x98\\x82\\x7e\\x7d\\xbe\\x3a\\x49\\xc3\\x80\\x5a\\xf8\\xa1\\xcc\\xed\\xf6\\xf6\\x20\\x36\\xa2\\xc5\\x4e\\x32\\x5d\\x31\\x99\\x7d\\x4e\\xcd\\xa9\\x73\\x7b\\x87\\x79\\xcc\\x3f\\xc0\\xec\\xdd\\xdb\\xa3\\xb0\\xce\\x5f\\x2f\\x8e\\x5f\\x1e\\xbe\\xff\\xf9\\x6c\\x7a\\xfa\\xe6\\xf5\\x8f\\x68\\x82\\x1e\\x9a\\x93\\xac\\xd1\\x08\\xbd\\xe0\\xd7\\x4c\\x73\\x45\\x58\\x66\\xf1\\xaf\\x12\\x71\\x81\\xe2\\x6b\\x2c\\x33\\x94\\x70\\x01\\x3b\\xd5\\xcd\\xa3\\x57\\x3c\\x2d\\x28\\xa0\\x49\\xeb\\xef\\xf5\\x1a\\x7d\\xae\\x8e\\x0a\\x64\\x22\\x48\\xae\\xd0\\xa4\\x9e\\x9e\\xdd\\x53\\x77\\x33\\x0c\\x03\\x0b\\x60\\x0b\\x75\\xfb\\x1e\\xeb\\xea\\x49\\xcf\\x4a\\xc1\\x8d\\x1a\\xfd\\x8a\\xaf\\xb0\\x83\\xf1\\x40\\xb0\\x5c\\xb1\\x04\\x4d\\xea\\xbb\\x4b\\x64\\x8e\\xc2\\xe0\\x03\\xcc\\x0e\\xa5\\x84\\x6c\\x46\\x57\\x01\\x22\\xcc\\xc9\\x55\\xed\\x50\\x5a\\x54\\x29\\x34\\x62\\x60\\x2d\\x6d\\xa8\\xa7\\x09\\x22\\xfe\\x55\\x06\\xf6\\x8e\\x94\\x77\\x8c\\xda\\x0b\\x6f\\x35\\x12\\x94\\x1b\\x95\\x3d\\x8b\\x26\\x9f\\xaf\\xce\\xf0\\xe2\\x35\\xce\\xc0\\xde\\x42\\x0a\\x06\\xe7\\xbb\\x17\\x31\\xce\\x73\\x60\\xe9\\xd1\\x92\\xd0\\x34\\xb4\\x84\\x07\\xcf\\x76\\x9c\\x8e\\x4c\\xdb\\x75\\xc4\\x99\\x39\\x43\\x98\\x20\\x06\\xd7\\xa5\\x46\\x0f\\xbd\\x2f\\x76\\xe3\\xd7\\xf4\\x5f\\x3a\\x88\\x56\\x65\\x87\\xfe\\x36\\x46\\x81\\x73\\xc6\\x2a\\xb4\\x8e\\xad\\x6e\\xec\\xa8\\xbf\\x9f\\x34\\x46\\xe7\\x17\\x76\\xd4\\x2b\\xd5\\xeb\\xc1\\xba\\xdb\\x1b\\x37\\x04\\xeb\\x6c\\x71\\x78\\x34\\x4b\\xf6\\x1b\\x33\\x25\\x23\\x22\\x61\\x44\\xf9\\x77\\x1f\\xca\\x45\\xb0\\x36\\x12\\x27\\x09\\xa6\\x34\\xac\\xdc\\xd9\\x69\\x77\\xaa\\xb1\\xaa\\x60\\x74\\x1e\\xd8\\xeb\\x05\\x41\\x84\\xca\\xb7\\x8b\\x3a\\x02\\x9c\\x6f\\x13\\x0e\\xed\\x5e\\xb8\\xba\\x4e\\xeb\\x56\\xdb\\x75\\x83\\x67\\xc9\\xca\\x9a\\x61\\xcd\\xec\\x42\\xff\\xe7\\x10\\xcd\\x0c\\x16\\x68\\x82\\x7e\\xb4\\x7f\\x6b\\xe3\\x62\\xf8\\x8a\\x2c\\xb4\\xbb\\xc6\\x02\\x7e\\x2b\\x40\\x9a\\x8a\\xf6\\x30\\x49\\x40\\xca\\xba\\x1e\\xbe\\x05\\x28\\x1c\\xc4\\x6a\\x09\\xac\\xee\\x87\\xb4\\xf6\\xfd\\x4a\\xba\\x3e\\xe4\\x61\\x45\\x06\\x02\\x2b\\x68\\x15\\xda\\xa6\\xe2\\xd4\\x6d\\x88\\x2e\\x39\\x35\\x76\\x6c\\xff\\xb2\\xed\\xb8\\x6c\\x1e\\x0c\\xcc\\xb9\\x40\\x61\\x85\\x81\\x26\\x0e\\xb3\\xbc\\x0c\\xe2\\x86\\x1f\\x3d\\x42\\x0f\\xcc\\x5b\\x9c\\x72\\x06\\x9d\\x6a\\xb8\\x17\\xb7\\x5d\\xfd\\x5b\\x7c\\x23\\x43\\xcc\\x99\\x96\\x2b\\x03\\x29\\xf1\\xa2\\x71\\xf5\\x25\\xeb\\xf6\\x0c\\xfd\\x96\\x50\\x3f\\xe5\\x42\\x69\\x8a\\xb7\\xd9\\x44\\xdf\\xdb\\x45\\x5f\\x17\\x70\\xfe\\x63\\x84\\x32\\xe3\\x3b\\xe7\\xbb\\x17\\xd5\\xeb\\x5e\\xfd\\xba\\x7f\\x71\\xd1\\x3e\\x5c\\xe9\\xbf\\x03\\xe0\\x0d\\x7b\\x8b\\x55\\x0f\\x9a\\xc5\\xe1\\xcc\\x9c\\x84\\xdb\\xee\\x09\\x4d\\x6a\\xc8\\xea\\x84\\xb5\\x3c\\x5c\\xdd\\xa9\\xac\\xf5\\xf0\\xfd\\x8b\\x93\\x37\\xd3\\xe7\\xef\\x5f\\xbe\\x3c\\x7e\\x37\\x3d\\x3d\\xf9\\xcf\\x63\\x34\\x31\\xfb\\x24\\xb5\\x3d\\xe7\\x49\\x86\\x26\\x4d\\xc7\\xb4\\x96\\x7c\\x6a\\x82\\xca\\x5b\\xc1\\xb5\\xb1\\x71\\x11\\x76\\x48\\x45\\x68\\x37\\x42\\x7b\\x9e\\x6b\\x60\\x86\\xe9\\x4a\\x82\\xe8\\xa7\\x77\\xe8\\xbe\\x86\\x36\\x4e\\xa1\\x0a\\x3c\\x9e\\xcf\\x4d\\xf6\\x6b\\x88\\x56\\x7d\\x94\\x19\\xe7\\x6a\\x49\\xd8\\xe2\\x8c\\x64\\x70\\x64\\x74\\xc0\\xb4\\x09\\xed\\xb6\\xe0\\x5c\\xf7\\x17\\x36\\x38\\xa7\\x20\\x15\\x61\\xe6\\x98\\xcb\\xc9\\x99\\x27\\x59\\xcc\\x99\\x01\\xca\\xed\\xd4\\xd0\\x04\\x15\\xcc\\x5e\\x9a\\x4a\\x9d\\x64\\xc6\\x5d\\xfd\\xd9\\xb8\\x57\\xcf\\x99\\xad\\xda\\xf2\\x24\\x73\\x28\\xda\\xa3\\x5d\\x8c\\xa5\\x3c\\x31\\x1c\\xe3\\x25\\x96\\xcb\\xda\\x4c\\xab\\x40\\x1b\\xbb\\xb0\\x9c\\x42\\xc2\\x53\\x78\\xff\\xee\\xe4\\x88\\x67\\x39\\x67\\x3a\\x79\\xf5\\x51\\x88\\x65\\x31\\x93\\x4a\\x10\\xb6\\x08\\xf7\\xca\\x06\\xd3\\xbb\\x27\\xa4\\x61\\xe9\\xa9\\xe2\\x02\\x2f\\x40\\x27\\x8d\\x13\\x05\\x59\\x18\\xc0\\x4d\\x2e\\x82\\xc1\\x2d\\xcc\\x6f\\x43\\x6b\\xf0\\xd8\\x4a\\xc1\\xcf\\xf5\\xa5\\xdd\\x6d\\xd3\\x84\\x04\\x2c\\x92\\x25\\x9a\\x4c\\x26\\x28\\xf8\\x41\\xd7\\x18\\x41\\x4b\\xb4\\x66\\xd1\\x1f\\x0e\\x7c\\x82\\x06\\xc0\\xbb\\x5e\\xd0\\x94\\xc4\\x81\\xf6\\xd7\\x41\\xde\\x82\\x09\\x60\\x29\\xb8\\x21\\x2f\\xad\\x08\\x98\\x0b\\x90\\xcb\\x56\\x66\\xf1\\x00\\xcc\\xb9\\xba\\xf0\\xbf\\xdb\\x1d\\x07\\xbb\\x65\\xd9\\x93\\x84\\xd0\\xa3\\x47\\x3b\\x77\\x87\\xa4\\x32\\x18\\x49\\xe8\\xcf\\x4f\\x76\\xc5\\xb7\\x47\\xa0\\x73\\x9b\\x52\\x22\\xe4\\x49\\x73\\xd1\\x9e\\x5c\\xad\\x34\\x5f\\x7e\\xa3\\x35\\x27\\xb8\\x76\\x5b\\xd1\\xce\\x68\\x9d\\x2c\\x9a\\xf0\\x2c\\x27\\x14\\x1a\\x91\\xf1\\xbe\\xc2\\x56\\x82\\x6a\\xb6\\xf6\\xff\\x6e\\xbb\\xb0\\x8c\\x8d\\xda\\x60\\x04\\x7a\\x30\\x41\\xbb\\x7d\\xf6\\x6a\\x2f\\x13\\x4c\\x50\\x70\\xba\\x62\\x0a\\xdf\\xd8\\x1b\\x0b\\xc1\\x1d\\x26\\x5a\\x22\\xf9\\x17\\x8d\\xfa\\x7c\\xcb\\x44\\xd1\\x8e\\x17\\x7a\\x66\\x85\\x9a\\x8e\\x22\\x1b\\x8e\\x62\\x67\\xd3\\xb5\\x55\\xdf\\x4b\\xf4\\x3f\\x77\\x5b\\xa1\\xdb\\x37\\xe8\\x5a\\xa1\\xfb\\x5e\\xb6\\xec\\x5b\\x01\\x74\\x13\\x79\\x67\\x75\\x54\\x2e\\xa7\\x80\\x5e\\xab\\xd3\\x05\\x8b\\x5d\\x2c\\x7f\\x65\\xea\\x19\\x55\\x95\\xe0\\x97\\xf6\\xdd\\xdb\\x34\\xd3\\x24\\xde\\x37\\xc5\\x1e\\x01\\xd1\\x04\\x3d\\xe8\\x19\\xfe\\x3d\\x93\\xd2\\x79\\xa2\\x4c\\x29\\x8d\\x74\\x50\\x5f\\x8d\\x2a\\xc1\\x3a\\xe9\\xc4\\xc2\\x9b\\x3c\\x84\\x29\\xad\\x77\\x31\\xf4\\xf8\\x2d\\xc1\\x55\\xd3\\x4a\\x89\\x2c\\xb9\\xde\\x83\\x91\\x97\\xb7\\x5a\\x2a\\xdf\\xa2\\xcd\\x86\\x50\\x8d\\x9b\\xc4\\x7e\\x40\\xa0\\xc0\\xb4\\x63\\xc4\\xbc\\x50\\x79\\xa1\\xec\\xa1\\x96\\xf3\\xd9\\x3a\\xd9\\x6b\\x10\\x0d\\xf8\\x77\\xf4\\x92\\x72\\xac\\x9e\\xec\\x1f\\x0a\\x81\\x57\\xf1\\xf3\\x5f\\xce\\x8e\\x4f\\xa7\\x6f\\x8f\\xdf\\x4d\\x8f\\x7f\\x3e\\x7e\\x75\\xfc\\xfa\\xcc\\xab\\x34\\xea\\x38\\x33\\xcd\\x30\\xa5\\x3c\\x09\\x99\\x57\\x3d\\x2c\\x01\\xe7\\xae\\x59\\x79\\x4f\\x98\\x3a\\x30\\xf4\\x42\\x87\\xf0\\xd3\\xf1\\xe1\\xdb\\xf7\\x07\\xee\\xcc\\x2a\\x42\\x79\\x84\\x4a\\x54\\x8d\\xa6\\xfd\\x32\\x6c\\x21\\x5a\\x50\\x87\\x31\\x28\\x6b\\x8e\\xdb\\xe3\\xdc\\x9c\\x50\\xfa\\x27\\x2a\\xc3\\x2a\\xd4\\x19\\x99\\x66\\x2b\\x05\\x6f\\xe6\\x73\\x09\\x2a\\xd2\\x8a\\x8a\\xd0\\x9e\\xdf\\x46\\x08\\x90\\x05\\x2d\\x9b\\x33\\x5f\\x83\\xa1\\x45\\x76\\x13\\xed\\xa3\\xe4\\xa8\\xb4\\xd6\\x27\\xe1\\xf9\\xea\\x8c\\x1f\\x2d\\x31\\x63\\x40\\x43\\x4b\\xde\\x54\\x68\\xe5\\x95\\xbb\\x52\\xf5\\x73\\x01\\x10\\xe6\\x9e\\x65\\xd8\\x0f\\xe7\\x01\\x67\\xef\\x0a\\xa6\\x48\\x06\\x27\\x8c\\x28\\x82\\x29\\xf9\\x04\\x69\\x70\\x51\\xda\\xb3\\xee\\xa4\\x5a\\x66\\x5c\\xfe\\x1e\\x68\\x49\\xa4\\xd9\\x94\\x30\\x35\\x60\\x9e\\x37\\x7e\\x6c\\xc4\\x88\\x72\\x9e\\x8a\\xf3\\xdc\\x99\\x65\\x9f\\x17\\x3b\\x5a\\xe6\\x42\\x9b\\x6d\\x7b\\xbd\\xdf\\x2f\\xe5\\x58\\x25\\xcb\\x4e\\x49\\xaf\\x61\\x39\\x4d\\x5f\\xf3\\x14\\xdc\\x5e\\xa0\\xfb\\x0b\\x4d\\xdc\\xef\\x8a\\xea\\x33\\xc7\\xc1\\x20\\xf2\\x69\\x7b\\xb3\\xaf\\x36\\xbe\\xda\\x29\\xde\\xbf\\x63\\xe7\\xfd\\x12\\xc0\\x24\\xdc\\xfa\\xaa\\x65\\xd7\\xd1\\x46\\x23\\x74\\xa4\\x04\\x7d\\x7c\\xcc\\x14\\x08\\xa4\\x38\\xb2\\x21\\xcc\\x6c\\xc2\\x6b\\xb7\\xf3\\x9b\\x7c\\xce\\x2e\\x61\\x95\\xf2\\x6b\\xd6\\xeb\\x8b\\x3a\\x52\\x41\\x7c\\x09\\xab\\x23\\x33\\xa9\\xc9\\x04\\xed\\x7f\\xe7\\x57\\x17\\x0d\\xc9\\x06\\xe8\\xb3\\xe1\\x7d\\x2c\\x13\\x34\\x44\\xe6\\xd2\\x11\\x72\\xd7\\xa6\\xed\\x1d\\xba\\x48\\xd3\\xc3\\x6c\\xe5\\xd0\\xb7\\xdf\\x14\\xf3\\xaf\\x24\\xb5\\xab\\xcd\\xa6\\x38\\xdf\\x1d\\xe8\\x86\\x0f\\xe2\\x44\\x09\\xfa\\x1f\\xb0\\x2a\\x45\\x30\\xd3\\x7f\\x7d\\x2f\\x3e\\x2e\\xf1\\xdd\\xcd\\xe9\\xfb\\xed\\x9c\\xde\\xdc\\x8b\\x53\\x99\\x42\\xef\\x64\\xb5\\xf7\\x64\\x3b\\x2b\\xb3\\xa6\\xf7\\x62\\xb7\\x3d\\x29\\x36\\xad\\x24\\xe3\\x85\\x04\\x94\\xf1\\x2b\\xd0\\xa6\\xe2\\x7a\\xbb\\x7f\\x8e\\x7e\\xb1\\x15\\x9d\\x6c\\x1a\\x8b\\x01\\x36\\xb0\\xdb\\xcd\\xa5\\x16\\xdb\\x49\\xa3\\xbd\\xf2\\xc6\\xc4\\xf3\\x1c\\x2f\\xe0\\x9f\\x68\\x54\\x56\\x42\\x66\\xf3\\xef\\x03\\x49\\xcb\\xa8\\x6e\\x41\\x57\\xba\\x0d\\x43\\x43\\x4d\\x4a\\xc3\\xff\\xd2\\x82\\xb7\\x9b\\x92\\x8d\\xa9\\xda\\x0a\\x39\\x0c\\x6e\\x82\\x08\\xdd\\xf4\\x7e\\x59\\x05\\x11\\x5a\\x35\\x55\\xb0\\xd9\\xd9\\xd1\\xf2\\x7a\\x3f\\x46\\x6c\\x6d\\x5a\\xce\\x78\\xba\\x8a\\xcd\\x5e\\xea\\xcf\\x44\\xaa\\x18\\xa7\\x69\\x18\\x94\\x1b\\xdb\\x38\\xcf\\x6d\\x97\\xb2\\xbd\\xea\\xdf\\xf6\\x5b\\xc6\\xe9\\x14\\xe7\\xf9\\xf4\\x57\\x39\\x35\\xfb\\x74\\xe9\\x74\\x6a\\x7e\\x5b\\x54\\x67\\x63\\x9c\\x97\\x49\\xa8\\xdc\\xdc\\x34\\x9b\\x81\\x26\\x8c\\x69\\xa9\\xff\\x37\\x00\\x00\\xff\\xff\\xa7\\x7a\\xe0\\xe6\\x6a\\x39\\x00\\x00\")\n\nfunc app_js() ([]byte, error) {\n\treturn bindata_read(\n\t\t_app_js,\n\t\t\"app.js\",\n\t)\n}\n\nvar _index_html = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xac\\x96\\x5d\\x6f\\xdb\\x36\\x17\\xc7\\xaf\\xdd\\x4f\\xc1\\xe8\\xc6\\xf6\\x03\\x51\\x8a\\x93\\x3e\\x41\\x32\\x4b\\x06\\xd2\\x36\\x2b\\xb2\\x8b\\x6e\\xc0\\x12\\x60\\x80\\x61\\x0c\\xc7\\xd4\\xb1\\xc4\\x84\\x22\\x59\\xf2\\xc8\\x2f\\x6b\\xfa\\xdd\\x07\\x4a\\x76\\xec\\x24\\x5d\\xd7\\x75\\xbb\\xb1\\xcc\\xf3\\xf2\\x3f\\x87\\x3f\\xf2\\x08\\xca\\x8e\\x0a\\x23\\x68\\x63\\x91\\x55\\x54\\xab\\xc9\\xab\\xac\\x7b\\xf4\\xb2\\x0a\\xa1\\x98\\xbc\\xea\\xf5\\xb2\\x1a\\x09\\x98\\xa8\\xc0\\x79\\xa4\\x3c\\xba\\xbd\\xf9\\x91\\x9f\\x47\\x7b\\x47\\x45\\x64\\x39\\x7e\\x6c\\xe4\\x32\\x8f\\x7e\\xe3\\xb7\\x97\\xfc\\xad\\xa9\\x2d\\x90\\x9c\\x2b\\x8c\\x98\\x30\\x9a\\x50\\x53\\x1e\\x5d\\x5f\\xe5\\x58\\x94\\x18\\xb1\\xf4\\xcb\\x99\\x6f\\xbb\\x40\\x7e\\xb3\\xb1\\x87\\x69\\x84\\x6b\\x4a\\x43\\x43\\xe3\\x5d\\xfd\\x86\\x16\\xfc\\x3c\\x62\\x93\\x57\\x8f\\x32\\x1a\\x6a\\xcc\\xa3\\xa5\\xc4\\x95\\x35\\x8e\\x0e\\x92\\x57\\xb2\\xa0\\x2a\\x2f\\x70\\x29\\x05\\xf2\\x76\\x11\\x33\\xa9\\x25\\x49\\x50\\xdc\\x0b\\x50\\x98\\x8f\\x92\\xe3\\x98\\xd5\\x52\\xcb\\xba\\xa9\\xf7\\xa6\\xa8\\x13\\x57\\x52\\xdf\\x33\\x87\\x2a\\x8f\\xa4\\x30\\x3a\\x62\\x81\\x51\\x1e\\xc9\\x1a\\x4a\\x4c\\xad\\x2e\\x23\\x56\\x39\\x5c\\xe4\\xd1\\x02\\x96\\xc1\\x9f\\xb4\\x26\\x2f\\xff\\x40\\x9f\\x47\\xa3\\xb3\\xf5\\xe8\\xac\\x63\\xb4\\x57\\x01\\x6b\\x15\\x72\\x32\\x8d\\xa8\\x78\\xa7\\xd8\\x09\\x94\\x4a\\x92\\xa8\\x46\\x17\\x27\\xeb\\xd1\\xc5\\x49\\x2b\\x33\\xf9\\x52\\xf9\\x27\\xc1\\xe7\\xc7\\xeb\\xd1\\xf9\\xf1\\x36\\x38\\x44\\x93\\x24\\x85\\x93\\xf7\\xad\\x37\\x4b\\xbb\\xd5\\xb3\\x5d\\x78\\xda\\x28\\xf4\\x15\\x22\\xed\\xf6\\xd2\\xd2\\x15\\xde\\xef\\xc4\\x97\\xa8\\x0b\\xe3\\x52\\x67\\xe6\\x86\\x0c\\xaf\\x8d\\x36\\x87\\xff\\x93\\x10\\x39\\xf9\\x4e\\xcd\\x1a\\x08\\x5d\\x00\\x1f\\x36\\xe3\\x9f\\x2d\\xff\\x95\\xb2\\x30\\x05\\xd6\\xd2\\xb9\\x27\\x7f\\xff\\x2b\\xc5\\x5d\\x9f\\xdf\\xa7\\xd7\\x45\\xec\\x72\\xb3\\x74\\x3b\\x51\\xd9\\xdc\\x14\\x9b\\x56\\x4c\\x1b\\x2f\\x9c\\xb4\\x14\\x16\\xbd\\xac\\x90\\x4b\\x26\\x14\\x78\\x9f\\x47\\x3b\\x07\\x0f\\x97\\x19\\xa4\\x46\\xd7\\x56\\xef\\xf5\\x32\\xfb\\x22\\xa4\\x46\\xef\\xa1\\xc4\\x68\\xf2\\x8b\\x42\\xf0\\x18\\x33\\xd4\\x30\\x57\\xc8\\x7e\\x82\\x25\\xfc\\xda\\x86\\x30\\x32\\xed\\x54\\x48\\xdd\\x20\\x6b\\xbc\\xd4\\x65\\xab\\xd5\\xa3\\x4a\\x7a\\xe6\\xcd\\x82\\x56\\xe0\\x30\\x66\\xc6\\xb1\\xc2\\xac\\xb4\\x32\\x50\\x30\\x60\\x05\\xfa\\x7b\\x32\\x96\\x2d\\xd1\\x79\\x69\\x74\\x92\\xa5\\x76\\xdb\\x02\\xbc\\x68\\x21\\x40\\x89\\x18\\x81\\x2b\\xc3\\x1b\\xe2\\xf7\\xb9\\x82\\xb0\\xee\\x20\\x84\\x29\\xf7\\x3f\\xa4\\x69\\x29\\xa9\\x6a\\xe6\\x89\\x30\\x75\\xaa\\x41\\x2e\\xd1\\x9b\\x46\\x17\\x69\\x77\\x9f\\xa3\\xc9\\xbb\\x6d\\xe1\\x2c\\x85\\x0e\\x46\\x5a\\xc8\\x65\\xcb\\x28\\x3d\\x84\\x94\\x1d\\x71\\x3e\\x95\\x0b\\xa6\\x88\\x5d\\x5f\\xb1\\x8b\\x59\\x6b\\x3b\\xe0\\x26\\x91\\x37\\xb6\\x74\\x50\\xe0\\x73\\x72\\x7b\\x70\\x07\\x31\\x2f\\xd0\\x6d\\x1d\\xec\\x5a\\x13\\x3a\\x8d\\xc4\\xae\\xd6\\x56\\x19\\x87\\xee\\x25\\x42\\xf6\\x84\\xde\\x23\\x9e\\x3d\\x9d\\x83\\x3a\\xdf\\xc2\\x67\\xb5\\x5a\\x25\\xb5\\x14\\xce\\x04\\xc9\\x16\\x13\\x6a\\xde\\xf8\\x74\\x77\\x24\\xa9\\xdc\\xf6\\xc4\\x71\\xdb\\x53\\x02\\xde\\xae\\xa3\\xc9\\x6d\\x57\\x64\\x4b\\x6e\\x0f\\xee\\x68\\x8a\\xba\\x90\\x8b\\x19\\xe7\\x87\\xe4\\x4a\\xc2\\x16\\x1d\\x7b\\x60\\x47\\xd7\\x57\\x6c\\x36\\x61\\xc1\\xf3\\xc8\\x51\\x16\\x79\\x14\\xaa\\x49\\x5d\\x72\\x6f\\xa5\\x6e\\xf9\\xed\\x35\\xbb\\x93\\x60\\xde\\x89\\xbf\\x99\\xbf\\x3b\\x1f\\xd2\\x0e\\x0e\\xee\\xeb\\x99\\x35\\x90\\xa8\\xe6\\x0e\\xc4\\x3d\\x92\\xff\\xa7\\xc9\\x5e\\xd6\\x56\\xa1\\x17\\xce\\x28\\x35\\x07\\xf7\\x6d\\xf9\\x56\\x0a\\x53\\x98\\x7a\\xf7\\xfc\\x7a\\x0e\\x58\\xfb\\x57\\x01\\xed\\xa1\\x0f\\x16\\x8d\\x16\\x24\\x8d\\x1e\\xc8\\xd8\\xc7\\x26\\x2e\\x63\\x17\\x43\\x5c\\x0f\\x3f\\xc9\\x69\\xff\\xbd\\x31\\xa5\\xc2\\x4b\\x0d\\x6a\\x43\\x52\\xf8\\x9f\\xe7\\x77\\x28\\xa8\\x3f\\xcb\\xdd\\x58\\x4e\\xdd\\x2c\\x0f\\x3f\\x0f\\x0f\\x8f\\xf9\\xc3\\x4f\\xed\\x8c\\x0d\\x82\\x39\\xf9\\x98\\x77\\x8f\\x87\\x87\\xe9\\x6c\\x98\\xd8\\xc6\\x57\\x03\\x70\\x65\\x53\\xa3\\x26\\x3f\\xfc\\x1c\\xb7\\x4e\\x95\\x8f\\xfe\\xa7\\x71\\xc5\\xde\\x01\\xe1\\x60\\x38\\x86\\xdc\\x27\\xc2\\x21\\x10\\x5e\\x29\\x0c\\x81\\x03\\x33\\x8c\\xbb\\x69\\xaf\\x73\\x9f\\x94\\x48\\x5b\\xbb\\x7f\\xb3\\xb9\\x81\\xf2\\x03\\xd4\\x38\\x30\\xc3\\xe9\\xf1\\x6c\\x0c\\x09\\xf8\\x8d\\x16\\xf9\\x68\\x0c\\x49\\xd8\\x74\\x39\\xae\\x13\\x0b\\x0e\\x35\\x7d\\x30\\x05\\x26\\x52\\x7b\\x74\\xf4\\x06\\x17\\xc6\\xe1\\x20\\xec\\x2d\\x88\\x7e\\x1e\\x0e\\x56\\x52\\x17\\x66\\x15\\x17\\x46\\xb4\\x7d\\xc5\\xfd\\x0e\\x4b\\x3f\\xee\\x1f\\x5e\\xec\\xb2\\x85\\xc0\\x61\\x47\\xa1\\xbd\\xdf\\xfb\\xd5\\x9d\\xef\\xc7\\xfd\\x12\\xfa\\xc3\\x71\\x50\\x2d\\x61\\xd0\\xef\\xf6\\xd0\\x8f\\x59\\xff\\xf6\\x92\\x9f\\x9e\\x9e\\xbd\\x7e\\x7d\\x7e\\xf2\\x7f\\x7e\\x1a\\x0c\\xd0\\x90\\x39\\x88\\xf4\\xa8\\x8b\\x60\\xb6\\x50\\x62\\xf8\\x08\\xe8\\x5c\\x4f\\x4e\\xea\\xc9\\x24\\x64\\x69\\xf7\\xfa\\xcd\\xd2\\xee\\x43\\xe7\\xcf\\x00\\x00\\x00\\xff\\xff\\xa9\\x89\\x3d\\x1d\\x00\\x09\\x00\\x00\")\n\nfunc index_html() ([]byte, error) {\n\treturn bindata_read(\n\t\t_index_html,\n\t\t\"index.html\",\n\t)\n}\n\nvar _styles_css = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xac\\x58\\x6b\\x6f\\xe3\\xba\\xd1\\xfe\\x6c\\xfd\\x8a\\xc1\\x1e\\x04\\xde\\xec\\x1b\\x2a\\x14\\x2d\\xcb\\x8e\\x8d\\x00\\xef\\x69\\xb0\\xc0\\x16\\xe8\\xf6\\x43\\x0b\\x9c\\x9e\\xa2\\x28\\x16\\xb4\\x44\\xdb\\x44\\x28\\x51\\xa0\\xe8\\x4b\\x1c\\xe4\\xbf\\x17\\x24\\x75\\xb7\\x9c\\xcb\\x62\\xd7\\x1b\\x23\\x1c\\x51\\xcf\\x3c\\x73\\xe1\\xcc\\x30\\x5f\\xe0\\xd9\\x1b\\xa5\\x54\\x6d\\x78\\xb6\\x00\\xbc\\xf4\\x46\\x39\\x4d\\x12\\x9e\\x6d\\xdc\\x62\\x25\\x8f\\xa8\\xe0\\x27\\xbb\\x5e\\x49\\x95\\x30\\x85\\x56\\xf2\\xb8\\xf4\\x46\\x6b\\x99\\x69\\xb4\\xa6\\x29\\x17\\x4f\\x0b\\x18\\xff\\x43\\xae\\xa4\\x96\\xf0\\x5d\\x66\\x72\\xbc\\xf4\\x5e\\x3c\\x6f\\xab\\x53\\x01\\xcf\\xb0\\x65\\x7c\\xb3\\xd5\\x0b\\x08\\x30\\xbe\\x5a\\xc2\\x8b\\xb7\\x92\\xc9\\x93\\xd1\\x77\\xe0\\x89\\xde\\x96\\x62\\x6f\\x94\\xf2\\x0c\\x75\\x76\\x96\\xf0\\x05\\x3f\\xb1\\x05\\x04\\x51\\x6e\\x14\\xa2\\x03\\x5b\\x3d\\x72\\x8d\\x76\\x05\\x53\\xa8\\x60\\x82\\xc5\\x7a\\x01\\x99\\xcc\\x98\\x79\\x96\\xca\\xd3\\x85\\x07\\xc5\\xb0\\x5c\\x0e\\x8a\\x87\\x64\\x2b\\x1a\\x3f\\x6e\\x94\\xdc\\x65\\x09\\x8a\\xa5\\x90\\x6a\\x01\\xbf\\x91\\xc0\\x7c\\xac\\x9d\\xb7\\x5f\\xe0\\xef\\xf2\\x9f\\xb1\\xe2\\xb9\\x86\\x94\\x15\\x05\\xdd\\xb0\\x1b\\xf8\\xeb\\xd7\\x3b\\xa0\\x59\\x02\\x52\\x24\\x4c\\x55\\x62\\xf8\\x72\\xeb\\xf9\\x9c\\xa1\\x5d\\xbe\\x51\\x34\\x61\\x28\\x96\\x99\\xa6\\x3c\\x63\\xea\\x06\\xfc\\x4c\\x16\\x16\\xa2\\x11\\x1a\\x27\\x75\\x9d\\x37\\xc0\\x63\\x1a\\xcd\\x66\\xeb\\x78\\x09\\xd5\\x7a\\x6d\\xff\\x2d\\xa1\\xe5\\x3c\\xc2\\x52\\xc3\\xb3\\xad\\xb8\\xa6\\xd9\\xa8\\xad\\x28\\x3e\\x43\\x4a\\x8f\\xa8\\x0c\\x0e\\x99\\xb2\\x74\\x09\\x75\\x36\\x18\\x24\\xe8\\x22\\x09\\x9e\\x3d\\xb6\\x61\\xcc\\xda\\x10\\xb7\\xfa\\x0f\\x25\\xfb\\x95\\x14\\xc9\\x39\\x45\\xcd\\x8e\\x1a\\x69\\x45\\xb3\\x62\\x2d\\x55\\xba\\x80\\x5d\\x9e\\x33\\x15\\xd3\\x82\\xf5\\x34\\x96\\x3e\\xfe\\x17\\x5b\\xc1\\x9e\\xa9\\x82\\xcb\\x0c\\x1a\\x1f\\x51\\xeb\\x0e\\xd0\\x5b\\x06\\x29\\xe5\\x19\\x1c\\x78\\x96\\xc8\\x83\\x75\\x74\\xc7\\x91\\xb9\\x2c\\xb8\\xe6\\x32\\x5b\\x00\\x5d\\x15\\x52\\xec\\xb4\\x89\\xeb\\x9b\\x29\\x38\\xe0\\xf0\\xf5\\x3a\\x0e\\xf0\\xac\\xfb\\x8c\\xa7\\x74\\xc3\\x16\\xb0\\x53\\xe2\\xf3\\xa7\\x84\\x6a\\xba\\xb0\\x82\\xdb\\x62\\xbf\\xf9\\xbf\\x63\\x2a\\x6e\\xae\\x26\\x0f\\xc5\\x7e\\x03\\x56\\xdb\\xfd\\x98\\xe0\\x71\\x79\\x26\\xee\\xc7\\x01\\x19\\xc3\\x9e\\xb3\\xc3\\x5f\\xe4\\xf1\\x7e\\x8c\\x01\\x03\\xc1\\x60\\x64\\xc7\\x54\\x64\\xc5\\xfd\\x78\\xab\\x75\\xbe\\xb8\\xbd\\x3d\\x1c\\x0e\\xfe\\x61\\xe2\\x4b\\xb5\\xb9\\x25\\x18\\x63\\x83\\x3b\\xbe\\x9a\\x7c\\xbd\\x9a\\x3c\\xe4\\x54\\x6f\\x21\\xb9\\x1f\\x7f\\x8f\\x20\\x20\\x31\\x46\\x7e\\x44\\x08\\xf2\\xf1\\xdd\\x14\\x05\\x3e\\x21\\x01\\xf2\\xc9\\x0c\\x05\\xfe\\x6c\\x3e\\xfd\\x7d\\xea\\xdf\\xcd\\x09\\xb8\\x6f\\x6c\\x3f\\x81\\x51\\x15\\x07\\x7e\\x34\\x03\\x0c\\x13\\x3f\\x98\\x13\\xe4\\x47\\xf3\\x09\\x84\\x9d\\x97\\xee\\xe6\\xe0\\xbe\\xcb\\x97\\x42\\x08\\xc8\\x96\\xd0\\x10\\x42\\xb7\\x86\\x10\\x85\\x7f\\x44\\x31\\x72\\x38\\xc8\\xe2\\x18\\x18\\x64\\x60\\xc0\\xc2\\x3c\\x04\\x53\\xff\\x0e\\x4f\\x61\\xe6\\x13\\x02\\x41\\x04\\x91\\x61\\x69\\x7f\\xf9\\x20\\x63\\x82\\x21\\xfa\\x23\\x6c\\x74\\xa3\\x10\\x85\\x5b\\x44\\x62\\x0c\\x06\\xc5\\x80\\x80\\x05\\xa9\\x35\\x0f\\x5b\\x8d\\x1f\\xe6\\xfe\\x64\\x02\\x18\\x22\\x7f\\x1e\\xcc\\xad\\xcd\\x53\\x7f\\x36\\x71\\xaf\\x80\\xe3\\x6a\\x70\\x20\\xb2\\xb8\\x10\\x01\\xfe\\xd6\\xd1\\x0a\\xe1\\xbe\\xeb\\xb8\\xda\\x6f\\x30\\xec\\xb7\\x00\\xc2\\xda\\xd8\\xc6\\xd6\\xcb\\xa6\\x06\\x86\\xdc\\xbe\\xe3\\x65\\x08\\xb7\\xe4\\x94\\xa2\\x10\\x30\\x25\\x50\\x1a\\x83\\x08\\x22\\x7b\\x62\\xe4\\x41\\xd4\\x92\\x07\\xe0\\xe4\\x88\\x9c\\xbe\\x63\\x20\\xcd\\x7e\\x23\\xff\\x86\\xf7\\xe4\\x94\\x12\\xdc\\xde\\x6f\\x70\\xb6\\xc4\\xc8\\x51\\x80\\x61\\x5e\\xaa\\x0d\\xac\\x8a\\x39\\x54\\x24\\xcc\\x67\\x7e\\x4a\\x31\\xaa\\x10\\xdd\\x86\\x10\\x1a\\x7c\\x0c\\xe1\\x69\\x0c\\x6b\\x2e\\xc4\\xfd\\xf8\\x8a\\x4c\\x42\\x6c\\x3e\\x4e\\x80\\x64\\x4e\\x63\\xae\\x9f\\xee\\xc7\\xd8\\x0f\\x4a\\x91\\xda\\x09\\x76\\x3f\\x66\\x7b\\x96\\xc9\\x24\\x19\\xdf\\xba\\x94\\x36\\xd9\\x7d\\x35\\xf9\\xfa\\xe9\\xda\\xd6\\xac\\xe6\\x0c\\x6f\\x19\\x4d\\xba\\x35\\x91\\x84\\xd8\\x76\\x85\\x56\\xbd\\x9a\\x91\\x4a\\x54\\xf6\\x32\\xa0\\x3b\\x2d\\x97\\xde\\xc8\\xd6\\x1a\\x2a\\xf8\\x26\\x5b\\x40\\xcc\\x32\\xcd\\x54\\xbb\\xcb\\x11\\x96\\x3a\\xfe\\x3d\\x9d\\x6b\\x29\\x75\\x57\\xe7\\xa4\\xac\\xa5\\x67\\xbc\\x04\\xb7\\x55\\xa6\\x46\\xf4\\xa7\\x06\\xd3\\x7c\\x2f\\xbd\\x51\\xc2\\x8b\\x5c\\xd0\\xa7\\x05\\xf0\\x4c\\xf0\\x8c\\xa1\\x95\\x90\\xf1\\xe3\\x30\\x0e\\x35\\x30\\x17\\xf6\\x3b\\x2b\\x12\\x16\\x4b\\x45\\x5d\\x2d\\xbb\\xdc\\x9f\\xd6\\xeb\\xe9\\x8c\\x90\\xa5\\x37\\x6a\\x55\\x5d\\xdb\\xcb\\x6d\\xff\\x56\\x34\\xe1\\xbb\\x62\\x01\\xc4\\x7a\\xab\\xe9\\xf6\\x96\\x75\\x60\\x39\\x9b\\x6a\\x58\\x7a\\x35\\xba\\x64\\xb4\\xef\\xaa\\x2d\\xd2\\x5c\\x0b\\x86\\x56\\xd4\\xba\\xaa\\xa7\\x22\\xcc\\x8f\\xf6\\xc7\\x7a\\xb7\\xf1\\xa3\\x6b\\xe8\\xaf\\x34\\xd6\\x5e\\x71\\x6e\\x07\\x50\\xb0\\xb5\\x1e\\xa4\\x6d\\x92\\xd2\\x92\\x3f\\x21\\x9e\\x25\\xec\\xb8\\x00\\x62\\x89\\xf7\\x69\\xa2\\xd5\\x4e\\x6b\\x99\\xbd\\xe6\\xea\\x52\\x3b\\xf6\\x67\\x16\\xb0\\xe2\\x5d\\xad\\x9b\\x04\\xc3\\xbe\\xcd\\x89\\xbe\\xd9\\xd8\\x9f\\xb8\\xd8\\x0f\\x98\\xe8\\xce\\x85\\x65\\x46\\xf3\\x1c\\x95\\x2d\\xab\\xd3\\xa4\\x14\\x13\\x54\\xf3\\x3d\\x7b\\x67\\x7a\\x57\\xf4\\xa6\\xb3\\xd2\\xaf\\x66\\x64\\xdb\\xd2\\x44\\x1e\\x16\\xb6\\x68\\xe7\\x47\\x20\\xf3\\xfc\\x08\\x6a\\xb3\\xa2\\x9f\\xf1\\x8d\\xfd\\xf8\\x64\\x7a\\x7d\\x63\\x2b\\x62\\x7e\\x74\\x5f\\xdd\\xa7\\xe4\\x7a\\xe9\\x8d\\xe4\\x9e\\xa9\\xb5\\x30\\x30\\x5b\\x9e\\x24\\x2c\\x7b\\xcf\\x30\\xf4\\x7b\\x9e\\x57\\x6d\\x98\\x09\\x96\\xb2\\x4c\\x17\\xb6\\x1f\\x33\\xa5\\xa4\\x42\\x09\\xa7\\x42\\x6e\\x8c\\xb5\\x75\\x90\\x02\\x8c\\xdb\\x87\\xa4\\x4c\\xea\\xe1\\x23\\x3b\\xd4\\xc6\\xdb\\xa9\\x1a\\xf6\\x4b\\x42\\x10\\x95\\x3e\\x6b\\x75\\xf7\\x72\\x97\\x0d\\x78\\x4f\\xa6\\x65\\x5e\\xe7\\x9c\\xc9\\xb3\\x66\\x3a\\xb0\\x3e\\x47\\x4e\\x86\\x66\\xa4\\x15\\x08\\x64\\x5f\\x42\\x81\\x71\\x71\\x27\\x2f\\xeb\\x02\\xd0\\x3f\\x95\\x2f\\x9e\\xe7\\xa7\\x32\\xa1\\x02\\x35\\xde\\xbc\\x38\\xa5\\x58\\x74\\x5c\\xf3\\x31\\xbf\\xa9\\x32\\x1b\\x6d\\xa8\\xb5\\x96\\x69\\xcd\\xbf\\x76\\xea\\xb4\\xcd\\x64\\x72\\x21\\x15\\xcb\\x88\\x43\\xf9\\xdf\\x9f\\xbb\\xaa\\x6b\\xa9\\xf5\\x43\\x84\\x87\\x12\\x6f\\x30\\x63\\x5f\\x49\\xf9\\xd1\\xd9\\x18\\x55\\x86\\x29\\x9c\\xbb\\x30\\xd5\\x05\\xa2\\x4c\\xf5\\x5e\\x26\\x9b\\x34\\x25\\x67\\xb9\\x1a\\xdc\\xd9\\x4c\\x8e\\xf2\\xa3\\xfd\\xe9\\xe6\\xf1\\xa4\\x65\\x13\\x6a\\xba\\x48\\xed\\x1b\\x57\\x31\\xce\\xe7\\xd5\\xfe\\x4b\\x28\\x16\\xb2\\x60\\xaf\\x47\\xc9\\x61\\x95\\xd1\\x71\\x8b\\x2a\\x0d\\x3b\\x65\\xc4\\xad\\xe2\\x9d\\x2a\\x8c\\x33\\x72\\xc9\\x5d\\x7a\\xd7\\x1a\\x4d\\xa5\\x65\\x99\\xee\\xf0\\xac\\x6a\\x5b\\x73\\x24\\xcb\\x18\\x98\\x64\\xaf\\x7b\\x62\\x34\\x33\\x6e\\xab\\x81\\xcc\\x64\\x8d\\x4c\\x2c\\xf2\\xe6\\x8a\\x87\\xaa\\x94\\x29\\xb3\\x73\\x68\\x73\\x5b\\x22\\xe8\\x8a\\x89\\x37\\xdb\\x52\\x79\\x52\\xad\\xed\\xad\\xb0\\xda\\xb3\\xd3\\xb5\\xa1\\x6e\\xb4\\x67\\x5a\\x9d\\x26\\x9e\\xe5\\x3b\\xfd\\x1f\\xfd\\x94\\xb3\\xfb\\x4f\\xf1\\x96\\xc5\\x8f\\x2b\\x79\\xfc\\xf4\\xdf\\x86\\x7e\\x95\\xfc\\xef\\x63\\xbf\\xa7\\x62\\xc7\\x5a\\xf7\\xcd\\xc8\\x32\\xba\\x64\\xca\\x9e\\x29\\xcd\\x63\\x2a\\x2a\\x73\\xb4\\xcc\\x5b\\x2e\\x47\\xc7\\x56\\x1d\\x3c\\x6c\\xb9\\x66\\xa8\\xc8\\x69\\xcc\\x4c\\xcd\\x3a\\x28\\x9a\\xbb\\x83\\xad\\xa5\\x14\\x65\\x2f\\xec\\x15\\x97\\x57\\x12\\xa7\\x53\\x64\\x5c\\x3d\\x29\\x5f\\xea\\xf6\\xc1\\x5f\\x73\\x1e\\x9a\\x83\\x3d\\x19\\x3e\\xaf\\x13\\x6c\\x3e\\xd6\\xbb\\x95\\x39\\x3b\\xe1\\x52\\xe8\\xd8\\xd4\\xda\\x8f\\x0c\\x5b\\xad\\x0b\\x69\\x17\\xd7\\x4d\\x4e\\xed\\xcb\\xbe\\xea\\xd4\\x4c\\xc6\\xd8\\x2b\\x01\\x1b\\xd2\\xd5\\x80\\xff\\xf8\\xb1\\xd2\\xaf\\xb6\\xf9\\xb3\\x23\\x78\\x5e\\xa0\\xce\\xbb\\xcb\\x50\\xdf\\xe8\\xb7\\x91\\x8b\\x77\\xdb\\x3e\\xbb\\xc5\\xd6\\x64\\x97\\xe1\\xd8\\xbb\\x1f\\x9b\\x8d\\x2c\\xe1\\x5a\\xaa\\x1f\\x3f\\x4c\\x72\\xe5\\x4c\\xa1\\x35\\x3f\\xb2\\xcb\\x8d\\xa2\\x37\\x31\\x55\\x6d\\xa3\\xdb\\x21\\x06\\x50\\xe5\\x4e\\xf7\\x2f\\xc9\\xad\\x6a\\xde\\x45\\xed\\x5e\\x90\\x07\\xc0\\x78\\xf6\\xfe\\x1b\\x77\\x1f\\xcc\\x4c\\x0f\\xdf\\x78\\xc2\\xe0\\xc0\\x56\\xa8\\xc8\\x59\\xcc\\xd7\\x3c\\x86\\x9c\\x2a\\x5d\\x00\\xcf\\x0a\\xf3\\x24\\x61\\xc5\\xa3\\x96\\x39\\xd0\\x3c\\xb7\\x43\\x45\\xb9\\x46\\x66\\xdd\\xbe\\xf1\\x9f\\xfd\\xd9\\xe9\\xd2\\x4e\\x57\\xdc\\x6f\\xe0\\xd2\\xf3\\xea\\x0e\\x00\\xdd\\xf9\\xe4\\x0c\\xb1\\x3d\\xc9\\xb5\\xff\\x84\\xe2\\xf4\\x77\\x16\\x17\\xa9\\xc9\\x4c\\x3c\\xbd\\xad\\xe9\\xd2\\x6e\\x97\\xd3\\xe0\\xdc\\xf8\\x20\\x13\\xf6\\x9d\\x9b\\x89\\x0b\\x5c\\x84\\xa0\\xd0\\x4f\\x82\\xb9\\x49\\xac\\xf5\\x70\\xc0\\x51\\xcd\\x53\\x54\\xc4\\x4a\\x0a\\x93\\xaa\\xc8\\x5c\\xd8\\xac\\x1b\\x9a\\x62\\x51\\x8e\\x0f\\x64\\x3a\\xbd\\x81\\xe6\\x0b\\xfb\\xc1\\xf5\\x19\\x0c\\x4f\\x73\\xc1\\x1c\\x18\\xda\\x4a\\xc5\\x4f\\xc6\\xbd\\x02\\x12\\xbe\\xbf\\xb9\\xbc\\xb1\\xaa\\xc5\\x66\\x1b\\x3c\\xc3\\x40\\x3e\\x75\\xc8\\x54\\x27\\xf6\\x7d\\xba\\xdf\\xa3\\x77\\x58\\x67\\x5d\\x3a\\xa3\\xe5\\x2f\\x75\\xc6\\x33\\xd4\\x7d\\x79\\x09\\xd5\\xa8\\x57\\x47\\xc7\\x9c\\xdd\\xf7\\x7b\\xb5\\x0b\\xd6\\x8b\\x30\\xbc\\xcb\\xf4\\x7a\\xc4\\x84\\xb2\\x90\\x54\\x39\\xfc\\x16\\x93\\x5e\\xd8\\x1a\\x9c\\xce\\x19\\x70\\x59\\xfa\\x37\\x49\\xcd\\x60\\x00\\x3c\\x4b\\x78\\x4c\\x4d\\x96\\x7e\\xb9\\xf5\\x7e\\x13\\x4e\\x8a\\x8a\\x7c\\xa0\\x98\\x9c\\x57\\xa6\\xb0\\x3b\\x39\\x96\\xcb\\xa1\\xa6\\x36\\x99\\x2c\\xbd\\xa6\\x5f\\x05\\xd8\\x34\\xce\\xb2\\x67\\x55\\x7f\\x5a\\xa6\\x19\\x4f\\xcb\\xcb\\x75\\xf1\\x88\\x94\\xd4\\x54\\xb3\\x5c\\xd0\\x8c\\x41\\xe0\\x13\\x53\\x85\\xd6\\x3c\\xe3\\x9a\\x01\\xa3\\x05\\x43\\x3c\\x33\\xb5\\x73\\xe9\\x8d\\x7e\\xea\\xad\\x17\\xcf\\xfb\\xff\\x4a\\xed\\x23\\x7b\\x5a\\x2b\\x9a\\xb2\\xa2\\xff\\xfe\\xb3\\x37\\xc2\\x57\\xf0\\x0c\\xd5\\xc6\\x56\\x4f\\xc9\\x99\\x32\\x35\\xd2\\x38\\xe3\\x73\\x60\\x86\\x80\\x6b\\x78\\xf1\\x46\\xd3\\x0f\\x6c\\x77\\x8a\\xfe\\xfd\\x39\\x98\\xe3\\x84\\x6d\\xec\\xeb\\x26\\x3a\\x3f\\xfd\\x7e\\x29\\xf8\\xb3\\x05\\x68\\x8c\\x7c\\xd3\\x38\\x6f\\x34\\x7a\\x8f\\xa2\\x3f\\x3f\\x3b\\xd4\\x4a\\xad\\x5d\\x2d\\xbd\\xd1\\xe8\\x23\\x6c\\x07\\x41\\xc0\\x1b\\xbd\\xc0\\xf4\\x63\\x5c\\x50\\x30\\xc7\\x7e\\xf0\\x2b\\x08\\x5d\\x42\\xb2\\xac\\xca\\x80\\x7c\\x88\\x56\\x07\\x0a\\x05\\xb3\\x3b\\xff\\xee\\xe7\\x99\\x5d\\x06\\x33\\xd1\\xfd\\x5f\\x00\\x00\\x00\\xff\\xff\\x4d\\x2f\\x6a\\xe2\\x3b\\x1a\\x00\\x00\")\n\nfunc styles_css() ([]byte, error) {\n\treturn bindata_read(\n\t\t_styles_css,\n\t\t\"styles.css\",\n\t)\n}\n\nvar _vendor_codemirror_codemirror_css = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xac\\x59\\x7b\\x6f\\xdb\\x38\\x12\\xff\\xdf\\x9f\\x62\\x0e\\xc1\\xa1\\x6d\\x60\\x25\\x72\\x1e\\x4d\\xe3\\x00\\x87\\xed\\xb5\\xdd\\xed\\x02\\xb7\\xb7\\x45\\x9b\\x2e\\x70\\x7f\\x52\\xe2\\xc8\\x22\\x4c\\x91\\x2a\\x49\\xf9\\xd1\\x20\\xdf\\xfd\\xc0\\x87\\x64\\x49\\xa6\\xd2\\x14\\x58\\x04\\x28\\x6a\\x72\\x34\\x33\\x9c\\x17\\x7f\\x33\\x3c\\x3f\\x85\\x7f\\xbf\\xfd\\xf2\\xfb\\xbb\\x2f\\x70\\x7a\\x3e\\x9b\\x9d\\xbd\\x93\\x14\\xff\\x60\\x4a\\x49\\x05\\x0f\\x33\\x80\\xf3\\x53\\xf8\\x82\\x06\\x4a\\x64\\xab\\xd2\\xcc\\x61\\xcb\\xa8\\x29\\xe7\\x90\\x49\\x45\\x51\\xe9\\x39\\x10\\x41\\x61\\xc5\\x65\\x46\\x38\\x14\\x52\\x18\\xa8\\x95\\xac\\x51\\x19\\x86\\x1a\\x4a\\x54\\x68\\x59\\x82\\xdb\\x49\\x0a\\x52\\x31\\xbe\\x5f\\x42\\x25\\x85\\xd4\\x35\\xc9\\xf1\\x6e\\x06\\x81\\xed\\x12\\x2e\\xd3\\xb4\\xde\\xd9\\x85\\x5c\\x72\\xa9\\x96\\x90\\x71\\x92\\xaf\\xed\\x6f\\xca\\x14\\xe6\\x86\\x49\\xb1\\x04\\x6e\\xd4\\xdd\\xec\\x71\\x36\\x3b\\x3f\\x85\\x4f\\x6f\\xdf\\xbf\\xff\\xfd\\xbf\\xbf\\x8d\\x15\\x4e\\x38\\x13\\xa8\\x9d\\xda\\x35\\xa1\\x94\\x89\\xd5\\x12\\xae\\xea\\x1d\\xa4\\x77\\xf6\\x18\\x7f\\x59\\xbd\\x72\\xc2\\xdb\\x3d\\x20\\x4a\\x36\\x82\\x42\\x2e\\x85\\x41\\x61\\x2c\\xb3\\xc7\\xc1\\xf1\\x6b\\x85\\x43\\x5e\\xa9\\xe5\\xe6\\x78\\x7d\\x94\\x8a\\x7d\\x97\\xc2\\xf4\\xb8\\xc9\\x62\\xc8\\x69\\xa0\\x98\\xce\\x95\\xe4\\x3c\\x23\\x2a\\x29\\x18\\xe7\\xa8\\xe6\\xd0\\xdf\\x5d\\x35\\xc6\\x60\\xbb\\xe5\\x44\\x66\\x24\\x5f\\xaf\\x9c\\x7a\\x49\\xb0\\xc8\\xb6\\x64\\x06\\x9d\\xec\\xfb\\x12\\x81\\x33\\x63\\x38\\x82\\xfe\\xd6\\x10\\x85\\x90\\xa1\\xd9\\x22\\x0a\\xf8\\xe8\\xdc\\xf1\\x17\\x74\\xd2\\x74\\x50\\xe5\\xfc\\x14\\x7e\\xfb\\x7a\\x7f\\xff\\xe1\\xf3\\x91\\xc5\\xbc\\x68\\x6f\\x33\\xef\\xd4\\x44\\x79\\x97\\x2c\\xea\\x1d\\x68\\xc9\\x19\\x85\\x13\\x4a\\xe9\\x5d\\x54\\xa9\\x93\\xe2\\xc6\\xfe\\xd9\\x4d\\xa7\\x5f\\xe2\\x1c\\xbb\\x04\\x21\\xb7\\x8a\\xd4\\x77\\x43\\x7b\\x3a\\xef\\x88\\xa6\\xca\\x9c\\xbc\\xa9\\xad\\xb1\\xc5\\x2f\\xad\\xff\\xe0\\xda\\x47\\x47\\xc5\\x44\\xe2\\x22\\x70\\x09\\x17\\x21\\x60\\x0c\\xee\\x4c\\x42\\x38\\x5b\\x89\\x25\\x38\\xcd\\x7b\\x51\\x74\\x72\\x7b\\x7b\\xfb\\x84\\x6e\\x11\\x43\\x54\\x44\\xad\\xad\\x0e\\xc3\\x38\\x84\\xc7\\x49\\xd2\\x44\\x37\\x99\\xf5\\xc4\\xc3\\x40\\x26\\x78\\x9b\\xbf\\xfb\\xfa\\xf9\\xcb\\x9f\\xc7\\x36\\xcf\\x1b\\xa5\\x43\\x76\\x05\\x93\\x73\\x2c\\x06\\x16\\xef\\xc2\\x7f\\xe8\\x12\\x21\\x85\\xcb\\x9a\\x60\\x82\\xd4\\x1e\\xc2\\xe6\\x67\\x29\\xb7\\x02\\xb6\\x25\\x0a\\xa8\\xe4\\xc6\\xc6\\x22\\x13\\x90\\xb1\\xa4\\xcb\\x1d\\xc2\\x9d\\x99\\xac\\x22\\xfd\\xf8\\xa6\\x6c\\x33\\x88\\x51\\xcc\\xa5\\xa0\\x44\\xed\\x7f\\xac\\x9f\\x66\\x7c\\x83\\x2e\\x1b\\xcf\\xf2\\x2a\\x29\\x88\\x69\\xcf\\x34\\x71\\xcc\\xa0\\x30\\x69\\x8c\\x3c\\x9c\\xca\\x7a\\xf7\\x1f\\xac\\xaa\\xa5\\x32\\x44\\x98\\x61\\x80\\x2d\\xe1\\xe4\\x06\\x6f\\x22\\x02\\x46\\x3a\\xfb\\x55\\x1f\\xbe\\xdf\\x13\\x26\\x28\\xee\\x96\\xb0\\xf0\\xce\\xcd\\xab\\x84\\x08\\x56\\x11\\x83\\x7d\\x06\\x4f\\xa9\\x63\\x7f\\x24\\x5b\\xcc\\xd6\\xcc\\x84\\x4f\\x5d\\xe1\\xc9\\x38\\x13\\x6b\\x58\\x9c\\xa5\\xaf\\x35\\x68\\x83\\xb5\\x7e\\xb9\\x78\\x05\\x4c\\x14\\x4c\\xd8\\x94\\xb4\\xdf\\x54\\xf2\\xfb\\x4f\\x7d\\xf0\\x33\\xb4\\x91\\xac\\x0b\\xa6\\xf9\\xc5\\xc9\\x5d\\xe3\\xbe\\x50\\xa4\\x42\\x1d\\x58\\xd9\\x03\\xa6\\xff\\xb4\\x09\\x06\\x70\\x6d\\xff\\x13\\xe1\\x60\\x14\\x11\\xba\\x26\\x0a\\x85\\xb1\\xb1\\x0a\\xb0\\x48\\xfd\\x27\\x96\\x69\\x30\\xc0\\xdf\\xcd\\xf7\\x6f\\xe6\\xe7\\xf2\\x8b\\x08\\xd0\\x66\\xcf\\x11\\xba\\xe8\\x28\\x0a\\xb4\\xd4\\x36\\x03\\xe4\\x06\\xd5\\x56\\x31\\x83\\xf0\\x52\\x48\\x91\\x30\\xa1\\x51\\x99\\x57\\x50\\x49\\x8a\\xa3\\x4c\\x48\\x0e\\xa4\\xb1\\x00\\x0e\\xc1\\x64\\x48\\x06\\x0f\\x40\\x99\\xae\\x39\\xd9\\x2f\\x81\\x09\\x5b\\xb4\\x92\\x8c\\x4b\\x5b\\x21\\x5c\\x19\\xa2\\x98\\x4b\\x15\\xfc\\xca\\x44\\x89\\x8a\\x39\\xb5\\x07\\xa2\\x54\\xc3\\xdb\\x7a\\x5b\\x4b\\xcd\\x3c\\x31\\xc9\\xb4\\xe4\\x8d\\xf7\\xb7\\xcf\\xb5\\xf4\\x0e\\x42\\xd2\\xa7\\x77\\x60\\x64\\xbd\\x84\\xe4\\xda\\x56\\x3c\\xc8\\xa4\\x31\\xb2\\x5a\\x42\\xd2\\x16\\x40\\xab\\x7b\\xc1\\xe5\\x76\\x09\\x25\\xa3\\x14\\xc5\\xb8\\xea\\x3a\\x81\\x4f\\x25\\xf3\\x49\\x9e\\xe7\\xae\\x92\\x5a\\x29\\xe9\\x41\\x82\\x4b\\x87\\x98\\x8e\\xde\\xf8\\xef\\x3f\\xfc\\xfa\\xf6\\xeb\\x7f\\xee\\xe1\\xfe\\xe3\\x87\\x3f\\x3e\\xf8\\x1a\\x97\\x57\\x89\\x4e\\x28\\x16\\xa4\\xe1\\x06\\xec\\xaf\\x12\\x09\\xb5\\xc2\\xbb\\x6a\\xda\\xe0\\xdd\\x63\\x84\\xee\\x5b\\x23\\x0d\\x76\\x64\\x27\\xe9\\x6d\\x1a\\xc8\\x04\\xae\\x88\\x61\\x9b\\xde\\x1e\\xbd\\xba\\x0a\\x7b\\x5e\\xb5\\xfe\\xde\\xc5\\xed\\x45\\xd8\\xf3\\x82\\xe7\\x8e\\xb9\\x36\\x4a\\x8a\\x15\\x3c\\x38\\x14\\xb2\\x0d\\x80\\x23\\x93\\x9c\\x06\\x5a\\xac\\xc2\\x9e\\x0b\\xa5\\x25\\x30\\x43\\x38\\xcb\\xc3\\xa6\\x0f\\xd5\\x23\\xef\\x36\\x82\\xa2\\xb2\\xfe\\x6f\\x8f\\x63\\x14\\x5b\\xa3\\x29\\x95\\x6c\\x56\\x65\\x84\\xde\\x85\\x4a\\xd8\\xbe\\x7b\\x8c\\x99\\x6a\\x8d\\xfb\\xad\\x54\\xf4\\x70\\x98\\x9b\\xf4\\x4d\\xd4\\x56\\xc4\\xc8\\xaa\\x77\\xe4\\xc5\\x6d\\x94\\xaa\\xbd\\x4c\\x5b\\xba\\xc5\\xeb\\xab\\x28\\x1d\\xc5\\xa2\\x67\\xf7\\xb4\\x88\\x12\\x6d\\x88\\x62\\x24\\xe3\\x38\\x8f\\xec\\xd5\\x8d\\xc8\\x4d\\xe3\\x8e\\x19\\xdd\\xf6\\x78\\x70\\x1f\\xdb\\xb3\\x3b\\xc4\\xf8\\x0c\\x9b\\x16\\x9a\\x5c\\xf4\\x14\\xbc\\x26\\x4f\\x2a\\x98\\x5c\\x06\\x97\\x0f\\x76\\xcd\\xbe\\xee\\x07\\xd7\\x9b\\xeb\\x28\\x8f\\x5c\\x56\\x95\\xad\\x1c\\x1d\\x21\\xb9\\x4e\\xa3\\x84\\xd6\\xd7\\x36\\x9e\\x3a\\xba\\xc5\\xe2\\x09\\xba\\xbe\\xfa\\xc5\\x04\\xc7\\x0a\\x0d\\x39\\x50\\x5d\\x5f\\xc7\\x15\\xfc\\xd6\\x10\\xce\\x0a\\xd6\\xf7\\xea\\x14\\x69\\xd6\\x30\\x6e\\x98\\x38\\x10\\x5e\\xa6\\x71\\xc3\\x65\\x8a\\xe4\\x6b\\xec\\x1d\\xfa\\xf6\\xf6\\x26\\x4a\\x68\\x48\\xef\\xc4\\x8b\\x9b\\xf8\\x39\\x88\\x31\\x8a\\x65\\xcd\\x20\\x95\\xd3\\x3c\\x4a\\x5a\\xaa\\xbe\\xcc\\x78\\x0c\\xfb\\xdc\\x1b\\x72\\x8a\\x90\\xa1\\xef\\x55\\x3a\\x23\\xa7\\xad\\x72\\x4c\\x6c\\x08\\x67\\x34\\x2f\\xc9\\xd1\\xf6\\x10\\x8f\\xc9\\xca\\xd6\\x12\\xeb\\xd3\\xb6\\x46\\xb6\\x35\\xf0\\xa2\\xad\\x92\\x2d\\xa4\\x7b\\x1f\\x04\\xbb\\x5a\\xa1\\xa1\\x90\\x0a\\x6c\\xe0\\x48\\x01\\x84\\x52\\x29\\x1c\\xe0\\x9e\\x0d\\x41\\x0a\\xe8\\x9a\\x88\\xbe\\xbc\\x8a\\x98\\xbc\\x64\\x62\\x75\\x64\\xfc\\xb4\\xb0\\xba\\xfd\\xe0\\x6b\\x21\\xc5\\x24\\x83\\xe2\\xc2\\x15\\xc0\\x88\\x2c\\xe7\\xbf\\x01\\xc0\\x52\\xab\\x8c\\xbc\\xbc\\xb8\\xbe\\x9e\\xc3\\xe2\\x3a\\x9d\\x43\\x3a\\x87\\xb3\\xcb\\x57\\x63\\xa8\\x4b\\x72\\x5b\\x61\\xfd\\x45\\xd7\\x7d\\x0b\\x0f\\x03\\xa0\\x86\\x6f\\x8a\\x8b\\xc2\\x16\\x0e\\x87\\x45\\xef\\xff\\xfc\\xe4\\x6c\\x10\\x1a\\x15\\x85\\xda\\xd8\\xd6\\xc8\\x94\\x4c\\x43\\xc1\\xec\\x55\\x6d\\xdb\\x26\\x26\\x74\\x6b\\x42\\x85\\x9c\\x18\\xa4\\x60\\x24\\x98\\x12\\xa1\\xc2\\xbc\\x24\\x82\\xe5\\x1a\\x64\\x31\\x03\\x70\\x6b\\x48\\x99\\x91\\xea\\x0c\\xfe\\x27\\x1b\\xdb\\x60\\x66\\x24\\xe3\\x7b\\xd0\\xa5\\x6c\\x38\\x15\\x2f\\x0c\\x18\\xd9\\xe4\\xa5\\x25\\xac\\xce\\xa2\\x2d\\xec\\xe1\\x0e\\x73\\xb2\\xd8\\x06\\xe3\\xf7\\xe6\\x10\\x80\\xfa\\x86\\x2b\\xde\\xc8\\x39\\xb6\\x07\\x06\\x61\\xb1\\x07\\x66\\x7d\\x9f\\xc6\\xc4\\x4a\\xc3\\x96\\x71\\x0e\\x99\\x42\\xb2\\x06\\x16\\xec\\xc0\\xb4\\xfb\\x58\\x39\\xb9\\xbe\\x45\\x3e\\x3f\\x85\\xcb\\xb4\\xde\\xd9\\x2d\\x67\\x05\\xb2\\x62\\x39\\x54\\x44\\xad\\x98\\x80\\x46\\x7b\\xf3\\x94\\x8c\\xa2\\xb7\\x07\\x47\\x5b\\xaa\\x5e\\x58\\xe3\\x11\\x3e\\x6a\\xf7\\x42\\xcb\\x8e\\x47\\x07\\xb4\\x98\\xa8\\x6f\\x1a\\x47\\xeb\\x45\\x74\\xf1\\x9e\\x5c\\x3a\\x90\\x11\\x56\\x03\\x02\\xf1\\x8b\\x87\\xb6\\xac\\xa3\\x6e\\xd7\\xdb\\x2e\\xde\\xa2\\x33\\x67\\xda\\xc6\\xd8\\x90\\x09\\x0d\\x8b\\xd5\\xe7\\x93\\xc2\\x8d\\x2d\\xae\\x54\\x91\\xd5\\xca\\x66\\x5a\\xa1\\x64\\x05\\x25\\x5b\\x95\\xdc\\x7e\\x6a\\x57\\x7a\\x07\\xf3\\xaa\\xc5\\xdc\\x36\\x8c\\x4e\\xcd\\xbe\\xe3\\x53\\x2e\\x1e\\x76\\x4f\\xce\\xbe\\x1e\\xf2\\xf4\\x71\\x65\\x80\\x33\\x36\\x58\\x0b\\xb2\\xc6\\x39\\x6c\\x98\\x66\\x99\\x6d\\xae\\x3b\\xb3\\x9e\\xc1\\xd7\\xe0\\x82\\x42\\xaa\\xdc\\x06\\x35\\x55\\x64\\x0b\\xb4\\x71\\x17\\x81\\xa7\\x63\\x62\\x65\\xc3\\x35\\xc3\\x42\\x2a\\x04\\x62\\xef\\x44\\x7e\\xd8\\x82\\x92\\xd4\\x35\\x0a\\x3d\\x07\\x53\\x36\\x1a\\x6a\\x6f\\x0e\\xf7\\x75\\x49\\xd6\\x6e\\x18\\x21\\xa8\\xfd\\xbe\\xe0\\x2c\\x5f\\xa3\\xf2\\xe3\\x09\\xc3\\x0a\\x92\\x1b\\x7d\\x36\\x86\\xab\\x9b\\x4e\\xb5\\xe1\\x1c\\xa1\\x9c\\x58\\xff\\xd9\\xe9\\x43\\x1c\\x98\\x76\\xfd\\xd5\\x6b\\x3f\\x98\\x09\\x38\\xd8\\x37\\xa5\\x8f\\x13\\x0a\\x3a\\x7e\\x23\\x24\\x9b\\xf6\\xd3\\x2f\\xd9\\xf5\\x13\\xb0\\x5b\\xdd\\xb7\\x59\\x35\\x66\\x5d\\x0e\\x59\\x1f\\xc0\\x6a\\x07\\x9c\\x47\\x6c\\x22\\xcc\\x77\\x53\\xcc\\xc7\\x86\\x1a\\x69\\xdf\\x43\\xc6\\xb1\\x89\\x40\\xff\\xa3\\x0e\\xc5\\x0f\\xbe\\x99\\x1c\\xbd\\x44\\x2c\\x7e\\x60\\x71\\x30\\x5a\\xc5\\x44\\x32\\x4e\\xb6\\xce\\x2d\\x97\\x71\\xad\\x7c\\xc7\\x3b\\x9c\\x80\\xa8\\x8a\\xf0\\x58\\xe2\\xc6\\x9b\\x9b\\x19\\xc0\\x26\\xcc\\xce\\xda\\x49\\x8b\\x91\\xf5\\xdd\\x54\\xf5\\x88\\xdb\\x66\\xab\\x6c\\x06\\x3c\\x2b\\xbe\\xae\\xc6\\xa5\\xd8\\x86\\xd8\\x78\\x54\\x10\\x7a\\xf6\\xa3\\xad\\xa8\\xf0\\xfe\\xdd\\x35\\x29\\x3f\\xda\\xff\\xf4\\x95\\x8a\\xb2\\x46\\x6e\\x9e\\xe0\\xe9\\x5b\\xc8\\x25\\x04\\xbc\\xf2\\x2c\\x8e\\xad\\xa5\\x96\\x4b\\x8d\\xdc\\x0f\\x70\\x7e\\xd4\\x1c\\x47\\x07\\x54\\x3d\\x46\\x6e\\x50\\xf0\\x33\\xdc\\x26\\xa6\\xaa\\xed\\x71\\x6c\\x7f\\x73\\x14\\x8f\\x61\\x34\\x1a\\x6a\\x9b\\x86\\x5c\\x72\\x4e\\x6a\\x87\\xab\\x42\\x55\\x2c\\x98\\xd2\\xee\\x0e\\xd8\\x4e\\x0f\\x5b\\xcf\\x4f\\xe1\\x33\\x6a\\x34\\xa0\\x65\\x85\\x2d\\x46\\x30\\x25\\x31\\xee\\x82\\x38\\xc0\\x09\\x84\\x9a\\xac\\x10\\x2a\\x2b\\x1c\\x4a\\xb2\\x41\\xb0\\x1f\\xb9\\x8b\\xc3\\x9d\\xb6\\xad\\xfd\\x84\\xb2\\x46\\x3b\\xbf\\xb6\\x83\\x8d\\xe3\\x9d\\xa3\\x95\\xc3\\xdd\\x71\\x18\\xb5\\x0d\\x43\\x72\\x70\\x83\\x8c\\x26\\xdc\\x6d\\xeb\\xdf\\xae\\xdb\\x6b\\x6a\\xb0\\xea\\xd3\\x26\\x70\\x1d\\xa4\\x66\\xad\\xfc\\x80\\x4f\\x2a\\xea\\xdc\\xd7\\x4f\\x56\\x97\\x91\\xad\\xb5\\x7b\\xdc\\x82\\x03\\x7b\\x2b\\x5d\\x88\\x5d\\xdc\\x3d\\x03\\xfe\\x84\\xfb\\xae\\x3f\\xfc\\x32\\xa4\\x4e\\xba\\xcb\\x39\\x36\\x8c\\xe9\\xd1\\xba\\x23\\xba\\x06\\x4c\\x98\\x84\\xb3\\x15\\x31\\x8d\\x42\\xbd\\xf4\\xc3\\xf0\\x9d\\xbd\\x06\\x3b\\x43\\xfc\\x80\\x6a\\x18\\xc4\\xf6\\xf8\\x5d\\x54\\xf4\\x0c\\xe2\\xa0\\x54\\x62\\x17\\x62\\xd6\\x4b\\xfc\\x70\\x37\\x7c\\xe1\\x68\\x0f\\x36\\x8c\\xc4\\xf5\\xb3\\x2a\\xc3\\xd4\\x48\\x66\\xb2\\x58\\x1c\\x17\\x7b\\x2b\\x6b\\xcb\\xe8\\x0a\\xc7\\xd5\\xa2\\xef\\x93\\xa1\\xdf\\x0e\\x1e\\xf2\\x83\\xca\\x11\\xc7\\x96\\xdb\\x78\\xbe\\x64\\xb8\\xb7\\x5a\\xff\\xe9\\x44\\x19\\x7e\\x34\\x88\\xca\\x25\\xf5\\xb6\\x1d\\xa2\\xb5\\x00\\x87\\x7e\\x75\\x40\\x27\\x3c\\x68\\x24\\x99\\xdc\\x81\\x66\\xdf\\x1d\\x70\\x93\\xaa\\x0f\\xd5\\x34\\x6c\\xdd\\x3b\\xcf\\x16\\x01\\x77\\x35\\xe6\\x06\\xd8\\x78\\xce\\x1c\\x6e\\xd5\\xf9\\x31\\x74\\x9b\\x47\\xaa\\x56\\x6c\\x4d\\xcf\\x9f\\x7a\\x2c\\x08\\xe9\\xbe\\x4b\\xbc\\x86\\xcb\\xbe\\xd6\\x3e\\x93\\x27\\xb6\\x46\\x06\\xa9\\x90\\xe8\\xa6\\x7d\\xf2\\x89\\xc6\\x41\\x28\\x06\\xed\\x6d\\xd9\\xe6\\x62\\x3a\\xd5\\x4e\\xb8\\xcc\\x62\\x9c\\x99\\x7d\\x7f\\x38\\x37\\xf5\\x16\\x10\\x97\\x59\\x4b\\x26\\xdc\\x3d\\xe3\\x8a\\x6a\\x1c\\x6e\\xb5\\x9a\\x7b\\xbf\\x1f\\xf8\\x68\\x43\\x0c\\xcb\\x9d\\xe7\\x9f\\x98\\x9b\\xc7\\xb4\\xfc\\x61\\x84\\x3a\\xb0\\x31\\x62\\x6a\\xc1\\xfd\\x14\\xe3\\xae\\xc8\\x8c\\xce\\x5f\\xc8\\xdc\\xb5\\x37\\xcf\\xd4\\x6f\\x8a\\x8d\\xbf\\xdb\\x90\\x8e\\x7a\\xdc\\x13\\x7a\\x6b\\xff\\xc6\\x5d\\x6d\\x2b\\xf4\\x59\\x1c\\x6e\\xe8\\x55\\x91\\x8e\\x39\\xe4\\x4a\\x6a\\x5d\\x12\\xe6\\x9e\\x8a\\xc2\\xa5\\xd8\\xad\\x8d\\x89\\x5d\\x76\\x1d\\x2e\\xf3\\x21\\xfa\\xb6\\x9b\\xf0\\x2f\\xd7\\xe5\\x3f\\x87\\xe6\\x98\\xf4\\x79\\x0a\\x7b\\x1d\\x86\\x38\\xe0\\x09\\x45\\x9e\\x49\\x38\\x41\\x3f\\xad\\x92\\x1f\\xdf\\x20\\x51\\x6e\\x28\\x31\\xf1\\xd4\\x79\\x52\\x14\\x24\\xfe\\xf2\\x71\\x98\\x59\\xb8\\x7f\\xd2\\x39\\x9c\\x5d\\xbd\\x6a\\x4b\\xd6\\xb0\\x47\\x23\\xe1\\x06\\x77\\xf3\\x7e\\xee\\xca\\x16\\x01\\xd1\\xce\\xfe\\xf3\\x2a\\x71\\x64\\x01\\x0c\\xd8\\xac\\x09\\xbd\\x6d\\x28\\xf1\\x67\\x0e\\xce\\x3c\\xce\\x66\\xbf\\x54\\x48\\x19\\x81\\x5a\\x31\\x61\\x5a\\x80\\xf2\\xb1\\x6d\\xc4\\x43\\xf6\\xba\\xa7\\x37\\x47\\x61\\x0f\\xe5\\x30\\xc8\\x13\\xef\\x6c\\xfd\\xd8\\x9e\\xca\\xbe\\xf6\\x85\\xc3\\xf6\\xf1\\x4c\\xeb\\x06\\xe1\\xe4\\xe2\\x36\\x5d\\xb4\\xba\\x1b\\x92\\xb9\\x8b\\x2e\\x29\\x49\\xbe\\x5e\\x92\\xc2\\x84\\x37\\x4b\\x57\\xdc\\x96\\xf0\\xe2\\x45\\x3b\\xae\\xfa\\x88\\xbc\\x86\\x46\\xdb\\x36\\xa3\\xd1\\x68\\x81\\xc7\\xfa\\xe0\\x25\\x23\\x41\\x93\\x02\\xf9\\x3e\\x3c\\xa2\\xb8\\x37\\xc2\\xde\\x85\\x78\\x7a\\x3e\\x1b\\x0f\\x9f\\xda\\x2c\\x71\\xa4\\x0f\\x47\\x20\\xdd\\x8a\\xfd\\x7f\\x00\\x00\\x00\\xff\\xff\\xb6\\x6e\\xef\\x8a\\x4f\\x20\\x00\\x00\")\n\nfunc vendor_codemirror_codemirror_css() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_codemirror_codemirror_css,\n\t\t\"vendor/codemirror/codemirror.css\",\n\t)\n}\n\nvar _vendor_codemirror_codemirror_js = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xc4\\xbd\\xe9\\x76\\x1b\\x39\\x92\\x30\\xfa\\x5f\\x4f\\x01\\x73\\xaa\\xec\\x64\\x8b\\xa4\\x48\\x79\\x91\\x2d\\x99\\xd6\\x51\\xb9\\x54\\x5d\\xfe\\xc6\\xdb\\xb5\\x5c\\x5d\\x33\\xd7\\x52\\x57\\x83\\x99\\x20\\x99\\x56\\x32\\x93\\x9d\\x00\\xb5\\x94\\xa5\\x77\\xbf\\x27\\x16\\x6c\\xc9\\xa4\\x6c\\x77\\xcf\\x7c\\xd7\\xe7\\x98\\x22\\xb1\\x04\\x02\\x40\\x20\\x10\\x08\\x44\\x04\\x76\\x76\\xc4\\xcb\\x2a\\x53\\x6f\\xf2\\xba\\xae\\xea\\x9e\\x48\\xab\\xe5\\x75\\x9d\\xcf\\xe6\\x46\\x24\\x69\\x57\\x4c\\xae\\xc5\\x1b\\x59\\xe7\\x9f\\x4b\\xf1\\xab\\xbc\\x50\\xf5\\x44\\x9d\\x2b\\x21\\xcb\\x4c\\x54\\x66\\xae\\x6a\\xbd\\xb5\\xb3\\x23\\x7e\\xce\\xb5\\xa9\\xf3\\xc9\\xca\\xa8\\x4c\\xac\\xca\\x4c\\xd5\\x42\\x96\\xe2\\xcd\\xab\\x8f\\xa2\\xc8\\x53\\x55\\x6a\\xb5\\x2f\\xe6\\xc6\\x2c\\xf7\\x77\\x76\\xd2\\x2a\\x53\\x0b\\x6c\\x64\\x50\\x2a\\xb3\\xf3\\xfa\\xd5\\xcb\\xe3\\xb7\\x27\\xc7\\x5b\\x00\\xe3\\xe3\\x3c\\xd7\\x22\\xd7\\x01\\x1e\\x22\\x69\\xad\\xd5\\xed\\x09\\x29\\x20\\x49\\xa8\\x2c\\x37\\x55\\x0d\\x95\\xf3\\xc5\\xb2\\x50\\x0b\\x55\\x02\\x02\\x79\\x29\\xfe\\x8f\\xbc\\x90\\x27\\x69\\x9d\\x2f\\x8d\\xa8\\x4a\\x61\\xaa\\xa5\\xa8\\xa6\\xc2\\xcc\\x95\\x98\\xd4\\xd5\\xa5\\x56\\xf5\\x03\\x2d\\x7e\\x7e\\xf7\\x66\\xb0\\xb5\\xb3\\x03\\x95\\xff\\xbb\\x5a\\x89\\x54\\x96\\x62\\x9a\\x97\\x99\\xd0\\xd5\\x42\\x09\\xa3\\xd2\\x79\\x99\\xa7\\xb2\\x10\\x13\\x99\\x9e\\xcf\\xea\\x6a\\x55\\x66\\x62\\x5a\\xd5\\x94\\xcb\\xb0\\x10\\x85\\x89\\x2a\\xaa\\x4b\\x00\\x22\\x8d\\xed\\xe3\\x02\\xc7\\x6a\\x6e\\x87\\x6a\\x50\\x16\\x3b\\x93\\xa2\\x9a\\xed\\xfc\\x47\\xba\\xe8\\xe7\\xa5\\x51\\x75\\x29\\x0b\\x2d\\x06\\x5b\\x5b\\xc9\\x74\\x55\\xa6\\x26\\xaf\\x4a\\x91\\xcc\\x8a\\x6a\\x22\\x8b\\x9e\\x98\\xca\\xd4\\x54\\xf5\\x75\\x57\\x7c\\xd9\\x12\\xc2\\x5c\\x2f\\x55\\x35\\x15\\xea\\x6a\\x59\\xd5\\x46\\x8b\\xf1\\x78\\x2c\\x1e\\x54\\x93\\xcf\\x2a\\x35\\x0f\\xc4\\xfd\\xfb\\x36\\x7b\\x51\\x65\\xab\\x42\\x89\\x7b\\x90\\x0b\\x63\\x3f\\xcd\\x4b\\x95\\x3d\\x10\\x87\\x9c\\x31\\x70\\xd5\\x2d\\xf0\\xa4\\x2b\\xf6\\x3d\\x74\\xaa\\x40\\xc0\\x2d\\x3e\\x08\\x9e\\x32\\x06\\x72\\x91\\x89\\x43\\xfe\\x91\\x38\\xf4\\x00\\x00\\x23\\x3d\\x08\\x26\\x2c\\x68\\xa3\\x7b\\xb0\\x75\\x9b\\x98\\x79\\xae\\x7b\\x22\\xe8\\x67\\x57\\x7c\\x11\\x0f\\x56\\x5a\\x09\\xa0\\x97\\xd4\\x3c\\x38\\xc0\\xa9\\xff\\xcf\\x62\\x95\\xcd\\x94\\xc6\\x11\\x9e\\xac\\x66\\x1a\\xa9\\x6b\\xa2\\xe6\\xf2\\x22\\xaf\\x6a\\x91\\xe5\\xd3\\xa9\\xaa\\x55\\x99\\x2a\\x2d\\xcc\\x5c\\x1a\\x98\\xab\\x07\\x46\\x4c\\x94\\x98\\x2a\\x69\\x56\\xb5\\x02\\x10\\x99\\x32\\x2a\\x85\\xd9\\x97\\xb5\\x12\\xaa\\x94\\x93\\x42\\x65\\x62\\x22\\xb5\\xca\\x80\\x02\\x56\\x5a\\xd5\\x47\\x33\\x55\\x1a\\xa1\\x4c\\x2a\\x74\\x99\\x4f\\xa7\\x79\\x39\\x1b\\x6c\\x5d\\xc8\\x3a\\xc8\\x1b\\x8b\\x52\\x5e\\xe4\\x33\\x69\\xaa\\x7a\\xe0\\x52\\xb1\\xcc\\xb2\\x90\\x66\\x5a\\xd5\\x8b\\xa8\\x88\\x4d\\xdc\\xc2\\x22\\x33\\x95\\x9e\\x57\\x62\\x2c\\x76\\xf0\\xcb\\xe9\\xce\\x69\\xb6\\x93\\x0f\\x8c\\xd2\\x26\\x71\\xa0\\xba\\x58\\x30\\x57\\x7f\\xac\\x96\\xa6\\x1a\\x0d\\xa1\\xf0\\x9b\\x93\\x57\\xc7\\xe2\\x34\\xdb\\xd9\\x54\\x72\\x34\\x5a\\x2d\\xa1\\xdc\\xc7\\x3a\\xcf\\x54\\x69\\x4e\\x77\\x92\\xc3\\xfd\\x4f\\x7b\\xfd\\x67\\x67\\x37\\xa7\\xd9\\x97\\xdd\\xde\\x6d\\xf7\\x74\\x30\\xf8\\x4b\\x7d\\xb1\\x9f\\x9c\\x66\\xdb\\xdd\\x9d\\x81\\xba\\x52\\x69\\x13\\x8a\\xca\\x66\\x0a\\x40\\x1c\\x67\\x33\\x75\\xba\\x73\\x47\\xc1\\x1c\\x8a\\x79\\xec\\x6e\\x6e\\x1c\\x02\\x37\\x37\\x08\\xc5\\x22\\x75\\xa1\\x6a\\x0d\\xb3\\x09\\xa5\\x81\\x52\\x12\\x5f\\xe9\\x50\\x64\\x55\\xba\\x82\\x85\\x38\\xb0\\x5f\\xde\\xc0\\x32\\xb9\\xb9\\x11\\x4f\\xc4\\xbe\\xd8\\x4e\\x10\\x1b\\x0f\\xba\\xfb\\x69\\x74\\x46\\xad\\x5f\\xaa\\xc9\\x79\\x0e\\x73\\x70\\x0f\\x8b\\xdc\\xbf\\x2f\\x76\\x7e\\x57\\x93\\xff\\xcc\\xcd\\xe9\\x4e\\xfb\\xe8\\xfc\\xd3\\xb8\\x2a\\xfc\\x05\\xea\\xfc\\x3f\\x06\\x86\\x7e\\xfb\\x74\\x70\\x9a\\x6d\\xb7\\xd7\\x4b\\xe7\\x35\\x2c\\xe2\\xb0\\xa1\\x97\\x98\\xb4\\xa9\\xa1\\x65\\xad\\xb4\\xc1\\xa9\\x7d\\xb7\\x54\\xb5\\xdc\\x54\\x4c\\xcb\\xa9\\xac\\x73\\x28\\x76\\xb4\\x5c\\x16\\x4a\\xbc\\xac\\x16\\xcb\\x95\\x51\\x35\\x97\\xf6\\x74\\x73\\xa1\\xca\\xac\\xaa\\xa9\\xd2\\x42\\xa6\\x7f\\xcc\\xd4\\x9b\\x6a\\x55\\x1a\\x99\\x97\\xaf\\x69\\x54\\x77\\xde\\xc8\\x54\\xbc\\x3b\\x11\\xff\\x25\\x46\\xa7\\xd9\\xe9\\xcf\\xc9\\xa7\\xa7\\x34\\xe1\\xa7\\x59\\xf7\\xf4\\xe7\\x0d\\x38\\xce\\x65\\x69\\x2a\\xa0\\xcf\\x9d\\xf7\\xf4\\xf5\\xff\\x9c\\xac\\x97\\xa4\\x09\\xac\\x74\\xd4\\x79\\xc4\\x96\\x86\\x7a\\xad\\x06\\x16\\x78\\x53\\x4d\\xf2\\x42\\x9d\\xee\\x9c\\x5e\\x6e\\x18\\x51\\x59\\x66\\x75\\x95\\x67\\xd8\\x75\\xfa\\xba\\x5e\\x2e\\x60\\xf0\\x97\\x95\\x9a\\xae\\x8a\\xe2\\x5a\\xe4\\x65\\x5a\\x01\\xdf\\x36\\x6a\\x20\\x4e\\x56\\xb3\\x99\\xd2\\xc0\\x24\\x88\\x0d\\xc8\\x02\\x19\\xa5\\xc9\\x2f\\x94\\x58\\x28\\x33\\xaf\\x32\\x2d\\x2e\\x55\\x91\\x56\\x0b\\x45\\xcb\\x76\\x81\\x58\\x01\\x0d\\x56\\x1a\\x08\\xca\\x22\\x71\\x73\\x23\\x76\\x2e\\xd5\\xe4\\xdd\\xc9\\xcd\\x4f\\x85\\x4c\\xcf\\x7f\\x52\\x75\\x7d\\x7d\\x83\\x13\\x27\\xde\\xe4\\x65\\x6e\\xbf\\x56\\x93\\xfc\\xe6\\xd5\\x31\\x75\\x6d\\xc3\\x42\\x5d\\xc8\\xd4\\x83\\x87\\x39\\xe1\\x5e\\xd9\\x75\\x1f\\x92\\xd3\\xbb\\x13\\xe8\\xfd\\xe9\\xe4\\x65\\xfd\\xee\\xe4\\x74\\xd2\\x3e\\x4c\\x97\\x79\\x99\\x55\\x97\\x30\\xf8\\x3b\\x97\\x79\\x69\\x1b\\xf5\\xd0\\x02\\x62\\x0b\\x96\\x18\\x53\\xdf\\xfd\\xfb\\x9e\\x51\\x0d\\x16\\xd2\\xa4\\xf3\\x64\\xe7\\x6f\\x54\\x08\\x17\\xf5\\x5f\\x80\\xe2\\xff\\xd2\\xdd\\xe9\\x6e\\xe5\\x53\\x91\\xc4\\x50\\x80\\xe9\\xae\\xc1\\x7d\\xbb\\x5a\\x4c\\x54\\xdd\\x28\\x09\\xab\\x51\\xdc\\xb6\\x80\\x80\\xf6\\x1b\\x29\\x2f\\xc6\\x62\\xf4\\xd8\\x83\\x46\\xde\\x5f\\x68\\x75\\xe0\\x57\\xb2\\xa9\\x57\\x4a\\xdc\\xc2\\xd4\\x9f\\xc0\\x8a\\xe3\\xbd\\x57\\x43\\x47\\x70\\x03\\xbd\\xac\\xab\\x72\\x26\\xd4\\x05\\xf0\\xde\\x65\\x5d\\x2d\\x55\\x6d\\x72\\xe0\\xf1\\x95\\xd0\\xf9\\xac\\x94\\x85\\x48\\x17\\xd9\\x4e\\x6a\\xea\\x02\\x58\\x38\\xac\\x07\\x1c\\xa1\\x69\\x91\\x2f\\x5f\\x9a\\xba\\x78\\xb9\\x00\\x8a\\x83\\x49\\x02\\x16\\xe4\\xb8\\xc1\\xcd\\x4d\\x30\\x64\\xcd\\x5e\\x8c\\xc7\\xa2\\x5c\\x15\\x85\\x2f\\xe4\\x72\\x9e\\x8b\\xd1\\xee\\x60\\x34\\xea\\xf2\\xa4\\xca\\x25\\x6c\\x2c\\x1f\\x40\\x04\\x7a\\x59\\xe4\\xe9\\xb9\\x18\\x33\\x83\\xbf\\xb9\\x01\\x76\\x07\\xb0\\x03\\x46\\xf8\\x62\\x2c\\x9e\\x75\\xb7\\xb6\\xdc\\x36\\x97\\x16\\x52\\xeb\\x8f\\x30\\xbb\\x69\\xa1\\x61\\x88\\x6a\\x65\\x56\\x75\\x29\\x4a\\x75\\x29\\x3e\\xa8\\xd9\\xf1\\xd5\\x32\\xe9\\x24\\x7f\\xbf\\x39\\x3d\\xd5\\xdd\\x8e\\xd8\\x16\\x69\\xa1\\xc5\\xb6\\xe8\\x24\\x87\\xfb\\x3f\\x60\\xda\\xe9\\xa9\\xfe\\x4b\\x07\\xe6\\x01\\x71\\xa9\\x17\\x2f\\x01\\x1c\\x8c\\x2f\\xc3\\x4f\\xca\\x2a\\x53\\x3d\\x41\\xb0\\xb7\\x84\\x40\\x8c\\x57\\x75\\xcd\\x7b\\x58\\x95\\xa9\\x01\\x62\\xf0\\x56\\x2e\\x14\\x67\\x23\\xc5\\x88\\x71\\x03\\x33\\xda\\x06\\xb8\\x6a\\x77\\x4b\\x08\\x98\\x78\\x2c\\x4a\\x80\\xa9\\xae\\x9c\\x1a\\x05\\x5b\\x3b\\x97\\x1b\\x68\\x10\\xea\\xa8\\xd8\\x20\\x2f\\x33\\x75\\x25\\xb6\\x09\\xfe\\xa7\\xe1\\xd9\\xa0\\x50\\xe5\\xcc\\xcc\\xbb\\x58\\x39\\xc6\\x64\\x0d\\xc2\\xb0\\x27\\x02\\x20\\x5d\\xb1\\x2d\\x12\\x6a\\xea\\x90\\xc1\\x8d\\xce\\xc4\\x36\\xb7\\xbe\\x2f\\x3a\\x1d\\x00\\x7a\\xbb\\x75\\x1b\\x8c\\x73\\xad\\x16\\xd5\\x85\\x7a\\x39\\xcf\\x8b\\xac\\x56\\x65\\xa2\\x08\\x6b\\x60\\x1f\\x09\\x8e\\x09\\xb0\\x55\\x31\\x16\\x6a\\x90\\x42\\x91\\xb7\\x55\\xa6\\x34\\x23\\x78\\xc0\\x99\\x2f\\xc4\\xf0\\x40\\xf4\\xfb\\xf8\\x83\\x90\\xfe\\x22\\xd4\\x20\\x80\\x9b\\xa8\\xc1\\x34\\xaf\\xb5\\xc1\\x1f\\x30\\x27\\xc2\\x4e\\xa6\\xba\\x03\\x95\\xa3\\x32\\x3b\\xca\\xb2\\x64\\x29\\xa1\\xbb\\x3d\\xc1\\x88\\x71\\xc5\\x06\\xd6\\x54\\xa8\\x3b\\x90\\xcb\\xa5\\x2a\\x33\\x6e\\xb4\\x1b\\x01\\x57\\x85\\x49\\x8c\\x9c\\x81\\x5c\\x5e\\x1a\\x84\\xe8\\x46\\xb5\\x27\\xb4\\xb9\\x2e\\x94\\x27\\x04\\x18\\x67\\xb7\\x07\\xa7\\xb5\\x92\\x46\\x1d\\x93\\x68\\x0c\\x20\\xec\\x24\\xbb\\xfa\\x5d\\xec\\x70\\x34\\x49\\xee\\xfb\\x2d\\x17\\xb6\\x2d\\x08\\x35\\xc0\\xaf\\x83\\x14\\x68\\xe8\\x0a\\x86\\x16\\x7f\\xbb\\x82\\x2c\\x52\\x32\\x96\\xb0\\xda\\x3a\\x20\\xe7\\x95\\xb3\\x0e\\xd5\\x0e\\xbb\\xd8\\xc0\\x11\\xe0\\xc1\\x04\\x25\\x5c\\xb9\\x4b\\x63\\xad\\x0a\\xad\\x08\\x61\\x4e\\x16\\x5f\\xfc\\xfc\\xc2\\x66\\x3b\\x3c\\x10\\xb9\\x78\\x6e\\x9b\\x74\\xb3\\xbb\\xbd\\x9d\\xaf\\x37\\xc9\\x85\\x3e\\xe5\\xc0\\xe4\\x9a\\x53\\xb9\\xb3\\x23\\x2e\\x6b\\x28\\x5d\\x63\\x03\\xaa\\x30\\x3d\\x71\\x39\\xcf\\xd3\\x39\\xcf\\x97\\x46\\x96\\xa5\\x0a\\x23\\xa6\\x75\\xb5\\xc0\\x1f\\x32\\x4d\\x95\\xd6\\xf9\\x24\\x2f\\x72\\x73\\x2d\\x4c\\xad\\x54\\x34\\x65\\xef\\xbf\\x6b\\xce\\xbe\\x61\\x8e\\x61\\x3c\\x06\\x5a\\x99\\x23\\xc3\\x87\\xad\\xa4\\x53\\x57\\x85\\xea\\xf4\\x44\\x07\\xb8\\x99\\x2a\\x8d\\x84\\xb6\\x71\\xa1\\x84\\x44\\x8a\\x5c\\x44\\x96\\x33\\x85\\x8c\\xbd\\x31\\xf0\\x1f\\x20\\x03\\x79\\x14\\x7c\\x59\\xe7\\x32\\xda\\xc8\\x1a\\x48\\xb8\\xcc\\xf0\\x03\\xe6\\xc8\\x23\\x5e\\xaf\\x13\\x1b\\xc2\\x4b\\x10\\x05\\xc0\\xf5\\xb8\\xcc\\x12\\xae\\x06\\xbc\\x93\\x60\\xaa\\x32\\x73\\x05\\x4e\\x00\\x7e\\xd8\\x56\\x80\\x7d\\xbd\\x05\\xd3\\x84\\x34\\xf0\\x0d\\xf8\\x6d\\x40\\x6b\\x52\\x65\\xd7\\x01\\x91\\x79\\xfc\\x4c\\x7d\\x0d\\x60\\x07\\x30\\xbb\\x1f\\x2b\\x5e\\x24\\x50\\x04\\x21\\x0f\\x68\\x5d\\x52\\x7f\\x81\\x56\\x52\\xdc\\x74\\x55\\xc0\\xce\\x6b\\xa2\\xa1\\x41\\x5a\\x15\\x85\\x5c\\x6a\\x95\\xc0\\x86\\x47\\x1d\\x03\\x98\\xd0\\xf5\\x4e\\x3a\\x97\\xb5\\x4c\\x8d\\xaa\\x3b\\x41\\xb7\\x21\\x97\\xfa\\x1d\\xe5\\xb7\\x77\\x3f\\xd8\\x56\\x2a\\x94\\x12\\xb5\\xe3\\x2b\\x29\\x31\\xa5\\x2f\\x76\\x51\\xc3\\xcf\\x01\\x20\\xff\\xf1\\x7a\\x09\\x47\\x3a\\xf1\\xb0\\x2b\\x76\\x76\\x04\\x0b\\x65\\x76\\x03\\x16\\xb2\\xb8\\x94\\xd7\\x9a\\x5b\\xd1\\xb4\\x6d\\x8b\\xcb\\xb9\\x2a\\x09\\x20\\xc8\\x68\\x52\\x18\\x75\\x65\\x00\\x14\\x33\\x45\\xca\\x19\\xd3\\xdf\\x60\\x6c\\xdc\\xda\\xa7\\xa4\\x81\\xc5\\xd1\\x32\\x53\\xee\\x4a\\x23\\x37\\x49\\x3d\\x3b\\xcd\\x2a\\xde\\x6b\\xda\\xbb\\x30\\x1a\\x75\\xd7\\x9a\\x9f\\x57\\xda\\x60\\xdd\\xa0\\x12\\x94\\x65\\x56\\xea\\x9b\\x65\\x09\\x44\\x88\\x5b\\x58\\xcb\\x85\\x72\\x65\\xd7\\xfa\\x11\\x33\\x5c\\x99\\x82\\xe0\\x79\\x5c\\x98\\x84\\x46\\x77\\x67\\x47\\xbc\\x3a\\xc6\\x53\\x29\\x9c\\xa2\\xc4\\x42\\x5e\\x0b\\x33\\xaf\\xab\\x4b\\x21\\x4b\\xd1\\xf9\\xad\\xd4\\x4b\\x95\\xe6\\xd3\\x5c\\x65\\xe2\\x18\\x8e\\xc1\\x1d\\x1a\\x4c\\x66\\x0f\\xe5\\xcc\\xd3\\xa2\\x85\\x8b\\xa4\\x36\\x70\\x80\\x9f\\x8b\\xd1\\x50\\x5c\\xe6\\x45\\xc1\\x50\\x83\\xea\\x2a\\x63\\xcc\\x81\\xe1\\x2c\\xe5\\x4c\\xc1\\xec\\x14\\x95\\xcc\\x00\\x6e\\x55\\x8b\\xbc\\x04\\x1c\\xf2\\x69\\x2d\\x41\\x30\\xb6\\x00\\x5f\\x88\\x67\\x1e\\xdb\\x8d\\x80\\xc3\\xba\\x30\\x90\\xd1\\x92\\x81\\x76\\x56\\xa5\\xbc\\x90\\x79\\x01\\x87\\xe9\\x01\\x2f\\xad\\xa8\\x07\\x76\\x11\\xe1\\x4c\\x44\\x39\\xe1\\x02\\x6c\\x56\\xb9\\x0d\\x96\\xd2\\xdd\\x35\\x11\\x0f\\xe0\\x1a\\xab\\xa2\\xc0\\xcd\\x5f\\xd8\\x69\\x8c\\xab\\xdc\\xbf\\x1f\\xc3\\x18\\xe8\\xb9\\xcc\\xaa\\xcb\\x0f\\x55\\x75\\x67\\x5e\\x8c\\x99\\xa5\\xd8\\x26\\x36\\xdf\\x56\\x3b\\xdc\\x4e\\xe2\\x0e\\x47\\x74\\x95\\x65\\x28\\xcc\\x7d\\xa7\\x04\\x07\\x44\\x7e\\xaf\\x21\\xba\\xe1\\xe1\\xc1\\x8a\\x6e\\x40\\xf2\\x0d\\x69\\x6b\\x7b\\x2c\\x6c\\xb6\\x38\\x14\\x1d\\xd1\\x21\\x19\\x8a\\xc5\\x4d\\x90\\xa3\\x1c\\x56\\x9f\\xab\\xbc\\x44\\xb4\\x94\\x4e\\x64\\x4f\\x4c\\x3c\\x4e\\x12\\xc4\\x4e\\x39\\xd0\\xcb\\x22\\x37\\x49\\x47\\xe0\\xce\\xd2\\xb6\\xfd\\x4a\\x2f\\x57\\xe5\\xdb\\xdb\\x76\\x24\\x01\\x6d\\xa9\\x3f\\xe5\\x67\\x30\\x09\\x01\\xfe\\x98\\xc6\\x3d\\x98\\x20\\xee\\x13\\x40\\x17\\x70\\xdc\\x16\\x54\\x21\\xda\\x9e\\x27\\x76\\x13\\xd3\\xaa\\x50\\xa9\\x79\\x55\\x2e\\x57\\xa6\\xb9\\x11\\xb8\\x11\\xa0\\x32\\x89\\x3d\\xc6\\xe4\\x95\\x46\\x1e\\x48\\x27\\x3d\\x71\\x42\\x87\\x74\\xb9\\xa4\\x95\\x5f\\x5c\\x8b\\xb9\\x04\\x6e\\x37\\x59\\xcd\\x60\\x71\\xd4\\x4a\\xb8\\xfa\\xb9\\x06\\x86\\x79\\xae\\x4a\\x20\\xfd\\x2f\\xdf\\xd1\\x76\\x5e\\x95\\xc8\\xdc\\x69\\x78\\xe2\\x8c\\xe3\\x32\\xb3\\x13\\x7c\\x21\\x8b\\x95\\xe2\\x61\\x13\\x6e\\x9f\\x43\\x9c\\x15\\xa2\\x7c\\xb2\\x5a\\xc2\\xb6\\xae\\xc5\\xe2\\x5a\\x1b\\x55\\xe7\\xd5\\x4a\\x8b\\x57\\xc7\\xa3\\xa1\\x50\\xc0\\x64\\xf4\\xb7\\x60\\x45\\x5b\\x5c\\x63\\x5c\\x78\\xf9\\xfd\\x01\\x25\\x6e\\x45\\xbc\\xc5\\x4c\\xf2\\x32\\x4b\\xa6\\x01\\x01\\xd4\\x33\\x20\\x81\\xa3\\xba\\x96\\xd7\\x83\\x65\\x5d\\x99\\x0a\\x64\\x3c\\x12\\xe0\\x07\\xa9\\x2c\\x8a\\x44\\xd6\\x33\\x5c\\xac\\xba\\x27\\x46\\xc1\\xde\\xe5\\x50\\xe9\\x7e\\xb1\\x29\\x20\\x8b\\x15\\xd7\\x09\\x2c\\xe6\\x1e\\x02\\xee\\xc6\\xd2\\x7c\\x5a\\x2d\\xaf\\xdf\\x4d\\x3e\\x27\\xd5\\xe4\\x73\\x4f\\x18\\x59\\xcf\\x94\\xe9\\x89\\xea\\x42\\xd5\\x97\\x75\\x6e\\x94\\xdf\\xe6\\xee\\x51\\x1e\\xf6\\x0f\\xbf\\x89\\x31\\x76\\x24\\xa4\\x4d\\x38\\x4e\\x02\\x7f\\xab\\x26\\x9f\\x43\\x6a\\xac\\x26\\x9f\\x07\\x73\\xa9\\xdf\\x5d\\x96\\xef\\xe9\\xbc\\x79\\x9d\\x40\\x49\\xd4\\x73\\x24\\xae\\x29\\xd4\\xa5\\xd2\\xae\\x78\\x73\\x23\\xb8\\xb9\\xd6\\x7a\\x5d\\x02\\x2e\\x1c\\x2a\\x9f\\x20\\xf9\\x4c\\x8c\\xa1\\x61\\xfe\\x1e\\x91\\x32\\x95\\x82\\x6e\\xa3\\xc6\\x7d\\x55\\x1a\\xcd\\xba\\xe4\\x62\\xb5\\x28\\x45\\x35\\x9d\\x6a\\x65\\x90\\x31\\x0b\\x92\\x9c\\x61\\x24\\xce\\x81\\xd7\\x1b\\x39\\xd1\\x22\\x2f\\x4d\\x05\\xfc\\x1b\\x2a\\x0e\\x00\\xc4\\x6f\\xc0\\xc7\\x17\\x95\\x06\\x4a\\x36\\x15\\x69\\xb0\\xe1\\x38\\xc5\\xa2\\xe0\\x20\\x1c\\xdd\\x55\\x69\\x5e\\x62\\x33\\x89\\x05\\x8d\\x42\\x9d\\x91\\x93\\x93\\xfc\\x4f\\x2b\\x49\\xbd\\x82\\xb3\\x18\\x7f\\xff\\x1b\\x50\\xa8\\x1f\\x77\\x55\\x66\\xf6\\x00\\x6d\\x39\\x37\\x26\\x31\\xa6\\x03\\xad\\x64\\x9d\\xce\\x93\\x9d\\x4f\\x7f\\x3f\\xd5\\xa7\\xab\\xe1\\x50\\x0e\\xcf\\x76\\xba\\x6e\\x93\\xe6\\xda\\x7d\\xdc\\xce\\xa3\\x7a\\x76\\x09\\x30\\x87\\x8f\\xf8\\x8b\\xc7\\x09\\xa6\\x62\\xd8\\x13\\xa5\\x4d\\x44\\xe4\\x30\\xf1\\xe0\\x20\\x3c\\xad\\x96\\xea\\xca\\x7c\\x94\\x13\\x0f\\x1e\\x4f\\x97\\xef\\xa6\\x49\\xe7\\xd4\\x74\\x7a\\x22\\xf7\\x18\\xd9\\x92\\xcf\\x05\\x2a\\x3b\\xed\\xcf\\x17\\x63\\x2b\\xa8\\x45\\x12\\x4c\\x09\\xe7\\x53\\xc0\\xbb\\x2f\\xf2\\x2e\\x0b\\x1f\\x25\\xb0\\x2d\\x5b\\xaf\\x2f\\x72\\x9f\\xc8\\x83\\x2a\\xfa\\x22\\x29\\xc5\\x8f\\xf6\\x27\\xb7\\x2d\\x7c\\xa5\\x6d\\x31\\xb2\\xa7\\x5a\\x40\\xfe\\x67\\x55\\xc8\\x6b\\x95\\x85\\x4b\\xb9\\x2b\\xbe\\x98\\x79\\xae\\x07\\xa8\\x5f\\x83\\xb1\\xbf\\x3d\\xd8\\xe2\\x62\\xe1\\x82\\x54\\xe1\\xfa\\x17\\xc9\\x42\\xf7\\x04\\x2f\\xe3\\xb4\\x50\\xb2\\xfe\\x98\\x2f\\x54\\xb5\\x32\\x09\\x83\\x42\\xf1\\xd7\\x41\\xd5\\xca\\xd8\\xfc\\x69\\x4f\\x2c\\x74\\x77\\xeb\\xf6\\x20\\x58\\x97\\x76\\x00\\x25\\x30\\x81\\x1e\\x1c\\x54\\x1a\\xe7\\xec\\x70\\x23\\x40\\x46\\x11\\x9e\\xc2\\xc2\\xbd\\x00\\x32\\x81\\xbb\\x8f\\xc7\\x0c\\xc5\\x0e\\x6e\\x1e\\xaf\\x92\\xfe\\x88\\x57\\x08\\x29\\xa9\\x44\\x35\\x15\\xcb\\xfc\\x4a\\x15\\x1a\\x36\\x50\\x95\\xa1\\x86\\x28\\xad\\xab\\xa2\\xc0\\x8b\\xa6\\x4c\\xe8\\xfc\\x4f\\x55\\x43\\xea\\x3c\\xcf\\x14\\x67\\x4d\\x64\\x4d\\x7b\\x06\\x17\\xfc\\xab\\x5c\\x8a\\xb1\\x78\\x38\\x44\\xb8\\x1f\\xb0\\x1d\\x95\\x81\\x04\\x85\\x92\\x51\\x29\\x26\\xd7\\x40\\x3e\\xc8\\x64\\x71\\x58\\xd3\\xaa\\x08\\x55\\x51\\x0f\\x5e\\x3d\\x58\\x88\\xb2\\x32\\x50\\x7b\\x2e\\xcb\\xac\\xc0\\x35\\x39\\xcf\\xf5\\x03\\x52\\x47\\xbe\\x27\\x15\\xcd\\x17\\x53\\x9d\\x20\\xd9\\xed\\xb7\\x70\\xc0\\x8e\\xbf\\x29\\x19\\x40\\xf9\\xce\\xed\\x2d\\x63\\xb3\\xc2\\x7b\\x8a\\x25\\x0e\\x37\\xdd\\xf0\\x90\\x16\\x14\\xce\\x47\\x76\\xeb\\x10\\xf7\\xc5\\xb4\\xce\\x55\\x99\\x69\\xbb\\x17\\xfe\\x91\\x55\\xa5\\x39\\xc1\\xfe\\x41\\xd3\\xd4\\xd3\\x7d\\xe2\\x5c\\xb7\\x07\\xae\\xd4\\xa2\\x5a\\x69\\x38\\x38\\x7d\\xa9\\xea\\x7c\\x96\\x97\\xfb\\xa2\\xf3\\x17\\x4c\\xea\\x44\\x65\\x2e\\xe2\\x22\\xdb\\x90\\x02\\x25\\x50\\x71\\xab\\x44\\x5e\\x5e\\xa8\\x5a\\xe3\\xdd\\x57\\xc0\\x49\\x44\\xbf\\x4f\\x3c\\x07\\x78\\x18\\x33\\x2f\\xba\\xa2\\xa9\\xea\\x5a\\xe9\\x65\\x55\\x66\\x30\\x88\\x78\\x3f\\x06\\xd2\\xb9\\xc9\\xd3\\x55\\x81\\x9a\\x19\\xa8\\x1d\\x70\\x27\\x00\\xd2\\x60\\x4e\\xb3\\x4a\\x16\\x8e\\x3b\\x35\\x28\\x6e\\x89\\x3a\\xec\\x21\\x1c\\x96\\x0b\\x24\\xbe\\xef\\x61\\x01\\xcb\\x4a\\xaf\\x33\\x01\\xc7\\x9a\\xd6\\x2a\\x07\\xec\\x89\\xc0\\xeb\\xf3\\x7c\\xb9\\xc4\\x45\\xea\\x97\\xfe\\xb2\\xd2\\x6d\\x20\\x63\\x10\\x37\\x37\\x88\\xef\\xb6\\x83\\xf0\\x62\\x8c\\xbd\\x5c\\xe3\\x35\\xd0\\xbd\\x6d\\xf1\\x46\\x9a\\xf9\\x60\\x91\\x97\\x09\\x17\\xa7\\x21\\x11\\x7d\\x00\\x62\\x39\\x10\\xc2\\x6b\\x43\\x84\\x33\\x02\\x3e\\x04\\x29\\x0d\\x4e\\x44\\xc3\\x18\\xf3\\x22\\x3e\\x52\\x55\\x85\\xc3\\x2e\\xc6\\xeb\\x36\\xe4\\x57\\x7a\\x29\\x53\\x75\\x62\\x6a\\x00\\xf3\\xa9\\xd3\\x39\\xf3\\x13\\x6a\\x73\\x92\\x92\\x66\\x86\\xe5\\x76\\x57\\xc1\\x8e\\xc9\\xf3\\xb1\\x28\\x2d\\x8f\\xf0\\x99\\xcb\\x95\\x9e\\x27\\x85\\x36\\xbe\\x3c\\x08\\xae\\x20\\x80\\x86\\x6c\\xc2\\x65\\x7e\\x2a\\xcf\\x22\\x49\\x02\\x6a\\xca\\xba\\x0e\\x30\\x97\\x75\\xfd\\x49\\xd6\\x35\\xb7\\xda\\x1f\\x9d\\x45\\x52\\xcf\\x42\\x2e\\x2d\\x77\\x0b\\x64\\x9f\\x0a\\x65\\xaa\\x4f\\x67\\xdf\\xc4\\xea\\x40\\xec\\x15\\x5f\\xa0\\x0e\\x32\\x38\\x31\\x75\\xdc\\xae\\x67\\xf7\\x0b\\x46\\xa5\\x5a\\xc5\\x67\\x82\\xbc\\xd4\\xaa\\x36\\x27\\x55\\x6d\\x54\\x66\\xb1\\x40\\xd9\\xb0\\x27\\x74\\x5a\\xd5\\x81\\xb6\\xc5\\x51\\xfd\\xb2\\xce\\xab\\x3a\\x37\\xd7\\x40\\xa4\\x50\\x24\\xc1\\xf2\\x5d\\x3f\\xcc\\x50\\x32\\xc6\\x10\\x24\\x1c\\x2a\\x4b\\x78\\x2d\\x2b\\x7d\\xd6\\x85\\xd1\\xb7\\xb0\\x50\\x93\\x5f\\xe9\\xed\\x6d\\xc4\\x95\\xaa\\x82\\xdc\\x9f\\x2a\\x80\\xd6\\x83\\x66\\xb9\\x95\\x10\\xf9\\xb2\\x32\\xf3\\xbc\\x9c\\xc1\\x2e\\x15\\x89\\x72\\xa8\\x6e\\x01\\x61\\x6e\\x22\\xb5\\xea\\xa1\\x38\\x16\\x1c\\x75\\xf2\\x52\\x1b\\x16\\x2a\\xde\\x21\\xb7\\x63\\xfd\\x8c\\x5d\\xc4\\x90\\x2f\\xc6\\x22\\xca\\x43\\x48\\xa8\\x02\\x26\\xa5\\xe0\\x17\\x56\\x31\\x63\\xfb\\x7e\\x27\\x14\\x63\\xbc\\xf5\\x0d\\xc1\\x94\\xea\\xd2\\xe3\\xc9\\x42\\x06\\xdd\\x70\\x10\\x52\\x4e\\xf0\\xc4\\x84\\x1e\\x56\\x8b\\x66\\x0c\\xd1\\x65\\x8a\\x2f\\xab\\xf2\\xe8\\xe4\\xe5\\xab\\x57\\x27\\x79\\x39\\x2b\\xd4\\x4b\\xa9\\xd5\\xef\\x55\\x9d\\xbd\\x9c\\xcb\\x5a\\x8c\\xc5\\xce\\x27\\x90\\x7b\\xb2\\xe9\\xe9\\x6a\\xf8\\xf8\\xe9\\x1e\\x7c\\x3e\\x1b\\xf6\\xe1\\xcf\\xf4\\xd1\\xe9\\x6a\\xf8\\x64\\x88\\x3f\\x9e\\x4c\\xa7\\xa7\\xab\\x87\\xc3\\x47\\xf0\\xe3\\xe1\\xf0\\x19\\xfe\\x90\\xf4\\x03\\x73\\x1e\\x61\\xb1\\x47\\xd9\\xe4\\xf1\\xe9\\xea\\x91\\xc2\\x1f\\xcf\\xa6\\x69\\x7a\\xba\\x92\\x29\\xfe\\xc8\\xf6\\xe4\\xf4\\x6c\\x27\\xa0\\x1f\\x6d\\x31\\xf8\\x49\\xea\\x3c\\x4d\\xac\\xf2\\x9e\\x91\\xdf\\x39\\xbd\\xe4\\xeb\\x28\\xc8\\x00\\x16\\x34\\x17\\x2f\\x44\\xe7\\xf4\\xea\\xe9\\xb0\\x23\\xee\\xdf\\xc7\\x81\\x4a\\xd2\\xf9\\xc0\\x54\\xbf\\x2d\\x97\\xaa\\x86\\x1e\\x25\\x5d\\x71\\x6f\\x2c\\x30\\xed\\x75\\x75\\xe9\\xd2\\x50\\x7d\\xb7\\xa9\\xf7\\xae\\x89\\x6e\\x78\\xb2\\xf4\\xb8\\x25\\xe9\\xbc\\x27\\xe6\\xaa\\x58\\xaa\\x3a\\x90\\xe4\\x5d\\x82\\x1b\\xea\\x96\\xce\\xd8\\xf9\\xa2\\xc2\\x03\\x5d\\xad\\xea\\x54\\x05\\x3c\\xfd\\xf4\\xb2\\xd3\\x15\\x2f\\x44\\x7f\\x84\\xb7\\x32\\xeb\\x00\\xda\\xf4\\x41\\xfc\\x9b\\x41\\x5a\\xdc\\xe3\\x75\\xa9\\x8f\\x17\\x4b\\x73\\x0d\\x67\\x86\\xc6\\xee\\x53\\xda\\x93\\xc5\\xe6\\x53\\x45\\x89\\x47\\x0a\\x38\\x04\\x94\\x67\\x41\\xfb\\x74\\xa8\\x88\\x4f\\x04\\xf5\\x4a\\xb1\\xb4\\x73\\x7c\\x65\\x54\\x89\\x8a\\x9d\\x55\\x99\\xa3\\x75\\x89\\xd3\\x0e\\xea\\x81\\x38\\x12\\x5a\\xd5\\xb9\\xd2\\xb0\\x05\\x4b\\x98\\x89\\xbe\\x72\\xe5\\xa1\\x9c\\xd8\\xc6\\x6d\\xb6\\xbc\\x16\\xa5\\x93\\x9a\\xe2\\x12\\x78\\xfb\\x6a\\x70\\x35\\x65\\x02\\x8f\\xbd\\x1a\\xe7\\x11\\x9a\\x33\\x90\\x30\\x95\\x68\\x4c\\x23\\x35\\x5a\\xd6\\x40\\x35\\x90\\xae\\x16\\x4a\\xea\\x15\\xec\\x63\\x50\\x3d\\xad\\xca\\x54\\x81\\xe8\\x34\\x70\\xf7\\xb9\\x65\\x65\\x04\\x5d\\xe8\\xe2\\xae\\x9f\\x9a\\x1e\\x00\\xd1\\x79\\x99\\x2a\\xb2\\x97\\xd1\\x68\\x89\\xa3\\x77\\xa6\\x55\\x69\\xf4\\x8e\\xbb\\x06\\x94\\x85\\xae\\x08\\x1d\\xb2\\x24\\x02\\xd8\\xd3\\x7c\\xb6\\xaa\\xf1\\xe8\\x82\\x76\\x45\\x28\\x6d\\x64\\x4a\\x2c\\xab\\x1c\\x4e\\x4a\\x88\\xf3\\xac\\xae\\x56\\x4b\\x12\\xba\\x5c\\xf7\\x5e\\x62\\xef\\x78\\x01\\x3e\\xa4\\x75\\xf6\\xf0\\x09\\xac\\xc3\\x47\\x4f\\x1f\\xf6\\xf1\\xcf\\x33\\x5c\\x8e\\x23\\x5c\\x8e\\x93\\x0c\\x3f\\x71\\x9d\\xa6\\x23\\xfc\\xdc\\xc5\\xcf\\x47\\xf8\\xf9\\x18\\x3f\\x61\\xfd\\x3e\\x19\\xd1\\x92\\x1d\\x49\\xf8\\x7c\\x34\\xc1\\x1f\\x8f\\x15\\x7c\\xee\\x0d\\xe1\\x33\\x7b\\x82\\x49\\x59\\x8a\\x9f\\x0a\\x7f\\x28\\x5c\\xec\\x0a\\xeb\\xab\\xa7\\xf8\\x29\\x29\\x03\\x9a\\xdd\\x1b\\x41\\x83\\x7b\\x0f\\x11\\xf0\\xde\\x23\\x00\\xbc\\x27\\x11\\xca\\xde\\x04\\x40\\xee\\x29\\x6c\\x65\\x6f\\xfa\\xf0\\x74\\x35\\x7c\\x3a\\xc2\\x9c\\xa7\\xa3\\x67\\xf8\\x89\\x39\\x4f\\x77\\x31\\x67\\xf7\\x31\\xfd\\xd8\\xc3\\xcf\\x67\\xf4\\x03\\x1a\\x78\\x46\\xdd\\x7f\\x36\\x84\\x2e\\x3d\\x7b\\x08\\x98\\x3d\\x7b\\x84\\xfd\\x7e\\xf6\\xe8\\x29\\x7e\\x62\\xa9\\xc7\\x94\\xf4\\x18\\x3a\\xfb\\xec\\x09\\x96\\x7d\\x02\\x80\\x9f\\x3d\\x05\\xfc\\x9e\\x4d\\xb0\\xde\\x04\\xba\\xfa\\x2c\\xa5\\xa2\\x38\\x3a\\xcf\\x52\\xac\\x9d\\x41\\xb3\\xcf\\x14\\x56\\x53\\x50\\x4d\\x0e\\x47\\xf8\\x09\\x29\\x12\\x1b\\x95\\x8f\\x30\\xe5\\x11\\xa6\\x3c\\xda\\xc3\\xcf\\xa7\\xf8\\x89\\xdd\\x90\\x88\\x86\\x7c\\x8c\\x85\\x70\\x30\\xe5\\x1e\\x7d\\x07\\x8c\\x24\\x62\\x21\\x9f\\x62\\x65\\xc4\\x45\\x12\\x16\\x12\\x67\\x47\\xe2\\xec\\xc8\\x14\\xe1\\x21\\x46\\x12\\x71\\x91\\x88\\xcb\\x04\\x71\\x99\\x20\\x16\\x93\\x87\\x0a\\x3f\\x61\\xae\\x27\\x34\\x0c\\x93\\x47\\x8f\\xf0\\x13\\xaa\\x4d\\x1e\\x3f\\xc1\\x4f\\x00\\x37\\xc1\\x51\\x98\\xe0\\x28\\x4c\\xb0\\xe5\\x09\\xf6\\x7f\\x92\\x0e\\xf1\\x13\\xcb\\x63\\xc7\\xd3\\x87\\x38\\xd3\\xe9\\xa3\\x21\\x7e\\x3e\\xa1\\x1f\\x4f\\xf1\\x53\\xd2\\x0f\\x28\\x9c\\xe2\\xe0\\xa6\\xd8\\x44\\x8a\\xc0\\x53\\x04\\x9e\\x62\\x87\\x52\\xa4\\xbf\\x14\\x29\\x2f\\x4d\\xb1\\x4c\\x8a\\xe9\\xd8\\x50\\x9a\\x61\\xdd\\x0c\\xd3\\xb1\\x6f\\x29\\xf6\\x2d\\xc3\\xfe\\x64\\xd4\\x93\\x0c\\x7b\\x92\\x61\\x63\\x19\\xf6\\x21\\xc3\\x66\\x32\\x6c\\x26\\x4b\\x25\\x7e\\x42\\x33\\x59\\xb6\\x8b\\x15\\x32\\xac\\x80\\x50\\x33\\xdc\\xa7\\xd4\\xc3\\x11\\x7e\\x3e\\xea\\xe3\\x1f\\xa8\\xa1\\x1e\\xed\\xe1\\x8f\\x47\\xd0\\x92\\x9a\\x60\\xfe\\x84\\xf2\\x27\\xcf\\xf0\\x73\\x82\\x9f\\x80\\xac\\x4a\\x9f\\x62\\x06\\xe2\\x3c\\x1d\\x3d\\xc5\\x4f\\x28\\x34\\x7d\\xf8\\x18\\x3f\\xf7\\xf0\\x13\\x53\\xf6\\x10\\xe7\\xe9\\x1e\\x80\\x9d\\x3e\\x45\\x22\\x9d\\x3e\\x7d\\x84\\x9f\\x4f\\xf0\\x13\\xcb\\xd2\\x8e\\x39\\x7d\\x46\\x3f\\x90\\xae\\xa7\\xd8\\xd4\\x14\\xc6\\x68\\x34\\xdc\\xcd\\xfa\\xf0\\xe7\\xe1\\x10\\x3f\\x77\\xe9\\xc7\\x1e\\x7e\\x3e\\xc3\\x4f\\x89\\x9f\\x19\\x7e\\x2a\\xf8\\x7c\\xfc\\x14\\x3f\\x31\\xf7\\xb1\\xc2\\x0a\\x4f\\xb0\\x36\\x22\\x34\\x1a\\xee\\x3d\\x82\\x4f\\x98\\xf0\\xd1\\xf0\\xe9\\x63\\xfc\\xc4\\x96\\x9e\\x22\\x8c\\x67\\xf0\\xf9\\xf0\\xf1\\xf4\\x74\\x35\\xda\\x1b\\x61\\x73\\x7b\\x23\\xa8\\xb0\\x47\\x6d\\xef\\x3d\\xc4\\x1f\\x8f\\x77\\xf1\\xf3\\x21\\x7c\\xee\\xe1\\xf7\\x3d\\xfc\\x3e\\xd9\\xc3\\x42\\xc0\\x70\\x46\\x7b\\xd8\\x81\\xbd\\xf4\\x19\\x26\\x65\\x98\\x9f\\x41\\xc6\\xd3\\x21\\xac\\x88\\xd1\\xd3\\x21\\xfe\\x90\\x80\\xe8\\xb3\\x5d\\x18\\x86\\xd1\\xb3\\xdd\\x5d\\xfc\\xdc\\xc3\\x4f\\xe8\\xc7\\xb3\\x87\\x98\\xf2\\x10\\x81\\x3c\\x7b\\x38\\x39\\x5d\\x8d\\xe4\\x68\\x0f\\x3f\\x21\\x5b\\x02\\xb1\\x8d\\xe4\\x63\\x98\\x95\\x91\\x04\\x4e\\x35\\x92\\xd8\\x59\\x09\\x84\\x31\\x92\\x4f\\x1e\\x63\\xc6\\x93\\x14\\x3e\\xf7\\x1e\\xe2\\x8f\\x3d\\xfa\\x01\\x3d\\x9c\\x20\\xef\\x18\\x4d\\x86\\x80\\xdc\\x04\\xbb\\x36\\x79\\xf8\\x04\\x93\\x70\\x5c\\x71\\x4d\\x8d\\x26\\xb0\\xa6\\x47\\x93\\x27\\x88\\xf5\\x04\\x3b\\x3a\\x79\\x3a\\xc4\\xcf\\x11\\x7c\\x4a\\x1c\\x99\\x89\\x7c\\x8c\\x9f\\x4f\\xf1\\x13\\x3a\\x95\\xee\\xa6\\x90\\x91\\x3e\\x7c\\x88\\x9f\\x4f\\xf0\\x13\\x70\\x4f\\x33\\x6c\\x36\\xcd\\x76\\xf1\\xf3\\x11\\xfe\\x50\\x43\\xfc\\xdc\\xa5\\x1f\\x4f\\xf1\\x13\\x06\\x28\\x4b\\xb1\\x70\\xa6\\xa0\\x7e\\x36\\x45\\x72\\xc8\\x40\\x72\\xda\\x1d\\x0e\\x53\\xfc\\xcc\\xe0\\x13\\x41\\xee\\x0e\\xa7\\xc3\\xd3\\xd5\\x6e\\xaa\\xa6\\xf0\\x23\\x9d\\x8e\\x4e\\x57\\xbb\\x99\\xc2\\x9c\\x8c\\xc4\\xb0\\x5d\\x89\\x92\\xd7\\x2e\\xfe\\x78\\xf6\\x0c\\x3f\\xe5\\xe9\\x4a\\x3e\\x79\\x02\\x55\\xe4\\x13\\x98\\x4c\\xf9\\x04\\x86\\x48\\x3e\\xd9\\xcb\\xe0\\x13\\x20\\xca\\x27\\x00\\x4a\\x3e\\x05\\x76\\x27\\x9f\\x0e\\x9f\\xe0\\xe7\\x04\\x3e\\x77\\x1f\\xe3\\x27\\xa6\\x00\\xc3\\x94\\x4f\\xb1\\x39\\xf9\\x14\\x2b\\x3c\\xdb\\x85\\xc1\\x94\\xcf\\x80\\x51\\xcb\\x67\\xb8\\xce\\xe4\\xb3\\xc7\\x98\\x83\\x0b\\x42\\x3e\\x03\\x32\\x94\\xcf\\x26\\x0f\\xf1\\x93\\x0a\\xc3\\xa2\\x93\\xc8\\x90\\xa5\\x44\\x46\\x2f\\xe5\\xae\\x82\\x4f\\x58\\xba\\x52\\x02\\x41\\x48\\x09\\xcb\\x4d\\x4a\\x18\\x53\\x29\\x1f\\x3d\\xc4\\x4f\\xac\\x00\\x7b\\x8a\\x94\\x93\\x5d\\xac\\x36\\x79\\x84\\x9f\\x7b\\xf8\\xf9\\x14\\x3f\\x11\\x10\\x70\\x22\\x29\\x61\\x27\\x94\\x13\\xf5\\x18\\x3f\\x9f\\xe2\\x67\\x76\\xba\\xca\\x58\\xea\\x9c\\xc2\\x78\\x4d\\x27\\x23\\x75\\xba\\x9a\\x92\\x54\\x3a\\x55\\x43\\x48\\x52\\xbb\\xf4\\x03\\xfa\\x3c\\x9d\\x3e\\x53\\xf8\\xd9\\x90\\x50\\x8f\\xc3\\x8d\\x9a\\x24\\x54\\x2b\\xff\\xa4\\xf3\\x01\\xc8\\x26\\x2f\\xab\\x4c\\x1d\\x99\\x64\\xd8\\x85\\x63\\xe7\\xde\\x93\\xa7\\x20\\x3e\\xc5\\xdb\\xbb\\x17\\x62\\x6f\\x03\\x1d\\x0e\\x48\\x04\\x2c\\xef\\xb8\\x7b\\x79\\xba\\x29\\xfe\\xf4\\x8f\\xe1\\x3f\\x0e\\xc4\\x3f\\xb4\\xb1\\xa7\\xbe\\x7f\\x9c\\x89\\x55\\x59\\x28\\xad\\xc5\\x3f\\x96\\x95\\xfe\\x07\\x88\\x2e\\xd5\\xca\\xe8\\x3c\\x53\\xa4\\xb3\\xc0\\x6a\\x81\\x4e\\x02\\x8e\\xdd\\x11\\xe2\\x3a\\xd1\\xa6\\x46\\xfd\\x41\\x4f\\x64\\x79\\x1d\\x1d\\x6c\\x93\\x2c\\xaf\\x51\\x93\\x78\\x88\\xc7\\xb4\\x17\\x62\\x28\\xf6\\x05\\x1d\\xc3\\x3c\\x06\\x5d\\x92\\x50\\xe3\\xd1\\x80\\x6c\\x18\\x81\\x23\\x03\\x07\\xad\\x6e\\x97\\x0f\\x62\\x70\\x7a\\x07\\x98\\x81\\xa8\\x08\\x67\\xfb\\xb8\\xef\\xd0\\x5b\\x3c\\x95\\xad\\x77\\x1e\\x12\\xa0\\xff\\xa6\\xfa\\xc7\\x19\\xf5\\x4f\\x4b\\x93\\xeb\\x69\\xae\\x50\\xb2\\xfa\\xc7\\xb2\\x56\\xd9\\x3f\\x50\\xbe\\x03\\xa9\\xae\\xa8\\xb4\\xd2\\x46\\x98\\x4a\\x50\\xc5\\x81\\x38\\xd2\\x7a\\xb5\\xb0\\x16\\xb7\\xd2\\x88\\x42\\x49\\x6d\\x10\\x1c\\x4a\\x77\\x16\\x16\\x03\\x1a\\xe0\\x6d\\x05\\xda\\x19\\x13\\x00\\x31\\x51\\x20\\x31\\xce\\x50\\xda\\xac\\x01\\x4a\\x89\\x95\\x1b\\x3a\\x9f\\x5f\\xf2\\x5a\\x9b\\x04\\x40\\xf4\\xb0\\x0b\\x3d\\x61\\x2a\\x77\\xe5\\x7a\\x64\\x50\\x9c\\x45\\xe1\\x4f\\x5c\\x2a\\x34\\xed\\x4d\\x55\\x6d\\x64\\x4e\\xb0\\xd6\\xb0\\xe8\\x89\\xac\\x2a\\x1f\\x18\\x71\\x5e\\x56\\x97\\x04\\xe2\\x72\\xae\\x50\\xb4\\x64\\xa4\\xb2\\x4a\\x69\\x7b\\x93\\x09\\x83\\x3b\\xa6\\x71\\x7b\\x01\\x1d\\x3f\\x84\\x13\\xc4\\x3e\\xea\\x40\\x50\\xd2\\xf7\\x3a\\x25\\x90\\xf1\\xb1\\xdc\\x78\\x4c\\xe8\\x39\\x71\\x1e\\x12\\xbd\\x62\\x68\\x91\\x67\\xbf\\x88\\x31\\x97\\xdd\\xc6\\xa2\\x3b\\x62\\xb7\\x07\\xe9\\x82\\x26\\x93\\x08\\x04\\x15\\x3b\\xa9\\xca\\x8b\\x04\\x6a\\x74\\xc5\\x3e\\xa5\\x4c\\x8b\\xaa\\xaa\\x29\\xc9\\x35\\x8b\\x55\\x09\\xcb\\x50\\x0f\\x53\\xab\\x0c\\xb2\\xba\\xe2\\x90\\x70\\xd8\\x87\\x0e\\xf8\\x0b\\x71\\x97\\x8f\\x77\\x24\\x95\\x18\\x23\\x0a\\x94\\xcf\\xd6\\x14\\xd4\\x1f\\x4c\\xdf\\x76\\x74\\x76\\xcb\\xe4\\xf5\\x71\\xae\\x44\\x96\\xeb\\x65\\x21\\xaf\\x49\\xd9\\xc9\\xd6\\x2f\\x3f\\xbf\\x7b\\x23\\xf2\\xd2\\xa8\\x19\\x89\\xe8\\x3d\\x31\\xa9\\xcc\\x1c\\x47\\x2b\\xc7\\x1b\\xa8\\x5a\\xe1\\xbd\\x34\\x9d\\x43\\x32\\x67\\x07\\x94\\xd5\\xf2\\x12\\x0e\\xe9\\xe2\\x95\\x11\\xf3\\xaa\\xc8\\xb4\\xa8\\x95\\xb7\\xe8\\xae\\x10\\x6c\\x59\\x65\\x0a\\xed\\xbe\\xd1\\x98\\x9b\\xda\\xee\\xd7\\xaa\\xc0\\xb3\\x8a\\x36\\xd2\\xa8\\x41\\x70\\x36\\xfb\\x99\\x0a\\x24\\xcb\\x42\\xa6\\x0a\\x66\\x3d\\xed\\x11\\x0a\\x5e\\xc7\\x00\\x43\\x6e\\xe6\\xb9\\x76\\x9a\\x6e\\xbe\\x23\\xc3\\xbf\\x5b\\x44\\x1d\\x2f\\xab\\x0b\\x38\\x88\\x4c\\x2a\\x63\\xaa\\x45\\x9f\\x1c\\x1e\\xf4\\x3f\\x57\\x40\\x67\\x78\\x53\\x8e\\xdd\\x73\\xea\\x64\\x8d\\x04\\xc8\\x96\\x36\\x40\\x45\\xd9\\xc0\\xe5\\xfd\\x92\\xa3\\x32\\x9a\\xcc\\x78\\x3a\\x59\\x7e\\xd1\\xe9\\x09\\xba\\xe8\\x0a\\x94\\xbe\\x7d\\x57\\xbc\\x3f\\xc5\\xf2\\x78\\x9f\\xba\\x06\\xa5\\x61\\xe2\\x93\\x2e\\xfa\\x65\\x65\\xfa\\x3c\\x98\\x9d\\x9e\\xe8\\xc0\\x91\\x11\\xab\\x36\\xbb\\x00\\xe7\\xa5\\xd9\\xca\\xc0\\x82\\x23\\x73\\x0e\\xc8\\xfc\\x2b\\x26\\xbc\\x55\\x57\\xe6\\x63\\x75\\x62\\x5b\\x42\\xe6\\x57\\x12\\x08\\x98\\xaa\\xa0\\x9b\\x90\\x15\\x75\\x92\\x20\\x7e\\x5b\\x0f\\xa9\\x6c\\xdc\\xbd\\xb0\\xfe\\x77\\xf5\\xed\\xf7\\xbc\\x28\\xac\\xd1\\x0b\\x1b\\x5c\\x99\\x95\\x2c\\xf0\\x48\\x88\\x6c\\x38\\x07\\x62\\xa0\\xfb\\x00\\xec\\x2a\\xf1\\xc3\\x5c\\x5d\\x02\\x27\\x22\\xe4\\x8b\\xbc\\x54\\x3f\\xe7\\x17\\x84\\xf7\\xfb\\xcd\\x88\\x03\\x4c\\xdb\\x2e\\xdf\\xdc\\xd3\\x7c\\xbb\\x1b\\x07\\x33\\x57\\x5a\\xc1\\x97\\x5a\\xf1\\xf0\\x08\\x77\\xad\\x4b\\xe4\\xbe\\xaa\\x75\\x55\\x6b\\xa6\\x0c\\x9b\\xe5\\x1a\\x8f\\xdb\\x66\\x0c\\x6c\\x27\\xf6\\x05\\xd2\\x7a\\x7e\\xa1\\x0e\\xc4\\x9f\\x7d\\xd4\\x6d\\xec\\x8b\\x11\\x0f\\x20\\x01\\xde\\x00\\x28\\xea\\x04\\x61\\x60\\xfb\\x71\\x24\\x2e\\x72\\x6b\\x9e\\xb6\\x2f\\xe6\\x79\\x96\\xa9\\x52\\x28\\xb6\\x57\\xc0\\x2b\\x07\\x7b\\x65\\x08\\xe3\\xa6\\xf3\\x3f\\xd9\\xb5\\x25\\x2f\\x67\\xdc\\x0b\\x3a\\xfa\\xab\\xaf\\xb5\\xcb\\xc5\\xdc\\xbc\\x01\\xed\\xc1\\xc0\\xfb\\x0d\\x96\\x5d\\x66\\xec\\xdc\\xe0\\xc8\\x72\\xad\\xac\\x07\\x59\\xd7\\x98\\x04\\x9c\\x02\\xb5\\x2b\\xb8\\x64\\xdd\\x04\\xbe\\xf9\\xd7\\xd0\\xa8\\xe5\\x52\\x0b\\x75\\xa1\\xea\\x6b\\xec\\x13\\x6d\\x65\\xa5\\x52\\x78\\x27\\x21\\xd4\\x55\\xae\\x8d\\xc8\\x4b\\x16\\x00\\x94\\xb8\\x50\\xb5\\xc9\\x53\\x59\\x14\\xd7\\xfd\\x25\\xcd\\x7a\\x5a\\x55\\x75\\x96\\x97\\xd2\\x28\\xa1\\xaf\\xb5\\x51\\x0b\\x87\\xd1\\xc9\\x52\\xa6\\xaa\\x41\\x54\\x9f\\xdc\\x78\\xf5\\x62\\xbc\\x7b\\x0d\\x7a\\xe8\\x85\\x73\\xda\\xf3\\x44\\x7a\\xd6\\xe3\\x8b\\x80\\xf8\\xdf\\x1d\\xa4\\x52\\xad\\x0c\\xd4\\xdd\\x17\\x65\\x55\\x52\\xbf\\x81\\xf5\\xd1\\xd0\\xaf\\x21\\xe7\\xf0\\x3e\\x8b\\x87\\x0d\\x8b\\xdb\\x41\\x7b\\x53\\x5d\\xa0\\x13\\x0d\\x7a\\x3c\\xe5\\x46\\xb3\\x4d\\x95\\x5f\\x62\\x48\\x52\\x05\\x4d\\x25\\x13\\x09\\xa6\\x47\\x73\\xf3\\x09\\x61\\x9e\\xdd\\x41\\xe6\\xb6\\xbd\\x13\\x65\\x78\\x71\\x89\\xb9\\x42\\x06\\xcc\\xa4\\x62\\x8d\\x80\\x7a\\x42\\x16\\x45\\x05\\xfb\\x07\\xb3\\x28\\x74\\xdc\\xc1\\x25\\x86\\xb7\\x7e\\x71\\xbb\\x8c\\x4d\\xa3\\x87\\x58\\xd2\\x32\\x5b\\xf8\\xfe\\x7b\\x9e\\x99\\x39\\xdf\\xa7\\x12\\x1e\\x3f\\x59\\x6f\\xa3\\x6a\\x0a\\x00\\xb5\\xb8\\xcc\\xcd\\x1c\\xad\\x0f\\xa6\\x45\\x75\\xb9\\x2f\\xe4\\xca\\x54\\xb8\\xca\\x81\\x34\\x48\\x17\\x46\\x15\\xf3\\x32\\xad\\x4a\\x9d\\x6b\\xdc\\xe9\\x64\\x5a\\x57\\x5a\\x3b\\x4b\\x77\\xaf\\x23\\xb3\\xab\\x4d\\x95\\x48\\xc8\\x66\\xae\\xa8\\x36\\x75\\x49\\xc2\\x80\\xca\\x5a\\x49\\x34\\x3a\\xc9\\x67\\x42\\x95\\xd5\\x6a\\x36\\xa7\\x6e\\xd2\\xb0\\xfc\\x52\\xd5\\x69\\x3b\\xfb\\x5d\\x1b\\x62\\x39\\xd1\\x55\\xb1\\x32\\xea\\x80\\x47\\x74\\x1f\\xed\\x6a\\xc2\\x7b\\xd0\\x6d\\xd1\\x59\\x5e\\x1d\\x88\\x4b\\x18\\x85\\x7d\\x31\\x5a\\x5e\\x1d\\x6c\\x64\\xb9\\xc4\\xbc\\x75\\x0f\\xe4\\x0a\\x59\\x5e\\x87\\x3b\\x82\\xfe\\xb6\\xcd\\x40\\xf3\\xc0\\x03\\x49\\xd0\\x5e\\x14\\x0d\\xfc\\x11\\xf1\\xf4\\x60\\x20\\x94\\x37\\x8f\\xb3\\x7b\\x63\\xcb\\x3c\\xe3\\x3c\\xf6\\x1a\\xe3\\xd3\\xf3\\xc8\\x35\\x49\\x00\\xe1\\x44\\x1b\\xee\\xda\\x6e\\x64\\xe4\\x04\\x4d\\x0d\\x60\\x1f\\xea\\x8f\\xec\\x90\\x7c\\x9c\\x3b\\x94\\x80\\x33\\x91\\x4d\\x30\\xda\\x02\\xa3\\xf7\\xa1\\x28\\xf2\\x0b\\xc5\\xbc\\xca\\x1a\\x10\\xaf\\xe1\\x1a\\x6f\\xf0\\xbd\\xc6\\xa6\\xd8\\x0b\\x50\\x8a\\xd1\\xee\\x74\\x59\\x52\\xf9\\xbd\\xaa\\xcf\\xed\\xaa\\x7c\\x75\\xbc\\x67\\xf7\\x08\\xb4\\x5b\\x4a\\xca\\xca\\x88\\xa5\\xaa\\xa7\\x2a\\x35\\x3d\\x31\\x07\\xb1\\x0a\\xcb\\x40\\x72\\xad\\x80\\x9f\\xb1\\x30\\xae\\x49\\x44\\x57\\x99\\xb5\\x02\\x5f\\x73\\x64\\x78\\x2e\\x9e\\x82\\xc8\\xe8\\x06\\x91\\xed\\xbd\\xff\\x24\\x0b\\x8c\\xb1\\xe8\\x8f\\x0e\\xa2\\xe1\\xc3\\x5c\\x5e\\x11\\xe8\\x2c\\x21\\xc6\\x62\\xe8\\x14\\xf6\\xf7\\xbc\\x5f\\xd6\\xbd\\x84\\xdc\\x27\\xee\\xdf\\x67\\xc7\\x9d\\x2e\\xb5\\xe3\\x40\\x65\\xb5\\x9c\\xcd\\x70\\xfa\\x9d\\xdf\\x88\\xbd\\xa6\\x01\\x19\\x2f\\x14\\xc5\\x31\\x21\\x34\\xec\\xc6\\x13\\x53\\x33\\x31\\x71\\xd3\\xd1\\x8d\\x25\\x5f\\x2c\\xd9\\xcc\\xbd\\xb5\\x12\\x21\\x5b\\xcc\\xd5\\xaa\\xcc\\x54\\xad\\x32\\x3e\\x4e\\x25\\x0b\\x09\\x83\\x08\\x6b\\x73\\x66\\x4f\\x33\\x76\\x3f\\x63\\xbf\\x9e\\x2e\\x91\\x00\\xa4\\xfc\\x42\\xb2\\x35\\xfd\\xf8\\x58\\x91\\x45\\x23\\xb9\\x11\\x60\\x99\\x5a\\xd1\\x34\\xfc\\x2d\\x2c\\x1b\\x26\\xae\\xd5\\xd9\\xd9\\x11\\xaf\\xca\\x69\\x55\\x2f\\x24\\x49\\x1b\\x93\\x6a\\x65\\xe8\\xb4\\x67\\xf1\\x44\\x86\\xeb\\x51\\xb0\\x17\\x97\\x00\\x97\\x4a\\xfc\\x8d\\x52\\xfd\\xc2\\xfb\\x15\\x25\\xf1\\xbc\\x9c\\x56\\x0c\\xcf\\x5d\\x07\\x44\\x40\\x49\\x92\\xcc\\x8d\\xb8\\x94\\xda\\xe5\\x10\\x04\\x10\\xfc\\x79\\xc7\\x23\\x4e\\x4d\\x67\\x61\\xa0\\xbb\\xbc\\x0c\\x36\\x08\\x38\\xc7\\xd7\\xa5\\x2c\\x78\\x3b\\xcc\\x22\\x34\\xf0\\x92\\x85\\xae\\x72\\x45\\x92\\x97\\x6c\\xe8\\xd1\\x05\\x9c\\x2e\\x94\\x1b\\x64\\xd7\\xb1\\x77\\x64\\x64\\x30\\x16\\x43\\x62\\x2a\\x52\\x1b\\xd8\\xe7\\x7f\\x55\\x4c\\x7d\\x3e\\xc9\\xf2\\x78\\x2a\\xb8\\x5a\\x66\\xd2\\xa8\\xd7\\x79\\xa9\\xc8\\xa6\\x44\\x5b\\x24\\x30\\x97\\x1c\\xcd\\x7e\\x92\\x6e\\x63\\xc8\\x06\\x13\\x59\\x07\\x40\\x27\\x3e\\x6b\\x18\\xcb\\xec\\xfa\\x65\\x61\\xcd\\x01\\xf0\\x76\\x87\\x09\\xe9\\x37\\x66\\xf8\\x55\\x59\\x5c\\x8b\\x5a\\xa1\\x70\\x05\\x9d\\xc1\\x21\\x65\\x85\\x45\\x28\\xaa\\x97\\x2a\\x55\\x5a\\xcb\\xfa\\x5a\\x24\\xf0\\x9b\\x80\\xa0\\xcc\\xbb\\x40\\x47\\x95\\x6a\\xca\\xdb\\x3a\\xee\\x30\\x0a\\x6d\\x16\\x81\\x1b\\x40\\x0d\\x94\\x6b\\x16\\xf2\\x5c\\x69\\xdc\\xb1\\x91\\xad\\x8b\\x74\\x8e\\x86\\xfd\\x8e\\xf5\\xbe\\x5d\\x2d\\x7c\\xe7\\x38\\xe1\\x55\\x59\\xaa\\x7a\\x2d\\xd5\\x5e\\xa6\\xf8\\x39\\xb2\\x9b\\x34\\xac\\x4b\\x32\\x21\\xc6\\xfb\\xa7\\x79\\x55\\xe7\\x7f\\xc2\\x5e\\x51\\xf4\\xdd\\xd6\\xcc\\x34\\x93\\x67\\x33\\x65\\xdc\\x1e\\x89\\xd2\\xd4\\x40\\x1c\\xc1\\x01\\x0f\\xcd\\x5c\\x16\\xf9\\x9f\\x7c\\x82\\x0c\\x8b\\xcb\\x22\\x9f\\x95\\x7c\\xcf\\x64\\x4d\\x24\\xc2\\xc1\\xa0\\xad\\x14\\x47\\x99\\x08\\x0b\\x2b\\xfc\\x8e\\x95\\x75\\x38\\xfe\\xd9\\x20\\x95\\xe9\\x5c\\xe1\\x35\\xa0\\xef\\x1e\\xa5\\x7d\\x54\\x57\\x26\\x98\\x58\\x4a\\x7c\\x4f\\x2c\\xec\\xd7\\x80\\x28\\x80\\xf3\\xd7\\x32\\x3d\\xa7\\x93\\xef\\x42\\x5e\\xe5\\x8b\\xd5\\x82\\xd0\\xe5\\x1b\\x75\\x5d\\xd1\\xc8\\xa3\\xec\\xe2\\x86\\x22\\x30\\x3f\\x42\\x20\\xa9\\x2c\\x81\\x73\\x9c\\xab\\xa5\\xc1\\x73\\x6c\\x9e\\xd2\\x10\\x36\\x84\\x99\\x85\\xbc\\x7a\\x8d\\x7e\\xd8\\x76\\xd8\\x5d\\xd2\\x6b\\x6a\\xcd\\x12\\x1e\\xa7\\xbe\\xc4\\xe9\\x6d\\xa5\\x3a\\xbf\\x2c\\x61\\x2c\\x2f\\xe7\\x4a\\x15\\xbe\\x35\\x31\\xab\\x65\\xb9\\x2a\\x64\\x9d\\x9b\\x6b\\xda\\xb3\\x20\\xff\\xe7\\xff\\xc2\\xc1\\xa0\\xef\\xff\\xed\\xbf\\xa3\\x1d\\xeb\\x7f\\x35\\x7e\\xff\\x77\\x73\\x94\\x2c\\x55\\xe8\\x79\\x3e\\x85\\x49\\x17\\x73\\x55\\x64\\x22\\xab\\x2e\\x4b\\xde\\xc3\\x31\\xbd\\x7d\\x7d\\x18\\x18\\x63\\xa7\\xa6\\x91\\x25\\x8b\\xea\\x73\\xe4\\xe4\\x70\\xf4\\xc7\\x6b\\x44\\x32\\x91\\x2c\\x8d\\xba\\x32\\x62\\xa1\\xca\\x15\\x2b\\x77\\xa4\\x16\\x15\\x16\\x73\\x67\\xae\\x5f\\xaa\\xfa\\x25\\x95\\x7b\\xa3\\xca\\x55\\xb4\\xc6\\xc9\\x2a\\xfb\\x63\\xb5\\x4a\\xe7\\x41\\x3a\\xaa\\x03\\x06\\x79\\x99\\x9b\\x24\\xeb\\xb2\\xfa\\xe3\\x17\\x7b\\x24\\xc2\\xd9\\x26\\x7b\\xac\\xc0\\xa2\\x09\\x8f\\x12\\x24\\xb2\\xce\\xf2\\x0b\\x3e\\xea\\xf0\\x9a\\x0e\\xd4\\x5b\\x33\\x65\\x60\\xa2\\x12\\x54\\x4e\\xb0\\x15\\x4c\\x29\\xfa\\x31\\x63\\x47\\x7b\\x21\\x67\\x81\\x28\\x5e\\x50\\xae\\x26\\x8b\\x27\\x36\\xda\\x2f\\xd5\\x25\\xf9\\x15\\x24\\x9d\\x8f\\x68\\xa2\\x8c\\x77\\xae\\xd4\\x2a\\x48\\x76\\x49\\x29\\xb6\\x3d\\x50\\x32\\x94\\x61\\xe9\\xcd\\x59\\xd2\\xb3\\xe1\\x0c\\x39\\xac\\xae\\xca\\x73\\xda\\x5f\\xbc\\xfa\\xf2\\x1e\\xa6\\x22\\x07\\xd0\\x76\\xaf\\x6d\\x18\\xbd\\x58\\xa7\\x2a\\x3e\\xa3\\x10\\x28\\xeb\\x4c\\x01\\x95\\x53\\xf6\\x68\\x43\\x9b\\x17\\xfd\\xa7\\x73\\xb2\\xc0\\xdc\\x93\\xfc\\x4f\\xf2\\xba\\x71\\x56\\x52\\xe2\\xb9\\xd0\\x7f\\x92\\x6f\\x07\\x21\\x84\\xa5\\x0f\\xc4\\xa4\\x56\\xf2\\x9c\\xb7\\x6c\\x1e\\x31\\xfd\\x27\\xfe\\xb2\\x16\\xa2\\x4e\\x73\\xec\\x50\\x66\\x03\\xa0\\x9d\\x1d\\xf1\\x57\\x65\\xd8\\x55\\xa2\\x36\\x74\\x53\\x6e\\xc7\\x40\\x4c\\x94\\xb9\\x54\\xaa\\x14\\xe6\\xb2\\x72\\xca\\x03\\xdd\\xc3\\x4b\\xe5\\x92\\x0c\\x5e\\x44\\x35\\x45\\xe5\\x26\\x5a\\x6d\\xe9\\x78\\x2e\\x7f\\xa2\\xda\\x34\\x9d\\x6d\\x4e\\x47\\xd6\\x5c\\x28\\xb0\\x51\\x45\\xe4\\xd0\\xc5\\x25\\x1d\\xe4\\x46\\xd5\\x89\\x4f\\xc5\\xca\\xf8\\x4d\\x6c\\x8b\\x51\\x2f\\x30\\xdd\\x84\\xb4\\xd0\\x9a\\xcd\\x90\\xa7\\x1d\\x24\\x0f\\xe0\\xbb\\xb7\\x33\\x43\\x3b\\x4a\\x86\\x82\\xe4\\x42\\x25\\xe1\\x8f\\x77\\xb1\\x84\\x02\\xd6\\x8a\\x22\\xa8\\xe7\\x31\\x69\\xaf\\x49\\xf9\\xbe\\x62\\xb5\\x32\\x64\\x95\\x05\\x65\\x68\\x1e\\xb7\\xb7\\x81\\x33\\xdf\\x76\\x9b\\xa6\\x4d\\xc1\\x2c\\xd0\\x96\\x65\\x07\\x1e\\x75\\x8e\\x70\\x86\\x32\\x15\\x0d\\x3b\\x8f\\x79\\xfb\\x80\\xc3\\xe2\\xd1\\x34\\xdc\\xb1\\x66\\xb8\\x61\\x9b\\xe5\\x06\\xd7\\x96\\x6a\\x19\\x4c\\x8f\\xbe\\x1b\\xc6\\xae\\xb8\\x45\\x2b\\x7b\\xa8\\x0a\\xc2\\x46\\x0d\\x3b\\x27\\x2a\\xcd\\x24\\x70\\xef\\xf4\\xdc\\xf9\\x47\\x99\\x7a\\x65\\xe6\\xd7\\xa4\\x67\\x5f\\x33\\xe3\\x02\\x56\\x86\\xa2\\x45\\xe3\\x08\\x2b\\x05\\xcd\\xf2\\xb2\\xae\\x96\\x72\\x26\\x0d\\xe9\\x1f\\x5c\\x09\\xda\\x9d\\xa1\\xf6\\x6a\\x79\\x29\\x6b\\xd2\\x48\\xf0\\x51\\x1b\\x55\\xa1\\xc1\\x58\\x78\\xd1\\x85\\xf6\\xad\\x84\\x20\\x13\\xa4\\x40\\xe1\\x99\\x4f\\xa7\\x62\\x6c\\x1b\\xe8\\x13\\xc1\\xd0\\x2f\\x66\\x34\\x50\\x22\\x72\\xa0\\x2c\\x99\\xae\\x0e\\x44\\x79\\x80\\x3f\\xca\\x81\\x77\\xa1\\x2a\\xb9\\x32\\x5d\\x44\\x4c\\xa7\\x68\\xb6\\xc2\\x8b\\x0c\\xd9\\x9e\\x0c\\xf9\\x63\\x8f\\x6d\\xcf\\x8d\\x8e\\x44\\x9c\\xc9\\xb5\\xb8\\x94\\x05\\x1a\\xb0\\xaf\\x96\\xc8\\xcf\\x56\\xb3\\x39\\x06\\x6c\\xf1\\xaa\\x85\\x22\\x2f\\xcf\\xc3\\xfe\\xa2\\x18\\x52\\x05\\xeb\\x00\\x70\\xc7\\xde\\x70\\x05\\x6f\\x84\\xee\\x8c\\xb3\\x57\\x45\\xe1\\x19\\xdc\\xaa\\xb6\\xeb\\xc5\\x3a\\xca\\x95\\x15\\x6a\\x7e\\xc9\\x62\\x28\\x5d\\xd5\\xc4\\x35\\x48\\xfa\\x88\\x7c\\x5a\\x1c\\x2f\\x5a\\xd5\\x5c\\xf9\\x80\\xd2\\x0e\\x18\\x2c\\xfe\\xe8\\x05\\x3c\\x0b\\x78\\x90\\x1b\\xb4\\x6f\\xe0\\x9b\\xe4\\xb0\\xd6\\xe0\\x97\\xd0\\xa5\\x74\\x85\\x86\\x50\\x0d\\xf6\\x57\\xc1\\xf0\\xaf\\x95\\x5f\\xe3\\xa9\\x0d\\xd6\\x08\\xd5\\xb0\\x0f\\xb4\\xcf\\xb4\\x6d\\x6b\\x2c\\xb8\\xd0\\x0e\\x66\\x55\\x5f\\x8e\\x2f\\xf6\\xc4\\x4a\\xc7\\x24\\x8b\\x93\\x16\\x9c\\x41\\x1a\\x3b\\x0c\\xba\\xbf\\x36\\x26\\xf1\\x88\\x05\\xad\\x84\\x07\\x6d\\xee\\x89\\xb5\\x74\\x63\\x67\\x77\\xc2\\x6a\\x65\\x54\\xbd\\xef\\xbd\\x01\\xfd\\x28\\xfe\\x30\\x62\\xa3\\xcb\\x1f\\x46\\xe2\\x79\\x63\\x2c\\x42\\x53\\xf3\\x1f\\x46\\xdf\\xb6\\x3b\\xfd\\x30\\x3a\\x83\\x09\\xf4\\xde\\x84\\x76\\x8d\\xd8\\xe9\\x99\\x63\\x33\\x2d\\x5b\\x13\\x88\\x20\\x79\\xb9\\x52\\x84\\xac\\x9b\\xa4\\x39\\xec\\x51\\xe9\\xdc\\xed\\x58\\xdb\\x9b\\x76\\x3e\\xaa\\x60\\xe7\\x28\\x74\\x4b\\x8c\\xf6\\x5f\\x6b\\x25\\xc9\\x32\\x1f\\xdd\\x46\\x91\\x9b\\xb3\\x2f\\xd5\\x70\\x75\\x76\\xdb\\x45\\x41\\x52\\x64\\xb8\\x39\\xc2\\x7e\\x5c\\xcc\\xed\\x9a\\x08\\xba\\x6b\\x3b\\x5b\\xcc\\x9b\\x94\\x87\\x5d\\x2a\\xe6\\x0d\\xaa\\x12\\xdb\\x22\\x6f\\xd8\\xc8\\x79\\x11\\x07\\xd6\\x23\\x17\\x2c\\xac\\x20\\x83\\x93\\x0b\\x87\\xfe\\x42\\x3c\\x0f\\x12\\xb6\\x9d\\x94\\x13\\x59\\xed\\xba\\xc3\\xd9\\x2f\\x55\\x9d\\x90\\x35\\xbc\\x46\\xeb\\xd9\\xc0\\x9c\\x91\\xac\\xeb\\x6d\\xee\\x20\\xaa\\xb3\\x90\\x70\\x9e\\x4a\\x72\\xb1\\x2d\\x6c\\x3e\\xb6\\xe7\\x4f\\x7d\\x5d\\x2b\\xe2\\x1d\\x89\\xf7\\x95\\x46\\xc3\\x4e\\x09\\xf2\\xa5\\x53\\xe9\\xc3\\xb9\\xca\\xae\\x01\\x54\\x01\\x32\\x99\\xe3\\xce\\xe8\\x51\\x7d\\x5f\\x69\\xe6\\xc2\\xe9\\x1c\\xa4\\x81\\x3c\\x3d\\xbf\\xf6\\xbc\\x8a\\x13\\x30\\xa6\\xd2\\x45\\x95\\x67\\x62\\x28\\xba\\x2e\\x0d\\x79\\xd5\\x81\\x55\\x6e\\xdc\\x4b\\xe8\\x58\\xc3\\x88\\x54\\x53\\x00\\xdd\\x6d\\x84\\x8c\\x68\\x6f\\xed\\xd6\\xde\\x6c\\xf1\\x8c\\xb3\\xac\\x81\\x49\\x4c\\xdd\\xf6\\xa7\\x6b\\x9b\\xbe\\x38\\xf7\\xa3\\x05\\x30\\xae\\xa6\\x3c\\xc4\\x0d\\x0f\\x01\\x3f\\xa7\\x98\\xc7\\x0b\\x02\\x74\\x45\\x97\\xa2\\x54\\x33\\x3c\\x2e\\x03\\x0c\\x66\\xf3\\x7c\\x28\\xcc\\xb5\\x28\\x94\\x06\\x99\\xaa\\xcc\\xdc\\x40\\x5e\\xb8\\xcd\\x00\\xad\\xfc\\x2e\\x73\\x1d\\xf2\\x89\\x74\\xb1\\xb4\\x3e\\x87\\xce\\x56\\x9b\\x7a\\xd4\\x17\\x13\\xfa\\x72\\x73\\x23\\x24\\xf4\\x08\\x12\\xd2\\x79\\x64\\xb8\\xad\\xfe\\xb9\\x92\\xc5\\x4b\\x54\\xa5\\xc3\\x20\\xad\\x01\\x72\\x13\\x21\\x26\\xf6\\xfb\\xfd\\xfb\\x41\\x9b\\x63\\x52\\x57\\xc5\\x3e\\x68\\x00\\xe9\\xca\\x13\\x33\\xfe\\x64\\x99\\xed\\x0a\\x24\\xa2\\xdb\\xd0\\x70\\xfc\\xaa\\xa5\\x5d\\x0f\\x9f\\xee\\x7b\\x27\\x62\\x5f\\x48\\x11\\x56\\xcb\\xcb\\x6f\\xa8\\x26\\xc5\\xbe\\x98\\xb0\\xb1\\xc3\\x9b\\x4a\\x3b\\xcd\\xb8\\x55\\xa7\\x88\\xa3\\xf7\\xaf\\x44\\x5a\\xe4\\x4b\\xcd\\x5c\\xdc\\x4d\\x22\\x08\\x13\\x0b\\x79\\xae\\x84\\x55\\x36\\x5f\\xe3\\x95\\x2c\\x6a\\x5a\\x8b\\x6b\\xbe\\xf9\\x08\\xa8\\xdb\\x1d\\x13\\xc2\\x10\\x26\\xf9\\x32\\x3e\\xbe\\x30\\x96\\xe4\\x95\\x20\\xaf\\x12\\xb7\\x9c\\x7b\\xde\\x53\\xa1\\xec\\xb5\\xae\\x72\\xd1\\x17\\xa3\\x6e\\x38\\x6e\\x00\\x1d\\x46\\x00\\x81\\x2f\\x2b\\xed\\xd7\\xce\\xb2\\x62\\x82\\x7e\\x1e\\x1e\\x69\\xdc\\x18\\x71\\x25\\xdb\\xf0\\xd0\\x1f\\x6b\\x0a\\xa9\\x4d\\xa8\\x35\\x6b\\x34\\xdf\\x04\\xff\\x02\\x2b\\x34\\x20\\x43\\x52\\x2f\\x3e\\xb8\\x61\\x29\\x14\\x18\\x9d\\x0d\\x47\\x78\\x04\\x29\\xf2\\xe5\\xc7\\xea\\xb5\\x2a\\xc9\\x46\\x3e\\xaa\\x69\\x9b\\x8a\\x6b\\x6f\\x35\\x46\\x21\\xa8\\x0d\\x85\\x0b\\x55\\x06\\x1e\\xc1\\xb0\\x8a\\x01\\x0c\\xae\\x64\\x12\\x1c\\xc2\\x10\\x36\\x68\\xc9\\xed\\x6b\\x85\\x3d\\xb1\\x8d\\x07\\x50\\xe3\\x70\\x1a\\xc0\\xf6\\x87\\x1b\\x2b\\x0d\\x83\\xe2\\x0d\\xef\\x8f\\xf5\\x59\\x44\\xe7\\x50\\xea\\x33\\x4a\\xf4\\xff\\x43\\x1e\\x14\\x11\\x8d\\x58\\x67\\x8a\\x36\\x4f\\x8a\\x9d\\x1d\\xf1\\x8e\\x74\\x4a\\x6c\\x6f\\x8c\\x26\\xc3\\xc8\\x92\\xe8\\xce\\x96\\xc3\\xc4\\xd1\\x7d\\x6e\\x59\\xd1\\xdd\\xe7\\x80\\x83\\x76\\x5d\\x7e\\x50\\x32\\x7b\\x57\\x16\\xd7\\x27\\x4b\\x59\\x3a\\x2d\\xd2\\x81\\xcd\\x7d\\xc9\\xb1\\x1d\\xb2\\x46\\xb6\\xb7\\x12\\x52\\x2a\\x82\\xc0\\x11\\x03\\x5a\\x00\\x5b\\x4b\\xef\\xb0\\x6a\\x0c\\xde\\xd7\\x5d\\x6b\\x36\\x30\\x13\\xff\\x78\\xfc\\x5f\\x1f\\xdf\\x1c\\x7d\\xf8\\xcf\\xe3\\x0f\\xe2\\xe4\\xfd\\xd1\\xdb\\x93\\x00\\xe2\\x1b\\x59\\x9f\\x53\\x9d\\x64\\x01\\x5f\\xeb\\xe6\\xd9\\x09\\xb7\\x03\\xca\\xc2\\xe0\\x49\\xf0\\xc5\\x26\\xb3\\x49\\x08\\xfc\\x39\\xa0\\x14\\x34\\x1d\\x31\\x15\\xb7\\x7b\\x82\\xfe\\x9d\\xe1\\x61\\x59\\x68\\xc4\\x0e\\xe3\\x75\\xe1\\x77\\x0a\\xdc\\x63\\x05\\x47\\xe2\\x4a\\xd4\\x48\\x7c\\xb6\\xf3\\x78\\xc2\\x56\\x8f\\x50\\x7a\\x5c\\xd0\\xb3\\x02\\x4c\\xde\\x14\\xf0\\x05\\x33\\x37\\xc9\\x40\\x88\\xca\\x98\\xca\\x7c\\xca\\xcf\\x9c\\xac\\x03\\x09\\xae\\xf7\\x63\\xdf\\x60\\xe0\\x50\\x54\\x72\\xb8\\x88\\x5b\\x3a\\xc8\\x7e\\xc0\\xd8\\x2f\\xb6\\x77\\x7c\\x80\\x15\\xec\\xa5\\x43\\xb5\\xc8\\x5e\\x9f\\xe3\\x2e\\x42\\x33\\x65\\xc5\\xe3\\x22\\x29\\x34\\x61\\xa1\\xa6\\x46\\x24\\x97\\x8a\\x8d\\x93\\xb4\\xa9\\x6a\\x45\\x20\\x68\\xe8\\xe8\\x90\\x0c\\xec\\x18\\xd6\\x0b\\xf5\\x7a\\xd0\\x8c\\x2c\\x14\\xcc\\x2c\\x0f\\x17\\xfc\\x09\\x42\\x9e\\x6c\\x58\\x63\\xeb\\xe3\\x14\\x38\\x64\\xda\\x01\\x12\\xf7\\xc6\\x16\\x9c\\x48\\x6a\\x8c\\x71\\x55\\xe3\\xc2\\xed\\x76\\xe9\\xd4\\x6c\\x0b\\x36\\xe2\\xe6\\xd4\\x34\\x48\\x47\\x59\\x66\\x47\\xc8\\x54\\x7c\\x2c\\x1c\\x44\\x41\\x0f\\x02\\xec\\x89\\xc1\\x78\\xe4\\xb1\\xf0\\xc2\\xe5\\x6b\\x2b\\xa6\\x86\\x49\\x87\\x6b\\x49\\x83\\xb4\\x2a\\x53\\x69\\x92\\x4f\\x00\\xe8\\xac\\x2b\\xf6\\x05\\x7d\\x83\\xd5\\xe3\\x27\\x79\\x20\\x8d\\x91\\xe9\\x1c\\x79\\x32\\x1d\\xf5\\xf8\\xc4\\x6e\\xd5\\xa4\\xa8\\x60\\x2f\\x66\\x55\\x9d\\x9b\\xf9\\x82\\x4d\\xdd\\xb2\\xcf\\x2b\\x6d\\x34\\x13\\x87\\x25\\x6e\\x3a\\xaf\\xf3\\xa1\\x07\\x4d\\x94\\xec\\x96\\x29\\x3e\\x12\\x8f\\xe1\\xde\\x6a\\x91\\xae\\x4c\\xcb\\x1a\\x01\\xc8\\xb4\\x20\\xa0\\xb6\\xf3\\xeb\\x08\\x0e\\x5c\\x9e\\x9a\\xc2\\xda\\xb5\\x5a\\xc8\\xbc\\x24\\x0f\\x8e\\x55\\x79\\xae\\x45\\x42\\x01\\x4f\\x1b\\x14\\x47\\x5a\\x53\\x2a\\x1c\\x51\\x4f\\x30\\x66\\x3f\\xa9\\x69\\x55\\xab\\xa4\\x2a\\x32\\x56\\x60\\xbd\\x9c\\xf7\\x44\\xae\\x5f\\xa1\\xff\\x59\\x70\\x34\\xbb\\xe4\\xf5\\x57\\xd1\\xcd\\x5a\\x1b\\x55\\x55\\x45\\xf6\\x95\\xb5\\x57\\x15\\x19\\x9e\\x3b\\x1c\\xaf\\x09\\xa6\\xc5\\x97\\x05\\x2c\\x18\\x2f\\x5b\\xc4\\x1a\\xda\\xd9\\x4d\\x8e\\x19\\xd9\\x20\\x2f\\xd3\\x62\\xa5\\xf3\\x0b\\xf5\\x1a\\x96\\xd3\\x61\\x50\\xf8\\xf9\\xd8\\x76\\x47\\xec\\x87\\xc9\\x36\\xd5\\x5b\\xd3\\x45\\xed\\xdd\\xdc\\xc4\\x0d\\x5a\\x18\\xf7\\xef\\x5b\\x96\\x65\\x38\\x04\\x4d\\x67\\x52\\x55\\xe7\\x90\\xd6\\xc1\\x38\\x01\\xf7\\xec\\x98\\x61\\x74\\x80\\x90\\xdc\\xc8\\x95\\x0f\\x10\\xec\\xc6\\x47\\x51\\x55\\x66\\xfa\\x88\\xc3\\xa8\\x61\\x05\\xe0\\xac\\x77\\xf4\\x91\\xee\\x52\\x0f\\x5d\\xd9\\x17\\x6b\\x5d\\x84\\xc4\\xb8\\x83\\x42\\x1c\\x24\\xe5\\x25\\x82\\x2b\\x2f\\xa3\\xd5\\x0b\\x67\\x88\\x96\\x9d\\xc1\\xf5\\xbe\\x17\\xe0\\x77\\x48\\x48\\xb9\\x56\\xba\\x81\\x7e\\x21\\x3a\\x0b\\x5e\\x6e\\xdd\\xb6\\x52\\x19\\x82\\x21\\x22\\xc3\\xab\\xd8\\xff\\x9f\\x49\\xec\\x7f\\x60\\xe4\\xb1\\x1b\\xd1\\xb8\\x63\\x4a\\x14\\xda\\x80\\xdb\\x68\\xd2\\x14\\x55\\xfd\\x3e\\x8a\\xfa\\x26\\x82\\xfa\\x1f\\x5b\\x39\\x51\\xe7\\x78\\xdd\\x04\\xdd\\xfb\\x7e\\xa2\\x0a\\x11\\x8b\\x89\\x09\\xa1\\xf7\\x99\\x2a\\x5a\\x2d\\x9d\\x36\\xfd\\x6b\\x4e\\x5c\\x93\\x48\\x2d\\xd4\\x3b\\x89\\x35\\x54\\x5c\\x32\\x3b\\xb7\\xaa\\xcb\\x94\\x42\\xb5\\xe2\\x76\\x00\\xfd\\xd2\\x0a\\x0f\\x5b\\x4c\\x58\\xc4\\xc0\\x61\\x73\\x40\\xd6\\xed\\x0c\\x0d\\xf1\\x1c\\x11\\x59\\x84\\x30\\x58\\x53\\x55\\xe7\\x6c\\x90\\xc0\\x02\\x84\\x26\\x20\\x50\\x5f\\x95\\x26\\xaf\\x55\\x71\\x1d\\x9e\\xbf\\xa8\\x1e\\x6c\\x01\\x69\\x55\\x96\\xe8\\xfd\\x4f\\x8d\\x4e\\x54\\x51\\x95\\x33\\x7f\\xe1\\x44\\xa6\\xd7\\x0b\\x65\\x51\\xa3\\x1d\\x6b\\xb9\\x54\\x20\\x6c\\x5b\\x7b\\xd5\\x3c\\x23\\x27\\xc1\\x10\\x32\\xd9\\x27\\x1a\\x48\\xa7\\x2b\\x0e\\x04\\x8f\\x1e\\xf9\\x78\\x24\\x5c\\x43\\x66\\xe0\\xed\\xeb\\x1b\\x7b\\x19\\x1e\\x25\\x49\\x7a\\x21\\x1b\\xa9\\xd2\\xdb\\xc7\\x60\\xe4\\x3c\\x99\\xce\\xdd\\xd8\\x50\\x44\\xc7\\x6e\\x08\\x38\\x90\\x7f\\x4d\\xad\\x4c\\x3a\\x47\\xb6\\xf1\\xee\\x42\\xd5\\x74\\xa7\\x49\\x02\\x3f\\x5f\\x5f\\x07\\xb1\\xcd\\xb0\\xf2\\xf4\\x0e\\xbd\\x6f\\x55\\x90\\x39\\xb9\\x18\\x47\\x7a\\x29\\x5b\\xb3\\xae\\x16\\x7c\\xdf\\x71\\xff\\x7e\\x7c\\x52\\x5b\\x2b\\x11\\x4a\\x1a\\x1e\\xf8\\x6b\\xb9\\x09\\xb6\\xa9\\xee\\x86\\x6c\\xf3\\x1b\\x70\\x51\\x01\\xe4\\xb0\\xbe\\x7f\\x5f\\xdc\\xe3\\x56\\xd6\\x7b\\xb8\\x15\\x2c\\xfb\\x97\\xa4\\xdc\\xf1\\x38\\xa7\\x73\\xe6\\xb5\\x3e\\xdd\\x54\\x98\\xea\\xf8\\xca\\x18\\xb5\\x0b\\x41\\xa5\\x00\\x37\\x52\\x83\\xd0\\x95\\xaa\\xbd\\xb8\\xf1\\x34\\x2f\\x1e\\xa0\\xe2\\x04\\x0e\\x5b\\x0f\\x62\\x1a\\x63\\x9c\\xa6\\x3c\\xe6\\xad\\x92\\xc6\\x2f\\x74\\x4e\\x5f\\x17\\x37\\xe2\\x53\\x7b\\xdb\\xfe\\xf1\\x1a\\x0f\\xe3\\xcd\\x3d\\x84\\xaf\\x8f\\xdf\\xaa\\x2b\\xd3\\x13\\x0b\\x55\\xc3\\x72\\x9b\\x57\\x9a\\xb4\\x58\\x18\\x1c\\x83\\x47\\x4a\\x2e\\xd4\\x6b\\xab\\x0a\\xa5\\x8e\\xfa\\x53\\x38\\xc6\\x95\\xeb\\xd9\\x80\\x15\\x63\\x8c\\x17\\x10\\x94\\xea\\xda\\x62\\xdb\\x22\\x71\\x70\\x0e\\x83\\x1d\\x78\\x68\\x0d\\xa8\\xac\\x7a\\x02\\xd9\\x0e\\xaa\\xd8\\xaf\\xc4\\x6a\\x29\\x80\\x25\\x05\\x01\\x6d\\xab\\xa9\\xb0\\x5a\\xee\\x76\\x21\\x1d\\x73\\xdb\\x76\\xbb\\x68\\xbf\\xc3\\x52\\xf6\\x38\\x13\\x1c\\x68\\x3c\\x63\\xf4\\xd5\\x78\\x6a\\xd0\\x5e\\x6c\\xbc\\x7e\\xe2\\x22\\x45\\x47\\xb0\\xd3\\x74\\x5d\\x3d\\x24\\x4a\\xac\\xd8\\xa5\\x90\\x0c\\xd4\\x80\\xeb\\xfd\\xad\\x2b\\xe9\\x94\\x09\\x76\\x8c\\xe2\\x0a\\x08\\xa3\\x95\\x6b\\xbb\\x9c\\x6d\\x3b\\x05\\x16\\xe8\\x6d\\x74\\x99\\x81\\xf7\\x3e\\xb2\\x75\\x80\\x71\\x2f\\xc9\\x4b\\xa2\\x9f\\xa4\\xaa\\xc5\\x82\\xad\\x85\\x16\\x14\\x23\\x89\\x88\\x32\\x2f\\x45\\x2a\\x29\\x68\\x89\\xc3\\xf1\\xce\\xcb\\x05\\x00\\x77\\xd7\\x95\\x02\\xf4\\x0e\\x6b\\x40\\x41\\xbc\\x49\\x68\\x4c\\xc6\\x0f\\x23\\xe8\\xd7\\x3d\\x7f\\x41\\xe5\\x13\\xb7\\xc7\\xcd\\xde\\x06\\x95\\xc2\\xbd\\xbb\\x75\\x16\\xb1\\xd5\\xb5\\x79\\x64\\x35\\x18\\x03\\xd9\\x3c\\x95\\x61\\x3f\\xec\\x86\\xea\\x5a\\x65\\xb4\\x82\\xec\\xe6\\xa4\\x52\\x3b\\x28\\x05\\xd8\\xd5\\x1e\\x9f\\x0d\\x01\\xbe\\x27\\x0c\\x37\\x9b\\x61\\xa4\\x86\\x66\\xb3\\xdb\\x6b\\xed\\xfe\\x5b\\xad\\xc6\\x94\\xb3\\xb3\\x23\\xde\\x38\\xfd\\x27\\x9c\\xbc\\xf3\\x0c\\x8e\\xde\\x14\\x49\\x02\\x9d\\x8a\\xfe\\x54\\x75\\xd5\\xb7\\x86\\x3c\\x01\\x3f\\x76\\x0a\\x47\\xdb\\x24\\x86\\x4f\\x42\\x23\\x35\\x52\\xd1\\x70\\x81\\x90\\x3e\\xf1\\x82\\x03\\xfe\\xde\\xe3\\x45\\x0a\\xf5\\x99\\xb3\\x35\\xab\\x13\\x3d\\x3b\\x86\\x5e\\xaa\\xcb\\x37\\x7c\\xd0\\x1c\\x8b\\x4f\\x58\\xf9\\xcc\\xee\\x0c\\xc1\\x58\\x78\\xf2\\x2f\\x0a\\x31\\x93\\x4b\\xda\\x79\\x2f\\xe7\\x55\\xa1\\xd0\\x7c\\xbb\\x6f\\xbb\\x40\\x50\\x67\\x18\\xeb\\xa8\\x85\\xef\\xf5\\xc5\\x6e\\x0f\\x72\\xb9\\x4d\\x27\\xc1\\x42\\x85\\x17\\x62\\x08\\x1d\\xa1\\x0e\\xb8\\x88\\x34\\xc1\\x4a\\xd9\\xb5\\x2b\\x65\\xb7\\x8d\\x65\\xfd\\xb0\\xeb\\x09\\xef\\x8b\\x1f\\xca\\x4f\\xf9\\x0f\\xbb\\x67\\x21\\x8b\\x0a\\xc8\\xec\\x0b\\x36\\x6c\\xfb\\x0f\\xf3\\x1c\\xfc\\xbc\\x43\\xd6\\x0c\\x00\\x5b\\xb1\\xd3\\x9b\\x42\\x77\\x51\\x47\\xc1\\xf4\\x10\\x60\\xff\\xd0\\x62\\xff\\x50\\x3c\\x87\\x21\\x20\\xa4\\x1f\\xfa\\x9e\\xfa\\xa9\\xa0\\x46\\x3d\\x2e\\x2e\\xdc\\x57\\xa3\\x04\\xce\\x65\\xe3\\x8a\\xcc\\x15\\x71\\x9e\\x7a\\xc8\\x99\\x82\\xfd\\x14\\x1f\\xa8\\x40\\xa3\\x47\\x10\\xca\\x48\\x27\\x34\\x97\\xa8\\x64\\x42\\x62\\xf9\\x7d\\xae\\x4a\\x24\\x18\\x0c\\x80\\xc0\\x31\\xa1\\xa6\\xd6\\xec\\x2d\\x50\\xbe\\xc6\\x84\\x65\\xb5\\x65\\xdf\\xac\\x07\\xfa\\x56\\x7d\\x19\\xae\\x56\\xe6\\x68\\x18\\x45\\x26\\x3a\\x34\\x33\\xbb\\xb7\\xe9\\x7c\\xe4\\x88\\x3b\\xe2\\xe3\\xe9\\xf9\\xd1\\x26\\x7c\\x38\\xc0\\x4c\\xde\\xef\\xf7\\xc4\\xa8\\x1b\\x31\\xfe\\x7b\\x21\\xc6\\x6d\\x22\\x5f\\xa0\\xb3\\xd3\\xa1\\x5e\\xc7\\x54\\xe2\\x41\\x5a\\xe4\\xcb\\x07\\xa8\\x7e\\xae\\x59\\x09\\x4b\\x86\\xbc\\x6c\\xe2\\xb1\\xa0\\x90\\x7a\\x72\\x5d\\x24\\x25\\x65\\x9b\\xd5\\xdc\\x62\\xac\\xe0\\x8d\\x36\\x28\\x0b\\x47\\xa9\\xd6\\x64\\x2f\\xb4\\x44\\x61\\x4d\\x3a\\x8b\\x7e\\x77\\x19\\xf9\\x38\\xf3\\x86\\x40\\x0a\\xda\\x74\\x2a\\x5e\\xd3\\x83\\x6d\\x14\\x1a\\xa0\\x50\\x8b\\x2e\\xed\\x53\\x7e\\x16\\x1e\\x91\\x6d\\xc8\\xf7\\xfa\\x7c\\xe0\\x46\\x0a\\x4f\\xa4\\x0b\\xbf\\x2a\\xad\\xdd\\x04\\x27\\xd1\\x81\\xbb\\xcb\\x11\\xb3\\xc2\\x45\\x9f\\x04\\x95\\x92\\x45\\xcb\\x3a\\xa6\\x8a\\xcc\\xaa\\x69\\xb6\\xad\\x24\\x65\\x1b\\xdc\\x24\\xdc\\xc3\\x51\\x05\\x81\\x7d\\x81\\xc1\\xdd\\x77\\xd3\\xb1\\x2f\\x4c\\x75\\xbb\\xe9\\x82\\x81\\x61\\x6e\\x22\\xfb\\xc5\\xb9\\xd3\\x81\\xd3\\x25\\x39\\x7a\\x44\\x9e\\x0f\\xa6\\x79\\x99\\x25\\xc3\\x86\\xa4\\xf0\\x99\\xc0\\x7e\\x16\\xcf\\x09\\x97\\x00\\xe8\\xe7\\x78\\xe4\\x81\\xf7\\x62\\x91\\x4f\\x9f\\x43\\xf1\\x00\\x04\\xf0\\xe5\\xc0\\x54\\x3d\\xb1\\x18\\x90\\x3f\\x27\\x9b\\xfd\\x51\\x06\\x75\\x68\\x81\\xf2\\xf8\\x0b\\xba\\x9a\\x71\\xe6\\x06\\xb7\\x01\\xf4\\x52\\x5d\\xbe\\xb7\\x63\\xf1\\xb9\\x27\\x46\\x67\\x3d\\x91\\xf1\\x3e\\x1e\\x03\\xc2\\x36\\x7a\\x22\\x43\\x61\\x2c\\x6c\\xdc\\x54\\xa1\\x1d\\x5e\\xc6\\x87\\x7e\\x44\\xe5\\xde\\xe2\\xbc\\xa1\\x2e\\x80\\x53\\x09\\x16\\x09\\x27\\xda\\xe2\\x40\\xb3\\xca\\x33\\x62\\x5b\\x86\\x39\\xa1\\xd6\\x6f\\xbb\\x91\\xa8\\x93\\xa1\\xee\\x64\\xbd\\x1d\\x52\\xb9\\x60\\x43\\x1e\\xb5\\x8d\\xcd\\x2c\\xb0\\x17\\xd0\\x08\\xf4\\x27\\x68\\x82\\x66\\x85\\x38\\x0a\\x87\\x1a\\xc5\\xa4\\x9e\\x83\\x63\\x61\\x7f\\xa6\\x90\\x69\\x0c\\xdc\\x6d\\x8d\\x0f\\xdb\\x2c\\x69\\x10\\x84\\xbb\\x30\\xc7\\xc3\\xb9\\xc0\\x37\\x89\\x34\\x1f\\xd5\\xed\\x1d\\x08\\x5e\\x0d\\x34\\x55\\xdf\\x99\\x32\\x32\\x9d\\xfb\\xad\\x4b\\x07\\x0b\\xdf\\x32\\xde\\x36\\x8d\\x77\\xc4\\x03\\x83\\x25\\xb1\\x16\\x1f\\xf3\\x6b\\x5a\\x7e\\x1d\\xaf\\xf9\\x01\\x21\\xe4\\x15\\xe2\\x08\\xb1\\x45\\x05\\x8f\\x1c\\x2d\\x50\\xf0\\x91\\x22\\xbd\\xd9\\x91\\x9e\\x08\\x76\\x9d\\xff\\x1d\\x84\\x9b\\x1a\\xfc\\x4d\\x08\\x87\\xdb\\xc0\\xaf\\x18\\xd5\\x89\\x9d\\xae\\xd8\\x11\\x76\\xb1\\x5c\\x19\\x32\\x87\\xce\\x53\\xf2\\xeb\\x2a\\xe4\\x72\\x89\\x7a\\x75\\x7b\\xd5\\xe6\\xb4\\x1b\\x29\\xc5\\x65\\x95\\x64\\xfa\\x5d\\xc8\\x7a\\xa6\\x6a\\x51\\x45\\x13\\xab\\xae\\x4c\\x2d\\x61\\x81\\x24\\x6b\\x97\\x48\\x1b\\xb4\\x6e\\xe8\\x5c\\x3e\\x0c\\xad\\x00\\x10\\x06\\x12\\xff\\xd7\\x81\\x58\\xb5\\xa4\\x05\\xd2\\x1a\\x00\\x21\\x2f\\xb3\\x3c\\x95\\x61\\x37\\xa7\\x78\\x2c\\x6e\\xed\\xad\\xd7\\x02\\xe5\\xda\\xf6\\x31\\x41\\xe3\\xcc\\xf9\\x4a\\x0b\\x6c\\x38\\x63\\xb7\\x6f\\xb4\\xdb\\xe8\\x0e\\xc4\\x2f\\xb2\\x28\\x34\\xbe\\x88\\xc6\\x31\\x1d\\x53\\xb4\\x20\\x41\\x8b\\xfd\\x4c\\xbb\\x1b\\x57\\x06\\x4b\\x8a\\x32\\x75\\x25\\x53\\x0c\\x4e\\xcb\\x06\\x24\\x6b\\x51\\x16\\x08\\x86\\xbf\\x08\\x65\\xf1\\xa9\\x11\\x88\\xba\\x50\\xe5\\xcf\\x64\\xdf\\x28\\x23\\xf3\\x27\\x67\\x25\\x62\\x13\\xac\\x58\\xce\\xe5\\xef\\x8d\\xa3\\x5b\\x6e\\x9b\\x6c\\x77\\x15\\xf9\\xbe\\xa2\\x08\\xd7\\xc8\\xf2\\xbb\\x3d\\x31\\xa1\\x84\\x09\\x27\\x58\\x15\\x47\\x5d\\x2d\\x5e\\x2e\\x96\\xcc\\x47\\xa1\\x12\\xf3\\xba\\x89\\xfd\\x8a\\xd1\\xd1\\x3c\\x51\\xc8\\xae\\xe8\\x07\\x3f\\x27\\x4e\\x5f\\x40\\x80\\x02\\x8c\\xfa\\x16\\xb6\\x45\\xc9\\x54\\x8d\\x96\\x80\\xdd\\x4d\\xe8\\x8b\\x6f\\x85\\xc8\\xc6\\x37\\x43\\xbf\\x5d\\x3b\\x08\\x24\\x8c\\x7b\\x56\\xd9\\x26\\x6c\\x48\\xed\\x41\\x9e\\x89\\xbe\\x90\\x83\\x3c\\x0b\\xad\\x03\\x41\\x62\\x72\\xb6\\xf8\\xa4\\xc4\\x53\\x65\\xa6\\x81\\xe3\\x91\\x62\\x97\\x42\\x13\\xc7\\x4b\\x66\\x20\\x5e\\x91\\x4e\\xb1\\x72\\xc6\\x43\\xe4\\x32\\x81\\x2a\\x4a\\xba\\x66\\x93\\xc4\\x27\\xa3\\x79\\x0f\\x6e\\xb8\\x8f\\xcc\\x49\\x9e\\x29\\xcb\\x53\\xf0\\x19\\x84\\x80\\x47\\xe2\\xfa\\x5e\\xbb\\x13\\x87\\x43\\x57\\x83\\x0f\\xf4\\xe8\\xac\\xec\\xee\\x8f\\x63\\x31\\x4a\\xc3\\xb0\\x26\\x64\\x90\\xd5\\xed\\xc5\\xdc\\xa8\\x55\\x46\\xc0\\x0a\\x7a\\xd9\\x10\\x89\\x9d\\x8c\\xeb\\x06\\x01\\x04\\x26\\x44\\x1a\\x95\\xeb\\x03\\x8e\\xc8\\xa0\\x97\\x56\\xb7\\xc6\\x92\\xb3\\xdb\\xd9\\xf8\\x50\\x4e\\xf1\\x40\\xdb\\xa9\\x1f\\x0b\\x00\\x7b\\xb5\\x87\\x7a\\x34\\xd7\\x08\\x8f\\x65\\xa4\\xd9\\x71\\x05\\xd6\\x95\\xde\\x34\\x14\\xb7\\x9b\\x47\\x1c\\x1f\\xa0\\xb0\\x06\\xd2\\xd6\\xa0\\x65\\xe3\\xac\\xe0\\xdb\\x16\\x62\\x33\\xb8\\xe3\\x32\\xfb\\x76\\x60\\x74\\x18\\x60\\x3e\\xf6\\x51\\x69\\x4f\\x75\\x06\\x3d\\x1c\\xd0\\x42\\x49\\xaf\\x51\\x1a\\x11\\x92\\xd3\\x5a\\xe3\\x01\\x89\\x78\\x9b\\x16\\x49\\x4a\\x91\\x10\\x90\\xd1\\xe0\\x64\\x54\\x35\\x05\\xb8\\x9e\\xac\\x0c\\x5a\\x7d\\x4c\\x2a\\x38\\x48\\x50\\xf4\\x3c\\x75\\xc9\\xf4\\x88\\x71\\xd6\\xfd\\x8e\\x60\\xe3\\xd9\\xa1\\xcf\\xb1\\xca\\x22\\x7a\\x2d\\xa7\\x45\\x9e\\x02\\x77\\x75\\xb3\\xf5\\xc1\\xeb\\xab\\xc9\\x68\\xd9\\x1f\\x13\\x62\\x73\\x86\\xc0\\x30\\x33\\xb6\\x2e\\xc2\\x5a\\xdd\\xef\\xa7\\xf4\\x0d\\x24\\xfe\\x75\\x9a\\x76\\x0b\\xa1\\x41\\xd7\\xf7\\x5a\\x08\\xbb\\x45\\x06\\x0d\\xb5\\x8a\\xbe\\x46\\x28\\x30\\xaf\\xf3\\x4b\\x52\\xf7\\xd1\\xc0\\xb4\\xf0\\xca\\x80\\xc6\\xfb\\xeb\\xfb\\xaa\\x77\\x83\\xa8\\x9a\\x10\\x49\\x0e\\x6c\\xf2\\xc4\\x75\\x70\\xd1\\x16\\x1b\\x05\\x74\\x01\\x88\\x2f\\xc6\\xa4\\xf7\\x20\\xf8\\xcf\\xc7\\x24\\xa0\\xda\\xdc\\xe7\\x51\\xee\\x8b\\x71\\xab\\x60\\x1e\\x82\\xb3\\x15\\x02\\x46\\xb1\\x2e\\xe8\\x6e\\x10\\x11\\xe2\\xae\\xd1\\x50\\x21\\x7a\\xfb\\xed\\x59\\x80\\xcc\\xcd\\x8d\\x63\\x2b\\xcd\\x1e\\xfd\\x7b\\x28\\xf8\\xf3\\xee\\xf3\\x26\\x0a\\x41\\x56\\xc4\\x94\\xd6\\x1f\\x5d\\xb9\\x75\\xe6\\xb6\\x17\\xb9\\x5e\\xc9\\x82\\xef\\x85\\xb4\\xdd\\x5c\\xa4\\xe6\\x90\\x0f\\x15\\x4b\\x0e\\x69\\xad\\x54\\x39\\x10\\xbf\\x54\\x45\\x86\\x41\\xa0\\xa7\\x64\\xed\\xa0\\xae\\xe4\\x62\\x59\\xa8\\x1e\\x7a\\xd3\\xa5\\x72\\xa5\\x95\\x58\\xac\\x0a\\x93\\x2f\\x0b\\x25\\x8a\\x6a\\x86\\xa6\\xeb\\x64\\x46\\x63\\xaa\\xe0\\x3e\\xcc\\x0a\\x1d\\x00\\x22\\x40\\x80\\xdd\\xf2\\x81\\x6a\\x23\\x7e\\x61\\x63\\x54\\x78\\x4c\\xad\\x7f\\x1f\\x00\\x08\\x7c\\xbd\\x72\\xed\\xfc\\x8b\\x92\\x95\\x26\\xa3\\x4a\\x2c\\x9a\\xeb\\xe0\\x66\\xd0\\x68\\x55\\x4c\\x43\\x5b\\x0c\\x82\\x1c\\xc8\\xb2\\x4e\\x93\\xa0\\xea\\x19\\x3a\\xd5\\xb2\\x35\\x38\\xfd\\x06\\x62\\xdf\\xc8\\xb2\\xad\\xbc\\xcc\\x5c\\x85\\x6a\\xd0\\x42\\xec\\x8f\\x98\\x5b\\x93\\xe6\\x21\\xd8\\x12\\xd0\\x44\\x38\\xb4\\x40\\xf3\\x18\\x05\\xec\\xfb\\x3b\\x91\\x72\\x35\\xef\\x40\\xe9\\xab\\x18\\x85\\xe2\\x6c\\x70\\xdf\\xd8\\x98\\x5b\\x8a\\x2c\\xce\\x6b\\xaf\\x31\\x57\\xe4\\xb8\\x25\\x6b\\xa3\\x32\\x31\\x21\\x79\\xd3\\x3e\\x4d\\xd1\\x83\\xad\\x20\\x32\\x98\\xa1\\x5d\\x86\\xcc\\x01\\x85\\x5e\\xf1\\x85\\xa5\\x6e\\x9d\\xab\\x97\\xdc\\x60\\xfb\\xf8\\x10\\x0f\\xd7\\xdf\\x33\\x4c\\xcc\\x89\\xbf\\x36\\x4c\\x58\\xe8\\x20\\xa1\\xae\\xdf\\xdc\\x08\\xfe\\x16\\xea\\x53\\xac\\xfb\\x4a\\x63\\x40\\x75\\xc3\\x17\\x2e\\x74\\xc8\\x61\\x22\\xff\\x5e\\x8a\\xb7\\x27\\x0c\\x47\\xf8\\xad\\x43\\xf5\\xb6\\x0a\\xb6\\xb5\\x6f\\xd8\\xf9\\xba\\x3d\\xa8\\x2c\\xc6\\x6b\\x2b\\x23\\x70\\xfa\\x01\\x01\\xea\\x22\\x0f\\xcf\\x94\\x58\\xb5\\xd9\\xe7\\xb7\\x55\\x02\\xa5\\xbe\\xb3\\xe7\\xa5\\xba\\x32\\x51\\xf7\\xf1\\xba\\x7a\\x8b\\x5d\\xaf\\x7d\\xff\\x5b\\x7b\\x7b\\x5c\\x66\\x2d\\x1d\\xb6\\x78\\xbf\\x15\\x2f\\x50\\x21\\x58\\x48\\x72\\x40\\x48\\xba\\xad\\x5d\\xf8\\xda\\xf8\\xb8\\x55\\x88\\x9b\\x34\\xa4\\xbe\\xd2\\xbf\\x62\\x24\\x1f\\x5f\\xae\\x1d\\xf2\\xff\\xf6\\xb2\\x75\\x2e\\x5a\\xdb\\x62\\x14\\x78\\x14\\xac\\x8c\\x6a\\x1e\\x21\\x72\\xcd\\xc1\\x87\\x06\\xe2\\x35\\xf9\\xb0\\xa3\\x4b\\xbb\\xb4\\xc9\\xee\\xe4\\x48\\x66\\xea\\x75\\xe8\\xbd\\xb9\\x46\\x9b\\x7c\\x0e\\xc1\\x0b\\x10\\x59\\x52\\xe0\\x60\\x12\\x2a\\x2b\\xf2\\x43\\xe0\\xd9\\xbb\\xe6\\x97\\xa0\\xd9\\xda\\x02\\xa5\\x43\\x62\\x0d\\x6e\\x20\\x7a\\xe8\\xc5\\xce\\xce\\xe7\\x8d\\xe3\\xc9\\x86\\x91\\xfe\\x57\\x4e\\x25\\xff\\x9b\\xc7\\x91\\x6f\\x14\\xdb\\xf8\\xe4\\xd2\\xb8\\x65\\x5c\\xdb\\xb0\\x9b\\x47\\x1c\\x1a\\x1a\\x7e\\xf2\\xef\\x2b\\x30\\x87\\x74\\x07\\xb0\\x26\\x71\\x58\\x2d\\x62\\x38\\xa0\\x18\\x77\\xc0\\x8f\\x2a\\x9c\\x73\\xbe\\x2a\\x46\\xb4\\xce\\x4c\\x0b\\x20\\x6b\\x57\\x7a\\xc7\\xf5\\x38\\xdb\\x85\\xc5\\x16\\x63\\x31\\xc5\\x87\\x8e\\x5a\\x1b\\x1a\\xb4\\x9e\\xb7\\xbd\\xf5\\x6b\\x59\\x9b\\x15\\x9f\\x4d\\xc3\\xeb\\xf6\\x30\\x0e\\x7d\\x6c\\xf0\\xd5\\x14\\xd4\\x82\\x3e\\x14\\xd6\\x77\\x35\\x7a\\x65\\x75\\x7d\\xc0\\xbe\\x81\\xc4\\xbe\\xe5\\x1e\\x01\\x6b\\xb7\\xdc\\x1f\\x7c\\xed\\x2c\\x7c\\xaf\\x8d\\x80\\x98\\x3a\\xd6\\xef\\x8d\\xfc\\xa9\\x18\\x0f\\xcc\\xa1\\x01\\x1b\\x25\\xdc\\x0b\\xcc\\xdb\\xba\\xcd\\x0a\\xad\\xd4\\xb6\\x66\\x44\\x17\\x8e\\x69\\x04\\xe2\\xab\\x44\\xd9\\x46\\x8e\\x4d\\x77\\x4a\\x76\\x93\\xf5\\x01\\x4b\\x5a\\xf7\\x0d\\x2a\\x75\\x64\\xdc\\x26\\xf7\\xce\\xc6\\x95\\xe7\\x1f\\xeb\\xdb\\x20\\x94\\xb0\\x17\\xc5\\x73\\x7e\\xef\\x84\\x1d\\x12\\x39\\x9b\\x3d\\x4f\\x37\\x28\\x59\\xff\\x55\\x6f\\xc1\\xe8\\x56\\xca\\x12\\x1e\\xa1\\x1b\\x39\\x09\\xb2\\x7b\\xc8\\x5c\\x6c\\x47\\xae\\x85\\xeb\\x2f\\x39\\x2d\\x1b\\x9e\\xb2\\x07\\x62\\x79\\xe0\\xba\\xb2\\xec\\xad\\xe5\\xaf\\x7b\\xd2\\xc6\\x66\\x1a\\xcb\\x6f\\xf3\\xff\\x44\\x87\\xdd\\x65\\xec\\xf9\\x19\\x5e\\xc8\\xac\\xd0\\x0b\\x00\\x1b\\x5e\\xf7\\xbc\\x0d\\x3b\\x97\\xae\\xea\\xb0\\x6f\\x6b\\x97\\x04\\xf3\\xc6\\xfe\\xc7\\xd6\\x6e\\x6c\\xe2\\xcd\\x9a\\xca\\xc0\\x29\\x9c\\x9f\\xf4\\x0a\\x5f\\xf3\\x22\\x75\\xaa\\x5d\\x45\\x7c\\x59\\x99\\x68\\x45\\x7a\\xb4\\x8f\\xe8\\xb0\\x4e\\x71\\x5e\\x10\\x0d\\x7c\\xe8\\x88\\xaf\\x37\\x64\\x99\\xe1\\x13\\x7e\\xa8\\x0e\\x71\\xfb\\xa1\\x16\\x15\\x80\\xcf\\x4d\\x63\\x53\\xa3\\x70\\x22\\x6d\\xde\\xd5\\xdc\\xc3\\x71\\xac\\x32\\x1d\\x7a\\x31\\x45\\x95\\x62\\x9d\\x09\\xf5\\x9c\\x20\\xec\\xfd\\xae\\xbf\\xf5\\x24\\x93\\xae\\xea\\x6e\\x48\\x8d\\x56\\xb3\\x10\\xca\\x20\\xc3\\x90\\x23\\x53\\x13\\xfe\\x14\\xea\\x05\\x65\\x40\\x6e\\x3b\\xca\\x42\\x8f\\x41\\x7b\\x66\\x26\\x17\\x2a\\x7c\\xc6\\xf5\\x3b\\xb0\\x04\\x19\\xa9\\x15\\x47\\x24\\xc7\\x8d\\x58\\x02\\x2e\\x7d\\xa2\\x9a\\xd8\\xf8\\x82\\xeb\\x5a\\xfc\\x9a\\x5d\\x42\\x3b\\xa1\\xb5\\x2e\\x6d\\x06\\x13\\x76\\xcb\\x2b\\xb8\\xd7\\xbc\\xbd\\x2b\\xa0\\x25\\xe3\\x4c\\x32\\x37\\x38\\xfc\\x41\\x37\\xde\\x50\\x6c\\x99\\x24\\x5d\\xc4\\x71\\x54\\xd3\\xc5\\x80\\x43\\xb2\\xa2\\x7f\\x1f\\xa7\\x60\\xfc\\x90\\x30\\x72\\x4d\\x24\\xc0\\x7a\\xef\\xbd\\xd6\\x60\\x36\\x01\\x29\\xba\\xcc\\x6e\\x7b\\x80\\x1b\\x74\\x7d\\x0a\\x6f\\xd7\\x37\\x86\\xca\\xf0\\x14\\x1a\\x52\\xb9\\x67\\x67\\xaa\\x04\\xa1\\x3c\\xc6\\xc5\\xf3\\x8c\\x16\\x24\\x31\\xf6\\x50\\x94\\xe7\\x69\\x47\\xd8\\x0b\\x6c\\x1a\\xef\\x9f\\x5e\\xfd\\xfc\\x4a\\xfc\\x7a\\xfc\\xfa\\xfd\\xf1\\x87\\xd0\\x23\\x0b\\x30\\x96\\x46\\xfd\\x94\\x67\\xf9\\x09\\x05\\x80\\xd4\\x49\\x55\\x67\\xa1\\x67\\x96\\x7b\\x74\\x88\\xec\\x41\\x21\\x33\\x8c\\x31\\x1c\\xc4\\xb5\\xe8\\x14\\xa6\\xee\\x44\\x5e\\x8f\\x76\\xc5\\x50\\x68\\x9d\\xf6\\x6d\\x00\\x21\\x6e\\xda\\x00\\x96\\xf4\\x50\\x25\\x96\\x09\\x59\\x3f\\xa4\\x5b\\x7b\\x70\\xb2\\xef\\xc0\\x14\\xbc\\xc2\\xc5\\x64\\x56\\x92\\x51\\x4c\\xe4\\x30\\xdf\\x87\\x2b\\xe6\\xb1\\x9b\\x26\\xce\\x67\\xd4\\x41\\x65\\x1d\\x56\\xe0\\x3a\\xca\\xd5\\x51\\xaf\\xd4\\x23\\x60\\x85\\xba\\x50\\x05\\xda\\x6a\\x8a\\x43\\xd1\\xa9\\x4d\\x81\\x6f\\x98\\xd2\\x18\\xe4\\x56\\x5e\\xb4\\x23\\xc0\\x54\\x12\\x5b\\x0f\\x7a\\x43\\xc6\\xb5\\x61\\xec\\xfa\\x57\\xac\\x26\\x79\\x96\\xbf\\x43\\xc6\\xc9\\x17\\x9f\\x51\\xdc\\x97\\x3c\\xcb\\xdf\\xcb\\xda\\x1c\\x19\\x3b\\x6f\\x4d\\x97\\x6f\\x37\\x0f\\x5b\\x62\\x1d\\xd4\\xbf\\x30\\x25\\xc4\\x11\\xd6\\x66\\x04\\xc3\\x39\\xd0\\x84\\xa4\\xe8\\x53\\x80\\x8c\\x01\\xe6\\x23\\x8a\\xa7\\x9e\\x87\\x0f\\x23\\x53\\x09\\xdc\\xe4\\x1a\\x11\\x28\\x2c\\xb0\\x7b\\x63\\x0b\\x07\\x04\\x34\\xe7\\x2e\\xdd\\x99\\xa0\\x09\\x6f\\xa7\\x1b\\xdc\\x35\\xe4\\xcd\\xbd\\x31\\xec\\x6c\\x1e\\xec\\x8c\\x8d\\x26\\xbe\\xb7\\xf9\\x7b\\xff\\x66\\xf3\\xcd\\x3b\\x10\\x67\\xbc\\x74\\xc8\\xbf\\xf7\\x7d\\x55\\xbb\\x78\\xf3\\x2c\\xaf\\x69\\x79\\xca\\x82\\x86\\x1e\\x0d\\x84\\xac\\x6b\\x18\\xb9\\x3f\\x2a\\x31\\x37\\x66\\xb9\\xbf\\xb3\\xc3\\xcf\\xf3\\x0c\\xaa\\x7a\\xb6\\x43\\x71\\xfb\\xf4\\x8e\\xa9\\x9f\\xc1\\xff\\xfe\\xe8\\xe1\\x60\\x6e\\x16\\xc5\\xba\\x7b\\x19\\x9d\\x4b\\x51\\xbb\\x92\\x6b\\x5a\\x60\\x78\\x8b\\xd1\\x15\\xf9\\x62\\xc9\\x11\\x87\\x07\\xe4\\xcd\\x5a\\xaa\\x3e\\xbe\\xe8\\x93\\x62\\x50\\xec\\x95\\xf5\\x56\\xf3\\x22\\x85\\xb9\\x5e\\x2a\\xbd\\x0f\\x65\\x5f\\x8b\\xe4\\x75\\x77\\x5f\\x08\\x01\\x92\\x6f\\xdf\\x54\\xfd\\x0f\\x36\\x58\\xc7\\x07\\x91\\x7c\\xc0\\x1c\\x4c\\x81\\x2c\\x28\\x02\\x39\\xb5\\x48\\x8e\\xb0\\x52\\x94\\x23\\x8e\\x6a\\x39\\xc9\\x53\\x28\\x30\\x12\\xc9\\xf1\\x5b\\x28\\x70\\xbc\\xaa\\xab\\xa5\\x92\\x25\\x3f\\xc4\\x08\\x79\\xdb\\x22\\x39\\x3e\\x69\\xc9\\x13\\x27\\x6a\\x29\\x6b\\x69\\x48\\x61\\xfb\\xa3\\x48\\x8e\\x3f\\xb6\\x95\\xfa\\xa8\\xea\\x45\\x5e\\xda\\x62\\xa5\\x48\\x8e\\xb0\\x21\\x6a\\x3b\\x68\\xa6\\x27\\x92\\x97\\xd8\\xcc\\xcb\\x6a\\xb1\\xa8\\xda\\x1b\\x59\\x88\\xe4\\xed\\xc9\\x9b\\xee\\xbe\\x78\\x5b\\x95\\xfd\\x93\\xa5\\x4c\\x61\\xce\\xe0\\x24\\x06\\x99\\x13\\x91\\xfc\\x84\\xa0\\x7f\\xb2\\x61\\xf2\\xde\\xaa\\x95\\xa9\\x65\\x81\\x8a\\x42\\x91\\xfc\\x84\\x63\\xf3\\x5e\\xd6\\x72\\x56\\xcb\\xe5\\x3c\\x86\\x6c\\x44\\x82\\x8d\\x8b\\x13\\x35\\x43\\xc7\\x86\\x28\\xf7\\x52\\x24\\xbf\\x63\\xf6\\xef\\xf3\\xdc\\x28\\x0c\\x5d\\x88\\x8f\\x55\\x8a\\xe4\\x1d\\xb6\\x48\\x44\\xc9\\xcd\\xe9\\x48\\xb9\\x89\\x74\\x98\\x4f\\x83\\x87\\x9d\\x50\\x4d\\x81\\x14\\x47\\x8f\\x32\\x91\\xea\\x02\\x55\\xd8\\x50\\x31\\x29\\x78\\x5e\\x31\\x3a\\x79\\x17\\xb5\\x1c\\x91\\x47\\x06\\x6f\\x2a\\x82\\xec\\x63\\x88\\xc1\\x21\\xe3\\x44\\xd7\\x4c\\x7e\\x4c\\xb2\\x6b\\x37\\x7e\\x6c\\x28\\x72\\x5a\\xb9\\x16\\x55\\x0a\\x1c\\x87\\xce\\x1e\\xc5\\xf5\\xc0\\xb3\\x44\\xbb\\x0c\\xc6\\x22\\x09\\x9f\\x23\\xe5\\x48\\x99\\x31\\x31\\x12\\x81\\x56\\x99\\xe2\\xa7\\x9a\\x86\\xb0\\x2b\\x0c\\xaf\\xa6\\x53\\x2b\\x3c\\x56\\x97\\x1f\\xb1\\x1c\\x2c\\x6e\\xfb\\xcf\\x68\\x73\\xa9\\x27\\xd1\\x3f\\xad\\xb5\\xb9\\x7c\\xfb\\xf6\\xc7\\x1f\\x7f\\x7c\\x8b\\xff\\x7a\\x6f\\x7b\\x6f\\x47\\xee\\x1f\\xa5\\xbd\\x7d\\xbd\\xf1\\xdf\\xb7\\xe4\\x73\\x43\\x93\\x8d\\xff\\x7a\\xd0\\x3c\\xb6\\x4f\\xf0\\x7e\\xfc\\x71\\x34\\xc2\\xaf\\xa3\\xd7\\x77\\x81\\xbf\\xa3\\x59\\xca\\xef\\x7c\\xdb\\xc8\\x5d\\x3d\\x19\\xf2\\xe8\\x3d\\x99\\x3e\\x73\\xef\\x30\\xc3\\xfa\\x70\\x23\\x58\\xe2\\xbf\\xb7\\x6f\\xeb\\x1f\\x7f\\xac\\x7b\\xf5\\xdb\\xb7\\x0b\\xff\\xaf\\xfe\\xce\\x7f\\x8b\\xb6\\x7f\\xa5\\xfb\\xf7\\x63\\x59\\x42\\xa1\\xef\\x85\\xfa\\x2f\\xfd\\xb3\\x8d\\xbf\\xb5\\x3d\\x59\\x2c\\xde\\xd2\\x17\\x4f\\x01\\x30\\x86\\xfe\\x4e\\x76\\x2e\\x6b\\x18\\x93\\x24\\x25\\x15\\x95\\xdf\\x7b\\xaa\\x4c\\xe1\\xbd\\xd5\\xd5\\x74\\x2f\\x54\\x8e\\x32\\x11\\xda\\xf7\\x36\\xa8\\x5a\\x70\\x98\\x85\\xba\\xc3\\xab\\xc7\\xcf\\x86\\x50\\x39\\x65\\xb5\\x85\\x07\\xf6\\x78\\xfa\\x28\\x80\\xd6\\xf9\\xd0\\x59\\xaf\\x0b\\x73\\xd7\\x5a\\xf7\\xc9\\xf4\\x59\\xf4\\x1e\\xa5\\x9b\\xcf\\x10\\x19\\xd1\\xa7\\xe9\\x6f\\x41\\xea\\x89\\x52\\xed\\x80\\x9f\\xca\\x34\\x44\\xaa\\x6e\\x41\\x6a\\x77\\xb8\\x09\\xab\\xdd\\xe1\\x30\\x0c\\x41\\xd2\\xb9\\x5c\\xab\\x8d\\x65\\xc7\\x5c\\x36\\x6a\\x69\\xd2\\x89\\xf5\\x00\\x36\\xfd\\x75\\xc7\\x87\\xd4\\xb5\\xbc\\xe4\\xc3\\xb1\\x7d\\x9d\\x6d\\xe3\\x93\\x88\\xc3\\x3d\\xfa\\xf1\\x54\\xa6\\x67\\x3b\\x36\\x04\\x92\\x66\\x2e\\x8a\\xb5\\x81\\x33\\x9c\\xed\\xf4\\x44\\xae\\x4f\\x4c\\x5d\\x21\\x63\\xda\\xf9\\xf4\\xfa\\x43\\x0d\\x69\\x64\\xb3\\x75\\xa4\\x71\\x27\\xc3\\xf4\\xc9\\xa8\\x0c\\x33\\xde\\xae\\x16\\x98\\x0e\\xa9\\x5b\\x21\\x11\\xa1\\x68\\x8e\\x9e\\xe9\\xc0\\x35\\x9b\\x86\\xbe\\x36\\xc6\\x0e\\x89\\xa2\\xc4\\x59\\x7d\\xf2\\xe6\\x90\\x09\\xdc\\xff\\xe6\\x6b\\xe8\\xf8\\x80\\x8c\\x93\\x35\\x42\\xa9\\x0f\\x43\\x4a\\x7d\\xa4\\x17\\x2c\\x5d\\x01\\x14\\xc5\\x40\\x5a\\x05\\x01\\xf8\\x35\\x8a\\xbf\\x1f\\x3a\\x5b\\x5e\\x01\\xe7\\x5e\\x96\\x21\\x0d\\xec\\xcd\\x4d\\x5b\\xd5\\xfb\\xf7\\xc5\\x3d\\x9a\\x03\\x7a\\x42\\x47\\x9b\\xba\\xbb\\xfe\\x26\\x61\\xe3\\x10\\xe5\\x41\\xf7\\x98\\x4d\\x71\\x20\\x8f\\x76\\x81\\xb6\\x50\\x65\\x60\\xc6\\x87\\xef\\xa1\\x23\\x6d\\xe3\\x35\\x95\\x5b\\xa6\\xf6\\xa9\\x1b\\x7e\\xec\\x27\\xef\\x76\\xd9\\x15\\x82\\x62\\x5c\\x8f\\x06\\xe2\\xf8\\x4a\\x2e\\xd0\\xea\\x48\\xa6\\x73\\xd4\\xce\\x6b\\xde\\xd6\\xd1\\x9c\\x19\\xb7\\x7b\\xbb\\x95\\xd1\\x94\\xd4\\xab\\x12\\x35\\x20\\x16\\x88\\x75\\xc1\\x9c\\x2b\\xc4\\xc0\\x5e\\xf4\\xbc\\x3d\\x79\\x63\\x63\\x76\\x86\\xc9\\xcb\\x5a\\x5d\\xe4\\xd5\\x4a\\x07\\xb5\\x89\\x35\\x0f\\xc4\\x2b\\x5f\\x31\\xd7\\x36\\x5a\\x5a\\x74\\x79\\x14\\x20\\x90\\x1b\\x71\\x99\\x17\\x85\\x05\\x33\\xe3\\xeb\\x27\\xdb\\x94\\xae\\xea\\x41\\xab\\x42\\xab\\x87\\x18\\x80\\xb4\\x6f\\x67\\xdf\\x79\\x22\\xf1\\x80\\x36\\x95\\x5a\\xfc\\xc6\\x29\\x8e\\x6e\\x53\\xa1\\xe5\\xbc\\x8b\\x17\\x28\\x38\\xfb\\x32\\x62\\x4c\\xed\\x34\\x04\\x68\\x6e\\x1b\\xab\\x59\\xf1\\xd9\\x4d\\xc6\\xee\\xc0\\x06\\xfc\\x98\\xc8\\xf4\\x9c\\x62\\x14\\x22\\xb9\\xe3\\xd4\\xb8\\xc8\\x59\\xa8\\xd5\\x72\\x42\\x1e\\x5d\\xb5\\x59\\x18\\xab\\xd2\\xe4\\x05\\x0e\\x04\\x39\\xd3\\x68\\x5a\\xb5\\xd8\\x5e\\xf2\\xa1\\x27\\x5e\\xf7\\xc4\\xd1\\x6b\\x94\\x68\\x74\\x55\\x77\\x31\\xb6\\x2f\\xaa\\x6b\\x60\\xec\\x65\\x69\\xa1\\x1c\\xbd\\x76\\x39\\xbd\\x4d\\xd3\\xdb\\x40\\x00\\xa6\\x9a\\xa5\\x59\\x06\\x62\\xa3\\xb3\\xda\\xde\\x3d\\x1c\\x08\\x52\\x30\\x08\\x59\\x14\\xe2\\xe8\\x35\\x1a\\x0e\\x7c\\x58\\x9b\\xa4\\x5d\\xd6\\xba\\xd2\\x89\\x2c\\x9c\\xa3\\xdd\\x70\\x8e\\x76\\xd7\\xe7\\x08\\xe7\\xd7\\xce\\xc0\\x6e\\x73\\x96\\x20\\x77\\x2c\\x3a\\xa3\\x0e\\x9f\\xe3\\xf0\\x57\\x1d\\xcd\\xda\\xee\\x19\\x6e\\xf4\\x9d\\x78\\xd2\\x30\\x6a\\x3b\\xb3\\x3f\\x5a\\xcd\\x04\\x0e\\x17\\x34\\xa1\\x49\\x09\\x07\\xcd\\xb6\\xda\\xa0\\xc3\\x06\\xb6\\x3e\\xf3\\x8f\\xf0\\xad\\x51\\x0a\\x05\\xee\\x06\\x56\\x5b\\x01\\x38\\x0a\\xa3\\xda\\x18\\x77\\x1d\\xaf\\x42\\xb2\\xc6\\x68\\x16\\x0a\\xa0\\xa7\\x24\\xdb\\xaf\\xc1\\xb6\\x60\\xa0\\x09\\x86\\xec\\xae\\x6f\\xe5\\x82\\xa7\\x3e\\x68\\x83\\x8e\\x55\\xd7\\x4b\\xb5\\x36\\x81\\x0f\\x05\\x7a\\x7a\\x02\\xa5\\x07\\x33\\x32\\x3c\\xb3\\x8e\\x40\\xa8\\xaa\\x13\\x23\\xeb\\x0c\\xb4\\x3e\\x8d\\xbb\\xc1\\x34\\x3e\\x5c\\x9b\\xc6\\x5d\\x1c\\xda\\x6d\\x9c\\x46\\xdb\\x86\\x9b\\x57\\x57\\x6d\\x7b\\x74\\xc6\\xc9\\xe1\\x14\\x3c\\xc4\\x29\\x18\\xb5\\x4c\\x70\\x00\\xba\\xd7\\x00\\x1d\\xc1\\x0c\\x2e\\x32\\xf8\\x5f\\x12\\x23\\x71\\x73\\x13\\x62\\x55\\x76\\xba\\x6b\\xed\\x73\\xb6\\xb3\\xa1\\x0f\\xc7\\xe9\\x87\\xdd\\x26\\x65\\x3c\\xa6\\x57\\x68\\xff\\xb9\\x52\\xbc\\xf4\\xdd\\xd4\\x1a\\x77\\xac\\xd3\\x42\\x66\\x9f\\x65\\xca\\x6f\\x86\\xd8\\x02\\xf1\\x3a\\xd4\\x11\\x81\\x14\\xc5\\x1a\\x1d\\xf9\\x85\\xfa\\x64\\x40\\xc7\\xa9\\xcb\\x5c\\xab\\x9e\\xa7\\x14\\x4d\\x71\\x64\\x83\\x56\\x9d\\xef\\x3d\\x95\\xb7\\x00\\x58\\x7e\\x58\\x23\\x8c\\x47\\xf6\\x3e\\xe1\\x51\\xb8\\x90\\x1f\\xb5\\x50\\xc0\\xc3\\x80\\x02\\x1e\\xad\\x51\\xc0\\x43\\x9e\\xa6\\x70\\x64\\x1f\\xe1\\xcc\\xbe\\xdd\\x34\\xb3\\x54\\xe5\\xc7\\x4e\\xd3\\xcf\\x93\\xae\\x24\\xed\\x75\\x9d\\x37\\xeb\\x02\\xa4\\x29\\x0f\\xb0\\xdd\\x06\\x6a\\x85\\x9f\\x44\\xbc\\x8e\\xce\\x54\\x99\\x9d\\x31\\x60\\xe8\\x0b\\x85\\x26\\xbe\\x8d\\x1a\\xa8\\x15\\x06\\x25\\x80\\x46\\x00\\x52\\x40\\xa2\\x8f\\xfa\\x4c\\xa2\\xf7\\x3a\\x68\\x4f\\x97\\xdc\\xd5\\x00\\x90\\xf1\\x21\\xd2\\xd7\\x3e\\xf4\\x32\\x46\\xd4\\xba\\xca\\xe4\\x3f\\x3c\\x22\\x67\\x19\\x55\\x66\\xd6\\x47\\x86\\x01\\x7d\\x86\\xe1\\xb1\\xb8\\x78\\x0c\\x69\\x4e\\xa0\\xe1\\x3e\\x3f\\x44\\x2f\\xd6\\x79\\xd3\\xde\\xff\\x95\\x5d\\x69\\xc3\\x8e\\x24\\x5e\\x53\\x44\\x7b\\x7e\\xfc\\x00\\x37\\x24\\x83\\xee\\x05\\xdf\\xbc\\x2b\\xbd\\x5e\\x23\\xc4\\xc7\\x6e\\x8b\\xc1\\x85\\x17\\x6d\\x32\\x8f\\x43\\xda\\x7c\\xdc\\x42\\x9b\\x8f\\x02\\xda\\x7c\\xdc\\xb8\\xdb\\xe2\\x55\\xff\\xda\\xf1\\x22\\x28\\xbd\\xc6\\x85\\x1e\\x23\\xad\\xbe\\xfe\\xb6\\x6d\\xe6\\x91\\xdd\\x66\\x3c\\x8f\\x78\\xb4\\x36\\x47\\x6f\\x47\\x4d\\x2e\\x51\\xb2\\x26\\x44\\x18\\x7c\\xa3\\x00\\x2f\\x20\\x9c\\x98\\x4a\\x63\\x65\\x2b\\xeb\\x55\\x8d\\x8f\\x9c\\xe0\\x73\\x25\\x3c\\x31\\xea\\xca\\xb0\\xcd\\x16\\x7d\\x8f\\x03\\x5d\\xcc\\xd9\\x4d\\x03\\xed\\xfc\\x18\\x8a\\x83\\x3e\\xf0\\x73\\x00\\xfc\\x82\\xb5\\x4c\\x96\\x09\\xc9\\x14\\x8d\\x50\\x6c\\x9c\\xcb\\x4b\\x55\\x2b\\xf1\\x41\\xe4\\x7e\\xfb\\x51\\xf5\\xc2\\x6e\\x3c\\x79\\x2d\\xf2\\x72\\x5a\\x70\\x9f\\x4a\\xd7\\xa7\\x81\\xc0\\xab\\xac\\x7e\\x35\\xed\\xa3\\x3c\\xd8\\xaf\\x57\\xa5\\x48\\x80\\x7a\\x2c\\x14\\x68\\x58\\x95\\x59\\xa3\\x84\\x02\\xfa\\x92\\xb5\\x22\\xed\\x1e\\xbe\\xaf\\xc8\\xd2\\xa4\\x7d\\xd7\\x21\\x57\\x9e\\x0d\\xbe\\xdd\\x1d\\x88\\xa3\\xf2\\x3a\\x88\\x06\\x15\\x8d\\x29\\x85\\x85\\x5c\\x4c\\x14\\x3d\\x4d\\xe4\\xbb\\xdf\\x24\\xb6\\x27\\x96\\xeb\\x3d\\x09\\x29\\xeb\\x49\\xac\\x9c\\x75\\x87\\x2e\\x3f\\xf3\\x40\\x29\\x4f\\xce\\xba\\x2d\\x1c\\x0b\\x29\\x61\\x23\\xcf\\xc2\\x5c\\x68\\xcd\\x72\\x2d\\x2b\\xdb\\xd2\\x43\\x98\\x2d\\xed\\x60\\x99\\xb3\\x2e\\xb3\\x30\\x94\\x7e\\x63\\x26\\x36\\xb1\\x31\\x6f\\x12\\x80\\x7b\\xe8\\x08\\xf9\\x09\\xb0\\xb0\\x7d\\xbf\\x7e\\xba\\x4c\\xfd\\x51\\x65\\xc9\\x91\\x80\\x92\\x10\\x95\\x43\\x11\\x36\\xfd\\x55\\x18\\xcc\\xb9\\xb0\\x6b\\x16\\x99\\x31\\x43\\x3e\\x14\\xc9\\xc4\\x86\\xbe\\x71\\xe7\\xb5\\x6e\\x08\\xb2\\x85\\x5b\\xda\\x41\\x3a\\xc0\\xaf\\xcf\\x69\\x98\\x90\\x67\\x62\\xf7\\x2d\\xd7\\x24\\x39\\xde\\xb7\\x1e\\x72\\xce\\x27\\xc4\\x39\\x7f\\x18\\xdd\\xc1\\x3b\\x7f\\x55\\xec\\x0b\\xaf\\xf0\\xce\\xc7\\x3d\\x18\\x6a\\xef\\x02\\x81\\x0c\\xad\\xae\\xba\\x87\\x2f\\xdc\\xa3\\xae\\x10\\x76\\x68\\x98\\x5e\\x0b\\x66\\xb2\\xca\\x8b\\x8c\\xe3\\x79\\xc3\\xb2\\xa2\\xe7\\x9b\\x90\\x7a\\x39\\xa2\\xfb\\x40\\x9c\\xd8\\x47\\x1b\\xd8\\xc8\\x12\\x1f\\x41\\x31\\xf3\\x5a\\xb9\\x15\\xca\\xe5\\x93\\x61\\x0f\\xc4\\xb3\\x5d\\x3c\\xd4\\xc9\\xd2\\x6b\\xc2\\x29\\xc6\\x34\\xca\\x75\\x59\\xa5\\x74\\xf9\\xc0\\x20\\xa1\\xdb\\xea\\xea\\x6a\\x59\\xe4\\x69\\x6e\\x02\\xa2\\x0f\\x2f\\xd3\\x7b\\xd0\\x4f\\x7c\\x78\\x03\\x90\\xa5\\xc8\\xe3\\x56\\xf7\\x59\\xf9\\xe5\\x0d\\x5b\\x40\\x71\\xdd\\x73\\xa1\\xf7\\xa6\\x95\\x7d\\x69\\xcc\\x1d\\xef\\xfa\\x13\\xa9\\xc3\\x81\\x19\\xf8\\xf3\\x3a\\x42\\xa3\\x80\\xff\\x8b\\xe6\\x3a\\xdb\\xb3\\xeb\\x6c\\x8f\\xd7\\x59\\xe3\\xfa\\x23\\x50\\x56\\xc4\\x8b\\x6c\\x6f\\x7d\\x91\\xd1\\x99\\x13\\x28\\x64\\x2f\\x26\\x1e\\x58\\xba\\x7b\\x41\\x23\\xa4\\xd9\\xb9\\x03\\x32\\xad\\xf6\\xbd\\x68\\x49\\xd1\\x4d\\x94\\xf3\\xb2\\x77\\xca\\x90\\xa1\\x7b\\xe4\\x00\\x6a\\xd8\\x95\\xbd\\x16\\xd1\\x01\\xaf\\x10\\xd1\\x65\\x2a\\xff\\x61\\xaf\\x07\\x7c\\x6c\\x1c\\x5d\\x6e\\x7d\\x1d\\x63\\x8f\\x1f\\x5e\\xfc\\xbc\\xee\\xb4\\x61\\x19\\x2c\\x96\\x5d\\x8a\\x89\\x7a\\x80\\x5f\\x9f\\x03\\xac\\x83\\x38\\xb6\\x45\\x38\\xc0\\x6f\\x57\\x8b\\x70\\x14\\x3e\\xff\\xb0\\x1b\\x8f\\xaf\\x2d\\x4f\\x0f\\xf5\\x7e\\xc6\\x83\\x1c\\xe3\\xcf\\xae\\xe9\\xd2\\xf4\\x60\\x7b\\x8e\\xc6\\x66\\xc4\\x6f\\x00\\x43\\xf9\\x30\\xee\\x85\\x1d\\x90\\xd2\\x4e\\xd9\\x67\\x16\\xa1\\x1b\\x83\\xf0\\xf9\\x87\\xdd\\x00\\xfd\\x70\\xda\\xda\\xf0\\x25\\x4e\\xb0\\x1b\\x8d\\x87\\x9f\\xb9\\x3b\\xd0\\xdc\\xed\\x31\\x26\\x8c\\x69\\x54\\x9b\\x26\\x2d\\x46\\xd0\\xce\\x2e\\x35\\xd8\\x12\\xd0\\x23\\x1c\\x2c\\x9a\\xa2\\x6f\\x1f\\x2c\\x24\\xa3\\x96\\x70\\x1d\\x1c\\x08\\x0e\\x6f\\x3b\\x87\\x67\\xe1\\x9d\\xef\\xfd\\xfb\\x22\\x59\\xb0\\x2a\\x0a\\xe3\\x8a\\x26\\x3b\\x7f\\x3f\\xd5\\xdb\\x3b\\xdd\\x60\\x0a\\x5d\\x3d\\xfb\\x9e\\x2d\\xc1\\x08\\x48\\x8f\\x10\\x5c\\x95\\xf8\\x08\\xcd\\x1a\\x8d\\x0f\\x7b\\x61\\x95\\x6e\\xb7\\x81\\x56\\xa1\\xf9\\xd6\\xb7\\xfb\\x15\\xc4\\x4e\\xf5\\xf6\\x0f\\x11\\x62\\x41\\x4d\\x53\\x89\\xfe\\x66\\xcc\\x5a\\x97\\x1e\\x1d\\x4b\\x83\\x2a\\x98\\xe4\\xd0\\xc3\\x3f\\xac\\xbe\\x8b\\x15\\x7e\\x78\\x49\\x7e\\xc8\\xa0\\x6b\\x75\\xa1\\x6a\\xad\\x12\\xdc\\x80\\x20\\x85\\xac\\xd7\\xba\\x49\\x37\\x32\\x92\\x9e\\xe4\\x59\\xee\\xef\\x3c\\xed\\xbd\\x65\\x60\\xfc\\x8d\\x6e\\xa1\\xf8\\x50\\x92\\xc8\\x4d\\xd7\\x45\\x06\\x03\\x18\\xa4\\x3c\\xf4\\x51\\x4c\\x5d\\x84\\x8b\\xe9\\xaa\\x28\\xae\\x45\\x74\\x79\\xc5\\x61\\xc1\\xe3\\xb7\\x56\\x6c\\xaf\\xed\\x4d\\x55\\x6b\\x90\\xf0\\x99\\x32\\x78\\x19\\xc5\\xde\\x63\\x0d\\xfd\\x69\\xc8\\x8d\\xd1\\x3a\\xc9\\xf6\\xd5\\x11\\x56\\x68\\xf3\\xba\\x5e\\x12\\xf6\\xf1\\xe0\\xba\\xcb\\x3f\\x11\\x12\\xb5\\x14\\xc6\\x1d\\x46\\xf8\\x74\\x73\\x7c\\xfc\\xb7\\xe3\\xb7\\x1f\\xc5\\xaf\\x47\\x6f\\x7f\\x7e\\xfd\\xea\\xed\\x5f\\x31\\xe9\\x35\\x74\\xf6\\x92\\x8c\\xa9\\xd4\\x05\\x86\\x45\\xab\\xe5\\x42\\x5d\\x56\\xf5\\xf9\\x40\\x54\\xe5\\x4e\\x35\\x9d\\x0a\\x59\\xe8\\x4a\\x40\\x0a\\xc8\\x92\\xee\\xfd\\xe3\\x1e\\xde\\xce\\xaa\\x59\\xae\\x0d\\x4d\\x06\\xbd\\x4b\\x86\\x05\\xe8\\x1d\\x66\\x38\\x1a\\xe3\\x05\\x5d\\x59\\xfd\\xca\\x09\\xa4\\x98\\xc5\\xc4\\x0a\\xc3\\x44\\x59\\x5d\\xb3\\x5a\\xe4\\xc6\\xa8\\x9a\\xf4\\xb7\\x91\\x91\\x09\\xe7\\x0c\\x64\\x96\\x1d\\x03\\x82\\xaf\\xf1\\xf9\\x4a\\xeb\\xac\\x26\\xc4\\xa6\\xfc\\x84\\x21\\xf5\\x7c\\x34\\x8f\\x5b\\x7f\\x60\\x70\\xb5\\xd0\\x65\\x1b\\x2b\\xae\\x01\\xf4\\x59\\x49\\xa7\\x2a\\x3b\\x62\\xdb\\x21\\xb7\\xd5\\xd8\\x5d\\x28\\x86\\xc5\\x12\\x04\\x1b\\xae\\xfc\\x87\\x1d\\x02\\x3a\\xa1\\xae\\xa5\\x8e\\xc5\\x97\\x5b\\x5a\\x21\\x0b\\xb9\\xfc\\x04\\x70\\x41\\x60\\x4a\\xfc\\x8f\\x9b\\x9b\\x60\\xd8\\xba\\x36\\x84\\x2c\\x35\\x1d\\xb9\\xc5\\xcc\\x94\\xb1\\xc5\\xe2\\x51\\x8c\\x9e\\x22\\x58\\xc7\\xe0\\xfe\\xfd\\xf5\\xc4\\xb6\\xb6\\xa3\\xc6\\xaa\\xe9\\xf4\\x1b\\xa6\\x8a\\x02\\x93\\xdc\\x39\\x5b\\x2d\\x45\\xbe\\x6d\\xc2\\x28\\x28\\x40\\xeb\\x84\\x05\\x59\\xff\\xc6\\x84\\x61\\xfc\\x6e\\x8c\\xb5\\xb1\\x24\\xdf\\x33\\x9e\\x11\\xc7\\x67\\x65\\x5d\\xc7\\xa7\\xdb\\x9c\\x1f\\x9c\\xb4\\xb1\\x47\\x64\\x5d\\x73\\x9b\\xb6\\x0a\\x95\\x78\\x21\\xfa\\xa3\\x30\\x64\\x44\\x38\\xf3\\xb2\\xae\\xfd\\x33\\x48\\x58\\xdc\\xcd\\xb9\\xcf\\x22\\x30\\xdb\\x62\\xe4\\x36\\xa7\\xdb\\x35\\x72\\xd0\\xf9\\xac\\x94\\x45\\x3c\\x49\\x62\\xe7\\x2f\\x3d\\x7a\\x12\\x48\\x0f\\x06\\x83\\xbf\\xec\\x78\\x56\\x14\\xd0\\xe3\\x66\\x3a\\xb2\\xf6\\x49\\x6e\\x55\\xaf\\xc5\\xb9\\x71\\x2e\\xea\\xf5\\x0c\\x40\\x61\\x90\\xf5\\xc1\\xb2\\xae\\x4c\\x85\\x8a\\x4e\\xc4\\x7e\\x90\\xca\\xa2\\x48\\xac\\x9b\\x93\\x06\\x41\\x7a\\x83\\xc1\\x51\\xa3\\x1d\\x6b\\x73\\xe4\\xd2\\x3f\\xe5\\x67\\x1c\\x33\\x83\\x22\\x29\\x41\\xab\\xdd\\xe8\\x3d\\x78\\xe0\\x41\\xc8\\xcd\\x98\\xc9\\xfb\\x47\\x4a\\xdd\\x13\\xf1\\xfc\\xd4\\x5d\\x75\\xa1\\xea\\x9a\\x1c\\x3b\\x26\\xd7\\x4d\\x8e\\x26\\x45\\x52\\x56\\x65\\xff\\xe7\\x77\\x6f\\xba\\xb6\\x71\\xeb\\xa9\\xc7\\xef\\xa9\\xda\\x0d\\x88\\x58\\x67\\x29\\x17\\xaa\\x67\\x1f\\x94\\x5f\\xd6\\x98\\xf8\\xb3\\x9a\\xca\\x55\\x61\\xfa\\x56\\x52\\xa7\\x92\\x39\\x9f\\x17\\x18\\xea\\xa0\\x39\\x7f\\x3f\\xbf\\x7b\\x43\\x74\\x9c\\x2e\\x7a\\x42\\xf5\\x2c\\x9a\\x81\\x15\\x2c\\x0c\\x6c\\x35\\x15\\x74\\x87\\x42\\x6f\\x52\\x75\\xac\\x8d\\x3d\\x9c\\x38\\xbf\\x40\\x81\\x7d\\xa1\\x7a\\x0d\\x44\\xf6\\x45\\x68\\x1e\\x41\\xf7\\x80\\x19\\x65\\xbd\\xa7\\x82\\xce\\x8e\\x51\\xdc\\x92\\xc2\\x9d\\x49\\x0a\\x50\\xb1\\x78\\xa0\\x1f\\xeb\\x80\\x56\\x17\\xa2\\x18\\x3c\\xac\\xa5\\xfe\\x68\\xc2\\x4b\\x14\\x39\\xbe\\x0e\\xd2\\x2a\\x53\\x0b\\x9c\\x87\\x57\\xb3\\xb2\\xaa\\x55\\x0b\\xe5\\xd2\\x03\\x19\\x47\\xa9\\xc9\\x2f\\x72\\x73\\x1d\\x59\\x77\\xd2\\xba\\x4c\\x17\\x31\\x13\\x0b\\x7f\\xf3\\x4b\\xd5\\xb6\\xb6\\x25\\x5c\\x5a\\xb1\\x4d\\x62\\xa5\\x70\\x8a\\xe9\\x02\\x2a\\xbd\\x5b\\x36\\xaa\\xfe\\x1a\\xb2\\xef\\xaf\\x95\\x41\\x37\\xb7\\xcd\\xef\\x06\\x34\\xe9\\xd8\\x71\\x84\\x77\\xd3\\x44\\x2b\\x83\\x0c\\x07\\xe3\\x95\\x53\\x94\\x22\\x9e\\x44\\xad\\xf8\\x15\\x30\\x9b\\x7b\\xdb\\x58\\xe9\\x73\\xa9\\x19\\x83\\x3b\\xf8\\xfe\\xe6\\x55\\x6d\\x2f\\x63\\x5f\\x88\\xa1\\x75\\x7c\\xcd\\x32\\xc1\\xcf\\xc3\\xc3\\xb6\\xbf\\x50\\x66\\x5e\\x65\\x7c\\x2f\\x92\\x56\\xa5\\x36\\xf5\\x2a\\x35\\x55\\xfd\\x40\\x0b\\xb7\\xb4\\x7b\\xf6\\xf5\\x8e\\xe6\\xd2\\xe1\\xd5\\x07\\xd3\\x8a\\x1e\\xeb\\x2c\\x30\\x2d\\xaa\\x1a\\x1f\\x47\\xbc\\x50\\x65\\x1e\\x9b\\xf4\\x62\\x85\\x37\\xf9\\x55\\x5e\\x26\\xd0\\x08\\x75\\x02\\xbe\\x05\\x7c\\x24\\x16\\x19\\xfc\\xf6\\x03\\x3f\\xe6\\xb9\\xf6\\x3b\\xd2\\x6d\\x4b\\x5d\\x0c\\xc8\\xd1\\x56\\x79\\x3a\\x5d\\xab\\x4d\\xe3\\xf1\\xf3\\x4a\\xd9\\x7b\\xd8\\xa9\\x4c\\x0d\\xad\\xd8\\x4b\\x25\\xb4\\xc9\\x8b\\xc2\\x3e\\x50\\x2c\\x3e\\xaf\\x6a\\xa9\\x75\\x9e\\x8a\\x57\\xc7\\x82\\x9f\\x26\\xd6\\x3d\\x7c\\xdb\\xc1\\x45\\x1d\\x31\\xfc\\xae\\xbd\\xe0\\x67\\x7c\\xf9\\x71\\x07\\xa5\\x32\\x95\\x0d\\xc2\\x17\\x62\\xfe\\x88\\xd7\\x6a\\x12\\xac\\x77\\x35\\x88\\xf3\\x80\\x90\\x9a\\x69\\x49\\xf4\\x12\\x86\\x1a\\x10\\x0d\\xfc\\x0d\\x18\\xbf\\x35\\xbb\\x8d\\xdd\\x93\\xd4\\x1f\\xda\\x54\\xcb\\xf7\\xf6\\xd9\\x37\\x90\\xc3\\xc2\\x16\\x1b\\x99\\xd4\\x64\\xb3\\x46\\xa3\\xcd\\x54\\x96\\xa9\\x2a\\x7e\\x5a\\x4d\\xa2\\xe7\\x91\\xa3\\x36\\xdb\\xd8\\x43\\x28\\xaa\\xac\\xf3\\x23\\x6f\\x14\\xd9\\x92\\xb9\\xdf\\xec\\xa9\\xb5\\x30\\x5e\\xeb\\x28\\x36\\xd4\\x32\\xc8\\x07\\xad\\x03\\x11\\xbd\\xdd\\xf3\\x87\\x91\\xf5\\x4c\\xd1\\x8c\\x38\\x3c\\x29\\x8d\\x58\\x9b\\xae\\xd3\\x63\\x52\\x07\\x45\\xcd\\x4e\\x56\\xc6\\xf8\\x61\\x45\\x9d\\x20\\x08\\x1d\\x03\\x34\\x69\\xe3\\x81\\x9e\\x34\\x7d\\xbe\\x68\\xf4\\xa9\\xaa\\xb8\\x2f\\x50\\xb1\\x06\\xd5\\x46\\x4d\\x7b\\x97\\xa0\\xd0\\xae\\x2d\\xf4\\xf0\\x8e\\x42\\x8f\\x6c\\xa1\\xdd\\xc8\\xf2\\x78\\x21\\x53\\x14\\x07\\x07\\xa9\\xa9\\x8b\\xff\\x54\\x18\\x55\\x0d\\x91\\x1a\\xc5\\x40\\x6d\\x3c\\x16\\xbb\\x3e\\x94\\x51\\xa9\\x11\\x59\\x2d\\x67\\x7d\\x59\\x66\\xfd\\xac\\xae\\x96\\x28\\xda\\x43\\xca\\x51\\x99\\xfd\\x5c\\x57\\xcb\\x70\\xcd\\x39\\x73\\x3c\\xf7\\x32\\xe8\\x5f\\x60\\x99\\xfc\\x45\\x9c\\x63\\x38\\x97\\x69\\x0c\\xc9\\x2d\\xb0\\xbc\\x14\\xaf\\x8e\\x9f\\xf4\\x9f\\x52\\x70\\x8c\\x57\\xfc\\x52\\x6d\\xb5\\x2a\\x30\\x4c\\x26\\x3e\\xdd\\x8b\\xd7\\x77\\x78\\x42\\xb9\\x56\\xf8\\x16\\xfb\\x86\\x07\\xc3\\x9f\\xb5\\x9a\\x92\\x20\\xca\\xf9\\x05\\xbf\\x84\\xfe\\x20\\xcb\\x2f\\x1e\\x04\\xdb\\x59\\xc7\\xbd\\xf6\\x8d\\x2f\\x95\\x42\\xc1\\x9b\\x1b\\x4a\\x85\\x0e\\xda\\xc4\\xad\\x5b\\x38\\xa9\\x02\\xa8\\x3f\\x2f\\xf5\\xf2\\xc4\\xbe\\x5e\\xee\\x69\\xe1\\x4f\\x55\\x57\\xf8\\xbe\\x2f\\x93\\x49\\xc2\\xaf\\x51\\xfb\\x05\\x17\\x55\\x6c\\xf3\\x03\\x34\\x0a\\xc3\\x74\\xe2\\x7b\\xed\\x7a\\x29\\xcb\\x4e\\x4f\\x74\\x4e\\x57\\xbb\\xc3\\xe1\\xa4\\x63\\x9d\\x00\\x41\\xaa\\x7e\\xc9\\x3e\\x44\\x47\\x65\\x76\\x94\\x65\\xb6\\x9d\\x5e\\x54\\xef\\x13\\xc0\\xea\\x79\\xdf\\x0a\\x8a\\x36\\xfa\\x51\\x5d\\xa1\\x03\\x5c\\xd2\\xb9\\xea\\x74\\xcf\\xba\\xde\\x1b\\x81\\x61\\x90\\x93\\x04\\xc2\\x1f\\x50\\x40\\x54\\x7e\\x9d\\x18\\x43\\x17\\x39\\x73\\x9a\\x46\\x47\\x10\\x6f\\x2e\\x4f\\x2f\\x1c\\x3f\\x67\\xcd\\x44\\x90\\xc1\\x80\\x5e\\x88\\x5d\\x7a\\x82\\xbd\\xfd\\xb9\\x77\\x4b\\xb5\\x74\\xaa\\xcc\\x80\\xc3\\xc4\\x8d\\x1d\\xb6\\x8f\\x8e\\xd8\\xe7\\x35\\x11\\xe5\\x0d\\x87\\x72\\xd8\\xb1\\xf1\\x38\\x3b\\xec\\x35\\xb2\\x2f\\xf2\\x12\\x4e\\xd5\\xfd\\x49\\x51\\xa5\\xe7\\x07\\xf4\\x42\\xf5\\xbe\\x18\\x2d\\xaf\\x0e\\xc4\\x42\\xd6\\xb3\\xbc\\x24\\x0d\\xc1\\xbe\\xe8\\x8f\\x96\\x57\\x38\\xf0\\x80\\x49\\xe3\\x79\\xfe\\x74\\xd1\\x87\\x53\\x39\\xb4\\xd3\\xe9\\x86\\x6f\\x1d\\x66\\x36\\x84\\xc0\\x2f\\xf4\\xd0\\x4f\\x3f\\xa3\\x55\\xf4\\xea\\xf8\\x81\\x16\\x69\\xbd\\x5a\\x2c\\xae\\x45\\x5a\\xe4\\xf4\\xae\\x7b\\x0a\\x1f\\xd0\\x33\\xab\\xec\\x40\\xf5\\x07\\x3e\\xac\\x8a\\xac\\x44\\x66\\x3f\\xe5\\x59\\xfe\\x01\\xb6\\xd6\\x48\\x2e\\xf8\\x29\\xc8\\x58\\xa7\\xb3\\xb0\\x5a\\x18\\xfe\\xd7\\x2e\\xef\\x30\\xdb\\x45\\x7a\\xc2\\x37\\x57\\xef\\xa6\\xaf\\x8d\\xc4\\x74\\x74\\xba\\x1a\\x3e\\xd9\\x55\\x47\\x9d\\xae\\x8d\\x1e\\x53\\x0f\\x01\\x1a\\x46\\xa4\\x31\\x57\\xa4\\x88\\x1b\\x75\\x07\\x33\\x65\\x7e\\xe2\\x0b\\xb5\\x97\\x38\\x04\\x80\\x83\\x0b\\x6c\\x55\\x8f\\xe2\\x3a\\xa8\\x8b\\xbf\\xa3\\x4e\\x8c\\xac\\x1b\\x06\\x2b\\x14\\xd6\\x68\\x82\\x56\\x0f\\x07\\xf8\\xe4\\xcd\\x78\\x0c\\x5f\\x6b\\x7e\\xa5\\xb4\\xc1\\x23\\xf0\\x59\\x71\\x39\\x95\\x75\\xee\\xde\\x59\\x25\\xdb\\xe8\\x92\\xdf\\x70\\x92\\x5a\\x69\\x91\\xfc\\xc7\\xee\\xde\\xd3\\x61\\x30\\xd9\\xd1\\x40\\x8e\\x45\\x52\\x8f\\xa8\\x01\\xd1\\x77\\x6d\\x89\\xe7\\xe2\\x61\\xd7\\x3d\\x59\\x84\\xfc\\xba\\xd3\\x41\\x0d\\xa5\\x8b\\xcf\\x31\\xa9\\xab\\x73\\x55\\x06\\xd2\\x45\\x0f\\x4a\\xe9\\x0a\\x9f\\x6b\\xbd\\x00\\x59\\x9c\\xc3\\xdc\\x17\\xf8\\xd2\\x1a\\xea\\x60\\x2e\\xe5\\x35\\x70\\x44\\x82\\xc3\\xd1\\x22\\xc8\\xc7\\xb6\\xc8\\xe9\\xad\\xda\\xa3\\x15\\x1a\\xff\\x75\\x4e\\xcb\\xd3\\x72\\xc2\\x2d\\x26\\x3b\\xa7\\xe5\\x8e\\x93\\x0b\\xef\\x01\\xd7\\x3f\\x0c\\xc2\\x80\\xd2\\x21\\xc3\\x6f\\x64\\xa4\\x95\\x1d\\xf6\\x44\\xad\\xf4\\xaa\\xb0\\xef\\x09\\x17\\xa4\\x6b\\xcc\\xcb\\x99\\x57\\x20\\xb2\\xe7\\x1a\\xea\\x62\\xc7\\x22\\x62\\x69\\x65\\x50\\xde\\xca\\xc4\\x9d\\x53\\x58\\x9f\\xcb\\x4a\\x7b\\xfe\\x53\\x16\\x2c\\x1c\\x8b\\x2f\\x51\\x15\\xc6\\x35\\x30\\x08\\x24\\xb7\\x27\\xce\\xa6\\x63\\x33\\xaa\\x74\\x39\\x85\\xed\\x57\\xcb\\x02\\x9f\\x79\\xc3\\xc3\\xd3\\x29\\x5a\\x2c\\x52\\x8a\\xd8\\x17\\x65\\xe1\\xe3\\xf8\\xd4\\xee\\x31\\x63\\x8f\\x5b\\xdd\\xf1\\x68\\xd5\\xc8\\xf9\\xfa\\x81\\xd9\\x1b\\x8d\\x45\\xf0\\x7c\\xaf\\x3b\\xd4\\xd7\\xc6\\x69\\xb5\\x61\\x20\\xb6\\xc7\\x00\\x7d\\x9b\\x6f\\xc0\\x1a\\x77\\x15\\x4d\\x28\\x61\\xc5\\x31\\xa0\\xea\\xea\\xc5\\x2e\\x24\\x54\\x6f\\xeb\\x56\\xec\\xb7\\xcd\\x9b\\x8b\\x42\\xcb\\x83\\xc3\\x73\\x5e\\x9f\\x96\\x87\\x37\\x30\\xf3\\x07\\x82\\x7d\\x8c\\xe6\\x52\\x9f\\xa8\\xc2\\x6a\\x6a\\xc5\\x65\\x5e\\x66\\xd5\\x25\\xac\\x34\\x9f\\x1a\\x12\\x86\\x61\\xde\\x62\\xea\\xeb\\xc0\\x05\\x19\\x38\\x22\\x97\\xc6\\x5b\\x67\\x18\\xa9\\x30\\xf1\\xb8\\xcc\\xc8\\xc7\\x11\\x95\\xd2\\xaa\\x65\\x67\\x8e\\xbb\\x61\\x02\\x19\\x0a\\xb9\\x80\\x6d\\x11\\x7f\\xe0\\x2e\\x33\\xa8\\x2e\\x4b\\x55\\xff\\x6c\\xd9\\x90\\x6b\\x8a\\x19\\x12\\x45\\xc0\\xea\\xc6\\x8d\\x3a\\xef\\x2b\\x02\\x03\\x2c\\x01\\x83\\xfe\\x91\\x73\\xaf\\xdd\\xab\\xbb\\x84\\x7d\\xab\\xf8\\x60\\xc7\\x1e\\xab\\x71\\x8c\\xb4\\xe3\\x32\\x7b\\x8f\\x16\\xf2\\x49\\x07\\x3b\\xff\\xb1\\x3a\\x2e\\xb3\\x4e\\x8f\\x0a\\x21\\xb0\\xe1\\x96\\x1f\\xec\\x97\\xd5\\xf2\\x1a\\x8f\\xfb\\xa1\\xf7\\x82\\x48\\x7c\\x7f\\x95\\xdd\\xf5\\xb3\\xfc\\xa2\\x63\\x39\\x58\\xa7\\x2a\\xd3\\x6a\\x79\\x8d\\x02\\x88\\x6a\\x73\\xfe\\x6e\\xee\\x49\\x5c\\xbe\\x27\\x3a\\x54\\xf2\\x20\\xdc\\x99\\xac\\x3e\\x61\\x40\\xa5\\x70\\x65\\x58\\x54\\x3a\\xac\\x87\\xe7\\x3d\\xe7\\xff\\xad\\xaa\\x85\\xca\\x2c\\x5b\\x8b\\x9d\\xd0\\x68\\xf3\\x09\\x4a\\xb4\\x6e\\x3f\\x21\\x84\\xd6\\x0d\\x28\\x2c\\xd0\\xd8\\xef\\xbf\\x5d\\xc6\\x01\\x21\\xa6\\xeb\\x2a\\xd7\\x0b\\xb4\\xcc\\xc6\\xbd\\xfa\\xee\\x8d\\x66\\x5a\\x57\\x8b\\x0f\\x4c\\x54\\xb4\\xdf\\x40\\xa5\\xaf\\x6f\\x52\\xed\\xe8\\x8f\\xc9\\x6d\\x50\\x4e\\x74\\x42\\x48\\xd0\\x86\\xd3\\xf7\\xcd\\x60\\x42\\x57\\xbc\\xa0\\xd0\\x24\\xa8\\x9a\\x44\\x5f\\xaa\\xb1\\xf8\\x72\\x4b\\x6f\\xfb\\x2d\\xf2\\x85\\x7a\\x13\\xa4\\xed\\xec\\x88\\xe3\\x2b\\x53\\x4b\\x17\\x35\\x88\\x4e\\x94\\xf8\\x5a\\x9b\\x75\\xcc\\x41\\x20\\x0f\\xb4\\xc8\\xd4\\x52\\x95\\x99\\x2a\\xd3\\x5c\\xe9\\x1e\\xbb\\xd2\\xe4\\x78\\x1f\\x82\\xd6\\x1c\\x93\\x6b\\x91\\x14\\x6a\\x26\\xd3\\xeb\\xae\\x58\\xa8\\x74\\x2e\\xcb\\x5c\\x2f\\xb4\\x28\\xf2\\x73\\x25\\x8a\\x4a\\x66\\x00\\x65\\xf0\\x99\\xb4\\x00\\x2b\\x53\\x2d\\x24\\xbe\\xbd\\x4c\\xf1\\xec\\x20\\x5f\\x48\\x6c\\x68\\x20\\x92\\xf7\\xb5\\x9a\\xaa\\x1a\\x10\\x70\\x70\\xec\\x1e\\x56\\xab\\x7f\\xae\\xf2\\x5a\\xed\\x50\\x54\\x23\\x7c\\xb5\\x5c\\x0f\\xba\\x61\\xe8\\x59\\x48\\x87\\x1e\\x26\\xa8\\x43\\x43\\x90\\x9e\\x62\\x5c\\x2f\\xbd\\xce\\x62\\xd7\\xaa\\x49\\xb0\\xf1\\xb0\\x8f\\xdf\\xa1\\x7f\\x44\\xd2\\xc2\\xb1\\xfe\\x04\\xcd\\x9e\\x89\\x31\\xfe\\x8a\\xb4\\x2c\\x8c\\xda\\xab\\x37\\xc7\\x09\\xcc\\x42\\x4f\\xe8\\xa5\\x4a\\x09\\x35\\x37\\x2b\\x9f\\xe0\\xdb\\x19\\x86\\xe8\\x50\\x69\\xe3\\xf5\\x1e\\xa8\\xc9\\x9a\\x05\\x29\\xbe\\x50\\xef\\x06\\x83\\x01\\xbf\\xf9\\x7b\\x8b\\xa1\\xfa\\xf2\\x99\\x7b\\xdd\\x07\\x1f\\x70\\x2b\\x39\\x0c\\x18\\x31\\x6a\\x17\\xa8\\x92\\x46\\x3a\\xae\\x11\\x85\\x03\\xd7\\x55\\x71\\x41\\xa3\\xe8\\x91\\x0c\\x74\\x85\\x90\\x18\\xaa\\x0b\\x51\\xbd\\x6d\\xfb\\x30\\x98\\x4b\\xfd\\xee\\xb2\\x7c\\x4f\\x2f\\x81\\x5c\\x13\\x04\\x1f\\x5d\\x03\\x6a\\x06\\x1d\\x86\\x84\\xb3\\x58\\x41\\x8f\\x65\\xf8\\x8e\\x9c\\x1b\\x1b\\x40\\x47\\xbe\\xab\\x45\\xac\\xd1\\xee\\x66\\x1f\\xb5\\x8d\\xe5\\xbc\\x4a\\x9e\\xdb\\xe4\\xb2\\x81\\x42\\x34\\x70\\xc9\\xc4\\xb1\\xe7\\xf7\\x3c\\xac\\x21\\x31\\xf7\\x8b\\xb6\\x87\\x77\\x93\\xcf\\x3e\\x94\\xa5\\x4a\\xbb\\xae\\x04\\x77\\x83\\xcd\\xeb\\x4a\\xb2\\xdd\\xba\\x8d\\x0d\\x25\\x37\\x0c\\xef\\xce\\xdf\\x3f\\x9d\\x5e\\x9e\\xf6\\xcf\\xb6\\x4f\\x77\\xec\\x97\\xed\\xab\\x45\\xf1\\xc3\\x0e\\x7b\\x37\\x84\\x83\\xec\\xf7\\x70\\x37\\x8d\\x1d\\xb9\\x5c\\x16\\x18\\x26\\xb7\\x2a\\x77\\xae\\x16\\x45\\xa7\\xfb\\x6f\\xb5\\xfc\\x59\\x57\\xe5\\xbf\\xd4\\x34\\x54\\xec\\x84\\x61\\x60\\x36\\x34\\x1c\\x30\\x71\\x1e\\x6e\\x28\\x71\\x1b\\x6a\\x88\\x5c\\x24\\x7c\\x95\\xc2\\x66\\xcb\\xc5\\x3a\\xb0\\x05\\x74\\xd6\\x1f\\xed\\x47\\x82\\xc7\\xb2\\x89\\x2c\\xaf\\x0d\\xbf\\xd6\\x29\\x4d\\x88\\xaa\\x90\\x69\\xaa\\x96\\x46\\x77\\xf9\\x59\\x7f\\x59\\x66\\xf4\\xfe\\x7b\\x6e\\x72\\x59\\xe4\\x7f\\xaa\\xc0\\xf4\\x07\\xe1\\xad\\xad\\x9c\\x99\\x32\\xd8\\x67\\xf7\\x8c\\xb7\\x5f\\x3e\\x4c\\x21\\x6b\\x6b\\xcb\\xc6\\x55\\x9b\\xca\\xd4\\x54\\xf5\\x35\\x73\\x8e\\x06\\x71\\x52\\xac\\x78\\x2e\\x12\\x8c\\xcd\\x5a\\x7b\\x1d\\x38\\xd2\\xed\\x2c\\x0b\\x99\\x97\\x1d\\xef\\x2f\\x0f\\x10\\x29\\xd6\\x8a\\x85\\xd1\\xc0\\xd0\\xaa\\x6f\\xaa\\x4c\\x1d\\x5f\\x19\\x55\\xa2\\xee\\xf1\\xdb\\x96\\x95\\xba\\xc2\\xad\\x29\\xae\\xda\\x5c\\x5a\\x3e\\x26\\x4a\\x5d\\x2d\\x51\\xcc\\xb8\\x32\\x3a\\xb6\\x0e\\xba\\x07\\x49\\xcd\\x26\\xa1\\x78\\xb7\\x35\\x28\\xbc\\x45\\xf7\\xdd\\xe4\\xf3\\xc6\\x4a\\x9c\\xff\\xa9\\xf3\\x47\\x47\\x6c\\x63\\xd3\\x96\\x31\\x43\\x2a\\xfd\\xb6\\xf0\\xe2\\xd4\\x31\\x22\\x48\\x3f\\x22\\xf1\\xd8\\x36\\xc9\\x0b\\xd9\\x75\\xd3\\x05\\x35\\x52\\xe9\\x60\\x8e\\x81\\xb8\\xc9\\x92\\xce\\x21\\x11\\xa4\\xda\\x7a\\x41\\xca\\x6d\\x58\\x1f\\x6a\\x40\\x67\\xe2\\xc0\\x59\\x80\\xcb\\x0f\\x23\\x3c\\x29\\xc6\\x85\\x82\\xed\\xcb\\x76\\x80\\x8c\\xe6\\xe2\\x72\\x2e\\xe3\\x36\\xf2\\xd1\\xe2\\x6a\\xee\\xca\\x2b\\x77\\x17\\x5a\\x2b\\x7e\\x56\\x82\\x6e\\xaf\\xc3\\x97\\x9d\\x4c\\x15\\x92\\x3f\\x99\\x22\\xa3\\xdb\\xed\\xca\\x68\\x38\\x46\\xa2\\x03\\x78\\xb0\\x4c\\x70\\xe7\\xcb\\xc9\\x34\\xd3\\x92\\xa3\\xa7\\x15\\x94\\x44\\xa2\\xf8\\xe0\\xaa\\xcc\\x90\\xaa\\x17\\x28\\x2c\\xf9\\x86\\x03\\x31\\xb6\\x8d\\xe8\\x9a\\x74\\x40\\x5b\\xff\\x61\\x93\\x34\\xe1\\xe7\\x99\\xd8\\x6f\\x52\\x3b\\xa7\\xdb\\xeb\\x74\\x10\\x5d\\x81\\x8f\\xfb\\xd6\\x7b\\x44\\xb4\\x5b\\xcd\\x87\\xd3\\x4f\\x8c\\x34\\x16\\x57\\x0d\\xdf\\x83\\x48\\x5c\\xf0\\x13\\x1f\\xc4\\xa7\\x38\\xc2\\xc1\\xc1\\x09\\x32\\x6e\\x83\\x65\\x37\\x70\\xa0\\xc2\\x78\\xe8\\x51\\x46\\xc2\\xd0\\x9d\\x18\\xcb\\xe0\\xe9\\xe8\\xe1\\x08\\xa5\\x44\\x1a\\xf1\\x88\\x50\\xe1\\x0b\\x49\\x87\\x5d\\x69\\xd4\\xa7\\xd2\\xef\\x77\\x90\\x1c\\x3c\\xc3\\x7f\\xc4\\x2f\\x59\\x73\\xf1\\x0b\\x59\\xb8\\x27\\x67\\xcf\\xdc\\x7b\\x30\\x16\\x08\\x15\\x68\\xbc\\x04\\x83\\x99\\x6d\\xbc\\x97\\x1e\\xc7\\x27\\x94\\x13\\x17\\x1e\\x1b\\xe7\\x88\\xd9\\x2d\\x90\\x4d\\x5e\\x96\\xaa\\x76\\x15\\x38\\xba\\xa5\\x51\\xd6\\x13\\xcd\\xbe\\x1b\\xeb\\x02\\x36\\x72\\x36\\x0a\\x8c\\x40\\x98\\x01\\x2f\\x46\\x50\\x01\\x1d\\x05\\x43\\x42\\x77\\xed\\xd3\\x2a\\x88\\x85\\x03\\x23\\xed\\x6a\\x38\\xf5\\x79\\x39\\xad\\x98\\xcc\\x7c\\x26\\x4f\\x83\\x1b\\xc2\\x7b\\x58\\x0a\\x5f\\x0c\\x99\\x56\\xb8\\xde\\xf0\\x95\\x65\\x0e\\x1f\\x17\\x86\\x57\\xb2\\xf3\\x85\\x05\\x69\\xa0\\x2c\\xeb\\xb1\\xa9\\x28\\x35\\x46\\x23\\x6a\\xa1\\x7f\\x81\\xac\\x7d\\x11\\xf4\\x65\\x9f\\xfe\\x34\\x6e\\xed\\xe1\\x90\\x18\\x92\\xa4\\x1c\\xf5\\x84\\xdc\\x8d\\xee\\x45\\xb0\\x3f\\xbe\\x20\\x2f\\x91\\x20\\x25\\xb1\\x95\\xf6\\xc3\\x17\\xb8\\x4f\\x3e\\x7e\\x78\\xf5\\xf6\\xaf\\xf0\\xe7\\xf8\\xe8\\x0d\\x6b\\x1e\\x33\\x7b\\xaf\\x85\\x9d\\x58\\xca\\x5a\\xa3\\xe1\\x03\\x2b\\x94\\xb4\\x20\\x1e\\x17\\xbc\\x13\\x1c\\xdc\\xf2\\x71\\x69\\xba\\xca\\xd3\\xab\\x34\\xcd\\x4b\\xd8\\x4c\\x91\\x45\\x9c\\xa0\\x18\\x70\\x62\\x6a\\x25\\x17\\xa1\\xe6\\xdf\\x0a\\xb2\\x46\\x4e\\x4e\\xf2\\x3f\\xf9\\xa1\\xf7\\x77\\xb5\\x4c\\x0b\\x15\\x3c\\xf5\\x4d\\xda\\x0d\\xfc\\x6a\\x8d\\x12\\x87\\x36\\x8f\\x20\\x38\\xcd\\x8e\\x4d\\x66\\x80\\x50\\x8d\\xbf\\xdd\\xdc\\x88\\xa7\\x36\\xb7\\x90\\xda\\xbc\\xac\\x8a\\xd5\\xa2\\x7c\\xef\\x41\\xfb\\x44\\x7b\\x31\\xe6\\x1a\\x01\\xac\\x4e\\x9a\\x2d\\x7b\\x54\\x6d\\x28\\x33\\xfc\\xb1\\x75\\x7b\\xb0\\xb5\\x15\\xf6\\x37\\x38\\x6f\\xa8\\xaa\\x08\\x7a\\x8f\\x07\\x79\\x17\\x6b\\x9e\\xfb\\xf9\\x62\\x1c\\xf6\\x8b\\xcf\\x35\\xb7\\x07\\x9b\\x20\\xea\\xaf\\x43\\x1c\\x8f\\x1b\\x9d\\xd8\\x0c\\x6d\\xa9\\xd4\\xf9\\x5d\\xe0\\x62\\x5d\\x99\\x6d\\x01\\xef\\xf0\\x5d\\x64\\xda\\xcd\\xd0\\x31\\x4e\\x69\\x03\\xba\\x15\\x1b\\x2d\\xb2\\xcf\\x5b\\x7a\\xdf\\x8c\\x10\\xb8\\x19\\x93\\xed\\x6d\\x34\\xf7\\xd8\\x88\\x81\\x92\\x31\\x02\\x68\\xf7\\xe8\\x79\\x48\\x3a\\x17\\xe3\\x3b\\x3b\\x6a\\xed\\xf4\\xce\\x63\\x69\\x17\\xc1\\x34\\xc5\\xdd\\xea\\x1c\\xe3\\xc1\\xd1\\x13\\xed\\x90\\x1f\\xc8\\xba\\x36\\x0f\\x6d\\x30\\x21\\x13\\x45\\x6f\\x58\\xb8\\xee\\x47\\x02\\x88\\xed\\x53\\x02\\x7c\\xf7\\x8f\\xb5\\x55\\xe7\\x5d\\xf1\\x65\\x7b\\xdb\\x22\\x75\\xe0\\x02\\xd5\\xcf\\xbf\\xd2\\xf5\\xdf\\x91\\x37\\xde\\xd1\\x7f\\xbb\\xb8\\x2c\\x68\\xcf\\x4f\\x31\\x45\\x49\\xc3\\x35\\xba\\x5f\\x02\\x8e\\xe6\\x49\\x97\\x00\\xdc\\x8d\\xc4\\xc9\\x92\\x9c\\xb7\\x9a\\x54\\xc0\\xb7\\x09\\xf3\\x5c\\x93\\x5b\\xce\\x3c\\xd7\\x07\\x5b\\x5f\\xc5\\x6b\\xe7\\xd3\\xa9\\xa6\\xeb\\x9a\\x33\\x3e\\xbe\\xdc\\x35\\x7d\\x28\\x45\\xd2\\xc8\\xfd\\x30\\x42\\x94\\xff\\xb5\\x6e\\xe8\\xf3\\x7c\\x89\\x8a\\xbb\\x66\\x3f\\xd6\\xb9\\xd5\\xb7\\x2d\\x62\\x84\\x17\\x01\\x0b\\xa7\\xc5\\x05\\x87\\x0a\\x40\\x5a\\xb5\\x73\\x3a\\xef\\x89\\x90\\x3c\\x31\\x8a\\x3b\\x96\\x7f\\x41\\xea\\xe7\\x00\\x25\\x4c\\x3f\\x08\\xb5\\x81\\x77\\x11\\xcc\\x44\\xa6\\xe7\\xbf\\x2d\\x23\\xa4\\xca\\x10\\x5e\\x7f\\x2c\\xca\\xcd\\xb5\\x53\\x64\\xa4\\x77\\xad\\xf6\\x98\\x07\\x3f\\x0f\\xd8\\x7b\\x1c\\xb3\\x60\\x8d\\x2b\\xa3\\x99\\x39\\x25\\x85\\xb3\\xdd\\x0b\\x20\\xf4\\xa2\\x4d\\xa0\\xd7\\xc2\\xf4\\xd7\\xd2\\x10\\x7a\\xb7\\xad\\xdd\\xf7\\x8d\\xdd\\x27\\xde\\xcf\\x5b\\x91\\xec\\xdb\\x3e\\xba\\x7d\\xe3\\xf0\\x2b\\x68\\xbb\\x92\\x31\\xea\\x5d\\x7a\\xa7\\x75\\xf3\\x38\\x03\\x1d\\x58\\x47\\x93\\xf5\\xc1\\x76\\x4f\\x58\\x6c\\x68\\x9a\\x2e\\x38\\xe3\\x06\\xfb\\x38\\x06\\xff\\xb7\\xf0\\x67\\xd6\\x19\\x60\\xbe\\x94\\xc6\\xa8\\xba\\xec\\xa1\\x65\\xd1\\x6a\\x81\\xe1\\xf2\\xb5\\x7a\\x55\\x6a\\x10\\xec\\x4d\\x7e\\xb1\\x6e\\xea\\xc6\\x35\\x1a\\x0c\\xd8\\xf1\\x94\\x14\\x9d\\x5f\\xc6\\xf1\\xc5\\x47\\xf8\\xc0\\x47\\x0c\\x1e\\xdf\\xc8\\xad\\x07\\xa6\\x7a\\x5d\\x5d\\xaa\\xfa\\xa5\\x64\\xd3\\x73\\x6d\\xea\\x83\\xe0\\x3a\\x49\\xaf\\x26\\xda\\xd4\\x8d\\x45\\x49\\x89\\x8e\\xdf\\xf4\\x2c\\x66\\xd1\\x3e\\x86\\x9e\\x1d\\x80\\x52\\x42\\xc5\\xf1\\xae\\x89\\x12\\xb8\\x78\\xb7\\xe9\\x67\\x83\\xe3\\x10\\xbc\\x3f\\x68\\xcd\\xf3\\xf8\\xba\\x28\\x6e\\xc5\\x1d\\x81\\x83\\x75\\xee\\xcf\\xbc\\xeb\\xb6\\xae\\x66\\x6d\\xd7\\xa3\\x9b\\x29\\xc7\\x55\\xd8\\x3b\\xc0\\x22\\xe7\\xaf\\xfe\\xb1\\x2a\\x5a\\xc2\\xc2\\xa6\\x65\\x4d\\x59\\x87\\x6d\\x8f\\xdf\\x35\\x6a\\x7c\\xb5\\x4b\\x58\\xd2\\x3b\\x0e\\x30\\x0c\\xf7\\xac\\x94\\xe1\\x88\\x91\\x77\\xf0\\x9f\\x55\\x5d\\xd3\\xbd\\x49\\xb0\\x26\\xda\\x64\\x99\\xa0\\xb3\\x21\\xeb\\x80\\x8e\\x6f\\x86\\x3e\\xcf\\x33\\xf5\\x0b\\x59\\x3c\\x48\\x34\\xf3\\x0b\\x78\\x64\\x8f\\x4e\\x2a\\x81\\xf8\\xea\\x57\\xd1\\xf6\\x58\\x94\\xcd\\xfb\\x30\\x2c\\xcd\\xc6\\x52\\xd3\\xbc\\xc4\\x67\\x18\\xbe\\x34\\x2b\\x02\\xb3\\xbd\\xb3\\xbf\\x45\\x55\\x9d\\x1f\\xcd\\x95\\xcc\\xd6\\x18\\xb6\\xf3\\x2d\\x60\\x49\\xb5\\x21\\xbb\\x86\\x0e\\x01\\x58\\xe2\\xfe\\x7d\\xfe\\xe6\\x61\\x26\\x25\\x2e\\x61\\x92\\xe4\\xe5\\x85\\xca\\x5e\\x56\\xa5\\x89\\x85\\x39\\x3a\\x45\\xf5\\x84\\xab\\x13\\xf4\\xdf\\x9e\\x93\\xec\\x11\\x89\\x30\\x08\\x10\\x76\\xdf\\x5d\\x2b\\x2d\\x0d\\x60\\x3c\\x4e\\xdb\\x0a\\x7a\\x50\\x7c\\x73\\x5b\\x14\\xed\\x93\\x42\\x7d\\xba\\xee\\xfb\\x18\\x98\\x98\\xb4\\x90\\x57\\xaf\\xdb\\x50\\x02\\xd9\\x76\\x88\\x78\\x31\\x4e\\xdf\\x33\\xe8\\xdc\\x8e\\x45\\x62\\x60\\x63\\x8b\\x7a\\x24\\xb6\\x45\\x19\\xbd\\x13\\x10\\x3c\\x51\\x5a\\x8a\\x17\\xeb\\xa8\\xb9\\x85\\xd2\\xc0\\xb7\\x5c\\x7f\\x8f\\xa2\\x15\\x65\\x90\\xc1\\x39\\x02\\x68\\x73\\xb3\\x70\\x48\\x6d\\x6f\\x87\\xfb\\x74\\xd4\\x10\\x2f\\xef\\xb5\\x8c\\x7e\\x9f\\xa8\\xd3\\xb5\\x38\\xad\\xab\\x05\\x92\\x4a\\xd4\\x10\\xcd\\x21\\x24\\x87\\x91\\xe8\\x51\\xb5\\x82\\x65\\x03\\xd5\\x45\\x48\\x67\\x8d\\x03\\x40\\xa9\\x2e\\x2d\\x81\\xf0\\x03\\xf5\\x4e\\xa5\\x02\\x83\\xcc\\x47\\x6a\\xa8\\x4f\\xe4\\xd0\\x75\\xb1\\xb0\\x31\\x2d\\x20\\x1b\\x2b\\x92\\xff\\xab\\xf0\\xbb\\xb6\\x1b\\xb7\\x1b\\x86\\x1b\\x4a\\xc5\\x72\\x5d\\xb5\\xbc\\x8e\\x04\\x6e\\x43\\x22\\xcd\\x32\\x78\\x5f\\x16\\x37\\x5b\\xdb\\xa2\\xa3\\x1d\\x6a\\xd6\\x13\\x39\\x9e\\xe6\\xdd\\xaf\\x86\\x40\\xd2\\x9c\\x34\\x71\\x88\\xbd\\x0a\\x07\\xd5\\xae\\xd8\\x16\\x12\\x63\\x4d\\x04\\xf6\\x29\\x8c\\x08\\x2d\\x85\\x36\\xd7\\x85\\x62\\xd7\\xa7\\xc4\\x39\\x41\\x21\\xe3\\xc4\\x07\\xfb\\xf0\\x3d\\x03\\x52\\x1e\\xcc\\x54\\xa9\\x6a\\x14\\x4c\\x00\\x44\\xbf\\x8f\\x1a\\xad\\xbc\\xbc\\x90\\x45\\x9e\\x91\\xbc\\x82\\x69\\xf4\\x44\\x95\\x98\\x5c\\x8b\\xa5\\xcc\\x29\\x42\\x8a\\x2a\\x33\\xa7\\x19\\xd2\\x5e\\x6f\\x04\\x2d\\x13\\xd3\\xd6\\x5d\\x7f\\x5f\\xe9\\xf4\\x9a\\xf3\\x7c\\x36\\x2f\\xd0\\x74\\x06\\x7d\\xec\\xab\\x73\\x55\\x6a\\x36\\xca\\xc7\\x2b\\xc9\\x46\\x20\\x73\\x5b\\x9a\\x43\\x05\\x5b\\x12\\x49\\x69\\x70\\xf0\\xcd\\x9e\\x54\\xa1\\x90\\xef\\xac\\x13\\x8f\\x08\\x09\\x76\\x10\\x16\\xb2\\xb8\\x94\\xd7\\x3a\\x7e\\xca\\xc1\\x3d\\x31\\x02\\x52\\x59\\x3e\\xbd\\x66\\xe3\\x7e\\xaa\\x0f\\xc3\\xb2\\x43\\x4f\\x74\\x5d\\xb3\\xff\\x01\\x59\\xf3\\x90\\x7b\\x2e\\x90\\x07\\x8c\\x91\\x92\\xfa\\x3a\\x1a\\xa8\\xee\\xc0\\x91\\x8b\\x18\\x8b\\x4f\\xe9\\x82\\xa6\\x1c\\x29\\xe2\\xaf\\xaa\\x3c\\x23\\xdc\\x5f\\x16\\x52\\x6b\\xbe\\x08\\xe6\\x10\\x7d\\x41\\x20\\x6f\\x68\\x22\\x88\\xb7\\x88\\xfd\\x00\\x9a\\x59\\x95\\xa8\\x03\\xb3\\x03\\xc0\\x1e\\x63\\x14\\x18\\x99\\x49\\xce\\x0f\\x89\\xa3\\x62\\x7c\\x91\\x0c\\x81\\x44\\x4a\\x50\\xb2\\x4b\\x09\\x32\\x0f\\xc4\\x6d\\x2f\\x70\\xcd\\x0c\\xd0\\x8c\\x06\\x78\\x6d\\x35\\xd0\\x32\\x22\\x22\\xa4\\xbe\\x7c\\x58\\x95\\xc2\\x0e\\x5d\\x4f\\xc8\\xec\\xf3\\x0a\\x83\\x5e\\x38\\x6a\\x1c\\xb8\\x08\\x8d\\x55\\x7c\\x66\\x11\\x95\\x88\\x02\\x94\\x11\\x0c\\xb2\\xef\\xa7\\x61\\xb4\\x60\\x3f\\x55\\x67\\xf4\\xba\\xc0\\x88\\x5d\\x80\\x87\\x58\\x2b\\xc2\\x26\\x0c\\xd1\\xbb\\x61\\xec\\x18\\xdc\\x37\\x0e\\x5e\\xe0\\x2d\\xe4\\x5c\\xa4\\x39\\x6d\\x67\\x47\\x1c\\x97\\xf8\\xf6\\x3b\\xfa\\xa0\\x3f\\xd0\\x42\\x12\\x59\\xe3\\x02\\x61\\x7d\\xa9\\x95\\x73\\xec\\x7a\\x21\\xf7\\x44\\xa2\\x2d\\xc1\\xb1\\x18\\x91\\xce\\x18\\x28\\x9f\\x9b\\xa5\\x21\\x17\\xfd\\xa6\\x9b\\x76\\xfe\\x07\\x3f\\x29\\x61\\x6c\\xd0\\x5e\\xe7\\xa9\\x84\\x39\\x2f\\xb0\\x52\\x30\\xa5\\x5f\\x60\\xda\\xed\\x03\\xd8\\x68\\x7a\\xc7\\xdd\\xfb\\x94\\x6f\\x8f\\x60\\x3c\\xff\\xc0\\x56\\x02\\xdf\\x5b\\x10\\x82\\xbc\\xbf\\x2e\\x0e\\xb4\\x0b\\x9f\\x8c\\x75\\xa9\\x4a\\xe4\\x62\\x6b\\x9f\\x09\\x69\\x50\\x5c\\x98\\x69\\x87\\xbd\\x5a\\xca\\x7f\\xae\\x54\\xd8\\x2f\\x8f\\xa0\\xf5\\x05\\x17\\x7d\\xeb\\x16\\x8e\\x0d\\x76\\x2c\\x51\\x74\\xc4\\x36\\x4f\\x4c\\x80\\xee\\x98\\x27\\x66\\xdb\\x61\\xbd\\xe6\\x3f\\x8e\\xba\\xfa\\x03\\x2e\\xf7\\x5c\\xe4\\xf6\\x2b\\xf4\\x34\\x76\\xd4\\xf6\\x91\\x91\\xb5\\xf9\\x84\\x85\\xb6\\x47\\x67\\x41\\x7e\\x90\\x2a\\xc6\\x14\\xdc\\xff\\x10\\x2b\\x6c\\x8b\\x8e\\xc0\\x48\\x0c\\x9d\\x2e\\x7c\\x5f\\xc3\\x78\\xcd\\xcb\\x99\\xdd\\xc0\\x22\\xde\\x80\\x17\\xb5\\xa8\\x55\\x71\\xb7\\x0b\\x15\\x39\\xa4\\x54\\xe2\\xf9\\xfa\\x82\\x08\\xdc\\x53\\xaa\\x2e\\xae\\x2c\\x5c\\x4d\\x07\\x5b\\xeb\\x8b\\xc2\\x2d\\x55\\x7b\\xc9\\x4b\\x1c\\x06\\x36\\x92\\x9e\\x48\\xa9\\xf5\\xfd\\x10\\x95\\xc1\\x64\\x86\\xdf\\x40\\xbc\\x0a\\x93\\x01\\x2a\\x65\\x1c\\x46\\x5c\\x6d\\x1f\\xc5\\xa2\\x35\\x07\\xc7\\xd7\\x28\\x21\\x43\\x53\\x01\\x0f\\x5f\\x2d\\x33\\x69\\xd4\\x2f\\x75\\x55\\x9a\\xdc\\x0a\\xe2\\xee\\xe1\\xa1\\x01\\xf3\\x70\\x6e\\x97\\x7f\\x7e\\x1a\\xa2\\xe3\\x7e\\x93\\xb5\\x46\\xc7\\x48\\x27\\x92\\xce\\x94\\xe1\\x3d\\xf4\\x27\\x0c\\x93\\xe1\\x9a\\xb6\\x8f\\x09\\x05\\x76\\x82\\x4a\\x2b\\xd6\\xca\\xaf\\x3f\\x3a\\x20\\x5e\\x40\\x83\\x7c\\x73\\x0b\\x5b\\xf0\\xaf\\x6e\\x53\\xa2\\x7c\\x3c\\x29\\x59\\x41\\xa0\\x8d\\x27\\x0f\\x82\\xbb\\x0b\\x6e\\x8e\\x0c\\x2e\\xbf\\xb2\\xbd\\x05\\x86\\x8a\\x0e\\x41\\x7b\\x2d\\x1b\\x4e\\x6b\\x80\\x3e\\xd1\\x13\\x0f\\x99\\x34\\xea\\x88\\x83\\x90\\xb8\\x2a\\xf2\\x42\\x25\\xf7\\x02\\x70\\x61\\x79\\x1c\\xf1\\xb1\\xb5\\x5e\\x74\\xbb\\x8f\\x43\\x01\\x52\\x99\\x4a\\xba\\xfc\\x88\\x13\\x95\\xf2\\x9b\\x5a\\x5c\\xaa\\xe9\\xca\\xb0\\x56\\x63\\x13\\x98\\xc6\\x89\\x34\\x26\\x15\\xbc\\xda\\xe3\\x71\\x76\\x23\\xe8\\xe8\\xc8\\x59\\xb1\\x07\\x33\\xe1\\x6b\\x0a\\x17\\x1e\\xbe\\x25\\xbb\\x27\\xb6\\xb7\\x37\\xc2\\x6d\\xda\\x6a\\x06\\x63\\xd6\\x24\\xf7\\x75\\xb2\\x2b\\xd1\\x8d\\x2f\\xcd\\x75\\x70\\x15\\x16\\x3e\\x6e\\xd0\\x13\\x6c\\xbd\\x1e\\x3d\\x80\\x60\\x17\\x84\\xc5\\x33\\xb8\\x2b\\xea\\xde\\x21\\x07\\xc3\\xd6\\xd7\\x13\\xa5\\xbf\\xb2\\xb4\\x5b\\xd6\\x34\\x2f\\x33\\x3c\\xa8\\x3a\\x72\\x0b\\xf0\\xb2\\x65\\xf9\\x34\\x40\\x75\\x5e\\xf8\\xa7\\x15\\x80\\xcc\\xa3\\x47\\x17\\xa8\\x44\\x5f\\x8c\\xba\\x01\\xa9\\x6d\\x35\\x57\\x21\\xc1\\x3b\\x14\\x6b\\x27\\x8e\\xe8\\x94\\xc1\\x0a\\xc5\\xfd\\xf5\\xce\\x04\\xd7\\x63\\x76\\x18\\xba\\xb6\\xfc\\x56\\xf8\\x52\\x03\\x6f\\x15\\x65\\xb8\\x87\\x87\\x6f\\x36\\x2c\\xeb\\x2a\\x55\\x5a\\x47\\x2b\\xcd\\xca\\x51\\xe1\\x72\\xf3\\xa6\\xd1\\x76\\xcd\\xf8\\x47\\x32\\xd6\\x96\\x15\\x5f\\xdc\\x60\\x5c\\x3f\\x8c\\x80\\x57\\x69\\xf1\\xa3\\x78\\xec\\x22\\xa4\\xf2\\x55\\x11\\xcf\\xe7\\xe0\\x22\\x57\\x97\\xbf\\xd4\\xd5\\x02\\xe3\\xec\\xa1\\x3a\\x35\\xcc\\xf9\\x58\\xe1\\x91\\x22\\x58\\xa8\\x5d\\x66\\xa8\\x91\\x84\\x63\\xcf\\x86\\x68\\xb3\\x78\\x6b\\x8f\\xa5\\x9e\\xbc\\x44\\x0b\\xd5\\x87\\x5d\\x09\\x89\\x98\\xd3\\xf9\\xaa\\x31\\x0c\\x26\\x30\\xad\\xea\\x05\\xc8\\xa0\\x5e\\x5e\\xef\\xf7\\x69\\x0c\\x41\\x06\\xbe\\x50\\x74\\x09\\xc0\\x0f\\xd9\\x91\\xec\\x4f\\xab\\xd4\\x1e\\xfe\\x27\\x2b\\x23\\xb2\\xaa\\x7c\\x60\\x70\\x8e\\xe3\\x43\\xc9\\x40\\xfc\\x66\\xe3\\xcc\\xfb\\x50\\x0e\\xfc\\x1e\\x1b\\xd4\\x60\\x71\\xa9\\xb8\\x16\\x17\\xb9\\xce\\x27\\x45\\x78\\x24\\x68\\xce\\x63\\x34\\x85\\x4c\\x19\\x47\\xc1\\x93\\xce\\x7c\\xcf\\x1b\\x2c\\x77\\xb7\\x2a\\xf8\\x9a\\x13\\x8f\\x5c\\x81\\xbe\\x26\\x71\\xd2\\xb5\\x65\\xfa\\x4e\\x43\\x1d\\x50\\x0a\\x55\\x77\\x37\\x9d\\xfc\\x93\\x28\\x87\\x91\\x20\\xa5\\x04\\x1f\\xd2\\x71\\x39\\x8c\\x51\\x32\\xf8\\x82\\x16\\x94\\x3f\\x15\\xb2\\x3c\\xc7\\x6e\\xb4\\x6d\\x16\\xe1\\xb3\\x7a\\xf7\\x18\\xb8\\xaa\\x8a\\x24\\xb0\\xf9\\x92\\xd9\\x47\\x90\\x33\\xdd\\x45\\x3b\\x94\\x69\\xdd\\x73\\x36\\xa2\\xba\\xe6\\x7d\\xde\\x86\\x57\\xc3\\xba\\x02\\x19\\xd1\\xc4\\x96\\x69\\x9a\\x4d\\xb8\\x8c\\xd0\\x6c\\x82\\xec\\xa8\\x9a\\x77\\xfd\\x4d\\x7f\\x5e\\x32\\x42\\x18\\x6f\\xb0\\x20\\xb0\\x4e\\x61\\x90\\x39\\xd8\\x88\\x43\\x5b\\x36\\xd7\\x71\\xf8\\x84\\xfd\\xdd\\x34\\x88\\x4c\\xc3\\x81\\x8a\\xb0\\xcd\\x37\\x78\\x04\\x7f\\xb7\\xb7\\x43\\xb7\\x3f\\x5b\\x83\\xaa\\x82\\xbc\\xb2\\xa9\\x43\\x64\\xb3\\x10\\xa8\\xaa\\x71\\x79\\xb0\\xd9\\x03\\x1e\\x20\\x92\\x08\\x1b\\x2f\\x0c\\x04\\xa4\\xf6\\x22\\x9a\\xdb\\xe8\\x94\\x07\\xd0\\xec\\x96\\x65\\xe6\\x75\\x75\\x89\\x74\\x7e\\x5c\\xd7\\x55\\x9d\\x74\\xd0\\xee\\x0e\\xa4\\x52\\x6c\\x0d\\xcd\\xaa\\x40\\x74\\x9d\\xca\\xbc\\x60\\xf3\\xa3\\xec\\x02\\x83\\x1b\\x32\\xf8\\x4e\\xd7\\x9a\\x36\\xe3\\x68\\x35\\x6c\\x03\\x10\\x49\\xb2\\x91\\x0d\\x88\\x25\\x32\\x04\\x08\\xd1\\xe4\\xe8\\xd5\\xf6\\x08\\x13\\x10\\xe3\\x9a\\xa9\\x00\\x64\\x31\\x33\\x40\\x76\\x47\\x97\\x16\\x3e\\x2c\\x31\\x86\\xba\\x20\\x06\\xd9\\xa2\\x57\\x04\\x21\\x7a\\x67\\x47\\xfc\\x66\\xc8\\x7b\\x17\\xa6\\x70\\xa6\\x0c\\xf6\\xe0\\xc8\\xe0\\x09\\x8c\\x37\\x34\\x4c\\x0a\\x5c\\xb0\\x8c\\x3c\\xa7\\x34\\xe4\\x30\\x74\\x47\\x40\\xfc\\xb5\\x27\\xa4\\xb6\\xe6\\x3a\\xad\\xfb\\x38\\xb3\\x9b\\x40\\x03\\xc5\\x72\\x3f\\xef\\x29\\x45\\xbe\\x7c\\x5f\\x69\\xda\\xdb\\x82\\xbb\\xea\\xb6\\x67\\x39\\x97\\x15\\x29\\xfa\\xba\\xbd\\xaf\\x49\\xb5\\xb6\\xe4\\xfa\\x6e\\xbe\\x91\\xc7\\xc5\\x6a\\x84\\x8d\\x8c\\xae\\xc7\\x2a\\x1a\\x6b\\xc9\\xed\\x3a\\x6f\\x55\\x37\\x63\\xf1\\xe9\\x2c\\xe4\\x55\\xb6\\x08\\x3e\\x8c\\xe7\\x09\\xf5\\x39\\xe2\\x98\\xce\\xbb\\xf4\\x68\\x5f\\x0b\\x3f\\xbb\\x8b\\x49\\x09\\xb7\\x3a\\xbe\\x83\\xeb\\xb5\\xe2\\xeb\\x43\\x20\\x7d\\x6c\\x2c\\xb1\\x6b\\x7c\\xf2\\xb9\\x45\\x85\\x18\\x83\\xee\\xae\\x09\\x82\\xb6\\xc3\\x87\\x76\\x48\\x48\\x8a\\xd9\\x00\\x3f\\x42\\x33\\x72\\x51\\xbe\\x32\\xb5\\x4c\\x71\\xfa\\x59\\x0e\\x66\\x27\\xf7\\x6a\\x65\\x96\\x2b\\x13\\x5f\\xa7\\x39\\x1b\\xc5\\x83\\x83\\xe6\\x0b\\x7b\\x74\\x2c\\xa3\\xe5\\x61\\x23\\x46\\x25\\x87\\xfb\\x7f\\xbf\\x39\\xd5\\xdb\\x5d\\x74\\x8c\\x4c\\x26\\x32\\x3d\\x9f\\x61\\xe8\\xcb\\x7e\\xf7\\x30\\x39\\x3d\\xd9\\xee\\xee\\x04\\x86\\x55\\x0e\\x48\\xd3\\x90\\x2a\\x58\\x77\\xde\\x2d\\xca\\x95\\xa6\\x9b\\xa5\\x2e\\x07\\x6d\\xe1\\x02\\x8d\\x5c\\xb1\\xed\\xcb\\x07\\x91\\xb0\\xbc\\xdc\\x45\\x1e\\xc7\\xbe\\xcc\\xe8\\x4c\\x1c\\x8a\\x0e\\x1f\\x42\\xf1\\x60\\xed\\x4e\\x9e\\x1d\\x87\\x31\\x0d\\x90\\xb5\\x21\\x65\\x77\\x14\\x77\\x0c\\x88\\x73\\x03\\xd8\\xbb\\x67\\xcd\\xe3\\xc9\\x3d\\x24\\x8c\\x0f\\x6a\\x76\\x7c\\xb5\\x4c\\x3a\\x3c\\x68\\xdd\\x4e\\x84\\xf5\\xee\\x19\\x70\\xca\\xe4\\x70\\xff\\x07\\xcc\\xeb\\x76\\xc9\\x9e\\x21\\x6c\\xa5\\xbb\\xa1\\xf1\\xed\\x31\\x6a\\x07\\xb6\\xd7\\x71\\xb8\\x8d\\xae\\xaa\\xaf\\x97\\xee\\x99\\xea\\x55\\x19\\xc4\\xc7\\x62\\x87\\x10\\x32\\xe0\\x22\\x19\\xcc\\x3e\\xf2\\x07\\xfb\\x36\\xfa\\x98\\x0a\\x52\\x4d\\xa6\\x73\\x22\\xc6\\xd0\\xbd\\x20\\xd0\\x83\\xd1\\xba\\x6f\\xaa\\xbe\\x7a\\x1b\\x35\\x7f\\xde\\xc6\\xa1\\x90\\xc6\\xa8\\x92\\x9e\\x9f\\xe5\\xbd\\x2a\\x4c\\xb3\\xa6\\x0d\\x51\\x31\\xef\\x20\\xd4\\xa8\\x1e\\x30\\x9e\\x28\\xc7\\x4a\\x04\\xe9\\xaa\\x76\\xe6\\x5c\\x3d\\xfa\\x45\\x5c\\x80\\x59\\xfe\\xbf\\x2b\\xc5\\x79\\xe6\\x1c\\xca\\x1f\\x41\\x0d\\x99\\xa1\\x49\\x2c\\x2d\\xa9\\xfb\\xf7\\xc5\\x27\\x68\\xf8\\xac\\x55\\xa2\\x6b\\x59\\xbe\\x5f\\x17\\xf2\\x62\\xb5\\xcf\\x57\\x45\\xbe\\xb5\\xcd\\xff\\x4e\\xbd\\x44\\xf0\\x28\\x5a\\x3c\\xec\\xf6\\xfd\\x36\\x0b\\x32\\x9a\\xe8\\xaf\\xcb\\xd7\\xb6\\x7d\\xaf\\x2e\\x8c\\x64\\xdf\\x40\\x73\\xe2\\xb2\\xa3\\x59\\x5b\\xd3\\xcc\\xd9\\xfc\\x96\\x21\\xfc\\x26\\x76\\x6f\\xe5\\xb4\\x35\\x25\\x5a\\x18\\x5d\\x2f\\x10\\xe5\\x2c\\xb7\\x59\\xbc\\x25\\x73\\x72\\x2b\\xaa\\x59\\x93\\x72\\x5b\\x05\\xf3\\xbb\\xa8\\x3b\\x25\\x04\\x3b\\x8b\\x3e\\x2c\\xdf\\x84\\x7e\\x1f\\x32\\x80\\x6d\\x5e\\xd5\\x94\\xba\\x2f\\xb8\\x5a\\x33\\xea\\xe0\\xbd\\x68\\x16\\x6e\\x6e\\x3c\\x3d\\xdf\\x1b\\x37\\xf5\\xcc\\x4c\\x04\\x8e\\xfe\\x9f\\x37\\xc5\\x3c\\xa7\\x47\\x0c\\x96\\x88\\x53\\xcf\\x86\\x65\\x7b\\xbe\\xc4\\xb6\\x78\\x3c\\x1c\\x86\\x71\\x73\\x1d\\x7c\\xbf\\xb6\\x9a\\xfa\\xdc\\x60\\xcd\\x79\\xfd\\xe5\\xed\\x37\\x1c\\x2a\\xee\\xe8\\x03\\x92\\x0e\\xf5\\x60\\x67\\x47\\xfc\\xae\\x26\\xe7\\xb9\\x11\\x5a\\xa9\\x05\\x9a\\xa9\\xd6\\x6a\\xba\\xd2\\x8a\\xbe\\x95\\x18\\x13\\x16\\x96\\x19\\x46\\xac\\xa3\\xd7\\x25\\xd1\\x84\\xb9\\x14\\x8f\\xf7\\x1e\\x3d\\x7a\\x64\\x81\\xf8\\x17\\xae\\x48\\xb1\\x6e\\xbd\\xbc\\xf3\\x52\\xa6\\xe9\\xaa\\x06\\x99\\x90\\x3d\\x0c\\xc9\\xd9\\x2e\\x27\\x4f\\x7e\\x17\\x5f\\xdb\\xdd\\x8c\\x49\\xdc\\x15\\x71\\xa0\\x10\\xa8\\x1e\\x34\\x74\\x02\\xcd\\x41\\x46\\xd9\\xb0\\x75\\x88\\xa7\\x89\\xcf\\x73\\x23\\x1b\\x4c\\x57\\x70\\xfc\\xe2\\x17\\x34\\xb5\\x7f\\x46\\xde\\x54\\xac\\x5e\\xc1\\xfb\\x2a\\x7c\\xb2\\xdc\\xe3\\x48\\x3b\\xc0\\x40\\x7c\\xac\\xc9\\x2d\\x00\\x63\\x23\\xa2\\xe7\\x0c\\x55\\xe6\\x3b\\x2e\\xaf\\xa8\\xe8\\x09\\x5d\\xb9\\x8b\\xac\\x54\\x96\\x21\\x6c\\x09\\xb5\\xf1\\x12\\x8b\\x2a\\xf0\\x63\\x24\\xd2\\xe0\\x61\\x40\\xe3\\x73\\x23\\x76\\x38\\x1d\\x7a\\x58\\x93\\x6f\\xec\\xf4\\x42\\x16\\x85\\xd2\\x46\\x04\\x36\\x4e\\xf6\\xde\\xcf\\xa8\\x92\\x02\\x10\\x95\\x4a\\xf1\\x03\\xa1\\x4a\\x6a\\xe3\\xc4\\x59\\xc2\\x1d\\xbb\\x23\\xd2\\xaa\\xae\\x55\\x6a\\x8a\\xeb\\xc6\\x3b\\xa1\\x1b\\x15\\x56\\xfe\\x84\\x9f\\x97\\xd4\\x76\\x0f\\xbe\\x72\\xd8\\xc6\\xf8\\xe5\\x50\\x12\\x8e\\x16\\xf4\\x08\\x01\\xd4\\x16\\x87\\xa2\\x8f\\xde\\xe2\\xa2\\x2f\\x42\\x55\\xa0\\x3f\\xa1\\x8a\\x43\\x31\\x02\\x32\\xd8\\x87\\x3f\\x51\\x74\\x28\\x4d\\x41\\xe1\\xc7\\xa2\\x3c\\xb0\\xdf\\x5f\\x00\\xf4\\x03\\xd1\\xef\\xd3\\xef\\x88\\x61\\x53\\x89\\xe7\\xe3\\xe0\\x95\\x52\\x7f\\x4e\\xf3\\xea\\xb5\\x35\\x1f\\xf8\\x58\\xd9\\x46\\x50\\xfa\\x62\\xd4\\xed\\xb9\\xc8\\xd2\\x0d\\x7d\\x94\\x97\\x7a\\x31\\xff\\xfe\\x7d\\x91\\xdc\\xb3\\xdd\\x05\\x69\\x9c\\x40\\x6c\\xdb\\xfc\\x0d\\xb7\\xf8\\xe2\\x90\\xe0\\x07\\x66\\x13\\xfb\\x62\\xd8\\xb5\\x1d\\x08\\x15\\x4b\\xeb\\xef\\xa8\\x73\\x1b\\xbe\\x2f\\x34\\x31\\xfc\\xde\\xad\\xb7\\x4c\\x0b\\x4e\\x1f\\x64\\xdc\\xb6\\xbe\\x4d\\x07\\x16\\x4c\\x34\\xa9\\xe1\\x6b\\xdd\\x6e\\xca\\xc5\\x0b\\xd7\\x84\\x67\\x8b\\xae\\x42\\x30\\x6c\\x3e\\x8b\\x2b\\x8e\\x5d\\xc5\\x36\\x4f\\x7c\\x06\\xd1\\x50\\x16\\xc0\\x9a\\x77\\x1a\\x61\\x9a\\x18\\xbe\\x7c\\xd8\\xa8\\x69\\xce\\xcb\\x64\\x5d\\xcd\\xec\\x8c\\x49\\x5a\\x55\\xcd\\xe2\\x39\\x29\\x14\\x87\\x6d\\x41\\xcf\\x98\\x7b\\x38\\xba\\x09\\x09\\x93\\x3b\\xcd\\xaf\\x8c\\xe0\\x2f\\xb6\\x92\\xa5\\x5f\\xfd\\x7e\\x78\\x58\\xb0\\x9a\\xde\\x88\\xce\\xf0\\xbc\\xd9\\xa4\\x29\\xff\\xd4\\x51\\x8e\\x77\\xf5\\x0f\\x03\\xbe\\x69\\x30\\x42\\x3d\\xb6\\x35\\x42\\x73\\x1c\\x95\\x09\\x89\\x54\\xb3\\x2b\\xfa\\x7d\\x60\\x3c\\x5a\\x5e\\xfa\\x1a\\x68\\x40\\x3d\\x12\\xdb\\x62\\x57\\x3c\\x17\\x0f\\x85\\x9e\\x57\\xab\\x22\\x13\\xa9\\x53\\x28\\xfa\\x65\\x83\\xd8\\x21\\x0d\\x7f\\xc5\\xea\\xc4\\xde\\x11\\xc1\\x16\\x1c\\x5b\\x8e\\xc0\\x40\\x06\\x56\\x7a\\x76\\xec\\xb8\\xb0\\x25\\x09\\x3c\\xe2\\x44\\x34\\xd0\\x3e\\x2b\\x8d\\x19\\x5d\\x2b\\xe0\\xb4\\xd2\\xac\\x4c\\x7d\\xf5\\xf6\\x58\\xfc\\x7c\\xf4\\xf1\\x48\\x9c\\x7c\\xfc\\xf0\\xdb\\xcb\\x8f\\xbf\\x7d\\x38\\x66\\x25\\x6b\\xe9\\x7c\\xb8\\x06\\xe2\\xe3\\x5c\\x69\\x25\\xe6\\x55\\x91\\x39\\x9f\\x9a\\x42\\x1a\\xd6\\xc1\\xb0\\x70\\x8f\\x6f\\xca\\x67\\x79\\x39\\x83\\xea\\xae\\x59\\x8a\\x43\\x3e\\xad\\x44\\x42\\x0e\\x39\\xde\\xe4\\xa1\\x4b\\xfe\\x5e\\x0d\\xfb\\x21\\x96\\x87\\x83\\xe7\\xf5\\x7b\\x42\\x69\\x93\\x2f\\xa4\\x51\\x14\\xbc\\x27\\x50\\xdb\\xb0\\xb2\\x01\\x75\\xc3\\x82\\x7d\\xd1\\xde\\xf8\\x9a\\x1c\\x70\\x2d\\x80\\xe5\\x94\\x33\\xf6\\x61\\xef\\x06\\x6c\\x71\\xd8\\x48\\x40\\x10\\x5d\\xe0\\xae\\xa8\\xa6\\x01\\x64\\x43\\x93\\x2d\\xbc\\xa6\\x6b\\x5a\\x3f\\x85\\x57\\x2f\\x6f\\x2b\\x86\\x70\\x7b\\xb0\\x15\\xc4\\x9e\\xa3\\xa7\\x9d\\xb7\\xe8\\xe5\\x43\\xfb\\x4e\\x06\\x6e\\x37\\xa5\\x11\\xe1\\x10\\xd4\\xba\\xeb\\x5f\\x49\\x1f\\x88\\xa3\\xa6\\x6f\\xbc\\xb3\\xec\\xc0\\x58\\x93\\xe9\\x1c\\x09\\x70\\x5a\\xd5\\x0b\\x32\\x8a\\xc1\\xeb\\x7b\\xde\\x7f\\x45\\xad\\xfa\\xb6\\x73\\xa1\\x1d\\xcb\\x03\\xcd\\x0f\\xf1\\x07\\x3b\\x1a\\xe9\\xc8\\xdd\\xab\\xfb\\xee\\x28\\xf6\\xb5\\x59\\x71\\x0c\\xd3\\xcf\\x4a\\x70\\xa1\\x66\\x57\\x6b\\x70\\x9d\\x16\\x5c\\x52\\xb8\\xcb\\xb4\\xf8\\x0a\\xae\\x71\\xf9\\xa6\\x5b\\x4b\\x52\\xd0\\xe2\\x20\\xc6\\x43\\x14\\xca\\xd8\\x95\\xa7\\xd0\\xad\\x21\\x85\\xd8\\xb0\\x27\\xeb\\xb4\\x43\\xfd\\x6e\\xd0\\x0e\\xba\\x17\\x6a\\x1b\\x45\\xea\\xeb\\xd4\\x43\\x37\\x3b\\xfb\\xb8\\x88\\x31\\x48\\x9a\\x0e\\x42\\x59\\x05\\x2f\\xcc\\x03\\xca\\x7e\\xcc\\x83\\xca\\x3d\\xdf\\x9c\\x8f\\x3d\\xfa\\x33\\x76\\xc3\\xca\\x51\\x6b\\xaf\\x16\\x08\\x53\\x2b\\x72\\xa9\\xcb\\x8d\\xb6\\x64\\x14\\x4c\\x6e\\x5a\\x28\\x59\\xfe\\xb6\\x74\\xb3\\x1b\\x4c\\x1d\\x85\\x23\\xf1\\x87\\xa0\\x4d\\x03\\x66\\xdf\\xf6\\x2f\\x2f\\x54\\x6d\\xfc\\xa5\\x89\\x66\\xd2\\x27\\x13\\x2c\\x36\\xdd\\x4a\\x54\\x8e\\x8f\\xbf\\xd2\\x0e\\x8a\\x91\\x07\\xd8\\xbb\\x0a\\x03\\xac\\x95\\x86\\x9f\\xef\\xa8\\x80\\xe1\\xd4\\xec\\xf0\\xc5\\x33\\x8f\\xec\\xe5\\xe5\\xc9\\x09\\x25\\x0c\\xc8\\x05\\x35\\xb7\\xa4\\xee\\x82\\xa0\\x62\\xe8\\x68\\xe0\\xa7\\xda\\x5d\\xd6\\xf4\\x2f\\xf3\\xcc\\xc2\\xe1\\xa8\\x44\\xf0\\xfd\\x63\\x85\\x07\\xaf\\x97\\x18\\xb9\\xdb\\x47\\xbe\\x58\\xcb\\xfb\\x3d\\x37\\xf3\\x37\\xa4\\x23\\x85\\x32\\x81\\xdf\\xa0\\x51\\xf5\\xb2\\x66\\xf5\\x2c\\x8a\\xcc\\x09\\x2b\\xcd\\x58\\x30\\x08\\x2c\\x04\\x68\\x54\\x6e\\x6e\\xc4\\xce\\xdf\\x4f\\xf5\\x5f\\x9c\\x4b\\x3c\\xca\\xd9\\x6d\\x76\\xcd\\x64\\x5f\\x4e\\x98\\xb5\\x9e\\xed\\x0f\\xef\\x40\\x74\\x7f\\x3d\\x2f\\xb8\\x40\\x83\\x9f\\x9f\\xb0\\xc0\\x99\\xb8\\xb9\\x21\\xa3\\xfc\\x28\\x91\\x4f\\x4e\\x03\\x7e\\x4c\\x23\\xd9\\x39\\x3d\\xd9\\xde\\x99\\xf5\\x44\\x27\\x5d\\xf4\\x7f\\xb8\\xdf\\xe9\\xda\\x39\\xff\\xc0\\xc7\\x1d\\x0e\\x7f\\x5b\\xab\\x65\\xad\\xb4\\x73\\x1a\\xa8\\xc2\\x37\\x69\\x02\\xb6\\x05\\xf3\\x83\\x0f\\x4f\\x50\\x44\\x90\\xa5\\x90\\xe2\\x01\\x12\\xef\\x42\\x2e\\x1f\\x58\\x31\\xdc\\x1b\\x18\\x59\\xe8\\x74\\x9e\\x62\\x4f\\x7c\\x6e\\x08\\x85\\xf9\\xa5\\x4a\\xf3\\x69\\x9e\\xe2\\x59\\xcd\\xa4\\x73\\x45\\x4f\\xd2\\x20\\x8f\\x42\\xba\\xd7\\x2e\\xea\\x08\\xba\\x1f\\xe2\\xa1\\x0a\\x68\\x0c\\x9f\\xa8\\xb6\\xe1\\x7b\\x1d\\xad\\xd2\\x36\\x67\\x69\\x51\\x47\\xcd\\x93\\x49\\x23\\xe0\\xd9\\xf3\\x2e\\xff\\x01\\x83\\x9d\\x54\\x2b\\xb3\\x46\\x70\\x36\\x86\\x27\\x50\\xb2\\x32\\x0e\\x0d\\x6c\\xdc\\x91\\x12\\x8e\\x07\\x6a\\x11\\x88\\xef\\xbb\\xeb\\xde\\xbf\\xe5\\xea\\x32\\x0c\\x62\\x28\\x96\\x12\\xdf\\xf3\\xa0\\x80\\x70\\xa4\\xf0\\x22\\x24\\x15\\xc5\\x0d\\x42\\x83\\x45\\xba\\xbd\\x7c\\x30\\x41\\xa6\\x67\\xc7\\x94\\x60\\xe4\\x9a\\xa3\\x80\\x82\\x0c\\xc4\\x27\\x59\\x53\\x89\\x89\\x12\\x72\\x52\\xe0\\x29\\x6e\\xa6\\xb8\\x13\\x14\\xd2\\x7f\\xc2\\x91\\x67\\xa8\\x3a\\x9c\\x77\\x64\\x39\\x2b\\xf8\\x5d\\xde\\xdc\\x88\\x24\\x2f\\xed\\x49\\xf5\\xe5\\x5c\\xd6\\xce\\xa4\\xd0\\xee\\x60\\x18\\x46\\xe8\\xbd\\x8b\\x90\\x43\\x2b\\x9f\\x3e\\x2f\\xa9\\xf9\\x43\\xd1\\x89\\x7a\\xb5\\x2f\\x06\\xa3\\xe5\\x55\\x87\\x2f\\x92\\x2d\\xab\\xc5\\x21\\x42\\x16\\xfe\\x65\\x59\\xab\\x7d\\x86\\xba\\xac\\x55\\xa7\\x27\\x3e\\x71\\x63\\x67\\x3d\\xd1\\xf1\\x81\\x97\\xfb\\xd0\\x8b\\x8e\\xbd\\x8a\\x28\\xcd\\xbe\\xfd\\x12\\x5a\\x0e\\x5a\\xa5\\x44\\x55\\xec\\xe3\\x7b\\x93\\x95\\xc6\\xbf\\xe9\\x62\\x5f\\xa4\\x8b\\x96\\x82\\xa6\\x96\\x79\\x91\\x97\\x33\\xf4\\x36\\xdb\\x27\\xc5\\x54\\x4b\\x31\\x8c\\x74\\x85\\x65\\xf4\\x3e\\xc6\\x85\\xbc\\xb9\\xe1\\xee\\x76\\x39\\x82\\xf0\\x4c\\x99\\x77\\xb8\\xae\\x93\\x0e\\xe0\\xf9\\x7b\\x2d\\x97\\x4b\\x74\\x30\\xb9\\x65\\x06\\x0c\\x53\\x3f\\xe0\\x91\\x25\\xdb\\x4b\\x9a\\x82\\x57\\x46\\xa1\\x7a\\x80\\x05\\x50\\x25\\x8a\\x6a\\x06\\x42\\x40\\xf8\\xc4\\xc0\\x42\\x9e\\x2b\\x7a\\xd7\\x25\\xd7\\xfc\\x74\\x35\\xdb\\xa9\\xb6\\x5e\\x0b\\x8e\\x69\\xeb\\xc4\\x16\\x6b\\xf2\\x17\\x8c\\x7e\\x5b\\xb3\\x22\\x38\\x55\\x45\\xf7\\x87\\x81\\x08\\x9f\\x37\\x2b\\x7d\\xca\\x41\\xa8\\x3f\\x13\\xfb\\x3e\\x99\\x76\\x31\\xbb\\x15\\x47\\xcf\\x22\\xf1\\xf4\\xb2\\x46\\x6e\\x18\\xa5\\xc9\\x2c\\xb3\\x77\\x78\\x98\\x84\\x3f\\xac\\x78\\x4e\\x83\\x88\\xce\\x0d\\x97\\x79\\xad\\x5c\\x84\\xbc\\xb9\\x4c\\xcf\\x35\\x3d\\x7b\\xe3\\xcc\\x76\\xfb\\xa4\\xa0\\x21\\x6a\\xa6\\xd7\\xa7\\xfc\\x93\\x3e\\xa6\\x12\\x99\\x92\\x05\\x69\\x0a\\x26\\x75\\x75\\xa9\\x55\\x2d\\xfe\\xb9\\xca\\xeb\\x73\\x56\\xa9\\x00\\x1f\\x6f\\x46\\x3a\\xf4\\x96\\x2f\\x03\\x17\\x75\\x0a\\x4e\\x00\\xb6\\x8f\\x8d\\xa7\\x19\\xf8\\xd8\\xee\\xdf\\x4d\\x08\\xce\\xa3\\x77\\xf6\\x96\\x1b\\x4d\\x9a\\x85\\x78\\x34\\xad\\xee\\xce\\x66\\x53\\xa0\\x79\\x7e\\x90\\x16\\x03\\x59\\x17\\x45\\x75\\x69\\xc5\\xfe\\xdf\\xc8\\xea\\x61\\xec\\x26\\x86\\x2d\\xd4\\x6c\\x4f\\xd4\\x15\\xc6\\xf5\\x2b\\xde\\x50\\x8f\\xf0\\x4c\\x13\\x5a\\xa1\\xd1\\x68\\x94\\x5a\\x91\\x96\\xc3\\xf2\\x2c\\xea\\x22\\xa3\\xd0\\xdb\\x68\\x44\\xd7\\x82\\x4a\\x10\\xf6\\xb3\\xcd\\xde\\x2a\\x50\\x70\\xae\\x65\\x5b\\x73\\xbf\\x30\\xca\\xbd\\x1d\\x05\\x6b\\x09\\x38\\x16\\x9f\\xab\\xbc\\xb4\\x0a\\xda\\x8d\\x20\\x7a\\x6b\\x15\\x6f\\x6e\\x50\\x55\\x7e\\x7b\\x27\\x02\\xee\\x7a\\xa7\\x0d\\x05\\x6f\\x75\\xf8\\x35\\x24\\x5c\\xc9\\x5e\\x4b\\xe5\\x08\\x11\\xff\\x66\\x15\\x5b\\xf1\\xe2\\xf3\\x68\\x52\\xa3\\xf0\\x45\\x2f\\x87\\x62\\xe0\\xb2\\x5c\\x0b\\xde\\x27\\xf1\\x66\\xc4\\x6f\\x7d\\x9e\\x9c\\x03\\x7a\\x09\\x5f\\x4a\\x5e\\x27\\x4a\\x28\\x80\\xf7\\x90\\xf4\\x28\\x8c\\x4d\\x66\\x86\\x3a\\x90\\xcb\\xa5\\x2a\\x33\\x8c\\x90\\x96\\xac\\x45\\x9d\\x6d\\x59\\x23\\xd1\\xc3\\xc6\\x27\\xa6\\x22\\x53\\x64\\x7c\\x00\\x81\\xc2\\x3f\\x90\\xe8\\xc3\\x9b\\xb1\\x0d\\x79\\x6f\\x4d\\x92\\x43\\x86\\xe7\\xb5\\xe5\\x84\\xb9\\x7f\\x61\\xa6\\xc1\\x42\\x79\\x4d\\x04\\x1d\\xda\\x54\\x30\\x75\\x02\\x61\\x9b\\xea\\xff\\x20\\x69\\x83\\x4c\\x51\\xdb\\xdb\\x73\\x30\\x56\\x7b\\x97\\x86\\x2f\\x68\\xbe\\xbb\\x19\\x20\\x62\\xb0\\x01\\x24\\xe7\\x85\\x40\\xed\\xbb\\x1e\\xb7\\xf6\\x59\\x6d\\x1b\\xda\\x53\\xeb\\x95\\x12\\xff\\xb1\\xfb\\x6c\\x68\\xcf\\x1c\\x76\\x0b\\x0a\\xb8\\xb7\\x44\\xdb\\xff\\xe6\\x84\\xa2\\xdf\\x29\\x4c\\xa7\\x1b\\xdf\\x9d\\xd3\\x49\\xba\\xe8\\x1b\\x39\\x39\\x9d\\xb0\\xf0\\x0a\\x65\\xc8\\x6c\\x92\\xae\\x0f\\x10\\x5d\\x48\\xfb\\xe7\\x4a\\xd5\\xd7\\x14\\xb8\\xb1\\x42\\xa5\\xde\\x7a\\x6a\\xd2\\x19\\x10\\xb4\\x4e\\x1b\\x0b\\xb4\\x58\\x38\\xe0\\x62\\x8c\\xc2\\xa7\\x91\\x93\\xfe\\x65\\x2d\\x97\\x7d\\x60\\xee\\xc1\\x33\\xea\\xc1\\x73\\x01\\x1d\\x62\\xf1\\xc0\\x79\\x3a\\xf4\\x50\\x40\\x63\\xf7\\x71\\x1b\\x8d\\x0f\\xcc\\x1a\\x24\\x05\\xfd\\xd9\\xfa\\xb6\\x95\\xdc\\x5a\\xf9\\xce\\x35\\x1c\\xc4\\xed\\xa3\\x42\\xcd\\xe8\\x6f\\x72\\x55\\x98\\x13\\x10\\x6b\\x65\\x01\\x22\\xd5\\x7b\\x10\\xc2\\xe7\\x15\\x94\\x8c\\xbc\\xb7\\x0d\\xef\\x12\\x6b\\xe1\\x87\\x77\\x77\\x3b\\x24\\xac\\xb3\\x46\\x20\\x9d\\x4b\\x0a\\x21\\x4a\\x17\\xac\\x26\\x37\\x74\\x37\\x74\\x7a\\xba\\xea\\x88\\x6d\\x91\\xce\\xc3\\x57\\xc7\\x87\\xdd\\x81\\xa9\\xe8\\x56\\x32\\x19\\x3d\\xf1\\xb5\\xe2\\xc0\\x8e\\xb2\\xce\\x65\\xbf\\x90\\x13\\x55\\x74\\x7a\\x21\\xd8\\x30\\xbc\\x23\\xee\\xd2\\x74\\x52\\xf8\\x29\\x7c\\x68\\xae\\xe5\\xac\\x30\\xa5\\xa3\\x20\\x31\\x2f\\x43\\x1b\\x1b\\x32\\x82\\x2c\\xa3\\x50\\xdb\\x5b\\xfc\\x20\\x9d\\x3d\\x28\\x0c\\xc4\\x47\\x7c\\x2c\\x33\\x95\\x75\\x78\\xf3\\xa2\\x69\\xd4\\x82\\xdb\\x15\\xfb\\x26\\xae\\x8a\\xb4\\xf4\\x7e\\x63\\x4d\\xdc\\x7e\\x65\\x2f\\x0b\\xf1\\x00\\xc7\\x36\\x9c\\xf8\\x5d\\x95\\x19\\x7f\\xc3\\x2e\\xf6\\x44\\xaa\\xc3\\x93\\x1d\\x69\\xf4\\xd6\\xd4\\x9e\\xcc\\xf2\\x3e\\x92\\x02\\xc4\\x92\\x43\\x20\\x17\\xc2\\x09\\xce\\xff\\x62\\x45\\x8f\\x23\\x9b\\x50\\xcc\\x44\\x87\\x2c\\xd2\\xa0\\x50\\x48\\x5d\\xea\\x64\\xb0\\x6a\\xad\\x75\\xb9\\xf6\\x54\\xa3\\x7b\\x62\\xb1\\xd2\\x06\\xe4\\xca\\xe0\\x02\\x35\\x90\\xcc\\xdd\\xc9\\x94\\xea\\x70\\x90\\x03\\xe8\\x8c\\xe5\\x0f\\x7e\\x39\\x16\\x62\\x7b\\xfd\\x9a\\xd4\\x4b\\xf8\\x9b\\xc2\\x30\\x07\\x63\\xd0\\x6d\\xca\\x27\\x31\\x3f\\xc4\\x8b\\xa7\\x50\\x06\\xdc\\x0e\\x9b\\x73\\x22\\xbc\\x97\\x13\\x36\\x85\\x5a\\x0f\\xfa\\xec\\xa2\\x92\\xc6\\xd2\\xe5\\x5a\\x4f\\x22\\x06\\xbf\\xb1\\x53\\x36\\xc6\\xeb\\x2f\\xb5\\x9c\\x2d\\xac\\x71\\x57\\x14\\x96\\x18\\x7f\\xdb\\xb0\\x16\\x75\\xe8\\x2a\\x62\\x87\\x18\\xf8\\xe0\\x2b\\x7e\\xba\\xc7\\x9a\\x09\\xf1\\x85\\x10\\x87\\xe1\\x82\\x52\\xea\\x4a\\xa5\\x89\\xb7\\xee\\xe5\\x49\\x3f\\xcf\\x97\\x4b\\x54\\x7e\\x2f\\xc4\\xa1\\x58\\xb0\\x71\\x4a\\x1f\\xdb\\xde\\x0f\\x3b\\x44\\x69\\x81\\xc4\\xc2\\x35\\x9b\\x0e\\x39\\x14\\x5e\\xfb\\x1b\\x66\\x2e\\x0c\\x69\\x4c\\x33\\x63\\x21\\x06\\xce\\x2c\\x77\\xcc\\x48\\x9b\\x8c\\x10\\xc7\\x85\\xbf\\x32\\x67\\xd1\\x43\\x81\\x1c\\xcb\\xa4\\xad\\xa2\\xb9\\x32\\x61\\xc9\\xef\\xa1\\x27\\xc6\\xba\\x07\\x3d\\xef\\xae\\x41\\x60\\x1a\\xe7\\x42\\x6b\\xd9\\x4c\\x38\\x71\\x76\\xe4\\x42\\xb4\\x68\\xda\\x1e\\xb9\\xa0\\xcb\\x76\\xea\\xbc\\xfe\\x9e\\xc7\\xbf\\xed\\x71\\x58\\xbc\\x3d\\x42\\x23\\x4c\\x60\\xd0\\x66\\xed\\x15\\x6c\\x1f\\x7e\\x28\\x58\\xfc\\x6b\\xe6\\x22\\x46\\x4e\\x28\\xec\\xbd\\x8f\\x52\\xd4\\x8f\\xba\\xfa\\xa3\\x4d\\x77\\xc0\\x2d\\x3e\\x5f\\x9b\\x2e\\x0d\\x1c\\xe9\\xc4\\xd4\\x89\\x6d\\xa3\\xdb\\xb3\\x7b\\x73\\x27\\xa0\\x08\\x04\\xd7\\xd8\\x34\\xea\\xaa\\x80\\x4d\\xb9\\x13\\xb2\\xfe\\xce\\xdd\\x55\\x82\\xa0\\xf6\\x30\\x18\\x9b\\xa6\\xcd\\xe2\\x62\\x27\\xc6\\x1b\\x48\\xf9\\xb1\\xac\\xf1\\xc1\\x77\\xff\\xbb\\x8c\\xc6\\xf6\\x5b\\xbb\\x1f\\xc1\\x3b\\xc4\\xfd\\xf6\\xd1\\x30\\x43\\x3b\\x2f\\xf8\\xba\\xfb\\xa8\\x6d\\xeb\\xfd\\xd6\\x3e\\x02\\xf0\\x8d\\x7d\\x1c\\xc5\\x9d\\x5b\\x47\\xbd\\x85\\x20\\x74\\xbb\\x14\\x11\\xb7\\xf3\\x3d\\x38\\xfd\\xbb\\x0b\\xfd\\x87\\xd1\\xf7\\x2c\\xf5\\x1f\\x46\\x6d\\x8b\\xbd\\x39\\x1e\\x5b\\xdf\\xcf\\x0b\\x46\\x3d\\xea\\x75\\x77\\x6b\\x6d\\x99\\xa3\\x8f\\xba\\xbf\\x58\\x6b\\xdd\\x90\\xc5\\x38\\xdc\\xde\\x43\\xe9\\x29\\x66\\xc4\\x14\\xee\\xfd\\xe1\\xae\\x8b\\xf2\\xc7\\x3a\\x60\\x2f\\x5d\\xe0\\x4b\\x2e\\x2c\\x5f\\x20\\x79\\xda\\xed\\xeb\\xe6\\xc6\\x8b\\x19\\x6c\\xc8\\xb6\\x2a\\x8a\\xc8\\xb2\\x85\\x24\\xca\\xc0\\xcc\\xca\\x02\\x45\\xbb\\x35\\x57\\x7a\\x7b\\x1c\\xb6\\xe7\\xad\\x7b\\x6c\\xb3\\x6b\\xa5\\x1d\\x3e\\xfe\\x4e\\xbc\\x4d\\xd4\\x0c\\x94\\x6e\\xae\\x3a\\xc9\\x46\\xae\\x09\\x12\\x09\\xad\\x25\\xab\\x13\\x3c\\xe9\\x6f\\x14\\x79\\xe3\\xae\\x03\\x25\\x56\\xee\\x36\\xe6\\xa3\\xad\\xa0\\x13\\x12\\xa2\\x38\\x77\\x6b\\x32\\x96\\x9d\\x4a\\xb2\\x46\\x0e\\xac\\x54\\x23\\x07\\x3a\\x7c\\x2d\\xe4\\xde\\x8e\\x10\\x3b\\xb1\\x64\\xe4\\xa3\\xcd\\x5f\\x19\\x7f\\xc7\\x0d\\xf0\\x7f\\xb2\\x4f\\x6f\\xc7\\x0d\\x04\\xaf\\x15\\xe0\\x6c\\xb5\\x99\\xe5\\x07\\x4d\\xaf\\xe9\\xd7\\x28\\x8a\\x8a\\xa5\\xb3\\x23\\x93\\xe4\\x41\\xb8\\x17\\x0a\\x0e\\x26\\x30\\xfe\\x6e\\x88\\xc4\\xfd\\xfb\\x7c\\x22\\x6e\\x10\\x24\\xd0\\x8c\\x69\\xd0\\x6c\\x8e\\xef\\xfb\\x11\\xa5\\x06\\x87\\x31\\x6c\\xd7\\x3e\\x59\\xe2\\x66\\x0b\\x7b\\xb2\\x3d\\x16\\x29\\xf1\\xda\\xb8\\xe3\\x0e\\x9d\\xf6\\x37\\x02\\xf0\\x28\\xf0\\x7b\\x55\\x9f\\x5b\\xa3\\xa5\\xb2\\xc2\\xe8\\x38\\x4a\\x64\\xf9\\xc2\\x06\\xf9\\x9c\\xa8\\xbc\\x9c\\xf1\\x1b\\x24\\xec\\x70\\x13\\x6a\\xf6\\xf1\\xd5\\xaf\\x7c\\x36\\xc7\\x77\\x53\\x31\\xac\\x39\\x76\\xa7\\x4d\\xb4\\xb7\\x3a\\x33\\xb4\\x8f\\x71\\x8a\\xb2\\x20\\x7a\\x91\\xbf\\xa9\\xfd\\x77\\x0e\\x01\\xde\\x1a\\xd0\\x1a\\xd9\\xd1\\xdf\\x6d\\xd1\\x11\\xe9\\xa2\\x8f\\x2a\\xfa\\x3e\\xa9\\xe2\\x71\\x9b\\x68\\xa6\\x79\\xeb\\x06\\xbe\\xec\\x8f\\xf8\\x96\\x75\\x39\\x20\\x5b\\xad\\xa6\\x08\\xde\\x30\\xa8\\xc6\\x93\\xff\\x2f\\x36\\x44\\x26\\xbe\\x63\\x8e\\xea\\x60\\xf2\\xbb\\x5d\\x6a\\x67\\x05\\xc5\\x00\\xf1\\x8a\\x26\\xd7\\xf6\\x70\\x61\\x11\\x59\\x12\\x1e\\x0d\\xc9\\xa4\\x8d\\x6e\\xc3\\xb7\\xac\\x23\\xc2\\x45\\xf1\\x87\\xc0\\xd0\\x1b\\xc4\\x0d\\xa7\\x6f\\xc8\\x1b\\x98\\xca\\x1a\\x7b\\xa0\\x77\\x19\\x24\\xe1\\x05\\xe6\\xf3\\xb1\\x70\\xce\\x21\\xb1\\x44\\x15\\x4a\\x5c\\x0e\\xc4\\x98\\xfd\\xcd\\xe3\\xb8\\x37\\xff\\xea\\x94\\xba\\x26\\xd6\\xa1\\x78\\x13\\x72\\xdb\\x36\\xbb\\x7b\\x77\\x5b\\xe1\\x73\\x0c\\x2c\\x0f\\x3b\\x34\\xea\\x38\\x69\\x5a\\x98\\x0a\\x11\\xdc\\x95\\x5b\\x99\\xbb\\xd1\\x4c\\xc3\\x2a\\x84\\xb3\\x83\\xfd\\x2a\\x64\\x7c\\x88\\xfa\\xcb\\xaa\\x80\\x89\\xa7\\x1b\\x5b\\xdf\\x1b\\x8d\\x52\\x22\\x5d\\x07\\xf7\\x44\\x8e\\x2f\\x23\\xfe\\x9e\\x67\\x33\\x15\\x78\\xa1\\x5d\\xe2\\x6f\\x31\\x16\\xf7\\xc2\\x7c\\x0a\\xcb\\x04\\xf5\\x06\\x54\\xe0\\x2d\\xb9\\xa7\\xa1\\x76\\xc9\\x42\\xf8\\x3e\\xb9\\x1c\\x71\\xb1\\x75\\x9d\\xf3\\x55\\xb3\\xd1\\x40\\xba\\xb1\\xda\\xc4\\xbc\\x5c\\xae\\xcc\\xa0\\x54\\x2a\\xd3\\xac\\x83\\x76\\x12\\x4c\\x68\\xce\\x76\\x8f\\x61\\x3b\\xce\\xe6\\x7a\\x76\\xd7\\x66\\xd2\\x38\\x19\\x59\\x65\\x26\\xed\\x7e\\x4e\\x86\\x21\\x50\\xeb\\xc2\\x13\\x0d\\x51\\xc7\\x8e\\xf1\\x20\\xcf\\xc2\\x58\\xe6\\x97\\xc1\\x50\\x8b\\xcd\\x3d\\xd3\\xca\\xfc\\x56\\xaa\\x2c\\x37\\x72\\x52\\xa8\\x24\\xec\\xc5\\x5d\\x88\\xfb\\x72\\xe1\\x7e\\x69\\xcf\\x22\\x24\\xf2\\x6f\\x92\\x6a\\xec\\x2b\\x76\\xc0\\x65\\xdf\\xa1\\x23\\x80\\xf6\\xa1\\x47\\x30\\xfa\\xba\\xf4\\xa1\\x59\\xe9\\xee\\x96\\x6d\\x42\\xe4\\x39\\xb0\\xed\\xd0\\xd4\\xc7\\x5e\\xc8\\x93\\xd9\\x04\\x51\\x37\\x5e\\xc7\\xc8\\x14\\xed\\xea\\xa2\\x08\\xbc\\x5f\\xb9\\x4b\\x70\\xd6\\x1f\\x7e\\xbf\\x45\\xbb\\x70\\x54\\xa3\\x47\\x96\\x28\\xb2\\x28\\x58\\xe5\\x12\\x18\\xec\\xb9\\xa0\\x1b\\xac\\xf0\\x90\\xa5\\xe3\\xdd\\x9e\\xab\\xa1\\x0c\\x3d\\x3a\\xc0\\x2f\\xcf\\xad\\xb5\\x80\\x63\\x6d\\x3f\\x8c\\xb6\\xc7\\xbb\\x9b\\x2f\\x6b\\xfc\\xd2\\x62\\x04\\x78\\x05\\x4b\\xdb\\x3a\\x47\\x03\\xc8\\x41\\x00\\xee\\x6d\\x36\\x1d\\xc0\\x12\\x18\\xdf\\x62\\x5d\\x9a\\x77\\x44\\x47\\x7c\\xce\\x2a\\x3f\\x51\\x8b\\x8b\\xd2\\x99\\x6d\\xda\\x2a\\x4d\\xdc\\x73\\x49\\x1c\\x7b\\x84\\x19\\x4c\\xa7\\xe3\\x9d\\x7b\\xb4\\xb6\\x31\\xa2\\xd5\\x95\\x61\\xfb\\x23\\xac\\x02\\x83\\xc4\\x7c\\x0c\\xbe\\x1e\\x3b\\x5e\\x49\\x19\\x9e\\xcb\\x59\\xfe\\x66\\x19\\xcd\\xd6\\xda\\xae\\x84\\xaf\\x29\\x05\\xe0\\x51\\xf7\\x01\\x5c\\x62\\x67\\x47\\xf0\\x55\\x94\\xd5\\xec\\xd3\\x6a\\x11\\x5a\\x19\\xa7\\x39\\x61\\x34\\x50\\x3f\\xe2\\xf1\\xe0\\x9f\\x27\\x21\\x2b\\xb5\\xe2\\x65\\x8a\\x3a\\x5a\\x96\\x8c\\x85\\xc7\\x8c\\xb9\\xed\\x41\\xdc\\xd7\\x57\\x25\\xc6\\x1c\\xbf\\x0e\\xf6\\x3f\\x0c\\x67\\xf9\\x53\\x55\\x9d\\x03\\x3a\\x9a\\x5f\\x99\\xb2\\xbb\\x85\\xbe\\x63\\x67\\xfc\\x4c\\x3b\\xe3\\x67\\xa0\\x1f\\x20\\xb2\\x20\\xce\\xc5\\xe7\\xe6\\x41\\x5e\\x2f\\xb9\\x0f\\xfa\\xd3\\xe7\\xb3\\x1e\\x2b\\x80\\x88\\x96\\xeb\\x68\\xab\\x5c\\xb0\\xf7\\xe0\\x58\\x74\\x26\\x8c\\x13\\x8b\\x7b\\xfc\\xaa\\x3f\\xf9\\x74\\x03\\x5f\\x0e\\x58\\x72\\x1c\\x1d\\x24\\xee\\x11\\xb1\\xe4\\x85\\x3f\\xd5\\x45\\x6f\\x6a\\xb8\\x3d\\x98\\xa1\\x42\\x92\\xa9\\x42\\x53\\x56\\x4a\\x78\\x81\\x05\\xe0\\xcc\\x32\\xf0\\x43\\x4c\\x78\\x51\\x71\\xae\\x1f\\xe3\\xd9\\x8d\\x11\\xe3\\x26\\x4d\\x15\\xc6\\x27\\x73\\x09\\x0c\\x21\\x98\\xaf\\x17\\x94\\x19\\x03\\x11\\xf1\\x8c\\x62\\x89\\x28\\xbb\\x41\\x39\\x8e\\x34\\x42\\x91\\xc2\\x0f\\x77\\x70\\xa5\\xf1\\x25\\x20\\x40\\xe7\\x0b\\x15\\x94\\x68\\xab\\x4d\\x5e\\x68\\x44\\x84\\x49\\x8a\\x96\\x3a\\xf0\\xb9\\x2d\\x3a\\x07\\x3e\\xce\\x0a\\x96\\x6b\\xa9\\x1d\\xc8\\x06\\xeb\\x43\\xe7\\xd0\\x71\\x65\\x02\\x9c\\xd6\\xce\\x78\\x21\\x58\\x77\\xa4\\x0b\\xe7\\xc7\\x0f\\x1a\\x40\\x4e\\x3c\\x81\\xe3\\xfb\\xf1\\x01\\xb9\\xfb\\x9b\\x26\\x0f\\xa9\\x67\\x27\\x62\\xbd\\x31\\x5a\\x87\\x70\\x7a\\xf2\\xe7\\x3f\\x5e\\x9a\\x36\\xb3\\x65\\xd8\\x42\\x12\\xfa\\xff\\x98\\x7b\\xf7\\xee\\x36\\x6e\\x64\\x5f\\xf4\\x7f\\x7d\\x0a\\x58\\x27\\xc7\\x21\\x47\\x24\\x25\\x39\\xc9\\xd9\\xb3\\x25\\xd3\\x5e\\x8e\\xed\\xc4\\x5e\\xc7\\xaf\\x1b\\x6b\\xe2\\x64\\xfb\\x78\\xcd\\x34\\xd9\\x90\\xd8\\x51\\xb3\\xc1\\xdd\\xdd\\x14\\xc5\\xd8\\xfa\\xee\\x77\\xa1\\x1e\\x40\\x01\\x8d\\xa6\\xe4\\x99\\x39\\x77\\xdd\\xfc\\x31\\x63\\x35\\xf1\\x46\\xa1\\x50\\xa8\\xc7\\xaf\\x06\\xf7\\xfc\\x9f\\xf6\\x21\\x8c\\x19\\xae\\x9c\\x2c\\xf3\\x1a\\xdd\\xd8\\x06\\xae\\xd0\\x84\\x25\\x99\\xe5\\x50\\x3d\\x54\\x47\\xc3\\x61\\xb0\\xfb\\x9f\\x03\\x16\\xd0\\xac\\x44\\xef\\x09\\xc2\\x7f\\xd4\\x47\\x75\\xf6\\xd7\\x90\\xee\\x62\\xaa\\x83\\xf4\\x06\\x31\\x5d\\x49\\x91\\xd5\\x2d\\x6a\\x90\\xb0\\xe1\\x0f\\xb8\\x79\\x2c\\xdf\\x80\\x9b\\xc7\\x15\\x72\\xdc\\xc3\\x7e\\x07\\xc4\\x1f\\x61\\x60\\x0e\\x9a\\xfb\\x08\\x25\\xd4\\xf1\\xa7\\xee\\xb6\\x06\\xa4\\xef\\xc8\\x25\\xa8\\x09\\x99\\x1e\\xd8\\x1e\\x4b\\x77\\x64\\xb4\\xfe\\xbc\\xce\\x11\\x35\\x8a\\x29\\x3c\\xe0\\x29\\x3c\\x50\\x0f\\x63\\x76\\x23\\xb8\\xe0\\x37\\x0f\\x3a\\x56\\xf2\\x1e\\x11\\xf5\\x68\\x14\\x35\\xf3\\xf1\\x8f\\x6f\\x1e\\x50\\x4e\\x6a\\x3f\\xd0\\x90\\x6c\\xa2\\x81\\x7e\\xf9\\xa2\\x8e\\x86\\x7e\\xb8\\xa1\\x22\\xa9\\xa7\\x5b\\xd1\\x86\\x60\\x7a\\x8f\\xe1\\x86\\x3d\\x80\\x6c\\x7d\\xb2\\xc0\\x10\\xb5\\xed\\x09\\x07\\x20\\xff\\x5f\\x97\\x4a\\xbb\\xeb\\x29\\xe3\\x3f\\xa3\\x89\\x89\\x61\\x24\\x00\\xaa\\xd2\\x85\\x69\\x7b\\x24\\xd9\\xfb\\xe4\\x71\\x9e\\x28\\xbd\\x2e\\x88\\x40\\x3f\\x4a\\x00\\x26\\x72\\x6f\\x2e\\xf7\\x32\\x5d\\xaf\\x20\\x75\\xa3\\x73\\x26\\x2f\\x75\\x35\\x92\\x74\\xd6\\x6f\\xf9\\x60\\xbd\\x4a\\x7c\\xfb\\xe1\\xb3\\xb6\\x63\\xe8\\x09\\x66\\xe5\\x89\\xb0\\x0b\\x75\\x05\\x3a\\x21\\x12\\xf4\\x10\\x3e\\x0c\\xc6\\xf8\\x38\\x7a\\xa7\\xc1\\xc7\\x31\\xae\\xc7\\x89\\x7c\\xe6\\xaa\\x84\\x7b\\x91\\x78\\xec\\x71\\xeb\\xa3\\xce\\x9b\\xde\\xdf\\x07\\x27\\x42\\x46\\xda\\xb5\\xff\\xb1\\xc0\\x44\\x93\\xe6\\x2e\\x84\\xdf\\x85\\xe0\\x27\\x8f\\xc3\\x83\\x7b\\x02\\x42\\x5b\\xf7\\x29\\xa9\\x22\\x42\\x80\\xa5\\x98\\xc2\\xb4\\x87\\xea\\x73\\xf7\\x41\\x29\\xd6\\xe3\\x94\\xc4\\x43\\xfb\\xe9\\x14\\xb7\\xdc\\xb7\\x85\\x3f\\xe9\\xca\\x1b\\x42\\x3a\\xd2\\x96\\xbb\\x44\\x6f\\xc2\\xe7\\xeb\\x2d\\xf2\\xef\\xc1\\xc1\\x27\\xff\\x8c\\xc5\\x96\\x76\\x09\\xc3\\x07\\x07\\x69\\x51\\x38\\x7c\\xf3\\x92\\x17\\x67\\xe3\\x33\\xcd\\x64\\xb5\\xcf\\x4b\\xe3\\x6c\\xcd\\xa0\\xf9\\x20\\x78\\x16\\x08\\xf3\\x23\\xc4\\x96\\xbc\\xce\\x36\\xd5\\x90\\xe2\\xba\\x5a\\x76\\x5c\\x75\\x0f\\x40\\xf5\\x04\\x02\\x13\\xc0\\x51\\x6a\\x99\\x6d\\x31\\xec\\xab\\x59\\x99\\x0a\\x5a\\x5f\\xae\\xcb\\xb6\\x58\\x95\\xe8\\x42\\x2f\\x3d\\xf1\\x20\\x69\\x6a\\xbb\\x30\\x00\\x8f\\x08\\x1e\\xfd\\x95\\x9e\\xb7\\xe8\\x89\\xea\\x4f\\x26\\x64\\xfb\\x93\\x1e\\xd9\\xdc\\x95\\x0f\\x6e\\x21\\x08\\xb0\\xc0\\x0d\\xd4\\x85\\xd6\\x95\\x02\\x69\\xb6\\x0c\\xc0\\x67\\xd1\\x29\\xbb\\x2d\\xaa\\x35\\x97\\xc3\\x21\\x65\\xd5\\x96\\x2b\\xd4\\x98\\xdd\\x19\\x1d\\x04\\xf9\\xf9\\x55\\x54\\x6b\\x9d\\x3b\\x47\\xaf\\xc3\\x43\\xf5\\xc6\\x3d\\xff\\x42\\x4f\\xc3\\xa2\\xea\\xf8\\x17\\x3a\\x50\\x0b\\xca\\x90\\xe1\\x3a\\x79\\xec\\x1c\\xc8\\x18\\x49\\xdf\\x7e\\x1e\\x5a\\xfe\\x09\\x3f\\x10\\x6f\\x3d\\xe6\\x06\\x28\\xf3\\xa2\\x8c\\xec\\x90\\xa0\\x19\\x8b\\x22\\xcf\\xe1\\xc9\\x63\\x2b\\xbf\\x6c\\x5e\\xc0\\x9f\\x22\\x1c\\x88\\x9d\\xd2\\xe1\\xe9\\xae\\x32\\x5c\\x65\\x3b\\x03\\xb7\\x91\\x2e\\x25\\x11\\xf9\\x16\\x61\\xbc\\x7a\\x89\\x89\\x6b\\x43\\x1d\\x8a\\x2d\\x0f\\x78\\x09\\xe0\\x60\\x62\\x59\\xb6\\xe5\\x10\\xfe\\x31\\x8a\\xe0\\x97\\xf8\\x4a\\xb0\\x47\\xf8\\x1d\\x98\\x5f\\x7d\\x3e\\x26\\x84\\xc8\\xaf\\xcd\\xf2\\x94\\x10\\x94\\xec\\x81\\xa3\\xbc\\xaa\\x58\\x3c\\xc8\\xbf\\x63\\x47\\x87\\xb1\\xe1\\x8e\\x14\\x18\\xa9\\x83\\xe3\\x9e\\xf8\\x6f\\x7b\\x8e\\x45\\xda\\x5a\\x6a\\xcd\\x31\\x56\\xdb\\xd4\\xa4\\x61\\x23\\x1f\\xc2\\x18\\x81\\x18\\x67\\x7f\\x18\\x46\\x90\\x10\\xf6\\x57\\x46\\x4c\\x31\\x2b\\x02\\x58\\xfd\\xb9\\x36\\xeb\\x15\\xaf\\xbd\\x00\\x34\\x5a\\x37\\x8b\\xb7\\x5c\\x66\\x60\\x56\\x5e\\x87\\x1e\\xd6\\xe4\\x79\\x85\\x5f\\x27\\x66\\x45\\x4f\\x10\\xb3\\x1a\\xc6\\xf6\\x77\\xb3\\x9a\\x98\\x4d\\xd5\\x70\\xc7\\x9d\\x91\\xf0\\x45\\x60\\x56\\xcd\\x89\\xfa\\x68\\x56\\x9f\\x98\\xf7\\xe6\\xba\\xcc\\xb6\\x3a\\x7f\\x9a\\x95\\xe5\\x2c\\x9b\\x5f\\xda\\x5f\\x3f\\xf5\\x68\\xc6\\xce\\x8b\\x5a\\xbb\\x72\\x3f\\x99\\xfa\\xed\\xaa\\x19\\x5c\\xf8\\xf1\\x5a\\xc2\\xc9\\xca\\xb2\\xe1\\x26\\x01\\xaa\\x00\\xca\\x82\\x3e\\x63\\xbe\\xae\\x1b\\x53\\x3f\\x99\\xb7\\xc5\\x55\\xd1\\x6e\\xd5\\x22\\xab\\xf2\\x52\\xd7\\x8d\\x5a\\x57\\x6d\\x51\\xaa\\xca\\x60\\x0b\\x76\\xff\\x8c\\x3d\\x25\\xd9\\x6a\\xa5\\x33\\x07\\x32\\xe6\\x5a\\x9a\\x2a\\xe8\\x71\\x12\\x0f\\x1b\\x1f\\xeb\\x47\\x10\\xd2\\x25\\x55\\x14\\xa8\\x6f\\x75\\xf5\\x03\\x9d\\xab\\x57\\xd9\\xf3\\xcf\\x1f\\x8b\\x4f\\x98\\x7c\\x12\\xc5\\x86\\x9b\\x50\\xd5\\x21\\x9e\\xa9\\x17\\x6e\\x43\\x9c\\xb0\\x29\\x95\\xb8\\x48\\x0c\\x6e\\xb0\\x66\\x65\\x1f\\xab\\xe2\\x6a\\x37\\xab\\x49\\xb8\\x1c\\x2f\\x68\\x35\\xa4\\x94\\x47\\x82\\x41\\xa7\\xac\\x9d\\xb3\\xce\\xd5\\x43\\xd5\\xdb\\x4a\\x80\\xb6\\xc1\\xcd\\xf5\\x96\\xfe\\xd8\\xd3\\xc3\\xc1\\x81\\x58\\x8c\\x11\\xd4\\x5f\\x7a\\x39\\x12\\xc1\\x2c\\x68\\x8c\\xa9\\x35\\x1e\\x46\\xb4\\x53\\x15\\x21\\xf1\\x83\\x6a\\xe0\\xe9\\xcc\\xf3\\x83\\x0b\\x47\\xbb\\x9e\\x94\\x59\\xf7\\xc4\\x64\\xe6\\xe5\\x38\\x87\\xda\\xbe\\x83\\x2a\\x03\\x04\\xf7\\xc4\\x89\\x92\\x7a\\x64\\x18\\x0c\\x55\\x64\\xca\\x47\\x98\\xf6\\xd5\\x22\\xab\\x9e\\x45\\xe4\\xe6\\xce\\xf6\\xe1\\xa1\\x7a\\x7b\\xde\\x5a\\xb9\\x6e\\xa3\\xd5\\x26\\xc3\\x40\\x02\\xf4\\xab\\x53\\x10\\xac\\x06\\xc1\\x18\\x19\\x06\\x66\\xa8\\xcd\\x42\\xd7\\xda\\x96\\xcc\\xd0\\xe3\\x9a\\x42\\xc8\\x96\\x45\\x9e\\x97\\xc0\\x67\\xc1\\x05\\x7b\\x63\\xea\\x4b\\x89\\xaa\\x86\\xcd\\x2e\\x34\\x9f\\x19\\x1f\\x33\\x4e\\x60\\x20\\x90\\x1b\\x0e\\x02\\x84\\x96\\xba\\x5d\\x98\\x9c\\x61\\x96\\x95\\xce\\x8b\\xd6\\xd4\\x1c\\x1c\\xb2\\x84\\xd8\\x87\\x19\\xf4\\x9c\\x55\\xaa\\xa8\\xe6\\xa6\\x6a\\x8a\\xa6\\xe5\\x88\\x10\\x0c\\xf1\\xac\\x55\\x53\\x2c\\x57\\xe5\\x56\\x55\\xa6\\x55\\xfa\\x7a\\xa5\\xe7\\xad\\xbd\\xfb\\xa8\\x03\\x9a\\x13\\x44\\x4b\\xac\\x56\\xba\\x82\\x48\\x10\\x9c\\xef\\xab\\xac\\xd5\\x35\\x85\\x10\\x6d\\x16\\x1a\\x8a\\x03\\x50\\x2e\\xcc\\xd6\\x36\\xc1\\x67\\x1e\\x9d\\xd4\\x9a\\xf9\\x42\\xe7\\xeb\\x52\\x37\\xe4\\xa4\\xb6\\xa4\\x80\\x0a\\x7d\\xad\\xe7\\x6b\\x7b\\xe1\\x43\\x30\\x3c\\x78\\xaf\\x65\\x4d\\xeb\\xb7\\xce\\x6e\\x55\\x33\\x52\\x76\\x5e\\xc5\\xb9\\x65\\x1c\\x76\\xf6\\xee\\xc7\\xa2\\x51\\x99\\x25\\x63\\x3d\\xc2\\xfa\\x99\\x6a\\x8b\\xa5\\x36\\xeb\\x16\\x08\\x45\\x5e\\x52\\x62\\xd4\\x03\\xbd\\x2c\\x5a\\x08\\x9f\\x07\\x9d\\xd1\\xe1\\x5f\\x46\\xea\\x2a\\x2b\\xd7\\xba\\x99\\x4c\\x26\\x7f\\x39\\x0c\\xae\\x2c\\x74\\x4e\\xe7\\xb3\\x13\\x56\\x74\\x19\\xeb\\xb3\\x9a\\xad\\x3b\\x09\\x0f\\xb7\\xac\\xbe\\xf8\\x9a\\xd4\\xb7\\xf6\\x6a\\x6e\\xda\\x9d\\xf7\\x84\\x2d\\xd0\\x61\\xfa\\x1d\\x16\\x19\\x26\\x24\\x4d\\xd3\\x75\\xdc\\x62\\xb2\\x50\\x7c\\xf7\\xec\\x2c\\xec\\xfd\\xe9\\x1b\\xdd\\x9e\\xe1\\x56\\x0c\\xec\\x56\\xbc\\x95\\xc5\\x47\\xa8\\x15\\xbc\\xe9\\x05\\x8d\\x2e\\x94\\x1c\\x1a\\x5e\\x83\\xc9\\x88\\xd1\\xac\\xae\\x2d\\x17\\xcf\\x56\\xab\\x72\\x4b\\x9c\\xcb\\x2e\\xf8\\xf0\\x14\\x01\\x14\\x23\\xb4\\x5d\\x61\\x93\\xf3\\x7b\\x66\\x5f\\xdc\\x64\\x2c\\x46\\x8c\\xdd\\x42\\x0d\\x4f\\x3b\\x37\\x61\\x30\\x7e\\x91\\x01\\x9c\\x6f\\xbf\\x1d\\xab\\xb7\\x9b\\xa7\\xa4\\x87\\x47\\xcd\\x06\\x43\\x54\\x9f\\xf9\\xf3\\xc7\\xe2\\xd3\\xc0\\x07\\x37\\x7e\\x00\\xc2\\xaf\\x54\\xd6\\xc0\\xe9\\x75\\x51\\x64\\x14\\xdb\\x6d\\xcf\\x1f\\xc5\\x0f\\xc2\\x71\\xc9\\x73\\x10\\xf8\\x39\\x98\\x15\\x9c\\x7e\\xa9\\x24\\x85\\x0b\\x62\\x5c\\x25\\x67\\x88\\x2e\\xf5\\x95\\xe5\\x48\\x52\\xe8\\xc7\\x20\\x58\\x08\\xac\\x7c\\xfb\\xda\\xb6\\xbd\\x9e\\xb7\\xeb\\x5a\\x27\\xc3\\x61\\x7f\\x32\\x35\\xbe\\xd6\\x9a\\x20\\x5c\\x8b\\xc4\\xf5\\x91\\xca\\x8b\\x65\\x13\\x21\\xf1\\x89\\x9b\\xb7\\x33\\xc2\\xc4\\x05\\x0c\\x2f\\x5d\\x84\\xb0\\x8a\\x8b\\xf3\\x3d\\xcc\\xf0\\x5a\\xa0\\x1f\\x06\\x97\\x9d\\x30\\x7e\\xd4\\xbe\\xc5\\xa2\\x68\\xb2\\x08\\x42\\xca\\xd5\\xbe\\x58\\x5b\\x0e\\x10\\xd5\\xff\\x19\\x3e\\xee\\x9a\\x60\\x5f\\x73\\xa0\\x24\\x8d\\x5a\\x73\\x38\\x43\\x77\\x1a\\x10\\x6a\\xb3\\xa3\\x26\\xd0\\x22\\x18\\x2f\\xb9\\x1f\\x4a\\x10\\x3e\\x45\\x8b\\xc5\\x14\\x79\\xe3\\xc2\\xd9\\xc9\\x14\\x8e\\x53\\xe6\\xd8\\xb9\\x86\\xcd\\x90\\x0d\\x86\\xa6\\x7a\\xd0\\x31\\x44\\x9a\\x26\\x4c\\x10\\x20\\xb0\\x99\\x56\\x9b\\x3a\\x43\\x87\\x42\\x7b\\x09\\x40\\xcc\\x1d\\x5c\\x55\\x90\\x25\\x9d\\x5b\\x74\\x44\\x09\\xbf\\x61\\x8d\\x5a\\xe5\\xc5\\x95\\x40\\x51\\x83\\x20\\x8e\\x57\\x1c\\x03\\x46\\x6f\\x2f\\x1f\\xf8\\xc7\\x51\\x27\\x30\\xa1\\x8a\\xb2\\x46\\xba\\x0f\\x52\\xb9\\x12\\x95\\xf2\\xf9\\xfb\\xc3\\xb0\\xbb\\x7d\\x86\\x74\\x3f\\xc1\\xd0\\xfd\\xe2\\x4a\\xef\\x87\\x01\\x38\\xae\\x65\\x0a\\x02\\x06\\x83\\x82\\x93\\x32\\xfb\\x4a\\x70\\xbc\\x28\\x9a\\x21\\x83\\xc1\\x8c\\xe2\\x01\\xdf\\x74\\x07\\x1c\\x18\\x31\\xc3\\xe2\\x6e\\x70\\x09\\xd7\\xb3\\xbf\\x0e\\xe5\\x90\\x2a\\xc4\\x1c\\xde\\x96\\x7a\\xf2\\x27\\x7b\\xda\\x3e\\x48\\xe1\\x20\\xbb\\xd2\\x01\\x3f\\xf4\\x64\\xf6\\xa3\\xdb\\xfb\\x44\\x2c\\x26\\x88\\xf2\\x65\\x23\\x8f\\x25\\x87\\x0c\\x3d\\xee\\x7e\\x62\\xb4\\xa5\\x41\\x10\\x89\\x10\\x07\\x19\\x45\\x61\\x72\\xfc\\x33\\x11\\xc0\\xbc\\x44\\x8d\\x5e\\xd9\\xa0\\x12\\x37\\x8a\\x72\\xf4\\x94\\xba\\x1f\\x04\\xc3\\xe3\\x38\\xdc\\x8f\\xd2\\x22\\x47\\x2d\\x26\\x4a\\x05\\x61\\x17\\xb6\\x47\\x71\\x3e\\xd3\\x15\\x02\\x1a\\x58\\x9a\\xab\\x98\\x04\\xc4\\x08\\x4e\\x53\\x0d\\xc8\\xb8\\x7c\\x71\\xb5\\xe3\\x10\\x1d\\x27\\xdc\\xa0\\x5b\\xf7\\x8e\\xf3\\x12\\x12\\x55\\xd0\\xbe\\xad\\x3c\\x41\\x3b\\x33\\xa1\\x50\\x76\\x4e\\x87\\xed\\x6e\\x84\\x05\\xcf\\x31\\x05\\x53\\x51\\x52\\xba\\x80\\x5b\\x4c\\xf3\\xa9\\x89\\x0a\\xa4\\xa4\\x0f\\x74\\xec\\xc9\\xeb\\x29\\x0e\\xf6\\x25\\xa9\\x76\\x53\\x94\\xa5\\xaa\\x35\\x40\\x49\\x81\\x86\\x87\\xee\\x1e\\x0c\\x33\\x56\\xbd\\xc1\\x79\\x20\\x1d\\xae\\x4c\\x13\\xa3\\x0e\\x93\\xb2\\xa0\\x3f\\xa2\\x98\\xf2\\x23\\xab\\x9d\\xb1\\x7f\\x0c\\x56\\x70\\x0d\\x4e\\x18\\x0e\\x90\\x59\\xb2\\xa0\\x52\\x40\\x56\\xef\\x8a\\x22\\x14\\x8f\\x94\\x44\\x7c\\xab\\x6d\\x9a\\xfe\\x92\\x8e\\x81\\xf6\\xb3\\x5d\\xb0\\x28\\x39\\xde\\xee\\x80\\x69\\x17\\x9f\\x9e\\xd7\\xd9\\x46\\xdc\\xeb\\xa8\\x0a\\x55\\x2f\\xab\\x56\\xd7\\xd9\\xbc\\x15\\xfe\\x50\\x82\\x56\\x00\\x27\\x43\\x5f\\xc3\\x53\\x82\\x41\\xe1\\x67\\x7a\\x9e\\xf1\\xc6\\x00\\x90\\xc1\\x32\\xdb\\x12\\x52\\x22\\x43\\x68\\x22\\x58\\x55\\x75\\x5e\\xae\\x75\\x35\\x87\\x92\\x8d\\x16\\x4d\\x24\\x25\\x88\\xc4\\xe5\\xdc\\xc3\\x5e\\xd0\\x67\\x8f\\xcf\\xa5\\x08\\x89\\x6e\\x3d\\x1c\\x4e\\x7a\\x29\\x12\\x5c\\x3d\\xd8\\xbd\\x8a\\xa0\\x8d\\xe3\\xcb\\x03\\x1a\\x9f\\xac\\x6a\\x1d\\xde\\xa8\\x3b\\x79\\xbe\\xab\\x13\\xf3\\xfb\\xb8\\x05\\xd9\\xbe\\x08\\xc2\\x6a\\x1d\\x53\\xbc\\x97\\x60\\xad\\x5f\\xbe\\x50\\x25\\x1f\\x53\\x75\\x2f\\x5a\\x22\\x06\\x01\\x8d\\x18\\x81\\x8b\\x03\\x0d\\x3a\\x09\\x0b\\xc9\\xf8\\xae\\xa8\\x1b\\x28\\x78\\x8b\\x10\\xd3\\xcb\\xb9\\x7a\\xb6\\x10\\x59\\x6b\\x47\\x35\\x75\\x9b\\xa8\\x64\\xdb\\xbc\\xfd\\x92\\x8a\\x37\\x1d\\x2e\\x14\\xcb\\xd8\\x44\\x9c\\xea\\xe7\\x5d\\x8c\\x34\\x18\\x67\\x4f\\x33\\x3e\\xed\\x6c\\x57\\x42\\x89\\xf7\\x85\\xbb\\x0c\\xef\\xe9\\x20\\xbc\\x6f\\xdf\\x3d\\x9a\\xe4\\x4e\\x24\\xb6\\xe7\\x71\\xea\\x63\\xcf\\x1d\\xdb\\x89\\xbe\\x8b\\x6f\\x59\\xb9\\xc7\\xfd\\x3b\\x15\\x35\\xd3\\xb3\\x63\\xb7\\x8b\\xca\\x1d\\x71\\x0e\\xe5\\xcf\\xa4\\xfc\\x96\\xbe\\x49\\xa9\\x42\\x58\\x9c\\xa4\\x58\\xc7\\x5f\\x3b\\x12\\x00\\x16\\xf8\\xb1\\x23\\x07\\xdc\\xb9\\xc3\\x1f\\x83\\x7b\\xad\\xd3\\xf5\\x8f\\xf1\\x4d\\x9e\\x1a\\x04\\xac\\x37\\x96\\x0f\\x8e\\xe9\\x3f\\x73\\xb5\\x27\\xba\\xed\\x5c\\xe7\\x12\\x09\\x02\\xcb\\x8f\\x05\\x97\\x67\\x50\\xdb\\xe4\\xd0\\x76\\xda\\xf3\\xdc\\x7f\\x83\\xfd\\x52\\x9f\\xb7\\x27\\x48\\x77\\x12\\x18\\xb6\\xb8\\xd6\\x39\\x12\\x83\\x7a\\x0c\\x3b\\x8f\\x9f\\xde\\x41\\xa8\\xd6\\x18\\x3e\\x60\\x67\\x67\\xa6\\xcd\\x4a\\x0c\\xa2\\xb1\\x14\\xbc\\xba\\x3e\\xb5\\x0f\\x90\\x76\\x41\\x6d\\xee\\x2a\\xc9\\x41\\x25\\x77\\x95\\x4c\\xd2\\xfb\\xd8\\x95\\x8a\\x7a\\x2b\\x24\\x58\\x3a\\x1f\\x58\\x82\\x15\\xea\\xb0\\x0a\\x6c\\x82\\xbc\\x35\\x58\\x90\\xf5\\xeb\\x04\\x47\\x03\\x6c\\x4b\\xe8\\x46\\xc4\\x18\\x57\\x21\\x59\\x80\\x73\\xc4\\x6d\\x84\\x01\\x6a\\x57\\xe8\\x8d\\x62\\xff\\xba\\x67\\xe3\\x2e\\xf4\\x41\\xef\\xb3\\xfd\\xd1\\xff\\x8d\\xbd\\xbd\\xe3\\x8e\\xf9\\x69\\xf8\\x2d\\xfa\\xe6\\x38\\xdc\\x24\\x5f\\x26\\xb1\\x2b\\xb7\\x1d\\x3b\\xf7\\x8e\\xf3\\xad\\x08\\x66\\x17\\x20\\x3e\\x27\\x1b\\x10\\x6e\\x03\\x3d\\x9b\\x09\\x1e\\x3c\\x4c\\x14\\x5f\\xbe\\x28\\xfe\\xf7\\xc7\\x18\\x9c\\x05\\x1d\\x4b\\x9b\\x7d\\x89\\x3f\\x1d\\xf4\\x4b\\xa6\\xc7\\xa9\\x1c\\xab\\x7c\\x26\\xba\\x73\\x2a\\x76\\xd7\\xd7\\xfb\\xc9\\xd4\\x62\\x88\\x6c\\x46\\x0d\\x0f\\x77\\x7a\\x48\\xaa\\x4b\\x1b\\xba\\x6c\\xf7\\xc3\\xaa\\x01\\x8d\\x88\\x9d\\x7f\\xa5\\xcf\\xdb\\x1d\\x53\\x4d\\x9d\\x74\\x41\\x13\\x34\\xfc\\x97\\x55\\xa5\\xeb\\x88\\x7c\\x86\\x41\\xc6\\x5b\\x3e\\x2d\\x5e\\xbb\\x74\\x89\\xda\\xa5\\x4b\\x4c\\xb9\\xc5\\x3b\\x83\\x83\\x92\\x5e\\x38\\x97\\xa1\\x81\\xa7\\xc8\\x43\\x08\\x69\\xaa\\xf0\\xf1\\xf2\\xd3\\xc8\\x65\\x08\\x67\\xe4\\xb0\\x45\\xd6\\xbc\\xdd\\x54\\xef\\x6a\\xb3\\xd2\\x75\\xbb\\x1d\\x14\\xf9\\xd0\\x3b\\x84\\x37\\x1f\\x8b\\x5c\\x1a\\x87\\xce\\x3d\\x9f\\xe9\\x10\\x5c\\x27\\x46\\x0c\\xf7\\xee\\x23\\xd4\\xf9\\x94\\x3c\\x9c\\xdd\\x0d\\xb8\\x0b\\x5f\\x8e\\xf7\\xa5\\xc8\\xd3\\x3b\\x20\\xca\\xc1\\xaa\\x8b\\x82\\x62\\xe5\\x6f\\x12\\xd6\\xc4\\xbb\\xa9\\xa6\\x3a\\x57\\x7f\\x56\\x16\\x17\\x95\\x3d\\xf1\\x81\\xf0\\xed\\xbe\\xca\\x27\\xb1\\xdb\\x60\\x12\\xcd\\xc3\\x6b\\xdb\\xbf\\x55\\xd1\\xfc\\x2c\\xfc\\x53\\x4f\\xa1\\xc6\\x29\\xd7\\xab\\x84\\xae\\x88\\x4a\\x42\\x0b\\xf6\\xdf\\xef\\x8b\\x59\\xc9\\xb8\\x38\\xe0\\xb0\\x1b\\x09\\x68\\xd3\\xce\\x49\\x61\\xed\\x5c\\xf7\\xe4\\x76\\xa4\\x09\\x7c\\x63\\xb0\\x16\\xc6\\x7b\\x7b\\xef\\x58\\xb0\\x00\\x38\\x20\\xe3\\xf7\\x5b\\x0a\\x3a\\xa0\\x36\\x4b\\xd5\\xcc\\x6b\\x48\\xdd\\xdc\\x05\\xd4\\xf2\\x20\\x24\\x3b\\xa5\\xb2\\xaf\\x78\\x4e\\xc5\\x0f\\x99\\xde\\x87\\x53\\xea\\x61\\x13\\xaa\\x5c\\xd2\\xef\\x12\\x27\\x3a\\x45\\xcf\\x90\\x61\\xac\\x7b\\xeb\\x79\\xae\\xa0\\x51\\xf1\\xf6\\xf7\\xca\\x57\\x48\\xae\\x77\\xde\\xb5\\x7e\\x1d\\x1b\\xa4\\x39\\x2d\\x43\\x3f\\x1a\\xc0\\x58\\x73\\x1e\\x34\\x91\\x7b\\xc9\\x00\\x14\\x1b\\x4b\\x5d\\x5f\\x80\\xcf\\x0c\\x22\\x04\\xb2\\xdb\\x0c\\xfa\\xf0\\x03\\x18\\xa9\\xd3\\xd9\\x02\\x88\\x44\\x59\\x92\\x2a\\x7f\\xc9\\xda\\x5a\\x35\\xd3\\xe8\\xe1\\x93\\x0c\\x38\\xb8\\xf5\\xcc\\xc6\\x25\\xf1\\x52\\xe9\\xc0\\x8a\\x84\\x75\\x31\\xa3\\x59\\xe7\\x1d\\x06\\x3e\\x2f\\x92\\x63\\x0b\\xbb\\x48\\x99\\x00\\xdc\\x12\\xe6\\xfd\\xcf\\x77\\x18\\x09\\xa2\\x6e\\x7d\\xea\\x0e\\x86\\x32\\xa1\\xdf\\x44\\x9c\\x6b\\x67\\x8b\\xdd\\x56\\x00\\xb8\\xe9\\xc9\\xcc\\xc8\\x44\\xf9\\x98\\xf9\\x90\\x76\\x20\\x61\\x23\\xbc\\x93\\x60\\x1f\\x2e\\xc7\\x48\\x6d\\x5c\\x68\\x07\\x35\\x8c\\x2b\\xb4\\x69\\x22\\xa3\\x91\\x97\\x13\\x39\\xa0\\x67\\xd3\\xc0\\xfc\\xbb\\xfa\\xef\\x8f\\x14\\xa8\\x63\\x7f\\x49\\xa0\\xc4\\x05\\xbc\\x4c\\xc4\\x0c\\x4d\\xd0\\xd2\\xfb\\xda\\xac\\x1b\\xfd\\x1c\\x2c\\xc6\\x76\\x8e\\xa8\\x64\\x8e\\x43\\x7e\\x30\\x60\\x69\\x8c\\x86\\xe5\\xfd\\x91\\xda\\xb7\\x24\\xe0\\x40\\x9b\\x58\\xe7\\xee\\x57\\x9b\\x02\\x75\\x46\\x2a\\x54\\x90\\xfb\\x93\\x74\\xab\\xa8\\x58\\x39\\xb5\\x3c\\x40\\x68\\xbb\\xed\\xb1\\x57\\x32\\x8d\\x3f\\x83\\xed\\x72\\x2c\\xba\\x2b\\xef\\x47\\xda\\x79\\x12\\x97\\x09\\x9f\\xb8\\xa3\\xb0\\xd7\\x3e\\x0d\\x03\\x35\\x26\\x2f\\x72\\xcf\\xe6\\x55\\x60\\x94\\xe6\\x89\\xee\\xd7\\xa0\\x90\\xdb\\x1f\\x76\\xee\\xd0\\xaf\\x5d\\x1d\\x47\\x7f\\x6e\\x5b\\x5f\\xbc\\x9f\\xd7\\x06\\x5c\\x64\\xa1\\xfb\\xd3\\xc4\\x45\\x1b\\xe2\\x29\\xc9\\x9b\\xd6\\x3b\\xb8\\xfb\\x25\\x25\\xba\\x02\\x0c\\x05\\x10\\x0e\\xe8\\x71\\xe0\\x71\\x06\\x84\\xad\\x01\\x02\\x51\\xa7\\xd1\\x7b\\x00\\x85\\x87\\x0e\\x49\\x01\\x72\\xf4\\xcf\\xc1\\xc3\\x5f\\x51\\x4f\\x63\\x6a\\x22\\x7e\\x41\\x50\\x21\\xd1\\x21\\x01\\x26\\xbe\\x12\\xfd\\xc6\\x95\\x64\\xff\\x37\\xf1\\x80\\x79\\x66\\x9b\\xb0\\x64\\x18\\xa0\\x96\\x1a\\x6a\\xca\\xc0\\xf2\\x43\\xfc\\x0b\\x6f\\xa7\\x9a\\xda\\x3d\\x27\\x13\\x53\\x67\\x21\\xe4\\xa6\\xc9\\xda\\xcb\\xac\\xbe\\x28\\x2a\\x9a\\x5a\\xfa\\x49\\x45\\x23\\x4e\\x48\\x63\\xd8\\x36\\xa1\\xe6\\xca\\x38\\x3b\\x31\\xad\\x85\\x83\\xdd\\x8d\\xbc\\xaa\\xc3\\xdf\\x1d\\x0c\\xeb\\x12\\x17\\xca\\xfe\\x94\\x9b\\xf9\\x64\\xbe\\x64\\xe6\\x37\\x5f\\x8a\\xca\\x47\\x3e\\x76\\x91\\xd1\\x43\\x7d\\x10\\xe1\\xcc\\xe4\\x5b\\xb6\\x2e\\xa2\\xca\\x55\\xf2\\x2f\\xd4\\xa7\\x3a\\xcf\\xda\\xae\\x7d\\xee\\xd4\\xaf\\x5e\\x62\\x6b\\xdc\\x89\\x94\\xed\\xd8\\x87\\x1c\\xae\\xe4\\x18\\xc5\\x61\\x48\\x04\\x22\\x38\\x0a\\xbf\\x0b\\xcc\\xf9\\x79\\xa3\\x5b\\xb1\\xac\\xa7\\xfb\\xe2\\x9d\\xd1\\xd9\\xab\\xde\\xce\\x84\\x34\\x2d\\x7a\\xa1\\x53\\x33\\x99\\x97\\x85\\xae\\x92\\xbd\\x08\\x41\\xb1\\xd6\\xd5\\x93\\x2a\\x7f\\x92\\xe7\\x09\\xcc\\xb8\\xd1\\x0e\\x76\\x8e\\x0f\\x7a\\x31\\xa0\\x61\\xe4\\xdd\\x18\\x6e\\xec\\x54\\x6e\\x84\\x54\\x66\\xe3\\x52\\x20\\xf1\\x38\\x1b\\x02\\x46\\xfb\\xd7\\x6b\\xed\\xfd\\x78\\x38\\xb9\\xd1\\xba\\xd1\\xe8\\x48\\x44\\x4e\\x44\\x80\\xb8\\xad\\x32\\x6a\\x5e\\x98\\x78\\x6d\\x99\\x97\\x15\\x71\\x36\\x9a\\xd8\\x48\\xe9\\xc8\\x3b\\x00\\x10\\x16\\xfe\\xde\\x66\\xb5\\x2d\\xa5\\xad\\xf4\\x6e\\x69\\x34\\x5a\\xc9\\x53\\x28\\x56\\x49\\xcb\\xac\\x8c\\x75\\xad\\x80\\xcb\\x55\\x30\\xb5\\x33\\x32\\xa4\\x03\\x94\\x41\\x35\\xb9\\xd8\\x7d\\x63\\x0d\\xd1\\x85\\x00\\x2f\\x2d\\xc2\\x05\\x86\\xe7\\x94\\xec\\xcb\\x96\\xe1\\x01\\x35\\xc5\\x9f\\x98\\xb3\\x21\\x18\\xa6\\xdd\\xcc\\x44\\x9a\\x05\\x07\\xc6\\xc4\\x46\\xb1\\x77\\x6f\\xdf\\xbf\\x3c\\x7b\\xf9\\xf6\\x8d\\x7a\\xfd\\xfc\\xc9\\xfb\\xbf\\xfd\\xf2\\xfc\\xf5\\xf3\\x37\\x67\\xf2\\x46\\x40\\x06\\x77\\x66\\x56\\xbc\\x5e\\x43\\xf5\\x99\\x33\\x50\\x88\\xa7\\x32\\x44\\xae\\xd2\\xc6\\x9d\\x99\\xd5\\x4d\\xa7\\x85\\x5f\\x75\\xdd\\xf6\\x37\\x01\\xa3\\x0d\\xf6\\x5d\\x8d\\x7b\\xdb\\xc7\\x02\\xdd\\x2e\\x5e\\x88\\xf6\\x39\\x4b\\x02\\x35\\x81\\xe0\\xd4\\xef\\xa8\\x9c\\xcc\\xa2\\x91\\x2c\\xe0\\x78\\x0e\\x26\\x8e\\x4b\\x1c\\x8c\\xf4\\xa9\\x40\\x18\\xdc\\x7d\\xd2\\x31\\xc9\\xdc\\x8c\\x9b\\xa2\\xca\\xcd\\x66\\x02\\x39\\xf8\\x20\\x69\\x3f\\x45\\x14\\x3c\\xee\\xfb\\x65\\x00\\x70\\x63\\x9a\\x73\\x18\\xbe\\x17\\xe9\\xa6\\xf2\\xac\\xcd\\xd4\\x54\\x7d\\x46\\x7e\\x02\\x39\\x50\\x5e\\x56\\x04\\x62\\x2d\\x6f\\xa4\\xe1\\x48\\x11\\x90\\x6f\\xba\\xcc\\x2f\\x00\\x61\\xee\\x23\\xbd\\x9b\\x37\\xd9\\x9b\\x81\\x6d\\x1c\\xee\\x51\\xcc\\xb7\\x27\\x3e\\x42\\x5b\\x00\\xbd\\xd1\\xb3\\x68\\x53\\x1c\\x99\\x38\\xef\\xf6\\xef\\x10\\x05\\x04\\x98\\xd7\\xcf\\xd9\\x6a\\x10\\xf0\\x6c\\xfc\\xac\\xeb\\x9f\\xb3\\x95\\x1a\\x4b\\xb6\\x55\\x01\\xdb\\xfd\\x31\\xc3\\xeb\\x5e\\x89\\x3d\\xa7\\x12\\xf0\\x1d\\x1b\\x13\\xd0\\xda\\xbe\\x01\\x6e\\x39\\x60\\x7c\\xe3\\x68\\x1c\\x41\\x97\\x33\\xea\\x6c\\xaf\\xdb\\x19\\x5d\\x67\\x77\\xee\\xcd\\x51\\xf2\\xee\\xee\\x02\\x46\\x47\\x58\\xa2\\x6c\\x2c\\x05\\x19\\x69\\x43\\xa0\\xc4\\xc4\\x38\\x29\\x59\\x03\\x00\\x8b\\x9a\\xd5\\x1a\\xb2\\x3e\\x38\\x1c\\x76\\x0c\\xf7\\xa6\\x12\\xe6\\x5c\\xcd\\x4c\\xdb\\x9a\\xa5\\xc2\\x93\\xe3\\xfd\\xec\\xcb\\x2e\\x48\\x71\\x86\\xcf\\x33\\x76\\xdb\\x9a\\xa0\\xdb\\x57\\x29\\x40\\x91\\x31\\x89\\xc7\\x88\\xbc\\x30\\x9d\\xfb\\xe7\\x12\\x71\\x43\\xb3\\x4a\\x99\\x0a\\x6c\\xad\\x9d\\xdc\\x05\\xfe\\xdd\\x81\\x73\\x8d\\xdf\\x79\\xb5\\x9e\\x4b\\xc4\\x03\\xee\\x2e\\x50\\x87\\xc9\\x81\\xf8\\x2c\\x6f\\x0c\\xaf\\xe5\\xea\\xdc\\xbf\\xdf\\x21\\x0d\\xf9\\x46\\x92\\xd6\\x6e\\xb7\\x9c\\x5f\\xbe\\x04\\xf5\\x3b\\xe5\\x50\\x3a\\xbb\\x37\\x75\\x1d\\x4a\\xa1\\x81\\x1b\\x99\\x76\\xeb\\xf9\\x9f\\x3e\\x7a\\x2f\\x31\\xee\\x69\\x07\\x44\\x2a\\x4b\\x85\\xdc\\x9d\\x50\\x12\\xd6\\x10\\x2d\\x11\\x5b\\xa4\\xbd\\xee\\x09\\xf8\\x08\\x10\\x1f\\x02\\x23\\xef\\x42\\x0d\\x81\\xb6\\x04\\x28\\x4d\\x07\\x39\\x84\\xd6\\x18\\x78\\xe0\\xbc\\xa5\\x37\\x1d\\x6a\\x5b\\xe8\\x03\\x44\\x3b\\x06\\xa1\\x4f\\x10\\x9c\\x96\\xcd\\x9a\\xc1\\x7c\\x5d\\x4f\\x88\\xf8\\xc6\\x50\\x8b\\xfe\\x1a\\xaa\\x47\\x32\\x84\\xd2\\xde\\x4d\\xb4\\x4e\\x28\\xfa\\xcb\\x8a\\x07\\x58\\xb1\\x35\\xab\\xa1\\x3a\\x54\\x0f\\xd4\\x18\\xfa\\xc5\\xbf\\x53\\x31\\x74\\x41\\x43\\x50\\xd4\\x8d\\xc0\\x55\\x8c\\x52\\x67\\xb1\\x2b\\xe3\\x32\\x5b\\xa9\\xc1\\x92\\x88\\xc0\\xe1\\x56\\xba\\x73\\xd3\\x1a\\x91\\x4e\\x6c\\x88\\xa0\\x98\\xe0\\x6a\\xed\\x93\\x83\\x11\\x58\\x6e\\x37\\x92\\x85\\x80\\x1b\\x26\\x6a\\x80\\x9a\\x17\\x8c\\x2d\\x81\\xe3\\x23\\xf2\\x2d\\x08\\xfd\\x0b\\x3a\\xc6\\xd9\\xd3\\x17\\x07\\x28\\x81\\xeb\\x33\\xe9\\xdd\\x26\\x43\\x7f\\xc0\\x96\\xd9\\xea\\xa7\\xda\\x2c\\x5d\\xa4\\x4a\\xa8\\x3e\\x0a\\x22\\x97\\x3a\\x56\\x09\\x76\\x43\\x60\\x05\\x07\\xb1\\xb5\\xcf\\xcb\\x6c\\x75\\xd2\\xa5\\x4d\\x40\\xdd\\x87\\x99\\x26\\x7e\\x84\\xef\\x37\\xa1\\xb2\\xf4\\xab\\x74\\x2b\\xb1\\x96\\xe6\\x63\\xf1\\x29\\x1c\\xde\\x9d\\x06\\x88\\x94\\xba\\x73\\x90\\xb6\\xc8\\x8d\\x8a\\x87\\xca\\x11\\xc0\\x88\\x3d\\xd1\\x33\\xdc\\x6f\\x8e\\xbb\\x03\\x26\\x48\\x6e\\x31\\xee\\x6f\\x8e\\x3f\\x0d\\x21\\xb9\\x97\\x5d\\xf8\\xaf\\x1a\\xfa\\x37\\xc7\\x77\\x18\\x3c\\x14\\x9a\\x81\\xee\\xe0\\x04\\x84\\xba\\x1b\\x56\\x2b\\xf9\\x84\\x10\\x44\\xd9\\x0e\\x7b\\x9d\\xa2\\xb5\\x40\\x2b\\xd3\\xe7\\x1d\\x84\\xf9\\xd5\\x6d\\x23\\xa4\\xf6\\xf3\\xe4\\xed\\x53\\x16\\x20\\x4c\\x2c\\x34\\x6e\\x6f\\x90\\x6f\\x1b\\xf0\\xed\\xc7\\xf8\\x03\\x20\\xee\\x95\\xa9\\xbb\\xa9\\x6b\\x9e\\x87\\x5d\\x05\\xea\\x60\\x9f\\xef\\x24\\x88\\x83\\x73\\xe1\\x6f\\x0c\\x70\\xff\\x86\\x58\\x9f\\x80\\x40\\x17\\xc1\\x5a\\xb7\\x78\\x3d\\xa5\\x42\\xb9\\xe4\\xf1\\xb0\\x8d\\x39\\x8b\\x17\\x77\\x14\\x29\\xa5\\xa1\\x00\\xff\\x91\\xf4\\x7e\\xe2\\xa0\\xae\\xab\\x1e\\x27\\x9b\\xdb\\xde\\x59\\xb6\\xd7\\xd7\\x2c\\x55\\xba\\x8a\\x42\\xa5\\x6b\\x1b\\xa6\\x8d\\xfe\\x59\\xb7\\x2a\\x53\\x9f\\x5b\\xb3\\x1a\\xd1\\x45\\x3f\\x52\\x56\\x76\\x23\\xc1\\xef\\x46\\xcd\\xcc\\x35\\x64\\x86\\x28\\x21\\x91\\x84\\x99\\x67\\xa5\\x9a\\x1b\\x53\\xe7\\x45\\x95\\xb5\\xba\\x81\\x58\\x4b\\xdc\\x4c\\xe4\\x56\\x8e\\xef\\x89\\xcd\\x13\\x49\\x25\\x84\\x52\\x72\\xbe\\x18\\xa9\\x59\\x91\\x35\\x81\\x24\\x24\\x8a\\xbe\\xab\\xb5\\x7d\\xad\\xa0\\x43\\xcc\\x0a\\xff\\xa0\\x59\\xfd\\x64\\x6a\\x97\\x94\\xaf\\xa4\\x24\\xd5\\xdc\\x5a\\x82\\x31\\xc3\\xde\\x82\\xa0\\xe2\\x03\\x3e\\x1b\\xf6\\xe4\\xed\\x32\\xd9\\x30\\x05\\xa0\\xdd\\xeb\\xb8\\xbf\\x88\\x0f\\xbe\\x51\\x8f\\x02\\xca\\xb1\\xfd\\x59\\x5e\\xea\\xd0\\xf6\\xd1\\x8c\\x27\\x7f\\x3e\\x33\\x11\\xaf\\x8c\\x7e\\xff\\xc8\\x5d\\x83\\x66\\x46\\x74\\xfc\\xc9\\x3f\\x2c\\xbe\\xce\\xe1\\xcf\\x0d\\x94\\x3d\\xff\\xde\\xc8\\xe1\\xf9\\x8f\\x07\\xf0\\xef\\xc6\\x25\\xc1\\xfb\\x2c\\xfc\\xf7\\x1c\\x7b\\x78\\x1d\\xdc\\x59\\x95\\x15\\xe1\\x00\\x9d\\x0f\\x4e\\xf0\\xc6\\xa8\\xa6\\xd5\\xab\\x66\\x84\\xde\\x8f\\xba\\x1d\\xaf\\x57\\x10\\x41\\x04\\x7b\\x00\\xd2\\xe5\\x6a\\x55\\x52\\xfa\\x2a\\x70\\xa6\\x5e\\x18\\xba\\xb3\\xd0\\x03\\xdb\\x67\\x77\\xc1\\x1e\\xc8\\xa3\\x3f\\x9b\\xb7\\xeb\\xac\\xdc\\x93\\x29\\x37\\x27\\xea\\x27\\xda\\xab\\x46\\x95\\xc5\\xa5\\x46\\xd2\\x6c\\x2c\\xf9\\x8c\\x70\\xc7\\xd9\\x74\\x90\\x43\\x4a\\x33\\xd3\\x12\\xf0\\x5c\\x9c\\x91\\x33\\x53\\xb5\\xd9\\x8c\\x60\\x2e\\xed\\x62\\xdd\\x90\\xb8\\x89\\x4d\\xc4\\xb3\\x40\\x09\\xd9\\x54\\xe5\\x56\\xe5\\x90\\xde\\xa8\\x9a\\x4b\\x6f\\xcd\\x5b\\x48\\xd5\\xc9\\xa8\\xb7\\x33\\xa3\\x7e\\xf2\\xa3\\xad\\x85\\x72\\xf6\\x8d\\x75\\x15\\x3b\\x90\\x73\\xec\\x29\\x79\\xf0\\x78\\xef\\x2e\\xae\\x72\\x25\\x9c\\xea\\xb9\\x52\\x6f\\x40\\xc4\\x95\\x34\\x23\\x5d\\xe8\\xf6\\x99\\x03\\xf9\\xb3\\xc2\\xb1\\xd3\\x70\\xcf\\xd7\\xf5\\xdb\\xd5\\x04\\x20\\xf1\\x5c\\x62\\x0a\\x7b\\xb1\\x08\\x75\\xe4\\xbd\\x2b\\xe7\\xe9\\xf1\\x99\\x07\\x79\\x17\\xde\\xee\\xf0\\x91\\x20\\xeb\\xdc\\xb4\\x23\\xad\\x5c\\x75\\x24\\x15\\xcf\\x53\\xbc\\x87\\xd4\\x09\\x95\\xb0\\xa5\\x4f\\x68\\x56\\x56\\xaa\\xc3\\xfc\\x34\\x68\\x92\\x86\\x7b\\xd5\\xf6\\x12\\xc8\\x29\\xf0\\x01\\xfe\\xed\\xef\\x4c\\xf8\\x86\\x7f\\x60\\xd5\\x45\\xd6\\xd0\\xe3\\xe4\\xc4\\xc1\\x74\\xf3\\x89\\xf9\\x19\\xd8\\x4c\\xc6\\xd4\\x91\\x87\\x04\\x0e\\x21\\xcc\\x23\\xfe\\x86\\x51\\x2d\\x4e\\xf5\\x6a\\xce\\x55\\x06\\x6f\\x2a\\x3c\\x00\\x42\\xb4\\x1c\\x98\\x5a\\x9d\\x13\\xa0\\x62\\xd1\\xfa\\x9c\\x61\\x30\\xd0\\x61\\x9a\\x03\\xa7\\xd8\\x6a\\xee\\xf9\\xe7\\xc8\\xae\\xb2\\x4c\\xfe\\x06\\xa0\\x12\\x54\\x8c\\x66\\x3b\\x64\\x4c\\xc9\\xf1\\xb1\\xe3\\x46\\x97\\x7a\\x8b\\xb0\\x91\\x07\\x6a\\x60\\xdb\\x21\\x37\\x3d\\xf2\\x3b\\x88\\xdb\\x81\\x01\\xc6\\x2e\\x08\\x97\\x7a\\x3b\\xf4\\x60\\x5e\\xe8\\xad\\x10\\xd6\\xf8\\x78\\xa9\\xb7\\x9f\\xe2\\x58\\x2f\\x20\\x2b\\x57\\x0e\\xde\\x81\\x5e\\xb3\\x29\\x3f\\xcb\\xe6\\xdc\\x81\\xb1\\xaf\\x9d\\x1f\\x29\\x31\\x92\\x7f\\xf5\\x0c\\xa4\\x83\\x86\\x6f\\xdc\\x6f\\xb0\\x7f\\xe3\\xa4\\x1f\\xa6\\x41\\x47\\x23\\x95\\x1c\\x5e\\xa2\\x59\\x7f\\x60\\x94\\x0b\\xf5\\x25\\xb7\\x0d\\xbf\\x83\\xe0\\x50\\xd2\\xb3\\x7d\\xc2\\xee\\x05\\x35\\x27\\x33\\x73\\xb1\\x6e\\x86\\x72\\x29\\xfc\\x4a\\x5a\\x16\\x03\\xcd\\x47\\x51\\x15\\xa4\\x16\\xc2\\x06\\x84\\x30\\xc0\\x9f\\xe0\\x0f\\xe9\\xc0\\xd1\\x9a\\xd5\\x89\\xa7\\x1b\\xf5\\x98\\xcb\\xb5\\x66\\xa5\\xb8\\x92\\x95\\x30\\x44\\x15\\x94\\x35\\x92\\xb5\\xe8\\xc1\\xc5\\x15\\xf1\\x4f\\x17\\xfd\\x6a\\x4f\\xea\\x2f\\xb8\\x9b\\x34\\xce\\x23\\x37\\xbc\\xa3\\x11\\x0e\\xe5\\x68\\xe4\\xda\\x3f\\x92\\xba\\x23\\x2b\\xb7\\x3e\\xa9\\xf2\\xb7\\xf0\\x22\\x7b\\x09\\x36\\xaa\\xd7\\xd9\\x6a\\x80\\x07\\x3d\\x10\\x47\\xd8\\x47\\x83\\x70\\x20\\x21\\x32\\xd8\\xc3\\xbd\\x8c\\xd4\\x92\\x72\\x57\\x2f\\x9f\\x03\\x71\\x83\\xc0\\x51\\x37\\xad\\xcb\\x95\\x2b\\x33\\x1c\\xb8\\xf7\\x9c\\x7b\\xfe\\x09\\x39\\xc4\\xbe\\x15\\x5b\\x33\\xc2\\x36\\x4c\\xad\\xe6\\xa5\\x69\\x74\\xd3\\xda\\x6f\\x58\\x07\\x74\\xc8\\x52\\xac\\x4a\\x3f\\x8c\\x7c\\xde\\x17\\xfb\\xf7\\xc1\\x54\\x7d\\xc7\\x24\\xba\\xe4\\xa4\\xcf\\xcb\\x6c\\xc5\\xe0\\x9d\\x76\\xd8\\xfc\\xc5\\x3f\\xc0\\x09\\x87\\xf6\\x21\\x55\\xe9\\x26\\x2f\\x3d\\x3a\\x25\\xb8\\x17\\x46\\x6c\\xe6\\x05\\x51\\x53\\x05\\xae\\x3a\\x64\\xa3\\x12\\xee\\xd3\\xd0\\xdc\\xf3\\x2a\\xef\\x36\\x06\\xa9\\x71\\xb1\\x27\\x77\\x94\\x24\\x42\\xea\\x71\\xdc\\x16\\xa0\\xe0\\x8a\\xfc\\x36\\x63\\xf5\\x1d\\x60\\x1a\\x01\\xe2\\x0a\\xcc\\x08\\x1c\\x98\\x70\\x4a\\xdf\\x7d\\x52\\x8f\\xd4\\x7c\\x21\\xcf\\x29\\xcc\\xd8\\x16\\x8b\\xba\\xe5\\x01\\x69\\xf8\\xe9\\x58\\xf8\\x3d\\xcd\\x17\\x56\\x60\\xa2\\xe1\\x07\\x93\\x05\\x82\\xdb\\xef\\xa0\\xef\\x60\\x53\\xde\\x1c\\x25\\xcc\\x7d\\x62\\xb9\\x1f\\x48\\xdf\\x2a\\xde\\x1e\\x3f\\x05\\x60\\x9f\\xd3\\x29\\x79\\xee\\x90\\x69\\x5f\\x9f\\x43\\x7a\\x35\\x58\\x64\\x75\\xc2\\x03\\x18\\x4a\\xa7\\x2c\\x31\\x3e\\x68\\x42\\xa2\\x2b\\x71\\x9b\\xd4\\xc0\\xfd\\xfb\\x3c\\x6b\\x91\\x23\\x48\\x44\\xf8\\x17\\x7e\\x29\\xc7\\xea\\xc1\\x27\\x5a\\x78\\xf8\\xeb\\xbb\\x4f\\xf2\\xb7\\xe3\\x4f\\x62\\x80\\x11\\xa6\\x96\\x9f\\xf4\\xa0\\x50\\x63\\xa0\\x48\\x31\\xf7\\x7e\\xf2\\x51\\xce\\x3d\\xab\\x33\\x7a\\x5a\\x76\\x39\\xfc\\x60\\x47\\x93\\x53\\x79\\x18\\x13\\x4d\\x48\\x26\\x53\\xbf\\x31\\xdf\\xc3\\xdc\\xee\\xf1\\x9f\\x3f\\xdc\\x75\\x72\\x07\\xb7\\x4d\\x0e\\xc7\\x9d\\x98\\x5d\\x37\\xff\\x2f\\xf3\\x60\\xdb\\xc3\\x89\\xe4\\x41\\x27\\x82\\x15\\x9d\\x84\\xfc\\xe8\\x44\\x70\\x26\\x30\\x27\\xbe\\xc7\\x0a\\xcc\\xa5\\xe0\\xdb\\x73\\x5b\\xcd\\xae\\x56\\x68\\x66\\xbd\\xd0\\xed\\xdf\\x1a\\x7d\\xbe\\x06\\xa6\\x0a\\x1a\\xaf\\x26\\x66\\x84\\x74\\x79\\x32\\xe7\\xdd\\x4b\\x91\\x54\\x9f\\x33\\x8c\\xd4\\x10\\x06\\xda\\x41\\xdb\\xc4\\x80\\x5a\\x66\\xdd\\xe0\\x10\\xcd\\xef\\xf7\\xf0\\x0b\\x99\\x0b\\x02\\xe8\\xe0\\x1b\\x77\\xf7\\xc7\\x3a\\x97\\x84\\x2a\\xf2\\x9b\\x63\\x7b\\x7c\\x51\\x19\\xe3\\xd3\\x4f\\x27\\x3a\\xfe\\xe6\\xf8\\x6e\\x5d\\x4b\\x20\\xec\\x79\\x1b\\x2c\\xe3\\x5d\\xef\\x67\\xb7\\xa8\\x10\\x6c\\x43\\x7e\\x7b\\x89\\x3b\\xc9\\x5d\\xd7\\xe1\\xe5\\x24\\xae\\x26\\x2b\\xce\\xd8\\x36\\x26\\x82\\x46\\xdc\\x37\\x4f\\x2a\\xee\\x53\\x40\\x31\\xee\\x2b\\x7f\\xd8\\x13\\x7b\\xbd\\x27\\x1c\\x07\\xa5\\xf5\\xf1\\x3b\\x82\\xfa\\x7c\\x79\\x6e\\xa5\\xcd\\xa2\\x51\\x99\\xbf\\xd2\\x46\\x6a\\xdd\\x78\\x7c\\x1e\\xc0\\x6a\\x6a\\xeb\\x42\\x5f\\x71\\x12\\x64\\xa7\\x31\\x98\\x90\\x58\\x93\\x56\\x98\\x7d\\xcf\\xda\\x31\\xec\\xe9\\x17\\xdd\\xd6\\x90\\x72\\x36\\xbb\\x2e\\x96\\xeb\\xa5\\x15\\x85\\xbf\\x07\\xf4\\x04\\x52\\x6e\\x3a\\xd8\\x71\\x91\\xcd\\x32\\xab\\x7d\\x12\\x50\\xf6\\xc9\\x40\\x56\\xe0\\x00\\xaa\\x8b\\xc6\\xbe\\x36\\x50\\xe6\\x5b\\x64\\xb5\\x5f\\xec\\x92\\x23\\x49\\x18\\xa1\\x9d\\x17\\x89\\xcf\\x94\\x3a\\x20\\x00\\x67\\xb0\\x62\\x8d\\xc7\\xd8\\xe4\\x4d\\xd8\\x4f\\xa2\\x92\\xdd\\x88\\x87\\x4a\\xfc\\x40\\xbc\\xfe\\x5f\\x1a\\x89\\xae\\x72\\x1c\\xc7\\xc1\\x81\\x26\\x29\\x4e\\xed\\xc8\\xec\\x10\\x72\\x7d\\x08\\x02\\xb4\\xe4\\x31\\x8d\\x87\\x35\\x56\\x71\\x5f\\x92\\xad\\x32\\x33\\x88\\x0c\\xee\\xbb\\xc5\\xe8\\xc0\\xdf\\x48\\xb4\\x12\\x31\\x1f\\x4b\\x3b\\x83\\x58\\xec\\x1a\\x76\\x0c\\x12\\x7c\\x94\\xe4\\x84\\xe1\\xd4\\xc2\\x11\\xfe\\xf2\\x45\\x1c\\x61\\x97\\xa3\\x81\\x73\\xca\\x45\\x30\\xe4\\x42\\xe4\\x88\\xa4\\x01\\xfc\\xff\\x71\\x52\\xd4\\x11\\xec\\xdc\\xdf\\xfd\\x89\\x25\\x3f\\x3e\\x1e\\xfa\\xb9\\x2e\\xb3\\xed\\x8c\\xde\\xc5\\x76\\x1e\\x3f\\x99\\xfa\\xbf\\x8c\\x59\\x16\\xd5\\x45\\xd2\\x45\\x02\\xed\\x59\\x22\\x8c\\x36\\x3e\\x79\\xec\\x55\\x45\\xd0\\x28\\x56\\x48\\x84\\xf0\\x47\\x73\\xed\\xe4\\x4d\\xd4\\xab\\x90\\x87\\x44\\x24\\xa3\\x3c\\xc2\\xd5\\x88\\x65\\x86\\x58\\xb4\\x71\\x06\\xa3\\xbe\\x48\\x81\\x0f\\xc2\\xea\\x35\\x60\\xd3\\x52\\x45\\x14\\x11\\xec\\xda\\x50\\x64\\x64\\x90\\xea\\x6c\\xc1\\x88\\xe3\\x7b\\xfe\\x71\\x87\\xab\\xab\\x13\\x75\\xf4\\x29\\xe5\\xc2\\x26\\xc9\\x72\\x17\\x2d\\xb2\\x22\\xa2\\xef\\x80\\xdc\\x73\\x4c\\x62\\x70\\x0f\\xda\\xfc\\xf2\\x45\\xdd\\xf3\\xc4\\x65\\x4b\\x88\\x0b\\x42\\x5a\\xf1\\xea\\xf7\\xab\\xac\\x4a\\x9f\\x8c\\x60\\x1d\\x3e\\x1e\\x79\\x69\\x1b\\xea\\x74\\x16\\x83\\xde\\x35\\xf0\\x63\\xf8\\xfe\\xf2\\x9f\\x20\\xdb\\x1b\\xd9\\x99\\x05\\x01\\x0d\\xe9\\x05\\x84\\x05\\x85\\x56\\x97\\x3f\\xd1\\x6b\\x6a\\xd7\\x12\\xf2\\x03\\xeb\\x46\\xe2\\x52\\xc3\\x5b\\x6e\\xea\\x6c\\x60\\x96\\x49\\xc8\\x37\\x2d\\x76\\x65\\x9f\\x6e\\x5c\\xc8\\x99\\xcd\\x3a\\xe5\\x38\\xd6\\x08\\xa2\\x15\\x06\\xd0\\xf0\\x01\\x54\\x05\\x0b\\xdd\\x5e\\x6c\\x13\\x0d\\xdf\\xec\\x91\\x61\\x94\\xb5\\x42\\x84\\xb4\\x25\\x00\\xb6\\xd8\\x90\\x17\\x1b\\x27\\x85\\xd9\\xc5\\x8e\\xc0\\x15\\xb4\\xe2\\x87\\x67\\x0f\\x3e\\x84\\x11\\xa6\\x5d\\xa8\\xc7\\xbe\\x1c\\x27\\xc3\\xc5\\x57\\xa6\\x9a\\x8a\\x16\\xdc\\x25\\x4a\\x69\\x42\\x68\\x27\\x07\\xfe\\x98\\xc5\\xc4\\x4d\\x6c\\xea\\x44\\x39\\x1a\\x1b\\x76\\xd6\\x0c\\x48\\xa0\\x13\\x2f\\x41\\x24\\x11\\xb6\\x8d\\xe2\\xfd\\x63\\xdf\\x1a\\xb7\\x4c\\x02\\xcd\\xdd\\x9a\\x06\\x12\\x0a\\x88\\x67\\x66\\x5a\\xa7\\xc2\\xeb\\x3d\\x0d\\x40\\x43\\x76\\xe6\\xa8\\x75\\x90\\x89\\xdb\\xc8\\xc9\\xce\\xa7\\x33\\x82\\x04\\x81\\x4f\\x01\\xe3\\x0b\\xdf\\xff\\xef\\x30\\xd5\\xa3\\x68\\x84\\x49\\xae\\x35\\xab\\x53\\xf7\\x8d\\xc8\\x6a\\x8a\\xb4\\x26\\x53\\x30\\xf6\\xe6\\x26\\x59\\xd5\\x66\\x56\\xea\\x25\\xa5\\x03\\x26\\xc6\\xa0\\xd0\\xbf\\x82\\xac\\xe1\\xa6\\x62\\xeb\\x28\\x24\\x2d\\x81\\xd4\\x24\\x9c\\x47\\xbc\\xa8\\xe0\\xb5\\x3e\\x6f\\xcb\\x2d\\x0a\\x1d\\x7f\\x1a\\xb3\\xc4\\xac\\xdb\\x2f\\x9f\\x1f\\x1f\\x81\\xc6\\x7a\\xa6\\x4b\\xb3\\x91\\xfa\\xb6\\x5e\\x5e\\x1f\\x31\\x78\\xe7\\x7d\\x4d\\x3e\\x3c\\xcd\\xbc\\xd6\\x1a\\x3c\\xbf\\xf0\\x5f\\x13\\xf2\\xa4\\xff\\xed\\xd9\\xbb\\x97\\x02\\xb8\\x9b\\xef\\xaa\\x64\\x19\\xfa\\x9a\\xeb\\xab\\x62\\xae\\xe1\\xa3\\xe5\\x61\\x98\\xef\\xf8\\xbf\\x60\\xec\\xc8\\x89\\x5c\\x0a\\xd7\\x50\\xcf\\x5f\\xf3\\xd9\\x07\\xe7\\xa3\\x79\\x56\\xea\\xdf\\xd4\\x34\\xd5\\xd5\\x61\\xb7\\x27\\x59\\xeb\\xf7\\x4e\\xad\\xdf\\x13\\xb5\\x7e\\xc7\\x5a\\xa1\\xe6\\xc9\\x53\\xd8\\x5f\\x68\\x04\\x9e\\x03\\xfa\\x33\\xe3\\x7e\\x8b\\x35\\x51\\x8e\\x49\\x51\\x89\\xdf\\x05\\x13\\x14\\xac\\x89\\x7f\\x0d\\xdf\\x43\\xf3\\x52\\x67\\x40\\x89\\x42\\x11\\x0d\\x79\\xf7\\x7f\\x32\\xf5\\x2e\\x3c\\x17\\x97\\x34\\x3a\\x0a\\xc8\\xed\\xc9\\x45\\xbb\\xc3\\xd3\\xc3\\x61\\x2b\\xfc\\xbb\\x22\\x0e\\x82\\x90\\x9e\\x8e\\x0d\\x1b\\xc6\\x94\\x8c\\x87\\xea\\x5d\\x0a\\xe7\\xbf\\xd4\\x6f\\x7d\\xf2\\xf3\\x08\\xad\\x95\\x3d\\x76\\xca\\x6e\\xf0\\x00\\xc1\\x24\\x86\\x66\\xb1\\x94\\xc5\\x7f\\xe7\\x86\\xc5\\x66\\x35\\xcb\\xe4\\x13\\x93\\x84\\xf2\\x8d\\x9f\\xd6\\xae\\x89\\x87\\xd3\\x46\\x07\\xb6\\xa7\\x7c\\x15\\x87\\x16\\x39\\xfc\\xf1\\x4c\\x5f\\xb3\\x1f\\x57\\xe2\\x57\\xe1\\xfb\\x46\\x0b\\x16\\xf3\\x4a\\x29\\x66\\x81\\xcc\\x26\\xc4\\xc5\\xec\\x1a\\x8c\\xc7\\x60\\xab\\xc9\\x25\\xc3\\xed\\xc6\\x21\\x42\\x2a\\x51\\x81\\x9f\\x24\\x7c\\x1f\\x2f\\x34\\xba\\x04\\xff\\x36\\x70\\xb8\\x99\\x92\\x81\\x2e\\xda\\x76\\xd5\\x9c\\x1c\\x1e\\xce\\xd6\\x17\\xcd\\x64\\xbe\\xa8\\xcd\\xb2\\x58\\x2f\\x27\\xa6\\xbe\\x38\\x5c\\x1d\\xf2\\x9f\\x87\\x90\\xa2\\xb8\\x39\\xcc\\x75\\x9b\\x15\\xe5\\xe3\\x22\\x9f\\x7e\\xff\\xd7\\xff\\x7c\\x70\\xf4\\xbf\\xb0\\x35\\xc4\\x45\\x01\\xe4\\x8d\\x06\\xfa\\xfb\\x3b\\xbe\\x77\\x91\\x79\\x26\\x59\\x72\\x6b\\xec\\x8b\\x12\\xab\\xe7\\xc5\\xf9\\xb9\\xae\\xf1\\x37\\xf8\\xc7\\xdc\\x3b\\x09\\x20\\x94\\x27\\x25\\xe9\\x03\\xb8\\xc0\\x35\\xa0\\x73\\xce\\xd7\\x65\\x86\\xeb\\xc7\\xf1\\xca\\x76\\xa4\\x20\\xf5\\x65\\x55\\x5e\\x9b\\x42\\x26\\x1a\\x1a\\x87\\xfe\\xdd\\x7d\\x12\\x24\\xf2\\xa4\\xb1\\x77\\x86\\xec\\xb8\\x5c\\x06\\xcd\\x0c\\x85\\x03\\x3c\\x05\\x1e\\x3a\\x2f\\x66\\xe0\\xf6\\x76\\x25\\x7e\\xa3\\x95\\xf8\\xf2\\x45\\xf9\\xda\\xfc\\x0f\\x8a\\x79\\xb3\\x3f\\x46\\x2d\\xa3\\x3f\\xa0\\x6d\\x79\\xef\\x26\\xb5\\x95\\xbf\\x0f\\x3c\\x8f\\xfa\\x77\\xcc\\x9c\\x64\\xbe\\xaf\\x9b\\xf8\\x99\\x59\\xf5\\xce\\xfb\\xf7\\x7f\\x65\\xde\\x67\\x66\\x95\\x88\\x15\\x38\\x33\\x2b\\xf2\\xaf\\xb4\\x24\\xff\\x76\\xf6\\x87\\xd7\\xb6\\x38\\x7f\\xf1\\x23\\xc1\\xb7\\xdf\\xce\\xfe\\x90\\x01\\x4f\\x7d\\x9c\\x55\\x14\\x8b\\xb1\\xee\\x12\\x2d\\x01\\xd4\\x9f\\x8f\\xd5\\x61\\xd7\\x34\\x75\\x30\\x0d\\x23\\x1a\\xba\\xd5\\x86\\xea\\x26\\x54\\x32\\x2d\\xa4\\x57\\xe7\\x53\\x53\\x5d\\x69\\x20\\xf7\\xdb\\xbc\\x35\\xc0\\x0c\\xe8\\xdd\\x35\\xd0\\x41\\xcc\\xe9\\x5f\\x28\\x73\\x4f\\x85\\xe0\\x99\\xfe\\x07\\xd5\\x6c\\x9b\\x56\\x2f\\x27\\x00\\x35\\xad\\xaf\\x5b\\x08\\xec\\x9b\\x69\\x05\\x16\\x6e\\xb0\\x99\\xef\\x97\\x98\\x8a\\x1b\\x3c\\xf7\\xbd\\x63\\xb4\\xfd\\xfa\\xac\\xb8\\x1a\\x8e\\xd4\\x3e\\xf4\\xb7\\x3f\\x39\\x04\\x29\\x65\\x80\\x50\\x9f\\xf6\\x3b\\x6e\\xfb\\xfe\\x68\\x0f\\x6d\\x1c\\xfb\\x76\\xff\\xf7\\x83\\x20\\xbe\\xd6\\x3c\\xb5\\x23\\x79\\x0f\\x63\\x70\\x76\\xdf\\xb7\\xb3\\x3f\\x50\\x50\\xa2\\xb4\\xc1\\xd7\\xed\\xc8\\x8a\\x63\\xe5\\x3a\\xe7\\x38\\x37\\x21\\x41\\xa5\\x7e\\x88\\x36\\xbf\\x8f\\x4c\\x28\\x7a\\x81\\xa4\\x86\\x03\\x96\\xe8\\x4f\\x03\\x71\\xc1\\x7d\\x16\\xaf\\x48\\x1a\\x15\\x8a\\xde\\x76\\x75\\x86\\x09\\x39\\xca\\x05\\x92\\x50\\x7a\\x69\\x57\\x89\\x17\\xcc\\x49\\x5b\\xdb\\xb7\\xe7\\xe7\\xee\\x3d\\xf1\\xa4\\x75\\xfe\\x4b\\x34\\xc6\\x4e\\x8f\\x50\\xdb\\x36\\x09\\x15\\x0f\\xa6\\xd2\\xd7\\x5e\\xbc\\x09\\x3d\\xbe\\x0b\\x95\\x1c\\x77\\xdc\\x55\\xe8\\x30\\xa6\\xe6\\x05\\x9b\\x85\\xc9\\x23\\xfc\\x47\\xda\\xd1\\x20\\xff\\x3c\\x0e\\x3e\\xba\\x78\\xd0\\xeb\\xbe\\x87\\xab\\x40\\x5d\\x1e\\xbb\\xad\\x8f\\xeb\\x1f\\xf6\\x4f\\x5d\\xa9\\xc7\\xea\\x48\\x9d\\x84\\x1c\\xce\\xc7\\x77\\x5d\\x63\\xe7\\xd0\\x06\\x3d\\x8f\\xef\\xd4\\xc8\\x6f\\xdc\\x88\\x17\\x39\\x0f\\xa6\\xd0\\xda\\xa9\\x14\\x35\\xe9\\x9b\\x53\\xd1\\x7b\\x4a\\xd9\\xfa\\xa2\\x9e\\x4e\\xb6\\x58\\x36\\xd2\\x15\\xc3\\x21\\xe6\\x33\\xec\\x0e\\x2a\\x9e\\x26\\xf4\\x5b\\x51\\x3b\\x4f\\x26\\x71\\x01\\x79\\x38\\xdd\\xc9\\xa2\\x6d\\xa2\\xc3\\x39\\x82\\x53\\x26\\x4f\\xa3\\x74\\x6a\\xaa\\xcd\\x32\\x3e\\x6c\\xd8\\xbd\\x3b\\x65\\xe2\\xea\\x10\\x6b\\x68\\x5b\\x16\\xf4\\x4d\\x43\\x76\\x00\\xa9\\x18\\xe5\\x85\\x5f\\x49\\x6b\\x81\\x0f\\x38\\xfa\\x84\\x2f\\x7f\\xb6\\x94\\x2a\\x2b\\x14\\x22\\x2f\\x22\\x0a\\xeb\\x4c\\xb8\\x8f\\x16\\x9d\\x88\\x0d\\x97\\xf1\\x34\\xdc\\xcd\\x3d\\x7a\\x05\\x84\\x3f\\xfc\\x3e\\x88\\x61\\x9d\\x3a\\xc7\\x08\\x1e\\x49\\xc1\\xfc\\x19\\xf8\\x75\\x9e\\x95\\x3f\\x9a\\xeb\\x90\\xb4\\x21\\x62\\x66\\x27\\x59\\x33\\x2d\\x71\\x7d\\x58\\x12\\x37\\x3a\\xf9\\x03\\x2e\\x8c\\xcf\\x00\\xc6\\xa7\\xa6\\xd3\\xe9\\x5d\\xce\\x53\\xf8\\x90\\x22\\x79\\x45\\x36\\xe9\\xb7\\xe6\\x04\\xd7\\x29\\xfc\\xb5\\x35\\xab\\x48\\x3e\\x86\\xf4\\xa2\\x76\\x07\\xd1\\xa4\\x61\\x1a\\xc1\\x8c\\x1d\\x93\\xf6\\xb6\\x0d\\xe7\\x27\\x8f\\xf7\\x2f\\x17\\xf1\\xd1\\xf8\\x12\\xf3\\x7e\\xc2\\xde\\x3d\\xca\\xa7\\x7c\\xdc\\x71\\x15\\xa4\\x1c\\x09\\xe1\\x07\\xdb\\x94\\xb3\\x91\\x78\\x32\\x0e\\x22\\xbf\\xdc\\xa9\\x93\\xde\\x8a\\xa0\\x80\\x70\\xae\\x36\\x0e\\x96\\x3a\\xdb\\x22\\x0c\\x28\\xfa\\xdd\\x7c\\x0b\\x27\\xf2\\x5b\\xb5\\x22\\x4f\\x15\\xf6\\xb7\\x06\\xdb\\x7d\\xe4\\xa9\\x83\\xce\\x62\\x73\\x53\\xe5\\x59\\xbd\\xa5\\xf6\\xd1\\x5d\\xcc\\x76\\x5f\\xe4\\x05\\x8a\\xbb\\x59\\xbd\\x9d\\x60\\x20\\x3d\\x0d\\xe1\\x9d\\x69\\x06\\xec\\x17\\x99\\xd5\\x23\\xb5\\x8f\\xae\\x36\\xfb\\x43\\x8c\\x98\\xc0\\x76\\xb3\\xa5\\x96\\x39\\x1a\\x54\\xd6\\xa8\\x7f\\xd8\\xe2\\x6a\\xac\\x8e\\xff\\xc1\\x59\\xfa\\xb2\\xf3\\x56\\xd7\\xe2\\xbb\\x2a\\x2a\\xb5\\xa9\\x0b\\xc8\\x31\\x01\\x19\\x3c\\xed\\x30\\xc3\\x6a\\xfd\\xa3\\x80\\xc6\\xee\\x36\\x08\\x37\\x00\\x1c\\x39\\x7d\\xec\\xef\\x1d\\xca\\x3f\\xbf\\xce\\x96\\xab\\x52\\x37\\x6a\\xb0\\x5e\\xad\\x74\\x3d\\x9e\\x67\\x8d\\x56\\xa5\\x86\\x78\\x46\\xb0\\xe4\\xfc\\x72\\xf6\\x6a\\xa4\\x4a\\xb3\\xe1\\xdf\\xec\\xb7\\x57\\x67\\xbf\\x0c\\x4f\\x6c\\x6d\\xfb\\x9f\\x1d\\xf2\\xd1\\x48\\x1d\\x8f\\xd4\\x64\\x32\\x19\\xf2\\x57\\x1a\\x83\\xc2\\xd5\\x80\\x91\\xcd\\xe0\\x87\\xec\\x8b\\xfb\\x7f\\xf8\\xfa\\x23\\xfd\\x45\\xff\\xff\\xe3\\x17\\x58\\x0f\\x2c\\xf3\\x85\\xfe\\xff\\x09\\x96\\x7d\\x82\\x65\\x7e\\xfc\\xf2\\x84\\xff\\x1f\\x66\\x70\\xa5\\xeb\\xad\\x27\\x01\\x5c\\x7d\\x07\\x11\\x2e\\xc2\\x00\\x2a\\xe7\\x4d\\xdd\\x28\\x80\\x39\\xcf\\x75\\x8d\\xbe\\x89\\x4d\\x5b\\xcc\\x2f\\x01\\x72\\xdc\\xf4\\xd4\\x64\\x77\\x12\\xc1\\xc6\\x71\\xc7\\x6e\\x3f\\x99\\xac\\xef\\x73\\x0e\\xc1\\x91\\x7f\\x97\\x3f\\x9f\\xfc\\xaf\\x2f\\x5f\\xfa\\x8f\\xea\\x5e\\xe4\\x12\\xf5\\xda\\x69\\x3d\\xe2\\x8e\\xbc\\xe6\\xb6\\xc7\\x13\\x12\\xf8\\x03\\x38\\xcf\\x0b\\x53\\xf4\\xc0\\x9e\\xe2\\xda\\x8f\\x8e\\x54\\xc5\\xa1\\x03\\x54\\xd2\\x85\\xcd\\xcd\\xcf\\xb5\\xa0\\x1e\\x3b\\x5d\\xeb\\x09\\x69\\x46\\xe5\\xec\\xbd\\x12\\x9e\\x95\\x97\\x4b\\x8e\\xfe\\x5e\\xe2\\xb5\\x7f\\xea\\x6d\\x2f\\xf4\\x05\\x7e\\x83\\x42\\x32\\x7f\\xe3\\x2d\\x4c\\x4b\\xf0\\x23\\x8f\\xb4\\x85\\x67\\x01\\x98\\xe2\\x5b\\xfb\\xcf\\x81\\x2b\\x8f\\x6b\\x3e\\xc9\\x0b\\x2b\\x37\\x14\\xa6\\x02\\xe7\\x66\\xcc\\x04\\x02\\x3c\\x0e\\xa8\\x65\\x4b\\x1f\\xf0\\x8f\\x3d\\xe9\\xae\\xc2\\x0f\\x0b\\x91\\x8c\\xc9\\x61\\x7a\\x2e\\x54\\xf2\\xf7\\x3d\\x34\\x7c\\x51\\xbb\\xcc\\x7a\\xf6\\x3a\\x9e\\x3c\\x68\\x42\\xf3\\x4d\\x1d\\x45\\x15\\x91\\x5b\\x48\\x77\\x4f\\x4e\\xd5\\xcc\\x2b\\x65\\xb7\\x98\\xcb\\xfb\\x9e\\xd4\\x63\\xf4\\x06\\x82\\xa4\\x5c\\x62\\x8a\\x53\\xc1\\x06\\xe1\\x7e\\x94\\xa4\\x02\\x19\\xa1\\x6d\\xe9\\x55\\x56\\xb7\\xef\\x2c\\xf1\\x17\\xf0\\x42\\x8a\\xc2\\xb1\\x7d\\xe2\\x62\\x2a\\xf7\\x89\\xc9\\x83\\xd2\\xee\\x96\\xfa\\x4a\\x97\\x10\\x5c\\x2b\\xb7\\xd4\\x0e\\x14\\xdb\\x8b\\x07\\x57\\x73\\xc8\\x39\\x75\\x27\\x36\\x95\\x7a\\xc0\\x6d\\xb5\\xe3\\x7b\\x97\\xd5\\xed\\x93\\x76\\x00\\xfd\\x8f\\xc4\\xd4\\xd8\\x8e\\x8f\\xa2\\xde\\x14\\x2e\\x86\\xb7\\xf6\\xdf\\xec\\x00\\x9c\\x95\\xbe\\x91\\x70\\x92\\x89\\xb5\\x61\\x24\\x7e\\x68\\x4c\\xc4\\xc2\\x5f\\x65\\xe5\\x84\\x7b\\x90\\x6d\\xc1\\x37\\xd7\\xd2\\xbd\\x70\\x95\\x7d\\x90\\x40\\xc6\\x30\\xdb\\x7f\\xa3\\xf4\\x4b\\xf3\\x85\\xce\\x56\\xe5\\x56\\xe9\\xa6\\x2d\\x96\\x56\\x4e\\x8b\\x4c\\xfb\\x74\\xb5\\x32\\x2f\\xc4\\x40\\x10\\xfb\\x11\\x81\\x6f\\x5b\\x5d\\x2f\\x75\\x5e\\x80\\x80\\x07\\x52\\x19\\x83\\xb8\\xcb\\x30\\x3f\\x6a\\x3a\\xe4\\x6b\\xc2\\x69\\x1a\\x0f\\xa8\\x25\\x3c\\xcc\\xbb\\x33\\x2f\\x8b\\x95\\xbd\\x02\\x64\\x22\\x9d\\x3b\\xe8\\xd0\\x58\\x5a\\x4d\\x99\\xd0\\xd4\\x5f\\xe8\\xac\\x79\\xd9\\xf6\\x76\\x19\\x26\\x30\\x17\\x25\\x1f\\x70\\xea\\xa0\\xe7\\x79\\x96\\x94\\xda\\x9c\\xc2\\x3b\\x14\\xd7\\xbc\\x26\\x1b\\x5f\\x4a\\x7c\\x98\\x17\\x14\\xd0\\x4c\\x11\\xd9\\xb4\\x03\\x8d\\xb7\\x62\\x40\\xaa\\x2a\\xf6\\x8d\\x77\\x01\\x63\\x90\\xdc\\x03\\x71\\xce\\x8b\\xea\\xdc\\xd4\\x4b\\x50\\x99\\x81\\x64\\x72\\xfd\\x8b\\x2e\\xed\\x55\\x45\\x00\\xfb\\x10\\x45\\xab\\xae\\x3b\\xb2\\x0e\\xa0\\x99\\x04\\x44\\x40\\x39\\x1e\\x73\\x71\\xa1\\xa1\\x97\\xa9\\xab\\x3a\\x68\\x0c\\x36\\xff\\x48\\x1d\\x59\\xbe\\x5e\\x35\\x1d\\x4a\\xb2\\xd7\\x3c\\xc2\\xb3\\x43\\xff\\x70\\xe4\\xa8\\x47\\x7f\\x31\\x7a\\xb1\\xcd\\x12\\x9e\\x46\\x51\\x62\\x48\\x51\\xa7\\x66\\xdd\\xda\\x2b\\x16\\x48\\xaf\\x01\\xbd\\x28\\x45\\x04\\xa4\\x3b\\x2c\\x0b\\xcd\\x55\\xa2\\xf4\\x01\\xf6\\x90\\x03\\x98\\x11\\x58\\x88\\x04\\xad\\xbe\\x33\\xcd\\x87\\xa2\\x5d\\xbc\\xac\\xce\\xcd\\xc0\\x87\\xb4\\xe0\\xa9\\x1a\\x71\\x63\\x23\\x98\\xa9\\x70\\xfb\\x01\\xaa\\x95\\x72\\x96\\xe4\\x09\\x96\\x9c\\x60\\x65\\xa6\\x50\\x8d\\x0f\\x36\\x36\\x05\\x97\\xac\\x69\\x26\\x3c\\x4c\\xa1\\xed\\x25\\xfa\\x59\\x99\\xc6\\x3d\\x34\\x41\\x39\\xd7\\xb3\\x60\\xc2\\xcb\\x54\\xc4\\xc0\\x04\\x4e\\x3a\\x87\\x87\\xea\\x25\\x6c\\xed\\x72\\xdd\\x40\\x88\\xae\\x7b\\x25\\x50\\x10\\xd0\\x40\\x3c\\x5c\\xe5\\xab\\x4d\\xba\\x9d\\x7b\\x8a\\x83\\x93\\x7c\\x3d\\x52\\x5b\\x91\\x95\\xc2\\xcc\\xe9\\x79\\x63\\xe6\\x7b\\x4a\\x6d\\xed\\x9b\\x28\\xa9\\x95\\xa0\\x55\\xd8\\x42\\x42\\x50\\x7f\\x95\\xc8\\xe5\\xb7\\x17\\xe6\\x39\\x3a\\xe0\\x1e\\xb9\\x74\\xed\\xb0\\xe5\\xe3\\xe3\\x61\\x70\\x8c\\x39\\xe2\\xe2\\x09\\xeb\\xe1\\xe0\\x18\\x6f\\x87\\x23\\x94\\xba\\xa6\\xca\\x35\\xa5\\x0e\\xe0\\xdf\\x90\\x00\\x0d\\xdd\\x40\\x44\\xbc\\x0f\\x94\\x8e\\x0c\\x67\\xc9\\x01\\x45\\xad\\xf8\\xcc\\x5f\\x18\\x3b\\x66\\x5b\\x91\\x37\\x71\\x38\\xf8\\x63\\x9f\\x45\\xfd\\x9a\\x67\\x6f\\xdf\\x84\\x47\\xe1\\x6b\\x31\\x64\\x4d\\x2e\\x28\\xed\\xcd\\xb0\\x9b\\xc1\\xd9\\x25\\x45\\x76\\xef\\xf2\\xd0\\x63\\xcd\\x49\\x21\\x14\\xec\\x01\\x5b\\xe6\\xe5\\x30\\x84\\xf0\\x9a\\xfa\\xa0\\xd2\\xf7\\xab\\xac\\x7a\\xd2\\x3e\\xaf\\xf2\\x50\\x97\\xe6\\x0b\\xe3\\x75\\x48\\x15\\xef\\xdf\\xa7\\x7f\\x4d\\xce\\x8b\\x2a\\xb7\\x62\\x3b\\x83\\x6b\\x91\\x2f\\xac\\x2b\\x86\\x90\\x83\\x96\\x07\\x3f\\xf2\\x0d\\x41\\x92\\x4d\\xfb\\xed\\xcb\\x17\\xe5\\x7e\\x9f\\x4e\\x13\\x05\\xee\\xdf\\xa7\\x02\\xcc\\x66\\x22\\x58\\xca\\x28\\xee\\x06\\x17\\xd0\\x37\\xd3\\x1a\\xf1\\x30\\xed\\x78\\x49\\xc0\\x66\\x4b\\xc7\\xf9\\x40\\x13\\x8d\\xa8\\x58\\x00\\x58\\x77\\x1d\\xa0\\xce\\xa5\\xa5\\x71\\x3a\\x10\\x5b\\x35\\xde\\xa9\\x9e\\xf4\\x99\\x36\\xd3\\xe2\\x1b\\x04\\x18\\xea\\x8b\\xa2\\xa2\\xb0\\x21\\xd0\\xb1\\x88\\x74\\x34\\x73\\x99\\xf6\\xe7\\x2b\\x44\\x69\\x4b\\xb3\\x43\\xd6\\x6c\\x3d\\x9c\\xaa\\xed\\xa9\\xba\\x21\\x67\\x78\\xf0\\x1b\\xc6\\x31\\xfd\\x3b\\x7b\\x44\\x53\\xc3\\x23\\xea\\x09\\xe6\\x84\\x6e\\x60\\xe2\\x9a\\x84\\xaf\\x27\\xe2\\x47\\xf0\\x87\\xbd\\x65\\x23\\x12\\x5a\\x83\\xb8\\x77\\x74\\xb6\\x17\\x7a\\x8c\\x7f\\xe7\\x33\\x07\\xc4\\x03\\xe8\\xe0\\x0c\\x7d\\x4a\\xee\\xa8\\xe9\\xd8\\xbd\\x60\\x34\\xe4\\x11\\xeb\\x9f\\x49\\x9b\\xc4\\xf6\\x96\\xaf\\xa4\\x46\\x37\\xbe\\x58\\x75\\x02\\x37\\x4d\\x71\\x2e\\x6e\\x0b\\xb8\\x82\\x20\\x8f\\xcf\\xcc\\x5c\\x83\\x4b\\x9a\\x7b\\xf9\\x42\\x81\\xc8\\xec\\x30\\x82\\xd0\\x40\\xb3\\x1a\\xb7\\x66\\x2c\\x2d\\x17\\xf6\\x6f\\xba\\xde\\xad\\x90\\x2c\\x33\\x36\\x9a\\xeb\\x97\\xcd\\x13\\xdb\\xe8\\x60\\x66\\xae\\x91\\x15\\x61\\x9d\\x20\\x62\\x74\\x66\\xae\\x25\\x7d\\xaa\\xc7\\x94\\x20\\xf7\\x04\\x7e\\x21\\x5a\\x52\\x8f\\x71\\x06\\x27\\x6a\\x50\\xa2\\x27\\xfd\\x8c\\x34\\x61\\x54\\x8e\\xde\\x80\\x8f\\xd4\\x75\\xa8\\xfc\\xba\\x95\\x45\\x1a\\x79\\xad\\x1d\\x1e\\xaa\\xd7\\xe6\\x4a\\xab\\x2d\\x2a\\x36\\x93\\x21\\xb3\\xaa\\xb1\\x97\\x28\\x1f\\xf9\\x3e\\x55\\x3f\\x88\\x0a\\xff\\x04\\xa5\\x91\\xf1\\xd6\\x0a\\x40\\xf8\\x80\\x2c\\xb7\\x9c\\x92\\x4d\\xfd\\x23\\x41\\x54\\xff\\x80\\x2c\\x71\\x98\\xf2\\xc6\\xa8\\x2c\\xff\\x63\\x0d\\x89\\xbd\\x28\\xa8\\xb7\\x15\\x98\\x8c\\x10\\x08\\x59\\x34\\xa4\\x86\\x90\\x68\\x7d\\x2f\\xee\\x60\\x5e\\x91\\xfc\\xe9\\x68\\xd4\\xcf\\xca\\x46\\xaa\\x6c\\x6b\\x8e\\x82\\xfa\\xfa\\xa7\\x32\\x0e\\xfd\\xa5\\xcf\\x00\\xa5\\x8a\\xa6\\xfa\\xb6\\x55\\xab\\xd2\\x4a\\xbb\\x21\\xbd\\xa1\\x9e\\x04\\x2f\\xe9\\xf3\\xe2\\xc2\\xae\\xb0\\x59\\xb7\\xd2\\x5e\\x0d\\xea\\xba\\x06\\x9b\\xee\\xbe\\x75\\xb2\\xb2\\x84\\x6d\\x66\\xfb\\x32\\x3f\\x75\\xe3\\xc7\\x67\\xaf\\xc7\\xe4\\x63\\x22\\x2f\\x7e\\x28\\x12\\xa0\\x22\\x24\\xa6\\x96\\xdf\\x87\\x1d\\xff\\x2c\\x95\\x26\\xc4\\xce\\x71\\xa6\\x77\\xa7\\xbf\\xc4\\x71\\x71\\xc5\\xb3\\xf7\\x1e\\x3f\\x7b\\x29\\x1b\\x6d\\xb6\\xb9\\xdc\\x64\\x75\\xae\\xc6\\xc7\\x0e\\xb7\\xc2\\x8a\\xe2\\x14\\xb5\\xcf\\xc9\\x33\\x1c\\xbf\\x57\\x83\\x39\\x24\\x66\\xe4\\x26\\x70\\x9d\\x1a\\x8d\\x0e\\x51\\x43\\xcc\\x84\\xd2\\xd6\\x3a\\x6b\\x55\\xd1\\x36\\xb4\\xd8\\x33\\x4c\\xce\\xd1\\xa0\\x29\\xaf\\x29\\xae\\x28\\x7c\\xf2\\xf0\\x90\\x34\\xa7\\xf6\\x37\\x7d\\xcd\\xbf\\x41\\xda\\x41\\x91\\xca\\x10\\xa3\\x20\\xcb\\xad\\xca\\xf2\\xbc\\xd6\\x0d\\x88\\xf2\\x5c\\xdf\\x89\\xba\\x0d\\x63\\x09\\xd8\\xb9\\x7e\\xdb\\xa0\\xec\\xbe\\x87\\x9a\\x41\\xa4\\x42\\xbb\\x14\\x8f\\x71\\x29\\xc0\\x0e\\x73\\x82\\xff\\x86\\xac\\xca\\xb8\\x24\\x44\\xa4\\xbe\\x5c\\x6b\\xb8\\x14\\xd4\\xc0\\x72\\x20\\x89\\x81\\x0e\\x75\\x56\\x54\\x59\\xbd\\x75\\x11\\x60\\x06\\x96\\x09\\xdf\\x3f\\x30\\x6f\\x2f\\x87\\x6f\\x20\\x97\\xb0\\xf3\\x7b\\x98\\x99\\x6b\\x6c\\x03\\x7c\\x4f\\x25\\x27\\x95\\x22\\xb9\\x25\\xeb\\x8d\\x56\\xf5\\xba\\x52\\xd9\\xbc\\x36\\x4d\\x03\\x09\\x0c\\xb9\\xa9\\x6b\\xe0\\xf5\\xd8\\x4c\\x54\\xd3\\x3e\\x30\\x08\\x5f\\xa7\\xe5\\x93\\x3b\\x5f\\x3c\\x91\\x28\\xff\\xf6\\x59\\x79\\xfd\\x24\\xc2\\xfd\\xc7\\x72\\xbb\\xae\\x77\\x47\\xea\\x33\\x30\\x55\\x7c\\xcd\\x2d\\x8f\\x7b\\x41\\x1c\\x3a\\xb2\\x8d\\x9f\\x4a\\xa6\\x1e\\xfd\\xe6\\xe3\\x1b\\xd3\\xf7\\x03\\x02\\xa4\\x0a\\xd1\\x43\\xa6\\x4b\\x87\\xb0\\x15\\xea\\x13\\x2e\\x8b\\xfb\\xf7\\xfd\\x45\\xf0\\x70\\xaa\\xae\\x7d\\x90\\x8f\\x58\\xa0\\x39\\xa3\\xe7\\xc8\\x35\\xc2\\x3d\\x53\\xa1\\x1e\\x90\\x83\\x9d\\x43\\xb9\\x85\\xd9\\x5f\\xd6\\xe8\\xdf\\x3a\\xef\\x43\\x4e\\xe8\\xee\\x38\\x17\\xde\\xa7\\xe4\\x79\\x13\\x33\\x9d\\x4d\\xd6\\xa0\\xe4\\x89\\xe1\\x16\\x10\\x4f\\xef\\xa6\\xf5\\x24\\xc8\\x08\\x71\\x78\\xa8\\x9e\\x15\\x4d\\x5b\\x54\\x17\\xeb\\xa2\\x59\\x04\\xad\\x54\\x3a\\xab\\x31\\x67\\x27\\xb0\\x49\\x3b\\x79\\x53\\xd3\\x23\\x9b\\xaf\\x75\\xf2\\x25\\x77\\x3b\\x9c\\xb5\\x04\\xe3\\x78\\xad\\xc6\\x7e\\x21\\x68\\xe5\\xc4\\x87\\x9a\\xf0\\xaa\\xae\\x47\\x2a\\x6b\\x39\\xf2\\x90\\x2b\\xc3\\x69\\xf2\\xea\\x43\\xb7\\xc6\\x07\\x6a\\xc0\\x85\\xd1\\x40\\x4b\\x0e\\xe2\\x4e\\xb3\\xe8\\x7f\\x25\\x1d\\xa3\\x3a\\x91\\x6a\\x4a\\x85\\x8b\\xeb\\x7b\\x7a\\x1c\\x0f\\xf1\\x24\\x1e\\x62\\x1c\\x45\\x7c\\x78\\xa8\\x06\\x4f\\xe0\\xfa\\x23\\x65\\x42\\xab\\x2b\\x60\\x79\\xb8\\xda\\xc5\\xb9\\xaa\\xf4\\x5c\\x37\\x4d\\x56\\x6f\\x27\\x22\\xc8\\xd6\\x72\\x07\\xfb\\x5c\\xc1\\x87\\x88\\xe5\\x18\\x2e\\x22\\x11\\x48\\x60\\x88\\xb1\\xd2\\x07\\x07\\x44\\x28\\x96\\xcd\\x1a\\x95\\xeb\\x56\\xd7\\x4b\\x7b\\x3d\\xe1\\x45\\x83\\x5a\\x07\\xa3\\xb2\\xa6\\x31\\x73\\x50\\x90\\x6d\\x0a\\x7b\\x17\\x4a\\xa7\\x7e\\xdc\\x2d\\x6e\\x04\\x37\\x2d\\x56\\x88\\x40\\x52\\x63\\x54\\xbf\\xa8\\xc2\\xb2\\x3d\\xa7\\xbb\\x70\\x2f\\xff\\xb0\\x19\\x41\\x15\\xe1\\x82\\xe3\\x14\\x8e\\x82\\x05\\xc7\\x6f\\x89\\x4b\\xdb\\x96\\x62\\x4d\\xee\\x09\\x9d\\x95\\xc1\\xd7\\x3d\\x32\\x06\\xc8\\x66\\xc1\\xbf\\x7f\\x38\\xf4\\xe0\\x4d\\x81\\x84\\x61\\x8f\\xec\\x90\\xa8\\x48\\x3d\\xa6\\x8e\\x7a\\x08\\xe2\\xf0\\x50\\xbd\\x31\\x1b\\x58\\xc1\\x6c\\x3e\\x5f\\xd7\\x76\\x51\\x63\\x55\\x25\\xc8\\x33\\x10\\xeb\\x02\\xd2\\x29\\xca\\x19\\xad\\xc1\\x4a\\xdc\\x8a\\xa5\\x2c\\xf5\\x9b\\x5b\\x40\\x77\\x20\\xc8\\xfc\\x3d\\xed\\x1a\\x62\\x58\\xb9\\x63\\xaf\\x64\\xa1\\xde\\x19\\x39\\x07\\x9a\\x3e\\xf9\\x7b\\x18\\x90\\xb2\\xb0\\xa4\\xc3\\x77\\xcf\\x30\\xb6\\xea\\xa1\\x30\\xaa\\x5b\\x8a\\xdb\\x02\\x02\\x09\\x7e\\xc2\\xb5\\xe3\\x9b\\x09\\x0e\\x5a\\x73\\x59\\xac\\x82\\x38\\xa3\\x66\\x20\\xb7\\x11\\x87\\x79\\x2c\\x5e\\x58\\xb1\\x6a\\x2b\\x9c\\x8a\\x54\\x6e\\x59\\x6e\\x60\\x07\\x3c\\x4c\\xc8\\xcd\\x2c\\xc0\\xfc\\x13\\xd2\\x0a\\x8b\\xd3\\xb6\\x09\\xb8\\x72\\x51\\x0e\\x69\\x4c\\xdd\\xea\\x3c\\x14\\xe4\\x46\\xe4\\x00\\xa8\\x32\\x55\\x99\\x0a\\x40\\xa0\\xc7\\x1b\\x8f\\xf2\\x06\\xc9\\x80\\xdb\\x75\\x46\\xf6\\x5d\\x8d\\x18\\x1f\\xd9\\xa5\\xc6\\xed\\x87\\x4e\\x31\\x08\\x5b\\x44\\x65\\x33\\x6f\\x44\\x3b\\x27\\x07\\x67\\x63\\x49\\xc2\\xc9\\xb3\\x97\\x62\\x23\\x6e\\x77\\x90\\xf6\\xf0\\x36\\xb6\\x6c\\x20\\xf1\\x20\\x8a\\x4f\\xdc\\xc4\\x41\\x5a\\x20\\xf8\\x6e\\xea\\x9a\\x2d\\x7a\\xad\\x19\\x80\\x0e\\xde\\x2b\\xce\\xf9\\xc7\\x11\\xdf\\x91\\x3b\\xc9\\xb4\\x57\\xc8\\xe1\\x9f\\xfc\\xf9\\x76\\x36\\xe1\\x3b\\x65\\x70\\xb8\\x95\\xe4\\xf9\\xde\\x66\\x45\\xd0\\x0d\\x68\\xf0\\xf0\\x2d\\xe8\\x43\\x37\\x86\\x7b\\xa9\\x15\\xb0\\xeb\\xf6\\x49\\x88\\xfc\\x80\\x5e\\x68\\xc5\\xfd\\x70\\x57\\x46\\x52\\x10\\xc4\\xf0\\x1e\\xbb\\x3b\\x65\\x63\\xc8\\x3a\\x9c\\x16\\x9a\\xb2\\xc4\\xfd\\x9b\\xd5\\xda\\xb6\\x2f\\x4d\\xe1\\x64\\x03\\xe7\\x46\\xb2\\x96\\x43\\xd7\\xc0\\xc1\\xc5\\x54\\xd8\\x33\\xa4\\xa5\\xe3\\x97\\x02\\x6e\\xf8\\x23\\x6f\\x4c\\x03\\x45\\x5e\\xef\\x5e\\x22\\x08\\x28\\x05\\xcd\\xdf\\x71\\x17\\x43\\x91\\xd6\\xed\\x62\\x87\\x57\\xde\\xb6\\x8b\\x77\\x63\\x59\\x24\\x80\\x30\\xa9\\xd1\\x02\\x88\\x8d\\x75\\xa1\\x87\\xfc\\x20\\x0f\\xc0\\x87\\xa3\\x2d\\xc5\\xf8\\x9a\\x28\\x1e\\xda\\x16\\xdb\\xc1\\x62\\x18\\x8c\\x3e\\xe0\\x34\\x7f\\xff\\x2a\\x56\\xf3\\x12\\xf0\\x7e\\xe9\\x0d\\x86\\xca\\xf9\\xba\\x2d\\x31\\xc2\\x95\\xf5\\x49\\x28\\xad\\x83\\xff\\x46\\xa1\\x1b\\x60\\x25\\xb9\\xe5\\x14\\x45\\x75\\x21\\x29\\x00\\x93\\xa4\\x77\\xd9\\x89\\x63\\x36\\xf6\\xb6\\x59\\xd7\\xea\\x1f\\xf0\\xe1\\x1f\\x04\\xb5\\x99\\xd1\\xe3\\x33\\xb3\\xf2\\xb8\\x25\\xce\\xe8\\x45\\x91\\x1b\\x0d\\xd4\\x8d\\xc9\\xd8\\x2d\\x79\\x8a\\x57\\x11\\xe7\\x9a\\xc6\\x26\\x60\\x51\\x61\\x28\\x00\\x53\\x04\\x39\\x16\\x80\\x16\\x81\\x5a\\x1b\\xe3\\x81\\x8d\\xc2\\x2e\\x0a\\xc9\\xa5\\xbc\\xde\\xc3\\x9e\\x97\\x26\\x3b\\xd7\\x13\\xf5\\xa4\\x51\\xcd\\xda\\xde\\x04\\x1b\\xed\\x9e\\xce\\x74\\x4e\\x40\\x64\\x62\\xa1\\x84\\x9e\\xd1\\xc1\\x6a\\xd2\\x81\\xaa\\x10\\x8b\\xe9\\xbc\\xb4\\x47\\x85\\xbb\\xe5\\xcc\\x99\\x00\\x2b\\x37\\xb7\\x2f\\xd0\\xac\\xda\\x12\\xf7\\x5e\\x65\\x9c\\x94\\x31\\x3c\\x7e\\x52\\x13\\x51\\xeb\\x73\\x86\\xf0\\xfc\\x2a\\xe5\\xeb\\x69\\xa4\\x9b\\xa8\\xf5\\xf9\\x04\\xfe\\x7d\\x1a\\x28\\x5d\\xed\\x67\\x5d\\xe5\\xa7\\x21\\x1b\\xe2\\x64\\xa3\\x60\\x4b\\x79\\x86\\x29\\xc7\\x77\\xe4\\xcb\\x96\\x4c\\x2d\\x08\\x85\\x87\\x26\\x05\\x63\\x77\\x67\\x6a\\x85\\xe7\\xf8\\x91\\x93\\x2c\\x57\\x96\\x3d\\x3f\\x64\\xd9\\x92\\x7c\\x49\\x8b\\x6a\\xad\\x45\\xb8\\x26\\x31\\x92\\x14\\x17\\xd1\\x55\\xfe\\xdb\\xd7\\xbc\\xd3\\x90\\x6b\\x00\\x1e\\xe7\\xb2\\xa8\\x06\\xa0\\xf6\\xb5\\x43\\x18\\x92\\x39\\x1c\\x7f\\xc9\\xae\\x07\\xf4\\xdc\\xc1\\xf1\\x0e\\x87\\x4e\\xc4\\x46\\x6d\\x94\\x95\\xde\\x54\\x76\\x91\\x15\\x55\\xd3\\xd2\\x76\\x6a\\x7a\\xf9\\xa2\\x9b\\x8e\\x65\\xdd\\x23\\x49\\x96\\x5b\\xb8\\xed\\x2d\\xed\\x72\\x23\\xab\\x62\\x7e\\xa9\\x73\\x90\\xc3\\x0d\\x9c\\x37\\xc8\\xb9\\xef\\x18\\x38\\x99\\x94\\x70\\x0f\\x60\\x9a\\x0f\\xd5\\xb5\\x7a\\x0c\\xf2\\x09\\xfc\\x79\\xa0\\x8e\\xf5\\x7f\\xaa\\x13\\xfc\\x63\\xac\\xae\\xbd\\x08\\x0f\\x9b\\x69\\xa5\\x76\\xb1\\x8f\\x8f\\xa0\\x29\\xff\\x1a\\xa4\\x0d\\x5f\\xf1\\xe3\\x30\\xd8\\xf2\\x1c\\x93\\xe1\\xab\\x20\\xbe\\x14\\x9a\\x1d\\xc6\\xfc\\x2d\\xbe\\xd7\\x90\\xcd\\x1d\\x1e\\xaa\\xa7\\x65\\xb1\\x72\\xd7\\x54\\x98\\x64\\x3a\\x77\\x84\\x0e\\x24\\xe1\\xb8\\xfb\\x43\\x4f\\x05\\xd4\\xc7\\x67\\xfb\\xdd\\xa9\\xc5\\x5b\\x23\\xf9\\xbf\\x25\\x86\\x13\\x71\\xbd\\xdc\\xb8\\x91\\xf2\\xad\\xff\\x08\\x5e\\xab\\x9d\\xd6\\x84\\x28\\x60\\x5b\\x04\\x1a\\xe8\\x69\\x2d\\x62\\xd5\\x68\\x04\\x02\\x52\\x3a\\xa3\\x2c\\xac\\xd2\\x2c\\x99\\xeb\\xf3\\x6c\\x5d\\xa2\\x1e\\xae\\x8b\\xf7\\xdb\\xba\\xa0\\x99\\xdb\\x20\\xb9\\x45\\x78\\x4d\\x37\\x0f\\x40\\x6f\\x51\\x9e\\xbd\\x18\\x20\\xc7\\xd7\\x39\\xe0\\x1c\\xf9\\x93\\x47\\xe7\\x1e\\x32\\x49\\xb2\\x5e\\x36\\x53\\xb3\\x75\\x35\\x5f\\x58\\xce\\x67\\x77\\xaa\\x41\\x73\\xf4\\xac\\x36\\x9b\\x46\\xd7\\x0d\\x03\\x0f\\xc2\\xc4\\xb9\\xea\\xb9\\x7d\\xb0\\x15\\xa6\\xca\\x4a\\x17\\xa7\\x1a\\xc1\\x22\\x78\\xb6\\xf1\\xfd\\x7f\\x06\\x59\\x52\\x82\\x71\\x05\\x49\\x3b\\x5c\\xa4\\xc4\\xbc\\xd6\\x59\\x0b\\xbf\\xbf\\x31\\xb9\\x1e\\xec\\x5f\\x7b\\x9c\\x98\\xbe\\xba\\x30\\xbb\\x59\\xcd\\x05\\x6f\\xe2\\x05\\xf8\\xaa\\x8e\\x6e\\xfa\\x30\\x2a\\x3b\\x51\\xee\\xa2\\x87\\x61\\x1c\\xa9\\x21\\x7b\\x0f\\x60\\xdd\\x0f\\xd5\\x0f\\x1c\\xc5\\x41\\x85\\x1f\\x21\\x34\\xc5\\x8e\\xb0\\x2b\\x91\\x08\\x22\\x8a\\x47\\x8b\\xc6\\x34\\x8c\\xc3\\x2f\\x2c\\x6b\\x38\\x4e\\x58\\xd5\\x99\\x7c\\x85\\x56\\xaf\\xc8\\xdb\\xc5\\x24\\xf4\\x9c\\x45\\xe7\\x92\\x5b\\x28\\xd8\\x47\\x8f\\xdd\\x46\\xc0\\xbe\\x24\\x5b\\x94\\xb2\\x6a\\xbe\\x30\\x2e\\x2b\\xa2\\x65\\xae\\x00\\x1f\\xef\\xfe\\xdb\\x17\\xd6\\x04\\x49\\xc5\\x23\\xf5\\x11\\xab\\x7e\\x1a\\xde\\x79\\xb7\\x08\\x44\\x54\\x40\\xc2\\x60\\x13\\x7d\\xee\\xc8\\x23\\x97\\x76\\x65\\x20\\x7c\\xe9\\xc7\\x32\\xd4\\xf9\\x50\\x1d\\x1f\\xf9\\x94\\x1e\\x00\\x0e\\xf0\\xa0\\xbb\\x95\\x32\\xbc\\x6e\\xe3\\xa6\\xef\\x33\\x42\\xb4\\x60\\x12\\x3e\\x3e\\xa2\\x6d\\x7a\\x06\\xb2\\xd3\\xba\\xbc\\x1c\\xd7\\x3a\\xcb\\x59\\x4d\\xf2\\xec\\xed\\x6b\\xf7\\x8a\\xc7\\xa0\\xb1\\xa6\\xf8\\x53\\x3b\\x44\\xda\\xd6\\x28\\xce\\x31\\x0d\\x5e\\x1f\\x80\\xdb\\xc6\\x57\\x92\\x95\\x4b\\x40\\xa6\\x03\\x2f\\xa6\\x52\\x67\\x57\\x5a\\xd9\\xb6\\xed\\x3d\\x04\\x82\\x18\\x79\\xb8\\x12\\xe3\\x7e\\xf6\\xf6\\x75\\x98\\xbe\\x3b\\x04\\x4c\\xf4\\x2e\\x10\\x81\\x7f\\xf7\\x88\\xbd\\x92\\x3e\\xdf\\xf8\\x95\\xfb\\xcc\\x1b\\xed\\x33\\xdf\\xd9\\x2b\\xc7\\xe5\\xfc\\xc0\\x98\\xb9\\x57\\xa8\\x24\\x08\\xf2\\x4f\\xf8\\x32\\x32\\xaf\\x1c\\x31\\x96\\x8a\\x93\\x4f\\x88\\x8c\\x71\\x23\\xc9\\x66\\xec\\x50\\x3e\\x26\\x52\\x09\\x16\\x9f\\x3e\\x41\\x3d\\x3c\\x91\\xaf\\x30\\xd4\\xa2\\x12\\xc3\\x50\\x07\\x62\\xa8\\xd0\\x14\\x4c\\x65\\x57\\x5b\\x02\\x58\\x3f\\x02\\x41\\xe2\\x0c\\x3c\\x27\\xc0\\x40\\x75\\xd5\\x64\\xad\\xfe\\xc9\\xd4\\x94\\xc1\\x64\\x90\\x07\\xcf\\x97\\x38\\xb5\\xcc\\x89\\x58\\x02\\x91\\x1a\\xa5\\x5b\\xe5\\x95\\xf7\\xba\\xea\\xfc\\x46\\x2d\\x6d\\xe2\\x9a\\x32\\x87\\x90\\xed\\x28\\x91\\x1d\\xe5\\x26\\xe4\\x1a\\x8d\\xea\\x60\\xfc\\xfb\\x20\\x3e\\x75\\xa0\\x76\\x64\\x73\\x81\\xc0\\xa9\\xd9\\xba\\x55\\xeb\\xc6\\x52\\x59\\xf2\\xb8\\x39\\xc5\\x95\\x6a\\xd6\\xb3\\xf1\\xaa\\xb8\\xd6\\xe5\\x98\\x35\\x5f\\x18\\xcf\\x0e\\x01\\xf4\\xf2\\x01\\x95\\x5a\\x51\\xc9\\xa9\\x22\\x16\\xe4\\x86\\x7d\\x4b\\x74\\xe4\\x9d\\x62\\x24\\x50\\xaf\\x15\\xfb\\xe7\\xfb\\xeb\\xdf\\x9e\\x3a\\x76\\x06\\x44\\x35\\x0b\\xb1\\x63\\x30\\x39\\xe3\\x83\\x02\\x43\\x44\\xed\\xe3\\xdb\\x5e\\xa9\\xf0\\x1a\\xc9\\x56\\xab\\xda\\x5c\\x17\\xe8\\xc7\\xa6\\xd6\\x55\\x5b\\x94\\xde\\x16\\x38\\xd3\\x73\\xb3\\xd4\\x8d\\xba\\x2a\\x20\\xc3\\xbe\\x1a\\x64\\xa8\\xa8\\x69\\x17\\x6b\\x68\\x02\\xfd\\xfb\\xcb\\x2d\\x5d\\x3d\\x90\\xd2\\x31\\xe1\\x9b\\x18\\xe5\\x70\\x00\\xbb\\xfe\\x82\\x72\\x4b\\xbb\\xdf\\x04\\x20\\xc7\\x9d\\x93\\x11\\xac\\x10\\x02\\x21\\xca\\x45\\xe0\\x84\\xec\\x1f\\x46\\xb7\\xa6\\xa5\\x38\\xec\\xf1\\x68\\x1c\\xab\\xef\\xc4\\xc5\\xe6\\xd5\\x4b\\xa5\\x48\\xf8\\xcf\\xde\\x4d\\x2f\\x9b\\x17\\x80\\xf2\\x1d\\x00\\x5c\\x0f\\xa3\\xf4\\x48\\x4e\\xe4\\x26\\xf3\\xf0\\x0b\\x19\\x5f\\xe9\\xdb\\xba\\x4b\\x78\\x65\\x27\\xb6\\x32\\x48\\x21\\x10\\xb7\\xf4\\xb1\\xf8\\x44\\xce\\x8e\\xb6\\xcd\\xb0\\xf7\\x83\\x30\\xd7\\x9c\\x2f\\x2a\\x72\\x7e\\xba\\xe1\\xb9\\x24\\x0a\\xb1\\x67\\x4f\\xd4\\x26\\xe5\\x23\\x98\\xeb\\xa2\\x1c\\x78\\x50\\x26\\x12\\xe1\\x0f\\x79\\xcf\\x86\\x70\\x01\\x0d\\xd5\\x5f\\x14\\x5d\\x4e\\x69\\xaf\\xa1\\xb8\\x6d\\x2a\\x1c\\x7a\\xae\\x30\\x9d\\x85\\x98\\xa2\\x69\\xc7\\xb9\\x91\\x2d\\x6d\\xef\\xf5\\x0e\\x6d\\xee\\x29\\x70\\x3c\\x2b\\x5a\\x5d\\x0f\\xd2\\x1b\\x0e\\x2f\\xc2\\xc6\\xcb\\x48\\xba\\x69\\x1d\\x0a\\x31\\x41\\x47\\x37\\x42\\xb2\\x86\\xc9\\xfb\\xa5\\xf7\\x60\\xc1\\xc2\\xda\\x3f\\xf2\\x0d\\x12\\xdc\\xce\\x30\\xc2\\xbf\\x15\\xa9\\x96\\x46\\x5e\\x77\\x10\\xe2\\x61\\x7a\\x07\\xe2\\x97\\x56\\xa4\\x9e\\xe9\\x1a\\xa3\\x58\\x8b\\x06\\x6d\\x65\\x23\\x55\\x58\\xb9\\x4b\\xcf\\x2f\\x01\\x06\\x0c\\x3c\\x9c\\x33\\xe2\\xd7\\xca\\xd4\\xe4\\x5d\\x3c\\xb3\\xd4\\x99\\x35\\x6a\\x5e\\xc2\\xd3\\x71\\xc4\\xe1\\x29\\x35\\x71\\x1b\\x08\\x52\\x2d\\x00\\x50\\x69\\x93\\x35\\x13\\x4b\\x9f\\xc0\\x47\\x8b\\xc6\\x72\\x15\\xf0\\x98\\x25\\x54\\xb1\\x75\\x99\\x81\\x0b\\x73\\xa3\\x4b\\x74\\x06\\x60\\xed\\x60\\x4d\\x20\\xd6\\xce\\x21\\x3a\\x4b\\x39\\x5b\\xda\\xc9\\xb2\\x17\\xb4\\x54\\x26\\xce\\xf4\\xd6\\xd0\\xfc\\x03\\x07\\x57\\x20\\xb0\\x20\\xa3\\xde\\x4f\\xb5\\x59\\x42\\xe6\\x42\\x78\\xa6\\x03\\xc4\\x31\\x2c\\xca\\x88\\x07\\x2d\\x88\\x03\\x8f\\x7c\\x20\\x58\\xf8\\xa8\\x2c\\xa8\\x05\\xc8\\x5f\\x3e\\x39\\x55\\x37\\x9b\\x54\\x65\\xda\\xf1\\x1c\\xf1\\xe8\\xc3\\x5c\\x52\\x8e\\x8e\\x29\\xa1\\x2d\\xf5\\x89\\x8a\\x3e\\xf0\\x6b\\x51\\xd3\\x44\\xce\\xa5\\xfe\\x68\\xb5\\xc3\\x43\\xf5\\x53\\x56\\x94\\x8d\\x5a\\x57\\xab\\x5a\\xe7\\xc5\\xbc\\xcd\\x66\\xe5\\x16\\xa1\\x55\\x3e\\xfe\\xaf\\xff\\xf8\\x44\\x29\\x04\\x80\\x66\\x8a\\xc6\\x0a\\x68\\x17\\x17\\x3a\\x67\\xeb\\xe8\\x7f\\xaf\\x8b\\xf9\\x65\\xb9\\xb5\\x4f\\xa7\\xb6\\xde\\x92\\x6f\\xa4\\x26\\x86\\x68\\x5f\\xf9\\x30\\x24\\xb8\\x69\\x4e\\xd5\\x56\\xfc\\xf6\\xbb\\xfb\\xad\\x35\\x2b\\x84\\x4b\\xc8\\xda\\xf9\\x42\\x0d\\x74\\x77\\x8e\\xb1\\xb5\\x27\\xe1\\xd2\\x8a\\x2c\\x72\\x8f\\x73\\x25\\x23\\x19\\xdd\\xbf\\xcf\\x06\\x19\\x74\\xe8\\xa5\\xe4\\x5d\\x70\\x4c\\x12\\x8e\\xe4\\x6c\\xed\\xb1\\xe7\\x0f\\x91\\xbc\\x99\\xc7\\x4c\\x9d\\x65\\x27\\xb4\\xb9\\xcf\\x4d\\xf9\\xac\\xc0\\x90\\x5b\\xb3\\xae\\xda\\xa7\\xa6\\x5c\\x2f\\x2b\\x3a\\x85\\x70\\x56\\xd9\\xa3\\x46\\x5c\\x3a\\x6d\\x36\\x7b\\x5f\\xfc\\xa9\\x87\\x14\\xf5\\x27\\xc3\\x3f\\xdc\\x0c\\xc1\\x9b\\xde\\x8f\\x66\\xe4\\x2f\\xa0\\x23\\xfa\\x37\\xac\\xfe\\x60\\x70\\x0d\\x80\\x00\\x94\\x37\\x4b\\xdc\\x36\\x4e\\xb4\\x4f\\xde\\x45\\x90\\xbc\\x08\\x87\\x1e\\xe7\\x76\\xc3\\x5e\\x25\\x80\\x3f\\x67\\x83\\x50\\x9a\\x00\\x01\\x62\\xe0\\x5c\\x17\\xc9\\x07\\xd3\\xe1\\x1c\\x6f\\xa0\\x84\\xe3\\x04\\x14\\x91\\x2b\\x10\\x5d\\xfe\\x09\\x94\\x7f\\x0f\\xb5\\x5f\\xf9\\x97\\x5a\\x95\\xc0\\xf6\\x3f\\x33\\x29\\x32\\xa9\\x12\\x61\\xd5\\xf6\\xe0\\xba\\x86\\x42\\xf7\\xe5\\x80\\xbc\\xba\\xd9\\x27\\x20\\x45\\x43\\x5a\\x21\\xd0\\x01\\x42\\xe1\\x84\\x8e\\x76\\x00\\x84\\x72\\x02\\xc2\\x97\\xe3\\xe3\\x71\\xdf\\x45\\x6f\\xf2\\xeb\\xf7\\xcc\\xe2\\x52\\x10\\x2f\\x94\\xb9\\x74\\x61\\x36\\xb2\\x58\\xf4\\x33\\x29\\x11\\x7d\\x89\\x61\\x68\\x1a\\xec\\xfc\\x8e\\x9a\\xc7\\x62\\x99\\xd5\\xe2\\x81\\xcc\\x5f\\xd4\\x74\\x3a\\x55\\x98\\x03\\x5b\\x0d\\xfd\\x47\\xb0\\x2a\\x9c\\xee\\x25\\x2f\\x44\\x0f\\xbe\\x75\\xe3\\x93\\x3c\\xfd\\x54\\x67\\x17\\x40\\x40\\x53\\x16\\x84\\xd1\\x92\\xd2\\xa0\\xc7\\xb7\\x54\\x67\\x3c\\xa3\\x3f\\xb9\\xca\\xc0\\x25\\x62\\xd3\\x65\\xb7\\x19\\x77\\x27\\xdc\\xa9\\xa1\\x9e\\x1d\\x05\\x0f\\x71\\x5d\\x4e\\x10\\x83\\xaa\\x0f\\x2d\\xf5\\x1e\\x4f\\xff\\xfe\\x7d\\x05\\x58\\xc8\\x5c\\xcd\\x7e\\x07\\xe2\\xed\\xd1\\x08\\x23\\x26\\xe7\\x34\\xea\\x46\\x2a\\x9a\\x31\\xb4\\xe1\\xbc\\x36\\x4b\\x2b\\x99\\xdb\\xc3\\x92\\xa2\\x7a\\x80\\x56\\x84\\x92\\xad\\xe1\\x72\\x1d\\x88\\x1e\\x4b\\xf2\\x3d\\xe3\\xf0\\xa9\\x88\\xa6\\xd4\\x8e\\x5e\\xae\\xda\\xed\\xc0\\x0b\\x1c\\xbe\\xc4\\x97\\x2f\\x92\\x6f\\x59\\x9a\\x43\\xb0\\xb0\\x0f\\x0b\\x5d\\x11\\xed\\x48\\xd9\\xcd\\x3e\\xdd\\x1d\\x49\\x61\\x49\\x20\\x2c\\xec\\x66\\xa1\\xb3\\x7c\\x24\\xc9\\x20\\x80\\x77\\x77\\x9d\\xf6\\x34\\xf7\\x0b\\xc0\\x52\\xba\\xd6\\x46\\x92\\x10\\x86\\xb1\\x9d\\x2a\\x40\\x21\\x7b\\x56\\x67\\x1b\\xfb\\xac\\xa1\\xe8\\xda\\x30\\xaf\\x13\\xba\\xa4\\xf9\\x04\\x71\\x3d\\x33\\xc0\\xb1\\x9b\\x75\\xbb\\x5a\\xb7\\x71\\x18\\x49\\xc7\\x1a\\x88\\x85\\x09\\x03\\x00\\xcd\\x13\\xf8\\xbf\\x77\\xc3\\x5e\\xdb\\xf3\\x07\\xa6\\x01\\xa5\\x12\\x76\\xdb\\x97\\xe3\\x7f\\xff\\xff\\xac\\x8f\\x8e\\xb2\\xa3\\xfd\\x30\\x0b\\x33\\x56\\x46\\x4d\\x20\\xfe\\x3b\\x4c\\xad\\x0b\\x21\\x53\\xf8\\xe4\\xa5\\x5c\\xb5\\x41\\x29\\x8c\\xa0\\x5a\\x99\\x86\\xb0\\x20\\x52\\x65\\x9c\\x8e\\x50\\x5e\\x4d\\xb6\\x8a\\x07\\x1d\\xc4\\xfa\\x56\\x20\\x17\\x33\\x9f\\x8b\\x39\\x73\\xd3\\xac\\x05\\x37\\x0d\\xc6\\xca\\x09\\xff\\xa9\\xf7\\x51\\x1c\\xf7\\x48\\x59\\x3a\\xac\\xf0\\x5a\\x81\\x78\\xde\\x6f\\xff\\x58\\x2f\\x57\\xdf\\xaa\\xa2\\x52\\xb3\\x62\\xec\\xdc\\x50\\x33\\xb4\\x1a\\x3a\\xba\\x87\\x76\\x9f\\xfe\\xeb\\x6b\\xaa\\xc4\\x17\\x17\\x63\\x2e\\x97\\x5b\\xc9\\xae\\x68\\xad\\xbc\\x40\\xb8\\xbf\\xdf\\x53\\x44\\x6c\\x0c\\xfc\\x18\\x6d\\x4f\\xaa\\x8a\\xdf\\x25\\xac\\x11\\xec\\x55\\xaa\\x82\\xdb\\x32\\xbf\\xd2\\xe1\\x6e\\xb9\\x76\\xec\\x9e\\x4d\\xfe\\xfa\\x83\\x4c\\x65\\x1c\\xd8\\x7d\\x97\\x2b\\x22\\xf8\\x6c\\xa4\\x66\\xe2\\x52\\xcb\\x08\\xa3\\x68\\xc6\\x4e\\x31\\x19\\x2b\\x24\\x66\\x1c\\xb2\\xeb\\xcf\\x64\\x74\\x0c\\x55\\x66\\x8f\\xe9\\xa2\\xb8\\x58\\x94\\x76\\x98\\x3a\\xf7\\xb2\\x7e\\xcf\\x09\\xed\\x30\\x85\\xf8\\x84\\xa6\\x04\\xf1\\x51\\x1c\\xf4\\x04\\xe1\\x38\\xfe\\x4e\\xb9\\xeb\\x4d\\x44\\x52\\x97\\x9a\\x26\\xe5\\x2f\\xd4\\x23\\xbe\\x47\\x5f\\x21\\x2a\\xc0\\x6e\\x44\\x70\\x1d\\xd8\\x29\\xd2\\xcf\\xee\\x00\\x05\\x4a\\x1b\\x54\\x3a\\x75\\x13\\x64\\xc6\\xba\\x1d\\xaf\\x04\\x1c\\x7a\\x59\\x90\\x8c\\x7f\\x32\\x5a\\x37\\xcb\\xf3\\x81\\x8b\\x63\\x24\\xdd\\x26\\x47\\x32\\xca\\x1b\\x0e\\xfc\\x32\\x51\\x52\\x41\\x02\\x3b\\x22\\x3e\\x8d\\x7f\\x09\\xe1\\x93\\xd2\\xf0\\x71\\x1e\\x89\\xf0\\x47\\x6a\\x18\\x2d\\x2a\\xb4\\x76\\x7d\\xe7\\x0d\\xd9\\xe3\\x7e\\x70\\xb2\\xec\\x16\\xeb\\x7c\\x7f\\xa4\\x06\\x22\\x81\\x73\\x36\\x6b\\x4c\\xb9\\x6e\\xf5\\xa9\\xc2\\x20\\xcd\\x7d\\x75\\xa0\\xfc\\x39\\x39\\xfd\\x3f\\xd5\\x0e\\x2f\\x0a\\xc2\\x25\\xb4\\x55\\xdc\\x41\\x39\\x55\\x22\\xcd\\x32\\x29\\xbf\\x19\\xe0\\xf1\\xb1\\xd8\\xa3\\xb1\\x22\\x07\\xc6\\x0d\\xa6\\x8d\\xbc\\x53\\x77\\x78\\xda\\xa8\\x6d\\x77\\xcc\\xe0\\x70\\xe1\\xb1\\x1a\\x92\\xec\\x2d\\x77\\xc9\\xd2\\x37\\xc7\\x14\\xa0\\xe4\\x6f\\x05\\x82\\x27\\xf5\\x85\\xdd\\xb6\\x27\\xf5\\x45\\xe0\\xad\\xd2\\x1f\\x76\\x36\\x0c\\x0a\\xbd\\xd2\\xd5\\x8e\\x98\\x73\\xe7\\xda\\x02\\xae\\xb2\\xb8\\x61\\xa1\\x83\\xc7\\x20\\x44\\x4e\\x57\\xde\\xb7\\x29\\x02\\x26\\x91\\x21\\x95\\x43\\x77\\x07\\x86\\x00\\x25\\x64\\xdb\\xf2\\x8c\\xb9\\x37\\xb2\\xa0\\x13\\x56\\xa0\\x54\\xd1\\xea\\x3a\\x6b\\xf5\\x8f\\x45\\x5e\\xbc\\x27\\x35\\x00\\x07\\x76\\xd3\\x3a\\x59\\xa6\\x73\\x44\\x8b\\x25\\xf6\\x92\\x97\\xe1\\x04\\x7f\\x19\\x09\\xfd\\x1b\\xdb\\x55\\xed\\x59\\xab\\x47\\x4a\\x18\\xf9\\x90\\x33\\x98\\x25\\xc6\\xcf\\xd1\\x5a\\x60\\xf1\\xbc\\xa8\\x11\\xb7\\xa6\\xad\\xf7\\x53\\x39\\x21\\x44\\x0b\\xad\\x09\\xea\\xa3\\x73\\x7b\\xb7\\x85\\x08\\x25\\x61\\x28\\x74\\x6f\\xb2\\x68\\x9c\\xd8\\xd3\\x0e\\x87\\x0c\\x12\\xbc\\x02\\x3c\\xeb\\xfb\\xf7\\x11\\xdd\\x88\\x9c\\x48\\x1d\\x43\\x3a\\xe1\\x49\\x79\\xbf\\x46\\x3f\\xd6\\x5f\\xe8\\x8a\\x08\\x17\\xf0\\xfe\\x7d\\xfb\\xce\\x23\\xcf\\x53\\xbb\\x8e\\xf2\\x74\\x9c\\xe0\\x14\\x85\\xc3\\x81\\xe7\\x25\\xef\\x48\\x86\\x18\\xbb\\x3e\\xc9\\xef\\x9b\\x71\\xec\\xdf\\x83\\x20\\xc4\\x8f\\x77\\xfe\\xcf\\x32\\x2b\\x9e\\xd9\\x48\\xb9\\x66\\x46\\x6e\\x80\\x63\\x15\\xff\\x2c\\x19\\x8e\\x52\\x21\\x64\\xf7\\xeb\\x20\\x27\\x67\\x6f\\x3f\\x62\\x88\\xcc\\x94\\xf8\\x53\\xdc\\x3a\\xe9\\x19\\x82\\x5f\\xd5\\x43\\x3f\\x52\\x3b\\x3b\\xe6\\xb8\\xef\\xc1\\x4b\\x33\\x2c\\xeb\\x62\\x4c\\x7d\\x85\\x9b\\x68\\x5c\\xbe\\x6a\\x30\\x7f\\xb7\\xd2\\xbd\\x13\\xdf\\x0b\\x16\\x80\\xc7\\x09\\xa3\\x63\\x48\\xff\\xb3\\x57\\x1d\\x22\\xe2\\x8d\\xbf\\x85\\x8a\\xe4\\xb6\\xf3\\x94\\xc2\\x8d\\x47\\x3a\\x22\\x9a\\xbc\\x95\\x8c\\x04\\x55\\xe2\\x74\\x02\\x9a\\xfc\\x97\\x89\\x08\\x07\\x12\\x2c\\xa1\\x9f\\xec\\x58\\x85\\x3f\\xff\\x53\\x24\\x44\\x88\\x03\\x34\\x5f\\x9e\\x4e\\x44\\x28\\x45\\x98\\xb9\\xc4\\xd5\\xc2\\x14\\x40\\x77\\x08\\x93\\xf4\\xd4\\x38\\x9c\\x30\\x97\\xe6\\xff\\x28\\x6c\\x48\\xaa\\x35\\x1d\\xe4\\x00\\xa0\\x41\\x54\\x76\\xc3\\x9d\\x27\\x0b\\xea\\x08\\x5b\\x0d\\x2e\\x71\\x71\\x43\\x33\\x0d\\x36\\xa9\\x52\\xb7\\x5a\\x01\\x80\\x34\\xda\\x5f\\xeb\\x2d\\x60\\xe4\\x5c\\x82\\x83\\x4c\\xd6\\xaa\\x85\\xae\\xf5\\x24\\xa8\\xeb\\x97\\xc0\\xf1\\xb9\\x15\\x26\\x32\\x18\\x1c\\xfe\\x9f\\xe6\\x70\\xd2\\xb2\\x66\\xdb\\x5d\\x41\\x94\\x53\\xc1\\x95\\x3b\\x1e\\x0e\\xd5\\x63\\xf5\\x00\\x22\\x0f\\x46\\xcc\\x05\\x43\\x72\\x50\\x9d\\x43\\x42\\xdd\\x46\\x67\\x37\\xdc\\xe2\\xa8\\xc4\\xff\\xc7\\x47\\x19\\x43\\x73\\x5a\\x36\\x9d\\x3b\\x60\\x61\\x41\\x1c\\x91\\x5f\\x9a\\x02\\xcf\\xae\\x2f\\x5f\\xc8\\x6d\\xb3\\x4b\\x38\\x33\\xe3\\xa2\\x3a\\xee\\x4c\\x3a\\xad\\x19\\xa2\\x53\\x5d\\xd0\\x9a\\x18\\x18\\x6d\\x1b\\xb7\\x3d\\x72\\x57\\x99\\x73\\x19\\xc0\\xc3\\xb2\\x73\\x33\\x3a\\x87\\x8d\\x3b\\xb8\\x95\\x59\\xed\\x89\\xfb\\x8e\\xf0\\xff\\x41\\xfd\\xc0\\x0f\\x0d\\x5a\\x73\\x4a\\x4a\\x31\\x64\\x11\\x95\\x7d\\x72\\xf9\\x9a\\x96\\xe9\\x28\\x7c\\x65\\xe8\\xbb\\xaf\\x2a\\xde\\xcf\\xb2\\xe2\\x3d\\x8e\\x21\\xe9\\xf6\\x0e\\xee\\x59\\xd4\\x00\\xc5\\x5d\\xdf\\xa5\\xe7\\x6e\\x35\\xd9\\xeb\\xcd\\x50\\xfa\\x8b\\x7f\\x4e\\x67\\x1a\\x0a\\x32\\x01\\x80\\x35\\xc2\\x69\\x70\\x50\\x67\\x34\\x52\\xcd\\x99\\x71\\xdf\\x5a\\x33\\x60\\x0c\\x16\\x28\\xec\\x72\\x44\\x37\\x67\\x1c\\x58\\x8f\\x84\\x25\\x25\\x4e\\x5f\\x72\\x84\\x5d\\x20\\xd8\\xd1\\x99\\x99\\x60\\xb4\\x58\\x10\\xad\\xe3\\xa4\\x8f\\x50\\x99\\x0e\\x32\\xa8\\x6f\\x08\\x92\\x21\\x24\\x8b\\xf0\\x38\\xbc\\x10\\x0a\\x5c\\xfc\\xd7\\x57\\x9d\\xf4\\xc1\\xdc\\x0b\\xd8\\x41\\xc4\\x77\\x6c\\x58\\xc8\\xba\\xfa\\xbc\\x45\\x8e\\x7a\\x87\\x49\\x89\\xce\\x1e\\xbb\\x79\\x04\\x86\\xc5\\x03\\xf0\\xaf\\x04\\x5f\\x20\\xc7\\x73\\xfd\\xdb\\x8d\\xa8\\x27\\xe8\\x89\\xa6\\x14\\xb7\\x7e\\x44\\xcd\\xb8\\xa5\\x9c\\xf8\\x64\\x27\\xb0\\x41\\xbe\\x74\\x64\\x74\\xc5\\x09\\xe1\\x75\\x27\\xfa\\xa5\\xdb\\xf0\\x81\\x64\\x0e\\xcc\\xa2\\x9e\\xbb\\xe4\\x80\\x4a\\x54\\x67\\x36\\xc0\\x9f\\xe2\\x73\\x18\\x32\\xb8\\xb0\\xa7\\xe0\\x6f\\x81\\x8b\\x83\\x1f\\xc2\\x96\\x02\\x0a\\xb9\\xcb\\xb0\\xa2\\xa6\\xe9\\xa9\\x95\\x28\\x1d\\xf5\\x23\\x5c\\xe4\\xe4\\x4a\\x39\\xf6\\x1d\\x4e\\xc1\\x6b\\x15\\xc3\\x89\\x86\\xd5\\x78\\x91\\xa2\\xba\\x3e\\x09\\x47\\x42\\x6d\\xc4\\x6f\\x5b\\xb6\\xb1\\xa2\\xc2\\x65\\x3c\\x2b\\x8b\\xea\\xb2\\xa8\\x2e\\xbc\\xe6\\xa2\\xd6\\xb0\\xe9\\x3f\\xda\\x1f\\x9c\\x62\\x9f\\x21\\x92\\x9a\\x36\\x6b\\xf5\\xe4\\xdc\\xcc\\xd7\\x8d\\x96\\xc8\\xd0\\x37\\xbb\\x2d\\x8a\\x80\\x91\\xfe\\xb2\\x6a\\x75\\x7d\\x95\\x39\\xbf\\x91\\x09\\xf4\\xad\\x6b\\x87\\x6f\\x55\\xf9\\x8c\\x96\\xce\\xa5\\x0b\\x46\\xf9\\xac\\xb8\\x22\\xcd\\x10\\x18\\x64\\x8a\\xb2\\x68\\x9d\\x8e\\x2a\\x4a\\x33\\x83\\x15\\x60\\xf0\\xbf\\x64\\xad\\x86\\xc0\\x89\\x3d\\x5c\\xd1\\xa8\\x5b\\x35\\x55\\x90\\x44\\x8b\\x06\\xe5\\xdf\\x59\\x29\\x87\\xba\\x5d\\xc3\\x18\\xc0\\xc0\\xef\\x99\\xca\\x8a\\x05\\xfb\\xf0\\x32\\xc2\\xd4\\xe7\\xfb\\xa7\\xea\\x86\\xdd\\x80\\xfa\\x87\\x28\\x10\\x77\\x6f\\x99\\xcb\\xc3\\xee\\x5c\\x76\\xaf\\x0f\\x0d\\x23\\x76\\x19\\xa8\\x10\\x10\\x60\\xbe\\x6e\\x6e\\xdf\\xdf\\x8e\\xc9\\x06\\x7e\\x1b\\x0c\\x4f\\x95\\xa9\\x7c\\x13\\x61\\x07\\xb9\\x2e\\xb3\\xed\\x8f\\xe5\\xba\\x7e\\x7e\\x85\\x6e\\xf5\\xce\\x38\\x84\\xcd\\xc3\\xef\\x45\\x75\\xe1\\x8a\\xf8\\x7d\\x6f\\x74\\x7b\\x56\\x2c\\xb5\\x59\\xb7\\xd1\\x86\\xd0\\xd2\\xf4\\x34\\xe0\\x80\\xe6\\x76\\x75\\xc1\\xa1\\xb3\\x4a\\x99\\xca\\x7e\\x27\\xc7\\x87\\x1b\\x75\\x33\\x52\\xc7\\x47\\x47\\xa1\\xe5\\xc9\\xcf\\x6e\\xa4\\xb4\\x80\\xb8\\xdd\\x35\\x84\\x3b\\x74\\x8f\\xc7\\x33\\xda\\xe7\\x5a\\x67\\xf9\\xdb\\xaa\\x44\\x9c\\xb6\\xca\\xb0\\x92\\x36\\x3c\\x5d\\x7d\\x3b\\x04\\x13\\x6a\\x8a\\x8b\\x2a\\x2b\\x61\\xb0\\xfb\\xf0\\xd3\\xfe\\x48\\xe1\\xc8\\xc3\\x65\\xa1\\x6a\\x32\\x73\\x6c\\x96\\xe7\\x4f\\xcb\\xac\\x69\\xa4\\x71\\x8e\\xfc\\xd3\\x42\\x55\\x17\\xd5\\xf5\\x2e\\xcd\\x10\\xd9\\x66\\xc5\\x65\\xb5\\xaa\\xc1\\x47\\xa3\\xc1\\xb0\\x2a\\x78\\x85\\x9d\\x17\\x10\\xbb\\x02\\xda\\xef\\x8c\\x31\\x0d\\xb9\\xe6\\x52\\x57\\x6b\\x40\\xb6\\x2c\\x8d\\x1d\\x8d\\xbd\\x57\\xe6\\x5a\\x20\\x84\\xd5\\xba\\xd1\\xad\\xda\\x98\\x75\\x99\\xab\\x4b\\x40\\x05\\xf0\\x51\\xa8\\xa8\\x71\\x1b\\x67\\x65\\x09\\x91\\xb1\\xb8\\x5b\\x8b\\x6c\\x7e\\x29\\x02\\x6d\\x39\\xbd\\x34\\xd8\\xd5\\x85\\x17\\x94\\x2e\\x7f\\x32\\x35\\xa1\\x22\\xbf\\xb6\\x63\\xb8\\xc7\\xea\\x55\\xfb\\x9b\\x88\\xe7\\x8e\\x89\\x1e\\x06\\x34\\x90\\xaa\\x8e\\x8d\\x9e\\x5d\\x16\\xb0\\xe9\\xbd\\x24\\xdb\\x4d\\xd6\\x2e\\x1b\\x03\\x99\\x19\\x60\\x6b\\x1e\\x1c\\x0d\\xd5\\x0d\\x04\\x15\\x35\\xcd\\x5a\\xab\\xff\\x71\\xfc\\x1f\\xdf\\x1d\\x89\\x5b\\x23\\x51\\x7f\\xae\\x8b\\x2b\\x9d\\x23\\x81\\x7a\\xb3\\x78\\xc8\\xb6\\x25\\xd2\\xbf\\xa3\\xf7\\xaf\\xa0\\x65\\x47\\x7a\\x71\\xe9\\x1d\\xa4\\x37\\x2b\\xd7\\xf5\\xad\\x94\\xe7\\x8f\\x61\\xbd\\xfc\\x7a\\xca\\xbb\\xe9\\xdc\\x26\\xa2\\xb6\\xb8\\x50\\x76\\x32\\x92\\xdb\\x38\\x5d\\xb3\\x28\\xce\\xc5\\x91\\x05\\x06\\xf1\\xc3\\x91\\x87\\xb9\\xc9\\x72\\x91\\x63\\xde\\x65\\x9f\\x22\\x8f\\x9c\\x5a\\x57\\x08\\xd6\\x4a\\xfe\\xfd\\x59\\x95\\x93\\xbd\\xdc\\xfe\\x5c\\xa0\\x73\\x50\\x6b\\x6c\\x09\\xae\\xd9\\x1a\\xb5\\xcc\\xda\\xb9\\xf4\\x07\\xc7\\x1a\\xe4\\xd1\\xf5\\xb2\\xfa\\x95\\x12\\x58\\x84\\xbe\\x5d\\xe9\\xcb\\x96\\x1c\\xb8\\xaf\\x7e\\x64\\x6d\\x77\\x04\\xbe\\x4f\\x9a\\xf8\\x33\\xc0\\xfe\\x49\\x5a\\x98\\xfb\\x92\\xa8\\x48\\x87\\x92\\x75\\x2d\\x5a\\x26\\x47\\x82\\x91\\x77\\xc8\\x1f\\xa0\\x1d\\x5e\\x58\\x6b\\xd7\\xf5\\x04\\xef\\xa3\\x84\\xc1\\xb7\\x27\\xc9\\xda\\x5f\\x43\\x15\\x27\\x26\\xd0\\xb2\\x0d\\x41\\xda\\x34\\x37\\x0d\\x75\\x10\\x7f\\x14\\xf0\\x0f\\xca\\x8f\\xc9\\xd6\\x1f\\x8b\\xa5\\xa1\\xdf\\x83\\xb5\\x9a\\x19\\x0a\\xcf\\x09\\xe5\\x43\\x8f\\x5b\\xe1\\x7a\\xda\\x85\\xe7\\x1d\\x74\\x7a\\xed\\x6d\\x57\\x33\\x87\\xe0\\xad\\x84\\xa9\\x3b\\x27\\xcf\\x9c\\x75\\x3d\\x11\\x7e\\x73\\x6a\\xec\\x53\\x08\\x04\\x01\\x0c\\x0f\\xd1\\xeb\\xdd\\xf5\\x90\\x8a\\x7e\\xf1\\xcb\\x0a\\x8d\\x3f\\x52\\x93\\xa3\\xa3\\x1f\\x20\\x43\\x86\\xfd\\xf3\\xa1\\x1a\\xdb\\xbf\\xfd\\xea\\x76\\xfc\\xf3\\x78\\x2c\\xbc\\xa3\\xc3\\xa0\\xe0\\x07\\x99\\x9b\\x82\\x8b\\x4a\\xee\\x68\\xbf\\x75\\x72\\x10\\xfd\\x81\\x14\\xf6\\x87\\x7a\\xa8\\xf8\\x77\\x47\\x5d\\x7f\\xf8\\xf4\\x43\\xca\\xf9\\x0b\\x76\\xba\\xb1\\x55\\x3e\\xfe\\x81\\xb9\\x2f\\xdc\\x1a\\xde\\xc8\\x63\\x09\\x9e\\xfa\\x04\\x60\\x22\\xbd\\x80\\xe1\\x51\\xe9\\xd0\\x89\\x18\\x39\\x21\\xc7\\x34\\x5f\\xe4\\xc5\\x2f\\x7c\\x83\\xe2\\x73\\xf8\\x21\\x4e\\xc6\\x11\\xe6\\x74\\xfa\\xa7\\x3c\\x57\\x0f\\x0e\\x0a\\x96\\xe6\\x7a\\x1c\\x51\\xbb\\x1e\\xaa\\x71\\xba\\xc0\\x20\\xd4\\xe5\\x46\\xdd\\x24\\x42\\x4f\\x80\\x0b\\xb9\\x88\\x48\\xe7\\xce\\x0c\\x21\\xf0\\x38\\x63\\x4e\\x8e\\xa3\\x06\\x14\\xa6\\xd2\\x30\\x94\\x26\\x78\\x5b\\xae\\x6b\\x48\\xa6\\x43\\x28\\xac\\x6c\\xe3\\x1a\\x4e\\x7c\\xbd\\x65\\xe6\\x50\\xce\\xc1\\x66\\x67\\xab\\xe3\\x14\\x90\\xfb\\xa1\\xc0\\xa9\\x06\\x8d\\xd6\\xca\\xac\\x5c\\x56\\x96\\x77\\xa6\\x19\\x32\\x4c\\x7a\\x11\\x00\\xbb\\xd2\\x20\\x2d\\x3d\\x36\\x03\\x69\\x0e\\x1d\\xb9\\x4e\\x85\\x3b\\x35\\x98\\xfb\\xdc\\x60\\xee\\xdf\\x77\\xff\\x86\\xd7\\xe7\\x3d\\x67\\x5a\\x91\\xf6\\x7f\\x59\\x64\\xa8\\x4e\\xfa\\xbc\\xed\\x91\\x47\\x0a\\x83\\xe2\\x79\\x69\\x4c\\x3d\\xe0\\xfc\\x36\\x0e\\xa0\\xd5\\xf9\\xab\\xed\\x39\\x4e\\x85\\xec\\x24\\x39\\x2c\\xfa\\xd5\\x8f\\x2c\\xfe\\x85\\x01\\x5b\\xa3\\x5b\\x91\\x1c\\x12\\x89\\xb9\\xed\\x79\\xcd\\x46\\x12\\xa6\\xd2\\xce\\x0c\\xdc\\xde\\x53\\x3f\\xfa\\x47\\xea\\xe1\\xa1\\x7a\\x8e\\xfb\\x03\\x99\\x42\\x29\\x90\\xef\\x33\\x5b\\xc7\\x6e\\x30\\x92\\xcf\\xff\\x7d\\xa3\\xcc\\xec\\x0f\\xc8\\xb2\\x92\\x71\\x36\\xfb\\x73\\x53\\xcf\\x81\\xc6\\x4c\\xc3\\xf4\\x06\\x90\\x66\\xec\\x90\\x87\\xc4\\x55\\x9c\\x5b\\xe2\\x81\\x8d\\x1d\\x72\\x80\\x62\\x72\\x79\\x90\\x5c\\x02\\xc7\\x63\\x7c\\xb1\\xd4\\xc1\\x92\\x52\\x39\\x84\\x71\\x24\\x7f\\x62\\xf8\\x02\\xca\\xa5\\xb8\\x14\\xa1\\x34\\x7a\\x6f\\x65\\xdf\\xe4\\x43\\x54\\x57\\x3b\\x66\\x48\\x2b\\xea\\x4b\\xd0\\xf7\\x9e\\xa5\\x0c\\x50\\xd9\\x02\\xcd\\x91\\x6f\\x61\\x38\\xbc\\x65\\x37\\x87\\xf2\\xd2\\xb1\\xe3\\x13\\x71\\xb4\\x38\\x27\\x34\\x33\\x96\\x59\\x83\\x1d\\x0c\\x87\\xea\\xd1\\x14\\x0d\\x25\\xe1\\xb0\\xbf\\x7e\\x80\\x67\\x66\\x28\\xad\\xf5\\xfd\\xc3\\xa3\\x25\\xe0\\x5a\\x82\\x03\\x8b\\x20\\x1c\\x20\\x1f\\x1f\\x02\\xea\\x0e\\x5d\\x6b\\x50\\x1f\\xad\\x0e\\xd4\\xf1\\xd0\\xf3\\xec\\x71\\x56\\x16\\x17\\xc8\\x75\\x55\\xb5\\x5e\\xce\\x00\\xca\\xbf\\xca\\xd9\\x41\\x7b\\x99\\xd5\\x97\\x0d\\xc2\\x6d\\x70\\x00\\x0a\\x7b\\x47\\x2f\\x4c\\x5d\\xfc\\x69\\xb9\\x4e\\x49\\xbc\\xa9\\xa8\\x2e\\x04\\x0f\\x81\\x76\\x5f\\xb8\\x32\\xe5\\xf6\\x56\\xd1\\x69\\xc4\\x9e\\x95\\x91\\x5b\\x25\\x48\\x8c\\xfc\\x0d\\x9a\\xa5\\xb4\\x41\\x98\\xf8\\x35\\x0e\\xc5\\xf1\\x01\\x54\\x98\\x25\\xc4\\xbf\\xf3\\x20\\x40\\xe9\\x67\\x28\\x36\\x4c\\xe8\\x4e\\xec\\x14\\x41\\xbf\\xbd\\x2b\\xd4\\x66\\x7c\\x4b\\x60\\x10\\x3f\\x67\\x7c\\xc6\\x2f\\x19\\x11\\xf6\\x41\\xcc\\x2e\\x15\\x3a\\xe4\\x13\\xb3\\x2c\\x85\\x8b\\xce\\x1d\\xfd\\x4a\\x71\\xa1\\xd8\\xa7\\xd4\\xc9\\x7a\\x5e\\x02\\x4c\\xaf\\x44\\xa0\\x48\\xe4\\xda\\x38\\x38\\x29\\x12\\x84\\xbf\\x84\\xce\\x48\\x02\\x64\\x3f\\xd5\\xcc\\x8f\\xd9\\xfc\\xf2\\x02\\xf1\\xae\\x7a\\x1b\\xf4\\x65\\x7a\\x9b\\xf6\\x02\\x1b\\xd2\\xac\\xf7\\x9f\\x85\\xbf\\xb3\\x59\\xe9\\xd9\\x0b\\x7c\\xe9\\x93\\x7e\\xe0\\xc7\\x94\\xe8\\xf3\\x19\\x7f\\xfa\\xf8\\xc7\\xa7\\xd4\\x20\\x44\\x62\\xf9\\x1d\\xcb\\x19\\x29\\x88\\x78\\x97\\x83\\xf6\\x06\\xb4\\xbf\\x44\\x14\\xec\\xe7\\xe1\\xe4\\x07\\xc6\\x70\\xa7\\x8b\\xdb\\xe1\\x3f\\x88\\x53\\xca\\x07\\xb4\\x68\\x54\\xd3\\xd2\\x13\\x1d\\xf5\\x91\\xf0\\xbe\\x29\\xfe\\xd4\\xce\\x83\\x91\\x25\\x08\\x76\\x58\\x82\\x5f\\x27\\x21\\x5a\\x28\\xea\\x09\\x58\\xdc\\xa2\\xf8\\x0d\\x0c\\xb6\\x4c\\x67\\x4a\\x7d\\x85\\x79\\x0a\\x67\\xba\\xf6\\x1e\\x47\\x9f\\x7b\\xb0\\xdc\\xb1\\x5c\\x93\\xc4\\x79\\xeb\\xba\\x04\\x13\\xb4\\xb3\\xaf\\x48\\xa9\\x21\\xa9\\xc5\\x51\\x2f\\xe8\\xf3\\x70\\xb4\\x2b\\xa0\\xc2\\x36\\xcb\\x0a\\xfb\\x7b\\xe1\\x9b\\x8c\\xf3\\x2d\\xca\\x2b\\xaf\\xd5\\x0c\\x17\\x20\\xc3\\x6a\\xfb\\x1c\\x93\\x3e\\x8a\\x7f\\x03\\x4c\\xf4\\xa7\\x3b\\x01\\xee\\xc8\\xff\\xe4\\x83\\xdb\\x0e\\x8a\\xb6\\x59\\x7c\\xc5\\x1d\\x1f\\xeb\\xb2\\xdd\\x17\\xc9\\xb4\\x8a\\xaa\\x42\\xbe\\x62\\x47\\x2c\\x98\\x5f\\xc8\\x57\\xbc\\x13\\x1a\\x14\\x13\\xbf\\xa9\\x31\\x35\\x81\\x46\\x1e\\xb1\\x2c\\x3f\\xcb\\x93\\xce\\x21\\xae\\xe4\\x97\\x18\\x2d\\x1f\\x00\\x8f\\xb0\\x81\\xd0\\x5d\\x39\\xd8\\xee\\x28\\xd5\\x68\\x38\\x00\\x1a\\x9d\\x3d\\x07\\xc7\\xa9\\xe6\\xb9\\xe5\\xfe\\x5e\\x1d\\x5c\\x7f\\xaa\\x3a\\x27\\xd3\\xec\\xaf\\xfe\\x58\\x49\\xf2\\x38\\x51\\xe3\\xee\\x30\\x92\\xab\\x91\\x1c\\xa7\\x70\\xad\\xc4\\xe3\\x84\\x55\\x21\\xbc\\x86\\x74\\x9e\\x1d\\x10\\x42\\x11\\xef\\x07\\xea\\x19\\xe4\\x03\\xef\\x9f\\xfe\\xf2\\xf6\\xd5\\xab\\x97\\x6f\\x7e\\x56\\x67\\x2f\\x5e\\xbe\\xf9\\xf9\\xbd\\x7a\\xf9\\xe6\\xec\\xad\\xfa\\xf5\\xe5\\xf3\\x0f\\xf0\\xf3\\xcb\\x73\\x7b\\x64\\x31\\x73\\x9f\\x6a\\x8a\\xd6\\xa5\\xfd\\xb1\\xd2\\xab\\x71\\x52\\x30\\xe9\\x45\\x30\\xfb\\x18\\x26\\xa7\\x28\\xec\\x85\\x0c\\x8c\\x02\\x2f\\xb1\\x5c\\x99\\x35\\xbc\\xd3\\x30\\x92\\x1a\\xd4\\x88\\xc8\\x7c\\x1a\\xcf\\x7d\\xc8\\xaf\\xb5\\x68\\x12\\x61\\x19\\xc0\\x19\\xf0\\xae\\xfc\\x00\\xfd\\xa0\\xb7\\x65\\x90\\x36\\x19\\x35\\x55\\xcf\\xde\\xbe\\x66\\xb5\\xf4\\x48\\xed\\x63\\xff\\x68\\x0b\\x79\\x59\\xb5\\xe6\\xd7\\x42\\x6f\\xf6\\x87\\xb1\\xfe\\xab\\x5f\\x62\\x40\\x9d\\xc0\\x9d\\x82\\x58\\x2d\\xe3\\xc0\\x11\\x86\\xd9\\x5b\\x7d\\x82\\x38\\x07\\x71\\x49\\x06\\x58\\x51\\xde\\x81\\xf7\\x3b\\x01\\x31\\xc8\\x22\\x27\\xe0\\x8b\\x07\\x94\\x36\\x13\\x88\\xff\\x85\\x43\\x25\\xe8\\xcb\\x9a\\x19\\x8a\\x79\\x51\\xaf\\x9e\\x4d\\x82\\x26\\x81\\x7f\\xb8\\xe7\\xbd\\x64\\xee\\xad\\x16\\x59\\x25\\x1c\\x33\\xc1\\x3c\\x0a\\xa5\\xec\\xfb\\x94\\x31\\x04\\x9c\\xb7\\xf2\\x83\\xa3\\xa3\\x99\\xf3\\xa3\\x4c\\x3a\\x4c\\xee\\xf0\\x55\\x74\\x6e\\x91\\x03\\x91\\x58\\x3e\\x91\\x97\\x70\\xdc\\x93\\x3a\\xe3\\x0e\\xee\\x90\\x81\\x2b\\x64\\x98\\x99\\x5e\\x6c\\x13\\x4e\\xf0\\xe7\\x6c\\x05\\xb7\\x8e\\x17\\xec\\x67\\x3e\\x59\\xd2\\xad\\x3d\\x79\\xbf\\xd0\\x81\\x40\\x38\\x48\\x38\\x7b\\x3a\\x6e\\xf6\\x60\\xa4\\x7a\\x80\\x11\\xb8\\x1e\\xb3\\xe5\\x64\\x16\\x38\\x79\\x73\\xf8\\x1d\\x22\\xe8\\x4c\\xf7\\x37\\x09\\x8e\\x7c\\x14\\xdc\\x9e\\xef\\x68\\x58\\xc0\\x41\\x44\\x0d\\xb3\\x38\\x41\\x64\\xc3\\xfa\\x06\\x17\\xeb\\x08\\x8f\\x44\\x90\\xb9\\x07\\xc5\\x92\\xb2\\xbd\\x94\\xdb\\xe1\\x48\\x5d\\xe9\\xba\\x38\\xdf\\x62\\xc6\\xb4\\x0c\\x04\\x8a\\xa2\\xf5\\x50\\xbe\\x33\\x3d\\xa7\\xb4\\x62\\x14\\x98\\x8d\\x38\\xd3\\x4e\\x9b\\x9a\\xd5\\xda\\xc1\\x38\\x22\\x97\\xa1\\xdb\\x33\\x1f\\x75\\x32\\xb0\\x35\\x66\\xa9\\x11\\x21\\x68\\x99\\x6d\\xd5\\xb7\\x79\\x5d\\x9c\\xb7\\xdf\\xaa\\x7c\\x0d\\xc6\\x8b\\xbc\\xce\\x36\\xf6\\x5a\\x10\\x7c\\x06\\x27\\xf8\\xce\\x34\\x6e\\x85\\x5c\\x36\\x2d\\x00\\xbb\\xc1\\x54\\xb6\\x9e\\xe7\\xe0\\xdf\\x02\\x2c\\x46\\xf1\\x17\\x72\\x57\\x66\\x7c\\x8c\\x5b\\xd2\\xd0\\xd8\\xb3\\x06\\x61\\x1c\\x53\\x02\\xde\\x61\\x73\\xc8\\x7b\\xdd\\xc2\\x0f\\xa8\\x67\\x71\\xe0\\x61\\x51\\xae\\xba\\x26\\xc0\\x88\\x95\\x51\\xa7\\x88\\xd2\\xd8\\xb0\\x87\\x15\\x72\\x75\\x9f\\x2c\\x4a\\xa6\\x0e\\xa2\\x94\\x28\\x85\\x6b\\x8c\\x12\\xdf\\x80\\x97\\x28\\x78\\xe4\\x6f\\x0a\\x48\\xba\\x26\\x7e\\x0c\\x1b\\xb5\\xad\\xbd\\x33\\xcd\\xe0\\xef\\x80\\xdb\\xe7\\x61\\xe5\\x82\\x19\\xd8\\xed\\x5b\\x57\\x73\\xcc\\x52\\x0d\\xf5\\x31\\x7e\\x85\\x7a\\x7b\\x0c\\x2d\\x70\\x2a\\x9d\\x51\\xcf\\x58\\xd5\\x63\\x31\\x3a\\x75\\xe2\\xf2\\x61\\xb9\\x1c\\x75\\xf0\\x09\\x5a\\x47\\x37\\x97\\xde\\x66\\xba\\xbd\\xcd\\xc1\\xe3\\x42\\x66\\xdd\\xe3\\xc6\\x6e\\xe4\\x63\\xa9\\x2c\\x96\\x45\\x8b\\x42\\x3f\\xfe\\xf3\\xa1\\xfa\\x81\\xfe\\x19\\xa9\\xd2\\x5d\\x42\\x6e\\x6f\\x1a\\xd9\\x0d\\x1a\\x4a\\x79\\x8b\\x1c\\x4e\\xd7\\x53\\x2e\\xc9\\x0e\\x41\\x30\\x27\\x98\\x94\\x03\\x0e\\x57\\x27\\xdd\\x76\\x34\\xbf\\x88\\x08\\xa1\\x85\\x52\\x0a\\x39\\xdd\\x43\\x90\\x9f\\xd3\\xf5\\x83\\x4c\\x67\\x14\\x7b\\xd5\\x75\\xeb\\x81\\xdf\\x84\\xaf\\x06\\xaa\\xb6\\x31\\x1d\\x80\\xb0\\x3a\\xa5\\x2f\\x72\\xbc\\xee\\xee\\x1d\\x73\\x86\\xa3\\xb8\\x2a\\x3b\\x4a\\xf8\\xca\\x1c\\x41\\x70\\x40\\x23\\xb8\\x89\\x2e\\x2c\\x72\\x7e\\xa6\\x64\\xe0\\x24\\x4c\\x60\\xb6\\x28\\x92\\x24\\x7c\\x85\\x36\\xab\\x29\\x31\\x43\\xf0\\xde\\x3e\\xb3\\x13\\x86\\x1f\\xd9\\xc5\\x30\\xf1\\x1a\\x27\\x61\\x84\\x9b\\xf7\\x55\\x05\\xa0\\x4f\\xa0\\x6d\\x7f\\xcf\\x05\\x60\\x24\\x89\\x8a\\x52\\xf3\\x0e\\xeb\\x90\\xcd\\x38\\xc7\\x95\\x68\\x7d\\xec\\x86\\x3d\\x54\\x8f\\xd4\\x31\\x62\\x0d\\x77\\x52\\xc1\\x4b\\x5f\\x95\\xb8\\x2b\\x98\\x54\\x67\\x90\\x8d\\x6e\\xdf\\xbb\\x9f\\x93\\x43\\x84\\x98\\x8f\\x5b\\xc7\\xf8\\x0a\\xbd\\x6a\\xdc\\xf2\\xdd\\x75\\x94\\xf7\\xe8\\x77\\x5b\\x74\\x56\\xeb\\xec\\xb2\\x1b\\x65\\xe7\\x52\\xea\\x46\\x37\\x91\\x95\\x16\\xcc\\x79\\x37\\xe1\\x75\\xf7\\x4e\\xea\\x5c\\x01\\x01\\xff\\xaf\\x83\\xa8\\xfa\\xaf\\x20\\xa7\\xdb\\x29\\xe1\\xce\\x34\\xe0\\xc4\\xb4\\x5b\\x76\\xed\\xae\\xfb\\xe5\\x8d\\x09\\x3c\\x05\\x95\\xa9\\x4a\\x6f\\x62\\x43\\x80\\x80\\x44\\xa2\\x5f\\x82\\xac\\x1e\\x84\\x8a\\x50\\x6a\\xbf\\xb2\\xfe\\xe9\\x9f\\x55\\xa4\\x4c\\x46\\x3b\\x8c\\x9f\\x7f\\x56\\xe5\\xfe\\x75\\x00\\x13\\x10\\x76\\x02\\xcc\\x58\\x81\\xa9\\x03\\xf0\\xb2\\xc8\\xf5\\x79\\x51\\xd1\\xf5\\x2e\\xb3\\x70\\x1d\\x0a\\x1d\\xa1\\x1b\\x6f\\x6e\\x74\\xa3\\x2a\\xd3\\xc2\\xc0\\xed\\xb0\\x67\\x9a\\x72\\x59\\x04\\xba\\x86\\x5d\\x3b\\x77\\x8b\\x1a\\xb1\\xa9\\xb2\\xd5\\x6b\\xbe\\xe6\\xd3\\x40\\x2f\\xb1\\xec\\xef\\x42\\xae\\xe9\\x6f\\x29\\x1e\\x34\\xf3\\x5a\\xeb\\xaa\\x65\\x76\\x23\\x3d\\x1b\\xe0\\xdf\\x5d\\xba\\xb1\\x4c\\xbf\\xfb\\xe3\\x2d\\x56\\x0e\\xdf\\x95\\x7f\\xd1\\x78\\x84\\x90\\x38\\x54\\x3a\\x7e\\x82\\x08\\x01\\xf9\\x11\\x35\\xe3\\x26\\xe4\\xac\\x21\\xa1\\x0c\\x6d\\x7b\\x12\\x2a\\x18\\x67\\x82\\x25\\xae\\xc0\\xa9\\xf0\\x59\\x9a\\xff\\x55\\xd7\\xde\\xc0\\xc9\\x80\\x66\\xc4\\x85\\xc5\\x3a\\xfa\\xc5\\x1f\\xa9\\xac\\xfd\\x31\\xe8\\x9a\\x06\\xf2\\x48\\x74\\x37\\x16\\x15\\xba\\x9b\\xe2\\x96\\x9e\\xd9\\x1d\\x07\\x72\\xbb\\x45\\x9d\\xd2\\x18\\xd0\\x79\\x92\\xab\\x86\\xd9\\x30\\xc3\\xbe\\xfd\\x76\\x1e\\xf8\\x85\\x72\\x57\\x4b\\xa5\\x37\\x67\\xde\\xdc\\x64\\x2f\\x53\\x6e\\x73\\xa4\\x06\\x6e\\x3e\\x8f\\xc5\\x0c\\x4e\\xe4\\xdc\\xec\\x05\\x4b\\x8d\\x3a\\x06\\x49\\x4d\\xde\\x9b\\x06\\xd3\\x49\\x4d\\x85\\x4a\\x86\\x1e\\xbc\\x50\\xa7\\x74\\xf7\\x59\\x1f\\xf9\\x49\\x36\\xd3\\xa5\\xbf\\x57\\x18\\x96\\xb6\\x43\\x77\\x1d\\x74\\x27\\xb4\\xf0\\x32\\xa0\\xb0\\x47\\xe7\\x69\\x97\\xa3\\x5f\\xa9\\x0d\\x28\\xf1\\xce\\x56\\x68\\x3e\\x60\\x2c\\x63\\xfa\\x29\\xe5\\xb6\\x87\\xf5\\xfe\\x54\\xc1\\x91\\x32\\x27\\x03\\x15\\x19\\xe0\\xdd\\x90\\x83\\x63\\x41\\xb9\\x0e\\x8e\\x8f\\x7c\\xde\\x37\\xb1\\xdc\\x24\\x1e\\x1c\\x25\\x9e\\xf4\\x54\\xd1\\x2f\\xfb\\xae\\x06\\xa4\\x49\\xd3\\xd7\\x1e\\xbb\\x71\\x73\\x86\\x84\\xa3\\xe1\\x30\\xd1\\x55\\x4d\\x78\\x88\\x3c\\x81\\x03\\xb9\\xd9\\x84\\x02\\xd5\\xd7\\xb3\\xcc\\x77\\x9f\\xe8\\xce\\x91\\xe1\\xa6\\x37\\xde\\xfd\\x3d\\x98\\xe9\\x33\\x9f\\x2f\\x12\\x99\\x30\\x68\\x88\\xe9\\x15\\x13\\x5f\\x35\\x94\\xa6\\x85\\x14\\xca\\x90\\x29\\x7b\\xa5\\x6b\\x84\\xef\\x1a\\x10\\x27\\x5f\\xad\\xca\\x42\\xe7\\x1e\\xcd\\xc3\\x97\\x38\\x2f\\xaa\\xa2\\x59\\xe8\\x46\\x5e\\xe6\\x59\\x9e\\x9f\\x99\\xf0\\x72\\x75\\xa7\\x9d\\x83\\x4c\\xa7\\x1d\\x9c\\x45\\xf2\\xb7\\x32\\xe5\\x95\\xbb\\x98\\xf1\\x7e\\x18\\xa2\\x9b\\x63\\xcc\\x79\\x31\\xaf\\x4f\\xe7\\xab\\x3c\\x2c\\xa1\\xac\\x76\\x92\\x68\\x65\\x88\\x01\\xa1\\xb4\\x7a\\xaf\\xb3\\x4b\\xad\\xbc\\x76\\x9e\\x54\\x64\\x56\\xee\\x27\\x75\\x9b\\x9f\\xb7\\xd4\\xc1\\x3b\\x1d\\x1a\\x5c\\xaf\\x0b\\xb3\\xa9\\x26\\xb1\\x63\\x28\\x2a\\xc3\\x7e\\xc5\\xd7\\xb5\\xd3\\xab\\xf7\\x4e\\xd7\\x3b\\x03\\xcd\\x97\\x93\\x0b\\xdd\\x12\\x1a\\x41\\x72\\x25\\x50\\x26\\x22\\x1b\\xe1\\x7c\\x5d\\xa3\\x89\\x10\\xfe\\x81\\x32\\xf9\\x49\\xd7\\x4f\\x16\\x7b\\x7c\\x4d\\x22\\xbb\\x74\\xd1\\xe4\\x56\\xc5\\x83\\xc6\\x63\\x74\\x63\\x1a\\x44\\xe6\\x47\\x90\\xf5\\x20\\xc0\\xcb\\x4c\\xcd\\x46\\xe4\\x4f\\x14\\x65\\x53\\x9c\\x6c\\xaa\\xae\\x5d\\xe1\\xed\\x8e\\xc2\\xb8\\xf9\\x5b\\x95\\x1e\\x78\\x14\\x16\\x7e\\xcb\\x42\\xf7\\xac\\x26\\x22\\x43\\x20\\x51\\x7c\\x20\\x2b\\x8a\\xdf\\xfb\\x45\\xd6\\x40\\x32\\x25\\x59\\xc7\\x65\\xa6\\x6f\\x34\\x39\\x68\\x64\\x15\\x3c\\xdf\\xbd\\xc8\\xa5\\x10\\x71\\x16\\xde\\xfa\\x74\\xa0\\x1c\\xfa\\x72\\x9a\\xca\\x50\\x69\\x0b\\x09\\xf0\\x9b\\x62\\x09\\x82\\x53\\xf3\\xad\\x37\\xcc\\x22\\x95\\x26\\x34\\x3f\\xe0\\x87\\x02\\xb9\\x82\\xd5\\x06\\x64\\x27\\xca\\xe3\\xca\\x04\\x7d\\x7e\\x6e\\xc5\\x43\\x73\\x9e\\x4c\\x09\\x3c\\x37\\xcb\\x65\\x56\\xe5\\x0d\\x18\\x8b\\x4c\\xab\\x8a\\x8b\\xca\\xd4\\x81\\x14\\xd7\\xb3\\xd1\\x2c\\xbf\\x31\\xd8\\x49\\x6a\\x6d\\xf7\\x04\\xda\\x89\\xf0\\x2f\\x4e\\xed\\x81\\x8b\\x95\\x12\\x0e\\x19\\x89\\xe4\\xc4\\x3e\\x08\\x86\\x1d\\x33\\x7a\\x0b\\xb5\\x46\\x6a\\xe6\\x98\\xc6\\x3d\\xc1\\xf8\\x58\\x60\\x2c\\x4f\\x7a\\xa7\\x0e\\x00\\xc2\\xed\\xf5\\xa5\\xc6\\x0a\\x2e\\xe0\\x9d\\x0f\\x17\\x8f\\xf7\\x29\\x9e\\xfb\\xe8\\x81\\x41\\x11\\x55\\xf2\\x91\\x1e\\x6a\\x05\\xa0\\x18\\x05\\x87\\xa6\\x94\\x01\\xb1\\x12\\x00\\xca\\xbb\\x08\\x52\\xca\\xba\\x87\\x45\\x3b\\xaf\\x7e\\x28\\xcb\\x6f\\xfe\\xd6\\x74\\x1e\\xfb\\x7b\\x14\\xbc\\x94\\xe0\\x19\\x4d\\xf8\\xf0\\x09\\x3e\\x88\\xe4\\x86\\xef\\xb7\\xd5\\x5c\\x5c\\x4a\\xd9\\xac\\x84\\xd7\\x47\\x86\\x2e\\x67\\x0c\\x22\\xd7\\x8c\\xbc\\xd1\\xd4\\x3b\\xbf\\x20\\x98\\xdb\\x15\\x02\\x3c\\x7b\\xcd\\xa5\\xad\\xde\\x71\\x35\\x0b\\x2f\\xa3\\xab\\xac\\xf4\\xfc\\x6c\\xd7\\xdb\\x1e\\x0a\\x92\\x67\\x60\\xec\\x35\\x7e\\xa1\\xe7\\x97\\xc6\\xbf\\x25\\x9f\\xa1\\xac\\xf4\\xbe\\x58\\xae\\x4a\\xa4\\x86\\xcf\\xb0\\x51\\x57\\x59\\x79\\x83\\x3c\\xd0\\x3d\\x11\\xc5\\x30\\x7c\\xd6\\x0d\\xdb\\xe6\\x2d\\x4d\\x52\\x33\\xf6\\x29\\xff\\xc1\\xd4\\x97\\x94\\x0c\\xb1\\xe3\\x64\\x9f\\xee\\x07\\xdc\\x89\\x48\\xed\\x4c\\x64\\x59\\x4a\\x81\\x38\\x85\\x6b\\x89\\xff\\x78\\xc1\\x8e\\x93\\xfd\\xd0\\x97\\x2f\\xc8\\x2f\\xcd\\xae\\x97\\x37\\xa4\\xf7\\x3f\\x8c\\x20\\x92\\x0b\\x61\\xf0\\xee\\x85\\x03\\x93\\xcb\\xdc\\xd9\\x10\\xa8\\x14\\x02\\x62\\x79\\x1a\\x99\\x04\\xf3\\xbe\\xf3\\x48\\xee\\x4d\\x89\\x1c\\x92\\xd3\\x8b\\xfa\\xf6\\xca\\x77\\x4b\\xb7\\x5c\\x2a\\x24\\xd6\\x80\\x56\\xc9\\x9e\\x4f\\xd8\\x69\\xa0\\x45\\x07\\x10\\xc4\\xb2\\xb8\\xa8\\x02\\x96\\xda\\xd5\\x1f\\xc0\\xae\\x15\\xcd\\x7b\\xea\\xe4\\xf6\\x1d\\x84\\x0a\\xfd\\x93\\x60\\xb3\\xec\\x2d\\x00\\xa6\\xbc\\x6a\\x03\\xdf\\xb5\\x7a\\x8c\\x5d\\x25\\x34\\x6f\\x9c\\x81\\xa0\\x4f\\xef\\xe4\\x0f\\xd0\\x57\\x6c\\x35\\x09\\x03\\xb8\\xd7\\x49\\x8f\\xa3\\x5b\\x77\\x96\\xdf\\x4d\\xb7\\x6e\\xad\\xef\\xcb\\x8d\\x63\\x07\\x65\\xc1\\xe6\\x00\\x69\\x49\\x53\\xee\\x8f\\x4f\\x7e\\x79\\x8f\\x49\\xdf\\x11\\x58\\x0d\\x70\\xae\\x6b\\x9d\\xe5\\x12\\xd9\\xda\\x3b\\xab\\x0b\\xbe\\x36\\x51\\xcf\\x4c\\x05\\x6e\\xa3\\xa6\\xd2\\x24\\x3c\\x82\\x9c\\xbe\\x2c\\xaa\\x62\\x59\\xfc\\xa9\\xa9\\xda\\x21\\xd9\\x5a\\x14\\x58\\x01\\xda\\xba\\x58\\x49\\xc7\\xce\\xa5\\x4b\\x46\\xfa\\xde\\xb5\\xbc\\x13\\xe4\\x5a\\xb8\\x2d\\xa5\\xde\\x76\\x5e\\x7b\\xf0\\x22\\x44\\x75\\xd9\\xa5\\x43\\x90\\x26\\x41\\xe1\\xb9\\x86\\x17\\xbc\\x60\\x12\\x27\\x2a\\xef\\xe1\\x1e\\x78\\xd7\\x17\\x7a\\xe3\\x0b\\xa6\\xbc\\xe6\\x46\\xe2\\x0a\\x77\\xd8\\xcf\\x29\\x5a\\x1f\\x29\\x41\\xd6\\x89\\x6e\\x05\\x14\\xb5\\xed\\x75\\x17\\x8e\\x34\\xdd\\x8f\\x19\\xe1\\x54\\xf7\\x3e\\x98\\x79\\x61\\x4f\\xd4\\x11\\x56\\xb1\\x6b\\xc8\\xb3\\x31\\xf3\\x17\\x72\\xec\\xf2\\x7b\\xca\\xfc\\xe9\\x0d\\x9f\\x58\\xab\\x82\\xf7\\xdc\\x8f\\x99\\x07\\xbc\\x0e\\xbf\\x60\\xa9\\x00\\x32\\x9b\\xfe\\x60\\xf9\\xc5\\x6e\\xea\\x1b\\xa8\\xe3\\xe9\\x44\\x4d\\x1d\\x16\\xca\\x80\\xf2\\xb0\\xe1\\x48\\x2c\\x2b\\x41\\x0a\\xb2\\x22\\xe8\\x64\\x8e\\x3a\\x24\\x06\\x4b\\xd4\\x18\\x3b\\x6d\\x7f\\xa1\\x7f\\xf7\\xf8\\xcd\\x48\\x04\\xb4\\xfd\\x65\\x51\\x8d\\xc9\\x0a\\x7b\\xbc\\xba\\xde\\x1f\\x7e\\x0a\\x23\\x52\\xae\\xdc\\xc1\\x70\\x90\\xf9\\xa0\\x6a\\xe4\\x9e\\xf8\\x8f\\xbb\\x74\\xc5\\x36\\xe7\\xe3\\xa3\\xa3\\xff\\x79\\x6a\\x8f\\xd3\\xd8\\x7d\\x49\\xf4\\xbc\\x08\\x7b\\x86\\x85\\x18\\xd8\\x89\\x0d\\x4f\\xe9\\x0f\\xe8\\x1b\\xd0\\xd9\\x4c\\x05\\xbf\\x38\\x37\\x87\\x7d\\x89\\x26\\x23\\x3d\\xf3\\x6c\\xa9\\xd0\\x11\\x40\\x7d\\xa6\\xc5\\xc5\\xdf\\x84\\x79\\x63\\x9f\\x95\\xab\\xfb\\x0e\\xb4\\x17\\x7a\\x82\\x6e\\x6f\\xef\\x0a\\x8a\\x05\\x5c\\xdc\\x77\\x85\\xbf\\x49\\x51\\x6c\\xdf\\x2b\\x70\\x7d\\x77\\x6e\\xa3\\x17\\x7a\\x7e\\xa9\\xf3\\xff\\xd2\\xb5\\x61\\x07\\x1d\\x91\\x1d\\xf3\\x0d\\x69\\x77\\x1b\\x80\\x39\\x07\\x2e\\xb5\\x5e\\x12\\x52\\x3e\\x7c\\x8e\\x38\\x1c\\xe2\\xc8\\xfe\\x87\\x1a\\xcc\\xd6\\xad\\x5a\\xae\\x9b\\x16\\x5e\\x14\\xb6\\x76\\xd1\\xe2\\x6f\\x7f\\x75\\x6e\\xcb\\x3d\\xa1\\x2a\\x62\\xef\\xc9\\x4f\\x67\\x59\\x54\\x0e\\x31\\xd9\\x91\\xa0\\xff\\x8d\\x87\\xbd\\x7f\\xfc\\x57\\x72\\xbf\\x3b\\xdd\\xdb\\x8b\\xe9\\x7e\\xb2\\xaa\\x4d\\x6b\\xda\\xed\\x4a\\x4f\\x88\\x33\\x4f\\xc5\\xda\\x2e\\x5d\\xb2\\xf1\\x3d\\x56\\x20\\xea\\xbc\\x79\\xe1\\x53\\x62\\x04\\x77\\xea\\x23\\xf7\\x55\\x02\\x81\\xa3\\xd7\\x93\\xab\\xfc\\x6b\\xa7\\xf2\\x0b\\xce\\x9c\\x11\\xd6\\x76\\xd8\\x78\\x5c\\xbd\\xe1\\x09\\x71\\xb9\\xf0\\xdc\\x73\\x28\\x19\\xf6\\xc2\\x54\\x11\\xaf\\x8b\\xc0\\xa0\\x9b\\x95\\x66\\x7e\\xb9\\x9f\\x2c\\xe5\\x74\\xca\\x34\\xdf\\xc7\\xdc\\x39\\xb9\\x32\\x9e\\xa8\\xfd\\xa3\\x7d\\xef\\x4d\\x67\\xda\\xac\\x7c\\x11\\x25\\x0b\\x99\\x78\\x0e\\xae\\xc6\\x34\\x2a\\xd1\\xd0\\x09\\x47\\x2f\\x61\\xbe\\xde\\x35\\x24\\xe2\\x7a\\xf9\\xfc\\xaf\\x90\\xc8\\x0b\\x53\\x1b\\x83\\x9f\\xd2\\x55\\x56\\xae\\x35\\xd9\\x11\\x2a\\x7d\\x01\\x33\\x06\\x30\\x92\\x8b\\x75\\x56\\xe7\\xaa\\x68\\x27\\xd1\\x04\\x84\\x8f\\x5c\\x08\\x77\\x47\\x26\\x32\\xa9\\xd4\\x4b\\xee\\xc3\\xb8\\x6f\\x1f\\xc4\\x34\\x87\\x02\\x12\\x4f\\x86\\x32\\xed\\x58\\xed\\x78\\xa1\\x7b\\xc7\\x49\\x4b\\x7b\\x13\\xec\\xe7\\x8b\\x60\\x3f\\xe5\\x21\\xd8\\xb1\\xa1\\xb2\\x18\\xab\\x56\\x89\\x06\\xfb\\x37\\xb4\\x53\\x93\\x94\\xd3\\xbc\\x28\\x74\\xf9\\x49\\x3f\\x38\\x47\\x03\\x31\\x81\\xba\\xeb\\x54\\x2c\\x2a\\xd7\\x67\\x9a\\xf8\\x35\\x41\\x13\\x62\\x0c\\x9d\\x65\\x22\\xe7\\xbc\\x5b\\x77\\x33\\xee\\x37\\x3c\\x92\\x7e\\xb8\\x3b\\xb7\\xb2\\x67\\xa1\\x3b\\x2b\\xd5\\x37\\xca\\x78\\x2f\\xef\\xa5\\x59\\xeb\\xfd\\xfb\\x69\\x9a\\x13\\x79\\x09\\xc1\\xf6\\xf8\\x81\\xa1\\xe9\\x8e\\x1c\\x3f\\xfc\\x93\\x1b\\x79\\x91\\xcd\\x2f\\x07\\x1c\\x9a\\xd6\\xc7\\xc1\\x9d\\x43\\xa2\\x90\\xcc\\x48\\x31\\x90\\xd8\\x8c\\x91\\xd3\\x04\\x24\\x4e\\xef\\xad\\xec\\x34\\x10\\x96\\x03\\xae\\xba\\x32\\x8d\\xd0\\x01\\x8b\\x75\\x0e\\x44\\x76\\x2c\\xa5\\xd2\\xbf\\xa3\\xf7\\xc5\\x8d\\x6c\\x23\\x2f\\x9a\\x6c\\x56\\x6a\\x78\\x22\\xb8\\x8a\\x1a\\x1c\\xc7\\xdd\\x12\\xfc\\x98\\xd5\\xa2\\x43\\xd4\\xaa\\x05\\x15\\xf9\\x52\\x84\\xfb\\xf0\\xae\\x13\\xc4\\x67\\xe1\\xae\\xf9\\x85\\xd7\\x7c\\x3c\\xbb\\xe8\\xd7\\xfe\\xb9\\x59\\x01\\xfb\\xd6\\xa9\\xa1\\x50\\x12\\x57\\x23\\xd1\\xe2\\x2e\\xf3\\x0a\\x48\\x2a\\x98\\x98\\xbf\\x07\\x37\\xf6\\x94\\x67\\x73\\x78\\xcd\\x2d\\xb3\\xf9\\xdf\\x2f\\xf4\\x6b\\xb3\\x86\\x18\\xb5\\x57\\xb6\\xe4\\x63\\xb5\\x7f\\xfc\\x80\\xf8\\x0a\\xdc\\xbe\\x7b\\x89\\x03\\xb5\\xe8\\xbb\\xbb\\xf9\\xf0\\x6c\\x52\\xb5\\x56\\x06\\x74\\x95\\xcf\\x31\\x24\\xbe\\x5b\\x39\\xfe\\x7d\\xbf\\x32\\x95\\x76\\xfd\\xcb\\xbd\\x46\\x93\\x9c\\x7a\\xa6\\xcb\\x6c\\x0b\\xbe\\x50\\xf1\\x9a\\x45\\x05\\x6e\\x59\\xb6\\xee\\x7e\\x04\\x6b\\x07\\x1a\\x01\\x88\\x05\\x1f\\x29\\x5b\\x1e\\xd7\\x72\\x96\\xd5\\x7d\\xe3\\xce\\xd6\\xad\\xd9\\x97\\xa0\\x90\\xe0\\x85\\xfb\\x0c\\x87\\x37\\x10\\x4e\\x6a\\x67\\x94\\xde\\xde\\xac\\x5b\\x97\\x83\\x21\\x14\\xbe\\x5c\\x18\\x01\\xe9\\xc6\\x46\\x6a\\x23\\xf2\\xf4\\xeb\\xf9\\x65\\x50\\x8f\\x01\\xde\\xd7\\x55\\x4e\\x5f\\x20\\x85\\x0d\\xdb\\x87\\x66\\x3e\\xba\\xf7\\xf0\\x90\\xd2\\x25\\xcc\\x4d\\x5d\\xe9\\x9a\\xd5\\xd6\\xbe\\xe3\\x99\\xb9\\xc6\\xac\\x2e\\xd1\\x47\\xae\\x5d\\xb4\\x8d\\x2e\\xcf\\xd5\\xc0\\xd9\\x93\\x52\\xa3\\x1d\\x2a\\x53\\x83\\x9a\\xfd\\xbc\\x00\\x2d\\xc4\\xdc\\xf2\\x59\\x6e\\xa1\\x53\\x95\\x22\\x63\\x20\\x61\\x45\\xd1\\x26\\xa7\\xae\\x2e\\xb5\\x5e\\xf9\\x21\\x28\\xdc\\x39\\x4c\\x2d\\x0e\\xb9\\xba\\xb1\\x8d\\x11\\xe5\\xc0\\x04\\x65\\x24\\x6d\\x0f\\xa6\\xcb\\xa0\\x14\\x71\\x3e\\x6c\\xd9\\x6e\\xe3\\xae\\x88\\x65\\xf0\\x24\\x03\\xf3\\xbe\\xdd\\x7a\\xf0\\x81\\x83\\xd3\\x88\\xa6\\x66\\x74\\x1d\\xa6\\x65\\xff\\x09\\x80\\xa4\\x8a\\xaa\\x85\\xf4\\xf8\\x6c\\x43\\x3d\\x1e\\xf9\\x74\\xf9\\x07\\x22\\xea\\x79\\xa8\\x0e\\xd5\\x03\\x1f\\x77\\x73\\xb2\\xa3\\x39\\xd1\\xde\\x81\\x4b\\xb5\\x0f\\xf5\\x47\\x61\\x18\\xf5\\xb1\\xc8\\x3a\\x52\\x02\\x2b\\x9e\\x65\\x35\\xf8\\xff\\xf4\\x13\\x2b\\x1c\\x32\\x91\\x6d\\x45\\x7d\\x46\\x5a\\xb7\\x4c\\x72\\x70\\x7c\\x74\\x64\\xaf\\x67\\x41\\xbe\\x1e\\xab\\x7b\\x67\\xa9\\xdb\\x8e\\x1c\\x40\\x15\\xf4\\x70\\x28\\x8c\\xe3\\x0d\\x9e\\x8c\\x22\\xb6\\x77\\x4f\\x51\\x81\\xc0\\xc1\\xd6\\x17\\x1d\\xee\\x28\\x00\\xef\\x41\\x18\\x1a\\x3c\\xa4\\xd7\\x65\\x99\\x7c\\x46\\xc3\\x60\\x60\\x02\\x41\\x89\\xdd\\x0f\\x0e\\xa1\\x0e\\xfb\\xcc\\x97\\xef\\xd1\\x88\\x95\\xf7\\x47\\x37\\xea\\xe6\\xb4\\xbf\\xbd\\xfe\\x1b\\x17\\x47\\x72\\x7b\\xc5\\xf8\\x26\\xbb\\xa5\\x5e\\x72\\xfd\\xed\\x94\\x93\\x5a\\x77\\x52\\x47\\x39\\x41\\x4d\\x84\\x14\\xf9\\x2f\\xfc\\xa3\\x97\\x22\\xbb\\xea\\x2c\\xe7\\xba\\x03\\x1a\\x70\\x06\\xae\\x13\\x40\\x15\\xac\\x09\\xc1\\x12\\xee\\x65\\x12\\x16\\x71\\x28\\x06\\xf1\\x18\\x21\\x72\\x24\\x18\\x68\\x4f\\x94\\xde\\xf7\\x2e\\x97\\xb2\\x4b\\x19\\x98\\x18\\x85\\xfa\\xf2\\x25\\x18\\x47\\xa7\\x14\\x7e\\xef\\xe4\\x18\\xb8\\xbd\\x61\\x74\\x13\\x49\\x39\\x34\\xfb\\x90\\xb7\\x5d\\x48\\x17\\x37\\x7b\\xb1\\x1b\\x64\\x72\\xfa\\x9d\\x0d\\x20\\xe3\\xd9\\x2d\\xab\\x7f\\x7a\\xb7\\xd5\\x17\\xc1\\xaa\\xcd\\xb6\\x9a\\x2f\\x6a\\x53\\x15\\x7f\\xa2\\xf6\\xe0\\x1c\\xac\\xf0\\xfe\\x6c\\x31\\x9c\\x00\\x43\\x83\\x40\\x68\\x18\\x25\\x39\\x06\\x1b\\x10\\xe4\\xc9\\xe9\\xb1\\xf9\\xa4\\x77\\xb6\\x47\\x35\\xca\\x04\\x06\\x59\\x09\\xa7\\x4e\\x65\\x08\\xe4\\x8f\\x8d\\x3a\\xd5\\x80\\x15\\xa5\\x73\\x8a\\x4d\\x21\\xe6\\x88\\xda\\x50\\x46\\x52\\x1d\\xe4\\x7e\\xc7\\xa6\\xd8\\x24\\x59\\xdb\\xfc\\xcb\\x23\\xd9\\x80\\xf3\\xae\\x1a\\x08\\x1d\\xa0\\x6b\\xc2\\xdb\\xe0\\x5c\\x1b\\x28\\x50\\xfd\\x64\\xea\\xb9\\x6b\\x6a\\x06\\x88\\x92\\xae\\x25\\x59\\x15\\x6b\\xaa\\xc6\\x94\\x45\\xae\\xda\\x3a\\xab\\x1a\\x64\\x78\\x0e\\x87\\x5f\\x0c\\x15\\x08\\x3d\\xe8\\x96\\x50\\x03\\xfd\\xc2\\xfc\\x54\\xa0\\xde\\x75\\xc7\\xa3\\xb4\\xaf\\xf4\\x22\\x35\\x33\\xf9\\xc0\\xec\\xab\\xb8\\xe9\\x2e\\x6a\\xf7\\x35\\x77\\x97\\x41\\xee\\x7b\\xff\\x4e\\x39\\x84\\xf0\\x80\\x81\\x8d\\x11\\x55\\xbc\\x6f\\xf4\\x75\\xcb\\x9e\\x2d\\x56\\xee\\x08\\x0b\\x26\\xe2\\x6f\\x59\\xbf\\x7e\\xa7\\x55\\x4a\\x14\\xbd\\xc3\\x12\\x25\\x6a\\x6d\\xa2\\xf7\\xb8\\x50\\x0a\\x27\\xd7\\x69\\xf7\\x18\\xf7\\xbd\\xf6\\xd8\\x2d\\xe8\\x6b\\x93\\xeb\\x52\\x4d\\xd5\\xe7\\x7d\\x54\\x46\\xed\\x9f\\x74\\x34\\xcb\\x23\\xb5\\x5f\\xad\\xcb\\xd2\\xfe\\x12\\xdc\\x23\\xd2\\x54\\x59\\x54\\x45\\x9b\\xb0\\x59\\x24\\x6d\\x3b\\x33\\x11\\xcb\\x99\\x36\\xd3\\xc0\\xb5\\x24\\x53\\x99\\x24\\x4b\\x31\\x34\\x97\\xc8\\x3a\\xb7\\x03\\x31\\xe9\\x96\\x36\\xbc\\x57\\x5f\\xb2\\x20\\xbd\\x24\\xc2\\x65\\x93\\x79\\x38\\xdd\\x2f\\xef\\xed\\xaa\\x7f\\x12\\xa8\\x4a\\x95\\xc9\\x75\\x62\\xba\\x6c\\x9c\\x28\\xaa\\x46\\xd7\\xed\\x8f\\xe0\\x3e\\x02\\x65\\xd3\\x43\\xc5\\x3d\\x75\\x1a\\xb7\\x77\\x08\\x29\\x86\\x09\\xd9\\x1a\\x96\\xec\\xc5\\x78\\xc1\\xcd\\xe2\\xb2\\x40\\xef\\x12\\x80\\x71\\x82\\xaa\\xa6\\xa2\\x3e\\xf6\\x21\\x11\\x58\\x6e\\x36\\x55\\x52\\x17\\xdd\\x0b\\x6a\\xf5\\xf5\\x78\\x5e\\x0e\\x11\\xef\\x66\\xa4\\x8e\\x86\\x21\\x54\\x2a\\x00\\xb6\\x34\\xbb\\x72\\xa6\\x8d\\x38\\x61\\x9a\\xdd\\x9e\\x51\\xf8\\x46\\x1f\\xa9\\xec\\xba\\x68\\xe4\\x95\\x6b\\xff\\x06\\xe1\\x3c\\x50\\x8c\\xa7\\x9c\\xba\\xe1\\xf9\\x1e\\x88\\xbb\\x29\\xff\\x02\\x57\\xea\\x06\\xac\\x28\\xbb\\x28\\x3a\\x22\\xc7\\xcf\\xbb\\x91\\xe3\\x6e\\xa7\\x46\\xbc\\x54\\xdf\\xb2\\x03\\x11\\xc6\\x6d\\xad\\x29\\xf2\\xdc\\xb6\\xa3\\x32\\xd5\\x68\\xc8\\x9a\\x67\\xce\\x29\\x08\\xa0\\x61\\xcf\\x40\\x0c\\x3a\\x45\\x28\\x2d\\x2b\\xa1\\x16\\x95\\x6a\\xd6\\xf3\\x85\\xca\\xd4\\x26\\xdb\\x52\\x42\\xd0\\x6c\\xbe\\xa0\\x6a\\x6a\\x03\\xf9\\x78\\x17\\xd9\\x95\\x0e\\x0d\\x9c\\x70\\x29\\xa3\\x4b\\x5c\\x56\\xe5\\xce\\x9d\\x7b\\xb0\\x59\\x14\\xf3\\x05\\x01\\xd0\\xcd\\xb4\\xca\\x36\\x97\\x9b\\xac\\xce\\x47\\xaa\\x29\\xcd\\x66\\xc4\\xde\\xe9\\x1a\\x0c\\x32\\xab\\xda\\x54\\xda\\x3e\\xe6\\xaa\\xa6\\x85\\x84\\x3a\\xdc\\x08\\xf6\\x82\\xd3\\x9a\\x65\\xed\\x7c\\xa1\\x11\\x9e\\xa8\\x05\\x27\\x2d\\xcc\\x39\\x36\\x37\\xcb\\x59\\x51\\xd1\\x0f\\xfa\\x5a\\xcf\\xd7\\xad\\xfd\\xa3\\x55\\xa6\\x9a\\xeb\\x09\\x72\\xb2\\x4a\\x5f\\xb7\\x6f\\x57\\x2f\\x73\\xc8\\x97\\x09\\x7e\\x93\\x59\\xdd\\x92\\x2f\\xbe\\x73\\xbf\\x92\\xf6\\x79\\xfb\\xbb\\x5b\\x56\\x89\\xbe\\x88\\xae\\xbb\\x53\\x77\\x54\\x4f\\xd4\\x7c\\xe9\\xad\\x8a\\x4f\\x31\\x8c\\xe2\\x84\\xd3\\x26\\x2a\\x3a\\x89\\x3f\\x95\\x19\\xb9\\x6f\\x15\\x55\\x5e\\xcc\\x29\\xc5\\x6a\\xd6\\x12\\xd2\\xcb\\x12\\xd8\\xbe\\xf0\\xa5\\xaf\\x75\\x5e\\x67\\x9b\\xca\\x4b\\x60\\x6c\\x3e\\x0c\\x6c\\xb2\\x23\\x25\\x70\\x06\\x10\\xc8\\xcf\\x35\\x42\\xfb\\xe3\\xe8\\x06\\x9a\\x02\\x8b\\x3c\\xc6\\xfe\\x77\\x86\\xc8\\xed\\x40\\x19\\x70\\x29\\xb5\\x43\\x10\\xb2\\xe3\\x4b\\x7b\\x50\\x19\\xdb\\xd6\\x55\\xfb\\xc0\\x2a\\x05\\x43\\x88\\x83\\x1e\\x81\\xb0\\xd5\\xd7\\x6d\\x56\\xeb\\x0c\\x75\\x95\\x5b\\x2b\\xb1\\x86\\xbd\\x76\\xda\\x58\\x14\\x0d\\xb5\\xd2\\x2c\\x98\\x6e\\xe6\\x59\\xad\\xcf\\xd7\\xa5\\xed\\x00\\xd3\\x40\\xeb\\xeb\\xa2\\xc1\\xdc\\xcf\\xfa\\xba\\x85\\xf4\\x7f\\x00\\xb5\\x01\\x6e\\x71\\x2c\\x13\\x23\\xc9\\xbe\\x9d\\xfd\\xd1\\x84\\x03\\x06\\x3b\\xc4\\x7c\\xbe\\x46\\xe7\\xba\\x9c\\x4f\\x04\\x26\\x90\\x27\\xb8\\x45\\x22\\x77\\x54\\x01\\x60\\x6b\\x40\\xdd\\x4f\\xe6\\x6d\\x71\\x55\\xb4\\xdb\\x17\\x59\\x95\\x97\\xba\\x76\\x2d\\x53\\x00\\xa1\\x39\\x57\\x0b\\xfa\\x05\\x96\\xb1\\xa8\\x75\\x54\\x51\\x99\\x2a\\xd1\\xdc\\xd3\\xac\\x2c\\x2d\\xc5\\x1c\\x41\\x4b\\x67\\x75\\x86\\x49\\x36\\xed\\xd9\\x89\\xaa\\xbb\\xe6\\xe1\\x0c\\xce\\xb4\\x86\\x00\\x8b\\xd2\\x12\\x7b\\x59\\xeb\\x2c\\xdf\\x22\\xb9\\xb8\\x94\\x56\\x11\\x2d\\x06\\x0b\\xad\\x7d\\x39\\x54\\xfb\\x26\\x08\\x0f\\xb7\\xfd\\x75\\x76\\xfd\\xaa\\xa8\\x02\\x7a\\xa1\\x19\\x3b\\x9d\\xcc\\xa6\\xc8\\x75\\xd3\\x12\\xb2\\x85\\x68\\xcc\\x92\\x64\\xbd\\xa4\\xb3\\xa9\\x37\\xc2\\x1a\\x8e\\x86\\x75\\x82\\x49\\x66\\x66\\x2a\\x16\\xf4\\x65\\xc2\\x51\\x91\\x1d\\x1f\\x47\\x60\\x54\\x5c\\xad\\x9b\\x05\\x12\\xec\\xb3\\xb7\\xaf\\xd5\\x56\\xb7\\x81\\xab\\x1f\\x64\\xb0\\x8e\\x28\\x95\\x09\\x9c\\x23\\x6c\\x8c\\xe5\\x8d\\x2b\\x3d\\x2f\\xce\\x8b\\xb9\\x6b\\x9c\\x8e\\xc9\\x7c\\xdd\\xf0\\x84\\xf1\\xda\\xc8\\x4f\\xd4\\xc1\\x81\\xe3\\x22\\x01\\xf5\\xfe\\xad\\x2a\\xfe\\x7b\\xad\\xd5\\xcb\\x67\\xa4\\xeb\\xb0\\x23\\x93\\xac\\x03\\x59\\xc6\\xd0\\x67\\x59\\x2c\\x9a\\x45\\xe0\\x60\\x3a\\xc2\\x95\\x46\\x0f\\x4f\\xed\\x78\\x1f\\x26\\x4c\\xbf\\xa8\\x32\\xbc\\x9e\\x73\\xd4\\x4f\\x32\\x5d\\x0a\\x87\\xe3\\xbc\\xcb\\xa8\\x00\\x0a\\x58\\xc6\\xba\\xd8\\xb7\\x2d\\xf4\\xec\\xcb\\x02\\x76\\xbe\\xbb\\x29\\x2f\\x6a\\xb3\\x76\\x11\\x1a\\xa9\\x67\\x30\\x14\\x98\\x98\\x55\\x98\\x2d\\xcf\\x49\\x55\\xee\\xe7\\x8f\\xc5\\xa7\\x89\\xe0\\x93\\x2e\\xeb\\xa2\\x0a\\x46\\xda\\x50\\x87\\x32\\x63\\xed\\x19\\xe5\\x8c\\x67\\xa6\\x9f\\x9b\\xca\\x83\\x9a\\x74\\x5d\\xd0\\x83\\x4b\\x21\\x72\\x79\\x65\\x53\\x35\\x01\\x70\\x98\\x73\\xf0\\x90\\xdf\\x9a\\x35\\x85\\x36\\xd7\\xfa\\xbf\\xd7\\x45\\xe8\\xe5\\x9a\\x1a\\x9d\\x58\\x4b\\x2b\\xdc\\xb9\\x39\\xf6\\x68\\x0a\\xe2\\xc5\\x51\\x8c\\xa8\\xf7\\xec\\xed\\x6b\\xba\\xef\\x65\\x2f\\x7f\\xff\\xe5\\x78\\x80\\x0b\\x36\\x0c\\xa3\\x5e\\x8b\\x6f\\x8e\\xa9\\xd1\\x6f\\x8e\\xe3\\x66\\xbf\\x39\\xa6\\x86\\x3f\\xd4\\x45\\x8b\\xeb\\x35\\x00\\x6d\\xda\\x30\\xd5\\xc3\\x07\\xea\\xe1\\x9b\\xe3\\x6e\\x1f\\x0f\\xb8\\x8f\\x07\\x9d\\x3e\\x1e\\xdc\\x65\\xf0\\x0f\\xa8\\xe9\\x07\\xdd\\xa6\\xbf\\xe3\\xa6\\xbf\\xeb\\x34\\xfd\\xdd\\x57\\x0d\\x9f\\xfb\\xf8\\xae\\xdb\\xc7\\xf7\\xdc\\xc7\\xf7\\x9d\\x3e\\xbe\\xbf\\xc3\\xf0\\x91\\x8a\\xa8\\xf9\\xef\\x3f\\xc5\\xf0\\xcb\\xdd\\x7d\\xf2\\xc4\\x00\\xce\\x31\\x66\\x35\\x99\\x2f\\x7b\\xc1\\x6a\\x60\\x4a\\x4f\\xcb\\x62\\x15\\x3e\\x77\\x48\\x34\\x34\\xab\\x49\\xc0\\x5b\\x01\\xe3\\xa8\\xa8\\x72\\xfa\\x93\\xb4\\x36\\x7b\\xca\\x76\\xb2\\x5c\\x37\\xed\\xdf\\x58\\x83\\x68\\x56\\x13\\x21\\x65\\xa8\\x2f\\x5f\\xec\\x17\\x71\\xa9\\xd3\\x97\\x6e\\x2c\\xdb\\x97\\x2f\\x28\\xd8\\x87\\x4e\\xd7\\xf7\\xef\\xc3\\x58\\xc4\\x27\\x0f\\x04\\x17\\x41\\x98\\x02\\xc8\\x1b\\xb5\\x92\\xf8\\x2f\\x6a\\x85\\x80\\xe2\\xd4\\xa3\\x10\\x07\\xec\\xcc\\x0c\\xb9\\x0d\\x87\\xc9\\x83\\x53\\xe6\\x19\\xf5\\xeb\\xba\\x70\\x35\\xd6\\x62\\x25\\xc4\\xca\\xdc\\xbf\\x8f\\x0f\\x05\\xbd\\x51\\xe4\\x45\\x8b\\x3f\\x80\\x78\\x1e\\x17\\x25\\x4f\\x5d\\xb9\\x4e\\xec\\xc4\\x79\\x12\\x4d\\xe4\\x66\\x14\\x2d\\xf0\\xb0\\x9f\\x48\\x3e\\x78\\x22\\x71\\x03\\xcd\\x9f\\x39\\xf2\\xe8\\x8c\\x22\\x70\\xfa\\x7d\\x79\\xfe\\x06\\x5c\\x07\\x07\\x44\\x56\\xae\\x85\\x1d\\x1d\\xc2\\x01\\xfc\\x2a\\xaa\\x0c\\x68\\x8f\\xc7\\x36\\xbc\\x55\\x7d\\x88\\x33\\xb2\\xef\\xd9\\x5b\\x95\\xb6\\x7b\\x7b\\x8c\\x54\\x00\\x5c\\x38\\xbb\\x46\\xa1\\x80\\xa3\\x8f\\x11\\xa3\\x1a\\xf3\\x7f\\x23\\x46\\x94\\x47\\x95\\x60\\x8d\\x70\\x01\\x0e\\x70\\x94\\x3a\\x5c\\xf8\\xd6\\xb2\\xc9\\xe3\\xdb\\x86\\x1c\\x90\\x00\\xed\\x57\\x37\\xe4\\x1c\\x72\\x78\\x18\\xae\\xe8\\xdf\\x3f\\x3c\\x50\\x9b\\xa2\\x2c\\x15\\xfa\\x98\\xe8\\x46\\x8b\\xf0\\x57\\x90\\x97\\x8d\\x54\\x32\\xd6\\xba\\x29\\xfe\\x44\\x32\\x43\\xc0\\xd7\\x3e\\xf2\\xec\\x03\\x97\\xe0\\xab\\xd3\\xac\\x26\\x18\\x83\\x05\\xfa\\x17\\x80\\x51\\xa4\\x99\\xb9\\x64\\x2d\\x51\\xe3\\x9d\\x0f\\x32\\x2f\\xc5\\x90\\x03\\xe4\\xbe\\xeb\\x68\\x42\\x5c\\xde\\x40\\xdc\\xf7\\xa0\\x57\\x1e\\x8a\\xdf\\xb4\\xc0\\x5f\\xa2\\xe3\\x57\\xb1\\xcb\\x45\\x78\\xd4\\x9b\\x83\\x50\\x1d\\x74\\xa7\\xdb\\x75\\x6d\\x4c\\x28\\x8d\\x87\\x3c\\xbe\\x65\\x76\\x1d\\xd8\\x32\\xa4\\xa3\\xc7\\xd7\\xf4\\x3a\\xee\\x44\\x3a\\x0e\\xa5\\x43\\x46\\xf7\\x40\\x12\\xa3\\x8c\\x64\\x65\\xbe\\x84\\xcc\\x8a\\xb3\\x2a\\xe7\\xef\\x65\\xba\\xe1\\x40\\x65\\xd1\\xcd\\xbb\\xbc\\xeb\\x0e\\xf9\\xd0\\x77\\x5a\\xc5\\x18\\xc3\\x39\\x45\\x20\\x01\\xf1\\xd6\\x77\\x3d\\xe0\\x12\\x7b\\xe1\\x14\\x87\\xd4\\x43\\xb8\\xde\\x0f\\xbb\\x8e\\xd8\\x5e\\xa0\\xeb\\x6a\\x43\\xee\\x10\\x3c\\x80\\x1e\\x87\\x71\\x47\\x43\\x8a\\x7b\\xe8\\x82\\xb1\\x47\\xe7\\xcb\\x3b\\x1f\\xba\\xd0\\xd9\\x36\\xbb\\xc4\\x34\\x0b\\x38\\x41\\x10\\xcd\\xed\\x39\\x74\\xff\\x9e\\x4e\\x21\\xd0\\xea\\x4a\\x3f\\x2f\\xdb\\x81\\xb8\\x61\\x3b\\x1b\\xc8\\x9b\\x7b\\x4b\\x7e\\xed\\x54\\xd5\\x91\\x1f\\x86\\x0f\\x70\\xeb\\x25\\xaa\\xae\\x15\\xc8\\xbd\\xd8\\x79\\x0c\\x49\\x83\\x59\\x70\\x5e\\x77\\xf4\\xc3\\x8d\\x34\\xba\\xe5\\x84\\xa5\\x2e\\xc6\\x3c\\xd1\\x8a\\x6f\\xa6\\x43\\xee\\x18\\xc5\\x17\\x66\\x2a\\xe9\\x05\\xab\\xa7\\x55\\x17\\xca\\x80\\xde\\x15\\x45\\x74\\x7e\\xb3\\x9a\\xe0\\xab\\xdf\\xcf\\x45\\x2c\\xe3\\xe7\\x20\\x87\\x06\\x1c\\x85\\x9d\\x07\\xc8\\x09\\x6c\\x77\\xbf\\xf2\\xa2\\xec\\xaf\\xbb\\x6e\\xc0\\x95\\xe1\\xbb\\x99\\x3e\\x0e\\xc2\\x6b\\x18\\x97\\xe5\\xf0\\x50\\x3d\\x99\\x01\\x5a\\xb3\\xb1\\xd7\\xca\\x66\\xa1\\x75\\x69\\x1f\\x66\\x6d\\xc6\\x4c\\xde\\x6e\\xc6\\x08\\x1f\\x2d\\x3e\\x6e\\x4f\\x5f\\xaf\\xca\\x62\\x5e\\xb4\\xe5\\x36\\xba\\x5e\\xa0\\x01\\xd0\\x45\\xfd\\x26\\x01\\xc1\\x06\\x3d\\x32\\x9c\\x97\\x4e\\x82\\x40\\xf1\\x50\\xe8\\x7b\\x67\\x9a\\x61\\x0c\\x60\\x29\\xfb\\x99\\x26\\xbe\\xfe\\xee\\x1f\\x6a\\x7b\\xa4\\x39\\x36\\xab\\xec\\x22\\x8c\\x60\\xf0\\x91\\x87\\x6d\\x70\\x75\\x5a\\x19\\x9e\\xd9\\x80\\xa0\\xb5\\x78\\xfc\\x81\\x86\\x95\\x55\\xa7\\xa1\\x10\\xc6\\xb2\\x16\\xc7\\x8c\\x04\\xb4\\xdb\\x99\\x77\\x5a\\x65\\x1b\\x14\\x45\\xbe\\x23\\xb9\\x0f\\x0a\\x27\\x1b\\xed\\xf4\\x64\\x1c\\xab\\xd9\\x55\\x05\\xf8\\x00\\x4b\\x4b\\x47\\xaa\\x31\\x93\\xee\\xec\\xde\\x99\\x00\\x70\\x92\\x20\\x80\\xf0\\xd7\\x18\\xe0\\x6a\\x5e\\x16\\xab\\x77\\xa6\\x41\\xd4\\xe0\\x84\\xd8\\x3d\\xbc\\x03\\xdc\\xe4\\xae\\x36\\x5a\\x33\\xec\\x7c\\xf3\\x21\\x8d\\x6a\\x17\\xbc\\x1f\\x33\\x5c\\xd0\\x4f\\xd4\\xac\\xfb\\x82\\xd7\\xd6\\x32\\xab\\x2f\\x31\\xe6\\x8e\\xc0\\xcf\\xd1\\x6b\\xe6\\x70\\x5d\\xc1\\xff\\xab\\xd9\\x16\\xf4\\xc8\\x96\\xcc\\x4d\\x4d\\x72\\x58\\x95\\x1b\\x14\\xa5\\xc0\\xa7\\x1f\\xcb\\xa1\\x04\\x6c\\x87\\xf0\\x02\\x3e\\xbc\\xc6\\x76\\x47\\x6a\\x5d\\x75\\x4a\\xfc\\x8d\\x3e\\x51\\x19\\x5a\\x76\\x9f\\xf8\\x20\\xf5\\xf6\\xc6\\x5f\\x53\\xc0\\xf0\\xe0\\x7a\\x80\\x3f\\x7f\\x2c\\x3e\\x81\\xd0\\xc6\\x8f\\x45\\x20\\x21\\xcc\\xbd\\xe1\\x0a\\x8c\\x20\\xe5\\x8f\\xde\\x07\\x80\\x7c\\xc7\\xb8\\x78\\x94\\x61\\xf7\\xe1\\x3b\\x9d\\xcb\\xc8\\x41\\x7c\\x73\\x2c\\x87\\xc1\\x25\\xe0\\x41\\xde\\x37\\x92\\xa0\\xd0\\x48\\xed\\xc3\\xdf\\x7e\\x3c\\x31\\x0b\\x21\\x0b\\x91\\x44\\xb1\\x77\\xc7\\x3f\\x0a\\xa7\\xdb\\x1d\\xf2\\x16\\x50\\x40\\xa0\\x04\\xc5\\x00\\xe7\\x40\\x01\\xe5\\x94\\x91\\xfe\\x4c\\x78\\x9d\\xab\\xbb\\xa0\\x44\\x5a\\x13\\xd2\\xb4\\x52\\x66\\x93\\xb0\\x78\\xf7\\xaa\\x13\\x82\\x18\\x7e\\x98\\x10\\xfb\\xf7\\x46\\x8f\\x5f\\xd6\\x95\\x48\\x2a\\x2e\\x6c\\x8c\\x81\\xb6\\x48\\x44\\x31\\xaf\\xab\\x97\\xd5\\x5b\\x64\\x3b\\xe7\\x81\\xe1\\x11\\xf5\\x73\\x02\\xd8\\x76\\x20\\x42\\x2f\\x03\\xdd\\xda\\x9e\\x82\\xec\\x98\\x9d\\x92\\xe7\\x45\\x05\\xa8\\x7a\\x9f\\xbb\\xda\\x38\\x3b\\x5c\\x50\\x77\\x64\\xab\\x46\\x65\\xbd\\xe3\\x14\\x50\\xbe\\x0b\\xed\\xb2\\x77\\x72\\x69\\xa1\\xa6\\x32\\xa2\\x75\\x37\\x11\\x1e\\x0e\\x87\\xf6\\x44\\x88\\xd1\\x9d\\x09\\x4e\\xb2\\xd5\\xaa\\xc4\\x2b\\x2e\\xab\\x2f\\x40\\x82\\x70\\x86\\xae\\xe4\\xac\\xe3\\x79\\xef\\x6a\\x60\\xe7\\x62\\x28\\x5e\\x10\\xd6\\xc6\\x66\\x79\\xae\\x96\\xba\\x5d\\x18\\xd4\\x1a\\x13\\x10\\x2a\\xd0\\x9b\\x99\\xab\\xa2\\x6a\\xda\\xac\\x9a\\xeb\\x66\\x84\\x6b\\x42\\x3a\\xd2\\xa5\\x2a\\xaa\\x00\\xb9\\x22\\x8c\\x8f\\xb3\\xad\\xbd\\x5d\\x0d\\xee\\xb0\\x38\\xe8\\x41\\xdd\\xb3\\x3c\\xf6\\xc7\\xdb\\x17\\xc8\\x96\\xda\\xb1\\x44\\x3d\\x8d\\xf4\\x2c\\x12\\x34\\xe6\\x96\\xc9\\x27\\x03\\x33\\xf3\\xd7\\x77\\x9c\\x95\\x93\\x8b\\x28\\x8e\\xcb\\x4d\\xf5\\xde\\x7c\\x89\\x69\\x2e\\xff\\xc5\\xf9\\xee\\x24\\x88\\xaf\\x9b\\xad\\x24\\x09\\xa0\\x09\\x52\\xfc\\x0a\\x2d\\x38\\xe8\\x8d\\x54\\x9e\\xb5\\x99\\x6a\\xda\\x7a\\x3d\\x6f\\xd7\\x35\\x82\\x62\\x33\\xfc\\x18\\x31\\x2a\\x14\\x49\\x6c\\x23\\xce\\x35\\x52\\x81\\xce\\x2a\\x43\\x3c\\x47\\x7b\\x73\\x15\\x95\\x5a\\xd5\\x7a\\x4c\\x35\\x04\\x60\\xd9\\x44\\xbd\\xd2\\x15\\x24\\x75\\x29\\x5c\\xda\\x8e\\x6c\\x69\\xd6\\x95\\x4b\\x7b\\xd2\\x58\\x3a\\xd5\\xb9\\x32\\xb5\\x6a\\xd6\\xb3\\x16\\xa0\\x1f\\x73\\x7b\\xf7\\x11\\x16\\x64\\x75\\xa1\\x27\\x98\\xcb\\x0b\\x5b\\x00\\x79\\x19\\x2c\\x53\\x6c\\x72\\xb5\\xd7\\x67\\xb3\\xca\\x2a\\xb5\\x0c\\x72\\x0b\\x8f\\x94\\x2b\\x84\\x27\\x3f\\x03\\xb0\\x4d\\xea\\xb3\\xb6\\xeb\\x70\\x55\\xd8\\x9e\\x49\\x18\\x69\\xac\\xc4\\x85\\x17\\x87\\xaa\\xf5\\x85\\x7f\\x3c\\xa9\\xc1\\x4c\\x97\\x66\\x33\\x44\\xbc\\xb0\\x8b\\xa2\\x69\\xed\\xad\\x8d\\xc9\\x26\\xc7\\x42\\x09\\xd3\\x04\\xc0\\x0e\\x17\\x58\\x39\\x82\\x33\\x28\\x71\\x35\\x3c\\x93\\xe4\\x9c\\xd0\\x2c\\x76\\x11\\x3c\\x03\\x3d\\x6d\\x10\\xc7\\xdb\\x89\\xf8\\x46\\x96\\x04\\x84\\x86\\xa0\\x9c\\x87\\xd7\\x2f\\xfe\\xf4\\xb8\\xb8\\xf7\\x7c\\x9f\\xdc\\x3d\\x61\\xfb\\xec\\xce\\xd3\\x84\\xe9\\x20\\xb1\\x3c\\x26\\x9c\\x7e\\x18\\xa9\\x1c\\x59\\x39\\xa8\\xfc\\x9d\\xb9\\x8e\\xd0\\xcf\\x1b\\x07\\x23\\x03\\xc9\\x7d\\xfa\\x0a\\x3d\\xc2\\x1c\\x17\\xb1\\x70\\x9d\\x68\\x0d\\x17\\x88\\x1d\\x45\\x10\\xed\\x42\\x2a\\x6e\\x29\\x44\\x43\\xae\\x6e\\x42\\x55\\x0a\\xa9\\xa8\\x69\\x77\\x01\\x72\\xd3\\x3b\\x0d\\x66\\x9b\\xa7\\xa6\\x2c\\xb3\\x55\\xa3\\xf3\\xf7\\xab\\xac\\x6a\\x30\\xf7\\x07\\xe7\\x4a\\x7d\\x63\\x06\\x0c\\xc4\\x8e\\x59\\x39\\xe2\\x35\\x11\\xce\\x30\\xf6\\xa5\\x46\\x22\\x2a\\x1d\\x46\\x0f\\x70\\x64\\x57\\x73\\xda\\x51\\x03\\x87\\x03\\x43\\x48\\x93\\xbb\\x8e\\xec\\x79\\x95\\x8b\\xc1\\xb5\\x46\\x1d\\x78\\x62\\x7b\\x94\\xea\\x89\\x06\\x1a\\x0c\\x13\\x7d\\x43\\xc2\\xdc\\x52\\x1d\\x5d\\xf5\\xc1\\x94\\x5b\\x4e\\x94\\x38\\x33\\xf1\\xef\\xd1\\xcc\\x31\\x87\\x7a\\x77\\xee\\x44\\x63\\x7d\\x9b\\xf5\\x93\\xa5\\x21\\x73\\xa5\\xeb\\x32\\x43\\xcf\\xf3\\x78\\xdc\\x77\\xe8\\x82\\x9a\\xb2\\x12\\x99\\x6c\\x09\\x21\\x82\\x5a\\x4a\\x98\\xf0\\x74\\xdd\\x5a\\x91\\x1b\\x5d\\xbe\\xe7\\x74\\x6c\\xe5\\x72\\x8e\\xa4\\x7f\\xf7\\x7c\\xdd\\x0e\\x93\\x2b\\x15\\xe5\\xe9\\x98\\x34\\x65\\x31\\xd7\\xb6\\xf8\\xa4\\xa8\\x72\\x7d\\x3d\\xec\\x5b\\xdc\\xa9\\x1d\\x0a\\x02\\xa6\\xdf\\x6d\\x75\\xc3\\xcd\\x4a\\xec\\x66\\x87\\xf0\\xfa\\x96\\x98\\x9c\\x1c\\x13\\x4b\\x03\\xc2\\x78\\x72\\x71\\x90\\xb3\\xe1\\xff\\x8e\\xc3\\x75\\xf9\\xe6\\xf8\\x6b\\x56\\xe6\\x68\\x84\\x1d\\xf5\\x2f\\x0f\\x28\\x7c\\xb1\\x8c\\x5f\\x9e\\xaf\\x99\\x3e\\x4c\\xf2\\xe7\\x6c\\xc5\\xde\\x5a\\xcb\\x22\\xcf\\x4b\\x2d\\xe7\\x79\\xe6\\x72\\x35\\xdd\\x69\\xa2\\x54\\xeb\\x47\\xf3\\x4f\\xd3\\x8e\\xed\\xf0\\xfe\\x7d\\x6a\\xe4\\xeb\\x97\\xeb\\xcc\\xac\\xc2\\xf5\\x52\\x6a\\x32\\x37\\xd5\\x3c\\x6b\\x07\\xb3\\x75\\x51\\xe6\\x76\\x25\\x9e\\xd4\\x35\\xa9\\x5c\\xa8\\x02\\x2c\\xde\\x88\\xfa\\xc4\\xbf\\x86\\xdd\\xfa\\x69\\xe2\\xb5\\x35\\xb0\\xc3\\x9e\\x1d\\xfa\\xa7\\xa8\\x93\\x2f\\x22\\x7d\\x2d\\x73\\x4a\\xe8\\xeb\\x56\\xd7\\x55\\x56\\x92\\xbe\\x2d\\x27\\x96\\xae\\xaf\\xdb\\x40\\xcc\\xb4\\xd7\\x12\\x28\\xf5\\x61\\x22\\x8e\\xfb\\xba\\x4f\\x62\\x48\\xd2\\xdf\\xcc\\xf3\\x09\\x59\\x14\\xfe\\x6d\\x6f\\x4f\\xdf\\x50\\xdf\\x70\\xa4\\x01\\xde\\xbb\\x60\\xa3\\x74\\x00\\x98\\x51\\x2c\\x3c\\x65\\x24\\x2a\\x60\\xb6\\x34\\x75\\xb6\\x5d\\x69\\x0c\\xe0\\x9e\\x69\\x65\\x2a\\xf0\\xbf\\xde\\x6f\\xf5\\x75\\xbb\\x0f\\x89\\xc9\\xf6\\xd1\\x85\\x74\\xdf\\xbe\\xeb\\xca\\xac\\xb1\\xaf\\xba\\x7d\\xcc\\xb0\\xb6\\x1f\\x48\\x17\\x5e\\x3c\\x71\\x59\\xea\\x65\\x58\\xd4\\xae\\xbb\\x71\\x17\\x36\\x28\\x6e\\x81\\x78\\xcd\\xf6\\xef\\x82\\x25\\x5c\\x36\\x45\\xfa\\x25\\xe4\\x8f\\xbb\\x96\\xf5\\x2e\\x8b\\x2a\\xd2\\xd7\\xa5\\xed\\xa5\\xaa\\xcf\\x0c\\xda\\x49\\x5c\\x64\\x0b\\xfe\\xda\\x3d\\x49\\x1f\\xcf\\x8b\\x0a\\x4e\\xc8\\x4b\\x4b\\xd0\\x6e\\x15\\x87\\x9f\\x44\\xd7\\xf6\\x67\\xc8\\x6a\\xd7\\x83\\xb2\\x07\\x20\\x9f\\x75\\x4d\\xf9\\x58\\xa0\\x34\\x8b\\xa5\\x5f\\xbe\\x88\\x26\\xf8\\xe3\\x54\\x7d\\xfc\\xc4\\x8a\\x74\\x38\\x47\\x6f\\xcf\\x07\\x59\\x5d\\xf3\\xce\\x4d\\xa7\\x96\\xb7\\xa8\\xcf\\xb6\\xcd\\xc9\\x6a\\xdd\\x2c\\x06\\xf8\\xdd\\x61\\xdd\\x42\\xb8\\x08\\x43\\x37\\x85\\x38\\x62\\x42\\xd6\\xf8\\x1c\\x7a\\xd1\\xca\\xbb\\x25\\xfc\\x7a\\x16\\x8b\\x90\\xdd\\x8a\\x30\\xe4\\xee\\x67\\xca\\x65\\x30\\x55\\x47\\x81\\x5a\\x39\\xc9\\x04\\x4d\\x99\\xbf\\x19\\xa9\\x4a\\x6f\\xde\\x8c\\x54\\x5e\\xd4\\x5e\\xc9\\x0c\\x2b\\x60\\x45\\xba\\xce\\x46\\xd8\\x2a\\x90\\xaf\\xc6\\xb2\\x4c\\x1a\\x46\\x34\\x02\\x96\\x6e\\xbb\\x62\\xd1\\x97\\x2f\\xd0\\x99\\x80\\xd9\\x49\\x88\\xc7\\x1e\\x3c\\x12\\x63\\x85\\x60\\x2c\\x27\\x38\\x24\\x24\\x84\\x37\\x27\\xd0\\xcc\\x8d\\xdb\\xe8\\xaa\\x3b\\x08\\x4a\\xbf\\x96\\xd2\\x9a\\x41\\x4b\\xc2\\x93\\xe7\\xb3\\xaa\\x2c\\x2b\\xe2\\x9c\\x4c\\x81\\x88\\x5e\\xa9\\x7b\\x53\\x9c\\xb3\\xe0\\x6c\\x79\\x51\\xcb\\xf8\\x65\\x41\\x34\\x98\\xbe\\xdf\\x25\\xb8\\x82\\x88\\x33\\x3f\\x15\\xe1\\x16\\xa4\\x38\\x77\\xe7\\xa0\\x52\\x07\\xd4\\xb5\\x6d\\x00\\xbb\\x1f\\xaa\\x31\\x74\\xca\\xcd\\xdb\\x5f\\x0e\\x0e\\xd2\\x22\\x20\\xb4\\x52\\xc9\\x0a\\xd8\\x83\\xfd\\xd3\\x4e\\xcb\\x96\\x38\\xc5\\x65\\xa7\\xbf\\xc8\\x65\\x6b\\xb3\\x28\\x4a\\xad\\x06\\x49\\x09\\xda\\x16\\x1f\\x82\\xce\\x19\\xfe\\xe1\\xa7\\xee\\x66\\x09\\x8b\\xf0\\x50\\x1d\\x11\\x72\\x67\\x3c\\xe9\\xf4\\xac\\xfd\\x28\\x6a\\xf5\\x17\\x31\\x6b\\x35\\x96\\xed\\x1d\\x43\\xb4\\x3c\\xae\\xc4\\x9e\\x9b\\x3f\\xd5\\x8b\\xb2\\xc6\\xf5\\x13\\x07\\xbb\\x9e\\x81\\x67\\x27\\x1f\\x4c\\x4c\\x08\\x77\\xa5\\xfd\\x53\\x1a\\x50\\xf0\\x46\\x8a\\xb2\\x0c\\xe9\\xe5\\xaa\\xdd\\x62\\x49\\x0a\\x32\\x04\\x8d\\x4b\\x0d\\x3a\\x68\\x50\\xc4\\x98\\xf3\\x73\\xef\\x8c\\x69\\xe0\\xc1\\x9a\\xc8\\x37\\x85\\x26\\x49\\xa7\\x05\\xe7\\x57\\xe6\\x3f\\x9f\\x46\\x4e\\xae\\xef\\xd4\\xbe\\x11\\xbf\\x7c\\x51\\xe9\\x27\\x94\\xfd\\xa5\\xf7\\x0d\\xb3\\x97\\x90\\x61\\x12\\xf2\\x88\\x1b\\x6f\\xa7\\x3c\\x71\\xab\\x73\\x3c\\x5d\\x01\\x31\\x4a\\x05\\xad\\x2b\\x4a\\xcf\\xc7\\xce\\x9d\\x7d\\x5b\\xdf\\x9d\\xb1\\xa7\\xa4\\x9f\\x61\\x2c\\x36\\x74\\xba\\x7f\\xb8\\xbb\\xfb\\x84\\x28\\xd5\\xe5\\x78\\xf8\\xfe\\xa5\\xae\\xfa\\xd7\\xa2\\xbb\\x00\\x67\\x56\\x00\\x6a\\xcd\\xdd\\x7a\\xef\\x17\\x0e\\xc3\\x26\\x61\\x5b\\x76\\x4e\\xfc\\xcc\\xa8\\x47\\x77\\xee\\xd6\\xc9\\xac\\xdd\\x79\\xbb\\x7e\\x20\\x96\\x35\\xbe\\x9b\\x5a\\xe3\\x52\\xc6\\xae\\x2b\\xf4\\x3f\\xf4\\x7e\\x87\\x9c\\xca\\xd3\\x9f\\xbb\\x0d\\xa4\\xf8\\x44\\xd0\\xb0\\x95\\xbd\\x13\\xab\\x36\\x23\\xa0\\x50\\x38\\x61\\x98\\xc4\\x09\\xdc\\x84\\x06\\xa6\\x56\\x95\\xa9\\xe0\\x90\\xe9\\xaa\\x95\\xa0\\xbb\\x73\\xdb\\xd7\\xb3\\xa2\\x6e\\xb7\\xc1\\x8d\\x0a\\x70\\x4d\\xc9\\xab\\x08\\xae\\xb5\\x76\\x0b\\xb7\\xe1\\x9d\\xd3\\x11\\xba\\x17\\x84\\x10\\x4f\\xe8\\x72\\xf0\\x8a\\x45\\x27\\x40\\x90\\x21\\x07\\x32\\x3a\\x86\\x82\\x09\\x49\\x42\\x52\\xcc\\x00\\xbe\\x78\\x70\\x80\\x83\\x8a\\xb2\\x0d\\xc0\\x47\\x5a\\xd4\\x17\\x2f\\x7f\\x7e\\xf1\\xea\\xe5\\xcf\\x2f\\xce\\xd4\\x87\\xb7\\xbf\\xfc\\xef\\xe7\\xbf\\xec\\x45\\x5e\\xfa\\x02\\x1b\\xb1\\x2d\\x96\\x61\\x6a\\x76\\x30\\xbc\\x17\\x17\\x8b\\x12\\x22\\xe6\\x6a\\x53\\xb5\\x85\\xae\\xc9\\xed\\x21\\xa1\\x10\\xf9\\xec\\x53\\xad\\xbb\\x5a\\x10\\xb4\\x6c\\x1b\\x1e\\xa9\\x59\\x51\\xe5\\x03\\xf7\\x03\\xf6\\x0b\\x11\\x1f\\xb1\\xdd\\x3a\\x2a\\x13\\x82\\xb3\\x49\\x8b\\x34\\xe7\\x84\\x4a\\x8d\\xf2\\x51\\x42\\x10\\x4a\\x08\\x76\\x98\\x79\\xe5\\x00\\x5c\\xdf\\x2c\\xc9\\x1c\\x48\\x07\\xba\\x8d\\xa9\\x2f\\xcf\\x8a\\xa5\\x76\\xc9\\x31\\x21\\x6b\\xbf\\x9a\\xaa\\x0b\\xdd\\x52\\x0a\\x7f\\x8a\\x29\\x82\\xd3\\x95\\x1a\\x87\\x83\\x27\\x46\\xf1\\x1c\\xd2\\x09\\xa3\\xb8\\xb5\\x07\\x78\\x67\\x93\\xa2\\xb5\\x33\\xc4\\xc6\\x28\\xc1\\x8b\\x73\\x14\\x49\\x65\\xf9\\x1b\\x25\\xe4\\xbb\\x03\\xf5\\xc3\\xd1\\xd1\\x50\\xba\\x23\\xfb\\xfc\\xd0\\xb4\\x99\\xa2\\x83\\xc4\\xd2\\x08\\xc5\\x09\\x81\\x2e\\xd3\\x91\\x07\\xe7\\xdd\\x32\\x87\\x78\\xab\\x86\\x93\\x41\\x83\\xe7\\x4c\\x23\\x4a\\x80\\x64\\xfa\\xbe\\x45\\xd7\\xc2\\x32\\x72\\xc1\\x52\\x8f\\xe4\\x92\\x2e\\xb3\\xeb\\x17\\xbc\\x46\\xaf\\xf0\\xf7\\xc7\\x6a\\x6e\\x56\\x5b\\xa8\\x0e\\x33\\x5e\\x62\\x7c\\x16\\x8d\\x18\\xe8\\x69\\xa8\\x4e\\x3c\\xc0\\x2d\\xdb\\x45\\xa9\\x15\\x78\\x50\\xb8\\xbf\\xc8\\x01\\x94\\x1f\\x4b\\xd4\\x8a\\x07\\x0e\\xe5\\x05\\xf1\\x43\\xe6\\x54\\xf0\\xae\\x33\\x40\\x16\\x77\\x13\\x62\\x21\\x4b\\xcc\\x5c\\xf6\\xa7\\xf3\\xee\\x72\\x98\\x32\\x7f\\x5a\\x86\\xab\\x05\\x11\\x47\\xba\\x01\\x71\\x08\\x7f\\x93\\x2d\\xcc\\xf1\\x57\\x31\\x3c\\x2c\\x36\\xe4\\xbc\\xdc\\xb2\\x0d\\x8c\\x92\\xb3\\x8d\\xf0\\xd0\\x1c\\xef\\xc6\\x8e\\x7b\\x6b\\x49\\x99\\x11\\x78\\x57\\x43\\x0f\\xd8\\xa9\\xba\\xe7\\x37\\xf9\\xcb\\x17\\xbf\\xe3\\x22\\x59\\xa4\\x98\\x3f\\x7f\\x15\\xfe\\xac\\x34\\xe5\\x7b\\x6e\\x6c\\xc0\\xc4\\xe8\\xeb\\x97\\x2f\\xea\\x1e\\x7d\\xc6\\xc6\\x9f\\x96\\xcd\\x64\\x76\\x01\\x23\\xf3\\x55\\xdc\\x17\\x5f\\xc6\\xee\\x49\\x5c\\xca\\x7d\\xe3\\xdd\\x8c\\x59\\xf1\\x3d\\x37\\xad\\xfb\\xf7\\xd1\\xad\\x3c\\x9a\\x0d\\x5a\\xb7\\xd5\\x67\\x39\\x7f\\x57\\xe6\\x63\\xf1\\x29\\x9a\\xad\\xfd\\x22\\xf3\\xba\\x72\\x2d\\x91\\x16\\x06\\x4e\\x35\\xbe\\xe5\\xe4\\x41\\x1b\\xc6\\xc4\\x93\\xb5\\xfa\\xc9\\x79\\xab\\x01\\xa8\\x9c\\x29\\x2e\\xbb\\xd2\\x2e\\x61\\x3f\\x7f\\xac\\xf4\\x35\\x65\\x58\\x4e\\x09\\xea\\xfc\\x6e\\x0d\\x0e\\xd9\\xc3\\xe9\\xee\\x53\\x26\\xb3\\xce\\xae\\x6a\\x33\\xd7\\x4d\\x13\\x1c\\x95\\x09\\x1e\\x13\\x1a\\xc1\\x5d\\x46\\x0e\\xac\\xe4\\x7f\\xaa\\x1f\\x50\\x88\\x7c\\x1c\\xcd\\x28\\x3c\\xb0\\x7d\\x13\\x73\\xfc\\xc9\\x33\\xe0\\x47\\x32\\xb9\\x58\\x17\\xbf\\x37\\xe2\\xce\\x80\\x3a\\x33\\x74\\x9a\\x27\\x99\\x4f\\x52\\x79\\x68\\xc0\\xf4\\x0d\\x11\\x4e\\x85\\x8a\\x59\\xe6\\x23\\x4a\\x78\\x0f\\xcf\\xe8\\xb7\\x51\\x50\\xd9\\x05\\x2d\\x4a\\x7a\\xf0\\x9e\\x09\\x81\\xed\\xbc\\x13\\x06\\x9a\\x92\\x25\\x12\\x0d\\x45\\x01\\x23\\x5d\\xf5\\x90\\xac\\x83\\x8e\\x18\\xa0\\x71\\x62\\xcc\\x42\\xa7\\x60\\x78\\xf6\\xf2\\xfd\\xbb\\x57\\x4f\\x7e\\x57\\xcf\\x7e\\x79\\xf2\\xe1\\xe5\\x9b\\x9f\\x31\\xc2\\x2f\\xf0\\xfb\\x96\\x30\\x97\\x00\\xae\\x4b\\x0e\\xcd\\x84\\xaa\\xbb\\xfb\\xed\\xe1\\xb0\\x11\\x5d\\x62\\x75\\x9f\\x09\\x1d\\x3d\\x24\\x30\\xeb\\x42\\x63\\x96\\x1a\\x81\\xeb\\xc8\\xbc\\xb7\\xd1\\xdf\\x96\\x25\\x3a\\x16\\x95\\x99\\xa5\\x35\\x80\\x41\\xcc\\x21\\x6c\\x72\\x93\\x61\\x46\\x06\\x1f\\x5d\\x87\\xe1\\x28\\xf6\\xc3\\xd0\\x77\\x88\\x98\\xd6\\xd3\\x9e\\xe4\\xfd\\xfc\\x24\\x75\\xf9\\xfb\\xb9\\x22\\x5a\\xcd\\x5f\\x36\\x2f\\xd8\\x93\\xe6\\x5e\\xda\\x3d\\x84\\xf1\\x5e\\xa1\\x12\\xfd\\xe4\\x00\\x07\\xe2\\x2a\\x41\\xa2\\xfc\\xb0\\x4e\\x9c\\xcb\\x35\\x81\\xa1\\xca\\x35\\x4c\\xc9\\x6e\\x76\\x51\\x25\\xe7\\xa9\\xcb\\x25\\x71\\x69\\xa6\\xb8\\x44\\x1e\\xa7\\x69\\xd9\\xa0\\xbc\\xf2\\xac\\x58\\xea\\xaa\\x81\\xe0\\x1c\\x51\\x49\\x33\\x36\\xcd\\xc7\\x4f\\x80\\xd5\\x12\\x90\\x81\\xc4\\x3e\\x01\\x57\\x94\\x00\\xc4\\x44\\x2f\\x8b\\xb6\\xd5\\xb5\\x54\\x48\\x82\\x9b\\x51\\xd6\\x50\\x84\\x5f\\x54\\x82\\x65\\x44\\xd1\\x2f\\xb2\\xcc\\xc0\\xdc\\x7d\\x73\\xda\\x3b\\x06\\x74\\x61\\x49\\x00\\xd9\\x90\\xa7\\xeb\\xa2\\x68\\xc0\\x86\\x61\\xff\\x71\\xba\\xd7\\x23\\xa4\\xcb\\xde\\x3b\\xe7\\x8a\\x5d\\x6e\\xc8\\x1a\\x8f\\x01\\x70\\xd8\\x2e\\xd5\\xa1\\x60\\xa3\\x00\\xbd\\xa5\\x27\\x58\\x65\\xf7\\x21\\x89\\x52\\xba\\xfb\\xf8\\x64\\xdb\\xd0\\x0a\\xbd\\x45\\x3b\\xce\\x46\\x82\\x0a\\xe3\\x17\\x78\\x88\\x72\\x29\\xf3\\xc1\\x26\\x2a\\xa7\\x32\\xb8\\x87\\xb4\\xe7\\x1b\\x4e\\xc0\\x65\\x78\\x98\\x85\\xc8\\x55\\xdd\\xe3\\x2c\\xa4\\x3c\\xad\\xc1\\x97\\xce\\x81\\x6c\\x8c\\x7b\\x46\\x7e\\x4b\\x2b\\x08\\xd5\\x01\\xa8\\x21\\x0e\\x2c\\xe4\\xd6\\x51\\x74\\x16\\x57\\x60\\xfc\\x85\\x58\\xf0\\xe4\\xe0\\xfb\\xbe\\xca\\x56\\xcd\\xc2\\xb4\\x31\\xc6\\xc2\\x22\\x6b\\xd0\\xdf\\x36\\xa9\\x95\\x02\\x45\\x31\\xf8\\x52\\xab\\x94\\x53\\xf5\\x3d\\xfa\\x0d\\x32\\xf2\\x1b\\x80\\x81\\x0b\\xe2\\xd6\\xed\\x45\\xf2\\xac\\xb8\\x1a\\x51\\xd5\\xde\\x2e\\x7c\\x12\\x2c\\xd7\\xc7\\x09\\xd5\\x61\\x5d\\x23\\xe5\\xdf\\xbd\\xd0\\xad\\x77\\xdf\\x96\\xd9\\x71\\x01\\x8d\\x22\\x51\\x48\\xc0\\x41\\x34\\xba\\x9c\\x64\\xd5\\x7c\\x61\\x6a\\xc8\\xa2\\x7b\\xff\\xbe\\xad\\x05\\xba\\xfc\\x0a\\xe3\\x8c\\x76\\xcd\\x20\\xac\\x3c\\x0c\\x0c\\xd1\\xeb\\xb2\\x95\\x0d\\x4f\\xa3\\xc2\\xa9\\x82\\x4e\\x11\\xed\\x8b\\xe2\\xa7\\xb0\\x30\\x38\\x5a\\x8b\\x46\\xdd\\xdf\\x89\\x62\\x41\\x93\\xe2\\x8b\\x30\\x58\\x25\\x52\\x06\\x49\\x5d\\xbc\\xbd\\xc4\\xfc\\xc2\\x35\\x44\\x31\\x02\\xae\\x89\\x3f\\xc1\\x86\\xf3\\x1f\\x13\\xb7\\x67\\x80\\x78\\xd4\\xfd\\x1a\\xfa\\xe3\\x47\\x2f\\xd6\\x6e\\x79\\x46\\x7e\\x60\\x60\\x16\\x57\\x20\\xd8\\x3a\\xb7\\x59\\xce\\xbb\\x67\\x66\\x72\\xca\\x12\\x17\\x15\\x1f\\xde\\xa9\\xbc\\x5b\\xda\\xe1\\x1d\\xe9\\x6a\\xe4\\xf2\\x9c\\xb8\\x26\\xe7\\xb5\\xce\\x5a\\x8d\\xf9\\x40\\x28\\x05\\x28\\x38\\x02\\x35\\xba\\x7d\\x5e\\xe5\\xa9\\xa9\\x74\\x06\\x8c\\x7b\\x26\\x2b\\xcf\\xc9\\x4c\\x30\\x80\\x48\\x08\\xc2\\x60\\xd2\\x25\\xe1\\x93\\x3d\\x29\\x4b\\xe8\\xaf\\x19\\xf8\\x5f\\xb2\\x3c\\xc7\\x31\\x60\\x96\\x15\\xf7\\x1d\\x49\\x7d\\xd0\\x9d\\x72\\xbc\\x0c\\x7e\\x10\\x4e\\xc2\\x32\\xe4\\x85\\x45\\x2e\\xde\\x2e\\x3e\\x99\\xa0\\xff\\x40\\x74\\xe6\\x43\\xa3\\x7e\\xcc\\x8a\\xb2\\x51\\x66\\x0d\\x0a\\xe2\\x01\\xee\\x36\\x00\\x8a\\xc0\\x0c\\x5c\\x98\\x78\\xad\\x29\\xc5\\x0c\\xa4\\x0a\\xa6\\x08\\x71\\x53\\x69\\x70\\xd1\\x82\\x4b\\x3f\\x27\\x15\\x18\\x54\\xec\\x00\\x3c\\xc5\\xa1\\x72\\x56\\xb0\\x63\\xef\\xfc\\xdd\\xba\\xe4\\x54\\x14\\x00\\xb9\\x95\\x86\\x92\\x93\\xc8\\x50\\x17\\x99\\x80\\x83\\xc4\\xee\\xde\\x5b\\xda\\x4e\\x1d\\x34\\x76\\xc5\\x79\\x27\\x2b\\x09\\x24\\xfe\\xc1\\xc0\\x7c\\x55\\xeb\\x2a\\xd7\\x35\\x61\\x54\\xf0\\x12\\x90\\xbc\\xcb\\x6e\\xe5\\xf7\\xd8\\xd3\\x15\\xe4\\x20\\xe7\\xb5\\x44\\x5f\\x39\\x5d\\x7b\\x4a\\xd3\\xcd\\x9e\\x29\\x51\\xd1\\xae\\xea\\xfb\\xdf\\xea\\x0d\\xd5\\x35\\x6a\\xba\\xb6\\xf9\\x07\\x9e\\x36\\x6a\\x0e\\xc3\\x0a\\x78\\x4c\\x3b\\x4a\\x4c\\x80\\xbd\\x0d\\xcd\\x5e\\x9c\\x41\\xdd\\xa5\\x83\\xde\\xce\\x28\\x1c\\xd3\\x8f\\xc7\\xc7\\x7d\\xf5\\x6e\\x21\\xad\\xce\\x0e\\x89\\x92\\x77\\xf5\\xa9\\x59\\xae\\xd6\\x90\\xab\\xb3\\x59\\x17\\x2d\\x00\\x43\\xda\\xe7\\x9d\\x7b\\x0f\\xa0\\x4d\\xfe\\x3e\\x69\\x96\\xbd\\x16\\x2e\\xa5\\xee\\xda\\x0b\\x12\\x1a\\xb9\\xe7\\x58\\x6a\\x57\\xc7\\xf2\\x71\\xc8\\x9d\\x71\\x1a\\x46\\xd7\\xb6\\x4f\\xc3\\x27\\xb3\\x81\\x40\\xe2\\xec\\xee\\xfe\\x1f\\xf4\\x37\\x39\\xdc\\xeb\\xb1\\x53\\xa0\\xa1\\xc0\\x6e\\x0f\\x8d\\x2a\\x51\\xe2\\xc1\\x91\\x70\\x03\\x0c\\xde\\x98\\x30\\xc6\\x84\\xd1\\xc2\\x67\\xc0\\xef\\xea\\xe7\\xa5\\xac\\x48\\x9f\\xc7\\xe8\\xca\\x87\\xfd\\x24\\xa6\\x1a\\x93\\x9e\\x03\\xf6\\x8a\\x0d\\xad\\xee\\x91\\x8a\\x63\\xed\\x77\\x92\\x43\\xa7\\x56\\x13\\x94\\x89\\xdd\\xd5\\x86\\xd2\\x11\\x24\\x2f\\xce\\xcf\\x35\\xa1\\x4f\\x42\\xeb\\xf7\\x12\\xa7\\x12\\x2d\\x50\\xf7\\x12\\x96\\xa9\\x40\\xc2\\x2b\\xb3\\xa6\\xfd\\x50\\x67\\x2b\\x1f\\x36\\x46\\x7b\\x19\\x3e\\xd2\\xc4\\x81\\xe4\\x1a\\x0e\\x3a\\x30\\xac\\xc0\\x72\\x70\\x9f\\xf5\\x6d\\x2f\\x32\\x64\\x38\\x71\\x02\\x65\\xe3\\x27\\xa8\\xe5\\xb8\\xd0\\xac\\x8f\\xc4\\x15\\xe8\\xec\\xea\\x90\\xc2\\x85\\x5c\\x64\\xd0\\x42\\xab\\x25\\x18\\x15\\xf3\\xe2\\x0a\\xfc\\x4a\\xca\\xe2\\xa2\\xf2\\x90\\x7e\\x9c\\x42\\x2f\\x8a\\x28\\x0a\\x4d\\xf7\\xd0\\x00\\x89\\xcb\\x98\\xb1\\x35\\x31\\x52\\x12\\x93\\xdd\\x61\\x70\\x0f\\xff\\x2e\\x4f\\xf1\\x6f\\x15\\xde\\x30\\xf0\\xe2\\xe3\\x1a\\x53\\x75\\x04\\x81\\xbd\\x11\\xfb\\xbd\\x2b\\x13\\xfb\\xbf\\xc6\\x4e\\xfb\\xb9\\x20\\xda\\x72\\xd5\\xac\\xb8\\xf0\\x00\\x36\\x1b\\x88\\xcc\\xe1\\xdc\\x72\\xf3\\xd2\\x34\\x60\\xc4\\x25\\x90\\xdf\\x7c\\x5d\\x93\\xeb\\xbc\\x0c\\x95\\x1e\\x51\\x40\\x36\\x39\\x27\\x03\\x72\\xcb\\x7a\\x15\\xe6\\xa4\\x6b\\x94\\x7d\\x21\\x9a\\xa6\\x55\\xb3\\xda\\x6c\\x1a\\x5d\\x03\\x2a\\x2e\\x09\\x4b\\xfc\\xcc\\x40\\x31\\xb4\\xfb\\xf4\\x70\\x2e\\xc1\\xb4\\xd6\\x8f\\xd4\\xf7\\x43\\x61\\x85\\x23\\x71\\xbb\\x8b\\x41\\xe7\\x71\\x66\\x57\\x59\\x3b\\x5f\\xc8\\x90\\xbc\\xde\\x15\\x1c\\x49\\x06\\xff\\x4f\\xf7\\xbc\\x1f\\x98\\xf8\\xc2\\xad\\x8f\\x8d\\xd1\\x08\\x59\\x52\\x6b\\x82\\x6f\\xf2\\xa8\\x3c\\x99\\x42\\x67\\x28\\xa4\\xfb\\x4c\\x71\\x00\\x25\\xef\\x06\\xac\\xf7\\x85\\x21\\x6d\\x12\\x59\\xcd\\x4c\\x4d\\x13\\x40\\x84\\xe2\\xc6\\xa8\\x5a\\x8f\\x31\\xc4\\x15\\x23\\xdc\\xbb\\x22\\xbb\\xdf\\x80\\xa1\\x8b\\xdb\\xc3\\xe8\\x1c\\x0f\\xee\\x63\\x05\\x0e\\xc4\\x11\\x22\\xb8\\x37\\x80\\xf4\\x3d\\xd7\\x40\\x0f\\xee\\x5c\\xe2\\x79\\xc4\\x36\\x30\\xba\\xde\\xd6\\x43\\x5e\\x80\\x7d\\x3b\\x74\\xdc\\x5a\\x57\\x8e\\xd6\\xb1\\xe1\\x67\\xc5\\xd5\\xb0\\xbf\\x8c\\x1b\\x0a\\x15\\xe3\\xef\\x9c\\x89\\x28\\x7a\\x92\\x27\\x5f\\xde\\x22\\x03\\xc8\\x91\\x0f\\x80\\xa2\\xd3\\x1c\\x6b\\x12\\x22\\x5e\\x9a\\x66\\xa5\\xc9\\x1a\\xfc\\x20\\x4f\\xb3\\xd2\\xae\\x2e\\xf7\\xfb\\xa3\\x23\\x77\\x23\\xec\\xf2\\x06\\x07\\x45\\xf2\\x5e\\xa8\\xdf\\x95\\x8f\\xb1\\x74\\xf0\\x69\\x2c\\xdb\\x0a\\x75\\xa4\\xbb\\xe8\\x49\\x2b\\x29\\x75\\x45\\x28\\x80\\xa0\\x82\\xe0\\xf4\\xd4\\xfd\\x49\\xc2\\xb8\\xb7\\xa8\\xdd\\xc3\\x5f\\xe0\\x31\\x9f\\x86\\x34\\xb0\\xbf\\x51\\x4f\\x1d\\x2d\\x5e\\x57\\x8d\\xe7\\xdf\\xc8\\xe0\\x03\\x56\\xac\\x58\\xa6\\x77\\xe3\\xb6\\xd7\\x01\\x41\\xba\\x02\\xb9\\x65\\x3e\\x7f\\x9f\\x37\\x0c\\xb8\\xd2\\xe0\\x37\\x8e\\xff\\x86\\x5b\\x80\\xa3\\x3e\\x85\\x1d\\x40\\xac\\xc8\\xe7\\x30\\x4d\\xe2\\x1d\\x53\\x57\\x79\\xe1\\x46\\x26\\xe9\\x96\\xdd\\x0e\\x6f\\x9c\\x25\\xc1\\x05\\xa8\\xe4\\xf8\\xfe\\xc1\\xc6\\x19\\xbc\\x8d\\x94\\x1a\\x64\\xe8\\x07\\x10\\x2d\\x7c\\x05\\x54\\xa6\\xf5\\x0d\\xe0\\xfc\\xcb\\x2d\\x7a\\xde\\x30\\xe2\\x93\\xeb\\x50\\xfd\\x6f\\xad\\x57\\xaa\\x34\\x06\\x96\\x7f\\x5d\\xb5\\x45\\xa9\\x8a\\x16\\xb2\\xad\\x4f\\x92\\xcf\\x81\\x58\\x55\\x2c\\x5f\\x3d\\x29\\x6d\\x31\\xaf\\x72\\xcf\\xa3\\x22\\xe5\\x8f\\xd7\\xf7\\xae\\xe8\\xb1\\xa1\\xe3\\xce\\xcc\\x6a\\x9d\\x5d\\x32\\x8a\\xa3\\x27\\xb9\\x5b\\x1f\\x72\\xc3\\xa8\\xee\\x0e\\x60\\x12\\xf7\\x68\\xbf\\x1b\\x30\\x89\\x6f\\xcd\\x33\\xd0\\xe8\\x7b\\x18\\x8d\\x2f\\x82\\xe8\\xe9\\x49\\x9d\\x8a\\xb6\\x8f\\x4b\\x05\\x42\\x44\\x04\\x67\\x40\\xbf\\xc9\\xa8\\x48\\xfc\\xb4\\xdf\\x83\\x1b\\xe9\\xf6\\x20\\x44\\x86\\xae\\xb5\\x5d\\x03\\xbc\\x95\\x58\\xc8\\xec\\xda\\xd4\\xfb\\xeb\\x9c\\x19\\x3e\\xab\\x89\\x11\\x31\\xb5\\xa0\\x5d\\x86\\xc2\\x35\\x13\\x63\\x4a\\x98\\xf1\\x09\\x7a\\x6f\\xc7\\x40\\x93\\x14\\x76\\xda\\x3f\\xce\\x94\\x33\\x68\\x47\\xe9\\xd9\\x97\\x90\\xd3\\xd1\\xbd\\xe3\\xa0\\x0e\\x3d\\x28\\x0d\\x14\\x24\\x0f\\x8a\\x3f\\x24\\xbb\\xa9\\xf5\\x4e\\x54\\xba\\x93\\xbf\\xff\\xff\\x9b\\x8e\\x29\\xea\\x56\\xe8\\x86\\x5c\\x0e\\x57\\xe2\\xe5\\x2c\\x3c\\x01\\x0c\\x80\\x0b\\xd1\\x03\\xc9\\x22\\x74\\x3f\\x02\\xf9\\xa0\\xa8\\x2e\\x6c\\x23\\x95\\xc9\\x35\\xc6\\x97\\xa3\\x7f\\x94\\x8b\\x2e\\xaf\\x8c\\x2a\\x4d\\x75\\xa1\\x6b\\xcb\\x49\\xb1\\x1e\\x48\\x30\\xb5\\xf6\\x00\\x79\\xa6\\xd2\\x8d\\x43\\x7b\\xc3\\x4a\\x2d\\x29\\x98\\xb6\\x9c\\x8d\\x39\\x40\\xd4\\x33\\x41\\x17\\xe8\\x60\\x05\\xa1\\x82\\x76\\x8a\\xe2\\x1a\\x8e\\x65\\x4d\\x5c\\x04\\xba\\xc7\\x7f\\x22\\x67\\xbc\\x65\\x73\\x9b\\xba\\xa9\\x0c\\x2e\\xff\\xe8\\x72\\xa5\\x1f\\x84\\x47\\x4e\\x56\\x54\\x60\\xaa\\xed\\x28\\xa1\\x29\\x23\\x38\\x17\\x11\\xe9\\x87\\xf6\\x64\\xc2\\x90\\x7a\\x19\\xa0\\x07\\x33\\xdc\\xa9\\x25\\x73\\x93\\x6b\\x30\\x59\\xbf\\x2f\\x66\\x25\\x46\\xe4\\x23\\xde\\xa6\\xa9\\x2f\\x1b\\x95\\x41\\x96\\x47\\x95\\xa9\\x76\\x51\\x9b\\xcd\\x98\\x9e\\x64\\x94\\xa3\\xeb\\xed\\x7b\\xf5\\x9b\\xfa\\xa0\\x67\\x97\\x45\\xeb\\xd8\\xf7\\x06\\xfe\\x84\\x34\\x46\\x98\\x13\\x46\\x9c\\x4d\\x7a\\xd8\\x7d\\x58\\x68\\x5d\\x9e\\x65\\xb5\\x15\\x7e\\xa7\\x38\\x00\\x6f\\xf1\\x45\\x1c\\xdf\\x7e\\x59\\x1f\\x1d\\x41\\xc2\\xe2\\x3e\\x97\\x43\\x90\\xa1\\x01\\x27\\x7c\\x23\\x55\\x73\\x76\\x9e\\xf2\\x79\\x9e\\x70\\xf1\\xa3\\xad\\x51\\xdd\\x77\\x3a\\x4a\\xbe\\xaf\\x0c\\x05\\x5d\\xc9\\x04\\x29\\x81\\xf3\\xde\\x48\\x35\\xdb\\x6a\\x0e\\xca\\xbb\\x75\\xad\\x06\\x2d\\x21\\x16\\x02\\x39\\x63\\x1b\\x45\\x15\\x6f\\xe4\\xd0\\x8b\\xd9\\x30\\xa6\\xac\\xb1\\x8f\\xb5\\x0b\\x80\\x93\\xf8\\x37\\xba\\xe1\\x45\\x5e\\x78\\x5c\\x4b\\x44\\x55\\xed\\xf0\\xc9\\x8b\\xd6\\x1a\\x2e\\x0f\\xa6\\x3b\\xf2\\xab\\x7a\\x63\\x5a\\x12\\x6b\\xb6\\xce\\x6e\\x01\\xb4\\x86\\xf6\\x0a\\xf0\\xd6\\x04\\x9d\\x09\\x2e\\x9b\\x73\\xcc\\xf8\\xd5\\x2f\\x3c\\x1d\\x1f\\xe1\\x53\\x81\\x84\\x9d\\x42\\xb7\\x5e\\xd7\\xa1\\xef\\x08\\x60\\xaf\\x90\\x36\\xd5\\x43\\x94\\x3a\\xd7\\x6d\\xbb\\x1d\\xf7\\xa6\\xe1\\x84\\xc0\\xc1\\x05\\xce\\x50\\xbd\\xb4\\x05\\x86\\x81\\xf3\\x90\\x3c\\xdc\\xe4\\xea\\xc4\\x87\\xd6\\x89\\x3c\\xe2\\xe8\\x0b\\x7c\\x16\\x27\\xe7\\x74\\x0b\\x3d\\xa4\\x86\\x38\\xc2\\x04\\xc6\\xe2\\x9b\\x8e\\x1c\\x60\\x02\\x77\\x48\\x27\\x3e\\x87\\x81\\x17\\x71\\xb9\\x91\\x0b\\xbe\\x19\\xaa\\x47\\x14\\x88\\x11\\x4d\\x85\\x35\\x05\\xe1\\x30\\xed\\xde\\xfc\\x64\\x6a\\xbc\\xd7\\x9b\\xdb\\xb7\\xe7\\xa6\\x23\\x2e\\x62\\x07\\x72\\xa0\\xd1\\x93\\x2f\\x31\\x63\\x2f\\x14\\x26\\x7e\\x9c\\xd8\\xf7\\x55\\x95\\xe3\\x91\\x8e\\xcc\\x2a\\x67\\xfa\\x1a\\x48\\x71\\xe0\\x8b\\xff\\x64\\xec\\xb3\\x8b\\xb9\\x29\\x0d\\x7a\\x38\\x8c\\x07\\x8c\\x5b\\x1e\\x92\\x76\\xcc\\x04\\xb1\\xac\\x0f\\xbd\\xe2\\xc2\\xa4\\xb1\\x15\\x31\\x01\\x40\\x37\\x5d\\x3a\\xea\\x0a\\x20\\x98\\x09\\xe0\\xfd\\x2a\\x9b\\xeb\\xc0\\x7a\\xbe\\xe9\\xe6\\xce\\x48\\x27\\xe1\\xed\\x03\\xf8\\x02\\x6d\\x2d\\xe1\\xa3\\x6d\\xa4\\x89\\x39\\xca\\x02\\x9e\\xb8\\xd5\\x83\\xfc\\x17\\xfd\\x00\\x62\\x9d\\xa4\\x8e\\x2e\\x8f\\xad\\xb7\\x46\\x8b\\xda\\x09\\x8b\\x3a\\xaa\\xe9\\xee\\x56\\xbd\\xe7\\xe1\\x3f\\x48\\xd5\\x4e\\x65\\x13\\x89\\x21\\xe6\\x86\\x62\\x3d\\x20\\xbc\\x0d\\x58\\x51\\x2a\\x1f\\x77\\x90\\xab\\x1b\\xd7\\x95\\xb1\\x8c\\x00\\x65\\x4f\\x26\\x19\\xc9\\xb5\\x03\\x18\\x6c\\x17\\xba\\xa0\\x7d\\xec\\x18\\xa5\\x70\\xd7\\x43\\x7f\\x09\\x9a\\x60\\x72\\xcf\\x47\\x80\\x33\\x14\\xc9\\x05\\xf4\\x5b\\x57\\x87\\x42\\x3f\\xb0\\xca\\xbf\\x90\\xce\\xdb\\x78\\x59\\x40\\x6b\\x91\\x5f\\xa0\\xbb\\x2d\\xb0\\x3a\\x3a\\x20\\x4e\\xb1\\x28\\xdf\\x18\\xf0\\x33\\x98\\x6b\\x79\\xb8\\xc1\\x61\\xec\\xe4\\xd9\\x95\\xe9\\x73\\x69\\x55\\xf7\\xd5\\x81\\xec\\x61\\xe8\\x4d\\xef\\x41\\xbf\\xd3\\xa0\\xae\\x3d\\x69\\xe8\\x1c\\xdf\\xec\\x7b\\x4e\\x12\\x99\\xe0\\x29\\xc1\\xf2\\x14\\x46\\x48\\x45\\xec\\x3f\\xa3\\x7c\\x17\\xb1\\xe5\\xfe\\xcd\\x7a\\xe9\\x52\\xf1\\x1c\\x07\\x8e\\x14\\x6c\\x0f\\x0f\\x49\\xcf\\x0b\\x21\\x85\\x7a\\xac\\xf6\\x21\\x8d\\x1d\\xa7\\x91\\x4b\\x9e\\x69\\xa2\\xb0\\xd7\\x90\\xb0\\x26\\xcc\\xf9\\xde\\x28\\xda\\x4c\\x67\\x7a\\x96\\x32\\x04\\xc4\\x4c\\xf6\\xac\\x82\\x87\\xd1\\x96\\x57\\x10\\xb6\\x06\\x59\\xd5\\xea\\xb5\\x0e\\x33\\xc7\\x13\\xcd\\xfd\\x64\\x6a\\xa1\\x66\\x1a\\x50\\xff\\x9e\\x0c\\xcf\\x41\\xbc\\x9b\\x2a\\xbe\\x49\\x22\\x6a\\x1b\\xf5\\xef\\x0b\\xe3\\x12\\x60\\x03\\x53\\x35\\x3e\\x46\\xec\\xb7\\x8e\\x14\\xeb\\x41\\x2f\\x83\\xa6\\x01\\xca\\x29\\xf8\\xc2\\x31\\x1d\\x1f\\xfb\\xfa\\xfc\\x14\\x47\\xc7\\x43\\xdf\\x8f\\xa8\\xeb\\x7b\\xff\\x52\\xdf\\x14\\xd8\\x31\\x4c\\x15\\x9f\\x34\\x2b\\x8c\\x75\\xb1\\xfd\\x51\\xe0\\xb3\\xcb\\x7f\\x82\\x00\\x69\\x99\\x7d\\x51\\x36\\x20\\x9f\\xf9\\xaf\\xef\\x8a\\x6b\\x5d\\x36\\xef\\x74\\xfd\\xb7\\xaa\\x68\\x49\\xc5\\x77\\x8a\\xf8\\xde\\x25\\xe4\\xd0\\xcb\\x58\\x5f\\x3e\\x46\\x60\\x7e\\x9d\\xa3\\xfa\\xd0\\xca\\x8e\\x98\\xed\\xd6\\x54\\x4e\\xa5\\x6e\\xdb\\xb4\\x8f\\x26\\xe0\\x3d\\x97\\x95\\xd9\\xd8\\x27\\xcb\\x44\\x9d\\x01\\x6c\\x69\\x1e\\xe4\\x5d\\x98\\xd9\\x87\\xd7\\x7c\\x5d\\xdb\\x87\\xec\\x78\\x0c\\x74\\x43\\xaa\\x27\\xe4\\x5e\\x4b\\xdb\\xc4\\x4c\\x83\\x76\\xb7\\x36\\xf6\\x7f\\x01\\x48\\xff\\x0f\\x8a\\xe5\\xcd\\x54\\x03\\x4e\\xa4\\xea\\xbc\\x2c\\xe6\\x97\\x1a\\x32\\x36\\x43\\x12\\x26\\x50\\x06\\xc2\\xd4\\x20\\x21\\x04\\x3e\\x06\\x06\\x05\\x67\\xd7\\x2b\\xad\\x4c\\xaf\\x74\\x65\\xd6\\x17\\x8b\\xe1\\x64\\x0f\\x13\\x38\\xdb\\x8b\\x31\\xb9\\x1a\\xe3\\xc9\\x0f\\xdf\\xa9\\x9b\\x3d\\xb7\\x9b\\x17\\x7a\\x7e\\x69\\x7a\\x4b\\x1f\\xff\\x20\\xcb\\xce\\x17\\xb5\\x59\\xee\\x6a\\xfa\\x3f\\x64\\xe9\\x26\\x3b\\xcf\\xea\\xa2\\xbf\\xf4\\xf1\\xa1\\x1d\\x88\\x3f\\x3e\\x50\\x0a\\x12\\xda\\x3d\\xd3\\x65\\x9b\\x0d\\xa4\\xef\\xc0\\xb5\\x9a\\x2a\\x8d\\xa8\\x78\\xf0\\xe3\\x6f\\x23\\x95\\x6f\\xa3\\x6f\\xbf\\xb3\\xf6\\xf9\\xda\\x99\\x75\\xee\\xdf\\x57\\x7a\\x92\\xeb\\x36\\x2b\\xe8\\xdf\\x9c\\x5f\\x44\\x4f\\x5e\\xbc\\xfd\\xe5\\xe5\\x7f\\xbd\\x7d\\x73\\xf6\\xe4\\xd5\\xdf\\x9f\\xfc\\xf6\\xf2\\x3d\\x58\\x20\\xb0\\x17\\x2a\\xef\\x8c\\xa2\\xdb\\xbb\\x34\\xf7\\xeb\\xf3\\x5f\\xce\\x5e\\x3e\\x95\\x8d\\x6d\\xe3\\xc6\\x7c\\x18\\xd4\\x56\\x46\\x03\\x77\\xe6\\x11\\x44\\x0e\\x5e\\x9f\\xa8\\xfc\\x7a\\xa4\\xb6\\x27\\x2a\\xdf\\x06\\xb8\\x43\\x7e\\xb5\\x70\\x61\\x83\\xe5\\x82\\x66\\xa6\\x89\\x15\\xc5\\x7c\\x7f\\x6d\\x36\\xb9\\x56\\x7f\\x99\\x26\\xf6\\xc5\\xfd\\xbe\\xed\\xfd\\x9d\\xe3\\x80\\x6c\\xb1\\x40\\xce\\x31\\x15\\x21\\xd8\\xd9\\x5a\\x20\\xe3\\xdc\\x69\\x48\\x23\\x5c\\x77\\x1a\\x16\\xed\\x2b\\x0d\\x62\\x17\\xc2\\x0c\\x67\\x27\\x48\\xf8\\x23\\xe2\\x73\\xef\\xff\\x59\\x17\\xec\\xfc\\x51\\xeb\\x6f\\x03\\xf7\\x16\\xaa\\x69\\x7f\\xe0\\xd7\\x7e\\x46\\xa3\\xff\\xcd\\x79\\xfd\\x45\\x99\\xc5\\xe9\\x63\\xe8\\xcb\\x18\\x54\\xfd\\x3d\\xae\\xea\\x92\\x08\\x07\\x75\\x9d\\x95\\x03\\x1e\\x7e\\x96\\x5c\\xed\\x7b\\xdd\\xf7\\xff\\xe5\\x8b\\x5d\\x03\\xf9\\xed\\xf7\\xd0\\x57\\x0b\\xa7\\x87\\x1a\\x00\\xcf\\xa7\\x0c\\x69\\x06\\x32\\x42\\xc1\\xb4\\x97\\xdb\\x7a\\x49\\x5d\\x37\\xfe\\x2a\\x6b\\x41\\x05\\x80\\x6d\\x04\\xe9\\x42\\x09\\x3d\\x0e\\xf2\\x7c\\x58\\x51\\x27\\x47\\xa3\\x94\\x2f\\x00\\x46\\x01\\xba\\x36\\x27\\x6c\\x64\\x2b\\x1a\\xb5\\xc8\\xe6\\x97\\x6a\\xd0\\x68\\x0d\\xae\\xd3\\x90\\xbb\\xc3\\xca\\x68\\x45\\xa8\\xb6\\x19\\xaa\\x65\\x76\\xa9\\x1b\\x77\\x3b\\x63\\x03\\x6c\\x77\\x2b\\x1a\\x75\\xa9\\x57\\x2d\\x69\\x3e\\x26\\xfe\\xec\\x79\\x95\\x06\\xea\\x38\\xdc\\xdd\\xb2\\x6e\\x75\\x7d\\xe2\\x5f\\xe9\\xf8\\x0a\\xd0\\x13\\x9c\\x5e\\x32\\x48\\xf5\\x54\\xd1\\x53\\x14\\xa7\\x73\\xca\\x5a\\x9c\\x75\\x2d\\xde\\xd7\\x5e\\xf2\\xf9\\x1a\\x05\\x80\\x12\\x26\\x92\\x8f\\xc5\\x27\\x17\\xf2\\x8f\\x4f\\x14\\x57\\x44\\xdd\\xa6\\x97\\xb1\\x15\\x44\\x69\\xd4\\xb7\\xc3\\x54\\xdd\\xd7\\x9b\\xe0\\x4d\\x75\\x23\\x7c\\x63\\xde\\x56\\xe8\\xf8\\xce\\x24\\x31\\x52\\x3e\\x8b\\x92\\x80\\x3c\\x05\\xe8\\x6d\\x4c\\xf0\\x8e\\x29\\x45\\x1a\\xd5\\x1a\\xb2\\x77\\x82\\xa0\\x49\\xc0\\x41\\x52\\x4c\\x5f\\x64\\x0d\\xda\\x4f\\x6b\\x0d\\x6e\\x03\\x3a\\x1f\\x41\\x13\\xb6\\xbd\\xa2\\x75\\xf5\\x37\\x75\\x71\\x71\\x01\\x96\\x23\\x90\\x11\\xe0\\xae\\x05\\x03\\xf5\\xba\\x6a\\xb4\\x5e\\x96\\x5b\\xb5\\xc9\\xb6\\x13\\xf5\\xc1\\xd2\\xe2\\x46\\xe3\\xc5\\x99\\x55\\x44\\x09\\x4d\\x5b\\x2c\\x81\\x7a\\x20\\xd9\\x6d\\x73\\x88\\x2c\\x03\\x2e\\x64\\xb0\\xa1\\xc3\\x3d\\x89\\xd8\\x86\\x62\\x62\\x58\\x59\\x00\\xba\\x56\\x6d\\x51\\xeb\\x72\\x0b\\x87\\x7b\\xa2\\x5e\\xb6\\xdf\\x96\\xa5\\xbd\\x5d\\xf1\\x6e\\x2d\\xb7\\x10\\x1a\\x0d\\x84\\x5d\\x51\\x2a\\xfb\\xd9\\x9a\\x4e\\xc3\\x4c\\xc3\\x5c\\xdb\\x45\\x56\\xa9\\x8b\\xb2\\x68\\xe7\\xc0\\x2e\\xcc\\xba\\x9d\\xf8\\x9b\\xc5\\x4a\\x3c\\x70\\x65\\xc2\\xbf\\x56\\x60\\xf8\\x05\\xe2\\xec\\x5e\\x71\\x11\\x48\\xb4\\xa7\\x67\\x71\\xae\\x9d\\x46\\x2d\\x95\\xbc\\x4a\\x22\\x6e\\x07\\x7c\\xe5\\x0c\\x72\\xd0\\xe6\\x5b\\xf5\\x97\\x44\\xbf\\x2e\\xec\\xb6\\x0f\\x25\\x3a\\xd1\\x20\\x61\\x77\\xe7\\xd7\\x3d\\x2d\\xb2\\x76\\xf2\\x6d\\x55\\x6e\\xd5\\x8a\\x0c\\xd9\\xb9\\x3e\\xcf\\xac\\x70\\xe3\\xd7\\xbe\\x38\\x57\\x57\\xba\\x6e\\x8b\\x79\\x40\\x6f\\x45\\xc3\\xd5\\x9d\\x89\\x6d\\x65\\x1a\\xb4\\x57\\xa9\\xb7\\x96\\x3b\\x6f\\x8a\\x46\\x8f\\x2c\\x1d\\x01\\x55\\x36\\x71\\x23\\x5c\\xfd\\x0f\\x70\\xf9\\x47\\x46\\xf7\\x9b\\x6a\\xeb\\x6c\\x7e\\xb9\\xca\\x72\\x62\\x6d\\x40\\x2d\\xbf\\x41\\xb6\\xe1\\x65\\x56\\x96\\x0c\\x8b\\x89\\x62\\x01\\xaa\\xff\\x58\\x54\\x1a\\x14\\x4d\\xb3\\xd6\\xea\\x7f\\x7c\\xf7\\xc3\\x7f\\xfc\\xa7\\x7f\\x19\\xdd\\xcb\\x01\\x25\\xba\\xbb\\x47\\x02\\x13\\xe6\\xef\\x34\\xf7\\x67\\x38\\xf5\\x81\\x8e\\x03\\xae\\x43\\x34\\x5f\\x10\\x1a\\x3c\\x30\\xb1\\x84\\x21\\xb6\\xd2\\x5b\\xa5\\x56\\xb5\\xb9\\xa8\\x75\\xd3\\x08\\x65\\xa9\\x38\\xcf\\xdf\\xbe\\xab\\xcd\\x1f\\x7a\\xde\\x7e\\x1b\\xf8\\x2f\\x4a\\x9b\\xed\\xdc\\x69\\x44\\xc1\\x9e\\x89\\x59\\xac\\x1a\\x94\\x31\\xe5\\xc1\\xf0\\x20\\x75\\x7a\\x03\\x92\\xe3\\x46\\xa3\\x2c\\x8b\\x52\\x23\\xa0\\x3b\\xd2\\xf1\\x53\\x45\\x3b\\x0c\\xd9\\xef\\xed\\xa4\\x0d\\xd9\\x7e\\xa1\\x80\\xe5\\xb8\\x69\\xb2\\xf4\\xb1\\x14\\x0e\\xef\\x54\\x42\\xa0\\x42\\xa6\\x7b\\x08\\xd8\\x06\\xd2\\xde\\x1d\\xef\\x82\\xa3\\xa3\\x1e\\x1f\\x52\\x2e\\x7e\\x68\\x56\\x52\\x38\\x36\\x45\\xa5\\xc6\\xea\\x87\\xa3\\x28\\x5f\\x1c\\x76\\x98\\xb6\\x4b\\xe3\\x70\\x5c\\xed\\x03\\x51\\xbb\\xcf\\xa6\\x85\\x66\\xee\\x96\\xa6\\x02\\x79\\x83\\x67\\xa6\\xbd\\x09\\xc0\\xee\\x83\\x57\\x0b\\xb9\\xd0\\x79\\xe6\\x90\\xa2\\xa1\\x70\\xa1\\xfb\\x08\\xad\\x73\\x98\\x4f\\x7b\\x90\\xa4\\x63\\x36\\x92\\x6a\\xf5\\x19\\x00\\x51\\x5f\\x47\\x4d\\x3c\\xfb\\x1d\\xf6\\x96\\x2a\\xf4\\x25\\x11\\x0c\\x2e\\xc3\\xdd\\x13\\x92\\xbe\\xe7\\x5e\\xf5\\x0b\\x82\\x47\\x72\\x4a\\xc2\\xdb\\x51\\x34\\xd8\\xad\\x9c\\x9a\\x66\\xb2\\xee\\xef\\x41\\xdd\\x06\\x76\\x05\\x94\\x5d\\xd8\\x8a\\x70\\x33\\xe3\\x05\\xb0\\xb2\\x08\\xfe\\x78\\x18\\xff\\x36\\x0c\\x33\\xb0\\x0c\\x68\\x1e\\x9d\\x46\\x7e\\x73\\x8d\\xfc\\xd6\\x69\\xe4\\x37\\xaf\\x91\\x4d\\x6f\\x73\\x7a\\x4f\\x45\\x2c\\xa4\\x83\\xb4\\xb1\\x73\\x49\\xae\\x71\\xf2\\x29\\x36\\x48\\x7c\\xfd\\x4b\\xf8\\xc4\\x3e\\x50\\xdc\\xe8\\x61\\x44\\xc6\\x07\\x0c\\x49\\x66\\xff\\x3b\\x38\\x90\\xbf\\xb1\\xa4\\x32\\x52\\x0f\\x8e\\x8e\\x76\\x62\\x03\\xf2\\xe2\\x1c\\xa4\\x29\\xef\\xc0\\x91\\x9e\\x44\\xcb\\xf2\\xf9\\x1f\\xcc\\xcc\\xf2\\x49\\x44\\xe5\\x2c\\x96\\xcb\\x35\\x38\\x06\\x4f\\xd4\\x13\\x4c\\x22\\x58\\x81\\x77\\x3b\\xea\\xae\\x01\\x23\\xb9\\xde\\x02\\x1e\\x01\\xe3\\x89\\x7a\\x8f\\x2c\\xc6\\xe1\\x54\\x4f\\xc4\\xc7\\xa2\\x41\\x98\\x2d\\x4b\\x5f\\x60\\xd1\\xac\\xc6\\x04\\x71\\xb7\\x22\\x93\\xe9\\x00\\x5d\\xc7\\xab\\x71\\x6b\\xd6\\x20\\x34\\x0c\\x31\\x62\\xa0\\x19\\xa9\\x06\\x4c\\xe6\\x68\\xf8\\xcc\\x00\\xb7\\x5c\\x5f\\xa0\\x8c\\x21\\xf2\\x0d\\xda\\x36\\x30\\xad\\x1c\\x8d\\x15\\x52\\xfe\\xd7\\xc5\\x32\\xab\\xb7\\x62\\x20\\x03\\x32\\x98\\x42\\xed\\x6f\\x9b\\x90\\xb7\\xdb\\x36\\xd0\\x0c\\x86\\x2e\\x6c\\xba\\x7d\\x8a\\x89\\x1f\\x91\\x04\\x9a\\x91\\xd2\\xed\\x7c\\x38\\x01\\x35\\x89\\x4c\\x9c\\xe1\\x82\\x31\\x79\\xc4\\xb6\\x5f\\x80\\xd7\\xc0\\xe3\\x0c\\x41\\x6d\\x35\\xa3\\x4f\\xe1\\x3f\\xf8\\xb3\\x2b\\xaa\\xa6\\xbe\\x1a\\x04\\xb0\\xb9\\x1e\\x44\\x8c\\x1d\\x4f\\xa8\\x27\\xdb\\xba\\xe8\\xe8\\x63\\xd8\\xfa\\x27\\xd5\\xd7\\xa4\\xfe\\xef\\x75\\x56\\x86\\x29\\xdf\\x8d\\x15\\x28\\x76\\xc7\\xee\\x41\\x38\\x3b\\x24\\xdb\\x9b\\xe2\\x57\\x39\\x8a\\x7a\\xed\\x61\\x95\\xa0\\x90\\x98\\xe5\\xbd\\x69\\x3c\\xef\\x2f\\x5f\\x14\\x16\\xc2\\x81\\x8b\\x98\\x76\\x31\\x1d\\x19\\xad\\x1b\\x3a\\x8c\\xee\\x88\\x23\\x0c\\xaa\\x76\\x8c\\x8d\\xa0\\x93\\x9a\\x72\\xfc\\x20\\xad\\x5a\\xf1\\x69\\x44\\xb6\\xf6\\x69\\x30\\xaa\\x00\\x11\\x04\\x96\\x0c\\x49\\xe3\\x9d\\x69\\x06\\x20\\x25\\x63\\xc0\\x0b\\x55\\xa6\\xbf\\x86\\xe0\\x7e\\x96\\x2a\\xbd\\x80\\x34\\xa0\\xad\\xfb\\xf7\\x30\\x39\\xb1\\x9b\\xd8\\xa9\\xae\\x67\\x0b\\x73\\xad\\x57\\x4f\\xcd\\xaa\\x43\\x16\\x3b\\xf6\\x0f\\x70\\x10\\x00\\x6f\\x13\\x90\\xc5\\xbe\\x66\\x09\\xc9\\x6f\\xd7\\xac\\xdb\\x8f\\xc5\\x27\\xf2\\x36\\xc1\\x08\\x9d\\xb9\\x59\\x6d\\xed\\x14\\xe3\\x25\\xe5\\xe5\\x18\\xa9\\xde\\x12\\xb4\\x08\\x62\\xc6\\xb6\\x59\\x91\\xb6\\x64\\xdd\\x8e\\x22\\xc2\\x19\\xf6\\xae\\x87\\x7d\\xc1\\x81\\x9e\\x02\\x7f\\xc4\\xcc\\x2b\\xff\\x6a\\x50\\x6a\\xff\\x4a\\x00\\x4d\\x74\\x66\\x04\\x00\\x53\\x41\\x84\\x18\\x9e\\x0b\\x39\\x47\\xf4\\x9f\\xea\\x9b\\x86\\x53\\xb5\\x4f\\xe3\\x94\\xbf\\x22\\x04\\xbf\\xff\\x78\\xde\\xc3\\x52\\x14\\xbc\\xb1\\x32\\xcd\\xbf\\x72\\x58\\x38\\x3a\\x2c\\x9e\\xa6\\x3b\\x14\\xf3\\xe5\\x0a\\x43\\x17\\x30\\xce\\xcb\\xbe\\x0e\\xed\\xe4\\x1f\\x91\\xfb\\xb9\\xfd\\x19\\x86\\x8e\\x3f\\xb7\\xc6\\xfe\\xf8\\xd0\\x05\\xc3\\x08\\x47\\xf0\\x22\\x26\\xfd\\xf1\\x31\\xac\\x90\\x1d\\xc5\\x2f\\x34\\x0a\\xc7\\x70\\xf9\\xd4\\x01\\xf9\\x78\\x5e\\x8b\\x9f\\xd5\\x54\\xe1\\x3f\\x4e\\xf1\\xab\\x2d\\x04\\x21\\x00\\x59\\x0e\\x2d\\x42\\x6b\\x32\\x80\\x99\\x50\\x9e\\x52\\x9c\\x75\\x59\\x54\\x4c\\xb7\\xe2\\xa8\\x53\\xa3\\x43\\xcb\\x5c\\xe3\\xd6\\x20\\xd6\\x22\\xdd\\x56\\x76\\xfd\\x95\\x6d\\x21\\x58\\xd9\\x2e\\xa6\\x6f\\xab\\x22\\xe4\\x03\\xf1\\x63\\x6a\\x19\\xbf\\xdd\\xbf\\x2f\\x4a\\xcd\\x17\\x71\\x99\\xf9\\x02\\x6e\\x87\\xc3\\x43\\x75\\x96\\x5d\\x6a\\x7b\\xc7\\xae\\x2b\\xbe\\x74\\x57\\xa6\\xd5\\x55\\x5b\\xc0\\x93\\x53\\x5c\\xd9\\x56\\x7a\\x85\\xbc\\x93\\x74\\xe3\\x51\\xbe\\x63\\xb4\\x4d\\x66\\xe2\\xc2\\x25\\xbc\\xa7\\xa2\\x9d\\xa8\\x6f\\x9f\\x9a\\xaa\\x59\\x2f\\x75\\xf3\\x2d\\x55\\x53\\x59\\x5d\\x67\\x5b\\x2b\\xe8\\xe5\\xc5\\xf9\\x96\\x04\\x81\\x22\\xc0\\x81\\xaa\\x4c\\xbd\\xcc\\xca\\xe2\\x4f\\xe1\\x0e\\xd6\\x73\\xc9\\xc2\\x03\\xaa\\x2e\\x96\\xee\\x86\\xfd\\xe8\\x2f\\xbf\\x3d\\x0a\\x3f\\x6c\\x26\\x76\\x5a\\x42\\xdc\\xce\\x46\\x6a\\x16\\xe4\\xed\\x5e\\x0d\\x32\\xa2\\xdd\\x91\\x9a\\x31\\x15\\x9f\\x22\\x4c\\x85\\xbc\\xaa\\xd9\\xea\\x24\\x07\\x33\\x8c\\x8f\\xd7\\x31\\x1e\\xaf\\xdd\\x27\\x8b\\x4c\\xef\\xfe\\xfa\\xb1\\xef\\x63\\xf1\\x45\\x8d\\xd5\\x71\\x78\\xcc\\x6c\\x01\\x38\\x41\\xe0\\x47\\x12\\x1c\\x35\\xff\\x7c\\x10\\x51\\x59\\x44\\xbb\\x50\\x8d\\xe7\\x26\\x2a\\x8e\\x30\\x2c\\x88\\xa8\\x32\\x6a\\x1c\\x0e\\xaa\\x68\\xb2\\xa8\\xae\\x40\\x50\\xd1\\x57\\xcc\\xe0\\xd4\\x63\\xd1\\x18\\xe9\\xeb\\xf0\\xa8\\x9d\\x28\\xd1\\xa5\\xfd\\x05\\xfe\\x84\\xe3\\xe7\\x05\\xed\\xc2\\x72\\x01\\xb9\\x95\\x6a\\x3c\\xf6\\x0b\\xcd\\x42\\x37\\xef\\x1e\\x5a\\xb3\\xc6\\xe3\\x62\\xa4\\x1e\\x8c\\xc4\\xcd\\x63\\x87\\xf5\\xd8\\xce\\xe3\\x84\\x62\\x80\\xf0\\x03\\x2c\\xc0\\x09\\xe0\\x9b\\x05\\x86\\xd2\\xe4\\x15\\xd3\\xa5\\xab\\xd0\\x05\\x01\\x9e\\xa9\\xbe\\x78\\x97\\xf5\\x24\\x5b\\xfd\\xe8\\x07\\x29\\x6b\\x58\\xc9\\x80\\x6e\\xc5\\x4f\\x23\\xcb\\x05\\x19\\x62\\x0d\\x43\\xf3\\x40\\x78\\xe5\\xa8\\x23\\xd2\\x30\\x5b\\x3e\\x6e\\xce\\x3d\\xac\\xed\\xa0\\x68\\x1b\\xf5\\x6d\\x6b\\xbe\\xe5\\xcc\\x7f\\x5b\\x04\\xc7\\x3f\\xa7\\x14\\xcd\\x28\\x00\\xbb\\x84\\x00\\xf6\\x36\\x90\\x00\\x6b\\xf0\\xf5\\x79\\x95\\x0f\\x1c\\x5c\\x0e\\xdf\\x1b\\x04\\xf8\\x8f\\x40\\x33\\xfe\\x6c\\xd0\\x57\\x23\\x57\\xd0\\x52\\x0c\\xfd\\xe0\\x53\\x6b\\x1e\\x28\\xd1\\x82\\x80\\x8a\\x8c\\x12\\x00\\x95\\x4d\\x3b\\x90\\x5d\\x71\\xc9\\x03\\x35\\x48\\xd4\\x9f\\x4e\\xd5\\xb1\\x25\\x35\\xd1\\xd9\\x7c\\x01\\xf0\\x91\\xbc\\x76\\x4f\\x20\\x16\\x4c\\x65\\x41\\x22\\x27\\x58\\x0e\\xb7\\x1a\\xa6\\x69\\x79\\x39\\xa2\\xd5\\x05\\xab\\x60\\xb6\\xd4\\x0a\\x71\\x76\\x4c\\x2d\\x97\\xdc\\x67\\x41\\xe0\\x40\\x58\\x97\\x64\\xe1\\xca\\x2e\\x76\\xd1\\x76\\x00\\x21\\x9d\\x2b\\x12\\xde\\x7a\\xf1\\x1a\\xbb\\xeb\\x50\\xcc\\x67\\xc8\\x6a\\x18\\x5a\\x5b\\xbe\\xb1\\x53\\xe5\\x5b\\x43\\xb7\\x67\\xbc\\x3f\\x72\\x43\\x9d\\xaf\\x20\\xde\\x0b\\xb6\\xc1\\x9d\\x1b\\xe4\\x96\\x9d\\xd2\\x9b\\x8e\\x55\\xbc\\xb5\\x43\\xd8\\x46\\x65\\x6f\\x10\\x68\\x6d\\xbe\\xa0\\xf1\\xb9\\xa6\\xed\\xf9\\x0f\\x5a\\x41\\x18\\x26\\xfb\\xfa\\xec\\x0c\\xd0\\x6e\\xe0\\x58\\x14\\xb7\\xd7\\x50\\x48\\x5a\\x04\\x12\\xb6\\x08\\x4f\\xe2\\x1c\\x0f\\xc9\\x7b\\x5d\\x02\\xe6\\x11\\xad\\x33\\x04\\x03\\xc8\\x75\\xbe\\x83\\x88\\x0b\\xea\\x33\\x5d\\xde\\x51\\xf6\\x09\\x4b\\xb3\\xf0\\x63\\xd6\\x2d\\xe2\\xa4\\x88\\x83\\x1e\\x91\\x00\\xca\\x3c\\x7c\\xfc\\x69\\x8c\\xbd\\xe9\\xb0\\xd2\\xb5\\xf1\\xc5\\x40\\x75\\x29\\xfd\\xa3\\x67\\x39\\xdd\\x5b\\x12\\x04\\x66\\x1e\\x71\\x0f\\x4b\\x43\\x07\\x2d\\xe0\\xfa\\x96\\xb6\\x4c\\x99\\x8f\\x54\\xb5\\xf1\\x54\\x2a\\x77\\xd5\\x94\\xb9\\x83\\x52\\x12\\xd2\\x9a\\xad\\x5c\\x6d\\x08\\x18\\x0f\\x49\\x02\\x01\\x6a\\xed\\x3f\\x0e\\x54\\xb5\\x99\\xcc\\x17\\x43\\x67\\xba\\xed\\xad\\x6b\\x0f\\xbd\\xeb\\x6d\\xec\\x3b\\xe3\\x36\\x3d\\x3a\\x12\\x24\\xd6\\x99\\x6d\\x55\\xad\\x57\\x65\\x36\\xf7\\x13\\x6e\\x30\\x1c\\xb3\\x34\\x1b\\x85\\x7e\\xd8\\x91\\x5a\\xc2\\x67\\x50\\x01\\x3f\\x05\\x7b\\xc2\\xc9\\xc2\\x82\\x3e\\x06\\xd0\\x5a\\xae\\x5a\\xdd\\xb4\\x13\\xf5\\xa2\\xa8\\x5a\\xb5\\xcc\\xb6\\x6a\\xa6\\xd5\\x3e\\x94\\xdf\\xb7\\x15\\xf6\\xb1\\xc6\\xfe\\xa4\\x43\\x8b\\xbf\\x50\\xfd\\xf7\\xba\\x94\\x84\\xd8\\x8c\\xd4\\xa2\\xa8\\xda\\x24\\x3d\\x12\\x12\\xdd\\x3b\\xbc\\xed\\x29\\xeb\\x19\\xc7\\x17\\x1f\\x0d\\xe1\\x76\\xa3\\x1f\\xa9\\x58\\x0f\\x11\\xb3\\xc2\\xa5\\x4f\\xbe\\x60\\x0c\\x35\\x2a\\x27\\x5d\\xa4\\x48\\x40\\xf0\\x74\\x20\\x0e\\xfc\\x88\\xbb\\x75\\x23\\x19\\x0a\\xfd\\x73\\xa2\\x96\\x38\\xd9\\x7d\\x75\\xfd\\x7c\\xdd\\xa9\\x87\\xef\\x7e\\xaa\\xf4\\x01\\x13\\xa2\\x55\\xe0\\x65\\xcd\\xab\\x1e\\xca\\x36\\xbd\\x87\\x72\\x44\\x32\\x8a\\x65\\x99\\xf2\\xe8\\xc8\\x43\\x08\\xac\\x96\\x1a\\x4b\\xbc\\x63\\x6f\\x95\\x26\\x52\\x6a\\xb8\\x44\\x3b\\x3e\\x5f\\xc1\\x1d\\xc4\\x8f\\x1d\\x07\\x56\\xe4\\x93\\xba\\xd0\\x88\\xc0\\x4a\\x89\\xa4\\xc0\\x22\\x91\\xa9\\xb9\\xa9\\x1a\\xc4\\x50\\x55\\x08\\x91\\x98\\x5d\\x64\\x45\\x85\\x46\\x1d\\xe7\\xb8\\x85\\x2b\\x2e\\x8e\\x7f\\x69\\xb2\\xfc\\xb5\\xc9\\x75\\x80\\x57\\x4e\\x38\\x6a\\x08\\x21\\x40\\xbf\\x7a\\x9f\\x54\\x51\\xe2\\x2d\\x7c\\xc3\\xc8\\xc8\\x06\\x8b\\x22\\x46\\x24\\x79\\x92\\x85\\xb8\\xe8\\xc1\\xcf\\xb2\\x33\\xc0\\xd7\\xec\\x07\\xc6\\x8c\\xf0\\xed\\x04\\x76\\xa2\\x80\\xbc\\x13\\xc8\\x89\\xa2\\xce\\xb6\\xd4\\x11\\xd6\\x62\\x80\\xb2\\x08\\x22\\xbd\\x98\\x8f\\xc4\\x9d\\xeb\\x83\\x56\\xed\\x00\\xb5\\xc7\\x21\\x93\\xc7\\xa8\\xa3\\x75\\x38\\xab\\xb6\\xe1\\x9f\\x75\\x05\\x88\\xde\\xdd\\x6c\\x65\\x3e\\x3d\\x91\\x40\\x7f\\x7b\\xfb\\xf4\\x6f\\xaf\\x9f\\xbf\\xf9\\x7f\\xd9\\x7b\\xb7\\xfe\\x36\\x6e\\x64\\x5f\\xf4\\x5d\\x9f\\x02\\xe6\\xca\\xb6\\xc9\\x2d\\x8a\\x92\\x9c\\x49\\x66\\x46\\x36\\xed\\x9f\\x7c\\x4b\\x7c\\x12\\x5f\\x8e\\xe5\\x24\\x7b\\x6d\\x45\\x6b\\x4e\\xb3\\x1b\\x14\\x3b\\x6a\\x76\\x73\\xba\\x9b\\x92\\x19\\x4b\\xe7\\xb3\\x9f\\x1f\\xea\\x02\\x14\\xd0\\x68\\x4a\\xce\\x64\\xaf\\xb5\\x1e\\x4e\\x1e\\x62\\x11\\x8d\\x3b\\x0a\\x85\\x42\\xa1\\xea\\x5f\\x1f\\xd5\\x8b\\xe3\\x8f\\xc7\\xea\\xe4\\xe3\\x87\\x9f\\x9e\\x7f\\xfc\\xe9\\xc3\\x4b\\xf8\\xf6\\x6c\\xc3\\x0f\\x86\\xec\\xbc\\xc1\\x91\\x97\\x80\\xa5\\x61\\x44\\xe9\\x4c\\x25\\x48\\x22\\x33\\x7d\\x9e\\x97\\x25\\xc1\\x9a\\x24\\x30\\x0d\\xa6\\x92\\xa4\\xd6\\xaa\\x25\\x3d\\x2e\\x04\\x85\\x34\\x57\\x3b\\x43\\xe2\\x0a\\xa0\\x9b\\x0c\\x91\\x2d\\xcd\\x2d\\x10\\x5e\\xc4\\x9a\\xa6\\x4a\\xf3\\x84\\xe5\\x24\\xae\\x02\\xdd\\x7f\\x1b\\x68\\x10\\x03\\x28\\x3a\\x6f\\x02\\xeb\\x0c\\x00\\x50\\xac\\x33\\x0d\\xef\\xd3\\xa0\\xf4\\xcd\\xcb\\x76\\x9d\\xb7\\xf9\\xa5\\x34\\xf7\\xcb\\x9b\\x5f\\x16\\x15\\x7a\\xf7\\x91\\xa7\\x52\\xe7\\x18\\xf7\\xc5\\x4f\\x16\\xfc\\xd8\\xad\\xdd\\x93\\x1e\\x38\\x31\\x94\\x2c\\x81\\x8b\\x0c\\xd8\\xb4\\x7d\\x78\\xcf\\xac\\x20\\x86\\x0b\\xc3\\xbf\\x1c\\x64\\xa1\\xdf\\x19\\x34\\xd9\\xe7\\x2d\\xf8\\x5e\\xd7\\xf3\\xaa\\x5e\\x3a\\x01\\x9c\\x6c\\xcb\\xd8\\xb2\\x3b\\x08\\xe3\\xd5\\x05\\x78\\xa9\\x52\\x39\\xba\\x31\\x4e\\x1d\\xc2\\x38\\x8c\\xed\\xdb\\x21\\x85\\x38\\x84\\xa1\\xbb\\xbb\\x87\\xc9\\xf3\\xaa\\xaa\\x87\\xe5\\x48\\x7d\\xb6\\x5a\\x04\\x5b\\x5a\\x3d\\x95\\xbf\\x4e\\xcb\\x33\\x42\\x77\\xbc\\x91\\x75\\x60\\x27\\x48\\xa4\\x42\\x29\\xb7\\x91\\x08\\x12\\xce\\x8c\\xbe\\x9b\\xa7\\xd3\\x3d\\x7c\\x1c\\x07\\xbf\\xba\\x1f\\x13\\xb3\\x83\\xb1\\x08\\x85\\x41\\x1c\\x58\\x78\\xd7\\x05\\x63\\xf6\\x78\\x5d\\x01\\xa7\\x28\\x33\\x1c\\xa0\\xdb\\x8e\\x3a\\xcb\\x02\\x68\\x9d\\xe2\\x49\\xe5\\x1d\\x7a\\x50\\x04\\x0f\\x3e\\x5d\\x66\\x22\\x12\\x26\\x85\\x7b\\x5a\\x17\\x42\\x1c\\x83\\xd1\\x98\\x71\\xc0\\xb9\\x60\\x67\\x31\\x1f\\x75\\x06\\x14\\x78\\xdb\\x10\\xa4\\x94\\xf0\\xb7\\xe1\\x98\\x60\\xf2\\x80\\xc4\\xe8\\x5f\\x4c\\x81\\x38\\x63\\x22\\x05\\x3d\\x76\\xac\\xd3\\xf2\\x8f\\x28\\x85\\x33\\xe8\\x84\\x85\\xe6\\x60\\x49\\xa7\\x48\\xe2\\x79\\x58\\x90\\x66\\x61\\x3e\\x69\\xda\\x8f\\xd8\\x90\\xa1\\x73\\x20\\x70\\x2c\\x8c\\xb4\\x30\\x75\\xe3\\x0c\\xee\\x5f\\x46\\xa6\\x28\\x08\\xe0\\xd8\\xc9\\xf8\\xb6\\x0b\\x1c\\x01\\x18\\xaf\\x51\\x16\\x07\\xc9\\x12\\xb4\\x87\\xa1\\x39\\x99\\x8b\\x27\\x55\\xe0\\xe3\\xe0\\xe4\\x32\\x3c\\x18\\xbb\\xd5\\x3d\\xc0\\x19\\x61\\xd5\\xfd\\xc8\\xe6\\x45\\xdb\\x28\\xd9\\xbd\\xb1\\x05\\x94\\x51\\x7b\\x5e\\x21\\xdf\\x6c\\x76\\x3b\\xbb\\xe0\\xee\\xb0\\x4d\\x55\\xde\\xa8\\x44\\xc1\\x96\\xc6\\x08\\x71\\x24\\xe4\\x4d\\xd4\\xc7\\x90\\xfd\\x31\\xd3\\xe3\\xe2\\x60\\x5f\\x05\\x65\\xf8\\x55\\xcc\\x74\\x98\\x23\\xd8\\x99\\x7f\\x37\\xc0\\x47\\x9b\\xf5\\x6a\\x55\\xe1\\xc9\\x3c\\xb1\\xe4\\x8b\\xa1\\xf4\\xa6\\x7d\\xf3\\x00\\x2b\\x21\\x76\\xdc\\x90\\xd7\\xdd\\x51\\x00\\x81\\xbd\\xda\\x35\\x75\\x06\\x16\\xb8\\x7e\\x23\\x0a\\x7e\\x4a\\xf3\\x68\\x57\\x90\\xd7\\x77\\x24\\x0e\\x43\\xe8\\x8d\\x78\\x3d\\x11\\x6b\\x25\\xca\\x41\\xae\\x4e\\x80\\x34\\x41\\xb6\\x53\\xdb\\x39\\x2f\\xf0\\x4f\\x70\\x41\\x77\\x22\\x1a\\x8d\\xcd\\xd6\\x30\\x76\\x7b\\x00\\x6f\\x9d\\x0e\\x8e\\x1e\\x39\\xfa\\x48\\xed\\x3a\\xd2\\xde\\x8d\\xe7\\x06\\x2e\\x3f\\xea\\x4c\\x4c\\x20\\x88\\xd9\\x35\\x00\\x95\\xb8\\x5d\\x85\\xc3\\x9e\\x55\\x50\\x9c\\x39\\x60\\x1b\\x5f\\xdc\\x99\\x2e\\x4f\\xf9\\x57\\xe6\\x02\\xb8\\xd6\\x81\\xe4\\x5a\\x07\\x2e\\xde\\x53\\x64\\x0d\\xd5\\xae\\xb9\\x99\\xd3\\x50\\x84\\xb8\\x29\\xa2\\x8e\\xf5\\x2c\\xd6\\xbf\\xd2\\x3d\\x5a\\xb4\\xbe\\xb9\\xe9\\xf4\\x3d\\x46\\xb5\\xd8\\x73\\xa2\\xdc\\x30\\xd4\\xc4\\x9f\\x3c\\x77\\xd1\\x2d\\x47\\xab\\xbc\\x6d\\x20\\x01\\xc5\\x39\\x12\\x7b\\x78\\x17\\x12\\x73\\x3b\\x57\\x3d\\xc1\\x30\\x31\\xb7\\xcd\\x03\\x86\\x93\\xb9\\x09\\xb9\\x6b\\x74\\xb5\\x1f\\x5a\\xf3\\x18\\x79\\x20\\x03\\x63\\x74\\xe7\\xb1\\xe4\\x93\\xac\\x6b\\x4c\\x8a\\x42\\xcd\\x31\\xda\\x68\\x01\\x51\\x37\\x2f\\x74\\x66\\xa5\\x19\\x19\\x48\\x13\\x3f\\xbd\\xa8\\x52\\x8a\\xcc\\x3d\\x1f\\xab\\x66\\x91\\xd4\\x3a\\xfb\\x3e\\x6f\\xda\\x77\\x65\\xb1\\x09\\xc4\\x95\\x15\\x87\\x57\\xc7\\xec\\xcd\\x45\\xbe\\x92\\x25\\x3c\\x83\\x9d\\x2a\\x9d\\x60\\xf5\\x7d\\x91\\xaf\\x5d\\x8e\\x98\\x1f\\x10\\x4b\\x0c\\x05\\x5d\\x05\\x31\\x27\\xdf\\x71\\x19\\x4b\\xbe\\x98\\x00\\x46\\xde\\x14\\xba\\xc2\\x80\\xf2\\x79\\xb9\\xd6\\x9e\\xcb\\x24\\xf6\\xd0\\x1c\\xa0\\xb6\\xab\\x46\\x9a\\x34\\xc5\\x5d\\x8a\\xa8\\xd7\\x9f\\x03\\x30\\x66\\xc4\\xa4\\x68\\x0b\\x73\\xee\\x07\\x4f\\x05\\xef\\x66\\x37\\x5b\\x36\\x43\\x27\\xd7\\x8d\\xbd\\x3b\\x06\\x73\\x4b\\x18\\xb8\\x80\\x9e\\x4f\\x6a\\xd0\\xb6\\x4d\\xd2\\x85\\x4a\\x9c\\x5c\\x6a\\xae\\x88\\x25\\xdd\\x18\\xa5\\xa2\\x12\\x32\\x1a\\xa9\\x94\\xa2\\x23\\x38\\xc5\\x0f\\x8a\\xc5\\x60\\x12\\xb6\\xa8\\xab\\x2b\\xb8\\xa9\\xbe\\xac\\xeb\\xaa\\x1e\\x0e\\xe0\\x64\\xb5\\x55\\x0b\\x0c\\xc0\\xbc\\x54\\xeb\\x46\\x4f\\x08\\xcf\\x1a\\xef\\x49\\xb8\\x28\\x04\\xdd\\x9d\\x22\\x40\\xc2\\x8e\\xb2\\x7c\\xd2\\xec\\x36\\x82\\x15\\x20\\x27\\x7f\\x79\\x25\\xdd\\x41\\x67\\xfe\\xbc\\xc6\\x0b\\x32\\xf8\\x5b\\x49\\xbc\\xab\\x1e\\x58\\x17\\xa0\\xa3\\xbc\\xcc\\xde\\x24\\x9f\\x08\\xdc\\xcb\\xf6\\xc8\\xc2\\xaf\\xe3\\x05\\xd7\\xbf\\xc9\\xc2\\x55\\x43\\xdc\\xc8\\x3a\\xfe\\x87\\x9d\\x8e\\xc0\\x74\\x3d\\x62\\xa3\\xb7\\x8c\\xbf\\xc3\\x6d\\xa3\\x6e\\x8b\\x81\\x7a\\x6a\\x76\\x28\\xfa\\x89\\x1d\\xa9\\x7a\\x89\\x7e\\x64\\x51\\x40\\x56\\xe9\\x37\\x64\\x8a\\xfa\\xad\\xdb\\xaa\\x29\\x88\\x9c\\x6d\\x7c\\x3b\\x70\\x79\\xdf\\xec\\x85\\x03\\x85\\xbb\\xb0\\x6c\\xcf\\x90\\x74\\x55\\x6f\\x50\\x3c\\xff\\x8e\\x9d\\xad\\x0d\\x6d\\xd5\\x75\\xb2\\x69\\xcc\\x55\\xd0\\x0b\\xa0\\x0e\\x17\\x41\\xab\\x6a\\x6b\\x26\\xea\\x45\\x05\\x4f\\x84\\xfc\\x0c\\x6f\\xa6\\xa1\\x71\\x46\\xca\\x97\\x44\\x94\\x16\\x1d\\x33\\x2d\\x74\\x52\\x37\\x10\\x58\\x7f\\xa2\\x7e\\xc2\\xf0\\xfa\\x20\\x71\\x35\\x36\\x54\\xbf\\x91\\xbe\\x4d\\x7e\\xac\\xa2\\xad\\x20\\xb3\\x61\\xe0\\xb5\\x96\\xd9\\x29\\x78\\x36\\xc2\\x22\\x80\\x79\\x8a\\x9d\\xbb\\x89\\xc5\\xdc\\xae\\x40\\xc6\\x3e\\x3d\\xa3\\x67\\x61\\xac\\x89\\xaf\\x1b\\x36\\xe9\\x85\\x5e\\x81\\x1b\\xde\\xeb\\x72\\x9e\\x97\\x79\\xbb\\xc1\\x96\\x59\\x0f\\x03\\x96\\xb3\\xa8\\x60\\xe1\\xb8\\x72\\x69\\x52\\xaa\\x99\\x56\\x4b\\x5d\\x9f\\xb3\\xad\\xa8\\x0d\\x3b\\x68\\x2a\\x14\\xa3\\xe7\\x76\\xcc\\xb1\\xf2\\xa6\\xca\\x3e\\xe6\\x4b\\x7e\\x5b\\x87\\xa4\\x13\\x5d\\x50\\xd2\\x81\\xcc\\xf9\\x6e\\x15\\x64\\x82\\x04\\x32\\x5d\\x73\\xb9\\xea\\xfc\\x3c\\x2f\\xc3\\x9c\\x9c\\x48\\xb9\\x85\\x22\\xd5\\x4c\\x55\\xde\\x3c\\x2f\\x74\\x52\\x0e\\x47\\x14\\x5d\\x9c\\xeb\\x3b\\xd7\\x25\\xe1\\xa4\\x71\\x7d\\xcb\\xe4\\xd3\\x77\\x32\\x91\\x49\\x04\\x9c\\x12\\xf9\\x60\\x01\\xf1\\x5a\\x25\\x6a\\x81\\x74\\xe4\\x11\\x0b\\x2e\\x65\\x22\\x2e\\xc5\\x7b\\xa0\\x9b\\xa1\\x4c\\x10\\x22\\x08\\x64\\xee\\x89\\x0c\\x38\\x03\\xf5\\x20\\xc9\\xbe\\xaa\\xab\\xe5\\x36\\x95\\xbf\\xc9\\xfc\\x9c\\x75\\x9e\\x9f\\x4d\\x6b\\x47\\xd6\\xec\\x44\\xbe\\xb6\\x98\\x8b\\xd5\\x51\\xf7\\x51\\x02\\x8f\\xf0\\x23\\x73\\x05\\x7b\\xa6\\xdb\\x2b\\xad\\x4b\\xd9\\x0c\\x5d\\xfc\\xdc\\x2b\\x8c\\xe1\\x2c\\xc8\\x48\\x7f\\xac\\xd2\\xa4\\x00\\x19\\x01\\x0b\\xb8\\x7e\\x8c\\x3b\\xef\\x28\\xe3\\xe0\\x91\\x84\\x0d\\x00\\x3b\\x07\\xad\\xdd\\xd3\\xc8\\x9e\\xf9\\x7a\\xfa\\x27\\xb5\\xf8\\x48\\xdd\\xb8\\xc8\\x2b\\x54\\xb5\\xab\\x84\\xd5\\x1e\\xd5\\x0a\\xe4\\x03\\xa7\\x4a\\xa7\\x3d\\x59\\xcd\\x83\\x77\\x49\\x5e\\x6e\\x78\\xd5\\x9f\\xa8\\x93\\xd6\\x94\\x04\\xe7\\xd0\\xc4\\x23\\x01\\xa9\\x3e\\x37\\x3b\\xdf\\xea\\x40\\xc1\\xa7\\xa9\\x19\\x42\\x79\\x5c\\x50\\xf2\\x52\\xc7\\x1a\\xed\\x25\\xc6\\xca\\x60\\x86\\xba\\xe9\\x1e\\x8c\\x85\\x9c\\x0e\\x30\\x69\\x5a\\xd2\\x09\\x53\\x2c\\xc7\\x64\\x33\\x59\\x55\\xab\\x61\\x68\\xc0\\x6c\\xd1\\x98\\x6c\\x18\\xb9\\x9c\\xde\\x04\\x4c\\xf7\\x3d\\xca\\x25\\xbe\\x42\\xc3\\x9c\\xc0\\xcc\\x98\\x49\\xb0\\x33\\xb3\\xc3\\xfb\\x5b\\xc0\\xb1\\x50\\xa1\\xab\\x64\\x23\\x05\\xaa\\x84\\x27\\x19\\x86\\x3c\\x34\\x55\\x7a\\xc1\\x1b\\xd0\\x47\\xd4\\xfe\\x54\\xf1\\x89\\x32\\xc5\\x80\\x9d\\x79\\x20\\xbe\\x66\\x36\\xbc\\x2f\\xe2\\x0e\\x60\\xd3\\x59\\x46\\x35\\x42\\x8b\\x5f\\xc0\\xcd\\xda\\x1f\\xae\\xf4\\x89\\x42\\xb7\\x56\\xfb\\xe1\\xb4\\x93\\x65\\x4f\\x3d\\x3c\\x0b\\x5a\\x72\\x79\\x60\\x9d\\xb6\\xb7\\xde\\x1b\\xec\\x35\\x5c\\xa4\\x37\\x86\\x1d\\x37\\x7e\\xa0\\xfa\\x84\\x10\\x7c\\xf2\\x12\\x89\\x93\\x98\\xb4\\x05\\x85\\x1c\\xe3\\xeb\\x90\\x56\\x69\\x51\\x35\\x86\\x10\\xce\\x35\\x9c\\x25\\x88\\x77\\x58\\xaa\\x0a\\xb9\\xa9\\xa9\\x0b\\x2a\\x28\\x8a\\xea\\xaa\\x01\\xc6\\x6f\\x4e\\xa2\\xa1\\x75\\x84\\x85\\xfc\\x83\\xdd\\xc1\\x28\\x38\\x0d\\xc2\\x5d\\x60\\xa4\\x04\\xe8\\xdf\\xc7\\x8a\\x8f\\x5e\\x4f\\x51\\xd8\\xd0\\x4b\\xe7\\x58\\x55\\xab\\xd7\\x99\\xcf\\xea\\x48\\x8e\\xa1\\xf1\\xee\\xd0\\x34\\xe2\\x99\\x66\\x6f\\x7b\\x70\\x8e\\xc0\\xc3\\x0d\\x1e\\x2b\\x36\\x9c\\xcb\\x98\\x9c\\xa5\\x78\\x33\\xb1\\xed\\x18\\xce\\x36\\x1f\\x3a\\x53\\x68\\x57\\x58\\x67\\xbb\\xaf\\x74\\xae\\x58\\xa5\\x17\\x4d\\x8d\\xd3\\xcc\\xda\\x04\\x2e\\x3b\\x1c\\x7a\\x5f\\x26\\xe9\\x22\\xa9\\x8f\\xdb\\xe1\\x01\\x6a\\x69\\x77\\x07\\x60\\xef\\x8d\\xe2\\xe2\\xfd\\xfb\\xae\\x25\\x3e\\x26\\x9f\\xe0\\x18\\xf6\\x42\\xd5\\x2d\\x4d\\x00\\xbb\\x45\\x1a\\x06\\x22\\xac\\xc9\\xb7\\x35\\xf9\\x3f\\x07\\x23\\x81\\xed\\x3c\\x24\\x7c\\x8d\\xe8\\x0e\\x8d\\xcc\\xca\\x48\\xaa\\x9d\\x80\\xd8\\xe0\\xa0\\x74\\xe4\\xc8\\x08\\x0c\\x86\\x55\\xf1\\xe1\\xaf\\x24\\xe7\\x4a\\xd7\\xb5\\x45\\x49\\xf1\\xec\\x7c\\x7a\\x8e\\x1c\\xa7\\xfb\\x0e\\xf3\\x00\\xd3\\xe3\\x1c\\x1e\\x60\\xa1\\x11\\x71\\x97\\xf9\\xef\\x3a\\x53\\x69\\xd2\\x68\\xb8\\x67\\xa1\\x3d\\x8b\\xc2\\x9b\\xa5\\xa1\\xc2\\xbd\\xbd\\x20\\x98\\x4b\\x92\\x65\\xae\\x06\\x43\\x31\\xd4\\x4b\\xdd\\x22\\xb6\\x15\\x5a\\x81\\x9b\\xc9\\x4c\\x52\\x70\\xfa\\xda\\xac\\x34\\x97\\xa0\\xae\\xa8\\xc8\\xb3\\x7f\\x4c\\x67\\x03\\x7a\\xc7\\x0c\\x1a\\x69\\xd6\\xb3\\x3d\\x37\\x4f\\x80\\x77\\xc2\\xd3\\x83\\x1a\\x9a\\xbb\\x48\\x03\\x1d\\x05\\x88\\x5d\\xa2\\xe7\\x49\\x09\\x80\\x5a\\x56\\x52\\x1b\\xf3\\xeb\\x09\\xb4\\x4e\\x5b\\x93\\x0f\\x18\\xf2\\xe2\\x9b\\x76\\x39\\x10\\x5d\\x42\\x28\\xc3\\xf5\\xb5\\xa2\\x3f\\x99\\xa9\\x59\\x9d\\xb4\\xe9\\xb3\\x65\\xdc\\xde\\x06\\x9f\\x34\\xba\\x18\\x3b\\xb6\\xc7\\x27\\x13\\x12\\xe0\\x67\\x1a\\xf3\\x91\\x3a\\xbd\\xcb\\x80\\xcf\\x3c\\x73\\x02\\x27\\xb7\\x1d\\x61\\xfd\\x2e\\xe1\\x26\\xe4\\xb5\\x10\\x15\\x8b\\xe1\\x88\\xe8\\xbc\\x8d\\x70\\x74\\xcb\\x56\\x40\\x2e\\x76\\xc4\\xe5\\xb2\\x36\\x8b\\x7c\\xde\\x0e\\x25\\x0c\\xa3\\x38\\x00\\x0e\\x04\\xb7\\xef\\x96\\xf1\\x1c\\x31\\x3b\\xbd\\x63\\xf6\\x37\\xe2\\x4f\\x9e\\x58\\xba\\xbb\\x0b\\x69\\x9e\\x60\\xba\\xa3\\xba\\x8c\\x63\\xea\\x92\\x9c\\x7c\\xdd\\x62\\xf4\\x40\\x6f\\x5f\\x7b\\xf9\\x20\\xc1\\xec\\xf3\\x9d\\x08\\xd7\\xf3\\x73\\x72\\xa2\\xc7\\x6b\\xac\\x31\\xae\\xc9\\x35\\xb2\\x11\\x6c\\x48\\x3d\\x43\\x2b\\x7b\\x9c\\x65\\x3a\\x1b\\x84\\xb8\\x3b\\x8d\\x77\\xda\\x3f\\x4f\\xca\\x67\\x1a\\xf8\\x4b\\x86\\x85\\xb1\\x7e\\x34\\x17\\x84\\x23\\xc2\\x9d\\x0b\\x60\\x9f\\x13\\xf2\\x3a\\xf9\\x94\\x46\\x7c\\x8f\\x39\\x24\\x25\\xec\\xda\\x27\\x32\\x30\\xd4\\xf3\\xcd\\xf1\\xa7\\x18\\x8a\\xc3\\x4f\\x94\\xd9\\x3b\\x46\\xd7\\x68\\xf3\\x67\\x0a\\xc5\\x3e\\x51\\x51\\x1b\\x57\\x6c\\x4f\\x1e\\x63\\xde\\x2a\\x3d\\x9e\\xb2\\x42\\x42\\x3d\\xbd\\x95\\xeb\\xab\\x23\\x88\\xb5\\x28\\x54\\x5c\\x3a\\x83\\x6b\\x9a\\x66\\x2f\\xbf\\x8e\\xa7\\x8a\\x99\\xbc\\x16\\xfd\\x45\\x80\\xff\\x38\\x6c\\xe1\\x86\\xbd\\x5b\\x56\\xba\\xcc\\xd0\\xe8\\xd5\\x3a\\xb4\\x78\\x62\\x06\\xfa\\xa6\\x18\\x62\\xa5\\xc0\\x12\\x55\\x91\\x71\\x21\\x30\\x39\\x11\\xe5\\xe8\\x3c\\x78\\x60\\xe8\\xfb\\x01\\x59\\xc0\\xc2\\x3d\\x32\\x37\\x9c\\xb7\\x01\\x02\\xc9\\xe7\\x79\\x9a\\x94\\x6d\\x01\\x16\\x7d\\x0e\\xd7\\x7b\\x98\\x97\\x22\\xf4\\x6a\\xc3\\xc6\\xed\\x6c\\xb8\\xa8\\x97\\xab\\x36\\x2f\\x75\\xd3\\xa0\\xfd\\x5a\\xbe\\xd4\\x23\\x5f\\xc8\\x88\\xb3\\x21\\x20\\x1e\\x14\\x2d\\xc6\\xaa\\x03\\xb3\\xd2\\x95\\x31\\x98\\xf4\\x1c\\x14\\x89\\x84\\x4f\\x71\\x64\\x6f\\x78\\xba\\xe3\\xa9\\xe0\\x55\\x6a\\x18\\x2d\\xad\\x07\\x9b\\x27\\x5e\\xe6\\xd5\\xba\\xe1\\x1a\\xb3\\x4a\\x03\\xc6\\x00\\x62\\x13\\xd1\\x5d\\xdf\\xe1\\xaa\\x5b\\xbb\\x3c\\xcc\\xde\\xd0\\x79\\x45\\x56\\x3f\\x09\\x3a\\x1b\\x4f\\x14\\xee\\x44\\x02\\xac\\xf3\\x85\\xb1\\xff\\x09\\x62\\x5d\\x52\\x5c\\x25\\x9b\\xc6\\xf2\\xff\\x16\\x22\\xd6\\xfa\\x19\\x77\\x4d\\x46\\xac\\x81\\x2e\\xf4\\xd0\\xe9\\x26\\x5f\\xe6\\x45\\x52\\x93\\xd6\\xc2\\x13\\x0e\\x0d\\x45\\xe4\\x4b\\xcd\\x7e\\x9f\\x20\\x31\\x4d\\x3b\\xcc\\xc4\\xca\\x24\\x43\\x27\\x29\\xc5\\xb8\\x08\\xef\\x5f\\x29\\x38\\x75\\x59\\x5a\\x84\\xa7\\xc9\\xfa\\x3a\\x95\\x09\\x89\\xe8\\x8e\\xdc\\xc5\\x3f\\xf7\\x90\\xcf\\x8c\\x2c\\x76\\xfb\\x56\\x01\\xff\\xf0\\x0c\\x71\\xd3\\x43\\xeb\\xaf\\x9e\\x03\\xb1\\x7b\\x18\\x4a\\x96\\xeb\\x58\\xb6\\x95\\x5d\\x83\\xcf\\x96\\xff\\x12\\x05\\xaa\\x5e\\x3e\\x8e\\xcb\\xd3\\xa1\\x5c\\xb8\\x62\\x7d\\xd0\\x59\\xa5\\xee\\x4d\\x19\\x50\\x9a\\xba\\xdc\\x7f\\xfb\\x42\\x41\\x3b\\x64\\xdd\\xdb\\x86\\x98\\xe9\\x46\\x18\\x84\\xa1\\xcb\\xad\\x99\\x65\\x48\\xb7\\x88\\x16\\x26\\x1d\\x60\\xfc\\x57\\xec\\x38\\x46\\xbf\\xd0\\x5d\\x6b\\x88\\xeb\\x40\\xdd\\x33\\x45\\xed\\x51\\x19\\x98\\xca\\xb5\\x95\\x02\\x5c\\x75\\xb2\\x10\\x80\\x27\\x11\\x95\\x97\\xf3\\xaa\\x5e\\x26\\x11\\x4e\\xd6\\xd1\\x0f\\x87\\x4a\\x06\\xbe\\x93\\x74\\x03\\x9d\\xdb\\x58\\xe9\\x7c\\x04\\x9e\\x0e\\xe0\\xfd\\xe5\\x1f\\x03\\x8a\\x17\\x92\\x67\\x67\\x63\\x08\\xe0\\x7f\\x20\\x63\\xeb\\xc6\\xc2\\x6b\\x90\\x82\\xe6\\x96\\x40\\xbb\\x6d\\xb5\\x35\\xa6\\x2e\\xd8\\xfd\\x08\\xbb\\x08\\x27\\x92\\x0d\\x6d\\x57\\xaf\\xaf\\xc5\\x8f\\x2d\\xfd\\x36\\x02\\xd9\\xcd\\x68\\x74\\x5a\\x9e\\x71\\xd8\\x58\\x69\\x7e\\x81\\xd2\\xcb\\xee\\x6e\\x69\\x55\\xa9\\xfb\\xfb\\x08\\xd0\\xb0\\x2e\\xf7\\x6b\\xbd\\x87\\x1a\\x4a\\x02\\xb8\\x6f\\xd0\\x4c\\x80\\x9c\\x7b\\x40\\x75\\xe9\\x56\\xa6\\x21\\x6e\\x64\\xf1\\x5f\\x1d\\xea\\xbe\\xfe\\xb4\\x2a\\xf2\\x34\\x6f\\x8b\\x0d\\x92\\xa3\\x29\\xb1\\x00\\xf0\\x23\\x12\\x67\\xa9\\x7e\\x19\\x9c\\x9e\\xf0\\xd6\\x30\\x3b\\x2e\\xa2\\xb0\\xf9\\x40\\x3f\\x57\\xfa\\x1d\\x0d\\x65\\x56\\x01\\xac\\x43\\xec\\x55\\x06\\x8a\\xc5\\x1e\\x64\\xe0\\x61\\x04\\xcc\\x50\\xf2\\x33\\x9c\\xa4\\x7a\\xe2\\xba\\x4e\\x5d\\x19\\xb1\\xd7\\x54\\xb5\\x06\\xa1\\x08\\xcd\\x22\\xb1\\x4e\\xfb\\xa0\\x97\\x8f\\xd4\\x4d\\x18\\xfd\\xdc\\xe5\\x27\\x7a\\xa7\\x96\\x46\\xa1\\x6d\\x9d\\xa9\\x59\\x3d\\xc5\\x2a\\xd5\\x11\\x14\\x28\\x38\\x9c\\xb1\\xf9\\x44\\xe1\\x4f\\x59\\x8b\\xd0\\xd6\\xb9\\xbe\\xa4\\x50\\x4d\\x79\\xd1\\x92\\xa8\\x60\\x4e\\x71\\xb9\\x38\\xb8\\x93\\x08\\x93\\xa3\\x47\\xa3\\x75\\xae\\xdb\\x77\\x45\\xd6\\xd9\\x30\\x5d\\xdc\\xb2\\x5e\\x5a\\xe3\\x95\\x81\\x8c\\x7d\\x2b\\x53\\x5e\\x6d\\xb3\\x6b\\xee\\x9a\\x77\\x0b\\x43\\x99\\xcf\\xaa\\xbc\\xc2\\xd9\\x8b\\x90\\x07\\x34\\x6a\\x26\\xd4\\xf7\\xc5\\xbb\\x92\\x2c\\xc5\\xb4\\x28\\x09\\x9b\\x75\\x2b\\x16\\xea\\xc6\\x2a\\x5f\\x9e\\x57\\xcb\\x19\\x01\\x20\\x6b\\x74\\x4e\\x60\\x28\\x2f\\xb4\\x9b\\x65\\x33\\x5d\\xbb\\x05\\x71\\x9a\\x5d\\xdc\\x06\\x74\\x32\\xc2\\x54\\x56\\xb7\\x60\\xb8\\xf8\\x2c\\x60\\x5c\\x6a\\xd8\\x54\\xb8\\x65\\x32\\x5d\\x68\\xa8\\xcc\\x22\\x00\\x03\\xcf\\x4b\\x50\\xad\\x07\\x2a\\x9f\\x35\\xbd\\x31\\xcc\\xea\\xbc\\x3c\\x6f\\xd4\\x2c\\x49\\x2f\\xb0\\xbd\\x55\\x52\\x4a\\x99\\x09\\x8e\\xfe\\xed\\xcb\\x69\\x68\\x64\\xda\\xbb\\xea\\x1c\\x4b\\xa4\\xad\\x75\\x9b\\x2e\\xf0\\x71\\x11\\xff\\x86\\xbc\\xef\\x2e\\xa3\\xe6\\xeb\\x4c\\x01\\x55\\x21\\xd7\\xdf\\x55\\x72\\x63\\x37\\x2f\\x27\\x89\\x6c\\xa6\\x43\\x37\\x7d\\x9e\\x8c\\x60\\x58\\x1d\\x47\\x53\\xac\\x8a\\xec\\x39\\xdc\\x3c\\xab\\x22\\x43\\x73\\x29\\xac\\x1c\\x13\\x6d\\x4b\\xd2\\xe7\\x8f\\x8a\\xdc\\xbf\\x2f\\xf2\\x8a\\xd0\\xc0\\x66\\x84\\x02\\x5d\\xe8\\x37\\xec\\xc6\\x6f\\x86\\x7b\\xd8\\xec\\xa2\\x37\\xbf\\x49\\xec\\x03\\x98\\x35\\xb3\\x6c\\x53\\x91\\xf9\\xf4\\xb7\\x33\\x9b\\xc1\\x56\\x7b\\x81\\xd5\\x5e\\xe0\\xe8\\xfc\\x2a\\x2f\\x46\\xe2\\x56\\xfc\\x59\\xf4\\xf9\\xf4\\x82\\x99\\x13\\xdc\\x51\\x56\\x49\\x49\\x3f\\xbd\\xa7\\x5b\\xa4\\xbb\\x1b\\xe1\\xfa\\x4f\\x2d\\x58\\xde\\xe3\\x83\\xb3\\x0a\\x9d\\x68\\x6c\\x42\\x70\\x62\\xbd\\x11\\xc5\\xcc\\x82\\xab\\x22\\xf3\\x6c\\xdd\\xab\\x16\\xc0\\x45\\x56\\x75\\x75\\x99\\x67\\x5a\\x25\\xea\\xff\\x3a\\x79\\xf7\\x76\\xaf\\x49\\xe6\\x6c\\x9d\\x64\\x76\\xc2\\xe4\\x5c\\xb7\\xdf\\x8b\\xcb\\xc8\\x18\\xe4\\x55\\xb8\\x3e\\x68\\x73\\x8c\\xc3\\x7e\\xb0\\xef\\xb6\\x60\\xba\\xd6\\xac\\x8a\\xbc\\xf5\\xb6\\x90\\xd9\\x51\\x57\\x95\\x34\\x6e\\x5f\\x6d\\xa8\\x52\\x78\\xf9\\x1b\\xa2\\x72\\x1b\\x8c\\xba\\xbf\\xab\\xab\\xf5\\x6a\\xac\\xf2\\xb2\\x69\\x93\\xb2\\xcd\\x11\\xb0\\x5d\\x5c\\x41\\xd1\\x1d\\xb9\\x97\\x43\\x05\\x21\\x5e\\x03\\x5a\\xc4\\x1b\\xc3\\x54\\xd9\\xa0\\xae\\x96\\xe4\\x90\\xdd\\xfa\\x8a\\x63\\x05\\xad\\xe1\\xa2\\xf8\\xfd\\x51\\x4f\\xd5\\x36\\x7f\\xe9\\x49\\x9a\\x14\\x05\\x56\\x39\\x52\\x47\\xd8\\x9a\\x84\\x6f\\x36\\x44\\xb0\\xe3\\x96\\xd7\\x59\\xd3\\x37\\xdc\\x37\\x07\\x5b\\x5c\\xea\\xab\\xe7\\xf6\\x1b\\x19\\x2e\\xba\\x6e\\x39\\x6d\\x8e\\xcb\\x77\\x33\\xf2\\xad\\x1b\\xc5\\xfe\\x08\\x4d\\xfa\\xbd\\xcd\\x11\\x35\\xea\\xff\\xed\\x6c\\xac\\x96\\x6a\\xaa\\x86\\x97\\x55\\x9e\\x39\\xaf\\x5a\\xd7\\x1a\\xf5\\x83\\xde\\xc3\\x7c\\x2b\\xc6\\xa3\\xd0\\x88\\xf1\\x48\\x9e\\x20\\x37\\x52\\xa5\\xc3\\x2b\\xef\\x59\\x6b\\xac\\xea\\x6a\\x65\\x88\\xc7\\x05\\x5e\\x87\\x40\\x76\\xe0\\x28\\x58\\xad\\x26\\x70\\x33\\x1b\\xee\\xff\\x07\\x9e\\x74\\xc3\\x5f\\xb3\\xdd\\xd1\\x57\\xfb\\xa3\\x3e\\x44\\x68\\x47\\x5b\\x88\\x84\\x39\\x5c\\x9e\\x1e\\x9a\\xe3\\x88\\xd0\\xa0\\xc5\\x86\\x36\\x52\\xb3\\x1b\\xe0\\xe8\\xd4\\x34\\x76\\xe6\\x4e\\x56\\xf8\\x29\\xb2\\xc3\\xb9\\xa0\\xe3\\x5f\\x2d\\x20\\x98\\xdd\\xed\\xc1\\xa6\\x34\\x4b\\x49\\xbb\\xf2\\xa3\\xb9\\xbd\\x23\\x6e\\xc4\\x03\\xb5\\x4a\\xea\\x64\\xa9\\x8d\\xc0\\x70\\x9e\\x5f\\xea\\x12\\x0d\\x09\\xcb\\x0d\\x79\\x8d\\x19\\x66\\x40\\x00\\x15\\x70\\x81\\x34\\x17\\x45\\xd6\\x29\\x80\\x42\\x15\\xe1\\x25\\xac\\x2f\\x1a\\x09\\x74\\x33\\x1d\\xc3\\x1c\\x4a\\xe6\\x2d\\x96\\xb6\\xee\\xb2\\xbe\\x3e\\x63\\x02\\xbd\\x7b\\x3d\\x57\\xa0\\x54\\x33\\xf7\\xed\\x85\\x2e\\x32\\xeb\\xca\\x86\\x91\\x61\\xe7\\x45\\x72\\x0e\\x57\\x71\\xdd\\x8e\\x29\\xad\\x51\\x09\\x79\\x53\\x20\\x02\\x46\\x5e\\xa6\\xc5\\x1a\\x18\\x0d\\x0e\\xc9\\xf6\\x0e\\x20\\x3a\\xf0\\xb6\\x04\\x46\\x93\\x89\\x6a\\x74\\x5a\\x95\\x99\\xcd\\x31\\x9a\\x98\\xf2\\x02\\x8e\\x0a\\x74\\xcc\\x1b\\x86\\xcf\\x40\\x4f\\x1b\\x68\\x69\\x86\\x4f\\xab\\x08\\x8f\\xe6\\xb5\\xd2\\x4c\\x3c\\x39\\x83\\x66\\x68\\x59\\xb5\\x1c\\xed\\xa9\\x59\\xa7\\x12\\xa7\\x18\\xc7\\x20\\x22\\x84\\xa2\\x7f\\xe5\\x18\\x9f\\xff\\x79\\x8c\\x4e\\xe0\\x95\\xbf\\xc9\\x90\\x8b\\x9d\\xc5\\xa5\\x87\\x88\\x3b\\xe3\\x24\\x16\\x06\\x79\\x19\\x57\\xcd\\x33\\xd6\\x0b\\xa7\\xcb\\xd5\\x10\\xdb\\xeb\\x7a\\x96\\x90\\x0b\\x15\\xe5\\xbd\\x37\\x45\\xad\\x3e\\xf5\\x4b\\x64\\xf7\\xb6\\x82\\xed\\x8d\\xf0\\x93\\x55\\x8a\\x5c\\xd7\\xa1\\xac\\x25\\x55\\x7b\\xd8\\x74\\x1b\\x11\\x53\\xd0\\x6d\\x22\\x56\\x99\\x60\\x73\\xc2\\x3b\\xa5\\xeb\\xb7\\xda\\x31\\xd0\\xeb\\xe4\\x46\\xb3\\x8b\\xeb\\x6b\\x5a\\x06\\x5b\\x88\\x76\\xcf\\x4b\\xa4\\xc3\\x38\\x3a\\x0b\\x2d\\x60\\x96\\x37\\x69\\x52\\xb3\\x67\\x56\\xd3\\x76\\x96\\xdb\\x79\\xcd\\xe0\\xc3\\xb7\\x5c\\x70\\xeb\\xab\\x12\\x5f\\x79\\x89\\x9e\\xc4\\x29\\xe2\\xbd\\x89\\x34\\x8d\\x0e\\x4a\\x1c\\xf6\\x12\\x79\\x0a\\x70\\x8d\\x37\\x68\\x9a\\x14\\xf4\\x22\\xf0\\xfb\\x95\\x84\\x29\\xdd\\x7a\\x92\\x7a\\x33\\x1c\\xc5\\x89\\xf4\\x0c\\x1d\\xbf\\x58\\x07\\xe7\\xcf\\x98\\xf7\\x06\\xdf\\xc0\\xa2\\x83\\xf9\\x55\\x49\\x3a\\xc4\\x6a\\x2e\\x3f\\x83\\x08\\x8d\\xc7\\x07\\xc8\\xcc\\xff\\x5c\\x27\\x05\\xb2\\x9d\\x40\\x7f\\x88\\x2d\\xf5\\xcd\\x6f\\xe3\\x26\\xb8\\x89\\x28\\x07\\x03\\x77\\xb6\\x3f\\x38\\x9f\\x5f\\xee\\x9c\\x49\\xf7\\x18\\xeb\\x72\\x15\\x9b\\x6b\\xe1\\x10\\x06\\xdd\\x87\\xbf\\xd0\\x5c\\x4e\\xae\\x23\\xc6\\x13\\xb9\\x3a\\x01\\x0b\\xc2\\x2f\\xf0\\xa3\\xec\\xa1\\x80\\x13\\x54\\xa5\\x7a\\x0b\\xf8\\x13\\xb9\\xea\\xd8\\xf7\\xdf\\x5a\\xbe\\x54\\x0b\\xfe\\x2d\\xee\\xed\\x60\\xa9\\xfe\\xae\\xd4\\x41\\x0b\\xf9\\x98\\xf7\\x48\\x67\\x2d\\x2c\\xbe\\x50\\x30\\x6f\\x02\\x1e\\xda\\x4e\\x09\\x33\\xbb\\xf8\\x28\\xfa\\x21\\x17\\xba\\xf3\\xd0\\x19\\xec\\x07\\xdd\\x90\\x8b\\x9a\\xe7\\x7b\\xe9\\x8f\\xdd\\x07\\xfc\\x3e\\x09\\x3c\\xeb\\xa1\\x17\\x92\\xe9\\x04\\xa3\\xed\\x76\\x79\\xab\\x6f\\x7e\\xa7\\x8b\\xdf\\xe5\\xa0\\x53\\x99\\xcb\\x68\\x83\\x64\\x31\\x84\\xd0\\x98\\x75\\xe3\\xee\\xf7\\x6d\\xa5\\xf2\\x72\\x5e\\xac\\x75\\x99\\x6a\\x95\\xf8\\xca\\x7c\\x8a\\x22\\xe4\\x06\\x83\\xba\\x83\\xa0\\x52\\x4f\\xc7\\x1e\\x6e\\xa0\\x99\\x91\\xfa\\x88\\x93\\x92\\x84\\xe8\\xd6\\x6e\\x2c\\x6c\\x96\\x8f\\x42\\x94\\x29\\xff\\x4c\\xea\\x42\\xc0\\x98\\xff\\x7c\\xe0\\xa9\\x53\\x96\\x77\\x62\\xbb\\xad\\x6f\\x97\\xe1\\x4e\\x0b\\x61\\x5f\\x7c\\xd8\\x9f\\x22\\x5f\\x91\\xff\\xea\\x58\\x75\\x41\\x7f\\xe4\\xc3\\x64\\xdf\\x7f\\x3d\\x55\\x08\\x54\\x20\\xa5\\x6e\\xb0\\x26\\x54\\xef\\x1e\\x6d\\x79\\x7b\\xc0\\x83\\xcc\\x7b\\x68\\x8b\\xae\\x36\\x9b\\x45\\x57\\xb3\\xdf\\x46\\x1d\\xc3\\x57\\x57\\x7c\\x02\\x81\\xc3\\xb6\\xd4\\x00\\x19\\x4c\\x25\\x0e\\xf4\\x6a\\xf6\\x1b\\x4f\\xfb\\x3d\\xf9\\x6e\\x26\\xb5\\x39\\x11\\x56\\x63\\x4b\\x41\\x75\\xc1\\x5b\\x9b\\xb5\\x08\\x27\\xcb\\x25\\xd6\\x0a\\x80\\x82\\x3d\\xb0\\x55\\xb5\\x75\\x92\\x5f\\x72\\xec\\xb5\\x27\\xa0\\x44\\xb2\\x81\\x94\\x8f\\x70\\x68\\x60\\x29\\x2c\\x15\\xf8\\xed\\x9b\\x0d\\xac\\xc0\\xd7\\xce\\x33\\xb4\\x22\\x83\\xf5\\x52\\x9f\\xc6\\xdf\\x02\\xd8\\x2e\\xd5\\x76\\xf0\\x6d\\xf5\\x53\\x99\\x55\\x91\\x8e\\x85\\x72\\x46\\x64\\xd3\\x87\\xd9\\x2d\\xa4\\x1d\\x3f\\xe6\\xc7\\x58\\xeb\\x2d\\xf5\\x74\\x18\\xcc\\xb6\\x0e\\x6e\\x79\\x52\\xb3\\xcf\\xfb\\xe1\\xcb\\x25\\xb8\\x7f\\x4e\\xf2\\x4c\\x1d\\xa9\\xb7\\xc9\\x5b\\x9f\\x37\\x45\\x3b\\xd9\\xdb\\x01\\x2b\\xd8\\x2c\\x92\\xe6\\x7b\\xe4\\x5b\\x5b\\xa9\\x7d\\xe4\\x1c\\x1e\\xe1\\x95\\xc8\\x2b\\xb5\\x8d\\xc8\\xed\\x3b\\x43\\x03\\x87\\xe4\\x9d\\x99\\x9c\\xf5\\x9d\\x9b\\xe5\\x49\\x13\\x7f\\x2d\\x84\\x2f\\xf4\\x2a\\x05\\x82\\xab\\x27\\x25\\x91\\xe7\\x76\\x47\\x7a\\x22\\xa0\\xa4\\xc7\\xea\\x40\\x3d\\x55\\x7b\\x87\\xea\\x08\\xad\\x27\\xe5\\xac\\xbd\\x2e\\x4b\\x9e\\x8e\\xe6\\x22\\x5f\\x1d\\xb7\\xd5\\x32\\x4f\\x5f\\x97\\xb1\\xa5\\x37\\x7d\\x20\\x33\\xc8\\x91\\x7d\\xae\\x8f\\x3d\\x10\\x31\\x56\\xba\\x7d\\x1d\\x72\\xa6\\x4a\\x3c\\x43\\x18\\x80\\x05\\xc1\\xde\\x7e\\x46\\xb0\\x59\\xcb\\x53\\xfa\\x77\\xa9\\xec\\x2c\\x2b\\x51\\x40\\x89\\xa4\\x0b\\x7e\\xef\\xa1\\x39\\xe8\\x80\\x98\\x53\\x3a\\xed\\xae\\x90\\x8b\\x59\\xff\\x11\\x4b\\x78\\x78\\x98\\xbc\\x2e\\x57\\xeb\\xd6\\xca\\x69\\xf4\\xa9\\xf1\\x57\\x34\\xa3\\x20\\xab\\xb8\\xfb\\x80\\x1b\\xe2\\xb8\\x8e\\xd3\\x36\\xbf\\xcc\\xdb\\xcd\\xd0\\x0d\\xfd\\x26\\xee\\x7c\\xe2\\x65\\x47\\x5e\\xc9\\x67\\xf0\\xcf\\xba\\xce\\xe7\\x1b\\x54\\xd8\\xfa\\xc2\\x82\\x7d\\x03\\x5e\\x25\\x35\\xe1\\x4e\\xe1\\x47\\x65\\xee\\xd5\\x09\\x2c\\x24\\xdc\\x82\\x51\\x31\\x4f\\x4c\\x52\\xca\\x4e\\xcf\\x17\\x3a\\xbd\\xf0\\x56\\xba\\xbb\\xad\\xef\\x46\\x1f\\x76\\x17\\xa3\\xdc\\x88\\xab\\xee\\x24\\x1d\\xb4\\xc5\\x95\\x82\\x0e\\xe8\\x9f\\xef\\x38\\x80\\x4e\\xcf\\xef\\x46\\xa8\\xcb\\x04\\x5f\\x51\\x3c\\x29\\xbc\\xef\\x95\\xe6\\xce\\xd8\\x26\\x5d\\x5c\\x13\\xa7\\xdc\\xee\\xda\\x7d\\x4c\\x3b\\x52\\xa6\\x33\\x27\\x8d\\xa3\\xa4\\x90\\x98\\x7d\\xcc\\xb7\\x5b\\x37\\x56\\x71\\xe6\\x5b\\x88\\x14\\xd3\\xae\\xd9\\x78\\x45\\x66\\x93\\x82\\xc1\\xcb\\x4a\\xbf\\xc7\\xfb\\x6c\\xbc\\x4a\\x92\\x1f\\x5d\\x85\\x98\\x10\\xab\\x8e\\x1e\\x98\\x0c\\x9b\\x74\\x5d\\xbd\\xe7\\xeb\\x05\\xe8\\x23\\x34\\x69\\x3f\\x39\\x08\\x28\\xae\\x26\\x78\\xd8\\xea\\x48\\xe3\\xf8\\xba\\xc5\\x7a\\xe1\\x2e\\x72\\x84\\x6d\\x7f\\xcc\\xad\\x45\\x11\\x24\\xf0\\x91\\xab\\xef\\xd6\\xe2\\x4b\\xea\\x0a\\x24\\x4b\\x9f\\x07\\x09\\x82\\xb3\\xdb\\x81\\xa1\\x60\\xde\\x9b\\x7f\\xb3\\xbc\\x8e\\x51\\x5c\\x11\\x71\\x53\\x66\\xf8\\x16\\x2b\\x20\\x84\\xcf\\xaf\\x3d\\xfe\\x5d\\x61\\xbe\\x3e\\x9d\\x70\\xb3\\x8a\\x3c\\xbd\\xc2\\xa5\\x6e\\x09\\x6f\\x87\\xa4\\xc0\\xb7\\x2b\\x39\\x6c\\x56\\x84\\xe8\\xe7\\xe2\\xd3\\x0f\\x97\\x13\\xd0\\x6e\\x35\\xf9\\xa5\\x06\\x3c\\xe4\\xa7\\x8a\\x73\\x3d\\x66\\x44\\x23\\x33\\x4f\\x9c\\xc6\\xe8\\x33\\x23\\x19\\x16\\xcf\\x54\\xdc\\x56\\x7d\\xd5\\x7e\\x80\\x70\\x15\\x50\\x6f\\x5b\\xa9\\x27\\x7e\\xad\\x26\\xc5\\xd6\\xe9\\x53\\x8c\\x3f\\xc9\\xf8\\x1f\\xc9\\xa0\\xee\\x64\\x46\\x06\\xfc\\xb2\\x84\\xf8\\x78\\x9e\\xf6\\x74\\x19\\x7d\\x64\\x15\\xa2\\xb7\\x8d\\x90\\x18\\xae\\x89\\x8c\\x47\\x8c\\xff\\xa1\\xd4\\xb5\\xb7\\x97\\x3f\\xb2\\x5a\\xf0\\x9b\\xae\\xa6\\x54\\x52\\xfb\\x72\\x82\\x6c\\x2d\\x70\\x7c\\x13\\x59\\x90\\xa0\\xc2\\x17\\x9e\\x52\\x27\\x86\\x19\\x2c\\x27\\xf3\\xbc\\xcc\\x86\\x59\\x5e\\xd3\\x99\\x6e\\x8e\\xf4\\xbd\\xc3\\xd1\\x18\\x6c\\x9f\\xba\\x5a\\x6d\\x86\\xc6\\xe6\\xec\\x9d\\xe9\\x3f\\x52\\xc1\\x42\\xfb\\xef\\x40\\xdc\\x6c\\x75\\xa9\\xed\\xa5\\xc3\\xa4\\x8d\\xd5\\x1e\\x10\\x3c\\x7c\\xbf\\x7f\\x1f\\xfe\\xb5\\x00\\x48\\x16\\x9e\\xe8\\x29\\x92\\xff\\x11\\xa9\\x91\\x6e\\xbc\\x4e\\x6d\\x2f\\x0a\\x0a\\x11\\x1c\\x92\\x11\\x76\\xb0\\x4d\\x9a\\x9a\\x11\\x7d\\xe5\\x41\\x41\\x3e\\xf3\\xe7\\x11\\xfe\\xf9\\x44\\x39\\x07\\x60\\x25\\x61\\x94\\xa2\\xbb\\x18\\xab\\x5e\\x45\\xf6\\xb0\\x5b\\x40\\x71\\x7d\\x9c\\xc7\\xd7\\xc1\\xc9\\x56\\x5b\\x27\\x1d\\xb6\\xd2\\x51\\x67\\x19\\xe4\\x05\\x72\\xde\\x9d\\xf1\\xb9\\xe9\\x21\\x74\\x6e\\xfe\\x05\\xd3\\x6c\\x91\\x53\\x6b\\xb3\\xc9\\x62\\x43\\x9f\\xf7\\x8d\\xfc\\xc8\\xc1\\x7c\\xa3\\x65\\xb0\\xe0\\xa4\\xab\\xaa\\x61\\x75\\x1b\\xc6\\xd0\\xeb\\x68\\xbf\\x73\\x3c\\xd4\\xf3\\xb2\\x81\\x57\\xb8\\x92\\x4e\\xf2\\xae\\x42\\x23\\x38\\x86\\x3c\\x7e\\xda\\x77\\x84\\x9b\\x69\\x9d\\x2a\\x92\\x86\\xd5\\x61\\x60\\x2a\\xf0\\xc5\\x7c\\xda\\x59\\x99\\xdd\\xe3\\x44\\x78\\xa5\\xbd\\x5b\\x3d\\x28\\x0a\\xbb\\x4a\\x6e\\x2f\\xb6\\xf7\\x67\\xb5\\xbf\\x27\\x3a\\x10\\xda\\x41\\x38\\x61\\x36\\x29\\xdb\\x97\\x19\\xa0\\xae\\x5b\\x01\\x55\\x40\\x8a\\x79\\x30\\x5a\\xfe\\x79\\x09\\x55\\x79\\x47\\xa0\\x47\\x91\\x8e\\x68\\x9c\\x2d\\x91\\x24\\xfa\\xfb\\xf7\\x99\\x9b\\x4b\\x03\\x7b\\x0f\\x29\\xed\\x89\\xb2\\xcd\\x4b\\x6c\\x3e\\xa9\\xde\\x20\\xbc\\x35\\xc6\\xdf\\x38\\x1c\\x05\\x2e\\x49\\xa1\\xb9\\x87\\x50\\xf4\\x9b\\x8e\\x3c\\x09\\x3b\\x02\\x27\\xad\\x21\\x9b\\xf8\\x71\\x3c\\x92\\x66\\x20\\xd1\\x3e\\x3f\\x56\\x31\\xfb\\x2a\\x54\\x38\\x78\\x60\\x6d\\x02\\x40\\xf0\\xd0\\x4c\\xee\\x9d\\xfa\\xdd\\x79\\x26\\x90\\x35\\x59\\xcc\\xb8\\x5d\\x33\\xef\\xa3\\x4e\\xf0\\x73\\x14\\x9c\\x8f\\x8b\\x42\\xc2\\x46\\x79\\x57\\x78\\x70\\xeb\\x5b\\x4e\\x2c\\x2a\\xc0\\x70\\x84\\x4a\\x74\\x4a\\x67\\xa7\\x7e\\xc0\\x39\\x6d\\x74\\xf1\\x8f\\xac\\x2a\\x29\\xa4\\x8b\\x55\\xcf\\xbe\\x7f\\x71\\xfc\\xf1\\xf5\\xdb\\xef\\xd0\\x7b\\x1a\\x6c\\x49\\xf9\\xb8\\xc5\\xfb\\x2f\\x3d\\x47\\x5b\\xdd\\xa0\\xaf\\x12\\x64\\xc7\\xc5\\x40\\x09\\xd8\\x35\\xeb\\xb0\\x21\\xd1\\xa3\\xda\\xbf\\x34\\x29\\x53\\x5d\\xe8\\xec\\x08\\x6f\\x19\\xa8\\xeb\\xea\\xbe\\xd6\\x42\\xb2\\xff\\x62\\x8b\\x49\\xe1\\xab\\xad\\xaf\\x2c\\xf3\\x6c\\xd2\\xc7\\xa2\\xc1\\xa3\\x38\\xa6\\x70\\x35\\xfb\\x6d\\xc2\\x3d\\xa2\\x6d\\xf6\\xc8\\x0a\\x9f\\x2e\\x64\\x2e\\x88\\xb8\\xb3\\xdf\\x26\\x36\\xf2\\xbc\\xab\\x8c\\xdf\\x96\\xc7\\x16\\x51\\xd3\\x34\\x2d\\xe9\\x0f\\x31\\x2f\\xb1\\x02\\x46\\xd7\\x91\\xfb\\x04\\xbf\\x3b\\x24\\x13\\xb0\\x35\\x84\\xdc\\xe8\\x57\\x22\\xf3\\x9a\\x6f\\x22\\x27\\x21\\x97\\x42\\x5e\\x84\\xca\\x81\\x7f\\x5c\\x0e\\xb2\\x87\\xbd\\x37\\x9d\\xaa\\x75\\x99\\xe9\\x79\\x5e\\xa2\\x0d\\x8d\\x29\\x51\\xf9\\x86\\xa4\\xe2\\xac\\x88\\xa8\\x14\\xff\\xb0\\x26\\xb1\\x4f\\x81\\x28\\x34\\x88\\xbc\\x00\\x31\\x1b\\x30\\x8e\\x6d\\x87\\x14\\xc2\\x53\\x88\\x8f\\xf9\\x38\\x45\\xfc\\x92\\xcf\\x93\\x30\\x76\\x9a\\x53\\x3b\\x48\\x56\\x99\\x1d\\xaf\\x56\\xf0\\x9e\\xeb\\x74\\xde\\xd2\\x56\\x04\\xe2\\x2e\\x64\\x19\\x06\\xa9\\xf2\\x20\\xaf\\x1e\\x80\\x85\\xbc\\x6f\\x04\\x4f\\xf8\\x04\\x36\\xaa\\xd5\\x6d\\xe0\\x12\\xcb\\xe4\\x42\\xc7\\x36\\x4b\\x7e\\x5e\\x56\\xb5\\xfe\\xa0\\x93\\xcc\\x21\\x4c\\x74\\x95\\x1b\\x18\\x75\\x48\\xa8\\x31\\x24\\x11\\xb3\\x3f\\x9f\\x9d\\x7b\\xd7\\xd6\\x68\\x7b\\x63\\x8e\\x52\\xa8\\x6e\\x84\\x73\\x6b\\xd6\\xab\\x55\\xad\\x9b\\xc6\\x9c\\x3e\\x4d\\x10\\x1b\\xc4\\x2e\\x5d\\x8f\\x3a\\xee\\x4b\\xb5\\x70\\x56\\xf9\\xc6\\x0c\\x82\\x4d\\x3e\\xfa\\xf9\\x0b\\xbb\\xf2\\x7a\\x38\\xbe\\xb1\\x6e\\x82\\x5b\\x2f\\x84\\x8f\\xda\\x90\\x19\\x50\\x55\\x2b\\x1e\\x1c\\xac\\x30\\xed\\xe8\\x59\\xd2\\xe8\\x8c\\x81\\xce\\xcc\\x57\\xc3\\xf3\\x6c\\xdc\\xbb\\x5a\\x27\\xd9\\x5e\\x55\\x42\\x25\\x49\\x09\\x91\\xe4\\xf3\\xb6\\x61\\x89\\x88\\xaf\\x6d\\x05\\x9c\\xd4\\x4d\\x72\\xc5\\xd3\\x8b\\x46\\xb3\\xf7\\xef\\xab\\x7b\\xfe\\xb4\\x23\\xd8\\x86\\x39\\x91\\x39\\x05\\x2e\\xc3\\xcd\\x56\\x07\\x6c\\x56\\x95\\x99\\x66\\x78\\xaa\\x7c\\xc0\\x30\\xf3\\x45\\x68\\xa2\\xcd\\xad\\xf3\\x09\\xdc\\x3e\\xf7\\xf6\\x04\\x74\\x98\\x23\\x0d\\x21\\x9b\\xd0\\xf6\\x82\\x2a\\x4e\\xf3\\x33\\xb1\\xc7\\x6c\\x92\\xdb\\x68\\xb9\\x7a\\xaa\\x4e\\x07\\x83\\x33\\xe5\\xf3\\xe1\\x38\\x0f\\xbe\\x19\\x75\\xcf\\xc8\\x68\\x17\\x24\\x84\\x9a\\x27\\xb8\\x6c\\xc9\\xec\\x60\\x86\\x3b\\x76\\xa0\\x88\\xa3\\x2c\\x80\\xf3\\x08\\xc7\\x87\\x11\\xf2\\xba\\x4e\\x85\\x81\\xe3\\x61\\x40\\x4e\\xb0\\xc4\\xe4\\x9f\\x65\\x98\\xf2\\xad\\xd0\\xbc\\xa8\\x36\\xbf\\xa3\\xbb\\xeb\\x76\\xe5\\x39\\x68\\x6b\\xdd\\x3c\\x9c\\xc0\\x03\\x63\\x07\\x65\\xcf\\xd5\\x76\\x07\\xcb\\x4b\\x36\\xd8\\xac\\x35\\x52\\x3e\\x3c\\x9a\\xdd\\xe6\\x98\\xdf\\x87\\x6d\\x73\\xcf\\xc7\\x91\\xb1\\x90\\xf1\\x58\\xf7\\x58\\xbe\\xb5\\x8c\\x30\\x0e\\xb1\\xbb\\x1f\\x63\\x26\\x53\\x74\\xe8\\xb9\\xde\\x48\\x1f\\x4a\\xce\\x95\\xa1\\x6d\\x97\\xac\\x4e\\x98\\x73\\xdc\\x3a\\x41\\xa8\\xdb\\xbc\\xe3\\xe4\\xdc\\x38\\xed\\xe7\\xa5\\x06\\xaf\\x49\\xe2\\x4b\\xd2\\x34\\xda\\x1d\\x0f\\x11\\xb7\\x02\\xd7\\x9f\\x57\\x75\\xb5\\xf4\\x08\\xa0\\xdd\\xac\\xf4\\x18\\xdd\\x79\\xac\\x80\\x17\\x63\\xfe\\x4e\\xef\\x1e\\xe3\\xcb\\xc0\\x59\\xa2\\x95\\x78\\x9a\\xf3\\x3e\\xe7\\x26\\x10\\xf6\\xc6\\x92\\xa8\\x49\\xa3\\xc9\\xd4\\x5e\\xad\\xeb\\x14\\x7c\\x07\\x37\\x2b\\xb8\\xb1\\x0e\\xd6\\x65\\x56\\x0d\\xd4\\x53\\xe7\\xbc\\xa2\\x8e\\xa4\\x17\\x36\\xba\\x7c\\xf4\\x16\\x20\\xf8\\x91\\x23\\x57\\x9c\\x38\\x74\\xa0\\x22\\xaf\\x35\\x02\\xda\\xad\\x1b\\x8d\\x41\\x44\\x41\\x28\\xb5\\x56\\xcf\\x69\\x5b\\x17\\x7b\\xbf\\xab\\xab\\xaa\\x7c\\x40\\xa1\\x18\\x4b\\xad\\xb3\\x42\\x37\\x0d\\x3b\\x0c\\x74\\x10\\x1c\\xb6\\xc5\\x5d\\x87\\x41\\xc6\\x94\\xc6\\x6c\\x9a\\x89\\x39\\xa4\\x69\\x66\\x77\\xca\\xd5\\x53\\x25\\xed\\x35\\x61\\x61\\x30\\x21\\x78\\xd5\\x50\\x47\\xfc\\x21\\xf4\\x9e\\x95\\xf8\\x0c\\x1c\\x30\\x60\\x3a\\xf5\\xfb\\x17\\xb0\\xa4\\x3b\\xba\\x69\\x82\\x2e\\xc0\\x8e\\xfa\\x51\\x7c\\x7c\\x02\\x8a\\xa0\\xdf\\xfa\\xb4\\xc7\\xdb\\x87\\x08\\x89\\xfd\\x7a\\xb6\\x4c\\x53\\xef\\xbc\\x78\\xca\\xc0\\xce\\xc3\\x25\\x35\\xf0\\xd9\\x3a\\x2e\\xd1\\xdd\\xe1\\xc6\\x29\\x5e\\x6c\\x3c\\x44\\xa9\\xb2\\x13\\xa4\\xed\\x1c\\xad\\x7b\\x51\\x31\\x90\\x98\\x9e\\x41\\x60\\x8f\\xf5\\x4a\\x25\\xaa\\x36\\x3b\\xbf\\xb1\\x18\\xf8\\x64\\x83\\x8c\\xfe\\xe2\\x2c\\x20\\x56\\x2b\\xd0\\x9b\\x58\\xd3\\x62\\xeb\\x8b\\x97\\x5e\\xa8\\x61\\xad\\xb3\\x0a\\xdd\\xe9\\xc8\\x0e\\x1f\\x25\\xc7\\xcb\\x3c\\xd5\\xca\\x54\\x9d\\x8c\\x58\\x78\\x48\\xca\\x36\\x0f\\xac\\x6a\\xfb\\x5d\\xab\\xf8\\xcc\\xa0\\xf9\\x76\\x4e\\x51\\xce\\xf8\\x56\\xd4\\x37\\xde\\xea\\x24\\x1d\\x77\\x35\\xc6\\x35\\x12\\x49\\xd7\\xd7\\x71\\xf7\\x63\\x0b\\xfb\\x59\\xe0\\x34\\xff\\xc9\\x22\\xa1\\xc5\\xf5\\xaf\\xc0\\x7b\\xcc\\x1d\\x46\\x2a\\x57\\x51\\xe8\\x6f\\xcf\\x56\\x99\\xf7\\xac\\x0f\\xd0\\x80\\xec\\xc9\\x5d\\xce\\xb0\\xeb\\x86\\x32\\xfb\\xe5\\x4d\\x7a\\x0f\\x73\\x16\\xff\\x72\\x57\\x12\\x53\\x11\\x97\\xff\\xcf\\x6c\\x65\\x08\\xff\\x88\\xb5\\xf8\\x12\\xbf\\x7e\\x67\\xb6\\x49\\x24\\x6c\\xc4\\xae\\x3b\\x44\\x04\\x38\\x02\\x0b\\x06\\xec\\xe1\\xe8\\x6e\\x07\\x63\\x82\\x04\\xd5\\xef\\x04\\x22\\x64\\xed\\x5c\\xbc\\x05\\x13\\xbe\\x9f\\x39\\x9d\\x40\\xd1\\xf0\\xba\\x6c\\xab\\x9f\\x73\\x7d\\x75\\x8b\\xf5\\xb5\\x80\\x48\\xb8\\x19\\x09\\x93\\xf3\\x50\\x16\\x41\\xf1\\x9d\\x61\\xe0\\x78\\xc7\\x85\\x37\\x2c\\xc8\\xf8\\xc5\\x62\\xcb\\xbf\\x2e\\xb8\\xdc\\x55\\x74\\xb9\\x4d\\x78\\x71\\xec\\xea\\x8e\\x02\\xcc\\x6d\\xcb\\x84\\x51\\x44\\x83\\x18\\x5f\\x60\\x32\\xe5\\xed\\x0e\\xff\\xa6\\xf0\\xd5\\xa1\\xbb\\x2b\\x7c\\x75\\xe8\\x83\\x14\\x1b\\x9a\\x46\\xa0\\xd7\\xaa\\x5a\\x0d\\x21\\xef\\x88\\x2c\\xaf\\xcc\\x24\\xba\\x1c\\x23\\x87\\x2a\\x8c\\x29\\x93\\xcb\\x47\\xd2\\x5e\\x65\\x3d\\xdb\\xbb\\xcc\\xf5\\x55\\x03\\x27\\xb6\\x59\\xcc\\x9c\\x5e\\xd8\\xd0\\x56\\xb3\\x41\\x83\\x6e\\xeb\\x37\\xad\\x3f\\x21\\xee\\x5e\\x96\\x69\\x88\\xb9\\x94\\xcc\\xaa\\x4b\\x08\\xad\\x38\\xd3\\x45\\x75\\xe5\\x41\\xa0\\x61\\x48\\x6e\\x4b\\x14\\x52\\x4b\\x6d\\xaa\\xb4\\x33\\x99\\xe5\\x4d\\x9b\\x94\\xa9\\xa7\\xf2\\xc4\\x94\\x98\\xcc\\x2f\\xb4\\x85\\x53\\x5b\\xd4\\xb3\\x45\\xf0\\x4d\\x61\\x97\\xc9\\x2a\\xb0\\xca\\x94\\x94\\x58\\x07\\x97\\x54\\xf7\\x08\\x0a\\x53\\xf9\\xbe\\x6a\\xbc\\xf8\\x19\\xac\\x80\\xe4\\x76\\xfd\\xa7\\x63\\x40\\xeb\\x0c\\xca\\xb9\\xd0\\x58\\xdd\\x52\\x14\\x10\\xcb\\x90\\x06\\x44\\x79\\xea\\x31\\xf5\\xec\\xea\\x1d\\x1c\\x82\\x1e\\xf3\\x68\\xa1\\x76\\x76\\x13\\xb4\\x27\\x5a\\xb4\\x93\\xec\\xdf\\x51\\x9d\\xbd\\xac\\x8b\\xca\\x0f\\x68\\x96\\x10\\x6f\\xdd\\xf0\\xc1\\x47\\xaa\\x50\\x8f\\xe9\\xf7\\xc7\\xea\\x91\\x2a\\x9c\\x6d\\x1e\\xa0\\xc8\\xff\\x98\\x97\\x3a\\xe8\\x4c\\x31\\x56\\x03\\x0c\\x3b\\x3e\\x18\\x79\\xe8\\x56\\x6f\\xaa\\x5a\\xab\\xa2\\xba\\xd2\\xf5\\x5e\\xa1\\x2f\\x75\\xc1\\x67\\x04\\xaf\\xc7\\x18\\xd5\\x9c\\x80\\x1a\\x5f\\xa2\\x8d\\x3f\\xda\\x6d\\x32\\x0d\\x41\\xac\\xce\\xb2\\x6a\\x99\\xe1\\x54\\xa5\\x6e\\x46\\x51\\xf1\\xfe\\xf6\\xfb\\x98\\xef\\x8a\\xea\\x4e\\x40\\x5f\\xa1\\xb3\\xa3\\xe4\\x6b\\xd7\\x36\\xa5\\x8e\\x6d\\x71\\x74\\x4b\\x93\\x56\\x57\\x13\\x80\\xa2\\x3d\\xf6\\xb4\\xf7\\x68\\xf9\\xe2\\x6d\\x94\\xc8\\x85\\x7a\\x4f\\x1d\\xde\\x2d\\x76\\x8e\\x44\\xb4\\x12\\xf2\\x6c\\x98\\x8f\\x9e\\x10\\x84\\xe2\\x3a\\xb8\\xb8\\xec\\xef\\xab\\xe7\\x45\\xbe\\x92\\x71\\x88\\xe8\\x0c\\x00\\xb5\\x3d\\x78\\x9e\\x20\\x46\\x67\\x5f\\x0b\\x91\\x61\\x22\\xfe\\x69\\x3e\\x0f\\xf0\\xcb\\x83\\x41\\x4a\\xc2\\xee\\x8c\\x2f\\x32\\x5d\\xf0\\x6b\\xe4\\xab\\xaf\\xe8\\x10\\x8c\\x04\\x3c\\x31\\x47\\xa1\\x40\\xe9\\x73\\x48\\x75\\x50\\xcd\\xd8\\xc3\\xfa\\xef\\x98\\x95\\xa2\\x0e\\xe6\\x34\\x84\\xfe\\x3f\\xeb\\xd3\\xbf\\xd0\\x0a\\x08\\x14\\x39\\x7f\\xd6\\xe3\\x04\\xf2\\x44\\x11\\x8e\\x4b\\x74\\x4c\\x9d\\x83\\x1d\\x62\\x18\\x25\\x66\\x7c\\xde\\xdb\\x0c\\xd4\\xe1\\x3d\\xcb\\xf4\\x8c\\xc6\\x57\\xd2\\x6c\\x1f\\xcb\\x8e\\x95\\xe8\\x50\\x87\\x46\\x6e\\xa9\\x77\\x01\\x31\\xb4\\x56\\x6f\\x16\\x69\\x07\\x8d\\xfd\\xee\\xae\\xd5\\xb1\\xd4\\xec\\x44\\xa0\\xc8\\xb6\\x7c\\x5d\\xbe\\x04\\x10\\x5a\\xbb\\x75\\xed\\x06\\xe5\\x6d\\x69\\x6f\\x20\\x3d\\x21\\x13\\x44\\xc6\\x2d\\x36\\x92\\xbc\\xd9\\xa3\\xcf\\x3d\\x28\\x5b\\x23\\xec\\x65\\xd9\\xea\\x3a\\x41\\xbe\\x25\\x23\\xab\\x79\\xfa\\x6f\\xe7\\x8d\\x8c\\x08\\xba\\xd6\\x35\\xbf\\x0d\\x91\\x70\\x57\\x10\\x57\\x68\\xbe\\x9d\\x19\\xda\\x39\\x88\\x8c\\xdf\\xd9\\xe2\\xa6\\x36\\xd4\\xc8\\x98\\x03\\x39\\x53\\x0a\\x1f\\x11\\xb7\\xc7\\x23\\xd8\\xb1\\xba\\x2c\\x5a\\xbf\\x37\\xc9\\xa7\\x1f\\x59\\x34\\xc7\\x47\\x26\\x95\\x2e\\x74\\x7a\\xf1\\x4b\\x9e\\xb5\\x0b\\x08\\x85\\x6d\\x3e\\xd8\\x70\\x00\\xb7\\xc2\\xec\\xd2\\x1e\\x08\\x6b\\x30\\xb9\\xde\\x56\\xc3\\xcb\\xbc\\x59\\x27\\x05\\x10\\x7d\\x4f\\xc8\\x03\\x81\\x09\\x0e\\x48\\x10\\x41\\x55\\x36\\xf2\\x01\\x3e\\x37\\xc6\\x81\\x1e\\x9c\\xad\\x11\\x18\\xa5\\x91\\x97\\xc9\\x12\\xb1\\x7f\\x7d\\xa9\\x34\\x32\\x0b\\xf6\\xf9\\x58\\xdc\\x52\\x44\\xda\\x8d\\x10\\x1c\\xa5\\x6d\\xa5\\x91\\x0f\\x38\\x38\\x6b\\xaf\\xb2\\x14\\xfc\\x15\\xd9\\x70\\x36\\x66\\x3e\\x89\\x36\\xa1\\x3b\\x6a\\x2b\\xad\\x87\\xa0\\xf2\\xa6\\x94\\xdb\\xaf\\xb7\\xac\\x4d\\xff\\xcc\\x6e\\x0f\\xd6\\xd7\\x3f\\xd9\\xc0\\x2e\\x75\\x49\\xab\\x8c\\xf3\\x38\\x74\\xdc\\x9f\\x56\\x43\\x97\\xe6\\x10\\xf3\\xd7\\xe2\\x47\\xef\\xfd\\x59\\x89\\xb8\\xe5\\x94\\x81\\xea\\xec\\xfb\\x6c\\xd7\\xac\\xd0\\x65\\x5f\\x9e\\x88\\xe1\\x6a\\xef\\xd2\\x63\\xe8\\xdd\\xce\\x3a\\x33\\x62\\x78\\x58\\x02\\x2c\\x9b\\x7c\\x23\\xda\\x37\\xb6\\xdf\\x36\\xe0\\x35\\x2c\\x67\\xad\\x21\\xbc\\x0e\\x07\\x0d\\x0a\\xa9\\x3e\\x12\\x35\\xe8\\x2f\\x07\\x07\\xee\\x4e\\xaf\\x4b\\xb6\\x10\\x8a\\x1d\\xc3\\xc3\\x48\\xe0\\x0e\\x88\\xca\\x87\\x82\\xc1\\x07\\xbd\\xd4\\xe0\\xdf\\xc5\\x5a\\xc3\\x06\\xe3\\x58\\x30\\x1e\\x61\\x36\\x46\\xf4\\x06\\x33\\x00\\x76\\x20\\xa5\\x49\\x8c\\x84\\xf7\\xb0\\x92\\x97\\x1f\\xa8\\x48\\xe0\\x71\\x38\\x3a\\x9a\\xba\\x98\\x22\\xfe\\xeb\\x42\\xf8\\xf0\\x70\\xaf\\x1b\\xc4\\x83\\x39\\x9d\\x77\\x5f\\x0b\\x45\\xdb\\x74\\x29\\x66\\x71\\xac\\x06\\xa6\\xee\\x41\\x24\\xb4\\xdc\\x79\\x3c\\xbf\\xc7\\x4b\\x68\\x92\\x85\\x89\\x3a\\xdd\\xfe\\x48\\xf1\\xe2\\xab\\x6c\\x40\\x03\\x43\\x19\\x06\\x23\\xee\\xe6\\x6d\\x59\\x07\\xbe\\x08\\xc1\\xd9\\xaf\\xaf\\x83\\xb6\\x3c\\x0c\\x06\\x61\\x10\\xc0\\xaf\\xff\\x4e\\x9a\\xe0\\xb7\\xfe\\xde\\xd7\\x7e\\x45\\xcf\\x67\\xd9\\x51\\x20\\x0a\\xf0\\xe7\\xa8\\xf8\\x20\\xd4\\x7f\\x9d\\xee\\xba\\xf7\\x6b\\x34\\xec\\x96\\xe3\\x1b\\x2b\\xcf\\xef\\x45\\x96\\x16\\x63\\x73\\x31\\xaf\\xe8\\x86\\xfd\\x6e\\xf6\\x1b\\x18\\x39\\x45\\xd3\\xa7\\xea\\xf4\\x6c\\x34\\x42\\x95\\x80\\xad\\x99\\xf1\\xe4\\xd9\\x85\\x50\\x17\\xaf\\xaa\\xfa\\x79\\x55\\x9a\\x81\\xbf\\xd1\\xe5\\x9a\\x95\\xb9\\x7e\\xd0\\x31\\x70\\x7c\\xf9\\x20\\x24\\x95\\x2a\\x13\\xb0\\x45\\xbe\\x41\\x02\\x46\\xf0\\x06\\xfb\\x02\\x0c\\xdb\\x6c\\x0e\\x57\\x19\\x7b\\xd3\\x14\\xf0\\x62\\x74\\x82\\x06\\xaa\\x31\\x53\\xf3\\x08\\xc6\\x3e\\xc4\\x1f\\x66\\x00\\x9c\\xf7\\xcc\\x1e\\xd2\\xf8\\x0d\\x22\\x52\\x40\\xf5\\xf4\\xfb\\xf0\\x6c\\x4c\\x7f\\x3a\\xf9\\xa9\\xdd\\xac\\x34\\xc0\\xa3\\x64\\xf8\\x54\\xd0\\xb4\\x75\\x5e\\x9e\\x0f\\xd0\\xb0\\xd2\\xa2\\xd6\\xc3\\xeb\\xa3\\xd9\\x1b\\xcd\\xd0\\xa4\\x62\\xf1\\xf0\\x21\\xfd\\x73\\x84\\x7e\\x98\\x72\\x60\\x2e\\xac\\x3d\\x00\\xbd\\x48\\xda\\x97\\x9d\\x59\\x62\\x2e\\x7d\\xfb\\x10\\xb8\\x0d\\xd8\\x04\\x03\\x44\\xb4\\x95\\xca\\x74\\x52\\xa0\\x48\\xa4\\x3f\\xb5\\xba\\x06\\x4f\\xf0\\x3d\\x54\\xab\\x65\\x4c\\xd9\\xde\\x3a\\xb0\\x32\\xe8\\x44\\x17\\x28\\x04\\x61\\xb0\\x49\\xb7\\x10\\xb8\\x13\\x79\\x19\\xda\\x8a\\xcc\\x6e\\xe5\\xc1\\xe3\\x0c\\x8f\\xa6\\x90\\x3d\\x08\\x53\\xe3\\x6c\\x75\\xa3\\x85\\x70\\x3d\\x6d\\x5a\\xca\\xaa\\x49\\xbe\\x13\\x7f\\xac\\x73\\xdd\\x60\\xb0\\x58\\xd3\\x59\\xcf\\xa5\\x96\\x47\\x4e\\xb0\\xce\\x68\\x13\\x18\\x80\\x0d\\x03\\xca\\x06\\xab\\x58\\xd4\\xeb\\xb9\\x7f\\x33\\x5b\\xa7\\x0c\\x0a\\x08\\xf1\\x65\\x91\\x1b\\x27\\x98\\x42\\x1a\\x7c\\xaa\\x83\\x7e\\x41\\x18\\xb7\\x4b\\x5d\\x6f\\x10\\x3b\\xff\\xc1\\x4c\\x2f\\xf2\\x32\\x7b\\xa0\\xf2\\x76\\x6c\\xa4\\x4c\\x72\\x8e\\xd6\\x59\\xd8\\x54\\x0e\\xc6\\x18\\x04\\x48\\xea\\xd7\\x8e\\x7f\\x3e\\x68\\x9c\\x97\\x3d\\xe0\\xe0\\xe1\\x39\\x96\\x4d\\xd4\\x4f\\x8d\\xe9\\x93\\x29\\x9e\\x56\\xab\\xcd\\x5e\\x55\\xee\\x5d\\xd5\\x79\\xab\\x55\\x93\\x2e\\xf4\\x12\\xe1\\x62\\x65\\x44\\xe2\\x06\\xe8\\x38\\x01\\xa3\\xdc\\x45\\x82\\xc1\\x36\\x2b\\xc4\\xf7\\x49\\x8a\\xa2\\x4a\\x13\\x8c\\x60\\xbc\\x04\\xd3\\x0f\\x7c\\x6e\\xaa\\x37\\x34\\xbb\\x63\\x35\\x5b\\xb7\\x2a\\x29\\x1a\\xae\\x60\\x55\\x57\\xb3\\x42\\x2f\\xd1\\x65\\x19\\xfc\\x2b\\x31\\x0c\\x87\\x0b\\xd0\\x4b\\x21\\x98\\x66\\xda\\x34\\xb4\\x2e\\x9b\\x64\\xae\\x8b\\x8d\\xed\\x7c\\x8c\\xd6\\x10\\xad\\x04\\x16\\x31\\x4e\\x69\\x31\\x43\\x74\\x09\\x32\\xde\\xb5\\x3e\\x5f\\xcf\\xcc\\xc6\\x35\\x59\\xc0\\xe6\\xbc\\xba\\x90\\x52\\x06\\x58\\x20\\xac\\x67\\x9d\\x97\\x21\\xbc\\x54\\xad\\x67\\x93\\xb4\\x5a\\xe5\\x68\\xc8\\xe3\\x57\\xa4\\xa6\\x26\\xc1\\x02\\x92\\x0c\\x47\\x8f\\x94\\xcb\\x2e\\x25\\x0b\\xd5\\x83\\x14\\xe2\\x5a\\xb5\\x3d\\xff\\xcd\\x3d\\xd6\\x29\\x4f\\x1d\\xeb\\x76\\xa0\\x2b\\x75\\xfa\\xdb\\x99\\x75\\xb1\\x08\\x26\\xea\\x0b\\x6a\\x40\\x9f\\x8a\\x78\\x79\\xee\\x7d\\x04\\x50\\xc5\\x0d\\x08\\xf4\\xb0\\x66\\x48\\x5f\\x1d\\xd2\\xa0\\x22\\x10\\x28\\x5f\\x1d\\x06\\x20\\x28\\x88\\x4c\\xe4\\x32\\x9f\\xfe\\xf6\\xd5\\xa1\\x0c\\xfc\\x02\\xbc\\x84\\x83\\x93\\x4f\\x8a\\xe0\\x46\\xc0\\x1f\\x28\\xfa\\xaa\\x97\\x0f\\x54\\x85\\xf3\\xb9\\x8b\\x93\\x4e\\x4a\\x42\\x57\\x12\\x18\\x39\\x97\\x73\\xc2\\x85\\x2b\\x85\\x6a\\x0a\\x9e\\x84\\x90\\x5b\\x4d\\x95\\x28\\x27\\x7b\\x05\\x84\\x25\\x85\\x53\\x85\\xaf\\x71\\xbe\\xa8\\xea\\x1e\\x1e\\xaa\\x0b\\x57\\x1a\\x29\\x98\\x82\\xa4\\x1f\\x8c\\x55\\xce\\x71\\x05\\x20\\xb7\\x7d\\x90\\xb9\\xe9\\x18\\x93\\x08\\x95\\x3d\\x02\\x5d\\x77\\x40\\xcb\\x3a\\xb7\\x4d\\x2b\\x56\\xa9\\x30\\xe2\\xb3\\xb5\\xda\\xef\\x13\\x60\\x49\\x76\\x65\\xb1\\x35\\xdc\\xb6\\xf6\\x1d\\x3c\\x46\\x51\\xd1\\xcc\\xfc\\xce\\x1e\\x66\\x27\\xfb\\xce\\x36\\x2f\\xf2\\x76\\x83\\x81\\x8e\\x56\\xab\\x62\\x83\\x58\\x48\\xf2\\xae\\x0f\\x8b\\x37\\xdb\\x90\\x89\\xa7\\xaa\\x6a\\x52\\xbd\\x8f\\x91\\xa9\\x99\\x7b\\x21\\x4b\\xcb\\x84\\x9f\\x10\\x40\\xa1\\xd4\\x84\\x43\\xcf\\xb9\\xa0\\x42\\xc4\\x8f\\x25\\xc1\\xbb\\x13\\x7a\\xdd\\xdd\\x88\\xb1\\x55\\x9e\\xf4\\x8f\\x60\\x04\\x51\\xad\\xdc\\xe4\\x97\\x15\\x08\\x99\\x98\\x89\\x4e\\x34\\xfc\\xe9\\x0b\\x0d\\xd4\\x7b\\x23\\x36\\x60\\x2f\\x07\\x1c\\xfe\\x34\\xf4\\xd5\\x49\\x8b\\x7c\\x15\\xb6\\x3f\\xf2\\xf4\\x2f\\xd0\\x26\\xdd\\xe4\\xe9\\xbb\\x95\\x51\\xca\\x4a\\x82\\x68\\x84\\x96\\x89\\x88\\xae\\x49\\x01\\x21\\xcb\\x6a\\xe4\\x3f\\x8c\\xc5\\xd5\\xd5\\x65\\x25\\x47\\xef\\x41\\xcf\\xc1\\x9d\\xd0\\x01\\xef\\x48\\x7d\\x4b\\xad\\xd1\\x22\\xad\\xd5\\x99\\x39\\x50\\x13\\xf5\\xec\\x63\\xad\\x35\\x07\\xc3\\xa5\\xc0\\xa7\\x85\\x4e\\x2e\\x75\\x33\\xb6\\xa7\\x4b\\xba\\x58\\x97\\x17\\x1c\\xcc\\xb4\\xa1\\x13\\x7c\\x89\\xa7\\xee\\xac\\x36\\xac\\x90\\x73\\xab\\xf5\\x0a\\x14\\xab\\xba\\xa4\\x4a\\x14\\x2a\\x7f\\x10\\xe0\\x04\\xf3\\xaa\\xb2\\xca\\x74\\x23\\x5e\\x5e\\x26\\xd0\\xcb\\xb6\\x5a\\xc1\\x17\\x8c\\x8f\\x04\\x60\\xb3\\x09\\x95\\x30\\x35\\x94\\x20\\x7e\\x99\\x16\\xf3\\xc6\\x0f\\x21\\xca\\x80\\x5e\\x6d\\xa3\\x8b\\xb9\\x1a\\x2e\\x75\\x52\\x92\\x21\\xe5\\x02\\xa9\\x29\\xc9\\xb2\\x1c\\xa9\\x8e\\x42\\xb5\\x34\\xd6\\xea\\x52\\xd7\\x6d\\x0e\\xba\\xf8\\xfd\\x7d\\xb2\\x64\\xa6\\xde\\x01\\x86\\x24\\x3d\\x05\\x15\\x79\\x79\\xd1\\x50\\x27\\xcd\\x64\\xe5\\x8d\\x5a\\x4b\\x94\\xb1\\xf3\\x0a\\x85\\xa5\\xfd\\x7d\\xff\\x09\\xaa\\xad\\xbc\\x78\\x88\\xd8\\x7b\\x97\\xdf\\x1e\\xd2\\x6d\\xc5\\x45\\x00\\xc7\\xe7\\x35\\x1d\\xf5\\xf0\\x84\\x68\\x26\\x6a\\xa3\\x16\\xa0\\xc7\\xb0\\xc3\\x5f\\x13\\x48\\x69\\x5a\\x95\\x60\\x50\\xc4\\xc8\\x40\\x98\\x0d\\x86\\x5c\\x66\\xb2\\x6d\\xdb\\xf4\\xdc\\x05\\xea\\x68\\x93\\x82\\x0a\\x70\\xb8\\x7e\\xf7\\xe4\\x85\\xb3\\x71\\xa2\\x35\\xf6\\x64\\xd1\\xb6\\xab\\xa3\\xfd\\xfd\\x65\\x52\\xe7\\xbf\\x95\\x66\\x66\\xea\\x99\\xbe\\xd0\\x93\\xb2\\xd8\\x9f\\x15\\xd5\\xf9\\xbe\\x91\\x8c\\x97\\x18\\x87\\xc9\\xb4\\xb9\\x67\\x26\\x69\\xb2\\x68\\x97\\x85\\xe0\\x96\\x3f\\xea\\x64\\xfe\\xdc\\x90\\xd1\\x90\\xa3\\x31\\xee\\xf4\\x81\\x30\\x60\\x0c\\x1e\\x8a\\xb9\\x09\\xff\\x72\\x22\\xad\\x87\\x8d\\xc8\\x03\\xe6\\x48\\x38\\x04\\x61\\x8d\\x13\\xf1\\x95\\x8b\\x3a\\xc8\\xc1\\x87\\xd3\\xfc\\xcc\\x55\\x8b\\x7d\\x81\\x8f\\x54\\xed\\xee\\xd4\\x65\\xa3\\xd9\\xc5\\xb3\\x00\\xfa\\x63\\xdb\\xa6\\x4f\\x37\\x3b\\x3b\\x76\\x9c\\x0e\\x3a\\x8d\\x6e\\xa7\\xb0\\x89\\x4e\\xf2\\xdf\\x05\\x2a\\x85\\x4b\\x93\\x76\\xe4\\x6e\\xfc\\x7c\\x02\\xdc\\x8c\\x77\\xac\\xaa\\x82\\x63\\x6a\\x96\\x2c\\x15\\xb7\\x14\\x54\\x5c\\x3d\\x48\\xda\\x07\\x93\\x1d\\xbe\\xcf\\x82\\x85\\xa3\\x68\\x4a\\xa4\\x0e\\x93\\x76\\xac\\x4a\\x29\\xa9\\xc5\\x90\\x30\\xbc\\xb9\\x34\\x25\\x34\\xfc\\xab\\x76\\x55\\x49\\x70\\x74\\x91\\xa0\\x72\\xc4\\x38\\x09\\xfa\\x82\\xa7\\x8e\\x6f\\xe0\\x98\\x4a\\xb3\\xb6\\x47\\x9e\\x89\\x76\\x5a\\x15\\x85\\x6c\\x29\\x7f\\x5a\\xd9\\x88\\xba\\x7c\\x10\\x47\\xc2\\xe6\\x22\\x34\\xd9\\x40\\x9a\\xed\\x89\\x99\\xa3\\x03\\x1d\\x47\\xba\\xa3\\xdc\\x14\\x7e\\xaf\\x8b\\x95\\xae\\xc5\\x16\\x2a\\x8a\\x64\\x65\\x2e\\x30\\xaa\\x59\\x1a\\xd1\\x9b\\x78\\x94\\x1f\\x7c\\xa4\\xd0\\xc9\\xdc\\x4c\\x2d\\xe7\\x96\\x4b\\x48\\x49\\x92\\xae\\x89\\xb6\\xe0\\x4a\\x3e\\x81\\xe3\\x13\\xbf\\x8e\\x45\\x0f\\xbd\\x4e\\xbd\\x86\\x80\\x12\\x02\\xd9\\xcb\\xde\\xa5\\x62\\x8b\\x6c\\xee\\xe5\\xeb\\xb2\\xa5\\xeb\\x02\\x61\\x76\\xf3\\x9d\\xc2\\x56\\x81\\xf3\\x0a\\xd0\\xda\\x50\\x7b\\x48\\x10\\x22\\x15\\xa6\\x89\\x7a\\xb8\\x10\\xb1\\x94\\xfb\\x89\\x43\\x92\\xff\\xae\\xa5\\x7f\\x7f\\x0d\\x6c\\x38\\x2d\\x5c\\x10\\x16\\xb0\\x92\\x76\\x34\\x49\\xab\\x32\\x4d\\x5a\\x9a\\x32\\xfe\\xd5\\xc9\\x9c\\x70\\x38\\xd0\\xbb\\x6e\\xeb\\xde\\x2d\\x8d\\xe2\\x1b\\xcf\\x36\\x63\\x3c\\xe7\\xad\\xae\\xcd\\xb5\\xab\\xba\\x84\\x60\\x38\\xf4\\x14\\x81\\xec\\xd1\\xb0\\x30\\x33\\x75\\xad\\xae\\xdf\\xca\\x49\\x33\\xbf\\x91\\xaa\\x9c\\xbc\\x71\\x87\\x3d\\x24\\xf7\\x4e\\xd2\\xf2\\xe6\\x49\\x5a\\xf7\\x26\\x4d\\x22\\x80\\xb7\\x73\\x92\\xf6\\x4c\\xbe\\x64\\xe2\\xc5\\x26\\x22\\x8a\\x3e\\x03\\x9a\\x45\\xf6\\x9a\\x2e\\xf2\\x22\\xab\\x39\\xfe\\xdc\\x16\\x0e\\xcb\\x19\\x41\\xe8\\xc4\\x3f\\xd9\\x5a\\x33\\xff\\x1d\\xe2\\xa8\\x8d\\x6f\\x67\\xae\\x5c\\xb2\\xef\\x0a\\x08\\x7a\\x03\\xce\\xc4\\x9c\\x00\\xea\\xdf\\x35\\xe9\\x13\\xc1\\x00\\x1f\\x09\\x9e\\x9b\\x2e\\x24\\x5b\\x48\\x17\\x11\\x16\\x6d\\x99\\x30\\xf5\\xd6\\xfc\\xd3\\xc7\\x97\\xa3\\xc7\\xc7\\xcd\\xce\\x8e\\x98\\xb7\\x7f\\x91\\x5d\\x43\\x27\\x90\\xc0\\xfe\\x24\\xf6\\xeb\\xaa\\xdd\\x9b\\xaa\\xb2\\x77\\x1b\\x78\\x4b\\xd9\\x1f\\xec\\x13\\x72\\x38\\xc6\\x2c\\x56\\x64\\xac\\x9a\\xdf\\x79\\x8d\\xe4\\x72\\x48\\xeb\\x4b\\x43\\xb0\\xcd\\xef\\xa1\\x23\\x72\\x6d\\x6e\\x37\\x16\\x6e\\xbc\\x84\\x8a\\xf6\\xcc\\xf6\\x06\\xd7\\xc4\\xef\\x79\\x0d\\xb0\\x66\\x8f\\xcb\\x2b\\x4a\\x0c\\x27\\xa5\\x5e\\xba\\xfb\\x62\\xe7\\xb0\\x70\\x75\\xee\\xc5\\xeb\\x04\\x85\\xc2\\xef\\x46\\xcc\\xae\\x29\\x0c\\xa7\\x37\\x56\\x3e\\x12\\xf2\\xbd\\xbd\\x31\\xc4\\x71\\xc3\\x4a\\x3c\\xa2\\x08\\x1c\\x93\\x87\\xa5\\x69\\xd8\\xd4\\xc6\\x16\\x3d\\xa1\\xe3\\x77\\xd2\\x0a\\x93\\x3d\\x76\\x4c\\x30\\xa9\\x7b\\x53\\x33\\x1d\\xf2\\xe6\\x89\\x38\\x93\\x04\\xcf\\xb7\\x2e\\x30\\xb8\\x83\\x39\\x72\\xf0\\xe5\\xa1\\x54\\x0f\\xbf\\x61\\x1e\\x8c\\x88\\x28\\xf8\\x1e\\x91\\xa3\\xe1\\x12\\x57\\x21\\x0e\\x24\\x90\\x54\\x27\\xf6\\x56\\x2b\\x08\\x46\\x95\\xea\\xb1\\xa9\\x4e\\x3a\\xe0\\xc7\\x08\\x05\\x82\\x8e\\x5d\\x5f\\xab\\x7b\\xfe\\xd7\\xd3\\x83\\x33\\xc2\\xa8\\x4d\\xcd\\x15\\xc9\\x8a\\x34\\xd2\\xfd\\x9e\\x0f\\x7b\\x0f\\x23\\x0b\\x6b\\xf1\\x0f\\x44\\xef\\x93\\x63\\x39\\xa7\\x10\\x33\\x3a\\x10\\x0a\\xcf\\x62\\x99\\x4f\\x0f\\x02\\x76\\xee\\xee\\xe3\\xb0\\xdf\\xee\\x7c\\x26\\xdf\\x49\\xd0\\xb9\\xc3\\xb6\\x8a\\x6c\\xa2\\x70\\xd0\\xa2\\x7b\\xff\\xa7\\x0e\\x5f\\x66\\xa2\\xf2\\x1c\\xbc\\xe5\\x68\\xfe\\xaf\\xe4\\x1f\\xd3\\x80\\x81\\x60\\xfe\\xed\\xd3\\xe0\\xed\\x45\\x2c\\x80\\x24\\x07\\x8f\\x65\\xf6\\xa7\\x23\\xe6\\x6f\\x0e\\x7c\\xfc\\x06\\x73\\xff\\x65\\x95\\xe9\\x52\\x2f\\x41\\x1b\\xbf\\xa8\\x93\\x06\\x74\\xc4\\x14\\x87\\xd4\\xd5\\x9a\\x37\\x6a\\xb1\\x3e\\xd7\\x6a\\xa8\\x27\\xe7\\x13\\x0c\\x99\\x8d\\x20\\xb2\\x60\\xe6\\x50\\x24\\xf5\\xb9\\x56\\xf3\\xbc\\xd0\\xa3\\xb1\\xca\\xdb\\x07\\x8d\\xc2\\xf0\\x38\\xc8\\x55\\xb2\\x89\\xdf\\xec\\xeb\\xb2\\x69\\x41\\xbf\\x87\\x42\\x25\\xc8\\x33\\xa8\\x3f\\x6e\\x93\\x0b\\x5d\\xc2\\x65\\x72\\xf3\\x80\\x7f\\x9a\\x1b\\x75\\x55\\x67\\xe6\\x86\\xac\\xd3\\x64\\xdd\\x68\\xd5\\xe8\\x7f\\xae\\x75\\xd9\\xe6\\x70\\x65\\x85\\x8e\\x27\\x69\\xaa\\x9b\\x86\\x2a\\x99\\x27\\x4d\\x0b\\x18\\x9f\\xae\\x51\\xb4\\x5a\\x58\\x52\\x78\\x84\\x69\\x6c\\x82\\xfe\\x87\\xe1\\x09\\xbb\\xea\\xe1\\x37\\xa2\\x98\\xc3\\x23\\xae\\xcc\\x56\\xb6\\x35\\x3c\\x82\\x84\\xc7\\x91\\x6a\\x1e\\xf9\\x73\\xcc\\x2f\\xb0\\xc9\\x9c\\x6c\\x18\\xdd\\xa6\\x96\\x65\\x51\\xa2\\x83\\x57\\x0c\\x53\\xf1\\xee\\x54\\x3d\\xfc\\xc6\\x83\\x66\\x50\\x1e\\x53\\x87\\xdb\\x81\\x11\\xba\\x03\\x1e\\x2f\\x4e\\x86\\x90\\xaf\\xef\\xee\\xe6\\x63\\x23\\xb3\\x98\\x62\\x7e\\xc5\\x50\\x51\\xec\\x92\\x47\\x6c\\x7b\\x27\\xec\\x03\\x33\\xb6\\xee\\x00\\x0e\\xc6\\x6e\\x8a\\x64\\x23\\xd4\\xa7\\x65\\xb2\\x99\\xe9\\x93\\x55\\x5e\\x14\\x43\\xf7\\xf5\\x66\\x8b\\x52\\x52\\xd9\\xb3\\x22\\xe0\\x6a\\x1c\\x0c\\x23\\x41\\x9d\\xc8\\x22\\x69\\xd4\\x79\\x5d\\x5d\\x95\\x64\\x7e\\xc2\\xc0\\xc8\\xe6\\x78\\x10\\x00\\xc8\\xe0\\xb6\\x07\\xcf\\x5a\\xdc\\x0f\\xc1\\x73\\x64\\xe7\\x84\\xc7\\x55\\xf4\\x60\\x78\\x3c\\x55\\x87\\xa1\\x09\\x2b\\xae\\xb4\\x8d\\xba\\x4b\\xd6\\x12\\x1e\\x9b\\x68\\x4c\\xed\\xa0\\x84\\x5f\\xea\\xce\\x02\\xc9\\x24\\xab\\xda\\xfc\\x66\\xac\\xbe\\x19\\xc9\\x1a\\xf2\\x59\\x81\\x04\\x6c\\x68\\x49\\x0a\\xb6\\x54\\xb7\\x17\\x2b\\x6d\\xa9\\x69\\x5d\\x4d\\x57\\xf7\\xf7\\xd5\\x33\\x9d\\x56\\x4b\\x2d\\xcd\\x78\\xcd\\xec\\x79\\x52\\x0b\\x81\\xac\\x87\\xb5\\x8b\\xce\\x09\\x9d\\x35\\x60\\x91\\x33\\xe1\\x2c\\x5d\\x45\\x22\\xb7\\x39\\xcb\\x4c\\xbe\\x31\\x77\\xfd\\x4c\\xe4\\x02\\x3b\\xb0\\xd5\\x06\\x53\\x82\\xf0\\x7d\\x50\\x0b\\x0b\\x78\\x54\\x76\\x42\\x52\\xac\\xfd\\xee\\x76\\x03\\xe7\\x08\\x36\\x04\\x2c\\xc9\\x06\\x8c\\x6e\\xd5\\xd4\\x5a\\x9d\\xdb\\x79\\xb1\\xdd\\x1c\\xab\\xa5\\x30\\x23\\xef\\x7e\\xb7\\x8b\\x44\\x75\\x21\\x5a\\x81\\x1d\\x54\\xf8\\x30\\xc1\\xbd\\x11\\x93\\x43\\x7f\\x23\\x1d\\x73\\x50\\xbc\\xc8\\x9a\\x3f\\x31\\x94\\xb5\\xe3\\xf7\\x22\\xd8\\x37\\x74\\x72\\xfe\\x49\\x77\\xaf\\xff\\x1e\\xd2\\xf2\\x1a\\xdd\\x11\\x62\\xf2\\x72\\xe4\\x9c\\x73\\x63\\x5d\\x83\\xf7\\x40\\xb5\\xea\\x5e\\x04\\x23\\xa2\\xaa\\xc9\\xfc\\x27\\x08\\xab\\xfc\\xc8\\x0b\\xa6\\x3a\\x57\\x79\\x76\\xae\\x5b\\x3c\\x77\\x66\\x45\\x95\\x5e\\x28\\x5d\\x68\\x70\\x97\\x60\\x2b\\x18\\x9d\\x85\\xf6\\xf4\\xf8\\x3a\\x30\\xd9\\xd9\\x31\\x23\\x37\\xb5\\xfc\\x02\\x95\\x08\\xbf\\x1b\\x86\\xcd\\xcd\\x62\\xb0\\xbc\\xdd\\xe5\\x14\\xe1\\xa7\\x3c\\x4c\\xac\\x6a\\x05\\x91\\x1c\\xc4\\x27\\x91\\x73\\xb2\\x48\\x9a\\x77\\x57\\xe5\\x7b\\xd4\\xf3\\x6e\\x4c\\xb2\\xb5\\x93\\xc1\\x26\\x4e\\xab\\x55\\x7b\\xe6\\x50\\x16\\xf1\\x27\\xe3\\xd9\\x53\\xe0\\x73\\x17\\x90\\x1f\\x12\\x4a\\xb4\\x28\\x00\\xbe\\x72\\xf3\\x68\\x67\\xc7\\x8d\\x4e\\x04\\x4b\\x40\\xdf\\xc1\\x69\\x24\\xbe\\x7c\\x7c\\x78\\x40\\x74\\x4b\\x56\\x98\\xb0\\x86\\xff\\xca\\x53\\xa1\\x4c\\x68\\x21\\xc6\\x52\\xc9\\x36\\xe1\\x27\\x03\\xf7\\xf2\\x20\\xf1\\xc4\\x4a\\x0f\\x72\\xeb\\xde\\x55\\xe8\\x7f\\x1f\\xdb\\x23\\x57\\x1d\\xad\\x8a\\xa9\\xe9\\x0a\\x11\\x6c\\x79\\x4f\\x98\\xe4\\xab\\x26\\xb8\\x52\\xd1\\xbc\\x01\\x67\\xb6\\xb5\\xb0\\x5a\\x86\\xbb\\x2f\\x6f\\x5a\\x9e\\xfe\\x16\\xbf\\x93\\xc5\\x9e\\x69\\x65\\x64\\xcd\\xfc\\xcc\\x1c\\xd3\\x07\\x1c\\xaf\\x8d\\x7f\\x75\\x30\\x96\\x4a\\x44\\xb5\\xc7\\xa2\\xa3\\xb5\\x23\\x72\\xce\\x07\\x5b\\xc3\\xfe\\x2b\\x95\\x64\\xbf\\xad\\x1b\\x32\\x7b\\x35\\x27\\xef\\xb1\\xa1\\x68\\x86\\xa3\\x04\\xf7\\x00\\x68\\x79\\xcf\\x97\\x4d\\xbb\\xe6\\x56\\x65\\x35\\x56\\x03\\x1c\\xcb\\x40\\x38\\xd1\\xa8\\xae\\x49\\x50\\x61\\x29\\x87\\xc0\\xc7\\xc8\\x3a\\xc8\\x8c\\x1d\\x5e\\x81\\x70\\x27\\xf6\\xd2\\x98\\x35\\xdc\\xfb\\x12\\x2a\\x33\\xb7\\x68\\xa6\\x1d\\x7e\\x55\\xe8\\x52\\x5e\\x48\\x61\\x1d\\xc5\\x8a\\x50\\xc0\\xd3\\xc3\\x65\\x77\\xf9\\xd4\\x1e\\xb4\\xc6\\x14\\x41\\x86\\x04\\x92\\xfc\\x7a\\x56\\x57\\xae\\xe8\\xae\\x7d\\xc5\\xfc\\xb2\\xe5\\xb4\\x86\\x52\\x10\\x11\\xfc\\x27\\xc6\\x5a\\x11\\x36\\x8e\\x77\\x5c\\x70\\xf9\\x2c\\xbf\\x6d\\x09\\x71\\x35\\xc4\\x12\\x7e\\x75\\x38\\xf6\\xb6\\xa4\\xf4\\xa8\\x32\\xab\\x0a\\xe6\\x25\\x6f\\xf2\\x4f\\x79\\x39\\x74\\xeb\\x3b\\xda\\x91\\xc1\\x27\\xef\\xde\\x41\\x87\\x6b\\x0b\\xd3\\x76\\xdc\\x3a\\x0d\\xba\\x7a\\xac\\x86\\xd6\\x6e\\x0c\\xd1\\x0a\\x18\\xbc\\x14\\xaa\\xfe\\x68\\x8e\\xd2\\xeb\\x6b\\x32\\x9d\\x16\\x89\\xcc\\x2a\\x93\\x2c\\xfb\\x58\\x9d\\x70\\x32\\xb4\\xcc\\x86\\x80\\x37\\x5e\\x77\\x33\\x37\\x0e\\xff\\x91\\xb6\\x87\\xcd\\x5f\\xf1\\xa1\\x00\\xd7\\x86\\xa0\\xac\\x5f\\x46\\xf2\\x48\\x24\\x52\\x4b\\x11\\x66\\x48\\x58\\xd3\\xa4\\xac\\xbe\\x27\\xbb\\x75\\xb4\\x3c\\x65\\xeb\\xb7\\xa4\\xc8\\xcf\\xcb\\x5f\\x2c\\xff\\xb1\\xc7\\x67\\xdf\\xa3\\x32\\xef\\xdf\\x3e\\x9b\\x5e\\xd7\\x79\\x7e\\xa2\\xb2\\xdc\\xed\\xfa\\x9a\\x50\\x1c\\xdd\\xf7\\xd3\\x33\\x67\\x24\\x4b\\x1d\\xc5\\x7b\\xef\\x71\\x2b\\xdf\\x84\\xa9\\x00\\xda\\xf1\\xe1\\x8f\\x00\\x2c\\x8a\\x73\\x10\\xd7\\xb5\\xa2\\x04\\xa7\\x3b\\xbf\\x13\\x9f\\x43\\x06\\x8d\\x8e\\x46\\x20\\xd9\\xf9\\x4d\\x50\\x9e\\x22\\x30\\x2a\\x76\\x53\\x0c\\x38\\x88\\xaf\\x9b\\xef\\xf3\\x2c\\x63\\xcf\\x08\\x24\\x6b\\x4f\\x72\\x4a\\x04\\x8d\\x5a\\xfd\\x6b\\x40\\x8d\\x1e\\x95\\x51\\xd9\\x3b\\x71\\x02\\x8f\\xc5\\x50\\xf7\\x3d\\xc9\\x4b\\x34\\x3e\\x8a\\x13\\x2e\\x0d\\x93\\xf5\\x2c\\x37\\x77\\xe4\\x16\\x5e\\x90\\x0f\\x4a\\x85\\x9d\\xbc\\x85\\x23\\x60\\x80\\x62\\xe4\\x07\\xd8\\x2c\\x82\\x35\\x44\\x8d\\x0e\\xd4\\x53\\x4e\\x3c\\x0a\\x2c\\x08\\x46\\xee\\x59\\x1f\\x6b\\xe1\\x87\\xfd\\x97\\xff\\xeb\\xe3\\x9b\\xe3\\x0f\\x3f\\xbc\\xfc\\x70\\x82\\x61\\x7b\\x6b\\x8d\\x11\\x73\\xf2\\x76\\x01\\x38\\xbf\\x1f\\xf5\\xa7\\x16\\x83\\xbf\\xe8\\xf6\\x59\\x55\\x5d\\x98\\x34\\x7e\\xff\\x9e\\xa8\\x63\\x65\\xbe\\xbf\\xc1\\x70\\x5e\\x39\\x19\\xb2\\x2d\\xd8\\xcd\\x23\\x69\\x55\\x9a\\x94\\xe6\\x4a\\x69\\xdf\\xc9\\x40\\xa2\\xa9\\x6a\\x7c\\x41\\x4e\\x18\\x49\\xd8\\x21\\xfd\\x45\\xac\\xfa\\x7e\\x14\\x8f\\xdf\\x6a\\x51\\x15\\x19\\x3e\\x6b\\x35\\x6a\\xe8\\xc1\\x69\\xba\\xa8\\x8e\\xa6\\xf8\\x67\\x67\\x90\\x82\\xe0\\xa4\\x37\\xfc\\xc0\\xbf\\xaa\\xf2\\x12\\x0d\\xb0\\x2b\\x08\\x68\\x43\\xdf\\xbd\\xe7\\x75\\x8c\\xc5\\x03\\xd1\\x83\\xf0\\x35\\x2c\\x69\\x31\\x6f\\xc2\\xb9\\xf3\\x86\\x30\\x79\\x5a\\xc5\\xe0\\xc3\\x40\\x65\\xea\\xcd\\xba\\x68\\xf3\\x55\\xa1\\xf9\\x19\\xbf\\x31\\x17\\x66\\x6c\\xd4\\xfa\\x8a\\x25\\x4b\\xcd\\xf5\\x70\\xf8\\x61\\x44\\xf1\\x49\\xd2\\xba\\x6a\\x1a\\x52\\xc6\\xb1\\xdd\\x05\\x07\\xe6\\x2b\\x0a\\x34\\x27\\x00\\xb9\\x87\\xec\\x02\\x73\\xb4\\x0f\\xda\\xc7\\x20\\x65\\x64\\x87\\x60\\x83\\xfc\\x5a\\xac\\xe6\\xda\\x9a\\x80\\x35\\x6a\\xa6\\x37\\x15\\xbd\\xde\\x83\\x31\\xfc\\xbe\\x2e\\x33\\x7e\\xaf\\xa2\\x21\\x40\\x11\\x34\\x5e\\xa0\\x61\\x5c\\x70\\xa4\\x3e\\xeb\\xf1\\x8c\\x86\\x95\\x1b\\x8e\\x0f\\x5c\\x6c\\xd0\\xde\\x12\\x23\\x21\\x3d\\x27\\x3d\\x26\\xc5\\x70\\xa4\\xba\\xd4\\xba\\xcc\\xff\\xb9\\xd6\\x2a\\xcf\\x9a\\xb1\\xd3\\x55\\xb5\\x95\\x21\\x10\\xc0\\xd5\\x68\\x2b\\x4c\\xa3\\x38\\x4d\\x86\\xe2\\x17\\x79\\xba\\x00\\xfc\\x47\\xad\\x33\\x1b\\xff\\xd0\\xd4\\x52\\x6c\\x54\\xa6\\x5b\\x5d\\x2f\\x51\\x53\\x95\\x00\\x22\\xaf\\xae\\xa9\\x41\\x53\\x03\\xcf\\xc2\\x06\\x5e\\xe6\\x8a\\x64\\xa5\\x86\\xf0\\xcb\\xac\\x47\\xa9\\x9b\\x16\\xcd\\x21\\x7d\\xb4\\x68\\xca\\x39\\x9a\\xec\\x20\\x46\\x2a\\xd3\\xf6\\xeb\\x0c\\xee\\x3c\\x90\\x2a\\x28\\x3e\\xbc\\x88\\xb4\\x60\\x42\\xf3\\x39\\xb4\\x3e\\x00\\xcd\\x36\\xa4\\xd0\\xcb\\x10\\xf9\\xfb\\xc7\\xaf\\x06\\x79\\x06\\xa1\\xd5\\x65\\xe3\\x20\\xbe\\x81\\xf3\\xa1\\x4e\\xd0\\x1e\\x94\\xc2\\x7b\\xee\\xb8\\xce\\xfc\\x0b\\xf7\\x06\\xab\\xbf\\x89\\x46\\x0b\\x0d\\x20\\x87\\x22\\x17\\x8c\\xbc\\x5d\\x40\\x90\\x5f\\x62\\xf1\\xcc\\x06\\x77\\xf8\\xb0\\x32\\x9f\\xc1\\x00\\xd3\\xd0\\xdb\\x3b\\xeb\\x45\\xca\\x2e\\x0d\\x01\\x72\\x17\\x0a\\xae\\x03\\x18\\x84\\xc3\\xe0\\x92\\xa0\\x9c\\xd0\\x3a\\xe0\\xa5\\xba\\x23\\xd1\\x86\\xec\\x94\\xbc\\xd4\\xab\\x6a\\x8c\\xe5\\xc9\\x5d\\x08\\xff\\x66\\xf0\\x3a\\x1e\\xdc\\xd2\\xe2\\x93\\x18\\xbe\\xf1\\xc9\\x89\\xa8\\xbd\\x6a\\x80\\x5e\\xbb\\x90\\x5b\\xec\\x18\\x44\\x94\\xc5\\x73\\x8d\\x4b\\x08\\x9c\\xec\\x55\\x55\\x77\\xf0\\x9b\\x59\\x12\\x1c\\x85\\x87\\x29\\x6b\\x16\\x78\\xbb\\x75\\xcd\\xbc\\x58\\xc0\\x63\\xf1\\xd1\\xf7\\xde\\x10\\xee\\x24\\x4e\\x26\\x76\\x81\\x64\\x27\\x6d\\xa5\\xee\\x39\\xd1\\x02\\x27\\x44\\xd6\\xe6\\x41\\x11\\x43\\x09\\xb0\\x48\\x92\\x65\\xf2\\x32\\x5e\\xe6\\xc6\\x1a\\x38\\x78\\xf1\\x7c\\xa7\\xf4\\xc4\\xe9\\x26\\x24\\x32\\x1b\\x2e\\xfc\\xa3\\xdf\\x2e\\x5f\\x52\\xef\\xdf\\x57\\xe1\\xcc\\x74\\x65\\x0f\\xca\\xe1\\x44\\x10\\x14\\x6a\\xdd\\x53\\x7a\\x8f\\x30\\x61\\xa6\\xcf\\x3a\\x84\\xb1\\x6c\\x38\\x1a\\x79\\x40\\x39\\xb8\\x3c\\xde\\x3b\\x56\\xc6\\x5b\\xa3\\xc7\\x6b\\x2c\\x44\\x46\\x38\\x40\\x08\\x84\\x3e\\x2a\\xf3\\x11\\x11\\xd0\\xe1\\x4f\\x4d\\x95\\xf0\\xfc\\xf3\\x89\\xee\\xab\\xc3\\xb3\\xd1\\xb8\\xeb\\x3f\\x86\\xf9\\xdd\\x5c\\xa2\\xff\\x98\\x90\\x79\\x7b\\x5c\\xc8\\xba\\x39\\x6c\\xe3\\xbd\\x39\\x22\\x6e\\x64\\xdd\\x4c\\x11\\x3f\\x32\\x06\\x81\\xa4\\xb9\\x5d\\x02\\x78\\xa4\\x5d\\xe8\\xd8\\x54\\x8f\\x3a\\xde\\x48\\xcb\\xbc\\xc4\\x0d\\xbd\\xcb\\xa1\\x5c\\xba\\xe6\\x51\\xa8\\xd4\\x8a\\xf3\\x41\\xd7\\x1f\\xcb\\x2b\\x09\\x83\\x98\\x1b\\x97\\xe8\\xb8\\x3c\\x4f\\x9d\\x0f\\x9e\\x7d\\xb1\\xdd\\x75\\xdd\\xb8\\x09\\x78\\x89\\x0a\\x69\\x2a\\xea\\x11\\x84\\x07\\x41\\xec\\xea\\xcf\\x63\\x76\\x4c\\xd6\\x71\\x62\\x5d\\x66\\x71\\x3e\\x2c\\x2c\\x1c\\xf8\\x8d\\xd2\\xea\\x78\\x4d\\x1b\\xc3\\x11\\x29\\x13\\xf6\\xf7\\xd5\\x2b\\xb6\\x02\\x74\\xfe\\x02\\x73\\x71\\x38\\x31\\x12\\x86\\x93\\xe4\\x3e\\x50\\x30\\xc2\\x84\\xc4\\x33\\x38\\xe7\\x2b\\x2b\\x99\\xcd\\xcc\\x91\\x3e\\x4f\\xd6\\x45\\x3b\\x51\\x27\\x79\\xa6\\x59\\x78\\x5c\\x25\\x0d\\x89\\x8f\\xe7\\x10\\x5f\\xa6\\x59\\xe9\\x34\\x9f\\xe7\\xa9\\x6a\\xf2\\x0c\\x04\\x94\\xbd\\x3d\\x75\\xa0\\x86\\xb3\\xaa\\x5d\\x8c\\xc6\\x6a\\xef\\xd0\\x90\\xf1\\x1c\\xec\\x07\\x6a\\x75\\xa8\\x86\\x35\\x08\\xe9\\x13\\x7c\\x08\\x31\\x2b\\xfe\\x6e\\xf6\\x1b\\x58\\x7f\\xd6\\x6b\\x6d\\x1d\\x40\\xde\\x57\\x8d\\x95\\x31\\x2d\\x7a\\x08\\x89\\x94\\x6c\\xa5\\xcc\\x46\\x90\\x75\\x02\\x6f\\x26\\xf0\\xda\\x8e\\x9f\\xc0\\xb2\\x14\\xad\\x93\\x87\\x2c\\xea\\xae\\x6a\\xc4\\xb3\\x2a\\xaa\\xea\\x02\\xbc\\x27\\x56\\xbe\\x27\\x8a\\x6a\\xaf\\xf2\\x54\\x8f\\x7a\\x8e\\x70\\x90\\x8f\\xe5\\x09\\x6e\\xc6\\x3a\\xe6\\xee\\xdf\\x7e\\x9c\\x03\\x52\\x76\\xc0\\x0f\\x27\\x16\\x05\\x6d\\x46\\x82\\xfc\\x00\\x49\\x0a\\x54\\x91\\x87\\xf6\\x10\\x64\\xd1\\xf9\\xbf\\xdf\\xb1\\x17\\x3b\\x62\\x88\\x95\\x08\\x77\\x02\\x5e\\x63\\x0b\\x63\\xee\\x1f\\x80\\xb6\\x12\\x79\\xe9\\xe3\\xf9\\xda\\x93\\xc0\\xcb\\xd6\\x17\\x4d\\x9a\\xfd\\x77\\x0f\\x46\\x36\\x37\\xa8\\xbe\\xa0\\x7d\\x84\\xcf\\x0c\\x5b\\x97\\x8d\\xb7\\x95\\xa7\\x4a\\x57\\x5e\\xa7\\xee\\xdf\\x8f\\xf9\\x98\\xd9\\x9d\\x79\\x02\\x5c\\xa2\\x71\\x31\\x5e\\x70\\x47\\x3e\\x68\\x58\\x59\\x62\\x5d\\x52\\x31\\xac\\x67\\x0d\\xe1\\xba\\x0d\\x95\\x16\\xc9\\xa6\\x5a\\xb7\\xe8\\x0b\\xc4\\xef\\x81\\xd6\\x25\\x37\\xeb\\x93\\x37\\xff\\x90\\x0e\\x11\\x9f\\x8a\\x9d\\x2c\\xb7\\x77\\x48\\x30\\xaa\\x63\\xa7\\xd2\\x41\\x4e\\x16\\x8a\\x9c\\xac\\x0b\\x34\\x35\\x5c\\x5f\\x9b\\x53\\x35\\x90\\x53\\xb7\\xab\\xf5\\x04\\x89\\x3a\\x30\\x6c\\x58\\x23\\x27\\xaa\\xc8\\x90\\x1a\\x7c\\xc6\\xea\\x2b\\x80\\x80\\x2d\\xb3\\x9f\\x73\\x7d\\xf5\\xaa\\xaa\\xe1\\x98\\xb5\\x02\\x96\\xa3\\x52\\x93\\x53\\x1c\\x95\\x86\\x6d\\x9a\\xac\\x6f\\x74\\xd2\\xac\\x6b\\x78\\xf3\\x78\\x9e\\xa4\\x0b\\x6d\\x48\\x1e\\xb2\\x86\\xda\\x83\\x48\\x34\\xa0\\xbb\\x69\\x16\\xb6\\x7a\\x49\\xdb\\xee\\xf9\\x62\\x10\\xa9\\x32\\x7c\\x31\\xc8\\xd3\\x6f\\x74\\x29\\x9d\\x35\\xc0\\xbe\\xce\\xdd\\x7f\\x53\\xf4\\xab\\x98\\x3a\\xfc\\x7f\\x52\\xf7\\x7e\\x1f\\x55\\xd8\\xb3\\x36\\x69\\xcf\\xd5\\x2f\\xb6\\x09\\xa5\\xc8\\xe0\\x06\\x77\\xd3\\xfd\\x7e\\xef\\x29\\x6a\\x6e\\xe2\\x8a\\x74\\x3a\\x49\\x23\\x1a\\x58\\x46\\xdf\\x7c\\xb4\\x13\\xa7\\xff\\xa4\\x6d\\x93\\x74\\x41\\x73\\x1d\\xd3\\xf5\\xa1\\x93\\x6b\\x47\\xe2\\xf0\\x64\\x87\\xa5\\xe7\\x8d\\xbc\\xf2\\x29\\xde\\x5e\\xa8\\xd8\\xf5\\x68\\x85\\x8f\\x9d\\xb8\\x88\\x7c\\x61\\xbf\\xbe\\xb6\\x4f\\xb7\\xd1\\x0c\\x38\\x1e\\xc6\\x0d\\xb3\\x82\\xae\\xcd\\xfc\\x53\\xb9\\x08\\xeb\\xeb\\xfd\\x26\\xdd\\x85\\xb1\\xd6\\x1b\\x69\\x4e\\xe9\\x2c\\x97\\xe9\\x25\\xa9\\x77\\xf2\\x30\\x48\\xfa\\x96\\xc9\\xeb\\x9a\\x63\\xf3\\x20\\xdd\\x17\\xa2\\xdd\\x31\\xfa\\x5c\\xfd\\x99\\xd3\\xfd\\x28\\x3e\\x95\\xde\\xdc\\x7c\\xbf\\x7d\\x66\\x22\\xaa\\x7a\\x37\\x13\\x23\\xa1\\x76\\xb3\\xea\\x25\\xc3\\x01\\x6b\\xad\\xf2\\x96\\x1d\\x61\\x16\\x5a\\x81\\x18\\xc3\\xa6\\x4d\\x49\\x99\\x49\\xa8\\x13\\x54\\xd3\\x39\\xb8\\x03\\x72\\xb3\\xe6\\x70\\xbc\\x4e\\x2d\\x61\\xce\\x06\\xf4\\xf1\\x64\\xc5\\xcc\\xd0\\xe9\\x9c\\x3c\\x10\\xbb\\x11\\xbc\\xd4\\xa2\\x2a\\x2f\\x53\\x8d\\x5e\\x25\\x75\\xd2\\xea\\x82\\xe0\\x24\\x87\\xdc\\x26\\xd5\\x06\\xda\\xa9\\x14\\x7c\\x4e\\xd7\\xa4\\xe7\\xca\\x1b\\x95\\x9c\\x27\\x46\\x06\\xad\\xca\\x54\\xab\\x15\\xc4\\x07\\x12\\x8a\\x3d\\x40\\x9a\\x14\\xcf\\xac\\x5e\\xb8\\xb7\\x45\\xa0\\x7c\\xf0\\x9b\\xbb\\x65\\xa0\\x37\\xd8\\x10\\x45\\x13\\xb9\\xd2\\x30\\x12\\x23\\xc6\\x09\\x08\\xab\\xc9\\x2d\\xc8\\x57\\xdb\\x51\\xaf\\xb0\\x33\\xa3\\x5b\\xfb\\xc1\\x5a\\x05\\xd6\\x16\\x95\\xfa\\x4a\\xa8\\x8f\\x84\\xce\\xc8\\x39\\xee\\x2d\\x57\\x16\\xbf\\x7f\\xd4\\x7d\\xb1\\x4e\\xab\\xd5\\xe6\\xdd\\xec\\xb7\\xa1\\x6d\\x89\\xe9\\x85\\xa2\\xe2\\xd1\\xd0\\x5f\\x54\\xe5\\x83\\xd6\\x88\\xaf\\xa5\\x91\\xab\\xf5\\x72\\xd5\\x6e\\xec\\x82\\xaf\\xcb\\x42\\x37\\x0d\\x1e\\x4b\\x46\\x24\\x7e\\x09\\x5f\\xf3\\xc6\\xde\\x4c\\x10\\x83\\x0e\\xc3\\xde\\x00\\x3c\\x26\\xf4\\x6c\\x8a\\xb1\\x2f\\x48\\xef\\x14\\x94\\xbe\\x67\\xe3\\xf2\\xd1\\x63\\x8f\\x58\\x36\\x5d\\xdb\\xcb\\x05\\x15\\x26\\x80\\x80\\xec\\x97\\xdc\\x5d\\x29\\x81\\x30\\xab\\x2b\\x12\\x94\\xc1\\xa5\\x8c\\x84\\x80\\x7c\\xb9\\x2a\\x72\\xdd\\x28\\x77\\x91\\xa6\\x53\\x82\\x81\\x06\\x1a\\xb8\\x92\\x33\\xb0\\x24\\x76\\xcf\\xe6\\x15\\x67\\x1f\\x7d\\xc3\\xc2\\x6f\\xf1\\xfd\\x5d\\x17\\xed\\xfb\\xe1\\xc0\\x48\\x64\\x83\\xb1\\x3a\\x8d\\xf4\\xef\\x6c\\xac\\x06\\xcf\\xab\\x4c\\xbf\\x41\\xc7\\x24\\xef\\x45\\x96\\x38\\x31\\x1b\\x09\\x98\\x9d\\xf2\\xa6\\x5a\\x37\\xfa\\x25\\x42\\xfc\\x82\\xc6\\x24\\x68\\x72\\xd2\\xe8\\xf6\\xb8\\x6d\\xeb\\x7c\\xb6\\x6e\\xf5\\x70\\x90\\x2e\\xf7\\x10\\x87\\x7d\\x0f\\x9d\\xdc\\x07\\x63\\x35\\x30\\xfd\\x1d\\x48\\x5c\\x07\\x6e\\x01\\x1f\\x5e\\x20\\xa4\\x52\\xb4\\x6a\\xf7\\xdd\\xc7\\x45\\xf1\\xe6\\x5e\\xde\\x91\\xdd\\x2d\\xb4\\x2a\\xe7\\x45\\x9e\\xb6\\x79\\x79\\x6e\\x35\\xb7\\x02\\xbe\\x41\\xf8\\x9c\\x86\\x5a\\x75\\x11\\x6f\\x46\\x09\\x64\\x9b\\x7b\\x3e\\x22\\xc9\\xf6\\xea\\xad\\xef\\x6a\\xa7\\x72\\x77\\x44\\xb5\\x8b\\xba\\xba\\x82\\xed\\xf3\\xd2\\xac\\xc3\\x70\\x80\\xae\\x2e\\x86\\x5c\\xd2\\x40\\xd7\\xdc\\xd5\\xe6\\xae\\x48\\x41\\xac\\x3f\\xb1\\x6f\\x62\\xe9\\x66\\xb8\\xd1\\xda\\x76\\x0a\\xf1\\x2b\\x3d\\xcc\\x21\\x9a\\x36\\x78\\x03\\xfa\\x5e\\x82\\x64\\x7e\\xee\\xc5\\x52\\x8f\\x82\\x3f\\x30\\xe0\\xc3\\x80\\x99\\xc7\\xe0\\x46\\xc4\\x38\\x7c\\x9b\\xbc\\x95\\x80\\x28\\xeb\\xfa\\x47\\x07\\x9e\\x40\\x93\\x23\\xde\\x2c\\x39\\x9a\\x09\\xc9\\x77\\x3b\\x12\\x6d\\x08\\x8b\\xde\\x09\\xbf\\xc9\\x29\\xaa\\x3a\\xbb\\x66\\x8b\\xaa\\xca\\x7c\\x13\\x5a\\x26\\xac\\x70\\x3a\\x8d\\xa8\\x72\\x42\\x4d\\x5a\\x04\\xb4\\x27\\x4e\\x9a\\x40\\x33\\x34\\x07\\xf7\\xa6\\x12\\x6c\\xa7\\x57\\xde\\xb3\\x01\\x71\\x92\\x2c\\x0b\\x54\\x87\\x18\\x1d\\x5e\\x24\\x12\\xcb\\x14\\x66\\x97\\x5b\\xff\\xb3\\xab\\x21\\x7a\\xa2\\x9e\\x2a\\xf2\\x4c\\xa7\\xc8\\x56\\x7f\\xa4\\x36\\x5e\\xa2\\xa7\\x0a\\xfc\\xd5\\x39\\xdc\\x16\\x4e\\xdb\\xee\\x2e\\xe5\\xe4\\x27\\x42\\x7a\\x4e\\x62\\xb9\\x5d\\x65\\x7a\\xa5\\xcb\\xac\\x09\\x03\\x44\\xb0\\x0a\\x86\\x10\\xac\\x9a\\x0a\\x5e\\x4e\\x20\\x00\\xba\\x4e\\xab\\x32\\x03\\x65\\x4a\\x3f\\x4b\\x70\\x94\\xd4\\x87\\xdf\\xd3\\x4f\\x4b\\xfd\\x2f\\xbb\\xb7\\xac\\xda\\xcd\\xa8\\xb3\\xdf\\xe0\\x7c\\x79\\x57\\x42\\xb8\\x3d\\x08\\x0e\\x63\\x97\\x2d\\x16\\x8f\\x6f\\x1c\\x8f\\xa4\\x23\\xeb\\x1a\\x02\\xc6\\x68\\xa7\\x9d\\xda\\x8b\\x71\\x02\\xdc\\xc0\\x0b\\x95\\x21\\x1e\\x18\\xc2\\xf0\\xcc\\x2c\\x55\\x12\\x80\\x34\\x7f\\x42\\x87\\x78\\xb6\\x5a\\xb2\\x5b\\x00\\x76\\xae\\xe9\\x08\\xb3\\x8a\\xd1\\x9d\\xb8\\x33\\xa5\\xc7\\x9e\\x84\\xc4\\x67\\x52\\x45\\xda\\xb3\\xee\\xa6\\x63\\xe7\\x62\\x8e\\xd7\\x4d\\x99\\x12\\x8e\\x9e\\x02\\xe8\\x7e\\x3b\\x32\\x6f\\x7b\\xde\\x0d\\x6d\\xab\\xa7\\xd7\\x76\\xb8\\x77\\xc1\\x82\\xea\\x3c\\x41\\xd8\\xf5\\x4a\\x9a\\xe6\\x6d\\xb2\\x84\\xc0\\x5a\\x94\\xd6\\xe6\\x6d\\x21\\x7f\\xc3\\x4b\\xd2\\x49\\xbb\\xf1\\x12\\x75\\x99\\x85\\x49\\x69\\x23\\x00\\xed\\x3d\\x65\\x96\\xed\\x13\\x28\\xb5\\xec\\x6e\\x64\\xc0\\xfd\\xc8\\x33\\x4a\\x2e\\xde\\x4e\\xba\\x93\\xe0\\xa2\\x30\\x6e\\xd5\\xe6\\xf6\\xde\\x3b\\xe5\\x3b\\x3f\\x1d\\x7f\\xbe\\xde\\x87\\x1e\\x36\\x09\\xb8\\xf8\\xfb\\xe3\\x0f\\x2f\\x5f\\x74\\x5e\\xef\\x8f\\x19\\xc1\\x85\\x8e\\x42\\x7c\\x3a\\x5e\\xd2\\x93\\x74\\x37\\x14\\x90\\x7a\\xdd\\x12\\x76\\x0d\\x44\\xf1\\x5f\\x0a\\x87\\xfe\\xa5\\x6e\\x93\\x3d\\xac\\x66\\x8f\\xf4\\xb3\\x69\\x55\\xb6\\x75\\x55\\x80\\x61\\xb5\\xad\\x13\\x23\\xa0\\xba\\x97\\xe6\\x06\\x9f\\x4e\\x51\\x50\\x8f\\x3f\\x95\\x2e\\xf9\\x36\\x4a\\x51\\xa5\\x6f\\xf5\\x31\\x5c\\xda\\x9b\\x15\\xfd\\x65\\x5d\\xf1\\xb0\\x02\\x35\\xe5\\xaa\\x7a\\x54\\x96\\xdc\\x35\\xa9\\xaf\\xa4\\x53\\x9c\\x3e\\xc5\\xbd\\x3d\\xcd\\xa5\\x35\\x1c\\xc9\\x7f\\xc6\\x3b\\xeb\\x6d\\x8f\\x10\\xbd\\x6a\\xd9\\x2d\\x03\\xb5\\xbe\\x05\\x76\\xbc\\x4e\\xa1\\xaf\\xfa\\x5f\\x4d\\x47\\xb7\\x4d\\xc2\\x5d\\x34\\xd5\\xd2\\xc7\\x91\\x56\\x0a\\x75\\x7e\\x7e\\xde\\xe0\\x92\\x1c\\x36\\x3a\\xda\\xe9\\xde\\x79\\xef\\x74\\x21\\x34\\x5d\\xe0\\x5b\\xe6\\x34\\xbc\\x43\\x8d\\xdc\\x47\\xba\\x77\\x8a\\x57\\x1a\\x77\\x7b\\x83\\x7b\\xfd\\xdd\\x6e\\xda\\x67\\x96\\xb2\\x1d\\xc5\\x9e\\x1e\\x9c\\x85\\xe6\\x6a\\xdc\\xa8\\x13\\xe1\\x6f\\x8b\\x76\\x23\\x4f\\x5b\\xd6\\x94\\x7d\\x8e\\xd4\\xe3\\x54\\x72\\x69\\x51\\x95\\xda\\x24\\x0d\\x41\\xb3\\x6a\\xe3\\xd2\\x20\\x95\\x80\\x8a\\xc2\\x1f\\x53\\x37\\x0c\\xdc\\xb8\\x13\\xee\\x2d\\x1c\\x6f\\xbf\\x77\\x35\\xe0\\xfa\\xc2\\x88\\xba\\x14\\xc9\\xde\\xca\\x2e\\x8f\\xa1\\xc9\\xbc\\x79\\x6f\\x1f\\x9f\\x78\\x43\\x50\\xaf\\xdd\\x9c\\x16\\x4d\\xcb\\x4c\\x64\\xc4\\xf2\\x91\\x80\\x30\\x0f\\xe9\\xa6\\xcb\\x70\\x3c\\x8b\\x43\\x43\\x88\\x58\\x84\\x34\\x38\\x6e\\xaa\\xa9\\x52\\x04\\x4b\\x2e\\xe1\\x7b\\x33\\x8c\\xc0\\x27\\xe3\\xe9\\x8e\\xb3\\xc4\\x9f\\x05\\x8a\\xf4\\x48\\xae\\xa3\\xd4\\x55\\x2f\\x89\\xe7\\x3c\\xa2\\xe0\\x3e\\xc2\\xf5\\x70\\xb5\\xe9\\xf4\\x89\\x0f\\x86\\xa6\\x1f\\x48\\x2b\\xdc\\xff\\x41\\xc8\\x71\\xab\\x88\\x70\\x5c\\x60\\x4c\\x7a\\x78\\x3a\\xc6\\x84\\x55\\x05\\x14\\x78\\x85\\xcf\\x2a\\x72\\x80\\xab\\xaa\\x99\\x10\\x65\\x2c\\x3f\\x56\\x91\\x8f\\xfc\\xb6\\xc1\\x08\\x7e\\x50\\x09\\x64\\x0e\\xcc\\xfc\\x9a\\xf5\\xcc\\x0c\\x8f\\x5a\\x77\\x44\\xe8\\x0a\\xf0\\x90\\x99\\x6b\\x84\\xbf\\xe1\\x49\\x8b\\xe9\\x89\\x3e\\x79\\xd4\\x4d\\x4d\\x58\\xd3\\x5b\\xfc\\x29\\x1c\\x4e\\x5c\\xe4\\xea\\xae\\x43\\x3c\\xaa\\x26\\xfd\\x75\\xf0\\x96\\xe0\\x2e\\x91\\x40\\xa2\\x73\\x4e\\x27\\xf1\\xd4\\xea\\x1c\\x78\\x3c\\x59\\x95\\x9e\\xb1\\x65\\x04\\x33\\x82\\x6e\\x16\\x8f\\x2f\\x08\\x7a\\xa2\\xbd\\x86\\x61\\x1d\\x40\\xe2\\xf5\\xb7\\xa6\\x40\\x2f\\x0b\\x26\\x2b\\x8a\\x60\\x26\\xd6\\x48\\x8c\\xc0\\x1e\\x21\\xbf\\x49\\xc0\\x2f\\xd6\\xc9\\x62\\x17\\xc6\\xae\\x1c\\xca\\x3e\\x9d\\x50\\x15\\xee\\x7b\\x08\\xc7\\x12\\x5d\\x4c\\xd2\\xfc\\xfe\\x86\\x2e\\x02\\x94\\x4b\\xbc\\x8f\\x05\\xc1\\x25\\x6e\\xd9\\x11\\x14\\x36\\x42\\x8d\\x1e\\x99\\xf5\\x66\\x53\\xaf\\x17\\x55\\x4a\\x76\\x5e\\x26\\xe5\\x05\\xd8\\x65\\x59\\xa1\\x05\\x03\\xca\\x2d\\x11\\xc9\\x92\\x23\\x9e\\xe2\\xd1\\x75\\xa2\\x57\\x10\\xbb\\x16\\xc5\\x3d\\xa1\\xf1\\x87\\x93\\x54\\xfa\\x40\\xbf\\xa8\\xd2\\x51\\x10\\x6f\\xe1\\x45\\x95\\x7e\\x49\\xdd\\x2c\\xda\\xdb\\x6c\\xd2\\xf6\\x57\\x24\\xaa\\x03\\xbc\\xeb\\x48\\x6c\\x82\\x34\\x29\\x0a\\x3a\\xdc\\x03\\xbf\\xe9\\x53\\x36\\x9d\\x1e\\x0e\\x06\\x18\\xd4\\x63\\x74\\x36\\x02\\x7b\\x63\\x7a\\x9e\\xab\\x01\\xa6\\xdd\\xd6\\x6f\\x41\\x13\\xd8\\x2a\\x96\\xd5\\xe7\\x98\\x40\\x3a\\x28\\x6b\\x4e\\x11\\x31\\x7f\\xc0\\xf4\\x42\\x27\\xe5\\x77\\x32\\xcc\\xcf\\xa1\\x15\\xf9\\xaa\\x4c\\x33\\x8c\\xaf\\x75\\x34\\xc8\\xcf\\x17\\x85\\xb9\\x3e\\x8a\\x0f\\xb2\\x4b\\x40\\xae\\x84\\x84\\x6d\\x78\\x91\\x98\\xca\\x03\\x3b\\x16\\x8c\\x92\\xd1\\x80\\xbc\\xeb\\x44\\x74\\x28\\x66\\xf3\\x30\\xf2\\x24\\x2a\\x6c\\xf9\\xc6\\x56\\x12\\x2e\\x6f\\x68\\xa4\\x07\\x64\\x23\\xfb\\xfd\\x6e\\x45\\xa3\\x59\\xe2\\x99\\x6e\\x5f\\x22\\x4e\\x34\\x07\\xd2\\x3f\\xd1\\x2b\\x6b\\xff\\xc7\\x8b\\xab\\xa6\\x10\\x65\\x98\\x7f\\x4c\\xd5\\xa0\\x6e\\x8b\\xc1\\x48\\x3d\\xc5\\x3f\\xd4\\x91\\x1a\\x14\\x6d\\x3d\\x70\\xe2\\x61\\xab\\x4b\\x27\\xab\\xf8\\x78\\x64\\x18\\x7a\\xd5\\x07\\x31\\xe5\\x70\\xac\\x30\\x0b\\x0e\\xc5\\x14\\x23\\xb6\\xde\\x78\\x60\\xd8\\x48\\x24\\x1c\\x82\\x91\\x11\\xc1\\xdd\\x9f\\x80\\x64\\x6a\\xfe\\x8f\\xd6\\xcb\\x32\\x3c\\x16\\x16\\x8d\\xcf\\x6f\\x14\\x17\\xfe\\x45\\x95\\x7a\\xa8\\x19\\x29\\x3c\\x85\\x18\\x01\\x2d\\x8a\\xab\\x31\\x46\\x58\\x8d\\xaa\\x6c\\xda\\x7a\\x9d\\xb6\\x55\\x7d\\x64\\xb6\\xd0\\x98\\x00\\x70\\x24\\x14\\x8b\\x6f\\x7b\\x72\\xb2\\x5e\\xad\\xaa\\xba\\x6d\\x54\\x7b\\x55\\x19\\x46\\xb1\\x6c\\xd4\\xde\\x1e\\x9a\\x39\\x43\\xb4\\x8d\\xaa\\xa4\\xe0\\x9a\\x49\\x7d\\x4e\\xc1\\x57\\xf3\\x16\\x9e\\x34\\xe8\\x19\\xdd\\x30\\x17\\x9d\\xa4\\x0b\\x7c\\x3a\\xee\\xd8\\xb6\\xfc\\x92\\x83\\xe3\\x3c\\x58\\xae\\xd6\\x5a\\x43\\x69\\x42\\x86\\x69\\x5c\\x7f\\x00\\xb7\\x91\\x90\\x75\\x66\\x1b\\x48\\xc2\\xcd\\x65\\x7a\\x05\\xf6\\x39\\x5c\\x87\\x66\\x85\\x0d\\x62\\x6f\\x96\\x55\\xb9\\x67\\x43\\xbc\\x8f\\x18\\x53\\xc6\\xb9\\x35\\x0e\\xa5\\x30\\x2a\\xe5\\x44\\xf8\\x45\\x34\\x0b\\xde\\x80\\x60\\x3f\\xb0\\x27\\x36\\x36\\x20\\x09\\xee\\x91\\x34\\x6b\\xb2\\x7b\\xde\\x02\\xa2\\xa4\\x57\\xc4\\xf1\\x85\\x5d\\x87\\x24\\x20\\x23\\x07\\x5b\\x07\\xe4\\xb7\\x55\\xb9\\xb7\\x5a\\xcf\\x8a\\x3c\\x45\\xd4\\xff\\x79\\x92\\x22\\xae\\x69\\x92\\x65\\xa8\\x99\\xcd\\xd0\\xe8\\x0f\\xec\\x0f\\xd0\\xf4\\x99\\x01\\x0f\\xc4\\x00\\xad\\x63\\xbf\\x3c\\x5c\\x3d\\x64\\x99\\x2f\\x40\\xf8\\xe9\\xc5\\xe5\\x92\\x10\\x50\\x3e\\xac\\x40\\x30\\x67\\x45\\x88\\x31\\x70\\x33\\xb6\\xa8\\x2d\\x41\\xaf\\x4b\\xbb\\x02\\x3e\\x52\\x49\\x50\\xa3\\xe1\\xee\\x3c\\x67\\x20\\x76\\x2d\\x74\\x8d\\x06\\x4a\\x0e\\x6f\\xae\\xd6\\x1e\\xbe\\x50\\x38\\xad\\x13\\xf5\\xa6\\x6a\\x5a\\xa6\\x63\\xcd\\x58\\xaf\\x49\\x5e\\x80\\x7d\\x35\\x2c\\xbd\\x7b\\xcd\\x50\\x43\\x54\\x07\\x8d\\xec\\x11\\xd5\\x4c\\x4c\\xfb\\xe7\\xba\\xfd\\x39\\x29\\xd6\\x72\\x18\\xc4\\xb3\\x42\\x0b\\x8a\\xc6\\xa1\\x1b\\x36\\xb4\\xf3\\x6f\\x27\\x92\\x91\\xa7\\x31\\x04\\x9e\\x68\\x9f\\x8f\\x3c\\x51\\x46\\x37\\xbe\\xc7\\x04\\xae\\xe4\\x6f\\x55\\x6e\\xfb\\xa3\\xae\\xaf\\x3d\\xee\\x9a\\xd4\\x49\\x5b\\xd5\\xc3\\x91\\x5d\\x8f\\xc6\\x0e\\x25\\xab\\xd2\\x37\\x30\\x8b\\xef\\x56\\x43\\x3b\\x2c\\x44\\x70\\x16\\x57\\x76\\x38\\xc9\\xcc\\xd9\\x21\\x87\\x61\\x24\\x7c\\x0a\\x54\\x12\\x1f\\x11\\xa1\\x69\\x7a\\x38\\xd0\\x1e\\x0b\\x6d\\xab\\x55\\x5f\\x54\\x12\\xcc\\x77\\x7b\\x58\\x12\\xfe\\x8f\\x78\\x6f\\xc0\\xc4\\x61\\x20\\xe2\\x95\\x81\\xc7\\x0d\\xaa\\xd1\\xa2\\x38\\x02\\xc5\\xc1\\x4d\\x18\\xa6\\x18\\x0f\\x61\\xb4\\x2b\\xa4\\x93\\xfc\\x79\\x55\\xd5\\x59\\xc3\\x5f\\xc0\\xc3\\xe7\\xc0\\x3d\\x95\\xdc\\xca\\xe7\\xdb\\x6a\\x15\\xe1\\xf2\\xe6\\x8a\\x86\\xbb\\xc3\\x21\\x83\\x0b\\xe2\\xda\\x06\\x0f\\x6e\\x0d\\xbb\\xf8\\x82\\x81\\xed\\x3a\\xf3\\x2d\\xb0\\xba\\x6a\\x2b\\xf5\\x34\\xc8\\xd1\\x56\\x23\\x75\\xe4\\xd0\\xa7\\x3d\\x50\\x72\\xb2\\x2a\\x8a\\x37\\xcb\\xa4\\x73\\xae\\xdb\\xb0\\xa3\\x2e\\xef\\xf6\\xfd\\xc0\\x81\\x5f\\xa8\\x9d\\x6e\\xcf\\xc3\\xc4\\xb6\\x1a\\xfd\\xe7\\xed\\x0a\\x1c\\x9b\\xa1\\x9b\\x60\\x83\\x8f\\xd4\\x67\\x18\\x08\\xd3\\x39\\xe5\\x42\\xbb\\x7c\\xcc\\xf1\\xc8\\xb6\\xaa\\xee\\xdf\\x57\\x05\\x50\\xac\\x57\\x25\\x66\\xee\\x56\\x0c\\x57\\x84\\x46\\x52\\x3c\\xbf\\x0d\\x50\\x85\\xc1\\x7e\\x40\\x4b\\x71\\x5e\\x08\\xf3\\xe5\\x2d\\xd8\\x57\\x76\\x6b\\x16\\xd3\\xc0\\x36\\x76\\x91\\x1e\\xfd\\x0c\\x4f\\x56\\x10\\x82\\xa3\\x5b\\x85\\xdb\\x10\\x28\\x3d\\x15\\x24\\x57\\x6f\\xc1\\x72\\xf5\\xba\\x29\\x97\\x23\\x7c\\x1b\\xb3\\x73\\x6e\\x7e\\x3d\\xaf\\xd6\\xa5\\x6c\\xdf\\x75\\xdf\\xf2\\x12\\x18\\xb2\\x95\\x5c\\xfb\\xf3\\x42\\x16\\xc8\\xcc\\x8a\\x86\\x5b\\xf2\\x86\\x0c\\x8b\\x60\\x8f\\x90\\x0e\\x45\\xd9\\x55\\xd5\\xb8\\xe2\\x3e\\x99\\x9a\\x4f\\x76\\x6e\\xf1\\x01\\x46\\x14\\x44\\x19\\x4f\\xc6\\xe9\\xa3\\x10\\x4d\\x2c\\x77\\xf3\\x0d\\x76\\x38\\x82\\xaa\\x9c\\x45\\x25\\xca\\xec\\xce\\xc3\\xdc\\x26\\x0c\\x16\\x3a\\xc9\\x60\\xfa\\x09\\x57\\xc6\\x46\\x8e\\x0b\\xdf\\x0e\\x5c\\x11\\x84\\xd4\\xee\\x14\\xc2\\xe4\\xfe\\x62\\xba\\xcc\\x06\\x7e\\xdb\\x6d\\xe5\\x25\\x88\\xcd\\x28\\xeb\\x6d\\xab\\x61\\x20\\x31\\xc9\\xaf\\x66\\xb7\\x0f\\x03\\x0a\\xc1\\xa1\\xe3\\xd2\\x21\\xb0\\x37\\x32\\xcf\\xc6\\x5f\\x40\\x1f\\x18\\xce\\xc6\\xef\\xa3\\x73\\xad\\x32\\x22\\x41\\x5e\\x9e\\x63\\x69\\x9d\\x6d\\x21\\x2a\\x5d\\x4c\\x3a\\xd9\\x87\\xb4\\x8e\\x8d\\x5b\\xc7\\xe8\\x01\\x49\\x6f\\xcf\\x8b\\xc0\\xed\\x16\\xcf\\x82\\x90\\xf7\\x47\\xb8\\x5d\\xcf\\x86\\x52\\x4f\\xad\\xa1\\xac\\xa9\\xdd\\x4c\\xf3\\xc1\\x88\\x0c\\x65\\x47\\x1c\\x55\\x52\\xe8\\x67\\xf1\\xf8\\x90\\xe7\\x4f\\x4f\\x7f\\x19\\x4f\\x1d\\x51\\xd1\\xff\\x58\\x9f\\xb1\\x8e\\x0e\\x8f\\x06\\xaa\\xbb\\xbe\\x76\\x9f\\x3b\\xfd\\xc3\\x1b\\xd9\\x6d\\x5d\\xa4\\xae\\xb5\\x0b\\x5d\\x77\\x7a\\x18\\xd4\\x10\\xed\\x9e\\x29\\x3f\\xa2\\x0a\\xe0\\xa5\\xdc\\xfb\\x0a\\xc9\\x77\\xe8\\x5c\\xb3\\xa5\\x77\\xcd\\x6d\\xfd\\x6a\\xfc\\x8e\\x21\\x1c\\xb8\\xeb\\x5d\\x73\\x97\\xf6\\x9f\\x6d\\x7a\\x7a\\x30\\xef\\xb4\\x8e\\x82\\x7e\\x92\\xa1\\x9a\\x72\\x35\\x0c\\x76\\xc4\\x58\\x91\\x67\\xfd\\x9f\\xd0\\x4b\\x49\\x62\\x7d\\x53\\xc4\\xad\\x5a\\x95\\x64\\xa4\\xbb\\xdd\\xb7\\x1f\\x52\\x09\\x79\\x01\\x03\\xa2\\xc8\\x48\\xd5\\xba\\x75\\x60\\x78\\xb1\\x0b\\x4d\\x10\\x73\\x20\\x97\\x21\\x29\\xab\\x75\\x8b\\xa1\\x0d\\x5c\\x28\\x4f\\x49\\x1f\\x5f\\x1d\\x52\\xf4\\x4d\\xb8\\xf1\\x30\\x25\\xf7\\xdb\\x2e\\xf4\\x97\\x05\\x2a\\x94\\x56\\x4a\\x56\\x3b\\xef\\xd4\\x51\\x4e\\x61\\x6f\\x7d\\xcc\\xbd\\xbe\\xa3\\x8b\\xb9\\x77\\x3a\\x60\\xd8\\xcf\\x7e\\x79\\x13\\x5f\\x1b\\xf3\\xdf\\xc5\\x16\\xae\\xd6\\xad\\x53\\xec\\x47\\x96\\x34\\xc9\\x6e\\xdd\\x92\\x5b\\xb9\\x86\\x3d\\xc9\\x1a\\x79\\x94\\xd1\\x40\\x08\\xce\\x8b\\xe2\\x4b\\x26\\x2e\\xa2\\x72\\x7c\\xfe\\xef\\xca\\x5c\\x48\\x1a\\xbc\\xdb\\x04\\x30\\x3d\\x76\\xe6\\xb6\\x3b\\x1b\\x78\\x72\\x8b\\xe9\\xd8\\x76\\xc1\\x8b\\xd1\\xf0\\xb6\\xc9\\x18\\x5b\\x94\\xed\\x3b\\xd3\\xad\\xaf\\x69\\x06\\xcd\\x5c\\x20\\x3e\\xfb\\x54\\x87\\xc7\\xa9\\x4c\\x31\\xc7\\x2f\\x93\\x7f\\x21\\xc1\\xbe\\xc9\\xfb\\xa2\\x61\\x58\\x60\\x8a\\x75\\xdf\\xe8\\x42\\xd8\\x80\\x7f\\x89\\xb8\\x4d\\xa7\\xfb\\x97\\x4b\\xdd\\xac\\x0d\\xf1\\xe7\\xbe\\xf9\\x63\\x93\\x6f\\x6e\\xff\\x68\\x62\\x3c\\xee\\x5d\\x88\\xff\\xba\\x15\\x90\\xf3\\x79\\x4f\\xce\\x27\\x69\\x5d\\x75\\x11\\x9d\\x32\\x72\\x12\\xea\\x4c\\x9a\\xf9\\x0f\\x06\\x4c\\xe1\\x5a\\xbc\\xb5\\x63\\x69\\xca\\x7c\\x77\\xea\\x17\\xb8\\xe5\\xc5\\x08\\x1c\\x6f\\x7b\\x6c\\xaa\\x12\\x5e\\x32\\xc1\\x25\\x61\\xbd\\xda\\xce\\x78\\xc3\\xcd\\x1f\\xe5\\xc0\\xd9\\x7a\\x85\\xbd\\x85\\x98\\x51\\x42\\x9b\\x14\\xf6\\xad\\x19\\x66\\xeb\\x55\\xb7\\x47\\x66\\x4e\\x06\\xbb\\x79\\xb9\\x5a\\xa3\\x99\\x69\\x74\\x5c\\x7d\\x47\\xd3\\xed\\x83\\xec\\xa3\\xab\\x54\\x84\\xfa\\x1f\\xd3\\x72\\xf1\\x78\\x7b\\x27\\xa4\\x67\\x2e\\x3c\\x9a\\xe2\\x4b\\x80\\xcb\\xeb\\x90\\xdc\\x5d\\x54\\x7c\\x17\\xc8\\x55\\xca\\xcd\\xa8\\x33\\x71\\x72\\xf6\\x58\\x68\\x3f\\xbe\\x3a\\x0c\\xf5\\x1f\\xa7\\xf9\\xd9\\xa8\\x13\\x59\\x4b\\x10\\x0c\\x3e\\xf3\\x5c\\x9d\\xc0\\xd8\\x2c\\x60\\x3b\\xd8\\xa7\\xd2\\xdf\\xf7\\xf8\\x1e\\x00\\x89\\xe0\\xf2\\xf4\\x81\\x6c\\x81\\x4f\\x34\\x3f\\x9d\\x50\\xa7\\xdd\\x34\\x87\\xcf\\xdf\\x30\\xbd\\xdb\\x43\\x9a\\xe7\\x5f\\x1d\\xee\\xed\\x39\\x9a\\x09\\xd4\\x46\\x66\\xc7\\xd9\\xa9\\xf9\\xea\\xf0\\x4c\\x1e\\xb3\\x38\\x00\\xdc\\x52\\x8e\\x99\\x50\\x2f\\xf9\\xa5\\x82\\x8e\\x0a\\xca\\x1a\\x5c\\x79\\x84\\xd2\\x07\\x01\\x82\\xf1\\x02\\xc0\\x88\\x40\\xf6\\xf3\\x8d\\x3d\\x41\\xd7\\x65\\x56\\xf5\\x10\\xdc\\x48\\x7d\\x76\\x9d\\x7f\\x55\\x57\\x4b\\xbf\\x0b\\x03\\x53\\x74\\x30\\x62\\xed\\xcf\\x1f\\xae\\xc6\\x14\\xe5\\x6a\\x4c\\x95\\xb7\\x1d\\xe8\\x77\\xea\\x16\\x69\\xc3\\x5c\\xe7\\xfe\\xd5\\x5a\\xa1\\x97\\xa2\\x56\\x94\\x27\\x5f\\x82\\x54\\x9a\\x97\\xe7\\x82\\x19\\x5d\\x26\\x66\\x09\\xfd\\x67\\x9c\\xcb\\xa4\\xe0\\x43\\x22\\x56\\x24\\xb8\\xd5\\x61\\x31\\xbc\\xc4\\xd1\\x73\\x95\\x8f\\x32\\xee\\x99\\x22\\x99\\x1c\\xee\\x15\\x0d\\x72\\x8f\\x55\\x56\\x95\\x84\\xcf\\x8e\\x36\\x8b\\x5b\\xb5\\xe8\\x36\\x32\\x50\\xb0\\xd3\\x51\\xaa\\xb5\\x5f\\xcd\\x81\\x60\\x23\\x71\\xa9\\xdd\\x5d\\xa8\\xf7\\x26\\x8c\\x39\\x15\\x78\\xb8\\x8b\\x40\\x42\\xae\\xf6\\xaf\\x0e\\xc3\\xfa\\x31\\x07\\xec\\x08\\xaf\\x0d\\xea\\xfd\\x8d\\x7f\\x2e\\x7c\\x66\\xaa\\x35\\x57\\x4c\\x24\\x3d\\xcc\\x68\\x4f\\x63\\x69\\x8e\\xe9\\xcf\\xdb\\x96\\x47\\x40\\xf9\\x69\\xb2\\x4c\\x3e\\xb9\\xd7\\x4b\\xba\\x51\\x2f\\x93\\xfa\\xe2\\x79\\xa1\\x93\\x32\\xb2\\x14\\x3d\\x8f\\x9e\\x98\\x0c\\x54\\xe5\\xd2\\x87\\xac\\xaa\\xc5\\xbe\\x06\\x5f\\xa5\\x52\\xb2\\xaa\\x53\\x7d\\x62\\x58\\xa1\\xd4\\x64\\x89\\x54\\xcb\\x66\\xbc\\xbe\\x17\\x49\\xd3\\xbe\\x5b\\x05\\x44\\x01\\xa9\\x27\\xba\\x88\\x7f\\x78\\x87\\x07\\x94\\x87\\x71\\x2e\\x69\\x92\\xf3\\x9e\\xdb\\x6e\\x72\\xf7\\xf3\\x26\\x98\\x12\\x35\\x3c\\xd7\\xa5\\x0b\\xe8\\xbf\\xad\\x0e\\x73\\xa3\\x30\\xb9\\xad\\x7c\\x15\\x4c\\xa0\\xa7\\xd5\\x8c\\x2e\\xa7\\x47\\x16\\x86\\x04\\x8e\\xc0\\xbe\\x86\\xf2\\xba\\x7b\\xa1\\x67\\xde\\x1b\\x5c\\x8b\\x90\\x76\\x6e\\x2b\\x88\\xb9\\x46\\x37\\xe2\\xf9\\xa1\\xdb\\x23\\x93\\xf9\\x45\\xd2\\x26\\xb7\\x6c\\xd0\\xbb\\x13\\x1e\\xd4\\x62\\xb7\\x20\\x59\\xb8\\x79\\x9d\\xe4\\x26\\x71\\x07\\xf3\\xa5\\x85\\x15\\x2d\\xee\\x51\\x40\\xec\\xb3\\xad\\xd5\\xd0\\x66\\xed\\xab\\xc8\\xea\\x96\\xbe\\x5b\\xb7\\xad\\xae\\xd1\\xce\\x63\\xab\\x86\\xe9\\x1c\\x32\\xbe\\x7e\\x31\\x36\\x6c\\x70\\xad\\x83\\x45\\x13\\x00\\x6b\\x4e\\xef\\x3a\\x56\\x03\\x2c\\xd5\\x8b\\xaf\\x16\\x9a\\xef\\x81\\x53\\xe8\\xb9\\xe8\\x92\\xc0\\x59\\xf3\\x93\\xa7\\xea\\xf3\\x8d\\x6f\\x55\\xd4\\x9c\\x72\\x17\\xcf\\x90\\x57\\x5b\\x00\\x40\\x60\\x50\\x90\\x60\\xc4\\x86\\xbc\\x01\\x8f\\x28\\x6b\\x26\\x64\\x71\\x2b\\xc3\\x06\\xbc\\x38\\x01\\x61\\xfc\\xeb\\x1b\\x71\\x61\\x03\\x36\\x85\\x13\\xd9\\x33\\x85\\xdc\\xb3\\x3b\\x01\\xbe\\xa3\\x71\\xff\\x2d\\x01\\xbd\\x83\\xde\\xde\\xbf\\x1f\\x19\\x83\\x9b\\x10\\x1f\\x90\\xdd\\x5b\\x2a\\x46\\x2f\\x8c\\x2f\\x96\\x0f\\x01\\xbe\\xad\\x89\\xd0\\x3a\\x88\\x6c\\x8e\\x68\\xb2\\xbb\\x25\\xef\\x38\\xef\\xb1\\xb9\\x57\\x0e\\x6b\\xd3\\x0f\\x43\\x3e\\xb2\\x6a\\xfc\\xd7\\xe5\\xbc\\xea\\x79\\x45\\x00\\x21\\xf3\\x0e\\xef\\x09\\x92\\x78\\xb6\\xbe\\x8b\\x78\\xfd\\x2d\\xfd\\x48\\xdd\\xfd\\x6f\\x12\\xb2\\x7a\\x76\\x9d\\xe9\\x56\\x18\\x40\\x49\\x87\\x48\\x3d\\xa2\\x92\\x72\\x5b\\xd8\\xb9\\xe0\\x46\\xf6\\xb9\\x80\\xc7\\x88\\x92\\x81\\x10\\x8f\\x88\\x02\\x50\\x76\\x87\\x45\\x41\\x83\\x27\\x6f\\x69\\x8e\\x22\\xcb\\xe5\\xb3\\x60\\x53\\xe8\\x79\\x91\\x34\\x8d\\xa8\\x04\\x7e\\x8f\\xd5\\xec\\x5c\\x7e\\xa0\\x5f\\x63\\x75\\x55\\x27\\x2b\\xf9\\xc1\\xfe\\xf6\\x2b\\x26\\xe0\\xc3\\x23\\x0f\\x82\\xd1\\x99\\x30\\x10\\x22\\x25\\x55\\x14\\xd7\\x9a\\x12\\xe2\\xe3\\x15\\x3e\\xd9\\xa7\\x45\\x73\\x1b\\x07\\xf3\\x4a\\x00\\x6d\\xd0\\xfe\\x50\\x4f\\xdd\\x9f\\x47\\x6a\\x00\\xce\\x10\\xb7\\x70\\xb8\\x55\\x0d\\xcf\\xd6\\xae\\x2a\\xf0\\x52\\x30\\x15\\xd9\\x29\\x1a\\x84\\x3a\\xbe\\x23\\x91\\x7d\\x96\\xa4\\x17\\xe7\\x80\\x00\\x01\\x85\\x68\\xfa\\xb6\\x16\\xe9\\x74\\x16\\x8b\\x98\\x1e\\xdb\\x49\\x1e\\x84\\x44\\x78\\x6a\\x3a\\x7a\\xc6\\x3b\\x13\\x7f\\xc1\\xcb\\x6e\\x63\\x09\\xdc\\xc1\\x51\\x99\\x1a\\x3e\\xea\\xa6\\x1d\\x9a\\xc9\\x9c\\xb4\\xe6\\x2f\\x51\\x87\\x04\\xe9\\x48\\x4c\\x19\\xaf\\x02\\xaf\\x81\\xdd\\xa9\\x1a\\xa8\\x81\\xda\\xf5\\xda\\xe9\\x65\\xb8\\x6c\\xc2\\xf1\\xff\\xaf\\xf8\\xbf\\xb0\\xe2\\x97\\x36\\x42\\xac\\x5b\\x07\\x49\\x0c\\xe9\\xba\\xde\\xbe\\x80\\x48\\x01\\x8d\\x64\\x3a\\x1e\\xc9\\x78\\x4c\\x31\\x80\\xc3\\x97\\x40\\x71\\xe9\\xba\\x9e\\x2c\\x93\\x36\\x5d\\x04\\xf4\\xe4\\x63\\xa5\\xdf\\xb3\\xd8\\x71\\xd1\\x1e\\x61\\x95\\x64\\x6b\\x07\\xa8\\x71\\x39\\x61\\xdb\\xc3\\xaf\\xd3\\x83\\x33\\x19\\x37\\x45\\x11\\x5f\\x76\\xe4\\xbd\\xae\\x5d\\xd4\\x07\\x51\\x7e\\xa4\\x76\\xb9\\x69\\xaa\\xf0\\xfa\\x1a\\x5b\\xc1\\x32\\xa4\\x39\\x78\\xaa\\x06\\x30\\xc9\\x6a\\x60\\x0a\\xb8\\xca\\xb4\\xe9\\xf1\\xf5\\xb5\\x3c\\x16\\xef\\x22\\x4d\\x78\\xf0\\xba\\xb7\\xd0\\x76\\x04\\x6f\\xd7\\x56\\xee\\xc3\\xf4\\xfa\\x14\\xde\\xc1\\xdc\\x0d\\x37\\x16\\xb7\\x6e\\x5b\\x74\\xce\\x0c\\xd6\\x6f\\x81\\x5c\\x53\\xec\\x9d\\xea\\x23\\x9c\\x1e\\x51\\x73\\xb7\\x58\\xff\\xac\\x41\\xf9\\x97\\xd8\\x60\\x08\\xc7\\x86\\x08\\x28\\x01\\xd8\\x27\\x5e\\x5f\\xab\\x01\\x5c\\x3e\\x07\\xd2\\xc6\\x88\\x81\\x51\\xfd\\x67\\xf4\\xf8\\x53\\x82\\x4e\\x8a\\x77\\x2b\\xd0\\xe1\\x7e\\x96\\x8e\\xe6\\x47\\xb2\\x49\\xeb\\xf3\\x6d\\xa6\\xf2\\x23\\xa1\\x36\\x01\\xd1\\x3f\\x0d\\xdc\\x3d\\x94\\x2d\\xd7\\xf3\\x8e\\xe3\\xbc\\xc2\\x8f\\x62\\x83\\x72\\x9f\\xe3\\xc5\\x7d\\x47\\xff\\x23\\xdc\\x1a\\x63\\x72\\x33\\x8b\\xd6\\x88\\x9f\\xe2\\xb5\\x75\\x9c\\xe4\\xa3\\x35\\x74\\x72\\x91\\xff\\x07\\xbc\\xab\\x77\\x2d\\x12\\xb6\\x2c\\x3b\\x07\\x8a\\x19\\xdb\\x69\\x1f\\x4b\\xf0\\x2b\\x5e\\x41\\xeb\\xdb\\x71\\xdc\\x76\\x0c\\x21\\x6e\\x6f\\x3a\\xf0\\x11\\x3a\\x1b\\x93\\xdb\\x5d\\x28\\x98\\x59\\x48\\x21\\x89\\x71\\x65\\x45\\xc5\\x06\\x51\\x6c\\x3f\\xc7\\x15\\xad\\xe6\\x63\\x7f\\xa0\\x09\\x02\\xd4\\x82\\x5c\\x4e\\xbb\\x0a\\xf1\\x1c\\xba\\xe0\\x88\\xd7\\xd7\\x0e\\x01\\x4b\\x3d\\x9e\\x52\\x5c\\xfe\\x91\\x8c\\xf2\\xa5\\x1c\\xca\\x55\\x58\\xaa\\xad\\xd4\\x13\\x5b\\x46\\x02\\xf1\\xf8\\x5e\\x17\\x26\\xeb\\xd2\\x33\\xef\\xe7\\x0a\\x18\\x37\\x80\\x25\\xd0\\x9b\\x70\\xf9\\xd0\\xbd\\xcf\\x5f\\x97\\xe8\\xc6\\x9f\\xe7\\x05\\x7a\\x07\\xa3\\x72\\xa9\\xd7\\x4c\\xec\\x11\\x45\\xca\\x0e\\x77\\xfb\\x4e\\x78\\x5a\\x9c\\x9e\\x31\\x56\\xa6\\xf4\\x0f\\x0d\\xaf\\x4e\\x5f\\xe4\\x17\\xed\\xd6\\xc7\\x5e\\x40\\xc3\\xc5\\xff\\xe2\\xe5\\xcf\\xfd\\x20\\xf3\\xfd\\x04\\xc0\\x5e\\x08\\x01\\x62\\x19\\x5f\\xe7\\xde\\x56\\xbe\\x4f\\xfb\\xfd\\xfb\\xd6\\xa9\\xfd\\xc9\\xd4\\xae\\xb6\\xc0\\x77\\xc0\\xff\\xa2\\x70\\x9b\\x54\\x9f\\xf4\\xd6\\xdf\\x56\\x32\\xda\\x13\\x81\\x18\\xe1\\x72\\x3e\\x99\\xa2\\x77\\x7c\\x40\\x9f\\xca\\x1c\\x9d\\xb0\\xfe\\x86\\xb0\\xf0\\x2f\\x49\\x75\\x23\\x2f\\x28\\xd4\\x67\\x3a\\x77\\xbf\\x8c\\x36\\x1d\\x75\\x2a\\xb5\\xbb\\x8b\\xfd\\x74\\xe7\\xa9\\xc3\\x63\\x33\\x55\\x8b\\x17\\xbe\\xe3\\xa2\\x08\\x69\\xb6\\xeb\\x0e\\x24\\xe2\\xdd\\xdd\\x7e\\x2b\\xc7\\x15\\xbe\\x95\\x80\\xb6\\x90\\x4f\\xc4\\x21\\x54\\x59\\x07\\xbc\\x66\\x65\\x5f\\xf6\\x7c\\xb4\\x57\\x6f\\x43\\x43\\x1e\\x3b\\x41\\x76\\x6a\\x6e\\x3a\\xec\\xd7\\xee\\xdf\\x1d\\xe0\\x9b\\xaf\\xea\\x0a\\x5f\\xf5\\xc5\\x7c\\x54\\x1c\\x6a\\x80\\xdf\\x9e\\xc4\\xbe\\x93\\x86\\xb7\\x8d\\x5e\\x9d\\x60\\x58\\xce\\xd8\\xc3\\x6a\\x27\\x5a\\xdd\\xed\\x93\\xf8\\x3b\\xcf\\xa1\\x0c\\x8c\\xbf\\xcb\\xed\\xc8\\xd9\\xfc\\x5d\\x3d\\x51\\xd8\\x4d\\x0c\\x3e\\x5a\\xcd\\xe7\\x8f\\xa2\\x71\\x73\\xaa\\xf9\\x5c\\x44\\xde\\xda\\x4a\\x29\\x3e\\x07\\x62\\x03\\xa8\\xb7\\x10\\x80\\xdd\\x99\\x2c\\x83\\x2c\\x68\\x66\\xcd\\x33\\xcb\\x53\\xc3\\x14\\x2c\\x73\\x79\\x40\\xf8\\xab\\xc3\\xd6\\x28\\x93\\x9d\\xda\\x9c\\x22\\x3a\\x61\\xfa\\x24\\x5d\\xd8\\xf3\\x86\\x52\\x60\\xc7\\x3d\\x96\\x66\\x82\\xd7\\xd7\\x2e\\xb7\\x7a\\xac\\x64\\xf8\\xae\\x03\\xf1\\x92\\xf6\\x47\\xd6\\x46\\xae\\xad\\x68\\x3f\\xc2\\x3c\\xd5\\xfe\\x3e\\x38\\x38\\xa8\\x64\\x06\\x4e\\x1b\\x18\\x65\\x2f\\x29\\x0a\\x40\\x21\\xaf\\x2d\\x8e\\x68\\x5b\\xaf\\xdb\\xc5\\xc6\\xd7\\xc7\\xa1\\x70\\x7e\\xeb\\x42\\xfb\\x6b\\x03\\xa5\\x44\\x30\\xc8\\xd5\\xc6\\x7b\\x3b\\xb6\\x8a\\x50\\xef\\xc1\\x18\\x3c\\xc4\\xd8\\x89\\xeb\\xcb\\xed\\xe0\\x7b\\x4d\\xbc\\x7d\\x47\\xa2\\x48\\x5d\\xd6\\x33\\xac\\xf5\\x3c\\x88\\x70\\x44\\x5e\\x60\\x04\\xdf\\x31\\xeb\\x63\\xb5\\x7a\\x24\\xbe\\x33\\x56\\x90\\xef\\xb9\\xe5\\x2a\\xe9\\xbe\\x02\\x9b\\xe4\\xc0\\xf1\\xc8\\x11\\x54\\x67\\x92\\x54\\x07\\x19\\xe3\\x85\\x5e\\x01\\xd2\\x6e\\x47\\x6b\\x0e\\x1f\\x44\\x21\\xa7\\x39\\x1f\\xb2\\x2d\\xb2\\x45\\xce\\x18\\x75\\x75\\x4e\\x08\\x9f\\x6e\\x0d\\x6d\\xd1\\x73\\x52\\x72\\x1c\\x5f\\x10\\x97\\xc8\\x4d\\xc2\\x85\\x1a\\xf4\\xbe\\x82\\xc6\\x49\\xa6\\x68\\x7d\\x57\\x99\\x3e\\x2f\\x00\\x5b\\x33\\xcb\\xb1\\xe1\\x51\\xe7\\xa5\\x3f\\x21\\x57\\x99\\xcf\\xdc\\x8a\\xf7\\xb5\\x8b\\xfe\\xe4\\x9f\\xdf\\x22\\xf5\\x31\\x98\\xba\\x7f\\xc6\\x9e\\x89\\x74\\x37\\x0c\\x11\\xab\\x2e\\x42\\xa8\\x16\\x6d\\xcc\\x5e\\x57\\x80\\xf6\\xec\\x73\\x8b\\x24\\x44\\xca\\x7b\\x2b\\x09\\xca\\x8e\\xe3\\x7d\\xc0\\x2c\\x1e\\x03\\x98\\x89\\x17\\x0e\\x49\\x07\\x50\\xf2\\x91\\xba\\xb1\\xb0\\x7e\\x17\\x1a\\x6c\\xa2\\xbc\\xdf\\x12\\x5c\\xef\\x73\\x66\\xd6\\x98\\xa2\\xe6\\xd9\\x56\\x8e\\x54\\xb7\\x65\\xda\\xeb\\xd0\\xb8\\xab\\x08\\xcb\\xe3\\x2c\\xb0\\xdf\\xf9\\x11\\xc1\\x02\\xdf\\x52\\xdf\\x99\\xad\\xcf\\xf7\\x0e\\xc6\\xce\\x74\\x3d\\xca\\x4d\\x23\\x23\\xff\\x30\\xc0\\x80\\x7e\\x37\\xf8\\xa4\\x6d\\x3a\\x15\\x50\\x2c\\x18\\x72\\xde\\xc1\\xa4\\x10\\x0d\\x41\\x85\\x93\\xa9\\x73\\xf0\\x01\\xd2\\x86\\xcf\\x53\\xfc\\x17\\x82\\x0d\\x38\\xda\\x12\\x13\\xdb\\x27\\x3b\\x88\\x2c\\xfd\\xf7\\x0f\\xf3\\xdd\\xc3\\xfb\\x45\\x67\\x7e\\xff\\x51\\xe1\\x02\\x1a\\xbf\\x47\\x3d\\x41\\x5a\\xc0\\x98\\x14\\xf6\\x2c\\xf5\\x2a\\xb0\\x60\\x8f\\xc2\\xe1\\x17\\x07\\x61\\xa7\\x8b\\x9e\\x18\\xf8\\x6b\\xcc\\x5d\\x3b\\xbe\\x14\\x5f\\x1d\\x5a\\xf9\\xd0\\x05\\xd3\\xe4\\x9d\\xef\\x22\\x2c\\x23\\x61\\x42\\x44\\x0d\\x5d\\x6b\\xa2\\x89\\x31\\xc6\\xc7\\xa4\\xb0\\xf9\\xe7\\x49\\x5e\\xfa\\x4b\\xe1\\xa8\\xdb\\x27\\xef\\x50\\x9e\\x2b\\xf2\\xf6\\x35\\x9c\\xe0\\xa7\\x58\\x2c\\xcf\\xce\\x9c\\x5a\\x9f\\x5d\\xbf\\xc9\\x4c\\x38\\x44\\x81\\x60\\x22\\xe2\\x5a\\xc8\\xe3\\xbb\\x4a\\x27\\x39\\xb8\\x7d\\xcb\\x37\\x3d\\x9e\\xb5\\xed\\x4e\\xad\\x9d\\x7c\\xbd\\x6f\\x89\\x9d\\x97\\xd2\\xb1\\xed\\x46\\xbc\\xa2\\xfe\\xf7\\xc4\\xc8\\xdb\\x69\\x58\\x99\\x7d\\x4a\\x35\\xd2\\xc0\\x8f\\x76\\x62\\xe4\\x85\\x70\\x04\\x2f\\x0e\\x3c\\x63\\xc4\\xd4\\x9c\\x9f\\xc2\\x9b\\x2a\\xdb\\xe2\\x1a\\x61\\xb8\\x9b\\x35\\xbb\\x00\\x6f\\xb8\\xfe\\xbc\\xe9\\x92\\x1e\\x36\\xad\\xdd\\x91\\xe7\\xfd\\x50\\x77\\xc2\\xa1\\x3a\\xbb\\x3e\\xbb\\x60\\x6d\\x8d\\x66\\x4b\\x41\\x06\\xef\\x30\\x73\\xf5\\x1f\\xaf\\xdb\\x0a\\x6a\\x76\\x0e\\x03\\x42\\xcc\\xda\\xe2\\x2f\\x20\\x0c\\xec\\x06\\xbf\\x96\\x03\\xf7\\x22\\xfb\\x82\\x19\\x75\\x5c\\xf7\\x07\\x1e\\xc8\\x72\\x1c\\x59\\x5e\\x83\\x59\\x14\\xba\\x22\\x7f\\x56\\xe6\\xf7\\x14\\x1d\\x91\\x05\\x23\\x81\\xd4\\x69\\x78\\x14\\x84\\xd6\\xcd\\x6d\\xe8\\xee\\x9c\\xe5\\xf5\\x6d\\xd2\\xbb\\xb4\\xb7\\x9c\\x60\\xc0\\x18\\x3c\\x05\\x2d\\xb8\\x41\\x60\\xd3\\x64\\xeb\\x27\\x20\\xdf\\xd0\\xa0\\x69\\xe7\\x06\\x11\\x57\\xdf\\xa3\\xeb\\x64\\x52\\xe4\\x49\\x33\\xf1\\x9d\\x90\\x27\\xda\\x01\\xd2\\xfa\\x1f\\x4c\\x1f\\xa1\\xf4\\x0f\\xc5\\x3a\\x3b\\x87\\x80\\x35\\x57\\x55\\x7d\\xa1\\x12\\xd0\\xa5\\x9b\\xd5\\x05\\x6b\\xb7\\xd7\\x2f\\xd5\\x4c\\x2f\\x92\\xcb\\xbc\\xaa\\x49\\x83\\x9e\\xb7\\x0f\\x8a\\x02\\xbd\\x36\\xf2\\xa5\\x06\\xc4\\xa5\\x5a\\xef\\xcd\\xf3\\x5a\\x03\\x32\\x1b\\xf0\\x98\\x6a\\xae\\xb2\\x3a\\x39\\xdf\\xab\\x75\\x01\\x21\\x98\\x10\\x12\\x92\\x70\\x5f\\x93\\x79\\xcb\\x2e\\xcd\\x75\\xb5\\x52\\xc3\\x7f\\x3b\\xfc\\xe6\\x9b\\xc3\\x11\\x00\\x15\\x14\\x49\\xd3\\xbe\\xc0\\x07\\x81\\x03\\x01\\x5e\\x51\\x95\\x26\\x71\\xa8\\x1d\\x52\\x85\\x85\\xd1\\xe6\\x57\\xe5\\x17\\x75\\x72\\x8e\\xd6\\x5f\\x43\\x0c\\x7c\\x81\\x58\\xe4\\xe7\\x65\\x52\\xbc\\x78\\xf7\\x06\\x74\\x6f\\x00\\x51\\xa5\\x41\\xd3\\x0c\\xfd\\x79\\x4d\\x01\\xd0\\x44\\xec\\x0b\\xf3\\x3d\\xc0\\xfd\\x34\\x53\\xad\\xff\\x41\\x08\\xf8\\x2f\\x10\\xd3\\x7f\\x68\\xc3\\x49\\xe6\\xb0\\xb0\\xa2\\xdb\\xbb\\x20\\x9a\\x24\\xad\\xb6\\x10\\xf4\\xa8\\x70\\xa3\\xeb\\x23\\x68\\x02\\xb1\\x23\\x16\\x21\\x7c\\x9e\\x17\\x60\\xad\\xa8\\x27\\x59\\xd2\\x26\\x1f\\xeb\\xa4\\x6c\\xe6\\x00\\x5f\\x52\\xe8\\x26\\x80\\x07\\x4f\\x97\\x93\\xbc\\x61\\x54\\xb7\\xe1\\x28\\x20\\xcb\\xfd\\x7d\\xf5\\x06\\x66\\x78\\x66\\x96\\xc2\\x94\\x87\\x19\\x86\\x00\\x45\\x18\\x7d\\x28\\x4d\\x1a\\x40\\x91\\x05\\x5f\\xc7\\x8d\\xd2\\x9f\\xda\\x3a\\x49\\x11\\x56\\xdd\\xdc\\x2e\\xc8\\xdb\\xb6\\xcc\\x48\\xd5\\xaa\\x30\\x76\\x32\\x82\\x34\\x14\\x18\\x66\\x1c\\xfe\\x10\\x30\\xc4\\x57\\x79\\x99\\x55\\x57\\x93\\x57\\x79\\x01\\x70\\x73\\xe8\\xc8\\x21\\x12\\xbd\\xd7\\x64\\x40\\x39\\x70\\xe5\\xc7\\xec\\xc8\\x8f\\x3c\\xb4\\x1c\\x81\\x72\\x33\\xb3\\xd6\\x5b\\x88\\x49\\x92\\x64\\xa6\\x1e\\x0f\\x97\\xc4\\x54\\x32\\x56\\xb9\\xff\\xf8\\x2c\\x50\\x1e\\x93\\xa2\\xa8\\xae\\xcc\\x8a\\x98\\x92\\x1f\\x37\\x2b\\xe8\\xba\\xb8\\xa2\\x30\\xc2\\xc7\\xd6\\x22\\xb8\\x32\\x08\\xcb\\xe2\\xe3\\x4c\\x7b\\xe4\\x21\\x4e\\xc2\\x1a\\x27\\x00\\x8f\\x25\\x37\\x23\\xf6\\x2d\\xc3\\xfc\\x98\\x54\\xa5\\x19\\x12\\x08\\xb8\\x2e\\x6a\\x45\\x9f\\x29\\x01\\xca\\xbc\\x65\\x8b\\xa8\\x22\\x54\\x43\\xad\\x9b\\x75\\xd1\\x7a\\x9a\\xb1\\xfd\\xd3\\x5f\\x3f\\x1d\\x1c\\xec\\xfd\\xfa\\xe9\\xe0\\x6f\\xbf\\x7e\\x3a\\xd0\\x7b\\xbf\\x7e\\x3a\\x9c\\x9f\\x7d\\x7e\\x78\\xb3\\x8f\\xcf\\x8d\\x54\\xc5\\x88\\x45\\x15\\xac\\x6e\\x30\\x10\\x0f\\x43\\x66\\x25\\xd8\\xda\\x17\\x32\\x78\\xf5\\xef\\xee\\xe2\\xc2\\x4c\\x55\\xe9\\x5b\\x3a\\xf8\\xea\\x64\\x84\\x87\\x13\\x0a\\x65\\x31\\x8a\\x05\\x59\\xcf\\x92\\x71\\x2c\\xa8\\xb2\\xdb\\x0a\\xff\\xe8\\xb9\\x3d\\xb2\\x8b\\x30\\x07\\x62\\xf4\\x91\\x1e\\xd0\\xfe\\x9a\\xbe\\x85\\x46\\xd7\\x5b\\x5c\\x41\\xac\\x67\\xf1\\x2a\\x69\\x5a\\x3d\\x90\\x06\\x14\\xc2\\x7a\\x95\\x87\\x82\\xfd\\x96\\xa3\\xd9\\x62\\xad\\xca\\x85\\x42\\x5f\\x62\\x18\\x2c\\xd6\\xf4\\xb2\\xcc\\x86\\x54\\xa7\\x50\\xec\\x59\\x35\\xdd\\xc8\\x27\\x16\\xf3\\xcf\\x71\\x03\\xcf\\x00\\x10\\x68\\x5f\\x5c\\x17\\x63\\x22\\x6e\\x69\\x51\\x01\\x78\\xdb\\xe0\\xc6\\x05\\xa0\\x9e\\x9c\\xce\\x0d\\x7e\\x58\\x06\\x3c\\x83\\x7a\\x99\\x14\\xc0\\x25\\x58\\x5e\\x44\\xbc\\xe5\\xac\\x52\\x09\\x9b\\x6a\\x1b\\x02\\xb0\\xdc\\x7a\\x91\\xac\\x56\\xba\\xd4\\xc0\\x21\\xf2\\xcc\\x61\\x74\\x92\\x33\\x1e\\x2c\\xd8\\x64\\x47\\x6c\\x49\\xc0\\x67\\x9c\\x98\\xd3\\xe0\\x3c\\x2f\\xcf\\x21\\x04\\x1f\\x46\\xdc\\xa4\\x6b\\xf9\\x84\\x22\\x93\\x34\\xf8\\x48\\xf1\\xc4\\xc3\\xd6\\x89\\x96\\x1f\\xda\\xd5\\x70\\xc8\\xd8\\xa6\\x0f\\x04\\x08\\x99\\x37\\x70\\x1e\\x55\\xe9\\xba\\xd1\\xd9\\x8e\\x5d\\xb2\\x8f\\xf9\\x52\\x57\\xeb\\x76\\x18\\x85\\xd7\\x14\\x88\\xaf\\x60\\xae\\x3e\\x81\\xe2\\x43\\x94\\x3f\\x1f\\x1e\\xb8\\x45\\x31\\xb9\\xc5\\x1a\\xb4\\xf5\\xc6\\x13\\x85\\xcd\\xe8\\xe1\\x62\\x13\\xf0\\xf2\\x73\\x0d\\xc6\\x66\\xc3\\x01\\xc0\\xe5\\x4a\\x6b\\x14\\x2c\\xd1\\x51\\x82\\xd3\\x74\\x7a\\x7b\\xb0\\x77\\x32\\xef\\x45\\xbf\\x4c\\x8c\\x8c\\xea\\xab\\x8e\\xed\\x2a\\x01\\xc6\\xad\\xef\\xb1\\x39\\x1c\\x09\\x66\\x20\\x49\\xfc\\x6d\\xf5\\x53\\x99\\x55\\xdb\\x49\\xdb\\x2c\\x9d\\xff\\x10\\xcd\\x4d\\x6d\\x0b\\x07\\xc5\\x79\\x82\\x60\\x50\\x5e\\x97\\x3d\\x67\\x77\\xee\\xc3\\x60\\x30\\xb6\\x85\\xd1\\x88\\x96\\xdd\\x9e\\xfc\\x54\\x74\\x82\\x1a\\x98\\x59\\x11\\x48\\x97\\x44\\x58\\xa1\\x23\\x02\\x2d\\xc5\\x58\\x0d\\x50\\x04\\x1a\\x8c\\x99\\x43\\x8c\\x64\\xb1\\x28\\x9d\\xec\\xc8\\x5d\\x4c\\x01\\x2c\\xe0\\xad\\x5e\\x8f\\x3e\\x77\\xb1\\xb8\\x8c\\x38\\x93\\x9c\\x83\\x03\\x37\\xcb\\x24\\x9f\\xad\\x3c\\x01\\x6f\\xa6\\xf1\\x15\\x35\\x12\\x80\\x93\\x2f\\xf6\\x9c\\xd8\\xf1\\x58\\x1d\\x1e\\x1c\\x00\\x73\\xd7\\xff\\x68\\x5a\\x90\\x94\\x1e\\x49\\xc1\\xe0\\x8f\\xcb\\x42\\xc1\\x41\\x17\\x90\\x75\\xe3\\x91\\xf5\\xd8\\x4c\\x8f\\xf4\\x0b\\x42\\xf5\\x56\\x50\\x46\\xcf\\xe7\\x3a\\x6d\\x8f\\xcd\\x69\\x0b\\x84\\x38\\x30\\x64\\xfa\\xa6\\xba\\xd4\\x03\\xc2\\x0b\\xf9\\xa9\\xd1\\x2a\\x5b\\x2f\\x97\\x1b\\x95\\x2f\\x93\\x73\\x0d\\xea\\x00\\x73\\xf6\\x18\\x99\\x12\\xc5\\x2f\\x35\\xab\\xab\\xab\\x46\\xd7\\x0d\\xe6\\x98\\x60\\xb9\\x0f\\x3a\\x35\\xc7\\xda\\x49\\x32\\x4f\\xea\\x5c\\x0d\\xff\\xdf\\x6f\\x27\\x07\\x93\\x87\\x23\\x8c\\xd6\\x98\\xa8\\x56\\x97\\x99\\x2e\\xd3\\x0d\\x84\\xca\\xd4\\xe7\\x58\\x0f\\x85\\x55\\xcc\\x1b\\x62\\x6b\\x88\\x32\\x7c\\xa5\\x55\\xc6\\x4c\\x10\\x2f\\xc7\\xb5\\x66\\x31\\x28\\x32\\x01\\x75\\x72\\xfe\\x1a\\x3a\\x6a\\x76\\x62\\x03\\xad\\x4b\\x99\\x27\\x5f\\x9e\\x23\\x38\\xfb\\x70\\x90\\x2f\\xcf\\x07\\x6c\\x5f\\x8a\\xff\\x1f\\x70\\xb8\\xa9\\x23\\x35\\xcf\\x3f\\xe9\\xec\\x91\\x2a\\xe0\\x75\\xfb\\xe0\\x91\\x6a\\xab\\x95\\xf9\\x97\\xf1\\xd9\\x97\\xe7\\x93\\xa6\\x4e\\xcd\\x7c\\x99\\x0e\\x1c\\xc1\\xc0\\xf7\\xcf\\xf3\\xf9\\xa3\\x59\\xd2\\xe8\\x6f\\xff\\x32\\xfe\\x70\\x50\\x7c\\xf7\\xee\\x45\\xb1\\x38\\xfe\\xbf\\x8f\\x9f\\x1d\\x9b\\xff\\x9e\\x7f\\xff\\xcd\\xb3\\xe3\\x97\\x3f\\x1c\\x1f\\xbf\\x3c\\xfe\\x11\\x12\\x4c\\xfa\\xcb\\xe3\\xe3\\xe3\\xd7\\xcf\\x3f\\x1e\\xbf\\x3c\\x7e\\x77\\x35\\x9d\\x0e\\x2c\\x9f\\x5e\\xd5\\xba\\x01\\xd5\\x1b\\x73\\xa6\\xe5\\xf9\\xe4\\x2a\\xcf\\x40\\xbf\\x69\\xfe\\xb6\\xd8\\x34\\x87\\x3b\\x9d\\x8d\\x70\\x55\\x9b\\xb9\\xab\\x27\\x30\\x83\\xd9\\xf3\\x45\\x5e\\x64\\xc3\\x7c\\x79\\x2e\\x78\\xf4\\xab\\xaa\\x4e\\x35\\x9c\\x27\\x18\\x92\\x07\\xa2\\x59\\x41\\xcc\\x2e\\x75\\x05\\x13\\xbd\\x6e\\xb4\\xaa\\xd6\\x35\\x2d\\xb8\\x61\\x17\\xe6\\x7a\\xa1\\xaa\\x59\\x93\\x1a\\xe6\\x5e\\xeb\\xa4\\xa9\\x4a\\xd1\\xb5\\x7f\\x20\\xb8\\x89\\xf9\\xb3\\x9a\\xcf\\x0d\\x73\\xa7\\xf3\\x8b\\xfc\\x43\\xfa\\x17\\xc9\\xf4\\x8c\\x90\\x40\\xba\\x83\\x87\\x0a\\xf1\\x1d\\x0d\\x50\\xe8\\xd1\\xca\\xc3\\x8d\\x28\\x02\\xab\\x87\\x5b\\xf9\\xdd\\x25\\x01\\xe0\\x8a\\x1b\\x4a\\x9f\\xd8\\x3f\\x12\\x22\\x7d\\x24\\x24\\xe5\\xbc\\x4e\\xce\\x11\\x87\\x10\\xc1\\x98\\x10\\x42\\xea\\x05\\xfd\\x7c\\x55\\x27\\xe7\\xe6\\x5f\\xe0\\x38\\x59\\x9d\\x5c\\xd9\\xbd\\x66\\xef\\x3e\\x64\\x24\\x60\\xea\\xb1\\x4d\\x89\\xd5\\xca\\xec\\x3d\\xc9\\x3e\\xbf\\xc4\\x3e\\x32\\xc9\\x66\\xf9\\xa5\\x25\\x59\\x19\\x3c\\x20\\x85\\x5c\\x8d\\x50\\xd0\\xed\\x99\\xc2\\x94\\x4c\\x44\\x2b\\x6a\\x06\\xf1\\x6c\\x95\\xa4\\x0c\\xed\\xff\\x0c\\x80\\xaf\\x87\\xd1\\xb6\\xc7\\xb2\\x20\\xd6\\xf8\\x22\\xbf\\x74\\x10\\xc2\\x76\\x51\\x6a\\x5d\\x1e\\x97\\xd9\\x71\\x96\\xf5\\xd5\\x83\\x93\\xe0\\x81\\x51\\x76\\xef\\x8a\\x96\\xf7\\xde\\x75\\x96\\xdc\\x58\\x24\\x81\\xc4\\x4b\\x6f\\x9d\\x61\\xb2\\x77\\xba\\xe1\\xf8\\xc5\\x0b\\xdd\\x68\\xb5\\x5c\\x37\\x70\\x81\\xe3\\x70\\x25\\x69\\x52\\xeb\\xf9\\xba\\x28\\x36\\x63\\x35\\xd3\\x69\\x62\\xb6\\x4a\\x99\\xe4\\x97\\xba\\xd8\\xa8\\x5a\\x9f\\xe7\\x4d\\xab\\x6b\\x40\\x9e\\x72\\xd1\\x8a\\x6b\\x87\\xef\\x45\\x22\\x11\\x85\\x34\\x31\\x65\\x9d\\xa0\\xd4\\x18\\x56\\x58\\xea\\x4b\\x5d\\xab\\x19\\x44\\x7d\\x3b\\x4f\\xea\\x99\\xd9\\x7f\\x69\\x55\\xd0\\xb9\\x2c\\x91\\x45\\xab\\xfa\\x65\\x92\\x2e\\xdc\\x7a\\x0f\\x45\\x88\\xf5\\x7b\\x96\\x5c\\xcf\\x75\\xfb\\x12\\xc1\\x97\\x9b\\x67\\x9b\\xe7\\x8c\\x7e\\x1d\\xa1\\xf3\\x19\\x7e\\x95\\xa4\\x1e\\x2f\\x3b\\x14\\x64\\x07\\x74\\x15\\x93\\x7b\\xa9\\xb6\\x3e\\xac\\x50\\xd0\\x16\\x50\\x9e\\xd3\\xfc\\x6c\\xe2\\x6a\\x14\\x92\\x2a\\x48\\x2a\\x36\\x80\\xe0\\x0d\\xa3\\x29\\x9e\\x17\\xd5\\x2c\\x29\\x9a\\x0f\\x34\\xd7\\x02\\x52\\xd7\\xce\\x0d\\xfa\\x9e\\x7d\\x07\\x19\\x29\\xf2\\x6b\\x33\\x74\\xb3\\xd3\\xa9\\x21\\x8c\\xf0\\x45\\x1f\\xc2\\x0a\\x76\\x54\\xb4\\x71\\xb0\\x85\\xbb\\x71\\xad\\xf7\\x15\\xe7\\x20\\x39\\xbf\\x50\\xec\\x60\\xba\\x94\\xab\\x5a\\x37\\xf9\\xef\\xe6\\x76\\x7b\\xa5\\x01\\x50\\xdf\\x90\\x41\\xad\\xe7\\xb5\\x6e\\x16\\x2a\\x49\\xdb\\xfc\\xd2\\x12\\xc8\\x64\\x87\\xaf\\xb5\\xa6\\x84\\x11\\xa0\\xcd\\x7c\\x81\\x8d\\x9b\\xa9\\x09\\xdc\\xc4\\xcc\\x97\\xa8\\x21\\xbc\\x19\\xb9\\x28\\xe8\\x1b\\x5d\\x8b\\xe4\\x5e\\xd9\\xdc\\xca\\xdc\\x32\\xb3\\x30\\x11\\xec\\x52\\xa4\\xb9\\x8e\\x39\\x54\\xae\\x9b\\x31\\x48\\x45\\xac\\x2b\\x8b\\xce\\x45\\x51\\x35\\xba\\x51\\x20\\xc4\\xc1\\x7c\\x5c\\x25\\x18\\xda\\xba\\x59\\x54\\x57\\xf2\\x4e\\x91\\x34\\x6a\\x56\\xac\\xeb\\x1a\\x24\\x72\\x39\\x01\\x26\\xb5\\x0f\\xb3\\x3f\\xd6\\xc1\\x67\\xc5\\xba\\x1e\\x11\\x44\\xee\\xfe\\xbe\\x7a\\x9e\\x14\\x66\\x8f\\x5f\\xc5\\x97\\x48\\x1e\\x33\\x38\\x32\\xcb\\xaf\\xe0\\xcd\\x56\\xc9\\x50\\x15\\x1c\\xed\\x06\\xdc\\x9b\\x7e\\xa9\\x93\\x15\\x47\\x25\\x9b\\xaa\\xcc\\x9e\\xd1\\x69\\x91\\xeb\\x92\\x02\\x94\\x19\\x79\\xc5\\xe5\\xfe\\x05\\x4f\\xfb\\x6e\\x66\\xf8\\x10\\xd1\\x89\\xf9\\xca\\x26\\xd0\\xe3\\x34\\x69\\x02\\x80\\xea\\x56\\xb1\\x31\\xa6\\x20\\xe9\\x80\\xd3\\x93\\x26\\xe9\\x02\\xf1\\xf0\\xb2\\x09\\xfc\\x9d\\x3d\\x5f\\x24\\x35\\xb5\\x6b\\xd3\\x3e\\xda\\x90\\xb4\\x22\\xf1\\x3d\\xc2\\xeb\\x7d\\xef\\x08\\x20\\xa3\\x47\\xde\\x59\\x52\\x37\\xcf\\x8b\\x7c\\xb5\\xf2\\xa0\\xae\\x8d\\xf4\\xac\\xdb\\x13\\x33\\x61\\x23\\xde\\xc7\\x17\\x7a\\x63\\xd8\\x09\\x3c\\x8c\\xee\\x28\\xf5\\xf5\\x91\\x1a\\x70\\xc4\\x85\\xbf\\x1d\\xa9\\xc1\\xb3\\x24\\xbd\\x68\\x0c\\x53\\x1f\\x8c\\xd5\\xdf\\x8f\\xd4\\xe0\\x63\\x32\\x1b\\x8c\\xd5\\xa1\\xcc\\x76\\xf8\\xed\\x91\\x1a\\x9c\\x2c\\xf2\\xb9\\x11\\x75\\x0f\\xff\\x7a\\xa4\\x06\\xcf\\xdb\\xba\\x30\\x7f\\x9b\\x0a\\x8e\\x8b\\x76\\x30\\xde\\x51\\xea\\xd0\\x94\\x7e\\x6f\\x78\\xed\\xc0\\x5c\\x1d\\x4d\\xae\\x64\\xd5\\xfc\\x58\\xa5\\x17\\xe6\\xb7\\x29\\xf5\\xb2\\x49\\x07\\x63\\xf5\\xf5\\x43\\x53\\x1b\\xb5\\xf8\\xf5\\xd7\\x50\\xe8\\x5c\\xff\\xb4\\x32\\xbf\\xfe\\x42\\xbf\\x5e\\x54\\x57\\xa5\\xf9\\xfd\\x0d\\xf4\\x22\\x83\\xfa\\xbf\\x36\\xbd\\xf8\\xbe\\x5a\\x42\\x31\\x53\\xdd\\x8f\\x1a\\x3a\\xf4\\xb5\\xe9\\x04\\x16\\x37\\x3d\\xf8\\x60\\xa6\\x70\\x30\\x56\\x7f\\x31\\x3d\\xa0\\x7a\\xfe\\x02\\xf5\\xd6\\x39\\xa0\\x99\\x41\\x82\\xa9\\x18\\xc3\\xcf\\x40\\xdd\\x7f\\x31\\x75\\xbf\\xd0\\x85\\x6e\\x4d\\xed\\xdf\\x98\\x7a\\x1e\\x0d\\xc6\\xea\\xdb\\xc3\\x23\\x35\\x98\\x9a\\x89\\x31\\x7f\\xbc\\xa9\\xcc\\xd5\\xe8\\xef\\x0f\\xdd\\x9f\\x5f\\xf3\\x9f\\x66\\xf8\\x07\\xa6\\x8e\\xff\\x69\\x66\\xe5\\xe0\\xaf\\x54\\xec\\xf0\\xc0\\xd4\\xb4\\x67\\xfe\\x3a\\x34\\xdd\\x99\\xc0\\x5f\\xa6\\xae\\x7d\\xf3\\x17\\x4c\\x0a\\xb7\\x6a\\xaa\\xf8\\xeb\\xd7\\x9c\\xfd\\x6f\\xdf\\x52\\x17\\x0e\\xff\\x66\\x2b\\xfb\\x9b\\x19\\xe8\\x18\\xfe\\xb2\\xd5\\xfe\\xdd\\x56\\xfb\\x77\\x5b\\x2d\\xf4\\xf0\\xff\\x31\\x93\\x0e\\x4b\\x72\\x6a\\xfe\\x82\\xf5\\xf8\\xf5\\x57\\x68\\xe6\\xe1\\x43\\x93\\xf5\\x0c\\x92\\x4d\\xd6\\x07\\x66\\xa4\\x5f\\x3f\\x84\\x75\\x81\\x79\\x34\\x3f\\xbe\\x76\\xb3\\x67\\x7e\\xfe\\xc5\\xcd\\xb7\\xf9\\xf9\\x8d\\x98\\xe8\\x6f\\xbf\\x7e\\xf8\\xd7\\x87\\xfe\\x40\\x4c\\xd2\\xd7\\x6e\\xb5\\xcc\\x4f\\xbb\\x92\\xf0\\xeb\\x5b\\xb9\\xea\\x26\\xe1\\xaf\\xfe\\xc2\\x7f\\xfb\\xf5\\xd7\\x07\\x0f\\xdd\\x12\\x91\\x9c\\x80\\xe8\\x61\\x86\\xa0\\x9b\\x9d\\xd8\\x61\\x78\\x78\\x60\\x3d\\x5a\\x99\\xe8\\x4f\\x73\\xb5\\xab\\xfe\\xf2\\xb7\\x33\\x35\\xf5\\x93\\xfe\\xfe\\xad\\x49\\x3a\\x01\\x60\\xd5\\x21\\xe8\\x87\\xf6\\xf7\\xd5\\x71\\xb1\\x5a\\x24\\x33\\xdd\\xe6\\x69\\xd8\\x06\\x5c\\xdf\\xbf\\xfd\\x86\\xee\\xef\\x53\\xf5\\xf7\\x03\\xe1\\xdd\\xea\\x2a\\xfe\\xea\\xd0\\xd5\\x0a\\x36\\x00\\x66\\xa3\\x1b\\x36\\x38\\x84\\x58\\xcf\\xd0\\xc8\\x2b\\x66\\x6d\\x61\\x13\\x0f\\xcd\\x2d\\xe3\\x11\\xfc\\xf1\\x78\\xaa\\x0e\\x1f\\xc2\\x9f\\x9d\\x16\\x1e\\xaa\\x5d\\x43\\x42\\xfe\\x80\\x20\\x15\\xd6\\xc5\\xa4\\x0f\\x5e\\x0d\\xd4\\x2e\\xd4\\xe3\\x38\\xc0\\x9b\\x64\\x05\\x86\\x11\\x3b\\x3b\\xf8\\x63\\x32\\x4b\\x1a\\x88\\x36\\x62\\x58\\x02\\xae\\xec\\x91\\x1a\\x9c\\x57\\xa6\\xc3\\xb4\\xce\\xb4\\xc0\\x36\\x99\\xd7\\xdb\\xd0\\x08\\x24\\xfe\\x98\\x97\\xb8\\x80\\x48\\x28\\x36\\x0d\\xd7\\xd0\\xd4\\x6b\\x16\\xdc\\x26\\xe3\\xea\\x23\\x4d\\xd8\\x44\\xd0\\x05\\x9c\\x2c\\x93\\x1a\\x6a\\x26\\x92\\x80\\xaf\\x96\\x3c\\x1c\\x5d\\xd8\\x74\\xd7\\x02\\x11\\xdd\\x91\\x1a\\x64\\xba\\x30\\xbd\\x3c\\x9e\\x23\\xcf\\x12\\x7c\\xcd\\x7d\\x44\\xe1\\xdb\\x7c\\x05\\x6e\\xb6\\xb7\\x2d\\x8f\\xa9\\xdd\\xf0\\x42\\xf8\\x02\\xb7\\x66\\xe4\\x8c\\x54\\x94\\x3e\\xe5\\xe6\\x72\\xdd\\x1e\\xaf\\xdb\\x8a\\x47\\x6c\\x9a\\x3f\\x52\\x83\\x52\\x5f\\x19\\x71\\xf9\\xb8\\xcc\\x5e\\x43\\x16\\x53\\x92\\xa8\\xf9\\x48\\x0d\\xda\\xea\\xfc\\xbc\\xd0\\xe6\\xf6\\x74\\x55\\xe7\\xb4\\x69\\x80\\x3d\\x1e\\xa9\\x41\\x93\\x97\\xe7\\x42\\xcf\\x34\\xc0\\x03\\xf3\\x6d\\xd5\\x6a\\x17\\x0a\\xb6\\x81\\xbb\\x7d\\x99\\x81\\x95\\x82\\x7d\\x6c\\x4a\\xab\\xe5\\x32\\x29\\x11\\x62\\x14\\xae\\xf1\\x7a\\x9e\\x97\\x3a\\x53\\xb3\\x8d\\xa9\\xc1\\x86\\x65\\xfe\\xa9\\xd1\\x35\\x22\\x5b\\x20\\x7e\\x6b\\x55\\x36\\x10\\xa5\\x19\\xb3\\xc3\\x9b\\xf8\\x44\\xfd\\x54\\x5e\\x94\\xd5\\x55\\x69\\xeb\\xdc\\x21\\x34\\x52\\x7a\\x40\\xc1\\x88\\x67\\xd9\\x84\\xc9\\x69\\x95\\xd2\\x0b\\x11\\x93\\x94\\x39\\x21\\xf6\\x8e\\x61\\x3c\\x30\\x92\\xe3\\xc2\\x1c\\x18\\x98\\xfc\\x82\\xa6\\x5b\\x63\\x38\\x21\\x9b\\xfe\\xbf\\x4d\\x3a\\xb9\\xf5\\xd3\\x34\\xbb\\x74\\x72\\xcc\\xc7\\x9c\\xff\\xee\\x52\\x6c\\x63\\x8e\\xb0\\x5e\\x54\\x29\\xd0\\x95\\xcd\\x6e\\xe9\\xf0\\x45\\x95\\x12\\x19\\x42\\x7a\\x97\\x92\\xb1\\x7f\\x3d\\xe4\\x0c\\x1f\\xdd\\x5e\\xf9\\xae\\xae\\xd6\\x2b\\xde\\x2c\\xf0\\x4d\\xec\\x18\\xf8\\x68\\xb7\\xcc\\x71\\xd1\\x8a\\x82\\x96\\xf0\\xf9\\x93\\x28\\x67\\x77\\x8a\\x6d\\x30\\x24\\x52\\xa8\\xd9\\x51\\x32\\xf6\\x58\\x6e\\x03\\xc8\\x60\\xf7\\x01\\x7c\\x3f\\x81\\x85\\x48\\x2e\\x5d\\x89\\x57\\x26\\xc5\\x50\\x8f\\x68\\xe9\\x3b\\x4e\\x7b\\x8b\\x5a\\x2d\\xb9\\x06\\xf6\\xdb\\xfb\\x5a\\x5f\\x06\\xdf\\x5e\\xe1\\x6a\\x80\\x56\\x31\\xf8\\xf4\\x41\\x7c\\x02\\x12\\xb0\\x8d\\x9d\\xba\\xed\\xf3\\xa3\\x06\\x67\\x29\\x4c\\x3f\\x73\\xe9\\x6f\\xec\\x46\\xc4\\xd5\\x62\\xf2\\x70\\x7b\\xc3\\x6f\\xec\\x27\\xa6\\x0a\\x2f\\x83\\x99\\xe0\\xd8\\x17\\x73\\xa3\\x4a\\x8a\\xa2\\x5d\\xd4\\xd5\\xfa\\x7c\\x71\\xa4\\x06\\xc0\\x12\\x69\\xbb\\xfd\\xac\\xeb\\x8d\\x42\\x1e\\x59\\xeb\\x24\\x33\\x5b\\x79\\x5f\\x2f\\x93\\xb4\\xd9\\x6b\\x20\\x3a\\xd1\\x2c\\x07\\x6c\\x07\\x23\\x3c\\xc3\\xfb\\x22\\x6c\\x8d\\x36\\x29\\xb3\\xa4\\xce\\x54\\x55\\xaa\\x37\\x49\\x6a\\xf7\\x06\\x94\\xdb\\x78\\x1b\\xe3\\x55\\x84\\xad\\xe2\\x62\\x77\\xd9\\x30\\xa4\\xbf\\x8f\\x12\\xea\\xdb\\x18\\x95\\x9a\\xf1\\x52\\xfd\\xbf\\x54\\x75\\xe6\\xd1\\xe0\\x33\\x97\\xee\\x55\\x7f\\x1c\\x21\\x4c\\xdc\\x39\\x7d\\x54\\xf9\\x73\\xc8\\x8d\\xbd\\x95\\xf8\\x39\\xe4\\xe1\\xde\\xbe\\xf7\\xf8\\x34\\xee\\xdd\\x1e\\x06\\x6c\\xfa\\xcc\\xa5\\x4c\\xa7\\x6d\\x29\\x18\\x4c\\xb0\\x31\\x4c\\x86\\x60\\x5f\\xfc\\x60\\x3e\\x5d\\xe4\\x45\\xe1\\xf1\\x99\\x8f\\xc0\\x82\\xeb\\xa4\\x6c\\x56\\x55\\xa3\\x4d\\x9b\\x8d\\x18\\xd9\\x3b\\xf3\\xb5\\x5a\\xe9\\x12\\xca\\xec\\xdc\\xf0\\x32\\x2e\\x93\\x0e\\x8f\\x5b\\x66\\x31\\x16\\xb7\\xcc\\xa2\\x1c\\x6e\\x99\\x45\\x19\\x1c\\x27\\x5b\\xfe\\xb6\\xcc\\x3a\\xec\\x6d\\x99\\xf5\\x71\\xb7\\x65\\x66\\x99\\x58\\x98\\x1e\\x63\\x7a\\xa6\\x6b\\x96\\xb9\\xb9\\x74\\x9f\\x3d\\x09\\xbe\\xc6\\x6b\\xd0\\xcb\\xd8\\x4c\\x8d\\x3e\\x63\\xb3\\x74\\xb5\\xcc\\x42\\xbe\\xe6\\x93\\xe2\\x36\\xb6\\xe6\\x4e\\x90\\xbe\\x9c\\x1e\\x25\\x6c\\x63\\x7f\\xcb\\x2c\\xe0\\x7e\\xcb\\xac\\xc3\\xfc\\x96\\x59\\x2f\\xef\\x93\\x9f\\x98\\xf5\\xc1\\xba\\xf3\\x2e\\xeb\\xf2\\xbd\\xc8\\x57\\xc7\\xfa\\x96\\x59\\x94\\xf3\\x2d\\xb3\\x2e\\xe3\\xc3\\xe4\\x0e\\x95\\xc3\\x25\\x35\\x0b\\xa7\\xda\\x9b\\x02\\x91\\x87\\xe6\\x9c\\xdb\\xde\\xca\\x43\\xf9\\x7b\\x87\\x85\\x7a\\x87\\x65\\xe7\\x74\\xed\\x52\\x54\\xc8\\x5a\\x4f\\x89\\xb7\\x8e\\xd5\\x00\\x99\\xe1\\xe0\\xcc\\xee\\xab\\x53\\x16\\xaf\\x06\\x67\\x00\\x0d\\x99\\xaa\\xa7\\xaa\\xbb\\xe3\\x8e\\x54\\x28\\x68\\xa0\\x09\\xcf\\xcb\\x7f\\x7f\\x73\\xfc\\x5e\\xbd\\x78\\x7d\\xf2\\xfe\\xf8\\xe3\\xf3\\xef\\x85\\xda\\xce\\x62\\xec\\xfd\\x80\\x52\\xf2\\xb0\\x44\\x75\\xdc\\x8e\\x0f\\xc1\\x66\\x52\\xc9\\x98\\x6b\\x7f\\x6f\\xf8\\xf4\\xde\\x57\\xa3\\x7d\\x73\\xe5\\x37\\xc9\\x6a\\x4a\\xb8\\x65\\xf0\\x7f\\x01\\x02\\xc5\\x41\\xa0\\x92\\xa2\\x1d\\xab\\xb4\\xad\\x8b\\xb1\\x6a\\xcc\\x04\\x8e\\x55\\xba\\xcc\\x7a\\xf4\\x74\\x61\\x1d\\xdd\\xa8\\x3e\\x55\\x66\\x1b\\x24\\xab\\x4b\\x30\\x6f\\xf8\\x8f\\x61\\xba\\xcc\\xae\\x97\\xba\\x4d\\xae\\x97\\xa3\\xaf\\xf6\\x73\\x34\\x6b\\x58\\x56\\x19\\x9a\\x34\\x2c\\x33\\x3f\\xa2\\x9f\\xf5\\xbc\\xdd\\xff\\x8f\\x64\\x58\\xb4\\xa3\\xa7\\x9d\\x22\\x49\\xd1\\xf6\\x16\\x19\\xa6\\xd7\\x66\\x3c\\xd7\\x14\\x24\\x2e\\xd2\\x5e\\x5b\\x17\\xbd\\xa5\\x9b\\xa1\\x99\\x85\\x48\\x93\\x30\\x3b\\x91\\x62\\x91\\x90\\xb0\\x3f\\x95\\xb5\\x4e\\xab\\xf3\\x32\\xff\\x5d\\x67\\x66\\x4e\\xf2\\x79\\xae\\x6b\\x58\\x8e\\x23\\xf0\\xff\\x36\\x55\\x7a\\x41\\x17\\x93\\x02\\x4c\\x92\\x69\\xc1\\x80\\x1b\\x98\\x7c\\xf0\\xdb\\x86\\x50\\x6c\\xeb\\x42\\x66\\x02\\xaa\\xed\\xe6\\x5a\\x66\\x5e\\xa6\\x65\\xd6\\xcd\\x03\\x23\\x91\\xb9\\x70\\xe7\\x78\\xf9\\x18\\x59\\x21\\x59\\x6a\\xab\\xdf\\xce\\x1b\\x95\\x37\\x2a\\x51\\x17\\xd6\\xe4\\xec\\x42\\xeb\\x95\\xa1\\xe9\\x65\\xb2\\x6a\\xd4\\xb2\\x6a\\xda\\x62\\x03\\x66\\x68\\xa0\\xd2\\x6e\\x54\\x9d\\x5c\\x29\\x8c\\xd8\\x07\\x92\\xf7\\x70\\x96\\xa4\\x17\\x57\\x49\\x9d\\x35\\x80\\x69\\x96\\xb4\\xf9\\x2c\\x2f\\xf2\\x76\\x33\\x32\\xe2\\x47\\xa1\\x95\\xbd\\x16\\x2c\\xb5\\x6a\\xf3\\xa5\\x56\\x0d\\x46\\xca\\x50\\x73\\x9d\\xb4\\xeb\\x1a\\x8d\\xd5\\x8a\\xfc\\x42\\xdb\\x7d\\x81\\xb0\\x3c\\xe6\\x0a\\x01\\x51\\x00\\xf7\\x9a\\xb6\\xae\\x2e\\xb4\\xe9\\x91\\x95\\x6d\\x20\\xb2\\xa0\\x69\\x0e\\x2c\\xa0\\x40\\xcf\\x6e\\x56\\xca\\xee\\xac\\x8c\\xfa\\x0f\\x91\\xcc\\x4d\\xfb\\x25\\x45\\x1f\\x69\\xa0\\x33\\x55\\x91\\xd1\\x10\\x48\\xd1\\x6a\\x18\\xca\\x0e\\xc4\\xc5\\xc8\\x9b\\x49\\x7c\\xa7\\xbe\\x49\\x56\\x43\\xac\\x54\\x58\\xbc\\xa1\\xe5\\x3b\\x3c\\x27\\xdb\\xad\\x75\\xa1\\x37\\x30\\xe1\\x79\\xa9\\x6c\\x7e\\x58\\x21\\xfc\\x35\\x59\\x24\\xcd\\xbb\\xab\\xf2\\x7d\\x5d\\xad\\x74\\xdd\\x6e\\x86\\x94\\x7d\\x24\\x77\\x1c\\xc2\\xbd\\x4c\\xa9\\xfc\\x29\\x65\\xf1\\xb6\\x9e\\x49\\xb8\\x16\\x9c\\xec\\x7a\\x98\\xe9\\xeb\\xa4\\x1d\\xb5\\x49\\xba\\x18\\x7d\\x45\\x26\\x46\\xa2\\xee\\xd0\\x1a\\xda\\x54\\x43\\xcd\\x4c\\xd5\\x60\\x32\\x99\\xa0\\xf9\\x25\\xb0\\xea\\xb0\\xdd\\x47\\xb2\\xb0\\xed\\xe4\\x85\\xde\\x30\\x62\\x2e\\x65\\x24\\x6e\\x35\\x50\\x83\\xd1\\xb8\\xc3\\xe5\\xfa\\xa3\\xb8\\x99\\x8a\\xfa\\x01\\xfe\\x2e\\x13\\xb3\\xad\\x87\\x97\\x55\\x9e\\x41\\xa4\\x04\\x22\\x6f\\x4e\\x10\\x66\\x1b\\xb9\\x19\\x8a\\xa8\\x0c\\x30\\x4a\\x85\\x11\\x07\\x95\\x84\\x1c\\x60\\xa6\\x64\\x3a\\x2a\\x4c\\x3c\\x8a\\x00\\x79\\xe7\\x26\\x74\\xfd\\x97\\x15\\x58\\x97\\xfb\\x1c\\x62\\x8d\\xf6\\x56\\x08\\x53\\xeb\\x99\\x22\\x30\\xc4\\x82\\xbe\\x24\\x9b\\xe5\\x53\\xb7\\xb8\\xfc\\x0c\\x59\\xeb\\x4b\\xf6\\x66\\xc0\\xaf\\xd8\\xb5\\x2e\\x8a\\x01\\x54\\x73\\x0f\\x3e\\x8e\\xe2\\x71\\xac\\xd3\\xaa\\x6c\\xf2\\x06\\xac\\xcb\\x78\\xf7\\xc0\\x2a\\x30\\x63\\x18\\x79\\x16\\x12\\x71\\x02\\xd8\\x61\\xeb\\x75\\xbb\\x7c\\x80\\x10\\x91\\xa3\\x9b\\x01\\xa9\\x81\\x4c\\x01\\x0b\\x4a\\x60\\x3a\\x8e\\x3f\\x04\\xdf\\xc1\\x4c\\xde\\xdb\\x5f\\x51\\x55\\x17\\xeb\\xd5\\x0f\\x1a\\xf6\\xc1\\x58\\xc1\\x96\\x65\\x3f\\x7f\\xb0\\x79\\xfb\\x44\\xb0\\x63\\x4b\\xd0\\x12\\x9d\\xeb\\x96\\xb6\\xa2\\xd9\\x57\\x3b\\xbe\\x7f\\xad\\xd9\\x5c\\x69\\x02\\x4e\\xec\\xfc\\x27\\xd6\\x6a\\x2b\\x3a\\x52\\x34\\xaa\\x33\\xb6\\xa0\\xc4\\xa2\\x11\\x68\\xd6\\x41\\x59\\x01\\xa2\\xf9\\xc0\\x85\\xc4\\xb2\\x79\\xed\\x76\\xe1\\xbc\\xc0\\xa7\\xc2\\x9c\\xc2\\x9d\\x06\\x47\\x84\\xe9\\xd2\\x7e\\x63\\x40\\x0f\\x8a\\x03\\x19\\x38\\x78\\x35\\x11\\xdb\\x5a\\xbe\\xdc\\xbc\\x03\\x8e\\x25\\xcc\\x85\\xdb\\x8a\\xf4\\x79\\x30\\xd4\\x4e\\xc9\\x7b\\x53\\x35\\x38\\x25\\x36\\x07\\xc6\\x9c\\x67\\x03\\x07\\xd6\\xc6\\x76\\xcf\\x9d\\xf9\\x97\\x75\\x44\\xd6\\xa2\\xdf\\xce\\x2d\\x28\\xbb\\x05\\xb2\\x13\\x4c\\x25\\xd5\\xf4\\x96\\xc6\\xc1\\x3e\\x2e\\x6c\\x5f\\xec\\x12\\xac\\x46\\xcc\\x26\\xd5\\x2b\\xa2\\xb6\\xd1\\x21\\xf7\\x86\\x0f\\x6b\\x73\\x84\\xac\\x6a\\xdd\\x34\\xba\\x21\\x73\\x92\\xb4\\x5a\\x97\\xad\\x39\\xd5\\x1e\\xd4\\x3a\\x29\\x1e\\x78\\x39\\xcc\\x20\\xdb\\x05\\x3c\\xc3\\xae\\xd6\\xb5\\xb9\\x8f\\xa9\\x6a\\x4e\\x44\\x2c\\x85\\x48\\x71\\x60\\xe4\\x0d\\xb7\\x65\\x46\\x25\\xb0\\xc6\\xc0\\xd2\\x16\\xd9\\x07\\x81\\x36\\x39\\xe6\\x4b\\x31\\xb4\\xd4\\x53\\x4a\\x3b\\x72\\xea\\x53\\x48\\x98\\x5c\\xe8\\xcd\\xf3\\x2a\\x83\\x6d\\x28\\x4e\\x70\\x28\\x0b\\xaf\\x1d\\x80\\xd3\\xc1\\x29\\xc7\\x45\\xeb\\x27\\xe0\\xeb\\x88\\x97\\xf4\\xa6\\xca\\x06\\xde\\x36\\x4c\\xb2\\x8c\\x3b\\x0e\\x0d\\xc3\\xf1\\x32\\x46\\x33\\x24\\xc3\\xca\\x4f\\x48\\xb8\\xe0\\x87\\xe2\\xa4\\xd1\\x24\\xa1\\xb2\\x0d\\x8e\\xc9\\x39\\x49\\x0a\\xb3\\x3d\\x0d\\xc5\\x43\\x8e\\x7b\\xd4\\x9d\\x5b\\xa5\\xa0\\xe1\\xbc\\xc8\\x57\\x66\\x28\\xcf\\x97\\x99\\x7a\\x8a\\xcd\\x4e\\x8c\\x60\\x69\\x6a\\x3b\\xa2\\xdf\\x46\\x54\\xfa\\x41\\x6f\\x46\\x5e\\xf5\\x30\\xfe\\xdb\\x05\\xa8\\x68\\x03\\x54\\xa1\\x6d\\x80\\x1a\\x0c\\x1a\\x58\\x66\\x83\\x5b\\x65\\xaf\\x7b\\x34\\x43\\xa6\\x24\\xd6\\x05\\xd2\\x58\\x38\\x17\\xb8\\x12\\x5f\\x2c\\xa3\\xfd\\x58\\x55\\x17\\x6a\\xbd\\x02\\xc9\\x05\\xb2\\x55\\x73\\x23\\xaf\\xe9\\x8d\\xa1\\x5b\\xc3\\xd2\\x53\\x50\\xb1\\xce\\x36\\x2a\\x29\\xb1\\x79\\x12\\x6e\\x04\\x61\\x12\\x45\\x0d\\x63\\x2b\\xea\\xec\\x6d\\x5c\\xff\\x89\\xe4\\x0c\\xb5\\x7c\\xfd\\x17\\x9b\\x7c\\x3a\\x48\\x17\\x49\\x3d\\x38\\x8b\\x62\\xd9\\x08\\x12\\xb7\\xf4\\xeb\\x55\\xc6\\x4c\\x97\\xc9\\x90\\x81\\x1f\\x2c\\xed\\x7c\\x57\\x27\\xab\\x05\\xac\\x40\\xa4\\x7a\\x07\\x0c\\x73\\x07\\x4a\\xf5\\x88\\xdb\\x1d\\x1a\\x78\\x4a\\x8a\\x80\\xc1\\x76\\x2b\\x06\\x1b\\x91\\xee\\x7f\\x97\\x49\\x71\\xa6\\x8e\\xcc\\x77\\x5a\\x8a\\xef\\x75\\xb1\\x22\\x5b\\x0e\\x38\\x29\\x8d\\x48\\x0c\\xcf\\xac\\xa5\\x4e\\x6a\\x61\\x74\\x0b\\x1e\\x3b\\xa3\\xb1\\x5a\\x37\\xf8\\x96\\x6f\\xc3\\x5f\\x9b\\x4a\\x66\\x7c\\x6d\\x1e\\xd3\\x71\\x8b\\x52\\x6a\\x93\\x2f\\xf3\\xc2\\x1c\\x67\\xd4\\xef\\xc4\\x48\\xd1\\x13\\x19\\x2d\\xd4\\xe4\\x7d\\xab\\x93\\x5a\\x86\\xfe\\x1e\\x33\\x92\\xb0\\xdb\\x9d\\x16\\xb7\\x5b\\x18\\xf4\\x32\\x84\\xfa\\x45\\x5e\\x14\\x8c\\x0d\\xb0\\xbf\\xaf\\x9e\\xad\\xf3\\x22\\x33\\xb4\\x95\\xa8\\x46\\x43\\xd8\\x2f\\x2a\\x6c\\xae\\x01\\x26\\x2b\\xb9\\xa5\\x2e\\x75\\x7d\\x0e\\xaf\\xc8\\x97\\xba\\x2e\\x92\\xd5\\x2a\\x2f\\xcf\\xb1\\x02\\x82\\x67\\xee\\xb9\\x5a\\xf6\\x83\\x37\\x63\\x34\\xac\\x1f\\xb0\\x37\\x34\\x82\\xa1\\xc5\\x6f\\x46\\x36\\x8f\\xf7\\x87\\xa1\\xe9\\x87\\xf0\\x6d\\x48\\x97\\xab\\x21\\x96\\x9c\\xa0\\xbb\\x68\\x61\\x04\\xdd\\xbc\\x28\\x46\\x93\\xb6\\x1a\\xa9\\xc7\\x53\\x70\\x29\\xf7\\x8e\\x1b\\x44\\xc1\\x31\\x74\\x69\\x4a\\xad\\xaa\\xd5\\x70\\xe4\\xb9\\x28\\xac\\x86\\x9c\\x67\\xc2\\xde\\xaa\\xb6\\xfe\\x11\\xf9\\xa8\\x3b\\x9b\\x7c\\xf7\\x0d\\xac\\xff\\x45\\x41\\x9b\\xc7\\x39\\xfd\\xf9\\xf6\\xa7\\xd8\\xfe\\xba\\x59\\xd0\\x08\\xd8\\x7e\\x6a\\x7f\\x5f\\xbd\\x05\\xc8\\x3a\\x34\\x5e\\x52\\xed\\xc2\\x1c\\x36\\x49\\xda\\xae\\x93\\x42\\x4c\\x71\\xbd\\x2e\\x5f\\x97\\xef\\x56\\x3d\\xae\\x09\\xde\\x02\\xc8\\x49\\xc3\\x3b\\x3d\\x43\\x43\\x4b\\x60\\xe8\\x5e\\x43\\x5e\\x53\\x9c\\x41\\x1b\\xdc\\xaf\\xb6\\x1a\\xab\\xc1\\x2e\\xd2\\xe1\\xc0\\x02\\x3f\\x47\\x40\\x9e\\xd1\\xdb\\x27\\x88\\x39\\x8c\\x66\\x59\\x49\\xfd\\x63\\x75\\x9e\\x1b\\x81\\x65\\x23\\xa2\\xbf\\x58\\xaf\\x30\\xa0\\x8b\\xa4\\xc6\\x08\\xd6\\xcd\\x45\\xbe\\xb2\\x58\\xc5\\xa0\\x0b\\x1d\\x0a\\x78\\xbf\\x74\\xa1\\x76\\x4d\\x41\\x2c\\x2d\\x36\\x35\\x16\\x7f\\xac\\x0e\\xc0\\xc7\\x18\\x7f\\x3d\\xe9\\xba\\xeb\\x3f\\x45\\x06\\x74\\x44\\x59\\x3a\\x7d\\x0d\\xfb\\x49\\xc1\\x29\\xbd\\xae\\x02\\x76\\x43\\xdf\\xc0\\xa0\\xc0\\x84\\x87\\xb7\\x23\\xa0\\xdb\\x04\\xdc\\x12\\xf5\\xc1\\x88\\xec\\xef\\xab\\x06\\x03\\x06\\x4d\\xbc\\x89\\x81\\x91\\x3c\\x55\\x03\\x70\\xd1\\x02\\xac\\xae\\x19\\xaa\\x22\\xfd\\xe9\\xd5\\x65\\xf6\\x6e\\x0e\\x70\\x40\\x18\\x22\\xaa\\xd8\\x60\\xb0\\xff\\x02\\x83\\x9f\\x33\\x04\\x86\\x18\\x00\\x5c\\x01\\x29\\xaf\\xdc\\x97\\xec\\x06\\x77\\xae\\xdb\\x77\\xe6\\xcf\\xa1\\xad\\x82\\x18\\x4a\\xcc\\x1b\\xdb\\x64\\x0c\\x40\\xe4\\x30\\x52\\xaa\\x1b\\x81\\xd9\\xa8\\x94\\xef\\x08\\x1b\\xc1\\xa8\\xe5\\x4e\\xcf\\x74\\xa9\\x5f\\x97\\x27\\x6d\\x55\\x27\\xe7\\xfa\\x1d\\x75\\x62\\x48\\xe5\\xc1\\xdb\\x67\\xb8\\x82\\xd9\\xd1\\x97\\x1a\\x18\\xb6\\x35\\x4b\\xc7\\xc8\\xac\\x79\\x7a\\xb1\\xa1\\xe5\\x08\\xaa\\x89\\xcd\\x9e\\x28\\x9a\\x2e\\x9c\\x5d\\xec\\x2f\\x79\\xbb\\x50\\x89\\x42\\x7b\\x9b\\x4c\\xd5\\x6d\\xa1\\xd2\\xc5\\xba\\xbc\\x50\\xc3\\x55\\xd5\\x18\\xea\\xde\\x00\\x96\\x4b\\x69\\xb8\\x21\\x88\\xfd\\x2b\\x78\\x72\\xc9\\x72\\x54\\x90\\x59\\x17\\x17\\x00\\x98\\x30\\xe2\\x65\\x91\\xa9\\x99\\x78\\x1e\\x85\\x40\\x7f\\x36\\xbf\\xca\\x1b\\x55\\x56\\xad\\xaa\\x4a\\xf7\\x11\\x97\\x04\\x41\\x2d\\x5d\\x65\\x4d\\x5e\\xa6\\x5a\\x7e\\x6b\\x14\\x39\\x69\\x58\\xe7\\x21\\x98\\xd2\\x3d\\x73\\xdf\\xd3\\xe9\\x1a\\x6c\\xc6\\xa0\\xe7\\xcd\\xc4\\xd5\\xf2\\x71\\xb1\\x6e\\xc0\\xf5\\xac\\x6e\\x0b\\x30\\xae\\x4a\\x6a\\x0d\\x62\\xb8\\x19\\x0e\\xc9\\xbb\\x14\\x31\\x94\\xfd\\x93\\xf6\\x68\\xc9\\xcc\\xc9\\x9f\\xa4\\xad\\xf5\\x9c\\x32\\x03\\xc4\\x5e\\xbb\\x39\\x82\\x51\\xe6\\x8d\\x37\\x1c\\x40\\x00\\x19\\xd2\\x97\\xb1\\xd3\\x05\\x09\\x9c\\xd1\\xfd\\x7d\\x23\\xc9\\xd8\\x12\\xbd\\x2d\\x8f\\x26\\x82\\x6d\\x0b\\x52\\x78\\xe2\\x73\\x68\\xba\\x5e\\x9b\\xfb\\xa2\\xf9\\x27\\xa9\\xf5\\x1b\\x9d\\x18\\x26\\xf5\\xaa\\xaa\\x61\\x83\\x88\\x6d\\x21\\xdc\\x08\\x16\\x3e\\xb1\\xe2\\x77\\x8f\\x63\\xec\\xa9\\x43\\x75\\x44\\x6e\\x70\\xf6\\x10\\x03\\xe6\\x81\\x48\\x18\\x4b\\x6c\\xc6\\xf0\\x82\\xf7\\xd8\\x70\\x86\\xc6\\xbf\\xb5\\x5e\\x01\\x08\\xcb\\xa4\\x25\\x9b\\x68\\xdb\\xe0\\x3c\\x2f\\xb3\\x57\\x66\\xbe\\x85\\x9d\\x5d\\x2a\\x03\\xf7\\xdc\\xa9\\x4e\\x70\\x8e\\xe5\\x8e\\x80\\x7f\\xcc\\xf6\\x6d\\xa3\\x9e\\x02\\xf5\\xe1\\x21\\x76\\x84\\x7f\\x43\\x90\\x56\\x88\\x0c\\x10\\x38\\x8d\\xd0\\xbe\\x9a\\x3a\\xbe\\xc3\\xa0\\x35\\x71\\xc6\\x87\\x9c\\x62\\x31\\x56\\x87\\x12\\xe9\\x88\\xb4\\xaa\\xc1\\x2c\\x73\\xcb\\x47\\xa2\\x3f\\x01\\xcc\\x20\\x73\\x46\\x87\\x65\\x33\\xa6\\xbd\\x2e\\x3c\\xb8\\x77\\x7a\\xb3\\x6f\\x5f\\xd1\\x23\\x75\\xe0\\xf1\\x58\\x1a\\xa1\\x61\\x13\\xc8\\x30\\xba\\x47\\xd8\\xcf\\xc4\\x31\\x2d\\x15\\xc5\\x4f\\x06\\xd8\\xe2\\x01\\x0f\\x8d\\x33\\x50\\xb8\\x40\\x98\\xec\\x72\\xd5\\x6f\\x39\\x7f\\xac\\xd2\\x97\\x8e\\x18\\x73\\xb8\\x87\\x07\\x9c\\x0d\\x4b\\xc6\\x79\\xba\\x59\\xc4\\x77\\xcb\\x3e\\x05\\x7f\\xbc\\x09\\x02\\xd9\\x01\\x62\\x8f\\x90\\xaf\\x44\\xcd\\x07\\xd1\\xaa\\x70\\x0e\\x69\\x81\\xf8\\x4c\\x78\\x5f\\x71\\x18\\xcb\\x3c\\xcb\\xdf\\x27\\x75\\x7b\\xdc\\x0e\\xcd\\xf0\\xe5\\x81\\x29\\x2b\\x1a\\x8d\\xf9\\x28\\x31\\xb9\\x4e\\xa9\\x8a\\x33\\x61\\x20\\x2e\\x67\\x14\\x08\\x15\\xdc\\xc7\\xef\\xdf\\x57\\x82\\xee\\xff\\x87\\x7a\\x68\\x3e\\x1d\\x80\\x2b\\x8f\\x59\\xf1\\x27\\x1e\\x01\\x3e\\x71\\x83\\x91\\xb4\\xf8\\xd8\\x26\\x5b\\xfd\\x2c\\x58\\x88\\x36\\x5a\\x1d\\x1e\\xa9\\x5f\\x34\\x2c\\x14\\x44\\x79\\xce\\x4b\\x73\\xfb\\x2a\\x5a\\x3a\\xf7\\xdc\\x4f\\xb4\\x56\\x9d\\xa8\\x97\\x97\\xba\\xc4\\x78\\xd0\\x7c\\xb6\\x00\\x17\\x1f\\x73\\xa5\\xa4\\x6f\\xc2\\x60\\xbb\\xba\\x81\\xab\\x05\\x79\\xc0\\x20\\xdb\\xbb\\x1b\\x69\\xc0\\x64\\xd3\\x6c\\x2f\\x2f\\x3d\\x07\\x5d\\xf0\\x41\\x40\\x22\\x95\\x95\\xc5\\x44\\x97\\x55\\xe5\\xc5\\x95\\x37\\x4b\\xf6\\x94\\x50\\xf9\\x14\\xb9\\x89\\x9a\\x8a\\x1e\\xb9\\x85\\xad\\x21\\xe2\\x38\\x18\\x67\\xeb\\x56\\x3c\\xf2\\x81\\xfc\\xd6\\x7a\\xfd\\x48\\x3d\\xad\\xd6\\x3d\\xe1\\xef\\x6b\\x1a\\x87\\xb2\\x79\\x79\\x2e\\x7a\\xf9\\x79\\xa6\\xc1\\x39\\xf4\\x60\\x6c\\xa4\\x9c\\xa3\\x0e\\x19\\xb3\\x13\\x99\\x60\\xfa\\x46\\xf4\\xdb\\xce\\xfc\\x3d\\xb4\\x94\\xab\\xb0\\xc3\\x66\\x52\\xc4\\x0e\\xb7\\xdc\\x56\\xd0\\x72\\xa7\\x0c\\x52\\x75\\x67\\xec\\x43\\x7f\\x57\\xb8\\x1d\\xa6\\x9e\\xaa\\xe5\\xe5\\x90\\xd6\\x6e\\xef\\x10\\xc2\\x47\\x31\\xb5\\xed\\x6c\\x23\\x6f\\x08\\xd7\\x6e\\x06\\x18\\xb2\\x75\\xf9\\x66\\x17\\x93\\xa5\\x3a\\x05\\xa6\\x42\\xc0\\x72\\x96\\xf9\\xc0\\xdb\\x6d\\xcf\\xa2\\xf2\\x94\\x39\\x08\\xd9\\xf7\\x1a\\xfa\\xb9\\x90\\xfa\\xce\\xe1\\xbd\\x68\\x21\\xe4\\x53\\x6e\\x77\\x99\\xdb\\x1c\\x24\\x75\\xa6\\x72\\x02\\x2b\\xae\\x8e\\x14\\x72\\x1c\\xde\\xa5\\x58\\xe0\\x71\\xac\\x80\\x46\\xcd\\xaa\\x93\\x28\\x60\\x93\\x3e\\x8c\\x6d\\x52\\x23\\xaf\\x60\\x94\\xeb\\x5a\\xb9\\x14\\xb2\\x2a\\x27\\xd1\\x05\\x44\\x14\\x21\\x6d\\xdd\\x5d\\xd0\\xec\\x1c\\x21\\xf1\\xe3\\x2c\\x14\\xf4\\xbb\\x47\\xda\\x8e\\x1b\\xc6\\xd7\\x47\\xea\\x39\\x48\\x92\\x46\\x56\\x94\\xa3\\x01\\x3f\\x39\\x21\\x4d\\x52\\x8a\\x14\\x21\\x55\\x53\\xa9\\x42\\x27\\x97\\xda\\x45\\x7e\\x4f\\xd7\\x75\\x8d\\xef\\x01\\x54\\x90\\x19\\x46\\xa3\\x93\\x3a\\x5d\\xbc\\x2e\\x7f\\xb6\\x41\\x66\\x7d\\x06\\x82\\xac\\x77\\x8c\\xb7\\xae\\xce\\x1a\\x48\\xfa\\x3b\\xd7\\xed\\x07\\xd0\\x41\\xc8\\x6d\\x1f\\xa3\\xa5\\x80\\x19\\xf9\\x1f\\x69\\xea\\x9e\\x46\\x67\\x6d\\x79\\x39\\x44\\x29\\x63\\x2c\\x6e\\x44\\x58\\xa0\\xff\\x3e\\xc5\\xc7\\xfa\\x23\\x7e\\xc9\\x82\\x5b\\xf3\\x23\\x7b\\x30\\x3d\\xa1\\x23\\x82\\x7f\\x3f\\x86\\x49\\xb2\\x1a\\x0c\\x4e\\xde\\x9d\\x2a\\x01\\x64\\xe2\\xdd\\x77\\xc2\\x43\\xea\\xf6\\xdb\\xcd\\x93\\x88\\x98\\x76\\x2f\\xb8\\xdd\\x58\\x79\\xab\\x43\\x70\\xfd\\x7b\\x67\\x79\\x39\\x8c\\xee\\x93\\xb1\\x40\\x4d\\xb0\\x92\\x34\\xc3\\xb5\\xa6\\x0b\\xde\\x65\\xbc\\xeb\\xfc\\x20\\xca\\x1f\\x74\\xd3\\xbb\\x92\\x2c\\xb9\\xf5\\x77\\x56\\x4a\\x9d\\xcb\\xcb\\x21\\xb5\\x10\\x76\\xa8\\x6f\\x48\\x7e\\xf7\\xe2\\x3c\\xe0\\x0b\\x3b\\xdb\\xdd\\x6a\\xc9\\x11\\x2a\\x5c\\x0d\\x61\\x20\\xb8\\x95\\xbb\\xdd\\x6d\\xe1\\x0e\\xf4\\xb0\\x01\\xbe\\x33\\xe1\\x26\\x1a\\x5a\\xb2\\xb1\\xfa\\x8a\\xd8\\xf6\\xd9\\xb1\\xef\\x1a\\xfe\\xa3\\x46\\xd0\\xc1\\xd9\\x1d\\x3a\\x58\\xea\\x4f\\x6d\\xa4\\x83\\x26\\xf9\\x39\\x4b\\xe0\\x28\\x00\\x45\\x67\\xb1\\x8f\\x78\\x60\\x19\\x78\\xb5\\x30\\x5c\\x18\\x54\\x28\\x58\\xff\\x3d\\x2b\\x5c\\xdd\\xbf\\x6f\\xdb\\x8b\\x08\\xa7\\x0e\\x4f\\xbb\\x67\\xce\\x5c\\x17\\x0f\\xd4\\x91\\xdc\\x85\\x78\\x4d\\x81\\x39\\x8c\\x1e\\xb7\\xd8\\xa8\\x08\\x78\\x1e\\x9b\\xd0\\x60\\xd5\\xff\\x72\\xa4\\xde\\x56\\x08\\xa5\\xd3\\x56\\x40\\x2e\\xe2\\x46\\xb1\\x2e\\x58\\xfd\\xfb\\x5c\\x58\\x31\\x9b\\x09\\x4f\\x96\\xba\\xd5\\xf5\\x5e\\xa1\\x9b\\x06\\xdc\\xb4\\xaa\\xb2\\xc1\\x3b\\x70\\x9a\\x94\\xe6\\xd6\\xbf\\xd2\\xf5\\xbc\\xaa\\x97\\x1a\\xec\\x2e\\x93\\xd2\\x54\\x81\\xc7\\xcc\\x98\\xed\\x2a\\x40\\x41\\x6c\\x56\\xf2\\x42\\x6f\\xac\\x71\\xc3\\x0e\\xda\\x16\\x50\\x5b\\x68\\xd1\\x67\\xed\\xf8\\x8e\\xdc\\x9f\\x80\\x0e\\xee\\x9b\\x64\\x7b\\x88\\x9e\\x4b\\x1f\\x4d\\xc1\\x0b\\xf7\\x89\\x6e\\xe1\\xe4\\x71\\x69\\x83\\x5a\\xb3\\xbb\\x38\\xa7\\x63\\x7c\\xec\\x4e\\xc4\\xfd\\x47\\x88\\x16\\xc5\\xd6\\x8b\\xbd\\x8d\\xf6\\xa9\\xac\\x5d\\x76\\x50\\x6e\\x7a\\xee\\x69\\x10\\x8d\\x4f\\x43\\xdc\\x95\\x51\\x00\\x03\\xa7\\x4b\\x01\\x7a\\xcd\\xea\\x4a\\x17\\xb3\\x9b\\xd0\\xaf\\xc3\\xfb\\x8d\\xac\\x17\\xb2\\xa1\\xfe\\xcd\\xd4\\x76\\xff\\x7e\\x58\\x5c\\x3d\\x06\\x14\\x06\\x0a\\x79\\x3e\\x1c\\x45\\xd0\\x65\\xbc\\x40\\x82\\x88\\x66\\xd0\\x56\\x47\\x70\\xda\\x84\\x95\\x01\\x72\\xf3\\xc1\\xe8\\xc6\\x7b\\xb7\\xff\\x57\\x6a\\x1c\\x9b\\x6e\\xdb\\xfa\\x02\\x03\\x85\\x58\\x6d\\xf1\\x40\\x87\\x82\\xf7\\xf1\\x5a\\x3a\\x8b\\xd0\\x3f\\x61\\x35\\xb9\\xc4\\xd0\\x61\\x67\\xcb\\xe1\\x60\\xa7\\x68\\x40\\x07\\xa4\\x32\\x33\\x3d\\x0c\\x21\\x6b\\x5c\\x11\\xd3\\x6b\\x6f\\x4e\\x47\\xdc\\x79\\x31\\x00\\x36\\x3c\\xfc\\xcf\\x1f\\x81\\x98\\x5f\\xfc\\x14\\xe9\\x5d\\x60\\x1d\\xf9\\x67\\x6d\\x1a\\x7c\\x49\\x59\\xe1\\x73\\x4f\\x0a\\x4e\\x3d\\x55\\x9d\\x49\\xca\\x19\\x2b\\x70\\x19\\x47\\x4d\\xd1\\xae\\xfa\\x66\\xc7\\x6d\\xa8\\x39\\xdd\\xc6\\x4d\\x51\\x28\\x06\\xf7\\x9e\\xcf\\x04\\x78\\x30\\x46\\xc0\\x83\\xb6\\x5a\\xdd\\x70\\x1d\\x3b\\x5d\\x42\\xa3\\x5a\\xba\\x73\\x10\\xd2\\x57\\x68\\xfa\\xf9\\xdf\\x60\\x06\\x00\\xfc\\x6c\\xcb\\x14\\x04\\x1e\\xe6\\x2f\\xf2\\x4b\\x02\\x37\\x40\\x17\\xc9\\x5d\\x75\\x78\\x70\\xc7\\x59\\x8a\\x6c\\x47\\x6e\\xdb\\x9b\\x27\\x0c\\x2b\\xd8\\xcf\\xc4\\xcd\\xf7\\x21\\x67\\xc6\\xb8\\x83\\xfd\\x99\\xcd\\xf7\\xa1\\xac\\xf9\\x4e\\xe7\\x84\\x97\\xd1\\x6b\\xeb\\x4e\\xc5\\xbd\\x8c\\xb6\\xb8\\x33\\xce\\xdd\\x56\\x36\\x0c\\x50\\x4f\\xcc\\x00\\x34\\xd2\\xc8\\x90\\x61\\xef\\xcb\\x3a\\x5f\\x96\\xd9\\x1f\\xa8\\x51\\x70\\x78\\x57\\x9b\\xf5\\x31\\xf8\\x82\\x0a\\x9b\\x67\\x9b\\x61\\x3f\\xfb\\x28\\xb8\\x46\\xa0\\xdf\\xf0\\xa8\\xa2\\x86\\x95\\xfa\\x6c\\xe1\\xaf\\x76\\x8d\\xec\\x31\\x18\\xab\\x59\\x9e\\x34\\x47\\xea\\xd0\\x90\\x46\\xa4\\x7f\\xe0\\x95\\xf6\\xe7\\x77\\x12\\xaa\\x0d\\x7a\\xfa\\x87\\x3a\\xf9\\x65\\x6b\\x72\\x7b\\xef\\x00\\x9f\\xeb\\x8f\\x4c\\xe0\\x5e\\xa4\\x73\\xdb\\x79\\xcf\\x5d\\xbb\\x17\\xe1\\x3c\\x20\\x33\\xdd\\x8d\\xf7\\xb8\\xc6\\xfe\\x4c\\x9e\\x73\\x83\\x82\\x9a\\x99\\x01\\x7f\\xc8\\x5b\\xcf\\x9b\\xff\\xfa\\x11\\xff\\x91\\xe1\\xfc\\x39\\x5b\\xe0\\x5f\\x1b\\x93\\x83\\x94\\xf9\\xb2\\xf3\\x13\\x2e\\xdd\\x15\\x01\\xe0\\xa3\\xc0\\x8d\\xd7\\x44\\x1b\\xc1\\x05\\xef\\x43\\xc3\\xfd\\x5f\\x4f\\xf6\\x47\\x77\\xde\\xa9\\x41\\xe0\\xf2\\xaa\\xd9\\x36\\x87\\x3f\\xad\\xb6\\x4d\\x1e\\x3c\\x74\\x0c\\xf7\\x0e\\xc7\\x6a\\x60\\xda\\x1c\\xf8\\x65\\x5f\\x54\\x57\\x5b\\x4f\\x00\\x2c\\x1d\\x29\\x8c\\x4e\\x57\\x77\\x6c\\x78\\x95\\x9c\\x87\\x65\\xef\\xde\\x70\\x50\\x98\\x9d\\xd6\\x6e\\x2b\\xfc\\x3d\\x36\\x0d\\x56\\x4e\\x7e\\xe9\\x5b\\xb9\\x06\\x16\\x8f\\x95\\xae\\x8a\\xf5\\xb2\\xfc\\x92\\xd6\\xa1\\x40\\xa7\\x86\\x2f\\xe9\\x41\\x58\\x03\\x7b\\xd5\\xdd\\xb1\\x07\\x57\\x55\\x9d\\x89\\xd2\\xce\\xaf\\xea\\x6e\\xcd\\x9f\\x9b\\xfc\\x61\\xf9\\x2f\\x68\\x3e\\x2c\\x6f\\x7d\\x05\\xef\\xd6\\xbc\\xd7\\x7b\\xcf\\x73\\x6f\\x5b\\x79\\x14\\x3a\\x63\\x04\\x20\\xdd\\x02\\xef\\x52\\x43\\xac\\x02\\xe7\\x00\\x78\\xe7\\x3e\\x84\\xc3\\xb0\\x4e\\x86\\x77\\xed\\x43\\x58\\x81\\x70\\x63\\xbb\\x73\\x27\\xfc\\xa5\\xf0\\x5c\\xd8\\xee\\xda\\x0d\\xbf\\x0a\\xe7\\x95\\xbe\\xad\\x3c\\xe6\\x72\\x52\\xdb\\xa0\\x01\\x3f\\x7c\\xbf\\x92\\x37\\xb7\\x0c\\xa4\\x53\\x49\\x92\\x65\\x41\\x15\\x3f\\xea\\xa6\\xf9\\xb2\\x7e\\xac\\x67\\x00\\xcf\\x2b\\xea\\x69\\x74\\xdd\\x7e\\x4c\\x66\\xdb\\x45\\xe2\\x00\\xd6\\x70\\xf0\\x6b\\x58\\xc3\\x49\\x35\\x8f\\xd6\\x62\\x0f\\x1a\\xb0\\x18\\xe4\\x08\\x60\\xd2\\xc4\\x2f\\x84\\x8c\\x1c\\xab\\x36\\x99\\x51\\xec\\x14\\xf1\\xb6\\x46\\x89\\xbd\\xe6\\xdb\\xfd\\xb6\\x7a\\xf2\\xa0\\xb3\\x26\\x7a\\xee\\x9e\\x6b\\x55\\xd4\\x15\\xda\\xf2\\xad\\xcb\\x16\\x19\\xd6\\x30\\x76\\xb4\\x8d\\xe9\\x19\\xd1\\xf6\\x92\\xab\\xc0\\xf1\\xd9\\x18\\x4a\\xa9\\x3e\\x69\\xeb\\x21\\x8f\\x64\\x0f\\x6a\\xff\\x1f\\xb6\\x8c\\xc4\\x5c\\x8d\\xcc\\x6f\\x83\\x35\\x34\\x16\\xd7\\xdc\\xc1\\x24\\xc4\\x27\\x98\\xa1\\x3c\\xab\\xa5\\x86\\x57\\xd8\\x13\\x82\\xac\\x1c\\x92\\x2b\\x5b\\x0f\\x2d\\xf9\\x1e\\x63\\x20\\x74\\xe8\\x94\\x94\\x84\\xc3\\x81\\x25\\x0d\\xca\\x08\\x3d\\xd9\\xdf\\x57\\x27\\x57\\x09\\x1a\\xf3\\xb6\\x57\\x15\\x18\\xb7\\x34\\x70\\x87\\x06\\x23\\x50\\x44\\xe3\\xae\\xe6\\x08\\x15\\x66\\x8d\\x49\\x1f\\x34\\x0a\\xa4\\x5e\\xc2\\xf8\\xa9\\x2e\\xe1\\x11\\xa7\\xa9\\x6a\\x35\\xd3\\x8b\\x1c\\x5d\\x9c\\xa0\\xba\\xe6\\x0a\\xdf\\x96\\xad\\xcd\\x4c\\x83\\xd0\\xde\\xe0\\xa0\\x85\\xc5\\x77\\x08\\x52\\x56\\x37\\x68\\x00\\x0f\\x98\\xb1\\x35\\xda\\xe9\\xcc\\xb5\\xce\\x1a\\x95\\xb8\\xe2\\x13\\x3f\\x77\\x93\\x26\\xa5\\x5a\\x56\\x00\\xee\\x9a\\x94\\xaa\\x2a\\xd1\\x8e\\x47\\x25\\x33\\x30\\x5b\\xac\\xc0\\x9e\\x65\\x4b\\xf9\\xac\\x52\\x49\\xb9\\xc1\\x87\\x6e\\x50\\x89\\x2a\\xd0\\xf4\\xa1\\x7a\\xb8\\x3f\\x2b\\x3c\\x9b\\x97\\x55\\xb9\\x87\\xb9\\xed\\xb4\\xc0\\x88\\x7c\\x6f\\xe9\\xde\\x6d\\xb8\\xdd\\x78\\x32\\xb4\\x9b\\xed\\x6e\\xaa\\x52\\x5f\\x9d\\xe8\\xc2\\xc5\\xd5\\xfa\\xd2\\x3d\\x04\\x6f\\xdd\\x6e\\xfb\\x38\\x0d\\x67\\x37\\x4e\\x85\\x8b\\x6f\\xea\\xf2\\xa3\\x10\\x1a\\x44\\x64\\xb6\\x78\\xc8\\xeb\\x5a\\x28\\x3f\\x45\\x83\\x7e\\x8c\\x2a\\xa2\\xf3\\x75\\xcd\\x2a\\x50\\x33\\xeb\\xd6\\x58\\x84\\x9a\\xe4\\x97\\x33\\xae\\x13\\x6b\\x4f\\xc9\\x9b\\xea\\x26\\x56\\x55\\x60\\x7f\\xa5\\x6e\\xab\\x69\\x57\\x79\\x80\\xb2\\x6e\\x03\\xa3\\x21\\x2a\\x74\\xcb\\x50\\xd0\\x71\\x3b\\x94\\x6d\\xef\\xaa\\xe8\\x97\\x87\\x5b\\x60\\xa5\\x55\\xdf\\x50\\x1e\\x8e\\xe0\\xc7\\x58\\x0d\\x76\\x2d\\xfd\\x08\\xdf\\x2d\\x61\\xf9\\xc2\\x85\\xd5\\x13\\xb6\\xde\\x01\\x6d\\x84\\x3f\\x60\\xe1\\xd1\\xd5\\xb7\\x36\\x30\\x06\\xb9\\x3e\\xca\\x41\\x5d\\x5e\\xfa\\xb5\\xf5\\x4f\\xa0\\x37\\x6f\\xdb\\x67\\xee\\x00\\xe2\\xb9\\x46\\x81\\xb8\\xd5\\xee\\x96\\x09\\x03\\x33\\x8a\\x4b\\xae\\x05\\xfe\\x16\\xee\\x74\\xdb\\xa6\\xda\\x9f\\x6c\\x7c\\xa6\\xe9\\x94\\xdf\\x36\\xeb\\x4a\\x90\\xd7\\xcd\\x8e\\xff\\x2f\\x6e\\x3f\\x3c\\x1e\\xcc\\xbc\\x90\\xcd\\xb2\\xa9\\x2c\\x5d\\xd7\\xe1\\x81\\x20\\x9f\\x3a\\x9a\\x21\\x96\\x1d\\x49\\x35\\x5b\\x88\\x81\\xf3\\x2f\\xb0\\x8d\\x46\\x17\\x3d\\x4c\\xa3\\xcb\\x27\\x4c\\xde\\xdb\\xcd\\xb2\\xc3\\x65\\x8d\\xaf\\x22\\xdc\\xec\\x80\\x37\\x08\\xa0\\x65\\xc1\\x2b\\x06\\xbb\\x00\\x87\\x6c\\x4f\\xa9\\x3b\\xf7\\xb3\\x03\\x08\\x2d\\x38\\x1a\\x00\\x4b\\xc9\\x8e\\x92\\x1c\\x65\\x28\\x1e\\x9b\\xff\\xea\\xf0\\xcc\\x57\\x8f\\x23\\x50\\x29\\xc4\\x55\\xb8\\x83\\xc9\\x38\\xad\\x0f\\x83\\x5c\\x7c\\xa1\\x54\\x05\\x90\\x00\\xf0\\xe6\\x6f\\xc5\\xab\\x00\\xcf\\x68\\x5b\\x85\\x41\\x56\\xd0\\x5d\\xee\\xdc\\xec\\x48\\x77\\x45\\x4f\\x9f\\x07\\x36\\x86\\xce\\xe4\\xaf\\x87\\x39\\x63\\x2e\\xca\\x43\\x6f\\xb2\\x53\\xfa\\x03\\x32\\xb2\\x35\\x92\\xb3\\xc7\\x56\\xf7\\x90\\x39\\x8f\\x28\\x30\\xf5\\x5b\\x17\\x39\\x1f\\x33\\x8c\\xa4\\xc9\\xa3\\xb3\\xfc\\xc6\\xd8\\x52\\xa6\\x6b\\x98\\x8d\\x1a\\x07\\xbe\\x71\\xe3\\x8f\\x82\\x55\\x6a\\x7f\\xce\\x18\\x4c\\x6d\\xff\\x27\\x86\\x41\\x6f\\x5e\\x38\\x88\\xbd\\xee\\x28\\x02\\x65\\x88\\x0d\\xa9\\x8b\\x76\\x3a\\x68\\x90\\xe1\\xaf\\x99\\x15\\x44\\xb7\\x0f\\xd8\\xd9\\x8d\\x70\\xc6\\xa8\\x55\\xfc\\x16\\x8b\\x4e\\xcc\\x7f\\x7d\\x6d\\x2d\\xdd\\x9d\\xe1\\xd5\\x81\\x64\\x1f\\x70\\x9a\\xbc\\xad\\xca\\x5f\\x4e\\xd4\\x54\\xbd\\x49\\xda\\xc5\\x64\\x99\\x7c\\x1a\\x1e\\x8c\\xc5\\x93\\xb9\\xa7\\x0d\\xb2\\x05\\x73\\x2c\\xc2\\x03\\x32\\x15\\xbb\\x5e\\x83\\x0d\\x0b\\xa9\\x98\\xa6\\xb2\\x0d\\x9b\\x2e\\x75\\x45\\xa1\\xa5\\x0c\\x54\\x8d\\x0f\\xef\\xae\\x68\\x60\\x95\\xe9\\x9b\\xdd\\xc2\\x27\\x7a\\x25\\xff\\xb0\\x2e\\x55\\x62\\x71\\x6f\\xe1\\x3d\\xfc\\x2a\\x69\\xd4\\x0c\\xbc\\x62\\xdb\\x0a\\x7d\\xd7\\xa4\\x63\\x53\\x85\\x00\\xa9\\xcf\\xf0\\xfd\\x1b\\x96\\x09\\x32\\x8f\\x21\\xbc\\x41\\xe0\\xa9\\x46\\x3e\\x5b\\x33\\xf2\\xc6\\xb5\\x5e\\x5b\\x3c\\xa7\\x33\\x8e\\xcd\\x4e\\xef\\xe7\\xa7\\x90\\xe0\\x7c\\xe7\\xef\\xcd\\x7a\\xa3\\xb1\\x93\\x2b\\x0e\\x85\\x2f\\x30\\x47\\x57\\x5e\\xad\\x1b\\x05\\x6c\\x54\\x2d\\xcc\\x10\\xb4\\x2e\\x01\\x74\\x09\\xac\\xaa\\xac\\x4d\\x3f\\x0f\\xb5\\xd1\\x00\\x46\\x00\\x95\\x08\\xb7\\xeb\\xcb\\x5c\\x5f\\x71\\x4c\\x06\\x06\\xd6\\xdd\\x89\\xe0\\xd6\\x23\\x5b\\x7c\\x5f\\x15\\x85\\xb9\\x78\\x38\\xc3\\xca\\xcb\\x13\\x02\\xa9\\x10\\x25\\x08\\xd5\\x83\\x22\\x5f\\x31\\xc6\\xa6\\x0b\\x7d\\x40\\x17\\x9a\\x30\\x30\\x8d\\x85\\xb0\\x6f\\xd6\\x2b\\x70\\x73\\x7d\\x99\\xe5\\x00\\x36\\x22\\xf0\\x2f\\x00\\xb1\\x54\\xcc\\x7b\\xa7\\x59\\x6e\\x90\\x5d\\xc6\\xb1\\x0f\\x30\\xad\\xc0\\x52\\xef\\x4d\\xd5\\xfb\\xa4\\x01\\xed\\xa3\\xb9\\x0f\\x24\\x45\\xb1\\xe9\\x02\\x36\\x73\\x4d\\x76\\x7c\\xf6\\xe8\\x8e\\xf6\\x8f\\x47\\x28\\x48\\xce\\xb4\\x1b\\xf7\\x25\\x7f\\x55\\xd5\\x18\\x6b\\x0b\\x48\\x09\\x1d\\x04\\x71\\x8d\\x90\\x48\\x62\\xa2\\xbb\\x6d\\x19\\x5d\\xff\\x7a\\x9d\\xd6\\x22\\xce\\xcb\\xd8\\x40\\x58\\x81\\xef\\xbe\\xbc\\xf4\\xcc\\x51\\x7a\\xfd\\x96\\xc5\\xf0\\x64\\x1c\\x1c\\x88\\x09\\xf4\\x83\\xde\\x40\\xb0\\x9f\\x48\\xc3\\x9d\\x7c\\x5e\\xcb\\xd8\\xf4\\xf5\\xf5\\xb6\\x92\\xd8\\x69\\xbf\\xc3\\x84\\x6c\\xc9\\xe8\\x7e\\x63\\x95\\xe9\\x66\\x95\\xb7\\xda\\x3a\\xa2\\x62\\x70\\x46\\x25\\xbc\\x9f\\x55\\x52\\x34\\x95\\xf5\\x7a\\x4c\\x17\\x3a\\xbd\\x30\\x75\\x98\\x09\\xc7\\x7d\\xb9\\xac\\xd6\\x8d\\x56\\x69\\x91\\xa7\\x17\\xcd\\x04\\x21\\x20\\x9b\\xb6\\x5a\\x9d\\xe8\\x7f\\x72\\x04\\x49\\x5d\\x24\\x1b\\x9d\\x09\\xee\\x90\\x37\\xab\\xa4\\x4d\\x17\\xa6\\xdb\\x6e\\x39\\x83\\x15\\x45\\x39\\xec\\x9f\\xb8\\x47\\xec\\x32\\x9c\\xe8\\x7f\\xb2\\x9d\\xbc\\xfe\\xa7\\xbc\\xea\\xfb\\x6e\\xda\\x16\\x22\\x23\\xe2\\x95\\x0f\\x82\\x13\\x76\\xd0\\x08\\x95\\xc3\\x6f\\x0e\\xe2\\x51\\x81\\xbc\\x58\\x20\\xd8\\x34\\x30\\x64\\xd7\\xae\\x47\\xde\\x9c\\x43\\x62\\x27\\x47\\x38\\x42\\xad\\x4d\\x9b\\x41\\x24\\x0b\\xfc\\x49\\x9e\\xb6\\x66\\xd0\\xbb\\x6a\\x60\\xd1\\x1c\\x84\\x7d\\x72\\x97\\x52\\xb7\\xec\\x8b\\x9d\\x1d\\x49\\x9c\\xc0\\x57\\x11\\xd4\\x80\\x51\\x86\\x23\\x5d\\x97\\x1e\\xd0\\xa2\\x1c\\xcf\\x1e\\x97\\xc4\\x20\\x17\\x3f\\x26\\x2d\\xe1\\xf1\\x0f\\x2e\\xf4\\xe6\\x7b\\xca\\x83\\xa7\\x3c\\x2d\\xe9\\xc8\\xa1\\x20\\x44\\xaa\\x33\\x04\\xdc\\xed\\x1d\\x4d\\x6e\\x3c\\x18\\x18\\x58\\x97\\x99\\x83\\xe9\\x59\\x91\\x97\\x17\\x2c\\x62\\xee\\x38\\x9a\\x00\\x83\\x35\\xaa\\xf4\\xfe\\x7d\\xb5\\xff\\xeb\\x03\\x46\\x4e\\xf1\\x20\\x59\\xfa\\x6b\\xb7\\xf1\\x9a\\xfd\\xbd\\x7b\\x8f\\x2a\\x65\\xaf\\x61\\x18\\x02\\xf9\\x6c\\x83\\xf5\\xa3\\xd9\\x41\\x17\\x7a\\x93\\x55\\x57\\xe4\\xb1\\x2d\\x8e\\x43\\x1c\\xf0\\x0f\\x7a\\x23\\xcf\\xc3\\x2e\\x8c\\x80\\xf5\\xe8\\x76\\xc1\\x18\\xd1\\x15\\xdd\\xc7\\x76\\x67\\x4e\\x6d\\x63\\x65\\x48\\xcf\\xf4\\x7b\\xc1\\xaa\\x0a\\x1f\\x07\\x70\\x4a\\x82\\x03\\x05\\x10\\x72\\x9a\\xaa\\xb8\\xd4\\x6a\\xbe\\x2e\\x0a\\x6c\\x7f\\x98\\x97\\x69\\xb1\\x36\\xdd\\x53\\x0f\\xd0\\x89\\xfd\\xc1\\x68\\xa2\\x5e\\x25\\x79\\x81\\xae\\xc1\\x64\\x6b\\x9c\\x40\\x94\\x6d\\x8e\\x56\\x54\\x6b\\x84\\x1a\\x42\\xd5\\xd5\\xde\\xb2\\x82\\xf1\\xd2\\x41\\x4d\\x3e\\x26\\xac\\xee\\xe1\\x3a\\x1e\\x9c\\x57\\x0f\\x46\\x4e\\x76\\xa0\\x89\\x83\\x3e\\x98\\x6c\\xd5\\xba\\xb5\\x1d\\xf0\\xdc\\x24\\x42\\xb6\\x11\\xb8\\xda\\x03\\x07\\x71\\x1b\\x79\\x26\\xad\\x4f\\x62\\xe2\\x08\\x4d\\xf2\\x23\\x17\\x0c\\x0a\\x38\\x6a\\x2f\\x73\\xf2\\xab\\xf6\\x2f\\xcd\\x52\\x8a\\x09\\xfc\\xce\\xf7\\xff\\xe3\\xbc\\x3a\\x3d\\xde\\xfb\\xdf\\x67\\x44\\x86\\xb3\\x91\\x3a\\x52\\xb3\\x09\\xce\\xd4\\x28\\xbc\\x7b\\x6f\\xef\\xb2\\x54\\xd6\\x30\\xdf\\xf0\\x2c\\xc6\\x7a\\x66\\xea\\x8f\\x4c\\x0f\\x4f\\xcc\\xcd\\x6d\\x14\\x0f\\x87\\x3a\\x92\\x7c\\x48\\xf1\\xf0\\x4c\\x23\\x49\\x1e\\x1c\\x2e\\xa4\\xbb\\x7e\\x67\\x4d\\x1f\\x98\\xe5\\x04\\x85\\x12\\x20\\x45\\xff\\xf1\\x25\\x25\\x34\\xe2\\x22\\x69\\xda\\x93\\xb6\\x5a\\xad\\x74\\x66\\x76\\x08\\xb1\\x67\\x81\\xf8\\xfe\\x83\\xde\\xbc\\xa8\\xae\\xca\\xde\\xa8\\x87\\xf0\\x7e\\xfc\\x6e\\x85\\x21\\x88\\xd4\\x94\\xb0\\xfb\\x5f\\x16\\xc8\\xc4\\x7b\\x43\\xfe\\x74\\x63\\x06\\xbe\\x7e\\xa9\\xb2\\x4a\\x37\\x36\\xe4\\x23\\xe8\\x41\\x1b\\x54\\x84\\xea\\x26\\x4d\\x56\\x36\\xfa\\x0d\\x46\\x27\\xca\\xf5\\x3f\\x2e\\x75\\xdd\\x98\\x5e\\x3e\\x56\\x87\\x87\\x80\\xd8\\x20\\x41\\x1c\\x1e\\xfe\\x15\\x22\\x11\\x4d\\xb0\\x95\\x9f\\x09\\x5f\\xca\\x07\\x6f\\x00\\xdc\\xdd\\xa9\\x2b\\xb7\\x13\\x15\\xd8\\x52\\xaa\\xf1\\xf0\\x5b\\xc0\\x6e\\xb0\\xfc\\x84\\x2a\\xe1\\x10\\x19\\xd3\\x3e\\x3e\\xb6\\x13\\x8b\\x6e\\xd3\\x99\\x78\\xae\\xe6\\x29\\xb6\\x77\\xe4\\x0e\\xca\\xfd\\x7d\\x0a\\x53\\x63\\x04\\xf2\\xb2\\x52\\xe9\\xba\\x25\\x16\\x3a\\x99\\xa8\\x2b\\xcd\\x2c\\x2b\\x69\\x55\\xa1\\x93\\xa6\\xc5\\x98\\x4f\\x4c\\x7e\\x86\\xd9\\xcc\\x2a\\x77\\x17\\xe0\\x66\\xee\\xdf\\xb7\\xe3\\xfa\\xdb\\xdf\\x80\\x33\\x2e\\x92\\xe6\\x79\\xb5\\xda\\xc0\\x2a\\x81\\x4b\\x0b\\xc2\\xff\\x69\\x09\\x4b\\x62\\x21\\x49\\x62\\xaa\\x1b\\xa1\\x96\\x70\\xd1\\x5a\\x52\\xab\\x8f\\x61\\xf3\\xe3\\x8f\\xe8\\xf9\\x60\\xa4\\xa2\\xbc\\x34\\x32\\x53\\x5d\\x35\\xcd\\x22\\xc9\\x6b\\x0c\\x40\\x70\\x5c\\x80\\x43\\xed\\x42\\x17\\x0e\\xbb\\x95\\xe3\\xa1\\xd3\\x3a\\x60\\x7f\\xf7\\x7f\\x9d\\xc9\\x50\\x30\\x5c\\xcb\\xaf\\x33\\x8e\\x36\\xd8\\xb5\\x2a\\x49\\x6d\\x28\\x10\\x7b\\x54\\x2f\\xaa\\xab\\xe7\\xa6\\xe8\\xf7\\x49\\x5e\\x53\\xd8\\x0d\\x29\\x61\\x77\\xbf\\x4b\\xbd\\xc1\\x8b\\xfc\\xd2\\xbf\\xa4\\x50\\xe2\\x8e\\x52\\x49\\x96\\x41\\xa0\\x8f\\x21\\x25\\x05\\x81\\x6b\\xb8\\xb7\\x03\\x90\\x43\\x6c\\x73\\x6b\\x1b\\x5e\\x94\\x0f\\x2f\\x41\\xd1\\x87\\x7f\\x33\\xf4\\x77\\x4f\\x13\\xe8\\x8c\\x08\\x4e\\xb1\\xbc\\x63\\x53\\x98\\xbd\\x9a\\xcf\\x87\\x7c\\x2b\\x43\\xe1\\x64\\xbd\\x1a\\x8c\\xd5\\x7a\\xd5\\x93\\x01\\xd6\\xaa\\xba\\x04\\x08\\x4f\\xce\\xc4\\xa2\\x7b\\x55\\xf6\\x57\\xe5\\x7f\\x0b\\x6b\\xf1\\xe3\\x17\\xfd\\xa0\\x37\\x3f\\xd9\\xb1\\x77\\x47\\xfe\\x2d\\x42\\x7d\\xe5\\x8d\\x85\\xf7\\xe8\\xde\\xcb\\x02\\x3e\\x83\\x61\\x8b\\x75\\xa4\\xa1\\xf7\\x86\\x23\\xf7\\x31\\x34\\x0b\\xed\\xd3\\x13\\x8b\\xcc\\x2c\\x41\\x7f\\x10\\x33\\x8b\\xb0\\x63\\x08\\x94\\x17\\xca\\x7c\\x31\\x7b\\x09\\x38\\x94\\x85\\xdc\\xe9\\xc4\\xa2\\xb1\\xe3\\x75\\xfc\\x08\\xa2\\x35\\xd6\\x36\\x95\\x7f\\x74\\x10\\x6c\\xc4\\x54\\xf9\\x7c\\x65\\xa4\\x3e\\x47\\x39\\xfc\\xa3\\x98\\x84\\xc7\\xc1\\xda\\x2c\\x84\\x90\\x6b\\x60\\x78\\x4f\\x4f\\x10\\x5b\\x19\\x46\\x89\\x7f\\x3e\\x56\\x87\\x07\\xa3\\x91\\x43\\xfb\\xea\\x30\\xbe\\xc8\\x20\\xc1\\x51\\x26\\x86\\xc9\\xef\\x06\\x6a\\x81\\x22\\x78\\x54\\x47\\x76\\x16\\x28\\x7e\\xca\\x49\\xb5\\xd4\\x2e\\xfa\\x1a\\xc4\\xfc\\xf5\\x0f\\x5a\\x44\\xb2\\xb2\\xa8\\x33\\x3b\\xd6\\x63\\xcf\\xc8\\x1e\\xbf\\x7e\\x3a\\xf8\\xdb\\x20\\xe8\\x9a\\xf9\\xbc\\xed\\x4c\\x0e\\xb2\\x77\\xae\\x2d\\x1e\\x5d\\xf1\\xd9\\xfa\\xe2\\xdd\\x4f\\xcf\\x7e\\x7c\\xf9\\xfc\\xc7\\xd7\\xcf\\x7f\\xf8\\xc7\\x8b\\x97\\x3f\\x1e\\xff\\xbb\\x9a\\xaa\\xbf\\x1c\\x1c\\xe0\\xc7\\xf7\\x49\\xd3\\x3e\\x37\\x97\\x42\\xe1\\x31\\x36\\x6c\\xf3\\xa5\\xa6\\xc8\\x59\\xb3\\x75\\xdb\\x56\\x14\\xe5\\x14\\x08\\x1f\\x90\\x24\\xa7\\x00\\x28\\xc9\\x49\\x36\\xb8\\x17\\x27\\x60\\x21\\x35\\xa5\\xd2\\x3b\\x37\\x8f\\x76\\x76\\x6c\\x43\\x02\\x46\\x0d\\x60\\x2b\\x6b\\xdf\\xd5\\xad\\xa7\\x6d\\x96\\xf8\\x6d\\x17\\x76\\x23\\xe3\\x7a\\x82\\x38\\x97\\x14\\xdc\\x36\\x5d\\xae\\xd0\\xf3\\x96\\x3b\\x39\\xb2\\x7e\\xc8\\xdc\\xc1\\xa9\\xec\\x2f\\x74\\x93\\x85\\x11\\xe8\\xea\\x23\\x17\\x86\\xb9\\x5a\\xcf\\x0a\\x4d\\x89\\x22\\x7e\\x56\\x9e\\x5e\\x7c\\xd0\\x2b\\x9d\\xb4\\xc3\\x4e\\x8f\\xe1\\xc6\\x50\\x5d\\xc9\\x28\\xc8\\xb4\\xc2\\x41\\x85\\xa0\\x5a\\xf0\\x93\\x78\\x66\\x86\\x65\\x75\\xe5\\x4f\\x86\\x3c\\xb7\\x79\\xdd\\xc2\\xfa\\xc4\\xe5\\x96\\x2f\\xd6\\x6d\\x9d\\xaf\\x8a\\xd0\\xb5\\xdc\\xd5\\x41\\x3d\\xf8\\x82\\xb6\\x83\\xf6\\xf4\\x95\\xa3\\xa4\\x6e\\xc1\\x4e\\x8f\\x3b\\xfd\\xcb\\xa0\\xba\\x41\\x28\\x28\\x7b\\x65\\xee\\xd8\\xc6\\x2d\\x33\\x81\\x6e\\x3b\\x03\\x21\\x32\\x1f\\x93\\x14\\x00\\x77\\x42\\xf2\\x1f\\x4a\\xc8\\xbd\\x07\\x97\\x78\\xac\\xb0\\x7f\\xfc\\x0b\\x67\\x93\\x7e\\x99\\x2a\\x50\\xe3\\x5d\\xcd\\xdd\\x03\\x39\\x44\\xfc\\x1e\\xbb\\x0f\\x80\\x55\\x85\\x69\\x66\\x20\\x78\\x11\\x03\\x14\\x57\\xc3\\xaa\\xf7\\xa0\\x2a\\x08\\xf8\\x9c\\xb6\\x09\\x34\\x6c\\xf2\\x02\\x92\\x2d\\x84\\x92\\x1b\\x41\\x94\\xc0\\x4f\\x57\\x39\\xb8\\x32\\x2d\\xf3\\x2c\\x2b\\x34\\x16\\xda\\x83\\xa8\\x9c\\x13\\xf5\\xae\\x56\\x79\\xab\\x96\\x2e\\x08\\x11\\x7c\\x35\\xa2\\x8b\\xb5\\xad\\x80\\x58\\xd7\\x8b\\x6a\\x5d\\x64\\x3b\\xe8\\xf6\\x8e\\x2e\\xef\\x73\\x73\\x3d\\x34\\xf2\\xed\\x58\\x35\\xeb\\x74\\xa1\\x12\\x73\\x53\\xb4\\x01\\x85\\x14\\x44\\x4c\\x33\\x27\\xd0\\x44\\x9e\\x5f\\x10\\xc3\\xaf\\x57\\x22\\x1f\\x2b\\xe2\\x4b\\xb1\\xa0\\x4c\\xbd\\xc7\\x16\\xf3\\x32\\x94\\xdd\\x3f\\x56\\x6b\\xf4\\x39\\xf4\\x59\\x1c\\x81\\xd8\\x36\\xf0\\xb9\\x13\\xf4\\xfb\\x16\\xbd\\x6e\\x28\\x52\\x0b\\x21\\x3a\\x7a\\xe6\\xfa\\xc1\\x3f\\x9d\\xf4\\x7a\\xa5\\x67\\x17\\x79\\xeb\\x79\\x3d\\x3f\\xab\\x73\\x3d\\x2f\\x36\\x0a\\xba\\x52\\xcd\\x31\\xe4\\xfb\\x79\\x82\\x90\\xbc\\x63\\x10\\x8c\\x8b\\xa2\\xba\\xa2\\xb9\\x04\\x9c\\xaf\\xac\\x72\\xc5\\x4b\\x8e\\x3d\\x8c\\x01\\x4e\\xe9\\xda\\xc1\\xb0\\x2b\\xb6\\xdf\\xb0\\x2a\\xba\\x9e\\x50\\xe5\\x85\\xd4\\x41\\xab\\x3b\\x84\\xf6\\xdd\\x5a\\x91\\xb9\\x95\\x3d\\xe2\\x48\\x61\\xe2\\x59\\xd7\\x06\\xfa\\xb5\\xa8\\xc8\\x86\\xb4\\x5e\\x97\\xdf\\xad\\xdb\\xd6\\x86\\x7a\\x8c\\x1c\\xb2\\xbd\\x41\\x1f\\xc7\\x96\\x01\\x2b\\xfd\\x0f\\xfc\\x73\\xa8\\x81\\xfa\\x0d\\x2b\\xc5\\x32\\xe6\\x02\\xd2\\xc7\\x5e\\x8f\\xe4\\x36\\xa6\\xe8\\xea\\x1c\\x7b\\x16\\x8f\\xe6\\x7f\\xfb\\xfa\\xe1\\xb7\\x87\\x47\\x10\\xc1\\x5a\\x19\\x1a\\x18\\xd3\\x6b\\x88\\x7e\\x50\\x6b\\xa0\\x7c\\xab\\xf2\\x48\\x54\\xa3\\xd3\\xaa\\xcc\\xdc\\xd6\\xa5\\x41\\xba\\x33\\xe2\\x90\\x62\\x34\\x93\\x82\\x1c\\xf3\\x61\\x10\\xda\\x8e\\x92\\xce\\xfb\\x3a\\x94\\x9a\\x35\\x33\\x26\\x2b\\xa3\\xbc\\x01\\x63\\xa1\\x67\\x38\\x74\\xb8\\x14\\xc3\\x9f\\xc4\\xd2\\x70\\x1e\\x62\\x21\\x67\\x83\\x8e\\x49\\xa2\\xa4\\x08\\x9a\\x85\\x9e\\xb7\\x58\\x2f\\xec\\x4e\\x1b\\x02\\xd3\\xd5\\x19\\x82\\x74\\xeb\\x7f\\x20\\x82\\xcd\\x10\\x03\\xbb\\x87\\x24\\x82\\x81\\x74\\x3b\\x52\\x9a\\x8c\\x9e\\xed\\xf7\\xea\\x61\\xa4\\x57\\xa1\\x33\\x88\\x0c\\x8d\\x6e\\x5f\\xc9\\xef\\x46\\xba\\x7d\\x21\\xa9\\xa3\\x7d\\xf9\\xda\\xb3\\x33\\x4b\\x56\\xed\\xba\\x46\\x37\\x04\\x38\\x1f\\x4c\\xed\\x55\\xf9\\x1c\\x11\\x4e\\xdf\\xe8\\x72\\xcd\\xcc\\xc8\\xb3\\x2e\\xcb\\x74\\x91\\x6c\\x9e\\x15\\xeb\\x9a\\xf9\\x55\\x2c\\xf4\\xe9\\x17\\x2d\\xeb\\xa5\\xf5\\xd9\\x17\\x6a\\xc5\\x01\\x74\\x69\\x60\\xf5\\xb0\\xb8\\x15\\xa6\\xf6\\x6c\\x94\\xe8\\x95\\x78\\xc6\\x79\\xe8\\x95\\x76\\xf0\\xa2\\x24\\x9d\\xfa\\xb2\\xe4\\x47\\x4c\\x92\\x25\\x19\\xd7\\x59\\x12\\xfc\\x53\\x8a\\xff\\xa4\\x8e\\x84\\xac\\xf4\\xd0\\x24\\xbf\\x81\\xb3\\x07\\x50\\x16\\x30\\x8c\\xc0\\x88\\x15\\xe0\\xfd\\xea\\xa2\\xad\\xd8\\x91\\x23\\x8b\\x21\\x29\\x54\\x48\\xf4\\x52\\xb8\\x13\\x6a\\xed\\x22\\x6f\\x8f\\x7d\\xef\\x8e\\xe2\\x51\\x6d\\xcb\\xcb\\x23\\x05\\x0f\\xf4\\x5f\\xf3\\xfc\\x50\\xe6\\xff\\xc2\\x8b\\x5e\\xe7\\x8d\\x8e\\x28\\xde\\x3d\\xd4\\x75\\x9f\\xea\\xee\\xf0\\x16\\xe7\\x33\\x66\\x7c\\x8f\\xeb\\xa0\\xfe\\xa5\\x55\\x39\\xcf\\xcf\\xd7\\xb5\\x76\\x9c\\xb7\\x87\\x00\\xf1\\x29\\x0a\\x8f\\xea\\x73\\xdd\\xbe\\x5b\\xa1\\xf2\\xc4\\xaf\\x60\\x60\\x8d\\x10\\x48\\x85\\x45\\xa5\\x9e\\xd2\\x1f\\xb1\\x06\\x8e\\x10\\xa0\\xdd\\x22\\x9e\\x4f\\xd6\\x65\\xde\\x8a\\xd8\\x97\\xe2\\x6d\\x2f\\x05\\x0d\\xd7\\xa2\\xae\\x96\\xfa\\xdd\\x89\\x05\\x8a\\x95\\x2a\\xf3\\x38\\x36\\x2d\\x5e\\x6d\\xa9\\x22\\xd7\\x04\\xd6\\xf8\\x54\\x0d\\xac\\x40\\x65\\x28\\x56\\x6c\\x0d\\x3a\\x3f\\x4c\\x16\\xb0\\x18\\xf7\\xbf\\xd2\\x96\\x33\\x5f\\xc1\\x96\\xdb\\x50\\x3b\\x78\\x54\\x88\\x43\\x10\\x9b\\x43\\xc6\\x26\\x41\\x55\\xc9\\x2e\\x01\\x3f\\x18\\x42\\xf1\\x33\\xfa\\xdf\\x1d\\x0a\\xab\\x1d\\xaa\\x5f\\x7f\\x92\\x65\\x6f\\xf5\\x95\\x8c\\x17\\xea\\xa7\\x53\\x70\\x8c\\xad\\xc0\\xbd\\x41\\x95\\xcb\\xea\\x52\\xbf\\x83\\x48\\xcd\\xdd\\x6a\\xe5\\x37\\x75\\x6f\\x28\\x2b\\x27\\x25\\x42\\x07\\x14\\x58\\xbc\\xbe\\x20\\x86\\xbb\\xf7\\x32\\x7c\\xdb\\x69\\xe4\\x28\\x11\\x55\\xaa\\x10\\x1a\\xc2\\x9d\\x04\\xb3\\xbc\\xcc\\x86\\x28\\xc6\\xbd\\xc2\\xb8\\xa4\\xe9\\x12\\x3c\\x11\\x1d\\xcf\\xfb\\xbc\\x55\\xf9\\xeb\\x30\\x99\\x66\\x7a\\x91\\x5c\\xe6\\x10\\x6a\\xf8\\xd6\\xad\\xe1\\x60\\x59\\x0a\\x0f\\xcd\\x75\\xcc\\xd0\\x7f\\x10\\xfa\\x94\\x18\\x03\\xbf\\xe4\\x1a\\x51\\x0a\\x02\\xd0\\x1b\\x99\\xb5\\x4e\\xce\\x8f\\xcb\\x8c\\x7f\\xde\\x0b\\xf8\\x07\\x5f\\x51\\x55\\x8c\\x24\\xef\\xdf\\x47\\x20\\x3e\\x68\\x06\\x4d\\xd7\\x26\\xf4\\xbb\\x81\\xf3\\x74\\xa4\\x9e\\xa8\\xbd\\x43\\x57\\x07\\x00\\xa9\\x76\\x8a\\x90\\x05\\xab\\x4d\\x3e\\x1b\\x59\\x27\\x58\\xe0\\x41\\x04\\xd3\\xb9\\xaa\\x9a\\xc9\\xa7\\x0f\\x8c\\xe5\\xe7\\xd7\\x69\\xcb\\x82\\x17\\x38\\x95\\x7b\\x12\\x94\\x7b\\x4c\\x3e\\xe1\\xca\\x13\\x3e\\xc0\\xee\\xc7\\xd0\\x11\\x1e\\xa9\\xc8\\xe0\\x51\\x88\\xa3\\x75\\x70\\x4b\\xd8\\x2d\\x0c\\x72\\xc2\\xd6\\x92\\x78\\x75\\x83\\x56\\x38\\xe0\\xaa\\x99\\xf3\\x09\\x06\\xb5\\xcd\\x5b\\xa5\\xcb\\xac\\xb1\\x4f\\x60\\x49\\xb9\\x71\\xa2\\x35\\xa2\\xbb\\x16\\x1b\\x8c\\x11\\xbd\\x5a\\xe9\\x92\\x82\\x55\\xd4\\x66\\x25\\xe0\\xf6\\x83\\x77\\xa7\\x7c\\x6e\\x2a\\xca\\xf2\\xac\\x7c\\x20\\x2f\\x3f\\x5f\\x36\\x48\\x1b\\x9f\\x36\\x72\\x21\\x42\\x7c\\x14\\x19\\xab\\x15\\x72\\xd6\\xc9\\xf9\\x4b\\x60\\x15\\x36\\x74\\x6c\\x60\\x04\\xe9\\xe9\\x66\\xed\\x5d\\xe4\\x0e\\xb7\\x04\\x61\\xa7\\x09\\x07\\x0c\\xcf\\x89\\x11\\x56\\xbd\\xf3\\x25\\xa6\\x7a\\x05\\x95\\x2a\\x75\\x6e\\xd4\\x9b\\x8b\\xbc\\x40\\xe1\\xef\\x37\\xd5\\xa5\\x16\\x39\\x83\\xee\\x8d\\xd5\\xc0\\xd4\\xd6\\x50\\xdc\\x20\\xf3\\x37\\x4c\\xe8\\x2d\\x25\\xaa\\x4e\\x37\\xe0\\x88\\x87\\x99\\x74\\x37\\xb2\\xbe\\x97\\x63\\x16\\x08\\x68\\x7d\\x88\\x8f\\x4a\\xb0\\x89\\x2d\\xa2\\x2a\\xbf\\x26\\xe0\\xff\\x6d\\x1d\\xcc\\xea\\x6f\\xdc\\x75\\xee\\x97\\xaa\\xbe\\x50\\x49\\x0d\\x92\\xc9\\xba\\xd4\\x9f\\x56\\x45\\x92\\x97\\xb0\\x12\\xc8\\xa3\\x56\\x75\\x35\\x2b\\xf4\\x52\\xe5\\xa5\\x7a\\xfd\\xf2\\xef\\x6a\\xf8\\x6f\\x0f\\x0f\\x1f\\xfe\\x75\\x04\\x64\\xf8\\x1c\\x0e\\x41\\x35\\xfc\\xb7\\xaf\\x0f\\xfe\\xe6\\x83\\xf3\\xc0\\x42\\x9b\\xbd\\xd7\\x79\\x79\\x9a\\x4e\\xd5\\xdf\\xe5\\x18\\xfa\\x64\\x69\\x1b\\x5d\\x7c\\x56\\x65\\x1b\\x27\\x43\\x47\\x45\\x6b\\x14\\xac\\xfb\\x00\\x34\\xa2\\x45\\x24\\xb4\\x0f\\x8b\\x0b\\x96\\x10\\xa4\\x82\\x51\\xdb\\x3b\\x02\\x6f\\x00\\xfc\\xf7\\xfa\\x1a\\x0d\\xf1\\x92\\x59\\x43\\xc0\\xf6\\x18\\x76\\xf9\\x7f\\xa9\\x3d\\xa5\\x1f\\xf2\\x0f\\x23\\x71\\x46\\xb3\\xfd\\xbb\\xcc\\xf6\\xef\\x23\\xf5\\x64\\xaa\\x0e\\x0f\\x84\\x61\\xc6\\xff\\xc7\\xdd\\xbb\\x2e\\xc7\\x6d\\x6c\\xe9\\x82\\xff\\xf9\\x14\\xa9\\x3a\\x3e\\x72\\xc1\\x2c\\x16\\x8b\\xf2\\xb8\\x7b\\x37\\x29\\x4a\\x21\\xeb\\xb2\\xad\\x68\\x49\\xd4\\x98\\xf4\\xb6\\x1d\\x32\\xbb\\x0f\\x58\\xc8\\x62\\x41\\x44\\x21\\xb1\\x01\\x14\\x2f\\x16\\x19\\x31\\x4f\\x33\\x0f\\x36\\x4f\\x32\\x91\\xeb\\x92\\xb9\\x32\\x01\\x14\\xa9\\xbd\\xbb\\x63\\x4e\\x8c\\x7e\\x88\\x05\\x20\\xef\\x97\\x95\\x2b\\xd7\\xe5\\x5b\\x6e\\x89\\x05\\x12\\xc7\\x08\\x08\\x2b\\xf3\\x37\\x61\\xbc\\x4b\\xbe\\xd3\\x68\\x6c\\x06\\x12\\x19\\xb6\\x38\\xc3\\xbf\\x14\\xb6\\xe6\\xab\\x36\\xa2\\x63\\x0f\\x87\\x76\\x21\\xad\\xed\\x2d\\xc5\\xbf\\xa6\\x14\\xed\\xc6\\xaf\\x5a\\x7f\\x4c\\xb3\\xd2\\xf2\\xdb\\x46\\xa5\\x55\\x55\\x9b\\x74\\xbe\\x04\\xd1\\x02\\x57\\xc8\\x81\\xb0\\xfb\\x5a\\x64\\x4f\\xa7\\xc1\\xe6\\xda\\x8f\\x34\\xa3\\x3d\\x0a\\x94\\x98\\x16\\xf4\\x24\\xe9\\x23\\x04\\x36\\xd9\\x57\\x50\\x81\\xa1\\xe4\\x21\\x09\\x40\\xf7\\xb8\\xe8\\x8a\\xb6\\xf5\\xcf\\x5e\\x28\\x25\\x17\\x03\\x47\\xe9\\x1b\\x53\\xff\\x52\\xe6\\xad\\xe7\\x61\\x2c\\xa7\\xe9\\x59\\x17\\x66\\x6d\\xc9\\x01\\xd1\\x57\\xe3\\x6d\\xe6\\x21\\x97\\xbb\\xf1\\x06\\x99\\xd0\\x63\\x30\\xb0\\x89\\x5e\\xe4\\x65\\x06\\x9e\\x87\\xed\\xb8\\x3f\\x0f\\xba\\xf8\\xf6\\x55\\xf4\\xd1\\x34\\xce\\xef\\x0b\\x51\\x52\\xfa\\xf0\\x5d\\x9c\\xfd\\x2a\\x03\\xbb\\x24\\x5d\\x0b\\xa6\\xb5\\xe8\\x71\\x12\\x62\\xbd\\x62\\x55\\x98\\x92\\xe0\\xca\\xe9\\xa1\\x35\\xde\\x84\\x0d\\xa4\\x5a\\x4e\\xb4\\x32\\xb1\\xc7\\xab\\xa9\\x2a\\x43\\x76\\x6a\\xee\\xdc\\xb6\\xcb\\xbf\\xff\\x88\\xed\\xb0\\x02\\x04\\x8e\\xf8\\xd0\\x13\\x36\\x33\\x73\\xc7\\xc2\\x6d\\xf5\\x9d\\x0b\\x01\\xc3\\x67\\xd6\\x35\\xf4\\x6b\\x62\\x7f\\xbd\\x2d\\x33\\x7d\\x4d\\x15\\xa2\\x07\\x92\\x63\\x03\\x9d\\xc7\\x12\\x7f\\x24\\x76\\x8b\\x45\\x34\\xe1\\xf1\\x02\\x2c\\x60\\xe7\\xb8\\x40\\x02\\xc8\\xf5\\xf8\\xd2\\x3d\\xb3\\xd7\\xf8\\xe3\\x10\\xa0\\xbe\\x39\\xe9\\x33\\x01\\xdb\\xf6\\xc5\\xb5\\xd9\\x7b\\x2d\\x71\\xc2\\x53\\x21\\xc8\\xe8\\x4b\\xee\\xa7\\x91\\x06\\x15\\x2b\\x94\\xa2\\x1d\\xd7\\x48\\xce\\xc3\\x8d\\xac\\xea\\x7c\\x95\\xd6\\x37\\x64\\x23\\xd7\\xd3\\x0b\\x9b\\x00\\xde\\x49\\xd3\\x2f\\x37\\x08\\x6e\\x15\\xfb\\x0b\\x5a\\x20\\x61\\x8d\\x0f\\xe8\\x87\\x37\\x5c\\x39\\xfb\\xf3\\xae\\xe4\\x11\\x57\\x10\\x5a\\xb9\\xb3\\xed\\x56\\xd0\\xf8\\x9d\\xbd\\xb8\\xeb\\xce\\x3f\\x8d\\x87\\x57\\xd2\\x81\\x68\\x2d\\x42\\xaf\\xfc\\x7c\\xc5\\x33\\xde\\x37\\x05\\xf8\\x09\\xfb\\xe2\\x17\\x1f\\x62\\x0b\\xb0\\x77\\x89\\x04\\x43\\x18\\x60\\x3a\\x86\\x66\\x18\\x5b\\x7e\\x27\\xa7\\xa0\\x67\\x68\\xe3\\x51\\x98\\xb1\\x40\\xce\\x73\\x41\\x40\\x35\\xec\\xb0\\xfb\\x57\\x9f\\xb8\\x9e\\x53\\xa4\\x31\\x08\\x77\\xb0\\x6e\\x68\\x54\\xbb\\xdb\\x26\\x14\\xd2\\xf9\\xfa\\x0e\\x01\\x83\\xb5\\xd3\\x8a\\xc0\\xa7\\x6f\\xa8\\x45\\x1c\\xeb\\xcc\\xbf\\xa7\\x6c\\x73\\x53\\xce\\xd3\\x56\\x34\\x32\\xf1\\x7b\\xba\\xcf\\x99\\xea\\x0b\\x9e\\x30\\xfb\\xc8\\x04\\x4f\\x94\\xc3\\x35\\xf9\\x0e\\xfa\\x34\\xba\\x8b\\x64\\x8c\\x41\\xeb\\xd4\\x33\\x14\\x12\\xc7\\xfb\\x8f\\x9d\\x0d\\x41\\xe7\\xd8\\x59\\xfa\\x28\\x78\\xd8\\x40\\x1b\\xbe\\xa6\\xbf\\x2e\\x2c\\x9a\\xeb\\x24\\x0f\\x41\\x90\\xc0\\x8d\\xef\\xb6\\xda\\x4b\\x12\\x0f\\x02\\xf6\\xf5\\x63\\xb1\\x79\\x86\\xd9\\xd0\\x0d\\x2c\\x72\\x8e\\x4a\\x1d\\xf5\\xc3\\x53\\x57\\xbf\\xe8\\x83\\xf5\\xe3\\xae\\xed\\x45\\xda\\x10\\x4e\\x14\\x7a\\x3a\\x08\\x2b\\x15\\x1c\\xac\\x13\\x33\\x76\\xde\\x27\\x3e\\xae\\x08\\x65\\xa3\\xf3\\x96\\x5c\\x3f\\xa4\\x82\\x42\\x89\\x92\\x2b\\xd3\\x6c\\x75\\x77\\xed\\x06\\x12\\x15\\xb9\\xad\\x7e\\x3a\\x7d\\x80\\xeb\\xb7\\xf0\\x8d\\x79\\xd9\\x71\\xd8\\x66\\x2f\\x98\\xd8\\x05\\x86\\x22\\x6e\\x78\\x7c\\xee\\xc8\\x77\\x9b\\xd4\\x2c\\xf7\\x14\\xe8\\xe1\\x4d\\xb0\\xb8\\x01\\x47\\x70\\x46\\x26\\x73\\xee\\x30\\x79\\x39\\xe6\\xf6\\x4e\\xa8\\x9a\\x64\\x42\\x9e\\xd2\\xc2\\x65\\xa6\\x93\\x86\\xca\\x73\\xd6\\xfe\\xe4\\xea\\x13\\x16\\x3a\\x75\\x80\\xd7\\xec\\x9f\\x8e\\xf2\\x31\\x97\\x2a\\x00\\x8b\\x9a\\x44\\xd5\\xc5\\xb9\\x93\\x03\\xb9\\x8c\\x11\\x50\\xf0\\xd0\\x96\\x78\\x00\\x0f\\xd2\\x1f\\x98\\x70\\x67\\x90\\xd9\\x0e\\xc6\\x49\\x8e\\x91\\x87\\x68\\xb3\\x8c\\x18\\x8d\\xaa\\xff\\xd4\\x19\\x3c\\x52\\xed\\xc3\\xf0\\x1d\\xe2\\x18\\x49\\xb3\\xd1\\x2f\\x4c\\xce\\x22\\x3f\\x4a\\x46\\xcc\\x77\\x15\\x26\\x13\\xd5\\x7d\\x97\\x48\\x93\\x52\\x47\\x82\\x24\\x9e\\xfe\\x33\\x97\\xf6\\x9f\\xae\\xb4\\xd3\\x5f\\xe8\\x8c\\xef\\xb0\\x6c\\xcd\\x9d\\xbc\\x54\\x07\\x24\\x31\\x19\\xac\\x3d\\x38\\xb2\\x7d\\x51\\x0f\\x22\\x76\\x11\\xbb\\x75\\x2f\\xd5\\xbb\\x87\\xe8\\x4b\\xfc\\x2a\\xa2\\x6d\\x13\\x15\\x10\\x3f\\x67\\x75\\x6c\\x6f\\x6b\\xf0\\xe1\\x6d\\xd9\\x9a\\xbf\\xe5\\xfa\\x6a\\x5c\\xf1\\x60\\x47\\x68\\x90\\xc0\\x47\\x16\\x19\\x1f\\xc1\\x4c\\xe0\\x62\\xc2\\xd1\\xc7\\x4f\\x04\\xb2\\x23\\xc1\\x4d\\x50\\x6c\\x61\\xe0\\x07\\x6c\\x91\\x54\\xba\\xe3\\x10\\x2c\\x6f\\x10\\x68\\x2b\\xaa\\x71\\xc8\\x42\\xe0\\xdf\\x24\\x76\\x18\\xb7\\xf9\\xb8\\x1d\\x53\\x51\\x88\\xf2\\x75\\xad\\xf2\\xd2\\x2e\\x0d\\x57\\x25\\xcb\\x10\\x65\\xf9\\xce\\x4f\\x22\\x8e\\xdb\\x19\\x94\\x8f\\x69\\x7b\\x6a\\x48\\xaf\\x83\\x1a\\x50\\xd6\\x28\\xe0\\x95\\xa2\\xb5\\xe6\\x49\\x2f\\xf8\\xcb\\x0e\\x2c\\x09\\xce\\xc5\\x29\\x05\\x53\\x8c\\x50\\xd1\\xc7\\xf9\\xaa\\x2a\\xf2\\x05\\x99\\x5e\\x7b\\xc7\\x66\\xba\\x29\\xc1\\x0a\\xa4\\xee\\xe1\\x00\\x3b\\x63\\xd3\\xaf\\x38\\x96\\xbf\\xd9\\x93\\x0b\\x30\\x66\\x91\\xee\\xe4\\x41\\x87\\xf8\\xb4\\x74\\x86\\xf0\\xdd\\x14\\x91\\x80\\xeb\\xe9\\xb9\\x6e\\x7f\\x34\\x6b\\x0c\\xc7\\x04\\xd2\\x8d\\x9f\\xed\\xad\\x88\\xec\\xd0\\x7e\\xa1\\xdb\\x14\\xca\\xc9\\xc1\\x06\\xca\\xac\\x5b\\x55\\xeb\\x9d\\xb6\\xce\\x5d\\xc0\\x45\\xb0\\x4f\\x03\\xd3\\xd6\\xb4\\x44\\xf4\\x62\\x3c\\x3f\\xb1\\x0c\\x14\\x84\\xea\\x8c\\x43\\xcb\\xac\\x74\\x5a\\x82\\x31\\xd5\\x78\\x5e\\xe8\\xb4\\xa6\\x8b\\xb4\\xca\\x01\\x21\\xa2\\xd6\\x45\\x0e\\xd2\\x8c\\x9d\\x1d\\x95\\xb6\\x58\\x00\\xda\\xfc\\x9a\\x92\\xe4\\x57\\x18\\x6f\\x86\\x9a\\xd2\\xa8\\xa6\\xcd\\x8b\\x82\\x2a\\x01\\x36\\x1c\\x5b\\x02\\x65\\xeb\\x8c\\xe0\\x39\\xd0\\x57\\x01\\x5f\\x72\\x04\\x06\\x04\\xd1\\xb0\\xef\\xf3\\x5a\\x35\\xf3\\xa5\\xce\\xd6\\x85\\xce\\x6c\\x67\\xc0\\x4a\\x22\\x5f\\x69\\x88\\x4d\\x83\\x56\\xd4\\xeb\\xb2\\x05\\x4f\\xd1\\xd9\\x56\\x97\\x4d\\x18\\x07\\xa8\\x63\\xf3\\x75\\xfd\\x12\\x02\\x50\\x1e\\xaa\\xed\\x6d\\xca\\x28\\x3f\\xf6\\xde\\x1e\\xf8\\xe6\\xb0\\x91\\x43\\xf0\\x57\\x98\\xf9\\xba\\xee\\xf0\\x1c\\xbc\\x3b\\xc1\\x7d\\x9e\\x18\\x10\\x50\\x07\\x8a\\x6d\\x79\\x8f\\x2d\\x3b\\x1c\\x01\\xcc\\xf9\\xd8\\x3a\\xc4\\xb6\\xb8\\x44\\x9f\\x6e\\xf4\\x10\\xb6\\xbf\\xec\\xd9\\xd6\\x8c\\xe5\\x65\\x58\\x4a\\x14\\x3d\\xc2\\x82\\xcb\\x30\\x6d\\x0d\\x28\\xb1\\xf8\\xcb\\x53\\xf7\\x01\\x62\\xb2\\xf5\\xcb\\x18\\x87\\xe4\\xd4\\x89\\xfa\\x82\\x06\\xd3\\x34\\x31\\x87\\x6e\\xdc\\xbd\\x4d\\x00\\x98\\x12\\xdc\\x25\\x13\\xb5\\xf7\\x83\\x93\\x36\\xf6\\x11\\xd4\\x75\\xdb\\xe4\\x6c\\x7f\\x4a\\xc2\\xbe\\xa7\\x62\\xcf\\x00\\x3c\\xdc\\x73\\xb5\\xf3\\x64\\x86\\xf6\\xe1\\x94\\xe4\\x99\\x4c\\x72\\x66\\xda\\xd6\\xac\\xd4\\x73\\x05\\x89\\x66\\x62\\x20\\xa8\\xf4\\xe4\\xc1\\xdd\\x0a\\x0e\\x7d\\xee\\xdf\\xa3\\xb0\\x7f\\xc1\\xc4\\xab\\x3e\\x2b\\x1e\\xfc\\x71\\x62\\x2a\\xb5\\x7d\\xc8\\x3d\\xf4\\xc7\\x3c\\x0f\\x0f\\x93\\xbf\\x64\\xa2\\xc4\\x10\\x31\\xe9\\x10\\xce\\xbc\\xa5\\xf6\\x8b\\xbc\\xdf\\x20\\x25\\x90\\xf1\\xfb\\xfd\\xf2\\xb6\\x5c\\xe4\\x65\\xde\\xa2\\x1a\\x75\\x48\\x72\\xde\\x2b\\x2e\\xbb\\x5f\\x0d\\x10\\x68\\x00\\xfa\\xa4\\x88\\x6c\\xca\\x6d\\xaf\\x10\\xcb\\xbc\\x69\\x4d\\x7d\\x03\\x7c\\xdf\\xb1\\x2e\\x8e\\xe0\\x6c\\xf6\\x56\\x7c\\x3e\\xbe\\x0a\\xca\\x93\\x1f\\xa4\\x1f\\x79\\x24\\x4c\\x8c\\x40\\xda\\x49\\xe3\\x14\\xd8\\x78\\x88\\xb5\\x28\\x85\\xd7\\xeb\\xaa\\x53\\x8b\\xcd\\x9e\\x6c\\x6d\\x18\\xe0\\x75\\x75\\x8f\\x3c\\xd4\\x8b\\x42\\x87\\x86\\x03\\x85\\x67\\x40\\xd6\\x81\\x4c\\xc2\\xd7\\x1d\\x57\\x11\\x18\\x93\\x65\\x9f\\xd7\\x0d\\xca\\xa5\\xe9\\x20\\x25\\x1f\\xad\\x0a\\xc2\\x9b\\x2b\\x58\\x4a\\xbb\\xbb\\x18\\xb1\\x14\\x60\\xea\\x3f\\xaf\\x57\\x95\\xca\\x74\\x85\\x41\\xfd\\x18\\xaf\\x9e\\xf0\\x02\\x2a\\xd3\\xe4\\x68\\xd9\\x87\\x34\\x18\\x31\\x8f\\xdc\\x88\\x76\\xce\\x4b\\x01\\xe3\\x18\\x70\\x26\\xf2\\xa4\\x3f\\x60\\xc7\\x94\\x98\\xc9\\x38\\x08\\x72\\xbd\\xeb\\xc7\\x01\\xc0\\x8f\\x53\\x89\\x6d\\x60\\x09\\xa7\\xe4\\x78\\xbc\\x3d\\x2f\\x25\\xf6\\x91\\x5e\\xa0\\xfd\\xe4\\x2f\\x2f\\xfc\\x7d\\x9d\\x34\\xa4\\x17\\x57\\xc0\\xb7\\x27\\xc4\\x12\\x18\\x2c\\x21\\x27\\x49\\x45\\x18\\x52\\x09\\xf2\\xb8\\x0e\\xd8\\x7b\\x56\\xd0\\x3c\\x1f\\x55\\x09\\xf1\\x09\\xa0\\x10\\x0e\\xaa\\xe4\\xc3\\x34\\x3c\\x3a\\xf4\\x25\\xb8\\x88\\x4a\\xad\\x09\\xde\\x0f\\x36\\x0c\\xcc\\x4d\\xd2\\xfa\\x46\\x1d\\x52\\x1b\\xb7\\xd5\\x58\\x94\\x7d\\x18\\x94\\xd1\\x17\\x00\\x83\\x30\\x08\\x5c\\xb8\\x01\\x5f\\xe0\\x21\\xaa\\x7f\\xe5\\x0b\\xe8\\x87\\x64\\xfb\\xc3\\x26\\x11\\xda\\x3f\\x86\\x1a\\xc5\\xb8\\x75\\xba\\x48\\x21\\x4c\\xde\\x86\\xd5\\xa7\\xc8\\x0c\\x99\\x9d\\x0f\\xb1\\x14\\x5a\\x68\\xe3\\xa7\\x33\\x95\\x37\\xbc\\xe4\\xf1\\x3e\\xf6\\x6c\\xc6\\xcf\\xee\\xf2\\xc5\\x17\\xda\\xe3\\xdc\\x39\\x2b\\x78\\x88\\x78\\x3f\\x90\\x12\\xab\\x89\\x93\\xab\\x43\\x99\\x76\\x27\\x4c\\xfa\\xdd\\xa6\\xe8\\x57\\x2e\\x44\\x8f\\x65\\xb6\\xfb\\xa4\\x89\\xb6\\xd8\\xb7\\x9b\\x56\\x0e\\x61\\xe5\\x4f\\x82\\x55\\xec\\x6d\\x95\\x72\\xbb\\x68\\x7d\\x21\\x3b\\x34\\xc5\\xb7\\xb7\\xd4\\x62\\x80\\x59\\x12\\xf3\\xfb\\x5d\\x27\\xfc\\x90\\x3d\\x28\\xf7\\x78\\x7a\\xfd\\xb8\\x38\\x71\\x9c\\x9b\\xdc\\x1d\\xb5\\x67\\xcb\\xed\\xfd\\xe8\\xc5\\x99\\x62\\xcc\\x38\\xa2\\x5b\\x8f\\x54\\x32\\x4a\\xf5\\x8c\\x52\\x39\\x9a\\xbe\\x6e\\xf4\\x47\\xb9\\x2f\\x5c\\x23\\xb6\\xf1\\x5a\\x0d\\x79\\xa9\\xe1\\xb3\\xe4\\x94\\x43\\xd0\\x63\\x34\\x58\\x5f\\xf8\\xa1\\x1a\\x53\\x49\\x51\\xb8\\x4a\\xe7\\xf6\\x01\\x59\\x9e\\x73\\x7d\\x1c\\x14\\x85\\x1f\\x5b\\x33\\xf1\\x81\\x86\\x28\\x69\\x6f\\x0c\\x4b\\x5a\\xe5\\x7e\\x93\\x1e\\x72\\x90\\x94\\x0e\\x35\\xa2\\x5f\\xcf\\x69\\x4b\\xec\\x8b\\xeb\\x06\\x23\\x4d\\x89\\xf5\\x15\\x84\\x25\\x22\\x4a\\x07\\x60\\x38\\xbb\\xbb\\xea\\x95\\x6e\\x75\\xbd\\x82\\x20\\x94\\x57\\x4b\\x0d\\x5c\\xbc\\x0b\\x3d\\x1d\\xb3\\xf0\\xe7\\x60\\x9e\\x8b\\xb6\\x0d\\x96\\xf9\\x6f\\x38\\xa6\\x3a\\xe9\\x30\\x5d\\x9c\\x75\\x35\\x37\\x75\\xad\\x9b\\xca\\xe0\\xc9\\x10\\xbb\\x45\\x63\\x39\\xc2\\x58\\x7b\\x02\\xe1\\x9b\\x11\\x62\\x2a\\x30\\x24\\x5b\\xfd\\x36\\x51\\xab\\xdf\\x9d\\xe7\\x54\\x6b\\xd6\\xf3\\xa5\\x76\\xa2\\xb9\\xd5\\x6f\\xc0\\xbd\\xd1\\xdb\\x4f\\xb3\\x53\\xd6\\xe7\\xe2\\xd7\\xdf\\xfb\\xbf\\xfe\\x1e\\x6f\\x21\\x30\\xcd\\xe3\\xc2\\xa8\\x84\\x03\\xce\\xce\\x7c\\x1f\\xd9\\x39\\xa4\\xed\\x7c\\x39\\xee\\x73\\xca\\xf6\\x66\\x5c\\xab\\xdf\\x2c\\xf7\\x0b\\xc2\\xa5\\x45\\x61\\xc0\\x43\\xdf\\x39\\xd5\\x60\\xcf\\x9b\\xa1\\xdb\\xd7\\x14\\x09\\x4d\\x6f\\xf1\\x8c\\x2f\\xa6\\x89\\xd7\\xed\\x35\\xa0\\xdd\\xa0\\xb8\\x12\\xde\\x7d\\x3f\\x9a\\x6b\\x71\\x23\\x64\\x1f\\xc2\\xa1\\x1b\\x21\\x77\\xeb\\x77\\x8a\\xbc\\xfb\\xa3\\xb9\\x66\\xc6\\xf7\\xf6\\x16\\xbc\\x2b\\xd1\\x23\\x17\\xed\\xb6\\xed\\x44\\xca\\x0e\\xe8\\xff\\x24\\xc0\\xc6\\x8f\\xd8\\x5c\\xed\\x78\\xa2\\xd5\\xef\\x6a\\xe7\\xd0\\x95\\x68\\xb9\\xed\\x1d\\xd7\\xa6\\xcb\\x5c\\x5f\\x1d\\x01\\x52\\xf6\\xd6\\x30\\xc8\\x07\\xcb\\x44\\x79\\x50\\x19\\xe6\\x63\\x7b\\x3b\\x0f\\xe2\\x57\\x89\\xbe\\x72\\xd2\\xf9\\x32\\x2f\\xb2\\x0f\\x26\\x03\\x40\\x3e\\x47\\xb2\\xce\\xed\\x5e\\x3b\\xdf\\x3c\\x39\\x76\\x6e\\x57\\xbf\\x45\\xd1\\x4c\\x90\\xe1\\x00\\x14\\xb2\\xf6\\x27\\x6d\\x93\\x39\\xae\\x63\\xf5\\xbb\\xbc\\x4e\\x61\\xfd\\xa1\\x48\\x97\\xda\\xc4\\x0d\\x61\\x7f\\x3f\\x37\\x9a\\x12\\x3e\\x89\\x77\\xa0\\xe3\\xe1\\x37\\x8d\\xb2\\x60\\xeb\\x03\\x33\\xce\\x1e\\x5b\\x7b\\xe9\\x11\\xd5\\xb3\\x3b\\x47\\xf8\\x0e\\xed\\x89\\x59\\xd1\\x45\\x71\\x74\\x8e\\x3e\\x9c\\xbc\\xfe\\xed\\x44\\xbd\\x7f\\xfd\\xe1\\x17\\xf5\\xd3\\x8b\\x0f\\xaf\\xde\\xbd\\xfd\\xf0\\x57\\xf8\\x72\\x62\\xd0\\x5a\\x1e\\xe9\\x01\\x58\\x44\\xab\\x95\\x2e\\xd7\\xea\\xca\\xd4\\x17\\x10\\xb1\\xb6\\xd4\\x78\\x18\\x9f\\x91\\xa7\\xc3\\xba\\x5c\\x5a\\x8a\\x4b\\x44\\xc5\\x66\\x48\\x6b\\x9d\\xaa\\xf1\\x2a\\x85\\xa0\\xb6\\x39\\xd8\\x52\\xad\\x4b\\x73\\xd6\\xd6\\xeb\\xc6\\x9e\\xf6\\x69\\xa3\\x28\\x94\\xaf\\x4e\\x6c\\x41\\x05\\x1a\\x56\\xd8\\xdc\\x30\\x59\\xe8\\xd0\\xa2\\x5a\\xdb\\x0c\\xbd\\x58\\xe8\\x39\\xc8\\x13\\xf2\\xd0\\xf1\\xa4\\xc7\\x5a\\xfb\\xcb\\x03\\xfd\\x25\\xe7\\x3e\\xeb\\x66\\xe7\\x85\\x21\\x2f\\x15\\x00\\x78\\x86\\x32\\xec\\xc8\\x8c\\x1e\\xe0\\x8e\\x27\\x5b\\xab\\x3b\\xf6\\xb9\\x03\\xad\\x71\\x1d\\x8a\\x77\\x2b\\x4f\\xac\\xcf\\x39\\xea\\xa7\\x3e\\xf7\\xaf\\x0d\\x51\\xc4\\x04\\x33\\x86\\xad\\x6b\\x97\\x7a\\xa5\\x5f\\x2e\\xed\\x19\\x95\\x39\\x7f\\x63\\xd1\\x41\\x16\\x4c\\x39\\x57\\xe6\\xd0\\x01\\xb9\\xf3\\x99\\x9d\\xb3\\xc7\\xbb\\x7f\\x34\\xdf\\xcd\\x57\\x3b\\xcd\\xce\\x1f\\xc7\\xdb\\xbb\\xe7\\x13\\x35\\x1a\\x31\\x2a\\xa2\\xd4\\x9b\\xd8\\xda\\x7d\\x96\\xf1\\x7f\\xdc\\xfe\\xd1\\x24\\x7f\\x34\\xdf\\x41\\x06\\x05\\xd9\\x41\\xd2\\x02\\xa2\\xa2\\x97\\xa9\\x3d\\x31\\xc6\\x04\\x9c\\x63\\xf7\\xed\\x5b\\xb4\\x01\\xfe\\xd2\\x1a\\x74\\xf1\\xf4\\xd0\\x73\\xe3\\xe4\\x0b\\x3b\\x82\\x79\\xdf\\xe4\\xa9\\x4d\\x3f\\xba\\xa3\\xcc\\xb4\\x35\\x21\\xfc\\xd3\\xdd\\x96\\xb7\\x8f\\xfe\\x89\\x4f\\x4d\\x78\\x2f\\x60\\x72\\xf4\\x22\\x2f\\x35\\x1a\\x4d\\x37\\x63\\x5f\\x6a\\x6c\\x5f\\x2d\\xf2\\x8b\\xaa\\xc3\\x6f\\xc1\\x85\\x9e\\xec\\xaa\\xd1\\x54\\x3e\\xd3\\x8b\\xa2\\xf5\\x28\\x41\\xa5\\x69\\x8f\\xca\\xb7\\xa5\\xf7\\x41\\x12\\x45\\x72\\x07\\x3e\\xd9\\x9c\\xa7\\x96\\x9c\\xda\\xbc\\x9e\\xd3\\x63\\xf4\\x9e\\xa8\\x5d\\x9c\\x9c\\x48\\x95\\xab\\x41\\x3d\\x0f\\x80\\xfb\\x26\\xea\\x32\\x2d\\x26\\xca\\x14\\x19\\x49\\x77\\x4c\\x91\\x59\\x5e\\x9a\\x1a\\x43\\x2d\\x8c\\x12\\xde\\xdd\\xa9\\x7d\\x36\\x99\\x72\\x4c\\x5f\\xd8\\x64\\x37\\x86\\xce\\xb4\\x9c\\x2e\\x0e\\x1f\\xd3\\x86\\xe4\\x9b\\x64\\x71\\xee\\xd8\\x17\\xb8\\x1b\\x3b\\x74\\x93\\xd2\\xd8\\xba\\xc8\\x8e\\x39\\x2c\\x9e\\xd6\\x83\\xfd\\xc3\\xce\\xff\\x4b\\xdd\\x20\\x6e\\x6f\\x5a\\xeb\\x09\\x90\\x99\\x32\\x6f\\x27\\x6a\\x9e\\x16\\x20\\x5e\\x64\\xe0\\x8c\\xb9\\x29\\x9b\\xb6\\x5e\\xcf\\x5b\\x00\\xfc\\x9d\\xa7\\xeb\\x06\\x08\\xde\\x0d\\x0b\\x4d\\x11\\x7b\\xf7\\x4c\\x43\\xf6\\x1c\\x44\\xc0\\x99\\x42\\x1e\\x11\\xf2\\x53\\x6c\\xcb\\x79\\x4a\\x40\\x6d\\x2a\\x6d\\x55\\x5a\\x14\\x53\\x00\\x5a\\x44\\x33\\x7b\\x68\\xf0\\x08\\xa3\\xff\\x77\\x06\\xba\\x13\\x47\\x0c\\x00\\x24\\xc6\\xf6\\x0b\\x58\\x2a\\xb1\\x11\\x03\\x17\\xb6\\x32\\x99\\x76\\xa0\\x07\\x7d\\xa5\\xf1\\x4e\\xb3\\x97\\x17\\x9b\\xd8\\x8d\\xf9\\x65\\x8a\\x7e\\x92\\x85\\x49\\xb3\\xf7\\xe0\\x09\\xbd\\xa2\\x50\\x10\\x58\\x87\\xa8\\x04\\x91\\x27\\x7f\\xb1\\x9b\\x66\\xa2\\x9e\\x4c\\x5c\\x96\\x6e\\x73\\x30\\xe5\\xaf\\x79\\xbb\\x3c\\x49\\xcf\\x1a\\x4f\\x69\\x7c\\x0a\\x80\\x17\\x47\\x24\\xd0\\x51\\x37\\x3f\\xa9\\x9c\\x46\\x13\\xf5\\x7f\\x4c\\x7a\\xe1\\xa3\\x01\\xa7\\xc9\\xd6\\x7d\\xdc\\xa6\\x2d\\xb7\\xb9\\x4b\\x17\\x30\\xe9\\x39\\xd2\\xb3\\xb8\\x67\\xbe\\xba\\x00\\xe7\\xf3\\xc1\\xc3\\x48\\xb9\\xc4\\x18\\x02\\xed\\x0e\\x67\\xcf\\xfb\\x9a\\x94\\xfa\\xea\\xc7\\x5a\\xa7\\x17\\xac\\x38\\x46\\x5c\\x46\\x6f\\x66\\x0e\\xb8\\x7f\\xb2\\xfc\\xdc\\x9e\\x0c\\xbe\\x11\\x21\\xb2\\xb0\\x63\\xb6\\xd0\\xd9\\x6e\\x76\\x70\\x10\\x2b\\x3a\\x17\\xe4\\x1e\\xe3\\x51\\x0d\\xe1\\xbe\\x78\\xb4\\x18\\xc3\\xfe\\xac\\xa4\\xca\\xd0\\x36\\x7c\\xc1\\x3e\\x36\\x60\\x94\\xa1\\xce\\x6c\\x5b\\x85\\x10\\x13\\xeb\\xc1\\x44\\xdb\\xb6\\xc7\\x61\\xc4\\x37\\xe5\\xfb\\x87\\x7a\\x3f\\x19\\x12\\x1c\\x72\\x25\\xb1\\x3e\\x07\\xbf\\x6e\\xe3\\x21\\x70\\xd7\\x83\\xdd\\xea\\x4b\\xbc\\x17\\xc0\\xb5\\x07\\xbd\\x95\\xe8\\x90\\x2b\\x04\\xe0\\xe1\\x6c\\xab\\xe4\\x1b\\x46\\x4c\\x95\\xaf\\x00\\xde\\xc6\\x77\\x30\\x11\\xb2\\x41\\xb7\\x7a\\x2b\\x3d\\xcf\\x53\\x08\\x52\\x60\\x57\\xf7\\xee\\xa7\\x3f\\xd6\\xb3\\xd9\\x6c\\xb6\\x63\\xff\\xec\\x2d\\xec\\xff\\xff\\xba\\x80\\x87\\x7f\\x83\\x87\\x34\\xfb\\x63\\x3d\\xfb\\x97\\xbd\\xf9\\x1f\\xeb\\x27\\xb3\\xd9\\xd9\\x0e\\xfc\\x59\\xd8\\xff\\x9f\\xfc\\x05\\xfe\\xff\\xb7\\x3f\\xd6\\x0b\\xbd\\x58\\x9c\\xda\\x63\\x6e\\x90\\xe6\\x46\\xe2\\x5d\\xd1\\x02\\x36\\x8c\\xd2\\xe7\\xaf\\xaf\\x2b\\x3b\\xbb\\xd3\\xc6\\xac\\xeb\\xb9\\xb6\\x37\\x68\\xfb\\x04\\x70\\x24\\x00\\x80\\x6f\\xef\\xb4\\x70\\x9d\\xbd\\xb5\\x4f\\x96\\x2b\\x10\\x8a\\x8b\\x88\\xa0\\x03\\xb0\\xca\\xa2\\xd6\\xcd\\x72\\xbc\\x79\\x04\\x3e\\xda\\x91\\x5f\\x9a\\x22\\x03\\x6c\\x0d\\x3a\\x85\\x8e\\x7b\\xbf\\x77\\x36\\x73\\x00\\x2e\\x4b\\x95\\xf5\\x12\\x38\\x90\\x81\\xd6\\xf9\\x9c\\x87\\xbc\\x4b\\x71\\xaa\\x75\\x7b\\xdc\\xde\\x14\\x28\\x6b\\x3d\\xcb\\x0b\\x0d\\x3e\\x3e\\x96\\xdf\\xb1\\x8c\\x76\\xde\\xa6\\x67\\xe4\\xbe\\xc6\\x1c\\xeb\\xa8\\x4f\\xb6\\xdf\\x2e\\x6b\\x73\\x05\\xc3\\xf9\\xda\\x1e\\x21\\xb2\\x60\\xa0\\xe6\\xa5\\x69\\xd5\\xf8\\x46\\xb7\\x89\\x25\\xfe\\x73\\xe4\\x93\\x20\\xa6\\xb1\\xaa\\xd7\\x65\\x09\\xd7\\x68\\x20\\xfd\\xa3\\x04\\x30\\xbd\\xde\\xfe\\xf6\\xfe\\x75\\x3f\\xcd\\x69\\x2a\\x5d\\x14\\x80\\xd7\\xc7\\xe4\\xf1\\xde\\x63\\xe0\\x5c\\xb7\\x6f\\x6d\\x6b\\xde\\xe4\\xba\\xc8\\xc6\\xc9\\xd4\\x17\\x81\\x34\\xa8\\x77\\xe0\\xea\\xb6\\x78\\x2f\\x82\\xe8\\x8f\\x26\\xea\\x11\\x7a\\xce\\x36\\x32\\xd5\\xd5\\xd2\\xa0\\xd2\\xe8\\x97\\x2a\\x4b\\x5b\\x8d\\x31\\x2b\\x46\\x3d\\x67\\x00\\x70\\x68\\xf6\\xd4\\xa2\\x79\\x1e\\xf5\\xd3\\xe7\\x98\\x8d\\x84\\x97\\x74\\x85\\x0a\\x5f\\xf7\\x34\\x19\\xa1\\x11\\x87\\x2b\\xe9\\x6e\\x0b\\x0e\\xb5\\x8a\\x92\\xb5\\x7f\\x87\\xfc\\x70\\x58\\xba\\xaf\\x84\\x15\\x2e\\xd6\\x38\\xdc\\x22\\x5d\\x62\\x5b\\x98\\xdb\\x09\\x90\\xf8\\xf1\\x63\\xc4\\xd2\\xce\\x74\\x9b\\xa2\\xc8\\x55\\x3c\\x92\\xf2\\xf8\\xda\\xd9\\x1e\\x72\\x6c\\xd6\\x69\\xda\\x72\\x72\\xf1\\x88\\x4a\\x7e\\x5b\\xea\\xed\\x2d\\x79\\x5e\\x75\\x76\\x94\\x83\\x92\\xa4\\x03\\x48\\x7e\\x8b\\x5c\\xf2\\x38\\x41\\x74\\x84\\x71\\x20\\x77\\xbf\\xa0\\xae\\xe8\\x0d\\x0d\\x79\\x77\\xa8\\x69\\x4a\\x46\\x13\\x38\\x92\\xfa\\x66\\xb2\\xd1\\x2d\\x5e\\x52\\x1a\\x8a\\xe7\\xfe\\x61\\xbd\\x3a\\xd3\\x75\\x23\\x3c\\xa0\\xbe\\x6e\\x76\\x17\\xf9\\xb5\\xce\\xb0\\xc8\\x11\\x6b\\x56\\x37\\x1e\\xb5\\x91\\x50\\xa0\\xb1\\x7b\\x71\\x4a\\xf6\\x4a\\x97\\x69\\x01\\x88\\x55\\xab\\x4a\\x97\\x4d\\xda\\xea\\x37\\xa6\\xfe\\x09\\x43\\xa6\\x8a\\x7b\\x60\\xa2\\xb6\\xd5\\xa8\\xba\\x86\\xcd\\x3f\\x1b\\x71\\xb9\\x8e\\xde\\xf4\\x37\\x73\\x6e\\x2e\\x75\\x8d\\xcd\\xfc\\xa0\\xaf\\xdb\\x13\\x73\\xcc\\xc8\\x08\\xfd\\xfb\\x55\\x6c\\xd5\\x35\\xec\\x21\\x97\\x1e\\x58\\x91\\xde\\xbd\\xe9\\xc0\\x16\\x98\\x70\\x8d\\x4a\\x90\\x8f\\x0f\\x6c\\x2a\\xcb\\x6b\\x86\\xa5\\xc2\\xeb\\xbe\\xea\\xe2\\xc1\\x73\\x35\\x35\\x80\\xd4\\xce\\xfa\\x47\\x16\\x67\\x3b\\x85\\xe4\\x83\\x32\\xbe\\xd3\\x8b\\x36\\xcc\\x69\\xdf\\x6c\\xe0\\xad\\x68\\xc9\\x0c\\x0e\\xdc\\x7f\\xd7\\x42\\xa3\\x18\\x86\\x58\\xd0\\x68\\xa2\\xf6\\x26\\x51\\xe6\\x4d\\xcd\\x7d\\x63\\xea\\x55\\x4a\\xab\\xd4\\xb7\\x37\\x2f\\x5b\\x7d\\x1e\\xa8\\x86\\xe8\\x0d\\x4c\\xf0\\x7d\\xa5\\x03\\x9c\\x17\\x40\\x80\\xfc\\xba\\xd4\\x64\\xe3\\x1e\\x6c\\x58\\x9a\\x4b\\x6f\\x37\\xdf\\x21\\xc0\\xc0\\xf9\\xba\\x04\\x47\\x65\\x78\\xa3\\xef\\xeb\\xce\\xaf\\x79\\xa3\\x5f\\x9a\\xea\\xe6\\xe5\\xba\\x8f\\xd5\\x06\\x18\\x11\\x30\\x17\\xf8\\xa8\\x7d\\xf4\\xcf\\x3e\\xd2\\x5f\\x93\\x1b\\xe3\\xe6\\xf3\\xca\\x51\\x43\\xbb\\x35\\x0f\\x0f\\xd5\\xa8\\x34\\x08\\x7a\\x22\\x8c\\x28\\x4d\\xf9\\x63\\xb1\\xae\\xdd\\x3a\\xed\\x91\\xa0\\x9c\\xd9\\xef\\x12\\x8b\\xa2\\x07\\xa9\\x15\\x5b\\xc3\\xcb\\x80\\xa8\\x7d\\x40\\x52\\xb3\\xbc\\xb1\\xa7\\x3e\\x1c\\x9a\\x9b\\x5b\\x2d\\x39\\xf7\\x21\\x50\\x58\\x75\\xd7\\xb3\\xc8\\xd8\\x65\\xc6\\x91\\x32\\x7e\\x41\\xed\\x92\\x69\\x01\\x08\\xc4\\x7e\\x7b\\x93\\x17\\xfa\\xe4\\xa6\\xd2\\x4d\\x1f\\x25\\xc7\\xd1\\x02\\x00\\xd5\\x9f\\xd3\\xd6\\xd2\\x82\\x1f\\xbe\\x9f\\x25\\x9d\\x04\\xb8\\x15\\xdf\\xa7\\xf5\\x79\\x6e\\x67\\xab\\x27\\x05\\x8a\\x38\\x71\\xd9\\x0f\\xac\\x2b\\xb1\\x32\\xc1\\x09\\xf5\\xa5\\xc8\\xf8\\x51\\xc3\\x2e\\x74\\x1d\\xbb\\xb7\\x88\\x2b\\x53\\x5f\\x9c\\xe4\\xc0\\x1d\\x10\\x90\\x88\\xfc\\x02\\x30\\xc3\\xdd\\x4f\\x8b\\xc2\\xee\\xb1\\xf2\\xb8\\x4a\\xcb\\xc6\\x55\\x15\\xde\\xee\\xba\\x35\\x21\\xac\\x80\\x06\\xd4\\x39\\x3f\\xaf\\xf7\\xe5\\xaa\\xd0\\x88\\x4f\\xd7\\x97\\x69\\xd1\\x6d\\xc8\\xba\\xcc\\xcc\\x2b\\x5d\\xb5\\x4b\\x7b\\xb7\\x9d\\xcd\\xee\\x65\\xc6\\xa4\\xd9\\x82\\xcb\\xeb\\xf8\\x30\\x59\\x32\\xa5\\x7a\\x8d\\x6a\\x00\\x1a\\x85\\x27\\x3f\\x04\\xb5\\x5f\\xe6\\xfa\\xaa\\x32\\x75\\xeb\\xe6\\x73\\x6f\\xf6\\x8f\\xf3\\xca\\xab\\xf4\\xfa\\xa7\\xfc\\x7c\\x59\\xd8\\x59\\x7c\\x07\\x77\\x18\\xec\\xae\\xed\\xd5\\x7d\\x83\\xb4\\x32\\x97\\xb8\\x5f\\xec\\xe5\\x1d\\x97\\xc3\\xfd\\xa7\\xf4\\xfd\\xbb\\xe7\\x23\\x69\\x7a\\xfd\\x55\\x22\\xbc\\xed\\xc3\\xd5\\x74\\xe3\\xcd\\x5b\\x0e\\x7d\\x50\\xfe\\xb9\\x76\\x0c\\x71\\x9b\\x9e\\xb1\\x82\\xd5\\x52\\x9f\\xdb\\x5b\\x35\\x1a\\x45\\x93\\x91\\xae\\x5b\\x03\\x36\\x2c\\x3d\\x5c\\x96\\x53\\xea\\xda\\x93\\xb8\\x68\\xeb\\xfb\\x05\\x33\\x68\\xfe\\xde\\xbe\\xe2\\x8c\\xb1\\x80\\x46\\xca\\x0b\\xbb\\xc7\\x16\\x8c\\x1e\\x6e\\x2b\\x3a\\xf9\\x88\\x24\\xc6\\x22\\x8b\\xb4\\xc8\\xcf\\xcb\\x9f\\x4c\\x9d\\xff\\x69\\xca\\xd6\\x72\\xf1\\x2c\\xf4\\xf4\\xc2\\xc8\\x90\\xea\\x70\\x6b\\xed\\xac\\x39\\x36\\xd9\\xb2\\xc1\\x57\\x69\\x73\\x54\\x12\\x1f\\xfc\\xf8\\xb1\\x64\\x87\\xb7\\xfc\\x34\\xae\\x41\\x49\\xfe\\x08\\xd2\\x06\\x81\\x13\\xd6\\xe5\\xbc\\x09\\xe5\\xbd\\xb6\\xde\\x37\\xd4\\x88\\xc6\\x25\\xc4\\xb0\\x1e\\x38\\x0b\\x6b\\x7b\\x0f\\x33\\xa5\\xda\\x57\\x66\\xb1\\xc0\\xbb\\x01\\x7c\\x1d\\x77\\x98\\x8c\\x8e\\x4f\\x20\\xd4\\x37\\x15\\xce\\x50\\xf7\\xe6\\xb4\\x57\\xbd\\xda\\xe5\\x84\\xa7\\x07\\xe6\\x24\\x64\\x48\\xcc\\x68\\x1f\\x1e\\x98\\xaf\\xd0\\xa9\\xe3\\xd7\\x9a\\x29\\x3c\\x3d\\x28\\x27\\x9c\\x18\\x98\\xc9\\x3e\\x24\\x1d\\xfd\\x4f\\xc4\\xba\\xbb\\xf5\\x12\\x81\\x0f\\x48\\xbe\\x9f\\xe7\\xca\\x61\\x7f\\x76\\x05\\xf3\\x21\\x36\\xa7\\x7d\\x39\\xea\\xb2\\x7c\\xf9\\x9f\\xba\\x26\\x36\\x7b\\x95\\x97\\x18\\x04\\xf7\\x50\\x8d\\x46\\xbd\\x09\\xf9\\x33\\x9b\\x6a\\x05\\x6e\\x20\\xab\\xaf\\x6e\\xc7\\x22\\x2f\\xb3\\xf7\\xe9\\x35\\x99\\x04\\x25\\xa4\\xb0\\xd5\\x4d\\x9b\\xaf\\x52\\xe4\\x53\\xf0\\x74\\x1a\\xda\\x2a\\x5d\\x09\\xe0\\x7d\\xee\\xa0\\x83\\xdc\\x3a\\x1c\\x10\\x0c\\x15\\xe7\\x5b\\xab\\xf2\\xb2\\x69\\xd3\\x72\\xae\\x55\\xad\\x2b\\x4b\\xdc\\xca\\xb6\\x01\\x65\\x3c\\xdc\\xfb\\xa7\\xea\\x64\\x99\\x37\\x60\\xa4\\xb2\\xd4\\xca\\x9c\\x7d\\xd6\\xf3\\x76\\x8b\\x90\\xb9\\xd5\\xba\\xd1\\x04\\xfa\\x9b\\x37\\x6a\\x8d\\x17\\x72\\x95\\xe9\\xb4\\x60\\x0c\\xee\\xa9\\x58\\x00\\xbe\\xc6\\x31\\xc8\\xb6\\x26\\x8a\\xb9\\x60\\xb7\\x9b\\xdb\\x65\\x8e\\xb6\\xd0\\xf6\\xc7\\x81\\x73\\xf4\\x02\\xec\\x51\\xd7\\x4c\\xb3\\x10\\x45\\x25\\x91\\xdf\\xe8\\x86\\x4a\\x40\\x56\\x0f\\x7e\\xce\\xf4\\xca\\x09\\xe8\\xe5\\x2f\\x7b\\xf9\\xaa\\x6e\\x8e\\xce\\x3e\\x8f\\x5d\\x46\\x42\\x7f\\x91\\x56\\x0b\\xa4\\xd6\\xcb\\x2f\\xb5\\xcb\\x78\\x96\\x36\\x1a\\x10\\x76\\xcf\\xf3\\x4b\\x4d\\x10\\x22\\x0d\\xd8\\x2c\\xb0\\x1e\\x63\\x6a\\xa7\\x93\\x0a\\xe7\\x77\\xae\\x7d\\x42\\xa4\\x3c\\x78\\x71\\x70\\xb7\\x06\\xd6\\xb7\\x83\\x4b\\x28\\xef\\x1c\\x04\\x2d\\x09\\x60\\x86\\x20\\x41\\x08\\x32\\x84\\x79\\x00\\xc8\\xd1\\xcc\\xc9\\x87\\x89\\x0a\\x58\\x81\\xe8\\x1b\\x4f\\x2c\\xb9\\x1d\\x9d\\x24\\xd9\\xbf\\xf6\\xc1\\x6a\\x60\\x39\\x33\\x92\\x2c\\x3a\\x50\\x6d\\x39\\xab\\xb2\\x6a\\xdd\\x52\\x65\\x42\\x89\\xe1\\x05\\x50\\xcd\\x27\\x2e\\xcf\\xbf\\x3b\\x85\\xc9\\x4e\\x3a\\x16\\x05\\x58\\x85\\x7b\\x84\\x0e\\xe0\\x13\\x4f\\x34\\xf4\\x05\\x0a\\x4a\\x04\\x42\\x1e\\x2b\\xf0\\xc4\\x7a\\x77\\xd8\\xb4\\xe1\\x51\\xc5\\xf5\\x06\\xa2\\x1e\\x7e\\x09\\xf2\\xc4\\x3e\\x12\\xb5\\x85\\xf2\\x5a\\xd9\\xbc\\x1e\\x9d\\xe2\\xf6\\xa1\\x1a\\xa9\\x98\\x40\\xa0\\x8a\\x36\\xbc\\x03\\x63\\x7d\\x3c\\xa4\\x20\\x1a\\x55\\x87\\x44\\x7d\\x28\\x2c\\xc8\\x3e\\x88\\x36\\x14\\xa0\\x35\\x9a\\x5a\\x37\\x6a\\x95\\x56\\x8d\\xa5\\x91\\x3a\\x53\\x67\\x37\\xf6\\x07\\x8a\\x80\\xd0\\x5a\\xf5\\x52\\xd7\\x45\\x7a\\x43\\x99\\x76\\x77\\xd5\\x92\\x19\\x29\\xb0\\x9d\\xa4\\xaf\\xe0\\xce\\x2c\\x4b\\x38\\xc2\\x0f\\x68\\xd0\\x62\\x32\\xfd\\x57\\x5d\\x42\\x34\\x6a\\xa8\\xf6\\x6c\\xbd\\xaa\\xbc\\x45\\x67\\xa6\\x77\\xa9\\x18\\x12\\x1f\\x36\\x13\\x17\\xbe\\x23\\x2f\\x2f\\xd3\\x22\\xb7\\x83\\x1c\\xd6\\x9b\\x97\\x0b\\xe3\\x9a\\xc7\\x41\\xb5\\x80\\xe9\\x45\\x0b\\x5a\\xcb\\x54\\xe6\\xe5\\xb9\\x73\\x84\\x0f\\xbe\\x02\\xb7\\xa3\\xb3\\xe0\\x5d\\x00\\x30\\xe5\\xdc\\xfd\\x76\\x77\\x5d\\x4b\\xe8\\xe6\\x04\\x44\\xcd\\xb6\\x20\\x5b\\x83\\xdd\\xfd\\x85\\xbe\\x89\\xd4\\x70\\x39\\x86\\xe7\\xb1\\x37\\x31\\xe8\\x1c\\x14\\x0f\\x77\\xca\\xb7\\xe5\\xdc\\xac\\x50\\x09\\x8b\\xc5\\xcf\\xd7\\x6d\\xe7\\x9d\\x1d\\x61\\x5d\\x54\\xaa\\xd6\\x73\\x73\\x5e\\xe6\\x7f\\x6a\\xcc\\xbb\\x0b\\x18\\xe3\\x80\\x7e\\x95\\x97\\xb8\\x48\\xa7\\x96\\x7d\\x27\\x41\\x81\\x30\\xbc\\x0d\\x07\\x42\\x00\\x2a\\x04\\x1f\\xdc\\x68\\xee\\xcb\\x90\\x27\\xe3\\x64\\x22\\x96\\x85\\x4b\\x03\\x96\\x0f\\xba\\x66\\x27\\x06\\x5e\\x4b\\xc7\\xfa\\xef\\xfb\\xb4\\xdb\\xc1\\xf9\\x02\\x6c\\xa7\\x9b\\xa5\\xce\\x60\\x54\\x1a\\xfd\\xf7\\xb5\\x2e\\xe7\\xd8\\x7f\\x29\\x9c\\xdf\\x0f\\x8c\\x98\\xe5\\xbe\\x70\\xac\\x28\\xb8\\x82\\xa2\\xcc\\x3a\\xd9\\x00\\xb1\\x81\\x34\\xd5\\x2e\\xb5\\x3a\\xcf\\xb4\\x5a\\xa5\\xe7\\xf9\\xdc\\x9b\\x5f\\x90\\xa4\\x1b\\x02\\x70\\x50\\xb8\\xd0\\x56\\xbd\\x7d\\x8d\\x28\\xa0\\xf9\\x0a\\xdc\\x41\\xc0\\x4f\\x7d\\x77\\xd7\\x52\\x5d\\xb3\\xae\\xd5\\x32\\xcf\\x32\\x5d\\xfa\\x22\\x8c\\x9d\\xcb\\xc2\\xa4\\xd9\\x26\\xa0\\xfb\\x64\\x03\\xcc\\x88\\x44\\xeb\\xfd\\x66\\xaf\\xf7\\x16\\xcd\\x11\\x00\\x18\\x64\\x04\\x8f\\xf0\\xbc\\x61\\x7b\\x05\\xd6\\x4a\\x3b\\x4a\\x82\\xce\\x2d\\x7f\\x2d\\xcc\\x59\\x5a\\xb8\\x8f\\xb0\\xe5\\x81\\x31\\x3c\\x72\\x46\\xda\\x9e\\x1e\\xe5\\x8d\\x73\\xa4\\xa8\\xe7\\x24\\xd1\\x26\\x00\\x0e\\xcb\\x4c\\x83\\x44\\xd6\\x52\\x73\\x42\\x2c\\x35\\x73\\x67\\x3d\\x75\\xcf\\xdc\\xdc\\xde\\x62\\xe9\\xcb\\xb4\\x79\\x83\\xd3\\xc2\\xf4\\x2c\\x86\\xae\\x32\\x25\\xc1\\x56\\x41\\xab\\x3c\\xa2\\x8a\\x80\\x3d\\x22\\x21\\x08\\x24\\x20\\x93\\x7e\\x56\\x7e\\x99\\xaa\\xb5\\xeb\\x3e\\xd4\\xd3\\xdb\\xf1\\xf5\\xcb\\x87\\xdf\\xda\\xb6\\x1c\\x5d\\x95\\x1f\\xc1\\xfa\\xbb\\xbd\\xb1\\x5f\\x5d\\xa3\\x22\\x3d\\xbf\\xa9\\x5a\\x3c\\x2d\\xc0\\x39\\x09\\x3b\\x0a\\x2f\\x27\\xa4\\xf3\\xb9\\x43\\x83\\xaf\\xf4\\xe6\\x8c\\x06\\xcd\\x1f\\xa6\\xc0\\xe5\\xf5\\x52\\x77\\xdc\\x05\\xac\\x34\\xea\\xbe\\x75\\x1d\\xec\\x37\\x10\\xb3\\xf4\\xfc\\x27\\x63\\x2e\\x62\\xbb\\x30\\xff\\xe1\\x53\\xce\\xad\\xa6\\x21\\x2c\\xb3\\xee\\xa4\\xef\\xee\\xaa\\x63\\xa2\\x69\\xd0\\x86\\x55\\xfe\\xa7\\x2e\\xf4\\x79\\x8e\\x30\\xac\\x76\\x30\\x7f\\x05\\x94\\x96\\x89\\x6a\\x72\\xcb\\xba\\xe5\\x2d\\x2a\\x38\\x1b\\x45\\xf1\\x41\\x77\\x77\\xd5\\x4a\\xa7\\x0d\\x92\\x39\\x8a\\x75\\xe7\\x78\\x70\\xb6\\x7d\\xcd\\x75\\x04\\xfa\\x02\\x77\\xa8\\x9e\\x63\\xce\\xe3\\x69\\x9d\\xeb\\x96\\x2c\\xa0\\x33\\x38\\xaf\\xc7\\x91\\x3d\\x1f\\xba\\x9d\\xfe\\xac\\xcb\\x4c\\x43\\xd5\\x96\\xfd\\xe8\\x76\\xc0\\x85\\xf6\\x89\\xad\\x01\\x91\\x4b\\x8f\\x8a\\x50\\x70\\xcb\\x1d\\x39\\xb4\\xac\\x93\\xa5\\x66\\xa6\\xca\\x41\\xa0\\xa5\\xc2\\xd4\\xa4\\x99\\x6e\\xf5\\x98\\x91\\xa0\\x01\\x09\\xfc\\xb4\\x85\\xb8\\x5b\\x1e\\x84\\xa7\\x59\\x93\\x23\\x17\\x73\\x73\\x69\\xed\\xb4\\x61\\x41\\x61\\x1d\\x13\\x98\\xd8\\xee\\xc5\\x32\\xd7\\xb0\\x21\\x31\\xc6\\x95\\x9e\\xeb\\xa6\\x49\\xeb\\x1b\\x67\\xda\\x1a\\x9e\\x35\\x64\\x6b\\x81\\x40\\xb9\\x6c\\x65\\x21\\xf0\\x5a\\x7a\\x29\\x89\\x8c\\x9a\\x90\\xc5\\xc6\\x96\\xa6\\x1c\\x67\\xf2\\x66\\x06\\x2e\\x17\\x99\\xb9\\x2a\\x47\\x93\\xc8\\x01\\x44\\x60\\x1f\\x27\\xb4\\xe4\\x8e\\x8a\\x4c\\xd7\\x08\\xc2\\x73\\x95\\x17\\x05\\x28\\x07\\xc1\\xdd\\xce\\x81\\xcb\\xba\\xe2\\x60\\xf1\\xa7\\x01\\x9e\\xf4\\x46\\x2a\\xeb\\x88\\x44\\xd8\\xbc\\xec\\xac\\x98\\x93\\x79\\xdf\\xbd\\x4e\\x30\\x0f\\x0f\\x7f\\xa2\\xd4\\x3d\\xc0\\xbd\\xa2\\xbc\\x47\\x36\\xd1\\xed\\x6d\\xbf\\x7d\\x22\\xa3\\x1a\\x0e\\x18\\xe3\\xf5\\x54\\x3b\\x8c\\xd7\\x05\\xe2\\x0a\\x53\\xd3\\x8c\\x45\\xa8\\x38\\x81\\x3f\\x5c\\x17\\xb3\\xcb\\xe6\\x73\\x3e\\xb0\\xf0\\xe0\\x1d\\x4a\\xef\\x92\\x1e\\x52\\x3c\\x38\\xca\\xe1\\xb8\\xba\\xe0\\x8b\\x83\\x11\\x18\\xfa\\xc2\\x1a\\xdc\\x25\\x0c\\x29\\xd5\\x13\\x39\\x40\\x18\\x16\\xaa\\xef\\xc0\\xde\\xfc\\x3b\\x88\\xc5\\xca\\x6b\\xdc\\x7e\\x98\\x38\\x6f\\x4b\\x8c\\x7c\\x50\\x99\\xbc\\x6c\\xd5\\x15\\x68\\xa4\\xbf\\x6d\\xd5\\xca\\x52\\x3d\\x08\\x54\\x93\\xb7\\x2a\\x2d\\x6f\\x56\\xa6\\xd6\\x53\\xf5\\x52\\x1a\\x73\\xe6\\x0d\\x5b\\x2e\\x61\\xf8\\x95\\x3c\\xc0\\xf2\\x66\\x83\\xf0\\xc6\\x37\\x8e\\xe9\\xdc\\xa3\\x01\\xf0\\xdc\\x70\\xc0\\xa4\\x75\\xe4\\xd0\\x98\\xf5\\x99\\x70\\xd2\\xd8\\x84\\xee\\xac\\xcc\\x9c\\x12\\x3c\\xbb\\xa0\\x04\\x70\\x4d\\x06\\x4f\\x56\\x05\\xf6\\xe2\\xec\\x2c\\xca\\xd7\\x61\\xfb\\xee\\x0d\\x71\\x65\\xa8\\x6f\\x45\\x30\\xf1\\x43\\xf5\\x45\\x97\\xd9\\xbe\\x9a\\xdd\\x49\\x3b\\x3b\\x3c\\xa3\\x08\\x4f\\x5c\\x48\\x32\\x33\\x09\\x44\\xee\\x37\\x53\\x50\\x3a\\x60\\x2d\\xde\\x03\\x33\\x15\\xe0\\x99\\x73\\xdc\\x0b\\x94\\x2b\\x38\\x2f\\x65\\xd9\\xc6\\x20\\x43\\xfc\\x7d\\x8a\\x20\\x09\\x32\\xa4\\x80\\x8f\\x82\\x22\\xe2\\x01\\xc2\\x9c\\xbe\\xcb\\x2f\\xb0\\x14\\x5c\\x9e\\x51\\x48\\x17\\x32\\xb5\\x67\\xa3\\x1a\\xf4\\xfb\\x19\\x84\\xc8\\x6d\\xa9\\x75\\xd2\\x44\\x9f\\xec\\xaa\\x90\\xd7\\x83\\xd6\\xd5\\x69\\x96\\xaf\\x9b\\xdf\\xd4\\x53\\x42\\xcd\\x96\\x6f\\x7f\\x87\\xb7\\x71\\x53\\x17\\x69\\xfd\\xe2\\x2a\\xbd\\x19\\x43\\xca\\x89\\x02\\xcf\\x64\\xd9\\x4e\\x78\\x31\\x65\\x5c\\x05\\x46\\x2b\\x15\\x01\\xe0\\x24\\x8c\\xef\\xb5\\x3d\\x59\\x7c\\x86\\x1d\\xaa\\x1f\\x1d\\x84\\xb2\\x1b\\xf7\\x15\\xcd\\xd7\\xf1\\x63\\x6b\\x2a\\xd9\\x8f\\xec\\x5a\\x7d\\x67\\xff\\xdb\\xb6\\xe9\\xbf\\xb3\\xff\\x3d\\x53\\x4f\\x66\\xea\\x3b\\xf5\\x64\\x26\\x62\\xcd\\xc8\\x45\\x0f\\xc5\\x48\\x59\\x65\\xdb\\xe3\\x84\\xd8\\x4f\\x29\\x2c\\x53\\x39\\x38\\x57\\x80\\x1b\\xda\\x8f\\xb4\\x4e\\xab\\x22\\x1b\\xc2\\xb9\\x57\\x6c\\x03\\xc7\\x2b\\x33\\x58\\xb4\\x92\\xb2\\x76\\x23\\x54\\x60\\xc1\\xe1\\x9a\\xfd\\x02\\xdd\\xdb\\x57\\x10\\x75\\x01\\x40\\xf2\\x82\\x6b\\x55\\xcf\\x3f\\xbb\\x60\\x21\\xbd\\xda\\x89\\x16\\xef\\xd3\\x43\\xf5\\xfd\\x6c\\xa6\\x9e\\x8b\\x35\\x8f\\x77\\x23\\x89\\x25\\xd1\\x59\\x9d\\x12\\xed\\xbc\\xd3\\x42\\xb6\\x02\\x08\\xdc\\x47\\xaa\\xf4\\x5c\\xff\\x36\\x90\\xde\\xce\\x7f\\x4f\\xf2\\xdf\\x03\\xcb\\x34\\x6f\\x99\\xd1\\x37\\xe1\\xe4\\xce\\xd9\\xb5\\x1c\\xea\\x23\\x1d\\x51\\xf5\\x12\\x66\\xf0\\x9e\\x6a\\x74\\x99\\xf5\\xaf\\x2a\\xb9\\x27\\xbb\\x14\\x03\\x84\\x59\\x1c\\x40\\xe1\\x51\\x14\\xd4\\x80\\x97\\x9e\\xdf\\x1c\\x76\\xf3\\x03\\x7e\\xb1\\xe3\\x57\\x95\\x7a\\xd4\\x8a\\xb6\\x3e\\x7e\\xac\\x78\\x89\\xb8\\x8d\\x83\\x06\\xad\\x4f\\xed\\x6c\\x86\\x0e\\x16\\xc8\\x3e\\xcc\\x57\\xd3\\xb9\\x31\\x75\\xd6\\xd8\\xeb\\x6f\\x38\\x22\\x13\\x35\\xb2\\xc3\\x3d\\x62\\x98\\x07\\xc9\\x56\\x60\\xd9\\x6c\\x23\\x13\\x51\\x07\\xff\\x31\\x01\\xbb\\xaa\\x63\\x0c\\xd2\\xd1\\x92\\xd4\\x46\\x79\\xcc\\x93\\x00\\x24\\x2c\\x04\\xde\\x53\\x12\\x43\\x45\\xd4\\x77\\x7f\\xa5\\xa2\\x66\\x44\\x60\\x1f\\xa8\\x79\\x00\\xbd\\xcf\\x55\\x6c\\x79\\x71\\x0c\\x21\\x72\\x5f\\xcb\\xff\\x29\\x24\\x3f\\xd5\\x0d\\xc9\\x3f\\x1e\\x42\\x16\\x13\\x1a\\x78\\xe9\\xda\\x3d\\xcc\\x98\\xdd\\xb1\\x98\\xde\\x9f\\x9d\\x1b\\x17\\xf2\\x3c\\x2d\\xe7\\xba\\x18\\x4d\\x64\\x16\\x8e\\xd6\\x70\\x7c\\x53\\xce\\x09\\x76\\x05\\x6e\\x59\\xba\\xbd\\xd2\\xda\\x1e\\x0d\\x17\\xda\\x07\\x22\\x41\\xa1\\x70\\xad\\xd3\\x82\\xde\\x11\\xbc\\xe5\\xee\\xae\\xbd\\x75\\xa4\\x13\\x86\\xbf\\x60\\x15\\x2a\\xc8\\xd6\\xe1\\xfa\\x4a\\x32\\x37\\x57\\xc1\\xb4\\xa7\\x8d\\xf8\\x73\\xc3\\x86\\x76\\x4e\\xfb\\xe8\\x62\\x86\\xda\\x07\\xbf\\xee\\xa5\\xf6\\x00\\x0d\\x6a\\x26\\x2a\\xeb\\xf1\\xf4\\xe7\\x61\\x8d\\x8d\\x68\\x7a\\x52\\xbf\\x43\\x98\\x21\\x07\\x53\\x17\\xb8\\x1a\\xf9\\x06\\xb3\\xf5\\x84\\xd7\\xa7\\xee\\xee\\xaa\\x77\\x10\\x01\\xdb\\x72\\x51\\x57\\x4b\\xad\\x0b\\x0e\\x47\\x65\\xd9\\x3d\\xf0\\x7a\\x6e\\x0d\\xf8\\xd1\\xd9\\x11\\xc5\\x96\\x93\\x33\\x38\\x0d\\x9d\\x29\\x41\\xea\\xd5\\x37\\x50\\xc0\\x8c\\x41\\xa1\\x1b\\x38\\x3c\\xec\\xda\\xaf\\x36\\x95\\xe0\\xf0\\x7a\\x4a\\x7b\\x75\\xf4\\x1e\\x4e\\xbf\\xe3\\xee\\xf0\\x3f\\xa8\\x44\\x72\\x11\\xc0\\x15\\xaa\\x48\\x80\\x8c\\xe6\\xfb\\xfa\\x52\\xd7\\x7e\\xce\\xb9\\x6e\\xaf\\x77\\xea\\x9f\\x71\\xcf\\xb5\\xb1\\x34\\xda\\x83\\x34\\x1c\\x76\\xde\\xbe\\xc3\\x73\\x67\\xc6\\x6d\\xc9\\x42\\x45\\xa8\\x13\\x41\\x83\\x06\\x72\\x3f\\xea\\xdc\\x30\\x5f\\x80\\x1e\\x83\\x4d\\x6b\\x2a\\x44\\xc7\\x98\\x38\\xa1\\xef\\xd7\\x95\\x61\\x00\\x22\\xf6\\xe8\\xd2\\xb1\\x0e\\x07\\x3d\\xc5\\xd2\\xd1\\x3e\\x34\\xf0\\xaf\\x18\\x90\\xd5\\x0f\\x3b\\x0b\\x59\\x4d\\xb5\\xdf\\xb9\\x1b\\x03\\xa6\\x2c\\x26\\x00\\x25\\xe8\\xd7\\x35\\x18\\x78\\x16\\x5b\\x23\\x5a\\x1c\\x60\\xac\\x8d\\xc0\\x4b\\x38\\x2f\\x71\\x1e\\x62\\x9d\\x3f\\xce\\x6f\\x5e\\x56\\x22\\xfc\\xdf\\x50\\x97\\x20\\xc8\\xdf\\x74\\x9e\\x16\\xdd\\xc5\\xe9\\x0a\\x18\\xb8\\xfa\\x53\\x18\\xd2\\x24\\x4e\\x0e\\x17\\x95\\xfe\\xf4\\x10\\x8e\\x2d\\xcc\\xc0\\x86\\x07\\x43\\x0d\\x44\\xa1\\x62\\x7f\\xdb\\xce\\x8a\\x75\\xbd\\x21\\x2b\\x19\\x54\\xb9\\x9c\\xe4\\xd4\\xe4\\xa4\\x68\\xe0\\x74\\xb0\\xd5\\x71\\xbd\\x79\\x4b\\xdf\\x03\\x60\\xe4\\x45\\x60\\xdd\\xc6\\xf2\\x39\\xb0\\xea\\x5f\\xd8\\xd2\\x41\\x6a\\x83\\xbe\\x1b\\xe8\\x70\\x0c\\x1a\\x3c\\xf0\\x33\\x00\\x59\\xd3\\xd2\\x5c\\xa9\\x2a\\xad\\xd3\\x95\\x6e\\x75\\xcd\\x91\\xb5\\xd0\\xe3\\x63\\x04\\x61\\xb3\\x46\\x69\\x96\\x8d\\x76\\x29\\x42\\x67\\xb3\\x3e\\x6b\\xeb\\x74\\x6e\\x99\\x68\\x53\\xab\\x91\\x3d\\x75\\x46\\x04\\xe7\\x9e\\x9e\\x9f\\xdb\\x41\\xcc\\x2f\\x41\\x61\\x8a\\x08\\x26\\xbb\\xbb\\xa0\\xae\\xcb\\xe7\\xa0\\x3c\\x6d\\x74\\x8b\\x34\\x6d\\xad\\xe1\\x12\\x0b\\x12\\xdf\\x8c\\x82\\x78\\xed\\xc0\\xd9\\x88\\xbe\\x28\\x4d\\x32\\x51\\x00\\xca\\x68\\x0b\\x28\\xc0\\x91\\x3a\\xa5\\x90\\x40\\x98\\xc0\\xde\\x18\\x2d\\x59\\x04\\xed\\x18\\x08\\x9c\\xc8\\x95\\x67\\x65\\x32\\x4d\\xa3\\xd1\\x60\\xf4\\x0e\\x3c\\x79\\x10\\x32\\x2f\\x2d\\x4c\\xa9\\x85\\xa3\\x22\\x16\\x46\\xea\\xeb\\x89\\x2a\\x27\\x76\\x34\\x26\\xa2\\x27\\x42\\x16\\x25\\x10\\x6a\\x01\\x16\\xcd\\x05\\x8a\\xb3\\x03\\x28\\x2e\\x3d\\xf0\\x88\\x83\\xe6\\xa3\\x05\\x62\\x12\\x1a\\x55\\x19\\x46\\x3a\\x2d\\x0a\\x08\\x3d\\x68\\xc7\\x05\\x47\\xd3\\x39\\x4c\\x61\\x5f\\x32\\xa3\\x01\\xcd\\x09\\xbc\\x98\\x52\\x6e\\x32\\xac\\x5e\\x2e\\x64\\xa5\\xdb\\xa5\\xc9\\xa6\\xfe\\x1a\\xc3\\x6e\\x43\\x53\\x4c\\x2c\\x5a\\x85\\x35\\x04\\xa0\\x2a\\xac\\x86\\x03\\xd9\\x27\\x5c\\xf9\\xd1\\x9e\\x1c\\x47\\x24\\x21\\x35\\x5d\\xb0\\xbd\\xef\\x41\\x51\\x14\\xee\\xbb\\x01\\x70\\x5f\\x69\\x19\\xa3\\x75\\x7d\\x5c\\xa5\\x73\\x1d\\x01\\x21\\x3a\\xb7\\x17\\x56\\xd1\\x0a\\xdc\\x3e\\x40\\xec\\xb3\\xdf\\xa1\\x25\\x2f\\x16\\x2d\\x1a\\x74\\x46\\xaf\\xe8\\xce\\xee\\x63\\x47\\x52\\x45\\xe8\\x5b\\x18\\x78\\xd6\\xac\\xc0\\xe1\\x7c\\xf7\\x3f\\xfe\\x68\\xbe\\xdb\\x4d\\x3e\\xcd\\x4e\\x27\\xd1\\xa0\\xc2\\x18\\x8a\\xd5\\x8c\\xf1\\x63\\x8f\\x29\\x52\\xac\\x2b\\xc7\\x07\\x1b\\xf3\\xb9\\x1d\\x2c\\x2b\\x8d\\x77\\x69\\xda\\x28\\x9c\\x5f\\xff\\x52\\x08\\x8b\\x88\\xe6\\x6f\\xdc\\xa0\\xf5\\x97\\xef\\x01\\xa2\\xa7\\x85\\x5d\\x64\\x07\\x18\\x91\\xce\\xdb\\xc8\\x07\\xe5\\x63\\x58\\x1b\\x80\\xa8\\x17\\xaf\\x9f\\x21\\xb6\\x93\\x94\\x46\\x3e\\x0a\\x36\\x42\\x2c\\x0c\\x94\\x4b\\x2a\\x10\\x70\\xc8\\x6e\\xc2\\x57\\xc9\\xa3\\xd9\\x8a\\x9c\\x03\\x15\\xaa\\x0e\\x64\\xd7\\x07\\xd1\\x31\\xcb\\x9d\\xbd\\xa4\\x77\\x85\\x84\\xab\\x39\\x9a\\x8b\\x38\\xfe\\x15\\x37\\xcb\\xee\\xce\\xfe\\xb1\\x77\\x0b\\x74\\x5b\\x2e\\x6e\\xef\\x4c\\x37\\x30\\x9b\\x4c\\x16\\xef\\x29\\x74\\xe7\\x21\\x85\\x92\\x7d\\x03\\x97\\x5d\\xa2\\x41\\xf4\\xbd\\xcd\\x5d\\x9a\\x2b\\x9e\\x80\\x20\\x89\\x83\\xe4\\x9c\\x05\\x0b\\x3d\\xd9\\x12\\xf8\\x38\\x65\\xeb\\xf6\\xc9\\x68\\x34\\x61\\x37\\xb5\\xae\\x01\\x53\\xe8\\x2a\\xc8\\x72\\xef\\x40\\x55\\x24\\x40\\x1a\\x64\\x3b\\x76\\xdd\\x84\\x1d\\xa8\\xfc\\x40\\xed\\xec\\xe4\\x89\\xfa\\x62\\xeb\\xd9\\x3e\\xe4\\x2f\\x07\\x61\\x53\\xb6\\x0f\\xd5\\xe8\\x8f\\x76\\x74\\xe7\\x91\\x1a\\x4c\\x03\\x3a\\x28\\xdf\\x05\\x37\\xe1\\x3e\\x4b\\x43\\x3b\\x22\\xa8\\x7c\\x87\\xef\\x95\\x5b\\x72\\x3b\\x50\\xa6\\x47\\x87\\x11\\xb1\\x48\\x42\\x5c\\x5c\\xbc\\xe3\\x91\\x01\\x86\\xcf\\x47\\xee\\x69\\x78\\xdf\\xa3\\x9f\\x43\\x3b\\x72\\xb4\\x0d\\x9c\\x10\\x29\\x86\\xfa\\x29\\x57\\x20\\xa6\\x43\\xe5\\x67\\x60\\x9e\\xb5\\xbb\\xab\\x5e\\x13\\x74\\xe0\\x32\\x6d\\x27\\x0e\\x87\\x0f\\x78\\x30\\x75\\x95\\x36\\x8c\\x28\\x72\\xb5\\xcc\\x5b\\x0d\\xc3\\xa0\\x52\\x3c\\xf2\\x19\\x93\\x17\\xd5\\xc9\\x98\\x0f\\xef\\xaa\\x39\\x5c\\xc0\\x50\\x7a\\x40\\xb8\\x3c\\xba\\xcc\\x30\\x4d\\xda\\xe2\\x60\\x4e\\xc9\\x30\\x81\\xe7\\x18\\x6c\\x98\\x66\\x07\\xf0\\xe3\\xa9\\x03\\x12\\x0f\\x60\\x45\\xe1\\xa3\\x44\\x73\\x95\\x78\\x9a\\x61\\x8e\\x4f\\xf9\\x37\\x7b\\xa7\\x82\\xe6\\xf8\\xcb\\x2e\\x5e\\x96\\xed\\xc9\\xea\\x40\\x9b\\xa7\\x0c\\x9d\\xf3\\x74\\x60\\xa8\\x23\\xaf\\xca\\xca\\xa0\\xc5\\xd5\\xc6\\xe9\\x71\\x39\\x06\\x71\\x90\\xf3\\x6f\\xf6\\x26\\xa1\\xa0\\xc2\\xbe\\x80\\x3f\\x89\\xcf\\x0e\\x2a\\xca\\xae\\x6c\\xca\\xa9\\xf5\\x72\\xd2\\x3b\\x9d\\x69\\x66\\x84\\x52\\xf5\\x85\\x4d\\xfe\\xf7\\xd5\\x99\\x31\\x96\\xaa\\x81\\x31\\xc4\\x27\\xb4\\x69\\x3a\\xbd\\x23\\x9b\\xb4\\x89\\x6a\\x0c\\xdb\\xa5\\x4d\\x90\\x41\\xa8\\xd2\\xa6\\x85\\x55\\x78\\xa5\\xd5\\x45\\x69\\xae\\xd4\\x95\\x9d\\xb0\\x8b\\x1c\\x67\\xcf\\x61\\xf9\\x37\\xe4\\x20\\x5d\\xe5\\x3a\\x63\\x00\\x08\\x58\\x2c\\xab\\x34\\xd3\\xca\\xac\\x5b\\x65\\x16\\x53\\x1f\\x4f\\x17\\xd2\\xf1\\x82\\x14\\x81\\xcd\\x75\\xfb\\xce\\x7d\\x1e\\x97\\xfa\\xca\\x3f\\xe1\\x90\\x87\\x99\\xe5\\xf7\\xc0\\x4c\\x32\\xad\\xaa\\xe2\\xe6\\x44\\x5f\\xa3\\x67\\x1c\\x70\\x18\\x79\\xd9\\xe8\\x1a\\xf8\\xb9\\x4c\\x17\\x1a\\x7e\\x00\\x76\\x3f\\x22\\xbe\\xf6\\xf3\\x5f\\xfd\\x91\\xf7\\x19\\x33\\x0f\\x2f\\x2f\\xba\\x40\\xdb\\x07\\x81\\x7b\\xed\\x19\\x18\\x30\\x5b\\xc1\\xe2\\xd0\\x41\\x33\\xb0\\x81\\xb1\\x27\\xa3\\x21\\x50\\x3b\\x7b\\x84\\xd9\\x6f\\xa3\\x2d\\x0f\\x48\\x0c\\xfe\\x17\\xca\\x92\\x9a\\x22\\xc7\\x87\\x17\\xeb\\xd6\\x8c\\xb9\\x27\\xc9\\x44\\xad\\xd6\\x45\\x9b\\x7f\\xa4\\x4a\\x68\\x73\\xef\\xee\\x22\\x9b\\x5c\\xa5\\x96\\xdf\\x55\\x1f\\x88\\xaf\\x85\\xa8\\xf6\\x1f\\xc4\\x84\\xf1\\x90\\x28\\x53\\xe2\\x2e\\x55\\x80\\x14\\x17\\xc5\\xbd\\xc4\\x1e\\x3c\\x7e\\xac\\x3a\\x7b\\xcf\\x1e\\xe4\\xf2\\xc0\\x15\\x53\\xc3\\x01\\x84\\xe1\\x09\\x39\\x89\\xcf\\x26\\x2f\\xc7\\xa3\\x3f\\xca\\x11\\x20\\x8c\\xb9\\x2e\\x84\\x4a\\xc9\\x4e\\x15\\xff\\xb3\\x53\\x8e\\x17\\x00\\x07\\xd0\\xb5\\xc1\\x40\\x7c\\x3a\\x75\\xef\\xfb\\x8c\\x0b\\xfa\\x8b\\x3c\\x50\\xf9\\xf6\\x76\\x22\\x04\\xd8\\x5f\\x44\\xa1\\x78\\xcd\\x81\\xe9\\x75\\x73\\x31\\x8e\\xca\\xf9\\x94\\x9f\\x76\\xa0\\x90\\xef\\x42\\x78\\x66\\xc8\\x27\\xba\\xd0\\xed\\x30\\x86\\x16\\xe5\\x53\\xb0\\xdf\\x0b\\xc7\\xf7\\x3b\\xe8\\xf5\\x2a\\xad\\x7c\\x25\\xf2\\x4a\\x28\\x55\\x24\\x9f\\x8a\\xd3\\x03\\xf6\\xaa\\x0e\\xf1\\xb6\\x40\\xee\\x03\\xdb\\x05\\xd7\\x10\\x05\\xeb\\x70\\x71\\xd2\\x10\\x60\\x8d\\x96\\x0c\\x6a\\xe5\\xaf\\x70\\x97\\xc3\\xca\\xd2\\x97\\xba\\xbe\\x09\\x56\\x4f\\x44\\xc8\\xbb\\x7d\\x45\\xbf\\xed\\x6f\\xf6\\xd8\\x73\\xfb\\x9b\\xbd\\x9d\\x9d\\xa4\\x27\\xce\\x42\\x1f\\x0d\\x17\\x60\\x5f\\x75\\x00\\x44\\xdc\\x1a\\xf7\\xaa\\x35\\x63\\xcf\\x98\\xe2\\x2b\\x02\\xe0\\x0f\\x97\\x1d\\xd1\\x03\\x08\\xd4\\x46\\x3f\\x01\\x18\\x79\\x77\\x57\\xa1\\xb5\\x00\\xbe\\xe6\\x8b\\x10\\xb1\\x22\\x58\\xb9\\x25\\xf8\\xf6\\x27\\x89\\x64\\xe1\\x27\\x20\\xae\\x51\\x49\\x3d\\x32\\x66\\x47\\x0b\\x9c\\xd9\\x1e\\x30\\xfe\\x30\\xd7\\xb2\\x52\\xf7\\x59\\xd4\\x0a\\xbd\\xb3\\x75\\xb6\\x86\\x6a\\x74\\xf8\\xe8\\x01\\x13\\x4b\\x9f\\x13\\xb9\\xc0\\xe1\\x2d\\x78\\xb1\\x17\\x4d\\xeb\\x57\\x4a\\x12\\x3a\\xb4\\x07\\x4d\\x1d\\xdc\\xd2\\x7c\\x9a\\x7c\\xc5\\x4e\\xef\\x8e\\x9d\\xeb\\x8c\\x18\\xc0\\x00\\xd1\\x54\\xc9\\x55\\x49\\x3a\\x04\\xb0\\xe0\\x0a\\x17\\x2b\\x83\\xb9\\xd9\\x19\\x06\\x11\\x92\\x3a\\x54\\x5f\\x6c\\x99\\xfb\\x0a\\x03\\xd1\\xb4\\x66\\x5f\\xb5\\x86\\xcf\\x3c\\xb1\\x69\\x9e\\x8b\\x07\\xbb\\xb6\\xd4\\xff\\x94\\x7b\\x1e\\xc7\\xe5\\x54\\xed\\x7b\\x62\\x3c\\xa8\\xe0\\x62\\xdc\\x70\\x22\\xe7\\xb7\\xb7\\x4c\\x39\\x9f\\x33\\x5d\\x57\\xfb\\xfe\\x14\\x10\\x36\\x8f\\xe0\\x8e\\xbe\\x86\\xd0\\xaa\\x8e\\x79\\xc3\\xbe\\xaf\\xd2\\x0b\\xed\\x8c\\xd8\\x51\\x1a\\x20\\xfa\\x88\\xe3\\x89\\xa2\\xb3\\x77\\x29\\xab\\x03\\xd1\\x2f\\xfd\\x67\\x9d\\x66\\x23\\x44\\x9e\\x8a\\x72\\xdc\\x39\\xbe\\x14\\x67\\x45\\xac\\x3c\\x62\\xb1\\xdb\\x3a\\x3f\\x3f\\xd7\\xf5\\x6b\\x72\\xac\\x0f\\x8e\\x4e\\x62\\x6c\\x51\\xb2\\x8e\\x32\\xb9\\xbf\\x21\\x1c\\x30\\x9b\\xd9\\xf7\\x4c\\x10\\x60\\xa0\\xca\\xe9\\x72\\x89\\xda\\x9b\\x0a\\x6f\\x02\\xc4\\x85\\x0e\\x1c\\x92\\x87\\xfd\\xe3\\xc6\\xe7\\x70\\x37\\xec\\x2e\\xcc\\xde\\x18\\xa0\\xb7\\xfc\\xb1\\x0e\\x65\\x66\\x8c\\x0a\\x57\\x9d\\x99\\xb4\\xce\\x5e\\xa5\\x6d\\x0a\\xb1\\x44\\xc3\\x57\\xd3\\x73\\xdd\\xda\\xbf\\xe3\\x91\\xe5\\x20\\x46\\x89\\x3c\\x09\\xdd\\x89\\xa5\\xa7\\x91\\x22\\xc4\\x93\\x9a\\x9e\\xf0\\x8e\\x10\\xf2\\xd1\\x9b\\x7d\\x7b\\xff\\x43\\x81\\x55\\xb1\\x2e\\xdf\\x96\\x47\\x55\\x17\\x5c\\xd8\\x41\\x0b\\x76\\x79\\x1a\\x6c\\xd2\\x44\\xcd\\xf8\\xae\\x4a\\x6b\\xcd\\x5b\\x97\\x74\\x38\\xfd\\x10\\xd6\\x69\\xe3\\x64\\x7f\\x11\\xcc\\x44\\x5a\\xaa\\x6f\\x19\\x6c\\xe1\\x5b\\xbb\\xaa\\xec\\x25\\x54\\xc3\\xa9\\xe0\\x19\\xab\\x7c\\xb5\\xd2\\x59\\x9e\\xb6\\xba\\xb8\\xe1\\xa2\\x55\\xaa\\x6a\\x8d\\xb7\\x99\\x2d\\x3f\\x3a\\x3c\\x12\\x01\\x7c\\x03\\x00\\xd2\\x89\\x8f\\x02\\x0b\\xa6\\x27\\x9a\\x78\\x1c\\x8b\\xb3\\x03\\x35\\x37\\x74\\xde\\x08\\x9c\\x90\\x7b\\xce\\x9a\\xd3\\xad\\x9e\\xbb\\xc2\\x1c\\xf8\\x9e\\x19\\xa0\\x9e\\x8e\\xf3\\x90\\x31\\xfa\\x94\\xdb\\x3a\\x4e\\xc3\\x4b\\x45\\x74\\xcf\\x40\\xc1\\xb6\\x29\\xdb\\xbc\\x0c\\x8c\\x15\\x40\\x06\\xc7\\x31\\x77\\xdf\\x9b\\x4c\\xbf\\x68\\xc7\\xb1\\x3e\\xce\\x5f\\xa2\\x83\\x28\\x91\\x04\\xf1\\x67\\x32\\x1d\\x0e\\x68\\x0f\\x2c\\xcc\\x67\\xe4\\x82\\x3e\\xab\\xa7\\xaa\\x9b\\xde\\x31\\x42\\x9f\\x25\\x23\\xf4\\x25\\x20\\x18\\x0e\\x2d\\xa6\\x27\\xbb\\x5d\\x15\\x2f\\xda\\xf1\\x67\\x8a\\x48\\x2a\\xd9\\x33\\x25\\xdb\\x1d\\x09\\x43\\xa3\\x01\\x9a\\x38\\x91\\x95\\xc8\\x2d\\xaf\\x3c\\x8a\\x2c\\x52\\x03\\xee\\x2a\\x68\\x0e\\xee\\xac\\xe0\\x8c\\xef\\x7e\\x47\\x21\\x5b\\x8c\\x33\\x1c\\xcf\\x96\\x14\\x83\\xcd\\x26\\xe1\\xe5\\x30\\x49\\x82\\x51\\xfa\\xfa\\x0e\\x06\\x47\\x9d\\x17\\x17\\xc0\\xde\\xeb\\x92\\xf6\\xa0\\xf5\\x44\\xde\\xe3\\xe6\\xf6\\x21\\x06\\x9a\\xea\\xc6\\x92\\x1b\\xb8\\x52\\x86\\x66\\x8f\\x14\\xf4\\xe4\\xd3\\xe9\\x44\\x06\\xaf\\x19\\xc6\\x6c\\x1c\\xba\\x82\\xfb\\x0b\\xb8\\x90\\xc8\\x76\\xd2\\x7f\\xca\\xc5\\xce\\x08\\x52\\x73\\x6c\\x8c\\x2f\\xa8\\x88\\xde\\x17\\xd1\\x47\\x66\\x04\\x79\\xea\\xdf\\xb1\\x56\\x9b\\xa8\\x9b\\x88\\x29\\xe2\\x8a\\x22\\x57\\x3b\\x3b\\x73\\xf0\\x01\\x37\\x15\\xde\\xa9\\x5d\\x22\\xa7\\xf5\\xf6\\x6f\\x5c\\x58\\x07\\x01\\x9a\\xf7\\x05\\x99\\x06\\x0a\\x7d\\x02\\xb5\\xed\\xd3\\xdf\\x70\\x9c\\x89\\xaa\\xff\\x88\\x96\\x72\\xef\\xd3\\xf3\\x7c\\x3e\\x5e\\xe4\\xba\\xb0\\xf7\\x4c\\x87\\xc8\\x82\\xe3\\x04\\xaf\\xa7\\x8d\\x6e\\x5f\\xb4\\x6d\\x9d\\x9f\\xad\\x5b\\x8d\\x1e\\xa8\\x00\\xbc\\x0a\\x2a\\x8f\\x91\\x59\\x2c\\x60\\x03\\x0c\\x26\\x4d\\xab\\xbc\\x05\\x80\\xb1\\xfb\\x52\\x07\\x88\\x32\\x8f\\x1e\\x89\\xb6\\x84\\x47\\x27\\x58\\xfd\\x9f\\x90\\xd1\\xff\\x58\\x2e\\x12\\x7b\\x68\\x16\\xed\\x58\\x22\\xe4\\xc8\\xc0\\xa7\\x23\\xc6\\x6b\\xde\\x57\\xe9\\x59\\x63\\x8a\\x75\\xab\\x0f\\x14\\x62\\x8c\\xee\\xab\\x9d\\x3d\\xbd\\x3a\\x50\\x55\\x9a\\x65\\xe0\\xdf\\x31\\x3b\\x50\\x57\\x79\\xd6\\x2e\\xf7\\xd5\\x5e\\x75\\x7d\\xa0\\x96\\x1a\\xbd\\x2f\\x20\\x91\\x59\\xb7\\x76\\x2a\\xf6\\x55\\x69\\x4a\\x1f\\x5f\\x3c\\xcb\\x2f\\xb9\\xfe\\x2c\\xbf\\x1c\\x4d\\xd4\\xa7\\x56\\x9f\\xba\\xaa\\x2d\\x8f\\xbc\\x28\\xcc\\xd5\\x3e\\xb5\\xff\\x40\\xf9\\xc6\\x30\\xac\\xb4\\xab\\xf2\\x7b\\x59\\xe5\\xac\\xba\\x3e\\x18\\x25\\x0e\\xfe\\xcd\\xbb\\x3b\\xe4\\x8d\\xba\\xd0\\x55\\xeb\\x0a\\xd2\\x99\\x2a\\x75\\x5a\\x4b\\x19\\x58\\x6b\\x18\\xec\\xd6\\x43\\x51\\x2f\\xd2\\x79\\x8b\\xb2\\xac\\xbc\\xfd\\x96\\x84\\x2f\\xa8\\xd8\\xce\\xf0\\x82\\x74\\x99\\xeb\\x2b\\x44\\x96\\xb3\\x4c\\x11\\xb0\\xc0\\x52\\x1d\\xbd\\xbb\\x0b\\xce\\x17\\x60\\xe4\\x40\\xd5\\xa0\\xd0\\x04\\x32\\x4e\\xd5\\x51\\xa9\\xae\\xc8\\x56\\x1d\\xc4\\x32\\x57\\x75\\x5a\\x1d\\x9a\\xc5\\x82\\x98\\x00\\x67\\xca\\x89\\xd7\\xb0\\xc2\\x5c\\x4d\\xd5\\xb1\\xc0\\xf0\\x84\\xae\\x5d\\xe5\\x99\\x06\\x07\\x40\\x80\\x73\\x8f\\xc3\\x94\\xb6\\x9a\\xec\\xc6\\xaf\\xd8\\xb5\\x73\\x6f\\x36\\x9b\\x55\\xd7\\x23\\x19\\x5c\\x1b\\x10\\xee\\xe5\\xf2\\x02\\x1f\\x2c\\x5e\\x82\\x6c\\xd0\\xfa\\x76\\xa1\\xce\\xc0\\xb2\\x00\\x66\\x7c\\x67\\x47\\xe5\\x47\\xc7\\x6a\\x91\\xe6\\x45\\x83\\xc0\\x7d\\xba\\x54\\x17\\xfa\\x06\\x18\\x2e\\x35\\xce\\x9b\\x66\\xad\\xd5\\xff\\xd8\\x7b\\xf2\\x97\\x7f\\x65\\x56\\x2b\\x87\\x08\\x5e\\xbe\\x45\\x67\\x0c\\xce\\x3e\\xda\\xab\\xae\\x55\\x63\\x8a\\x3c\\x53\\x67\\x45\\x3a\\xbf\\xc0\\xb6\\xf5\\x6d\\x3d\\xe4\\x68\\x5d\\x6c\\xcf\\x4b\\x61\\xf4\\x5e\\xad\\xcf\\x8a\\x7c\\x5e\\xdc\\xb8\\xf8\\x18\\x2f\\x3e\\xbe\\x9d\\xaa\\x0f\\xa6\\x25\\xf7\\x18\\x54\\x73\\x1d\\x55\\xe3\\x45\\x02\\x81\\x4f\\x40\\xb5\\xf7\\xad\\xed\\xa8\\x5a\\x00\\xa8\\x53\\xe9\\x15\\xbb\\x13\\x55\\xe9\\x7a\\x61\\xea\\x15\\x7a\\x2d\\xe6\\x6d\\xa3\\xfe\\x57\\xbb\\xcc\\x9b\\xff\\xe5\\x55\\x9d\\xdf\\x4e\\xbd\\x5c\\x0e\\x80\\x09\\x5b\\x12\\x95\\xad\\x2a\\x7b\\x45\\x04\\x19\\x9d\\x59\\x30\\x36\\x20\\x56\\xde\\x4c\\xd5\\x7b\\xd3\\xb4\\x24\\x43\\xdd\\x72\\xba\\xb7\\x86\\xf0\\x25\\x33\\x06\\xec\\x7f\\x65\\xe6\\x80\\x33\\x0b\\xaa\\xc7\\xb4\\x68\\xec\\x0d\\xfd\\xb3\\x9e\\xb7\\xb4\\xea\\x00\\xe4\\xd5\\x6b\\x77\\xab\\xda\\xb4\\x06\\x61\\x69\\x2d\\x89\\x3f\\x4b\\xe7\\x17\\x57\\x69\\x9d\\x35\\x88\\xae\\xde\\xb2\\x5f\\x44\\x5a\\x82\\x08\\x6f\\x6e\\xca\\x4b\\x5d\\xe6\\xba\\x9c\\x6b\\xe9\\x81\\x9a\\x66\\xd9\\x6b\\x68\\xeb\\x7b\\x6c\\xd2\\x7f\\x01\\xc8\\x25\\xe2\\xa0\\x17\\x55\\x27\\xa9\\x7f\\xf9\\x25\\x06\\x89\\x74\\x7d\\x71\\x66\\x15\\x02\\x9d\\x71\\x5f\\xa4\\x14\\xfe\\x6e\\x01\\xf2\\x27\\xe2\\x5d\\xf9\\x48\\xaf\\x81\\xf3\\x61\\x14\\xfb\\x18\\xe3\\xc1\\x35\\xba\\x45\\x80\\x44\\x51\\x0e\\x76\\x86\\xdc\\xea\\x43\\x39\\xb4\\x77\\x8b\\x95\\xfe\\xb2\\xe0\\x7a\\xef\\x1d\\x4e\\xc9\\x79\\x53\\x4a\\xa6\\xa3\\x2f\\x96\\x89\\x44\\x8f\\x79\\xe7\\x56\\xa2\\x1e\\x1d\\x2a\\x04\\x77\\xec\\x51\\x97\\x75\\xb2\\x2b\\xf6\\x69\\x0d\\x2b\\xd8\\xe0\\x2b\\x94\\x9b\\x32\\xe0\\x6d\\x4c\\xe0\\x59\\x33\\xe9\\x71\\x21\\xb2\\x35\\x25\\xf4\\x55\\x22\\x0c\\xdc\\x85\\xb6\\x4a\\x98\\x60\\x84\\x19\\xf0\\x72\\x3b\\x42\\x6f\\x28\\x2e\\x94\\x44\\x53\\x34\\xe2\\xe7\\x83\\x23\\x9e\\xa8\\x2f\\xc2\\xad\\x6c\\x1a\\x75\\x9a\\x8c\\x52\\xec\\x45\\xce\\xcc\\xe5\\xac\\x87\\xb9\\x32\\x33\\xe7\\x9a\\x9c\\xc3\\xa7\\x48\\xbd\\x4a\\xab\\x09\\x9d\\x64\\xc2\\xe0\\xdb\\xb9\\x94\\x4e\\xc9\\x95\\xf4\\x93\\x8b\\x24\\x33\\xb2\\xec\\x06\\x5c\\xe5\\xd7\\x25\\x48\\x8b\\x47\\xa7\\x63\\x0f\\x26\\xb6\\x4a\\xab\\xc4\\x75\\x0f\\xaf\\x66\\x2b\\x73\\xa9\\xfb\\xaa\\x0d\\x17\\x12\\xb8\\xa6\\x1e\\xf6\\xd4\\x1c\\xb3\\xf7\\x82\\x5d\\xb3\\x79\\x02\\xe7\\xa9\\x88\\xa1\\xb7\\xdf\\x3f\\xe5\\xb0\\xb8\\x56\\x69\\x65\\x6f\\x33\\xf4\\x66\\x5a\\x02\\x7c\\x2f\\xbc\\x0e\\x59\\x78\\x28\\xb2\\xa9\\x80\\x17\\xce\\x27\\x6a\\x4f\\x32\\xe8\\xe1\\x2d\\x33\\x62\\xd3\\xfd\\x10\\x93\\x47\\xec\\xbe\\xa0\\xb1\\xdc\\xeb\\xa6\\xd2\\xf3\\xc8\\x99\\x3d\\xba\\x1b\\xd9\\x14\\xd3\\xd6\\x5c\\xe8\\x52\\x3d\\x87\\x07\\x25\\xb7\\x39\\xdf\\x9b\\xc6\\xe1\\x66\\xb3\\xe9\\x92\\xf8\\x22\\x80\\x41\\xc2\\xec\\x48\\xc2\\x31\\x13\\x83\\xfb\\x51\\x2b\\x1b\\xb5\\x4a\\x6f\\x80\\x5e\\x9f\\x69\\xb4\\x5e\\x58\\xac\\x8b\\xe9\\xc8\\x2f\\x6a\\xbc\\x14\\x1d\\x1b\\x7b\\x31\\x1a\\x8b\\xd9\\x71\\x0e\\xc1\\x7d\\xd2\\xa2\\x2f\\xb6\\x05\\xfb\\x0a\\xdd\\xc4\\xed\\xff\\xc7\\x95\\x9e\\xef\\x2b\\xee\\x7e\\xfa\\xf7\\xb5\\xde\\x77\\xa4\\x43\\x38\\x92\\xe1\\xa7\\x7e\\x01\\x54\\x55\\xe7\\xa6\\xce\\xdb\\x9b\\x7d\\x47\\x3c\\x64\\x4e\\xfe\\x0a\\xae\\x28\\xb3\\xbb\\xde\\x22\\xbc\\xc4\\x81\\x1a\\x2f\\xcd\\x88\\xf0\\x8d\\x2b\\xc7\\x09\\x90\\x83\\xcd\\x40\\x0e\\xce\\x04\\xdc\\x29\\x21\\x18\\xd8\\x1b\\x0f\\x82\\x16\\x89\\x85\\x7f\\xcf\\x62\\x08\\xd7\\x40\\x17\\xd4\\x80\\xbf\\xf0\\x68\\x87\\x3b\\x84\\xdf\\x6e\\xd8\\x22\\x9c\\xa4\\x0f\\x7b\\x5e\\x05\\xc1\\xbf\\x38\\xa5\\xdd\\x1e\\x3c\\x65\\x2e\\x19\\x85\\xce\\x02\\x79\\xbe\\x5d\\x94\\xb7\\xb7\\x8a\\x14\\xeb\\xf0\\x28\\x90\\x03\\x40\\xba\\xbf\\xae\\xdd\\x0e\\x0b\\x7b\\xa9\\x84\\xa3\\xf9\\xd0\\x36\\x23\\x17\\xda\\xfe\\x11\\xef\\x8e\\xfa\\x37\\x3d\\x7b\\xd4\\x6f\\xcf\\x50\\x53\\x91\\xd0\\x2e\\xf5\\x97\\xd7\\xbe\\x89\\x29\\x27\\x2a\\xcb\\xeb\\xae\\xe5\\x12\\x0f\\x04\\x43\\x26\\xe4\\x10\\xff\\x4a\\x76\\x3c\\xfa\\x12\\x19\\x1b\\x70\\x7e\\x08\\x67\\xe2\\x6d\\x9c\\x30\\xba\\x89\\xdc\\xd1\\x52\\x2c\\x64\\x29\\x2e\\x5e\\xa5\\x2d\\xc9\\x95\\x26\\x47\\xca\\x1b\\x6a\\x60\\x11\\xf6\\xff\\xe7\\x64\\x2c\\xb5\\x2f\\xcc\\x28\\x7a\\x43\\x57\\xe6\\x0d\\xdc\\xdd\\xf9\\x88\\x98\\xa8\\x32\\xf1\\x16\\x00\\xee\\x13\\x98\\x71\\x75\\x06\\xe3\\x2e\\x58\\xe8\\xa4\\xc7\\x67\\xad\\x48\\xdf\\x88\\x2e\\xcd\\xd5\\x43\\x57\\xba\\xbb\\xa4\\x73\\xcb\\xc4\\xed\\x9a\\xe3\\xa5\\x42\\xc8\\xea\\xa1\\x15\\x3f\\x7c\\x71\\x57\\x7d\\xb1\\x28\\x45\\x58\\x03\\x19\\xd3\\xb3\\xab\\x45\\x51\\x5f\\xab\\x91\\xf1\\x59\\x38\\x3a\\xb7\\x33\\x1e\\xd1\\x65\\x46\\x7a\\x14\\x0e\\xf6\\xe4\\x26\\x34\\x0c\\x08\\x4b\\x7b\\x41\\x06\\x85\\x25\\xb5\\x87\\xda\\x51\\x63\\xd4\\x75\\x70\\xdc\\xa2\\x44\\x6d\\xab\\x3d\\x51\\x54\\x20\\x10\\x83\\x26\\xa0\\x50\\x0c\\x22\\xc4\\x6e\\x6f\\x7f\\x4e\\x02\\x1a\\xd9\\x99\\xfa\\x6f\\xf6\\x26\\xea\\x33\\xd8\\xf0\\xc9\\x48\\xac\\x0e\\xd0\\xf9\\x67\\x39\\x4f\\xdf\\xec\\x45\\x33\\x25\\x85\\x62\\x0b\\x35\\x66\\x95\\x11\\x07\\xaf\\x0a\\x65\\x96\\x87\\x87\\xbe\\x40\\xa1\\x23\\x74\\xef\\x2c\\x45\\xc2\\x81\\x46\\xc9\\xe4\\x2c\\x6e\\x79\\x9f\\xad\\x81\\x6f\\xd6\\x44\\xe5\\xd2\\xe0\\x00\\xd5\\x25\\x41\\xe1\\x76\\xca\\x28\\x54\\x65\\x66\\x4a\\xb2\\x52\\x97\\xbd\\x8e\\x83\\x60\\x0b\\xe9\\xe7\\x33\\x25\\xa2\\x57\\x53\\x8f\\xbb\\x03\\xd9\\x11\\x8f\\x81\\x69\\xa4\\x34\\x74\\xf7\\x93\\x1f\\xa5\\x8d\\x86\\x32\\xb7\\xc3\\x15\\x8d\\xb9\\x8b\\x3b\\x0f\\x56\\xd4\\x3d\\x9a\\x0b\\xe9\\x44\\x1e\\x92\\x82\\x88\\x30\\xee\\xee\\xaa\\x37\\xba\\x25\\x97\\xe4\\x2a\\xad\\x1b\\x30\\x9c\\xb7\\xdc\\x08\\x3a\\xf1\\xa2\\xbd\\xab\\x13\\x8d\\x4f\\xd5\\x2f\\x8d\\x65\\x18\\xe0\\xeb\\x32\\x9d\\x5f\\x34\\x5c\\x0a\\x5c\\x32\\xaf\\xd2\\xb2\\x25\\x85\\x6a\\xa5\\xe7\\xad\\xb7\\xc3\\x44\\x33\\xc8\\x71\\x93\\xde\\xe0\\x25\\x8d\\xee\\x89\\x96\\xe5\\x9d\\x32\\x53\\x7b\\x62\\xab\\x7d\\x21\\xcc\\xb4\\xc9\\xa7\\xa5\\xd6\\xf3\\xbc\\x11\\x14\\x99\\xb9\\xb2\\xf4\\x42\\x43\\x16\\xa2\\x5b\\x41\\xe2\\x98\\xdf\\xb6\\x73\\x03\\x89\\xe5\\x6d\\x89\\xc2\\x2b\\x3f\\xb0\\x7c\\x16\\xd5\\x25\\x2e\\x8b\\x9c\\x4f\\x51\\x17\\x64\\x3a\\xb9\\xa9\\x74\\xdc\\x17\\x5f\\x05\\x79\\x0f\\x91\\x9b\\x8b\\x27\\xc9\\xc2\\xdd\\x17\\xc9\\xc8\\x4d\\x01\\x5b\\x8e\\x7a\\x80\\xc8\\x38\\xd4\\x1e\\x16\\xf2\\x06\\xb9\\x49\\x1a\\x2f\\xca\\x20\\xa0\\xfe\\x43\\x35\\x9b\\x50\\x9c\\xd1\\x43\\x35\\xc6\\x82\\x85\\x0a\\x21\\x51\\xbb\\xea\\xc9\\x04\\x63\\x47\\x61\\xe4\\x6c\\x49\\xbb\\x6f\\x2a\\x79\\xd1\\x9a\\x3b\\x43\\x05\\x45\\x37\\x55\\x2c\\xee\\xd3\\x93\\xd3\\x50\\xd9\\x4a\\xa6\\x6d\\x5d\\xb8\\xf6\\x55\\x6e\\x97\\xfd\\x98\\x9a\\xb6\\x8d\\xed\\x4a\\xd4\\xb3\\x67\\x82\\x9c\\x01\\x44\\x85\\x4d\\xf8\\x9c\\x8b\\xb7\\x0f\\xdf\\xa9\\x27\\xa0\\x8d\\x80\\xf8\\x58\\xea\\xd9\\xa1\\x42\\xd7\\x33\\xee\\x98\\x4d\\xd2\\x13\\x44\\x3a\\x2a\\x60\\xdb\\x16\\xf0\\x94\\xb2\\xba\\xf1\\xb1\\x5f\\xb7\\xd5\\x5e\\xf7\\xac\\x0d\\x3b\\xe9\\x0b\\x79\\x72\\x7a\\x10\\x21\\xc7\\xdf\\x05\\x1e\\xe6\\x73\\x50\\x13\\x42\\xee\\xe7\\xf0\\xc7\\xa9\\x19\\x46\\x8c\\x8a\\x33\\x4a\\x20\\x8c\\x5a\\xb8\\xf0\\x6c\\xbe\\xa7\\x6a\\x46\\x99\\xd4\\x3e\\x16\\x74\\x08\\x6f\\xc0\\x48\\x77\\x1f\\x4b\\x73\\xf2\\x7b\\xfb\\x7d\\x87\\x59\\x2a\\xb1\\x10\\x51\\xe1\\x32\\xb4\\x06\\xc5\\x1d\\xc4\\x9d\\xbc\\x0e\\xd5\\x86\\x4e\\x46\\x32\\xa3\\x2d\\x75\\x6d\\xcb\\x12\\xdc\\x33\\x64\\xbc\\x0b\\xdb\\x1d\\xe0\\x38\\x51\\x96\\x31\\xde\\x08\\xa0\\x02\\xbf\\xc5\\xa1\\x21\\xc8\\xef\\x25\\xbe\\x4e\\xd1\\xf2\\x9f\\x40\\x42\\x12\\x53\\x02\\x08\\xe4\\xd4\\xd9\\xa6\\x54\\x34\\x66\\x69\\x44\\x4a\\x76\\xde\\xed\\x94\\xdb\\x6c\\x2e\\x78\\x33\\xbb\\xc2\\xa1\\x06\\x3e\\x49\\xe1\\xc6\\x23\\x12\\xe9\\xc4\\x52\\x87\\x38\\xf4\\x14\\x66\\x96\\x8b\\x04\\x10\\x81\\x0e\\x59\\x4e\\xf4\\xc9\\x66\\x38\\x9d\\x04\\xf3\\xe2\\x35\\x67\\x82\\x3a\\x08\\xae\\xd4\\xa6\\xc5\\x7c\\x11\\x9e\\x57\\xb0\\x95\\x6c\\x05\\x9f\\x7c\\xd2\\xd3\\x04\\x76\\xe7\\xba\\xcc\\x50\\x99\\xd0\\xfd\\xec\\xd7\\x74\\xa0\\x8e\\xc2\\xef\\xb2\\xf4\\xde\\x7b\\xba\\x4b\\x39\\xc4\\x96\\x51\\x2c\\xdf\\xb4\\xa0\\xce\\x8b\\xca\\x3f\\xe5\\xa7\\xa7\\xd1\\x19\\x48\\x60\\x94\\xa2\\xc1\\xf0\\xa6\\xe7\\x74\\x8b\\x94\\x67\\x38\\xae\\x96\\x18\\x5b\\x06\\xc3\\x55\\x24\\xde\\x47\\x7d\\xe9\\x8e\\x48\\x90\\xb6\\x5b\\x8d\\x4f\\x07\\xb1\\x65\\xee\\x2d\\x0d\\x53\\x45\\xfc\\xf9\\x90\\x79\\xa8\\xcd\\x36\\xfd\\xcf\\x73\\x00\\x04\\x1a\\x32\\x0e\\x95\\x57\\x3a\\x99\\x5e\\x9a\\x86\\xfa\\x50\\xc8\\x55\\xad\\x33\\xb1\\x29\\x2d\\x8f\\xf0\\xf8\\xb1\\x62\\xc2\\x04\\x2d\\x06\\x4b\\xcf\\x29\\x0c\\x30\\x46\\xc8\\x10\\x93\\x11\\xcc\\x81\\x4b\\x16\\x5f\\x37\\xe4\\x6a\\x8f\\xb7\\xe0\\xb1\\xb3\\xdc\\xbd\\xff\\x24\\xf6\\x96\\x8b\\x4c\\xa1\\xe8\\x03\\x6b\\xe3\\x8a\\xbc\\xf2\\xe6\\x41\\xce\\xe0\\xd5\\xd2\\xc8\\xe7\\xde\\x4c\\x5e\\x6d\\xa3\\x09\\x63\\xfe\\xa7\\xe5\\xa1\\xf7\\xf6\\x95\\x64\\xc1\\x39\\x8a\\x54\\xec\\xbe\\x81\\x67\\xac\\x57\\xcd\\x71\\xdb\\xa6\\xec\\xbb\\xe2\\x3b\\x85\\x8a\\x8d\\x97\\xe0\\x07\\x2c\\xfa\\x04\\x0c\\x38\\x6e\\xe5\\x8e\\xeb\\xf0\\xc4\\x5d\\x49\\x82\\x4b\\x8f\\x65\\xeb\\xd2\\xfa\\x66\\x2c\\x77\\x39\\x5d\\x25\\xfc\\xed\\x11\\x79\\x07\\xcf\\x33\\x76\\x0d\\x9c\\xf8\\xa2\\xce\\x39\\x47\\x68\\x06\\x3b\\xf2\\xb9\\xbb\\x9c\\x07\\x22\\x8f\\xc6\\xe7\\x37\\xa6\\xc6\\x82\\x9e\\x07\\x37\\x20\\xb5\\x2f\\x6e\\x3f\\xf1\\xc4\\xcb\\x11\\x91\\xdc\\x19\\x90\\xb5\\xdb\\x5b\\xf6\\x8c\\x0e\\x47\\x71\\x99\\x76\\xc7\\xd0\\xe5\\xea\\x90\\x7d\\x9f\\x9c\\x2a\\xe8\\x67\\xa6\\xee\\xa9\\xd3\\xf9\\x6e\\x8b\\x3a\\xf1\\x65\\x5c\\x2d\\xbe\\xa5\\x70\\x99\\x50\\xf1\\xf1\\x4d\\xd3\\xea\\x15\\xd7\\x2e\\x32\\xc5\\xb5\\xf9\\x36\\x7b\\x57\\x71\\x99\\x8b\\xa0\\x1b\\xe8\\xa1\\x65\\xff\\x59\\x6e\\xa4\\x8c\\xe1\\x27\\x9a\\x89\\x2a\\xbf\\xb8\\x99\\xf8\\x76\\xb0\\x99\\x5f\\x5a\\x53\\xed\\x2b\\xce\\x6a\\xeb\\xdd\\x57\\xb3\\xbb\\x4e\\xb3\\x1d\\x5e\\x84\\x6b\\x7a\\x10\\x48\\xd0\\x0f\\x31\\x55\\xb7\\x1d\\xaa\\x19\\x7c\\xa8\\xc4\\x40\\x30\\x8c\\x89\\x5f\\x90\\x14\\x26\\xda\\xfb\\x48\\x92\\xf2\\x72\\x5e\\xac\\x33\\x8d\\x4e\\xfc\\x11\\xaf\\x82\\x77\\x25\\xc2\\xd2\\xb3\\x99\\x8e\\xce\\x3e\\x77\\x4f\\x43\\x26\\x02\\x7d\\xa2\\x18\\xb6\\xd3\\x96\\xdb\\x8e\\x29\\x84\\xdf\\x87\\x44\\x26\\x02\\xca\\x49\\x61\\xe2\\xc3\\x5c\\xec\\x46\\xd5\\x2d\\xae\\x87\\x05\\xa5\\xab\\xa3\\xad\\x5e\\xe4\\xb3\\x8f\\x07\\xd4\\x33\\x81\\xf3\\xc1\\xd3\\x7e\\x74\\xf6\\x59\\x78\\x81\\xf9\\x61\\x97\\x04\\x2c\\x8a\\x23\\x2f\\x33\\x8a\\xcb\\x64\\xb4\\x41\\xf3\\xb2\\x35\\xdd\\xd5\\x41\\x39\\x79\\x99\\xcc\\x86\\x57\\x48\\x3c\\x53\\x00\\x07\\x54\\x66\\xb0\\x70\\x94\\x97\\xdc\\x8d\\x6d\\xcf\\x9e\\xfb\\xd1\\xa1\\xe5\\xb2\\x13\\x2c\\x85\\x31\\x55\\x9b\\x00\\x4f\\x1f\\x2c\\x7d\\xc2\\xe4\\x3a\\xd1\\xd7\\xdd\\xf5\\x2f\\x11\\x52\\xdc\\xf7\\xb1\\x5c\\x87\\x89\\xf3\\xe2\\xc5\\x62\\xec\\xc6\\xfb\\x15\\x95\\xe6\\x7d\\xa5\\xcc\\xf9\\x73\\xb7\\x10\\x3e\\xbb\\xfe\\x46\\xbe\\xe3\\xfd\\x05\\x90\\x75\\x66\\x67\\x2b\\xbc\\xf1\\xe6\\x9a\\xf1\\xa7\\x13\\x73\\x27\\xf4\\x08\\x38\\x98\\x31\\xf9\\x2b\\x61\\x67\\xa0\\x56\\x7d\\xa2\\x2e\\xb5\\x3d\\x54\\x96\\xa6\\xce\\xff\\x8c\\xce\\xc9\\x5e\\x38\\xd4\\xf0\\xbe\\xd9\\x25\\xcb\\xfd\\x54\\x53\\xde\\x1f\\x11\\x46\\xc4\\xde\\x09\\x51\\x21\\x84\\x8b\\x82\\x5e\\xd9\\x9f\\x94\\xb6\\x44\\x15\\xc4\\x4d\\xa1\\xa7\\x2e\\xd4\\xf5\\xa1\\x1a\\xb1\\xf1\\xc4\\x28\\x48\\x16\\x28\\xdb\\xe7\\xab\\x9d\\xfc\\xbc\\x34\\xb5\\xde\\x41\\x0f\\xfe\\xd1\\x44\\x8d\\xec\\x66\\x18\\x05\\xf2\\xf8\\x50\\x87\\xd9\\xe8\\xf6\\x97\\x92\\x23\\x1d\\x8d\\x6d\\xa1\\x9c\\x38\\x44\\x76\\x06\\xcc\\xa4\\xec\\xe5\\x32\\x2f\\xb2\\x20\\x15\\x30\\x95\\x9a\\x8f\\xc7\\xcb\\x88\\x50\\xf8\\x3e\\x7b\\x42\\x28\\x58\\x3e\\x97\\x31\\x3d\\x33\\x97\\x7a\\x64\\x17\\xbf\\x7b\\x55\\xea\\xb4\\x4b\\x74\\x2e\\x1b\\x72\\xda\\x74\\xf2\\xc0\\x2e\\x1c\\xac\\x07\\x5c\\x98\\xc4\\x1b\\x26\\xf1\\xca\\x8d\\xe5\\x60\\x49\\xd8\\x5f\\x2c\\x07\\x96\\xf1\\x24\\x00\\xd0\\x03\\xcf\\x1d\\xf9\\xd9\\x73\\x75\\x00\\x5e\\x8c\\x88\\x79\\xad\\x71\\x16\\x22\\x79\\x79\\xae\\xa0\\x7f\\x6a\\x9c\\xa3\\xd0\\x3f\\x5f\\xe4\\x3a\\x43\\xbf\\x61\\x8e\\x70\\x7a\\x80\\x58\\x43\\x57\\x79\\xe3\\x51\\xf7\\xa2\\x32\\xce\\x74\\x01\\x9e\\x75\\x7e\\xdc\\xdd\\xf8\\x7d\\x0b\\xe5\\x7f\\x6b\\xc7\\xcf\\xaf\\x2f\\xb5\\x8d\\x6b\\xc4\\xc0\\x01\\x82\\x23\\xa2\\x9e\\xd1\\x10\\x02\\xb3\\x4a\\xf3\\xa2\\x9e\\x75\\x13\\x86\\xac\\x6a\\x30\\x8d\\x6a\\xa7\\xa7\\xdc\\x1e\\x42\\x7d\\x4f\\x4b\\x9e\\x1e\\x72\\x53\\x06\\xaa\\xa2\\xbc\\x77\\xe1\\xf9\\x61\\xb7\\x4c\\x50\\x1c\\x42\\x89\\x3f\\xa3\\x09\\x0d\\x0b\\xa3\\x0d\\x46\\x73\\xbd\\xd3\\xcd\\x16\\xf3\\xdb\\x62\\xef\\x61\\x43\\x80\\x0c\\x43\\x1c\\xa0\\x6e\\x0a\\x2a\\x5d\\xbc\\xa9\\x89\\x67\\x18\\x8d\\xc4\\xee\\x00\\x12\\x03\\x4b\\x1a\\x3e\\x07\\x6b\\x9a\\x8a\\x18\\x5c\\x7a\\x3d\\x6d\\x76\\x79\\xfb\\xea\\x9d\\xf9\\x86\\x76\\x8e\\xb3\\xb0\\x2d\\xb6\\x66\\xe0\\x63\\xa9\\x09\\xb3\\xbe\\x29\\xf4\\xc9\\x57\\x79\\x96\\x15\\x5a\\x66\\x18\\xde\\x2f\\x3d\\x8d\\x06\\xa9\\x98\\xa8\\xa1\\x3b\\x8a\\x34\\xb1\\x62\\xa4\\xa5\\xca\\x05\\x89\\xb6\\x54\\x52\\xe3\\x9b\\xb7\\x65\\x6b\\xec\\x59\\xc2\\x5c\\x19\\x1e\\xb3\\xc8\\x06\\xc2\\xd1\\xdb\\x9a\\x6a\\x82\\xf1\\x82\\xf7\\xd5\\xc0\\xda\\x99\\x38\\x6b\\x34\\x9c\\xec\\xce\\x52\\x75\\xb6\\xd2\\x7c\\xc2\\x90\\xf1\\xf2\\x11\\x03\\x3c\\x08\\xbd\\x8d\\x07\\x7d\\x98\\x74\\x92\\x02\\xb6\\x43\\x9c\\x16\\x01\\x1f\\xba\\x89\\x7f\\xa9\\xf6\\x19\\x7c\\x22\\xfa\\xe8\\x00\\xf8\\x82\\xa2\\x3c\\xcc\\x24\\x35\\x52\\x5f\\xeb\\xf9\\x4b\\xb3\\x5a\\xa5\\x65\\x26\\x79\\xf2\\x55\\xe4\\x54\\x35\\xc7\\x24\\x1d\\x81\\x8b\\x4d\\x28\\xc7\\xdb\\x71\\xde\\x98\\xfc\\xd3\\x7c\\x95\\x9d\\x22\\x2a\\x06\\xb9\\x41\\x3b\\xc0\\xd6\\xce\\x38\\xb1\\xfd\\x78\\x9f\\x7a\\x0b\\xdc\\xc3\\x7b\\xfc\\x0a\\x70\\x3e\\xf1\\xab\\x13\\xb1\\x2f\\xf2\\x32\\xfb\\x68\\x9a\\x9f\\x44\\x7f\\x50\\x25\\x91\\xae\\xcc\\xba\\x6c\\x27\\x6a\\x0d\\x61\\x59\\x2f\\x29\\x6a\\xdd\\x43\\x05\\x51\\xa8\\x02\\xdc\\x13\\x83\\x82\\xe5\\xa9\\xa7\\x28\\x9b\\xc5\\xef\\x3b\\x7b\\x07\\x54\\x8f\\x7d\\xa0\\x5f\\xa1\\x94\\xb2\\xee\\xbd\\x10\\xda\\x26\\x26\\x1d\\xf1\\x84\\x17\\xf1\\x60\\x51\\x1d\\xf5\\x32\\x16\\xc7\\x5d\\x0e\\x94\\x32\\xf3\\x75\\x4d\\xaa\\xc5\\xa8\\xc3\\x1d\\x21\\xc5\\x32\\x6f\\x8f\\x73\\x94\\x37\\x46\\x02\\xd6\\xce\\x3d\\x33\\x98\\xb9\\x95\\xb9\\xd4\\x3f\\xf5\\xcd\\x97\\xab\\xf5\\x21\\x83\\x0b\\x63\\x10\\xa1\\x6d\\x36\\x3f\\xde\\x08\\xe4\\x43\\xb8\\xf9\\xc6\\x12\\xb6\\x08\\x08\\x1a\\xfd\\x2a\\x09\\x45\\x99\\x54\\x37\\x58\\xa8\\x7d\\x19\\xaa\\x1c\\x03\\xea\\xcf\\xc2\\x93\\xbe\\x21\\xf4\\xb7\\xfe\\x60\\x24\\x29\\x09\\x2b\\x93\\xa3\\x30\\x88\\x49\\x44\\x23\\xfb\\x6a\\xb3\\x8b\\x05\\x65\\xce\\xf7\\x5f\\xf2\\xef\\x50\\x71\\x66\\x07\\xdb\\x1b\\x40\\x10\\xa3\\x5d\\xe8\\xf6\\xab\\x66\\x00\\x1d\\x1e\\xa4\\x10\\x64\\xd2\\x2f\\xf1\\x61\\x4f\\x4a\\x80\\xf8\\x5e\\xe6\\xe5\\x39\\x4e\\x8d\\xce\\xc6\\xc1\\x7e\\xb7\\x85\\x90\\x72\\xd0\\x6b\\x06\\x47\\xce\\xb6\\x77\\xb4\\x8d\\x4d\\x1c\\x85\\x92\\x0e\\x59\\x00\\x7c\\xff\\xa0\\xd3\\x3a\\xd4\\x2c\\x4a\\xf7\\x95\\xce\\xf4\\x93\\xc9\\x86\\x65\\x85\\xe4\\xe2\\xdf\\x34\\x65\\x2e\\xa2\\x03\\xff\\xeb\\x4c\\x04\\x5d\\x27\\xa0\\x54\\xbc\\x3e\\xf8\\xa2\\xee\\xd4\\x3e\\x7f\\x97\\xe5\\xdb\\x44\\x90\\x5e\\x08\\x46\\x93\\x58\\xe3\\x47\\xcd\\xfb\\xdb\\x3d\\xe4\\xe8\\xdc\\xa4\\x05\\x22\\x49\\x7c\\x25\\x41\\x9a\\xa8\\x6b\\x7b\\x69\\x75\\xd9\\xff\\x37\\x23\\x50\\x50\\x24\\x0b\\x73\\x3a\\x37\\xa2\\x6f\\xf6\\x88\\x4e\\x81\\x5d\\x76\\x48\\x99\\xae\\xa5\\x14\\xee\\x1a\\xd0\\x36\\x9c\\xf8\\xa6\\xab\\x35\\x92\\x1f\\x0f\\xd5\\xb5\\x48\\x10\\x90\\xc8\\xbf\\xf9\\x6a\\x49\\x84\\xe4\\x77\\xca\\x7f\\x29\\x5d\\xfc\\xdb\\x3f\\x4d\\x17\\xbb\\xd2\\x58\\x5c\\x25\\x8d\\xd4\\x86\\xe0\\xf0\\x16\\x45\\x5a\\x35\\xf6\\x9a\\xf2\\x28\\xb8\\xbb\\x21\\x4d\\x7c\\xfc\\x58\\x3d\\x12\\xd4\\xf0\\xf1\\x63\\x87\\x69\\xd0\\xb3\\xb9\\xf9\\x56\\xe7\\xd2\\x7f\\x0d\\x49\\xe6\\x86\\xf4\\x12\\xd8\\xaf\\x21\\x79\\xac\\xab\\x49\\xed\\x94\\x0d\\xad\\x1b\\xb9\\x13\\x7b\\x96\\x0f\\x7e\\xf6\\xfb\\x82\\xf1\\x28\\x01\\x5f\\x08\\x4b\\xe6\\xd5\\xd2\\x49\\xea\\xdb\\x01\\x03\\xce\\x3a\\x05\\x9f\\x29\\x09\\x1a\\x4a\\xf1\\xab\\xe3\\x15\\x46\\x19\\x06\\x97\\xd8\\x1a\\x42\\xc8\\x1f\\x92\\x8c\\xc7\\x99\\x6d\\xd8\\x57\\x1d\\x09\\x75\\x38\\xa4\\x69\\x96\\x71\\xd0\\xd0\\x13\\x53\\xf9\\x25\\x1d\\x0a\\x69\\x09\\xf6\\x81\\x47\\x87\\x6e\\x65\\xdc\\x8d\\xd6\\x54\\x72\\xc0\\x69\\x96\\x2a\\xd3\\x0c\\x1d\\x3b\\xd8\\x68\\x1c\\x10\\x07\\x60\\xd1\\x4b\\x0a\\x36\\xb8\\xf8\\x44\\x67\\x47\\xe8\\xd8\\x23\\x66\\x00\\x29\\x1a\\x18\\x97\\xde\\xf5\\xd9\\x50\\xe4\\x65\\x86\\xf0\\x21\\xa6\\xce\\x18\\x38\\x04\\x6d\\x27\\x9c\\x34\\x64\\x9c\\x36\\xd4\\x2b\\x8c\\xa5\\xe2\\xc5\\xc1\\x64\\x03\\xe1\\xf1\\x34\\x37\\xe9\\x6c\\xe3\\x2d\\xd8\\x87\\x15\\xe5\\x2c\\x01\\xa6\\x04\\xf9\\xaf\\x22\\xc3\\x24\\xd4\\xf1\\xb3\\x79\\x55\\xa0\\xf1\\x67\\x69\\x65\\x4c\\x34\\x51\\x0d\\x26\\xb4\\x92\\xa8\\x4c\\x45\\x21\\xd5\\xc8\\xf6\\x1b\\xe3\\x55\\x87\\x6b\\x0a\\xee\\xd3\\x4d\\x9b\\xcf\\x2f\\x6e\\x60\\x69\\xa1\\xba\\x7d\\x44\\x02\\x43\\xfb\\x0a\\xf0\\x5c\\x78\\xfe\\x1e\\x3f\\x66\\x4d\\xc4\\x17\\xb5\\xb3\\x43\\x36\\x4c\\x7c\\x27\\x54\\xdb\\xdb\\xba\\xcc\\xa2\\x4d\\x09\\x69\\x6c\\xcd\\x0c\\x52\\x45\\x0e\\x7b\\x22\\x94\\x9a\\xa3\\x4b\\x14\\x3e\\x3a\\x6f\\x7e\\xa5\\xd6\\x8e\\x5d\\xee\\x09\\xf5\\x4f\\xae\\xeb\\xe7\\x32\\x24\\xde\\x52\\x02\\xc5\\xf9\\x02\\xec\\x20\\x52\\xce\\x83\\xc0\\x6a\\x6a\\x5f\\xed\\xfe\\xd1\\x10\\xe8\\x95\\xab\\x25\\x19\\x2e\\xd3\\xa7\\x9e\\x2f\\x3b\\x45\\x0d\\xe4\\x19\\x3f\\x0a\\x72\\x11\\xd4\\xb2\\x68\\x5b\\x12\\x94\\x74\\xb5\\xcc\\x0b\\xcd\\x1a\\xa5\\x67\\x68\\x98\\x05\\x63\\x32\\xee\\x0c\\x1c\\xd8\\x13\\x24\\x62\\x16\\xba\\xc5\\x00\\xce\\xb1\\x9c\\xbd\\xfe\\xe2\\x74\\x99\\x61\\x41\\xe1\\xe4\\x45\\x27\\xd6\\x10\\x1a\\x2c\\xce\\x62\\x88\\x00\\x0b\\xab\\x36\\x09\\x25\\xc5\\x18\\x81\\xee\\x48\\x84\\x0c\\xe2\\xfd\\x13\\xb9\\x30\\x90\\x36\\x19\\xc3\\xfe\\x11\\x1c\\x30\\x39\\x22\\x1c\\x76\\x4c\\x6d\\xa1\\xac\\x1e\\x67\\x04\\x66\\xf7\\x3b\\x90\\x07\\x7c\\xe0\\xc5\\x45\\x6c\\x05\\xa4\\x12\\x03\\xc5\\x05\\x27\\x23\\x1e\\x28\\xaf\\xf2\\xcb\\x30\\x58\\x9c\\x2b\\x61\\x98\\x61\\xe5\\xb8\\x73\\x5f\\x5f\\x1c\\x15\\x12\\x39\\x31\\x70\\x92\\x13\\x18\\x51\\xe7\\xc7\\x30\\xdc\\x2d\\xd6\\xee\\x50\\x9c\\x98\\x01\\x11\\x7d\\x57\\x84\\xeb\\x71\\x2d\\xed\\xc8\\x23\\x72\\xf2\\xeb\\x02\\x62\\xcf\\x92\\x99\\xa9\\xf3\\x36\\xef\\x2f\\xf3\\xd1\\xa3\\xc0\\x2a\\xde\\x45\\xc9\\x75\\xa1\\x6b\\x2c\\x41\\x9f\\xa7\\x65\\xfb\\x3a\\x83\\x88\\x2f\\xec\\xef\\x42\\xc7\\x54\\x0f\\x3f\\xa4\\xc6\\xd7\\x13\\x05\\x46\\xe2\\x9c\\x28\\x10\\x96\\xe3\\x47\\xb6\\x82\\x3d\\x67\\x74\\xdb\\xb7\\xe5\\xc2\\x84\\x2d\\x94\\x04\\x97\\x70\\x60\\x23\\xb9\\xbc\\xc3\\x87\\x0d\\xb7\\x01\\x49\\x82\\xfa\\x41\\x72\\x4d\\xd5\\xf9\\x72\\x62\\xaa\\xd8\\xf0\\x9d\\x5d\\x01\\xa3\\x94\\x3f\\xb1\\xea\\x05\\x1f\\xff\\x9a\\x56\\x14\\xac\\x66\\x27\\x6c\\xd7\\x59\\x4a\\x21\\x71\\xe3\\x72\\xc9\\xdd\\x30\\x2a\\x96\\x25\\x67\\xf7\\x97\\x8a\\x42\\xab\\xa8\\x50\\x29\\xf6\\xde\\x67\\x79\\xa2\\x50\\xe5\\x20\\x16\\x34\\x4b\\xe8\\x5c\\x0a\\x11\\xa1\\x27\\x14\\xdd\\x84\\xe2\\xb5\\x3e\\x8e\\x17\\x0e\\xf7\\x89\\x5a\\x41\\xec\\xd9\\x90\\x2c\\x38\\x66\\x87\\xb8\\x32\\xcf\\x8a\\xb0\\x27\\xaf\\x54\\xf0\\xc4\\x0c\\x91\\xb8\\x82\\x49\\xa0\\x77\\xf2\\xcf\\x80\\xea\\xe4\\xfd\\x81\\xdf\\x84\\x66\\xe0\\xdd\\x70\\xc7\\x7d\\x96\\x2d\\xa4\\xea\\x74\\xed\\xed\\xd3\\x75\\x46\\x6d\\xb6\\xf4\\x93\\xba\\x3e\\x4b\\xba\\xad\\xec\\x98\\xbb\\xa2\\xcd\\xf3\\xbd\\x43\\x41\\x45\\x76\\x8a\\x13\\xa3\\xfa\\x88\\xd9\\xe9\\x84\\xc1\\xbf\\xa7\\xc2\\x76\\x1a\\xea\\x71\\x67\\x01\\xbc\\x72\\x23\\x43\\x3f\\x6e\\x6f\\xd5\\x6c\\x2b\\x9e\\xa6\\xa9\\xb3\\xa5\\x16\\x6c\\xb4\\x6b\\x25\\x6f\\x8e\\x9f\\x9d\\xcf\\x00\\x71\\xe7\\x83\\x4a\\xd3\\x70\\xbf\\x77\\xf2\\x4d\\xf1\\x86\\xcc\\xcd\\x9f\\x04\\x4d\\x0d\\x8d\\x79\\x1c\\x57\\xd8\\xe8\\xf6\\x38\\xff\\xb3\\xd7\\xdf\\xe0\\x0a\\x05\\xb8\\xcb\\x08\\x5f\\x7b\\xf3\\xd5\\x2b\\x2f\\x5b\\x5d\\x57\\xb5\\x6e\\x03\\xfc\\xda\\x30\\x4c\\x2f\\xad\\x0c\\x17\\x8e\\x1c\\xd7\\x85\\x1d\\xc2\\xdd\\xff\\xf8\\x23\\xdb\\xfe\\x86\\x78\\x05\\x44\\x70\\x83\\xbc\\x96\\x23\\xb1\\xc9\\x51\\x86\\xad\\xf6\\x29\\xa6\\xb3\\x18\\x6f\\x74\\x9c\\x15\\x97\\x95\\xb6\\x2f\\x9e\\x61\\xe8\\x64\\xeb\\xda\\x8a\\xb9\\x93\\xa0\\x40\\xd2\\x02\\x3f\\xac\\x44\\x67\\xd0\\xe0\\x8b\\xe4\\x61\\xeb\\x9c\\xc6\\x03\\x71\\x62\\x11\\x71\\xd9\\x32\\xc7\\xef\\x21\\xea\\x95\\x5e\\xe9\\xb2\\x85\\xb0\\xa9\\x63\\x29\\xfe\\xf5\\x9e\\xfb\\x1f\\x4c\\x4c\\xad\\x59\\x8d\\x2b\\x25\\x84\\x96\\x02\\xe4\\xad\\xae\\xc7\\x98\\x65\\xd2\\xa7\\xdd\\x0d\\x00\\xab\\x22\\x9e\\xda\\x01\\xb3\\x5e\\x39\\x6b\\x87\\x7e\\x60\\x2f\\x91\\x66\\x18\\xd5\\x2b\\x2e\\x0d\\x7c\\xde\\xcc\\x4f\\x6c\\xd9\\x6e\\x57\\xc8\\xb9\\x1d\\x82\\xc0\\x8f\\x66\\xa2\\xb8\\xed\\x23\\xcc\\x36\\x4a\\x9c\\x49\\xab\\x30\\x66\\x55\\x6a\\x7b\\x1b\\x13\\xf2\\x4a\\x0f\\x34\\xb3\\x1b\\xe2\\xcf\\xa9\\x0e\\x7f\\x41\\xd1\\xbc\\x89\\xaf\\x88\\xe4\\x87\\xce\\x23\\x53\\xca\\xa6\\x12\\x76\\x6e\\x64\\x2c\\x19\\x12\\xc7\\x25\\x12\\xdb\\xfb\\xa8\\x27\\xa7\\xcb\\xd8\\x17\\x3c\\x8f\\x32\\xcb\\x00\\x6b\\x7d\\x59\\xbb\\x01\\xd8\\xf8\\xa8\\xa1\\x8e\\xf4\\x6d\\xef\\xc8\\x61\\xb6\\xc8\\x7e\\xe2\\x45\\x1c\\x32\\x69\\x76\\x09\\x66\\xde\\xb8\\xc1\\xb1\\x02\\x5d\\x17\\xb3\\x87\\x8d\\xb4\\x8c\\x07\\x2c\\xf3\\xf6\\x32\\x33\\xfe\\x14\\x93\\x3c\\x46\\xf8\\x52\\x60\\xf9\\xcb\\x78\\xa8\\xa0\\x4b\\x0e\\x6a\\x00\\xff\\x5b\\xdf\\x4f\\xe2\\xac\\x6f\\x6f\\x51\\x4d\\x9d\\x9e\\x35\\xe2\\xeb\\xce\\xa0\\xbd\\x46\\xa2\\x9e\\xa9\\xe9\\x0f\\x92\\x59\\xee\\x8b\\x85\\x1c\\xee\\xd9\\xaf\\x58\\x5d\\xcd\\x55\\x5a\\x81\\xe3\\x6c\\x8f\\x1c\\xcc\\xcc\\x3b\\x93\\xd6\\x95\\x41\\x9b\\x22\\x9b\\xce\\x57\\x12\\x70\\x74\\x20\\xc2\\xe2\\xe6\\xe9\\xe8\\xe1\\x85\\x31\\x5e\\xe4\\xc6\\xf9\\x8a\\xa7\\xaa\\x77\\x96\\xe2\\x55\\x82\\xdb\\xbf\\x6f\\x3f\\x22\\x04\\x0b\\x0d\\x1b\\x8d\\x8c\\x77\\x5a\\x2e\\xb2\\xc8\\x74\\xcd\\x14\\x59\\x38\\x98\\xe7\\x1a\\x11\\x9b\\x80\\x85\\xef\\xdb\\x39\\x1b\\x39\\x7e\\xef\\xc9\\xfc\\x2b\\x52\\xfb\\xd7\\x05\\x50\\xe5\\x7b\\x0b\\xa2\\xc3\\xe1\\x2e\\x62\\xc1\\x1f\\x5e\\x00\\xf3\\xaf\\xbe\\x04\\x5c\\xd3\\x0f\\xcd\\x4f\\x91\\xed\\x19\\xac\\x19\\x2c\\x56\\xde\\xe7\\xd7\\x79\\x29\\x01\\x03\\x22\\xa7\\x7e\\x0e\\xd5\\xf7\\x13\\x4b\\x50\\xbc\\x1e\\x11\\x50\\x0b\\xca\\x74\\xa5\\x23\\x5f\\xfb\\x07\\x19\\x95\\x07\\x46\\xe3\\x01\\xc4\\x80\\x7b\\xf5\\x85\\x8c\\x81\\xf7\\xd5\\xa7\\x53\\x26\\xe8\\x41\\xb6\\x4f\\x60\\x8f\\x2c\\xdc\\xe9\\xef\\xfa\\xdb\\x4e\\x41\\x49\\x37\\xf6\\xa0\\xaa\\x75\\x96\\xcf\\x01\\x6c\\x3b\\xe8\\xcc\\xe0\\x50\\xf4\\xf4\\xbf\\xdb\\x42\\x67\\xff\\x0c\\x42\\xcf\\x2f\\xb6\\x92\\xfd\\xa8\\xaa\\x7d\\xcc\\x7c\\x97\\x08\\xc4\\x58\\x88\\xb0\\x06\\x5e\\x4a\\xa6\\xce\\xff\\x34\\x65\\x9b\\x16\\x0e\\x3c\\x45\\xad\\x8c\\x6d\\xfc\\x54\\xbd\\xca\\x01\\xec\\x6b\\x67\\x4f\\x99\\x5a\\xed\\x91\\x9d\\x86\\xa9\\x6d\\xfe\\x1a\\x2d\\x6f\\x40\\x4c\\xea\\x70\\xfd\\xe7\\xcb\\xb4\\x1e\\x41\\x0c\\xb8\\x62\\xbd\\x2a\\x47\\xf6\\xc8\\xbd\\x80\\x60\\x90\\xf5\\x44\\x9d\\xad\\x5b\\x86\\x9b\\x07\\x9c\\x89\\xda\\x34\\x0d\\x0a\\xe7\\x7c\\x44\\xcd\\x84\\x24\\x65\\x23\\x35\\x4e\\x31\\x41\\x09\\x88\\xb2\\xa6\\xce\\x12\\x0c\\x09\\x70\\x5e\\x9b\\x75\\x35\\x52\\xe3\\x96\\x10\\x6b\\x09\\x7e\\x58\\x99\\x05\\x26\\x85\\xef\\xf6\\x09\\x04\\x8d\\xa6\\x56\\xa5\\x29\\x77\\xec\\xef\\x1d\\xf8\\xe1\\xc0\\x8b\\xa1\\x09\\x80\\x97\\x85\\x71\\x0a\\x58\\xd9\\x8a\\x08\\x1e\\x80\\xd5\\x55\\x9b\\x02\\xb0\\xff\\x51\\xc1\\x94\\x97\\xd8\\xe5\\x9d\\xd6\\xec\\x80\\x59\\x17\\xc1\\xdd\\x82\\xb4\\x18\\x25\\xee\\x6a\\x0f\\x91\\x43\\x54\\x6b\\x40\\xa5\\xa0\\x5a\\x83\\x40\\x1b\\x08\\x9c\\x79\\x8d\\xe1\\x05\\xae\\x09\\x49\\x79\\x0b\\xc2\\x0d\\x23\\xd6\\x33\\xc0\\xcb\\xf8\\xb4\\x1e\\x69\\x8d\\x50\\x93\\xd1\\x12\\xc4\\x38\\x4c\\xe6\\x5a\\x97\\xd0\\x00\\x96\\x9d\\x62\\x1f\\x6a\\xdd\\xac\\x0b\\x08\\xd1\\xec\\x64\\xaa\\x00\\x09\\x8c\\xe0\\xfe\\x8a\\xb4\\x23\\x87\\x40\\xeb\\x6c\\x66\\xda\\x30\\x76\\x33\\xe5\\xad\\xaa\\x35\\x9c\\xb7\\x21\\x4a\\xb3\\xb6\\x74\\x74\\x6d\\x77\\xbe\\x88\\x6b\\x10\\x2a\\xf0\\xaa\\x40\\x62\\x1e\\xeb\\xe9\\xe9\\xb0\\xf8\\xc8\\xd1\\x24\\xf9\\x55\\x9d\\x9f\\xbf\\x62\\x1f\\x5d\\x01\\xea\\x1f\\x5a\\x74\\x86\\xb2\\xda\\x28\\x5e\\x5f\\xf6\\x81\\xf0\\x19\\xc7\\x01\\x0e\\x15\\x5b\\xde\\xa1\\x65\\x3a\\x96\\x4e\\xcc\\x24\\x49\\xba\\xd1\\x06\\xf5\\xf6\\x56\\x15\\xea\\xd9\\x61\\xaf\\x19\\xfc\\x40\\x08\\x3c\\x54\\x1b\\x94\\xfa\\x0a\\x7d\\xdd\\x26\\x4e\\x4a\\xec\\x65\\xb8\\xc9\\x96\\x0a\\x8d\\x82\\x7b\\x3a\\x54\\x24\\x71\\xfc\\x3b\\xf0\\x8b\\x2f\\xe7\\x7a\\x0c\\x3b\\xe1\\xc4\\xbc\\x13\\xac\\x30\\x7a\\x97\\x92\\x90\\x1a\\xa4\\x73\\x1d\\x3b\\x88\\x12\\x11\\xbd\\x56\\x42\\xa7\\x0d\\xa8\\xb5\\xf3\\x95\\xb0\\x59\\xe5\\x69\\xa2\\x43\\x3f\\xbc\\xe0\\x89\\x12\\xde\\x99\\x73\\x8c\\xa7\\x31\\x1e\\xca\\xea\\x5a\\x82\\xb9\\xe2\\xeb\\x25\\x90\\x66\\xd1\\x11\\xf5\\xf8\\x71\\x34\\x5d\\x92\\x83\\xc1\\x31\\xb5\\x6c\\xe4\\x02\\x3e\\x72\\xef\\xf0\\x00\\x8f\\x7b\\x40\\xf2\\x4d\\xdb\\x96\\x41\\x79\\x5f\\x77\\xde\\xa2\\xce\\xf2\\x34\\xd2\\x98\\xf6\\x03\\x26\\x6e\\x45\\x2a\\x1f\\xa0\\x6c\\xdc\\x49\\x37\\x5f\\x49\\x08\\xad\\xef\\x53\\x23\\xfd\\xeb\\xa4\\x67\\x7f\\xc8\\xbe\\x3c\\x48\\xf7\\x6e\\x6f\\x95\\x7b\\x83\\xb4\\x4e\\x2e\\x84\\x26\\xbd\\x3a\\x41\\x6f\\x3b\\xd4\\xd7\\x23\\xb5\\x3b\\x8c\\xb3\\xb8\\xf4\\x4e\\x27\\x81\\x83\\xc9\\xba\\x44\\x84\\x46\\xdb\\xa8\\x9f\\x70\\x37\\x2d\\xdc\\x1b\\xc8\\x21\\x1d\\x1c\\xb8\\x47\\xd4\\xcf\\x87\\x88\\xba\\xa4\\x30\\xc4\\x28\\xd9\\xd4\\xe3\\x47\\x68\\x0a\\xde\\x55\\xc9\\x7a\\xd5\\x35\\x4d\\x30\\x82\\xee\\x91\\x54\\x1c\\x77\\x16\\x60\\x57\\x8c\\xfe\\x28\\x47\\x52\\x00\\x80\\xfd\\x97\\x62\\xfc\\xb5\\xd7\\x4e\\xa8\\xe7\\x6a\\x74\\x35\\x72\\xcb\\x61\\x9f\\x46\\x08\\x21\\x18\\x60\\x84\\xfe\\x28\\x47\\x36\\x51\\x29\\x13\\x3d\\xc2\\x54\\xb7\\xb7\\x52\\xcb\\xb0\\x86\\xd2\\x04\\x2b\\xab\\x00\\x6f\\x40\\xda\\x00\\xba\\xc2\\xb1\\x97\\xf0\\x8b\\x7c\\xe5\\xb8\\x9d\\xa3\\x66\\x14\\x9a\\xbc\\xd1\\x0c\\x3e\\x7e\\xec\\x26\\xf3\\xd1\\x61\\xe4\\x60\\x17\\x0c\\x67\\xa2\\xbe\\x90\\xe1\\xc0\\x81\\x58\\x77\\x07\\x4a\\xea\\x8d\\xd4\\x08\\x1c\\x3c\\x47\\xfe\\x42\\x1a\\xa2\\xc5\\x4b\\x41\\x00\\x35\\xcf\\xaf\\x24\\x68\\xe8\\x5d\\x34\\x8f\\xcf\\x1e\\x38\\x8f\\xcc\\xe7\\x01\\x8a\\x00\\x1c\\x3f\\xea\\x50\\x35\\x17\\x79\\xf5\\xa2\\x35\\xab\\x7c\\x2e\\x4e\\x08\\x3c\\x04\\x26\\x4c\\xf9\\xbd\\x6f\\x30\\x84\\x7a\\xfc\\xfb\\x3a\\x2d\\xd0\\x43\\xdb\\x92\\x56\\x4e\\x8b\\x25\\x92\\x83\\xa0\\xfd\\xc9\\x1a\\x7e\\xe9\\x0e\\xc0\\xb7\\x5f\\x48\\x40\\xcc\\xcd\\x1b\\x53\\x7b\\x66\\xe6\\x52\\xd7\\xad\\x25\\x69\\x30\\x7c\\x70\\x94\\x01\\x5f\\xb3\\x4a\\x6f\\x2c\\xcf\\x42\\xbc\\xcd\\x54\\xfd\\xe2\\x19\\x19\\x88\\x4b\\x84\\x4a\\x5e\\xcb\\x73\\xd8\\x05\\x3a\\xfa\\xff\\xe4\\x88\\xfd\\x1b\\x02\\xbe\\x86\\x3a\\xe9\\x81\\xa0\\x41\\xd7\\xc2\\xe6\\x7c\\xa2\\x6e\\x62\\x02\\x86\\x9e\\x2b\\x82\\x96\\xd8\\x17\\x14\\x67\\xc7\\xa1\\x2b\\x08\\xdc\\xfb\\x7e\\xcb\\x6b\\x82\\xcf\\x02\\xff\\x55\\xba\\xaf\\xde\\xde\\xfa\\x0e\\xf0\\x0f\\xba\\x2d\\x84\\x71\\xf2\\x5c\\xcd\\x76\\x1e\\x5e\\xb0\\x49\\x8b\\x33\\xd4\\x76\\xed\\xd9\\x51\\xd3\\x1f\\xd4\\x77\\xf2\\x16\\xec\\x9b\\x95\\x4c\\xd4\\xf7\\x58\\xd0\\x0d\\x1a\\xab\\xe2\\x52\\x7d\\x2e\\x4d\\x8b\\xf7\\xd9\\xa4\\x39\\x41\\x06\\x40\\x7d\\x27\\x6a\\xdc\\x1a\\xa0\\xbe\\x30\\xc7\\x3c\\x3c\\x37\\x84\\x1d\\xd2\\x29\\x7a\\x5b\\x7d\\xef\\x8b\\x57\\x3b\\xea\\x7b\\xb1\\xfc\\xdb\\xb4\\x3e\\xd7\\x2d\\xe3\\x68\\x7a\\xa7\\x6e\\x7c\\xef\\xcc\\x61\\x90\\x64\\xad\\x48\\x5b\\xe2\\x2f\\x33\\x98\\x6c\\x6a\\xd6\\x6d\\xd3\\x63\\xc2\\x22\\xe9\\xeb\\x73\\x75\\xa3\\x9e\\x1e\\x02\\xc6\\xc5\\x0d\\x73\\x30\\x4e\\x54\\x4a\\xd5\\x45\\x1b\\x25\\x74\\xc4\\xbe\\x51\\xdb\\x87\\x34\\x30\\x3f\\x84\\xb8\\x97\\xd4\\x07\\xdc\\x44\\x2f\\x8f\\x3e\\x9c\\xbc\\xfe\\x70\\xf2\\xfa\\xd5\\xdb\\x93\\x17\\x3f\\xbe\\x7b\\xad\\xde\\x7e\\xf8\\xf8\\xcb\\x89\\x3a\\x3e\\xf9\\xfd\\xdd\\x6b\\x0c\\x28\\x06\\x1e\\x81\\xa8\\x3e\\x72\\xd0\\xc6\\xf2\\xee\\xc3\\xa8\\xa3\\x78\\xeb\\x5e\\xc1\\x5a\\xe5\\xc7\\x22\\x6d\\xda\\x17\\x80\\xc5\\xf9\\x41\\xf8\\xf2\\xfa\\xb7\\xe8\\x1f\\x25\\xdf\\x83\\xf6\\x2c\\x4e\\x0c\\x2f\\x5d\\x5a\\x22\\xd6\\xf0\\xb5\\xa2\\x40\\x92\\xc8\\xb0\\xbd\\xd2\\x45\\x7a\\x43\\xf6\\x32\\xd8\\x1c\\xb3\\xb2\\x3b\\x18\\x13\\x88\\x6c\\xe7\\x75\\x3a\\xd7\\x1f\\x75\\x9d\\x1b\\x09\\xb6\\x0b\\x9f\\x6a\\x9d\\x66\\xaf\\x8e\\xde\\x53\\x38\\x5d\\xce\\x77\\x77\\xb0\\xb5\\xd5\\x37\\x10\\x1e\\xaa\\x6e\\x9a\\xc3\\x22\\x13\\xa2\\x4e\\xe7\\x3b\\x23\\xc2\\xb8\\x76\\xe4\\xda\\x14\\xe9\\x6e\\xcd\\x83\\x30\\x51\\x30\\x84\\x28\\x2a\\x80\\x81\\xf4\\x48\\x99\\xf8\\x12\\x7f\\x4b\\xaf\\x86\\x57\\xf9\\xe5\\x00\\x52\\x62\\x96\\x5f\\x4e\\x64\\xd0\\x01\\x89\\x10\\x4a\\x71\\x12\\x41\\x3b\\x8a\\xd0\\xd2\\x83\\x31\\x8d\\x07\\x83\\x9f\\x77\\x41\\xb9\\x3b\\x7a\\xe2\\xdd\\x5d\\xf5\\xf6\\xb5\\x8b\\x40\\x06\\x01\\xd0\\xb1\\xbf\\xe8\\xe6\\x32\\x51\\x8d\\x51\\x57\\x5a\\x35\\x96\\x64\\xae\\x0b\\x0d\\xa0\\xd2\\x69\\xc6\\xf1\\xc9\\x19\\xdb\\x7b\\x8e\\x63\\x8f\\x97\\xaa\\xbc\\x51\\x57\\xe4\\xd4\\x03\\xd0\\x20\\x22\\x90\\xfe\\xa1\\xda\\xdb\\xc3\\x98\\x1d\\x2e\\x54\\xf7\\x50\\xd4\\xfc\\x48\\x2f\\xfb\\xcd\\x1e\\x21\\x9b\\xbf\\xa9\\xcd\\xea\\xd5\\xd1\\xfb\\x31\\x00\\x6d\\x4f\\xd4\\x13\\x82\\xad\\xbf\\x0b\\x47\\x8c\\x56\\x16\\x0c\\xeb\\x70\\x40\\x68\\x2a\\x58\\x2e\\xc3\\x2f\\x59\\xda\\xa6\\xfb\\x4a\\x4f\\xed\\x5f\\xcb\\xff\\x82\\x1b\\xa0\\x5d\\x81\\x77\\x32\\xaa\\x6a\\x5c\\x09\\xb6\\x6d\\x43\\xd8\\xe9\\xb8\\x2a\\xd6\\x28\\x3c\\xbc\\x7a\\xb5\\xb1\\x01\\x83\\xe1\\x89\\x85\\xd5\\xaf\\xac\\x5c\\xb0\\x1a\\x58\\x19\\x70\\x40\\x51\\x3a\\xf8\\x20\\x5a\\x6a\\xa7\\x9e\\xc6\\xff\\xd8\\x80\\x0c\\xf9\\x4e\\xc8\\xf4\\xc2\\x9c\\xa6\\x0c\\x04\\xbf\\x3d\\x73\\x34\\x10\\xae\\x3b\\x88\\x75\\x88\\x50\\x90\\xf5\\x5c\\xbf\\xf4\\x5d\\x7d\\x5d\\x66\\x63\\x17\\x74\\xd4\\x95\\x96\\x13\\x36\\x73\\x7f\\xd8\\xd8\\x4d\\xe3\\xdf\\xdf\\x2b\\x2c\\xde\\x95\\x66\\xca\\x97\\xa6\\xba\\x79\\xb9\\x6e\\x1f\\xb0\\xf5\\x3a\\x9b\\x8c\\x63\\x4f\\xf4\\x98\\x05\\xbb\\x99\\x08\\xe3\\xef\\x88\\xa0\\x41\\xe4\\x4c\\x8a\\x60\\xc8\\x78\\x69\\xf0\\xe6\\x85\\xe3\\xe4\\x2e\\x09\\xa6\\x12\\x39\\xde\\x43\\x8c\\x6c\\x00\\x7a\\xa5\\xd5\\x46\\x5b\\x63\\x4c\\xd6\\x01\\xf5\\x96\\x68\\xf0\\xdc\\x14\\x1a\\x80\\xd8\\xcb\\xb9\\xef\\x76\\x17\\x40\\x66\\x75\\x61\\xb0\\xef\\xeb\\xb2\\x5d\\x35\\xdc\\x63\\x32\\x87\\xb3\\x0f\\xf7\\x74\\xd5\\xf1\\xdd\\xd0\\x76\\xa6\\x2a\\xdd\\xf5\\xe0\\x12\\x35\\xc1\\x48\\x52\\x45\\x8c\\xe9\\x35\\xeb\\x20\\x2f\\x85\\x99\\xef\\x1d\\x54\\x97\\xfc\\x2e\\xd2\\xbd\\x6e\\xf9\\x2e\\x04\\xc1\\x0f\\x7c\\xfb\\xe2\\xa8\\x08\\x18\\x8d\\x35\\x6d\\xd3\\xb1\\x74\\x7a\\x64\\xa2\\x7b\\xb8\\x21\\x0e\\x08\\x25\\xdf\\xdd\\x05\\x1c\\x60\\x7d\\x5d\\x99\\x46\\x93\\x78\\x8b\\x6b\\x50\\x2f\\x3e\\xbe\\x45\\xc1\\x60\\xa3\\xf5\\x0a\\xe4\\x66\\x59\\xde\\xcc\\xed\\x17\\x4f\\xd6\\x29\\x66\\x05\\xc0\\x29\\xe7\\xed\\x40\\x33\\x9b\\x20\\x78\\xc3\\x84\\xb3\\x87\\xb3\\xb6\\x31\\xde\\x83\\x9d\\x4e\\xce\\x25\\x66\\x6b\\x20\\xe2\\x83\\x8a\\x91\\xf5\\xe4\\x00\\xef\\xee\\xaa\\xa3\\x22\\xdb\\x59\\xa4\\xcd\\x12\\xa1\\xa4\\xcf\\xea\\x5c\\x2f\\x8a\\x9b\\x1d\\x40\\x96\\xdd\\x49\\x77\\x1c\\xec\\xf4\\x32\\x9d\\x5f\\x38\\x16\\xe0\\xa2\\x58\\x67\\x60\\x3c\\x10\\xa3\\x72\\x4f\\x10\\x8e\\x1b\\xbf\\xa3\\xb0\\x0a\\x3c\\x36\\xb7\\x68\\x3d\\x74\\xfd\\x18\\x71\\xd4\\x08\\xaa\\x01\\xf3\\x4d\\xfa\\x53\\xfa\\xd2\\x18\\x3f\\x7d\\x4a\\xd6\\x5e\\xf7\\x4d\\x2d\\xc8\\x17\\xd2\\x0c\\x38\\x30\\x94\\x30\\xe0\\x1d\\x80\\x2d\\x95\\xe0\\x06\\x80\\x8a\\x25\\x58\\xa8\\x18\\xc0\\x82\\xad\\xa2\\xc4\\x31\\xdc\\xb7\\x4d\\x7a\\xdb\\x8a\\x00\\x92\\xe8\\xac\\x8a\\x9d\\xe2\\xc9\\xe0\\x76\\x44\\x71\\xcb\\x41\\x9b\\xee\\x9a\\x68\\x59\\xa3\\x4b\\x84\\xf4\\x03\\x17\\xd9\\xa5\\xb9\\xfa\\x88\\xd6\\x29\\x7e\\x27\\x79\\x5f\\x27\\xf5\\xc3\\x8c\\xe5\\x74\\xe2\\xd0\\xab\\x6e\\x46\\x13\\x4f\\x90\\xc3\\x13\\x11\\xce\\x00\\xf1\\xed\\x01\\x9c\\x61\\x55\\xeb\\x2a\\xad\\xfd\\x4e\\x0e\\xb8\\x44\\x7f\\xd1\\x73\\x37\\xeb\\x38\\xfd\\x98\\x58\\x6b\\xe1\\x2f\\x41\\x17\\xe5\\x05\\x4d\\x0b\\x25\\x20\\xd3\\x34\\x78\\xab\\xb3\\xee\\xad\\xf9\\xfe\\xa6\\xda\\xe1\\xea\\x6f\\x67\\x5e\\x2e\\xcc\\x04\\xe0\\xc0\\x60\\xa0\\xb1\\xd9\\x40\\xc9\\xed\\x17\\x08\\xf0\\xc1\\xad\\x90\\xda\\x7f\\x61\\x93\\x2c\\x4e\\x2c\\x0c\\x88\\xb0\\x30\\xd4\\x81\\xdb\\xdb\\xa0\\x60\\x32\\xb3\\x1b\\x9e\\x39\\xf7\\xfd\\xbd\\xbd\\xa6\\x57\\x85\\x16\\x54\\xd6\\x16\\xfb\\xa0\\x59\\xe9\\x2b\\x7f\\x60\\x66\\xd0\\x3f\\x87\\x6e\\xc5\\xf2\\x78\\xb4\\xbb\\x16\\xf8\\x75\\x37\\x43\\x55\\x9d\\xaf\\xc2\\x08\\x09\\x12\\xce\\x44\\x00\\x29\\xda\\xd7\\x21\\x8e\\x22\\xbc\\x01\\x18\\x45\\x1f\\x33\\x33\\x34\\xa4\\x00\\xea\\xb5\\xea\\xd8\\x63\\xd8\\xf1\\xf3\\x96\\x40\\xcf\\x3a\\x69\\x4e\\x60\\x7a\\x18\\x40\\xf1\\x69\\x5f\\x11\\xbc\\x27\\xc1\\xf2\\x1b\\x36\\xe0\\x8b\\xa2\\xa0\\xf3\\x54\\x4a\\xbb\\x65\\x58\\xb1\\xf9\\xba\\xc6\\x5b\\x1c\\xd0\\x85\\xd5\\x89\\xf9\\x68\\x30\\x94\\xb5\\x2d\\x24\\x75\\xb7\\x3e\\xf9\\xec\\xf1\\x30\\xa8\\x00\\x4f\\x57\\xa2\\xfc\\x0b\\xbe\\x07\\x8a\\x47\\x9f\\x9b\\x5c\\x41\\xa8\\x7a\\x88\\xc1\\xc3\\x4f\\xd3\\xb3\\x34\\x23\\x49\\x20\\x16\\x4e\\x5f\\x91\\x72\\xe0\\x47\\x47\\x7e\\xaa\\xf1\\x2a\\x2f\\xa1\\x5a\\xce\\x3e\\x71\\x19\\x13\\x72\\xae\\x61\\xf4\\x46\\x99\\x29\\xbd\\x1e\\xce\\xd4\\x1a\\xcc\\x82\\xc3\\x26\\x96\\x3d\\xf5\\x1a\\x82\\x05\\x74\\xe6\\x68\\x2b\\xb4\\x4c\\x1f\\x6f\\x9a\\x4f\\x98\\x73\\x74\\x01\\x3f\\x31\\xf6\\xaa\\x02\\xa4\\xc1\\xb6\\xd5\\x5e\\xca\\xa8\\x9d\\x5f\\x4a\\xc0\\x22\\xb6\\xe9\\x3f\\xcd\\x4e\\xa7\\x2b\\x34\\xfa\\x99\\xae\\xd2\\xea\\xd3\\x93\\xd3\\x89\\x42\\x1f\\xd9\\x7d\\x35\\x63\\xc1\\x06\\xc1\\x6f\\x0c\\x2d\\x92\\x13\\xd3\\xa9\\xb1\\x35\\x3c\\x15\\x8f\\x04\\x16\\x24\\x88\\x7e\\xb0\\x32\\x75\\x88\\xd5\\x0b\\x3a\\x80\\x41\\x74\\xe8\\xbb\\x4f\\x9f\\x56\\xea\\x50\\x89\\x26\\x36\\xea\\x79\\xf0\\xf8\\x49\\x3e\\xc8\\xa2\\xd4\\xbe\\x4c\\x07\\x05\\x62\\x47\\xa8\\xfb\\xb6\\xbb\\xab\\xb4\\x92\\x59\\x7c\\xdf\\x3b\\x1f\\x9f\\x9c\\xaa\\x9d\\xee\\xdb\\xef\\x4f\\xef\\xa4\\xb2\\xe0\\x11\\xce\\x91\\x25\\x78\\xa2\\xdb\\x5f\\xb3\\x71\\xd0\\xac\\xc2\\x39\\x59\\xbc\\x04\\x19\\x19\\x45\\x1b\\xe2\\x60\\x26\\x2f\\xda\\xf1\\x2c\\x99\\xa8\\x1a\\x02\\x48\\xb4\\xf5\\x8d\\x5d\\x48\\x70\\x81\\x83\\x2c\\x68\\x9e\\x3e\\x25\\x50\\x0c\\xf8\\x8d\\x9d\\x02\\xab\\xf0\\xe0\\x37\\xe0\\x3d\\x00\\xd5\\x9c\\x43\\xc8\\x6a\\x7b\\xbb\\xb8\\x03\\xe6\\x65\\x8d\\xc8\\x77\\x05\\x0b\\x28\\x5f\\x1d\\xbd\\x57\\x2b\\x10\\xf6\\x9d\\x41\\x54\\x4f\\x7b\\xe1\\xcc\\x40\\x25\\x7a\\xb5\\xcc\\xe7\\x4b\\x35\\x4f\\x1b\\x0c\\x38\\x81\\xe6\\x8f\\x57\\x1a\\xda\\xd5\\x1a\\x88\\x72\\x40\\xba\\xe1\\x7c\\xc5\\xa8\\x08\\x34\\x5a\\xb5\\xbf\\x0c\\xc2\\xe0\\x9d\\xeb\\xf9\\x85\\xa1\\x50\\x88\\xc1\\x69\\x25\\x2f\\x2a\\xc5\\x94\\x7d\\x96\\x06\\x3b\\x2a\\x0f\\xff\\x47\\x75\\x79\\xee\\x72\\x04\\xa0\\xa4\\xc3\\xb3\\xc2\\x5f\\xd3\\x2c\\x43\\x3b\\x47\\xdb\\xd0\\x90\\xcb\\x0b\\x6f\\x1c\\x9b\\x8a\\xea\\x2f\\xc8\\xf3\\xe1\\x76\\xc2\\x69\\x7e\\x53\\x21\\x0d\\xf3\\xa6\\x7f\\x41\\x01\\x02\\x5c\\xdf\\x5d\\x97\\x60\\xd8\\xfc\\xd1\\x68\\x07\\xe2\\xaf\\x5e\\x86\\xc5\\x37\\x4a\\x2f\\xc3\\x5a\\xe9\\xd5\\x99\\x08\\x2b\\x39\\x7e\\xd8\\x89\\x18\\x15\\xdb\\x73\\x1a\\x0e\\x89\\xb1\\xe0\\x02\\xc1\\xac\\x5e\\x2c\\x62\\x4b\\xfa\\xc5\\x6e\\x1b\\x99\\x43\\xba\\x3a\\xf7\\x0b\\xea\\x02\\xa1\\x83\\x8b\\x4b\\x89\\xf6\\x62\\xc2\\x15\\xd6\\x0b\\x40\\x06\\xef\\x6b\\x91\\x04\\xc8\\xc5\\xaf\\x8b\\x0b\\x75\\x12\\x56\\xf2\\x24\\xbd\\x03\\xc1\\xd0\\x43\\xd9\\x8c\\x2e\\x9b\\xd2\\x61\\xad\\xb0\\xdf\\x82\\xf7\\xad\\x75\\xf9\\xa2\\xcc\\x5e\\x64\\xd9\\x38\\x66\\xab\\x84\\x5b\\x03\\xf0\\x50\\xf8\\xdc\\x24\\x0f\\xcd\\xef\\xfa\\xe6\\x8b\\x70\\xaf\\x1e\\xd4\\xa5\\xce\\xf2\\xfa\\x7a\\xb6\\x69\\x50\\x40\\x1c\\xee\\x91\\x83\\x41\\x81\\x71\\xcc\\x53\\xc8\\x02\\xa5\\x0c\\x39\\xe0\\x25\\x0e\\x86\\x44\\xca\\x11\\x8b\\xf1\\xa0\\x79\\xe5\\xce\\xbc\\x2d\\x31\\x64\\xca\\x3f\\x34\\x08\\x39\\xc5\\x19\\x16\\x27\\x41\\xaf\\x59\\x02\\xd8\\x07\\xf8\\x1e\\x05\\xa7\\xc4\\x74\\x6e\\x56\\x2b\\x53\\xbe\\x28\\xe7\\xba\\x69\\x4d\\x6d\\xdb\\x9d\\xe6\\x25\\x38\\x55\\x38\\xe0\\x07\\x78\\xe5\\xdc\\x63\\x2e\\x11\\x4f\\xe9\\x41\\x93\\xcd\\x57\\x8c\\xb8\\x6f\\xce\\xde\\x58\\x08\\x72\\x9c\\xef\\x09\\xa0\\xc0\\x1b\\x5c\\x98\\xa3\\x8e\\x98\\xac\\x3b\\x76\\xf1\\x9e\\x0d\\xef\\x21\\x58\\x4f\\xe7\\x56\\x94\\x90\\x76\\x91\\x68\\x25\\xf7\\x4d\\xdc\\x0e\\xef\\x6c\\x07\\xef\\xe9\\xdf\\x59\\xb1\\xee\\x4c\\x9d\\x2f\\xcb\\x7e\\xb5\\xd4\\xf5\\xde\\x62\\xd8\\xaa\\xaf\\x53\\x54\\x68\\x3e\\x77\\xa9\\x1e\\xb2\\xb4\\xd6\\x55\\x65\\xea\\xb6\\x39\\x31\\x6b\\x80\\x22\\xee\\x2f\\x10\\x34\\xa3\\x0f\\xd9\\xac\\x73\\x9d\\x5f\\x6a\\x77\\x83\\xef\\x5b\\xa3\\x52\\x01\\x21\\xa7\\x76\\x70\\x9e\\xbe\\x78\\xed\\x4b\\x7c\\x37\\x73\\x86\\x1a\\x5f\\x02\\x53\\xe5\\xe9\\xa0\\xf0\\x9d\\x55\\x1d\\x0f\\xa2\\xbc\\x52\\x62\\x6a\\x6b\\x0f\\x64\\xb0\\xae\\xa4\\x01\\xc6\\x02\\xbf\\x47\\x8d\\xee\\x7c\\xcb\\xcb\\xf3\\x69\\xa3\\x5b\\x5f\\x9a\\x8b\\xb5\\x81\\x4e\\x35\\xba\\xbe\\x4c\\xc1\\x2a\\x88\\x25\\x76\\xc1\\xd1\\x2b\\x4b\\x88\\xb7\\x47\\x5f\\x01\\x5f\\x43\\x69\\xfc\\x88\\x7c\\x3d\\xa1\\x61\\x23\\xf0\\x90\\x05\\x79\\xd4\\xd1\\xc8\\x7d\\x20\\x84\\xbb\\x98\\xbe\\xf6\\x24\\xa5\\x0f\\x74\\xe3\\x08\\x08\\x6d\\x90\\xda\\x93\\x63\\x2a\\x57\\x50\\xda\\x6e\\xc2\\x87\\x53\\xe0\\x60\\x22\\x37\\x51\\xa8\\x48\\xa5\\xf7\\xc8\\x1b\\x66\\x77\\xb8\\x12\\x27\\xc6\\xe8\\xe1\\x2a\\x86\\x02\\x95\\x3e\\x40\\x2e\\x80\\xa1\\xd3\\x8e\\x4a\\xf5\\xa2\\xcc\\x6a\\x93\\x67\\xea\\xe5\\xb2\\x36\\x2b\\x0d\\x20\\x6a\\xa0\\xb8\\xfa\\xe1\\x5f\\x26\\x2a\\x6d\\x55\\xa1\\xd3\\xa6\\x4d\\x26\\x10\\xbd\\xab\\xa9\\xd2\\x79\\x5e\\x9e\\xa3\\x48\\x34\\x2d\\xb1\\x88\\xb5\\x83\\x7b\\x53\\x67\\x85\\x99\\x5f\\x28\\x8d\\x12\\x38\\xb4\\x4f\\xb0\\xbb\\x58\\xc4\\xb2\\x03\\x65\\x59\\xda\\x72\\x9a\\x09\\x16\\x91\\xa2\\x8f\\x76\\x39\\x51\\x67\\x7a\\x9e\\xae\\x2d\\x83\\xd9\\x7e\\x8b\\xb1\\xcb\\xb8\\xec\\x89\\x5a\\xe6\\x19\\xf2\\xfa\\x97\\x79\\xdd\\xae\\xd3\\xc2\\xc5\\x74\\x9b\\x62\\x21\\x3f\\x52\\x56\\xee\\x0f\\xeb\\xf7\\xd2\\xa2\\x30\\x57\\x6a\\x0d\\x42\\xde\\x74\\xde\\xa2\\xb1\\x65\\xa6\\x5b\\x3d\\x6f\\x5d\\xa7\\x28\\xaa\\x5e\\x55\\xeb\\xa6\\x81\\xe0\\xf5\\x2a\\x55\\x4d\\x5a\\x6a\\x75\\x95\\xde\\xa0\\xed\\xb5\\x9a\\xdb\\xd5\\x02\\x7a\\xca\\x06\\x34\\x81\\x10\\x16\\x0f\\xfa\\xb2\\x04\\x2c\\xbb\\xc6\\x77\\xa5\\xc9\\x57\\xeb\\x22\\x6d\\x75\\xa3\\x52\\x5f\\x03\\x16\\xee\\xb4\\x85\\xf6\\xe6\\xc2\\x41\\xf1\\x52\\x6a\\x31\\xb8\\xe9\\xc2\\x24\\x3c\\x7e\\xac\\xe2\\x9d\\x4a\\xf6\\xcd\\xc2\\xa5\\x37\\x6f\\xde\\x96\\x68\\x23\\x3d\\x0e\\xf7\\x50\\x22\\x39\\x56\\x5b\\x46\\x0c\\x30\\x35\\xfe\\x62\\x57\\xeb\\xbe\\x1a\\x5d\\xe8\\x9b\\xcc\\x5c\\x95\\xa3\\x89\\x1d\\xcc\\x97\\x70\\x3d\\xfd\\xcb\\x44\\x85\\x82\\xe7\\x7d\\xe7\\x2b\\x40\\x42\\x7d\\x28\\x15\\x4f\\x21\\xff\\x2c\\xe5\\x9f\\xe2\\x7a\\x29\\x0f\\x65\\xa9\\x86\\x12\\xab\\x76\\xf0\\x7a\\x80\\x0b\\x3a\\xfd\\xa7\\xe4\\x39\\x80\\xc3\\xfb\\x0f\\xc9\\x72\\x52\\x27\\xc8\\x81\\x38\\x9d\\x9b\\x42\\x26\\xb3\\x5c\\xd9\\x37\\x9e\\x4d\\x63\\x9a\\x7c\\x25\\x79\\xec\\x31\\x07\\x01\\x85\\x22\\xfb\\x95\\x2d\\xbe\\x6e\\x90\\x0c\\xdd\\xde\\x42\\x62\\xfb\\x9b\\x34\\x5b\\x1b\\xcf\\x24\\x52\\xe3\\x21\\x9b\\xf1\\x10\\x6a\\xf5\\xd2\\x29\\x54\\xbe\\x92\\x56\\x71\\xbf\\xbb\\xd7\\xac\\x30\\xbd\\x58\\x23\\xfd\\x76\\x0c\\x52\\x7c\\x17\\xc8\\x2d\\x3d\\x70\\xa6\\xbf\\x29\\x4c\\x3a\\x91\\x98\\x87\\x84\\x99\\x30\\xad\\x52\\x96\\x69\\x5f\\x50\\x44\\x98\\xbe\\x40\\x28\\x42\\xba\\x65\\x4b\\x07\\xf5\\x84\\xb4\\x1a\\xed\\x8f\\xc1\\xaf\\x76\\xd4\\x9e\\x8f\\xf8\\xc0\\xd3\\x1e\\x7c\\x76\\x11\\xef\\xfd\\x76\\x30\\x54\\x71\\x9c\\xaf\\x2f\\x8e\\x3e\\xd0\\x02\\x29\\x02\\xf3\\x11\\x68\\x1c\\xe3\\x13\\x85\\xe9\\xe7\\x98\\xb5\\xae\\x42\\xdf\\x9e\\xa7\\xaa\\x4f\\x52\\xcb\\xf9\\x9e\\xa9\\x48\\xbe\\x06\\x01\\x28\\x3a\\xbc\\xbf\\x18\\x68\\x88\\x75\\x82\\x1d\\x7e\\x07\\x16\\xb2\\xf6\\xd7\\x07\\x0c\\x1c\\x10\\xd6\\x7c\\x78\\xd8\\x5b\\xf5\\xd8\\x95\\x42\\xc0\\x28\\x7f\\xcb\\xf5\\x15\\x3c\\x3b\\x11\\x22\\x07\\xb2\\xa6\\xd8\\x16\\x68\\x25\\x4a\\x15\\x92\\x15\\xe7\\x07\\x33\\x96\\x85\\x7f\\x9a\\x9d\\x8a\\x70\\x3e\\xdc\\x24\\x15\\xb6\\xc0\\x26\\x2a\\xb1\\xa5\\x81\\x5c\\xe5\\x9e\\xa2\\x5d\\x7b\\x1f\\x52\\x85\\xef\\x1c\\x08\\x19\\x01\\x0a\\xb0\\xd4\\xd7\\xed\\x71\\x7e\\x46\\x81\\x58\\x9d\\x11\\x97\\x19\\x1e\\x04\\x5e\\x16\\x2e\\x29\\x0e\\x75\\x6b\\xc4\\x40\\xbb\\xfc\\x61\\x0b\\x82\\x48\\x22\\x74\\x28\\x18\\xea\\x5d\\x77\\xae\\xe9\\x7b\\xd4\\x13\\xb2\\xe7\\x81\\x85\\xc7\\xea\\xbf\\x60\\xc4\\x5c\\x89\\x7d\\xe3\\xc5\\x0d\\xdb\\xb6\\x03\\x80\\xae\\x96\\x83\\x35\\x75\\x33\\xc0\\x88\\xd9\\xf3\\x28\\x37\\xeb\\x46\\x8e\\x1a\\x5f\\x54\\x79\\xe4\\x87\\xaf\\xa8\\xfa\\xea\\x04\\x8d\\xcc\\x99\\x66\\x54\\x45\\x0e\\x1b\\xa8\\x19\\xdb\\x63\\x01\\x90\\xe5\\xdb\\x2b\\xad\\x4b\\xb7\\xe0\\xf0\\x5c\\xc0\\xd6\\xc9\\xb5\\x8d\\xfd\\x4c\\x12\\x2f\\x33\\xa5\\x92\\xcf\\xb5\\x28\\x03\\xb7\\x32\\x53\\x89\\x77\\x2e\\xae\\x34\\x6e\\x50\\x7c\\xee\\x6e\\xfc\\x77\\xf1\\xbe\\x87\\x6a\\x08\\xd1\\x83\\xfa\\xc0\\x93\\xf9\\x4c\\xed\\x41\\xc0\\x3d\\xac\\x5f\\xbc\\x95\\x37\\x8f\\xa2\\x69\\x39\\x1f\\x6c\\x1d\\xfb\\x4c\\x39\\x80\\x6f\\xe4\\x32\\x2b\\x53\\x8d\\x93\\x03\\x57\\x18\\x3d\\x62\\x83\\x76\\x76\\x62\\xa1\\x1f\\xe5\\xfa\\x34\\x83\\x98\\x16\\x94\\xe9\\xd3\\xec\\x54\\x96\\x08\\x60\\x52\\xb2\\x4c\\xf7\\x82\\x07\\x64\\x7b\\x5b\\x96\\x2b\\x0d\\x0e\\x85\\x26\\xa7\\x7d\\x53\\x1b\\x38\\x98\\x30\\x90\\xca\\x6b\\x90\\xa1\\xcf\\xc4\\xac\\x02\\xa0\\xaa\\x6f\\x10\\x58\\xfa\\xe2\\x4b\\xdf\\xae\\x89\\x5a\\xa5\\xd7\\x2f\\x7d\\x59\\xce\\xe0\\x14\\x0b\\xa0\\xb1\\xe3\\xac\\x3c\\xf4\\x7e\\xe4\\x5d\\x33\\x9e\\x06\\x05\\x61\\x4c\\x2c\\x9b\\x03\\x91\\x94\\x20\\x0a\\x08\\xa7\\x4d\\x78\\x68\\x06\\x3e\\x33\\xd9\\xde\\xde\\x76\\xa5\\x8b\\xc5\\xfa\\xa3\\x01\\xeb\\x06\\x31\\x7b\\xd0\\x3a\\xff\\x9a\\x27\\x71\\x8b\\x15\\x15\\xb6\\x59\\xaf\\xc3\\x60\\x65\\x58\\x8e\\xdf\\xfc\\xf1\\x0a\\x3a\\x3c\\x54\\x7b\\xea\\xb9\\x1f\\xe4\\x7d\\xbb\\x42\\x85\\xad\\x47\\xe7\\x1f\\xb6\\x40\\x14\\x18\\x2d\\xbe\\xbe\\x02\\xc3\\x61\\x7c\\x0d\\xa8\\x34\\xbe\\xb5\\x4e\\x7b\\x05\\x5e\\x20\\xd0\\x5c\\x31\\x58\\x71\\x07\\xa8\\x00\\x20\\x63\\x38\\xba\\x51\\x86\\xb8\\x81\\x22\\x43\\x30\\xde\\xaf\\x09\\xea\\x66\\x77\\x57\\x9d\\xa0\\xaa\\x00\\x1c\\xa6\\x9c\\x2f\\xd7\\x1c\\xd8\\x29\\x50\\x21\\xf0\\x2b\\xc7\\x6a\\xd9\\x1d\\x90\\xae\\xce\\xf2\\xf3\\xb5\\x59\\xb3\\x50\\xa2\\x6f\\x60\\xbb\\x7b\\x93\\x5f\\xfb\\xb3\\xe5\\x50\\x1c\\x6d\\xb4\\x6b\\xe3\\x25\\x07\\x1a\\x43\\xfa\\xfd\\x4c\\x31\\xbf\\x22\\xc7\\xed\\xbf\\x7d\\xe4\\xbc\\x59\\x04\\x35\\x64\\x67\\xc7\\xbf\\x78\\x5d\\x66\\x14\\x0c\\xd2\\xed\\x5c\\xde\\x8d\\xd1\\xa8\\x80\\x5a\\xec\\x90\\x1b\\xeb\\xc2\\x23\\xf5\\x37\\x35\\x61\\x33\\xa3\\xf1\\xee\\x7f\\xfc\\xb1\\x7e\\x32\\x9b\\x9d\\x6d\\xef\\x4e\\xd4\\x08\\x8c\\x3f\\x24\\xf9\\x11\\x0f\\x54\\xa4\\xdb\\x61\\xbe\\x04\\x2a\\xe0\\x1b\\x2a\\x81\\x89\\xcb\\xf2\\x4d\\xc8\\xcb\\x21\\x55\\x76\\xf9\\x5d\\xb2\\x13\\xcf\\x59\\x61\\x92\\x68\\x5e\\x9f\\x07\\x3b\\xb2\\x33\\x86\\x84\\x9b\\xdf\\xb3\\x4e\\x2c\\x09\\xbf\\xbd\\x95\\xfd\\xb9\\xbd\\x05\\x3d\\x2e\\x36\\x6d\\x02\\x75\\xbb\\xf1\\xa7\\xee\\xa0\\x2e\\x86\\xcf\\x0c\\xca\\x3b\\x51\\x32\\xcb\\x44\\x8d\\xb6\\xd1\\x2a\\x30\\x70\\x08\\x73\\xde\\x45\\x0f\\xb8\\x15\\x60\\xd4\\xba\\x8f\\x18\\x4b\\xbe\\x7b\\x2d\\xa0\\xdb\\x5e\\x8f\\x79\\xe2\\x03\\x24\\x9b\\xe0\\x4e\\xfd\\x5f\\x5d\\x68\\x4f\\xbe\\x81\\xeb\\xcc\\xa3\\x8d\\x17\\xd1\\x87\\xdc\\x64\\x36\\x9a\\x70\\x47\\xc6\\xba\\x5b\\x2a\\x16\\xda\\x6e\\xf5\\x88\\x84\\x1f\\x32\\x68\\x81\\xad\\xe6\\x57\\xa8\\xc0\\xee\\xbf\\xc2\\xf5\\x5c\\xc4\\xa3\\x3b\\xda\\x43\\x54\\x62\\x43\\x17\\xbb\\x87\\x58\\xe2\\xf6\\x5a\\xd1\\x0e\\x58\\x0a\\x83\\x8c\\x2c\\x8a\\x84\\x13\\x18\\x9d\\xde\\xc9\\x56\\x75\\xa7\\xe3\\x6e\\xa2\\xfe\\xf2\\x30\\x15\\x59\\x90\\xf7\\x1f\\x19\\xf1\\xf9\\x6a\\xea\\x61\\xb2\\xc6\\x89\\x97\\xe2\\x89\\x4b\\xb7\\xbf\\xc1\\x3d\\x4c\\x2c\\x1d\\x47\\xdb\\x9d\\xce\\x57\\xc9\\xc1\\x83\\x6f\\xfb\\x41\\x64\\x86\\xa0\\x4b\\xa5\\x8b\\x54\\x03\\xec\\xf6\\x3c\\x2c\\x47\\x1d\\xaa\\x11\\xb0\\xd4\\xa3\\x87\\xd4\\xe2\\x41\\xc8\\x83\\x2a\\xb4\\xdf\\x84\\xda\\x1d\\x3e\\x2e\\x5a\\xa1\\x98\\xc3\\x5e\\xb3\\x47\\xb1\\x77\\xc3\\x61\\xe5\\xf1\\x0b\\x23\\xc6\\xc3\\x08\\xa6\\x55\\x55\\xdc\\x58\\x02\\x09\\x2d\\x4c\\xfc\\x07\\xc4\\xd8\\x01\\xd9\\xc0\\x4b\\x6a\\x48\\xd4\\x26\\x8a\\x53\\x05\\x71\\xcf\\xe1\\xdd\\xbe\\xf2\\x09\\x12\\xba\\x59\\x3f\\x48\\xcf\\x81\\xed\\xec\\x13\\x92\\x23\\x3c\\x90\\x24\\x08\\xdd\\x61\\xf7\\x68\\x40\\x91\\xf6\\xea\\x61\\x13\\x41\\x71\\xb3\\xde\\xeb\\x72\\x1d\\xaf\\xe0\\x07\\x52\\xea\\x8f\\x3e\\x5e\\x48\\x9c\\xfd\\xbe\\xfc\\xa5\\xd6\\x59\\x43\\x69\\x5c\\x48\\x11\\x36\\x8e\\xdf\\x12\\x0a\\x13\\x61\\xbd\\xe3\\x10\\x35\\x85\\x4d\\x12\\xdf\\x86\\xdf\\x98\\x9a\\x6e\\x4c\\xa1\\x63\\x36\\x2c\\x0d\\x48\\x7b\\x7b\\x0b\\x79\\xa6\\x68\\xc4\\x2a\\x96\\x95\\xa3\\x1a\\xec\\xeb\\xad\\xba\\x92\\x17\\x59\\x24\\xaa\\x9f\\x16\\x06\\x90\\xae\\xaa\\x37\\xc4\\x1e\\x40\\x58\\x00\\x5b\\x01\\x3a\\x06\\xcb\\x2c\\xce\\xb5\\x3c\\x03\\x97\\xd7\\x73\\xdd\\x1e\\xd9\\x9f\\x14\\x40\\x89\\xae\\x9d\\xce\\x59\\x3f\\x99\\xa8\\x06\\x1d\\xa4\\x30\\x68\\x02\\x75\\x02\\x72\\x87\\x6e\\x72\\x75\\x8b\\xde\\xeb\\xf6\\x7a\\x99\\x67\\xf9\\xc7\\xb4\\x6e\\x2d\\xbf\\x66\\x13\\xb2\\x0b\\x38\\xd9\\xb4\\x62\\x79\\x9c\\xe3\\x7f\\xaa\\x27\\xea\\x39\\x87\\x87\\x50\\xfb\\xbe\\x9e\\x8e\\xc3\\xa4\\xdd\\xef\\x2f\\xca\\x0c\\x25\\x9f\\x6f\\x4b\\x80\\x62\\x4a\\x2b\\xb4\\x83\\x5c\\xa5\\x95\\x77\\x34\\x07\\xd7\\x30\\x6f\\xe4\\x69\\x58\\x4b\\x4d\\xcf\\x1e\\x58\\xd8\\x85\\xa5\\x50\\xcf\\xf9\\xa3\\x06\\x4e\\x88\\x1e\\x80\\xab\\xee\\x73\\x9e\\x74\\x4b\\x42\\x88\\xb5\\x3d\\x61\\x72\\x5e\\xc1\\xcd\\x3c\\x2d\\xa9\\xe1\\x07\\xf0\\x70\\xc0\\xaf\\xec\\x9f\\x69\\x95\\xd6\\xba\\x6c\\x3f\\xb8\\x80\\x32\\x88\\xbf\\xb4\\x2b\\xa0\\x16\\x51\\x8e\\xbe\\x43\\x5e\\x86\\x8c\\x03\\x6a\\xf3\\xce\\x8b\\xb4\\x69\\x3e\\xa4\\xab\\xc0\\x99\\x01\\x85\\xaa\\xd2\\x55\\x0d\\x2d\\x3e\\x64\\x8b\\xcf\\x00\\x27\\x17\\xfd\\x99\\x49\\x4e\\x6b\\x6b\\xa5\\x9f\\xe0\\xc5\\x97\\x0a\\xa5\\xa1\\x40\\xd0\\x55\\xb2\\x98\\x01\\x69\\xc4\\x44\\xb5\\xa6\\x47\\x0a\\xe1\\x36\\x4a\\x8b\\x32\\x88\\xd1\\x68\\xa2\\xe6\\x05\\x9f\\x94\\x22\\x1a\\xd7\\xb1\\xae\\xbc\\xf0\\x83\\x5e\\xa4\\x75\\x0a\\xaa\\x53\\xa9\\xbb\\xac\\xf5\\xdc\\x9c\\x97\\xf9\\x9f\\xfa\\x7d\\x5a\\x5f\\xe8\\x7a\\x9c\\x67\\x52\\xa6\\xe2\\xb6\\xff\\x0a\\xbe\\xca\\x88\\xa3\\xf0\\x62\\x9a\\x03\\x66\\x6c\\x9e\\x1d\\xd0\\x68\\xb9\\x1c\\xb6\\x51\\x3a\\x50\\x8a\\x52\\x33\\x3d\\x1f\\x00\\x5d\\xd8\\x3e\\xe4\\xe6\\xf2\\x15\\x23\\xec\\x4d\\xa0\\xd8\\x74\\xa5\\xa7\\x19\\xf0\\xde\\xe3\\xa6\\xad\\x03\\x1f\\x15\\xff\\xa8\\xb8\\x05\\x51\\x65\\x4d\\x5b\\xf7\\x17\\x79\\x95\\x16\\x17\\x62\\xe9\\x11\\xff\\x0e\\xa2\\x3b\\x93\\xe9\\x13\\xf2\\xc0\\xd8\\x0b\\x71\\x89\\xe6\\x2b\\x92\\x05\\x41\\xc2\\xf3\\x38\\x8e\\x52\\x0b\\xa6\\xfe\\x82\\xed\\xa1\\xf4\\x3d\\x18\\x79\\xdc\\x23\\x4a\\x61\\x6f\\x09\\xb6\\x48\\x5b\\x02\\xd1\\xd3\\xf8\\x7a\\xb3\\x7b\\x0e\\xb7\\x9b\\x8d\\x0e\\x02\\x2c\\x2c\\xb0\\x73\\xf5\\xf6\\xd5\\x60\\x3b\\x31\\xc1\\x28\\x21\\x20\\x3d\\xd1\\x60\\xce\\x1a\\xa3\\x0f\\x73\\xd8\\x55\\x90\\x99\\x97\\x99\\x5d\\x3c\\xcd\\x78\\x93\\xf4\\x8b\\xa5\\xd3\\x93\\xce\\x8a\\xdb\\x76\\x75\\x84\\x50\\xc5\\x18\\xd9\\xd2\\x8b\\xc3\\x19\\x10\\x12\\xeb\\xb6\\xf7\\x3f\\x5b\\xf3\\x78\\x96\\xf4\\x80\\x5f\\xdb\\x91\\xec\\x11\\xcf\\xf5\\x81\\x07\\x26\\xe8\\x68\\x40\\x8b\\x30\\xe9\\x62\\x5e\\x47\\x03\\xea\\x96\\x45\\x34\\x8a\\x38\\x49\\xcc\\x69\\xa1\\x83\\x07\\x71\\x50\\x3d\\x90\\xb5\\x70\\xda\\x34\\x3f\\x82\\xe6\\xf4\\x50\\xed\\xfe\\xc7\\xb8\\xaa\\xf5\\x6d\\x96\\x5f\\xde\\x56\\xc9\\x37\\xbb\\x39\\x92\\x27\\xb7\\xf8\\x80\\x3a\\x89\\xea\\x29\\x23\\x62\\xe9\\xe1\\x36\\xe3\\x72\\xfb\\x10\\xeb\\x90\\xbd\\x5b\\xe6\\x45\\x66\\x29\\xe4\\x20\\xde\\xb6\\xdb\\x00\\x22\\xed\\xa7\\xfc\\x34\\x04\\xf6\\x8b\\xaa\\xc6\\x8d\\x2a\\x42\\xe5\\x09\\xc7\\xaa\\xce\\xde\\xf9\\xde\\x2f\\x22\\x9e\\x23\\x97\\xe6\\x6f\\x1e\\x6d\\xc8\\xed\\xcc\\xd0\\xaf\\x19\\x9a\\xe7\\x83\\x0c\\xb0\\x9a\\x01\\x60\\x82\\x4d\\xec\\xbf\\x4c\\x4a\\x1b\\x90\\x9e\\x74\\x25\\xef\\x22\\x4e\\xdd\\x56\\x4c\\x8a\\x9d\\xbe\\x10\\x2d\\x3d\\xc9\\xc6\\xd3\\x91\\x5d\\x94\\x75\\x3b\\xf9\\x7b\\x49\\xbc\\x63\\xe4\\x3f\\xf2\\x0a\\x1c\\x3f\\xa0\\x25\\x9c\\x41\\xf5\\x25\\x92\\x23\\x8d\\x35\\x9d\\x7a\\x03\\x25\\xce\\x29\\x56\\x0f\\x1d\\x39\\xf3\\xd5\\x94\\xe3\\x2f\\xd0\\x63\\x8f\\x02\\x27\\x32\\x4a\\x22\\x9b\\x2d\\x4b\\x76\\x0e\\x94\\x3b\\xc8\\x67\\x1d\\x35\\x88\\x1d\\x74\\xd1\\x66\\x38\\x71\\x0f\\x64\\x2f\\xf8\\xa7\\x3c\\x74\\x43\\x30\\x16\\x97\\xf8\\xf6\\x56\\x64\\x1c\\x18\\xa4\\x0e\\xbb\\xa6\\x04\\x16\\x63\\x54\\x8f\\xa5\\x02\\x7d\\xaf\\x07\\xcb\\xee\\x83\\x8e\\xe8\\xdb\\x21\\xfd\\xae\\x22\\x41\\x90\\x64\\x9e\\xfc\\xbf\\xf5\\x1a\\xcd\\x7f\\xca\\xfd\\xc4\\x71\\xaa\\x29\\x2f\\x0e\\x37\\x91\\xce\\xb2\\x8c\\x01\\x7b\\xcc\\x3c\\x6d\\xe1\\x13\\x32\\x61\\xc0\\x6c\\x72\\xf6\\x78\\x05\\xde\\x31\\x98\\x96\\x5b\\xae\\x5f\\x95\\x9d\\x17\\x30\\x71\\x40\\x34\\x91\\xd0\\x4e\\x50\\x3f\\x78\\xc7\\x2c\\xe0\\x66\\xc4\\xf1\\x0b\\x73\\x5a\\xd2\\x7c\\x3e\\x72\\x16\\x7c\\x54\\x10\\x19\\xf0\\x75\\x17\\x29\\xc7\\xe7\\xff\\x60\\xfc\\x88\\x50\\xbc\\xfe\\x59\\xb0\\x36\\xe5\\x3e\\xa2\\x42\\x79\\xd0\\x3d\\x03\\x25\\xd7\\xb0\\x83\\x8a\\xe8\\xdf\\x3c\\xc1\\xe2\\x16\\xcd\\x0f\\x4f\\xee\\xc2\\xeb\\xae\\xa0\\x69\\xb5\\x6e\\x5a\\x12\\xec\\x05\\xef\\x12\\xb5\\xaf\\x82\\xf6\\x6f\\xc9\\xb3\\x61\\xa0\\xb3\\x09\\xf2\\x60\\x81\\x62\\x07\\x99\\xc4\\x50\\x70\\xca\\x8c\\x9c\\xd8\\x6c\\x21\\xc5\\x54\\xcf\\xb1\\xd3\\xfb\\xe4\\x6f\\xd9\\x9a\\x4a\\xa4\\x75\\x77\\x64\\x2e\\xe2\\xf1\\xe3\\x01\\x62\\xef\\x44\\xd1\\xf0\\xd9\\xcf\\x75\\x3f\\x7d\\x8e\\x9b\\x14\\xb9\\x00\\xc2\\xbd\\x85\\x97\\x95\\x1f\\x6e\\xce\\xe5\\xe9\\x39\\x57\\xce\\x5b\\x8f\\x44\\xdd\\xd4\\x09\\xb9\\x83\\x1f\\xc9\\xa9\\x17\\xbd\\xec\\x49\\xca\\xb7\\x19\\xef\\xda\\xe1\\xa6\\x87\\x5e\\x4d\\x14\\x38\\x6e\\x84\\x7e\\x1c\\x5b\\x31\\x9c\\xd7\\x98\\xdb\\xeb\\x46\\x35\\xdc\\x2c\\x11\\xa5\\xd8\\xd9\\x43\\x52\\x31\\x66\\xa7\\x10\\xe1\\xff\\xb1\\xaf\\x66\\x49\\x14\\x51\\xdd\\x3b\\x93\\xe4\\x04\\xa2\\x21\\x1a\\xa3\\xc0\\xe3\\xa3\\x61\\xa2\\x21\\x6a\\xfa\\x8c\\x34\\xe9\\x33\\xe8\\x4c\\x2a\\x47\\x87\\x3e\\x5b\\xce\\xf5\\xfb\\x4e\\xd8\\x9c\\x35\\xdb\\x2a\\xaf\\xd2\\xea\\xd3\\x67\\xb5\\xad\\x9e\\x74\\x02\\x8c\\x33\\x7d\\x74\\x53\\x7a\\x7b\\xab\\xe4\\x6b\\xec\\x79\\x37\\x78\\x52\\x11\\xa8\\x76\\xb9\\x0f\\xc1\\x46\\x90\\x1b\\xc3\\xee\\x14\\xcb\\x2b\\x44\\xa5\\x80\\xd1\\x28\\x34\\xee\\x54\\x6d\\xd3\\xe8\\x8a\\x24\\x7e\\x21\\x41\\xf9\\xa2\\x69\\x8f\\x7c\\x8b\\x81\\xd5\\x58\\x8a\\x4e\\x72\\x96\\xe7\\x6a\\x0f\\x46\\xfe\\x34\\x08\\xce\\x40\\xfb\\x92\\x37\\xe4\\x44\\xcd\\x45\\x68\\xcd\\x10\\x10\\x5b\\x82\\x09\\x31\\x3f\\x7b\\xcf\\xca\\xd8\\x12\\xac\\x69\\x97\\xe4\\x51\\xb8\\x76\\xb8\\x01\\xc2\\xfe\\xde\\xdd\\x55\\x6f\\xde\\xfe\\xf6\\xfe\\x35\\x1a\\x7f\\xe5\\x8d\\x4a\\x8b\\x42\\xd5\\x1a\\x6c\\xd1\\x9a\\x65\\x7a\\x71\\x33\\x25\\x3f\\x17\\x84\\xaf\\x00\\x3b\\xb7\\x85\\xbe\\x02\\x33\\xb1\\x46\\xe5\\xad\\x02\\x79\\x8a\\x6a\\x0d\\x25\\x40\\xe7\\xe5\\x22\\xbf\\xd0\\x05\\x28\\xb1\\xd0\\xf4\\xad\\xaa\\xcd\\x59\\xa1\\x57\\x8d\\x3c\\xdc\\x00\\xa0\\x49\\x6c\\x20\\xc1\\x04\\x81\\x89\\x8d\\xdc\\xb0\\xea\\xf9\\x86\\xbd\\xbb\\xc3\\x1b\\x7c\\xdf\\x2e\\x4c\\x28\\xf6\\xc0\\x95\\x0e\\x7f\\x65\\xd9\\x7e\\xeb\\x88\\xe1\\x84\\x54\\x13\\x4a\\x2c\\xcf\\x99\\x99\\x60\\xe5\\x60\\x44\\xe3\\x03\\x52\\x50\\x57\\xba\\x0d\\xa0\\xb5\\x09\\xfc\\x9e\\xdb\\xc6\\xd9\\xae\\x24\\x6e\\xc8\\x55\\x88\\xcf\\xf6\\x05\\x7b\\xba\\xcd\\x0d\\x95\\x97\\xa9\\x88\\x34\\xb9\\x81\\xc3\\x80\\x28\\x92\\xf4\\x84\\x66\\x08\\x38\\x7a\\x20\\xfe\\xc5\\x81\\x39\\xa0\\x2c\\x07\\x3e\\x2b\\xfe\\x88\\x73\\xf6\\x8e\\x0d\\x26\\x9d\\x70\\x16\\x39\\x3a\\x1c\\xe9\\xff\\x1f\\x1f\\x9e\\x6d\\x6a\\xeb\\x3d\\x03\\xf4\\xcd\\x9e\\x1d\\x22\\x6a\\xc1\\xe0\\x18\\x21\\x48\\xcf\\xc9\\xeb\\xdf\\x4e\\x5e\\xfc\\xfc\\xfa\\x45\\x17\\x9d\\x87\\xfd\\xc7\\x1f\\x0a\\xcb\\xb3\\xbb\\xab\\x8e\\xb5\\x16\\xe6\\xce\\x60\\x44\\x29\\xf0\\x77\\x9d\\x21\\x73\\xad\\x2f\\xb9\\xd0\\xd1\\x88\\xb7\\x55\\x91\\x9e\\xa3\\x1d\\x66\\x5e\\x22\\xf2\\xa8\\xc3\\xce\\x54\\x57\\x5a\\xe9\\xeb\\x4a\\xcf\\x5b\\x32\\x27\\x6f\\x8d\\xb2\\x47\\x0b\\x48\\xc0\\xd2\\x42\\x35\\xc6\\x90\\x0d\\x6b\\x69\\xae\\x14\\xae\\x4e\\xd5\\x98\\x95\\x46\\x20\\x18\\xd8\\x5e\\xea\\xdb\\x0b\\x7d\\x03\\xa6\\x9b\\xdf\\x2a\\x53\\xab\\x6f\\xa1\\xa0\\x6f\\x13\\x68\\x62\\x5a\\xb3\\xdd\\x28\\x41\\xfe\\xe4\\x76\\xb4\\x9a\\xfc\\x52\\x17\\x37\\xd3\\xc8\\xfa\\xfa\\x4d\\xea\\xd1\\xeb\\xb8\\xcf\\xc5\\x62\\x07\\xfa\\x07\\xb0\\x5e\\x2d\\x29\\x4f\\x1c\\xca\\x0c\\x47\\xa1\\xb8\\x07\\x54\\x88\\x11\\x55\\x5b\\xa3\\xae\\x4c\\x7d\\xa1\\xd2\\x1a\\x56\\xd5\\xdb\\xd7\\x2a\\x6f\\x9a\\xb5\\x56\\x57\\x79\\xbb\\x14\\x2a\\xec\\x33\\x6d\\x8b\\x59\\x98\\xfa\\xdc\\xb4\\xad\\x2e\\xd1\\x8c\\x15\\x1d\\x2a\\x56\\xe6\\x52\\x37\\x2a\\xbd\\x4a\\x6f\\xf0\\xd6\\xc4\\x60\\x01\\xdc\\x86\\x65\\xda\\x04\\xb6\\xcd\\x12\\xa2\\xa8\\xa3\\x12\\xbb\\x3b\\xd8\\xda\\x0a\\x16\\xc2\\x7f\\x17\\x2c\\x11\\x9b\\x33\\xe3\\x50\\xfc\\x5a\\xdb\\x43\\xd9\\x4e\\xce\\x32\\xcf\\xc0\\x92\\x17\\xe6\\xdd\\xf7\\xc4\\x43\\x17\\x41\\x46\\xcf\\x04\\xc7\\xd8\\x07\\x64\\x23\\xb0\\xd4\\xaa\\xd1\\xab\\x1c\\xbf\\xba\\x82\\x68\\xc1\\x35\\x8a\\x0c\\xfa\\xd9\\x1a\\x58\\x83\\xbd\\xb2\\xb1\\x37\\x7a\\xcc\\x4f\\xdf\\x27\\xd0\\x24\\xf2\\x7b\\xa0\\x56\\x4d\\x1d\\xdb\\xc7\\x8d\\x71\\xa5\\x03\\x60\\x40\\xc8\\x6c\\xc5\\xe8\\x68\\x01\\xd0\\x02\\xb8\\xcf\\xc4\\x29\\x24\\xc0\\x02\\x36\\xe6\\x83\\xd6\\x19\\xae\\x14\\xb0\\xa5\\x3e\\xcb\\xcf\\xd5\\x59\\xb1\\xd6\\xca\\x12\\xa5\\x0b\\x3b\\x77\\x64\\xa4\\x6d\\x4a\\xf5\\xde\\x9c\\x59\\x0e\\xed\\x38\\x5d\\xa4\\x75\\xae\\xc6\\x6c\\x4b\\xdd\\x68\\xbd\\x72\\x2b\\x2d\\x2f\\x01\\x60\\xe3\\x2f\\x2a\\x2d\\x6f\\x56\\xa6\\x76\\xe2\\xf8\\xdc\\xa0\\xc7\\xbc\\x8e\\x62\\x0f\\x40\\x34\\x61\\x3c\\x0e\\x21\\x52\\xeb\\xbd\\x00\\x36\\x39\\xf0\\xb1\\x02\\x4b\\xe9\\xd9\\xa1\\xfa\\x37\\xb6\\x8d\\xfe\\x66\\x2f\\x58\\x90\\x42\\x63\\x18\\xad\\x53\\x71\\x9f\\xf4\\x24\\x06\\xd5\\x81\\x89\\x6c\\xcb\\x7f\\x13\\xe0\\x14\\x1a\\xc9\\xb2\\x03\\x08\\x54\\xf2\\xb6\\x9c\\x9b\\x95\\x17\\x98\\x88\\xa6\\x2d\\xd2\\xa6\\xfd\\x18\\x36\\xcf\\xab\\x4a\\xd0\\xd9\\xe8\\x7f\\x6f\\x48\\x9e\\xff\\x1f\\xc1\\xe9\\x6c\\x44\\xca\\xc1\\x4b\\x58\\x3f\\x58\\x4e\\x37\\x52\\x36\\xd1\\xbf\\xe0\\xf4\\xe2\\x8f\\x02\\xf7\\x44\\xb4\\xb3\\x0b\\x67\\xd3\\x8f\\x66\\xd2\\x07\\xb0\\xd3\\x07\\x87\\x84\\xab\\x6f\\xbe\\x6e\\xa3\\xb5\\xe7\\xd8\\x1e\\xde\\x05\\x08\\x26\\x12\\xae\\xb5\\x44\\x7e\\x47\\x24\\x92\\x38\\x01\\xe3\\x91\\x84\\x58\\xee\\xf7\\xef\\x2a\\x38\\x68\\xdf\\x96\\xbf\\x42\\x90\\x8b\\xb1\\x33\\xf2\\xc6\\x9d\\xf5\\xb0\\x55\\xfd\\xe0\\xbd\\xe5\\x7d\\xf0\\x98\\x20\\x7e\\x44\\x55\\xb3\\x2a\\x4d\\xbd\\xb2\\xfc\\x80\\x37\\xf4\\x0a\\x88\\xf9\\xf8\\x4a\\x33\\x5f\\x6e\\xd6\\xb5\\x32\\x57\\x65\\x12\\xf6\\xd7\\x21\\xc5\\x4c\\xd4\\x08\\x0b\\xd9\\x00\\xc0\\x86\\xe8\\x04\\x43\\xfd\\xb6\\xdd\\xd3\\xff\\x19\\xe9\\xc0\\x75\\x84\\xf7\\x46\\x33\\xb1\\x01\\xee\\x2d\\xc0\\xee\\x25\\x00\\x07\\xdc\\xb4\\x08\\x76\\x3a\\x1e\\xd9\\x23\\x7e\\xe4\\xf9\\x4a\\x72\\x2d\\x93\\xa6\\x31\\xd1\\x2b\\x5c\\xfb\\x88\\xcb\\xe4\\xe4\\xcc\\x51\\x1a\\x75\\xe8\\x09\\x89\\xad\\x75\\x1f\\xff\\xb0\\x69\\x21\\x94\\x00\\xd4\\x63\\x95\\xd6\\x17\\xa4\\xb7\\xb1\\xdf\\xa3\\xb6\\xb5\\x66\\x94\\x4c\\xd4\\x17\\xa7\\x90\\xdb\\x0f\\x82\\xa5\\xb9\\xda\\x46\\x77\\x42\\x8a\\x92\\xf4\\x0f\\x4d\\x8c\\x11\\xd7\\xe3\\x9c\\xd7\\x63\\x97\\x12\\x9e\\x13\\x3d\\x1d\\x0d\\x07\\xa3\\x3f\\x8d\\xb4\\x83\\xa1\\x26\\x6e\\xe2\\x8a\\x1e\\x00\\xc9\\xb3\\xbb\\xab\\x7e\\xd6\\x59\\x9d\\x5e\\x21\\xfe\\xbc\\x4b\\x99\\x96\\xd9\\xae\\xa9\\xe9\\xf8\\xfe\\x0a\\x5f\\x0a\\x89\\xe3\\x7a\\x2f\\xe2\\x8f\\x25\\xba\\xd8\\x86\\xf7\\x00\\x31\\xbf\\xd4\\x2a\\xe6\\x8a\\x4a\\x9d\\xd6\\xd2\\xdb\\xab\\x35\\xec\\x4b\\x44\\xa1\\x33\\xec\\xa8\\xa4\\x75\\x9b\\x2f\\xd2\\x79\\xdb\\x78\\x48\\x19\\x3e\\x26\\x2c\\x07\\x0a\\xc3\\xf2\\x6b\\xde\\x2e\\x71\\x31\\xc8\\x85\\x3c\\x10\\xe6\\x15\\xfa\\x37\\x10\\xf5\\x4b\\x84\\x7b\\x65\\x99\\xe7\\xd1\\x62\\x21\\x4c\\xce\\x99\\x5b\\x3a\\xd7\\xed\\x8f\\x96\\x71\\xce\\xcb\\xf3\\x97\\x80\\x1d\\xfb\\xb3\\x9e\\xb7\\x63\\x12\\xdf\\x85\\x59\\x58\\x64\\x3f\\x90\\x85\\xec\\xee\\x40\\xdb\\xdd\\x6a\\x34\\x48\\x76\\x58\\xb3\\xb3\\x89\\x37\\xd2\\xdd\\x04\\x78\\xab\\x76\\xd4\\xde\\x6c\\xa3\\x45\\x6e\\xf0\\x4f\\x84\\x6a\\x55\\xdb\\xdc\\x64\\x82\\x8a\\xa5\\x3e\\x03\\x2e\\x6d\\xd4\\xb8\\x77\\x18\\xd5\\xf6\\x2b\\x5a\\xc7\\x61\\xe5\\xbe\\xa6\\x71\\x61\\x10\\x5d\\xdf\\x3c\\x78\\xf4\\xed\\x83\\x68\\xb9\\x09\\x0b\\x44\\xbb\\x30\\x51\\x43\\xfb\\x66\\x18\\x1f\\xca\\xee\\x94\\xd2\\x0b\\xbc\\xef\\xdf\\x11\\x43\\x70\\x05\\x3d\\x30\\x07\\x50\\xf6\\xbd\\x38\\x07\\xfd\\xf8\\x06\\x98\\x57\\x00\\x1c\\x10\\xcc\\x2e\\xbc\\xc6\\x25\\x13\\xe9\\x85\\xe5\\x5d\\x85\\xb8\\xea\\x16\\x16\\x96\\xcc\\x83\\x91\\xc2\\x86\\xd2\\x53\\x04\\x63\\xce\\xf0\\x0e\\xe7\\x82\\x72\\xa0\\x39\\x13\\x90\\x97\\x46\\xa3\\xc3\\xa6\\xbb\\x31\\xcf\\x4d\\x5d\\xeb\\xa6\\x32\\x65\\xc6\\x41\\x21\\x3c\\xe1\\x19\\xe3\\x26\\x3f\\xd3\\x0a\\x22\\xe6\\x4f\\x6c\\x11\\x70\\x15\\x2a\\x4d\\xab\\xda\\x9b\\x0a\\xf6\\x7b\\x99\\xd9\\xc7\\x25\\x5c\\x90\\x1b\\xca\\xac\\xb3\\x64\\x70\\x42\\xbb\\x46\\xa2\\x58\\x52\\xec\\xe4\\xef\\xcd\\x9b\\x3e\\x6a\\xd8\\x85\\xce\\x7d\\x76\\xc8\\xc2\\x33\\x5e\\x05\\x5b\\x0f\\xe1\\x89\\xfb\\x44\\x0f\\xaa\\x03\\x47\\x18\\x71\\xc4\\xd2\\x35\\x92\\xc9\\xa3\\xe3\\xf3\\x28\\x57\\xc0\\x93\\x47\\xee\\xe1\\x21\\xb3\\x27\\x4b\\x49\\x04\\xaf\\xd7\\x7b\\x41\\x72\\x60\\x01\\xd1\\x3d\\x88\\xdb\\x7a\\x17\\x02\\x51\\x3f\\x92\\x83\\xdb\\xd3\\xdb\\xfe\\x2e\\xd0\\x18\\x7c\\x75\\x23\\xdc\\x65\\xec\\x6e\\xe3\\x9e\\x7e\\x10\\x74\\x81\\x3b\\x76\\x36\\x52\\x87\\x87\\x00\\x17\\x90\\xc7\\xd0\\x86\\x62\\xfe\\x79\\xc8\\x09\\x30\\x5c\\x78\\xb4\\xc2\\x7b\\xf5\\xed\\x6d\\x10\\x57\\xf5\\x51\\x34\\xcc\\x7e\\xed\\x01\\xca\\x52\\x38\\x05\\xc4\\xc7\\x32\\xf7\\x9b\\xb6\\xf3\\xa5\\xf2\\x10\\x4a\\x6f\\x5f\\xff\\x05\\x1d\\xaf\\xdb\\x65\\x6d\\xae\\x6c\\xfb\\xec\\x8e\\x75\\x43\\x95\\x37\\x4c\\xf8\\xf6\\x55\\x69\\x4a\\x8d\\x81\\x6a\\x00\\xc4\\xf8\\xd5\\xd1\\xfb\\x7b\\xe7\\x65\\x18\\x99\\xc2\\x35\\xcf\\xc3\\x53\\x6c\\xde\\xe0\\x43\\xb6\\x85\\x5b\\x1b\\xa8\\xdd\\x30\\x59\\x9b\\x6d\\x6c\\xf6\\x46\\xc0\\x09\\x42\\xf7\\x28\\xcc\\x15\\xde\\xbc\\x15\\x91\\x42\\xfb\\x04\\xd2\\x38\\xa4\\x84\\xe8\\x18\\xd2\\x4c\\xd4\\x1a\\x78\\x3b\\x88\\xac\\x83\\xd7\\x86\\x3a\\x6d\\xb5\\x32\\x0b\\x96\\x02\\x4e\\xd5\\xc9\\x32\\x6f\\x20\\x52\\xd1\\xba\\x6c\\x54\\xda\\xa8\\xc2\\x58\\x32\\xd8\\x84\\xf2\\x21\\x16\\x0d\\x4d\\x87\\x97\\x2e\\x35\\xe9\\x1f\\x31\\x3f\\x16\\x52\\xc7\\x3e\\x2b\\xef\\x87\\x43\\x42\\x0c\\xda\\x7c\\x0b\\xee\\x58\\x9a\\x71\\xf7\\x90\\x32\\x06\\x45\\x12\\x23\\xec\\xb9\\xe1\\xdd\\x5d\\xf5\\xab\\x3d\\x30\\xd2\\x92\\x84\\xae\\xcb\\xb4\\x51\\x9f\\xd7\\x4d\\xab\\xe6\\x66\\xa5\\x1d\\x5e\\x40\\xde\\x08\\x65\\x47\\x9a\\x41\\x80\\x25\\x9c\\x11\\x88\\x66\\xc4\\xd4\\x9b\\x2f\\x6e\\xa1\\xd8\\x6f\\xa2\\xae\\x50\\x9e\\xaa\\x16\\xf6\\x8a\\x58\\x83\\x43\\x30\\xba\\x39\\x40\\xe9\\x1c\\xd0\\x89\\x7c\\x7f\\x50\\x44\\xdc\\x28\\x83\\x65\\x35\\xf3\\x5a\\xeb\\x52\\xfd\\x7d\\x9d\\xcf\\x2f\\x8a\\x9b\\xe1\\xe9\\x62\\xd9\\xcd\\x00\\x16\\xc6\\x2a\\x6f\\x1a\\x9d\\x79\\xd3\\xbc\\x18\\xe0\\x44\\x82\\x7d\\x90\\xb0\\x98\\x2e\\xb0\\x5e\\x02\\x14\\xcc\\xfe\\xdc\\x59\\x15\\x77\\xae\\x2b\\x28\\x7e\\xa1\\xef\\x10\\x4d\\x03\\x2a\\x4f\\xd4\\x17\\xd7\\x0a\\xb4\\x45\\xec\\x42\\x8c\\xfc\\xcb\\x6c\\xa2\\xaa\\x44\\x7a\\xe7\\xf5\\xb5\\x0c\\xfa\\xc0\\xd9\\xfd\\xc4\\xb2\\x30\\xa1\\x5b\\xec\\x13\\x28\\xd6\\x73\\x19\\x29\\x09\\xf8\\x49\\xd2\\x2c\\x48\\x14\\x8a\\x4a\\xd1\\xfe\\x3e\\x08\\x52\\x01\\xbe\\x5a\\x96\\xda\\x4d\\xdd\\xa2\\x11\\xf3\\xee\\x19\\x8b\\x89\\xca\\x61\\xbd\\x54\\x96\\xcc\\x30\\x3e\\x7b\\x54\\x3e\\x2c\\x1a\\x4a\\xaf\\xc6\\xeb\\xb2\\x00\\x68\\x06\\xc8\\xb6\\x5c\\x9f\\xeb\\x18\\x61\\x2e\\x55\\x60\\x6f\\xb7\\x34\\x45\\xa6\\x41\\xb6\\xbb\\xbb\\xab\\x60\\x75\\x4f\\xb1\\x1d\\x3d\\xec\\xcd\\x44\\xde\\x83\\x9a\\xbc\\x6d\\x48\\x55\\xc6\\xaa\\xa0\\xe2\\x06\\xdb\\x40\\xd7\\x27\\x35\\x26\\xb4\\x3a\\xe0\\xa3\\x92\\x09\\xd5\\x6e\\x0b\\x6c\\x4d\\x0d\\x28\\xc4\\xca\\x9f\\xca\\xe3\\x2b\\xad\\x56\\xeb\\x06\\x16\\xae\\xa5\\xde\\xb5\\xe3\\xda\\x1c\\xa1\\x47\\x81\\x34\\x1c\\xed\\x1e\\x55\\x03\\xb6\\x12\\x98\\xc2\\x34\\xea\\xed\\xfb\\xd7\\xc9\\xf0\\x62\\xae\\xbe\\x8e\\xee\\x74\\xd9\\xeb\\xbc\\x8f\\x7d\\x98\\xa8\\x0e\\x67\\xe1\\x5e\\x90\\x52\\x24\\x2f\\xe7\\xda\\x29\\x49\\xe7\\x29\\x38\\x21\\xa5\\xea\\xbb\\xc2\\xb4\\xdf\\x4d\\x18\\xdc\\xef\\x2c\\xcd\\x0b\\x65\\xd6\\xad\\xa5\\xa9\\xf3\\xa5\\x4e\\xab\\xe2\\x46\\xa5\\x0d\\xab\\x62\\x10\\xeb\\x0f\\x07\\x00\\xa7\\x14\\x6e\\xe9\\xd8\\x79\\x9e\\x29\\xc4\\xec\\xd0\\xd9\\x54\\x49\\x06\\x05\\x8b\\x80\\xe3\\xf3\\x0c\\x17\\x1f\\x4c\\x3f\\x0b\\xf7\\x6b\\x0d\\x9a\\x5b\\x55\\x18\\x0c\\x89\\x86\\x81\\xd5\\xc2\\xd5\\x85\\x45\\x84\\xcb\\xc7\\x32\\x04\\xb0\\x3c\\xda\\x86\\x22\\xda\\x5f\\x99\\x75\\x91\\xc1\\x74\\x5f\\x57\\xa8\\x31\\x9a\\xde\\xcf\\xda\\x3e\\x8a\\x89\\xab\\x47\\xd6\\x1c\\xcb\\x5e\\xa0\\x5c\\x23\\x81\\x8d\\xef\\xc7\\x1b\\x42\\x04\\x45\\xcc\\xb1\\xcb\\xdf\\xe3\\xad\\x22\\x4e\\x04\\x0a\\xe3\\x80\\xe5\\xe0\\x27\\x6c\\xc7\\x85\\xbe\\x39\\xd6\\x7f\\x8f\\x50\\x45\\x23\\x94\\x00\\x32\\x4f\\x46\\x92\\xc0\\xb1\\x0c\\x2d\\xa3\\xb2\\x70\\x93\\x41\\x94\\x6a\\x02\\x13\\xeb\\x06\\x82\\x62\\x7c\\x85\\x3d\\x18\\x64\\xd5\\xbb\\xce\\xdf\\x96\\x48\\x08\\x85\\x58\\x69\\xca\\xc6\\x0e\\xf5\\x3c\\x10\\xf4\\x79\\xfd\\x5b\\x5e\\xaa\\xb7\\xaf\\xff\\x6d\\x77\\x6f\\x86\\x04\\x82\\xa6\\x51\\x5f\\x57\\x45\\x3e\\x07\\x7f\\x0c\\x3c\\x16\\x52\\xbb\\x3e\\xed\\x61\\x5f\\xe7\\x97\\x96\\x42\\xc1\\x66\\x5b\\x97\\x39\\xc1\\xc3\\x50\\xf8\\x3c\\x7b\\x78\\x60\\x11\\xa0\\x4e\\xbc\\xd0\\x37\\xf6\\x38\\x3b\\x33\\x80\\xff\\xf2\\x3e\\x9d\\xab\\xf1\\xff\\x78\\xf2\\x2f\\x7f\\xf9\\xb7\\x84\\x3b\\xbb\\x51\\xd3\\x11\\xf1\\xd0\\x64\\xc3\\xe1\\x27\\x6f\\x95\\xce\\x6d\\xd2\\xdd\\x4f\\x7f\\xac\\x17\\xff\\x3a\\x9b\\xed\\xd8\\x3f\\x8b\\xc5\\x29\\x99\\xb6\\xb7\\xe4\\xf0\\xcd\\xb2\\xd2\\xe1\\xf8\\xa6\\x81\\x7d\\xbb\\xf0\\xb1\\xf7\\x58\\x1b\\x91\\x7d\\x5d\\xa3\\x8b\\x37\\x08\\xee\\x46\\x8b\\x55\\x12\\x09\\x17\\xbe\\x8b\\x83\\x6b\\x91\\xbb\\xa9\\x54\\xf5\\x63\\x92\\x43\\x35\\xbb\\x7e\\x32\\x9b\\x9d\\x85\\x0b\\x16\\x4c\\xe7\\xe5\\xad\\x0b\\x6d\\x9d\\x47\\xe2\\xfa\\x23\\xf3\\xef\\x65\\x2e\\x68\\x03\\x77\\xea\\x20\\xb8\\x2d\\xcc\\x57\\x53\\x7d\\xad\\xe7\\x2f\\xcd\\x6a\\x95\\x96\\xd9\\x78\\xb4\\x2e\\x33\\x33\\xf2\\x20\\x95\\xbb\\xbb\\xea\\x4d\\x8e\\x30\\x44\\xe0\\x47\\xc1\\x08\\xa4\\xc4\\x49\\x10\\x0f\\xe2\\xf0\\x83\\x4a\\x0f\\x8f\\x9b\\xae\\x34\\x3a\\xa9\\x17\\xd2\\x03\\xdb\\x35\\xdd\\xb9\\x98\\x4b\\x13\\x30\\x6f\\x02\\x05\\xd9\\x9f\\xaa\\x02\\xa0\\x6c\\x5d\\x1e\\x31\\x5e\\x36\\x41\\xc2\\x86\\x3b\\x9d\\x0f\\x09\\xf8\\x35\\x43\\x21\\x28\\x36\\xd9\\x88\\x51\\x13\\xfa\\x44\\x21\\xb6\\x04\\x38\\xe8\\x83\\xfb\\x2c\\x14\\x28\\x48\\xb4\\x37\\xfc\\xb0\\x5f\\x7a\\xe5\\x3d\\x64\\x8b\\x16\\x7b\\xea\\x3d\\x57\\xa3\\xef\\xf0\\x49\\x8f\\xc8\\x62\\x2d\\x41\\x45\\xd8\\xee\\xae\\x7a\\x65\\xca\\x6f\\x01\\x56\\xea\\x52\\x23\\x67\\xdc\\x4b\\x47\\x55\\x03\\x27\\x41\\xde\\xaa\\x55\\x7a\\xa1\\x1b\\xb5\\x58\\xd7\\xa0\\xd2\\x67\\x45\\xb8\\x65\\x3a\\x3c\\xf3\\x19\\x7a\\xd6\\xce\\x66\\x60\\x42\\x04\\x6f\\x21\\xf0\\xe5\\xd1\\x02\\x55\\x29\\xea\\x99\\xda\\xd9\\xf3\\xa2\\x6d\\xbe\\xcc\\x32\\x47\\x1b\\xdc\\xf1\\x43\\x84\\x82\\x9e\\x24\\xd0\\x6c\\xd2\\xef\\x6d\\x76\\x73\\xec\\xb8\\x38\\xf6\\x09\\x8f\\xfb\\x13\\xa1\\x64\\xc1\\x49\\xcb\\x3b\\x89\\x86\\xc5\\xe7\\x0f\\x17\\xcf\\x7d\\xbd\\x9c\\x5d\\x7a\\x15\\x6f\\xba\\x77\\xdd\\xe3\\x4a\\xdc\\x77\\x5b\\x71\\x44\\x0f\\xd9\\xd9\\x44\\xe2\\xfa\\x45\\xfc\\xe7\\x3d\\x77\\xd5\\x01\\x4f\\x44\\x5f\\xf5\\x3f\\x26\\xb8\\x40\\x57\\x65\\xaf\\xa7\\xdd\\xdc\\x84\\x21\\x1f\\x3c\\xdd\\x8f\\x74\\x18\\x85\\x5a\\x1a\\x92\\xdb\\x83\\xc9\\x00\\x26\\x8a\\x4c\\x1b\\x2a\\x0e\\x77\\xfa\\xa6\\x36\\xab\\xf7\\x66\\xdd\\x68\\x52\\x9b\\x4d\\x48\\x02\\x8f\\xf2\\xf3\\x58\\x51\\xe7\\x03\\x56\\xb3\\x25\\xa9\\x2d\\xe8\\xf6\\x16\\x98\\x68\\x34\\xaa\\xe7\\x2b\\x24\\xa0\\xc6\\x55\\xba\\x26\\x59\\xc2\\x62\\x91\\xcf\\xd7\\x45\\x3b\\xdd\\x62\\xf5\\x04\\x73\\xa2\\x14\\x2c\\x16\\xb7\\x89\\x3f\\x70\\x4d\\x59\\xdc\\xb0\\x54\\x62\\x5e\\xe4\\xf3\\x0b\\x28\\x06\\x24\\x11\\x18\\x80\\x8c\\x09\\x6f\\x13\\x32\\x65\\xf6\\x52\\xf0\\x2d\\x10\\x76\\x37\\x2b\\x47\\x72\\x74\\xbf\\x55\\xc8\\xad\\xd8\\xe2\\xec\\xba\\x9c\\x7a\\x7d\\x86\\x26\\xf9\\x9c\\x97\\xcf\\x0c\\x96\\xc2\\x08\\xd1\\x90\\x09\\x11\\xa1\\x59\\xb3\\xe0\\xcc\\x9d\\xc1\\x4b\\xf1\\xf0\\xd0\\x59\\x65\\x49\\xef\\x53\\x84\\x17\\xf3\\x85\\x27\\x83\\x48\\x60\\xb6\\x94\\x8e\\x02\\x39\\xc0\\xe3\\x7e\\x79\\x7c\\x0c\\x54\\x86\\x04\\x1d\\xf3\\xa6\\x41\\x77\\x7f\\x53\\x64\\x14\\x9b\\x1b\\x53\\xe0\\x3a\\x08\\xa5\\x22\\x94\\xd8\\x5d\\xc5\\x7a\\xbf\\x5a\\x32\\xc7\\x6a\\xb2\\x7d\\x95\\x9e\\x35\\xa6\\x58\\xb7\\x7a\\x14\\x9a\\x87\\xff\\x68\\xae\\x3b\\x75\\x0c\\x2b\\x3e\\xe2\\xd6\\xf6\\x57\\x71\\xa0\\xc0\\x24\\x64\\x5f\\x7d\\x3f\\xab\\xae\\x0f\\x14\\x86\\x90\\xa3\\xa7\\x3f\\x4a\\x22\\x87\\xa6\\xda\\x57\\x23\\xb5\\x4d\\xe1\\x53\\x74\\xd9\\xfe\\x4e\\xba\\x02\\x6c\\x14\\x29\\x37\\x7e\\x48\\x50\\x88\\x7d\\xa0\\x0a\\xbd\\x68\\xa3\\x1c\\xbf\\x85\\x39\\x48\\xdf\\xe0\\xb2\\x70\\x55\\x7f\\xee\\xc0\\x21\\xb1\\x0f\\x07\\xc7\\x01\\x20\\xf6\\x9d\\x03\\xcf\\x48\\xc5\\xe5\\x1a\\xbc\\x29\\xcf\\xcf\\xd2\\xf1\\x93\\x1f\\x7e\\x98\\x28\\xff\\xdf\\x74\\xf6\\x43\\x02\\x0e\\x96\\x6d\\x9d\\x96\\x0d\\x9a\\x26\\x8f\\xa0\\x78\\x57\\xb8\\x59\\xb7\\x45\\x5e\\x6a\\x94\\xb6\\x1d\\xa8\\x33\\xf0\\xde\\xdc\\xa1\\xfe\\xcf\\x0e\\xe2\\xef\\xe6\\x52\\xd7\\x8b\\xc2\\x5c\\xed\\x93\\x6e\\xed\\x40\\x99\\x2a\\x9d\\xe7\\xed\\xcd\\xbe\\xad\\xec\\x40\\x2d\\xf2\\xa2\\xd5\\xf5\\xbe\\x4a\\x8b\\x6a\\x99\\x8e\\xe9\\xdb\\xe1\\x0f\\xc9\\xc1\\xc8\\x2f\\x1c\\x5c\\x4c\\xbf\\xd3\\x5a\\xbe\\xd2\\x67\\x17\\x39\\xda\\x67\\xbb\\x4f\\x1e\\x21\\xb2\\xa1\\x17\\x77\\x31\\xbb\\x4c\\x68\\x90\\x68\\x43\\x36\\xfe\\x1f\\x4f\\xfe\\x75\\xef\\x49\\x22\\xcc\\x90\\x62\\x95\\x7a\\x58\\x53\\x50\\xf8\\x89\\x19\\x23\\x9b\\xe0\\xeb\\x47\\xb6\\x6b\\x88\\x13\\xdd\\xdd\\x55\\x2f\\xb2\\xac\\x51\\x23\\xdc\\x2d\\x2a\\x2d\\x8a\\x11\\x2a\\x22\\x60\\x9f\\xaa\\x95\\x25\\xa6\\x79\\xa9\\xde\\xbc\\x61\\x62\\x35\\x7c\\x2b\\x10\\xd6\\x15\\x3d\\x56\\x18\\x6a\\x24\\xc4\\x15\\x3d\\x97\\x2e\\x27\\x82\\x19\\xe4\\x78\\x03\\x28\\xba\\x18\\x43\\x82\\x73\\x21\\xd8\\xa4\\x6b\\xdb\\x0b\\xe2\\x86\\xd0\\x06\\x50\\xcf\\xdb\\x9d\\xb4\\x28\\xdc\\xad\\xf3\\xbc\\xd6\\x37\\x3a\\x83\\xeb\\x2d\\x92\\xc9\\x5a\\x23\\x14\\x26\\x5c\\x95\\x00\\xda\\xde\\xe6\\x99\\xa8\\xc6\\x60\\x19\\x70\\x59\\x4e\\xed\\x80\\xa5\\xea\\x4f\\x5d\\x1b\\x5c\\x5c\\x0a\\x41\\x27\\x1b\\x83\\xbc\\xeb\\x95\\x06\\x38\\xfc\\x22\\x6d\\x75\\x8d\\x28\\x96\\x6c\\x24\\x49\\x37\\x9d\\x56\\x9d\\x9b\\xd6\\x49\\x2f\\xa6\\x3d\\x86\\x47\\xae\\xf1\\x3f\\xa5\\xf3\\x8b\\x40\\x8f\\xde\\x0a\\x40\\xd8\\x63\\x30\\x36\\xe8\\xb8\\x35\\x12\\x34\\x29\\x0a\\x5c\\x60\\xcc\\x7a\\x26\\x4c\\xa4\\xd5\\xd7\\xed\\x65\\x5a\\x48\\xb6\\x7f\\x5b\\x8d\\x5d\\x01\\xcf\\xfd\\xbc\\xee\\x13\\x32\\x8c\\x0a\\x4d\\x69\\x6c\\xb6\\xbd\\x2c\\x1d\\x49\\xf3\\x48\\x14\\x95\\xd3\\x34\\xef\\xc0\\x2a\\xb2\\x97\\x80\\x6e\\x66\\xac\\x3c\\xb4\\x05\\x10\\xcb\\x46\\x34\\x63\\x04\\xbb\\x9f\\x9a\\xe8\\x0b\\x8a\\x46\\x03\\x42\\xe8\\xca\\xd7\\x88\\x50\\x82\\xd5\\x10\\xdf\\x4a\\x99\\xe1\\x08\\xdd\\xc1\\x33\\xd4\\xb2\\x03\\x79\\x89\\x22\\x04\\xb8\\x46\\x1a\\xe0\\x80\\xd1\\x12\\xa5\\x56\\x10\\x4a\\x0e\\x63\\xba\\xfa\\xcc\\x1d\\x13\\x96\\x95\\x4e\\xcb\\x36\\x5f\\xc1\\x79\\x68\\xff\\x3d\\x78\\x25\\xf7\\x38\\xc6\\xd6\\x7a\\x99\\x67\\xc2\\x95\\x77\\x78\\xdb\\x08\\x54\\xfc\\x8d\\xe7\\x4f\\x70\\x96\\x6d\\xf1\\xe8\\x75\\x13\\xf1\\xd7\\x5e\\xb6\\xed\\x29\\x72\\x6d\\x21\\x4f\\x73\\x96\\xd6\\x0d\\x98\\x70\\x31\\x63\\xd3\\x31\\x4e\\xf2\\x3c\\x0f\\x38\\x8f\\x13\\x73\\x94\\x30\\x4b\\xef\\x01\\xa2\\x08\\x2b\\xd6\\x8e\\xe6\\xba\\x81\\xed\\x63\\xf0\\x9a\\xd3\\xb8\\xdd\\xfb\\x35\\x5b\\x01\\x03\\x14\\x81\\x0e\\xa8\\xbf\\x2f\\x74\\xf3\\xed\\xdb\\x73\\x81\\xd3\\x28\\xde\\x3a\\x07\\x25\\x75\\xca\\x45\\x6f\\x1d\\x9c\\x71\\x39\\xe5\\xc0\\x78\\x77\\x97\\x6e\\x10\\x68\\xa6\\xbb\\xc0\\xed\\x4a\\xa6\\x90\\xcd\\x9d\\x8d\\xe2\\x37\\x6f\\xe8\\x55\\x12\\xb3\\x4b\\x4c\\x13\\x85\\x59\\x5f\\xa0\\xa1\\xcc\\xb7\\xb7\\xd5\\x53\\xb5\\x37\\x0b\\x4b\\x19\\x26\\xae\\x21\\x68\\x8d\\x1d\\x9f\\x89\\xfa\\x61\\x36\\xeb\\x94\\xdd\\x57\\x5a\\xdf\\xb6\\x08\\x22\\x71\\x0f\\x1f\\x5b\\x54\\xf6\\x56\\xf8\\xf7\\xeb\\x9a\\xf9\\x84\\x9b\\x19\\x84\\x77\\x19\\xbc\\xa8\\x6c\\x58\\x25\\x20\\xb8\\x49\\xab\\x76\\x5d\\xeb\\x9f\\x2d\\x7b\\xf5\\xd2\\xf2\\xda\\x3c\\x82\\xfa\\x3f\\x9b\\xd6\\x54\\x63\\xed\\x0d\\x63\\x56\\xf6\\xaa\\x00\\x11\\xdd\\xfb\\x16\\x92\\x59\\x2c\\xc6\\x78\\xa6\\x4f\\xd4\\x88\\x92\\x8e\\x26\\x9c\\x49\\xd8\\x62\\x72\\x6f\\x90\\x52\\x60\\x40\\x0a\\x3f\\x1a\\xa6\\xbc\\xa7\\x94\\x60\\x62\\x7a\\x8a\\xe3\\xc8\\x68\\x9b\\x75\\x7d\\x0f\\x00\\x5d\\x41\\xd4\\x10\\x78\\x0a\\x44\\x46\\xfe\\x86\\xe7\\xf4\\x99\\x24\\xfc\\xb4\\x05\\xc1\\x89\\x24\\x75\\xba\\x9b\\xed\\x52\\x06\\xf1\\x76\\x08\\x41\\x65\\x28\\xe3\\x10\\x74\\x0a\\x12\\x55\\x11\\xaa\\xbb\\x46\\xc0\\x88\\x17\\xb5\\x4e\\xc7\\x5e\\x70\\x42\\xd7\\x1c\\xec\\x28\\x3d\\x58\\x2a\\x4a\\xbf\\x9e\\x83\\x31\\xed\\xd1\\xd9\\xe7\\xb1\\x4b\\xb8\\xaf\\xbe\\xdc\\xf9\\xb4\\x5e\\x2c\\x12\\x28\\xfd\\x79\\xd4\\x38\\x55\\x9b\\x9e\\x01\\xdb\\x8c\\x74\\x83\\x52\\xb6\\xe9\\x19\\x80\\x77\\xfa\\x9b\\x51\\x94\\xf8\\xb0\\x9b\\xd6\\x2d\\x57\\x57\\xb4\\x54\\xb6\\xc8\\xd2\\xc5\\xfb\\xb8\\x02\\x99\\xe5\\xb0\\x37\\x07\\x4b\\xf9\\x8e\\x75\\xab\\xd2\\x75\\x6b\\x50\\xa3\\xdf\\x1a\\x34\\x83\\x05\\x56\\xcb\\x5e\\x1d\\x85\\xa2\\xdc\\xd9\\xee\\x9b\\x5a\\x61\\x18\\xf5\\x25\\x6b\\x19\\x7c\\x01\\x68\\xdd\\x42\\x47\\x33\\x23\\x9f\\x4b\\xed\\x2e\\x39\\xb7\\x51\\x3b\\x7d\\xc6\\xc3\\xf0\\x5c\\xc0\\xa0\\x86\\x0d\\x6b\\xa8\\x85\\x75\\x00\\x6e\\x9d\\x6e\\x7e\\x91\\xdc\\xf7\\xd8\\x4b\\x85\\xdd\\x18\\x84\\xe8\\x04\\xae\\x80\\x51\\xe2\\x50\\xe7\\x1f\\x3f\\x0e\\xca\\x72\\x01\\x15\\xcf\\x4c\\x76\\xc3\\x74\\xc8\\xad\\xba\\x26\\xbd\\x04\\x16\\xa0\\x6b\\xd5\\x02\\x32\\x28\\x70\\x19\\x1b\\x27\\xee\\x22\\x5b\\xeb\\xb4\\x38\\x5e\\x9f\\xad\\x20\\x80\\x26\\xcb\\xea\\xc8\\x8e\\xa1\\x76\\x31\\xde\\xc0\\x70\\x53\\xbc\\x9f\\xa8\\x51\\x03\\x99\\x46\\x13\\xa8\\x30\\x71\\xc2\\x43\\x5d\\x15\\xa6\\x86\\x1d\\xb5\\x4c\\xe7\\x17\\xa8\\x13\\xbc\\x40\\x5d\\x0d\\xe6\\x50\\x96\\xad\\x34\\x99\\xca\\xd0\\x56\\x09\\xc0\\x68\\x14\\x30\\x9a\\x53\\xaf\\x1b\\x75\\x76\\xe9\\x3a\\xbd\\xd4\\xd8\\xbc\\xf7\\x90\\xed\\x45\\x61\\xca\\xc8\\x3f\\xd8\\xb6\\x47\\xae\\x29\\xfb\\xec\\xac\\xd7\\xb9\\x73\\x00\\x46\\x51\\xaf\\xa6\\x0d\\x77\\x55\\xb1\\xf5\\x86\\x3b\\x19\\xfc\\xa5\\x3a\\xeb\\xcb\\x33\\x78\\x86\\x2b\\x1a\\x72\\xf1\\x22\\xcc\\x16\\x0c\\x71\\x4f\\x92\\x0d\\x59\\x83\\xf6\\x74\\xcf\\x30\\x19\\x9f\\x2b\\x3c\\x96\\x78\\x00\\x17\\x79\\x99\\x37\\xcb\\xb7\\xb1\\x43\\xcf\\x7c\\x25\\x34\\x0e\\xb6\\xf9\\xf6\\xb0\\x4b\\x2f\\x35\\xbf\\x3a\\xd7\\x2d\\x53\\xae\\x41\\x13\\x1f\\x1a\\xef\\x03\\x6f\\xe6\\xdd\\x9a\\xa1\\x4c\\x5e\\x8d\\x15\\xa4\\xc9\\x9b\\x0f\\xe9\\x07\\x69\\xe8\\x0d\\x7b\\x1c\\x54\\xce\\xe8\\x07\\x55\\xa7\\xa5\\x6a\\xaf\\xf2\\x39\\x73\\xd0\\xc1\\x48\\x7b\\x2a\\xe2\\x7c\\x8e\\x83\\x48\\xa0\\xd8\\x0f\\xe2\\x5f\\x29\\xec\\xa8\\x8f\\x1a\\xe3\\x72\\x23\\x3b\\xeb\\x05\\x79\\xce\\xf6\\x7f\\x70\\x37\\xf0\\x91\\xfb\\x80\\x2d\\xe1\\xca\\xb9\\xa9\\x34\\xa9\\x24\\x5d\\x0e\\x37\\xcd\\x87\\x6a\\xc4\\xa3\\x35\\x0a\\x11\\x52\\xfa\\xd3\\xcb\\x75\\xdd\\xe7\\x28\\xbb\\xb5\\xa9\\x77\\xa5\\x29\\x9d\\x0c\\x09\\x84\\x99\\x5e\\xa2\\x3c\\xee\\x40\\xce\\xc5\\x93\\x2d\\x87\\x3a\\xf0\\x70\\x42\\x08\\x03\\x97\\x4c\\x3a\\x9a\\x1e\\xa8\\xbb\\x89\\xa4\\x91\\x42\\x40\\x3d\\x5f\\x05\\x30\\x09\\x69\\x96\\xbd\\xd3\\xe7\\xe9\\xfc\\xe6\\x63\\x6d\\xaa\\x66\\xec\\x1b\\x86\\x03\\xef\\x9f\\xa7\\x06\\x0c\\x7e\\xcd\\x62\\x11\\xbd\\x2e\\xed\\xdb\\x32\\x7c\\x79\\xb5\\xd4\\xba\\x00\\x0f\\x85\\x8f\\xf9\\xb5\\x2e\\x2c\\x65\\x8e\\x5f\\x85\\x19\\x5e\\x81\\xd5\\xf5\\x2b\\x30\\xb9\\x16\\xaf\\x3d\\x2e\\xb5\\xdd\\x2c\\xee\\xe1\\xc5\\xba\\x35\\x61\\xc2\\xb9\\x59\\x97\\xed\\x4b\\x53\\xac\\x57\\x68\\xd6\\xe7\\x9e\\xc2\\x64\\x8b\\xbc\\xcc\\x5c\\x2a\\xff\\x10\\x26\\xca\\x9b\\x5f\\x4d\\x9d\\xbd\\x5c\\xa6\\x35\\x6c\\x17\\x7e\\xf8\\x31\\x6d\\xf2\\xa8\\x79\\x1f\\x53\\x10\\xa4\\xdb\\x3f\\x51\\xbb\\xc1\\x4b\\xc3\\xb6\\x19\\x7e\\x84\\x1f\\x09\\x18\\xfc\\x1d\\xc2\\x25\\xc8\\x4e\\x00\\x7b\\x86\\x17\\x61\\xf7\\x3b\\x2a\\x98\\x2f\\x72\\xef\\x21\\x24\\x20\\x5f\\xd2\\xf8\\x45\\xd4\\x3c\\x90\\x6b\\x7f\\x34\\x51\\xe3\\xe6\\xab\\x8a\\x2c\\xc6\\x57\\x55\\xf8\\x65\\x65\\x32\\x18\\x69\\xf8\\x1b\\x7d\\xca\\x57\\xfa\\x3d\\x7f\\xe6\\xdf\\x61\\x92\\x5a\\x37\\xa6\\xb8\\x84\\x2f\\x88\\x82\\xc6\\x4f\\x61\\xb2\\x73\\xdd\\x52\\x12\\xfa\\xd5\\x6d\\xc3\\xeb\\x6b\\xf0\\x19\\x45\\x26\\x2d\\x7c\\x11\\x26\\xd6\\xf6\\x7d\\x46\\xc5\\xf9\\x87\\x78\\x6d\\x54\\x37\\xc7\\x6d\\xda\\x6a\\x72\\x9a\\x82\\xdf\\xd1\\xb0\\xda\\x8b\\x1d\\xa7\\xf1\\x0f\\xd1\\xba\\x28\\x4b\\x5d\\x53\\x5d\\xee\\x77\\x5c\\x15\\x68\\x52\\xd1\\x3d\\x0b\\x7f\\x86\\x09\\x2e\\xf4\\xcd\\x7b\\x00\\x3e\\xc0\\x1f\\x9d\\x8f\\x1f\\x50\\x73\\x4a\\xbf\\xe2\\x75\\xf9\\xde\\x64\\xf9\\x22\\xd7\\xf5\\xbf\\xeb\\x1b\\x58\\x9a\\xe2\\x39\\x4c\\x5a\\x18\\x73\\xb1\\xae\\x30\\x99\\xfb\\x1d\\x26\\x41\\x43\\xbd\\xfc\\x4f\\xfd\\xef\\xdc\\xa4\\xe8\\x4d\\x98\\x1c\\x71\\x17\\x8f\\xdb\\x5a\\xa7\\x2b\\x07\\xc3\\x88\\x8f\\x51\\xc2\\x65\\x5a\\x6b\\xc0\\x2f\\x42\\x04\\x2b\\x9b\\x38\\x7a\\x15\\x66\\x08\\x92\\x0e\\x25\\x7a\\x07\\x4e\\x6c\\xd9\\x39\\xe8\\x2d\\xfc\\x43\\xb4\\x1a\\x22\\x1f\\x21\\xbb\\x26\\xa2\\x57\\x71\\x06\\x7b\\xe7\\xb3\\x94\\x2f\\x3d\\x4f\\x49\\xa9\\xd5\\x79\\xd7\\x97\\xc5\\xa5\\x0b\\x3f\\xa6\\x59\\xf6\\xb2\\x40\\x9a\\xc0\\x3f\\xe3\\xf5\\x81\\x0a\\x13\\x32\\x3d\\xb6\\x3f\\xa3\\x3d\\xb4\\xe2\\x02\\xe8\\x57\\xef\\x0a\\x69\\xfc\\x12\\x69\\xc8\\xf5\\xfc\\xf5\\xab\\xb7\\x27\\x47\\x3f\\xab\\x97\\x47\\x1f\\x8e\\x4f\\x7e\\xfe\\xe5\\xe5\\xc9\\xd1\\xcf\\x5b\\x5b\\x99\\x5e\\xe4\\xa5\\x3e\\xc2\\x23\\x40\\x92\\xf6\\xad\\xad\\x34\\xcb\\x30\\x54\\x18\\xb2\\x78\\xd1\\x57\\xba\\x12\\xac\\x2b\\x62\\x1c\\xc1\\xee\\xcf\\xa7\\xf8\\xb6\\x51\\xee\\x66\\x66\\xb9\\xcd\\x5a\\x23\\x90\\x23\\xdb\\xc2\\xa3\\x3d\\xe7\\xb7\\x8d\\xe7\\x9a\\xc1\\x07\\x3e\\x33\\x76\\x1a\\x0a\\x7d\\x8e\\xdb\\x6c\\x94\\xb7\\xba\\xa6\\x90\\xf2\\xe4\\x29\\x00\\xdb\\xd3\\x92\\x05\\x0a\\xd5\\x37\\x37\\x65\\xd3\\xd6\\xeb\\x79\\x6b\\xea\\x11\\x9e\\x05\\xe3\\x91\\x1a\\x25\\x5b\\x0e\\x8f\\xa0\\xaa\\x4d\\x05\\x76\\xba\\x66\\xee\\x2f\\x8b\\x8c\\x35\\x18\\xbc\\x9c\\x2e\\xd3\\xe6\\xe8\\xaa\\xb4\\xf3\\xaa\\xeb\\xf6\\x66\\x6c\\x73\\x26\\x28\\xa2\\x41\\x65\\xb8\\x6c\\xdd\\x44\\xe1\\xe7\\xa7\\x08\\xc2\\xf0\\x45\\x4e\\x81\\x2b\\xf1\\x93\\x4d\\x73\\x0a\\x41\\x80\\xd9\\x99\\x1f\\x47\\xcb\\x23\\x54\\x07\\x30\\x81\\x96\\x27\\x63\\x78\\x40\\x48\\x37\\x05\\xd3\\x03\\x0a\\xf6\\x67\\xe6\\x13\\x95\\xd6\\xe7\\x30\\x5c\\x0d\\x1a\\x0d\\x26\\x61\\x0f\\xb0\\xbe\\x04\\xa0\\x04\\xb7\\x60\\x4d\\xbf\\xcf\\xaf\\xf3\\xd2\\x26\\xc2\\x29\\x43\\xd0\\x81\\x9f\\x5e\\x7c\\x78\\xf5\\xee\\xed\\x87\\xbf\\x6e\\x6d\\x05\\xa4\\xab\\x5a\\xb7\\xc7\\x96\\x2d\\xb1\\x4b\\xe7\\xcb\\x88\\x99\\x86\\xd1\\x7e\\x88\\x4c\\x00\\x7e\\x62\\x21\\x54\\xdb\\xbe\\xea\\x43\\x35\\xc5\\x45\\xf7\\xfe\\xe8\\xd5\\x6b\\xf5\\xea\\xf5\\x9b\\xb7\\x1f\\xde\\x9e\\xbc\\x3d\\xfa\\xa0\\x5e\\x7c\\x78\\xa5\\xfe\\xcf\\x5f\\x5e\\xff\\xfc\\x3b\\xd4\\x6f\\x57\\xe5\\x75\\x5b\\xa7\\xbe\\x5f\\x2a\\xad\\x35\\x1b\\xef\\x91\\xed\\xaf\\xa5\\xee\\x76\\xa5\\xe8\\x4a\\x97\\x99\\x2e\\xe7\\xb9\\x6e\\xbc\\xa1\\x1f\\xdb\\x14\\xaa\\xb3\\x1b\\x35\\x2e\\x80\\x4d\\x49\\xd4\\x4a\\xdb\\xb3\\x31\\x6f\\x56\\x68\\xfe\\xaa\\x0a\\x93\\x66\\xb6\\x94\\xe9\\x67\\x0c\\x67\\xb5\\x6e\\xcd\\x2a\\x6d\\xf3\\x79\\x5a\\xa0\\x3d\\xa1\\xfd\\xae\\x52\\xa8\\x68\\xaa\\xc6\\x1f\\x6b\\xbd\\xd0\\xb5\\x6d\\x80\\x2b\\x07\\xd4\\xa3\\xf6\\x5a\\xa4\\xff\\xbe\\xce\\x6b\\xbd\\x8b\\xdb\\x06\\x0c\\xed\\x9a\\x69\\x22\\x87\\x11\\xbf\\xd0\\x11\\xe0\\xe6\\xb5\\x4c\\x57\\x7a\\xf7\\xbb\\x09\\xd4\\x30\\x51\\xff\\xcf\\xff\\xf5\\x7f\\x7f\\xb7\\x2b\\x24\\x2a\\x61\\x76\\x4b\\x83\\x1a\\x38\\xe3\\x00\\x6f\\xc8\\x52\\x7b\\xb0\\x88\\x5f\\x17\\x05\\xb8\\xa5\\x0e\\xa6\\x3e\\xc4\\xc4\\xa0\\x23\\x72\\xad\\x10\\x2b\\x48\\xae\\x1e\\x4b\\x12\\xba\\xad\\x7e\\xfb\\xfe\\xb5\\x3a\\x54\\xfe\\x01\\x67\\x30\\x2f\\xf3\\x55\\x5a\\x28\\xaa\\x0c\\x47\\xa9\\xbf\\xcb\\x63\\x6c\\xe5\\x00\\x0e\\xf3\\xf8\\x4b\\x6b\\x2e\\x74\\xb9\\x2f\\xbe\\x36\\x70\\x3a\\x88\\x34\\xf8\\x62\\xda\\x5c\\xe4\\xd5\\x89\\x01\\x24\\xf3\\x03\\x75\\x77\\x07\\x70\\xcd\\xfd\\xed\\x1d\\xc3\\x42\\xdd\\xad\\x8a\\x34\\x2f\\x47\\x13\\x1e\\x26\\x5c\\x59\\xbf\\x9d\\xbc\\xfe\\x70\\xfc\\xf6\\xe8\\xc3\\x71\\x4f\\x5f\\x1d\\xbb\\x10\\x42\\x3a\\xa7\\x2b\\x8d\\xad\\xef\\xf0\\xb6\\x7e\\x93\\xd9\\x44\\xa7\\x94\\x6d\\xeb\\xae\\x5b\\xf4\\x2b\\x33\\x7f\\x58\\xe9\\xe1\\xde\\x8d\\x8a\\x95\\xe5\\x4a\\x91\\x15\\xa1\\xf2\\xf1\\x23\\xd0\\xe9\\x01\\xf6\\x3c\\x28\\x83\\x85\\xa0\\x87\\x6a\\xf4\\xc3\\xf4\\xfb\\xd9\\x74\\x36\\xda\\xda\\xa2\\x41\\xf7\\xa9\\x0e\\xb6\\xb6\\xee\\x92\\x24\\x39\\xf8\\x7f\\x03\\x00\\x00\\xff\\xff\\x25\\x1e\\x3d\\xf3\\xcd\\x99\\x05\\x00\")\n\nfunc vendor_codemirror_codemirror_js() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_codemirror_codemirror_js,\n\t\t\"vendor/codemirror/codemirror.js\",\n\t)\n}\n\nvar _vendor_codemirror_matchbrackets_js = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xac\\x58\\xdf\\x73\\xdb\\xb8\\xf1\\x7f\\xd7\\x5f\\xb1\\xd6\\xf7\\x3b\\x2e\\x31\\xa6\\x29\\xb9\\x7d\\x49\\x25\\x2b\\x9e\\x5c\\xce\\x9d\\xb8\\x8d\\x73\\x99\\x4b\\x66\\xfa\\xe0\\x73\\x3b\\x10\\xb9\\x14\\x71\\x26\\x01\\x16\\x00\\x25\\x6b\\x64\\xfd\\xef\\x1d\\xfc\\x20\\x09\\x4a\\xb2\\x73\\x0f\\xbd\\xb9\\x8c\\x60\\x60\\xb1\\xbf\\xf7\\xb3\\x0b\\x4e\\x26\\xf0\\x51\\x64\\x78\\xcf\\xa4\\x14\\x32\\x86\\x54\\xd4\\x5b\\xc9\\x56\\x85\\x86\\x28\\x25\\xb0\\xdc\\xc2\\x3d\\x95\\xec\\x77\\x0e\\x9f\\xe8\\x1a\\xe5\\x12\\x9f\\x10\\x28\\xcf\\x40\\xe8\\x02\\xa5\\x1a\\x4d\\x26\\xf0\\x33\\x53\\x5a\\xb2\\x65\\xa3\\x31\\x83\\x86\\x67\\x28\\x81\\x72\\xb8\\xbf\\xfb\\x0e\\x25\\x4b\\x91\\x2b\\x9c\\x41\\xa1\\x75\\x3d\\x9b\\x4c\\x52\\x91\\x61\\x65\\x85\\x24\\x1c\\xf5\\xe4\\xf3\\xdd\\xc7\\xdb\\x2f\\xdf\\x6e\\x47\\xa3\\x28\\x6f\\x78\\xaa\\x99\\xe0\\x51\\x25\\x32\\x02\\xbb\\x11\\x00\\xcb\\x21\\xd2\\xdb\\x1a\\x45\\x0e\\xf8\\x5c\\x0b\\xa9\\x15\\x2c\\x16\\x30\\x16\\xcb\\xdf\\x31\\xd5\\x63\\x38\\x3f\\x07\\x7f\\x5a\\x89\\xac\\x29\\x31\\x3c\\x24\\x60\\xed\\xa9\\x2a\\xc1\\xff\\xfe\\x6d\\x04\\x00\\x86\\x26\\x92\\xf8\\x9f\\x86\\x49\\x8c\\xc6\\x49\\x32\\x49\\x92\\x49\\xc9\\x96\\x81\\x3a\\x63\\x42\\xe6\\x23\\x00\\x2c\\x15\\x86\\x92\\x33\\xcc\\x19\\x77\\xbc\\x5b\\x0d\\xad\\x68\\xb7\\x9f\\xd0\\x2a\\xb3\\xb2\\x3e\\xdc\\xff\\x6c\\xc5\\xb8\\xed\\xe8\\xe1\\xb4\\x88\\xc7\\xd8\\xe8\\xd1\\xcb\\x99\\x4c\\xe0\\x6b\\x49\\x19\\x87\\xa5\\x14\\x1b\\x85\\x12\\x90\\xaf\\x3b\\x6d\\xfb\\x70\\x90\\xf9\\x68\\x4f\\x7a\\x07\\x05\\x07\\xd6\\x4f\\x6b\\x2a\\x81\\xe1\\xbf\\x4b\\xfd\\x0e\\x16\\x30\\xb9\\xff\\x76\\x77\\x0b\\xbf\\x65\\x93\\x44\\xa3\\xd2\\x11\\xa7\\x6b\\xb6\\xa2\\x5a\\xc8\\xa4\\x51\\x28\\x3f\\xac\\x90\\x6b\\x02\\xe7\\xe7\\x56\\x48\\x94\\x89\\xb4\\xa9\\x90\\xeb\\xa4\\x5d\\xdc\\x8b\\xcc\\x9a\\xca\\x9b\\xb2\\x84\\x97\\x17\\x38\\x4d\\x70\\x0d\\xef\\xc8\\x7c\\xe4\\x05\\x7f\\x15\\x0a\\x16\\x41\\xea\\x24\\x5f\\x85\\xea\\x0e\\x2b\\xaa\\xd3\\x82\\xf1\\x15\\x2c\\x60\\x37\\x8e\\xc6\\x33\\x18\\x93\\xf7\\xe3\\x18\\xc6\\xc4\\x2c\\xa3\\x6b\\xb3\\x7c\\x30\\xcb\\x47\\xbb\\xfb\\x68\\x96\\x0f\\x76\\x77\\x67\\x96\\x7b\\xbb\\xbb\\x37\\xcb\\xdd\\xf5\\x78\\x6f\\xb9\\xb6\\x4e\\x80\\x9c\\xf1\\xec\\xde\\xb3\\xff\\x49\\xd2\\xf4\\x09\\x75\\x94\\x56\\x31\\x6c\\x0a\\x94\\x68\\xf2\\x97\\xe7\\x6c\\xe5\\xfc\\xe3\\x74\\x29\\x6d\\x18\\x21\\xad\\x92\\x15\\xea\\xcf\\x8c\\xe3\\x27\\xca\\xb3\\x12\\x23\\x7b\\x21\\x31\\xa7\\x24\\x86\\xda\\x5a\\xe3\\xb6\\xd2\\x02\\x2e\\xe1\\x6a\\xde\\x31\\xa0\\xb9\\x46\\xf9\\xb1\\x91\\x4a\\x48\\xc3\\xc7\\x0a\\x30\\x99\\xe0\\x56\\x49\\x70\\x6c\\xaf\\x98\\x1c\\x1a\\x5c\\x71\\x6e\\x25\\xf6\\x10\\x0e\\xb8\\x4d\\xa2\\x7f\\xbd\\x00\\x49\\xab\\xcb\\x9c\\xea\\xcb\\xd4\\xee\\x46\\xff\\xff\\x02\\xc4\\x47\\xd1\\x29\\xfd\\x4f\\x49\\xeb\\x1a\\xe5\\x6d\\x89\\x26\\x14\\x11\\x49\\xd2\\x92\\x2a\\xf5\\x85\\x56\\x48\\x46\\x96\\xab\\xc9\\x43\\x70\\xb7\\x81\\x29\\x9f\\x8b\\x19\\x50\\x05\\x4b\\xd4\\x1b\\x44\\x0e\\x7a\\x23\\x20\\x2d\\xa8\\xa4\\xa9\\x46\\xa9\\x62\\x58\\x36\\x1a\\x18\\x37\\xff\\xaf\\x59\\x05\\xa9\\xa8\\x2a\\x53\\xd6\\x95\\xc8\\xb0\\x65\\x18\\xb1\\x04\\x13\\xe0\\xc2\\xd0\\x29\\x94\\xda\\x1e\\x92\\x18\\x74\\x81\\x81\\xa8\\x35\\x53\\x0d\\x2d\\xcb\\x2d\\x48\\xac\\x25\\x2a\\xe4\\xda\\xc9\\xa5\\x2d\\x9b\\x82\\xad\\x8a\\xd2\\xe0\\x09\\x66\\xb0\\x14\\xcf\\x20\\x38\\x68\\x51\\x83\\xc8\\x2d\\xa3\\x3f\\xf3\\xac\\x57\\x2b\\x81\\x5f\\x0c\\xac\\x6c\\x98\\xc2\\x18\\x36\\x08\\xb4\\x2c\\xc5\\xc6\\xa5\\x12\\xaa\\x96\\x5f\\x2e\\x45\\x05\\x4b\\xcc\\x85\\x44\\x10\\x3e\\x36\\x81\\x4e\\x49\\x17\\x35\\x7b\\x0f\\x16\\x10\\x9d\\x85\\x1e\\x3f\\x3f\\xb7\\xa1\\x7e\\xbf\\x80\\xa9\\x59\\xb7\\x79\\xfa\\x60\\xd2\\x20\\xd1\\xf8\\xac\\x13\\xa3\\xce\\x07\\x1d\\xd5\\x42\\x91\\x47\\x02\\x2f\\x2f\\x3e\\x6c\\xf0\\x06\\xed\\xc5\\x85\\xa5\\x9e\\x77\\xe1\\x3f\\xb3\\xb4\\x04\\x24\\xea\\x46\\x72\\x1b\\xfe\\x3e\\x9d\\x32\\x66\\x02\\x6f\\x29\\x5a\\x06\\x57\\xc4\\xe2\\xcc\\xfb\\x31\\xdc\\xc0\\x15\\xcc\\xe0\\xf2\\xaa\\xe7\\x75\\x94\\x6f\\x06\\x6f\\x53\\x6d\\x36\\x22\\xc3\\xea\\x3d\\x4c\\x09\\x9c\\x2d\\x20\\xb2\\x29\\xdc\\xe7\\x30\\x79\\x45\\xbc\\xd2\\xdb\\xb2\\xaf\\x87\\xef\\xe2\\x09\\xf9\\xf7\\x6d\\x8d\\x1f\\x74\\xf4\\x55\\xa8\\xa0\\x28\\x5c\\x4d\\x5c\\xc0\\x15\\x71\\x35\\xef\\x6e\\xe7\\xa2\\xe1\\x19\\x2c\\x40\\xa5\\x94\\xff\\x4d\\xc8\\xb0\\x00\\x4f\\x5f\\x6f\\x75\\xf4\\x96\\x4d\\x09\\x89\\x8d\\x07\\x62\\xaf\\xc7\\xcb\\x8b\\x55\\xaf\\xab\\xdb\\xde\\x6e\\x2f\\xc9\\x17\\xcf\\xb1\\x2d\\x7e\\x63\\x67\\x12\\x62\\x76\\x4a\\xb8\\xc9\\x55\\x31\\xf3\\x1a\\x9f\\x9f\\xbb\\x45\\x52\\x0b\\x15\\x77\\x21\\xed\\xc2\\x7a\\x44\\x66\\x52\\xe7\\x20\\x48\\x53\\x12\\x43\\x2e\\xe4\\x86\\xca\\x6c\\x06\\xde\\xaa\\xbd\\xd1\\x65\\x6f\\xdc\\x33\\x99\\xc0\\xd2\\x39\\xe3\\x57\\x5c\\xe1\\xb3\\xa9\\x8d\\x46\\x61\\x06\\x5a\\x80\\xaa\\x31\\x65\\xf9\\x16\\x36\\x05\\x4b\\x0b\\xdb\\xba\\x4c\\xfa\\x7b\\x6a\\x4b\\x90\\x52\\xee\\x58\\xa8\\x42\\x34\\x65\\x06\\x4b\\x04\\x0a\\xd2\\xf0\\xa9\\x63\\xc0\\x64\\x95\\xc0\\xe4\\xe1\\xe1\\xb7\\xc7\\xc7\\x89\\xa5\\x72\\xa4\\x5f\\x84\\xc6\\x19\\xdc\\xe5\\x30\\xb6\\x76\\x8f\\x8d\\x44\\xc1\\x4d\\xf7\\x15\\x35\\xf2\\x96\\xbd\\xad\\x57\\x0e\\xba\\x60\\xaa\\x93\\xc8\\x14\\xb0\\x15\\x17\\x12\\xb3\\x24\\xe0\\xf7\\xab\\xf5\\xa7\\x82\\x9c\\x9a\\x06\\xb5\\x31\\xb7\\xb8\\xe8\\xee\\x6c\\xa8\\x72\\x9e\\x89\\x5d\\x8f\\xb0\\xe7\\x4c\\x83\\x44\\x9a\\x16\\x98\\x39\\x16\\x15\\x7d\\xfe\\x96\\x52\\x6e\\x30\\x56\\xd9\\x31\\x61\\x45\\xd7\\x08\\x4d\\x1d\\xc2\\xf7\\x89\\xc4\\xf1\\xc8\\xdd\\x67\\xc5\\x29\\x14\\x6f\\x79\\x23\\x37\\x35\\x7d\\x54\\x14\\x81\\xe8\\xcf\\xc8\\x57\\xba\\x30\\xa5\\x0b\\x57\\xd3\\xe9\\x74\\x3a\\x3f\\xe2\\x61\\xf5\\xfb\\x01\\x17\\xd5\\x31\\x08\\xb2\\x5f\\x69\\x9a\\x3e\\xc1\\x02\\x1e\\x1e\\x7b\\xa6\\x12\\x4f\\x35\\x85\\x41\\x2e\\xdc\\x9c\\xdc\\x9d\\xc1\\xe4\\x21\\x22\\xbb\\xbd\\x0d\\xec\\x7c\\xd0\\xae\\x6e\\x6d\\x8d\\xf5\\x95\\x73\\x4f\\x75\\x91\\x54\\x8c\\x07\\x29\\x0e\\x17\\x03\\x73\\x62\\x53\\xcf\\x25\\x55\\xb6\\xc1\\x45\\xc4\\xd6\\xed\\x20\\xcd\\x87\\xff\\xcd\\x3c\\x4b\\xfa\\x6c\\x5a\\x4c\\xce\\x64\\x77\\xf1\\x12\\xae\\x7c\\x44\\x9c\\x98\\xcb\\x81\\x18\\x5f\\x9f\\xb9\\x90\\x10\\xb5\\xca\\x7e\\x11\\x5d\\xe7\\x34\\x7f\\xce\\xdb\\xcd\\xb3\\x45\\x6b\\x4b\\xb7\\x75\\x61\\x8d\\x6a\\xc3\\xfa\\x4a\\x7b\\x8e\\x1c\\xb1\\x17\\xe5\\x01\\xd5\\xb6\\x69\\xe3\\x46\\xcd\\x78\\x83\\xf3\\xe0\\xbe\\xeb\\xdc\\xbd\\xaf\\xa6\\x30\\xb3\\x3c\\x93\\xd2\\xe6\\x81\\x33\\x08\\x0f\\x1c\\x1a\\x12\\xf4\\x70\\xeb\\x64\\x85\\x67\\xef\\x83\\xbc\\x3b\\x16\\xdf\\x52\\x1b\\x0f\\x84\\x2e\\x20\\xc7\\xe3\\x84\\x85\\xc1\\xeb\\x00\\x06\\x5b\\x1e\\xd6\\x95\\x73\\x7b\\xe1\\x6c\\x61\\xf4\\x74\\xeb\\x43\\x4f\\x39\\x5b\\x6d\\x43\\xb3\\xfa\\x05\\x5d\\x6a\\xde\\x91\\x18\\x7d\\x24\\xfa\\xc9\\xa1\\x20\\xb6\\x45\\x78\\xb8\\x5f\\x2c\\xec\\x74\\xee\\xe6\\x82\\x97\\x97\\x57\\xd0\\xdf\\x19\\x13\\x20\\xbf\\xb1\\xcb\\x72\\x20\\xa1\\x2a\\xc3\\x06\\xdb\\xf5\\xc5\\xb4\\x78\\x9c\\x07\\x34\\x46\\x9b\\xe8\\x74\\x9b\\xb3\\xbf\\x5d\\xf7\\x22\\xae\\xae\\x92\\xba\\x51\\x85\\xd1\\x3b\\x64\\xd2\\x4d\\xe5\\x67\\x8e\\xa6\\xf4\\xc5\\xdd\\xa2\\x7f\\x2d\\x94\\x03\\xff\\x40\\x75\\x12\\x83\\x41\\xf4\\xb4\\xd8\\x1f\\x71\\xf2\\x82\\x44\\x1d\\x05\\x52\\xf6\\xa3\\xf0\\x77\\x1f\\x76\\x17\\x1f\\xdd\\x4b\\xd7\\xb4\\x17\\x61\\x37\\x1b\\xd6\\xdb\\x0c\\x86\\x75\\x44\\xe0\\xc6\\x23\\xe9\\xac\\xeb\\x59\\xfb\\xc1\\x1c\\x6b\\x3d\\xe3\\x61\\x50\\x59\\x1c\\xa4\\x8d\\x16\\x69\\x89\\x54\\x1e\\xe2\\x9f\\x7b\\x66\\xd1\\x65\\x89\\x16\\x8f\\xb1\\x1f\\xaf\\x19\\x87\\x52\\xf0\\x95\\xd5\\x53\\xc5\\xa0\\x18\\x4f\\x11\\x98\\xfe\\x53\\x59\\x42\\x4a\\x1b\\x85\\x50\\x34\\x2b\\x2c\\xb7\\xa0\\xcc\\x24\\xd5\\xd4\\x19\\xd5\\x7e\\x92\\xf2\\x70\\xf8\\xa9\\x9d\\xce\\x1c\\xae\\xa6\\x55\\xa2\\x34\\xd5\\x98\\x0c\\x94\\x4b\\x06\\x84\\x1d\\xc2\\xf6\\xf8\\xd8\\x33\\x94\\x4f\\xca\\xc2\\x63\\x0c\\x92\\xf2\\x95\\x45\\x59\\xe3\\x27\\xa6\\xf4\\x37\\x2c\\xd1\\x1a\\xae\\xa2\\x43\\x10\\x61\\xb0\\x80\\xe9\\x1c\\x18\\x5c\\xfb\\x5b\\x3e\\xca\\x73\\x60\\x17\\x17\\x43\\xb0\\x68\\x73\\xce\\xd1\\x3d\\xb0\\xc7\\x04\\xab\\x5a\\x6f\\x23\\x9b\\xeb\\xaf\\xbd\\x0c\\x7a\\xe2\\x02\\x69\\x76\\x30\\x6a\\xb8\\x3c\\x75\\x7c\\x0d\\x7c\\xf7\\x30\\xe4\\x52\\xd7\\x8c\\x17\\xae\\xa8\\x5b\\x4c\\xb8\\x5e\\x1c\\x7a\\xee\\xb0\\x4c\\xdb\\x11\\xcb\\x71\\x70\\xbc\\x6f\\x60\\xdc\\xbf\\x95\\x2e\\xdb\\x00\\xfa\\x86\\x30\\x86\\xd9\\xe0\\x98\\x0b\\x7e\\x48\\x31\\x0f\\xe6\\x50\\xf9\\xa4\\x7c\\xb1\\x54\\x89\\xf9\\xeb\\x3b\\x3e\\xeb\\x40\\x5d\\x37\\x8a\\x1d\\xa8\\x1f\\x43\\xb0\\x91\\x16\\xb6\\xbc\\x63\\xd8\\x75\\x2f\\x89\\x99\\xd3\\x7a\\x4f\\x0e\\xf0\\xc4\\xdd\\xd2\\xe2\\xa4\\x73\\xb4\\xf8\\xa1\\x6b\\x46\\xe1\\xa4\\xf5\\x86\\xe2\\x5a\\x84\\x6a\\x7b\\xc6\\xad\\xd2\\x5a\\xfc\\x31\\x95\\xdb\\x0a\\x1e\\xf5\\xda\\x1b\\x91\\x2d\\x68\\xb4\\x51\\x9a\\x4c\\xe0\\x1f\\x65\\x93\\xad\\xd0\\x0c\\x5f\\x1b\\x21\\x9f\\x80\\x4a\\x3b\\xfe\\x99\\x77\\xc4\\xdd\\x2d\\x2c\\x9b\\x95\\x7b\\x67\\x30\\xa5\\x1a\\x84\\xff\\xbb\\xba\\xfa\\xeb\\x5f\\x7c\\x53\\x04\\x33\\xf7\\xf7\\x6c\\x18\\xaf\\x1b\\x0d\\x4a\\x8b\\x5a\\xc1\\x4a\\x98\\x8a\\xd4\\xc2\\x72\\x31\\x64\\x54\\xda\\x39\\x6a\\x6d\\x1f\\x28\\x4c\\x41\\xce\\x24\\xaa\\x24\\xc8\\x3a\\xff\\x76\\x77\\x9e\\x75\\x85\\x97\\x8b\\xd4\\x8c\\x8d\\xc4\\xc2\\x89\\x59\\x47\\xed\\xf4\\xed\\x3b\\x80\\xc1\\x07\\x58\\x74\\x30\\x12\\x85\\xb9\\x97\\x56\\x89\\xa8\\x51\\x52\\x7b\\x70\\x92\\xe2\\x74\\xd5\\x85\\x5e\\xf2\\x45\\x67\\xb7\\x4c\\xc9\\x58\\x81\\x03\\xb4\\xec\\xbd\\x1d\\x56\\x50\\x07\\x5e\\x04\\x14\\xea\\xef\\xac\\x42\\xd1\\xe8\\xc8\\xc3\\xd9\\xbb\\x69\\xdf\\xf0\\x2c\\x0e\\x7b\\x78\\xb5\\xc7\\xf3\\x0e\\x76\\xf7\\xed\\xe7\\x83\\xb4\\x91\\x12\\xb9\\x2e\\xb7\\x9f\\x82\\xd7\\xe3\\xa2\\x03\\xd2\\x0e\\x43\\x33\\x71\\x7f\\x80\\xa2\\xad\\xb1\\x3f\\x72\\x85\\x7d\\x59\\x9d\\x90\\x42\\x60\\x77\\x6a\\x3b\\x22\\xf3\\x37\\x95\\x6a\\x5b\\xc8\\x2b\\x34\\xc7\\x58\\x6f\\x7b\\x43\\xfc\\x0a\\xe0\\x7a\\x5f\\x39\\x4f\\x5b\\xa7\\x04\\x9f\\x59\\x5c\\x13\\xff\\xa5\\xb6\\x06\\x8d\\x07\\xf7\\xc6\\x1d\\xdf\\xce\\x62\\x23\\x6b\\x4d\\xcb\\x18\\x44\\x99\\xb5\\xd6\\x1b\\xdb\\x45\\x69\\x1f\\x3b\\xe6\\xe7\\x6c\\xf0\\x15\\xe7\\x8e\\x33\\xdd\\xbb\\xc9\\xb8\\x31\\xcf\\xa3\\xb1\\x7b\\x5c\\x7f\\x48\\x35\\x5b\\x33\\xbd\\x1d\\xc7\\x87\\x9e\\x1f\\x80\\xe9\\xff\\xdc\\xaf\\xfb\\x4e\\xed\\x35\\x2d\\x07\\xca\\x9d\\x70\\x1e\\x2c\\xda\\xaf\\x83\\x6b\\x5a\\x0e\\xbe\\x1b\\xde\\xd8\\x9d\\x19\\xec\\xba\\xc4\\x35\\xe6\\xf1\\x3f\\x6c\\x9d\\x4d\\x51\\x57\\x8e\\x47\\xf1\\xb8\\x7d\\xd6\\xc8\\xd5\\xe9\\x90\\x04\\xd9\\x37\\x4c\\x04\\x83\\x0a\\x31\\x68\\xd9\\x20\\x99\\xbb\\x60\\xbf\\xc5\\xf7\\x44\\x7b\\x0b\\xb9\\x9b\\x87\\xad\\x6f\\x6d\\x36\\xda\\x1f\\x5d\\x97\\xeb\\x26\\x88\\x9f\\x68\\xfa\\x64\\xde\\xae\\xea\\x32\\x15\\x55\\x4d\\x35\\x5b\\xb2\\x92\\xe9\\x2d\\x3c\\x59\\x24\\x0c\\x13\\xc3\\xdd\\x34\\xed\\xdd\\x3b\\xd2\\xbf\\x6e\\x8c\\x2f\\x97\\x42\\x94\\x48\\xf9\\x78\\x58\\x49\\x67\\xbd\\xbc\\x10\\x8e\\xfc\\xb5\\x76\\x71\\x03\\x3b\\xf7\\xed\\x62\\x66\\x6d\\xde\\xfb\\xd1\\xa8\\x45\\x13\\x87\\x0c\\xfd\\xf5\\x8e\\x67\\xfb\\xc5\\xa3\\x65\\x74\\x2c\\xa0\\x23\\x7d\\x7d\\x92\\x3b\\x35\\x1c\\x38\\xff\\x07\\x8e\\x23\\xa3\\xb6\\xea\\xde\\x0a\\xc4\\xf0\\x09\\x7b\\x14\\x83\\x13\\xef\\xd8\\x5d\\xa8\\xc9\\xc1\\x0b\\x38\\x50\\xe2\\xc4\\xcd\\xb9\\xd7\\xc8\\xfc\\xfb\\x6f\\x00\\x00\\x00\\xff\\xff\\x34\\x36\\x5b\\x14\\xaa\\x17\\x00\\x00\")\n\nfunc vendor_codemirror_matchbrackets_js() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_codemirror_matchbrackets_js,\n\t\t\"vendor/codemirror/matchbrackets.js\",\n\t)\n}\n\nvar _vendor_codemirror_material_css = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xac\\x56\\xdd\\x6e\\xe2\\x3a\\x10\\xbe\\x3e\\x79\\x8a\\x39\\xea\\x0d\\xa0\\x84\\x90\\x04\\x02\\xa5\\xd2\\x91\\x80\\xc2\\xcd\\x51\\x77\\x9f\\xc1\\x71\\x86\\x60\\x11\\xdb\\xd4\\x9e\\xb4\\xcb\\x56\\x7d\\xf7\\x55\\x0a\\x5d\\xc2\\x5f\\xa0\\xec\\xd6\\x95\\x2f\\xf0\\xf7\\x33\\x3f\\x66\\x8c\\xdf\\x72\\x1c\\x00\\x80\\x6f\\x4c\\xe2\\x10\\x36\\x7f\\x92\\x11\\x1a\\xc1\\xf2\\x8f\\x83\\x51\\x41\\x0b\\x6d\\x36\\x47\\x4f\\x82\\x2f\\x18\\xe6\\xf0\\x3f\\x93\\x42\\xd9\\xe5\\x1a\\x1a\\x0b\\xa2\\xd5\\xd0\\xf7\\x33\\x41\\x8b\\x22\\x69\\x73\\x2d\\x7d\\xb9\\xdc\\x1e\\x06\\x41\\x73\\x23\\xfd\\xdd\\x88\\x4c\\x28\\x96\\xff\\xd6\\x05\\xae\\x73\\x6d\\xc0\\xf2\\x05\\x4a\\x84\\x64\\x0d\\x4f\\x8c\\x48\\x30\\x18\\x59\\xd2\\x46\\x28\\xbd\\x91\\xb5\\xfb\\xba\\xf8\\x5c\\x08\\x55\\x58\\xcd\\x85\\xf6\\x3f\\x85\\x3c\\x2a\\x15\\x9a\\x8e\\xd3\\xf2\\x1d\\xa7\\xcd\\xa5\\x67\\xbd\\xcf\\xa3\\xf6\\x44\\xa7\\xf8\\x24\\x8c\\xd1\\x06\\xde\\x9c\\x7f\\x12\\xc6\\x97\\x99\\xd1\\x85\\x4a\\xbd\\x0f\\xf3\\x21\\xdc\\x85\\x41\\xb9\\x1e\\x1c\\x00\\xbf\\x75\\xe2\\x38\\x8a\\xcb\\xf5\\xd0\\xf2\\x1d\\x80\\xed\\x67\\x26\\x4b\\x58\\x23\\x8c\\x22\\x17\\xc2\\xa8\\xbf\\xdd\\x82\\xe6\\x83\\xf3\\x7e\\xe0\\x0d\\x15\\x73\\x2f\\x2b\\x88\\xd0\\xd8\\xfd\\x20\\x6e\\xb5\\x6f\\x0c\\x22\\x37\\x08\\xfb\\x6e\\x10\\xc6\\xcd\\x92\\x9a\\x68\\x93\\xa2\\x19\\x82\\xd2\\x0a\\xaf\\x8a\\x43\\x32\\xb3\\x44\\xe3\\xc2\\x95\\x40\\xcf\\x16\\x09\\xe5\\x58\\x8b\\xcf\\x85\\x42\\x55\\xc8\\x04\\x0d\\xbc\\x9d\\x0b\\x15\\x6a\\x43\\xe3\\x85\\xb1\\x65\\x9b\\xb6\\xe9\\x78\\x39\\xce\\x69\\x08\\xc1\\xea\\x07\\x58\\x9d\\x8b\\x14\\xee\\xe6\\x83\\xf9\\x60\\xde\\x39\\xa1\\x92\\x8a\\x97\\xaa\\x90\\xc5\\x1c\\x39\\x61\\x5a\\x4a\\x55\\x6a\\xbd\\xe9\\x5b\\xaf\\xe7\\xc2\\x6e\\xeb\\xb4\\x83\\xde\\x89\\xb8\\xaa\\x6a\\x73\\xcd\\x0b\\x8b\\xe9\\x9f\\x99\\x74\\x2e\\x25\\x5f\\x96\\x6f\\x38\\xdc\\x88\\x0a\\xad\\x2e\\x96\\x1a\\xfe\\x03\\xbb\\x62\\xea\\x06\\xca\\x31\\xf3\\xaf\\xa6\\xe0\\x49\\xfd\\xd3\\xbb\\x21\\x8f\\xdb\\x78\\x67\\xe8\\x5f\\xc9\\xa8\\x2e\\x25\\xc6\\x49\\xbc\\x60\\xe9\\xe7\\xed\\xf4\\x4e\\x89\\x77\\x5c\\xd8\\xfe\\x9f\\xac\\x12\\x97\\xde\\x12\\xd7\\xaf\\xda\\xa4\\x7b\\x5f\\x0e\\xd6\\x08\\xee\\xef\\x5d\\x08\\xba\\x71\\x39\\x46\\xba\\x1f\\x63\\xe4\\x34\\x5b\\xaf\\xd0\\x30\\xd2\\xe6\\x80\\x7e\\x3c\\x85\\x4e\\xd3\\x5f\\x98\\x11\\x2c\\xc9\\xd1\\x0b\\x77\\x02\\x77\\x83\\xce\\x64\\x3c\\xe9\\x5e\\x62\\x44\\xc7\\xad\\xe0\\xd2\\xa3\\xf5\\x0a\\xab\\x52\\xe1\\x38\\x98\\xcd\\xce\\x48\\x25\\x85\\xc8\\x49\\xa8\\x0a\\xfc\\x71\\x3a\\x19\\xc7\\xe3\\x33\\x70\\x46\\x5a\\x56\\xb0\\xb3\\x7e\\x3f\\x8e\\xef\\xcf\\x60\\x0f\\x07\\x4e\\x3d\\x3a\\xc5\\xf9\\x8d\\xf5\\xb3\\x64\\x84\\xca\\x2a\\x3e\\x93\\x68\\x3a\\x18\\x3c\\xd6\\xa2\\xaf\\xaf\\x35\\xd7\\x52\\xa2\\xa2\\x0a\\xbc\\xd7\\x8d\\xa7\\xfd\\xd1\\x85\\xd6\\x5c\\x5b\\x7f\\x62\\xd9\\xb5\\x91\\x48\\x24\\x76\\x2d\\x96\\x11\\x19\\x91\\x14\\x54\\x8d\\x63\\x36\\xab\\x69\\xec\\xca\\x94\\xb7\\x98\\xd6\\x07\\x06\\xa3\\xe9\\x19\\xfc\\x73\\xc1\\x72\\x31\\x17\\x7b\\xfd\\xad\\xbd\\x39\\x5f\\xbb\\xb3\\xb5\\x52\\x7b\\x35\\xdb\\x8d\\x8f\\x41\\xe4\\x42\\x10\\x84\\x35\\x37\\x05\\xb7\\x3f\\x35\\xe0\\x98\\xbc\\xdb\\x82\\x76\\x67\\xf3\\x6e\\x1f\\x3f\\xf8\\xd3\\x49\\x6f\\x16\\xf7\\x2f\\x3c\\xe2\\x92\\x11\\x5f\\x08\\x95\\x25\\x86\\xf1\\x25\\x52\\xd5\\xee\\x75\\x21\\x08\\xe1\\x5f\\x21\\x57\\xda\\x10\\x53\\x74\\xc6\\xa6\\xdb\\x29\\x57\\x15\\xf6\\xee\\xfc\\x0a\\x00\\x00\\xff\\xff\\xad\\xbf\\xb1\\xdf\\x04\\x0a\\x00\\x00\")\n\nfunc vendor_codemirror_material_css() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_codemirror_material_css,\n\t\t\"vendor/codemirror/material.css\",\n\t)\n}\n\nvar _vendor_codemirror_simplescrollbars_js = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xac\\x58\\xdb\\x6e\\xdb\\x38\\x13\\xbe\\xf7\\x53\\x4c\\x74\\x51\\x48\\x8d\\x2c\\xbb\\xb7\\x76\\xd5\\xe0\\xcf\\x01\\x48\\x7f\\x34\\xdd\\x62\\x53\\xf4\\x80\\x20\\x58\\xd0\\xd2\\x38\\x66\\x2b\\x93\\x5a\\x92\\xb2\\x93\\x36\\x79\\xf7\\x05\\x0f\\x92\\x28\\xd9\\x72\\xd3\\xc5\\xf6\\x2a\\x26\\x67\\xbe\\x39\\x7d\\x9c\\x19\\x75\\x32\\x81\\x33\\x9e\\xe3\\x15\\x15\\x82\\x8b\\x18\\x32\\x5e\\x3e\\x08\\x7a\\xb7\\x52\\x10\\x66\\x11\\x2c\\x1e\\xe0\\x8a\\x08\\xfa\\x8d\\xc1\\x25\\xd9\\xa0\\x58\\xe0\\x77\\x04\\xc2\\x72\\xe0\\x6a\\x85\\x42\\x8e\\x26\\x13\\x38\\xa7\\x52\\x09\\xba\\xa8\\x14\\xe6\\x50\\xb1\\x1c\\x05\\x10\\x06\\x57\\x6f\\x3f\\x42\\x41\\x33\\x64\\x12\\x67\\xb0\\x52\\xaa\\x9c\\x4d\\x26\\x19\\xcf\\x71\\x6d\\x8c\\x24\\x0c\\xd5\\xe4\\xdd\\xdb\\xb3\\x8b\\xf7\\xd7\\x17\\xa3\\x51\\xb8\\xac\\x58\\xa6\\x28\\x67\\xe1\\x9a\\xe7\\x11\\xfc\\x1c\\x01\\xd0\\x25\\x84\\xea\\xa1\\x44\\xbe\\x04\\xbc\\x2f\\xb9\\x50\\x12\\xd2\\x14\\x02\\xbe\\xf8\\x86\\x99\\x0a\\xe0\\xc5\\x0b\\x70\\xb7\\x6b\\x9e\\x57\\x05\\xfa\\x97\\x11\\x98\\x78\\xd6\\x6b\\xce\\xfe\\x7f\\x3d\\x02\\x00\\x2d\\x13\\x0a\\xfc\\xbb\\xa2\\x02\\xc3\\x20\\x49\\x26\\x49\\x32\\x29\\xe8\\xc2\\x73\\x27\\x88\\xa2\\xf9\\x08\\x00\\x0b\\x89\\xbe\\xe5\\x1c\\x97\\x94\\x59\\xec\\xda\\x43\\x63\\xda\\x9e\\x27\\x64\\x9d\\x1b\\x5b\\xff\\xbb\\x3a\\x37\\x66\\xec\\x71\\x78\\xb3\\xdf\\xc4\\x6d\\xac\\xfd\\x68\\xed\\x4c\\x26\\xf0\\xa1\\x20\\x94\\xc1\\x42\\xf0\\xad\\x44\\x01\\xc8\\x36\\x8d\\xb7\\x6d\\x39\\xa2\\xf9\\xe8\\x29\\x6a\\x13\\xe4\\x5d\\x98\\x3c\\x05\\x95\\x44\\xd0\\xe9\\xcf\\x54\\x30\\x1f\\x8d\\x00\\x6a\\x49\\x38\\x25\\x22\\xcc\\x0a\\x19\\x03\\x17\\x14\\x99\\x22\\xfa\\x30\\x06\\x99\\x09\\x5e\\x14\\x56\\x17\\x40\\xad\\xa8\\x4c\\xbc\\x7b\\x48\\x7d\\xe9\\x79\\x2b\\x63\\xd5\\x20\\x75\\xfa\\xdd\\x1b\\x44\\xad\\x68\\x7e\\x29\\xae\\x48\\x51\\xff\\x90\\xf4\\x07\\x42\\x0a\\xaf\\x3c\\xe9\\x92\\x4b\\x48\\x61\\x6a\\x3c\\x75\\x47\\x8c\\xe7\\x5a\\x2a\\xe7\\x59\\xb5\\x46\\xa6\\x92\\x4c\\x20\\x51\\x78\\x51\\xa0\\xfe\\x15\\x06\\x39\\xdd\\x04\\xd1\\xbc\\x2b\\x9e\\x64\\x05\\x91\\xf2\\x3d\\x59\\x6b\\xc5\\xac\\x90\\x70\\x0c\\xc1\\x38\\x80\\xe3\\x01\\xe7\\x29\\x63\\x28\\x6a\\xa7\\x8c\\x3e\\x29\\x4b\\x64\\xf9\\xd9\\x8a\\x16\\x79\\x78\\xd0\\x70\\xe4\\x3c\\xdd\\x10\\x01\\x12\\x8b\\xa5\\x43\\xb1\\xe0\\x6d\\x2d\\x12\\xce\\xc2\\xd6\\x54\\x0c\\xc1\\x9a\\x57\\x12\\x73\\xbe\\x65\\x41\\xdc\\x54\\x24\\xc4\\x3a\\xed\\x96\\xde\\x98\\x6c\\x57\\x34\\x5b\\xc1\\x51\\x0a\\xaf\\x22\\x10\\xa8\\x2a\\xe1\\xbc\\xee\\x40\\xe3\\x5f\\xa5\\xc0\\x0d\\x32\\x75\\x8e\\x4b\\x52\\x15\\x2a\\xc4\\xa8\\x96\\xd2\\x5e\\x91\\x7b\\xaa\\x53\\xaa\\x9d\\xeb\\x56\\x32\\x85\\x60\\xc5\\x05\\xfd\\xc1\\x99\\x22\\x45\\x00\\x27\\x10\\x94\\xe4\\x0e\\xbf\\x04\\x30\\xb3\\x7f\\x7d\\x0d\\x7c\\x18\\xa9\\x88\\x50\\x90\\x02\\xde\\x68\\xc0\\xdb\\xd8\\x1e\\xd8\\x72\\x19\\xec\\x92\\xcb\\x5a\\xbe\\xa1\\x58\\xce\\x19\\x86\\x6d\\x50\\xdd\\x8c\\x2c\\x97\\x4d\\x6a\\xeb\\x84\\xac\\xf9\\x06\\x03\\xfd\\x0c\\x36\\x6d\\x0c\\xbf\\x54\\xaa\\xca\\x20\\x36\\x96\\x1a\\x95\\xa7\\xbe\\x1f\\x1a\\xd0\\xcf\\xee\\x70\\x7e\\x9d\\xcb\\xad\\x71\\x13\\x9b\\xd6\\xff\\xc8\\xc3\\x26\\xe4\\x63\\x08\\x5d\\x1e\\x60\\x6c\\x13\\x11\\xc1\\x4b\\x08\\x8d\\xac\\x65\\xf8\\xc4\\x2a\\x6a\\x86\\x47\\x3b\\x7e\\x75\\x79\\xf1\\x9c\\x24\\x1c\\xd6\\xe8\\x67\\xe0\\xa9\\x66\\xe5\\x1e\\x02\\x6a\\x7a\\xc7\\x10\\x64\\x05\\xcd\\xbe\\x0f\\x70\\xef\\xf9\\xdc\\x32\\x6c\\x3e\\xe5\\xf7\\x35\\x07\\xcc\\xef\\xe4\\x0e\\xd5\\x29\\xaf\\x58\\x4e\\xd9\\xdd\\x59\\xa1\\x09\\xf7\\x27\\x66\\x2a\\x8c\\x62\\xd8\\xae\\x50\\xe0\\xdc\\x63\\xf8\\xaf\\x48\\x19\\x35\\x65\\x30\\xaa\\x9a\\x7e\\x49\\x66\\x20\\xbf\\xc0\\xeb\\xc6\\x7a\\x52\\xe0\\x52\\xc1\\x09\\x8c\\x5f\\xc1\\xcc\\x13\\x78\\xd3\\x0a\\xd8\\x61\\x75\\x02\\x5a\\x60\\x5a\\x3b\\xa0\\x9b\\xec\\x20\\xfe\\x57\\x1f\\x5f\\xf1\\xb2\\x0f\\xff\\xd5\\x87\\x5f\\x70\\xa5\\xf8\\xba\\x8f\\xdf\\x61\\x8e\\x7b\\x21\\x70\\xec\\x2c\\xbd\\x74\\xfc\\x30\\xcd\\xb1\\x5f\\xb6\\x86\\xb7\\x9c\\x7d\\x5e\\x21\\x16\\x7e\\x71\\x74\\xda\\x35\\x68\\x0e\\xa9\\x5f\\xa8\\xad\\x96\\xbb\\xd0\\x95\\xfa\\x40\\xef\\xb1\\x90\\x21\\x46\\x37\\xcf\\x79\\xf2\\xf7\\xe6\\xb9\\x3f\\x04\\xb7\\x7e\\x59\\x79\\x91\\x7f\\xd8\\xfb\\xb0\\x07\\x42\\x32\\xfe\\x44\\x3b\\x85\\xd5\\x97\\x47\\xa9\\x43\\x8b\\x9e\\x45\\xab\\xa7\\x5f\\xd0\\xd6\\xd0\\xdd\\xc4\\x1a\\xc4\\x75\\x76\\xa2\\xc1\\x66\\xeb\\x94\\xce\\xff\\xb8\\xba\\xd2\\x7a\\xd7\\x66\\x34\\xf5\\x14\\x9f\\x74\\xca\\x4f\\x89\\x48\\x4a\\xc1\\x15\\xd7\\x73\\x3d\\x91\\xa8\\x6c\\xf8\\xcd\\xe3\\x28\\xb9\\x8c\\x61\\xc9\\x45\\xd6\\x14\\x42\\x07\\xa9\\xe3\\x7b\\x0d\\xd3\\x08\\x9a\\xa1\\xe5\\xdf\\xbc\\xf1\\x07\\xde\\xd8\\x9f\\x85\\xb5\\xc2\\xd0\\x7d\\x8b\\x73\\x64\\x6c\\xea\\x8d\\xc2\\x68\\xa4\\xcd\\x8c\\x6c\\xda\\xd5\\x92\\x14\\x12\\x77\\xe6\\x67\\x53\\xb2\\x76\\xe6\\x24\\x52\\x3d\\x14\\x78\\xb3\\x3b\\xd0\\x77\\x39\\xa1\\x9f\\x93\\xa1\\x85\\xe2\\x65\\x70\\x0b\\xa9\\xab\\xab\\x89\\xea\\x25\\x84\\xed\\xe8\\x9e\\x78\\x21\\x44\\x91\\x1e\\xb2\\xe5\\xbd\\x1b\\x1a\\xce\\x3d\\x25\\x2a\\xfd\\xc6\\x9e\\xe6\\xbb\\x59\\xb6\\x34\\xea\\x65\\xd9\\x4f\\xaf\\xb5\\x63\\x6a\\x61\\xae\\x22\\x7f\\xd3\\xb0\\x25\\xe9\\x47\\xd3\\x56\\xd4\\x3c\\x13\\xca\\x4e\\x2b\\xa5\\x38\\xbb\\x76\\x7b\\xc6\\x74\\x8f\\x1b\\x55\\x99\\x13\\x85\\xbe\\x1b\\xd6\\x80\\xd6\\x89\\xc1\\x3e\\x76\\xfb\\xf7\\x82\\x08\\xfd\\x47\\xed\\xa2\\x19\\x8a\\xf4\\x07\\x9e\\xad\\x08\\xbb\\x33\\xcf\\xd1\\x5f\\x77\\x8e\\x52\\x4f\\x17\\x1e\\x1f\\xfd\\x62\\x1f\\xd5\\x5b\\x52\\xe7\\xce\\x64\\xf4\\x28\\xad\\xcd\\x34\\x69\\xf0\\x6c\\xb4\\x5d\\xa0\\xbb\\x59\\xb5\\x96\\xe6\\xfe\\x7d\\xbd\\x6b\\xb5\\xc6\\x3a\\xd7\\x6e\\xfb\\x72\\xf6\\xea\\xf7\\xd7\\xc4\\xb6\\xf0\\x53\\xe7\\xdb\\x1b\\xa6\\x40\\x4b\\x5c\\x4f\\xf9\\x75\\xb7\\x0e\\xfd\\x18\\xb4\\xc8\\x38\\xed\\xd5\\x6a\\xec\\x59\\xaf\\x7d\\xee\\xf8\\xd3\\x11\\xf7\\x5b\\xc7\\xbf\\x22\\xfc\\x96\\xe6\\x6a\\x65\\x18\\xbf\\x42\\x3d\\x29\\x3c\\xd2\\x7b\\x56\\x7d\\x7a\\xfb\\xdc\\xac\\xdf\\x5d\\xec\\xd3\\xc1\\x32\\xb1\\xbb\\x70\\x5f\\xd3\\x75\\x59\\xb8\\x2e\\xb4\\x20\\x42\\xda\\xed\\xbb\\x2c\\x48\\x86\\x7b\\xf7\\x6e\\x92\\xe7\\x67\\x7a\\x8f\\xb5\\x3b\\xac\\x67\\xd8\\xb8\\x0f\\x29\\x30\\xdc\\xb6\\x5b\\xbc\\x1f\\x54\\x03\\x67\\x95\\x8c\\x89\\xb0\\x55\\x35\\x8d\\xd1\\xdf\\x99\\x37\\x68\\x76\\xbb\\x2e\\x9e\\x3e\\xa4\\xd9\\x41\\x34\\x2d\\xb2\\x03\\x66\\xb2\\xa9\\xd1\\x2a\\xfb\\x1d\\x60\\x38\\xd5\\x8f\\xfd\\xe0\\x0b\\x5c\\x23\\x91\\x95\\xc0\\x9d\\x66\\xe0\\x90\\x2d\\x74\\x77\\x24\\x9a\\x62\\x43\\x0a\\x5b\\xca\\x72\\xbe\\xd5\\x2b\\xc8\\x19\\x5f\\x97\\xfa\\x8b\\xf3\\xda\\xdc\\x9c\\x0c\\xdd\\xec\\xa4\\x05\\x66\\xd0\\x3b\\x4a\\xb2\\x4a\\x08\\xfd\\xc0\\xb4\\x7c\\x67\\xca\\xe9\\x83\\xa8\\x1b\\x75\\x49\\x84\\xc4\\xb7\\x4c\\xd9\\xcb\\xc4\\x12\\xaa\\x33\\xdd\\xb4\\xbb\\xb5\\xb4\\xa7\\xfa\\xf8\\xd8\\x7c\\xf6\\x68\\x09\\x86\\x98\\xcb\\x4b\\x4d\\x75\\x9b\\x0c\\xd7\\xf7\\x3e\\x1b\\xd9\\x37\\xcd\\xa9\\x7d\\xfa\\xf6\\xf4\\xb8\\xfe\\x92\\x6a\\xf4\\x3f\\xed\\xe8\\x5f\\x1a\\x7f\\x76\\x00\\xdc\\xf1\\x71\\xe7\\x5b\\xac\\xa9\\xae\\x7d\\x4a\\x49\\x4e\\x65\\x59\\x90\\x07\\x43\\x14\\x03\\x7e\\x02\\xc1\\xa2\\xe0\\xd9\\x77\\xf3\\x74\\x18\\x67\\x18\\xf4\\x49\\x7a\\x40\\xfd\\x72\\xaf\\x7a\\x53\\x70\\x6b\\xa2\\xd7\\x2d\\x8c\\x47\\x96\\x2f\\xe1\\xbe\\xb8\\xe2\\xbd\\x61\\xc5\\xcd\\x96\\xd7\\xfb\\x57\\x0b\\x6f\\x28\\x6e\\x5d\\x06\\xc6\\xce\\xf2\\xa5\\x61\\x8c\\xce\\xea\\x0c\\xa6\\xed\\x06\\xbf\\x37\\x2f\\x6e\\xfd\\xf3\\xe2\\xda\\xba\\x7a\\xe8\\x86\\xa1\\x83\\x9b\\x06\\x3e\\x01\\x9a\\xf0\\x2e\\x7b\\xe1\\xd9\\x94\\xed\\x8d\\xcf\\x54\\xb8\\x1f\\x9e\\x3d\\x1c\\x8a\\xae\\x13\\x9e\\x65\\x48\\x1d\\xdd\\xa7\\x4e\\x74\\x30\\x6e\\x44\\x17\\x44\\xbc\\xc3\\xa5\\xea\\xc6\\xbb\\x53\\x49\\xbb\\x4e\\x7b\\x34\\x18\\x8a\\x77\\x08\\xc0\\x2c\\xec\\x69\\xdf\\x6a\\xa7\\xc3\\xba\\x49\\xe4\\xf6\\x88\\x9f\\xc6\\xe4\\xac\\x6f\\x71\\x06\\xd3\\x18\\x6c\\xfa\\x67\\xfd\\xec\\xcf\\x60\\xfa\\xd4\\x36\\xe1\\x03\\xfd\\x47\\xa2\\xb2\\xe7\\x1f\\x79\\x39\\xb0\\x8e\\xb4\\x65\\xf7\\xf6\\x91\\xdf\\x03\\x7f\\x67\\x43\\x1e\\x44\\xb7\\x39\\xfa\\x5d\\xf8\\xac\\x40\\x22\\x7c\\x58\\x7f\\x3b\\x29\\x89\\xee\\x5a\\x75\\x97\\xf1\\x8a\\x60\\x2f\\xde\\xf3\\xdc\\x75\\x33\\xfb\\x3b\\x11\\xe6\\xd3\\xd3\\xfe\\xa7\\xc7\\xfe\\x61\\x31\\x24\\xd8\\x9d\\x03\\xd6\\x6b\\x6f\\x1f\\x97\\xb5\\xeb\\x57\\x3c\\xc7\\x22\\x91\\x26\\x9e\\x4e\\x32\\xf6\\xcd\\x40\\x57\\x7a\\x3d\\x94\\x76\\x26\\x67\\xd0\\xa2\\x8f\\x2d\\x9c\\xac\\x97\\xfb\\x2e\\x96\\xf3\\xe7\\x90\\x3b\\x7c\\x83\\xc2\\xf6\\xa5\\xff\\xc6\\x1f\\x87\\x77\\xd8\\x21\\xfd\\xad\\xf7\\x4f\\x00\\x00\\x00\\xff\\xff\\x63\\x2e\\xe6\\x06\\x56\\x15\\x00\\x00\")\n\nfunc vendor_codemirror_simplescrollbars_js() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_codemirror_simplescrollbars_js,\n\t\t\"vendor/codemirror/simplescrollbars.js\",\n\t)\n}\n\nvar _vendor_material_icons_materialicons_regular_eot = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xec\\xbd\\x79\\x7c\\x1b\\xe5\\xb9\\x28\\xfc\\x3c\\xda\\xc6\\xf2\\x26\\x6b\\x19\\x8d\\x25\\xd9\\x5a\\x3c\\x96\\xc6\\x99\\xf1\\x12\\x4b\\x1a\\xc9\\xd9\\x9c\\xc9\\xe6\\x2c\\x76\\x20\\x21\\x19\\x85\\xad\\x34\\x09\\x49\\x00\\x2b\\x40\\x80\\x24\\x84\\xb0\\x4d\\x29\\x85\\xb0\\x07\\x8a\\xdc\\x16\\x28\\x4d\\x29\\xa5\\xd4\\x02\\x4a\\x29\\x50\\xca\\xa5\\xbd\\xba\\x2d\\xe5\\x72\\x0a\\xed\\xe5\\x70\\x90\\xbf\\xde\\x96\\xf6\\x38\\x21\\xa4\\x21\\xee\\xa5\\x94\\x5f\\xcb\\xe5\\xf6\\xe3\\xc8\\xdf\\xef\\x7d\\x67\\xb4\\xd8\\x31\\xbd\\xa7\\xe7\\xf4\\x3b\\xbf\\xfb\\xc7\\x95\\x3d\\xa3\\x59\\xdf\\xe5\\x79\\x9f\\xfd\\x7d\\x9e\\x57\\x0f\\xf4\\x99\\xe0\\xad\\x5e\\x13\\x20\\x98\\x80\\x7c\\x4c\\x60\\x35\\xd3\\x03\\x40\\x38\\x8c\\xe4\\x7b\\x64\\x03\\xea\\x17\\x5c\\x00\\x60\\xd1\\xef\\xe8\\x9f\\x7b\\xb7\\xff\\xea\\x2e\\x38\\xed\\xd3\\x06\\xeb\\x61\\x1b\\xec\\x85\\x9d\\x70\\x25\\x5c\\x02\\xdb\\x60\\x37\\x84\\x61\\x2d\\x5c\\x08\\x97\\xc3\\x65\\x70\\x15\\x00\\x34\\xc3\\x59\\xb0\\x13\\x2e\\x82\\x7d\\xb0\\x1b\\xb6\\xc1\\x95\\xf4\\x8d\\x0c\\x7d\\xfa\\x2a\\xb8\\x84\\x3e\\x15\\x86\\x7e\\xe8\\x85\\xf9\\xd0\\x0f\\xfd\\x10\\xfe\\x57\\x94\\x68\\x34\\xa9\\x05\\x69\\xfb\\x86\\x86\\x36\\xaf\\x3f\\xd0\\xf7\\x4f\\x8d\\x60\\xea\\x7d\\x81\\xbc\\xbc\\x7a\\xe5\\xaa\\x21\\x0b\\xc2\\x26\\xc0\\x9f\\x36\\x02\\x40\\xe7\\xea\\x0d\\x67\\x6e\\x9a\\x6c\\xfd\\xc3\\x43\\x60\\xea\\xd5\\x00\\x20\\xb5\\x7a\\x93\\xba\\xfc\\xf8\\x9b\\xdf\\xde\\x08\\xf8\\xd3\\xf9\\x00\\x97\\x6c\\x38\\x73\\x53\\x5f\\xbc\\x7e\\x5f\\xc7\\x45\\x00\\x78\\x08\\x00\\xb6\\x5e\\x78\\xe9\\xb6\\x3d\\x7f\\xfc\\xa0\\x7f\\x12\\xc0\\x7e\\x27\\x80\\xcd\\x74\\xe1\\xfe\\xbd\\x61\\x70\\xe2\\x4a\\x00\\xc7\\x61\\x02\\x91\\x8b\\xb6\\x5d\\xb5\\x67\\x7a\\x1a\\xcc\\x80\\x3f\\x25\\xd0\\xa9\\xbb\\x68\\xf7\\x35\\xbb\\x2e\\x7d\\xa5\\xf5\\x1e\\x00\\x6e\\x3e\\xe0\\xbe\\x8f\\x2f\\xde\\xb9\\x6d\\x87\\xed\\xed\\x3b\\x2e\\x04\\x40\\x52\\x7f\\xea\\xe2\\x8b\\x77\\x6e\\xb3\\x24\\x4d\\x66\\x00\\x52\\x06\\x74\\x5e\\x7c\\xe9\\xde\\x03\\x97\\xcb\\xbb\\xfe\\x27\\x00\\x9e\\x04\\x60\\x1e\\xd9\\x7d\\xf9\\x85\\xdb\\xfe\\x65\\xe8\\x9c\\xc3\\x00\\x8e\\xfb\\x01\\x98\\x87\\x2e\\xdd\\x76\\x60\\x8f\\x45\\x80\\xa3\\x00\\x78\\x31\\x00\\x84\\x2f\\xdb\\x76\\xe9\\xce\\xd6\\x7b\\x4f\\x2c\\x03\\xbc\\xab\\x0b\\xc0\\x74\\x64\\xcf\\xe5\\x57\\xed\\x3d\\xfb\\x7b\\xef\\x3c\\x03\\x78\\xcf\\xab\\x00\\xf2\\x42\\x0a\\x0b\\x34\\xbd\\x71\\xd7\\xaf\\xb6\\xdf\\xfb\\x59\\xc7\\xe2\\x3f\\x43\\x83\\x3e\\xb2\\x6f\\xfe\\xf6\\x1b\\x3f\\xab\\x7e\\x4f\\x97\\x4c\\x60\\xa2\\xed\\x35\\x06\\x9e\\xc2\\xd0\\x64\\x99\\x2e\\x41\\x6f\\x19\\x13\\x2a\\x03\\x5d\\xfe\\x58\\xc8\\x15\\xf3\\xcf\\xe1\\x69\\x68\\x2d\\x3f\\x02\\x48\\x9f\\x52\\xa0\\x57\\x7f\\xc2\\x04\\x78\\x18\\xac\\x00\\x38\\x82\\xbb\\x00\\x60\\xb5\\xf1\\xfd\\x67\\xf0\\xc1\\xcd\\xb5\\xd8\\x45\\xde\\xac\\x20\\x54\\xf9\\xa3\\xc1\\xfc\\xe9\\x69\\xa3\\x76\\x8b\\x51\\x7a\\xf5\\x13\\x06\\xc9\\x04\\xe0\\x2c\\x57\\x6c\\x3a\\x1d\\xf5\\xfe\\xed\\x1f\\x09\\x24\\x60\\x41\\x01\\x09\\x14\\x50\\x40\\xa5\\x9b\\x5c\\x39\\xcb\\x42\\x96\\xde\\x93\\x8c\\xe7\\x24\\xd0\\xe8\\x51\\xbe\\x72\\x4d\\x31\\xde\\x27\\x4f\\xab\\xa0\\xd1\\xfb\\x5a\\xcd\\xbd\\x2c\\xe4\\xe8\\x5d\\x72\\xd6\\x01\\x2c\\x7d\\xaa\\xfc\\xc7\\xd2\\x12\\xc9\\x5f\\xf5\\x98\\x7c\\x77\\x1b\\xa5\\xb2\\xc6\\x55\\xc5\\xd8\\x03\\xa8\\x70\\x35\\x28\\x90\\x05\\xd5\\x28\\x5d\\xa2\\xf5\\x4a\\xb4\\x1e\\xc5\\xa8\\x4f\\x2f\\x31\\x41\\xcf\\xf4\\xcf\\x79\\xc0\\x42\\x96\\x6e\\x12\\xbd\\xc6\\x1a\\x6f\\x0d\\x1a\\xe5\\x03\\x1d\\x47\\xb5\\xd2\\x57\\x85\\xc2\\x25\\x6b\\x1c\\xeb\\x6d\\x27\\x75\\x2e\\xa9\\xc0\\x22\\x52\\xb9\\x0b\\xf4\\x89\\xf2\\x33\\xd5\\x37\\xd8\\x0a\\x84\\xca\\x7f\\xb9\\xca\\x5f\\xd6\\x80\\xb4\\xc3\\xf8\\x23\\xfd\\x87\\x4a\\x7f\\x59\\x63\\x3c\\xea\\x8c\\xd2\\xf4\\xb6\\x23\\x85\\x91\\xde\\x33\\x52\\x7a\\x1d\\xd8\\xe9\\x13\\xbb\\x68\\x5b\\x73\\x70\\xab\\xd1\\x8e\\x72\\x7b\\x4e\\xff\\xcb\\xd1\\x9e\\xaa\\xc6\\x13\\x1a\\x84\\xe9\\x38\\xab\\x06\\xe4\\xb2\\xf4\\x48\\xa3\\x35\\x97\\xa1\\xab\\xc0\\xd5\\x95\\xbe\\x2b\\x95\\x51\\xdb\\x42\\x5b\\x32\\x4c\\x9f\\x93\\x0d\\x38\\x41\\x05\\xd6\\xe4\\x93\\xad\\x8c\\x82\\x3e\\x8a\\x60\\xc0\\x59\\xab\\x40\\x47\\x83\\x3c\\x7c\\x9f\\xd6\\xa6\\x19\\x4f\\x65\\x2b\\x6f\\x97\\xf1\\x0e\\x2a\\x7d\\xd1\\xcf\\x55\\x03\\x2e\\x2c\\xc5\\xa2\\xf2\\x91\\x64\\xb4\\x50\\x2f\\x5b\\x36\\x5a\\xa4\\x55\\x60\\x5b\\x1e\\x31\\xbd\\x4d\\x4a\\x05\\xd3\\x75\\xec\\x50\\x28\\x7c\\x6b\\xa1\\x54\\xc6\\xad\\x32\\x1c\\xc8\\xf6\\xf8\\x8c\\xb1\\xa9\\x1d\\x25\\x1d\\x53\\x74\\x9c\\xed\\x37\\xda\\x97\\x33\\xda\\x4c\\xee\\x04\\x69\\xf9\\x2c\\x88\\x46\\xbd\\x6c\\xa5\\x05\\xb5\\xb5\\xea\\x2d\\xd4\\x68\\x0b\\x09\\x5c\\x14\\xa3\\x5f\\x6a\\x0d\\x7e\\xeb\\xef\\xb8\\x28\\xf4\\xc9\\x51\\x6b\\x0d\\x8d\\x01\\x9c\\x03\\x0a\\x44\\x2b\\xd8\\xa7\\x50\\xd8\\xe9\\xd0\\x29\\xb7\\x75\\xc4\\x18\\xa3\\x72\\xdd\\x3a\\x2e\\x90\\xb7\\x54\\x83\\x72\\xcb\\x7c\\xa0\\x5a\\x6e\\x95\\x2b\\xb0\\xf4\\x2d\\xd5\\x38\\x93\\xe8\\xc8\\x55\\x5b\\xbe\\xb0\\xc2\\x03\\xc8\\x53\\x5b\\x0d\\x58\\x2f\\x34\\xce\\x55\\x18\\x34\\xf8\\x48\\xb6\\xc2\\x63\\x74\\xbc\\x93\\x68\\xcd\\x39\\x0a\\x33\\x52\\xea\\x5a\\xda\\xfb\\x2c\\xe5\\x22\\x59\\x83\\x4a\\x8a\\x90\\x81\\x87\\xe1\\x61\\xfa\\xbc\\xde\\xce\\xab\\x6b\\x78\\x52\\x2d\\x04\\xa1\\x06\\xa6\\x60\\xe0\\xab\\x0e\\xc5\\x25\\x06\\x6d\\x96\\x47\\x4b\\x84\\xb0\\xc1\\x51\\xca\\xa3\\xac\\xc3\\x48\\xa3\\x3d\\x55\\x0d\\xfe\\x40\\x9e\\x28\\x56\\xc6\\xa1\\xcc\\xe9\\xc0\\xa8\\x4d\\x35\\xca\\x57\\x6b\\x70\\x52\\xe7\\x6e\\x65\\x8e\\xa8\\xd6\\xd0\\xbe\\x52\\x03\\x59\\x09\\xb0\\x02\\xd9\\x32\\x9f\\xe0\\x2b\\xd4\\x32\\x93\\x66\\x55\\x3a\\x4a\\x3a\\xf6\\x37\\x57\\x38\\xa4\\x5a\\xc1\\x7a\\x52\\xdb\\x5a\\xb0\\xcf\\x2a\\x5f\\x32\\xda\\xa1\\xcc\\xa0\\x43\\x89\\xc2\\x55\\xad\\x94\\xa1\\xd4\\x8c\\x6f\\x15\\x56\\x4a\\x05\\xfb\\x74\\x78\\x65\\x0d\\x8e\\x41\\xa0\\xdb\\x50\\x03\\x77\\xbd\\xcf\\x3a\\x54\\x7b\\x8c\\x27\\x35\\x60\\xc1\\x69\\xc0\\x32\\x6b\\x50\\x88\\x0a\\xe7\\xd2\\xa7\\xca\\xbc\\x3c\\x59\\xc1\\x69\\xa5\\xe6\\xba\\x6a\\xf0\\x89\\x72\\xed\\x6c\\x45\\x7a\\x64\\x67\\x50\\x62\\x55\\x76\\x48\\x35\\xd2\\x43\\x9a\\xc1\\xad\\xf5\\x12\\x64\\x10\\x28\\x16\\x91\\xb7\\xcf\\x35\\x78\\x7d\\x96\\xd6\\xb1\\xd3\\x68\\x75\\xf9\\x79\\xa0\\xa5\\xe5\\x2b\\xa3\\xae\\x54\\x28\\x41\\xe7\\x96\\x59\\x63\\xdc\\x97\\x56\\x24\\x91\\x54\\x19\\xfb\\x6a\\xfd\\xfa\\xc7\\x0a\\x00\\x44\\xce\\x77\\x03\\x40\\x3d\\x80\\xa9\\x4d\\x97\\xe3\\x96\\x4f\\x88\\x96\\x44\\xaf\\x9b\\x8d\\xeb\\x16\\xfc\\x00\\x00\\x0e\\x80\\x02\\x56\\x18\\x80\\x05\\xf0\\x59\\x38\\x38\\x69\\x9e\\xf4\\x4d\\x46\\x26\\x3b\\x27\\xbb\\x27\\xfb\\x27\\x17\\x4c\\x6e\\x9a\\xbc\\x62\\xf2\\xa5\\xc9\\xff\\x3c\\xf9\\xf2\\xe4\\xbb\\x47\\x2f\\x3d\\x9a\\x3b\\xfa\\xd0\\xd1\\x9f\\x1c\\x7d\\xf5\\xe8\\x1b\\x47\\x7f\\x7d\\xf4\\xd8\\xb1\\x1d\\xc7\\x5e\\x3e\\xf6\\x0f\\xc7\\x5e\\x7f\\xa7\\xee\\x9d\\xd6\\x77\\x06\\xde\\x99\\x7c\\xe7\\xfd\\xe3\\xee\\xe3\\xbd\\xc7\\x17\\xbf\\x9b\\x7a\\xf7\\xca\\x77\\x7f\\x73\\x22\\x7c\\x62\\xd5\\x89\\x9f\\x9e\\xf8\\xcd\\x89\\x7f\\x3e\\x71\\xf4\\x77\\xef\\x9d\\xc4\\x93\\xcd\\x27\\xd9\\x93\\x0b\\x4f\\x6e\\x3c\\x79\\xd5\\xc9\\xe7\\x4f\\xfe\\xe2\\x3d\\x78\\xcf\\xf6\\x9e\\xe3\\x3d\\x69\\x6a\\x64\\x7a\\x1a\\x00\\xe6\\xc3\\x67\\x61\\xdb\\x24\\x4c\\xfa\\x26\\x03\\x93\\xfc\\x64\\xd7\\x64\\xef\\x64\\x62\\x72\\xd1\\xa4\\x3a\\xf9\\x9d\\xc9\\x1f\\x4d\\xfe\\x64\\xf2\\x95\\xa3\\xab\\x8e\\x1e\\x3e\\xfa\\xd0\\xd1\\x6f\\x1c\\x7d\\xf5\\xe8\\xcf\\x8f\\xfe\\xf2\\xe8\\xe4\\xb1\\xd8\\xb1\\x97\\x8e\\xbd\\x72\\xec\\xf5\\x77\\x98\\x77\\xea\\xdf\\xf1\\xbf\\xf3\\xd5\\x77\\x8e\\xbd\\xf3\\xc7\\xe3\\xec\\xf1\\xf9\\xef\\xf6\\xbc\\xbb\\xe0\\xdd\\x9f\\x9c\\x68\\x3e\\xc1\\x9f\\x78\\xb9\\x5c\\xf3\\xef\\xde\\x3f\\xd9\\x70\\xd2\\x79\\x32\\x79\\x72\\xfd\\xc9\\x4d\\x27\\xf7\\x9d\\x7c\\xe1\\xe4\\x1b\\xef\\x99\\xde\\xab\\x7b\\xcf\\x39\\xb5\\x68\\x7a\\x7a\\xfa\\x9f\\xa6\\x9f\\x9a\\x7e\\x32\\xdc\\x15\\x76\\x87\\x5d\\x61\\x67\\xb8\\x39\\xdc\\x14\\x6e\\x0c\\x37\\x84\\xeb\\x43\\x3f\\x0f\\xbd\\x1e\\xfa\\x87\\xd0\\xab\\xa1\\x4b\\x42\\xab\\x43\\xcb\\x42\\x8b\\x42\\xe9\\x50\\x22\\xd4\\x1d\\xea\\x0a\\xbe\\x1b\\xbc\\x3b\\x78\\x57\\xf0\\x8e\\xe0\\xc6\\xe0\\x86\\xe0\\x99\\xed\\x53\\xed\\xa7\\xda\\x4f\\xb6\\xff\\xae\\xfd\\x44\\xdb\\x47\\x6d\\x7f\\x6a\\x7b\\xb4\\x6d\\x6f\\xdb\\x95\\x81\\x3f\\x05\\x7e\\x13\\x78\\x3b\\xf0\\x6b\\xff\\x5b\\xfe\\x37\\xfc\\xff\\xd5\\xff\\x53\\xff\\xb7\\xfc\\x39\\xff\\xfd\\xfe\\x2f\\xfa\\xef\\xf3\\xdf\\xeb\\x3f\\xec\\xbf\\xc7\\x7f\\x77\\xeb\\x8d\\xa7\\xe9\\x75\\xff\\x71\\x1f\\xa2\\x01\\x83\\x69\\xd2\\x38\\x5b\\x4c\\x21\\x0f\\xb0\\xc0\\xc0\\x97\\xcf\\x1a\\x5b\\x13\\x00\\x6c\\x03\\x80\\x83\\xd4\\x5c\\x00\\xf2\\xf8\\x24\\xb9\\xdf\\x05\\x30\\xe9\\xd3\\x37\\x82\\x5b\\x93\\x01\\x80\\xc9\\x08\\x00\\xf4\\x00\\x4c\\xf2\\x00\\x93\\x9d\\x00\\x90\\x04\\x98\\x24\\xcf\\x11\\xdc\\x4b\\x01\\x4c\\xf6\\x02\\x4c\\xf6\\x03\\xc0\\x22\\x80\\xc9\\x04\\xc0\\xe4\\x02\\x8a\\xc3\\x30\\x49\\xce\\x37\\x01\\xc0\\x10\\xc0\\xa4\\x0a\\x30\\x79\\x85\\x5e\\xf7\\xe4\\x77\\x00\\x26\\x5f\\x02\\x80\\xeb\\x00\\x26\\x7f\\x04\\x30\\xf9\\x9f\\x01\\xe0\\x76\\x80\\xc9\\x9f\\x00\\x4c\\xbe\\x0c\\x00\\x77\\x02\\x4c\\xbe\\x02\\x30\\xf9\\x2e\\x00\\xdc\\x0d\\x70\\x74\\x15\\xc0\\xd1\\x4b\\x01\\xe0\\x29\\x80\\xa3\\x87\\x01\\x8e\\xe6\\x00\\xe0\\xff\\x01\\x38\\xfa\\x90\\xbe\\xc1\\x6f\\x00\\x8e\\x7e\\x03\\xe0\\xe8\\x4f\\x00\\xe0\\xb7\\x00\\x47\\x5f\\xd5\\x37\\x98\\x06\\x38\\xfa\\x73\\x80\\xa3\\x6f\\xe8\\x4a\\xee\\xd1\\x5f\\x02\\x1c\\xfd\\x35\\x00\\x5a\\x00\\x8e\\x4e\\x02\\x1c\\x3d\\x06\\x80\\x75\\x00\\xc7\\x62\\x00\\xc7\\x76\\x00\\x60\\x03\\xc0\\xb1\\x97\\x00\\x8e\\xbd\\x0c\\x80\\xeb\\x00\\x8e\\xbd\\x02\\x70\\xec\\x1f\\x00\\x70\\x13\\xc0\\xb1\\xd7\\xf5\\x0d\\xb7\\x00\\xbc\\xc3\\x00\\xbc\\x53\\x07\\x80\\x67\\x03\\xbc\\x53\\x0f\\xf0\\x4e\\x2b\\x00\\x9e\\x0b\\xf0\\x8e\\x1f\\xe0\\x9d\\x01\\x00\\xbc\\x04\\xe0\\x9d\\xaf\\x02\\xbc\\x33\\xa9\\xdb\\x37\\xef\\x1c\\x03\\x78\\xe7\\x7d\\x00\\x7c\\x1d\\xe0\\x9d\\x3f\\x02\\x1c\\x77\\x03\\xe0\\x7f\\x07\\x38\\xce\\x02\\x1c\\xef\\x05\\xc0\\x4f\\x00\\x8e\\xcf\\x07\\x38\\xbe\\x18\\xc0\\xe4\\x05\\x78\\xb7\\x07\\xe0\\xdd\\x14\\x80\\x89\\x07\\x78\\x77\\x01\\xc0\\xbb\\x57\\x02\\x98\\xc8\\xb5\\x9f\\x00\\xbc\\xfb\\x1b\\x00\\xd3\\x45\\x00\\x27\\x9a\\x01\\x4e\\x84\\x01\\x4c\\x37\\x01\\x9c\\xe0\\x01\\x4e\\xac\\x02\\x30\\xe5\\x00\\x4e\\xbc\\x0c\\x70\\xe2\\xa7\\x00\\xa6\\x17\\x00\\x4e\\xfc\\x46\\xdf\\x4c\\x2f\\x02\\x9c\\xf8\\x67\\x7d\\x33\\xfd\\x27\\x80\\x13\\x47\\xf5\\xcd\\xf4\\x12\\xc0\\xef\\xde\\xd3\\x37\\xd3\\x0f\\x01\\x7e\\xf7\\x3e\\xc0\\x49\\x62\\xa1\\xfc\\x08\\xe0\\x64\\x03\\xc0\\xc9\\x66\\x00\\xd3\\x9b\\x00\\x27\\x9d\\x00\\x27\\x59\\x00\\xd3\\x04\\xc0\\xc9\\x24\\xc0\\xc9\\x85\\x00\\xa6\\x5f\\x03\\x9c\\x5c\\x0f\\x70\\x72\\x23\\x80\\xe9\\x18\\xc0\\xc9\\x4d\\x00\\x27\\xaf\\x02\\x30\\xfd\\x0e\\xe0\\xe4\\x3e\\x80\\x93\\xcf\\x03\\x98\\xeb\\x00\\x4e\\xbe\\x00\\x70\\xf2\\x17\\x00\\xe6\\x75\\x00\\x27\\xdf\\x00\\x78\\x8f\\xa0\\xe1\\x36\\x80\\xf7\\x4c\\x00\\xef\\xd9\\x00\\xcc\\xf7\\x01\\xbc\\x57\\x07\\xf0\\x9e\\x03\\xc0\\xfc\\x25\\x80\\xf7\\x9c\\x00\\xef\\x49\\x00\\xe6\\xaf\\x01\\x4c\\x2d\\x02\\x98\\x1a\\x01\\x30\\xbf\\x08\\x2d\\xd3\\xff\\x42\\x37\\x30\\x93\\x31\\xb0\\x55\\x8d\\x16\\x9c\\xcb\\x4c\\x99\\x83\\xf6\\xcc\\x16\\xab\\x8d\\xa9\\xb3\\xd7\\x37\\x34\\xfe\\xab\\x68\\xa8\\x09\\x9a\\x1d\\x2d\\x4e\\x97\\xdb\\xc3\\x7a\\xb9\\x56\\x9f\\x3f\\xd0\\xd6\\x1e\\x0c\\x85\\x23\\x1d\\x7c\\x67\\x34\\x26\\xfc\\xbb\\x88\\xf3\\xef\\xf8\\xa1\\xf6\\x31\\x88\\xf4\\x2f\\x0e\\x0b\\x61\\x39\\xac\\x83\\xb3\\xe0\\x5c\\xd8\\x0e\\xa3\\x70\\x25\\x1c\\x84\\x9b\\xe0\\x76\\xb8\\x0f\\x1e\\x80\\x47\\x60\\x1c\\x9e\\x81\\x17\\xe1\\xc7\\xf0\\x33\\x78\\x13\\x7e\\x05\\xc7\\xe0\\x14\\x7c\\x08\\x7f\\x41\\x13\\xd6\\xa3\\x0b\\xfd\\xd8\\x81\\x22\\xc6\\x71\\x21\\x2e\\xc7\\x75\\x78\\x16\\xee\\xc1\\x2f\\xe3\\xd3\\x78\\xd2\\xd4\\x62\\x3a\\xd7\\xf4\\x94\\xe9\\x15\\xd3\\x07\\x66\\x93\\xd9\\x63\\x5e\\x68\\xbe\\xd3\\xfc\\xa6\\xc5\\x64\\xe9\\xb5\\x8c\\x5a\\x1e\\xb7\\xbc\\x61\\xad\\xb3\\x2e\\xb7\\xde\\x60\\x7d\\xda\\xfa\\x2b\\xeb\\xfb\\xb6\\x46\\x5b\\xd2\\xa6\\xd8\\xce\\xb6\\x1d\\xb4\\x1d\\xb1\\xfd\\x92\\xb1\\x30\\x0b\\x99\\x83\\xcc\\x97\\x99\\x02\\x73\\xac\\xae\\xae\\xce\\x5f\\xd7\\x5b\\xb7\\xab\\x6e\\x6f\\xdd\\x63\\x75\\x7f\\xb2\\x77\\xd8\\x57\\xda\\x77\\xdb\\x6f\\xb2\\xdf\\x67\\x7f\\xc3\\xfe\\x71\\x7d\\xac\\x7e\\x7b\\xfd\\xe1\\xfa\\x97\\x1a\\xba\\x1b\\x26\\x1b\\x97\\x37\\x3e\\xd3\\x74\\x71\\xd3\\xeb\\xcd\\xa6\\xe6\\xcd\\xcd\\x47\\x9a\\x0b\\xcd\\x1f\\x3a\\x2c\\x8e\\x2e\\xc7\\xf9\\x8e\\xdb\\x1d\\x4f\\x39\\x4e\\xb6\\x78\\x5b\\x2e\\x68\\xb9\\xa9\\xe5\\xe5\\x96\\x13\\xce\\x7a\\x67\\xdc\\xb9\\xd9\\xb9\\xd7\\xf9\\x88\\xf3\\x15\\x57\\x9b\\x6b\\x8d\\xeb\\xa0\\xeb\\x6e\\xd7\\xb8\\xab\\xe0\\x7a\\xcb\\xf5\\xa1\\x3b\\xe8\\x1e\\x70\\xef\\x72\\x3f\\xea\\xfe\\xd0\\x73\\xb1\\xe7\\x6e\\xcf\\x8b\\x9e\\xb7\\xd8\\x7a\\x76\\x84\\xbd\\x85\\x7d\\x8a\\x7d\\x9b\\xfd\\xc8\\xeb\\xf7\\x0e\\x7a\\x47\\xbd\\xaf\\x73\\x5e\\xee\\x6c\\xee\\x61\\x6e\\x82\\xfb\\x4b\\x6b\\x5b\\xab\\xd2\\xba\\xbd\\xf5\\xbe\\xd6\\x97\\x5a\\xff\\xe4\\x6b\\xf3\\x6d\\xf6\\x3d\\xe4\\x9b\\xf0\\x6f\\xf0\\xdf\\xe0\\x7f\\xc1\\x7f\\x3c\\xd0\\x12\\xd8\\x10\\xd8\\x15\\xb8\\x3b\\xf0\\x48\\xe0\\xf5\\xc0\\xef\\xdb\\xbc\\x6d\\xeb\\xda\\x0e\\xb6\\x3d\\xda\\xf6\\xa3\\xb6\\xf7\\xdb\\x95\\xf6\\x83\\xed\\x0f\\xb4\\xbf\\xd4\\x3e\\xd1\\x7e\\xaa\\xfd\\x93\\xe0\\xd6\\xe0\\xed\\xc1\\x1f\\x05\\x8f\\x87\\xea\\x43\\xb1\\x50\\x32\\x34\\x12\\xba\\x2c\\x74\\x53\\xe8\\x48\\xe8\\xe5\\xd0\\x07\\xe1\\x1d\\xe1\\xfd\\xe1\\xbb\\xc3\\x4f\\x84\\x5f\\x0d\\x7f\\x14\\x11\\x23\\xe7\\x47\\x0e\\x47\\x7e\\x16\\xf9\\x4b\\x47\\x57\\xc7\\xf9\\x1d\\x87\\x3b\\x5e\\xe8\\xf8\\x90\\x0f\\xf3\\x43\\xfc\\x95\\xfc\\x03\\xfc\\x8b\\xfc\\xaf\\x3a\\xfd\\x9d\\x83\\x9d\\x57\\x76\\x3e\\xdc\\xf9\\xcb\\xa8\\x2d\\xba\\x30\\xba\\x3d\\x7a\\x4b\\xf4\\xf9\\xe8\\x9f\\x62\\x9d\\xb1\\x1d\\xb1\\x23\\xb1\\x37\\x85\\x36\\x61\\x97\\xf0\\x65\\xe1\\x47\\xc2\\xeb\\xc2\\xb1\\xae\\x58\\xd7\\x65\\x5d\\x77\\x76\\xbd\\x35\\xaf\\x6d\\xde\\x75\\xf3\\x7e\\x3c\\xef\\xf7\\xa2\\x28\\x0e\\x88\\x67\\x89\\xfb\\xc5\\xdb\\xc5\\x47\\xc5\\x67\\x25\\x8b\\xd4\\x25\\x9d\\x25\\xdd\\x2d\\xbd\\xde\\xdd\\xd6\\xbd\\xb9\\xfb\\xee\\xee\\x67\\x7b\\xfc\\x3d\\x63\\x3d\\x2f\\xf6\\x06\\x7b\\xf7\\xf6\\xbe\\xdd\\xd7\\xdc\\xb7\\xb7\\x6f\\x7c\\xbe\\x6b\\xfe\\x81\\xf9\\x0f\\xcf\\x7f\\x79\\xfe\\xa9\\x7e\\x57\\xff\\x60\\xff\\xf6\\xfe\\x87\\xfa\\x7f\\xdc\\x3f\\x19\\xaf\\x8f\\x27\\xe3\\xeb\\xe2\\x57\\xc6\\x9f\\x8a\\x9f\\x4a\\xb4\\x26\\xe2\\x89\\x33\\x12\\xbb\\x13\\x77\\x27\\x9e\\x4e\\xbc\\x91\\x38\\x99\\xf4\\x24\\x97\\x27\\xb7\\x27\\x1f\\x4e\\xfe\\x42\\x36\\xc9\\x31\\x79\\xb9\\x7c\\x81\\x7c\\x83\\x7c\\xbf\\xfc\\x98\\xfc\\x51\\xaa\\x39\\x35\\x3f\\xb5\\x26\\xb5\\x37\\xf5\\x44\\xea\\x47\\xe9\\xe6\\x74\\x32\\xbd\\x35\\x7d\\x65\\xfa\\xee\\xf4\\xeb\\xe9\\xdf\\x0e\\xb4\\x0c\\xc4\\x07\\x2e\\x18\\x38\\x34\\xf0\\xcc\\xc0\\x47\\x0b\\xe6\\x2f\\x38\\x77\\xc1\\x95\\x0b\\x0e\\x2d\\x78\\x6c\\xc1\\xeb\\x0b\\x61\\x61\\xf7\\xc2\\x5d\\x0b\\x9f\\x58\\xf8\\xe6\\xc2\\x4f\\x16\\x75\\x2d\\xba\\x6c\\xd1\\xd8\\xa2\\x97\\x16\\x1d\\x5b\\xdc\\xb8\\x78\\xc7\\xe2\\xfd\\x8b\\x0f\\x2d\\xfe\\xf2\\xe2\\xc7\\x17\\xff\\x68\\xf1\\x5b\\x4b\\xe6\\x2f\\x59\\xb3\\x64\\xc7\\x92\\xc3\\x4b\\x9e\\x5f\\xf2\\xd6\\x60\\xfd\\x60\\x7c\\xf0\\x86\\xc1\\x23\\x83\\xaf\\x0e\\x7e\\xb4\\x34\\xb6\\x74\\xd7\\xd2\\x67\\x96\\xfe\\x56\\x31\\x29\\x83\\xca\\x56\\xe5\\x88\\x72\\x6a\\x59\\xf3\\xb2\\x81\\x65\\xbb\\x96\\xdd\\xbd\\xec\\xf9\\x65\\xbf\\x5a\\x0e\\xcb\\x83\\xcb\\x77\\x2f\\x7f\\x62\\xf9\\xf1\\x15\\xcd\\x2b\\x16\\xaf\\xd8\\xb0\\x62\\xf7\\x4a\\xd3\\xca\\xb1\\x55\\x7b\\x87\\x2e\\x1e\\x3a\\x38\\x74\\xff\\xd0\\x53\\x43\\xbf\\x5d\\x6d\\x5b\\x2d\\xae\\xbe\\x60\\xf5\\x9d\\xab\\x9f\\x5d\\xfd\\xd1\\x9a\\xee\\x35\\xbb\\xd7\\x3c\\xba\\xe6\\xfd\\xb5\\xdd\\x6b\\xf7\\xaf\\x7d\\x7c\\xed\\x47\\xeb\\x82\\xeb\\x36\\xac\\x3b\\xb8\\xee\\xf9\\x75\\xbf\\x5c\\xf7\\xc9\\x70\\xc7\\xf0\\xca\\xe1\\x5d\\xc3\\xb7\\x0f\\xff\\x68\\x78\\x72\\xa4\\x71\\xa4\\x77\\xe4\\xac\\x91\\xdd\\x23\\xda\\xc8\\x91\\x91\\x89\\x91\\xdf\\xaf\\x0f\\xae\\x5f\\xbc\\xfe\\xa6\\xf5\\x3f\\x5e\\xff\\xc9\\x19\\x43\\x67\\x8c\\x9d\\xf1\\xc6\\x99\\xcd\\x67\\x66\\xce\\x7c\\xf4\\xcc\\xdf\\x6e\\x18\\xdc\\x70\\xf7\\x86\\x93\\x1b\\x5b\\x36\\x9e\\xb1\\xf1\\xee\\x8d\\x85\\x8d\\x6f\\x9d\\x65\\x3b\\x6b\\xd7\\x59\\xaf\\x6e\\x6a\\xdc\\xd4\\xbb\\x69\\x64\\xd3\\x05\\x9b\\x1e\\xdf\\x5c\\xbf\\x79\\x74\\xf3\\xab\\x6a\\xab\\x7a\\x81\\xfa\\x90\\xfa\\xb2\\xfa\\xfb\\xcc\\xf6\\xcc\\x2d\\x99\\x42\\xe6\\xa3\\x2d\\xf5\\x5b\\xd6\\x6c\\x79\\x60\\xcb\\x13\\x5b\\x4e\\x9c\\xdd\\x78\\x76\\xf2\\xec\\x5d\\x67\\x1f\\x39\\xfb\\xe5\\xb3\\x3f\\x3e\\x27\\x76\\xce\\xe8\\x39\\xf7\\x9d\\xf3\\xc4\\x39\\x3f\\x3b\\x17\\xce\\x75\\x9d\\xdb\\x79\\xee\\x95\\xe7\\x8e\\x9d\\xfb\\xec\\xb9\\x27\\xcf\\xf3\\x9f\\x77\\xc6\\x79\\x57\\x9e\\xf7\\xf0\\x79\\x6f\\x9d\\x6f\\x3b\\x7f\\xfb\\xf9\\x0f\\x9d\\xff\\xea\\xf9\\x9f\\x7c\\x26\\xf5\\x99\\x3d\\x9f\\x79\\xe0\\x33\\xaf\\x5f\\xd0\\x78\\xc1\\xc2\\x0b\\x46\\x2f\\x78\\xec\\x82\\x89\\xcf\\xc2\\x67\\xb5\\xad\\xb0\\x35\\xbe\\xf5\\x86\\xad\\x2f\\x6f\\xfd\\x70\\x5b\\xd7\\xb6\\xcb\\xb6\\x1d\\xda\\xf6\\xa3\\x6d\\x93\\xdb\\x5b\\xb7\\x5f\\xb0\\xfd\\xee\\xed\\xcf\\x5c\\xe8\\xba\\xf0\\xc0\\x85\\x47\\x2e\\x9c\\xd8\\x11\\xdc\\xb1\\x7b\\xc7\\x53\\x3b\\x3e\\xd8\\x29\\xee\\x3c\\x77\\xa7\\xb6\\xf3\\x89\\x5d\\x75\\xbb\\x36\\xec\\xba\\x7f\\xd7\\xf1\\x8b\\x3a\\x2f\\xda\\x7c\\xd1\\xfd\\x17\\xbd\\x7a\\xd1\\xfb\\x17\\xbb\\x2e\\x9e\\x7f\\xf1\\xf6\\x8b\\x6f\\xbe\\xf8\\xf5\\x4b\\x6c\\x97\\x74\\x5e\\x32\\x72\\xc9\\x4b\\x97\\xfc\\x7e\\xd4\\x3f\\xba\\x67\\xf4\\xa5\\xd1\\x52\\xb6\\x2b\\x3b\\x92\\xbd\\x2f\\xfb\\x4c\\xf6\\xf7\\xbb\\xbb\\x77\\x67\\x76\\xef\\xdf\\xfd\\xf0\\xee\\x9f\\xed\\xfe\\xe0\\x52\\xf1\\xd2\\x0d\\x97\\x6a\\x97\\x3e\\x75\\xe9\\xf1\\xcb\\x3a\\x2e\\x1b\\xbd\\xec\\xc8\\x65\\xaf\\x5c\\x6e\\xba\\xdc\\x73\\xb9\\x72\\xf9\\xc5\\x97\\x8f\\x5d\\xfe\\xf2\\xe5\\x7f\\xd9\\x13\\xdc\\x13\\xdf\\x33\\xb6\\xe7\\xf5\\x3d\\x1f\\x5f\\x21\\x5e\\xb1\\xf8\\x8a\\x3d\\x57\\x3c\\x72\\xc5\\xeb\\x57\\xb6\\x5e\\xb9\\xee\\xca\\x87\\xae\\x3c\\x7e\\x55\\xc7\\x55\\xa3\\x57\\x3d\\x72\\xd5\\x0b\\x57\\xbd\\x7c\\xd5\\xdb\\x57\\x9d\\xbc\\xaa\\xb4\\xb7\\x73\\x6f\\x6a\\xef\\x9a\\xbd\\xe7\\xee\\xdd\\xbb\\xf7\\x96\\xbd\\x5f\\xde\\xfb\\xd2\\xde\\x63\\x7b\\x3f\\xd9\\xd7\\xb9\\x6f\\x64\\xdf\\xde\\x7d\\x87\\xf7\\x3d\\xb1\\xef\\xc7\\xfb\\x7e\\xb9\\xef\\xfd\\xfd\\x96\\xfd\\x6d\\xfb\\x93\\xfb\\xf7\\xee\\x7f\\x6a\\xff\\x2f\\xaf\\x36\\x5d\\xdd\\x7d\\xf5\\x9e\\xab\\x1f\\xbb\\xfa\\xf8\\x01\\xff\\x81\\x35\\x07\\x46\\x0f\\x3c\\x7e\\xe0\\xc4\\x35\\xf1\\x6b\\x2e\\xbe\\x66\\xfc\\x9a\\x4f\\x0e\\x2e\\x3e\\xb8\\xff\\xe0\\x91\\x83\\xaf\\x1c\\xfc\\xe0\\x5a\\xef\\xb5\\x43\\xd7\\xde\\x7e\\xed\\x2b\\xd7\\x7e\\x78\\xdd\\xfc\\xeb\\xf6\\x5e\\xf7\\xd4\\x75\\x6f\\x5e\\x3f\\x70\\xfd\\xd6\\xeb\\xef\\xbc\\xfe\\x89\\xeb\\x7f\\x7b\\x43\\xe3\\x0d\\x83\\x37\\xdc\\x7c\\xc3\\x8f\\x6f\\x28\\xdd\\x18\\xbf\\x71\\xeb\\x8d\\x87\\x6e\\x7c\\xfc\\xc6\\x13\\x5a\\xb3\\xb6\\x4e\\x3b\\xac\\xbd\\xfa\\xb9\\xba\\xcf\\x0d\\x7c\\x6e\\xc3\\xe7\\x2e\\xfe\\xdc\\xa1\\xcf\\x3d\\xf3\\xb9\\xb7\\x6f\\xb2\\xdd\\xe4\\xbf\\x69\\xff\\x4d\\xaf\\x7f\\xde\\xf2\\xf9\\x75\\x9f\\x3f\\xfc\\xf9\\xd7\\x6f\\xae\\xbb\\x39\\x7e\\xf3\\xae\\x9b\\x1f\\xbd\\xf9\\xd8\\x17\\xfc\\x5f\\xd8\\xf0\\x85\\xb1\\x2f\\xfc\\xe2\\x16\\xf1\\x96\\xa1\\x5b\\xf6\\xdc\\xf2\\xe8\\x2d\\x3f\\xbe\\xe5\\xfd\\x5b\\xbb\\x6f\\x5d\\x73\\xeb\\x4d\\xb7\\x3e\\x7b\\xeb\\x47\\x87\\x7a\\x0f\\xed\\x39\\xf4\\xd2\\xa1\\x8f\\x6e\\x6b\\xbb\\x4d\\xb9\\xed\\x82\\xdb\\x6e\\xb9\\xed\\xe1\\xdb\\x0a\\xb7\\x9d\\xbc\\x3d\\x73\\xfb\\x81\\xdb\\x1f\\xbe\\x7d\\xe2\\x8e\\xba\\x3b\\xe6\\xdf\\x71\\xd3\\x1d\\xcf\\xdf\\xf1\\xc1\\x9d\\xcb\\xef\\x3c\\x70\\xe7\\xf1\\xbb\\xea\\xef\\x1a\\xbc\\x6b\\xf4\\xae\\xf1\\xbb\\x3e\\xb8\\x5b\\xbc\\x7b\\xc7\\xdd\\x0f\\xdd\\xfd\\xd6\\x3d\\x96\\x7b\\x7a\\xef\\x39\\xeb\\x9e\\xd1\\x7b\\x6e\\xbf\\xe7\\x97\\x87\\x4d\\x87\\xe3\\x87\\x87\\x0e\\x6f\\x3f\\x7c\\xff\\xe1\\x17\\x0e\\xbf\\x75\\xb8\\x74\\x6f\\xdb\\xbd\\x83\\xf7\\x8e\\xde\\xfb\\xf4\\xbd\\x3f\\xbe\\xf7\\xd8\\x7d\\xae\\xfb\\x86\\xee\\x1b\\xbd\\x6f\\xfc\\xbe\\x13\\x5f\\xac\\xfb\\xe2\\xc8\\x17\\xaf\\xfc\\xe2\\x63\\x5f\\x7c\\xfb\\xfe\\x85\\xf7\\xdf\\x7c\\xff\\x43\\xf7\\x3f\\x7b\\xff\\xc9\\x5c\\x5b\\x6e\\x24\\x77\\x30\\x77\\x77\\xee\\xd9\\xdc\\xcf\\xc6\\x2c\\x63\\x1d\\x63\\xeb\\xc6\\x0e\\x8c\\x8d\\x8d\\x3d\\x3d\\xf6\\xe6\\x97\\x52\\x5f\\xda\\xfe\\xa5\\x3b\\xbf\\xf4\\xca\\x97\\x2d\\x5f\\x5e\\xf9\\xe5\\x5b\\xbe\\x3c\\xfe\\xe5\\x5f\\x7e\\xc5\\xf6\\x95\\xf8\\x57\\xb6\\x7e\\xe5\\x81\\xaf\\xbc\\xfc\\x40\\xdd\\x03\\xcb\\x1f\\x78\\xfe\\x81\\xe3\\x0f\\xb6\\x3e\\x38\\xf2\\xa0\\xf6\\xe0\\xc3\\x0f\\xbe\\xfa\\xe0\\x89\\x87\\x9a\\x1f\\x1a\\x7c\\x68\\xd7\\x43\\xf7\\x3d\\xf4\\xd6\\x57\\x93\\x5f\\x1d\\xf9\\xea\\xc1\\xaf\\x3e\\xf2\\xd5\\x9f\\x7d\\xf5\\x4f\\x0f\\x67\\x1e\\xfe\\xc5\\xc3\\xa5\\xaf\\xc5\\xbf\\xb6\\xe3\\x6b\\x8f\\x7d\\xed\\xcd\\x23\\xcd\\x47\\x2e\\x3b\\xf2\\x8b\\x23\\x1f\\x7f\\x7d\\xc3\\xd7\\x6f\\xff\\xfa\\xab\\x5f\\x2f\\x3d\\x32\\xf8\\xc8\\xc1\\x47\\x1e\\x7d\\xe4\\xed\\x6f\\xb8\\xbe\\xb1\\xf9\\x1b\\x87\\xbf\\xf1\\xec\\x37\\x26\\xbe\\xf1\\x97\\x47\\x5b\\x1f\\x3d\\xe3\\xd1\\x8b\\x1f\\xbd\\xe9\\xd1\\xc7\\x1e\\x9d\\x78\\xf4\\x93\\x6f\\x6e\\xff\\xe6\\x23\\xdf\\x7c\\xe3\\x9b\\xa5\\xc7\\x56\\x3e\\x76\\xd9\\x63\\x47\\x1e\\xfb\\xc5\\xb7\\xfc\\xdf\\xda\\xfc\\xad\\xdd\\xdf\\xba\\xe1\\x5b\\x63\\xdf\\x7a\\xea\\x5b\\xbf\\xf8\\xd6\\xfb\\x8f\\x07\\x1f\\x1f\\x78\\xfc\\xac\\xc7\\x77\\x3f\\x7e\\xff\\xe3\\xcf\\x3e\\xfe\\xdb\\x6f\\xdb\\xbe\\xdd\\xf9\\xed\\x81\\x6f\\x5f\\xf7\\xed\\xc7\\xbf\\xfd\\xc9\\xf8\\xf9\\xe3\\xb7\\x8f\\xff\\x6c\\xfc\\xa3\\x7c\\x57\\x7e\\x71\\x7e\\x7f\\xfe\\x99\\xfc\\x9b\\x4f\\xd4\\x3f\\xb1\\xf0\\x89\\xfd\\x4f\\x1c\\x79\\xe2\\xd5\\x27\\x3e\\x7c\\xd2\\xf5\\xe4\\xf2\\x27\\x77\\x3c\\x79\\xcb\\x93\\xcf\\x3f\\xf9\\x97\\xa7\\x7e\\xfc\\xd4\\x89\\xef\\x74\\x7c\\x67\\xe4\\x3b\\x0f\\x7d\\xe7\\xed\\xa7\\xbb\\x9e\\x5e\\xfe\\xf4\\x75\\x4f\\x3f\\xf5\\xf4\\xdb\\xdf\\x0d\\x7e\\x77\\xf0\\xbb\\x37\\x7f\\xf7\\xd1\\x67\\x3c\\xcf\\x0c\\x3c\\x73\\xd9\\x33\\x2f\\x3d\\xf3\\xc9\\xf7\\x86\\xbe\\x77\\xe0\\x7b\\xf7\\x7d\\xef\\x8d\\x67\\xeb\\x9f\\xbd\\xf9\\xd9\\xd7\\x9f\\xb3\\x3d\\x37\\xf8\\xdc\\x95\\xcf\\x3d\\xfb\\xdc\\x27\\xcf\\x2f\\x7c\\x7e\\xf7\\xf3\\x8f\\x3f\\xff\\xc9\\xf7\\x0f\\x7c\\xff\\xa5\\xef\\xbf\\xff\\x42\\xeb\\x0b\\xca\\x0b\\x4f\\xbf\\x70\\xfc\\x07\\x63\\x3f\\x78\\xe9\\xc5\\x96\\x17\\xb7\\xbe\\x78\\xe7\\x8b\\x9f\\x80\\x89\\xfa\\x51\\xbf\\x82\\x2a\\x98\\x81\\x81\\xde\\xef\\x22\\xf4\\x2d\\x7e\\x86\\xb1\\xc0\\xff\\x88\\x7f\\xd7\\x66\\x7d\\x7b\\xf1\\x33\\x66\\x13\\xfc\\x8f\\x38\\x7c\\xd7\\x4c\\x2e\\x5b\\xc9\\xe5\\x67\\x18\\x1b\\x7e\\xb2\\xf8\\x19\\x24\\xd7\\x13\\xce\\x84\\x53\\x48\\x38\\x79\\xe7\\xa1\\xab\\x77\\xed\\x42\\xb5\\x94\\x77\\x62\\x62\\xb6\\x66\\xd3\\xff\\x7f\\xcf\\xff\\xef\\xf9\\xbf\\xef\\xdc\\x0c\\x12\\x48\\x58\\xc4\\x22\\xc5\\x51\\x07\\x40\\x54\\xe6\\x59\\x4e\\xe6\\x59\\x53\\xdc\\xeb\\xb1\\x75\\xc4\\x92\\xc8\\x8a\\xa2\\xb8\\xe2\\xe9\\xeb\\xaf\\x7f\\xfa\\xfa\\x29\\x4d\\xcb\\x48\\x12\\x2a\\xd7\\x93\\x33\\x3a\\xad\\x50\\x7e\\x97\\xbc\\xe9\\x06\\x0e\\x20\\x15\\x4f\\x25\\x63\\x1d\\x36\\x8f\\xcb\\x78\\x3b\\x9d\\x60\\x79\\x36\\xc1\\xf2\\x2f\\xde\\xb9\\x73\\xe7\\x9d\\x3b\\x37\\xd1\\x62\\x0a\\xa2\\x28\\x8a\\xea\\x4e\\x72\\x05\\x03\\xb4\\x2c\\xb7\\x26\\x49\\xd4\\x3a\\x65\\x41\\xc1\\x29\\xa3\\x2d\\xf5\\xd5\\xb6\\x30\\x01\\xa4\\xcd\\x98\\x98\\x9a\\x2a\\x66\\x32\\xaa\\x24\\x29\\x98\\x2b\\x65\\xc1\\x0c\\x0a\\xb0\\x58\\xc0\\x22\\x34\\x40\\x08\\xa2\\xf4\\x79\\x99\\xa7\\x15\\x26\\xe4\\x10\\xb2\\x11\\x39\\x2d\\x27\\x53\\x64\\x8b\\x7b\\xdb\\x31\\x88\\x2c\\x93\\x20\\x8d\\x42\\x55\\x11\\x15\\x45\\xbc\\xa1\\xa7\\xa4\\xf5\\x28\\xfd\\x9e\\x36\\x4f\\xbf\\xf2\\xc3\\xcd\\xbe\\x0e\\xdf\\x29\\x49\\x51\\x24\\x45\\xd9\\xd8\\xc3\\x71\\x3d\\xd7\\x25\\x36\\x36\\x38\\x9a\\x3d\\x9e\\x66\\x47\\xc3\\xc6\\x44\\xd1\\xe9\\xf7\\x03\\xd4\\xc2\\x8a\\xf4\\x97\\x03\\x28\\xf7\\xd2\\x66\\xf4\\x3a\\x65\\x9c\\xff\\x4f\\x57\\x63\\xa3\\xab\\xd1\\xbd\\x61\\x60\\x60\\xc3\\x40\\x1d\\xed\\x33\\xb2\\x8d\\xe4\\xda\\x25\\x03\\xe4\\xda\\xbf\\x18\\x00\\xb4\\x80\\x02\\x0a\\x16\\xb0\\x40\\xcb\\x23\\x3a\\x3c\\xa4\\x92\\x7a\\x19\\x29\\x5a\\x4e\\x2a\\x2e\\x24\\xf4\\x22\\xe5\\x64\\x5a\\xe6\\x18\\xc1\\xc6\\x7a\\xbc\\xf1\\x94\\x9c\\x8c\\x09\\x2c\\xef\\x31\\x1e\\xd5\\x1a\\x5d\\x4d\\x4d\\xae\\x3f\\xd1\\xfd\\x6d\\xec\\x86\\x3d\\x7b\\x8e\\xec\\x59\\x7f\\x6f\\x70\\x6f\\x64\\xcb\\x75\\x5b\\xd6\\xa5\\x44\\x5a\\xad\\xde\\x9e\\x20\\xdd\\xe7\\xf7\\x1c\\xd9\\xb3\\x67\\xc3\\xd6\\x05\\x78\\x6f\\xf0\\xaa\\x79\\xf2\\xe0\\x96\\x2d\\x83\\x03\\x9b\\xeb\\xe6\\xfd\\x33\\x79\\xbb\\x91\\xf6\\x51\\x01\\x15\\x0b\\x98\\x07\\x0e\\xfa\\x88\\x0d\\x8f\\x72\\x32\\x26\\x61\\x87\\xad\\x1d\\x3d\\xde\\x45\\x18\\x4f\\x2d\\x41\\x9e\\xe5\\xe5\\x04\\xcb\\x7f\\xca\\xf5\\x74\\xdc\\xcb\\x3a\\x3d\\x36\\x3e\\xd2\\x11\\x93\\x9d\\xc9\\x54\\x02\\xb5\\x46\\xbb\\x62\\x6f\\x6a\\xb2\\x2b\\xf6\\xc6\\xb0\\x24\\xed\\xa3\\x07\\xf4\\x52\\x58\\x92\\x7e\\xe6\\xf4\\xfb\\x9d\\xa5\\x09\\x97\\xcf\\xe7\\x42\\xd6\\x4b\\xae\\x67\\xc8\\xce\\xdb\\xa0\\x34\\xcc\\x3c\\x1b\\xf3\\x3b\\xa7\\x81\\x3c\\x8c\\xe0\\x34\\xc6\\x42\\x05\\x15\\xf3\\x98\\xa7\\xb8\\xd2\\x00\\x80\\x09\\x96\\x8f\\xc8\\x09\\x96\\xf0\\x4d\\x54\\x33\\x99\\x69\\xc8\\x88\\x19\\x54\\xa6\\xf2\\x79\\xcc\\x94\\xc6\\xc1\\x54\\x81\\x75\\x03\\x04\\x48\\xaf\\x78\\x36\\x21\\xf3\\x32\\xd9\\x4e\\x6b\\xb1\\xa2\\x69\\xaa\\xaa\\x8e\\xeb\\x6d\\xa3\\x95\\x2a\\xd2\\x84\\x24\\x89\\x92\\x56\\xb9\\x20\\x92\\x56\\x98\\x40\\x05\\x0d\\x5f\\x43\\x0d\\x4c\\x74\\x36\\x8e\\x63\\x78\\x27\\x87\\xec\\xf3\\xcf\\x17\\x9e\\x47\\x4d\\xd3\\x10\\x34\\xf2\\x8c\\x0c\\x1a\\xe6\\xcb\\xcf\\xb8\\xd3\\x4e\\x5e\\x48\\xff\\xf9\\xf9\\xc2\\xf3\\xcf\\x23\\x68\\xd3\\xa0\\x69\\x33\\xe8\\xc8\\x02\\x76\\x68\\x06\\xb7\\xde\\x1b\\x81\\x49\\x73\\x2c\\x6f\\xe6\\x18\\x5e\\x8e\\x32\\x82\\x9c\\xc0\\xad\\xfb\\xf6\\x29\\x5b\\x15\\x45\\x0b\\x2b\\xca\\x3e\\x64\\x15\\x45\\x43\\x45\\x23\\x17\\xf4\\x13\\x72\\x55\\x1f\\x3f\\x09\\x0b\\x78\\x82\\xe2\\x94\\x0c\\xe0\\x32\\xd0\\x44\\xb0\\x79\\x38\\x26\\x96\\x4c\\xbb\\xe3\\x29\\x39\\xe1\\xb1\\xf1\\x1d\\x42\\x4c\\xff\\xa3\\xe4\\xc1\\xf2\\x04\\x81\\x59\\x0f\\xe7\\xd5\\xff\\xfe\\x1c\\xee\\x0e\\x85\\xba\\xaf\\x1c\\x18\\x08\\xae\\x5a\\x75\\xc2\\xe9\\x93\\xe2\\xbc\\xc7\\x31\\xcf\\xc5\\xb4\\xcf\\xf3\\x70\\x5b\\x6e\\xc8\\x48\\x4b\\xce\\x1d\\x74\\x36\\x77\\x76\\x35\\x34\\x71\\x75\\x28\\x92\\x27\\x43\\x3f\\x1c\\x38\\x32\\x10\\x5c\\xf5\\xe3\\x55\\xa5\\xcb\\xfd\\x4e\\x3e\\xce\\xb0\\x69\\xaf\\x37\\x18\\x9d\\x27\\x2e\\xcd\\x64\\x96\\xf6\\x0c\\x0e\\xf6\\x84\\x43\\x81\\x40\\xb0\\x23\\xd6\\x48\\x67\\x22\\x2d\\x15\\x1c\\x33\\x03\\x07\\x3c\\x24\\x08\\xe5\\x26\\x58\\x6e\\x06\\x46\\xb1\\x09\\x39\\x11\\x4f\\x31\\x84\\x9e\\xe9\\x58\\xcd\\x81\\x59\\xb2\\x14\\x36\\x70\\xab\\x25\\xdc\\x62\\x6f\\xcc\\x85\\xa5\\x70\\xb8\\x16\\xa5\\x26\\x15\\xa5\\x21\\x63\\xa0\\x51\\x38\\xdc\\xd8\\xa8\\xc9\\xb2\\x26\\x49\\x53\\x33\\x50\\x89\\x8c\\x21\\x8b\\x79\\x9c\\x82\\x66\\x68\\x27\\xed\\xe0\\x18\\x99\\x92\\x1b\\x47\\x68\\xcd\\x1d\\xf7\\xb2\\x1e\\x46\\x20\\x14\\xc7\\xb3\\x42\\x1a\\x41\\x55\\x87\\x76\\x06\\x42\\x8e\\x61\\xd9\\xf8\\x52\\x55\\x4d\\x51\\x33\\xca\\xce\\xa1\\xf8\\xbc\\x50\\x20\\x22\\x0f\\xa3\\x54\\x39\\x54\\xd4\\x0c\\xf5\\x4c\\x64\\x41\\xc1\\x1c\\x16\\xc1\\x41\\xf1\\x2e\\xe1\\xb1\\x31\\x2c\\x2f\\xf7\\xa2\\x9c\\x20\\xa4\\x6c\\xeb\\x88\\x2d\\x41\\x9d\\x3f\\x79\\xf0\\x8a\\xce\\x61\\x59\\x94\\x87\\x3b\\x57\\x9c\\xbf\\x62\\x4b\\x32\\x16\\x4b\\xc6\\x90\\x4d\\x6d\\xac\\x1b\\x1a\\xaa\\xdb\\x98\\xea\\x5b\\xb2\\xc4\\x19\\xf3\\x6b\\xfe\\x18\\xd9\\xe9\\xf8\\x5f\\x2d\\xb7\\x0d\\xba\\x4e\\x2f\\x59\\x60\\x3d\\xde\\x44\\x3c\\x25\\xa7\\xc9\\xc0\\x7a\\x3f\\xa5\\x9a\\x3b\\x1c\\x0d\\xf5\\x0e\\x6c\\xf1\\xb4\\x24\\x4f\\xaf\\xef\\xbb\\x37\\xd7\\x3b\\x9a\\x1b\\x6e\\x6e\\x70\\x38\\x7e\\x5e\\x53\\xb3\\xd9\\xa0\\xa3\\x22\\xf8\\x20\\x02\\x02\\x80\\x1b\\x19\\xa1\\xa6\\xe2\\x44\\x3c\\x2d\\xd8\\x78\\x52\\x9d\\x60\\x15\\x74\\xd4\\xe2\\x28\\x04\\xcf\\xc3\\x9d\\x81\\x73\\xbc\\x11\\x5a\\x71\\xaf\\xaf\\x95\\xaf\\xb3\\xf9\\x63\\x84\\x44\\x62\\xc9\\x98\\xea\\xf6\\xdb\\xb1\\x50\\x7a\\x30\\x70\\x4e\\xb3\\xd5\\xa8\\xbd\\x81\\x37\\xc5\\xfc\\x2d\\xda\\x17\\x6f\\xb4\\xd0\\x8a\\xa3\\x91\\x80\\x87\\x03\\x04\\x09\\x54\\x2c\\x62\\x1e\\x5a\\x49\\x7f\\x6b\\x70\\x61\\x11\\x72\\x09\\x21\\xa1\\x6f\\xa8\\xa9\\x3e\\x67\\x69\\xdc\\xe9\\xf3\\x39\\xbd\\xa2\\x22\\x8a\\x92\\x22\\x11\\x81\\x91\\x2f\\x15\\xcb\\x83\\x9e\\x21\\x9f\\x19\\xfc\\x9c\\xf0\\x84\\x4e\\xca\\x15\\x2a\\xf2\\x63\\x36\\xb6\\x31\\xce\\x08\\x4b\\x8f\\x31\\xa7\\x4a\\xaa\\x2a\\x65\\x49\\x05\\x3a\\x22\\x65\\x50\\x2a\\x15\\x9d\\x3e\\x64\\xc9\\x75\\x55\\x2d\\xf8\\xaa\\x08\\xe6\\x53\\x4b\\x45\\xd1\\xe7\\x44\\xea\\xb4\\xb7\\xce\\x90\\xb5\\xd5\\x3a\\xa9\\x8c\\x4b\\x93\\xed\\xd3\\xeb\\x2c\\x6a\\x5a\\xb1\\x38\\x75\\x7a\\x9d\\x59\\x51\\xcc\\x4b\\x92\\x2a\\x49\\x9f\\x52\\x6b\\xb5\\x8f\\x75\\xe0\\x85\\x18\\x80\\xbb\\x5c\\xa6\\x55\\xe6\\xd9\\x18\\xdf\\x61\\x23\\xc8\\xb2\\x04\\x67\\x57\\xad\\x1a\\xe5\\xab\\x6a\\xb3\\xcb\\x1b\\x0e\\x77\\x87\\x6a\\xfa\\x8b\\x9a\\x51\\x3c\\x2b\\xee\\x6b\\x20\\x8c\\xc2\\xbb\\x7f\\xb4\\xb6\\x76\\x30\\x64\\x79\\x04\\xa7\\xf0\\x9f\\x69\\x5f\\x03\\x55\\x59\\x1e\\x65\\x38\\x07\\x0a\\x4c\\x1f\\xa6\\x85\\xb4\\xb0\\x14\\xb9\\x74\\x08\\x19\\x2a\\xdc\\x11\\x92\\xcc\\xfa\\xae\\xb5\\x6b\\xbb\\xd6\\x33\\xc9\\xca\\x91\\xae\\x72\\x64\\x17\\x9d\\xe9\\x5c\\x19\\x0a\\xad\\x70\\x9d\\xb9\\x68\\xf1\\x19\\xe4\\x68\\xa5\\xf3\\xcc\\xb9\\xe4\\x71\\x94\\x12\\x6a\\x07\\xe3\\x26\\x48\\xc8\\x7a\\xbc\\x15\\x1d\\xe6\\xd6\\xce\\x9d\\x43\\x8b\\x7b\\x2e\\x59\\xdc\\xf3\\x41\\xe7\\x4e\\x17\\x15\\xc8\\x5f\\xea\\x59\\x3c\\xb4\\xb3\\xb3\\xf4\\x8b\\xce\\x0f\\xc8\\x01\\x6a\\x65\\x9d\\xc6\\x04\\x1a\\x64\\x51\\xc3\\x1c\\x6d\\x37\\xc1\\x32\\x09\\x89\\x44\\x91\\x54\\x35\\xaf\\x62\\xae\\x34\\x81\\x62\\x69\\x02\\x3e\\x45\\x6f\\xe2\\x6b\\xf5\\x26\\x45\\x12\\xa5\\x56\\x5a\\x57\\x7e\\x7c\\x7c\\x7c\\x1c\\xc5\\x72\\x15\\x35\\xfc\\xde\\x0c\\x0d\\xba\\xde\\x44\\xf8\\x9f\\x6d\\x96\\xee\\xc4\\xc9\\x09\\x16\\x59\\xe9\\x96\\x1a\\xd5\\x29\\x27\\xe5\\xc7\\xc7\\x33\\xb5\\xaa\\xd3\\x93\\xe3\\xe3\\x80\\x90\\x87\\x2c\\xe6\\x30\\x07\\x26\\x00\\x37\\xc7\\xe4\\x4f\\x9d\\xc2\\x5c\\x8e\\x9c\\x95\\xeb\\x31\\x11\\x6d\\x6a\\x29\\x0a\\x31\\xa3\\xe8\\xa2\\xa6\\xf5\\xd0\\x02\\x8f\\x6c\\xdd\\xba\\xaf\\xd2\\xae\\x99\\xf0\\x74\\x9d\\xae\\xcd\\x71\\x32\\x57\\xab\\xc8\\x8d\\x6b\\x33\\xb4\\xb8\\x17\\x0a\\x5b\\xf5\\xbe\\x11\\x1a\\xd5\\xc0\\x5c\\xd6\\x09\\xd3\\x84\\x77\\x13\\x3d\\x90\\xa7\\x02\\x37\\x21\\xb0\\x11\\xd9\\xca\\x46\\x64\\x69\\x3c\\x4f\\xe9\\x45\\x52\\xa7\\x01\\x61\\x1a\\xf2\\x44\\x2f\\xcc\\x64\\x44\\xa2\\xe0\\xa9\\x92\\xf4\\x1f\\x4f\\x9f\\xba\\x5c\\x22\\x6d\\x6f\\xa2\\x73\\x8b\\x3e\\x5d\\x0e\\xb3\\xba\\x2e\\x96\\x88\\x73\\x56\\xd2\\x13\\x36\\x22\\x47\\xd9\\x88\\x8c\\xd9\\x51\\x25\\x96\\x8c\\xc5\\xfc\\x75\\xcd\\xa5\\x62\\xde\\xe8\\x02\\x6a\\x52\\xc1\\x4f\\x38\\xa9\\x25\\x26\\x8a\\x9a\\xd1\\x8d\\x4a\\x3f\\xa6\\x28\\x5c\\x23\\xa4\\x1f\\x11\\x96\\xe8\\x2a\\x16\\x03\\xbe\\xe6\\x28\\xc7\\x24\\x66\\xf4\\x07\\xf3\\xa5\\x71\\x04\\xa9\\xf4\\xff\\x52\\xbe\\xdc\\x82\\xcd\\xcd\\x4f\\xff\\xc5\\xd5\\xda\\xea\\x2a\\x8d\\xbb\\x5a\\x89\\x14\\x92\\xa4\\x3c\\xa9\\x3c\\x89\\xa6\\xcb\\x3a\\x57\\xfb\\x5c\\xd3\\x40\\x7a\\x8b\\x10\\x04\\x2b\\xb0\\x90\\xc5\\x29\\xcc\\xd1\\xba\\x42\\xc0\\x13\\x1e\\x1d\\x95\\x49\\x35\\xed\\x98\\xd2\\xa9\\x3d\\x79\\x9a\\x24\\x75\\x26\\x9c\\xee\\x84\\x93\\xc7\\x86\\xe5\\x8b\\x97\\x5f\\x15\\x6b\\x6f\\x8f\\xb5\\x6f\\x20\\x72\\x73\\x1a\\x88\\x70\\x45\\x45\\x94\\x24\\x29\\xd7\\xe2\\xf5\\xfb\\xbd\\x2d\\xaf\\xb4\\x93\\xdb\\x5b\\xe8\\xbd\\xc6\\x46\\x3b\\x82\\xbd\\x51\\xa7\\x09\\x83\\x2e\\x4c\\x86\\xfe\\x41\\xf8\\x8d\\x53\\xc7\\xeb\\x08\\x2b\\xa4\\x59\\x99\\xe5\\xe5\\x08\\x11\\xae\\x98\\x15\\xa7\\x41\\x55\\x45\\xd2\\x8b\\x5c\\x46\\x53\\x54\\x55\\x99\\xd0\\xbf\\x2a\\xba\\x4b\\x11\\x6c\\xe0\\x20\\x3c\\x3e\\x4a\\x30\\x26\\x9d\\xe0\\x4e\\x2f\\x84\\x0d\\x87\\x25\\x36\\x53\\x2d\\xa9\\xa0\\x7a\\xd9\\xfc\\xcc\\xd2\\x80\\xc6\\xb1\\x28\\x54\\xb6\\x13\\x8d\\x8a\\x88\\x72\\xa2\\x49\\x53\\xe9\\x58\\x96\\xe7\\xab\\x77\\xec\\xbc\\x73\\xa7\\x34\\x3c\\x3a\\x3c\\x2c\\x67\\xb3\\x98\\xdb\\x31\\xb4\\x7a\\xc7\\x8e\\xd5\\xf2\\xf0\\xf0\\xe8\\x70\\x26\\x9b\\x9d\\xa9\\x67\\xda\\x28\\x56\\x40\\x94\\x4b\\xb3\\x7c\\x5a\\x48\\x27\\x58\\x01\\x05\\x74\\xa0\\x90\\xc6\\xc5\\x2b\\xba\\xf7\\x77\\xaf\\xe0\\xf6\\x77\\x97\\xfe\\x14\\xc4\\xc6\\x1b\\x83\\x97\\x07\\x8f\\xd1\\x2b\\xbf\\x33\\xae\\xac\\x08\\x5e\\x1e\\x04\\x83\\xb7\\x68\\xa8\\x51\\xda\\xb0\\x95\\x79\\x0b\\x87\\xaa\\x24\\x15\\x9f\\x43\\x8d\\x60\\x90\\x56\\xf3\\x8c\\x89\\x3c\\xe3\\x4e\\x3b\\x31\\xe1\\xe4\\x5f\\x7b\\x6e\\x1a\\x24\\x89\\x6a\\x8c\\x04\\xcd\\x6a\\x64\\xc9\\x2f\\xc1\\x0e\\x4e\\xf0\\x41\\x3b\\xc1\\x2b\\xb7\\x9c\\x60\\x19\\xa2\\x9a\\xa7\\x67\\x5b\\x24\\x51\\x46\\x48\\x93\\xb6\\x16\\xb4\\xf5\\xeb\\xb5\\xf5\\xc3\\xd7\\x6d\\xd9\\x72\\xdd\\x96\\x55\\x47\\x88\\xad\\x80\\xb9\\xc0\\xf6\\xc0\\x6b\\xdb\\x03\\xdb\\x91\\x95\\x62\\xe7\\x4a\\xc2\\x39\\x85\\xb3\\xc9\\xdd\\xd2\\x15\\x0f\\x5f\\x71\\xc5\\xc3\\x23\\x91\\x4d\\xe1\\xf0\\x59\\xe1\\xb3\\x80\\xb6\\xad\\xdc\\x76\\x70\\x47\\x9c\\x11\\x4d\\xc7\\xf7\\x69\\xa3\\x2d\\xba\\x5c\\xd6\\xe5\\x1a\\xc1\\xbb\\x0a\\xbf\\x27\\x14\\x2b\\xb3\\x09\\x39\\x3a\\x1b\\xe7\\xf2\\x13\\x13\\x19\\x71\\x22\\x83\\x14\\x75\\x75\\x79\\x5d\\xa4\\x14\\x23\\x49\\x9a\\x24\\xe5\\x67\\x29\\xfc\\xd5\\x3a\\x18\\x68\\x81\\x56\\x88\\x10\\xe3\\xb5\\xc2\\x97\\x52\\x49\\x81\\x21\\x9a\\x5a\\xcc\\xe8\\x36\\x43\\x34\\x38\\xa2\\xf1\\xe2\\xac\\x5a\\xff\\xd0\\xe1\\xf7\\x77\\xf8\\x1f\\x8d\\xc7\\x43\\xb1\\xe8\\x0d\\x43\\xf1\\xf8\\x50\\xdc\\x1a\\x8b\\x06\\xe3\\x71\\xec\\xac\\xb6\\x02\\x25\\x3f\\x79\\xea\\xf6\\xf8\\xdd\\xf1\\x50\\x2c\\x99\\x8a\\xda\\xe2\\xe4\\xc1\\x34\\x39\\x0c\\xc6\\xef\\x8e\\x63\\xe7\\xe9\\xb6\\x48\\x95\\xcf\\xba\\xa8\\xac\\x4b\\x0b\\x9f\\xce\\x9e\\x40\\xd3\\xf2\\xa7\\xf1\\xa6\\xd7\\xb6\\x6e\\x5d\\x37\\x27\\x5b\\x42\\x50\\x40\\xc3\\x02\\x6a\\x14\\x87\\xd3\\xac\\xc0\\xea\\x85\\x12\\x75\\x2e\\x11\\x89\\x7b\\x59\\xcc\\xaa\\x6a\\x53\\x95\\x1a\\x9b\\x30\\xac\\x9e\\x52\\x87\\xc9\\xd9\\x04\\xd9\\xe9\\x78\\x27\\x19\\x3a\\x1b\\x95\\x92\\x54\\x63\\x2b\\x97\\xb1\\x08\\x05\\x2b\\x4b\\xac\\xcc\\x76\\x1c\\xc2\\x83\\x81\\x95\\x36\\x9b\\x5e\\x54\\xcb\\x42\\xcc\\xfd\\xe1\\x66\\x7b\\x13\\x16\\x4b\\xb7\\x04\\x56\\x5a\\x68\\x69\\x0b\\x57\\x1d\\xff\\x43\\xa3\\x7d\\x98\\xea\\xb4\\x2a\\xde\\x81\\x79\\xb0\\x82\\x1d\\xc0\\x9d\\x48\\x3b\\x05\\xbe\\xd3\\xc3\\xc8\\x59\\x35\\x9b\\x55\\x31\\x9c\\x42\\x25\\x5b\\x1a\\xcf\\x5e\\xbb\\x3f\\xf0\\x04\\x20\\xe4\\x40\\x45\\x95\\x3e\\x6b\\x3c\\x99\\xcb\\x8c\\x8e\\x66\\xf4\\x47\\x6a\\x6d\\x60\\x02\\xbb\\x20\\xe5\\xf2\\x6c\\x1f\\x52\\xa5\\x52\\x4e\\xa5\\x05\\x56\\xe0\\xe5\\x84\\x60\\x4d\\xc6\\x04\\x39\\x88\\x54\\x17\\x17\\x3c\\x8c\\x20\\x7b\\x11\\x7a\\x0e\\xe0\\xce\\x40\\x77\\x74\\x9e\\x8f\\x3b\\x2f\\xab\\xee\\xdc\\x89\\xea\\xa2\\xbe\\x65\\x9b\\xbd\\xe1\\x06\\x19\\x93\\x32\\xe6\\xcf\\xed\\x59\\x5e\\x7a\\x30\\xd0\\xdd\\x5e\\xdf\\xcd\\xb8\\xce\\x3b\\x9c\\xd5\\x76\\x7e\\x33\\x71\\x46\\x73\\x77\\xf3\\x25\\x2b\\xe7\\xcf\\x8b\\x04\\xda\\xed\\x96\\x64\\x9f\\x9f\\xf2\\x9b\\x55\\x58\\xc0\\xff\\x44\\x71\\x96\\x05\\xc0\\x20\\x7a\\x6c\\x8c\\x3c\\x88\\xc9\\x98\\xe0\\xf5\\x30\\x32\\x43\\xdb\\x8b\\xd2\\xb2\\xcd\\x9b\\x97\\xf5\\x2d\\x5a\\xd4\\x27\\xcb\\x53\\xb4\\x87\\xff\\xa9\\xf9\\x92\\x43\\x97\\x34\\x77\\x37\\x9f\\xb1\\xeb\\x8c\\xe6\\x4d\\x07\\xfc\\x4f\\x78\\xcb\\x7d\\x99\\x49\\x07\\x86\\xd6\\x23\\x18\\x94\\x30\\x1b\\x17\\x31\\x9f\\x61\\xa7\\xa6\\xa6\\x30\\x53\\x45\\x3d\\xad\\x50\\xc8\\xaa\\x6a\\x56\\x55\\x51\\x9a\\x85\\x64\\x55\\x38\\x99\\xa1\\x09\\x7c\\x30\\x4f\\xe7\\xad\\x02\\x9b\\x20\\xda\\x5b\\x32\\xc6\\xd7\\x5a\\x4a\\xee\\xd3\\x2d\\xa5\\x61\\x6a\\x08\\x69\\x73\\x98\\x48\\x5b\\x35\\x6a\\x20\\x69\\xba\\x75\\x84\\x30\\xd3\\xc6\\xb5\\x42\\x07\\xf4\\xe3\\x9b\\xf8\\xdf\\xc0\\x0e\\x8d\\xe0\\x01\\x0e\\xfc\\x00\\x51\\xca\\x63\\x88\\xb5\\x6f\\x4d\\xf4\\x61\\x82\\xe3\\x05\\x9e\\xe1\\xb9\\x04\\xe3\\xe6\\xd3\\xb8\\xe1\\xa6\\xe7\\x6f\\xb8\\xfe\\xbb\\xa5\\x87\\x36\\x89\\x4e\\x7e\\xab\\xe0\\xb9\\xd4\\x23\\xfc\\xe0\\xc2\\x78\\x62\\x67\\xfc\\xf1\\x8e\\xc0\\xf7\\x3b\\x02\\x37\\x5d\\xde\\xfb\\xa7\\x64\\x92\\x8f\\xe3\\xee\\x38\\xc1\\x4b\\x16\\x24\\x9c\\xc2\\x82\\x5e\\xaa\\x01\\x1f\\x09\\xe5\\x84\\x33\\xe2\\x4c\\xb0\\xbc\\xd1\\x7a\\x77\\x9a\\xc3\\x02\\x69\\x91\\xaa\\x96\\x34\\x55\\x25\\x47\\x8a\\xa6\\x61\\x81\\x42\\xc8\\x27\\x12\\x3e\\x44\\x68\\x05\\x9c\\xfe\\x52\\xd6\\xb0\\xa7\\xab\\x7c\\x3f\\x09\\x8b\\xe0\\x4c\\x80\\xa8\\x27\\x11\\x5f\\x8a\\xa9\\x25\\x18\\x23\\x0a\\xa2\\x03\\x6d\\xed\\xe8\\x4d\\x7b\\x1c\\x68\\xe3\\x3b\\x88\\x29\\xdc\\x8b\\x02\\xa1\\x86\\xa5\\x98\\x4a\\xc4\\x89\\xa0\\x0f\\x9a\\x38\\x2f\\xcb\\xf0\\x32\\x23\\xa7\\x13\\x4c\\x32\\x95\\xa0\\x56\\x21\\x95\\x9d\\xb2\\xee\\x42\\xf2\\xd7\\x5b\\x4d\\x16\\x93\\xc9\\x6e\\x32\\x9b\\x2d\\x66\\x73\\x97\\xc9\\xc6\\x58\\x4c\\x76\\x93\\xdd\\x62\\xb2\\x99\\xec\\x26\\xc6\\x66\\x9c\\x30\\x16\\x8b\\xe9\\x1c\\x0f\\x1b\\x33\\xdf\\xbf\\x63\\x75\\x36\\x9b\\x1c\\x19\\xb9\\x78\\x44\\xda\\x79\\xe7\\xce\\x97\\x18\\x93\\xd5\\x62\\x92\\x2c\\x16\\xab\\xd9\\x42\\xbe\\xdd\\x4d\\x96\\x26\\x9b\\xc9\\x84\\x16\\xb4\\xfa\\x1c\\xe5\\x63\\x53\\xa3\\xad\\x41\\x1e\\xb2\\x39\\x1a\\x03\\x43\\x3b\\x32\\xd9\\x6c\\x86\\xca\\xa8\\xd5\\x3b\\x76\\xcc\\xea\\x9f\\x00\\xab\\xe1\\x36\\x80\\xf4\\x1c\\x8d\\x4c\\xff\\xf5\\x3e\\xc7\\xe6\\xe8\\x32\\x1f\\x27\\x4f\\x4b\\x68\\xeb\\x68\\x47\\x3e\\x69\\xdc\\xf1\\xb6\\xa3\\x8d\\xf5\\xf0\\x1d\\x8c\\x97\\x23\\x3c\\xb6\\x19\\x99\\x1a\\xa8\\xc9\\x09\\xd6\\xeb\\x59\\x84\\x29\\xe3\\x45\\x59\\x9d\\xd1\\xd3\\xff\\x5a\\x03\\x26\\x93\\x49\\x34\\xc0\\xc4\\xb4\\x98\\x2c\\x66\\x33\\x39\\xae\\x2b\\x43\\xe9\\x0a\\x87\\xc9\\xd2\\x60\\xb2\\x78\\x1b\\x18\\xac\\xc3\\xc6\\xc6\\x3a\\x93\\xc5\\x64\\xb5\\x9b\\x2c\\x04\\x26\\x16\\xc6\\x64\\x37\\xd5\\x99\\xb0\\xce\\x64\\x77\\xd1\\x87\\x4c\\x96\\xa6\\xa9\\x99\\x30\\x69\\x9d\\x13\\xa0\\x75\\xd8\\x68\\xaf\\x73\\x34\\xd8\\xaa\\xf0\\x6c\\xb2\\x90\\xb7\\x2d\\x75\\x0e\\x93\\xcd\\xe2\\x60\\x2c\\x26\\x8b\\xd5\\x6a\\xae\\xb3\\xda\\x4d\\x68\\x43\\x8b\\xc9\\x84\\x26\\xb4\\xb6\\xd0\\x27\\x1a\\x4c\\x16\\x07\\xe8\\xfe\\x1d\\x1d\\xce\\x71\\x18\\x02\\x48\\xdb\\x58\\x86\\x27\\x8a\\x2c\\x13\\x97\\x93\\x29\\x79\\x11\\xc6\\xb9\\x20\\xd6\\x80\\xc4\\x80\\x47\\x19\\xea\\x7d\\x18\\xe3\\x85\\x39\\x86\\xe5\\x2f\\x8c\\xa9\\xc9\\x9a\\x88\\x9a\\x4c\\x66\\x8b\\xa5\\xce\\x8c\\x36\\xb4\\x93\\xd6\\xd5\\x39\\xec\\x26\\x64\\x4c\\x76\\x67\\x93\\xc5\\x64\\x35\\x91\\xee\\x7c\\x7b\\x06\\x24\\x7f\\x6b\\x46\\x73\\x9f\\xc3\\x6d\\x42\\x44\\x33\\x5a\\xd0\\xde\\x6c\\x27\\x10\\xa9\\xa3\\x8d\\x6e\\xae\\x37\\x59\\x2c\\xa6\\x26\\x8b\\xd5\\xd4\\xf4\\x57\\x71\\xe5\\xdf\\x4f\\x0b\\xe9\\xb9\\x94\\xa8\\x99\\xb4\\x20\\xfe\\x15\\x5a\\x38\\x8f\\xd0\\x02\\xa7\\xeb\\x5c\\x23\\x17\\x8f\\x8c\\x24\\xb3\\xd9\\xbf\\x8d\\x16\\xee\\x39\\x4d\\x41\\xab\\xf6\\x8f\\x05\\x19\\xae\\x86\\x3b\\x6a\\xfa\\x97\\x8c\\xc9\\xff\\x81\\x98\\x3f\\x27\\x6c\\x82\\x0d\\x04\\xa1\\x4c\\x75\\x26\\x0b\\x21\\x80\\xae\\xbf\\x1b\\x01\\x24\\xe6\\x02\\x22\\x5a\\xd0\\xf4\\x77\\xa4\\x80\\xe7\\x66\\x03\\xbb\\x4a\\x0f\\x49\\x58\\xf3\\x57\\xe9\\xc1\\xfc\\x29\\xf4\\x20\\xcf\\x01\\xa3\\x4f\\x18\\x93\\xe3\\x34\\x7a\\xb0\\x58\\xd1\\xd4\\x30\\x9b\\x22\\x66\\xf4\\x79\\x4e\\x82\\xb0\\x98\\xd1\\x34\\x8b\\x24\\xbe\\x3f\\x97\\x4e\\xaf\\xcf\\x33\\x14\\xa8\\xdc\\xe7\\x89\\xc6\\x51\\x31\\x4e\\x59\\xce\\x19\\x71\\x12\\x49\\x64\\x26\\x92\\x88\\x5c\\x2d\\xcb\\x50\\x7d\\xd6\\x20\\x5f\\xd2\\x50\\x73\\xfa\\xd1\\xe7\\xcc\\x8e\\x67\\xa9\\xdf\\x5a\\xd2\\xa7\\x0d\\xc6\\xa8\\x3e\\x2c\\xe9\\xb6\\x98\\x24\\x11\\x81\\xe4\\xf2\\x01\\xd8\\x2a\\x75\\x35\\x81\\x07\\x82\\xd0\\x0b\\x71\\x48\\x95\\xbd\\xea\\x44\\x58\\x73\\x09\\x21\\xc5\\xa4\\x79\\x46\\xe0\\x39\\xc1\\xb8\\x18\\x4f\\xcd\\x56\\x96\\xb9\\x04\\xcb\\x13\\xa1\\x8b\\x05\\x57\\xf3\\x70\\xd8\\xe7\\x0a\\xbb\\xdd\\xdf\\x8b\\x85\\xbd\\x6c\\x38\\xba\\xdc\\xdd\\x34\\x3c\\xdc\\xe4\\x46\\x96\\xb4\\xa5\\xa4\\x91\\x7d\\x58\\x92\\x90\\x95\\x24\\x6c\\x60\\x9b\\x5d\\x9a\\x24\\xf5\\xd8\\x53\\xda\\xda\\xb5\\x5a\\x58\\x69\\x76\\x69\\xae\\xf7\\x7d\\xae\\xb2\\x74\\x77\\xf9\\x8e\\x28\\x0a\\x5b\\xf6\\x47\\xe8\\x7a\\x8b\\x13\\xda\\x41\\x80\\x74\\xd5\\x9b\\x41\\x36\\xdd\\xbf\\x2f\\xd4\\x78\\xcc\\x89\\xae\\x21\\x90\\x53\\xee\\x34\\xad\\xfe\\x39\\x7f\\x6b\\xa0\\x35\\xd0\\x64\\x57\\xed\\x8d\\x39\\x55\\x95\\x65\\x39\\xe5\\x4f\\xf9\\xfd\\x69\\x74\\x94\\xad\\xd7\\x56\\x57\\x31\\xbb\\x75\\x78\\x78\\x6b\\xd6\\xde\\xd8\\x78\\x4e\\x40\\x0b\\x70\\x81\\xd6\\x9d\\xda\\xf0\\xb0\\x36\\x3c\\x3c\\x45\\x60\\x47\\x41\\x4a\\x21\\xa7\\xb7\\x2b\\x8b\\x45\\xea\\xd7\\xb0\\x41\\x3d\\x34\\x13\\xeb\\x8b\\x89\\xca\\x11\\x6a\\x84\\x5b\\x75\\x23\\x7c\\xb4\\x54\\x40\\x56\\x2d\\x8d\\xe1\\x68\\x69\\x6c\\x4a\\x51\\x88\\x31\\x25\\x8a\\xba\\xdd\\x4d\\x6c\\x86\\x1c\\x16\\x31\\x0b\\x16\\xf0\\x40\\x2b\\xb4\\x41\\x18\\x20\\x2d\\x30\\x02\\x93\\x66\\xc9\\xe8\\x96\\x35\\xe0\\xb8\\x97\\x58\\x98\\xc4\\xb8\\xe4\\x78\\x39\\x31\\x39\\x3f\\x1a\\x88\\x3e\\xe7\\x77\\x6a\\x54\\x21\\x73\\xfa\\xa5\\x71\\xf2\\x29\\x28\\xf3\\xc3\\xf3\\x35\\x8d\\x80\\x8e\\xec\\x5e\\x92\\xa4\\x09\\x49\\xd2\\x44\\x6a\\x63\\xea\\xf6\\x21\\x53\\x9d\\xbd\\xd1\\xdd\\x22\\xba\\xab\\x04\\x74\\x3d\\x47\\xc5\\x29\\xcc\\x53\\x6f\\xcf\\x0c\\x2d\\xd3\\x62\\xbc\\x81\\xd9\\x81\\x35\\x6b\\x06\\x62\\x7d\\x7d\\xb1\\xd2\\xb8\\xee\\x53\\xf9\\x66\\xf3\\xf9\\xfb\\xcf\\x6f\\xee\\x6e\\x5a\\xbe\\x79\\x79\\xd3\\x7f\\xd6\\x4b\\x32\\xd7\\xe0\\x92\\x93\\xd8\\x7b\\x29\\xea\\x95\\x90\\x0d\\x1f\\x45\\x19\\x73\\x6b\\xc7\\x23\\x1f\\xf3\\x33\\xcd\\x59\\x25\\x96\\xfc\\x83\\x8e\\xb7\\x7e\\x67\\x89\\xee\\x1f\\x4b\\xc6\\x2c\\x37\\x4b\\x63\\xfe\\x28\\x4b\\x6d\\x77\\x75\\x86\\xd2\\x67\\x99\\x61\\xcf\\x78\\xa9\\xc6\\x27\\xb0\\xd1\\x59\\x96\\x07\\x75\\xe3\\x44\\xe4\\x08\\xaa\\x1a\\x42\\xc5\\x76\\xca\\x38\\x7d\\x2a\\xa1\\x83\\xd2\\x38\\x66\\xf2\\xab\\xee\\x78\\x90\\x9a\\x3a\\x79\\xa7\\xdf\\xff\\xb2\\x28\\x6a\\x52\\x19\\xd7\\xa6\\x50\\xa3\\xb6\\x03\\xb5\\xa8\\x91\\x63\\x84\\x34\\x17\\x35\\x7c\\x2b\\x74\\x58\\x5f\\x0b\\xe7\\xb6\\x85\\x97\\x95\\x8a\\xe3\\x19\\xc3\\xaf\\xd2\\x10\\x1e\\xdb\\x1a\\x56\\xbc\\xa2\\x58\\xac\\xf8\\x86\\x58\\x08\\x9b\\x00\\x0b\\x60\\x05\\x27\\x74\\x01\\x10\\x0b\\x57\\x48\\x0b\\x35\\x7e\\xa6\\x34\\x31\\x6a\\x78\\x39\\xe2\\x8c\\xe8\\xd7\\x0c\\x90\\x98\\x60\\x6b\\x58\\x51\\xc2\\x77\\x28\\x3a\\x3d\\x3b\\xfd\\x52\\x49\\x43\\x45\\xd2\\xa9\\x59\\xa3\\xf7\\x86\\x29\\x49\\xab\\x3e\\xd7\\xf8\\xf8\\x34\\x88\\x15\\x62\\xae\\xc2\\xdf\\xf0\\x69\\x12\\xfe\\x60\\xfd\\x54\\x7e\\x31\\x8e\\xec\\x1c\\xcc\\x42\\x9a\\x9b\\x51\\xd8\\xa0\\x1b\\xba\\xb1\\x88\\x6f\\x41\\x03\\x38\\x81\\x83\\x76\\xdd\\x73\\x03\\x15\\x4c\\x91\\xbd\\xe6\\xb4\\x97\\x63\\x63\\x82\\x97\\x63\\x62\\x42\\xda\\xc6\\xf0\\xa9\\xa5\\x68\\x63\\x84\\x54\\x3a\\x84\\x36\\x06\\x8b\\x97\\x6d\\x5c\\x9a\\xc9\\x2c\\xdd\\xf8\\x7e\\x30\\xda\\xb7\\x54\\xb5\\xb5\\x05\\xe7\\xd9\\xd6\\xb7\\xd9\\x24\\xdb\\xbc\\xc3\\x7d\\xd1\\x60\\x62\\xa9\\xb4\\x74\\xe9\\x32\\x3c\\xeb\\xd1\\x83\\x75\\x52\\xdd\\x36\\x6d\\x5b\\x9d\\x54\\x57\\xba\\x27\\x48\\x6e\\xff\\xa0\\xaf\\x33\\x94\\x58\\x7a\\x43\\xb4\\x6f\\x69\\xa2\\x83\\xbe\\xf4\\xcd\\xbe\\xbe\\x7e\\x30\\xfc\\x38\\xe5\\x39\\x1a\\x37\\xe1\\x07\\x91\\xd3\\xed\\x17\\xea\\x0d\\x75\\xf9\\xca\\xb6\\x84\\x56\\x2c\\x9e\\x66\\xb6\\xd4\\xd8\\xed\\x76\\xc3\\x6e\\xe9\\x31\\xac\\x22\\xca\\x3f\\x78\\x6a\\x1f\\x95\\x79\\x61\\x3c\\x35\\xdb\\x6c\\x26\\x8c\\x0f\\xf3\\x01\\x39\\x10\\x48\\xdd\\x12\\x96\\x08\\xf3\\x93\\x9a\\x5d\\x53\\x55\\x5e\\x12\\x96\\xa4\\x82\\xce\\x3d\\x34\\x6d\\x98\\xf2\\x3b\\xf7\\x93\\xb5\\x6c\\xe4\\x0e\\xd6\\xa0\\xbf\\xf2\\xb8\\xb9\\xf5\\xda\\x4f\\xb3\\x90\\x0a\\x85\\x42\\x95\\x3a\\xb2\\x9a\\x36\\x8b\\x24\\x4e\\x2f\\x63\\x0e\\x78\\x14\\x66\\xd2\\x58\\x56\\x51\\x66\\x97\\x02\\xb3\\x70\\x88\\xab\\xfa\\xff\\x4f\\xe3\\xa4\\x50\\x28\\x14\\x6a\\x8b\\xc3\\xac\\x28\\x66\\xa8\\x63\\xe4\\xaf\\xb4\\x0b\\xe7\\x2e\\x69\\x46\\x39\\x90\\xcb\\x15\\x66\\x14\\x62\\xaa\\x8c\\x91\\x09\\x5a\\x08\\x56\\x27\\x08\\x7f\\xe4\\xad\\xc6\\xfb\\x11\\x54\\xf6\\x85\\x2b\\x04\\x0e\\x78\\xc7\\x7e\\x6f\\xde\\xe9\\xc3\\xea\\x18\\x9b\\x2a\\x3e\\x8a\\x06\\xc3\\xf3\\x53\\xf1\\xd2\\x2e\\xc5\\x39\\x3c\\x16\\x12\\x91\\x97\\x92\\x36\\xd3\\x6f\\x31\\x25\\x52\\x82\\x94\\x67\\x79\\x2f\\xfe\\x0d\\x70\\xcf\\x9f\\x3a\\x85\\xec\\x6c\\xb8\\x37\\x52\\x1f\\x48\\xd1\\x80\\xbb\\x1b\\x38\\x08\\x18\\xde\\x51\\x09\\xfa\\x20\\x01\\x0b\\x00\\xa2\\xc4\\xa8\\x25\\x42\\x40\\xa6\\x21\\x0b\\x74\\x33\\x1b\\xa3\\x53\\xde\\x66\\x9f\\xbb\\xa9\\xa9\\x8a\\x9a\\x24\\x49\\x99\\xbc\\x44\\x3e\\xa2\\xfe\\x91\\x8c\\x4f\\xbe\\x58\\xca\\x14\\x0b\\x92\\xa4\\x8a\\xe2\\x78\\x51\\x12\\x25\\x49\\x44\\xa0\\xe3\\xa8\\xd2\\x6b\\xb3\\x4e\\x4a\\x45\\xd4\\x80\\xfa\\x7c\\x74\\x5b\\xbf\\x0d\\xc0\\xed\\xe5\\xd2\\x29\\xce\\x4b\\x3d\\x34\\x1e\\x1b\\xe1\\x2e\\xba\\xc8\\x62\\x3d\\x9c\\x97\\xb9\\x6b\\xfe\\x67\\xfa\\xea\\x1b\\x3b\\xbb\\x08\\xac\\xc6\\x8a\\x8d\\x76\\x02\\x39\\x8b\\x1d\\xfd\\x9f\\x99\\xdf\\x57\\x6f\\x6d\\xa4\\xe7\\xc5\\x31\\x72\\xb3\\xab\\xb3\\xc9\\x4e\\x63\\x3f\\x9e\\x32\\x01\\x66\\x21\\x08\\x80\\x1d\\x0c\\xeb\\x61\\x6c\\x8c\\xad\\xa3\\x0f\\x63\\xc9\\x74\\x2a\\xcc\\x79\\x89\\x86\\x6c\\x68\\xc7\\x31\\x84\\x64\\x6f\\x63\\xd8\\x67\\x73\\xd9\\x64\\x9b\\xed\\x12\\xec\\xb8\\xc4\\x66\\x93\\x6d\\x2e\\x9b\\x2f\\xdc\\x18\\x47\\xc5\\xb1\\xdc\\x61\\x75\\xb4\\xea\\x57\\x76\\xec\\xd0\\x9f\\x69\\x75\\x58\\x9b\\x97\\xb7\\x18\\xf2\\x30\\x87\\x39\\xa8\\x03\\x70\\x27\\x58\\x5e\\x66\\x84\\x34\\x5f\\x28\\x8a\\x1f\\x07\\x3f\\xbe\\x0b\\x73\\xc5\\xbb\\x3e\\x0e\\x7e\\xac\\xe3\\xcc\\xd5\\xb0\\x1e\\x6f\\xc3\\xe7\\xa0\\x0e\\x1a\\x01\\xdc\\x69\\x8e\\x67\\x19\\x21\\x2d\\xbb\\x85\\x34\\x77\\x64\\xeb\\xd6\\x61\\x2d\\xb8\\x57\\x5b\\x1b\\x5c\\x8b\\xea\\xd6\\xad\\x87\\xb4\\xe0\\x55\\x57\\x97\\x3e\\x5e\\x13\\x5c\\x03\\x3a\\x6c\\xee\\xc2\\x02\\x66\\xa1\\x5e\\x97\\x1c\\x7a\\x30\\x02\\x87\\x8f\\x04\\x0b\\x39\\x29\\xbf\\xfd\\x6a\\xcc\\x06\\x0b\\xb9\\xed\\x79\\xe9\\x6a\\xf2\\x6c\\x16\\xb2\\x54\\x36\\xd7\\x01\\x20\\x75\\x8c\\x26\\xd8\\x34\\xe6\\x3f\\xbe\\xab\\x28\\x7e\\x8c\\x77\\x7d\\x2c\\x16\\xef\\x32\\xda\\x52\\x96\\xe1\\x75\\xe0\\x00\\x70\\x33\\x1c\\xcb\\xcb\\x02\\x23\\x2f\\x42\\x56\\x60\\x84\\x74\\xb1\\xff\\x0a\\x71\\x67\\xff\\x84\\xd6\\x3f\\x18\\x1c\\xc4\\x7c\\xff\\x15\\xcf\\x3e\\xb2\\xb3\\x5f\\xa3\\x67\\xb3\\xe6\\x72\\x18\\x68\\xa0\\x73\\x06\\x72\\x84\\xe2\\x86\\xcc\\x46\\xaa\\xb3\\x14\\x8c\\x1e\\x0b\\x31\\x0d\\xf9\\x3c\\x82\\x44\\x3d\\x3e\\x45\\xd5\\xe7\\x44\\x95\\x7a\\x3b\\xb3\\x92\\x94\\xd3\\xdd\\x7f\\x2a\\x6a\\x74\\x02\\xcd\\x0c\\x0a\\xe4\\x68\\x3f\\x8d\\xf8\\x06\\x77\\x84\\x8d\\x30\\x72\\x84\\x25\\x14\\x90\\x43\\xa9\\x54\\x54\\x51\\x9a\\x06\\x14\\x31\\x2b\\xe5\\x25\\x29\\x23\\x8a\\x9f\\xda\\x16\\xab\\xb1\\x45\\x9d\\x42\\x99\\x64\\x22\\x71\\x2f\\x1a\\xbe\\x64\\xba\\xa9\\x6a\\xa9\\x58\\x16\\xdf\\xa4\\x49\\x0a\\xfd\\x9f\\x28\\x69\\xaa\\xee\\x8e\\xf4\\x51\\x3e\\x0e\\x58\\x34\\xc1\\xdf\\x32\\xaf\\xe0\\x94\\x23\\xac\\x93\\xaa\\x69\\x6b\\x57\\xae\\xbd\\xb1\\xab\\xad\\xad\\xab\\xed\\xda\\x1a\\x3f\\x6b\\xa6\\x34\\x9e\\x0b\\xb7\\x06\\x83\\xad\\xe1\\x5f\\xb7\\x91\\x9b\\x5b\\x6a\\x85\\x47\\x49\\x95\\x24\\x13\\x18\\x7a\\x5c\\x95\\x1e\\xc2\\x10\\xd3\\x35\\xe8\\xe8\\x5c\\x04\\xe1\\x40\\x9d\\x5a\\xd2\\x44\\xac\\x50\\x55\\x80\\xe2\\x87\\x4c\\x71\\x84\\x25\\xc4\\x8d\\xf9\\x99\\xb4\\xd2\\xd7\\x77\\x41\\x9f\\xbd\\xa9\\xb3\\xcb\\xcb\\x2a\\x12\\xab\\xd0\\x7e\\x67\\xbc\\xcf\\xcd\\xa2\\x9c\\xbe\\xf3\\xfb\\xfb\\xec\\x96\\xc6\\x49\\xaf\\x97\\xb2\\x2e\\x2f\\xab\\xb0\\x5e\\x49\\xb7\\x25\\xea\\x2b\\xf1\\x03\\xfa\\x1c\\x64\\x08\\x04\\xe8\\x83\\x34\\x2c\\x85\\xd5\\xc4\\xd6\\x2e\\x7b\\xa8\\xbd\\xc6\\x77\\x6a\\xd6\\x79\\x79\\x42\\x2e\\x65\\xdc\\xb3\\xcc\\x7a\\xae\\xfc\\x5d\\x2e\\x47\\xf7\\x5f\\xeb\\xff\\x0f\\xd4\\x1c\\xef\\xa2\\xfb\\x97\\xe8\\xbe\\xf4\\x72\\xcd\\x8d\\xda\\x47\\x71\\x8a\\x9e\\xed\\xaa\\xb9\\x53\\x7b\\xfc\\x72\\xcd\\xfe\\x81\\x9a\\x7d\\x49\\xff\\x82\\x1a\\x39\\x61\\xa5\\xde\\x52\\x99\\x11\\x58\\xee\\xb4\\xb9\\xa4\\x3c\\xf9\\xd4\\x8c\\xb2\\x2a\\x65\\xb3\\xd2\\x68\\x61\\x96\\x62\\x50\\x9d\\x9b\\x6c\\xa2\\xbe\\x3f\\xa2\\x3d\\x31\\x06\\x6a\\xb2\\x1c\\x29\\x53\\xa0\\x51\\x04\\x04\\x79\\x9a\\xec\\x45\\xb5\\xd1\\x8e\\xac\\xbd\\x49\\xb5\\x37\\xaa\\x53\\xf6\\x46\\x64\\x11\\xec\\x8d\\x19\\x94\\x68\\x24\\x51\\xa3\\xbd\\x54\\x50\\x1b\\xed\\x52\\x01\\x6a\\xe2\\x2d\\x0a\\x74\\xbe\\x06\\xa2\\x09\\x46\\x48\\xc8\\x09\\x81\\xa3\\x1a\\x20\\xaa\\x8a\\xaa\\x2a\\x62\\x8e\\x98\\x72\\x39\\x55\\x1d\\xcb\\xa9\\x63\\x63\\x06\\xad\\x85\\xb1\\x80\\x6f\\x50\\xfa\\x6f\\x27\\xbc\\x42\\x48\\x73\\x41\\x64\\x04\\x56\\xa6\\xf3\\xc8\\x21\\xea\\x31\\x27\\x06\\x6d\\x5a\\x48\\x03\\x42\\x7f\\xf0\\xcc\\x6b\\x62\\x2e\\xef\\x83\\xbb\\xfc\\x23\\xff\\x83\\x09\\x2c\\xec\\x5b\\xbc\\x3a\\xde\\xcb\\xcc\\x5b\\x14\\x40\\x09\\xbf\\x38\\x9f\\xdc\\xcb\\xf6\\x3d\\xf0\\x4f\\x17\\xed\\xea\\x90\\x92\\x23\\x81\\xba\\xc0\\xc2\\x58\\xbc\\xef\\xf3\\xf1\\x45\\x81\\x52\\xd1\\xa8\\x4b\\x8f\\x59\\x63\\xc1\\x07\\xdd\\x00\\x98\\xa2\\x44\\xc4\\x26\\xe8\\x58\\x53\\x5f\\x45\\x22\\x99\\x66\\xaa\\x3a\\x8a\\x84\\x8c\\x50\\x51\\x2a\\x97\\x79\\xe2\\x43\\x71\\xd1\\xdf\\xe1\\x6f\\xf2\\xfb\\x44\\x9f\\x4f\\xa4\\x41\\x4a\\xaa\\xa2\\xa8\\x54\\xe1\\x89\\x7a\\xda\\xf8\\x44\\x82\\x77\\xfa\\xfd\\x1d\\x4d\\x81\\x40\\xa4\\xa1\\x23\\x70\\x9f\\x24\\xa1\\x4a\\x78\\x8d\\xd3\\xaf\\x28\\x7e\\x27\\x4a\\x84\\xb9\\xe8\\xb0\\xcf\\x63\\x11\\xdc\\xc4\\xfa\\x75\\x7b\\x39\\x46\\x68\\x46\\x07\\xf6\\x5a\\xe4\\x64\\x5a\\x48\\x73\\xe9\\x0e\\x46\\x48\\x25\\xaa\\xa1\\x2f\\x7f\\xb9\\x74\\x65\\x60\\x4d\\x4b\\x67\\x7d\\xbd\\xcd\\x93\\x14\\xc2\\x96\\x95\\x81\\x67\\xea\\xb8\\x96\\x55\\xdd\\xca\\xe0\\x96\\xce\\xf5\\xce\\x10\\x36\\xec\\x5e\\x19\\x58\\xdd\\xda\\xdb\\xd0\\xc0\\x70\\xab\\x96\\x9d\\x15\\x6a\\xf0\\xae\\x0c\\x3c\\x73\\x91\\x6b\\x65\\xef\\x96\\xc1\\xf9\\xab\\xce\\x70\\xb4\\x7a\\x43\\xe5\\x71\\x91\\x68\\xbc\\x0a\\x03\\xad\\x84\\x2e\\xf4\\x89\\x9a\\x18\\xa9\\xa5\\xd9\\xa4\\xd7\\x7d\\x8a\\x46\\x12\\xd9\\xaf\\xdb\\x12\\xea\\x96\\x1c\\x2d\\xb4\\x32\\x6c\\x08\\x91\\x8b\\xf9\\x2d\\x83\\xa1\\x0d\\x43\\x4b\\x5c\\x4e\\xbd\\x8a\\xc1\\xff\\x2d\\xaf\\xc3\\xd3\\xf8\\x6e\\x85\\xd7\\xcd\\x64\\xbe\\x3a\\xa7\\x23\\x06\\x4c\\x95\\xfb\\x62\\x0d\\x6e\\xc2\\xac\\x92\\xf2\\xd5\\xb7\\x8b\\xb5\\xef\\x98\\x6a\\x62\\xb8\\x5c\\x00\\x51\\x67\\xc4\\x99\\x9e\\xfd\\x6a\\x69\\x5c\\xaa\\xa9\\x3d\\x4f\\xc4\\xbd\\x84\\xe2\\x4c\\xbe\\x6f\\x82\\x04\\xb4\\xe3\\x4f\\xa8\\x6f\\xc2\\x65\\xcc\\xd5\\xe8\\x96\\xaa\\x10\\x65\\x85\\x74\\x22\\xee\\x3d\\x03\\xf7\\xb5\\x75\\x35\\xd6\\x4d\\x38\\x7d\\x03\\xb8\\xfd\\xc3\\xf8\\x98\\xd3\\x87\\x4f\\x96\\xee\\x6c\\x9b\\x67\\xf3\\x3b\\xff\\x30\\x60\\xfe\\x5f\\x1f\\xc6\\xa9\\xbe\\xf3\\xff\\x97\\x0e\\x61\\x06\\x09\\x64\\xda\\xcf\\x0e\\x88\\xc3\\x72\\x00\\x37\\x47\\xf0\\x93\\xe9\\x88\\xc9\\x34\\xe6\\x82\\x63\\x7a\\x91\\xce\\xbd\\xb1\\x1e\\x6f\\xf9\\x98\\x9b\\x85\\x4f\\x9c\\x60\\xc4\\x69\\x18\\x57\\x87\\x58\\xdc\\x19\\x38\\x82\\x16\\xa7\\x1f\\x3b\\xec\\x22\\xdb\\xce\\x7b\\x82\\x91\\x5e\\x81\\xed\\x5f\\xd0\\xdd\\x5d\\x94\\xa2\\xa1\\xf8\\x92\\xb3\\xaf\\x0f\\x85\\xd9\\x9d\\xfd\\x3c\\xc6\\x79\\xbb\\x85\\xf7\\xfa\\xe5\\x61\\x7c\\xcd\\x5b\\x7a\\x30\\xf0\\x75\\xf4\\x3b\\x2d\\x1d\\x2e\\x4f\\xbf\\x2f\\xea\\x5c\\xc4\\xc7\\x42\\xa1\\xde\\x54\\xef\\x99\\x5c\\xb4\\xed\\xc2\\x85\\xeb\\x16\\xf4\\x58\\x3d\\xa1\\xd0\\xf5\\x67\\x2f\\x89\\x87\\x84\\x79\\x43\\x3b\\x7f\\xcd\\x5b\\xec\\x7c\\x1c\\x79\\xfb\\xb0\\xec\\xa7\\xcb\\x61\\x28\\xd4\\x76\\xd4\\x39\\x76\\x1f\\x40\\x34\\x96\\x4c\\x27\\xd2\\x82\\x8d\\xb1\\x79\\x38\\x2f\\x97\\x16\\x18\\x43\\xb2\\xb9\\x3e\\x6d\\xc6\\xfc\\xfa\\xba\\x3a\\x3e\\x2c\\x76\\x3b\\x6c\\x36\\x47\\xb7\\x18\\xde\\x77\\xf6\\x86\\xb3\\x1f\\xa0\\x53\\xf5\\xa7\\xa8\\x1e\\x9a\\x21\\xfb\\x22\\xdb\\xcd\\x8a\\x52\\x24\\xc9\\x76\\xb3\\xc9\\x88\\x24\\xaa\\x6c\\x7b\\x34\\xda\\xce\\x22\\xd0\\x89\\xfb\\x5d\\xb3\\x14\\x54\\x6b\\xa5\\x4d\\x7a\\x4c\\x08\\x0f\\xf3\\xa8\\x36\\xdf\\x8e\\xff\\x9b\\x96\\x58\\x19\\x41\\xe6\\xd2\\x58\\x1c\\x9f\\xab\\x09\\x98\\x53\\x14\\x45\\x41\\xd0\\x34\\xed\\xd3\\x6b\\xcf\\x8a\\xa2\\x97\\xca\\x59\\x02\\x97\\x15\\x26\\xa0\\x38\\x4c\\xb4\\x32\\x11\\xc0\\x1d\\x23\\xfc\\x80\\x28\\xc5\\x84\\x25\\xce\\xd0\\x10\\x67\\xeb\\x8f\\xb7\\xad\\x33\\x05\\x47\\x2e\\x13\\x7f\\x39\\x12\\x1c\\x51\\x75\\xd5\\xb0\\xad\\xbd\\xb1\\xf7\\xe2\\x19\\x5a\\x24\\xf6\\xad\\xc3\\xd0\\xc8\\xa1\\xd1\\xd1\\xf3\\x86\\x83\\x23\\xff\\xa2\\x5f\\xf6\\x37\\x5b\\x9b\\x97\\x3b\\x66\\xa8\\x94\\xb4\\x2d\\xe7\\x81\\x84\\xdf\\xc4\\x29\\xaa\\xf7\\x07\\x08\\x9f\\x8a\\xea\\x11\\x52\\xed\\x58\\xf5\\xdd\\x24\\x62\\x71\\x8e\\x89\\x75\\x30\\x02\\x97\\xd2\\x0f\\x50\\xd1\\xae\\xaf\\x6f\\x6e\\xae\\x3f\\x48\\x76\\x7c\\x61\\x55\\x70\\xe0\\xe1\\x81\\xe0\\xc2\\xee\\x1b\\xba\\x43\\xa1\\x73\\x43\\x6a\\x3e\\x5f\\x6c\\xae\\xff\\x6f\\xe4\\xd6\\x7f\\xab\\x77\\x90\\x9b\\x03\\xc1\\x25\\xdd\\xdd\\xc1\\x50\\x48\\xb7\\x33\\xf4\\xb8\\x09\\xdd\\x8e\\x8a\\xb0\\x91\\xa8\\x2e\\x8d\\x28\\xc9\\x10\\x68\\x1b\\xd1\\x3f\\x9f\\xf3\\x39\\xab\\xd6\\x06\\x66\\x27\\x26\\x08\\x45\\xd3\\x5d\\x99\\xcf\\xb1\\x98\\x33\\xda\\x0d\\x51\\x27\\xef\\xac\\xf0\\xf1\\x32\\xee\\xd4\\xbe\\x93\\xa5\\xfe\\x97\\x1b\\x7d\\x65\\xe3\\x4c\\xa3\\xf6\\xd8\\xff\\x39\\x6d\\x41\\xc3\\x07\\x97\\xa7\\x71\\x2b\\x9c\\x1e\\x0c\\xb3\\x04\\x75\\x9c\\xa4\\xc2\\xd5\\x08\\x2b\\xa4\\x51\\x64\\x3c\\x6a\\xaa\\x12\\x1f\\x8a\\xfb\\x3b\\xfc\\x44\\xd2\\x1a\\x47\\x98\\xcf\\xe4\\xf8\\x78\\x9c\\xcf\\x91\\x52\\x73\\xaa\\x9a\\x23\\x42\\x4a\\x3f\\x99\\x9b\\x8f\\x57\\x7d\\x8f\\xd1\\x99\\x2c\\x34\\x2b\\x11\\x13\\x0a\\xbd\\x55\\x26\\xcc\\xea\\x66\\x56\\xa1\\x96\\x8b\\x9a\\x01\\x20\\x67\\x02\\xd4\\xa8\\x4e\\xc6\\x03\\x74\\x1a\\xd2\\xa6\\x1c\\x15\\xd1\\x49\\xb4\\x29\\x02\\x47\\x1a\\x9f\\xe8\\x61\\x12\\x31\\x39\\x89\\xbb\\x07\\x25\\x69\\xb0\\xfb\\xd4\\x60\\x77\\xf7\\xa0\\x84\\x7d\\xdb\\x57\\xae\\xec\\x2f\\x9d\\xea\\x5f\\xb9\\x72\\xfb\\xaa\\xc0\\xd6\\x40\\xa1\\x9b\\xde\\xa4\\xfb\\xfb\\x57\\x6e\\x5f\\xb5\\x8a\\xdc\\x96\\xc2\\x61\\xc9\\xf0\\x95\\xb0\\xa0\\x51\\x9f\\x16\\x43\\xda\\x5f\\x8e\\x9a\\x2a\\xc7\\x3c\\x35\\x23\\xaf\\xc7\\x0f\\x79\\x6f\\x26\\x7a\\x94\\xef\\x1b\\xbf\\x91\\xd4\\xcf\\x34\\x2d\\x17\\xe5\\xe1\\x61\\x59\\x5c\\x5e\\xa4\\xca\\xd5\\xe2\\x8c\\xaa\\xc6\\xfa\\x86\\x47\\x87\\xfb\\x0c\\x7b\\x9a\\xe8\\x08\\x53\\x34\\x3a\\xb6\\x3a\\x2f\\x4a\\x00\\x9f\\x60\\x13\\x4e\\x52\\x6a\\x32\\x95\\xe0\\x18\\x8e\\x11\\xa8\\xd7\\x8b\\x4b\\x23\\x05\\x67\\xd1\\xe9\\x97\\x8a\\x45\\xc9\\xef\\x54\\x55\\x95\\x55\\x33\\xac\\xaa\\xb2\\x19\\x15\\xa7\\xca\\x86\\xb1\\x22\\x61\\x46\\x52\\x9c\\xfe\\x07\\xca\\xb7\\x58\\x55\\x2d\\xc7\\xb8\\xe8\\xf5\\x31\\xd0\\x0e\\x32\\x80\\xdb\\xe0\\x39\\x89\\x59\\xd4\\xa6\\xc7\\x73\\xa6\\x3f\\xa5\\x3d\\xaf\\xb9\\xfd\\xee\\xf3\\xea\\x5b\\x9c\\x0d\\xfb\\xea\\x5b\\x5a\\xea\\xa3\\xbd\\x9d\\xdf\\x99\\xd1\\x26\\x64\\xc3\\x8d\\x2d\\x2d\\x8d\\xe1\\x96\\x86\\x61\\xf2\\xd0\\x70\\xbd\\x23\\xec\\x0d\\x87\\xbd\\xcf\\xcf\\x6e\\x9d\\x2e\\xdb\\x59\\x1a\\x2f\\x45\\xf0\\xd6\\x0f\\x1d\\x73\\xe3\\xae\\xd5\\x4b\\xc3\\x01\\xd2\\xf4\\x2b\\x29\\xa0\\x54\\x83\\xca\\x28\\x79\\x3c\\xac\\xcb\\xb5\\xbc\\xab\\xcb\\xdb\\xde\\xae\\x12\\x4b\\x03\\xc7\\xfc\\x35\\x78\\xfd\\x12\\x9b\\x74\\x7b\\x7d\\xad\\xcb\\x63\\xd9\\xa8\\x37\\x74\\x66\\x1b\\x81\\xc1\\x60\\x05\\xe6\\x21\\xd8\\xfc\\xe9\\x50\\x37\\x95\\x47\\x97\\x58\\x1b\\x36\\x5e\\xb0\\x39\\x90\\x3e\\x94\\x16\\x62\\x02\\x63\\xeb\\xc3\\xe4\\x52\\x94\\x85\\xd8\\x52\\x4c\\x25\\xb8\\xd4\\x52\\x24\\x62\\x96\\x25\\x12\\x25\\x15\\x42\\x8f\\x03\\x67\\x0d\\x53\\xac\\xc3\\xe7\\xeb\\xf0\\x5f\\xc7\\x59\\x4c\\xac\\xc9\\xd2\\xd6\\x6c\\xb5\\x5a\\x51\\x32\\x99\\xd1\\x62\\x6d\\x0e\\x9a\\xac\\xac\\xa9\\xb5\\x95\\xdc\\xb0\\x06\\x9a\\x18\\x8b\\x15\\x25\\x9b\\xd5\\xda\\xdc\\x66\\xb2\\xb0\\x26\\xee\\xf4\\x11\\x2d\\x9d\\xa2\\x58\\x64\\x73\\x5b\\x4c\\x51\\x53\\x83\\xdd\\x14\\xb0\\x5a\\x30\\x60\\xb2\\xdb\\x4d\\xd6\\x4e\\x8b\\xc5\\xe9\\x75\\x56\\x2e\\x5b\\xc9\\x55\\xb4\\x74\\x5a\\x4c\\xce\\x5a\\x5f\\x94\\x0d\\xea\\x89\\x16\\xee\\xe6\\x89\\x19\\xce\\xcf\\xe5\\x48\\x2e\\x8a\\xaa\\x2a\\x66\\xa6\\x4a\\x1a\\x6a\\xd5\\x99\\x06\\x04\\x55\\x55\\x97\\x61\\x77\\xe9\\x2d\\xcc\\xf8\\x5c\\x46\\x1c\\xbf\\xe8\\xf2\\x19\\x34\\x21\\xe3\\x14\\x1e\\x01\\x3b\\xc4\\x08\\xef\\x26\\xf2\\x9e\\x4d\\x25\\xe2\\xe6\\x38\\xe7\\xd4\\xc3\\xcf\\xf9\\x0e\\x86\\x6c\\x1d\\x54\\x21\\x71\\xa6\\x12\\x71\\x2e\\x85\\x85\\x88\\xb8\\x2c\\x99\\x5c\\x26\\x08\\x23\\x22\\x63\\x31\\x9b\\xe6\\x2d\\x59\\x96\\x94\\xd6\\xa5\\xe6\\xa3\\x19\\x2d\\x8c\\x34\\xbc\\x4e\\x92\\xf6\\x7d\\x54\\x1f\\xfe\\x73\\x18\\xc3\\xe1\\xd2\\x3f\\x58\\x18\\xf4\\x86\\xc3\\x1c\\xda\\x2c\\xb8\\x20\\x1c\\x0e\\xeb\\x71\\x38\\x65\\x3f\\x96\\xee\\x5b\\x4b\\x47\\xa8\\x91\\x72\\x9a\\xc7\\x08\\xf2\\xd4\\x3f\\x9d\\xaf\\x8d\\xbd\\x40\\x36\\x3b\\x0d\\xc5\\xd1\\xd1\\xd3\\x9d\\x98\\x26\\x00\\x50\\x4d\\x40\\x7d\\xfc\\x7a\\x74\\x0f\\x6b\\x63\\xa8\\x6f\\x32\\x22\\x27\\xaa\\x8e\\x2d\\x42\\x2a\\xc8\\x66\\x32\\x97\\x70\\x92\\x3a\\xa6\\x96\\x40\\x75\\xb5\\xb6\\xba\\x68\\x0d\\xaf\\x6d\\xd8\\xd0\\xeb\\xb8\\x6c\\xe1\\x41\\x49\\xf2\\xb9\\x8a\\x04\\x48\\x45\\x23\\xa6\\x03\\x20\\x60\\x02\\xfc\\x35\\xd5\\x19\\x23\\x10\\x05\\x48\\xa7\\xd2\\x82\\x4d\\x40\\x46\\x28\\x97\\x9c\\x16\\xd0\\x43\\x68\\x9c\\xb5\\x75\\x30\\x02\\xb1\\x8d\\xcc\\x09\\x96\\xcf\\xb5\\xf7\\x77\\x84\\x2f\\xc3\\x6f\\x06\\x16\\x96\\xae\\x57\\x5d\\xad\\xcd\\x11\\xfc\\xa1\\x77\\x7f\\x47\\xc6\\xc4\\x98\\xf6\\xa0\\xd3\\xe9\\x6b\\x59\\xe4\\x2c\\x74\\x35\\x76\\x84\\x8e\\x97\\xce\\x0b\\x2c\\x94\\x7c\\xce\\x09\\x77\\x63\\xa4\\x74\\xca\\xd7\\xb8\\x3f\\x7c\\x66\\x0f\\xe2\\xe5\\xad\\xae\\x69\\x7d\\x11\\x91\\x19\\xbe\\x14\\x77\\x9a\\x4b\\xeb\\x79\\x1d\\x8c\\x12\\x7c\\xe4\\xea\\xed\\x79\\x29\\x87\\xeb\\x83\\x8f\\x5c\\x2d\\xe5\\xb7\\xe7\\x2a\\x71\\x70\\x5f\\xc7\\xaf\\x53\\x9e\\xea\\x03\\x70\\xeb\\x49\\x03\\x74\\x4a\\x8f\\x7c\\xb3\\xba\\xad\\xca\\x77\\xc4\\xd4\\xb3\\xaf\\x5b\\x72\\xce\\xe0\\x6d\\x3f\\x59\\xfc\\xb5\\x2b\\x02\\x5d\\xfe\\x80\\xdb\\x13\\xc0\\x79\\xd7\\x9d\\x3d\\x78\\xce\\x73\\x3f\\xb9\\xed\\x8a\\xaf\\x1d\\x75\\x07\\xfc\\x5d\\x81\\x80\\xe1\\x9b\\xc9\\x61\\x0e\\x1a\\x00\\xa2\\xd5\\xe9\\xb7\\x04\\xe6\\x34\\x51\\xd3\\x44\\x6d\\x8a\\xec\\xb4\\xd9\\x79\\x1b\\xd1\\xbf\\x12\\x01\\x8a\\xd9\\x8c\\x98\\xc9\\x88\\x5a\\x35\\xba\\x65\\x8a\\x86\\x93\\x66\\x8a\\xb3\\x74\\x2d\\x53\\x4d\\x5c\\xa9\\x7b\\x66\\x99\\x65\\x7b\\xdc\\x28\\xeb\\x52\\x3d\\xef\\x49\\x2f\\xe6\\x54\\x39\\x50\\x76\\x66\\x9c\\x6c\\x60\\x8e\\xac\\x27\\xb6\\x3a\\x0d\\x51\\x1b\\x30\\x7b\\x8a\\x96\\x33\\x33\\xf5\\x89\\xd6\\x93\\xa9\\xc4\\xd5\\x17\\xe8\\xaa\\x2d\\x41\\x00\\x77\\x44\\x88\\xb8\\xd3\\xb4\\x65\\xd1\\xda\\x7e\\x12\\xce\\x12\\x89\\x73\\x97\\x62\\xcc\\x33\\x0d\\x9f\\xdb\\xb7\\x2e\\xb3\\x0e\\xa5\\x7a\\xbd\\x83\\xf5\\xed\\xf5\\x0e\\x04\\x47\\x3d\\xe6\\xbc\\xa5\\xc9\\x7d\\x92\\x74\\xb8\\xd1\\x51\\xfa\\x88\\xf6\\xbb\\xde\\xd1\\xd8\\xd9\\xa8\\x2f\\x0b\\x52\\xd1\\x33\\x1b\\xf4\\x79\\x1d\\x3a\\x1f\\xc6\\x31\\x5c\\x9a\\xab\\xfa\\xc4\\xfb\\x30\\x9d\\x4a\\x60\\x6e\\x64\\x24\\x38\\xb2\\x3e\\xb8\\x7e\\x7d\\x70\\xfd\\xc8\\x05\\x14\\xa8\\x05\\x4f\\xf3\\x55\\x57\\x35\\x7b\\xbe\\xb7\\x5e\\xbf\\x4a\\xfe\\x09\\xb1\\x90\\xba\\xdd\\x4f\\x3e\\xe9\\x9e\\x33\\x47\\x2a\\x1a\\x4f\\xc9\\x49\\x81\\xf1\\x0a\\x1e\\x2e\\x1d\\xe3\\x3b\\x6c\\x65\\x8f\\x06\\xc2\\xd0\\xce\\xce\\x0f\\x7a\\x2e\\xd7\\x03\\xb0\\x75\\xf8\\xa8\\x3b\\x87\\x16\\xf7\\x7c\\xd0\\x99\\xa7\\x71\\xda\\xf7\\x54\\xe2\\x92\\x67\\xe0\\x0a\\xce\\x90\\x7a\\x57\\x5f\\x1d\\x2c\\xff\\xe3\\xd5\\x35\\x27\\xb4\\x1d\\x3a\\x3f\\x27\\x32\\xa4\\x6d\\x6e\\x09\\x92\\x66\\x23\\x4e\\x5e\\x9f\\xca\\x38\\x45\\xb5\\x66\\xba\\x1b\\xa7\\xf1\\x44\\x0a\\x4a\\xa5\\x62\\xd9\\x76\\xd6\\x2d\\xe7\\x0c\\xb9\\x22\\x55\\xe7\\x35\\xca\\xf6\\x5e\\x1d\\x8d\\x48\\x94\\x69\\xb4\\x30\\x23\\xd8\\xe2\\xc9\\x8e\\x6a\\xf8\\xa5\\xfe\\xcd\\x21\\xcb\\xd3\\x08\\xc5\\x72\\x24\\xb1\\x9e\\x24\\xa1\\xab\\x1f\\x98\\x53\\x72\\x52\\xd8\\xeb\\xbd\\xa5\\xc6\\x61\\x73\\x0d\\x32\\x4a\\x2e\\xce\\xc4\\x87\\xe2\\x71\\xde\\xe3\\x88\\xc7\\x1d\\x1e\\x3e\\x1e\\x1f\\x8a\\x63\\x81\\x1d\\x93\\x86\\xbd\\xcf\\xfb\\x3a\\x7d\\xbe\\xce\\xdf\\xd1\\xbd\\xb3\\xf4\\x31\\x9b\\x2b\\xdf\\x67\\xe2\\xe5\\x77\\x00\\x2a\\xb9\\x40\\x86\\xcf\\x2e\\x4a\\x61\\x40\\xb0\\xd2\\xf9\\x29\\xb6\\xc4\\x22\\x1c\\xc4\\xb8\\x97\\xc3\\x9c\\x38\\x21\\x3e\\x4c\\x93\\xc5\\xb4\\x6a\\x0e\\xd4\\x39\\x4c\\x58\\x0c\\x33\\x2a\\x66\\x14\\xa5\\x34\\x8e\\x1a\\xcd\\x2b\\x6b\\xac\\x9d\\xf6\\x73\\xb7\\xb6\\xba\\xa1\\x86\\x5e\\xed\\xd0\\xac\\x7b\\x52\\x52\\xf1\\x10\\x7a\\x3d\\xd6\\x34\\xc7\\xf0\\xf8\\xa2\\xb0\\x41\\xb0\\xb9\\x6c\\x71\\x5b\\x49\\xfb\\xfd\\x86\\xdf\\x6f\\xc0\\x51\\x72\\x6e\\x8b\\xdb\\x5c\\x93\\xbf\\xdf\\xf0\\xfb\\x72\\xac\\xa2\\x6a\\xc8\\x7e\\x17\\xe5\\xb5\\x8c\\xb5\\x3a\\x81\\xb0\\x14\\x39\\x2f\\xc2\\xd3\\x4f\\x3f\\x8d\\x5f\\xd0\\xab\\xf6\\xfc\\x97\\xff\\xe2\\x99\\xba\\xec\\xa2\\x8b\\x2c\\x74\\x90\\x8a\\xbe\\xc6\\x2b\\xae\\x68\\xa4\\xfd\\xd6\\xe7\\x23\\x0c\\xdf\\x69\\x5a\\x8e\\xb0\\xd1\\x08\\x1b\\xe1\\xe4\\x04\\xab\\x21\\x94\\x0a\\xa8\\x95\\xb4\\x5c\\x66\\x4a\\x14\\x73\\x52\\x51\\x92\\xca\\x38\\xa6\\x50\\x1f\\xb0\\xdd\\xc8\\xbe\\xe2\\x59\\xde\\x99\\xc0\\xc4\\x81\\xb1\\xba\\x03\\x62\\x01\\xb5\\xa2\\x98\\xc3\\x2c\\xd4\\xcc\\xf7\\xda\\x88\\xa6\\xca\\x31\\x32\\x2f\\x23\\xe4\\xf3\\x79\\x54\\x33\\xf9\\x7c\\x66\\x5c\\xef\\xc3\\x12\\x03\\x06\\x75\\xb0\\x8a\\x52\\x40\\xba\\x19\\x59\\x8f\\xb7\\x0f\\x53\\x69\\xc3\\x0e\\xb6\\x31\\x36\\x6f\\x22\\x9e\\xd6\\xcf\\xb9\\x04\\xab\\x2b\\x89\\x72\\x32\\x95\\xee\\xb5\\xf0\\x1d\\x4c\\xb3\\x89\\xb1\\xc5\\xe4\\xe4\\xa0\\x39\\x9d\\x12\\x62\\xd8\\xd5\\xdc\\x66\\x09\\x86\\xeb\\x0b\\xd1\\xfa\\xba\\x40\\xc8\\xcd\\xb7\\xb5\\x35\\xd8\\xac\\x75\\x76\\x87\\x37\\x30\\x7f\\x81\\x38\\xcf\\x2c\\x27\\x6d\\x83\\x91\\xb6\\xae\\xc5\\x69\\x44\\x2b\\xd3\\x5c\\xdf\\xb6\\xc8\\xd9\\xd4\\xda\\xc0\\xc7\\x1b\\x5c\\x2d\\x0e\\x74\\x36\\x30\\x7b\\xa3\\xb1\\xba\\x58\\x13\\x63\\xff\\x5f\\x9d\\x8d\\x75\\x81\\x60\\x28\\xd8\\x25\\x74\\x3a\\x5b\\x5d\\xde\\xce\\xc5\\xe9\\x0e\\x79\\xd5\\xa0\\x10\\x88\\xac\\xa9\\xaf\\xb3\\x35\\xd9\\xac\\x6b\\x59\\x87\\xc7\\xdc\\x30\\xbf\\xd3\\xd1\\xd9\\x11\\xf0\\x62\\x9b\\xc5\\x3c\\x73\\x2c\\x7d\\xfa\\xdc\\x0b\\x8d\\xdb\\x90\\x4f\\x9b\\x3d\\xcb\\x95\\x8a\\x99\\x58\\x32\\x46\\x63\\xf3\\x4a\\x45\\x22\\xf7\\x0a\\xc5\\xa2\\x3f\\x16\\xf3\\x23\\xe8\\x01\\x07\\x15\\xbd\\xc0\\x5c\\x99\\x93\\x77\\xe8\\xde\\x27\\x24\\xfc\\x40\\x42\\x39\\x41\\x48\\x45\\x42\\x99\\x91\\x13\\x6c\\x27\\x4d\\x00\\xa3\\x04\\x42\\xbf\\x31\\xdb\\x3d\\x38\\xd8\\x9d\\xc9\\x04\\x04\\x21\\x90\\x19\\x1d\\x2f\\x95\\x84\\x40\\x26\\x63\\x5c\\xc2\\xec\\xd2\\xb3\\x97\\xce\\x13\\x52\\xc2\\x3c\\x4d\\x14\\xe7\\xa7\\x84\\x79\\xe4\\xf4\\xef\\xef\\xab\\xfc\\x7b\\x95\\x85\\x10\\x81\\x3c\\xed\\x7f\\x33\\x8d\\xe7\\xe5\\x29\\x53\\x64\\x84\\x41\\x4c\\xc4\\xf1\\xb6\\x91\\xc2\\x19\\xf3\\x07\\x07\\xce\\x71\\xc6\\xbd\\xfb\\xd6\\xaa\\x18\\x5c\\x5f\\x58\\xdf\\xb5\\x2c\\xd9\\xb2\\x32\\xa3\\xe3\\xe7\\x14\\xe6\\x90\\x25\\xd6\\x4d\\x34\\x22\\x47\\x74\\x0b\\x70\\x4a\\x9c\\x21\\xcf\\xcc\\x54\\x9a\\xca\\x3c\\x5b\\xe1\\xb2\\xd9\\x09\\xb7\\x21\\xc3\\xc4\\x4f\\x91\\x5f\\xee\\x39\\xf2\\x3c\\x66\\x65\\xec\\x8e\\x4e\\x4c\\xcc\\x10\\x5a\\x2b\\x44\\xaa\\x3b\\xa8\\x58\\x30\\xe6\\x79\\x82\\xc8\\xd1\\x58\\x9e\\xe2\\xc5\\x57\\xb8\\xd6\\x3f\\x9c\\xcb\\xa1\\xe2\\xf8\\xdc\\x79\\x97\\x6e\\xa1\\x39\\x28\\xba\\xee\\x44\\x9e\\x6b\\xa6\\xb1\\x0f\\xfa\\x93\\x0e\\xe4\\x58\\x21\\x8d\\xac\\xf1\\x82\\xa6\\xaa\\x35\\x6f\\x11\\xdb\\x31\\x97\\x9b\\x21\\x13\\xcb\\x92\\x9a\\xf5\\x1a\\x6d\\x75\\x73\\x2c\\xc3\\x0b\\x72\\x1a\\x59\\xb1\\xde\\xeb\\x74\\x7a\\x9d\\xbb\\xf7\\xec\\x39\\xb2\\x67\\xcf\\x94\\xa6\\x9d\\xef\\xf4\\xb6\\xb4\\x78\\x31\\xbc\\x87\\xc6\\xb7\\x03\\xcc\\x2a\\xc7\\xb0\\x30\\xab\\xe5\\xcc\\xcc\\xfd\\x2c\\x5e\\x4b\\x9d\\x28\\x79\\xb5\\x92\\x98\\xaa\\xa8\\x6a\\x51\\x4f\\xb6\\xe8\\x53\\x8d\\xb1\\xd4\\xf5\\x08\\x57\\x4d\\xb9\\x7a\\xdc\\xbb\\x1b\\x38\\x3a\\x47\\xd1\\x09\\x5d\\x74\\x95\\xc6\\x14\\x2c\\x84\\x41\\x58\\x0e\\x43\\x30\\x0c\\xe0\\x66\\x13\\x14\\xbb\\xcd\\xc6\\x96\\x96\\x13\\xac\\xa0\\x1f\\x7b\\x6c\\xe4\\x80\\xde\\x64\\x79\\xd9\\x2c\\x27\\xda\\x89\\x88\\x4a\\x10\\xbd\\x95\\xce\\x60\\x90\\x3b\\x6e\\xe3\\x71\\x21\\x99\\x4a\\xb0\\x05\\x2d\\x3f\\x41\\x67\\x1b\\xa9\\xf5\\xeb\\x77\\x4a\\x45\\x51\\x95\\x54\\xc9\\xe9\\x97\\x48\\xdb\\x24\\x4d\\xcc\\x4b\\xa2\\xa4\\x91\\x3b\\xa8\\x68\\x5a\\x7e\\x62\\x02\\x41\\x92\\x4a\\x7a\\xa6\\x58\\x5e\\x92\\xa6\\x41\\x72\\xfa\\xf3\\x34\\x75\\x0c\\x35\\x49\\x2a\\x15\\x25\\x49\\xf5\\x3b\\x51\\xf5\\x3b\\xf5\\xe8\\xfb\\x69\\x90\\xa4\\xbc\\x28\\x8e\\x3b\\xfd\\x12\\xc5\\x59\\xc9\\xb0\\x13\\xac\\x84\\x97\\xf6\\xa0\\x6c\\x95\\x50\\x29\\x15\\xb0\\xa0\\xe4\\x24\\x29\\x57\\x28\\xcb\\x9a\\x39\\x79\\x2e\\x2b\\x27\\x58\\x45\\xcf\\x15\\x28\\x69\\x5a\\x85\\xe5\\x9a\\x0d\\x99\\x9e\\xa7\\xb9\\x49\\x54\\x52\\x24\\x1c\\xc8\\xa7\\x13\\x1c\\x2f\\x30\\x11\\x36\\x82\\xd0\\xb5\\xe1\\x33\\x9e\\xee\\x9d\\xe1\\x9d\\xdd\\x9e\\x9f\\x51\\xbf\\x84\\x96\\x8d\\xf5\\x4d\\x4d\\xf5\\x9d\\x2b\\xd2\\xf6\\xe4\\xf1\\x9f\\x0d\\x1a\\x8a\\x53\\x3f\\x23\\xdf\\xc1\\x70\\xbc\\xcc\\xa5\\xb0\\x61\\xed\\x5e\\x2e\\xee\\x3c\\x67\\x60\\x70\\xfe\\x19\\x85\\x91\\xa5\\xa8\\x66\\x56\\xb6\\x24\\x97\\x75\\xad\\x2f\\xac\\x4f\\xcf\\xc0\\x7b\\x23\\x8e\\xd9\\xcc\\x9b\\x13\\xe9\\xc4\\x6c\\x7e\\xc6\\xa5\\x39\\xdc\\xdc\\x73\\x69\\xd7\\xa5\\x3d\\xad\\x07\\x2e\\xaf\\x92\\xf4\\x8d\\xdd\\xdd\\xfb\\xd0\\x5b\\x3a\\xa5\\x60\\xb8\\x56\\xf0\\xfd\\x79\\xff\\xfe\\x5a\\x1c\\xb3\\x41\\x0b\\x84\\xa9\\xe4\\xa3\\xe1\\x64\\x9f\\xce\\x34\\x55\\x62\\x51\\x8d\\x9e\\xc6\\x39\\x51\\xca\\x64\\x14\\x25\\x5b\\xe6\\x9f\\xba\\xfc\\xad\\xe1\\x9f\\x73\\xe8\\x89\\x1c\\x43\\x74\\xd7\\x44\\xfa\\xaf\\xeb\\x89\\xcb\\xea\\x75\\x94\\xae\\x51\\x13\\xf7\\xef\\x93\\xa4\\x7f\\x6c\\x6c\\x29\\x6b\\x89\\x2d\\x8d\\x3c\\xd1\\x12\\xcb\\x70\\x2a\\xd0\\x18\\x1d\\x9e\\x66\\x8e\\x31\\x1c\\xe3\\x64\\x13\\x4b\\x90\\x98\\x39\\x89\\xaa\\x23\\x4a\\x0f\\xa0\\x22\\x76\\xf1\\x94\\xaa\\x7a\\x15\\x25\\xe3\\xf4\\xd5\\x98\\x54\\x19\\x9f\\x73\\x5f\\x46\\x65\\x15\\x05\\xeb\\x45\\x51\\xf2\\xb9\\x44\\xbf\\x93\\xa6\\x30\\x4e\\x39\\xfd\\xe2\\x0c\\x3f\\x97\\x13\\x04\\x3a\\x92\\xed\\xd8\\x8c\\xed\\x18\\x91\\x93\\x31\\x81\\x94\\x69\\x99\\x59\\x11\\x39\\x8b\\xc8\\x49\\x62\\xbf\\xbb\\x5b\\xa7\\xa1\\xd5\\xed\\x77\\x62\\x5f\\x47\\x79\\xde\\xbf\\xc3\\x8f\\x22\\xe6\\x7c\\xce\\x5e\\x26\\xcc\\x76\\x77\\xb3\\x61\\xa6\\xd7\\xe9\\x1b\\xf5\\x3b\\x69\\x1e\\x58\\x96\\x1a\\xcb\\x8a\\x73\\x66\\x1e\\x89\\x9e\\xe3\\xd5\\x0e\\x80\\xc4\\x90\\x4b\\x27\\x38\\x42\\x95\\xba\\x7a\\x18\\xd5\\x27\\x8b\\x69\\x10\\x00\\x4a\\xd3\\xa0\\xb0\\xaa\\x37\\x5f\\xa4\\xf1\\x60\\x08\\x9a\\x96\\xcb\\xa9\\x2a\\xe6\\x44\\xd1\\xeb\\x2d\\x4d\\x15\\x89\\xea\\x71\\xaf\\xa4\\xd1\\xf0\\xa6\\x4a\\x2c\\x5d\\xce\\x88\\x9c\\x0a\\xd2\\x28\\x2d\\x2a\\xc5\\x6c\\x44\\xaa\\x51\\x8d\\xa1\\x23\\x6d\\x14\\x4f\\x36\\x69\\xe3\\x82\\xe1\\xe1\\xae\\x81\\x81\\xae\\x06\\x45\\x69\\x58\\xf0\\x1d\\x1a\\x6d\\x36\\xfe\\xe6\\x95\\x1b\\xc5\\x81\\x0d\\x03\\xa2\\xa2\\x48\\x92\\x74\\x44\\x3a\\x22\\xce\\xcc\\xf9\\x61\\x68\\xbe\\x02\\x6d\\x7b\\x6a\\x56\\xa6\\x4f\\x9a\\xe5\\x18\\x41\\x26\\x1a\\xb2\\x95\\x11\\xd2\\x3f\\xae\\xc9\\xf4\\x79\\x4d\\x6d\\xd9\\xb9\\x62\\x7b\\x60\\x3b\\xae\\x09\\x6c\\x0f\\xa8\\x35\\x59\\x3e\\x81\\x3d\\x71\\xff\\x62\\xed\\xc2\\xb3\\xc2\\x67\\x9d\\x15\\xd9\\x14\\xae\\xd6\\xf3\\xab\\x7f\\x6b\\x3d\\xce\\x1d\\xcb\\x2f\\xa4\\xf5\\x5c\\xd8\\x66\\xd4\\x43\\x79\\xb1\\xff\\x8a\\x84\\x7f\\x50\\xdb\\xbe\\x31\\xbc\\x71\\x63\\x78\\x73\\xb8\\x56\\x0e\\x59\\xa1\\x89\\x4a\\x56\\x5a\\xa6\\x69\\x96\\x34\\xc2\\x86\\xad\\x2d\\x7b\\xfa\\x6b\\xc4\\x11\\x66\\xf7\\x2c\\x08\\xac\\xd4\\x4a\\xa7\\x6a\\x65\\xd2\\x0c\\xf8\\x34\\x50\\x9f\\x71\\x48\\x8f\\xed\\xac\\xda\\x62\\x9f\\x96\\x15\\x85\\x2c\\x8d\\x3d\\x99\\x37\\x67\\x5a\\x14\\x8d\\xee\\x94\\x94\\xa9\\x39\\xd3\\xa2\\x0c\\xd9\\xab\\xe7\\xd6\\xf8\\x89\\x15\\x8d\\x44\\x39\\x60\\x05\\x46\\x4e\\xcb\\x8c\\xbc\\x14\\x39\\xb6\\x0f\\x75\\xb7\\x99\\x12\\xc0\\x0d\\x81\\x6b\\xa5\\xe1\\x75\\xe2\\xf8\\x8d\\xd9\\xfc\\xca\\x6f\\xb9\\xfd\\x6e\\x3c\\x1c\\x28\\x3d\\x1d\\x38\\x78\\x66\\x38\\xcc\\xb2\\xe1\\xf0\\x3e\\x59\\xdc\\x10\\xc8\\x8a\\xec\\xb7\\xce\\x68\\x72\\xbb\\x9b\\x66\\x94\\x0d\\x04\\x3a\\x6e\\xae\\xa6\\xe4\\xf2\\xaa\\x16\\xdc\\x7f\\xff\\x5d\\x9e\\x96\\x39\\xee\\xf6\\xbb\\xf3\\xa8\\xe4\\xe4\\x7d\\x95\\xd2\\xb2\\xfb\\x48\\x41\\xfb\\x8c\\x98\\xd7\\x1c\\x48\\x98\\x35\\xfc\\xac\\x35\\xf9\\xb8\\xb3\\x6c\\xa2\\x45\\x48\\xb3\\x4e\\x45\\x51\\xbc\\xb0\\xd1\\xe9\\x6c\\x7c\\x88\\xec\\xf8\\x4c\\x31\\x9b\\x55\\x25\\x09\\x25\\x67\\x63\\xe9\\x07\\x8d\\x2d\\x2d\\x8d\\xb8\\xba\\xd1\\x29\\x8a\\xba\\xae\\x5b\\x2e\\xd7\\x4a\\x24\\xeb\\x52\\xe4\\x65\\x26\\x91\\x9e\\xa3\\xcc\\x29\\x22\\x9f\\x6a\\xcb\\x54\\x8f\\xec\\x3f\\x32\\x79\\x5a\\x81\\x58\\x29\\xcf\\x3d\\xc3\\x07\\x57\\x6d\\xdb\\x19\\x35\\x65\\x60\\x7e\\x76\\x01\\xff\\xde\\xf7\\xab\\x70\\xf2\\x40\\x2b\\x74\\x1b\\x39\\xc5\\xb5\\xf3\\xb3\\xec\\xec\\xe9\\xd9\\xda\\xc2\\xfb\\x1d\\xb1\\x64\\x2c\\xec\\x6a\\x73\\xd9\\x3d\\x9e\\x0e\\x97\\xa3\\x6b\\x7b\\x4d\\x65\\x7f\\x74\\xb0\\x84\\xa5\\x37\\xb9\\xdd\\x7e\\xbb\\xc7\\xc3\\xb5\\xb8\\xb6\\xcd\\x9b\\x87\\xe2\\xac\\x06\\x98\\xe9\\x3c\\xe9\\x41\\x1a\\x7b\\x69\\xa5\\x3a\\x8f\\xc0\\x3a\\xd9\\x74\\x82\\xe1\\x18\\x1a\\x4a\\x23\\xa4\\x39\\x39\\x81\\x4b\\xba\\xba\\x96\\x9c\\x7f\\xfe\\x41\\x76\\x3b\\xb1\\x76\\xb7\\xb3\\x8f\\xce\\xdb\\x88\\x75\\x1b\\xe7\\x9d\\x7f\\xfe\\x35\\x8f\\xe8\\x57\\x1e\\xa1\\x31\\x13\\x3a\\xee\\x98\\xc1\\x06\\x76\\x1a\\xef\\x44\\xe3\\x65\\x98\\x39\\xca\\xa3\\x34\\x90\\x93\\x24\\xb1\\x77\\x66\\xb9\\x59\\x91\\x0c\\xba\\x24\\x49\\xe7\\x9f\\x56\\x41\\x51\\xd2\\xed\\x26\\x33\\xa8\\xc6\\x5c\\xb2\\x09\\x9a\\xc0\\x4b\\x2c\\x36\\x9a\\xbd\\x65\\x94\\xce\\x11\\x95\\x85\\x63\\x08\\x89\\x75\\x75\\x3d\\x82\\x03\\xc1\\xfe\\xf3\\x49\\xe1\\x77\\x15\\x44\\xf6\\xe0\\xb2\\x60\\xc7\\x75\\x5d\\xf3\\x7e\\x5b\\x7a\\x35\\xd8\\x7f\\x1e\\x29\\xf6\\x2e\\xfb\\x2a\\x29\\x7b\\xcd\\xb2\\x20\\x0f\\x46\\xcc\\x87\\xde\\x7e\\x1d\\x0e\\x01\\x88\\xcc\\x0d\\x0b\\xce\\x70\\xff\\x32\\x69\\x62\\x57\\xa1\\xbb\\xab\\x6b\\x71\\x4d\\x0f\\x5e\\x0f\\x45\\x7c\\x2c\\x9b\\xe9\\xaf\\xaf\\x3f\\x1d\\x46\\x3b\\xe2\\x07\\x93\\x3e\\xf1\\x6c\\x31\\xd3\\xef\\x6b\\xf5\\xe9\\xb2\\xd5\\x01\\x0e\\xfc\\x23\\xfe\\xb1\\xaa\\x1f\\x08\\x3c\\x93\\x48\\x27\\xd2\\x1c\\xc3\\xf2\\x8c\\xc0\\xcb\\x42\\x5a\\x4e\\xa4\\xb9\\x04\\x93\\xe6\\xb0\\x7f\\xde\\x2a\\x71\\xd5\\x3c\\xc7\\xca\\xdb\\x86\\x86\\x76\\xac\\x5e\\xbd\\x43\\xdf\\xbf\\xec\\xf3\\xe5\\x0b\\x05\\xf1\\xca\\xca\\x85\\xa1\\xa1\\x1f\\x9c\\x71\\x06\\xcc\\x2a\\x9b\\xe6\\x47\\x56\\x23\\x43\\x74\\x9e\\x14\\x9d\\x55\\xc7\\x6f\\x68\\x76\\x62\\x78\\x74\\x78\\x78\\x74\\x18\\xa5\\xda\\x4a\\x50\\xa5\\x09\\x89\\xdf\\x18\\x26\\xf7\\xae\\xab\\xa9\\x4a\\xa7\\xc7\\xda\\x3e\\x54\\xb8\\xb6\\x75\\x46\\xd9\\x2c\\xf7\\x9a\\x51\\x6e\\xb5\\xd4\\x21\\x8d\\x96\\xe7\\xda\\x51\\xad\\x6a\\x66\\x79\\xd4\\xf6\\x89\\xd2\\xa8\\x7d\\x6e\\x56\\x69\\x08\\xf2\\xf0\\xb0\\x9c\\x9f\\x55\\xd8\\x7f\\xad\\x2d\\xaa\\x6c\\xa3\\xbc\\x45\\x63\\xcc\\x21\\x1a\\x4f\\x73\\xc6\\x44\\x74\\x9a\\xa5\\xc6\\xb1\\xdb\\x48\\xef\\x23\\xb2\\x1f\\x61\\x4d\\xf7\\x80\\xb2\\xfb\\xec\\xeb\\x2f\\xdf\\x98\\x5a\\xb7\\x65\\xd3\\xc6\\xcb\\x5d\\x03\\xf5\\xeb\\x52\\xd9\\x81\\xc8\\x96\\xeb\\xcf\\xde\\x74\\x4d\\x9d\\x52\\xb7\\x79\\x60\\x70\\x0b\\x5e\\x52\\x77\\xcd\\xa6\\xf9\\x42\\xa4\\xcd\\x3f\\xb0\\xb9\\x8e\\xe6\\x81\\xe8\\x71\\x38\\x4d\\xe0\\x06\\x9f\\x1e\\x9d\\x94\\x60\\xab\\x0e\\xfc\\x34\\x23\\xa4\\x39\\x86\\xa3\\x58\\x13\\x35\\x26\\x50\\xf4\\x00\\x61\\xcc\\x8a\\x74\\xd6\\x40\\x54\\x82\\xdb\\xb7\\x07\\x57\\x7c\\x3f\\xb8\\x62\\x45\\x70\\x7b\\xe9\\x94\\x71\\x31\\x2b\\x52\\xdd\\x4c\\x15\\x37\\x92\\xbb\\x2b\\xb7\\x07\\x57\\xae\\x0c\\x6e\\xcf\\x91\\x8b\\xe8\\x73\\xaa\\x22\\x18\\xab\\xea\\xea\\xfe\\x61\\x33\\xb8\\x89\\xee\\x37\\xd7\\x4c\\x65\\x94\\xa5\\xee\\x62\\x52\\x6f\\x84\\xc5\\xa2\\x9a\\xa5\\xf9\\x78\\xf6\\xa6\\x26\\x7b\\xe9\\xd4\\x44\\xa9\\x28\\xf9\\x9c\\xa8\\xe5\\xc6\\xc6\\x0a\\x8d\\xf6\\x22\\xb9\\x58\\xb4\\x37\\x4a\\x53\\x8a\\x32\\x45\\x34\\x70\\xdb\\x8c\\x98\\x51\\xdd\\xce\\x10\\x88\\x3d\\xa1\\xc7\\x2b\\x5a\\xcb\\xdf\\x9f\\x12\\x89\\x9c\\x13\\x45\\x11\\xc5\\x53\\xa7\\x4e\\xcd\\x8c\\x47\\xd6\\x8d\\x52\\x1a\\x78\\xa8\\x87\\x1f\\x16\\xf4\\xf0\\x08\\x3d\\xad\\x4e\\x0f\\x4c\\xae\\xc6\\xac\\xb2\\x38\\x45\\xe7\\x87\\x42\\xa4\\xe6\\x32\\x56\\x45\\xa9\\xe3\\x42\\x5f\\xfc\\x43\\xe0\\xe5\\xc4\\x20\\x12\\x9b\\x26\\x88\\x36\\x03\\xb7\\x75\\xad\\x00\\x37\\x77\\x77\\x33\\x5b\\x57\\x88\\x2b\\xb6\\x32\\xe5\\x83\\x5f\\x53\\xe4\\xce\\x6e\\x21\\xf7\\x37\\xd5\\xde\\xa0\\x07\\x66\\x8a\\xdf\\xfa\\x1c\\x42\\xb5\\xde\\xff\\x6d\\xad\\x9f\\x5a\\xdb\\xa7\\xd5\\x33\\xbb\\x6f\\x3e\\x1a\\x09\\x40\\x43\\x17\\x12\\x71\\x73\\xba\\xba\\xb0\\x09\\xa9\\x25\\x95\\xb6\\x26\\x58\\xde\\xc6\\x54\\x63\\x17\\xf4\\x5a\\xf1\\xbc\\x7f\\x0c\\x6d\\x19\\x8c\\x7f\\x18\\xc0\\x9d\\x81\\xee\\x9e\\xb4\\x5e\\xb6\\x2d\\x8a\\x9b\\xba\\xbb\\xad\\x2d\\xe1\\x86\\x2d\\x83\\xc1\\x40\\x38\\x14\\x15\\x57\\x6c\\xbd\\xfd\\x1f\\xe7\\xc5\\x07\\xb7\\xe0\\xc2\\x40\\xe9\\xc1\\x40\\x77\\xd4\\xa6\\xb7\\x24\\xdd\\xb3\\x43\\x14\\xda\\xc3\\x81\\xe0\\xe0\\x96\\x86\\x70\\x8b\\x55\\x6f\\xd5\\xff\\x89\\x6d\\xfa\\x8f\\x18\\x8b\\x5a\\x99\\x55\\xc6\\x73\\xea\\x8b\\x63\\x9c\\x09\\x27\\x5d\\x21\\xc8\\x99\\x70\\x0a\\xce\\x84\\x93\\xc8\\x2a\\x95\\x58\\xad\\x44\\xe9\\x46\\x29\\xa3\\x12\\xcc\\x55\\x33\\x99\\x71\\x1c\\x2f\\xe9\\x27\\x35\\x31\\x3c\\x26\\x80\\x68\\x04\\xb1\\x58\\xca\\xe0\\xb8\\x84\\xe3\\x54\\xc7\\xa8\\x83\\x14\\x7e\\x4c\\xfd\\x5a\\x54\\x26\\xce\\x4f\\x0b\\xa9\\x38\\x87\\xcf\\xe2\\x73\\xcf\\xe1\\xca\\x6b\\x4a\\xd7\\x20\\x87\\x93\\x93\\xb8\\x59\\x55\\x6b\\x75\\xd4\\x56\\x68\\xa3\\xf1\\x5a\\x7a\\x6e\\x2a\\x9b\\x90\\x79\\xd6\\x48\\x66\\x4a\\x12\\x65\\x2c\\xe1\\x9e\\x63\\xd6\\x0c\\xb5\\x69\\x50\\xc5\\x71\\xc5\\xeb\\xef\\xf0\\x7b\\x7d\\xce\\xb1\\xd2\\xf8\\x8c\\x19\\x27\\x1a\\x96\\x24\\x8d\\x8f\\xcf\\x6f\\xf4\\x11\\x6a\\xf4\\x35\\xce\\x77\\xfa\\x4b\\x45\\x3a\\x5b\\xa9\\xd5\\x5a\\x98\\x00\\x60\\xab\\x59\\xc7\\xc5\\x49\\xe7\\x44\\x05\\x98\\x0f\\x40\\x67\\x1a\\x08\\x87\\xb1\\x1a\\xcc\\x8e\\x98\\x99\\x84\\xa9\\xf1\\x72\\x39\\x80\\x90\\xe1\\xd2\\x5c\\xc4\\x4c\\x39\\xde\\x22\\x64\\xd5\\xb1\\x31\\xa7\\x0f\\x35\\xd1\\xe7\\x24\\x07\\xe2\\x58\\xc6\\xed\\x77\\xbb\\xfd\\x9f\\x57\\x24\\x65\\x1a\\x24\\x72\\x75\\x6a\\x8c\\xde\\xa3\\x77\\x49\\x2b\\xc6\\xc6\\xc4\\xeb\\xc9\\x23\\x6e\\xed\\xcc\\x05\\x2a\\x4a\\xf4\\x3a\\x94\\x7d\\x83\\x6f\\xe3\\xdb\\x95\\x1c\\x0e\\x6a\\xce\\xe8\\xe1\\xb8\\xc4\\x8e\\xc2\\x0b\\xaf\\xb9\\xe6\\x33\\xf9\\x33\\x0e\\xe4\\xf3\\xf9\\x3c\\xbe\\x7d\\xcd\\x81\\x7c\\xfe\\xc0\\x19\\xf9\\xcf\\x94\\x7e\\x93\\xcf\\x83\\xa5\\x66\\x8d\\x8a\\x76\\x3d\\x93\\xdf\\xcd\\x26\\xa8\\x9a\\xc5\\xd4\\xce\\x34\\xb7\\xa3\\x61\\xff\\x71\\x7a\\x44\\x57\\xad\\x2d\\x98\\x38\\x91\\x74\\x78\\x1d\\x4e\\xc2\\x44\\x7d\\x9d\\x3e\\xf2\\x35\\x5a\\x9a\\x40\\xb5\\x26\\xcc\\x5d\\xf2\\x7a\\xeb\\x1d\\x8e\\xdb\\x1b\\xed\\x8a\\xbd\\xd1\\xeb\\xf4\\xb5\\xba\\xbc\\xfa\\xe1\\xc4\\x04\\x82\\x31\\x4b\\x3c\\xe1\\x34\\xf2\\x8c\\x6a\\xe3\\x24\\x02\\xa4\\x3d\\x73\\xcd\\x16\\x70\\x7f\\xb5\\x8d\\x33\\x22\\x29\\x36\\xce\\x6e\\x9c\\x1e\\x5a\\xa1\\xd5\\x4e\\x41\\x17\\xe6\\x6e\\x1f\\x6d\\x0f\\xa1\\xb5\\xbf\\x50\\xbf\\x7d\\x3b\\x08\\x74\\x15\\xb6\\xbf\\x5a\\xb7\\x35\\xcd\\x31\\x1d\\x31\\x21\\x11\\xc4\\xa8\\x11\\xa2\\x83\\xb1\\xe4\\x52\\x4c\\xc5\\x43\\x44\\x13\\xe3\\xd2\\x42\\x1a\\x77\\xad\\x65\\x83\\x5e\\xda\\xa2\\x70\\x77\\x88\\x7c\\x95\\xfe\\xdc\\xb6\\xb1\\x79\\xc7\\x17\\xeb\\xc2\\xb6\\x55\\xb8\\xa7\\xbe\\xfe\\x90\\xdd\\x5f\\x3f\\x0d\\xf5\\xf5\\xb7\\xda\\x03\\xf5\\xc9\\x60\\xcf\\x35\\x1f\\x1e\\xe8\\x0b\\xe2\\x6b\\x0d\\x0d\\x0e\\x96\\x7d\\x80\\xe6\\x87\\x37\\x78\\x43\\x21\\x6f\\x03\\x3d\\xfc\\x73\\xdb\\x46\\x3c\\x74\\xe1\\xa2\\x6d\\x77\\xda\\x03\\xf5\\xb7\\xd6\\xd7\\x23\\xd8\\xfd\\xf5\\x87\\xea\\xeb\\x93\\xc1\\xee\\x03\\x1f\\x5e\\xd3\\x17\\xd4\\x7f\\xc1\\x08\\xa7\\x4d\\x40\\x73\\x3e\\x48\\x0f\\x60\\x29\\x96\\x5b\\xc8\\xa5\\x91\\x49\\xe3\\xcc\\x66\\x12\\x05\\x31\\xee\\xe5\\xf8\\x5e\\x3c\\xd2\\x6e\\x34\\x6a\\xe5\\x3f\\x1e\\x9a\\x86\\x43\\x0f\\x23\\xea\\x4d\\x2b\\x4d\\xd3\\xef\\xc3\\x95\\xdb\\x29\\xda\\x86\\xc5\\x5b\\xdd\\x87\\x10\\x0e\\x7d\\xad\\x34\\xad\\x37\\x01\\x91\\x7e\\x07\\x8c\\x9b\\x46\\x7e\\xa8\\xae\\x9f\\xce\\x19\\x5f\\x52\\xeb\\xc5\\x75\\xa7\\x51\\x93\\x58\\x89\\x95\\xf2\\x64\\x88\\xa6\\xc1\\xe9\\xc7\\x1b\\x51\\xa5\\x8b\\x45\\x65\\xaa\\xe4\\x08\\xda\\x8c\\x1c\\x0e\\x37\\x9d\\xdd\\x9e\\x83\\xf4\\xdd\\xba\\x72\\x93\\xd0\\x1d\\xfc\\x74\\x6a\\x74\\x76\\xa2\\x82\\xe6\\x8f\\x45\\x5a\\x2d\\x6c\\x6f\\x9b\\x68\\x41\\x02\\xdd\\x51\\x7d\\x26\\xbd\\x76\\xb6\\xb2\\x34\\x15\\xf3\\xfb\\x3a\\x4d\\x52\\x34\\x10\\xea\\x0e\\x01\\xcc\\xe2\\x6b\\x69\\x74\\x4a\\x94\\xa9\\x95\\x32\\x33\\xe7\\xde\\xf4\\xf8\\x2d\\x48\\x23\\xcb\\x3b\\x13\\x86\\xdf\\x50\\xc2\\x71\\x55\\x12\\x45\\x51\\xc2\\x71\\xad\\x34\\x21\\x8a\\x6a\\x3e\\xff\\x77\\x8c\\x37\\xac\\x5d\\x6b\\xc8\\x4a\\xb9\\xa4\\x1d\\x23\\x94\\xe9\\x6a\\xa5\\xdf\\xa1\\x8f\\x1e\\xad\\x28\\xfd\\xce\\x90\\x23\\x45\\x9c\\xa2\\x56\\x09\\xad\\x2f\\x92\\x16\\xa2\\x4e\\x61\\x17\\x5e\\x1e\\x10\\x4b\\x5f\\xf8\\xe1\\xad\\xb8\\xef\\xfb\\x78\\xa4\\x74\\x38\\x20\\xfd\\xf0\\xd0\\xae\\xd2\\xbd\\xdf\\x9f\\xc1\\xaf\\x2d\\x00\\x51\\x33\\x61\\xd5\\xf0\\xf1\\x35\\xa5\\x6b\\x52\\x28\\xd3\\x00\\x16\\x33\\xd8\\x41\\xa2\\x73\\x9a\\x01\\xe0\\xf5\\x4c\\x0e\\xc6\\x9c\\x1e\\x64\\xe2\\x41\\x5b\\x08\\x99\\x18\\xdf\\x61\\xe3\\xfe\\x6a\\x40\\x0b\\x0e\\x0f\\xff\\x4f\\x9b\\xad\\xc9\\xeb\\x0b\\x77\\x0a\\x3d\\xbd\\x3d\\x42\\x67\\xd8\\xe7\\x6d\\xb2\\xd9\\xba\\x6d\\x2d\\x3d\\x4b\\x6e\\x77\\xfb\\xdd\\x99\\xba\\xa6\\xa6\\xba\\x2c\\xd9\\x05\\x7b\\x43\\xaf\\x0d\\x5c\\x80\\x29\\xab\\xc5\\xde\\xdc\\xe8\\x68\\xa8\\xb7\\x5a\\xeb\\x1b\\x1c\\x8d\\xcd\\x76\\x8b\\x75\\xc0\\xb4\\x64\\x7d\\x98\\x98\\xdb\\xe1\\xe6\\x3a\\x95\\x3c\\xaa\\xd6\\x35\\x87\\xb9\\x60\\xc8\\x4b\\x61\\xa3\\xb7\\xff\\x28\\xd4\\x43\\x0b\\x80\\xdb\\x0b\\xc4\\x0e\\x33\\xa7\\xd2\\x82\\x95\\x86\\x40\\x0e\\x35\\x62\\x60\\x4d\\x60\\xf5\\xa6\\x8f\\x23\\x3d\\x12\\xfe\\x7c\\xef\\x6f\\x7a\\xba\\x6f\\xc4\\xa3\\x8d\\xa5\\x13\\xeb\\x02\\xab\\x2f\\x42\\x39\\xe0\\xe9\\x3e\\xef\\xde\\xb7\\xeb\\x0d\\x19\\x30\\x73\\x9d\\x15\\xba\\xbe\\x92\\xee\\x57\\x8e\\xb0\\x34\\xab\\x2a\\xc2\\x46\\x38\\xe3\\x5c\\x95\\x54\\x1c\\x2f\\xe5\\x25\\x91\\xe0\\x87\\x48\\x4e\\x88\\x5d\\xaf\\x64\\x32\\x63\\x64\\x5f\\xa0\\x87\\x80\\xb0\\x0b\\x62\\x94\\xf7\\x75\\x57\\x56\\x3b\\x92\\xb0\\x46\\xb2\\x51\\xe9\\x62\\x2c\\x12\\xe8\\x61\\x88\\xd8\\x4b\\x73\\x54\\xfa\\xa1\\xa2\\xb2\\x3e\\x97\\xe2\\x0f\\x74\\x05\\xfc\\x8a\\xcb\\xe7\\x6f\\x8b\\xb5\\xf9\\x74\\x57\\x09\\x8b\\xd9\\x8c\\xe8\\xf2\\x2d\\x6b\\x6e\\x73\\xb7\\xb5\\xb9\\xdb\\x9a\\x97\\xf9\\x5c\\xdd\\xcd\\x01\\x4f\\x20\\xe0\\x69\\x6b\\xea\\x1e\\xcf\\x64\\xc6\\x45\\x5d\\x67\\x96\\x68\\xac\\x21\\xe1\\x71\\xf3\\xaa\\xb9\\x04\\x73\\x0f\\x91\\x40\\x6e\\x31\\x98\\x0a\\x73\\x4c\\x0c\\x8b\\x64\\x4c\\x28\\x57\\x25\\xbb\\x50\\x77\\x38\\xd5\\x3d\\x38\\x3c\\x0d\\x7b\\x30\\xbc\\x67\\x81\\x2d\\xaf\\x8f\\x02\\xcd\\x40\\x6d\\xb4\\xab\\xf6\\xa6\\x30\\x25\\xad\\xc1\\xee\\x25\\x17\\xa2\\xaa\\xaa\\x23\\xa8\\xd3\\x49\\x9c\\xfa\\x37\\x39\\xe8\\xa1\\x6b\\x24\\xd2\\xb4\\x64\\x46\\x18\\xd4\\x83\\x2d\\x2b\\xa1\\xab\\x56\\x8f\\xa1\\x5b\\x75\\x54\\x22\\x5b\\x53\\x71\\x6f\\x59\\xbb\\x7d\\xfc\\xe9\\xeb\\x17\\xf4\\x7b\\x85\\xbe\\x1d\\x77\\xef\\xa0\\xd1\\xaa\\xa8\\xf2\\xed\\xac\\x18\\x1f\\x8a\\x8b\\x6c\\x3b\\x3f\\x3c\\x3a\\x7c\\xaf\\x1e\\x74\\x5f\\xb8\\xee\\x9c\\x85\\x17\\xb6\\x45\\xb9\\x33\\x7b\\x87\\x76\\xec\\x18\\xea\\x3b\\x83\\xc6\\xa7\\x9e\\x73\\x0e\\xbf\\xc8\\x19\\xf5\\xf5\\xf3\\xf1\\x38\\xaf\\x47\\xaf\\xca\\xc3\\xc3\\x0d\\x3e\\x3d\\xce\\x1e\\x21\\x07\\x2c\\x6a\\x38\\x45\\xbd\\xa2\\x09\\x7d\\x28\\x9c\\x46\\x9c\\x9d\\x4d\\x37\\x67\\xf4\\x78\\x3b\\xda\\x32\\x27\\x75\\x2f\\xe3\\xd6\\xf0\\xca\\xed\\xab\\x12\\x43\\xf1\\x50\\x77\\x38\\xdc\\xe4\\x6a\\x0c\\x75\\x87\\x13\\x43\\x71\\xd4\\xfe\\xdc\\xbf\\x6a\\x55\\x3f\\xd6\\xf3\\x89\\x04\\x3f\\x49\\x20\\xf1\\xda\\x6b\\x04\\x2e\\x93\\xde\\x70\\xd8\\x5b\\xfa\\x88\\x5c\\x25\\xf5\\xdd\\x0a\\x0a\\x6e\\xc5\\x02\\x74\\x01\\xb8\\x83\\x66\\xb6\\xbc\\x92\\xa0\\x90\\xa0\\x4b\\x08\\x26\\xe9\\x22\\x91\\xba\\x62\\xc7\\xf1\\x84\\x9e\\x58\\xcf\\x27\\xde\\xf6\\xb0\\x73\\x5e\\x87\\x12\\x91\\x4c\\x7d\\x96\\x45\\xa1\\x80\\xb2\\x43\\x0c\\x2b\\x11\\x1e\\xfb\\x4c\\x49\\x7f\\x08\\x39\\x5b\\x23\\x1b\\xf6\\x86\\x04\\x5b\\x6f\\x2f\\x23\\x46\\x7a\\x38\\x47\\x67\\x0b\\xb7\\xac\\x7d\\x1e\\xd3\\xdb\\x57\\xd7\\xdd\\xde\\xe3\\x75\\xb5\\xd7\\xe4\\x74\\xd4\\xea\\x7a\\x86\\x4f\\xaa\\xbc\\x62\\x8a\\x39\\xe2\\x8c\\x60\\x4e\\xa3\\x91\\x20\\x9a\\x84\\x5a\\x49\\x43\\x56\\xd3\\xc6\\xcb\\xff\\xa8\\x96\\x34\\xc2\\x7b\\x9c\\x73\\xce\\xc3\\xcc\\xcc\\xef\\x4a\\xc3\\x22\\x58\\x0a\\x2b\\x88\\xc6\\xc4\\xcb\\x2c\\xa1\\x16\\x96\\x97\\xe9\\x0a\\x2a\\x09\\x96\\x27\\x16\\x94\\xb5\\x3c\\xbd\\x62\\xc8\\x06\\x9a\\x03\\x64\\x6c\\xe5\\x63\\xb7\\xf1\\x9d\\x25\\x6d\\xc9\\x4b\\x48\\x17\\x2b\\x2a\\x4d\\xe8\\x07\\xaa\\x24\\x89\\x1a\\xdd\\x8a\\xa2\\x24\\x69\\xa2\\x24\\x15\\xe8\\x5c\\x4a\\x91\\x26\\x83\\x69\\x92\\x48\\x53\\x86\\x33\\x34\\x85\\x95\\xce\\xae\\xe8\\x79\\x5f\\xfa\\x2c\\xcc\\xb4\\x6e\\x88\\x19\\xbf\\x2b\\xf5\\xaf\\xec\\xcb\\x6a\\x18\\x86\\x33\\x61\\x13\\x81\\x9b\\x3e\\x79\\x54\\x9e\\x5d\\xa2\\x49\\xf9\\x32\\x9d\\x13\\xa0\\xe7\\xe5\\xc9\\x25\\xa1\\xe6\\xb8\\x76\\x4b\\xcc\\xf1\\x0c\\x2a\\x74\\x6a\\x89\\x68\\xd8\\xd2\\x38\\xd9\\xd1\\x4f\\x51\\x6f\\xbd\\x71\\x4b\\x34\\xae\\x13\\x7d\\x7c\\x5c\\x9f\\x4d\\xa2\\x20\\xa1\\x3b\\x63\\x0e\\x29\\x43\\xfb\\x3c\\x5e\\xce\\x71\\xcb\\x18\\x77\\xd5\\x72\\xe7\\xc7\\xcb\\x7e\\x24\\xca\\x28\\x4d\\x40\\xd7\\xb7\\x71\\x01\\xc8\\x11\\x36\\x52\\x8d\\x1e\\x70\\x20\\x2f\\xa7\\x4d\\x50\\x02\\x7c\\x51\\xdc\\x20\\xd2\\x08\\x82\\x55\\x13\\x1b\\x26\\x54\\x15\\xc7\\xc9\\xb9\\x2d\\x6e\\x73\\x91\\xf3\\xbf\\x11\\x17\\xa2\\x86\\x0f\\x5e\\x28\\xcf\\xc6\\x11\\x5c\\x90\\x23\\x14\\x0e\\x69\\x63\\x32\\x8e\\x33\\xac\\xeb\\xb2\\xce\\x50\\x9e\\x86\\x93\\x59\\x5e\\x76\\x12\\x38\\xe5\\x24\\x4d\\x87\\x92\\x24\\x95\\xf2\\xa8\\x15\\x45\\x8d\\x74\\x4b\\xd4\\xe8\\x90\\xab\\x04\\x03\\xe8\\x0a\\x94\\xc6\\xcc\\x9b\\x66\\x00\\x4a\\xd5\\x3d\\x6b\\xaa\\x01\\x0e\\x49\\x2a\\xe9\\xcb\\xc5\\x4d\\xe8\\xb3\\x71\\xd0\\x34\\xa3\\x1f\\x73\\xf7\\x81\\xb6\\x5f\\x9f\\x34\\xac\\xfa\\xb8\\x49\\xfb\\xdc\\xe4\\xb4\\x06\\x97\\x13\\xfa\\xa4\\x22\\x6d\\xb3\\xdb\\xe8\\x33\\x19\\x33\\x29\\x9f\\xcf\\x8b\\xf9\\xbc\\x4a\\xa7\\x11\\x55\\xa9\\x28\\x69\\x7a\\x83\\x34\\x29\\xa7\\xb7\\x50\\x23\\xb7\\xc5\\x3c\\x69\\x1b\\xd2\\x7b\\x06\\x1e\\x90\\x26\\x1a\\x2d\\x95\\xa4\\xbf\\x0d\\xe6\\x65\\x5c\\xe5\\xca\\xb8\\x96\\x60\\x79\\xa7\\x71\\x8d\\xb4\\x0d\\x9d\\x09\\x67\\xcd\\xcc\\x68\\x65\\x96\\xb4\\x7c\\xce\\x94\\x71\\xb3\\x9c\\x62\\x49\\xc0\\x5c\\xd2\\xca\\xa7\\x62\\xf9\\x53\\xc5\\xc9\\x3c\\x21\\x39\\x4a\\x60\\x92\\x84\\x40\\x10\\x93\\x70\\x12\\x1d\\xf5\\x4a\\xfa\\x7d\\x7d\\x18\\x8c\\x67\\x80\\xf9\\x94\\xfe\\x50\\x8f\\x0b\\xc1\\x07\\xce\\x19\\x71\\x12\\xde\\x14\\x35\\xe0\\x4b\\xf0\\xa3\\x20\\x69\\xe2\\x38\\xe1\\x05\\x84\\x4b\\xe9\\x0d\\x21\\xe2\\x96\\x94\\xac\\xa7\\xd8\\x97\\xb4\\x22\\x5d\\xe0\\x50\\xc7\\xf7\\xbf\\x09\\x66\\xee\\x1a\\xfa\\x4c\\x1b\\x70\\x70\\x27\\x9c\\x7c\\x2d\\xcd\\x96\\xbf\\x39\\x63\\x7c\\xcb\\x70\\xe3\\x0d\\xb8\\x4e\\x55\\xd2\\x52\\x45\\x3a\\xc4\\x06\\x21\\x93\\xef\\x32\\x7f\\x22\\x60\\x55\\x29\\xd4\\x0c\\xc8\\x18\\x70\\xca\\x50\\xcc\\xd5\\xb3\\x0c\\xf3\\x06\\xf3\\x1a\\xd7\\xf1\\x9d\\x76\\xa6\\xae\\xa6\\x2f\\xf6\\xca\\xda\\x89\\xed\\xfa\\x4a\\x87\\x09\\x3a\\x0b\\xec\\xe4\\xa3\\x35\\xfc\\x86\\x37\\x78\\x8e\\x81\\x87\\x44\\x2b\\x2e\\xb3\\x53\\x42\\x3e\\x04\\x0f\\x49\\x5b\\x34\\xa9\\x94\\xcf\\x57\\x59\\xc6\\xdf\\x8e\\x6b\\x51\\x03\\x1e\\x66\\x03\\x06\\x04\\x26\\x18\\x61\\x23\\xd6\\x59\\x30\\x63\\x66\\xc1\\xaf\\x0c\\x37\\x03\\xd7\\x44\\xca\\xd1\\x45\\xbd\\x9d\\x9a\\xd1\\xcc\\xe2\\x2c\\x2e\\x38\\xa5\\xf3\\x3f\\xa8\\xa0\\x11\\x52\\x48\\xaa\\x65\\xd8\\xa9\\x65\\xb2\\xd7\\xd9\\x1e\\x3d\\xfb\\x5b\\xf1\\x20\\x5a\\xc3\\xe3\\x39\\x83\\x76\\xd8\\x32\\x4c\\x0d\\xba\\xc1\\x1a\\x3a\\x11\\x0c\\x38\\x33\\xb3\\x69\\xa7\\x4a\\x3d\\x04\\xde\\xa5\\xa2\\x41\\xd7\\x3a\\x22\\x54\\xfa\\xa2\\x37\\xb6\\xcc\\xb1\\x48\\xdf\\xd5\\x19\\x3d\\x2c\\x77\\xc3\\x78\\x70\\x6e\\x99\\xee\\x26\\x1a\\x29\\x95\\x47\\x46\\x16\\x6a\\x82\\xe5\\x15\\x5a\\xd6\\xc4\\x84\\x4a\\xe1\\xa9\\x95\\x8a\\x13\\x13\\x58\\x20\\xdc\\x92\\x16\\xa7\\xcd\\xcc\\xf9\\x9c\\x55\\x16\\x5b\\x93\\xe5\\x45\\x36\\xc5\\x28\\xa3\\x66\\xc3\\xc2\\x0c\\x61\\xf3\\xe9\\x65\\x39\\x8d\\x7c\\xda\\xf2\\x8a\\xa4\\x35\\x65\\x95\\x33\\xc6\\x0a\\x65\\x16\\xa1\\xd1\\x51\\xfc\\x2b\\x7d\\x9c\\xab\\x5d\\x1a\\x02\\x29\\x8c\\x94\\x35\\x57\\xc3\\x8c\\x79\\x39\\x0d\\xaf\\xa5\\xf3\\xd1\\x34\\x96\\x34\\xaa\\xc7\\x41\\xb1\\x32\\x9b\\xd0\\x7d\\xed\\x5e\\xaa\\x91\\x3b\\x89\\x09\\x89\\xe1\\x66\\x97\\xab\\x79\\x58\\x21\\x1a\\xee\\x40\\x6f\\x4f\\xc7\\x97\\x6e\\xe9\\xec\\x7f\\xce\\xed\\x77\\x2b\\x05\\xc5\\xed\\x77\\x9f\\xc7\\x26\\x3b\\xfa\\x50\\x8a\\xaf\\xa9\\xae\\xf9\\x97\\xa7\\x71\\x37\\x4e\\xda\\x42\\x9e\\x11\\xd2\\x7c\\x1f\\x72\\x74\\x72\\x26\\x2d\\x68\\x28\\x5d\\xd7\\xd1\\xe3\\x48\\x2c\\x5e\\x68\\xc3\\x64\\xe0\\x9a\\x88\\x92\\xbc\\x1f\\x73\\xca\\x86\\xee\\xce\\xc5\\x16\\x6b\\xe9\\xb5\\xc0\\x35\\x67\\x5c\\x7b\\x3f\\x94\\x7f\\x3a\\xd8\\x90\\xcb\\xcd\\xfa\\xaa\\x23\\x54\\x32\\x97\\x0d\\x84\\x54\\x3a\\x9a\\x10\\xf4\\xc4\\x20\\x9e\\x66\\x02\\x2d\\x45\\x41\\x17\\xd4\\x39\\xc9\\xdf\\xe1\\x63\\xeb\\x4b\\xef\\xfe\\xfc\\xa2\\x3b\\xeb\\xeb\\xf7\\xd5\\x37\\x35\\xd6\\xef\\xaf\\xaf\\xbf\\x2c\\x11\\x52\\x55\\x6c\\xe8\\x6b\\x23\\x16\\x6e\\x63\\xac\\xb1\\x67\\xd7\\x86\\x7a\\xbf\\x7d\\x5f\\x7d\\xfd\\x3e\\xbb\\xbf\\xfe\\xb2\\x44\\xb0\\x9c\\x8f\\xbd\\x04\\x1f\\xc7\\x97\\xf4\\xa8\\x1f\\x7d\\xbd\\x42\\x6a\\x8d\\x08\\x56\\x0f\\x23\\xa4\\x83\\xa6\\x3d\\x38\\x10\\x58\\x10\\xed\\x93\\x87\\xdb\\x56\\xa3\\x64\\xfe\\xfe\\xc2\\x66\\x69\\x35\\x1e\\x2e\\xbd\\x1a\\x18\\x08\\x0f\\xcb\\x1d\\xa9\\xd5\\x5f\\x73\\x34\\xbd\\x30\\xdc\\x92\\xba\\xb6\\xaa\\x57\\xd0\\xf5\\x05\\x69\\x9c\\x89\\x3b\\xd1\\x87\\x09\\x37\\x5d\\xb1\\x8e\\x89\\xb0\\x91\\x9f\\xef\\x4a\\xb0\\xe2\\xbe\\xf9\\xdc\\x2d\\xad\\xf3\\xf7\\xd1\\x66\\xc3\\xad\\x0b\\x4a\\x45\\x45\\x51\\x54\\x62\\x6f\\xcd\\x1e\\x6b\\x17\\x78\\xf5\\xf5\\x6c\\x85\\x32\\x5f\\x23\\x18\\x94\\xa6\\xc4\\x38\\x55\\x2c\\x16\\xab\\x58\\xa8\\x66\\x8a\\x53\\x94\\xfa\\x35\\x8a\\x40\\x05\\x75\\x5c\\xcf\\xb1\\xfa\\x57\\x94\\x49\\x38\\x55\\x94\\x63\\x08\\xa2\\x57\\xcb\\xcc\\x17\\x4b\\x9a\\xaa\\xa2\\x56\\x2e\\x94\\x90\\x60\\x41\\x55\\xb3\\xa4\\xd0\\xf2\\xda\\x9c\\x79\\x9a\\x27\\x4e\\x68\\x8d\\xb2\\xaf\\x34\\x5f\\xcc\\x2f\\x5e\\xd3\\x47\\x36\\xcc\\x2b\\x79\\x45\\xc9\\xd3\\xf1\\x0c\\xc3\\x30\\x16\\xf1\\x39\\xa3\\x7e\\x56\\x8f\\xd4\\xa1\\x39\\x93\\x11\\x36\\xc2\\xb3\\x34\\xa7\\x87\\x4f\\x73\\xc5\\x4a\\xc2\\x24\\x4c\\x83\\x2a\\xaf\\x1b\\x96\\xe5\\xe1\\x75\\x53\\xa2\\xa8\\x89\\x22\\x8a\\xe2\\xc4\\xba\\x75\\x13\\xeb\\xd6\\xd1\\xfe\\xc8\\xb0\\x15\\x0b\\x78\\xc4\\x28\\xcf\\xc8\\xd5\\xaa\\xa5\\xd4\\xce\\x59\\x39\\xcc\\xe5\\xdc\\x67\\x9a\\xc5\\x6e\\x6c\\x87\\xa8\\x8b\\xb1\\xf6\\x1f\\x73\\xa4\\x2a\\x4d\\x14\\x65\\x7a\\x8e\\x6e\\x57\\x9b\\xcb\\xd5\\x76\\x19\\xdd\\x57\\x6c\\xe1\\x42\\xc5\\x16\\x66\\x21\\x40\\xac\\xa5\\xda\\xbe\\x30\\x95\\xd5\\x50\\x05\\x99\\xaf\\x4a\\x1e\\xaa\\x25\\xd5\\xd6\\x5d\\x1c\\x55\\x04\\x41\\x89\\x39\\x89\\x71\\xac\\x88\\x2c\\x5b\\xe9\\x64\\xc6\\xeb\\xe9\\xf6\\x7a\\xba\\x15\\xc5\\x9b\\x29\\x78\\x33\\xde\\x7a\\x6f\\xbd\\x1e\\xff\\xa9\\xfb\\xa8\\x43\\x35\\xf6\\x32\\xb5\\xc9\\x64\\xfe\\xb4\\x95\\x2e\\x34\\x25\\xdf\\x68\\x97\\xec\\x8d\\x45\\xb6\\xb2\\x98\\x2e\\xd8\\x1b\\x31\\x9f\\x2f\\x10\\x23\\x6c\\x4a\\x65\\xc9\\x25\\xb5\\xba\\x4e\\x67\\x16\\x72\\x98\\xc3\\xac\\x91\\xbb\\x4c\\xe3\\xf1\\x19\\x5e\\xff\\x42\\x49\\x54\\x34\\x71\\x4a\\x52\\x34\\x29\\x97\\xd1\\xb4\\x0c\\xd9\\x0c\\x3f\\x6c\\xd6\\x88\\x67\\x71\\xe8\\x9a\\x02\\xd5\\x48\\x22\\x2c\\xef\\xe4\\x9d\\xbc\\x52\\x50\\x14\\x05\\xd9\\x51\\x25\\x8b\\xa0\\x28\\xb9\\x5c\\x5e\\x99\\xd6\\x7f\\x02\\xc4\\x4c\\xdf\\xd3\\xe1\\x47\\xb0\\xb0\\x1c\\xaf\\x45\\xd5\\x48\\x37\\x8d\\xd9\\xd2\\x4a\\x79\\x14\\x47\\x33\\xa3\\xa3\\x19\\xa2\\xed\\x29\\x8a\\x32\\x0d\\x8a\\x52\\xcd\\xe5\\xd5\\xd7\\xe9\\x65\\x01\\xa2\\x8c\\x1c\\x91\\x23\\xb2\\x50\\x0e\\xd7\\xd4\\x95\\x22\\x2c\\xd0\\x35\\x91\\xf3\\xc4\\xc2\\xcd\\xd3\\x1f\\x4f\\x50\\x15\\x51\\xc9\\x10\\xf3\\x78\\x6a\\x6a\\x8a\\xd2\\xb8\\xee\\x97\\xa3\\x65\\xa4\\x09\\xbe\\x08\\x4b\\x71\\x66\\x19\\x79\\x82\\x7b\\x99\\x8c\\xa8\\x97\\x21\\x4a\\x52\\x4e\\x54\\x54\\xb5\\xa6\\x8c\\x72\\xae\\x37\\xcd\\x6f\\x23\\x65\\xa4\\x6a\\xad\\xe3\\x04\\xeb\\xa1\\x7e\\xd7\\x9f\\x8d\\x0e\\xcb\\xdd\\x83\\xdd\\x72\\x56\\x52\\x87\\xe5\\x7c\\x3e\\x24\\x49\\xa1\\x7c\\x5e\\xd6\\xe9\\x46\\x2d\\xd3\\x0d\\xb2\\x3c\\xc7\\x24\\xd8\\x08\\xc1\\x16\\xd4\\x72\\xa3\\xa3\\xb9\\x69\\xb8\\xe3\\x0e\\xcc\\x2b\\xd9\\xac\\x22\\x69\\x46\\x6c\\xcf\\x4c\\xda\\x0d\\xcc\\x5c\\x27\\xeb\\x34\\xe7\\xbf\\x91\\xad\\x06\\xd5\\x20\\xea\\x5c\\x26\\x33\\x31\\x31\\x36\\x56\\x0e\\x9a\\x3f\\x6d\\xbd\\xa5\\x4f\\xcf\\x65\\x16\\x6a\\xa7\\x14\\x6a\\x73\\x99\\xcb\\x2b\\x37\\xcc\\xc8\\x65\\xae\\x2c\\xdc\\x50\\x03\\x67\\x7d\\x6d\\x17\\xba\\x5e\\x67\\xc5\\xe3\\x99\\x4c\\x21\\xbb\\x7f\\x7f\\x2e\\xaf\\x19\\xfe\\x4e\\x1f\\x2a\\xfb\\xc2\\x9a\\xb1\\x9a\\x34\\x9d\\x78\\xb0\\xce\\x8a\\xd1\\x69\\x87\\x28\\x40\\x67\\x47\\x4c\\x48\\xd8\\x62\\xc6\\xfa\\x04\\xde\\xf2\\x3a\\x05\\xb3\\xe3\\x76\\xa2\\xeb\\x16\\x35\\xfd\\xaa\\xe9\\x61\\x4a\\xce\\x9f\\xa7\\xfb\\xef\\xd6\\x44\\xf1\\xdc\\x31\\x2f\\x12\\xd9\\x56\\x43\\xf1\\xff\\x34\\x23\\x9a\\xa7\\x1c\\xe7\\x36\\x05\\x66\\xaa\\x0d\\xd1\\xe8\\x63\\x77\\x82\\x4d\\xcc\\x0e\\x59\\x27\\x2a\\x0e\\xd1\\xc9\\x31\\x57\\x9a\\x38\\x25\\xb1\\xd5\\xe4\\x0f\\x56\\x1a\\xf7\\x66\\xb3\\xa7\\x4e\\xa1\\x36\\x03\\xda\\x92\\x54\\xc8\\x66\\xff\\x23\\xe3\\x90\\xcb\\x38\\x63\\x01\\x0f\\x40\\x9a\\x89\\x08\\x0c\\x57\\x83\\x24\\x84\\x4d\\x3c\\xb7\\x0e\\xc5\\xad\\xeb\\x66\\x64\\xa9\\x4c\\x6e\\xd5\\xb6\\xca\\xe5\\x13\\xbf\\xf3\\xdf\\xb3\\x5e\\x4a\\x6d\\x2e\\xfb\\xcc\\x15\\x40\\x8a\\xb5\\xab\\x7e\\xe4\\x6b\\x16\\xfb\\x80\\xbf\\x47\\x1c\\x7f\\x96\\xae\\x03\\x93\\xa7\\xb9\\x65\\xb0\\x14\\xe9\\x0a\\x0c\\x42\\x84\\x8d\\x64\\x73\\x39\\x55\\xa3\\x36\\x51\\x71\\x6c\\x4c\\xd3\\x26\\x24\\xca\\x53\\x0b\\x98\\x47\\x45\\x5f\\x71\\x9f\\x2e\\x8d\\x1e\\x41\\x4d\\x2a\\x8d\\x4b\\x08\\xf4\\xd7\\x58\\xaa\\x6b\\x0c\\x15\\x20\\x04\\x03\\x00\\x69\\x4f\\x22\\x2e\\x27\\x63\\x42\\x47\\x2f\\x4a\\x84\\x56\\x78\\x8f\\xbe\\x44\\xa3\\xb1\\xbc\\xa3\\x9c\\x4e\\xf2\\x1d\\x8c\\xfe\\x7b\\x26\\x7c\\x32\\x26\\x13\\xdd\\x81\\x2e\\xe8\\xc8\\xbe\\x3a\\xd8\\xdf\\xe4\\x44\\xab\\xc5\\xf4\\x73\\xd4\\x36\\x99\\x91\\x59\\xc1\\xfa\\x5a\\x1c\\x9d\\x1e\\xe1\\xa9\\x44\\x67\\x83\\xb9\\xa5\\xa5\\x79\\xbb\\xa5\\x2e\\xdc\\xd1\\x2f\\x07\\x43\\x27\\x53\\x9d\\x2d\\xcd\\x75\\x26\\x93\\x24\\xa1\\x15\\x9d\\xae\\x25\\x6e\\x9b\\x99\\x71\\xb4\\xc7\\x0f\\xf4\\x78\\x6d\\x75\\x8e\\x86\\x7a\\x2b\\x9a\\xb1\\x89\\x8b\\xfa\\x5b\\x03\\x6d\\xf3\\xa0\\x66\\xad\\x50\\x3d\\x2e\\x93\\xf2\\xa2\\xa8\\x1e\\x01\\xaa\\x67\\x1f\\x82\\xaa\\x2a\\x62\\x56\\xca\\x67\\x32\\xc5\\x62\\x35\\xe7\\x32\\x4f\\xf1\\xbb\\xde\\xd0\\xd0\\xca\\x6f\\x98\\x69\\x16\\x9e\\x5c\\xf3\\xe2\\x28\\xd9\\x21\\x2b\\x8e\\xab\\x6a\\x26\\x53\\x9a\\x20\\xfb\\xd3\\xeb\\xa4\\x5a\\x68\\xcd\\xab\\x19\\xfa\\x52\\x41\\xd2\\x6a\\xeb\\x54\\x68\\xcc\\xb6\\xb1\\xaa\\x9b\\x81\\xf3\\xac\\x90\\x36\\x94\\x4d\\x7d\\x69\\x7b\\xea\\xd6\\xc8\\x12\\xa6\\x2b\\x29\\xca\\x7c\\x4a\\x51\\xef\\x92\\x02\\x35\\x64\\xe3\\x43\\x71\\x49\\x51\\x24\\x7f\\x87\\x9f\\xc8\\xc8\\xd2\\x84\\xa8\\xcf\\x05\\x6e\\x01\\x05\\xbf\\x8d\\x05\\xf0\\x40\\xc7\\x8c\\x5f\\x04\\xa1\\x0e\\xc4\\xb4\\x10\\x93\\xf5\\x35\\x00\\x2a\\x2e\\xc4\\x2b\\x31\\x1d\\xe8\\x73\\x47\\x94\\x48\\xb7\\xa9\\xcf\\xb2\\x38\\xda\\x3c\\xbc\\x69\\xed\\xb3\\xee\\xe6\\x50\\xb3\\x4b\\x09\\xf3\\xd8\\x67\\xc2\\x6f\\x97\\x5e\\x0d\\xcc\\x77\\x32\\xba\\xf7\\xd0\\xb3\\xce\\xb7\\x68\\x6d\\xc4\\x16\\x62\\xac\\xba\\xfb\\x90\\xf6\\x5b\\xc7\\x17\\xfa\\x1b\\x0d\\x44\\x72\\xc9\\x6c\\x44\\xef\\xb4\\xee\\x73\\x23\\x36\\x69\\x79\\xbe\\x5a\\xd7\\xfb\\x5c\\x10\\x84\\x0e\\x88\\xc1\\x42\\x80\\x74\\x42\\xe0\\x78\\x86\\x86\\x1a\\xa7\\x13\\x44\\xd8\\xf1\\x44\\xf5\\xaa\\x24\\x81\\x31\\x32\\xcf\\x3a\\xd9\\x84\\x6c\\xa5\\xc1\\x9f\\xba\\xff\\x44\\x36\\x2c\\xd6\\xe3\\x03\\x6d\\xd1\\x61\\x07\\xbf\\x36\\xb8\\xa6\\x63\\xab\\xe1\\x6d\\x98\\xa0\\x56\\x35\\x6a\\x92\\xa4\\x4d\\xe8\\xbb\\x0f\\xce\\xba\\x54\\x2c\\x14\\x4e\\x51\\x8f\\x8e\\x44\\xee\\x4f\\x10\\xbb\\x8a\\x3c\\xa1\\x4e\\x94\\x1f\\x03\\x0b\\x0c\\x83\\x84\\xcf\\x55\\x78\\x3e\\x5d\\xdd\\x9b\\x63\\xa2\\x69\\x8e\\x49\\x1b\\xd6\\x12\\x01\\x21\\x8e\\xf6\\x04\\x7b\\x4a\\x3f\\x09\\xf6\\x04\\xaf\\x12\\x45\\x22\\xc3\\x35\\xdc\\xdb\\x13\\xec\\xed\\x0d\\xf6\\x84\\x34\\xa5\\x90\\xcd\\x2a\\xa3\\xa3\\x3a\\x8d\\xbf\\x86\\x45\\x94\\x69\\x8c\\x97\\x9e\\x85\\x27\\xf0\\x36\\xb2\\x19\\x99\\xc7\\x5c\\x22\\x45\\x36\\x3c\\xe2\\x0d\\x85\\xbc\\x9d\\x4d\\x83\\x4d\\x6b\\x9a\\x06\\x9b\\x3a\\x6b\\x4f\\x50\\x0e\\x75\\x87\\xc2\\xe1\\x70\\xd8\\xf8\\x2a\\xe3\\x74\\x2d\\x9c\\x09\\x38\\x22\\x6c\\x44\\x9d\\x98\\x20\\x90\\x9e\\xa2\\x86\\x9a\\x09\\x64\\xc8\\xe2\\x6b\\x65\\xfd\\xa3\\xbc\\x92\\xa6\\x60\\xe8\\x1f\\xf8\\x9a\\xa2\\x28\\x13\\xe8\\xcd\\x2a\\x59\\x24\\xfa\\x87\\x92\\x35\\x14\\x90\\xea\\x7c\\x51\\x07\\x88\\x7a\\x94\\x1d\\xf5\\x32\\x93\\xb6\\xc6\\x04\\x99\\xa7\\x41\\x41\\xd4\\xf6\\x21\\x7d\\xf1\\x72\\x6c\\xa2\\xf2\\xc3\\x1a\\xc1\\x15\\xe7\\x0e\\x04\\x5a\\x7b\\x4c\\xa2\\x69\\xd1\\x82\\xf6\\xe8\\x39\\x0b\\xb8\\x36\\xd9\\x22\\x9a\\x57\\x2c\\xd8\\x4f\\xc5\\xca\\x0d\\x4d\\xa9\\x25\\x5c\\x73\\xc0\\xe1\\xe9\\x5a\\xe0\\x10\\x45\\x1b\\x1f\\x18\\xf0\\x36\\x45\\x9a\\x58\\x72\\x56\\xfe\\x95\\x0f\\xac\\xc4\\x9e\\x33\\xba\\x65\\x44\\x5a\\x9a\\x45\\x71\\x9f\\xb2\\x0f\\xcb\\x0a\\x12\\x81\\xa9\\x46\\xe5\\x43\\xd4\\x88\\xe0\\xd5\\x69\\xa5\\x22\\x0b\\x3c\\x8b\\x50\\x97\\x14\\x7a\\x5c\\x2f\\xcb\\x77\\x48\\x2b\\xfb\\x27\\x09\\xd1\\x3c\\xe7\\x0d\\x87\\xbd\\x47\\x1e\\xb1\\xdb\\xbf\\x4f\\x48\\x67\\x32\\xd4\\xdd\\x1d\\x7a\\xed\\xb5\\xfe\\x97\\xcb\\xce\\x79\\x89\\xf5\\x75\\xf8\\xbb\\x07\\x25\\x89\\xd6\\xa3\\xc7\\x0d\\xb9\\x68\\x66\\x84\\xa1\\x3e\\x12\\xa3\\x6a\\x10\\x13\\x71\\x2f\\x7e\\x75\\xde\\xc2\\xa5\\xdd\\xa5\\x29\\x79\\x78\\xf9\\x7c\\x76\\xa4\\x67\\xe1\\xd9\\x28\\x9a\\x97\\x88\\xdd\\x4b\\x87\\xe5\\xfe\\xb5\\x56\\x61\\xfe\\xda\\x99\\xf3\\x6e\\x2e\\x1a\\xb1\\xa6\\xb7\\x29\\xa9\\x27\\x95\\x90\\xa6\\x55\\xe1\\xb6\\x95\\xce\\xe0\\xc6\\xf9\\x60\\x0f\\x63\\xf6\\xc7\\x62\\x7e\\xb3\\xfe\\xe3\\x24\\xa1\\xee\\x10\\x9f\\x88\\xb6\\x61\\x2c\\x19\\xab\\xf9\\x8d\\x92\\x6a\\xce\\xab\\x15\\x5a\\xf5\\x08\\x70\\x81\\x89\\x9e\\xde\\xc6\\xe2\\x5d\\xc1\\xcb\\xbb\\x83\\xe8\\x9a\\xd5\\xd2\\xdc\\x5d\\xc1\\xcb\\xba\\x83\\xeb\\x66\\x36\\xb7\\x5a\\xa6\\x8d\\xe6\\x13\\x51\\xe2\\xe2\\xd2\\x73\\x74\\x3c\\xab\\x64\\x94\\xec\\xec\\xde\\x4f\\xa9\\x6a\\x76\\x7c\\x36\\x00\\xca\\xf3\\x48\\x79\\xea\\x25\\x95\\x00\\xdc\\x46\\xa0\\x35\\xa6\\x8d\\x75\\x73\\x92\\xa9\\xb4\\xb5\\x1a\\x5b\\x26\\x61\\xcd\\xd2\\x23\\xdf\\x8c\\x92\\xf1\\x7a\\xa3\\xf4\\x41\\x00\\x77\\x06\\xa4\\xbf\\xc8\\xc3\\x6b\\x12\\xd8\\x31\\x6f\\x61\\x4f\\x28\\x12\\xf3\\x87\\x57\\xf6\\x87\\xb8\\xb0\\xd0\\xb7\\xf0\\x6c\\x94\\x12\\x43\\x71\\x6c\\x09\\x94\\x1e\\x0c\\x88\\xc3\\x72\\x72\\x9d\\x49\\x32\\x2f\\x11\\xd3\\xe1\\x90\\x2b\\xe6\\x8f\\x35\\xf4\\xaf\\x6c\\x0a\\xf9\\xd6\\xd6\\xc2\\x4b\\x9f\\x11\\x36\\xb4\\x08\\x7d\\x20\\x68\\x93\\x12\\x73\\x40\\x0f\\x73\\x64\\x20\\xfe\\x3f\\xe6\\xfe\\x06\\xbe\\x91\\xe3\\xbe\\x0f\\xc6\\x67\\x00\\x02\\x4b\\x10\\x20\\xc1\\x05\\xb0\\xbb\\x04\\x48\\xe2\\x6d\\x89\\x5d\\x72\\x87\\x2f\\x77\\x5c\\x2c\\xf6\\xee\\x78\\x47\\xee\\x9d\\xee\\x4d\\xc7\\x7b\\x93\\x4e\\x8b\\xa3\\xce\\x72\\x4c\\x9d\\xee\\x6c\\x8b\\x70\\xac\\x3b\\x47\\xb2\\x64\\xd9\\xb2\\x37\\xae\\x1d\\x45\\xb2\\xe3\\xc6\\x91\\xc1\\x24\\x4e\\x6d\\x9f\\x95\\xc6\\xb1\\x09\\x3b\\xf1\\x3f\\x8d\\xec\\xb6\\x4e\\x6c\\xd4\\x4d\\x93\\xda\\x8a\\x93\\xda\\x35\\xf8\\x6f\\x9a\\x26\\x55\\xd3\\xe6\\xed\\xf8\\x24\\xce\\xa7\\x9f\\x38\\xcd\\xe3\\xa6\\xb8\\xe7\\x33\\xbf\\xd9\\x05\\x16\\x20\\x4f\\x76\\x5b\\xd7\\xcd\\x1d\\xb8\\x58\\x2c\\x16\\x33\\xb3\\xb3\\xb3\\x33\\xbf\\xd7\\xef\\x37\\x7f\\x7c\\xff\\xf4\\x72\\x34\\x4e\\xdb\\x82\\x27\\xfb\\x2e\\xda\\x51\\xca\\xb4\\x92\\x7d\\x25\\xfd\\xe4\\x62\\xff\\xc5\\xf7\\xf7\\xa7\\xae\\x72\\xba\\xa0\\xef\\xd5\\x9f\\x84\\x4a\\xb1\\xd5\\xb7\\xf4\\x77\\xe8\\xc6\\x46\\xb5\\xbe\\xab\\x4c\\xb6\\x6e\\xef\\x5e\\xc7\\x58\\x08\\x83\\x46\\x57\\x6f\\x87\\xec\\xd4\\xeb\\x00\\xb5\\xbe\\xd7\\xf9\\x26\\x73\\x11\\xc2\\xf9\\xb6\\x4d\\xcf\\x27\\x55\\xa7\\x5e\\x77\\x7c\\xfc\\x4d\\x74\\xbd\\x93\\x7c\\x69\\x04\\x2c\\xc5\\x9c\\xf8\\xd3\\xa7\\x1a\\x04\\x12\\xe5\\xbd\\xc4\\xa9\\x80\\xcf\\xf7\\x29\\x74\\x70\\x00\\xfd\\xbf\\x5f\\xc2\\x12\\xb0\\xa6\\xf8\\xe1\\xf4\\x89\\xd3\\x6a\\x61\\xe4\\x2b\\x88\\x78\\x7e\\x72\\xbb\\xa3\\x33\\x15\\xf6\\xc4\\x31\\xeb\\x2f\\xb9\\xbe\\x54\\x5e\\x62\\x20\\x5b\\x96\\xbf\\xfc\\xba\\x98\\x94\\xa4\\xa4\\xd8\\xc8\\x14\\xd3\\xe9\\xe2\\x95\\xbe\\x8a\\xba\\x6d\\x8e\\x32\\x6e\\xb1\\x9e\\xdc\\xe5\\x5d\\x35\\x00\\x1e\\x69\\xb5\\x8b\\x6d\\xe9\\x90\\x16\\x83\\x16\\x6e\\xb8\\x59\\xe3\\x18\\x25\\xd2\\xc4\\x8d\\x0f\\x61\\xf1\\x07\\xb4\\xfd\\x29\\x88\\x05\\xf4\\xb2\\xb0\\xfd\\xef\\x3d\\x80\\xfa\\x2c\\xe4\\x51\\x78\\xf8\\x79\\x72\\xf3\\xc2\\xf2\\x1a\\x59\\x99\\xcd\\x28\\x16\\x86\\x48\\x87\\x7a\\xbd\\x4d\\x45\\x64\\x4c\\x9e\\x7f\\xf8\\xe2\\x0d\\x72\\x79\\x79\\x76\\x85\\x28\\x19\\xec\\x72\\xdd\\x11\\xac\\x59\\x16\\x9f\\x81\\xe8\\x4f\\x56\\x27\\x9d\\x67\\x0a\\x68\\x06\\xcd\\xf7\\x21\\xf6\\xb3\\x0a\\x38\\xb7\\x01\\x25\\x41\\x9e\\xc7\\xaa\\xc1\\xf5\\xb4\\xa7\\xe9\\xab\\x8e\\x40\\x4b\\xb0\\xf3\\x54\\xea\\x75\\x2b\\xd5\\x4e\\x83\\x9a\\x3d\\xb5\\xd6\\x69\\x8b\\x6a\\xdb\\x2b\\xeb\\x29\\x79\\xd3\\x6d\\x57\\xef\\xdc\\x14\\x64\\xfe\\xef\\x82\\xc1\\xef\\x91\\x8b\\x6f\\xe3\\xaa\\xdd\\x46\\xb6\\x27\\xe1\\xa6\\xb1\\xd3\\x6a\\xdd\\x41\\xc4\\x1b\\x57\\x2d\\x37\\xb7\\x8f\\x71\\x10\\xd0\\x75\\x38\\xdd\\x83\\x2f\\x49\\x30\\xb8\\x7e\\xe4\\x5d\\x28\\x93\\x75\\x6d\\x4b\\x63\\x38\\x0e\\x2c\\x94\\x88\\x6a\\x4e\\x96\\x20\\x58\\x1d\\xf2\\x2b\\x7f\\x99\\xe3\\x3d\\xd1\\x21\\x04\\xb2\\x11\\xa8\\x3c\\x71\\xf7\\x52\\x41\\xe9\\xf5\\x60\\xa1\\x88\\xa6\\x91\\x4e\\xb9\\xe1\\x1e\\x0c\\x4b\\x66\\x7b\\x5c\\x70\\xb3\\x55\\x75\\x81\\x41\\x71\\xeb\\x82\\x1c\\xe2\\x0b\\x7c\\xa9\\x0b\\x61\\xd9\\xab\\x6c\\x4c\\x62\\x9d\\x8a\\x94\\x4e\\xad\\xe6\\xc0\\x96\\x61\\x4e\\x82\\x6f\\x20\\xc3\\xbb\\xea\\x00\\xe1\\x33\\x1a\\x16\\x9c\\xed\\x5a\\xcd\\xb2\\xaa\\x1a\\x48\\xea\\x80\\x5c\\xd9\\xd5\\x47\\x34\\x14\\x44\\x8e\\xeb\\xa3\\x0e\\x7a\\x0c\\x56\\xbb\\x42\\xe2\\x75\\x10\\x24\\xed\\x2d\\x00\\x29\\x63\\x9b\\x66\\xab\\x45\\x2f\\xad\\x5b\\x51\\x5b\\x23\\x04\\x7d\\x9f\\x39\\x10\\xbd\\xdc\\xc4\\x1d\\x7a\\x47\\x13\\x5e\\x3c\\x81\\xa1\\x7b\\x11\\x06\\x2c\\x62\\xae\\xfc\\xd9\\x5b\\x37\\x94\\x8c\\x65\\x5f\\x7e\\xc7\\x65\\xdb\\xca\\x28\\x78\\xe7\\xe6\\x85\\xcd\\x8c\\xd2\\x20\\xcb\\x97\\x2f\\x2f\\x93\\x86\\x92\\xd9\\xbc\\xe0\\x61\\x24\\xb0\\x3c\\xf2\\xc9\\xde\\xb2\\xe4\\xbd\\xcb\\x73\\xea\\xb6\\xbf\\xc4\\xed\\x8c\\x42\\x84\\xfe\\x32\\x63\\x1d\\x5c\\xeb\\xbd\\x6d\\xfe\\x4b\\xbb\\x3d\\xe1\\xfe\\x7d\\x53\\xd0\\x0d\\x55\\xd0\\x0d\\xc9\\x7d\\x37\\xfb\\x22\\xe3\\x70\\x5d\\xd3\\x34\\x91\\xde\\xd1\\x2d\\xba\\xb5\\xdc\\x4f\\x9b\\x7e\\x86\\x1b\\x38\\xcc\\x5e\\x55\\x42\\x36\\xd9\\x59\\xbe\\x83\\x96\\x3f\\x42\\x0e\\x23\\x07\\x7d\\x01\\x3b\\xf8\\x41\\xe0\\x70\\x91\\x4c\\x89\\x53\\x3f\\x7a\\xf5\\x6a\\xd6\\x71\\xf0\\x83\\xf0\\xc6\\xfa\\xa9\\x81\\xde\\x87\\xef\\xc5\\xef\\xa3\\xe7\\x94\\x20\\xd6\\x1a\\xdf\\x9b\\x75\\x9c\\xec\\xd5\\x4f\\xc1\\x96\\x9d\\xf3\\x79\\xf4\\x5e\\x6c\\xe3\\xf7\\xd2\\x73\\x56\\x30\\x3d\\xe7\\xf3\\x50\\xc0\\xcf\\xb3\\x62\\x68\\x3d\\x9f\\xc7\\x0e\\xb6\\x21\\xcf\\x50\\x85\\x7a\\xe0\\xc7\\x9f\\x67\\x45\\x74\\xb9\\x70\\x06\\x21\\x67\\x4b\\x62\\xd5\\x34\\xdb\\xdf\\x38\\x4b\\x4f\\x38\\x8b\\x05\\xed\\x1c\\xdd\\x39\\xe7\\xe3\\x5a\\x7a\\x0e\\x7c\\x52\\xa0\\x23\\xa8\\x70\\xba\\x83\\x91\\x43\\x6b\\xcb\\x3a\\x84\\x7c\\x0d\\x76\\xd0\\xb0\\x8b\\x37\\xd3\\xec\\xe0\\x8c\\x7b\\xb9\\x5b\\x54\\x63\\xd0\\xd0\\x3c\\x5a\\x46\\xa8\\xa4\\xea\\xe6\\xff\\xce\\x4d\\x41\\xf6\\x96\\xf5\\xdd\\xee\\x8b\\x50\\xbd\\xed\\x59\\x71\\x98\\x2b\\xae\\xee\\xfa\\x8e\\xbb\\x07\\x2d\\xdf\\xec\\xc5\\x64\\x54\\xda\\x1f\\x43\\x4c\\x6f\\x66\\x1d\\x52\\xc0\\x75\\xd2\\xfe\\x35\\xd6\\x13\\x38\\x8d\\x6b\\x8e\\xd7\\x29\\x0c\\xa7\\x88\\x71\\xb3\\xc5\\x80\\x7f\\x4a\\x86\\x4e\\x36\\x0b\\x46\\x01\\x37\\x34\\xed\\x57\\xe1\\xbc\\xf6\\xd7\\xf1\\x02\\x76\\xee\\xa0\\x3f\\x82\\x4f\\x9a\\x0f\\xbb\\xaf\\xf9\\xbf\\xc4\\x61\\x89\\x3a\\x9c\\x92\\xcb\\xcb\\xbd\\x1c\\x96\\xdf\\xcf\\x79\\xdc\\x8b\\xc1\\x6f\\x76\\xf9\\xf8\\x18\\x0a\\x6b\\x01\\x4a\\xe4\\x0b\\x54\\x36\\xd8\\xae\\x62\\x44\\xda\\x88\\x60\\x3a\\x0f\\x59\\x82\\x40\\x08\\xb6\\x7a\\x7e\\x4b\\x9f\\x46\\xb9\\x1b\\xdd\\x1c\\x84\\x16\\xb9\\x13\\x68\\x5f\\xab\\x18\\xa7\\xee\\x26\\xae\\xda\\x0c\\x6c\\xad\\xdb\\xbe\\x1a\\x60\\x23\\xe0\\xec\\xed\\xdb\\xed\\x1d\\xda\\x40\\x17\\x56\\xe2\\x76\\x0f\\x96\\x4c\\x93\\xad\\x37\\xdd\\x6b\\x36\\x7a\\x8b\\x97\\xfb\\xaf\\x9a\\xc7\\xf5\\x56\\xab\\xbd\\x43\\x88\\xd0\\x73\\xdd\\x7e\\x9b\\x64\\x27\\x2a\\x40\\x16\\x4a\\xde\\xdc\\xcf\\x32\\x01\\x58\\x36\\xc0\\x11\\xec\\x99\\xbf\\x3d\\xc3\\x99\\x01\\x06\\xb5\\x49\\xac\\x73\\x86\\x0b\\x8f\\x5a\\xdb\\x86\\x84\\x9f\\x34\\x0f\\xb6\\x4b\\x3e\\xdd\\xfb\\xa1\\xa1\\xd9\\x4e\\x7d\\x7b\\xdb\\xd9\\xe3\\x2b\\xf6\\xc1\\xd6\\x34\\x1b\\x26\\x04\\xcf\\xbe\\xf1\\xe7\\x68\\x00\\xc5\\x40\\xde\\x13\\xe4\\x72\\x25\\x68\\x14\\xc0\\x6f\\x94\\xcc\\x62\\x41\\xde\\xd9\\xbc\\x7c\\x19\\x57\\xaf\\xbf\\xff\\x7a\\x73\\xe5\\xf2\\x26\\xfe\\xf3\\x4f\\x1d\\x5d\\x6f\\xff\\x47\\xdb\\x3e\\x79\\xfd\\x3a\\x7e\\x6c\\x70\\xfd\\xa8\\xcb\\x71\\xea\\xc5\\xe5\\x42\\x36\\x4b\\x89\\x97\\xf9\\x3d\\x72\\xd6\\x74\\x7c\\xe3\\x95\\x9f\\xab\\xc2\\xc0\\xda\\x82\\xd1\\x85\\x49\\x9b\\xde\\x5e\\xdc\\x50\\x32\\x6d\\x38\\x82\\xab\\x19\\xc5\\x2b\\x8f\\xad\\x59\\xcc\\x7a\\xcb\\xcb\\x7c\\x27\\x0f\\xbc\\xbf\\x4c\\xbb\\x79\\x09\\x2c\\x93\\x6f\\xa5\\x6a\\x53\\x83\\x6e\\xa0\\x5c\\x9b\\xb9\\x23\\x3e\\x93\\x17\\xdb\\x9b\\x54\\xd1\\xc3\\x1b\\x62\\xfe\\x07\\x90\\x03\\x32\\x80\\x10\\x92\\x03\\x08\\xff\\x01\\x4a\\x20\\x01\\xe6\\x25\\x84\\xbd\\xd2\\x55\\x9d\\xa1\\xa8\\x43\\x05\\x18\\xa2\\x0b\\xa1\\x16\\x53\\x0d\\x15\\xd4\\x02\\xde\\xa1\\xb5\\x0c\\x58\\xf3\\x36\\xa1\\xf5\\xfc\\x71\\xfb\\x5b\\xf7\\x61\\x52\\x1c\\x5f\\x6c\\xff\\x18\\x19\\x52\\xf1\\x6f\\xb5\\xff\\x94\\xe0\\xe3\\xd8\\x86\\x2a\\xad\\xcd\\xc7\\xc8\\x83\\x91\\x58\\xe9\\x8f\\xf1\\xe9\\xfb\\xda\\xdf\\x2c\\x8e\\x2f\\x5a\\x3b\\xf1\\x98\\x7a\\x6c\\x2f\\xbf\\x55\\x0e\\xcd\\x30\\xde\\xde\\x1e\\xac\\xb6\\xbe\\xb4\\x60\\x5d\\x30\\x39\\x4f\\xd9\\x92\\x3a\\x3b\\xd8\\x22\\x79\\x2d\\x4f\\xb0\\xd0\\xb5\\x8b\\xb7\\xc8\\x7e\\x5e\\x28\\xe4\\x05\\x3e\\x3b\\x3d\\xb3\\x7f\\x66\\xff\\xbe\\x19\\x7e\\xee\\xc8\\xf2\\x9c\\x1b\\x6c\\x52\\xcb\\xf0\\x2c\\x05\\x87\\xcf\\xd8\\xf6\\x8f\\xf1\\x82\\xc0\\x67\\x87\\xa7\\xa6\\xf8\\xb9\\x39\\xe4\\xe3\\xab\\x66\\x6b\\x69\\xa6\\xdb\\xa2\\x52\\x16\\xf7\\x4c\\xc0\\x85\\x92\\x89\\xeb\\x2d\\xa2\\xe1\\xa5\\x68\\xbc\\x63\\x69\\x8d\\xb5\\xbf\\x19\\xaf\\xd3\\x3a\\x9e\\x0d\\x4a\\xc3\\x4f\\xb8\\x95\\xfc\\xf0\\xb4\\x0f\\xa7\\x75\\x07\\xa4\\x11\\xaa\\x9f\\x4b\\x42\\x2a\\xcc\\xcd\\xe3\\x23\\x58\\x12\\x96\\xb1\\x29\\x1b\\x9c\\x80\\x51\\xf3\\xcd\\xf7\\xdf\\xff\\xe6\\xe6\\xd2\\xfd\\x83\\xf5\\x3a\\xde\\xa9\\x3a\\x0f\\xbe\\x90\\x4a\\xbd\\xf0\\xa0\\x53\\xff\\x52\\xf2\\xd1\\x7b\\x7e\\xed\\xd8\\xd3\\xb4\\x7d\\x5c\\x5f\\xfc\\x31\\x5b\\xeb\\x4b\\xbd\\xcc\\x60\\xaa\\x8f\\x2b\\x0f\\x27\\x3d\\x81\\xcd\\x04\\x4d\\x18\\x8c\\x4c\\x84\\x6c\\x13\\x87\\x60\\x01\\x33\\x3b\\xbd\\xd3\\xe0\\xd3\\x4d\\xdb\\x26\\x9a\\xe6\\xd8\\xf0\\x0f\\x02\\x5e\\xac\\x4e\\x84\\x72\\xfa\\xfb\\x83\\xfd\\x37\\xe0\\xc3\\x6c\\x8d\\x33\\xce\\xb1\\xfe\\xac\\xb5\\x24\\x68\\xb6\\xf4\\x43\\x5f\\xce\\xa7\\xfe\\x27\\x30\\xfb\\xa7\\xd6\\x56\\x56\\xd6\\x56\\x80\\xfb\\x80\\xcf\\x64\\xae\\x74\\xf1\\xd9\\x18\\x0e\\xe5\\x7b\\x57\\xe8\\xf7\\x58\\x62\\xa0\\x37\\x5a\\x5f\\xce\\x43\\xa8\\x63\\x23\\x1d\\xec\\x72\\xfe\\x25\\x3d\\x66\\x30\\xd1\\x05\\x47\\xee\\x24\\xf5\\x7a\\x4d\\xe9\\x6f\\x89\\xd3\\x6a\\x25\\xd2\\xb7\\x80\\xd0\\x7a\\xf8\\xe4\\xe2\\xe2\\x49\\xfd\\x0d\\xc5\\x4c\\x3a\\xc1\\xa7\\x17\\x46\\x25\\x69\\xf4\\x9f\\x8c\\x8a\\xe2\\x28\\xae\\xb7\\xa9\\xba\\x89\\xed\\xcf\\xcd\\xe6\\xf3\\xb3\\xb9\\xfc\\xe2\\x49\\x5d\\x3f\\xf9\\x97\\xe9\\xa9\\xb1\\xb1\\xa9\\xe3\\xd2\\x68\\xfb\\x6b\\x70\\x8e\\x3e\\x2a\\xf5\\x70\\x79\\xb8\\xfd\\xda\\xc9\\xb9\\xea\\xe5\\x45\\x60\\xf9\\x61\\x6e\\x9c\\xb7\\x2f\\xb1\\xca\\x53\\x68\\xe9\\xf8\\x42\\x80\\xcd\\xd3\\x99\\xdb\\x0a\\xfe\\xb9\\xad\\x5b\\xda\\xcf\\xb5\\xbf\\xfa\\x9b\\xd5\\x06\\x9d\\xc5\\xee\\x20\\xba\\xad\\x61\\xbb\\xdd\\xa0\\xb3\\x5b\\x4b\\xc9\\xb4\\x61\\xd2\\xc3\\x0e\\x9d\\xdd\\x98\\x5e\\xeb\\x95\\x19\\xf5\\x34\\x8f\\xbe\\xf9\\xcd\\xdf\\xca\\xe6\\x0b\\x30\\xc1\\x7d\\x8e\\xce\\x6d\\xed\\x16\\xdd\\x42\\xd9\\x2c\\x25\\x04\\xff\\xbb\\x9c\\xd8\\xde\\xa0\\x07\\xf1\\xa6\\x98\\x73\\x73\\x12\\x76\\xf0\\x0e\\x0a\\xb9\\x0c\\x15\\x08\\x33\\x26\\x1f\\xb0\\x30\\x0a\\x60\\x75\\x74\\xc3\\xa9\\xd1\\x89\\xf5\\x93\\x3b\\xfb\\x4e\\x9c\\xd8\\x47\\xff\\x4e\\xac\\x9f\\xc4\\xc8\\xdd\\xd9\\xf1\\xbe\\xe8\\xc5\\xf5\\x97\\x7a\\xfa\\xb1\\x97\\x45\\xa3\\xd9\\x9f\\xb2\\x56\\xdf\\x3b\\x4b\\x2d\\x80\\x6c\\x84\\x70\\x03\\x72\\x26\\x92\\x08\\x25\\x18\\xbf\\x50\\x11\\x22\\x07\\x55\\xa5\\xbc\\x82\\x75\\x89\\x25\\x38\\xbe\\x72\\x54\\xd8\\x12\\x8e\\xd2\\x0d\\x36\\x20\\x09\\x72\\xfe\\x1f\\x97\\x9f\\x7e\\x7a\\xf1\\x93\\x8b\\x4f\\x3f\\xdd\\x8b\\x9b\\x3b\\xe6\\xf2\\xdc\\xa9\\x1c\\x38\\xd3\\x0d\\x37\\xfa\\x17\\x82\\x63\\x71\\xcd\\x06\\x9e\\xbe\\x6a\\x72\\x4c\\x29\\x2b\\x63\\xc9\\x46\\xed\\xe8\\x95\\x2b\\x47\\x6b\\xf6\\x71\\x2e\\x0f\\x39\\xbe\\x42\\x9e\\x3b\\xce\\x74\\x9a\\x26\\x6e\\xba\\xf6\\xd3\\x28\\x93\\x4a\\x5c\\xf7\\x86\\xa1\\x43\\xac\\x36\\xb6\\x6b\\x77\\x50\\xed\\x0e\\xda\\xd8\\xc0\\xf5\\x76\\xad\\xe9\\x45\\xb4\\x21\\xd0\\xb7\\xbb\\xe3\\x6c\\x1c\\xcd\\x78\\xac\\x3c\\xfd\\x6b\\x8a\\x37\\xfc\\x4d\\x01\\xe2\\xb3\\x65\\xf0\\x75\\x18\\xaa\\x8f\\x3f\\xaf\\x20\\xe0\\xa6\\xbd\\x31\\x38\\x32\\x32\\xe8\\x0c\\x0e\\x0f\\x0f\\x3e\\x09\\x37\\xfd\\x8c\\x28\\xda\\x82\\xe0\\xd2\\xe9\\x61\\xc7\\x69\\x34\\x5a\\xc3\\x83\\x2d\\x7a\\x52\\x6b\\x70\\xf8\\xab\\x30\\x02\\xae\\x2a\\xa9\\xf1\\x89\\x94\\xa2\\x24\\x27\\x27\\x92\\x8a\\x73\\x07\\x11\\xcf\\xb2\\x31\\xe0\\xc3\\xbb\\xa4\\x12\\x21\\x5d\\x1f\\xfa\\x10\\x36\\x55\\x9f\\xad\\xa3\\xd4\\x2f\\x0a\\xff\\xd4\\x44\\x22\\x31\\x91\\x38\\x06\\xed\\x60\\xd9\\xf5\\xee\\x5a\\xe0\\xf2\\x53\\x80\\x8f\\xff\\x7e\\xd8\\xa6\\x19\\x2b\\x44\\xdd\\xd3\\x1f\\x5d\\x59\\xef\\x07\\xcb\\x0b\\xbc\\x0b\\xd3\\x0c\\xb9\\xa9\\x55\\xbb\\x3c\\x9e\\xc0\\x08\\x5c\\x5e\\xf7\\x63\\x15\\x64\\x60\\x1e\\xdc\\xe9\\x83\\x2a\\xe8\\x60\\x7c\\xb6\\xdc\\x55\\xcb\\x5c\\xc0\\x71\\x9c\\xc3\\x7b\\x61\\x7e\\x4f\\xaf\\xad\\x4d\\xd3\\xbf\\xba\\x87\\xf5\\x4d\\xdf\\xff\\x62\\x9a\\x1d\\xc6\\x56\\x3f\\xba\\xf7\\xff\\x0c\\x96\\x95\\xe3\\xfa\\xcf\\xe3\\x6e\\x2c\\x43\\x17\\xab\\x54\\xc2\\xa8\\x6e\\xe3\\x81\\x4a\\x69\\xfa\\xc0\\x81\\x69\\x3e\\x8e\\x9b\\xd6\\xce\\xd4\\xfe\\x03\\x17\\x0f\\x84\\x11\\x42\\x23\\x7d\\xfd\\xd1\\x8b\\x79\\x7f\\x19\\xbd\\x0e\\xbd\\x01\\x3d\\x86\\x90\\x17\\xf7\\x21\\x2d\\x0a\\x29\\xb9\\x68\\x94\\xfb\\x7b\\x2b\\xe4\\x1e\\xf7\\xbe\\x57\\x8b\\x46\\x59\\x5f\\x14\\x52\\x5e\\x7c\\xbd\\xf7\\x99\\xeb\\x3f\\xcf\\x7d\\xef\\xc7\\xd4\\xc7\\x45\\x2a\\x77\\x0f\\x8b\\x43\\x43\\xd1\\xd7\\xfb\\xef\\x80\\x35\\x34\\x14\\x8d\\x0e\\x0d\\x45\\x8d\\x68\\x74\\x28\\x09\\xa7\\xd0\\x23\\xab\\xd1\\xe8\\xd0\\x99\\x68\\x74\\xa8\\x12\\x8d\\x0e\\x1d\\x4d\\x0c\\x0f\\xc3\\x17\\xc3\\x89\\xd8\\x0e\\xec\\x2d\\xd3\\x1f\\xac\\xfa\\x6f\\x9a\\x4c\\x0b\\xb1\\xe9\\x61\\x87\\x6e\\xf2\\x70\\xf6\\x6c\\xe7\\xb3\\x45\\x37\\x75\\x7a\\xce\\x19\\x28\\xe0\\x2a\\x7c\\x4f\\xfb\\xca\\x9b\\x4f\\x58\\x5f\\x4d\\xa2\\x12\\x9a\\x41\\xfb\\xd1\\x41\\x74\\x14\\xdd\\x8b\\xce\\x21\\x1b\\xbd\\x16\\x5d\\x07\\x8f\\x3a\\x5c\\x87\\xd2\\xf7\\x2e\\x15\\xcb\\xfa\\x62\\xca\\xeb\\x89\\x52\\x41\\x28\\x84\\xbc\\x5e\\xba\\xcb\\x2f\\xa8\\x88\\x1d\\xd8\\x83\\x41\\x80\\xbe\\xe3\\xac\\x77\\x95\\x9d\\xad\\x05\\x5d\\x13\\x1d\\x6a\\xbf\\xcc\\x02\\x57\\xa3\\xd1\\xa1\\x4f\\x83\\x66\\xf3\\x5a\\x5f\\x2c\\xce\\x2a\\x76\\x98\\xba\\x13\\xf3\\x7d\\x55\\x87\\x02\\xee\\x8d\\xb9\\xdb\\xe1\\xe1\\xc4\\x65\\x51\\xac\\xd2\\xb2\\x9e\\x20\\xdf\\x86\\x42\\x59\\x4f\\xc2\\x73\\x7c\\x0f\\x14\\xd4\\xfe\\x5b\\x42\\x30\\x82\\x73\\x1f\\x86\\xdf\\xbd\\x09\\x0e\\x23\\xc0\\x52\\x32\\x90\\x81\\x5f\\xc6\\x2f\\x43\\x9c\\x41\\x12\\xa5\\x51\\x01\\x46\\xd5\\x03\\xe8\\x0a\\xba\\x8a\\x36\\xd0\\x5b\\xd0\\xd3\\xc8\\x41\\x3f\\x86\\xde\\x8f\\x7e\\x06\\xdd\\xa2\\x1a\\x9a\\x90\\x2a\\x1a\\x62\\x67\\x84\\xa5\\xe4\\x62\\x59\\xe9\\x39\\x36\\x05\\x9f\\xbc\\xb1\\x04\\x99\\xb3\\x3e\\xfc\\x3d\\xb5\\x83\\xb7\\xd6\\x3d\\x9a\\xc3\\x50\\x4c\\xe2\\x2e\\x9d\\xd7\\x0d\\x77\\x30\\xca\\x8b\\x82\\x0a\\x37\\x46\\x87\\x2d\\x37\\x8f\\x55\\xc3\\x85\\xbf\\xf4\\x88\\x1c\\x0c\\x51\\x3c\\x06\\x9d\\xb5\\x11\\x8d\\x0e\\x6d\\x7a\\x1f\\xf0\\x19\\x51\\xfc\\x73\\xe8\\xfa\\xf7\\x8d\\xe3\\xd7\\x4c\\x5c\\xc4\\xb4\\x2f\\x22\\x03\\x81\\xc3\\x81\\x44\\x6c\\x38\\x39\\x1a\\x3d\\x8c\\x69\\xb7\\x44\\xc2\\xbf\\x30\\x34\\x14\\x7d\\xd4\\xd7\\xe3\\xec\\xf5\\x79\\xb8\\x63\\xaf\\x88\\xe2\\xdf\\xb8\\xe3\\x37\\x3e\\x34\\x8a\\x69\\x0f\\x0e\\x47\\xa0\\xcc\\x57\\xa2\\x43\\x43\\x16\\x9c\\xba\\x2c\\x8a\\xb7\\x87\\xa2\\x51\\x0b\\xee\\x40\\xa0\\x73\\x18\\x73\\xe3\\xed\\x5f\\x18\\xbf\\x2f\\x30\\x10\\x81\\xc6\\x1c\\x8e\\x8e\\x26\\x87\\x63\\x89\\xc0\\xe1\\xc0\\x40\\x84\\xfe\\x1e\\xff\\xb5\\x28\\xe2\\x3c\\x9c\\x79\\xd5\\x37\\x88\\x3f\\x06\\x47\\x2e\\x47\\x87\\x86\\x9e\\x17\\x45\\x51\\xdc\\xc2\\xa3\\x43\\xa1\\x61\\x3a\\x02\\xd6\\xe1\\x0b\\x04\\xd8\\x87\\xec\\xde\\x79\\xf3\\x41\\x09\\xcd\\x21\\x1d\\x2d\\xa1\\x7b\\xd0\\x2a\\xba\\x84\\x5e\\x83\\x1e\\x41\\x8f\\xa2\\xc7\\xd0\\x13\\xe8\\xed\\xe8\\x1f\\xa0\\xe7\\xd0\\x07\\xd1\\x4f\\xa3\\x8f\\xa1\\x5f\\x44\\xbf\\x4c\\xd7\\x8d\\xde\\x98\\xb0\\x70\\x5f\\xc7\\xb3\\x3b\\xdb\\xbd\\x0d\\xf4\\x9e\\x2a\\x7d\\xbf\\xe9\\x9f\\x07\\xfa\\x39\\x35\\xd8\\xad\\x0a\\xfa\\xc6\\x88\\x09\\x47\\xc2\\x3d\\x37\\x74\\xaa\\xd3\\x02\\x7a\\x46\\x3f\\x4f\\x47\\x67\\x8e\\xc9\\xfa\\x1e\\x8b\\x15\\xe8\\xf5\\x41\\xa6\\x25\\x0e\\x0d\\x45\\x03\\x70\\x7f\\x6e\\x89\\xe2\\xf2\\xae\\x5b\\xc7\\x5e\\x3f\\x0f\\xa7\\xce\\x74\\xa6\\xa9\\x28\\x1b\\x1b\\x7f\\x13\\x8d\\x0e\\x61\\x36\\x2a\\x44\\xb1\\xcd\\x1e\\xbf\\x8a\\x37\\x64\\xfc\\x2f\\xbc\\x0a\\x15\\xb3\\x87\\xe9\\x1c\\x1c\\xfb\\x32\\xec\\xff\\x85\\x28\\x9e\\xe9\\xdc\\xa5\\xa6\\xef\\x91\\xfc\\x98\\xef\\x6e\\x4a\\x70\\xea\\x73\\xde\\x00\\x69\\x6f\\x8a\\x62\\x3d\\x3a\\x34\\xf4\\x8a\\xff\\xb7\\x1b\\xb0\\xf7\\xc0\\x50\\x34\\x2a\\xec\\xfa\\xbd\\x2f\\x96\\xc4\\xc7\\x75\\x47\\x60\\x76\\xfc\\x24\\x4c\\xb5\\xee\\xda\\xc3\\xf4\\x9d\\x61\\xf0\\x4a\\x80\\xff\\x16\\x08\\xcc\\x2a\\xad\\x07\\x9f\\x79\\xe6\\xc1\\x43\\xfb\\xf6\\x1f\\x3c\\xb8\\x7f\\x1f\\x6e\\x3d\\xf3\\xd9\\x67\\x26\\x26\\x1e\\x79\\xfc\\x91\\x89\\x09\\x58\\x87\\x98\\x9e\\xb1\\xeb\\x37\\xcd\\xb5\\x67\\x9e\\x59\\x2b\\x66\\x8f\\x5d\\xba\\x74\\x2c\\x0b\\xbf\\x89\\xa4\\x6e\\x7e\\xe0\\x66\\x2a\\xe2\\xc3\\xa5\\x18\\x66\\x78\\x12\\x15\\x70\\xeb\\x01\\xb5\\x9e\\xd8\\x8f\\xd7\\xc1\\xf0\\x29\\x32\\xe3\\x85\\x99\\x99\\xc2\\xf8\\xbf\\xf2\\x63\\x69\\x50\\x99\\x30\\x16\\x5f\\x39\\xbb\\x12\\x8f\\xfd\\x56\\x0f\\x92\\xc6\\xdf\\x57\\x1c\\x8d\\x1f\\x1c\\x8e\\x88\\xb7\\x6e\\x0d\\x33\\xe4\\x98\\x4e\\x6c\\xa3\\x64\\x4a\\xa6\\xa0\\x72\\x2a\\x07\\x16\\x07\\x60\\x12\\xb2\\x98\\x42\\x6d\\xd9\\xd5\\xba\\x65\\x57\\x6d\\x8b\\xb9\\x09\\x70\\xcc\\x7a\\x98\\x8a\\x2a\\xef\\xb7\\xaa\\xd5\\x3f\\xa4\\x9b\\xea\\x51\\xfa\\xb9\\xcb\\x47\\xde\\x44\\x11\\x24\\x22\\x04\\xe9\\x3d\\xaa\\x59\\x59\\x94\\x06\\x16\\x5d\\x87\\xff\\x62\\xc5\\x28\\xe3\\x7f\\x1e\\x0e\\x7f\\x69\\xe9\\x4b\\xe1\\x44\\xb8\\xfd\\x87\\x65\\x65\\x51\\x2e\\x17\\xe2\\xe3\\xf8\\x23\\xe1\\x04\\x1c\\x0c\\xff\\xb1\\x92\\x91\\x17\\x89\\x04\\x8b\\x47\\xd8\\x37\\x2e\\x63\\x28\\x81\\xd2\\x28\\x0b\\x58\\xca\\xcb\\x18\\x40\\x46\\x54\\x9d\\x9b\\xc7\\x49\\x49\\x56\\x8c\\x72\\x88\\xca\\xc8\\x0b\\xd8\\x94\\xcd\\x2c\\x8e\\x63\\xb0\\x46\\x7c\\x63\\xe0\\xbc\\x70\\x7e\\xe9\\xac\\xf0\\xf9\\xdf\\xbd\\x30\\x7f\\x4f\\xfe\\x4d\\xb7\\x06\\xf0\\x27\\x06\\x0e\\xbc\\x3e\\xfc\\x73\\xf4\\xe3\\x5f\\x07\\xe8\\x37\\xe9\\x7d\\xdc\\x8f\\xcb\\xcf\\xee\\xab\\x3f\\xcb\\x9f\\x42\\x77\\xbe\\x90\\x1c\\xbb\\x34\\x9d\\x1c\\xbb\\x74\\xe4\\xb3\\x51\\xe1\\x59\\xfe\\xd4\\x85\\xc0\\xb3\\xfb\\x42\\x7e\\x9f\\x62\\x0b\\xd0\\x95\\x7c\\x36\\xc4\\xa4\\x2e\\xed\\x8a\\x59\\xf3\\x54\\xd7\\x6f\\x82\\x76\\x4c\\x1c\\xf5\\x78\\xd7\\x06\\x7c\\x5c\\x9e\\x3e\\x30\\x3d\\x7d\\xa0\\xce\\x34\\x63\\xac\\xf9\\xb5\\xc6\\xdf\\xa2\\xdf\\x4c\\x83\\x5e\\x8e\\x70\\x1d\\x74\\x9d\\x1c\\x78\\x0c\\x50\\x12\\xe0\\x97\\x85\\x23\\x5d\\xdf\\x15\\x67\\xf8\\xfd\\x4c\\x5e\\x8c\\x1e\\x55\\x0b\\xea\\xf7\\x1e\\xbf\\x97\\xd6\\xb4\\x69\\x59\\x1b\\x1b\\xe0\\xcd\\x7c\\x07\\xe0\\x90\\x6f\\x6c\\xe0\\xd6\\x2b\\x63\\xd9\\xec\\xd8\\x2b\\x6e\\xc0\\x9c\\x65\\x11\\xf0\\x3e\\x69\\x7c\\xa6\\xc1\\x98\\x80\\xfe\\xc4\\xc5\\x3b\\xf1\\xea\\x1f\\x04\\xac\\x43\\x84\\xdd\\x6b\\x15\\xcd\\xbb\\x54\\x9f\\xd4\\x05\\x19\\x42\\xcb\\x8a\\x99\\xf4\\x33\\xbd\\x75\\x6f\\x6e\\x6c\\x60\\x07\\xdc\\xa7\\x19\\x67\\x57\\xb5\\x6d\\x00\\x58\\xe1\\xdc\\xfb\\xbb\\xd3\\x63\\x43\\xd1\\x77\\x7b\\x49\\xd4\\x2e\\x2b\\x9b\\xdc\\x83\\xcc\\xc4\\xe2\\x37\\x20\\xb9\\x14\\x37\\xdc\\xc0\\x1d\\xfa\\x56\\xdd\\xda\\xca\\xf0\\xe0\\x75\\x16\\x21\\x57\\x54\\xe0\\x33\\xd8\\x82\\xc4\\x3d\\xff\\x0b\\x0b\\xed\\x26\\x98\\x25\\x2c\\x3e\\x03\\x11\\xbb\\x42\\xc6\\x97\\x07\\xc0\\xf0\\x18\\x64\\x7a\\x17\\x4a\\xbb\\x40\\x18\\x38\\x0f\\x77\\x81\\xf3\\x80\\x1a\\x3a\\x2b\\x49\\x1d\\x70\\xfa\\xf9\\x0c\\xb1\\x5d\\xc4\\x7e\\x9b\\xcf\\x7c\\x84\\xe1\\xa2\\xc0\\x61\\x6c\\xd3\\xa3\\x84\\xc0\\x87\\x96\\x4d\\xcf\\xa9\\x33\\x60\\x94\\x70\\x8f\\x4c\\x39\\x86\\x0a\\x48\\xa3\\xbd\\xd1\\x8f\\xd0\\x26\\x7d\\x0f\\xad\\x61\\x7c\\x52\\x83\\x50\\xed\\xed\\x3d\\x1a\\xc4\\xd8\\x09\\x5e\\x0f\\xf5\\xfe\\xd3\\xbb\\x35\\xab\\x57\\x47\\x1a\\x64\\x33\\x72\\x52\\x77\\x15\\xaf\\x3d\\x43\\x1e\\x89\\xc6\\x74\\xaf\\xa6\\x85\\x51\\x75\\xe5\\x4b\\x7e\\xcd\\x0b\\x3b\\xa0\\x7a\\x35\\xec\\x8d\\x0b\\xe3\\xde\\x31\\xc6\\x67\\x11\\xea\\x93\\xa5\\x73\\xa8\\xdc\\xd5\\x3c\\x95\\x3e\\x0d\\xb4\\xa3\\x17\\x2f\\xb2\\x04\\x0a\\x48\\xeb\\x85\\xd9\\x45\\x29\\x57\\xf0\\x1b\\x61\\x25\\x9e\\x83\\xed\\x65\\xdf\\x7e\\xfd\\xc2\\xcd\\x95\\xd9\\xd2\\x48\\x62\\x34\\x31\\x72\\xf1\\xc6\\x0d\\x57\\x15\\xbd\\xc7\\x17\\xa5\\xfa\\x46\\x38\\xf2\\x4b\\xd7\\x4e\\xcd\\x2e\\x27\\x87\\xa3\\xa9\\xd8\\x48\\x82\\x61\\x8c\\xb2\\xf9\\xf2\\x2b\\x60\\xcf\\x10\\x58\\xbc\\x4c\\x49\\x8c\\x03\\xe0\\x96\\x6c\\x00\\x58\\x75\\x65\\x51\\xfa\\xd0\\xa7\\x67\\x3e\\x8d\\x2f\\xc4\\xe3\\xf7\\xcc\\x64\\xb3\\x5f\\xba\\xfe\\xc5\\x6c\\x76\\xe6\\x9e\\x70\\x22\\x5c\\xfb\\xf4\\xcc\\xa7\\xff\\x9a\\x1d\\xfc\\xe2\\xf5\\x2f\\xc1\\xc1\\xb0\\xcf\\xfe\\x38\\x8c\\x46\\x81\\xaf\\xaf\\xe3\\x6b\\x97\\x78\\xd9\\x08\\x1a\\x5c\\xd2\\xd0\\x79\\x9f\\xa1\\x04\\xb4\\xc3\\x8d\\x8d\\x8d\\xea\\xc6\\x06\\x21\\x1b\\xd0\\x71\\xae\\x33\\xbd\\xe9\\x60\\x81\\xb4\\x9b\\x8e\\x83\\x2d\\xd2\\xf6\\x9e\\xac\\xdd\\x7a\\xed\\xf7\\x07\\xc7\\xbc\\xcb\\xad\\xc3\\xca\\x54\\xbb\\xec\\x1b\\xde\\xb8\\x0c\\xa7\\x44\\x49\\x98\\xc7\\xe5\\x8a\\x29\\x84\\x25\\x5f\\x0d\\x38\\xe0\\xc3\\xdf\\xb3\\xe7\\xd5\\x03\\xa7\\x4f\\x1f\\x50\\xff\\x0e\\xf4\\x7f\\x86\\x1a\\xc3\\x50\\x04\\xa7\\xd6\\xee\\x4d\\xcc\\xa7\\xae\\x3d\\x7d\\x2d\\x35\\x9f\\xc8\\x43\\xcc\\x84\\xd5\\xc3\\x41\\xd9\\xe1\\x89\\xdc\\x65\\x77\\x00\\xc4\\xdc\\xae\\xd1\\xb9\\xb1\\xb5\\xd5\\xea\\xb1\\x2b\\xf4\\x73\\x9e\\xee\\x05\\xe8\\xd2\\x57\\xc6\\x5e\\xa6\\x3d\\x1f\\x56\\xce\\x28\\x4a\\x43\\x4c\\x4c\\x8f\\x03\\x46\\x4f\\xd2\\xcb\\xa5\\x8d\\xab\\xe3\\x6a\\x55\\xdb\\xe6\\xd3\\x74\\xdb\\x68\\xf0\\xe9\\xba\\x56\\xad\\xa6\\xf9\\x6d\\xad\\xda\\x6e\\x35\\xe8\\x23\\xd0\\x89\\xef\\x6f\\x7a\\x5c\\x30\\xa5\\x3d\\x90\\x50\\xfa\\xdb\\x54\\xef\\x47\\x38\\x09\\xf8\\xb8\\x04\\xbf\\xc7\\xbe\\x69\\x3a\\x4e\\x83\\x31\\x1d\\xd3\\x4d\\x8f\\x3c\\xf0\\x3d\\xf7\\x4d\\x6d\\x0f\\x6a\\x61\\x9f\\xbf\\xca\\x9b\\x37\\x99\\x1f\\x83\\x0e\\x81\\xa4\\x37\\x61\\xa9\\xee\\xf4\\x14\\xf0\\x92\\x01\\xe8\\xe8\\x26\\x36\\x4c\\x36\\x2d\\x66\\xb2\\xb2\\x6d\\x42\\xc7\\xb7\\x6d\\x93\\x76\\x83\\x4d\\x5a\\xec\\x5b\\xba\\x87\\xbe\\x4f\\xfd\\x16\\xf4\\xc5\\x6e\\x0f\\x82\\x3d\\x50\\x92\\xcd\\x1c\\xde\\xeb\\xd2\\xb5\\xd5\\xdb\\x87\\xb4\\x4f\\xf4\\x96\\xf7\\x9d\\xeb\\x67\\xf5\\x7b\\xf6\\xea\\x83\\xbe\\xbc\\x85\\xef\\xd1\\x36\\x6f\\xf7\\x71\\xb6\\x7a\\x38\\xe4\\x77\\xbf\\x1f\\x90\\x29\\xe0\\x61\\x99\\xdc\\x65\\xac\\xd2\\x39\\xe0\\x7d\\xb8\\x85\\xdf\\xe7\\xe7\\x99\\xf4\\xfe\\x03\\xb2\\x48\\xe7\\xef\\x7d\\xc4\\x22\\x96\\xd6\\xf3\\x9c\\x04\\xdc\\x88\\x80\\x52\\x21\\xf8\\xe3\\x4f\\x3d\\xd5\\xfe\\xd7\\xd8\\x69\\x62\\xa7\\xd5\\x22\\xed\\xad\\xef\\x47\\x0c\\xb9\\x9f\\x87\\x3a\\x8c\\x44\\xc6\\x03\\x83\\x93\\x7b\\x18\\xf9\\x92\\x2e\\x79\\x04\\x8c\\x95\\x46\\x7b\\x4b\\x74\\x9a\\x5d\\x89\\x6a\\x07\\xd6\\x7b\\xc2\\xc2\\xa9\\x59\\x6c\\x43\\xd7\\xcd\\xd0\\x06\\x9b\\xab\\x06\\xfd\\xe9\\x00\\xc7\\x00\\xc4\\xab\\x97\\x64\\x83\\x33\\x4c\\x3d\\x44\\xe5\\x96\\xba\\x66\\x5d\\x0b\\xb7\\x9b\\x8d\\x86\\xf3\\x9f\\xc5\\xa9\\x29\\x47\\x03\\xf9\\xd5\\x71\\xc7\\x56\\x9e\\x65\\x5c\\x95\\x16\\x19\\xa8\\x7b\\x1c\\x43\\xc2\\x51\\xc5\\x84\\x78\\x56\\xb9\\x28\\xc8\\x65\\xb3\\x42\\xb6\\xb6\\x70\\xb9\\x3a\\xc0\\x0d\\xf0\\xd2\\x91\\x77\\xfd\\xd3\\x07\\x13\\xc3\\x5c\\x60\\x68\\x62\\x7e\\x7e\\x2c\\x8d\\x05\\x6d\\x6b\\x75\\x24\\x9a\\x0c\\x8f\\x4b\\xc7\\xa6\\xf2\\x0f\\x27\\xc4\\xd8\\xe8\\x70\\x28\\xb3\\x7f\\x6a\\x2c\\xed\\xb6\\xa7\\x01\\xed\\x49\\x74\\xda\\xc3\\xf9\\xa7\\xcb\\x06\\xb1\\xae\\x71\\xdb\\x30\\x15\\x43\\xcb\\x34\\x77\\x0a\\x76\\xdb\\xd7\\x02\\xbe\\x84\\x7d\\x80\\x0f\\xd2\\xf9\\x91\\xd4\\xdb\\x3c\\x2e\\x0c\\x0d\\x64\\xb1\\xf1\\x92\\x0b\\x4c\\xcf\\x35\\xc0\\x1c\\xba\\x0d\\x4d\\x1d\\x8c\\x0e\\xa5\\x84\\x91\\xe8\\xfc\\xd8\\x48\\x3c\\x21\\x26\\x12\\x29\\x4e\\x1a\\x8d\\x85\\x46\\x22\\x2e\\x3f\\x46\\xf5\\xb7\\xa0\\xd9\\xc3\\xf1\\xd1\\xf8\\xf0\\x48\\x74\\x6c\\x6a\\x6c\\x24\\x14\\x0e\\x0d\\x72\\x29\\x79\\x2c\\x93\\x0a\\x8d\\x46\\x60\\x0c\\x7c\\x12\\x39\\xf8\\x41\\x5c\\x47\\x02\\x30\\x9a\\x95\\x55\\x45\\x55\\x8a\\xb4\\x9a\\x49\\x9c\\x92\\x00\\x03\\xff\\x08\\xe6\\xca\\xb4\\xfe\\x49\\x2c\\x33\\x42\\x31\\x88\\xe0\\xc7\\x24\\x3a\\x30\\xc4\\x89\\xdc\\xd0\\x40\\x34\\xcd\\x45\\x85\\x68\\xec\\x3d\\x6b\\x47\\x79\\x0e\\x8f\\x8d\\x8c\\x8c\\x4e\\x8f\\x8e\\x8c\\x8c\\xe1\\xe9\\x69\\x3e\\x1c\\x1e\\x18\\x08\\x87\\xf9\\xe9\\x83\\x07\\xe2\\x03\\x7c\\x62\\xfa\\x20\\xf7\\xf8\\x72\\x66\\x62\\x76\\x29\\x37\\x1a\\x0a\\x87\\x43\\xa3\\xe3\\x2b\\x1d\\x2c\\xa5\\x1d\\xd7\\x0f\\x96\\x66\\x63\\x68\\x0f\\xb4\\x1e\\x88\\xf0\\x2e\\x75\\x6c\\xc5\\x4d\\xc6\\xf4\\xe0\\x85\\x44\\x6d\\x12\\xbb\\xbd\\x83\\xed\\x76\\x83\\xcf\\xb0\\xcc\\xb1\\xaa\\x3f\\x58\\x8a\\xce\\xd6\\xad\\x96\\xeb\\x42\\xea\\xa9\\x33\\x85\\xc6\\xd0\\x34\\xe0\\x49\\xb9\\x92\\x97\\x37\\xf3\\x83\\x9b\\x63\\x2f\\x9e\\x9d\\xae\\xb9\\xba\\xe6\\xa4\\x79\\x62\\xdb\\x89\\x74\\x86\\x27\\x8d\\xde\\xe6\\xd8\\xac\\x29\\x3b\\xc4\\x4e\\xa4\\x89\\x36\\x96\\x20\\x89\\xb4\\x56\\xdd\\xdd\\xae\\x6a\\xb7\\x49\\xbe\\x36\\x8d\\x01\\xd3\\x8c\\x81\\x50\\xc9\\x17\\xc9\\xd4\\x69\\x96\\xbc\\x28\\xfa\\xba\\x61\\xaf\\x59\\xa5\\xe6\\xc9\\x7f\\x89\\x74\\x72\\x78\\x38\\xd9\\x6e\\xb1\\xc6\\xe0\\xbe\\x36\\xee\\xd0\\xa6\\x11\\xda\\x3a\\x00\\x64\\x79\\xde\\x6d\\x0b\\x70\\xc3\\xf7\\xb5\\x13\\xed\\xba\\x4f\\x13\\x10\\x95\\xf9\\x6a\\xdd\\x13\\x92\\x64\\x53\\xea\\xbf\\x4d\\x6e\\xbf\\xe0\\x95\\xb3\\x3b\\x4b\\xda\\x1e\\x37\\xca\\xeb\\x90\\x9b\\xd7\\x56\\x17\\x77\\xd5\\x39\\x79\\x57\\x24\\x27\\x2f\\xfa\\xff\\xee\\xe3\\xa3\\x61\\x6b\\x84\\x78\\x3d\\xb1\\xe7\\x08\\xb1\\x1d\\xdb\\xde\\x7b\\x8c\\xf0\\x10\\x69\\x34\\xdf\\x73\\x3f\\x04\\x19\\x12\\x9d\\xbe\\x87\\x1b\\x61\\x3b\\x55\\x28\\xff\\x55\\x6e\\x82\\xa3\\x91\\x74\\xc2\\xf9\\x2e\\xfd\\x1f\\xf2\\xf5\\x85\\x04\\x3e\\x9d\\x32\\x43\\x1d\\xe3\\x3c\\x6f\\x3e\\x6b\\x13\\xc3\\x63\\x7b\\xd5\\x81\\x2b\\x10\\x20\\xb9\\xac\\x56\\xa1\\x21\\xce\\xde\\xb7\\x48\\xd0\\x34\\x3b\\x9d\\x70\\x12\\x63\\x80\\x0b\\x9e\\x48\\x93\\x57\\x19\\xbe\\xdd\\xbe\\x62\\x3c\\x55\\x32\\x9d\\x0f\\x21\\x2b\\xf2\\xbb\\x34\\x44\\xb3\\x6d\\xc7\\xde\\xb3\\xfe\\x66\\x43\\xd3\\xb6\\x5f\\xed\\x89\\x09\\xfb\\xfa\\x83\\x03\\x9b\\xfd\\x41\\x74\\x8c\\xf5\\x88\\xda\\xed\\x15\\xdd\\xeb\\x9c\\xce\\xc3\\xf3\\xbd\\xf5\\x0f\\xed\\x21\\xfa\\xf0\\xa4\\x79\\xc2\\x9e\\xa2\\x57\\xeb\\xa7\\x2a\\x21\\x8d\\x34\\x7b\\x8a\\xf2\\xc0\\x79\\xcf\\xf6\\x5e\\xb5\\xcb\\xee\\x72\\x3f\\xfd\\xfe\\x43\\xa6\\x9e\\xc3\\x55\\xec\\x05\\x5d\\xd8\\x6d\\xaf\\x45\\x08\\x9d\\x84\\x6c\\x1b\\x6e\\xeb\\xde\\x53\\x11\\x40\\x47\\x8c\\x25\\x1c\\x3a\\xde\\xd2\\x09\\x92\\x18\\xdb\\x6b\\x9c\\xf9\\xe7\\xa3\\x6e\\xfb\\x18\\x9b\\xb4\\x09\\xfe\\x70\\xa3\\xc0\\x17\\x8c\\x2e\\x19\\x54\\xff\\x32\\x2f\\xe9\\x86\\x2c\\xf5\\xb6\\x1d\\x68\\x4c\\xd5\\xde\\xe7\\x12\\xe6\\x1d\\x5f\\x1b\\xab\\x10\\x9c\\x6b\\x59\\xe0\\x64\\x14\\xf8\\xcc\\x8e\\xd7\\x66\\xa7\\xdd\\x72\\xc0\\x10\\xd0\\xf0\\x37\\xb3\\x21\\xd0\\x69\\x55\\x48\\x27\\x84\\x44\\x3a\\x9d\\xb0\\xba\\x8d\\x0e\\xf6\\xc8\\xc0\\x22\\xe3\\xd3\\xd9\\xd5\\x46\\x4e\\xc7\\xf5\\x7a\\xdd\\x27\\x56\\xd6\\xeb\\x35\\xac\\x39\\x3d\\xbc\\xfd\\x8d\\xad\\x7e\\x7d\\x76\\x14\\xd6\\x26\\xd2\\xb5\\xe7\\x7d\\x2f\\xda\\x3b\\x8b\\xb1\\x68\\xed\\xa1\\xb7\\xbb\\x9e\\xc8\\x5f\\xbe\\xab\\xca\\xde\\x8d\\xbd\\x93\\x20\\xff\\xc6\\x97\\xaf\\xc0\\x65\\xb1\\x20\\x33\\x7b\\xce\\xab\\xe6\\x2c\\x1c\\x9a\\x9a\\x31\\x08\\xb0\\x0d\\xdd\\x2d\\x6b\\x61\\x21\\x7a\\x62\\x56\\xd6\\xf7\\xc8\\x5c\\xe8\\xe8\\x9e\\x10\\xab\\x30\\x04\\x18\\xfc\\x05\\xa1\\x20\\xf1\\xb2\\xca\\xc9\\xfd\\x43\\x71\\x09\\x9b\\x92\\x0b\\x95\\xb9\\x7e\\x66\\xf5\\x61\\x7f\\x80\\x7f\\xd5\\xb6\\xb1\\xdd\\x22\\x98\\xac\\xae\\xf6\\x0f\\x36\\xdb\\x46\\xb8\\xe3\\xa7\\x0e\\x23\\x84\\x93\\x05\\x53\\x32\\x55\\x4c\\x9a\\x6d\\xcd\\x59\\x2f\\x1e\\x06\\x2e\\x76\\x27\\x7d\\x5f\\x0f\\x06\\x6c\\x87\\x2b\\xea\\xd5\\x9e\\x87\\xbd\\x17\\x9d\\x57\\x59\\x6e\\xe8\\xf5\\x46\\xd0\\x2c\\x9a\\xc5\\xdf\\xc4\\xdf\\x74\\xe3\\x27\\xd2\\xe0\\x25\\x21\\x68\\x3f\\x32\\x11\\x5a\\xc1\\xa2\\x24\\x28\\x66\\xc5\\x94\\xc2\\x9c\\x59\\x31\\xf5\\x30\\xa7\\x78\\xe0\\x9d\\xa2\\xc4\\x29\\xaa\\x19\\xe6\\xe4\\x8a\\x19\\x52\\x54\\x53\\x94\\x54\\x4e\\x51\\x0d\\x91\\x0b\\x73\\x6a\\xc5\\x7c\\x5b\\xb6\\xb4\\xb0\\xf2\\xe8\\xc2\\x54\\x4e\\x5f\\x79\\xcb\\x44\\x98\\x84\\x67\\xae\\xc3\\x5d\\xff\\x97\\xe1\\x89\\xec\\x4c\\xf8\\x1c\\x1c\\xc1\\xe7\\xd9\\x07\\x76\\x66\\x29\\xab\\xaf\\xbc\\x26\\x4b\\xbf\\x28\\xc1\\xe1\\x9a\\x32\\xb7\\xac\\x7f\\x1c\\x46\\x91\\x0d\\xc5\\xbc\\xb3\\xb4\\xb0\\xa2\\xbf\\x05\\xce\\xfb\\x49\\xdf\\x79\\x54\\x8e\\xdb\\x8f\\x78\\xfc\\xbb\\xf8\\x5b\\x80\\x8e\\xd3\\xb1\\x14\\x70\\xe5\\x8a\\xa9\\xce\\x63\\xa3\\x22\\x89\\x12\\x0c\\x11\\xc8\\xb4\\xa9\\x98\\x15\\x29\\x15\\xe6\\x46\\x02\\x5c\\x36\\x20\\x65\\xb1\\x10\\x56\\x15\\x70\\xb3\\x31\\x3e\\xe0\\x30\\x17\\x66\\x46\\xe9\\xa7\\xe7\\x4a\\x89\\x6c\\xd1\\xb2\\x22\\x83\\x01\\x79\\x72\\x52\\x0e\\x0c\\x46\\x2c\\xab\\x98\\x0d\\x70\\xe1\\x60\\x30\\xcc\\x05\\xfa\\xbe\\x69\\x80\\x0d\\xea\\x01\\xe5\\x44\\x2c\\x92\\x58\\x2a\\x94\\x4a\\x03\\xdc\\x48\\x58\\x5e\\xe2\\xf9\\x25\\x39\\x3c\\xc2\\x0d\\x94\\x4a\\x85\\xa5\\x04\\x1e\\x08\\x62\\x1c\\x1c\\xc0\\x7b\\x7d\\xcf\\xee\\x81\\x7f\\x4e\\x8f\\xf6\\x44\\x5d\\x33\\x04\\x06\\x53\\xe2\\x56\\xb0\\xc4\\x29\\x3e\\x1e\\x1c\\x13\\xd8\\xf7\\x64\\x23\\x8e\\x55\\x93\\x3e\\x81\\x3b\\xda\\x47\\xe6\\xb3\\xf3\\x9f\\xc8\\xce\\x67\\xdf\\xc3\\x88\\x62\\x1c\\x67\\x72\\x3e\\x3b\\x6f\\x6b\\x6a\\x76\\x3e\\x8b\\x1d\\xc1\\x71\\x7e\\x74\\x3e\\x3b\\x3f\\x9f\\x9d\\xcf\\xfe\\x6b\\xb8\\x19\\x21\\xed\\x5d\\xf3\\xd9\\xf9\\x47\\x1c\\xe7\\x83\\xd9\\xf9\\xec\\x8f\\x40\\xbe\\x24\\xb3\\xed\\xfc\\x7b\\xd0\\x6b\\x20\\xf7\\x13\\xeb\\xaa\\x29\\x01\\x24\\x85\\x59\\xd0\\x39\\x3d\\x68\\xc8\\xf8\\x0d\\x8b\\x69\\xe1\\xc4\\x4c\\xfc\\x78\\x7c\\xe6\\x44\\xbb\\xd5\\xb2\\xed\\xba\\x85\\x5f\\x7b\\x5e\\x6b\\x12\\xd2\\x6c\\xde\\x41\\x4d\\x2f\\xef\\xab\\x0e\\x79\\xd9\\x4c\\xb7\\x32\\x74\\x4e\\xc5\\x9c\\xca\\x19\\xb2\\xa1\\xe2\\x5a\\xe1\\xa5\\xed\\xea\\xef\\xe2\\x0b\\xe3\\x6b\\xe7\\xac\\x0d\\x4c\\x0e\\xbe\\x34\\xbf\\x55\\x6f\\x7f\\x76\\xfc\\xc1\\x7f\\xd0\\xbc\\x50\\xf3\\x61\\xe4\\x87\\xa9\\xf6\\x02\\x15\\xd6\\xb7\\xab\\xd5\\x4d\\x0b\\xb7\\xb6\\xa0\\x74\\xda\\x57\\x9e\\xfd\\x89\\x61\\x49\\x8e\\xa2\\x14\\xa0\\x6a\\x13\\xc0\\x23\\xf6\\x18\\x6b\\x54\\x17\\x58\\x87\\xe3\\x75\\x50\\x61\\xe5\\x02\\x93\\x14\\xdc\\xe8\\x93\\x92\\x87\\x05\\x5b\\x27\\x19\\x1e\\x20\\x86\\x5a\\x9a\\xc3\\x67\\x48\\xbb\\xd1\\x99\\xa7\\x6c\\xe2\\x10\\x8b\\x91\\xd1\\x6c\\x31\\x60\\x19\\x07\\x6f\\xb7\\x35\\xdc\\xc8\\xf0\\xf4\\xc4\\x6d\\x92\\xe1\\x5b\\xec\\x38\\x42\\x43\\x9d\\xf9\\xd2\\x8b\\x98\\x67\\xf8\\x38\\x0c\\x0b\\x0d\\x72\\xe6\\x75\\xc1\\x8d\\x6a\\x35\\x74\\x43\\x78\\x95\\xdc\\x7c\\xc9\\xcd\\x97\\x50\\xf5\\x6e\\x92\\xa7\\x24\\xe8\\x46\\x41\\x16\\xc0\\x2e\\xa0\\xb9\\x08\\x39\\x7d\\xf9\\xfb\\x9a\\x0b\\xe5\\x03\\x5f\\x38\\xda\\x1d\\xa4\\x69\\x58\\x70\\x1c\\x76\\x6a\\x9d\\x45\\xef\\x60\\xcb\\x3f\\xd3\\x3b\\x5d\\x54\\x2a\\xc2\\xf2\\x52\\x3d\\xbd\\xbd\\x3f\\x76\\x02\\xf5\\xe3\\x63\\xec\\xf2\\x89\\xba\\x36\\xfc\\x81\\x3e\\x9f\\xa4\\x77\\x1e\\xd0\\xfe\\xa7\\x1f\\x03\\x53\\xfa\\x63\\x60\\xd7\\x5d\\x82\\x7d\\x86\\x43\\xd8\\xfe\\x0d\\x1f\\xbd\\x1c\\x7c\\x9d\\xc6\\xcc\\xaa\\x7f\\x18\\x60\\x07\\x0f\\x83\\x0d\\x7e\\x09\\x8e\\xfc\\x86\\x7f\\xeb\\xfb\\x16\\xc6\\x05\\x42\\x08\\xff\\x31\\xfe\\x63\\xe0\\xd8\\xa4\\xe3\\x82\\xae\\x84\\x79\\x34\\x85\\x8e\\xb0\\x0c\\x34\\x43\\x95\\x05\\x95\\x6e\\x24\\x96\\x47\\x2b\\x09\\x7a\\x10\\x73\\x2c\\xef\\x5c\\x0d\\x41\\x17\\x03\\x8f\\x25\\xaf\\x1a\\xb2\\x1b\\xb8\\xea\\xbe\\x63\\x3b\\x97\\xd3\\x62\\x67\\xb4\\xd8\\x99\\x6a\\x35\\xf7\\x70\\xee\\xf7\\xf0\\x57\\xc7\\x49\\xfb\\x73\\x7c\\x9a\\x60\\xbb\\x7a\\x07\\xe5\\x08\\x3e\\xc3\\xa7\\xb5\\x1c\\x39\\x53\\x65\\x1b\\x3b\\x97\\x3b\\x13\\xab\\x3a\\xf4\\xaf\\x5a\\xc5\\xb9\\xdc\\xc3\\x39\\x3c\\xda\\xae\\x8c\\x93\\x34\\x8f\\xcf\\x90\\x5c\\xb5\\xaa\\xa5\\xf9\\xf6\\xe7\\x48\\x4e\\xab\\x9e\\x61\\x1b\\x3a\\x7e\\x7a\\x71\\x16\\xfc\\x79\\x17\\x3e\\x6f\\x02\\x20\\x0f\\xde\\x65\\x7f\\x97\\x10\\xde\\x00\\x78\\x58\\xcd\\xb7\\xed\\x41\\x78\\xb6\\xab\\xb4\\x75\\xb4\\x81\\x68\\x8f\\xbd\\x3e\\x90\\xe7\\x01\\x94\\x45\\x59\\xfc\\x35\\xfc\\x32\\x4a\\x01\\x7a\\x16\\xd5\\xdd\\x45\\x0c\\xbe\\xbc\\x0e\\x90\\x9b\\x6e\\xe8\\xaa\\x24\\xab\\x20\\x89\\xab\\x26\\x95\\x44\\x65\\xd5\\xd5\\xdd\\x38\\x3a\\x85\\x18\\x57\\x71\\x65\\xec\\xc5\\xd3\\xf9\\x3c\\xc9\\xe7\\xc9\\xe0\\x13\\xff\\x6d\\x30\\x3f\\x3d\\x9c\\xcc\\xaf\\x13\\x32\\x38\\xb6\\x3a\\x9c\\x4c\\x26\\xf3\\xc9\\x31\\xfc\\xf2\\x23\\xed\\xaf\\x49\\x2f\\xde\\x9b\\x7f\\xd4\\x30\\x1c\\x42\\x9e\\xa8\\xe7\\x93\\xc3\\x33\\xf9\\x88\\x20\\xac\\x4b\\x8f\\x26\\x87\\x05\\x89\\x9b\\x23\\x4c\\x36\\xf1\\x62\\xd7\\x86\\x01\\xcd\\x8b\\xf4\\xc5\\x9f\\x19\\x0c\\x4f\\x85\\x35\\x2b\\x64\\xc8\\x82\\xce\\x5a\\x20\\x80\\x2e\\x09\\x1c\\x22\\x54\\x50\\x3d\\x63\\x41\\x5b\\xb0\\x45\\x56\\xa1\\xf6\\xfc\\xea\\x70\\xf2\\x15\\xcb\\x5a\\x4f\\x0e\\x5b\\xc3\\x49\\x87\\x10\\x87\\x36\\x62\\x48\\x10\\x52\\x43\\x73\\x84\\x38\\xc0\\x7b\\x12\\xec\\x89\\x2f\\x93\\x76\\x7b\\x36\\x3c\\x5f\\xfd\\x15\\x18\\xdf\\xe0\\xbd\\xd0\\x71\\x01\\x5c\\x9c\\x7e\\x87\\xc5\\x6b\\xc1\\xb3\\xb9\\x47\\x79\\xfd\\x16\\xe9\\x0e\\xeb\\xe7\\x69\\x28\\x8a\\x95\\xf4\\xf3\\xb0\\xdf\\xf0\\xf9\\x48\\xf3\\x2e\\x2e\\x3d\\x87\\x34\\xa4\\x75\\xf8\\xd6\\x18\\xd3\\x8c\\x8a\\xce\\x32\\xb6\\x42\\x2f\\x87\\x30\\xdc\\xe7\\x97\\x50\\x4d\\x95\\x13\\xdd\\xef\\x18\\xa2\\x21\\x00\\x26\\xb9\\xfc\\xe9\\x2b\\x58\\xf5\\x10\\x9b\\x5d\\x1b\\x19\\x87\\x1f\\x39\\x7f\\xfe\\x5c\\x16\\xc2\\x02\\xee\\x05\\xef\\x7f\\x0e\\xf6\\xa7\\xce\\x9d\\x3b\\xff\\x05\\xf8\\x7c\\xdd\\x0e\\x87\\x1f\\x0a\\x47\\x86\\xc2\\x0f\\xd8\\xe1\\x44\\xf8\\xb5\\xe1\\xb0\\x6d\\x87\\xc3\\xaf\\x0d\\x27\\xc2\\xf6\\x03\\xe1\\x64\\xf8\\xa1\\x70\\xf8\\xfc\\xf9\\x73\\xe7\\x9f\\xf6\\x05\\x03\\xe4\\x60\\x3f\\x77\\xfe\\xdc\\x79\\x19\\x3e\\x97\\xef\\xf2\\x3b\\x1b\\x0a\\x4e\\x86\\x7b\\x6d\\x78\\xff\\x7b\\xf8\\x15\\x7e\\xec\\xda\\xee\\x53\\xb7\\xa7\\xa4\\x25\\xf9\\x10\\x38\\x21\\x27\\xa1\\x2f\\xab\\xb3\\x01\\xeb\\x88\\xa6\\xed\\x61\\xcf\\x84\\xd9\\xb6\\xea\\x81\\xec\\xf9\\x73\\x23\\xc2\\x28\\x01\\xb6\\x1f\\x3a\\xcf\\xf3\\xd8\\x64\\xcb\\x84\\xd1\\x0f\\x01\\xcd\\xf4\\xea\\x5a\\x4d\\x6b\\x6f\\x0f\\x91\\x3c\\x21\\xf9\\x6f\\xfb\\xe4\\xf8\\xfc\\x19\\xac\\xb5\\xb7\\xbf\\x4d\\x0f\\x13\\xb2\\xde\\xc7\\x29\\xfb\\xbd\\xca\\x9a\\x7e\\xdf\\x5d\\x0c\\xa5\\xd0\\x04\\x9a\\x02\\xf4\\xdb\\x72\\x45\\x17\\x18\\xcb\\x8c\\x2e\\xc8\\xee\\x87\\x60\\x2a\\x2c\\x1b\\x8b\\x15\\xba\\xd8\\xc2\\xbb\\x4c\\xdf\\xb1\\x97\\xa1\\xb9\\xd3\\x49\\xd7\\x74\\xe8\\x9e\\xa3\\x64\\xac\\xe5\\xcb\\x1a\\xa4\\x51\\x3e\\xfc\\x3c\\xb9\\x71\\x11\\x3b\\xf0\\x11\\xf6\\x33\\x8a\\xd5\\xa3\\x6f\\x30\\x19\\x74\\x0e\\x66\\x3d\\x5a\\x17\\x27\\xa9\\xf4\\x2d\\x08\\x49\\xd2\\x1c\\xb0\\x0c\\x08\\x72\\xd9\\xf4\\xb6\\xb2\\xb1\\xc8\\xb6\\x2b\\x18\\xce\\xc0\\xa7\\x0f\\xae\\x2c\\x68\\xc7\\x8a\\xe3\\xd9\\xd8\\x73\\xc5\\x9c\\xd8\\x1c\\xc7\\xd7\\xc7\\x8f\\x24\\xb5\\x5c\\x8e\\x90\\x03\\xc6\\xb1\\xea\\x09\\x23\\x37\\xb3\\x58\\x1c\\x5f\\x8b\\x16\\x83\\x38\\x52\\x24\\xe2\\xb1\\x62\\x54\\xc3\\xc2\\xca\\xc1\\x9c\\xb6\\x30\\x3e\\xde\\xfe\\xb9\\xf1\\x23\\xe3\\xc5\\xc5\\x99\\xac\\x71\\xbc\\x7a\\xcc\\x38\\x40\\x48\\x2e\\xa7\\x25\\xd7\\xb2\\xe3\\xc5\\x68\\xac\\x17\\xdf\\x9a\\xeb\\xae\\x88\\x2c\\xba\\x04\\xe2\\x3f\\x9e\\xf9\\xac\\x7f\\x4c\\x8e\\xa1\\x69\\x3a\\x6f\\x03\\x60\\x9a\\x97\\xef\\xa8\\x33\\x60\\x5c\\x79\\xb1\\xb2\\xeb\\xce\\x5a\\x60\\x95\\x20\\xd5\\x2a\\x9f\\x4e\\x8c\\x8c\\x24\\xd8\\x98\\x62\\x29\\xbb\\x79\\xaa\\x50\\xd3\\x55\\x3d\\x9d\\xc8\\x8f\\x24\\x12\\xbf\\xd4\\x77\\x7b\\xc1\\xa7\\x53\\x87\\xfb\\x1b\\xa5\\x33\\x48\\x82\\xe5\\xb5\\x16\\x69\\x07\\x55\\x7c\\xfb\\x1f\\xfb\\xf2\\xf3\\xe4\\xc6\\xad\\x1b\\xe4\\x97\\x9e\\x5e\\xd3\\x56\\xd6\\x56\\x34\\xec\\x3c\\xff\\xf0\\x85\\x9b\\x37\\x2f\\x3c\\x6c\\xac\\x2d\\xcf\\xae\\xac\\xcc\\x2e\\xf7\\xdb\\xc5\\xd3\\xdd\\x8c\\x05\\x7d\\x77\\xec\\xb7\\x45\\x34\\x62\\x3b\\x7e\\x17\\x05\\x5d\\x38\\xfa\\xe0\\x83\\x7c\\xe5\\xf1\\x0c\\x73\\xb1\\xa7\\x23\\x08\\xde\\xcd\\x94\\x6c\\x39\\x20\\x7d\\xa5\\x13\\xda\\x56\\xb7\\x70\\x6c\\x11\\x87\\x5e\\x3f\\x49\\x8c\\x11\\xa7\\xff\\xfa\\xbb\\xba\\x6f\\x92\\xc9\\xcb\\xd8\\x90\\x8b\\xe1\\x49\\x9c\\x12\\x97\\xf0\\x5d\\xeb\\x01\\x3c\\x4f\\x16\\xaf\\xaa\\xf5\\xd7\\xe6\\x68\\xd8\\x22\\xe9\\x04\\xf0\\x88\\xef\\xaa\\x91\\xc9\\x7b\\x01\\xdf\\x78\\x15\\x58\\x3f\\xed\\xd1\\x47\\xa4\\x4a\\xfc\\xda\\xf6\\x36\\x69\\xdc\\xbd\\x7f\\x52\\x2c\\x5a\\xd8\\x1b\\x2f\\x90\\xbd\\x09\\xb6\\xcf\\x3d\\xc6\\x0a\\x15\\x51\\xb5\\x44\\xda\\xa1\\x1b\\xdb\\xd7\\x4b\\x02\\xa1\\x23\\x65\\x2c\\x51\\x25\\x64\\xec\\xd7\\x7b\\x2a\\xf2\\xfb\\x53\\x93\\x7e\\x96\\x8c\\x44\\x37\\x66\\x7b\\x6f\\x9f\\x6a\\x9a\\x6f\\xac\\xf5\\x7b\\x55\\xd7\\x1a\\x7c\\xba\\xeb\\x57\\x0d\\x74\\x72\\x7f\\xc7\\x41\\x02\\xe7\\x65\\x37\\xe4\\xde\\x0d\\xbf\\xaf\\x94\\x15\\xd9\\x00\\x95\\xbd\\xbf\\x87\\x96\\xb0\\xa9\\x4b\\xb8\\xd1\\x98\\x5b\\x5e\\x9e\\x9b\\x98\\x9e\\x9e\\xa0\\x7f\\x74\\xdf\\x97\\x6c\\x7f\\x42\\x71\\x94\\x1a\\x46\\xe2\\x91\\x2b\\xcb\\xca\\xf4\\x21\\xf5\\xb9\\xe9\\x43\\xaa\\x72\\xe4\\xca\\xb2\\xe0\\x65\\x21\\x33\\x27\\x3c\\xf1\\xb8\\x20\\xd9\\x3c\\x3e\\x06\\x19\\x84\\x3d\\x39\\xec\\xba\\xaa\\xb3\\x3f\\xec\\xd8\\x5e\\xd9\\xa2\\x66\\x69\\x1a\\x64\\x31\\x5a\\xb8\\xd1\\xee\\xe4\\xc7\\x83\\xa8\\x84\\xbc\\x18\\x64\\x07\\xe2\\x8c\\x3c\\x3c\\xb5\\x4e\\x04\\xb2\\x63\\xeb\\x27\\x17\\x17\\x65\\x41\\xc4\\x4d\\x7b\\x5b\\xa6\\xcb\\x71\\x0c\\x75\\x62\\xcc\\x7e\\x16\\x7f\\x83\\xea\\x4e\\x5e\\x4e\\x55\\x37\\x3c\\x1f\\x0b\\x4e\\x7b\\xdb\\xa9\\x9c\\x5a\\x7b\\xc7\\xe5\\xb3\\x9f\\xbc\\xa4\\x69\\x0f\\x44\\x2e\\x99\\xcb\\x6b\\x6b\\xcb\\x07\\x1f\\xe8\\xe0\\x65\\xfc\\x1e\\xfe\\x06\\x58\\xf5\\x90\\x17\\xec\\x59\\x4a\\x85\\x39\\x28\\x48\\xee\\xc4\\x8a\\xc8\\x42\\xa7\\xd0\\x37\\x43\\xc0\\x3a\\x7e\\xf0\\xec\\x01\\xab\\xdd\\x10\\x80\\xa6\\x41\\x68\\x40\\x05\\x58\\x80\\xa8\\x80\\xd4\\xc1\\x07\\xb8\\x4b\\xda\\x06\\x80\\x92\\x57\\x2d\\xb7\\x42\\xc8\\x89\\x75\\xf0\\xbd\\xd8\\x01\\x44\\x7c\\x0e\\x68\\xb0\\xee\\x65\\x89\\xb3\\x57\\xbd\\xc4\\x59\\x8c\\x3e\\x8f\\x1c\\x6c\\xb3\\x73\\x92\\xf4\\x14\\xb5\\xe5\\x38\\xd9\\xab\\x57\\xb1\\x03\\x6f\\x7f\\xff\\xe3\\x1e\\xbc\\x3c\\x85\\xae\\x7c\\x10\\xda\\x53\\x3e\\x00\\x2a\\xcb\\x4e\\x72\\xd1\\xb7\\x3b\\x02\\x02\\x8c\\x2f\\x1f\\x8e\\x09\\x64\\x6f\\xf6\\x47\\x22\\xf8\\xa3\\x0f\\xec\\xdd\\xb1\\xf4\\xde\\x98\\x94\\x60\\xfe\\x5b\\x14\\xf8\\x94\\x5c\\x04\\x37\\x93\\x5c\\x34\\x78\\x70\\x2e\\x2d\\x9a\\x15\\x00\\x87\\x12\\x60\\x64\\x7d\\x25\\x16\\x0b\\x0c\\xac\\xff\\xe6\\xfa\\x40\\xc0\\xdb\\x99\\x38\\xff\\xda\\xb5\\x4b\\xf7\\x3f\\xb8\\x76\\x09\\x37\\x46\\xda\\xbf\\x39\\x12\\x90\\xe5\\xc0\\x08\\x3e\\x04\\xef\\xe6\\xd8\\xd8\\x9f\\x8d\\x8d\\xb9\\x78\\x38\\x2c\\xb6\\x71\\x10\\xe5\\x11\\x32\\x75\\xa5\\x6c\\xca\\xa2\\x90\\x0a\\x89\\x42\\x4a\\x2e\\x14\\x8d\\xb2\\x59\\x01\\x10\\x1b\\xbd\\x00\\xde\\xc0\\xd4\\xfb\\xff\\x8c\\xfe\\x12\\x87\\x02\\xbd\\x25\\xda\\x97\\x3e\\x4b\\x6b\\xaa\\x75\\x2b\\x77\\x77\\x7a\\xaf\\x25\\xc9\\xa2\\xfb\\x72\\x01\\x31\\x15\\x0f\\x84\\x8b\\x0b\\x01\\xa5\\xbc\\x12\\x10\\x8b\\x5c\\x38\\x05\\x57\\x53\\x56\\xff\\xc9\\x87\\x5f\\x9b\\x0c\\x27\\x12\\xe1\\xe4\\x6b\\xbd\\x9d\\xbf\\x7a\\x7f\\x35\\x1e\\xaf\\xd2\\x0d\\x6e\\x8c\\x06\\x93\\xc7\\x7e\\xec\\x58\\x32\\x38\\xea\\xed\\x8c\\x8f\\x1c\\x7c\\xcb\\xc1\\x11\\xba\\xf9\\x7e\\xca\\x75\\x5d\\xfe\\xb7\\x01\\xb6\\x9a\\x99\\x05\\x95\\x5b\\xc0\\x82\\x29\\xed\\x5a\\x0d\\x1c\\x8c\\xee\\xb7\\xe6\\x2d\\xa3\\x52\\xef\\xfa\\xa4\\x6b\\x3f\\x7c\\xbf\\xf9\\x97\\x8d\\x7c\\xbe\\xd1\\x9f\\xfb\\xf5\\x83\\x8c\\xa7\\xfb\\x41\\xc4\\x2e\\x71\\x3e\\xdd\\x93\\x6a\\xcd\\x19\\x34\\x85\\xf6\\x31\\x9b\\xb7\\xde\\xb5\\x5f\\x4b\\x00\\x52\\x2c\\xbb\\xb2\\x29\\xe7\\x2e\\x54\\x8b\\x15\\xd5\\xdd\\xdb\\x73\\xa5\\x22\\xc2\\x0e\\x6b\\x50\\x5d\\x78\\xc5\\xca\\xe7\\xf3\\x46\\x62\\xc4\\x30\\x46\\x12\\xb5\\xe4\\xb0\\x91\\x17\\x86\\x93\\x9f\\xeb\\x26\\xbc\\xe0\\xa8\\x65\\x3d\\xe1\\x26\\xb6\\xac\\x8a\\xa2\\x98\\x77\\xb4\\xbc\\x68\\x51\\x3d\\x2c\\x69\\x8a\\xc3\\x49\\x47\\x4b\\x7e\\xc6\\x7f\\x35\\xa8\\x4f\\x86\\x76\\xb1\\x3d\\xf7\\xf4\\x91\\x09\\x2c\\xf9\\xcb\\x0b\\x92\\xef\\x8f\\xad\\xf8\\x76\\xf3\\xd8\\xe1\\x63\\x67\\xe9\\xe2\\x33\\xb1\\x47\\x34\\x43\\xfb\\x8f\\x47\\x47\\xc5\\x4c\\xc6\\x9a\\x54\\x26\\x27\\x15\\xa6\\xaf\\xad\\xe3\\x1d\\x7c\\xcb\\xcd\\x3b\\xdc\\x15\\xe3\\x5a\\x59\\x14\\xa5\\x11\\x5c\\x54\\xd4\\x8a\\x3f\\xcb\\x70\\xe2\\xa3\\xce\\xc4\\x84\\x43\\x37\\xae\\xf5\\x9b\\x65\\x17\\xfe\\xf6\\xda\\xe9\\xd3\\x6b\\x6b\\xa7\\x4f\\x23\\x60\\x94\\xa7\\xf7\\xe0\\xaf\\x3c\\x66\\x56\\xaa\\x66\\xd1\\x49\\xc1\\x04\\x3f\\x74\\x59\\x05\\x66\\x6a\\x61\\x31\\x24\\x99\\xaa\\x21\\x71\\x2a\\xfe\\xc8\\x81\\x03\\xe6\\x7d\\xfb\\x49\\x7e\\xbc\\xb0\\x3c\\x4b\\xc8\\xec\\xf2\\x95\\x2b\\xf7\\xb5\\xff\\xfc\\xfc\\xf9\\xf3\\xcf\\x3f\\xff\\x3e\\xfc\\x96\\x03\\x1f\\x3b\\x70\\x60\\x2c\\x37\\x3c\\x4b\\xde\\x31\\x3b\\x7b\\xe2\\xca\\x6b\\x4e\\x7c\\xf1\\xfc\\xf9\\xf3\\x87\\x9f\\x7f\\xfe\\x79\\xda\\x67\\x97\\xd1\\x65\\xc8\\x5b\\x1c\\x41\\x29\\x94\\x01\\x36\\x60\\x08\\x4c\\x36\\x20\\xa8\\x59\\x50\\xcd\\xa0\\x29\\x4a\\x82\\xa2\\xfa\\x8c\\xbb\\x58\\x58\\xb9\\x7c\\x79\\x65\\xfe\\xc8\\x91\\xf9\\x87\\x1f\\x7e\\x67\\x4e\\xca\\xee\\x3b\\x18\\x1a\\xcd\\x4e\\x84\\x8f\\x26\\x06\\x48\\x78\\x12\\x7f\\x6a\\x70\\xfd\\xdd\\xeb\\x83\\x64\\xf0\\xd4\\x0f\\x9d\\x1a\\xbc\\xf4\\xba\\x87\\xdb\\x1f\\xc8\\xf1\\x21\\x12\\xfe\\xc0\\xe4\\x58\\xb6\\x34\\xff\\xba\\xcc\\xf8\\x9c\\x02\\x3c\\x37\\x97\\xf1\\xa7\\x3a\\xf9\\x79\\x79\\x84\\x4a\\x15\\x53\\x0f\\xc7\\x31\\xb3\\x2a\\xcb\\x8a\\x6a\\x8a\\x2a\\x67\\x8c\\xe0\\x4e\\xf4\\x95\\x81\\xdf\\x48\\x4b\\x99\\x78\\x4b\\x56\\xca\\x4d\\xed\\xfb\\x10\\x09\\xf1\\xb9\\x89\\xcb\\x0f\\xd3\\x26\\xd0\\xa6\\x7c\\x4e\\xca\\xce\\x97\\x44\\x7a\\x2c\\xfc\\xc5\\xac\\x94\\x2d\\x9d\\x7a\\xdd\\x25\\xa8\\x9e\\x40\\x53\\x8e\\xa1\\xbd\\xfd\\x21\\xbb\\x47\\x46\\x0e\\x73\\xfd\\x83\\x61\\xa3\\x56\\xdb\\x63\\x10\\xd4\\x80\\xcb\\x25\\xd0\\xd1\\xa3\\x00\\x95\\xd1\\x9f\\x5f\\x7c\\x97\\x3c\\x63\\x1d\\xa0\\xa3\\xd9\\xcb\\xcf\\xae\\xd3\\xd8\\xb2\\xdd\\x7f\\x7d\\x61\\x5e\\x68\\x00\\x8d\\xa1\\x7d\\xf8\\x0f\\xf0\\xbf\\x82\\x5c\\x93\\x3c\\x52\\x10\\x32\\x0d\\x49\\x2e\\x2a\\x9d\\x28\\x6f\\x31\\x0c\\xea\\xb9\\x1a\\x54\\x0c\\x20\\x52\\x5e\\x94\\xf0\\x3c\\x5e\\xc1\\xc2\\x33\\x67\\x72\\x7c\\xa6\\xc8\\x62\\xf1\\xef\\xe1\\x46\\x46\\x3f\\x32\\x18\\x99\\x88\\x6e\\x04\\x33\\x1f\\x8d\\x0c\\x8e\\x47\\xdb\\x5f\\x1d\\x1d\\xe1\\xca\\xaf\\x79\\xf6\\x57\\x32\\xff\\x1d\\xe2\\xe5\\x3f\\x31\\x5a\\xe0\\x8e\\x06\\x33\\x18\\xd1\\x2f\\x8f\\x06\\x33\\xed\\x5f\\xe1\\xf2\\xa3\\xcf\\x34\\xbb\\x73\\x7c\\x0b\\x45\\x20\\x76\\x1d\\xec\\xcb\\x9c\\x64\\xe8\\xe6\\x5e\\x92\\x9b\\xb5\\xba\\xea\\xac\\xae\\x3a\\x35\\xdf\\x94\\xa6\\x3a\\xea\\x4b\\xab\\xab\\x95\\xca\\xea\\x6a\\xa5\\x87\\x5f\\x5e\\x63\\xb1\\x29\\x0c\\x5b\\xa4\\xaf\\xec\\x15\\xcc\\xab\\x7d\\x58\\x30\\x02\\x16\\x56\\x57\\x9d\\x33\\x67\\x9c\\x9a\\x6d\\xc7\\x22\\xed\\x16\\x95\\x5e\\x30\\x89\\xc4\\xbc\\xb2\\xcf\\x54\\xdb\\xb7\\xab\\xab\\x70\\x14\\x79\\x18\\xb5\\xff\\xb7\\xf0\\x40\\x43\\x3d\\x18\\xf3\\x71\\x88\\xe5\\x40\\x2b\\x58\\xe0\\x4c\\x2a\\xe4\\x98\\x58\\xe7\\x40\\x70\\xe3\\x8c\\x92\\x28\\x61\\x45\\xfd\\xcd\\xef\\xfc\\xfa\\xaf\\x67\\x78\\xcd\\x6e\\x37\\x34\\x3b\\xf3\\xf3\\x47\\xbe\\x83\\xd7\\xd3\\xe1\\xf6\\xc7\\x25\\xce\\xfa\\xce\\x91\\x5f\\x27\\x7c\\xc6\\xc6\\xc4\\xd6\\xf8\\xcc\\x77\\x8e\\x7c\\x81\\x93\\xda\\x2f\\x72\\xd2\\x1e\\x39\\x7e\\xfd\\x12\\xc8\\x14\\x7d\\x53\\xcd\\x9e\\x38\\x48\\x1c\\x39\\x7b\\x66\\x43\\xb9\\xd2\\x23\\x90\\x4c\\x9f\\x7d\\xe3\\x59\\xe5\\x8a\\xe3\\x61\\x67\\xbf\\x33\\x80\\xf0\\xbb\\x01\\x7d\\xd0\\x46\\x0f\\x01\\xd2\\x14\\x8b\\xbb\\x99\\xc4\\x29\\x29\\x8b\\x17\\xcd\\x65\\xac\\xba\\xc1\\x2f\\x29\\xb9\\x68\\x94\\x8a\\x42\\x2a\\x1b\\xd2\\x45\\xc9\\xfd\\xef\\x21\\x5a\\x1a\\x3a\\xe0\\x5d\\xce\\x07\\x21\\x34\\x06\\xb0\\x2c\\xa9\\xce\\xa9\\x2a\\x25\\x53\\xe7\\x65\\x83\\xc3\\xc9\\x21\\x4e\\x1a\\x1a\\x94\\x02\\x78\\x74\\x76\\x30\\x3c\\xf0\\xf6\\x4b\\x33\\x49\\xf1\\xfe\\x4b\\x78\\x22\\x8b\\x03\\x81\\x81\\x00\\x87\\x23\\x43\\x91\\xe4\\xe0\\xc8\\x60\\x28\\x34\\x1b\\x4b\\x1c\\xe4\\x43\\x33\\x4a\\x21\\x1c\\x1e\\x91\\xc3\\x83\\xb1\\xa4\\x16\\xe3\\x0b\\x9a\\x96\\x88\\xb5\\xef\\xbd\\x1e\\x26\\xd6\\x9f\\x54\\xa6\\xf8\\x78\\x70\\xa4\\x6c\\x8c\\x45\\x42\\xf9\\xd1\\x58\\xe2\\xd4\\x0f\\x8f\\x4d\\x1c\\x9c\\x79\\xf3\\x9b\\x0d\\x29\\x18\\x0a\\x06\\x03\\x38\\x38\\x80\\x03\\xe1\\x60\\x24\\x14\\x1d\\x8a\\x96\\xe2\\x03\\x6a\\x6c\\x28\\x2b\\x85\\x23\\xc1\\x70\\x24\\x10\\x1c\\x1c\\x96\\x94\\x91\\x81\\xec\\xa4\\x30\\x10\\x3c\\x54\\xba\\x83\\xbe\\xc6\\x78\\x8f\\x1e\\x44\\xef\\xc4\\x5f\\xc6\\xef\\x46\\x07\\xd0\\x0f\\x21\\x84\\xe9\\xc5\\x0d\\x2c\\x8a\\x7b\\x5e\\x9e\\x08\\xd7\\x87\\xe9\\xf5\\xf5\\x5e\\x21\\x07\\x67\\x15\\xe9\\x39\\x92\\xa8\\x2f\\x96\\x01\\xa2\\xd5\\xac\\x18\\xe5\\x4e\\xf4\\x12\\x20\\xa3\\xbf\\x35\\x87\\x71\\x30\\x30\\x10\\x08\\xe3\\x48\\x24\\x9a\\x18\\x1c\\xe1\\xc2\\xa1\\xd9\\x58\\xf2\\x00\\x1f\\x9a\\x16\\xf9\\x42\\x38\\xcc\\x85\\x46\\x27\\x52\\x09\\x76\\xb1\\xc9\\xd8\\xc7\\xb5\\x31\\xe9\\xcc\\x02\\x89\\x0e\\xf3\\xda\\x7c\\x26\\x9d\\x8f\\x04\\x94\\xcc\\x50\\x50\\xdb\\xc7\\x8f\\x2a\\x1a\\x2e\\x48\\xc1\\x81\\x60\\x10\\x07\\x77\\x5d\\x6a\\x3c\\x4e\\xaf\\x35\\x18\\x18\\x08\\x0f\\xc7\\xc6\\xe0\\x5a\\x53\\xa1\\x60\\x76\\x54\\x2b\\x25\\x52\\x4a\\x31\\x35\\x38\\x74\\x7f\\x41\\x0a\\x45\\x95\\x54\\x38\\x32\\x97\\x0c\\x4d\\x9d\\xf6\\xd6\\x4e\\x02\\x3e\\x14\\xae\\xc3\\x05\\xee\\x65\\x69\\xf8\\x72\\xd1\\x4c\\x51\\x02\\xf2\\x0b\\x41\\x36\\x5c\\xda\\x44\\xa2\\xdd\\xb8\\x75\\xe3\\xc6\\xc5\\xa3\\x66\\x76\\x74\\xe4\\x2b\\x1a\\x71\\x18\\x89\\xf6\\x4b\\xc6\\xb1\\x0b\\x37\\x6f\\x7e\\xf4\\x26\\xc9\\x0d\\xf3\\x9f\\x76\\x1c\\x0c\\x80\\xe2\\x21\\x54\\x72\\xfd\\x34\\x1e\\x4b\\xc8\\x02\\xb0\\xab\\x02\\x63\\x64\\xd0\\x87\\x9c\\x0e\\xa2\\x85\\x20\\x1b\\x39\\x0c\\x3d\\xda\\xa5\\x8c\\x04\\x4d\\x4b\\x9d\\xfa\\xed\\xd4\\xe5\\x77\\xe3\\xb7\\x8f\\x57\\x16\\x0f\\x5c\\xbc\\x91\\x5f\\xfa\\x4d\\x8d\\x38\\xdb\\xd9\\xac\\x96\\xcf\\xa5\\x2e\\x2f\\x4f\\x17\\xf3\\xfb\\x0e\\xdd\\x63\\xd8\\xc2\\x6f\\x17\\x67\\x96\\xd7\\x70\\xb5\\xfd\\xde\\xf1\\x4a\\xfe\\xe6\\x85\\x43\\xfb\\x96\\x1e\\xcc\\xde\\xfb\\x1f\\x09\\x39\\x9b\\xcd\\x19\\xc7\\x0e\\xed\\xcb\\x15\\x67\\x96\\x2f\\xa7\\x72\\x79\\xc8\\x11\\x18\\xec\\xc1\\x73\\x1a\\x46\\x09\\x68\\x5b\\x01\\x6c\\x5d\\x15\\x53\\x16\\xa4\\x8a\\x29\\x4f\\xe2\\x8a\\x29\\x1b\\x82\\xae\\x2c\\x60\\x6f\\x13\\xe4\\xe9\\x02\\xd5\\x81\\x2c\\xfc\\x85\\x40\\xe0\\x43\\x37\\x62\\xc1\\x77\\xe5\\xb3\\xcb\\x1f\\x0a\\x04\\x7e\\xf2\\x5d\\xc1\\xd8\\x8d\\xe5\\xec\\x99\\x95\\xcb\\x97\\x07\\xe0\\xf9\\x6b\\x85\\x47\\x45\\x8b\\x0f\\x89\\xcb\\x03\\xa3\\x4d\\x71\\x34\\x6c\\x89\\x21\\x7e\\x39\\x35\\xda\\xfe\\x15\\x7c\\x3f\\x5d\\xa4\\xf0\\x5b\\x3b\\xf6\\x22\\xe2\\x72\\x8e\\x0d\\x52\\x99\\x3a\\xc9\\xec\\xe5\\xb2\\x21\\x79\\x68\\xe7\\x1d\\x68\\x14\\x53\\x92\\xf9\\x42\\xcb\\xe1\\x33\\xc4\\xb1\\x89\\x65\\x69\\x5b\\x7c\\xc6\\x86\\x1d\\xac\\x61\\x9b\\x64\\x78\\xc7\\x01\\x48\\xb6\\x0c\\xbf\\x45\\x88\\x65\\xdd\\xe9\\xb3\\xe7\\xf9\\x59\\xc7\\xdd\\x68\\x44\\x49\\x36\\x74\\xc8\\x22\\x97\\x0d\\x5d\\x92\\xd9\\xc1\\xa0\\xc7\\x2b\\x6f\\x11\\x1b\\x82\\x82\\x5a\\x84\\xd8\\xb6\\xa3\\x69\\x8d\\x46\\xab\\xd5\\x72\\x1c\\x6c\\x01\\x73\\x8c\\x46\\x1c\\xa2\\xb5\\x1c\\x02\\x70\\xeb\\x1a\\xc3\\x8d\\xb2\\x5e\\x15\\x37\\xca\\xc5\\x02\\x13\\x0c\\x1f\\xbb\\x7c\\x97\\xd9\\x86\\x3e\\x38\\x1d\\x76\\x10\\x8f\\xf5\\x06\\x3b\\xb6\\x6d\\x37\\xab\\x4d\\xbb\\x69\\xef\\xd8\\xcd\\x6a\\x75\\xc3\\x16\\xe0\\x83\\x6d\\xe3\\xba\\xdd\\xf2\\x16\\xd0\\x8d\\x6a\\x95\\x1e\\xaa\\x31\\x2e\\xbc\\x1a\\xe3\\xc5\\xec\\x6d\\x4b\\x87\\x03\\xa1\\x00\\xd8\\xe1\\xf5\\x76\\xad\\x8e\\x51\\xbb\\xe6\\xe0\\xba\\xb3\\x55\\xaf\\xd7\\xeb\\x1d\\x9e\\x5c\\xfc\\x77\\xe0\\xfb\\xca\\x52\\x4d\\xcd\\x74\\xf9\\x95\\x4b\\x3a\\x27\\xab\\x9c\\xac\\x76\\xb3\\x8f\\x75\\xc9\\xd4\\xa5\\x92\\x29\\xfd\\x87\\xe9\\xe3\\xe4\\xf8\\x4c\\xfc\\x38\\x1e\\x54\\x67\\x4b\\xf9\\xbc\\x12\\x10\\xee\\xdf\\x7f\\xea\\xda\\xb5\\x53\\xf7\\xeb\\xa3\\x99\\x7c\\x31\\xdf\\xde\\x4e\\x8f\\x35\\x9a\\x4d\\x6d\\xb3\\xf9\\xee\\x77\\x47\\x48\\xf9\\xfa\\xfb\\xaf\\x5b\\xcf\\x3e\\xfb\\xec\\xc8\\xf9\\xf3\\xdf\\x17\\x6c\\xcd\\x30\\x12\\x50\\x01\\xef\\xe0\\x57\\xe0\\x1a\\x3b\\x9c\\x26\\x1e\\x46\\xab\\x0a\\xa5\\x16\\x5d\\x6e\\x2c\\x4e\\x90\\x0d\\xc9\\xf5\\x21\\xe3\\x1b\\x59\\x25\\x2b\\x58\\x56\\x0d\\x78\\xc0\\xe4\\x49\\x67\\xc7\\xda\\xd6\\xbe\\xa2\\x64\\x95\\x67\\x26\\x95\\xec\\x57\\xc9\\x7b\\xf8\\x43\\xb2\\xb1\\xba\\x6a\\xc8\\x87\\xf8\\x37\\x34\\x09\\xb9\\xb3\\xb2\\x72\\x49\\xcd\\xaa\\xcc\\x3f\\x4d\\xeb\\xfb\\x6b\\x17\\xc3\\xa8\\xc7\\x3f\\xbd\\x82\\x25\\xba\\x8c\\x0b\\xde\\xb3\\x11\\xd2\\x05\\x99\\x33\\x25\\x2e\\xe9\\xfa\\xa7\\x69\\xfd\\x26\\xa7\\x9a\\x67\\x95\\xac\\xf2\\xa3\\xda\\x19\\x37\\xdf\\xcb\\xb2\\x96\\xb2\\x4a\\x36\\x0b\\xc7\\x36\\xad\\xb7\\x67\\x95\\xec\\xe3\\x6a\\x56\\x35\\x56\\x56\\xf0\\x06\\x73\\x69\\x90\\xa7\\x26\\x95\\x2c\\x5e\\x55\\xb2\\x8a\\xb1\\xb2\\xf2\\x4d\\x42\\xde\\x96\\x55\\xb2\\xfd\\x5c\\x82\\x29\\x88\\xcf\\x30\\x64\\x61\\xe5\\xee\\x41\\x11\\x8d\\x9a\\x51\\xd9\\x9d\\x59\\x8f\\x1a\\x8d\\xfc\\x4b\\x7b\\xa6\\xd5\\x77\\xf1\\x1f\\x98\\xfe\\x59\\x50\\x39\\xb5\\xd4\\x57\\x7a\\x8d\\xaa\\x9f\\x15\\x1c\\x1d\\x1d\\x1f\\x1f\\xa5\\x32\\xdd\\xf8\\x68\\xdd\\x59\\xb7\\x5e\\x1e\\x1f\\x6d\\x6f\\x8f\\x8e\\x53\\xa1\\x71\\x74\\x1c\\x8d\\xf8\\xca\\x61\\x4f\\xc4\\x18\\x9a\\x00\\x7f\\xe4\\x0c\\x9a\\x43\\xfb\\x51\\x05\\x1d\\x42\\xcb\\x30\\xd2\\xb8\\x05\\xcc\\x1a\\x9b\\xf4\\x7c\\xbf\\x82\\x5c\\xae\\x60\\x9d\\x79\\xab\\x43\\x10\\xc4\\x2b\\xb2\\x27\\x53\\xd5\\x05\\x39\\x99\\x0a\\xcb\\x47\\xb0\\xfb\\xa8\\x5a\\xad\\xe3\\x86\\xba\\x8e\\x09\\xbd\\x90\\xaa\\xcb\\xc0\\x30\\x8e\\x97\\x34\\x4d\\xd3\\xda\\x5b\\x84\\xe0\\xc6\\xe8\\x38\\x01\\xd7\\xf0\\xf6\\xf8\\x28\\x40\\xd6\\xbc\\xe6\\xc4\\xfc\\xeb\\x5b\\x19\\x9e\\xd1\\x61\\x91\\xd1\\xf1\\x76\\x83\\x60\\xfa\\x54\\x3b\\xe3\\xa3\\xf4\\xb9\\xa6\\x17\\x40\\xb6\\x34\\x42\\x50\\xbc\\x8f\\xdb\\x79\\x14\\x62\\x46\\xe9\\x15\\xa8\\x68\\x16\\xed\\x43\\x65\\x74\\x10\\x1d\\x41\\x47\\x19\\xf7\\x90\\xee\\xdd\\x67\\x68\\xb9\\x4b\\x48\\x16\\x74\\xff\\x92\\x0c\\xfa\\x1e\\xdc\\xf0\\x1d\\xc2\\xb2\\x54\\x98\\xf9\\x50\\xe8\\x81\\x3a\\x70\\x52\\x11\\x32\\x8e\\xaf\\x83\\x37\\xba\\x45\\x08\\x9f\\xd9\\x6e\\x41\\xd3\\x1d\\xaf\\xe5\\xb8\\xe9\\x12\\xfc\\x34\\x58\\xab\\x81\\xdc\\xa5\\xed\\x32\\xdb\\xb4\\x5b\\x19\\xde\\x76\\x30\\x5c\\x04\\x81\\xe3\\x70\\x19\\x9a\\xcb\\x65\\x12\\xf0\\xe1\\x52\\xfa\\x24\\xa8\\xfe\\xdb\\xfa\\xcf\\x3e\\x70\\xed\\xda\\x07\\xae\\xe1\\x5a\\x57\\x54\\x67\\x29\\x93\\xdf\\xee\\xb7\\x39\\x73\\xe8\\x2c\\x2a\\xe0\\x5f\\x75\\x9f\\x07\\x1f\\x0f\\x93\\xa9\\x9a\\x52\\x90\\x3e\\x67\\x9c\\x6a\\x72\\xb2\\xa1\\x27\\x25\\x6e\\x01\\xbb\\xa8\\xc9\\x1b\\x59\\x25\\x7b\\x3c\\xab\\x64\\xf1\\xb1\\xac\\x92\\x7d\\x9b\\xa6\\xfd\\x68\\x56\\xc9\\xbe\\x57\\xd3\\x1c\\xac\\x55\\x73\\x4a\\x16\\x4f\\x65\\x95\\x6c\\xfb\\xff\\xcd\\xaa\\xd9\\xa7\\x57\\xf0\\xeb\\xb2\\x4a\\xf6\\x35\\x2b\\xb7\\xc1\\x0e\\xd7\\xe5\\x39\\x19\\x45\\x69\\x54\\x42\\xfb\\xf7\\xc8\\xdb\\x90\\xbc\\x30\\xd9\\x20\\x23\\x2b\\x55\\x39\\x75\\xb1\\x12\\x34\\xa5\\x22\\x5d\\x63\\x55\\x3d\\x8b\\x1b\\xb4\\x93\\xb6\\x12\\x69\\x42\\xc8\\x96\\xe3\\xf0\\x99\\x77\\x31\\xae\\x52\\x63\\xf2\\xbe\\xe0\\xe0\\xeb\\xe8\\x26\\xc8\\x0e\\x34\\x08\\x61\\x6b\\xc8\\xb6\\x43\\xd2\\x09\\x07\\x93\\x1f\\x7f\\xe4\\xf0\\x7a\\x7a\\xe2\\x3e\\xdc\\xf6\\x68\\x4d\\x7d\\x72\\xf6\\x20\\x1a\\x45\\x53\\x68\\x16\\xe2\\xf7\\x16\\x45\\x41\\x2f\\x2b\\xb2\\x10\\xf0\\x8c\\x7c\\xba\\xd0\\xab\\x2e\\x08\\x8b\\xa2\\x6a\\x30\\x7f\\x44\\xc0\\x35\\x8a\\x60\\x3b\\x91\\x9e\\xd0\\x26\\x7f\\x14\\x74\\xe4\\xed\\x0d\\x9f\\x12\\x91\\x48\\x8b\\xc6\\xea\\xc4\\xd2\\x97\\xc1\\x40\\x82\\x9d\\x74\\x62\\x52\\x9b\\x68\\xef\\x2c\\xd3\\x13\\x7f\\x7a\\x87\\xa1\\xf4\\xf0\\x19\\x62\\xa5\\xdf\\x30\\xb1\\x6a\\xcc\\x2c\\xb5\\xef\\x1c\\x9a\\x9e\\x3e\\xa4\\xba\\x7d\\x45\\x20\\x8e\\x26\\x82\\x78\\xb0\\x63\\xa0\\x4a\\x19\\x04\\x36\\x1f\\x1c\\x8f\\x0a\\x3d\\xe6\\x33\\xd5\\x1c\\x09\\xea\\x1d\\xd3\\xf7\\xd7\\xa7\\x27\\x26\\xa7\\xa7\\x0f\\xc5\\x69\\x55\\xcb\\xc4\\xaa\\xab\\xc7\\x61\\x30\\x34\\x68\\x75\\x16\\xb1\\xfe\\xe9\\xa1\\xe9\\xe9\\xc9\\x89\\x69\\x05\\x9a\\xf2\\x6e\\x58\\x70\\x19\\x27\\xc1\\xb6\\xc3\\xf0\\x42\\xfa\\x31\\x5c\\xa7\\x11\\xc2\\x2e\\x82\\x06\\xe7\\x21\\x69\\xdc\\xd5\\x36\\xfd\\xe8\\xec\\x6c\\x2a\\x35\\x3b\\x9b\\xba\\xbe\\xb4\\x34\\x9e\\x59\\x5a\\xca\\x34\\xf6\\xb4\\x55\\x63\\x38\\x27\\x35\\x9b\\xc9\\x8c\\xc3\\x79\\x30\\xa3\\xb9\\x7a\\x96\\x45\\xff\\xf9\\xf5\\x5f\\xda\\x86\\x22\\x42\\x58\\x8a\\xe3\\x05\\xbc\\x82\\x25\\xba\\xc9\\x61\\x4e\\xea\\xbd\\x3d\\x82\\xcc\\x17\\xf0\\xf8\\xa1\\x43\\xe3\\xf4\\xaf\\xc6\\x8a\\x9f\\x95\\x34\\xcf\\x07\\xd5\\x6c\\x62\\x82\\xc7\\xc7\\xd9\\x09\\xda\\xac\\x5b\\x7f\\xd3\\x7b\\x22\\x48\\x7b\\xdb\\x8d\\x1b\\x66\\xdc\\xc9\\x03\\xee\\x4c\\x01\\x73\\x9b\\xda\\x6f\\x15\\x92\\x75\\x5e\\x0e\\xea\\xbc\\xbc\\xd3\\x3a\\x5e\\x51\\x5e\\x8a\\x0c\\x0f\\x47\\xee\\x80\\x0e\\xb7\\x01\\xce\\xd1\\xfa\\x95\\xe3\\xf3\\xbf\\x16\\x73\\x0f\\x51\\xe5\\x8e\\x2a\\xe8\\x50\\x7e\\xa0\\x13\\xf7\\x13\\xa2\\xf3\\xb2\\x8b\\xfb\\x0c\\x85\\xc7\\xb1\\xea\\x02\\xf5\\x36\\xb3\\x2f\\x9e\\xcd\\xd2\\x36\\x25\\x3f\\xf3\\x99\\x64\\x86\\x6f\\xc0\\xe7\\xed\\x0c\\xdf\\xfe\\x7f\\x84\\x91\\xc7\\x1f\\x1f\\x11\\x70\\xca\\xcd\\x19\\xa2\\x63\\xf8\\x0f\\x00\\xa7\\x25\\xe3\\xea\\xa2\\xcc\\xe5\\xa2\\x9b\\x62\\x1c\\x7b\\x9e\\xef\\xca\\xa2\\x84\\xc9\\x99\\x33\\xb5\\x48\\x4c\\xab\\xfe\\xe3\\x91\\x91\\x66\\x38\\x11\\x6e\\x86\\xc3\\xf4\\xed\\xe5\\x33\\xab\\xc6\\x70\\xc4\\xb6\\xe2\\xa3\\x23\\xee\\x91\\x66\\x38\\x4c\\xd7\\x65\\x86\\xf9\\xfc\\x0a\\xf4\\x7b\\x09\\x38\\x3c\\x8f\\xec\\xf6\\xea\\xab\\x30\\x0b\\x7a\\x1a\\x7c\\x0e\\x8b\\xba\\x50\\x5c\\xc0\\x81\\xfe\\x58\\x02\\xcf\\x62\\xf5\\xd6\\xe5\\xd9\\xd9\\x65\\x32\\x79\\x65\\x79\\xf9\\xca\\x91\\x13\\x0b\\xda\\x89\\x58\\xec\\xf0\\xa0\\x98\\x8c\\xcf\\xe4\\x67\\x57\\xe6\\xf8\\xdf\\x59\\x26\\x64\\x79\\x36\\x7b\\xe5\\xc8\\x91\\x2b\\xcb\\xf8\\x21\\x88\\x9e\\x59\\x25\\xf4\\x07\\xcf\\x2f\\xd3\\x63\\x3f\\xb4\\xff\\x3d\\x1b\\x87\\x07\\xc5\\x44\\xec\\x70\\x2c\\x36\\x93\\x27\\x73\\x7c\\xfb\\x6f\\x7d\\xdf\\x7e\\xc5\\xe5\\xf5\\x1c\\x70\\xf1\\xfa\\xbd\\xb8\\x81\\xfd\\x2c\\x66\\x49\\xdc\\x85\\x9d\\xe3\\x82\\x29\\x72\\x1d\\x6e\\x99\\x2e\\xcb\\x8c\\x82\\x9d\\x3b\\xe8\\x1b\\xe0\\x8f\\xf8\\x25\\xd8\\x92\\xb5\\x4f\\xac\\x89\\xb1\\x88\\x10\\x19\\xde\\x1a\\x8e\\x08\\x91\\x98\\x88\\x85\\x5a\\xcd\\xf1\\xe9\\xd1\\xc1\\x96\\x5e\\x2c\\xea\\xad\\x89\\x94\\x42\\x6f\\xb6\\x28\\xd2\\xad\\x92\\xf2\\xdb\\xf6\\xea\\x6e\\x7b\\xe6\\xa8\\x14\\xa7\\xca\\xfd\\xed\\x29\\x49\\x9d\\xda\\x0b\\x9d\\x3d\\xb3\\xb2\\x84\\x17\\x6b\\x58\\xcb\\xdf\\xfe\\x03\\xa8\\xe7\\xff\\xcf\\x48\\x7b\\x66\\x66\\x63\\x11\\x31\\x12\\xbb\\x83\\xe0\\x6d\\x36\\x9c\\xbe\\x9d\\xc6\\xc2\\xfa\\x57\\x7d\\xcd\\xf9\\xb2\\xd3\\xe8\\xb6\\xa3\\xe1\\x08\\x20\\x6b\\x94\\xee\\xb4\\xf1\\xef\\x43\\xac\\x59\\x11\\x19\\x74\\xad\\x33\\x25\\x03\\xab\\xca\\x0a\\xee\\x20\\x15\\xd2\\x0e\\x91\\xc4\\x38\\x96\\x8b\\x6a\\xb8\\xa8\\x86\\x61\\xbd\\x2e\\xaa\\x61\\x95\\x51\\x76\\x98\\xe2\\xa2\\x29\\x3a\\x8e\\xd3\\xfe\\xe6\\x34\\x27\\x8c\\x67\\x78\\xcb\\xb1\\xf8\\xcc\\xb8\\xc0\\x4d\\xe3\\xfd\\xa5\\xd2\\x7a\\xa9\\xb4\\x1f\\x57\\x35\\x6d\\x6e\\xc6\\xb6\\x67\\xe6\\x34\\x6d\\x7e\\x5a\\x7d\\x48\\x9d\\xc6\\x8e\\xad\\x69\\x76\\x7b\\xe7\\x03\\x29\\x2e\\xf2\\x08\\xc3\\xcf\\x79\\x24\\xc2\\xa5\\x3e\\xc0\\x22\\xb5\\x84\\xd9\\x59\\x81\\x4c\\x8c\\x8f\\x4f\\x20\\x17\\x87\\xac\\x7b\\xdf\\xe2\\x48\\x82\\x4c\\x16\\x43\\xee\\xdc\\x39\\xd5\\xb7\\x9f\\xf0\\x62\\xc0\\x85\\x82\\x61\\x82\\x85\\x0a\\x3b\\xb5\\x23\\x70\\xab\\xec\\x1a\\x38\\x51\\x12\\x73\\x9f\\x58\\x9b\\xcd\\xe5\\xef\\xa0\\x7c\\x6e\\xb6\\x7b\\xb3\\x7e\\xd8\\xdb\\xc1\\x73\\x45\\xfd\\xe5\\x1c\\xc9\\x47\\xa3\\x79\\x92\\x7b\\x59\\xef\\xf0\\x36\\x34\\x5c\\xdc\\xc2\\xc9\\xde\\x51\\xd3\\x19\\x2d\\x9d\\x2a\\xe9\\x08\\x61\\xf1\\x5f\\xce\\x9a\\xaf\\x26\\xb2\\xb1\\xb1\\x09\\xc1\\x31\\xe1\\x57\\x74\\x59\\xd6\\x5f\\x71\\xab\\xf8\\x7b\\x70\\x7d\\x01\\xc0\\x12\\xae\\xe3\\x57\\x00\\xf5\\x05\\x25\\x83\\xba\\x09\\x30\\xaa\\xa6\\xa8\\x1b\\x74\\x8e\\x90\\x8b\\x61\\x99\\x13\\x74\\xc3\\xf4\\x22\\xe0\\xbe\\x7e\\x78\\x4e\\x9d\\x25\\x73\\xc3\\xf3\\xa7\\x96\\x27\\xc5\\xb8\\x10\\x8c\\x06\\x1f\\x23\\xca\\x3a\\xa3\\xdb\\x3d\\xd6\\xfe\\xb7\\x0d\\xe2\\xdc\\x22\\x96\\xa1\\x95\\x8b\\x42\\x60\\xe1\\xda\\xe9\\xf8\\xbd\\xee\\xf3\\xc7\\xe6\\xa3\\x26\\x6e\\x21\\x84\\x04\\x84\\x92\\x92\\x2a\\x48\\x82\\xca\\x19\\xa6\\x41\\xff\\x58\\x37\\x4a\\xbf\\xf7\\xa7\\x0d\\xb2\\x7a\\x46\\xdb\\xda\\x4a\\x66\\x92\\x0d\\x6c\\xd5\\x8d\\x27\\xf2\\x79\\x41\\xc8\\xe7\\x9f\\x30\\xb4\\xda\\x13\\xc3\\xc9\\xe4\\xf0\\x13\\x35\\xe4\\xf3\\x7b\\xd5\\xd1\\x08\\x60\\x18\\x30\\x8d\\xb2\\x00\\xc2\\xa4\\x6e\\x74\\x00\\x77\\xea\\xb2\\x0e\\x3c\\x10\\x8d\\xc3\\x0c\\x0c\\xb5\\xa6\\xcb\\x4d\\xcb\\xc2\\x56\\x73\\xd3\\x01\\x13\\x35\\xcc\\xb7\\x2b\\x2e\\x0e\\xd4\\x30\\x42\\xa5\\x79\\xac\\x9a\\xd2\\x08\\xe6\\x00\\x97\\x15\\xa3\\xc8\\x07\\x95\\x66\\x53\\xf9\\xc9\\xa1\\x8f\\xc8\\xcd\\xa6\\xdc\\xe0\\x6e\\x4e\\xd6\\xeb\\x93\\x37\\x56\\xde\\x3e\\x5e\\xaf\\x8f\\xb3\\x35\\x70\\x05\\xf4\\xda\\x38\\xac\\x05\\xc0\\xbc\\xc1\\xa9\\xa6\\x64\\xaa\\x1c\\x2d\\x47\\x0d\\x85\\x39\\xd5\\x4c\\xaa\\xa6\\x74\\x12\\xff\\xc3\\xf1\\x8b\\x1b\\x4d\\xf9\\x23\\xab\\xd9\\xb9\\xc8\\x07\\x95\\x13\\x57\\x70\\x7d\\x7c\\xe9\\x93\\xcb\\xbf\\x98\\x4b\\xe7\\xf0\\x4e\\xfb\\xc6\\xf8\\x7d\\xf7\\xd7\\xc7\\xdf\\xbe\\x94\\x2d\\x72\\x37\\x27\\x2b\\x57\\x7e\\x52\\x98\\xff\\xe4\\xbe\\xf6\\x4e\\x2e\\x99\\xed\\xc4\\x63\\xd0\\xf6\\xa5\\x10\\x2a\\xed\\xd5\\x61\\xb8\\xe9\\xeb\\xb0\\xc6\\x5e\\xdd\\x15\\xec\\x89\\xfd\\xd1\\x5f\\x25\\xcb\\xa6\\x1b\\xd5\\xef\\xea\\xcf\\xdd\\x64\\x29\\x16\\x05\\xd4\\x45\\x47\\xdf\\x24\\xb6\\x05\\x13\\x89\\xe6\\xed\\xb8\\xf1\\x40\\xe9\\xc4\\x1d\\xe4\\xa1\\xa5\\xb7\\x6f\\x8b\\x9a\\x4b\\xfb\\xdf\\xd9\\xf1\\xfb\\xd8\\x22\\x90\\xf3\\xa3\\x82\\xc8\\x20\\x71\\x66\\x25\\x25\\xea\\x1d\\x9c\\x8b\\x45\\xb0\\x90\\x18\\x1e\\x24\\x6b\\x11\\x9f\\x95\\x4e\\x5e\\x29\\x14\\x5e\\x73\\x4a\\x3a\\xdb\\x48\\xf3\\x4c\\x64\\x48\\x8c\\xd1\\x3d\\x5c\\xe5\\xd3\\xfc\\x87\\x2f\\x1f\\x0a\\x3d\\xf0\\x40\\xe8\\xd0\\xe5\\xfd\\x27\\x8b\\x19\\x96\\xa2\\x9a\\x4e\\xf0\\xee\\x5e\\x6f\\xfe\\x6c\\x1c\\xa1\\xa4\\x6e\\xce\\x60\\xce\\x75\\x5d\\xab\\x46\\xe1\\x63\\x5f\\x56\\xda\\xff\\x15\\x9f\\x6a\\xd4\\xee\\xa0\\x5a\\x03\\x3b\\xb8\\xa6\\x35\\x37\\x08\\xd9\\x68\\x76\\xf0\\xc7\\xba\\xb8\\xdf\\x69\\x86\\x66\\xcc\\xfb\\x63\\xf1\\x3a\\xd3\\x32\\xd0\\x8c\\xd0\\xee\\x21\\x8b\\xb2\\x23\\xeb\\x16\\x21\\x98\\xea\\xa1\\xe9\\x84\\x95\\x18\\xb3\\x64\\x5d\\x97\\x5b\\x20\\x57\\xb3\\x35\\xfe\\x5b\\x9d\\x79\\xff\\x00\\xba\\x07\\x9d\\x07\\x2d\\xec\\x7f\\x62\\xf6\\x57\\x40\\xf5\\x5d\\xc1\\xa2\\x90\\x12\\xf7\\xdc\\xfd\\xae\\xcb\\x03\\x37\\x76\\x7b\\x6c\\x27\\x93\\x1c\\x1d\\x1c\\xcc\\x3f\\x38\\x91\\xa0\\x6f\\x6b\\xec\\xd3\\xce\\xfa\\xcb\\x6c\\x2a\\x81\\xd7\\xbf\\x74\\xb6\\x00\\x75\\x01\\xb0\\x17\\xb6\\x1c\\x51\\x4b\\x0e\\x47\\x26\\x87\\x86\\x4a\\x02\\x1d\\x5f\\xbb\\xf6\\xfc\\xb2\\x21\\x68\\xd4\\x5d\\xc6\\x7f\\x1d\\x10\\x22\\x60\\x5c\\x19\\xb2\\x01\\xa6\\x53\\x40\\x46\\x33\\x0a\\xd8\\x16\\x04\\x91\\xd8\\x96\\xa6\\x59\\xa4\\x65\\x6d\\x55\\xb7\\x2c\\xac\\x61\\x54\\x63\\x90\\xcb\\xa2\\x60\\x09\\xa2\\xd5\\xbe\\x5d\\xad\\x62\\xd1\\x72\\xfd\\x1e\\xec\\x99\\x08\\xa2\\x11\\x88\\x83\\x30\\x0b\\x92\\x08\\xe3\\x65\\x01\\x87\\x85\\x54\\xb0\\x10\\x1c\\xc1\\xb4\\xa3\\x54\\xfc\\x6c\\xa4\\xfd\\x4a\\xe4\\x87\\xcb\\x4a\\x7e\\x74\\xd4\\x72\\xb0\\x43\\x02\\x63\\xa3\\xdb\\xa3\\x63\\x01\\x6c\\x57\\xab\\xb7\\x95\\x4c\\xf2\\x50\\x32\\x79\\x9a\\x64\\xf0\\xf1\\xf6\\xdb\\x47\\x05\\x61\\xb4\\xdf\\x66\\xb8\\x1f\\x99\\x54\\xae\\x41\\x6e\\xd4\\x20\\x57\\x36\\x5d\\x86\\x14\\xf7\\xd1\\x63\\x22\\x37\\xe7\\x62\\xa6\\x08\\x8c\\x1a\\x9c\\xea\\x22\\x52\\x51\\xa1\\x4a\\x40\\xb9\\xa2\\xa7\\xc2\\x58\\x9c\\xcd\\xe5\\x66\\x73\\x5f\\xcc\\xe5\\xf2\\x62\\x3c\\x9e\\x9b\\xcd\\xc5\\xe3\\x62\\x9e\\x7e\\xe0\\x87\\x73\\xb3\\xb9\\x61\\x5e\\xcc\\x3f\\x77\\xf1\\xc6\\xc5\\x1b\\x37\\x2e\\xde\\xc0\\xef\\x03\\x8c\\xcc\\x93\\x85\\x78\\xbc\\x20\\xe6\\x87\\x06\\xc4\\x7c\\x5e\\x1c\\x18\\xca\\x8b\\xf0\\x39\\x17\\x19\\x10\\x73\\x39\\x71\\x20\\x92\\xfb\\x2f\\x37\\x2f\\xdc\\xbc\\x70\\xe1\\xe6\\x85\\x9b\\xee\\xba\\xf4\\x92\\x6b\\xfb\\x32\\xba\\x31\\x09\\x9c\\x21\\x0b\\xa5\\x0e\\x59\\x39\\xed\\x62\\x1f\\x00\\xc7\\x24\\x66\\xec\\x6c\\x9e\\x61\\xd2\\xc4\\x4f\\x82\\x43\\xa5\\xe6\\x60\\x85\\xb6\\x2f\\xbf\\x0d\\x39\\xe7\\x02\\x9f\\x89\\x25\\x62\\x91\\x98\\x98\\x2b\\xce\\x49\\x98\\x30\\x00\\xa4\\x8d\\x8d\\xa5\\xb8\\xf4\\x32\\x20\\x55\\xde\\xc2\\xf0\\x68\\xd5\\x33\\xfc\\x3a\\x7d\\xfa\\x3f\\x3c\\x90\\x13\\xa7\\x46\\xe6\\x44\\xe4\\xc6\\x8f\\x12\\x77\\x4e\\x05\\x5c\\x0e\\x2f\\x5e\\x14\\xeb\\x52\\x81\\x76\\x59\\x1c\\x87\\x09\\x8e\\xe3\\xd4\\x12\\x06\\x83\\x40\\x79\\x05\\xab\\x72\\xc7\\x4b\\xc1\\x82\\x4a\\xdb\\xad\\x93\\x29\\x7c\\x38\\x12\\x0b\\x9e\\x8d\\xa5\\x3f\\x96\\xc4\\xa1\\xff\\x46\\x15\\x90\\xd0\\xe4\\x39\\xc2\\x42\\xa7\\x19\\x62\\x09\\x7e\\x4c\\x1b\\x8e\\x84\\x42\\xcf\\x8b\\x72\\x30\\x44\\x32\\xfc\\xd0\\x90\\xf1\\x62\\xbb\\xc5\\x22\\xa5\\xbb\\xcf\\xbb\\xc7\\x13\\x77\\x57\\x84\\x42\\xec\\xd8\\x55\\xdb\\xae\\x6e\\x74\\x1d\\x64\\x2d\\xfa\\xd9\\xb6\\x77\\xfa\\x14\\xe2\\xef\\xd7\\x9a\\x13\\xea\\xf8\\xec\\x99\\xaf\\x43\\xa5\\x92\\x5f\\xc7\\xdf\\xe1\\x8e\\x36\\x1f\\x17\\x46\\xef\\x3c\\x6d\\xd2\\x7e\\x62\\xb8\\x47\\x0c\\x4e\\x4e\\x87\\x6d\\x9d\\xce\\xb9\\x6c\\xe6\\x3d\\xfe\\x54\\x7a\\xf1\\xa4\\x0d\\x3a\\x3d\\x8e\\xfa\\xc0\\xe6\\x4c\\x6f\\xee\\xa6\\xf3\\x78\\xfb\\x37\\xde\\x96\\x3e\\xb5\\x08\\xfd\\x94\\x73\\xef\\x15\\x4f\\xc7\\x3a\\xbb\\x08\\x0e\\xa2\\x12\\x15\\xd9\\x58\\x74\\x01\\x14\\xad\\x8b\\x37\\x1e\\xbb\\xef\\xbe\\xc7\\x6e\\x60\\x1b\\xae\\xe1\\xe6\\xea\\xed\\xb3\\x67\\x6f\\xfb\\x9e\\xc5\\x1d\\xf0\\x7a\\xaa\\x70\\x1d\\x86\\x0c\\x66\\x39\\x39\\x55\\x81\\x88\\x4a\\xa9\\xdf\\xab\\x06\\x71\\x42\\xdf\\x5c\\x5b\\x21\\x4a\\x59\\x21\\xef\\x2d\\x2b\\x8e\\x2f\\xbc\\x4b\\x5b\\x59\\x5b\\xd9\\x59\\x9e\\xcd\\x28\\x4a\\x66\\xf6\\xa7\\x95\\x4c\\x26\\xe3\\xa9\\x9e\\x54\\xef\\x9b\\x5d\\x59\\x99\\x75\\x31\\x7d\\x3d\\xde\\xad\\xae\\x5d\\x82\\xf4\\x46\\x90\\xfb\\x41\\xe2\\xb1\\x3b\\xd3\\xb0\\xd9\\x86\\x25\\x28\\x60\\x96\\x19\\xb0\\xc5\\x72\\x06\\x90\\xb7\\xbb\\xc5\\x58\\x98\\x3d\\xd2\\x65\\xb6\\x83\\x19\\x97\\x14\\x4c\\xee\\x04\\xf5\\xc4\\xca\\x80\\x77\\xdc\\xf3\\x5a\\xa6\\x5c\\xa5\\xca\\x4d\\x8c\\x93\\x58\\xb4\\x0f\\x7e\\x3c\\x16\\xdb\\x8c\\x4d\\xc5\\x9a\\xb1\\x34\\xbf\\x99\\x88\\xe1\\x1a\\x88\\x61\\x4f\\xc4\\xa6\\x62\\x9b\\xb1\\x58\\x33\\x96\\xd8\\xe4\\xd3\\x31\\x90\\xc1\\x18\\x26\\x01\\xdc\\x07\\x97\\xdb\\x88\\xae\\x30\\x0c\\x91\\x95\\xc7\\x19\\x88\\x14\\xb3\\x8c\\xd5\\x55\\xc3\\xb2\\xb1\\x90\\x29\\x66\\xaa\\x8d\\xd5\\x8d\\x55\\x07\\x3b\\xfe\\x78\\x92\\x1d\\xc6\\x5f\\xd8\\x33\\xde\\x05\\x4e\\x62\\xbc\\x8a\\x05\\x53\\xe2\\xb0\\x0d\\x98\\x1d\\x0d\\xc6\\x78\\x8e\\xe3\\xb9\\xc5\\x31\\x97\\xe6\\xa4\\xa9\\x39\\x0e\\x21\\x8e\\xa3\\x55\\x93\\xf7\\xf8\\x70\\x58\\x27\\x10\\x4a\\x8a\\x92\\x59\\x91\\x44\\x2f\\xfd\\x14\\x56\\x18\\x48\\xfc\\x4b\\x49\\x22\\xf7\\x13\\xfb\\x5e\\xbb\\x30\\x14\\x9b\\x9a\\xa6\\xb3\\xc0\\x66\\x2b\\x16\\x59\\x8d\\xc4\\x62\\x03\\x11\\x9c\\x79\\xed\\xbe\\x85\\xa1\\x50\\x0c\\x3e\\xb7\\x36\\xe9\\x97\\xd3\\x53\\xc3\\x11\\xdf\\xdc\\xcd\\xb8\\x53\\x3a\\xe3\\x5e\\x71\\x11\\x63\\x95\\x45\\x29\\xea\\xc2\\xe2\\x58\\x20\\x2e\\x17\\xff\\xe4\\x5c\\xb3\\xd9\\x84\\xa7\\xfa\\x45\\x78\\xf6\\x2d\\xbb\\xdd\\xc0\\x36\\xfa\\xbf\\x25\\x47\\x78\\x75\\x42\\x4c\\x24\\x36\\x38\\x55\\x90\\x76\\xcd\\x28\\x0d\\xfa\\xcf\\x9f\\x86\\x40\\x6a\\x35\\xb2\\xd1\\xec\\x85\\x7e\\x00\\x7c\\x05\\x4f\\xae\\xa0\\xa3\\x78\\x12\\x58\\x15\\x8c\\x01\\xdf\\x2c\\x6e\\xb2\\x48\\x38\\x16\\x17\\xc7\\x10\\x25\\xd8\\xd3\\x4c\\xb6\\x6e\\x67\\x14\\xfb\\x0e\\xb2\\x95\\x0c\\x6e\\xda\\x76\\x13\\x8e\\x7e\\x7c\\x63\\xe3\\xb6\\x92\\x71\\x6c\\x9b\\x01\\x12\\x07\\xd0\\x21\\x74\\x08\\x6f\\xe3\\x7f\\xe1\\xe2\\x05\\x73\\x12\\x88\\xa7\\x4a\\xc5\\x5c\\xc6\\x62\\x98\\x1b\\xc1\\x9c\\xaa\\x94\\x4d\\x09\\x1f\\xc9\\xbd\\x90\\x7d\\xe1\\x85\\xec\\xbf\\x89\\xf1\\xe9\\xdc\\xd9\\xf9\\x48\\x2e\\x6d\\x7d\\xf2\\x4a\\x3a\\xbd\\x89\\x87\\xdc\\xe3\\x63\\x56\\x3a\\x17\\x99\\x3f\\x97\\x4b\\x8f\\x8e\\x5f\\x49\\x9f\\x4c\\xd7\\x7f\\xf0\\x78\\x5b\\x5e\\x8c\\x1b\\xf3\\xf1\\xcc\\x74\\x6d\\x0d\\xa6\\x2c\\xe8\\x03\\x5d\\x49\\xc9\\x9b\\x78\\x60\\xeb\\xc2\\xbc\\xbf\\x05\\xa4\\x18\\xcb\\x78\\x5d\\xfb\\x93\\x2c\\x8c\\x70\\xd5\\xa2\\x13\\x0f\\x9d\\x8b\\x81\\x75\\xe7\\x09\\x78\\x1c\\x3f\\x63\\xbc\\x0f\\xde\\xbf\\x66\\xd7\\xe8\\xdc\\x43\\xff\\x76\\xf8\\x4c\\xb5\\x27\\xfe\\xc6\\xb5\\x19\\xfc\\x4f\\xe9\\xe8\\xa0\\x3b\\x7f\\x0f\\x7a\\xba\\xe1\\x18\\xdf\\x4d\\x53\\x07\\x23\\x6f\\xd0\\x87\\x5b\\x0b\\x36\\xaf\\x3d\\xb8\\x93\\x76\\x21\\xd8\\x3a\\x6b\\x17\\xd7\\x7e\\x66\\x5f\\xb1\\xb8\\xaf\\xf8\\x1a\\x0f\\xc3\\x96\\xae\\x13\\x8d\\xe4\\x64\\xa9\\x34\\x99\\xfc\\x2f\\xc5\\x7d\\x85\\xc2\\xbe\\x37\\xee\\xc6\\xb1\\xf5\\xcb\\xcc\\x10\\xff\\xab\\x0a\\xc9\\x45\\x66\\x88\\x8a\\xe3\\xa2\\xc1\\x97\\x57\\xb0\\x64\\x62\\xcb\\xf9\\x76\\x74\\xf0\\x29\\xe7\\x2d\\x41\\xd8\\xd6\\xfe\\xc7\\xdc\\xff\\xc0\\xd3\\xd1\\xf6\\x17\\x07\\x03\\x33\\x73\\xb3\\x38\\x8a\\x8f\\xc1\\x8e\\x2f\\xc7\\x93\\x61\\xa6\\x75\\xad\\xd3\\xba\\x20\\x8f\\x60\\x97\\xae\\x50\\x36\\xf4\\x65\\xcc\\x58\\x0a\\xbd\\xac\\x2b\\xd7\\x25\\xfb\\xc0\\xec\\x2c\\xb7\\x7e\\x8f\\x76\\xcf\\x3a\\xe7\\xed\\xfc\\x3e\\xc3\\xea\\x02\\x64\\xa2\\x4b\\xfe\\x2f\\x60\\x27\\xe8\\xe6\\x8a\\x60\\xb4\\x8e\\x2c\\x7c\\x0b\\xe2\\x25\\x10\\x4e\\xd2\\x07\\x00\\xa3\\x5b\\xf1\\x0f\\x7e\\x30\\x8e\\x5b\\xed\\xa7\\xe3\\x96\\x15\\x67\\x78\\x6a\\x2c\\x97\\x2f\\x88\\x62\\x2e\\x62\\x50\\x21\\xe1\\xe2\\xaa\\x17\\xa5\\x54\\x38\\x8e\\xe7\\x03\\x20\\xf3\\x41\\xd8\\xcc\\x46\\x86\\x4f\\xa4\\x33\\xc5\\x0f\\x5a\\xf9\\xfc\\x08\\x39\\xb5\\xba\\xb1\\x6a\\x6b\\x98\\x65\\x7a\\x11\\xf2\\x44\\xa9\\x14\\x2f\\xbf\\x83\\x18\\xab\\xab\\x3e\\xde\\x0e\\x7a\\xaf\\xc6\\xba\\xeb\\x84\\x42\\x27\\xce\\x91\\x40\\x1c\\xcf\\x0f\\x18\\xe5\\xdb\\x20\\x1d\\x46\\xde\\x71\\x39\\x37\\x4b\\xe2\\xa3\\xe1\\x54\\x59\\xcd\\xe3\\x68\\x8e\\x1e\\x6c\\x5c\\x5e\\xce\\x5d\\x3c\\x79\\x24\\xc1\\x73\\xd2\\x89\\xa3\\xf7\\xe7\\x96\\xfd\\x3e\\x21\\xda\\x4e\\x86\\xb5\\xcf\\xc9\\xba\\x59\\x59\\xc0\\x4a\\x1c\\x77\\xcc\\xfc\\x1c\\xbb\\xe7\\x4f\\x90\\x75\\xe3\\x85\\xc1\\x41\\x65\\x90\\x7b\\x01\\x13\\x16\\x69\\x6f\\xa7\\xf9\\x16\\x21\\x2f\\x0c\\x72\\x0a\\xc7\\xbd\\xf0\\x32\\xf3\\x0b\\xd9\\xd8\\x61\\x18\\x45\\xff\\xe7\\xe6\\x8a\\x01\\x5f\\xac\\x63\\x8c\\xc5\\xc8\\xb3\\x28\\x45\\x2f\\xa7\\x42\\x58\\xac\\xec\\x92\\xca\\x98\\xf3\\xe9\\xcc\\xf2\\x65\\x42\\xa5\\x81\\xdb\\xbe\\xc0\\x75\\x67\\xdd\\xca\\xaf\\x2d\\xcf\\xae\\xd4\\x8e\\xaa\\x19\\x6d\\xaf\\x38\\x79\\x0f\\x43\\x8a\\xf7\\xa2\\xd6\\x4b\\x9d\\xe0\\x25\\xc3\\x2c\\x48\\xaa\\x50\\x30\\x30\\x72\\xb0\\x25\\x10\\x7b\\x5b\\x10\\x70\\x55\\x10\\xda\\x5b\\x8e\\x6d\\xdb\\x8e\\xe3\\x38\\xa4\\x56\\x6b\\x30\\x4e\\xef\\xef\\x2d\\x9f\\x64\\xa0\\x23\\x8b\\x44\\x50\\x02\\x8d\\xa3\\x7b\\xe1\\x3e\\xc3\\x33\\x29\\xb0\\x15\\x4d\\x76\\x1f\\x4c\\xd8\\x31\\x21\\xce\\x99\\x6e\\xbc\\x49\\x62\\x1e\\xb3\\xe0\\x69\\x77\\xd3\\x11\\xd4\\xe9\\x39\\x7f\\x39\\x95\\x4e\\xc3\\x8b\\x8e\\x38\\xf7\\x6d\\x7b\\x6a\\xc2\\x9a\\x9a\\x18\\x8e\\x6c\\x45\\x86\\x27\\xa6\\x2c\\xf6\\x82\\x4f\\xd6\\xd4\\x04\\xb6\\x32\\x3c\\x95\\xef\\xf8\\xf7\\xc2\\xca\\xf9\\x1e\\xb0\\xbb\\xfc\\x62\\x76\\x6e\\x70\\x2c\\x3b\\x3b\\x98\\xa6\\xd3\\x48\\x7a\\x70\\x36\\x3b\\x36\\x38\\x97\\x1d\\x1b\\x9c\\xcd\\xc2\\xbc\\x22\\x66\\x67\\x07\\x59\\x6c\\xed\\x32\\x12\\xc1\\x06\\x94\\xa1\\xb3\\x0a\\x20\\xa6\\x81\\xab\\x6b\\xb1\\x63\\xbb\\x55\\x39\\x30\\xe8\\x7a\\x46\\xa0\\x7f\\x5b\\x1f\\x7c\\xb4\\xa8\\x6a\\x8f\\x05\\xa3\\x41\\x21\\x2e\\x4c\\xae\\x9c\\x9a\\x1f\\x9e\\x23\\x73\\xf7\\xc2\\x12\\xfd\\xc8\\x24\\x11\\x3e\\x13\\xbf\\xf7\\xda\\x42\\x40\\x28\\xea\\xc4\\xb0\\xb4\\x5b\\x8e\\xf6\\xb2\\x97\\xc2\\xe8\\x7b\\x2e\\xa2\\x54\\xba\\xf0\\xa3\\x87\\xf7\\x3c\\x1b\\xae\\xa8\\x72\\xa9\\xe7\\xe1\\x20\\x0c\\x91\\x7c\\x6b\\xd7\\xd3\\xe1\\x7f\\x8e\\x39\\x14\\x83\\xd5\\x94\\x3d\\x19\\x12\\x67\\xaa\\x9c\\x50\\xe9\\x29\\x7a\\x39\\x1c\\x4e\\x85\\x43\\xf1\\xdc\\xc5\\x53\\xb9\\x53\\x81\\x9e\\x0a\\x5e\\x17\\x0a\\xa7\\xc2\\x61\\xf6\\x4d\\xae\\xd5\\x5f\\x0d\\xf6\\xe5\\x44\\x20\\x1c\\x94\\x17\\xb0\\x81\\x9b\\x1f\\x17\\x0e\\xfc\\x14\\x6e\\xb6\\x9d\\x9f\\x3a\\x20\\xf4\\xb7\\x83\\xa7\\xbd\\x59\\x59\\x34\\x61\\x40\\x54\\xdc\\x41\\x61\\x94\\x7b\\xae\\xf3\\x2b\\x6f\\xce\\x76\\xd8\\xed\\x1e\\xf5\\xb7\\xa5\\x35\\x9f\\x4c\\xa7\\x93\\x9f\\x84\\xbb\\x9f\\xe0\\x8f\\xf7\\xb7\\xa5\\xfb\\x5c\\x85\\xd1\\x30\\x4a\\x81\\x9e\\x23\\xc8\\x40\\xdc\\x24\\x1b\\x40\\x13\\x65\\xe8\\x10\\xf5\\xae\\x03\\xf7\\x12\\x6e\\x3a\\xfb\\x97\\x73\\x47\\x7e\\xd7\\xd9\\x7f\\x24\\xb7\\x7c\\xc1\\xb7\\xdf\\xdc\\x75\\x84\\xed\\x7b\\x6b\\x80\\x27\\xaf\\x8d\\x23\\x84\\xcb\\x15\\x90\\xa5\\x55\\x40\\x47\\x60\\xb3\\xf6\\x11\\xcc\\x44\\x6a\\x6c\\x1f\\xd5\\x8c\\xca\\x86\\x36\\x5f\\x34\\x8a\\xf3\\x10\\x0c\\x98\\x35\\xdb\\xd5\\xad\\x5a\\xbd\\x5e\\xdc\\x1f\\x68\\x36\\x03\\xfb\\x8b\\x6e\\x20\\x42\\x57\\x6f\\x0d\\xa1\\x61\\x96\\x7f\\x2f\\x1b\\x9c\\xee\\xad\\x08\\xe6\\xf7\\xac\\xb9\\x36\\x6c\\x62\\x93\\xdf\\x06\\xcd\\x74\\xe9\\x6e\\xaa\\xab\\x53\\xaf\\xdd\\x5a\\x05\\xed\\x75\\xe1\\xbb\\xa9\\xae\\xcc\\x9f\\xb4\\x03\\x32\\x34\\x44\\x7f\\x27\\x53\\x12\\xe7\\x8a\\x30\\x61\\x4f\\x86\\xe1\\x2a\\xfa\\x22\\x5b\\xec\\x8d\\xf2\\xb7\\x67\\xbe\\x3e\\x9c\\xe1\\x3f\\x3c\\x9a\\x07\\xe1\\xe5\\x74\\xd9\\x2a\\xe4\\x32\\x7c\\x1d\\x3b\\x07\\x67\\xbe\\x3e\\x0c\\x33\\x52\\xf6\\x3c\\x48\\x3c\\xa7\\xd4\\xe8\\xbb\\xf8\\xcc\\x13\\xf1\\x9e\\xf8\\x3d\\x11\\x58\\x64\\xe6\\x51\\x85\\xad\\xe1\\x6e\\x36\\x8f\\xce\\x09\\xba\\xa9\\x4b\\xba\\xa1\\x2e\\x56\\x82\\x59\\x2c\\xf0\\x05\\xbe\\x5c\\x31\\x2b\\x8b\\x9c\\x2e\\xc8\\x5e\\x13\\x3c\\xe8\\x5f\\xec\\x1c\\x5b\\x5e\\x3a\\x51\\x90\\xc6\\xa6\\xf2\\x87\\xf3\\xf9\\x31\\xa9\\x30\\x40\\xe6\\xdb\\xd5\\x79\\x42\\x5e\\xfc\\x42\\xab\\x35\\x04\\x12\\xe1\\x73\\xa0\\xf8\\x7d\\xe6\\x05\\x2a\\xd1\\xbc\\x20\\x15\\xc6\\x06\\xf3\\xf9\\xc1\\xb1\\x02\\x9e\\x1f\\x3d\\x3e\\xd7\\xfe\\x33\\x3c\\x36\\x77\\x7c\\x94\\xaf\\xd7\\x74\\x1f\\x1e\\x79\\xaf\\xbd\\x9d\\x73\\xed\\xd1\\xfb\\xba\\x12\\x97\\xaa\\x1b\\x32\\xe7\\xb3\\x47\\x27\\x3b\\xf6\\x68\\x48\\xa0\\x77\\x6d\\xd2\\xcb\\x01\\x7c\\x3f\\x73\\x8f\\xd4\\x6a\\x9a\\x6b\\x96\\x76\\x2e\\xad\\xcd\\xe6\\xf2\\x44\\xbb\\x4f\\xdb\\x97\\xcf\\xcd\\x4e\\x18\\x46\\x1d\\xc4\\x9c\\x7f\\x60\\xdb\\xb6\\xbd\\xd9\\x6b\\x9a\\x26\\x04\\x8c\\xd3\\xe3\\x53\\xa3\\x61\\xd4\\xbb\\x3e\\x47\\x01\\x2d\\xc3\\x57\\xbf\\x99\\x0a\\xcb\\x7a\\xa7\\x72\\x3a\\x1a\\xcb\\x15\\x3a\\x9e\\x74\\x41\\xe6\\xb2\\x58\\xc0\\xb5\\xed\\xd7\\x42\\xed\\x2f\\x4d\\x66\\x02\\xac\\xf2\\xa2\\x94\\x3f\\xbe\\xc4\\xbf\\x7e\\xfb\\xe4\\xe8\\xca\\xd1\\x56\\xad\\xb6\\x0e\\x55\\xc7\\x27\\x94\\xfc\\x90\\xa6\\x0d\\x15\\x43\\x53\\xd2\\xaf\\xce\\xe4\\x02\\xf9\\x7c\\x3e\\x1f\\xc8\\x6a\\x20\\xa3\\x0b\\xb8\\xe5\\xda\\xc6\\xa7\\xd1\\x42\\xbf\\x7d\\x5c\\x01\\x03\\x79\\x1c\\xfb\\xed\\xe3\\x49\\x03\\xf0\\x57\\x4d\\x5d\\x90\\x05\\xd5\\x7c\\xfb\\xd2\\x5c\\x69\\x9e\\xcc\\x0e\\xcf\\x9d\\x9a\\xdc\\x1f\\x4f\\x45\\xd3\\x11\\xee\\x86\\xa6\\x3c\\x0c\\xf3\\x64\\xc3\\x30\\x9e\\x30\\x9e\\x78\\xc2\\x30\\x5c\\xb3\\xf9\\xc7\\x67\\x2d\\x53\\x9b\\x1c\\x2b\\xa6\\x82\\xf3\\xd7\\x4e\\x8d\\x32\\xbb\\x79\\xfb\\xf3\\x25\\xa3\\xa2\\xe4\\xaf\\xe4\\x4b\\x46\\x05\\xa1\\x88\\x0f\\x77\\xae\\x3f\\x06\\x09\\xf0\\x4f\\x3d\\x58\\x00\\xc6\\x62\\xcc\\x22\\x8d\\x38\\x17\\x3f\\x09\\xb0\\x00\\xec\\x6a\\xb5\\xba\\x0d\\xa0\\x65\\xd5\\x6d\\x48\\x9a\\xde\\xae\\x76\\xb2\\xa4\\xfd\\x1b\\x8c\\xaa\\x55\\x04\\xdc\\xe0\\xac\\xbe\\x1e\\xce\\xb7\\x46\\xfb\\xef\\x9e\\xcc\\x36\\x1a\\xd9\\x27\\xb1\\xa0\\x3d\\x45\\x77\\x9e\\x02\\x5b\\x75\\x1d\\x35\\x71\\x0d\\xa2\\x4b\\x50\\x52\\xe7\\xea\\xdb\\x35\\x4c\\x6a\\x7e\\x7d\\x39\\x00\\xd8\\x6e\\xa6\\xdc\\x49\\xf8\\x45\\xf6\\x16\\xa3\\xc1\\x6d\\x55\\xb7\\x3a\\xf9\\x24\\xb4\\x9c\\x16\\xae\\x61\\x8b\\x96\\xb3\\x82\\xa5\\x7a\\xad\\xd6\\xaa\\xd5\\xfa\\xdb\\xe2\\x12\\xa7\\xa9\\x18\\xd1\\x76\\xb4\\xff\\x0e\\x0f\\x3c\\x49\\xf5\\xae\\xec\\x53\\xda\\x53\\x3d\\xbc\\xbc\\xc0\\xed\\x5c\\x52\\x4d\\x95\\x53\\x39\\x89\\x93\\x4c\\xa9\\x13\\xdd\\x56\\x3b\\x77\\x2e\\xeb\\xbd\\x7e\\x01\\x5a\\xf1\\x4f\\x7c\\x47\\xb0\\xe5\\x35\\x08\\xa3\\x7b\\x01\\xcb\\xf0\\x39\\xc6\\x9b\\x27\\x61\\xd5\\x6c\\xfe\\x51\\xf6\\x0e\\x7a\\x32\\xfb\\x8b\\xec\\xcd\\xe5\\xdf\\xfb\\x7e\\xe4\\x1a\\x79\\xdc\\xc8\\x75\\x14\\xed\\x4a\\x61\\x74\\x31\\xc6\\xf5\\x27\\x9f\\xcc\\x7a\\x2f\\xfc\\xa4\\xef\\x43\\x2f\\x6f\\x1f\\x40\\x9e\\xaa\\x18\\xd1\\x02\\xb3\\xd8\\x86\\x37\\x37\\xcf\\xab\\x81\\x1d\\x7c\\xaf\\x77\\x8e\\x29\\x61\\x60\\xdf\\xbb\\xea\\xd2\\x04\\x82\\x2c\\xe3\\xd5\\xdd\\xe5\\x98\\x81\\xd8\\x39\\x16\\xb5\\x46\\x47\\x95\\x3c\\x19\\xa0\\xbb\\x98\\x6c\\xd0\\x65\\x78\\xa3\\xb9\\x61\\x59\\x1b\\xb8\\xbe\\x61\\x6d\\x5b\\x1b\\xda\\xe6\\x86\\x66\\x55\\x2d\\x6d\\xe3\\xae\\xe5\\xe8\\x41\\x40\\xd6\\x82\\x72\\x0c\\x16\\x25\\x87\\x6d\\x6b\\x43\\xd3\\x36\\xac\\x2d\\x6d\\x63\\x43\\xc3\\xb6\\xb6\\xd1\\xde\\xde\\xd0\\xac\\xdb\\xd6\\x86\\xb6\\xa5\\x6d\\x78\\xb6\\x5e\\x0f\\x57\\xb4\\x8b\\x8f\\x68\\x14\\x84\\x90\\x51\\x10\\x2c\\xe0\\x4c\\x80\\x3f\\xec\\x90\\x0d\\x4d\\xab\\xb9\\x3a\\x92\\x8d\\x5a\\xb8\\x81\\x89\\x17\\x4b\\x9c\\xb8\\x0b\\x42\\x3d\\x33\\x33\\x7c\\x18\\xb6\\x7f\\xc2\\xdc\\x57\\x24\\xe3\\x83\\x69\\xc8\\x30\\xbf\\x55\\x10\\xb5\\x90\\x8d\\x49\\x07\\x33\\x02\\xed\\xa2\\x27\\x70\\xf7\\xbf\\xe5\\xfb\\xe1\\x61\\xd8\\x32\\x84\\x87\\x0f\\xc3\\xf6\\xb8\\x5b\\x1c\\xc2\\xa8\\xea\\x8e\\x63\\xb0\\x5d\\x0b\\xb2\\xc9\\x84\\x44\\x7d\\xb1\\x62\\xea\\x9d\\x18\\x3c\\xfc\\xb6\\xc5\\xcd\\x13\\x4a\\xd9\\x58\\x5d\\x35\\xb4\\x63\\xc3\\xb3\\x23\\x0f\\x2d\\x9d\\xbc\\x76\\xed\\xe4\\x29\\x76\\x78\\x75\\x63\\x75\\x41\\x39\\x70\\xfa\\xda\\x07\\xae\\xc1\\x58\\xff\\x28\\xb2\\xf1\\x55\\xb0\\x49\\x44\\x19\\xce\\xa3\\x64\\x06\\xe9\\xfa\\xcf\\xc1\\xe0\\x3b\\x7e\\xfc\\x13\\xb0\\xc5\\x3f\\x01\\x6f\\xed\\x7f\\x0d\\x6f\\xec\\x77\\x16\\xbe\\xea\\xe6\\x23\\x43\\x5c\\x9d\\xba\\x82\\xd9\\x03\\x8e\\x8e\\x67\\xe1\\x2c\\xba\\x7d\\x07\\x6c\\x7f\\xe3\\xb8\\x3b\\x94\\x7a\\x9f\\xc3\\x24\\xfd\\x15\\x2f\\xf3\\x9c\\xdd\\x68\\xe4\\x9e\\xd4\\x9e\\xf2\\x3d\\x8e\\xbd\\x5c\\x28\\x43\\x30\\xe6\\x75\\x43\\xe7\\x65\\x89\\x53\\x77\\xb2\\xe7\\x7e\\x83\\x7c\\xeb\\x5c\\xd6\\xc1\\x56\\xf6\\xdc\\xf6\\x1d\\x74\\x2e\\xeb\\x40\\xb9\\x16\\xf0\\x82\\x0f\\x31\\x0e\\x4b\\x30\\xd6\\xa9\\x26\\xae\\x3b\\xd9\\x73\\xdf\\x22\\xbf\\x71\\x2e\\xdb\\x74\\xb2\\xe7\\x30\\xda\\x3e\\x97\\xed\\x9b\\x0b\\x68\\x9b\\x79\\x9d\\x37\\xe9\\x04\\xd0\\x6d\\x04\\x1e\\x68\\xff\\xdd\\x93\\x1d\\x2e\\xca\\xe7\\x60\\x0c\\x45\\x20\\xbb\\x48\\x66\\x0c\\x99\\x0e\\x21\\x38\\xc2\\x1e\\x02\\xe7\\x0e\\xca\\x7a\\xcf\\x41\\x00\\x3d\\x09\\xdc\\x95\\xee\\xf9\\x5d\\x9e\\x46\\x6c\\x13\\xf2\\x87\\x9d\\xf3\\xff\\xc8\\xff\\xdc\\x08\\xb8\\x8e\\xff\\x93\\x8b\\x09\\xaf\\xee\\xe6\\xe3\\xa1\\x32\\x4d\\x01\\x64\\x16\\xa9\\xb2\\x28\\x99\\x12\\x76\\x89\\xf8\\xb0\\x09\\xd2\\xcb\\xe3\\xb0\\xfd\\xcc\\x91\\xf6\\xf6\\x91\\xb9\\xc4\\xfe\\xfc\\xf1\\xfc\\xfe\\x44\\xfb\\x4f\\xb0\\x46\\x15\\x5f\\xcb\\x47\\x18\\x72\\x79\\x6e\\x55\\x14\\x57\\xe7\\xe6\\xf8\\xfd\\xa3\\xa3\\xfb\\xf9\\xf6\\xef\\xdb\\xf6\\xf2\\xda\\x1a\\xcb\\x4f\\x64\\x32\\x5a\\x00\\x85\\x20\\x06\\xb6\\x00\\xbe\\x42\\x5e\\x30\\xa9\\xfc\\x27\\x1b\\x6c\\x0a\\x31\\x74\\x49\\x4c\\x71\\x6a\\xa5\\xac\\x72\\xa6\\x28\\xa4\\x38\\x9c\\x9c\\x9e\\x3e\\xfc\\xd0\\x43\\x4f\\x0b\\x57\\xe9\\x3c\\x72\\x55\\xf8\\xed\\x5c\\x21\\x2d\\x08\\xd5\\xfd\\x43\\x43\\xff\\x78\\xe6\\x3e\\x3c\\x78\\xdf\\xcc\\x43\\x0f\\xbd\\xed\\x45\\xf6\\xdd\\x8b\\xd7\\x16\\x9f\\x2e\\xa7\\xb5\\x35\\xad\\xba\\x3f\\x3d\\x96\\x4e\\xbb\\xb6\\x2b\\x2f\\xfe\\x87\\x87\\xd8\\xcc\\x8e\\x46\\x6f\\x32\\x06\\x01\\xa5\\x5c\\x09\\xb9\\xd1\\xb0\\x0c\\x19\\x45\\x3b\\x75\\xed\\xda\\xa9\\x93\\xd7\\xae\\xe1\\x09\\x4d\\xd3\\x18\\x4e\\xc4\\xaf\\x5d\\x7f\\xff\\xf5\\x6b\\x1f\\xb8\\x66\\xd5\\x6c\\x4d\\xdb\\x23\\x07\\xa0\\x44\\x45\\x65\\x95\\x13\\xd5\\x94\\x04\\x8f\\x48\\x07\\xbb\\x1b\\x9d\\xbc\\x5e\\xfa\\xd6\\xbe\\xb7\\x94\\xbe\\xb5\\xef\\xe0\\xc9\\x4e\\x56\\xe2\\xc9\\x83\\xfb\\xbe\\x55\\x6a\\xd0\\xcd\\xf5\\x7f\\xd8\\x59\\x4b\\x76\\x97\\xe9\\x06\\x5e\\x27\\xdd\\x18\\xed\\xce\\x6a\\xf0\\xec\\xd4\\xf5\\x93\\x87\\xe7\\x1e\\x3d\\x3c\\xf7\\x57\\x53\\xd7\\x13\\x50\\xe4\\x4f\\xcf\\x1d\\x3e\\x79\\x7d\\xaa\\xfd\\x3b\\x53\\x7f\\x45\\x77\\x3c\\xf6\\x7a\\xa6\\xcf\\x7a\\x3a\\xe6\\xff\\x99\\xb8\\x0d\\x6e\\xec\\xf6\\x18\\x26\\xaf\\xea\\x84\\xf3\\xe5\\xff\\xec\\x00\\xcf\\x71\\xa1\\x87\\x3d\\xb9\\x6b\\x7c\\x73\\xd7\\xfe\\x38\\x66\\xab\\x48\\x37\\x15\\x88\\x2a\\x15\\x02\\xd9\\x22\\xb9\\x77\\x1d\\x97\\xe6\\xde\\x58\\xbb\\x7d\\xbb\\x37\\x1f\\x88\\x10\\x42\\x3e\\x0d\\x5f\\xa1\\x5d\\x75\\xa9\\xaf\\x5e\\x57\\x90\\x2d\\x59\\x12\\x5d\\xbe\\xf6\\xaa\\xf1\\x9f\\x49\\xe5\\xb2\\x54\\x2e\\x8b\\xf4\\xb5\\x67\\xbd\\xed\\x16\\x3b\\x03\\x5e\\x1d\\x3d\\x87\\xe1\\x46\\x31\\x49\\x47\\x90\\x8d\\xd0\\xab\\xb4\\x80\\x83\\x45\\x6a\\x13\\xa3\\xdd\\x95\\x0b\\xdb\\x2d\\x4d\\xdb\\xd8\\xab\\xd6\\x3a\\x21\\x3d\\x36\\xe5\\x71\\x9f\\x4d\\x79\\x65\\x0f\\xb6\\xf3\\x77\\xf1\\xe6\\xe9\\xc9\\xc9\\xd3\\x26\\xbf\\x52\\xeb\\xe1\\x24\\x3f\\xb5\\x2f\\x7c\\xcf\\x3d\\xe1\\x7d\\xa7\\x4a\\xbf\\xd9\\x4b\\x48\\x1e\\xf0\\xc5\\xf4\\x26\\xdc\\x98\\x5b\\xb3\\xc7\\x6a\\xc3\\x8c\\x1e\\x7f\\xd3\\xb5\\xd6\\x38\\xeb\\xd6\\xad\\x1e\\x3b\\x4d\\x2f\\xbe\\xb7\\x84\\x94\\xae\\x64\\xde\\x9f\\x81\\xdc\\x8d\\xfb\\x5c\\xc0\\x66\\x45\\xc7\\x3f\\xee\\xcb\\x3a\\x7e\\x90\\x99\\x42\\x21\\x95\\xb4\\xfd\\x65\\x71\\xe4\\x47\\x7e\\x64\\x24\\xf5\\x8a\\x6f\\xb4\\xb1\\xd7\\xef\\xb0\\x1e\\x4a\\x7e\\xe6\\x33\\xc9\\xae\\x5f\\x8f\\xd9\\xf0\\x26\\x99\\x1c\\xee\\x32\\x30\\xf7\\x71\\xa2\\xb1\\x4c\\x70\\x95\\x7e\\x15\\x9e\\xc4\\x05\\x2c\\x14\\x15\\xdc\\x4c\\x4c\\x24\\x6c\\x3a\\x76\\x37\\xe8\\x26\\x37\\x9b\\x33\\xa6\\x0f\\x08\\xed\\xdb\\x78\\x33\\xc0\\x35\\x18\\xa2\\xe2\\x70\\xc4\\xa6\\xea\\x98\\x1d\\x19\\xce\\x53\\x35\\x6d\\xfd\\xc0\\x74\\x38\\x39\\x69\\xe1\\xcd\\x7f\\x81\\x7d\\x36\\xa4\\x1d\\x34\\x81\\x72\\xa8\\x48\\x35\\x92\\xd2\\x5e\\xee\\x88\\x38\\x66\\xbe\\x0a\\x55\\x30\\x55\\xc1\\xec\\x4c\\x7c\\x30\\x0d\\xe2\\x46\\xaf\\x8f\\x62\\x61\\xe1\\x87\\x16\\x22\\xc3\\x53\\xc1\\x54\\x2a\\x75\\x25\\xbe\\xb4\\x14\\xdf\\x3f\\x74\\x64\\x7e\\xfe\\xc8\\xd0\\x4b\\x7d\\x3e\\x8b\\x85\\x87\\xf6\\x2f\\x44\\x06\\x62\\xff\\xbf\\xe9\\xd4\\x8d\\xe9\\xd4\\xdb\\xe2\\x87\\x0f\\xc7\\xf7\\xdf\\x47\\x4f\\xbc\\xaf\\x6b\\x23\\xdd\\x81\\x76\\xc9\\xdf\\xad\\x4d\\x0c\\x02\\xf8\\x6e\\xcd\\xb0\\xed\\xda\\x5d\\xaa\\x5e\\xb7\\xaa\\x56\\xad\\x3f\\xde\\x71\\x96\\x6a\\xe3\\x8a\\x6c\\xb8\\x31\\xa9\\xf4\\x9d\\x7b\\xb5\\xda\\xb1\\xa5\\x64\\x66\\x57\\xb4\\xcb\\xcb\\x17\\x6f\\x08\\x7b\\x36\\x00\\xa3\\x8c\\x42\\x56\\x66\\x97\\x2f\\x93\\x1b\\x17\\x57\\xf7\\x6e\\x88\\x7f\\x1e\\xa0\\x63\\xe0\\x10\\x43\\x73\\xb8\\xfb\\x18\\xe0\\x5f\\xb5\\x45\\x1f\\x16\\xb3\\xc2\\x15\\x5a\\x05\\x10\\xb1\\xe6\\x66\\xf3\\x7b\\xb7\\xab\\x31\\x14\\x17\\xc5\\xf8\\x50\\x77\\x7c\\x0c\\x89\\xf9\\xbc\\x48\\xe7\\xca\\xbd\\xdb\\x18\\x40\\x08\\xdd\\x03\\xcf\\xc8\\x24\\x9a\\x46\\xa8\\xc4\\xfc\\x72\\xaa\\xa2\\x2a\\x47\\xb0\\x52\\xe4\\x18\\xca\\x32\\x04\\x3f\\x9a\\x95\\x7c\\x89\\xc5\\x75\\xd3\\xd9\\x0a\\x7f\\x27\\x1c\\x36\\xc2\\x89\\xf0\\xc4\\x64\\x6c\\xfe\\x8d\\xf3\\xb1\\x7c\\x3a\\x9c\\x08\\x1b\\xe1\\xf0\\xa3\\xb8\\xd8\\xfe\\x4e\\xde\\x59\\x5d\\x77\\x84\\xfa\\x3f\\x62\\x87\\x32\\x23\\xa1\\x91\\x63\\xf1\\xf8\\xb1\\x78\\x28\\x3e\\xc6\\x7e\\x73\\xed\\x7d\\xab\\x4e\\x7e\\xdd\\x11\\x36\\xfb\\xf2\\x32\\x19\\x3f\\x07\\xad\\xe0\\xd5\\x7a\\x22\\x48\\xa7\\xab\\x3a\\x21\\xe2\\x9e\\x1d\\x30\\x46\\x70\\xb3\\xfe\\xd6\\xbd\\xaf\\x16\\x47\\xeb\\xae\\x8d\\xb5\\x97\\xe7\\x34\\xdd\\x8d\\xba\\xe8\\x07\\xd9\\x49\\x9a\\xd8\\x21\\x02\\x11\\x48\\xc3\\xcb\\x03\\xc7\\xef\\x02\\xad\\x90\\x6a\\x7e\\x1d\\x97\\x15\\x72\\x7c\\xb9\\xe5\\x2c\\xff\\x02\\xf4\\xee\\x7e\\x8e\\xcc\\xa4\\x89\\x05\\x4d\\xd3\\xea\\xdd\\xb2\\x76\\x36\\x36\\xaa\\x84\\x60\\xcb\\x5f\\x94\\x0f\\x4b\\x7c\\xcf\\xf6\\xf5\\x19\\xaf\\x6b\\x0c\\xf9\\x4d\\xec\\x4c\\x84\\x0c\\xb4\\x95\\x90\\xa6\\x7f\\x32\\x0c\\xf6\\x94\\x29\\x74\\xfd\\xbf\\xc9\\xde\\xd2\\x68\\xfb\\x9a\\xdd\\xa2\\x88\\x6d\\xd3\\xf6\\xa1\\x3e\\xfb\\xb7\\xc7\\x75\\x3a\\x02\\x79\\x9b\\x54\\x83\\x07\\x2b\\x93\\x44\\x85\\x84\\xe4\\x62\\x37\\x67\\x4b\\x50\\x4d\\x8c\\x6c\\xfb\\xe4\\xf5\\xf1\\x5c\\x7c\\xd5\\x70\\xdf\\x6c\\xdb\\xb1\\xec\\xaa\\x75\\xfd\\xe4\\xe2\\x4c\\x6e\\xbc\\x60\\xac\\x62\\xd2\\xd9\\xb5\\xec\\x2a\\x8c\\x89\\x23\\xe8\\x08\\xc8\\xab\\x31\\x24\\x43\\x7c\\x5f\\x27\\x0d\\x4c\\xe5\\x5c\\xc8\\x1f\\xce\\xa8\\x80\\x4c\\x22\\x81\\x4a\\x60\\x94\\x57\\x30\\xa0\\x4c\\xe2\\x86\\xae\\x67\\xf2\\x71\\x65\\xe1\\x2f\\xc7\\xf1\\x85\\xf1\\xc5\\xb1\\xb1\\xc1\\xc8\\xa7\\xe3\\xca\\x82\\xa3\\xeb\\x99\\xd7\\x87\\x87\\x72\\x69\\x91\\x9e\\x70\\x62\\x9f\\x96\\xcb\\x4e\\x96\\x95\\x05\\x27\\x3b\\xde\\xfe\\xec\\xf8\\xe2\\x48\\x78\\x36\\x18\\xfa\\x34\\x3b\\xc2\\xbe\\x0d\\x84\\xf3\\xf1\\x50\\x8f\\xec\\x92\\x40\\x22\\xf0\\xf4\\x00\\x4f\\x30\\xe0\\x43\\x1a\\xcb\\x18\\xda\\x43\\x15\\x35\\xb5\\x5c\\x31\\x85\\x11\\xec\\x35\\x67\\x47\\x6b\\x2c\\x2e\\x9e\\x3e\\xa0\\x2c\\x94\\xf6\\xd9\\x5a\\x8b\\xed\\x38\\x8b\\x8b\\x3b\\x8e\\xd3\\xd4\\x17\\x4f\\x2e\\x3d\\x34\\x32\\x3b\\x7c\\x4c\\x33\\x4a\\x0b\\x4e\\xfb\\x36\\x21\\x35\\xdf\\x67\\x7d\\x11\\xf5\\x70\\x49\\x33\\x0c\\x61\\x2a\\xdf\\xeb\\x80\\x20\\xbc\\x07\\xf8\\xbe\\x6d\\xdb\\x96\\x56\\xf5\\x21\\xf0\\xef\\x54\\xab\\x1b\\x1b\\xce\\x1e\\x14\\xb9\\xae\\x7d\\xa6\\x0e\\x58\\xdf\\x13\\x2c\\xbf\\xad\\xc3\\xd4\\xa1\\xa8\\x3a\\x2f\\x0b\\x0a\\xf0\\x24\\x71\\x2c\\x28\\x5f\\x16\\xe8\\xbb\\x1b\\xa1\\x2f\\x63\\x58\\xb7\\xe7\\x82\\xfc\\xd1\\xed\\x34\\x9f\\xe6\\x37\\x1e\\x7e\\x4e\\xbb\\x79\\x21\\xa3\\x58\\xe0\\x74\\xc0\\xb7\\xd3\\x7c\\xbb\\xce\\xa7\\x89\\x86\\x05\\x27\\x1a\\xfc\\x08\\x9f\\xd9\\x79\\xee\\xea\\x85\\x9b\\x8e\\x92\\xd9\\x5c\\x5b\\x9e\\x5d\\xf9\\x7b\\x24\\x07\\x86\\x3b\\x32\\x41\\x1f\\xb6\\xd7\\xee\\xae\\x4d\\xba\\x96\\xa1\\x90\\x97\\x7f\\x66\\x6f\\xbd\\x34\\x92\\x48\\x8c\\x34\\xe9\\xe6\\xdb\\x44\\x20\\xa4\\x5d\\x23\\x35\\xe2\\xa6\\x87\\x27\\x46\\xda\\xf0\\x05\\xb6\\x46\\x12\\xed\\xd6\\xf6\\x76\\xc3\\x21\\xdb\\xdb\\x04\\x6c\\x19\\xfe\\x18\\x08\\x98\\x19\\x38\\x80\\x4d\\x30\\xfb\\x9c\\x50\\x76\\xa3\\xe1\\x74\\xa5\\x99\\xc6\\xf1\\xe3\\x8d\\x13\\x5f\\xe8\\x93\\x67\\x3c\\xbf\\xe0\\x10\\xe0\\x30\\x9e\\xa3\\xe3\\x91\\x76\\x10\\x08\\xe7\\xa6\\xee\\x42\\xa7\\xb0\\xb8\\x2b\\xa1\\x13\\x6b\\xe7\\xd2\\xa6\\x2f\\x4a\\x15\\xa3\\x6c\\xbe\\xea\\x0a\\xd4\\xe2\\xd3\\x6f\\x18\\xa8\\xb6\\x09\\x7e\\x66\\xed\\xc1\\x67\\x9e\\x79\\x30\\x57\\xc8\\xf0\\x24\\x16\\x21\\x4e\\x64\\x58\\xc8\\x0d\\xcd\\x2e\\x08\\x59\\xe1\\x41\\xbf\\x54\\x72\\x54\\x4b\\xf3\\xe2\\xeb\\x47\\xc5\\xa3\\x0f\\x7f\\x9e\\x1b\\xa1\\x3f\\x58\\x7b\\x66\\xa8\\xc2\\x67\\xb4\\xc8\\xb0\\x36\\x1c\\xb1\\x26\\x17\\x8e\\x8f\\xfc\\xca\\x9e\\xab\\x11\\x1b\\xe3\\x1a\\xe0\\xfe\\xd7\\x60\\x7d\\x16\\x11\\x4a\\x8c\\xe0\\x79\\xbc\\x8c\\x45\\xce\\xcd\\x64\\x29\\x09\\x05\\x43\\x5f\\x14\\x1b\\x4a\\x59\\xc1\\x4a\\x59\\x79\\x17\\xde\\x72\\xb6\\x1c\\xbc\\xd5\\xde\\x69\\xca\\x8b\\x98\\x87\\x63\\x58\\xb9\\xa1\\x11\\xb2\\xa1\\x39\\x3a\\x82\\xd5\\xa3\\x86\\xff\\x14\\xff\\x42\\xa7\\xbc\\x30\\x2d\\x2e\\x8b\\x39\\x33\\xc4\\xa9\\x82\\x6c\\x94\\xb8\\x92\\x29\\x65\\xf1\\xaf\\xee\\xd3\\x45\\x7e\\x9f\\x2e\\xfe\\x42\\x1c\\xd7\\x47\\x1e\\xde\\xc2\\xfb\\xe2\\xed\\xbf\\x9d\\xfb\\x5c\\x31\\x8b\\xf7\\xc3\\x61\\x7e\\xdf\\x1b\\xa6\\x7f\\x6a\\xba\\x58\\x5c\\x1f\\x98\\x7e\\xdd\\xdb\\x8e\\xc5\\xac\\x0e\\x96\\x56\\x0d\\x0d\\x41\\x76\\xde\\x22\\x28\\xa7\\xfd\\x31\\x4c\\x6d\\xcd\\x1f\\xc1\\xe4\\x6c\\x6f\\x7a\\xe1\\x4b\\x2e\\x16\\xd2\\x5f\\x02\\x16\\x55\\x8e\\xae\\xaf\\xe1\\x38\\x56\\x65\\x96\\xfe\\xa4\\x03\\x82\\x9e\\x58\\x4a\\x89\\x4b\\x98\\x81\\x24\\xeb\\xf8\\x4f\\xb9\\xa1\\xd8\\x85\\x7b\\xeb\\x19\\xc5\\x59\\x1d\\x8f\\x9e\\x1e\\x8b\\xa5\\xdb\\x8f\\x2b\\x19\\xc7\\x99\\x5d\\xd6\\x7e\\x32\\x96\\x09\\x4f\\xd5\\x95\\x4c\\xc3\\x19\\xab\\x47\\x43\\x83\\xd7\\x41\\x00\\x69\\x76\\xe5\\xaa\\x56\\xa7\\x0e\\x16\\x07\\x63\\x74\\x6a\\x11\\x27\\x71\\x4f\\x1d\\x2f\\x51\\x11\\x72\\x9d\\xd6\\x51\\xe3\\xd3\\xed\\x6d\\x28\\x7f\\x85\\x38\\x89\\x89\\x04\\x14\\x9f\\xe1\\xeb\\x4e\\xa7\\x70\\x56\\xf6\\x67\\x20\\x36\\xac\\x80\\x50\\xd2\\x5f\\x8e\\x48\\x6b\\x31\\xbb\\xd5\\x08\\x9c\\xbe\\x28\\xd6\\x94\\x8c\\x6d\\xcf\\xae\\x10\\xbc\\x12\\x4c\\xc6\\xd7\\x05\\x87\\xd5\\xa2\\x65\\x63\\x49\\x57\\x66\\x6a\\xb6\\x3f\\x11\\x97\\x2c\\xdb\\xad\\x29\\xee\\x8b\\x19\\xfd\\x77\\x10\\x01\\x49\\x65\\x65\\x09\\x1c\\xf2\\x0b\\x58\\xa9\\x98\\x7a\\x25\\x87\\x45\\x53\\x08\\xab\\x39\\xa8\\x77\\x01\\xeb\\x52\\x16\\xeb\\x01\\x7a\\x73\\xa5\\x2c\\x0e\\xe3\\x2b\\x6f\\xcf\\xdf\\xf7\\x53\\x92\\x1c\\x9a\\x0c\\x4a\\x49\\x2c\\xc6\\xe5\\x7d\\xe5\\x7d\\xcb\\xe2\\x23\\x9b\\xd3\\x87\\xc3\\x9a\\xa6\\x0d\\x4c\\x8d\\xad\\x4c\\x84\\x53\\xf2\\xc8\\x08\\x97\\x6a\\xae\\xe7\\xad\\x49\\xe9\\x9d\\xa9\\xfc\\x40\\x30\\x36\\x5e\\x1a\\x9a\\x1f\\x2c\\x5e\\xb6\\x89\\xae\\x7e\\xfd\\xab\\x52\\x0e\\x27\\x53\\xf2\\x04\\x37\\x14\\x95\\x27\\x60\\x1d\\x37\\x70\\x03\\x6f\\x83\\xcf\\x41\\x83\\xb9\\xb7\\x0b\\xdf\\x9d\\xc3\\x59\\xac\\x0b\\x45\\x55\\xd0\\x39\\x5f\\x47\\x54\\x5c\\xeb\\x16\\x6e\\xe4\\x56\\xdf\\x94\\x51\\x26\\x93\\x38\\x39\\x9a\\xe5\\x0f\\x66\\x96\\x0f\\x9c\\xf9\\x92\\xdb\\xb9\\x0b\\x60\\xe9\\x7a\\x20\\xb7\\xaa\\x64\\xde\\x9e\\x9c\\x1c\\x2d\\x24\\xc7\\x16\\x16\\x2e\\x08\\xac\\x3f\\x04\\x66\\x04\\xf3\\xdb\\x09\\xd8\\xba\\x3f\\xdd\\x1b\\xa5\\x65\\x32\\xc8\\xac\\x3d\\x63\\x75\\x00\\xc2\\x52\\xd3\\xb4\\xdb\\x74\\x02\\xe9\\x8f\\xd3\\xc1\\xab\\x9a\\xb6\\x0e\\xaf\\x5b\\x99\\x9e\\x38\\x1d\\xaa\\xe6\\xf9\\x74\\x15\\xc6\\x5d\\x32\\x09\\xb6\\xa7\\xd0\\xee\\xb0\\xe7\\x25\\xcc\\x14\\xd5\\x66\\xbd\\x8e\\x11\\xa3\\xba\\xf6\\x92\\xe2\\x5e\\x3c\\x19\\xb7\\xed\\xf8\\x49\\x4c\\xaa\\x36\\xe9\\x46\\x36\\x33\\x81\\x26\\x91\\x66\\x5f\\xb2\\x7a\\x58\\xce\\x1d\\xad\\x27\\x43\\xd7\\x75\\x23\\x74\\x37\\x32\\x6d\\xbb\\x53\\x09\\xe3\\xd3\\x86\\x30\\x69\\xc1\\x6e\\x6c\\xfb\\xcb\\x67\\x9c\\xda\\x89\\xf4\\xff\\x22\\x47\\x37\\x2d\\xb3\\xbe\\x77\\x79\\x5d\\xac\\xaf\\x94\\xfb\\xd4\\x73\\x60\\xd6\\xed\\xea\\xcd\\xb8\\x3a\\x9a\\x59\\xdd\\x58\\xcd\\x8c\\x62\\xad\\xaa\\xe1\\xda\\xf8\\xe8\\x13\\xab\\x96\\xb5\\xfa\\xc4\\xe8\\xb8\\x6d\\xdb\\x9e\\x8c\\xd9\\xec\\xf0\\x55\\xcd\\x74\\xe3\\x05\\xbd\\x89\\x23\\x29\\x1b\\xb2\\xc9\\x46\\x95\\x1c\\xea\\x01\\xf3\\xc2\\x6f\\x01\\x4f\\xf6\\xef\\xc1\\xf6\\x25\\xcb\\xaa\\x44\\xb3\\x81\\x6c\\xb4\\x62\\xb5\\xbf\\x9d\\xcf\\xf0\\x16\\x9f\\xc9\\x63\\x07\\x08\\xdf\\xd3\\xb0\\x6d\\xff\\x94\\xf3\\x62\\x36\\xfb\\xa2\\x73\\xeb\\x09\\x7a\\x2b\\x9e\\xb8\\x05\\xfd\\x6c\\xe3\\x1d\\xfc\\x71\\x17\\xb7\\x11\\x99\\x95\\x45\\x89\\x53\\x8a\\x9c\\x44\\xdf\\xd5\\x4a\\x1e\\x3e\\xd4\\x96\\x7f\\xf9\\x88\\x36\\xfb\\xce\\x59\\x92\\x39\\x9b\\xb1\\x76\\xae\\xe2\\xe4\\xc3\\xe4\\xe2\\x2b\\x17\\x77\\x8e\\x1c\\x21\\xb3\\xb3\\x24\\x93\\xb1\\x76\\x1e\\x7e\\x98\\x5c\\xb8\\x80\\x50\\x17\\x37\\x89\\xf9\\xfa\\x48\\x6f\\xc4\\x9c\\x2a\\xe8\\xb0\\xa6\\x48\\xbd\\x48\\x27\\x4b\\xd8\\x0d\\xfc\\x75\\x1d\\xd3\\x97\\xdf\\xa3\\x56\\xd4\\x2f\\x77\\xc1\\x94\\x84\\x95\\xb5\\x95\\x06\\x73\\x4f\\xb7\\x08\\x19\\x57\\xd5\\x93\\x5d\\x36\\x23\\x32\\xbb\\xb2\\x32\\xeb\\xe3\\x15\\xdf\\xea\\xe0\\x90\\x4f\\xd3\\x6b\\x91\\xb8\\x30\\xa7\\x03\\xbe\\xb8\\x09\\xdb\\xc2\\x32\\x96\\x38\\x25\\xcc\\x95\\x16\\x85\\xa0\\xe0\\x72\\xe5\\xae\\xe0\\x4a\\xcd\\x7a\\x68\\x62\\x7f\\x69\\x3b\\x1a\\x8f\\xe5\\xc7\\x88\\xba\\x3f\\x7a\\x42\\x6f\\x6b\\x4b\\x3f\\x77\\x21\\x7d\\xe4\\xc9\\x39\\x9c\\x8c\\x96\\x83\\x63\\xf1\\x44\\x3a\\xf4\\x58\\x70\\xc7\\x0a\\x1e\\x09\\x97\\xa2\\x43\\xcb\\xa3\\x63\\x9a\\x9a\\x3a\\x9c\\xd6\\x97\\x16\\x46\\x0e\\x0e\\xce\\xcc\\x39\\x43\\xed\\xbf\\xc0\\x23\\xa9\\x74\\x22\\x3a\\xf4\\xb7\\x83\\xfe\\x5c\\x33\\x81\\xca\\x0b\\x49\\x41\\x5d\\xc6\\x7a\\xc7\\xd7\\xaa\\xb2\\x3e\\x00\\x08\\x03\\xd6\\x01\\xa6\\x6a\\x7e\\x51\\x0d\\x2d\\xcd\\xcc\\xae\\x08\\x7c\\xe6\\x0f\\x1e\\x57\\x2b\\x2a\\x0e\\x64\\xc6\\x06\\xc3\\xf4\\xea\\xa5\\xd9\\x0c\\x76\\x32\\xea\\x74\\x65\\x65\\x96\\xa4\\xf9\\x5f\\xf9\\x0f\\xf4\\xf2\\xdb\\x1f\\xca\\x8c\\x05\\xd2\\xfc\\x76\\x3a\\x46\\x32\\x5d\\x1d\\xa5\\x05\\xb8\\xd7\\x74\\xe5\\x21\\xe0\\x89\\x80\\xd4\\x7c\\x43\\x16\\xc2\\xdd\\x9c\\x4a\\x37\\x80\\x0b\\x26\\x22\\x03\\x30\\x81\\x00\\xd1\\xb6\\x66\\x59\\x8d\\x86\\x60\\x03\\x1a\\xeb\\xf0\\xb6\\xb6\\xa5\\x94\\x15\\xc2\\x67\\x36\\xab\\x96\\xb5\\xc3\\x67\\x70\\xcb\\xb2\\x08\\xd9\\xb6\\x2c\\x07\\xac\\xa5\\xba\\x96\\x51\\x94\\x4c\\x9a\\x87\\xbb\\x41\\x32\\x3c\\xea\\xe0\\xcc\\x33\\x7d\\x01\\xf8\\xd6\\x4c\\x5d\\x95\\x55\\x1f\\x46\\x43\\x48\\x56\\xdd\\x98\\x6e\\x55\\xaf\\x9f\\x21\\xb9\\xeb\\xf8\\xd6\\xc4\\x52\\xe5\\x9e\\xb5\\x67\\x94\\xc3\\xb8\\x7a\\xe6\\xc3\\xb0\\xf7\\x48\\x6e\\x47\\xfb\\x42\\x7b\\x7d\\xfc\\xb0\\xf2\\xcc\\xda\\x3d\\x95\\xa5\\x8f\\x7d\\x18\\xde\\xaf\\xa1\\x1e\\x99\\x28\\x08\\xf6\\x74\\x43\\x16\\x3a\\x16\\xcb\\xda\\x76\\x12\\x6c\\x8a\\x3b\\x9a\\x76\\xdb\\xb3\\x23\\x06\\x50\\x0b\\x59\\x98\\xb8\\xb1\\x65\\x60\\x97\\x4e\\xb9\\x4f\\x53\\xab\\x5a\\x85\\xc8\\x0f\\xdc\\xbc\\x83\\xde\\x00\\x8f\\x45\\x5f\\x4e\\x78\\x04\\xd8\\xec\\xf5\\x11\\xcc\\xf1\\x59\\x2c\\xc9\\x2a\\x3f\\x8f\\xcb\\x15\\x2c\\x7e\\x89\\x7b\\xd3\\xd9\\xb3\\x6f\\xe2\\xbe\\x44\\xee\\x7b\\xec\\xb1\\xdb\\x67\\xdf\\xc4\\xe1\\x2d\\xee\\x4d\\x67\\xbf\\xd4\\xae\\x0e\\x3e\\xfd\\x89\\xa7\\x7d\\x3a\\xd8\\x00\\x1a\\x72\\xad\\xa1\\xcb\\xd8\\x94\\x95\\x94\\x28\\xf1\\x61\\x53\\xd0\\xe7\\x3b\\xc6\\x50\\xe1\\xd0\\x25\\xee\\x43\\xcd\\xaa\\xb5\\xf2\\xe8\\x87\\xb8\\x4b\\xbf\\x08\\x2d\\xbf\\xcc\\x5d\\x3a\\x54\\x7d\\xf7\\xfa\\x20\\xbe\\x7f\\x70\\xf0\\x43\\x87\\x2e\\xe9\\xec\\x2a\\x82\\x3d\\x78\\xda\\x69\\x84\\x12\\xee\\x15\\x84\\xbb\\xf3\\x82\\xce\\x0c\\xc2\\x7f\\xb8\\x54\\x3d\\x7c\\xb8\\x3a\\x08\\xcf\\x77\\x6b\\x7a\\x72\\x62\\x7a\\x7a\\x62\\x12\\xa7\\xe9\\xb1\\xa5\\x1b\\x30\\x2b\\x3c\\x74\\x60\\x5a\\x3d\\xa4\\xb2\\x9c\\x97\\xb7\\x02\\xb6\\x01\\x44\\x22\\x89\\x92\\xac\\xa8\\x6e\\x62\\x4d\\x07\\x32\\xc3\\xc4\\xad\\xa3\\x25\\x8e\\x84\\xd3\\x55\\xdb\\xc9\\xdf\\xb2\\x8f\\x2c\\xd9\\xf7\\x2e\\x65\\x4f\\x5f\\x79\\xfd\\xa9\\x23\\xf8\\x4d\\xf7\\x2e\\x9d\\xd6\\xe7\\x1f\\xae\\x3a\\xf9\\x5b\\xd5\\x93\\x27\\xca\\x59\\xeb\\xc2\\xf1\\x6e\\x99\\xcf\\x23\\xce\\x8d\\x6e\\x91\\x38\\x75\\x35\\x7f\\xcb\\xfe\\xe9\\xec\\x4b\\xf6\\x5b\\xf3\\xb7\\xaa\\x5b\\xd9\\xdf\\xae\\x76\\xe3\\x99\\x03\\x08\\x8d\\x03\\xb2\\x39\\x72\\xed\\x7e\\x1e\\x54\\x30\\x17\\xf6\\x65\\xc8\\x00\\x7f\\x52\\x67\\xf1\\x12\\xf5\\xc5\\x15\\x2c\\x89\\x8b\\x2b\\x58\\x65\\x8f\\xab\\x04\\x68\\x88\\x4e\\x46\\x49\\x17\\x63\\xf3\\xf3\\x31\\x39\\x36\\x37\\x1f\\x2b\\xa6\\x95\\x4c\\x4d\\x3b\\x27\\x66\\xc5\\x54\\x2c\\xd2\\xde\\x8a\\xc4\\x92\\x52\\x56\\x94\\x24\\x61\\x59\\x90\\x56\\xf9\\x0c\\x37\\x35\\xc5\\xa5\\xb1\\xa5\\x64\\x0a\\x7c\\x9a\\xfe\\x84\\xfe\\xa5\\xf9\\x42\\x46\\x21\\xa4\\x2e\\x0e\\x5f\\xa5\\x02\\xe7\\xd5\\x61\\x7a\\xba\\x20\\x7d\\x31\\xc3\\x47\\xa3\\x2b\\x2b\\xd1\\x28\\x8b\\x7b\\x8a\\xf5\\xe4\\xa8\\xf4\\xe3\\x52\\xe8\\xe8\\x20\\xb3\\x99\\x42\\x2e\\xba\\x97\\x83\\x21\\xf4\\x62\\x6b\\xf7\\x63\\x6d\\xbb\\x4c\\x9e\\x05\\x9e\\xc5\\x4a\\x57\\x1b\\x5d\\x28\\x75\\xc6\\xde\\x09\\x99\\xea\\xad\\x76\\xb5\\xd5\\x84\\x40\\xe9\\xad\\x16\\x80\\x40\\x61\\x04\\x31\\xd3\\x36\\x1c\\xeb\\xfb\\xd0\\x6e\\x61\\xc7\\x9f\\x43\\x3b\\xe4\\x22\\xf0\\xa2\\xd2\\x62\\x16\\x4f\\x62\\xd9\\x28\\xab\\x95\\x22\\xec\\x16\\x8c\\xf2\\x32\\xee\\x03\\x34\\xc2\\xf6\\xc4\\xb1\\x03\\x8e\\xc6\\xfd\\xb3\\x03\\xc7\\xcc\\x76\\xeb\\xc0\\x53\\x54\\x1a\\x2d\\xbd\\x97\\xf1\\xfb\\x8f\\x4e\\x49\\x86\\x31\\x9b\\xc5\\xf0\\x2e\\x4d\\x1d\\x02\\x51\\x55\\xf1\\xe2\\xed\\x11\\x72\\x02\\x08\\xd7\\x5d\\x9b\\xa9\\x8c\\x16\\xc0\\x87\\x07\\xb5\\x94\\xdc\\x8a\\xbb\\x8c\\xef\\x6a\\xa5\\xac\\xb2\\x31\\xab\\x0a\\x5d\\x2e\\x94\\xbf\\xb8\\xb8\\x76\\x07\\xe1\\x91\\xd2\\x01\\xeb\\x83\\x50\\x2e\\x19\\x8a\\x24\\x93\\x91\\xa1\\x8c\\xa2\\x7c\\x0b\\x52\\xa2\\x77\\xe4\\x49\\x42\\x26\\x73\\xe1\\x9c\\x44\\x48\\xf1\\x34\\xab\\x3b\\x38\\x7e\\x7c\\x3c\\xa8\\x94\\x15\\x91\\x05\\x58\\xd3\\xfb\\xe4\\x61\\xe8\\xef\\x85\\x81\\x3e\\xdb\\xb5\\xb0\\xf4\\xdf\\x07\\x7f\\x34\\xbb\\xa9\\x0b\\x05\\x5e\\x37\\x4c\\x09\\xd7\\x35\\x4d\\xab\\xba\\x37\\x84\\xbd\\xb7\\x9c\\xb6\\xe3\\x58\\x56\\x73\\x77\\xe7\\x6f\\x75\\x76\\x5a\\x10\\x43\\xf5\\x7f\\x15\\x4b\\x6a\\x8f\\x7a\\x2b\\x8b\\xa2\\x24\\xef\\xba\\xe5\\xfd\\xf5\\xfe\\x3e\\x54\\x5b\\xbc\\x4b\\xb5\\xad\\x99\\x42\\xe1\\xd1\\xbb\\x56\\xdb\\xc1\\x8f\\x7c\\x19\\x25\\xc1\\x02\\x01\\x51\\xf1\\x80\\x1e\\xc2\\x96\\xf5\\x2c\\x16\\x38\\x00\\x3a\\x0a\\x63\\x87\\xb4\\xb7\\x88\\x3e\\x97\\x98\\x48\\xcc\\xe9\\x4e\\x22\\x5d\\xcd\\x34\\x88\\x20\\x90\\x8d\\xc5\\x33\\xd1\\x38\\x55\\x34\\xe2\\xd1\\x33\\x8b\\xb7\\xd3\\x3c\\xd8\\xa0\\xbc\\x32\\x39\\xcf\\x07\\xc3\\xb4\\x51\\x73\\x8f\\xd2\\x19\\x8c\\x12\\xb6\\xe7\\xcf\\xcf\\xb7\\x7c\\x15\\x3c\\x56\\xcc\\x54\\xeb\\xce\\x8c\\x69\\xce\\x38\\xe2\\x9e\\xd5\\x74\\xe4\\x95\\x26\\xb4\\x3d\\x0d\\xfe\\x17\\x75\\x19\\x9b\\xba\\xb9\\xe8\\xea\\xb9\\xbe\\xf2\\x83\\x59\\x2c\\x71\\x2a\\x54\\x6e\\xaa\\x26\\x76\\xbe\\x14\\x1c\\x0a\\xe0\\x30\\x0e\\x07\\xa0\\xb2\\x37\\x4f\\xa5\\xab\\xef\\x19\\x7b\\xb9\\x32\\x4e\\xda\\xbf\\x4f\\xf8\\xc3\\xe3\\xbf\\xf5\\x15\\x1c\\xc2\\xc1\\x40\\xb7\\xbe\\xb1\\x44\\x02\\x1f\\x4a\\xff\\x9b\\x83\\xe3\\x44\\x20\\xb5\\x99\\xfc\\xd2\\x44\\x67\\xdd\\x78\\x19\\x85\\x5c\\xde\\x14\\x3a\\x4a\\x0c\\x3d\\x65\\x0a\\xbb\\x2f\\x52\\x02\\xf9\\xa5\\xc4\\x40\\xf5\\x12\\x53\\x69\\xbb\\xea\\xbb\\x52\\x2d\\x74\\x32\\x7b\\x29\\xd4\\xfe\\xda\\xa9\\x10\\x09\\x5d\\x22\\x69\\x3e\\xf1\\x8d\\x8d\\xfe\\x0b\\x56\\xab\\x7a\\xd6\\x7a\\xc3\\x73\\x8b\\x97\\xdf\\x60\\xf9\\xe5\\xb4\\x97\\x01\\x4f\\x6d\\xca\\x45\\x57\\xe6\\x04\\xdd\\x90\\x73\\xf8\\xee\\xf7\\xcf\\xd8\\x58\\x5a\\xda\\x58\\xfa\\xb1\\xfe\\xbb\\x88\\x17\\x14\\xe5\\x5e\\x45\\x59\\xba\\xcb\\xcd\\x44\\xaf\\xc2\\x8f\\x69\\x72\\x46\\x52\\xf5\\xf8\\x31\\x39\\xd3\\xc7\\x8f\\xa9\\x4a\\xc0\\x8f\\x59\\x13\\xab\\x55\\xb1\\x96\\xe1\\x9d\\x0d\\xb1\\xca\\x50\\x35\\xaa\\x62\\x0d\\x37\\xd9\\x7b\\xbb\\x45\\x8f\\xd5\\x2c\\x76\\xc6\\x16\\x9c\\xed\\x8b\\xa1\\x1f\\xf6\\x70\\xa3\\x2a\\x46\\x59\\x95\\x19\\x70\\xac\\x68\\x16\\xc3\\x42\\x4a\\xd2\\x99\\xbd\\x58\\xd9\\x13\\x9b\\x0e\\xcd\\xae\\x04\\xe6\\x06\\x94\\x8c\\x5d\\x28\\x77\\xf6\\x9e\\xec\\x05\\xaa\\xab\\xaf\\xcc\\x72\\x23\\x23\\x5c\\x46\\x21\\xdb\\x9d\\x3d\\xab\\x0f\\xb4\\x0e\\xfd\\xe0\\xe7\\x64\\xae\\x53\\x9f\\x87\\xa9\\x3b\\x83\\xf6\\xa3\\xe5\\x6e\\xb6\\x9d\\xa7\\x51\\x28\\x7d\\x9f\\x25\\xe6\\xbe\\x15\\xdd\\x49\\x3b\\x3c\\x89\\x4b\\xee\\x4c\\x4e\\xc5\\x82\\x0a\\xbe\\x09\\x8a\\x67\\x6c\\x79\\x76\\x76\\x79\\xf6\\x3b\\xbe\\xfd\\x57\\x4e\\x4d\\x65\\x94\\x68\\xfe\\xd4\\xe9\\x53\\x98\\x90\\xf5\\xb6\\xb6\\x4e\\x16\\xf6\\xef\\xc7\\x4f\\x40\\x88\\xd5\\x43\\xb3\\xcb\\x84\\x2c\\xdf\\xeb\\xdb\\xff\\x78\\x66\\x68\\x22\\x36\\x3c\\x9c\\xc9\\x0c\\x4d\\x4c\\x0c\\x65\\xd6\\xd5\\xdc\\xa1\\x43\\x39\\x55\\x14\\x91\\x8f\\xf7\\xd3\\xc5\\xc9\\x75\\xeb\\x76\\x5b\\xf7\\xd5\\x37\\x3d\\xd1\\xde\\xfa\\x1d\\x88\\x4c\\x6f\\x2d\\x28\\x84\\x28\\x57\\x16\\x4f\\xea\\xba\\xab\\x27\\x7a\\x39\\x0c\\x49\\x2a\\x7b\\x4e\\xb9\\xbf\\x54\\xbb\\x70\\xd4\\x1d\\x96\\x70\\x3c\\x44\\x8b\\x11\\x18\\xd6\\xc6\\x7f\\xf6\\x95\\xf6\\x5e\\x58\\x48\\x6a\\x6e\\x99\\x03\\x9d\\xb6\\x44\\x40\\x93\\x28\\xd0\\xf6\\x74\\x6e\\x94\\x87\\xd9\\x49\\xbb\\xa8\\x60\\x94\\xbd\\x7e\\x7c\\xc5\\x3a\\xbb\\xd2\\xde\\x5a\\xb9\\x17\\x4a\\xfd\\xd1\\xb5\\x2a\\x1e\\x78\\x4c\\xc9\\x64\\x94\\xcc\\x4e\\x42\\xcb\\x58\\x56\\x46\\xfb\\x86\\x4e\\xbf\\xf9\\x5c\\x21\\x26\\x49\\xb1\\xff\\x94\\x51\\xd2\\x69\\xc5\\xc7\\xcd\\x19\\x82\\xdc\\x24\\x93\\x97\\x8d\\x38\\xf6\\x53\\x61\\x1a\\xeb\\x5a\\x65\\x1d\\xe0\\xb3\\xf1\\x3b\\xa5\\xf6\\xce\\x1f\\x45\\x03\\x36\\xb1\\x6d\\x62\\xf7\\xe2\\x97\\x72\\x9d\\x5c\\xbc\\xbb\\xf2\\xc2\\x78\\x96\\x7f\\x1f\\xe7\\x4b\\xbd\\x5a\\xdd\\xde\\xde\\xdc\\xec\\x03\\x15\\xef\\xca\\xc2\\x92\\x6b\\xd3\\xa8\\x18\\x65\\x45\\xdd\\x6d\\x21\\xe4\\xba\\xd6\\xc4\\x8e\\x74\\xfb\\xce\\xb9\\xa5\\x7d\\x19\\x5e\\x1b\\x8e\\x68\\x4e\\x24\\x26\\x64\\x7f\\x9c\\xcf\\xbc\\x3e\\xe4\\x42\\x9a\\xfd\\xc4\\xbe\\x7b\\x8c\\x6a\\x32\\xc2\\xa7\\x49\\x24\\x46\\x62\\x11\\xeb\\x81\\x99\\x0c\\x2f\\xbc\\x3e\\x95\\x38\\xda\\x85\\x33\\xf3\\xe9\\xe5\\x61\\x14\\x03\\x6e\\x7e\\xd9\\xe0\\xd4\\x1c\\x36\\x05\\x4e\\xc5\\x68\\x87\\x34\\x77\\xaa\\xf5\\x7a\\xbd\\x8e\\x9b\\x4e\\xe3\\x43\\x8f\\x3a\\x0f\\xde\\x7f\\x7f\\xf5\\xbe\\xfb\\x58\\x2c\\x8c\\x85\\x66\\x61\\xed\\x57\\xc0\\xa2\\xe5\\xa2\\x57\\x99\\x6a\\xd8\\x83\\xdd\\x82\\x04\\x53\\x26\\x2d\\xab\\x9c\\x98\\xe2\\xa4\\x0a\\x76\\x32\\x53\\xa5\\xc5\\x12\\xfe\\xe9\\x64\\x1a\\x14\\x9a\\xe4\\x66\\x80\\x3e\\x40\\x99\\xb1\\xd4\\x66\\x20\\xf0\\x33\\x89\\x4f\\x95\\xd2\\x99\\x52\\x29\\x33\\x34\\xb0\\xc6\\x2b\\x65\\x85\\xbf\\x3c\\x14\\xca\\xd0\\x07\\x2c\\xb1\\x36\\x34\\x34\\xb4\\x36\\xea\\xc3\\x4c\\xfe\\xaf\\x28\\x0a\\x98\\xc9\\x30\\xc3\\x84\\x39\\x70\\x6a\\x74\\xf0\\xb3\\x4c\\x01\\x82\\x8f\\x68\\x07\\x7e\\x87\\x2c\\xc5\\x72\\xc7\\x0f\\x4f\\xdf\\x63\\xad\\x5e\\xfb\\xc0\\xb5\\x13\\xb3\\x85\\xfc\\xcc\\xe0\\x40\\x6d\\x89\\xcc\\x6a\\x33\\x23\\xc3\\xc6\\x84\\x8a\\x9f\\x2d\\xd7\\x1f\\x38\\x79\\xed\\xda\\xc9\\x37\\xdd\\x3f\\x58\\x98\\x9f\\x2b\\xa6\\xca\\x71\\xdf\\x7a\\xee\\x8d\\xc3\\x19\\x77\\x3d\\x57\\x8a\\x9c\\x5c\\x11\\xfb\\xd6\\xf0\\xfe\\x30\\x56\\xba\\xa6\\xcb\\xe9\\xab\\x69\\x79\\x38\\xe3\\x5b\\xcb\\x37\\x58\\x70\\x28\\x6c\\x5b\\x33\\x05\\x4d\\x2b\\x5c\\xf6\\xaf\\xe6\\xfb\\xba\\xab\\x7c\\xb2\\x17\\x17\\xd3\\x9b\\x4f\\xe4\\xdd\\x18\\x92\\xfd\\x35\\x73\\xba\\x20\\xff\\xf3\\xbb\\xd4\\xf9\\x4e\\xc7\\xb1\\xef\\x56\\xa1\\x95\\xbf\\xdb\\x35\\x9b\\x3a\\xe0\\xe2\\xea\\xdf\\xed\\x9a\\x7f\\x97\\x5e\\xee\\x12\\xbd\\xf0\\x81\\xbb\\xd4\\xdf\\xd0\\x0a\\x33\\x33\\x05\\xe7\\x7b\\xbb\\x66\\xfa\\x5c\\x4e\\x02\\x12\\x0b\\xeb\\xf7\\x8a\\xe9\\x8b\\xc0\\x60\\x5b\\xe6\\x0a\\xdf\\x5b\\x9e\\xe2\\x24\\x49\\x92\\x44\\x09\\xfe\\xfd\\x23\\xdf\\xfe\\x73\\x7d\\xb2\\xd5\\x03\\x92\\x28\\x89\\xa2\\x28\\xd2\\xef\\xef\\x11\\xd9\\x59\\xf4\\xc8\\xb7\\x7a\\xe5\\x2c\\x7f\\xbb\\xa2\\xde\\xcc\\xc4\\xe4\\x4a\\xd0\\xe2\\x80\\xe3\\x4b\\xe5\\xee\\x22\\x53\\xfe\\xbc\\x28\\xcd\\xcd\\x4b\\x47\\xe7\\xe7\\x24\\x51\\x7a\\x4b\\x9f\\x4c\\xf9\\x94\\x24\\xcd\\xcd\\xb1\\x3f\\xa9\\xd9\\x53\\x69\\x1f\\x57\\x81\\x1f\\x37\\xa7\\x3b\\xbb\\x78\\xc0\\x39\\x89\\x74\\x3a\\xc1\\x02\\x42\\xea\\xcd\\xdc\\x8b\\x67\\xb3\\xcd\\xbb\\xf1\\x15\\x50\\xe9\\x1c\\xf5\\xcf\\x51\\xa1\\x02\\x5f\\xc0\\x3e\\xca\\x03\\xf0\\x95\\x68\\xb8\\xa7\\x10\\x00\\x0b\\xfa\\xdf\\xc1\\x54\\xff\\xae\\x78\\xa8\\x95\\x3d\\x4a\\xf9\\x14\\x44\\x9b\\xf7\\xf2\\xc2\\x43\\x68\\x3a\\xd3\\x7f\\x2d\\x77\\xbc\\xa2\\x12\\x67\\xaa\\x0c\\x20\\x09\\xa3\\xf7\\xc8\\x8f\\xff\\xec\\xe1\\xc3\\x3f\\xfb\\xb8\\xfc\\x93\\x17\\x37\\xaf\\x0f\\xff\\xc4\\x4f\\x0c\\x5f\\xdf\\xf4\\x6c\\x19\\x96\\x7b\\x0f\\xe3\\x54\\x56\\x56\\xcd\\x05\\x2c\\x71\\x92\\x0a\\x3f\\x95\\x30\\xba\\x28\\x9c\\xfa\\xa1\\xa9\\xd6\\xe3\\xf2\\x7b\\x58\\x01\\x9f\\xdf\\xf7\\x9a\\xe5\\xc1\\xea\\x3d\\xd7\\x37\\x2f\\xb2\\x62\\x7a\\xcb\\x88\\x40\\x0c\\xae\\xe4\\x05\\xd3\\x94\\xfa\\xcb\\x99\\xfa\\xa1\\x53\\x02\\x2e\\xf5\\x15\\x56\\x1d\\x5c\\x7e\\xcd\\xaf\\xfa\\x0b\\x0c\\x21\\x8c\\x10\\xbe\\x13\\x40\\x50\\x5e\\x0e\\x1d\\x47\\xe7\\xe1\\xee\\xb8\\x58\\x60\\x52\\x19\\x66\\x7d\\xb3\\x62\\xa8\\x0c\\xd0\\x95\\x03\\x96\\x24\\x97\\x55\\x59\\x2e\\xba\\x30\\xa7\\x0c\\xc1\\xb4\\xec\\x72\\x43\\xeb\\x8b\\x00\\x83\\x6a\\x4a\\x1c\\x83\\x10\\xc3\\xe8\\xda\\x0b\\x83\\xf9\\xd0\\x09\\x63\\xf2\\xbe\\xc7\\x16\\x52\\xc9\\xa9\\xa1\\xc0\\x82\\x91\\x0c\\x09\\xa2\\xbc\\x7f\\xff\\x44\\x28\\x1c\\x8a\\xa7\\xc7\\xb2\\xe3\\xf1\\xd8\\x44\\x6e\\x74\\x74\\x32\\x93\\x9e\\x88\\x8f\\x8a\\xf2\\xc8\\xc0\\xe9\\xc9\\xfb\\x46\\x18\\xb0\\x58\\x00\\x3d\\xfb\\xc8\\xd2\\x7a\\x7a\\xe2\\xbe\\xff\\x7e\\xf0\\xed\\x45\\x8e\\x7f\\x70\\x21\\x26\\x0e\\x2a\\x82\\xb8\\x75\\x29\\x3a\\x31\\x34\\x14\\x1b\\x88\\x8d\\x49\\xd1\\x91\\x8a\\xb8\\x28\\xf1\\xf1\\xe1\\xf1\\xc1\\x98\\xf4\\x7b\\x1e\\xda\\x98\\x3f\\xcf\\x02\\xe2\\x95\\xb1\\xec\\x62\\x23\\xc8\\x46\\xa1\\x13\\x2c\\xdd\\x04\\x04\\x3b\\xec\\x7c\\x9d\\x85\\xaa\\x5a\\xed\\x1d\\xc7\\xc1\\x02\\xd9\\x70\\xe1\\x55\\xdc\\xe7\\xae\\x97\\x33\\x0e\\x25\\xa9\\x88\\x1e\\x02\\x97\\x5f\\x41\\x08\\xba\\xe0\\x7a\\xdf\\x7e\\xb9\\x5d\\xc3\\x9a\\x65\\xb5\\xb7\\x71\\x7d\\xc7\\xb2\\x1c\\xcb\\xc2\\x3b\\x35\\x42\\xec\\xcd\\x0d\\xcb\\xc2\\x68\\x73\\x73\\xd3\\x8d\\x61\\x68\\xb9\\xd8\\x02\\xa5\\x6e\\x94\\x11\\x07\\xd1\\x55\\xbd\\x40\\xc6\\x93\\xd8\\xcb\\x5e\\xc0\\xa7\\x61\\x76\\x32\\x5a\\x82\\x17\\x72\\x45\\x9f\\x86\\x26\\xdd\\x61\\xe1\\x45\\xa7\\xb6\\xb6\\x88\\xd0\\x05\\xb0\\x17\\x3c\\x50\\xe8\\xde\\xd8\\x96\\x1c\\x42\\xa6\\xc0\\x84\\x96\\x8a\\x2b\\xb9\\xa8\\xae\\x53\\xc0\\x7b\\x12\\x1d\\x8c\\xd6\\x2e\\xae\\x35\\x41\\x9a\\xfc\\xf7\\xac\\x1a\\x56\\x65\\x5d\\x10\\x26\\x4b\\xa5\\xc7\\x41\\xd0\\xf4\\x3d\\xa5\\x7b\\x3f\\x53\\xe6\\x3c\\x2e\\x86\\x3b\\x9c\\x51\\x5e\\x4f\\xff\\xf2\\x8b\\x0b\\x78\\xed\\xfc\\x1a\\xfe\\x30\\x14\\xf2\\x33\\xf0\\x6c\\xbd\\xfe\\xc4\\x84\\x52\\x9a\\xbc\\x0d\\xf5\\xbd\\x9e\\x3d\\xa6\\x03\\xe0\\x63\\xf8\\x97\\x78\\xc7\\x9d\\x7b\\x0f\\x22\\x64\\xf6\\x60\\x1a\\x18\\xba\\x28\\x65\\xb1\\xa4\\x57\\x4c\\x89\\x8e\\x45\\x4e\\xec\\x8b\\x3f\\x36\\x8d\\x2e\\x6f\\xfa\\xcf\\x76\\x21\\x0e\\x4e\\xa6\\x52\\xa1\\xa9\\xa1\\xcd\\x55\\xae\\x74\\x7f\\x2c\\xfd\\xb1\\x64\\x13\\x72\\x0b\\x7f\\x8d\\xe1\\x1e\\x80\\x3d\\xf3\\x5f\\x79\\x68\\x07\\x9a\\x46\\x22\\xe7\\x84\\x1f\\x1f\\x11\\xea\\xa2\\x7c\\x1a\\xf2\\xab\\x32\\xb0\\xfd\\xf7\\x20\\x39\\xfa\\x75\\xfc\\x7f\\x07\\xd7\\xcc\\x30\\x34\\x77\\xf1\\x79\\x99\\x82\\xc4\\xa9\\x06\\x9d\\x9b\\x43\\x9c\\x6a\\xb2\\x8c\\xcb\\x13\\xb7\\x6e\\xdc\\xb8\\x75\\xe3\\x65\\x7b\\xf4\\xfa\\x3d\\x57\\xc7\\xaf\\xe2\\xd3\\xe3\\x57\\xc7\\x19\\x0c\\x6e\\xfb\\xe6\\x47\\x6f\\xde\\xfc\\xe8\\xf8\\x8d\\xc5\\xcc\\x61\\xe7\\x91\\xfb\\xf3\\xf7\\xdf\\x5f\\xb8\\x94\\xf7\\xd7\\xe3\\x47\\x61\\xf5\\xc9\\x88\\xe1\\xbe\\x3a\\x4b\\x9c\\x6a\\xc6\\xb1\\x6a\\x62\\x01\\x2e\\x69\\xc6\\x57\\x29\\xae\\x8f\\x5f\\x1d\\x7f\\x99\\xd6\\xca\\x24\\x60\\x6b\\xc7\\x57\\xf1\\xd9\\xc2\\xa5\\x7c\\xfe\\xfe\\xfc\\xfd\\x70\\x6d\\xb2\\x5b\\x27\\xc3\\x65\\x2a\\x40\\x76\\x2e\\x40\\xee\\x84\\x41\\xa2\\x09\\x8a\\x48\\xea\\x5a\\x77\\xe9\\x0a\\x48\\xaf\\x8f\\x63\\x26\\xc4\\x4e\\x44\\x47\\x23\\x91\\x4b\\x7e\\xe3\\x1b\\xc5\\xcb\\xcb\\xe5\\xbf\\x39\\x8b\\xd3\\xa5\\xf1\\x05\\xf3\\xd4\\xc5\\x1b\\x0b\\xfc\\x58\\x76\\x6c\\x12\\xff\\xca\\xf8\\xd5\\xf1\\x1f\\x19\\x1f\\x2b\\x68\\xda\\xc5\\x1b\\xc9\\x42\\xe4\\x32\\xfe\\xe7\\xf1\\x6c\\xbc\\x7d\\xeb\\x1b\\x9a\\xb1\\xbc\\x86\\x9f\\x3e\\xdb\\xfe\\xb3\\xd2\\xf8\\xc2\\xc2\\xcd\\x0b\\x27\\x4d\\x3e\\x95\\x4b\\x4e\\xce\\x17\\x2e\\xe5\\xd7\\x22\\xf9\\xd4\\xcd\\x0b\\xb3\\xd3\\xf9\\xb1\\x89\\xe5\\xcb\\xfe\\x7e\\x61\\xb6\\x0e\\xe8\\x7f\\x58\\xff\\x4c\\xb1\\xff\\x2e\\xb8\\xfd\\xff\\x9f\\x1e\\x95\\x9c\\xe3\\x62\\xdc\\xd7\\x21\\x6f\\xf4\\xee\\xc0\\x57\\x37\\xe8\\x57\\x2f\\xfa\\xba\\xe3\\x9d\\x9d\\x3b\\xc0\\x38\\xbe\\x10\\x6e\\x05\\x06\\x40\\xd6\\xce\\x20\\x05\\x2d\\xa2\\xb3\\xdd\\x38\\x1b\\x53\\x14\\x0a\\x65\\x53\\x55\\x2a\\x39\\x40\\x54\\x37\\x2b\\x22\\x1d\\x90\\x5e\\xae\\x55\\x79\\xca\\xb7\\x2f\\x19\\x05\\x4f\\x92\\xf6\\xe0\\xcf\\xe0\\xbd\\xa8\\x60\\x4b\\xa8\\x0a\\xef\\x33\\xee\\xa0\\xf2\\xc4\\xe0\\x28\\x97\\xcf\\xe4\\xb2\\x99\\xfc\\xe0\\x08\\x77\\x14\\x1e\\xfb\\xf6\\xa7\\xe0\\xcd\\xc6\\x28\\x16\\x11\\x93\\x99\\xa4\\x96\\xcc\\x24\\xc5\\x48\\x0c\\xd7\\xa9\\xd0\\x70\\x44\\x39\\x7a\\xac\\x34\\x31\\x38\\xc2\\xe5\\x47\\x46\\xf2\\xdc\\xc8\\xe0\\xcf\\x26\\x87\\xeb\\x23\\x89\\xc4\\x48\\x9d\\xea\\xe0\\xee\\xde\\x97\\x5b\\xad\\x48\\x6c\\x95\\xee\\xaf\\xb2\\x6d\\xac\\x77\\x2d\\xf4\\xc5\\x21\\x99\\xfe\\xa8\\xa6\\xbd\\xe2\\x7c\\x9a\\x84\\xd8\\x8e\\xd3\\x13\\x30\\xe4\\xea\\xb9\\x9e\\x4f\\x2d\\x09\\xd6\\x8c\\xbb\\x72\\xa0\\xe9\\x02\\x6c\\x0d\\xcf\\xbf\\xe6\\x39\\x06\\xff\\x3f\\xea\\xde\\x04\\xbe\\x8d\\xe3\\x3c\\x14\\xdf\\x6f\\x66\\x81\\x05\\x48\\x1c\\x02\\x71\\x91\\x20\\x05\\x82\\x84\\x08\\x48\\x58\\xde\\x20\\x08\\x5a\\x07\\x09\\xd9\\xb2\\x2c\\x4b\\xb2\\x2d\\xc9\\x06\\x25\\xcb\\x07\\xb4\\x04\\x96\\x24\\x08\\x10\\x0b\\xef\\x2e\\x48\\x51\\x71\\x12\\xa4\\x6e\\x2e\\x3b\\x77\\x4a\\x39\\x69\\xd3\\xc4\\x49\\x9a\\x34\\x15\\x73\\xf5\\xb5\\x49\\x9a\\xbc\\x1e\\x4c\\xd2\\xb4\\xef\\xd5\\x4d\\xd2\\xa4\\xa1\\x9a\\xa6\\x97\\x7b\\xa4\\x87\\xd9\\x36\\x6d\\xda\\x34\\x4d\\x0f\\xfa\\xff\\x9b\\x99\\x5d\\x00\\xa4\\xe4\\xf4\\xff\\x7e\\xff\\xf6\\xfd\\xdf\\xa3\\x84\\xdd\\x6f\\x66\\xaf\\xd9\\xd9\\x99\\x6f\\xbe\\xfb\\xcb\\x52\\xbf\\x87\\x25\\x18\\xdc\\xf9\\x06\\xcd\\x37\\xdb\\xcc\\x35\\x99\\x29\\x89\\xe4\\xff\\xde\\xbc\\x0d\\xff\\x99\\x7c\\x8f\\x65\\x97\\x2d\\xac\\xe1\\x0d\\xdf\\xaa\\x51\\xed\\xb8\\x7d\\xdc\\x90\\x23\\x40\\x38\\xc2\\x20\\x94\\x6e\\x92\\x9b\\x32\\x7b\\xf3\\x96\\xc4\\x56\\x0f\\x0b\\x91\\x44\\x44\\x68\\x86\\xbe\\x00\\x91\\x99\\x9d\\xb7\\x3e\\xdb\\xdb\\xd9\\xe9\\x6d\\xb1\\xc3\\x64\\x38\\x74\\xa8\\x29\\xf1\\x32\\x9f\\x1c\\xfb\\xe1\\x2d\\xa8\\x5f\\x3a\\x77\\x89\\x21\\xd6\\xf4\\xed\\x5b\\x51\\x0a\\xef\\x1f\\x18\\xd8\\x1f\\x06\\x8e\\xe2\\xda\\x57\\xbc\\x4c\\x43\\x76\\xd9\\x84\\x32\\x49\\xea\\x40\\xd3\\xc7\\x3a\\x78\\x1b\\x4b\\xb5\\x66\\x1b\\xbe\\x4f\\x1f\\x9c\\x48\\x24\\x5a\\x13\\x62\\x19\\x5d\\xb0\\x4e\\xd5\\x47\\x5f\\xae\\xd7\\xb3\\x7b\\x53\\x89\\xd2\\xc7\\x36\\xed\\x1f\\xad\\x9c\\x8b\\x4a\\x49\\x52\\x34\\xbe\\xff\\x7f\\xd0\\xed\\xd9\\x6c\\xa9\\x64\\xbf\\xfd\\xeb\\x6e\\x66\\x33\\x4b\\xa5\\x0c\\x70\\x2f\\xff\\x9e\\xb7\\x3e\\x33\\x4d\\xc7\\xd1\\xcb\\x84\\x88\\x31\\x9f\\xc9\\x95\\x32\\xb3\\x99\\x97\\xf9\\xd2\\xf5\\x52\\x36\\xbb\\xf5\\x72\\x4f\\x6c\\x3e\\x8f\\xe0\\xac\\xa8\\x49\\x4d\\xff\\xf0\\xc7\\x6d\\x6d\\x84\\xdf\\x9c\\x0e\\xbf\\xf1\\xf6\\x8f\\x5b\\xdf\\x08\\xbf\\x29\\x1d\\x7e\\xb9\\x07\\xee\\xb1\\xbd\\x03\\x6a\\xf3\\x43\\x33\\x81\\x4c\\xa6\\x26\\x46\\x68\\x06\\xa5\\xa0\\x40\\x4d\\x80\\x52\\x41\\x01\\xde\\xd6\\x2d\\x9f\\xcc\\x66\\x53\\x67\\xdc\\x4f\\xa4\\xce\\xb8\\x7b\\x69\\x01\\x1e\\x39\\x34\\x7e\\x52\\xce\\xcc\\x66\\x33\\x67\\x52\\xe1\\xf0\\x89\\x33\\xa9\\xbe\\xee\\x5e\\xa3\\x86\\xd1\\xa1\\x66\\x2c\\x6a\\x2b\\x8d\\x8d\\x92\\x8c\\x0b\\x49\\x7f\\x32\\x7d\\x9b\\xa0\\xd4\\x62\\xa6\\x54\\xca\\xcc\\xaa\\x7b\\x42\\x53\\x6f\\x2f\\x2d\\xcd\\xae\\xef\\x89\\x4e\\x8d\\x5a\\xf2\\xee\\xf8\\x8c\\x88\\x89\\xb7\\x24\\xdc\\xd9\\x95\\x6a\\x07\\x36\\x6e\\x97\\x67\\x87\\xf9\\xc7\\xac\\xc3\\x26\\xd7\\x66\\x70\\x1a\\x71\\xc3\\x04\\xd2\\xd3\\xb5\\xbe\\xde\\xe5\\xa1\\x6c\\xc5\\x46\\x26\\x03\\x59\\x33\\x0f\\x9e\\x79\\x3e\\x4f\\xe9\\x72\\x4f\\xd4\\x93\\xf6\\xb6\\x5e\\x76\\xb3\\x64\\x5c\\x59\\x07\\xff\\xce\\xf6\\x08\\x78\\x76\\x5f\\x8f\\x77\\xc5\\xce\\x49\\x37\\x71\\x47\\xda\\x1f\\x0d\\xec\\x67\\x09\\xc0\\x04\\x1a\\x92\\xa1\\x3f\\x46\\x08\\x18\\x23\\xf6\\xee\\x44\\x3a\\x9a\\x4a\\x4e\\x36\\xdc\\x57\\x84\\x40\\x10\\xc4\\xd9\\xd9\\xd9\\x9b\\x43\\x48\\x14\\xd1\\xd0\\x51\\xcf\\x91\\x93\\x47\\x3c\\x47\\x8d\\x82\\xbb\\x33\\x1a\\x1e\\x71\\x87\\xdd\\x23\\xe1\\x68\\xa7\\x1b\\x38\\xa6\\x74\\x48\\xb8\\x6c\\x7e\\xd1\\x2f\\xb8\\xc4\\xfd\\xd1\\xe8\\x7e\\xd1\\x25\\xf8\\x45\\xbf\\xcd\\x95\\xe8\\xf2\\x44\\xc3\\xc3\\x18\\x0f\\x87\\xa3\\x1e\\x6a\\x9f\\xe0\\xe2\\x9c\\xb0\\x0d\\x7f\\x4b\\x73\\x99\\xd0\\x1c\\x20\\x23\\x60\\x8d\\xc5\\x87\\x21\\x1d\\x4c\\xc7\\x27\\x09\\x2d\\x25\\xc0\\x9f\\x09\\x60\\x1b\\x73\\xbb\\xbf\\x70\\xe0\\x7c\\x38\\xb2\\xcf\\xf7\\x78\\xe6\\xd1\\xd8\\xa5\\x48\\xd8\\xe3\\x2e\\xf1\\x5e\\x81\\x54\\xbb\\x3d\\xe1\\xc8\\xa5\\xd8\\xa3\\x99\\x47\\x3b\\x5c\\x91\\xf0\\xf9\\x03\\x2d\\xf9\\xb1\\x5c\\x2c\\xb3\\x90\\x10\\x4f\\x52\\x51\\x8b\\x10\\x8b\\xf6\\x5b\\x07\\x82\\x51\\x9f\\x99\\x80\\x66\\x32\\x15\\xdd\\x63\\xc3\\xe9\\x6f\\x29\\x64\\x9a\\x36\\x9f\\x11\\xd3\\xf6\\x73\\x77\\xbe\\x28\\xc4\\x22\\x4c\\xf4\\x79\\x85\\x3e\\xe0\\xb6\\x76\\x66\\xb7\\xde\\x00\\xfb\\x68\\xd0\\x3c\\xcb\\xb7\\x76\\xe9\\x86\\xc9\\x9c\\x32\\x67\\x94\\xb1\\xf2\\x33\\xbe\\xf4\\x18\\xa5\\x33\\x19\\x47\\x6a\\xa6\\x5a\\xa4\\xdc\\x6c\\x86\\xb6\\xbf\\x69\\xdb\\xd7\\x6a\\xd9\\xb7\\x2b\\xa3\\x72\\xca\\x8c\\x6c\\xbf\\xb9\\xb9\\xd9\\x5c\\xaf\\xb6\\xae\\xd3\\xbf\\x12\\x19\\x0f\\x14\\xa3\\x6d\\xb3\\x3c\\x7a\\x9e\\xd0\\x0b\\x91\\xa7\\x23\\xfe\\xc8\\x7f\\xda\\x58\\x26\\xef\\x58\\x87\\x2d\\xea\\xdf\\x48\\xfd\\xc9\\xa8\\xd7\\x14\\xf3\\x27\\x4b\\xe7\\xf3\\xe1\\x7a\\xfd\\x4d\\xe1\\x7a\\x3d\\x9c\\x7f\\x2f\\x75\\x88\\x6c\\xb8\\x5b\\xed\\x8a\\x4f\\x48\\x23\\x57\\x83\\xe1\\xdf\\x77\\x6b\\xb6\\xdf\\x9d\\x1b\\x30\\xbb\\x3b\\x0e\\x21\\x64\\x45\\x71\\xab\\x5e\\xdf\\x1d\\x77\\xf0\\xd6\\xf5\\xd7\\xcd\\xac\\xb0\\x3d\\x29\\x1a\\xf2\\x8f\\xd9\\x3e\\xfa\\x37\\x36\\x36\\x76\\xea\\x1b\\x1b\\x1b\\xb0\\x59\\x7f\\x89\\xdb\\xda\\xaa\\xd7\\x37\\xb6\\xb6\\x76\\xcd\\x31\\x16\\x8b\\x89\\x5c\\x91\\x4e\\x06\\xb1\\xa7\\xcf\\x30\\xa5\\x84\\xf5\\x9d\\x9b\\xa7\\x03\\x4b\\x81\\xe7\\x81\\xa3\\xfc\\x0b\\x6c\\x88\\xa2\\xdf\\xbf\\xb3\\x09\\x1c\\xed\\x9e\\xdd\\xf6\\xd8\\x88\\x5a\\x3b\\xd0\\x6c\\x7d\\xf1\\xc6\\xb2\\x14\\x6c\\x98\\x4f\\x53\\xc2\\x65\\x65\\x25\\x73\\xe3\\xc6\\x8d\\x7a\\xdd\\x30\\xa1\\xee\\xf2\\x40\\xa6\\xf6\\x02\\x55\\xd8\\x41\\xb6\\x6e\\x18\\x1d\\xb1\\x3e\\xe6\\x5b\\xf8\\xa4\\x20\\xd7\\xcb\\x8d\\x34\\xd7\\xbc\\xbd\\x79\\x79\\x5e\\xae\\xfe\\x47\\x59\\xf2\\x69\\x1a\\xb4\\x71\\xe7\\x06\\xd9\\x8e\\xdc\\x52\\x03\\x19\\xca\\x47\\xcc\\x3b\\xec\\x75\\xbb\\xd3\\x69\\xaf\\xdb\\x1d\\x3b\\x1b\\x94\\xb9\\x58\\xa0\\x05\\x5a\\xfd\\xf2\\x7e\\xb1\\xfb\\x3f\\xfc\\xa7\\xa6\\x5f\\x2c\\xe6\\xec\\x5c\\x09\\x7e\\x00\\x6f\\xa4\\x90\\x93\\xd1\\xbe\\xf4\\xd4\\x20\\xa1\\x77\\xed\\xe1\\xd5\\x30\\x5c\\xee\\x7d\\x89\\xbb\\xda\\xfb\\xf0\\xeb\\x5f\\x1f\\x7e\\xfd\\x9f\\x90\\x72\\x98\\x5e\\xfc\\xf0\\xaf\\xbe\\x21\\xfc\\x86\\x3d\\x7e\\x47\\xbd\\xcc\\xef\\xc8\\xcb\\x4c\\xf3\\x6e\\x71\\xfc\\x09\\x52\\x33\\xfa\\x9d\\x9b\\x2f\\x32\\x16\\xb3\\xe1\\xf3\\x13\\x28\\x95\\x5e\\x7c\\x11\\xea\\xe2\\x6e\\x87\\x9f\\xcd\\x52\\xa9\\x55\\xd6\\x13\\xa4\\x79\\xa2\\x5a\\xe2\\x65\\x43\\xd2\\xdf\\xe7\\xe9\\xa3\\x89\\xb5\\x92\\x5e\\x82\\xff\\xe8\\x40\\x5e\\x37\\xef\\x2c\\x42\\x62\\xe7\\xa6\\xd8\\xd5\\x51\\x4e\\x7f\\xe5\\x2b\\xe9\\x70\\xa9\\xd4\\x14\\x00\\x65\\xb3\\x90\\xc8\\x66\\x3d\\xa1\\x9d\\x7f\\x98\\x4a\\x4c\\x85\\x4b\\xa5\\xbd\\x34\\x2c\\xf3\\x48\\x4e\\xbb\\x61\\x6f\\xc6\\x71\\x18\\x39\\xff\\x89\\xf3\\x07\\x29\\x1a\\x78\\xde\\xe7\\x74\\xfa\\x9c\\x5f\\xfb\\xc4\\xf9\\x4f\\x40\\x96\\xe2\\x82\\xe3\\x4e\\x52\\x63\\xc4\\x03\\xdd\\x86\\x6d\\x9a\\x6d\\xc2\\x88\\x0e\\xc6\\xa2\\x11\\x50\\x22\\x8c\\x19\\xcd\\xb0\\xe8\\x61\\xa9\\x16\\x93\\x25\\x2a\\x0d\\x87\\x4f\\x05\\x22\\x91\\x40\\xa4\\xcb\\x73\\xbe\\x7f\\xb4\\xff\\xbc\\xa7\\x2b\\xd2\\xd9\\xd7\\xd7\\x19\\xe9\\xf2\\xcc\\xf6\\x0e\\xf6\\xce\\x7a\\xba\\xc0\\xcf\\xf6\\x66\\xb5\\x79\\x96\\x71\\xd1\\x2c\\xc7\\xb5\\xda\\xf1\\xbb\\xb8\\x00\\x17\\xe6\\x62\\x2c\\xe2\\xdb\\x04\\xe1\\xb2\\x98\\x5c\\xd9\\x7c\\x29\\x7e\\x0f\\xb3\\xfb\\xb9\\x37\\xc9\\x82\\x77\\x7f\\x25\\xd3\\xf7\\x00\\x18\\xd9\\x7b\\xda\\x02\\xfb\\xf6\\x05\\xf6\\x55\\xe9\\x36\\x2b\\x9f\\x0c\\x84\\x2c\\x97\\xcf\\x45\\xad\\x8e\\x93\\x86\\xe8\\xea\\x41\\x37\\x39\\xe2\\xa6\\x5b\\xfa\\xde\\x77\\x50\\x79\\x04\\x8d\\x83\\x3a\\x8c\\x0d\\x7d\\x0f\\xe5\\xe3\\x5c\\x20\\x00\\xd7\\x9b\\x1a\\x3d\\x12\\xb8\\x6b\\xfc\\x70\\x2c\\x76\\x78\\xfc\\xae\\x89\\x63\\x77\\xdf\\xd1\\x33\\x3a\\x7c\\x22\\xbd\\x7f\\xec\\xc4\\xd0\\xd0\\x89\\xb1\\xf8\\x43\\xd3\\xd3\\x14\\x3f\\xb1\\x7b\\x74\\x52\\xba\\x75\\x1a\\xb3\\xb8\\x0b\\x42\\x74\\x18\\xa2\\x84\\xca\\x08\\xa3\\x5e\\xf0\\x9a\\x91\\x39\\xe2\\x34\\xe6\\x0f\\xd5\\x29\\xa1\\xd1\\xe1\\x49\\xbf\\x18\\xe9\\x12\\x6d\\x07\\x6d\\x62\\x57\\x44\\xf4\\x4f\\x0e\\x8f\\xa2\\x2b\\xe3\\x77\\x05\\x8e\\x8c\\xa6\\x7a\\x7b\\xef\\x3e\\x36\\x41\\x1f\\xab\\x8b\\x83\\x47\\x87\\x03\\x91\\x44\\x4f\\x20\\xd0\\x93\\x88\\x04\\x86\\x8f\\x0e\\x8a\\x08\\xee\\x3f\\x31\\xb6\\x3f\\x7d\\x62\\x78\\xb4\\xa7\\x7b\\x7a\\xfa\\xa1\\x38\\x69\\xcc\\x6d\\xf8\\x99\\xff\\x8f\\x7e\\x0b\\x66\\x2c\\xc1\\x3e\\x1a\\x07\\x9e\\x76\\x77\\x30\\x3e\\x69\\xa8\\x7c\\x92\\xe3\\xe9\\x60\\x03\\xd5\\x1c\\x81\\x20\\x93\\x98\\x7c\\xe9\\x42\\xc7\\xcc\\xa5\\x99\\x99\\xc1\\xde\\x9e\\xc7\\xdb\\x5d\\x06\\xce\\xd9\\xa8\\x7f\\x8d\\x92\\xe5\\xf7\\x5d\\xe8\\xe9\\x1d\\x9c\\x9e\\xbe\\x34\\xd3\\x91\\xb3\\x31\\xbc\\x53\\x67\\xcf\\x99\\x84\\xdf\\xa0\\xf9\\x3c\\xfa\\x98\\x35\\x2b\\x55\\x52\\xa4\\x92\\x02\\xf3\\x5b\\xb6\\xc6\\x49\\x47\\x12\\x32\\x8a\\xf9\\x0b\\x40\\x7e\\xa1\\x77\\xf1\\xe0\\xe8\\xf4\\xe0\\x60\\x7d\\xb2\\x77\\x28\\x7e\\x87\\x4d\\xe4\\xdf\\x1a\\x3f\\x6c\\x13\\x6d\\x0f\\x4d\\x1d\\xa3\\x75\\xbf\\xb4\\xd8\\xbb\\xb0\\x9f\\x42\\xa3\\x03\\x07\\x7e\\x6a\\x74\\x60\\xf2\\x34\\x2d\\x70\\x1c\\xe7\\xdc\\x85\\xbb\\xf7\\x19\\x5c\\x73\\x3f\\x17\\xa3\\xb6\\x2c\\x13\\xdc\\x14\\x77\\x94\\xc5\\x3a\\xc0\\xa9\\xa4\\xdf\\x62\\xa6\\xc0\\xb0\\xa4\\x92\\x3e\\x6b\\xdc\\x88\\x76\\x60\\xe9\\x8f\\xa5\\x68\\x52\\x3c\\x9a\\xc6\\x48\\x60\\x29\\x1a\\x26\\x26\\x1b\\x29\\xad\\x33\\xa2\\x28\\xbe\\xc4\\x11\\x7c\\xdd\\xd1\\x45\\x33\\xcb\\xd0\\x72\\x47\\x97\\x98\\x25\\x2c\\x81\\x58\\xa7\\x89\\x88\\x99\\x4b\\x20\\xa1\\x60\\x12\\x2f\\x71\\x62\\xc8\\x03\\xdc\\x4d\\xd1\\x13\\x32\\xa2\\x02\\x92\\xa2\\x28\\x86\\x3c\\x5b\\xf4\\x0c\\x4f\\x68\\x83\\x65\\xbd\\xb6\\xdf\\xc2\\xf7\\xf5\\x72\\x51\\xee\\x20\\xcd\\x25\\x41\\x3d\\x2d\\x92\\x46\\x8a\\x41\\xef\\x1e\\x6b\\x75\\x9a\\xab\\x37\\x95\\xf4\\x7b\\x48\\xcb\\xcd\\x20\\x0e\\xeb\\xa2\\x98\\xa8\\x6f\\x51\\x1f\\xc2\\x2d\\x82\\xcb\\xea\\xe2\\xce\\x16\\x4d\\x7f\\x2b\\xd2\\xc8\\xa8\\xa2\\x58\\xdf\\xda\\x22\\x6b\\x10\\x3b\\xc3\\x13\\xa2\\x21\\xfd\\x38\\xf2\\x2a\\x21\\x4f\\x82\\x66\\xe2\\x36\\x69\\xc6\\x2c\\x5d\\xcf\\x30\\xa1\\x32\\xd3\\x7d\\xfe\\x3e\\xc3\\xfb\\x82\\xd9\\xf9\\x27\\xd6\\xd7\\xb3\\xf5\\xba\\xb8\\xbd\\xbe\\x4e\\x4d\\xfb\\xff\\x97\\x65\\xc5\\xfc\\x2d\\xba\\x97\\x86\\xb4\\xd0\\x8c\\xea\\x87\\xf6\\xca\\xfa\\x67\\x06\\x23\\x91\\xc1\\xde\\x2c\\x8d\\x74\\x95\\x25\\x9b\\x48\\x92\\x49\\xf9\\x69\\xcd\\xe7\\x69\\xcd\\x4b\\x1c\\x2d\\x80\\x68\\x10\\x43\\xcd\\x79\\xe3\\x67\\x3a\\x05\\x30\\x02\\x2d\\x25\\xe9\\xa8\\x77\\x83\\x75\\x3f\\x24\\x27\\xd2\\x42\\x2a\\xda\\xc8\\xd2\\x02\\xc7\\x7d\\xe3\\x27\\xc7\\x13\\xa1\\xfe\\x90\\x33\\xd4\\x95\\xe8\\xea\\x4a\\xdc\\xc5\\x50\\xcf\\x3e\\x5f\\x4f\\x74\\x7c\\x3c\\xea\\x09\\x85\\xfa\\x9d\\xdd\\xdd\\x7d\\xed\\x7d\\xdd\\x6f\\x4f\\x24\\x60\\xc9\\xb4\\x69\\x6b\\x7d\\x9f\\xee\\x5b\\x65\\xef\\x96\\x16\\x8d\\xca\\xae\\x7c\\x64\\x8e\\x70\\x3a\\x6d\\xfe\\xdf\\x25\\x86\\xc7\\x2d\\x07\\x0c\\xfd\\xe1\\x16\\xd5\\x55\\xf4\\x50\\xba\\x24\\x28\\xc4\\x19\\x9a\\x64\\x94\\x28\\x7b\\x29\\x61\\x04\\x92\\x13\\xc0\\x45\\xce\\xec\\x7b\\xe4\\xf0\\x7b\\x9f\\x78\\xe2\\xbd\\x53\\xe1\\xc1\\x63\\xd3\\x97\\x2e\\x3d\\x79\\x31\\x33\\x8b\\x1e\\xcc\\x40\\xf6\\xf2\\x50\\x28\\xbd\\x55\\x7d\\xae\\x3a\\xd5\\x3b\\x78\\xf1\\xc9\\x8b\\x17\\xa7\\x67\\xf1\\x83\\xe7\\x1a\\xf9\\x81\\x29\\x3f\\x41\\xd8\\xc4\\x74\\x90\\x4a\\x1c\\xb6\\x96\\x32\\x5b\\x5b\\x99\\xa5\\xd9\\xec\\xc6\\xe6\\xe6\\x46\\x9d\\xf4\\x65\\x9d\\x13\\xa1\\x6e\\xd8\\x12\\x7a\\x39\\x0e\\xc8\\xa0\\x0c\\xc6\\x05\\x7f\\x12\\xf7\\x99\\x01\\x23\\x81\\xcb\\xde\\xb8\\x91\\xcd\\xde\\xd8\\x22\\xc4\\xef\\x4b\\x5c\\x36\\x0b\\xed\\xd9\\x33\\x67\\x36\\xb3\\xd9\\x33\\x50\\xaf\\x67\\xb3\\xe4\\xc7\\x19\\xb1\\x25\\xd8\\xbd\\xec\\x34\\x3e\\x83\\x71\\x75\\xbd\\x71\\xd5\\x56\\xf3\\xe4\\xa6\\xdd\\x2d\\xe9\\xdb\\x78\\xd3\\x7f\\x30\\xd0\\xf4\\x1e\\xbf\\xbd\\xcd\\xed\\x9d\\xf1\\xc9\\xf8\\x18\\x0b\\xaa\\xb0\\xdb\\xe4\\x16\\xb2\\x62\\x77\\x3c\\xde\\x2d\\x6e\\x52\\x9b\\xf3\\x0f\\xdf\\x6a\\x73\\xbb\\x1b\\xdf\\xba\\x9b\\xf8\\xb6\\x69\\xee\\x98\\x48\\x98\\x23\\x23\\x23\\x8a\\x1b\\xf5\\x7a\\x23\\xf8\\x07\\xbf\\x67\\xdd\\x0e\\xd2\\xfc\\x55\\xfe\\xbd\\xba\\xab\\x60\\x2a\\xe9\\xdf\\x4e\\x3c\\xd2\\x32\\x16\\x36\\x13\\xe4\\x56\\xdb\\xad\\x83\\xe0\\x8b\\xf5\\xfa\\x2e\\xdd\\x71\\x98\\x60\\x04\\xea\\x12\\x9a\\x7e\\x19\\xb2\\x63\\xfb\\xe6\\xcd\\x6c\\x43\\xf2\\x24\\x42\\x7d\\x87\\xd0\\x30\\x1b\\x99\\x44\\x26\\xbb\\xd9\\xd5\\xb1\\xb3\\x45\\xde\\x73\\x76\\x16\\x06\\x67\\xb3\\x46\\x7c\\xda\\x2c\\x37\\x01\\x1b\\xf0\\x5b\\x9c\\x95\\xf1\\x86\\x54\\xcd\\x9b\\x66\\x2d\\x9c\\x01\\xe0\\x2e\\xc7\\xce\\x7e\\x6c\\xbc\\xf0\\x96\\xc2\\xf8\\xda\\xe3\\x90\\xba\\x1c\\x4b\\x4d\\x9c\\xfd\\xc1\\xf8\\x9b\\x0b\\x85\\x37\\x8f\\xaf\\x51\\xdd\\x34\\xcb\\x27\\xe5\\xa2\\x56\\xb9\\x0d\\xc4\\x74\\x04\\xc6\\xe1\\xea\\x63\\x8f\\x39\\x03\\x34\\x04\\xdb\\x8b\\x01\\x78\\xea\\xa9\\xa7\\x3a\\x68\\xf7\\x52\\xda\\x89\\x5d\\xc3\\x33\\x8a\\x26\\x1e\\xf5\\x0f\\xec\\xb9\\x34\\x7b\\xf6\\xec\\x8b\\xe0\\x6c\\xb9\\x7e\\xbd\\x54\\xba\\xf9\\xb7\\x8d\\x5b\\x70\\x6d\\x2d\\x73\\xcd\\xc1\\xf9\\xb8\\x2e\\x2e\\x4c\\x63\\x06\\x8f\\xb2\\x9c\\x12\\x03\\xc9\\xc9\\x89\\x78\\x34\\xe0\\x13\\x26\\xd3\\x51\\x6b\\x9c\\xc0\\x56\\x5f\\x2f\\x4c\\xa6\\xa3\\x81\\xf8\\x64\\xda\\x2a\\xf8\\x03\\xc1\\xd8\\x08\\xd0\\x3c\\xc0\\x56\\x5f\\xda\\x2a\\x24\\x63\\xc1\\x58\\x3c\\x10\\x6c\\x68\\x4c\\x1e\\x3b\\x65\\xb5\\x9e\\xc2\\x87\\x8e\\x45\\x66\\xda\\xba\\x30\\x2e\\x60\\x3c\\xde\\xe3\\xbc\\xe0\\xbc\\xa3\\xcd\\x77\\x2c\\x12\\x39\\xe6\\x6b\\x3b\\x77\\x0a\\xe3\\x53\\xd6\\x0d\\x52\\x77\\x95\\x94\\x3f\\xc6\\x34\\x9d\\x3d\\xe1\\x1e\\xff\\xe0\\x33\\xbe\\xa9\\x83\\x17\\xfc\\x83\\x7e\\xff\\xa0\\xff\\xd5\\x87\\x06\\x07\\x6f\\x1e\\x3c\\xe0\\x9b\\xba\\x31\\xe5\\x3b\\x70\\x30\\xe1\\x1f\\xf4\\xf7\\x84\\x3f\\x7b\\x68\\x70\\x70\\x90\\x14\\xeb\\x7b\\xf5\\x8f\\x36\\x1a\\x27\\x8b\\xa6\\x0a\\x8a\\xa7\\xa3\\xde\\xd4\\x2d\\x39\\x48\\x40\\x5c\\x17\\xbf\\x16\\xfe\\xda\\xd9\\x25\\xd1\\x24\\x51\\xd7\\xd7\\x61\\x73\\xfd\\xec\\xd7\\xc2\\x5f\\xdb\\xb9\\xb9\\xbe\\xbe\\x3b\\xdf\\x88\\x95\\xcb\\x70\\xeb\\xb0\\x09\\xa5\\x5d\\xf6\\x82\\x8d\\x28\\x28\\x03\\xf4\\xc7\\xd6\\x3c\\xba\\x60\\x80\\xb8\\xb3\\x65\\xfc\\x58\\x80\\x5b\\x28\\x89\\x1b\\x74\\x25\\xc8\\x8a\\x06\\xf0\\xff\\xd3\\x1c\\x34\\x9f\\x89\\x8d\\x2c\\x74\\x8c\\xbf\\xdb\\xfb\\x9c\\x46\\x4a\\xff\\xfd\\xd0\\x70\\x46\\xaa\\x93\\x95\\xba\\xf9\\xbc\\x2f\\xc4\\x27\\xe3\\x87\\x66\\x2e\\xcd\\x5c\\xa6\\x0d\\xc9\\xde\\xbc\\x49\\x48\\xa2\\xc6\\xf3\\x48\\x33\\xe8\\x33\\x37\\xcd\\x70\\x2b\\x0d\\x5e\\x8c\\xe5\\x6f\\x88\\x32\\x6b\\xff\\x3e\\xbf\\xf7\\x3f\\xb0\\xf2\\x6f\\x7d\\xfe\\xf4\\x6d\\x4c\\xfd\\x9b\\xcf\\x17\\x6f\\x6f\\xed\\xbf\\xd9\\x88\\x1f\\x63\\x8e\\xf1\\x7d\\x5c\\x27\\xb3\\x55\\x99\\xa0\\x31\\xa3\\xe2\\x31\\x4a\\x76\\xf6\\x36\\x92\\xa2\\xdc\\x1a\\x42\\x18\\xaa\\xfb\\x7a\\x03\\x41\\xf7\\x3e\\xb7\\x3b\\x18\\xe8\\x75\\x3f\\xf2\\xb1\\xdb\\x45\\x14\\xfe\\xdc\\xbe\\xc1\\x5e\\xf7\\xbe\\x7d\\x6e\\x72\\xe2\\x23\\xe0\\xb8\\x5d\\x78\\x61\\x83\\x6f\\xd8\\x42\\x1c\\xe5\\xaf\\x6f\\xc3\\x3c\\x45\\xfd\\xc9\\x14\\xb4\\xc4\\xac\\x15\\x37\\xea\\x09\\xa8\\xb7\\x46\\x5f\\xae\\x67\\x37\\x5a\\x7d\\x82\\x11\\xe7\\x62\\xab\\x57\\xdc\\xdb\\xe2\\x3a\\x71\\x1b\\xce\\x96\\xfa\\x4a\\x04\\x76\\xf1\\xb6\\x3b\\xff\\xc4\\xdc\\x24\\x20\\xd1\\xca\\xdd\\xa2\\x86\\x3f\\x25\\xc5\\x8d\\xc0\\x56\\xae\\x46\\x40\\xd3\\x54\\x32\\xd5\\xe7\\x4f\\xfa\\x1b\\x6e\\x2f\\x5c\\x36\\x93\\xc8\\xbc\\xd8\\xd1\\x45\\x18\\xae\\x9d\\x9b\\x59\\xea\\xf9\\x03\\xe2\\x6c\\xbd\\x7e\\x93\\x3d\\x4a\\xdc\\xda\\x12\\x1b\\xb1\\x76\\xff\\xab\\xe6\\x67\\xd3\\x7f\\xb1\\x25\\x06\\x1f\\xcd\\x6a\\x38\\x40\\x3d\\x1b\\x52\\x02\\x8d\\x01\\x46\\x48\\x3e\\xb2\\x12\\x33\\x09\\x23\\x04\\x4a\\x99\\xcc\\x66\\xa6\\x54\\xca\\x92\\x12\\x01\\x32\\x99\\x52\\x66\\x36\\x93\\x99\\x25\\xa0\\x9f\\x6c\\x76\\xcb\\x45\\x9c\\xcc\\x46\\x76\\x20\\xdd\\x42\\xd6\\xdf\\x92\\x0c\\xae\\xc1\\x45\\xce\\x87\\xa7\\xdd\\x53\\xe7\\xa6\\xa6\\x0e\\x86\\xba\\x9e\\x6a\\x7e\\xd0\\xa7\\x29\\xc5\\xf5\\x64\\x78\\xba\\x2b\\x74\\x70\\x6a\\xea\\xdc\\x94\\xfb\\xef\\x5b\\xad\\x00\\x4b\\xbd\\xe4\\xf0\\x7f\\x8d\\x2c\\x06\\x35\\x6c\\xd3\\xdb\\xa9\\x95\\xa3\\x81\\x6d\\x08\\x69\\xd8\\xfc\\xb8\\xd3\\xd0\\x08\\x1b\\x1e\\x08\\x9a\\x1f\\x99\\x59\\x39\\x1a\\x31\\x99\\xa8\\x23\\xe9\\xf5\\xa1\\x69\\x71\\xfc\\xe4\\xb8\\x38\\x3d\\x74\\xdd\\xb4\\x70\\xdc\\x66\\xde\\x5f\\x9e\\x50\\xc8\\x70\\x2d\\x1d\\xb2\\xdd\\x33\\x12\\x4d\\x26\\xa3\\x23\\xf7\\xd8\\x86\\x58\\xda\\x3b\\x51\\xdc\\x2d\\x47\\x37\\xf0\\xde\\x5e\\xcd\\xc5\\x2d\\x92\\x6d\\x83\\x5e\\x6f\\xd1\\x59\\x64\\x77\\x07\\x13\\xa9\\xfb\\xf7\\x0f\\x0c\\xec\\xf7\\x1b\\xba\\x8a\\xf9\\xbd\\x11\\x45\\x58\\xce\\x45\\x0e\\x76\\x10\\xc7\\x09\\xdc\\x5d\\xdc\\x7d\\x2d\\x91\\x8b\\x83\\x01\\x26\\xdf\\x74\\x83\\x4f\\x84\\xfe\\x54\\x3c\\x16\\x17\\xac\\x23\\x10\\x9b\\x81\\x89\\xd8\\xc4\\x64\\x2a\\x1e\\x9b\\x81\\xc9\\x5e\\x98\\x9c\\x81\\x89\\x23\\x30\\xee\\x0f\\x06\\x82\\xe9\\xc9\\x5e\\x08\\xb8\\xa9\\x70\\x3c\\x4e\\x45\\xe2\\x51\\x10\\x62\\x46\\x50\\x0f\\x25\\x88\\x91\\x1f\\xf3\\x21\\xec\\xe6\\xad\\x09\\x2b\\x6f\\x6b\\x0b\\x59\\x90\\x1f\\xe1\\x20\\x00\\x39\\x80\\x2c\\x21\\x87\\x95\\x1e\\xe0\\x5d\\x8d\\x03\\x0f\\xdc\\xf9\\x38\\xfa\\x3e\\x6c\\x80\\xeb\\x0c\\xc5\\x17\\xc8\\x83\\xf9\\x01\\x0b\\x6a\\xc7\\xc2\\x7e\\x9e\\xdf\\xcf\\x5b\\xdb\\x91\\x65\\x80\\xc7\\x1e\\xb0\\xf1\\x02\\x74\\x60\\x7e\\x80\\x47\\xed\\x36\\xdc\\xc3\\xf3\\x3d\\xc8\\xde\\x8e\\xf8\\x01\\x1e\\x77\\x60\\x01\\xd9\\x6e\\x3c\\x7e\\xa7\\xcd\\x05\\x1b\\xdf\\x47\\x8d\\x18\\x48\\xdb\\x0d\\x39\\xe5\\x6d\\xfd\\x8f\\x1b\\x0c\\x58\\xa9\\xc5\\xbb\\xbb\\x9e\\x48\\x24\\x4a\\xb7\\x3a\\x77\\xdf\\xac\\xd7\\x67\\xe9\\x87\\xfb\\xdf\\x65\\xe7\\x88\\x8d\\xbc\\x56\\x84\\x26\\x0e\\x50\\x1b\\x04\\x23\\x42\\x4b\\x23\\xf0\\x0b\\x63\\xa1\\x1b\\x2c\\xe7\\x3a\\x88\\x67\\x52\\x67\\x5e\\x30\\x73\\xa7\\x41\\x97\\xa7\\x4e\\xb8\\xca\\x3a\\x79\\x87\\xcd\\x2b\\x99\\x2b\\xa5\\x66\\xfc\\x97\\xae\\x84\\x68\\xa6\\x5e\\xdc\\x95\\xfb\\xbf\\x8f\\xe1\\x22\\xe1\\x87\\x86\\x87\\x00\\x6e\\xb3\\x9e\\xd9\\x1b\\x35\\x64\\xf4\\x31\\x1a\\x1c\\x63\\x73\\x3d\\x33\\xb9\\x37\\x34\\xc4\\x63\\xa3\\x34\\x10\\x86\\xf9\\x3e\\x8c\\x17\\x75\\x72\\x9c\\x37\\x99\\x8a\\x32\\x39\\x43\\xd0\\x0e\\x93\\xdb\\x89\\x44\\x22\\xe1\\x7f\\xc3\\xd5\\x97\\xb8\\x97\\xb8\\x15\\xc8\\xd2\\x99\\xeb\\x7f\\x64\\xe7\\xd7\\xe0\\xc8\\xe5\\x56\\xbf\\x46\\xf6\\x3d\\x6f\\xab\\x25\\xb5\\x90\\x2f\\xb9\\x47\\x3b\\x0a\\xd9\\x1b\\xb7\\x51\\x8d\\x66\\x09\\x67\\x09\\x5c\\x3b\\x97\\x85\\xef\\x51\\x7c\\x46\\x68\\xcc\\x68\\x3a\\x8e\\xa3\\xf1\\x74\\x52\\x08\\x7a\\x61\\xfd\\xca\\x95\\xec\\x95\\xa9\\x8f\\x64\\xd9\\x8e\\x06\\x50\\xcf\\xef\\x7c\\x97\\x6c\\xc1\\xb5\\x3b\\x16\\x35\\x6d\\x0d\\x34\\x8c\\x27\\x83\\x66\\x48\\xd5\\x11\\x20\\xad\\x79\\xf2\\x44\\xf5\\xb9\\xea\\x89\\x70\\xfa\\xe2\\x93\\x17\\xd3\\xf7\\x26\\xe0\\x1d\\x87\\x2f\\x9d\\xab\\x56\\xcf\\x5d\\x3a\\x1c\\x1e\\xba\\x67\\xfa\\xe2\\xc5\\xe9\\x7b\\x06\\xef\\xa3\\x22\\xde\\xff\\xf2\\xd8\\xeb\\x78\\x8f\\x8f\\x03\\x07\\xd4\\xc6\\xe2\\x16\\x3e\\xb8\\xfd\\xca\\xbe\\xea\\x58\\x2b\\x0b\\x59\\xaa\\xde\\xd1\\x7d\\xa2\\xbe\\xf3\\xe2\\x1e\\x83\\xb0\\xa6\\xfe\\xc0\\x49\\xbd\\x4c\\x69\\x84\\x6f\\x33\\x8f\\x38\\xcd\\xb0\\xc0\\x5c\\x7a\\xfb\\x52\\x50\\x72\\xda\\xb7\\xb2\\x0e\\x3b\\xf8\\xed\\xce\\xac\\xdd\\x91\\xdd\\xb6\\x3b\\xc0\\x0f\\x9c\\xdd\\x31\\x0b\\x22\\x19\\x21\\x19\\x87\\x7d\\x67\\x33\\xeb\\xb0\\x8b\\x9b\\xad\\xf9\\x4e\\xb6\\x8c\\xec\\xaa\\x03\\x1c\\x97\\xf6\\x04\\xd3\\xcd\\x7f\\x1e\\xea\\x7a\\xc5\\xfe\\x0d\\x18\\x6b\\x01\\x8d\\xbd\\x17\\xb9\\xfd\\x1f\\x44\\x98\\x5c\\x85\\xfc\\x44\\xb8\\xd1\\x7a\\x68\\x67\\xb6\\xa5\\xf0\\x3d\\x53\\xd5\\xcc\\x6c\\x24\\x98\\xbc\\xc1\\x41\\x29\\xa4\\x08\\x77\\x9c\\xea\\x55\\x83\\x42\\x2c\\x6e\\x25\\x8b\\x34\\x7d\\xe0\\xde\\xc4\\x18\\xb7\\x90\\x6d\\x2c\\x48\\x40\\x2f\\xa4\\x0d\\xe3\\x0e\\xd8\\x58\\x1e\\x8a\\x66\\x6c\\xb6\\x4c\\x74\\x68\\x99\\xac\\x54\\x7a\\x4b\\xa8\\xb5\\x96\\x45\\x6b\\x84\\x8f\\x85\\xfa\\x7c\\xed\\xed\\xbe\\xbe\\x50\\x8c\\xdf\\xaa\\x1f\\xed\\xba\\xd8\\xde\\x7e\\xb1\\xeb\\x68\\x7d\\x29\\x91\\x80\\x4c\\x4b\\xf6\\x8c\\x70\\x57\\xc7\\x8b\\x04\\xed\\xbf\\xd8\\xd1\\xe5\\x12\\x42\\xb1\\x1e\\xb7\\xbb\\x27\\x16\\x12\\x5c\\x5c\\x73\\xae\\x30\\xfe\\xb2\\xad\\xe9\\xc5\\x23\\x74\\x03\\x65\\x2d\\x6f\\x6e\\x6f\\x6f\\xcd\\xce\\x66\\x45\\x91\\x26\\xe6\\xfd\\x2f\\xe5\\xff\\xff\\xeb\\x62\\x8e\\xff\\x67\\x8d\\xe3\\x0c\\x77\\xc6\\xc8\\x59\\xd3\\x12\\x33\\xae\\x17\\x84\\x78\\xca\\xb0\\x83\\xa6\\x1f\\x2f\\xf8\\xc1\\x73\\x84\\x48\\x79\\x61\\x29\\xb2\\x64\\x8d\\x4d\\x1c\\x3e\\x7f\\x5e\\x3f\\xd7\\x67\\xdd\\x9a\\xa2\\x95\\x4b\\x91\\x25\\x8f\\xb5\\xef\\x9c\\x7e\\xfe\\xfc\\xe1\\x89\\x98\\x95\\xdc\\x73\\x88\\x13\\xe1\\xb7\\xe9\\x3b\\xcf\\xb4\\xc4\\xa1\\x6b\\xae\\xb0\\x64\\x01\\x1a\\x81\\xc6\\x0a\\x1b\\x9b\\x48\\x37\\xd7\\x57\\xe6\\xad\\xdc\\x5c\\x5f\\x7d\\x7f\\x4c\\xfd\\x05\\x5e\\x1c\\x12\\x2c\\x22\\x6f\\x4f\\xf9\\xdd\\x36\\x64\\x9b\\xb5\\x21\\x9b\\xd7\\x93\\xb2\\xf3\\xa2\\x45\\x18\\x02\\x78\\xf9\\x43\\x9f\\x1a\\x24\\x17\\xb7\\x45\\x2d\\xf6\\xd3\\x02\\xf6\\xbb\\xad\\x53\\x76\\xfb\\x94\\xcd\\xe9\\xc7\\xc2\\x69\\xbb\\x25\\x2a\\xf4\\x08\\x2f\\x77\\xa0\\xc5\\xfe\\x2d\\xcd\\xdd\\xc3\\x3d\\xc0\\x71\\x07\\x26\\xe2\\x46\\x60\\xf7\\xd8\\x08\\xc4\\x44\\xe8\\x77\\x83\\x55\\x88\\xc7\\xdc\\x60\\xed\\x05\\xab\\x2f\\x28\\x58\\x7b\\x21\\x30\\x03\\x81\\x5e\\x08\\x1c\\x81\\xf1\\x19\\x98\\x4c\\x07\\x03\\x33\\x30\\x39\\x02\\x7b\\x15\\x77\\x0d\\xaa\\xb0\\x0a\\x11\\x0b\\x1f\\xc6\\xd6\\x01\\xa7\\xc3\\x8a\\x2c\\x47\\xad\\x60\\xdd\\x67\\x1f\\xb0\\xf0\\x61\\xde\\x12\\x81\\x97\\x3f\\x14\\x6b\\xda\\xca\\x52\\xbd\\x51\\xe8\\x9f\\x7c\\x96\\x4e\\xde\\x3a\\x61\\x41\\xee\\x36\\x4b\\xdc\\x6a\\x3d\\x28\\x08\\x6e\\x64\\x4d\\x5a\\xf9\\x4e\\xcb\\xcb\\x1d\\xf8\\x6a\\xeb\\x42\\xb0\\x1e\\x32\\x73\\xc1\\x71\\xc6\\xfb\\x06\\x08\\xad\\xdf\\x61\\x18\\xbd\\xb7\\x0e\\xff\\x78\\x72\\xc2\\x34\\x75\\xfd\\xe4\\x73\\xd5\\xea\\xb9\\x3b\\x93\\xe1\\x83\\x23\\xd3\\x17\\x2f\\x92\\x09\\x90\\xcd\\x6c\\xd3\\x1b\\xc1\\x66\\xf5\\xb9\\xea\\xc1\\x70\\x37\\x9d\\x00\\xd9\\xec\\xb9\\x19\\x23\\xec\\x00\\x67\\xe5\\x4a\\x1c\\x07\\xd7\\x10\\x67\\xc4\\x44\\x34\\x35\\xa7\\xb7\\x89\\x8a\\xe8\\x35\\xa2\\xe4\\x52\\x4a\\xef\\xd8\\xc1\\x83\\xc7\\x5a\\x62\\x22\\x66\\xc4\\x9b\\xa2\\x98\\xf8\\xea\\xc1\\x73\\x20\\x9c\\x3b\\xf8\\xc8\\xa3\\xd7\\x3e\\x30\\x17\\xbe\\xba\\x1a\\x9e\\xfb\\xc0\\x0e\\xc7\\xdc\\x1f\\x39\\x0b\\x47\\x16\\xb6\\x3a\\xe2\\x5e\\x46\\x3f\\xbb\\x2b\\xf2\\x8a\\x99\\xf9\\x1b\\xb2\\x37\\xa8\\xe1\\x09\\xdd\\xac\\x8b\\xf5\\x44\\x5d\\xdc\\xa0\\x38\\x33\\xcb\\x08\\x09\\xb2\\x8a\\x7a\\x42\\x8d\\x67\\x34\\x6d\\x96\\x2c\\x54\\xf2\\x79\\x88\\xcc\\x42\\xd2\\x4d\\x42\\x2a\\x9e\\x4e\\x25\\xd3\\x41\\x82\\x40\\xfc\\x51\\x21\\x1e\\xbc\\xcd\\x1a\\x0d\\x5c\\x28\\x16\\x53\\x22\\x91\\x94\\xf9\\xff\\x85\\x3d\\xeb\\x75\\xa6\\x1e\\x9b\\x88\\xad\\xa7\\x5a\\xce\\x38\\x7e\\xeb\\xfa\\x4d\\x2d\\xcc\\x6b\\xf0\\x1d\\x78\\x86\\xb3\\x50\\x3d\\x1e\\x8b\\xea\\x4a\\x63\\xd8\\x0a\\x46\\x66\\x7b\\x2a\\x83\\x60\\x91\\x6f\\x5f\\xa1\\xeb\\x7d\\x8f\\x3d\\xa6\\x24\\x66\\xc5\\x0d\\x31\\xf4\\xd8\\x63\\x7d\\xba\\x0e\\xcf\\x3c\\xf3\\x4c\\x77\\xb5\\xfa\\x5a\\xc3\\x5b\\x31\\xf1\\xda\\x6a\\xb5\\xfb\\x99\\x67\\x18\\xee\\xec\\x37\\x62\\x6e\\xf7\\x70\\x07\\xe9\\x48\\xf0\\x47\\x0d\\x31\\x80\\xc5\\xcf\\xc4\\xac\\x29\\xe6\\x16\\xe1\\xa7\\x68\\xcc\\x3c\\xf8\\xbe\\x2f\\x3c\\x2d\\x56\\x9f\\xab\\x8a\\xc0\\xdd\\x1b\\xce\\x64\\xc2\\xf7\\x46\\x7a\\x07\\x7b\\xb5\\x27\\x2f\\x26\\x66\\x2e\\xcd\\x24\\x60\\xfb\\x69\\x89\\xac\\xfb\\xd2\\x3b\\x4e\\xb2\\x83\\x27\\x9d\\x07\\x02\\xbd\\xbd\\x81\\x03\\x9f\\xbd\\x38\\x4d\\x58\\xf3\\x69\\x9a\\x5b\\xdc\\x8c\\x3b\\x13\\xe0\\xfa\\xa9\\xf5\\xe6\\xdd\\x4c\\xab\\xc0\\xe2\\x9a\\xc7\\xb0\\x9f\\x7e\\x2c\\xfa\\xe4\\x60\\x13\\xa4\\x42\\x7a\\x1f\\x8b\\x7c\\x9e\\x6e\\x89\\x82\\xde\\x7a\\x3a\\x94\\xea\\x9d\\x5e\\x31\\x31\\x2b\\xd6\\x45\\x47\\x87\\x63\\x43\\xac\\x27\\x9c\\x1d\\x8e\\x9d\\x6c\\x3d\\x21\\x7a\\x3b\\x37\\xea\\x9d\\xde\\x84\\xb7\\x33\\x9b\\x20\\xc7\\x9c\\x1b\\x89\\x84\\x3f\\x22\\x5c\\xbe\\xec\\x86\\x8b\\xd9\\x7a\\x3d\\x6b\\x77\\x3a\\x1f\\x67\\x3b\\xfb\\xce\\xcd\\x44\\x62\\xc8\\x7d\\xf9\\xb2\\x10\\xf1\\x1b\\xe7\\x08\\x11\\x98\\x31\\x4e\\xe2\\xfe\\xaf\\x6f\\x7f\\x6b\\x0e\\x80\\xfd\\x1c\\xe7\\x65\\x49\\x99\\xe8\\x2f\\xc8\\xc2\\x37\\xc6\\x1b\\xd9\\x10\\xfc\\x1b\\x89\\x40\\x22\\x90\\x10\\xfd\\x99\\x1b\\x19\\xbf\\xa1\\x70\\xcf\\x90\\x41\\x94\\xc9\\xd4\\xeb\\xf4\\x47\\xb8\\x08\\x8e\\xea\\xd2\\xcc\\x1c\\x23\\x4c\\x0f\\x11\\xe7\\x92\\xdc\\x91\\x66\\xfe\\x31\\xd3\\xde\\x62\\xaf\\xf4\\xd6\\xc4\\x91\\x93\\x6c\\xbe\\xd2\\xa7\\x5a\\x8d\\x2b\\x60\\x9a\\x72\\x58\\xc7\\xe8\\xf6\\x43\\xd4\\x1c\\x33\\xf7\\x85\\xa7\\x9f\\xfe\\xc2\\xd3\\xef\\xa4\\x35\\x1b\\x1d\\xae\\x8c\\xab\\x83\\x6c\\x98\\xdb\\xc6\\x26\\xb5\\x72\\x7e\\x25\\x85\\xbf\\x59\\x25\\xa7\\xc3\\x91\\xa7\\xc9\\xf9\\xef\\xa7\\x07\\xbe\\x41\\x2f\\x7a\\x25\\x73\\xe1\\xb0\\xee\\xa2\\xb1\\x03\\x5c\\x17\\x8d\\x6d\\x78\\xfb\\xec\\x8c\\xc2\\x08\\xf8\\xe3\\x03\\x41\\x21\\x1e\\x8c\\xee\\xa5\\xb8\\xb7\\x45\\x31\\x9b\\x82\\x54\\x2a\\x55\\x17\\x67\\x6f\\x43\\x7a\\xef\\x6c\\x4f\\x4e\\x12\\x46\\x4a\\x14\\x3f\\x3d\\xb9\\xdb\\x2e\\x22\\xc2\\x1d\\xa0\\xf1\\x58\\xfe\\xa3\\xe8\\x74\\x71\\xc3\\x6c\\xf1\\x76\\x11\\xea\\x18\\x17\\xd2\\x29\\x8a\\x09\\xc8\\x88\\x57\\x6e\\xcf\\x88\\x3c\\xc3\\x58\\x61\\x1a\\x57\\x9e\\x33\\xe2\\xc9\\x35\\xa2\\x54\\xf5\\xa5\\x92\\x7e\\xfc\\x32\\xd4\\xbc\\xc7\\xc4\\x97\\x19\\xb1\\xed\\x74\\xe1\\x2d\\x85\\xd3\\xe1\\x63\\x67\\x96\\xce\\x4c\\x0f\\x25\\x12\\x75\\x51\\x14\\xe1\\xfd\\x13\\x97\\x4e\\x16\\x0a\\x27\\x2f\\x4d\\x84\\x63\\xa7\\x52\\x67\\xce\\xa4\\x4e\\x0d\\x3c\\xb8\\xb5\\xb5\\x63\\xe2\\xcc\\xcb\\x9c\\x1f\\x3e\\x8c\\x38\\x9a\\xbf\\xbb\\x93\\xbe\\x27\\x0b\\x18\\x12\\x9f\\x14\\x8c\\xd0\\x21\\x2d\\xe2\\xce\\xdd\\xf1\\xc7\\xb8\\xfc\\x5d\\xe1\\xa9\\xe7\\xa6\\xc2\\x77\\xdb\\x07\\x9f\\x1c\\x0c\\xf7\\x5e\\xee\\x3d\\x42\\x97\\x95\\x12\\x33\\x7c\\x70\\x38\\xec\\x88\\xbb\\x3b\\x3c\\x35\\x15\\xbe\\xfb\\x35\\x83\\x83\\xe1\\xde\\xde\\xf7\\x9b\\xb6\\x12\\x2f\\x71\\x64\\xe4\\x13\\x5a\\x9b\\xb3\\xd0\\xf5\\x67\\x9d\\xe6\\x06\\xf5\\x52\\x9f\\xf3\\x38\\xa5\\xda\\xd9\\x64\\x4b\\x25\\xe9\\x5b\\x62\\xe3\\xfd\\x26\\x19\\x09\\x4b\\xbf\\x01\\x8d\\xd1\\xbe\\x7e\\x26\\x95\\x48\\x9d\\x39\\x70\\xd7\\xa3\\x77\\x8d\\x89\\xf5\\x84\\x85\\x4a\\x1e\\x36\\x44\\x10\\x27\\x2f\\xd8\\x4e\\x9e\\xb4\\x5d\\x98\\x1c\\x99\\x9e\\x1e\\xd9\\xd9\\x22\\x2f\\xba\\x1d\\x0b\\xd5\\x43\\x31\\xb2\\xd9\\xf9\\x8e\\x28\\x36\\xe3\\x0e\\x6d\\x99\\xf1\\x68\\x66\\x20\\x9e\\xa6\\x93\\xaa\\x31\\x9c\\x1a\\xd3\\x6a\\xf3\\xb9\\xe7\\xfc\\xb3\\x89\\x3a\\x23\\x84\\xeb\\x9d\\x1d\\xb3\\x1d\\x9d\\xf5\\x52\\xb6\\x24\\x8a\\xe2\\xce\\x36\\x0b\\x4d\\x43\\x53\\x59\\x1a\\x76\\xee\\x64\\x5e\\xb1\\x7b\\x32\\x49\\x54\\x8a\\x4d\\xd5\\x86\\xd6\\xc2\\xbc\\xab\\xc5\\xdf\\x67\\xd6\\x01\\x57\\xab\\x65\\xc5\\x52\\x57\\xc7\\xce\\x56\\x47\\xe7\\x52\\x57\\x47\\xb6\\xa3\\x6b\\x67\\x13\\xb2\\x9d\\xa4\\xdc\\xb5\\x99\\xcd\\x90\\x47\\x31\\x9a\\x5a\\xa4\\xda\\xcd\\x6d\\xf2\\xb8\\xed\\x16\\x7a\\x9a\\x50\\xd3\\xfd\\x4d\\x8a\\x2e\\x9e\\x8c\\xd3\\xe4\\x52\\x2e\\x10\\x58\\x58\\x53\\x36\\x5a\\xd3\\x93\\xe3\\x41\\x16\\x7a\\xdb\\x5f\\xcf\\x28\\xf3\\x76\\x67\\xdb\\x41\\x8b\\x3d\\xb2\\xf3\\x62\\xc4\\x3e\\x09\\x4e\\xfb\\xfc\\x63\\xd6\\x4e\\x2b\\x23\\x3b\\xde\\xfe\\xf8\\xe3\\x0e\\xfb\\xc1\\xb7\\x7b\\x7b\\x7b\\x7f\\x0d\\xf1\\x76\\xc7\\x9b\\xec\\xf6\\xff\\x23\\x72\\x15\\x0a\\x7b\\x62\\x23\\xb2\\x11\\x33\\xf0\\x43\\xf2\\xd9\\xed\\x89\\xb2\\xb6\\xb1\\xb1\\x51\\x2a\\xb1\\x90\\x0c\\x2d\\xa9\\x7e\\x20\\xcb\\xd2\\x67\\x8a\\x62\\xdd\\x04\\x76\\x1b\\x0f\\x60\\x6e\\x82\\x8b\\x18\\x74\\x05\\x99\\x25\\x46\\x5c\\x78\\xd2\\xcb\\xf1\\xa8\\x10\\xf5\\x26\\xbd\\xf0\\xe5\\xf0\\xf3\\xe5\\xf0\\xfd\\xcf\\x5e\\x1a\\xcc\\x76\\x5d\\xed\\x1c\\x5a\\x3e\\xb8\\x0c\\xf6\\xf0\\xf3\\xcb\\xe1\\x07\\x3e\\xbb\\xf2\\x42\\x26\\x03\\xfe\\x9d\\xed\\xdd\\x71\\x4f\\xec\\x9c\\xa7\\x35\\x0f\\x5b\\x43\\xbf\\x76\\xb9\\xf3\\x5c\\xf1\\xd0\\xa1\\xe2\\xb9\\xce\\xcb\\x97\\x28\\x77\\x50\\x5f\\xb8\\xdb\\x7e\\x45\\xb2\\xdd\\xbd\\x30\\x09\\xbd\\xa6\\xce\\xf5\\x3f\\x27\\x6f\\x0f\\xcf\\x65\\xb9\\x12\\x6c\\xd0\\x9c\\xda\\x86\\xdd\\x97\\xa9\\x2b\\x49\\xf9\\xfb\\x52\\x41\\x7f\\x34\\x95\\x65\\x62\\xcb\\x9d\\x1b\\x37\\x6f\\xc2\\x7a\\x62\\x83\\x76\\xcf\\x46\\x22\\xc1\\x64\\x02\\x4c\\x9f\\xd5\\xc6\\x75\\x18\\x79\\x70\\xc6\\x83\\x56\\xea\\x69\\x3c\\x0d\\x81\\xf1\\xc0\\xae\\x40\\x11\\xa6\\xb3\\xee\\x66\\x60\\x7f\\x72\\x3d\\x7d\\xe7\\xb3\\xa7\\xcf\\xbd\\xe8\\xa1\\x13\\x75\\x85\\xb2\\x57\\xdb\\xd6\\x9e\\xe1\\xd1\\x54\\xf0\\xc0\\xbe\\x40\\x24\\x34\\x3a\\x1a\\xba\\x42\\x05\\x84\\x47\\x0c\\x29\\x2b\\x67\\xe8\\xce\\x36\\x61\\x9d\\xca\\x8d\\x39\\x30\\x85\\xc5\\x34\\x40\\x3e\\x6c\\x66\\xaf\\x5f\\xbf\\x79\\xfd\\x7a\\x16\\x32\\xd9\\x4c\\x22\\x53\\xcf\\x24\\x32\\xd9\\x5d\\x76\\x69\\xf4\\x1a\\x2f\\x93\\x8f\\x07\\xa9\\xb4\\x39\\xb9\\x49\\xa5\\xe1\\x99\\x6c\\x36\\x93\\x60\\x97\\x67\\xb3\\xd7\\x77\\xc9\\x21\\xac\\x8c\\x7f\\x1b\\xa0\\x3d\\x1a\\x8c\\xd3\\xd5\\x36\\xde\\xd0\\x94\\xd5\\x52\\x62\\xea\\xcc\\x73\\x64\\x33\\xc4\\xd4\\x97\\xd9\\xec\\x99\\xe7\\xb3\\xd9\\x33\\xa7\\x1b\\xb1\\x13\\xfc\\x5c\\x0a\\xb6\\xe1\\x53\\x5c\\x90\\xca\\xe6\\xf7\\x4a\\x4a\\xfd\\x51\\x4f\\x9f\\x27\\x9a\\xc2\\x71\\x96\\x5c\\xb1\\xc5\\xfc\\xb0\\x5e\\x87\\x7a\\x9d\\xbe\\x07\\x7c\\xca\\x4c\\xb5\\x4f\\x46\\x69\\x62\\x67\\x0b\\xc4\\xc4\\xce\\x76\\x76\\x73\\x73\\x97\\x4f\\xad\\xc5\\xf8\\xfa\\xa9\\xe8\\xad\\xb4\\xec\\xe6\\xc6\\x56\\xeb\\xca\\x57\\xda\\xca\\xee\\xdc\\xdc\\x1d\\xc7\\x99\\xf4\\xad\\xbb\\x65\\x5d\\x25\\x63\\x60\\x9f\\x91\\xa9\\x3f\\xc2\\xc5\\xa9\\x1d\\xc6\\x04\\x77\\x07\\x77\\x8c\\xc9\\x18\\x18\\xfe\\x4d\\x33\\x0d\\x9a\\xcf\\x0a\\x86\\x51\\x89\\xd7\\xf8\\x61\\xf6\\xcd\\xb1\\x69\\x93\\x11\\x24\\x75\\x13\\x93\\x4d\\x7d\\x1b\\x94\\x12\\x75\\x32\\x7e\\xc4\\xd0\\xce\\x8f\\xd3\\xa8\\x28\\x5b\\xa2\\xe8\\x09\\xdd\\xdc\\xa2\\xe2\\xdf\\xba\\x78\\x93\\x1a\\x96\\x30\\x53\\x8d\\x8d\\x44\\x62\\x43\\xf4\\x84\\xc8\\xac\\xdc\\xd9\\x10\\x45\\xb2\\x7f\\x89\\x23\\x13\\x36\\xe4\\xc9\\xd6\\x77\\xea\\xd4\\x60\\x83\\x1a\\xfc\\x79\\x42\\xe2\\x0d\\xaa\\xae\\xe3\\xfe\\x8f\\xc8\\x75\\xc9\\x68\\x2a\\xf2\\xfc\\x1e\\x16\\x0b\\x9f\\x76\\x8a\\xcf\\x0d\\xf1\\xd8\\x31\\x48\\x13\\x8a\\x21\\x1d\\x65\\x39\\xfe\\x61\\x7d\\x76\\x36\\xeb\\x09\\x39\\xdf\\x14\\xb4\\xfb\\x5f\\xef\\x09\\x01\\xe0\\xe3\\x6d\\xfb\\x61\\xf3\\x25\\x8e\\x99\\xa8\\x38\\xdf\\x1c\\xb4\\x3b\\x85\\xb9\\x2e\\x0f\\x3a\\x64\\xb3\\x5d\\x0f\\x35\\xbf\\xf9\\x36\\xfd\\x3a\\x1c\\x08\\x49\\x03\\xdd\\xd2\\xe5\\x70\\x06\\x82\\x81\\xfd\\x20\\x24\\xc7\\x03\\x16\\x4f\\xd2\\x03\\xdb\\xec\\x76\\x9b\\xcd\\xfb\\xef\\x24\\x66\\x41\\x64\\xf7\\x6a\\xbd\\xfd\\xbf\\x11\\x4e\\x8a\\xf2\\x97\\x1c\\xe2\\xa8\\xbe\\x6b\\xc4\\x8c\\xe2\\x43\\xda\\x9c\\x9a\\x06\\x16\\xde\\x8f\\x36\\x39\\xbe\\xf7\\x89\\x64\\x6d\\x49\\x8e\\x07\\xe0\\x05\\x57\\x87\\x7d\\xc9\\x23\\xe0\\x76\\x50\\xec\\x0e\\x34\\x66\\xf7\\x9d\\x23\\x9b\\xb7\\xb5\\xd6\\x82\\xe8\\x75\\x3e\\xe3\\xb2\\x17\\x3d\\x42\\x9b\\x6b\\x42\\x70\\xd8\\xbb\\xb1\\xed\\x09\\x5f\\x96\\x6e\\x77\\x1d\\x78\\x39\\x1d\\x2e\\xcd\\xd6\\x62\\x44\\xc8\\xef\\x6b\\xe8\\x72\\xfb\\xfc\\x84\\xcc\\x22\\x6b\\x70\\xbd\\xa9\\xcb\\xdd\\x26\\x14\\x0f\\x8d\\xbf\\x33\\x6b\\x8c\\x0c\\xbc\\x27\\x26\\x3a\\xe7\\x35\\x5c\\xfc\\x5e\\x2e\\x22\\xfa\\x7a\\xa9\\x74\\xbb\\x68\\xe8\\x20\\x96\\xb2\\xb7\\x8b\\x85\\x6e\\xc6\\xcb\\x62\\xb6\\xd3\\xcc\\xa7\\x8b\\xeb\\xf0\\x05\\x82\\xfe\\x61\\x98\\x98\\x4c\\xfb\\xad\\x7b\\xbd\\x97\\x32\\x23\\xb1\\xa9\\x53\\xa7\\xa6\\x62\\xef\\xa1\\x99\\x69\\x0f\\x53\\x51\\x10\\x24\\x1e\\xa2\\x99\\x2b\\x56\\x1e\\x75\\x0d\\x3a\\xff\\x9a\\x26\\xa4\\x7d\\x81\\xca\\x83\\x1a\\xfa\\x48\\xd8\\xe2\\x52\\x0d\\x69\\x2e\\xc5\\x23\\x0d\\x52\\x30\\xe5\\x02\\x83\\x16\\x8c\\xa7\\xcd\\xca\\xc9\\xd6\\x5a\\x78\\x76\\x9a\\x20\\xa7\\x4b\\xfe\\x40\\xa8\\x3f\\x14\\xe8\\x39\\x30\\x7e\\x72\\xbc\\x2b\\x1c\\x3b\\xb3\\x74\\xe6\\xd8\\xf0\\xcc\\x45\\xf9\\x4d\\xf2\\x38\\x3c\\x3b\\xfd\\xf0\\x25\\x82\\xcc\\x3e\\xe9\\xe8\\x22\\xef\\xd6\\xe5\\x18\\xb2\\x0d\\x86\\xa3\\xe3\\xe3\\xd1\\xbe\\xee\\x30\\xcb\\xac\\x31\\x72\\x8f\\x4d\\xb4\\x5d\\x39\\x7e\\x52\\x96\\x4f\\xde\\x33\\xce\\xed\\x89\\x1b\\xd8\\x46\\xa3\\xa8\\x26\\xe3\\x69\\x2f\\xcd\\x2e\\xe4\\x75\\x03\\x4d\\x89\\x17\\x4f\\x06\\x82\\x93\\xe9\\x86\\xe7\\x9e\\xd5\\x0d\\xf0\\xe0\\xdd\\xd1\\xc0\\x15\\xb1\\x53\\xee\\x14\\xaf\\xdc\\xe7\\xb9\\xb3\\x14\\x5e\\x3e\\xd8\\x29\\xfa\\x7b\\x86\\x03\\xdf\\xb9\\x9e\\xb8\\x3e\\x13\\x4a\\xc1\\xfa\\x63\\x77\\xbc\\xc4\\x65\\x32\\xc0\\x95\\x07\\xef\\x5c\\x0a\\x97\\x06\\x53\\x07\\x7b\\x93\\x33\\x62\\x22\\x21\\x9e\\x3b\\x02\\xac\\x2f\\x98\\xdd\\x34\\xcd\\x8e\\xc3\\x22\\x5d\\x05\\xd3\\x7e\\xc8\\x8e\\x2d\\x66\\xdf\\x1b\\xae\\x67\\x5f\\x37\\x56\\x6f\\x42\\x2c\\x8e\\xc0\\x06\\x6c\\x41\\x96\\xe6\\xa6\\x13\\x52\\x7d\\xa9\\xbe\\x14\\x6c\\x65\\x77\\x36\\x21\\xc3\\x94\\xa2\\xdc\\x9e\\x7b\\x02\\x4d\\x00\\x46\\x6f\\x0b\\xd9\\xfa\\xd8\\xeb\\xb2\\xf5\\xf0\\x7b\\xb3\\x8b\\x50\\x6f\\x80\\xff\\xfb\\xfd\\x10\\x9a\\xb1\\xe7\\xa8\\x7f\\x31\\xb3\\x87\\xf7\\x06\\x09\\x3b\\x3a\\x0c\\xc7\\x80\\x79\\x93\\xd4\\x37\\x2b\\x17\\x2e\\x54\\x98\\xf3\\x08\\x70\\xb3\\xf5\\x87\\xdf\\xe9\\xf3\\xbd\\xf3\\xe1\\x7a\\xd3\\xb7\\x98\\xf9\\x68\\xf7\\x36\\xa2\\x74\\x35\\x6c\\x9c\\x2d\\x7b\\xca\\x2c\\xe6\\xfa\\xce\\x3a\\xb5\\x6d\\x2e\\xb5\\xc0\\x9b\\x4d\\x0b\\xe7\\xad\\x16\\xd3\\x66\\xaa\\xe7\\xae\\xd3\\xf5\\xd9\\xc8\\x3b\\x93\\xf6\\x24\\x3d\\xde\\xa4\\x27\\xda\\xe7\\x49\\x7a\\x36\\x36\\xfd\\x99\\xcc\\xce\\x56\\x86\\xbe\\x9a\\xf9\\x63\\x6b\\x6d\\xa9\\x25\\xd6\\x25\\xe5\\xac\\xfa\\x68\\x90\\xe3\\xa4\\x07\\xea\\xd9\\xec\\xce\\x46\\xd6\\x7f\\x13\\xea\\xdb\\xdb\\xdb\\x09\\xc8\\xec\\x6c\\x9a\\xfe\\x18\\xbb\\x9e\\x03\\xc6\\x33\\xc8\\x3f\\xc8\\x96\\x4a\\x2f\\x71\\x25\\x7f\\x09\\xd6\\xf7\\x3e\\xc7\\xe4\\xe1\\x1a\\xd6\\x20\\x7b\\xdf\\x18\\xa7\\xfa\\xfc\\x22\\xac\\xef\\x94\\xa0\\xde\\x7c\\x5d\\x3f\\xf9\\x62\\x19\\xd1\\x61\\xbe\\xa8\\x63\\x67\\x3b\\x93\\xf9\\x61\\x34\\x93\\xc5\\xc0\\x49\\x0d\\x9a\\x89\\xfd\\x60\\x9d\\x2c\\x15\\xe6\\x2a\\x65\\xa5\\xd7\\x6f\\xb6\\x5c\\xff\\x43\\x6d\\x54\\x36\\x4d\\xf5\\x00\\x70\\x3b\\xeb\\x34\\xea\\x38\\xac\\x67\\xb7\\xb2\\xd9\\xa5\\xd9\\xd9\\x52\\xd6\\x00\\xe8\\x3d\\xeb\\xb7\\xde\\x13\\x92\\x7e\\x11\\x8c\\x85\\xd8\\x94\\xa6\\xb1\\x38\\xc6\\xa5\\x52\\xbd\\xe4\\x2f\\x6d\\x97\\xb6\\x4b\\xa5\\x12\\xac\\xd7\\xeb\\x75\\xf2\\x63\\x3b\\xd3\\x06\\x64\\xf7\\xfd\\x28\\xc6\\x24\\xf7\\xa1\\xbd\\x9d\\x4a\\xfa\\xb7\\xb6\\xb7\\xeb\\xa5\\x9d\\x75\\xda\\xdd\\xe4\\x32\\xd2\\xd9\\x46\\xac\\xe3\\xd6\\x6b\\x1b\\xef\\x95\\x85\\xd2\\xce\\x3a\\x18\\x27\\x9b\\xfa\\x7a\\xd6\\x0f\\x6e\\x66\\x99\\x0f\\xbb\\x19\\xcb\\x23\\x7b\\xca\\xc9\\xe8\\x5e\\xc6\\x93\\x06\\x75\\xa6\\x66\\xf8\\x37\\xa9\\xaa\\x86\\x14\\xb7\\x19\\x44\\x06\\xeb\\x3a\\x65\\x31\\x09\\x44\\xb7\\xb7\\x87\\x19\\x0e\\xbb\\x02\\xdb\\xf0\\x5c\\x23\\x26\\x5f\\x43\\xce\\xd1\\xc0\\xd9\\x41\\xea\\xe0\\x33\\xf9\\xe7\\x94\\x62\\xf5\\xd1\\xb8\\x01\\x3d\\xef\\xad\\xf7\\xf4\\xd4\\xc9\\x06\\x32\\x94\\x5a\\x7d\\x2d\\x8d\\x1d\\xf0\\x9b\\x97\\x4e\\x9d\\xba\\x74\\xe9\\xd4\\x29\\xce\\xe0\\x03\\x5f\\x34\\x68\\xb4\\x01\\x82\\xb9\\xbd\\x2c\\x54\\x24\\x73\\xb7\\x4d\\xc7\\x9b\\x39\\xe5\\x85\\x61\\xa0\\xa5\\xf8\\x64\\x7a\\x18\\x82\\x86\\xc7\\x6d\\xd0\\xca\\x3c\\x6e\\xff\\x1d\\x87\\x62\\xef\\x73\\xcc\\x0c\\x06\\x3b\\xfb\\x6c\\xd6\\x50\\x0c\\x3d\\xdb\\x0d\\xd7\\xba\\x2d\\x29\\x97\\x38\\xfe\\x40\\xbd\\xa7\\x2b\\xed\\x10\\xbf\\xee\\xf3\\x0e\\xc7\\x87\\x1f\\x78\\x75\\x4f\\xe7\\xd8\\xb4\\x6d\\x06\\x32\\xb1\\x10\\x9f\\xec\\x0c\\x0e\\xce\\x38\\xfa\\x50\\x2c\\x64\\xb5\\x3d\\xdb\\xbd\\xf3\\xba\\x6e\\xcb\\x84\\xab\\xe3\\xd2\\xa9\\xe9\\x41\\xc7\\x60\\xda\\x36\\xec\\xbe\\x74\\xea\\x48\\x62\\xda\\xeb\\xa3\\x71\\xb9\\xff\\xef\\xd7\\x27\\xb5\\xf2\\x83\\x3d\\xbb\\x6c\\x30\\x98\\xcd\\xb0\\x3f\\x2e\\xa4\\xa2\\x0d\\xd4\\xd6\\x6a\\x88\\x31\\x9b\\xcd\\xd2\\x3d\\x88\\xf5\\x7a\\x49\\x14\\xc1\\xdf\\xd9\\xb1\\xdd\\xd1\\xb5\\x94\\x48\\x2c\\x75\\x75\\x6c\\x77\\x74\\x36\\xf4\\x9e\\x5b\\xc6\\x9c\\x1a\\xda\\xed\\x97\\x6a\\x31\\xec\\xa2\\x6e\\x67\\x13\\xc5\\x22\\xb9\\xc2\\x46\\x46\\xac\\x8b\\x19\\xf2\\xc4\\x52\\xbd\\xd4\\x7c\\xed\\x4c\\x57\\x47\\xbd\\xa3\\x6b\\xab\\x9e\\x48\\x24\\x12\\xec\\x5d\\x45\\x51\\x6c\\xbe\\x22\\x95\\x24\\x88\\xad\\x31\\x21\\x30\\xd5\\xb9\\xa6\\xa2\\xfe\\xe4\\xcb\\x3f\\x4b\\x9c\\xbd\\xd9\\x7c\\xc2\\x2c\\x95\\x50\\x10\\xba\\xf4\\xd6\\xdb\\xd2\\xf5\\xee\\x0c\\xd5\\xa9\\x45\\x98\\x75\\x3a\\xd5\\x26\\xed\\xd5\\x27\\x18\\x5f\\x32\\x08\\xa5\\xa5\\xde\\x92\\x35\\x36\\x11\\xeb\\x8b\\x78\\x7d\\xd4\\x1a\\xe6\\xf4\\xa5\\x0b\\xa9\\x0b\\x77\\x1c\\x3e\\xdf\\x6f\\xdd\\x5a\\x8a\\x94\\xf6\\x59\\xfb\\xbc\\xbd\\x36\\x6a\\x43\\x93\\xcd\\xde\\x71\\xe1\\xfc\\xe1\\x64\\xdc\\xca\\xd6\\x3c\\x96\\xd7\\x0c\\xd1\\x95\\x37\\xd8\\x27\\xf4\\xf9\\xfb\\x80\\x7b\\xcb\\xce\\x9f\\x09\\xd4\\x7c\\x61\\x7d\\x4b\\x4c\\xb4\\xc4\\x7e\\x66\\xb1\\x0c\\x08\\x0d\\x31\\x02\\xd4\\x84\\xda\\xfa\\x43\\x72\\x64\\x03\\xd7\\x7d\\xf8\\x70\\x77\\xf7\\xe1\\xc3\\xf7\\xdc\\x2e\\x49\\xf6\\xfa\\x91\\xee\\xd0\\x91\\x23\\xa1\\xee\\x73\\x33\\x97\\xa6\\xa7\\x2f\\x01\\x88\\x5d\\x4d\\xdb\\x9d\\xae\\xdd\\x36\\xd8\\x5e\\x9a\\x8f\\x3b\\xce\\x24\\xe9\\x3e\\xab\\x3f\\x3a\\x31\\x8d\\x4c\\xbb\\xba\\xbd\\x61\\x69\\x08\\xfa\\xfb\\x83\\x93\\xe3\\x99\\x84\\xaf\\xd3\\x17\\xea\\x0f\\x25\\xdc\\xbb\\x0d\\x58\\xeb\\xe3\\xd1\\xee\\x3b\\x82\\xc1\\x3e\\x77\\xc0\\x45\\x5a\\x11\\xfd\\x41\\xab\\x32\\xef\\x9b\\x86\\x6d\\x46\\x66\\x0f\\xee\\xbf\\x65\\xed\\x68\\xc9\\xd2\\x46\\x33\\xb5\\xed\\x5a\\x3b\\x70\\x43\\x1f\\x48\\x68\\xcc\\x01\\x8e\\x83\\x66\\xc8\\xc5\\xa4\\xf5\\x65\\xb5\\x83\\xc0\\x89\\x7e\\x51\\xf4\\x8b\\x8f\\xdd\\x46\\x4b\\x08\\x22\\x39\\x22\\x96\\x6e\\xab\\x2c\\x6c\\x3e\\x0f\\x1b\\x92\\xe7\\xa4\\xbf\\x11\\xb1\\xff\\xd6\\xe7\\xac\\x97\\x4a\\xae\\xdb\\x3d\\x22\\xe3\\x9f\\xbd\\xbd\\x2e\\x92\\x60\\xc6\\x4d\\xd8\\x86\\x0c\\x8d\\x31\\x1b\\xe4\\x7a\\x4d\\x5e\\x2d\\xdd\\x98\\xbb\\x4c\\x53\\x62\\xbc\\x26\\xdd\\xb3\\x3c\\x8d\\x51\\x26\\xeb\\x7c\\x5e\\x14\\x9d\\x5e\\xaf\\x53\\x8c\\xd4\\xae\\x44\\x22\\xd7\\xaf\\x44\\x22\\xd9\\x48\\x44\\x8c\\x44\\xa0\\xdd\\xef\\x4f\\x79\\x9d\\x7e\\xa7\\x57\\xac\\x47\\x22\\x91\\x2b\\x57\\xc8\\xaf\\x5d\\xac\\xa7\\x52\\x75\\x71\\x97\\x3d\\x03\\xd3\\xce\\x74\\x51\\x4e\\xdf\\x14\\xc9\\x25\\xfd\\xd1\\x01\\x83\\x3f\\xa0\\xde\\xe7\\x25\\x96\\x28\\x75\\x67\\x33\\x93\\x81\\xa5\\x4c\\x66\\x67\\x13\\x66\\x33\\x37\\xb7\\xa9\\x3a\\x6a\\x29\\x93\\xc9\\x6c\\xd4\\xeb\\x99\\x0c\\x19\\xef\\x29\\x2e\\x03\\xcf\\xc3\\x96\\x21\\x91\\x89\\x8d\\x40\\xaa\\x17\\xa5\\x7a\\x51\\x18\\x04\\x17\\xc4\\x2d\\x64\\xf0\\x8b\\x17\\x9e\\xec\\xef\\xf5\\x2d\\x1d\\x3a\\xf2\\x84\\xd3\\x89\\xf9\\x80\\x73\\xe7\\x5d\\x70\\x7d\\x67\\xe9\\x37\\x83\\x91\\xb6\\x8a\\x6d\\xbc\\xe7\\x93\\xed\\x9b\\x61\\x3e\\xe8\\x74\\x3a\\xf0\\x5d\\x74\\xee\\xc7\\xb9\\x0c\\x7c\\x0b\\x7e\\x9e\\xdd\\x8f\\x0b\\x58\\x05\\xab\\x1b\\xc5\\x08\\x59\\x4a\\x7e\\x93\\xf4\\x86\\xdf\\xb0\\x3a\\x9d\\x4f\\x5e\\x78\\xa2\\x5f\\x18\\xeb\\x4d\\x2c\\x5d\\x3a\\xf4\\x4e\\xd5\\xb9\\x73\\x95\\xdc\\x12\\x66\\x42\\x01\\xbe\\x2f\\x10\\x6e\\x73\\x3c\\x64\\x8b\\xf4\\xbc\\xbb\\xfd\\x8d\\x61\\xfe\\x4f\\x44\\x96\\xdb\\x2d\\x4b\\x06\\x15\\xd7\\x4e\\x73\\x2a\\x31\\xc1\\x6a\\x92\\x8c\\xee\\x74\\x92\\x4e\\xfa\\x3a\\xb5\\x17\\x3b\\xb3\\x74\\xa6\\x94\\x38\\x73\\xe5\\xca\\x99\\x2d\\x42\\xff\\xa7\\xce\\x9c\\xf9\\xde\\xea\\x95\\x2b\\x46\\x5e\\x8a\\x4d\\x58\\x87\\x0c\\x67\\x37\\x62\\x56\\x44\\x8d\\xa0\\x15\\x64\\x75\\xde\\x4f\\x4a\\xa9\\xa4\\xbf\\xe9\\xa7\\x71\\x04\\xf9\\xa3\\xb0\\x9e\\x11\\xc5\\xc8\\x95\\x2d\\xbb\\xe3\\x74\\x22\\x62\\xac\\xcd\\xb5\\x48\\x04\\x22\\xfe\\x88\\x58\\x77\\xd8\\xdb\\x33\\x11\\x6a\\x68\\x31\\x6b\\x77\\xd4\\x77\\xe5\\x50\\xf7\\x1a\\x52\\xad\\x5b\\x7c\\xff\\x6f\\xb6\\xfa\\xfd\\x6f\\x27\\x12\\x5b\\xbb\\x25\\x1a\\xad\\x3a\\x78\\x2a\\x61\\x63\\xd4\\x32\\xf5\\xf6\\x37\\x26\\xf2\\xef\\xbf\\x35\\xfc\\xc4\\xa1\\xf0\\x4d\\x23\\xc8\\xf0\\x16\\x2d\\xbd\\x47\\x14\\x0d\\xdf\\x31\\xaa\\x0f\\xbd\\xcc\\x5d\\x80\\x4f\\xc0\\x4f\\x53\\x9c\\xd4\\xc1\\xf9\\xb9\\x4e\\x1a\\x85\\xce\\x70\\xd7\\xef\\x30\\x14\\x20\\x42\\x2a\\xe9\\x89\\x92\\x51\\xe2\\x49\\xfa\\x21\\x75\\xe2\\x84\\x74\\xe2\\x44\\xe5\\xd2\\xa5\\x27\\x67\\x67\\xcb\\xd9\\x2c\\x64\\xb3\\xd9\\x37\\x90\\x1a\\xe9\\x04\\xb4\\x91\\xba\\x27\\x2f\\x65\\x08\\x49\\x4b\\x0e\\xec\\xf1\\x99\\x18\\xb9\\xd5\\x67\\x22\\xd8\\xbf\\x1f\\x7c\\x49\\xfa\\x6d\\x68\\x30\\x9e\\x63\\x60\\x46\\xdf\\x89\\x4e\\xc4\\x63\\xf1\\x58\\xab\\x1f\\xc5\\xd7\\x0f\\x1e\\x74\\xfb\\x62\\x01\\x7f\\xf8\\x60\\xc2\\xd7\\x19\\xeb\\xf3\\xfa\\x63\\xd8\\x82\\xda\\x76\\x39\\x54\\x74\\x1f\\xb6\\x1e\\xf6\\x38\\xbb\\xbc\\x1d\\xa3\\x09\\xeb\\xa1\\x60\\xb7\\xd7\\xdf\\x23\\x58\\xdb\\x50\\x1b\\x67\\xe1\\xa6\\x39\\x11\\x7e\\x15\\xb6\\xb8\\x49\\xee\\x34\\x27\\x73\\x4f\\x72\\x6f\\x26\\x33\\x21\\x16\\x37\\x55\\x88\\x2c\\xfd\\x72\\xb4\\x9f\\xfa\\xaa\\x05\\x03\\xd6\\x78\\x6c\\x82\\x39\\x7f\\x1b\\x2c\\x26\\x4d\\xdc\\x1d\\x0c\\x04\\x03\\x82\\x35\\x4e\\xa3\\xa2\\x8d\\x53\\x38\\xda\\x4f\\xee\\x90\\x1c\\x17\\x68\\x1e\\x21\\xe3\\x5e\\xfd\\xbb\\x4e\\xc7\\xfd\\xb1\\xf4\\x64\\x7a\\x72\\xdc\\xb8\\x38\\x16\\x1f\\x06\\xc1\\x2a\\x58\\x07\\xfa\\xe3\\xb1\\x68\\xbf\\x60\\x8d\\x19\\xef\\x6b\\x85\\x69\\x3c\\xdc\\x37\\x1c\\x9b\\x8c\\x77\\xc5\\x42\\x8f\\x64\\x86\\xcf\\x7a\\x1d\\x2e\\xec\\xc3\\xfb\\xdc\\xfe\\x8b\\x13\\xf7\\x2e\\xc4\\x27\\x63\\xa1\\x58\\xd7\\xc1\\x9e\\x84\\x1d\\xa1\\x63\\xe9\\x43\\xc8\\x65\\xb7\\x03\\x6a\\x77\\xb8\\x0e\\x86\\x92\\xed\\x6d\\x77\\xf0\\xb8\\x7b\\x5f\\xf0\\x9e\\xc2\\x3d\\x81\\xc3\\x17\\x0e\\x7b\\x9d\\xdd\\x36\\x1b\\x7e\\x5a\\xb0\\xf2\\x91\\xd1\\xf1\\xab\\xe3\\x63\\xbd\\x56\\x7b\\x9b\\xa5\\x7b\\x68\\xb8\\x3c\\x3c\\xd4\\x83\\x61\\x90\\x87\\x23\\x47\\x8f\\x4f\\x5a\\xed\\x96\\xc3\\xf7\\x1c\\xcf\\x08\\xbc\\xe8\\xe8\\x1b\\x3e\\x1e\\x1a\\x18\\x08\\x79\\x3a\\x3b\\x3d\\x47\\x67\\x47\\xe2\\x5d\\xd1\\x83\\x03\\x6d\\x56\\xfb\\xd0\\xfd\\xe1\\xa1\\xc9\\xfc\\xdd\\xa1\\x03\\x07\\x42\\x04\\xc5\\x4f\\x1d\\xec\\x69\\x07\\x87\\xed\\x3d\\x03\\x93\\x08\\x5b\\xda\\x11\\xf2\\x46\\x0f\\xb7\\x7f\\x10\\x77\\x87\\x0f\\x4e\\x8c\\x9c\\x38\\x31\\xd2\\xd6\\x16\\x4f\\xa7\\xe3\\xa3\\xfd\\xc1\\xfd\\x82\\x0d\\x03\\x6a\\xb3\\x0e\\x77\\x86\\x42\\x9d\\x43\\x6d\\x16\\xab\\x3d\\x1e\\x0c\\x42\\x67\\xf0\\x20\\x5f\\x85\\x70\\x18\\x0b\\xed\\x7c\\x24\\xc2\\xef\\xe3\\x1a\\xf6\\xb1\\xdf\\x6a\\xc4\\xab\\x70\\x1b\\x99\\x4f\\x83\\x42\\x5c\\x48\\x83\\x30\\xd0\\xe7\\xef\\xbb\\x70\\xf5\\xe8\\xda\\x77\\xaf\\x1e\\x5d\\xbb\\x7c\\x14\\x86\\x8f\\xee\\xac\\x52\\xce\\x60\\x72\\xed\\xe8\\xd5\\xef\\xae\\x1d\\xbd\\x7a\\xf9\\xe8\\xce\\xd7\\x8f\\x86\\xc4\\xd6\\x1c\\xc0\\x4e\\x1a\\x2b\\x92\\xc5\\xfb\\x63\\xd6\\xd3\\x66\\xde\\xf0\\x66\\x52\\xf5\\x58\\x6a\\xc2\\xdb\\x98\\xb6\\x70\\x6c\\x78\\xe6\\xd2\\xcc\\x70\\xc7\\x6c\\xf1\\xc9\\x8b\\x19\\xca\\xf5\\x64\\xb2\\x75\\x3a\\x3d\\xff\\x2a\\x92\\x1e\\x9c\\x99\\x19\\x4c\\x47\\x9c\\x63\\x63\\x3f\\xb8\\x38\\x7d\\xff\\xe0\\x18\\x99\\xb7\\x63\\x83\\xf7\\x4f\\xef\\x7c\\xc1\\xef\\xb7\\x3b\\x1c\\x2f\\x63\\x07\\x37\\xb0\\x3b\\xfc\\x11\\xcb\\x36\\xb7\\xb9\\x53\\x87\\x8d\\x50\\x8b\\xfd\\xe2\\xac\\x61\\x08\\x67\\x0a\\x3c\\xbb\\x3c\\xaf\\x31\\x79\\x11\\xd3\\xce\\xd0\\x4e\\x35\\x70\\x53\\x84\\xaf\\x61\\x21\\xb1\\x92\\x2c\\xcf\\x5c\\x34\\x45\\x5d\\x40\\x0c\\x95\\x6c\\xc3\\xe2\\xb9\\x75\\x19\\x31\\xa8\\x3f\\xee\\xa5\\xe3\\x29\\xdf\\x44\\xca\\x97\\x3a\\xee\\xdf\\xf4\\x74\\x25\\x76\\xea\\xe0\\x17\\xc5\\x0d\\x71\\x9d\\xea\\x6f\\x36\\x4b\\xa5\\x46\\x76\\x2d\\xc8\\xc4\\xa6\\xe3\\xf1\\xe9\\x58\\x26\\xdb\\xd9\\x41\\xb8\\x4a\\x51\\x4c\\x24\\xa8\\x79\\x74\\x47\\xe7\\x4e\\xfd\\xfa\\xf5\\x4d\\x87\\x7d\\x93\\x9c\\xb6\\x69\\x77\\x70\\x88\\x93\\x39\\x0e\\x3e\\x04\\x9b\\x5c\\x0f\\x8d\\x49\\x1c\\xd8\\x4f\\xf0\\x3d\\x35\\xa1\\xa1\\xb4\\x70\\x32\\xd8\\x70\\x2a\\x0d\\x36\\xe6\\x82\\xc0\\x3e\\x07\\xbc\\xc3\\xbb\\x0f\\x3a\\x1c\\x6f\\x77\\xda\\x97\\x3c\\x42\\x1b\\x60\\xb8\\xd7\\x1b\\xf2\\x7a\\xb0\\xed\\x09\\x71\\xea\\xdc\\x54\\x22\\x32\\xd8\\xfb\\x31\\xbb\\x8f\\x7f\\xc2\\xe1\\x26\\x87\\xc1\\xfd\\x6d\\x57\\x47\\x87\\xab\\x8e\\xc6\\x7b\\x26\\x0e\\x4e\\x4d\\x1d\\x4c\\x75\\x9f\\x0b\\xf4\\xf6\\x06\\x5a\\xbe\\x35\\xa1\\x4f\\x53\\x2c\\xce\\x39\\x53\\x4d\\xb2\\x8c\\x44\\x64\\x5a\\xc6\\x27\\x26\\x83\\x49\\x7f\\xc0\\x48\\x4d\\xcf\\x88\\x48\\x96\\x13\\xe1\\x28\\x18\\xe9\\xb1\\x3b\\x06\\x6d\\x87\\xe3\\x83\\xd3\\xa3\\x03\\xde\\xce\\x58\\xc8\\xdf\\x37\\x99\\x08\\x80\\x60\\xed\\x39\\x30\\x3e\\x35\\x9e\\xf1\\x74\\x25\\x4a\\x9e\\x10\\x0d\\xb1\\x5e\\x1f\\x18\\x9d\\x1e\\x8c\\x1f\\xb6\\x0d\\x0a\\x7d\\xfe\\x50\\xac\\xf3\\x6b\\x9d\\x3d\\x4e\\xc0\\xd6\\xde\\x78\\xe2\\xd0\\xbd\\x21\\x4f\\x6d\\x29\\xe4\\xf9\\x5d\\x33\\xfe\\x3a\\x6a\\xe8\\x07\\xa8\\xfc\\x7d\\x20\\x9e\\xf6\\xd3\\x24\\xcb\\x34\\x86\\x3d\\x64\\xb2\\xd9\\xf5\\xf5\\x7a\\x36\\xbb\\xbe\\x4d\\xb3\\x17\\x51\\x49\\x7c\\x6b\\x6e\\x4e\\xdc\\x88\\xc8\\xfd\\x43\\x73\\x27\\x0a\\x0d\\x5a\\x9c\\xf9\\x32\\xdf\\x92\\xbe\\x90\\x06\\x8a\\xc9\\x6e\\x6f\\x53\\x2d\\x2f\\x75\\x01\\x02\\xd1\\x13\\x22\\x64\\xf7\\x75\\x66\\x5a\\x71\\xab\\xff\\xda\\xc0\\x34\\xa4\\x93\\x2e\\x10\\xd2\\xc3\\x10\\x4f\\x85\\x21\\x18\\x77\\x41\\x43\\x92\\x07\\xfe\\xd1\\x7b\\x85\\x8c\\x6d\\xf1\\x5c\\x5d\\xb8\\x77\\xf4\\xdc\\xa2\\xed\\xc5\\xf1\\xfb\\xef\\x1f\\x3f\\xaf\\x28\\xe7\\xcb\\xc2\\xa9\\xd1\\x73\\x45\\xe1\\xc5\\xd1\\x53\\xc2\\x71\\xdb\\xe2\\xb9\\x57\\xdb\\x66\\xcb\\xb3\\xb6\\xe3\\xb6\\x6b\\x1f\\xbe\\x66\\xbb\\x45\\xaf\\x40\\xa8\\x8d\\x49\\xf6\\x88\\xd8\\x6d\\x9e\\xd0\\xed\\x7c\\x97\\xad\\xf8\\xc0\\x41\\x47\\xcf\\x03\\x45\\x1b\\x75\\x03\\x22\\xf7\\xff\\xa2\\x2d\\x72\\x5f\\x59\\x78\\x31\\x62\\x7b\\x97\\x50\\xbe\\xef\\xa0\\xd0\\x7f\\xb0\\x5f\\x78\\x17\\xbb\\x7b\\x7b\\x8b\\x2e\\x68\\x6f\\x8c\\xec\\x38\\xa1\\xa7\\x08\\x85\\x19\\x34\\x3c\\xf9\\x5b\\x25\\x01\\xd1\\x16\\x79\\xbe\\x09\\x53\\xea\\x73\\x6b\\x63\\xa7\\xbe\\x71\\x43\\xac\\x53\\x53\\x9b\\xba\\xf8\\x62\\xe9\\x7b\\x4b\\xdf\\x2b\\xc1\\xc6\\x6c\\x96\\x0a\\xe6\\xc5\\xc6\\x9f\\x11\\x4c\\x7b\\x4f\\x6e\\xa7\\xff\\x97\\x74\\xed\\xc6\\xec\\x52\\x26\\x73\\x3d\\x10\\xc8\\x98\\x76\\xdf\\x25\\x23\\xe6\\xb8\\x9f\\xac\\x87\\x8d\\xfc\\xe9\\xd1\\x54\\x92\\xba\\x1b\\xd3\\x51\\x3c\\xd0\\x8c\\xc1\\x29\\x44\\x8d\\xd4\\xbf\\x47\\x68\\xe4\\x30\\x78\\x05\\x65\\xcd\\x3f\\x7e\\xf4\\xa8\\xd0\\xe7\\x0b\\xc5\\x62\\x21\\x5f\\x1f\\xf7\\xd2\\xa1\\xa9\\xe9\\xcb\\xc7\\xac\\x47\\xa2\\xb6\\x3b\\xe2\\x43\\xd3\\xd3\\x43\\xdf\\x17\\xcf\\x3e\\xbe\\x4e\\x59\\x75\\x8b\\xe8\\x0d\\xc6\\x26\\x62\\x9d\\xef\\xc0\\x47\\xc5\\xa1\\x63\\xc7\\x86\\x7c\\x1d\\x47\\x06\\x46\\x8f\\x5d\\x9e\\xa6\\xfc\\x08\\xe2\\xb2\\xdc\\x38\\x6c\\xc0\\x57\\x38\\x2b\\xa1\\x1e\\xd2\\x7d\\x13\\x23\\x20\\x58\\x1b\\x42\\xd5\\x19\\xa8\\x03\\x17\\xbb\\x7c\\x39\\xf6\\x03\\xe6\\x1b\\xb6\\x95\\x8e\\x3d\\xfe\\x58\\xec\\xd4\\xf8\\x49\\x9a\\xaf\\x75\\x7c\\x8d\\xf2\\xd3\\x09\\x4a\\x5b\\x8a\\xd4\\x9e\\xe2\\x2e\\xee\\x0c\\xc7\\x0d\\x84\\x05\\x6b\\x80\\xac\\x6f\\x31\\x11\\xfa\\xc9\\x6a\\x17\\x9b\\x86\\xf4\\x34\\x90\\x15\\x30\\x49\\xd6\\x39\\xb2\\x0c\\x86\\x61\\x72\\xe2\\x96\\x5c\\xc9\\xbb\\xb2\\x03\\x80\\x8a\\x9c\\xbc\\x13\\x3b\\xc0\\x8e\\x2d\\xb8\\x3d\\x2e\\x3c\\xd8\\xc3\\xf7\\x3c\\x28\\xc4\\xdb\\xb1\\xcf\\x13\\x68\\xeb\\x6b\\xeb\\xf0\\xf2\\xd8\\xda\\xee\\xb0\\x60\\xde\\xdb\\x61\\xef\\xc7\\xd4\\x46\\xf1\\xd5\\x74\\xfb\\xbe\\x16\\xf8\\x8b\\xc8\\xc9\\xbb\\x2c\\x2e\\xeb\\x3e\\xc1\\xc3\\x27\\x6c\\xd0\\xd6\\x06\\xb6\\x84\\x2f\\xd1\\x11\\x68\\x3f\\xd8\\x1e\\xb0\\x22\\x00\\x64\\x0d\\xb4\\x1f\\x3c\\x4f\\xdd\\x1f\\x6a\\xd4\\xb1\\x34\\x42\\xb7\\x93\\x14\\xa0\\xfd\\xb3\\xc1\\x89\\x90\\xa5\\x6b\\x8b\\x9f\\xc6\\xc9\\xa7\\xb4\\x39\\xc5\\x6b\\x01\\xb3\\xc5\\x90\\xcd\\x64\\x12\\xb1\\x89\\x58\\x62\\x9d\\x26\\x30\\xd8\\x9e\\x5d\\x5a\\xba\\x4e\\x3e\\x8b\\xe7\\xd5\\x26\\x7a\\x30\\xec\\xb4\\x5e\\x6c\\xf5\\x83\\x05\\x33\\xe3\\xae\\xb1\\xb7\\x9a\\xf1\\x82\\xcd\\xbb\\x7e\\x74\\x7a\\x3a\\x3a\\x38\\x18\\x8d\\x44\\x0e\\xb8\\x5c\\xbf\\x50\\xae\\xed\\xdc\\x98\\x1d\\x3f\\x39\\x3e\\x7e\\x12\\xb6\\x8e\\x6f\\x4c\\xf7\\x27\\x9f\\x1a\\x1d\\x88\\x5e\\x8a\\x1c\\xf0\\x0e\\x79\\x6f\\xd0\\xf8\\xbf\\x6f\\xa2\\xd6\\xec\\xe4\\x59\\xed\\x0d\\xba\\xf2\\xd6\\xf9\\x31\\xc2\\x25\\x39\\x8e\\xf0\\x19\\x34\\x08\\x40\\x72\\x3c\\x00\\x0d\\xdb\\x1a\\xa6\\xde\\x32\\x73\\xc2\\x9b\\x12\\x39\\x0b\\x81\\x69\\xdc\\x10\\x31\\x16\\x5a\\x5a\\x1a\\x9c\\xd9\\xa9\\xd3\\x50\\xfe\\x4c\\xb5\\x45\\xb5\\x41\\x54\\xbb\\x0c\\xd9\\xa5\\xa5\\x50\\x4c\\x9c\\xd9\\xf9\\x15\\xa3\\x96\\xce\\x9f\\x86\\x63\\xd9\\x2c\\x41\\x4d\\x86\\x4c\\x93\\xa3\\xb2\\xdd\\x10\\xd7\\x4f\\xf1\\x1d\\x63\\xab\\x52\\x01\\xc3\\xdc\\x92\\x06\\x67\\x8c\\xa7\\xac\\x42\\x30\\x69\\xaa\\x88\\x71\\x30\\x2a\\xc4\\x61\\x33\\x93\\x79\\x56\\x70\\x86\\xa6\\x3a\\xc2\\xfb\\xbc\\xe0\\xdd\\xef\\x3b\\xeb\\xdb\\xff\\xba\\xc8\\x79\\xaa\\xda\\xbf\\x32\\x29\\x9e\\x89\\x64\\x32\\x99\\xc8\\xb3\\x30\\x0c\\x5d\\xde\\xbe\\x7d\\x3d\\xbe\\x57\\x84\\x7c\\x67\\xc7\\x3c\\xce\\xd7\\x41\\x89\\x6a\\xf7\\x77\\xfe\\x65\\xf2\\x74\\x84\\xf9\\xa3\\xfa\\xb9\\x3a\\x6c\\x43\\x9d\\xf4\\x03\\x67\\x04\\xd3\\x6d\\x06\\xdb\\x6d\\x94\\x5a\\x43\\xee\\x12\\x66\\x6f\\xd2\\x2c\\xc1\\x76\\xc8\\x63\\xc3\\x67\\x51\\xa8\\x3f\\x84\\xd2\\xd6\\x36\\xab\\x44\\x20\\x52\\x25\\x41\\x57\\x7f\\x08\\x26\\xf1\\x3e\\x7a\\x10\\xe6\\xfb\\xbb\\xe0\\xac\\xd5\\x42\\x70\\xb0\\xc5\\x9a\\x46\\x48\\xb2\\x5a\\x3c\\x34\\x92\\x86\\x84\\x6d\\x1e\\x7a\\xc1\\x24\\xc0\\x19\\x52\\xb9\\x2b\\x3e\\x69\\xd8\\xb4\\xa2\\x0d\\x46\\xd3\\x84\\x46\\xf4\\x05\\xc6\\xd3\\x8c\\x2e\\xee\\x8f\\x93\\xe1\\x16\\x4c\\x43\\xfb\\x69\\xf7\\x23\\x5b\\x6f\\x3f\\x32\\xf8\\x8a\\x41\\x71\\xf6\\xc9\\x41\\x51\\x9c\\x9a\\x7a\\x6e\\x6a\\xaa\\xfa\\xde\\xa9\\xc3\\xcc\\xec\\x77\\x69\\xe8\\xe8\\x20\\x88\\x83\\x57\\x2f\\x0d\\x8a\\xc7\\x1e\\x48\\x4f\\x4d\\xa5\\x7f\\xb2\\x3a\\x75\\x74\\x6f\\x8c\\x99\\x81\\x74\\x3c\\x15\\xf5\\x37\\x34\\xbc\\x97\\x3d\\x57\\x22\\xcc\\xc7\\xf5\\xc3\\x3d\\x87\\x95\\xba\\x91\\x85\\x04\\xa8\\x4d\\xef\\x36\\xe2\\x68\\x3e\\x51\\x26\\x8c\\x1c\\x01\\x3a\\x85\\x7b\\x1b\\xb1\\x23\\x6e\\xbb\\x87\\xed\\x64\\xf4\\x27\\x0e\\x74\\x7d\\xa4\\x1b\\x84\\x36\\xc1\\xfa\\xa8\\x37\\xe4\\xf5\\x77\\xf4\\x74\\xf8\\xbd\\x21\\x6f\\xc0\\x1b\\xf2\\xc2\\x33\\x3b\\xbf\\x11\\x1d\\xef\\xda\\x08\\x59\\xf1\\xc4\\x0e\\xe1\\x67\\xaf\\x3f\\x4f\\xd6\\xfa\\xe7\\x3f\\x4d\\xe0\\x4f\\xaf\\x38\\xbd\\x5e\\xa6\\xc7\\x60\\x7d\\x42\\xc6\\x08\\x8d\\x53\\x60\\x04\\x1d\\xa2\\xe1\\x86\\x68\\x2c\\x01\\x1a\\xa6\\x87\\x8c\\x4d\\xab\\x2f\\x98\\xf4\\x47\\xc3\\x00\\x99\\x64\\x3c\\x36\\x79\\x7a\\x3a\\xef\\x3b\\x73\\x1c\\xe0\\xf8\\x19\\x5f\\x7e\\xfa\\xf4\\x64\\x2c\\x9e\\x8c\\xdf\\xd9\\xf1\\x8a\\x37\\x22\\xf4\\xc6\\x57\\x74\\x1c\\xaf\\xf5\\xc7\\xc6\\x4e\\x4d\\x89\\x42\\x8f\\x20\\x4e\\x9d\\x1a\\x8b\\xf5\\x1f\\xea\\x17\\x5d\\x2e\\x97\\xd8\\x7f\\x68\\x57\\xcc\\xdc\\x4e\\x6a\\xed\\x7e\\x9c\\x8c\\xd5\\x01\\x0f\\x99\\x29\\x41\\x53\\xa1\\x43\\x9d\\xbb\\x83\\x02\\x21\\x32\\x02\\xc1\\x69\\x98\\x81\\x68\\x2f\\x4a\\xc7\\xe2\\x13\\xf1\\xa8\\xbf\\x99\\x9e\\xbd\\x17\\xd2\\xf1\\x66\\xda\\x76\\x53\\x90\\x1b\\x8f\\x36\\xd3\\x03\\x6f\\x3a\\xec\\xbf\\xd8\\x75\\x28\\x78\\x5f\\x77\\x5b\\xef\\x61\\xf7\\x61\\xaf\\x47\\xbc\\x6e\\x77\\x5c\\xb7\\xbb\\x1d\\xfb\\x10\\xce\\x0a\\x16\\xa7\\xc3\\x35\\x85\\x1e\\x1a\\xc1\\x01\\x9f\\x3f\\x1c\\xf6\\x7b\\x9d\\x28\\x84\\xba\\xfa\\x0e\\x24\\x93\\x07\\x06\\x46\\x7e\\x99\\x0c\\xa8\\x0d\\x3f\\x75\\x70\\xaa\\x7b\\xb3\\x10\\xb0\\x3b\\x66\\x03\\x81\\x40\\xfc\\xc0\\x1d\\xfb\\xee\\xf0\\x1e\\x11\\x1d\\x3f\\xeb\\xf5\\xb8\\xf6\\xdb\\x6c\\xc1\\x7d\\x23\\xed\\xee\\x93\\xed\\x7c\\x9f\\xc3\\xd7\\x9b\\xe8\\x75\\x42\\x17\\x04\\x93\\xa7\\x92\\xa3\\xef\\xe9\\xf2\\xec\\xbc\\xe8\\xe9\\xca\\x74\\x79\\x20\\xe0\\xe9\\xca\\x18\\xf4\\x26\\x07\\xdf\\x86\\x6f\\xd3\\x78\\x36\\x9d\\x46\\x94\\x60\\x16\\x73\\x30\\x6e\\x1a\\xb9\\x08\\xc9\\x78\\xd4\\x0d\\x3e\\x4b\\x33\\x5e\\xa2\\x91\\x74\\x68\\x04\\xd2\\x2c\\x62\\xcc\\x1f\\x6f\\x42\\x2f\\x35\\x72\\xf9\\xf5\\xb2\\x38\\xee\\x05\\x38\\xdb\\x7d\\xcc\\xe9\\xf7\\x84\\x3a\\xc2\\xef\\xf3\\x74\\x59\\xf6\\x8f\\x3c\\xde\\xcd\\x0c\\x5d\\x5e\\xbb\\xc9\\xec\\x5c\\x44\\x31\\x8a\\x2d\\x1f\\xea\\x3e\\xd6\\xd1\\xe5\\x09\\x38\\xf7\\x53\\x8b\\x97\\xfc\\xe3\\xdd\\x1c\\xd7\\x1a\\xb3\\x82\\x5a\\xb9\\x0c\\x8c\\x53\\x77\\x48\\x21\\xee\\x4f\\xc6\\xcd\\x5c\\x31\\xf1\\x68\\x18\\xf6\\xb8\\x12\\x72\\x84\\x54\\x3f\\x1c\\xe9\\xce\\xf6\\xfb\\x86\\x7b\\x07\\x07\\x7b\\xe3\\x81\\x01\\x47\\xea\\x6c\\xd3\\xad\\xb0\\x3e\\x73\\x69\\x7a\\xac\\x27\\xdb\\x7f\\x50\\x9c\\x1e\\x8c\\xec\\x8f\\xee\\x09\\x9c\\x43\\xfa\\xc0\\x0a\\x5b\\xf0\\x7b\\x9c\\x87\\x5a\\x03\\x34\\x63\\xbd\\x08\\xf1\\x64\\x2a\\x1a\\xa7\\x79\\x86\\x82\\x2c\\x42\\x0f\\x06\\x21\\x1e\\x15\\x3c\\x71\\xd8\\xf0\\x74\\x75\\x7a\\xd6\\x8b\\x3f\\xe6\\xff\\x99\\x8d\\x57\\x1d\\x22\\xa8\\x4e\\x86\\xcf\\x75\\x5f\\xdb\\xcc\\x8a\\xb0\\x45\\xe5\\x6f\\x5d\\xb0\\x2e\\xfa\\xc5\\x43\\xaf\\xda\\x14\\x4b\\xa2\\x08\\xd6\\x9d\\x93\\xdd\\xd7\\xb2\\xb0\\x24\\x9a\\xf9\\x2e\\xcd\\x18\\x42\\x5e\\x2a\\xe9\\x4c\\xb2\\x30\\x42\\x42\\x50\\x08\\x52\\x81\\x07\\x61\\xe1\\x9b\\x11\\x85\\xce\\x9c\\xa6\\x21\\x85\\x5e\\x33\\x3c\\x14\\x1e\\x32\\xfe\\x3f\\xd8\\x1a\\x5d\\xe8\\x97\\x8c\\x03\\xc3\\xe1\\xe1\\xe1\\x4f\\xb7\\xc4\\x19\\x6a\\xea\\x51\\x45\\x8a\\xf3\\x83\\x42\\x3c\\x4a\\x70\\x0b\\x73\\x6f\\x4c\\x45\\x85\\xb8\\x11\\xb9\\x26\\x99\\xa2\\xc6\\xce\\xfe\\x74\\x50\\xf0\\x27\\xd3\\x41\\x01\\xb6\\x1e\\xbe\\x3b\\x9c\\x17\\x0b\\xbd\\x77\\x27\\xee\\xee\\x2d\\x88\\xf9\\xf0\\xdd\\x0f\\xef\\xad\\x00\\xff\\xcb\\x1e\\x6a\\x54\\xb0\\xb8\\x93\\x66\\x2c\\x7f\\xe6\\x4b\\x13\\x64\\xd9\\x0c\\x20\\xd9\\xcc\\x85\\x19\\x6f\\x49\\xf0\\x44\\xfa\\x7a\\x20\\x68\\x26\\x79\\x62\\x5b\\xea\\x61\\x93\\x29\\xcd\\xfa\\x0f\\xb2\\x00\\xdb\\xd9\\xfb\\x69\\xba\\xcb\\x48\\x36\\x0b\\x62\\x7d\\x32\\x36\\x11\\xab\\xc5\\x26\\x62\\x62\\x57\\x07\\xf8\\x67\\x5f\\xa0\\xb6\\x95\\xab\\xb3\\xb3\\x4f\\x1b\\x40\\xa2\\xbe\\x44\\x16\\x62\\xf2\\xdb\\xec\\xe8\\xa4\\x7d\\xc2\\x71\\x6f\\x46\\x1c\\x68\\x2c\\x13\\x7f\\x80\\x66\\xef\\x49\\x07\\x59\\x5b\\x04\\xab\\xdb\\xf0\\xec\\xed\\x05\\x21\\xce\\xbc\\xc5\\xd2\\x93\\x33\\x00\\x8f\\x5d\\xb9\\xeb\\xae\\x2b\\xfd\\xdd\\x91\\xae\\xc0\\xd1\\x44\\xe2\\xa8\\xff\\x1e\\xef\\xd1\\x3e\\x56\\xd3\\xd7\\xd9\\xa8\\x01\\xed\\xc4\\xe3\\x27\\xfa\\x3b\\x7b\\xfc\\x81\\xc4\\xd1\\x84\\x7f\\xba\\x23\\xd5\\xb7\\xa7\\xcc\\x21\\x6e\\x86\\xe2\\xb4\\x5f\\x67\\x3e\\x70\\x30\\x0c\\xc2\\x64\\x20\\x28\\x0c\\x43\\xda\\x1a\\x08\\x0a\\xb1\\x89\\xf4\\x44\\x72\\x32\\x18\\x08\\x0a\\xe4\\x0b\\xe8\\xe3\\x4f\\x4d\\x8f\\x6a\\x63\\xd7\\xc6\\xc6\\xac\\xfe\\xc8\\xf8\\xb1\\x99\\x19\\x38\\x39\\x77\\x7e\\xea\\xdd\\xbd\\x6f\\xec\\x85\\x13\\xe3\\x11\\xbf\\x75\\x6c\\xec\\xda\\x98\\x36\\x3a\\xfd\\xd4\\xf8\\xb1\\x99\\x9f\\x9b\\x81\\x93\\x36\\xeb\\xd4\\x2f\\xf4\\x3e\\x1d\\x6e\\x95\\x2f\\x63\\x6e\\xbf\\x29\\x5f\\x6c\\x64\\xbf\\x24\\x9c\\x43\\x43\\x92\\x9e\\x4e\\x06\\xfd\\x42\\x32\\xd5\\x62\\xa6\\x07\\xe2\\x2c\\x73\\xba\\x9b\\xad\\x77\\x74\\x76\\x79\\xb2\\x62\\x56\\xac\\xcf\\xae\\x33\\x1b\\xff\\x75\\x28\\x25\\x12\\x34\\x1b\\x9b\\x28\\x76\\x75\\x64\\x3c\\x21\\x42\\x04\\x6c\\xfa\\xa9\\x67\\x6d\\x96\\xf9\\xa2\\x37\\x63\\xf4\\x32\\xfb\\xda\\x34\\xe9\\xe1\\x66\\xcc\\x47\\xe6\\x6b\\xb2\\x7b\\x6f\\xd6\\xdf\\x62\\xcd\\x73\\xa1\\x25\\xd9\\xf8\\xfd\\x2d\\x5b\\xf6\\x1f\\xfc\\x2d\\x21\\xb6\\x33\\xb4\\xee\\xeb\\x74\\x7b\\x7f\\xcb\\x96\\xd5\\xc0\\xf0\\x1e\\x5b\\xf5\\xa6\\x2d\\xd1\\x00\\xa5\\x56\\x1f\\xe4\\x38\\x16\\x99\\x9d\\xb9\\x9c\\x26\\x19\\xc6\\xb1\\x46\\x69\\xf4\\xdf\\xfe\\x06\\x1a\\x4f\\x06\\x06\\x5c\\x84\\xd5\\xed\\x8f\\xc5\\x87\\x81\\x09\\x86\\x28\\x3d\\x3b\\x4e\\xc3\\xf8\\x06\\x7c\\x07\\xf6\\x44\\x71\\x7f\\x6e\\xd3\\x31\\x91\\x99\\xe8\\x9b\\x7f\\xc0\\x09\\x3c\\x63\\xf3\\x79\\x70\\x3e\\xb0\\xbb\\x08\\x25\\x3e\\x12\\x0c\\xe4\\xd4\\xc7\\x03\\xc1\\x3e\\x1e\\x21\\xbe\\x2f\\xe8\\xd9\\x3f\\x79\\xef\\xe1\\xc7\\x68\\x71\\xe7\\x4b\\x34\\xc0\\xd1\\x23\\x34\\xc6\\xd1\\xd6\\xfe\\x68\\xf4\\xbe\\xa3\\x23\\x10\\xea\\x0f\\xc1\\xc8\\x51\\x13\\x38\\xd3\\x39\\x20\\x8c\\xcc\\xcc\\x8c\\x08\\x03\\x9d\\x36\\x87\\xad\\x73\\x40\\x88\\x75\\x8e\\x4e\\x8f\\xd2\\x52\\x37\\x8d\\x9c\\xc4\\xfe\\x37\\x75\\x00\\x66\\x7e\\xbe\\x83\\x04\\xcf\\xef\\xcd\\x0d\\x3f\\x60\\xe4\\x53\\x8d\\x47\\x0d\\x8e\\x3a\\x4d\\xd6\\xdb\\x60\\x9f\\x2f\\x3e\\x1e\\xf0\\x47\\xe1\\x71\\x3a\\xfb\\x0c\\x27\\x73\\x4f\\x97\\xd8\\xdb\\x93\\xe0\\x87\\xf8\\x43\\x3d\\xbd\\x83\\xf1\\xa1\\x91\\xd3\\x3e\\x48\\x6f\\xdc\\x53\\xd8\\xc8\\xb6\\x64\\xd8\\xb9\\x3b\\xd8\\xd7\\x2b\\x0e\\x74\\x77\\x0f\\x88\\xbd\\x83\\x81\\xc7\\x45\\xf1\\x8e\\x1f\\x14\\x4e\\xb6\\xe0\\xa4\\x6e\\xaa\\x8b\\x09\\x32\\xef\\x31\\x16\\x81\\x97\\xc5\\xa5\\x4f\\x53\\x2c\\x08\\x9f\\x09\\x0f\\x85\\xc3\\xbd\\x43\\xbd\\xe1\\xde\\xb3\\x9f\\x39\\x1b\\x0e\\xef\\x2a\\x7d\\x91\\x40\\xa4\\x26\\x7c\\xf6\\x33\\x67\\x7b\\xc3\\xbb\\x4a\\x66\\x1c\\x43\\x33\\xdf\\x55\\x17\\x8b\\x6a\\xb3\\x5b\\xce\\x6e\\x4a\\x49\\x0c\\xdd\\xb5\\xc8\\x74\\x45\\xe3\\xd1\\x7a\\x34\\x59\\x12\\xc1\\x9f\\xc9\\x94\\xc8\\x18\\xef\\xca\\x44\\x93\\xc9\\xe8\\x56\\x73\\x5d\\x22\\xfd\\xe7\\x66\\x99\\xc7\\xfc\\x2d\\x19\\x12\\x92\\x1e\\x33\\xb3\\x19\\x94\\xea\\xc3\\x47\\xcf\\x2c\\x9d\\xc9\\x88\\xcc\\xd8\\x1b\\x7e\\xe4\\xce\\xcf\\xa3\\xce\\x7d\\x34\\x4b\\xa5\\x63\\x00\\xea\\x3b\\xaf\\xa4\\xe3\\x97\\xe3\\x6c\\x46\\x3f\\x6c\\x72\\x2e\\x2e\\x4c\\xe3\\x17\\x25\\xb8\\x61\\xee\\x4e\\xee\\x34\\xe1\\x0b\\xdc\\x10\\x4d\\x4f\\xc6\\x63\\x33\\x90\\xa4\\xae\\x3c\\xb4\\x48\\x9d\\x93\\x92\\x82\\x35\\xe8\\x6d\\x51\\xc9\\x45\\x59\\xca\\xa7\\x56\\x3b\\x5b\\x42\\x7d\\x34\\x19\\x93\\x3b\\xfa\\xac\\x70\\x08\\x5b\\xfc\\xfd\\x56\\x38\\x84\\x2c\\xde\\x8b\\xfd\\x56\\x74\\x10\\x59\\xbc\\xc8\\xd8\\xdb\\x13\\x54\\x62\\x90\\x78\\xea\\x2f\\x98\\x36\\x29\\xb3\\xdf\\xeb\\xdb\\xb7\\x9f\\xaf\\xd1\\x54\\x8b\\xf0\\x54\\x64\\xc4\\xee\\xe8\\xf6\\xf7\\x0f\\xdb\\x9d\\xdd\\x3e\\xe8\\x1b\\xb6\\x3b\\xba\\x7d\\xc0\\x4a\\x3b\\x5f\\xab\\x1b\\x7f\\x1b\\x34\\x2e\\xc0\\xc6\\x3e\\x5f\\xcf\\xbe\\x3e\\x4b\\x81\\xe6\\x6a\\xe3\\x0c\\x7b\\xee\\xd6\\x9c\\xe3\\x6e\\xd3\\x0e\\xc9\\x43\\x35\\xeb\\xb7\\xf7\\x1b\\xdf\\xa0\\x69\\xaa\\x4c\\x03\\x80\\x8e\\x2e\\xb6\\x7e\\x77\\x75\\x00\\x57\\x02\\x2e\\xe3\\x2f\\x95\\xb6\\x3f\\xff\\x79\\xa0\\x36\\xc9\\x6c\\xf1\\x6e\\xd1\\x59\\x6e\\x52\\x4b\\xa7\\xf3\\xdc\\x6b\\x38\\x8e\\x33\\x33\\x38\\xf4\\xc7\\x63\\x71\\x42\\x88\\xa5\\xc6\\x03\\xbd\\x60\\x65\\x72\\xda\\x7e\\xc1\\x6a\\x31\\x84\\xae\\xd1\\xbd\\xfb\\xd4\\x38\\x93\\xc2\\x26\\xf7\\xee\\xfd\\x7b\\xce\\xbc\\xdd\\x05\\xad\\xe7\\x83\\x48\\x79\\xcf\\xb7\\x3b\\x9c\\xbc\\xe3\\x6e\\x7f\\x24\\x75\\x68\\xa2\\xf3\\x8d\\x56\\xec\\x74\\xb4\\x3b\\x03\\xe3\\x01\\x27\\x78\\x82\\xc1\\x76\\x97\\xb3\\x3d\\xd8\\xb9\\x77\\x7f\\xbb\\x3a\\xb2\\xdf\\x53\\x37\\x1a\\x6c\\x77\\xba\\xda\\x83\\xc1\\xdb\\x54\\x75\\x06\\xdb\\x9d\\xc0\\x18\\xd9\\xac\\x0d\\x5b\\xee\\x0e\\x44\\x52\\xde\\xce\\x37\\xf0\\x60\\xb3\\x39\\x9d\\xb6\\x2b\\x2e\\x41\\x70\\x99\\x3f\\xb1\\x09\\xba\\x84\\x67\\x5e\\xf6\\x08\\xb7\\x4b\\xb6\\xc5\\x72\\x1e\\x84\\x21\\xd8\\x37\\x0d\\x0d\\xe6\\x88\\xaa\\x66\\xe2\\x33\\xb3\\xfc\\x4e\\x9d\\x9f\\x9d\\xe1\\x43\\xfd\\xa1\\x97\\x38\\xb8\\xb1\\x33\\x0b\\x97\\x9d\\xd2\\xf1\\xe3\\x92\\xb3\\x4d\\x20\\x5f\\x4b\\xf8\\x6a\\xc2\\x8c\\x43\\xed\\x37\\x6c\\xd0\\xbb\\xb8\\x43\\xdc\\x10\\x37\\x46\\xf3\\xcf\\xc5\\x93\\x71\\x4a\\x3b\\xfb\\xfb\\xad\\x7e\\x5f\\xc0\\x48\\x0c\\x9a\\x9a\\x88\\x45\\xd3\\x66\\x0e\\xb6\\x68\\x8a\\x29\\x08\\x92\\xfe\\x68\\x3a\\xe9\\x8f\\x0e\\xa4\\x09\\x25\\x96\\x4a\\x42\\x69\\x66\\x66\\x72\\x7f\\x22\\xb1\\xdf\\x13\\x08\\xee\\xeb\\x0b\\x0f\\x46\\xba\\x3c\\x47\\xc3\\x03\\x91\\xb1\\x03\\xfb\\x82\\x91\\x38\\x75\\x59\\xda\\x59\\x09\\x41\\xa9\\x7b\\x7d\\x6b\\xfd\\xa3\\x33\\x8f\\x88\\x87\\x13\\x11\\xff\\x3e\\x4f\\x28\\xde\\xd3\\xdf\\xed\\x0b\\x5e\\x70\\x1d\\x3e\\x30\\x38\\x78\\x20\\x19\\x09\\x7a\\xc2\\x5f\\xc8\\x64\\x32\\x5b\\xdd\\x3b\\xeb\\xdd\\xd7\\x33\\x66\\xfe\\x8c\\x12\\x6d\\x67\\xc0\\xb0\\x0b\\x9d\\x32\\xb3\\x3d\\x51\\xd6\\xb9\\xa5\\xb1\\xc9\\xdd\\x4d\\xa4\\xbb\\x80\\xbf\\xd9\\x50\\xd2\\x3d\\xb3\\xbd\\x62\\xa4\\xcb\\xd3\\x67\\xb6\\xf3\\x31\\xa3\\x85\\xc1\\x7d\\xfb\\x13\\x66\\x23\\x21\\xb3\\xb3\\x09\\xb1\\xd8\\xfe\\x68\\x8f\\x2f\\x68\\x36\\x33\\xe5\\x3a\\x1c\\x1d\\x1d\\x3d\\x30\\x1e\\x09\\x7a\\xf6\\x05\\x23\\x89\\xfd\\xe1\\x2f\\x65\\xc8\\xdf\\x9e\\x1c\\xdb\\x04\\x1f\\x59\\x85\\x58\\x7c\\x32\\x1d\\xb0\\x8c\\x13\\xae\\x24\\xe9\\xb3\\x0a\\xa4\\x62\\x18\\xe0\\x74\\x22\\x12\\x49\\xd8\\xee\\xba\\x6b\\xe7\\x2f\\x4e\\x54\\xfb\\xfa\\xaa\\x27\\x72\\x67\\x3d\\x5d\\x7e\\xff\\xd9\\x1c\\x24\\x83\\xfd\\xfd\\xc1\\xdc\\x5d\\x77\\x2d\\xdc\\x99\\x4c\\xde\\xf9\\xd0\\xeb\\xba\\xad\\x16\\x6c\\xeb\\x7e\\x1d\\xa5\\x8f\\x98\\xfc\\xf9\\x7e\\x2a\\xa1\\x70\\x83\\x35\\x1a\\x17\\xac\\xfd\\x23\\x48\\x08\\xfa\\x08\\xff\\x87\\x04\\x1a\\x92\\x20\\x1d\\x15\\x82\\x01\\xca\\x0f\\xb2\\x7d\\x8a\\x7a\\x62\\xf5\\x05\\xd2\\xb1\\x74\\x20\\x18\\x98\\x8c\\xc7\\xe2\\xfd\\xf1\\x58\\x7a\\x22\\x19\\x86\\x5e\\x08\\x23\\xc1\\x17\\x84\\x97\\x00\\xba\\x10\\x72\\x0b\\xc8\\x8e\\x5c\\xc1\\x11\\x0f\\xef\\x43\\xc8\\xd7\\xd6\\xc5\\xfb\\xf9\\xe0\\xeb\\xa3\\x36\\x64\\xf5\\x61\\xe8\\xe9\\xb7\\x22\\x6b\\x80\\x77\\xfa\\x83\\xd0\\x31\\x3a\\x62\\x73\\xf5\\xd8\\x04\\x3b\\xb2\\x1f\\x00\\xe4\\x40\\xfc\\xfe\\x43\\x02\\x8f\\x05\\x0b\\x20\\x98\\x06\\x0c\\x11\\x84\\x03\\x3c\\x1f\\xb6\\x54\\xdf\\xc0\\xe3\\xf3\\x9e\\x39\\xcc\\xbf\\xfe\\xce\\x13\\x16\\x34\\x1f\\x3f\\x6a\\x41\\x53\\x17\\xde\\x66\\xf7\\x43\\x7f\\xc0\\xe5\\xb3\\xf0\\xed\\x42\\x8f\\x0b\\xb0\\x05\\xf3\\x03\\x1e\\xcc\\xdb\\xdc\\x36\\x0b\\xe2\\x38\\xce\\xc5\\x7d\\x9c\\xbe\\x25\\xf9\\x1b\\xe5\\xe6\\x0c\\x18\\x38\\x17\\xf7\\xb3\\x06\\x8c\\x38\\x81\\xfb\\x2d\\x03\\xc6\\xdc\\x21\\x18\\x34\\x60\\x9e\\x73\\x81\\x6e\\xc0\\x16\\xce\\x05\\xef\\x37\\x60\\x2b\\xe7\\x87\\xdf\\xe7\\x30\\x07\\xbc\\x9d\\xe3\\x38\\xa6\\x39\\x24\\x30\\x70\\x3d\\xdc\\x3b\\x0d\\x18\\x71\\x2e\\x6e\\xd3\\x80\\x31\\x77\\x81\\xfb\\xa6\\x01\\xf3\\x5c\\x0f\\xcc\\x1a\\xb0\\x85\\xeb\\x81\\xa7\\x0c\\xd8\\xca\\x25\\xe0\\x93\\xdc\\x5d\\x9c\\xc2\\x55\\xb9\\x35\\x4e\\xe5\\x8a\\xdc\\x02\\xb7\\xc8\\xe9\\x5c\\x84\\x1b\\xe7\\x46\\xb9\\x31\\x2e\\xc5\\x45\\xb8\\x7b\\x38\\x85\\x53\\xb8\\x05\\xae\\xcc\\xc9\\xdc\\x20\\x17\\xe1\\xee\\xe5\\x2a\\x5c\\x9e\\x1b\\xa6\\x36\\x2d\\x65\\xae\\xcc\\x45\\xb8\\x0b\\x8d\\xeb\\x34\\x5a\\x92\\x39\\x8d\\x93\\x39\\x95\\x5b\\xe1\\x64\\xae\\xc0\\x0d\\x73\\xdc\\x5d\\x4a\\x75\\x4d\\x2d\\x2e\\x2c\\xea\\x91\\xf1\\xd1\\xb1\\x54\\xe4\\x1e\\x45\\x59\\x28\\xcb\\x83\\x91\\x7b\\x2b\\xf9\\xe1\\xc8\\xf1\\x72\\x39\\x72\\x81\\x1c\\xd3\\x22\\x17\\x64\\x4d\\x56\\x57\\xe4\\xc2\\x30\\xc7\\xdd\\xc7\\x49\\x9c\\x4e\\x6f\\x52\\xe4\\x24\\xfa\\x90\\x7b\\xb9\\x3c\\xa7\\x70\\x15\\x4e\\xe3\\xb8\\xfb\\x24\\x5d\\x56\\x8b\\x52\\x39\\x72\\x6f\\x5e\\xa9\\x68\\x1c\\x7d\\xe2\\x02\\x57\\xe3\\xca\\x9c\\xc4\\xa9\\x1c\\x77\\x41\\x5e\\xa8\\x95\\x25\\x95\\xe3\\x4e\\xd2\\x0b\\x74\\xba\\x57\\xb9\\x05\\x4e\\xa6\\xef\\x35\\xcc\\x8d\\x72\\x11\\xee\\x30\\x17\\xf9\\xa1\\x0f\\x61\\x67\\x4c\\x71\\x43\\xdc\\x38\\xfd\\x91\\xde\\x98\\xe4\\xb8\\x93\\x4a\\x45\\x3f\\xa9\\xa8\\x0b\\x72\\x64\\x7c\\x78\\x34\\x72\\x38\\xb2\\xbb\\x29\\x91\\xc3\\x91\\xa9\\xa1\\xf1\\xa1\\xf1\\xd1\\xb1\\xc9\\xff\\xc5\\x57\\x98\\xa5\\x27\\x6a\\x5c\\x91\\x9e\\x10\\xe1\\xc6\\x68\\x33\\xc7\\xb8\\x31\\xc2\\x26\\xce\\xca\\xaa\\x56\\x54\\x2a\\x91\\xb1\\xe1\\xd1\\xb1\\xb1\\xc8\\xad\\x77\\x6e\\xde\\x77\\x68\\x6f\\x5f\\x98\\xcf\\xa1\\x8f\\x19\\x6a\\xf4\\x0c\\x62\\x03\\xf3\\xa5\\xa7\\xb8\\x71\\x83\\x5b\\xd9\\xf5\\x87\\xbf\\x4c\\x6b\\x11\\x20\\xc0\\xc0\\x83\\x05\\xac\\x20\\x80\\x0d\\xec\\xd0\\x06\\xed\\xe0\\xe0\\x4e\\x70\\x77\\x73\\x27\\xb9\\x7b\\xb8\\x53\\xdc\\xbd\\xdc\\x69\\xee\\x0c\\x77\\x96\\xbb\\x8f\\xbb\\x9f\\x7b\\x80\\x3b\\xc7\\x9d\\xe7\\x2e\\x70\\x0f\\x72\\x0f\\x71\\x59\\x6e\\x96\\xbb\\xc8\\x5d\\xe2\\x1e\\xe6\\x2e\\x73\\x8f\\x70\\x8f\\x72\\x8f\\x81\\x13\\x5c\\xe0\\x86\\x7d\\xe0\\x81\\x0e\\xf0\\x82\\x0f\\xfc\\x10\\x80\\x20\\x74\\x42\\x17\\x84\\xa0\\x1b\\x7a\\x60\\x3f\\x90\\x39\\x1c\\x81\\x3e\\xe8\\x87\\x28\\x1c\\x80\\x01\\x88\\x41\\x1c\\x0e\\xc2\\x21\\x48\\x80\\x08\\x83\\x30\\x04\\xc3\\x30\\x02\\xa3\\x30\\x06\\xe3\\x90\\x84\\x09\\x48\\xc1\\x24\\xa4\\x61\\x0a\\xee\\x80\\xc3\\x70\\x04\\x8e\\xc2\\x31\\x98\\x86\\x19\\xc8\\xc0\\x71\\xb8\\x13\\xee\\x82\\x13\\x70\\x37\\x9c\\x84\\x7b\\xe0\\x14\\xdc\\x0b\\xa7\\xe1\\x0c\\x9c\\x85\\xfb\\xe0\\x7e\\x78\\x00\\xce\\xc1\\x79\\xb8\\x00\\x0f\\xc2\\x43\\x84\\x24\\x83\\x8b\\x70\\x09\\x1e\\x86\\xcb\\xf0\\x08\\x3c\\x0a\\x8f\\xc1\\xe3\\x90\\x83\\x2b\\x20\\xc1\\x1c\\xe4\\xa1\\x00\\x32\\xcc\\xc3\\x02\\x2c\\x42\\x11\\x96\\xa0\\x04\\x65\\x58\\x86\\x0a\\x28\\x50\\x85\\x27\\x40\\x05\\x0d\\x74\\xa8\\xc1\\x0a\\xac\\xc2\\x55\\x58\\x83\\x6b\\xf0\\x0a\\x78\\x12\\x5e\\x09\\xaf\\x82\\x57\\x43\\x1d\\x5e\\x03\\x3f\\x02\\x4f\\xc1\\x8f\\xc2\\x6b\\xe1\\x75\\xf0\\x7a\\x78\\x03\\xbc\\x11\\x9e\\x86\\x67\\xe0\\x4d\\xf0\\x66\\x78\\x0b\\xbc\\x15\\xde\\x06\\x6f\\x87\\x77\\xc0\\x3b\\xe1\\xc7\\x60\\x1d\\xae\\xc3\\xb3\\xf0\\x2e\\x78\\x37\\xfc\\x38\\xfc\\x04\\xbc\\x07\\x7e\\x12\\xde\\x0b\\xef\\x83\\xe7\\xe0\\xfd\\xf0\\x01\\xf8\\x20\\xfc\\x14\\x7c\\x08\\x3e\\x0c\\x3f\\x0d\\x1f\\x81\\x9f\\x81\\x1b\\xb0\\x01\\x1f\\x85\\x8f\\xc1\\xc7\\xe1\\x13\\xf0\\x49\\xf8\\x59\\xf8\\x6f\\xf0\\x73\\xf0\\xf3\\xf0\\x29\\xf8\\x34\\x7c\\x06\\x7e\\x01\\x3e\\x0b\\x9f\\x83\\xff\\x0e\\xbf\\x08\\xbf\\x04\\xbf\\x0c\\xbf\\x02\\x9b\\xf0\\x79\\xf8\\x02\\x7c\\x11\\x7e\\x15\\xbe\\x04\\xbf\\x06\\xbf\\x0e\\xff\\x03\\xfe\\x27\\xfc\\x06\\x3c\\x0f\\xbf\\x09\\x5f\\x86\\xaf\\xc0\\x57\\xe1\\xb7\\xe0\\x6b\\xf0\\x75\\xf8\\x6d\\xf8\\x06\\x6c\\xc1\\x4d\\xf8\\x1d\\xf8\\x26\\xfc\\x2e\\x7c\\x0b\\x7e\\x0f\\x7e\\x1f\\xfe\\x00\\xfe\\x10\\xfe\\x08\\x5e\\x80\\x3f\\x86\\x3f\\x81\\x3f\\x85\\x3f\\x83\\x6f\\xc3\\x9f\\xc3\\x5f\\xc0\\x5f\\xc2\\x5f\\xc1\\x8b\\xb0\\x0d\\x7f\\x0d\\x7f\\x03\\x7f\\x0b\\xdf\\x81\\xbf\\x83\\xbf\\x87\\xef\\xc2\\x3f\\xc0\\x3f\\xc2\\xf7\\xe0\\x9f\\xe0\\xfb\\xf0\\xcf\\xf0\\x03\\xf8\\x17\\xf8\\x57\\xf8\\x37\\xf8\\x77\\xd8\\x81\\x97\\x10\\x19\\x32\\x08\\x61\\xc4\\x23\\x0b\\xb2\\x22\\x01\\xd9\\x90\\x1d\\xb5\\xa1\\x76\\xe4\\x40\\x4e\\xe4\\x42\\x6e\\xb4\\x0f\\x79\\x50\\x07\\xf2\\x22\\x1f\\xf2\\xa3\\x00\\x0a\\xa2\\x4e\\xd4\\x85\\x42\\xa8\\x1b\\xf5\\xa0\\xfd\\x28\\x8c\\x7a\\x51\\x04\\xf5\\xa1\\x7e\\x14\\x45\\x07\\xd0\\x00\\x8a\\xa1\\x38\\x3a\\x88\\x0e\\xa1\\x04\\x12\\xd1\\x20\\x1a\\x42\\xc3\\x68\\x04\\x8d\\xa2\\x31\\x34\\x8e\\x92\\x68\\x02\\xa5\\xd0\\x24\\x4a\\xa3\\x29\\x74\\x07\\x3a\\x8c\\x8e\\xa0\\xa3\\xe8\\x18\\x9a\\x46\\x33\\x28\\x83\\x8e\\xa3\\x3b\\xd1\\x5d\\xe8\\x04\\xba\\x1b\\x9d\\x44\\xf7\\xa0\\x53\\xe8\\x5e\\x74\\x1a\\x9d\\x41\\x67\\xd1\\x7d\\xe8\\x7e\\xf4\\x00\\x3a\\x87\\xce\\xa3\\x0b\\xe8\\x41\\xf4\\x10\\xca\\xa2\\x59\\x74\\x11\\x5d\\x42\\x0f\\xa3\\xcb\\xe8\\x11\\xf4\\x28\\x7a\\x0c\\x3d\\x8e\\x72\\xe8\\x0a\\x92\\xd0\\x1c\\xca\\xa3\\x02\\x92\\xd1\\x3c\\x5a\\x40\\x8b\\xa8\\x88\\x96\\x50\\x09\\x95\\xd1\\x32\\xaa\\x20\\x05\\x55\\xd1\\x13\\x48\\x45\\x1a\\xd2\\x51\\x0d\\xad\\xa0\\x55\\x74\\x15\\xad\\xa1\\x6b\\xe8\\x15\\xe8\\x49\\xf4\\x4a\\xf4\\x2a\\xf4\\x6a\\x54\\x47\\xaf\\x41\\x3f\\x82\\x9e\\x42\\x3f\\x8a\\x5e\\x8b\\x5e\\x87\\x5e\\x8f\\xde\\x80\\xde\\x88\\x9e\\x46\\xcf\\xa0\\x37\\xa1\\x37\\xa3\\xb7\\xa0\\xb7\\xa2\\xb7\\xa1\\xb7\\xa3\\x77\\xa0\\x77\\xa2\\x1f\\x43\\xeb\\xe8\\x3a\\x7a\\x16\\xbd\\x0b\\xbd\\x1b\\xfd\\x38\\xfa\\x09\\xf4\\x1e\\xf4\\x93\\xe8\\xbd\\xe8\\x7d\\xe8\\x39\\xf4\\x7e\\xf4\\x01\\xf4\\x41\\xf4\\x53\\xe8\\x43\\xe8\\xc3\\xe8\\xa7\\xd1\\x47\\xd0\\xcf\\xa0\\x1b\\x68\\x03\\x7d\\x14\\x7d\\x0c\\x7d\\x1c\\x7d\\x02\\x7d\\x12\\xfd\\x2c\\xfa\\x6f\\xe8\\xe7\\xd0\\xcf\\xa3\\x4f\\xa1\\x4f\\xa3\\xcf\\xa0\\x5f\\x40\\x9f\\x45\\x9f\\x43\\xff\\x1d\\xfd\\x22\\xfa\\x25\\xf4\\xcb\\xe8\\x57\\xd0\\x26\\xfa\\x3c\\xfa\\x02\\xfa\\x22\\xfa\\x55\\xf4\\x25\\xf4\\x6b\\xe8\\xd7\\xd1\\xff\\x40\\xff\\x13\\xfd\\x06\\x7a\\x1e\\xfd\\x26\\xfa\\x32\\xfa\\x0a\\xfa\\x2a\\xfa\\x2d\\xf4\\x35\\xf4\\x75\\xf4\\xdb\\xe8\\x1b\\x68\\x0b\\xdd\\x44\\xbf\\x83\\xbe\\x89\\x7e\\x17\\x7d\\x0b\\xfd\\x1e\\xfa\\x7d\\xf4\\x07\\xe8\\x0f\\xd1\\x1f\\xa1\\x17\\xd0\\x1f\\xa3\\x3f\\x41\\x7f\\x8a\\xfe\\x0c\\x7d\\x1b\\xfd\\x39\\xfa\\x0b\\xf4\\x97\\xe8\\xaf\\xd0\\x8b\\x68\\x1b\\xfd\\x35\\xfa\\x1b\\xf4\\xb7\\xe8\\x3b\\xe8\\xef\\xd0\\xdf\\xa3\\xef\\xa2\\x7f\\x40\\xff\\x88\\xbe\\x87\\xfe\\x09\\x7d\\x1f\\xfd\\x33\\xfa\\x01\\xfa\\x17\\xf4\\xaf\\xe8\\xdf\\xd0\\xbf\\xa3\\x1d\\xf4\\x12\\xe6\\x30\\x60\\x84\\x31\\xe6\\xb1\\x05\\x5b\\xb1\\x80\\x6d\\xd8\\x8e\\xdb\\x70\\x3b\\x76\\x60\\x27\\x76\\x61\\x37\\xde\\x87\\x3d\\xb8\\x03\\x7b\\xb1\\x0f\\xfb\\x71\\x00\\x07\\x71\\x27\\xee\\xc2\\x21\\xdc\\x8d\\x7b\\xf0\\x7e\\x1c\\xc6\\xbd\\x38\\x82\\xfb\\x70\\x3f\\x8e\\xe2\\x03\\x78\\x00\\xc7\\x70\\x1c\\x1f\\xc4\\x87\\x70\\x02\\x8b\\x78\\x10\\x0f\\xe1\\x61\\x3c\\x82\\x47\\xf1\\x18\\x1e\\xc7\\x49\\x3c\\x81\\x53\\x78\\x12\\xa7\\xf1\\x14\\xbe\\x03\\x1f\\xc6\\x47\\xf0\\x51\\x7c\\x0c\\x4f\\xe3\\x19\\x9c\\xc1\\xc7\\xf1\\x9d\\xf8\\x2e\\x7c\\x02\\xdf\\x8d\\x4f\\xe2\\x7b\\xf0\\x29\\x7c\\x2f\\x3e\\x8d\\xcf\\xe0\\xb3\\xf8\\x3e\\x7c\\x3f\\x7e\\x00\\x9f\\xc3\\xe7\\xf1\\x05\\xfc\\x20\\x7e\\x08\\x67\\xf1\\x2c\\xbe\\x88\\x2f\\xe1\\x87\\xf1\\x65\\xfc\\x08\\x7e\\x14\\x3f\\x86\\x1f\\xc7\\x39\\x7c\\x05\\x4b\\x78\\x0e\\xe7\\x71\\x01\\xcb\\x78\\x1e\\x2f\\xe0\\x45\\x5c\\xc4\\x4b\\xb8\\x84\\xcb\\x78\\x19\\x57\\xb0\\x82\\xab\\xf8\\x09\\xac\\x62\\x0d\\xeb\\xb8\\x86\\x57\\xf0\\x2a\\xbe\\x8a\\xd7\\xf0\\x35\\xfc\\x0a\\xfc\\x24\\x7e\\x25\\x7e\\x15\\x7e\\x35\\xae\\xe3\\xd7\\xe0\\x1f\\xc1\\x4f\\xe1\\x1f\\xc5\\xaf\\xc5\\xaf\\xc3\\xaf\\xc7\\x6f\\xc0\\x6f\\xc4\\x4f\\xe3\\x67\\xf0\\x9b\\xf0\\x9b\\xf1\\x5b\\xf0\\x5b\\xf1\\xdb\\xf0\\xdb\\xf1\\x3b\\xf0\\x3b\\xf1\\x8f\\xe1\\x75\\x7c\\x1d\\x3f\\x8b\\xdf\\x85\\xdf\\x8d\\x7f\\x1c\\xff\\x04\\x7e\\x0f\\xfe\\x49\\xfc\\x5e\\xfc\\x3e\\xfc\\x1c\\x7e\\x3f\\xfe\\x00\\xfe\\x20\\xfe\\x29\\xfc\\x21\\xfc\\x61\\xfc\\xd3\\xf8\\x23\\xf8\\x67\\xf0\\x0d\\xbc\\x81\\x3f\\x8a\\x3f\\x86\\x3f\\x8e\\x3f\\x81\\x3f\\x89\\x7f\\x16\\xff\\x37\\xfc\\x73\\xf8\\xe7\\xf1\\xa7\\xf0\\xa7\\xf1\\x67\\xf0\\x2f\\xe0\\xcf\\xe2\\xcf\\xe1\\xff\\x8e\\x7f\\x11\\xff\\x12\\xfe\\x65\\xfc\\x2b\\x78\\x13\\x7f\\x1e\\x7f\\x01\\x7f\\x11\\xff\\x2a\\xfe\\x12\\xfe\\x35\\xfc\\xeb\\xf8\\x7f\\xe0\\xff\\x89\\x7f\\x03\\x3f\\x8f\\x7f\\x13\\x7f\\x19\\x7f\\x05\\x7f\\x15\\xff\\x16\\xfe\\x1a\\xfe\\x3a\\xfe\\x6d\\xfc\\x0d\\xbc\\x85\\x6f\\xe2\\xdf\\xc1\\xdf\\xc4\\xbf\\x8b\\xbf\\x85\\x7f\\x0f\\xff\\x3e\\xfe\\x03\\xfc\\x87\\xf8\\x8f\\xf0\\x0b\\xf8\\x8f\\xf1\\x9f\\xe0\\x3f\\xc5\\x7f\\x86\\xbf\\x8d\\xff\\x1c\\xff\\x05\\xfe\\x4b\\xfc\\x57\\xf8\\x45\\xbc\\x8d\\xff\\x1a\\xff\\x0d\\xfe\\x5b\\xfc\\x1d\\xfc\\x77\\xf8\\xef\\xf1\\x77\\xf1\\x3f\\xe0\\x7f\\xc4\\xdf\\xc3\\xff\\x84\\xbf\\x8f\\xff\\x19\\xff\\x00\\xff\\x0b\\xfe\\x57\\xfc\\x6f\\xf8\\xdf\\xf1\\x0e\\x7e\\x89\\xe7\\x78\\xe0\\x11\\x8f\\x79\\x9e\\xb7\\xf0\\x56\\x5e\\xe0\\x6d\\xbc\\x9d\\x6f\\xe3\\xdb\\x79\\x07\\xef\\xe4\\x5d\\xbc\\x9b\\xdf\\xc7\\x7b\\xf8\\x0e\\xde\\xcb\\xfb\\x78\\x3f\\x1f\\xe0\\x83\\x7c\\x27\\xdf\\xc5\\x87\\xf8\\x6e\\xbe\\x87\\xdf\\xcf\\x87\\xf9\\x5e\\x3e\\xc2\\xf7\\xf1\\xfd\\x7c\\x94\\x3f\\xc0\\x0f\\xf0\\x31\\x3e\\xce\\x1f\\xe4\\x0f\\xf1\\x09\\x5e\\xe4\\x07\\xf9\\x21\\x7e\\x98\\x1f\\xe1\\x47\\xf9\\x31\\x7e\\x9c\\x4f\\xf2\\x13\\x7c\\x8a\\x9f\\xe4\\xd3\\xfc\\x14\\x7f\\x07\\x7f\\x98\\x3f\\xc2\\x1f\\xe5\\x8f\\xf1\\xd3\\xfc\\x0c\\x9f\\xe1\\x8f\\xf3\\x77\\xf2\\x77\\xf1\\x27\\xf8\\xbb\\xf9\\x93\\xfc\\x3d\\xfc\\x29\\xfe\\x5e\\xfe\\x34\\x7f\\x86\\x3f\\xcb\\xdf\\xc7\\xdf\\xcf\\x3f\\xc0\\x9f\\xe3\\xcf\\xf3\\x17\\xf8\\x07\\xf9\\x87\\xf8\\x2c\\x3f\\xcb\\x5f\\xe4\\x2f\\xf1\\x0f\\xf3\\x97\\xf9\\x47\\xf8\\x47\\xf9\\xc7\\xf8\\xc7\\xf9\\x1c\\x7f\\x85\\x97\\xf8\\x39\\x3e\\xcf\\x17\\x78\\x99\\x9f\\xe7\\x17\\xf8\\x45\\xbe\\xc8\\x2f\\xf1\\x25\\xbe\\xcc\\x2f\\xf3\\x15\\x5e\\xe1\\xab\\xfc\\x13\\xbc\\xca\\x6b\\xbc\\xce\\xd7\\xf8\\x15\\x7e\\x95\\xbf\\xca\\xaf\\xf1\\xd7\\xf8\\x57\\xf0\\x4f\\xf2\\xaf\\xe4\\x5f\\xc5\\xbf\\x9a\\x7b\\x86\\xaf\\xf3\\xaf\\xe1\\x7f\\x84\\x7f\\x8a\\xff\\x51\\xfe\\xb5\\xfc\\xeb\\xf8\\xd7\\xf3\\x6f\\xe0\\xdf\\xc8\\x3f\\xcd\\x3f\\xc3\\xbf\\x89\\x7f\\x33\\xff\\x16\\xfe\\xad\\xfc\\xdb\\xf8\\xb7\\xf3\\xef\\xe0\\xdf\\xc9\\xff\\x18\\xbf\\xce\\x5f\\xe7\\x9f\\xe5\\xdf\\xc5\\xbf\\x9b\\xff\\x71\\xfe\\x27\\xf8\\xf7\\xf0\\x3f\\xc9\\xbf\\x97\\x7f\\x1f\\xff\\x1c\\xff\\x7e\\xfe\\x03\\xfc\\x07\\xf9\\x9f\\xe2\\x3f\\xc4\\x7f\\x98\\xff\\x69\\xfe\\x23\\xfc\\xcf\\xf0\\x37\\xf8\\x0d\\xfe\\xa3\\xfc\\xc7\\xf8\\x8f\\xf3\\x9f\\xe0\\x3f\\x79\\xdb\\x35\\x30\\x67\\x91\\x55\\x55\\x51\\x9d\\x74\\x9b\\x53\\x6a\\x7a\\xb9\\x58\\x91\\x85\\x55\\x49\\xad\\x14\\x2b\\x0b\\x76\\xa9\\x50\\xc8\\x49\\x65\\x59\\xd5\\x2d\\x52\\x79\\xae\\xb6\\x6c\\x93\\x56\\x72\\x7a\\x71\\x59\\x56\\x5d\\xf9\\xb2\\xa2\\xc9\\x85\\x5c\\x5e\\xaa\\xea\\x45\\xa5\\x62\\x97\\x9f\\xa8\\x49\\xe5\\xe2\\x35\\x59\\xb5\\xc9\\x57\\xab\\xe5\\x62\\xbe\\xa8\\x3b\\xe6\\x25\\x4d\\xcf\\xcd\\x2b\\xea\\xaa\\xa4\\x16\\xda\\x69\\x41\\x95\\x57\\x8b\\x95\\x82\\x65\\x41\\x5a\\x96\\x35\\x61\\x51\\x96\\xd4\\x62\\x65\\xc1\\xb1\\x58\\x5c\\x58\\xcc\\xd1\\xab\\xf5\\x35\\xbe\\xac\\x28\\x55\\xbc\\x5c\\xcc\\xdb\\x96\\x8b\\xf9\\x5c\\x45\\xa9\\xc8\\x02\\x01\\x94\\xf9\\x79\\xcb\\xb2\\xb2\\x52\\x94\\xdb\\xcb\\xc5\\x39\\x55\\x52\\xd7\\x72\\x52\\xa1\\xe0\\x34\\xe1\\x39\\x45\\x29\\x69\\x8d\\xd2\\x72\\x4d\\x2b\\xe6\\x1d\\x15\\x79\\x35\\xa7\\xca\\x65\\x59\\xd2\\x64\\xcd\\x55\\x51\\xf4\\x5c\\xb1\\xa2\\xcb\\xaa\\xac\\xe9\\x72\\xc1\\x52\\x95\\x6a\\x9a\\xec\\xa5\\xdb\\x5c\\xbe\\xa8\\xe6\\xcb\\x72\\x6e\\xbe\\x58\\x2e\\xcb\\x05\\xdf\\xae\\x3a\\xa3\\x27\\xda\\xaa\\x65\\x69\\x2d\\x27\\xa9\\xaa\\xb2\\xda\\x41\\xc1\\x5d\\x97\\x78\\x5b\\xab\\x8c\\x2b\\x1c\\xa4\\xae\\x5c\\xd4\\x74\\xd2\\x4a\\xcb\\x13\\x35\\xb9\\x26\\xb7\\xd3\\x2d\\x6b\\x9b\\x45\\x95\\x0a\\x45\\xc5\\xa9\\xca\\x79\\xb9\\xa2\\xe7\\xa4\\xbc\\xae\\xa8\\x9a\\x55\\x95\\xab\\xb2\\xa4\\xb7\\xb1\\x5d\\x4e\\xa9\\xc8\\xa4\\xa6\\x2c\\xad\\x09\\xda\\x62\\x6d\\x7e\\xbe\\x2c\\xdb\\xb5\\x52\\xb1\\x9a\\xab\\xc8\\x57\\x75\\x27\\x85\\xaa\\xaa\\xbc\\x52\\x54\\x6a\\x9a\\x55\\xab\\x28\\xca\\x35\\x99\\xd7\\x74\\xa5\\x6a\\xd7\\x6a\\x73\\x7a\\x51\\x2f\\xcb\\x9a\\x4b\\xab\\xa9\\xaa\\x52\\xab\\x14\\x72\\x1a\\xd9\\x3a\\x57\\x8a\\x05\\x59\\xc9\\x19\\x3d\\x64\\xa3\\xa5\\xbc\\xb4\\xec\\x30\\x01\\xd2\\xbf\\xed\\x2b\\x4a\\xb9\\xb6\\x2c\\xe7\\x0a\\xca\\x6a\\xc5\\x84\\x97\\x6b\\xba\\xdc\\x66\\xc0\\xca\\xfc\\xbc\\xdd\\x00\\x6b\\x55\\xbc\\x2a\\xcf\\xa1\\xc5\\x82\\x53\\x53\\x54\\x3d\\x37\\xb7\\x96\\x93\\xca\\xd5\\x45\\x49\\x90\\x8a\\x2a\\x69\\x72\\x9b\\xf1\\xc9\\x73\\x63\\xa3\\x0d\\x30\\x39\\x6a\\x37\\xc1\\x94\\x9d\\xbd\\x59\\x6e\\x6c\\xd4\\x84\\x92\\xa3\\x36\\x03\\x4a\\x39\\xc8\\x78\\xd3\\x95\\x1c\\xed\\x2f\\xfb\\x7c\\x71\\x4e\\x56\\x73\\x85\\x15\\xd5\\x80\\x2a\\xf2\\xaa\\xb3\\xd1\\xb9\\x04\\xb0\\x4b\\xaa\\x9e\\xd3\\x55\\x29\\x5f\\xf2\\xb2\\x33\\x96\\xa5\\x4a\\x4d\\x2a\\xe7\\x54\\x39\\xaf\\xa8\\x85\\x0e\\x56\\xa7\\x2d\\x93\\xb3\\x58\\x55\\x3b\\xfd\\x04\\x39\\xfa\\xe6\\x4e\\xad\\x36\\xa7\\xe5\\xd5\\x22\\x1d\\xc0\\x5a\\x47\\xeb\\x57\\xcb\\xe5\\x17\\xe5\\x7c\\xc9\\xcd\\xbe\\x1a\\x6d\\x19\\xe9\\x7a\\x8f\\x2a\\x2f\\x2b\\x2b\\x72\\x6e\\x5e\\x55\\x96\\x59\\x0b\\x3d\\x5a\\x59\\x59\\xcd\\x2d\\x2b\\xe4\\x0e\\xec\\xa6\\xf6\\x55\\x79\\x2e\\x27\\x69\\x9a\\xac\\x1b\\x6d\\xae\\x16\\x2b\\x1d\\x73\\xaa\\x54\\x29\\x14\\x2b\\x0b\\xb9\\x55\\x42\\x52\\x2f\\x4b\\x6a\\xc9\\x95\\x97\\xca\\x65\\xf2\\xa2\\x52\\x9e\\x5c\\xdb\\x31\\x2f\\x4b\\x7a\\x4d\\x95\\x0b\\xec\\x61\\xa4\\x19\\xae\\x46\\x15\\xbd\\x2f\\x5f\\x51\\xc8\\xc7\\xa0\\x1f\\x92\\x5c\\xdb\\x6e\\x7c\\x53\\x69\\x4e\\x2e\\xdb\\xe6\\x6a\\x5a\\xb1\\x22\\x6b\\x1a\\x4f\\x8e\\xd8\\xe8\\xad\\xe5\\x4a\\xc1\\x4e\\x81\\x65\\xa9\\x20\\xb7\\x31\\x48\\x56\\x17\\xe4\\x76\\x06\\x16\\x35\\x4d\\x2e\\x38\\x29\\x4c\\x06\\x62\\x71\\x45\\x2e\\xb0\\x93\\xb4\\x6a\\xb9\\xa8\\xf3\\xf9\\x45\\x49\\xb7\\xe7\\xcb\\xb2\\xa4\\xe6\\xa4\\x72\\x59\\xc8\\x2b\\xcb\\xcb\\x72\\x45\\xb7\\xe5\\x95\\x8a\\x2e\\xe5\\x75\\xad\\xad\\x50\\x24\\x38\\x21\\xa7\\x15\\xab\\x02\\x01\\xab\\x52\\xc1\\x22\\x2f\\x4b\\xc5\\xb2\\x65\\x5e\\x51\\x6b\\xcb\\xce\\xe2\\x72\\x95\\x8c\\x0c\\xf9\\x2a\\xd9\\x79\\x8a\\x95\\x15\\x59\\xd5\\x73\\x79\\xa5\\xac\\xa8\\x1a\\x1d\\x48\\xe5\\xe2\\x8a\\x9c\\x5b\\x94\\xcb\\x55\\x47\\x59\\xc9\\x4b\\xb4\\xf3\\xc8\\x10\\x6c\\x16\\x2a\\xc2\\xb2\\xac\\x69\\x12\\x69\\xee\\xa2\\xa4\\xe7\\xe6\\x6a\\x73\\x73\\x65\\xd9\\xdb\\x02\\x9b\\x73\\xcd\\x5a\\x51\\x72\\x5a\\x71\\xd9\\x52\\x5d\\x54\\x2a\\xb2\\x87\\x3c\\x4e\\x22\\x47\\x57\\x8b\\xf3\\x45\\x72\\x4b\\xa7\\xd1\\xe2\\x1c\\x3d\\xee\\x30\\x4b\\xa4\\xa9\\xed\\x04\\xf9\\xe4\\xd8\\x90\\x76\\x6a\\x55\\x59\\x2a\\x91\\x8f\\x45\\x4e\\x0b\\x68\\x3a\\x99\\xd3\\x35\\x55\\x25\\x13\\xb4\\x2c\\x55\\x0a\\x5a\\x5e\\xaa\\xca\\xfe\\x5d\\xd5\\xe4\\x51\\xaa\\x54\\xd4\\xd9\\xc9\\x55\\xb5\\xb8\\x4c\\x90\\xcf\\x9e\\x93\\xcd\\x6a\\xf3\\xe4\\x36\\x6d\\x55\\xaa\\xd2\\xcf\\xa7\\x09\\xba\\x7c\\x55\\xd7\\x96\\x35\\xfb\\x8a\\x52\\xcc\\xd3\\xbe\\x13\\x56\\xaa\\x95\\x5c\\x49\\x5e\\x73\\xd3\\x46\\x94\\x8b\\x95\\x52\\x4e\\x56\\x25\\x4d\\x76\\x35\\xcb\\x65\\x25\\x5f\\x6a\\x29\\x92\\x37\\x68\\x39\\x5b\\x93\\xf5\\x5a\\xd5\\x55\\x55\\x65\\x8d\\x34\\x90\\x8c\\xad\\x72\\xd9\\x6d\\x7c\\x0a\\xf3\\xcb\\x39\\xc8\\x93\\x1a\\x88\\x4a\\xcb\\xab\\xb2\\x5c\\xc9\\x69\\x8b\\x92\\x2a\\x7b\\x08\\x0a\\xc9\\xb5\\xd6\\xf8\\x5a\\x86\\x0a\\xb9\\x64\\x41\\x29\\x56\\x16\\x6c\\xaa\\xa6\\xe5\\xe6\\x65\\xb9\\x80\\xa5\\x42\\x41\\x20\\x53\\x65\\x4e\\xb9\\xda\\x46\\xa7\\x0c\\x45\\x82\\x1d\\x4d\\xb0\\xb1\\x96\\x48\\x6a\\x7e\\xb1\\xb8\\x22\\xdb\\xe7\\xa4\\x7c\\x49\\xab\\x4a\\x79\\xd9\\x32\\x47\\xde\\xc4\\x42\\x07\\x18\\xfd\\x28\\xa4\\xc1\\x79\\xa5\\xba\\xd6\\xde\\x28\\xd4\\x74\\xa7\\x09\\x57\\x25\\x4d\\x97\\xad\\x79\\x55\\x96\\x74\\xd9\\x5a\\x50\\xa5\\x79\\x5d\\x6b\\x9f\\x2f\\x96\\x75\\x59\\xa5\\x13\\x85\\x9f\\x2f\\x4b\\x0b\\x82\\x81\\x5e\\x84\\x05\\x59\\x23\\xb3\\xc6\\x52\\xac\\xcc\\x29\\x57\\x79\\xd2\\x2f\\x3c\\x79\\xe5\\x36\\x32\\xe9\\x6a\\x15\\x55\\x96\\x0a\\xbc\\x2a\\x17\\x14\\x2b\\x9b\\xca\\x4e\\x63\\x46\\xb3\\x06\\xfb\\x77\\x95\\xcc\\xe6\\x5b\\x08\\x6e\\x5a\\xa3\\xb8\\x8a\\x60\\xba\\x32\\xc1\\xcc\\x8a\\xaa\\xf3\\x9a\\xb4\\x22\\xb7\\x69\\x72\\x59\\xce\\xeb\\xa4\\x9a\\xd7\\xe4\\x4a\\x81\\x27\\x18\\xb1\\x9d\\x7c\\x5a\\xb2\\xf0\\x2d\\x4b\\x3a\\x5f\\xab\\x14\\x14\\xe7\\xbc\\x52\\xd1\\x29\\x66\\x2d\\x2b\\x52\\xc1\\x49\\x9f\\xa1\\x2b\\x39\\xda\\x44\\x7b\\xad\\x62\\x76\\x0f\\x41\\x31\\xb9\\x55\\x59\\x2e\\x09\\x64\\x23\\x57\\x0a\\x8e\\x82\\x5c\\x96\\x75\\x39\\xa7\\xad\\xca\\x32\\x99\\x2a\\xab\\x64\\x40\\x29\\x6a\\x51\\x5f\\x73\\x48\\xf9\\xbc\\xac\\x69\\x39\\xa9\\x2c\\xa9\\xcb\\xce\\xd6\\x82\\xd6\\x6e\\x94\\xc8\\x2a\\x6d\\xac\\xde\\x92\\xba\\xec\\x67\\xc8\\xb9\\x22\\x2f\\x2b\\x05\\x39\\x57\\xac\\x10\\xb4\\xb3\\x22\\x7b\\x77\\xd5\\xb2\\x3a\\xe7\\x9c\\xa4\\xeb\\x32\\x59\\x62\\xc9\\xaa\\xef\\x37\\x4b\\xf9\\x45\\x49\\x5d\\x20\\x33\\x66\\xbe\\x56\\x2e\\x3b\\xcc\\x5a\\x52\\x68\\x37\\x0b\\x9a\\x5e\\x70\\x9b\\x70\\xad\\x52\\xaa\\x28\\xab\\x15\\xfb\\x5c\\xb9\\x26\\xeb\\x8a\\xa2\\x2f\\x7a\\x1b\\x10\\x19\\x8b\\x15\\x39\\xaf\\xcb\\x85\\x8e\\x66\\x5d\\xa1\\xa8\\x91\\x89\\x5b\\x68\\x39\\x4d\\x93\\x69\\xc7\\x54\\x16\\xdc\\x73\\x54\\xfe\\x53\\xa1\\xef\\x58\\xd3\\x95\\xd6\\x32\\x21\\x1e\\x5c\\x2d\\xe5\\xb2\\xb2\\xea\\x69\\x29\\x2e\\xcb\\x85\\x62\\x6d\\xb9\\xad\\x20\\xe9\\x52\\xae\\x46\\xf0\\x89\\xab\\x20\\xaf\\xc8\\x65\\xa5\\x4a\\x96\\x0a\\xa5\\x20\\x0b\\x05\\x79\\xa5\\x98\\x97\\x35\\x4c\\xd6\\x98\\x85\\xaa\\x96\\x9b\\x2f\\x5e\\x95\\x0b\\x4e\\x02\\x11\\xa2\\x81\\x96\\x04\\x52\\x52\\xe6\\xe7\\x3d\\x0d\\xf4\\x64\\x36\\xb6\\xa3\\x51\\xd3\\x68\\x6b\\xdb\\x82\\x2a\\x55\\x17\\x8b\\xf9\\x9c\\xfc\\x84\\xa3\\x22\\xeb\\xab\\x8a\\x5a\\xca\\xe5\\xe5\\x72\\xb9\\x51\\x20\\x98\\x09\\x57\\xe6\\xf3\\xf6\\x55\\xa9\\x5c\\xae\\x4a\\x55\\x59\\x15\\x56\\x8b\\x85\\x05\\x59\\xd7\\xfc\\xc6\\xdc\\x23\\x53\\xa3\\x89\\x48\\x7c\\xad\\xb5\\x26\\x1e\\xd9\\x55\\xa9\\x2a\\x3a\\x6d\\x84\\xdb\\xa8\\x34\\xcb\\x6d\\x5a\\x21\\xa7\\xe9\\x8a\\x2a\\x2d\\xc8\\x9d\\x9a\\xac\\xeb\\xc5\\xca\\x82\\x96\\xd3\\xd6\\x34\\x5d\\x5e\\xce\\x15\\xa4\\xb5\\x82\\x2a\\x4b\\xcb\\x7e\\xad\\xb8\\x50\\x91\\xca\\xb4\\x89\\xb5\\xb2\\xa4\\xe6\\x26\\x72\\x73\\x92\\x2a\\xee\\xad\\x6d\\x7c\\xb1\\x5c\\x45\\x61\\x94\\x54\\x45\\xd6\\xd9\\xb9\\x81\\xbd\\xe7\\x32\\x84\\xec\\xbb\\xa5\\xba\\x56\\x2e\\x7b\\xf7\\x56\\x92\\x5e\\x35\\xea\\x28\\xc6\\xde\\x75\\xc7\\x66\\x0d\\x7d\\x4f\\x77\\x6b\\xb5\\x32\\x3f\\x2f\\x18\\xef\\x86\\x6b\\xda\\x9c\\x9d\\x56\\x52\\xec\\x48\\x21\\x5d\\xd6\\x17\\x65\\x82\\x1d\\xdb\\x25\\x5d\\x97\\xf2\\x8b\\x84\\x58\\x93\\x1d\\x06\\xbc\\xac\\x54\\xe4\\xb5\\xb6\\x39\\x45\\x2d\\xc8\\x74\\x75\\x73\\x1a\\xe0\\x9c\\xa2\\xeb\\xca\\xb2\\xc3\\x28\\x31\\xdc\\x64\\x16\\xc8\\xd2\\xe5\\x31\\x0a\\x8b\\x8a\\x5a\\xbc\\x46\\xd0\\x69\\xd9\\x3c\\x5c\\xac\\x54\\x64\\xb5\\xdd\\x28\\x94\\xe5\\x79\\xdd\\x3c\\xa0\\xd4\\x74\\xb9\\x71\\x13\\x3a\\x2a\\xcd\\x82\\xa6\\xaf\\x95\\x65\\xb3\\x11\\xba\\x52\\x75\\x1b\\x20\\x59\\x29\\x8b\\x79\\xa9\\xec\\x65\\xe8\\x23\\x27\\x95\\x8b\\x0b\\x95\\x1c\\xa1\\x14\\x65\\xd5\\xb7\\xab\\x6e\\xa9\\xa6\\xe9\\xc5\\xf9\\x35\\xcf\\xae\\x4a\\xf2\\xf0\\x8e\\x5d\\x35\\xf4\\xa9\\xed\\x46\\xd5\\x9c\\x52\\x2e\\x38\\x0c\\x98\\xbe\\xa0\\x79\\x35\\x7d\\x41\\x4a\\xd2\\x76\\xec\\xaa\\x21\\x6b\\x89\\xbe\\xfb\\x24\\x82\\xdc\\x02\\x46\\x4d\\xb1\\x52\\x20\\x08\\xba\\x20\\x13\\xe4\\xac\\xc9\\x7b\\xaa\\x8b\\x15\\x56\\xed\\x34\\xab\\x75\\xa9\\x5c\\xcc\\x9b\\x6f\\x46\\x50\\x6b\\x8e\\xac\\x06\\xc5\\xca\\x82\\xaf\\x51\\xa7\\x91\\x05\\xbe\\x4c\\xb0\\x5e\\x61\\x57\\x65\\xa5\\xb6\\x3c\\x27\\xab\\x72\\xa3\\xf5\\x55\\xa9\\x58\\xd1\\xcd\\xc2\\x13\\x35\\x45\\x97\\xcd\\x77\\xd4\\x8a\\xd7\\x64\\xf3\\x52\\x4d\\x57\\x8b\\x25\\x59\\x5f\\x54\\x95\\xda\\xc2\\x62\\xb7\\x51\\x49\\x5e\\xa0\\x50\\x54\\x65\\x4a\\x78\\xe5\\x28\\x11\\xa6\\xde\\xfe\\x18\\xf9\\x32\\xb9\\xb2\\xf9\\xfa\\xb5\\x4a\\x41\\x56\\x49\\xab\\x0b\\xf6\\xf9\\x5a\\x85\\x9e\\xa1\\x39\\x8a\\x15\\x8d\\xd2\\x36\\x8b\\x92\\xaa\\xbb\\xcc\\x02\\xa3\\x96\\x3c\\x46\\xb1\\xa0\\x12\\x6a\\x87\\x8c\\x40\\xb7\\x51\\x23\\x13\\x82\\x31\\xaf\\x54\\xcc\\x33\\x8a\\x95\\x95\\x22\\x9b\\xb3\\xed\\x46\\x0d\\x59\\xb7\\xcc\\x7b\\x57\\x17\\x15\\x5d\\x69\\xa3\\xc4\\x5b\\x4e\\x5f\\xab\\xca\\x0e\\x8a\\xac\\x8d\\x87\\xd8\\x69\\x41\\x2e\\x14\\x75\\xa1\\x5a\\x9b\\x2b\\x17\\xb5\\x45\\x3b\\x5d\\x61\\xc9\\xb4\\x71\\xef\\x7a\\xfd\\x9c\\xe6\\x37\\x07\\x97\\x31\\x34\\xd8\\x80\\xdf\\x5b\\xcb\\xc6\\x5a\\xc7\\x9e\\x5a\\xc2\\x5e\\xac\\xaa\\x52\\x95\\xf6\\x90\\x9d\\x4e\\x21\\x4a\\xb2\\x15\\x54\\x69\\x21\\xb7\\x28\\x55\\x0a\\xe5\\xc6\\x67\\xd6\\x16\\xa5\\xaa\\xac\\xd9\\x09\\x66\\x2e\\xd3\\x21\\x4f\\xfa\\x4c\\x52\\x73\\x5a\\x5e\\x2a\\xcb\\x6d\\xda\\x22\\x21\\x47\\xc8\\x5d\\x8c\\x65\\xb2\\x28\\x97\\x0b\\x9a\\x9b\\xdc\\x51\\x2f\\x5e\\x33\\xc9\\x3f\\x0b\\xe5\\x63\\xda\\xd8\\x8c\\x25\\xef\\x69\\xc9\\x97\\x95\\x5a\\xc1\\x41\\xb7\\xc6\\xfa\\xdc\\xc6\\x0a\\x05\\xa5\\x22\\xbb\\x4c\\x90\\xad\\xb0\\x76\\x56\\x24\\xed\\x63\\x10\\xa5\\xd5\\x8d\\x8b\\x6b\\x55\\xba\\x08\\x93\\xef\\xd1\\xb8\\xa0\\x9d\\x96\\xd8\\x11\\xeb\\xbc\\x52\\x2e\\xc8\\x6a\\x3b\\xdb\\xe5\\x94\\xaa\\x5c\\x71\\x1a\\x30\\xa5\\x8a\\x0a\\x1e\\x46\\x89\\x10\\x66\\x24\\xc7\\x0e\\xf0\\x79\\x49\\xd3\\x5d\\x64\\xd3\\xc4\\x94\\xb6\\xbc\\xb2\\x5c\\x25\\xd3\\xbf\\xbd\\x20\\x6b\\x25\\x42\\x5a\\x2d\\x4b\\x79\\xb7\\x09\\x13\\x36\\x58\\x59\\xd5\\xdc\\xcd\\xd5\\x68\\x4e\\x91\\xd4\\x02\\x5f\\x50\\xf2\\x25\\x81\\xb0\\xc7\\x55\\xa9\\x40\\x18\\xe4\\x82\\x26\\xeb\\xed\\xc6\\x3e\\x47\\xd8\\xe2\\x92\\xbc\\x46\\xcf\\xf4\\x9a\\x00\\xe3\\x4c\\xe9\\x9b\\xec\\xad\\x23\\xc8\\xc0\\xb7\\xa7\\x8e\\xa2\\x03\\xcf\\x9e\\xca\\x5a\\xb5\\xa3\\x51\\xd3\\xa0\\xd1\\x9a\\x27\\xe5\\xa5\\xaa\\x46\\x70\\xab\\xb3\\x51\\xb3\\x58\\x2c\\xc8\\xee\\x46\\x49\\x95\\xf5\\x9a\\x5a\\x71\\x34\\xca\\xba\\x34\\xe7\\x6a\\x14\\x28\\x79\\x6b\\x2d\\x4b\\x55\\x5d\\xa9\\x7a\\xd8\\x2e\\x97\\x5f\\x54\\x95\\x65\\x99\\xb0\\xed\\x6d\\x46\\xcd\\xb2\\x94\\x77\\x19\\xa0\\xd1\\x35\\xd6\\x65\\x79\\x59\\x51\\xd7\\x2c\\xcb\\x4a\\x4d\\x93\\x9d\\x94\\xc8\\xcd\\x49\\x95\\x82\\xaa\\x14\\x0b\\x0e\\x56\\x2a\\xd2\\x9d\\xbd\\x41\\xff\\x3a\\x9b\\x94\\xb0\\x32\\x3f\\x6f\\x55\\x29\\xf2\\x15\\xb4\\xbc\\x44\\xb0\\xb3\\x4d\\x93\\xf3\\x35\\x42\\x39\\xd9\\xb4\\xe2\\x72\\x2e\\x2f\\xa9\\x85\\x36\\xca\\x16\\xd2\\x6b\\x04\\x83\\xfc\\x6f\\xb0\\x01\\x0b\\xaa\\x52\\xab\\x5a\\x29\\x2b\\xa1\\xbb\\xd8\\xce\\x7c\\x78\\x9b\\x51\\x5c\\x96\\xf2\\xbc\\xae\\xac\\x69\\x48\\x5f\\xb1\\xac\\x4a\\x7a\\x7e\\xb1\\x8d\\x91\\x12\\xb9\\xc5\\xda\\x5c\\x7b\\x55\\x59\\xa5\\xcb\\x42\\xb5\\xa6\\x3b\\x0d\\x0a\\x23\\xa7\\x90\\x25\\xc9\\x4d\\xb9\\x36\\xf2\\x81\\x19\\x8f\\xe8\\x34\\xd8\\x5d\\x3a\\xc7\\x35\\xab\\x54\\x20\\x58\\xdd\\x2e\\x69\\x5a\\x51\\xd3\\xa5\\x8a\\xee\\x6e\\x40\\x06\\x16\\x90\\x6a\\x85\\xa2\\x42\\xf9\\x5d\\xe7\\x5c\\xb9\\xa6\\xd2\\x99\\x40\\x56\\xd2\\x76\\x5a\\x62\\x13\\xcd\\x46\\x61\\xb2\\x42\\x32\\xa0\\xe2\\x68\\x21\\x88\\xc6\\x5a\\x0b\\xe3\\xad\\x85\\x64\\x6b\\x61\\xa2\\xb5\\x90\\x6a\\x2d\\x4c\\xb6\\x16\\xd2\\x8e\\x39\\x55\\x29\\xc9\\x95\\x5c\\x71\\x59\\x5a\\x90\\x2d\\x73\\x6a\\x4d\\x5b\\xb4\\xe6\\xa5\\x65\\x59\\x95\\xda\\xd8\\x2e\\x27\\x95\\x75\\x87\\x01\\xce\\xab\\x4a\\x45\\x6f\\x37\\x0a\\xaa\\x2c\\xa9\\x0d\\x58\\x29\\x97\\xbd\\x0c\\xef\\xe4\\xe6\\x95\\x7c\\x4d\\x23\\x88\\x5b\\xa9\\x2c\\x78\\x76\\xd5\\xad\\xca\\x52\\xa9\\x3d\\xaf\\x94\\xcb\\x0c\\x3b\\x6b\\x6d\\x6c\\x3d\\x2a\\xcb\\x15\\xcd\\x46\\xc1\\xe2\\x35\\x99\\x70\\xaa\\x55\\x49\\x95\\x29\\xef\\xa0\\x2a\\xe5\\x5c\\x55\\x29\\x56\\xf4\\xe0\\xae\\x52\\xae\\x50\\xab\\x96\\x8b\\x79\\x49\\x97\\xed\\x79\\x55\\xa9\\xe6\\xc6\\x26\\x73\\x77\\xd8\\x28\\x94\\xcc\\x8d\\xf3\\x04\\x60\\xa5\\x54\\x6e\\x82\\x01\\xe9\\x5c\\x8a\\x01\\x85\\x62\\x85\\x5d\\x32\\xaf\\xca\\xb2\\x8b\\x42\\x0d\\x3a\\xcd\\x49\\x8b\\x8a\\x5a\\x5c\\x28\\x56\\xa4\\x32\\x2b\\x99\\xe4\\x5a\\x3b\\x2d\\x69\\x4f\\xd4\\x24\\x55\\xb6\\x16\\xe4\\x45\\xe9\\x1a\\x21\\x3c\\x75\\xa9\\x58\\xd6\\x78\\x82\\xba\\x6d\\x84\\x51\\xd6\\x6a\\xaa\\xec\\x32\\x81\\x5c\\x45\\x5e\\xc8\\x8d\\xed\\x2e\\x8e\\xbb\\x1b\\xc5\\x6a\\xb9\\xa6\\xe5\\xc6\\xf6\\x94\\xc7\\x9d\\x8d\\xf2\\x35\\x59\\x55\\x6c\\x06\\x8b\\x34\\x66\\x02\\xe3\\x26\\x90\\xb4\\x32\\xc0\\x2c\\x4f\\x98\\x40\\xca\\x04\\x26\\x4d\\x20\\x6d\\x02\\x53\\x26\\x70\\x87\\xd3\\x04\\xe8\\x53\\x5d\\x46\\x69\\x8e\\xcc\\x8f\\xdc\\xaa\\xd7\\x28\\xb6\\x7e\\x38\\x87\\x51\\x57\\x50\\xa5\\x65\\xc9\\xbc\\x7a\\x5e\\x95\\x96\\x65\\xad\\xcd\\x28\\x2d\\x16\\x54\\x93\\xa3\\xab\\x10\\x3e\\xde\\x80\\xf5\\x62\\x99\\x2c\\x27\\xc5\\x79\\xdd\\x7c\\xcc\\x4a\\xb1\\xa2\\x93\\x91\\x36\\x5f\\x96\\x54\\xb9\\x6d\\xbe\\x2c\\x69\\x8b\\x94\\x25\\xb0\\x33\\x50\\x99\\x9f\\xb7\\x19\\x50\\x85\\x9f\\x2f\\x17\\xab\\xb6\\x05\\x55\\x2a\\x14\\xc9\\xfa\\xb1\\xa0\\x4a\\xc5\\x8a\\x6d\\x41\\x2d\\xd2\\x75\\x41\\x60\\x40\\x45\\x58\\x2c\\xd0\\xa9\\x62\\xa5\\xfb\\x4a\\x1b\\xd9\\xb1\\xb1\\x67\\x23\\x20\\x19\\x72\\x04\\x0d\\x97\\x8b\\x95\\x05\\x0b\\x1d\\xe3\\x1d\\x74\\x9b\\x93\\xb4\\x2a\\x61\\xfb\\x54\\xb2\\x5e\\xe1\\xa2\\xa6\\xd8\\x1b\\xe3\\xc0\\x56\\x96\\xa5\\x52\\x4e\\x2a\\x14\\xda\\x29\\xc0\\x38\\x4a\\x9e\\x0c\\x52\\xa1\\xac\\x28\\x25\\x2d\\x97\\xb4\\xd0\\xbd\\x51\\x9a\\x30\\xf6\\x29\\x63\\x3f\\x69\\x67\\x7b\\x82\\xd9\\x18\\xa4\\xaf\\x2a\\x96\\xb2\\x52\\xab\\xca\\x9e\\x65\\xa5\\xa2\\x30\\xd4\\x69\\xe0\\x0b\\x17\\x95\\x89\\xe6\\xe8\\x7a\\x44\\x08\\x7e\\x26\\xdb\\xaa\\x28\\xba\\x6c\\xad\\x50\\xd9\\x91\\x93\\xed\\x72\\x55\\x59\\xa9\\x96\\x65\\x77\\x45\\x5a\\x29\\x2e\\x90\\xa5\\x6b\\x4e\\x9e\\x57\\xe8\\x51\\xa3\\x4c\\x38\\x4f\\xa1\\x2a\\x95\\x65\\x5d\\x97\\x6d\\x55\\xa9\\xa2\\x90\\x4f\\xe5\\x31\\x81\\xdc\\x7c\\x51\\x5b\\xcc\\xc9\\x6b\\xb2\\xb7\\x51\\xd3\\xa4\\x81\\x9b\\x67\\x35\\x48\\xd7\\x46\\xcd\\x6a\\x91\\x70\\x95\\x95\\x85\\xb2\\x6c\\xa1\\x0d\\x6e\\xa7\\xdb\\x1c\\x15\\x24\\x3b\\x18\\xcc\\x30\\x80\\x93\\x15\\x0c\\x01\\xa5\\xab\\x5a\\xcc\\xd3\\x66\\x4b\\x5a\\xae\\x5a\\x98\\xb7\\x99\\xd3\\xc8\\x65\\xb0\\xe7\\xaa\\x5c\\x20\\xad\\xf1\\x53\\x46\\x47\\xce\\xdd\\x31\\x9a\\x2b\\xc8\\x0b\\xaa\\x2c\\x6b\\xb9\\x7c\\x7e\\xb5\\xdd\\xa8\\xa5\\x64\\xb8\\x01\\x53\\x84\\x65\\xd7\\xca\\xc5\\x82\\xac\\x2d\\x2a\\xab\\x6d\\x1a\\xb9\\xdd\\xc2\\xa2\\x2e\\x57\\x2c\\x94\\x0e\\x77\\x6a\\xab\\x45\\x3d\\xbf\\x68\\x34\\xc6\\x61\\x94\\x98\\x38\\x4f\\x97\\x16\\x72\\xf3\\x52\\x5e\\x66\\x02\\x9b\\x9a\\x2a\\xdb\\x09\\x63\\x5d\\x96\\xaa\\x9a\\x6c\\xa3\\x82\\xf0\\xdc\\xd8\\xa8\\xc0\\x80\\xa4\\x85\\xee\\xed\\xac\\x44\\xc6\\xa2\\xae\\x54\\xa8\\x58\\xdb\\xae\\xab\\x52\\x45\\x23\\xf4\\x11\\xaf\\xd7\\x2a\\x72\\xdb\\x4a\\x51\\x5e\\x25\\x14\\xdc\\xfc\\x9a\\xc3\\x04\\xab\\x52\\x5e\\x17\\x56\\xe7\\xd8\\x68\\x5e\\x9d\\xcb\\x51\\x62\\x65\\xcd\\xbd\\x3a\\x47\\xc8\\x68\\xa9\\x52\\x90\\x35\\x32\\xa7\\x6c\\xab\\x73\\x39\\xad\\x56\\xa9\\xac\\xf9\\x5a\\x10\\x21\\x15\\x80\\x2f\\x4b\\x6a\\xa9\\x93\\x75\\x23\\xa1\\x80\\x73\\xa6\\x60\\x22\\xaf\\xd7\\xa4\\x72\\xf0\\xd6\\x03\\x65\\x49\\x5d\\x90\\x6f\\x53\\xaf\\x2d\\x4b\\xe5\\xb2\\x6d\\xa5\\xb8\\x50\\x21\\x83\\xc1\\x49\\x9e\\xaf\\x16\\x8d\\xa7\\x33\\x3c\\xc6\\x3a\\xd5\\x49\\x16\\x5a\\x2a\\xff\\x27\\x7d\\xd6\\x4e\\x05\\x0d\\x6c\\x58\\x3a\\xd8\\xa8\\x64\\x33\\xd6\\xf8\\xcc\\xac\\xd0\\x36\\x57\\x53\\x35\\x9d\\x32\\xde\\xb6\\x39\\x59\\xae\\x2c\\xca\\xaa\\xdc\\xd6\\x20\\xb7\\x35\\x77\\x13\\xcc\\xcd\\x15\\x4b\\xb2\\xab\\xb5\\x5c\\xd3\\x5a\\x8b\\x79\\x49\\xdd\\x75\\xb6\\x22\\xe9\\x9e\\x96\\xb2\\x56\\x9b\\x5b\\x95\\xd6\\x3a\\x5a\\x6a\\x54\\xa9\\x58\\xde\\x53\\x45\\xbf\\x49\\x51\\x6f\\xbd\\xcf\\xaa\\x54\\x2e\\x59\\xe7\\x29\\xd5\\x6a\\x59\\x54\\x74\\xb9\\x6c\\x2d\\x4b\\x6b\\xb2\\xaa\\x39\\xd8\\x8e\\xf1\\x4c\\x4e\\xc2\\xf5\\x97\\x73\\x52\\x51\\x25\\x03\\xd3\\x6e\\x94\\xf4\\x65\\x97\\x01\\xe5\\xf5\\xe2\\x0a\\xf9\\xe6\\xac\\x38\\x27\\xa9\\x6d\\x0c\\xca\\x4b\\xf3\\xb2\\xcb\\x04\\xd5\\xdc\\xaa\\xa4\\x2d\\x06\\x8d\\xa2\\x52\\x59\\x91\\x2b\\x45\\xb9\\x92\\x97\\x29\\xc7\\x2e\\xb7\\xb3\\xfa\\x82\\x4a\\xc8\\x1a\\x06\\xcf\\x93\\x05\\x4e\\xd3\\x3d\\xac\\xb4\\x20\\x91\\x35\\x92\\xce\\x7a\\xaf\\x51\\xa3\\x2a\\x79\\x26\\x84\\x51\\x54\\xf3\\x31\\x8b\\x8a\\x56\\x25\\x4c\\x57\\xbb\\x59\\xd4\\xe5\\xb2\\x9f\\xc1\\x65\\xa9\\x56\\x29\\x90\\xd3\\x65\\x95\\x90\\x27\\xc6\\x43\\x8c\\x09\\x68\\x34\\x98\\x8c\\x04\\x87\\x01\\x92\\x4f\\xaa\\x19\\xf7\\x51\\xe6\\xe7\\x65\\xb3\\x17\\xaa\\x92\\x5a\\x2a\\x56\\x16\\x8c\\x07\\x56\\x17\\x25\\x75\\x59\\xca\\xaf\\xb5\\x9b\\x45\\xa5\\x62\\xbe\\x4b\\xb5\\x78\\xed\\x9a\\x64\\xdc\\xb8\\x5a\\x96\\xd6\\x8c\\x17\\xa9\\x2a\\x9a\\x4e\\x6e\\x58\\xcc\\xcb\\x6e\\xa3\\x46\\x2d\\x56\\x74\\x6d\\x51\\xa9\\x1a\\x8f\\x2e\\x14\\xa9\\x1e\\x8a\\x15\\x34\\xd9\\x7c\\x37\\x6d\\xb1\\x58\\xad\\x16\\x2b\\x0b\\xc6\\x2d\\x75\\xe9\\x6a\\xb1\\xad\\x2a\\xab\\x9a\\x52\\xc9\\x55\\x8b\\x15\\xbc\\x2c\\x55\\xdb\\x97\\xd7\\x72\\xa6\\x80\\xa6\\xcd\\x40\\x75\\x45\\xa5\\x62\\xab\\x16\\x2b\\xb9\\x82\\xaa\\x54\\x2d\\xd5\\xb2\\x94\\x97\\xdb\\x55\\x8a\\x21\\x64\\x32\\x0f\\xdd\\xaa\\xac\\xe9\\x52\\x4d\\x25\\xf4\\xd6\\xb2\\x5c\\xa9\\xd9\\x35\\x49\\x97\\xcb\\xe5\\xa2\\x2e\\xfb\\x68\\xb7\\xd2\\x1e\\xc9\\xb1\\xf1\\xa2\\xa8\\x6b\\x82\\x2e\\xab\\x64\\x55\\x11\\x74\\x55\\x22\\x6f\\xd0\\x3a\\x40\\xd5\\x5a\\x85\\xaa\\x32\\xcc\\x06\\x38\\xc9\\x3a\\xdf\\x28\\x09\\x94\\x21\\x5a\\x96\\x3d\\xcd\\x16\\x1b\\x4c\\x8d\\xe3\\x9a\\xa2\\x2c\\xe7\\x94\\x1a\\x21\\x30\\xab\\x6d\\xcd\\xf6\\xb4\\xc9\\x2b\\xe6\\x07\\x27\\xe8\\x4b\\x96\\x75\\xd2\\x60\\x2b\\x1b\\xe8\\x16\\x82\\xcf\\x2a\\xbc\\xae\\x4a\\xcb\\x5d\\x0c\\xd3\\xc8\\x6a\\x6e\\xb5\\xa8\\x2f\\x16\\x2b\\x39\\xc9\\xbc\\x8c\\x97\\xaa\\x55\\xad\\x8d\\x11\\xfc\\x84\\xc8\\x77\\x1b\\x8c\\x03\\x25\\x6c\\x94\\xd5\\x4a\\x60\\x4f\\xd9\\x68\\x90\\xb3\\xa5\\xba\\x56\\x35\\x4a\\x86\\xb0\\xd5\\x9a\\x97\\x2a\\x79\\xb9\\x6c\\xa1\\xca\\x12\\x47\\x7e\\x51\\x5e\\x51\\x15\\x26\\x83\\x70\\x9a\\x05\\x8a\\x7a\\x2d\\x54\\x57\\xd8\\x2e\\x5f\\xad\\x12\\x22\\xa1\\x2c\\x6b\\x9a\\x09\\x2f\\x2b\\x64\\x19\\xaf\\x95\\xcb\\x4c\\x76\\xe5\\x6e\\x82\\x39\\xf9\\x6a\\x51\\xe7\\xc9\\x57\\x68\\x23\\x27\\xb1\\x15\\xc7\\x4e\\x41\\xb2\\xd0\\x08\\xaa\\x3c\\xaf\\xca\\xda\\x62\\x7b\\xad\\x42\\x78\\x30\\x76\\x53\\x03\\x26\\x27\\x39\\x4c\\xce\\x86\\xb4\\x33\\xa8\\xd5\\xe6\\x1a\\x5f\\xad\\x85\\x39\\xea\\xbc\\x4d\\x3d\\x6d\\xb0\\xab\\xc9\\x54\\x91\\xeb\\xdb\\xe6\\x8b\\x04\\x6f\\x55\\xa5\\x05\\xd9\\x5e\\x96\\x0c\\x08\\x4b\\x85\\x39\\x77\\x53\\x5a\\x49\\x29\\x73\\x7b\\xa1\\xa8\\xe5\\xa9\\x50\\xb4\\xa3\\xa0\\x50\\x09\\x62\\xa1\\xa8\\xe9\\x35\\x75\\x8e\\x90\\xc1\\xae\\xdd\\x55\\x76\\x26\\x17\\x90\\x75\\xc9\\x2d\\xaf\\x50\\x4d\\xe0\\x8a\\x54\\x2c\\x13\\xe6\\xa2\\x8d\\x95\\xe7\\x6a\\xda\\x9a\\x01\\x92\\x25\\xdd\\x65\\x32\\xa1\\x55\\x39\\x5f\\x94\\xca\\x78\\x79\\x59\\xe3\\xc9\\x9b\\xba\\x4c\\xc9\\x22\\x61\\xd1\\xe4\\x42\\x90\\x31\\x47\\x2d\\x62\\x54\\xc6\\xd3\\x30\\x3d\\x81\\xf9\\xe5\\xe4\\x82\\xc1\\x52\\x15\\x2b\\x39\\x5d\\x2a\\x97\\x0c\\x96\\x8a\\xdd\\xc2\\x28\\x30\\xc1\\xbf\\x51\\xa0\\x9a\\xd1\\x82\\xa0\\x15\\x28\\xef\\xe4\\x32\\x99\\x28\\x26\\x24\\xc6\\xda\\xb2\\xd6\\xa6\\x2d\\x6b\\xb9\\x79\\xa9\\x58\\x96\\x0b\\xbc\\xb6\\x56\\xc9\\x3b\\xc9\\xa6\\x21\\x29\\x75\\xd0\\x52\\x55\\x55\\xe6\\xca\\xf2\\xb2\\xd3\\x10\\x42\\xd6\\xaa\\x05\\x49\\x97\\x1d\\xba\\x54\\xa5\\xc4\\x23\\xc1\\x0a\\x4e\\xb2\\x76\\x52\\xa9\\x8b\\x2c\\xad\\xc8\\xf6\\x15\\x82\\x8f\\xe8\\x98\\xa7\\x6c\\x64\\x2e\\xbf\\x28\\xe9\\xb6\\x95\\x2a\\x13\\x7c\\x7a\\xa4\\xa2\\xca\\x84\\x48\\xb2\\xa4\\xe7\\xe6\\xcb\\x92\\xde\\x79\\x4b\\x0d\\xa3\\x3e\\x0a\\xfb\\x77\\x1d\\x28\\x56\\x0a\\xc5\\x95\\x62\\xa1\\x46\\xb0\\x48\\xad\\xa8\\xcb\\xa1\\x5d\\x47\\xcb\\xf2\\x82\\x4a\\xe6\\xa0\\x7c\\x55\\x57\\xa5\\xee\\xdb\\x1e\\xaa\\x28\\xea\\xb2\\x54\\xee\\xb9\\xed\\x31\\x55\\x2e\\xd4\\xf2\\x72\\x61\\xf7\\x3d\\x55\\x39\\x4f\\x0b\\xb7\\xb9\\xa7\\x79\\x88\\xdd\\xd3\\x9b\\x57\\x2a\\xf3\\x45\\x75\\x99\\xc9\\x41\\x98\\xd0\\x4b\\xa0\\xda\\x32\\x7d\\xc5\\xa5\\x54\\x0a\\xf2\\x32\\xe9\\x29\\x4a\\x99\\xb8\\x18\\xee\\x90\\xca\\xac\\x68\\xa1\\x3c\\x27\\x5a\\xcd\\xf3\\xab\\xc5\\xf9\\xa2\\x57\\xae\\x2c\\x92\\xb9\\x59\\xc8\\xc9\\x95\\xbc\\xba\\x46\\x35\\x9c\\xce\\x86\\x3c\\x9a\\x4c\\x57\\x67\\x45\\x69\\x39\\x66\\x57\\x57\\x72\\x8b\\x8a\\x52\\xaa\\x55\\xf7\\x0e\\x5c\\x65\\x7e\\xde\\xb3\\xb7\\xaa\\xe2\\x34\\xf5\\x10\\x54\\xfe\\x6e\\xaf\\x16\\x65\\x26\\x01\\xeb\\x68\\x40\\xa6\\xf2\\xa4\\xe0\\x30\\xf4\\x75\\xb4\\xd6\\xbd\\x5c\\x2b\\xeb\\x45\\xfa\\xbe\\xb4\\xdc\\x46\\xc8\\x31\\x06\\xf2\\x79\\xa9\\x24\\x5b\\x0b\\xca\\xb2\\x54\\xac\\x58\\x28\\xff\\x6d\\xa7\\x5b\\xa6\\xe9\\x37\\xe5\\xec\\xf9\\xa2\\xbe\\xc6\\x2f\\x2b\\x4a\\xc1\\x46\\x36\\xb9\\x39\\xa9\\xe0\\xac\\x28\\x7a\\x71\\xbe\\xc8\\x8e\\x6b\\x1d\\xbb\\x4a\\x8c\\x99\\xd8\\x5d\\xa5\\xcc\\xcf\\xfb\\x76\\xd7\\x30\\xb5\\xc7\\x9e\\x4a\\x36\\xde\\x2d\\x64\\xa2\\x6b\\x6d\\x55\\x49\\xd5\\xd7\\x28\\xd9\\x62\\x65\\x94\\xb4\\x8b\\xed\\x1a\\x4a\\x48\\xf6\\x29\\xcc\\xf5\\x47\\x2a\\x14\\x8c\\x8f\\x63\\x9e\\x60\\xa3\\x0c\\x9a\\x52\\x91\\xf9\\xaa\\x52\\x2e\\x5b\\xa9\\xa4\\x2e\\x6f\\xd5\\xf2\\x8b\\x8a\\x52\\xb6\\x50\\xa9\\x92\\x6d\\x75\\x51\\x22\\xab\\x9e\\x1e\\xd0\\xe4\\x0a\\x99\\x04\\x15\\xda\\xdf\\x9a\\xa4\\x17\\xb5\\xf9\\xa2\\x5c\\xf0\\x34\\xab\\x2b\\x72\\x4d\\x57\\xa5\\xb2\\xb7\\x59\\xd3\\x38\\xab\\xbb\\x59\\xb7\\x42\\x88\\x81\\xd6\\x3b\\x74\\xee\\x39\\xd6\\x38\\x60\\xa7\\xe3\\x21\\x37\\xa7\\x5c\\x0d\\x36\\x20\\xb3\\xe1\\xb9\\xb9\\xb2\\x54\\x29\\x05\\xa8\\xc5\\x42\\x6e\\xae\\xa6\\xeb\\x4a\\x25\\x57\\xab\\xd0\\xd3\\xe4\\x82\\x6f\\x57\\xb5\\x51\\xc9\\x6b\\xba\\xa4\\xda\\xc9\\x26\\xb7\\x28\\x95\\xe7\\xdb\\x29\\xc4\\x84\\xdb\\xed\\xc9\\x42\\x43\\x39\\x61\\xe8\\xac\\x8a\\x73\\x45\\x42\\x1f\\xbb\\xa5\\x7c\\x5e\\xa9\\x11\\x9c\\x27\\x95\\xc9\\xb0\\x0d\\xec\\x29\\x13\\xc2\\xac\\x2c\\xeb\\xed\\x8d\\x6a\\xe5\\xaa\\xcb\\x84\\xd9\\x32\\xe5\\x21\\x8b\\x2d\\xa1\\x1a\\x08\\x4d\\x40\\x50\\x93\\x6e\\xa1\\x7a\\x2f\\x3b\\xdd\\x92\\x4f\\x62\\x40\\x84\\x2c\\x37\\xa0\\x8a\\x60\\x0a\\x94\\xa4\\x4a\\x45\\xa9\\x55\\xf2\\x32\\xe9\\x1d\\x47\\x2b\\x6f\\xd7\\x26\\x69\\x9a\\xac\\x69\\xa4\\x9e\\x80\\xc5\\x85\\x0a\\x01\\x5d\\x4d\\x90\\x20\\x13\\x77\\x4b\\xb1\\x2c\\xe9\\xb2\\xa7\\xa5\\xcc\\x64\\x63\\xde\\x5b\\x6a\\xe4\\x82\\xaf\\xa5\\x8e\\xd5\\xe4\\x8a\\x15\\x3b\\x21\\xff\\x55\\xb9\\x22\\xaf\\x5a\\xc9\\x1a\\x5d\\xab\\xf2\\x84\\xb6\\xb7\\x99\\x04\\xbe\\xdb\\x04\\x8c\\x1e\\x6d\\x9b\\xab\\x2d\\xe4\\x98\\x3a\\xd2\\x32\\x57\\x2b\\x96\\xc9\\x8a\\x9c\\x5f\\x94\\x0b\\xae\\xfc\\xa2\\x54\\x59\\x90\\x73\\x8b\\x45\\x42\\xb7\\xac\\x39\\xd8\\x77\\x35\\x14\\xb4\\x06\\x0b\\xa9\\xca\\x52\\xc1\\xd0\\x82\\x59\\xf2\\x65\\x49\\xd3\\xf8\\xbc\\x52\\x90\\xdb\\xf3\\x2a\\xa5\\x54\\x08\\x72\\xb7\\x17\\x24\\x6d\\x91\\x4a\\xf1\\xac\\x4c\\x11\\xd9\\x4e\\xf8\\x00\\xc3\\x5e\\x02\\x17\\x2a\\x1a\\x5f\\x50\\x2a\\xb2\\xad\\x40\\x45\\x73\\xe5\\xb2\\x85\\xae\\x55\\xed\\x64\\xdd\\xa6\\xca\\xe7\\x6a\\x55\\x90\\xaf\\x56\\xcb\\x8a\\x2a\\xdb\\xe5\\xab\\xba\\x5c\\xd1\\x08\\x11\\x42\\x58\\x29\\xdb\\xbc\\xb4\\x42\\xb0\\x87\\xec\\x36\\x01\\xe3\\x75\\x6c\\xf3\\xb2\\x5c\\x20\\xef\\xed\\x98\\x2f\\x56\\x48\\x77\\xd0\\x85\\x96\\x15\\xa8\\x81\\x48\\x5e\\x76\\x10\\xae\\x9e\\xdc\\x9e\\x9c\\xe6\\x34\\x0b\\x54\\xb2\\x24\\x2c\\xc8\\x3a\\x79\\x2a\\x61\\xf5\\x0b\\x72\\x1b\\xc3\\x1e\\x04\\xe1\\xf1\\x8b\\x72\\xb9\\xea\\x6c\\xc8\\xa3\\x29\\xff\\x6f\\xf4\\x0c\\xbf\\xa8\\x2c\\xcb\\xee\\x45\\xa5\\xa6\\x2e\\x90\\x2e\\xc8\\xc9\\xcb\\x55\\x7d\\xcd\\xd5\\x2c\\x93\\xa5\\xdc\\xb2\\xa8\\xeb\\x55\\x8d\\x2f\\x56\\xe6\\x15\\x07\\xd9\\x34\\xf4\\xc2\\x4c\\xbe\\xb7\\xcb\\xba\\xc1\\x42\\xed\\x31\\x9c\\x74\\xdb\\x98\\xfc\\x65\\xa9\\xb2\\x50\\x93\\x16\\x64\\x2b\\x21\\xba\\xf3\\x8b\\x3c\\x55\\x5a\\x93\\x15\\xcc\\x4e\\xf5\\x77\\x4a\\x55\\xae\\x38\\x18\\x64\\xe8\\xcb\\xcb\\xca\\x9a\\x54\\xd6\\xd7\\x3a\\x9a\\x3a\\x6b\\x6a\\xb1\\x30\\xa7\\x5c\\xb5\\x11\\x4a\\x80\\x8c\\x66\\x37\\xb9\\x8a\\xf4\\xd0\\x9c\\xaa\\xac\\x6a\\xb2\\xda\\x6e\\x96\\x2b\\xf2\\xaa\\x9d\\xc2\\x84\\xfe\\xb3\\x91\\xfe\\x23\\x84\\xa2\\x50\\x95\\xd6\\xc8\\x48\\x73\\x57\\x65\\x75\\xd9\\xe0\\xd9\\x72\\xcb\\xc5\\xbc\\x9f\\x95\\x0d\\xb3\\x88\\xbc\\x54\\x96\\x2b\\x05\\x49\\xf5\\xd0\\x5a\\xaa\\x34\\x35\\x14\\x87\\x41\\x56\\xc3\\x24\\x9c\\xa4\\x13\\x8c\\x25\\xca\\x49\\xeb\\x8b\\x05\\x82\\x5a\\xf4\\xb5\\x36\\x5a\\x5a\\x96\\x0b\\x45\\xc9\\x45\\x41\\x83\\x90\\xd0\\x16\\x58\\x51\\xcb\\x4b\\x15\\xaa\\xbf\\xeb\\x30\\x39\\x7c\\xf2\\x89\\x19\\x28\\x54\\x95\\xf2\\xda\\xb2\\xac\\x76\\x30\\xd9\\x69\\x43\\x61\\x59\\x91\\x57\\x2d\\x94\\x25\\x70\\x3e\\x51\\x23\\x68\\x8b\\x0e\\x73\\xf9\\xff\\xa1\\xec\\x5b\\xc0\\xe4\\x2a\\xaa\\xfc\\x4f\\x55\\xdd\\x7e\\xce\\x74\\x4f\\xf7\\x9d\\x99\\x66\\xfa\\x95\\xee\\x9e\\x0c\\x03\\x22\\xc6\\x88\\x88\\x11\\x23\\x46\\x8c\\x18\\x31\\x22\\xc6\\x88\\x88\\x91\\x64\\x26\\xd3\\x49\\x06\\x26\\x33\\xe3\\x3c\\x42\\xc0\\xa8\\x18\\x11\\x31\\x62\\x8c\\x11\\x11\\x23\\x62\\x16\\x23\\x62\\x8c\\x11\\x11\\x11\\x31\\x22\\x62\\x44\\x8c\\x6c\\x96\\x65\\xdd\\x2c\\x8b\\x31\\x1b\\x59\\x96\\x65\\xd9\\x2c\\xcb\\x62\\x16\\xb3\\x88\\xf0\\xff\\xea\\x57\\xe7\\xd6\\xbd\\xb7\\xbb\\x27\\xf8\\xe7\\xfb\\xc8\\x74\\xd7\\xfb\\x71\\xea\\x3c\\x7e\\xe7\\x54\\xf5\\x44\\xc7\\x87\\xa7\\xeb\\x93\\x10\\x09\\x03\\xa3\\x93\\x97\\xd5\\x27\\x62\\x88\\x62\\x19\\x9f\\x8a\\x4e\\xd4\\x87\\xea\\xf5\\xb5\\x69\\x73\\x28\\x3c\\x8d\\x23\\xa6\\x15\\xe9\\xb1\\x89\\xba\\xa3\\x45\\x74\\x7c\\x52\\x1f\\x91\\xe9\\x91\\x7a\\xd4\\x78\\x6d\\xe3\\x5e\\x5f\\xdd\\xb6\\xd3\\x81\\x71\\x83\\x10\\x6a\\x51\\x70\\x82\\x4d\\x35\\x27\\x72\\x39\\xb7\\xe5\\xfa\\xe9\\x9e\\xae\\x95\\xb2\\x49\\x2b\\xeb\\x23\\x9a\\x41\\x7b\\x05\\x2c\\x62\\x9a\\xb5\\x69\\xf0\\x50\\x8e\\xd6\\x35\\xbf\\xe7\\x14\\x90\\xd3\\xf2\\x81\\xd1\\xa9\\xfa\\xe8\\xe8\\x40\\x4f\\x43\\xf2\\xca\\xb1\\xb5\\xe3\\x63\\xa3\\xf5\\xd1\\xa9\\x96\\x19\\x93\\xc3\\x53\\xf5\\xce\\x86\\x8c\\x35\\x43\\x6b\\x87\\xbb\\x1b\\xd2\\x26\\xa1\\x2a\\xf8\\x83\\x18\\x5b\\x57\\x9f\\xd0\\x9b\\x92\\xb6\\x29\\xd8\\xb1\\xc0\\x57\\xbd\\x19\\x1d\\xf6\\xeb\\x44\\x7d\\xad\\xd6\\x44\\xed\\x77\\x68\\x65\\x8e\\x66\\xbb\\x71\\xfd\\xcf\\xf2\\xa9\\xcb\\xc6\\x3a\\x2c\\x13\\x1e\\x1c\\x98\\xbc\\xb4\\x3e\\x95\\x0a\\x31\\x65\\x8b\\xb0\\x6b\\x3a\\x9e\\x4c\\x4e\\x8e\\xd7\\x47\\x46\\xc0\\x9c\\x22\\x5a\\x4e\\x4c\\x46\\xb0\\xb2\\xb1\\xc9\\xe9\\xc1\\x4b\\xea\\x2b\\xa7\\xdc\\xc9\\xe9\\x71\\x6d\\x9e\\x4e\\x8e\\x4d\\x2c\\x67\\x6e\\x6f\\x02\\x68\\x8c\\x2d\\x80\\x8f\\xfa\\xec\\x75\\xd9\\x4f\\x70\\x58\\xb1\\x40\\x08\\x29\\x99\\x5a\\xff\\x56\\x53\\x03\\x83\\xe9\\xa9\\x81\\xc1\\xe5\\xd3\\xa3\\x06\\xeb\\xa8\\x0f\\xc5\\xa7\\xd6\\xd4\\x07\\xa6\\xea\\x13\\x93\\xc9\\xa9\\x35\\xd3\\x6b\\x07\\xa1\\xf0\\xc7\\xcd\\xc7\\xe9\\xf1\\x34\\x3e\\x4c\\x2e\\x9f\\x36\\xf6\\x90\\x9a\\x1a\\x5b\\x19\\x99\\x1a\\x1b\\x1a\\xb8\\xdc\\x99\\x1a\\x1b\\x19\\x49\\x01\\x85\\x5f\\x6e\\x18\\xed\\xa4\\x01\\x78\\x34\\xf3\\x4f\\x4d\\x4d\\xd4\\x4d\\xac\\x97\\xae\\xe4\\x7f\\xd3\\xda\\x68\\x9b\\xfd\\x36\\x3d\\x9e\\xb0\\x3c\\x3f\\x65\\x3f\\xe9\\x55\\x49\\xad\\xab\\x4f\\x0c\\x6b\\xb1\\xbc\\x7c\\x5a\\x1f\\x6b\\xc0\\x43\\x03\\xab\\xf5\\xb1\\x34\\xa8\\xd1\\xc0\\xc4\\xc4\\xc0\\xe5\\x29\\x83\\x1a\\x0d\\x4c\\x8c\\x4d\\x4f\\xd6\\x47\\xda\\x18\\x43\\x1a\\x99\\x5e\\x3b\\x1a\\xc7\\xe7\\x21\\xaf\\xc8\\x9a\\xfa\\xc0\\x90\\x66\\x29\\x09\\x7c\\xd3\\x8c\\xc7\\x14\\x5e\\x3b\\xa6\\x0f\\x80\\x69\\xf1\\xc3\\xd3\\xc3\\x23\\x9c\\xac\\x2d\\xcb\\x81\\xb5\\xa6\\xf0\\x65\\xf5\\xfa\\xa5\\xc9\\x75\\xc3\\x9e\\x88\\x4e\\xfb\\x1f\\x4d\\x60\\x95\\xd6\\xfe\\x57\\x0f\\xaf\\x9a\\xd2\\x1f\\x3a\\xf0\\x6d\\x6d\\x5d\\xab\\xab\\xda\\x30\\x6f\\xc3\\xf7\\xa9\\x89\\x81\\x75\\xf5\\x11\\x47\\xb3\\xe0\\xae\\xcb\\xc7\\xa6\\xa7\\xa6\\x07\\xeb\\x1c\\x28\\x51\\x1f\\xd2\\x86\\x48\\xa4\\xae\\x77\\x39\\xcd\\xdc\\x88\\x35\\xd6\\x76\\xcd\\xac\\x2d\\x27\\x9c\\xa8\\x43\\x30\\xc4\\x60\\x15\\x0f\\x8f\\xc6\\x3d\\xeb\\xd8\\xd1\\x3c\\x99\\x8d\\x23\\xad\\x46\\xb7\\x19\\xd0\\x06\\x70\\x7c\\x9a\\x3f\\x4f\\x0d\\x5c\\x5a\\xd7\\x23\\x45\\x44\\xdd\\xaa\\xb1\\x09\\xc8\\x02\\xb5\\x7a\\x78\\xd5\\x09\\xc3\\xa3\\x43\\xf5\\xa9\\xfa\\xc4\\xda\\xe1\\x51\\x4d\\x1a\\x56\\xe9\\x69\\x1b\\x5b\\xb5\\x0a\\x4a\\xcf\\xf8\\xf0\\x68\\x4c\\x5b\\xfa\\x63\\xd3\\x53\\x6d\\xab\\x86\\x47\\x57\\xd7\\x27\\xc0\\x81\\x22\\xab\\xf5\\x7c\\xb2\\x68\\x7d\\x70\\x7a\\x64\\xd0\\x1b\\x65\\xae\\x99\\x9b\\x69\\x7a\\xcb\\x9a\\xd0\\xab\\x01\\x38\\xc8\\xe1\\x03\\x4a\\x4c\\x8d\\x4d\\xaf\\x5c\\xa3\\xb9\\x4b\\xd2\\x53\\x7f\\x46\\xea\\x69\\x76\\x59\\x18\\xfb\\x73\\x32\\x09\\x72\\x9d\\xd0\\x54\\xd5\\x36\\x34\\x36\\x3a\\xcd\\x48\\x1d\\x7f\\x06\\x3a\\x97\\x34\\xd6\\xc3\\xd4\\xe5\\x23\\xf5\\x36\\x7c\\xbc\\xac\\xae\\x87\\x94\\x5c\\x3b\\x36\\x35\\x36\\xb1\\xf2\\xf2\\x95\\x23\\xf5\\xd8\\xd8\\xf8\\x00\\x54\\xe5\\xf1\\xfa\\xd4\\x64\\x7a\\x7c\\xa2\\xbe\\x7a\\x54\\x0f\\xe3\\xb2\\xb1\\xb5\\x03\\xa3\\x59\\x13\\x08\\x69\\xce\\x2e\\x38\\x40\\x1a\\xa1\\xa2\\xf5\\xa1\\xe5\\x2b\\xc7\\x26\\x46\\xeb\\x13\\xd1\\x89\\xb1\\xcb\\x86\\x47\\x57\\x03\\xdd\\x84\\x76\\x6b\\x8e\\x50\\x1b\\xbc\\x5c\\x50\\x70\\x26\\xe2\\xe3\\x03\\xa3\\xcb\\xa7\\xc6\\xc6\\x46\\xda\\xea\\xd3\\x13\\x63\\xcb\\x27\\x2f\\x5f\\x3b\\x38\\x36\\xd2\\xb6\\x7a\\xb9\\x3d\\x05\\x5d\\x0c\\xd5\\x86\\x0e\\x7f\\x3b\\x73\\x4e\\x48\\xf5\\x6c\\x88\\x13\\x68\\x92\\x4a\\x73\\xb4\\xd3\\xaa\\xb1\\x89\\xfa\\xba\\xfa\\x44\\x6c\\x60\\xe5\\xf2\\xe9\\xd1\\xe1\\xa9\\x0e\\x06\\xda\\x96\\x4f\\xae\\x99\\x9e\\x9a\\x1a\\xa9\\xa7\\xf4\\xce\\x0c\\x8f\\xae\\x1c\\x99\\x9e\\x1c\\x5e\\x57\\x6f\\x1f\\xac\\x0f\\xe8\\x25\\xc5\\x72\\x76\\x78\\x71\\x90\\xec\\x7f\\x88\\xae\\x1c\\x98\\x1c\\x1e\\x1d\\x4b\\xae\\x5c\\x33\\x3c\\x02\\xc3\\xb5\\x9e\\x36\\x1f\\x57\\x4d\\x0c\\xd7\\x47\\x87\\x46\\x2e\\x4f\\xaf\\x1a\\x9e\\x0a\\x94\\x4f\\xaf\\x9a\\xa8\\xd7\\x97\\x0f\\x4e\\xd4\\x07\\x2e\\x5d\\x35\\x30\\x39\\xd5\\xb6\\x7a\\x6c\\x64\\xd5\\xf2\\x95\\x63\\xd3\\x13\\x93\\xf5\\xd8\\x9a\\x31\\xad\\xa6\\x0d\\xc6\\x2e\\x1d\\x9e\\x5a\\xb9\\xa6\\x3e\\xea\\x8c\\x8f\\x8d\\x8d\\xb4\\xc3\\xe2\\x63\\x08\\x2d\\x39\\xb9\\x76\\xec\\xd2\\x3a\\x5c\\x43\\x29\\xfd\\x51\\xcf\\x5a\\xe7\\x4f\\xaa\\xc9\\xf1\\x01\\x67\\xf5\\xd8\\xc0\\x94\\xb9\\xc5\\xf7\\xd2\\x4b\\x24\\x71\\x6b\\xaa\\x9d\\x88\\x4a\\xfc\\x33\\x0f\\x8a\\x4e\\x22\\x41\\x27\\xab\\x07\\x49\\xe2\\xad\\x0f\\xc9\\x37\\xab\\x92\\x34\\x8b\\x4e\\x25\\x31\\x32\\x30\\x35\\x4a\\x71\\xf3\\x12\\xca\\x4b\\x2f\\x21\\x47\\x8c\\x0c\\xaf\\x1e\\xa0\\x38\\x97\\x13\\xe4\\x20\\x57\\x50\\x9c\\xc4\\x9a\\x17\\x28\\x4f\\xf3\\x68\\x69\\xfc\\xb1\\xf4\\x91\\x13\\xb6\\x97\\xb6\\x54\\x6e\\x7d\\xc5\\xe1\\x57\\x8e\\xbe\\x6a\\xf1\\xab\\x6f\\x7f\\xcd\\xe8\\x1b\\x36\\xbf\\x69\\xee\\x82\\xe4\\x82\\x9d\\xe7\\xde\\xfd\\xce\\x9b\\xce\\x77\\x2f\\xbe\\x68\\xf0\\xb4\\xc1\\x1d\\xab\\xb6\\xae\\xd9\\xb4\\xe6\\x2e\\xdd\\x86\\x7c\\x8c\\xda\\x28\\x8b\\x37\\x0a\\x4b\\x54\\xa3\\x34\\xd5\\x28\\x47\\x25\\x2a\\xd2\\x22\\xda\\x4a\\xfb\\x45\\x5c\\x2c\\x10\\xeb\\xc5\\x6e\\xf1\\xb8\\xcc\\xc9\\x85\\x72\\x42\\xde\\x24\\x1f\\x90\\xcf\\xa8\\x1e\\x75\\x96\\x1a\\x54\\x57\\xab\\x9d\\xea\\x41\\x75\\xc4\\x69\\x77\\x4e\\x75\\x16\\x3b\\x23\\xce\\xb5\\xce\\x4e\\xe7\\x01\\xe7\\x89\\x88\\x8c\\xcc\\x8a\\x9c\\x19\\xb9\\x20\\x32\\x11\\xd9\\x1c\\xb9\\x35\\x72\\x5f\\xe4\\x60\\xe4\\xb9\\x68\\x26\\x7a\\x4a\\x74\\x61\\x74\\x59\\x74\\x2a\\x7a\\x6d\\x74\\x47\\xf4\\xee\\xe8\\x43\\xd1\\x27\\xa2\\x2f\\xc4\\xdc\\xd8\\xc9\\xb1\\xb3\\x62\\x4b\\x62\\xab\\x62\\x57\\xc4\\x36\\xc7\\x6e\\x8e\\xdd\\x19\\xdb\\x17\\x3b\\x18\\x7b\\x3a\\xf6\\x62\\x3c\\x1d\\x9f\\x15\\x9f\\x13\\x3f\\x2b\\x7e\\x5e\\x7c\\x59\\x7c\\x4d\\x7c\\x2a\\xfe\\xb1\\xf8\\xd5\\x72\\x07\\x95\\xf1\\x2b\\xc7\\x79\\xca\\x51\\x91\\x5c\\x4a\\x51\\x95\\x5c\\x8c\\x38\\x85\\x94\\x2c\\xe5\\x68\\x36\\xe5\\x28\\x4b\\xbd\\x94\\xa6\\x3c\\xf2\\x7b\\x29\\x47\\x35\\x72\\xe5\\xb7\\xa8\\x34\\x63\\xdd\\x3c\\xb9\\xd4\\x85\\xf9\\x97\\xa8\\x80\\x95\\x70\\xd1\\x46\\x46\\xff\\x95\\xb7\\x50\\xf1\\xaf\\xae\\x59\\xc4\\xef\\xa1\\x15\\x74\\xef\\xf2\\xdb\\xc7\\xa9\\xa7\\x7b\\xc8\\x04\\x72\\x82\\xf5\\xbe\\x49\\x85\\xbf\\xba\\x3f\\x97\\x4e\\xa4\\x1a\\x55\\x28\\x2d\\x6f\\x3d\\x4e\\xad\\xc6\\xde\\xfc\\x5a\\xdf\\xa0\\x9e\\x19\\x6b\\x75\\x52\\x9e\\x3f\\xa5\\xa9\\x48\\x5d\\xe8\\x3b\\x2b\\x2f\\x41\\x79\\x3d\\x82\\x3e\\xbc\\xda\\xab\\x3f\\x95\\xf1\\x49\\xa7\\x14\\x29\\x45\\x19\\x94\\xd0\\xfd\\xb9\\xf2\\xdf\\x28\\x47\\x19\\xca\\x50\\x89\\x7a\\xa9\\x88\\xb6\\x3a\\xb0\\x33\\xba\\xc5\\x0c\\xfa\\xeb\\xc3\\x77\\xdd\\x76\\x8d\\x7e\\x47\\xdd\\xa8\\x5b\\xe6\\x12\\x2e\\x15\\xa8\\x44\\x59\\x94\\xd3\\xe3\\x4b\\x53\\x06\\xd4\\x39\\x9b\\x5c\\xf9\\x1c\\x75\\x51\\x95\\xaa\\x94\\xc3\\x2f\\xd8\\x17\\xc8\\xe5\\xf6\\x6b\\xd4\\x4b\\x15\\xd4\\xcd\\x9a\\x5a\\xf2\\x7f\\xa9\\xb3\\x65\\xc9\\x0a\\xfa\\xf4\\x4b\\x1f\\xc4\\x2f\\xda\\xb5\\xee\\x3d\\xd0\\x33\\x7d\\x1f\\xa5\\xb3\\xe1\\x99\\x52\\x0a\\x73\\xac\\x79\\x2b\\x29\\x9f\\x44\\x99\\x2c\\x56\\xb4\\x1b\\x6b\\x54\\x46\\x4e\\x17\\xea\\xa5\\xa9\\x42\\x35\\x79\\x94\\xb2\\x2f\\x37\\x32\\x79\\x33\\xa8\\xfa\\xf8\\x3b\\xf4\\x3b\\x1e\\x49\\xab\\x91\\x97\\xa8\\x93\\x3a\\xe5\\x1f\\xa9\\xa3\\x65\\x4f\\xa6\\xbe\\x2b\\x3e\\x6b\\xf3\\xab\\xe0\\x01\\x26\\xb7\\x8c\\x91\\xd7\\xa8\\x24\\x87\\xf1\\x52\\xc2\\xcc\\xbb\\x7e\\x90\\x3a\\x8e\\x33\\x82\\xa2\\xfa\\x89\\xcd\\xd7\\x74\\x5e\\xe3\\x55\\xd1\\xeb\\x55\\x03\\x9d\\x3c\\x4e\\x1d\\xc7\\xa3\\x13\\xf9\\xef\\xd8\\x81\\x60\\x7e\\x90\\xca\\x3e\\x8e\\xf5\\xf4\\x47\\x67\\xc6\\xd4\\x87\\xd4\\xac\\x7c\\x96\\xd2\\x2d\\xe7\\x0e\\x8e\\xa1\\xf6\\x60\\x15\\xf2\\xfc\\x5d\\xb7\\xd7\\x8b\\xb2\\x9a\\xc6\\x2e\\xc5\\x5e\\x34\\xcf\\xba\\x97\\xca\\xe2\\x1a\\xa4\\x64\\x41\\x71\\xa5\\xe0\\x5a\\x51\\x55\\x8e\\x84\\xea\\x75\\x62\\xce\\xde\\x68\\xfe\\x15\\x63\\xd7\\xb4\\x6f\\xc6\\xd4\\x81\\x5f\\x51\\xd4\\x3c\\xaa\\x9f\\x1e\\x09\\xe5\\xa5\\x78\\x05\\x34\\x5f\\xa8\\xca\\x0d\\xd4\\x1e\\x68\\xb3\\x97\\xca\\x5e\\x8b\\xa2\\x9d\\xda\\xb1\\x8e\\x7a\\x85\\xba\\xf1\\x5b\\xdb\\x25\\xec\\x40\\x3f\\xad\\xa2\\xf6\\xd0\\x18\\x67\\x51\\x2f\\xb9\\xfa\\x7f\\xf9\\xdf\\xd4\\x4e\\x55\\x2a\\x83\\x2f\\x18\\x8a\\x63\\xbe\\x2f\\x9f\\xa6\\x76\\x2a\\x82\\x1f\\xf5\\xf2\\x19\\xe5\\x15\\x93\\x1f\\xb4\\xad\\xe5\\xa9\\x04\\x1a\\xf6\\x24\\xc5\\x3f\\xe1\\x57\\x0b\\x5a\\x8c\\x5b\\x3e\\x81\\xdf\\xb2\\x0a\\xef\\x6b\\x89\\x4e\\xa4\\x7f\\xe6\\x74\\xaf\\x86\\x6e\\xa9\\x40\\xae\\xac\\x40\\x16\\x65\\xd1\\x46\\x60\\x4d\\x45\\x1b\\xb5\\x85\\xe6\\x68\\x7e\\x7b\\xd2\\x95\\xff\\x43\\xc9\\xe6\\xbd\\x95\\x6b\\x28\\x19\\x58\\xab\\x0e\\xd4\\xea\\x51\\x37\\x53\\xb2\\x61\\xe5\\xf5\\xb9\\xbd\\x8d\\x92\\xcd\\xa7\\x59\\x3e\\xc3\\xed\\x9a\\xb2\\xdc\\xae\\xb8\\x16\\xbf\\xed\\x97\\xc5\\xac\\xc1\\x3f\\x75\\xbb\\xe2\\x5c\\x4a\\x06\\xc6\\xe6\\xd1\\xd7\\x25\\x78\\x9d\\xdb\\x70\\x24\\x2e\\x29\\xff\\x93\\x12\\x76\\x47\\xf9\\x64\\xd2\\x2b\\xf1\\x3e\\x76\\x96\\x57\\xcd\\x45\\x9d\\x47\\x43\\x69\\x66\\x25\\x9f\\x0a\\xd5\\x4d\\xeb\\x7c\\xf9\\x27\\x4a\\xe0\\x0c\\x95\\xc0\\x31\\xf4\\x9e\\xf7\\x89\\x4d\\x94\\x68\\x3c\\xc9\\xf2\\x08\\xc5\\x43\\xfd\\x16\\xe9\\x55\\x14\\xa7\\xd9\\xfe\\xba\\x53\\x45\\x6d\\xc3\\x9b\\x34\\x79\\xcb\\xc7\\x6e\\xc7\\xcb\\x25\\x19\\x70\\x64\\xcd\\xf5\\xbe\\x87\\x97\\xd8\\xb2\\xde\\x0e\\xca\\xff\\xa2\\x18\\x24\\x6e\\x05\\x72\\x35\\x4b\\xcb\\x29\\x16\\xe0\\x00\\xfd\\xea\\x6e\\x8a\\x51\\x06\\x94\\xaa\\xa5\\x60\\x4d\\x7c\\x06\\x2f\\x79\\x9e\\x80\\xd3\\x55\\x93\\xff\\x41\\x11\\x3b\\xa2\\x53\\xf1\\xb9\\x83\\x7a\\xa9\\x20\\x57\\x93\\x03\\x4e\\x59\\xa5\\xdd\\xf8\\x55\\xbd\\xac\\xdc\\x88\\xbf\\x1d\\xf4\\x7a\\x1a\\xa7\\x1b\\x69\\x2f\\x1d\\x11\\xae\\x98\\x27\\x96\\x89\\x2b\\xc5\\xcd\\xe2\\x3e\\xf1\\x98\\x94\\xb2\\x57\\x9e\\x2d\\x07\\xe5\\x46\\xb9\\x5d\\xee\\x91\\x8f\\xc8\\xa3\\x2a\\xad\\x4e\\x56\\x67\\xab\\x65\\x6a\\x9d\\xda\\xa2\\x76\\xaa\\xbd\\xea\\x90\\x3a\\xe6\\xb8\\xce\\xa9\\xce\\x39\\xce\\x0a\\xe7\\x0a\\xe7\\x3a\\x67\\xb7\\x73\\xbf\\x73\\xc8\\x79\\x2e\\xd2\\x1e\\xe9\\x8d\\xcc\\x8b\\x9c\\x17\\x19\\x8c\\xac\\x8b\\x5c\\x13\\xd9\\x16\\xd9\\x15\\xb9\\x27\\xb2\\x3f\\x72\\x30\\xf2\\x64\\xe4\\x68\\x94\\xe8\\x10\\x75\\x83\\xc2\\x6b\\xd8\\x93\\x7e\\xd0\\x47\\x37\\x46\\xdc\\x65\\xf9\\x78\\x27\\xf5\\x62\\xcd\\xfe\\x15\\x9c\\xb8\\x17\\x5c\\xbb\\x04\\xda\\xe8\\x46\\xf9\\x12\\x4e\\x92\\x39\\x63\\x5a\\x66\\xfc\\x5b\\xcb\\x72\\x86\\x9f\\x7b\\x6b\\xad\\x5b\\x9e\\x46\\x9f\\x69\\xd6\\x68\\x4c\\x5f\\x7d\\x86\\x53\\xb3\\x96\\x50\\xa1\\x1e\\x7a\\x9c\\xdc\\x16\\xad\\x65\\xb1\\xf3\\x69\\xa6\\xee\\x2c\\xfd\\x07\\xf6\\x48\\x9f\\x8f\\x6e\\xaa\\x61\\x34\\xe6\\xc4\\x15\\x90\\x9b\\xd3\\xab\\x2e\\xb2\\xe0\\x99\\x15\\xf0\\xeb\\x0a\\x5e\\x14\\x2d\\xa1\\xce\\x49\\x98\\x41\\x0d\\x5a\\xc9\\x9f\\x31\\x9f\\x12\\xf5\\xd8\\xfe\\x1b\\x24\\x1e\\x3d\\x01\\x19\\xd1\\xdc\\x53\\xda\\xd0\\xa8\\xba\\x07\\x7b\\x5c\\xe5\\xd2\\x26\\x2f\\xc3\\xa7\\xc5\\xa5\\x8a\\xe8\\x01\\x65\\xf9\\xa3\\x98\\xcd\\xa7\\x21\\x07\\x5e\\x93\\xa7\\x7f\\x9f\\xa1\\xfd\\x6e\\x93\\x26\\x3f\\x89\\x39\\x37\\xae\\x47\\xda\\x9e\\xd8\\x3f\\x80\\x13\\x04\\x77\\x54\\xd3\\x66\\x0f\\x78\\x5d\\x1f\\x15\\xe5\\x9f\\xd1\\x7f\\x78\\x86\\xc1\\x11\\x3d\\x89\\xd4\\xe6\\xfe\\x35\\x37\\xec\\x13\\x69\\xac\\x87\\x3f\\xfa\\x0e\\x8c\\x40\\x8f\\xa4\\x20\\x3e\\x87\\x52\\xbd\\x48\\xf7\\xb8\\x4c\\x2f\\xd3\\xff\\xef\\x31\\xc6\\xe0\\xa8\\x2c\\x1f\\x10\\x2e\\xb5\\x87\\xda\\xcc\\x31\\x3d\\x55\\xc4\\x97\\x21\\x0d\\x9a\\xc7\\x92\\x14\\x99\\x86\\x3a\\x7a\\xd7\\xf0\\x2b\\xbd\\xa2\\xa3\\x29\\x27\\x6f\\x28\\x4f\\x5c\\x3f\\x43\\x6b\\x09\\xf1\\xa5\\x19\\x72\\xe2\\xe2\\xba\\x19\\x72\\x62\\xe2\\x8b\\x33\\xe4\\x44\\xc5\\xd6\\x19\\x72\\x22\\xe2\\x0b\\x33\\xe4\\x38\\xf2\\x6e\\x6a\\xa7\\x5e\\xea\\x60\\x7a\\xf6\\x4f\\x61\\x4d\\xdc\\x80\\x3a\\x7a\\xbf\\x5c\\xe8\\x9d\\x39\\xec\\x5b\\x17\\xb9\\xea\\xa7\\xd4\\x8e\\x99\\x65\\x98\\x02\\x2c\\xd7\\x17\\xb9\\x86\\x35\\xa8\\x42\\xee\\xea\\x96\\xff\\x85\\xda\\x1b\\xf6\\x81\\x4f\\xb7\\xe8\\x6e\\xa8\\x63\\xc7\\x29\\xba\\x1a\\x72\\xcc\\x79\\xd0\\xfb\\xb3\\x99\\xda\\xec\\x8e\\x7b\\xe7\\x43\\xaf\\x74\\x27\\x7e\\x33\\xdc\\xaf\\xa1\\x7b\\xee\\xa4\\x1a\\x1d\\xa6\\xb6\\x86\\xde\\xf5\\xc8\\xb2\\xe2\\x04\\x4a\\x86\\xca\\x6b\\x7a\\x2a\\x8b\\x54\\x43\\x2a\\x34\\x68\\xf9\\x02\\xa4\\x53\\x17\\xeb\\x8f\\xac\\x69\\xc9\\x5e\\xa4\\x56\\xd0\\x5e\\xca\\x6a\\x65\\x8f\\x41\\x9a\\x84\\xcf\\xca\\x0f\\x28\\x61\\xe4\\x14\\x34\\x83\\x34\\xf4\\xae\\xd9\\x14\\x27\\x17\\xeb\\xdb\\x8d\\xbe\\x5c\\xf9\\x3c\\xc5\\xc3\\xa7\\x44\\x7c\\x1e\\xd2\\xa5\\x97\\x57\\x40\\xcb\\xb4\\x0d\\x14\\x0f\\x9f\\x74\\xb1\\x05\\xd2\\xc5\\x2b\\x53\\x94\\xc7\\x28\\xca\\x7d\\x69\\x5d\\xea\\x2b\\x14\\xa1\\x0a\\x6a\\x74\\xcb\\xbf\\x50\\x04\\x36\\x5b\\x9e\\xb2\\x74\\x07\\x24\\x43\\x09\\xb2\\xf3\\xff\\xc8\\xe1\\x7e\\x2f\\xa0\\xdd\\x74\\x48\\xa4\\xc5\\x3c\\x31\\x28\\x36\\x89\\xdb\\xc5\\xa3\\x92\\x64\\x9f\\x5c\\x24\\x2f\\x91\\x9b\\xe4\\xad\\xf2\\x7e\\xf9\\xb8\\x92\\xaa\\xaa\\xce\\x52\\xcb\\xd4\\x15\\xea\\x06\\x75\\x87\\x7a\\x48\\x1d\\x71\\xe2\\x4e\\x9f\\xb3\\xc0\\x59\\xe6\\xac\\x77\\xb6\\x3a\\xbb\\x9c\\xfb\\x9d\\xc3\\xce\\xf3\\x91\\xae\\xc8\\x9c\\xc8\\x39\\x91\\x8b\\x23\\xeb\\x22\\x9b\\x23\\xb7\\x44\\xee\\x89\\x1c\\x88\\x3c\\x1d\\x8d\\x46\\x67\\x45\\xcf\\x88\\x2e\\x8e\\x0e\\x46\\xd7\\x47\\x37\\xc3\\x4e\\xdd\\x1f\\x7d\\x2c\\xfa\\x5c\\x2c\\x19\\x9b\\x15\\x3b\\x2d\\x76\\x4e\\xec\\xc2\\xd8\\x25\\xb1\\x0d\\xb1\\xcd\\xb1\\xed\\xb1\\xdb\\x63\\x7b\\x63\\x07\\x62\\x4f\\xc4\\x9e\\x8b\\x3b\\x71\\x37\\x5e\\x8d\\xcf\\x89\\xcf\\x8f\\x2f\\x8a\\x2f\\x8d\\xaf\\x88\\x8f\\xc4\\xd7\\xc7\\x37\\xc6\\xaf\\x8d\\x5f\\x1f\\xdf\\x1e\\xdf\\x29\\x6e\\xa1\\x13\\x98\\x8b\\x56\\x70\\x12\\x53\\xd8\\x99\\x1c\\x6b\\x43\\x59\\x68\\x72\\x79\\xe6\\x71\\xda\\x4e\\x3d\\x48\\x27\\x60\\xad\\x33\\x96\\xff\\x9c\\xd8\\xc4\\x69\\x53\\x38\\x0d\\x5a\\x3e\\xf4\\xc8\\x13\\xa8\\x0b\\xed\\xe6\\x59\\xce\\x18\\x8d\\xac\\xca\\x75\\x83\\xdc\\x6c\\x17\\x75\\xb1\\xad\\x95\\x82\\xad\\x68\\xf4\\x9b\\xac\\x6d\\xbd\\x8b\\xc7\\xd5\\x45\\x5f\\xa4\\x4e\\x96\\x7e\\x29\\xf0\\x6c\\xff\\xf4\\x85\\xc6\\x21\\xbe\\x4e\\x9d\\x3e\\xff\\x66\\x4d\\x37\\x83\\x7d\\x34\\xf4\\x5b\\xc1\\x58\\xba\\xe4\\x4e\\xe4\\x14\\xd9\\xbe\\x2a\\x04\\x34\\x47\\x6d\\xf9\\xf6\\x52\\x01\\xbf\\xef\\x51\\x51\\x02\\xbf\\xf2\\x51\\x81\\x6d\\xeb\\x32\\x1d\\xa7\\x2d\\x95\\x33\\xed\\x8a\\xf7\\x43\\xa2\\xb9\\x2c\\x0f\\x53\\x46\\xef\\xe1\\xde\\xf3\\xa6\\xb4\\xd8\\x8e\\xbf\\xad\\x47\\xd6\\x87\\xba\\x3d\\x72\\x27\\x4b\\xe8\\x19\\x47\\xa5\\xae\\x81\\xc4\\xa8\\x60\\x8d\\x0a\\xd0\\x84\\x31\\x4e\\xd8\\x2e\\x39\\x2a\\x8b\\xf3\\xb0\\x9e\\x25\\x48\\x18\\xdf\\xee\\xd0\\x29\\x69\\xca\\xca\\x97\\x28\\x8d\\x55\\xd4\\x2b\\xea\\xb2\\x9c\\xaa\\xb2\\xb6\\xd6\\x4f\\x73\\xb8\\xae\\xb7\\x07\\x7a\\xff\\xcb\\xde\\x08\\xd4\\x37\\x28\\x8d\\x55\\x28\\xa3\\x7f\\x63\\x81\\x7a\\x1a\\x6d\\x55\\x7c\\x80\\xd2\\xb0\\x69\\x6a\\xad\\xb4\\x0c\\xf5\\x73\\xf4\\x6b\\x4e\\x90\\x9e\\xb9\\xe6\\x57\\x2e\\x74\\x89\\x3c\\xf5\\xab\\xcf\\xa1\\x6e\\x81\\x35\\x8c\\x14\\x9f\\x6d\\xcf\\x1e\\x5f\\x87\\x5c\\x43\\x23\\xc6\\x66\\x48\\xfb\\x54\\x25\\x76\\x63\\x14\\xc6\\x06\\xca\\xb3\\x7e\\x52\\xe5\\x91\\xbb\\xe2\\x9b\\xac\\x5b\\xb6\\xa0\\x74\\x39\\x8e\\xf9\\xbb\\x34\\x9b\\x69\\x22\\xc0\\x45\\xe9\\x2e\\x5b\\xcf\\xb5\\x76\\xa7\\x99\\x9d\\xab\\x3e\\xcd\\x33\\xd7\\x33\\xd1\\x7a\\x97\\xe6\\x95\\x19\\x4e\\xf9\\xb2\\xad\\x97\\x66\\x2b\\xc6\\xd8\\x0b\\x9a\\x32\\xbf\\xc7\\x78\\x56\\x99\\xa5\\x72\\x8e\\xb5\\x36\\x3d\\xb7\\x8d\\x1e\\xc7\\xb4\\xc8\\x88\\xcb\\x3a\\x6e\\x56\\xdc\\x16\\xa8\\xe7\\xd9\\xaa\\x7a\\x9d\\xb4\\x7d\\x76\\x03\\xb8\\x7d\\xb0\\xbf\\x02\\x72\\xf2\\xe2\\x3d\\xd4\\x1e\\xa0\\x03\\x73\\xa2\\x41\\x03\\xe2\\x46\\x48\\x15\\x7f\\xb5\\x3b\\x79\\xfe\\x35\\xba\\xd3\\xb6\\xe6\\x5a\\x8b\\x56\\xf7\\xdb\\x2f\\x16\\x87\\x5a\\x0b\\x5a\\x25\\x63\\xd4\\xde\\xb0\\x8a\\x2c\\x3f\\x14\\x71\\x8e\\xe1\\x1a\\x81\\x3a\\xea\\x33\\x90\\x2c\\x15\\xb6\\x02\\xf5\\x28\\xf4\\x4c\\xf3\\xb2\\x4c\\x6d\\x76\\xa6\\x3e\\xf2\\xe7\\x8a\\xbf\\x81\\x84\\x6a\\xe2\\x27\\xe2\\x26\\xb4\\xe3\\xcf\\xc4\\xec\\x71\\x5e\\x7c\\xad\\x29\\xdd\\x68\\xb3\\x5b\\xa9\\xad\\x25\\x0f\\xf9\\x11\\xda\\x0f\\xcf\\xbb\\x97\\x6a\\xe2\\x7c\\x48\\x4c\\x6f\\xd6\\xd6\\x52\\x15\\xdf\\x0f\\x8c\\xb3\\x8a\\x74\\x9c\\x08\\xe5\\x20\\xdd\\xe8\\xb0\\x35\\x8b\\xa9\\x64\\xe9\\x13\\x18\\x4f\\x13\\x97\\x53\\xf7\\x52\\x32\\x70\\x2a\\x32\\x7c\\xae\\x3e\\x49\\x49\\x5b\\xba\\xca\\x9c\\xb8\\x26\\x6e\\x86\\x7c\\x85\\xd6\\xc4\\x6b\\xac\\x57\\xe0\\x5d\\x94\\x6c\\x38\\xed\\x9a\\xd2\\xbe\\x8a\\x16\\xfc\\xf9\\xeb\\xd6\\x6a\\x74\\x65\\xa0\\x5d\\x93\\xa7\\x79\\xc0\\xa7\\x20\\x75\\xcd\\xfa\\x30\\x0d\\x8a\\xef\\xc2\\x4e\\x34\\xf3\\xeb\\xc4\\x98\\x5c\\xf1\\xad\\x40\\x9a\\x83\\x5f\\xc7\\x6a\\x97\\xbf\\xa3\\x44\\xa3\\x5c\\x50\\x5f\\xa5\\x84\\xa1\\x99\\x80\\x4e\\xf2\\x6e\\xf4\\xe1\\x8d\\xd2\\xc8\\xe3\\x8f\\x43\\xb2\\x7b\\xa3\\x31\\x1c\\xf5\\xd3\\x90\\xe3\\x3e\\x35\\x57\\xc5\\x37\\x90\\x92\\xb7\\xba\\xbf\\x2b\\xbe\\x43\\x71\\x3b\\x8e\\x24\\xb4\\xbe\\x9d\\x81\\x94\\x38\\xb4\\xbd\\x5b\\x03\\x29\\x51\\xe8\\x72\\xbb\\x02\\x29\\xb0\\x5f\\xc4\\x45\\x68\\x59\\x73\\x33\\xd6\\x8f\\xe8\\x63\\x14\\xb7\\x23\\x02\\x6f\\x12\\x3b\\xf0\\xbb\\x81\\x3e\\xc7\\xbb\\x9a\\xbf\\x7b\\x36\\xfd\\x5a\\x68\\x0c\\x86\\x4b\\xe5\\xd5\\xcf\\xf0\\xcd\\x68\\x18\\x25\\xfa\\x31\\x45\\x7d\\x89\\x20\\xb6\\x21\\x8f\\x77\\x44\\xbe\\xc8\\x9a\\x46\\x37\\xce\\xf7\\x3b\\x59\\xa3\\xd0\\xab\\xf3\\x43\\x7c\\xc6\\x6e\\x28\\xc9\\xf6\\x68\\x95\\xaa\\x72\\x14\\xaf\\xf1\\x62\\xa5\\xe5\\x87\\xb9\\x7c\\x95\\x5c\\xf1\\x6d\\x72\\x78\\x5e\\x57\\xe1\\x77\\x13\\xd2\\x54\\x53\\x0a\\x5a\\x89\\x5e\\xcf\\x8f\\x92\\xc3\\x7a\\xd8\\x4f\\xf1\\xa9\\x87\\x5c\\x71\\x21\\x3e\\x69\\x4e\\xf6\\x6a\\x5a\\x41\\x57\\xd3\\x2e\\x7a\\x98\\x8e\\x89\\x92\\x58\\x20\\x06\\xc5\\x55\\xe2\\x16\\x71\\xbf\\x78\\x42\\x46\\x65\\xbf\\x3c\\x47\\x0e\\xc1\\x7e\\xbd\\x47\\x1e\\x94\\xcf\\xab\\x9c\\x9a\\xab\\x16\\xa9\\x15\\x6a\\xbd\\xda\\xa2\\x6e\\x55\\xf7\\xa8\\xdf\\xaa\\xa7\\x1c\\x72\\x72\\xce\\x29\\xce\\x59\\xce\\x12\\x67\\xc8\\x99\\x72\\xae\\x72\\xae\\x73\\x6e\\x76\\x6e\\x73\\xee\\x71\\x1e\\x74\\x0e\\x38\\x87\\x9d\\x27\\xe5\\x0f\\xc9\\x05\\xb7\\x2e\\xe2\\x24\\x7b\\x56\\xa0\\xc1\\x10\\x3b\\x2c\\x0a\\xf8\\xa9\\x97\\x29\\x05\\xda\\x95\\xaf\\x04\\x3f\\xac\\x34\\xe9\\x13\\x35\\xb6\\x49\\xf5\\xaa\\xd7\\xe4\\x29\\x33\\x94\\x32\\xdc\\x32\\x0f\\x7b\\xb5\\x5f\\xbe\\x82\\xd1\\xcb\\xc6\\x52\\x55\\x70\\x04\\x53\\xe6\\x4e\\x9c\\xa5\\xe3\\x8d\\xbd\\x28\\x3f\\x45\\x19\\x48\\x9b\\x06\\x34\\x8d\\xaa\\xbc\\x6b\\xdd\\xf2\\x14\\xe6\\x7a\\xad\\x47\\x9d\\xa3\\xa2\\x3c\\x79\\x86\\x12\\x9d\\xa0\\x94\\x0a\\xf5\\xcb\\x93\\x19\\xa5\\x6c\\xa5\\x49\\xa5\\xa9\\x26\\x4f\\x9d\\x21\\xdf\\x60\\xd8\\x3d\\xf2\\xc4\\x19\\xeb\\xe7\\x40\\x0f\\x1f\\x82\\xfe\\x00\\xfe\\x0b\\x3a\\xf2\\x2d\\x45\\x83\\xe4\\x2d\\x43\\x7e\\x15\\xef\\xfc\\x9b\\xf3\\xd3\\xc7\\x7e\\x0d\\xc8\\x7d\\x79\\x11\\x66\\xd2\\x6a\\xcd\\x7b\\xa9\\x28\\x4f\\x9a\\x21\\xd7\\xf0\\xba\\xff\\xa4\\x74\\x8b\\xbe\\x59\\xa7\\x92\\xfd\\x33\\xd4\\x85\\xc5\\x2e\\xaf\\x86\\x36\\x32\\xc3\\x0e\\xa9\\x1f\\xa3\\x65\\x83\\xe0\\xbb\\x76\\x87\\x4c\\x5f\\x15\\x71\\x35\\x4e\\xf8\\x6c\\x68\\xb8\\x2e\\xda\\x34\\xd6\\x86\\xee\\xff\\x1f\\x61\\xa7\\xf9\\x35\\xab\\xd0\\xcd\\x5c\\x2a\\xab\\x5b\\x58\\x4a\\xf4\\x32\\x56\\x5c\\x60\\x6e\\xf9\\x41\\xfc\\x66\\x5e\\x70\\x85\\x74\\x4e\\x46\\xc5\\x38\\x3d\\x03\\xde\\xe5\\xeb\\x51\\xdf\\x0c\\xb5\\x93\\x67\\xfc\\xc6\\x15\\x67\\x43\\x7a\\xa4\\x61\\x2d\\x75\\xb3\\x26\\xa3\\x25\\x6c\\x1f\\x25\\x9b\\xd7\\x41\\x5c\\x45\\xc9\\xc0\\x1c\\x52\\x40\\xae\\x3b\\xe8\\x1a\\x94\\xf5\\xac\\xf5\\x14\\xce\\x45\\x59\\xed\\x00\\xe7\\xaf\\xb1\\xfe\\xea\\x69\\x7f\\x4f\\x71\\x6a\\x1a\\xfa\\x41\\xd5\\xd8\\xa9\\xf2\\xd3\\xe0\\xf3\\x46\\xf7\\x48\\x61\\x15\\xd2\\xf2\\x2a\\x4a\\x60\\x75\\x33\\xbe\\x05\\xaa\\x22\\xe0\\xdf\\x5a\\xeb\\xb4\\xb4\\xa2\\x92\\xcc\\xbf\\x5d\\x2b\\x49\\x7e\\x40\\x31\\xd3\\x06\\xce\\x5f\\x95\\x8e\\xe0\\xbb\\xbf\\xf2\\x9f\\x01\\x42\\xa7\\xcb\\x96\\xa1\\x9b\\xdc\\x4e\\x51\\xe8\\xdb\\x69\\xcd\\xeb\\xe5\\x3d\\x14\\x05\\xbf\\xc5\\x59\\xa1\\xbb\\xc1\\x51\\xd3\\xd0\\xb7\\xaa\\x2a\\x8a\\x92\\xbc\\x4f\\x0a\\xaf\\x83\\x42\\xf6\\x5d\\x8c\\x4f\\x19\\xea\\x51\\x71\\xfc\\x56\\x54\\x95\\xfe\\x8b\\x14\\xb4\\x93\\x59\\x74\\x16\\x8d\\xd2\\xf5\\x74\\x17\\x3d\\x4a\\xcf\\x8b\\x82\\x38\\x53\\x5c\\x28\\xd6\\x89\\xad\\x62\\xb7\\xd8\\x27\\x1e\\x13\\xcf\\x4b\\x57\\x9e\\x22\\x17\\xc8\\x0b\\xe4\\x88\\xdc\\x28\\xaf\\x97\\x3b\\xe5\\x1e\\xb9\\x5f\\x1e\\x92\\x4f\\xc9\\xe7\\x94\\x54\\x69\\xf5\\x39\\xbc\\x44\\xdf\\x1d\\xf0\\x12\\xf9\\xe8\\x7a\\x90\\x0f\\xb1\\xf7\\x42\\x7e\\x1f\\xbf\\x20\\xea\\x97\\xcf\\xb2\\x54\\xc9\\x40\\xd3\\xb6\\xd4\\x20\\x7e\\x44\\x19\\x3a\\x11\\x7a\\x5d\\x15\\xb4\\xeb\\xb2\\x8e\\x50\\x64\\xcb\\x20\\x22\\xee\\x7c\\x99\\x12\\x8e\\xbc\\x06\\xbf\\x8f\\xea\\xe9\\x2e\\x5a\\x9b\\x32\\xeb\\xcd\\x88\\x9b\\xf8\\x31\\x75\\x34\\xb5\\x50\\x66\\xaf\\x82\\xee\\xe1\\xae\\xe3\\xe6\\x3b\\xe2\\x47\\x94\\x6e\\xca\\x2f\\xc2\\xeb\\x67\\xc6\\x37\\x73\\xae\\x23\\xee\\xa6\\x54\\x53\\xee\\x49\\xa0\\xce\\x92\\x5c\\xc6\\xe7\\xb6\\xd6\\x02\\xbf\\x7f\\x85\\xf5\\x57\\x54\\x9a\\xfc\\x58\\x13\\xd4\\x86\\x36\\xd3\\xcc\\x7f\\xf3\\xc6\\xa2\\x57\\xed\\x48\\xcf\\x31\\xc2\\x6d\\x2c\\x85\\x32\\x95\\xe5\\x64\\x43\\xf9\\x82\\xe1\\x06\\xea\\x0e\\x6a\\xc3\\x98\\x4a\\x38\\x29\\xfd\\xb0\\xa5\\x4a\\x94\\x97\\x9f\\xc1\\x6f\\xd6\\xbb\\xd6\\x3b\\xa0\\xd7\\xa1\\x5f\\x7d\\x31\\x94\\xca\\x1e\\x2f\\x39\\x80\\xd4\\x14\\x23\\xdb\\x3c\\x7a\\xb9\\x29\\x54\\xd6\\xf0\\x28\\x97\\x5e\\x4d\\x09\\xd6\\x16\\xf3\\x46\\x9b\\xa1\\x8a\\x4a\\x53\\x02\\x9e\\x4f\\x97\\xa5\\x98\\xa6\\x89\\x1f\\x52\\xbc\\x61\\xcd\\xe6\\x72\\x8a\\xb1\\xca\\x73\\x54\\x53\\x29\\x8a\\x71\\x8a\\xe1\\x6c\\x9b\\x28\\xe2\\xe9\\xfe\\xea\\x5a\\x8a\\xd0\\x09\\x86\\x5f\\xa8\\x36\\x8a\\xd8\\x91\\x9c\\x0c\\x4c\\x03\\x6b\\x2a\\xee\\x20\\x87\\xd7\\xfe\\x22\\xba\\x93\\x9e\\x16\\xfd\\x62\\xa9\\xd8\\x28\\x76\\x89\\x03\\x92\\xe4\\x29\\x72\\x89\\xbc\\x42\\xde\\x2c\\xf7\\xc9\\x67\\x54\\x4e\\xcd\\x67\\xaf\\xfa\\x7e\\xf5\\xac\\x93\\x73\\xe6\\x39\\x17\\x39\\x57\\x38\\xdb\\x9c\\xbb\\x9c\\x03\\xce\\xd1\\x88\\x1b\\x99\\x1b\\x39\\x2f\\x32\\x12\\xb9\\x26\\xb2\\x23\\x72\\x6f\\xe4\\x60\\xe4\\x58\\xb4\\x2b\\x3a\\x37\\xba\\x38\\xba\\x2a\\x7a\\x65\\x74\\x5b\\xf4\\x8e\\xe8\\xfe\\xe8\\x93\\x31\\x19\\x2b\\xc5\\x4e\\x8f\\x2d\\x8e\\x0d\\xc5\\x36\\xc4\\xae\\x8b\\xed\\x8a\\xed\\x8d\\x1d\\x8c\\x1d\\x8d\\x27\\xe3\\xd5\\xf8\\x19\\xf1\\xc5\\xf1\\xc1\\xf8\\xfa\\xf8\\xb5\\xf1\\xed\\xf1\\x3b\\xe2\\x0f\\xc4\\x0f\\xc6\\x9f\\x49\\xc8\\x44\\x57\\xa2\\x3f\\x31\\x2f\\x71\\x6e\\x62\\x59\\x62\\x34\\x71\\x65\\x62\\x6b\\x62\\x47\\xe2\\xce\\xc4\\x03\\x89\\x47\\x12\\x4f\\x24\\x8e\\x26\\x65\\x32\\x9d\\x2c\\x24\\xfb\\x92\\x73\\xc4\\xab\\x02\\xfe\\x69\\xb3\\xdf\\xc6\\x83\\xdc\\x2c\\xdb\\x53\\x16\\xa5\\x4a\\x51\\x5e\\x9c\\xfa\\xff\\x51\\xcf\\xb7\\x38\\x2b\\x62\\x36\\x52\\xfd\\x7a\\x46\\x06\\x06\\xfd\\x76\\x19\\xd6\\xf7\\xb4\\x5e\\xd6\\x7b\\xdc\\xd2\\x59\\xf4\\xe3\\x97\\xee\\x07\\xce\\xe1\\x97\\xce\\xb3\\x2c\\x33\\xb4\\x97\\xb7\\xd2\\x28\\x2b\\x5e\\xd9\\x50\\xd2\\x20\\x1a\\x90\\xe4\\x90\\x60\\x15\\x9c\\x94\\x2e\\xea\\x16\\x27\\xcd\\xd8\\x66\\x00\\xdd\\x40\\x9b\\x85\\x86\\x92\\x86\\x3a\\xbb\\xb0\\x02\\xec\\x1b\\x81\\x95\\xdb\\x2f\\x4e\\x64\\x39\\x1a\\x6c\\xd3\\xf3\\xff\\x1a\\x74\\x0e\\x58\\x8d\\xc8\\x37\\x94\\x0b\\xb6\\x18\\x44\\xd7\\x7f\\xc5\\x3e\\xb3\\x9a\\x45\\x7f\\x5b\\xe3\\x23\\x97\\xa2\\x5c\\x87\\xd5\\x0f\\xd2\\x98\\x43\\x3a\\x60\\x2d\\x03\\x79\\x14\\x55\\xe8\\x92\\x7e\\xbf\\x99\\x80\\xc5\\x54\\x01\\x8f\\xd0\\xab\\x34\\x02\\x2d\\xb1\\xc3\\x4a\\x48\\x83\\x45\\xd5\\x1a\\xda\\x2a\\x35\\xb4\\x15\\x9c\\x83\\x8f\\x13\\x5c\\x06\\xdd\\x20\\xcd\\x7a\\x87\\xe1\\xf2\\xec\\x6d\\xf2\\xd7\\x5c\\x3c\\x08\\xea\\xf2\\xe7\\x59\\xe3\\x6f\\x29\\x46\\x6d\\x3a\\xa9\\x26\\x6a\\xec\\xef\\x68\\x35\\x76\\xa6\\x51\\x51\\x6c\\x28\\x13\\x1c\\x13\\x5b\\xdd\\x62\\x4e\\x43\\x99\\x5e\\xa6\\x3c\\xdf\\x5b\\x9f\\x15\\x95\\xe3\\xf4\\x65\\x76\\x24\\x2f\\xe6\\xf0\\x4a\\xcc\\xd8\\x8e\\xca\\x82\\x5f\\xcf\\x66\\xdb\\xac\\xd6\\x8c\\xc5\\xa9\\x2c\\xb0\\xaa\\x70\\x89\\x80\\xf7\\x42\\x4e\\x5b\\xfa\\xae\\xf2\\x79\\x30\\xa8\\xb9\\x6b\\xb8\\xb8\\xb8\\x9f\\xe5\\x58\\xcd\\x6a\\xa5\\x29\\xcb\\xc3\\xfb\\xd4\\x97\\xec\\xfc\\xbb\\xf9\\x24\\xc3\\xc2\\x31\\x76\\x85\\xba\\x8f\\x11\\x92\\x96\\x7e\\x1d\\x5a\\x0f\\xfd\\x30\\xbc\\x6f\\x26\\x4a\\xc7\\xa5\\x92\\xf8\\xdb\\x86\\x7e\\x67\\x33\\x36\\x6a\\x90\\xfc\\x5f\\xb0\\x35\\x68\\x66\\x63\\x4e\\x71\\x0f\\x75\\x1a\\xab\\x4a\\x7e\\x16\\x7a\\x69\\x3e\\x80\\xe6\\x1b\\x8f\\x36\\xb4\\x1c\\xf1\\x4b\\xf0\\x02\\xbf\\xe5\\x76\\x5f\\xd2\\x8a\\x25\\x9c\\xe7\\x36\\xe3\\x76\\xf4\\x90\\xc5\\x95\\x9a\\xf2\\x44\\x1f\\xe3\\x49\\x3e\\xaf\\xa9\\xf1\\xca\\x64\\xc4\\x05\\xc8\\x0b\\x8e\\xa6\\x9b\\x47\\x9f\\x15\\xbf\\x6e\\x18\\x4b\\x27\\x74\\x18\\x6d\\xa3\\x56\\x55\\x8e\\xa9\\xb7\\x6c\\x39\\xa0\\x45\\x89\\xc4\\x5b\\x1b\\xfa\\x33\\x6d\\xea\\x59\\x56\\xc5\\x2b\\xd8\\xfb\\xe0\\xe5\\x69\\x69\\x07\\xd9\\xa7\\xba\\x81\\x20\\x05\\x5b\\x64\\x1f\\xb8\\x98\\xd5\\x50\\xc7\\xf7\\x01\\x3d\\x40\\xed\\xa1\\x11\\x66\\x79\\x84\\x69\\x71\\x72\\x43\\x9d\\x32\\xeb\\x88\\x35\\xd5\\x85\\x3a\\x45\\x8e\\x1e\\x73\\xf9\\x34\\x66\\xc8\\x55\\x9d\\x81\\x9c\\x1c\\xe8\\xac\\x6c\\x76\\x94\\x5e\\x03\\x44\\xac\\xca\\xf1\\x2b\\x01\\x5b\\x4e\\xfc\\x86\\xda\\x42\\x23\\x28\\xb2\\x7e\\xfb\\x93\\x86\\x74\\x3e\\xe9\\xea\\x46\\xa4\\x1b\\xfd\\xba\\x42\\x65\\xd0\\xbd\\x5e\\xb3\\x53\\xd8\\xc7\\xe2\\xaf\\x99\\x41\\x33\\xde\\xc7\\xc8\\x96\\xef\\xad\\xd1\\xeb\\x58\\x54\\xd7\\x01\\x79\\xf2\\x69\\x9b\\x91\\x4d\\x51\\x6e\\x68\\xa7\\x83\\x6b\\x9f\\x06\\x84\\xa9\\x6a\\xb9\\x18\\xdb\\x68\\xe2\\xbd\\x3c\\x4e\\x37\\x8c\\x01\\xca\\x29\\x78\\x60\\x1a\\x4f\\xde\\x00\\xfb\\x70\\xfa\\x2c\\x3a\\x17\\x25\\x25\\xf6\\xc1\\xa6\\xf0\\xe7\\xda\\xad\\xf7\\x41\\xfc\\x1d\\x90\\x27\\x63\\x01\\x58\\x7f\\x2a\\xad\\x68\\x6a\\xc1\\x21\\x25\\xaf\\x64\\x0b\\xa6\\x6a\\xf7\\x4a\\xdb\\x3b\\x0f\\x71\\xf4\\x80\\x69\\x01\\xa7\\x56\\xbc\\x1a\\xd1\\x03\\xc5\\x90\\xc5\\x37\\x05\\xeb\\xc3\\xe3\\xd7\\x26\\x62\\x69\\x4d\\x28\\xcd\\xa0\\xed\\x83\\x40\\x9e\\x82\\x7d\\xc7\\x69\\x75\\xa8\\x5c\\x56\\xdb\\x01\\xe2\\x3e\\x8a\\x87\\xe6\\x93\\x14\\x3f\\x6f\\x48\\x49\\x88\\x7b\\x1b\\x52\\xe2\\xe2\\x67\\x0d\\x29\\x31\\xe5\\xb2\\x1f\\x2a\\x6b\\x29\\xf9\\xa7\\x0d\\x65\\xa2\\x62\\x4f\\x43\\x4a\\x44\\xfc\\xa4\\x21\\xc5\\x11\\x7f\\xcf\\x91\\x10\\xde\\x3a\\x14\\x55\\x06\\x48\\x54\\x80\\x6f\\x8a\\xbd\\x0d\\xb5\\xda\\xc5\\x2f\\x1a\\x52\\xda\\xe8\\xa7\\x40\\xa7\\xfc\\xa8\\x9e\\x57\\x51\\xd4\\xa7\\x21\\xb1\\x14\\xb6\\x94\\xe7\\x8b\\xd0\\x96\\x95\\x5f\\xfb\\xb3\\x14\\x41\\xcd\\x5e\\x2a\\x88\\xfd\\x36\\x0a\\xc2\\x15\\x0f\\x93\\xc3\\x67\\x76\\x0f\\x3e\\xa5\\xa9\\x4b\\x75\\x00\\x3f\\xca\\xc0\\x4a\\x3b\\x95\\x16\\xd1\\x0a\\x5a\\x4f\\x9b\\x69\\x07\\xdd\\x45\\x0f\\xd2\\x21\\x7a\\x46\\x90\\xc8\\x88\\xaa\\x98\\x2b\\x16\\x88\\xc5\\xe2\\x42\\x31\\x24\\xc6\\xc5\\x06\\x71\\x35\\xfd\\x37\\x76\\xae\\x1a\\xb0\\xd7\\xb5\\x9c\\x39\\x11\\x28\\xe8\\x5e\\x3e\\x03\\x9d\\x2c\\x89\\x8c\\x67\\xd0\\x55\\x3f\\xa4\\xb6\\x56\\x96\\x15\\xfd\\x11\\x91\\x34\\x69\\xd8\\x5f\\x39\\xd8\\xa4\\x2e\\xcd\\x52\\x79\\xa4\\x96\\x40\\xe5\\x29\\xea\\xc3\\x7c\\x7a\\xe4\\xbd\\x8c\\x5a\\x9a\\x54\\x44\\xa8\\xd0\\xd3\\x94\\xe0\\xb1\\xd8\\x31\\x88\\x7f\\x04\\x3e\\x98\\xf3\\xf1\\x49\\xf1\\x0f\\x48\\x49\\x43\\x72\\x9b\\x48\\x9b\\x03\\x88\\x3e\\xf1\\xca\\x14\\xd5\\x09\\x6c\\xdb\\xb2\\x95\\x41\\xf7\\xe0\\xbb\\x87\\x41\\xb8\\x62\\x39\\xc5\\x98\\x9f\\xc2\\xb6\\xa5\\x67\\x28\\xc6\\xfd\\x1a\\x09\\xd5\\x03\\x6d\\x1c\\xc8\\xa7\\xfa\\x1a\\x45\\x3c\\x14\\x9c\\x5e\\x8b\\xcf\\xe0\\xc3\\xe2\\xb7\\x5c\\x26\\x47\\x45\\xf9\\x33\\x7c\\xc6\\x5c\\xd4\\x83\\xb0\\x72\\xd3\\x54\\x53\\x5f\\x26\\x05\\x0d\\xe2\\x04\\x9a\\x4b\\x4b\\x68\\x82\\xb6\\xd0\\x2e\\xba\\x9f\\x0e\\xd3\\x31\\x91\\x16\\xbd\\xe2\\x74\\xb1\\x50\\x2c\\x15\\x43\\x62\\x4a\\x5c\\x25\\xae\\x13\\x37\\x8b\\xdd\\xe2\\x6e\\xb1\\x57\\xec\\x17\\x8f\\xa8\\x22\\x64\\x92\\xa6\\x8d\\x20\\x9f\\xa9\\x70\\x94\\xdc\\x6c\\x72\\xd5\\x2c\\x70\\x97\\x5e\\xa0\\x13\\x8c\\x43\\x62\\xad\\x0b\\xb0\\x5e\\xfb\\x55\\x05\\x92\\xae\\x31\\xdf\\xc3\\x07\\x8c\\xf7\\xbb\\xb1\\x7d\\x83\\xfd\\xbe\\x0e\\x9c\\xb8\\x0b\\xf4\\xee\\xdb\\x43\\xba\\xcd\\xcd\\x8c\\xbe\\x94\\x9b\\xfc\\x7a\\x03\\x40\\x53\\xd2\\xc0\\xd7\\x5c\\xf6\\x74\\x68\\x09\\xf7\\xcf\\x88\\x95\\xaa\\x84\\xbd\\x7b\\x62\\x21\\xce\\x7d\\xa8\\x77\\xf1\\x28\\xc5\\xb9\\x24\\x7b\\xdb\\xc4\\xef\\xb0\\x63\\x69\\xee\\xa3\\x4b\\x95\\x80\\x46\\x58\\x7f\\x98\\x58\\xc1\\xf9\\xdc\\xa7\\xfa\\x25\\x4e\\x98\\x17\\xd1\\xd9\\x41\\xa7\\x73\\x7e\\x85\\xf5\\xde\\x7f\\x42\\x3c\\x92\\xf5\\x39\\x8b\\x47\\x10\\x5f\\xe4\\xf9\\x97\\xe7\\xe0\\x94\\xd5\\x80\\x15\\x57\\x29\\x02\\xcf\\x7a\\x99\\xaa\\xaa\\x40\\x8e\\x99\\xb3\\xda\\x4a\\x8e\\x49\\x55\\x65\\xec\\xaf\\xa6\\x81\\x0f\\x91\\xa4\\x2c\\xce\\xda\\x32\\xda\\x48\\xb7\\xd0\\x3e\\x7a\\x5a\\xb8\\xe2\\x74\\xb1\\x54\\x4c\\x31\\x76\\xf1\\xb8\\x78\\x51\\xf6\\xc8\\xb9\\x72\\xbe\\x5c\\x24\\x97\\xca\\x8b\\xd5\\x0d\\x40\\x2a\\xb2\\x6c\\x33\\x54\\x18\\x2b\\xf0\\xf0\\x9f\\x4c\\x23\\x62\\x2f\\x7e\\x8f\\x3d\\x4d\\xb3\\x47\\x30\\xdd\\x3a\\x06\\x4f\\x9c\\x46\\x59\\x9c\\x42\\x97\\x75\\xe5\\x6c\\x00\\x25\\xe2\\xc8\\x37\\xfa\\x1c\\xca\\xcc\\xb6\\x65\\x7c\\xbd\\xd2\\xa7\\xfa\\xed\\x94\\x05\\x05\\x19\\x3f\\x56\\x3a\\x60\\x11\\x59\\x54\\x48\\x9c\\xde\\xd0\\x57\\x0e\\xad\\xe6\\x82\\x16\\xb6\\xea\\x03\\xfa\\x3a\\x73\\x5f\\x45\\xba\\x95\\x3a\\x02\\x3d\\x79\\x5e\\x49\\xdf\\xb7\\xf0\\x5a\\xfc\\xaa\\xb7\\xdf\\x8b\\xa1\\x7c\\x13\\xdb\\xa3\\xad\\xf0\\xd7\\x30\\xdf\\x09\\xf6\\x60\\xb1\\x7f\\xd5\\x07\\x5e\\xd6\\xba\\xff\\x6b\\x41\\x9d\\x7e\\xcf\\x2e\\x5b\\xf3\\x15\\xaa\\xa9\\x5e\\xc4\\x32\\x76\\x42\\x03\\x0a\\x53\\xf8\\x19\\xc8\\xf1\\xfb\\xf3\\x23\\x0d\\xe7\\x36\\xe4\\xf8\\xf1\\x26\\xaf\\xa3\\xb6\\x50\\x8e\\x69\\xab\\x47\\xcd\\xa6\\x08\\x15\\xd9\\xb7\\xf1\\x33\\x7c\\x36\\x7b\\x7d\\x90\\x51\\x02\\xad\\xc7\\xd6\\xc8\\x31\\x23\\x11\\x87\\x48\\x51\\x95\\x47\\x74\\x0e\\x30\\xb2\\x3d\\x74\\x58\\x38\\xa2\\x5f\\x9c\\x23\\x86\\xc4\\x95\\x62\\x9b\\xd8\\x25\\xea\\xa0\\x8f\\x7e\\x1f\\xed\\x0b\\xf9\\x7f\\x83\\x11\\x28\\x43\\x40\\xaf\\x67\\x2e\\xe9\\x59\\x2a\\x2b\\x5f\\xa6\\x1c\\xeb\\xb9\\x62\\x35\\xa4\\x6c\\xb8\\x5c\\x47\\x63\\x54\\x88\\x58\\x05\\x1a\\x9a\\xb9\\xb5\\x5e\\x2a\\x8b\\x35\\x2d\\xca\\x18\\x4f\\x71\\xd5\\xc6\\x74\\x5c\\x06\\x1a\\x6c\\x2c\\x13\\xf0\\x21\\x8b\\x4b\\xa0\\x4f\\x84\\x4b\\x04\\xa2\\xa3\\xc5\\x08\\x6c\\x8b\\x70\\xfe\\x6c\\x78\\x9d\\xf5\\x38\\x87\\x41\\x0f\\xe1\\xdc\\x6e\\x63\\x79\\x88\\x4b\\xc1\\xfd\\xc2\\x79\\x9a\\x5e\\x3b\\xc4\\x20\\x74\\x8d\\x40\\x8e\\xba\\x1f\\xbc\\xaa\\xc6\\xe7\\xb9\\x48\\xef\\xa6\\xed\\xf4\\x10\\xbd\\x20\\xfa\\xc4\\xb9\\x62\\x54\\x6c\\x15\\x77\\x8a\\x47\\xc5\\x8b\\xb2\\x2a\\xcf\\x96\\x43\\xf2\\x6a\\x79\\x8b\\xdc\\x2b\\x1f\\x53\\xa4\\x66\\xa9\\xf9\\xea\\x22\\xb5\\x4e\\x6d\\x55\\xbb\\xd5\\x3e\\xf5\\x84\\x23\\x9d\\x59\\xce\\x99\\xce\\x05\\xce\\xb8\\xb3\\xc9\\xd9\\xe1\\xdc\\xe3\\x3c\\xe2\\x3c\\x1b\\x69\\x8f\\xf4\\x45\\xe6\\x47\\x96\\x46\\x46\\x22\\x57\\x45\\x6e\\x8c\\xdc\\x11\\x79\\x30\\xf2\\x78\\xe4\\xf9\\x68\\x26\\xda\\x1f\\x9d\\x1f\\x5d\\x12\\x5d\\x13\\xdd\\x10\\xdd\\x12\\xdd\\x11\\xbd\\x2b\\xfa\\x60\\xf4\\x70\\xf4\\x68\\x2c\\x1e\\x2b\\xc5\\xe6\\xc4\\x16\\xc4\\xce\\x8f\\xad\\x88\\x8d\\xc7\\xae\\x8c\\x6d\\x89\\x6d\\x8f\\xed\\x8e\\xed\\x89\\xed\\x8b\\x1d\\x88\\x3d\\x16\\x7b\\x3a\\x76\\x2c\\x2e\\xe3\\xed\\xf1\\x9c\\x7c\\x3d\\x62\\x4e\\x32\\x6c\\xb5\\x9b\\x15\\x35\\xb8\\x54\\x8e\\x71\\x51\\x97\\x79\\x38\\xf0\\x2c\\x79\\x16\\xa8\\xdf\\x2b\\x9f\\x87\\x86\\x69\\x62\\x3b\\xfb\\x19\\x7d\\xab\\x78\\x1c\\x43\\xbe\\x91\\xb1\\x02\\x53\\xd6\\xdc\\x45\\xc8\\x84\\xa2\\x96\\x0c\\x46\\xf6\\x2c\\xac\\xc3\\x4c\\x28\\xaa\\xa2\\x29\\xd2\\x51\\x2e\\x02\\xe5\\x79\\xad\\x19\\x14\\xce\\x97\\x5d\\xa6\\xc7\\x33\\x43\\x65\\xba\\xc0\\x35\\x1b\\x30\\x40\\xfa\\x1f\\x5b\\xc6\\xef\\xad\\x21\\x12\\x52\\xdd\\x84\\x14\\x23\\x1d\\x8d\\x2d\\xdc\\xd1\\xc4\\x17\\x46\\x29\\xcb\\x71\\x18\\xc6\\xbb\\x90\\x09\\xc4\\xa3\\x70\\x3c\\x8d\\x3c\\x0f\\x2b\\x1a\\xee\\x2b\\x14\\xdb\\x21\\x5f\\x6b\\x4b\\xe4\\x6d\\x74\\x5f\\x25\\x18\\x49\\x21\\xdf\\x11\\x2a\\x61\\x6d\\x17\\xff\\xb6\\x80\\x3c\\x37\\x54\\xa2\\xc2\\xda\\x4e\\x1a\\x74\\x6f\\xa2\\x7a\\xdf\\x81\\x11\\x35\\xb7\\xe1\\xb5\\x70\\x06\\x74\\x06\\x9f\\x0a\\xd2\\x2c\\x8f\\x8d\\xbf\\xec\\xb5\\xa1\\x5c\\xff\\x7e\\x03\\x74\\x03\\xb9\\x38\\x94\\xcb\\xf1\\x2e\\xde\\x0d\\x06\\x39\\x3f\\x94\\xdb\\x8d\\x5d\\x2b\\x7b\\xb6\\xb0\\x18\\x47\\x0c\\x49\\x79\\x06\\x1f\\xd6\\xc2\\x50\\xdd\\x32\\x73\\x57\\x78\\x71\\xa8\\x5f\\xbe\\x01\\x3b\\xe2\\xe5\\x76\\x5a\\x6f\\xb4\\xb6\\xf6\\xdf\\x1a\\xca\\x2b\\x73\\x54\\x93\\x19\\xd1\\x2c\\x96\\x5c\\x3d\\x81\\x68\\x1a\\xcf\\x03\\xfc\\xe6\\x50\\xbd\\x3c\\x6c\\x94\\x0a\\x6a\\xf7\\xd3\\x9b\\x50\\xcf\\xff\\x9e\\xc2\\xef\\xbf\\x57\\x41\\x79\\xf3\\x9b\\xf2\\xbc\\x88\\xaa\\xaa\\xfc\\xb9\\x6d\\xd3\\xa7\\x81\\x0c\\xaf\\xdd\\x6b\\x42\\xfd\\xa5\\x83\\xf7\\x1e\\x94\\x89\\xef\\xec\\x80\\x0e\\xd2\\x18\\xd5\\xf5\\x79\\xd8\\xd9\\xe1\\x36\\x8d\\x1c\\x3f\\x95\\x73\\x9a\\x62\\x6e\\xe5\\xb9\\xb6\\x4e\\xde\\xf3\\xb6\\xf3\\x8a\\xcc\\x85\\x9d\\xdd\\xcf\\xf1\\x4a\\x01\\x4b\\x9f\\x0e\\xa0\\x4e\\x9f\\xa5\\x19\\xcf\\xf2\\xe9\\x97\\x6f\\x09\\xb5\\x66\\x74\\xd3\\x1c\\xb4\\x84\\xb7\\xb1\\x3d\\xef\\xc5\\x2e\\x54\\xb9\\x94\\x4b\\x5b\\x60\\x51\\x34\\x8e\\xba\\x28\\xcf\\xb1\\xe9\\x79\\xb6\\x24\\x4f\\xa2\\x93\\x28\\x2d\\xe7\\x85\\xd2\\xb3\\x4c\\xb5\\x3d\\xf4\\x46\\x58\\xcf\\xc1\\xd5\\x86\\x05\\x21\\xfe\\xc0\\xba\\x68\\x4f\\x58\\x63\\x96\\x6f\\x0a\\xb5\\xd3\\xed\\x69\\x7b\\xf2\\xec\\x50\\xba\\xe1\\x23\\x2e\\x55\\xe4\\xdb\\x1a\\xc6\\xc3\\x91\\x42\\xea\\x56\\x46\\x11\\x5c\\xd6\\x55\\x99\\x43\\xa8\\x6f\\xc1\\x8e\\x2e\\x5a\\x4e\\x89\\x28\\x51\\xb9\\x00\\x36\\xb7\\xbf\\x42\\xc6\\xe3\\xff\\xba\\x50\\x6a\\x06\\x7e\\x33\\x57\\x8c\\xc1\\xe7\\x57\\x0e\\x7b\\x2a\\xe5\\xbb\\x42\\x65\\x6b\\xf0\\xe7\\xe4\\xe4\\xdb\\x43\\xa9\\x8c\\x6a\\xca\\x77\\xc2\\xca\\xf6\\x4f\\xa1\\x4b\\xae\\x3c\\x3d\\x94\\x86\\xf8\\x34\\x79\\x5a\\x28\\x4d\\xef\\x44\\x41\\x7e\\x82\\x7d\\x86\\x41\\x14\\xe0\\x3f\\x50\\x0e\\x14\\x8c\\xbe\\xfb\\xa8\\xa4\\x5e\\xc9\\x75\\x7b\\x7c\\x44\\x44\\x3c\\x19\\x2a\\x67\\x7c\\x7d\\xff\\x82\\xf6\\x42\\x11\\x5f\\xb4\\x19\\x9a\\xff\\x6c\\xf6\\x89\\x42\\xaf\\x16\\x87\\x21\\x3d\\xcd\\x7e\\x61\\x07\\xd5\\x49\\xb0\\xb0\\x8b\\xd4\\x05\\xeb\\x43\\x6b\\x43\\xaf\\x82\\x6e\\xdf\\xcf\\xb1\\x32\\xfd\\xe2\\xdf\\xf1\\xdd\\xeb\\x2f\\x21\\x9e\\x08\\x7d\\x8f\\xe3\\x57\\xe0\\xfd\\xef\\x31\\xf9\\x1d\\xc8\\x63\\xd3\\x6f\\x8d\\x66\\x8b\\x7f\\x0d\\xe5\\x47\\xe5\\xab\\x11\\xf3\\xc1\\xb4\\xaf\\x4e\\xc6\\x37\\x83\\x74\\x74\\x0b\\x13\\x47\\xc2\\xbb\\x22\\x9e\\x82\\x9d\\xd0\\x8b\\xf8\\xb5\\xc7\\xf1\\x19\\xad\\xa8\\x13\\x61\\x17\\xe2\\x9c\\x8a\\xc7\\x60\\x33\\x68\\xcd\\xef\\x5e\\x72\\x98\\x5a\\xcf\\xe0\\x68\\xd4\\xb2\\x7a\\x05\\xd2\\xaa\\x54\\x53\\xa7\\x78\\xde\\x50\\x3a\\x89\\xce\\xa7\\x75\\xb4\\x8d\\xee\\xa1\\xc3\\x42\\x8a\\x3e\\xb1\\x50\\x0c\\x89\\x8d\\x62\\xbb\\xd8\\x23\\x0e\\x88\\x67\\x64\\x52\\xf6\\xca\\x33\\xe5\\xf9\\x72\\x95\\xdc\\x20\\xb7\\xca\\x5b\\xe5\\x1e\\xf9\\x90\\x7c\\x5c\\x1e\\x53\\x49\\x55\\x52\\xa7\\xaa\\xf9\\xea\\x5c\\x75\\x81\\x1a\\x54\\x23\\x6a\\x9d\\xba\\x52\\x6d\\x52\\x5b\\xd5\\x36\\x35\\x87\\xcf\\x5d\\x0f\\x66\\xe1\\x45\\x45\\xda\\xf8\\x33\\xd6\\x37\\xff\\x93\\x63\\x92\\x4a\\x21\\xa9\\x15\\xba\\x99\\x44\\x5f\\x84\\x56\\x66\\x62\\xa2\\x3c\\xe4\\xac\\x91\\x0f\\xcd\\xd7\\x9c\\xb8\\x89\\x53\\x06\\xb8\\x1f\\xfd\\x91\\xe3\\xd7\\x6b\\xe0\\x1b\\x7c\\xbb\\x25\\x14\\x6b\\xff\\xa6\\x19\\xda\\xb0\\xdc\\x55\\x2c\\x42\\x7b\\x45\\xe8\\x72\\x9a\\x37\\x34\\xf2\\x8f\\x9f\\xb0\\x8c\\xae\\xf1\\xfd\\xa8\\x62\\x43\\xf4\\xf7\\x11\\xc8\\x11\\xc3\\x9f\\x52\\xd6\\xc3\\xe3\\xb5\\xf1\\xc6\\x80\\x57\\xa0\\x89\\xa7\\xd0\\xdf\\xa3\\x0f\\x8f\\x7e\\x4a\\x2c\\x3b\\x4c\\xac\\xed\\xb7\\xc1\\x37\\x73\\xcd\\xfc\\x59\\xcc\\x03\\x77\\xcc\\x72\\x7f\\xc1\\xd8\\xa4\\x2a\\x72\\xbc\\xb1\\x04\\xfc\\x2c\\xf2\\x7c\\x6a\\xe3\\x71\\x84\\x79\\xe4\\x5a\\x78\\x43\\xab\\x8c\\xa9\\x58\\x34\\x5c\\x5e\\xc6\\x98\\x9e\\x1b\\xbc\\x85\\x21\\x5e\\x8f\\xf8\\x83\\x0a\\x5b\\x8d\\x35\\xf8\\xb4\\x5d\\xf1\\x5f\\xc0\\x15\\xbd\\x36\\x3c\\xbf\\xe7\\x7d\\xe0\\x3a\\x0d\\xb4\\xa2\\xbe\\x8d\\x76\\x8d\\x7e\\xa2\\x77\\xc6\\xc4\\x13\\xae\\x67\\x14\\xcf\\xf5\\x6f\\x5b\\x88\\x37\\x20\\x2d\\xcb\\x11\\x09\\xf0\\x5a\\x8a\\xb7\\x20\\xcd\\xdc\\x29\\xf3\\x78\\xea\\x56\\x4a\\x34\\x52\\x92\\xfc\\x05\\xc7\\x86\\x7b\\x56\\x43\\x96\\xe6\\x01\\x39\\xcb\\x04\\xd0\\xdc\\x37\\xe0\\xec\\x66\\x6c\\x3b\\x5f\\x60\\x24\\x87\\x63\\x22\\xc4\\x87\\x11\\x6b\\x50\\x60\\x54\\x60\\x82\\xcf\\xa7\\xee\\xe5\\x4c\\x7c\\xc6\\x2a\\xcb\\xfb\\xf8\\xfc\\x65\\xe9\\xe7\\xc0\\xc8\\x72\\x94\\x97\\x9f\\x43\\x9a\\xd6\\x67\\xd7\\xf1\\x89\\xed\\x95\\xef\\x26\\xa5\\x4f\\xbb\\xbc\\x96\\x14\\x15\\xa8\\x4a\\xaf\\x07\\x82\\x93\\xa1\\x02\\x9d\\x41\\x2b\\x68\\x13\\xdd\\x46\\xbf\\xa5\\xe7\\x44\\x4e\\x9c\\x2e\\x96\\x88\\x51\\xb1\\x49\\xdc\\x22\\xee\\x13\\x87\\xc4\\xf3\\xb2\\x4b\\xce\\x91\\x8b\\xe4\\x0a\\xb9\\x4e\\x6e\\x92\\x37\\xca\\x5d\\xf2\\x6e\\xf9\\x80\\x7c\\x58\\x3e\\x00\\xef\\x9d\\xf1\\xd0\\xe5\\x42\\xfb\\x59\\x65\\x2e\\x6b\\x46\\x9a\\x95\\xbf\\x3a\\x6e\\xc9\\xe0\\x3d\\xd6\\x5f\\x42\\x4f\\x9e\\xa9\\x24\\xaf\\x9a\\xbc\\x1f\\x67\\x7b\\xa6\\x52\\x26\\xba\\xeb\\x57\\xa0\\xca\\x99\\xcb\\x14\\xc5\\x33\\xec\\x23\\xca\\x41\\x8b\\xf6\\x7c\\x44\\xae\\x17\\xb1\\x23\\x37\\xc3\\x9a\\xaa\\x79\\x88\\x9e\\xa5\\x5b\\xa3\\x55\\xbd\\x19\\x27\\xce\\xc3\\x08\\x6a\\xec\\xd3\\xac\\x1a\\x6f\\xa9\\xfc\\x01\\xfa\\x68\\x19\\x77\\x21\\xf7\\x72\\xd4\\x4f\\x8b\\x91\\xc9\\xdb\\x39\\xf2\\xc5\\xef\\xd3\\xa2\\x26\\xe2\\x7f\\x38\\xc2\\x22\\x38\\xde\\x22\\xfb\\x90\\xff\\x84\\x36\\xfb\\x02\\x37\\x88\\xcb\\x2c\\x95\\x2a\\xe2\\xbf\\x59\\x0a\\xfa\\xf1\\x15\\x2e\\x64\\x9b\\xd6\\x57\\xce\\x82\\xdd\\xd7\\xc7\\xda\\x44\\xde\\xf3\\x0b\\x53\\x95\\xfe\\x17\\x39\\xc1\\x91\\xf4\\xf1\\x88\\x8f\\x36\\xe5\\x20\\x0a\\x91\\xf2\\x74\\x0c\\x5a\\x45\\x1f\\x97\\xcd\\xe2\\x1c\\xd4\\xa8\\x2a\\xdf\\x83\\x53\\xe8\\x8f\\xdc\\xcc\\xf6\\x1f\\x70\\x66\\x4e\\xc4\\x1a\\x9a\\x48\\xa7\\x1e\\xf5\\x6a\\x9c\\x99\\x1a\\xe3\\x41\\x59\\xca\\xca\\x0f\\x59\\xa4\\xcb\\xc4\\x8e\\x5e\\x07\\x34\\xd9\\xf8\\x31\\x0a\\xe2\\x69\\xc8\\x2f\\x6f\\x6e\\x97\\x83\\xe6\\x75\\xed\\xe7\\x48\\x51\\x27\\x65\\x90\\x3b\\x87\\x16\\xd3\\x10\\x6d\\xa0\\x2d\\x6a\\x2e\\x75\\x18\\x99\\x6e\\xfd\\x30\\x1d\\x5e\\x14\\x39\\x4e\\xec\\x2e\\x96\\xe9\\x2e\\x7b\\x7a\\x43\\xbe\\x39\\xf5\\x1a\\x6a\\x6b\\xa8\\x0d\\xf4\\x5f\\x7d\\x85\\xda\\x70\\x76\\x7d\\xbe\\x0c\\xcb\\x40\\x9d\\x06\\xb4\\xd7\\x94\\xef\\x83\\x6c\\xe8\\x56\\x3b\\x81\\xc4\\xa6\\x3d\\xed\\x98\\xde\\x4f\\xb7\\xd1\\x63\\xc2\\x15\\x67\\x8b\\x09\\x71\\xb3\\x78\\x48\\xbc\\x20\\xfb\\xe5\\x79\\x72\\x9d\\xbc\\x49\\xde\\x2f\\x8f\\x28\\x57\\xcd\\x53\\x17\\xab\\xab\\xd4\\xad\\xea\\x41\\xf5\\x8c\\xd3\\x85\\x08\\x88\\x0d\\xce\\x4d\\xce\\xbd\\xce\\xe1\\x08\\x45\\xaa\\x91\\x05\\x91\\x8b\\x23\\x1b\\x22\\xdb\\x22\\x77\\x45\\x0e\\x44\\x8e\\x46\\xdd\\xe8\\xdc\\xe8\\x79\\xd1\\x91\\xe8\\x35\\xd1\\x1d\\xd1\\x7b\\xa3\\x07\\xa3\\xc7\\x62\\x5d\\xb1\\xb9\\xb1\\xc5\\xb1\\x55\\xb1\\x2b\\x63\\xdb\\x62\\x77\\xc4\\xf6\\xc7\\x9e\\x8c\\xcb\\x78\\x21\\x7e\\x5a\\x7c\\x51\\xfc\\xe2\\xf8\\x54\\x7c\\x13\\xc7\\x3e\\x3c\\x1a\\x3f\\x12\\x7f\\x31\\x91\\x49\\xf4\\x26\\x4e\\x4f\\x2c\\x4c\\x2c\\x4d\\x0c\\x25\\xa6\\x12\\x1b\\x13\\x5b\\x12\\x37\\x25\\x76\\x26\\xee\\x4c\\xdc\\x97\\xd8\\x9f\\x78\\x34\\xf1\\x44\\xe2\\xd9\\xc4\\x0b\\xc9\\xa8\\xec\\xa1\\x9e\\x40\\xec\\x11\\xfb\\x92\\x58\\x1b\\xcb\\x5b\\xec\\xce\\x9c\\x68\\xa0\\xab\\x32\\x8f\\x1b\\x1c\\x2f\\x57\\xc3\\xc6\\xa2\\xc9\\xc2\\x5f\\x55\\xde\\xc6\\xc0\\xc9\\xcf\\x73\\x79\\xff\\x26\\x48\\xf3\\x8d\\xc2\\x32\\xeb\\x60\\x2e\\x55\\xd4\\x3c\\xc4\\xa7\\x98\\xbb\\x9f\\xd9\\x50\\x1c\\x5b\\x8e\\xd1\\xb1\\xd0\\xed\\x07\\xf5\\x75\\xca\\xa1\\x84\\x7f\\x7e\\x3c\\x0f\\x5e\\x38\\x15\\xda\\x9b\\x3a\\x83\\x63\\xf9\\x0a\\x4d\\xa8\\x5f\\xca\\xda\\x08\\x45\\x58\\xd5\\x15\\x3a\\x1b\\xa7\\xc1\\xf0\\xc8\\xe3\\xde\\x9e\\xa7\\xb7\\xf1\\xdd\\xf6\\xfe\\x97\\x29\\xf7\\x16\\xf8\\x82\\x5b\\xb7\\xc8\\xde\\x75\\xf8\\x1c\\xfe\\x84\\x72\\x26\\x1a\\x05\\x5e\\x4d\\x7b\\x62\\xdd\\xe0\\xfb\\x06\\xe2\\x7f\\x5b\\x94\\x6b\\x71\\x1b\\x52\\xbd\\x19\\x1c\\xa5\\xcf\\x7a\\x7a\\x5d\\xd8\\xf8\\xc6\\x1b\\x59\\xb5\\x5e\\xb2\\x85\\xd8\\xc1\\x56\\xb3\\x08\\x8c\\x4d\\xfe\\x18\\x56\\x47\\x48\\xbb\\x69\\x9a\\x67\\x96\\xc6\\x6c\\x5b\\x7e\\x74\\x49\\xda\\xde\\x5c\\x66\\x8e\\xa9\\xde\\x84\\xb6\\x5e\\x66\\xef\\xd4\\xeb\\xd9\\x07\\x6a\\x28\\xc2\\x8b\\x4b\\x0c\\xcd\\x42\\x5e\\xcc\\x65\\xaa\\xac\\x93\\x95\\xb9\\xa5\\xc0\\x3c\\xc4\\x73\\xa8\\x1d\\x5e\\xad\\xc6\\x5b\\x9b\\xd7\\x73\\xfc\\x43\\xcd\\x22\\x31\\x3e\\x5f\\xf5\\xb0\\xfb\\xa3\\x2d\\xda\\xe9\\xc4\\x2c\\xbb\\x19\\xc1\\x73\\x69\\x21\\xfa\\x3c\\xce\\x5a\\xaa\\x79\\x8c\\x43\\xcd\\x48\\xe7\\xea\\x8c\\x40\\x89\\x96\\xb4\\x2a\\x8e\\xe2\\x6f\\xeb\\x91\\x60\\x1c\\xea\\x75\\xec\\xe1\\x2c\\x84\\x51\\x06\\xcf\\x47\\x42\\xdf\\xa0\\x0e\\x7b\\x3a\\x19\\x21\\xc6\\x1c\\x2a\\x46\\xce\\xc8\\x2d\\x81\\xfc\\xc6\\x68\\x66\\xbd\\xcf\\xb7\\xb4\\xac\\x5f\\x65\\xcc\\xb3\\x2c\\xbf\\x0b\\x19\\xed\\xed\\x8b\\xb1\\xf8\\x2c\\xc7\\xa6\\x6f\\xe2\\xee\\x4f\\x63\\x6d\\xf6\\x99\\xc8\\x07\\x51\\xd7\\x93\\x84\\x8d\\x58\\xc2\\xdf\\x85\\x5a\\x6e\\x8c\\x2f\\x99\\xcf\\xb9\\x05\\x6b\\xfd\\x17\\xfd\\x9d\\x54\\x6f\\x0c\\xe4\\x96\\x03\\xf3\\xd3\\x3a\\x57\\x17\\xed\\x68\\x39\\x2a\\x4f\\xb7\\xf8\\x16\\x47\\x49\\x54\\x03\\x6f\\x78\\x94\\x6c\\x54\\xeb\\x0b\\xd0\\xee\\xc2\\x7c\\xc7\\x68\\x5b\\x59\\xea\\x54\\xbb\\xb8\\x6e\\x17\\xd6\\xa2\\xc8\\x92\\xd5\\xc4\\xb1\\x16\\xe5\\x8f\\x78\\xee\\x16\\xe1\\xf0\\x6f\\x0b\\xab\\x37\\xf0\\xae\\x14\\x40\\x1f\\x5e\\xbc\\x98\\xf1\\x8c\\x5d\\xcf\\xfc\\xb9\\xdf\\xee\\x90\\xf5\\x72\\x8a\\x49\\xe6\\x08\\x45\\xcb\\x39\\xec\\x1d\\x78\\xb1\\x2e\\x90\\xe7\\xcf\\xd3\\xe8\\xb9\\xc3\\xb6\\x4d\\xff\\xfc\\xb2\\x9d\\x2f\\xfe\\x6c\\x11\\x8c\\x52\\xa3\\xcd\\x22\\xbf\\x10\\xea\\xcf\\x9c\\xc1\\x1a\\xc7\\x9b\\x5f\\x87\\x5b\\x3f\\x25\\x2b\\x83\\x7d\\xfd\\xf3\\x8b\\xa1\\x9c\\xc0\\x3d\\x18\\xb9\\x35\\x94\\x13\\xd0\\xef\\xc4\\x54\\x28\\x27\\x17\\xb8\\x4d\\xf5\\x3c\\xe7\\x98\\xf1\\x05\\xa9\\xfe\\x1c\\x44\\x9a\\xb4\\xe0\\x4a\\xb2\\x16\\xaa\\x13\\xb0\\x89\\xc4\\xff\\xe1\\x66\\x50\\x29\\xb0\\xcb\\xb8\\xfb\\x2f\\x3e\\xc5\\xba\\x94\\x7f\\xd7\\xd9\\xf8\\x54\\xde\\xca\\xd1\\x0f\\xfd\\x41\\x2f\\x83\\x3a\\x93\\x6d\\xa2\\x42\\xe0\\x2e\\x7b\\x5a\\xee\\xe7\\x54\\x8f\\x86\\xcd\\x58\\xce\\x6b\\x48\\x05\\x2f\\x93\\xfb\\xd8\\x52\\xaa\\xb1\\x65\\x6a\\x22\\xe1\\xef\\x02\\xa6\\x11\\xb6\\x35\\xa7\\x71\\xf7\\x26\\xb4\\xaf\\x72\\x09\\x2c\\x9b\\xa2\\xff\\x2e\\x88\\xf8\\x0b\\x34\\xb9\\xc0\\x8d\\x31\\xf9\\x10\\xdf\\x8c\\xf5\\x51\\x94\\x3f\\x32\\x16\\x62\\xf9\\x8b\\xfa\\x01\\xa7\\xa4\\x58\\x82\\xe7\\xd5\\x6b\\x91\\xd2\\xc5\\x1c\\x4c\\xeb\\x5b\\xa7\\xc3\\xbb\\xdd\\x6f\\xdf\\xa1\\x38\\x93\\x62\\xf0\\x89\\x9a\\x35\\xef\\x16\\xcf\\x22\\x3f\\xcf\\xfc\\xdb\\x55\\x67\\x01\\x0f\\xc9\\x73\\x8d\\x8a\\x7c\\x98\\xa2\\xb6\\x7c\\x46\\xfe\\x06\\x16\\x16\\x73\\x01\\xf9\\xb7\\xf8\\xc6\\x6b\\xa3\\x16\\xc0\\xef\\x6d\\xf4\\xfb\\x05\\xc0\\x40\\x40\\x51\\xe2\\x18\\xee\\xc4\\x98\\xb7\\x60\\x76\\xc3\\x0e\\xc3\\x3e\\xc9\\xf7\\x72\\x04\\x83\\xe6\\xab\\x5f\\xe2\\x32\\x9a\\x97\\xfc\\x1a\\x75\\xf5\\x1c\\xaa\\xf2\\xef\\xa1\\xa3\\x6a\\x0e\\xfd\\x2b\\xb6\\xda\\xf2\\xea\\x3b\\xb0\\xd0\\x6a\\x54\\xc5\\x2b\\x11\\xf3\\x69\\x88\\xae\\xa2\\x1d\\x74\\x2f\\x3d\\x42\\x5f\\x46\\x74\\x7d\\xce\\xde\\x64\\x0b\\xf9\\x11\\x19\\xe3\\xf4\\x62\\xee\\x6f\\x80\\x07\\x7c\\xe6\\xb2\\x1e\\x3e\\x32\\x0e\\x0a\\xc3\\x7d\\xb2\\x50\\xcc\\x20\\xdb\\x12\\xea\\x6c\\xce\\xaf\\x06\\x30\\x08\\xe3\\x8f\\xc4\\x2c\\xd5\\x5b\\xe0\\xd3\\x72\\x2d\\x0e\\xe2\\xdd\\x4f\\xd6\\x29\\x8b\\x60\\xc9\\x7b\\x6d\\xfb\\xe8\\xf1\\xdb\\x71\\x8f\\xd9\\xa4\\x9f\\x4a\\x17\\xd1\\x35\\x74\\x07\\x1d\\x16\\x49\\x71\\xba\\xb8\\x50\\x6c\\x10\\x37\\x89\\x7b\\xc4\\x21\\xf1\\x82\\x2c\\xc8\\x79\\x72\\xa9\\x1c\\x97\\x9b\\xe4\\x0e\\x79\\x8f\\x3c\\x20\\x9f\\x56\\x51\\x55\\x52\\xa7\\xa9\\x73\\xd4\\x45\\x6a\\x54\\x6d\\x54\\xd7\\xa9\\x5b\\xd4\\x9d\\xea\\x7e\\x75\\x40\\x3d\\xa1\\x8e\\x3a\\xd2\\xc9\\x38\\xb3\\x9c\\x53\\x9d\\x33\\x9d\\x45\\xce\\x52\\x67\\x85\\x73\\x89\\xfc\\x3d\\x56\\xc3\\x60\\x2e\\x66\\x64\\xe6\\xcd\\x81\\x22\\x47\\x11\\xfa\\x1e\\x68\\x7d\\x42\\xee\\xc7\\xb7\\x82\\xc5\\x3e\\x8e\\xa3\\x59\\x89\\x97\\x78\\xbf\\x3d\\xbb\\xab\\x9d\\x14\\xcb\\xd5\\x2e\\x8e\\x61\\xaa\\xf2\\x6b\\x35\\x7d\\xea\\x4e\\xec\\xb4\\xdf\\xee\\xcc\\x2f\\x1e\\x1d\\x82\\x06\\xd8\\x7a\\xbc\\xe1\\xb1\\x7e\\x98\\xad\\x92\\x92\\xf5\\x7b\\x57\\xf8\\xcd\\x2b\\x7b\\x37\\x50\\x7d\\x97\\xa3\\x7b\\x4b\\x8d\\x9e\\x3f\\x8b\\xef\\x54\\xe4\\xef\\xd1\\x77\\xeb\\x1e\\x8d\\xdd\\xfc\\x3e\\xbe\\x75\\x13\\xf2\\xae\\x30\\x57\\x29\\x52\\xaf\\x3c\\xc4\\x58\\x46\\xeb\\x16\\x8a\\x6a\\x37\\xc7\\x66\\x14\\x59\\x82\\xa7\\x78\\x44\\xe6\\xa5\\x86\\x17\\x21\\x19\\xfd\\x79\\x54\\xec\\xfd\\x04\\xad\\x4d\\xbc\\x0d\\xb9\\xbe\\xf7\\xba\\x8c\\x59\\x1a\\x3d\\xa9\\x40\\xbf\\xb4\\x9e\\xf2\\xe6\\xfd\\x3a\\x17\\x79\\x99\\xc0\\x4d\\x84\\x0c\\xe3\\x3b\\x55\\xf5\\x00\\xf0\\xa8\\x12\\xcb\\xea\\x80\\xf7\\x4e\\xfd\\x08\\x96\\xac\\xef\\xa5\\xb3\\xd8\\xb0\\x14\\xa8\\x53\\x0b\\xdc\\x5d\\xf1\\x7c\\x65\\x5f\\xb1\\x71\\x76\\x66\\x85\\xf3\\x88\\x69\\x76\\xe5\\x52\\x7e\\xb3\\xc0\\x9b\\x15\\x73\\x2b\\x49\\xe0\\xe3\\x7e\\x4b\\xec\\x83\\x96\\x2b\\xc0\\x85\\x1b\\xd7\\x79\\x31\\x52\\xcb\\xf6\\x4d\\x2b\\xc3\\x65\\x1f\\x80\\xa5\\x5c\\x06\\x0f\\xf3\\x6e\\xeb\\x0e\\xd9\\x34\\x73\\x7a\\xa3\\xa4\\x68\\x65\\x43\\x9a\\x43\\x4a\\xde\\x41\\x09\\xdc\\x12\\xe8\\x66\\xbc\\xb2\\x97\\xca\\x54\\x07\\x2a\\xed\\x97\\x8b\\xd3\\x77\\x29\\x6e\\xa3\\x68\\x10\\x59\\xa6\\x3e\\x0f\\xbb\\xdb\\x46\\xcc\\xaa\\x73\\x6c\\x8c\\x91\\xb9\\xc1\\xf0\\x56\\x7c\\x37\\xb7\\x85\\xcb\\x54\\x93\\x97\\xe3\\x7b\\x27\\xeb\\x2e\\xdd\\xea\\x7b\\xb0\\xd3\\xfb\\x78\\xad\\xde\\x09\\xbe\\xea\\xcd\\xeb\\xd7\\xfc\\xcd\\xec\\xf3\\x5e\\x8b\\x71\\xcd\\x26\\x57\\x5c\\x86\\x7a\\x7c\\x33\\x52\\x2d\\x44\\x5e\\x16\\x63\\x2a\\xd0\\xbb\\xb8\\x9e\\x19\\xf7\\xaf\\x28\\x62\\x57\\xe5\\x1d\\xe0\\xb0\\xa0\\x4a\\xf5\\x76\\xe6\\xab\\x05\\xfa\\x05\\xf8\\xaa\\xd6\\xb8\\xa7\\xe9\\x88\\x58\\x28\\x36\\x88\\xdd\\xe2\\xb0\\x74\\xe5\\x42\\xb9\\x4e\\xde\\x22\\x0f\\x28\\x47\\x9d\\xa6\\x56\\xa8\\xcd\\x6a\\x8f\\x7a\\xca\\xc9\\x39\\x67\\x3b\\xa3\\xce\\x36\\xe7\\x7e\\xe7\\xd9\\x48\\x29\\x72\\x4e\\x64\\x3c\\xb2\\x2d\\xb2\\x37\\x72\\x24\\xda\\x15\\x9d\\x1f\\x1d\\x8a\\x6e\\x8a\\xde\\x16\\xfd\\x6d\\xf4\\x58\\xac\\x14\\x5b\\x10\\x1b\\x8a\\x5d\\x13\\xdb\\x15\\x7b\\x28\\xf6\\x6c\\xbc\\x2b\\x7e\\x46\\xfc\\x82\\xf8\\xba\\xf8\\xf5\\xf1\\x3b\\xe3\\x07\\xe2\\x47\\x13\\x6e\\x62\\x6e\\xe2\\xbc\\xc4\\x48\\xe2\\x9a\\xc4\\x8e\\xc4\\xbd\\x89\\x83\\x89\\x63\\xc9\\xae\\xe4\\xdc\\xe4\\xe2\\xe4\\x9a\\xe4\\x55\\xc9\\xed\\xc9\\x3d\\xc9\\x03\\xc9\\x67\\xda\\x92\\x6d\\x7d\\x6d\\xf3\\xdb\\x96\\xb4\\xad\\x69\\xfb\\x58\\xdb\\x75\\x6d\\x3b\\xdb\\xee\\x6d\\x3b\\xd0\\x76\\xa4\\x5d\\xb6\\xf7\\xb4\\xcf\\x69\\x5f\\xd8\\x7e\\x61\\xfb\\x48\\xfb\\x95\\xed\\xd7\\xb5\\xdf\\xda\\xbe\\xa7\\xfd\\xa1\\xf6\\xc7\\xda\\x8f\\xa6\\xa2\\xa9\\x9e\\xd4\\x29\\xa9\\x33\\x53\\xe7\\xa6\\x2e\\x4a\\x5d\\x92\\xba\\x22\\xb5\\x29\\x75\\x43\\xea\\x96\\xd4\\x1d\\xa9\\xfb\\x52\\xfb\\x53\\x8f\\xa6\\x9e\\x48\\x3d\\x9b\\x7a\\x21\\x1d\\x4d\\x67\\xd2\\x85\\x74\\x5f\\x7a\\x4e\\x7a\\x5e\\x7a\\x81\\x20\\x7a\\x25\\xc7\\x66\\x7b\\x1e\\x18\\x83\\xce\\x78\\x6f\\xac\\xb4\\x7a\\x8b\\xc7\\x60\\x6b\\x41\\x2c\\xab\\xc8\\xb1\\x4e\\x31\\xeb\\x57\\xf9\\x67\\xa4\\x15\\xed\\x2b\\x49\\xe6\\xa4\\xcd\\xb6\\x92\\x20\\xcb\\x7a\\x95\\xb1\\x9d\\xab\\xd0\\x72\\x74\\xdb\\x2f\\xf2\\x1d\\x81\\xa0\\x45\\x58\\xa5\\x7e\\xc6\\xca\\x3c\\xab\\xab\\xdf\\xbe\\x63\\x50\\x50\\xef\\x6d\\x51\\xc3\\xd7\\x80\\x3c\\xbc\\xd9\\xf8\\xc7\\x11\\xa5\\xa8\\x96\\xfc\\xd5\\x35\\x78\\x0e\\xf2\\x51\\x7e\\x29\\x65\\xa6\\xd9\\x34\\xcd\\x43\\x7e\\x0c\\xa7\\xa7\\x23\\x74\\x5f\\xa3\\x64\\x91\\xf4\\x16\\xf1\\x28\\xf2\\xa3\\xb8\\xc5\\xf0\\xf2\\x35\\xbc\\x7b\\xeb\\x8b\\x81\\x4d\\x84\\x67\\xd1\\xe1\\xbf\\x0c\\x12\\xf0\\x7c\\xe3\\x0c\\x0a\\x01\\x6c\\xe2\\x78\\x3b\\x5d\\xf4\\xb1\\x32\\xf5\\x1e\\xcc\\x63\\xe6\\x35\\x4a\\xdb\\x7b\\xe8\\xba\\xbd\\xaf\\xb1\\x07\\xbb\\xdf\\x7a\\x46\\x0b\\xd6\\x6f\\xd0\\xf4\\xda\\x01\\x7d\\x35\\x50\\x3a\\x03\\x7e\\x56\\x09\\xbd\\xaa\\x17\\x7e\\x1b\\x21\\xd2\\x30\\x6e\\xdf\\x02\\xb6\\xd4\\xe6\\x6b\\xe3\\xf2\\x80\\x17\\x07\\x19\\xda\\xa9\\x19\\xa8\\x4d\\xbd\\x0f\\x72\\x73\\xe6\\x59\\x56\\x03\\x88\\xde\\x3b\\x5b\\x94\\x35\\x11\\x95\\xf9\\x26\\xcc\\xf8\\x46\\x70\\xff\\xd6\\x33\\x6c\\x7c\\x1b\\xe1\\x25\\xb6\\xab\\x66\\xde\\x17\\x7f\\x9e\\x37\\x05\\xda\\x6d\\x5c\\xe7\\xc6\\x76\\xff\\x8f\\xba\\x43\\xb7\\x15\\xf2\\xd6\\x57\\xd9\\xbc\\xc6\\x12\\x6f\\x3c\\x1c\\x9f\\x36\\x10\\x2f\\x29\\xdf\\x4f\\x5d\\x01\\x09\\x58\\xb0\\x37\\xd1\\x9b\\xa9\\xf6\\xcf\\xd4\\x35\\x43\\xff\\x8d\\xaf\\xa5\\x3e\\x3f\\x63\\xc9\\x86\\x39\\xa9\\xd5\\xd4\\x05\\x8b\\xbf\\xdc\\x02\\x2d\\x09\\xe3\\x2b\\x0a\\x7b\\x7c\\xbc\\x19\\x99\\xf8\\x80\\x77\\x43\\x86\\x35\\x9e\\xa2\\xa6\\xf7\\x94\\xd4\\xd2\\x16\\xe5\\x82\\x94\\xd2\\x8d\\x78\\xc1\\x9c\\x7c\\xc4\\xbe\\xeb\\x12\\xa4\\xbf\\x66\\xca\\x7b\\x17\\x66\\xdb\\xd8\\x6f\\x03\\x1e\\xa9\\x86\\xa0\\xad\\x95\\xad\\x1e\\x52\\x65\\x8b\\x3a\\xf4\\xa2\\xa3\\x70\\x38\\x3a\\xe7\\x78\\x27\\xe4\\x3b\\x94\\xb5\\xde\\xf4\\xf0\\x2d\\x16\\x7b\\xd7\\x42\\x9d\\xcf\\xd1\\x98\\xc1\\x31\\xb9\\xf6\\xc6\\x31\\x78\\xbc\\xfc\\xa7\\x80\\xbd\\x5f\\x08\\xdc\\x1c\\x74\\xb1\\x0e\\x15\\x20\\x7c\\x17\\xb4\\x68\\x87\\x75\\x4a\\x0f\\xff\\x50\\x77\\x51\\x36\\x88\\xb4\\x06\\xbc\\x70\\xd6\\x2b\\x43\\x13\\xb8\\x59\\x6c\\xb8\\x9e\\x17\\xf3\\x68\\x74\\x47\\xff\\x54\\xae\\xa1\\x6c\\x48\\x3a\\xf4\\x02\\xdd\\x48\\x5b\\xaf\\x40\\x9e\\x6a\\xea\\xdd\\xd8\\xfd\\xf0\\x78\\x0c\\x47\\xf0\\x5e\\xdc\\x5b\\xad\\x75\\xf1\\x06\\xba\\x0a\\xbf\\x05\\xb2\\x06\\xbe\\xbf\\x99\\xfa\\xa9\\xd1\\x6c\\x31\\x9f\\x3a\\x66\\xba\\xe5\\x86\\x55\\x7e\\x01\\xef\\x74\\xfa\\xeb\\xde\\x70\\x0a\\xd4\\x87\\x18\\xbd\\x0a\\xea\\xfe\\x1d\\x40\\x6c\\xd0\\x9e\\x88\\xe2\\x2e\\x7c\\xab\\x5d\\x36\\x94\\xfc\\x01\\xe8\\xe2\\xe1\\x59\\x56\\x6c\\xb4\\xa8\\x2b\\xaf\\xc7\\x19\\x2a\\x04\\xde\\xfb\\x08\\xbe\\x9b\\xb8\\x94\\x35\\xcb\\x8a\\xd5\\xc7\\x53\\xa0\\x36\\x7c\\x56\\x17\\xb2\\x77\\x2b\\xd8\\x76\\xd9\\xb3\\x64\\xd5\\xfb\\x5b\\xe6\\x7a\\x51\\x22\\x17\\xb5\\xc8\\xb5\\xd6\\x86\\x8c\\x58\\x7f\\x47\\x86\\x5f\\xfe\\xb3\\x08\\x89\\x5a\\xce\\xfe\\xa7\\x16\\x34\\x22\\x3e\\xda\\x94\\xd7\\x65\\x23\\xe8\\x2f\\xe6\\x9b\\x3f\\xe6\\xe6\\x89\\xa7\\x05\\x23\\x5e\\x4a\\xed\\x63\\x5a\\xea\\xb1\\x6b\\xec\\xbd\\x08\\x5c\\x95\\x37\\x52\\x6a\\xa6\\x3d\\x56\\x17\\xb3\\x56\\xdc\\xc2\\x32\\xa3\\xf3\\x29\\x85\\xf6\\xca\\xcc\\x95\\x8d\\x3e\\x6f\\x7c\\xaf\\xa3\\x68\\xa7\\xa3\\xf9\\x7e\\x3d\\x55\\xd5\\x79\\x7c\\xbe\\x82\\x2b\\xc3\\x7c\\x4a\\x6e\\xc3\\x58\\x8a\\xf0\\xf6\\x36\\xbe\\x4b\\xb8\\xad\\x69\\xee\\x76\\xb5\\x65\\x94\\xda\\x43\\xeb\\xe9\\xfb\\xc7\\xbf\\x4a\\xed\\xb6\\xc5\\x90\\xad\\x24\\xff\\x80\\x57\\x50\\xd3\\x2d\\xe2\\x19\\x76\\xe2\\x75\\xd2\\x16\\xbc\\x42\\xfe\\x01\\xaf\\x8a\\xa6\\xed\\x2b\\x0c\\x9e\\xe6\\xaf\\x2d\\x95\\x32\\xf3\\x5a\\x6b\\x95\\xca\\x1b\\x28\\x09\\x3c\\x33\\x05\\x1f\\x41\\x8e\\xa3\\x0a\\xeb\\x94\\xb4\\xa7\\xce\\x7a\\x0a\\xd4\\xaf\\x51\\xd6\\xbc\\x4d\\xe7\\xbf\\xeb\\xf2\\x11\\xa4\\x9a\\xf5\\xf6\\x51\\xd2\\xdf\\xc0\\x02\\x0a\\xfa\\x92\\x74\\xbf\\x7f\\x41\\xac\\xbd\\x1f\\x51\\x69\\xd0\\x94\\xaf\\x07\\x7a\\xcb\\x70\\xc9\\xaa\\x1c\\xc4\\x0b\\xa4\\x15\\xe6\\xc6\\x9e\\x1d\\xa6\\x38\\x35\\x6d\\xe5\\x80\\x4b\\x45\\xb9\\x07\\xef\\xe0\\x18\\x7e\\xe4\\x23\\x5c\\xe7\\x70\\x6a\\x25\\x74\\x4f\\xf7\\xbd\\xb8\\x21\\xd4\\xc1\\xb8\\x28\\x6e\\x7e\\xcb\\xc3\\x94\\xb0\\x6b\\xd6\\x8d\\x11\\x74\\x4a\\x89\\xdb\\x45\\x39\\x8e\\x2d\\x41\\xeb\\x6a\\x15\\x25\\x9a\\xb8\\xd1\\xbb\\x29\\x61\\x69\\x8c\\xb1\\x17\\xf1\\x46\\xf8\\x0c\\xd3\\x6c\\xb5\\x1b\\xbd\\xfb\\x02\\xc4\\x1a\\xd5\\x78\\x07\\xcc\\xad\\x9c\\xcb\\x61\\xc1\\x19\\x3d\\x04\\x28\\xad\\xb8\\x02\\x08\\x5c\\x80\\x17\\xa8\\x65\\x14\\x67\\xfa\\xf6\\xa2\\x9b\\x16\\x51\\xdc\\x7b\\xfb\\x05\\x52\\xd3\\x55\\xe7\\xa2\\x9d\\x00\\xbd\\xaa\\x95\\x8c\\xa6\\xf1\\x2d\\x6e\\x3a\\x8f\\x62\\xc0\\xa0\\x8c\\x87\\xd3\\x95\\x5f\\xc2\\x4d\\x03\\xdb\\x8b\\xd8\\x00\\x8f\\xa6\\xa5\\x5c\\xb1\\x1e\\x18\\x56\\xda\\xbe\\xcd\\x18\\xa3\\x58\\x70\\xcf\\xe4\\x3f\\x50\\x14\\x63\\x00\\xf2\\x45\\xef\\xa1\\x28\\x38\\x40\\x89\\x4e\\x22\\x57\\xbd\\x03\\xf6\\x1d\\xc7\\xc4\\xca\\x95\\x8c\\xd3\\xe1\\x5d\\x14\\x35\\x80\\x7b\\x0b\\x3a\\xaf\\x2a\\x7f\\x0b\\x6c\\xcd\\x50\\xad\\x83\\x74\\xc4\\xa3\\xa9\\x41\\x7c\\x36\\x9a\\xcc\\xdf\\x72\\xfc\\x43\\x4d\\xfe\\x0b\\xee\\x36\\xa4\\xa9\\xa2\\x3e\\x88\\x97\\x6a\\xf4\\x8a\\x3c\\xc8\\x31\\x11\\x59\\xf9\\x15\\x72\\xf8\\x0c\\xed\\x43\\xec\\x84\\xde\\x9d\\x25\\xa8\\x51\\xa2\\xb2\\xfc\\xb2\\x89\\x94\\x50\\xbf\\x21\\x85\\x7d\\x79\\x15\\x2d\\xa3\\x2d\\x74\\x3b\\x3d\\x44\\x4f\\x8b\\x76\\x71\\xb2\\x58\\x28\\x56\\x88\\x0d\\xe2\\x06\\x71\\x3b\\xbf\\xe4\\x90\\x91\\xfd\\xf2\\x4c\\x79\\x9e\\x1c\\x44\\xac\\xc4\\x4d\\xf2\\x76\\xb9\\x57\\x1e\\x90\\x4f\\xca\\xe7\\x55\\x3b\\xc7\\x33\\x2d\\x56\\xcb\\xd4\\x25\\x6a\\x9d\\xda\\xa8\\x36\\xab\\x6d\\x6a\\x87\\xda\\xad\\xee\\x52\\xf7\\xa9\\x7d\\xea\\x61\\xb9\\x8a\\xf2\\xf6\\xc6\\x51\\x27\\x73\\x01\\xf6\\x1b\\x33\\xb6\\x9a\\x6e\\x8c\\xf4\\x55\\xd3\\x7c\\x96\\x83\\x6f\\xa3\\x86\\x25\\xf7\\x28\\xbc\\x0d\\xe6\\xde\\x75\\x95\\x39\\xa0\\x1f\\xe1\\xfe\\x71\\x44\\xa7\\x76\\x30\\x5a\\xda\\x80\\xe0\\xab\\x4b\\x38\\xd7\\xa0\\x67\\x41\\x0f\\xac\\x3e\\xeb\\x13\\x7c\\x4b\\x23\\x63\\xe3\\x14\\xbc\\xf7\\x3d\\xaa\\xf2\\x26\\x7e\\x81\\xd2\\x8f\\x29\\x32\\xb1\\x05\\xb3\\xc9\\x55\\xeb\\xd1\\x5e\\xe8\\x55\\x72\\x4f\\x0e\\xa8\\x29\\x96\\x70\\xc1\\xf9\\xf0\\x58\\xd5\\x74\\x8b\\x3c\\x7e\\xf3\\x5b\\x7e\\x0d\\x71\\x4a\\xe5\\xc0\\x2d\\x5d\\x4f\\x0f\\x58\\xc7\\x2f\\x63\\x05\\x6b\\xe9\\x35\\xd8\\x8f\\x48\\xca\\x13\\x03\\x37\\x2f\\xe1\\xf5\\x15\\x6f\\x0f\\xa5\\xe7\\x30\\xe7\\x2c\\x55\\xd5\\x08\\x78\\x82\\x59\\x47\\x7f\\xfd\\xcc\\xcb\\x56\\xfe\\xfa\\x99\\xf7\\x57\\xfe\\x06\\x11\\x42\\xbd\\xf6\\xc5\\xcd\\x32\\x95\\x65\\x0a\\x48\\x7a\\xc1\\xc6\\x98\\x75\\x52\\xa7\\x4c\\xd8\\xb4\\x3c\\xdf\\x05\\x70\\x65\\x0c\\xa7\\xbd\\x8b\\xf9\\x2a\\x6e\\xa5\\xc8\\x0e\\xdc\\x25\\xf3\\x28\\x03\\x63\\x55\\x97\\x81\\x1b\\x85\\x56\\x51\\x4d\\x06\\xca\\xf1\\x9d\\x35\\xb5\\x16\\x5c\\xc0\\x1b\\x77\\x2f\\x95\\x65\\x9a\\xdf\\x4a\\xf1\\xef\\x3e\\x5d\\x8a\\x32\\xae\\x7d\\x53\\xb7\\x2a\\x93\\xcc\\x4d\\xf8\\xa6\\x20\\x29\\x75\\x9b\\x4d\\xf1\\x3c\\x64\\x71\\x20\\x3e\\x27\\x5a\\x5f\\xd4\\x76\\xfb\\xbd\\x0a\\xd9\\xfb\\x01\\xdc\\x5a\\x4b\\x7b\\xb1\\xeb\\xb2\\x0d\\xb1\\x4e\\x5e\\x9b\\x51\\x79\\x21\\xca\\x57\\xbc\\x5b\\x66\\xe2\\x63\\x88\\xd6\\xe0\\xb5\\x14\\xef\\xa0\\x88\\xc7\\x67\\x65\\x3b\\x3e\\x1b\\xf4\\x7e\\xc8\\xbf\\x97\\xa6\\xc6\\x81\\xbd\\x03\\x3d\\x10\\x9f\\xc0\\x79\\xef\\xa7\\xaa\\xac\\xe3\\x65\\xaa\\x34\\x15\\x64\\x86\\x1c\\x50\\xae\\xab\\x3e\\x6c\\x51\\xf7\\x31\\x52\\xda\\x16\\x51\\xc3\\x88\\x85\\xea\\x10\\x1b\\x49\\xd2\\x6c\\x8e\\x90\\x3c\\x8b\\x96\\xd0\\x0a\\xba\\x44\\x7e\\x04\\x77\\x5b\\xbc\\x17\\x14\\xed\\xab\\x1d\\xf2\\x8a\\x86\\x74\\x7e\\xfd\\x83\\x1e\\xa6\\x04\\xd6\\x33\\xf0\\x42\\xb4\\xfa\\x3e\\x45\\x03\\xfa\\xe4\\xdf\\xe1\\xc6\\x4b\\x96\\x4a\\x22\\x8e\\x1b\\x2f\\x1d\\x74\\x22\\x2d\\xa6\\xf5\\xb4\\x83\\xf6\\xd1\\x11\\x91\\x16\\x73\\xc4\\x62\\xb1\\x46\\x5c\\x65\\xa3\\x22\\xe3\\xb2\\x2a\\xe7\\xc9\\xf3\\xe5\\x1a\\x79\\xa5\\xbc\\x41\\xee\\x96\\x7b\\xe5\\xa3\\xf2\\x99\\x06\\x34\\xfc\\x7a\\x75\\xab\\xba\\x5b\\x3d\\xa8\\x0e\\x89\\xb3\\x58\\x9f\\x0f\\x5a\\x4e\\x33\\xbd\\x7c\\xf0\\xa6\\x97\\x29\\x1b\\x7c\\xa9\\xf7\\xcd\\x90\\xa1\\x33\\x97\\x35\\xd6\\xc7\\xfb\\xa0\\x55\\x67\\xf9\\x35\\xad\\x4c\\xf3\\x7b\\x79\\x32\\x8b\\x12\\x2e\\x4b\\x59\\xad\\x99\\x75\\x86\\xbd\\xe0\\xe2\\xd3\\xd0\\x84\\x4d\\x1b\\x5d\\xac\\x2f\\xa6\\xf8\\x66\\x9f\\x4b\\x35\\x75\\x35\\x76\\xbc\\xf1\\x85\\x78\\x4f\\x4f\\xfe\\x38\\xe8\\xdf\\xb4\\xdf\\xcd\\xf1\\xa0\\x9e\\xbe\\xf3\\x3e\\xeb\\xd1\\x6c\\xf2\\x26\\xaa\\x0d\\x81\\x7a\\x19\\x7e\\xcd\\xd1\\xf8\\x0c\\xf3\\xea\\x72\\xf6\\x88\\xe6\\x2c\\x8e\\x95\\xe2\\xbc\\x8a\\x74\\x11\\xff\\x1d\\x9c\\x4f\\x99\\x11\\xe7\\xf7\\x23\\x27\\x6b\\x6f\\x7b\\xd8\\x97\\xcd\\xd5\\x27\\x81\\x1b\\x9b\\x3a\\x55\\xd6\\x4f\\xd2\\x54\\x50\\x1f\\x0d\\xa4\\x67\\x2c\\x9e\\x5c\\xa4\\x8f\\x20\\xdd\\x1f\\x37\\xc7\\xdf\\xaa\\x4f\\x04\\xca\\x1b\\x2f\\x9d\\x91\\xe4\\x57\\x04\\xd2\\x8d\\x76\\x64\\xe2\\x4c\\x2e\\xe4\\x3b\\xae\\xbd\\xbc\\xa6\\xde\\x1d\\xfe\\x0f\\x34\\xa4\\x17\\x0c\\xe6\\xaa\\x3e\\x85\\x48\\xef\\x86\\x95\\x56\\x1f\\x41\\xaa\\xd7\\xba\\x39\\xb3\\xfd\\x74\\x05\\x52\\xfd\\x9d\\x37\\x11\\x39\\xdb\\x11\\x5d\\xe9\\x79\\x1e\\x8c\\x5c\\xa8\\xc9\\x6c\\xa0\\x05\\x8f\\x06\\xfa\\xd5\\xc6\\x40\\xea\\x2c\\xf6\\x24\\xd5\\xe8\\x22\\x7e\\x71\\xd0\\x1b\\x9b\\xe1\\x96\\x5f\\xe7\\x1b\\xd5\\x95\\x80\\xfc\\xbb\\x8a\\xfd\\x93\\x7d\\x81\\x18\\xb2\\x2b\\x03\\x69\\x9e\\x1f\\xd6\\x70\\xe4\\x1c\\xbf\\xe0\\x6f\\xf4\\xd5\\x0f\\x22\\xcd\\xef\\x45\\xf3\\xc6\\x22\\xb8\\x5c\\x17\\xa3\\x9f\\x7a\\x3d\\x3e\\x86\\x14\\x97\\xef\\x85\\xe9\\x59\\x5f\\x80\\x94\\xc0\\x1e\\xcb\\xbf\\xa1\\x38\\x95\\x43\\x38\\xc7\\xcd\\xd0\\x8a\\x8a\\xb0\\x22\\x5c\\xea\\xc7\\x1d\\xd9\\xa5\\x34\\x45\\xd7\\xd1\\xed\\xb4\\x9f\\x9e\\x12\\x52\\xe4\\xc4\\x29\\xe2\\x2c\\xb1\\x44\\xac\\x12\\xeb\\xc5\\x26\\xb1\\x4d\\xec\\x14\\x77\\x8b\\x7d\\xe2\\x80\\x38\\x2c\\x9e\\x12\\xcf\\xaa\\x6b\\xd0\\x57\\x3e\\x20\\x57\\x9a\\xde\\x5b\\x95\\xdd\\x78\\x45\\xd2\\x7b\\x01\\xc6\\x8b\\x5c\\xab\\x7a\\xa7\\x5d\\x7d\\x9a\\x7f\\x35\\xc2\\x6b\\xa3\\xe1\\xc5\\x50\\x91\\xc4\\x3a\\x18\\x7b\\xb3\\x16\\x40\\x05\\x4c\\x74\\x44\\x89\\x5f\\xbd\\xc8\\xf1\\xcd\\xe3\\x60\\xcb\\x9f\\xb1\\x7a\\xb9\\x1b\\x78\\xd3\\x1f\\x77\\x88\\xd5\\xed\\xec\\x07\\x31\\xb2\\x2f\\x6f\\x65\\xca\\x24\\x7c\\x13\\x1d\\xc1\\x53\\x4d\\x7f\\xb2\\x2f\\x31\\xfa\\xd1\\x8a\\x0b\\x58\\x86\\x95\\x03\\xaf\\x8f\\x18\\x39\\x69\\x46\\xea\\xa1\\x82\\x5d\\x94\\x40\\x6b\\x19\\xfb\\x82\\x61\\xbf\\xfc\\x47\\xc8\\xb1\\xb4\\xbd\\xf5\\x53\\x93\\x39\\x8a\\xa3\\x54\\x15\\x72\\xa0\\x48\\xfd\\x74\\x0c\\x52\\xc8\\x8f\\x4d\\xec\\xa4\\x18\\x8f\\xca\\xbc\\x23\\xf0\\x5b\\x48\\x25\\x97\\xd1\\xe1\\x2c\\x9d\\x02\\x6f\\x72\\xc5\\xbb\\x49\\x22\\x3e\\x09\\x4f\\x03\\xe6\\xa7\\x36\\xb1\\x8e\\xd9\\x23\\x6f\\x43\\xdc\\xbb\\x1e\\xe1\\x32\\x52\\x7a\\x9e\\xf2\\x7b\\x24\\x29\\x43\\x82\\x1c\\xf5\\x59\\x44\\xbf\\xf6\\xf2\\xcd\\x5d\\xb7\\xe1\\xe6\\x97\\x1b\\x78\\xc7\\x4f\\xe1\\xa5\\xe8\\xd3\\xe5\\xf2\\x80\\xc7\\xaa\\xc4\\x68\\x94\\xa6\\xda\\xb2\\xfa\\x02\\xc7\\x14\\xdb\\x1c\\xb5\\x85\\xa3\\xfd\\x0b\\x4c\\x09\\x92\\x1c\\x8a\\x52\\x94\\x08\\xbb\\x2b\\xa8\\x87\\xfa\\x28\\x49\\xfd\\x74\\x12\\x9d\\x60\\x7f\\x4f\\xe9\\xf4\\xd6\\xbf\\xa7\\x34\\x39\\x7c\\x45\\x9d\\xd3\\xb6\\x53\\xf8\\x3f\\x9d\\x4f\\x0f\\x4f\\x7c\\x76\\x3d\\xfe\\x1e\\xfa\\xc6\\xaf\\xf9\\xef\\xbe\\xff\\x17\\x00\\x00\\xff\\xff\\x86\\xc6\\x59\\x3b\\x9a\\x2f\\x02\\x00\")\n\nfunc vendor_material_icons_materialicons_regular_eot() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_material_icons_materialicons_regular_eot,\n\t\t\"vendor/material-icons/MaterialIcons-Regular.eot\",\n\t)\n}\n\nvar _vendor_material_icons_materialicons_regular_ijmap = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x84\\x7d\\x4b\\x77\\xa4\\x38\\xd6\\xed\\x5f\\xd1\\xaa\\xf1\\x1d\\xf0\\x0e\\xe2\\x9b\\xa5\\x5f\\x99\\xbe\\x9f\\x9d\\x19\\xe5\\x88\\x4c\\xaf\\xdb\\x33\\x01\\x0a\\x87\\xda\\x04\\x8a\\x16\\x60\\x97\\xb3\\x57\\xff\\xf7\\xbb\\x80\\x73\\x04\\x1b\\x70\\xf5\\xa4\\x6a\\xa5\\xf6\\x86\\x10\\x7a\\x1c\\x9d\\xa7\\xfc\\xef\\x3f\\x74\\x6e\\xaa\\xfa\\x8f\\xff\\xf9\\xf7\\x1f\\x2a\\x8d\\x8a\\xee\\xff\\x95\\x3c\\xab\\x3f\\xfe\\xe7\\x8f\\xb0\\x10\\x4f\\xa6\\x91\\x8d\\x36\\xd5\\x1f\\xff\\xf9\\x3f\\x7f\\xa8\\x2c\\xcc\\x26\\xe8\\x97\\x5c\\xfc\\xac\\x74\\xd3\\x23\\xfe\\xd6\\x03\\x24\\x57\\x75\\x2d\\xbe\\x94\\xd2\\x9e\\x09\\xf6\\x3f\\x81\\x6b\\xc2\\x83\\x25\\x7e\\xd0\\x67\\xd5\\xa3\\x69\\xa4\\x16\\xa8\\xce\\x74\\xa9\\x9b\\x8f\\x1e\\xdf\\xfa\\xd1\\x0a\\x5e\\xf2\\xc3\\x47\\x04\\x4d\\x5b\\x35\\xe2\\x4a\\x96\\xb2\\xca\\x89\\x11\\x7b\\x9f\\x33\\xc4\\xb3\\x2c\\x4b\\xd5\\x10\\xd1\\x5f\\x23\\x9a\\xbf\\x08\\x0d\\x57\\xd0\\x6b\\x6d\\x73\\xea\\x49\\xe2\\xc1\\x67\\x14\\xd9\\xf0\\xe9\\x51\\x0c\\xad\\x45\\xdf\\x1a\\x85\\x5b\\x6c\\x15\\x5f\\xc4\\xee\\x64\\x1a\\x43\\xc3\\x15\\xce\\x51\\x37\\xd4\\x9e\\xb7\\xc4\\x94\\xa5\\x59\\x8a\\x92\\x19\\xc6\\x9d\\xf7\\xa3\\xcd\\x0c\\x99\\x74\\xdc\\x8f\\xd2\\x55\\x50\\xfc\\x68\\x9b\\x52\\x57\\x03\\x29\\x4e\\xe6\\x6f\\x78\\x30\\xf9\\xb8\\x74\\xd2\\x38\\x9a\\xc1\\xfb\\x93\\xb9\\x5c\\x74\\xf5\\x22\\xae\\x25\\x75\\x2f\\xdc\\x16\\x33\\xce\\xc1\\x0c\\x5f\\x3d\\xac\\x12\\x2f\\xce\\x97\\xf8\\x9f\\xad\\x6a\\x15\\x3d\\x8e\\xe3\\xfb\\xcf\\xb6\\x1e\\xde\\x9b\\x84\\x30\\xc1\\xda\\x76\\x9d\\x16\\x7b\\x25\\x1b\\x71\\x57\\x4a\\xe6\\xf8\\x7f\\xc7\\x11\\x5f\\xaa\\x97\\x52\\x15\\x44\\x0d\\x3e\\xa3\\xde\\x57\\x85\\x7e\\xd3\\x45\\x2b\\x4b\\xb1\\x6f\\x75\\x43\\xf3\\x1e\\x86\\x9f\\xf1\\x1f\\xd4\\x8b\\x35\\xe6\\x2c\\x6e\\xff\\x6a\\xac\\x24\\x72\\xf4\\xdf\\xc8\\xdf\\x8d\\x3d\\xcb\\x92\\xd8\\xf1\\x7f\\x63\\x3f\\xa9\\xa2\\xcd\\x5d\\xcf\\x93\\xcf\\xe8\\x4f\\x2a\\xef\\xff\\x31\\xed\\xc9\\xe6\\xbf\\x91\\x27\\x3d\\xf1\\xb7\\xb3\\x9e\\x5c\\x4a\\x59\\xa9\\xb3\\x29\\x94\\xf8\\x92\\x37\\xfa\\x8d\\x56\\xd2\\x36\\xfa\\x8c\\x75\\x5f\\xc9\\x91\\xe7\\xc5\\xcb\\xb7\\x7d\\x90\\x08\\xca\\x67\\x88\\xb1\\x8d\\xd8\\x9f\\xda\\xa6\\xe1\\x0d\\x8f\\xcf\\xba\\x8d\\x91\\xc6\\xc9\\xbc\\x5d\\xf0\\x76\\x4b\\xe3\\xcd\\x02\\xfb\\x71\\x3c\\x12\\x96\\x2e\\xb1\\x61\\x51\\x7b\\x3e\\xec\\xd2\\x32\\x6b\\xcf\\xd4\\x49\\x58\\xc8\\x65\\x29\\xee\\xab\\xbc\\x6c\\x6b\\xfe\\xbc\\xad\\x97\\xcd\\xf0\\x1f\\x2d\\x8b\\x18\\x78\\x63\\x55\\x58\\xa3\\xb9\\x8b\\x12\\x90\\xca\\xb4\\x55\\xae\\xce\\xaa\\x1a\\x1e\\x8c\\x73\\x58\\x64\\x97\\x0b\\x09\\xd6\\x08\\xde\\x67\\xf3\\x13\\xf7\\x21\\xce\\x61\\x2a\\xac\\x35\\xef\\xe2\\x4a\\xe6\\xaf\\x03\\x58\\x64\\x0b\\xf0\\xc6\\xbc\\x57\\xef\\xd2\\x16\\xf4\\x74\\xbc\\x24\\x58\\x73\\xe9\\x59\\xc4\\x48\\x3e\\x67\\x4c\\xa5\\x4b\\x9c\\x6f\\xd6\\x89\\x3f\\x2f\\x84\\xa7\\x0b\\xfc\\xce\\xd8\\xb1\\x2b\\xc5\\x12\\xff\\x79\\x71\\xb0\\x97\\xc0\\xe6\\xb7\\x8d\\x38\\x58\\xfe\\xcc\\x34\\x86\\xcf\\xac\\x2f\\x2a\\x6f\\xc4\\x53\\x27\\xb4\\x08\\x86\\xb5\\x56\\xd7\\xaa\\xae\\xdd\\x80\\xa7\\x71\\x81\\xa0\\x7e\\xa9\\x26\\xa0\\x5a\\x05\\x3b\\x01\\x41\\x84\\xe3\\x3a\\xe1\\x41\\x92\\xd4\\x48\\xb1\\xdf\\x23\\xe3\\x49\\x35\\xad\\x25\\xa1\\x9a\\xf8\\x7f\\xc7\\xa1\\x5d\\x9f\\x26\\xc1\\x3a\\xeb\\xd0\\x73\\xc4\\x7d\\x45\\xe2\\x73\\xde\\xa5\\xba\\x91\\xf4\\x3d\\xa1\\x9c\\x77\\xa6\\xc7\\x26\\x47\\x52\\x10\\xc0\\x74\\x37\\x8d\\xcc\\x4f\\xe2\\x4e\\xd3\\x1c\\x07\\xc1\\x66\\x89\\x3e\\x9a\\x4a\\x0d\\x9b\\x3a\\xc8\\xf2\\x05\\xec\\xc6\\x32\\x94\\xf0\\x91\\x6d\\xa1\\x4d\\x33\\xce\\x60\\x02\\xcb\\xbe\\x6d\\x8c\\x55\\x95\\x7a\\xa7\\xdd\\x09\\xb3\\xfb\\xd6\\x2b\\x14\\x96\\xb6\\xc5\\x74\\x33\\x75\\xcb\\xbe\\xbe\\x48\\x56\\x07\\x92\\x68\\x86\\xb5\\x17\\x12\\x5e\\x39\\x00\\x4d\\xa3\\xec\\xc7\\xf4\\x74\\x95\\xe1\\x0a\\x7e\\x7d\\x92\\xf6\\xa5\\x3b\\xe6\\xee\\xda\\x92\\x44\\xa5\\x8c\\x56\\x78\\x13\\x38\\x5e\\x81\\xf7\\x4d\\x41\\x68\\xb2\\x82\\xfe\\xac\\x5e\\x2b\\xde\\x78\\x59\\x38\\x5d\\x7b\\x57\\xaa\\x1b\\xea\\x41\\x27\\x1a\\xb6\\x4b\\x50\\x00\\xac\\xaa\\x93\\xb2\\x7c\\xce\\x4f\\x07\\xec\\xaa\\x34\\x34\\xc8\\xbe\\xdc\\x40\\x7b\\xab\\x1a\\x63\\x9a\\x13\\x29\\x35\\xc7\\x35\\x4c\\xf4\\xf3\\x44\\x4f\\xa7\\xab\\x8c\\x6b\\x53\\x55\\x2a\\x6f\\x14\\x7f\\xd7\\x76\\x95\\x75\\xa3\\x6b\\x99\\x95\\x8e\\x24\\x57\\x49\\x7b\\x25\\x3b\\xc9\\x56\\xbd\\xd0\\x82\\x09\\x90\\x65\\x7b\\x71\\xd3\\x96\\xd2\\x12\\x1e\\xce\\xf1\\x07\\x5d\\x29\\x87\\x46\\x73\\x94\\x4f\\x82\\x10\\x67\\xa6\\x87\\x78\\x23\\x02\\x62\\x0c\\xaf\\xce\\x64\\xd6\\x7c\\x96\\x96\\xa1\\xcd\\x0a\\x24\\xae\\x8c\\x2d\\x68\\x8d\\x06\\x01\\x8c\\x5b\\x0f\\x88\\x2f\\xb4\\x48\\x82\\x60\\xbb\\x04\\xaf\\x4c\\xd3\\x98\\x33\\xe1\\x72\\x89\\x5f\\x97\\xfc\\x91\\x41\\x90\\xad\\xc0\\xa6\\x34\\x0c\\xe7\\x4b\\xf8\\x9b\\xb1\\xfa\\xb7\\xa9\\x1a\\xc9\\x3d\\x28\\x96\\x9c\\xfb\\xaa\\x72\\xbd\\x57\\x4b\\xf8\\x41\\x1d\\x1b\\x42\\x8f\\x4b\\xf4\\x47\\xdb\\xf0\\xc3\\xa0\\xb0\\x11\\xfc\\xa4\\x5f\\x4e\\xf4\\x34\\xe8\\x6a\\x04\\xef\\x9b\\x0f\\x16\\x36\\xa0\\x9f\\x11\\x7c\\x30\\x17\\x02\\xc3\\x25\\xf8\\x4b\\xd9\\x46\\xe7\\xf4\\x61\\x5e\\x02\\x63\\x63\\x65\\x55\\x74\\xdb\\xf7\\x59\\x36\\xca\\xba\\xe9\\x0b\\x71\\x1b\\xda\\xae\\x6f\\x55\\x67\\xb4\\xf8\\x04\\x6f\\xd6\\xe1\\x80\\xe0\\x74\\x1d\\x0e\\x09\\xde\\xae\\xc3\\x11\\xc1\\x72\\x1d\\x8e\\x09\\xce\\xd6\\xe1\\x84\\xe0\\x7c\\x1d\\xde\\xd0\\x16\\xfb\\xe4\\xe9\\x4e\\xb6\\x12\\xe3\\x93\\x17\\x7c\\xd3\\x2f\\x27\\x62\\x14\\xeb\\x8c\\x07\\xf3\\x4e\\x04\\xb5\\x4e\\x78\\x54\\x85\\x26\\x1d\\x2a\\x9c\\xbd\\xc4\\xbc\\xaa\\x4a\\xdc\\x9f\\xe5\\x0b\\x29\\xfb\\xb3\\x57\\xb4\\x35\\xc9\\xa3\\x02\\x1e\\x6b\\xb3\\xac\\x54\\xbd\\x0c\\xa6\\x83\\x39\\x81\\x91\\x6f\\x5f\\xc4\\x93\\xea\\x34\\x48\\x02\\x61\\xdc\\x5b\\x5d\\xb2\\x31\\x06\\x5f\\xdc\\xda\\xba\\x11\\x8f\\xa6\\x20\\x55\\x55\\xc2\\x52\\x6e\\x6b\\x5d\\xb1\\xa8\\xcd\\xc2\\x35\\x48\\x5c\\xab\\x8a\\x17\\x7a\\x9a\\x4c\\xa7\\xf2\\x5a\\xe6\\x27\\x92\\x74\\x1b\\xb5\\x05\\xe0\\x95\\x7e\\x2c\\xf3\\xa0\\x99\\xa4\\x81\\x97\\xf9\\xb3\\x66\\x71\\x4b\\x8a\\x86\\x97\\x05\\x73\\xe8\\x51\\x72\\xd7\\xb3\\x70\\x81\\x29\\xfb\\xc2\\x60\\xb4\\x00\\x75\\x5d\\x53\\xff\\x3c\\xf5\\x09\\xda\\xed\\xe2\\x17\\xc3\\xa2\\xd8\\xcb\\xe2\\x39\\xed\\x49\\xe5\\x4a\\xbf\\xf1\\x6b\\xb2\\x64\\x8e\\xef\\x2f\\x25\\xf9\\x14\\xbc\\x24\\x9f\\x83\\x07\\xd3\\x5b\\x13\\x64\\x53\\x86\\x30\\xf4\\xd7\\xf2\\xac\\xc8\\x74\\x09\\x67\\xc3\\xd4\\x01\\xe2\\x4b\\x49\\xb3\\x7c\\xcc\\x97\\xe0\\x6d\\x75\\x72\\xfe\\x80\\x70\\x36\\x9a\\x3d\\xe1\\xce\\x1a\\xd6\\x47\\x66\\x23\\xda\\xc3\\x4f\\xee\\xf8\\x98\\x8d\\xe9\\x80\\x1a\\x9a\\xa8\\x38\\xc7\\x69\\xad\\x72\\x55\\x52\\xa7\\x70\\x20\\x6c\\x21\\xbe\\xea\\x63\\x93\\xb3\\x16\\x9b\\x1e\\x37\\x73\\xfc\\x51\\x9d\\x33\\x65\\xeb\\x93\\xbe\\x10\\x23\\x9d\\x33\\x0e\\x56\\xbe\\xd1\\xfb\\xb3\\x08\\x47\\xa4\\xd6\\xd5\\xb0\\x9b\\x43\\x0f\\x5f\\x4c\\x26\\x73\\xe8\\xa5\\xb3\\xe6\\xd9\\x79\\x1d\\xe2\\xf2\\xe8\\x97\\xb4\\xb8\\x33\\x79\\x5b\\x8b\\x7d\\x63\\x0d\\x1f\\xc5\\x38\\xff\\x53\\xd6\\xb3\\x92\\x7c\\x12\\x4e\\x25\\xce\\xf5\\x49\\x56\\x2f\\x4a\\x7c\\xd3\\x75\\x63\\xec\\x07\\x2d\\x92\\x0d\\x12\\x68\\x79\\xe4\\x72\\xd6\\x2c\\x86\\xed\\x4e\\x68\\xb6\\x8e\\xa2\\xd3\\x62\\xf6\\x0e\\xc5\\x6a\\x25\\x58\\xe1\\x7d\\xfb\\xe8\\xe7\\x01\\x9b\\xdb\\x61\\xfc\\x5e\\x71\\x55\\xca\\x8a\\xbf\\x2c\\x5f\\x30\\xc1\\xf0\\xc1\\x2e\\xaa\\x37\\x6b\\xaa\\xf1\\x8c\\x8c\\xf3\\x7c\\x05\\x1e\\x4f\\xc1\\x2c\\x82\\x65\\x7a\\xd2\\x65\\x21\\xae\\x25\\xa9\\x72\\x59\\x14\\x2c\\xc0\\x3b\\xab\\x55\\x55\\x94\\x1f\\xd4\\xb7\\x02\\x08\\xd6\\x9c\\x55\\xb7\\x8a\\xbb\\xe3\\xd0\\xc9\\xb6\\x34\\x99\\x0a\\xd9\\xeb\\x52\\xd6\\x6c\\x55\\x42\\xd7\\x9c\\x5a\\xe1\\x65\\xe9\\xbc\\xdd\\x69\\x2c\\x71\\x0e\\x3f\\x58\\x9a\\x9a\\x26\\xca\\xcf\\xe7\\xed\\xdd\\x77\\x5c\\xdc\\x2e\\x0f\\xb2\\xd9\\x83\\x6d\\x41\\xed\\x6a\\xde\\x3e\\x1d\\xdd\\x20\\x3b\\x2e\\xe0\\x1b\\x43\\xf3\\x1e\\xe4\\xde\\x0a\\xf8\\x5e\\x95\\x46\\xd2\\xcb\\x73\\x7f\\x41\\x60\\x35\\x30\\xc8\\x83\\x05\\x36\\x7a\\xa1\\x02\\x30\\xc4\\x07\\xf4\\xe7\\xc5\\xbd\\x38\\x4d\\xa0\\x5b\\x3c\\xd2\\x21\\x0a\\x42\\x53\\x96\\xaa\\x97\\x73\\x35\\x1d\\x40\\xfe\\x3a\\x2a\\x40\\xa7\\x0c\\x71\\xa3\\x74\\xea\\x9c\\x78\\x50\\xf4\\x8e\\x10\\xe7\\xa6\\x03\\xf5\\x6f\\x16\\xf5\\x20\\x95\\xcc\\x79\\xb4\\xbd\\xe6\\xc8\\x85\\x17\\xd8\\xd6\\x8f\\x97\\x88\\xe8\\xad\\x6f\\xfa\\x3d\\x4f\\xce\\x08\\x4e\\xbd\\x4b\\x42\\xec\\x4a\\x75\\xd4\\xf6\\xdc\\xbb\\x0a\\xc5\\xf7\\xb6\\x13\\x6a\\x43\\xaf\\x0a\\x0f\\x59\\x8d\\xcc\\x1b\\xf1\\x28\\x35\\x9d\\x79\\xf9\\x71\\x05\\xde\\x9d\\x78\\x8a\\xbd\\x4c\\x2e\\x71\\x5e\\xbe\\xc5\\x0c\\xea\\xac\\xe1\\x6b\\x73\\xf9\\x20\\x58\\xad\\xc1\\x2d\\xfb\\x50\\xe7\\xbf\\xdb\\xa1\\x3b\\x59\\x37\\x3c\\x93\\xf3\\xdf\\xb5\\xa6\\x14\\x3b\\xa3\\xdd\\x90\\x66\\x9f\\xe1\\xe2\\xa6\\xbd\\x94\\x3a\\x67\\x0f\\xc0\\xd6\\x83\\x9d\\x61\\x2e\\x1f\\xd6\\x6d\\x7e\\x1f\\x7c\\xd6\\xd7\\x56\\xf1\\x43\\x01\\x4a\\x8d\\x1e\\x10\\xdf\\xd5\\xbb\\xb8\\x33\\x25\\x5b\\x16\\xe9\\x66\\xf6\\x70\\xa1\\x9b\\x4e\\x74\\xb0\\x64\\x87\\xcf\\xb7\\xa4\\x38\\x87\\x59\\x3e\\x6b\\x16\\x7e\\x22\\xb6\\x84\\x15\\x73\\x2c\\x64\\x55\\x17\\xb7\\x61\\x07\\xc5\\xac\\xc7\\xe2\\x26\\xec\\xa0\\x0d\\xeb\\xb0\\xb8\\xfd\\x7a\\xb7\\x91\\xa6\\x43\\x1f\\x77\\x5f\\x07\\xdd\\x59\\x45\\x63\\x8f\\x7b\\xaf\\xc3\\x1e\\x64\\x55\\xd4\\xb9\\xbc\\x30\\x21\\x9a\\x13\\x7e\\x58\\xfd\\xa2\\x2b\\xd2\\xfd\\x43\\x70\\x6b\\xf5\\xf8\\xce\\xd8\\xc6\\x4a\\x52\\x49\\x22\\xf0\\x89\\xf6\\x78\\x1f\\x20\\xe1\\xb7\\x27\\x73\\x74\\xff\\xaf\\x96\\x77\\x4c\\xba\\x99\\x7e\\xd3\\x8d\\xac\\x4f\\x99\\xe1\\x31\\xf7\\x41\\x93\\xb9\\x91\\x8d\\x14\\x3f\\x6b\\x56\\x75\\xb7\\x7e\\x82\\xa0\\x12\\x4f\\xdd\\x21\\x49\\xbf\\x39\\xed\\xd1\\x8d\\x3a\\xc9\\xdf\\xfc\\x73\\x01\\x00\\xa5\\xe2\\x65\\x05\\xb6\\xdf\\x00\\x88\\x3b\\x63\\xd5\\x1b\\x3b\\x47\\xe0\\xd8\\x22\\xc2\\xfe\\x5d\\x29\\x52\\x34\\x36\\x21\\xc0\\x75\\x6e\\xf5\\x28\\xad\\x43\\x0f\\xdf\\x5e\\xbf\\x36\\xe6\\x22\\x1e\\x65\\x4e\\x68\\xbe\\x82\\x3e\\xeb\\xaa\\x70\\x62\\x03\\xbc\\x7d\\x37\\xaa\\x91\\xba\\x64\\x81\\x52\\x00\\xf2\\xa6\\x4a\\x73\\xe9\\xad\\x5e\\x37\\x8a\\xa0\\xf6\\x8d\\x0c\\x77\\x9e\\x85\\x70\\x74\\xdf\\xa8\\x37\\x9d\\x2b\\xf1\\xad\\xa5\\x40\\x0c\\xa8\\x7d\\x03\\x48\\xbf\\x1c\\x6e\\x96\\x88\\xf8\\xd1\\x9c\\x58\\x52\\xc1\\x96\\xbe\\xd1\\xb2\\xec\\xec\\x51\\xd2\\xcb\\x3c\\xd8\\x37\\x1d\\x78\\xa1\\xa3\\x20\\x06\\x13\\xf9\\x46\\xdb\\xa9\\xc8\\x8f\\xc1\\x42\\x1e\\x41\\x71\\xa5\\xc9\\x16\\x88\\xc1\\xcc\\x9d\\x32\\x0c\\x69\\x48\\x31\\x98\\xd1\\x53\\x46\\x4b\\x3f\\x02\\xe7\\xca\\x84\\x70\\x4d\\x07\\x7a\\x0c\\x7a\\xd0\\x84\\xf0\\x24\\x75\\xf9\\x4e\\x2e\\xf9\\x18\\xbc\\x1c\\x53\\x52\\x4b\\xae\\x60\\xb0\\xb9\\x27\\x84\\x7d\\x9b\\xb9\\x97\\xe0\\xd4\\x8c\\x9c\\x83\\x95\\x55\\xad\\xf9\\x83\\x3e\\xf9\\xa5\\x67\\x59\\x0e\\x47\\x60\\xe2\\xe3\\x27\\xd7\\xf9\\xe8\\x58\\x4b\\x37\\xf0\\x13\\x34\\xd0\\x89\\x0f\\xc3\\x68\\xc4\\x77\\xd3\\x88\\x1b\\x5d\\x37\\xad\\xcd\\x88\\xe0\\x7f\\x4a\\x70\\x46\\x45\\x12\\x85\\x9f\\x93\\x58\\x71\\x48\\xa2\\xe8\\x6f\\x48\\xbc\\x7f\\x60\\x51\\xb0\\x0b\\x6e\\xa3\\xb0\\xf9\\x2c\\x49\\x1c\\xa6\\x1b\\x18\\x12\\x3e\\xfd\\xd2\\xcd\\x66\\xd6\\xec\\x14\\xb1\\xad\\x3f\\x83\\xda\\x46\\x3c\\x48\\xeb\\x84\\x4d\\xba\\x40\\xf7\\x67\\x36\\x34\\x7d\\x88\\x80\\xde\\x58\\x79\\xa4\\x23\\x35\\x00\\x6f\\xf8\\x8d\\x95\\x2f\\xe2\\x9b\\xac\\x0a\\x8e\\x7c\\xfa\\x30\\x3a\\x56\\xbf\\x29\\x71\\xdb\\x48\\xda\\x76\\x30\\xfe\\x6f\\x64\\x46\\x81\\xa1\\x74\\x5b\\xf0\\x02\\x00\\xf3\\xbd\\x6b\\x9e\\x45\\x19\\x8f\\xd3\\x9d\\x78\\xfb\\x4f\\x95\\x93\\xad\\x00\\x67\\xda\\xed\\x99\\x95\\x88\\x04\\x2c\\x74\\x32\\x02\\x0b\\x71\\x5b\\xe5\\xf6\\x63\\x94\\x69\\x9e\\x3f\\xfd\\xb8\\xdb\\x7f\\xb5\\xb2\\xd4\\xbf\\x79\\xef\\x7b\\xd3\\x05\\x77\\x6b\\xad\\xe1\\x76\\x7f\\xde\\x0e\\x96\\xc7\\x16\\xfc\\xe5\\xb7\\xad\\x35\\x62\\xff\\x71\\xce\\x0c\\x29\\xcb\\xa0\\x9d\\xdf\\xbe\\x89\\xfd\\x24\\x0a\\x9f\\x6e\\x60\\x10\\xde\\x58\\x59\\x4b\\x20\\x0c\\xde\\xb7\\x8b\\x2f\\x6f\\x52\\x97\\x32\\x73\\xf3\\x10\\x2f\\x18\\x57\\x6d\\xfd\\x41\\x60\\xb2\\x00\\xbf\\x1b\\xa7\\x8b\\x84\\x0b\\x70\\xaf\\x48\\xce\\xa4\\x1b\\x98\\xac\\xbf\\x74\\xd3\\x1b\\xea\\x17\\x8e\\xdf\\xc0\\xd8\\xff\\x75\\x91\\x55\\x21\\x1e\\x9c\\x3b\\x1a\\xd4\\x38\\x42\\x1f\\x8d\\x65\\xe3\\x60\\xf6\\x6c\\xa9\\x73\\xcd\\x3f\\x2a\\x67\\x10\\x3f\\x14\\xe6\\x33\\xc4\\xd4\\xad\\x83\\xb2\\x15\\x48\\x7c\\x57\\x2f\\xec\\xb8\\x03\\xf5\\x09\\x08\\xa4\\xcf\\x80\\x19\\xe3\\x08\\xbb\\xb2\\x75\\xbe\\xbf\\xf9\\xf7\\x4e\\x18\\xfc\\x8e\\xe3\\x1a\\xe3\\x1f\\xca\\x52\\xdc\\x69\\x83\\xbd\\x6c\\x54\\x55\\x8f\\x93\\x3f\\xed\\xe0\\x1d\\x07\\x2d\\x3c\\xff\\x08\\xcd\\x75\\x03\\x31\\x32\\x2f\\xf0\\xe6\\xf0\\x93\\x7a\\xd7\\x1c\\x8c\\xda\\x14\\x80\\xbe\\x19\\xcb\\xb1\\xeb\\x74\\xa3\\x56\\xa0\\xa9\\x9b\\xda\\x83\\xa5\\x7a\\xa7\\x64\\xd3\\x5a\\x55\\x88\\x5d\\x29\\x3f\\xc4\\x83\\xae\\xd9\\x95\\xa3\\xd6\\x48\\xbf\\x74\\xa1\\xf8\\x93\\xa1\\xff\\x4a\\x15\\x19\\x87\\x78\\x3c\\x10\\x2d\\x77\\x3a\\x53\\x56\\xb0\\x98\\xf0\\x20\\x00\\x36\\x60\\x8f\\xb2\\x6a\\x65\\xef\\x67\\x32\\xfc\\xf5\\x10\\x8d\\x1b\\x58\\xdf\\x39\\x48\\x04\\x1e\\xb8\\x01\\xdb\\x91\\x6c\\xf5\\x20\\x70\\x36\\x60\\xfb\\xb3\\xb4\\xcd\\xf4\\xe5\\x01\\xa8\\x94\\x77\\xba\\x54\\x73\\x4b\\x32\\x99\\xe3\\x13\\x73\\x30\\x2c\\x42\\x44\\xd9\\x46\\x0a\\xc1\\xfa\\x19\\x00\\x5e\\x60\\x85\\xbf\\x84\\x68\\x65\\x15\\xc1\\x12\\x22\\xa7\\x72\\x11\\x2d\\x21\\x52\\xc4\\x8b\\x78\\x09\\x91\\x22\\x5e\\x24\\x4b\\x88\\x1c\\xc9\\xc5\\x66\\x09\\x6d\\x08\\x4a\\x97\\x50\\x4a\\xd0\\x76\\x09\\x91\\x15\\x51\\xc8\\x15\\xa8\\xdf\\x38\\x84\\x67\\x4b\\xfc\\x4a\\x7c\\xa9\\x0a\\xf1\\x4c\\x84\\x7c\\x49\\x98\\x3a\\x9d\\x88\\x55\\x2c\\x59\\x37\\x56\\x9e\\xc9\\x77\\x58\\xa8\\x25\\x7c\\x67\\xe5\\x99\\x95\\xc1\\xe2\\xb8\\xc4\\xbf\\x15\\xa4\\x3a\\xc7\\x2b\\xe3\\xef\\x76\\x41\\xa8\\x56\\xe6\\xf4\\x3b\\x1f\\xd9\\xa1\\x5a\\x79\\xf6\\xa0\\xcb\\x46\\xec\\x4f\\xfa\\xc8\\x6f\\x58\\x2e\\x17\\xf1\\x4b\\x57\\x0d\\xdb\\x0a\\x69\\x8a\\x3f\\x51\\x15\\xe2\\xbe\\x12\\xbb\\x11\\xf6\\xe7\\xf0\\x93\\xba\\x94\\x2c\\x45\\xb6\\x1e\\x0e\\x4d\\xf5\\xa2\\xec\\xc5\\xb2\\xe5\\x1a\\xcf\\x86\\xd7\\xd6\\xcd\\xf8\\xe6\\x2c\\xc2\\x9e\\x35\\x73\\x57\\xb7\\x0f\\xe9\\x51\\x77\\xa5\\x24\\x0f\\x21\\x38\\x92\\xef\\x4a\\xb6\\x96\\x42\\x15\\x63\\x7b\\x7d\\x1a\\x43\\x10\\xa1\\x4a\\x16\\xa0\\x0b\\xd2\\xa9\\xcd\\x12\\x63\\x3d\\x14\\xd6\\x5e\\xe9\\xac\\xe9\\xad\\x17\\x2d\\x80\\xde\\x72\\x24\\x34\\x5e\\xa2\\x07\\xf9\\xaa\\x8c\\xfb\\xc9\\x14\\x09\\x64\\x28\\xa5\\xc1\\xac\\xb9\\x3b\\x16\\x5d\\x8e\\x45\\x9a\\x86\\x2b\\xf0\\xe8\\x67\\x0e\\xc0\\xb2\\x9b\\x98\\xef\\x01\\x98\\x48\\x03\\x20\\x7e\\x5c\\x14\\xb9\\xcb\\x40\\x73\\x22\\x74\\x7f\\x92\\x96\\x73\\x80\\xfc\\xe5\\x6b\\xc5\\xfe\\xa2\\x72\\xcd\\x99\\x3c\\x09\\x12\\xaa\\x66\\x26\\xd0\\xc0\\x26\\xb8\\x33\\xf6\\x2c\\x1b\\xf1\\xa5\\xd4\\x2f\\xd5\\x74\\xba\\x03\\xd0\\xe7\\x81\\xf5\\x7f\\xdb\\xba\\xd1\\x47\\x8a\\xfc\\x83\\x46\\x0f\\xb4\\x31\\x58\\x18\\x6e\\x3e\\xe3\\x4c\\x63\\x82\\xe9\\x92\\x74\\x65\\x4a\\xee\\xf3\\x76\\x89\\x4e\\xc2\\xa1\\xa1\\x5c\\x81\\x7b\\xff\\xd9\\x9d\\xe6\\x88\\x2b\\xe4\\x3e\\x02\\xe7\\x49\\xd5\\x8a\\x7b\\x91\\x7f\\x46\\x3a\\xa8\\xbf\\x98\\x53\\x2c\\x39\\xf7\\x55\\xd1\\xa9\\x54\\x37\\x2a\\xb7\\x4a\\xd6\\x1c\\xc7\\x54\\x9f\\x12\\xef\\x2b\\x20\\x1e\\x57\\x88\\x8d\\x2c\\xf5\\x60\\x75\\x07\\xe0\\xfc\\x27\\xfc\\xa1\\xcf\\xe6\\xba\\xc8\\x9c\\x63\\x35\\x01\\xf8\\x93\\x1d\\xab\\xee\\x54\\xc4\\xb2\\x54\\xec\\xf8\\x0f\\xc0\\xb3\\x3c\\xa5\\x0d\\xbe\\x3b\\x47\\x0b\\x97\\xb4\\x9d\\x64\\x59\\x12\\x44\\x2b\\x8b\\xe8\\xcf\\x96\\xd5\\xcd\\x20\\x5e\\xf9\\xf4\\xfd\\x49\\x5e\\x48\\x08\\x07\\xd1\\xca\\xea\\xda\\xb3\\x3f\\x33\\x88\\x56\\x16\\xd5\\xbe\\xb1\\xfa\\x55\\x35\\x27\\x6b\\x5a\\x0a\\x53\\x06\\xd1\\xca\\xba\\xea\\xa6\\xa9\\x60\\xc3\\x52\\x3c\\x74\\x5b\\xf2\\x89\\xd8\\x2b\\x0b\\x0c\\xd9\\x4f\\x1d\\xfb\\x81\\xd8\\x2b\\x0b\\xee\\x67\\x55\\xa8\\x3e\\x8b\\x8e\\x83\\x5f\\xb3\\x69\\xa3\\xc8\\xa7\\x1f\\xcf\\xc6\\x66\\x54\\xe3\\xe2\\x64\\x89\\x08\\xdf\\x23\\x70\\xb3\\x02\\x86\\x0c\\xa6\\x2b\\x60\\x4c\\xa2\\x1b\\x7e\\xcf\\x2a\\x25\\xae\\xac\\x92\\xaf\\x47\\x0e\\x06\\xc5\\xa8\\x8b\\xb4\\x65\\x59\\xe7\\x56\\x91\\xbc\\x89\\x51\\x1b\\x71\\xa0\\xe8\\xec\\x00\\x1a\\x0b\\xd8\\x5d\\x6d\\x35\\x71\\x73\\x6c\\x21\\x31\\xe8\\xeb\\x60\\xed\\x97\\xce\\xa1\\x06\\xc9\\x25\\x5f\\xe5\\x59\\xb1\\xef\\xc4\\x0b\\xfc\\x19\\x42\\xef\\x03\\xf3\\xf9\\xab\\x8b\\x7f\\xf9\\x90\\x14\\xf8\\x55\\x75\\x36\\x37\\x1f\\x89\\x11\\x20\\x8d\\x33\\x5c\\xb6\\x10\\x03\\xfb\\xaa\\x8f\\x34\\x5a\\xf0\\x26\\x53\\x1e\\xc5\\xb5\\x69\\x2d\\x6d\\x45\\x1f\\xc2\\x7f\\x5f\\x2f\\xb5\\xb8\\xd3\\x7f\\x71\\xf6\\x0a\\x84\\xcc\\x3a\\xac\\xb3\\xff\\xa7\\x78\\x3c\\xc3\\x5d\\x0a\\x62\\x0a\\x88\\xe5\\x00\\x6e\\x08\\x51\\xe2\\xae\\x5d\\x3b\\xcf\\xbd\\x92\\x08\\x91\\x4e\\xeb\\x43\\x18\\xe0\\xab\\x95\\x97\\x93\\xce\\xc5\\xed\\xbf\\xe8\\xa1\\x0c\\x40\\x5d\\x4c\\x8e\\xd5\\x7c\\x01\\x0d\\x6f\\xdc\\x28\\x98\\x24\\x6b\\x28\\x5d\\x6a\\x73\\xf4\\xe6\\xed\\x63\\xbe\\x65\\x9a\\x2c\\xb0\\x67\\x63\\x59\\xe1\\x9f\\x4a\\x98\\x6f\\xa4\\x28\\xab\\x02\\x1a\\x27\\x59\\x39\\xe0\\x1a\\xe9\\x11\\x72\\xa5\\x1c\\xfd\\x19\\x30\\x8d\\x4c\\x1e\\x83\\x19\\xe8\\x02\\x92\\x21\\xf8\\x90\\xbe\\x29\\x59\\xb0\\x78\\x0f\\xc1\\x15\\x44\\x88\\x78\\x24\\x31\\x1b\\x1e\\x43\\x44\\x4b\\x17\\x06\\x0f\\x66\\x88\\x65\\x24\\x4d\\x37\\x80\\x94\\x1c\\xcc\\x2d\\x66\\xcd\\xe0\\x3c\\xf0\\x82\\xe9\\x4a\\xfa\\xa6\\x5f\\x4e\\xe2\\xcf\\x56\\xba\\x7c\\xf8\\x00\\x92\\x0b\\x3b\\x78\\x54\\x75\\xd2\\x34\\x5d\\xc3\\x26\\x4b\\x6d\\x0b\\xf8\\x18\\x86\\x4d\\xd3\\xe9\\x8a\\xfa\\x66\\xce\\xac\\xf8\\x25\\xd0\\xdc\\x88\\x03\\x39\\x54\\xe3\\x10\\x1f\\x68\\x38\\xd6\\x9d\\x66\\xd0\\xde\\xda\\x97\\x52\\xd6\\xb5\\xb8\\x3d\\x5f\\x1a\\xfe\\xa9\\x7c\\x95\\xe1\\x5c\\x79\\x5b\\x0f\\x66\\xaf\\x69\\x58\\xe3\\x2a\\x66\\xcd\\xa4\\xb3\\x1f\\xa7\\xe3\\x35\\x49\\x22\\x39\\xc6\\xf3\\x76\\xb1\\xc8\\x02\\xf5\\x40\\x6b\\xbf\\x3f\\xf7\\x09\\xc7\\x10\\x4f\\xf2\\x20\\xec\\x40\\x8c\\xce\\xac\\xa7\\xbc\\x92\\x2d\\xb8\\x18\\x07\\x5c\\xf6\\xa7\\xfd\\xe8\\x63\\xf6\\x41\\xb4\\xdf\\x57\\x19\\x45\\x9b\\xb7\\xde\\x16\\xda\\x0b\\xd5\\x28\\x7b\\xd6\\x95\\x6c\\x94\\x98\\xc5\\xa5\\x53\\x05\\xcc\\x23\\x59\\xd6\\xe9\\x71\\xd6\\x0c\\x4b\\x29\\x85\\xc2\\x8d\\xfb\\xea\\xd2\\xb2\\xd0\\xce\\xa0\\xbd\\x56\\xdd\\x57\\xbb\\x3c\\x9a\\x00\\x22\\xc0\\x0c\\x4f\\x22\\x87\\x01\\xc4\\xd8\\x88\\x30\\x78\\xfe\\xc6\\xac\\xd0\\x48\\x2d\\x39\\xb7\\x67\\xd3\\xe8\\x9c\\x63\\xbf\\xd1\\x71\\xc9\\xb8\\xaf\\xde\\xf4\\xc4\\x1d\\x16\\xc4\\xde\\x92\\xf3\\xa0\\x29\\x06\\x1f\\x80\\xc7\\x92\\xd0\\x31\\x6d\\x35\\xdd\\x22\\xfc\\x36\\x7c\\x47\\x69\\x2c\\x4f\\x6d\\xf4\\x19\\x3e\\x0a\\x20\\xc8\\xdd\\xb8\\xaf\\xc9\\x46\\x81\\x49\\xff\\x5f\\xf5\\x31\\x46\\x7b\\x42\\x70\\x87\\x32\\x24\\xc6\\x34\\x6b\\x62\\x45\\x9f\\xb3\\x9c\\x72\\x1c\\x82\\x4b\\x6f\\xc6\\x1a\\xd5\\xe3\\x10\\x9c\\x7b\\x33\\x1a\\x25\\x5a\\x87\\x60\\x19\\x38\\x0e\\x66\\xc7\\x86\\xe0\\x1f\\x76\\xa4\\x6b\\x79\\xa9\\x5d\\xbe\\x68\\xe8\\xcb\\x35\\xce\\x37\\xcd\\xc7\\x16\\x24\\xe6\\x3a\\x7c\\x92\\xd8\\x1c\\x42\\x52\\x80\\x63\\x1c\\x64\\x46\\x70\\xb1\\x06\\xff\\x32\\x3a\\x67\\xa1\\x04\\x9f\\xa2\\x9b\\xfc\\x44\\xea\\x4a\\x0a\\x95\\x46\\x0f\\x32\\x63\\xa1\\x04\\x25\\x35\\x7d\\x3b\\xec\\x93\\x10\\x12\\x70\\x30\\xaa\\x98\\x42\\x55\\xc3\\x83\\xac\\x5e\\x5a\\x27\\x61\\xc0\\x81\\xf9\\x20\\x2f\\x0d\\x87\\x53\\xc1\\x61\\x37\\x00\\x62\\x48\\xc3\\xc8\\x38\\x7d\\x34\\x04\\xaf\\x1d\\x71\\x5c\\x28\\x0d\\x34\\x20\\x02\\xa7\\x91\\xb4\\x18\\xfc\\x1c\\x0f\\x72\\x6a\\xad\\xa7\\x50\\xad\\xf1\\x20\\xdb\\x2a\\x3f\\x91\\xcc\\xce\\x00\\xf8\\x50\\x96\\x43\\x45\\xf9\\x02\\x98\\x58\\x50\\x21\\x64\\x1f\\x3d\\x28\\xf9\\xea\\xce\\xfa\\xf0\\xb8\\x9d\\x43\\x4f\\xea\\x6c\\xde\\x78\\x5c\\x25\\xa0\\xa4\\x17\\x7a\\x10\\x1b\\x7b\\xd0\\x99\\x95\\xf6\\xc3\\xbd\\xd2\\x83\\xe0\\x18\\xa3\\x57\\xc6\\xbc\\xd2\\xd3\\x10\\xf8\\x62\\xfc\\xb1\\xad\\xe9\\xa4\\xde\\x7a\\xf8\\xfc\\xcb\\xa9\\xc9\\xda\\x32\\x43\\x07\\x3d\\xd4\\x76\\x0c\\xd6\\x92\\x4b\\x31\\xdd\\xc2\\x0a\\xef\\xc1\\x67\\x35\\xda\\xa2\\x89\\x37\\x43\\xa5\\x15\\xfb\\x5c\\x72\\x39\\x15\\x28\\xea\\x4e\\x52\\x45\\x60\\xc1\\x76\\xcd\\x7d\\x22\\x8c\\x4b\\x6a\\x4b\\xb7\\x09\\xe0\\xec\\x5a\\xcd\\xb1\\xf9\\x4d\\x09\\xa7\\x46\\x24\\xe1\\x76\\x8e\\x1d\\xde\\x68\\x3a\\x61\\x04\\x4c\\x2e\\xcb\\xa1\\x4e\\x87\\x75\\x88\\x18\\xac\\x54\\x22\\x0c\\xd5\\x36\\x84\\xab\\x25\\xde\\x0c\\x06\\x4c\\x0c\\xf6\\xe6\\x80\\x5d\\x71\\x44\\x11\\xac\\xcc\\x01\\xbb\\x96\\x47\\x0a\\x69\\x82\\x6d\\xc9\\xa0\\x15\\xcf\\x92\\xb2\\x3b\\x63\\xb0\\x2a\\x89\\x60\\xaa\\x37\\x55\\x69\\x55\\xe5\\xdd\\x0c\\x71\\x10\\x20\\x86\\xf3\\x74\\x60\\xde\\xe8\\x8a\\xf5\\xae\\x18\\x6c\\x1e\\x82\\x2d\\x4f\\x45\\x0c\\x3a\\xfe\\x80\\xde\\x95\\xc6\\xf2\\x98\\xc7\\xd1\\xf2\\xe5\\x5f\\x65\\x0d\\x51\\x9a\\x18\\x44\\x10\\x71\\xac\\xc9\\x87\\x64\\x7e\\xd7\\x4d\\xb0\\x2a\\x07\\xd6\\x37\\x53\\x5f\\x34\\xa7\\x59\\xc7\\x60\\x48\\x32\\x81\\x55\\xa9\\x18\\x4c\\xab\\x01\\xed\\x76\\x73\\xd1\\xfd\\x88\\xb2\\x6f\\x2c\\x0f\\x63\\x38\\xcd\\x89\\x37\\x6c\\x0b\\xc2\\xf3\\x05\\xfe\\xc8\\x41\\xbf\\x38\\x5a\\x2e\\x85\\x47\\xf3\\xa6\\x49\\x73\\x89\\xa3\\xe5\\x4a\\xf8\\x71\\x3c\\x2a\\x9e\\xef\\xe5\\x42\\xdb\\x49\\xfb\\xea\\x26\\x22\\x5e\\xae\\x95\\xdd\\x49\\xda\\xb3\\xcc\\xa9\\x6b\\xf1\\x72\\xc1\\x8c\\x59\\x3e\\x71\\xbc\\x5c\\x31\\x3b\\xfd\\xfb\\xb7\\x24\\x74\\xb9\\x5c\\x76\\x5c\\x49\\x16\\xc7\\xcb\\x25\\xb0\\x33\\x75\\xaf\\x0a\\xbb\\x71\\x8b\\x97\\x0b\\x61\\x67\\x75\\xd5\\xd4\\x27\\x92\\xe3\\x71\\xbc\\x9c\\xe6\\xbd\\xe2\\xa7\\x97\\x93\\xbb\\x3f\\xe9\\xbe\\xea\\x91\\x08\\xcb\\xc9\\x3d\\xc8\\xbf\\x34\\xd9\\x4f\\xf3\\x0f\\xef\\x9d\\x0c\\xd7\\xbc\\x43\\xfd\\x6c\\xbe\\x08\\x7b\\x1c\\x0a\\x26\\xbc\\x7c\\xde\\xbb\\x9e\\xc3\\x9a\\x8b\\x97\\xcf\\x3b\\x38\\xc0\\x6c\\x2a\\xae\\x3e\\x8c\\xc5\\x16\\xe9\\x76\\x46\\x22\\xe7\\xe6\\x76\\xf6\\xe6\\xd7\\xd1\\x43\\x99\\x6e\\xb7\\x0b\\x0c\\x4e\\x5a\\x5c\\x8b\\x2c\\xd4\\xc3\\x63\\x36\\x6f\\xe7\\xd0\\xc6\\xb1\\x58\\x20\\x14\\xd9\\x38\\xaa\\x05\\x42\\x81\\x8d\\xe3\\x71\\x81\\x0c\\x71\\x8d\\xc8\\xf3\\x16\\xc8\\x0f\\xea\\x5b\\xe4\\xf9\\x0b\\xec\\xf0\\x4e\\x76\\x42\\x80\\x9f\\x4c\\x0b\\x24\\xf2\\x70\\x85\\xb6\\xa4\\x34\\xf8\\x09\\x76\\xfa\\xbd\\x5b\\x58\\xc6\\xf2\\xec\\xa6\\x5b\\xdc\\xd9\\x1f\\xb2\\xe4\\x79\\x87\\x55\\x35\\xe6\\xc3\\x29\\x7f\\xd6\\x8c\\x99\\xae\\x50\\xea\\xf6\\x28\\xa9\\xa4\\x09\\x16\\xe0\\xa3\\xb4\\xaf\\x6d\\x65\\x15\\xa7\\x2a\\x6e\\xb3\\x55\\xb0\\xcf\\xc1\\x63\\xfb\\x24\\x0c\\xa6\\x9f\\xf7\\xa8\\xce\\x6c\\x2e\\xc6\\x05\\x02\\x55\\x4b\\xfa\\x38\\x36\\xdb\\x17\\x25\\x0e\\x1f\\x17\\x4e\\xda\\x85\\xee\\xa8\\xda\\xe5\\x40\\x79\\x50\\xef\\xc2\\x16\\xb7\\x07\\x55\\x2e\\x8f\\x3a\\x1f\\xa3\\x29\\x1e\\x64\\x39\\x75\\x90\\xcb\\xc2\\x00\\x0d\\xf6\\xf1\\xcc\\x09\\x0c\\x53\\x51\\xf1\\x68\\x0a\\x85\\xe6\\x0c\\x08\\x8b\\x1e\\x76\\x49\\x09\\x41\\x82\\x8f\\x56\\xaa\\xd1\\xbf\\x61\\x27\\x05\\x50\\x48\\xd8\\xd7\\xbd\\xb9\\xee\\x44\\xde\\xec\\x69\\x93\\x0f\\xc9\\xb8\\x93\\xc2\\xe7\\x0d\\x38\\x2b\\x1e\\x8d\\xa1\\x22\\x81\\x63\\x38\\x6b\\x16\\x57\\x92\\xbd\\xfc\\x30\\x5e\\xee\\xb8\\x29\\xc2\\x59\\xf3\\x50\\xd6\\x43\\x60\\x34\\x07\\x7f\\x29\\x67\\xc2\\xc2\\x70\\x9a\\xc6\\xd8\\xfc\\x83\\x53\\x6d\\xc3\\x00\\xdf\\xda\\xb2\\x33\\x0c\\xb2\\x35\\x1e\\x4d\\xa7\\x7e\\x18\\x31\\xda\\xb6\\x5e\\x80\\xc3\\xf2\\xa6\\x79\\x97\\x45\\xf3\\x76\\xd1\\x67\\x32\\xf2\\xd9\\x1a\\x81\\x67\\x61\\x20\\x4c\\x62\\xa7\\x09\\x84\\xe8\\x1e\\xdb\\xb2\\xd1\\x7d\\x66\\xf6\\x68\\xbe\\x46\\x10\\xd2\\xe9\\x15\\xc3\\x31\\xd7\\xc1\\xc3\\xf9\\xec\\xc1\\x31\\x52\\x1d\\xe3\\x5c\\x7e\\x60\\x02\\x4a\\xe4\\x4d\\x85\\xf2\\x77\\xe9\\xdc\\x8c\\x11\\xe4\\xd9\\x0f\\x80\\xd8\\x29\\x73\\x29\\x19\\x4f\\x01\\x7f\\xd3\\x2f\\x9d\\x89\\x7f\\xa5\\x8e\\xc6\\xbd\\x61\\xbb\\xc6\\xf8\\xce\\x71\\x85\\x18\\xe2\\xe4\\x84\\x3b\\x6d\\x04\\x4a\\x5b\\xbe\\x77\\x0a\\xe9\\x23\\x7b\\x2c\\x11\\x69\\xde\\x8d\\x7d\\x15\\xd7\\x8a\\x0e\\xff\\x04\\x74\\x39\\x07\\xbb\\x4c\\xf9\\x04\\x34\\x61\\xc6\\x3b\\xa1\\xee\\xbc\\x9a\\x6b\\x84\\x67\\x7d\\xd4\\xa4\\xaa\\xfb\\x00\\xbf\\x8b\\x27\\x55\\x2a\\x59\\xb3\\x5b\\x24\\xc1\\xa7\\xff\\x6a\\xc4\\xb3\\x52\\x54\\x96\\x08\\x69\\x77\\xdf\\x8f\\x39\\x75\\x18\\x5e\\x68\\x16\\xc9\\x3c\\x90\\xe1\\xf1\\xdd\\x88\\xbd\\xa6\\x8b\\x13\\x20\\x4b\\xed\\xbb\\x69\\xc4\\x7d\\xd5\\x28\\xab\\x6a\\x8e\\x7c\\x78\\x90\\xba\\xed\\x96\\x4b\\xba\\xcd\\x67\\xcd\\xce\\x4e\\xd9\\x80\\xdf\\xe9\\xbb\\x69\\xf4\\x51\\x0f\\x8b\\x85\\xf7\\xf5\\xe6\\x33\\x7c\\x5a\\x35\\xbf\\x01\\x37\\x15\\xd2\\x9c\\xc0\\xdb\\x80\\x17\\x02\\x49\\x2c\\x6b\\x36\\x60\\xa5\\x21\\x67\\x27\\x5b\\x2e\\xee\\xd9\\x42\\xea\\xf6\\x8f\\xe3\\xb1\\xdf\\x3d\\x9c\\x15\\x91\\xc0\\xe6\\xfb\\x51\\x15\\xea\\x2c\\xab\\x69\\x2e\\xc7\\x16\\x8c\\xf7\\x1f\\x17\\x99\\x8f\\x87\\x5a\\x01\\x88\\xaa\\xc4\\x7d\\x25\\xae\\xac\\x79\\xaf\\x39\\x35\\x19\\xee\\x70\\x60\\x06\\x27\\x6b\\xa4\\x50\\xa2\\xdc\\xa3\\xcf\\x9a\\x0a\\x51\\x37\\x60\\x66\\x76\\x96\\xee\\x30\\xc6\\x29\\x94\\x2e\\x77\\xed\\x6f\\x9a\\x5e\\x17\\xc1\\x77\\xee\\x64\\xa9\\x1a\\x97\\x23\\x1b\\x03\\x52\\x89\\x83\\xa1\\xd4\\xac\\x08\\x12\\x5c\\x77\\xb2\\x32\\x2e\\x75\\x20\\x82\\xec\\x56\\x86\\xc4\\x9d\\xae\\x4f\\xe2\\xf6\\x83\\x77\\x71\\xb1\\xc6\\x99\\x15\\x57\\x46\\x10\\xc6\\x70\\x2c\\xa8\\x53\\x8c\\xc0\\x88\\x75\\x9c\\x67\\x5d\\xa8\\xe1\\xb6\\x0a\\x1a\\x16\\xfc\\x46\\xdb\\x7c\\x4c\\x6a\\xd7\\x20\\x94\\xdb\\xaf\\x00\\x6a\\x8f\\xe7\\xed\\x7c\\xe5\\xc7\\x9d\\x2e\\x9d\\x72\\x09\\xb1\\x5b\\x60\\x81\\x87\\x11\\xea\\xb7\\x77\\xf2\\xc3\\x1d\\xaa\\x1b\\xd0\\xe8\\x26\\xc2\\x70\\x03\\x2a\\xe0\\x00\\xcc\\xde\\x19\\x00\\xc1\\x9e\\xc9\\x52\\x76\\xce\\xf8\\x14\\x8a\\x7c\\x07\\x06\\xd5\\x08\\x5c\\xcb\\x52\\x55\\x05\\xd9\\xa3\\x29\\x94\\xfb\\xf6\\xbc\\x3e\\xfd\\x7a\\xaf\\x9a\\xc6\\xe9\\xb8\\x50\\xf7\\x3b\\x70\\x86\\xdc\\xe1\\xfb\\xea\\x68\\xa8\\x74\\x81\\x98\\xc9\\x9c\\x79\\x5f\\xa8\\xaa\\x71\\x1b\\x00\\xea\\x42\\x7b\\xfc\\x51\\x15\\x9a\\x0c\\x7c\\xa8\\x0a\\xed\\xc1\\xde\\xd0\\x11\\x8f\\x35\\xf7\\x63\\x3b\\x27\\xec\\x73\\x59\\x8d\\xc2\\x74\\x03\\x8a\\xf0\\x4e\\xd9\\x9a\\xfa\\xb5\\x01\\x3d\\x78\\x00\\x26\\x52\\xea\\xb8\\x04\\x51\\x77\\x94\\x4b\\x02\\x8b\\x83\\x38\\x59\\x07\\xe1\\xe6\\x9b\\x30\\x5b\\x70\\x64\\x09\\x22\\x03\\x3b\\xee\\x1c\\xeb\\xd0\\xec\\xac\\xbe\\x10\\xe2\\x1f\\xc3\\x20\\x4d\\xef\\xca\\x48\\x40\\x5b\\x19\\xf0\\x49\\xb5\\xf8\\x45\\xc9\\x57\\x56\\x15\\x40\\x56\\x0d\\x4c\\x8a\\x8e\\xba\\x7c\\x89\\x45\\x1f\\x3a\\x91\\x74\\xe0\\x8c\\xe3\\x10\\x45\\xc5\\x80\\x5f\\x5c\\x57\\x13\\x70\\x00\\x0e\\xf0\\xe4\\x74\\x4c\\xc0\\x0d\\x48\\xd3\\x3d\\x96\\x59\\x26\\xe0\\x01\\x1c\\xe0\\x89\\xa0\\x0e\\x21\\x89\\xb4\\x87\\x4b\\xf6\\x61\\x78\\xc5\\x62\\x0c\\x3a\\x4c\\xdc\\x5a\\x4e\\x1b\\xf0\\x8a\\xc5\\xb7\\xf7\\x0c\\x67\\xc4\\x85\\x10\\x9c\\x1d\\x09\\xce\\x7c\\x2c\\x16\\x43\\xd3\\xe3\\x4f\\x2e\\xee\\x55\\x2c\\x3e\\xbe\\x27\\xec\\x55\\x43\\x41\\xc2\\xc8\\x9f\\x7d\\x20\\xf9\\xe5\\x23\\x88\\xb4\\xf5\\xed\\x62\\xbc\\x5f\\x25\\x02\\xdf\\xfa\\x80\\x4e\\x3c\\x65\\x51\\x98\\x2d\\xe0\\x89\\x7a\\x18\\x81\\xfb\\x7d\\x80\\xa7\\xce\\x90\\x28\\x5c\\xbe\\x7d\\xaf\\x7f\\x2b\\xb1\\x57\\xa5\\xca\\x9b\\xee\\x64\\x6e\\x59\\x06\\x87\\xcb\\x57\\x4d\\xa9\\x63\\x5e\\x75\\x14\\x46\\x7f\\xcb\\x1c\\x73\\xac\\x23\\xf0\\xe8\\xef\\x74\\xde\\xab\\x8a\\x5f\\x6a\\xb1\\x2b\\x28\\x44\\x07\\xf5\\xdf\\x4c\\xb8\\xef\\x76\\x5d\\xee\\xf4\\xcd\\x2d\\x0e\\xe0\\x82\\x34\\x66\\xae\\x43\\x84\\x63\\xa7\\xa7\\x6a\\x72\\x92\\xc7\\x6b\\x18\\x0b\\x07\\x2a\\x63\\x80\\x5c\\x8d\\x6e\\xe7\\xdf\\x58\\xe7\\x1c\\x81\\xd5\\xed\\xf2\\xcc\\x3c\\xc8\\xe8\\xe9\\x53\\x45\\xfb\\x48\\x04\\x81\\xe9\\x1c\\x5c\\x3b\\x7b\\xb6\\x9f\\x90\\xc0\\x87\\x0b\\xda\\x78\\xcf\\xba\\x33\\x76\\x12\\x69\\xc6\\x85\\x52\\xca\\x8f\\x52\\xd7\\xcd\\xe8\\x66\\x86\\x5b\\x1d\\xa6\\xf0\\x44\\x01\\xf6\\xe6\\xdf\\x38\\x90\\x9c\\x9b\\x29\\x05\\x77\\x42\\x9f\\x05\\xcc\\xde\\x84\\x14\\xbc\\x09\\x3b\\x2e\\x12\\x4e\\xa1\\x04\\x7f\\x67\\xca\\x0f\\xbe\\xb6\\x24\\x03\\x6f\\xe1\\x8e\\x55\\x12\\x0f\\x32\\x8e\\x77\\xc6\\x36\\x32\\x2b\\x55\\x7f\\x2c\\x8c\\x66\\x26\\x04\\x80\\xa0\\xa8\\x29\\x01\\xd7\\xfe\\xce\\xbc\\x73\\x0a\\x2a\\x9e\\xef\\x5d\\xbb\\x18\\x03\\x84\\xa9\\x5c\\x3c\\xc5\\x87\\x66\\xed\\x14\\xb6\\x2d\\x4a\\x3f\\xab\\x5e\\x2a\\x59\\x35\\xe2\\xd9\\x9c\\x25\\x69\\xe3\\x60\\xaa\\xed\\xac\\xaa\\xfb\\x8b\\x69\\x8c\\xab\\x56\\x48\\xe1\\x1a\\x80\\x9d\\x4b\\x46\\x4c\\xc0\\x45\\xcb\\xae\\x93\\xf1\\x0e\\x82\\x14\\xd5\\xb4\\x36\\x73\\xc9\\x50\\xe0\\xd2\\xeb\\x01\\x72\\x2e\\xa7\\x70\\xa5\\xc0\\x9f\\xad\\xb2\\x1f\\xa2\\xbf\\x04\\x80\\x75\\x53\\x28\\xd2\\xfa\\xb3\\x55\\x75\\x6f\\xe3\\x7f\\xa9\\x6a\\x1e\\x31\\x0f\\x46\\x72\\xac\\x09\\xf5\\xc0\\x99\\xde\\xb7\\x4f\\xa2\\x11\\x1e\\xd4\\xcf\\x0c\\x68\\xbf\\x56\\x9d\\x69\\xe7\\x81\\xb3\\xfd\\x49\\xf2\\xd5\\x2a\\x29\\xec\\xa3\\xbe\\x5d\\x5c\\xb5\\x4d\\x63\\xaa\\x61\\x81\\xf2\\x05\\x40\\x30\\x91\\x40\\xfb\\x59\\xe5\\x13\\x62\\x0c\\x81\\x8b\\xa7\\xbe\\xd2\\x6c\\x54\\x97\\x53\\x28\\xaf\\xea\\xeb\\xf8\\x2f\\xdc\\xbf\\xe3\\x0c\\xa9\\x7a\\x31\\xc9\\x51\\xd4\\xad\\x3f\\xc3\\x0d\\x47\\xeb\\xc4\\x0f\\xae\\x3a\\x4b\\xa1\\xfc\\xea\\x49\\x15\\x4a\\x71\\x3a\\x94\\x44\\x80\\xec\\x70\\x48\\x5a\\x7e\\x52\\x47\\xab\\x68\\x1e\\x7d\\x70\\x75\\x4d\\x62\\x4d\\x3e\\x98\\xee\\x03\\x00\\xf7\\xdc\\x81\\x05\\x0d\\x38\\xa6\\x5f\\x40\\x86\\x24\\xf1\\xee\\xac\\x39\\x4f\\xca\\x80\\x23\\x7f\\x85\\xf3\\xa4\\x0a\\x67\\x08\\x6c\\xc1\\x5d\\x48\\x84\\xe5\\x9d\\x78\\x29\\x68\\x6e\\x4f\\x6a\\x92\\x78\\x1f\\xe1\\x74\\x5c\\xb8\\x1c\\xc3\\x8b\\xfc\\x05\\xe0\\x64\\x8e\\x07\\x21\\x96\\x3e\\xf9\\x97\\xaa\\xec\\xc1\\x15\\x38\\x00\\x63\\x6a\\x99\\x5c\\x62\\x2e\\xb3\\x2c\\x5b\\x62\\x31\\x8d\\xa7\\x9a\\x41\\xec\\xc1\\x3c\\xce\\xdb\\xdd\\x7e\\xf7\\x93\\xd9\\x57\\xb9\\xcb\\x39\\xb2\\x60\\x01\\x88\\x9d\\x35\\x59\\x49\\xeb\\x24\\x4e\\x70\\x76\\xeb\\x46\\xb6\\x96\\x2f\\xb0\\x8a\\x13\\x7f\\x15\\x14\\xce\\x31\\x99\\x42\\xe6\\x56\\xc7\\x60\\xc7\\xcb\\x36\\xd8\\x2e\\x91\\x31\\x96\\xea\\x41\\x02\\x5c\\xa7\\xfb\\x88\\x5f\\xa6\\x6c\\xf9\\xee\\x4a\\x48\\xfa\\x7a\\x32\\x74\\x3f\\x4f\\x06\\x61\\x9d\\xae\\x19\\xe2\\x35\\x11\\xf8\\x28\\x87\\x12\\x53\\xb1\\xf5\\xc4\\x8d\\x7a\\xb1\\x4a\\xd5\\xe2\\x3a\\x27\\x0b\\xd6\\xdf\\x2e\\x79\\x2e\\x37\\x20\\x02\\xdf\\x0c\\xa1\\x63\\x4e\\xc0\\x16\\x94\\xcb\\x27\\xd3\\x56\\x85\\x2a\\xc4\\xb5\\xb1\\x7c\\x87\\x4f\\x88\\x4b\\xd4\\xb8\\x02\\xee\\x2d\\xc4\\x9e\\x9f\\xcc\\xbb\\x53\\xf8\\x20\\x6b\\xfb\\xa9\\xae\\xc5\\x9d\\x62\\x55\\x16\\x17\\xde\\x9b\\xf8\\x66\\x0c\\xdf\\xac\\x15\\x43\\xa1\\xc5\\x5e\\x36\\xaa\\x2c\\xb9\\x02\\xc5\\x87\\x99\\xdb\\x4b\\x8e\\x1b\\xc3\\xa4\\x74\\x66\\x50\\xe5\\x04\\x49\\x0c\\xc8\\x49\\x15\\x2d\\x5f\\x0d\\x08\\x06\\xfa\\x3e\\x3f\\xf1\\x09\\xea\\x43\\x7d\\xd8\\x7e\\x48\\x60\\xec\\x23\\x13\\x18\\xe9\\xf7\\x21\\x65\\x73\\xca\\x83\\x13\\xd5\\x87\\xca\\xe6\\x29\\x0d\\xae\\x53\\xf5\\xa1\\xca\\x99\\x68\\xc0\\xf0\\xa0\\x26\\x80\\x18\\x7d\\x32\\x37\\x99\\x07\\xd3\\x35\\xbb\\x2f\\xc6\\x22\\x6e\\x1f\\xaa\\xa4\\xf7\\x45\\x1f\\x72\\x74\\xd1\\x7f\\x88\\x1c\\x0d\\xf1\\x1c\\x1a\\x54\\x09\\x40\\xde\\xba\\x78\\x84\\x8f\\x53\\x44\\x9a\\xb0\\xdb\\xb4\\xd0\\x0f\\xc5\\x75\\x45\\xa0\\x83\\xee\\x3b\\x3b\\xb8\\xbf\\x77\\xee\\x46\\xd7\\xb5\\x6c\\x74\\x7d\\xd4\\x7c\\x40\\xf9\\xc1\\x2a\\xf1\\xbb\\x6a\\x1b\\x4b\\xaa\\x76\\xea\\x87\\xab\\x9c\\xfd\\xec\\x4d\\xd1\\x2a\\xeb\\x57\\x77\\x98\\xaf\\xfc\\x6e\\xfc\\x39\\x7b\\xf6\\x62\\xc8\\x9b\\x64\\x45\\x87\\xa0\\xed\\x0a\\x24\\xbe\\x5c\\x86\\x62\\x7e\\xe7\\xed\\x4b\\x33\\xb9\\xc6\\x1b\\x6e\\x98\\x13\\x53\\x89\\x93\\x82\\x67\\x73\\x64\\xc2\\xcd\\x6b\\x29\\x14\\xdd\\x8f\\x24\\x77\\x9b\\x12\\xb1\\xf2\\x35\\x96\\xf3\\xef\\xa6\\xb8\\xf2\\x19\\xbf\\x6d\\x4e\\xca\\x56\\x7c\\xef\\x2d\\xae\\x7a\\xe6\\xf4\\xba\\xa0\\xf8\\x52\\x35\\xaa\\xaa\\xc8\\x83\\x81\\xeb\\x1e\\x89\\xd7\\xe6\\x7c\\x31\\x95\\xbb\\x21\\x11\\xd7\\xfe\\x0a\\xb5\\x76\\x35\\x68\\xb8\\x96\\x91\\xfa\\xad\\x38\\x6b\\x62\\x85\\x9f\\xb3\\xf6\\x6f\\x63\\xa5\\x59\\x1e\\xad\\xf1\\x3a\\x3d\\xa4\\xce\\x49\\x2b\\x4d\\xf3\\x78\\x8d\\x33\\x3a\\x20\\xd2\\x3c\\x59\\x25\\x38\\xdd\\x39\\x85\\xc0\\xab\\x23\\x74\\xc7\\x3c\\xcb\\xb5\\xf5\\xfe\\xee\\x3f\\xea\\x46\\x9d\\xc5\\x8d\\xfc\\x28\\xac\\x92\\x74\\x73\\x69\\xbe\\xb6\\xf6\\x26\\xe9\\x4e\\x29\\x38\\x15\\x47\\xf9\\x90\\x42\\x3c\\x6d\\xcf\\x31\\xeb\\x14\\x0a\\x24\\xbb\\x66\\x17\\xc4\\x4c\\xa1\\x40\\xd2\\xa9\\x23\\x57\\xb2\\x7e\\xe5\\xc5\\x00\\xfe\\xf3\\xa5\\xc2\\x12\\xa0\\xbc\\x3e\\x75\\xc7\\xb4\\xab\\x7d\\x48\\xd4\\x0c\\x7c\\x9f\\x58\\x9b\\x1e\\x24\\x77\\xec\\x4f\\xed\\xf1\\xc8\\x8a\\x19\\x0e\\x80\\x7e\\xa9\\x64\\xd9\\x2f\\xe1\\xb6\\x94\\x56\\x44\\x2e\\xb9\\xc4\\x07\\x7f\\xd1\\x9c\\xe7\\x2e\\x30\\x12\\xdf\\xcd\\xe0\\xdb\\xaf\\x54\\x03\\x4f\\xab\\xbf\\x79\\x7a\\x12\\x29\\xf0\\xa1\\x7e\\x73\\x41\\x74\\x17\\x39\\x42\\xda\\xfc\\x9c\\xc6\\x86\\x99\\x5f\\xac\\x7c\\x5b\\x6f\\xba\\x4d\\x7a\\x06\\x45\\x73\\x0b\\xce\\xe8\\xb1\\xf1\\xa1\\x84\\x6e\\x4a\\x74\\xc9\\x8a\\x10\\x17\\xdd\\xeb\\xf3\\x78\\x66\\x24\\xe0\\x55\\x63\\x68\\x72\\xc1\\xa5\\x07\\x49\\x33\\xfb\\x57\\x7d\\x99\\x98\\x28\\x60\\x8f\\xf5\\xd8\\xce\\xaa\\x37\\x6d\\xa8\\xea\\x2e\\x02\\x97\\xdc\\xbe\\xd4\\x85\\xaa\\x4f\\x6c\\xf1\\x43\\x9c\\x70\\x5f\\x9a\\x77\\xf1\\x68\\x7a\\xdb\\x6a\\xf4\\x10\\x86\\x10\\x2b\\xec\\xab\\x30\\x47\\x27\\x5b\\x06\\x69\\x30\\xfb\\xb3\\x79\\x55\\xe3\\xa5\\x20\\x19\\xe4\\xbe\\x74\\x60\\xb7\\x5e\\x3b\\x95\\x8b\\x2e\\x00\\x00\\x07\\xde\\xde\\xb5\\x26\\xd8\\x2a\\xee\\xa4\\x76\\xde\\x07\\xc8\\xff\\xd9\\x57\\xc6\\xfc\\x66\\x65\\x05\\x46\\x88\\x75\\x57\\x0f\\x82\\xcb\\x5d\\xb3\\xb8\\xea\\x54\\xde\\xcb\\x49\\x52\\x17\\xe1\\xe3\\x2e\\x92\\x2c\\xd5\\x04\\x5b\\x73\\xe5\\x56\\x44\\x08\\xb7\\x2f\\x4e\\x3d\\x9a\\x21\\x64\\xce\\x11\\x22\\xc6\\xb4\\xfc\\x34\\x5f\\x79\\xb2\\x0f\\x7e\\x72\\x45\\x86\\xfc\\x0c\\x9f\\x38\\xfe\\x82\\x15\\xce\\x54\\x3c\\xce\\xfa\\x50\\x96\\xf9\\xe4\\x6e\\x2d\\x98\\xed\\x86\\x1d\\xf1\\x10\\x56\\xea\\x9a\\xa7\\x55\\xc6\\x29\\xf8\\x7b\\x7a\\xf4\\x9b\\x2c\\xc9\\x1f\\x86\\xfb\\xac\\x91\\x9c\\xbb\\x0b\\xc1\\xee\\x7d\\x23\\x3f\\xc4\\x75\\x6b\\xed\\x70\\xcb\\xee\\x54\\xab\\xf3\\x20\\xf0\\x0d\\x44\\x50\\xeb\\x3c\\x30\\x39\\x7b\\xde\\xce\\xea\\xb3\\xb4\\x1f\\x8b\\x17\\x26\\x9f\\x11\\xf1\\x85\\x90\\x23\\xb6\\xe7\\xdc\\x50\\x4f\\x85\\xb3\\x66\\xb1\\x50\\xfd\\x7c\\x70\\xef\\x82\\x76\\x07\\xf6\\xc8\\x24\\xd5\\x2c\\x09\\xe7\\xed\\x7d\\x8e\\x97\\x18\\xee\\xd1\\xe0\\xbc\\x8d\\x08\\x3c\\xe2\\xfb\\xae\\xb3\\x2f\\xa7\\x86\\x8b\\x7d\\xa0\\x8e\\x7b\\xdf\\x58\\xa5\\x1a\\xe7\\x1f\\x08\\x62\\xfc\\x9a\\x49\\xbd\\x95\\xd8\\xd3\\xbb\\x61\\xed\\xb9\\x74\\xca\\x18\\xe5\\x5b\\x9b\\x15\\xdc\\xa5\\x79\\xba\\x73\\x8c\\x02\\x6e\\xc9\\x1c\\xcd\\x9b\\x14\\x17\\x69\\x9b\\x8d\\xb7\\x41\\xe0\\x2e\\x6d\\x33\\x77\\x85\\x0d\\x2d\\x1c\\x70\\xb3\\xed\\xdb\\xac\\xd1\\x4d\\xc9\\xd9\\x6e\\x10\\x04\\x9e\\x5c\\x60\\x92\\xe2\\x6a\\x6b\\x2f\\x9d\\x39\\x57\\x1b\\x2b\\xe8\\x2f\\x01\\xd0\\x9b\\xf1\\x43\\xad\\xed\\xac\\x2e\\xb1\\xef\\xfe\\x4b\\x2b\\x07\\xc6\\xf0\\x5d\\x5e\\xc4\\xb5\\x2c\\xe9\\x06\\x9c\\x14\\xd7\\x69\\x07\\x8e\\xd9\\x1b\\x29\\x2e\\xce\\x0e\\x74\\xd9\\x1b\\x29\\xae\\x47\\xc6\\x74\\x9f\\x3e\\x39\\xfa\\x3f\\x22\\xf0\\xd6\\xed\\xdf\\x75\\x93\\x9f\\xc0\\xaf\\x0e\\x6e\\x1c\\xc2\\x47\\x11\\x9d\\x40\\xb8\\x60\\xff\\x51\\x51\\x40\\x1e\\xac\\xc8\\xae\\x19\\x73\\xd4\\x12\\xb4\\xe4\\x3a\\x7c\\x6a\\xd6\\x27\\x28\\x8f\\x06\\xf5\\xe8\\xe7\\xa5\\x70\\xf7\\x64\\xe3\\x88\\x4d\\xf1\\xf1\\xca\\x47\\x38\\x63\\x39\\x8b\\x3c\\x85\\x55\\x77\\x90\\x99\\xf8\\x59\\xd5\\xbd\\x61\\xe3\\xc2\\x2b\\x47\\x24\\xf0\\x1f\\x82\\x08\\x21\\xbf\\x78\\x00\\x20\\x00\\x15\\x42\\x56\\x03\\x11\\x38\\x73\\x3b\\x0a\\xf0\\xe9\\x17\\x71\\x27\\xb9\\x0c\\x24\\x81\\xe3\\xf9\\x20\\x2f\\x7d\\x79\\xfb\\x98\\xb3\\x08\\x2b\\xf7\\xa0\\xac\\xab\\xeb\\x0a\\xc0\\x3e\\xeb\\x14\\x2e\\x71\\xa7\\x55\\x59\\x70\\x1a\\x45\\xbc\\x40\\xfb\\xc0\\x25\\x2d\\xba\\x74\\x86\\xd6\\x74\\x0a\\x46\\x60\\xe8\\x77\\x88\\x2b\\x9b\\x83\\x8d\\x78\\x38\\x29\\xd9\\x70\\xaa\\x78\\x0a\\xa2\\xe9\\x70\\x6a\\xcf\\xd9\\x58\\xd5\\x90\\x42\\xd0\\x69\\x00\\xa9\\xfe\\x20\\x85\\x70\\x52\\x0f\\xd5\\xe2\\xe7\\xe4\\x4a\\xf9\\x04\\x74\\x80\\x83\\x3e\\xf7\\xf9\\x44\\x0f\\x8a\\x7d\\x02\\x11\\xe4\\xa2\\x75\\x78\\x29\\x2f\\x35\\x3b\\x71\\x16\\x18\\xbb\\xf3\\x22\\x50\\x00\\xc6\\x4b\\xc2\\x23\\xb0\\xae\\xfb\\x76\\x76\\x88\\x45\\xa0\\x2a\\x0d\\x50\\x48\\x48\\xb2\\x40\\xdc\\xc5\\x81\\x38\\x7b\\xda\\xfd\\xc5\\x02\\x08\\x93\\x1d\\x0c\\x45\\xb0\\xc1\\x35\\x7e\\x30\\x05\\x0b\\x1a\\xa8\\x47\\x3a\\x70\\xd4\\x20\\x82\\xdd\\x77\\x30\\x95\\x9c\\xfc\\x7d\\x14\\xf8\\x10\\xd3\\xe6\\x27\\x57\\xe4\\x18\\x42\\xb0\\xeb\\x60\\x3e\\x68\\x0e\\x41\\x51\\xef\\x6f\\xcc\\x17\\xc3\\xd5\\x9c\\x2c\\x06\\x63\\xc4\\x8f\\x47\\xf2\\x66\\xc7\\x70\\xb9\\xdc\\xc1\\x2d\\xd0\\x78\\x33\\x7b\\x23\\x79\\xed\\xe0\\x9a\\xb2\\xbe\\xfc\\xf3\\xa8\\x6c\\x9f\\xd6\\xa1\\x2b\\xf1\\x05\\x52\\xaa\\x23\\x90\\x24\\x03\\xd7\\xf0\\x5f\\x77\\x50\\x8b\\xf7\\xb8\\x32\\xd2\\x14\\xce\\xd3\\x83\\x55\\xc3\\x8d\\xce\\xe3\\x9a\\x84\\x3b\\x08\\x1c\\xee\\xfe\\x36\\x48\\xaa\\xe2\\x35\\x9c\\x96\\x6d\\x04\\xf2\\xeb\\xd0\\xb2\\x0e\\x04\\x77\\x14\\xe0\\x55\\xfb\\x29\\xdc\\x51\\xe0\\xb0\\x4e\\xcb\\xa2\\x49\\x81\\x0e\\xbf\\xd1\\x1e\\x9e\\xfe\\xce\\xcf\\x4a\\x4e\\xfe\\x98\\x83\\x0f\\x21\\x84\\x9f\\x95\\xf3\\x91\\x63\\xf3\\xd1\\x94\\xd3\\xab\\x77\\x40\\x72\\x12\\xfa\\x38\\x7a\\x3d\\xa7\\x7d\\x98\\x08\\x5c\\x1f\\xd6\\xdf\\xcf\\x9a\\x84\\x29\\xdc\\x81\\xf0\\x4b\\x59\\x7d\\xd4\\xaa\\x10\\x3f\\x39\\xb1\\x27\\x88\\x67\\xf8\\x70\\xfa\\x0c\\x65\\xfc\\xd3\\x8b\\xcb\\xc1\\x0d\\x3d\\xe3\\x4d\\xef\\x17\\x00\\x97\\xf4\\x8c\\xc7\\x97\\x7d\\x27\\xa0\\x25\\xff\\xd2\\x99\\x9d\\xb8\\xd6\\x60\\x9d\\xf6\\xa7\\x98\\x18\\x2f\\x54\\x86\\xc5\\x3a\\x80\\x63\\xad\\x90\\x07\\xe6\\x06\\xa1\\x93\\x00\\xb2\\x07\\x16\\x47\\x8f\\xe7\\xb4\\xdc\\x3d\\xd0\\xf4\\x19\\x1a\\xad\\x33\\xd0\\x8d\\x7b\\xf8\\x45\\x9e\\x95\\xf8\\x52\\x73\\x09\\x6a\\x0a\\x25\\xbf\\xbf\\xb4\\x7a\\x17\\x5f\\x5e\\x54\\x55\\x90\\x03\\x46\\xc9\\x05\\x6a\\xad\\x13\\x1c\\xd9\\x1c\\xbc\\x96\\xd6\\xb4\\x35\\x97\\x40\\xa9\\x7c\\x81\\x9b\\xb2\\x3d\\xf3\\xe6\\x5b\\xbc\\xfa\\xda\\x9c\\xe9\\x1a\\x87\\x28\\x58\\xbe\\xda\\x9c\\x2f\\x32\\xe7\\x4e\\x17\\x73\\xf8\\xc6\\x75\\x4a\\xcd\\xa1\\x6f\\x4a\\x16\\x63\\xa6\\x0f\\x54\\x17\\xf7\\xb8\\x2b\\x7d\\x49\\x8f\\xde\\x1c\\x7b\\x34\\xa3\\xb3\\xf7\\xe8\\xcf\\xd1\\x3f\\x5b\\xed\\x2e\\x81\\x0e\\xe6\\x60\\xa7\\xcd\\xb2\\xc3\\x05\\x12\\x6b\\x7b\\xd4\\x65\\x1d\\x46\\x90\\x1b\\xf5\\x4b\\xbf\\x54\\x2e\\x6b\\x2c\\x85\\x74\\xbf\\x5f\\x1a\\xfe\\x48\\x55\\x7a\\x8c\\x57\\xc1\\x31\\x2f\\x19\\x0c\\xb7\\x21\\x3a\\x36\\x5e\\x76\\x0c\\xba\\x4a\\x0f\\xba\\x4b\\xcc\\x3c\\xa8\\xcf\\x18\\x62\\x0f\\xa3\\x70\\xf3\\x22\\xb5\\x44\\x1f\\x5b\\xce\\x75\\x85\\xf2\\x0c\\x42\\x9d\\x99\\x07\\xb5\\x19\\x04\\x92\\xd4\\xf3\\xe0\\xfc\\xff\\x75\\xa9\\xc4\\xff\\xd2\\x1f\\xf3\\x48\\x40\\x6b\\xea\\x90\\xd1\\x3d\\x01\\xce\\xc8\\x67\\x59\\x96\\x17\\x79\\x71\\x17\\xa9\\x05\\x80\\x59\\x57\\xab\\x13\\x42\\xea\\xc4\\xb3\\x6c\\xc8\\x5b\\xbd\\x0d\\x16\\xed\\xfd\\x9f\\x4f\\xe1\\xd3\\x1b\\x7e\\x2b\\x1b\\x6f\\x8f\\x89\\x40\\x2a\\x3c\\x67\\xa2\\xbf\\xa4\\x97\\x17\\xb2\\x42\\xec\\xbe\\xca\\x65\\x55\\xa8\\x3a\\x67\\xc7\\x65\\x04\\xc1\\xd4\\x8e\\x61\\x35\\xe2\\x1e\\xe2\\xfb\\xb6\\xaa\\x68\\x64\\x20\\x0c\\xfc\\x4c\\xd1\\x5f\\xa8\\x6f\\x79\\x56\\x19\\x99\\x28\\x5b\\x6c\\x9d\\x88\\x00\\x1f\\x2e\\xcc\\xee\\x16\\xa6\\x73\\xb8\\x43\\xda\\xe0\\xf3\\x49\\x36\\xf5\\x89\\x8e\\x14\\x1f\\xbc\\xc5\\xcf\\xba\\x78\\xe1\\x24\\xab\\x04\\x82\\xcb\\x2e\\x97\\xcc\\x07\\x0d\\xa0\\xf7\\x21\\x8d\\xf3\\x08\\x87\\x6d\\x8f\\x1d\\x54\\x73\\x52\\x63\\x59\\x3b\\x24\\x63\\xba\\x7c\\x8b\\x00\\x62\\x85\\xcf\\x56\\x5e\\x46\\xd7\\x60\\x0a\\x89\\x8a\\xff\\xcf\\xb4\\x4d\\x9b\\x29\\x2a\\x36\\x51\\x45\\xa7\\xae\\x12\\x6d\\xba\\xba\\xfe\\x61\\xcc\\x99\\x0f\\xd5\\x2d\\x24\\x5a\\xf4\\x08\\xff\\x55\\xa5\\x18\\x46\\x8c\\x21\\xd1\\x57\\x41\\xfc\\xe7\\x3f\\xff\\x3f\\x00\\x00\\xff\\xff\\x5f\\xa1\\x95\\xdb\\x00\\x6f\\x00\\x00\")\n\nfunc vendor_material_icons_materialicons_regular_ijmap() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_material_icons_materialicons_regular_ijmap,\n\t\t\"vendor/material-icons/MaterialIcons-Regular.ijmap\",\n\t)\n}\n\nvar _vendor_material_icons_materialicons_regular_svg = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xec\\xbd\\x79\\xaf\\x23\\xc9\\x96\\x1f\\xf6\\x3f\\x3f\\x45\\xb8\\x04\\x08\\x36\\xec\\xc8\\x8e\\x7d\\x99\\xf7\\xfa\\x09\\xd6\\x3c\\xbd\\x81\\x00\\x97\\x2d\\x8c\\x46\\x32\\xfc\\x17\\xc1\\xca\\xcb\\x2a\\x52\\x9d\\x45\\xd6\\x30\\x79\\x59\\xdd\\xf7\\xd3\\x1b\\xe7\\x77\\x22\\x37\\x32\\xb9\\xdc\\xba\\xdd\\xf5\\xba\\x85\\x41\\xf7\\xad\\x64\\x46\\x6e\\x11\\x27\\xb6\\xb3\\xfe\\xce\\x9f\\xff\\xc3\\xcf\\x9f\\x1b\\x71\\x5a\\x1f\\xda\\xed\\x7e\\xf7\\xe3\\x3b\\x5d\\xa9\\x77\\xa2\\x3d\\xae\\x76\\x4f\\xab\\x66\\xbf\\x5b\\xff\\xf8\\x6e\\xb7\\x7f\\xf7\\x1f\\xfe\\xb2\\xf8\\xf3\\xff\\xf2\\xd7\\xff\\xe7\\x1f\\xff\\xe5\\xff\\xfb\\x2f\\xff\\x49\\xb4\\xa7\\x4f\\xe2\\xbf\\xfc\\xb7\\xff\\xf8\\x7f\\xfd\\xe7\\x7f\\x14\\xef\\xe4\\x0f\\x3f\\xfc\\xbf\\xf6\\x1f\\x7f\\xf8\\xe1\\xaf\\xff\\xf2\\x57\\xf1\\x5f\\xff\\xfb\\x3f\\x09\\x5d\\xe9\\x1f\\x7e\\xf8\\x4f\\xff\\xf7\\x3b\\xf1\\x6e\\x73\\x3c\\x7e\\xf9\\x87\\x1f\\x7e\\xf8\\xfa\\xf5\\x6b\\xf5\\xd5\\x56\\xfb\\xc3\\xa7\\x1f\\xfe\\xe9\\xb0\\xfa\\xb2\\xd9\\xd6\\xed\\x0f\\xff\\xf5\\xbf\\xff\\xd3\\x0f\\x74\\xe3\\x5f\\xff\\xe5\\xaf\\x3f\\xb4\\xa7\\x4f\\x5a\\x57\\x4f\\xc7\\xa7\\x77\\x82\\xbe\\x21\\xe5\\xc2\\x28\\x1d\\xa4\\x91\\xe9\\x1f\\xc4\\x3f\\x1e\\xd6\\xab\\xe3\\xfa\\x49\\x7c\\xdd\\x1e\\x37\\xe2\\x6f\\xfb\\xdd\\xf1\\x6f\\xfb\\xc3\\xa7\\xb5\\xf8\\x5f\\xcb\\xab\\x3f\\xee\\x77\\xc7\\x8f\\x54\\x42\\x6f\\xff\\xdf\\x16\\x52\\xfe\\x65\\xf1\\x67\\xaa\\xdb\\xcf\\x9f\\x9b\\x5d\\xfb\\xe3\\x4c\\x05\\x8c\\x52\\x8a\\x3e\\xf8\\x8e\\x6f\\xf9\\x87\\x9f\\x9b\\xed\\xee\\xa7\\xb9\\x1b\\x75\\xce\\xf9\\x07\\x5c\\x7d\\x37\\xa6\\x8b\\x7e\\xf7\\x97\\xc5\\x9f\\x3f\\xaf\\x8f\\xab\\xa7\\xd5\\x71\\xf5\\x97\\x45\\x57\\xbd\\x0f\\xbf\\x8c\\x2a\\x67\\x94\\xf6\\x5a\\xeb\\x24\\x56\\x47\\xf1\\x7e\\xbf\\x13\\x7f\\x5b\\x7f\\x10\\x22\\x09\\xad\\xff\\xc1\\xa7\\x7f\\x50\\x86\\xae\\x87\\x85\\xf8\\x8f\\xbf\\x88\\x76\\xf3\\xcb\\xee\\xe9\\xf3\\x6a\\xb7\\xf8\\xc7\\xfd\\x97\\x5f\\x0e\\xdb\\x4f\\x9b\\x23\\x9e\\x15\\xff\\xb4\\xdf\\x7f\\x6a\\xd6\\xff\\x87\\xf8\\xcf\\xbb\\xba\\x12\\xff\\x67\\xd3\\x88\\x7f\\xa6\\x6b\\xad\\xf8\\xe7\\x75\\xbb\\x3e\\x9c\\xd6\\x4f\\xd5\\xe2\\xcf\\x3f\\x0c\\x75\\xf8\\xf3\\xd3\\xfa\\x63\\xfb\\x97\\xc5\\x9f\\x89\\x16\\x62\\xfb\\xf4\\xe3\\xbb\\xf7\\xab\\xe3\\xfa\\xb0\\x5d\\x35\\xff\\xb9\\xde\\xef\\x5a\\xf9\\xcf\\xeb\\x4f\\xcf\\xcd\\xea\\xf0\\x4e\\x6c\\xf6\\x87\\xed\\x8b\\x5c\\x3d\\x9d\\xe4\\xcf\\x3f\\xbe\\xf3\\xda\\x10\\xb5\\x85\\xc0\\x63\\xf2\\xe3\\xaa\\x5e\\x8b\\x85\\x10\\x42\\x94\\xd3\\xcf\\xdb\\xe6\\x97\\xe1\\x4d\\x02\\xaf\\x7a\\x37\\xdc\\xf0\\x75\\x4d\\x35\\xfa\\xf1\\x9d\\x53\\x6a\\x54\\xda\\x1e\\x0f\\xeb\\x63\\xbd\\xa1\\xe1\\x72\\xf8\\xbc\\x6a\\xf8\\xca\\xf3\\x6e\\x7b\\x6c\\xe5\\x97\\xf5\\x41\\xae\\x3f\\xf3\\x77\\x51\\xfc\\x65\\xb5\\xdb\\xb7\\x6b\\xa9\\x7f\\x7c\\x67\\x84\\x12\\x5e\\x58\\xa1\\x86\\xff\\xf8\\x96\\x55\\x5b\\xaf\\x77\\xc7\\xd1\\x33\\x4f\\xeb\\x52\\x52\\x6e\\xf8\\xf0\\x61\\xff\\xf3\\x8f\\xef\\xe8\\x09\\xaf\\x8d\\xe8\\x6f\\x7b\\xde\\x3d\\xad\\x0f\\xcd\\x76\\xb7\\x96\\xc7\\xcd\\xb6\\xfe\\x69\\xb7\\x6e\\xdb\\x1f\\xdf\\x79\\x75\\x7e\\xf1\\xcb\\xbe\\xdd\\x1e\\xd1\\xad\\x52\\xab\\xfe\\xea\\xb6\\xde\\x3f\\xad\\xe5\\x61\\xb5\\xfb\\xb4\\xfe\\xf1\\xdd\\x7f\\xfb\\xdf\\x95\\xb2\\x4a\\x6a\\xf5\\xb7\\xbf\\xfd\\xed\\xaf\\x74\\xc7\\x0f\\x7f\\xc1\\x6d\\x7f\\xfe\\xbc\\x6d\\xdb\\xed\\xee\\x93\\xfc\\xd4\\xfc\\xf2\\x65\\xd3\\x97\\xf2\\x19\\xfe\\x95\\xbb\\xd5\\xe7\\xf5\\x8f\\xef\\xec\\xd3\\xf2\\xb0\\x3f\\xae\\xe8\\x33\\xef\\xba\\x97\\xff\\xf8\\xee\\xdf\\xff\\xbb\\x9f\\xad\\xfd\\xd3\\xf8\\xd2\\x82\\xba\\xcd\\xf8\\x40\\x8d\\xa8\\xb5\\x75\\x42\\x09\\xe3\\x9c\\x90\\x5a\\x59\\x61\\xbc\\x17\\xd2\\x58\\xb7\\x91\\xd6\\xd4\\x32\\x8a\\xa4\\x84\\xf4\\x51\\x68\\x17\\x85\\xd4\\x26\\x0a\\x9d\\x54\\x23\\x4d\\x16\\xd2\\xa4\\x46\\x26\\x2d\\x92\\x7e\\x79\\x6f\\xbd\\x15\\x26\\xa8\\x5a\\x09\\xeb\\xaa\\x6c\\x7d\\x10\\x52\\xdb\\x2a\\x84\\xac\\x85\\x8f\\x42\\xba\\x28\\x7c\\xdc\\x48\\xa3\\x4e\\x52\\x1b\\xbb\\xd1\\xb9\\x36\\xbe\\x0a\\x0e\\xdf\\x75\\xaa\\x32\\x51\\x67\\xa1\\x6d\\x95\\xbd\\x4e\\xc2\\x05\\x61\\x5d\\x6d\\x44\\x14\\x46\\x68\\x2f\\x8c\\x30\\xee\\x94\\x5e\\xde\\x5b\\x45\\xe5\\xba\\xb6\\xa9\\xd2\\x49\\x67\\xa1\\x44\\x50\\x55\\xb6\\x86\\x2a\\x95\\x2b\\x6b\\x75\\x12\\xd1\\xd0\\x97\\x6a\\x34\\x43\\x50\\x1b\\x0c\\xfd\\x6b\\xdd\\x49\\xa6\\x45\\xad\\x84\\x34\\xa1\\x72\\x8a\\xaa\\x13\\x2b\\x1f\\xb5\\x72\\x42\\x3a\\x4f\\xbf\\x84\\x34\\x5a\\x48\\x9f\\x6b\\xaa\\xb3\\xd3\\xc6\\x88\\xe1\\x87\\x55\\x95\\xf7\\x3a\\xe3\\x65\\x44\\x05\\x69\\xcc\\x46\\xba\\x7c\\xd2\\x51\\x6d\\xbc\\x7a\\x79\\x6f\\x54\\x14\\xc6\\xa7\\x5a\\xfb\\xca\\x2a\\x6b\\x85\\x0c\\x95\\x36\\xda\\x6a\\x61\\x92\\x90\\x3a\\x55\\xc6\\x05\\x8f\\xdf\\x36\\x53\\x15\\x92\\x90\\xf4\\x76\\x27\\x24\\xd5\\x4f\\xb5\\x92\\x08\\x45\\x25\\x5a\\x48\\x1d\\x6a\\x99\\x2b\\x1b\\x93\\xf6\\xa8\\xa2\\x32\\xde\\x50\\x47\\x54\\xde\\xc5\\xcc\\xb7\\x39\\x45\\xc7\\x5a\\x5a\\x5d\\xa9\\xec\\x89\\x08\\xd2\\x3b\\xa1\\x7d\\x15\\x9d\\xd3\\xf8\\xed\\xe2\\xc6\\x44\\xb4\\x56\\xfb\\xca\\x11\\x3d\\xb5\\xae\\x82\\xa2\\xda\\x1b\\x2f\\x88\\x5a\\xc6\\xd7\\x3a\\x56\\x29\\x64\\x7a\\xdc\\x24\\x91\\x2a\\x6f\\xb3\\xcd\\xf4\\xd3\\xc4\\x5a\\x09\\x9d\\xaa\\x44\\x3d\\x23\\xb5\\xa9\\x6c\\xf6\\x1a\\x0f\\x51\\x83\\xe2\\x46\\xea\\x70\\x32\\x66\\xa3\\x03\\xbd\\xc1\\x2a\\x8b\\x37\\x64\\x91\\x2a\\x65\\x55\\x08\\xf4\\xd3\\x78\\x7a\\x43\\xa8\\xbc\\x71\\x41\\x48\\x7a\\x93\\xd2\\x44\\x20\\x22\\x3e\\x5d\\x94\\xda\\x55\\x8e\\xea\\xaa\\x50\\x1f\\x99\\x2a\\x9f\\x88\\x5a\\x38\\x31\\x76\\x23\\x4d\\xa2\\x17\\xb8\\x2a\\x65\\x1b\\x44\\x24\\xda\\x07\\x2b\\x8c\\xc3\\x0f\\x1a\\x0e\\xd6\\xd4\\xb9\\xca\\x26\\xaa\\x2c\\x62\\x95\\x9d\\x0e\\x51\\x18\\x55\\xa5\\x9c\\xa2\\xd0\\x56\\xd8\\x24\\xb4\\x5d\\xf0\\xe0\\x8a\\x9e\\x07\\x97\\x4d\\x3e\\x0b\\x99\\xab\\x18\\x69\\x70\\x51\\x4f\\xc6\\x9a\\xfa\\x49\\xa0\\x89\\xf4\\xaf\\x51\\xa0\\x17\\x0d\\xac\\x98\\xb8\\xdd\\x34\\x9e\\xa5\\xc9\\x55\\x08\\x31\\x72\\xe5\\x6c\\x78\\x79\\xaf\\x83\\x12\\xde\\x35\\xd4\\xce\\xd4\\x24\\x2d\\x64\\xd2\\x0d\\x3a\\x53\\xd3\\xd0\\x71\\x68\\x94\\x73\\x02\\x43\\x8b\\x66\\x91\\xb1\\x7e\\x63\\x4d\\x9d\\x84\\x4c\\x0a\\xf3\\x40\\xbb\\x24\\x34\\x86\\x6c\\xd2\\x2f\\xef\\x6e\\xcc\\xe3\\x55\\xbd\\xa4\\x75\\x6c\\x34\\x87\\xfb\\x12\\x4c\\x5d\\x17\\xb2\\x30\\x31\\x9e\\xa4\\x33\\x1b\\x99\\x72\\x13\\xb2\\x90\\x21\\x37\\xd2\\x2a\\xea\\xab\\x46\\xe6\\x2c\\xb4\\x52\\x1b\\xe9\\xec\\x49\\x3a\\xdb\\x68\\xa5\\x84\\xcc\\x74\\x5d\\xd3\\x90\\x6e\\x64\\xc8\\x22\\xe4\\x93\\x4c\\x79\\x23\\x9d\\x39\\xa5\\x8c\\x12\\x7e\\x83\\x16\\x56\\xe1\\x81\\x9c\\x4f\\xce\\xd2\\x2b\\xf0\\x3a\\x5a\\xb3\\xf0\\x7e\\xab\\x1b\\x3c\\x4d\\xdf\\x3d\\x39\\xb3\\x29\\x0f\\x87\\xdc\\xf0\\xc5\\x72\\xef\\xc6\\xd9\\x13\\x3d\\xca\\x6f\\x6a\\xf8\\xb5\\xfc\\x91\\x53\\xca\\x1b\\x67\\x4e\\xa5\\xde\\x01\\x17\\x51\\xab\\x52\\x4d\\xaa\\xf2\\xc6\\xd9\\x86\\x1b\\xd1\\x74\\x6d\\xe2\\x87\\x17\\x9b\\x94\\xef\\x90\\xae\\x5e\\xb7\\xed\\x72\\xd5\\xac\\x0e\\x9f\\x27\\xf4\\x1b\\x17\\xf7\\xeb\\x5f\\xf2\\x75\\xa2\\xad\\x40\\xbb\\x2c\\x42\\xc4\\x41\\x7b\\x9a\\x97\\x01\\xbf\\x25\\x0a\\x5c\\x6e\\xf1\\x83\\x4a\\x65\\x57\\xdc\\xe2\\xc4\\xab\\x72\\x1f\\x16\\x03\\x1f\\x84\\x33\\xb1\\xd6\\x2a\\xd0\\x2b\\xb3\\x11\\x32\\x05\\x3e\\xea\\x6c\\x5a\\x3a\\x91\\xdd\\x59\\x29\\xa2\\x5f\\x5d\\x31\\x15\\x94\\xfb\\xcb\\xdf\\xcb\\x7b\\x13\\x22\\x2d\\x7b\\x27\\xa9\\xb5\\x69\\x92\\x17\\xd2\\x13\\x9d\\x02\\xcd\\x27\\xa2\\x97\\x16\\x41\\x9d\\xb4\\x49\\x1b\\x6b\\x68\\x78\\x26\\xe1\\x9c\\x6a\\x64\\xa6\\x11\\x67\\x1a\\x69\\xa2\\xb0\\xa6\\xc9\\x49\\x24\\xf3\\x82\\x21\\x63\\xb3\\x5a\\xa0\\x58\\x5a\\x8b\\xdb\\x92\\x6d\\x70\\xd3\\xc3\\x14\\x6d\\xaf\\x90\\xb4\\xfd\\xed\\x69\\x1a\\x7b\\x9a\\xfa\\x31\\x4d\\xfd\\x3c\\x4d\\xfd\\x88\\xa6\\xfe\\x2a\\x4d\\x2d\\xd3\\x94\\xa6\\x71\\xec\\x68\\xaa\\x44\\x30\\x23\\x9a\\x66\\xe1\\x6c\\xe6\\x29\\x40\\xd3\\x7d\\xa0\\xa9\\xbe\\xa0\\xa9\\xc1\\x6d\\xc9\\x35\\x26\\x3d\\x48\\xd3\\xe3\\xf6\\xf3\\xfa\\x92\\xa2\\x5c\\xca\\xf4\\xa4\\xba\\x06\\xcb\\xfd\\x9f\\x03\\xed\\x41\\xa5\\xff\\xe9\\xa8\\x8d\\x08\\xa9\\xaf\\x6b\\xa1\\x7d\\xa6\\x85\\x48\\x47\\x2d\\x62\\xc4\\x41\\x47\\xdd\\xca\\xf2\\x5b\\xf6\\x05\\x38\\xa3\\xc5\\xad\\x2b\\x6e\\xbb\\x93\\xae\\xa0\\xd0\\x3e\\xe4\\x9a\\x78\\x4b\\x25\\x8c\\xb6\\x42\\x66\\xcf\\x47\\xa3\\x6d\\x4b\\x27\\xb2\\x3b\\x2b\\x45\\xf4\\xab\\x2b\\xa6\\x82\\x72\\x7f\\xf9\\x7b\\x80\\x24\\xdb\\x0f\\xdb\\x66\\x7b\\xfc\\xe5\\x82\\x28\\x7d\\x39\\xaf\\x7f\\x8e\\x28\\xac\\x36\\x52\\x9b\\x74\\x92\\x26\\x46\\x2c\\x75\\x44\\x08\\x5a\\xcf\\x24\\xff\\xb0\\x27\\x5c\\xa0\\x5b\\x9c\\xdd\\xd8\\xe4\\x68\\x61\\x19\\x5a\\x65\\x68\\x8c\\x3a\\x4b\\xe3\\x04\\x07\\x67\\x5a\\x69\\x94\\x90\\xf8\\x8d\\xbf\\x96\\x8e\\xa5\\xc8\\xd9\\xd6\\x28\\xe1\\x0c\\xdd\\xea\\x1e\\xe9\\xdb\\xed\\x87\\xe6\\xb2\\x6b\\xb9\\x90\\x7b\\x36\\x3a\\x41\\xf5\\x74\\xae\\x26\\x7e\\x45\\xd2\\x88\\xa7\\x5d\\x07\\x23\\x57\\xd1\\xde\\xe8\\x6b\\xc9\\x7b\\x3c\\xad\\x27\\xe0\\xbe\\x54\\x10\\x5a\\x85\\x5a\\x09\\x6f\\x84\\x0d\\x44\\x68\\x1a\\xdb\\xca\\x9f\\x24\\xbd\\x85\\xb6\\xa9\\xcc\\x75\\xb7\\xa5\\x0d\\x41\\xd3\\xd6\\x66\\x3d\\xed\\xcd\\x32\\x38\\x11\\x1c\\x1d\\x6a\\x43\\xfd\\xe9\\x8d\\xd0\\x49\\x04\\x2d\\x40\\x14\\xda\\x3d\\x35\\x6d\\xbe\\x26\\x57\\x39\\x65\\x2d\\xac\\xad\\xac\\x8f\\x49\\xf8\\x50\\x79\\x95\\x13\\x3d\\x6a\\xf3\\x86\\x66\\x4d\\x4d\\xfd\\x2b\\xa8\\xba\\x02\\x43\\xa2\\x01\\x7f\\xa3\\x6b\\xe2\\xa2\\x8c\\x15\\xd4\\x08\\x9b\\xb1\\xaa\\x59\\x5a\\xcb\\xcd\\xa2\\x96\\x96\\x26\\xaf\\x8c\\x89\\xbe\\xc8\\xcd\\xd1\\x27\\x19\\xed\\x86\\xea\\x82\\x6e\\x20\\xfe\\x84\\x0f\\x0e\\x83\\x3d\\xa2\\x23\\xb5\\x0a\\x1b\\xa9\\x55\\xac\\x25\\xee\\x9a\\x74\\xc7\\x49\\x9b\\xc0\\xf5\\x76\\xe0\\x5b\\x8c\\x13\\xd4\\x91\\xa5\\x83\\x5a\\x74\\x6c\\xea\\x3b\\x56\\xe7\\x8b\\x8e\\x2d\\x45\\xee\\xee\\xa8\\xdc\\x3f\\xef\\x8e\\xcb\\x0f\\xab\\x66\\xb5\\xab\\xcf\\x7a\\x74\\x7a\\x85\\xbb\\xd5\\x79\\xe1\\xb2\\x6e\\x8c\\xa2\\x0a\\xa8\\x88\\xcd\\x4c\\x3a\\xe5\\x4f\\x44\\x66\\xeb\\xb4\\x30\\x39\\x6f\\x82\\x3b\\xd1\\xf2\\xb6\\x91\\xc1\\x9d\\xb0\\xcc\\x71\\x93\\x82\\xdb\\xd0\\x9d\\x32\\x38\\x3c\\xc2\\xcd\\x9b\\xbd\\x3f\\xf9\\xd9\\xf2\\x57\\xb4\\x64\\xf9\\x75\\xd5\\x34\\xeb\\xe3\\xf5\\x06\\xf5\\x37\\xa0\\x5d\\xa8\\xb9\\x71\\x35\\x96\\x02\\x6b\\x84\\x76\\xf4\\xaf\\x25\\xd2\\xe2\\x97\\x2c\\x67\\xb6\\xf0\\xb7\\x5c\\xd4\\x96\\x9f\\x7c\\xc6\\x73\\x4f\\x47\\x0d\\xf6\\xd9\\x68\\xea\\xe9\\xa8\\x36\\xb4\\x58\\xbc\\x60\\x4a\\xf3\\x6c\\xc6\\x98\\x35\\x56\\x9c\\xcd\\xc6\\x8d\\x34\\x39\\xd5\\xd2\\xb8\\x8b\\x91\\x40\\xe5\\x4a\\x18\\x74\\x29\\x4a\\x84\\xb3\\x1b\\x2a\\xec\\xa7\\xb8\\xe1\\x03\\x8d\\x2d\\xa3\\x37\\xb4\\x33\\x8c\\x5e\\x34\\xfa\\x0e\\x2a\\xb4\\x28\\xdf\\xef\\x07\\x08\\xbe\\x4e\\x5b\\xc7\\x43\\xe4\\xdd\\xff\\x3c\\x47\\x53\\x2a\\x05\\x21\\xb5\\x49\\xb4\\xbd\\xa1\\x22\\xc6\\x87\\x13\\x9a\\xeb\\x78\\xe2\\x63\\xfb\\x33\\x49\\x84\\xd0\\xe2\\x08\\x2a\\xe0\\x47\\x08\\x2f\\xef\\xad\\x21\\xca\\x43\\xc8\\xa2\\x19\\x98\\xcb\\x6c\\x16\\xc1\\xb5\\x74\\x90\\x65\\x8e\\xcb\\xe0\\xda\\xc9\\x74\\x6f\\x83\\x13\\x7c\\x77\\x70\\x2f\\xef\\x83\\x13\\x4e\\xf9\\x57\\xd0\\x0b\\xc4\\x7d\\x6d\\x7f\\x3c\\x44\\xaa\\x7a\\x7b\\xa8\\xcf\\x17\\xc9\\xc9\\x85\\x9e\\xa5\\xd0\\xca\\xd4\\x1e\\x3c\\x85\\x82\\xd0\\x02\\x22\\x91\\xc0\\x86\\x25\\x23\\x85\\x11\\xe5\\x6a\\xaa\\x84\\x62\\x51\\x95\\x2a\\xd7\\xd1\\x8f\\x16\\x3d\\xe9\\xb4\\x88\\x9e\\xd8\\x48\\xc1\\xa5\\xb9\\x6c\\x07\\xca\\xd7\\xb4\\x4a\\x2a\\xf1\\x30\\x21\\xdb\\x49\\x07\\xfc\\x16\\x7b\\xe5\\xe2\\x26\\x09\\x9f\\x3e\\x8c\\xe9\\x46\\x67\\x3c\\x4d\\xcb\\x18\\xd1\\x06\\xb5\\x10\\x99\\xfe\\x31\\xba\\x95\\x59\\x40\\x06\\xa4\\x49\\xdc\\x42\\xde\\xa5\\x3d\\x07\\x2b\\xb6\\x69\\x33\\x5f\\x80\\x20\\xfc\\xf2\\x9e\\xf8\\xa4\\x37\\xbe\\xc2\\x3a\\x27\\x9c\\xce\\xb5\\xa5\\x2e\\x88\\xb4\\xc7\\xc8\\xa8\\x71\\xd0\\x46\\x9d\\x20\\x43\\x9b\\x9c\\x4e\\xc6\\xd0\\xd0\\xcf\\xb4\\x74\\x67\\x4b\\x97\\xb5\\x51\\x8d\\xa4\\x05\\xd4\\x37\\x24\\xb9\\xc6\\x86\\x36\\x45\\x97\\x6b\\x43\\x1d\\x4f\\x5d\\xad\\xd1\\xd3\\x3a\\xb4\\x24\\x5e\\x96\\x5e\\x0f\\x74\\x97\\xcb\\x8b\\x06\\x7b\\x4b\\x7c\\x79\\x4f\\xac\\x22\\x2d\\x32\\xc9\\xd3\\xa0\\x3e\\xd1\\x46\\x4a\\xa2\\xb7\\x2d\\xbc\\xa6\\x57\\x1d\\xc3\\x49\\x4c\\x69\\x61\\x52\\x65\\xe1\\x52\\x6f\\x8f\\xdb\\xa7\\xa7\\x09\\xd1\\x9f\\x3a\\x6e\\x44\\xb1\\xac\\xc7\\xdc\\x48\\xc7\\x85\\xe0\\x08\\xe6\\xc3\\x6c\\xe8\\x80\\xcd\\xbe\\x30\\x27\\xb8\\xf1\\x1e\\x1b\\xf1\\xf4\\xb4\\x5c\\x2d\\xbf\\x6c\\xf6\\xc7\\xfd\\xf4\\xab\\x43\\x29\\xcf\\x0f\\x45\\x3d\\x64\\x69\\x59\\x48\\xc2\\x2a\\x41\\x32\\x15\\xcd\\x8e\\x96\\x04\\x26\\xab\\x05\\xcb\\x4d\\x2d\\x64\\xbf\\x80\\x41\\x4f\\xc7\\x96\\x7e\\x93\\x68\\x45\\xf7\\xa6\\x97\\xf7\\x86\\x38\\x44\\x15\\x6b\\x70\\x1c\\x44\\x41\\x87\\x73\\xe2\\x37\\x5a\\x49\\x4b\\xb3\\x02\\x03\\x82\\xc2\\x16\\x5b\\x38\\x95\\xf2\\x0f\\x2a\\x1a\\xf1\\x27\\xf8\\xf1\\x82\\x85\\xce\\xe4\\x4c\\x9b\\x5a\\x70\\xf4\\xaf\\x76\\xb9\\xb1\\x58\\x53\\x37\\xe1\\xca\\x5a\\xe3\\xc3\\x64\\xad\\x31\\x65\\xad\\x31\\x1b\\x69\\x9d\\x5e\\x8c\\xd8\\x80\\x6e\\x6d\\x36\\x27\\xa3\\xe9\\xfd\\xbc\\xae\\x99\\x88\\x2d\\xd4\\x62\\x07\\x0d\\x8e\\xf7\\x5e\\x3a\\x62\\x43\\xc5\\xfe\\x4a\\xa7\\x54\\x01\\x77\\x9f\\xf6\\xe7\\x12\\xe4\\x50\\x56\\x18\\x38\\x12\\x05\\xd4\\xfc\\xb7\\xcc\\xe4\\x5b\\xa8\\xd5\\xc0\\xa1\\xff\\xae\\x25\\xce\\x22\\xd3\\xcc\\x8b\\x89\\x8b\\xdb\\x42\\xe6\\x7d\\x92\\xae\\x0f\\xc7\\x0b\\x92\\xa2\\x6c\\x60\\x32\\x2c\\x88\\x26\\x99\\x6a\\x60\\xe7\\x0b\\x29\\x25\\xd3\\x52\\x82\\x98\\x3c\\xac\\x5e\\xde\\x3b\\x65\\x85\\xf6\\xb6\\x71\\x5e\\x48\\xe7\\x4f\\x50\\x22\\x11\\xab\\x6f\\x50\\xe4\\xfc\\x49\\x1b\\x57\\x63\\x52\\x30\\x7f\\x21\\xb4\\xb6\\x42\\x13\\xfb\\x08\\x55\\x55\\x86\\x52\\xc9\\xf1\\xff\\x2d\\xd4\\x5e\\x38\\x87\\xda\\x50\\xfb\\x3a\\x78\\x94\\xd0\\x43\\x92\\x18\\x76\\x3a\\x6a\\xf0\\x09\\x86\\x16\\x7d\\x4d\\x8b\\xff\\x26\\xb9\\x6e\\xd4\\xf6\\x6c\\xa6\\x29\\x6c\\xa6\\x11\\x65\\x20\\xdf\\x63\\x33\\x9f\\x9e\\xce\\x39\\x87\\xae\\x84\\x29\\x13\\x2c\\x2d\\x31\\x27\\xe8\\x7b\\xc2\\x29\\x05\\xa6\\x0c\\x1d\\x53\\x80\\x1a\\x88\\x0e\\x29\\x10\\x65\\x52\\xd8\\xa4\\xf0\\x82\\x55\\xc9\\xb9\\x5f\\x73\\x53\\x9f\\x65\\x1a\\xee\\x36\\xeb\\x72\\x97\\x1f\\x15\\x7e\\x6b\\xe3\\xbe\\xb3\\x68\\xda\\xd7\\x78\\xb9\\x7f\\x3e\\x36\\xdb\\xdd\\x7c\\x73\\x86\\x8b\\x63\\x5d\\xc8\\xef\\x59\\x1e\\xe7\\x45\\x2c\\x58\\x50\\xb7\\xd0\\x5a\\x16\\x62\\x4b\\xa6\\x36\\x9d\\x72\\x0f\\xa0\\x03\\xee\\xd2\\xa9\\xd9\\xd7\\xe7\\xf6\\x87\\x69\\xf1\\x30\\xd3\\x33\\x14\\x88\\xb3\\x33\\xdd\\x5c\\xce\\xf4\\xae\\xf5\\xc9\\x94\\xd5\\x53\\x96\\xe5\\x93\\xd6\\x46\\x68\\x70\\xa1\\x49\\x67\\x15\\x6f\\x1c\\x7e\\xf1\\x4a\\xaa\\x31\\x93\\x1d\\xd4\\xa6\\xb5\\x12\\xc9\\xf4\\x8b\\x2f\\xff\\xdd\\x6d\\x57\\xbb\\xd9\\x7f\\xf9\\xb2\\xdd\\x7d\\x5a\\xd6\\xab\\x8b\\x35\\xec\\xec\\x1a\\xf3\\xf9\\x9e\\xa6\\x4a\\x84\\xfc\\x2d\\x0c\\x09\\xcb\\x5e\\x48\\xbf\\x31\\xae\\x88\\x84\\xb4\\xd7\\x75\\xfb\\xd9\\x68\\x95\\xa8\\x15\\x5b\\x3e\\x9c\\xf0\\xc2\\xa8\\xc6\\x64\\xe1\\x6d\\x83\\xe1\\x12\\x0c\\xf6\\x30\\x67\\x36\\x51\\xd5\\xda\\x56\\x5e\\x41\\x67\\x95\\x2a\\x6a\\x9a\\x09\\x55\\x82\\x31\\x04\\xe2\\x3a\\x09\\xd8\\x0a\\x1a\\x04\\x1d\\x2b\\x65\\x69\\x34\\x58\\x5f\\x05\\xeb\\x2d\\x89\\xf5\\x49\\xe9\\x40\\x0c\\x59\\xe5\\xad\\x8e\\xc2\\x83\\x91\\x8b\\x1b\\xed\\x55\\x6d\\x62\\x65\\xb3\\x15\\x2e\\x57\\xd9\\x29\\x27\\xbc\\xaf\\x4c\\x08\\x5e\\xe4\\x5c\\x39\\xa5\\x0c\\x11\\x4d\\x7b\\xd5\\x80\\xab\\xd3\\x8d\\x4c\\x4c\\xee\\x45\\x2d\\x89\\xda\\xb6\\xe3\\x05\\x85\\xb4\\xc5\\x4e\\xa2\\x7d\\x6e\\xb0\\x24\\x5a\\xff\\x82\\x49\\xae\\x4d\\x9a\\x91\\xf7\\x8b\\x74\\x6e\\xba\\xbf\\x89\\x74\\x6e\\x5a\\x5e\\xb6\\x58\\x52\\x7f\\x8f\\xde\\x32\\x73\\x8b\\x5a\\x7b\\xc6\\x32\\x60\\xf1\\x2d\\x2f\\x76\\xa6\\x2d\\xab\\x96\\x61\\x6d\\x87\\xf5\\xd8\\xba\\x2f\\xf7\\xe8\\x2b\\xbb\\xf9\\xdd\\xd1\\x71\\xdc\\x33\\x4f\\xd6\\x9e\\x8d\\x8c\\x51\\xf9\\xc0\\x2a\\xc6\\x88\\x1d\\x2e\\x79\\x62\\x51\\xb1\\x1e\\xd3\\x31\\x79\\x7c\\x95\\x0e\\xc9\\x13\\x13\\x93\\xfc\\x26\\xf9\\x97\\xf7\\xce\\xc4\\x91\\xbe\\xca\\xb0\\xbe\\x0a\\x84\\x9a\\x30\\x4c\\xd3\\xad\\x67\\x3a\\xbe\\x26\\xeb\\x38\\x1e\\x31\\x28\\xea\\xb4\\x25\\x24\\x88\\x42\\xa7\\x00\\x25\\x99\\xc9\\x79\\x63\\xa0\\x86\\x07\\x9f\\x9e\\x47\\xc3\\xb4\\xa7\\xe7\\x89\\x6e\\x7a\\x8c\\x2e\\xff\\xfa\\xbc\\x7e\\x3e\\x5f\\x2f\\x87\\xe2\\xc9\\x6a\\x70\\x9f\\x87\\x2a\\xfd\\x53\\xd4\\x05\\x2e\\x53\\x73\\x78\\xc3\\xa7\\x06\\x6f\\x6c\\x2a\\x97\\x26\\x1b\\x5f\\xa7\\xe0\\xb3\\x8d\\x84\\xa9\\x69\\x4a\\xb3\\x7e\\xdc\\x6d\\x06\\x7d\\x8d\\x8e\\x0a\\x5d\\xc4\\xba\\x27\\x77\\xc9\\x74\\x32\\x11\\xdd\\x64\\x33\\xa4\\x8f\\xdf\\xa6\\xc7\\xff\\x78\\x6e\\xa7\\x4b\\x07\\x17\\xf4\\x92\\x5b\\xa9\\x5a\\x11\\xef\\x8b\\x0c\\x0a\\xc9\\x53\\xb2\\xe8\\x59\\xc4\\xfd\\x4e\\x08\\x15\\x2c\\x93\\x0e\\xa2\\xe8\\x1f\\x5f\\x09\\xbc\\x85\\xb1\\x7c\\xd9\\xae\\x57\\xc7\\xe5\\xc7\\x66\\x35\\x21\\xd7\\xe5\\xb5\\xb2\\xd2\\x1a\\x61\\x7c\\x51\\x80\\xd2\\x5f\\x60\\x7b\\xa3\\xcc\\xb4\\x29\\xb4\\xf4\\x13\\x8b\\xbf\\xc8\\xaa\\xc5\\x52\\x29\\xb2\\x12\\xba\\xa5\\x3b\\x82\\x17\\x9a\\xee\\x83\\x02\\xce\\x68\\xbb\\x71\\xa6\\x6c\\x82\\x2c\\xa1\\x8d\\x87\\x02\\x24\\xb9\\x97\\xa9\\xe9\\x8d\\x7e\\x40\\x9e\\xcb\\xa6\\x76\\x51\\x28\\xd8\\x1d\\x6c\\xc6\\x21\\x85\\xd7\\xb5\\x74\\xb9\\xda\\x7d\\x6a\\xd6\\x4f\\xb7\\x1a\\xdc\\xdf\\x52\\xda\\x1d\\x84\\xc9\\xae\\x66\\x9d\\x9b\\x87\\x8c\\x2d\\x59\\x02\\xb0\\xaa\\x95\\x46\\x44\\x4d\\x12\\x5e\\x0a\\x6d\\xd4\\x82\\x99\\x7e\\xab\\x5a\\xc3\\xf7\\x91\\xe8\\x97\\xa0\\x54\\x12\\xc6\\xdb\\x46\\x7b\\xe1\\x54\\x43\\xab\\x93\\xd4\\x2e\\xb0\\x55\\x13\\x5c\\x7e\\x14\\xc4\\x09\\x5b\\xc7\\x84\\xc8\\xc4\\x57\\x46\\xda\\x99\\x62\\x83\\x4f\\xd2\\x3d\\x26\\x38\\x91\\x3d\\xb1\\xdb\\xda\\xe8\\x46\\xd3\\xb6\\x10\\x42\\x4d\\x0c\\x39\\x89\\xeb\\x09\\x54\\xf6\\x30\\x72\\xdf\\x11\\xaf\\xc7\\xcd\\xdd\\xee\\x9e\\xb6\\xa7\\xed\\xd3\\xf3\\xaa\\x59\\xb6\\xcf\\xdb\\xe3\\xfa\\x1a\\x59\\x2e\\xef\\xeb\\xd7\\x59\\x1b\\x6c\\xe9\\x94\\xd0\\x6b\\xa4\\x89\\xb7\\x61\\x01\\x3d\\x2a\\x88\\x8e\\xe0\\xe5\\xbd\\xda\\x40\\x2b\\x89\\xa3\\xe2\\x5d\\xc6\\xd8\\xb1\\x4e\\xe8\\x81\\xb9\\xd7\\x9e\\xcd\\xd9\\xc7\\xdb\\xda\\xac\\x3f\\x1d\\xf6\\xfb\\xcf\\xcb\\xf5\\xcf\\xc7\\xc3\\xea\\x5a\\x43\\xcf\\x6e\\xe2\\x56\\x26\\xe2\\x61\\x5c\\x9d\\x41\\x6a\\xea\\xd5\\xc0\\x23\\xc1\\xb9\\x46\\x46\\xda\\x78\\x43\\x23\\x23\\xc9\\x3b\\x79\\x03\\x2e\\x69\\xa6\\x41\\x27\\x1d\\xf5\\xa6\\x57\\x5c\\x44\\x5f\\x6b\\x12\\x25\\x2d\\x4d\\x0b\\x61\\x93\\x90\\xc6\\x35\\x91\\x37\\xfa\\x86\\xd6\\x3b\\x4d\\xd7\\xa3\\xb0\\x34\\x71\\xb0\\xb6\\x3a\\x56\\x46\\xf7\\x2b\\xd7\\x44\\x63\\xb6\\x19\\xa6\\x91\\x49\\x13\\x73\\x46\\xea\\xd4\\x05\\xf1\\xa4\\xb3\\x61\\xc5\\xc8\\x3d\\x0d\\xeb\\x1c\\x39\\x8a\\xeb\\xcf\\x1d\\xa2\\x75\\x77\\x31\\xd5\\x6c\\x04\\x0f\\xd1\\xa9\\xb2\\x07\\x0d\\x76\\x3b\\x52\\x5d\\xd3\\xdf\\x46\\xe6\\x70\\x7a\\x9c\\x78\\xb4\\x5b\\xcc\\x9a\\x33\\x5c\\x66\\x63\\x22\\x9c\\x45\\x5e\\x43\\xa8\\x58\\x08\\x15\\x07\\x42\\xd9\\x6f\\x24\\xd4\\x61\\xfd\\xf4\\x5c\\x5f\\x5f\\x5e\\x2e\\x6e\\xe3\\x25\\xe6\\x46\\x8d\\x0b\\xbf\\x32\\xb1\\x53\\x5d\\xaf\\xef\\x7b\\x67\\x58\\x8d\\xeb\\x58\\xe4\\xd4\\x34\\x5a\\x61\\x37\\xa2\\x23\\x08\\x1d\\x5c\\x63\\xb4\\x48\\xbe\\xd0\\xe0\\xdb\\xa8\\xdd\\x60\\x33\\x07\\xc5\\x55\\x19\\xca\\xfc\\x35\\x4b\\xbb\\xd3\\x2b\\x96\\xe4\\xc3\\xba\\xc6\\xc9\\xcd\\x49\\x79\\x76\\x53\\x61\\x66\\xa0\\x51\\x69\\x34\\x71\\x18\\x39\\x34\\x65\\x2c\\xc1\\x57\\x8a\\x18\\x1a\\xed\\x42\\x4d\\xcd\\x66\\xb7\\x2a\\xe2\\x97\\x83\\x15\\xde\\xc0\\xa7\\x4a\\x9b\\x50\\x4b\\x47\\x5b\\x94\\xb6\\xc4\\x99\\xdb\\x2c\\x7c\\xd8\\xe8\\x5a\\xfb\\x4a\\xc7\\xec\\x84\\xa9\\x74\\x48\\x2e\\x09\\x93\\x2a\\xab\\x2d\\xc9\\x37\\x95\\xf2\\x5a\\x25\\x41\\x2c\\x77\\x6e\\xc0\\x38\\xc4\\x1a\\x9a\\x6f\\x8d\\x4d\\xcf\\x3a\\xa8\\xcc\\xa5\\xa1\\x0d\\x8b\\xde\\xad\\x04\\x71\\xeb\\x91\\xe6\\x30\\x2d\\xc8\\xc2\\x84\\x86\\xaa\\x90\\xe2\\x46\\x2b\\xc7\\x06\\xaa\\x81\\x0b\\xf2\\xaa\\x96\\x50\\xbb\\xcb\\x9c\\xb0\\x18\\xd0\\x94\\xcd\\xaa\\x61\\x89\\x85\\x18\\xc0\\x86\\x89\\x6f\\x16\\xb5\\x47\\x5f\\x52\\x5b\\x3d\\x0f\\x11\\xef\\x36\\xd0\\x51\\x69\\x9a\\x5e\\xd9\\xd4\\xc4\\x6d\\xd1\\xf4\\x32\\x16\\xc2\\x89\\x56\\xc2\\xe7\\xd6\\x81\\x8b\\xf2\\x19\\x0b\\x0b\\x44\\x39\\x3a\\x97\\x54\\x0b\\x2d\\x64\\x50\\x35\\xfb\\xd7\\x64\\x14\\x81\\x67\\x0b\\x78\\xf6\\xf5\\xfd\\x78\\x7b\\xa1\\x38\\xbf\\x8b\\x17\\x0a\\x13\\x45\\x72\\xc5\\x6b\\x46\\x37\\x32\\x7a\\x11\\x69\\x74\\xaa\\x2b\\xa3\\xd3\\x90\\xf4\\x66\\x02\\xf5\\x29\\xb1\\xa0\\xf4\\x3f\\xf5\\x9d\\xab\\x92\\x0d\\xb4\\x0f\\x41\\xbc\\xca\\x42\\x26\\x3a\\x28\\x03\\x33\\x8e\\x0e\\xec\\xe0\\x62\\x6b\\x28\\x63\\x3c\\x7a\\x8d\\x78\\x4d\\xa5\\x78\\xf1\\x70\\xb1\\x96\\xec\\x30\\x95\\x12\\x46\\x0b\\x31\\x62\\x24\\x44\\xc6\\xbc\\x89\\x8e\\xd5\\xac\\x3a\\xce\\xda\\x79\\x5f\\xbd\\xa8\\xbc\\xd7\\xc1\\x08\\x9b\\xe3\\xa2\\x96\\x9a\\x78\\x45\\x62\\x01\\x05\\xcc\\x29\\x41\\xb5\\x54\\xa9\\x28\\x82\\x12\\xaa\\xa5\\x2b\\x6c\\x65\\x09\\x0a\\xd2\\x1a\\xdc\\x27\\xe8\\xd2\\xbd\\x7e\\xf9\\xd2\\xac\\x76\\xeb\\xcf\\xfb\\xa7\\xf5\\x72\\x55\\x1f\\xb7\\xa7\\xb3\\x6d\\xfd\\xf2\\x2a\\x2b\\x52\\x34\\x34\\xad\\x85\\xe9\\x8f\\xf0\\xd6\\xd0\\xc2\\xb3\\xa1\\xb8\\x81\\xbd\\xdb\\x9c\\x30\\xc5\\x88\\x35\\xa1\\x8e\\xa2\\x61\\xa6\\x4f\\x16\\xc3\\xd3\\x9a\\x13\\xdd\\x46\\xfc\\x8b\\x90\\x9e\\x04\\xe8\\x86\\x7e\\xa2\\xed\\x9a\\x3d\\xde\\x7a\\x6b\\xa6\\xb0\\xa6\\x9d\\xec\\x08\\xfc\\x09\\xe6\\x86\\x31\\x2d\\xee\\xae\\xbc\\x43\\x1b\\xb6\\xbb\\xdb\\x6d\\x1c\\xae\\xa3\\x95\\x30\\xcc\\xa9\\xc6\\x44\\x61\\x62\\x63\\x69\\x27\\xb7\\xb4\\x7d\\x63\\x32\\x53\\xf5\\x0d\\xc9\\xcf\\x86\\xfa\\xfd\\x9b\\x9a\\x4c\\x63\\x59\\xbd\\x74\\x5a\\xeb\\x49\\x93\\x1a\\x19\\x12\\x5e\\xa2\\x43\\x14\\x3a\\xc4\\x53\\x4c\\x8f\\x90\\xe5\\x01\\x4a\\xfc\\x72\\xd1\\xf6\\xb1\\x07\\xc7\\x55\\xed\\xe4\\x75\\x33\\x40\\x82\\x96\\x30\\xf9\\x33\\xb9\\x0f\\x7b\\x91\\xe1\\xbd\\x68\\xce\\x46\\x30\\x96\\x79\\xc7\\xe2\\x1a\\x66\\x8f\\xb3\\x8d\\x66\\x9b\\x22\\x8e\\xcc\\x1f\\x92\\x44\\x7c\\xaf\\x7d\\xfb\\xc3\\x71\\xd9\\x6e\\x9e\\x8f\\xc7\\xe6\\xbc\\x8f\\x27\\x57\\x06\\xf1\\x2e\\xd2\\x2a\\x1b\\x1b\\xe2\\xd0\\x53\\xd8\\x50\\x7f\\x31\\x0f\\x4e\\x2c\\x9a\\xcd\\x6f\\xb5\\xad\\xc7\\x08\\xc1\\x04\\x3a\\x3b\\xcf\\x1a\\x3d\\x5f\\xd6\\x87\\x37\\xbf\\x9c\\x16\\xba\\x18\\x89\\xce\\xc3\\xeb\\x59\\xa7\\xe3\\x94\\xef\\xc9\\x76\\x92\\xf0\\xd8\\xf0\\x6e\\xf1\\x88\\x18\\xbb\\x91\\x3c\\xff\\x1e\\xb8\\xd1\\x59\\x5a\\xa7\\x58\\xe4\\x9e\\xe8\\x2d\\xf2\\x1d\\xc5\\xdd\\xb9\\x0d\\xe7\\xdf\\xdc\\xff\\x5e\\xef\\xfe\\x47\\x34\\x5b\\x9e\\xd9\\x3e\\x87\\xb2\\x7f\\xb3\\x85\\x7d\\x83\\x2d\\x0c\\xe4\\xdb\\x7f\\xfc\\x78\\x41\\x52\\x94\\x31\\xeb\\x1d\\xb5\\x70\\xb4\\x36\\xc3\\xac\\xed\\x7b\\xcf\\x5c\\x22\\xd1\\xcb\\x7b\\xeb\\x8b\\xb5\\xdc\\x10\\x0f\\xa7\\x55\\xcd\\xca\\xd7\\x00\\x8e\\x8f\\x76\\x7a\\x1c\\x73\\x67\\xf9\\x3e\\xa7\\x56\\x6d\\x89\\x46\\x01\\x0c\\x59\\xf6\\xc2\\xfa\\x97\\xf7\\xc1\\x08\\x17\\x6c\\xad\\xad\\xae\\x4c\\x84\\xff\\xbe\\xae\\x14\\x31\\xa8\\xc1\\x54\\xec\\x05\\x1d\\x74\\x95\\x89\\x1e\\xb4\\x32\\x64\\x3b\\xec\\x4c\\x2e\\x0a\\x62\\x52\\x6c\\xf1\\x9c\\x88\\x09\\x0e\\xff\\x52\\x53\\x6d\\xe8\\x02\\x77\\xc8\\x39\\xb1\\x6b\\x05\\x8b\\x5c\\x12\\x59\\xc3\\xd6\\x6c\\x7c\\xc3\\x4c\\x07\\x0d\\x51\\x08\\x09\\x9d\\xbb\\x31\\xd4\\x6c\\x60\\x8f\\x4d\\xbe\\xd3\\x27\\x18\\x04\\x36\\xb9\\x5a\\x62\\xb9\\xc3\\xca\\x62\\x85\\xf4\\x24\\xcd\\x36\\xd2\\x5a\\x61\\x4d\\x6d\\xbc\\xd0\\x46\\x78\\x2c\\x24\\x89\\xfe\\xbd\\x32\\x62\\xb0\\x32\\x31\\xbb\\x4c\\xf4\\xa4\\xdd\\x04\\xcc\\x20\\x5e\\x12\\x84\\x0e\\x22\\x0b\\xeb\\x44\\x16\\x9e\\x6e\\x2d\\xee\\x05\\xe3\\x61\\xfb\\xc8\\x10\\xd8\\x5d\\x8e\\x80\\x3e\\x3c\\xc3\\x78\\x61\\x94\\x69\\xb4\\xf2\\x42\\xab\\xd0\\x60\\x3b\\xb4\\x8d\\xec\\x16\\xdb\\x86\\x4d\\xf7\\xc4\\xbe\\x9b\\x3f\\xc8\\x7c\\xfa\\xed\\x96\\xa8\\x0f\\xcf\\xd3\\x65\\x1e\\xe7\\xfd\\x32\\x6f\\x62\\xec\\xdd\\x59\\x64\\x2e\\x6e\\x2a\\xad\\xcc\\xc5\\x64\\x51\\x4e\\xe1\\xeb\\xc2\\x6e\\x2c\\x6d\\x71\\x7a\\x11\\xa6\\x68\\x40\\x75\\x50\\xec\\x80\\x94\\x03\\x6d\\x3d\\x39\\x88\\x1c\\xc0\\xf9\\xe6\\x40\\x42\\x1e\\xce\\xe8\\xa7\\x83\\xcc\\x47\\x7f\\x6d\\xf9\\xc9\\x67\\xdf\\x5d\\x8f\\xda\\x34\\xcb\\xed\\xae\\x6e\\x9e\\xdb\\x33\\x06\\x74\\x5a\\xce\\xac\\x49\\x8e\\xc2\\x46\\x5d\\x07\\xe8\\x8c\\x35\\xed\\x32\\x86\\x8f\\x5a\\xfb\\x16\\x93\\xa7\\x3b\\xc3\\x3f\\x9d\\xf4\\x1a\\x14\\x4d\\x24\\x99\\x8c\\xb0\\x0e\\x7d\\x66\\x5c\\x63\\x8d\\x30\\xa9\\x81\\x22\\x96\\xa4\\x56\\x36\\xa7\\x5b\\x8e\\xc5\\x21\\x49\\xd1\\xd4\\x4e\\x09\\x25\\x22\\x38\\x8b\\x48\\xff\\x83\\xf3\\x88\\x46\\x48\\x9c\\x41\\x4a\\x54\\x6c\\x42\\x8a\\x3c\\x71\\x8d\\xae\\xa5\\x55\\x95\\xb6\\x88\\x13\\x09\\x95\\x07\\x6f\\x1c\\x54\\xe5\\x22\\xad\\x30\\xde\\x54\\x29\\xa8\\xc4\\xda\\xde\\xa4\\x1a\\x08\\x88\\xde\\xd6\\x7d\\xd7\\x7a\\xc5\\xfe\\xb0\\x89\\xa4\\x38\\xbb\\xa8\\x25\\xda\\x89\\xd6\\xb0\\x56\\xd2\\x53\\x63\\x5b\\x5a\\x50\\xf9\\x27\\xfd\\xd5\\x68\\x22\\x64\\x4d\\xd8\\xbd\\xa4\\x75\\x0d\\x3b\\x94\\x61\\x05\\x40\\xec\\x13\\xf1\\x22\\xba\\x86\\x7b\\x80\\xc7\\x27\\x10\\x23\\x44\\xb3\\x11\\x72\\xb6\\x42\\x93\\xc0\\x4f\\x71\\xf3\\x5a\\xdb\\xb5\\x92\\x0e\\x35\\x1a\\x6a\\xa3\\x80\\x09\\xce\\xe8\\xba\\x6b\\x63\\xd7\\xc4\\xae\\x85\\x5d\\x03\\xb3\\x12\\x49\\x35\\x41\\x09\\x6f\\x6b\\x1e\\x9c\\x5e\\x11\\x6d\\x93\\x16\\xf6\\xfe\\x60\\xd8\\x3f\\x1f\\xcf\\x86\\x01\\x4a\\x8a\\xc6\\x82\\x44\\x3b\\x55\\xc3\\x61\\x42\\x40\\x8f\\x4b\\xd5\\xd7\\xc1\\xb7\\x92\\x7e\\xb2\\x2a\\xd7\\x0b\\x92\\xf5\\x3c\\x7c\\xb8\\x40\\xc0\\xe0\\x5b\\x0d\\xfe\\xdc\\xc3\\xba\\xaa\\x88\\x1f\\x0c\\xc2\\xfa\\x54\\xfb\\x24\\xa4\\x4f\\xc2\\x63\\xe7\\x02\\x3b\\x6e\\xb4\\x6e\\xf1\\x9b\\xca\\xe9\\x8c\\x5e\\xe6\\x93\\xe0\\xcb\\x74\\x95\\x7e\\x79\\x12\\x43\\x34\\xbd\\x29\\x53\\xd3\\x52\\x67\\x02\\xd3\\xd1\\x8b\\x64\\x8a\\xc5\\xec\\xe5\\xbd\\xb3\\x1a\\x62\\x4a\\x31\\x9b\\xbd\\x40\\xe5\\xe2\\x4c\\x67\\x3b\\xbb\\x4d\\x8b\\xdd\\xd3\\x61\\xbf\\x9d\\xf0\\x32\\x5d\\x49\\xcf\\xa7\\x3b\\xe5\\x4f\\xf0\\x51\\xd3\\xf0\\x55\\xc3\\x1a\\xa0\\xed\\x5c\\x31\\xf5\\x97\\x0b\\xa1\\xb6\\xa6\\x77\\x7d\\x0e\\x1a\\x07\\xad\\x8a\\x0d\\x0e\\xdc\\x2a\\x6d\\x35\\xec\\x71\\xad\\x68\\xe3\\x4c\\x82\\xe4\\x71\\x27\\x9c\\x90\\x4e\\x50\\x83\\x85\\xf6\\xad\\xd6\\xc2\\xd1\\x48\\x52\\x0d\\x33\\xdd\\xb5\\x8e\\xb4\\xc3\\x44\\xd8\\x82\\xe9\\xdf\\xd6\\xc2\\xe7\\x1a\\xc1\\x75\\x98\\x69\\xd6\\xd4\\xf4\\x8e\\xfe\\xc1\\xd6\\x41\\xd3\\x85\\xe0\\xaf\\x17\\xa8\\x39\\xad\\xd3\\x33\\x6a\\xce\\x13\\x9b\\x6d\\x11\\xf4\\x24\\xce\\x54\\x9e\\x98\\x8e\\x3d\\xf3\\x7f\\x62\\xd3\\xfa\\x54\\x14\\x7c\\x79\\x1f\\xfd\\xad\\x37\\xbf\\xe1\\xc5\\x45\\x0e\\x3b\\x19\\x6d\\xe1\\x1c\\x2b\\xd9\\xb1\\x0d\\xc1\\x6f\\x93\\xd5\\x7a\\x23\\x21\\x0a\\xfb\\x87\\xbe\\x15\\x3d\\x7b\\x17\\x44\\xff\\x58\\xa3\\xe9\\x7e\\x9a\\xc4\\xd8\\x32\\xc6\\xdb\\xc2\\x9d\\x91\\xb5\\xdb\\x3f\\xef\\xea\\xf5\\xe7\\xf5\\x6e\\x32\\xd5\\x26\\xc5\\x3d\\xb7\\xac\\xb3\\xe1\\xf0\\x2a\\xc3\\xe1\\x4e\\x23\\x01\\x6e\\x12\\xc6\\x00\\x93\\xd3\\x37\\x5a\\x80\\x73\\x6e\\x10\\x4e\\x90\\xfc\\xc9\\xc2\\x47\\xa9\\x78\\xef\\x18\\xfe\\x7f\\x63\\xef\\x69\\x33\\xbe\\x7c\\x99\\xd8\\xb3\\x71\\xda\\x1b\\x6c\\x59\\x16\\xec\\x9c\\x45\\x20\\x0e\\x3a\\x22\\x92\\x3d\\x2f\\x46\\x6c\\x81\\xd3\\x73\\x77\\x3b\\x13\\x47\\x65\\xa7\\xee\\xee\\x99\\x97\\x24\\x7f\\xa5\\xf4\\xb2\\x1a\\xf4\\x86\\xcb\\xd2\\xe4\\x67\\x2a\\x71\\xb3\\xf5\\x87\\x7a\\x73\\xb6\\x79\\x76\\x25\\x45\\x37\\x9e\\x69\\x49\\xd8\\x98\\x4c\\xbb\\x9f\\x12\\x58\\x1a\\x7c\\xd9\\xe9\\xb5\\xcd\\x8d\\x26\\x76\\x56\\xc7\\x8d\\x8c\\xec\\xd1\\x06\\xff\\x1a\\x4b\\xa7\\x34\\x39\\x93\\x70\\x4a\\xd5\\x81\\xb6\\x39\\xad\\xa0\\x40\\xd3\\x45\\x4f\\x6b\\x42\\xb8\\xed\\x9c\\x35\\x63\\xd4\\xc7\\x23\\x5a\\x09\\x70\\xb5\\x24\\x12\\xc4\\xc6\\x64\\x61\\x43\\x1d\\x44\\xa4\\xb5\\x41\\x1b\\x01\\xbe\\x97\\x66\\x55\\xad\\xb1\\xba\\x63\\x31\\x31\\x58\\xcf\\xef\\xd0\\xe1\\xb0\\xff\\xba\\xfc\\xb0\\xaa\\x7f\\x9a\\x90\\x62\\x28\\xec\\x75\\xa5\\x83\\x59\\x34\\xa8\\x46\\x43\\x9d\\x5b\\xb8\\x78\\x0e\\xef\\x63\\xbb\\x72\\xd3\\x1d\\xfb\\xf2\\x72\\xe7\\xc6\\x84\\x3b\\xfa\\x43\\x7c\\xf4\\x69\\xff\\x75\\xf7\\x75\\x75\\x78\\xba\\xa8\\xcd\\x70\\x61\\xa8\\x91\\x0f\\x4d\\x6f\\xdc\\x1e\\x6a\\x50\\x44\\x29\\x7c\\x57\\xe7\\x93\\x09\\x0a\\x06\\x28\\x54\\x9b\\xe8\\xa7\\xef\\xf0\\xee\\xfc\\xb9\\xc3\\xfe\\x0b\\xbe\\x79\\x59\\x91\\xe1\\x0a\\x8f\\x14\\x97\\x11\\xad\\x61\\xb4\\x6b\\x64\\xe7\\x48\\xfb\\x9a\\x2f\\xcc\\xf8\\xd0\\x5d\\xb9\\x61\\x60\\x79\\x39\\xb6\\x8d\\xc6\\x39\\x4c\\x9a\\xdf\\x99\\xfd\\x1c\\xaa\\xf7\\xfc\\x65\\xbe\\xda\\x54\\x3e\\x50\\x47\\xdb\\xa6\\x28\\xa4\\x9b\\x8e\\x40\\xb4\\xd1\\xde\\x31\\xa2\\xe2\\x6d\\x1f\\xf7\\x87\\xd9\\xe1\\xd0\\x97\\xf7\\x34\\x71\\xa6\\x53\\xe5\\x76\\x83\\x81\\x7f\\x91\\x98\\xc9\\xc3\\x81\\x46\\x21\\x0d\\x83\\x93\\x33\\x34\\x1a\\x79\\x6c\\x6a\\xf3\\xc8\\xb0\\x7c\\xfe\\x32\\x5b\\x8b\\xae\\x18\\x95\\x60\\x43\\x69\\x33\\x9e\\x08\\xa5\\x06\\x7a\\x98\\x0a\\x34\\x22\\xa9\\x0e\\xd8\\x03\\xb8\\x12\\x6c\\x30\\xbb\\x37\\x28\\x8f\\xcb\\xe3\\xe1\\x7c\\x96\\xf6\\x65\\x45\\xa4\\x74\\x30\\x4d\\x49\\x97\\x44\\x20\\x4e\\x36\\x0a\\xe9\\x52\\x27\\x86\\x95\\xd3\\x0d\\x89\\xae\\x2c\\x48\\x73\\xc0\\xfe\\x55\\x57\\x51\\x58\\x15\\x2e\\x5d\\xd8\\x4e\\xfc\\xc8\\xe0\\x2a\\x4a\\x85\\x9b\\x79\\xaf\\xad\\x97\\xf7\\x26\\x43\\x26\\xa5\\x15\\x52\\x47\\xd5\\xfb\\x5c\\x14\\x71\\x30\\xd8\\x89\\x17\\x46\\x7f\\x81\\xdd\\xed\\x23\\x3a\\x8a\\x1f\\xbb\\xb3\\x88\\xb5\\x5f\\xd6\\xf5\\x71\\x79\\x58\\x1d\\xb7\\x13\\x6f\\xfa\\x49\\x71\\xaf\\x98\\xd6\\x2a\\x9c\\xac\\x52\\x45\\xc1\\x4c\\xbf\\xe6\\x1d\\x8b\\x1e\\xf3\\xa8\\x85\\x3e\\x62\\x6e\\xd1\\xee\\x3c\\x6a\\x2f\\xb5\\xd2\\x2e\\xf7\\xea\\x34\\x8e\\x83\\x8b\\x1b\\xaa\\x53\\xd1\\xab\\xb1\\x6f\\x2f\\xf8\\x23\\xcc\\x13\\xba\\x34\\xd6\\xad\\xdd\\x26\\x44\\xbb\\x6e\\xdb\\x73\\x1e\\x65\\x54\\xd8\\x7b\\xe4\\x52\\xa7\\xc0\\x0d\\x94\\xbd\\x43\\x5d\\xf1\\x16\\x85\\xd3\\x95\\x2e\\xfe\\x9a\\xf0\\xa0\\x30\\x1c\\x33\\x42\\x17\\x10\\x8b\\xd6\\xb9\\x54\\xd0\\x13\\x6f\\x72\\x42\\x7e\\x90\\x64\\x77\\x9d\\x90\\xdb\\x76\\xfb\\x69\\x77\\xd9\\xe4\\xbe\\xb0\\x6f\\x32\\xd1\\x1c\\x9f\\xd7\\xac\\xc3\\xa4\\x05\\x68\\xe2\\x9d\\xcc\\x17\\x0c\\x5f\\x18\\x8d\\x5c\\x6a\\x2f\\x9e\\x18\\x34\\x27\\x2e\\x8d\\x18\\xc8\\x81\\x79\\x6d\\x19\\x4b\\xa2\\x84\\xcd\\x18\\x8d\\xcd\\x9a\\x43\\x6a\\x3a\\xc5\\x04\\x94\\x0e\\xdf\\x83\\x70\\x29\\x2f\\xea\\x4c\\x2c\\x80\\x85\\x3e\\x3d\\xd0\\xa5\\x16\\xe2\\x7e\\x82\\xe8\\x8b\\x5b\\x1e\\x24\\xed\\x72\\xbb\\x7b\\x9a\\x25\\x2f\\x5f\\x60\\x12\\x27\\x07\\xb3\\x9b\\x55\\x8f\\x85\\xbc\\xd1\\xd4\\xdb\\xf4\\x2c\\x95\\x0d\\xf6\\x57\\x09\\xd2\\xfa\\x7b\\x74\\xcc\\xe2\\xd5\\x3d\\xf3\\xeb\\x75\\x4c\\xb3\\x9a\\x7a\\x4f\\x9d\\x5f\\x19\\xb6\\x47\\xe5\\x7b\\x2d\\xd9\\x6c\\xe3\\xdb\\x1b\\x14\\x2b\\xe2\\x8b\\xb6\\x97\\xe2\\x0b\\x56\\x0d\\x0e\\xc2\\x1e\\x8b\\x3b\\xdf\\x67\\x84\\xdf\\xa1\\xe3\\x7d\\x38\\x89\\x81\\x5c\\x87\\xf5\\xf1\\xf9\\xb0\\x9b\\x27\\x65\\x77\\xad\\x97\\x8e\\x48\\xbe\\x2b\\x5e\\xbd\\x61\\xe0\\xfa\\x42\\xcf\\xdd\\x9c\\xe0\\x41\\xf3\\x47\\x5a\\x2b\\x1e\\x18\\x91\\xb7\\x43\\x16\\xcf\\xa9\\xb5\\xbe\\xb2\\x60\\x0c\\x57\\x87\\xf8\\x4f\\x93\\x3a\\xfe\\x10\\x96\\x24\\x50\\x36\\xb0\\x02\\xe8\\xef\\x3a\\xb1\\xff\\x8e\\xf3\\x9a\\x89\\xb4\\xdc\\x5e\\x19\\x91\\xa3\\xcb\\xc5\\x89\\x02\\x5b\\x7a\\xcf\\x7c\\x16\\xae\\x57\\x6a\\x47\\xdf\\x77\\xaa\\x91\\xde\\x0b\\xef\\x3b\\x71\\xed\\x7f\\x22\\x9a\\x3e\\x34\\xc7\\xdb\\xe3\\xea\\x82\\x3f\\x28\\x65\\x4c\\xbe\\x1c\\x84\\xb1\\xb1\\x49\\x24\\xb7\\x37\\xb2\\x1c\\x9c\\x12\\x29\\xe1\\x20\\xe9\\x98\\x12\\x3c\\x62\\xcb\\x81\\x4b\\x0b\\x11\\x66\\x01\\x27\\xe0\\x6b\\x7f\\x8d\\x08\\xc9\\x37\\x65\\x83\\x6b\\x3a\\x33\\xf8\\xc4\\xbd\\x61\\x4c\\x96\\x3c\\xe3\\xd2\\xff\\x00\\x57\\x84\\x06\\x5e\\x86\\x98\\x9e\\x5f\\xe1\\x45\\x4d\\x45\\x61\\x93\\xdb\\x70\\x04\\xaf\\x66\\x9e\\xa7\\x91\\x49\\xb0\\xb7\\xb4\\x62\\x37\\x47\\x6a\\x94\\x0d\\x0f\\x44\\xcb\\x1f\\x8f\\xab\\x7a\\xb3\\xfc\\xb8\\x9d\\x4a\\xb5\\xe3\\x52\\xfe\\xaa\\x37\\xf8\\xaa\\x25\\x5a\\x39\\xa8\\xfb\\x02\\x1b\\x28\\xe0\\x07\\x25\\x35\\x9c\\x94\\x74\\x6a\\x71\\x0a\\xc5\\x2b\\x30\\xaf\\x52\\x51\\x89\\xb8\\x28\\xd8\\xf3\\x17\\xff\\xb7\\x13\\xf7\\xec\\x93\\x34\\x86\\x23\\xf7\\x32\\x47\\x8a\\x43\\x3d\\x8d\\xbf\\x56\\x7a\\x76\\x44\\xf3\\x4e\\x78\\x7b\\x32\\xca\\x72\\x0d\\x54\\xa7\\x8d\\x2c\\xa1\\xcf\\x1c\\x10\\xdd\\x0e\\x51\\xd2\\x27\\x7e\\x65\\x79\\xa3\\xe7\\x97\\x7a\\x87\\xf7\\xc1\\x37\\x1d\\x45\\xae\\x57\\xf2\\x70\\xfd\\xd8\\x21\\x84\\x0e\\x0b\\xaa\\x22\\xd7\\x30\\x85\\x93\\x71\\x77\\x94\\xd9\\x4c\\xaf\\xcf\\xfb\\xdd\\xfa\\x97\\x4b\\x32\\x96\\xe2\\xb2\\x88\\x1a\\x61\\x62\\xae\\xe1\\xf9\\x55\\xbc\\xcb\\xac\\xe1\\x63\\x46\\xa3\\x9c\\x63\\x33\\x49\\x48\\x42\\x46\\x2f\\x64\\x24\\x71\\x23\\xb0\\xdd\\x3e\\xc0\\x05\\x2d\\xe3\\x82\\xf5\\x30\\xf1\\x26\\xb3\\x71\\xb1\\x66\\x58\\x31\\x28\\x1e\\xbd\\x08\\x34\\x70\\x3d\\xbb\\x5c\\xfb\\x44\\xe3\\xd1\\x27\\x61\\x31\\x63\\x8b\\x0b\\x26\\xf3\\x69\\xde\\xd4\\xb0\\x1d\\x01\\xa8\\x4d\\xa1\\x94\\x8e\\x89\\xee\\x74\\x70\\xd4\\x0c\\x49\\x44\\x27\\x62\\x3c\\xb9\\xc0\\xee\\x04\\x91\\xdd\\xc9\\x35\\xdc\\xc9\\x9d\\x43\\x4c\\x73\\xd2\\x1b\\x36\\x2f\\x03\\xa1\\x4c\\x07\\x98\\x29\\xbc\\x13\\xce\\x2f\\x6a\\x09\\xfb\\x36\\x00\\xdb\\x68\\x80\\x00\\x83\\x0e\\x28\\x5f\\x46\\x09\\x0d\\xcf\\x2a\\xb0\\x85\\xee\\x8e\\x06\\x10\\x74\\x3c\\x17\\x1c\\x46\\x85\\xc5\\x9d\\x58\\xf0\\xc8\\x64\\x37\\x77\\x1e\\x7f\\x91\\x8e\\x1b\\x1a\\x0c\\x97\\x61\\x01\\x2d\\x1c\\x5f\\x59\\x31\\x2b\\xb0\\x85\\xe9\\xa4\\x6b\\x1a\\x85\\x8c\\xe7\\xd6\\x8f\\xbb\\xd6\\x78\\x1a\\x42\\xf8\\x7f\\xa3\\x43\\x27\\x1c\\x87\\x5e\\x35\\xad\\x39\\x1e\\x1f\\x63\\x71\\xa3\\x93\\xed\\x97\\x98\\x4e\\xf0\\x6e\\x87\\x05\\x57\\x60\\x61\\x35\\xae\\xf3\\x26\\x8c\\xec\\x1d\\xca\\x7d\\xed\\x11\\xfa\\x4a\\x34\\xa7\\x33\\xb7\\x31\\xaa\\xc8\\xdd\\x34\\xe2\\x69\\xc6\\x29\\x9e\\x6a\\x3c\\xef\\xa0\\xd6\\xbc\\xb3\\xd9\\x3f\\x3f\\x6d\\xf7\\x17\\xea\\x88\\x51\\xe1\\xc0\\x75\\xb2\\xc6\\x81\\x65\\xdd\\x84\\x08\\x5e\\xa2\\x48\\x2d\\x3d\\x47\\x98\\x03\\x48\\xce\\x43\\x5b\\xc5\\xae\\xc6\\xec\\x8f\\x0a\\x33\\x6c\\xb1\\xbc\\x76\\x06\\x59\\x91\\x43\\x0d\\xfb\\x07\\xa6\\x25\\x4c\\x12\\xe1\\xa4\\xef\\xad\\x83\\xcf\\xc7\\xfd\\x61\\xbd\\x5b\\x7f\\x9d\\x54\\xb4\\x2f\\x2b\\xd1\\x04\\x4a\\x58\\x17\\x6b\\x06\\x89\\xc2\\x78\\xa3\\x01\\x1e\\x85\\xcc\\x70\\xbc\\xcc\\x6e\\x1a\\x46\\x83\\x7f\\x4e\\x58\\xb9\\x31\\x91\\x1b\\xd6\\x53\\xcb\\xe0\\xea\\x08\\x6b\\x8f\\x49\\x30\\xe9\\xb0\\xb5\\xa3\\xe6\\x0a\\x07\\x56\\xed\\x7b\\x11\\xd4\\xc8\\x8f\\x21\\xb2\\x3d\\x87\\x04\\x22\\x8c\\xe6\\x62\\xfc\\xc7\\x58\\x06\\xbe\\xa1\\x03\\x4c\\xa2\\x0c\\xaa\\xf3\\x53\\x85\\xef\\xa6\\x01\\x44\\x14\\x2c\\x70\\x26\\x0a\\xd4\\x32\\xbb\\x51\\x30\\x10\\x00\\x12\\x82\\x6b\\x78\\x44\\xf6\\x66\\x82\\x7b\\x51\\x0b\\x27\\x60\\x53\\x1d\\xc6\\xa4\\xea\\x8b\\x7a\\x74\\x13\\x36\\x49\\x68\\x23\\x06\\x23\\x7a\\x6b\\x60\\xc0\\x29\\xcb\\xe5\\x08\\x38\\xe2\\xc2\\xf2\\xfe\\x02\\x29\\xb1\\x58\\x35\\x2e\\xcc\\x3e\\x2d\\x3d\\xd2\\xf1\\x1e\\x6d\\xc7\\x74\\x08\\x5e\\x82\\x7b\\xd6\\x83\\x03\\xfc\\x68\\x60\\x19\\xfd\\x06\\xf7\\x05\\x9a\\xd2\\x56\\x58\\x85\\x29\\x4d\\xa4\\xf3\\xf6\\xa4\\x1b\\x8d\\x95\\xc8\\xf5\\x8c\\xd2\\xa2\\x91\\x5a\\x07\\xd8\\x8c\\x07\\x1f\\x9c\\x62\\xe7\\xa4\\x63\\x76\\x63\\x1f\\x9c\\x12\\x70\\x0a\\x97\\x0b\\x78\\x69\\x84\\x2e\\x00\\xb5\\x56\\x98\\x7c\\xb0\\x1d\\x70\\x1f\\x0b\\xed\\xd2\\x49\\x3a\\xcd\\x91\\xb8\\x9e\\x5b\\x55\\xec\\x66\\x20\\xae\\x29\\x3c\\x57\\xc1\\xe2\\x28\\xdc\\xd8\\x0d\\xb7\\x86\\x9b\\x9d\\xfb\\x61\\x55\\xff\\xd4\\x7e\\x59\\x4d\\x30\\x8e\\x46\\x65\\x7d\\x58\\x8d\\x8e\\xb9\\x81\\x03\\x79\\x6c\\xf8\\xdf\\x8e\\x93\\x8c\\x81\\x66\\x01\\x82\\x55\\x4b\\xa9\\xb4\\xaa\\xa1\\x79\\x51\\x4a\\xe9\\x38\\x94\\xf2\\xf3\\x32\\x46\\xd6\\xe8\\x7d\\x8b\\x62\\xcd\\x28\\x98\\xdf\\x81\\xed\\x29\\x12\\x7b\\xbb\\xe7\\x86\\x4d\\xfa\\xd1\\x36\\xe5\\x58\\xd3\\x82\\x8c\\x50\\x7f\\x38\\xec\\xe8\\xbc\\xb1\\x77\\x34\\xba\\xd4\\xec\\x89\\xde\\xba\\x2b\\x28\\xac\\x20\\xeb\\x1f\\x3b\\xb9\\x8e\\xc4\\xba\\x5e\\xc0\\xc3\\x7e\\xc5\\x46\\x26\\x04\\xe1\\x03\\xc0\\x29\\xd5\\x9e\\x66\\xaa\\xc8\\x19\\xee\\x08\\x0c\\x91\\x88\\x11\\xee\\x73\\x87\\xa3\\x11\\x87\\x7f\\x10\\x57\\x36\\x9e\\xfa\\xdd\\xcc\\xe7\\x89\\x1f\\x82\\xf0\\x4a\\xb0\\xa1\\xc2\\x09\\xcd\\x0e\\xff\\x5e\\x8b\\xa4\\x04\\xe2\\x81\\x8c\\x48\\xb1\\x8e\\x09\\x7e\\x40\\x46\\x10\\x5b\\xaf\\xf9\\x05\\xb7\\xb9\\xe0\\x0f\\xab\\xe3\\x71\\x7d\\xf8\\xe5\\x02\\xa4\\xe1\\xac\\xbc\\xb7\\x60\\x42\\xd6\\x57\\xb1\\xc8\\xfa\\x2a\\xde\\x92\\xf5\\xad\\x75\\xec\\x4b\\x14\\x18\\x32\\x54\\x82\\x2c\\xc4\\x79\\x9d\\xa4\\x05\\x7c\\x17\\xbc\\x1a\\x61\\x7a\\x48\\x85\\x21\\x4b\\xc4\\x61\\x86\\x5a\\xe2\\x19\\x0e\\x8e\\xc0\\xc1\\xa4\\x13\\x3f\\xa2\\x11\\x25\\x01\\xb7\\x30\\x61\\xf2\\x86\\x55\\x74\\x25\\x88\\xdd\\xde\\x66\\x9c\\xba\\x36\\xd5\\x9b\\xd5\\xe1\\xd3\\x76\\xf7\\x69\\xf9\\xf1\\xb9\\x69\\x66\\xda\\x7c\\x76\\x9d\\xdb\\x6e\\x69\\x31\\xa7\\x95\\x53\\x07\\xd6\\x76\\x6a\\x9d\\x78\\x05\\xa5\\x02\\xc6\\x2f\\x4b\\xbf\\xdf\\x36\\x5f\\x69\\xea\\xa8\\x85\\xbf\\xd7\\x9a\\xb7\\xc7\\xa7\\x99\\x8a\\xa3\\xf4\\x77\\x5d\\xef\\xe7\\xdd\\x4f\\xbb\\xa9\\x9d\\xf0\\xe2\\x4a\\x11\\xb1\\xbc\\x30\\x4e\\xd7\\x59\\x00\\x96\\xc4\\x60\\x67\\xb7\\xe1\\x01\\xc0\\xaf\\x8d\\x35\\x77\\x3c\\xf6\\xc1\\xa6\\xc0\\x19\\x92\\x48\\x80\\x2d\\x14\\x56\\x6b\\x89\\x35\\x54\\x15\\x30\\xa7\\x02\\xcb\\xcb\\x0b\\xed\\xc6\\x3a\\x36\\x2a\\x27\\x44\\x3a\\x27\\x61\\x5d\\x1d\\x04\\x6d\\x58\\xb0\\x28\\x3b\\x38\\xa2\\x9a\\x18\\x84\\x36\\xf9\\x84\\x6d\\x4a\\x61\\xbb\\x72\\xea\\xee\\xe0\\x5f\\x7c\\xff\\xbe\\x58\\x93\\x48\\xc4\\x28\\x8c\\xe3\\x8e\\x98\\x14\\x73\\x2f\\xc0\\x39\\xcd\\xd5\\x32\\x84\\x2a\\x79\\xe5\\x44\\x77\\x94\\xda\\xe7\\xca\\x13\\x2b\\x97\\xaa\\x0c\\x0c\\x05\\xe3\\x6c\\xe5\\x6c\\x14\\x41\\x57\\x3a\\x85\\x54\\x07\\x5b\\xc5\\xe4\\xb4\\x88\\x95\\x89\\x9e\\xa4\\x44\\xe7\\xab\\x9c\\x10\\x73\\x5e\\x45\\xab\\x92\\x30\\xda\\xe0\\x01\\x99\\x0d\\x9e\\x68\\x24\\xc3\\x4d\\x1b\\x83\\xcf\\x39\\x1f\\x44\\x39\\xc8\\x9c\\x2b\\x17\\x10\\x32\\x95\\xaa\\x40\\x52\\x69\\x79\\xa4\\x7b\\x47\\x2d\\x4d\\xac\\xa2\\xa6\\xcd\\x23\\xd9\\x2a\\x79\\x48\\x0d\\x55\\x08\\x36\\x00\\x06\\x2b\\x54\\x3e\\xf5\\x15\\xeb\\x6b\\xda\\xc8\\xa0\\x85\\x0c\\x7a\\x51\\xd3\\x43\\xd9\\x3b\\x2d\\xba\\xa3\\x24\\xb6\\xcb\\xa8\\x8a\\xd6\\x31\\x55\\x69\\x1b\\x43\\x24\\xe6\\xc7\\x55\\x29\\x98\\x5a\\x55\\xda\\x64\\x9b\\x93\\xd0\\x95\\x56\\x3e\\x19\\xa1\\x2a\\x1d\\x42\\xd0\\x28\\x70\\x3e\\x1a\\xa1\\xa9\\xc9\\x2e\\x76\\xc7\\x3a\\xb9\\x4a\\x69\\x43\\x6f\\x4f\\xc1\\x58\\xbc\\x39\\xab\\x84\\x73\\x1d\\x5c\\xf7\\xe2\\xe1\\x53\\x2f\\xef\\x4d\\x22\\x41\\x91\\x8d\\xf3\\xba\\xd1\\x16\\xa0\\x12\\xa9\\xb3\\x8d\\xde\\xe9\\xdc\\xf5\\x6e\\xb3\\x3e\\x4c\\x38\\x97\\xbe\\x68\\xd0\\x7e\\x45\\xdd\\x14\\xd6\\x6e\\xd0\\x7e\\x51\\x1d\\x74\\x30\\xcc\\xd1\\x84\\x41\\xfb\\x05\\xa5\\x4d\\xd6\\xf3\\x2c\\x49\\x64\\xee\\xd4\\x33\\xa0\\x77\\x14\\x05\\xe4\\xa2\\x91\\x3a\\x42\\x03\\x11\\xf8\\x97\\xd6\\x34\\x98\\x35\\x71\\x26\\x3a\\xb3\\x10\\x9c\\x85\\xf5\\x27\\x7e\\xfe\\x95\\x56\\xac\\x0f\\xcd\\x7e\\x22\\x4c\\x95\\xf3\\x3b\\x48\\x33\\x75\\x91\\xaf\\xad\\x20\\x5e\\xcb\\x06\\xa1\\x95\\x6f\\xa4\\x71\\x80\\xaa\\x56\\x35\\xa6\\x1d\\xb3\\xa6\\x7c\\x8d\\x81\\xae\\x47\\x01\\xbd\\x19\\x18\\x9f\\x31\\x08\\x84\\x16\\x2b\\xdf\\x18\\x84\\xec\\x29\\xc8\\xab\\x86\\x9d\\x9e\\xcb\\x25\\x5a\\xaa\\x64\\x66\\xe7\\xca\\x73\\x60\\x81\\xef\\xed\\x80\\xf0\\xa1\\x79\\x5e\\x1f\\xf7\\xfb\\xe3\\x66\\x42\\xb1\\xbe\\x8c\\x27\\x3a\\x09\\xb2\\xc4\\xc4\\x39\\x05\\x3c\\xd2\\xa4\\x4b\\x78\\x54\\x4a\\x74\\xd2\\xa0\\xf8\\xe5\\xbd\\x8d\\xb4\\xf2\\xa5\\x46\\x92\\x9c\\x90\\x4d\\x53\\x0e\\xdd\\xcc\\xd5\\x70\\x08\\xc4\\x10\\xca\\x49\\xc8\\x9c\\x26\\xfe\\x04\\xcc\\x8e\\xf2\\x0f\\x2e\\xe6\\x9b\\xe8\\x81\\xcd\\x3d\\x86\\xbc\\xab\\xef\\x12\\x82\\xf3\\x5c\\x4b\\xba\\x2b\\x85\\x29\\xf3\\x97\\xed\\xb1\\xfe\\xa2\\x3d\\x54\\xf4\\x5b\\xb5\\xe7\\xbd\\xd3\\x51\\xd8\\x00\\xc8\\x3e\\x78\\xd3\\x31\\xf4\\x9f\\x85\\x0f\\x31\\x64\\x65\\x08\\xb9\\x06\\x90\\xe8\\x90\\x8f\\xb4\\xb6\\x0d\\xb0\\xe9\\x7d\\x4d\\xfd\\x1a\\xe0\\xd8\\x4a\\x1d\\x2d\\x52\\x68\\x25\\xeb\\x70\\x71\\xf2\\xf2\\xde\\x2a\\x48\\x86\\x05\\xef\\xaf\\xe6\\x58\\x77\\xdd\\x69\\xb2\\x84\\x74\\xb9\\x95\\x8e\\x9d\\xfe\\xe9\\xf4\\x0e\\x9a\\xdf\\x40\\xc4\\x7a\\xbf\\xdb\\xad\\xeb\\xe3\\xc4\\x1e\\x31\\x7b\\x75\\x80\\x70\\xc9\\x1c\\x84\\x87\\x78\\x63\\xdb\\xc7\\x1d\\x03\\xe2\\xf5\\x77\\x30\\xaa\\xd8\\xa7\\xc6\\x87\\x46\\xf6\\x41\\xd1\\xb4\\xc6\\x34\\xf7\\xe1\\x6e\\x87\\x66\\x3f\\x6d\\xdb\\xd5\\x87\\xe6\\x0a\\x4d\\x86\\x8b\\x83\\x43\\xa3\\x71\\x68\\x9b\\x9a\\xb4\\x9c\\x44\\x30\\x67\\x62\\x63\\xa9\\xcb\\xad\\x36\\x83\\x37\\x18\\x3a\\xb1\\x34\\xff\\x81\\xd6\\x3a\\x2d\\xb4\\x1b\\x93\\x32\\xe4\\xa6\\x73\\x37\\x51\\x71\\x63\\x74\\xd3\\x51\\xae\\x81\\x86\\x38\\xf8\\xee\\x1d\\xd6\\x89\\x7b\\xbc\\x41\\xdf\\xae\\x76\\x0d\\x1f\\xbf\\xdd\\xa7\\xd9\\x56\\x8f\\xae\\xfe\\xdb\\x84\\xfb\\xa6\\x09\\x77\\x80\\xa3\\x1a\\xe7\\x87\\x19\\x13\\x78\\x5c\\x3e\\x96\\xb1\\x87\\xa8\\x8d\\x1b\\xfa\\x8d\\x33\\x8d\\x90\\x11\\x5d\\x44\\x4c\\xce\\x88\\xdb\\x80\\xfe\\x47\\x01\\xae\\x1a\\x6a\\x4c\\xd4\\xb9\\x63\\x79\\xb5\\x6a\\x25\\x1c\\xa8\\xe9\\x5f\\xad\\x5a\\x0f\\x5d\\x01\\xfd\\xff\\xdd\\xb1\\x74\\x16\\xdf\\x84\\xe0\\x06\\xbf\\x15\\x95\\xfb\\x56\\x3a\\xd1\\x35\\xcb\\x95\\xbc\\x22\\xa5\\xd1\\x5a\\x0b\\xd6\\xa1\\x6b\\xdd\\x82\\x14\\x68\\x70\\xf1\\x6f\\x31\\xee\\x0d\\x64\\xca\\xc4\\xd5\\x10\\x07\\xcb\\x6a\\xe2\\xb9\\xcf\\xb4\\x37\\xaa\\xf6\\xb2\\xe0\\x57\\x8c\\x30\\x67\\xcf\\x82\\x74\\x4c\\x8f\\x33\\x4b\\xbf\\x35\\xeb\\x3e\\x8d\\x19\\x2b\\x00\\x8b\\x9b\\xf1\\x50\\x0d\\xa4\\x80\\xc1\\xe7\\x5b\\x7c\\x17\\xff\\xb7\\xf4\\x55\\x78\\xcc\\xa3\\x1a\\xbe\\x54\\x03\\x7f\\x65\\xd5\\xec\\x28\\xa1\\x41\\x09\\xcd\\x94\\xf0\\x5d\\x5d\\x0b\\x25\\x94\\x60\\xda\\x68\\xd5\\x3a\\x6e\\x20\\x53\\x82\\xb8\\xcc\\x6e\\xc4\\x3d\\xf8\\x82\\xc5\\xe4\\x0d\\xf0\\xfc\\xea\\x7a\\xf3\\x7a\\x5d\\xdb\\x2b\\xed\\x2b\\xee\\xd3\\xfd\\xc4\\x31\\x3c\\x71\\x0c\\xd3\\xee\\x86\\xda\\xb5\\x1d\\xd4\\x89\\x85\\x92\\x7d\\x6f\\x5c\\x6a\\x6e\\x4d\\xf7\\x87\\x57\\xf4\\xa6\\xb0\\x71\\xd0\\xd4\\xdd\\x75\\xa0\\xd9\\xee\\xd6\\x97\\xab\\x40\\x57\\x3a\\xec\\x2a\\x2e\\x8f\\x0c\\xd0\\x73\\x9f\\x9a\\x53\\x2d\\xf7\\x15\\x2c\\x5e\\x29\\xd6\\xcf\\x38\\xf3\\xdf\\x79\\x47\\x4f\\xa7\\x3e\\x66\\xfe\\xca\\x3b\\x7a\\x2d\\xec\\x2d\\x62\\x97\\x69\\xe6\\xfc\\xfc\\x2c\\x29\\x73\\x69\\xd1\\x5e\\x4e\\xc0\\x61\\x9a\\xf0\\x54\\xb7\\x7a\\x78\\xc5\\xcc\\x74\\x9c\\x79\\x43\\x3f\\x85\\x19\\x24\\xd7\\xa5\\x2e\\x17\\x02\\xfb\\x37\\xba\\xb2\\x88\\xd0\\xc0\\xfd\\xe6\\x29\\xdc\\x79\\x00\\xde\\xed\\xac\\xeb\\x73\\xfb\\x65\\xc1\\x70\\x33\\x66\\x88\\xde\\x1c\\x05\\x65\\xb4\\x57\\x35\\x1b\\xe7\\xa0\\x3d\\x8c\\xb3\\x43\\x93\\xe8\\x8d\\xaf\\x61\\x54\\x8f\\x21\\x75\\x04\\xc8\\x35\\xe0\\x63\\xdf\\x19\\x0d\\x37\\xf6\\x2c\\x7e\\x87\\xb1\\x7e\\x71\\x6f\\x58\\x5e\\x0f\\x57\\x2c\\x30\\xd7\\xf6\\xad\\xad\\xbc\\x3b\\x51\\xa7\\x51\\xca\\x43\\x51\\x87\\x59\\xf1\\xd8\\x82\\x79\\x65\\xeb\\x28\\x60\\xf8\\x6f\\x09\\xce\\x24\\xd1\\xd6\\x5f\\xa9\\xc1\\xf5\\xf5\\xb2\\x5f\\x70\\xa1\\x8b\\x78\\x64\\xbd\\x1d\\xe6\\xc4\\x62\\xb2\\x7d\\xc2\\xe2\\xf5\\x20\\xa7\\x72\\x65\\xbd\\x75\\x2e\\xbd\\x8d\\x8c\\xc5\\xb7\\xe7\\xea\\x82\\x7d\\x7d\\xcd\\xef\\xe9\\xe8\\xed\\x18\\x7d\\xc4\\x45\\x21\\xad\\x8b\\x0d\\xeb\\xe6\\x62\\x43\\xcc\\x63\\xd2\\x8b\\x1a\\x00\\x73\\x4c\\x26\\x21\\x5f\\x69\\xa2\\xab\\xa9\\x72\\xc4\\x4a\\x11\\x1b\\x89\\x30\\x4d\\x5a\\x70\\x0a\\x74\\x1d\\xa7\\xb4\\xe1\\x51\\x69\\xe2\\xdc\\x98\\x2e\\xea\\x3f\\x23\\xac\\x12\\xc5\\x5f\\x9d\\x5f\\x71\\xbd\\x4e\\x63\\xb6\\x61\\x7e\\x3d\\x6a\\xa8\\x2e\\xcc\\xc1\\x74\\x83\\xe8\\xfa\\x02\\xbc\\xb8\\xe0\\xa1\\xfa\\x0e\\xb0\\xc9\\xb1\\x7f\\xea\\xb7\\x4f\\x67\\x98\\x3d\\x63\\x7c\\xcb\\x02\\xca\\x0e\\xb6\\x79\\x2e\\x72\\xed\\xf1\\xa5\\x09\\x9b\\x7f\\xb0\\x77\\x97\\xa6\\x9b\\x3b\\x26\\x46\\x74\\x4a\\x77\\xf6\\x93\\x5b\\xbc\\x18\\x02\\x2e\\x6d\\x9c\\xe7\\xe6\\xca\\xec\\x6d\\x6f\\xcc\\x78\\xee\\xd4\\xd1\\x1b\\x66\\x7b\\x6e\\xb2\\x5b\\x2e\\x2e\\x36\\x35\\x93\\x9d\\x30\\x21\\x02\\x84\\xaa\\xb8\\xba\\x58\\x8c\\x53\\x13\\x4f\\xfe\\x8e\\xc2\\xfd\\x12\\x4b\\xce\\x17\\x56\\x79\\x34\\x4e\\x1e\\x30\\x66\\x9f\\x77\\xd0\\xfd\\x05\\x7b\\x77\\xb1\\x5e\\xef\\x46\\x52\\x15\\x31\\x10\\xf7\\x91\\xef\\xda\\xab\\xfb\\x09\\x37\\x82\\x38\\x99\\x37\\xbe\\xe5\\xed\\x6b\\x16\\x86\\xea\\x43\\xcd\\x59\\xdc\\x6b\\xcf\\xfd\\xd9\\x7f\\x7d\\xf2\\x97\\x38\\x80\\x47\\x36\\xb1\\xf9\\xfe\\xfe\\x15\\x76\\x00\\x9a\\xf9\\x63\\xff\\xed\\xbe\\x0e\\x8b\\x87\\x77\\x52\\xac\\x61\\x8f\\xc9\\x60\\x57\\x98\\x7e\\x5e\\x7f\\xde\\xb4\\x9d\\x63\\x15\\x7c\\xdb\\x6e\\x0a\\x09\\xc8\\xf9\\xc5\\xaf\\x30\\x3e\\x1f\\x58\\xd2\\x6f\\x0b\\x0e\\x6f\\x5f\\xc4\\x5e\\xcf\\xde\\x2c\\xce\\xf9\\x9b\\xb7\\xb1\\x16\\xaf\\x5d\\x45\\x67\\x16\\xd1\\x37\\xaf\\x79\\x0f\\xed\\x27\\x8b\\x3b\\xc2\\xbd\\x49\\xf3\\x33\\xe4\\xe1\\xb1\\xf9\\x0d\\xac\\xe2\\x05\\xa7\\xf8\\xc6\\x09\\x76\\x95\\x5f\\x7e\\x7c\\x9a\\xbf\\x9d\\x5f\\xbd\\xb9\\x03\\xed\\xf7\\x13\\x23\\x15\\x4e\\x7b\\xcf\\x30\\x67\\xe2\\x09\\x01\\x8f\\xde\\x12\\x03\\xe7\\x31\\xf3\\x80\\xea\\x89\\x88\\x58\\x5e\\xc5\\xae\\x78\\x4a\\x5b\\x67\\xae\\x81\\xc2\\x4d\\xa1\\xce\\x07\\xd8\\x37\\x7e\\x64\\x06\\xea\\xfc\\x5e\\x0b\\x3e\\xaf\\x0e\\xe7\\xad\\xe0\\xa2\\x3e\\x52\\x6c\\xf0\\x56\\x9a\\x42\\xbd\\x5a\\x87\\x94\\xb0\\x19\\xe1\\x95\\x8c\\xb2\\xe3\\x4e\\xd6\\xe9\\xcb\\x78\\xc8\\x7b\\xc1\\xad\\xdd\\x47\\x97\\x1f\\xf6\\x87\\xa7\\x89\\xcb\\xdd\\xc5\\x95\\x21\\x64\\xcf\\x24\\xce\\x79\\x88\\x38\\x35\\x13\\x39\\x98\\xd6\\xc5\\x97\\xef\\x56\\x67\\xaa\\xd0\\x72\\x35\\x75\\x30\\x19\\x15\\x4e\\x30\\xf0\\xfb\\x04\\x49\\x5d\\x4a\\x24\\xb6\\xba\\x02\\x98\\xf1\\xf2\\x92\\xb1\\x57\\x9f\\x82\\x5f\\xdc\\xfc\\x53\\x63\\x85\\x87\\x4d\\x8e\\x35\\x1e\\xf7\\x80\\xda\\x4b\\x8d\\x3f\\xec\\x8f\\xc7\\xfd\\xe7\\xcb\\x96\\x74\\xe5\\x3d\\x42\\xae\\xce\\xa6\\xa4\\xf9\\xb3\\x27\\xa4\\xae\\xbd\\xae\\x3b\\x50\\xa3\\x28\\x79\\x4e\\xe6\\xd0\\x45\\x49\\x96\\xd8\\x43\\x67\\xbb\\x57\\xf5\\xd1\\x13\\xa3\\x32\\x28\\x6b\\xa0\\xde\\x08\\xf6\\xfc\\x93\\xa0\\x1d\\x87\\x23\\x9e\\xbf\\xa4\\x84\\x2f\\xa2\\xd8\\x70\\x71\\x19\\x10\\xe7\\x2f\\x31\\x31\\x8e\\x8a\\x01\\x51\\x01\\xff\\xad\\x60\\xcf\\xea\\xbd\\xe8\\x6f\\x1f\\xaa\\xd2\\xdf\\x8e\\x51\\x37\\xff\\xf2\\xe1\\x2d\\x06\\x55\\x2a\\xc1\\xa3\\x57\\xee\\x1e\\x28\\x3b\\xbc\\x3b\\x9b\\x19\\x12\\x3e\\xd0\\x9d\\x75\\x73\\xa6\\x70\\x9c\\x14\\x4f\\xc0\\x5f\\xce\\x48\\x08\\xec\\xc6\\x19\\x12\\x1a\\x55\\x3a\\x79\\x7c\\x33\\x5c\\x4f\\xcb\\x3b\\xfa\\xca\\x5f\\xed\\xcb\\x2e\\x13\\xc5\\xcc\\xdd\\x57\\x06\\xc4\\xe5\\x17\\xaf\\xf4\\xf0\\x95\\xf1\\x80\\x79\\x54\\xee\\x36\\x5d\\x57\\xbc\\x2c\\x4a\\x5e\\xc0\\xf3\\xbb\\x83\\x9b\\xab\\x47\\x70\\x73\\x1f\\x0c\\x6e\\xee\\x7b\\xfd\\x4c\\x38\\xaf\\x44\\x29\\x1d\\xb5\\xba\\xf8\\xb7\\x9e\\x17\\xf3\\xd2\\x74\\xfe\\x8a\\x82\\xd1\\x7e\\x5e\\x09\\x2a\\xbe\\x6c\\xc7\\x23\\xc3\\x63\\xdf\\xec\\xe7\\x86\\x07\\x17\\x63\\x78\\x28\\x91\\xfc\\xc6\\x6b\\xc3\\x71\\x67\\xf4\\x03\\x68\\x44\\x00\\x53\\xe9\\x6c\\xad\\x86\\x75\\x25\\xaa\\x41\\x69\\x9d\\x04\\x40\\x7b\\x91\\x6a\\x4d\\x35\\x1e\\x46\\x32\\x24\\x04\\x17\\x09\\x5b\\x7e\\xf1\\x36\\xb1\\x11\\x3c\\x52\\x43\\x0b\\xb7\\x40\\x54\\xb5\\x4c\\xea\\x94\\x54\\x43\\xe7\\x0f\\xae\\xba\\x9b\\xfd\\x61\\xfb\\xb2\\xdf\\x1d\\x57\\x33\\x8b\\xef\\xf8\\x5a\\xbf\\x06\\x5f\\xd2\\xf4\\xfa\\x88\\x9e\\xe9\\x96\\xd7\\x2d\\x5a\\xc3\\x90\\xe1\\x15\\xd1\\x94\\x15\\x71\\x7e\\x24\\x5c\\x1b\\xbb\\xf3\\xab\\xd3\\x95\\x55\\x68\\x7e\\x89\\x5b\\x5c\\x5b\\x6f\\xae\\x2c\\x5a\\xf3\\xa3\\x6f\\x7e\\xac\\x5f\\x59\\x99\\xe7\\xa6\\xc0\\x03\\x1d\\xba\\xdd\\xed\\xd6\\x33\\x23\\xb2\\x14\\x0f\\xfe\\xd8\\xf3\\x6b\\xfe\\x4c\\x3f\\x76\\xd4\\x03\\x8c\\x7a\\xd4\\x25\\xd1\\x05\\xfd\\x00\\x0b\\xe6\\x3a\\x56\\x2c\\x6a\\x86\\x55\\xd0\\x38\\x07\\x29\\x67\\x07\\xc6\\x95\\xae\\xbe\\x32\\x30\\xae\\xec\\x38\\xd7\\xc8\\x3e\\xdf\\x49\\x3d\\xdd\\x17\\x8f\\x10\\xfe\\x6a\\xdf\\x7d\\x4b\\x77\\x34\\xeb\\x8f\\xc7\\xcb\\xde\\xe0\\xd2\\x6f\\xd8\\x3d\\x5e\\xbd\\x96\\x5f\\xa1\\xf4\\x4c\\xf7\\x5f\\xef\\xad\\xf9\\xb5\\x3c\\x80\\x25\\x42\\x29\\x78\\xa4\\x57\\x2f\\xaf\\x8b\\x2b\\x94\\x9e\\xdf\\x6b\\xae\\x6d\\x7a\\x57\\x76\\xce\\x2b\\xcb\\xcf\\xec\\xc2\\xf1\\x40\\x37\\xee\\x9f\\x8f\\x73\\xb3\\xaa\\x14\\x33\\x4f\\x37\\xcb\\x62\\x5c\\x63\\x48\\x3a\\x9e\\xd5\\xe4\\xc4\\x69\\x4d\\xe9\\x1f\\xb8\\xf3\\x5d\\xe7\\x3e\\x67\\x18\\xaa\\x5b\\x1c\\xd2\\xfc\\x02\\xf7\\x40\\x63\\x0f\\xdb\\x4f\\x9b\\x99\\x41\\x5b\\x8a\\x7b\\x77\\xf6\\xd7\\x75\\xc6\\x4c\\x8f\\xde\\x18\\xfa\\xb7\\x97\\x8d\\x32\\xde\\x0a\\x51\\xe6\\x67\\xca\\x95\\x01\\x70\\x95\\x35\\x99\\x67\\x42\\x2e\\x5f\\xbc\\xb8\\xb2\\xf9\\xcc\\x72\\x2c\\xaf\\x9a\\x0f\\x57\\x98\\xa9\\xd9\\x49\\xf2\\x40\\x2f\\xb6\\xc7\\x5f\\x26\\x61\\xb2\\xd3\\xe2\\x21\\xdf\\xcd\\x2c\\x35\\xa6\\xf6\\x5e\\xa7\\x21\\xef\\x0d\\x34\\x7f\\x3d\\xf3\\x78\\x49\\xb0\\xf9\\xc9\\xff\\x0a\\x16\\xe3\\x01\\x1a\\x1c\\xf7\\x5f\\x2e\\x29\\x80\\xc2\\x01\\x5e\\xfd\\xd1\\x45\\xf6\\xca\\x90\\xbf\\x3e\\x5a\\xe7\\x47\\xd4\\xac\\x25\\xfd\\x06\\x3d\\x67\\xfa\\xe7\\xb5\\x43\\x7b\\x6e\\x10\\xcf\\x0e\\xd7\\xf9\\x69\\x70\\x9d\\xed\\x9e\\x99\\xd3\\x37\\x46\\xfc\\xb7\\x74\\xe0\\x69\\x7d\\x38\\x6e\\xeb\\x39\\xe6\\x74\\xb8\\x72\\xab\\x2b\\xe7\\x7b\\xe7\\xca\\xc2\\xf3\\x3a\\xde\\xf4\\x46\\x9f\\x5d\\x15\\x5d\\xb0\\x61\\x9a\\x6e\\x01\\xbb\\xce\\xb2\\x5e\\x5f\\x20\\x2e\\x6f\\xbe\\xde\\x97\\x57\\xfa\\xe1\\xd1\\xee\\x79\\x8d\\x70\\x77\\xb3\\x2b\\x0f\\xab\\xdd\\xd3\\x76\\xf7\\x69\\xf9\\x75\\x75\\x5c\\x1f\\xce\\xb5\\x64\\x33\\x17\\x47\\x88\\x5a\\x9d\\x7a\\x26\\x77\\x29\\xb0\\xb3\\xf9\\x7e\\x88\\x5a\\xb7\\x1b\\x45\\xbb\\xe1\\x6e\\xdd\\xb6\\x4b\\x3d\\x69\\x4e\\x5f\\xfc\\xef\\xff\\xdd\\xcf\\x56\\xff\\x69\\x14\\xee\\xcd\\x01\\xae\\x3a\\x89\\xa9\\x33\\x5e\\xfb\\x2d\\x5e\\xed\\x8f\\xd6\\xcd\\x5c\\xaf\\x9b\\xf9\\xd3\\x28\\xca\\x61\\xec\\x5f\\xe8\\x4a\\x6d\\x5c\\x57\\x9b\\xd0\\x57\\x84\\x8b\\x6a\\x69\\x73\\x09\\x06\\xd7\\x25\\x33\\x97\\x49\\x35\\x8d\\x0b\\x84\\x35\\x0e\\x7f\\xc9\\x73\\x3e\\xcd\\x3e\\x6f\\x57\\x02\\x44\\xb2\\x4e\\x22\\x44\\x24\\xe4\\xc7\\x93\\x8f\\xb6\\xc5\\x5e\\x6f\\x8b\\xfd\\xd3\\x88\\x09\\x7b\\x55\\xbc\\x40\\x5d\\xe4\\x69\\xe7\\x84\\x45\\x5c\\x54\\xae\\x13\\x71\\x53\\x1c\\x60\\xab\\xa0\\x38\\x17\\x46\\xb9\\x56\\x06\\x23\\x74\\x97\\x21\\xd6\\x28\\x57\\xd3\\xca\\x22\\x9c\\x11\\x08\\xb0\\xba\\x13\\x24\\x39\\xd4\\xd6\\x5d\\x6f\\x84\\xfb\\xd3\\x14\\xbb\\x66\\x2e\\xea\\xbb\\x95\\xe5\\x77\\x1f\\xd9\\x39\\x82\\xbe\\xf6\\x0c\\x44\\xa1\\x4d\\xed\\x38\\x5f\\x56\\xe4\\xc8\\xaf\\x08\\xdb\\x4a\\x68\\xe1\\x45\\x4d\\xbd\\x59\\x0a\\x6a\\x64\\x74\\x45\\xe2\\x6a\\x6d\\x18\\x06\\xa3\\xe0\\xc6\\x5a\\x13\\x9b\\x48\\x3d\\xac\\x1b\\xc9\\xc7\\x93\\xd4\\x4a\\x6d\\xe8\\x9f\\x06\\x99\\x00\\x23\\x1f\\x23\\x97\\x9d\\xb8\\x5c\\x89\\xa8\\x1b\\xfc\\x4b\\x05\\x1b\\x2a\\xc4\\x3d\\x0d\\x3f\\x41\\x05\\x78\\xcf\\xa3\\xc4\\xf2\\xd7\\x89\\xe5\\xbf\\x85\\x58\\xed\\x65\\x48\\x7c\\x3b\\x8a\\x92\\xc5\\x0f\\x26\\x80\\x4e\\xfe\\x57\\x6d\\x71\\xa1\\xe6\\xa3\\x0d\\x0f\\xd7\\x1b\\x1e\\xbe\\xa5\\xe1\\x27\\xc6\\x98\\xfd\\x1d\\xb4\\x2c\\x5e\\x6f\\x59\\x1c\\xb7\\xcc\\x3a\\x3d\\x02\\xc1\\x48\\x0c\\x82\\xe1\\xcf\\x41\\x30\\x5a\\x89\\xf4\\xb3\\x38\\x4d\\xbe\\xe5\\xfb\\xf0\\xff\\xcb\\x6f\\x34\\x30\\x7e\\xbb\\x99\\xb1\\x78\\xd5\\xd4\\x58\\x3d\\x4f\\xd0\\x77\\x2e\\xae\\xf4\\xa1\\xa1\\x50\\xc6\\xe8\\x46\\x86\\x4c\\x62\\xe8\\x86\\x13\\x37\\x21\\x33\\x85\\xa1\\x72\\x44\\x5a\\x6c\\xc2\\x6f\\xde\\x3a\\x6e\\xdc\\x7b\\x63\\xb5\\x30\\xce\\x34\\xc6\\x8b\\xc8\\x88\\xff\\x31\\x6d\\xee\\x86\\x00\\x0c\\x8d\\xdb\\x6c\\x3f\\x6d\\xe6\\x9b\\xcd\\x57\\xfe\\x6d\\xfc\\x3c\\x48\\xc8\\x66\\xff\\x75\\x9e\\x8e\\xb8\\xf0\\x3f\\xef\\xca\\xfa\\x79\\xfd\\xb4\\x9d\\x64\\xfd\\x98\\xb9\\xf6\\xc7\\x5b\\x5e\\xf7\\x3f\\xad\\x77\\xcb\\xed\\xe7\\xd5\\xa7\\x89\\xc0\\x3f\\x29\\xee\\xb1\\x34\\x4d\\x48\\x0d\\xc7\\x7f\\x9f\\x24\\x67\\x9a\\x7f\\x0d\\x98\\x9a\\x76\\xaa\\x3c\\xdd\\x14\\x90\\x9a\\xc0\\x29\\x81\\xc1\\x94\\x2b\\x6a\\xbc\\x53\\x05\\x7a\\xac\\x00\\xc4\\x84\\x92\\xba\\x6c\\x38\\xa5\\xab\\xfe\\x84\\x8f\\x5f\\xc6\\xb3\\xce\\xe1\\xfd\\xde\\x6e\\xfd\\x73\\x3b\\x5d\\x13\\x70\\x5e\\x84\\x08\\x23\\x9c\\xb6\\x17\\xb6\\x93\\x46\\xea\\xac\\x69\\x0d\\xd4\\x8d\\xf4\\x59\\xf8\\xdc\\xd0\\xb9\\xce\\x7a\\x6a\\x7a\\x79\\xe9\\x60\\xa6\\x6b\\x20\\x88\\x4e\\x12\\xf7\\x16\\x1c\\xae\\xb3\\x05\\x05\\x69\\x95\\x19\\x6e\\x4c\\x47\\x14\\x3a\\xcb\\x2e\\x45\\xe0\\x83\\x19\\x42\\x9f\\x43\\xf3\\x47\\x29\\x81\\x6f\\xb7\\xef\\xf9\\xc3\\x87\\x66\\x0d\\x50\\x89\\x89\\x52\\x6e\\x52\\x5c\\x80\\x9a\\x39\\x06\\x5d\\xd1\\x58\\x75\\xc4\\x9c\\x5b\\xa1\\x15\\xd2\\x47\\xb4\\xf4\\x5b\\xba\\x80\\x32\\x49\\x05\\x80\\x48\\xa2\\xab\\xb2\\x14\\x21\\xfa\\xc0\\x70\\xda\\x0e\\x3c\\x04\\x15\\xa2\\xed\\xb0\\x86\\x26\\x59\\xcb\\xdb\\x71\\x3e\\x01\\xdb\\x22\\x39\\xc2\\x90\\x44\\x60\\x92\\x8a\\xdf\\x72\\x60\\xb0\\xf2\\xd4\\xea\\x24\\x2c\\xd0\\xb8\\x42\\x16\\x21\\xb5\\x21\\x21\\x57\\x12\\x92\\x3d\\x27\\xe6\\x4e\\xf9\\x37\\x9f\\x87\\x8c\\x2c\\xac\\xb8\\xf7\\x0e\\x85\\x3e\\x2d\\x0f\\xeb\\x2f\\xfb\\x33\\xfa\\x0c\\x85\\x43\\x70\\x98\\x0f\\x63\\x50\\x7d\\xe0\\xfe\\xe7\\x2c\\x8a\\xed\\x42\\x16\\x50\\x80\\x54\\xe6\\x32\\xf4\\x5e\\x10\\x91\\x7d\\x4d\\xb3\\x52\\xb0\\xdb\\x31\\x42\\x35\\x4e\\xd2\\xe8\\xb1\\x46\\x40\\x1a\\x84\\xcd\\xd1\\x92\\xc7\\x79\\x22\\xe0\\x98\\xb3\\x71\\x25\\xdd\\x2d\\x9c\\x96\\x0d\\x8f\\x96\\x2e\\x61\\x9d\\x46\\xb2\\x52\\xd7\\xca\\x94\\x81\\xbc\\x44\\xe7\\xc8\\x79\\xc6\\xc2\\xb5\\xaf\\xa5\\x16\\x11\\x6e\\xca\\x78\\x9d\\xd1\\x27\\xa3\\x07\\x3b\\xc5\\x09\\x1f\\x8c\\x42\\x03\\xf4\\x01\\x79\\x04\\x1c\\xe4\\xfa\\xa0\\x16\\xb5\\x56\\x34\\xfc\\x8c\\x25\\x72\\x5b\\xea\\xa6\\x46\\x5a\\x2f\\xac\\x2f\\xc1\\x80\\x34\\x6e\\x1d\\x10\\xfd\\x01\\xc0\\x0d\\xb8\\x22\\xdb\\x22\\xd4\\x1c\\x24\\xb7\\x74\\x87\\x0b\\x3d\\xd6\\x3e\\x12\\x62\\x21\\xc7\\xb3\\xd4\\x9a\\x11\\x19\\x80\\x37\\x27\\xf1\\xb9\\x3b\\x7d\\xb3\\x6d\\x26\\xd1\\xa0\\x7c\\x5e\\x12\\x51\\x03\\xd9\\xb7\\xce\\x42\\x06\\xd1\\x79\\x11\\xf5\\x71\\x9e\\xd2\\xe5\\x5a\\xe6\\xde\\x4f\\x3c\\x63\\xac\\x60\\xe6\\xd2\\x50\\x74\\x35\\xee\\xd1\\x0c\\x8a\\x83\\xcb\\xda\\xd1\\xf6\\x5a\\xf3\\xa8\\x03\\x18\\x1a\\xa0\\x71\\x68\\x89\\xf6\\xa9\\xc9\\x0e\\xf1\\x93\\x65\\x61\\xca\\x46\\x64\\x53\\x7b\\x0d\\x5f\\x15\\xce\\xc5\\xa3\\x01\\x7b\\x95\\x6a\\xa7\\x91\\x36\\x16\\xd9\\xbf\\x52\\xf1\\x04\\xbc\\x8d\\xbb\\xff\\xe1\\xf9\\xd0\\x1e\\x97\\x9f\\xf7\\x4f\\x93\\xd5\\x77\\x54\\xd8\\xab\\xcc\\xb5\\xcb\\x1b\\xa3\\x2d\\x92\\x70\\x65\\xd5\\x00\\xd7\\x2f\\xa4\\x86\\x86\\x85\\x0b\\x05\\xd1\\x48\\xf9\\x4b\\xef\\xd6\\x3e\\x63\\x87\\x36\\xe2\\xcc\\x5f\\xb0\\x38\\x32\\x5d\\xf8\\x1b\\x9e\\x66\\x00\\xb5\\x18\\x16\\x19\\xb6\\x33\\xe5\\x39\\x79\\x41\\x66\\xd8\\x5d\\x18\\x1e\\x8c\\xe6\\x72\\xdb\\x95\\x43\\x37\\x72\\xa7\\xe9\\xed\\x76\\x77\\x06\\x8e\\xd1\\x17\\x0d\\xf0\\xcd\\x97\\xae\\x2e\\xc5\\x71\\xfd\\xc2\\xa7\\xc5\\x70\\x7e\\x59\\x86\\x8a\\x84\\xb5\\xd1\\x8e\\x34\\x55\\xc3\\x69\\x99\\x75\\x6c\\x71\\xec\\xfd\\x2e\\x4f\\xc5\\x02\\x22\\x3b\\x13\\x88\\x66\\x83\\xc9\\x19\\xb0\\x10\\xbc\\x88\\x67\\x52\\xa9\\x00\\xe3\\x30\\x9e\\xbf\\x04\\x1e\\x78\\xdd\\xbb\\xf9\\x9b\\xd0\\x99\\x99\\x34\\xbc\\xbb\\xab\\x59\\x71\\xb6\\xc3\\xbb\\x17\\x97\\xe5\\xdd\\xcb\\x87\\xb7\\x14\\x8c\\x6a\\x1a\\x15\\xc0\\xf5\\xa4\\x2f\\x07\\xe8\\x09\\x51\\x72\\x27\\x2f\\x51\\x47\\xeb\\x65\\xbd\\xde\\x9d\\x19\\xa8\\xce\\xaf\\x0c\\xae\\xdc\\xa5\\x29\\xe7\\x8b\\x5d\\xb0\\xb3\\x7e\\x5e\\xbc\\xd3\\xcd\\x65\\x8a\\xe9\\x10\\x9b\\xba\\x0c\\x25\\x0c\\xec\\xef\\x0a\\xb0\\x3f\\xee\\x46\\xa4\\x75\\x70\\x97\\x3e\\x61\\xc8\\xc8\\xda\\x14\\x28\\x56\\xdf\\x74\\xda\\xbb\\x52\\x9f\\x82\\xbb\\xb1\\x49\\x81\\x96\\x3c\\xe0\\xfc\\x25\\xa0\\x78\\x1a\\x37\\xaa\\xc6\\x84\\x53\\x71\\x67\\x7e\\x7c\\xf6\\x94\\x3c\\x3f\\x69\\xf4\\x6d\\xd0\\xc1\\x7a\\x55\\x6f\\x26\\x01\\xeb\\x5d\\xc1\\x18\\x9a\\x6e\\xd3\\x73\\x33\\x9e\\xb9\\x19\\xbf\\x41\\xb3\\x2e\\xe0\\xf1\\x6a\\x8b\\xc4\\xc7\\xec\\x27\\x4b\\x3c\\x86\\x89\\x23\\x88\\xbd\\xc4\\x71\\xd0\\xa9\\x80\\xef\\x09\\xed\\xaf\\x62\\xf5\\x15\\x75\\xb4\\xd3\\xcc\\x61\\x01\\xb2\\xf8\\x2a\\x6a\\x60\\x2d\\xad\\xed\\xd8\\x0e\\xba\\x47\\x23\\x1e\\x47\\x0b\\x76\\x73\\xa7\\xaa\\x00\\x1d\\xce\\x73\\x6e\\x32\\x3f\\xc7\\xd4\\x02\\x12\\xf9\\x36\\x9d\\x7e\\x5a\\x4f\\xa8\\xf4\\xd3\\x98\\xab\\xb4\\x46\\xcd\\x30\\x49\\x27\\x69\\xed\\x64\\xf8\\x98\\xee\\xaf\\x2e\\x39\\xa7\\x0c\\x3c\\x88\\x81\\xda\\xd3\\x10\\x4b\\xe2\\x02\\x0e\\x48\\x3b\\x8e\\xfd\\xa6\\xa4\\xc7\\xa3\\xa3\\xcf\\xb4\\xfe\\x3b\\x3f\\xb9\\x09\\xac\\x1d\\x67\\x67\\x62\\xdc\\x1f\\xa9\\xcd\\x28\\xbf\\x44\\x37\\x0c\\xcd\\x09\\x35\\x99\\xf2\\x5d\\x1b\\x4c\\xc8\\xde\\xae\\xc1\\xde\\xa4\\xb4\\x6f\\x44\\x5d\\x03\\x68\\x94\\x5d\\xc0\\x87\\x34\\x74\\x5d\\x6a\\x78\\x0f\\x76\\xce\\x2e\\x4e\\x92\\xd5\\xcd\\x33\\x99\\xa6\\xac\\x9b\\x8b\\xa8\\x39\\xe5\\x54\\x23\\xac\\x9e\\x77\\x7c\\xcb\\xe8\\x8d\\xb6\\x46\\x72\\x34\\x12\\x3f\\x05\\x52\\xc1\\x35\\xc4\\x16\\xdb\\x92\\xbc\\xb1\\x46\\x38\\x55\\x02\\x16\\x0b\\x16\\x11\\x27\\x14\\xdf\\x30\\x42\\x7c\\xbc\\x64\\xd5\\x6b\\x45\\x5c\\xac\\xd0\\x41\\x44\\x7a\\xa3\\x0d\\x22\\xd8\\x06\\x49\\xf0\\x6c\\x4d\\x9d\\x83\\x5c\\xee\\x0e\\x1c\\x86\\xb9\\x98\\xe2\\xf7\\xd9\\xee\\x7a\\xea\\xaf\\x59\\x0f\\x9e\\x9a\\xda\\x69\\x61\\x92\\xa9\\x2d\\x72\\xb1\\x8b\\xa4\\x39\\x67\\x7c\\x81\\x8c\\xd6\\x0d\\x67\\xfe\\x04\\x26\\x94\\x67\\x6e\\xdb\\xd7\\x34\\xb1\\x93\\xf0\\x4c\\x4a\\x24\\x12\\x35\\x97\\xee\\xca\\x7d\\xea\\xae\\x73\\x6a\\xd7\\xd2\\x28\\x64\\x97\\xe3\\x88\\x54\\xcb\\x3f\\x68\\x45\\x3b\\xdf\\x00\\xe3\\x8c\\x2b\\x37\\x1a\\x1f\\x69\\x18\\x7a\\x03\\xf0\\xa8\\x18\\x6a\\x83\\x0c\\x4b\\x65\\xd8\\x21\\x4c\\xea\\x1e\\x2d\\x96\\xeb\\xdd\\xd3\\x19\\x3d\\xb8\\x68\\x50\\x49\\x18\\x85\\x7c\\xa7\\x34\\x4f\\x59\\x5b\\x9b\\x31\\x29\\x4f\\x92\\x51\\x7d\\x13\\xca\\x00\\x4d\\x6c\\x18\\x61\\xab\\x38\\x5a\\x03\\x29\\x9a\\xba\\x87\\xd6\\x07\\x9b\\x6b\\x89\\x0c\\x70\\x12\\x6c\\x13\\xe2\\xe0\\x02\\xdc\\xc7\\x0b\\x0e\\x68\\x03\\xf0\\x60\\x5b\\x32\\xc5\\x81\\xb1\\x22\\x4a\\xb7\\x46\\x10\\x7f\\x49\\x4b\\x4e\\xf0\\x22\\x18\\x24\\xd1\\xd3\\x4a\\x09\\xe3\\x15\\x1d\\x5b\\x5d\\x34\\x25\\x06\\xbd\\xa0\\x54\\x8d\\xaf\\x80\\xb5\\xc2\\x67\\x5a\\x44\\xdd\\xe9\\xf2\\xd1\\xa6\\x60\\x1e\\xdf\\xa9\\x4c\\xc9\\x09\\xcf\\x48\\x41\\x34\\x39\\x7d\\x14\\xd4\\x82\\x28\\x6c\\x8f\\x88\\x4c\\x87\\x7c\\x0a\\x01\\x19\\x22\\x35\\x27\\x6a\\x00\\xdc\\x58\\x12\\xfa\\xb6\\xd7\\x35\\x88\\xfc\\x79\\xf5\\xb4\\x3e\\x27\\x3c\\x97\\x0d\\x16\\x01\\xe5\\xcb\\x06\\xab\\x79\\xc7\\xa7\\x61\\x28\\x8d\\x03\\xc4\\x55\\x8f\\x9c\\x41\\xe7\\xc6\\xa5\\x0d\\x0d\\xd2\\xd3\\x1d\\x4f\\x09\\xfe\\xca\\xfa\\xf0\\xe9\\xf2\\xd3\\x5c\\xc8\\xdf\\x0e\\x0a\\x2b\\x38\\x40\\x66\\x1b\\xce\\xe9\\xb9\\x91\\x91\\x84\\x64\\x1b\\xc6\\x39\\x59\\x3b\\xe8\\x0e\\x20\\x82\\x9e\\xb4\\xce\\x74\\x17\\xfb\\x7b\\x00\\x05\\xd3\\x8a\\x68\\x0a\\xef\\x1e\\xad\\x90\\xf1\\x91\\xca\\x6d\\xdb\\x76\\x7d\\x31\\x22\\xbb\\x52\\xe6\\xbf\\x35\\x18\\x9b\\x21\\xa5\\x56\\xc1\\x34\\x6d\\x3a\\xc4\\x51\\x5a\\xde\\x18\\xab\\xb0\\xf7\\xfd\\xb2\\x1b\\x99\\x53\\x9f\\x04\\xeb\\xd1\\x6a\\x2c\\xf7\\xcf\\xc7\\x4f\\xfb\\x29\\x42\\xca\\xfc\\xe5\\x2e\\x40\\xd8\\x5a\\x5b\\x1a\\xdc\\x83\\x6d\\x15\\x40\\x13\\xaa\\x00\\x67\\xf5\\xe9\\x5d\\xd0\\xec\\x29\\xa7\\xa6\\xcf\\x4a\\x7b\\xbf\\x52\\x87\\x75\\xbd\\xde\\x9e\\x2e\\xa9\\x33\\x94\\xf7\\xb9\\xc0\\x6c\\x8e\\xc3\\x48\\xd9\\xe8\\x4e\\x22\\xa4\\xd1\\x44\\x83\\x09\\x28\\x96\\x4e\\x77\\x63\\xe7\\xfe\\xa7\\xdb\\x2f\\xcd\\xf6\\x78\\xfe\\xdd\\x52\\x38\\x58\\xe3\\x90\\x20\\x19\\x22\\x50\\xa3\\x35\\xa3\\xaf\\x9c\\xa4\\x4e\\x9c\\xdd\\x09\\xa0\\x2f\\x5a\\xd1\\x5c\\xd1\\xdd\\x6d\\xa7\\xc1\\xad\\x3d\\x67\\x24\\xc8\\xeb\\x3c\\xda\\x7b\\xcc\\x1c\\x22\\x63\\xe8\\x31\\xcc\\x82\\x11\\xe1\\x81\\x51\\x74\\xdc\\x2f\\x57\\xf5\\x71\\x3b\\x89\\x0e\\x3c\\xbf\\x30\\x31\\xd7\\x86\\xe2\\xaf\\x04\\x78\\xc1\\xef\\x99\\xfe\\xe8\\x76\\x53\\x3e\\xaf\\x0f\\xab\\x49\\x13\\xb8\\xa0\\x50\\x5c\\x09\\x97\\x6a\\xeb\\x2a\\xeb\\x9d\\x15\\x3e\\x57\\x56\\x1b\\x2b\\x42\\xaa\\x0c\\x09\\x64\\x5a\\xe7\\x4a\\x25\\xd6\\x9c\\xe8\\x98\\x9a\\x08\\x30\\x74\\x5f\\xc3\\xe4\\x46\\x53\\x27\\xb9\\x82\\xc6\\x6a\\x01\\x3e\\xdd\\x21\\x11\\x5a\\x2c\\x82\\x2e\\x08\\xff\\xf2\\xde\\x03\\x3f\\x6e\\x63\\x14\\x4d\\xe6\\x5c\\x9e\\x0f\\x90\\x3e\\xa5\\x56\\x49\\xc4\\x92\\xbe\\x46\\x5b\\xff\\xf2\\x9e\\x3a\\x50\\x11\\x37\\x55\\xe5\\x4c\\x6b\\x46\\x30\\x95\\xb5\\x36\\x8a\\xa8\\xab\\x98\\x81\\xc5\\x63\\x5c\\x95\\xa2\\x85\\x79\\x52\\xea\\x14\\x37\\x12\\x28\\x0c\\x16\\x8a\\x02\\x27\\x68\\x55\\x71\\xcc\\x00\\x20\\xa5\\x1b\\xcc\\xac\\x3e\\x08\\xed\\xa8\\x3b\\x02\\x70\\xa8\\x16\\xb5\\xc5\\xee\\xef\\xc0\\x52\\xd0\\x63\\xe0\\xd3\\x7c\\x10\\x65\\xd3\\x09\\x7c\\xa2\\x1d\\xe0\\x6a\\x8d\\xd0\\x31\\x34\\xb4\\x8f\\xe8\\x8d\\x0e\\xc8\\xa6\\xa5\\x68\\x3f\\xdb\\x48\\x6a\\x52\\xcc\\x54\\xf1\\x3a\\x68\\x74\\x25\\x6a\\xc5\\x7a\\x23\\x34\\xf4\\xe5\\xbd\\x51\\xc4\\x10\\xa4\\x06\\x3a\\x91\\x46\\x46\\xb4\\xb3\\xb6\\x91\\x38\\xa9\\xe4\\x90\\xd0\\xdb\\x7a\\xea\\x02\\x66\\xaf\\xa0\\x05\\x20\\xf6\\xee\\xb6\\xec\\xc3\\x7d\\xb8\\x5c\\x35\\xc7\\x8b\\x8e\\xe5\\xc2\\x41\\x8d\\xeb\\x72\\x4d\\xbc\\x23\\xf4\\x01\\x3c\\x4e\\xe9\\xaf\\x95\\xe5\\xb7\\xec\\x0b\\x70\\x36\\x46\\xd6\\x6d\\xbb\\x93\\x3e\\x01\\x5f\\x67\\x62\\xa6\\x09\\xd6\\x74\\x3a\\x90\\xf9\\x10\\x99\\x1b\\x59\\x36\\xc1\\x1d\\xce\\x24\\x41\\xe3\\x47\\xce\\x84\\xa5\\x90\\x5e\\xde\\xeb\\xd4\\x41\\x64\\x5b\\xe8\\x26\\x91\\xc5\\xfb\\x42\\x89\\xb6\\x98\\xd1\\xa2\\x25\\x51\\x8a\\xee\\x68\\xd1\\x0a\\xe9\\xd6\\xbb\\xcd\\x6a\\x57\\xaf\\x2f\\x69\\xda\\x5f\\x18\\xd3\\x15\\x59\\xe0\\x7c\\x6e\\x18\\xd9\\xbc\\xa1\\x7f\\x43\\xc3\\x45\\xc0\\x3b\\xcf\\x0d\\xb4\\x2a\\xa1\\xe1\\x0c\\xbe\\x71\\x30\\xab\\x5c\\xef\\x90\\xd0\\x51\\x3c\\x74\\x1d\\x32\\xa0\\x1c\\x87\\x6b\\x1d\\xe2\\xd2\\xd0\\x21\\x76\\xd2\\x21\\x8f\\xa5\\x3d\\xbd\\xd1\\x21\\x8b\\xcb\\x1c\\xa8\\x8f\\x91\\xf2\\xe3\\x61\\xbf\\x9b\\x19\\x9c\\xa5\\xb8\\x4f\\x63\\xe8\\x42\\xee\\x92\\x4a\\xd8\\x20\\xa2\\x16\\x45\\x73\\xe5\\x5d\\xcb\\x8d\\x2c\\xa3\\xd4\\xbb\\x93\\x31\\x8e\\x13\\x1c\\x82\\x35\\xf0\\xda\\xcc\\x8f\\xbb\\x61\\x59\\xbd\\x90\\xd9\\x7d\\xaf\\xbe\\x2f\\x7a\\x48\\x4e\\x44\\xa6\\x02\\x9c\\xb7\\x39\\x25\\x1c\\x49\\x9a\\xb3\\xb4\\xc8\\x33\\x19\\xfa\\x38\\xa9\\x59\\xb1\\xb8\\xcd\\x3c\\xd5\\x8e\\x6e\\x5e\\xb4\\x93\\x0d\\xa0\\x3d\\x5b\\xf5\\x79\\xf3\\x22\\xb9\\x5d\\x85\\xe2\\x66\\x8e\\x7a\\x3d\\x42\\xeb\\xc3\\x34\\x4c\\x67\\x52\\x3a\\x70\\xe0\\xc9\\xf5\\x04\\xeb\\xa2\\xfb\\xda\\x61\\x80\\x20\\xf5\\x81\\x9b\\x50\\xad\\xed\\xf5\\x09\\xa2\\x77\\x47\\xff\\x1d\\x91\\xfd\\xdb\\xc9\\xb5\\x3f\\x93\\xde\\x46\\xa5\\x03\\xef\\x53\\x12\\xdb\\x8d\\xb4\\x58\\xd0\\xcf\\x75\\x48\\xdd\\x43\\xb1\\x75\\x7a\\xb8\\x7b\\x04\\xe0\\xed\\xf4\\x1c\\xae\\x77\\x97\\x25\\xf2\\xec\\x25\\x65\\x65\\xb8\\x28\\xce\\x9c\\x31\\x17\\x09\\x1b\\xb1\\xe7\\xe8\\xa8\\xae\\x05\\x75\\x42\\x17\\x32\\x27\\xfc\\x1b\\x35\\x43\\x43\\xc3\\x4a\\xf4\\x09\\x2e\\xfe\\x62\\x93\\xe6\\x70\\xb0\\xa0\\xef\\x37\\x73\\xc8\\xae\\x77\\xc8\\xbd\\xab\\xd7\\x53\\x4a\\x73\\xc1\\x10\\x7d\\x09\\x60\\x7c\\x06\\xb6\\x8f\\x13\\x60\\xfc\\xf8\\x6a\\x60\\xfc\\xc8\\xc0\\xf8\\xdf\\x17\\x34\\xb5\\x5e\\x1d\\x9e\\x96\\x9f\\xb6\\x1f\\x8f\\xf5\\x34\\x93\\xe9\\x59\\xf9\\x90\\x5d\\xb7\\xcb\\xf6\\xa6\\x55\\x6e\\x5c\\x97\\x84\\x82\\xbe\\xed\\x6b\\x69\\x5c\\xa5\\x00\\x72\\x69\\xaa\\x60\\x90\\x11\\x29\\x55\\x56\\xa7\\x28\\x82\\xaf\\x94\\xa6\\x8d\\x20\\x1a\\xc1\\xa6\\xc9\\x2a\\x24\\x12\\x28\\xad\\xa9\\x72\\x42\\x0e\\xd2\\x58\\xe5\\x40\\x1c\\x50\\xf0\\x95\\x8d\\xd4\\xf5\\xd1\\x14\\x60\\x44\\x2f\\x8c\\xa7\\x4f\\x05\\x98\\x60\\x33\\xbb\\x12\\xda\\x2e\\x49\\x76\\xa7\\x95\\xb5\\x45\\xe7\\x6b\\xfb\\xf0\\x42\\x33\\x06\\x56\\x19\\xe9\\xdd\\xdb\\x4e\\x9d\\x23\\xa6\\x79\\x7c\\xda\\x5e\\x61\\x0f\\x4c\\x01\\xb8\\x99\\x9a\\xb8\\x78\\xd3\\x4b\\x30\\x11\\x69\\xdd\\x72\\x67\\xfb\\x19\\xad\\x38\\xd6\\xf5\\x5a\\xd1\\x34\\xb7\\x9f\\x5d\\x2a\\x63\\xf9\\x11\\x46\\xe6\\xee\\x27\\x82\\x8b\\xb5\\x34\\x22\\x22\\x3a\\x9d\\x59\\x48\\x7d\\xa1\\x2b\\xab\\x61\\x3b\\x75\\x1c\\xb1\\xee\\x01\\xc0\\xdd\\x20\\x76\\xdd\\xd3\\x41\\x63\\xce\\xe8\\x48\\xdc\\x9b\\x41\\x4a\\x25\\x93\\x16\\x57\\xac\\xa6\\xb0\\x69\\x49\\xfe\\x10\\x6c\\x64\\xb7\\xad\\x2b\\x18\\x47\\x9f\\xd7\\x9f\\x3f\\xac\\x0f\\xed\\x66\\xfb\\xe5\\x7c\\x84\\x8d\\xaf\\x0c\\x63\\x2c\\xb3\\x44\\xc4\\x7d\\x3a\\xed\\xed\\xa2\\xf7\\xb7\\x65\\x41\\xb2\\x93\\x5c\\xe9\\x3d\\x91\\xd3\\xc0\\x34\\x58\\x7f\\x8d\\xc8\\x09\\xb9\\x54\\xd9\\xb0\\x8d\\x18\\x3e\\x64\\x56\\x39\\x69\\x85\\x3c\\xe1\\x57\\xe8\\xef\\x07\\xfa\\x3f\\x9a\\x52\\x1d\\x0d\\x3d\\x1e\\x56\\xa7\\xb3\\xa5\\x64\\x54\\x7a\\x39\\xbd\\x82\\x1b\\x1b\\x57\\x38\\xc2\\x79\\x74\\x4e\\x97\\x1f\\x9e\\x06\\xac\\x1e\\x2d\\x6b\\xf3\\xe0\\xcb\\xf2\\x1b\\x0f\\x4b\\xec\\x92\\x83\\xed\\xb9\\x8b\\xc5\\xd7\\x34\\xb4\\xf8\\xbb\\x96\\x7b\\xaa\\x04\\xfb\\xe3\\x91\\x3b\\x84\\x6c\\xb7\\xbb\\xfd\\x84\\x86\\x5c\\x30\\xa4\\x0d\\x33\\xaa\\x87\\x00\\xe9\\x90\\x3d\\xda\\x01\\x0b\\x44\\x14\\xf8\\x8f\\x11\\x24\\x48\\xdb\\x43\\x81\\x30\\x00\\x9c\\x85\\x16\\x31\\xbd\\xf1\\x2d\\xc8\\xc6\\x6d\\xdc\\x1b\\xdf\\xa2\\x59\\x4c\\xbb\\xf3\\x96\\xc5\\x23\\xaf\\x79\\x7b\\x93\\x7e\\x0f\\x59\\x7d\\xeb\\x55\\x3b\\xe5\\xc8\\xdb\\x41\\xef\\x42\\xab\\x46\\xad\\x91\\x50\\xcb\\x30\\x38\\xad\\xe7\\x1f\\xc8\\x2d\\x85\\x91\\x08\\xe1\\x64\\x94\\x10\\xa8\\xac\\x26\\x30\\x9d\\x1a\\x6d\\xeb\\x44\\xd5\\xd4\\x5e\\x01\\xe0\\x1c\\x47\\x4e\\x6f\\x07\\x59\\x9c\\x93\\xb6\\x8c\\x05\\xce\\x13\\x5b\\x1d\\x41\\xdb\\xcb\\xb5\\x12\\x73\\x34\\x7c\\xbb\\x0a\\xa5\\xcb\\x8f\\xed\\x32\\x47\\x99\\x75\\x6a\\x19\\x09\\x9b\\xdc\\xe2\\x5b\\xd4\\x28\\xed\\x71\\x16\\xf6\\xfa\\xfc\\x42\\xaf\\x11\\xfa\\xd5\\x6b\\x7d\\x25\\xf5\\xf5\\xdb\\x3a\\x0f\\x86\\xb6\\x60\\x39\\x31\\xb5\\xd4\\xd0\\xbc\\x47\\x91\\x1c\\x8c\\x6d\\x1a\\xd9\\xcb\\x62\\x22\\x46\\xed\\x64\\xfd\\xa6\\xb3\\x94\\x5f\\xed\\xee\\xc5\\x5b\\xfb\\xfb\\x66\\x17\\xc0\\x9a\\xbb\\xfc\\xb8\\xaf\\x9f\\xdb\\x65\\x7b\\x3c\\xec\\xa7\\x2a\\xd5\\xb9\\xab\\x43\\xc8\\xaf\\x8a\\xa7\\xc4\\xe6\\xfd\\x62\\x4d\\x9d\\xcd\\x1f\\x79\\x82\\x49\\xf6\\xf6\\x74\\x4d\\xa0\\x69\\x97\\xaa\\xb6\\x3c\\x50\\xfc\\x0a\\x46\\x57\\x67\\xd2\\x6e\\x16\\x7f\\x98\\xee\\x7e\\x78\\x06\\x24\\x3f\\x2a\\x9f\\x9d\\xeb\\xa8\\xf6\\xcb\\x2b\\x1c\\x3b\\x17\\x37\\x3c\\x3b\\x1f\\xa6\\xef\\xd7\\xf5\\xea\\xa7\\x6b\\xd4\\xe5\\x6b\\xbd\\x64\\x49\\xa3\\xa1\\x23\\x54\\xd7\\xde\\x69\\x1a\\x3d\\x96\\x2c\\x07\\x72\\xb7\\x7d\\xeb\\x8a\\xe8\\xfb\\xab\\x38\\xad\\x7e\\xc7\\x7e\\x5e\\xfc\\x76\\x1d\\x7d\\xb3\\x87\\x36\\xab\\xdd\\xa7\\xf5\\x72\\xb3\\x6d\\x8f\\xfb\\xc3\\x38\\x7f\\xe5\\xf9\\x85\\x21\\x57\\xa0\\x89\\x0d\\x24\\x1d\\xcb\\x8e\\x1d\\x5d\\x66\\x70\\x17\\x1a\\xa9\\x2d\\x34\\x9e\\x69\\x63\\xee\\xd9\\x54\\x36\\xab\\xe3\\xf4\\x63\\xc7\\xb1\\xf5\\xdb\\x69\\xb0\\x46\\xc8\\xae\\x4f\\xdb\\x90\\x2f\\x9e\\x65\\xc4\\x8d\\xb9\\x91\\x2b\\x0b\\x9c\\x55\\x0a\\xa4\\x53\\x77\\x67\\xf7\\xe4\\x88\\x0d\\x7d\\x9d\\xee\\xca\\xe4\\xdc\\xe7\\xe2\\x23\\x9e\\xec\\x42\\x5d\\x75\\x97\\xbf\\xdc\\xac\\x8e\\x4b\\x76\\x28\\x3c\\x6b\\x63\\x5f\\xda\\xf3\\x97\\x7f\\xe7\\xfa\\x2d\\xf7\\xcf\\xc7\\x66\\xbb\\xbb\\x52\\xcf\\xe1\\x6a\\x5f\\x5f\\xa2\\xbc\\xf1\\xa1\\xf0\\xb5\\x25\\x05\\x03\\x38\\x85\\xfc\\xf7\\x24\\xf8\\x7a\\x92\\x96\\xa5\\x9c\\xf7\\x06\\x4b\\x1d\\x62\\x63\\x0c\\x71\\x80\\x83\\x13\\x9e\\x81\\x72\\xde\\x87\\x33\\x64\\xff\\xfb\\xdf\\x59\\x7e\\xd8\\xff\\x7c\\xfe\\x2d\\x2e\\x9b\\xa6\\x78\\x1e\\x27\\xb9\\xd1\\xf7\\x92\\xdc\\xd0\\x82\\xe1\\x6e\\x6e\\xec\\xb7\\xfd\\x74\\x66\\xf8\\xb8\\x91\\x7f\\xe9\\x7d\\x3e\\xae\\x6b\\x44\\xd7\\xe3\\xcb\\x0f\\xcd\\x6a\\x77\\x41\\xd2\\xb9\\x3b\\xfa\\xfd\\xf0\\x7b\\xf0\\xa2\\xfc\\x21\\xe5\\xa7\\x31\\xfe\\x77\\xdd\\xea\\xb8\\xf2\\xf5\\xf6\\x50\\x9f\\xcd\\xc8\\x71\\xf1\\xb7\\xf5\\xde\\x77\\x56\\x0e\\x6d\\xd6\\xa7\\xc3\\x7e\\x77\\x0e\\x83\\x31\\x2d\\x2e\\x01\\xbc\\x59\\x58\\xef\\xfa\\x74\\x16\\xa3\\xac\\x16\\x6c\\x9c\\x66\\x37\\xa5\\xa6\\x1c\\x1f\\xfa\\xea\\x39\\x90\\xc1\\x59\\x79\\x4f\\x40\\x9b\\x5c\\x33\\x18\\xe3\\xcf\\xcd\\xf2\\x39\\x09\\xaa\\x08\\x0e\\x77\\x3e\\xbb\\x6d\\x9e\\x96\\xf5\\xea\\x30\\xed\\xb3\\xa1\\xb0\\x77\\x0a\\x30\\x1a\\xc9\\xae\\xd9\\xc5\\x89\\xb6\\x72\\xcf\\xc1\\x87\\x88\\xce\\x83\\x4b\\xb0\\x82\\x83\\x50\\x0e\\xa2\\x4b\\x54\\xaf\\x55\\xac\\x43\\xaa\\x94\\x42\\xbf\\x69\\xe3\\x2b\\x63\\x8d\\x70\\xae\\x4a\\x0c\\xef\\x07\\xd7\\xc5\\x82\\x96\\x2c\\x35\\x5c\\x36\\xee\\x70\\x24\\xb5\\xe4\\xc8\\x47\\xb8\\x2c\\xe3\\x7e\\xa9\\x63\\x15\\x83\\xb3\\x22\\x98\\x4a\\x47\\x97\\x85\\x8c\\xae\\xca\\x39\\x9a\\xc2\\xc5\\x96\\x8f\\xc8\\xa1\\x1e\\xb2\\xab\\x88\\xec\\x6a\\x82\\xbb\\x24\\x6e\\x2b\\xaf\\xc7\\xdb\\xf5\\x62\\x34\\x71\\xae\\xb2\\x41\\xa5\\xfe\\xf0\\x53\\xa9\\xbb\\xca\\xc8\\xae\\x36\\x5d\\x65\\x98\\x9d\\x2e\\x9f\\x79\\x79\\xef\\x52\\x16\\xc6\\x19\\xe4\\xfe\\x85\\xbb\\x56\\xe2\\x0c\\x99\\xf4\\x17\\x68\\xbe\\xa6\\xca\\x84\\x88\\xc2\\x4a\\x2b\\xef\\x89\\xad\\xaf\\x92\\x85\\x47\\x1c\\xfc\\x4f\\x38\\x1c\\x52\\xd5\\x32\\xa6\\x2a\\x25\\xf6\\xd0\\xd1\\xce\\x57\\xde\\x18\\xe1\\x55\\xa5\\x5c\\x82\\xbf\\x9d\\x15\\xb8\\xc9\\xc2\\x9b\\xcb\\x7b\\x24\\xb0\\x0a\\x4a\\xd0\\x27\\xd8\\x89\\x0d\\x5e\\x5e\\x42\\xbb\\x96\\x33\\xdb\\x0b\\xed\\x16\\x35\\x32\\xcc\\x9b\\x4c\\xd2\\x00\\xdf\\xab\\xb5\\x30\\x8e\\x3a\\x17\\x7e\\x6c\\x22\\x98\\xda\\x3a\\x61\\x95\\x88\\x09\\x96\\x30\\xda\\x90\\x52\\x9d\\x54\\x65\\xb2\\x41\\x2e\\x4e\\x5f\\x69\\x05\\x13\\x7f\\xa5\\x1d\\xed\\x66\\x96\\xeb\\x6a\\xe1\\xc0\\xe4\\x91\\x7a\\x0b\\x5e\\x7d\\xf4\\x6a\\xa8\\xee\\xe0\\xd8\\x44\\x0d\\x68\\x65\\xa7\\x6f\\xa4\\xb3\\x97\\xf7\\x3a\\x06\\xc0\\x61\\x2a\\x78\\x3b\\x1b\\x01\\x44\\x62\\x61\\x62\\x0b\\x57\\x34\\x53\\xb2\\xff\\xc2\\x7b\\x07\\xa8\\xda\\xdd\\x39\\x54\\xfe\\x05\\xc0\\xf8\\xe5\\xbd\\x49\\x76\\xf4\\x16\\xa4\\xd1\\x46\\x72\\xe3\\xd6\\xb0\\xe3\\x12\\x9e\\x8c\\x8b\\x56\\x96\\x67\\xca\\x5f\\x4b\\xaf\\x43\\x11\\xdd\\xfc\\xc0\\x34\\xfa\\x78\\xd8\\xae\\x77\\x4f\\xcd\\x2f\\x17\\x53\\x69\\xb8\\xd0\\xeb\\xd0\\x93\\x7f\\xab\\x9e\\x24\\xea\\xb7\\xbf\\xc4\\x41\\x03\\x6a\\x6b\\x20\\x93\\x3b\\x61\\x38\\x55\\x36\\xd2\\xb7\\x73\\xd6\\x76\\xcd\\xa9\\x74\\xa2\\xeb\\xfe\\x6a\\x9a\\xfb\\x1c\\xe2\\x40\\x83\\x36\\x72\\xbe\\x7e\\xe7\\x79\\x28\\x07\\xce\\x91\\x43\\xcb\\x42\\xc4\\xf2\\xb0\\x18\\x65\\xe1\\xc6\\x8b\\xbc\\x88\\x60\\x3e\\x92\\xd0\\x41\\x78\\x2b\\x6c\\x16\\x21\\xd0\\xc3\\x11\\xa9\\xd5\\xb3\\x2b\\x87\\x8d\\x74\\xf0\\x73\\x8c\\xae\\xe9\\x92\\x34\\x72\\x96\\x1f\\x64\\x79\\x2b\\xe9\\xbc\\x39\\x1f\\x9b\\x2b\\x88\\x4f\\x21\\x0f\\x19\\x6c\\x68\\x0b\\x29\\x9e\\xa6\\x8a\\x59\\x59\\x1d\\xef\\xf1\\x1d\\x87\\xfd\\xe7\\xf5\\xf2\\xb0\\x5e\\x3d\\xad\\x0f\\xe7\\x9e\\xf1\\x73\\x17\\x27\\x3e\\x24\\x00\\xa3\\x84\\xc0\\x40\\xbf\\x86\\x90\\x7f\\x13\\xaf\\x24\\xd6\\xbb\\x1a\\xc5\\x74\\xd5\\x8b\\x24\\xce\\xc4\\x1e\\xb1\\x26\\x21\\x46\\x61\\x94\\xdd\\x68\\x0f\\x6b\\x13\\x4c\\x77\\x27\\xdb\\xa1\\xe9\\xa8\\x3c\\x7f\\x81\\x18\\xcc\\xf3\\x0b\\x37\\xe9\\xd3\\xac\\x26\\x3e\\xf3\\xe5\\xfc\\x0f\\x05\\x79\\x7a\\x8e\\x8c\\x38\\x86\\x44\\x84\\x46\\x25\\x7a\\x66\\x55\\xe9\\x9f\\xde\\x63\\x6c\\xb4\\xa1\\x8f\\x13\\x55\\xf5\\x97\\xae\\x67\\xb0\\x9a\\xbc\\xea\\xae\\xef\\x19\\x55\\xe6\\x0c\\x52\\x74\\x54\\xd6\\xdb\\xde\\xe1\\x7a\\x9f\\xf3\\xa9\\x63\\xeb\\x4f\\x53\\x98\\x8d\\xf1\\xa5\\x82\\xc3\\xc9\\xe0\\x19\\xe0\\xe6\\x40\\xd2\\x7b\\x3c\\x41\\xb3\\x6f\\x27\\x83\\x9f\\xcf\\x7f\\x2f\\x54\\xda\\xb7\\x6b\\x62\\x4e\\xbe\\x9c\\xbb\\x78\\x9d\\x5d\\x18\\x82\\x07\\x63\\x3c\\xc1\\x5d\\x98\\x7d\\x70\\x8b\\x0b\\xae\\xd1\\x6c\\xbc\\xee\\xb1\\x9a\\x07\\x68\\xe2\\x93\\x4c\\x5d\\xe0\\x4a\\x0f\\x4e\\x0c\\xab\\x4f\\x70\\xbd\\x27\\x6e\\x31\\x7c\\x9d\\x8c\\xd9\\xd0\\x30\\x97\\x5a\\x17\\x6d\\x5f\\x49\\x8b\\xbc\\xb1\\x66\\x40\\x72\\xed\\xbf\\xde\\x23\\x10\\x9f\\x7f\\x5e\\x8f\\xbc\\x83\\x47\\x9f\\x1f\\x9b\\xdb\\x86\\xaf\\xf7\\xa6\\xdf\\x5b\\x5f\\x5f\\x14\\x3e\\xfe\\xda\\x02\\x34\\x48\\x8a\\xf3\\x02\\xc3\\x8c\\xd0\\x73\\xe6\\xe7\\xf3\\x98\\xd0\\xd3\\xec\\x9f\\x9f\\xa6\\xbd\\xf4\\x3c\\xf8\\x72\\xfe\\x61\\x52\\x86\\xa3\\xda\\x33\\xc2\\xcd\\xa4\\xb8\\x37\\xc8\\xe8\\xa8\\x6b\\xa8\\x75\\xbd\\x25\\xc6\\x09\\xbe\\xcd\\xad\\xe4\\x5f\\xec\\xe9\\xbc\\x91\\xd8\\xcc\\x4a\\x30\\x26\\x47\\x4b\\x88\\x14\\x6a\\xe9\\xe0\\x13\\x1e\\x4b\\xb2\\xe0\\x64\\x4a\\x7e\\x3f\\xa1\\x6b\\x09\\xed\\xeb\\x59\\x3a\\xe4\\xb6\\xfc\\x2c\\xda\\x58\\x9d\\xbe\\x7b\\xfe\\x51\\x26\\xc1\\xd3\\x7e\\x77\\x49\\x17\\x2e\\x9c\\x8a\\x7c\\x9c\\xdd\\x70\\xc8\\x4a\\xcb\\x50\\xe2\\xaa\\x91\\xce\\x09\\xe7\\x46\\x02\\xfb\\x1f\\x6d\\x6c\\x3c\\xed\\xbf\\xee\\x9a\\xfd\\xea\\x62\\xac\\x8f\\x2e\\xf4\\xbc\\x1f\\xf4\\xfb\\xc1\\xb1\\x8e\\x32\\x9c\\x4a\\xa4\\x4c\\x33\\xb8\\x87\\xfd\\xe1\\x5a\\x3f\\xcd\\x9d\\x34\\x2a\\x2b\\xe2\\x23\\x1c\\x38\\x37\\xd2\\xc6\\x5a\\x42\\x59\\x0c\\x4d\\x14\\x71\\x72\\x1c\\x5e\\xdd\\xf6\\xaa\\x61\\x84\\x0d\\x19\\x55\\x20\\x05\\x87\\x3c\\x3d\\x08\\x23\\xf0\\xb1\\x29\\xac\\x39\\xe7\\xf9\\x04\\x7b\\xa0\\x6e\\x34\\x19\\xd2\\x86\\x36\\xf4\\x07\\xe7\\xce\\xfb\\x94\\x05\\x47\\x59\\x5c\\x11\\x1d\\xd5\\x86\\x43\\xa1\\xac\\xae\\x41\\x38\\xe2\\x61\\x89\\x7d\\xb6\\xc2\\xcf\\x65\\x2b\\xc7\\x6a\\xac\\xf5\\xa2\\xe6\\x70\\x2a\\x5a\\x0a\\x10\\x1b\\xa1\\x23\\xfd\\xa8\\xa5\\xe1\\x88\\x0f\\x38\\xbb\\x22\\x90\\x52\\xdb\\x86\\x73\\x59\\xd6\\x54\\xc9\\x20\\x3c\\x98\\xef\\x14\\x84\\xf1\\xdf\\xdc\\x17\\xff\\xfa\\xbc\\x7e\\xbe\\x9c\\x8c\\xa5\\x74\\xb0\\xac\\x8c\\xec\\x39\\x9d\\xcb\\x44\\x3b\\xd7\\x98\\x6b\\x6d\\xf1\\xd8\\x21\\x88\\x74\\xa0\\x19\\xad\\x25\\x34\\x8e\\xb5\\x7f\\xac\\x8b\\xe3\\xf7\\x1a\\xe6\\x8b\\x5f\\x73\\x9c\\x3f\\x7f\\x99\\x9d\\xe3\\x5d\\xf1\\x38\\xa3\\x27\\xc2\\xef\\x8a\\x53\\x68\\xd3\\xfb\\x82\\x6e\\x82\\xa3\\xfd\\x7d\\x93\\xc2\\x09\\x51\\x8c\\x7f\\xa0\\x89\\x7e\\x26\\x11\\x0d\\x32\\x90\\x85\\x33\\x4d\\x6a\\x72\\x66\\xa5\\x13\\x0e\\x85\\xb5\\xbb\\xd0\\x50\\xb1\\x6b\\x35\\xdd\\x7e\\x4d\\x4d\\xd6\\x6b\\x8f\\x89\\x0e\\xf7\\xd8\\x8b\\x7d\\xd3\\xac\\xe1\\xd3\\x3f\\x11\\x4d\\xc6\\xa5\\x1d\\x96\\x59\\x87\\x63\\x47\\x0b\\x11\\xf3\\xc8\\x60\\x85\\xf3\\xac\\xef\\x1d\\x78\\x67\\xb0\\x6f\\x9e\\xb1\\x1f\\x30\\x66\\x3d\\xc3\\x42\\xa0\\x43\\x03\\x09\\xb3\\x99\\xe3\\x9f\\x39\\xfd\\xf8\\xbc\\xda\\x7d\\x22\\xbe\\xcc\\x30\\x53\\x67\\xe2\\xcb\\x35\\xb5\\xfe\\xa3\\x54\\x58\\xce\\x64\\x75\\x98\\xbf\\x3c\\x78\\xdf\\xf8\\xd0\\x8b\\x69\\x23\\x09\\xee\\xdb\\x2d\\x0d\\xaf\\x6c\\x32\\xc0\\x16\\x60\\x32\\x7f\\xb4\\x6b\\xee\\x61\\xc2\\x02\\xca\\x7c\\xd9\\xac\\xcf\\x07\\x45\\x5f\\xc8\\xc3\\x36\\x32\\xc0\\xdd\\x1b\\x5d\\x67\\x54\\x86\\x0d\\xf4\\x8d\\xae\\x33\\xca\\xfe\\x0a\\x6f\\xd1\\x36\\x3f\\xd0\\xa2\\xbb\\xae\\x33\\x60\\x20\\x5d\\xaa\\xb5\\x42\\x06\\x98\\x6c\\x10\\xbd\\xcb\\x2e\\x08\\x3c\\xd2\\x87\\x65\\x29\\x0c\\x6e\\xee\\xbc\\xbd\\xf7\\xf9\\xec\\x46\\x1f\\xe0\\x48\\x41\\x8b\\xf0\\xba\\x04\\xd7\\x41\\xe8\\x5c\\x19\\xdd\\x04\\xa2\\x4e\\x12\\x67\\x09\\x8b\\x6a\\xc9\\x5f\\x87\\xd3\\x03\\xf1\\xc7\\xc5\\x58\\xd0\\x16\\x67\\x88\\xf2\\x77\\x7f\\x18\\x6c\\x5f\\xd6\\xe7\\x83\\x00\\x45\\x45\\x9c\\x86\\xf6\\xa6\\xd1\\x91\\x98\\x76\\xd3\\x48\\xa7\\x05\\x72\\x84\\x40\\x63\\x1b\\x0d\\x63\\xde\\xdb\\x6c\\x18\\x8d\\x85\\xc5\\xb1\\xb2\\x3a\\x85\\x28\\x64\\x88\\x0d\\x43\\x2f\\x0c\\x8b\\x59\\xc7\\xd8\\x32\\x56\\x0b\\x9c\\x37\\xf5\\x49\\x2b\\xdd\\xe8\\x4c\\xb4\\xec\\x59\\xdf\\x82\\x6a\\xc1\\x4f\\x87\\x28\\x42\\x3c\\xc3\\x71\\xb9\\xdd\\xb2\\xcf\\x9f\\xd7\\x53\\x3f\\xfd\\xae\\xe4\\xb6\\x7d\\xb7\\x93\\x87\\xe7\\x2f\\x14\\xc3\\xef\\xe4\\x02\\xf0\\x1d\\x4c\\x04\\xfe\\x67\\xc3\\x1b\\xf8\\xf9\\xdc\\xbc\\x12\\x0a\\x32\\x32\\x2c\\xce\\x2c\\x21\\xf7\\xda\\xf7\\xe5\\xcc\\x24\\xd1\\x95\\xbc\\xc5\\x14\\xa6\\x55\\x38\\xe9\\x6c\\x1a\\x1e\\xb6\\x5d\\x0a\\x99\\xe2\\xca\\xae\\x55\\x17\\xc5\\x6f\\xd2\\x89\\xb7\\xac\\x72\\xdb\\x70\\xc9\\xb9\\xd4\\x83\\x88\\x46\\xd5\\x61\\x43\\x60\\xb3\\x7e\\xd8\\xc4\\x46\\x2f\\x7b\\xa0\\xed\\xcb\\xd5\\xe1\\xb0\\xff\\xda\\x5e\\x92\\xa0\\xbf\\x30\\xc6\\x90\\x2d\\x3d\\x03\\x7c\\x23\\x0f\\xdf\\x23\\x84\\x42\\xc2\\x89\\x92\\x7e\\x84\\x92\\xce\\x95\\xba\\x98\\x61\\x90\\x18\\x15\\x80\\xed\\xc1\\xc4\\xeb\\x41\\x7b\\x64\\x36\\x77\\x63\\x11\\xf7\\x9f\\xbf\\x9c\\xe1\\x8a\\x0f\\x45\\xa8\\x51\\xbf\\x98\\x6b\\x38\\xaa\\x32\\x2c\\xc6\\xe0\\xb1\\x69\\x52\\xef\\x4f\\xe1\\xb5\\x61\\xff\\x8c\\xf9\\xb1\\xa4\\xed\\xa5\\xfb\\xfb\\x64\\x2c\\x8d\\xe3\\x18\\xb4\\x9d\\xdf\\x8e\\xee\\x34\\x66\\xf7\\x71\\x7b\\xf8\\xbc\\xa2\\xad\\x71\\xb9\\x7b\\xfe\\xfc\\xe1\\xac\\x5d\\x33\\x57\\xfb\\x7c\\xcd\\xd6\\xea\\x0b\\xe4\\x8e\\xd8\\xeb\\xda\\xce\\x8b\\xb5\\xcd\\xe7\\xc5\\x34\\xb1\\xa6\\xf3\\x68\\xa4\\xfb\\xec\\x63\\x38\\x4c\\xe7\\xd4\\xf2\\xda\\x20\\xa0\\xe4\\x7b\\x3f\\xd7\\x69\\xd8\\x88\\x1d\\xdd\\x31\\xc6\\x48\\xba\\xa4\\xef\\xc8\\x3d\\xf6\\x9e\\x0b\\xd2\\x7e\\x77\\x5c\\xd5\\xc7\\xe5\\xe7\\xd5\\xb6\\x99\\x52\\x70\\x54\\xcc\\x33\\x37\\x30\\xa2\\x11\\x7b\\xd3\\x47\\x55\\x20\\x72\\xa3\\x2a\\xa8\\x46\\x34\\x29\\xa1\\x19\\x81\\x38\\x41\\xbc\\x2c\\xd8\\xc3\\x10\\x0a\\x5a\\x9b\\x29\\x51\\x87\\x32\\x04\\x0e\\x6f\\x00\\x3a\\x4c\\xd4\\x8c\\x28\\x70\\x5f\\x45\\xd2\\x5e\\x15\\x77\\xca\\x52\\xf7\\xfa\\x55\\xc5\\x99\\xab\\xb3\\x7f\\xc6\\x61\\x11\\xbe\\x3c\\xce\\x25\\x04\\x59\\xa3\\x8a\\x40\\x37\\x74\\x60\\x6d\\x80\\xf5\\x23\\x9d\\xa5\\x03\\xbe\\x7a\\x6f\\x99\\x64\\xfa\\x7e\\xd9\\x9c\\xa9\\x5f\\xa6\\xe5\\x65\\x4b\\x60\\xff\\x3f\\xc9\\xa9\\x3d\\x13\\xac\\x37\\x89\\x46\\x05\\xa0\\x94\\x12\\x7a\\xdf\\x37\\xd6\\xc0\\x2b\\x1c\\xa3\\xa1\\xe6\\xa4\\xb8\\xb4\\x45\\xb1\\x60\\x82\\x7d\\x9f\\xa6\\x2b\\xe3\\x4c\\x48\\x06\\x77\\x90\\x81\\x8d\\xa2\\x2c\\x0a\\xc3\\x24\\x0a\\xc4\\x10\\x87\\xb0\\xc8\\xe0\\x04\\x3f\\x85\\x3c\\x31\\x2c\\xee\\xc2\\x65\\xdb\\x7f\\xa7\\x1e\\x5f\\x7c\\xdf\\x2e\\x9f\\xef\\xf1\\x07\\x7a\\xb1\\xbd\\xec\\xc0\\x76\\x1c\\x73\\xe3\\xf2\\x09\\x9c\\x14\\x49\\xdb\\x1c\\x70\\x27\\x4b\\xc4\\x9d\\xec\\x42\\xee\\x64\\x17\\x73\\x27\\xad\\x19\\x05\\xb9\\xc1\\xa0\\x0c\\x66\\xca\\x31\\x9e\\x1c\\x8e\\x2e\\xb5\\xe5\\x67\\x39\\x43\\x66\\x4e\\x81\\x73\\x24\\xf0\\xe4\\x62\\xe1\\x8a\\xe7\\xfc\\xa0\\x49\\xfe\\x6d\\x22\\x46\\xb1\\x45\\x24\\x2f\\x10\\x63\\x55\\x22\\x1d\\x16\\xa3\\x9d\\x03\\xe9\\x88\\xba\\x28\\x88\\x72\\xff\\x3d\\xb2\\xae\\x77\\xc7\\x65\\xbd\\xff\\xf2\\xcb\\x19\\x69\\x87\\xe2\\x71\\x8a\\x20\\x68\\xa8\\x8c\\xed\\xe4\\x10\\xeb\\x7a\\x4f\\x98\\x59\\x9b\\x15\\xad\\xdd\\xd7\\x34\\xe8\\xf6\\x5a\\x20\\x78\\x9e\\x91\\x80\\xe8\\x43\\x96\\x18\\xcf\\x5c\\xc0\\x0a\\xc0\\x7f\\x15\\x5c\\xa5\\xe1\\x99\\x49\\x14\\xd8\\x5d\\x81\\xb0\\x34\\xf2\\xf9\\x38\\xd7\\xf4\\xe7\\xe3\\x94\\x8f\\x82\\x52\\xc2\\xe8\\x0e\\x8e\\xc0\\xab\\xa6\\x83\\xc1\\x83\\x9f\\xa8\\xeb\\xd3\\x72\\x96\\x4c\\x98\\x6d\\x9f\\x5d\\x53\\x94\\x34\\x90\\x43\\x66\\xc8\\xb6\\xcb\\x08\\x39\\x24\\xa3\\x4c\\x03\\x01\\x3b\\xd3\\xc1\\x9c\\x9f\\xe9\\xe0\\x7c\\x75\\xee\\x67\\x0a\\xe7\\x43\\xa7\\xdf\\xf8\\x16\\xa3\\x82\\xb0\\x2e\\x2f\\x1a\\x43\\xb2\\xbb\\xe1\\x36\\x43\\xf1\\xda\\x61\\x47\\x34\\xb2\\xe4\\xad\\xe2\\x36\\x00\\x66\\x46\\x40\\xf1\\x38\\x8f\\x9c\\x78\\xdd\\xab\\xb5\\xd6\\x54\\x55\\x03\\x0f\\x0b\\xeb\\x85\\x8c\\x8d\\x57\\x82\\xe8\\x8a\\x43\\xdd\\x91\\xcc\\x00\\xb3\\x05\\x26\\xf3\\xb1\\x66\\x74\\xf6\\x95\\xed\\xc4\\xc1\\x16\\x52\\x93\\x65\\xc8\\x3e\\x57\\x5e\\xf2\\xd0\\x90\\xf8\\xb2\\x6a\\x8f\\xe7\\x7b\\xc5\\xa8\\xbc\\x1f\\x16\\xc9\\x9f\\x6c\\xc7\\xb1\\x04\\x8e\\xe0\\x05\\x9f\\x58\\xcc\\xb5\\xc5\\xa7\\xbc\\x98\\x1a\\xe6\\xcc\\x58\\x37\\x63\\xc5\\x3a\\x1b\\x5c\\x99\\x62\\xdf\\x60\\x16\\x9e\\x78\\xb5\\xdd\\x31\\x0b\\xa7\\x5c\\x13\\xd7\\x41\\x02\\xae\\xb3\\x22\\xd0\\x77\\x5a\\xaf\\xb1\\x64\\x06\\xf6\\x2d\\x48\\xf7\\xb8\\xde\\xdd\\xf1\\xb0\\x6f\\x96\\x5f\\xf6\\xdb\\xdd\\xf9\\x8c\\x1a\\x95\\xf7\\xee\\xbb\\xc9\\x0f\\x9e\\x08\\x03\\xd6\\x56\\x2b\\xcb\\x6f\\xd9\\x17\\xb0\\xab\\xc2\\x08\\x1a\\xab\\xed\\x4e\\xba\\x82\\xdf\\xc2\\x9e\\x33\\xa4\\xd9\\x61\\x4d\\xa4\\xec\\xb0\\xd5\\x52\\x40\\x07\\x27\\xc4\\x82\\x9d\\x80\\x6c\\x46\\x27\\x0f\\xac\\xb4\\x3d\\x15\\x96\\x4f\\xcf\\x5f\\x9a\\x6d\\xbd\\xba\\x18\\x64\\xb3\\x77\\xf4\\x32\\x8c\\x56\\xb1\\x4e\\xec\\x3d\\x94\\x45\\x28\\x50\\xf6\\x2e\\xb7\\xb2\\xfc\\x96\\x7d\\x01\\xe7\\xed\\x2c\\xa0\\xf6\\xf4\\x4f\\xdb\\x9d\\xf4\\x60\\x2a\\x1c\\xc5\\x38\\xd5\\x60\\x8c\\x82\\x28\\x5a\\xd9\\x29\\x14\\xe4\\x50\\x74\\x47\\xcf\\x30\\x64\\x43\\x90\\x00\\xc8\\x61\\xe8\\x4b\\x9a\\x8b\\xda\\x92\\x38\\x13\\x6a\\x19\\x1d\\x03\\x64\\x99\\x24\\x72\\x87\\xb3\\x9b\\x74\\xeb\\x9d\\xd0\\xb0\\x42\\xe0\\x94\\x6e\\x5d\\xd4\\x92\\x46\\x1f\\xf0\\xa3\\x3c\\x3b\\xb2\\x94\\x17\\x95\\xa8\\x64\\xa7\\x31\\xe7\\xba\\x68\\xb8\\xd0\\x45\\x93\\x98\\x53\\x89\\xb8\\x70\\x66\\x83\\xb8\\x8b\\xfb\\x3d\\xf3\\xe5\\x97\\x0b\\x87\\xc2\\xa1\\xec\\x8f\\x33\\x5e\\xbd\\x15\\x56\\xc7\\x5a\\x5a\\x55\\xc5\\xc0\\x8b\\x0d\\x00\\xa6\\x62\\x65\\x0c\\xf5\\x1a\\x9d\\xf8\\x74\\x92\\x6c\\xc3\\xa1\\x9b\\xb2\\x16\\xb9\\x32\\x9e\\xd8\\x5e\\xe9\\x93\\xe0\\x1b\\x16\\xb5\\x4e\\x55\\x8c\\x09\\xfa\\x31\\xda\\xc3\\x2a\\x17\\x8c\\xa3\\x9f\\x56\\x6d\\x2c\\xc3\\xa2\\xe5\\xca\\x1b\\x05\\x0d\\x7c\\xe5\\xe9\\x2d\\xd2\\xba\\xca\\xa8\\x0e\\xbc\\xd2\\xc1\\x66\\x5f\\xa5\\x6c\\xb1\\xc1\\x55\\xca\\xb3\\xcf\\x58\\x95\\x15\\x46\\x5f\\x12\\x92\\x57\\x96\\x5a\\x7a\\x57\\xf9\\xe4\\xc0\\x9f\\x26\\x23\\x6c\\xa8\\x54\\xa4\\x71\\x93\\x8c\\xc8\\xea\\x04\\x06\\xc8\\x57\\xc9\\x07\\x23\\x62\\x65\\x82\\x32\\x56\\xb8\\x5c\\x39\\xa7\\xb0\\x74\\x05\\x57\\x6b\\x5b\\xe9\\x9c\\xb5\\xd0\\xbe\\x52\\xc9\\x45\\x61\\x5d\\x65\\x9d\\x81\\xb3\\x5a\\xa0\\x7f\\x6b\\x63\\x2a\\x6d\\x03\\x70\\x7a\\x55\\x15\\x0c\\x35\\x34\\xd2\\x51\\x05\\x40\\xbf\\xe9\\xbc\\xa8\\xa9\\x82\\x0a\\x31\\x8d\\xe5\\x07\\x9a\\x11\\xab\\x9c\\x22\\xaf\\xcc\\x2e\\x6f\\x24\\xda\\x4d\\xe3\\x4f\\x64\\x21\\xad\\xa0\\xfe\\x70\\xf4\\x93\\x84\\xf5\\x5a\\xfa\\xca\\xe9\\x68\\x92\\xe8\\x8e\\x52\\xbb\\x2a\\xc4\\x50\\xf2\\x36\\x7b\\xa1\\xef\\x68\\xaa\\x0e\\xeb\\xb3\\xa5\\xa0\\x14\\xf4\\x58\\xc7\\x16\\x00\\x3f\\xf4\\xe9\\xdc\\x65\\x94\\xb4\\x59\\xd8\\xfc\\x68\\x46\\x49\\x78\\xbe\\xb8\\xc6\\xd8\\x20\\x8c\\x0d\\x4d\\x22\\x72\\xab\\x46\\x1a\\x44\\x49\\xd8\\x50\\xf2\\x4b\\x3e\\x50\\xc9\\xe5\\x6e\\xfd\\x75\\xf9\\x71\\xdf\\x4c\\x73\\x10\\xcf\\x5c\\x1b\\x72\\xfb\\x16\\x85\\x59\\x18\\xb6\\xc6\\x32\\x41\\x39\\xae\\x13\\xa7\\x3c\\x6b\\x21\\x6c\\xdc\\x8a\\x3f\\x2d\\x0a\\x8c\\xd7\\xc4\\x9f\\x32\\x17\\x3d\\x8d\\x3f\\xd5\\x26\\x15\\x64\\x4a\\xc4\\x6d\\xdc\\x69\\xf5\\xd3\\xf6\\xb8\\x3c\\x0f\\x81\\x1f\\x97\\x0e\\xb0\\x0a\\x45\\x99\\x78\\x11\\x81\\x5c\\x94\\x65\\x73\\x51\\xcb\\x10\\x18\\xe6\\x9a\\x5a\\x04\\x86\\xb7\\x36\\xf5\\xae\\x00\\x70\\x98\\x64\\xd2\\xe2\\xd3\\xde\\x8b\\x4a\\xbb\\xbc\\xe9\\xc2\\x86\\xcf\\xf7\\x3e\\xa3\\xdd\\xbc\\xe9\\x01\\xe9\\x4a\\x27\\x1b\\xe3\\x89\\x05\\x14\\x48\\x68\\xf9\\x22\\xad\\xe4\\xac\\xe9\\xa4\\xa4\\xa0\\xbc\\x5b\\xf7\\xa5\\x0e\\xcb\\x7c\\xd6\\x80\\x92\\xa1\\x87\\x93\\x6a\\xe0\\x24\\xff\\x69\\x6c\\xd4\\x65\\x3f\\xc7\\xe2\\xb9\\x4f\\xbf\\x7a\\x87\\xfe\\x01\\x47\\x64\\x2a\\xe5\\x9e\\x03\\x53\\x3c\\x82\\xa7\\x1e\\xd5\\x37\\x44\\xb1\\x52\\xed\\xed\\x24\\xb9\\x4f\\xdf\\x20\\xfb\\xa7\\x69\\x76\\x9f\\x62\\x9f\\xe6\\x18\\x18\\x0e\\x42\\xf0\\x61\\x14\\x9b\\xf0\\xad\\x3e\\x4d\\x77\\x6c\\x52\\xaf\\x6a\\x8a\\x9f\\xa4\\xc5\\xe9\\x9b\\xe2\\xff\\x34\\xcd\\x8b\\xd3\\x25\\xcb\\xc2\\xd0\\xe1\\xa6\\x68\\x37\\x09\\xb3\\x98\\x17\\x2e\\xb5\\x7b\\x2d\\xe7\\xcb\\x8f\\x9c\\x0b\\x97\\x8f\\x34\\x25\\x4e\\x92\\xd6\\xf4\\x4d\\x89\\x7f\\x9a\\x66\\xad\\x41\\x53\\x68\\x8c\\x9b\\x2e\\xfd\\x23\\xfd\\x1a\\x06\\x58\\xb0\\xf3\\x03\\xcc\\xbc\\x3a\\x34\\xa5\\xc0\\xb7\\x7f\\x43\\xaf\\x3c\\x6d\\x77\\xe7\\x4d\\x41\\xd1\\x24\\xa0\\x74\\x26\\x7f\\xe5\\xef\\x22\\xce\\x9b\\x6a\\xfb\\xf1\\xb0\\x5e\\x9f\\xb7\\x80\\xcb\\xee\\x1a\\x3e\\x66\\x03\\x1f\\xbf\\x21\\xb8\\xf2\\xf5\\x31\\xae\\x9c\\x74\\xed\\x56\\x40\\xe5\\xa8\\x76\\xf7\\x69\\xd0\\xac\\x76\\x4f\\x6d\\xbd\\xfa\\x72\\x41\\x88\\xd1\\x85\\x3f\\xcc\\xe4\\xda\\x1f\\xb6\\x9f\\xb6\\xbb\\x49\\x36\\xc0\\xb3\\xf2\\xe2\\x34\\x02\\x14\\xd3\\x26\\x22\\x0e\\x5c\\x43\\x87\\xd4\\xf8\\x24\\x62\\x68\\xe0\\xa4\\xa1\\x6f\\xa6\\x5f\\xfd\\xdd\\x0c\\xdf\\x2f\\xfb\\xc3\\xf1\\xb0\\x9a\\xa2\\x45\\x4e\\xcb\\x07\\x85\\x66\\xdf\\x14\\xed\\x4a\\x53\\x3a\\x90\\xb0\\xa1\\x29\\x0f\\xa3\\x55\\x4d\\xb7\\xec\\x07\\x80\\xa8\\xee\\x36\\xe5\\xb0\\x3f\\x9e\\x73\\xae\\xa3\\x52\\xe6\\x23\\x58\\xee\\xd9\\x74\\x06\\x53\\x39\\x49\\xb7\\xc8\\xa0\\x4f\\x73\\x9e\\xb4\\x7a\\xb0\\x1d\\xf6\\xff\\x72\\x34\\x2d\\x89\\x7f\\x03\\xd8\\x10\\x83\\x97\\xd0\\x6a\\x78\\x31\\x8c\\x79\\x61\\x2d\\x89\\x1a\\x3d\\xb4\\xa3\\xb5\\x46\\x18\\x90\\x71\\xd0\\x0c\\x3b\\x61\\x7c\\x07\\x25\\x60\\x4d\\x4d\\x5c\\xb3\\x02\\x94\\x2d\\x67\\xb6\\x43\\xda\\x17\\xdd\\x40\\x6b\\x6e\\x52\\x23\\x93\\x16\\x49\\xd7\\x24\\xac\\x64\\xa1\\x85\\x76\\x42\\xbf\\xbc\\xd7\\x3e\\x0b\\xef\\x1a\\x93\\x85\\x49\\x0d\\x89\\x17\\x49\\x93\\xe8\\x0a\\xb7\\xaf\\x3e\\x67\\x84\\xae\\x25\\x7f\\x57\\xd2\\x87\\xe9\\xbb\\x92\\x3e\\x4c\\xdf\\xb5\\x6c\\x36\\x57\\xec\\x9f\\x54\\x22\\x85\\xa4\\x4e\\xf7\\xd8\\xd2\\xfd\\x97\\x65\\xfb\\xaf\\xcf\\x67\\xf6\\xdf\\x71\\xe9\\x00\\xd2\\xdf\\x33\\x09\\x50\\x99\\x12\\x93\\xd0\\x19\\xb3\\xbf\\x85\\x49\\x78\\xc4\\x71\\xa5\\x9f\\x0e\\x77\\x54\\xb0\\x4f\\xab\\x76\\xf3\\x61\\x3f\\xe5\\xad\\x47\\x65\\xbd\\x1d\\x11\\x28\\x80\\x80\\x85\\x65\\x8b\\x98\\x3e\\xb1\\x93\\x54\\x8c\\xd0\\x49\\xeb\\x02\\x1a\\xdb\\x25\\x17\\xe8\\x92\\xf6\\xb2\\xd5\\x6c\\xf4\\x58\\x9f\\x3d\\xf3\\xf2\\x91\\xdb\\xd5\\x3c\\xae\\x96\\xcf\\xed\\x34\\x0b\\xcf\\xb8\\x70\\x40\\x4e\\x54\\xb1\\x04\\xfa\\xc3\\xfb\\x5c\\xeb\\x20\\x7c\\x68\\x7c\\x10\\xd2\\x72\\x76\\x45\\x4e\\xe4\\xa7\\x68\\x9c\\x40\\x27\\x60\\xe8\\x47\\x2d\\x59\\x0d\\x70\\x2e\\xe2\\x23\\xad\\xa4\\x16\\xc9\\x09\\xb8\\x83\\xc1\\x34\\x0d\\xf1\\xa9\\x96\\xb1\\xe4\\x8b\\x80\\xd1\\xa7\\x43\\x19\\xa5\\xf1\\x03\\x37\\x12\\xcb\\x16\\xa2\\x89\\xba\\x87\\xa3\\x7f\\x52\\xcd\\xe0\\xa2\\xba\\x28\\x7a\\xca\\x7b\\xa5\\xd1\\xd0\\x22\\x5a\\x8e\\x18\\x0c\\xac\\xf7\\x83\\x63\\xa7\\x0f\\xc2\\xda\\x3a\\x08\\x1d\\x49\\x9a\\xb5\\x00\\xa2\\xf7\\x40\\x19\\x89\\x88\\x80\\x12\\xda\\x76\\x8a\\x1c\\x97\\xee\\xc1\\x5c\\x3c\\x91\\x98\\x78\\x58\\xed\\xce\\x29\\xd9\\x17\\x8e\\x55\\xab\\x98\\x96\\xbc\\x86\\x77\\xf8\\x1c\\x37\\x39\\xdb\\x33\\x5b\\xc3\\xc5\\x8e\\x75\\x9e\\x4a\\xe0\\xd2\\x6e\\xc0\\x83\\x56\\x8f\\xb2\\xa8\\xea\\xa8\\x46\\x67\\x46\\xbf\\x36\\x57\\xf7\\x7c\\xf2\\xf0\\x9b\\x24\\x5a\\x6f\\x56\\x13\\x77\\x9c\\xae\\xa0\\xf7\\xd1\\xcb\\x7e\\xe3\\x4c\\xb7\\x98\\x9a\\xc0\\x50\\x27\\x08\\xde\\x9b\\x2d\\xd7\\x49\\x97\\x72\\x53\\xca\\x6f\\x8b\\x55\\x4f\\xeb\\x66\\x7d\\x9c\\x56\\x80\\x0b\\x06\\xe6\\xaa\\x00\\x47\\xa1\\x73\\x4a\\xf8\\x19\\xa2\\x35\\xb4\\x0a\\x4d\\x09\\x03\\x89\\x6e\\x48\\x8d\\x51\\xd6\\x9c\\x9b\\xeb\\x0a\\x6f\\x03\\x17\\xeb\\xca\\x03\\x35\\x5d\\x7e\\xdc\\x1f\\xd6\\xa7\\x89\\x3e\\xe2\\xfc\\x02\\xaf\\x85\\x56\\x03\\x40\\x39\\xba\\xab\\x95\\x7f\\x79\\xaf\\x93\\x12\\xc6\\xe7\\x86\\xb3\\x10\\x20\\x29\\x81\\x74\\xbe\\xf3\\xb6\\x74\\x5e\\x38\\x00\\xce\\x95\\x32\\x5b\\xd2\\x16\\xa0\\xcc\\x85\\xde\\xb1\\x09\\x77\\x84\\x92\\xd2\\xe0\\xbb\\xd1\\xa1\\xfd\\xba\\x5e\\x7f\\xb9\\xa4\\x42\\x29\\xee\\xdd\\x6e\\x01\\xe5\\x52\\xa2\\xc6\\x58\\x49\\xda\\x20\\x7a\\x67\\x93\\x3c\\x77\\x9e\\x81\\x22\\x26\\x94\\x9d\\x43\\xdb\\x1e\\x62\\xfd\\x46\\xc2\\x90\\xd9\\x3a\\xb3\\xe3\\x8d\\x0f\\x8c\\x59\\x3d\\xa4\\x16\\xe1\\x0b\\xd6\\xe9\\xa9\\x03\\x4e\\x97\\x75\\x1b\\x19\\x42\\x06\\xae\\xf8\\x6e\\xe3\\xdb\\xfa\\xb0\\x3d\\x0f\\x74\\x9a\\x94\\x0e\\xfe\\x28\\x46\\x6d\\xb4\\x4e\\x0d\\xd6\\x5b\\xad\\xe3\\x49\\x6a\\x1d\\x07\\x86\\xa2\\xd0\\xbf\\x00\\x7a\\xa8\\x29\\xce\\xe5\\xe4\\x02\\xe8\\x18\\x72\\xef\\xba\\x7b\\xd9\\xa5\\xf7\\xa3\\xf3\\x1a\\x2d\\x7a\\x43\\xcc\\xd8\\x15\\xec\\xee\\x6e\\xb4\\x6e\\x7f\\x3a\\xee\\xbf\\x2c\\x3f\\xaf\\xea\\x69\\x83\\x87\\xd2\\x3e\\xea\\x92\\xe1\\xcc\\x3b\\xe8\\x6e\\xfa\\x35\\x60\\x77\\x5f\\xb1\\x27\\xdd\\x1a\\x9b\\x2e\\x83\\xd1\\xee\\xac\\x82\\x44\\x12\\xa3\\xa9\\xa8\\x38\\x47\\x3d\\xee\\xd2\\x7a\\x0f\\x92\\xaa\\x6b\\xce\\xd7\\xed\\xee\\x69\\xea\\xe1\\x75\\x71\\x65\\x08\\x31\\xed\\x11\\x41\\xd0\\x58\\x1f\\xde\\xda\\xd8\\x02\\x6c\\x5a\\x46\\x68\\xd9\\x09\\x18\\x65\\xf0\\x57\\x6e\\xec\\x71\\xb5\\x6d\\xa6\\x8d\\x2c\\x25\\xcc\\x42\\xdb\\x50\\xa0\\x0c\\x98\\x47\\xc0\\x0f\\x70\\x2e\\xc6\\xb1\\x72\\x97\\xd6\\x35\\xf8\\x1e\\x62\\x33\\xbf\\xa7\\xf4\\x7b\\x5a\\x9f\\xd6\\xcd\\xfe\\xcb\\xfa\\xb0\\xbc\\x60\\xbe\\xce\\xaf\\x0c\\x40\\x48\\x31\\x62\\x52\\x82\\x95\\x4a\\x9e\\x19\\xb0\\x92\\x41\\x69\\xc3\\x4e\\xd1\\x2a\\xb2\\x7b\\x34\\xa2\\x73\\xba\\xfc\\x47\\xc5\\xd3\\x8e\\x3d\\xe8\\x4a\\x72\\x25\\xeb\\xf9\\x89\\x14\\xf8\\x81\\x54\\xd8\\xd1\\x91\\xe0\\x96\\x3b\\xc1\\xad\\x78\\x8f\\x03\\x1f\\xb6\\x87\\x9a\\xed\\x77\\x59\\x39\\x49\\x5e\\x4f\\xc5\\xd7\\xc5\\xb8\\x2b\\xde\\x98\\xb3\\xb2\\x4f\\xce\\x8b\\x59\\x1e\\xa3\\x4b\\x8a\\x7f\\x6f\\x49\\xea\\xa8\\x78\\x16\\x21\\x7d\\x7e\\x61\\x22\\xe7\\x95\\x77\\x5f\\xf7\\x62\\xbb\\x26\\xbe\\x25\\xdf\\x91\\x84\\xdd\\x59\\x34\\xed\\xf9\\xa3\\xd0\\x01\\xc6\\xb9\\xe0\\x7f\\xed\\xd8\\x31\\x37\\xbd\\x00\\x9d\\xa3\\x8b\\x33\\xb0\\x0a\\x3e\\xb6\\x09\\x57\\x43\\x17\\x9d\\xc0\\x78\\x1d\\x43\\xea\\xfa\\x8e\\xf4\\x1d\\x38\\xd4\\x88\\x6e\\x8d\\x61\\x61\\x67\\x4e\\xa1\\x0b\\xd5\\x06\\xd8\\x22\\x79\\x4f\\xb2\\x7c\\x5a\\x9f\\xb6\\xf5\\x7a\\xb9\\x79\\xfe\\x30\\x25\\x5d\\x5f\\x38\\xc2\\xd8\\xe5\\x9d\\xa2\\x1f\\x7a\\x81\\xfd\\x35\\xb3\\x62\\xb7\\xcd\\xac\\x4e\\x32\\xf8\\x7e\\x54\\xd2\\x0e\\x87\\x1c\\x4f\\x27\\x78\\xfb\\x78\\xc1\\x04\\xb6\\xbc\\x56\\x07\\x75\\x81\\x8d\\xda\\x5e\\x60\\x9c\\x9a\\x34\\xd8\\xaf\\x00\\x61\\x41\\x5f\\xb8\\x2d\\xf3\\x73\\xcd\\xdb\\x8b\\xb6\\xb4\\x23\\x6f\\x3f\\x5a\\x6c\\xb4\\x57\\xac\\x05\\xa2\\x1f\\x50\\x4b\\x65\\xcd\\xfe\\xee\\x97\\xf9\\x72\\xca\\x66\\xac\\xc7\\x11\\xb9\\xd8\\xb9\\x79\\x2f\\xee\\xe3\\x75\\x35\\x1f\\x00\\x88\\x5c\\x92\\xe6\\x70\\x78\\x6d\\x61\\x79\\x68\\x12\\xf7\\xbe\\xa8\\xc4\\x64\\xeb\\x62\\x46\\xa5\\x19\\xc8\\x91\\xb2\\x05\\xd8\\xf4\\xcc\\x0f\\x29\\x15\\x26\\xea\\xfe\\xd2\\x86\\xa6\\x2e\\xf7\\xc7\\xcd\\x19\\x87\\x36\\x29\\x1f\\xd6\\x70\\x93\\xd8\\x3e\\x00\\x42\\xa0\\x7b\\xcb\\x02\\x40\\x84\\xd0\\x67\\xe8\\xcd\\x23\\x4a\\xb0\\xa7\\x0d\\x93\\xc2\\x8c\\x49\\xd1\\x65\\xa3\\xd2\\xc5\\x9d\\xa2\\x27\\x85\\xee\\x48\\xa1\\x7b\\x52\\x20\\x95\\x9f\\xcd\\x6f\\x8d\\x53\\x60\\xe0\\x80\\x93\\xb4\\xa9\\xd6\\x9c\\x0e\\xc7\\x30\\x7c\\x09\\x8c\\xa3\\xb1\\x95\\x25\\x1e\\x8c\\x5d\\xcb\\x16\\x74\\xe3\\x86\\x21\\xa7\\x6a\\x09\\xdf\\x6a\\xae\\x29\\xfb\\x86\\xb8\\xd4\\x26\\x0c\\x4b\\x2d\\x5c\\x3c\\xd9\\x04\\x8a\\x04\\x27\\xfa\\x4d\\xee\\x8e\\xfa\\x71\\x56\\x30\\x7f\\xbc\\xff\\xb6\\xab\\x66\\x7d\\x58\\xb6\\x13\\x7c\\xde\\x71\\xe1\\x80\\xc7\\x95\\x66\\x47\\xea\\xdf\\x2f\\xb3\\x53\\x03\\x67\\x24\\x17\\x39\\x5f\\x95\\xbe\\x93\\xaf\\x2a\\x8e\\xf3\\x55\\x41\\x68\\xee\\xf2\\x55\\x15\\x43\\x9d\\xf2\\x88\\x24\\x07\\x62\\xb8\\xd9\\x18\\xf3\\xb2\\x60\\x15\\x4a\\xf1\\x0c\\x2b\\x48\\x96\\x65\\xa1\\xe6\\x3d\\x10\\x1e\\x16\\xca\\xf7\\x06\\x4f\\x63\\x38\\xbf\\x67\\x17\\x87\\xde\\xf1\\x51\\xec\\xc5\\xba\\xe9\\x70\\xe8\\x9d\\x4b\\x65\\x49\\x33\\x06\\xcb\\xd6\\x1d\\x0f\\x57\\xea\\x8e\\x2f\\x93\\x80\\xbb\\xbe\\x64\\xc0\\xca\\xcb\\x73\\x10\\xe7\\xe7\\x40\\xfd\\xed\\x64\\xe8\\xb4\\xa3\\x11\\xd3\\x6f\\xe8\\x6f\\x7c\\x0b\\x82\\x2e\\x7e\\x95\\xb7\\xd0\\xba\\x74\\xf9\\x96\\xc5\\x6b\\x9b\\x34\\xff\\x9a\\xd7\\x56\\xc6\\xa9\\xd9\\xc9\\x37\\xbe\\xf1\\x5e\\x8a\\x84\\xc2\\x19\\xbd\\xad\\x32\\x8b\\x8e\\x25\\x7b\\x63\\x9b\\x80\\x55\\xf2\\xab\\x0c\\x19\\x80\\x57\\xbd\\xe5\\x2d\\xb7\\x47\\xfe\\xe1\\x32\\xb0\\x71\\x5c\\x38\\xc4\\x9a\\x2a\\xdb\\x44\\x27\\xa2\\x6b\\x24\\x1d\\xfc\\x49\\x02\\x5f\\x40\\x5d\\x01\\x82\\x07\\xbf\\xc2\\x4e\\x09\\x29\\xd0\\xbd\\xb4\\x09\\x59\\x61\\xa2\\xae\\x89\\x1d\\x3a\\x4f\\x39\\xcd\\xfe\\x51\\x5d\\xce\\x42\\x83\\x3c\\x80\\x7d\\x56\\x5b\\xf8\\x46\\xd5\\xec\\x91\\x81\\x2d\\x80\\x83\\x3e\\x4b\\xf9\\xe3\\xf1\\x4c\\x43\\xbb\\x96\\x1f\\xb6\\x93\\x94\\x8d\\x17\\x57\\x7a\\x4d\\x4d\\xf4\\x35\\x90\\x85\\x18\\x58\\x08\\xb8\\x42\\xad\\xb4\\x0e\\xaa\\x3b\\x3a\\xf3\\x2d\\x10\\x8b\\x6c\\x87\\x5c\\xe4\\xdb\\x02\\x64\\xc4\\x38\\x46\\xac\\x70\\xa3\\x1d\\x24\\xa8\\x92\\xd5\\x85\\x16\\xd5\\x3e\\x89\\x4e\\xc9\\xe0\\x32\\x8a\\x6f\\x6b\\x71\\xca\\x29\\xa8\\x11\\x04\\xda\\x22\\x37\\x35\\x02\\x7c\\x05\\x0b\\x06\\x56\\x21\\x69\\x10\\x16\\xe7\\x7c\\x92\\xda\\x32\\x3f\\xc9\\x01\\xa3\\x99\\xd8\\xb0\\x92\\x99\\x0e\\xb8\\xf3\\x74\\xb0\\x8a\\xf7\\x6b\\x8b\\xa4\\x47\\x06\\x8c\\xaa\\xa2\\x1b\\x83\\xc8\\xd0\\x4b\\x52\\x91\\xd0\\x66\\xd1\\x12\\xdb\\x6c\\xd9\\xf3\\xcc\\x94\\xb8\\xb1\\x5a\\x73\\x3a\\x61\\xc7\\x9b\\x34\\xad\\xe9\\x16\\x2c\\x7c\\x2d\\x8b\\xdf\\x91\\xe2\\xef\\xa8\\x24\\x9c\\x6f\\x90\\xd6\\x2e\\xb2\\x81\\xaf\\xa7\\x9e\\x03\\xf5\\x1c\\x53\\xcf\\x32\\xf5\\x1c\\x53\\xcf\\x17\\xea\\x79\\xa6\\x9e\\x2b\\x57\\x98\\x7a\\x00\\x96\\x19\\xa8\\x17\\x0a\\xf5\\x42\\x47\\xbd\\xd0\\x53\\x2f\\xf4\\xd4\\x8b\\x85\\x7a\\x9c\\x28\\xa7\\x50\\xbb\\xfc\\xbd\\x40\\x89\\x65\\xb3\\x9f\\xd3\\x27\\x2c\\xa6\\xab\\xcd\\xd8\\x2a\\xd4\\x9e\\x25\\xe9\\x7c\\x78\\x9c\\xed\\x27\\xe0\\xa8\\x17\\x57\\x7a\\x5c\\x23\\xf0\\x13\\xc9\\x37\\x8c\\x71\\xc4\\x6a\\x11\\xc8\\x08\\x05\\x00\\x95\\x85\\xbb\\x46\\x3a\\xc4\\x53\\xd7\\xd2\\x55\\x31\\x19\\xea\\x60\\x57\\x59\\x47\\xcc\\x4c\\x95\\xb3\\x52\\x5a\\x18\\x5b\\x85\\x60\\x91\\xf0\\xca\\xc4\\xc6\\x44\\x91\\x4f\\x63\\x77\\xf0\\x8e\\x7d\\x61\\x5f\\x22\\xe8\\x5d\\xb0\\x8d\\xce\\xca\\x6a\\x99\\x53\\x15\\xe5\\x5a\\xab\\x4a\\x19\\x45\\xcc\\x59\\x65\\x9d\\x52\\x49\\xe8\\x54\\xc5\\x04\\x57\\x3c\\x53\\x05\\x9b\\x02\\x27\\xe2\\xe6\\xea\\x49\\x0d\\x61\\xbf\\x4f\\xe8\\xe8\\x05\\x14\\xe1\\x81\\x08\\xcc\\x89\\x1b\\x89\\x45\\x00\\xfb\\x6f\\x44\\x49\\x0c\\xd0\\x22\\xb3\\x21\\xfb\\x23\\xc3\\x39\\xa7\\xbb\\xab\\x10\\x1c\\xce\\x77\\xf4\\x56\\x66\\x25\\xd8\\xdf\\xa9\\xc8\\xac\\xb5\\x04\\x08\\x8a\\xf4\\x59\\x44\\xdc\\x49\\xbc\\x91\\x77\\x45\\xd2\\xd0\\x25\\x7a\\x44\\x47\\x25\\x18\\xbd\\x1a\\x7c\\xa7\\x8f\\xbc\\x50\\xa5\\xc0\\x39\\x49\\x59\\x29\\xe1\\x4c\\x4d\\x8b\\x88\\x08\\x34\\xd6\\x80\\x8f\\x90\\x6a\\xaa\\x82\\x0d\\x42\\x53\\xed\\xe8\\x88\\xf7\\x18\\xc6\\x6f\\xf0\\xfc\\x72\\xbc\\xe4\\x8e\\x08\\x33\\xea\\xf8\\xe7\\xf9\\xb5\\x96\\x2f\\x4c\\xf0\\x84\\x98\\x85\\xf1\\x81\\x99\\x19\\x36\\x3a\\x11\\xbf\\xe6\\xde\\xca\\x60\\x03\\xb6\\xfe\\xcd\\x6f\\x49\\xec\\x0a\\xc4\\xd2\\x00\\x2d\\x86\\x51\\x70\\x91\\x48\\xbe\\x65\\x4f\\xcd\\x02\\x93\\x46\\x1c\\x76\\x27\\x67\\x70\\xe2\\xf2\\x81\\x7b\\x27\\xe6\\x7d\\x71\\x25\\x55\\x2c\\x75\\x65\\x2f\\x8a\\xe5\\x02\\x69\\x04\\x2e\\x12\\xca\\xc4\\x12\\xd6\\x3b\\x97\\xf9\\x5b\\xcf\\xa5\\x98\\x1d\\x8b\\x07\\x86\\xc5\\x03\\x23\\xee\\xe4\\x26\\x1c\\x75\\x50\\x3d\\x41\\xf5\\x3a\\xbf\\xc0\\x53\\x59\\xc1\\x88\\xb1\\x31\\x00\\xe8\\x34\\x22\\x07\\xd8\\xd8\\x5f\\x10\\x06\\x8e\\xe4\\xb9\\x6f\\x0e\\xbd\\x7e\\xfb\\x5b\\x9c\\x82\\xf0\\xd3\\xc0\\x84\\x8b\\x64\\x88\\x1c\\x6f\\x3d\\xd7\\x01\\xb3\\xa9\\x7a\\x8d\\xe9\\x6c\\xa1\\xe6\\x6a\\xcf\\xcd\\x3e\\xa8\\xa3\\xa6\\xaf\\x92\\x5c\\xe9\\x04\\x52\\x59\\xd3\\x86\\x64\\x39\\x03\\xbb\\x75\\xb5\\x86\\x69\\x39\\x22\\x8e\\x1b\\x2f\\x7a\\xb4\\x6b\\x0e\\xab\\x6d\\xf3\\x75\\xf5\\xcb\\x7c\\xf7\\xf4\\x17\\x87\\xc9\\x95\\x33\\xe7\\x22\\x29\\x93\\xab\\x58\\x74\\xbb\\x94\\x78\\x6f\\xc3\\x2b\\xa7\\x39\\x90\\x88\\x48\\x6e\\x98\\x16\\x0c\\x13\\x98\\x42\\x99\\x16\\xc5\\x91\\x39\\x85\\x2e\\xbd\\x19\\x43\\x20\\xf6\\x4c\\x04\\x1d\\x1b\\xee\\x2e\\x86\\xdd\\x42\\x30\\xa3\\x6e\\xd0\\x89\\x73\\x58\\x87\\x0f\\xd3\\xe9\\x79\\x77\\x85\\x46\\xcf\\xbd\\x9a\\x5f\\x6b\\x91\\x33\\x47\\xab\\x98\\xdc\\x24\\xe1\\x6c\\xa3\\x15\\x6c\\xaa\\x8d\\x75\\x42\\x47\\xcb\\x8e\\xb4\\xda\\x9f\\x64\\x2c\\x49\\x63\\x95\\x6a\\xb4\\xd6\\x2c\\x0c\\x82\\xd1\\x00\\xe7\\x61\\x6a\\xed\\x87\\xfe\\xc4\\x4a\\xdb\\x18\\xb4\\xb3\\xd6\\x9c\\x21\\x92\\x76\\x01\\xaf\\x45\\x86\\xef\\x49\\x61\\x29\\x38\\x3c\\x85\\x05\\x55\\xad\\xa3\\xf0\\xb6\\x41\\x0c\\x4a\\x70\\x6c\\x37\\x22\\x8a\\x04\\xf6\\x6c\\xe0\\x24\\x9e\\xb4\\x65\\xbc\\xbc\\x37\\x29\\x9d\\xed\\xeb\\x53\\x6e\\xb8\\xa8\\x92\\xdb\\x89\\x56\\x6d\\xd1\\xbe\\x26\\x90\\x77\\x44\\xae\\xf6\\xf9\\xc3\\xd5\\xe1\\xd6\\x5d\\xbb\\x5c\\xca\\x7b\\x2d\\x6f\\xc9\\xa7\\xfd\\x6b\\x2c\\xe5\\x1d\\xfa\\xdb\\xcc\\x07\\x7e\\x9d\\x55\\xbe\\x73\\xb4\\x1f\\x40\\x2f\\x27\\xab\\xba\\xb2\\xf3\\xc3\\x77\\xf1\\xaa\\xf1\\x7b\\xe2\\xf7\\x9c\\x6d\\x22\\x8f\\xf6\\xc6\\xf1\\xb0\\xda\\xb5\\xdb\\x2b\\x8c\\x56\\x7f\\xf1\\xdf\\xfa\\xe3\\x7b\\xf5\\xc7\\xd7\\x55\\xf3\\xd3\\x7c\\x67\\xf0\\x15\\x5e\\x67\\x54\\x16\\xd6\\x98\\x46\\x06\\x48\\x81\\x7a\\xe3\\x7c\\xc3\\xdb\\x1b\\x36\\xa6\\xce\\xf7\\x88\\xa6\\x79\\x28\\x56\\x62\\xdb\\x68\\x8b\\x84\\x5b\\x89\\x25\\x11\\x05\\x6f\\x10\\x00\\x46\\x79\\x7b\\x72\\x43\\x4b\\x1c\\x14\\x85\\x59\\x0b\\x6f\\x1a\\xda\\xe3\\xad\\x23\\x91\\x88\\x03\\x41\\xb0\\xb0\\x58\\x66\\x13\\x19\\xfb\\x43\\x33\\x10\\x70\\x44\\x0e\\x56\\x60\\xc5\\x39\\x74\\x9b\\xa2\\x8f\\x47\\xd3\\xd8\\x24\\xb4\\x9f\\x5b\\x61\\x7a\\xc9\\xe1\\xae\\x9a\\xa2\\x37\\x66\\xbe\\x2c\\x6e\\xd3\\xb0\\xad\\x97\\x1f\\x9f\\x27\\xe0\\x9c\\xa3\\xb2\\x1e\\xe4\\xee\\xa1\\xa4\\x1a\\x37\\x42\\xfd\\x5f\\xba\\x64\\xca\\x63\\x28\\xdb\\x21\\x0a\\xa7\\x9d\\x04\\xdf\\x94\\x22\\xe2\\x7c\\xb9\\x18\\x0f\\xb4\\x05\\xfa\\xb6\\x9c\\x96\\xb8\\x83\\x50\\x12\\x3f\\xd3\\xe0\\xc7\\xc6\\x10\\x5f\\xfa\\x5c\\x03\\x9d\\xe9\\xc7\\xdc\\xf5\\x4b\\x7f\\x9a\\xaa\\x23\\x7a\\x3d\\x04\\x70\\x49\\x8d\\xba\\xd2\\x74\\xd3\\x75\\x86\\x2c\\x6b\\x7c\\x91\\xd5\\xce\\x9b\\x0e\\x65\\xa4\\x4b\\x73\\xba\\xd6\\xe2\\x45\\x3c\\x63\\x15\\x40\\xcc\\x40\\xcf\\xd0\\xf4\\x80\\x9d\\xc5\\x89\\x78\\xaa\\x70\\xe5\\xfc\\x60\\x2e\\x4f\\x54\\x37\\x9d\\xf2\\xff\\x91\\x6e\\x32\\x1d\\x7a\\x09\\x23\\x27\\x59\\xbf\\x18\\x2a\\xdb\\x83\\x7b\\x5e\\xd4\\x76\\xc4\\x7d\\x4d\\x6b\\x3b\\xb0\\x5f\\xa3\\xca\\x96\\xa4\\x8e\\x77\\xe3\\x1b\\x9e\\xf6\\xcb\\xdd\\xfe\\xb8\\x7c\\xda\\xb6\\xc7\\xe7\\xc3\\xc4\\x9e\\x74\\x76\\x81\\x97\\x57\\x84\\x12\\x41\\xed\\x65\\x32\\xed\\xf9\\x21\\xd0\\xbf\\x1a\\x7e\\xbb\\xd9\\x89\\xf3\\x58\\x2f\\xb8\\x74\\x29\\xe0\\x28\\x63\\x93\\x07\\xa3\\x61\\x0b\\x2b\\x96\\x7c\\x8d\\xab\\x34\\xd2\\x2c\\xbd\\x43\\xd8\\xd0\\x48\\xe3\\x94\\x30\\x8e\\x7d\\x3c\\xe0\\x58\\x08\\xb4\\xf1\\xd0\\xc1\\x34\\x43\\x5b\\x9e\\x9d\\xf8\\x1e\\x11\\x63\\x8f\\xd3\\xed\\x2c\\x19\\xf3\\xdc\\xc5\\x3b\\x61\\x72\\x9c\\xdf\\x98\\xf6\\x05\\x68\\x4c\\x22\\xd1\\xa3\\x91\\x86\\x38\\x31\\x63\\x33\\xc9\\xad\\x44\\x90\\x10\\xbb\\x6b\\x74\\x04\\x2f\\x5a\\x2c\\xf4\\xb4\\x88\\xf1\\x66\\x60\\xa1\\xab\\xf1\\x0d\\x3d\\x4b\\x8f\\x12\\x23\\x46\\xb4\\x0c\\xb1\\xbb\\x24\\x6c\\xac\\x65\\x66\\xb4\\xf7\\xf3\\x50\\xbc\\x31\\x1d\\x63\\x4f\\xc7\\x30\\xa6\\x63\\x98\\xa7\\x63\\x18\\xd1\\x31\\x7c\\x2b\\x1d\\xa7\\x10\\x90\\x73\\x17\\xfb\\x95\\xc2\\x58\\xbf\\x89\\xae\\xc7\\x70\\xb4\\x48\\x50\\xff\\xf2\\x1e\\xce\\x0c\\xae\\x71\\x3a\\xd0\\x36\\x49\\x03\\x2a\\xb1\\xee\\xc2\\xb3\\xea\\x8c\\xb6\\x4d\\x04\\x3b\\x97\\x04\\x04\\x1a\\xfb\\x45\\xba\\xe1\\x62\\xe8\\x3c\\x91\\x36\\x45\\xea\\x20\\x6d\\x34\\x76\\x34\\x9f\\x7b\\x47\\xb7\\x0d\\x31\\xf3\\x52\\x23\\x42\\xd3\\xd5\\xd6\\x09\\xe3\\x68\\x48\\xf3\\xcd\\xc2\\xa6\\x2b\\x03\\x12\\xdb\\x38\\x03\\xa6\\xc3\\xd5\\xb1\\xd4\\x05\\x80\\x75\\xb4\\x37\\x01\\x19\\xe6\\x55\\xa4\\xdb\\xdd\\xa0\\xdc\\x6e\\x0a\\x1c\\xda\\x99\\x99\\x47\\x46\\xf1\\xef\\x3c\\x7b\\x26\\x59\\x60\\xf8\\x94\\x2b\\xe8\\xe0\\x70\\x79\\x2a\\x7e\\xa7\\x8a\\x3d\\x50\\x7b\\x67\\x23\\x97\\xd5\\x43\\x38\\x0a\\x93\\xcc\\xb8\\x6a\\xde\\x1b\\x7f\\x46\\x71\\xc6\\x98\\x20\\x06\\x61\\x6a\\x9d\\x3f\\x93\\xbc\\x87\\xf9\\xfe\\xb4\\xff\\xbc\\xda\\x4e\\x89\\xcf\\x05\\x83\\x87\\x71\\x36\\x63\\x97\\xee\\xde\\x42\\x73\\xe9\\x25\\xd9\\xe5\\xa3\\xec\\xdc\\x6e\\x4b\\x32\\xe0\\xfe\\xb6\\xfe\\xb4\\xf3\\x13\\x67\\x77\\x28\\x4e\\xe6\\x11\\xec\\x05\\x6a\\x90\\xb6\\x3d\\x52\\xd7\\x38\\x0f\\xb1\\xb6\\x7d\\x3a\\xd0\\xf3\\xe2\\x92\\x0c\\x73\\xf4\\x92\\x62\\x31\\x39\\xf5\\x55\\xe0\\xaa\\xc2\\x1e\\xd3\\xbd\\x7b\\xc8\\x5a\\x0c\\x5f\\x3e\\xbc\\x7b\\x71\\x59\\xde\\xbd\\x7c\\x78\\x4b\\xe7\\x06\\xc3\\x2e\\x74\\x0c\\x57\\x11\\x4e\\x36\\x39\\x2e\\xb9\\xc7\\x94\\x4e\\x21\\x6b\\x46\\x58\\xc1\\x9c\\x4c\\x28\\x94\\x64\\x42\\xf1\\x46\\x32\\x21\\xda\\xc8\\xee\\x75\\xf0\\x6e\\x7d\\x06\\xa9\\x3e\\x14\\xe1\\x6b\\xb9\\x4b\\x58\\x34\\x06\\x22\\x1f\\x60\\x88\\xa3\\x13\\x36\\xdb\\xc6\\xea\\x8b\\x3a\\x00\\x5f\\x33\\xd3\\x15\\xab\\x9a\\x94\\x49\\x32\\xee\\x6d\\x80\\x24\\x17\\x23\\xa2\\xbb\\xf7\\x9b\\xd4\\x30\\xbf\\xdf\\x71\\x19\\xdf\\xef\\x9e\\x8f\\xcb\\x66\\x75\\xf8\\x74\\x46\\x99\\xa1\\xb4\\x77\\xf7\\xd3\\x2a\\xd5\\xc1\\x09\\xd0\\x41\\x04\\xcb\\xe1\\xe5\\x26\\x6e\\x80\\x29\\xae\\x8a\\xd1\\x02\\x51\\xe5\\x69\\x14\\xe6\\x7e\\x0a\\x25\\x24\\x08\\x00\\xa2\\x3d\\x12\\x0e\\x54\\xa8\\xe5\\x0d\\xa7\\xe0\\xeb\\x62\\xf1\\x10\\x78\\x36\\xf9\\x3e\\x70\\x7e\\x03\\x1c\\x31\\x92\\xa3\\x9c\\x72\\x35\\xd0\\x76\\x66\\x1d\\xb5\\xe1\\x5b\\xa2\\xb1\\x8c\\x72\\xc1\\x49\\x06\\x5f\\xb3\\xe2\\x5f\\x97\\x10\\x7b\\x55\\xaa\\x45\\xcb\\x0f\\xed\\x85\\xca\\x88\\x0e\\xa0\\x4c\\x86\\xbb\\x43\\xe7\\xf9\\xb8\\x6c\\x3f\\x5f\\xf4\\xeb\\x50\\x3a\\xd0\\x29\\xfb\\xda\\x68\\x11\\x48\\x80\\x32\\x46\\x38\\x25\\x9c\\xda\\x68\\x6f\\x3a\\x2a\\xe9\\x39\\x2a\\x69\\x6f\\x5e\\xde\\x5b\\x1d\\x99\\x4c\\x11\\xfa\\x6f\\x9d\\x61\\x7b\\xc1\\x0b\\xe8\\x86\\x29\\x91\\xb2\\x1e\\x11\\x09\\x8f\\x13\\x95\\x10\\xb2\\x5e\\x40\\x31\\x68\\x4d\\xb3\\xc5\\x28\\x18\\x34\\xa0\\x77\\x3c\\x34\\x1f\\x32\\x10\\x7b\\xcb\\x35\\x7a\\x90\\x3e\\xf4\\x81\\x9b\\x04\\x3a\\xac\\x3e\\x4e\\xf0\\x84\\xba\\x82\\xc1\\xe5\\xcd\\xfa\\x46\\x13\\xf7\\xa6\\x55\\x23\\xf1\\x43\\x59\\xfe\\x21\\xb5\\xb2\\xbd\\x5b\\xca\\x4d\\xd7\\xd8\\xab\\xe8\\x3e\\xec\\x83\\xe2\\xd9\\xf0\\x67\\x94\\xb0\\xb1\\xd1\\x99\\xa4\\x41\\x8b\\xa3\\xd4\\xda\\xd6\\xf0\\x6c\\xc0\\x43\\x86\\x9f\\xb5\\xb7\\x13\\xac\\x3c\\x1d\\x56\\x9f\\x96\\x9b\\xd5\\xee\\x69\\x82\\xbf\\x3e\\x29\\xed\\xd0\\xe7\\xca\\xf2\\xd8\\x85\\x2a\\x0f\\x08\\x42\\x5d\\xfe\\xba\\x47\\x11\\x84\\x9e\\x0e\\xdb\\xd3\\x7a\\xb9\\x3e\\xae\\x26\\x5f\\xec\\xcb\\x06\\xb5\\x32\\x60\\x4b\\xe7\\xd4\\xca\\xd9\\xfc\\x1a\\x6a\\xe5\\x37\\xbf\\xc5\\x29\\x98\\xf1\\xc7\\x6a\\x65\\x75\\x45\\x9a\\x32\\xf3\\xc2\\x94\\xd1\\x9d\\x5e\\x59\\x2f\\x5e\\xf7\\xa4\\x8e\\xea\\x42\\xb1\\x6c\\xa0\\x58\\x36\\x53\\xc5\\x72\\x66\\xc5\\xf2\\x9d\\x2e\\x39\\x4d\\x14\\xfd\\xa7\\xc3\\x98\\xab\\xec\\xa3\\xb0\\x8a\\xc9\\x88\\x45\\x3d\\x0c\\xe3\\x69\\xe4\\x42\\xb1\\xfc\\x9e\\x3a\\xb0\\x26\\xa4\\xcd\\xe8\\xf0\\x9e\\xfa\\xfb\\x71\\xa1\\xe0\\x33\\xc1\\x7f\\xcb\\xe5\\xab\\x3e\\xb8\\xb3\\xb1\\x77\\x8d\\xd4\\xe2\\x02\\x1e\\xab\\x37\\x54\\x16\\x1d\\x54\\xe7\\x7f\\xed\\x3a\\x9b\\xfd\\x1c\\xbf\\x73\\xc5\\xcf\\xe9\\xb6\\xca\\x62\\xfd\\x34\\x51\\xbc\\xf1\\xe9\\xef\\x09\\x76\\x01\\x40\\x03\\xcd\\xbe\\x5e\\x9d\\x39\\xb8\\x9f\\x95\\x17\\x8c\\xe9\\x24\\xac\\xd7\\xb5\\x15\\xf4\\x1f\\xc0\\xab\\x75\\x43\\xa4\\x36\\x24\\x18\\x08\\xdb\\x01\\xcc\\x6a\\x38\\x26\\x78\\xe4\\x78\\xc7\\xa6\\x4d\\x1c\\x96\\x01\\x76\\x4b\\x43\\x52\\x9b\\x2e\\x70\\xee\\x8d\\x84\\xf8\\xa4\\x4f\\xd2\\xea\\x8d\\x1d\\xc9\\x4e\\x3d\\x08\\xcd\\x18\\x79\\x86\\xdd\\xf0\\x4c\\xc1\\x9c\\x31\\x31\\x0e\\xbf\\x18\\x90\\x46\\x07\\xcf\\x45\\x9c\\xa5\\x27\\x99\\x11\\x86\\x8d\\xb8\\x87\\xa9\\xb9\\xfe\\x1f\\xeb\\x7a\\xd2\\x53\\x7c\\x3e\\x38\\x38\\x29\\xdf\\x00\\xaa\\x9b\\xfd\\xa2\\x53\\xb1\\xbe\\x6b\\x97\\x27\\x39\\x5d\\xee\\x09\\x1d\\xeb\\x33\\x74\\xc6\\xf5\\x18\\x96\\xb1\\xc7\\x78\\x68\\x8a\\x3c\\xa9\\x22\\xff\\x2a\\x83\\xb4\\x29\\xa5\\xe1\\xfb\\x81\\xc1\\xdd\\x6c\\xcb\\x6e\\xb3\\xda\\xd5\\xeb\\xa7\\xe5\\x7a\\x57\\x1f\\x7e\\x39\\x8f\\x90\\x98\\xbd\\x3a\\xc8\\x28\\xac\\xf1\\x9a\\x45\\xed\\x30\\x97\\xa8\\x1d\\x3a\\x2b\\xd1\\xf9\\x14\\x6a\\x6b\\x38\\xbd\\x3b\\x12\\x5d\\x01\\x6a\\x5d\\x86\\x00\\xac\\xc2\\xc0\\x25\\x92\\x8b\\x5e\\x3a\\x08\\xde\\x57\\x07\\x20\\x5f\\x49\\x77\\x34\\x1f\\x80\\xac\\x4f\\x5d\\xda\\xe6\\x92\\xb5\\xb9\\xfc\\xb5\\xec\\xce\\x32\\x64\\x72\\x5e\\x30\\xa0\\xef\\x6d\\xab\\xdd\\xfa\\x5f\\x9f\\x57\\xcd\\xf6\\x65\\xe2\\xcc\\x3a\\x2a\\xeb\\x09\\x68\\x8d\\x82\\xeb\\x10\\x82\\xd8\\x52\\x38\\x19\\xeb\\xa1\\xcf\\x48\\x1e\\xfe\\xad\\x74\\x89\\xfd\\x5c\\x0b\\x6a\\x6e\\x81\\x12\\xa3\\x72\\xcb\\x68\\x1b\\xb7\\xab\\x71\\x38\\xec\\x27\\x55\\xe0\\xf3\\x9e\\xa5\\x23\\x21\\x98\\x63\\x5f\\x0b\\xe2\\x48\\x0f\\xb2\\xca\\x09\\x90\\x26\\x72\\xd1\\x77\\x95\\x8d\\x51\\xd3\\x99\\x6c\\xaf\\x67\\xe5\\x7f\\x1c\\xd8\\x25\\xeb\\x07\\xc5\\x71\\xa1\\xf8\\xe0\\x4c\\x9c\\xcd\\x38\\x3e\\xe1\\x8e\\x85\\x6e\\xfd\\x7c\\xd8\\x2f\\xdb\\x5f\\x3e\\x7f\\xd8\\x4f\\x96\\xa0\\x71\\xe9\\x80\\x05\\xa6\\x63\\x49\\x4d\\x01\\xf5\\x22\\xcd\\x3f\\xd7\\xd8\\xc4\\xba\\x1e\\x62\\xc2\\x69\\x61\\x8f\\x99\\x61\\x49\\xd9\\x1f\\x27\\xd7\\x32\\xb1\\x56\\xcc\\x7b\\x86\\xc6\\x4c\\x08\\x6f\\xda\\xc8\\x08\\x5c\\x03\\x88\\x1f\\x82\\x68\\x06\\x5d\\x1b\\x70\\xe8\\x14\\xc2\\x9c\\x39\\x13\\x13\\x6e\\x8a\\xbe\\x36\\x41\\x44\\x27\\x72\\xec\\xe0\\xba\\x98\\x6f\\xc9\\x82\\x55\\xa4\\xba\\x48\\x34\\x8e\\x24\\xc4\\x52\\x9f\\x02\\xaa\\x84\\xe4\\xcc\\x42\\xa2\\xae\\xb5\\xf4\\x98\\xc0\\x5a\\x95\\xb0\\x53\\x6d\\x60\\xbd\\xd9\\x68\\x53\\xe4\\x7f\\x6d\\xe3\\x82\\x2a\\x24\\x63\\xc9\\x74\\xc8\\x40\\x7e\\xba\\xe5\\xa0\\x6a\\x76\\x95\\xd0\\xb6\\x63\\x0f\\x0c\\x6c\\x0a\\xd2\\x39\\x11\\x32\\x14\\x85\\xe5\\x85\\xb7\\x29\\x7e\\x5a\\xb6\\xc7\\x8b\\xad\\x75\\x54\\x38\\x84\\xb0\\x9b\\xd4\\x24\\x20\\x29\\xb0\\xed\\x96\\x96\\x7e\\x08\\x45\\x01\\x76\\x16\\x99\\x3b\\x7c\\x70\\xa4\\xab\\x9f\\xe4\\xbf\\x9a\\x80\\xf9\\xb5\\x37\\x00\\x00\\x69\\xdb\\x30\\xc2\\xfa\\x54\\xb3\\xdc\\x45\\xf2\\x01\\xad\\x73\\x1a\\xa0\\x86\\xbd\\x75\\x0c\\x9e\\x1f\\x8e\\x43\\x89\\xf9\\xaf\\x95\\x9c\\x44\\x89\\xf3\\x26\\xb1\\xf1\\xce\\x76\\x96\\x66\\xa3\\xdd\\x89\\x16\\xd9\\x4b\\x90\\x6d\\x33\\x0f\\x86\\x80\\x3d\\x53\\xcf\\x07\\xc0\\xe4\\xb9\\xac\\x5b\\x23\\xe0\\xc2\\x93\\xf6\\xae\\x06\\xd2\\x22\\x6b\\xc4\\x5d\\xc1\\xc6\\xed\\xdd\\x9c\\x46\\xf5\\x2c\\x3b\\x9a\\xa3\\xb5\\xda\\x3a\\x20\\x3f\\x72\\x30\\x25\\xd5\\xf3\\xce\\xd6\\x76\\x9a\\x22\\xbb\\x97\\xf3\\x29\\x82\\x89\\xed\\x01\\x2f\\x6c\\x01\\xbc\\x28\\x08\\xa2\\x9d\\x8a\\xc9\\xcc\\x39\\xb8\\x3e\\x00\\x06\\xf1\\x68\\xae\\x63\\x7d\\x1a\\xd4\\x59\\xcc\\xbe\\x16\\xad\\x6a\\xe7\\x13\\xd5\\x07\\xa6\\x68\\x75\\x5b\\xb2\\x43\\xfb\\x96\\xab\\xd3\\x6a\\xdb\\xac\\xa6\\xc9\\xbc\\x2f\\xae\\xdc\\xa3\\xc1\\x9b\\x60\\x30\\xbe\\xbd\\xe5\\x03\\xcd\\x5f\\xde\\x5b\\x1a\\x05\\x11\\xfa\\x21\\x38\\x78\\xc6\\x46\\x86\\x24\\x42\\x42\\xc7\\xdb\\x2e\\xbe\\x56\\x2b\\x40\\x25\\x3c\\x40\\x97\\x0f\\xcf\\xed\\x2f\\x17\\x24\\xe1\\xc2\\x3f\\x00\\x35\\x74\\x2e\\xb8\\xaa\\xdc\\x7a\\x6f\\x60\\xf6\\xe5\\x43\\x5f\\x24\\xbd\\x29\\x57\\x20\\x4e\\x5a\\xdc\\x50\\x0a\\x65\\x31\\x13\\x77\\xc5\\x77\\x14\\x1f\\x4c\\x9e\\xdd\\xfe\\x78\\x39\\x8c\\xb8\\x70\\x70\\x9a\\xd6\\x45\\x33\\xab\\x3d\\x62\\x1f\\xb5\\x57\\x2f\\xbf\\x73\\x62\\x62\\x7a\\xf5\\xc9\\x1d\\x35\\x4b\\xad\\x77\\xe2\\xcd\\xb8\\xed\\xed\\x7a\\x75\\xb1\\xa2\\x94\\xc2\\x69\\x4e\\x32\\x7a\\xeb\\x2c\\xba\\xd7\\xd5\\xf5\\x34\\x2a\\x0e\\xd0\\xcf\\xb9\\x0f\\x15\\x01\\x5f\\x5d\\x84\\xec\\xcb\\xe2\\xe4\\x3b\\xf8\\x8a\\x1e\\x31\\xae\\xe3\\xc4\\xfb\\x08\\xad\\x3b\\x48\\x0b\\xeb\\x9f\\xb7\\xc7\\xe5\\x71\\xbf\\x5c\\x7d\\x19\\x47\\xee\\x4c\\x4a\\xdf\\x9e\\x30\\xfd\\xb2\\xcf\\x7a\\x08\\xa5\\x2e\\x1d\\x7a\\x19\\x23\\x3d\\xb2\\xd1\\x7c\\x76\\xc4\\xf7\\x46\\x7b\\xa1\\x63\\x6e\\x88\\x33\\x09\\x1b\\x69\\x14\\x42\\xd3\\x8d\\x0a\\x8d\\x44\\x51\\xa7\\x7c\\x2e\\xac\\x7a\\x9f\\x2b\\xea\\xce\\xb2\\xf9\\xf3\\x97\\xd5\\xee\\x69\\xd9\\xac\\x27\\x49\\x59\\x27\\xa5\\x3d\\x9f\\x69\\x9d\\x6e\\x26\\x19\\xc2\\x47\\xb1\\x93\\x72\\x94\\xb4\\xfc\\x8e\\x32\\xbd\\xbc\\xfc\\xf3\\x7e\\x82\\xcc\\x32\\x29\\x2d\\x29\\x10\\x9d\\xb0\\x26\\x37\\xe3\\xfc\\x4e\\x43\\x12\\xa8\\x92\\xe1\\x69\\x08\\xbf\\xbc\\xf3\\xc9\\x66\\x5b\\x4f\\xf5\\x18\\x7d\\x51\\xcf\\x30\\x5a\\x53\\xf4\\x27\\xa6\\x40\\x40\\x75\\x81\\xed\\x1d\\xa8\\x15\\xe4\\xbd\\x29\\x28\\xd6\\xdf\\x1b\\x2e\\x89\\x9a\\x71\\x41\\xc8\\x66\\x44\\x44\\x00\\x81\\xe6\\x86\\x78\\x50\\xe4\\x5b\\x05\\x4c\\xac\\x06\\x52\\x0f\\x9d\\xfc\\x46\\x38\\xab\\x41\\x98\\x98\\x0b\\x7a\\xb5\\x65\\x9f\\x06\\x7a\\xd8\\xb6\\xec\\xc8\\x6b\\xbb\\xbf\\x16\\xcc\\x1b\\x17\\x19\\xdb\\xf2\\x7d\\xf8\\xff\\x5e\\xab\\xf7\\xed\\xf3\\x79\\xb3\\x4b\\x51\\xaf\\x89\\x60\\x81\\xb1\\x21\\x69\\x11\\x11\\xdf\\xc5\\x6f\\x43\\xc5\\x3e\\x4a\\x17\\x1d\\xcc\\x71\\x90\\xb7\\xf3\\x54\\x8d\\x20\\xa4\\xcf\\xd5\\x6f\\x53\\x85\\xc4\\x80\\xf2\\x38\\x8b\\x5c\\x60\\x7b\\x04\\x87\\xc2\\x25\\x4f\\xb0\\x9b\\x2e\\x42\\xb5\\x8b\\x61\\xf0\\x21\\x5a\\x2c\\x77\\xeb\\x4f\\x4b\\x3d\\x43\\x11\\x5c\\x60\\xc0\\xc7\\x29\\x30\\x22\\x03\\xc3\\x83\\xb7\\x70\\x70\\x38\\xb1\\xa1\\x21\\x61\\xc3\\x86\\x4d\\x40\\x6e\\x69\\x76\\x2f\\x88\\x91\\x81\\x80\\xd8\\x94\\x7a\\xd7\\x28\\x3d\\xf9\\xac\\xb9\\x55\\x9f\\x01\\xa8\\xd1\\x96\\xaf\\xa8\\x31\\x90\\x00\\x71\\x41\\x1a\\x71\\x63\\x5e\\x57\\x21\\x29\\x12\\xe5\\xe0\\x89\\x6f\\x2b\\x67\\xd9\\xe7\\xb6\\xc4\\x4e\\x26\\x86\\x91\\x8a\\xcc\\x4c\\xfb\\x16\\x29\\xfd\\x63\\x71\\xfc\\x82\\xc5\\xa8\\xca\\x1e\\xc6\\xa4\\x58\\x79\\x9a\\x11\\xd2\\xf8\\x8a\\x2e\\x5a\\x3e\\x00\\xd5\\x57\\x35\\x00\\xf5\\x09\\x61\\xa3\\x91\\xa7\\x28\\x6c\\xa4\\x4e\\xee\\x64\\x4d\\x93\\xb2\\xc8\\xb1\\xd6\\xb6\\xf2\\xf0\\x1f\\x2e\\x47\\x63\\x2a\\x63\\x4d\\x16\\xc6\\x57\\x36\\x25\\xe8\\xa2\\x9d\\xaa\\x7d\\xa5\\x62\\xf4\\x5e\\xa4\\xca\\x05\\xe3\\x93\\x88\\x42\\xfb\\xca\\x9b\\x68\\x44\\x14\\x9c\\x56\\x8f\\x04\\x75\\x20\\xae\\xeb\\xb4\\xa8\\xa5\\xaf\\xb2\\x4f\\xc4\\xdd\\x54\\x29\\xc3\\xf6\\x15\\x2b\\xed\\x15\\x43\\x40\\xdb\\x24\\x4c\\x00\\x58\\xb1\\xb3\\x11\\xb2\\x01\\xe2\\x5e\\xe8\\xd5\\x31\\xf0\\x09\\x46\\x51\\x01\\x01\\x0e\\x21\\x26\\xa1\\x55\\x65\\x19\\xce\\x81\\x8f\\xc6\\x89\\xa0\\x6a\\xed\\xab\\x90\\x8d\\x17\\xdd\\xd1\\x86\\x2a\\xb9\\x60\\x84\\xf1\\x22\\x24\\x61\\xee\\x48\\x80\\x5d\\xbf\\x7d\\x69\\x9e\\xdb\\xf9\\x11\\x86\\x2b\\xd3\\x21\\x56\\x92\\xf4\\xd0\\x00\\x9e\\x1f\\x62\\xb1\\x0c\\xb1\\xce\\x70\\xfd\\xeb\\x80\\x88\\x4f\\xab\\x34\\x3b\\xfc\\xfa\\xca\\xf6\\xe3\\x0f\\x69\\x40\\xba\\x2a\\x94\\xf8\\x7d\\x80\\x0d\\x06\\xde\\x92\\x03\\xaf\\xfa\\x86\\x2e\\x52\\x15\\x48\\x48\\xa1\\xb9\\x8e\\x08\\x9b\\x6f\\x1f\\x2b\\xae\\x4a\\x26\\xf9\\x28\\x52\\xa5\\x5c\\x0c\\x46\\x24\\xa1\\x43\\x15\\x52\\xb2\\x22\\xf1\\x58\\xd1\\xb6\\xca\\x29\\x09\\xe9\\xaa\\x9c\\x7c\\x8e\\xf4\\x9a\\x9c\\x34\\xeb\\xa7\\xad\\xae\\x65\\xa8\\x6c\\x8a\\x39\\x89\\x54\\x79\\x1d\\xa1\\x21\\xf0\\x95\\xb2\\xb4\\xd4\\x5b\\x68\\x11\\xb5\\x5d\\xd4\\x54\\x86\\x90\\x1e\\xc6\\xb9\\xb6\\x16\\xc6\\x5a\\x1c\\x0d\\xa7\\x0c\\xd0\\x8e\\xde\\x94\\x73\\x50\\xb8\\x52\\x7e\\x70\\x30\\x78\\x15\\x15\\xd2\\x48\\x62\\xae\\x3c\\x34\\xd4\\x12\\x35\\x83\\x46\\xbd\\x30\\x59\\xe8\\xdc\\xd2\\x10\\x13\\x4e\\x89\\x50\\x4c\\x34\\x1e\\xb9\\x0c\\x82\\x90\\x1e\\x22\\xbc\\xc3\\x06\\x98\\x60\\xba\\xd1\\x9e\\x08\\xe7\\x94\\x41\\xde\\x84\\xca\\xa5\\x98\\xb0\\x6d\\x58\\x55\\x65\\x1a\\xb5\\xf4\\xdb\\x33\\xf6\\x83\\xaa\\x8c\\x41\\xd6\\x83\\xca\\xfa\\x04\\xd7\\xb0\\x4a\\x47\\x38\\xd0\\xd0\\x9b\\x15\\xf0\\xe5\\xb0\\x2c\\xa8\\xb2\\x12\\x44\\x5e\\x18\\xa0\\xd2\\x8f\\x65\\xf7\\x79\\x70\\xd8\\xbf\\xac\\x0f\\xfb\\xb9\\x71\\xc4\\xe5\\x83\\x28\\x90\\x3b\\x30\\x6e\\xa0\\x7c\\xeb\\xca\\x39\\x8b\\xd4\\xfd\\x55\\x08\\x00\\xd2\\xd6\\xc2\\xc7\\x5a\\x3a\\x11\\x84\\xcc\\x02\\x06\\x01\\xa1\\x0d\\xd2\\x5e\\xb0\\x4e\\xc8\\xb5\\xec\\x21\\x57\\xf0\\x8c\\x79\\xab\\x0c\\x05\\x1e\\xcf\\xd4\\x32\\x57\\xde\\x7a\\xc0\\x1d\\xbb\\xca\\x2a\\xd3\\x75\\x8b\\xae\\x8c\\x09\\x65\\xb1\\xf3\\xf1\\x24\\x7d\\x84\\x37\\x98\\xab\\xac\\x51\\x46\\xb8\\x2a\\x04\\x45\\x1c\\x92\\x4f\\x55\\xcc\\x21\\xa0\\x03\\xa2\\xae\\x3d\\x30\\xba\\x69\\xed\\x83\\x59\\xda\\xd5\\x3a\\x54\\x31\\xc0\\x6a\\x61\\x5c\\x95\\x94\\x37\\x22\\x54\\x46\\x45\\x40\\x02\\x09\\x1d\\x17\\x75\\xaa\\x52\\x54\\x0a\\x63\\xda\\x2a\\xcf\\x51\\x86\\xae\\x72\\x0a\\xf8\\x79\\xc2\\xa7\\x93\\x8f\\x88\\xdf\\xd2\\xb4\\xa2\\xa4\\x4c\\x4b\\x5d\\xaa\\xbc\\xc9\\xc4\\x13\\x54\\x36\\x26\\xc6\\x7a\\x4b\\x89\\x0e\\xb5\\x0b\\x95\\x57\\xc0\\x4f\\x8f\\xba\\x4a\\x0e\\x4a\\x9c\\x2a\\xeb\\x14\\x04\\x72\\x55\\x9b\\xda\\x21\\xcb\\x5f\\x64\\x37\\x60\\x4e\\x46\\xe3\\xdc\\x46\\x22\\x8c\\xc5\\xe6\\x2a\\x3a\\x85\\xde\\x0f\\x29\\x78\\x1a\\xb5\\xb9\\x52\\x8c\\x53\\x08\\xe5\\x19\\xc2\\x4c\\xf3\\xa8\\xe7\\x39\\x5b\\x20\\x7a\\xbd\\xf8\\x11\\x86\\x56\\xd2\\x88\\xc2\\x49\\x80\\xcb\\xa6\\x2e\\x00\\x04\\x9a\\xe6\\x4c\\xac\\x9c\\x0b\\x4e\\xe8\\x5c\\x05\\x5a\\xbb\\x91\\x74\\x5b\\x57\\xc6\\x7b\\xf6\\x1d\\xcb\\xea\\xe4\\xee\\x09\\x17\\xc7\\xf5\\xae\\x3d\\xd3\\x9a\\x0d\\x65\\x65\\xdb\\x63\\xd7\\x00\\xce\\xf1\\xcd\\x6f\\xf6\\x8e\\xb5\\x55\\xd4\\x4d\\xd0\\x5c\\xe1\\x9c\\x75\\x55\\xe9\\xaa\\x09\\x30\\xe9\\x92\\xd4\\x87\\xaa\\x1a\\x00\\x94\\xe8\\x93\\xf0\\xb1\\xa5\\x03\\xbf\\x2b\\xf1\\xe8\\xb0\\xb8\\x7b\\x96\\x61\\x49\\x7a\\x63\\x4d\\x6d\\x69\\x08\\xf8\\x28\\xf8\\x35\\x3e\\xa1\\x2a\\xfc\\xb4\\xf0\\x09\\x15\\x49\\xfa\\x92\\xb1\\x49\\x81\\x6b\\x40\\x8b\\x1c\\x5a\\xe1\\xad\\xf0\\xae\\xf5\\x98\\x67\\x9c\\xb0\\x9c\\xf3\\x09\\xa5\\xb0\\x98\\x47\\x3f\\x09\\x1b\\x7b\\x7b\\x69\\xff\\xb8\\xaa\\xc7\\x0c\\x1f\\x9f\\xde\\x77\\xaa\\x44\\x24\\x0a\\x3b\\xbe\\x0b\\x97\\x6a\\x2c\\x01\\x45\\xf9\\xeb\\x39\\x85\\x91\\x07\\x58\\x20\\x32\\xa1\\x78\\xa4\\x59\\xd1\\x91\\xba\\x98\\x7d\\x2e\\x3c\\xf1\\x04\\x46\\x48\\xf6\\x38\\xc0\\x3c\\x86\\x12\\x18\\x33\\xb3\\xc4\\xa6\\x01\\xa8\\xff\\xfb\\x79\\xa5\\x32\\x68\\x58\\xd0\\x8b\\x21\\xfc\\x46\\x6b\\x1c\\x0c\\xb2\\x5d\\x89\\x92\\xdd\\x9a\\xfe\\x5a\\x89\\x8d\\x18\\xa7\\x26\\xb6\\xda\\x50\\xc7\\xd2\\xef\\x50\\x90\\xf7\\x82\\x7e\\xdb\\x5b\\x6e\\xf7\\x58\\x7b\\x5c\\x7e\\xdc\\x1f\\xbe\\x4e\\x21\\x94\\xa6\\xc5\\x03\\xf4\\x58\\x72\\x0d\\x3b\\xd0\\x40\\xc6\\x2b\\xbf\\x4e\\x5d\\x6a\\xd7\\xf2\\xbb\\xbf\\xe5\\xfe\\x97\\x0f\\xeb\\xaf\\xdb\\xdd\\xc5\\x87\\xbb\\x52\\xfe\\xae\\xe3\\xdc\\xbc\\xf4\\xd2\\x0e\\xa4\\xac\\xd8\\x25\\xba\\x4a\\x20\\xa5\\xf0\\xf8\\xf2\\xed\\xef\\x9e\\xf6\\x87\\xed\\x71\\x3a\\x4e\\xbb\\xa2\\x7e\\xac\\x7a\\xce\\x06\\xce\\xe0\\x2b\\x4a\\x40\\xc1\\x8f\\x4f\\x84\\xe2\\x43\\x64\\xb0\\xd1\\x86\\x20\\x68\\x9d\\xe5\\x4c\\xd9\\x6c\\xce\\x88\\xb4\\x62\\x5a\\xec\\x10\\x99\\xd8\\x3f\\x80\\x21\\x98\\x08\\xd3\\x9d\\xa7\\x22\\xe7\\xeb\\xc0\\x21\\x5a\\x11\\x63\\xb7\\x4b\\xb6\\x0d\\x36\\x59\\x0b\\x46\\xc5\\x44\\x4c\\x7a\\xc2\\xb2\\x76\\x5b\\x3b\\xd0\\xd5\\x7d\\xf9\\x61\\x7f\\x98\\xe6\\x33\\xb8\\xb8\\x52\\x1a\\xc7\\xcb\\xbb\\x56\\x46\\xc0\\xfd\\x2e\\x0b\\xed\\x2d\\x8e\\x46\\xfb\\x92\\x9d\\x8d\\x56\\x74\\x57\\xc2\\x50\\x6a\\x69\\x6d\\x09\\x22\\xc6\\x6c\\x8b\\xd8\\xbe\\x37\\xd2\\x71\\x72\\x23\\xc3\\x86\\x4b\\xcf\\x0e\\xe4\\x5e\\xd5\\x74\\xc6\\x91\\x2c\\x6c\\xbd\\x41\\xe4\\x0b\\xb2\\xa9\\xc0\\x54\\x0e\\x13\\x09\\x7d\\x4d\\x1a\\xed\\x1b\\x6a\\x20\\x47\\xfd\\x90\\x94\\xfe\\x00\\x59\\x42\\x4f\\x96\\x80\\x0e\\x02\\xa4\\x2d\\x75\\x54\\xbc\\xe8\\xa8\\xd0\\x75\\x54\\x5c\\x7c\\x73\\x4f\\xdd\\x26\\xfd\\x7a\\x75\\x7c\\x3e\\xac\\x9f\\x96\\x5f\\x9a\\xd5\\x2f\\xcb\\x66\\xdb\\x8e\\x95\\x17\\x73\\x17\\x07\\x35\\x4d\\xf1\\xd4\\x64\\x9f\\x53\\xb3\\x41\\xde\\x99\\x02\\x50\\xc6\\xfa\\x8d\\xe2\\x8c\\xca\\x09\\x69\\xae\\xfa\\x9d\\xdc\\x54\\x62\\x20\\x6b\\xde\\xa3\\x4a\\x8c\\x7b\\x10\\x3a\\x7d\\x73\\x4e\\xdb\\xa7\\xf5\\x7e\\xae\\x9d\\xe5\\xc2\\xe0\\x78\\xe6\\xc3\\x09\\x22\\x34\\xda\\x42\\xbf\\x7e\\x47\\x8d\\x59\\x3f\\x7d\\x58\\x4d\\xbc\\x9b\\x87\\xa2\\xc1\\xfa\\x9c\\xf3\\xa9\\x00\\x7e\\x31\\x90\\x46\\x01\\x45\\x2a\\x18\\x8b\\x23\\xdb\\xf3\\xb7\\xa6\\xcf\\xce\\xb9\\x4f\\xcc\\x4a\\xed\\x9b\\x55\\x45\\xdc\\x6c\\xc7\\xf6\\xc3\\xfa\\xb0\\x9c\\x7a\\x4a\\x8d\\xca\\x06\\x00\\xc5\\x10\\x39\\xf3\\x62\\xc9\\xbe\\xdc\\xbb\\x93\\xc1\\x68\\xca\\xb9\\x3c\\xe0\\x49\\x65\\x7c\\xc3\\x89\\x3a\\x36\\xd6\\x34\\x68\\x85\\xaf\\x39\\x19\\x1c\\x43\\x54\\xc0\\x0b\\xf7\\xbd\\x09\\x70\\x55\\x6b\\xd8\\xed\\x93\\xf8\\x0d\\xd6\\xdc\\x47\\xdb\\xd0\\x0a\\x11\\xc1\\x0b\\x35\\x96\\x53\\xd5\\x6f\\xe0\\xdc\\x16\\xb5\\x30\\xc6\\x9d\\x00\\x3f\\x76\\xbd\\x12\\xd1\\x5f\\xb8\\xbf\\x8d\\x06\\x8c\\xbb\\x04\\xc6\\x9e\\x83\\x09\\x67\\x04\\x9d\\x6e\\xc4\\x5c\\x55\\xc8\\xbb\\x89\\xfa\\x16\\xfe\\x5d\\x39\\x30\\xfc\\xac\\xed\\x81\\x90\\x42\\x71\\xef\\xeb\\x8a\\x0b\\xce\\xd1\\x1d\\xef\\x0a\\xee\\x82\\xcf\\xab\\xdd\\xf3\\xaa\\x59\\x1e\\xd6\\xf5\\x7e\\xba\\xb5\\xce\\x5d\\xed\\x3c\\x1a\\x79\\xb4\\x30\\x93\\xd2\\xf1\\x28\\x3a\\xea\\xf6\\xc1\\xe8\\x30\\x3d\\x66\\x6e\\x1e\\xa8\\xe3\\x6e\\xfd\\xf5\\xa2\\x66\\x28\\x1b\\x98\\x5f\\x5d\\x2c\\xb1\\x26\\x9c\\x24\\x5c\\x1e\\xdd\\x29\\xfa\\x8d\\x24\\x99\\x1a\\x47\\x77\\x42\\x29\\xc7\\x58\\x16\\xb3\\x6a\\xef\\x13\\x08\\xeb\\x76\\xf2\\xe7\\xb6\\x64\\x8e\\xe3\\x33\\xd9\\x9e\\x4c\\x2c\\x20\\x69\\x9c\\x2c\\x98\\x4e\\xbd\\x3d\\x19\\xbb\\xf1\\xb6\\x3f\\x71\\x1b\\x6f\\x5f\\xde\\xc3\\x44\\xdf\\xe7\\xa4\\x08\\xf4\\xf5\\x86\\x58\\x6f\\x54\\x22\\x94\\x0c\\x15\\xe1\\x14\\x7d\\xe3\\x81\\x62\\xb2\\x31\\xfe\\x1b\\x93\\xd3\\x2c\\x7e\\xe5\\xec\\x34\\x4c\\xd6\\x2f\\x93\\xe8\\x83\\x51\\xd9\\xa0\\x8b\\xe9\\x5b\\x17\\x4b\\xeb\\xac\\xe8\\x48\\x8d\\xd6\\x45\\xb4\\xce\\x71\\xeb\\x88\\x07\\x0a\\xa3\\x87\\x6c\\x97\\x94\\xa7\\xc3\\x6b\\x7e\\x74\\xce\\x3b\\x3b\\x37\\xe9\\xbe\\x53\\x56\\x9f\\xc5\\x7b\\xda\\x8d\\xbf\\x65\\x7a\\xb5\\x9f\\x57\\x87\\xe3\\xb5\\xd9\\x35\\xbd\\xd8\\x5b\\xbe\\x9c\\xd1\\x35\\xf1\\x35\\x3a\\xb3\\x77\\x07\\xb3\\xac\\x42\\xea\\xe0\\x5b\\x88\\x71\\xcc\\x5f\\x94\\xa2\\x93\\x73\\xb5\\x87\\x70\\x92\\xbc\\x08\\xc8\\xcd\\xa8\\x49\\x44\\x05\\x7a\\xb8\\x2b\\x4f\\x6b\\x92\\x32\\xdf\\xd3\\xa8\\xfe\\x7e\\x33\\xb7\\x59\\x2f\\x9f\\xf6\\x5f\\x77\\xcd\\x7e\\x35\\x6d\\xf9\\xa4\\xbc\\xf7\\x59\\x2e\\xa9\\x5b\\xc6\\x70\\xd1\\xc5\\xfd\\xd5\\xa8\\xa6\\x4f\\xad\\xd7\\x67\\xc6\\xdc\\x30\\x2c\\x2a\\xe3\\xd2\\xf0\\xb4\\xbc\\x5f\\x9d\\xe7\\x2f\\x73\\x95\\xe9\\x4a\\x6f\\x57\\x05\\x3e\\xf0\\x0c\\x86\\xbf\\x01\\xfa\\x4e\\xc9\\xd0\\xd9\\xd5\\x6c\\x58\\x20\\xee\\x8b\\x14\\xdb\\x66\\x9a\\xb0\\xbc\\x2b\\x18\\x90\\x19\\x5d\\x2e\\xd9\\x5f\\x19\\x9c\\x35\\x17\\x70\\x56\\x77\\x0d\\x29\\xec\\x0e\\x22\\x7b\\x9e\\xcf\\x1e\\x35\\x9b\\xc9\\x95\\x3e\\xc4\\xf9\\x53\\x4e\\xff\\x3f\\x7b\\x6f\\x96\\xe3\\x38\\xae\\x75\\x8d\\xbe\\x7b\\x14\\x04\\x2e\\x70\\xdf\\x64\\x88\\x3d\\x89\\x7f\\x0c\\x39\\x86\\x80\\x4b\\xe9\\x2c\\xf9\\x96\\x22\\x1c\\x5f\\x28\\xd2\\x75\\x2a\\x46\\x7f\\xb1\\xd7\\xde\\xa4\\x24\\x5b\\x6e\\xb2\\xa9\\x3a\\x79\\xfe\\xef\\x00\\x99\\x61\\x8b\\x92\\x25\\x76\\x22\\x77\\xbb\\x56\\x63\\x9d\\xee\\x39\\xfc\\x18\\x6f\\x8d\\x5e\\x95\\x6d\\xe8\\x22\\x36\\x64\\x92\\xd2\\x6e\\x06\\x8e\\xd9\\x6f\\xfb\\xc6\\x58\\x3f\\xf8\\xac\\xa2\\x67\\xc6\\x90\\xdb\\xbe\\x3c\\xee\\x83\\x85\\x51\\x58\\x8a\\x96\\xd6\\xe0\\x5f\\xa0\\x77\\xc0\\x12\\x5d\\xb8\\xb5\\x38\\xdf\\x4a\\x50\\x6b\\x90\\xae\\xfc\\x5d\\xbd\\xf7\\x40\\xd7\\x98\\xf5\\xae\\xa9\\xb6\\xe7\\x92\\x8f\\x57\\xc1\\xbf\\xd7\\xf8\\xd4\\x85\\x08\\xa4\\x18\\xa1\\x67\\xd1\\xa0\\xa9\\x46\\x83\\xba\\xca\\xfc\\x76\\x41\\x33\\xcd\\x31\\x0a\\x29\\x7c\\xfc\\x12\\x03\\xc1\\x1d\\xbd\\xf9\\xe9\\x3d\\x6d\\xd7\\x7b\\xda\\x9e\\xf5\\xf4\\xb5\\x5e\\x5a\\x38\\x79\\xe7\\x9e\\xb9\\xdb\\xdd\\x6e\\x19\\xa2\\x28\\xcd\\x13\\x27\\xe8\\x7f\\xdd\\xf7\\xa6\\xfd\\xf1\\x84\\x2c\\x8a\\xef\\x7a\\x4b\\xbf\\x7f\\xdc\\x36\\x3f\\x6d\\xe0\\x1e\\x18\\x02\\xb7\\x3e\\x04\\xee\\x57\\x5a\\x07\\xe0\\x7d\\xcd\\xa6\\x10\\x5c\\x71\\xe4\\x2f\\x2b\\x61\\x35\\x38\\x83\\x17\\x05\\xfb\\xb7\\x2d\\x0a\\x7e\\xbd\\x9f\\xfc\\xf7\\x4c\\xd5\\xf9\\x96\\x5a\\x7c\\x67\\x2c\\x79\\xad\\xb1\\xfd\\x7c\\xef\\x4a\\xf7\\xf7\\x0c\\xdd\\xe6\\xa7\\xcf\\xc0\\xb0\\xde\\xb3\\xe1\\xff\\xcc\\x75\\x6f\\xc9\\xba\\x75\\x25\\xa3\\x55\\xe2\\xbe\\xf3\\x9a\\x23\\xbf\\xd2\\xc8\\xb9\\x73\\x7b\\xf7\\x43\\xbd\\x7d\\x7d\\x4d\\xfe\\x87\\x17\\xe3\\xcd\\x4f\\x14\\x1a\\x1e\\x18\\x87\\xb8\\x3e\\x0e\\xf1\\xff\\x2c\\x92\\x2a\\x91\\x4e\\x35\\x30\\xfc\\x4c\\x59\\x67\\x65\\x22\\xff\\x4a\\x7b\\xd5\\x4f\\xef\\x9d\\xb4\\xde\\x3b\\xe9\\x81\\x59\\x0a\\x3f\\xf5\\xb4\\x37\\xdd\\x9b\\xbc\\xd8\\x9e\\x74\\xaa\\xda\\x17\\xe0\\x80\\x18\\xe7\\x80\\x75\\x32\\xd6\\xdb\\xc4\\x79\\xb3\\x9c\\xe3\\x8b\\x49\\xfd\\xdd\\x3b\\xde\\xb7\\xbc\\x01\\x9b\\xff\\x8b\\xc6\\x38\\xaf\\x8f\\x71\\x25\\x5a\\x9d\\x47\\x9c\\xcd\\xb2\\xe4\\x05\\x11\\x7b\\xb5\\xe7\\x0b\\x07\\xe6\\x7d\\xe9\\x65\\x75\\x2e\\x40\\x42\\xbc\\x18\\xe3\\xff\\xbb\\xd7\\xa1\\x8c\\x70\\x8f\\x6b\\x43\\x21\\x27\\xab\\x6c\\x42\\xe3\\x21\\xbc\\xa4\\x53\\x2f\\x9c\\x4a\\x1c\\xcb\\x2c\\xfd\\x73\\x19\\xba\\x65\\xea\\xe8\\xfd\\x73\\xda\\x8c\\x85\\x8e\\xdd\\x1b\\xcd\\x49\\xb5\\xc8\\xb1\\x66\\x25\\x67\\x66\\x42\\x39\\x9f\\x25\\x01\\xd1\\xbe\\x20\\x84\\xeb\\x91\\x83\\x7b\\x99\\x23\\x66\\xd9\\xb0\\x63\\xdc\\x32\\x0c\\x71\\x25\\x03\\x8d\\xc1\\x19\\xfe\\xae\\x81\\xfb\\xed\\x69\\xf7\\xf2\\xf9\\xe9\\xcf\\xcb\\x91\\xab\\x27\\x2e\\xc9\\x58\\x41\\x48\\xc3\\xb1\\x7c\\xff\\x50\\x68\\x66\\xf1\\xab\\x14\\x5b\\x47\\x6c\\x41\\xd8\\x74\\x0f\\x30\\x44\\x9a\\xd2\\xed\\x5f\\xe8\\xe3\\xcb\\xb1\\x5b\\x9b\\xa2\\xcb\\xb3\\x93\\x7b\\xc7\\xb4\\x92\\xd6\\x34\\x67\\xde\\x18\\x91\\xf3\\x22\\x40\\x0c\\x38\\x0e\\x4e\\x49\\x51\\x70\\xe3\\x8c\\xb1\\xe3\\xbb\\xc8\\x5c\\xbf\\x99\\x30\\xb6\\x46\\x59\\x9e\\x85\\x35\\xaf\\xf3\\xba\\x5e\\x63\\x8b\\xdd\\xdc\\xa0\\x8b\\x7d\\xa0\\x7f\\x3f\\xbf\\xed\\x9e\\x77\\x97\\x1d\\x2b\\xc5\\xf3\\x50\\xc8\\xda\\xa3\\xa5\\xa3\\xc6\\xa9\\x6b\\x41\\xdd\\x64\\xcd\\x49\\xd3\\x7b\\x11\\x3c\\x33\\x2a\\x88\\xff\\x10\\xbe\\xbe\\xc6\\x62\\x3f\\x85\\x0f\\x31\\x21\\x0a\\xa0\\x71\\xb1\\xf3\\x1c\\xc2\\x42\\x47\\x81\\x3f\\xb4\\x81\\xe1\\xbf\\x6b\\x95\\x63\\xb8\\x9f\\x14\\x60\\xe8\\x4b\\x61\\x84\\xa7\\xc6\\x66\\x46\\x91\\x48\\x61\\xb4\\x6c\\x40\\x64\\xff\\x4d\\x8f\\x38\\x39\\xa7\\xad\\xa2\\x79\\xe8\\x11\\xbf\\x90\\xb3\\x6a\\x7c\\x8b\\x0f\\xdd\\xe2\\x7d\\xf7\\x99\\xa3\\x19\\x4a\\xd8\\xb7\\x12\\x82\\x84\\x18\\x37\\x5d\\x13\\x01\\x9b\\xa7\\x4d\\x62\\x12\\x4d\\x8e\\x9f\\x16\\xc7\\x65\\xab\\x18\\x84\\xc4\\x29\\x6d\\x62\\x67\\xa2\\xf2\\x5a\\xa5\\x56\\xa5\\xa8\\xb4\\x33\\x2a\\xc5\\x2e\\x22\\x4f\\x1a\\xd6\\x20\\xaf\\x34\\xdf\\xe0\\x21\\x61\\xfc\\xcb\\xdb\\xee\\x79\\xbf\\x32\\xb3\\x4b\\x79\\x85\\xc7\\xa1\\x65\\xa1\\x00\\x03\\x30\\x27\\x66\\x09\\xe0\\xc5\\x9e\\x94\\x83\\x60\\xd2\\x0f\\x82\\x22\\xde\\x37\\x39\\xf2\\xfa\\xbc\\xa4\\x89\\x5f\\x25\\x7b\\xcd\\xdf\\x1a\\xb9\\xbb\\xba\\xea\\xa6\\x30\\x60\\x40\\x06\\x19\\x93\\x3b\\xd9\\xa7\\xd2\\xd2\\xfe\\xf3\\xa5\\xc5\\x90\\x0b\\x6b\\xdc\\x18\\xc2\\x1e\\x40\\x30\\xe9\\x43\\xdf\\xb8\\xd8\\x22\\xc6\\x5e\\x47\\x3d\\x64\\xb6\\x17\\x0f\\xd6\\x29\\xe3\\x01\\x3a\\x75\\x87\\xf3\\x54\\xee\\x7f\\xee\\x2c\\x9e\\x97\\x56\\x3c\\x72\\xc1\\x80\\x62\\xfc\\x02\\x23\\x20\\xe4\\x4c\\x9a\\xb2\\xe0\\x3e\\x39\\x15\\x30\\x41\\x09\\x86\\x17\\x85\\xe7\\x5e\\xf6\\xad\\x3c\\xf4\\x65\\x09\\xcf\\xb3\\x28\\xfd\\x65\\x2c\\x02\\x7f\\xd3\\x0e\\xf6\\x7e\\x18\\xde\\x9f\\xc6\\xfe\\xf0\\x65\\x65\\x30\\xe6\\xe7\\x64\\x48\\xb4\\xca\\x9a\\x33\\x1a\\x3a\\xf1\\x7e\\x78\\x8e\\xe2\\x4c\\xa0\\x1f\\x10\\xf0\\x5c\\xab\\x9c\\x6a\\x92\\x11\\xf0\\x5c\\xa7\\x5c\\x64\\xf9\\x3f\\x81\\xc4\\xc5\\x01\\xd9\\x3c\\xa8\\x64\\x91\\xeb\\x0a\\xb4\\xa1\\xae\\x91\\xa8\\x30\\x40\\x15\\x60\\x03\\xd7\\x58\\xa1\\x38\\xd9\\x4e\\xf0\\xfc\\x34\\xe2\\x37\\x6d\\xab\\x3c\\x32\\x0d\\x13\\x54\\xda\\xc6\\xf1\\x0f\\x00\\xa4\\x0e\\xd4\\x4c\\xa0\\xae\\x54\\xd6\\x42\\x04\\xe3\\x79\\xf5\\xf0\\xd6\\xb3\\x24\\x8b\\xfa\\xd8\\x7c\\x4a\\x48\\xc3\\xee\\x38\\x1c\\x4b\\x07\\x45\\x73\\xdc\\x52\\x03\\xad\\xe4\\x97\\xd0\\x18\\x84\\x42\\x3f\\x15\\xb9\\x0a\\x5a\\x3b\\xc1\\x93\\xd2\\xca\\x06\\x0d\\x75\\x06\\xd2\\x8e\\xe5\\xec\\x49\\xe4\\xf6\\x26\\x5e\\x6a\\x1d\\x0d\\xb5\\xd1\\x2a\\x19\\xc5\\xbf\\xa4\\xc5\\x42\\x70\\x8b\\x1c\\x90\\x42\\x74\\x50\\xc0\\x27\\x75\\x2a\\xb9\\xd2\\xfd\\x20\\x40\\xc0\\x5c\\x8b\\x5a\\x71\\xa3\\x1d\\x2b\\x2c\\xd4\\x5d\\xce\\xe8\\x92\\xfd\\x02\\x7f\\x14\\xc8\\xae\\x2c\\xf5\\x5d\\x83\\xa5\\x8c\\xe4\\x6c\\x4c\\x46\\xc4\\x32\\x82\\x57\\x09\\xfd\\x2d\\x90\\x47\\x86\\x76\\x35\\x8b\\xc8\\x4b\\x20\\xa3\\x52\\xb3\\x79\\x88\\x25\\x79\\xa6\\xb3\\x08\\xaf\\xa2\\x47\\x5b\\xc5\\x63\\x7c\\x97\\x4f\\x4d\\xa6\\xd5\\xe9\\xf0\\xf2\\xbe\\xe4\\xe0\\x3d\\x3f\\x31\\xf1\\xf0\\x46\\x2d\\x3c\\xbc\\x5e\\xd1\\x56\\x44\\x6b\\xdb\\xd8\\xf0\\xb7\\x46\\x8e\\xb0\\x29\\x25\\xd9\\x94\\xfc\\x72\\x53\\xfa\\xf8\\xe4\\xb2\\xd2\\x36\\xd2\\x6e\\x96\\xb7\\x46\\xd3\\xd2\\xa1\\xb7\\x36\\x00\\xb5\\xc5\\x6c\\x35\\x77\\xba\\xd6\\xb9\\x6b\\x82\\x42\\xc4\\x96\\x62\\x4c\\xfd\\x0c\\x10\\x57\\x23\\x5b\\x6b\\x10\\xe4\\xa8\\xb6\\xb3\\x8c\\x17\\x12\\xa1\\xa1\\x98\\xa4\\xda\\x2e\\x20\\x46\\x95\\x59\\x8b\\x30\\x08\\x92\\x7c\\x6d\\x24\\x80\\xde\\xb4\\xbc\\x95\\x9a\\xa0\\x12\\x26\\x95\\xd6\\x9a\\x6e\\xd3\\x18\\x33\\x6d\\xdd\\xf4\\x3b\\x06\\x9b\\x89\\x1c\\xa9\\x67\\x39\\x49\\xba\\xed\\xbc\\xa2\\x5f\\x48\\xb8\\xb2\\xee\\xb8\\x52\\x19\\xbc\\x59\\xfc\\xfc\\x16\\xb9\\xd2\\x58\\x64\\x12\\xd7\\xb3\\xa1\\x8a\\x22\\x84\\x94\\x23\\xff\\xa2\\xec\\xf8\\x54\\x55\\xa6\\x59\\x0a\\x8a\\x0b\\x1c\\x13\\x1c\\xa0\\x1a\\x41\\xd5\\x9f\\xda\\x42\\x7e\\x12\\xc5\\xc7\\x89\\x07\\x35\\x41\\xf1\\x0d\\x39\\x5e\\x55\\xeb\\x0e\\x39\\xdd\\x06\\xb5\\xe5\\xca\\xb6\\xfc\\xf6\\xd1\\xd4\\x4c\\xb9\\xd4\\x45\\xe3\\x86\\xc6\\xd4\\xa6\\x4a\\x1f\\xb4\\x2a\\x2a\\x04\\x81\\x53\\x1f\\x71\\x2c\\xb4\\x44\\x74\\xa7\\x92\\x18\\x81\\x41\\x90\\x70\\x59\\xae\\x12\\xaa\\x72\\x67\\x92\\xbd\\x7c\\x7e\\x3a\\xbc\\x3c\\xbd\\x9e\\x4f\\xb1\\x79\\x71\\xc5\\x5e\\x63\\xfb\\xe5\\x2d\\xb6\\xb8\\xdb\\x32\\x2b\\x6f\\xeb\\xd9\\x0d\\xb4\\xdc\\x25\\xd3\\x01\\x53\\x9d\\x7a\\xd7\\xe2\\xaf\\xcf\\x8c\\x58\\xc1\\xf0\\x14\\x33\\x3e\\x90\\xa6\\x70\\xb0\\x4c\\x8c\\x2b\\x45\\x2c\\x2a\\x52\\x51\\x07\\xfc\\x19\\x47\\xfd\\xed\\xb3\\xd2\\x69\\x20\\xe9\\x2c\\x7b\\x64\\x65\\x03\\xf3\\x85\\x49\\x6a\\xe8\\xe3\\x5b\\xb9\\x49\\x37\\x3d\\xed\\xdc\\x33\\xd2\\xd3\\x7b\\x11\\x76\\xd4\\x79\\x6f\\xfb\\xd7\\xe1\\x2c\\xb8\\x75\\x51\\x2c\\xe9\\x70\\x5e\\xe9\\x94\\x07\\xdd\\x22\\xa1\\xca\\x71\\x84\\x9a\\xd5\\x43\\xc3\\x69\\xc0\\x16\\x7c\\x7d\\x4c\\xbd\\x27\\x6b\\x72\\xa2\\x56\\xe4\\x0a\\x9a\\x9c\\x85\\xc5\\x25\\x28\\xe7\\x06\\x4c\\x6d\\xe7\\x8a\\xed\\x78\\xe0\\x48\\x63\\x57\\xb9\\x60\\x22\\xd6\\x64\\x60\\x64\\xea\\xce\\x1b\\x86\\x2e\\x00\\xd2\\xab\\x53\\x10\\xc0\\xbb\\x86\\x63\\x7b\\x39\\x89\\x3d\\x71\\xa8\\x68\\x90\\x55\\x0e\\xf1\\x31\\xf8\\x15\\xe2\\x5b\\x05\\xb9\\x55\\x89\\x36\\xd0\\xe9\\x56\\x45\\xa3\\xa2\\xe0\\xcd\\x31\\xa9\\x9d\\x10\\xc9\\xf0\\x0c\\xc5\\xc5\\x0e\\x0c\\x06\\xce\\x6d\\x26\\x0f\\xed\\xe0\\x9d\\xf2\\xae\\x83\\x93\\x3d\\x23\\x05\\x46\\xc2\\x00\\xed\\x3d\\xc9\\xe8\\xe5\\xf7\\xfd\\xdb\\xeb\\xdb\\xe1\\x65\\xb9\\x19\\xcf\\x4a\\x2b\\x3e\\x10\\x76\\x7f\\x20\\x44\\x64\\x00\\x32\\x20\\xfa\\x08\\xd1\\x4a\\xbc\\x3e\\xe3\\xb1\\x81\\x9f\\xce\\x6f\\x9b\\x4c\\x72\\x4b\\xda\\x41\\xb0\\x63\\x60\\xd6\\x10\\xac\\x6d\\x05\\xf6\\x0c\\xb5\\xd5\\xa0\\xd8\\x71\\x7a\\x74\\xe0\\x4c\\x71\\x5e\\x01\\x74\\x20\\xd1\\xe0\\x90\\x84\\x1d\\x18\\x78\\x42\\xbb\\xd0\\x35\\x81\\x25\\x76\\xda\\x1d\\x40\\xd6\\xe3\\x40\\x27\\xd0\\xd5\\x37\\xd8\\x14\\xc0\\x50\\xda\\x45\\x3a\\x4e\\x73\\xe0\\xfd\\x1d\\x28\\xb0\\xb1\\x73\\x5b\\x1f\\x13\\x84\\x75\\xbb\\x8d\\x16\\x5f\\xfc\\xd6\\x05\\xc4\\x31\\xa7\\xad\\x35\\x21\\xb1\\xec\\x04\\x08\\x89\\x56\\x71\\x5c\\x82\\xf2\\x00\\x6c\\x50\\x1c\\x30\\x16\\x94\\x57\\xb4\\xca\\x7b\\x15\\x72\\x47\\x2d\\x6a\\x55\\xd6\\xa4\\x73\\x68\\xfa\\x96\\xbb\\x1c\\x11\\x70\\x1d\\x10\\x9d\\xc9\\xa8\\x6f\\x21\\x15\\xa1\\xc0\\x72\\x54\\x26\\x23\\xd9\\x98\\x91\\x94\\x20\\xcc\\x10\\xaf\\x82\\xbc\\x36\\x55\\x4c\\xf7\\x0c\\xea\\xec\\x44\\x44\\xa7\\x3e\\x62\\xae\\x75\\xe6\\x9d\\x89\\xad\\x72\\x34\\x91\\x42\\x07\\xa0\\x37\\x3e\\xa2\\xc9\\x89\\x5c\\x80\\x0e\\x81\\xd8\\x89\\x16\\x4c\\x34\\x16\\xc1\\xd9\\x1e\\xf1\\xd9\\x92\\x00\\x42\\x6a\\x7a\\xf0\\x4a\\x8b\\x33\\xcc\\xa5\\x6d\\xf4\\xd1\\x2a\\xd7\\x6e\\x4d\\xa2\\x57\\x84\\xda\\x14\\xe8\\xa3\\xcb\\xdb\\x1c\\x30\\x0d\\xad\\xd9\\xc6\\x68\\x8d\\x8a\\x5b\\x8b\\xf4\\x09\\x6a\\x50\\xe8\\x38\\xea\\xdb\\x56\\xdc\\x32\\x3c\\xcc\\xf0\\x7e\\x22\\xdb\\x0a\\x0d\\x3d\\x5e\\x44\\x3c\\x48\\x31\\xb0\\x0f\\x6d\\x82\\x96\\x29\\x0e\\xbd\\x06\\xa9\\x8c\\xd7\\x2a\\x5b\\x64\\x83\\x79\\xd0\\x2c\\xd2\\xbf\\x91\\xea\\x0a\\xf2\\xf8\\x46\\xeb\\x8f\\x4f\\xa6\\x4d\\xca\\x91\\x72\\xa9\\xb8\\x98\\x1a\\x68\\xeb\\xcc\\x37\\x8c\\x73\\xe6\\x2c\\x92\\x4a\\xb4\\x47\\xc2\\x98\\xb1\\x88\\xd4\\x37\\x56\\x65\\xea\\xbf\\x60\\x95\\xa7\\x0d\\x01\\xa1\\x24\\xf4\\xb9\\x19\\x81\\x75\\x0b\\x46\\x40\\xcd\\x91\\xec\\x9c\\x62\\xe2\\x25\\x53\\x06\\xd8\\x4c\\x35\\x25\\x85\\x76\\xf2\\x0e\\x12\\x21\\x8d\\x09\\xd6\\xc8\\xac\\xb2\\x1b\\xe9\\x03\\x22\\x37\\x7d\\x66\\x27\\xac\\xf8\\x01\\x2a\\x28\\xd5\\x8d\\x16\\x6b\\x24\\xe2\\x61\\x97\\x07\\xcc\\x23\\x3d\\x94\\xc4\\x3c\\x27\\x37\\x06\\xc4\\x4a\\xd7\\x70\\xdf\\x21\\x17\\x05\\x7c\\x60\\x1f\\x9f\\xe8\\x55\\x6e\\x7d\\xd7\\xa4\\x6d\\xd2\\x3a\\x46\\x8e\\xca\\xdf\\xa6\\x4c\\x02\\xd1\\x36\\x39\\x8f\\xe4\\x19\\x1d\\x3a\\x92\\xfd\\x5a\\xe5\\x12\\xb5\\x30\\xb5\\x2a\\xb6\\x5d\\x88\\xa0\\xde\\x27\\x49\\xcc\\x2b\\x63\\x5a\\xd5\\x6e\\x3a\\x18\\xa3\\x03\\xb6\\x09\\x9b\\xf1\\x9e\\x85\\xdc\\x59\\x7a\\xa2\\x91\\x57\\x88\\xea\\x31\\x96\\x41\\xd4\\x5e\\x7a\\x98\\x26\\x2a\\xad\\xf2\\x11\\x5a\\x7d\\x30\\x78\\x1d\\x21\\x2d\\xda\\xcc\\x49\\x16\\x2d\\xb3\\x0d\\x65\\xde\\x2d\\x68\\xed\\xa4\\x35\\x2e\\x5a\\xbc\\xf2\\x0d\\xdf\\x99\\xb7\\xdd\\xa4\\x1a\\xf7\\xf1\\xc9\\xa6\\x56\\x39\\xe0\\x38\\x62\\x66\\xc8\\x98\\xb2\\x28\\xc4\\x31\\x3c\\x16\\x03\\x90\\x95\\x6d\\xc7\\x26\\xd9\\x32\\x20\\x99\\xc5\\x4c\\xad\\xb7\\x21\\xd3\\xee\\x15\\xb7\\xad\\x86\\x50\\xa2\\xb7\\xc1\\x66\\x1a\\xc8\\x6d\\xcb\\x61\\xe3\\xad\\xd2\\x79\\xd3\\x39\\xc8\\x2f\\x09\\x94\\xad\\x9a\\x26\\x89\\xe9\\xc0\\xe1\\x95\\xe4\\x12\\xe0\\x69\\x9b\\x2e\\x6f\\x75\\xeb\\x31\\x11\\xb7\\x2e\\x58\\x6b\\x95\\xdf\\x9a\\x96\\x33\\x23\\x5b\\x26\\x87\\xbc\\x27\\x0a\\xbc\\x8d\\xef\\x97\\x82\\xc0\\x54\\x38\\xe7\\xbd\\xea\\x25\\xb0\\x8b\\xe3\\xaf\\x40\\x72\\x94\\x6d\\xe5\\xd4\\xad\\xb9\\xdd\\x08\\xb4\\x9f\\x32\\xbb\\x4b\\x72\\xf9\\xbd\\xdc\\xee\\x2f\\x87\\xf7\\x97\\xfd\\x38\\x8a\\xb9\\x6c\\x51\\x9d\\xe5\\x09\\x09\\x3b\\xa4\\x39\\x2a\\x74\\xf5\\x7a\\xc9\\x5e\\xaf\\xa7\\xfa\\x30\\x1c\\x6b\\x39\\x5b\\x0e\\x97\\x67\\x63\\x50\\x40\\xe8\\x48\\x56\\x69\\x52\\x58\\x78\\x1d\\x64\\x21\\x5e\\x17\\xee\\x7b\\x3e\\x60\\xd0\\x96\\xc5\\x19\\x81\\x82\\xe5\\x33\\x72\\xb0\\x38\\x53\\xee\\xa7\\x31\\x19\\x92\\x95\\xe7\\x71\\x4d\\x6f\\xf7\\xc8\\xb0\\xfb\\x7d\\xde\\x0f\\x38\\x94\\x6c\\x70\\xa4\\x59\\xf4\\xda\\x08\\xac\\x72\\xa3\\x7d\\x3b\\x34\\x49\\x71\\x12\\x74\\xcb\\xa1\\xd4\\x8d\\x33\\x27\\x70\\x56\\xe7\\x3b\\xb1\\x87\\xc3\\x6e\\x91\\x82\\x2d\\xc7\\xac\\x62\\x80\\x8f\\xb5\\x7a\\xd7\\x25\\xdb\\x98\\x94\\xb6\\x56\\xd1\\x33\\x5d\\x50\\x2e\\xd4\\x61\\x46\\x2a\\x2b\\xcd\\x0b\\x1d\\x80\\xd9\\xcb\\x1d\\xc1\\xa5\\x13\\x8a\\xee\\xcf\\xb1\\x7e\\x16\\xd0\\xee\\xea\\x30\\xe7\\x24\\x70\\x9a\\x94\\x02\\x67\\x38\\x7b\\xae\\x95\\x9a\\xb2\\x92\\xed\\xb2\\x5e\\x20\\x58\\x31\\x38\\x64\\x0e\\xca\\x4e\\xd5\\xdc\\xe0\\xf7\\x4e\\xda\\xc0\\xd8\\x91\\x15\\xe6\\x59\\xf2\\xcd\\xef\\x86\\x9a\\x0d\\xbb\\xb1\\x7f\\xda\\x7d\\x7d\\x3f\\x2e\\x7b\\xb7\\x16\\x8a\\x40\\x98\\x95\\x75\\xb9\\xf7\\x00\\x14\\x56\\xb1\\x98\\xbd\\x43\\x1e\\x42\\x16\\x0c\\x59\\xa7\\x01\\x63\\x08\\xdb\\x7f\\x62\\x44\\x43\\xf8\\x9b\\xf4\\xc0\\x61\\xd6\\x7d\\x89\\x07\\x08\\xb9\\x37\\xda\\x0a\\x60\\x53\\x36\\x7d\\xf2\\x62\\xd2\\x46\\xa4\\x3d\\x63\\xf6\\x9e\\xee\\x66\\xbf\\xa0\\x8a\\x4b\\x04\\xf7\\x59\\xd9\\x14\\xda\\x90\\xf3\\x00\\x14\\x5b\\x1f\\x07\\x86\\xd8\\x4a\\xfa\\xe4\\x42\\x6f\\x34\\x49\\xfb\\x81\\xed\\xe8\\x29\\x7c\\x7c\\xa2\\x9d\\xdf\\xa5\\xc1\\x42\\x9e\\x00\\x37\\x40\\x64\\x28\\xf7\\x94\\x54\\xca\\x03\\x47\\x3b\\x5a\\x5d\\x2b\\x18\\xf3\\xd0\\x14\\x1a\\xc5\\x07\\x2a\\xfa\\x72\\x59\\xcf\\x97\\x19\\x12\\x28\\x77\\xca\\xa2\\x4a\\xd4\\x85\\xed\\x59\\xa7\\xd8\\x3b\\xf9\\x00\\xc3\\xe1\\xf7\\x7e\\x21\\x75\\x4a\\x81\\x90\\x7d\\x00\\x50\\xf6\\xa3\\xd0\\xf3\\x33\\x5a\\xa2\\xb7\\xa7\\x46\\xeb\\x38\\x70\\xba\\xcc\\x09\\x41\\xf0\\x91\\x5e\\x28\\xd8\\x41\\x1b\\xa3\\x4f\\xd6\\x0c\\x0e\\x8e\\x5b\\xba\\x0c\\x94\\x1d\\xcc\\x90\\x32\\x80\\xae\\xa3\\x8d\\x27\\x4e\\x6e\\x59\\x7a\\x7e\\xc7\\x33\\xe7\\x2c\\xfd\\xb6\\xc0\\x34\\x9e\\xee\\x71\\x76\\x70\\xb5\\x9f\\x86\\xdd\\x32\\xa5\\x6a\\x5e\\x3a\\xe3\\x12\\x75\\x5d\\x13\\xd2\\xd6\\xd8\\x60\\xc0\\x25\\x18\\x20\\xab\\xda\\xb8\\x6d\\x1d\\xb2\\xcf\\xb3\\xc7\\xdc\\x6a\\x49\\xe0\\x1c\\x48\\xc0\\xd5\\xed\\x49\\x6b\\x5e\\xfb\\xd2\\x60\\x38\\x1f\\x1f\\x6a\\x1d\\xd8\\xae\\x03\\x98\\x2a\\xb5\\x1e\\x3c\\x4f\\xec\\x41\\x73\\x86\\x33\\x68\\xa6\\x58\\xae\\x64\\xdc\\x08\\x24\\x0e\\x95\\x1c\\x5f\\x91\\xc7\\xc0\\xa0\\x60\\x3e\\x3e\\x79\\x60\\x9b\\xf7\\xae\\x2d\\xf8\\xae\\x6d\\xb8\\x07\\x37\\x27\\xad\\x7b\\xdf\\xfd\\xb1\\x3f\\x9f\\xd5\\xcb\\x13\\xbc\\xb7\\x44\\xda\\x17\\x02\\x72\\x57\\x23\\x8b\\x8a\\x62\\x3e\\xb0\\x19\\xdd\\x11\\x63\\x02\\x39\\xfa\\xd6\\x18\\xe4\\x0d\\xda\\xb8\\xf5\\x2d\\xc8\\x6a\\xb6\\x2e\\x4b\\x7f\\x34\\xd4\\x21\\xd2\\xbc\\x81\\x45\\x7f\\xda\\xff\\xa9\\x0f\\x95\\xd5\\xdb\\xdc\\x32\\x03\\x04\\x93\\x42\\x06\\xbb\\xcd\\x29\\xb0\\x9a\\x92\\x03\\xf5\\x5e\\x42\\xd4\\xa6\\x35\\xe8\\x3c\\x52\\xeb\\x52\\x22\\x99\\x88\\xfa\\x4f\\xeb\\x81\\x33\\xbf\\x6c\\x1c\\x34\\xcd\\x02\\x74\\x1f\\x67\\x3c\\x06\\xc5\\x3c\\x13\\xdf\\xdb\\x4b\\xaf\\xcb\\xbe\\x99\\x43\\xe7\\xb0\\xcf\\xd1\\xd9\\x75\\x27\\x93\\x00\\xfc\\xb0\\x31\\x7a\\x82\\xb9\\x9f\\x98\\xa1\\x17\\x70\\xf7\\xe2\\xbb\\x62\\x80\\xc6\\x79\\xb1\\x6c\\x37\\x2e\\xb6\\xec\\x8d\\x8d\\x2d\\x6f\\x37\\xd7\\xfd\\x56\\xe2\\xc2\\x2d\\xd6\\xdf\\x5b\\xde\\x29\\xb8\\x0c\\xef\\x92\\x88\\x17\\x78\\x27\\xf6\\xe9\\x6f\\x16\\xd5\\xa3\\xc6\\x94\\x7e\\xa8\\xa5\\xf7\\xba\\xf4\\xe9\\xfd\\xf8\\x74\\x9e\\x48\\xb4\\x28\\x9e\\x90\\x0e\\x2f\\x3b\\xe4\\x4a\\xf7\\xe9\\x56\\x22\\x48\\x48\\x1c\\x9b\\xb0\\x8b\\x61\\xe2\\x58\\xc9\\x66\\xf1\\x0c\\x76\\xb0\\xe8\\xf4\\x5b\\xe3\\x28\\xf1\\x0c\\xe7\\x03\\xb6\\x32\\xbc\\x08\\xcc\\x76\\x79\\xed\\xb1\\xf2\\x73\\xd9\\x72\\x5d\\x3a\\x47\\x63\\x96\\x31\\x5d\\x43\\xdf\\xab\\x83\\x2a\\x21\\x31\\x17\\x40\\xce\\xd9\\xcc\\xee\\x68\\x2f\\x90\\x96\\x24\\xbb\\xe1\\x92\\x95\\x41\\x43\\x36\\xb0\\x67\\x1c\\x0e\\x8f\\x8c\\xe0\\x97\\xb7\\xe3\\xcb\\xfb\\xca\\x10\\x4a\\x79\\xdd\\x6c\\x2e\\xa6\\x07\\xe6\\xb4\\x94\\xd6\\x86\\xc8\\x58\\x14\\x7a\\x0c\\xe6\\x4c\\xd0\\x20\\x4f\\xb8\\xe3\\xf4\\xd6\\x57\\x06\\x0e\\x37\\x59\\x1f\\x7d\\x7d\\xd9\\x41\\x7d\\xcd\\x3f\\xbe\\xac\\x6f\\x70\\x6b\\xe3\\x4f\\x33\\x2e\\xac\\x26\\x4b\\xf5\\xce\\x6e\\x4e\\xe5\\x97\\x2b\\x53\\x38\\xb8\\x95\\x89\\x73\\xb3\\xcb\\x8f\\xc3\\x59\\x92\\xaa\\x14\\x54\\x5a\\x2d\\x67\\x78\\x4f\\x05\\x30\\x9a\\x5e\\xf7\\x17\\x7e\\x07\\x52\\xfd\\x1a\\xf4\\xf0\\x5d\\x19\\x0f\\x75\\x7b\\x3a\\xbe\\xee\\x5f\\x2e\\x6a\\x2c\\xa5\\x73\\x20\\x15\\x1e\\x6f\\xcb\\xb0\\xbf\\x76\\x72\\x7b\\xda\\xe4\\xfe\\xee\\x66\\xcc\\x7a\\xec\\x91\\x16\\x8d\\xfd\\xee\\x6d\\xff\\xf9\\xb2\\x4d\\xa5\\x7c\\x72\\xbb\\xbb\\x7c\\x02\\xc1\\xab\\x61\\x74\\x01\\x61\\x0b\\x76\\x86\\x1d\\x0f\\xda\\x15\\xf2\\x60\\x50\\xff\\x33\\x01\\x0c\\xc7\\x4c\\xcd\\x16\\xe0\\x0b\\x9a\\x4e\\x23\\xd1\\x52\\xe3\\x55\\x4a\\xae\\x5f\\xb6\\xe3\\x5e\\xf7\\xdd\\x61\\x37\\xac\\xf4\\x5c\\x39\\x21\\xfe\\x72\\xcb\\x60\\x88\\x3a\\xaa\\xa8\\x07\\xef\\x95\\x4b\\x03\\xcc\\x14\\x03\\x14\\xa2\\x38\\xb0\\x32\\x14\\x51\\xd8\\x04\\xa4\\xac\\xd1\\x25\\x24\\x93\\x44\\x3d\\x04\\xab\\x6c\\xfc\\x05\\xfb\\xe0\\xe5\\x7d\\x35\\xf1\\x68\\x59\\x2e\\xe0\\xd1\\x48\\xe4\\xee\\xc1\\x45\\xde\\x92\\x7a\\x45\\x1a\\x59\\xcb\\x07\\x0d\\x1d\\x39\\x3f\\xc0\\xf9\\x42\\x8a\\xee\\x3f\\x08\\xec\\x45\\x52\\x9d\\x31\\xb0\\x5a\\x6b\\x9d\\x98\\x27\\x41\\xa7\\xbe\\x49\\xf7\\x96\\x82\\xb7\\xe7\\xdd\\xfb\\xd3\\x6e\\x38\\xfc\\xfe\\xb2\\x62\\xc6\\x58\\x3b\\x8b\\x7e\\x20\\xc9\\xc5\\xa5\\x4b\\x6f\\x3d\\xe8\\x0a\\xc0\\xa8\\xe3\\xe6\\x28\\x8f\\xf3\\x15\\x95\\x7f\\x63\\xf0\\x1b\\x94\\xf3\\x72\\x3e\\xbf\\x95\\x30\\xdc\\x65\\x73\\x71\\x9f\\x87\\xdb\\xf2\\xff\\x7d\\x1d\\xdf\\x0f\\x5f\\xfe\\xba\\xd6\\x98\\x7a\\xfa\\x66\\x6b\\xa6\\x6d\\x65\\x59\\xbb\\x1b\\x8d\\x91\\xcd\\xe4\\xe2\\xfa\\x95\\x46\\x3e\\xdc\\x96\\x61\\xbf\\xf4\\xe3\\x5f\\x9e\\xbb\\xd7\\x8a\\xb5\\x2e\\xbe\\xd6\\x08\\x2c\\x74\\x45\\xde\\x20\\x39\\xcd\\x49\\x58\\x4c\\xc9\\x5e\\x38\\x3f\\xf1\\x70\\x3b\\xde\\xce\\xb5\\xd1\\x95\\x93\\xb7\\x67\\x17\\x89\\x42\\x3c\\x20\\x73\\x01\\xf2\\x7a\\x5b\\x44\\xd4\\x5b\\xfd\\xc1\\xf7\\x8d\\xc8\\x6f\\xc7\\xe1\\xf3\\x65\\x13\\xb8\\x94\\xf7\\xfa\\x04\\xd8\\xed\\x3b\\x7c\\x27\\x9c\\xac\\x1a\\x5c\\x0f\\x18\\x44\\x4d\\xeb\\xa2\\x2d\\x74\\xf9\\xf7\\x7e\\x09\\x4b\\x92\\xb5\\xca\\x24\\x03\\xb6\\x52\\x12\\x2e\\x02\\xbb\\x78\\x60\\x07\\x2e\\xe4\\x6e\\x88\\x45\\x10\\x9c\\xf1\\xa4\\xfb\\x46\\x7b\\x8d\\x58\\x17\\x6d\\x5d\\xe7\\x92\\x18\\x66\\x8b\\xd7\\x9d\\xe3\\x36\\x05\\xc9\\x1b\\xbf\\xf6\\xaa\\xf1\\x77\\x42\\xad\\xb8\\xf1\\xdd\\xb0\\xdf\\xad\\xac\\x1a\\x52\\x5c\\xad\\xb1\\xae\\xf5\\x08\\x69\\x45\\x0e\\xba\\x36\\x8e\\x35\\xcc\\x24\\xb8\\xd2\\x6e\\xd0\\xa4\\x9d\\xf7\\x8d\\x67\\x8e\\xbb\\xd0\\x9e\\x1c\\x1b\\x61\\x5a\\x3f\\x90\\x6a\\x3a\\xd8\\x36\\x91\\x62\\x9a\\x27\\x4b\\x0c\\x5c\\x0b\\x88\\x88\\xb0\\xaa\\x89\\x40\\x61\\x1d\\xe0\\x60\\xb0\\x43\\x03\\xcf\\xde\\x1d\\xfa\\xf5\\x52\\xd1\\xe3\\x70\\x7c\\x7b\\xfa\\x72\\x18\\x86\\x95\\x46\\xcc\\xce\\xa1\\x25\\xd4\\x6b\\xbd\\xd7\\x1c\\x2d\\xd8\\xd0\\x97\\x12\\xa3\\x68\\x42\\xec\\x5a\\x91\\x7e\\x5d\\xe4\\x10\\x8e\\x2b\\xe1\\x8d\\xe3\\x62\\x03\\x63\\x31\\xc4\\x19\\x15\\x3d\\xff\\xfd\\xf8\\xa4\\x01\\x40\\x92\\x7b\\xd3\\x62\\x9f\\x21\\xbd\\xd8\\x30\\x32\\xb3\\x35\\xba\\xd3\\x0c\\xdf\\xad\\x99\\x8f\\xa9\\x65\\x3b\\x71\\x85\\x15\\x21\\xe5\\x3f\\xb0\\x6f\\xa0\\x00\\x5e\\xc2\\xb1\\x12\\x14\\x60\\xf0\\x14\\xf8\\x92\\x74\\xe2\\xf0\\x41\\x61\\xac\\xd7\\x30\\xda\\xb7\\xca\\xf9\\x01\\x60\\x23\\x74\\x8d\\xd7\\xca\\x6b\\x26\\x07\\x7b\\xbc\\x17\\xdf\\xf6\\xe3\\x7e\\xe5\\x15\\x5f\\x9c\\xe4\\x19\\xa1\\x8d\\x72\\x6d\\x3b\\x58\\xb8\\x42\\xb4\\x99\\x46\\xd5\\x47\\x25\\x6e\\x6f\\x76\\x08\\x48\\x90\\x3f\\xe2\\x54\\xcc\\xf5\\x70\\x42\\x13\\x80\\x05\\x16\\xa9\\x2f\\x53\\x02\\x39\\x4a\\xd4\\x82\\xfa\\xce\\x32\\x05\\xbc\\x1a\\xbc\\xd7\\x5a\\xc6\\x57\\x61\\xfb\\xb9\\xeb\\x2c\\x46\\xcd\\x27\\x1a\\x01\\xfc\\x1d\\x85\\xf6\\x2b\\x70\\x1e\\xb5\\xb9\\x67\\xf5\\x9e\\xb7\\xf2\\x7d\\xff\\xaf\\xab\\x3d\\xc0\\xe7\\x84\\xa2\\x18\\xa8\\x08\\xbd\\x6e\\x0d\\xfa\\x5a\\x5b\\x2f\\x51\\x3a\\x2e\\xf5\\xce\\x0c\\x18\\x4f\\xe6\\xa4\\x4b\\x40\\x9f\\xc6\\x6b\\x63\\xdd\\xd0\\x70\\xfc\\x0a\\x95\\x7f\\xac\\x4f\\xc7\\x07\\xaa\\x7a\\x78\\xf9\\xbc\\x27\\xe9\\x66\\xdf\\xbd\\xed\\x77\\xe3\\xfe\\xb2\\xbe\\x17\\x17\\x4c\\xa6\\x75\\x89\\xde\\x2b\\xf0\\xd3\\x13\\xcf\\x82\\xac\\xcc\\xba\\xec\\x1d\\x5a\\x4c\\x1c\\xdf\\xb8\\x29\\x79\\x09\\x77\\x14\\x6c\\x66\\x20\\x22\\xc9\\x1a\\x3e\\xbf\\xf5\\xe3\\xad\\x3c\\xbc\\xdc\\x69\\xe5\\x74\\xc1\\x4f\\x6e\\xe5\\xb5\\xba\\x43\\xb2\\x70\\x5a\\x02\\x3a\\x2b\\x58\\x0a\\xda\\xfb\\xdd\\x5b\\xd3\\xe1\\x7d\\x37\\x1c\\xba\\x95\\x46\\x4a\\xf9\\x5c\\x15\\x65\\x58\\x55\\x20\\x55\\xb7\\x2c\\xac\\xeb\\xa8\\x7b\\x17\\x65\\x75\\x8e\\x1a\\xdc\\x31\\xed\\x10\\x0d\\xe7\\x47\\xb9\\x78\\xba\\x03\\x69\\x2d\\x0f\\x1b\\x0e\\x2f\\xfb\\xa7\\xf1\\x75\\xd7\\x1d\\x5e\\x7e\\xbf\\xac\\xca\\xf2\\xec\\x44\\x39\\xbd\\x16\\x10\\x3a\\x23\\x84\\xbc\\x3c\\x81\\xcd\\x64\\x56\\x7a\\x9a\\x73\\x45\\x02\\x40\\xd9\\x5b\\x36\\x58\\x47\\x37\\x30\\xde\\x13\\xa0\\x37\\xb4\\xeb\\x1b\\x6f\\x07\\x14\\x0c\\x7c\\x9a\\x0a\\x1e\\x6b\\xd9\\xf8\\xfe\\xf4\\xdb\\xd7\\x61\\xd8\\xbf\\xef\\x57\\x44\\x80\\xb3\\xd3\\x93\\x25\\xbf\\x6c\\x7b\\x12\\x20\\x7a\\x2a\\xac\\x5e\\xa5\\xd1\\xb3\\x73\\x95\\xd9\\xf9\\xf2\\x44\\xf2\\x4a\\x87\\x76\\x96\\xe7\\xe4\\x45\\x24\\x60\\x60\\xc9\\x29\\x15\\x0a\\x4c\\x6a\\x52\\xc4\\x3c\\x6a\\xc5\\x04\\x8f\\x9b\\x38\\x1d\\x56\\x92\\xa5\\xc6\\xb3\\x7c\\xaa\\x71\\x91\\xa1\\x75\\x71\\x13\\x93\\xd2\\xca\\x4d\\x36\\xdf\\x70\\x97\\x47\\xfb\\xfb\\xe5\\xeb\\xf3\\x6f\\xfb\\x73\\x9d\\x7e\\xed\\xf4\\x9c\\x99\\xf7\\x1b\\xba\\xf5\\xea\\x08\\x31\\x2e\\xf0\\xc9\\x30\\x9d\\x92\\x69\\x99\\x69\\xcc\\xb9\\xde\\x66\\xd8\\x04\\xe0\\x7e\\x69\\x07\\x9b\\x94\\x73\\xf4\\x86\\x96\\x57\\x5a\\x60\\xe0\\xe9\\x87\\x02\\x2d\\xc8\\xd4\\x21\\x56\\x6c\\x0e\\xb8\\x1d\\x95\\xd2\\xef\\x71\\x8d\\x6e\\xcb\\x0f\\x8c\\xc6\\xc1\\x3d\\x67\\x08\\xb7\\xff\\x75\\x77\\x16\\x50\\xb4\\x28\\xae\\xe1\\xed\\x0e\\x8c\\x9a\\x42\\x67\\x84\\x97\\x5e\\x67\\x73\\x85\\xd9\\xdb\\xd9\\x35\\x62\\x6f\\x63\\x3d\\x16\\xaf\\xe4\\x4b\\xae\\xcf\\x35\\xfa\\x3c\\xda\\xb6\\xe5\\xf7\\x82\\x95\\x43\\x3a\\x29\\xe7\\x5f\\x30\\x7a\\x0e\\x83\\xe7\\x18\\x4d\\xef\\xee\\x1a\\x47\\xfa\\x3d\\x84\\x14\\x6e\\xe3\\xff\\x7c\\x5d\\xd2\\x23\\x2c\\x8b\\xab\\x27\\x48\\xbb\\x3c\\x38\\xa3\\xa4\\xb3\\xe7\\xd8\\x1f\\x03\\x14\\x6d\\x3e\\x21\\xe4\\xb0\\x74\\xad\\xbd\\x72\\xad\\xad\\xd7\\x3e\\x50\\xb9\\xb1\\xdf\\xbd\\x2e\\x13\\x0f\\x96\\xe5\\x5c\\x3d\\x93\\x94\\x71\\x6d\\xef\\x99\\x22\\x3a\\x91\\x02\\x0f\\xb4\\x52\\xdb\\x03\\x21\\x07\\xce\\x52\\x52\\x62\\xfc\\xc0\\x24\\x8c\\xbd\\xc5\\x5a\\xcc\\x9e\\xd5\\xc2\\xf3\\x47\\x13\\xb7\\xe6\\x62\\x9e\\x6a\\x56\\x23\\xef\\x1e\\x8b\\xc4\\xbe\\x50\\x97\\x52\\x26\\xe2\\xaa\\xb9\\x64\\x85\\x86\\xb9\\x90\\x7a\\x15\\x16\\x7d\\xd0\\x32\\xb3\\xfd\\xf4\\xfc\\x66\\xbc\\xd7\\x9d\\x27\\x82\\xba\\x0c\\x1c\\xe3\\x5e\\x8c\\x38\\x1c\\x78\\x51\\x42\\xe7\\x4e\\xa2\\xc1\\x6f\\x26\\xa8\\x09\\xb8\\xb0\\x65\\x41\\xe6\\x44\\x67\\xf1\\x8a\\xb3\\xed\\x80\\x2d\\x38\\xa7\\xfb\\xc8\\x28\\xd2\\xb9\\x87\\x8f\\x95\\x09\\xc1\\xa5\\x45\\xa3\\xa4\\x5d\\x22\\xb8\\x1e\\x1a\\x6c\\x61\\x4b\\x43\\xc8\\x01\\x0d\\x38\\x7f\\x8a\\x95\\xde\\xc4\\x1e\\x76\\x78\\x6c\\x85\\x6d\\x90\\x00\\x12\\x76\\x42\\x33\\x2b\\xcc\\x83\\x53\\xe1\\xfd\\xed\\xf0\\xc7\\xfe\\xbd\\x7f\\x3b\\x7e\\xfd\\xbd\\x5f\\xa9\\xde\\xf2\\x74\\xad\\x27\\xe3\\xb0\\x9d\\xd9\\x43\\xda\\xc8\\xf5\\xca\\x69\\x56\\x2f\\xfa\\x92\\xd0\\x2a\\x1c\\x83\\xda\\x56\\x76\\xcd\\xe0\\x90\\x2e\\xc1\\x57\\x3c\\x52\\x59\\x12\\x4d\\x3f\\x1f\\xde\\xf6\\xdd\\xfb\\xe1\\xf8\\xf2\\x34\\x3c\\xbd\\x1f\\x9f\\x56\\x94\\xba\\xf5\\xab\\xa6\\x74\\x0a\\xb8\\xfd\\x58\\x98\\xc1\\x42\\xe8\\x43\\xd9\\xbf\\x4b\\xef\\x22\\x47\\x02\\xd1\\xdf\\x0d\\x87\\x7f\\x4b\\xc4\\x77\\x09\\x04\\x27\\x81\\xb6\\x62\\xbe\\x63\\x32\\x59\\x4e\\xe3\\xe2\\x4f\\x33\\x15\\xdc\\xf5\\xb4\\xaf\\x55\\xf9\\x8d\\xaa\\xbc\\xa2\\xe8\\xad\\x5f\\x35\\x11\\x4c\\xb9\\xbc\\x94\\x37\\x48\\xd7\\x6c\\x52\\x40\\x56\\x4e\\x80\\xb0\\x5a\\x7a\\xff\\x3b\\x1b\\x68\\x4e\\xa5\\x5d\\xdf\\xda\\xc0\\xaf\\x2f\\x9f\\xf7\\x6f\\x24\\x59\\xad\\xec\\x92\\xf3\\x73\\x13\\x5c\\x51\\x1b\\x2f\\xe1\\x8a\\x10\\x98\\xef\\xf2\\x15\\x05\\x0b\\xd0\\x35\\x08\\x0d\\x00\\xb0\\x6d\\xe3\\x34\\x92\\x25\\x90\\x19\\x45\\x1f\\x63\\xf4\\xca\\x5a\\x05\\xb9\\xea\\xfc\\xda\\x08\\x74\\x68\\x55\\x49\\x34\\x1e\\x80\\x50\\x3d\\xbe\\x7d\\x7d\\x5e\\x36\\x86\\x8e\\xa7\\x20\\x0e\\x5f\\x88\\xae\\x1a\\x81\\x64\\x93\\x8d\\x08\\xd2\\xb5\\xcc\\xc0\\x20\\x69\\x37\\xa0\\xc3\\x62\\x36\\x2c\\xda\\x78\\x62\\x94\\x8d\\x07\\x1b\\x18\\xff\\x0c\\x9b\\x22\\x2f\\x9e\\x36\\xb9\\xb5\\x8d\\x09\\x98\\x52\\x3c\\x76\\x34\\x3c\\x6b\\xfb\\x24\\xad\\x5c\\x31\\x22\\x36\\xe3\\xbe\\xa1\\xf2\\x1c\\x96\\x76\\x89\\x48\\xcb\\x84\\x27\\xa7\\x14\\x86\\x02\\xa5\\x35\\x54\\x50\\x2d\\x40\\xc2\\x03\\x57\\x2a\\xb6\\x0f\\x98\\xb6\\x71\\xdf\\x27\\xdd\\x5e\\x3e\\x4c\\x60\\x92\\xe8\\x6f\\x5b\\x93\\xff\\x93\\x51\\x3a\\x71\\x1c\\xed\\xd6\\x04\\x6f\\x55\\xd8\\x5a\\xe3\\x61\\xbe\\xc7\\x8e\\x1e\\x3b\\x60\\x34\\xab\\x56\\x45\\x65\\x06\\xa7\\xfc\\x68\\x94\\x53\\x46\\x05\\xce\\xf0\\xa6\\x2e\\x81\\x99\\x41\\xc1\\x24\\xbf\\x8d\\xde\\x04\\xad\\x9a\\xb4\\x35\\x9a\\x74\\x6d\\xc6\\xf9\\x9d\\x22\\x11\\x05\\xcb\\xd8\\x0e\\xc8\\xf6\\x19\\x1b\\xa6\\x24\\xb3\\xaa\\x81\\xa9\\x6e\\xc4\\x21\\x1d\\x7d\\x7c\\xb2\\xe0\\x58\\xce\\x1c\\x33\\xda\\xd6\\x54\\x0a\\x1d\\x07\\xd8\\x3a\\xec\\xd8\\x70\\xd4\\x83\\xd6\\xc0\\xd7\\xce\\x7c\\x96\\x2e\\xa2\\x03\\xfe\\x81\\x19\\x1b\\xd8\\x40\\x74\\xab\\xc2\\xa6\\x6b\\xc2\\x36\\x3a\\xd7\\x5a\\x65\\xb7\\x36\\x9a\\x16\\xb3\\x41\\xe7\\x6d\\x74\\x01\\x03\\x6f\\xdb\\x13\\x42\\x54\\x85\\x33\\x81\\xd4\\xa0\\x21\\x2a\\x6d\\xc7\\xa0\\x02\\xf5\\x44\\x18\\xb3\\x42\\x32\\x88\\x19\\x73\\xa1\\x55\\x18\\xc1\\x02\\xc1\\x55\\xa0\\x97\\x43\\x71\\xd5\\x18\\x80\\x1d\\xb5\\x3d\\x35\\x1a\\x5a\\xbe\\x65\\xad\\xca\\xb4\\xa7\\xd8\\x02\\x5b\\xb2\\x09\\x27\\xed\\x19\\x78\\xb2\\xb7\\xa7\\x26\\x6b\\x96\\xb3\\x91\\xc7\\x50\\xb0\\xd7\\x5a\\xc1\\x5e\\x6b\\x31\\x31\\x2e\\xb8\\x76\\x4e\\x29\\x74\\x4d\\x6c\\xcb\\xcb\\x0b\\xd8\\xed\\xf2\\xb6\\x6d\\x46\\x5f\\xf9\\xd1\\xf9\\x0b\\x2c\\x1c\\x3e\\x09\\xeb\\x7a\\x12\\xe7\\x7a\\x76\\xea\\x87\\x61\\xdc\\x64\\x76\\xd9\\x6b\\x53\\xce\\x2e\\xa7\\xdc\\xcf\\x6c\\xe6\\xcf\\x6d\\xe5\\x27\\x93\\xdc\\xcf\\x7a\\x1b\\x36\\xdf\\xf3\\x3a\\x18\\x26\\x15\\x29\\xaf\\x03\\x0e\\x8d\\xbc\\x0e\\xe1\\x3b\\x5f\\x07\\x30\\x92\\x68\\xc3\\xbf\\x0a\\x5b\\xed\\xb2\\x55\\x6e\\xeb\\xa3\\x0b\\x1c\\xc4\\x9d\\x3a\\x7e\\x88\\x53\\xb8\\x03\\xdd\\x8a\\xc1\\xfa\\x69\\xca\\x96\\x57\\x02\\x09\\x3e\\x54\\x30\\xe0\\x0a\\x9a\\xe8\\x5a\\xab\\x30\\x26\\x85\\x4c\\xa4\\xd9\\x2b\\xb1\\x79\\xf8\\x9d\\xa0\\x57\\xc9\\xb8\\x2e\\x6d\\xb5\\xce\\x16\\x6f\\x9d\\x57\\x6e\\x9b\\x7d\\xd6\\xa0\\x58\\x24\\xa1\\x88\\x7a\\x04\\xd1\\xd2\\xe5\\x9b\\x53\\xa6\\x6f\\xb4\\x1e\\x25\\x98\\xdb\\xe1\\x75\\x97\\xa0\\x78\\xd5\\x90\\xfc\\x04\\x52\\xef\\x56\\xe5\\x6d\\xca\\x96\\x96\\xef\\x6d\\xd2\\x39\\x3a\\x78\\xd0\\x92\\x32\\x16\\xe3\\x87\\x5a\\xb7\\xca\\x74\\x69\\x1b\\xa2\\x01\\x1c\\xbb\\x8e\\xdb\\x60\\x11\\xeb\\xbe\\x4d\\x1a\\xf4\\x17\\x4e\\x35\\xa1\\xf3\\xdb\\x36\\x38\\x64\\xb6\\x6c\\xbd\\x35\\xce\\x29\\xcc\\xb2\\xad\\x6e\\x33\\xbe\\xe5\\x53\\x13\\xe7\\xa3\\xb6\\x29\\x07\\x3c\\x9c\\x1c\\x6b\\x1e\\x55\\x83\\xac\\x43\\x90\\x34\\x72\\xcf\\x24\\xea\\x99\\x8c\\xa5\\xc9\\x8e\\xad\\x2a\\xc3\\xa5\\x47\\xe4\\xe9\\x71\\x3a\\x01\\x46\\x54\\x32\\xa9\\xdc\\xd9\\x02\\x97\\x98\\xaa\\x93\\x16\\x38\\xce\\xdc\\xd2\\xca\\x75\\x8d\\xdf\\xfa\\xd4\\x92\\x52\\xb1\\x8d\\xb9\\x75\\x1c\\xbc\\x6e\\xb7\\xbe\\x4d\\x8e\\x37\\xb6\\x5e\\x93\\x04\\x30\\xa2\\xaf\\xa8\\x9a\\xfc\\x8d\\x6a\\xd6\\x6b\\x3d\\x52\\x99\\x53\\x06\\x9f\\x46\\xb9\\x13\\xf7\\xf2\\x4a\\xef\\xdb\\x93\\xf6\\xfd\\xdd\\xed\\x1c\\x6f\\xbf\\xbf\\xb2\\x22\\x54\\xec\\x29\\xe3\\x69\\x5f\\xa6\\x39\\xba\\x8d\\xd9\\xb4\\x4e\\x35\\xed\\x36\\xea\\x90\\xf8\\x8d\\x6b\\xcc\\xd6\\xb5\\xc6\\x32\\xe7\\x28\\xd3\\x0f\\x2b\\x09\\x77\\xa7\\xbf\\x54\\x97\\xc1\\x2b\\x17\\x7b\\x4f\\x1b\\xba\\xef\\x1b\\x1b\\x07\\xf4\\x52\\x1e\\xb1\\xa1\\x2b\\x33\\x5a\\xa5\\x95\\x55\\x16\\xc7\\x4e\\xb5\\xbd\\xeb\\x9c\\x6a\\x41\\x88\\xc1\\x73\\x7c\\x0c\\xc8\\x9d\\xa4\\xb1\\x76\\x5b\\x67\\x83\\xa3\\xde\\x96\\x2f\\x48\\xba\\xd8\\x06\\x5a\\x14\\x10\\xaf\\xd6\\x95\\x60\\xfa\\x69\\xb8\\x78\\x78\\x25\\xc9\\xcd\\x6f\\x83\\xa1\\x8b\\xa7\\x2f\\xda\\x6e\\x4d\\x96\\x04\\x2f\\xd2\\x29\\x37\\x5d\\xb9\\x01\\x27\\x40\\x60\\x83\\x62\\x99\\x86\\xc7\\x2f\\xfb\\x80\\xe1\\x8b\\xe0\\x94\\xd0\\x7a\\x0b\\xde\\x6e\\xda\\xa7\\x7a\\xc6\\x0f\\x8f\\x5b\\xd7\\x3a\\x17\\x94\\xa7\\x1b\\xb7\\x9c\\x73\\x02\\xef\\x40\\xdb\\x49\\x13\\x55\\x50\\x86\\x7a\\xa5\\xae\\x4c\\x24\\x1f\\x19\\xe5\\x86\\xc6\\x2b\\x3f\\xca\\x82\\x42\\x03\\xe9\\x7e\\xee\\x8e\\xf3\\xc0\\x52\\xbc\\xf9\\x59\\x3b\\xce\\xdb\\x7e\\xff\\xf4\\xdb\\xdb\\x7e\\xf7\\xc7\\x97\\xdd\\x32\\xfb\\xfc\\xec\\x44\\xd9\\x6f\\x48\\xfe\\xb5\\x25\\xb0\\xc9\\x32\\xf3\\x6f\\xe5\\x0f\\x17\\x84\\x64\\x30\\x68\\x4b\\xf1\\x84\\xd2\\xbc\\x04\\x8c\\x0d\\x95\\x03\\x1b\\x78\\xb1\\x33\\xff\\xfd\\x74\\x56\\xe0\\x16\\x1a\\xc1\\x5b\\x80\\x21\\x41\\x9b\\x54\\x35\\x04\\x8e\\x7e\\x24\\x15\\x22\\x9c\\x4a\\x74\\xcd\\xcd\\xc6\\x7e\\x1d\\x86\\xb1\\x7b\\xdb\\x2f\\x43\\x77\\x66\\x85\\xd5\\xfc\\xe1\\x5a\\xdf\\x43\\x4b\\xd4\\x2d\\xd3\\x19\\x89\\xd2\\x8b\\x78\\xf3\\xc0\\xf6\\x28\\xa6\\x09\\xe7\\x2b\\x34\\xb3\\xfa\\x05\\xd1\\x36\\x81\\x3e\\xd3\\x06\\xbe\\x85\\x90\\x8d\\xb3\\xdb\\xa1\\xd8\\x2f\\x75\\xf1\\x58\\x4a\\x80\\x79\\x1b\\xf0\\x83\\x87\\x1b\\xf0\\xb4\\xff\\xd7\\x82\\x16\\xef\\xe2\\xcc\\x44\\xd7\\xed\\xf4\\xca\\x63\\x44\\xe5\\xca\\x6c\\xda\\xbb\\x5e\\xd7\\xa8\\xcb\\xc0\\x5e\\x6b\\xab\\xf0\\xa9\\xaf\\xf4\\xd6\\x9d\\xa6\\xbc\\x40\\x5d\\x5c\\x58\\x7b\\xa6\\xb2\\xb9\\x0d\\x4e\\x94\\x76\\x97\\x87\\x92\\x30\\xca\\xd1\\xe2\\x00\\xca\\x00\\x76\\x4c\\x55\\x97\\xed\\xa0\\x6d\\x16\\x0e\\x08\\xfe\\xf2\\x88\\xa3\\xfd\\xf7\\xa7\\xf7\\xb7\\xdd\\xcb\\x38\\xec\\x16\\x96\\xb1\\x45\\x69\\xd5\\xd2\\x01\\x48\\x9d\\x58\\x35\\x9a\\xb3\\x1f\\xf7\\x8d\\x4e\\x69\\x30\\x3c\\x4b\\x1d\\x9b\\x24\\x2d\\xac\\x9d\\x31\\xb2\\xd1\\xd3\\x44\\x24\\xaa\\x1a\\x09\\x71\\xf6\\x16\\x9a\\x60\\x13\\xfd\\xc0\\x34\\x2d\\x6c\\xb9\\xd2\\x61\\x60\\x0e\\x18\\x40\\xad\\x37\\x3a\\x0f\\x88\\x95\\xce\\x43\\x89\\xfb\\xd3\\xbe\\x5d\\x81\\xce\\xce\\x49\\x19\\x6f\\x3b\\x5f\\x57\\x31\\xc3\\x74\\xc4\\x36\\x74\\x06\\xc9\\x96\\xd6\\x2a\\x9f\\xf9\\x2f\\x10\\x75\\x11\\x7a\\xdd\\x33\\xec\\xb6\\x51\\xc6\\xc6\\x01\\xf9\\xa0\\x71\\xd0\\x46\\x69\\xcd\\xb9\\x85\\x9a\\x39\\x8d\\x98\\x74\\x49\\x59\\x30\\x6c\\x44\\x65\\xe0\\xef\\x76\\x5b\\xda\\x64\\x2c\\xed\\x32\\xda\\xb5\\xd6\\x6a\\x2c\\xb1\\xa9\\xe5\\x3c\\x6f\\xdf\\x37\\xc9\\x9d\\x1a\\x6b\\x7b\\x4e\\x85\\x63\\x86\\x24\\xce\\xcf\\x67\\x0f\\xb9\\xe9\\x1a\\x83\\xbd\\xd7\\x73\\x52\\xb9\\xd7\\xca\\x9b\\xd1\\x58\\xe5\\x8d\\xc2\\xf7\\x4e\\x93\\x20\\x03\\xfc\\x03\\x36\\x95\\xdb\\x81\\xfe\\x0e\\x24\\xbd\\x79\\x5a\\x86\\x75\\x47\\x77\\xd4\\x9c\\xa6\\x0a\\x8e\\x29\\x48\\x25\\x0d\\xdc\\xf3\\xc8\\xd4\\xc6\\xea\\x10\\xe9\\xff\\x28\\x5f\\xf9\\x88\\x29\\xbd\\x93\\x53\\xd6\\xd3\\xdf\\x54\\x40\\xc1\\x5b\\xbf\\xce\\x71\\xc3\\x03\\xbe\\x1a\\x6c\\x04\\xf5\\xd2\\x68\\x76\\x30\\xfa\\x76\\x1d\\xc1\\x22\\xa6\\xcb\\xc0\\x23\\x64\\x4d\\x21\\xd3\\xa5\\xd7\\xf9\\xb6\\xdb\\xf1\\xf7\\xdd\\xf3\\xfe\\x75\\x11\\x5d\\x55\\x4b\\x24\\xa1\\x04\\x91\\x1d\\xbd\\xd6\\xb1\\x98\\x0d\\x35\\x33\\xb7\\x15\\xbb\\x91\\x0e\\xed\\x80\\xc3\\x81\\xf3\\x6c\\x90\\x42\\x20\\xb6\\x44\\x1d\\x3f\\x3e\\xe9\\x80\\xf8\\x3c\\x39\\x3b\\x48\\x36\\x0e\\xee\\xc3\\xd6\\x45\\xba\\x08\\xb1\\x2d\\xde\\x94\\xb3\\xf2\\x00\\xba\\x81\\x98\\x1b\\xf5\\x6d\\x8b\\xcb\\xef\\x67\\xa0\\x32\\xbf\\xcf\\xc1\\x64\\xfe\\x53\\x9a\\x70\\xda\\x0f\\x8b\\x26\\xe0\\x98\\xf7\\x46\\xa3\\xac\\x6e\\x07\\x6d\\xb0\\xa3\\x73\\x20\\x06\\x1c\\x84\\x1c\\x69\\x01\\x8a\\x04\\xab\\x5c\\xd6\\xb7\\x2e\\xd1\\x60\\xe7\\x6a\\x07\\x04\\x71\\x0c\\x96\\x34\\x6b\\xdb\\x9a\\x72\\x21\\x30\\xc5\\x83\\x5b\\x84\\xe3\\xdc\\x0b\\xec\\xfa\\x7d\\x3f\\xbe\\x2f\\x19\\x37\\x6b\\x89\\xec\\x76\\x81\\xa9\\x5f\\x48\\x13\\x73\\xc8\\x3c\\x71\\x41\\x45\\xdf\\x31\\x69\\xa1\\xe1\\x64\\x60\\x17\\xf8\\x13\\xd9\\xfb\\xb4\\x34\\x64\\xbc\\xce\\x1a\\xa9\\xc3\\x1f\\x9f\\x72\\x52\\x36\\xf8\\xa1\\xb1\\x51\\xd9\\xd0\\x79\\xd6\\xf2\\x69\\x21\\x49\\x0a\\x80\\x0d\\x5e\\x59\\x30\\x15\\xd1\\x1b\\x1a\\x3b\\x5d\\x78\\xb3\\x34\\x93\\xf5\\x07\\x5d\\xb8\\xdf\\x21\\xa0\\x73\\x16\\x76\\x13\\xdb\\x8e\\xa3\\x0e\\xc4\\x2d\\x86\\x58\\x06\\xf0\\xdf\\x77\\x45\\x08\\xe4\\x15\\x94\\x04\\x5a\\xdd\\x41\\x6b\\xca\\xd0\\xa0\\x48\\xf1\\xe4\\x87\\x22\\x38\\xd5\\x65\\xe5\\x13\\xad\\x26\\x06\\x04\\x59\\xa1\\x45\\x96\\x7a\\x68\\x37\\x5d\\xa0\\x77\\x35\\x31\\x5b\\x17\\x64\\x8c\\x0c\\xd3\\x9b\\xb7\\x7d\\xe3\\x4d\\x87\\x4c\\xe1\\x56\\x32\\xa1\\x35\\xb2\\x48\\x5b\\xa4\\x92\\xea\\x82\\x1c\\x15\\x12\\xb2\\x3f\\x43\\x52\\x21\\x8c\\x48\\x86\\xd1\\x9c\\xb6\\xcb\\x39\\xb2\\xc2\\x60\\x95\\x20\\xc4\\xd8\\xd4\\xd1\\xd2\\x4f\\x97\\x6b\\x5e\\xf8\\x69\\x2d\\x8a\\x1c\\xc2\\x8d\\xc6\\x3b\\x69\\x24\\xa0\\xaa\\x72\\xd7\\xb8\\xbc\\x8d\\x11\\x92\\xa0\\xdf\\x46\\x8d\\x95\\xcb\\x2b\\x93\\xb6\\xc6\\x59\\x0e\\xb1\\x45\\xb4\\x12\\x2d\\x97\\x41\\x91\\x52\\x1a\\x10\\x07\\xd1\\x71\\xdf\\x23\\x94\\x23\\x00\\x35\\x32\\x2a\\x81\\x82\\x81\\x94\\x4e\\xbd\\x1b\\x3e\\x36\\xb7\\xa7\\xcc\\xfb\\x19\\xb9\\x72\\x2d\\xf9\\xa7\\x00\\xe4\\x7f\\x3f\\xcc\\xb3\\x76\\x70\\x54\\xe3\\x8f\\x4d\\x62\\xce\\xe8\\xc6\\x30\\xdd\\xbd\\x35\\xd5\\xc5\\x02\\xb8\\x2f\\x93\\xfa\\x1c\\x18\\xb3\\x59\\x62\\xde\\x84\\xd0\\x56\\xb3\\xa2\\x27\\x56\\x49\\xad\\xfb\\x26\\xb2\\xa8\\xe3\\xcc\\xc9\\x9a\\xde\\x56\\x30\\x6e\\x41\\xdc\\x98\\xbb\\xf7\\x82\\x43\\xbc\\x0f\\x9b\\x2d\\x0b\\x95\\x85\\x3e\\x61\\x2b\\x04\\x18\\x49\\x35\\x92\\x42\\xae\\x72\\x8c\\xf2\\x57\\xf8\\x17\\xa4\\x5e\\xb7\\x9b\\x7c\\x5c\\xb0\\x74\\xf3\\x21\\x1a\\xed\\x41\\x1b\\x99\\x3a\\x0d\\x55\\xab\\x64\\x21\\x23\\x79\\x10\\xfb\\x28\\xca\\x45\\x93\\xa3\\xb9\\x04\\x41\\xc2\\x0e\\x10\\x36\\x4c\\x27\\x19\\xcd\\x9c\\xa4\\x8e\\x36\\x0c\\x70\\x3b\\xb7\\x08\\x8c\\xf1\\x83\\xa0\\x03\\x19\\xc8\\x19\\xda\\x32\\x38\\x90\\x9a\\x29\\xdf\\x7d\\x83\\xc8\\x6d\\x40\\x8f\\xf2\\xe3\\x49\\x0b\\x6a\\x55\\x02\\x84\\x85\\xa2\\x75\\x9a\\x6a\\x22\\xe8\\x7c\\x45\\xab\\x74\\xd0\\x2a\\x8d\\xae\\x06\\x1a\\xdc\\xd0\\x0d\\xb4\\x0d\\x5a\\x4f\\xfa\\x26\\xad\\x17\\x9e\\xde\\xae\\x81\\x74\\x46\\x34\\x8f\\x69\\x14\\x39\\xff\\xda\\x6f\\xf8\\xc1\\x9a\\x1f\\xcc\\xf7\\x80\\xc7\\x0f\\x51\\x3f\\xf4\\x0e\\xd8\\x3c\\x00\\x7b\\xe8\\xe2\\xa7\\xb0\\x5c\\x94\\x07\\x6b\\xf9\\xa5\\xb6\\xca\\x87\\x01\\xf8\\x36\\x27\\xed\\x1c\\x68\\x05\\xa1\\x8c\\x2a\\xdb\\xf6\\x06\\x74\\x54\\xc8\\x4c\\x6f\\xb4\\xca\\x5e\\x59\\x31\\x42\\x01\\xa7\\x25\\x28\\xf4\\x0b\\x87\\xbc\\x23\\xc4\\x13\\x04\\xb5\\x4c\\xf4\\x88\\x64\\x2c\\xed\\x94\\x76\\xf4\\x48\\xd8\\x0a\\xe8\\x32\\xa0\\x23\\x74\\x0d\\xe0\\x1c\\x92\\x53\\x7a\\xeb\\x4d\\x30\\xfc\\x36\\x1b\\x24\\x79\\x6d\\x6d\\x48\\x6c\\x87\\x00\\xc0\\x95\\x32\\xca\\x2a\\xa7\\xec\\xa6\\x73\\xb0\\x5c\\x44\\x16\\x23\\x22\\x38\\x01\\xa9\\x85\\x1c\\xf5\\xa6\\x01\\x41\\xd1\\x58\\xb6\\xac\\x71\\x3e\\xba\\x51\\xcd\\x9d\\x7d\\xeb\\x38\\x7c\\x79\\xea\\x8e\\x5f\\xdf\\x16\\x71\\x3c\\x8b\\xd2\\xea\\x1f\\xb0\\xc8\\x96\\xa4\\x9a\\x06\\x92\\xe8\\xb3\\xed\\x02\\x5b\\xb0\\x90\\xd5\\xa7\\xf9\\x73\\x8a\\xbe\\xf6\\x91\\x57\\x2e\\xfc\\xc2\\x99\\x91\\xf5\\xd6\\xcc\\x05\\xb8\\x8c\\x56\\xde\\x40\\x0b\\x65\\x70\\xca\\xc6\\x53\\x63\\x23\\xbd\\xb6\\x1c\\x2e\\x9b\\x9c\\x02\\xfd\\xe6\\xad\\x7c\\xc7\\xdb\\x91\\x11\\xb7\\xdb\\xfd\\x3a\\x3e\\x7d\\x39\\xfc\\x6b\\xe1\\xdc\\x99\\x95\\x4d\\xa0\\x4a\\x6d\\xec\\x92\\x05\\x5a\\x5e\\x56\\x01\\xbe\\x1c\\xfa\\x3f\\x36\\xf2\\xbd\\xa9\\x05\\x38\\xc2\\x86\\x20\\xc5\\x63\\x39\\x28\\x05\\x1f\\x9f\\x9c\\x03\\x0a\\x70\\xef\\x8a\\x7b\\xd8\\xf1\\x4e\\x96\\x32\\xc7\\x94\\x6a\\xc0\\x47\\x45\\xfe\\xc3\\xfc\\x98\\xa4\\x47\\xbb\\x8e\\xae\\xc0\\x96\\x07\\xc8\\x38\\xbe\\x46\\x23\\x25\\xce\\xc1\\xfd\\xec\\x68\\xc6\\xa5\\x4c\\xe7\\xe8\\x12\\x39\\x7d\\x72\\xe2\\x79\\x76\\x5d\\xca\\x2c\\xff\\x07\\xa6\\x47\\x2b\\xcf\\xf8\\x28\\x5e\\x91\\x4d\\x85\\x8e\\x9a\\x10\\xa3\\xc6\\x19\\x54\\x14\\x1f\\x5f\\xf3\\xbc\\xdd\\xed\\xea\\x97\\xe3\\xfb\\x6a\\x77\\xcf\\xca\\xff\\xd7\\x74\\xf9\\xbd\\xbe\\x5a\\xe6\\xa5\\xd6\\x12\\x51\\xdb\\xa3\\xd2\\x36\\xd1\\x2a\\x9b\\x61\\xaa\\x86\\xda\\x61\\x84\\x3c\\xcf\\x33\\xc4\\x4f\\x93\\x21\\x36\\x25\\xab\\xce\\xbb\\xa3\\xb3\\xb0\\x5d\\x21\\xa6\\x33\\xd3\\xd6\\xc1\\x71\\x07\\x46\\x0f\\xa0\\x81\\x1c\\x00\\x2a\\x63\\x49\\xc3\\x2c\\x61\\xa3\\x80\\xeb\\xe9\\x98\\x6f\\xd5\\xb2\\xa4\\x67\\xd1\\xae\\x56\\xf0\\xd0\\xbf\\xa1\\xbf\\x1c\\x4d\\x1e\\x03\\xa0\\x20\\x47\\xab\\x46\\xbb\\x3e\\x3a\\x56\\x80\\xb4\\x5a\\x01\\x21\\xd2\\xb4\\x07\\x6c\\x06\\x7e\\xa9\\xbb\\xc8\\xe0\\x5e\\xc0\\x8c\\x02\\xff\\x2e\\xcb\\x69\\x67\\x73\\xa3\\xa3\\xb5\\xb8\\x65\\x1e\\x70\\x27\\x7e\\x52\\x5d\\x6e\\x01\\xe8\\x14\\xe5\\x80\\xf3\\x16\\x12\\x9c\\x8c\\x3f\\x36\\x68\\x6f\\xbb\\xcf\\x8b\\xd5\\x93\\x8f\\xa7\\x09\\xed\\x1c\\xed\\x31\\x06\\x61\\xd9\\x40\\x34\\x41\\xac\\x30\\xcd\\x74\\x3d\\x80\\x4d\\xd1\\x92\\x58\\xaf\\x9d\\x1e\\x30\\x19\\x1d\\x97\\x92\\x5e\\xcb\\x70\\x41\\x74\\x1d\\x58\\x4c\\xef\\x70\\xb7\\xd0\\x83\\x0f\\xfb\\x45\\xfc\\xd2\\x54\\x34\\x49\\x49\\x31\\x16\\x48\\x64\\x11\\xb9\\x24\\x3a\\xc5\\xcd\\x71\\xc8\\x2b\\x04\\x72\\x41\\x45\\x66\\x64\\x01\\x98\\xb8\\x24\\xf4\\x64\\x16\\xbd\\x82\\xec\\xcc\\x52\\x3c\\x31\\xdd\\x41\\x3d\\xbb\\xbc\\xfa\\x1f\\xc3\\xf2\\x45\\xde\\x8c\\x69\\x4b\\x5e\\x62\\x4d\\x26\\x95\\xac\\xb3\\x59\\x72\\x62\\x8d\\x2b\\x45\\x71\\x6d\\xfb\\x2c\\x69\\x74\\x49\\xe0\\xdf\\x97\\x3b\\xcd\\xc8\\x5e\\x38\\x2b\\xb5\\x99\\x45\\x22\\xce\\x3a\\xe3\\xae\\x36\\xf6\\xb6\\x5b\\x50\\x7e\\xc9\\xf1\\x3c\\xba\\x74\\xa5\\xbf\\xc6\\x9b\\x21\\xf0\\xe3\\x2c\\x75\\x8b\\x4d\\x7a\\xd6\\xe9\\x15\\x3b\\xc6\\x78\\x96\\x14\\x36\\x2e\\xfa\\x77\\xe4\\x3c\\x32\\xdc\\x48\\x22\\xbf\\x7d\\xb8\\x5e\\x97\\x0a\\xdc\\x39\\x2e\\xd0\\xd5\\xc6\\xd9\\xe0\\x88\\x79\\x71\\x35\\x5f\\x73\\xf3\\x40\\x65\\xea\\x6d\\x04\\x69\\x76\\x6d\\x56\\xcc\\x2f\\x1c\\x6f\\xf6\\x99\\x84\\xaa\\xc5\\x35\\x5c\\xd2\\x95\\xfe\\xbd\\x5a\\x19\\xc4\\xc9\\xba\\x15\\x58\\x6d\\xf3\\xc0\\x5d\\x4a\\xff\\x6e\\xd8\\x65\\xf7\\x68\\x07\\xcf\\x8c\\x49\\x8b\\xc1\\xbe\\x33\\xd3\\x5e\\xfb\\x43\\xf7\\xb4\\xff\\x9f\\xe5\\x74\\xab\\x85\\xd3\\x4a\\x91\\x33\\xe3\\x49\\x17\\xd6\\x7c\\xc9\\x56\\x62\\xde\\xde\\x39\\x08\\xd0\\x47\\x09\\xb1\\x4a\\x61\\xf6\\x0b\\x89\\xbc\\xa7\\xf7\\x25\\xc8\\x22\\x13\\xa6\\xf7\\x63\\xed\\x36\\xb7\\xeb\\x7d\\xf8\\x7c\\xbe\\x39\\xd6\\xa2\\x6a\\xd4\\x4e\\xbe\\x07\\xec\\x0f\\xed\\x6e\\xa7\\xc6\\x0a\\x82\\x7a\\xf2\\xa7\\x48\\x8b\\x30\\x2d\\x47\\xac\\xdc\\xa5\\x00\\x3c\\x12\\x50\\x4d\\x6a\\x7b\\xe3\\x6c\\xf2\\x88\\x0d\\x49\\xa1\\x96\\x92\\x14\\x14\\x0d\\xdd\\xbc\\xc7\\xfd\\x69\\xc0\\x68\\x03\\x2b\\xc7\\x51\\xb9\\xe4\\x07\\xe7\\x21\\xea\\xa7\\xd9\\x5e\\x6a\\x19\\x89\\xce\\xae\\x1b\\x03\\x2d\\x70\\x73\\x64\\x62\\x3b\\xcd\\xf6\\x6d\\x3c\\x52\\x2a\\xc0\\xf5\\x71\\x26\\xf6\\x0c\\x74\\x64\\x91\\xa6\\x68\\xdb\\x75\\xd3\\x24\\xdf\\x8e\\x29\\x23\\xf4\\xfc\\x17\\xd1\\xd5\\x06\\x51\\xab\\xbf\\xe1\\x92\\x07\\x86\\xe7\\xe5\\x62\\x74\\xe6\\x69\\xcf\\x1c\\x7e\\xb3\\xe8\\x4c\\x2a\\x96\\x89\\x73\\x5e\\x7c\\xd9\\xf3\\xb2\\x84\\xad\\x15\\xaf\\xdc\\x43\\x06\\xfe\\xac\\xb4\\x38\\x2e\\x56\\x8a\\x57\\xee\\xb1\\x3e\\x03\\xee\\xe4\\x9f\\x6e\\x7e\\x5a\\x02\\xea\\xed\\x0e\\x3f\\x7e\\x5d\\x98\\x62\\xf8\\xb8\\xbe\\x09\\xc6\\xfa\\xce\\xb7\\x70\\xf9\\x03\\xe0\\x86\\x3f\\xa3\\x67\\x33\\x16\\xbd\\x7d\\xde\\x0a\\xc3\\x3c\\x29\\xaa\\x81\\x95\\x4a\\xd7\\x01\\x69\\x94\\x94\\x63\\x7a\\xd5\\xa5\\x63\\xea\\xad\\x18\\x40\\x88\\x3f\\xcb\\xad\\x4c\\xce\\x7c\\x2b\\xcf\\x84\\xca\\x91\\x1f\\x85\\x8c\\x2b\\xfa\\x71\\x8c\\x5d\\x03\\x84\\xa7\\x1b\\x30\\xc2\\x96\\xb1\\x9f\\xac\\x60\\x3f\\x25\\xc1\\x7d\\xc2\\x31\\xbf\\x0e\\x0f\\xdc\\x66\\x73\\x1b\\x8d\\xf4\\x7e\\x6f\\x3e\\xed\\x3e\\x7f\\x3e\\xef\\x51\\x2e\\x9b\\x48\\x5c\\xac\\xef\\x40\\x59\\xcd\\x29\\x4c\\x9a\\x3f\\x83\\x9b\\x9b\\x5d\\x99\\x16\\x3b\\x79\\x20\\xd8\\x9a\\xc4\\xd0\\xa7\\x9a\\x24\\x02\\x0d\\x1c\\xe1\\xa8\\xb2\\x85\\xbb\\x87\\x3e\\x42\\x7b\\x9a\\x98\\x1c\\x68\\x16\\x78\\x0e\\x35\\x90\\x96\\xb4\\x1f\\x85\\x3b\\xe6\\x7e\\x27\\xde\\x6c\\x3c\\xef\\xdc\\x11\\xae\\x26\\x8e\\x6d\\xe1\\xac\\x2d\\xdb\\x69\\x53\\xd8\\x7a\\xa1\\x9f\\x07\\x3d\\x36\\x51\\x09\\x76\\x63\\xd0\\x9b\\x2e\\x70\\xfc\\x09\\x66\\xa7\\x7d\\x00\\xab\\x4b\\x86\\x1d\\xb1\\xff\\x76\\xe6\\x35\\xb4\\xd5\\x57\\x0a\\xc6\\x8a\\xe0\\x0a\\x77\\xee\\x43\\x43\\xf3\\xe7\\xf1\\xed\\x8f\\x8b\\xb1\\xe1\\xc2\\x3a\\xe5\\xb5\\xcd\\x9d\\x11\\x1b\\xb2\\x71\\xf4\\xd7\\xd3\\xae\\xe9\\x01\\xbc\\x2d\\x47\\x5e\\xf4\\x0b\\x14\\xd9\\x51\\xbe\\xf2\\xd1\\xc7\\x27\\xd3\\x5a\\x6c\\xe2\\x6c\\x76\\x5e\\x9c\\x1c\\x3d\\x1c\\x67\\x38\\x1e\\x1b\\xbe\\x3d\\xce\\x3a\\xb9\\xa9\\x97\\x9b\\x4a\\x07\\x4c\\x95\\x39\\xff\\x9d\\x95\\xbb\\x32\\x8b\\x28\\x1e\\xe2\\xb8\\x32\\x5e\\xee\\x28\\x95\\xf1\\x01\\xcb\\x8c\\x46\\x56\\x08\\xed\\x33\\x4d\\xf6\\xfc\\x69\\x34\\x49\\x4a\\x19\\x24\\xeb\\x76\\xfa\\x33\\xe2\\x5b\\x29\\xa6\\x02\\xf9\\x81\\xfc\\xbf\\xd9\\xcf\\xfd\\x7c\\xee\\xf7\\xd5\\x87\\x44\\x9a\\xa6\\x99\\x0f\\xd7\\xc4\\x5c\\x04\\x7c\\x39\\x93\\xfa\\x14\\xce\\x1d\\x8f\\x62\\xff\\x3c\\xf7\\x84\\xa6\\xc2\\xc5\\x3f\\xe7\\xa1\\xf5\\x2c\\x81\\x7b\\x3b\\xa7\\xa5\\x9d\\x61\\x87\\xd8\\x9b\\xb0\\x3f\\x0f\\xa8\\x0c\\x57\\x59\\x9d\\xcf\\x90\\x50\\xee\\xe0\\x12\\xf6\\x9f\\xdf\\xce\\xe4\\x8f\\x5a\\xc2\\xd6\\x58\\xab\\x9c\\xcf\\x9d\\xb6\\x7e\\xeb\\xa0\\xc1\\x5a\\xbf\\xcd\\x40\\x33\\xd0\\xdb\\x44\\x7a\\x9c\\x89\\xed\\x36\\x79\\xe5\\x5a\\x92\\x0c\\xda\\xc0\\x39\\x87\\x48\\xab\\x0d\\x46\\xe9\\x40\\xb2\\x87\\x39\\x45\\x2b\\x7a\\xea\\xa9\\xd1\\xad\\x47\\x97\\x48\\x07\\x35\\x7e\\xb2\\x63\\xdb\\xb9\\x7a\\x96\\x86\\xc2\\x5c\\x21\\x8b\\x45\\x4a\\x7d\\x93\\xe4\\x36\\xbd\\x03\\x2a\\xd4\\x59\\x7e\\xd3\\x09\\x40\\x72\\xfc\\x9c\\x5c\\x59\\xab\\x8b\\xe5\\x9c\\xd3\\x56\\xb8\\x18\\xb9\\x11\\x09\\x75\\x35\\xf6\\x44\\x55\\x8a\\x7e\\xb3\\x7a\\x47\\x49\\x61\\x61\\xe4\\x4f\\x13\\x24\\x27\\xb4\\x85\\x33\\xd3\\x79\\x26\\xfe\\x46\\x7f\\x83\\x07\\xfa\\x9e\\xb8\\x87\\xbe\\x7d\\x39\\xef\\xec\\x97\\xf9\\x52\\xcc\\xb3\\xb2\\xe1\\x98\\x85\\xca\\xb8\\x0e\\xb3\\xfe\\x4a\\xf5\\x38\\x72\\x04\\xb6\\xec\\x45\\x6a\\x17\\x24\\x3e\\xf0\\x89\\xd3\\x8b\\x6b\\x73\\x61\\xd5\\x9f\\x9b\\xe8\\x6f\\x8d\\x00\\xad\\xed\\x41\\x08\\x94\\x4b\\xa2\\x46\\xa5\\x0e\\xe2\\xf4\\xe5\\xda\\x29\\xee\\x7e\\xa7\\xd4\\x07\\x44\\xbf\\xd2\\x8c\\xcd\\xdd\\x6c\\x1e\\xea\\xa6\\xf1\\xfd\\xed\\xb8\\x48\\x14\\x9c\\x17\\x56\\x4f\\x8d\\xd1\\xb6\\x4a\\x30\\x45\\x07\\x19\\x27\\xad\\x45\\x89\\xa2\\x72\\x01\\xc8\\x62\\x55\\x55\\x9c\\x5a\\xc8\\x74\\x8f\\xd9\\x0e\\x83\\x92\\x88\\x9d\\xe4\\x47\\x9b\\x61\\x38\\x0c\\xf0\\xb0\\xb3\\x6d\\xd9\\x75\\x08\\x91\\xd7\\x82\\x1d\\x53\\x03\\x9c\\x2e\\x83\\xdc\\xc7\\xf3\\x30\\xfa\\x51\\xae\\x97\\xff\\x77\\xbb\\xe7\\xcf\\xfd\\xee\\x8f\\xb3\\xce\\xe1\\xa2\\x6a\\xea\\x7e\\x08\\x4b\\x3f\\xcc\\x63\\x90\\x46\\xe1\\x7a\\xe1\\xa3\\xbf\\xa1\\x51\\x3f\\xa7\\xb3\\x6f\\x76\\xcd\\x7e\\xf7\\x79\\x99\\x67\\x5e\\x4b\\xaa\\x2d\\xcb\\x65\\xdd\\xe9\\x16\\x81\\xa4\\x19\\xc9\\x5e\\xfc\\x89\\xf4\\x1f\\xed\\xdb\\x75\\xfe\\x08\\x4e\\x06\\x8a\\x1a\\x6c\\x66\\x76\\xdd\\x62\\xb7\\x62\\xcd\\xc5\\xdb\\xc0\\x09\\xcb\\xe2\\x67\\xbb\\x14\\x80\\x4e\\xfc\\x50\\xaa\\x92\\xd4\\x45\\xfe\\x3f\\xd2\\xd2\\xa7\\xe7\\x45\\x62\\xef\\xa2\\xf4\\xa1\\x16\\x1b\\xed\\xae\\xb5\\x58\\xcc\\x5e\\x48\\x4f\\x64\\x26\\xc4\\x5f\\xac\\x03\\x86\\x65\\x2a\\x71\\x2d\\xa9\\xd0\\xf4\\x31\\x0d\\x31\\xd1\\xdf\\x86\\x3e\\x22\\x63\\x73\\xc6\\x24\\xea\\x16\\x09\\x92\\x35\\x2b\\x71\\xca\\x59\\x1c\\x17\\x64\\xfe\\xe3\\x24\\x10\\x8c\\x73\\x41\\x40\\xf2\\x62\\xb2\\x39\\x17\\x1b\\xc6\\x9a\\x3c\\xa2\\x8c\\x19\\x1b\\x71\\xcc\\x4a\\x2a\\xca\\x58\\x92\\x42\\x14\\x33\\xa3\\x71\\x8a\\x73\\xcd\\x3b\\xc9\\x9c\\x04\\x39\\x56\\x57\\x2e\\x1f\\x71\\xc6\\x89\\xb8\\x6b\\xcf\\x6e\\xa1\\xc1\\xf5\\x95\\x86\\x18\\x55\\x4c\\x1b\\xb4\\x10\\x0d\\x4d\\xd2\\x50\\x81\\xa7\\x9d\\xd2\\x52\\xce\\xee\\x64\\xe4\\x41\\x23\\xbb\\x7e\\xa5\\xd6\\x8b\\x86\\xda\\x98\\x4a\\xee\\x7d\\x93\\x7c\\x47\\x2f\\xa5\\x62\\xca\\x88\\x02\\x88\\x4c\\xdd\\x27\\xcc\\x2c\\xb8\\xbf\\xa0\\x4c\\x04\\x80\\x58\\x33\\xdc\\x75\\x18\\x1a\\x44\\x23\\x95\\x2c\\x30\\xc4\\x39\\x14\\xe2\\x09\\x00\\xb3\\xd3\\x8d\\xac\\xa2\\xfb\\xe0\\xf6\\xf0\\x4d\\x02\\xec\\x96\\x29\\x8e\\xb0\\x32\\xb9\\xe9\\x24\\xad\\xfa\\x56\\x0f\\xf4\\x13\\xb3\\xe9\\x9c\\x72\\x48\\xbe\\x00\\x2e\\x7c\\x87\\xa9\\xae\\x39\\x58\\x4b\\x35\\xa5\\xe6\\x03\\x2a\\xd0\\xd1\\x0d\\x8c\\x55\\x49\\x59\\xad\\xda\\x01\\x75\\x37\\x53\\xa3\\xa0\\xd9\\xde\\xb1\\x13\\xf4\\xfb\\xdd\\xdb\\xc5\\xd4\\x7b\\x9b\\x65\\xae\\xb3\\x87\\x9c\\xc4\\xb3\\xac\\x58\\x74\\x67\\xc9\\x5d\\x04\\x77\\x11\\xc6\\x67\\x32\\x3c\\x1f\\xb3\\xc8\\xcf\\x52\\xfe\\xc7\\x27\\x1d\\x48\\x18\\x0b\\x1d\\x03\\xd7\\x7b\\xe0\\x69\\x02\\x84\\xdb\\x23\\x64\\x23\\x8c\\x46\\xa2\\x36\\xe4\\x78\\xe2\\x7f\\x61\\xfd\\xbb\\x09\\x19\\x41\\x1b\\xf8\\x0c\\x61\\x04\\x66\\x9b\\x53\\x7c\\xc4\\xab\\x7b\\xa5\\x8f\\x9e\\x76\\x4f\\xc9\\x84\\xa8\\xd1\\xa9\\x75\\x45\\xae\\x53\\x08\\xde\\x6e\\xeb\\x55\\xdc\\x00\\x6b\\x1c\\x19\\xa9\\x41\\x59\\x04\\xf2\\xa9\\x18\\x48\\x39\\x33\\xa2\\x97\\x71\\x4c\\x86\\x13\\x6e\\x04\\x40\\xe8\\x43\\x08\\x08\\x5a\\x05\\x41\\x88\\x67\\x94\\x54\\x2f\\x39\\x06\\x58\\x58\\x5c\\x75\\x99\\x79\\xa8\\xeb\\x23\\xaf\\x2a\\x5e\\x4d\\x04\\xf9\\xa8\\x64\\x60\\xd6\\x83\\xc2\\xa8\\x41\\x5f\\x2e\\x89\\x36\\x20\\xbb\\x18\\x9a\\x19\\xb0\\xe5\\x46\\x60\\xa1\\x53\\x9d\\x4d\\x52\\x96\\x63\\x6c\\x7c\\x0b\\x92\\x09\\x71\\x40\\x0b\\x8e\\xbf\\xa7\\x8e\\x73\\x1d\\xc2\\x4a\\xf8\\x1d\\xa1\\xba\\x07\\xd5\\xf8\\x76\\xc3\\x51\\xfa\\x88\\xe7\\xc1\\x1d\\x6f\\xeb\\x7e\\xfd\\x7e\\x78\\x5d\\x4c\\x95\\xa1\\x9a\\x38\\xe8\\x05\\x8b\\x58\\x41\\x34\\x46\\x80\\xa6\\x4b\\xab\\x5c\\x9a\\xb1\\xb1\\x5d\\x23\\xbe\\xe9\\x8b\\xbd\\xe5\\xaa\\x91\\xb8\\x24\\xc2\\x79\\x81\\xef\\x11\\xf4\\x56\\x60\\xf2\\x73\\xe7\\x23\\x68\\x11\\x9e\\xb7\\xc8\\x9f\\xa4\\xc8\\x6b\\xcd\\xb7\\xb6\\xc8\\x7d\\x70\\x8e\\x26\\x70\\x51\\xe1\\x25\\x55\\xb8\\xf8\\x11\\x20\\xae\\xde\\x54\\xf0\\x56\\xf4\\xbb\\xcd\\x8f\\x29\\x78\\xfb\\xe1\\xf5\\xe9\\xf8\\xf5\\x7d\\x38\\x2c\\x38\\xbc\\x96\\xc5\\x53\\xae\\x5c\\x72\\x2b\\xb2\\x46\\x27\\x94\\x4c\\xb4\\xcf\\xf9\\xc2\\x5b\\xd3\\xc6\\x9e\\x1d\\xff\\x61\\x32\\x47\\x28\\x9e\\x3e\\x73\\x56\\x08\\x46\\xee\\x73\\x0b\\x10\\x3a\\xf9\\xa1\\x8b\\x6a\\xee\\x4f\\x46\\x05\\x92\\xef\\xb2\\x53\\x1c\\x2d\\x8f\\xc0\\x79\\x04\\xad\\x8f\\x8d\\x7c\\x6f\\x6a\\x01\\x8e\\xe6\\xe1\\xee\\xe3\\x2c\\xc8\\x1d\\x5f\\xfe\\x16\\x5d\\x9a\\x35\\x59\\xde\\xe7\\x67\\x80\\x9e\\x37\\x47\\xe0\\xf0\\x7b\\xff\\xf4\\x3f\\x5f\\x77\\xc3\\xe1\\x7d\\x0e\\xa2\\xb6\\x2c\\xbe\\xa5\\x76\\x0b\\xf0\\xce\\x15\\xf5\\x1a\\xb1\\x48\\x97\\x9b\\xf2\\x49\\x80\\xa8\\xb4\\x51\\x8b\\xed\\xb9\\xd7\\x88\\x86\\xea\\xc1\\x16\\xdc\\xeb\\x0b\\x25\\xfe\\x47\\x74\\xf5\\x55\\x77\\x15\\x0c\\xfd\\x37\\x74\\xf5\\xcd\\x35\\xd0\\xda\\xef\\x50\\xd6\\x0f\\xbf\\xf7\\xe7\\x38\\xdd\\xb3\\x32\\x91\\xf4\\x8d\\xb2\\xd1\\x14\\xc8\\xfe\\x02\\x5d\\xef\\x19\\xba\\x3e\\x92\\xe8\\x1f\\x0b\\x72\\x7d\\xe1\\x0d\\xe0\\x0d\\x8e\\x1d\\x1b\\x21\\x4b\\xbc\\xbc\\x84\\xb6\\xb3\\x0f\\x88\\x86\\x07\\xb9\\xc0\\x1e\\x71\\xef\\xb1\\xc4\\x94\\x96\\x20\\x79\\x93\\x4e\\xba\\xbd\\x1d\\x76\\x5e\\x2b\\x7a\\x6e\\x6f\\x58\\x96\\xd7\\x57\\xf5\\x1f\\x7c\\x53\\xbe\\xeb\\x45\\xb1\\x1a\\x36\\xf7\\xda\\xc5\\xde\\x03\\x15\\x5b\\x3e\\x9a\\x59\\x31\\x1d\\xce\\x8a\\x6d\\x3b\\x4c\\x85\\xde\\x0f\\xb5\\xa8\\xf1\\xfe\\x76\\xa8\\x62\\x7f\\x18\\xdf\\x8f\\x6f\\xcb\\x97\\x4c\\x4a\\xe6\\xd9\\xc0\\x50\\xe3\\x73\\x3b\\x44\\x19\\x5f\\x2c\\xea\\x61\\x68\\xb2\\x56\\xde\\x63\\x9c\\x0a\\x68\\xf1\\x15\\x25\\x80\\xf5\\xc0\\x72\\x84\\x3f\\x1d\\x2d\\x90\\x2d\\x07\\x49\\x60\\x33\\xb7\\x5e\\x79\\xa6\\x0f\\xd0\\x1d\\x3b\\x83\\x60\\x39\\x75\\xae\\xb0\\x22\\x49\\xbc\\x8b\\xe7\\xd8\\x0c\\xd9\\xb8\\x9b\\x10\\x65\\xd3\\x2e\\x05\\x17\\x0a\\x42\\x2f\\xe9\\xf2\\x4d\\x0a\\x43\\x63\\x94\\x1d\\x48\\xc4\\x49\\xb6\\x87\\xa9\\xe3\\x5b\\x55\\x82\\xe3\\xf3\\x62\\x53\\xc0\\x61\\x75\\x3f\\x27\\x2f\\x39\\x22\\xac\\x89\\x0c\\x00\\x44\\xc8\\x06\\x9f\\x4d\\x01\\xce\\x17\\x38\\x14\\xba\\x8c\\xd6\\x8b\\x14\\xee\\x23\\x4d\\xf4\\xc7\\xf7\\xa7\\xf7\\xaf\\xbf\\x2d\\x1e\\x2c\\x25\\x42\\xdf\\x44\\x6a\\x34\\xf8\\xbd\\x68\\xdd\\x42\\x94\\x0b\\x02\\x86\\x1b\\x30\\x03\\xa8\\x26\\x83\\xfb\\xc0\\x2a\\x6d\\x3a\\xbb\\x6d\\x7d\\x30\\x41\\xe9\\xb8\\xb5\\x3a\\x91\\x5c\\xbc\\x75\\x6d\\x68\\x8d\\xb2\\x9e\\xbe\\x60\\xc7\\x76\\xa9\\x63\\xfc\\x14\\x48\\x26\\x24\\xa7\\x98\\xa4\\x52\\x3b\\x68\\x95\\x7b\\xa7\\x39\\xb1\\x8d\\x89\\xb0\\x34\\x92\\xfe\\xac\\x53\\x85\\xeb\\xcf\\xe6\\xb4\\xa8\\x8a\\xe1\\xaa\\x24\\xae\\x8a\\xe1\\xaa\\xb4\\x83\\x41\\x55\\x20\\xda\\x80\\x78\\xb1\\x01\\xdf\\x9f\\xa4\\x25\\xac\\x3d\\xda\\xd0\\xa3\\x5b\\x79\\xf4\\x66\\xfd\\xd9\\xb4\\xa4\\x4a\\xa0\\x6c\\xe1\\x0d\\xe7\\x70\\x0c\\xd3\\x4e\\xe5\\x02\\x0d\\x52\\xfc\\xae\\x6b\\xe5\\x34\\x71\\xd6\\xee\\x63\\x2c\\xb4\\x94\\xde\\x58\\x5d\\x01\\x06\\xbe\\xc5\\x81\\x45\\x03\\x4f\\xba\\x68\\x60\\xc8\\x38\\x63\\x94\\x4b\\xfc\\xaf\\xd3\\x7e\\x6b\\x13\\x18\\x6b\\x4c\\xda\\x6a\\x0f\\x88\\x18\\xfa\\xd4\\x11\\x12\\xa1\\x0e\\x03\\x18\\x6c\\xec\\xa6\\x03\\x6a\\x3d\\x33\\x16\\x21\\x92\\x51\\x0b\\x8b\\xb0\\x65\\xee\\x2a\\xc4\\xeb\\x14\\x0f\\xf7\\xb8\\xe0\\xad\\x9e\\xc5\\x0c\\x4c\\x61\\x10\\x95\\x26\\xfd\\xde\\x04\\x5c\\x04\\xee\\xcb\\x71\\xf5\\x81\\xdb\\x60\\x45\\x0a\\x62\\xe2\\x01\\x7e\\xdb\\x4e\\x42\\xc6\\xc1\\x2e\\x0d\\x80\\x8a\\x88\\x8b\\xa3\\x84\\x95\\xd0\\x79\\xe0\\x09\\xf8\\x96\\x91\\x8e\\x25\\x24\\xe4\\x07\\xbd\\x38\\xb7\\x9b\\xf2\\xf5\\xed\\xf7\\x61\\x37\\x8e\\x4f\\xfb\\xe7\\xd7\\xa5\\x7c\\x71\\x7e\\xa6\\x2e\\x81\\x26\\x44\\x81\\x85\\x8b\\xf4\\x86\\xc7\\xf6\\xd4\\x44\\xcf\\x0e\\x37\\x1d\\x0a\\x38\\x43\\x05\\x1f\\x69\\xa2\\xa7\\xc6\\x9c\\xe0\\xda\\x33\\x89\\xf9\\x34\\x7c\\x10\\x44\\x9f\\xa2\\x28\\xca\\xb5\\x1c\\x63\\xe4\\xb1\\x18\\xcc\\xd5\\x50\\x7f\\x37\\xe0\\x79\\xaa\\xee\\x97\\xaf\\xc3\\xb0\\xda\\x0e\\x3e\\x31\\xa1\\x60\\xfe\\x4d\\x15\\x79\\x7f\\x5f\\x68\\x1f\\x38\\xe4\\xa9\\xe1\\xf3\\xaa\\xc9\\xd7\\xe7\\xab\\xf6\\x67\\x31\\x8f\\xaf\\xd8\\x9f\\xcf\\x62\\xd4\\x01\\x5e\\x1a\\x60\\xc6\\x27\\xb9\\x8c\\x43\\xd6\\x59\\xde\\xca\\x01\\x9f\\xfc\\x21\\x73\\xea\\xee\\x55\\x39\\x7c\\xb3\\x49\\xfb\\x5e\\xa7\\x8c\\x67\\xbd\\x52\\xb3\\x75\\x8c\\x81\\x73\\x1d\\x0a\\x14\\xbd\\xde\\xb6\\x65\\xd6\\xbc\\xa0\\x42\\x40\\x04\\x27\\xb3\\xc8\\x05\\x8e\\x21\\x76\\xb6\\xd7\\xd6\\x4c\\x28\\x29\\x45\\x62\\x2c\\x6a\\xd9\\x12\\xe6\\xfb\\x9e\\x35\\xba\\x44\\x03\\x5d\\x06\\xe0\\x54\\x4b\\xdd\\x2a\\xbd\\xf0\\x3a\\x1d\\xe4\\x89\\x7f\\x22\\x4a\\xa2\\xc4\\xe7\\xf4\\x46\\xda\\xe6\\xb3\\x02\\x4d\\x65\\x2c\\xff\\x37\\x23\\x2b\\xcf\\xa9\\x72\\x52\\x0a\\xea\\xd2\\xcd\\xbe\\x3c\\x3c\\x2f\\x09\\xb7\\xe4\\x98\\xe7\\x75\\xd2\\xc0\\x9e\\x06\\xde\\x5e\\x0e\\x24\\xf1\\x0e\\x4d\\x0e\\x9c\\xc3\\xc8\\x65\\x42\\x32\\x23\\x7a\\xfa\\x4f\\x08\\x99\\xbb\\xe6\\x5f\\xbb\\xdf\\x88\\xa7\\xdd\\xf8\\xba\\xef\\xde\\x9f\\xde\\x76\\xef\\x87\\xe3\\x79\\x8b\\xce\\x4e\\x2e\\x61\\xf0\\x7d\\x28\\x30\\xf8\\x3e\\x3c\\xc0\\xfe\\x3d\\x29\\x10\\x3f\\x84\\x64\\x6e\\x8b\\xfe\\x5d\\xfd\\xd4\\x95\\x04\\x62\\xe9\\xbe\\x9e\\x8a\\x11\\x85\\x50\\x90\\x2b\\x19\\xe9\\x0b\\x7b\\xb0\\x9b\\x5f\\x5d\\x98\\x29\\x6e\\x77\\xd8\\xeb\\xf1\\xed\\xfd\\xa9\\x3b\\xbe\\xbc\\xef\\xba\\xf7\\x71\\xd1\\x5b\\x67\\x67\\x26\\x0c\\x28\\x1d\\x4f\\xc6\\xf1\\x4c\\xa5\\x79\\xc6\\xc1\\xb6\\xd1\\x2b\\x90\\xd0\\x02\\x78\\x02\\x54\\x34\\x8e\\x59\\xec\\x79\\xc5\\x71\\xbe\\x33\\x99\\xb6\\xcd\\x04\\x79\\x45\\x83\\x9a\\xa8\\x03\\x4c\\x85\\x67\\x34\\x0a\\xcf\\xd4\\x84\\x36\\x5a\\x60\\x18\\x3a\\xb7\\x35\\xad\\xa3\\xf3\\xb9\\xdd\\x46\\x80\\x32\\x68\\xbd\\x6d\\x2d\\x3d\\x07\\xc9\\x05\\x08\\x7b\\xc2\\x42\\xe6\\x2b\\x14\\x06\\xff\\xaf\\x89\\x20\\x85\\x08\\xcf\\xb6\\x4c\\x00\\x1d\\x21\\xf2\\xe8\\x96\\x44\\x9f\\x2b\\x55\\x05\\x7d\\xb2\\xb1\\xcc\\xfb\\x69\\xb8\\xd8\\x1a\\x66\\x55\\x6e\\x99\\x84\\xaf\\xa4\\x5c\\x19\\x5b\\x1f\\x24\\x69\\x1d\\xba\\x6b\\xbc\\xa4\\xfa\\x7b\\xe1\\x38\\x3c\\x59\\x6d\\x3b\\xbe\\x65\\x0c\\xdc\\xf2\\xa4\\xac\\x19\\x13\\xe3\\x35\\xc8\\x43\\xe5\\x02\\x3f\\x75\\xcd\\x23\\xa3\\xb6\\xff\\x17\\x7d\\x5c\\x8e\\x59\\x29\\x9f\\x82\\x11\\x8a\\x7c\\x3e\\xa1\\x91\\x26\\xdf\\xb3\\xc5\\x9e\\x73\\xa6\\x7d\\x5b\\x09\\x4c\\x0a\\x09\\x3d\\x8b\\xd1\\xbe\\x65\\x42\\x32\\xfa\\xbc\\xb3\\xe9\\xf3\\xd3\\x77\\x00\\x95\\x3d\\x1d\\xba\\xfd\\xe5\\x6c\\x5a\\x9c\\x93\\x8d\\x9f\\xe3\\x5c\\x03\\xe9\\x55\\x56\\x35\\x96\\x09\\x9a\\x82\\x19\\x1a\\x6f\\x94\\xcd\\x52\\x9a\\xa9\\x14\\x85\\x24\\x83\\xd3\\xd5\\x48\\x32\\x5c\\x0b\\x7f\\x4a\\x35\\xfc\\x49\\x6c\\x41\\xd0\\x80\\x59\\x30\\x82\\x5c\\x19\\x63\\x7d\\x9b\\xe6\\xa1\\xb5\\x92\\x22\\x2e\\x88\\x77\\x57\\xe8\\x63\\xca\\x0b\\xec\\x4a\\x78\\x14\\x07\\xbe\\x25\\xc7\\xf8\\x78\\xb4\\x8f\\x53\\x47\\x61\\xc9\\x85\\xb8\\xd5\\x46\\x3e\\x63\\x62\\xdc\\xac\\xc1\\x4e\\x5d\\xc7\\x6a\\xa4\\xa5\\x74\\x05\\x84\\x8a\\x7f\\xb0\\x84\\xbc\\xba\\x07\\x23\\x76\\x78\\xf9\\xed\\xf8\\xaf\\xf9\\x60\\xf0\\xf1\\x44\\x96\\x51\\x29\\x5f\\xc0\\x91\\xaf\\x6d\\x9f\\x0a\\xfd\\x7a\\x15\\x0c\\x21\\x02\\xb2\\xa4\\x88\\xe3\\xbe\\xa0\\x62\\x2f\\x42\\x21\\xaa\\x18\\x7c\\x27\\x14\\x62\\xea\\xdc\\xc5\\xea\\xc8\\x5b\\xc1\\x42\\xba\\x06\\x8b\\xfe\\xed\\xc6\\x7d\\xde\\xbf\\xef\\xdf\\x9e\\x0f\\x2f\\xbb\\xf7\\xfd\\x53\\xd7\\xef\\xbb\\x3f\\x9e\\xce\\x9b\\x7b\\xe5\\x8a\\x09\\x6e\\x8c\\x21\\x45\\x2b\\x58\\x22\\xc0\\x11\\xff\\xa9\\xd0\\xf0\\xdb\\x8d\\xfb\\xb2\\xd8\\xc1\\x70\\x58\\xa3\\x0e\\x04\\xa9\\x78\\x1e\\xe6\\x0e\\xeb\\xae\\xcb\\x2b\\x6a\\xd5\\x4f\\x37\\xa5\\xdc\\xab\\xf7\\x8a\\x79\\x77\\x59\\x5c\\xa1\\x98\\x0b\\xb3\\xcf\\x8c\\x89\\xe8\\x3f\\xc1\\x94\\x54\\xb0\\x9f\\xcf\\x79\\x28\\x6f\\x77\\xcc\\xeb\\xd7\\xc5\\x8a\\xcd\\xc7\\xb5\\x2b\\x04\\x98\\x99\\xd9\\x30\\x98\\x1d\\x23\\xb8\\xa1\\xb2\\xe2\\x93\\x1e\\x7b\\xf5\\x7d\\xcb\\xd7\\xc4\\x4a\\x10\\x66\\xaf\\x88\\x95\\x53\\x84\\x34\\xad\\x8e\\xb6\\x6d\\x65\\x99\\x2c\\x41\\xd6\\x2b\\xc4\\x65\\xf7\\x90\\xaa\\x0f\\x2f\\xe3\\x9e\\xa4\\x86\\x7e\\xb7\\xdc\\x98\\x16\\xc5\\x53\\x6c\\x83\\xcb\\x27\\x79\\x18\\x10\\x29\\xec\\x34\\x81\\x0b\\x86\\xa9\\x60\\x96\\x4e\\x4c\\x0f\\xbc\\x23\\x59\\x5e\\x5f\\xff\\xc9\\x14\\x8e\\x47\\x9a\\x7d\\x7c\\x7e\\x5e\\x26\\xbd\\x9c\\x9f\\xa8\\x90\\x21\\xac\\x9a\\x08\\xd4\\x64\\x25\\xe0\\xe0\\xb8\\xc8\\x2b\\x27\\x18\\x36\\x74\\x79\\xe2\\x66\\xf8\\x6f\\x72\\x13\\xa4\\x21\\x96\\xdc\\x3b\\x02\\xe9\\xa3\\xe1\\xbe\\xd2\\xa8\\xcf\\x6f\\x87\\xd3\\xfe\\xe9\\xcb\\x61\\xd8\\x5f\\x36\\x78\\x7e\\x6e\\xbe\\x5e\\xf5\\x5a\\xa7\\xca\\x4e\\xc0\\x58\\x06\\x55\\x6b\\x3e\\x23\\xb7\\x3f\\x33\\xcf\\xdf\\x57\\x93\\xae\\xb0\\xe6\\x3f\\xd2\\x94\\xfd\\xf3\\xf1\\xfd\\xd0\\x2d\\x62\\xbc\\x2e\\xce\\x4c\\x49\\x54\\x36\\x77\\x0d\\x62\\x90\\x9b\\x6c\\x98\\x5a\\xb9\\xcd\\x2a\\xba\\xde\\xe8\\xd4\\x41\\xab\\x76\\xe2\\x91\\x8a\\x8e\\xcf\\x35\\x88\\xe7\\x4a\\x12\\x39\\x8c\\x15\\xe8\\x2a\\x72\\xf6\\xed\\xbc\\xd2\\x8f\\x4f\\xd6\\xfe\\x94\\xdb\\x7c\\xc3\\x02\\xbb\\xf9\\x77\\xad\\xb0\\x0f\\x0c\\xdc\\xe1\\xe5\\x74\\x78\\x27\\x55\\x6e\\x65\\xe8\\xe6\\xe7\\x26\\x59\\xa7\\x8d\\x27\\x63\\x9d\\xa4\\x9c\\xd1\\x37\\xa4\\x67\\x21\\xcb\\x21\\xeb\\xe2\\x3b\\x32\\x6b\\x19\\x38\\x3f\\x31\\xbc\\x53\\xcf\\xfc\\x54\\x48\\xd5\\x2c\\xf9\\x5b\\xe2\\xa8\\x61\\x11\\x12\\xd0\\x41\\x77\\x65\\x3b\\xb4\\x75\\x38\\xbc\\xfc\\x71\\xd9\\x03\\x5c\\x3a\\x65\\x4d\\x07\\xdb\\x79\\x60\\x50\\x20\\x3d\\x3a\\xa9\\x02\\x50\\x34\\xce\\x3d\\xed\\x82\\x59\\xd4\\xa4\\x70\\x72\\x9a\\x24\\x41\\xe8\\x49\\x81\\xb3\\xa3\\xd9\\x78\\x32\\x37\\xa5\\x4c\\x17\\xd6\\x00\\x7d\\x40\\x2d\\x21\\x85\\x15\\x72\\x75\\xfb\\xf1\\x29\\x55\\x48\\x57\\x1b\\x94\\x98\\x5d\\xf8\\x0e\\x00\\x31\\x76\\x88\\xc7\\xed\\x1a\\xcf\\x40\\x69\\x6d\\xe0\\x14\\x77\\x89\\x05\\x70\\xc5\\xb2\\x81\\xc3\\xc5\\x0f\\x58\\x85\\x5b\\xda\\x72\\x1e\\xe9\\xae\\xd7\\xfe\\xf8\\x7e\\xbc\\xec\\x2f\\x29\\xfe\\x0f\\xb3\\x79\\xbc\\x9c\\x78\\x8b\\x19\\x8e\\x6f\\x0b\\x95\\x6b\\x59\\x5e\\x97\\xaf\\x4c\\x5b\\x7d\\x1e\\x9a\\x4c\\xeb\\x57\\x2b\\xd0\\x1e\\x8e\\x63\\x12\\xbc\\x84\\x8b\\x70\\xda\\x6e\\x48\\xdb\\x98\\x41\\x71\\xbf\\xd5\\x39\\x9f\\xc1\\xbd\\x91\\xa6\\x1e\\x95\\x75\\xb6\\x0b\\x11\\xaa\\x75\\xc0\\x8a\\xe0\\x38\\xb6\\x84\\x94\\x6e\\x66\\xaf\\xc1\\xb2\\xe1\\x19\\x4c\\x86\\xbe\\x8c\\x60\\x8d\\x8d\\x7c\\xec\\xdb\\xae\\xfc\\x34\\xd0\\xa2\\x43\\xbf\\x36\\x8e\\xb6\\x01\\x10\\xff\\x3c\\xde\\xee\\x33\\xef\\xe4\\xca\\xb9\\x29\\x8a\\xae\\xb5\\x43\\xe3\\x32\\xf3\\xd6\\xb1\\x17\\x2f\\x66\\x15\\x33\\x1e\\x4a\\xb5\\xea\\x3c\\x83\\x9c\\x04\\x12\\xb0\\x4c\\x66\\xcf\\x49\\x06\\x62\\x85\\x57\\xda\\xbb\\x53\\x96\\x80\\xac\\xec\\x4e\\x9a\\x6e\\xa6\\x5b\\xa3\\x74\\x6b\\xba\\x05\\x33\\x30\\xd2\\x53\\x02\\x35\\xff\\x81\\xae\\x74\\x4e\\xab\\x10\\x87\\xa8\\x9a\\x59\\x92\\x96\\x4f\\xca\\x27\\x18\\x1e\\x38\\xa8\\x23\\xf3\\xd8\\xe0\\x35\\xb5\\xa9\\xa3\\x5d\\x86\\xed\\x17\\x8b\\xde\\xe4\\x7a\\x87\\xa0\\x74\\x40\\x73\\x94\\x31\\x69\\x33\\xd0\\xab\\xe5\\x33\\xe7\\x56\\x77\\x5a\\x87\\xad\\xcb\\xb0\\x50\\xf0\\x17\\x63\\xcd\\xd6\\x22\\xa8\\xc9\\xda\\x2d\\xbd\\xe9\\x34\\x5e\\xd6\\xdd\\x51\\xbc\\xc6\\xc5\\x1b\\x34\\x1e\\x97\\x82\\x1d\\x2f\\x61\\xd6\\xf4\\x50\\x86\\x8b\\x33\\x1e\\xcb\\x2f\\xbd\\x49\\x86\\x3a\\xc1\\xe4\\x24\\xd9\\xb1\\x3a\\x2a\\xeb\\x41\\x46\\x3d\\xb9\\xef\\x65\\x8d\\x14\\xb3\\xb4\\x58\\xa5\\x17\\xdc\\xaf\\xff\\x6e\\xb1\\xef\\x8f\\xfd\\x5f\\xbf\\x1d\\x97\\x40\\xcf\\x53\\xd1\\x3c\\x77\\xf1\\x3c\\xda\\x66\\x46\\x5c\\x3b\\x2f\\x2e\\xf6\\xbb\\xb5\\xe2\\xf5\\xab\\x85\\x7b\\x46\\x10\\x03\\xec\\xcc\\xbf\\x73\\x79\\x9b\\x19\\x79\\xc6\\xa2\\x98\\x13\\xa3\\xe4\\x58\\xce\\x4e\\xc9\\x69\\x67\\xc5\\xa0\\xce\\xb9\\xbc\\x1a\\x6a\\xdc\\xfc\\xea\\x8d\\x30\\xca\\x32\\x64\\xd9\\x3a\\x62\\xd9\\x64\\x08\\x7f\\xd4\\xb9\\x57\\x0d\\xe1\\xdf\\x22\\xae\\x96\\x21\\x79\\xda\\xbd\\xbd\\x1d\\xff\\x04\\xe1\\xe3\\xca\\x80\\x2d\\xce\\xf2\\x0e\\xe0\\x93\\xb2\\xce\\x0f\\x34\\x53\\x73\\xa2\\x8f\\x9c\\x6a\\xdc\\x40\\x79\\x77\\x87\\xe6\\x91\\x50\\xef\\xb3\\x87\\x9c\\xf1\\xfd\\xad\\x9e\\x15\\x27\\x46\\x56\\x3a\\xe4\\x29\\x2e\\x41\\x1e\\x36\\x94\\xcf\\x52\\xce\\x75\\xfc\\x96\\x3a\\x9c\\x73\\xf5\\xad\\x9f\\x96\\xad\\xd0\\x2a\\x1d\\xac\\xf4\\x40\\x53\\x3b\\xc2\\xb6\\xc3\\xb2\\x1b\\xee\\xfa\\xd8\\xcf\\x1e\\xb2\\x48\\x1a\\x5c\\x39\\x57\\x87\\x41\\x27\\x5b\\xd6\\xea\\x79\\x0f\\xf0\\x93\\x67\\x7d\\xf0\\x68\\x17\\xfc\\xb6\\xeb\\xfe\\x18\\x5f\\x77\\xdd\\x7e\\xed\\xf9\\xb3\\x93\\xd5\\xe6\\x5d\\x69\\x9b\\x6d\\x6b\\x86\\x88\\x65\\xfd\\xfe\\xa0\\xf0\\x75\\xbd\\x6d\\x1f\\x9c\\x9f\\xdd\\xee\\x75\\x1c\\x8e\\x0b\\x52\\xee\\x95\\x73\\xd5\\xd3\\x38\\x01\\x47\\xce\\x78\\x0f\\x11\\x4c\\x62\\x6d\\x99\\x11\\xf7\\x7a\\xed\\xb1\\x8a\\xf5\\x87\\xcf\\xab\\x3d\\xc5\\xe5\\x93\\x07\\x57\\xb3\\xbe\\x19\\x78\\x19\\x82\\xcf\\x5a\\xd4\\xdc\\x99\\x89\\xaa\\x00\\x3f\\x9c\\x15\\x0b\\x0c\\xe8\\x5a\\xf1\\x95\\xab\\x75\\x36\\xeb\\x6b\\xdf\\xca\\x6d\\xb0\\xf6\\x5d\\xde\\x06\\x8b\\x9c\\x69\\x2f\\x30\\x13\\xa8\\x58\\xe8\\x39\\x66\\xc5\\xc5\\x56\\xb5\\x2c\\xde\\x70\\xf9\\xe5\\xe5\\x15\\x59\\xf6\\x27\\xb1\\xe0\\x9e\\x51\\x66\\x57\\xdf\\xd1\\x43\\x43\\xf8\\xb6\\x7f\\xff\\xfa\\xb6\\xba\\xee\\x95\\x33\\xf3\\x38\\x83\\x89\\xdc\\xc5\\x1a\\x37\\x20\\xda\\xfe\\x91\\xf9\\x8e\\xeb\\x7a\\x93\\xf4\\xe9\\x0e\\x25\\x49\\x7d\\xf8\\xfb\\xee\\xb7\\xb5\\x3a\\xa1\\x78\\xca\\xd5\\x4e\\x0c\\x8a\\xc2\\xa9\\xf9\\xe6\\xc4\\x13\\xdd\\x91\\xc8\\xe0\\xae\\xae\\x43\\x55\\xb6\\x8b\\x2a\\x46\\x7a\\x6f\\x81\\x95\\x61\\xdb\\xdb\\x6a\\x65\\xad\\xc1\\xe9\\x78\\x58\\x5f\\x1d\\xe4\\x84\\x88\\x3a\\x19\\xb1\\x2a\\x0c\\x48\\x16\\xad\\x20\\x24\\x5b\\x5b\\x92\\x69\\xa8\\x1b\\x23\\x7b\\x50\\x62\\x0b\\x28\\x65\\x2d\\x58\\xca\\x51\\x3e\\x35\\x0d\\x22\\x7e\\x1e\\x38\\x8d\\x53\\xb7\\x59\\x69\\x86\\x78\\xce\\x23\\x7d\\x71\\x1e\\xc7\\xba\\xcd\\x53\\xae\\xc2\\x6a\\xf6\\x05\\x58\\x12\\xd9\\x66\\xbf\\x1e\\xc2\\x81\\x21\\x5d\\xcf\\x12\\xb9\\xdd\\x29\\x87\\xf7\\xae\\x5f\\xe0\\x11\\xd7\\x92\\xca\\x9f\\x02\\xf8\\x84\\xa5\\xd3\\x45\\x40\\x02\\x5a\\x7f\\x1e\\x9a\\x08\\xfb\\x97\\x69\\xd9\\x31\\x53\\x55\\xde\\x6a\\xe8\\x4a\\xfe\\xa4\\x73\\x31\\x74\\xd1\\xb7\\x7a\\x66\\xb2\\x74\\x31\\x24\\x73\\x71\\xa9\\xcf\\x88\\x96\\x1f\\x75\\xa9\\x8b\\xa5\\xc8\\x2d\\x5d\\xea\\x77\\x30\\x78\\x87\\xdd\\x6f\\x8b\\x08\\x1d\\x39\\xe6\\xb9\\x10\\x03\\x82\\x34\\x33\\xe0\\x72\\x34\\x92\\x20\\x18\\x87\\x31\\xb1\\x5f\\xd2\\x30\\x50\\x2d\\x3a\\x5f\\xa7\\xbe\\x31\\x76\\xdd\\x2a\\xbb\\xee\\xec\\xb7\\xae\\xd3\\xd0\\x8e\\x80\\x3f\\xce\\xf7\\xb8\\x5f\\xd7\\x15\\x1b\\xfc\\x59\\xf9\\xdc\\x47\\x48\\x1b\\x1b\\xa2\\x44\\xf9\\x13\\x55\\x64\\x03\\xac\\xb1\\x34\\x6c\\xbf\\x5c\\x0b\\x5f\\x3e\\x8f\\xdd\\xee\\x75\\xd9\\xba\\x5a\\x56\\x71\\xb2\\x6d\\x72\\x03\\x02\\x22\\x79\\xfd\\x88\\xb2\\x1b\\x46\\x3d\\xe4\\xc0\\x4b\\x85\\x75\\x80\\xeb\\x05\\x5c\\xd4\\xbd\\x47\\xfe\\xfe\\x75\\x19\\x27\\x31\\x15\\x49\\x57\\x02\\x00\\xa2\\x8f\\x88\\xbc\\x73\\x2a\\x30\\xc6\\xa5\\x03\\xcd\\x02\\xde\\x39\\x24\\x58\\x46\\xd3\\x89\\x7d\\x8e\\x33\\x18\\x24\\x74\\x8c\\x5f\\xcb\\x12\\x44\\xa2\\xb5\\xca\\xbe\\xb3\\x59\\x69\\xab\\xe0\\x15\\x57\\xd9\\xaa\\x18\\xfa\\x26\\xd8\\x8a\\xd2\\x0c\\xe0\\x65\\xc3\\xf6\\x8f\\x48\\xaf\\x49\\x1b\\x38\\x9b\\x12\\x58\\x75\\x0a\\xf7\\xe6\\x5b\\xf3\\x9d\\xb1\\x61\\xb6\\xc0\\x4a\\x64\\x9b\\x20\\x03\\x99\\x72\\x05\\xf8\\xf9\\x02\\xe1\\xdc\\x0a\\x24\\x5b\\x02\\x9f\\xa0\\x81\\xf3\\xda\\x3b\\xc5\\xc0\\x26\\x4d\\x32\\x9b\\x2e\\xab\\xe2\\x2c\\xf7\\x59\\x01\\x2d\\xd4\\x57\\xbd\\xa1\\x23\\x4d\\x13\\xb0\\x83\\x30\\x91\\xc6\\xd0\\x31\\x5a\\x97\\xe5\\x75\\x92\\xae\\xa6\\xe9\\x13\\x43\\x1f\\x90\\xbd\\x29\\xb0\\x37\\xbc\\x38\\x79\\x06\\x5c\\xe0\\x0b\\x80\\x69\\xc9\\xe9\\xc9\\xca\\x21\\x63\\x55\\xfa\\xe0\\xe3\\x53\\xd6\\xa5\\xaf\\x1b\\x31\\x83\\x2a\\x6e\\x0c\\xda\\x82\\xa6\\x48\\x67\\xc3\\x47\\xcf\\x64\\x0b\\x00\\x49\\x50\\x42\\x3f\\x43\\x6b\\x23\\xf7\\x36\\x4c\\x03\\x26\\xc0\\xae\\x0a\\xc5\\x1d\\x51\\x95\\x4e\\x60\\x50\\x7d\\x4f\\x0d\\x6e\\x38\\x17\\xc6\\x00\\xa6\\xba\\x41\\x4f\\x90\\x3c\\x53\\x90\\x7f\\xb0\\xfa\\xd2\\x6f\\x48\\x03\\xc7\\x50\\x81\\xc9\\x17\\xe9\\xca\\x30\\x08\\xf0\\x20\\xa1\\xc5\\xff\\xac\\xb5\\x74\\xd8\\xbd\\xbe\\x1f\\x5f\\x17\\xb3\\x96\\x0b\\x0a\\x62\\x3e\\xbb\\xc7\\x19\\x9e\\x9e\\x7d\\xc1\\x35\\xfc\\x85\\x91\\x50\\x59\\xc4\\xf4\\x1a\\xe2\\x4d\\xf2\\xdf\\x24\\xa1\\x7c\\x9b\\x04\\xf4\\x40\\x43\\x9e\\xba\\xfe\\xed\\xf8\\xbc\\xff\\xed\\x78\\xfc\\xe3\\xa2\\x4d\\x8b\\x73\\x53\\x78\\x4f\\x9e\\x9a\\x55\\x1b\\x2a\\xe0\\x4f\\x26\\x71\\x5e\\x64\\x40\\xec\\x1c\\x40\\x55\\x42\\x16\\x0a\\x83\\x45\\xb3\\x4b\\x4c\\xa5\\x41\\x80\\xdb\\x6d\\xd9\\x59\\x2a\\xf3\\xbc\\xeb\\x2e\\x6b\\x88\\xc2\\x05\\xc8\\xe0\\x5a\\xee\\x61\\xc9\\xa5\\xb8\\x9d\\x37\\x88\\x24\\x7e\\xcf\\x96\\x6c\\x8c\\x9d\\x75\\x17\\x63\\x77\\xcd\\x16\\x82\\xe9\\x7e\\x69\\x0b\\xb9\\x3a\\xbc\\xd6\\x7d\\xc3\\xf0\\x5a\\xf7\\xfd\\xc3\\xfb\\xe7\\xe1\\xe5\\xf3\\xf1\\xcf\\xf1\\xb2\\xe7\\xea\\x89\\x32\\x6f\\xb9\\xed\\x8f\\xcf\\xdb\\x93\\xd1\\x7f\\xe3\\xd4\\xbd\\x9b\\x11\\x3f\\xec\\xc6\\xf7\\xa7\\xd7\\xf3\\x0d\\xa4\\x96\\x4d\\x7c\\x08\\xc9\\xcd\\xc1\\xa8\\x58\\xe2\\xd5\\x3a\\x3f\\x24\\xf1\\xde\\xd7\\x83\\x87\\xdd\\xd7\\x97\\xae\\x5f\\xd4\\x81\\x0b\\x26\\x6e\\x09\\x97\\x98\\xb5\\x40\\xd2\\xf4\\x4e\\x31\\x30\\xd2\\x23\\xfd\\x29\\x0f\\x12\\xe4\\xc7\\xbe\\x89\\xa1\\x42\\x2b\\xc3\\x6f\\xe1\\x18\\xac\\x4b\\xbb\\xfc\\x53\\xdc\\x25\\x25\\xff\\x98\\x13\\x91\\x8b\\xd1\\xf0\\x76\\x03\\xff\\xda\\xbf\\x2d\\xe7\\x0f\\x17\\x4c\\x6f\\x5d\\xd4\\x5d\\x13\\xdc\\xb6\\xd5\\x46\\xb9\\xbc\\x0d\\x1e\\x1e\\x10\\x13\\xb7\\x89\\x56\\xd9\\xbc\\xf5\\x06\\x38\\xda\\xec\\x74\\x1e\\xe6\\x9f\\x1c\\x1b\\x14\\xdc\\x56\\x27\\xa4\\x6a\\xe4\\xad\\x8b\\x59\\xf3\\x8f\\x73\\x8a\\xaa\\xc9\\x79\\x6b\\x5d\\x70\\x25\\x0b\\xc3\\x15\\xb9\\x5d\\x87\\x41\\x23\\x93\\xde\\x02\\x42\\x11\\x04\\xf7\\x72\\xc5\\x50\\x9f\\x04\\xf3\\xda\\x03\\x6d\\xbb\\x20\\xe5\\x5f\\x16\\xa3\\x9d\\xb1\\x05\\x94\\xbb\\xcd\\x34\\x49\\xdb\\x76\\xb2\\x2c\\xa7\\x02\\x8c\\x1c\\x54\\x93\\xcc\\xd9\\xc3\\x51\\xc9\\x86\\x6a\\x19\\xbd\\xf2\\x75\\xb0\\x99\\x11\\xc1\\x7d\\x43\\xa7\\x85\\xac\\xbc\\x83\\x9f\\x21\\xb7\\xc2\\xbd\\x07\\x90\\xe6\\xb4\\x4d\\xa9\\xa5\\x39\\x61\\xb6\\x5a\\x67\\x92\\x5f\\xe2\\xd6\\x59\\xe4\\x9f\\xba\\xad\\x0f\\x4c\\xa2\\xa2\\x9a\\x40\\xfd\\x13\\x92\\xd2\\x21\\x0d\\xc1\\x28\\x97\\xe8\\xb5\\xe6\\x54\\x0f\\xc6\\x54\\x1b\\x8c\\x57\\x3a\\x0f\\xc8\\x4e\\xbd\\xb3\\x18\\xef\\x77\\x7f\\x9c\\x01\\x2a\\x4d\\x45\\x75\\xce\\x23\\x55\\x85\\xa1\\x4a\\x0b\\x52\\x29\\xcf\\x3c\\x33\\x79\\xa6\\x38\\xae\\xb6\\x26\\xa5\\xb2\\xa2\\x4f\\xaa\\x09\\x7e\\xbc\\x54\\xbe\\x0a\\x0b\\x29\\xe7\\x87\\x73\\x22\\x8c\\xc9\\xf0\\x63\\x09\\x01\\x79\\xc1\\x6b\\xec\\x1a\\xce\\xe8\\x69\\x4a\\x4a\\x4f\\x4d\\xe0\\x11\\x84\\x1b\\x52\\x03\\x91\\x4e\\xda\\x48\\xba\\x7e\\xcd\\xbb\\xe1\\xec\\x7c\\x67\\x8a\\x63\\x2f\\xce\\x82\\x81\\xfb\\xb2\\xc5\\x39\\x97\\x36\\x1c\\x66\\x86\\xd8\\x45\\x9a\\x7c\\x76\\xf6\\xe7\\xe4\\xec\\x2c\\xa5\\x68\\x4a\\xd4\\xe9\\x0b\\x96\\xa0\\x3c\\xfb\\x52\\x6d\\x3c\\xdd\\x87\\x4c\\x42\\x47\\xbf\\xed\\x9f\\x8f\\xa7\\xfd\\x79\\xf7\\x97\\x52\\x31\\x75\\x92\\x90\\xe9\\x3b\\xea\\x15\\x8d\\x58\\x49\\xa7\\x34\\x89\\x54\\x8e\\x7b\\xc8\\x22\\x14\\x2e\\x70\\x9a\\x79\\x42\\x42\\x21\\x4d\\x08\\x8f\\xf9\\xd1\\x58\\x92\\xc1\\x3a\\x1d\\x55\\xac\\x70\\xac\\x4a\\x6b\\x1e\\x3b\\x66\\xcf\\x0a\\x08\\xd2\\x04\\x22\\x7f\\xed\\x14\\x64\\x48\\x3b\\xc1\\x44\\xc1\\xf4\\xa6\\x3e\\x6a\\x65\\x7e\\x91\\x3a\\x62\\x10\\x32\\xea\\xf1\\x37\\xe5\\x4a\\x8f\\x7b\\x03\\xa6\\x36\\x68\\x15\\x74\\xc7\\xd4\\x95\\x51\\x30\\x56\\x12\\x7f\\x06\\x2d\\x29\\xa6\\x68\\x1a\\x5c\\xaa\\x5a\\x65\\xbd\\xe1\\xe7\\xb5\\xc0\\xde\\x87\\xcb\\xcc\\x71\\xfc\\x29\\xe7\\xa7\\x0a\\x71\\x73\\x0b\\x62\\x02\\xad\\xb4\\x46\\xa6\\xb8\\xf6\\x1c\\x0d\\xe9\\x6d\\x07\\x09\\x95\\xc6\\x26\\x3b\\x49\\x2a\\x87\\x03\\x0b\\xf0\\x5f\\x08\\xa0\\x4d\\x59\\xe9\\xa0\\xb4\\xa1\\x4d\\xad\\xb4\\x0d\\x2e\\x25\\xaa\\xd4\\x84\\xd4\\x4b\\x9f\\xa7\\xba\\xe5\\x39\\x15\\x81\\xd6\\x9f\\x17\\xd3\\xcf\\x30\\x8a\\xad\\x13\\x00\\x7a\\x6a\\x38\\x77\\xbd\\xa1\\x9e\\x57\\xda\\x93\\xce\\x71\\x37\\xea\\x78\\xd8\\x2f\\x28\\x75\\xf8\\x70\\x72\\xd0\\xfd\\x73\\x62\\xf1\\xe1\\xb7\\xb7\\xdd\\xdb\\x5f\\xe7\\x4b\\xc3\\xbc\\x74\\x81\\x55\\x4b\\x7b\\x50\\xf2\\x20\\xca\\x46\\xc8\\x92\\xc7\\x61\\x81\\xc6\\x48\\x20\\x6b\\x26\\x55\\xc1\\xdf\\x0e\\xcc\\xb9\\x11\\x38\\xbe\\x34\\x57\\xac\\x24\\x9e\\x9e\\x9b\\x2b\\x26\\xe1\\x3d\\xe7\\x05\\xc9\\xf9\\xba\\xff\\x24\\xe7\\xbb\\x63\\x23\\xad\\x27\\x01\\x7a\\x5c\\xe9\\x15\\x29\\x9f\\x5b\\x0b\\x25\\x76\\xd2\\x4a\\xec\\xa4\\xa0\\xda\\x56\\xf3\\xac\\xb0\\x3e\\xb3\\xa3\\x73\\xd6\\x93\\xfc\\x0b\\xcb\\xbf\\xf8\\x8f\\xef\\xaf\\xe7\\xaf\\xe3\\x02\\xc2\\xe5\\xac\\x7c\\xa9\\x68\\x7d\\xc3\\xb3\\xd9\\x5a\\x26\\x9d\\x8c\\x1c\\x22\\x1d\\x49\\x11\\x8d\\x78\\x19\\x05\\xd7\\x00\\x31\\xef\\xd8\\xa2\\x00\\xe3\\xe6\\x05\\xc6\\xcd\\x2d\\x61\\xdc\\xe6\\xb0\\x71\\x27\\xad\\x53\\xbf\\x1e\\x41\\xfd\\xd3\\x3b\\x7e\\x73\\xdf\\xb0\\x76\\xf8\\xbd\\x7f\\xff\\xed\\xeb\\xf0\\xdb\\x9a\\xc1\\xea\\xf2\\x9c\\xe4\\x63\\x46\\x65\\xac\\xed\\x04\\x6c\\x21\\x28\\x6f\\xe8\\x6f\\x8a\\x9c\\x13\\x33\\xcf\\x7f\\x99\\x43\\x4a\\xa4\\x25\\xa4\\x04\\x62\\x2e\\x11\\x7d\\xe0\\x48\\x18\\x8a\\x03\\xd2\\xfd\\x68\\x62\\xe6\\x3e\\x85\\x53\\x11\\xde\\xa8\\x87\\x92\\x29\\xb0\\x93\\x35\\x1d\\x96\\x05\\x5c\\x2f\\x1e\\x7a\\x5a\\x85\\x20\\xf7\\x19\\x43\\xbf\\xbf\\x16\\xd8\\x6d\\xd2\\x2a\\xbb\\x70\\x86\\x85\\x84\\xb6\\x80\\xe0\\x54\\x04\\x6c\\x05\\xad\\xd9\\xb4\\x71\\x27\\xa3\\xe4\\x91\\xf2\\x9f\\xc3\\x21\\x83\\x23\\xc5\\x95\\xa3\\xe5\\xf4\\x95\\xa7\\xa5\\xb0\\xf2\\xb0\\x3b\\x63\\xf1\\xb2\\x7f\\x1a\\xdf\\xff\\x1a\\x96\\x83\\x30\\x15\\x16\\x1e\\x73\\x67\\x62\\x5f\\xe3\\x45\\xe9\\x4b\\x92\\x14\\x65\\x86\\x9e\\x14\\x0e\\x6c\\x38\\x68\\x18\\xdd\\x7d\\xb5\\x5c\\xf2\\x49\\xa7\\x78\\xa8\\xa6\\xc0\\x62\\x5f\\x96\\x4a\\x2e\\xe9\\x59\\xac\\xb0\\x64\\x92\\x9e\\x5d\\x1b\\xdc\\xda\\x6d\\x9d\\x9e\\xb8\\xe0\\x62\\xe1\\x9b\\x8b\\x0c\\xb6\\x38\\x27\\x89\\x13\\x22\\x3a\\xdc\\x66\\xf9\\x83\\x0d\\xff\\xe2\\x6e\\x0f\\xfe\\xb9\\x3f\\x73\\xb0\\x2e\\x4a\\x6f\\xf6\\x21\\x75\\x95\\x05\\xbf\\x7a\\x4d\\xe7\\x44\\x8a\\x01\\x37\\xc9\\x18\\x2e\\x36\\x66\\x2a\\x96\\x30\\x80\\x05\\xa5\\xfc\\xbd\\x1a\\xee\\xde\\x9e\\xc6\\x6e\\x77\\x31\\xca\\x53\\x31\\x2f\\xf1\\x3a\\x28\\xdb\\x4e\\xf0\\x91\\xd7\\x71\\x6f\\x3a\\x41\\x12\\x02\\xf8\\x25\\x9b\\xbb\\x4c\\xdf\\x04\\xc3\\xe6\\xe1\\xcc\\xe6\\x4a\\x50\\xab\\x65\\x0e\\x49\\x7c\\xf0\\xc2\\xba\\xb2\\xd9\\x09\\x04\\x73\\x2c\\xcb\\x18\\xc9\\x3f\\x78\\xac\\x43\\x76\\x3b\\x1b\\x08\\x4d\\x1f\\x4c\\x07\\x00\\x51\\x03\\x5a\\x36\\x3c\\x61\\xbc\\x7b\\xc5\\xbd\\x1e\\xfb\\x63\\xd9\\x53\\xff\\x8d\\xac\\xbb\\xe8\\xa0\\xfd\\xe7\\xa7\\x6e\\xf7\\xbc\\x7f\\xdb\\x9d\\xf5\\xd4\\xac\\x7c\\x6e\\xe2\\x10\\xce\\xcd\\x79\\x1c\\x7b\\xcf\\x4e\\x2c\\x8c\\x11\\x16\\xc1\\xa8\\x15\\x2d\\x17\\x46\\x42\\xae\\x68\\xd5\\x9e\\x34\\x9d\\x5a\\xfd\\xf1\\x81\\xd5\\x7e\\x9c\\xb5\\x5c\\xf1\\xcb\\x8d\\xa1\\x33\\x2d\\xbf\\xf2\\xcc\\x8c\\xfa\\x6d\\xe1\\x28\\x6b\\xe9\\x7c\\x21\\x0d\\x16\\x28\\x8a\\x58\\x98\\x83\\xdb\\xac\\x34\\x53\\x02\\x4e\\x9d\\x3e\\x99\\xb4\\x8e\\xcb\\xd7\\x37\\xe8\\x09\\x0f\\x30\\x08\\x60\\x19\\x03\\xc4\\x01\\x56\\x79\\x9d\\x00\\xed\\x41\\x1d\\x05\\x72\\xaf\\x90\\x55\\x48\\x2a\\xe4\\x31\\x24\\xc8\\xf2\\xf4\\x11\\xf2\\xd8\\x08\\xef\\x97\\xfc\\x1f\\xe7\\x54\\x60\\x77\\xcc\\x27\\x87\\x71\\xb9\\x72\\x55\\x72\\x55\\xb8\\xd7\\x83\\xed\\x6b\\x96\\x21\\xe2\\x8c\\x24\\x9d\\x5f\\x56\\xa1\\xf9\\xb9\\x45\\xd4\\xd1\\x5c\\xe4\\xc1\\xb2\\x55\\x12\\x3f\\x96\\xcb\\xb6\\xdc\\xe6\\xac\\x54\\xee\\x31\\x31\\x21\\xdc\\x69\\xc1\\x69\\xff\\x74\\x86\\xd8\\x34\\x2b\\x9b\\x60\\x9b\\xb2\\xbd\\x09\\xdb\\x14\\x04\\x49\\x51\\x60\\x9b\\x72\\xe5\\x78\\xfd\\x87\\x60\\x9b\\x3c\\x60\\x9b\\xf4\\x55\\x5a\\x0b\\x44\\xc1\\x2d\\xbc\\xa2\\xb3\\x44\\xe3\\x7c\\xc5\\xfc\\xb6\\x01\\xb9\\xe6\\x92\\x5f\\xb0\\x07\\x34\\xd8\\xaa\\x45\\x2e\\x2f\\x42\\xae\\x58\\x92\\xbe\\x67\\x7f\\xa3\\xae\\x7e\\x3f\\x9d\\x77\\x3e\\x95\\xf0\\x34\\xca\\x46\\x99\\x9c\\x07\\x48\\x51\\xe0\\x72\\xc2\\x17\\x20\\x13\\x7e\\x54\\x0a\\x53\\x1f\\x66\\x79\\x7b\\x9c\\x64\\xe7\\x12\\x2f\\x1c\\x6b\\x09\\x30\\xd7\\x13\\x06\\xae\\x25\\xc0\\xd4\\x6c\\xbe\\x79\\xd0\\x9f\\x0e\\x66\\x68\\x62\\xab\\x62\\x3b\\x68\\xaf\\xb4\\x1f\\xa6\\x1c\\xfe\\xe4\\x07\\x8c\\x9b\\xc7\\x05\\x4d\\x6c\\xe9\\xe2\\xdb\\x1d\\x71\\xec\\x76\\xc3\\xd3\\xae\\x7b\\x3f\\x9c\\x96\\x38\\x4b\\xe7\\x27\\x78\\x46\\xd2\\xa8\\x7b\\x07\\xd2\\xb3\\x14\\x87\\x48\\x3a\\x3f\\x0c\\x68\\x7e\\x68\\xac\\x55\\xc9\\xe1\\xa3\\xa1\\x4f\\x52\\xd7\\xfd\\x40\\x2b\\x24\\x70\\xfd\\x2d\\x64\\xd7\\x18\\x14\\x88\\x86\\x4c\\x54\\x53\\x6f\\xd4\\xe6\\x2a\\x51\\x5a\\xbf\\x35\\xf0\\x24\\xf9\\x4a\\x8e\\xbc\\x8e\\xcd\\x5a\\x33\\x85\\x1e\\x31\\x9e\\x27\\xbf\\x99\\x3d\\x65\\x36\\x54\\x8f\\xf4\\xe3\\xe1\\xed\\x2c\\xe3\\xf5\\xac\\x7c\\xca\\x51\\x8e\\x7a\\x40\\x7e\\x82\\xb7\\xd0\\x98\\x06\\xaa\\x2c\\x52\\x86\\x69\\x70\\x3d\\x42\\x95\\xa2\\x43\\x0e\\xa6\\x35\\x03\\xe0\\xec\\x4e\\x60\\xf3\\x04\\xcd\\x8e\\x27\\x6d\\x6b\\x00\\x6d\\x50\\x1b\\xa9\\xfc\\x0e\\xfb\\x17\\x3f\\x82\\x53\\x21\\x58\\x4a\\x7c\\xa4\\x31\\xef\\xcf\\x97\\x0d\\xa1\\xb2\\x87\\x73\\xd2\\x57\\x18\\xab\\xcb\\xb0\\x3b\\xa1\\xac\\xbe\\x18\\x5e\\x77\\xb6\\x89\\xcd\\x53\\x5a\\xd3\\x79\\x4e\\xba\\x24\\xb8\\x99\\x4a\\x35\\xc3\\xe2\\xe7\\x1c\\xdc\\x6b\\xa6\\xc1\\x88\\x85\\x73\\x9e\\x99\\x6a\\x0c\\x5d\\x8f\\xda\\x4f\\x4b\\x37\\x29\\xb1\\xc6\\xf4\\xc1\\xad\\x25\\xc4\\xd2\\x7e\\xb9\\xae\\xc9\\x18\\xbe\\xcb\\x63\\x9d\\xfb\\xdb\\xd2\\x36\\x3e\\x95\\x49\\x48\\x21\\xef\\x62\\x3a\\xbb\\xc1\\x26\\x85\\x2d\\x29\\x8a\\x8d\\xda\\xb5\\x7e\\x90\\x34\\x97\\x2c\\x6c\\xd2\\x05\\x41\\xa1\\x29\\x0a\\x0c\\xb3\\x51\\xf3\\x65\\x62\\xe6\\x10\\xd1\\xfb\\x81\\xaa\\x75\\xbb\\x2f\\xfb\\x8b\\xba\\x71\\x21\\x8f\\xbc\\x55\\x0c\\x4c\\xbf\\x90\\xe6\\x7f\\x80\\xbe\\xdc\\xfd\\x93\\xf4\\xe5\\xa5\\x39\\x6f\\x4f\\x7f\\xee\\xc6\\x7e\\xa5\\x9d\\xe5\\xc4\\x84\\xfd\\x6c\\x3d\\x27\\x57\\x58\\xa3\\x72\\x40\\xd4\\x88\\xc0\\x7d\\x9b\\xd4\\xc1\\x0c\\xc8\\x39\\x4e\\xfc\\xde\\x4d\\x2f\\x9d\\x12\\x96\\xbd\\x59\\x6a\\xd3\\x58\\x53\\xa1\\x38\\xc9\\x49\\xe8\\xb5\\x7f\\xf0\\x2e\\xe2\\xe0\\x1f\\x60\\x29\\x06\\x37\\x68\\x6c\\xe7\\x73\\xd4\\x14\\x54\\x58\\x66\\x74\\xac\\x2f\\x46\\x05\\xb8\\x83\\x7b\\x19\\xd1\\x4c\\x46\\x6f\\xbe\\xed\\x97\\x3a\\xb6\\xf4\\x5c\\x6a\\x84\\x23\\x6d\\x49\\xc3\\x12\\x6d\\xe9\\xdc\\x32\\x62\\x46\\x22\\x13\\x44\\x1d\\x76\\xad\\x5f\\x4b\\x10\\xeb\\xf0\\xb6\\x59\\xa3\\x7c\\xe2\\xbf\\x58\\xc6\\x2c\\x73\\x57\\x7b\\x18\\x78\\x75\\x52\\xab\\xb9\\x62\\xdf\\x77\\xc7\\xcd\\xb5\\x5b\\x92\\xe4\\xfd\\x53\\x2b\\xf9\\xc0\\x9c\\x3c\\xbe\\x9c\\xf6\\x2f\\x87\\xfd\\x4b\\xb7\\x7f\\x1a\\xdf\\x8f\\x6f\\x2b\\x2f\\xe1\\xe5\\x15\\x13\\x85\\x89\\x0f\\x12\\xaf\\x26\\xc6\\x0b\\x23\\xf9\\x9b\\x82\\xf8\\x5e\\x4c\\x99\\x12\\x21\\x9f\\x73\\x61\\x98\\x68\\xca\\x02\\xa8\\x2b\\x3c\\x3c\\xdb\\x6d\\xe0\\xd7\\x35\\x35\\x85\\x95\\xd6\\x23\\x5c\\x1e\\x13\\x87\\xb4\\xce\\x88\\x5e\\x70\\x4c\\x27\\xd8\\xe3\\x82\\xd4\\xb5\\x7b\\x6e\\x17\\xb4\\xe8\\xf3\\xe1\\x65\\x09\\x70\\xbb\\x2c\\x9e\\xec\\x68\\x21\\xc0\\x31\\xd0\\x58\\x3d\\x68\\x68\\xac\\x6e\\x1e\\xef\\x49\\x8a\\x16\\x15\\x2c\\x4e\\xc1\\x01\\x9c\\x94\\x69\\x13\\xa4\\x59\\xf8\\x2d\\x54\\x44\\x90\\x8b\\xd6\\xb6\\x23\\xfd\\x46\\xab\\xcc\\xe0\\x34\\x54\\x16\\x41\\x70\\x91\\x0b\\xf0\\x10\\x18\\x8a\\x1d\\xfb\\x5c\\x52\\xf1\\xc3\\xc0\\xa8\\x4f\\x4a\\x43\\xb4\\xca\\x98\\x28\\xce\\x43\\xe4\\x12\\x49\\x3a\\x51\\x8a\\x50\\x96\\x48\\x36\\x6b\\xd9\\xb9\\xfa\\x40\\x2f\\xbc\\x9d\\x29\\xef\\xf3\\x52\\xee\\x83\\xcc\\xa8\\x80\\x59\\x51\\x6f\\x9b\\x94\\x06\\x2c\\x7a\\xbd\\x29\\xbc\\x94\\xa4\\x77\\x16\\xba\\x91\\xe2\\xe2\\x63\\x6e\\x15\\x98\\xe9\\xb4\\x2f\\x9f\\x23\\xc4\\xea\\x68\\xc4\\x12\\xa8\\xfd\\x1a\\x90\\x02\\x3b\\x91\\x42\\xee\\x91\\xa2\\x0b\\xd1\\x24\\x65\\xa6\\x1b\\xd4\\x2c\\x12\\x59\\x61\\x2c\\xb5\\x98\\x71\\xae\\xd8\\x56\\x2c\\x3c\\x39\\x80\\xb0\\xbd\\x63\\x82\\x42\\x13\\xbf\\x0c\\xc7\\xb7\\x33\\x55\\x6e\\x59\\x3e\\xe1\\x0f\\x66\\x3f\\xb3\\xb3\\xcc\\x08\\x44\\xc6\\x07\\x89\\x47\\x38\\x3c\\x81\\xd4\\x29\\xbc\\xbe\\xda\\xd2\\xbe\\x61\\x35\\x50\\xee\\x74\\x52\\x12\\x2a\\xc6\\xbe\\x26\\x68\\x58\\x02\\xa9\\xcc\\xd4\\x28\\x00\\xe8\\x65\\x51\\xc0\\x49\\x46\\xed\\xc9\\xc9\\x45\\x42\\x9e\\xa2\\xbc\\x1b\\xa5\\x6a\\x5c\\xb3\\x53\\xe3\\xba\\xac\\x02\\x08\\xb5\\x5b\\xcc\\xba\\xb6\\x32\\xae\\x34\\x7c\\xeb\\xc6\\xf3\\x0e\\xa8\\x45\\xff\\xe2\\x5a\\x34\\x2e\\x6d\\x68\\x4b\\x28\\x6b\\x66\\x54\\x5c\\x58\\x08\\xbe\\xa7\\xc6\\xb3\\x59\\x0b\\x55\\x03\\xce\\x1e\\x8c\\x21\\xa4\\xc3\\xd6\\x4b\\xcf\\x91\\x9f\\x67\\x36\\xaa\\x93\\xeb\\x0a\\x86\\x76\\xc6\\x72\\x4f\\xed\\xca\\x33\\x3b\\xfd\\x0c\\x23\\x1a\\x2b\\xec\\xd2\\x0d\\x5c\\xbc\\xc0\\x80\\x26\\x5f\\xc5\\x7b\\xac\\x3f\\x5b\\x03\\x58\\xec\\xc4\\xdc\\x73\\x89\\x09\\x79\\x1b\\xac\\x92\\x27\\xc8\\xef\\xbb\\xf1\\x69\\xbc\\xc8\\xab\\x5d\\x39\\x57\\xf3\\xd9\\x49\\x4d\\xfc\\xfe\\x28\\xa6\\x82\\x7e\\x54\\x61\\x49\\x59\\xee\\x82\\xc7\\x88\\xf6\\x3b\\x9f\\xc0\\x63\\xac\\x5b\\xc0\\x54\\x1b\\x38\\x1a\\x1b\\x9b\\x4e\\x8d\\x69\\xed\\x43\\x63\\xc1\\x18\\x30\\x24\\xcf\\x85\\x96\\xd1\\x15\\x98\\x5a\\xe7\\x2c\\xe1\\x8b\\xf6\\xd9\\xb5\\x84\\x32\\xed\\x72\\x4f\\x7b\\xf7\\xda\\xb9\\x5c\\x00\\x6d\\xe7\\x4d\\x9a\\xc1\\xcd\\x9f\\xb4\\x77\\x08\\xd7\\xb4\\x3c\\x0b\\x1d\\xf7\\x81\\x5b\\xb3\\x6b\\x8a\\x1a\\xe5\\x48\\x84\\xb3\\x4e\\x79\\x0e\\xbb\\x70\\x7e\\xa0\\x7a\\x3e\\xb2\\xc9\\xfd\\xfe\\x76\\xec\\xf6\\x6f\\x7f\\x5d\\xd9\\xe0\\xce\\xce\\x4e\\xe9\\x7a\\x66\\x2d\\x4b\\x61\\x3c\\xb3\\x83\\xdd\\x64\\x51\\xd4\\x58\\xcf\\x62\\x3b\\xb0\\x42\\xd7\\xdb\\x19\\x86\\xef\\x04\\x83\\xdf\\xb1\\xfb\\x58\\xab\\xd2\\x1f\\x92\\x25\\xa3\\x6d\\x42\\x17\\xe9\\xb2\\x04\\x1a\\xb1\\x8a\\x98\\xbe\\xd1\\x1e\\xe1\\x31\\xb4\\x8a\\x02\\x66\\xd3\\x32\\xa9\\x34\\x4c\\x2b\\xf4\\xa6\\xf6\\xc6\\x4d\\xe2\\xf9\\x9a\\x02\\xdb\\xb5\\x2a\\x2a\\x08\\x18\\x5e\\x99\\x76\\x30\\x59\\x79\\xcb\\x08\\xfb\\x20\\xba\\x81\\x66\\x53\\x79\\x00\\xff\\x3e\\xb2\\x43\\x1e\\x82\\xfe\\x38\\xbe\\x1e\\xde\\x77\\xc3\\xc5\\xd8\\x4c\\x27\\xa6\\x77\\xaa\\x90\\xc0\\xb1\\xcb\\x19\\xc2\\x80\\xb8\\x9c\\x53\\x28\\x2e\\xe7\\x14\\xaa\\xcb\\xf9\\x17\\xc8\\x88\\x2c\\x6d\\x59\\x22\\x59\\x2e\\x4a\\xff\\x13\\xf1\\x2c\\xb9\\x01\\xc3\\xee\\xeb\\xcb\\x67\\x7a\\x7d\\xf6\\x6f\\xa7\\x65\\x76\\xc8\\x95\\xf3\\x73\\x54\\xe4\\x6a\\xe5\\x9d\\xc8\\x54\\xc6\\xb9\\xc1\\x57\\x55\\xe6\\x95\\x05\\x23\\xcb\\x38\\xe3\\x61\\x91\\x64\\x61\\x08\\xf8\\x66\\x8e\\x0e\\x75\\x8d\\x99\\x62\\x3c\\xe7\\xa2\\x30\\xcc\\x14\\x61\\x3e\\x2a\\x91\\xeb\\x0f\\xdd\\xa4\\xe6\\x64\\xb8\\xd5\\x9c\\x8c\\x4d\\x55\\x3f\\xf3\\x5a\\x52\\x46\\xb1\\x35\\x8a\\xa1\\x62\\x9e\\x94\\xb1\\xb0\\x35\\x22\\xf6\\x31\\x07\\xa5\\xbd\\x1d\\x34\\x48\\x3f\\x75\\x27\\xd2\\x20\\xac\\x61\\x1c\\xdf\\x43\\xb5\\x4b\\x12\\x3f\\x43\\x57\\xdd\\x89\\x08\\xe3\\x01\\x63\\x1f\\xfd\\xe5\\x40\\x96\\xf2\\x39\\x3e\\xf3\\x8f\\x92\\xde\\x31\\xc6\\x69\\xe8\\x3c\\xac\\xcb\\x5a\\x27\\xb0\\x13\\x66\\xa3\\x22\\x87\\xef\\x76\\x0d\\x27\\xcf\\x6b\\x2c\\xc2\\x59\\x36\\xec\\x18\\x80\\x35\\x02\\xc1\\x9b\\x7e\\x22\\xbb\\x79\\x0c\\x08\\xc7\\xc5\\x2f\\xf8\\x07\\x89\\xe5\\x82\\x78\\x9b\\x58\\x87\\xdb\\xf7\\xbc\\x1b\\x2e\\x5f\\x4f\\x2e\\x9c\\x92\\xf9\\xac\\x5f\\xf3\\xb4\\x48\\x2c\\xd2\\x4a\\x2c\\xd8\\xb8\\xe8\\x99\\x72\\x1d\\xa3\\x53\\x9e\\xf9\\x5d\\x20\\xb7\\x90\\x64\\x58\\x7b\\x74\\x76\\xaf\\xbe\\x26\\x32\\x4d\\xbd\\xc9\\x58\\x6f\\xad\\x5f\\x1a\\x7f\\x6f\\x80\\xb9\\xcf\\x27\\xdb\\x62\\x7d\\xbb\\x30\\xfe\\x2e\\xd6\\xb7\\x0d\\x1b\\xdf\\x2f\\x20\\x35\\x2f\\x10\\x35\\xef\\x46\\x85\\x70\\x97\\x1e\\x4f\\x87\\x05\\x0c\\xde\\xb2\\x78\\x02\\x03\\x2a\\x40\\x5e\\x13\\x31\\x35\\xd6\\xff\\x92\\xac\\x6d\\x85\\x14\\x9b\\x8b\\x4b\\xce\\xf7\\xec\\xea\\x92\\xc7\\xb8\\x52\\xbc\\x72\\x13\\x98\\xad\\x2e\\x6f\\x82\\xb7\\xd9\\x71\\xd4\\xbb\\x4d\\xae\\x66\\xdd\\x17\\x47\\x0c\\x03\\x95\\x4c\\xc7\\xb4\\x24\\x27\\xb7\\xe4\\xea\\x2e\\xb9\\x98\\xcc\\x49\\x7d\\xbf\\x87\\x8e\\x5f\\xbe\\xec\\x2f\\x2d\\x75\\x52\\xca\\x26\\x22\\xa0\\x33\\xdb\\x1f\\xb5\\xe1\\xf8\\x88\\xe8\\x42\\xf0\\xc3\\x68\\xc6\\x09\\xd4\\x48\\x9b\\x19\\x21\\x90\\x19\\x36\\xca\\x40\\xdb\\x85\\x62\\xe9\\xdb\\xc2\\x6c\\x03\\x63\\x83\\x64\\xd8\\x68\\x33\\xd2\\xb5\\x0e\\x47\\xba\\x44\\xce\\x66\\x23\\x74\\x36\\xda\\x28\\xb9\\xda\\xb6\\xc2\\x86\\x74\\x96\\xab\\x4e\\x85\\x85\\x25\\xa8\\xa8\\x3a\\x8f\\xcc\\xa4\\xd7\\xdd\\xdb\\x1f\\x6b\\x9a\\x7c\\x2d\\xe7\\xf7\\x36\\x19\\x60\\x03\\xdd\\xa6\\x52\\xeb\\x9b\\x90\\x21\\x41\\x84\\x3c\\x41\\xca\\x3f\\x4a\\x0e\\xd6\\x97\\x3c\\x42\\xc8\\x21\\x34\\xfe\\x8f\\xe9\\xe0\\xaf\\xfd\\xee\\xed\\x79\\xd7\\x5d\\xae\\xb5\\xd3\\x89\\xc9\\xd6\\x22\\x48\\x57\\x61\\x41\\xaa\\x57\\x98\\x4d\\x25\\xb0\\x16\\xb9\\x84\\x1c\\xc1\\xc4\\x56\\x5b\\x9a\\xde\\x83\\x84\\x4c\\xa6\\x41\\x3e\\xab\\x01\\xf5\\xe4\\x2c\\x95\\x21\\x4c\\xde\\x09\\x71\\xbc\\xe9\\x4d\\xd4\\x83\\xd5\\x2a\\x85\\x01\\x83\\x9e\\x99\\x07\\x31\\xc4\\xfe\\x5e\\xbc\\x92\\x54\\xfd\\xf8\\x72\\x29\\x05\\x48\\xa9\\xb8\\x4b\\xb5\\x32\\x09\\xf8\\x9e\\x9c\\x5d\\x46\\xab\\x38\\xf8\\xf5\\x99\\x5c\\xdf\\xd1\\xd2\\xda\\x05\\xe6\\x3b\\x02\\x53\\x12\\x7c\\x2d\\x4d\\x52\\x8c\\x98\\xc2\\xeb\\xbd\\x59\\x33\\x94\\x47\\xbf\\x6a\\x27\\xef\\x1a\\xd3\\x02\\x9a\\x0a\\x72\\x7d\\xb0\\xfc\\x85\\x5e\\xa0\\x73\\xdb\\x7c\\xf4\\x97\\xb7\\xc5\\x1a\\x1a\\x69\\x7e\\x7b\\x38\\x45\\x69\\xfb\\xa1\\xbf\\x20\\x68\\x0d\\xe2\\xcc\\x7c\\xa4\\x67\\x0e\\x1f\\x1f\\xbb\\xcb\\x9e\\xe1\\xd2\\x29\\x06\\x3f\\x9b\\x2b\\x38\\xcb\\xd7\\x28\\x5a\\x2e\\x58\\xff\\xd8\\x1d\\x2d\\x4b\\xff\\xe2\\xe4\\xf8\\xf0\\x4d\\xa7\\x08\\xaf\\x08\\x35\\x1b\\x81\\xee\\x56\\xd4\\x6d\\x2f\\x41\\xfa\\xd6\\x69\\xfe\\x26\\xbc\\x77\\xd4\\x3f\\x9a\\x04\\x3b\\x8e\\x99\\x7e\\x64\\xd7\\x7d\\x1d\\x76\\x2b\\xd3\\x1f\\x85\\xff\\xf5\\xfe\\x3d\\xd2\\x7f\\xc7\\x11\\x6c\\x23\\x6b\\xa2\\xf7\\xe2\\xdc\\x82\\xe4\\xdb\\xd9\\xe2\\xce\\x69\\xa3\\x78\\x6c\\xd8\\x9d\\x53\\xfc\\x75\\xe1\\x9f\\x43\\x79\\x7e\\xa0\\x8d\\x6f\\x87\\x97\\xf7\\xb1\\x5f\\xe6\\xea\\x9d\\x9f\\xa9\\x72\\x83\\x73\\x89\\x55\\x42\\xe3\\xa1\\x05\\x32\\x24\\x60\\xeb\\x31\\xfe\\xab\\x64\\x74\\x45\\x76\\xbf\\x43\\x68\\x87\\x38\\x39\\xf6\\x72\\x09\\xbe\\x02\\xec\\x31\\x33\\x54\\x87\\x15\\xf2\\xe5\\x69\\x5b\\x98\\xd7\\xa9\\x61\\x70\\xfb\\x8b\\xec\\x88\\x07\\x55\\xc9\\x71\\x7f\\x39\\xd8\\x28\\x9b\\x56\\x11\\x97\\xd7\\x92\\x1f\\xbe\\x21\\x24\\x28\\xd6\\xeb\\x04\\x04\\x39\\xe4\\x1e\\x69\\xc1\\x50\\x5b\\xfa\\x70\\x05\\xc2\\xe1\\x27\\x4d\\x8c\\x90\\x24\\xa2\\x07\\x27\\x25\\xa2\\x27\\xf1\\x3f\\x8e\\xe8\\x69\\x39\\xa2\\x27\\x6d\\x7e\\x24\\xa4\\x87\\x7b\\xae\\x3f\\xbc\\xbe\\xae\\xc9\\x11\\xd3\\x89\\x3a\\xb9\\xb4\\x8e\\x3f\\x2a\\x74\\x71\\xec\\x60\\xdf\\x78\\x06\\xf7\\xcf\\xc2\\xd5\\xf0\\x13\\xee\\xcc\\x2f\\xf7\\x40\\x13\\x0f\\x31\\xd1\\x48\\xc5\\x79\\x50\\x31\\xb9\\x0a\\x82\\xb0\\xb9\\x54\\x61\\x4e\\x1c\\x15\\x76\\x61\\x05\\x11\\x01\\xea\\x11\\xab\\xc1\\xfb\\xee\\x5f\\x87\\x8b\\xfe\\xe6\\xc2\\xc9\\x07\\x1a\\xe3\\x15\\x1f\\x68\\xd4\\x3f\\xc3\\x07\\xfa\\xc3\\x77\\x81\\x0f\\x34\\xb9\\xb9\\x0f\\xf4\\x5a\\xc4\\xf1\\xc2\\x93\\x59\\x83\\x03\\x8c\\x29\\x2e\\x50\\x73\\xdd\\xc1\\xbf\\x0a\\x78\\x1d\\xf5\\x85\\x07\\x14\\xec\\x3b\\x46\\xf7\\x9e\\x75\\x0e\\x11\\xf3\\xbc\\x9d\\xdc\\xa1\\x89\\x4d\\xfb\\x77\\x22\\x9d\\x8f\\x1d\\xcc\\xd8\\x4f\\xdd\\x65\\x6c\\xce\\xac\\x7c\\x81\\x93\\xbd\\x12\\x7f\\xb5\\xc6\\xa6\\x17\\x63\\x8d\\xd9\\x3f\\x2b\\x5e\\x41\\xa1\\x41\\x6c\\xd7\\xe5\\xbd\\xaf\\x30\\xf5\\x5d\\x83\\xb2\\x71\\x79\\xed\\x26\\x28\\xbe\\xbc\\x89\\x35\\x2d\\x26\\x9d\\x04\\x8f\\x8b\\x8c\\x6c\\x32\\x16\\xbe\\x93\\x33\\x03\\xde\\x80\\xcd\\x30\\x5b\\xd9\\x1f\\xeb\\xca\\xcf\\x87\\x71\\xf7\\xdb\\xb0\\xff\\xbc\\xd6\\x9d\\xd3\\x39\\x11\\xf5\\xa3\\xd2\\x36\\x71\\x5e\\xa9\\x69\\x73\\xc7\\xc1\\xbf\\x9e\\x9d\\x34\\x53\\x5e\\x92\\xa4\\xbd\\x95\\xac\\xb7\\x1a\\x79\\x6f\\x1d\\x47\\xcf\\x92\\x58\\x4b\\x33\\xe2\\x6e\\x6a\\x96\\x73\\xe0\\xb0\\x34\\xcc\\x0f\\x8a\\x5c\\x32\\x60\\x12\\xb4\\x2d\\xaf\\xe8\\x8e\\x95\\x0d\\xba\\x26\\x31\\xa9\\x81\\x2e\\x42\\x7b\\x6c\\x95\\x06\\x90\\x0b\\x60\\x99\\x9d\\xeb\\xe8\\x75\\xa0\\x35\\x21\\xc2\\x4c\\x85\\xb0\\x4c\\xe7\\xf8\\x45\\x76\\x4e\\x42\\x14\\x1d\\xbb\\xf4\\x1c\\x6f\\xb4\\xb4\\xd7\\xd0\\x54\\x0f\\x69\\x23\\x74\\xe7\\x1d\\x00\\x12\\xb4\\xae\\x29\\x6b\\xeb\\x74\\xbc\\x40\\x16\\x68\\x39\\xe9\\xca\\x89\\x75\\xb0\\x30\\xa6\\x77\\xc8\\x08\\x53\\x0e\\xd1\\x3b\\x21\\x21\\x91\\x80\\xc1\\x72\\x9c\\xeb\\x52\\x66\\x97\\x49\\xa0\\x0e\\xd4\\x0a\\xa1\\x4d\\xb4\\x87\\x3f\\x34\\x90\\x4b\\x40\\xc5\\x65\\xb1\\xec\\xbd\\x2d\\x38\\xc5\\x7d\\xde\\xea\\x18\\x3c\\x89\\xa2\\x5b\\x97\\x5b\\xaa\\x4f\\xda\\x9a\\xc4\\x94\\x0a\\xdb\\x96\\xda\\xc0\\x60\\xb1\\x61\\x1a\\x89\\x68\\x54\\xd4\\x08\\x32\\x86\\xbb\\x26\\x82\\xbc\\xb5\\x7c\\x32\\xbb\\x98\\xa6\\x5b\\xca\\x5c\\xef\\x90\\xe8\\x02\\xc2\\x2a\\xa7\\xac\\x1d\\x78\\xbf\\x93\\x71\\xd6\\x91\\x36\\xf1\\x4a\\x92\\x1b\\x6d\\x47\\xaa\\x8a\\x38\\x85\\xa2\\x0c\\x71\\x1a\\x1a\\x44\\xc9\\x76\\xf4\\x9b\\x44\\xb3\\x06\\x8c\\xa3\\x49\\xb9\\x20\\x8c\\x67\\x42\\x68\\x36\\xcf\\xeb\\xb0\\xc2\\x7f\\x4b\\xd5\\xc7\\x77\\x1d\\x85\\x99\\x37\\x75\\x20\\x77\\xc0\\x62\\x84\\x25\\xc9\\x66\\xf6\\x56\\x4e\\xe1\\xf1\\xca\\xdf\\x97\\x69\\xb9\\x47\\xcf\\x5d\\x6c\\xb5\\x74\\x4e\\x8d\\x54\\x03\\xf0\\x97\\xee\\xd7\\xf2\\xa8\\xb1\\x91\\xd8\\xfc\\xe2\\xfe\\x5a\\xb8\\x6d\\x67\\x39\\x2c\\xd7\\xda\\xaa\\xb5\\x91\\x7c\\x52\\x83\\xd1\\x92\\x6f\\xab\\x63\\x71\\x91\\x23\\xfb\\x58\\x43\\xc7\\xfd\\xee\\xad\\xeb\\x2f\\xa5\\x8f\\xf3\\x93\\x0b\\x64\\x84\\x5a\\xe1\\xe9\\x89\\xe3\\x03\\x7c\\xd5\\xe3\\xf9\\x6a\\xb1\\xfe\\x7a\\xd2\\x7b\\x49\\x6f\\x09\\xde\\xf1\\xc0\\xaf\\x87\\x12\\x40\\xb1\\x6f\\x58\\x0c\\x34\\x72\\x2c\\x13\\x88\\xaa\\x94\\x9c\\xfe\\xf1\\xf7\\xf0\\x2c\\x64\\xe1\\x8f\\xff\\x12\\x1b\\x7d\\x17\\xb1\\x11\\x75\\xdd\\xd3\\xf1\\x75\\x7f\\xf6\\x9a\\x95\\xb2\\x2a\\xef\\x02\\x1c\\xc2\\xd5\\x40\\x2d\\x37\\xc1\\x4e\\xfd\\xdd\\x0d\\xd6\\xd9\\x3d\\x36\\x9a\\x7d\\x03\\xa7\\xf5\\x7d\\xf3\\xf4\\x14\\x8c\\x24\\xa3\\xbe\\xe2\\xe0\\xdb\\x8c\\x57\\x63\\xd7\\xc7\\x33\\x27\\xe1\\x03\\xfd\\x7b\\x99\\xb6\\xb7\\x28\\xbe\\xd3\\xcb\\x3a\\xb7\\x15\\x41\\x4f\\x03\\xf9\\xf5\\x81\\xde\\xf8\\x37\\xcf\\xc6\\xbb\\x9d\\xbe\\x59\\xeb\\xf5\\x9f\\xd6\\xe9\\x67\\xd9\\xb9\\xb3\\xac\\xdc\\xc2\\x98\\xac\\xb1\\x65\\x20\\xc9\\xbf\\x60\\x0e\\x34\\xc6\\x7a\\x51\\x94\\x4a\\x70\\x48\\x8d\\x0d\\x01\\x83\\xe8\\x2a\\x00\\xc1\\x3a\\x70\\x41\\x8d\\xda\\x98\\x27\\x46\\xa6\\xca\\x13\\x2a\\xa9\\xee\\x8f\\x65\\x62\\xca\\xc5\\x92\\xe7\\xc8\\x24\\xa3\\xf4\\x79\\xbf\\x0f\\x9e\\xec\\x79\\x2f\\x3c\\xfd\\xbf\\xff\\xcf\\xbf\\xac\\xfd\\x3f\\x75\\xb5\\x6c\\x85\\x97\\x8e\\x3d\\x8b\\x67\\x96\\xf0\\xc4\\x2b\\xa4\\x7c\\x4c\\x4e\\x12\\x3e\\xac\\x67\\xab\\x01\\xa0\\x38\\x26\\xf9\\x7e\\x12\\x87\\x58\\xb5\\xa8\\x0b\\x25\\x8b\\x14\\x84\\x70\\x1d\\x04\\x72\\x72\\xca\\x5f\\xa4\\xd7\\xe6\\xd5\\x77\\xf6\\x9a\\x53\\xfe\\xde\\x0e\\x4c\\xdd\\xe2\\x56\\x3b\\xca\\xcd\\x3b\\x6a\\x22\\xde\\xb0\\xc2\\x02\\x62\\x2a\\x3f\\x47\\x81\\xd3\\x11\\x9e\\x8e\\x5f\\x23\\xd8\\x80\\x5a\\xe1\\x57\\xdb\\xe5\\xe7\\xed\\x2a\\xae\\x31\\xd6\\x5c\\x67\\xb8\\x40\\x35\\x7b\\xbf\\xb6\\xa3\\xe0\\xce\\xf0\\x4b\\x0f\\xd8\\xb1\\x99\\xe9\\xb8\\xb0\\xaa\\xfd\\x3a\\xe1\\x16\\xd4\\xde\\xb0\\xda\\x03\\x61\\xad\\x07\\x66\\xd0\\x4e\\xf3\\x59\\x67\\x2b\\x34\\x24\\x27\\xc3\\x4c\\x5b\\x7e\\xef\\xcc\\x2f\\xdc\\x37\\x95\\x15\\xfc\\x71\\xde\\x73\\xee\\xa0\\x73\\xc7\\x4d\\x2d\\xab\\x68\\x30\\xf5\\x5d\\x90\\x45\\x00\\x7d\\x14\\xf5\\x2f\\x36\\xf9\\xdf\\xff\\x3c\\x5e\\xb4\\x03\\x65\\xd3\\xe2\\x07\\x53\\xc1\\x6c\\xbc\\x8a\\xa8\\xb7\\xc0\\xae\\xe0\\x8e\\x5b\\xcc\\x8d\\x9a\\x3e\\x82\\x77\\xbe\\xe4\\x9e\\x95\\xf4\\xeb\\x69\\x52\\x48\\xd6\\xc8\\x2f\\xd3\\x2b\\x4b\\xd3\\x79\\xb5\\x97\\x63\\x53\\x36\\x69\\xa2\\x53\\x12\\x3a\\xbc\\x70\\x0a\\xae\\x6b\\x32\\x87\\x5e\\x30\\x11\\x4a\\x21\\x36\\x21\\x19\\x84\\x74\\x7b\\x15\\xbc\\x32\\x51\\x65\\xcd\\x58\\x43\\x9a\\xf5\\x06\\xe6\\x05\\x16\\x74\\x17\\x64\\xef\\x01\\x04\\x16\\xd0\\x33\\x67\\x11\\x3b\\x8c\\x2d\\x18\\x27\\xb6\\x95\\x39\\xc5\\x0a\\x34\\x4d\\xcb\\x36\\x82\\xe0\\x39\\xfb\\x39\\xeb\\x8a\\x41\\xc3\\x99\\x47\\x5e\\x59\\xfc\\xc5\\x43\\xa2\\x56\\xe7\\x91\\x43\\xa7\\x26\\x14\\xb2\\x1f\\x24\\xaa\\x85\\x07\\x02\\xc4\\xbf\\x2e\\x91\\x33\\xf9\\xf8\\xdf\\x41\\xe4\\x7e\\x93\\xe7\\x19\\x40\\x5d\\xfc\\xbb\\xfb\\x8c\\x5c\\x62\\x76\\x43\\x78\\x9c\\x64\\xf1\\x97\\x10\\x7a\\xd9\\xca\\x52\\x40\\x1e\\x53\\x00\\xf9\\xd5\\xbd\\x95\\xe2\\xcf\\xa7\\xd7\\xb7\\xc3\\xf1\\xed\\xdc\\x3a\\x38\\x2f\\x2e\\x29\\x3b\\xa4\\xa2\\xb7\\x2a\\x06\\x15\\x8c\\xd2\\x34\\x56\\xfc\\xbf\\x8f\\x9e\\xab\\x11\\x7d\\xe1\\x62\\xcf\\x81\\xe7\\x3e\\x7d\\xe6\\x30\\xca\\x57\\x3e\\xea\\xb5\\x16\\xe3\\x5b\\xc9\\xcc\\x6c\\x38\\x17\\x08\\xac\\x96\\x91\\x83\\x83\\x6d\\x62\\x6a\\x0a\\x3c\\x21\\x0b\\x88\\x61\\xd4\\x35\\xf6\\xa2\\x29\\x8c\\x32\\x74\\xc2\\xa4\\xb4\\x7e\\xc2\\xb5\\x7e\\x91\\x4a\\x7e\\xba\\xdb\\x1b\\x7f\\xed\\x86\\xb3\\x8e\\x90\\x12\\x89\\x23\\x4d\\x4a\\xa7\\x80\\x09\\x0b\\xba\\x4d\\x63\\xe9\\xaf\\x4d\\x2b\\x86\\x11\\x24\\x0c\\xb4\\x0c\\xc5\\x59\\xdf\\x20\\x66\\xbc\\xd7\\x61\\xa0\\x93\\x3a\\xe0\\x25\\xd3\\xed\\x2c\\xda\\x57\\xe9\\x65\\x8c\\x7a\\x35\\x76\\xc0\\x7e\\x81\\x60\\x50\\x93\\xe4\\xda\\x21\\xc3\\x74\\xf8\\xf1\\xb7\\x87\\x8f\\x6c\\x7e\\xf5\\xf8\\x91\\xe7\\xdd\\x61\\x1e\\xeb\\xc5\\x87\\xff\\x91\\x1e\\x52\\xaa\\xfa\\x8a\\xa2\\xb9\\x2c\\x9e\\x6c\\x66\\x91\\x33\\x32\\x39\\xf2\\x7b\\x06\\x0a\\x79\\x32\\x7a\\x6a\\x70\\x49\\xe2\\x03\\x00\\x40\\x41\\x05\\xfd\\x35\\x1a\\xfb\\xba\\x68\\xe3\\xeb\\x5c\\x4c\\x6f\\xe3\\xc9\\x78\\xcb\\xc8\\x8f\\xce\\x53\\xa5\\x48\\x28\\xb1\\x1c\\xc9\\x83\\x18\\x06\\xf0\\xd1\\x32\\x1b\\xee\\xa9\\xb1\\x1c\\x78\\xed\\x61\\x3e\\xce\\x3c\\x29\\x01\\xe3\\x0e\\xb4\\x8e\\x72\\x9b\\xa1\\xd1\\xe0\\xf8\\x77\\x03\\x22\\xb3\\xbb\\x26\\x2c\\xa9\\x6c\\xf5\\x89\\xef\\xe3\\x95\\x53\\x59\\x91\\x4a\\x87\\x68\\x4c\\x27\\xa4\\x6d\\xce\\x0f\\xf4\\x7b\\x77\\x7b\\xd7\\x79\\xde\\xbd\\xfd\\xf1\\xf5\\xe5\\x6d\\xbf\\xfb\\xbc\\x68\\xdd\\x54\\xf8\\x1f\\x3a\\x33\\x4b\\x03\\x9e\\x68\\x36\\x2e\\xe9\\x47\\xd7\\x4e\\xce\\xa1\\xed\\x1f\\xaa\\xf9\\xf7\\x82\\x51\\x38\\x0b\\x7a\\x4a\\x40\\xee\\x24\\xdf\\x57\\xdf\\x1d\\x49\\xcb\\x74\\xc2\\xe8\\x3b\\xe3\\xb5\\x7f\\x3e\\x2e\\x02\\x64\\x4b\\xc1\\x82\\xc3\\x91\\x2d\\x3a\\xba\\x80\\x85\\x6b\\x09\\xca\\x32\\x31\\x5e\\xa8\\xd4\\xfc\\x79\\xad\\x6d\\xb3\\xab\\x66\\x7e\\xac\\x29\\x10\\x71\\xb5\\xe1\\x73\\x6a\\xec\\x12\\xea\\x58\\x42\\x10\\x2f\\x57\\xd0\\x7a\\x72\\x62\\x6b\\xa8\\x11\\x8c\\xab\\x20\\x58\\xf5\\x02\\xf1\\xdf\\x21\\x9e\\x72\\x73\\xe1\\x4d\\x03\\x31\\x04\\x02\\x20\\xa8\\x8f\\xd1\\xe9\\x77\\x7c\\x66\\xcf\\xfb\\x97\\xaf\\x8b\\x9e\\xa5\\xc3\\x02\\x0c\\x64\\x93\\x5b\\x24\\x00\\x9f\\x96\\x30\\x18\\x7c\\x6a\\x8e\\x00\\xc4\\xf2\\xf9\\xc3\\x08\\x40\\xcf\\xfb\\xb7\\xdf\\xf7\\x4f\\xef\\x7f\\x2d\\x64\\xc0\\x79\\x21\\xfb\\xa6\\x43\\xcb\\x79\\x71\\x24\\xa0\\x0c\\x22\\xa3\\x34\\x24\\xd3\\x68\\x1b\\x2e\\x91\\x67\\xb5\\x0e\\x4a\\x6b\\x7f\\xd2\\x3a\\xd3\\x55\\x9c\\xe6\\x19\\xe3\\xd0\\x44\\xab\\xa2\\x11\\xe0\\xda\\x08\\x87\\xcf\\x9d\\xca\\x8d\\xe3\\x12\\x24\\xb7\\x96\\xfc\\x93\\x04\\x9a\\xb7\\xe0\\xcf\\x72\\x2e\\x74\\xda\\x27\\x7a\\x87\\xbf\\x99\\x94\\xe8\\x79\\x01\\x16\\xf7\\x5c\\x21\\xe2\\x40\\x29\\x11\\xe3\\x4f\\xa6\\x94\\x48\\x85\\x52\\x22\\x31\\xa5\\x84\\x13\\x4a\\x09\\xd1\\x4d\\x8c\\xb6\\xff\\x30\\xa5\\xc4\\xf3\\xa1\\x7b\\x7a\\x59\\x2a\\xe1\\x53\\xd1\\xbf\\xa9\\x23\\x6c\\xab\\x1c\\x88\\xbb\\x2d\\x67\\xcf\\x01\\xa4\\xb3\\x31\\x5e\\x01\\xb3\\xc5\\x8f\\x06\\x3b\\x2a\\x1d\\xfb\\x41\\x2b\\xbe\\x0a\\xcc\\xf1\\x86\\xaf\\x08\\xca\\x84\\x11\\x00\\x2f\\x5a\\x38\\xe0\\x4c\\xf8\\xf6\\xfe\\xdd\\xfc\\xbc\\x0e\\x5e\\xba\\x70\\x6b\\x09\\xba\\x37\\x6b\\x70\\xbd\\x5f\\x3a\\xc9\\x53\\x56\\x29\\x77\\x2c\\x8b\\x17\\x1f\\x68\\x50\\x8d\\x07\\x5c\\xe8\\x0f\\xf5\\x78\\xa7\\xa3\\x02\\xf6\\xa9\\x53\\x2e\\x2b\\xb8\\xb0\\xbd\\xb2\\xbe\\x93\\x8c\\x30\\xd2\\x11\\x58\\x06\\xbf\\xc2\\x6f\\x12\\x26\\xae\\x2d\\xb1\\x6c\\xb8\\x52\\x12\\x4f\\x97\\xf0\\xbb\\x17\\xfd\\x68\\xf5\\xc7\\xa6\\x00\\x50\\xe2\\xbd\\xf6\\xf0\\x0f\\xc3\\x5e\\x9d\\x55\\x13\\x19\\x9d\\xc7\\xc4\\x2e\\x28\\xd2\\x33\\xa1\\xf2\\x63\\xf7\\xbf\\x1d\\x0b\\xfc\\xfc\\x3c\\x37\\xc4\\xe3\\x68\\x8a\\xeb\\xd1\\x76\\x8d\\x38\\x72\\x00\\x49\\xc0\\x0f\\x80\\x2f\\xfe\\xf0\\xea\\x73\\xfc\\xbc\\x5f\\x61\\x2b\\x5e\\x16\\xb3\\x90\\x12\\x90\\x6c\\xf4\\x63\\x6c\\xc2\\x2b\\xed\\xbb\\x5f\\xbd\\xfd\\xe7\\xc3\\x45\\xdd\\xb8\\x4c\\x50\\x5e\\x8c\\xb2\\xc1\\x0c\\x9c\\xd5\\x9b\\x19\\xd4\\xba\\x1d\\x6c\\x56\\x36\\x77\\x89\\x83\\xa9\\x11\\x1c\\xd7\\x22\\xb6\\xdb\\xb7\\xac\\xbc\\x25\\x55\\x52\\xa9\\x5b\\x01\\x9b\\x72\\x83\\xb1\\xa4\\xad\\x86\\x21\\xb5\\xaa\\x49\\x34\\x0b\\x68\\xd2\\x1b\\x1b\\xfa\\x26\\xb5\\xa7\\x74\\xdb\\x09\\xf1\\x7c\\x7c\\xd9\\xbf\\x1f\\x3e\\x56\\x5c\\xf9\\x17\\x67\\x24\\x44\\x9f\\x66\\x42\\xe8\\x6c\\x54\\xe0\\xbd\\x34\\x49\\x81\\x00\\xb3\\xe3\\xbc\\x65\\x17\\x15\\x2d\\x75\\xb9\\x55\\xc9\\x8d\\x0d\\xd2\\x70\\x80\\xe9\\xcb\\xc9\\xaa\\xad\\x02\\x04\\xbc\\xf2\\x9a\\xde\\x1b\\xc4\\xbf\\x38\\x7e\\x3f\\x1d\\x4d\\xe4\\xb6\\x27\\xd1\\x50\\x23\\x2b\\xca\\x68\\x15\\x8c\\x6a\\x82\\x56\\x91\\x59\\xfa\\x7c\\x64\\x34\\x64\\x8b\\xe8\\x28\\x76\\xa5\\x69\\x71\\xa5\\x15\\x20\\x64\\x6a\\x77\\xf0\\x2a\\xd1\\xdb\\x90\\x3a\\xc7\\xb4\\x2e\\xb4\\x42\\x70\\xda\\x5a\\xe3\\x38\\xd5\\xd5\\x72\\x3a\\xb3\\x63\\xe4\\x4b\\xeb\\x00\\x5c\\xd9\\x62\\x8d\\xd0\\x9c\\x40\\xe0\\xb0\\x4a\\x6c\\x3a\\x03\\x38\\x40\\xcb\\x4b\\x16\\x20\\x93\\x58\\x68\\xf2\\xf1\\xe4\\xfe\\x71\\xca\\x60\\x1a\\x90\\xbf\\xce\\x17\\xc5\\xa9\\x4c\\xb2\\x4d\\x9c\\x72\\xc6\\x0f\\x16\\xc0\\xaa\\xa4\\xa1\\xd7\\xe0\\xa1\\xc8\\xb9\\xec\\x56\\xb4\\x79\\x89\\x5e\\xf6\\xf4\\x49\\x32\\x57\\x40\\x82\\x82\\x0b\\x80\\x63\\xa6\\x0e\\x0c\\x48\\x61\\x8a\\x59\\x25\\xd3\\xbb\\xd8\\xc9\\x56\\xd2\\x02\\xcf\\x8d\\xd6\\x24\\xe7\\x39\\xa6\\x83\\xf6\\xa0\\x96\\x86\\xd4\\xb4\\x80\\x26\\x8a\\x0e\\x19\\x5f\\xda\\x23\\xea\\xc9\\x71\\xf0\\x13\\xbd\\x7c\\x24\\x44\\x91\\x10\\x1a\\xa2\\xb2\\xc1\\xa3\\x2a\\x92\\x5f\\x67\\xd8\\x82\\x18\\x66\\x46\\x43\\xcf\\x89\\xd8\\xd6\\x28\\x6d\\x4e\\x2e\\x20\\x6b\\xc2\\xc5\\xce\\xb1\\x32\\x17\\x98\\xa4\\x3a\\xd0\\x2b\\xa1\\xfb\\xc6\\xc5\\x0d\\xcd\\x1b\\xf0\\xc9\\x78\\xe5\\x38\\xff\\xdd\\xdd\\x8e\\x69\\x7f\\x3e\\xbe\\x1c\\x99\\x6a\\x83\\x69\\x73\\xc7\\x65\\xaf\\x9e\\x9f\\x9b\\x40\\x8d\\xa0\\xbc\\x22\\xac\\x58\\x9f\\x1a\\x63\\xba\\xd0\\x4a\\xec\\x6e\\xe3\\xa6\\x1c\\xb1\\x05\\x6e\\xa2\\xb8\\x57\\x6d\\xea\\x1a\\x0b\\x3b\\x60\\xe0\\xf0\\x3e\\x06\\xbd\\x9b\\x85\\xcb\\xd2\\x22\\x1f\\x3b\\x5c\\xc3\\x97\\xf0\\x15\\x53\\x04\\x2d\\x5d\\x43\\xb7\\xc1\\x33\\x9b\\xf2\\xd0\\x8a\\xcf\\x38\\xba\\xb8\\x8c\\x07\\x06\\x6c\\x07\\x63\\x92\\xdd\\x22\\xb2\\xbc\\xa9\\x66\\x6e\\x1e\\x5f\\x2a\\x43\\x06\\x1c\\x91\\xe5\\xe8\\x63\\x18\\xe0\\xfb\\x70\\xdb\\xb7\\xf7\\x7c\\x3c\\x2e\\x54\\x69\\x1c\\xfe\\x97\\xaa\\xfc\\x57\\xa2\\x2a\\xa7\\x31\\x79\\xfa\\x6d\\x77\\x3e\\x4c\\x5c\\x34\\x23\\x4f\\xb4\\x1d\\x46\\x2a\\xb3\\xad\\x50\\x06\\x83\\xf4\\x6a\\x48\\x4e\\xce\\x29\\x4f\\x43\\xa7\\x78\\x04\\xff\\x3b\\x48\\x3f\\x7b\\x90\\x16\\x78\\x09\\xcf\\x13\\x40\\x02\\x24\\x46\\xe3\\x7e\\xd0\\x82\\x0c\\x5b\\xfc\\x0f\\xdf\\x05\\xb8\\x89\\x3f\\x7c\\x17\\xc8\\x74\\xd7\\x1d\\x75\\x9b\\x6b\\x9e\\x3a\\xab\\xd3\\xcc\\x72\\x9f\\xa0\\x1c\\xe8\\x3c\\x34\\x5a\\x7b\\xa5\\xa3\\x1d\\xe4\\xb3\\x23\\x91\\x1f\\xb0\\x2c\\xe0\\xce\\xd6\\xb9\\xbf\\x47\\x96\\x44\\xbd\\xfd\\xd4\\x1f\\xdf\\x0e\\x1f\\x67\\x43\\x50\\x0a\\xa7\\xb7\\x24\\xe7\\xeb\\x08\\x0d\\xb5\\xaa\\xe3\\xd5\\x90\\x9b\\x8f\\x0a\\x56\\xf2\\x63\\x77\\x21\\xb5\\xe3\\x87\\xef\\x72\\xb7\\x4b\\x4e\\xfb\\xb7\\xf7\\xf3\\x1e\\xe1\\xb2\\x05\\x8f\\xcd\\x8f\\x35\\xe5\\xe7\\x74\\x6b\\x4d\\x92\\xff\\xdb\\x42\\x9e\\x9e\\x8f\\xef\\xc7\\xb7\\xee\\xaf\\x6e\\x58\\xbe\\xa7\\x53\\xe1\\x14\\xa7\\xef\\xf2\\x05\\x58\\xd3\\xb8\\x48\\x26\\x1f\\xcf\\x72\\xce\\xc7\\x33\\x78\\x26\\x1d\\x10\\x91\\xdf\\x37\\x01\\x61\\x13\\xa1\\xed\\x1a\\xc0\\x15\\x91\\x98\\x45\\x5b\\x7b\\x20\\x19\\x60\\x3d\\x7d\\x7d\\x79\\xab\\xce\\x90\\xce\\xeb\\x35\\xc2\\xb3\\x5b\\xf4\\x94\\xd3\\x5e\\x59\\x9d\\x3b\\x40\\xfb\\xaa\\xcc\\x1a\\x68\\x66\\x01\\x04\\x9a\\xb3\\xa0\\xf2\\x15\\xbc\\x68\\x91\\x87\\x80\\xdd\\x1c\\x4a\\x26\\x3d\\x5d\\x49\\xab\\x9a\\x32\\x41\\x05\\x65\\x85\\xe1\\xbd\\xf1\\xb9\\x6f\\x48\\xa3\\x46\\xbc\\x79\\x66\\xe9\\x34\\x21\\xfe\\x0b\\x89\\x32\\x73\\xc1\\xa7\\xc8\\x3d\\x22\\xf6\\xcc\\x02\\xdb\\x7a\\xe3\\xe2\\x50\\x62\\x04\\x22\\xfc\\xa5\\xf9\\x8e\\xb1\\xe1\\xf8\\x75\\x5c\\x8e\\x0a\\x8e\\x79\\x92\\x5a\\xaf\\x5c\\xca\\xa7\\x46\\x87\\xdc\\x37\\xec\\xd4\\x4a\\x11\\xe1\\xbc\\x3e\\x73\\xac\\x57\\xc8\\xa0\\x65\\xd0\\xd9\\x9c\\x92\\x07\\x93\\x97\\xe4\\x29\\x66\\xb7\\xdc\\x25\\x78\\xab\\x38\\x77\\xd3\\x4b\\x12\\x73\\xca\\x5d\\x72\\x82\\x11\\x44\\x42\\xb3\\xe1\\xcf\\xf2\\xd8\\x93\\xbe\\x2b\\x49\\x9d\\xf6\\x4f\\xef\\xc7\\xa7\\xc3\\xcb\\x99\\xfd\\x7e\\x59\\x3e\\x65\\x29\\x57\\x25\\x3c\\x14\\xda\\x63\\xce\\x49\\x66\\xe7\\xfb\\x94\\x1e\\x52\\xa8\\xe7\\x90\\x35\\x44\\xdf\\x52\\x58\\x03\\x05\\x1b\\x67\\xb3\\xf5\\xc7\\x82\\x68\\xf2\\x0c\\xe7\\x73\\x26\\x71\\x56\\x6a\\xad\\x19\\xce\\xe7\\xbd\\xd0\\x31\\x40\\x15\\x2c\\x3b\\xe3\\x30\\xb7\\xc2\\x3a\\x13\\x11\\x3f\\x32\\xc3\\x1a\\xfe\\x21\\x4f\\x8b\\x01\\x18\\x2b\\xe7\\x56\\x0d\\x74\\x21\\x7a\\x15\\xd9\\xdc\\xa5\\xcc\\xa2\\xcc\\x4e\\x65\\xf7\\x1b\\xf0\\xd4\\xbd\\xed\\xcf\\xc1\\xac\\xce\\x4f\\xfc\\xa7\\x35\\xe9\\xcb\\x61\\x78\\x5f\\x40\\x27\\x2c\\x8b\\xc5\\x86\\xaa\\x95\\xf1\\x71\\x70\\x0e\\xca\\xa5\\x7c\\xd0\\x34\\x72\\x03\\xcf\\x1b\\x87\\xd2\\xc6\\x00\\x65\\x92\\x3e\\xb8\\xf4\\xe3\\x93\\x71\\xad\\xd2\\x29\\x0e\\x3e\\x2b\\x13\\xb0\\xb8\\x18\\x36\\x12\\xfa\\xcc\\x20\\xd6\\xf4\\xe9\\x91\\x24\\x30\\xe0\\x23\\x0c\\x5c\\xfa\\xf1\\x77\\x76\\x22\\x32\\xfe\\xd1\\x89\\x78\\xc1\\x06\\xc6\\xdf\\x2b\\x9d\\x08\\x1c\\xc6\\xcd\\x54\\x78\\xbb\\x17\\xbf\\x0e\\xef\\x07\\x70\\x32\\x74\\xfd\\x6e\\xb9\\xcd\\x9e\\x9f\\xa9\\x86\\x30\\x8b\\xa0\\x0c\\xd2\\xea\\xe1\\x2a\\x02\\x28\\x65\\xc6\\x52\\xc3\\x2c\\x52\\xcc\\xd4\\xd4\\x38\\x66\\xaf\\xf5\\x4a\\xf0\\xd8\\x73\\x1c\\x10\\x53\\x8b\\x4f\\x5a\\x28\\x16\\x9e\\x13\\x92\\xcb\\x06\\x24\\x0e\\x84\\x76\\x90\\xf5\\x24\\x68\\x15\\x5b\\xe4\\xc7\\xf0\\xd4\\x51\\x01\\x59\\x0c\\x4e\\x85\\x49\\x9f\\x0b\\xfc\\xea\\x6b\\xc0\\x62\\x1a\\x71\\xc1\\x74\\xce\\x51\\x95\\x74\\x8b\\xcd\\x4f\\x07\\xea\\xa8\\x2e\\x20\\x3b\\xd6\\x30\\x04\\x9d\\x86\\xff\\x25\\xd3\\x23\\xee\\xa4\\x8c\\x82\\xb9\\xe6\\xe9\\xe5\\xf8\\xbe\\x58\\x00\\x66\\x85\\x13\\x63\\x93\\x4b\\x9c\\x49\\x56\\xe0\\xa9\\x24\\xf8\\xda\\xc5\\x39\\x66\\x3a\\x7d\\x02\\x47\\x1d\\x78\\xb3\\x5e\\x25\\x3f\\x32\\xc4\\x3a\\xfa\\xa4\\x43\\xd2\\x8e\\x85\\x9f\\x9a\\xc1\\x1b\\x4e\\xc6\\xdc\\x31\\x41\\xa0\\x2e\\xa7\\xc3\\xe7\\xfd\\xf1\\xa2\\x86\\x52\\x5a\\xf9\\xa9\\x19\\x12\\x6f\\x69\\x21\\xee\\x80\\x25\\x09\\xfb\\x09\\x10\\xd9\\x4e\\xda\\x9a\\x09\\xec\\x17\\x36\\x63\\x6c\\x57\\x93\\xed\\xdd\\xca\\x2e\\x6f\\x97\\x99\\xa2\\xec\\xee\\x84\\x65\\x23\\xa7\\x82\\x59\\x9e\\xd3\\x84\\x59\\xfe\\x1d\\xcb\\xf8\\x12\\xb3\\xfc\\x4e\\x58\\xdc\\x5d\\x6f\\xdf\\x5f\\x4f\\x25\\xd3\\x66\\xde\\x53\\xf3\\xd2\\xff\\x35\\x59\\x37\\x45\\x54\\xdd\\x08\\xf8\\x18\\xc7\\x16\\xb1\\x35\\x7d\\x6c\\x64\\x6e\\x36\\xe5\\xf8\\x62\\xba\\x7a\\xfe\\x77\\xb3\\xbb\\x5f\\x76\\xef\\x5f\\x17\\xea\\x64\\x29\\xe0\\x4e\\x06\\xf2\\x1c\\xbd\\x2d\\x25\\x77\\x95\\x51\\x8a\\x40\\xee\\x61\\xd2\\x89\\x06\\x9e\\x66\\x2c\\x62\\x8a\\x3c\\xec\\xc1\\xf4\\xa9\\x5d\\xc9\\xbd\\x92\\x10\\x79\\xfe\\x3f\\x2e\\x19\\x89\\x78\\xc2\\x92\\x74\\xc4\\xee\\xb2\\x2c\\x2b\\x84\\x76\\xb7\\x5f\\x76\\xae\\xe1\\xd3\\xeb\\xfe\\xf8\\x3a\\x5c\\xd6\\xbc\\x96\\xb3\\xef\\x28\\xfc\\x0c\\x8b\\x81\\x8b\\x56\\x59\\x1d\\xae\\x56\\x17\\xfd\\x13\\x8a\\x9b\\xdb\\x69\\x06\\x23\\x30\\xfa\\x04\\xf1\\x69\\x89\\x65\\xb2\\x8e\\x25\\x9e\\xf8\\x7a\\x60\\x4a\\x45\\xfd\\xa3\\xfd\\x7a\\x1b\\x37\\xf3\\x65\\x77\\x3a\\xfc\\xbe\\x7b\\xdf\\x3f\\xfd\\xb6\\xff\\x72\\x3c\\x1b\\xfb\\xb3\\x33\\x12\\xc7\\xc3\\x64\\xae\\x4d\\x4e\\xaa\\xc9\\x69\\x90\\x8f\\x09\\x73\\x97\\x3d\\x5d\\x43\\xf1\\x78\\x3d\\xf4\\xec\\x97\\xfd\\xbf\\xde\\xd7\\x9e\\xcc\\xe5\\x3c\\xf9\\xb4\\x65\\x42\\xf4\\xdb\\xf4\\xb1\\xa8\\xd7\\x9d\\x58\\x5b\\xb9\\xfd\\x72\\x4d\\x99\\x17\\xce\\x19\\xfd\\xb0\\xc3\\x35\\x36\\x23\\x40\\x4e\\xc2\\xfd\\x60\\x08\\xe7\\x4f\\x84\\x3b\\x82\\x6e\\xe1\\xf6\\x23\\xf7\\xbb\\xb7\\xa7\\xe7\\x45\\xef\\x96\\x92\\x0a\\xfd\\xef\\x1c\\x35\\x2a\\x68\\xc5\\x20\\x56\\x46\\x0f\\x0d\\xf2\\x71\\xc0\\x32\\x11\\x94\\x0f\\xa7\\x3b\\x09\\x63\\x2f\\xfb\\xf7\\x3f\\x8f\\x6f\\x7f\\x3c\\x75\\xfb\\x05\\x4a\\xda\\xb2\\x78\\x72\\x8e\\x31\\x91\\xf2\\xe0\\x0c\\xf8\\xc3\\x69\\xba\\xde\\xf6\\x17\\xd6\\xfb\\xf4\\xfb\\x45\\x8a\\xdf\\x59\\xf9\\x1c\\x1f\\xbd\\xe3\\x85\\x1e\\xbb\\xba\\x55\\xda\\x07\\x15\\xf4\\xc0\\x44\\xe6\\xba\\x63\\x48\\x5b\\x4e\\x67\\xd6\\x8c\\xd5\\xce\\xa9\\x7a\\xc1\\xce\\x43\\x0b\\x23\\x43\\xa7\\x06\\x65\\xf4\\xa0\\x8d\\x0a\\x06\\x64\\xeb\\x9a\\xc9\\x76\\x8c\\x55\\x9e\\x7e\\xd6\\xd6\\xc0\\x9d\\x8e\\xfd\\xd9\\xec\\x7c\\x0a\\x40\\xd9\\xf3\\x79\\xd0\\x5a\\x05\\xc8\\x18\\x0d\\x63\\xdf\\x80\\xc3\\xc9\\x08\\xf5\\x3c\\x50\\xbb\\xdb\\x0e\\x7e\\x38\\xa5\\x73\\xab\\xb4\\x6e\\x95\\xc9\\x56\\x65\\x33\\x30\\xa8\\x6e\\xec\\x9a\\x24\\x4e\\x63\\xa0\\x23\\x03\\xe1\\x93\\xc4\\xa9\\xf4\\xf1\\xc9\\x5a\\xc4\\xa4\\x6e\\x6a\\xfc\\x9a\\xe3\\xf8\\xb5\\x76\\x60\\x1f\\x0b\\x82\\x4e\\xd8\\x57\\x2c\\xd0\\xe9\\xd6\\x09\\x46\\xb2\\x9b\\x83\\x09\\x4a\\x36\\x57\\x45\\xfd\\xf4\\x70\\x85\\x0c\\x5a\\x6b\\x65\\x5c\\xea\\xf4\\xd6\\x47\\x93\\xa3\\x72\\xdb\\xa8\\x53\\x56\\x6e\\xeb\\x83\\x26\\x11\\x84\\x6a\\x75\\x67\\xba\\xcb\\xf8\\x0c\\xc7\\xee\\x8f\\x45\\x7e\\xfb\\xf9\\x89\\x39\\x09\\xc5\\x7a\\x9e\\xd0\\xb9\\x81\\xee\\x04\\x46\\x2a\\x27\\xc4\\xe3\\x51\\x4f\\x21\\x9e\\x15\\xb3\\xa5\\xa8\\xc4\\xda\\xcc\\x61\\x5b\\x84\\x51\\xae\\x9d\\x48\\xde\\x18\\x86\\x96\\x04\\x1a\\xc6\\xe5\\xd1\\xe0\\x91\\x01\\xe6\\x8b\\x32\\x46\\xd2\\xa0\\xb2\\x9a\\xf1\\x67\\x8d\\x0b\\x56\\xaf\\x53\\x45\\xee\\x80\\x1e\\xb9\\x16\\xb2\\x7c\\x6a\\xc2\\xe4\\x07\\x43\\x3d\\x04\\xc8\\xc1\\x31\\xdf\\x51\\xdf\\x98\\x98\\x06\\x24\\x3e\\xb5\\x80\\xf3\\x84\\x48\\xdc\\x16\\x18\\x29\\xad\\x1e\\x7b\\xfd\\xfe\\x3c\\x7c\\x39\\xac\\xf4\\x32\\x17\\x4b\\xd8\\x75\\xd8\\x1a\\xaf\\x4c\\x4c\\x5b\\x4f\\x9b\\xc2\\xd6\\x24\\x87\\x60\\x83\\x76\\x6b\\x8c\\x71\\x29\\xab\\x76\\xeb\\xad\\xa3\\x79\\xdf\\x6e\\x9d\\x4e\\xb6\\xd5\\xaa\\xdd\\x46\\x97\\xa3\\xc7\\x45\\x3e\\xf9\\x9c\\xed\\xd0\\xe8\\x84\\xce\\x74\\xfc\\xcd\\x18\\x47\\xb7\\xd2\\x3e\\xb4\\x4e\\xb5\\x5b\\x1d\\x62\\xc8\\x46\\xb5\\x5b\\x17\\x7c\\xa0\\x02\\x1b\\xac\\xc7\\x19\\xb9\\xd1\\x74\\x9f\\x10\\xa9\\x2c\\xa9\\xe4\\xb6\\x4e\\x43\\x3e\\x89\\x4a\\x83\\xde\\x8e\\xa6\\x1e\\x09\\x10\\x86\\x64\\x89\\x98\\x70\\xd8\\xdc\\x13\\x22\\xf6\\x7f\\x3e\\xbd\\xed\\x87\\xfd\\x6e\\x5c\\x40\\x08\\x2e\\x8b\\xab\\x40\\x61\\x2c\\x60\\x76\\x38\\x2c\\x0d\\xdc\\xf5\\x05\\x41\\xa2\\x00\\xfd\\xcd\\x40\\x2b\\x32\\xf0\\xec\\xf9\\xc5\\xf2\\x79\\x88\\x50\\x08\\xc4\\xd2\\x32\\x00\\x67\\x20\\x24\\xf8\\x1b\\xad\\xc6\\x47\\x43\\x9f\\xae\\x55\\x21\\x32\\x6c\\x6e\\x1a\\xa2\\xa2\\x5f\\x78\\x43\\x8b\\x82\\x37\\x2a\\xb4\\x43\\x13\\x55\\x4c\\x03\\x4c\\xfd\\x03\\x5d\\x9a\\x06\\xf9\\x21\\xdf\\x46\\x6e\\x5a\\x9e\\x81\\x47\\xde\\x69\\xfe\\xbf\\xde\\x9f\\xfe\\xdc\\xef\\x97\\x4b\\x64\\x2d\\xab\\xb6\\x25\\xad\\xe3\\x20\\x4a\\x15\\xa7\\x3f\\xc8\\x6b\\x71\\x16\\x44\\x2f\\x88\\xa7\\x0c\\x13\\xd7\\x73\\x16\\x40\\x03\\xc2\\xc2\\x5c\\x8c\\xe1\\x5b\\x4b\\x8b\\x51\\xf1\\xee\\x6d\\x5d\\x4e\\xbe\\xc6\\x63\\xe2\\x37\\x57\\x88\\xee\\xbf\\x9d\\x36\\xcc\\xae\\x20\\x66\\xa1\\x4a\\x6b\\xc5\\xb7\\x7b\\xe9\\xcb\\x3c\\x8c\\x0c\\x47\\x53\\x84\\x5c\\xa1\\x4e\\x42\\xc4\\x1b\\x7d\\x99\\x32\\x7d\\x40\\x62\\x81\\xf8\\x7f\\xc8\\xd4\\x10\\xb3\\x52\\x47\\xef\\x4e\\x54\\x42\\x4b\\xc1\\x18\\xcc\\xeb\\xea\\xc9\\xd2\\x12\\xdc\\x21\\xde\\x1f\\xc8\\xff\\xc6\\x28\\x1b\\x4f\\x2e\\x5d\\x36\\x04\\xe8\\x4a\\xce\\x44\\x95\\xfc\\xc9\\x4a\\xef\\x00\\x25\\x76\\x16\\x73\\x7d\\x25\\x12\\x86\\x61\\x61\\xaf\\x75\\xf1\\x66\\xb5\\x8f\\xed\\xbc\\x33\\x1f\\x0d\\x8b\\x79\\x39\\x3e\\xed\\x5f\\xba\\xb7\\xbf\\x5e\\xcf\\x85\\x9a\\x65\\xb9\\x50\\x58\\x49\\xca\\xb2\\x09\\x88\\x41\\xb1\\xb9\\x0b\\x58\\x50\\x5b\\x95\\x1d\\x5e\\xfb\\xec\\x26\\x5c\\xaa\\x95\\x3c\\xe1\\xd5\\xac\\x65\\x1d\\x13\\x4d\\x60\\xea\\xfd\\xb6\\xd7\\x3a\\x3c\\x9a\\x09\\x0d\\xc1\\x27\\x0a\\xbd\\x58\\x00\\x8c\\xa1\\x71\\x2b\\x91\\x55\\xf7\\x92\\x9f\\x75\\x10\\x30\\x7d\\x63\\x95\\x15\\xc8\\x14\\x3b\\x40\\x14\\xb8\\xd7\\x73\\xe3\\xe1\\x79\\xd9\\x65\\x28\\x60\\x22\\xfa\\xa4\\x9c\\xc9\\x83\\xc5\\x8a\\x10\\x0d\\x8b\\x2e\\x40\\x62\\x6c\\x95\\x43\\xa4\\x79\\x01\\x47\\x17\\xa3\\x46\\x28\\xac\\x07\\x2b\\xe6\\x21\\x9b\\x21\\xd0\\x15\\xa8\\x33\\xbc\\xd2\\xc6\\x01\\xba\\xd1\\x28\\xe3\\xcc\\xe0\\x5b\\xe5\\x5b\\x64\\x4a\\x5c\\xbe\\xaf\\x77\\x1a\\xf1\\xfe\\x74\\x78\\x79\\xdf\\xbf\\xed\\xc7\\xf7\\xe5\\x0e\\x7f\\x76\\xa2\\x72\\x46\\x68\\x8f\\x61\\x24\\x59\\x1e\\xb4\\x8b\\x96\\xba\\x8f\\x5e\\x6e\\xb1\\x5c\\xcf\\xdd\\x9e\\x25\\x4a\\x86\\xf1\\xce\\x85\\x87\\xdd\\x86\\xea\\x3a\\xc5\\xd9\\x88\\xd8\\x33\\x0d\\x74\\x6c\\x6a\\x51\\xab\\x8c\\x6b\\x3b\\x7e\\x03\\x33\\x47\\xe3\\x61\\xe8\\x61\\xbc\\x2f\\x36\\xf2\\x7f\\xb7\\xef\\xf4\\xcc\\x44\\x34\\x33\\x0e\\x21\\x30\\x3a\\x83\\xb4\\x38\\xf5\\x5a\\x47\\x96\\x70\\x60\\x08\\xbf\\x9a\\xf2\\x35\\xd0\\x4b\\x8d\\x04\\x84\\x87\\x8d\\x83\\x77\\xd0\\x3a\\xa9\\x42\\x67\\x1c\\xdf\\x53\\x51\\xdd\\x41\\x41\\x04\\xa9\\x49\\x77\\xd0\\x80\\x28\\x03\\xa9\\xd7\\x82\\x32\\x76\\x15\\x90\\xd4\\x5c\\x02\\x92\\x62\\x4b\\x21\\x95\\x47\\x34\\xab\\xdb\\xf0\\xc4\\xeb\\xef\\xe3\\xa0\\xd5\\xea\\x12\\x46\\xc3\\x7b\\xa7\\xad\\x87\\x2f\\x07\\x36\\xea\\x8c\\xcb\\x06\\xcf\\xcb\\x27\\x94\\xb7\\xa8\\x87\\x6a\\x8d\\xd2\\xbc\\x2a\\x1b\\x14\\x39\\x7b\\x62\\x3f\\x53\\x40\\x24\\x13\\x89\\xf9\\x99\\x66\\xa7\\x3f\\x81\\xd4\\xe4\\x0e\\x1f\\x9a\\xef\\x48\\x03\\xd3\\x1e\\x89\\x6d\\x11\\x3f\\x6d\\xe8\\xb7\\x33\\x00\\x68\\xbb\\x22\\xb6\\x1b\\x71\\x8e\\x5c\\xf6\\xd4\\xe3\\xad\\x66\\x56\\xbd\\xfd\\xb5\\xc6\\xd7\\xd3\\x93\\x7a\\x7a\\xa5\\x26\\xbc\\xb1\\xbb\\x6d\\xb2\\x78\\x67\\xd3\\x36\\x68\\xd2\\x56\\xa6\\xa9\\x3a\\x05\\x9c\\x23\\x95\\xe8\\x1f\\xec\\x47\\xda\\x30\\x83\\x32\\x29\\x75\\x8d\\x45\\x68\\x1e\\xf8\\x22\\xe9\\x12\\xaf\\xb4\\x8d\\x1c\\x6a\\xdf\\x21\\x3c\\x2f\\x43\\x51\\xcb\\x59\\x25\\x9a\\x8d\\x01\\x29\\x19\\x1f\\x9b\\x4f\\x3a\\xd0\\x7c\\xf2\\x1d\\xec\\xff\\xa4\\x42\\xd2\\xe2\\x9c\\xea\\xfa\\xc4\\x78\\x7a\\x16\\x71\\x54\\x9c\\x6a\\x9a\\x92\\xd2\\xe1\\x36\\xeb\\xcc\\xb2\\x9f\\xcf\\xe2\\xbb\\xd7\\x4e\\x56\\x67\\x1a\\x49\\xa9\\x1c\\xe8\\xec\\x41\\xd4\\x87\\x76\\x26\\x6a\\x35\\x33\\x6f\\xc2\\x33\\xe2\\x59\\xfb\\xe0\\x84\\x96\\xf6\\xe3\\x57\\x98\\xbf\\x17\\xef\\xed\\xcf\\x98\\xbf\\xcb\\x10\\xc5\\x95\\x73\\xd3\\xdb\\x9b\\xc1\\x8d\\xa1\\x95\\x69\\x75\\xe7\\x15\\x74\\x3d\\x4f\\x3a\\x6f\\xec\\xf5\\x10\\x14\\x0d\\xa0\\x56\\x41\\x81\\x8b\\xe4\\xdb\\x9b\\x1d\\xf2\\xd4\\xec\\x82\\xaf\\xb5\\x7c\\x57\\xd2\\x59\\xab\\x2f\\xb0\\xfe\\xd9\\x95\\x6e\\x93\\xee\\xb2\\xdd\\x06\\xcd\\xe1\\xcf\\xdb\\x08\\xd7\\x6f\\x8a\\xdb\\x10\\x01\\x32\\xb2\\xcd\\x39\\x2a\\x03\\x2d\\x2c\\xb7\\xb3\\x90\\x4b\\x76\\x41\\x9b\\x6c\\xe7\\x43\\x1a\\x37\\x1d\\x30\\xfe\\x40\\xf8\\xae\\xa3\\x8a\\xa4\\x79\\xb5\\xa4\\x88\\x00\\xdb\\xeb\\x1b\\xfa\\xf9\\x75\\xf7\\x75\\x3c\\xdf\\xe7\\x57\\x4e\\x73\\x6f\\xb7\\x24\\xdf\\xda\\x93\\x4d\\xd0\\xb7\\x4f\\x8d\\x4d\\x7d\\x71\\x81\\x45\\x00\\xa6\\x83\\x45\\x98\\x4e\\x17\\x1f\\xd8\\x23\\x53\\xd3\\xff\\xf2\\x4b\\xeb\\xf1\\xcb\\x17\\xf8\\xc2\\x5e\\x0f\\x73\\x89\\x78\\x51\\xca\\x0b\\xa9\\x81\\xa0\\x31\\x68\\x7a\\xa4\\xb3\\xc5\\x9a\\xc8\\x9c\\x5e\\x5a\\xdb\\xa1\\x01\\x23\\x58\\xb1\\x70\\x7e\\x14\\xe2\\x19\\x4e\\xc9\\xd1\\x4e\\xa4\\x62\\x37\\x17\\x5e\\x62\\x15\\x5e\\xc2\\x5c\\x78\\x09\\xeb\\xc2\\x4b\\x98\\x09\\x2f\\xe1\\x61\\xe1\\xe5\\xf8\\xf2\\x79\\xff\\xbc\\x7b\\xf9\\x7c\\xe1\\x47\\x3a\\x3f\\x31\\x39\\xfe\\x63\\x5c\\x21\\xac\\x45\\x1e\\xdc\\x3a\\x63\\xed\\xc2\\xfb\\x53\\x19\\x6b\\x41\\x66\\x73\\x23\\xcf\\xaf\\x3a\\xa2\\x0a\\xee\\xbe\\x6e\\xe3\\xda\\xb0\\xce\\x08\\x3c\\xf3\\xe3\\x1e\\xa1\\xe3\\xeb\\xee\\x0c\\xf5\\xb2\\x96\\xb0\\x7a\\x63\\x12\\x67\\x2f\\xe0\\xe6\\xa8\\xb8\\x83\\x17\\xd2\\x26\\x95\\x2d\\x13\\xb3\\x39\\x7c\\x34\\x99\\x67\\x1b\\xfe\\xdb\\x24\\x41\\xe1\\x89\\x24\\xd3\\x8f\\x4f\\x36\\x46\\x46\\x0b\\x66\\xbe\\x0e\\xcf\\xc6\\x7e\\x06\\x37\\x6f\\x47\\x58\\x00\\x69\\x5b\\xf2\\x85\\xc1\\x03\\x9e\\x00\\x3e\\xa0\\x2f\\x23\\x9d\\x05\\x5d\\x9c\\xd1\\x8a\\x0e\\x7d\\xab\\x22\\x5f\\x4f\\x97\\xeb\\xa8\\x12\\xee\\x06\\x42\\x38\\xa3\\xa9\\xf0\\x4e\\xab\\xf7\\x2f\\x4f\\x87\\x97\\xa7\\xdf\\xde\\x8e\\x7f\\x8e\\x0b\\xef\\xf9\\xc5\\x99\\x79\\xc8\\xd9\\x50\\x98\\x31\\x2b\\xc8\\xb1\\xa4\\x4f\\x36\\x85\\x97\\x62\\xe2\\x63\\xbd\\xcd\\x4b\\x31\\x73\\xf0\\x31\\x92\\x06\\xf0\\xb0\\x18\\x05\\x43\\x82\\x43\\x2a\\x34\\xcd\\x3a\\x1d\\xf3\\x99\\x00\\xfc\\x10\\x2a\\x46\\x69\\xdc\\xcb\\xfe\\xcf\\x95\\x26\\xa3\\xb4\\xe2\\x9e\\xc0\\x97\\xeb\\x32\\x73\\x5e\\x51\\x1b\\x80\\xdb\\xd8\\x92\\x0e\\xd9\\xe6\\x89\\xf8\\x0f\\x88\\x9d\\x1c\\x1e\\x64\\x27\\x18\\x54\\xfa\\x8d\\xf0\\x65\\xdd\\x86\\xfb\\x58\\xe3\\x99\\x4e\\x97\\x0d\\x43\\x45\\x30\\xf7\\xe9\\x8b\\xc9\\xe9\\xb1\\xa6\\xfe\\x79\\x78\\xef\\xcf\\x1b\\xca\\x65\\x13\\xbc\\x4b\\x2e\\x5c\\x8c\\x43\\x8d\\x30\\x1f\\x4a\\xec\\xb7\\xf0\\x2c\\xa6\\x30\\xb3\\x95\\x55\\xed\\x5d\\x24\\x7f\\xc4\\x69\\x9c\\x10\\x2c\\xc6\\x64\\xd6\\xa7\\x3a\\x43\\xca\\x3d\\xe9\\x96\\xf2\\x29\\xcf\\x62\\x2b\\x94\\x35\\xad\\xdc\\x65\\x98\\x5f\\xc6\\x40\\x58\\xa2\\x4d\\x34\\x77\\x0c\\x3f\\xaf\\xbb\\xdf\\x17\\x66\\x41\\x39\\xae\\x31\\x70\\xd7\\x3c\\xce\\x9c\\xa1\\xda\\xc6\\xc1\\x18\\xb6\\x99\\x05\\x58\\x97\\xe9\\xd1\\x9c\\x58\\xc5\\x29\\xbd\\xb0\\xa2\\x25\\xa1\\xbe\\x2d\\xd0\\x40\\x2b\\xa3\\x89\\x5c\\x57\\xe0\\x66\\x33\\xd5\\x08\\x5b\\xdf\\x52\\x18\\x52\\x50\\xc6\\x08\\x30\\x33\\xf8\\x64\\x57\\x5c\\xd9\\x10\\xe4\\xe8\\xc7\\xc1\\x21\\xb6\\x7e\\x8d\\x8e\\xed\\xc4\\x03\\x83\\xdb\\x0d\\x7c\\x6f\\x5e\\x1a\\xef\\x39\\xc5\\xa8\\x43\\x4e\\x87\\xc5\\x84\\x9f\\x8a\\x78\\x2d\\xf7\\x49\\x69\\xe3\\x24\\x2d\\xb5\\x09\\x70\\x8a\\x64\\x05\\x2f\\x14\\x82\\x6b\\xbd\\xf2\\x5a\\x24\\x52\\x67\\x05\\xa1\\x03\\x12\\xe9\\x2d\\x08\\x8f\\x4e\\x93\\x1e\\x6f\\x03\\xc9\\x27\\x5a\\x69\\xff\\xcf\\x65\\xa8\\x7f\\x32\\xce\\xc3\\x03\\x33\\xb1\\x20\\x16\\x82\\xc6\\xcd\\xc8\\x0e\\x18\\x57\\xfe\\x33\\x3d\\x9e\\x17\\xf2\\xc6\\x71\\xe6\\x0e\\xb8\\xd3\\xa9\\xc3\\xfe\\x7d\\xa1\\xec\\xd7\\x12\\xee\\xd2\\x68\\x19\\x7b\\xfe\\x87\\xe2\\x93\\x21\\x6b\\xb9\\x1f\\x85\\xac\\x36\\xad\\xfd\\x09\\x77\\xd1\\x36\\x3f\\xd0\\xa2\\xcd\\xdd\\xca\\x08\\xe3\\xd1\\x8c\\xc9\\x91\\x41\\x9f\\x2b\\x04\\x90\\x00\\xe5\\x2d\\xc3\\x3e\\xfb\\xc6\\xce\\xfd\\xec\\xb3\\x07\\x00\\x14\\x59\\x59\\xc8\\x81\\x00\\x16\\x1e\\xd9\\xc7\\x94\\x0a\\xcd\\xde\\x25\\x47\\xee\\x35\\x7a\\xc9\\x71\\xc9\\x1c\\x79\\x67\\x02\\xbc\\x3c\\xbd\\x1f\\x8f\\xc3\\x62\\x06\\x94\\x22\\x5e\\x7c\\xb2\\x66\\x93\\x8f\\xd5\\xed\\x7a\\x0c\\x50\\xdf\\x68\\x3f\\xc1\\x90\\x79\\x95\\x91\\xa6\\x66\\x00\\x00\\x03\\xa7\\xd9\\x48\\x82\\x3c\\x69\\xb7\\xca\\x84\\xce\\x2b\\x38\\x02\\x03\\x89\\x01\\x74\\xd4\\xd2\\xf5\\x20\\x18\\x6d\\x6c\\xa7\\x25\\x5f\\xc2\\x1b\\xf9\\x38\\x19\\x50\\x7e\\xde\\x93\\xa0\\xdb\\xde\\xe8\\x13\\x73\\x47\\xde\\xbe\\xd4\\xb4\\x24\\x94\\x9e\\x74\\x32\\x77\\x2e\\xdd\\x9c\\x1a\\x9d\\x4c\\x4f\\x4b\\xa9\\x4e\\x77\\xae\\xbd\\xd7\\xc3\\xc7\\xb7\\xdd\\xf3\\x6e\\xd9\\xc3\\x52\\xc4\\xa2\\x59\\xd2\\xca\\x38\\x5f\\x92\\x49\\xd7\\x12\\x4c\\x79\\xdf\\xba\\xb1\\x6e\\x5f\\x8d\\x2e\\x5a\\x21\\xc5\\xea\\x6f\\x90\\x6e\\x3d\\xd4\\x94\\xa7\\x2f\\x87\\xb1\\x7f\\xda\\xff\\xb5\\x5f\\x69\\xd3\\xec\\xdc\\xbf\\x03\\x7a\\xea\\x67\\x9b\\x42\\x6b\\xb3\\x90\\xb8\\x70\\x7c\\x59\\x32\\x3d\\xae\\x9e\\xe5\\xb7\\xc6\\xf3\\x1e\\xc1\\xec\\xc6\\x00\\x6f\\xc1\\x8c\\xa1\\xd7\\x08\\xa1\\x74\\x19\\xf8\\x2d\\x92\\x6e\\xde\\xc0\\x36\\x8e\\xc1\\x53\\x5a\\x35\\x41\\x99\\xae\\x09\\x16\\xb9\\xa2\\x1a\\x71\\x25\\xf4\\x6e\\x93\\x6a\\x39\\x4a\\x34\\x8d\\xe1\\x02\\xc4\\x86\\x1b\\xf8\\x04\\x38\\x6b\\x30\\x20\\xd9\\x3a\\x32\\x81\\x9e\\xe2\\xcc\\x75\\xed\\x4e\\xfc\\xcc\\xac\\xbc\\xe2\\x24\\x78\\xed\\x3a\\x7a\\x1a\\xbc\\x09\\xf8\\x49\\xb0\\x8c\\xcb\\x04\\x9b\\xb4\\x57\\x72\\xef\\x51\\x23\\xdd\\x50\\xf1\\xb3\\x3b\\xa3\\xb4\\x72\\x8a\\x6e\\x5b\\x18\\x1b\\xa2\\xd9\\x74\\x9c\\x49\\x1e\\x0b\\xd9\\xb3\\x93\\xc1\\x33\\x6e\\x6c\\x40\\xa8\\xc3\\xc7\\x86\\x74\\x28\\x6b\\x3a\\xef\\xe1\\x92\\xd0\\xc0\\xbd\\xe6\\x13\\x23\\x5d\\xd6\\x24\\x25\\x3f\\x3b\\x99\\x07\\x5f\\x28\\x64\\x4e\\x1c\\xba\\xf5\\x01\\x99\\xce\\x09\\x6f\\x53\\xab\\x92\\xef\\x0d\\x16\\xcd\\xa0\\xa8\\xca\\x86\\xa1\\x02\\x1a\\xae\\xc7\\x98\\x40\\xff\\xc3\\x07\\x3d\\xaa\\x2a\\x59\\xf2\\x46\\x78\\xac\\xa5\\x65\\x23\\xd0\\x76\\xe8\\x9c\\x14\\x50\\x57\\x78\\x15\\x74\\xa7\\x11\\x77\\x48\\x23\\x41\\x03\\x81\\x30\\x28\\x66\\x0b\\x36\\x65\\x9c\\x7b\\x0c\\x7e\\x93\\x99\\x15\\x50\\x79\\xc1\\x24\\xa0\\x17\\xb4\\x74\\x2d\\xbd\\x97\\xc1\\xb2\\x11\\x01\\x03\\xaf\\x33\\x0d\\xba\\x51\\x18\\x77\\x3e\\x46\\x6a\\x27\\x3d\\x0c\\x63\\x1e\\x10\\x18\\xe1\\x79\\x58\\x95\\x36\\xbd\\xd5\\x6e\\xd3\\x65\\x89\\x84\\xf4\\x82\\x68\\x80\\x75\\x63\\x3e\\x51\\xd8\\x07\\x01\\x3e\\x29\\xcf\\xb3\\xac\\x91\\x69\\x36\\xa2\\xc2\\xb4\\xcc\\xf1\\xf1\\x63\\x83\\xf1\\xe7\\xe1\\xf3\\xfe\\x69\\xf7\\xf2\\xfb\\xb0\\xba\\x28\\xcc\\xcf\\x4e\\x66\\x5a\\x13\\x3b\\x9f\\x10\\x1d\\x82\\xa9\\xcb\\x11\\x7d\\x61\\x00\\x37\\xec\\x80\\xfd\\xac\\xa3\\x33\\x0c\\x86\\x8f\\xf8\\x41\\x46\\x8c\\x18\\xa9\\x5b\\x11\\x0e\\xc8\\xc7\\x03\\x93\\x32\\x0b\\xab\\x6c\\xc7\\xa1\\x67\\x15\\x03\\x3d\\x94\\x78\\xc4\\x30\\xa2\\x44\\x8e\\x01\\x3f\\x90\\x15\\x7e\\xac\\x33\\xe2\\x2d\\x10\\x07\\x93\\x94\\xdc\\x99\\x1e\\x14\\x14\\x3f\\x95\\x1e\\x82\\xdc\\x28\\xfa\\x05\\x55\\x5a\\x73\\xad\\x35\\xd7\\x5a\\x8b\\x9d\\x06\\xab\\xb0\\x37\\x9c\\x92\\xa1\\xf9\\x0d\\xf7\\x08\\xa1\\xdc\\x70\\x94\\x64\\xc1\\x16\\x8c\\x82\\x44\\xaf\\xb5\\x1b\\xf9\\x50\\x8e\\x90\\x45\\x92\\x15\\xf2\\x3b\\x68\\x38\\xf9\\xd7\\x23\\xdd\\xcd\\xe3\\x88\\xe3\\x10\\x18\\x3c\\x90\\x7f\\x46\\xf7\\x68\\xbc\\x92\\x5b\\xd2\\x3d\\x68\\xda\\x66\\x4e\\x12\\xc1\\xe8\\xe3\\x67\\x77\\x86\\xf1\\xed\\xfd\\xaf\\xa7\\xe7\\xe3\\xe7\\xe5\\xe8\\x4d\\x85\\xf7\\xd8\\x79\\x30\\x09\\x69\\x1b\\x97\\xe8\\xdb\\x1e\\xe9\\xd0\\xf4\\x0a\\x70\\x43\\x5c\\x61\\x23\\xbb\\x84\\xbd\\x80\\x6a\\x4c\\x3b\\x96\\x09\\x30\\x24\\x38\\xcb\\x91\\x48\\x25\\x09\\x29\\xd0\\x88\\xe6\\x29\\xbf\\x77\\x06\\x33\\xdc\\xd5\\x20\\x14\\xbc\\x74\\x46\\xf7\\x0e\\x0b\\x62\\xc4\\x42\\xea\\xf0\\x2e\\xea\\x4b\\xa6\\x22\\xa8\\xe2\\x2d\\x47\\x43\\xf1\\xee\\x97\\x3c\\xa7\\xf2\\xb0\\x64\\xbf\\xf9\\x9b\\xf9\\x81\\x06\\x9b\\x15\\xc7\\x86\\x4e\\x94\\x44\\x77\\x86\\x67\\x99\\x8f\\x23\\xc7\\x93\\x8e\\xdf\\x7a\\x89\\xce\\x67\\xbe\\x26\\x40\\xa9\\x22\\xd2\\x50\\x42\\x98\\x67\\x27\\xef\\x3f\\xe8\\xa9\\x3b\\xbc\\x75\\x03\\x52\\x0f\\x96\\xc4\\x1f\\xab\\x67\\x27\\x14\\xb3\\xa8\\x39\\xf8\\x80\\x91\\x55\\x5b\\x20\\xab\\x22\\xa2\\x63\\xf5\\xc4\\x3f\\xbc\\x8d\\xcf\\x6a\\x7e\\x09\\x39\\xb7\\x7e\\x7a\\x0a\\xee\\x95\\x06\\x94\\xfa\\xd7\\xb9\\xf9\\x8b\\x0b\\x36\\xb0\\x64\\xac\\x55\\xfe\\x76\\x57\\xfd\\x75\\x86\\x22\\x52\\x4b\\xce\\xb0\\xdc\\x24\\xe4\\xc3\\xcd\\x50\\xf6\\x0a\\x54\\x16\\x9f\\xa1\\x6f\\x4b\\x00\\x3e\\x77\\x16\\x0c\\x32\\x7b\\xad\\xdc\\x1c\\xa2\\x76\\xfe\\x5a\\xb9\\xb3\\x58\\x10\\x3b\\x33\\x90\\xa6\\xc7\\x31\\xdd\\x2e\\x22\\xa1\\x17\\x21\\xd0\\xb0\\x03\\x5b\\xcf\\x19\\xdb\\xc8\\x33\\x33\\x9e\\x3f\\xa3\\x07\\xd7\\x15\\x2c\\x23\\x80\\xa6\\x84\\x00\\x16\\x39\\xbe\\xd2\\xa8\\xe8\\x3a\\x5a\\x81\\x68\\xad\\x06\\x9e\\x47\\xb5\\x9c\\xc8\\xad\\x1c\\x53\\xe0\\xe0\\xb3\\xdc\\xca\\xe4\\xcc\\xb7\\xf2\\x2d\\x62\\x40\\x23\\x3f\\x2a\\x7a\\xf9\\x71\\x8c\\xf7\\xb9\\x89\\x39\\x80\\x80\\x13\\x18\\x46\\x0e\\x1d\\x75\\x25\\xa1\\xe1\\xa3\\x98\\xb5\\xef\\xdd\\x66\\xf3\\x03\\x14\\xda\\xdc\\x7d\\x6b\\x2f\\xd3\\xd9\\x09\\xb1\\xcd\\x18\\xa6\\x72\\x59\\x01\\xab\\x3e\\x63\\x81\\xbc\\x4e\\xf4\\xf8\\x81\\xdb\\xc0\\xc1\\xee\\x34\\x42\\x2f\\x3c\\xb0\\x48\\xa2\\x57\\xd1\\x8f\\xd6\\xa9\\xe8\\x14\\x00\\x37\\xc6\\xc8\\xa9\\x9d\\xf4\\x11\\xdd\\xd8\\xc8\\x45\\xf2\\xff\\x83\\x61\\xd0\\x7e\\xbc\\x36\\x74\\x9b\\x2b\\xb5\\xd9\\x7c\\x4b\\x75\\x9c\\xcf\\x4a\\xdb\\x7c\\x32\\x12\\x08\\x4f\\xfb\\xb7\\x95\\x6d\\xce\\xa6\\x99\\x66\\x4d\\x72\\x4e\\x60\\x79\\x0e\\xa8\\x2f\\x9a\\x69\\x3c\\xe9\\xc3\\x84\\x53\\x63\\x42\\xaf\\x43\\xcb\\x88\\x22\\xd7\\xef\\x27\\x70\\xfd\\xa6\\x98\\x25\\x6c\\xc2\\x2f\\xe1\\xaa\\x41\\xff\\x5a\\xdf\\x39\\x58\\x35\\x2c\\xc3\\xbc\\xe2\\x33\\xb6\\xa7\\xc6\\xa7\\xbe\\x71\\xb1\\x3d\\x79\\x52\\x43\\x5d\\x50\\xd9\\xaa\\xc8\\x97\\xc5\\x76\\xd3\\x19\\xfa\\x4d\\xf0\\x54\\x2f\\xb8\\x6e\\xc0\\x92\\xaa\\x01\\x13\\x63\\xe0\\xff\\xbd\\xc3\\x34\\xfa\\xba\\x7f\\x7b\\x7e\\xea\\x76\\xcf\\xfb\\xb7\\xdd\\xd3\\x12\\x4d\\xed\\xe2\\x4c\\xdd\\xf8\\x8c\\xf5\\x95\\xae\\xf2\\x26\\xef\\xc9\\x8c\\x29\\xf3\\xea\\xf0\\x7e\\x37\\x28\\x88\\xf6\\xed\\xc9\\xf9\\x2e\\x30\\x52\\x6e\\x1b\\x11\\xd4\\x4d\\x72\\x91\\xa9\\xf4\\xda\\xb0\\x9a\\xa4\\x62\\x31\\xa1\\x4f\\x4e\\x45\\x61\\x43\\x4a\\xaa\\xd7\\x05\\x2b\\xd4\\xe0\\x05\\x3a\\x05\\x11\\xe8\\x30\\xb1\\xb4\\xdf\\x02\\x3c\\xc2\\x32\\x86\\x9d\\x64\\x0c\\x7b\\x57\\xc6\\x40\\x27\\x93\\x0e\\xdb\\xbd\\x3f\\x75\\xbb\\x61\\xff\\xf2\\x79\\xf7\\x76\\x31\\x08\\x17\\xe7\\x27\\xd7\\x35\\x90\\x58\\xbb\\x2a\\x4f\\x21\\x75\\x08\\xd4\\x4c\\xc2\\x82\\x6f\\x0a\\xd2\\x5b\\x00\\x36\\x2b\\xc3\\xf5\\x55\\xa9\\xf9\\x7e\\xea\\xf5\\x78\\x35\\xfb\\xfb\\x07\\xa1\\xca\\x1f\\xf4\\x5d\\x80\\x38\\xa4\\x60\\x4b\\xb2\\x0f\\x6f\\x53\\x0e\\xef\\xb8\\xa9\\xd0\\x77\\x9f\\x77\\xef\\xbb\\xa7\\x71\\xff\\xfe\\xbe\\x64\\x4c\\x5a\\x39\\x57\\x8d\\xfe\\xd1\\xff\\x28\\x32\\x44\\x72\\x2a\\x87\\x01\\x5d\\xcf\\x90\\x45\\x8a\\x8d\\x11\\xaa\\x89\\x03\\x62\\xbc\\x61\\x8f\\x84\\x4a\\xc8\\x70\\xb2\\x34\\x4f\\x11\\x76\\xa8\\x75\\x27\\x45\\xe0\\x0d\\x16\\x65\\xab\\x1d\\xa0\\x40\\x32\\x9d\\x16\\xfe\\x39\\xac\\x4a\\x8e\\xe1\\xe6\\x31\\x3d\\x03\\xdb\\x30\\x1c\\x5d\\x6a\\x72\\xd7\\x44\\x65\\xab\\x39\\x02\\x30\\xb3\\xbc\\xf6\\x68\\xb0\\xa9\\x69\\xb9\\x3e\\x92\\x26\\x66\\xb4\\xb2\\x02\\x5d\\x44\\x67\\xa8\\x9e\\x71\\x00\\x21\\x17\\xed\\xbb\\x54\\xc4\\x4a\\x86\\x1e\\xe9\\x9b\\xe6\\x7b\\x59\\xa5\\x69\\x14\\x59\\x25\\xf6\\xb8\\x68\\xc0\\x8d\\x3a\\xba\\x8d\\x57\\x56\\x45\\x65\\x06\\x79\\x64\\x50\\x30\\x80\\x24\\x28\\x75\\x7a\\x70\\x8a\\x11\\xfb\\x94\\x55\\x4e\\x05\\xe5\\x7a\\x67\\x3a\\x6a\\x43\\x10\\xcb\\x88\\x1b\\xa8\\xb5\\x89\\x56\\x5b\\xcb\\xfc\\xc9\\xac\\x83\\xea\\x81\\x7b\\x88\\xc3\\x31\\xa0\\xfb\\x98\\x41\\xba\\x13\\xbd\\x29\\xca\\x1f\\x77\\x33\\xd0\\xf7\\xa9\\xdc\\xaa\\xd2\\x5c\\xdd\\x8e\\x74\\x36\\xe1\\x1a\\xad\\x85\\xe5\\x35\\x50\\xe3\\x13\\xac\\xc3\\x48\\xaf\\x89\\xa6\\x24\\xd4\\x09\\x18\\xbd\\xe2\\x40\\x01\\x64\\x10\\xf4\\x8d\\x71\\x71\\x10\\xd1\\x8a\\x9d\\xcf\\x2e\\x76\\x4b\\x7d\\x48\\x3d\\xb0\\xe4\\x7e\\xde\\x9f\\x0e\\xdd\\xfe\\xe9\\xf0\\xf2\\xe5\\xf8\\xf6\\x7c\\x9e\\xfe\\x73\\xf5\\x8a\\x09\\x2f\\xb6\\x64\\x49\\x32\\x5e\\x6c\\x4e\\xb2\\x93\\xd0\\x4a\\x96\\xdb\\xf5\\xf8\\xdf\\xe4\\xae\\x22\\xe1\\x5d\\x89\\x12\\x5d\\xa0\\xe2\\x89\\xc8\\x37\\xf1\\x2f\\x2e\\x7c\\xb8\\x73\\xbe\\xc6\\x12\\x1d\\xcd\\x81\\xf2\\x77\\xbb\\xe2\\xf0\\x79\\xff\\xf2\\xbe\\xf4\\xa2\\x9f\\x95\\x4f\\x5e\\x64\\x92\\xf0\\x62\\x81\\xff\\x37\\x99\\x3f\\x05\\x2a\\x00\\xe2\\x6f\\xa0\\x1a\\xfb\\x48\\x1a\\xb9\\x4a\\x00\\xf6\\x50\\x29\\x4c\\xdc\\x01\\x53\\xb2\\x22\\x07\\x74\\xd1\\x8e\\x70\\x37\\x59\\x51\\x72\\x6b\\x85\\x92\\x28\\x3b\\x98\\x09\\x91\\x34\\xdc\\x72\\xd0\\x17\\xbe\\x00\\x42\\xda\\xf6\\x26\\xb4\\x27\\x63\\x05\\xd4\\x32\\x44\\xe0\\x80\\xd1\\x79\\xe7\\xcb\\xba\\x1b\\xba\\x06\\x11\\xf2\\x90\\x2d\\x04\\xca\\xac\\x71\\x9e\\x25\\x20\\x87\\x1f\\x38\\x37\\x3a\\x8f\\x5e\\xa7\\x15\\x76\\xc3\\x22\\x10\\xae\\xba\\x07\\x28\\x86\\x9e\\x7b\\xde\\x7f\\x3e\\xec\\xce\\xbb\\x53\\x0a\\xc5\\x32\\x07\\xdf\\x6d\\x0f\\xf4\\x85\\xe8\\x15\\xc0\\x14\\x2d\\x47\\xfa\\xe3\\xf0\\xa3\\x40\\x16\\xae\\x2f\\xee\\xda\\x5e\\x35\\x89\\xaf\\xa3\\x97\\x0c\\x5a\\xad\\x6e\\x99\\x85\\x64\\x1e\\x31\\x99\\xed\\xc7\\x27\\x67\\x25\\x1c\\x3c\\xe7\\x05\\x3a\\xef\\x7a\\xb0\\x75\\xce\\xfd\\x3d\\xbd\\x8a\\x5a\\x0e\\x2e\\xf9\\xa7\\xe7\\xf1\\x62\\x03\\x98\\x9d\\x58\\x66\\x61\\x67\\x23\\x9e\\x7b\\x78\\x03\\x04\\xfb\\x12\\xca\\x1d\\xf4\\xad\\xa4\\x7f\\x2d\\x2e\\x79\\xe0\\xea\\x35\\x2e\\x3e\\xc6\\x90\\x8f\\xdc\\x04\\xbf\\x11\\x8a\\x7c\\xe4\\x65\\x16\\x8a\\xfc\\xfb\\x7d\\x39\\x76\\xbb\\x97\\xf3\\xa4\\xa2\\xf3\\x13\\x35\\xab\\xc4\\x3a\\xdd\\xbb\\x39\\x99\\xea\\xc7\\xa4\\xd9\\x5f\\x64\\xd9\\x54\\xdf\\x1e\\x8c\\x93\\x29\\x83\\xaa\\x93\\x4a\\xc1\\xe3\\x81\\x2f\\x56\\x3b\\xfe\\x66\\xb5\\xef\\x42\\x84\\x6b\\xd8\\x25\\x95\\xf9\\xba\\x7c\\x1b\\x1e\\xe9\\x75\\xff\\x36\\x9e\\xaf\\xb2\\xe3\\x92\\x20\\x52\\xdb\\xf9\\xea\\x22\\xc6\\xf1\\x12\\x4a\\x62\\x9d\\x30\\xaa\\x95\\xd5\\xc5\\xf3\\xea\\x52\\x28\\xbc\\xa0\\x92\\xc0\\x09\\x70\\x6d\\x01\\x19\\x6f\\x2e\\x3c\\x0f\\x54\\xfe\\x2c\\xfc\\x7a\\x5e\\x38\\x31\\xd5\\x7c\\x6f\\x23\\x04\\x8c\\x89\\x93\\x85\\xed\\x14\\x42\\xe1\\x6c\\x09\\xd6\\x70\\x56\\x42\\x3a\\x68\\x0d\\x80\\xc2\\x6b\\xda\\x7f\\xa6\\xdd\\x6b\\xfa\\xee\\xf2\\xc4\\x7f\\xb7\\x88\\x6f\\xd9\\x22\\xa8\\xeb\\x96\\xa1\\x88\\xf3\\xc2\\x79\\x58\\xfb\\x49\\xe7\\x47\\xb5\\x0b\\x9d\\x67\\xda\\x45\\xce\\x1d\\x89\\xc4\\x2d\\xa7\\xa4\\xc3\\xe8\\x9b\\xe8\\xff\\x88\\xaf\\x51\\xe1\\x28\\x8e\\x3e\\x29\\xe3\\xe9\\xc0\\x47\\x80\\x3e\\xf3\\x45\\xca\\x27\\xd1\\x2e\\x42\\x5e\\xa7\\x25\\xcc\\x57\\x23\\xa3\\x92\\x2f\\x0b\\xf6\\x50\\x08\\xc8\\xaf\\x05\\x81\\xe1\\x26\\xd3\\x86\\xc4\\x44\\x85\\x39\\x6d\\x1e\\xec\\x3d\\x31\\x5d\\xae\\x76\\x62\\x3d\\xb7\\x58\\x5c\\x2c\\x94\\x75\\x48\\xb3\\x89\\x1a\\x47\\x8f\\x17\\xa8\\x57\\xc7\\xe6\\x70\\xc7\\x81\\xda\\x5a\\x14\\x56\\x07\\x90\\x3a\\x7a\\x8b\\x69\\x99\\x76\\x92\\x2d\\x3c\\x9b\\xac\\x33\\x5b\\xca\\xd4\\x11\\x6b\\x0c\\x64\\xe3\\x8c\\x79\\x6c\\x45\\x73\\x9f\\x71\\xdb\\x4e\\x34\\x84\\xf1\\xfb\\xb8\\x6d\\x37\\x13\\x07\\xe1\\x83\\xe4\\xb6\\xdc\\x6f\\xbb\\xe1\\x22\\x7a\\xf4\\xfc\\xc4\\x94\\x14\\xfc\\x9f\\x15\\x27\\xfa\\xba\\x7f\\x5f\\x84\\x99\\xe1\\x50\\x62\\x7d\\x5a\\x78\\x17\\x39\\x97\\x0b\\xa6\\x45\\x9a\\xff\\x30\\x13\\x19\\xe4\\x74\\x71\\xe6\\xb2\\x60\\x8c\\x32\\x06\\x33\\xe6\\x87\\x05\\xca\\x30\\x8d\\x8f\\x4e\\x2a\\xf7\\x8d\\x2b\\x79\\xc6\\xba\\x2d\\xce\\x6a\\x9a\\x3b\\x19\\x54\\xdd\\x01\\xbf\\x37\\x1c\\xf4\\x49\\x77\\x08\\x54\\x73\\x93\\x54\\x74\\x0a\\x68\\x25\\xa6\\xd3\\x19\\x79\\x87\\x4e\\x39\\x04\\x6b\\x05\\x03\\x12\\x22\\x4e\\x79\\xb6\\xca\\x46\\x52\\xda\\x48\\xc5\\x22\\x45\\x28\\x2a\\xd3\\x91\\x46\\xa5\\x35\\xfd\\x89\\x4a\\x8f\\x10\\x5c\\xe0\\x90\\x86\\x93\\xdb\\x8b\\xda\\x68\\x3a\\xed\\x49\\x48\\x01\\x28\\x6e\\xa0\\xbb\\x34\\x26\\x6d\\x3a\\x49\\x3e\\x47\\xee\\x39\\x87\\x86\\x05\\xc3\\xda\\x8b\\x6d\\xf3\\x94\\x5b\\xcd\\xf1\\x54\\x8e\\x73\\xab\\x3d\\xe7\\x56\\xbb\\x71\\xc6\\x59\\x04\\x92\\xe6\\x86\\xf9\\x9c\\x85\\x2d\\x9a\\x91\\x7d\\xb3\\xbf\\x93\\xa1\\x2d\\x77\\x29\\x77\\x3a\\x0b\\xe5\\xe2\\x88\\xa5\\x1f\\xbf\\x8b\\x43\\x83\\x36\\x3f\\xd6\\xa2\\x9b\\x13\\xab\\x5f\\xa6\\x87\\xc8\\xb1\\x08\\xf9\\x5a\\x99\\x64\\x1e\\x13\\x0a\\x81\\xf4\\xed\\x45\\x26\\xe4\\xd8\\x61\\x91\\x09\\x7f\\x2d\\x51\\xf7\\x7e\\x6f\\x3c\\xed\\x5e\\x3e\\xbf\\x1d\\x0f\\x9f\\xcf\\x7b\\x65\\x2a\\x9f\\x98\\xb6\\x4c\\x82\\x12\\xd1\\x18\\x23\\x3a\\x87\\x31\\x92\\x79\\x06\\x79\\x9f\\x79\\xcf\\x8c\\x46\\x0c\\xab\\x75\\x5a\\xb9\\xac\\x2b\\x26\\xe2\\x1c\\x15\\x5f\\x72\\x6b\\xd7\\xdc\\xac\\x1a\\x10\\x54\\x97\\x40\\xfc\\xfc\\x93\\x33\\x1f\\xe9\\x3d\\x3e\\x6b\\x6e\\xc8\\x6f\\xc3\\xd7\\xfd\\xfb\\xf1\\xf8\\xde\\x3f\\x8d\\xaf\\xfb\\xdd\\x1f\\x8b\\x08\\xec\\xab\\x57\\x4c\\xd0\\xd1\\xbf\\xb6\\xf6\\xa2\\x1f\\xd2\\x5e\\x56\\x95\\x17\\xce\\xd7\\xf6\\xe9\\xd4\\x38\\x40\\xb0\\x19\\xc9\\x6e\\x72\\xbe\\xdd\\x2c\\xca\\xb4\\xa3\\xd7\\x52\\xa0\\x52\\x06\\x9f\\x91\\x79\\xcf\\x1f\\x5c\\x84\\xdd\\x36\\x9f\\x92\\xee\\x75\\x3b\\x04\\x54\\x6b\\x00\\xc6\\xb5\\x0b\\x83\\x7c\\x34\\x5c\\x4c\\x1b\\xc5\\x29\\xdd\\x31\\x44\\x62\\x4c\\xbe\\x1c\\xdf\\xfe\\xdc\\xbd\\x7d\\xde\\x5f\\x4e\\xcc\\xd9\\x99\\xff\\x2d\\xa3\\x64\\x22\\x87\\x80\\x27\\x7f\\x4a\\xc8\\xa8\\x0f\\x6e\\x53\\xc3\\xb7\\x1f\\xe8\\xcc\\xc3\\xcb\\xd3\\xfb\\x6e\\xf8\\xe3\\xa2\\x2b\\x6b\\xf9\\xa4\\x0f\\x61\\xbf\\x96\\x37\\xb3\\x1a\\xaf\\x49\\x09\\x5a\\x4d\\x2b\\x67\\x37\\x33\\xec\\x82\\xf8\\x61\\xb2\\xea\\x1c\\xb2\\x8b\\x7e\\x3b\\x8b\\x40\\x9d\\xb1\\x3f\\xcb\\x8f\\xff\\xfd\\xc3\\xb7\\xf9\\x1b\\xc7\\xef\\x81\\xc1\\x59\\xdd\\x95\\x6a\\xf1\\x94\\xae\\x58\\x96\\x5f\\xd8\\x5b\\xe8\\x9b\\xce\\x12\\x80\\xed\\x7e\\x94\\x6b\\xd0\\x5a\\x5e\\xad\\x39\\x8a\\x7b\\xbe\\xdb\\x9e\\x1a\\x1b\\x38\\x32\\x2b\\xab\\xb3\\xed\\x5b\\x78\\x32\\x2b\\x3b\\x62\\xdd\\xc9\\x4f\\xfc\\x93\\xe5\\x26\\x7e\\x37\\x8b\\x98\\x9b\\x7d\\x81\\x74\\xb3\\x2c\\xe6\\x37\\x5e\\xb7\\xe0\\x07\\x41\\xb0\\x2f\\x10\\x85\\x22\\x64\\x25\\x4b\\x1f\\x23\\x27\\xaa\\x47\\x4e\\x58\\xb7\\x48\\x93\\xed\\xe3\\x14\\x38\\x33\\xcd\\x08\\xcd\\x1f\\x4b\\x9c\\x9b\\xc5\\x4c\\x13\\xb9\\x56\\x60\\x6e\\x40\\xb1\\x80\\x89\\x55\\x61\\x6e\\x20\\x04\\x02\\x39\\x41\\x2a\\x73\\x26\\xb7\\x38\\xee\\x49\\xc7\\x3d\\xa9\\xdb\\xef\\x99\\xee\\x9b\\xff\\xa4\\xe5\\xea\\xfe\\x00\\x3f\\x1f\\xc6\\x71\\x65\\x80\\x4b\\x31\\x06\\xd8\\xb7\\xf4\\x9c\\xd0\\x21\\x3a\\x2a\\x50\\x5b\\x10\\x38\\x36\\x22\\x3c\\x50\\x73\\xc4\\xa2\\x1f\\x0a\\x13\\x67\\xe3\\x0a\\xc9\\xa0\\x44\\xac\\x21\\x88\\x0e\\xee\\x19\\xaf\\x02\\x28\\x07\\x34\\xe3\\x17\\x00\\xe9\\x31\\x2a\\xd7\\x4e\\x0e\\x1f\\xb8\\xa7\\x8d\\xd2\\xf9\\x14\\x02\\x60\\xad\\x34\\x8b\\x1e\\x74\\x9f\\x9c\\x14\\x3d\\x34\\x44\\xf4\\x52\\x46\\x5c\\xdc\\xa9\\x09\\x61\\x16\\x1b\\x1b\\x05\\x91\\xa8\\xed\\x1a\\x99\\x52\\x80\\xb2\\x01\\x83\\x0a\\x82\\xd0\\xef\\xd4\\x6e\\x60\\xa9\\x75\\x43\\x97\\xc1\\x4b\\x85\\xeb\\xb4\\x1f\\x8d\\x04\\xa0\\xfb\\x2e\\x78\\xf0\\xbb\\x7a\\xc6\\xe2\\x32\\x1c\\x8f\\x31\\x6a\\xc1\\x10\\x34\\x90\\x3e\\xdb\\xb6\\xca\\xe0\\x34\\x8f\\xfa\\xc6\\x9a\\x42\\x07\\x07\\x9c\\xa7\\x26\\x7a\\x61\\x52\\x2b\\xe0\\x6e\\x03\\xcf\\x0e\\x49\\x2a\\xbc\\x47\\x7b\\xcf\\x63\\x74\\x91\\xbb\\xba\\x2c\\x9e\\xe7\\x01\\x95\\x8c\\x2c\\x18\\xc4\\x18\\x94\\xf1\\xdf\\xbf\\xce\\xff\\x8d\\xf3\\x7e\\xc3\\xce\\x24\\x97\\x16\\xad\\xbe\\x6b\\x6f\\xa7\\xfe\\x1b\\x0e\\x2f\\x17\\x3b\\x33\\x97\\x55\\xbc\\x37\\x64\\xaa\\xfb\\x96\\x71\\x4e\\xe9\\x0b\\xa0\\x9a\\xb3\\xe6\\x5c\\x93\\xcb\\x0e\\x15\\x8f\\x43\\xe9\\xd1\\x02\\x99\\x65\\x24\\x2d\\xaa\\xc2\\x76\\x69\\xfe\\x30\\x00\\x8b\\x9e\\x80\\xbb\\x34\\xaf\\x6a\\x9c\\x9c\\x05\\xe3\\x1d\\x22\\xa3\\x7d\\x0f\\xf7\\x19\\x09\\x22\\x26\\x67\\xb1\\x6c\\xae\\xe2\\x0a\\x3d\\xcc\\x08\\x58\\x1b\\xfb\\xb4\\x7f\\xdb\\x8d\\x17\\x9b\\xe0\\xfc\\xcc\\x34\\xbb\\xf2\\x1a\\xfa\\xfc\\xc2\\x63\\x77\\xe1\\x43\\xd7\\x76\\x35\\xf3\\x40\\x8c\\xb3\\x70\\x8e\\x5b\\x46\\x08\\x02\\x35\\xb4\\xb0\\x3b\\x06\\xb7\\x42\\x06\\x5e\\x39\\x9f\\x6d\\x2c\\x7c\\x58\\x05\\x41\\xb7\\x29\\xef\\x94\\x80\\x42\\x71\\x20\\xc5\\xc0\\x7b\\xc6\\x12\\x30\\x4a\\x8a\\x42\\xf9\\xf9\\x3d\\xc3\\x6e\\xed\\x0d\\xda\\x08\\x57\\xbb\\x89\\x4f\\xb0\\x01\\xad\\xb5\\x10\\x19\\x19\\x07\\x8e\\x09\\x76\\x4c\\xc2\\x86\\x6f\\x92\\x88\\x02\\x5a\\xe8\\x84\\x52\\xc5\\x81\\x33\\x16\\xc4\\xed\\x1d\\x28\\x7e\\x84\\x51\\x0e\\xd0\\x3e\\xb1\\xbe\\xa1\\x02\\x98\\x83\\x52\\xd8\\x29\\xfb\\x46\\xeb\\x58\\x59\\x81\\x80\\x23\\x03\\x0c\\xbf\\x74\\xc2\\x2f\\xb4\\x05\\x60\\x3c\\xd8\\xec\\x8c\\xe7\\xfa\\x20\\xf3\\x8d\\xb6\\xc4\\xd0\\x62\\x8b\\x14\\x9a\\xe6\\x2c\\xc2\\x46\\xe1\\x74\\xff\\xae\\x41\\xde\\xfc\\xcc\\x51\\x7e\\x6c\\x3c\\x96\\xb8\\x09\\x67\\xe5\\x53\\x72\\xd2\\xb7\\xbe\\xa7\\xd5\\x1c\\xeb\\xc2\\xec\\xcd\\xd7\\x5a\\x00\\x0a\\x4e\\x29\\xdf\\x78\\x5d\\x63\\x3a\\x35\\xc6\\x90\\x7a\\x4e\\xeb\\xae\\x56\\x0e\\xa3\\x9a\\xb6\\x2c\\xb5\\xdb\\xb4\\x35\\xe0\\x9c\\xf3\\xdb\\x9c\\xc0\\xfd\\x1e\\xb6\\x21\\x19\\xe5\\x10\\x8c\\x4c\\xfb\\x6a\\xc1\\x42\\x60\\x50\\xa3\\x86\\xee\\x37\\x7f\\xd9\\x49\\xfa\\x42\\x1c\\x61\\x0b\\x7c\\x6e\\x6c\\x3b\\xec\\x01\\x65\\xf0\\xcb\\x54\\x6a\\xb9\\xe9\\x2d\\x68\\xaa\\x1e\\xed\\xcb\\xb7\\xb3\\xa8\\x93\\xb3\\x13\\x35\\xa2\\xaa\\xa0\\x79\\x61\\x39\\xa2\\x6f\\x9c\\xc2\\x9f\\xf3\\x6c\\xda\\x2c\\xe3\\xa2\\x7f\\x92\\x37\\x5f\\xc2\\x06\\x48\\x6f\\x6e\\x6d\\xf7\\xff\\xb3\\xf7\\xa7\\xbb\\x8d\\x23\\x4f\\x97\\x38\\xfc\\xdd\\x57\\x91\\xc0\\x00\\xf3\\x8d\\x44\\xee\\x0b\\x9e\\x6b\\xa8\\x6b\\x10\\x54\\x2c\\x75\\xd3\\x6f\\xb3\\xac\\x1a\\xd1\\x56\\x3d\\xed\\xab\\x7f\\x11\\x27\\x22\\xb9\\x48\\xb4\\x69\\xf7\\xf6\\xf4\\x6f\\xfe\\x03\\x74\\x97\\xac\\x24\\x45\\x32\\x17\\x66\\x46\\x46\\x9c\\x38\\x47\\x5e\\x03\\xcb\\xfc\\x48\\x90\\x3b\\xe2\\x77\\xdd\\x76\\xc6\\x30\\xea\\x5d\\xb1\\x5e\\x1a\\x96\\xbf\\xa2\\x9c\\xcf\\x1d\\x6c\\x16\\x03\\xe3\\xda\\x38\\x76\\x40\\x66\\x3b\\xf0\\x2c\\xdc\\xb9\\xac\\xbc\\x01\\x70\\x1e\\x0b\\x9f\\x71\\x3b\\x70\\xa8\\xa9\\x81\\xc6\\xd3\\xf3\\xcb\\x8f\\xcd\\xa6\\x93\\x23\\xff\\xa6\\xd9\\x13\\xf8\\x51\\x33\\x0b\\xdf\\x72\\x3f\\x79\\x37\\xce\\x31\\x8b\\x0d\\x74\\xdc\\x1a\\xf2\\xf8\\xfa\\xc5\\x06\\x8b\\x8c\\x34\\xee\\xd3\\xae\\x26\\x9b\\x70\\x66\\x4b\\xc5\\x0d\\x3d\\x20\\xf5\\xc8\\x2e\\x53\\x8f\\x40\\x04\\x66\\x98\\x00\\xcc\\x4f\\xc2\\x72\\x06\\x9e\\xe1\\x01\\x56\\x41\\x5a\\xfc\\x88\\xf1\\x8c\\x41\\x74\\x80\\x19\\x39\\x04\\x40\\x51\\x00\\x72\\x28\\xd1\\x65\\x90\\x8a\\x02\\xd4\\x8f\\x28\\x4c\\x6a\\xf6\\x23\\x0b\\x62\\x69\\x09\\x1c\\x82\\x33\\x1c\\x59\\x4d\\x56\\xe5\\x01\\x99\\x3c\\x57\\xb2\\x42\\xf0\\x57\\x57\\x73\\x73\\x38\\x67\\x46\\x00\\x42\\x16\\x00\\x21\\xcb\\x00\\xa1\\x34\\x03\\x84\\x3c\\x19\\x40\\x5a\\x00\\x42\\x7c\\x9a\\x57\\x41\\x45\\x15\\x7a\\xef\\x1e\\x3a\\xcf\\x08\\x21\\x47\\xff\\x84\\x81\\xab\\x15\\x81\\xfa\\x01\\xdf\\x9e\\xd4\\xd7\\x66\\x55\\xe4\\xa7\\x0c\\x26\\x72\\x8c\\x10\\x62\\xc7\\x3f\\x27\\x7b\\x35\\xd2\\xa0\\xc0\\x67\\x5d\\x3f\\xe0\\x54\\x7c\\x3e\\xaf\\x47\\xe2\\xf3\\x79\\x99\\x44\\x68\\xfd\\x4e\\x12\\x21\\xbb\\x17\\xde\\x87\\xc3\\x7d\\x90\\xa2\\x9c\\x0a\\xdf\\x80\\xdb\\xed\\x57\\xe2\\x70\\x1c\\xbe\\xbe\\x7c\\xbf\\xad\\x4a\\x2d\\x9d\\x08\\x2b\\x20\\x5e\\x12\\x68\\x61\\xa7\\xd9\\xb8\\x70\\x38\\x8d\\x5e\\x69\\x1f\\x55\\x90\\x40\\x31\\xc4\\x2c\\x4d\\x32\\x43\\x70\\xca\\xd9\\x21\\x60\\xf3\\x7d\\x45\\x16\\x17\\x72\\xd1\\xe1\\x76\\x7b\\x23\\x78\\xb7\\x20\\x22\\xfc\\x20\\x8d\\xd7\\xcc\\x43\\x58\\xdf\\x2c\\x84\\xea\\xf6\\x12\\x27\\x51\\x3b\\x46\\xb0\\xde\\x55\\xba\\x16\\xef\\xa5\\xd8\\x8c\\x4b\\xe7\\x10\\x17\\xdc\\x25\\xc4\\x8c\\xf5\\xcb\\xe4\\xc0\\x42\\x0e\\x80\\x8f\\x65\\x9d\\x6d\\xf2\\x37\\x27\\xb8\\xbc\\x7e\\x31\\x39\\x57\\x7f\\x17\\x44\\x3b\\xab\\xa2\\xdf\\x08\\x09\\x85\\x2a\\xdf\\xf7\\x30\\x32\\xe9\\x61\\xae\\xff\\x8f\\x90\\x02\\xd4\\x22\\xed\\xf7\\x81\\x36\\xbd\\x53\\xcd\\x58\\x17\\x8b\\x44\\xa7\\x53\\x36\\xbb\\x01\\xe1\\x5f\\x5a\\x7a\\xe5\\xd3\\x82\\xa5\\x9c\\x45\\x30\\x32\\x8a\\x6d\\x1a\\xf8\\x5f\\x14\\x71\\x18\\x08\\xc0\\x24\\x91\\xd8\\x60\\xc1\\x0d\\xfe\\x97\\x8b\\x44\\x74\\x43\\xc4\\x36\\x44\\x7b\\x83\\xcc\\x2c\\xf0\\x8c\\x80\\xba\\x9e\\x95\\x0a\\xde\\xd2\\x7d\\xfd\\xf8\\x0b\\x07\\xd7\\x14\\xe2\\x81\\xec\\xa3\\xca\\x3d\\xed\\x14\\x76\\x13\\xbc\\xd1\\x1e\\xc3\\xe3\\xd7\\xcb\\x71\\xa5\\xfb\\x7e\\x53\\x2e\\xfc\\xbb\\xb0\\x32\\x24\\xac\\x8d\\xcb\\x0b\\x97\\x7d\\xd9\\xe6\\x3d\\x2d\\x85\\x33\\x7c\\xf0\\x8e\\xe2\\xdd\\x0c\\xf2\\xbe\\x42\\xd3\\x68\\x40\\x3e\\x42\\x2a\\x33\\x0f\\xf2\\x5b\\xed\\xb0\\x7a\\xd9\\xde\\xc8\\x5e\\x5e\\xbc\\x6c\\x6f\\x01\\xb4\\x3f\\xd0\\x12\\xe3\\xe3\\xeb\\xe9\\x30\\x9e\\x86\\x53\\xf7\\x7c\\x38\\x76\\xcf\\x2f\\xeb\\xf4\\xd1\\x37\\x4f\\x99\\xd8\\xbb\\x69\\xe7\\xf9\\xae\\x02\\x70\\x8d\\xfb\\x9a\\x3a\\x35\\xda\\x3b\\x24\\xb2\\x50\\x3d\\x7f\\x42\\x1d\\x02\\x66\\xe8\\xc7\\x63\\xbc\\x77\\xd5\\x18\\x8e\\x97\\x5f\\x4f\\xef\\x56\\x54\\xce\\xa8\\x72\\xf5\\x98\\x79\\x8d\\x1b\\xe8\\x45\\x2c\\x46\\x20\\x79\\x05\\x06\\xa9\\x67\\x6a\\x70\\x9b\\x52\\x3f\\x29\\x20\\xbd\\xd9\\x83\\x80\\xd2\\x61\\x1e\\xf3\\xb9\\x9f\\xe4\\xff\\x2d\\x48\\x66\\x30\\x33\\x89\\x3b\\x63\\xd2\\xfc\\x67\\xf2\\x10\\xda\\xeb\\x73\\xd1\\x5d\\xed\\x5f\\x2b\\xea\\xf4\\xf6\\x72\\xe2\\x24\\xb8\\x2d\\x86\\x69\\xe0\\x6e\\x6f\\x22\\xdd\\xf4\\xb0\\xd1\\x4f\\xab\\x73\\x36\\x7e\\x0a\\x71\\xaa\\xfb\\xc7\\x46\\x82\\xbe\\xac\\xad\\x77\\x1d\\xcc\\xc8\\xf1\\x89\\x8c\\xbd\\x17\\x0a\\x62\\x1c\\xb1\\xb2\\x2e\\x17\\x7b\\x73\\xc9\\xcf\\x75\\xf1\\xf8\\xfd\\x38\\xbc\\x3f\\x96\\xe5\\x8c\\x09\\x76\\x39\\xb7\\x72\\x05\\xc8\\xb2\\xb8\\xd7\\xdc\\xf8\\xf5\\xb1\\xa3\\x90\\x22\\x4e\\x8f\\xdc\\x7f\\xa8\\xa3\\x2a\\x8b\\xd0\\xcd\\x4d\\xc4\\x8d\\x75\\x5b\\x8c\\x1c\\xc2\\xe9\\xec\\xe5\\xbd\\x67\\x24\\xef\\xb2\\x34\\x6e\\xbf\\x31\\x59\\x5c\\x29\\x4c\\x8c\\x53\\xd9\\xbc\\x76\\xfb\\xba\\x98\\xad\\xdb\\x38\\xcc\\xf2\\x77\\xed\\xf1\\xb1\\xbe\\x2e\\x66\\xab\\xd5\\xf0\\xdb\\x3a\\x95\\x4f\\x67\\xbf\\xdb\\xd7\\x8f\\x1d\\x34\\x3b\\x8e\\xe3\\xe1\\xc7\\xb7\\xd5\\x8e\\xf8\\xe6\\xc0\\x9c\\x16\\x13\\x11\\xd3\\x12\\xad\\x8c\\xc6\\x9a\\x85\\xab\\xe9\\x83\\x13\\x3b\\xba\\xc4\\x40\\x64\\xb6\\x5c\\xad\\xc5\\xb5\\x80\\x39\\xa7\\x06\\x75\\x49\\x39\\x67\\xae\\xce\\xce\\x0c\\x5a\\x0e\\xaa\\xd4\\xce\\xa2\\xd0\\x59\\xfa\\x89\\xab\\x09\\x5b\\x78\\x9a\\x0d\\xda\\xfc\\x1e\\xfc\\xf4\\xf4\\xeb\\x70\\x1f\\x64\\x11\\xfa\\x1b\\xdc\\xfd\\xdd\\xdf\\xf2\\x9d\\xad\\x79\\xd8\\xb8\\xc4\\x1f\\xd5\\x63\\xff\\xe4\\x7a\\xf4\\xa1\\xee\\x7b\\x7c\\x3a\\xc8\\x9f\\x1b\\x5d\\xb8\\x3c\\x38\\x43\\x8b\\x74\\xbc\\x3a\\xad\\x05\\x5a\\x44\\x7f\\xfd\\xa3\\x02\\x44\\x78\\x51\\xf1\\x52\\xc8\\xbb\\xa4\\xaf\\x95\\xaa\\xf3\\x73\\xf5\\x3d\\x1c\\x87\\xe7\\x77\\xeb\\xcc\\x27\\xec\\xd6\\x7b\\xf1\\xd6\\x7d\\xaa\\x7e\\xe5\\xbe\\xd3\\x56\\x14\\x28\\x6b\\x38\\x9f\\xc4\\x5c\\xa7\\xb4\\x82\\x8f\\xd7\\xfb\\x5e\\x7a\\x6c\\x51\\x26\\xd9\\xc4\\x59\\x59\\xe7\\x7b\\x53\\x0c\\x13\\x02\\x80\\x26\\xa0\\xc0\\x53\\x61\\x14\\x98\\x3f\\xe9\\x9f\\xab\\x29\\x50\\x41\\xcc\\x9c\\x10\\xac\\x39\\xfa\\x81\\x53\\x8a\\x56\\xf5\\xac\\x7e\\x71\\xaa\\x03\\x42\\x11\\x62\\x25\\x74\\x61\\x49\\x0d\\x2c\\xb4\\x6d\\xe2\\x80\\x30\\xf2\\x83\\x33\\x59\\xae\\x4c\\x0c\\xb4\\xeb\\x85\\xab\\x4f\\x5e\\x81\\xad\\xdf\\xb6\\xaa\\xb5\\x38\\x38\\x65\\x4b\\xe7\\xd4\\xa5\\x84\\x4c\\x38\\x97\\x55\\x62\\x5c\\xb4\\xf1\\xd4\\x90\\xec\\xc1\\x67\\x47\\x9a\\xbc\\x7d\\xac\\x1c\\xd9\\x98\\x90\\x27\\x75\\xc7\\xab\\x73\\xb9\\x6b\\x44\\xfa\\xb1\\xa9\\xda\\x8f\\x4d\\x3d\\x2c\\x0b\\xb0\\x0d\\xb8\\x56\\x6f\\x20\\xe2\\xae\\xc1\\x99\\x4d\\x37\\x43\\x9e\\x23\\xdf\\xf1\\x9f\\x66\\x9e\\xfc\\xf1\\xf8\\x74\\xf8\\x76\\x39\\xaf\\x7c\\x45\\x53\\xd1\\x64\\x40\\xd2\\xfa\\x54\\x56\\x22\\x51\\x42\\x22\\xe7\\xcd\\x32\\x41\\x51\\x56\\x28\\x3b\\xb1\\x10\\xd6\\x1d\\xd6\\xf8\\x6e\\x9e\\xa3\\x78\\xd0\\xf8\\x5a\\x45\\x40\\xb2\\x8d\\x75\\x7e\\xfe\\x8b\\x01\\xb3\\xdc\\x50\\x16\\xc3\\xb1\\xd3\\xd4\\x4f\\x81\\x69\\x81\\xe5\\xff\\xd1\\x08\\x1e\\xb4\\x92\\x5e\\xbf\\x5f\\xf5\\xe1\\xd8\\xad\\xa6\\x35\\xfe\\x3e\\x43\\x4e\\x63\\x9a\\xe2\\xdf\\x15\\xc2\\x36\\xce\\xe0\\x35\\x25\\x48\\xb3\\x05\\xfa\\x6c\\x9c\\x50\\x67\\xf4\\xb1\\x00\\x85\\xba\\x09\\x14\\x1a\\xff\\x18\\x28\\x54\\xc4\\xa1\\xe2\\xc7\\x31\\xa1\\xc3\\xf1\\xf7\\xc3\\xf1\\x72\\x39\\xff\\x5c\\xd7\\x70\\x2a\\x9c\\x44\\xe9\\xbc\\x0e\\x03\\xb7\\x35\\x18\\xf7\\xe4\\xaf\\xeb\\xae\\x4b\\x84\\xae\\xf5\\x26\\xe9\\xc2\\xc6\\xc1\\x49\\xf9\\xc9\\x44\\x8d\\xa0\\x63\\x11\\x09\\x42\\xd0\\x29\\x17\\xfb\\x8f\\xd3\\x2b\\x2c\\x9e\\x71\\x03\\x20\\xbf\\x75\\xf4\\x3f\\x85\\x1c\\xaa\\x36\\x33\\x6d\\xb4\\x99\\x00\\xbe\\xec\\x2c\\xf7\\x54\\xdb\\x5f\\xce\\x97\\xc3\\xcf\\xf3\\xe5\\xb7\\xdb\\x56\\x98\\xcb\\x57\\xa4\\xac\\x53\\x8e\\xf0\\x04\\xe5\\x07\\xb8\\x9f\\xb1\\xfd\\xf8\\x2e\\xa7\\x50\\x45\\x43\\x52\\x93\\xc6\\x17\\xfe\\xe1\\x17\\xba\\x16\\x23\\x52\\x81\\xf5\\x40\\x07\\xf6\\x3f\\x98\\xd2\\xa7\\x30\\x08\\xb9\\xe1\\xc0\\xcc\\x86\\x7d\\x0a\\x57\\x63\\xf6\\xc7\\xfd\\xf0\\x38\\x3e\\xdf\\xe6\\x7a\\xac\\x8a\\xab\\xe3\\x40\\x28\\xf5\\x59\\xf4\\xcf\\xf6\\xcd\\x44\\xe8\\x3d\\x71\\xa0\\x5a\\x0e\\xb4\\x70\\xae\\xf3\\x95\\x3e\\x72\\xb8\\x82\\x96\\xfd\\x0a\\xb5\\xd4\\xeb\\x24\\xdf\\x32\\x85\\x38\\x6d\\x88\\x57\\xd1\\x03\\x60\\xbb\\xb6\\x94\\xbb\\x03\\x1f\\xad\\xc1\\x9d\\x3e\\xd7\\xd6\\x41\\xe1\\xee\\x82\\x05\\x3d\\xb0\\xad\\x39\\x47\\xf1\\x87\\xa6\\x24\\x7a\\xd3\\x58\\xe1\\x33\\x06\\xa6\\x5a\\x78\\xab\\xee\\x7f\\x4f\\x45\\xe8\\x8f\\xad\\x3a\\x70\\xf9\\x94\\x94\\x69\\x5d\\x18\\x40\\x3c\\xc8\\xd4\\xa5\\xf8\\x03\\x0c\\x9b\\x78\\xdc\\x82\\x3d\\x17\\xef\\x4d\\xe8\\x19\\x52\\x5a\\x48\\x6f\\x20\\xcd\\x2d\\xb2\\x35\\x1f\\x65\\xb7\\xe6\\xac\\x96\\x98\\x73\\xc4\\x4f\\xe9\\xc0\\xfb\\x8f\\xfb\\x32\\x1e\\x6e\\x80\\x57\\x53\\xd1\\x4c\\xbf\\x9d\\xed\\x40\\xcb\\x2b\\x99\\xad\\x29\\x61\\x2b\\x68\\x2d\\x7b\\x52\\x1a\\x63\\xae\\xae\\x4c\\x0b\\x23\\x84\\x48\\x73\\x14\\x22\\xdd\\xc8\\xba\\xa4\\x1e\\xea\\xd2\\xf4\\x95\\xd5\\x76\\xe8\\x25\\xd9\\x79\\xac\\xf3\\x7a\\x87\\x7c\\x9e\\xb6\\xc3\\xc2\\x92\\x7a\\x95\\xc1\\xd9\\x60\\x40\\xce\\x7a\\x4b\\xd6\\x88\\x4a\\x04\\xfd\\x51\\x37\\x46\\x13\\x70\\x00\\x70\\x8c\\xc0\\xb4\\x36\\x7f\\x2a\\x11\\xfd\\xe3\\x9e\\xf7\\xbd\\x6a\\xfe\\xfe\\x7d\\xed\\x14\\xad\\x25\\x73\\xa8\\xca\\x26\\x80\\x56\\x4c\\x32\\x3c\\x33\\xc0\\x61\\x9e\\x81\\x64\\x41\\x59\\x88\\x0a\\x5c\\xf4\\x11\\xce\\x52\\xcd\\xd9\\x2c\\x72\\x90\\x3f\\x7a\\x29\\x61\\xe7\\x3b\\x4d\\x2e\\x65\\xa0\\xd3\\xe9\\xec\\xbd\\x90\\xfb\\x0d\\xe3\\xe4\\xcc\\x36\\x89\\xb7\\xe6\\xcf\\x43\\xe6\\xc5\\xc0\\x14\\x34\\x86\\x01\\x20\\xc9\\x06\\x95\\xa1\\xe5\\xab\\x9a\\xa2\\x38\\xb3\\x25\\x0f\\xb1\\xa8\\x58\\x6a\\x64\\x91\\x55\\x76\\x90\\xdd\\xe2\\x58\\x68\\xdd\\xd9\\x6b\\x70\\x1d\\x92\\x19\\xaa\\x16\\xb9\\x49\\x48\\xe2\\x30\\x0e\\xf1\\xde\\x88\\x24\\x76\\x0e\\x7f\\x31\\x12\\x29\\x74\\x4d\\x66\\xfc\\x92\\x43\\x7e\\x37\\x3d\\x16\\x4d\\xd1\\x88\\x6d\\x59\\xaf\\xd8\\x5c\\x8d\\xcc\\xb7\\xe7\\x30\\xeb\\x1b\\xf7\\x30\\x36\\x74\\xbd\\x24\\x4a\\xf1\\x6e\\xba\\x86\\xe5\\x6b\\x78\\xd5\\x64\\xf1\\xa2\\x46\\x5d\\x93\\x41\\x1c\\xd8\\xf5\\x3c\\x38\\xc1\\x9a\\xac\\x42\\x0d\\x95\\xd9\\xa0\\x12\\x6e\\x88\\x30\\x99\\x57\\x4d\\xe2\\xbd\\x46\\x94\\xcd\\xae\\x97\\xbb\\xf8\\xf1\\x5f\\x71\\x89\\xab\\x77\\x0f\\x1c\\xc0\\x37\\x51\\x59\\xea\\x80\\xd4\\xa1\\x85\\xa8\\x81\\xbc\\xa2\\xf6\\xf1\\xa3\\x03\\x45\\x20\\x34\\xee\\x7d\\x87\\xb6\\x11\\x6d\\xab\\xa0\\x9a\\x34\\xfe\\xe3\\x3f\\xe4\\x0c\\x52\\xea\\x8f\\xe8\\x3f\\xdf\\x1d\\x0f\\x7f\\x6b\\x7f\\x24\\x5c\\x22\\x2d\\x2e\\x01\\x42\\x34\\xaa\\x25\\x13\\xb4\\x5b\\x1e\\x94\\x8b\\x4b\\x08\\x7e\\x95\\x2b\\x0b\\x50\\xf1\\xdf\\xd4\\x1d\\x0f\\xa3\\x03\\x71\\x0d\\x3f\\xac\\xfc\\x12\\xc8\\x31\\x54\\x6a\\x34\\x89\\x7e\\x19\\xa6\\x5f\\xc2\\x97\\x83\\xe6\\x78\\xff\\x87\\xfb\\x40\\x88\\xf3\\xe5\\xf9\\xf8\\x75\\x38\\x21\\x2f\\xf8\\x16\\x58\\x72\\x7f\\x8c\\x55\\xae\\xb4\\xf2\\xa1\\x30\\x98\\xcf\\x0e\\x0e\\x98\\xc3\\x90\\x66\\x08\\x07\\x6b\\x7c\\xd3\\x36\\x1c\\xa4\\x18\\x6f\\x65\\x9b\\xfb\\xa1\\x71\\xb4\\x25\\xeb\\x2a\\x19\\xa4\\x80\\x7d\\xc1\\xbd\\xdf\\x89\\xe0\\x6e\\x02\\x61\\xb0\\xa7\\x1a\\xf9\\x99\\x98\\xc3\\x21\\x17\\x66\\xa6\\x40\\x51\\xc6\\xd0\\xc6\\xce\\x46\\x95\\x94\\x47\\x88\\x3a\\x0a\\x85\\x3b\\x00\\x7d\\x8c\\x1c\\x72\\x8e\\xb5\\x43\\x1d\\x34\\xa9\\xb4\\xb0\\xca\\x60\\x2f\\xc2\\xd9\\x7e\\xb4\\x3f\\x5e\\x04\\xf1\\xa3\\x07\\xc0\\x97\\xac\\x04\\xe1\\x2a\\x8e\\xca\\x00\\x84\\x8b\\x8d\\x13\\x19\\xc7\\xde\\x2b\\x03\\xc9\\x40\\x3f\\x65\\x86\\x72\\xca\\x1f\\xc3\\x93\\x23\\x66\\xae\\xac\\x39\\x06\\xe6\\x0c\\x3d\\x8e\\x43\\x98\\x30\\xd1\\xa3\\xd1\\x53\\x53\\xd1\\xb6\\x51\\x0e\\xcb\\x97\\x75\\x24\\x9b\\x54\\x24\\x45\\x15\\xa1\\x7e\\x8b\\x1f\\x61\\xc3\\x68\\x8d\\x0a\\x00\\x24\\x66\\xbd\\x2d\\xc6\\xf5\\xfa\\xc5\\xa5\\xa0\\xac\\xce\\x43\\xe3\\x40\\x56\\x6a\\x94\\x87\\x4c\\x8a\\x51\\xb8\\x85\\xf0\\xef\\x48\\xe6\\x6c\\x0e\\x0f\\x22\\x61\\xc9\\xbc\\x82\\xd4\\x52\\xd3\\x0f\\x83\\x8a\\xf4\\xd0\\x45\\xf9\\xac\\x4a\\x97\\x0c\\x18\\x5c\\xd7\\x7b\\xe1\\x4e\\x0b\\x0a\\x9a\\x5b\\x19\\x4c\\xcf\\xbb\\xc3\\xef\\x72\\x7c\\x7c\\xbe\\x19\\x75\\x5c\\x34\\x2d\\xca\\x33\\x95\\x06\\xc4\\x03\\x84\\x1d\\xff\\x1f\\xb3\\x29\\xe0\\xac\\x35\\x31\\x5c\\x1b\\x13\\x39\\xca\\x08\\x35\\x67\\x67\\x69\\xf4\\x79\\xb0\\x3a\\xf9\\x3c\\x62\\xc5\\x67\\x72\\xf4\\xea\\x62\\xb1\\xc1\\x40\\x5e\\x56\\x23\\x18\\x0d\\x6f\\x78\\xa6\\x53\\xad\\x55\\xf8\\x83\\xfe\\xf6\\x99\\xdd\\xee\\x34\\x37\\xe5\\x87\\xb1\\x91\\xb3\\xe4\\xff\\x9d\\xc6\\xfb\\x79\\x63\\xcd\\xfc\\x9c\\x6c\\x19\\xe7\\x2d\\x50\\xab\\xec\\xda\\xe7\\xfc\\xc4\\x1a\\xcf\\x36\\x10\\xa6\\x0c\\xcc\\xbb\\x86\\x04\\x28\\x1d\\xaf\\xc2\\x2b\\x81\\xed\\x4f\\x92\\x98\\x85\\x59\\xa8\\x1a\\xb2\\x19\\x59\\x0d\\xce\\x8f\\xd8\\x94\\x3f\\x4f\\x97\\xc3\\xe3\\xd3\\x8f\\x97\\xe7\\xdb\\x47\\xac\\xa5\\x73\\x96\\x01\\x1b\\xde\\x73\\x82\\x67\\x8d\\xcf\\x6f\\x1e\\x98\\x2d\\x75\\xe8\\xd3\\x70\\x79\\xe4\\x4c\\x3e\\xab\\x7b\\x36\\xd6\\x5d\\xdf\\xd0\\x1f\\xbb\\xb3\\x1f\\x3d\\x8e\\xf0\\x0b\\x8d\\x37\\xb2\\x11\\x5b\\x07\\x25\\xef\\x5a\\x2b\\xaf\\x6d\\x47\\x6f\\xa7\\x0b\\x08\\xd9\\x67\\x84\\xf1\\x1b\\x83\\x84\\x61\\xde\\x58\\x54\\xe2\\xf1\\xe9\\x9f\\xf1\\x96\\x8f\\xbc\\xd3\\x0a\\x51\\x75\\xcc\\x03\\x31\\x43\\xba\\x99\\x45\\x63\\x3a\\xbc\\x3e\\x88\\xc3\\x07\\xc8\\x13\\x31\\x99\\x30\\x8b\\x88\\xb3\\x93\\x66\\x25\\x3f\\x3f\\xae\\x25\\xec\\xe5\\xbd\\xa6\\x69\\x21\\xe3\\xa7\\xc6\\x84\\x29\\x3e\\x27\\x81\\x49\\x68\\xf4\\xec\\xb3\\xbf\\x5c\\x4e\\xbf\\x3e\\x1d\\x9f\\x9e\\x0f\\x3f\\xcf\\xdf\\x8f\\xab\\x64\\xf4\\x9b\\x03\\x4b\\xb2\\xc0\\x59\\x20\\x02\\xcc\\xee\\xb4\\xc3\\xa2\\x4f\\x6f\\xaf\\xac\\xda\\xbe\\xce\\xa8\\x5b\\x53\\xed\\x75\\xb4\\x52\\x1a\\x1e\\xb2\\x8e\\x65\\x49\\xab\\xf4\\x04\\xcd\\xac\\x53\\x5a\\xaf\\xf8\\xab\\x47\\xc4\\x2e\\xb2\\xc4\\x2e\\xc6\\x1b\\xa6\\xc4\\x71\\x09\\x51\\xd9\\x19\\x09\\x97\\xd3\\x78\\x7a\\x7a\\x3e\\x00\\x6c\\x33\\xac\\x2b\\xba\\x3a\\x30\\xb9\\x98\\x90\\xdb\\xec\\x2d\\x03\\x69\\x19\\x8d\\xcb\\x9b\\xaf\\x46\\x76\\x5f\\xc0\\x4b\\x7f\\x20\\x5a\\xe1\\x6f\\x13\\xa1\\xe7\\xd9\\xcb\\x2f\\x42\\x30\\x2b\\x6f\\xfe\\x9d\\x0a\\x74\\x9d\\xbd\\x3e\\x99\\xf4\\x7c\\x79\\x5c\\x33\\x5a\\xf2\\xf7\\x89\\x5d\\x00\\xc3\\x85\\xaa\\x43\\xdb\\x71\\xc6\\x30\\xcc\\x99\\x57\\x55\\xbb\\x59\\xf2\\x51\\xc6\\x59\\xc3\\x59\\x59\\x3b\\x4e\\xa9\\x09\\x6c\\x26\\x8c\\x35\\x8d\\x45\\x21\\x52\\x86\\xb7\\x5e\\x27\\x1e\\x18\\xf0\\x0f\\xd0\\x5f\\xcc\\x2f\\xa3\\x03\\x2b\\xe9\\x6c\\x24\\x71\\x22\\xee\\x00\\x67\\xc9\\xfc\\x4c\\x10\\x27\\x62\\xb6\\xaa\\x75\\xa6\\xe6\\xee\\x76\\xf0\\xf2\\x78\\xbe\\x3c\\x3e\\xff\\x7e\\xe8\\x1f\\x7f\\xed\\xd7\\x8d\\xb0\\x2c\\x9f\\x3a\\xdc\\xfb\\x8c\\xbd\\x36\\x3a\\x3e\\x43\\x68\\x56\\xbc\\x60\\x7a\\x6b\\x60\\x3a\\x1e\\x98\\x4e\\x06\\xe6\\xaa\\x1b\\x3f\\x33\\x30\\x5f\\xbe\\x0e\\x6b\\xd2\\x3f\\x29\\x90\\x4e\\x22\\x4b\\xd0\\x74\\x16\\xe8\\x20\\x1f\\x54\\x32\\xf4\\xaf\\x81\\xbc\\x16\\x99\\x01\\xb0\\x50\\x9c\\x60\\x9f\\x42\\xbe\\x36\\xe5\\x2d\\x60\\x17\\xc3\\x03\\xde\\x92\\xde\\x16\\xf0\\x00\\x35\\xf4\\x06\\xa6\\x18\\x31\\x55\\x11\\x04\\x61\\xdb\\x1c\\x73\\xa3\\x66\\x87\\x5b\\x4e\\xd7\\x6d\\xca\\xa1\\x2b\\x72\\x41\\x34\\x82\\x31\\x4c\\x7a\\xc6\\x74\\x6b\\xd8\\xb1\\x56\\x2b\\x70\\x8a\\x84\\x94\\x29\\x12\\xf2\\xfa\\xf0\\x4f\\xfb\\x71\\xa9\\xcd\\xc7\\xfe\\xb6\\x17\\xc6\\x7e\\x29\\x5f\\x0f\\x4d\\x30\\x3c\\xe4\\x50\\x3d\\x63\\x02\\xa1\\x46\\xb4\\xac\\x32\\xc0\\x82\\xc8\\x45\\x23\\x2d\\x4c\\x02\\x1e\\xa2\\x8a\\xb4\\x33\\x10\\xfe\\xcf\\xcb\\xe9\\xf2\\xfb\\xe1\\xeb\\xcb\\xe3\\xf0\\x6d\\xb5\\xea\\xdf\\x94\\xf3\\x70\\x8d\\x42\\xf3\\x65\\x0c\\x5c\\x49\\x4d\\x80\\x59\\x2e\\xe6\\xb9\\xb1\\x2a\\xf2\\xc3\\x54\\xc5\\x8e\\x7f\\xb9\\xaf\\x79\\xa7\\x59\\xc6\\xe7\\xc7\\xf3\\xd3\\xe1\\xf8\\x34\\xfe\\xbc\\x6d\\x98\\xf5\\x91\\xd9\\x0b\\xc8\\x31\\xb6\\xad\\x71\\x0e\\x6c\\x0f\\xa7\\x56\\x48\\x80\\x74\\x9d\\xf5\\x83\\x64\\x85\\x2a\\x5a\\x5f\\x44\\x42\\x5a\\x62\\x0b\\xc0\\xc5\\x64\\xbf\\xf5\\x82\\x38\\xda\\x00\\xb0\\xc3\\x1a\\x42\\xda\\x1b\\xe9\\x7d\\xe2\\x79\\x64\\xb8\\xcb\\x5e\\x95\\x5f\\x4e\\xeb\\x8a\\xbe\\x2c\\x93\\x55\\xe8\\x32\\x22\\xbc\\x85\\x25\\xc9\\xc9\\x92\\xc4\\x76\\x91\\x4c\\x9f\\x8c\\x08\\xc9\\xe1\\x9f\\xc3\\x02\\xfc\\x21\\xa8\\xc5\\x6e\\x3b\\x1c\\xbe\\xbf\\x8c\\xab\\xf9\\x71\\x55\\x3a\\x75\\xb9\\xcb\\x7e\\x36\\x17\\xb1\\x94\\x94\\x37\\xf8\\x00\\xc6\\x37\\x59\\x81\\x59\\xb4\\x22\\x80\\x2c\\x92\\x1a\\xe1\\x6a\\x52\\x00\\xe2\\x66\\xf2\\x73\\x9b\\xea\\xe7\\x36\\xc2\\xbc\\xb4\\xe1\\xce\\x66\\xad\\xe0\\x0d\\x07\\xf8\\x7e\\x55\\x11\\x2a\\x79\\x3a\\xfd\\xf7\\xf3\\x5d\\x75\\x17\\x47\\x38\\x99\\xd1\\x58\\x46\\xe1\\xd5\\xe0\\x86\\xf8\\xe6\\xa9\\x1a\\x92\\xe5\\x31\\x54\\x34\\x49\\x4a\\xdb\\xa4\\x52\\xf6\\x9e\\x54\\xca\\x32\\xa9\\xd4\\xdb\\x1c\\x2e\\x13\\x95\\x36\\x13\\x9b\\xcf\\xd4\\x2f\\x56\\x4f\\x78\\x9f\\xbf\\x8f\\xc3\\xe5\\x72\\xfc\\xf6\\xb8\\xc4\\x81\\xcb\\xf7\\x29\\x63\\xbf\\x5a\\x0c\\x4e\\xac\\x34\\x69\\x7c\\x79\\x26\\x40\\xef\\x7c\\x81\\x44\\xb5\\xd8\\x1e\\xdb\\xb4\\xaa\\xe3\\xbb\\x74\\xac\\xaf\\x5f\\x90\\x94\\x62\\x06\\x9b\\xb4\\x32\\x86\\x16\\x03\\xd5\\xb8\\x38\\x34\\x26\\x45\\xd5\\x24\\xd3\\xdb\\xa0\\xdf\\x25\\xfc\\x76\\x42\\xf8\\x7d\\x27\\xb0\\x7f\\x4b\\xf8\\x5d\\x5b\\x09\\xe4\\xa1\\xca\\x79\\x65\\xa3\\xf2\\xef\\x63\\x31\\xd0\\x22\\x87\\xaf\\x2f\\xcf\\xcf\\xe7\\x27\\x8e\\xed\\xac\\x62\\xaa\\xdb\\x87\\xff\\x73\\x42\\x92\\x22\\x8b\\xb0\\x49\\x1b\\x30\\xae\\x00\\xe1\\x52\\x24\\x48\\xf2\\x09\\x39\\x3e\\xa3\\xca\\xd5\\x1e\\xcb\\xc1\\xaa\\xad\\x5e\\x9e\\x76\\x1a\\x73\\x71\\xc2\\x7f\\x4a\\x73\\xbe\\x5f\\xf9\\xe7\\xd3\\xe1\\x72\\xab\\x3b\\xb7\\x2a\\x9d\\x36\\x11\\xd6\\x38\\x7e\\xd5\\x0d\\x4b\\xdd\\xc2\\x8e\\x8c\\xfa\\x75\\x8a\\xf2\\x06\\x32\\x9c\\x92\\x32\\x3e\\x75\\x5e\\x79\\x96\\xc1\\xa2\\x89\\x76\\x68\\x5c\\x06\\xcf\\x37\\xb2\\x53\\x8c\\xc1\\xbf\\x41\\xe9\\xa1\\x31\\xec\\xee\\x4c\\x57\\x40\\x20\\xfe\\xe8\\x02\\x56\\x4a\\x4d\\xa6\\x5c\\x27\\x5e\\x55\\xe6\\xcb\\x3d\\xe6\\xfc\\xcb\\xa9\\x3b\\x3d\\xfe\\x58\\x4e\\xc6\\x53\\x49\\x85\\x0b\\x03\\xde\\x18\\x6b\\xc4\\x94\\x27\\xe1\\x3f\\xfb\\x05\\x60\\xa6\\x3a\\xa3\\x37\\x35\\x18\\xfb\\xa7\\xbf\\x0a\\x42\\xc6\\xf2\\xbc\\x4c\\x53\\x63\\x33\\xad\\x58\\xd4\\x8b\\x0e\\x41\\x69\\x39\\x60\\xe7\\x03\\x4c\\xb7\\xb1\\xfe\\xc5\\xc3\\x5e\\xb3\\x3d\\x01\\x41\\x7e\\xbe\\x8c\\x37\\x8d\\xb7\\x28\\x9f\\x0c\\x59\\xc4\\x13\\xc5\\xe1\\xd6\\xb0\\xc7\\xad\\x61\\x97\\x5b\\x23\\x3e\\x37\\xd6\\x29\\xcc\\xf0\\xcf\\xc1\\x12\\xa3\\xd7\\xc2\\xf9\\xb4\\x70\\xbe\\x2d\\xfc\\x6a\\xe3\\xe4\\x88\\xc3\\x37\\xf6\\xcc\\xb1\\x33\\x6e\\xf6\\xc4\\x29\\xf8\\xf0\\x58\\x42\\x64\\x33\\x8b\\x72\\x36\\x21\\x6f\\xd8\\x1b\\x16\\xf1\\x35\\x6c\\x8e\\xb1\\x1f\\x36\\x75\\xaa\\x5e\\x67\\x4f\\x72\\x23\\x2e\\xc8\\x82\\x19\\x6a\\x97\\x1f\\xfa\\xa6\\xc2\\x9f\\x81\\x56\\x70\\xa2\\x52\\xc2\\xfb\\xfc\\xbd\\x41\\x79\\xbe\\x7c\\x3b\\x5c\\xcf\\x8f\\xdd\\xe9\\x70\\xbe\\xae\\x2c\\xe2\\x8d\\x63\\xb2\\x36\\xe6\\x8a\\x21\\x6a\\x72\\x04\\xa1\\x8a\\x35\\xe0\\x43\\x02\\xa2\\x1f\\x34\\xa1\\x34\\xa9\\xc6\\xac\\x68\\x17\\x86\\xc4\\x43\\x4b\\xbb\\x3b\\x17\\xb2\\x72\\x25\\x77\\x9e\\xe3\\x75\\x30\\x05\\x24\\xb4\\x18\\xe8\\xf5\\xa5\\xe9\\xb8\\x33\\x20\\x10\\x34\\x59\\x41\\xd3\\x28\\xbb\\xc9\\xb5\\xf7\\x07\\x49\\x30\\x75\\x82\\xf8\\x23\\x7c\\x5c\\x15\\x06\\xa2\\x18\\x15\\x32\\xbb\\xb2\\xdf\\x27\\x84\\xdc\\x69\\xc1\\x6f\\xa7\\xd3\\xf7\\x55\\xb3\\x71\\xc1\\x6c\\x47\\x18\\xd6\\xf4\\x6c\\x8c\\x2e\\x03\\xe4\\x07\\xf4\\xc0\\x96\\x24\\x68\\x0c\\x5b\\xed\\x52\\x56\\xce\\xb6\\xd1\\x66\\x0c\\xa6\\xd6\\x19\\xda\\xc5\\x86\\x56\\x63\\xe2\\x4a\\x56\\xb1\\x0b\\xba\\x8d\\x19\\xfa\\x52\\xb6\\x2d\\xd9\\x21\\xc6\\xd9\\x96\\x08\\xc6\\xc9\\xd0\\xba\\x44\\xf3\\x55\\xa2\\xf1\\xc5\\x5d\\x60\\x03\\xdd\\x2a\\x6a\\xdc\\xf5\\x46\\x43\\x84\\x86\\x8f\\xd8\\x09\\x78\\x39\\x5d\\x8d\\xc5\\x23\\x1a\\x31\\xed\\x35\\xde\\xf2\\xc7\\x8c\\xd8\\x87\\xe0\\xeb\\x38\\x6d\\x6a\\x94\\x15\\xec\\x39\\x84\\x7f\\xfe\\xcc\\x45\\xa0\\x8c\\x92\\xfd\\xb6\\xd1\\xe3\\xfc\\xa7\\x55\\x4e\\xf0\\x93\\x1b\\x95\\x13\\xbc\\xec\\x3b\\xfa\\x46\\x9d\\x45\\x1a\\x24\\xc7\\x54\\x10\\x37\\xcf\\x03\\xe0\\xa0\\x61\\x40\\xee\\x2c\\xbd\\xe7\\x26\\x29\\x67\\x94\\xcd\\x00\\xe4\\xe5\\x87\\x0d\\x2f\\x94\\x08\\x98\\xd5\\xd0\\x20\\xab\\x2b\\xed\\x98\\x0a\\xa7\\x6f\\xe7\\xf5\\x78\\x9a\\x64\\xb6\\x0b\\xdd\\x26\\x0e\\x29\\x2a\\xe0\\x6a\\x8b\\x45\\x80\\x61\\x48\\x59\\x41\\xa5\\x44\\x23\\x72\\x18\\x69\\x1a\\x60\\x92\\x08\\xd0\\x88\\xb0\\xb8\\x25\\x15\\xc1\\xcf\\x10\\x91\\x5b\\xcf\\xb9\\xd3\\x26\\x76\\xb6\\x40\\x9c\\xcb\\x38\\x65\\x02\\xb5\\x83\\xa5\\x4f\\x79\\xd7\\x34\\xf7\\x98\\xf1\\xf0\\x0b\\xef\\x3c\\xf4\\x2f\\x97\\xd3\\xca\\xe7\\x31\\x95\\x08\\x2d\\x62\\x52\\x2e\\xa5\\x01\\x09\\xdb\\x0c\\xf4\\x00\\x18\\x08\\xc8\\x01\\x6c\\xe9\\x40\\x48\\xc2\\x6f\\x5d\\xd1\\x58\\xc8\\x11\\x34\\x6a\\x6a\\xd4\\x68\\x06\\x6a\\x2d\\x30\\x5a\\x1c\\x47\\x0a\\xe0\\x6e\\xd2\\x9e\\x05\\xdf\\x0c\\x80\\x5e\\xbe\\xc3\\x12\\x9e\\x98\\x87\\x53\\x7e\\x1c\\xf9\\xaf\\xae\\x81\\x25\\x05\\x01\\x33\\xb6\\x8d\\x30\\xb1\\x8c\\x29\\x8a\\x59\\x85\\xaf\\x4c\\x1c\\x0b\\x54\\x71\\x51\\xa2\\xbc\\xbd\\xd3\\x06\\xdf\\xcf\\xd7\\xd3\\xaa\\x09\\xb8\\x60\\xde\\x6b\\xbb\\x50\\xe1\\xaa\\x15\\xbe\\xfa\\x81\\x2b\\xde\\xf3\\x92\\xde\\x94\\x2f\\x01\\x4b\\xd7\\x29\\xed\\x7c\\xca\\x3a\\xff\\x67\\x6d\\xbd\\xe5\\xa3\\x6d\\xc0\\x18\\xdf\\x38\\xfe\\x9f\\x62\\xe6\\x7e\\x11\\xf8\\x6b\\x5f\\x9b\\x18\\x6d\\xfd\\xb1\\x6e\\xfc\\xe5\\x72\\xfe\\x7e\\xb8\\x75\\xc7\\x6c\\x1c\\x9b\\xa3\\x23\\xd5\\x21\\x20\\xfb\\x5f\\xf6\\x78\\xff\\xe7\\xb1\\xa5\\x4a\\x1d\\x2f\\xa7\\x6f\\x37\\x72\\xa7\\xb7\\x07\\xa6\\x51\\x40\\x4b\\xf6\\xfd\\x64\\x7a\\xab\\xac\\xf4\\xb6\\xf3\\xe5\\xf5\\x6f\\x48\\x01\\xc6\\x60\\x32\\xb1\\xa3\\x12\\xad\\x4c\\x01\\x4b\\x32\\xbd\\x72\\x2c\\x2c\\x01\\xe8\\x51\\xf1\\xd3\\x54\\x83\\x96\\xe6\\x63\\x63\\x43\\x67\\xc7\\xc8\\x25\\x74\\xb2\\x4b\\xaa\\x78\\x06\\x89\\x47\\xad\\xa4\\x74\\xcf\\x10\\x46\\x5b\\x8d\\xfd\\xf9\\xc7\\x8f\\xc7\\xa7\\x5f\\x0f\\xdd\\x3a\\x47\\x62\\xfb\\xf0\\x2c\\x0e\\x60\\xb7\\x22\\xdf\\xe3\\x8d\\x5f\\x7f\\x5c\\x39\\x0c\\xc6\\x95\\x4a\\x84\\x73\\x96\\xa5\\xcc\\xc5\\x1e\\xeb\\x6d\\xde\\x62\\x2a\\xeb\\x38\\x23\\xdf\\xb0\\x06\\x0a\\x6b\\x9d\\x80\\x81\\x08\\x33\\xba\\xb0\\xb3\\x88\\x0b\\x15\\xec\\xb1\\x64\\x7b\\x04\\x4e\\xdc\\x33\\x3a\\x0b\\x2f\\x47\\xdf\\x04\\x2d\\x42\\x94\\x01\\x63\\xd7\\xb1\\x54\\x0a\\x3c\\xfe\\x41\\x35\\xe1\\xf5\\x8b\\xcf\\x41\\xd9\\x05\\x8e\\x24\\x1a\\x15\\xcd\\x43\\xc7\\xc2\\xa2\\x1c\\xb0\\x20\\x1b\\x01\\x88\\x8d\\xbc\\x95\\x84\\xce\\x7c\\xdd\\x09\\x21\\xd5\\xac\\xe8\\x3e\\xb4\\x80\\x16\\x5a\\x97\\xca\\x56\\x9a\\x36\\xc4\\x19\\x01\\xa5\\x09\\xc8\\x5c\\x2e\\x2a\\x38\\xb0\\x33\\xd1\\xce\\xb0\\x78\\x55\\xfc\\x40\\xd6\\xde\\xde\\xe2\\x7e\\xbe\\x7c\\xbb\\x31\\xb3\\xa5\\x64\\xda\\x05\\xea\\xb0\\x92\\x4a\\x40\\x6e\\x83\\xe4\\x0e\\xde\\x32\\x17\\x49\\x92\\xe9\\x95\\x73\\x71\\xa6\\x9f\\x70\\x39\\x87\\xbd\\x3f\\xcc\\x74\\x74\\x39\\xfd\\x38\\x1d\\xd7\\x43\\x8a\\x0b\\x6e\\xb1\\x9d\\x95\\xe5\\x9f\\x37\\x71\\xd1\\x57\\xc6\\x20\\xfc\\x2b\\xe1\\x1d\\xcf\\x33\\x25\\xc2\\x0a\\x39\\x4e\\xaa\\x22\\xf4\\x8b\\xe8\\x25\\xfe\\x39\\xed\\xa7\\x39\\xbb\\xee\\x23\\x4f\\x77\\x03\\x87\\x5d\\x16\\xce\\x3a\\x83\\x85\\x73\\xe7\\x72\\x90\\x14\\xba\\xc1\\x3b\\x6c\\x9f\\x0c\\x1e\\xfb\\xf5\\xdf\\x50\\x95\\x35\\xfe\\xb8\\x16\\xcc\\x9a\\x15\\x7a\\xb1\\x0a\\x36\\x62\\x96\\xd0\\xdc\\x3c\\xae\\x56\\x3c\\x91\\xd2\\x95\\xa5\\xb2\\xae\\x7d\\x33\\xc8\\xfd\\xd6\\x50\\x1a\\x05\\xe1\\x5e\\x93\\x53\\x96\\x60\\x1c\\x90\\x37\\x82\\x22\\x4a\\x66\\xbd\\x41\\x3e\\x01\\x28\\xdf\\xaf\\xce\\xc1\\xe8\\xbb\\x1a\\x1d\\xfe\\xf7\\xff\\xfa\\x6f\\x67\\xfe\\x8b\\xfe\\xd5\\xff\\x35\\xd1\\x08\\x58\\x65\\x32\\x23\\xb6\\x5a\\x1b\\x83\\x53\\xb1\\x75\\x36\\x18\\xe0\\x36\\x69\\xb3\\x90\\x84\\x6f\\x1a\\x6f\\xdb\\xe0\\x55\\x18\\x2d\\x8b\\xfa\\xf2\\x16\\x4f\\xaf\\x24\\x7b\\x6d\\x9b\\x82\\x8d\\xb4\\x15\\x6c\\xad\\x31\\x99\\x39\\x4e\\x8c\\x4a\\x93\\x0e\\x34\\x2b\\x23\\x35\\x0e\\xd8\\x32\\x3f\\x8a\\xd4\\x92\\x53\\x0d\\xdc\\x0f\\x23\\xbe\\xd2\\x37\\xda\\xbc\\x78\\x65\\x41\\x56\\xdd\\xc4\\x0a\\x67\\x82\\x46\\x21\\xeb\\xe2\\xba\\xb1\\x0a\\x11\\x1b\\x10\\xe4\\x15\\x3e\\x4a\\x27\\x8d\\x13\\xfe\\xc9\\x8e\\x4d\\x54\\x8c\\x70\\x8d\\x0f\\x5d\\x13\\xdb\\xe4\\xbd\\x76\\xca\\xb5\\x2e\\x59\\x8d\\xcd\\xbf\\x29\\x6d\\xf2\\x11\\xce\\x01\\xa7\\xaf\\x08\\xbc\\xb2\\x48\\x1c\\xcd\\x2c\\x69\\x48\\xca\\xb8\\x11\\x5c\\x6e\\x5a\\xc5\\xb1\\x28\\x90\\xa1\\xd0\\xce\\x49\\x33\\x71\\xd5\\xc8\\x7b\\x16\\x3c\\x02\\x64\\xa6\\xf8\\xd1\\x98\\x2e\\xcb\\x32\\xfd\\x09\\xd0\\x1b\\xce\\x89\\x04\\xb3\\xbe\\x26\\xcd\\x30\\xb5\\x78\\x35\\x61\\x70\\x19\\xe2\\xc6\\xd7\\xa6\\x54\\xf3\\xe8\\xaf\\x18\\x6a\\x80\\xa6\\xac\\x86\\xda\\x03\\x8f\\xb5\\xbc\\x18\\x6b\\xf9\\xaf\\x1b\\x6b\\xee\\x8d\\xb1\\xe6\\x6e\\xc7\\x5a\\x9c\\xc7\\x5a\\x8a\\x01\\x83\\xad\\x58\\x13\\x78\\xb0\\x99\\x3a\\xd8\\x98\\x89\\x66\\x63\\xb0\\xd9\\x9b\\xc1\\xe6\\x5c\\x00\\x17\\x43\\x1b\\xa2\\x4e\\x01\\x83\\x4d\\x4f\\x83\\x2d\\x4c\\xab\\x5e\\x1d\\x6c\\x33\\xab\\x0f\\x06\\xdb\\xa4\\x6a\\x4d\\x83\\x2d\\xfe\\xc1\\xc1\\xd6\\x35\\x46\\xb7\\x86\\x3d\\x55\\x26\\xb6\\xc6\\x17\\xa7\\x7c\\x1b\\x92\\x67\\xf3\\x42\\x65\\x60\\xf2\\x70\\x2b\\x5c\\x82\\xae\\xe5\\x50\\x57\\x1a\\x11\\x75\\xc4\\x19\\x1a\\x4e\\x54\\x30\\xe0\\x0c\\x1a\\x47\\xc6\\xa8\\x38\\x66\\x05\\x26\\xc2\\x3f\\x32\\xe2\\x68\\xa0\\x5a\\xdf\\xe5\\xd6\\x98\\x02\\x5d\\x04\\x13\\x94\\x6f\\x4b\\x28\\xd8\\x5a\\x2a\\xe3\\xae\\x68\\x11\\x6e\\xd2\\x71\\x12\\xf9\\xee\\x1b\\x63\\xc6\\x05\\x05\\x52\\xfd\\x1b\\x21\\xb3\\x86\\x66\\x53\\x5a\\xa8\\x4b\\x9b\\x8b\\xa3\\x49\\xb9\\xcd\\xa6\\x24\\x0f\\xdf\\x6b\\x56\\xd6\\xa1\\xfb\\xf0\\xd0\\x5a\\xd9\\x87\\x2e\\xb7\\x31\\xd9\\xc4\\xcc\\xf5\\x6d\\x74\\x60\\xa5\\x6f\\xb3\\x09\\x85\\x01\\xae\\xb1\\x0b\\xad\\x8e\\x3e\\x67\\x2a\\x0e\\xce\\x7a\\x0f\\x61\\x75\\xdb\\xd2\\x4e\\x97\\xfe\\x2a\\xd7\\x26\\x2d\\xbb\\xad\\xfe\\xcd\\xdd\\x19\\x30\\x71\\x24\\xd5\\x84\\x0e\\xc7\\x4b\\x6d\\x99\\x3c\\x02\\x88\\x0a\\xae\\xa6\\x91\\x99\\x37\\xd1\\x3e\\xa3\\xc8\\xba\\x45\\x60\\xd7\\x13\\xcf\\x47\\x06\\xd7\\x5a\\x4d\\x1f\\x2c\\x55\\xa6\\x69\\xfa\\x48\\x8a\\x5b\\xd6\\x77\\x4d\\x68\\x43\\xd6\\xb4\\xe3\\x6f\\x53\\xd1\\x1e\\x1c\\xa3\\xc6\\xb5\\x41\\x67\\xcf\\xae\\xc5\\xde\\xd0\\x06\\x72\\xac\\x72\\x74\\xfe\\x61\\x9c\\x86\\x6b\\x6f\\xcc\\xc8\\x9c\\x49\\x16\\x9f\\x56\\xf9\\x2b\\x37\\xf3\\x46\\xf3\\xbb\\xab\\x09\\x7d\\xfe\\x5b\\x67\\x83\\xbf\\x75\\x32\\x08\\xdb\\x73\\x41\\x98\\x66\\x81\\x60\\x95\\xb5\\xf4\\xe2\\xb4\\xa9\\x58\\xed\\x55\\xa3\\xdb\\x64\\x62\\xe6\\x25\\xa7\\xb1\\xad\\xd7\\xd6\\xf1\\x9b\\xeb\\x45\\xe0\\xdd\\x2a\\xc9\\x47\\x80\\x2c\\xe5\\x10\\x94\\x4f\\x7d\\x20\\xf3\\x81\\x4c\\x0a\\xb2\\x39\\x69\\xac\\x8c\\xb0\\x7d\\x95\\x1d\\x9d\\x32\\xca\\x29\\x37\\xca\\x54\\xd2\\x7b\\x50\\x5b\\x15\\xd6\\xd8\\x53\\x0d\\x4d\\xe8\\x0d\\x46\\x5a\\xec\\x7c\\xeb\\x5d\\xf4\\x34\\x04\\xe4\\x0f\\x3a\\xcb\\xb5\\xd1\\x66\\x0f\\xe7\\x2f\\xe3\\x78\\xd5\\x6a\\x0c\\xf1\\x98\\x4b\\xfc\\x85\\x13\\x24\\xf2\\x5b\\x4b\\x90\\xe1\\x25\\x88\\xa1\\x0a\\xfe\\x01\\x83\\xa8\\x84\\x88\\x31\\x94\\x32\\x86\\x90\\x69\\x91\\xd9\\x49\\x4b\\x51\\x6f\\x58\\xfb\\xbb\\xf5\\xda\\xfb\\xa8\\x42\\x6b\\x4b\\xd0\\xac\\xfa\\x0e\\x30\\xaf\\x5e\\xcd\\x8e\\x41\\xf9\\x69\\x76\\x34\\x8e\\x1a\\xc1\\x0f\\x64\\x8d\\x8f\\x32\\xab\\xd1\\x60\\xf2\\xff\\x9e\\x61\\xf4\\xf0\\xa9\\x71\\x74\\x6b\\x8e\\xfd\\xbe\\x80\\x72\\xd1\\x66\\x94\\x13\\x61\\x8d\\xb2\\xc6\\xd7\\x84\\xdf\\xa0\\x18\\x9c\\x11\\x58\\x92\\x96\\x99\\xb6\\x8a\\xec\\xf1\\x74\\xb9\\x36\\x39\\x0d\\x15\\x77\\x39\\x54\\xaa\\xf1\\x3d\\x7d\\x24\\xdc\\xfb\\x06\\x54\\xb8\\x28\\x9b\\x8c\\xdc\\xbf\\xfa\\x99\\xd8\\xc4\\xf5\\x66\\x4d\\x18\\x1a\\xd8\\x26\\xbe\\xfb\\xc1\\x8e\\xa8\\xf1\\xe5\\xf4\\xe3\\x7c\\xb3\\x39\\xe5\\x82\\xe9\\xf1\\xad\\x0b\\xdb\\x8a\\x61\\xc6\\xbb\\x0e\\xc1\\x04\\x24\\x57\\xd3\\xbf\\xc8\\xcc\\x74\\x10\\x1c\\xa1\\x6f\\x89\\x65\\x9a\\x41\\x69\\x8c\\xa4\\xaa\\x11\\x2f\\x40\\x56\\x2c\\xb8\\x42\\xfb\\x54\\xe8\\x8e\\x0d\\x9c\\xc9\\x6c\\xe8\\xfa\\x51\\x0f\\x4d\\xfd\\xda\\xcf\\x5f\\xe9\\x20\\x52\\x7f\\xf9\\x6f\\x84\\x19\\xf7\\xab\\x75\\xf8\\x71\\x39\\x7f\\x1d\\x6e\\x5c\\xfe\\xeb\\x03\\x73\\x35\\x0d\\xa7\\x68\\x02\\x41\\x10\\x27\\x4d\\x45\\x1a\\xaa\\xb3\\x86\\x1a\\x17\\x1b\\x15\\xfd\\x20\\x09\\xa7\\xf8\\x6c\\x68\\x1f\\xd8\\xf8\\x1d\\xba\\x84\\xcb\\x69\\x7c\\x3e\\xbe\\x5c\\x8e\\x4f\\xeb\\xe6\\x9e\\x0b\\x27\\x67\\x12\\x07\\x2d\\x1d\\x22\\x59\\x19\\x28\\x79\\xc5\\x09\\xa5\\x11\\x24\\x20\\x40\\x60\\x04\\x7f\\x65\\xbf\\x99\\xe3\\x6c\\x45\\x10\\x04\\xb3\\x74\\x5e\\x27\\xa2\\x55\\xf4\\x64\\xd9\\x72\\x9e\\x02\\xe0\\x6a\\x85\\x49\\x44\\x4c\\xb1\\x1d\\x9d\\xe0\\x70\\xc8\\x6b\\x7c\\xe4\\x20\\x1c\\xc3\\xcc\\x39\\x4c\\x3b\\xa7\\xe5\\xd7\\x3d\\x4f\\x62\\xad\\xc5\\xe1\\xfb\\xe9\\xe9\\x65\\xb3\\x7e\\x72\\x84\\x2b\\x69\\x92\\xb2\\x31\\x22\\x75\\xa2\\x71\\x66\\xa8\\x61\\x5f\\xa6\\x3b\\x74\\x12\\x08\\x46\\xc1\\xea\\x90\\xd3\\x83\\xd5\\x59\\x59\\x9d\\xbb\\xc6\\x04\\xe5\\xb0\\x27\\x48\\x64\\x9f\\x2b\\x63\\x5c\\xe7\\x8d\\xa2\\x79\\x1a\\x89\\x0c\\x86\\xca\\x12\\x92\\xea\\x8b\\x24\\x2f\\x18\\x67\\x3a\\x38\\x19\\xe8\\xff\\xcc\\x72\\x5e\\x8d\\xc1\\x98\\x2c\\xaf\\x5f\\x4c\\x22\\xab\\x28\\x0d\\x74\\x7a\\x61\\xa0\\xb6\\xe3\\x74\\x87\\x0c\\x27\\x92\\xd5\\x03\\xc3\\x14\\x77\\x92\\xe7\\xa9\\xc6\\xe7\\xcb\\xe9\\xa6\\x0d\\xce\\x97\\x95\\xcf\\xcc\\x9b\\xde\\xd9\\x6b\\x53\\xf4\\x90\\xa0\\x1b\\x26\\x20\\xbe\\x38\\x34\\xc5\\xa8\\x10\\xae\\xc0\\xbd\\x0b\\xae\\xfb\\x0d\\xc1\\x83\\xf1\\x1e\\x88\\x3e\\xab\\x10\\x89\\xa7\\xc7\\x05\\x15\\x00\\x3d\\x77\\xa6\\x63\\xe7\\x0b\\xdc\\x73\\xde\\x2b\\xa3\\x59\\xe2\\x8a\\xd9\\x05\\x82\\x06\\xc8\\x3c\\x80\\x68\\x60\\x9c\\xd5\\xa7\\x6a\\x41\\xa5\\x1f\\x68\\x2a\\x2e\\xbd\\xc7\\xfe\\x3b\\x0a\\x51\\xb1\\x72\\x43\\x93\\x9d\\xca\\xae\\x67\\xd6\\x1b\\x1d\\x95\\x3c\\xa8\\xfc\\xff\\x91\\x06\\x3b\\xfc\\x38\\xfe\\xba\\xd1\\x6a\\x52\\x3c\\x73\\x05\\xda\\xfc\\x8e\\xa3\\x30\\x56\\x4f\\x60\\x44\\x2e\\x91\\x24\\x90\\x5b\\xcd\\x83\\x00\\x1c\\x05\\x49\\x59\\xc6\\x3e\\xe7\\x50\\xf3\\x94\\x0c\\x92\\xb7\\x5c\\xa2\\x77\\x21\\xd2\\x92\\xd8\\x41\\xdf\\xfc\\x5d\\x11\\xf3\\x49\\x25\\x0e\\x93\\x5f\\x13\\x0d\\x28\\x7a\\x5c\\xea\\xc0\\x0e\\x9f\\x41\\xd3\\x1f\\xbd\\x82\\xeb\\xb1\\xf2\\xc9\\xc6\\x32\\xd4\\x35\\x70\\x05\\x60\\xd8\\xa0\\x62\\x7c\\xd8\\x72\\x83\\x0d\\x46\\x4d\\x6c\\x8c\\x2b\\x25\\xcf\\x1d\\x31\\x84\\xcb\\xe3\\xd3\\xaf\\x87\\xeb\\x79\\x78\\xf9\\xbe\\x6a\\xe0\\x65\\x29\\x7b\\x1f\\x5d\\x02\\x17\\x2d\\xb6\\xee\\x09\\x72\\xee\\x64\\x11\\xa4\\xc0\\x43\\x68\\x00\\xce\\xa9\\x0e\\xcc\\x58\\x24\\x0d\\x80\\xa6\\x0a\\xcd\\x33\\xa6\\x0f\\x46\\xb9\\x04\\x71\\xe2\\x86\\xad\\x09\\x6e\\x2d\\x7c\\xd6\\x37\\x98\\xae\\x18\\x5f\\xff\\x55\\xb4\\xfc\\x0f\\xff\\x08\\x2f\\xff\\x9f\\xa7\\xe5\\x7f\\xb7\\x93\\xcf\\xe7\\xd5\\x42\\x87\\xaf\\xff\\x77\\xf0\\x91\\x50\\x5d\\x0e\\xe3\\xe9\\x72\\x7d\\x5c\\x71\\xae\\xac\\x8b\\x25\\x9b\\x3a\\x28\\xe7\\x23\\x00\\x0f\\x06\\x2b\\x08\\x52\\x78\\x0c\\x18\\x92\\x21\\x65\\x90\\x7d\\x17\\x69\\x46\\x4f\\x34\\xed\\xf1\\x11\\x83\\xb7\\x59\\x85\\xba\\x47\\xf4\\x2c\\xbf\\xbd\\x46\\xba\\x8e\\x2b\\xde\\xa4\\x4e\\xf2\\x48\\x79\\x60\\xd0\\x32\\x22\\xf9\\x4b\\x58\\x3a\\xa3\\x40\\x22\\x6d\\xdc\\x0d\\x37\\x9d\\x9f\\x8f\\xcf\\xa7\\x43\\xd1\\x87\\x6f\\xa7\\x5f\\x2f\\xa7\\xd3\\x78\\xe8\\xba\\x15\\xf0\\x8a\\x8f\\xd3\\x26\\xa9\\x88\\xc3\\x64\\x7d\\xa6\\x48\\x98\\x38\\xe5\\x92\\xee\\x64\\x76\\x82\\x39\\x59\\xe0\\x76\\xb0\\xc9\\x70\\xb4\\x03\\x08\\x89\\xc4\\xa9\\x8b\\xc6\\x45\\xfa\\xa3\\x8a\\x44\\x46\\x47\\x1b\\x9e\\x42\\x73\\xe0\\x20\\x29\\x88\\x05\\x4e\\x2f\\x6c\\x78\\x14\\xd4\\xb8\\x5d\\x87\\xd9\\x94\\x0c\\xa2\\x80\\x69\\xd6\\xfb\\x0e\\x5a\\x91\\x4a\\xda\\x90\\x16\\x1c\\x96\\x6f\\x41\\x90\\x27\\x43\\x55\\x91\\x4f\\xbc\\x82\\x47\\x11\\xab\\xea\\x40\\xff\\x1a\\x2a\\xe8\\x3c\\x0d\\xc6\\xc2\\x64\\xc9\\xfc\\x40\\xe9\\xf5\\x4b\\x2a\\xca\\xba\\x34\\xd0\\xf6\\x27\\x65\\xc4\\xca\\xf3\\xd0\\xe0\\xe3\\xf5\\x8b\\x09\\x49\\xb9\\x14\\x06\\xe6\\xf1\\x71\\xf9\\x61\\x68\\xea\\x9f\\xf4\\x57\\xd9\\x25\\xb8\\x96\\xb6\\x1c\\x4e\\xbf\\x3c\\xdf\\xb7\\x30\\x97\\x4e\\xd6\\xa0\\xb7\\xa1\\xab\\xf9\\xef\\xc2\\xc7\\x54\\x73\\x14\\xc6\\xa6\\x66\\x2d\\x4c\\x0c\\x4d\\x57\\xef\\xba\\x88\\x59\\x85\\x16\\x1f\\x46\\xfd\\x28\\x63\\xe3\\x88\\xc4\\x66\\x53\\x17\\x25\\x1a\\x17\\xd9\\x31\\xa9\\x46\\x18\\xe8\\xdf\\x44\\x13\\x0d\\x55\\xcd\\x28\\x63\\xcd\\xc0\\x89\\xa4\\x86\\xb3\\x66\\x1d\\xe7\\x08\\xe1\\xa5\\xe4\\x0c\\x0e\\x9a\\x3f\\x3d\\xd2\\x66\\x69\\x86\\x01\\xeb\\xd1\\xeb\\x17\\xb2\\x73\\x68\\x1f\\xc1\\xa3\\x93\\xa6\\x26\\x97\\xb0\\xf8\\x07\\x57\\xad\\x29\\x84\\xd7\\x6d\\x00\\x0d\\x2d\\x5d\\xce\\x79\\x5a\\xaa\\x81\\x8a\\x0d\\x56\\x39\\xa7\\x1f\\x3a\\xcc\\xb8\\xb8\\x71\\x61\\xf3\\xc8\\x5a\\xba\\x02\\x68\\x0e\\x3d\\xcc\\x2b\\xe8\\x83\\xba\\xa0\\xf2\\x8e\\x25\\xc8\\xcd\\x79\\x79\\xfc\\xb5\\xdf\\x68\\x65\\x29\\x96\\x28\\x85\\x56\\x26\\x43\\xe2\\xce\\x90\\xb1\\x00\\x9c\\xab\\x55\\x01\\xe4\\x30\\xf0\\xfc\\x6a\\x9e\\x4a\\x83\\x84\\x86\\x72\\xe5\\xa7\\x70\\x9a\\x46\\x28\\x74\\x11\\x0d\\x4f\\x68\\x76\\x60\\x43\\x12\\x8b\\x32\\xea\\x10\\xe4\\x02\\x19\\xe6\\x1e\\x33\\x1e\\x5a\\x20\\xe8\\x99\\x7d\\x9b\\x57\\x55\\xa3\\x59\\x16\\x91\\x6e\\x8b\\xd6\\xd7\\x2c\\x8f\\x18\\x78\\x15\\xe1\\x24\\xe2\\x2c\\x11\\x35\\x57\\x3c\\xfa\\xae\\x29\\xe1\\x9a\\x5d\\x07\\x11\\x32\\x66\\x34\\x4b\\x78\\x89\\x24\\x20\\x69\\xe3\\x88\\x34\\x71\\xaa\\x94\\x14\\x50\\xef\\x3d\\x80\\xe1\\xab\\x12\\x7c\\x55\\x7e\\x2f\\x1a\\x4f\\xb0\\xbc\\x38\\x07\\x86\\xc6\\x52\\xdc\\xd9\\x01\\x9f\\x5f\\x9e\\xbe\\x9d\\xbe\\x1d\\xba\\xf3\\xe5\\x69\\x1d\\x9c\\xba\\x39\\x30\\x91\\xcb\\x81\\x4e\\x84\\x57\\x6a\\x47\\x2b\\xf5\\x86\\x24\\x17\\x67\\x8a\\x72\\xe2\\xe5\\x36\\xc8\\x56\\x08\\x28\\x17\\xa8\\xea\\xa6\\xc2\\xaa\\xef\\x4b\\x69\\x4f\\x22\\xa5\\x13\\x35\\x29\\x9f\\xcb\\xa9\\x9b\\xab\\x93\\x39\\x8c\\xb6\\x51\\x2a\\x88\\xc5\\x9b\\x52\\x41\\x25\\xde\\x94\\x0a\\x9a\\x62\\x66\\x19\\x7d\\x7d\\xe0\\x04\\xe3\\xfb\\xb3\\x25\\xef\\xf8\\x13\\xd4\\xa3\\x97\\xf3\\xcb\\xf3\\x6d\\x53\\xcf\\x64\\xcb\\x60\\xf1\\xac\\xbb\\xc4\\x19\\x70\\x6e\\x7d\\xd8\\xda\\x3c\\xc2\\x71\\x72\\x7f\\xb6\\x20\\x4e\\x36\\x33\\x9e\\x59\\x4e\\xea\\x33\\x09\\xcf\\x39\\x6c\\x92\\xe5\\x5f\\x39\\x3b\\xa4\\xe1\\x1c\\xdf\\x2f\\x9e\\x26\\x19\\x9a\\x9a\\x61\\xdf\\xa4\\x8e\\x25\\xf9\\xb0\\x6d\\xc4\\xfc\\xe1\\x01\\xf8\\xa2\\x29\\x36\\xb2\\x4d\\x80\\xa4\\xae\\xa4\\x4c\\x82\\x88\\x28\\xad\\x85\\x98\\x1a\\x12\\x59\\x75\\x63\\x60\\xb3\\x2d\\x49\\x7a\\x98\\xa7\\xb7\\x09\\x5a\\xca\\x91\\xe1\\x42\\x59\\xd1\\x24\\x5f\\xb4\\x72\\x71\\xe4\\xb7\\x85\\xb6\\x9f\\xa5\\x22\\xe8\\x69\\xc9\\x65\\x31\\x0f\\x5a\\x3b\\x64\\x8d\\x09\\x8c\\x13\\x09\\x32\\x1a\\x77\\xdc\\x31\\xe7\\x9f\\x6b\\xc5\\x87\\x5a\\x30\\xbd\\x08\\x92\\x21\\x31\\xcb\\x13\\x5f\\x41\\x76\\x44\\x93\\x6f\\x30\\x1c\\xf1\\x66\\xec\\x57\\x8d\\x49\\x5f\\x7d\\xec\\x1c\\xcb\\xa9\\x26\\x06\\xe3\\x53\\x83\\xc2\\x18\\x76\\x5d\\x6a\\xa3\\x8e\\x39\\xab\\xfa\\x69\\x75\\x6b\\x82\\x03\\x81\\x00\\x30\\x02\\xbd\\xe9\\xe0\\xfa\\x5f\\xe5\\x81\\x5f\\x1b\\xc3\\x8e\\x43\\x93\\xe1\\x1a\\xc4\\x54\\xab\\x59\\xd4\\x10\\x76\\xf1\\xd5\\x97\\x8e\\xd3\\xf3\\x0d\\x33\\x03\\x00\\xd3\\x5a\\xb0\\x29\\x36\\x58\\x12\\x9c\\x67\\x9e\\x51\\xea\\xdc\\x4d\\xf9\\x85\\x87\\xf1\\x66\\xa0\\x8c\\xab\\xd1\\x31\\x2e\\x46\\xc5\\x2b\\xb3\\xe8\\x6b\\x37\\xb0\\xaa\\x58\\x0f\\xfc\\x09\\x6f\\x78\\x2a\\x7a\\xf8\\xdd\\x36\\x1f\\xc7\\xc3\\x2f\\xa7\\x35\\x38\\x7e\\x2a\\x42\\xbb\\xe7\\xa0\\x6c\\x49\\x13\\x1f\\xa1\\x15\\x54\\x0f\\x30\\x84\\xb6\\x6f\\xa2\\xa9\\x3a\\x7f\\x64\\x46\\x00\\xb2\\x87\\xde\\xb8\\x46\\x66\\x70\\xf5\\x26\\x75\\x06\\x16\\xa7\\x73\\x62\\x5d\\xe2\\x0f\\x07\\x26\\x56\\xdd\\xc9\\xf2\\x6c\\xac\\x55\\x36\\xd1\\x45\\x13\\xfe\\xb8\\x46\\x8d\\x9f\\x1b\\x88\\xc4\\xd0\\x10\\x34\\xca\\x47\\xe5\\x69\\xdb\\x82\\xd9\\x99\\xda\\x00\\x5a\\x92\\xd2\\x56\\x89\\xb9\\x40\\x3c\\xed\\x23\\x79\\xf9\\x84\\x56\\xd3\\xfb\\x95\\xbf\\x1e\\xfa\\xf3\\xf9\\xb7\\x95\\x54\\xc6\\xa2\\x6c\\x0a\\xc5\\xd3\\xb6\\x6f\\x31\\xec\\x24\\xf1\\xa6\\x41\\x6e\\x91\\xeb\\x39\\xc5\\x68\\x62\\x0e\\xab\\xca\\x8c\\x4d\\xf4\\xc8\\xe1\\x42\\x9a\\xe5\\x0c\\x54\\xae\\x18\\xe3\\x71\\x42\\x2c\\xe3\\x25\\xb5\\x4b\\xcd\\x97\\x71\\x12\\x62\\x62\\xc8\\x06\\x70\\xa4\\xe2\\x1d\\x12\\xb2\\xae\\x8f\\x24\\x48\\x89\\x4a\\xc5\\xbd\\x20\\x40\\xf4\\xbd\\x09\\x9a\\x1f\\x14\\x96\\x6e\\xcd\\x3b\\xe2\\x77\\x0a\\x50\\x71\\x17\\x1e\\x36\\xe7\\xb2\\x3d\\x5a\\xc5\\xf1\\xf8\\x7c\\x1a\\x86\\xc7\\xe7\\xa5\\x99\\xbf\\x28\\x9b\\x49\\xc9\\x6d\\x7e\\x97\\x94\\x1c\\x79\\x9b\\x21\\xce\\x9b\\x95\\xaa\\x88\\xcd\\xf4\\x55\\x54\\x7f\\x32\\xe0\\xfc\\x9c\\x33\\xc2\\x46\\x1a\\xd3\\xdc\\xc0\\xb5\\xa0\\xe3\\xb5\\x89\\x73\\xc6\\x90\\xc3\\xbf\\x31\\xf4\\x9c\\x28\\xf5\\x2f\\x60\\xbd\\x1a\\x8f\\xd7\\x75\\x33\\x4d\\xf8\\x45\\x24\\xa2\\x59\\x0d\\x58\\x05\\x44\\x54\\x40\\x11\\x2d\\x7b\\x38\\xa3\\xd3\\x9f\\x4c\\x83\\x12\\xde\\xf1\\xc9\\xef\\x7c\\xeb\\xc9\\xb8\\xab\\xf0\\x96\\xfe\\x7b\\x5e\\xc9\\x28\\x70\\x85\\x77\\x72\\xe5\\xc6\\xee\\xf8\\xb4\\xb6\\x79\\xa6\\x92\\x99\\x51\\xa4\\x26\\x2d\\x98\\x49\\x4c\\x86\\x2d\\x8f\\x7a\\x60\\xb1\\x16\\x7b\\x7a\\x49\\xb2\\x87\\x4c\\xb6\\x67\\x75\\x2a\\x16\\xa9\\x72\\x05\\x5c\\x1a\\x7f\\xc9\\xb2\\x1b\\x33\\x99\\xe1\\x40\\xe8\\x0e\\x26\\xec\\xa5\\x71\\x8d\\x5d\\x7f\\xfa\\xf6\\xb2\\x02\\x90\\xce\\x45\\xff\\x5f\\xcb\\x00\\x1e\\xbb\\x7e\\x4d\\x9b\\x56\\x0b\\x66\\xf0\\x8d\\xcf\\xec\\x80\\x87\\x47\\x0d\\x28\\x0a\\x68\\xe5\\xe5\\x41\\x7c\\xa2\\x3a\\x0c\\x1c\\x50\\xb1\\x59\\x26\\x05\\x78\\x9b\\x0b\\x44\\x55\\x90\\x13\\x68\\x25\\x12\\x85\\x32\\x51\\x30\\xcc\\xe6\\xba\\x13\\x87\\x1a\\xbb\\xcb\\xe9\\xf4\\x04\\x99\\xb4\\xc3\\x70\\x7c\\xfa\\x36\\x76\\xc7\\x1f\\xeb\\x4e\\xdb\\x3c\\xce\\x0f\\xee\\x24\\x7f\\xd4\\xda\\x3e\\x58\\x21\\xfb\\xf6\\xac\\x90\\x16\\x58\\xf1\\x2c\\x8c\\x90\\x45\\x03\\x38\\x8e\\xba\\x56\\x82\\xf6\\x50\\x48\\xbd\\x4f\\x30\\x66\\xa7\\xeb\\x32\\x9b\\x99\\x2f\\x3a\\x7b\\x09\\x81\\xa1\\x9b\\xa1\\xa6\\x79\\x66\\x7f\\xde\\x94\\x18\\x67\\x2c\\xfc\\x46\\x0a\\x4c\\x16\\x96\\x88\\x89\\x22\\x90\\x79\\x7b\\x8c\\x17\\xde\\x1e\\x4e\\x6b\\xd9\\xe6\\x99\\x36\\xfe\\xe1\\x2d\\x7f\\xe7\\x9a\\xc8\\x7a\\x81\\x60\\x35\\x7e\\x93\\xc8\\xfa\\xc3\\x5d\\xb3\\xc1\\x42\\xb4\\x7d\\x78\\xc6\\xcd\\x4d\\x8c\\x44\\xc6\\x0b\\x23\\x91\\xa9\\x53\\xde\\x3f\\x21\\x07\\xf6\\xcf\\x0c\\x8e\\x87\\xbf\\x6b\\x74\\x7c\\xb4\\x63\\xe0\\x0f\\x78\\x3c\\x3f\\xbd\\xd1\\x31\\xf3\\x61\\xee\\x98\\x40\\x7b\\x02\\x4c\\xca\\x7d\\x72\\x57\\xa6\\x04\\x83\\xeb\\x05\\x9b\\x0a\\x64\\x23\\x31\\x9f\\x20\\x7c\\xc0\\x50\\xeb\\x65\\x2a\\x12\\x67\\xf5\\xa6\\xe2\\x6e\\xbc\\x6b\\x14\\xbe\\x28\\xfc\\x24\\xe0\\x54\\xbc\\xa3\\x60\\xa4\\xbb\\x6f\\x35\\x47\\x7e\\x2b\\x5f\\x8c\\xc9\\x8e\\xb2\\x51\\x29\\x0c\\x08\\x7a\\x0e\\xd9\\xd4\\x39\\x06\\xe4\\x69\\x06\\x7a\\x6e\\x8d\\x45\\x38\\x06\\xe2\\xbe\\x9c\\x76\\xe0\\xec\\x43\\x97\\x11\\xa1\\x0a\\x95\\xdb\\x1b\\x51\\x83\\x6c\\x5e\\xbf\\xf8\\x12\\x95\\xf5\\xba\\x33\\xe2\\xd9\\xe6\\x08\\x95\\xec\\x20\\xe0\\x47\\x33\\xc2\\x42\\x80\\x5d\\x84\\x93\\x4f\\x8f\\xec\\x4a\\xa6\\xae\\x8a\\xd8\\x60\\xc8\\x19\\x70\\x01\\xfa\\x30\\x18\\x9a\\x24\\x1d\\xb8\\x5f\\x0c\\x02\\x5f\\x86\\x0c\\x57\\xa5\\x07\\xda\\xd7\\x05\\x3b\\x07\\xe6\\x7c\\x80\\x30\\x10\\x92\\x2c\\x8c\\xd5\\x83\\xc5\\xdb\\xe0\\xed\\x60\\xb0\\x0f\\x36\\x03\\x5b\\xce\\xd8\\x24\\xed\\xad\\x75\\xe8\\xf0\\xb7\\x87\\xc2\\xcd\\x28\\x30\\xd0\\x78\\x1c\\xa8\\x8f\\x3e\\xd1\\x94\\xb5\\x25\\x53\\x6d\\xc9\\x24\\x2d\\xe9\\x4c\\x84\\xe8\\xbc\\x8b\\x54\\xf1\\xa9\\x71\\xa6\\x56\\x04\\x07\\x4c\\x56\\x9e\\x7a\\x2f\\x80\\x91\\x30\\xad\\x5a\\x9d\\x51\\x8b\\x61\\x3e\\xff\\xed\\x56\\x27\\x5b\\x34\\x6d\\xb7\\x7a\\x5c\\xb6\\x3a\\xfe\\xa5\\x1f\\x31\\x33\\x99\\x0f\\xf9\\x61\\x60\\xa9\\xec\\x3c\\x34\\xd9\\xa8\\x4c\\x6b\\x97\\x32\\x1d\\xd7\\xd6\\xb2\\x8b\\xd5\\x2b\\xaa\\x2c\\x14\\x55\\x1b\\x67\\xbb\\x26\\xab\\xcc\\x11\\x10\\xe4\\x02\\x19\\x16\\xca\\xfd\\x48\\x47\\x8c\\xfd\\xf1\\xb2\\xb1\\x86\\x49\\xf1\\x1c\\x28\\xd7\\x6e\\xc8\\x51\\x65\\x8d\\x00\\x60\\xd6\\xd7\\xc6\\xc7\\xae\\xc9\\x42\\xf2\\x02\\x6f\\x67\\x9c\\xb9\\x9a\\x03\\xed\\xea\\xbd\\x56\\xb1\\x54\\x34\\x48\\xc8\\xd7\\xc6\\x27\\xd9\\x96\\xd8\\xdc\\xd7\\xcc\\xc0\\x60\\x80\\x81\\xce\\x61\\x91\\x1b\\xb6\\xd0\\xdd\\x02\\xa9\\xdd\\x4d\\x6e\\x98\\x9b\\xe6\\xad\\x9b\\xdc\\x33\\x26\\xd9\\xbb\\x9f\\x91\\xdf\\x6f\\x86\\x6f\\x87\\xee\\x78\\x59\\xee\\x65\\xa7\\x92\\x29\\xe5\\xd9\\x79\\x73\\x4b\\x99\\x0b\\x63\\xfb\\xbe\\x58\\xc2\\xbc\\x77\\x67\\xff\\xa5\\xe2\\x6c\\x83\\xc1\\x90\\x35\\xd2\\x94\\x7b\\x71\\xc0\\xf1\\xdb\\x61\\x7c\\x3e\\x5f\\xd6\\x71\\xd6\\x65\\xe1\\xff\\x2d\\xf5\\x3c\\x1d\\x2f\\xdd\\x32\\xc1\\xad\\x16\\xcc\\x82\\xb6\\x46\\x48\\x6e\\x4b\\xa4\\xc7\\x02\\x43\\x38\\xdc\\x24\\x4c\\xab\\x81\\x6f\\xc8\\x3d\\x66\\x01\\x85\\xa6\\xc4\\x51\\xfe\\xe4\\x6f\\x2c\\x72\\x0f\\x66\\x20\\x61\\x90\\x9c\\x93\\xae\\x85\\x57\\xf2\\xca\\x08\\xd1\\x88\\xe1\\x8c\\x45\\x21\\x44\\x61\\x4f\\xa4\\xa9\\xd4\\x75\\x64\\x6c\\x23\\xb6\\x52\\x14\\x5c\\xc9\\x1c\\xc2\\x18\\x23\\xcd\\x02\\xa5\\xfe\\x3f\\x22\\xc6\\x81\\x32\\xc4\\x3a\\x10\\x69\\x63\\x71\\x03\\x8e\\xc8\\xf3\\x05\\x07\\x7a\\xeb\\x7a\\xf3\\xbe\\xc3\\x62\\x3c\\x75\\x2f\\x97\\xc7\\xe7\\xdf\\x57\\x0d\\x53\\x8b\\x66\\x9b\\xba\\x98\\x41\\xb0\\x06\\xd7\\x89\\xfa\\x11\\xee\\x2a\\xf8\\x13\\x8a\\xc0\\x0d\\x78\\x1d\\x81\\x6a\\xab\\xf0\\xde\\xe1\\x01\\x8b\\x05\\x19\\x07\\x73\\xb2\\xf3\\x8c\\x7a\\x6d\\x4c\\x31\\x5d\\xc2\\xd2\\x6a\\x20\\x47\\xea\\x78\\x2f\\x0e\\x41\\x0f\\x5f\\xe6\\x13\\x4d\\xce\\x43\\xc5\\x1a\\xd0\\xbd\\x6d\\xbf\\x17\\x19\\xac\\xa2\\x65\\x2b\\x10\\xd6\\xb2\\x90\\x57\\x8e\\x62\\x99\\xd1\\xbb\\xaa\\x98\\x57\\xe2\\xa6\\x79\\x6b\\x08\\x1b\\x16\\x26\\x9f\\x91\\xb4\\x00\\xf6\\xb0\\xdd\\x7b\\xa6\\xa9\\xf8\\xde\\xe5\\xfd\\x8e\\xb3\\x79\\xc3\\x8f\\x4d\\xc5\\xf5\\x1a\\xdb\\xbb\\xcc\\xc9\\x25\\x7c\\xe3\\xd6\\x7e\\xcb\\xb7\\xce\\xca\\x62\\x37\\x1a\\x4b\\x0f\\x6f\\x38\\xcc\\x11\\xa5\\xda\\xd4\\x8e\\x91\\xd3\\xde\\x73\\x70\\xdc\\xca\\x82\\xdd\\xaa\\x5a\\x6d\\x7b\\xee\\xb7\\x03\\x05\\x9b\\x9e\\x7b\\x89\\x08\\xdc\\xed\\xa5\\xa7\\x9f\\xbd\\x3f\\x20\\x9e\\x56\\x33\\x38\\xbe\\x56\\xca\\xfe\\xe8\\xaf\\xc6\\x97\\x01\\x1d\\xeb\\xe8\\x85\\xd5\\x8a\\xa5\\xd5\\x07\\xef\\x79\\xf0\\xee\\x5d\\xfb\\xf9\\xf1\\xfb\\xe9\\xe9\\xf9\\xf0\\xed\\x71\\x1c\\x8f\\xcf\\x8f\\xe3\\x2f\\x8f\\xa7\\x9b\\xbb\\x6d\\x9e\\x30\\x47\\xe1\\x69\\xda\\xd1\\x34\\xed\\x58\\x84\\xa7\\x00\\xf8\\x4b\\xbe\\x6f\\x60\\xb3\\x05\\x98\\xf8\\x8c\\xea\\x68\\x92\\x87\\xf4\\x09\\xc2\\x8c\\x89\\x93\\x63\\xb1\\x55\\x0a\\x9d\\xa1\\x66\\x57\\xa1\\xa8\\xe4\\x71\\x81\\xe4\\xff\\x95\\x3b\\xfd\\x87\\xcd\\x7c\\x4c\\x07\\x24\\xbd\\xc9\\x93\\x64\\x95\\x72\\x76\\x64\\xd7\\xae\\x48\\x5d\\x8d\\xb0\\xe9\\x44\\xf6\\x0a\\xdf\\x59\\xe0\\xaa\\x92\\x59\\x80\\x30\\xfd\\xcf\\x5e\\xe5\\x63\\xdd\\xfc\\x74\\x7a\\x79\\xbe\\x1c\\x87\\xcd\\x1e\\x9e\\x8e\\xfd\\x47\\xa5\\xc3\\xfe\\x65\\xcd\\xff\\xf0\\x27\\x2f\\x23\\x8a\\x4c\\x98\\x8d\\x1b\\x67\\x99\\x46\\xef\\xc3\\x1d\\xf3\\xfe\\xcb\\xb7\\xf5\\xe6\\xd1\\xee\\x18\\x56\\x77\\x28\\xca\\x24\\x85\\xb7\\xab\\xc7\\x5b\\x97\\x18\\x07\\x18\\x24\\x03\\x5d\\x5e\\xc9\\xb1\\x81\\x12\\x1c\\x7f\\x4f\\xbe\\x67\\x9e\\xe4\\xc6\\x06\\x21\\xa0\\x51\\xfc\\x42\\xfe\\xbf\\x37\\xef\\xef\\x79\\xf3\\xae\\xa7\\xcb\\xef\\xfb\\xb3\\xec\\xc6\\x59\\xfb\\x53\\xad\\x35\\x79\\x73\\x0a\\x35\\x31\\xf1\\xfe\\x0f\\x04\\x07\\x83\\x05\\xac\\x60\\xf5\\x85\\x03\\x2a\\xf5\\x0b\\x70\\x19\\xac\\x64\\xcd\\x67\\x2c\\xbf\\xf2\\xef\\x5e\\xbf\\x38\\x0f\\x3c\\xd2\\xee\\xd9\\x56\\xc9\\x8f\\xe6\\x1f\\x6f\\x3e\\x81\\xe3\\x90\\x0e\\x0f\\xba\\x87\\x7f\\xd5\\xa8\\xfb\\x94\\x67\\x77\\xdd\\x85\\x1f\\xe8\\xe5\\xcd\\x77\\xda\\x95\\xae\\x41\\x1f\\xdf\\xbc\\xac\\xd4\\xc5\\x6f\\xbd\\xd8\\xaf\\x5f\\x4c\\xa6\\x61\\xac\\x07\\x0e\\x97\\x4d\\xcd\\xed\\x03\\xed\\xc8\\x11\\x05\\x0c\\xb5\\x2b\\xd8\\xc8\\xa1\\x93\\x7d\\xc4\\xd1\\xb0\\x3c\\x7a\\xd3\\x6f\\x7f\\xdf\\x5c\\xf0\\xf0\\x8f\\x75\\x0b\\x53\\x62\\xaf\\xba\\xa1\\x16\\xcd\\xcd\\x9e\\xcd\\x84\\x8f\\x75\\x5e\\x01\\x70\\x06\\x74\\xec\\x04\\x3f\\x1b\\x11\\x42\\x9e\\xf1\\xb2\\xa3\\xfc\\xc9\\xdf\\x5e\\xbf\\x78\\x03\\xd3\\x76\\x60\\x90\\x7a\\x87\\x2c\\xcf\\x00\\x9f\\x1a\\xcd\\x23\\xcc\\x25\\x96\\x3c\\x88\\x63\\x03\\x67\\xd0\\x88\\x3f\\x05\\x40\\x4a\\x6b\\x18\\xae\\x94\\x65\\x87\\xcf\\x1e\\x40\\xa0\\x13\\x32\\xe3\\xda\\x0c\\x7e\\x17\\x58\\x8b\\x9f\\x46\\x47\\xdf\\xe4\\xd8\\x35\\x81\\x93\\x75\\x18\\xd6\\x55\\xe8\\x6c\\xf1\\x85\\xf1\\xc4\\x4e\\x3b\\x2a\\x47\\x13\\xc7\\x20\\x68\\x87\\x87\\x0e\\x9c\\xb5\\x82\\xf2\\x61\\xf6\\x5b\\x3c\\x1c\\x3f\\x1b\\x8e\\x01\\xe4\\x69\\x3c\\x55\\x05\\xab\\x09\\x12\\x0d\\xd9\\x63\\xab\\xac\\x19\\xe1\\xbc\\x35\\xb8\\xa6\\x9c\\x81\\x1c\\xd6\\x00\\x57\\x24\\x7e\\x87\\xab\\xd1\\xc5\\xb2\\x8a\\x70\\xff\\x0c\\x7c\\xf3\\xce\\x18\\x95\\xe1\\xa4\\x85\\x93\\xd3\\x9a\\x01\\x8f\\x6b\\x54\\x50\\xf4\\x6b\\xaa\\x41\\x9f\\x63\\x17\\x38\\x7d\\x89\\x91\\x45\\x65\\xe0\\x06\\x30\\xb8\\x85\\x65\\x25\\x0c\\x69\\x1b\\x6e\\xb8\\xc0\\xf9\\x77\\x86\\x85\\x58\\x06\\x69\\x68\\x3e\\x5d\\x5c\\xca\\xd4\\x05\\x0f\\x83\\x24\\x10\\x74\\x48\\xb6\\x62\\x58\\x04\\x93\\x01\\xe9\\x19\\x22\\xb1\\xb7\\x09\\x17\\x7e\\xf5\\xe3\\x8f\\x1f\\xc3\\x63\\x07\\x4f\\xde\\xd6\\xc8\\xba\\x39\\x2e\\x9e\\xf8\\x2a\\xa6\\x1e\\x80\\x45\\x42\\x9b\\x86\\xc1\\x59\\x65\\xe9\\x69\\xad\\x72\\x8a\\x9e\\xca\\x68\\xf8\\x25\\x83\\xed\\x1a\\x8b\\xd4\\x60\\x05\\x0c\\x2e\\x99\\xf6\\xc0\\x8d\\x74\\x4d\\x56\\x4c\\x24\\x86\\x9a\\x05\\x50\\xcf\\x45\\x45\\xd3\\x86\\xa1\\xf3\\x9d\\x82\\x90\\x43\\x04\\x94\\x80\\x73\\xb9\\x18\\xd4\\x99\\x54\\x13\\x91\\xde\\xe9\\x75\\x07\\xb1\\x03\\x36\\xc2\\x45\\xdc\\x86\\x86\\xa8\\x4b\\x8a\\xae\\xef\\x14\\x67\\xa3\\x19\\xd6\\x44\\x60\\x37\\x29\\xc4\\x01\\x6a\\x5a\\x5a\\x46\\xeb\\x69\\x10\\xbd\\x59\\x5f\\xc7\\xa6\\x99\\x07\\x55\\x18\\x39\\xa3\\x10\\x7f\\x3f\\xb0\\x1b\\xc1\\xfa\\xaa\\xb2\\xe3\\xea\\xe5\\xe9\\x12\\x74\\x6d\\xdb\\x59\\x79\\x70\\xa4\\xa1\\xb9\\x81\\x9f\\x04\\x2f\\x89\\xe1\\xb0\\x00\\x9e\\x31\\x0c\\x08\\x64\\x76\\xc8\\x26\\x45\\xdb\\x50\\xa5\\xfa\\xa8\\x3b\\x49\\x12\\x53\\x49\\xc5\\x01\\x60\\x77\\x7a\\x25\\x4c\\x52\\xcc\\xe6\\xe5\\x07\\x69\\x3b\\x07\\xdc\\x0b\\x24\\x25\\x3c\\xdd\\x3a\\x98\\x8e\\x1a\\xd9\\x22\\xfb\\x92\\x9b\\x1e\\xdd\\x41\\x23\\xd2\\xc8\\xa0\\x0a\\x8b\\x8d\\xa3\\x7f\\x37\\x32\\x7e\\xcb\\x7e\\x6e\\x4b\\x7e\\xf8\\x44\\xa4\\xb8\\x54\\xf7\\x42\\x29\\x6f\\x73\\x65\\x7c\\x04\\x00\\xf3\\xa1\\x11\\xfc\\xf5\\xd8\\xfd\\xf6\\xf2\\xe3\\x70\\x9f\\xd9\\xf1\\xe6\\x19\\xcb\\x08\\xe5\\x67\\xf2\\x37\\x3c\\x1a\\x20\\x33\\x10\\xcb\\x90\\x99\\xa2\\xd9\\x93\\xce\\xf4\\xf9\\x49\\xc1\\xd5\\x9b\\x54\\x46\\x32\\xc7\\x02\\xde\\x30\\x81\\xa9\\xc7\\x25\\x2c\\x7b\\x37\\x7b\\x23\\x54\\xf2\\xe2\\xb7\\x12\\x37\\x58\\xbc\\xed\\xad\\x00\\xff\\xba\\x61\\x1f\\x96\\x2d\\x3b\\xae\\x7a\\xe4\\x83\\xed\\x3c\\xbc\\x9c\\x9e\\xcf\\xe7\\xe7\\x7e\\xb3\\x89\\xe7\\x83\\x73\\x0e\\x91\\x4e\\x43\\xe3\\xb5\\xf2\\xfa\\xda\\x64\\x2d\\x2e\\x09\\x87\\x2f\\x03\\x8a\\x5f\\xbf\\x80\\xb1\\xad\\xe8\\x81\\x4c\\x84\\xa6\\x98\\x01\\x1f\\x76\\x00\\x64\\x08\\x2e\\xa6\\xc6\\x9a\\xab\\x89\\x76\\x00\\xf4\\x1f\\x94\\x6c\\xc8\\x52\\x30\\x60\\x92\\x42\\xfa\\x59\\x51\\xc6\\x14\\xee\\x86\\x81\\x4f\\xa2\\x1f\\xf4\\x56\\xb8\\x80\\x37\\x7d\\x1d\\x77\\x85\\xd6\\x05\\x29\\x9c\\xdd\\x36\\x1f\\x6b\\x14\\x80\\x66\\x9f\\x4e\\xe3\\xe6\\xe4\\xb9\\x3c\\xba\\xa4\\xe4\\x61\\xd7\\xdd\\xfb\\x38\\x0f\\x41\\x23\\x26\\x73\\x05\\x56\\xb8\\xf2\\x51\\x42\\x02\\xac\\x0f\\x6e\\xc5\\x50\\xd9\\x07\\x77\\x6d\\xb8\\xac\\x99\\x19\\x26\\xaf\\xc0\\x08\\xcb\\xaf\\x67\\xc6\\xc9\\x9e\\xd9\\x3b\\xff\\x49\\x41\\xe7\\x87\\x6d\\x45\\xe7\\x0f\\xb5\\x70\\x77\\xba\\x71\\x1f\\xae\\xca\\x67\\x31\\x93\\x64\\x98\\xc9\\x09\\xb2\\x06\\xf4\\x17\\x4b\\x3e\\x7a\\xa3\\x82\\xb1\\x9b\\x75\\x99\\x25\\x6e\\xef\\xea\\x62\\x92\\xde\\xac\\x0b\\xff\\xe4\\xa6\\x2a\\x7c\\xa3\\xad\\xb1\\xb6\\x35\\xac\\x36\\x07\\xe0\\x87\\x5a\\xe2\\xf4\\xdc\\x9f\\x2e\\x4f\\xa7\\xe7\\xad\\xd6\\x98\\x8f\\x09\\x4b\\x1c\\x74\\xeb\\x06\\x86\\xb7\\xbb\\x32\\x34\\xf3\\x5f\\xce\\x29\\x9b\\x86\\xe2\\x94\\x31\\xf4\\x5e\\xe1\\x93\\x1f\\xb5\\x7a\\xfb\\x6c\\xcd\\x90\\xe0\\xd0\\xfa\\x86\\x6a\\x3c\\x72\\x45\\xee\\x7d\\x83\\x26\\x92\\x39\\x94\\x71\\x55\\x86\\xc0\\xc8\\xa7\\x08\\xab\\xf0\\x63\\xd0\\x53\\xc8\\xe7\\xc7\\x2a\\x0e\\xe1\\x9a\\xc3\\xf1\\xe9\\xf9\\xf4\\xf4\\x74\\xdc\\xaa\\xfd\\xcd\\x09\\x4b\\x6f\\x79\\x67\\x90\\x58\\xc3\\x38\\x14\\x1d\\xa7\\xd4\\x5e\\x01\\x9a\\x55\\xcd\\x98\\x69\\xa6\\x9f\\x14\\x63\\x56\\x0b\\x40\\x3d\\xdb\\x16\\x55\\x2f\\x22\\xff\\x0b\\x93\\xb7\\x4e\\xd7\\x26\\xe9\\x21\\x91\\x45\\xe0\\xe6\\x78\\xec\\xcc\\xfc\\x0d\\x80\\xa1\\xa4\\x58\\x39\\x95\\xdc\\x35\\x31\\xf2\\x3f\\x63\\xeb\\x6d\\x13\\x3e\\x90\\xaa\\xf3\\x9e\\xd2\\x60\\xa7\\x45\\x1e\\xcd\\xb1\\x4a\\x95\\x03\\xfe\\x74\\xca\\x15\\x7f\\xd8\\xce\\xff\\xe9\\x39\\x27\\x06\\x98\\xba\\x5d\\xc2\\x2e\\x39\\xf9\\x73\\x39\\x40\\x37\\x3d\\xd1\\x9d\\xbf\\xff\\x38\\x3f\\x9d\\x9e\\x36\\x87\\xea\\xdd\\x29\\x33\\xbc\\x43\\x08\\xdd\\x2d\\x08\\xfd\\x3a\\x11\\x10\\x33\\x64\\x36\\x1b\\x7e\\x37\\xa3\\xbe\\x36\\x85\\x99\\xce\\x8b\\x46\\x3e\\x01\\x73\\x6c\\x39\\x76\\xfb\\x44\\xbd\\x48\\x7f\\x13\\x3c\\xf5\\x4a\\x06\\xa2\\xe2\\xc0\\xcc\\xa4\\x9f\\xa2\\xac\\x1d\\x57\\xbc\\x5b\\x93\\xa0\\xc0\\xc6\\xaf\\xed\\xf4\\x6b\\x16\\x5d\\x61\\xcd\\x95\\xd5\\xcf\\x39\\x09\\xdc\\x9a\\xb7\\x2a\\x93\\xa4\\x32\\xb6\\x56\\xe6\\xe1\\xb6\\x36\\x8e\\x6b\\xe3\\x50\\x1b\\x0c\\xc9\\x8f\\x37\\x8b\\x7d\\xfb\\x42\\x7a\\xd1\\x2c\\xf6\\x63\\xcd\\xc2\\x9b\\x2b\\x41\\xaa\\x7e\\xb6\\xfb\\xc7\\x1b\\x9c\\xe8\\x9b\\xa7\\xfc\\xbf\\xee\\xff\\xbf\\xac\\xfb\\xfb\\x6f\\xdf\\x1f\\xdf\\xee\\x79\\x3e\\x3a\\x6b\\x94\\xdb\\x04\\x38\\xb5\\x87\\xc4\\xaf\\xe5\\xa5\\xe7\\xf6\\x0b\\x72\\x60\\xaa\\x82\\xb3\\x8b\\xae\\x52\\x90\\xf1\\xcc\\x8a\\x96\\x91\\x53\\xae\\x32\\xdd\\xd6\\xaa\\x55\\x8c\\xd5\\x0d\\x4c\\x8d\\xd6\\xf7\\xad\\xe0\\xf7\\x0e\\x1f\\xc3\\x4d\\x55\\xc6\\xeb\\xe3\\xb7\\xd3\\xf9\\xed\\xaa\\xd6\\xe3\\x3c\\xc2\\x1d\\x14\\xd7\\x3a\\xf8\\x8a\\x3e\\xe1\\x93\\x1d\\x17\\xbe\\x5c\\x32\\x98\\x1d\\xb6\\x55\\x7f\\xee\\x2a\\xb4\\x5c\\x44\\xbf\\xd8\\xfa\\xcc\\xfb\\x8a\\xf1\\x03\\xab\\xe1\\xb8\\x50\\x53\\x53\\x0b\\x81\\xf7\\x62\\x1e\\xde\\x5a\\x6e\\x47\\x06\\x71\\xd7\\xaf\\x52\\xc6\\x6c\\x1a\\x52\\x4e\\x25\\x77\\x8b\\xab\\xc9\\x7f\\x49\\xab\\x59\\xad\\x5c\\x9a\\x52\\x3b\\xd6\\x3f\\xec\\x9b\\x48\\x3b\\x7f\\xe4\\xa3\\xbf\\x75\\x09\\xda\\x81\\xdd\\x3f\\x02\\x9b\\xe8\\x36\\xa6\\x87\\xed\\x2b\\xbf\\xfd\\x48\\x6b\\xa7\\xfc\\xc7\\xc6\\xdc\\xf9\\x7a\\xba\\x8c\\xdd\\x4a\\x0e\\x6e\\xe3\\xd8\\x94\\x4f\\xf3\\x8f\\x19\\xf7\\xdb\\xb6\\x3d\\xb6\\xa6\\x90\\x6e\\xf6\\xd0\\x44\\xc6\\x67\\xf0\\x7d\\x8e\\xa2\\x40\\x50\\x0a\\x63\\x7b\\x03\\xa7\\xba\\x20\\xc3\\xa2\\x14\\xf8\\xd7\\xbc\\x63\\x27\\x1f\\x74\\xd9\\x05\\xc4\\x52\\xc2\\xc0\\x17\\xda\\x47\\x32\\xd6\\x46\\xf9\\xd1\\xaf\\x49\\x0e\\x6f\\x0f\\x4c\\xb0\\x74\\xe8\\x17\\xae\\x12\\xce\\x18\\xff\\x94\\x37\\x21\\x85\\x29\\x6c\\x42\\x0a\\xbb\\xc6\\x6a\\xcd\\xc2\\xbb\\x4e\\x99\\xe8\\xf8\\x0f\\x17\\xdd\\x9d\\x98\\x51\\xda\\xa0\\xb6\\x47\\xbb\\x27\\x24\\x90\\x5a\\x56\\x92\\x8d\\x9d\\xad\\xde\\xbd\\xc8\\xf2\\x5c\\x76\\xe0\\x54\\x98\\xd4\\x39\\x43\\x93\\xbe\\xca\\x86\\xd9\\xa9\\x0d\\xc8\\xb5\\xbd\\x19\\x00\\xee\\xeb\\x40\\x7b\\x17\\x54\\x42\\xc2\\x66\\x07\\xb1\\x66\\x05\\x4b\\xd0\\x2a\\x10\\x88\\xda\\xd7\\x07\\x16\\xe7\\xa9\\x32\\xea\\x13\\x24\\xa1\\x32\\xe2\\xdc\\xa0\\x06\\x3e\\xd6\\xda\\x37\\xb2\\x98\\xb7\\x07\\xa6\\xdc\\x87\\xbb\\x5d\\x92\\xa3\\x21\\x60\\x52\\xe7\\x3d\\x92\\xaa\\xc0\\x34\\xcd\\x21\\x3c\\xe3\\x91\\x0c\\x23\\x02\\xab\\xa0\\x97\\x6e\\x66\\x06\\x24\\x38\\xf1\\x63\\xf5\\xca\\x6b\\xd6\\x75\\x94\\x60\\x52\\xf2\\xca\\xb0\\x77\\x86\\x75\\x1d\\x13\\x0f\\xeb\\x68\\x24\\x6d\\x82\\x5b\\xee\\x63\\xf4\\x8e\\x1d\\xa7\\x23\\xd9\\x00\\xc7\\x4e\\xa4\\xd5\\xbf\\x2c\\x0c\\x8d\\x1b\\x5d\\xc7\\xcd\\x4d\\xdf\\xc3\\x1f\\xdf\\xf5\\x5d\\x4e\\xdf\\xcf\\xdb\\x96\\x54\\x3d\\x32\\x6d\\x77\\x68\\xa3\\x1b\\xe1\\x93\\x05\\xa8\\x29\\x42\\x33\\xa0\\x11\\x4d\\x5e\\x6e\\x87\\x80\\xec\\xd2\\xec\\x54\\x4d\\x35\\x0f\\x91\\xa6\\x66\\x19\\xc5\\x92\\x7b\\x2e\\x1b\\x95\\x8e\\xc1\\x0e\\x74\\x34\\xb2\\xfe\\x40\\x2c\\xaf\\x5f\\x4c\\xd0\\xca\\x65\\xd7\\x81\\xa2\\x55\\x45\\x56\\xe3\\x45\\x2a\\xf9\\x98\\x18\\x0e\\x81\\x19\\xdd\\xfb\\x55\\x82\\xb3\\xe1\\x7c\\x1e\\xc7\\xbc\\x13\\xce\\x8c\\xc2\\x44\\xce\\xf4\\x13\\x4e\\xa2\\x29\\x34\\xd3\\xd7\\x89\\xa9\\x4e\\x28\\xe3\\x8c\\xe6\\x06\\xe6\\xc2\\xaf\\x70\\x83\\xf0\\x6a\\xf1\\x5c\\xa4\\x26\\x00\\x10\\x38\\x9d\\x76\\xc5\\x23\\x6c\\xe5\\xcf\\xed\\x99\\xca\\x7c\\x02\\x22\\x0b\\xd3\\xbe\\xb5\\xb3\\x7a\\xc4\\xe2\\xed\\xdd\\x4d\\x92\\xaa\\xdd\\x33\\xfe\\x3e\\x3e\\x9f\\xbe\\x1f\\xbe\\x1d\\x7f\\xff\\x76\\x39\\x1d\\xbf\\x6f\\xf5\\xe0\\xdd\\x29\\xff\\x9a\\xd9\\x5b\\x0c\\x4f\\x8c\\x18\\xa6\\xe3\\x98\\xd2\\x8c\\x3a\\xad\\x1c\\xe4\\xed\\x23\\x80\\xbb\\xd1\\xf5\\xcc\\xd1\\x12\\xc0\\xd1\\xe2\\x54\\xa4\\x7f\\x99\\x91\\x20\\x02\\x1d\\x8b\\x57\\x39\\xfa\\xde\\x4c\\x1c\\x17\\xf3\\x86\\xf6\\x61\\x5c\\x90\\x5a\\x70\\x52\\xfb\\x87\\xdd\\x02\\x10\\xd4\\xd8\\x6a\\x56\\x39\\x30\\xb3\\xc5\\x43\\x51\\xae\\x49\\x9c\\xe9\\xda\\x70\\xa6\\x26\\xde\\x75\\xef\\x69\\xdb\\x8e\\xd7\\x97\\xf6\\xe3\\x49\\xc2\\x19\\xf4\\xcc\\x46\\xe6\\x04\\xef\\x7b\\x87\\x71\\x13\\x3d\\x68\\x63\\x68\\x76\\x31\\xcc\\xea\\x56\\x46\\xc3\\x90\\x60\\xb0\\xfe\\xeb\\xd2\\xbb\\xf8\\x19\\x47\\x10\\x5c\\xe4\\x2e\\x6c\\xb5\\xf1\\xa6\\xb4\\xe6\\x78\\x2f\\xcb\\xb9\\x9d\\x2a\\xf8\\x47\\xa6\\x9b\\x5b\\x78\\xf1\\x02\\x57\\x0c\\xb9\\x99\\x58\\x3a\\xe0\\x9a\\x23\\xf3\\x85\\xd1\\x47\\xb4\\x4c\\x21\\x16\\x45\\xe1\\x3b\\xba\\x91\\x3e\\xf1\\x2c\\x56\\x61\\xe1\\x93\\x00\\x91\\x51\\xc6\\x73\\x2e\\x6f\\xce\\x02\\xc4\\x36\\x2c\\xb4\\x5b\\xe3\\xc0\\x26\\x6d\\x35\\xc3\\x4a\\x06\\x0e\\x49\\xaa\\x10\\xa3\\x61\\xfa\\x8a\\x04\\xc6\\xa7\\x9c\\xba\\xc6\\x48\\xb4\\x0f\\x9c\\x83\\x20\\xe6\\x7c\\xaf\\xe1\\x6e\\xc9\\xcf\\x11\\x8c\\x66\\xdb\\x8f\\x1f\\xc6\\x80\\xbd\\x02\\xc4\\x12\\xb9\\x33\\x35\\xfa\\xa6\\x99\\x2f\\x66\\xac\\xd1\\x21\\xcb\\x0a\\x16\\xc1\\xf2\\x69\\x9c\\xfd\\x89\\x28\\x0f\\xcd\\x99\\x3b\\x26\\x4a\\x7f\\xfe\\xb1\\x6a\\xec\\xf3\\x8f\\x05\\x18\\x92\\x36\\x36\\x10\\x73\\xd7\\xa2\\xea\\x2e\\xf4\\x60\\x9c\\x49\\x82\\x0d\\x93\\x77\\x7d\\x8e\\xac\\x36\\x58\\x73\\x29\\xb2\\xe7\\x2d\\x22\\x53\\xb8\\x7c\\x4e\\xda\\x23\\xa5\\x9e\\xd3\\xde\\x67\\x14\\x77\\x65\\x2f\\xca\\x71\\x21\\x20\\x92\\x27\\x81\\xa7\\xdd\\xe1\\x74\\xfe\\x71\\x78\\xfe\\x79\\xbe\\xa9\\x24\\x17\\xcd\\xb1\\xea\\x62\\x07\\x63\\x92\\xca\\x61\\x40\\x38\\x05\\x83\\x7a\\x72\\x67\\x09\\x78\\x31\\x07\\x51\\x55\\x14\\xd8\\xb2\\x0e\\x2c\\x4c\\xbd\\x94\\x30\\xb9\\x0b\\x57\\x95\\xb7\\x24\\x4c\\x7a\\xa6\\x52\\xb8\\xa7\\xde\\xcf\\x61\\x53\\x12\\x78\\xc1\\x76\\x00\\xaf\\x61\\xf5\\x19\\xfb\\x7b\\xb5\\xb8\\xe5\\x5d\\xc1\\xaa\\x5a\\xf3\\xa4\\x5c\\xd8\\x63\\x68\\x9b\\xc8\\xe6\\xbf\\x1e\\xc7\\xdf\\xd6\\x0e\\xde\\xdb\\x23\\x73\\xe3\\xf9\\xf2\\xc6\\x5a\\xe9\\x6a\\x28\\xad\\xf1\\xab\\xb5\\xe0\\x76\\xa9\\x14\\xe0\\x6d\\x5f\\x37\\xd2\\x05\\xa9\\x54\\x89\\xcb\\xb4\\xbd\\x17\\xdc\\xa4\\x37\\xa5\\x75\\xc6\\xc2\\xa8\\x68\\xb5\\xd5\\xc8\\xe5\\x69\\x73\\x40\\x73\\xb8\\xd0\\x66\\xda\\xec\\x20\\x08\\xa6\\x3d\\xc2\\xf3\\xd4\\x0a\\x56\\x72\\xe5\\xe1\\xaf\\x34\\x7d\\x63\\x41\\x41\\x25\\xa6\\xb2\\x12\\x4f\\xa6\\x33\\xc8\\x0e\\x36\\x85\\xe6\\x07\\xbc\\x69\\x40\\x02\\xa8\\xf8\\x70\\x2f\\xdf\\x64\\x34\\x1c\\xcb\\x64\\x1c\\x7a\\xe6\\xdb\\x2d\\xd4\\xdc\\x65\\xc4\\x56\\x0b\\x2d\\xbf\\xb3\\x82\\xbc\\x41\\xfd\\xbf\\xc5\\xf9\\x0f\\x6b\\x7e\\xe2\\xfc\\x5f\\xe6\\x96\\x8d\\x37\\xe2\\x0f\\x2b\\x75\\x61\\xbb\\x4e\\xe4\\x47\\x86\\x7b\\xe9\\x93\\x1e\\x18\\x53\\xdf\\x3b\\x13\\xff\\x12\\xce\\x7f\\x90\\xec\\xbf\\x4b\\xf0\\xdf\\x5b\\x9f\\xae\\x77\\xd2\\xa1\\x3b\\x74\\xfc\\x0f\\x03\\x20\\x31\\xb1\\x3a\\xfd\\x5f\\xff\\x1a\\xed\\x83\\x9d\\x4e\\xb9\\x3c\\x1f\\x9e\\xd7\\x32\\x9b\\xcb\\xc2\\x89\\xb1\\xc0\\x05\\x11\\x0d\\x71\\x22\\x1a\\xe2\\x58\\xe4\\xd4\\xea\\xde\\xd5\\xf5\\x95\\x95\\xac\\xf6\\x6e\\xf8\\xf3\\xd0\\xf5\\x77\\x43\\x60\\x2a\\xc4\\x0d\\x13\\xad\\xee\\xb9\\x06\\xe0\\x30\\x2d\\x47\\xcd\\xc9\\xd5\\x71\\x00\\x1f\\x42\\xaa\\xdb\\x8c\\xa1\\x31\\x19\\xe4\\x14\\xc2\\x7e\\xbf\\xb7\\x06\\xbc\\xfc\\xf2\\xcb\\x3a\\x97\\xb8\\x96\\x48\\x04\\x35\\x2a\\x6b\\xe3\\x10\\x69\\xcf\\x91\\x06\\xef\\x41\\xd6\\x64\\x4c\\xee\\xe9\\x1f\\xfe\\x3e\\x34\\x31\\xa9\\x98\\x5e\\xbf\\x38\\x5d\\xa0\\x6c\\x6c\\x4c\\xc6\\x39\\x43\\x23\\xc7\\x6d\\xa4\\x37\\x30\\x4e\\x81\\x53\\xfa\\x6e\\x63\\x7e\\xfd\\x62\\x2d\\x99\\xe1\\x71\\xc1\\xe9\\x48\\x4b\\x98\\x31\\x1f\\x49\\x0d\\x7b\\xfc\\xf5\\xe9\\x38\\x20\\x00\\xf7\\x32\\x1c\\x2f\\x07\\x7f\\xf8\\x7a\\x5c\\xed\\xfc\\x6e\\x8e\\xff\\xef\\xff\\xf5\\xdf\\xce\\xff\\x17\\x9f\\x54\\xc1\\xde\\xde\\x0d\\xde\\xd2\\x52\\x19\\x85\\x39\\xd3\\xdb\\x9d\\xe6\\xba\\xb9\\x68\\x77\\x7e\\x7a\\x3a\\x75\\xcf\\xa7\\x6f\\x87\\xa7\\xf3\\xe1\\xf1\\xe9\\x19\\xd1\\xaf\\xdd\\x47\\xd9\\xfe\\xd5\\xde\\x03\\x4e\\xfa\\xe7\\xc8\\x3d\\x75\\xde\\x88\\xf8\\xa1\\xbb\\x8d\\x96\\x49\\xd6\\xd4\\x15\\xe4\\xbb\\xb6\\xe6\\x3c\\xef\\x6c\\xa0\\x6f\\x1e\\xf1\\xe9\\x7c\\x18\\x1f\\xbf\\xbf\\x53\\x87\\x7a\\x02\\x0f\\x4f\\x5a\\x92\\xcb\\xe0\\xc8\\xb6\\x75\\xc9\\x0e\\xcc\\xe5\\x9a\\x39\\xee\\x6e\\x3a\\x50\\xf6\\xf3\\xbc\\xc1\\xbc\\x1a\\x4d\\x7c\\x3b\\xef\\xd5\\xba\\x32\\x34\\xb4\\x8d\\x94\\x3c\\x62\\xaf\\xa9\\xca\\xa0\\x65\\xa4\\xf3\\xbc\\x65\\xd1\\xa9\\xde\\x04\\xbd\\x31\\x1d\\x7e\\xae\\x92\\x2f\\xeb\\xa0\\xee\\xe6\\x61\\xee\\x8a\\x58\\x78\\x9b\\x3d\\x8d\\x12\\x16\\x36\\x8b\\x91\\xea\\x0a\\x0d\\x3b\\xd3\\xdb\\x6c\\xae\\x76\\x2f\\x8f\\xee\\xe6\\x1e\\xe7\\x5f\\x7e\\x79\\xe7\\x09\\x70\\x54\\x08\\x2d\\xac\\xf2\\x26\\x0e\\xb4\\x32\\x36\\x08\\x6e\\x56\\xa1\\x14\\x4e\\x73\\x6b\\x5c\\x2a\\x83\\xc9\\xb4\\x04\\xd1\\x44\\xcc\\x99\\x9a\\xb2\\x53\\x2b\\xe6\\xda\\xb8\\x48\\x56\\x5c\\xa6\\x75\\xe9\\x43\\x6d\\xf4\\xf3\\xf1\\x97\\xc7\\xb7\\xc6\\x31\\x8e\\xdd\\x8d\\x56\\x6c\\xfd\\xe9\\x5d\\xf7\\x19\\x08\\x60\\x43\\x13\\xba\\xd1\\x10\\xe8\\xb3\\x20\\xa9\\x1d\\xad\\x03\\x69\\x1b\\xbe\\xee\\x31\\x27\\xdf\\x3d\\x07\\xb2\\x7e\\x77\\x1f\\x46\\xce\\x9a\\x7c\\xdd\\x56\\xbb\\x2b\\x7c\\x09\\x29\\xa8\\xa6\\xe0\\xf1\\x68\\xff\\xaf\\xbb\\x02\\x55\\x06\\xcf\\x4f\\x97\\xe6\\xa7\\x2b\\xf8\\x0a\\xd4\\x0b\\x90\\xa1\\xb1\\x13\\x02\\x6e\\x2c\\x66\\xb4\\xf4\\x77\\x4d\\xd4\\xcc\\xa0\\x1a\\x99\\x11\\xa6\\xa6\\x77\\xbd\\x62\\x98\\x98\\x64\\xae\\xa0\\x94\\x31\\xcc\\x4b\\x24\\x8e\\x58\\xf1\\xc3\\x82\\xad\\xac\\x02\\x23\\xe0\\xd1\\x7d\\xfd\\xe2\\x0b\\x02\\x35\\x1d\\x94\\x4f\\x2d\\x2b\\xd4\\xcd\\x71\\x1c\\xce\\xad\\x5a\\x28\\xef\\xcd\\xa9\\xc3\\xc0\\x38\\xae\\xbd\\x05\\xe6\\x9a\\x03\\x8c\\x15\\x53\\xa3\\x43\\x70\\x21\\xe0\\x81\\xc0\\x02\\xb7\\x08\\xe9\\x7a\\x6c\\xd3\\xc1\\xea\\xe3\\xae\\xbb\\x0e\\xe0\\x45\\x73\\x6f\\x0e\\xda\\xf9\\x08\\x4f\\x09\\x5a\\x79\\x78\\x2e\\x6d\\xeb\\x34\\xc3\\x68\\xda\\x58\\xa8\\xef\\x43\\xeb\\x69\\x2b\\x6e\\xbd\\x6f\\x03\\x4d\\xff\\x77\\x23\\x3a\\x19\\x95\\xcc\\xc0\\xe9\\xa2\\xda\\xcd\\x23\\x2a\\x28\\xb8\\xaa\\x6d\\x54\\x34\\xdf\\xb0\\x9e\\xac\\xf7\\xaf\\x5f\\x82\\x46\\x38\\xa6\\xa2\\x0b\\x00\\xbe\\x45\\xb5\\x75\\x67\\x93\\x8a\\xf0\\xa1\\x69\\xc8\\xe2\\xe9\\xce\\x78\\xf0\\x10\\x7e\\x6a\\x20\\x7e\\xbf\\xcb\\xf9\\x9c\\x8a\\x66\\xe3\\xac\\xd8\\xa5\\xde\\x7a\\xf5\\x62\\x56\\x05\\x37\\x5f\\x83\\x48\\x42\\x4f\\xa7\\x13\\x9f\\x6d\\x27\\xa6\\x2d\\x09\\x64\\xdc\\x5e\\xa4\\xf2\\x0d\\x4c\\xf2\\xd9\\x82\\x7c\\xa0\\xb3\\xef\\x8b\\x79\\xad\\x48\\x03\\x19\\x60\\x9f\\x4e\\xa0\\xbc\\x72\\xfa\\x64\\xae\\xe9\\x93\\x1b\\x92\\xba\\x1f\\x6a\\xa8\\xc3\\x71\\x38\\xad\\xad\\x99\\x9b\\x03\\x6b\\xda\\x70\\xa1\\x87\\x6d\\x2a\\x3f\\x2c\\xda\\xe7\\x9e\\x88\\xe5\\x7f\\x36\\x59\\xf4\\xb7\\xc7\\x1f\\xb7\\xda\\xeb\\x8b\\xb2\\x25\\x29\\x77\\x2f\\x6a\\xde\\xac\\xd7\\x1a\\x24\\xce\\x40\\xcb\\x31\\x6e\\x98\\xd9\\xa1\\xb3\\x7f\\xb7\\x1f\\x97\\xd3\\xf5\\xf1\\xfc\\x32\\xde\\xde\\x71\\x2e\\x9f\\x13\\x55\\xe5\\xc2\\x95\\x32\\x98\\x6f\\xb9\\xf5\\x2c\\xef\\xde\\x75\\x78\\xfc\\x76\\x22\\xc3\\x73\\x79\\xc7\\xb9\\x6c\\x66\\xcf\\x99\\xd8\\x2f\\xc0\\xeb\\x51\\xb2\\xf0\\x7a\\xfc\\x43\\x6c\\x47\\x4c\\xe1\\xef\\x0d\\xe4\\x00\\x30\\x4d\\xcb\\x1f\\x57\\xb3\\xc3\\xad\\x3e\\x0e\\xe7\\x9f\\x87\\xef\\xe7\\xe7\\xc7\\xf3\\xd3\\xe1\\x2e\\x64\\x7a\\x7f\\x6c\\x5a\\xf7\\xab\\xc3\\xd6\\x08\\x55\\xa4\\xd5\\xd4\\x87\\x05\\xd3\\x30\\x84\\x6a\\x33\\x28\\x61\\x41\\x0a\\x23\\x59\\xab\\x60\\x00\\x0d\\x20\\x8f\\x15\\x66\\x5b\\xf0\\x7f\\x32\\xb8\\xc5\\x28\\xfc\\x98\\x56\\xf4\\x7a\\x15\\xea\\x31\\xa3\\x8a\\xa9\\x38\\x4e\\xde\\xd7\\x83\\x87\\x53\\x2b\\xa1\\xa7\\x04\\xd5\\x16\\xb5\\x03\\xe2\\x12\\xbc\\x4c\\x78\\xe5\\xd3\\xeb\\x97\\x8c\\x37\\xa9\\xe3\\xb8\\x05\\x72\\xeb\\xb5\\x90\\x52\\x8a\\x5d\\x6d\\x40\\xb1\\x27\\x71\\xf8\\xc4\\xc4\\x65\\xc6\\x78\\x9e\\x49\\xac\\x51\\x0e\\x4a\\x6b\\xd8\\x25\\x0b\\x25\\xa6\\x50\\x80\\x36\\xd9\\x0b\\xbd\\x27\\x34\\xb7\\x54\\xb6\\x8a\\x7f\\xca\\xbe\\x44\\x6f\\x43\\xc7\\x9b\\x6a\\xdc\\x13\\x21\\x22\\x7e\\xda\\xea\\xbb\\x97\\xe9\\xda\\xd0\\xef\\xf9\\x71\\xd9\\x99\\x61\\x13\\x4d\\xe9\\x6e\\x88\\xd0\\x0e\\xee\\x1a\\x6f\\xdb\\x6c\\x0a\\x2d\\x8d\\xa6\\xcd\\x9e\\xc5\\x80\\x5b\\x9f\\x8a\\x6a\\xa2\\x6b\\x73\\xc0\\xfb\\x6e\\x21\\xfd\\xfc\\x7e\\x17\\x7f\\x3f\\x5e\\x9e\\xef\\x02\\x6e\\x8b\\xc2\\x8f\\x71\\xb8\\xe8\\x4d\\x35\\xf1\\xbf\\x88\\xc3\\x65\\xa7\\x02\\xe7\\xdf\\x4e\\x87\\x5f\\x2e\\xa7\\x75\\x05\\xe6\\xc2\\x05\\x4c\\xc5\\x0e\\x4d\\x74\\x2a\\xba\\x3e\\xba\\x6b\\x13\\x1d\\x6f\\xbf\\x9c\\x8d\\x5d\\xe3\\x8a\\xb0\\x9a\\x3b\\x87\\x8f\\x84\\x48\\x2f\\x96\\x55\\x95\\xc8\\x18\\xb4\\x5d\\x03\\x39\\xdc\\x06\\xfc\\xbd\\x81\\x3f\\x5d\\x1a\\xe1\\x07\\x75\\x60\\xf5\\xf5\\xae\\x77\\xae\\xf3\\x64\\xe9\\x24\\xf6\\x5b\\xc2\\x7f\\x9e\\x68\\xb6\\x65\\x21\\x36\\xf0\\x1f\\xe7\\xf9\\x45\\x17\\x3b\\x14\\x89\\xc1\\x56\\x79\\x9d\\x3b\\xcf\\x62\\xab\\xd8\\x3b\\x6a\\x7c\\x18\\x9d\\xaf\\x8d\\xe7\\x0b\\x78\\x6a\\x1b\\x5a\\x80\\x1d\\x63\\x95\\x69\\xb3\\x9a\\xc8\\x52\\xc1\\xa3\\x39\\x78\\x53\\x5c\\x51\\x5e\\x83\\xec\\x44\\xf3\\xdc\\x91\\x99\\xa6\\x18\\xa9\\xf2\\x66\\x12\\x27\\x07\\x51\\x7e\\xe4\\xcb\\xc2\\xa2\\x72\\x69\\xbb\\x98\\x66\\xc5\\xc1\\x46\\x65\\xd3\\xe0\\x24\\x38\\x3a\\xdb\\x1d\\x13\\xf9\\x9b\\x70\\xec\\xed\\xc2\\xcd\\xbe\\x9f\\x7f\\x7b\\x7c\\xfa\\xf5\\x70\\x39\\x9f\\xbf\\x8f\\x37\\xfd\\xb5\\x28\\x97\\xd5\\xc1\\x2a\\x5b\\xfc\\xa2\\x41\\xf3\\xdc\\xa0\\xa2\\x6c\\x97\\xdf\\x68\\xd0\\xbf\\xb0\\x43\\xb9\\x6f\\x9c\\x4f\\x9b\\x7d\\x43\\x2f\\x67\\xe6\\xbe\\xc9\\x8b\\xbe\\x89\\xdc\\x37\\x71\\xab\\x6f\\xc6\\xc6\\x24\\x5c\\xde\\x15\\xe5\\xca\\x95\\x7a\\x0a\\x0f\\x9b\\x18\\x16\\x88\\xfc\\x25\\xf3\\x4e\\xe7\\xd1\\xde\\x74\\xa3\\xf3\\x36\\x8b\\xa5\\x54\\xd7\\x62\\x7d\\xdd\\x03\\xca\\xdc\\x74\\xcb\\xb8\\xd4\\xd6\\x65\\xf9\\xc5\\x15\\x1d\\x2b\\x99\\x24\\xb5\\x78\\x41\\xc7\\x5a\\xec\\xd6\\xd9\\xd8\\x7b\\x4f\\x06\\xc9\\x7a\\xaa\\xb8\\x95\\x66\\x5d\\x4e\\x15\\xa5\\x4c\\xea\\x82\\xab\\xe9\\xa1\\xba\\xba\\xdd\\x9e\\x99\\xf5\\x7d\\x3c\\xfc\\x72\\x7c\\x1c\\xd6\\x99\\x70\\x8b\\xc2\\xd9\\xbc\\x2a\\xe5\\xd6\\xca\\xac\\x2a\\x26\\x77\\x2c\\x77\\xff\\x43\\x75\\x79\\x3a\\x9f\\x5f\\x57\\x53\\x9d\\x14\\x4c\\x51\\x08\\x69\\x78\\x4e\\x01\\xce\\xf0\\x07\\x36\\x45\\xf7\\xa9\\xea\\xdb\\xda\\x7c\\x75\\x65\\x48\\x49\\xe5\\xd2\\x37\\x29\\x4d\\xf9\\x75\\x1b\\xa4\\x8e\\x1f\\xc9\\x7a\\x18\\x99\\xb7\\x5b\\x4f\\xda\\x16\\x12\\x05\\xb0\\xe9\\xe3\\x19\\x1a\\x0c\\x55\\x5a\\x80\\x93\\xc6\\xdb\\x7c\\x09\\xb2\\x2a\\x90\\x6f\\x00\\xc0\\xad\\x43\\x5a\\x41\\x76\\x83\\x4d\\xca\\x21\\x48\\x0f\\x6a\\x74\\xcd\\xd9\\x06\\xd9\\xe2\\x34\\x67\\x07\\x3a\\x69\\xa7\\x39\\xd7\\x32\\x3d\\xe3\\x2c\\xd2\\x33\\x93\\x28\\x80\\x6c\\x43\\x2c\\x63\\x0e\\x2a\\x64\\xbf\\x12\\x15\\xbd\\x56\\x12\\x65\\x66\\x20\\x66\\xc0\\x1f\\x37\\xf5\\xee\\xcd\\x0f\\x5f\\x7f\\x3f\\x1c\\x87\\x1f\\xfd\\xf1\\xe6\\x29\\x16\\xe5\\xb2\\x33\\x8f\\xca\\xc4\\xdc\\x1b\\xa7\\x79\\x3d\\x31\\x99\\x16\\x94\\xc1\\xd8\\xa8\\x4c\\xc6\\xcd\\xc2\\xd5\\xf9\\xde\\x50\\x3f\\xdb\\xf4\\xfa\\x05\\x88\\x2c\\x6b\\x7a\\x32\\x69\\xbc\\x55\\xc6\\x18\\x66\\x35\\x77\\x29\\xf7\\x2e\\x80\\xe3\\xd0\\x62\\x59\\x29\\x03\\xcd\\x34\\xc1\\xb2\\x3c\\x3f\\x66\\x1d\\xfa\\xe2\\x0a\\x19\\x8e\\x45\\x95\\xd2\\xd3\\x98\\x0d\\x1a\\xea\\xdf\\x5f\\x1c\\x0d\\x56\\x03\\x7d\\x64\\xc3\\x6e\\xa5\\xf7\\xab\\xf8\\x63\\x55\\xb1\\x1f\\x73\\x75\\xc8\\xd8\\x49\\x1d\\xc7\\x12\\x03\\xd0\\x33\\x9c\\xda\\x48\\x7b\\xeb\\xd4\\x71\\x0e\\x28\\xf3\\xc5\\x32\\x6d\\x43\\x48\\x5d\\x50\\x01\\x44\\xf8\\xb4\\x69\\x4d\\x41\\x99\\x68\\x3b\\x4e\\x1d\\x45\\xbc\\x9a\\xac\\xc3\\x84\\xcc\\x45\\x8b\\xa9\\xcf\\x96\\xd2\\x95\\xd0\\x9a\\xa4\\x59\\x0e\\xcf\\xb4\\xc9\\x47\\xd5\\x04\\xdf\\x5a\\x6b\\x0b\\x67\\x7b\\x1a\\x93\\x3a\\x6f\\x5a\\x5b\\x62\\x54\\xd1\\xb6\\x99\\x76\\x83\\xc6\\xa4\\x36\\x07\\x7c\\xe2\\x24\\xa1\\xac\\x44\\xe8\\x98\\x65\\x4f\\x8a\\x80\\x59\\xac\\x0f\\x1d\\x90\\x63\\x9c\\x3d\\xd4\\x48\\x5c\\xc9\\x18\\x66\\x9d\\xe0\\xd0\\x25\\x87\\xb2\\x60\\x2d\\x6a\\x8d\\xb4\\x41\\xc0\\x5e\\xe0\\xd8\\x48\\x86\\x36\\xf7\\x7b\\x0d\\xd8\\x9d\\x6e\\x9d\\x4a\\x73\\xd9\\x4c\\x2d\\x24\\x50\\x28\\xb8\\x3c\\x9d\\x28\\xb4\\xca\\xae\\x98\\x06\\xf0\\xde\\x96\\xfd\\xc7\\xe9\\xf8\\xdb\\x1a\\x06\\x54\\x4b\\xe6\\xdc\\xef\\x10\\xff\\x02\\x49\\xea\\x1c\\xfe\\x6a\\x45\\x6a\\xbb\\x14\\xea\\x5e\\x86\\xcd\\xea\\xde\\x15\\xdf\\x76\\x62\\x6e\\xaf\\x95\\x54\\xf8\\x61\\xdb\\x92\\x9d\\xf7\\xcb\\xb7\\xca\\xe1\\x6b\\x4b\\x76\\x8a\\x9f\\x5c\\x37\\x35\\x65\\xf6\\x94\\x71\\xa5\\xd5\\x0f\\xbf\\x5e\\xce\\x2b\\x06\\xe4\\x9b\\x72\\x9e\\xec\\x6d\\x66\\x57\\xaf\\xf3\\xa6\\xaf\\xcc\\xac\\x60\\xe9\\xda\\xca\\xf8\\xa3\\x93\\x2a\\x83\\x3a\\x0d\\xdc\\x89\\x96\\xcf\\xf3\\x7f\\x9c\\xaf\\x10\\x18\\xde\\xe1\\x6f\\xd1\\x1d\\x23\\x88\\xcb\\xc1\\x66\\xad\\x20\\x5b\\x52\\x0a\\x64\\xbc\\x7d\\x52\\x5a\\xe5\\xa0\\x1c\\x24\\xb5\\x72\\x00\\xb3\\xf9\\x64\\xfe\\xf0\\x54\\x4f\\xb6\\x0e\\x8b\\x1a\\x8d\\xf8\\x33\\xc8\\x09\\x22\\xdf\\xe3\\x97\\xdb\\xd9\\x45\\x48\\x78\\x9c\\x36\\x05\\x08\\x4e\\x51\\xdb\\x4a\\x78\\xfb\\x61\\x9c\\x5d\\x19\\x82\\x41\\xcc\\xcc\\x23\\x69\\xd8\\xd4\\x6a\\xd8\\xd6\\x02\\xe3\\x2c\\xcd\\x32\\xe2\\x07\\x34\\x62\\x4d\\xe1\\x50\\xee\\x1b\\x93\\x0a\\xa4\\x67\\x34\\x8a\\x0d\\xeb\\x79\\xb8\\x7c\\xe5\\x9f\\x00\\x0b\\x4e\\x97\\xa1\\xc2\\xd2\\x9b\\xb4\\x63\\xda\\x4a\\x0f\\x3d\\x9d\\x9f\\x4f\\xe3\\x46\\xcf\\x49\\xf9\\x8a\\x0b\\xac\\x12\\x56\\x37\\xcc\\x58\\x2d\\xc6\\xb9\\x18\\x4e\\xeb\\x03\\x56\\x4f\\x56\\x48\\x95\\xaa\\x67\\x26\\x44\\x32\\x71\\xe5\\x52\\x0b\\x53\\x0b\\x53\\xcb\\xbd\\x05\\x86\\xe2\\x6a\\xcc\\xfc\\x0b\\x0c\\xb3\\x65\\xdb\\xdc\\xfa\\x48\\xef\\x8f\\xb1\\x7f\\xe1\\x83\\xcf\\x5a\\x83\\xfc\\x86\\x61\\xa9\\x62\\xc0\\xf4\\x86\\xa9\\xa7\\x1a\\xb0\\xd9\\x0a\\x30\\x2c\\x96\\x45\\x83\\x9b\\xa1\\xc1\\x9a\\x6a\\x63\\xef\\xbc\\x16\\xcc\\x6b\\x4a\\x3d\\x5d\\x64\\x22\\x4c\\x7a\\xb3\\x25\\xe9\\xe1\\x52\\x18\\x3c\\x6e\\xed\\xed\\x62\\xa7\\x64\\xad\\x42\\x5e\\xa4\\x29\\x76\\x6e\\xb4\\x68\\xe5\\xa2\\x1f\\x6a\\xa6\\xbb\\x6d\\xfa\\xba\\x7c\\x02\\x6a\\xc2\\xb3\\x63\\xfa\\x99\\xbe\\x97\\x45\\xbf\\x69\\x3d\\x2b\\xb9\\x33\\x70\\xe7\\xb2\\x10\\x2b\\xe0\\x86\\xb4\\x9b\\xe7\\x97\\xa4\\x32\\xe4\\x73\\x31\\xfd\\x4f\\x17\\xb1\\xc8\\xe6\\x67\\xf0\\x84\\x1c\\xb5\\xfe\\xca\\x3f\\xc1\\xfa\\x48\\xd3\\x08\\x15\\x86\\x09\\x4e\\xde\\x45\\x90\\x35\\xc0\\x7d\\x95\\x58\\xa5\\x68\\x0b\\xcd\\x68\\x05\\xcd\\x18\\x04\\xcd\\x58\\xdf\\x53\\x3a\\xf8\\x26\\x9a\\x31\\x30\\x9a\\x11\\x82\\xe4\\xe6\\xe1\\x06\\xce\\x98\\x94\\xf7\\x63\\xd6\\x02\\x67\\x4c\\x02\\x67\\x34\\x6b\\x38\\x63\\x7c\\x07\\xce\\xb8\\xd3\\x0f\\xc3\\xd0\\xf5\\xa7\\x75\\x50\\x65\\x51\\x28\\x0e\\x30\\xa3\\x6c\\x0c\\x53\\x6c\\xd9\\x6a\\xac\\x4a\\x34\\x06\\x35\\xc4\\x28\\x25\\xe7\\x15\\x72\\x3c\\x54\\x13\\x87\\x3d\\x54\\x9f\\x39\\xf8\\x6b\\x4c\\x7e\\xfd\\x62\\x63\\x64\\x0c\\xb6\\x0d\\xac\\x23\\x62\\xe9\\x42\\x8c\\xc6\\x6b\\x7c\\x18\\x8c\\x2e\\x3c\\x28\\xf5\\xc0\\xea\\x96\\x10\\x60\\xd9\\x59\\x5a\\x9e\\xd7\\x46\\xc4\\xf3\\x2a\\x0e\\x65\\x40\\x3f\\xea\\xa0\\x6b\\x38\\xb8\\x40\\xd6\\xbf\\x24\\xfd\\x69\\x33\\x40\\xce\\xc9\\x0d\\x11\\x88\\xe5\\x01\\x7e\\x2b\\xcf\\xa5\\x8d\\x99\\x82\\x08\\xda\\x0c\\x48\\x1e\\xd8\\xb3\\x08\\x9f\\x8f\\x97\\xc3\\x57\\x51\\xfc\\x5f\\x3d\\xcd\\x54\\xba\\xe0\\xc4\\x70\\x03\\x14\\x05\\xf9\\x5d\\x2d\\x66\\x48\\x46\\x21\\xa9\\xd8\\xab\\x3c\\x34\\x2e\\xaa\\x1c\\xf1\\x01\\x40\\x7a\\xf1\\xaa\\xc9\\x74\\x46\\x43\\xa7\\x00\\x42\\x6a\\x64\\xe7\\x60\\xc2\\xfd\\x53\\x72\\x75\\xb3\\xfe\\x64\\xb5\\xf7\\x2b\\xd7\\x1f\\x87\\x5f\\x6e\\xab\\xc6\\x65\\x9f\\xaa\\xd8\\xb5\\x31\\xa5\\xfc\\x0f\\x3c\\xff\\x78\\xf3\\xec\\xb3\\x3f\\x46\\x44\\x01\\x68\\x1a\\xd0\\x78\\x7e\\xc8\\x9c\\xe8\\xa0\\xca\\x40\\xf3\\x6c\\x89\\xf8\\x68\\x4a\\xe2\\xd2\\x26\\xa3\\x8e\\xb1\\xf0\\xd0\\xa5\\xdf\\x14\\xad\\x82\\xff\\xc7\\x69\\x71\\x9e\\x8f\\xbf\\x1f\\xba\\x97\\xcb\\xe5\\xf4\\xf4\\xbc\\x4d\\x2b\\xfe\\xc6\\x09\\x73\\x9e\\x41\\x74\\x6b\\x52\\xee\\x2b\\xb3\\x4a\\x5b\\x49\\x13\\xb8\\x5d\\xf6\\xb2\\x7f\\x8b\\xac\\xfb\\x93\\x5c\\xdd\\x1f\\xaf\\xd7\\x16\\x27\\xf7\\xf6\\xf1\\x7f\\xbd\\x43\\x97\\x1e\\xfb\\xc7\\xe5\\xf1\\xfb\\xf1\\xf2\\xfb\\xdb\\xdd\\xb5\\x71\\xc2\\x7f\\x42\\x77\\xd5\\xc7\\x7e\\xab\\xbb\\xee\\x8f\\xff\\xfb\\xbb\\x6b\\x0d\\x89\\x7d\\x3e\\x2f\\xf7\\x27\\x2e\\x7b\\xf6\\x9f\\x20\\xa6\\x46\\x7f\\xed\\x06\\xd5\\x9e\\xcf\\x3f\\x0e\\x6f\\x71\\x27\\xdf\\x1f\\xe3\\x3b\\x81\\xf7\\xd4\\x76\\x16\\xde\\x60\\x70\\x69\\xab\\x94\\x15\\x08\\xb6\\x21\\x45\\x0a\\x82\\x19\\x44\\x6a\\x12\\x8b\\x98\\x79\\x5a\\x2b\\xe2\\xeb\\x97\\x60\\xd8\\x5e\\x83\\x36\\x8d\\x35\\xb3\\xbd\\x06\\x0d\\x3e\\xea\\xe8\\x74\\x47\\x9f\\x3c\\x6f\\xf1\\x78\\x84\\x80\\xea\\x88\\x5a\\xcc\\x03\\x0d\\x09\\x85\\xdb\\x0a\\x6c\\x40\\xa6\\x8a\\x81\\x0e\\x27\\xac\\x1f\\x06\\x00\\x0e\\xa0\\x7e\\x35\\x26\\x0f\\xf4\\x78\\x16\\xac\\x21\\xa9\\x5c\\x1b\\x0f\\x26\\xa3\\x66\\x22\\xbf\\x81\\xb5\\x55\\xa5\\x9a\\x4d\\x6f\\x93\\x5b\\xee\\x4e\\x67\\x50\\x2f\\x06\\x82\\x0f\\x00\\x3c\\xf6\\xa1\\x88\\xf7\\x69\\x87\\xb6\\xf6\\x9e\\xb2\\x78\\xc5\\x57\\x9c\\xc3\\xc4\\x1f\\xc0\\x78\\x29\\x26\\x30\\x75\\x55\\xd2\\x19\\x00\\xab\\x5c\\xa1\\x3d\\xe8\\xeb\\xe8\\xee\\xa2\\xeb\\x80\\x3d\\xaf\\xce\\x45\\x66\\x58\\x66\\x5a\\xd7\\xfb\\x8b\\xe7\\x70\\x77\\xed\\xbd\\x4a\\xdc\\x56\\xe1\\x46\\xd6\\x16\\xfe\\x5c\\x23\\xe2\\xb4\\x30\\x84\\xbd\\xcf\\x20\\x49\\x6c\\x24\\x19\\x95\\xd5\\x2d\\x2a\\x54\\x0c\\x7f\\xd0\\x2b\\x26\\x7f\\x5c\\xbd\\x1b\\x80\\x16\\x49\\xb4\\x9d\\x19\\x18\\xf6\\x29\\x31\\x39\\xec\\x45\\x04\\xd6\\x2d\\xc8\\xc5\\xfd\\x3d\\x0f\\xe4\\x77\\xbf\\x1f\\x87\\xe1\\xf0\\xed\\xf1\\x72\\xea\\x9e\\xcf\\x97\\xdf\\x6f\\x6b\\x70\\x77\\xf8\\xdf\\x5d\\xa1\\xcb\\xf1\\xf1\\xd7\\xfe\\xf9\\xb4\\x4a\\x70\\x5c\\x14\\xce\\xb9\\x31\\xc9\\xb0\\xca\\xb6\\xf8\\xa5\\x1a\\xbf\\x02\\x6f\\x20\\x6d\\x70\\x76\\xbe\\x4f\\x5f\\xef\\x4f\\xa6\\x8b\\x4c\\x69\\x35\\xab\\xe9\\x7b\\x29\\x8a\\xc4\\x2f\\xdf\\x67\\xd2\\x6a\\xf8\\x27\\x9f\\x25\\x3c\\x79\\xbe\\x9c\\x4e\\xcf\\xd7\\xc7\\xd3\\xcf\\x75\\xfd\\xa7\\x42\\xee\\x3c\\x1f\\x44\\x80\\x1c\\xbe\\x86\\x88\\xac\\x16\\x58\\x4b\\x64\\x51\\xc1\\x86\\xd7\\x05\\x34\\xf3\\xd8\\x86\\x19\\xfe\\x70\\x7a\\x3b\\xac\\x6f\\x82\\xef\\x98\\xea\\xaa\\xf0\\xf4\\xe2\\x25\\xdd\\x10\\x5e\\xb6\\x94\\xe4\\x56\\xa1\\x2c\\x5c\\x6c\\xf0\\xaa\\xdd\\x0a\\x10\\x8e\\x2b\\x0f\\x9b\\x14\\x89\\x6b\\xae\\xfa\\xda\\x68\\x3b\\x92\\x95\\xd5\\x11\\xb1\\x69\\xaf\\x12\\xa2\\x63\\x64\\x64\\xba\\xc2\\xd1\\x2d\\xcf\\x6a\\xc3\\xd8\\x53\\xd2\\x80\\x4b\\x0f\\x6f\\xf2\\xb3\\xf8\\x72\\x65\\x87\\xaa\\xd1\\x2a\\x28\\xb0\\x01\\xd1\\xc6\\x71\\xa7\\x81\\x1f\\x7f\\x3b\\x3d\\xf7\\x97\\xf3\\xcb\\xaf\\xfd\\x61\\x6d\\x9e\\xde\\x1c\\x11\\x80\\x07\\xb5\\x97\\xe5\\xa6\\x6e\\x8d\\x35\\x51\\x59\\xdf\\x9a\\xe0\\x03\\xe6\\xfe\\x68\\xe9\\xa3\\xb3\\xb1\\x35\\x01\\xdb\\x54\\x5a\\x3c\\x74\\x1b\\x93\\xb6\\x0a\\x9b\\x4a\\x34\\x77\\x5b\\x0c\\x72\\x0d\\x6d\\x1b\\x33\\xbd\\x5e\\xa5\\x75\\x5e\\x42\\xfd\\x2e\\x0b\\x43\\x59\\x16\\x21\\x64\\xdf\\x37\\x96\\xdd\\x0a\\x53\\x54\\x20\\xbb\\x0e\\xac\\x6f\\xe0\\x80\\xf3\\xaa\\x49\\x1d\\xf3\\xe3\\xb1\\x2c\\x66\\x02\\x09\\x1c\\xe4\\x25\\x5a\\x8b\\xe7\\x72\\xba\\x35\\x39\\x5b\\xe0\\xf3\\x7d\\xc6\\x4e\\x2f\\x91\\x4d\\xcf\\xfe\\xe5\\xaa\\x1b\\xc5\\xe0\\xb9\\x88\\xae\\x17\\x10\\x1b\\x10\\x0c\\xee\\xa1\\x6b\\xac\\x69\\x8b\\x21\\xbb\\xba\\x75\\xd9\\x41\\x3e\\x57\\xb7\\x51\\x23\\x4f\\xbb\\xf5\\xc1\\xb2\\x48\\xad\\x45\\xd4\\xb3\\xcd\\x1c\\x0e\\x6f\\x0d\\xd4\\xdd\\x10\\x87\\x6c\\x8b\\xc1\\x36\\xb9\\xa8\\x54\\x7a\\x84\\xc6\\x8d\\x51\\x2e\\x30\\x08\\xae\\x4d\\x09\\x69\\x55\\xa5\\x8d\\xd4\\x48\\x01\\x0c\\x06\\xb4\\x58\\x59\\xdb\\x86\\x84\\xe4\\xb0\\xc6\\x95\\x36\\xda\\x1c\\x54\\x93\\x5a\\x1b\\x62\\xb1\\x2c\\x03\\x86\\x1b\\xa2\\x02\\x8e\\xd7\\x40\\xda\\x83\\x74\\x4c\\xcd\\xc6\\xba\\xa8\\xac\\xd0\\xde\\x65\\x6a\\x28\\xde\\xe1\\x30\\xe7\\x64\\xe8\\x9b\\x29\\xa7\\x00\\x54\\x6b\\x5e\\x85\\xae\\x89\\x80\\xed\\x65\\xe4\\x35\\xd0\\x8a\\x03\\x82\\xa2\\xdc\\x26\\x0f\\x59\\xe2\\xb6\\x38\\x4d\\xd6\\x50\\xeb\\x3c\\xb3\\x28\\x44\\xd7\\x59\\xdd\\x06\\x0f\\xb0\\x49\\xeb\\x52\\xce\\xca\\xa7\\x36\\x1b\\x4b\\x43\\x42\\x65\\x07\\xe2\\xbb\\xd0\\xea\\x18\\x12\\xfc\\xda\\xad\\x71\\x10\\x81\\xd1\\xad\\x36\\xc5\\x41\\x42\\xcf\\xa6\\xce\\xa4\\x36\\x44\\xda\\xc5\\x9b\\xd0\\x66\\xed\\x2d\\xdc\\x07\\x2e\\xb5\\xc5\\xc7\\x8c\\xbf\\x63\\xe9\\x77\\x19\\x08\\x9e\\x7f\\x5f\\x63\\xc6\\xf9\\xbb\\x18\\x4a\\x41\\x15\\x73\\x35\\x2e\\x0c\\x48\\x9e\\x4d\\x64\\x78\\x98\\xad\\x19\\xea\\x15\\x91\\x2e\\x67\\xf7\\xa5\\xeb\\xcc\\x22\\xcb\\x79\\xe4\\xac\\xc9\\x89\\x27\\x23\\x69\\x65\\x92\\xed\\x24\\x97\\xd2\\x48\\x4f\\x39\\xf6\\xb9\\x98\\x90\\x54\\x13\\xc3\\x44\\xd2\\x68\\xb8\\xd3\\x68\\xc8\\x2e\\x12\\xae\\x0c\\x07\\xce\\x6d\\x64\\x62\\x7e\\xc6\\x8c\\x29\\x80\\x96\\xf9\\x17\\xfc\\x8e\\xa3\\xbb\\x9c\\x51\\x36\\x2a\\x97\\x07\\x13\\xb2\\x8a\\xe1\\xa1\\x8b\\x0a\\x0c\\x8f\\x0e\\xfe\\xd5\\xce\\x44\\x85\\x73\\xd0\\xf3\\x00\\xbd\\xbf\\x7e\\x09\\x5e\\x15\\x87\\x20\\x50\\x61\\x28\\xa8\\x63\\xe0\\x65\\x18\\x90\\x65\\x2d\\x69\\x55\\xef\\xb6\\xf7\\xcb\\xd7\\x69\\xfd\\x3c\\x1c\\x2f\\x97\\xf3\\xcf\\x5b\\x89\\xe2\\x37\\xcf\\x10\\x39\\x29\\x24\\x26\\x4c\\x5e\\x9c\\x94\\x54\\x93\\x52\\x6f\\x4a\\x04\\xa9\\xfd\\x04\\x13\\xb3\\x1c\\x4b\\x6d\\x52\\x5a\\x20\\xf2\\x19\\xbe\\xf6\\xd9\\xe7\\xbb\\x55\\xf7\\x7d\\xfb\\x94\\x19\\x59\\xc6\\x9c\\x6b\\x9c\\xfd\\x3c\\xd1\\x14\\x25\\x95\\x12\\x9e\\x0c\\xc4\\x5a\\x2c\\xdd\\xe1\\xe9\\xd1\\x51\\x8d\\xf4\\x21\\x15\\x99\\x97\\xaf\\xff\\xbf\\x53\\x77\\xf3\\x34\\x5c\\x52\\xad\\x43\\xaf\\x83\\xa4\\x6d\\x58\\xb1\\x15\\x2c\\x1b\\x76\\xa5\\x9a\\x0d\\x93\\x19\\x21\\xd0\\xef\\x9a\\x9f\\xbe\\x30\\x2c\\x38\\x90\\x20\\xa6\\x20\\x27\\x85\\x7c\\x20\\x48\\xf2\\xf2\\x75\\xec\\x2e\\x8f\\x3f\\xee\\xb8\\x2f\\xd7\\xe5\\x4b\\x8a\\x31\\x6e\\x25\\x88\\xeb\\x3b\\x71\\xaa\\xb0\\x86\\x42\\x32\\x6f\\xc5\\x75\\x38\\xe9\\xee\\x3e\\xae\\xc3\\x3f\\xb9\\x51\\x99\\x5a\\x69\\xa6\\xcc\\xd0\\xfa\\x8a\\xc1\\x9c\\xe2\\xc7\\x12\\x4f\\x96\\x06\\xf1\\x66\\xd9\\x18\\xfb\\xc9\\x79\\x2f\\x5f\\x9f\\x1f\\x9f\\x87\\xd3\\x4d\\x9d\\x6b\\xd9\\xe4\\x1e\\xaf\\x7e\\xe9\\x9a\\x6c\\xc3\\xdb\\x03\\x49\\x71\\xe0\\xdc\\x43\\xc9\\x44\\x94\\xf6\\x97\\xe2\\xd5\\xf9\\x64\\xff\\x87\\x78\\x9b\\xb1\\x28\\x06\\xe2\\xa6\\x62\\xd7\\x3b\\x91\\x82\\x75\\x5b\\x2e\\x32\\x17\\x42\\xdc\\x6c\\xcb\\xbd\\x66\\xf8\\x79\\xfc\\x7d\\xdd\\x06\\x28\\x98\\x93\\x5e\\x93\\xbb\\x1a\\x4f\\x33\\x50\\x80\\x94\\x9f\\x12\\xb6\\x19\\xc8\\x33\\x60\\xcd\\xe7\\x97\\xa6\\x0a\\xea\\x70\\xfe\\x22\\x5c\\xe0\\x8e\\x89\\x3e\\x91\\x4d\\xc1\\x13\\x62\\xf5\\x91\\xe7\\xde\\xc5\\x41\\x48\\x45\\x74\\xe5\\xef\\x73\\xf6\\xca\\x1e\\x31\\x5a\\x48\\x8c\\xc2\\x0d\\x6d\\x50\\x92\\x8c\\xe1\\xb2\\x56\\x3e\\xd8\\x2e\\xf0\\xb2\\x9f\\x69\\x0d\\x2f\\xf8\\x30\\xb6\\x5c\\x1b\\x9b\\x35\\x6f\\x89\\x6c\\x26\\xbb\\x33\\x22\\x4b\\x96\\x8c\\xae\\x4c\\x7d\\x52\\x3a\\x32\\x14\\x83\\x42\\x7d\\xc0\\x0c\\x60\\x12\\x08\\x5c\\x2c\\xd3\\x04\\x98\\x24\\x39\\xfd\\x56\\xf7\\xd6\\xb8\\x87\\x2b\\x93\\x80\\x51\\xe7\\x73\\x64\\x28\\x22\\xea\\x7d\\x9b\\x07\\x3f\\x2e\\x13\\x03\\xc7\\x46\\x54\\x4d\\xe5\\xff\\x71\\x95\\x46\\xcf\\xf8\\xb8\\xe9\\x1a\\x8b\\x54\\xbe\\x71\\x99\\xa0\\x3f\\xae\\xb3\\xf2\\xa1\\x9b\\x3a\\x89\\xa5\\xee\\xf4\\xe4\\x8f\\xd3\\xe5\\xfa\\x38\\x9e\\x2f\\x87\\x63\\xd7\\x9d\\x5f\\xd6\\xbc\\x63\\x1b\\x07\\x67\\x90\\x8b\\x0b\\x9d\\xf1\\x92\\x57\\x6c\\x55\\x30\\x30\\x8b\\xbc\\xc4\\x2d\\x82\\xc8\\xc2\\xd0\\x67\\xf2\\x0c\\xd1\\xa2\\x49\\x06\\x3c\\x6c\\x01\\x02\\xf9\\x09\\x3b\\x50\\x95\\x02\\x8b\\x42\\x59\\xe3\\x18\\x85\\x65\\x90\\x83\\x50\\xf8\\x13\\xa2\\x4a\\xb4\\x69\\x72\\x9e\\xf1\\x5d\\x64\\x1e\\xb1\\x38\\xbf\\x49\\x2a\\xe4\\x09\\xe9\\xb4\\x97\\x03\\xfd\\x7e\\x22\\xb3\\x3c\\x02\\xd6\\x50\\xd8\\x52\\xc1\\x29\\x09\\xbf\\x06\\x37\\x5a\\x0e\\xd0\\x3a\\x15\\xfc\\xc3\\xfb\\x41\\xda\\x9d\\xb6\\xbe\\x40\\xcb\\xfc\\x30\\xd2\\xbf\\xab\\x76\\x5e\\x1f\\x98\\xe3\\xfd\\x7f\\x96\\x05\\xf6\\x8b\\x83\\xae\\x7c\\xe8\\xe0\\x12\\xa1\\x86\\x4f\\x89\\xfe\\x35\\x18\\x78\\x49\\x65\\x32\\xfa\\x44\\xde\\x4c\\x94\\xe6\\x2d\\x93\\x46\\x93\\x1d\\x10\\x12\\x3e\\x8a\\x1e\\x67\\x55\\x9e\\xc4\\x3e\\xfd\\x2a\\x3d\\xb0\\x1d\\x7d\\x0e\\x1c\\x63\\x0e\\x23\\xc2\\x6c\\x0e\\xf9\\x0a\\xf4\\xff\\x28\\x7f\\xf2\\x37\\x26\\x3d\\x34\\x31\\x3e\\xc0\\x3b\\x64\\xf9\\xd4\\xc0\\x41\\xe0\\xa2\\x47\\x63\\x55\\x8c\\xca\\x25\\x55\\x4c\\x0d\\x44\\x81\\x0c\\x91\\xfe\\x0f\\x9a\\x79\\x4d\\x58\\x24\\xd9\\x00\\x33\\x98\\xb3\\x92\\xaf\\xff\\x92\\x59\\xf2\\xe7\\xf1\\xc7\\xa1\\x3b\\x0e\\xc3\\x6a\\xb5\\x58\\x14\\x4e\\xb3\\xa5\\xb7\\x49\\xf2\\x22\\x7b\\x99\\x09\\xc1\\xba\\xe0\\xd3\\xb2\\xf1\\xd0\\x80\\x0d\\xb7\\x35\\x37\\xe2\\x95\\xcf\\xb3\\xcb\\xc1\\xb1\\x91\\xbc\\x7c\\x9d\\xa9\\x71\\xc3\\x9a\\x1a\\x57\\x2e\\xe0\\xd1\\xcf\\x39\\x2a\\x86\\x0c\\x64\\x86\\x62\\xf2\\x03\\x4d\\x0f\\x63\\x17\\x63\\x0c\\xa3\\x6e\\x01\\xe4\\xb8\\x82\\x29\\x71\\xcf\\xfe\\xa6\\x9a\\xf7\\xe7\\xcb\\xe3\\xeb\\x6d\\x73\\x48\\xe1\\x2c\\xec\\x6f\\xf5\\x14\\xa0\\x45\\xec\\x2d\\x68\\xd0\\xb8\\x41\\x9c\\x59\\x18\\x34\\x13\\x73\\x9f\\x51\\x19\\x8b\\x3f\\x07\\x40\\x2c\\xa5\\x6e\\xfb\\x0f\\x72\\xbd\\x49\\xf7\\x98\\xcb\\xa6\\x19\\x6e\\x96\\x02\\x96\\x5e\\x09\\x4c\\x77\\x81\\x4f\\xcc\\x19\\x1e\\x08\\xfa\\x37\\x9a\\x36\\x68\\x4e\\x64\\xdc\\x8b\\xc6\\xd5\\x3b\\x3f\\x76\\xc7\\xe1\\xd0\\x3d\\x5e\\xba\\xf5\\x2e\\x65\\xf3\\xb0\\x30\\x95\\x22\\x85\\xa7\\x6f\\xc2\\xda\\x4d\\x13\\xdc\\x50\\x09\\xe9\\x0d\\xed\\x2c\\xad\\x06\\xc9\\x2d\\xb3\\xfa\\xe5\\xd0\\x07\\x96\\x42\\x4f\\xe1\\x1f\\x0f\\x03\\xfd\\x7c\\x7c\\xee\\xfa\\x43\\x77\\xfc\\x7e\\xba\\xac\\x40\\x69\\xeb\\xf2\\x29\\x8a\\x6e\\xb2\\x19\\xf0\\xa0\\xf2\\xbc\\x57\\x70\\x58\\x91\\xad\\x14\\xbc\\xa8\\xb9\\x07\\xa9\\xea\\x35\\x08\\x87\\x43\\xf0\\xff\\xcc\\xcb\\x1f\\xf3\\xe0\\x8a\\x62\\x72\\xc1\\x01\\x50\\x65\\xdb\\xc7\\x9d\\x0d\\x07\\x57\\xf3\\x2e\\x8d\\x63\\x55\\x3c\\x01\\x61\\x77\\x2a\\xef\\xb9\\xf2\\xfe\\xae\\xf2\\x40\\xb6\\xe8\\x32\\x30\\xfa\\xb9\\xb1\\x29\\x4b\\x4a\\xf5\\x9b\\xf4\\x5b\\xc2\\xbf\\x70\\xaf\\x26\\xba\\xc5\\xe1\\x03\\x06\\xbd\\x2d\\x66\\xaf\\xf7\\xab\\xfe\\xfb\\x53\\xb7\\xac\\x32\\xbe\\xae\\x5c\\xaa\\xd1\\x0f\\x8b\\x57\\x88\\x26\\x1e\\xb2\\x14\\x0b\\x5b\\x8a\\x2c\\x39\\x51\\x35\\x24\\x98\\x45\\xc7\\x68\\x15\\x83\\xb2\\x58\\x1d\\x64\\xe9\\x62\\x7f\\x5c\\x16\\x30\\xb9\\x7c\\xc6\\xb7\\xa8\\xaa\\x66\\xec\\xda\\xa4\\x6b\\xb1\\x14\\xb3\\x80\\x29\\xea\\x38\\x85\\x31\\x0a\\xbc\\xb0\\xf0\\x32\\xe9\\x4c\\x67\\x58\\x2b\\x06\\x93\\xb1\\x09\\x0a\\x37\\xa1\\x1f\\x0a\\xf5\\x55\\xbd\\xd1\\x62\\x4a\\xaa\\x1d\\xb2\\x37\\x4b\\xfe\\xfe\\xd4\\x1d\\xbe\\x3d\\x8e\\xc7\\xaf\\x37\\x60\\xe9\\x75\\xf9\\x0c\\xc4\\x41\\xa8\\x04\\xe0\\xf4\\x8e\\x9b\\x01\\xa6\\x58\\x72\\xf8\\x30\\x56\\xaf\\xea\\xc1\\xdc\\x56\\x4d\\x61\\x92\\x7b\\x67\\xba\\xb2\\xaa\\x46\\x28\\x4c\\x00\\x43\\x0d\\x17\\xeb\\x3a\\x5c\\xa9\\xd3\\xae\\x22\\x32\\xf7\\xfa\\x25\\x1a\\xe5\\x4a\\x1a\\x80\\xfb\\x18\\x1c\\x9d\\xef\\x20\\x34\\x5a\\x03\\x37\\x64\\xe1\\x01\\x80\\x09\\x7f\\x93\\xf8\\x45\\x3d\\x92\\x04\\xae\\xde\\xb3\\xf3\\xc1\\xaa\\x00\\x6e\\xfe\\xa1\\x31\\xc9\\xc2\\x19\\xd2\\x94\\xfb\\xce\\x0b\\x45\\x68\\x7a\\xd0\\x93\\xd5\\x1c\\x79\\x60\\xb6\\xb6\\x99\\x8a\\x73\\x08\\x54\\xeb\\x8e\\xfb\\x06\\x46\\x27\\x08\\x8b\\x8c\\xe2\\xfa\\xcb\\x68\\x81\\x14\\x7a\\xd1\\x92\\x8d\\x45\\x26\\x63\\x9c\\x1c\\x2c\\x41\\x12\\x81\\xb8\\x7f\\x6d\\x67\\x82\\x2a\\x20\\x44\\x8b\\xb4\\x3a\\x62\\xdb\\xfc\\x81\\x7e\\xfb\\x71\\x39\\x7f\\x1d\\x4e\\xdf\\x6f\\xbb\\x6d\\x2a\\x9e\\xfc\\x1a\\x48\\x22\\x64\\x5e\\x54\\x09\\x17\\x08\\x7b\\xaa\\x97\\x06\\x5c\\x76\\x27\\xf3\\x2f\\xb1\\x69\\x83\\xee\\x84\\x0e\\x2a\\x38\\xde\\x62\\x65\\x63\\x8a\\x81\\x5a\\x36\\x20\\x81\\x37\\x07\\x7a\\x33\\x72\\x20\\xb3\\xae\\xf6\\xa7\\xe7\\xfe\\x4c\\xdc\\x9f\\x79\\xdd\\x9f\\xe0\\x92\\x14\\x35\\xbd\\x05\\xc9\\x12\\x35\\x18\\x66\\x80\\xac\\xc9\\xfe\\x35\\x8c\\x3e\\x50\\x74\\xaf\\xc6\\xfb\\x8e\\x6d\\x2f\\xce\\x81\\xc1\\x1b\\x92\\xa1\\xcb\\x61\\x6a\\x8f\\xb1\\x07\\x15\\x06\\xa3\\x1e\\xa8\\x6a\\xe9\\x61\\xd9\\x63\\x7a\\xd5\\x63\\x9a\\x7b\\x8c\\x66\\x9b\\x9d\\xe5\\x92\\x79\\xbf\\x5e\\x7e\\x7c\\x3b\\xae\\xa9\\xdd\\xd6\\xe5\\x93\\xe7\\xc1\\xba\\x69\\x46\\x91\\x79\\x10\\x8b\\x33\\xf2\\x36\\x39\\x7f\\xb3\\x2a\\xff\\xff\\x5b\\xa3\\xbb\\xcb\\x8a\\x1d\\x8e\\xc3\\xf3\\x5b\\x95\\xe6\\x63\\x93\\x11\\xe5\\x5d\\xda\\x8e\\xa9\\x97\\xf2\\x79\\xae\\xb3\\xb2\\xc1\\x03\\xcb\\xa4\\xba\\x12\\x08\\xb3\\xa5\\xc0\\xf5\\x4e\\x9f\\x28\\xe1\\x33\\x64\\xa3\\x10\\xf5\\xd2\\x30\\x2a\\xcc\\xfc\\x40\\x9f\\x3b\\x93\\xe1\\xf3\\xf1\\xeb\\xa2\\xb6\\xf8\\xb6\\xa0\\x79\\x4b\\xe0\\x0d\\x04\\x68\\x90\\xcc\\x1e\\xe0\\x6f\\xa9\\xdb\\xfe\\x51\\xba\\xb7\\x9d\\xc7\\x3f\\xbc\\x3c\\xb1\\x6a\\xe7\\x6a\\x32\\xbf\\x3d\\x30\\x21\\x0c\\xee\\x05\\x30\\xc9\\x14\\xd8\\x50\\xe5\\xf4\\x79\\x8b\\x44\\x9e\\x8a\\xf7\\xe4\\x37\\x11\\x5a\\x12\\xf5\\xcf\\x25\\xb5\\xbe\\x4e\\x6f\\xc9\\x6f\\xde\\x4b\\x85\\xa2\\xfd\\x37\\x44\\x41\\xdf\\x69\\x73\\xee\\x21\\x0e\\x81\\x02\\x4f\\x8b\\x5d\\xf9\\xc3\\xbb\\x5a\\x9d\\xd6\\x6c\\x8a\\x7c\\x16\\xbb\\xd1\\x22\\xd6\\xbc\\xaf\\xad\\x49\\x27\\x6c\\xa9\\x8e\\x9a\\x0d\\x51\\xcf\\x9d\\x3e\\x1d\\x56\\x34\\x53\\xb5\\x60\\xf6\\x08\\x73\\xda\\x74\\xc5\\xbf\\x84\\x28\\xb9\\xc6\\x3c\\xbb\\x6f\\x34\\x0e\\xb8\\x87\\xde\\xb3\\x4b\\xdf\\x1a\\x93\\xd5\\x2e\\xfd\\xe4\\x98\\x1c\\x4e\\xcf\\x87\\xe3\\xd3\\xb7\\xcb\\xf9\\xf1\\xdb\\x5d\\x3d\\xe6\\x03\\x5c\\x1f\\x50\\x32\\xa4\\x2b\\xfb\\x49\\x8d\\x66\\xa4\\xbb\\x33\\x5a\\x90\\xe3\\xee\\xca\\xfa\\xf8\\x57\\x32\\x23\\xc1\\xa7\\x96\\x3d\\xb8\\x34\\xef\\xb3\\x14\\xa6\\xd9\\xf2\\x9e\\x74\\x4f\\x32\\xde\\x37\\xb8\\xfc\\xf8\\x27\\x6b\\x4a\\xba\\x7e\\x0f\\xbf\\x22\\x35\\xf9\\x7e\\xec\\xee\\xab\\x87\\xc2\\x55\\x5a\\x38\\x57\\xcd\\xd6\\xaa\\x59\\x2d\\x00\\x7d\\x33\\xb1\\x16\\x57\\xf2\\xe1\\x71\\xa6\\x1d\\x9e\\x99\\x31\\x26\\xd6\\xe2\\x71\\x62\\x2b\\x66\\x7e\\x63\\x57\\x02\\xcb\\x67\\xdc\\x11\\x37\\x5e\\x1b\\xaf\\xb9\\xb3\\x8b\\xba\\xa3\\x70\\x64\\x2a\\xb4\\x3b\\x1f\\xd4\\x95\\x7f\\xb2\\x16\\x38\\x20\\x63\\x7c\\xa7\\x25\\x7e\\x3d\\xfc\\x72\\xec\\x56\\xee\\xea\\x45\\xd9\\x9f\\x17\\x9c\\x33\\xec\\x7a\\x7b\\x9f\\x01\\xfa\\x7d\\x19\\x45\\x51\\x9c\\xfe\\xf3\\x97\\xf9\\x84\\x48\\xdd\\xc3\\xbf\\x51\\x3b\\xf0\\xf9\\xf8\\x83\\xde\\xbe\\xc3\\x8f\\x61\\xe5\\x5a\\x5f\\x17\\x4f\\x2b\\xc5\\x9b\\x26\\x49\\x74\\x6f\\x85\\x53\\x10\\x2e\\x46\\xef\\x42\\xb3\\xbe\\x01\\x4e\\xbd\\x8f\\x01\\x24\\x86\\x6c\\xf5\\x30\\x9b\\xab\\x57\\x91\\x51\\xe3\\x4c\\xb7\\x4f\\xb3\\x76\\x48\\xf7\\x56\\x0b\\xa0\\x48\\x50\\x65\\xd3\\xa0\\x27\\xc1\\xd0\\x08\\xfc\\x07\\xcb\\x84\\xd8\\x37\\x64\\x42\\xae\\x13\\xd6\\x68\\x63\\xa2\\x80\\xb3\\x65\\x4e\\x9e\\x5d\\x09\\x73\\xa4\\x29\\xc7\\x51\\x64\\x45\\x02\\x93\\xe3\\x0a\\x72\\x22\\x32\\xbf\\xc8\\x4e\\x3b\\x9f\\x2e\\x97\\xe3\\xe3\\x12\\x2a\\x33\\x95\\xf0\\x0b\\x51\\x0a\\x32\\xae\\xab\\x1a\\x78\\xdf\\xf8\\xa4\\x99\\x63\\x24\\x19\\x64\\xed\\x61\\xcb\\x4f\\xc6\\xf1\\xc0\\x54\\xd2\\x3b\\xb7\\xfb\\xef\\xe7\\xc3\\x2f\\x8f\\xa7\\xe1\\xdb\\xea\\x2d\\x5c\\x96\\xf2\\x7c\\x14\\x8a\\x9a\\xf2\\x84\\xc5\\x09\\x88\\x3f\\xea\\x67\\xf4\\x3d\\x12\\x31\\x03\\x23\\xba\\x6c\\xaa\\xd4\\xfd\\xa0\\x74\\x0c\\xec\\x3a\\x64\\x1d\\x1f\\x9d\\xf6\\xb2\\x8c\\xf9\\xfe\\xe7\\xcb\\xf7\\xe3\\xf3\\xdd\\x53\\x49\\xe9\\xac\\xba\\x94\\x3d\\x48\\xb1\\x10\\xdd\\x80\\x1a\\x95\\x76\\xca\\x4a\\xd6\\x62\\xe3\\x81\\x7b\\x1f\\x8c\\x36\\x92\\xbd\\x3e\\x30\\x27\\x32\\x06\\x80\\xc7\\x39\\x74\\x0a\\xa8\\x86\\x00\\x67\\xf1\\x05\\x80\\x50\\x21\\x7e\\x24\\x4b\\x71\\xf7\\x49\\xd7\\x39\\xd1\\x53\\xc9\\x7f\\x7e\\x5e\\x34\\x55\\xe5\\x65\\x85\\x9f\\x9b\\x4a\\xc4\\x0d\\x49\\x06\\xdd\\x60\\x83\\x56\\x16\\x0e\\x4e\\x33\\x34\\x06\\xd1\\xab\\x4c\\x83\\xc2\\x54\\x31\\x2a\\x4e\\xb0\\xb2\\x6d\\x49\\x0e\\x38\\xa6\\x56\\xbb\\x10\\xd6\\x96\\xad\\xb7\\x03\\x3b\\x8d\\x27\\x73\\xcf\\x7b\\xda\\x80\\x4e\\x15\\xa8\\xc9\\x72\\x6b\\xf6\\x45\\x1a\\x6d\\x3e\\xf7\\x11\\x99\\x10\\x74\\x93\\xa0\\xaf\\xb8\\x2f\\xed\\x8c\\x7d\\x84\\x78\\xb0\\x57\\x92\\x43\\xca\\x69\\x1e\\x43\\xe3\\x02\\xfd\\x01\\x27\\x80\\x6f\\x63\\xf2\\x45\\xf9\\xd6\\x14\\x0b\\x30\\x47\\x68\\xb3\\x0e\\x45\\x99\\xd0\\x3a\\x4b\\x53\\xc3\\x7e\\x24\\xfc\\xb9\\x3f\\x1d\\x9f\\x4f\\x2b\\x54\\xfc\\x5c\\xb4\\x4c\\xbf\\xbc\\xed\\x55\\x21\\x5a\\xb8\\x85\\x44\\x22\\x3e\\x59\\xc9\\x7a\\xd6\\x99\\x59\\x1b\\x17\\x41\\x9a\\xd1\\xfd\\x45\\xb0\\x52\\xdc\\x5f\\x04\\xde\\x7c\\xcf\\x79\\x9f\\x8e\\x89\\x48\\x96\\xa7\\x40\\x67\\x63\\xf9\\x9d\\x77\\x84\\xfd\\x74\\x85\\x2b\\x8b\\x62\\xcd\\xdf\\x76\\x5a\\xe6\\xe5\\xfb\\xd7\\xc3\\xb7\\xf3\\xcf\\xd5\\x6c\\xb6\\x28\\x9c\\x2c\\x1d\\x7a\\xa6\\x5c\\x41\\xc0\\x99\\x31\\xc0\\xf0\\xb1\\xbe\\xb9\\x47\\x32\\xae\\x3a\\x0b\\xc3\\x2c\\x9c\\x04\\x6c\\x85\\x97\\xec\\x13\\xd6\\x97\\xed\\x9a\\xa8\\x80\\xae\\xc5\\xf2\\xa8\\xac\\xbd\\xa6\\xc1\\x1a\\x45\\x1b\\x69\\xe3\\xc2\\x5b\\x3c\\x46\\x7d\\x63\\xae\\xe0\\x83\\x8d\\xca\\x08\\x12\\x25\\x0e\\x60\\x9f\\xd1\\x1d\\x28\\xf8\\x2d\\x43\\x56\\x8a\\xb2\\xb1\\xdf\\x43\\x9a\\x70\\x8d\\x57\\xd9\\x9a\\x73\\x11\\x37\\x41\\x31\\x90\\x48\\x80\\xa5\\xdd\\x23\\xc9\\xac\\x63\\x51\\x4c\\x33\\x03\\x6c\\xe2\\x00\\x37\\x06\\x3d\\x02\\x8e\\x04\\x71\\x90\\x4a\\x02\\xa5\\x8d\\x3d\\x6b\\x19\\x6e\\x99\\xe2\\x46\\xb4\\x0a\\x82\\xb2\\x56\\x01\\x36\\x38\\x50\\x3b\\x51\\x33\\xb1\\x88\\x6e\\x17\\xe9\\x76\\x05\\xcd\\x58\\x98\\x26\\x2d\\x49\\x8a\\x4c\\xee\\xa9\\xa1\\xee\\xf7\\xea\\xd8\\x9d\\xc8\\x9c\\xbe\\xe8\\xbb\\xfd\\xa6\\x18\\x0f\\x2f\\x3f\\x36\\x47\\xc5\\xe2\\x00\\x37\\x4b\\xd6\\x6f\\x48\\xa2\\x00\\xa5\\x01\\x01\\x81\\x09\\x7c\\x54\\x58\\x1a\\x58\\x88\\xe3\\xc2\\x80\\x04\\xaf\\xd4\\x35\\x1e\\xe8\\x3a\\xc4\\x9b\\x51\\xe0\\xdb\\x12\\x10\\xa2\\xf1\\xad\\xcb\\x86\\x66\\xa7\\x56\\xeb\\x6c\\x94\\xcf\\x6d\\x0c\\x99\\xf5\\x15\\xe8\\x4d\\x40\\x92\\xf6\\xbd\\xcf\\x99\\xa6\\x32\\xaf\\x0c\\x13\\xab\\x9a\\xc1\\x83\\x32\\xbc\\x0b\\x60\\x2b\\x8a\\xd4\\xe4\\x64\\x03\\xeb\\xde\\x78\\xc9\\x62\\x01\\xe0\\x0f\\xbf\\x9a\\x81\\xdb\\x70\\xea\\x0d\\x0d\\x4c\\x05\\xe3\\x58\\xee\\xd6\\x88\\x1f\\xd2\\x56\\xc3\\x5b\\xf7\\x8d\\xf1\\x9b\\xf2\\x25\\x57\\xae\\x7b\\x61\\x7c\\x54\\x51\\xd6\\x0d\\x6c\\x5b\\x84\\x01\\xb1\\x69\\x40\\x09\\x3d\\x14\\x71\\x81\\x27\\x44\\x2b\\x48\\xad\\x9b\\x5a\\xed\\xa6\\xd6\\xbb\\xa9\\x15\\xc7\\x88\\x4a\\xae\\xa7\\x9a\\xdf\\xb9\\xd0\\xdf\\xef\\xd5\\xc7\\xef\\xa7\\xc3\\xf3\\xf9\\x30\\x9c\\x8e\\xd7\\xd5\\x62\\xb1\\x2e\\x17\\xd2\\x45\\x90\\x68\\xd0\\x1a\\x0b\\x27\\x6f\\x01\\x44\\xca\\xbf\\xd6\\x70\\xd1\\x9f\\xdc\\xd6\\x18\\x57\\xfe\\x82\\xab\\x78\\x0d\\x3a\\xea\\xc1\\x57\\x0d\\xa2\\x8a\\xd3\\xbf\\x17\\x18\\x40\\xf2\\xe3\\x86\\xbe\\x80\\x61\\x34\\x0f\\xe4\\x8c\\x3f\\xf5\\x4b\\x93\\x34\\xdd\\x97\\x4c\\x5d\\x8f\\xec\\x49\\xa8\\x7d\\xd0\\x1e\\xc4\\xf6\\xd6\\x79\\x06\\x35\\xc0\\xdb\\x8f\\xf5\\x6c\\x07\\x40\\x41\\x5d\\x30\\x1c\\x7f\\x8c\\xb7\\xdd\\x22\\x65\\x93\\x11\\xf5\\x2f\\x93\\xd2\\xbf\\x53\\xd2\\x77\\x3e\\x2a\\xe7\\x63\\xc7\\x2c\\x13\\x1c\\x3c\\x70\\x2c\\xde\\x9b\\xf5\\xd8\\x18\\xf1\\xd2\\x82\\xa7\\x57\\x0f\\x45\\xab\\xa2\\xc1\\xb4\\xef\\x68\\xda\\xc2\\xb4\\xe9\\x54\\x01\\xde\\x77\\xbf\\xb9\\x1e\\x9f\\xee\\x5a\\xeb\\x71\\x56\\x95\\x29\\x48\\xa7\\xde\\xce\\xfb\\x11\\x31\\x63\\xbc\\xb1\\x34\\x21\\x30\\xc7\\x73\\x8a\\xac\\x06\\x0c\\xd5\\x17\\xa6\\x7f\\xd8\\xfc\\xf5\\x9a\\x66\\x5a\\xe6\\x99\\xcc\\xf3\\x4c\\x13\\x82\\x0a\\x10\\x3e\\x5e\\xce\\x21\\xaa\\xb1\\xa3\\x28\\x1d\\x1b\\x65\\x87\\xa6\\xd0\\xb0\\x48\\xef\\xde\\xed\\x3d\\x58\\x86\\xf8\\x4e\\xa1\\x54\\x9c\\x01\\x75\\x51\\x8d\\x19\\x4a\\x52\\x25\\x3d\\x88\\x74\\x73\\x15\\xda\\xbe\\x47\\xb8\\xad\\x85\\x67\\x79\\xbe\\x63\\x7e\\x22\\x3c\\xde\\x00\\x4e\\x4c\\xdf\\x39\\xc5\\xea\\xc6\\xd4\\x3c\\xe3\\x7c\\x93\\x14\\x55\\x0a\\x72\\x0f\\xc0\\x9f\\xed\\x74\\x8f\\x3f\\x26\\x6e\\x4b\\xdd\\x76\\xb9\\xe9\\xc6\\xcb\\x7a\\xc0\\xff\\x75\\x7c\\x36\\x5e\\x47\\xe5\\x00\\x19\\x47\\x30\\x4b\\x08\\x49\\x98\\xea\\xa3\\x74\\x95\\xd7\\xf4\\xd3\\xac\\x36\\x9d\\xa7\\xdd\\x67\\x66\\x31\\x05\\xc3\\x7d\\x05\\x68\\x26\\x78\\x4d\\x65\\x6e\\x36\\x08\\x04\\x35\\x4e\\x8b\\xd2\\xa7\\x71\\xf7\\xa1\\x1b\\x58\\x52\\xc5\\x3c\\xcc\\x04\\x3f\\xcc\\x42\\xb3\\xdf\\x82\\x07\\xa3\\x6f\\x1b\\x11\\xcc\\xb0\\xe6\\xbf\\xe8\\x5f\\xfd\\x5f\\x53\\x44\\x98\\x36\\xd6\\xfa\\x1a\\x78\\x93\\xd1\\x9a\\x98\\x68\\xb6\\x6b\\x6d\\xb6\\xb6\\x28\\xaf\\x5b\\xe3\\x12\\x4b\\x2d\\x04\\xd7\\x35\\x64\\x5b\\x07\\xcb\\xa0\\xfa\\x80\\xf5\\x3a\\xb4\\x56\\x7b\\x83\\x30\\x1a\\xbd\\xd5\\xc0\\x71\\xd7\\x74\\x73\\xa1\\x65\\xe8\\x1a\\x53\\x5a\\x07\\xce\\x74\\xd3\\x46\\xea\\x42\\x0c\\x6a\\xe7\\xda\\x52\\x26\\x11\\xa0\\x78\\x15\\x29\\xcd\\x29\\x1f\\x9d\\x66\\x74\\x37\\xf2\\xea\\x86\\x55\\xbc\\x0b\\x6d\\x28\\xc6\\x63\\xc9\\x6d\\x4d\\xa6\\xc7\\xf0\\xad\\x49\\x9a\\xd7\\x5f\\x38\\x97\\x68\\xdb\\xd0\\x7a\\xeb\\x22\\xf2\\xe0\\xdb\\x68\\xa2\\x51\\xa1\\xb5\\x8e\\xea\\x82\\xa0\\xdb\\x43\\xe7\\x14\\xb4\\x98\\x2c\\xbd\\x9f\\x66\\x44\\x04\\xc5\\x22\\xab\\xcb\\x04\\xc6\\x7b\\x31\\x58\\xdc\\x50\\xbb\\xe8\\x36\\xe6\\xe8\\x21\\x5e\\x94\\xa1\\x26\\xd2\\xd9\\xd0\\x16\\x07\\x34\\xa0\\x4f\\x6d\\xf6\\xd9\\xab\\x26\\x53\\xdd\\x7c\\x54\\x11\\x8f\\x4d\\x0f\\x60\\xa1\\xd9\\x63\\x4a\\x1b\\xa2\\xf6\\x80\\xe3\\xf9\\xdc\\x06\\x5a\\xa9\\x81\\x6d\\x0f\\x93\\x95\\xe8\\xda\\xa2\\x13\\x9f\\x1a\\x3d\\xc2\\x69\\x80\\xc0\\x5b\\x16\\x42\\x6a\\xa2\\x6d\\x75\\x31\\xfc\\x32\\x3a\\xe5\\x63\\xab\\x53\\xce\\xf8\\xdb\\x18\\x7d\\x05\\xe5\\xb5\\x8b\\xca\\xe6\\xd2\\x35\\x26\\xb6\\xce\\x64\\xf8\\x39\\xa9\\x21\\x62\\x1b\\x53\\x16\\xc6\\xc4\\xc6\\x3a\\x5e\\xc8\\x7c\\x1b\\x7c\\x4c\\x0a\\x20\\x79\\xe4\\x80\\x84\\x36\\x58\\x24\\x6a\\x34\\x56\\x77\\x2c\\xd7\\x01\\x40\\x3f\\x95\\x84\\x8e\\xb5\\xed\\xf1\\x37\\x88\\xd8\\xf2\\x88\\x40\\xa6\\x62\\x19\\xe8\\xd1\\x88\\x08\\x3b\\x0c\\xdc\\x91\\x95\\xf3\\x43\\x95\\xcd\\x72\\xba\\x2d\\xd8\\x84\\xd1\\x8e\\xb1\\x80\\x14\\xd1\\xb7\\x9a\\x3f\\x21\\xc9\\x5e\\xcd\\x3f\\x96\\x8a\\xa7\\xa7\\xf4\\x5d\\xe3\\x02\\xd9\\x3a\\x70\\x51\\x46\\xd7\\xfa\\x90\\xd1\\xc3\\x9e\\xc6\\x17\\xbd\\x95\\xae\\xd0\\x2c\\x9a\\x90\\x4d\\x00\\x66\\x1e\\x6b\\x7b\\x99\\xcf\\x4d\\x6b\\x73\\xce\\xca\\xa4\\x56\\xa7\\x28\\x7b\\x3f\\x1a\\x7a\\xfa\\xa1\\x33\\xb9\\x8d\\x25\\xc2\\xa8\\x70\\x2a\\xb4\\xb9\\x38\\x9d\\x21\\x96\\x03\\xc3\\xda\\xb5\\x01\\x3b\\xdb\\xdc\\x06\\x63\\x9d\\x57\\x26\\xb6\\x59\\x63\\x76\\xa0\\x77\\x94\\x96\\xf9\\x36\\x41\\xaf\\x98\\xaa\\x11\\x41\\x64\\xd4\\x16\\x9d\\xb3\\x2a\\xad\\x2e\\x3a\\x89\\x7a\\xab\\xef\\x24\\x61\\x04\\xb6\\x9b\\xa5\\xa9\\xb1\\xa3\\x41\\xaa\\x83\\x8f\\x2a\\xb5\\x2e\\x96\\xc4\\x92\\x18\\x26\\xb7\\x21\\x81\\x07\\xb3\\x66\\xa3\\xa4\\x36\\x44\\x9b\\x69\\xa8\\xb9\\x94\\x68\\xe7\\xdb\\xa6\\x62\\x03\\xcd\\x40\\xc1\\x76\\x30\\x14\\xb3\\x82\\xe3\\xda\\x77\\x5e\\xb7\\xc5\\x01\\x52\\x9f\\x02\\xc6\\x8c\\xa1\\xbd\\x78\\x42\\x34\\x9b\\x66\\x0b\\x96\\x65\\x68\\x6d\\x02\\x78\\xa3\\xcd\\xde\\x21\\x2d\\xa4\\xf5\\x51\\x73\\x04\\xdc\\x22\\x07\\x51\\xe0\\xf8\\xbc\\xaf\\x7e\\xfd\\xa2\\x95\\xf3\\x09\\xae\\x15\\x97\\xfa\\xb8\\x60\\x48\\x25\\x4b\\x1c\\xfe\\x33\\x7b\\x75\\x3b\\x7b\\x03\\x4c\\x2e\\x6e\\x73\\xba\\x71\\xff\\x35\\x81\\x8a\\xbc\\x0c\\xd5\\xd0\\x16\\xaf\\x39\\xb1\\x84\\x3a\\x96\\x7a\\x00\\xd3\\x07\\x9c\\x3b\\x3c\\x05\\xb4\\x31\\x5b\\x6a\\x63\\xa7\\x4b\\xc0\\xce\\xa9\\x4d\\xd6\\x65\\x2c\\x7a\\xd3\\x50\\x05\\xd3\\x26\\x24\\x37\\x65\\xa8\\x82\\xde\\x0a\\x3e\\xfe\\xbf\\x63\\xa8\\x5a\\xde\\x07\\xe0\\x00\\x86\\xaa\\x2b\\x01\\xaf\\x66\\xb4\\x6d\\x24\\x6b\\xcf\\xb7\\x29\\x82\\x49\\xd9\\x29\\x57\\x1e\\x36\\x86\\x2a\\xe7\\xac\\xe9\\xd6\\x5b\\x9a\\x30\\x73\\x1b\\x1c\\x2d\\x10\\x8e\\x69\\x6d\\x9c\\xfe\\x93\\x23\\x35\\x08\\x2f\\xb7\\x87\\x39\\x1a\\x69\\xfb\\xd1\\x66\\xba\\x40\\x9b\\xa2\\x09\\x85\\x47\\x6e\\x40\\x6c\\xa2\\x75\\x5a\\x3b\\x1e\\xb9\\xd4\\x1f\\xba\\x0d\\x36\\x3b\\x95\\x5a\\x6d\\x32\\xbb\\x80\\x94\\x29\\xad\\x0f\\x96\\x33\\x51\\x3f\\x3b\\x4e\\x1f\\x76\\x07\\x2a\\x57\\x47\\x1b\\xd4\\xc6\\xea\\x40\\xcd\\xd3\\x3a\\x6d\\xf8\\x1d\\x99\\x46\\x69\\x91\\x57\\x0a\\xd1\\xb4\\xa0\\x6c\\x28\\x9d\\xf5\\x6d\\xb2\\x64\\x43\\x94\\xd6\\x26\\x96\\xf5\\x69\\x6c\\x68\\x7d\\xe6\\x35\\x3b\\x70\\xf8\\x95\\xd6\\x89\\x42\\x03\\xa0\\xcd\\xc1\\x17\\xb8\\xab\\xda\\xe8\\x69\\x6e\\x43\\xd8\\x03\\xcc\\x5e\\xad\\x76\\x20\\x28\\xb1\\xad\\x76\\x3a\\xa0\\x75\\x7c\\x70\\xd2\\xcf\\x91\\xc7\\x59\\xe3\\x63\\x9b\\x53\\x02\\x8b\\x50\\xf6\\xca\\x86\\xd6\\x82\\xac\\x3b\\x7b\\x95\\x6c\\xef\\x65\\x5a\\x35\\x6d\\xd0\\x64\\xe3\\xb4\\xc6\\xc3\\x0f\\x65\\xdb\\x1c\\x0d\\x8f\\x4f\\x9b\\xbb\\xd4\\xba\\x60\\x80\\x86\\x6d\\x83\\x71\\xe0\\x36\\x6f\\x83\\x03\\x91\\x91\\x64\\x43\\xe9\\xce\\xd2\\xb4\\x15\\x02\\x7b\\x08\\xe9\\xd1\\x12\\xf0\\x43\\x8a\\x85\\xcd\\x73\\x1b\\x91\\xb8\\x94\\x5a\\x1d\\xa3\\x47\\x62\\xa1\\x8f\\xca\\xd3\\x36\\x25\\x5e\\x9d\\xeb\\x6d\\x40\\x22\\x94\\x4e\\x18\\x39\\xa1\\x35\\x3a\\x3b\\x95\\x5b\\x9b\\x74\\xcc\\x0a\\x40\\x85\\x0e\\xee\\x03\\x80\\xbc\\x95\\x41\\x6f\\xfa\\x36\\x67\\xf4\\x8d\\x6d\\x7d\\x48\\x86\\x27\\xcb\\x8c\\xf4\\x37\\x93\\xe9\\x5d\\xc3\\x1a\\x5c\\xda\\x84\\xb6\\x49\\x98\\x42\\x40\\x4c\\x4e\\xed\\xf2\\x70\\x9f\\xf7\\x55\\x7d\\xf2\\xce\\xb7\\x0e\\xe0\\x08\\xdb\\x96\\xa0\\x82\\x6b\\x4b\\x56\\x08\\x1d\\x77\\x98\\x72\\xac\\x51\\x01\\x83\\xbb\\xf3\\xb9\\x4d\\x06\\xb7\\xc9\\x58\\xa1\\x5a\\x9f\\x8a\\xc3\\xdf\\x49\\xe4\\x74\\xa9\\x53\\xc9\\x7e\\xa2\\xe5\\x35\\xab\\xc6\\x87\\x16\\xfe\\x49\\xc0\\x87\\xdf\\xc7\\x84\\xf1\\xe4\\xb3\\xa6\\x1c\\x5a\\x94\\x2d\\x0d\\x49\\x9b\\x38\\x86\\x96\\x69\\x74\\x22\\x47\\x9c\\x16\\x6c\\xed\\x3b\\x96\\x75\\xb1\\xf2\\xda\\x73\\x4c\\x43\\x60\\x6e\\xac\\xc2\\x7d\\x63\\x47\\x46\\xc6\\xda\\xba\\x04\\xa6\\xd1\\xb2\\xc0\\x2c\\x79\\x15\\x3c\\xf3\\x02\\x63\\x64\\xb1\\xa8\\x38\\x9b\\x95\\x8e\\xf6\\x91\\x9a\\xed\\xa5\\xb5\\x39\\xc9\\x78\\x74\\x16\\x87\\x44\\xe2\\x40\\x1c\\x9a\\x50\\x54\\x28\\x6c\\x2a\\x3a\\x63\\xae\\x8e\\x51\\xa0\\xc9\\x4d\\x46\\xe2\\x9d\\x8d\\x08\\xeb\\xd6\\x9b\\xca\\x57\\xf3\\x30\\x11\\x20\\xbf\\x69\\xed\\xba\\xb2\\x60\\xcc\\xe1\\xc7\\x9c\\x80\\x69\\x0e\\xf9\\x01\\x20\\x42\\xb5\\xf4\\x66\\xb3\\x20\\xf9\\xad\\xd9\\x0d\\xda\\x3f\\xcd\\xa4\\x7f\\x89\\xc3\\x7a\\x76\\x02\\x85\\x39\\x4d\\x3f\\x85\\x9c\\x11\\xc2\\x37\\x6e\\x69\\x28\\x47\\x31\\x94\\xf7\\xb6\\xc5\\xcf\\xc3\\x7a\\x93\\xf7\\x3c\\x2c\\x3d\\x14\\x88\\x60\\x94\\x1a\\xc1\\x30\\x77\\x11\\x0c\\xb3\\x1f\\xc1\\x38\\xaf\\xc2\\xbb\\xe7\\x65\\x5c\\x77\\x0b\\x1a\\x21\\xac\\x14\\xb7\\x62\\xa5\\x3a\\x6c\\x61\\x0c\\xe2\\xe4\\x21\\x86\\xd8\\xaa\\xf8\\xfa\\x5f\\x97\\x94\\x94\\xa5\\xa6\\x14\\x49\\xb9\\xb8\\x8e\\x57\\xe7\\xbf\\xff\\xfc\\xdf\\xd6\\x71\\x3e\\xfe\\x3e\\xb1\\x29\\xd8\\x52\\x58\\xad\\x0b\\x39\\x25\\xf4\\x17\\x72\\x4a\\x26\\x36\\x73\\xe7\\x2b\\xc2\\xc0\\xf9\\xbf\\x80\\xcd\\xfc\\x9e\\xae\\x6e\\x82\\xbc\\x2c\\xb5\\xbe\\x90\\xbc\\x5e\\x9b\\x4a\\x9c\\xd9\\xf2\\x6d\\xcf\\x87\\x75\\x5e\\xe9\\x96\\xf0\\xd7\\x89\\xe7\\x93\\x63\\x2c\\x21\\x32\\x5a\\x8d\\x25\\x2e\\x1a\\x63\\x0d\\x23\\xcd\\x12\\x1b\\xbb\\xc6\\x66\\x29\\x07\\x0a\\x6d\\xfc\\x04\\x28\\x8d\\xdf\\x3e\\x43\\x33\\xbd\\x01\\x2f\\xd6\\x52\\xa5\\x74\\xbc\\x85\\x6d\\x8e\\x8c\\xaa\\xab\\x88\\x51\\x08\\x9b\\xde\\xc3\\x47\\xf1\\x3e\\xbf\\x05\\x1f\\x1d\\x57\\x3e\\x1c\\x29\\xba\\x01\\xb2\\x3e\\x8c\\xb3\\x27\\x48\\xed\\xd1\\xf9\\x3f\\x9f\\x9f\\x8e\\xc3\\xe3\\xf3\\x7a\\xc8\\xd4\\x22\\x81\\x83\\x82\\x10\\xad\\xa3\\xed\\xbd\\xa3\\xad\\x1e\\x6d\\x6a\\xc0\\xb3\\x76\\x6d\\xac\\x65\\x8f\\xa9\\xcb\\xfc\\xfa\\x07\\x85\\xf0\\xae\\x01\\xb2\\x92\\x75\\x3c\\x13\\x9f\\x65\\x04\\x74\\x94\\x53\\x67\\xad\\x42\\xbf\\x1b\\x68\\x17\\x5a\\xdd\\x37\\xd1\\x5e\\x1b\\x2b\\x52\\xf1\\x18\\xe9\\xb8\\x2e\\x92\\x84\\xd9\\xa5\\xc0\\xd1\\x20\\xdc\\xb5\\xe6\\xc1\\x47\\xc7\\xa7\\x59\\xf8\\x8a\\xd9\\x69\\x6a\\x18\\x63\\x8a\\x13\\xeb\\x0d\\xbd\\x0d\\x74\\xf1\\x3e\\x5a\\xe6\\x09\\xa3\\x81\\xc8\\x82\\x24\\xb8\\x39\\x4f\\xa9\\x39\\x5d\\x9d\\xcb\\x0f\\x1d\\x28\\xdb\\x61\\x30\\x86\\xba\\x15\\x43\\xcf\\xc7\\xea\\x3d\\x80\\xb7\\x01\\x05\\xff\\x78\\x1c\\xff\\xfc\\xd2\\xf5\\x87\\xe3\\x8f\\x55\\x38\\x62\\x2e\\x93\\x49\\xca\\x2a\\x93\\x5c\\xc7\\xd0\\x53\\xa1\\x10\\xc0\\x0e\\x8f\\x66\\x8f\\x01\\x8e\\x6a\\x03\\x1a\\x49\\x76\\x5a\\x1b\\x01\\x20\\x63\\x7d\\xa2\\xe9\\xc0\\x07\\x32\\x78\\x99\\xd9\\x84\\x97\\xc0\\x32\\x48\\x00\\x3c\\x0e\\xec\\x98\\xf7\\x8a\\xb6\\xc4\\xd4\\xcf\\x49\\xa5\\x0e\\x14\\xd8\\x8a\\xf5\\x1e\\xcd\\x00\\x96\\xd6\\x70\\xb5\\x96\\x96\\x13\\x32\\x24\\xdf\\x82\\x59\\xb0\\x8f\\x03\\x57\\xd3\\xd5\\x33\\xa5\\x9a\\x29\\x90\\x6a\\x41\\xd2\\x2f\\x84\\xdd\\x9e\\x3f\\x90\\x49\\x07\\x69\\x6a\\x55\\x22\\xff\\xf7\\x30\\x92\\x9d\\xc7\\x05\\x4d\\x89\\x13\\x24\\x39\\xb2\\x02\\xa6\\x07\\x79\\xd6\\x15\\x3f\\x84\\x6b\\xbe\\xa6\\x57\\x29\\xd0\\x5e\\xba\\x25\\x4a\\xe6\\xda\\xe4\\x9d\\x68\\xe1\\xf9\\xf7\\x55\\xa4\\x10\\x5f\\x57\\x0c\\xaa\\x02\\x84\\x0e\\xcc\\x3e\\x3b\\xff\\x33\\x82\\x13\\x86\\x8b\\x91\\x5f\\xd6\\x43\\x47\\xbd\\xfe\\xac\\xa6\\x2d\\x9a\\xa4\\xea\\x4f\\xe9\\x47\\x81\\xb6\\xf9\\x9c\\x8e\\x06\\x09\\xb1\\xd5\\x6f\\x98\\x84\\x0f\\x89\\x6c\\x4e\\xcd\\xf7\\xa9\\xf7\\xa8\\xb7\\xce\\xd7\\xd5\\xaf\\x00\\x88\\x90\\x1f\\xd4\\xdb\\xe0\\x74\\xb9\\x17\\xfd\\xac\\xc7\\x8d\\xde\\x6d\\x88\\xcb\\xb1\\xfb\\xed\\xd0\\xf5\\xc7\\xa7\\x5f\\xd7\\x00\\xa0\\x75\\xb9\\x8c\\xc7\\xa4\\xbc\\x4e\\x9d\\x90\\xa2\\xd3\\x0e\\xba\\x58\\x7c\\x98\\x60\\xd8\\x7c\\xce\\xea\\xf3\\xef\\x49\\x0f\\x3a\\x94\\x14\\x3b\\x30\\xf7\\x4a\\xc6\\xa3\\x62\\x06\\x9e\\x8f\\x38\\x4d\\x39\\x81\\x1d\\x3e\\x21\\x9a\\x8b\\xd2\\x95\\x86\\xbd\\x4b\\x33\\x98\\x9d\\x46\\x4e\\x84\\xb8\\x84\\xe4\\x4b\\xad\\x12\\xcc\\xc6\\x45\\x62\\x9a\\xe4\\x49\\x19\\xa6\\xca\\x80\\x04\\xef\\x43\\x55\\xae\\xe0\\xd4\\x76\\x36\\x59\\x05\\x62\\x2e\\x39\\x03\\xab\\x25\\x80\\xd7\\x81\\x46\\xd6\\x8e\\x66\\x96\\xb8\\x06\\x6d\\xad\\x62\\xce\\x37\\x5a\\x48\\x20\\x93\\xf9\\xf6\\x0c\\x25\\xba\\xdc\\xb7\\x6e\\xfd\\x71\\x1d\\x1a\\xe0\\xbc\\x2c\\x9a\\x09\\x8b\\xae\\x49\\x7a\\x7b\\xfd\\xfd\\xcb\\x2f\\x8f\\xdd\\xba\\xa7\\xb9\\x64\\x86\\x72\\x58\\x3d\\x69\\x75\\x56\\xb7\\x2f\\x0b\\x7a\\xae\\xa4\\xa2\\x97\\x6c\\xbe\\xb3\\x12\\xaa\\xf4\\xd8\\x8a\\xd3\\x57\\x06\\x2d\\xad\\x3a\\xfe\\x3d\\x72\\xdf\\x8f\\xf0\\x03\\x0b\\x58\\x58\\xa7\\xe9\\x5a\\xd5\\xfb\\xfd\\xf1\\x6b\\xd9\\x29\\x76\\x8a\\x34\\xec\\x52\\xb0\\xf9\\xf3\\x2c\\x11\\x0f\\x19\\x63\\x0c\\x17\\x5a\\x92\\x7c\\x0f\\x41\\xe6\\xf9\\xe0\\x34\\x96\\xc8\\x18\\xad\\x31\\xa5\\x49\\xc1\\xca\\x8a\\x82\\x55\\xd2\\x53\\x54\\xc9\\xaa\\x4a\\xeb\\x70\\xb5\\x3c\\x30\\x65\\x5c\\xca\\xb0\\xcc\\xb6\\x27\\x83\\xd6\\xaf\\x0e\\xf1\\x23\\x64\\xb7\\x71\\x68\\xf5\\x2b\\xbb\\xa1\\xde\\x99\\xf4\\xbd\\xb2\\x28\\x16\\xd7\\xb7\\x6a\\xf2\\x20\\xf5\\xdc\\x1b\\x38\\x6b\\x38\\xd4\\x02\\x0c\\xe5\\x82\\x85\\xbd\\xf0\\xe7\\xc2\\x7d\\x62\\x2e\\xf4\\x55\\x42\\x0a\\x76\\x2d\\xe8\\x87\\x01\\xed\\x2c\\xcb\\xc2\\x7e\\x4e\\x9d\\xfe\\xf3\\xf7\\x95\\x85\\x7f\\xb6\\xd0\\x8c\\x7c\\x42\\x92\\x50\\x73\\x14\\xc5\\xcc\\xbc\\xe7\\x48\\x26\\xf3\\x0f\\xc3\\xb4\\xf8\\x99\\x1e\\x00\\x5d\\x91\\xb5\\xc8\\x66\\x98\\xb0\\x3f\\x3e\\x5f\\x8d\\xe1\\x6c\\xf4\\x8e\\xae\\x81\\x8d\\x27\\x6b\\x5d\\x04\\x95\\xfc\\x95\\xaf\\x9e\\x82\\xe4\\x55\\xd2\\x5d\\x77\\xf2\\x12\\x9f\\x2f\\x2b\\xa9\\x73\\xfe\\x3a\\x63\\x9c\\x38\\xab\\xbc\\x02\\xf5\\x74\\xe2\\xf4\\x04\\xcb\\x3c\\xe9\\x7f\\x3a\\x1e\\x4b\\x86\\x20\\x3b\\xda\\x98\\x14\\x06\\x11\\x99\\x40\\x46\\x74\\xec\\xed\\xdc\\x1e\\x7a\\x6e\\x0f\\xbb\\x68\\x0f\\xcb\\xed\\xa1\\x07\\x21\\x7b\\x73\\x30\\x16\\x02\\xb7\\x47\\x08\\x90\\xe5\\x66\\xbb\\xa0\\xa8\\xa8\\x55\\xb2\\xca\\xd8\\xa4\\x92\\x27\\x53\\xc5\\x81\\xf7\\xde\\x5e\\x9d\\x65\\x6d\\x52\\xfa\\x9e\\x68\\x17\\x6c\\x78\\xef\\x9d\\x1c\\xbb\\xbc\\x21\\x4b\\xc4\\x9f\\x89\\x5a\\x60\\xcf\\x0e\\xb8\\x1c\\x9f\\xc6\\x5f\\x4e\\x97\\xc3\\xcf\\xc7\\xe7\\xfe\\xf1\\xe9\\x70\\x3c\\x8c\\xcf\\xc7\\xe7\\xc7\\xf3\\xcd\\x48\\x7f\\xeb\\x1c\\xa1\\x85\\x71\\xca\\x59\\x8b\\x4d\\x7d\\xe3\\xb4\\xe9\\x7d\\x18\\x58\\xe8\\x63\\xf0\\x51\\x52\\x6b\\x99\\xe4\\xdd\\x44\\x53\\x85\\x43\\x8d\\x53\\xd1\\x77\\xf4\\x98\\xce\\x83\\x16\\x3f\\x04\\xac\\x0d\\x4d\\x00\\xc6\\xaa\\xea\\xa2\\x70\\xc4\\xa1\\x38\\x15\\x1c\\x40\\x72\\xd4\\x6c\\x49\\x89\\x4c\\xad\\xe5\\x8e\\xb0\\xba\\x6b\\x82\\xaa\\x5a\\x7a\\x6c\\x30\\x39\\x66\\xa3\\x6b\\x7c\\xa4\\xee\\x80\\x77\\x21\\x99\\x01\\x8c\\x56\\x8c\\xcc\\x73\\x65\\x13\\x75\\x33\\xae\\xc2\\x7c\\xef\\xa9\\xf1\\xbe\\x3e\\x00\\xdd\\x55\\xcc\\xd5\\xa5\\x81\\xad\\xae\\x81\\xad\\x2f\\x7f\\x05\\x69\\xb7\\x49\\xd4\\x59\\xc6\\x24\\x4e\\x9b\\x37\\xd9\\xf4\\xd8\\xc2\\xa3\\x27\\xf1\\x47\\x1a\\x18\\xb6\\x3c\\x20\\x69\\xfe\\xba\\x1b\\x15\\x46\\x3f\\x9c\\x2f\\xdf\\xef\\xfa\\x06\\x65\\xbc\\x7c\\xb1\\x84\\x96\\x38\\x4d\\xb6\\xf9\\xc6\\x96\\xc4\\x6b\\xec\\x59\\x89\\xe0\\xd6\\x60\\x1a\\x36\\x6c\\x55\\x07\\xc1\\x9c\\x0f\\x8c\\x30\\xef\\x99\\xfb\\x83\\xa7\\xf5\\x6d\\x3e\\x32\\xfc\\x78\\x56\\xd3\\xf6\\x6e\\xc0\\x2f\\x87\\x8a\\x56\\x15\\x8c\\xa0\\x80\\x1a\\x77\\xf6\\x06\\x54\\xa9\\x61\\x9d\\xb9\\xb4\\x28\\x13\\x61\\x06\\xe6\\xc9\\x06\\x5d\\x73\\x50\\xc5\\x31\\x96\\xdc\\x96\\xc2\\x92\\x11\\xec\\xf8\\x07\\xe5\\x05\\xc3\\x3f\\xcd\\x82\\x98\\xd8\\xd1\\x39\\xcc\\x39\\xf3\\x8a\\xa0\\xa1\\x29\\x66\\x10\\x04\\xf7\\x40\\xef\\x74\\x8c\\x43\\xe5\\x19\\xab\\xf4\\xce\\x20\\x30\\x36\\x22\\x05\\xe1\\xd8\\x91\\x16\\x79\\x09\\x29\\xa9\\xf7\\x0e\\xd6\\x9b\\x65\\x97\\xbd\\x2f\\xca\\x17\\xc8\\xe3\\x38\\xa3\\x1c\\x78\\x11\\x92\\x53\\x31\\x43\\x9a\\x0b\\x84\\x37\\xe0\\x46\\xd3\\x0b\\x79\\x57\\x4e\\xd1\\x76\\x7d\\x13\\x5d\\x87\\x11\\x1c\\x24\\x28\\x5f\\x58\\xba\\xb2\\x31\\x8e\\x81\\x59\\xe6\\x61\\xa7\\xed\\x4e\\x4f\\xdf\\x1e\\x9f\\x7e\\xbd\\x43\\x36\\xad\\xcb\\x67\\xce\\x19\\x9b\\x07\\x3c\\xee\\x00\\x87\\x82\\xd1\\x8b\\x2c\\x6d\\x13\\xb2\\x32\\x21\\x0b\\x0f\\xf4\\x44\\xdf\\xc3\\x89\\x9a\\x06\\x48\\x66\\xe7\\xf9\\xd7\\x73\\xce\\xda\\xc7\\x9e\\xee\\x97\\x61\\x0d\\xa9\\x5d\\x97\\x2f\\x05\\xda\\x56\\x39\\xee\\x70\\x1f\\xd9\\xfe\\x03\\x02\\x41\\xd3\\x15\\xd7\\x80\\xb7\\x65\\xe9\\x4a\\xdb\\x8f\\xf1\\x35\\x10\\xb6\\x95\\xd6\\xa8\\xf5\\x93\\xc4\\xd4\\x3b\\xfa\\xa2\\xda\\x3a\\xd2\\x5a\\xd2\\x7a\\xef\\x3f\\xd4\\xcb\\x1a\\xd3\\xf1\\xb2\\xa2\\x43\\xa7\\x5a\\x55\\x35\\x0c\\x7e\\x93\\xb0\\x64\\xc8\\x4b\\xb9\\xcc\\x68\\xe2\\x34\\x2e\\x30\\x10\\x39\\x41\\xaa\\xfa\\xb2\\x96\\xd6\\x10\\x44\\x25\\x10\\xab\\xfc\\x52\\xd6\\x2c\\x29\\xce\\xce\\x97\\xd8\\x3c\\xf3\\xf6\\x4b\\x8a\\x1a\\x13\\xf9\\xb3\\xff\\x57\\x87\\x7a\\xf1\\x7a\\xb3\\xea\\xef\\x5b\\xe7\\xb4\\xed\\x79\\x38\\x5f\\x2e\\x4f\\xa7\\x6f\\x87\\xb5\\xe5\\x34\\x97\\xcd\\x40\\x7d\\xbf\\xa5\\x80\\x8e\\x6c\\x13\\xe6\\xc4\\xa7\\xb9\\x88\\x31\\x10\\xfe\\xca\\xc0\\x97\\x9b\\x54\\xf3\\x3d\\x32\\xa6\\xe9\\xae\\x87\\xa7\\xf3\\xf3\\xd6\\xd3\\x70\\xf9\\x52\\x93\\x7d\\x01\\xf9\\xb7\\x29\\x41\\x96\\xd0\\xa7\\xd7\\x7f\\xea\\x79\\xaf\\xcb\\x87\\xbc\\x2e\\x73\\xfa\\x3c\\x13\\x66\\x35\\x0c\\xea\\x0b\\x71\\x2f\\x97\\x6f\\x33\\x75\\x6a\\x91\\xf2\\x50\\x85\\x1a\\x26\\xdc\\x2d\\x4f\\x73\\x9b\\x32\\xa2\\x9f\\xcf\\xa5\\x7a\\x79\\x3a\\x5e\\xba\\xfe\\x71\\x05\\xc9\\x5b\\x94\\x89\\xb3\\xbb\\xf0\\x90\\x2b\\x8c\\x85\\xb7\\x55\\xc5\\x08\\xdb\\x31\\x4d\\xaf\\xa3\\xb8\\x05\\xfa\\xe4\\x17\\x5c\\x4f\\x09\\x09\\x10\\x59\\x79\\x6d\\xba\\x58\\xf1\\x95\\x40\\x53\\xaa\\x06\\x09\\x97\\x31\\x7e\\xda\\xa1\\x8b\\x9f\\xd0\\x0e\\xb8\\xd2\\xd6\\xe5\\xc1\\x16\\xe5\\x42\\x17\\x55\\x82\\x2b\\xd0\\x2a\\x4b\\xff\\xf6\\xc8\\xea\\xd0\\x50\\x8e\\x42\\x54\\x14\\x3e\\xd4\\x9d\\xa6\\xf8\\x76\\x5e\\xb5\\xc2\\xb7\\x89\\xcb\\x20\\x82\\x66\\xab\\x2b\\xe0\\xf6\\x01\\xc1\\x62\\x50\\x16\\x5b\\xab\\xe0\\x39\\xd7\\xd9\\x44\\x10\\xcd\\xc5\\xcc\\x89\\x22\\x68\\x8f\\x68\\x61\\xd6\\x52\\x4f\\x4a\\xc6\\xb3\\xa9\\xc0\\x0b\\x2f\\xcc\\xfd\\x09\\x78\\xdc\\xab\\x29\\x76\\x00\\x0a\\x0c\\xee\\x0b\\xe7\\x55\\x31\\x8a\\x4c\\x2e\\x9f\\xd5\\x4e\\x04\\xea\\xe5\\xe9\\x97\\xf3\\xf0\\xed\\x30\\x9c\\xc6\\x71\\xf5\\xec\\x8b\\x52\\xd9\\x04\\x79\\x24\\xbc\\x63\\xc5\\x2a\\x19\\x9f\\xa5\\x2e\\x1e\\xf4\\xd4\\x31\\xd3\\x47\\xcc\\xaf\\x5f\\x30\\x75\\x9a\\x30\\xf0\\x19\\xf5\\xfc\\x4a\\x4b\\x87\\x93\\xf0\\xd1\\xec\\x70\\x45\\xc8\\x43\\x7c\\x5f\\x93\\xeb\\xae\\x4a\\x17\\xf4\\x09\\x9e\\x6f\\x3f\\x51\\xe5\\x6d\\x3c\\x67\\x05\\xcb\\x4e\\xb7\\xaf\\x93\\xfd\\xd6\\x93\\xbe\\xff\\x68\\xb7\\xa9\\xd7\\xab\\x9c\\x6b\\xe9\\xee\\x6b\\x53\\x34\\xd8\\x29\\x3c\\x56\\x5b\\xd5\\xd8\\x38\\x34\\xe8\\x18\\xe4\\x5e\\x3b\\x49\\x77\\xb7\\x25\\xc2\\x99\\x39\\x60\\x5f\\xd0\\x31\\xe7\\x33\\x75\\xb5\\x63\\x9c\\x8e\\x31\\xca\\x8e\\x0d\\x17\\x31\\xe1\\xa6\\xce\\x23\\x54\\x0f\\x42\\x56\\x74\\x54\\x77\\x16\\x82\\x54\\xde\\x91\\xc9\\x02\\x5f\\xb5\\x97\\xe4\\x57\\x61\\x68\\x06\\x66\\x8f\\x45\\x2e\\xc8\\xc2\\x0e\\x92\\xc3\\x56\\x6a\\xd4\\x2b\\x59\\xa5\\xc7\\x06\\x96\\x12\\x80\\x9f\\x31\\x8f\\xa6\\xd0\\x0e\\x4e\\xd9\\xa4\\x95\\x1e\\x42\\x56\\x51\\x5f\\x1b\\x13\\x76\\x5e\\x80\\x71\\x99\\xaa\\x8c\\x6f\\xf3\\xf2\\x17\\x79\\xcd\\xcb\\x91\\x09\\x82\\xc5\\x95\\xe2\\x97\\x5a\\x3b\\xfc\\xea\\x46\\x7f\\x6d\\x62\\x40\\x52\\x45\\x56\\x36\\x32\\xc0\\x2a\\x4e\\xce\\x97\\xc8\\xbe\\x08\\xe6\\x63\\xa0\\xff\\x47\\xfa\\x94\\x22\\xb0\\xa7\\xc1\\x13\\x49\\x2f\\x01\\x44\\x95\\xaf\\x11\\xd4\\x35\\x8b\\xd9\\x60\\x72\\xb8\\x5c\\x01\\x7d\\x0e\\x0a\\x74\\x8f\\x4c\\x21\\x14\\x25\\x92\\x1d\\xe9\\x8a\\xb8\\xa0\\xf2\\x69\\x04\\x33\\xa5\\x61\\xe7\\x2e\\x4b\\x94\\x64\\xf6\\x8a\\x38\\xb6\\x0a\\x1b\\x8f\\x20\\x0d\\x32\\xbb\\x99\\x59\\x98\\x2c\\xe3\\x1c\\x1f\\x60\\x20\\xe7\\x38\\xf3\\x05\\x47\\x50\\x0b\\x52\\x0b\\xec\\x80\\xd8\\xaf\\xa7\\xcb\\xe3\\x2f\\x8f\\xa7\\x6f\\x87\\x97\\x71\\x05\\x31\\xbc\\x29\\x9f\\xb6\\x05\\xc6\\x97\\x41\\xbc\\x66\\x75\\x54\\x37\\x06\\x7c\\xbc\\x5e\\x0b\\xb0\\x73\\x1a\\xd9\\x55\\x1f\\x65\\x10\\x51\\x3c\\xce\\x79\\xab\\x1e\\xce\\x0c\\x0e\\xb6\\x22\\x08\\x42\\x78\\x7d\\x69\\xca\\x41\\x7a\\x4b\\xb1\\xca\\x80\\x97\\xa2\\x80\\x29\\xec\\xba\\x67\\x11\\x4e\\xa4\\x3d\\xc7\\xe1\\xf1\\xd7\\xa7\\xc3\\xd7\\xf3\\xf3\\xf3\\xf9\\xfb\\xba\\x36\\x5b\\xc7\\x2b\\xb9\\xa3\\xb0\\x43\\x2f\\xf9\\x1a\\x5f\\xdf\\x61\\x34\\xb0\\x86\\x33\\xb7\\xe9\\x73\\xc7\\x80\\xbc\\xb9\\x71\\x77\\x7a\\x7a\\xbe\\x6d\\xe6\\xad\\xe3\\x0b\\x4e\\xf2\\x7b\\xd6\\x49\\x7a\\x30\\xaf\\xc3\\x06\\x0f\\x52\\x66\\xa6\\x85\\xcc\\x44\\x0b\\xe8\\x26\\x9d\\x86\\x89\\x12\\x65\\x62\\x57\\x62\\xb2\\xf1\\x2b\\x53\\x60\\x7d\\xe6\\xf9\\xd7\\xec\\xf7\\x5b\\x07\\x27\\xbe\\x4c\\x9f\\xef\\x9b\\x54\\x74\\x9a\\x98\\x9e\\x65\\xc5\\xc2\\x05\\x76\\x01\\x70\\xcc\\xbb\\xfd\\x67\\x7a\\xfc\\x7a\\xb9\\xf5\\x2e\\x2c\\xca\\xe6\\x4d\\x49\\x25\\x99\\x40\\x92\\x0f\\xfd\\x65\\x92\\xe6\\x6d\\x34\\x59\\x38\\x5b\\x89\\x18\\x8e\\x49\\x3f\\x4c\\x56\\x37\\x29\\xaf\\x92\\x8e\\xb2\\x91\\xbf\\xc0\\x3f\\x59\\xc7\\x75\\x38\\x79\\xb0\\xc6\\xbb\\x27\\x06\\x55\\xe3\\xc5\\xfe\\x8e\\xf7\\x66\\x36\\x93\\xbd\\xf8\\xed\\x1f\\x40\\x56\\x72\\xb2\\xea\\xe5\\x27\\x3b\\x6d\\xf4\\xed\\x74\\x06\\xf7\\xd9\\xaa\\x91\\xe6\\xc2\\x29\\xfd\\xb2\\xe6\\x5b\\x71\\xd6\\x23\\x26\\x90\\x9a\\x15\\xe9\\xe1\\x1d\\xa5\\xaf\\x1e\\x7a\\xb7\\x95\\xbd\\xc3\\xe6\\x5c\\xf3\\xdb\\xec\\xb4\\xb5\\x59\\x52\\x1e\\xdd\\x3a\\x72\\xf9\\xe5\\xbe\\xcf\\x3f\\x61\\x41\\x81\\x35\\xe7\\x11\\x99\\x43\\xf7\\x7e\\xd7\\x1d\\xce\\x23\\xae\\xd9\\x70\\xfc\\x7a\\xba\\xaf\\xaf\\x94\\xae\\x78\\xd9\\x11\\xd1\\x67\\xc3\\xd7\\xf9\\x7f\\x0f\\x89\\x85\\x3c\\x30\\x8d\\xe5\\x15\\x4d\\xfe\\x4d\\xf9\\x1c\\x61\\xd3\\x0e\\x1b\\xea\\x12\\x79\\x63\\x59\\x22\\x53\\x05\\xff\\xe1\\x1c\\xcb\\x95\\x18\\xfe\\x1b\\xec\\x07\\x95\\x94\\x04\\x96\\x35\\xa2\\x3e\\x9e\\x39\\x49\\x96\\x30\\x8d\\x4d\\x2e\\x59\\x3a\\x69\\x67\\xa7\\x87\\x9a\\x76\\x2b\\xdf\\xec\\x5c\\x34\\xfb\\x67\\xff\\x9d\\x03\\xb0\\x3b\\x7e\\xbf\\xc1\\x58\\xad\\x8b\\xf1\\xfc\\x49\\x53\\xcf\\x0c\\x40\\x70\\xb9\\x94\\x67\\x58\\x14\\xcc\\x4a\\x24\\x45\\x58\\x16\\xd7\\xe4\\xaa\\xf8\\x4f\\x3d\\xbd\\x89\\x22\\xe6\\x21\\x6a\\x01\\x09\\x80\\x00\\xba\\x8b\\xa3\\x57\\xbd\\xf4\\xc6\\xd9\\x3f\\x5a\\xbd\\x5f\\x8f\\xdf\\x4f\\x87\\xe3\\x38\\xae\\x28\\x39\\xee\\x8e\\x08\\x97\\x05\\x47\\x57\\xff\\x24\\xad\\x83\\x33\\x7f\\x41\\xfe\\x53\\xe5\\x80\\xfa\\xc4\\x24\\xf7\\xc7\\x85\\x16\\x36\\x49\\x56\\xfe\\x98\\xd2\\xc2\\xf5\\xf1\\xf4\\xf3\\x70\\xfc\\xf5\\xf4\\xf4\\xed\\xb8\\x6a\\xef\\x45\\xe9\\xcc\\x4c\\x46\\xeb\\xd9\\x3d\\x53\\x5c\\x35\\xb7\\xee\\xf3\\xb5\\x1c\\x1c\\x84\\x1b\\x09\\x5b\\xf8\\xc5\\x7a\\x4c\\xb9\\x28\\x59\\xdb\\xa0\\xa1\\xad\\x77\\xe1\\x60\\x19\\x92\\x2b\\x6f\\x6e\\xb3\\x20\\xbb\\x5b\\xdf\\x66\\x1a\\xb9\\xcb\\xbb\\x58\\x8e\\xb9\\xe1\\x2e\\xfb\\xcd\\x71\\xb9\\x1c\\x7f\\xbf\\x6b\\x0d\\x2e\\x64\\x17\\x40\\x32\\x93\\xcf\\x85\\xd6\\x4c\\xd6\\x8a\\xc3\\x9c\\x88\\x74\\x61\\x0d\\x3b\\x89\\x4b\\xc9\\x92\\x4b\\x89\\x59\\xbc\\xe5\\x27\\x8b\\x63\\xfb\\x0f\\xd3\\x1d\\x2f\\xe7\\x97\\xf1\\x66\\xc5\\x59\\x95\\xcf\\x09\\xd3\\xd9\\xf7\\x3c\\x5b\\x05\\x78\\xd3\\x00\\x41\\xf0\\x8e\\x57\\x7b\\x17\\x96\\xc7\\xd8\\x0b\\x07\\xb6\\x14\\x50\\x1d\\x23\\x4a\\x03\\xcd\\xf9\\x8f\\x3c\\xd2\\x79\\x78\\xf9\\xfe\\x74\\xf7\\x40\\x52\\x3a\\x59\\x46\\xd4\\x0c\\x4c\\x65\\x90\\x04\\xef\\x76\\xdb\\x10\\xab\\xa3\\xcc\\xe2\\xb6\\x7d\\xe8\\x03\\x8f\\xf4\\xfd\\x97\\xbb\\x2e\\x93\\xc2\\x99\\x94\\x55\\x73\\x1b\\x64\\x6e\\x1e\\x6a\\x05\\x64\\x8e\\x73\\x0c\\x73\\x3e\\xc2\\xde\\xc7\\x5a\\x1c\\xa5\\x38\\x4e\\xb6\\xee\\xed\\xd9\\x71\\xf3\\x1a\\xc8\\x55\\x67\\x5d\\x9f\\xba\\x55\\xac\\x97\\xc6\\x83\\x4c\\xd7\\xc5\\x83\\xd4\\x5c\\xf5\\x8d\\x07\\xa9\\x17\\x11\\xfd\\x9e\\xfa\\x20\\x1b\\xd7\\x8e\\x5b\\x77\\x7c\\xa8\\x58\\xc6\\xf5\\xa5\\x3f\\xd2\\xa4\\x3f\\x8e\\xdd\\xf3\\x46\\xa3\\x72\\x71\\x45\\xfa\\x51\\x65\\x20\\x99\\xcb\\x16\\xa3\\x0e\\x6c\\x65\\xa2\\x33\\x75\\x02\\xd9\\x05\\xd3\\xc2\\xfb\\x32\\xcb\\x7d\\xd7\\x23\\xec\\xca\\xf6\\x65\\xdf\\x1d\\x8f\\x9b\\x7f\\xbb\\x7f\\x2f\\x67\\x8c\\xa5\\x67\\x62\\x03\\x3c\\x0b\\xe6\\x5f\\x1d\\x98\\x75\\x84\\x69\\xe1\\x3f\\x30\\x75\\x7d\\x6e\\x4e\\x59\\xcf\\x5c\\xa0\\xfa\\xa2\\xf9\\x7d\\x71\\xfb\\xfd\\x0a\\xf5\\xa7\\xe3\\xb7\\x9b\\xec\\xc9\\x9b\\xf2\\x3d\\x69\\x00\\xe1\\xbe\\x58\\x4b\\x03\\xf0\\x6e\\xf3\\xca\\x7c\\x15\\xd3\\x4f\\xde\\x94\\x12\\xd8\\x7d\\xcc\\xe1\\x71\\xbc\\x1b\\x08\\x5c\\x36\\x73\\xeb\\x6a\\x16\\xc5\\x66\\x5e\\xb0\\x20\\xa3\\xba\\xd8\\xfa\\x6a\\x2c\\x8f\\x09\\xd8\\x8c\\x87\\x2a\\x1f\\x88\\x72\\x20\\x87\\x69\\xac\\x2e\\x5e\\x3c\\xa9\\xcf\\x7d\\xe9\\xfd\\xbb\\xb1\\x5b\\x97\\xef\\xe7\\x6f\\x2f\\xc3\\x5d\\x83\\xd7\\xd2\\xfb\\xd9\\x8b\\x83\\x45\\x3a\\xcd\\xc3\\x9a\\x9a\\x1c\\x20\\xba\\xe5\\xe1\\xd7\\x1a\\xa2\\xda\\x3a\\x54\\x67\\xb6\\x8d\\x43\\x32\\x1d\\x6e\\x1f\\xd9\\xbe\\xd3\\x6e\\x15\\xff\\xcf\\xcb\\xe3\\x70\\xd7\\x5f\\x52\\x38\\xf9\\x58\\xd0\\x61\\x6e\\x12\\xb3\\x72\\xf2\\xde\\xbe\\x53\\x8b\\xfd\\x99\\xfb\\x0f\\x3c\\xeb\\xf8\\x7c\\x39\\xdd\\x58\\xe2\\x8b\\xd2\\xd5\\xe8\\x8f\\x93\\x16\\x7b\\x94\\xad\\xec\\xa2\\xf1\\x56\\x47\\xf7\\x6f\\xfb\\xf3\\x74\\xfa\\xed\\xf6\\xa6\\x5c\\x36\\xf1\\xf5\\x7a\\x1d\\x36\\xc1\\x39\\xbc\\xb3\\xd9\\xda\\x00\\x44\\xff\\x51\\xd2\\xdd\\x3a\\x2f\\xcd\\xf7\\x58\\xcd\\x4b\\x8b\\x7b\\xdc\\xcc\\x4b\\x8b\\x5b\\xac\\xc0\\x4a\\xf1\\x1e\\x5c\\x04\\xef\\x0c\\xeb\\x99\\xbf\\x71\\x8f\\x87\\xfd\\x9b\\xec\\xd7\\xe3\\xfd\\xa6\\xfe\\xf5\\xe9\\xf4\\xfc\\xbc\\x7e\\xdb\\x6a\\xd1\\x92\\x2d\\x78\\x06\\xf4\\x04\\xc1\\xcb\\xd9\\xcc\\xa9\\xf4\\x88\\x64\\xd6\\x02\\x33\\x21\\xf8\\x00\\xfd\\xb1\\x99\\x53\\xe9\\x99\\xc9\\x49\\x40\\xdc\\xff\\x8e\\x2d\\xf6\\xf8\\xf8\\xf5\\xf1\\x06\\xdc\\xbd\\x2c\\x5c\\xe1\\xf7\\xee\\x19\\xb3\\x6e\\xd5\\x0c\\xc6\\x37\\x55\\x10\\x04\\x2f\\xe4\\x4b\\x17\\x10\\x8e\\x61\\x99\\xb1\\x49\\xf0\\x7f\\x21\\x4b\\xa6\\x26\\x1d\\xb2\\x95\\x3e\\xd9\\xb8\\x50\\x25\\x53\\xf2\\x36\\x87\\xa8\\xbc\\x89\\x1d\\x95\\x68\\x65\\x4a\\x06\\x76\\xc8\\x02\\xc8\\x1f\\x35\\xe3\\x35\\x8b\\x9f\\x88\\x6a\\xd1\\xa0\\x7c\\x6c\\x6c\\xc0\\x6f\\x14\\xb9\\x84\\x4e\\x76\\x49\\x15\\x2f\\x80\\x7e\\xad\\xa4\\xf4\\xf5\\xe1\\x63\\x8d\\x77\\xb7\\xcf\\x5d\\x1f\\x90\\x46\\x74\\x70\\x73\\xb9\\x4d\\x86\\x42\\x7a\\x05\\xa2\\x51\\x4e\\xbb\\x0e\\xfa\\x8f\\xb2\\xdd\\x75\\x32\\xee\\xd9\\xff\\xcd\\x92\\x6e\\xab\\x46\\xe8\\xa0\\xca\\xe4\\x9c\\x0a\\xca\\xd3\\x20\\x14\\x09\\xca\\x2a\\x25\\x59\\x98\\x4d\\x80\\xee\\xb5\\xc5\\x72\\xd8\\x41\\x87\\x4d\\xf2\\xbe\\xbc\\x48\\x36\\x9a\\x4a\\xaf\\x7c\\xb3\\x27\\xa7\\x51\\xd7\\x96\\x0c\\x3f\\x70\\x1b\\x33\\x1c\\xf0\\xb9\\x35\\xce\\x42\\x57\\xcb\\x6a\\x1d\\x81\\xff\\x4b\\xe6\\x01\\x34\\x82\\x2c\\xdc\\x20\\xee\\xc3\\x02\\x38\\x67\\xd7\\x70\\x4f\\xdd\\x35\\xbe\\x49\\x70\\xa4\\x04\\x95\\xb2\\xca\\x20\\x6e\\x43\\x4a\\x78\\xd0\\x48\\x9a\\x6f\\x7d\\xc1\\x26\\x36\\xb7\\x31\\xb8\\xa4\\x5c\\x69\\x9d\\x8f\\x1c\\x88\\x09\\x82\\xb1\\x67\\x2b\\x08\\xa1\\x06\\x80\\xd5\\x39\\x51\\x29\\x0f\\x48\\x84\\x8b\\x9d\\x85\\x16\\x55\\x40\\xca\\x01\\x4d\\xc5\\x61\\x1a\\x32\\x49\\x86\\x8c\\x97\\x21\\x03\\xbe\\x68\\x81\\xe6\\x01\\x96\\xe7\\x58\\x77\\xb9\\x89\\x56\\x45\\xdb\\x05\\xc9\\x0b\\x0f\\x2a\\x2b\\x30\\xb5\\x84\\xa2\\x6e\\xc7\\xee\\xfb\\x58\\x92\\xeb\\xf9\\xb1\\x3b\\x1d\\xba\\x7e\\x05\\xd5\\x58\\x16\\x4e\\xbb\\x00\\xc0\\xee\\x92\\x61\\xc7\\x76\\xcc\\xd7\\x98\\x05\\x4e\\x00\\x55\\xf7\\x64\\xae\\xb1\\xfc\\xcf\\xd1\\x87\\xe1\\x89\\xbf\\x1f\\x1f\\x87\\xdb\\x5a\\x70\\x19\\x57\\xa2\\x04\\xa6\\x3a\\x30\\x4a\\xab\\xe4\\x95\\xf3\\xf4\\x6f\\x0a\\x23\\x8d\\xd1\\xc4\\xb8\\xc7\\xe4\\x11\\x01\\x6b\\x04\\xbd\\xd8\\x24\\x3f\\x3a\\x46\\x43\\x4e\\x42\\x02\\x26\\x2d\\xae\\x12\\x70\\x95\\xc0\\x57\\xf1\\x4a\\x90\\x93\\xb8\\x8a\\x97\\xab\\x78\\xbe\\x4a\\x85\\x43\\xf2\\x55\\xe8\\x59\\xa8\\xa2\\x31\\x4c\\xb0\\x78\\xbb\\x84\\xc5\\xdb\\x1b\\x58\\x7c\\xdf\\xd8\\x94\\xbb\\x26\\x86\\x7b\\xe0\\x7d\\x1e\\xe5\\xa7\\x6b\\x80\\xbc\\x9d\\x00\\xf2\\x2c\\x80\\x28\\xb1\\xaa\\x20\\xf9\\x13\\x29\\xf4\\x25\\x82\\xd1\\xd2\\xf2\\x20\\x45\\x74\\x2b\\x71\\x9a\\x5c\\x0c\\x33\\xe8\\x1e\\x80\\xfe\\x9d\\xb6\\x1f\\x5e\\xbe\\x9f\\x6e\\xc1\\x48\\xab\\xd2\\x29\\xdb\\x8d\\x66\\x1c\\x00\\x69\\x78\\x9f\\x48\\x56\\xf4\\x50\\x07\\x2a\\x36\\x97\\x6c\\x4b\\x95\\x50\\xf3\\x13\\xa0\\xc2\\x66\\x55\\x93\\x84\\xe9\\x3b\\xc7\\xab\\x49\\xb6\\x73\\x9c\\x0e\\x02\\xf9\\xdc\\xac\\xf8\\xc0\\x47\\x1e\\xf2\\xfb\\xcb\\x7a\\x51\\x5d\\x96\\x4e\\x09\\x67\\x78\\xc8\\x38\\x54\\x16\\xc5\\xfa\\x90\\x51\\x1e\\xf2\\x03\\x01\\x2f\\xbe\\xec\\xcd\\x2c\\xbc\\x28\\x9c\\x96\\x31\\x08\\x9c\\x82\\x89\\x3c\\x28\\x1f\\x5e\\xbf\\x14\\x03\\xb1\\x0d\\x07\\xed\\x97\\x90\\x66\\xff\\x23\\x10\\x95\\x1d\\xbf\\x3c\\x19\\xe8\\x33\\x38\\xd4\\x30\\x27\\x96\\xab\\xf7\\x9d\\xc9\\x0a\\x83\\xd1\\x78\\x24\\x3c\\x06\\x04\\x99\\x0b\\xbd\\x9e\\x50\\xd3\\x5f\\x37\\x71\\x8f\\x39\\xc4\\x68\\x9a\\x6b\\x0d\\xc7\\x42\\x24\\xdd\\x22\\x23\\x8d\\xdc\\x00\\xe8\\x40\\x35\\xe6\\xf8\\x68\\x16\\x7d\\x44\\xba\\x6d\\xa9\\xf9\\x93\\x99\\x45\\xaa\\xd8\\x1f\\x1a\\x25\\xfd\\x34\\x17\\xce\\x9d\\x74\\x1d\\xd2\\x6d\\x8c\\x51\\x2e\\xd2\\xbf\\x60\\x59\\x63\\x65\\x21\\x8c\\x47\\x0c\\xe4\\xc2\\x58\\x4e\\x37\\xd0\\x70\\x0d\\xf6\\xea\\xd3\\xd4\\xb1\\x9c\\xee\\x4d\\x1f\\x1f\\xeb\\xd8\\x15\\x04\\x6c\\x51\\x36\\x45\\x52\\xbc\\x77\\x6f\\x55\\x63\\xc4\\xd3\\x9b\\x98\\x2b\\xf3\\x4a\\x4e\\x60\\xe7\\xb7\\x08\\x1c\\xe9\\x08\\x81\\x26\\x6e\\x8c\\x71\\xa3\\x75\\x66\\xc9\\xa4\\x3a\\x5e\\x8d\\x8c\\x57\\x77\\x37\\x5e\\x57\\xd5\\x12\\x07\\xc3\\xfe\\x0b\\xf1\\x6e\\xfd\\x7f\\x3c\\x1d\\x7e\\x3b\\xad\\xec\\xa5\\x5a\\x32\\x67\\x50\\x1a\\x37\\x99\\x75\\xdb\\x59\\x09\\x63\\xe3\\xed\\x92\\x24\\x68\\xca\\x47\\x10\\xed\\x38\\x9b\\x34\\x73\\x69\\x91\\x05\\x5c\\x43\\xd9\\x93\\x3f\\xa8\\x6f\\x0a\\x0b\\x32\\x02\\xc4\\xb2\\x48\\x36\\xa4\\x3f\\xba\\x86\\x13\\xd2\\x6f\\xb2\\x45\\xc6\\x39\\xeb\\x10\\x86\\x6c\\x88\\x30\\xc3\\x3c\\x53\\xe6\\xf3\\x4f\\x77\\x2b\\x3e\\x9c\\xbb\\xdf\\x6e\\x6a\\xce\\x45\\xd3\\x6e\\x2d\\x32\\xd4\\x78\\x2b\\xde\\x81\\x86\\x76\\xca\\x68\\xcb\\x64\\x47\\x9c\\x23\\x0e\\x3b\\x82\\xfa\\x11\\xa9\\xd3\\x89\\x19\\x9d\\x62\\x4d\\x9d\\x4e\\x9a\\x29\\xbb\\x18\\x58\\xda\\x81\\x20\\xc9\\x30\\x1c\\xbb\\xf2\\x33\\x2c\\x12\\x84\\xfc\\x94\\x20\\x44\\x96\\xa9\\xf1\\xc8\\xfa\\xa2\\x4f\\x2a\\x28\\x51\\x92\\x83\\x3c\\xf7\\xcf\\x8d\\x78\\xad\\xbe\\x36\\xc1\\xbf\\x65\\x74\\x73\\x3e\\xef\\x1b\\xde\\x63\\xef\\x1e\\x18\\x6e\\x6a\\xf3\\xbc\\x0f\\x33\\xfc\\x61\\x2d\\x9c\\x2c\\xd6\\x74\\xa0\\x2d\\x71\\xcc\\x2d\\x41\\xd6\\x85\\x2d\\x9d\\xcd\\xca\\xe1\\x19\\x12\\xcd\\x42\\xca\\x18\\x5a\\x0b\\x60\\x97\\xc0\\x7a\\x83\\x9a\\x54\\xb0\\x98\\xb3\\x0c\\x5c\\xe6\\x92\\x75\\xc7\\x89\\xf6\\x2e\\x8d\\x0c\\x99\\x97\\xbc\\x7b\\x87\\x8c\\xdd\\x3e\\x59\\x0e\\xa9\\x7a\\x9b\\x36\\x9f\\x26\\xbf\\x9d\\x60\\xa2\\xe3\\xd6\\x9e\\x0d\\x3f\\x90\\x2d\\x9b\\xe5\\xff\\xae\\x46\\x3f\\xcc\\x9c\\xd0\\x22\\x50\\xb6\\xd6\\x27\\xa3\\x67\\x79\\x77\\x38\\xfd\\x3c\\x0e\\xc3\\x8f\\xe3\\x8f\\x55\\xfc\\x7f\\x51\\x36\\xc5\\xfc\\xb1\\xf3\\x0f\\x7a\\xa5\\xb7\\xb4\\xad\\xcd\\x08\\xd9\\x23\\x36\\x89\\xe8\\x3d\\x9e\\x55\\x90\\xde\\xc4\\xe8\\x4d\\xea\\x4e\\xef\\x1b\\x52\\x2b\\xf9\\xa5\\xe5\\x8f\\x5c\\x24\\x63\\xdb\\x6c\\x07\\xc9\\xc7\\x0f\\xf2\\x49\\x8b\\xaf\\xc6\\x05\\xc0\\x56\\x52\\x79\\x18\\xbc\\x53\\x21\\x31\\x88\\x25\\xcc\\xee\\x26\\x2c\\x5d\\x8b\\x47\\xb9\\x37\\xda\\x96\\x4d\\xb4\\xd3\\xf6\\x97\\xa7\\xc7\\xa7\\x5f\\x57\\x2d\\x2f\\x25\\x93\\x57\\x41\\x3c\\x56\\x8d\\x40\\x28\\xaa\\x22\\x40\\xd5\\x8b\\x5c\\x30\\xdb\\x82\\x2b\\x72\\x20\\x5b\\xde\\xeb\\x80\\xcf\\xc6\\xeb\\x00\\xf2\\xe2\\x9d\\xa7\\x78\\xee\\xfa\\xd5\\x33\\xe0\\xbb\\xe4\\x3f\\xe4\\x3a\\xc3\\x6f\\x08\\xe8\\x8c\\x9f\\xcf\\xa2\\x96\\x98\\x8d\\x64\\x7b\\x8b\\x1a\\x0d\\x4d\\x47\\xcc\\xbc\\xe9\\x3c\\x53\\x62\\x1a\\x24\\x06\\x27\\x8d\\x6f\\xc6\\xda\\x8e\\x76\\x03\\x90\\xf9\\x0d\\x20\\x9f\\x88\\x41\\x19\\xe7\\x47\\x4b\\x0b\\x14\\x4d\\x76\\xf4\\x6d\\xe0\\x53\\x7b\\xfa\\x99\\x5c\\x83\\xd3\\x19\\x0d\\x26\\xb3\\x5c\\x59\\xea\\xde\\xdf\\x8a\\xa3\\xf6\\x87\\xe1\\xf8\\x7c\\xf3\\x46\\x2c\\x4a\\xc5\\xe7\\x07\\xe5\\xba\\x81\\x2c\\xc9\\x3c\\xd0\\xb2\\x1a\\xf2\\xd5\\x18\\x50\\xc9\\x5f\\x17\\xea\\x42\\xc8\\x3a\\x4e\\x53\\xd6\\x71\\x5c\\x66\\x1d\\xc7\\xed\\x6c\\xca\\xb8\\xc8\\xa6\\x8c\\x1f\\xce\\x3a\\xfe\\xf9\\xf5\\x70\\x7c\\x79\\x5e\\x62\\x30\\xa7\\x12\\x1e\\x4c\\x16\\x0e\\x93\\xde\\x33\\x0c\\x11\\xba\\x61\\xc8\\x86\\x60\\x44\\x53\\xef\\xcd\\x60\\x68\\x74\\xf7\\x51\\xd2\\x26\\x5c\\x74\\xbd\\x2b\\x30\\xc1\\x70\\x02\\x92\\x3a\\xe8\\x5d\\x72\\xcc\\x13\\xd1\\x18\\xa7\\xfb\\xc6\\xd1\\xc6\\x54\\x95\\x0e\\x96\\x76\\x88\\xbc\\x04\\x16\\x64\\x77\\xd3\\x14\\x1d\\xde\\x90\\x70\\xba\\x49\\x7c\\xef\\x40\\xd1\\x63\\x34\\x30\\x57\\xca\\x38\\xe4\\xc8\\xf5\\x26\\x0e\\x18\\x1e\\x2e\\x0c\\xb8\\x6f\\xe8\\x9d\\x1f\\xf8\\xce\\x88\\x48\\x45\\x65\\xbd\\x1d\\x2c\\xed\\x57\\x07\\x4b\\x2f\\x6d\\xee\\x1b\\xff\\x3e\\xe9\\xc2\\xcf\\xaf\\x87\\x6e\\x38\\xbf\\x7c\\xfb\\x7d\\xdd\\x4e\\xb5\\x4c\\xe2\\xc4\\x4e\\xd9\\x92\\x3b\\x10\\x28\\xab\\x52\\xb0\\xbc\\x17\\x30\\xc1\\x44\\xd9\\xff\\xdf\\x4b\\xb6\\xd3\\x4e\\x25\\xbd\\xb1\\xe6\\x93\\x81\\x19\\x59\\x75\\x91\\x76\\x3d\\x64\\x49\\xa5\\xce\\x26\\x15\\x0c\\x0d\\xe6\\x9c\\x94\\xf1\\x56\\xe5\\xd4\\x81\\x19\\xc6\\x80\\x20\\x87\\x76\\xc7\\xb8\\xc0\\x6e\\x75\\x1e\\x9f\\xba\\xe3\\xd3\\xb7\\xd3\\xd8\\x9d\\x56\\xd2\\x9d\\x77\\x47\\x04\\xa7\\x40\\x0f\\x04\\xa2\\x11\\x5b\\x06\\x66\\x93\\x99\\x91\\x71\\x78\\x35\\x73\\x46\\xc0\\x51\\xc0\\x88\\x5e\\x68\\x4b\\x5c\\x4a\\x9d\\xec\\x49\\xe0\\x2b\\x71\\x22\\x35\\xff\\xb9\\x3c\\x59\\x9f\\x94\\x8d\\x2a\\x67\\xfa\\xb1\\x31\\xfa\\x6a\\xb4\\x93\\x90\\x8e\\x76\\xec\\xc0\\xce\\x79\\x71\\x6b\\xb8\\x24\\xc1\\xa3\\xe2\\xae\\x91\\xd1\\x6d\\x51\\x74\\x49\\x12\\xd2\\x6d\\xa9\\x06\\xae\\x4c\\xa8\\x57\\xd4\\x67\\xbf\\xc1\\x2e\\x8f\\xdb\\xcd\\xb5\\x28\\x97\\x8d\\x5b\\x54\\x59\\x72\\x64\\x90\\x60\\xe5\\x2a\\xc0\\x16\\xf7\\xf7\\x46\\x54\\x9c\\xef\\xdb\\xd1\\xf1\\xd3\\x35\\x8b\\x07\\xe3\\xc7\\x74\\x42\\x9d\\xe0\\x78\\xea\\x9e\\x2a\\x25\\x14\\x30\\x3e\\xad\\xeb\\x52\\x31\\xba\\xdc\\x0a\\x81\\x93\\xbd\\xa4\\x0d\\xae\\x51\\xb4\\x5c\\xac\\xe6\\x84\\x27\\xa4\\x1f\\xb1\\x73\\xbe\\xbc\\x6f\\x3b\\xff\\xfc\\x7a\\x18\\x5f\\x9e\\x9e\\x6e\\xde\\x01\\x29\\x62\\x3c\\xc8\\x3b\\xcd\\xfb\\x46\\x8f\\xc0\\xff\\x53\\xc2\\x4c\\xaf\\xb1\\x5c\\x0d\\xc6\\x0f\\x8c\\x8f\\x1b\\xcb\\xf8\\xed\\xe1\\xf8\\xfe\\x18\\x76\\xdc\\x33\\xeb\\x06\\xe4\\xde\\xe3\\xb6\\x0f\\x5a\\x2f\\xda\\xb0\\xaf\\x71\\x31\\x1e\\x79\\x0f\\xcb\\xa1\\x67\\x68\\xf7\\xa9\\xcb\\xba\\x1f\\xf3\\x07\\xa4\\xbb\\x7f\\x2e\\x93\\xb0\\x7f\\x76\\x8b\\x54\\x5a\\x76\\x1b\\xdf\\x81\\x71\\x47\\xb1\\x1f\\x90\\xa7\\x27\\x49\\xd7\\x95\\xb2\\x74\\x0d\\x11\\xe6\\xcc\\xd8\\xbf\\xe0\\x32\\x88\\x70\\x73\\xab\\x62\\xd0\\x44\\x3f\\x04\\xaf\\x4c\\xb4\\x1d\\xf8\\x1c\\xac\\x83\\x51\\x6c\\x94\\xd3\\x7d\\x05\\xbb\\x30\\xc9\\xab\\x67\\x8e\\x77\\xe8\\x8f\\x45\\x2b\\x52\\x05\\xd4\\x5f\\xb4\\xce\\x21\\x13\\x52\\x63\\x11\\x14\\x17\\xcc\\x8d\\x2b\\x3c\\xbe\\x01\\x60\\x31\\x49\\x56\\x4e\\xfa\\xf5\\xce\\xde\\xf7\\xe7\\x69\\x09\\xb5\\xc6\\xb7\\x09\\x74\\x82\\xf8\\x0e\\xad\\x56\\x99\\x61\\x67\\x2c\\x4a\\x63\\xe1\\x4b\\x66\\x95\\x28\\xc7\\x41\\x6d\\xa0\\x1d\\x84\\x13\\xe6\\xfe\\xc0\\xbf\\x41\\x3e\\xf6\\xe7\\xe9\\xeb\\x1d\\xb2\\x69\\x51\\xb6\\xd6\\x1b\\x32\\xae\\xb2\\x01\\x19\\xb7\\x60\\x03\\xb2\\x73\\x2e\\xfd\\x2a\\xb0\\x11\\x3e\\x9f\\x3c\\x72\\x53\\x05\\x66\\x03\\xda\\x9b\\x69\\x4e\\xa7\\xdf\\x4e\\x2b\\xa9\\xe3\\xa9\\x64\\x09\\xb3\\xd8\\xd4\\x29\\xf3\\x11\\xaa\\xc0\\x8d\\x34\\xb1\\x13\\x16\\xdf\\x08\\x29\\x3e\\x51\\x72\\x87\\xcb\\x34\\x63\\x9c\\x07\\x83\\xe3\\x51\\x5f\\xfd\\x5b\\xb8\\x40\\x4e\\x38\\xd8\\x52\\x54\\x46\\x3e\\xf5\\x36\\x67\\xf0\\x6d\\xa8\\x67\\x4e\\x19\\xe2\\x9f\\xbc\\xc7\\x9f\\xcb\\x9b\\xce\\x92\\xaf\\xd1\\xdf\\xbf\\x0a\\xef\\x37\\x5c\\x7f\\x7c\\x1e\\xfb\\x55\\x36\\xd7\\x5c\\x24\\x6e\\x34\\x84\\x6f\\xba\\x90\\xc4\\x72\\xf2\\x01\\x1f\\xb4\\xaf\\x67\\xc6\\x3a\\xcf\\xa9\\x14\\x56\\x65\\x4e\\xaf\\xe1\\x20\\x91\\xa4\\x0f\\xc0\\xac\\x09\\x23\\x42\\x03\\x30\\xac\\xc9\\xaa\\x66\\x57\\x4e\\x62\\x4b\\x3b\\x21\\x77\\x39\\xa6\\xd7\\x2f\\x36\\x67\\xe5\\x4b\\xee\\x40\\x23\\x96\\x94\\x71\\xec\\x12\\xe0\\x3f\\x2c\\xef\\x64\\x8b\\xaf\\xa4\\xd5\\x7a\\x22\\x3c\\xd2\\x42\\x78\\x14\\xab\\xd9\\x07\\x91\\x4c\\x4b\\x36\\x00\\xfd\\x34\\x16\\x65\\x8a\\xbe\\x36\\x70\\x39\\x78\\xcf\\xa9\\xf3\\x05\\x56\\x62\\x2a\\x63\\x72\\x34\\xe1\\x24\\xa7\\x12\\x28\\x1c\\xa0\\x74\\x18\\x61\\xee\\xcb\\xe7\\xfb\\xed\\xf7\\xf8\\xed\\xd7\\xd3\\xf3\\x32\\xab\\x67\\x2a\\x91\\xb9\\x38\\x28\\x9f\\xe2\\x60\\x78\\xa7\\x60\\x86\\x46\\xfe\\xd2\\x7d\\x71\\xec\\xdb\\x87\\x97\\x9f\\xfe\\x48\\x99\\x8e\\xc2\\x7a\\xbb\\xc2\\xc6\\xac\\x07\\x10\\x06\\x28\\x4e\\xa4\\xcc\\xe6\\xa2\\xfa\\xeb\\x9d\\x27\\xfc\\xe5\\x71\\xf5\\x78\\xf4\\x75\\x26\\x70\\x77\\x60\\x4f\\xce\\xb4\\xf5\\x8f\\xf8\\x28\\x59\\xe9\\x4a\\x3e\\xd0\\x31\\xc9\\x1c\\x19\\xd9\\x01\\x9f\\xd6\\x78\\xa5\\x05\\x3f\\xe1\\x4b\\x47\\x0b\\x74\\x50\\x05\\x2d\\x48\\xcb\\xa9\\x1e\\x26\\x99\\x73\\xd6\\x3b\\x83\\x64\\x8f\\xb1\\x45\\x71\\xf8\\xbe\\x28\\x8f\\x54\\x17\\x99\\x04\\xba\\x4a\\x24\\xa4\\x1a\\x9b\\xd8\\x15\\x48\\x2f\\x81\\xda\\x59\\xf4\\x1e\\x7f\\x79\\xbc\\xf5\\x4c\\x2d\\xca\\xa6\\xc4\\x57\\x6a\\x22\\x67\\x19\\x9e\\xfe\\x2e\\x66\\x12\\xf9\\xe4\\x88\\x7c\\x17\\xde\\x24\\x6c\\xc1\\xfc\\xf2\\x5b\\x92\\xb6\\x48\\xf4\\xbb\\x8f\\x4a\\x57\\x37\\xca\\x0c\\xf2\\xe3\\x87\\x59\\x0b\\x6b\\x8d\\x81\\x65\\xec\\x41\\xa9\\xed\\xae\\x4c\\x91\\x40\\x2f\\x86\\x2e\\x68\\xfb\\x4a\\x38\\xed\\x45\\x75\\x88\\xfe\\x61\\x71\\x96\\x44\\x33\\x56\\x19\\x1a\\x98\\x43\\xde\\x3c\\x90\\x3d\\x84\\x75\\x15\\x2a\\xe9\\x4c\\x67\\x38\\x9a\\xcc\\x3c\\xaa\\x96\\x37\\x4c\\x03\\xac\\xa3\\x14\\xbb\\x26\\xc2\\xab\\x66\\x99\\x75\\x5d\\xed\\x0f\\xa0\\xc3\\xf3\\xe9\\xb9\\x3f\\x5d\\x6e\\x9c\\x08\\x37\\x07\\x66\\xaf\\xbb\\xcf\\x6f\\x50\\x60\\xc1\\x8a\\x17\\xb7\\x8c\\xe1\\xbd\\x0d\\x55\\x8a\\x1e\\x0d\\xbc\\x3b\\x5d\\x20\\x43\\x60\\x52\\x08\\x57\\x06\\x52\\xfc\\xf2\\xce\\x4f\\xaf\\xfc\\xf4\\xc6\\x37\\xf5\\x95\\xaf\\xc0\\xd4\\xe8\\x14\\x62\\x7b\\x46\\xf8\\xdb\\x7c\\xe6\\x7d\\xbe\\x4b\\x60\\x55\\x72\\x93\\x78\\x53\\x94\\x3f\\xb8\\x9b\\x4c\\x56\\x77\\x34\\xf5\\x2c\\xe9\\x52\\xd5\\xd1\\x69\\x7f\\x98\\x25\\xf6\\x6d\\x8c\\xc1\\x55\\x5d\\x7a\\xe8\\x2c\\x82\\x8c\\xd5\\x25\\xa3\\x92\\x17\\x36\\x9d\\xf7\\xc4\\xe9\\xc5\\xad\\x0f\\x7f\\x6e\\x11\\xd2\\xc5\\xf9\\x31\\x1d\\xd3\\xd4\\x72\\x20\\xbd\\xc1\\x06\\xc6\\xb0\\xe6\\xef\\xda\\x6e\\x1d\\x6f\\x6d\\x5f\\x61\\xc8\\x49\\x5b\\x6a\\x9c\\x1f\\x50\\xf2\\x97\\x15\\xec\\xfd\\xa1\\x70\\xbe\\xac\\xde\\x3a\\x7c\\x5d\\x6a\\x59\\x71\\xc2\\x74\\x94\\xf4\\x52\\xc1\\xb8\\x65\\x2f\\xb6\\xc1\\xc2\\xcd\\xe6\\x00\\x5e\\x9f\\xb2\\xd3\\xf2\\x96\\x79\\xe3\\x6f\\x7c\\x7e\\xee\\xca\\x3f\\xb1\\xa0\\xf9\\x9d\\xcc\\x1b\\xa4\\xb1\\xce\\xc5\\xd5\\x3b\\x96\\xe3\\xe2\\xae\\x79\\x72\\xee\\xf1\\x83\\xbd\\x5b\\xc9\\xcb\\xf1\\xc7\\xff\\x9f\\xba\\xb3\\xdb\\x4d\\x1c\\x06\\xa2\\xf0\\x7d\\x9f\\x82\\x17\\xb0\\xc0\\x0e\\x71\\x6c\\x09\\xf1\\x2a\\x11\\x85\\xd0\\x6c\\x37\\x34\\x6d\\x03\\x2c\\xed\\xd3\\xaf\\x3c\\x33\\x49\\x4e\\x4a\\x05\\xb3\\xd2\\xde\\xf4\\xa2\\x6a\\x71\\xf2\\xb5\\xd8\\x2e\\x8e\\x7f\\x66\\xce\\x29\\x8f\\xd5\\x65\\xf2\\x4c\\x1c\\xcb\\xd0\\x0b\\x6a\\xbb\\x4c\\x0f\\x45\\xe9\\xdd\\xde\\x38\\x7f\\x6a\\xa4\\xdf\\x3b\\xf0\\x88\\x0c\\x04\\x4b\\x3a\\xf0\\x5e\\x5a\\xb8\\x73\\x68\\x50\\x1b\\x17\\x38\\x45\\xbd\\x08\\x43\\x58\\x0e\\x06\\xda\\xd5\\x5f\\x82\\xea\\x30\\xab\\xfc\\x66\\x15\\x3f\\xda\\xd3\\xf1\\xf4\\x58\\x95\\x5d\\xb5\\x79\\xdf\\xd6\\xd5\\xae\\xdc\\xb7\\xb8\\x0b\\xf5\\xfd\\x65\\x14\\x88\\x69\\xfa\\x4f\\x10\\xa9\\x81\\x9a\\x6c\\x3c\\x54\\x39\\x93\\xbb\\xcd\\xcc\\x53\\xff\\xd1\\x3f\\x75\\xce\\xe2\\xa2\\x86\\x4c\\x1b\\x32\\xd2\\x71\\x63\\x9d\\xa9\\x82\\x56\\xf4\\x36\\x36\\x2c\\x06\\xca\\x0e\\x40\\x8e\\x32\\x12\\xe9\\x38\\x7f\\x9b\\xa7\\xe6\\x89\\x7e\\x10\\x78\\xeb\\x46\\x65\\x37\\x7a\\x25\\x5a\\x6f\\x86\\x8b\\xea\\xf4\\x29\\x22\\x3d\\xf4\\xbc\\x31\\xc1\\xcd\\xc8\\x80\\x9e\\x95\\x71\\xbc\\xa3\\x89\\x80\\x7c\\x75\\x34\\x9f\\x90\\xb2\\xde\\x7e\\x46\\x16\\x1d\\xa4\\x46\\x93\\x86\\x90\\xb8\\x68\\xfc\\xcc\\xf8\\xfa\\xce\\xe1\\xec\\x67\\xdb\\x1e\\xa6\\xa9\\xf9\\x43\\xc9\\x98\\xa8\\x12\\xe3\\xe8\\xc3\\xc4\\xba\\x96\\x86\\x0d\\x2d\\x59\\x61\\xc0\\xd9\\xde\\x85\\xc9\\x38\\x2b\\xa6\\x67\\x36\\xfb\\xc7\\xda\\x77\\xf2\\x23\\xbf\\x12\\xaf\\xc3\\x69\\x47\\xb9\\xbe\\xa3\\x68\\x00\\x3c\\xa7\\xc5\\xeb\\xcd\\x8e\\x2a\\x38\\x78\\x23\\xcd\\xa0\\x2c\\x7f\\xb7\\x59\\xe8\\xae\\xda\\x32\\x48\\x5b\\x06\\xba\\x87\\x4e\\x1f\\x33\\x89\\x67\\xf1\\xc3\\x6f\\xd4\\x37\\x66\\x7b\\x3a\\x7e\\x6d\\x4d\\x2a\\x9a\\x1c\\x1f\\x73\\x9c\\x9f\\x95\\xf0\\xed\\x1f\\xdf\\x68\\xff\\xa1\\xcd\\xca\\xc3\\xe6\\xf5\\x9b\\x76\\xe3\\xe2\\x31\\xfd\\x2b\\x3a\\xb0\\xc6\\x16\\x99\\x0e\\xef\\x66\\x9e\\xac\\xed\\x33\\xdb\\xa4\\x37\\xed\\x5d\\xef\\x7d\\xcb\\xfa\\x14\\x72\\xab\\x59\\xc6\\x74\\xd9\\x3b\\x71\\xc1\\x27\\x90\\xac\\xe1\\x24\\x90\\x5b\\x6c\\xbe\\xd9\\x0e\\x29\\xdd\\x4c\\x97\\x65\\x84\\x48\\xb7\\x27\\x78\\x30\\x03\\xbb\\x96\\x0b\\xe1\\xbf\\x2d\\xfa\\xc2\\x0d\\xbd\\xab\\x9b\\x55\\x47\\x81\\xf9\\x4c\\x2a\\xb9\\xb8\\x33\\x79\\xc4\\x25\\xe2\\x4e\\xc9\\x94\\xc0\\x94\\x4a\\x06\\x87\\xd3\\x77\\x25\\x83\\x7b\\xea\\xad\\x92\\x99\\xc8\\x70\\x28\\x19\\xcc\\xa8\\xd9\\x28\\x19\\x5c\\x42\\xfc\\x52\\x32\\x38\\x2a\\xbe\\x28\\x19\\xdc\\xd0\\xda\\x2a\\x99\\x13\\xe6\\xc3\\x2b\\x19\\x8c\\x52\\xa9\\x94\\x0c\\xae\\xf2\\x3a\\x25\\x83\\x01\\x53\\x8d\\x92\\xc1\\xa8\\xe3\\x83\\x92\\xc1\\x8d\\xaa\\x47\\x25\\x83\\xfb\\xb2\\x1f\\x4a\\xe6\\x0f\\x4e\\x8a\\x94\\xcc\\x05\\x98\\x8b\\x92\\xc1\\xb1\\xec\\x55\\xc9\\xe0\\xe1\\x62\\xad\\x64\\x70\\x3d\\xf3\\xa4\\x64\\xde\\x80\\x79\\x53\\x32\\xcf\\xc0\\x3c\\x2b\\x19\\x8c\\x6e\\xda\\x2b\\x19\\x54\\xbc\\x39\\x2b\\x19\\x9c\\xd2\\xff\\x56\\x32\\x9f\\xf8\\xac\\x51\\x32\\x16\\x18\\xab\\x64\\x1c\\x30\\x4e\\xc9\\x2c\\x81\\x59\\x2a\\x99\\x1c\\x98\\x5c\\xc9\\x78\\x60\\xbc\\x92\\x29\\x80\\x29\\x94\\x4c\\x04\\x26\\x2a\\x99\\x00\\x4c\\x50\\x32\\xe8\\x0f\\xb5\\xb8\\x66\\x56\\xf3\\x7d\\xfb\\x72\\x5c\\x3f\\xac\\xe6\\xbb\\x6a\\xdf\\xad\\x57\\xf3\\xee\\xfc\\xb4\\x7e\\xf8\\x1b\\x00\\x00\\xff\\xff\\x72\\xc3\\x47\\x2f\\x3a\\x4c\\x04\\x00\")\n\nfunc vendor_material_icons_materialicons_regular_svg() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_material_icons_materialicons_regular_svg,\n\t\t\"vendor/material-icons/MaterialIcons-Regular.svg\",\n\t)\n}\n\nvar _vendor_material_icons_materialicons_regular_ttf = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xec\\xbd\\x79\\x7c\\x1b\\xd5\\xb9\\x30\\xfc\\x1c\\x6d\\x63\\x79\\x1f\\x49\\xa3\\xb1\\x24\\x5b\\x8b\\xc7\\xd2\\xd8\\x33\\x72\\x1c\\x6b\\x34\\x1a\\x67\\x73\\x26\\x9b\\xb3\\x38\\x09\\x09\\x61\\x94\\x84\\xa5\\x4d\\x42\\x12\\xc0\\x22\\x90\\x40\\x56\\x08\\x30\\x05\\xca\\xbe\\x16\\x94\\x96\\x3d\\x65\\x2d\\x16\\x7b\\xcb\\xd6\\xd2\\x56\\xbd\\xa5\\x2d\\x6d\\xa0\\xdb\\xbd\\xf2\\xdb\\x16\\x28\\x4e\\x02\\x21\\xc4\\x6d\\x69\\xfb\\x96\\x5e\\xda\\x4b\\xe5\\xef\\x77\\xce\\x8c\\x64\\xc9\\x31\\xbd\\xb7\\xdf\\xed\\x7b\\x7f\\xef\\x1f\\xaf\\xec\\x19\\xcd\\x7a\\xce\\x73\\x9e\\xf3\\xec\\xe7\\x39\\x47\\x80\\x00\\xa0\\x09\\x74\\xb0\\xc2\\xf6\\xc5\\x0b\\x17\\x0d\\xd8\\x00\\xd6\\x00\\xba\\xb1\\x06\\x00\\x3a\\x16\\xaf\\x3a\\x65\\xcd\\x68\\xcb\\x87\\xf7\\x02\\xba\\x31\\x0e\\x00\\xa9\\xc5\\x6b\\xb4\\xf9\\xef\\xfe\\xfc\\xf1\\xd5\\x80\\x6e\\xdc\\x0c\\x70\\xde\\xaa\\x53\\xd6\\xf4\\x24\\x6a\\x2f\\x6e\\x3f\\x1b\\x00\\xed\\x05\\x80\\x0d\\x67\\x6f\\xdb\\xb8\\xfd\\x0f\\xbf\\xef\\x1d\\x05\\x70\\xee\\x05\\x70\\x58\\xce\\xde\\xbd\\x33\\x0c\\x34\\x5a\\x08\\xd0\\xb4\\x1f\\x00\\x6c\\xe7\\x6c\\xbc\\x78\\xfb\\xf8\\x38\\x58\\x01\\xdd\\x08\\x00\\x50\\x73\\xce\\xf9\\xfb\\xb6\\x2e\\xbc\\xec\\x37\\x36\\x00\\xb6\\x15\\xd0\\x45\\x4b\\xce\\xdd\\xb2\\x71\\xb3\\xe3\\x57\\x37\\x6e\\x05\\x80\\x4f\\x70\\x7d\\xe7\\x9e\\xbb\\x65\\xa3\\x0d\\x59\\x6c\\x00\\x28\\x89\\xe1\\x39\\x77\\xdb\\xce\\xbd\\x43\\xc7\\xce\\x1b\\x00\\x40\\xbf\\x00\\xa0\\x0e\\x9e\\x7f\\xe1\\xd9\\x1b\\x67\\x75\\x1d\\xf8\\x3c\\x40\\x93\\x0e\\x40\\xdd\\xbb\\x6d\\xe3\\xde\\xed\\x36\\x1e\\x0e\\x03\\xa0\\x75\\x00\\x10\\xbe\\x60\\xe3\\xb6\\x2d\\xad\\x4d\\xf2\\xbb\\x80\\xae\\xdf\\x0c\\x80\\x2e\\xd9\\x7e\\xe1\\xc5\\x3b\\xc7\\xaf\\x81\\x04\\xa0\\x1b\\x46\\xf1\\x7d\\xd2\\x76\\x64\\xf9\\xe9\\x29\\xdf\\x6e\\xbf\\xee\\xb3\\x4d\\xb3\\x3f\\x02\\xa7\\x05\\xc3\\x05\\x3f\\xff\\xf5\\x43\\x3f\\x32\\xbf\\xdf\\x00\\x18\\x2f\\x5a\\x00\\xc3\\x00\\x35\\x60\\xdc\\x06\\xfc\\x9e\\x71\\x58\\xde\\x23\\xa8\\xfe\\x58\\xf1\\x15\\xeb\\x1b\\xf0\\x0c\\xb4\\x94\\x1f\\x44\\xe4\\x29\\x15\\xa6\\x91\\x2b\\x36\\x0b\\xa0\\xdb\\xc0\\x0e\\x80\\x96\\x23\\xdc\\xe2\\xc5\\xe6\\xf7\\x47\\xe0\\x83\\xab\\xf1\\x0b\\x76\\x6b\\xb9\\x34\\xe4\\xc2\\x2f\\x54\\x96\\xaf\\xc3\\xf4\\xf1\\xf1\\x4a\\x18\\xaa\\x20\\x08\\x83\\x68\\x01\\xa0\\x2b\\xee\\xfe\\xb3\\x3e\\x22\\x88\\xc0\\x80\\x0a\\x22\\xa8\\xa0\\x82\\x46\\x36\\xb9\\x7c\\x96\\x81\\x0c\\xb9\\x27\\x9a\\xcf\\x89\\xa0\\x93\\xa3\\x5c\\xf9\\x9a\\x6a\\xbe\\x8f\\x9f\\xd6\\x40\\x27\\xf7\\xf5\\x8a\\x7b\\x19\\xc8\\x92\\xbb\\xf8\\xac\\x1d\\x18\\xf2\\x54\\xe9\\x8f\\x21\\x25\\xe2\\xbf\\x89\\x63\\xfc\\x1d\\x37\\x4b\\x65\\xcc\\xab\\xaa\\xb9\\x07\\xd0\\x60\\x0f\\xa8\\x90\\x01\\xcd\\x2c\\x5d\\x24\\xf5\\x8a\\xa4\\x1e\\xd5\\xac\\xcf\\x28\\x51\\x22\\x67\\xc6\\xe7\\x0c\\x60\\x20\\x43\\x36\\x91\\x5c\\x63\\xcc\\xb7\\xfa\\xcd\\xf2\\x81\\xf4\\xa2\\x56\\x6e\\xab\\x4a\\xf0\\x92\\x31\\x8f\\x0d\\xd8\\x71\\x9d\\x73\\xca\\xb8\\x88\\x94\\xef\\x02\\x79\\xa2\\xf4\\xcc\\xc4\\x1b\\x4c\\x19\\x43\\xa5\\xbf\\x6c\\xf9\\x2f\\x63\\x62\\xba\\xc9\\xfc\\xc3\\xed\\x87\\x72\\x7b\\x19\\xb3\\x3f\\x6a\\xcc\\xd2\\x0c\\xd8\\x11\\xc1\\x91\\xd1\\x32\\x5c\\x7a\\x0d\\x38\\xc9\\x13\\x5b\\x09\\xac\\x59\\xb8\\xd6\\x84\\xa3\\x04\\xcf\\xc9\\x7f\\x59\\xd2\\x52\\xcd\\x7c\\x42\\x87\\x30\\xe9\\x67\\xcd\\xc4\\x5c\\x86\\x1c\\xe9\\xa4\\xe6\\x12\\x76\\x55\\xd8\\x53\\x6e\\xbb\\x5a\\xee\\xb5\\xb5\\x04\\x92\\x41\\xf2\\x9c\\x6c\\xe2\\x09\\xca\\xb8\\xc6\\x9f\\x4c\\xb9\\x17\\x8c\\x5e\\x04\\x13\\xcf\\x7a\\x19\\x3b\\x3a\\xe4\\xe0\\x45\\x52\\x9b\\x6e\\x3e\\x95\\x29\\xbf\\x5d\\xa2\\x3b\\x28\\xb7\\xc5\\x38\\xd7\\x4c\\xbc\\x30\\x84\\x8a\\x4a\\x47\\xa2\\x09\\xa1\\x51\\xb6\\x6c\\x42\\xa4\\x97\\x71\\x5b\\xea\\x31\\x03\\x26\\xb5\\x4c\\xe9\\x06\\x75\\xa8\\x04\\xbf\\x95\\x58\\x2a\\xd1\\x56\\x09\\x0f\\x78\\xfb\\x4a\\x55\\xdf\\x54\\xf6\\x92\\x41\\x29\\x06\\xcd\\xf6\\x9a\\xf0\\x65\\x4d\\x98\\xf1\\x9d\\x20\\x29\\x9f\\x01\\xc1\\xac\\x97\\x29\\x43\\x50\\x59\\xab\\x01\\xa1\\x4e\\x20\\xc4\\x78\\x51\\xcd\\x76\\x69\\x15\\xf4\\x6d\\xbc\\xe3\\x22\\xd8\\xc7\\x47\\x2d\\x15\\x3c\\x06\\xb0\\x1e\\x54\\x88\\x96\\xa9\\x4f\\x25\\xb8\\x33\\xb0\\x53\\x82\\x75\\xb9\\xd9\\x47\\xa5\\xba\\x0d\\x5a\\xc0\\x6f\\x69\\x26\\xe7\\x96\\xe4\\xc0\\x44\\xb9\\x13\\x52\\x81\\x21\\x6f\\x69\\xe6\\x99\\x48\\x7a\\x6e\\x02\\xf2\\x99\\x65\\x19\\x80\\x9f\\xda\\x60\\xe2\\x7a\\xa6\\x79\\xae\\x41\\xbf\\x29\\x47\\x32\\x65\\x19\\x63\\xd0\\x9d\\x48\\x6a\\xce\\x12\\x9c\\xe1\\x52\\x97\\x92\\xd6\\x67\\x88\\x14\\xc9\\x98\\x5c\\x52\\x80\\x34\\xdc\\x0f\\xf7\\x93\\xe7\\x0d\\x38\\xf7\\x54\\xc8\\xa4\\x4a\\x0c\\x42\\x05\\x4e\\xc1\\xa4\\x57\\x03\\x8b\\x73\\x4c\\xde\\x2c\\xf5\\x96\\x00\\x61\\x53\\xa2\\x94\\x7a\\xd9\\xc0\\x91\\x4e\\x5a\\xaa\\x99\\xf2\\x01\\x3f\\x51\\x28\\xf7\\x43\\x49\\xd2\\x81\\x59\\x9b\\x66\\x96\\xaf\\x55\\xd0\\xa4\\x21\\xdd\\x4a\\x12\\x51\\xab\\xe0\\x7d\\xb5\\x02\\xb3\\x22\\xa0\\x32\\x66\\x4b\\x72\\x82\\x2b\\x73\\x4b\\x35\\xcf\\x6a\\xa4\\x97\\x0c\\xea\\x6f\\x2c\\x4b\\x48\\xad\\x4c\\xf5\\xb8\\xb6\\xa5\\xe0\\x9c\\x54\\xbe\\x68\\xc2\\xa1\\x56\\xf1\\xa1\\x48\\xf0\\xaa\\x95\\xcb\\x50\\x2b\\xfa\\x77\\x02\\x57\\x6a\\x99\\xfa\\x0c\\x7c\\x65\\x4c\\x89\\x81\\xb1\\x5b\\x57\\x81\\x77\\xa3\\xcd\\x06\\x56\\xbb\\xcd\\x27\\x75\\x60\\x80\\x36\\x71\\x99\\x31\\x39\\x44\\x83\\xd3\\xc9\\x53\\x25\\x59\\x9e\\x2c\\xd3\\xb4\\x5a\\x71\\x5d\\x33\\xe5\\x44\\xa9\\x76\\xa6\\xac\\x3d\\x32\\x55\\x9c\\x38\\xa1\\x3b\\xc4\\x0a\\xed\\x21\\x56\\x49\\x6b\\xa3\\x04\\x19\\x78\\x42\\x45\\xf8\\xed\\xd3\\x4d\\x59\\x9f\\x21\\x75\\x6c\\x31\\xa1\\x2e\\x3d\\x0f\\xa4\\xb4\\x5c\\xb9\\xd7\\xd5\\x32\\x27\\x18\\xd2\\x32\\x63\\xf6\\xfb\\xdc\\xb2\\x26\\x12\\xcb\\x7d\\x3f\\x51\\x3f\\xfe\\xd8\\x89\\x9d\\x00\\x80\\x6d\\xab\\x5a\\x00\\x4b\\xab\\xa1\\xc3\\x6d\\x9f\\x18\\xd6\\x03\\xc4\\xc1\\x6a\\x5e\\xb7\\xa1\\xdf\\x03\\xc0\\x5e\\x50\\xc1\\x0e\\x7d\\x30\\x03\\x3e\\x0b\\x97\\x8c\\x5a\\x47\\x7d\\xa3\\x91\\xd1\\x8e\\xd1\\xf8\\x68\\xef\\xe8\\x8c\\xd1\\x35\\xa3\\x3b\\x46\\x5f\\x19\\xfd\\xf6\\xe8\\xab\\xa3\\xef\\x1d\\xde\\x76\\x38\\x7b\\xf8\\xde\\xc3\\xdf\\x3d\\xfc\\xda\\xe1\\x9f\\x1e\\x7e\\xf3\\xf0\\x91\\x23\\x9b\\x8f\\xbc\\x7a\\xe4\\x87\\x47\\x5e\\x3f\\x5a\\x73\\xb4\\xe5\\x68\\xdf\\xd1\\xd1\\xa3\\xbf\\x7b\\xd7\\xfd\\xee\\xb4\\x77\\x67\\xbf\\x97\\x7a\\xef\\xa2\\xf7\\xde\\x3e\\x16\\x3e\\xb6\\xe8\\xd8\\xf7\\x8e\\xbd\\x7d\\xec\\x9d\\x63\\x87\\xdf\\xff\\xe0\\x38\\x3a\\xde\\x78\\x9c\\x39\\x3e\\xf3\\xf8\\xea\\xe3\\x17\\x1f\\x7f\\xe1\\xf8\\x8f\\x3f\\x80\\x0f\\x1c\\x1f\\x34\\x7d\\x20\\x8e\\x2d\\x1f\\x1f\\x07\\x80\\xe9\\xf0\\x59\\xd8\\x38\\x0a\\xa3\\xbe\\xd1\\xc0\\x28\\x37\\xda\\x39\\x3a\\x6d\\x54\\x1a\\x9d\\x35\\xaa\\x8d\\x3e\\x3d\\xfa\\xad\\xd1\\xef\\x8e\\x7e\\xff\\xf0\\xa2\\xc3\\xb7\\x1d\\xbe\\xf7\\xf0\\x43\\x87\\x5f\\x3b\\xfc\\xc6\\xe1\\x5f\\x1c\\x1e\\x3d\\x12\\x3b\\xf2\\xca\\x91\\xef\\x1f\\x79\\xfd\\x28\\x75\\xb4\\xf6\\xa8\\xff\\xe8\\x7d\\x47\\x8f\\x1c\\xfd\\xc3\\xbb\\xcc\\xbb\\xd3\\xdf\\xeb\\x7e\\x6f\\xc6\\x7b\\xdf\\x3d\\xd6\\x78\\x8c\\x3b\\xf6\\x6a\\xa9\\xe6\\xf7\\x7f\\x77\\xbc\\xee\\x38\\x7d\\x3c\\x79\\x7c\\xc5\\xf1\\x35\\xc7\\x77\\x1d\\x7f\\xe9\\xf8\\x4f\\x3f\\xb0\\x7c\\x50\\xf3\\x01\\x3d\\x36\\x6b\\x7c\\x7c\\xfc\\x5f\\xc7\\x9f\\x1a\\x7f\\x32\\xdc\\x19\\x76\\x87\\x5d\\x61\\x3a\\xdc\\x18\\x6e\\x08\\xd7\\x87\\xeb\\xc2\\xb5\\xa1\\x37\\x42\\xaf\\x87\\x7e\\x18\\x7a\\x2d\\x74\\x5e\\x68\\x71\\x68\\x5e\\x68\\x56\\x48\\x09\\x49\\xa1\\x78\\xa8\\x33\\xf8\\x5e\\xf0\\x96\\xe0\\xcd\\xc1\\x1b\\x83\\xab\\x83\\xab\\x82\\xa7\\xb4\\x8d\\xb5\\x9d\\x68\\x3b\\xde\\xf6\\x7e\\xdb\\xb1\\xd6\\x3f\\xb7\\xfe\\xa9\\xf5\\xe1\\xd6\\x9d\\xad\\x17\\x05\\xfe\\x14\\x78\\x3b\\xf0\\x56\\xe0\\x4d\\xff\\xbf\\xf9\\x7f\\xea\\xff\\x81\\xff\\x7b\\xfe\\xc7\\xfc\\x59\\xff\\x9d\\xfe\\x3b\\xfc\\x5f\\xf0\\xdf\\xee\\xbf\\xcd\\x7f\\xab\\xff\\x96\\x96\\x2b\\x4e\\xb2\\xe9\\xfe\\xe7\\x3e\\xf5\\x78\\x67\\x19\\x35\\xcf\\x66\\x13\\xcc\\x03\\xcc\\x30\\xe9\\xe5\\xb3\\xe6\\xd6\\x00\\x00\\x1b\\x01\\xe0\\x12\\x00\\x68\\x04\\xc0\\x8f\\x8f\\xe2\\xfb\\x9d\\x00\\xa3\\x3e\\x63\\xc3\\xb4\\x35\\x1a\\x00\\x18\\x8d\\x00\\x40\\x37\\xc0\\x28\\x07\\x30\\xda\\x01\\x00\\x49\\x80\\x51\\xfc\\x1c\\xb1\\xeb\\x01\\x46\\xa7\\x01\\x8c\\xf6\\x02\\xc0\\x2c\\x80\\x51\\x09\\x60\\x74\\x06\\xa1\\x60\\x18\\xc5\\xe7\\x6b\\x00\\x60\\x00\\x60\\x54\\x03\\x18\\xdd\\x61\\xd4\\x3d\\xfa\\x34\\xc0\\xe8\\x2b\\x00\\xb0\\x1f\\x60\\xf4\\x5b\\x00\\xa3\\xdf\\x06\\x80\\x1b\\x00\\x46\\xbf\\x0b\\x30\\xfa\\x2a\\x00\\xdc\\x04\\x30\\xfa\\x7d\\x80\\xd1\\xf7\\x00\\xe0\\x16\\x80\\xc3\\x8b\\x00\\x0e\\x6f\\x03\\x80\\xa7\\x00\\x0e\\xdf\\x06\\x70\\x38\\x0b\\x00\\xff\\x0b\\xe0\\xf0\\xbd\\xc6\\x06\\x6f\\x03\\x1c\\x7e\\x08\\xe0\\xf0\\x77\\x01\\xe0\\xd7\\x00\\x87\\x5f\\x33\\x36\\x18\\x07\\x38\\xfc\\x06\\xc0\\xe1\\x9f\\x1a\\x06\\xee\\xe1\\x5f\\x00\\x1c\\x7e\\x13\\x00\\xd9\\x00\\x0e\\x8f\\x02\\x1c\\x3e\\x02\\x80\\x6a\\x00\\x8e\\xc4\\x00\\x8e\\x60\\x1b\\xbf\\x0e\\xe0\\xc8\\x2b\\x00\\x47\\x5e\\x05\\x40\\xcb\\x00\\x8e\\x7c\\x1f\\xe0\\xc8\\x0f\\x01\\xd0\\x1a\\x80\\x23\\xaf\\x1b\\x1b\\x5a\\x0b\\x70\\x94\\x02\\x38\\x5a\\x63\\xf8\\x09\\x47\\x6b\\x01\\x8e\\xb6\\x00\\xa0\\xd3\\x01\\x8e\\xfa\\x01\\x8e\\xf6\\x01\\xa0\\xf3\\x00\\x8e\\xde\\x07\\x70\\x74\\x14\\x00\\x5d\\x07\\x70\\xf4\\x08\\xc0\\xd1\\xdf\\x01\\xa0\\xd7\\x01\\x8e\\xfe\\x01\\xe0\\x5d\\x37\\x00\\xfa\\x25\\xc0\\xbb\\x0c\\xc0\\xbb\\xd3\\x00\\xd0\\x27\\x00\\xef\\x4e\\x07\\x78\\x77\\x36\\x80\\xc5\\x0b\\xf0\\x5e\\x37\\xc0\\x7b\\x29\\x00\\x0b\\x07\\xf0\\xde\\x0c\\x80\\xf7\\x2e\\x02\\xb0\\xe0\\x6b\\xdf\\x05\\x78\\xef\\x6d\\x00\\xcb\\x39\\x00\\xc7\\x1a\\x01\\x8e\\x85\\x01\\x2c\\x57\\x02\\x1c\\xe3\\x00\\x8e\\x2d\\x02\\xb0\\x64\\x01\\x8e\\xbd\\x0a\\x70\\xec\\x7b\\x00\\x96\\x97\\x00\\x8e\\xbd\\x6d\\x6c\\x96\\xaf\\x03\\x1c\\x7b\\xc7\\xd8\\x2c\\xdf\\x00\\x38\\x76\\xd8\\xd8\\x2c\\xaf\\x00\\xbc\\xff\\x81\\xb1\\x59\\xbe\\x09\\xf0\\xfe\\xef\\x00\\x8e\\x63\\xef\\xe4\\x5b\\x00\\xc7\\xeb\\x00\\x8e\\x37\\x02\\x58\\x7e\\x0e\\x70\\x9c\\x06\\x38\\xce\\x00\\x58\\x46\\x00\\x8e\\x27\\x01\\x8e\\xcf\\x04\\xb0\\xbc\\x09\\x70\\x7c\\x05\\xc0\\xf1\\xd5\\x00\\x96\\x23\\x00\\xc7\\xd7\\x00\\x1c\\xbf\\x18\\xc0\\xf2\\x3e\\xc0\\xf1\\x5d\\x00\\xc7\\x5f\\x00\\xb0\\xd6\\x00\\x1c\\x7f\\x09\\xe0\\xf8\\x8f\\x01\\xac\\xcb\\x00\\x8e\\xff\\x14\\xe0\\x03\\x4c\\x86\\x1b\\x01\\x3e\\xb0\\x00\\x7c\\xe0\\x00\\xb0\\x7e\\x01\\xe0\\x83\\x1a\\x80\\x0f\\x9a\\x00\\xac\\x5f\\x04\\xf8\\x80\\x06\\xf8\\x40\\x04\\xb0\\x3e\\x00\\x30\\x36\\x0b\\x60\\x6c\\x39\\x80\\xf5\\xeb\\xd0\\x3c\\xfe\\x37\\xb2\\x81\\x15\\xf7\\x81\\x63\\xc2\\x61\\x41\\x96\\x29\\xdc\\x94\\x29\\x78\\xcf\\x6a\\xb3\\x3b\\xa8\\x1a\\x67\\x6d\\x5d\\xfd\\x7f\\x89\\x87\\x1a\\xa0\\xb1\\xa9\\x99\\x76\\xb9\\x3d\\x8c\\x97\\x6d\\xf1\\xf9\\x03\\xad\\x6d\\xc1\\x50\\x38\\xd2\\xce\\x75\\x44\\x63\\xfc\\x7f\\x8b\\x39\\xff\\x89\\x1f\\xe2\\x1b\\x43\\x17\\xf9\\xeb\\x85\\x19\\x30\\x0f\\x96\\xc2\\x6a\\x58\\x0f\\x1b\\xe1\\x3c\\xd8\\x01\\xfb\\xe0\\x73\\x70\\x3d\\xdc\\x0e\\x77\\xc1\\x97\\xe1\\x71\\x78\\x16\\x5e\\x86\\xef\\xc0\\x0f\\xe1\\x67\\xf0\\x4b\\x38\\x0c\\x1f\\xc0\\x1f\\xe0\\x2f\\x08\\x21\\x27\\xa2\\x91\\x0f\\x45\\x50\\x17\\xea\\x45\\x33\\xd0\\x3c\\xb4\\x14\\xad\\x46\\x17\\xa0\\x2c\\x7a\\x12\\xbd\\x6b\\xa9\\xb7\\x68\\x96\\xaf\\x58\\xf2\\x96\\x13\\x96\\x4f\\xac\\x0d\\x56\\xc9\\x7a\\xb5\\xf5\\x47\\xd6\\xbf\\xd8\\x3a\\x6c\\x1b\\x6c\\xf7\\xdb\\xbe\\x67\\xfb\\xc4\\x9e\\xb2\\xef\\xb0\\x3f\\x68\\x3f\\x64\\xff\\xb5\\xfd\\x3f\\x1c\\x9c\\xa3\\xc7\\x31\\xe0\\x38\\xd7\\x71\\x8b\\xe3\\x7b\\x8e\\xdf\\x53\\x31\\x6a\\x0b\\x75\\x15\\x35\\x4c\\x1d\\xa2\\x7e\\x5f\\x63\\xa9\\x61\\x6a\\x56\\xd4\\x9c\\x51\\x73\\x53\\xcd\\x2f\\x9d\\x94\\xb3\\xd3\\xb9\\xca\\xb9\\xd5\\xb9\\xdb\\xf9\\x35\\xe7\\x5b\\xb5\\xce\\xda\\x45\\xb5\\x17\\xd7\\xde\\x5f\\xd7\\x50\\x97\\xaf\\x8f\\xd4\\xdf\\xd6\\x30\\xd0\\xf0\\x78\\xc3\\x3b\\x8d\\xd3\\x1b\\x2f\\x6d\\xbc\\xbb\\xf1\\xf5\\xc6\\xb7\\x9b\\x50\\x93\\xdc\\x74\\x76\\xd3\\xb5\\x4d\\xdf\\x69\\xfa\\xb0\\x39\\xd5\\xbc\\xbe\\xf9\\xee\\xe6\\x57\\x9a\\xdf\\xa1\\x29\\xba\\x8b\\x5e\\x42\\xef\\xa6\\xef\\xa2\\x3f\\x74\\x05\\x5c\\x2b\\x5c\\x1b\\x5c\\x97\\xba\\x6e\\x77\\x3d\\xec\\xfa\\x8e\\xeb\\x37\\x6e\\x87\\x3b\\xe9\\xde\\xe1\\xfe\\x96\\x27\\xe9\\x59\\xef\\xb9\\xda\\x73\\x9f\\xe7\\xe7\\x8c\\x87\\x59\\xc1\\xec\\x62\\x1e\\x62\\xbe\\xc9\\x8c\\x7a\\xad\\xde\\x1e\\xef\\xed\\xde\\x5f\\xb1\\x01\\x76\\x03\\xfb\\x25\\xf6\\x1b\\xec\\xdb\\x2d\\xd0\\xd2\\xde\\x72\\x6a\\xcb\\xfe\\x96\\xaf\\xb6\\xfc\\xca\\x47\\xfb\\xd6\\xfb\\xee\\xf0\\x37\\xf8\\x67\\xfa\\x77\\xfa\\x1f\\xf0\\xff\\x28\\xe0\\x0c\\x04\\x03\\x03\\x81\\xd3\\x03\\x57\\x05\\x1e\\x0c\\xbc\\x1e\\x18\\x6f\\x9d\\xd6\\xba\\xb6\\x75\\x47\\xeb\\xc1\\xd6\\x3f\\xb4\\x89\\x6d\\xcb\\xda\\xce\\x6f\\xfb\\x7c\\xdb\\x5d\\x6d\\xc3\\xc1\\xc6\\xa0\\x12\\xcc\\x04\\x6f\\x0b\\x3e\\x1f\\xfc\\x59\\xf0\\xd7\\xc1\\x8f\\x42\\x6c\\x48\\x0c\\x2d\\x0d\\x9d\\x1f\\xfa\\x62\\xb8\\x36\\x1c\\x08\\x4b\\xe1\\xd5\\xe1\\x6d\\xe1\\x7b\\xc2\\x3f\\x8e\\x40\\x24\\x19\\xb9\\x20\\x72\\x5f\\xe4\\x47\\x91\\x62\\x7b\\xa2\\x7d\\x7d\\xfb\\x17\\xda\\xbf\\xdd\\xfe\\x2e\\xd7\\xc4\\xa5\\xb8\\x34\\xb7\\x9b\\x7b\\x81\\xfb\\x55\\x47\\x43\\x47\\x5f\\xc7\\x8e\\x8e\\xfb\\x3b\\x7e\\xd6\\xf1\\x71\\xb4\\x35\\xba\\x3c\\x7a\\x7d\\xf4\\xe5\\xe8\\xc7\\xb1\\x64\\x6c\\x4b\\xec\\xe9\\xd8\\x5f\\x78\\x81\\x5f\\xc5\\x9f\\xc5\\x5f\\xcc\\xbf\\xc0\\xff\\xad\\x33\\xd0\\xb9\\xa9\\xf3\\xf1\\x2e\\x67\\xd7\\xca\\xae\\xbd\\x5d\\xcf\\x77\\xfd\\x4b\\xd7\\x9b\\x5d\\x45\\xc1\\x25\\x88\\xc2\\x4c\\xe1\\x7a\\xe1\\x09\\x61\\x44\\x74\\x89\\xab\\xc4\\x83\\xe2\\x2f\\xe2\\xae\\xb8\\x12\\xbf\\xaf\\xbb\\xa5\\x7b\\x76\\xf7\\xc1\\xee\\x3f\\x4f\\xfb\\xcc\\xb4\\x5b\\xa7\\xfd\\xa9\\x47\\xe8\\xb9\\xbd\\xe7\\xdf\\xa7\\xb7\\x4e\\x9f\\x3f\\xfd\\xdc\\xe9\\xb7\\x4e\\xff\\xfa\\xf4\\xb7\\x7b\\xbd\\xbd\\xb3\\x7a\\xd7\\xf7\\x5e\\xd9\\xfb\\x44\\xef\\x77\\x7a\\x8f\\x27\\xb8\\xc4\\x67\\x13\\x37\\x25\\x1e\\x49\\xe4\\x13\\x6f\\x27\\xc6\\xa5\\x88\\x34\\x4f\\x5a\\x27\\x5d\\x2d\\x3d\\x27\\xfd\\x3c\\xd9\\x98\\xec\\x4f\\x5e\\x94\\x3c\\x90\\x7c\\x36\\xf9\\x7a\\x72\\x4c\\x46\\xb2\\x5b\\xde\\x24\\xef\\x93\\xef\\x96\\x9f\\x95\\xdf\\x4a\\x79\\x52\\xb1\\xd4\\xee\\xd4\\xbd\\xa9\\x1f\\xa4\\x7e\\x99\\xfa\\x48\\x91\\x94\\x45\\xca\\x1e\\xe5\\x4b\\xca\\x77\\x95\\xdf\\xf6\\x79\\xfb\\x4e\\xef\\xbb\\xb3\\xef\\x5b\\x7d\\x85\\xbe\\xb1\\x19\\xce\\x19\\xd3\\x66\\x6c\\x9c\\x71\\xd3\\x8c\\xef\\xcf\\xac\\x9b\\x39\\x7d\\xe6\\xfa\\x99\\x57\\xcf\\xfc\\xd1\\xcc\\x3f\\xcc\\x62\\x67\\xcd\\x9e\\xb5\\x65\\xd6\\x37\\x67\\xfd\\x78\\xd6\\x3b\\xb3\\x3e\\x9c\\x35\\x3e\\xdb\\x33\\x5b\\x98\\x7d\\xcd\\xec\\xfb\\x67\\xbf\\x3c\\xfb\\xdd\\x39\\xce\\x39\\xb1\\x39\\x67\\xcc\\xb9\\x72\\xce\\x1b\\x73\\x7e\\xd7\\xef\\xed\\x5f\\xd0\\x7f\\x71\\xff\\x73\\xfd\\x7f\\x9b\\xdb\\x39\\x77\\x70\\xee\\xb5\\x73\\x1f\\x9f\\x7b\\x5c\\xed\\x55\\x35\\xf5\\x72\\xf5\\x09\\xf5\\xdf\\xd4\\x4f\\xe6\\x85\\xe6\\x2d\\x9a\\x77\\xf6\\xbc\\x67\\xe7\\xfd\\x7e\\x3e\\x3f\\x7f\\xd5\\xfc\\xcb\\xe6\\xdf\\x3e\\xff\\x89\\x05\\xf3\\x17\\x14\\x16\\x7e\\x75\\xd1\\x63\\x8b\\x5e\\x5a\\xf4\\xf3\\x45\\xbf\\x19\\x68\\x1d\\x58\\x30\\x70\\xce\\xc0\\xdd\\x03\\xaf\\x0d\\x7c\\xb8\\xb8\\x67\\xf1\\x96\\xc5\\x0f\\x2f\\x7e\\x73\\x49\\x74\\xc9\\xd9\\x4b\\x9e\\x58\\xf2\\xf6\\x52\\x61\\xe9\\xa9\\x4b\\xaf\\x5a\\xfa\\xe4\\xd2\\xe3\\xcb\\x9c\\xcb\\xba\\x97\\x9d\\xba\\x6c\\xe7\\xb2\\xec\\xb2\\x97\\x97\\xfd\\x66\\xb0\\x71\\x70\\xe6\\xe0\\x99\\x83\\xfa\\xe0\\x5d\\x83\\x4f\\x0c\\x1e\\x5a\\x8e\\x96\\xb3\\xcb\\x97\\x2e\\x3f\\x67\\xf9\\x13\\xcb\\xc7\\x56\\x74\\xac\\xd8\\xb6\\xe2\\x95\\x15\\x1f\\xad\\x4c\\xac\\xdc\\xb7\\xf2\\x07\\xa7\\xa0\\x53\\x36\\x9e\\xf2\\xcc\\x2a\\xe7\\xaa\\xe9\\xab\\x2e\\x58\\xf5\\xe4\\xaa\\x77\\x56\\xfd\\x71\\x35\\xb7\\xfa\\xaa\\xd5\\xef\\x9e\\xca\\x9f\\xba\\xf4\\xd4\\x73\\x4e\\xdd\\x7b\\xea\\xbf\\xac\\xe9\\x58\\x73\\xd5\\x9a\\xc3\\xa7\\xf5\\x9e\\xb6\\xe7\\xb4\\xaf\\x9d\\xf6\\x96\\x66\\xd3\\xf6\\x69\\xf7\\x69\\x23\\xe9\\xba\\x74\\x30\\x7d\\x46\\xfa\\x89\\xf4\\xb7\\xd2\\xff\\xbe\\xb6\\x75\\xed\\xc2\\xb5\\xbb\\xd6\\x3e\\xbd\\xf6\\x5f\\xd7\\x51\\xeb\\xe4\\x75\\x7b\\xd7\\x3d\\xb0\\xee\\xa5\\x75\\x85\\xf5\\x75\\xeb\\x5b\\xd7\\x77\\xaf\\xbf\\x64\\xfd\\xfd\\xeb\\xbf\\xb1\\xfe\\x77\\xa7\\x87\\x4e\\x3f\\xf5\\xf4\\xdd\\xa7\\x7f\\xf9\\xf4\\xff\\x75\\x46\\xcd\\x19\\x67\\x9f\\x71\\xdf\\x19\\x3f\\x3c\\xe3\\x6f\\x67\\x2a\\x67\\x6e\\x3f\\xf3\\xae\\x33\\x7f\\x74\\x56\\xed\\x59\\x7d\\x67\\x9d\\x73\\xd6\\x43\\x67\\xfd\\xeb\\x59\\x9f\\x7c\\xe6\\xd2\\xcf\\xfc\\xf5\\xb3\\xf1\\xcf\\xee\\xf9\\xec\\x37\\x3f\\x3b\\xb6\\x21\\xbc\\x61\\xeb\\x86\\x2b\\x36\\x3c\\xbf\\x61\\x64\\x63\\xe3\\xc6\\x35\\x1b\\xaf\\xda\\xf8\\xd8\\x26\\x6a\\xd3\\xf9\\x9b\\xee\\xd8\\xf4\\xda\\xd9\\xcd\\x67\\x9f\\x75\\xf6\\x03\\x67\\x1f\\xde\\xec\\xdf\\xbc\\x74\\xf3\\x05\\x9b\\xef\\xde\\xfc\\xe7\\x2d\\x73\\xb6\\xe8\\x5b\\x7e\\xb2\\xb5\\x71\\xeb\\x9c\\xad\\xfb\\xb7\\x3e\\xb3\\xb5\\xb0\\xf5\\x2f\\xe7\\xb0\\xe7\\x2c\\x39\\x67\\xe8\\x9c\\xe7\\xce\\xf9\\xcd\\xb9\\xce\\x73\\xa7\\x9f\\x7b\\xf0\\xdc\\x9f\\x9c\\xfb\\xc9\\x79\\xa7\\x9e\\x77\\xdf\\x79\\xef\\x0c\\xd5\\x0c\\xc5\\x87\\x2e\\x1a\\xba\\x7d\\xe8\\x47\\x99\\xda\\x4c\\x32\\xb3\\x26\\x73\\x69\\xe6\\xb1\\xcc\\xeb\\xe7\\x3b\\xce\\x17\\xcf\\x3f\\xfd\\xfc\\x6b\\xcf\\xff\\xe6\\xf9\\xff\\xb1\\x6d\\xfe\\xb6\\x3d\\xdb\\xee\\xdb\\xf6\\xcb\\x6d\\x63\\x17\\x78\\x2f\\xe8\\xbf\\xe0\\xfc\\x0b\\xee\\xba\\xe0\\xc7\\x17\\xfc\\xf1\\x42\\xfb\\x85\\xe7\\x5e\\x78\\xdf\\x85\\xaf\\x5d\\xf8\\xd7\\xed\\x75\\xdb\\xe7\\x6e\\xdf\\xbe\\xfd\\xae\\xed\\xef\\xed\\xf0\\xee\\x38\\x67\\xc7\\x53\\x3b\\x7e\\x73\\x51\\xf2\\xa2\\xf3\\x2f\\xfa\\xdc\\x45\\x37\\x5f\\xf4\\xf0\\x45\\xcf\\x5c\\xf4\\xbd\\x8b\\x4e\\x5c\\xf4\\x1f\\x17\\xd7\\x5f\\xdc\\x76\\xb1\\x72\\xf1\\x92\\x8b\\xd7\\x5f\\x7c\\xd9\\xc5\\x0f\\x5e\\xfc\\x8d\\x8b\\x8f\\xee\\xac\\xdd\\xd9\\xbb\\x73\\xc5\\xce\\x73\\x77\\x5e\\xb6\\xf3\\x8e\\x9d\\x8f\\xef\\xfc\\xd6\\xce\\xc2\\xce\\xdf\\xec\\x8a\\xef\\xda\\xb2\\xeb\\xd6\\x5d\\x2f\\xed\\x3a\\xbc\\xbb\\x63\\xf7\\xfa\\xdd\\x5f\\xdc\\xfd\\xc6\\xee\\xff\\xd8\\xd3\\xb6\\xe7\\xf4\\x3d\\x5f\\xdc\\x73\\x64\\x6f\\xcb\\xde\\xd3\\xf7\\x3e\\xb1\\x77\\x6c\\x5f\\xc7\\xbe\\x95\\xfb\\x76\\xee\\xbb\\x7f\\xdf\\xab\\xfb\\xfe\\xf7\\x25\\xca\\x25\\x17\\x5d\\x72\\xff\\x25\\x6f\\x5e\\x1a\\xbc\\x74\\xed\\xa5\\x97\\x5e\\x3a\\xba\\xbf\\x66\\x7f\\x72\\xff\\x69\\xfb\\x3f\\xbf\\xff\\xb9\\xfd\\x47\\x2f\\xeb\\xba\\xec\\x9c\\xcb\\x1e\\xbc\\x6c\\xe4\\x72\\xdb\\xe5\\xf1\\xcb\\x97\\x5f\\x7e\\xc3\\xe5\\xcf\\x5e\\xfe\\xdb\\x2b\\xa4\\x2b\\x86\\xae\\x78\\xfc\\x8a\\x5f\\x5c\\xf1\\xa1\\xee\\xd0\\x63\\xfa\\x2a\\xfd\\x12\\xfd\\x61\\xfd\\xc5\\xcf\\xb9\\x3e\\x77\\xee\\xe7\\x0e\\x7e\\xee\\xbd\\x2b\\x85\\x2b\\xb7\\x5e\\xf9\\xe0\\x95\\xaf\\x5f\\x39\\x7e\\xd5\\x9c\\xab\\x2e\\xb9\\xea\\xd9\\xab\\xde\\xbf\\x3a\\x7e\\xf5\\xe6\\xab\\xf3\\x57\\xbf\\xf5\\x79\\xc7\\xe7\\x67\\x7e\\x7e\\xdd\\xe7\\xaf\\xfe\\xfc\\x77\\x3e\\xff\\xd6\\x35\\xcc\\x35\\x8b\\xaf\\xb9\\xee\\x9a\\xfc\\xb5\\xe8\\xda\\x15\\xd7\\x5e\\x7b\\xed\\x93\\xd7\\xfe\\xec\\xda\\xdf\\x5d\\xe7\\xbd\\xae\\xfb\\xba\\x95\\xd7\\xed\\xba\\xee\\xc8\\xf5\\xd6\\xeb\\xbb\\xae\\xdf\\x70\\xfd\\xed\\xd7\\xbf\\x7c\\x43\\xed\\x0d\\xfd\\x37\\xec\\xb9\\xe1\\x87\\x37\\x14\\x6f\\x3c\\xef\\xc6\\x5b\\x6e\\xfc\\xce\\x8d\\xbf\\xbd\\xa9\\xfb\\xa6\\x8b\\x6e\\x7a\\xe2\\xa6\\xf7\\x6e\\x6e\\xbb\\x59\\xbb\\xf9\\xea\\x9b\\x9f\\xba\\xf9\\x67\\x37\\x1f\\xbf\\x85\\xba\\x45\\xbb\\xe5\\x8a\\x5b\\x9e\\xba\\xe5\\x3b\\xb7\\xbc\\x75\\x6b\\xe3\\xad\\xbd\\xb7\\x2e\\xbf\\x75\\xf7\\xad\\x77\\xdc\\xfa\\xb5\\x5b\\xdf\\xb9\\x2d\\x7a\\x5b\\xea\\xb6\\xf4\\x6d\\xd7\\xdc\\xf6\\xf2\\x6d\\x6f\\xdf\\xde\\x7a\\xfb\\xba\\xdb\\x2f\\xb9\\xfd\\x5b\\xb7\\xbf\\xfb\\x85\\x96\\x2f\\xac\\xf8\\x42\\xee\\x0b\\x7f\\xba\\xa3\\xee\\x8e\\xf6\\x3b\\xd2\\x77\\xdc\\x70\\xc7\\xd7\\xef\\x38\\x7e\\xc7\\x27\\x77\\x46\\xee\\x4c\\xdd\\xb9\\xfd\\xce\\x5b\\xee\\x7c\\xe1\\xce\\xa3\\x59\\x94\\x0d\\x64\\xe7\\x64\\xbf\\x9c\\x7d\\x3d\\xfb\\xe7\\x03\\xd3\\x0f\\x6c\\x3b\\xf0\\xe4\\x81\\x0f\\xbf\\xe8\\xfe\\xe2\\xbc\\x2f\\x5e\\xf0\\xc5\\xbb\\xbe\\xf8\\xfd\\x2f\\xc1\\x97\\x84\\x2f\\x6d\\xfb\\xd2\\x63\\x77\\x05\\xee\\x5a\\x72\\xd7\\xfe\\xbb\\x9e\\xb9\\xeb\\xdd\\xbb\\x2d\\x77\\xc7\\xef\\x5e\\x7a\\xf7\\xf6\\xbb\\x1f\\xb8\\xfb\\xfb\\x77\\xff\\xe1\\x1e\\xe9\\x9e\\x2f\\xdc\\x33\\x7c\\xcf\\x2f\\xee\\x85\\x7b\\xf9\\x7b\\x57\\xdf\\xfb\\xd5\\xfb\\xc4\\xfb\\x4e\\xbf\\xef\\x96\\xfb\\xf2\\xf7\\x5b\\xee\\x9f\\x76\\xff\\xd0\\xfd\\x3f\\x7a\\x40\\x78\\xe0\\xb4\\x07\\x9e\\x78\\xe0\\xd8\\x41\\xee\\xe0\\xfa\\x83\\x77\\x1d\\x2c\\x1c\\x1c\\xff\\xb2\\xf2\\xe5\\x6d\\x5f\\x7e\\xfa\\xcb\\x63\\x0f\\x36\\x3e\\x38\\xfd\\xc1\\xd3\\x1e\\xbc\\xe8\\xc1\\xc7\\x1e\\xcc\\x3f\\xf8\\xcb\\x07\\xff\\xf6\\x50\\xfc\\xa1\\xd5\\x0f\\xbd\\xf0\\xd0\\x9f\\x1f\\xee\\x78\\xf8\\xd4\\x87\\xbf\\xf4\\xf0\\xbf\\x3c\\xfc\\xbf\\x1f\\x89\\x3c\\x72\\xfe\\x23\\x8f\\x3e\\xf2\\xad\\x47\\x7e\\xf2\\xc8\\xfb\\x8f\\x14\\x1f\\x6d\\x7b\\x74\\xf6\\xa3\\xe7\\x3f\\x7a\\xcd\\xa3\\x0f\\x3c\\xfa\\xf2\\xa3\\x87\\x1f\\x43\\x8f\\x89\\x8f\\x9d\\xfa\\xd8\\x85\\x8f\\x5d\\xf9\\xd8\\xf7\\x1f\\xfb\\xe3\\x57\\x16\\x7d\\xe5\\xe1\\xaf\\xfc\\xfc\\x71\\xd7\\xe3\\x73\\x1e\\xbf\\xf0\\xf1\\x2b\\x1f\\xff\\xc6\\xe3\\x7f\\x1e\\xf6\\x0e\\xaf\\x1c\\xbe\\x7c\\xf8\\xe5\\xe1\\xa3\\xb9\\xba\\x9c\\x9c\\x3b\\x2d\\x77\\x75\\xee\\xd1\\xdc\\x0f\\x72\\xff\\xfe\\xc4\\xac\\x27\\x2d\\x4f\\xc6\\x9e\\xdc\\xf4\\xe4\\x8d\\x4f\\xbe\\xf9\\x54\\xe0\\xa9\\xad\\x4f\\xe9\\x4f\\x7d\\xfd\\xa9\\xb1\\xa7\\x7d\\x4f\\x9f\\xfe\\xf4\\x25\\x4f\\x7f\\xfb\\xe9\\x77\\x9e\\x59\\xf9\\xcc\\x8e\\x67\\x1e\\x7d\\xe6\\x7f\\x3f\\x9b\\x78\\x76\\xff\\xb3\\x4f\\x3d\\xfb\\xda\\x73\\x8e\\xe7\\xe6\\x3e\\xf7\\xd2\\x73\\xe3\\x5f\\x9d\\xf1\\xd5\\xed\\x5f\\x7d\\xe8\\xab\\xef\\x7e\\x4d\\xfc\\xda\\x79\\x5f\\xbb\\xe7\\x6b\\xff\\xeb\\x79\\xf1\\xf9\\x47\\x9f\\x3f\\xf1\\x42\\xeb\\x0b\\x8b\\x5e\\xd8\\xf6\\xc2\\x5b\\x2f\\x36\\xbf\\xf8\\x9d\\x17\\x8f\\xbd\\x34\\xe3\\xa5\\xeb\\x5e\\xfa\\xda\\xcb\\x1d\\x60\\x21\\x31\\xd4\\xbb\\x90\\x06\\x56\\xa0\\x60\\xda\\xb3\\x08\\x7a\\x66\\x3f\\x47\\xd9\\xe0\\xb7\\x89\\x67\\x1d\\xf6\\xb7\\x66\\x3f\\x67\\xb5\\xc0\\x6f\\x13\\xf0\\xac\\x15\\x5f\\xb6\\xe3\\xcb\\xcf\\x51\\x0e\\xf4\\xc9\\xec\\xe7\\x10\\xbe\\x2e\\xd1\\x12\\xcd\\x4b\\x34\\x47\\x5f\\xb7\\x67\\xeb\\x56\\xa4\\x15\\x73\\x34\\x92\\xaa\\xed\\x9a\\x5e\\xf8\\x7f\\xe7\\xff\\xef\\xfc\\xbf\\x75\\x6e\\x05\\x11\\x44\\x54\\x40\\x05\\x42\\xa1\\x4d\\x00\\x51\\x99\\x63\\x58\\x99\\x63\\x2c\\x09\\xaf\\xc7\\xd1\\x1e\\x4b\\x22\\x46\\x10\\x84\\x05\\xcf\\x5c\\x76\\xd9\\x33\\x97\\x8d\\xe9\\x7a\\x5a\\x14\\x91\\x7a\\x19\\x3e\\x03\\x5b\\xf9\\x4d\\xfc\\x9e\\x1b\\x58\\x80\\x54\\x22\\x95\\x8c\\xb5\\x3b\\x3c\\x2e\\xf3\\x5d\\x45\\x62\\x38\\x46\\x62\\xb8\\xaf\\xdf\\xb4\\x65\\xcb\\x4d\\x5b\\xd6\\x90\\x42\\xf2\\x82\\x20\\x08\\xda\\x16\\x7c\\x05\\x05\\x48\\x49\\x6e\\x5d\\x14\\xc1\\x0a\\x0c\\xa8\\x68\\xcc\\x84\\xa3\\x76\\x02\\x0e\\xca\\xed\\x26\\x20\\x8c\\x8c\\x8d\\x15\\xd2\\x69\\x4d\\x14\\x55\\x94\\x2d\\x66\\xc0\\x0a\\x2a\\x30\\x28\\x8f\\x0a\\x50\\x07\\x21\\x88\\x92\\xe7\\x65\\x8e\\x54\\x27\\xc9\\x2c\\xcb\\x44\\x64\\x45\\x4e\\xa6\\xf0\\x96\\xf0\\x32\\x8c\\xd7\\xcb\\x50\\x12\\x06\\x09\\x69\\xaa\\xa0\\xaa\\xc2\\xe5\\xdd\\x45\\xbd\\x5b\\xed\\xf5\\xb4\\x7a\\x7a\\xd5\\x6f\\x9e\\xe6\\x6b\\xf7\\x9d\\x10\\x55\\x55\\x54\\xd5\\xd5\\xdd\\x2c\\xdb\\xbd\\x5f\\x5a\\x5d\\xd7\\xd4\\xe8\\xf1\\x34\\x36\\xd5\\xad\\x96\\x0a\\xb4\\xdf\\x5f\\x89\\x25\\xdc\\x56\\x16\\xa0\\xd4\\x42\\x87\\xd9\\xe2\\x94\\x79\\xfe\\xef\\xae\\xfa\\x7a\\x57\\xbd\\x7b\\x55\\x5f\\xdf\\xaa\\xbe\\x1a\\xd2\\x5e\\xc4\\xd4\\xe3\\x6b\\xe7\\xf5\\xe1\\x6b\\x7f\\x33\\x50\\x07\\x36\\x50\\x41\\x45\\x79\\x94\\x27\\xe5\\x09\\x90\\x00\\x48\\x25\\x8d\\x32\\x52\\xa4\\x9c\\x54\\x82\\x97\\x8c\\x22\\xe5\\xa4\\x22\\xb3\\x14\\xef\\x60\\x3c\\xde\\x44\\x4a\\x4e\\xc6\\x78\\x86\\xf3\\x98\\x8f\\xea\\xf5\\xae\\x86\\x06\\xd7\\x9f\\xc8\\xfe\\x7a\\x66\\xd5\\xf6\\xed\\x07\\xb7\\xaf\\xb8\\x3d\\xb8\\x33\\xb2\\x76\\xff\\xda\\x65\\x29\\x81\\x54\\x6b\\xc0\\x13\\x24\\xfb\\xdc\\xf6\\x83\\xdb\\xb7\\xaf\\xda\\x30\\x03\\xdd\\x1e\\xbc\\xb8\\x4b\\xee\\x5f\\xbb\\xb6\\xbf\\xef\\xb4\\x9a\\xae\\x77\\xf0\\xdb\\xf5\\x04\\x9f\\x1a\\xca\\xa3\\x1c\\xb0\\xd0\\x83\\x3d\\x77\\x24\\x27\\x63\\x1c\\xd7\\xee\\x60\\x18\\x8f\\x57\\x92\\x12\\x29\\x19\\x63\\x57\\x96\\x18\\xee\\x53\\xae\\x2b\\x09\\x2f\\x43\\x7b\\x1c\\x5c\\xa4\\x3d\\x26\\xd3\\xc9\\x94\\x84\\xf4\\x7a\\xa7\\xea\\x6c\\x68\\x70\\xaa\\xce\\xfa\\xb0\\x28\\xee\\x22\\x07\\xe4\\x52\\x58\\x14\\x7f\\x44\\xfb\\xfd\\x74\\x71\\xc4\\xe5\\xf3\\xb9\\x10\\xe3\\xc5\\xd7\\xd3\\x78\\xe7\\xad\\x53\\xeb\\xaa\\xcf\\x0e\\xf8\\xe9\\x71\\xc0\\x0f\\x23\\xa0\\x49\\x3f\\x68\\xa0\\xa1\\x1c\\xca\\x11\\x2a\\xa9\\x03\\x40\\x12\\xc3\\x45\\x64\\x89\\xc1\\xb2\\x12\\x69\\xe9\\xf4\\x38\\xa4\\x85\\x34\\x52\\xc7\\x72\\x39\\x94\\x2e\\x0e\\x83\\xa5\\x8c\\xe7\\x3a\\x08\\xe0\\x36\\x71\\x8c\\x24\\x73\\x32\\xde\\x4e\\x82\\x57\\xd5\\x75\\x4d\\xd3\\x86\\x0d\\xc8\\x48\\x95\\xaa\\x38\\x22\\x8a\\x82\\xa8\\x97\\x2f\\x08\\x18\\x06\\x0b\\x68\\xa0\\xa3\\x43\\x48\\x07\\x0b\\x19\\x7d\\x63\\x29\\x8e\\x66\\x11\\xf3\\xc2\\x0b\\xf9\\x17\\x90\\xae\\xeb\\x08\\x74\\xfc\\x8c\\x0c\\x3a\\xca\\x95\\x9e\\x71\\x2b\\x34\\xc7\\x2b\\x1f\\xbd\\x90\\x7f\\xe1\\x05\\x04\\xfa\\x38\\xe8\\x7a\\x05\\xf7\\xd8\\xc0\\x09\\x8d\\xe0\\x36\\xda\\xc2\\x53\\x0a\\xcb\\x70\\x56\\x96\\xe2\\xe4\\x28\\xc5\\xcb\\x12\\xda\\xb0\\x6b\\x97\\xba\\x41\\x55\\xf5\\xb0\\xaa\\xee\\x42\\x8c\\xaa\\xea\\x48\\xd5\\xf1\\x05\\xe3\\x04\\x5f\\x05\\xd2\\x77\\x22\\xca\\xa3\\x63\\x84\\x9a\\x64\\x00\\x97\\x49\\x20\\xbc\\xc3\\xc3\\x52\\xb1\\xa4\\xe2\\x4e\\xa4\\x64\\xc9\\xe3\\xe0\\xda\\xf9\\x98\\xf1\\x67\\xb0\\x05\\x87\\x49\\x97\\xf1\\xb0\\x5e\\xe3\\xef\\xa3\\x70\\x3c\\x14\\x8a\\x5f\\xd4\\xd7\\x17\\x5c\\xb4\\xe8\\x18\\xed\\x13\\x13\\x9c\\xa7\\xa9\\xcb\\x45\\xb5\\x75\\x79\\xd8\\xb5\\x97\\xa7\\xc5\\x39\\xa7\\xf7\\xd3\\x8d\\x1d\\x9d\\x75\\x0d\\x6c\\x0d\\x12\\xf0\\x93\\xa1\\x6f\\xf6\\x1d\\xec\\x0b\\x2e\\xfa\\x97\\x45\\xc5\\x0b\\xfd\\x34\\x97\\xa0\\x18\\xc5\\xeb\\x0d\\x46\\xbb\\x84\\xb9\\xe9\\xf4\\xdc\\xee\\xfe\\xfe\\xee\\x70\\x28\\x10\\x08\\xb6\\xc7\\xea\\x6d\\x06\\xbd\\x1b\\xd4\\x65\\x05\\x16\\x38\\x90\\x30\\xbf\\x4a\\x0c\\x5b\\x45\\x4b\\x8c\\x24\\x4b\\x89\\x14\\x45\\xe8\\x09\\xf7\\xd3\\x14\\x34\\x25\\x8b\\x61\\x93\\xaa\\x9a\\xc3\\xcd\\xce\\xfa\\x6c\\x58\\x0c\\x87\\x2b\\x89\\x69\\x54\\x55\\xeb\\xd2\\x26\\x01\\x85\\xc3\\xf5\\xf5\\xba\\x2c\\xeb\\xa2\\x38\\x56\\x45\\x44\\xb8\\xff\\x18\\x94\\x43\\x63\\xd0\\x08\\x6d\\x18\\x0e\\x96\\x92\\x09\\x9b\\xb1\\x98\\xc7\\xdc\\x09\\x2f\\xe3\\xa1\\x78\\xcc\\x69\\x1c\\xc3\\x2b\\x08\\x34\\x6d\\x60\\x4b\\x20\\xd4\\x34\\x28\\x9b\\x5f\\x9a\\xa6\\xab\\x5a\\x5a\\xdd\\x32\\x90\\xe8\\x0a\\x05\\x22\\xf2\\x20\\x12\\xcb\\x87\\xaa\\x96\\x06\\x0b\\x64\\x40\\x45\\x59\\x54\\x80\\x26\\x42\\x71\\x92\\xc7\\x41\\x31\\x9c\\x1c\\x8b\\xc9\\x12\\x66\\x60\\xcc\\xd0\\xa6\\x4c\\xf2\\xa0\\x1d\\x1d\\x83\\xb2\\x20\\x0f\\x76\\x2c\\x38\\x73\\xc1\\xda\\x64\\x2c\\x96\\x8c\\x21\\x26\\xb5\\xba\\x66\\x60\\xa0\\x66\\x75\\xaa\\x67\\xce\\x1c\\x3a\\xe6\\xd7\\xfd\\x31\\xbc\\xc3\\x3d\\x3c\\x51\\x6a\\x2b\\x74\\x9e\\x5c\\x2e\\x8f\\x31\\x98\\x48\\xc9\\x0a\\xee\\x52\\xef\\xa7\\x54\\x72\\x63\\x53\\x5d\\x6d\\x13\\x6a\\xf6\\x34\\x27\\x4f\\xae\\xed\\xd9\\xab\\x6b\\x9b\\x1a\\xeb\\xae\\xae\\x6b\\x6a\\x7a\\xa3\\xaa\\x5e\\x83\\x7f\\x0a\\xe0\\x83\\x08\\xf0\\x00\\x6e\\x44\\xf1\\x15\\x15\\x4b\\x09\\x85\\x77\\x70\\xb8\\x3a\\xde\\xce\\x1b\\x55\\xb2\\x04\\x7b\\x67\\xa0\\x2d\\x81\\xf5\\xde\\x08\\xa9\\x78\\x9a\\xaf\\x85\\xab\\x71\\xf8\\x63\\x98\\x35\\x62\\xc9\\x98\\xe6\\xf6\\x3b\\x51\\xbe\\x78\\x4f\\x60\\x7d\\xa3\\xdd\\xac\\xbd\\x8e\\xb3\\xc4\\xfc\\xcd\\xfa\\x1d\\x57\\xd8\\x48\\xc5\\xd1\\x48\\xc0\\xc3\\x02\\x02\\x11\\x34\\x54\\x40\\x39\\x68\\xc1\\xed\\xad\\xa4\\x03\\x89\\x95\\x78\\x73\\x43\\xba\\xe6\\xa3\\x8b\\xc3\\xb4\\xcf\\x47\\x7b\\x05\\x55\\x10\\x44\\x55\\xc4\\x2a\\x22\\x57\\x2c\\x94\\x3a\\x3c\\x8d\\x3f\\x15\\x12\\x1c\\x4b\\x82\\x0e\\x22\\x0b\\xca\\xfa\\x62\\x32\\x9d\\x51\\x74\\x84\\x21\\xc7\\x28\\xab\\x89\\x9a\\x26\\x66\\x70\\xf1\\x06\\x09\\xa5\\x91\\x58\\x2c\\xd0\\x3e\\xc4\\xe0\\xeb\\x9a\\x96\\xf7\\x4d\\x90\\x96\\x4f\\x2b\\x16\\x04\\x1f\\x8d\\x44\\x00\\x7b\\x95\\x56\\x9d\\xa8\\x91\\x68\\x34\\x05\\x6f\\x9f\\x5e\\x63\\x41\\xd7\\x0b\\x85\\xb1\\x93\\x6b\\xcc\\x08\\x42\\x4e\\x14\\x35\\x51\\xfc\\x94\\x3a\\x27\\x5a\\x58\\x03\\x5e\\x88\\x01\\xb8\\x4b\\x65\\xda\\x65\\x8e\\x89\\x71\\xed\\x0e\\xa2\\x41\\x4e\\x6a\\xac\\x66\\x96\\xaf\\x69\\x8d\\x2e\\x6f\\x38\\x1c\\x0f\\x55\\xb4\\x16\\xe9\\x66\\xf1\\x8c\\xb0\\xab\\x0e\\x8b\\x07\\xef\\xee\\xa1\\xca\\xda\\x81\\xe8\\xed\\x08\\x1a\\x43\\xef\\x90\\x96\\x06\\x26\\xf4\\x76\\x94\\x62\\x29\\x8a\\xa7\\x78\\x5e\\xc1\\x7f\\x0a\\xab\\xb0\\x2c\\x45\\x14\\x39\\x82\\x24\\xb5\\xa2\\x73\\xe9\\xd2\\xce\\x15\\x54\\xb2\\x7c\\x64\\x98\\x16\\x99\\x59\\xa7\\xd0\\x0b\\x43\\xa1\\x05\\xae\\x53\\x66\\xcd\\x5e\\x89\\x8f\\x16\\xd2\\xa7\\x9c\\xac\\x7b\\xa3\\x84\\x39\\xdb\\x29\\x37\\x26\\x3e\\xc6\\xe3\\x2d\\x5b\\x2a\\xd7\\x76\\x6c\\x19\\x98\\xdd\\x7d\\xde\\xec\\xee\\xdf\\x77\\x6c\\x71\\x11\\xe5\\xfb\\xc5\\xee\\xd9\\x03\\x5b\\x3a\\x8a\\x3f\\xee\\xf8\\x3d\\x3e\\x40\\xba\\xa1\\x7e\\x2d\\xa0\\x43\\x06\\xe9\\x28\\x4b\\x60\\xc6\\xb4\\xc5\\x71\\x58\\x7f\\x88\\x9a\\x96\\xd3\\x50\\xb6\\x38\\x82\\x84\\xe2\\xc8\\xd4\\x96\\x11\\x57\\x69\\x19\\xa9\\xa2\\x20\\xb6\\x90\\x7a\\x72\\xc3\\xc3\\xc3\\xc3\\x48\\x28\\x6b\\xf7\\x89\\x37\\xeb\\x0c\\xcb\\x08\\x4b\\x3b\\xc7\\x24\\xeb\\x88\\x95\\x25\\x06\\x31\\xe2\\x35\\x15\\xc6\\x51\\x56\\xcc\\x0d\\x0f\\xa7\\x2b\\x8d\\xa3\\x27\\x87\\x87\\x01\\x41\\x0e\\x32\\x28\\x8b\\xb2\\x60\\x01\\x70\\xb3\\x54\\xee\\xc4\\x09\\x94\\xcd\\xe2\\xb3\\x52\\x3d\\x16\\x6c\\x31\\x29\\x0a\\x1f\\x33\\x8b\\x2e\\xe8\\x7a\\x37\\x29\\xf0\\xe0\\x86\\x0d\\xbb\\x4c\\xa8\\xaa\\xf1\\xe8\\x3a\\xd9\\x5a\\x63\\x65\\xb6\\xd2\\x50\\x1b\\xd6\\xab\\xac\\xb4\\x97\\xf2\\x1b\\x8c\\x96\\x61\\x9e\\xd4\\xc1\\x5a\\xb2\\xf9\\x14\\x2c\\xa7\\xb1\\x9d\\xc7\\x11\\xc5\\x2a\\xf1\\x4c\\x44\\xb6\\x33\\x11\\x59\\x1c\\xce\\x11\\x0e\\x11\\xb5\\x71\\x40\\x30\\x0e\\x39\\x6c\\xf7\\xa5\\xd3\\x02\\x36\\xe1\\x34\\xb1\\x8a\\x5e\\xff\\x27\\x38\\xd2\\xd0\\x40\\x18\\xf2\\x06\\x32\\x66\\xe8\\x33\\xf4\\x2d\\x63\\x58\\x5b\\x52\\x82\\xb5\\xe3\\x76\\x30\\x11\\x39\\xca\\x44\\x64\\x94\\x19\\x52\\x63\\xc9\\x58\\xcc\\x5f\\xd3\\x58\\x2c\\xe4\\xcc\\x06\\x20\\x5d\\xcc\\xfb\\xb1\\xdc\\xb4\\xc5\\x04\\x41\\x37\\x1a\\x51\\x6a\\xc3\\x18\\xc1\\x69\\x04\\xb7\\x21\\xc2\\x60\\x7b\\xc4\\x66\\xe2\\xd6\\x1a\\x65\\x29\\xa9\\xaa\\x2d\\x28\\x57\\x1c\\x46\\x20\\x16\\xff\\x83\\xc8\\xe0\\x66\\xd4\\xd8\\xf8\\xcc\\x5f\\x5d\\x2d\\x2d\\xae\\xe2\\xb0\\xab\\x05\\x6b\\x1b\\x51\\xcc\\xe1\\xaa\\x93\\xc8\\x72\\x41\\xc7\\x62\\x9f\\x6b\\x1c\\x70\\x4b\\x11\\x04\\xc1\\x0e\\x0c\\x64\\xd0\\x18\\xca\\x92\\xba\\x42\\xc0\\x61\\x79\\x1c\\x95\\x89\\x0e\\x67\\x52\\x06\\x77\\x27\\x4f\\xd2\\x98\\xb4\\x44\\xbb\\x25\\x9a\\x43\\x75\\xf3\\x67\\xcf\\xbf\\x38\\xd6\\xd6\\x16\\x6b\\x5b\\x85\\xf5\\xe3\\x38\\x60\\x25\\x8a\\x54\\x41\\x14\\xc5\\x6c\\xb3\\xd7\\xef\\xf7\\x36\\x7f\\xbf\\x0d\\xdf\\x5e\\x4b\\xee\\xd5\\xd7\\x3b\\x11\\x38\\xeb\\x0d\\x4e\\x20\\xdc\\x60\\x31\\x6d\\x0c\\x2c\\x5d\\x68\\x83\\x9e\\x23\\x0c\\xaf\\x30\\x32\\xc3\\xc9\\x11\\xac\\x42\\x51\\x46\\x18\\x07\\x4d\\x13\\x70\\x1b\\xb2\\x69\\x5d\\xd5\\x34\\x75\\xc4\\xf8\\x2a\\xdb\\x27\\x05\\x70\\x40\\x13\\x96\\xe6\\x51\\x4c\\x2b\\x8a\\xc4\\x9e\\x5c\\x08\\x13\\x0e\\x8b\\x4c\\x7a\\xa2\\xa4\\xbc\\xe6\\x65\\x72\\xd5\\xa5\\x21\\xd0\\x40\\x25\\xfa\\x1b\\xdb\\x4c\\x58\\x5d\\x63\\xa5\\x4a\\xb4\\x60\\x49\\x67\\x2f\\xde\\xbc\\xe5\\xa6\\x2d\\xe2\\xe0\\xd0\\xe0\\xa0\\x9c\\xc9\\xa0\\xec\\xe6\\x81\\xc5\\x9b\\x37\\x2f\\x96\\x07\\x07\\x87\\x06\\xd3\\x99\\x4c\\xa5\\x15\\xe9\\x20\\xd4\\x00\\x51\\x56\\x61\\x38\\x85\\x57\\x24\\x86\\x47\\x3c\\xa2\\x28\\x5e\\x41\\xb3\\x17\\xc4\\x77\\xc7\\x17\\xb0\\xbb\\xe3\\xc5\\x3f\\x05\\x51\\xfd\\x15\\xc1\\x0b\\x83\\x47\\xc8\\x95\\xf7\\xcd\\x2b\\x0b\\x82\\x17\\x06\\x81\\x48\\x12\\x1d\\xe9\\x84\\x1f\\x1c\\x25\\x49\\xc2\\x22\\x4d\\x14\\x0b\\xcf\\x23\\x1d\\xd3\\x8d\\x5e\\xf1\\x8c\\x05\\x3f\\xe3\\x56\\x68\\xfc\\xd8\\xa1\\xe7\\xc7\\x41\\x14\\x89\\x35\\x88\\x89\\xab\\xac\\x31\\x7e\\x01\\x4e\\xa0\\xc1\\x07\\x6d\\x98\\x9a\\xdc\\xb2\\xc4\\x50\\xd8\\xe4\\x56\\x26\\xfb\\x19\\x51\\x8a\\x57\\x30\\x9c\\x79\\x7d\\xc5\\x0a\\x7d\\xc5\\xe0\\xfe\\xb5\\x6b\\xf7\\xaf\\x5d\\x74\\x10\\x7b\\x00\\x28\\x1b\\xd8\\x14\\x38\\xb4\\x29\\xb0\\x09\\x31\\x62\\xec\\x74\\x91\\x5f\\x9f\\x5f\\x87\\xef\\x16\\x77\\xdc\\xbf\\x63\\xc7\\xfd\\xcb\\x23\\x6b\\xc2\\xe1\\x53\\xc3\\xa7\\x02\\x81\\xac\\x04\\x39\\xb8\\x23\\x74\\x44\\x37\\x68\\x7c\\x1c\\x0c\\x58\\x0c\\xcd\\x6b\\x68\\x2f\\x4c\\x6d\\x65\\xb9\\x8e\\x79\\x54\\x66\\x24\\x39\\x3a\\x99\\xd2\\x72\\x23\\x23\\x69\\x61\\x24\\x8d\\x08\\xc1\\x1a\\x1a\\xb9\\x40\\xb8\\x44\\x14\\x75\\x51\\xcc\\x55\\xd9\\x60\\x13\\x35\\x50\\xd0\\x0c\\x2d\\x10\\xc1\\xae\\x68\\x59\\x0e\\xa5\\x92\\x3c\\x85\\xad\\xb0\\x98\\xd9\\x68\\x0a\\x5b\\x67\\xd8\\x96\\x45\\x93\\xea\\xfc\\xb0\\xdd\\xef\\x6f\\xf7\\x3f\\x9c\\x48\\x84\\x62\\xd1\\xcb\\x07\\x12\\x89\\x81\\x84\\x3d\\x16\\x0d\\x26\\x12\\xa8\\x63\\x02\\x06\\x24\\xfa\\xf1\\x53\\x37\\x24\\x6e\\x49\\x84\\x62\\xc9\\x54\\xd4\\x91\\xc0\\x0f\\x2a\\xf8\\x30\\x98\\xb8\\x25\\x81\\x3a\\x26\\x7b\\x18\\x13\\x32\\xd5\\x45\\xf4\\x99\\xc2\\x7f\\xba\\x30\\x02\\x5d\\xcf\\x9d\\x24\\x89\\x0e\\x6d\\xd8\\xb0\\x6c\\x4a\\x21\\x84\\x40\\x05\\x1d\\xe5\\x91\\x4e\\x28\\x57\\x61\\x78\\xc6\\x2c\\x54\\x4e\\xa6\\xa4\\x48\\xc2\\xcb\\xa0\\x8c\\xa6\\x35\\x4c\\xf0\\x5f\\x03\\x0a\\x6b\\x27\\xb4\\x41\\x7c\\x36\\x82\\x77\\x40\\x24\\xbe\\x61\\x8f\\x11\\x4d\\x48\\xac\\xb1\\x72\\x09\\x12\\x6f\\x67\\xb0\\xd7\\xc8\\x30\\x03\\xe8\\x92\\xc0\\x42\\x87\\xc3\\x28\\xa8\\x79\\x26\\xca\\x7e\\x78\\xb5\\xb3\\x01\\x15\\x8a\\xd7\\x04\\x16\\xda\\x48\\x59\\x33\\x17\\xbd\\xfb\\x61\\xbd\\x73\\x90\\x58\\xab\\x1a\\xba\\x11\\xe5\\xc0\\x0e\\x4e\\x00\\xb7\\xa4\\xd0\\x3c\\xd7\\xe1\\xa1\\xe4\\x8c\\x96\\xc9\\x68\\x28\\x9c\\x42\\x6a\\xa6\\x38\\x9c\\xb9\\x74\\x77\\xe0\\x09\\x40\\x90\\x05\\x0d\\x69\\xe4\\x59\\xf3\\xc9\\x6c\\x7a\\x68\\x28\\x6d\\x3c\\x52\\xe9\\xd3\\x62\\xcc\\x05\\x89\\x44\\x67\\x78\\x9e\\x18\\x8c\\x72\\x4a\\xe1\\x19\\x9e\\x93\\x25\\xde\\x9e\\x8c\\xf1\\xb2\\xd7\\xb0\\xb1\\x79\\x0f\\xc5\\xcb\\x5e\\x04\\xdd\\x7b\\xd1\\x96\\x40\\x3c\\xda\\xe5\\x63\\xcf\\xc8\\x68\\x5b\\xb6\\x20\\x6d\\x56\\xcf\\xbc\\xd3\\xbc\\xe1\\x3a\\x19\\x25\\x65\\x94\\x3b\\xbd\\x7b\\x7e\\xf1\\x9e\\x40\\xbc\\xad\\x36\\x4e\\xb9\\xce\\xb8\\x2d\\xa3\\x6f\\x79\\x44\\x5a\\xd9\\x18\\x6f\\x3c\\x6f\\xe1\\xf4\\xae\\x48\\xa0\\xcd\\x69\\x4b\\xf6\\xf8\\x89\\x84\\x59\\x84\\xf2\\xe8\\x1b\\x84\\x5a\\x19\\x00\\xe4\\xf5\\x7a\\x70\\xb5\\xa9\\x64\\x8c\\xf7\\x7a\\x28\\x99\\x22\\xf0\\x22\\x71\\xde\\x69\\xa7\\xcd\\xeb\\x99\\x35\\xab\\x47\\x96\\xc7\\x48\\x0b\\xbf\\xd1\\x78\\xde\\x75\\xe7\\x35\\xc6\\x1b\\x57\\x6e\\x5d\\xd9\\xb8\\x66\\xaf\\xff\\x09\\x6f\\xa9\\x2d\\xd5\\x1c\\x60\\xda\\x35\\xbc\\xc9\\x03\\x93\\xe9\\x10\\xe5\\xd2\\xcc\\xd8\\xd8\\x18\\x4a\\x4f\\x90\\x9d\\x9e\\xcf\\x67\\x34\\x2d\\xa3\\x69\\x48\\xac\\x22\\xb0\\x09\\x2c\\x59\\xa1\\x01\\x7c\\xd0\\x65\\xc8\\x52\\x9e\\x21\\xae\\x74\\x32\\xc6\\x55\\xfa\\x3f\\xee\\x93\\xfd\\x9f\\x41\\xe2\\xde\\xe8\\x53\\x38\\x3e\\x1b\\x74\\xe2\\xf6\\xe8\\x86\\xcf\\x83\\xa0\\xda\\x6b\\xb5\\x43\\x3b\\xf4\\xa2\\x9f\\xa3\\x9f\\x80\\x13\\xea\\xc1\\x03\\x2c\\xf8\\x01\\xa2\\x44\\xb6\\x60\\xef\\xdd\\x2e\\xf1\\xbc\\xc4\\x72\\x3c\\x47\\x71\\xac\\x44\\xb9\\x39\\x05\\xad\\xba\\xf2\\x85\\xcb\\x2f\\x7b\\xb6\\x78\\xef\\x1a\\x81\\xe6\\x36\\xf0\\x9e\\x6d\\x1e\\xfe\\xe5\\xb3\\x13\\xd2\\x96\\xc4\\x57\\xda\\x03\\x2f\\xb6\\x07\\xae\\xbc\\x70\\xda\\x9f\\x92\\x49\\x2e\\x81\\xce\\x4f\\x60\\xaa\\x64\\x40\\x44\\x63\\x28\\x6f\\x94\\x5a\\xc2\\x0e\\x27\\x4b\\x74\\x84\\x96\\x18\\xce\\x84\\xde\\xad\\xb0\\x28\\x8f\\x21\\xd2\\xb4\\xa2\\xae\\x69\\xf8\\x48\\xd5\\x75\\x94\\x27\\xf8\\xf1\\x09\\x58\\xfe\\x60\\x3e\\x01\\xda\\x5f\\xcc\\x10\\x0f\\x79\\x42\\xce\\x27\\x61\\x16\\x9c\\x02\\x10\\xf5\\x48\\x09\\x45\\x49\\xc9\\x72\\x8c\\x18\\x80\\x94\\x83\\x61\\xbc\\x8a\\x87\\xa2\\x1c\\x5c\\x3b\\x71\\x6e\\xb1\\x67\\x2b\\x27\\x15\\x25\\x25\\x25\\xb0\\x4a\\x0f\\x5a\\x58\\x2f\\x43\\x71\\x32\\x25\\x2b\\x12\\x95\\x4c\\x49\\xc4\\xd3\\x33\\xac\\x60\\x23\\x18\\xe4\\xaf\\xb5\\x5b\\x6c\\x16\\x8b\\xd3\\x62\\xb5\\xda\\xac\\xd6\\x4e\\x8b\\x83\\xb2\\x59\\x9c\\x16\\xa7\\xcd\\xe2\\xb0\\x38\\x2d\\x94\\xc3\\x3c\\xa1\\x6c\\x36\\xcb\\x7a\\x0f\\x13\\xb3\\xde\\xb9\\x79\\x71\\x26\\x93\\x5c\\xbe\\xfc\\xdc\\xe5\\xe2\\x96\\x9b\\xb6\\xbc\\x42\\x59\\xec\\x36\\x8b\\x68\\xb3\\xd9\\xad\\x36\\xfc\\xed\\x6e\\xb0\\x35\\x38\\x2c\\x16\\x64\\x43\\x76\\x5f\\x53\\xe9\\xd8\\x52\\xef\\xa8\\x93\\x07\\x1c\\x4d\\xf5\\x81\\x81\\xcd\\xe9\\x4c\\x26\\x4d\\x74\\xd2\\xe2\\xcd\\x9b\\xab\\x5a\\xc7\\xc3\\x62\\xb8\\x1e\\x40\\x99\\x02\\x44\\xe5\\x3f\\x69\\xf1\\x14\\x0d\\xe6\\x12\\xf8\\x69\\x8e\\x73\\xb4\\x33\\x0c\\x97\\x34\\xef\\x78\\x19\\xc6\\xc1\\x78\\xb8\\x76\\xca\\xcb\\x62\\xde\\x73\\x38\\xaa\\x70\\x26\\x31\\x5e\\x8f\\x24\\xa5\\xcc\\x17\\x65\\xad\\xaa\\x9d\\x3f\\xa8\\x40\\x92\\xc5\\x22\\x98\\x48\\xa2\\x9a\\x2d\\x36\\xab\\x15\\x1f\\xd7\\x94\\x70\\xb4\\xa3\\xc9\\x62\\xab\\xb3\\xd8\\xbc\\x75\\x14\\xaa\\x41\\xf5\\xf5\\x35\\x16\\x9b\\xc5\\xee\\xb4\\xd8\\x30\\x46\\x6c\\x94\\xc5\\x69\\xa9\\xb1\\xa0\\x1a\\x8b\\xd3\\x45\\x1e\\xb2\\xd8\\x1a\\xc6\\xaa\\x31\\xd2\\x32\\x25\\x3a\\x6b\\x50\\xbd\\xb3\\xa6\\xa9\\xce\\x31\\x81\\xcd\\x06\\x1b\\x7e\\xdb\\x56\\xd3\\x64\\x71\\xd8\\x9a\\x28\\x9b\\xc5\\x66\\xb7\\x5b\\x6b\\xec\\x4e\\x0b\\x72\\x20\\x9b\\xc5\\x82\\x2c\\xc8\\xde\\x4c\\x9e\\xa8\\xb3\\xd8\\x9a\\x88\\xaf\\x6f\\x60\\x39\\x01\\x03\\x00\\x8a\\x83\\xa1\\x38\\x6c\\xac\\x52\\x09\\x39\\x99\\x92\\x25\\x8c\\x98\\x4a\\x84\\x98\\xd8\\x28\\xe1\\x9c\\xe7\\x63\\x1c\\x3f\\x45\\xa7\\xfc\\x95\\xb2\\x34\\xd8\\xa5\\xa8\\xc5\\x62\\xb5\\xd9\\x6a\\xac\\xc8\\x81\\x9c\\x18\\xb6\\x9a\\x26\\xa7\\x05\\x51\\x16\\x27\\xdd\\x60\\xb3\\xd8\\x2d\\xb8\\x31\\x8f\\x57\\xe1\\xf1\\xd7\\x56\\x64\\xed\\x69\\x72\\x5b\\x10\\x42\\x56\\x64\\x43\\xce\\x46\\x27\\xc6\\x47\\x0d\\x01\\xb9\\xb1\\xd6\\x62\\xb3\\x59\\x1a\\x6c\\x76\\x4b\\xc3\\xdf\\xa1\\x93\\xff\\x3e\\x17\\x28\\x53\\x99\\x4b\\xd5\\x5c\\x20\\xfc\\x1d\\x2e\\x38\\x03\\x73\\x01\\x6b\\x58\\x57\\xcb\\xcf\\x5d\\xbe\\x3c\\x99\\xc9\\xfc\\x63\\x5c\\x70\\xeb\\x24\\x53\\x6c\\xa2\\x75\\x0c\\xc8\\xb0\\x07\\x6e\\xac\\x68\\x5d\\x32\\x26\\xff\\x0f\\xd2\\xfc\\x94\\x98\\x09\\xd6\\x61\\x52\\xb2\\xd4\\x58\\x6c\\x98\\xf4\\x3b\\xff\\x69\\xa4\\x2f\\x4d\\x85\\x42\\x64\\x43\\x96\\x7f\\x22\\xed\\x3f\\x3f\\xd9\\xea\\x9d\\xe0\\x85\\x24\\x2c\\xf9\\x7b\\xbc\\xd0\\x68\\xfd\\x14\\x5e\\x90\\xa7\\xc0\\xd1\\x27\\x94\\xa5\\xe9\\x24\\x5e\\xb0\\xd9\\x91\\xa5\\x6e\\x32\\x37\\x54\\xb5\\x79\\x4a\\x66\\xb0\\x59\\x91\\x65\\x12\\x3b\\xbc\\x78\\xb2\\xed\\x6e\\x8c\\x13\\xe4\\x89\\xa6\\xe7\\xb0\\x8d\\x51\\x76\\x3d\\x19\\x96\\x8e\\xd0\\x58\\xfb\\x58\\xb1\\xf6\\xc1\\x57\\x4b\\x7a\\xd3\\x88\\xfa\\xe7\\x8a\\x3a\\xd2\\x69\\x3f\\xf2\\xd1\\x99\\xe1\\x0c\\x89\\x3d\\x8b\\x46\\xd8\\xff\\x00\\xb1\\x7d\\x45\\xc3\\xdb\\x12\\x45\\xac\\x84\\x5c\\x3e\\x00\\x47\\xb9\\xae\\x06\\xf0\\x40\\x10\\xa6\\x41\\x02\\x52\\xa5\\xc8\\x38\\x56\\xd0\\xac\\xc4\\xa7\\x28\\x85\\xa3\\x78\\x8e\\xe5\\xcd\\x8b\\x89\\xd4\\x64\\xc3\\x98\\x95\\x18\\x0e\\x2b\\x5a\\x94\\x77\\x35\\x0e\\x86\\x7d\\xae\\xb0\\xdb\\xfd\\xd5\\x58\\xd8\\xcb\\x84\\xa3\\xf3\\xdd\\x0d\\x83\\x83\\x0d\\x6e\\xc4\\x60\\x58\\x8a\\x3a\\xde\\x87\\x45\\x11\\x31\\xa2\\x88\\xea\\x98\\x46\\x97\\x2e\\x8a\\xdd\\xce\\x94\\xbe\\x74\\xa9\\x1e\\x56\\x1b\\x5d\\xba\\xeb\\x77\\x3e\\x57\\x49\\xa3\\xbb\\x7c\\x07\\x55\\x95\\xa9\\xb4\\x53\\x68\\x68\\x03\\x1e\\x94\\x89\\x28\\x05\\xde\\x8c\\x08\\x3d\\x5f\\x11\\xf5\\xc6\\xd6\\x05\\x8f\\x4f\\xd9\\x93\\xec\\xf7\\xe7\\xfd\\x2d\\x81\\x96\\x40\\x83\\x53\\x73\\xd6\\x67\\x35\\x4d\\x96\\xe5\\x94\\x3f\\xe5\\xf7\\x2b\\xa8\\xa9\\xe4\\x9d\\xb6\\xb8\\x0a\\x99\\x0d\\x83\\x83\\x1b\\x32\\xce\\xfa\\xfa\\xf5\\x01\\x3d\\xc0\\x06\\x5a\\xb6\\xe8\\x83\\x83\\xfa\\xe0\\xe0\\x18\\xc6\\x1c\\x41\\x28\\xc1\\x1b\\x86\\x2a\\x83\\x0a\\x24\\x5e\\xe1\\x80\\x5a\\x68\\xc4\\x1e\\x16\\x15\\x95\\x23\\xc4\\xc1\\xb6\\x1b\\x0e\\xf6\\x50\\x31\\x8f\\x18\\xad\\x78\\x00\\x0d\\x15\\x0f\\x8c\\xa9\\x2a\\x76\\x99\\x04\\x01\\xfb\\xd4\\xd8\\x37\\xc8\\xa2\\x02\\xc2\\xd2\\xc1\\x03\\x2d\\xd0\\x0a\\x61\\x00\\x85\\xa7\\x78\\x4a\\xc1\\xf6\\x32\\x57\\xb2\\x76\\x13\\x5e\\xec\\x3f\\x62\\xd7\\x91\\xe5\\x64\\x69\\x74\\x7a\\x34\\x10\\x7d\\xde\\x4f\\xeb\\xc4\\xf8\\xa2\\xfd\\xe2\\x30\\xfe\\xe4\\xd5\\xe9\\xe1\\xe9\\xba\\x8e\\x91\\x86\\x77\\xaf\\x88\\xe2\\x88\\x28\\xea\\x02\\xf1\\x21\\x0d\\x0f\\x90\\x9a\\x18\\x79\\x31\\xc2\\x1d\\x46\\x08\\x84\\xd8\\x34\\x1a\\x1a\\x43\\x39\\x12\\xc1\\xa9\\xb2\\x27\\x6d\\xe6\\xf3\\x28\\xd3\\xb7\\x64\\x49\\x5f\\xac\\xa7\\x27\\x56\\x1c\\x36\\x22\\x25\\x8f\\x34\\x9e\\xb9\\xfb\\xcc\\xc6\\x78\\xc3\\xfc\\xd3\\xe6\\x37\\x7c\\xdb\\x28\\xc7\\x5a\\x41\\x43\\x34\\xf6\\xe9\\x52\\x24\\xda\\x20\\x9b\\xb1\\x87\\x12\\xc5\\x56\\xf6\\x44\\x2e\\xe6\\xa7\\x1a\\x33\\x6a\\x2c\\xf9\\xa1\\x41\\xaf\\x7e\\xba\\x48\\xf6\\x8f\\x26\\x63\\xb6\\xab\\xc5\\x03\\xfe\\x28\\x43\\xbc\\x72\\xad\\xca\\xc0\\xb3\\x55\\xf9\\x2d\\x5e\\x62\\xdd\\xf1\\x4c\\x74\\x92\\x87\\x41\\x82\\x33\\x11\\x39\\x82\\x34\\x1d\\x41\\xd9\\x43\\x4a\\xd3\\x3e\\x0d\\xd3\\x7f\\x71\\x18\\xa5\\x73\\x8b\\x6e\\xbc\\x87\\xb8\\x34\\x39\\xda\\xef\\x7f\\x55\\x10\\x74\\xb1\\x44\\x65\\x63\\x48\\x27\\x5e\\x02\\xf1\\x98\\x11\\x4b\\xf1\\x0a\\x1b\\x35\\x63\\x26\\xa4\\x4b\\x0f\\x85\\xb3\\x1b\\xc3\\xf3\\x8a\\x85\\xe1\\xb4\\x19\\x2f\\xa9\\x0b\\x1f\\xd8\\x10\\x56\\xbd\\x82\\x50\\x28\\x47\\x7c\\x18\\x08\\x5b\\x00\\xe5\\xc1\\x0e\\x34\\x74\\x02\\x60\\x2f\\x96\\x57\\xf8\\x8a\\xe8\\x11\\x16\\xc3\\x0c\\x27\\x47\\xe8\\x08\\x53\\xc9\\xc0\\x16\\xd8\\x10\\x56\\xd5\\xf0\\x8d\\xaa\\xc1\\xc7\\xb4\\x5f\\x2c\\xea\\x48\\x15\\x0d\\x2e\\xd6\\xc9\\xbd\\x41\\xc2\\xca\\x9a\\xcf\\x35\\x3c\\x3c\\x0e\\x42\\x99\\x89\\x27\\xf0\\x6f\\xc6\\x27\\x11\\xc3\\xc9\\xf6\\x4f\\x95\\x13\\xc3\\x88\\x99\\x42\\x48\\x88\\x53\\x0b\\x08\\x07\\xc4\\x21\\x8e\\x0a\\xe8\\xdf\\xa0\\x0e\\x68\\x60\\xa1\\xcd\\x88\\xc9\\x40\\x99\\x52\\x64\\xaf\\x55\\xf1\\xb2\\x4c\\x8c\\xf7\\xb2\\x54\\x8c\\x57\\x1c\\x14\\x97\\x52\\x14\\x07\\xc5\\xa7\\x14\\x96\\x75\\x50\\xa8\\x70\\xc1\\xea\\xb9\\xe9\\xf4\\xdc\\xd5\\xbf\\x0b\\x46\\x7b\\xe6\\x6a\\x8e\\xd6\\x60\\x97\\x63\\x45\\xab\\x43\\x74\\x74\\xdd\\xd6\\x13\\x0d\\x4a\\x73\\xc5\\xb9\\x73\\xe7\\xa1\\x53\\x1f\\xbe\\xa4\\x46\\xac\\xd9\\xa8\\x6f\\xac\\x11\\x6b\\x8a\\xb7\\x06\\xf1\\xed\\x97\\x7b\\x3a\\x42\\xd2\\xdc\\xcb\\xa3\\x3d\\x73\\xa5\\x76\\xf2\\xd2\\x23\\x3d\\x3d\\xbd\\x40\\x22\\x34\\xa5\\x31\\x16\\x37\\x96\\x03\\x91\\x93\\xfd\\x14\\x12\\xdb\\x74\\xf9\\x4a\\x5e\\x83\\x5e\\x28\\x4c\\x72\\x4f\\x2a\\x3c\\x73\\xa7\\xe9\\x9f\\x74\\x9b\\xbe\\x0f\\x91\\x1a\\x1c\\xf1\\x82\\x4a\\xf2\\x2f\\x91\\x9a\\xec\\x1a\\x63\\x61\\x87\\x72\\x01\\x39\\x10\\x48\\x5d\\x13\\x16\\xb1\\xc0\\x13\\x1b\\x5d\\x63\\x13\\x12\\x24\\x2c\\x8a\\x79\\x43\\x66\\xe8\\xfa\\x20\\x91\\x71\\xee\\x27\\x2b\\x85\\xc7\\x8d\\x0c\\xe1\\xbc\\x52\\x8f\\xb9\\x8d\\xba\\x4f\\xf2\\x83\\xf2\\xf9\\xfc\\x04\\x5f\\x64\\x74\\x7d\\x12\\x33\\x9c\\x5c\\xc6\\x14\\xb8\\xc8\\x57\\x73\\x57\\x46\\x55\\x27\\x97\\x52\\x4d\\x3b\\xec\\x44\\x04\\xff\\x24\\xd9\\x09\\xf9\\x7c\\xbe\\xb2\\x30\\x94\\x11\\x84\\x34\\x09\\x7a\\xfc\\x1d\\xa8\\xd0\\xd4\\x25\\x55\\x95\\x03\\xd9\\x6c\\xbe\\xaa\\x10\\x4b\\xb9\\x7f\\x2c\\xd0\\x8c\\xa9\\x59\\x22\\x52\\xd1\\x6e\\xbe\\x1f\\x41\\xea\\xae\\x70\\x99\\xb1\\x01\\xdd\\xb8\\xdb\\x9b\\xa3\\x7d\\xa8\\xd4\\xbb\\x96\\x72\\x04\\xa2\\xce\\x8c\\xe9\\x4c\\x44\\x5c\\xa7\\x8a\\x47\\x88\\x58\\x3b\\x8a\\x7a\\x75\\x54\\x62\\x4c\\x20\\x6c\\x28\\x9f\\x14\\x9b\\xf8\\x87\\x71\\x9e\\x3b\\x71\\x02\\x31\\xd5\\x38\\xaa\\x27\\x11\\x8e\\x82\\x89\\x73\\x37\\xb0\\x10\\x30\\x63\\x9d\\x22\\xf4\\x80\\x04\\x33\\x00\\xa2\\xd8\\x69\\xc5\\x62\\x5f\\x26\\xc9\\x05\\x64\\xb3\\x9a\\x3d\\x53\\xda\\x26\\x9f\\xbb\\x89\\x2b\\x8a\\x74\\x51\\x14\\xd3\\x39\\x11\\x7f\\x04\\xe3\\x23\\x9a\\x9f\\x5c\\xa1\\x98\\x2e\\xe4\\x45\\x51\\x13\\x84\\xe1\\x82\\x28\\x88\\xa2\\x80\\x80\\xf4\\xa1\\x46\\xae\\x4d\\x3a\\x29\\x16\\x90\\x0e\\x24\\x9e\\x63\\xf8\\xf2\\xad\\x00\\x6e\\x2f\\xab\\xa4\\x58\\x2f\\x89\\xbf\\x78\\xc8\\x98\\x98\\xa1\\xa4\\x18\\x0f\\xeb\\xa5\\x6e\\x9e\\x7e\\x56\\x4f\\x6d\\x7d\\x47\\x27\\xc6\\xd4\\x81\\x42\\xbd\\x13\\xe3\\xcd\\xe6\\x44\\xfe\\xb3\\xa6\\xf7\\xd4\\xda\\xeb\\xc9\\x79\\xe1\\x00\\xbe\\xd9\\xd9\\xd1\\xe0\\x24\\x39\\x1a\\x4f\\x59\\x00\\x65\\x20\\x08\\x80\\xda\\x29\\x6c\\xbc\\x52\\x8e\\x76\\x9e\\x8f\\x25\\x95\\x54\\x98\\xf5\\x62\\x5b\\xd8\\xb4\\x83\\x63\\x08\\x92\\xd3\\xea\\xc3\\x3e\\x87\\xcb\\x21\\x3b\\x1c\\xe7\\xa1\\xf6\\xf3\\x1c\\x0e\\xd9\\xe1\\x72\\xf8\\xc2\\xf5\\x09\\xa4\\x36\\xcd\\x6f\\xb2\\x37\\xb5\\x18\\x57\\x36\\x6f\\x36\\x9e\\x69\\x69\\xb2\\x37\\xce\\x6f\\x36\\x35\\x60\\x16\\x65\\xa1\\x06\\xc0\\x2d\\x31\\x9c\\x4c\\xf1\\x0a\\x97\\x2f\\x08\\x1f\\x07\\x3f\\xbe\\x19\\x65\\x0b\\x37\\x7f\\x1c\\xfc\\x18\\xf7\\xe9\\x1e\\x58\\x81\\xae\\x47\\xcf\\x43\\x0d\\xd4\\x03\\xb8\\x15\\x96\\x63\\x28\\x5e\\x91\\xdd\\xbc\\xc2\\x1e\\xdc\\xb0\\x61\\x50\\x0f\\xee\\xd4\\x97\\x06\\x97\\x22\\x6d\\xc3\\x86\\xeb\\xf4\\xe0\\xc5\\x7b\\x8a\\x1f\\x2f\\x09\\x2e\\x21\\x78\\xb9\\x19\\xe5\\x51\\x06\\x6a\\x0d\\x4d\\x61\\x24\\x0e\\xb0\\xe8\\xc1\\x60\\x3e\\x2b\\xe6\\x36\\xed\\x41\\x99\\x60\\x3e\\xbb\\x29\\x27\\xee\\xc1\\x38\\xcc\\x40\\x86\\x68\\xe2\\x1a\\x00\\x44\\x82\\x9d\\x12\\xa3\\xa0\\xdc\\xc7\\x37\\x17\\x84\\x8f\\xd1\\xcd\\x1f\\x0b\\x85\\x9b\\x3f\\x36\\x6c\\x57\\xcd\\x7c\\xaa\\x09\\xc0\\x4d\\xb1\\x0c\\x27\\xf3\\x94\\x2c\\x49\\x0c\\x4f\\xf1\\x4a\\xa1\\x77\\x87\\xb0\\xa5\\x77\\x44\\xef\\xed\\x0f\\xf6\\xa3\\x5c\\xef\\x8e\\xaf\\x3d\\xb8\\xa5\\x57\\x27\\x67\\x55\\x63\\x31\\x14\\xd4\\x91\\xb8\\xbf\\x1c\\x21\\x34\\x21\\x33\\x91\\x89\\x71\\x06\\xca\\xc8\\x59\\x18\\x87\\x5c\\x0e\\x81\\x48\\xe2\\x38\\x05\\xcd\\x47\\x23\\x8d\\x44\\x2f\\x33\\xa2\\x98\\x35\\x42\\x7a\\x1a\\xd2\\x69\\x1f\\x89\\x37\\x65\\x49\\x0b\\xcd\\x3c\\x04\\x77\\x84\\x89\\x50\\x72\\x84\\xc1\\x54\\x9f\\x45\\x62\\xb1\\xa0\\x21\\x71\\x1c\\x90\\x80\\x32\\x62\\x4e\\x14\\xd3\\x82\\x00\\x9f\\x06\\x89\\xdd\\xdc\\xa2\\x34\\x5f\\x62\\x93\\x48\\xc2\\x8b\\xcc\\xb8\\x30\\xd9\\x34\\xad\\x58\\x28\\x29\\x6a\\x0c\\x90\\x4a\\xfe\\x47\\x8a\\xba\\x66\\x04\\x18\\x7d\\x44\\x6a\\x03\\x2a\\x58\\xe0\\x1f\\x19\\x1b\\xa0\\xe5\\x08\\x43\\x13\\x63\\x6c\\xe9\\xc2\\xa5\\x57\\x74\\xb6\\xb6\\x76\\xb6\\x5e\\x5a\\x11\\x37\\x4d\\x17\\x87\\xb3\\xe1\\x96\\x60\\xb0\\x25\\xfc\\x66\\x2b\\xbe\\xb9\\xb6\\x52\\x51\\x14\\x35\\x51\\xb4\\x00\\xb1\\xd6\\x26\\x78\\x20\\x0c\\x31\\xc3\\x42\\x8e\\x4e\\xc9\\x04\\x94\\xc1\\x21\\x0a\\x56\\x21\\x44\\xe5\\x13\\xba\\x90\\x09\\x6d\\x30\\x98\\xa1\\x51\\xae\\x9a\\x3f\\x7a\\x7a\\x3e\\xd3\\xe3\\x6c\\xe8\\xe8\\xf4\\x32\\xaa\\xc8\\xa8\\xa4\\xd5\\x69\\xef\\xf3\\x93\\xb8\\xa5\\xe7\\xcc\\xde\\x1e\\xa7\\xad\\x7e\\xd4\\xeb\\x25\\xc2\\xca\\xcb\\xa8\\x8c\\x57\\xc4\\x9e\\x42\\x6d\\x79\\x9c\\xdf\\x18\\x37\\x0c\\x01\\x0f\\x3d\\xa0\\xc0\\x5c\\x58\\x8c\\xbd\\xe8\\x52\\xb4\\xd9\\x6b\\x7e\\xa7\\x26\\x9d\\x97\\x86\\xd2\\x52\\xe6\\x3d\\xdb\\xa4\\xe7\\x4a\\xdf\\xa5\\x72\\x8c\\x58\\xb4\\xf1\\x7f\\x77\\xc5\\xf1\\x56\\xb2\\x7f\\x85\\xec\\x8b\\xaf\\x56\\xdc\\xa8\\x7c\\x14\\x8d\\x91\\xb3\\xad\\x15\\x77\\x2a\\x8f\\x5f\\xad\\xd8\\xdf\\x5d\\xb1\\x2f\\x1a\\x5f\\x50\\xa1\\x15\\xec\\x24\\xfa\\x29\\x53\\x3c\\xc3\\x9e\\x34\\x16\\x94\\xc3\\x9f\\x8a\\x1e\\xd6\\xc4\\x4c\\x46\\x1c\\xca\\x4f\\xca\\x8e\\x28\\x51\\x69\\x03\\x89\\xe5\\x61\\x0b\\x89\\x32\\x89\\x92\\x61\\x71\\x89\\x3c\\xb1\\xc0\\x31\\xd9\\x34\\x38\\x0b\\x5a\\xbd\\x13\\x31\\xce\\x06\\xcd\\x59\\xaf\\x8d\\x39\\xeb\\x11\\x83\\xc0\\x59\\x9f\\x46\\x22\\xc9\\xf4\\xa9\\x77\\x16\\xf3\\x5a\\xbd\\x53\\xcc\\x43\\x39\\x2b\\x22\\x4f\\x46\\x5c\\x20\\x2a\\x51\\xbc\\x24\\x4b\\x3c\\x4b\\x8c\\x2f\\xa4\\xa9\\x9a\\xa6\\x0a\\x59\\xec\\xa4\\x65\\x35\\xed\\x40\\x56\\x3b\\x70\\x80\\x70\\x58\\x18\\xe5\\xd1\\x4f\\x09\\xc7\\xb7\\x61\\xd9\\xc0\\x2b\\xac\\xd7\\x4b\\xf1\\x8c\\x4c\\x46\\x7d\\x59\\x96\\xe2\\x0d\\x37\\x55\\xe1\\x15\\x40\\xd0\\x1b\\x3c\\x65\\x5f\\xcc\\xe5\\xbd\\x67\\xab\\x7f\\xf9\\x6f\\xa9\\xc0\\xcc\\x9e\\xd9\\x8b\\x13\\xd3\\xa8\\xae\\x59\\x01\\x24\\xa2\\x3b\\xa6\\xe3\\x7b\\x99\\x9e\\xbb\\xff\\xf5\\x9c\\xad\\xed\\x62\\x72\\x79\\xa0\\x26\\x30\\x33\\x96\\xe8\\xb9\\x2a\\x31\\x2b\\x50\\x2c\\x54\\x64\\x92\\x31\\xe0\\x83\\x38\\x00\\x4a\\x19\\x8c\\x23\\x91\\x3e\\x26\\xf1\\x07\\x29\\xa9\\x50\\x15\\x76\\x08\\xf6\\xf8\\x4a\\x48\\x9d\\xe7\\x49\\x0c\\x24\\x04\\x7f\\xbb\\xbf\\xc1\\xef\\x13\\x7c\\x3e\\x81\\x24\\x10\\x69\\xaa\\xaa\\x11\\x93\\x26\\xea\\x69\\xe5\\x24\\x89\\xa3\\xfd\\xfe\\xf6\\x86\\x40\\x20\\x52\\xd7\\x1e\\xf8\\x82\\x28\\x22\\x0d\\x4b\\x17\\xda\\xaf\\xaa\\x7e\\x1a\\x89\\xb4\\x0f\\x4c\\xac\\xe7\\x50\\x01\\xdc\\xd8\\xa7\\x75\\x7b\\x71\\xe3\\x1c\\x14\\x35\\xcd\\x26\\x27\\x15\\x5e\\x61\\x95\\x76\\x8a\\x4f\\x49\\x13\\xa9\\x29\\x7f\\xdd\\xb6\\x30\\xb0\\xa4\\xb9\\xa3\\xb6\\xd6\\xe1\\x49\\xf2\\x61\\xdb\\xc2\\xc0\\x73\\x35\\x6c\\xf3\\xa2\\xb8\\xda\\xbf\\xb6\\x63\\x05\\x1d\\x42\\x75\\xe7\\x2f\\x0c\\x2c\\x6e\\x99\\x56\\x57\\x47\\xb1\\x8b\\xe6\\x9d\\x1a\\xaa\\xf3\\x2e\\x0c\\x3c\\x77\\x8e\\x6b\\xe1\\xb4\\xb5\\xfd\\xd3\\x17\\xad\\x6c\\x6a\\xf1\\x86\\x8c\\x1e\\x11\\x49\\x46\\x09\\x05\\x2d\\x98\\x1b\\x8c\\xa1\\x96\\x18\\xae\\xa3\\xd1\\x62\\xd4\\x7c\\x82\\x64\\xf9\\x38\\xf7\\xaf\\x0d\\xc5\\xc5\\xa6\\x66\\x52\\x15\\xaa\\x0b\\xe1\\x8b\\xb9\\xb5\\xfd\\xa1\\x55\\x03\\x73\\x5c\\xb4\\x51\\x41\\xff\\x7f\\x2a\\xdd\\xd0\\x49\\x72\\xb6\\x2c\\xdd\\xaa\\x85\\xad\\x21\\xdb\\xb0\\x73\\x32\\x21\\x6d\\x51\\x05\\x4d\\xc2\\xa4\\x92\\x72\\x13\\x6f\\x17\\x2a\\xdf\\xb1\\x54\\xe4\\x57\\xb9\\x00\\xa2\\x74\\x84\\x56\\x26\\xbf\\x5a\\x1c\\x16\\x2b\\x6a\\xcf\\x61\\xb5\\x2e\\x22\\xa1\\xba\\x14\\x09\\xda\\xd0\\x77\\x49\\xb4\\xc1\\x55\\x1a\\x6f\\x31\\xf2\\x5d\\xa2\\x0c\\xaf\\x48\\x09\\xef\\x4a\\xb4\\xab\\xb5\\xb3\\xbe\\x66\\x84\\xf6\\xf5\\xa1\\x4d\\x7f\\x4c\\x1c\\xa0\\x7d\\xe8\\xc9\\xe2\\x4d\\xad\\x5d\\x0e\\x3f\\xfd\\x61\\x9f\\xf5\\x2f\\x7f\\x4c\\xf8\\xff\\xcf\\xd9\\x09\\x56\\x10\\x41\\x26\\x6d\\x6c\\x87\\x04\\xcc\\x07\\x70\\xb3\\x88\\xe2\\x39\\xaa\\x3d\\x26\\x93\\xcc\\x08\\x96\\x8a\\x19\\x23\\x67\\x98\\x5d\\xcc\\x63\\x76\\x12\\x25\\xb1\\xbc\\x99\\x4d\\x61\\x5e\\x1d\\x60\\xd0\\x96\\xc0\\x41\\x64\\xa3\\xfd\\xa8\\xdd\\x29\\x30\\x6d\\x9c\\x27\\x18\\x99\\xc6\\x33\\xbd\\x33\\xe2\\xf1\\x82\\x18\\x0d\\x25\\xe6\\xac\\xbb\\x2c\\x14\\x66\\xb6\\xf4\\x72\\x28\\xc1\\x39\\x6d\\x9c\\xd7\\x2f\\x0f\\xa2\\x43\\xde\\xe2\\x3d\\x81\\x2f\\x23\\x3f\\x6d\\x6b\\x77\\x79\\x7a\\x7d\\x51\\x7a\\x16\\x17\\x0b\\x85\\xa6\\xa5\\xa6\\x9d\\xc2\\x46\\x5b\\xcf\\x9e\\xb9\\x6c\\x46\\xb7\\xdd\\x13\\x0a\\x5d\\xb6\\x6e\\x4e\\x22\\xc4\\x77\\x0d\\x6c\\x79\\x93\\xb3\\x39\\xb9\\x04\\xe2\\x9c\\x83\\xb2\\x9f\\x2c\\x4a\\xa1\\x12\\x9f\\xd0\\x90\\xd1\\x3d\\x00\\xd1\\x58\\x52\\x91\\x14\\xde\\x41\\x39\\x3c\\xac\\x97\\x55\\x78\\xca\\xd4\\x63\\xae\\x4f\\x1b\\xe3\\xbe\\xac\\xa6\\x86\\x0b\\x0b\\xf1\\x26\\x87\\xa3\\x29\\x2e\\x84\\x77\\xad\\x5b\\xb5\\xee\\x6e\\x32\\xb8\\x7e\\x82\\x58\\x9a\\x69\\xbc\\x2f\\x30\\x71\\x46\\x10\\x23\\x49\\x26\\xce\\x24\\x23\\xa2\\xa0\\x31\\x6d\\xd1\\x68\\x1b\\x83\\x80\\x0c\\xb5\\x6f\\xad\\x32\\x41\\xed\\x65\\x88\\x8c\\xec\\x0d\\x0e\\xba\\x0c\\x5b\\x9d\\xf9\\x4f\\xe0\\xb0\\x53\\xbc\\xcc\\x2a\\xa8\\x30\\x3c\\x15\\x00\\x28\\xab\\xaa\\xaa\\x8a\\x40\\xd7\\xf5\\x4f\\xaf\\x3b\\x23\\x08\\x5e\\x51\\x24\\x38\\x59\\x60\\x01\\x42\\xbb\\xd8\\xee\\x12\\x00\\xdc\\x31\\x2c\\x05\\xb0\\xd1\\x4b\\xc4\\x60\\xa5\\x05\\x38\\xd9\\x3e\\xbc\\x7e\\x99\\x25\\xb8\\xfc\\x02\\xe1\\x17\\xcb\\x83\\xcb\\x35\\xc3\\xf4\\x6b\\x6d\\xab\\x9f\\x76\\x6e\\x95\\x95\\x88\\x7a\\x96\\xa1\\xd0\\xf2\\xeb\\x86\\x86\\xce\\x18\\x0c\\x2e\\xff\\x9b\\x71\\xd9\\xdf\\x68\\x6f\\x9c\\xdf\\x54\\x65\\x32\\x82\\x0d\\xce\\x00\\x11\\x3d\\x82\\xc6\\x88\\x4d\\x1f\\xc0\\xb2\\x29\\x6a\\x66\\x2f\\x55\\xc6\\x62\\x62\\x09\\x96\\x8a\\xb5\\x53\\x3c\\x9b\\x32\\x0e\\x90\\xaa\\x5f\\x56\\xdb\\xd8\\x58\\x7b\\x09\\xde\\x71\\xf9\\x45\\xc1\\xbe\\xfb\\xfb\\x82\\x33\\xe3\\x97\\xc7\\x43\\xa1\\xd3\\x43\\x5a\\x2e\\x57\\x68\\xac\\xfd\\x09\\xbe\\xf5\\x93\\xda\\x26\\x7c\\xb3\\x2f\\x38\\x27\\x1e\\x0f\\x86\\x42\\x86\\x0f\\x61\\xe4\\x38\\x18\\x1e\\x52\\x84\\x89\\x44\\x4d\\xdd\\x53\\xf2\\x4d\\xcc\\xfc\\x9c\\xcf\\xf9\\xe8\\x09\\x4f\\x02\\x65\\x46\\x46\\x30\\x1f\\x93\\x9d\\x21\\xdb\\x18\\x94\\x35\\xa1\\x86\\x28\\xcd\\xd1\\x65\\xc9\\x5d\\xa2\\x99\\xca\\x37\\x32\\x24\\x9e\\x72\\x85\\xaf\\xe4\\x74\\xe9\\x44\\x0f\\xfe\\xdf\\x02\\x09\\x32\\xa3\\x69\\x39\\x92\\x5f\\xc2\\x1a\\x29\\x2b\\xb2\\x49\\x8b\\x44\\x91\\x9a\\xa9\\x7e\\x24\\xbb\\x8b\\x43\\xba\\xa6\\x26\\x06\\x12\\xfe\\x76\\x3f\\xd6\\xaa\\xe6\\x11\\xca\\xa5\\xb3\\x5c\\x22\\xc1\\x65\\x71\\xa9\\x59\\x4d\\xcb\\x62\\xa5\\x64\\x9c\\x4c\\x2d\\xb9\\x27\\x62\\x88\\xd1\\x6a\\xa1\\x99\\x11\\xb1\\x73\\x84\\xbc\\x13\\x62\\x97\\x31\\x1c\\xa8\\x7c\\xb5\\x7d\\x0c\\x90\\xb5\\x00\\xd2\\x89\\xed\\xc5\\x01\\x74\\x98\\xfa\\xa5\\x94\\xc7\\xd0\\x81\\xad\\x26\\x8c\\x45\\x02\\xbb\\x87\\x92\\x62\\x72\\x12\\x9d\\xdf\\x2f\\x8a\\xfd\\xf1\\x13\\xfd\\xf1\\x78\\xbf\\x88\\x7a\\x36\\x2d\\x5c\\xd8\\x5b\\x3c\\xd1\\xbb\\x70\\xe1\\xa6\\x45\\x81\\x0d\\x81\\x7c\\x9c\\xdc\\x24\\xfb\\x3b\\x17\\x6e\\x5a\\xb4\\x08\\xdf\\x16\\xc3\\x61\\xb1\\xd7\\xa0\\x1a\\x9d\\xc4\\xa7\\x28\\x0c\\x7d\\x29\\xaf\\xa9\\x94\\x95\\xe4\\xc0\\x52\\x36\\x89\\xc5\\xdb\\xd5\\xd8\\x5a\\xf2\\x3d\\xf4\\xb6\\xa8\\x9d\\xd5\\x30\\x5f\\x90\\x07\\x07\\x65\\x61\\x7e\\x81\\x98\\x50\\xb3\\xd3\\x9a\\x16\\xeb\\x19\\x1c\\x1a\\xec\\x21\\x3e\\x32\\xb6\\x07\\xc6\\x48\\xa6\\xea\\xc4\\x68\\x26\\x46\\xba\\xc4\\x48\\x34\\x2e\\x33\\x99\\x92\\x58\\x8a\\xa5\\x78\\x12\\xbf\\x62\\x15\\x44\\x50\\x59\\xa0\\xfd\\x62\\xa1\\x20\\xfa\\x69\\x4d\\xd3\\x18\\x2d\\xcd\\x68\\x1a\\x93\\xd6\\xd0\\x58\\xc9\\xd9\\x55\\x45\\x94\\x16\\x55\\xda\\x7f\\x77\\xe9\\x16\\xa3\\x69\\x46\\x2e\\x8a\\x51\\x1b\\x05\\x6d\\x20\\x03\\xb8\\x4b\\x3d\\x3b\\x89\\xc7\\x8c\\x5e\\x56\\x3e\\x05\\x9a\\x43\\x6e\\xbf\\xfb\\x8c\\xda\\x66\\xba\\x6e\\x57\\x6d\\x73\\x73\\x6d\\x74\\x5a\\xc7\\xd3\\x55\\x10\\x21\\x26\\x5c\\xdf\\xdc\\x5c\\x1f\\x6e\\xae\\x1b\\xc4\\x0f\\x0d\\xd6\\x36\\x85\\xbd\\xe1\\xb0\\xf7\\x85\\xc9\\xb0\\x19\\x7a\\x9c\\x21\\x19\\x4d\\x98\\x62\\xfd\\xd0\\x3e\\x35\\xd5\\xda\\xbd\\x64\\x00\\x5f\\x21\\x5f\\x49\\x1e\\x89\\x15\\x44\\x8c\\x44\\x8f\\x87\\x71\\xb9\\xe6\\x77\\x76\\x7a\\xdb\\xda\\x34\\xec\\x47\\xa0\\x03\\xfe\\x0a\\x8a\\x7e\\x85\\x49\\xba\\xbd\\xbe\\x96\\xf9\\xb1\\x4c\\xd4\\x1b\\x3a\\xa5\\x15\\xe3\\xa0\\xbf\\x8c\\xf1\\x10\\x9c\\xf6\\xe9\\x38\\xb7\\x94\\x7a\\x16\\x7b\\x13\\x0e\\x8e\\x77\\xe0\\x3d\\xd7\\x1e\\x53\\xf8\\x18\\x4f\\x39\\x78\\x3e\\xa9\\x28\\x32\\x1f\\x53\\x94\\x94\\xc4\\xa6\\xf0\\x5e\\x4a\\x30\\x2c\\x51\\xb7\\xac\\x87\\xa2\\x26\\x75\\x52\\xac\\xdd\\xe7\\x6b\\xf7\\xef\\x67\\x6d\\x16\\xc6\\x62\\x6b\\x6d\\xb4\\xdb\\xed\\x48\\xb4\\x58\\x91\\xcd\\xde\\x18\\xb4\\xd8\\x19\\x4b\\x4b\\x0b\\xbe\\x61\\x0f\\x34\\x50\\x36\\x3b\\x12\\x1d\\x76\\x7b\\x63\\xab\\xc5\\xc6\\x58\\xd8\\x93\\xfb\\xb3\\x78\\x82\\x50\\x90\\xc3\\x6d\\xb3\\x44\\x2d\\x75\\x4e\\x4b\\xc0\\x6e\\x43\\x01\\x8b\\xd3\\x69\\xb1\\x77\\xd8\\x6c\\xb4\\x97\\x2e\\x5f\\xb6\\xe3\\xab\\xc8\\xd6\\x61\\xb3\\xd0\\x95\\xb1\\x25\\x07\\xd4\\x62\\x4b\\xdb\\xcd\\x61\\xe7\\x9a\\x9b\\x2a\\x20\\x5c\\x10\\x34\\x4d\\x48\\x8f\\x15\\x75\\xa4\\x4f\\x8c\\x14\\x20\\xd0\\x34\\x6d\\x1e\\x8a\\x17\\xff\\x0d\\xa5\\x7d\\x2e\\x33\\x97\\x5e\\x70\\xf9\\x08\\x37\\xc8\\x68\\x0c\\x1d\\x04\\x27\\xc4\\xb0\\xbc\\xc6\\xda\\x9d\\x49\\x49\\x09\\x6b\\x82\\xa5\\x8d\\x24\\x70\\xae\\x9d\\xc2\\x5b\\x3b\\x31\\x3f\\xe8\\x94\\x94\\x60\\x53\\x28\\x1f\\x11\\xe6\\x25\\x93\\xf3\\x78\\x7e\\xb9\\x40\\xd9\\xac\\x96\\xae\\x39\\xf3\\x92\\xe2\\xb2\\xd4\\x74\\x64\\x45\\x36\\x4a\\x1c\\x5c\\x26\\x8a\\xbb\\xfe\\x5c\\x1b\\xfe\\x28\\x8c\\xc2\\xe1\\xe2\\x0f\\x6d\\x14\\xf2\\x86\\xc3\\x2c\\x72\\xd8\\xd0\\x8c\\x70\\x38\\x6c\\x64\\xcd\\x94\\xa2\\x52\\x46\\xa4\\x4c\\x89\\x10\\x27\\xe4\\xa4\\x08\\x10\\xe4\\x48\\x94\\x39\\x57\\x99\\x2b\\x81\\x98\\xcc\\x38\\x14\\x86\\x86\\x26\\x07\\x23\\x2d\\x00\\xa0\\x59\\x80\\x44\\xe9\\x8d\\x4c\\x1c\\xc6\\x41\\x91\\x18\\x63\\x44\\x96\\x2a\\xc2\\x54\\x8c\\xc7\\x81\\x98\\x74\\xfa\\x3c\\x56\\xd4\\x0e\\x68\\x45\\xd0\\x5c\\x2d\\x2d\\x2e\\x52\\xfe\\xa1\\x55\\xab\\xa6\\x35\\x5d\\x30\\xf3\\x12\\x51\\xf4\\xb9\\x0a\\x18\\x41\\x05\\xda\\xb0\\x38\\x02\\x16\\x40\\x6f\\x12\\xcb\\x30\\x02\\x51\\x00\\x25\\xa5\\xf0\\x0e\\x1e\\x51\\x7c\\xa9\\x5c\\x85\\x47\\x1e\\xcc\\xdb\\x8c\\xa3\\x9d\\xe2\\x71\\x15\\x56\\x89\\xe1\\xb2\\x6d\\xbd\\xed\\xe1\\x0b\\xd0\\x23\\x81\\x99\\xc5\\xcb\\x34\\x57\\x4b\\x63\\x04\\x7d\\xd3\\xbb\\xbb\\x3d\\x6d\\xa1\\x2c\\xdb\\x11\\x4d\\xfb\\x9a\\x67\\xd1\\xf9\\xce\\xfa\\xf6\\xd0\\xbb\\xc5\\x33\\x02\\x33\\x45\\x1f\\x3d\\xe2\\xae\\x8f\\x14\\x4f\\xf8\\xea\\x77\\x87\\x4f\\xe9\\x46\\xe8\\xc2\\x16\\xd7\\x38\\x71\\xd2\\x2b\\x63\\x23\\x6e\\x85\\x55\\x8c\\x39\\x15\\x94\\x1a\\x7c\\x70\\xcf\\xa6\\x9c\\x98\\x45\\x2b\\x82\\x0f\\xee\\x11\\x73\\x9b\\xb2\\x66\\x96\\xda\\x97\\xd1\\x97\\x89\\x0c\\xf5\\x01\\xb8\\x8d\\x94\\x7d\\x32\\x0c\\x87\\xbf\\x19\\xc3\\x07\\xe5\\xda\\x63\\xda\\xba\\xfd\\x73\\xd6\\xf7\\x5f\\xff\\xdd\\xd9\\x0f\\xec\\x08\\x74\\xfa\\x03\\x6e\\x4f\\x00\\x75\\xed\\x5f\\xd7\\xbf\\xfe\\xf9\\xef\\x5e\\xbf\\xe3\\x81\\xc3\\xee\\x80\\xbf\\x33\\x10\\x30\\x23\\x2d\\x59\\x94\\x85\\x3a\\x80\\xe8\\xc4\\xa0\\x99\\x84\\xb2\\xba\\xa0\\xeb\\x82\\x3e\\x86\\x77\\xfa\\xe4\\x39\\x13\\xd1\\xbf\\x93\\x95\\x89\\x32\\x69\\x21\\x9d\\x16\\xf4\\x89\\x3c\\x94\\x31\\x92\\xe2\\x99\\x2e\\x9c\\x14\\xb3\\x2c\\x65\\x7a\\xba\\xab\\x4b\\x2c\\x79\\xd9\\x66\\x49\\xdb\\x8c\\x79\\x46\\x46\\x21\\x27\\x8c\\xc4\\xd5\\xea\\xbc\\xd5\\xc0\\x14\\xb3\\x8c\\x98\\x89\\x01\\x84\\xca\\x04\\xd6\\x13\\xa4\\x94\\xea\\xa9\\x46\\xa4\\x96\\x74\\x39\\xaf\\x3d\\x4f\\x56\\x48\\x09\\x02\\xb8\\x23\\x7c\\xc4\\xad\\x10\\xb8\\xa2\\x95\\x6d\\xc4\\x52\\x24\\x92\\x60\\xb7\\xa1\\x98\\x67\\x1c\\x3e\\xb7\\x6b\\x59\\x7a\\x19\\x12\\x6b\\x8d\\xc6\\xd5\\xb6\\xd5\\x36\\x21\\x68\\xaa\\x45\\x59\\x6f\\x71\\x74\\x97\\x28\\xde\\x56\\xdf\\x54\\xfc\\x33\\x69\\x73\\x6d\\x53\\x7d\\x47\\x7d\\xbd\\xb1\\x26\\x81\\x61\\x49\\xd6\\x19\\xe3\\x31\\x64\\x14\\x8b\\xa5\\x58\\x85\\x9d\\x88\\x68\\xf3\\xbc\\x92\\x92\\x50\\x76\\xf9\\xf2\\xe0\\xf2\\x15\\xc1\\x15\\x2b\\x82\\x2b\\x96\\x7f\\x86\\xa0\\x33\\xef\\x69\\xbc\\xf8\\xe2\\x46\\xcf\\x57\\x57\\x18\\x57\\xf1\\x3f\\x66\\x0f\\x5c\\xb3\\xfb\\xc9\\x27\\xdd\\x53\\xcc\\x49\\x8a\\x26\\x52\\x72\\x92\\xa7\\xbc\\xbc\\x87\\x55\\x62\\x5c\\xbb\\xa3\\x14\\xa1\\x40\\x30\\xb0\\xa5\\xe3\\xf7\\xdd\\x17\\x1a\\x49\\xd0\\x06\\x6e\\xb4\\x2d\\x03\\xb3\\xbb\\x7f\\xdf\\x91\\x23\\xb9\\xd2\\xb7\\x9a\\x19\\xc2\\x55\\x14\\x82\\xaa\\xf4\\xdb\\x9e\\x3d\\xc1\\xd2\\x3f\\xda\\x53\\x71\\x42\\xa0\\x30\\x64\\x37\\xd6\\x17\\xad\\x53\\x6b\\x0b\\x85\\x89\\xd0\\x9c\\x31\\x00\\x71\\x82\\xd8\\xc4\\x64\\x37\\x4c\\xf2\\x7d\\x54\\x24\\x16\\x0b\\x25\\x8f\\xd8\\xf0\\x87\\xd3\\xf8\\x8a\\x58\\x1a\\x8d\\x28\\x79\\x71\\x35\\x24\\x53\\x50\\x26\\x79\\xbb\\x14\\xef\\x48\\x24\\xdb\\x27\\x92\\x22\\x8d\\x6f\\x16\\x31\\x1c\\xc9\\x1c\\x2c\\xe5\\xf4\\x1a\\x93\\x13\\x0c\\x13\\x03\\x65\\xd5\\xac\\x18\\xf6\\x7a\\xaf\\xa9\\x08\\xbe\\xec\\x43\\x94\\x9a\\x4d\\x50\\x89\\x81\\x44\\x82\\xf3\\x34\\x25\\x12\\x4d\\x1e\\x2e\\x91\\x18\\x48\\xa0\\x3c\\x73\\x40\\x1c\\xf4\\xbe\\xe0\\xeb\\xf0\\xf9\\x3a\\xde\\x27\\x7b\\xba\\xf8\\x31\\x93\\x2d\\xdd\\xa7\\x12\\xa5\\x77\\xca\\x73\\x6f\\xcc\\xc8\\x5b\\x94\\xb4\\x1f\\xd3\\x22\\xfd\\x69\\x5e\\x82\\x94\\x4a\\x25\\xbc\\x2c\\xca\\x0a\\x23\\xc2\\xfd\\x64\\x5a\\x96\\x3e\\x31\\xe3\\x68\\x3d\\x15\\x16\\xc2\\x94\\x86\\xd2\\xaa\\x5a\\x1c\\x46\\x3a\\x99\\xc1\\x55\\x5f\\x39\\x4c\\xe7\\x6e\\x69\\x71\\x43\\x05\\x87\\x3a\\xa1\\xd1\\x88\\x8c\\xa4\\x12\\x2c\\xeb\\xf5\\xd8\\x15\\x96\\xe2\\xd0\\xd7\\xf9\\x55\\xbc\\xc3\\xe5\\x48\\x38\\x8a\\xfa\\x6f\\x56\\xfd\\x66\\x15\\x1a\\xc2\\xe7\\x8e\\x84\\xc3\\x35\\xfa\\x9b\\x55\\xbf\\x99\\x88\\x15\\xe1\\x1e\\x73\\x11\\xa9\\x4a\\xd9\\x27\\x02\\xff\\x8a\\xc2\\x7a\\x11\\x3c\\xf3\\xcc\\x33\\xe8\\xf3\\x46\\xc5\\x9e\\xef\\x7c\\xc7\\x33\\x76\\xc1\\x39\\xe7\\xd8\\x48\\xf7\\x14\\x7c\\xf5\\x3b\\x76\\x18\\xb3\\xc5\\x8c\\x71\\x04\\x33\\xfe\\xa9\\xc8\\x11\\x26\\x1a\\x61\\x22\\xac\\x2c\\x31\\x3a\\x82\\x62\\x1e\\xe9\\x45\\x3d\\x9b\\x1e\\x13\\x84\\xac\\x58\\x10\\x45\\x83\\xb6\\x54\\x12\\xc1\\x75\\x9a\\x33\\x9d\\x38\\x86\\xa3\\x25\\x24\\xed\\x3d\\x50\\xb3\\x57\\xc8\\x23\\xbd\\x20\\x64\\x51\\x06\\x2a\\x46\\x66\\x1d\\xd8\\x0e\\x65\\x29\\x99\\x93\\x11\\xe4\\x72\\x39\\xa4\\xa5\\x73\\xb9\\xf4\\x30\\x86\\x7f\\x8e\\xd9\\xfa\\x1a\\x58\\x44\\xa8\\x5e\\x71\\x60\\x0f\\x97\\xe7\\x53\\x8a\\xe9\\xd9\\x3a\\x28\\x87\\x57\\x4a\\x28\\xc6\\x39\\x2b\\x31\\x86\\x09\\x28\\x27\\x53\\xca\\x34\\x1b\\xd7\\x4e\\x35\\x5a\\x28\\x47\\x4c\\x4e\\xf6\\x5b\\x95\\x14\\x1f\\x43\\x9d\\x8d\\xad\\xb6\\x60\\xb8\\x36\\x1f\\xad\\xad\\x09\\x84\\xdc\\x5c\\x6b\\x6b\\x9d\\xc3\\x5e\\xe3\\x6c\\xf2\\x06\\xa6\\xcf\\x10\\xba\\xac\\x72\\xd2\\xd1\\x1f\\x69\\xed\\x9c\\xad\\x20\\x64\\xa7\\x1a\\x6b\\x5b\\x67\\xd1\\x0d\\x2d\\x75\\x5c\\xa2\\xce\\xd5\\xdc\\x84\\xe8\\x3a\\x6a\\x67\\x34\\x56\\x13\\x6b\\xa0\\x9c\\x7f\\xe9\\xa8\\xaf\\x09\\x04\\x43\\xc1\\x4e\\xbe\\x83\\x6e\\x71\\x79\\x3b\\x66\\x2b\\xed\\xf2\\xa2\\x7e\\x3e\\x10\\x59\\x52\\x5b\\xe3\\x68\\x70\\xd8\\x97\\x32\\x4d\\x1e\\x6b\\xdd\\xf4\\x8e\\xa6\\x8e\\xf6\\x80\\x17\\xb5\\xda\\xac\\xd5\\xbd\\xe8\\x33\\xc6\\x4b\\x48\\x5e\\x85\\x7c\\xd2\\x68\\x57\\xb6\\x58\\x48\\xc7\\x92\\x31\\x92\\x31\\x57\\x2c\\x60\\xed\\x96\\x2f\\x14\\xfc\\xb1\\x98\\x1f\\x81\\x91\\x12\\x60\\x6a\\x7e\\x6b\\x79\\xe4\\xbc\\xc9\\x88\\x23\\x21\\xa2\\x1f\\x38\\x59\\x22\\xd9\\x1a\\x9c\\x4c\\xc9\\x12\\xd3\\x41\\xa6\\x5a\\x19\\x16\\x31\\xfe\\x46\\x99\\x78\\x7f\\x7f\\x3c\\x9d\\x0e\\xf0\\x7c\\x20\\x3d\\x34\\x5c\\x2c\\xf2\\x81\\x74\\xda\\xbc\\x84\\x32\\x73\\xd7\\xcd\\xed\\xe2\\x53\\x7c\\x97\\x2e\\x08\\xd3\\x53\\x7c\\x17\\x3e\\xfd\\x67\\x47\\x1b\\xff\\x39\\x25\\x21\\x88\\x40\\x8e\\xb4\\xbd\\x91\\xe4\\xd6\\x72\\x44\\x04\\x52\\x7c\\x2a\\x25\\x25\\xd0\\xf5\\xcb\\xf3\\x2b\\xa7\\xf7\\xf7\\xad\\xa7\\x13\\xde\\x5d\\x4b\\x35\\x14\\x5c\\x91\\x5f\\xd1\\x39\\x2f\\xd9\\xbc\\x30\\x6d\\xd0\\xe5\\x18\\xca\\x22\\x06\\xfb\\x2c\\xd1\\x88\\x1c\\x31\\xbc\\xba\\x31\\xa1\\x42\\x6b\\x59\\x89\\xc6\\x94\\x39\\xa6\\x2c\\x51\\x33\\x23\\x6e\\x53\\x53\\x09\\x53\\x6a\\x29\\xf7\\x14\\xb3\\x2b\\x26\\xcd\\x83\\x1d\\x1a\\x19\\xa9\\x52\\x4d\\x0b\\x04\\x62\\x1b\\x68\\x28\\x6f\\x8e\\xc9\\x78\\xbd\\x2c\\xc9\\xb0\\x29\\x9c\\xbb\\xc3\\xb5\\xe2\\xfe\\x6c\\x16\\xa9\\x4d\\x9f\\x3b\\x63\\xdb\\x5a\\x32\\xef\\xc3\\xb0\\x8b\\xf0\\x73\\x8d\\x24\\x37\\xc1\\x78\\x92\\xa2\\x58\\x86\\x57\\x10\\x63\\xbe\\xa0\\x6b\\x5a\\xc5\\x5b\\xd8\\x1b\\xcc\\x66\\xab\\x34\\x5f\\x49\\x1b\\x33\\x5e\\x13\\x56\\x37\\xcb\\x50\\x1c\\x2f\\x2b\\x88\\x11\\x6a\\xbd\\x34\\xed\\xa5\\xcf\\xdf\\xbe\\xfd\\xe0\\xf6\\xed\\x63\\xba\\x7e\\x26\\xed\\x6d\\x6e\\xf6\\xa2\\xf0\\x76\\x92\\x63\\x3e\\xa9\\x14\\xd3\\x63\\x9c\\x28\\xa5\\x7a\\x5e\\x65\\xe1\\x52\\x12\\x0c\\xc9\\x69\\xe5\\x29\\x9f\\xaa\\xa6\\x15\\x8c\\x49\\x0e\\x3d\\x9a\\xd9\\x87\\xd8\\x4e\\x70\\x55\\x94\\x6a\\xe4\\x9d\\xbb\\x81\\x25\\xe3\\x0a\\x1d\\xd0\\x49\\x56\\x3c\\x4c\\xc1\\x4c\\xe8\\x87\\xf9\\x30\\x00\\x83\\x00\\x6e\\x46\\x22\\x14\\x6d\\x35\\x37\\x45\\x96\\x18\\xde\\x38\\xf6\\x38\\xf0\\x01\\xb9\\xc9\\x70\\x32\\xbe\\xc9\\xb4\\xc7\\x64\\x09\\x5b\\xa3\\x64\\xd4\\x01\\xdf\\x71\\x9b\\x8f\\xf3\\xc9\\x94\\xc4\\xe4\\xf5\\xdc\\x08\\x19\\x15\\x24\\xbe\\xac\\x9f\\x16\\x0b\\x82\\x26\\x6a\\x22\\xed\\x17\\x31\\x64\\xa2\\x2e\\xe4\\x44\\x41\\xd4\\xf1\\x1d\\xa4\\xea\\x7a\\x6e\\x64\\x04\\x81\\x28\\x16\\x8d\\xf9\\x58\\x39\\x51\\x1c\\x07\\x91\\xf6\\xe7\\xc8\\x04\\x2d\\xa4\\x8b\\x62\\xb1\\x20\\x8a\\x9a\\x9f\\x46\\x9a\\x9f\\x36\\xb2\\xdf\\xc7\\x41\\x14\\x73\\x82\\x30\\x4c\\xfb\\x45\\xe2\\xcf\\x1b\\x96\\xbf\\x1d\\xcb\\xcd\\x68\\x54\\xb6\\x8b\\x48\\x2d\\xe6\\x51\\x5e\\xcd\\x8a\\x62\\x36\\x0f\\x9f\\x2e\\x5d\\x19\\x59\\x62\\x54\\x23\\x4f\\xbf\\xa8\\xeb\\x65\\xe1\\x6a\\x35\\xf5\\x76\\x8e\\xcc\\x03\\x22\\x1a\\x41\\xa2\\x28\\x4e\\x91\\x58\\x8e\\xa7\\x22\\x4c\\x04\\x41\\xe7\\xaa\\xb3\\x3c\\xf1\\x2d\\xe1\\x2d\\x71\\xcf\\x8f\\x48\\x84\\x41\\xcf\\xc4\\x7a\\xc6\\xc6\\x7a\\x4e\\x17\\x08\\x34\\x39\\xf4\\x8e\\xc9\\x37\\x09\\x12\\x27\\xe4\\xda\\x29\\x96\\x93\\xd9\\x14\\xaa\\x5b\\xba\\x93\\x4d\\xd0\\xeb\\xfb\\xfa\\xa7\\xaf\\xcc\\x2f\\x9f\\x8b\\xb4\\xf4\\xc2\\xe6\\xe4\\xbc\\xce\\x15\\xf9\\x15\\x4a\\x15\\xbd\\x9b\\xb9\\xc4\\x56\\xce\\x2a\\x29\\xd2\\x64\\xe9\\xc5\\x2a\\x2c\\x3a\\xad\\x7b\\x5b\\xe7\\xb6\\xee\\x96\\xbd\\x17\\x4e\\x30\\xf1\\x15\\xf1\\xf8\\x2e\\xe4\\x2d\\x9e\\x50\\x51\\xb8\\x52\\xc1\\x7d\\xb4\\x7b\\x37\\x54\\x50\\x97\\x03\\x9a\\x21\\x4c\\x34\\x1c\\x49\\xef\\xfa\\x74\\x11\\xa9\\x61\\x0f\\x69\\xe8\\x24\\x39\\x89\\xc4\\x74\\x5a\\x55\\x33\\x25\\x69\\x69\\xe8\\xd9\\xb2\\xb4\\x9c\\xc2\\x06\\x64\\x29\\x32\\x0d\\x55\\xf9\\xfb\\x36\\xe0\\xbc\\x5a\\x83\\x94\\x2b\\x4c\\xc0\\xdd\\xbb\\x44\\xf1\\x67\\xf5\\xcd\\x25\\x0b\\xb0\\xb9\\x9e\\xc3\\x16\\x60\\x09\\x4b\\x79\\x92\\x39\\xc3\\x91\\x39\\x5a\\x14\\x4b\\xd1\\x8c\\x24\\x63\\x2b\\xbe\\xec\\xe4\\x97\\x53\\xf8\\xf1\\x6e\\x4c\\xd3\\xbc\\xaa\\x9a\\xa6\\x7d\\x15\\x2e\\x52\\xda\\x47\\xef\\x4a\\x6b\\x8c\\xaa\\xa2\\x5a\\x41\\x10\\x7d\\x2e\\xc1\\x4f\\x93\\x29\\x82\\x63\\xb4\\x5f\\xa8\\x8a\\x56\\xd1\\xc0\\x1b\\xfe\\x33\\xe3\\x70\\x30\\x4c\\x44\\x4e\\xc6\\x78\\x5c\\xa6\\xad\\xba\\x22\\x7c\\x16\\x91\\x93\\xd8\\x1b\\x77\\xb7\\x8c\\x43\\x8b\\xdb\\x4f\\xa3\\x9e\\xf6\\xd2\\xb8\\x7c\\xbb\\x1f\\x09\\x28\\xeb\\xa3\\xa7\\x51\\x61\\x26\\x1e\\x67\\xc2\\xd4\\x34\\xda\\x37\\xe4\\xa7\\xc9\\x9c\\xab\\x0c\\x71\\x7d\\x55\\x1a\\xaa\\xe6\\x70\\x18\\x33\\xaa\\xda\\x00\\x10\\x76\\xcd\\x14\\x89\\xc5\\x2c\\x67\\x18\\x80\\x51\\x63\\x48\\x97\\x0c\\xd3\\x23\\x71\\x1c\\x54\\x46\\xf3\\xe6\\x0a\\x24\\x47\\x0b\\x81\\xae\\x67\\xb3\\x9a\\x86\\xb2\\x82\\xe0\\xf5\\x16\\xc7\\x0a\\xd8\\xc4\\xb8\\x5d\\xd4\\x05\\x5d\\x2c\\x67\\xb6\\x65\\xcd\\x6c\\xa6\\xa0\\x91\\x39\\x85\\x35\\x96\\x03\\x6b\\x30\\x62\\x19\\xb4\\x2b\\x66\\xe1\\x78\\x13\\x57\\xcf\\x18\\x1c\\xec\\xec\\xeb\\xeb\\xac\\x53\\xd5\\xba\\x19\\x4f\\x93\\xfc\\xaf\\xe1\\x9f\\x5f\\xb4\\x5a\\xe8\\x5b\\xd5\\x27\\xa8\\xaa\\x28\\x8a\\x07\\xc5\\x83\\x42\\xe5\\x4c\\x1b\\x8a\\xcc\\x15\\x20\\x70\\xa7\\x26\\xcd\\xaf\\x51\\x18\\x96\\xe2\\x65\\x6c\\xff\\xda\\x29\\x5e\\xf9\\x97\\x8a\\xf9\\x35\\x87\\xb4\\xe6\\x2d\\x0b\\x36\\x05\\x36\\xa1\\x25\\x81\\x4d\\x01\\xad\\x62\\x6e\\x4d\\x60\\x7b\\xc2\\x3f\\x5b\\x3f\\xfb\\xd4\\xf0\\xa9\\xa7\\x46\\xd6\\x84\\x27\\xea\\xf9\\xd5\\xff\\xdf\\x7a\\xe8\\xcd\\xf3\\xcf\\x26\\xf5\\x9c\\xdd\\x6a\\xd6\\x43\\xa4\\xaf\\x7f\\x87\\xe4\\xef\\xd7\\x37\\xad\\x0e\\xaf\\x5e\\x1d\\x3e\\x2d\\x5c\\xe9\\x07\\xd8\\xa1\\x81\\x68\\x51\\x52\\xa6\\x65\\x92\\xfe\\x41\\x75\\x1b\\x9a\\xb7\\xf7\\x56\\x28\\x20\\x94\\xd9\\x3e\\x23\\xb0\\x50\\x2f\\x9e\\xa8\\xd4\\x42\\x15\\xd8\\xa9\\x23\\x11\\xdf\\x90\\x91\\x63\\x39\\xe1\\x61\\x7d\\xda\\x4c\\x24\\xc4\\x90\\xac\\x90\\xae\\x29\\xa7\\x22\\x91\\x2c\\x4b\\x51\\x1d\\x9b\\x6a\\x2a\\x92\\xa1\\x67\\x8d\\x39\\x2d\\x7e\\xec\\x13\\x23\\x6c\\x04\\x30\\x3c\\x25\\x2b\\x32\\x25\\x2b\\x0a\\xcb\\xf0\\xe6\\xd4\\x62\\x35\\x80\\x56\\x05\\x2e\\x15\\x07\\x97\\x09\\xc3\\x57\\x64\\x72\\x0b\\x1f\\x73\\xfb\\xdd\\xe8\\xb6\\x40\\xf1\\x99\\xc0\\x25\\xa7\\x84\\xc3\\x0c\\x13\\x0e\\xef\\x92\\x85\\x55\\x81\\x8c\\xc0\\x3c\\xb6\\xb2\\xc1\\xed\\x6e\\xa8\\x28\\x19\\x30\\x5e\\xdc\\x6c\\x65\\xb9\\x26\\x17\\xb0\\xbf\\x7c\\x3f\\x47\\x4a\\x1c\\x76\\xfb\\xdd\\x39\\xa4\\x66\\xe5\\x5d\\xe5\\xb2\\x32\\xbb\\x70\\x31\\xbb\\x48\\xd6\\x69\\x16\\x44\\x94\\x31\\x63\\xa4\\x15\\xb3\\x5c\\x27\\x7b\\x3a\\x12\\x99\\xd3\\x29\\x08\\xc2\\xd9\\xf5\\x34\\x5d\\x7f\\x2f\\xde\\x71\\xe9\\x42\\x26\\xa3\\x89\\x22\\x12\\xe9\\xfa\\xe2\\xcb\\xf5\\xcd\\xcd\\xf5\\x68\\x71\\x3d\\x2d\\x08\\xd8\\x8e\\x2a\\x95\\x6a\\xc7\\x3a\\x54\\x51\\x38\\x99\\x92\\x94\\x29\\x4a\\x1c\\xc3\\xba\\xa8\\xb2\\x44\\xed\\xe0\\xee\\x83\\xa3\\x93\\x8a\\x43\\xe5\\xd2\\xdc\\xd5\\x11\\xb4\\x32\\x5c\\x2b\\x2b\\x4a\\x40\\xb9\\xc9\\xd0\\xfc\\x77\\xdf\\x9f\\xc0\\x91\\x07\\x5a\\x20\\x6e\\xce\\xd3\\xad\\x1a\\x47\\x9d\\x3c\\x8c\\x5a\\x59\\x78\\x6f\\x53\\x2c\\x19\\x0b\\xbb\\x5a\\x5d\\x4e\\x8f\\xa7\\xdd\\xd5\\xd4\\xb9\\xa9\\xa2\\xb2\\x3f\\x34\\x31\\x58\\x80\\x37\\xb8\\xdd\\x7e\\xa7\\xc7\\xc3\\x36\\xbb\\x36\\x76\\x75\\x21\\x61\\x12\\x00\\x56\\x32\\xa2\\x79\\x09\\xc9\\x80\\xb4\\x13\\xcb\\x86\\x67\\x68\\x46\\x91\\x28\\x96\\x22\\xc9\\x2d\\xbc\\xc2\\xca\\x12\\x9a\\xd3\\xd9\\x39\\xe7\\xcc\\x33\\x2f\\x61\\x36\\x61\\xff\\x75\\x13\\xf3\\x70\\xd7\\x6a\\x54\\xb3\\xba\\xeb\\xcc\\x33\\xf7\\x3d\\x68\\x5c\\x79\\x90\\x64\\x34\\x18\\x54\\x63\\x05\\x07\\x38\\x49\\x06\\x12\\xc9\\x62\\xa1\\xa6\\x28\\x8f\\x50\\x7e\\x56\\x14\\x85\\x69\\xd5\\xe5\\x66\\x04\\xdc\\xe1\\xa2\\x28\\x9e\\x79\\x52\\x05\\x05\\xd1\\xc8\\x85\\xd4\\xcc\\x11\\x5f\\x0b\\x34\\x80\\x97\\xf8\\x61\\x3c\\xa2\\x78\\xb3\\x6c\\x16\\x9b\\x26\\x2c\\x61\\xab\\xce\\xce\\x07\\x51\\x5f\\xb0\\xf7\\x4c\\x5c\\xf4\\xcd\\x79\\x81\\xb9\\x64\\x5e\\xb0\\x7d\\x7f\\x67\\xd7\\xaf\\x8b\\xaf\\x05\\x7b\\xcf\\xc0\\x85\\xde\\xec\\x5c\\x24\\x66\\xf6\\xcd\\x0b\\x72\\x50\\x01\\xbb\\x81\\x83\\x00\\x44\\xa6\\xc6\\x03\\x6b\\x06\\x6e\\x29\\x05\\xfb\\x4b\\xc8\\xdd\\xd9\\x39\\xbb\\x02\\xfa\\xd7\\x43\\x11\\x1f\\xc3\\xa4\\x7b\\x6b\\x6b\\x4f\\xc6\\xcf\\xe6\\xc4\\x25\\x49\\x9f\\xb0\\x4e\\x48\\xf7\\xfa\\x5a\\x7c\\x3e\\x32\\x0f\\xb8\\x09\\xfd\\x01\\xfd\\x61\\xc2\\x0e\\xe0\\x39\\x4a\\x52\\x24\\x85\\xa5\\x18\\x8e\\xe2\\x39\\x99\\x57\\x64\\x49\\x61\\x25\\x4a\\x61\\x51\\x6f\\xd7\\x22\\x61\\x51\\x57\\xd3\\xc2\\xeb\\x07\\x06\\x36\\x2f\\x5e\\xbc\\xd9\\xd8\\xbf\\xea\\xf3\\xe5\\xf2\\x79\\xe1\\xa2\\xf2\\x85\\x81\\x81\\x97\\x57\\xae\\x84\\xaa\\x92\\xc9\\x0c\\xc4\\x89\\x8c\\x0d\\x43\\x02\\x45\\x27\\xd5\\xf0\\x36\\x99\\x01\\x18\\x1e\\x1a\\x1c\\x1c\\x1a\\x44\\x62\\x65\\x15\\x48\\x23\\x93\\xfe\\x1e\\x1a\\xc4\\xf7\\xf6\\x57\\x54\\x84\\x79\\xb0\\x12\\xfe\\xb2\\x7c\\xb6\\x57\\x95\\xcc\\xb0\\x87\\xcc\\x52\\x27\\xca\\x1c\\xd0\\x49\\x69\\xae\\xcd\\x13\\x15\\x55\\x96\\x46\\xfc\\x99\\x28\\xf1\\xbb\\xd8\\x49\\x65\\x21\\x90\\x07\\x07\\xe5\\xdc\\xa4\\xa2\\x7e\\x50\\x59\\x50\\xc9\\xf7\\xf8\\x37\\x92\\xd7\\x0d\\xd1\\x84\\xc2\\x96\\x3c\\x58\\x86\\x38\\xbb\\x6e\\x6f\\x79\\x04\\x97\\x47\\xb0\\x24\\xde\\xa7\\x9e\\xbf\\xee\\xb2\\x0b\\x57\\xa7\\x96\\xad\\x5d\\xb3\\xfa\\x42\\x57\\x5f\\xed\\xb2\\x54\\xa6\\x2f\\xb2\\xf6\\xb2\\x75\\x6b\\xf6\\xd5\\xa8\\x35\\xa7\\xf5\\xf5\\xaf\\x45\\xe7\\xd5\\xec\\x5b\\x33\\x9d\\x8f\\xb4\\xfa\\xfb\\x4e\\xab\\x21\\xf3\\x2e\\x8c\\xdc\\x98\\x06\\x70\\x83\\xcf\\xc8\\x16\\x92\\x98\\x89\\x90\\xbb\\x42\\xf1\\x0a\\x4b\\xb1\\x84\\x5a\\xa2\\xe6\\x80\\x87\\x91\\x9a\\x8b\\x32\\x02\\x89\\xf3\\x0b\\x6a\\x70\\xd3\\xa6\\xe0\\x82\\x17\\x83\\x0b\\x16\\x04\\x37\\x15\\x4f\\x98\\x17\\x33\\x02\\xb1\\xbe\\x34\\x61\\x35\\xbe\\xbb\\x70\\x53\\x70\\xe1\\xc2\\xe0\\xa6\\x2c\\xbe\\x88\\x7c\\xb4\\x26\\x18\\xeb\\xcf\\x1a\\x31\\x5d\\x2b\\xb8\\xb1\\x6d\\x37\\xd5\\x78\\x62\\x94\\x21\\x21\\x5e\\x12\\xdf\\x65\\x50\\x41\\xcb\\x90\\x39\\x6f\\xce\\x86\\x06\\x67\\xf1\\xc4\\x48\\xb1\\x20\\xfa\\x68\\xa4\\x67\\x0f\\x1c\\xc8\\xd7\\x3b\\x0b\\xf8\\x62\\xc1\\x59\\x2f\\x8e\\xa9\\xea\\x18\\xb6\\xae\\x1d\\x55\\x39\\x9b\\x86\\x0f\\xc1\\x63\\x5f\\xc1\\xc8\\x19\\xb4\\x97\\xbe\\x3f\\x25\\x03\\x38\\x2b\\x08\\x02\\x12\\x4e\\x9c\\x38\\x51\\x9d\\x07\\x6c\\xb8\\x99\\x24\\xf9\\xcf\\x48\\x01\\xcc\\x1b\\xa9\\x0b\\xc6\\xd4\\x35\\x23\\x21\\xb8\\x94\\x31\\xca\\xa0\\x31\\x32\\x9a\\x13\\xc2\\xf5\\x96\\xe8\\x29\\x4a\\x82\\x10\\xc6\\xc2\\x19\\x3c\\x27\\x4b\\xa9\\x14\\xf6\\x56\\xbc\\x5e\\x87\\x49\\xd3\\x86\\xe6\\x47\\xa7\\xc5\\xe3\\xd4\\x86\\x05\\xc2\\x82\\x0d\\x54\\xe9\\xe0\\x4d\\x42\\xd4\\x99\\xb5\\xf8\\xfe\\x9a\\xca\\x1b\\xe4\\xc0\\x4a\\xe8\\xda\\x18\\x01\\x9b\\xa8\\xf7\\x3f\\xad\\xf5\\x53\\x6b\\xfb\\xb4\\x7a\\xaa\\x5b\\xe6\\x23\\xa3\\xf4\\x24\\xad\\x40\\x4a\\x58\\x95\\x89\\x25\\x41\\x48\\x1d\\x8a\\x1d\\xd7\\x4a\\x4d\\xe4\\x15\\x18\\x75\\xa2\\x33\\x7e\\x16\\x5a\\xdb\\x9f\\xf8\\x63\\x00\\x6d\\x09\\xc4\\xbb\\x15\\xa3\\x64\\x47\\x14\\xad\\x89\\xc7\\xed\\xcd\\xe1\\xba\\xb5\\xfd\\xc1\\x40\\x38\\x14\\x15\\x16\\x6c\\xb8\\xe1\\x67\\x5d\\x89\\xfe\\xb5\\x68\\x66\\xa0\\x78\\x4f\\x20\\x1e\\x75\\x18\\x70\\x28\\xdd\\x9b\\x05\\xbe\\x2d\\x1c\\x08\\xf6\\xaf\\xad\\x0b\\x37\\xdb\\xff\\xef\\x85\\xe9\\xff\\x7c\\x4f\\x54\\xea\\xa7\\x12\\x85\\x93\\x88\\x1a\\x45\\x4b\\x34\\x59\\x55\\x87\\x96\\x68\\x9e\\x96\\x68\\xac\\x97\\x34\\xec\\x8b\\x62\\x83\\x1a\\x89\\x69\\x0d\\xd3\\xac\\x96\\x4e\\x0f\\xa3\\xe1\\xa2\\x71\\x52\\x91\\x59\\x63\\x01\\x88\\x46\\x10\\x2a\\x14\\xd3\\x68\\x58\\x44\\xc3\\x80\\xa0\\x06\\x52\\xe8\\x63\\x12\\x9d\\x22\\xda\\x6f\\xba\\xc2\\xa7\\x12\\x2c\\xfa\\x1a\\x7a\\xfe\\x79\\xb4\\x70\\x5f\\x71\\x1f\\x62\\xd1\\xe8\\x28\\x3a\\xcd\\x18\\xc3\\x2c\\x95\\xd2\\x02\\xad\\x24\\x83\\xca\\x98\\xf7\\xc9\\x48\\x32\\xc7\\x98\\x53\\x86\\x92\\xd8\\xe0\\x92\\xdc\\x53\\x8c\\x6e\\x21\\x7d\\x1c\\x34\\x61\\x58\\xf5\\xfa\\xdb\\xfd\\x5e\\x1f\\x7d\\xa0\\x38\\x5c\\x35\\x36\\x44\\x52\\x85\\xc4\\xe1\\xe1\\xe9\\xf5\\x3e\\xcc\\x85\\xbe\\xfa\\xe9\\xb4\\xbf\\x58\\x20\\xa3\\x8a\\x7a\\xa5\\xe7\\x08\\x8e\\x8a\\xf5\\x4f\\x68\\x32\\x72\\xc9\\xc3\\x74\\x00\\x32\\x3a\\x80\\xe5\\x8a\\xdd\\x14\\x70\\xc4\\x79\\x24\\xc6\\x6c\\x29\\x91\\x8f\\x62\\x15\\x36\\x62\\x35\\xa4\\x9c\\xc4\\x68\\x07\\x0e\\xd0\\x3e\\xa4\\x0b\\x3e\\x1a\\x1f\\x08\\x07\\xd2\\x6e\\xbf\\xdb\\xed\\xbf\\x4a\\x15\\xd5\\x71\\x10\\xf1\\xd5\\xb1\\x03\\xe4\\x1e\\xb9\\x8b\\x61\\x38\\x70\\x40\\xb8\\x0c\\x3f\\xe2\\xd6\\x4f\\x99\\xa1\\x21\\x91\\x5c\\x37\\xa3\\x7b\\x6f\\xa1\\xb7\\xca\\xf3\\x25\\x88\\x9b\\x62\\xa4\\xc2\\x62\\xef\\x08\\x9d\\xbd\\x6f\\xdf\\x59\\xb9\\x95\\x7b\\x73\\xb9\\x5c\\x0e\\xbd\\xb5\\x6f\\x6f\\x2e\\xb7\\x77\\x65\\xee\\xac\\xe2\\xdb\\xb9\\x1c\\xd8\\x2a\\x56\\x7a\\x68\\x33\\xe6\\xc6\\xbb\\x19\\x89\\x18\\x53\\x54\\xd5\\x68\\x30\\x63\\xca\\x4d\\xd6\\xcc\\xb0\\xaa\\x74\\x25\\x8f\\x25\\x9b\\xbc\\x4d\\x34\\x16\\x9c\\xbe\\x0e\\x1f\\xfe\\x1a\\x2a\\x8e\\x20\\xad\\x22\\xb5\\x5c\\xf4\\x7a\\x6b\\x9b\\x9a\\x6e\\xa8\\x77\\xaa\\xce\\x7a\\x2f\\xed\\x6b\\x71\\x79\\x8d\\xc3\\x91\\x11\\x04\\xe6\\x48\\xee\\x08\\x4d\\x66\\xf3\\x54\\xe6\\x30\\x04\\x30\\x34\\x53\\xc5\\xf8\\xd9\\xbf\\x0b\\x61\\x55\\x96\\xc3\\xea\\xc9\\xa0\\x19\\x69\\x0f\\x7a\\xe5\\x20\\x71\\x7e\\x6a\\xe8\\x08\\x6e\\x18\\xf4\\x57\\x12\\x6f\\x6f\\x03\\x9e\\xac\\x54\\xf6\\x77\\x6b\\xb6\\x2b\\x2c\\xd5\\x1e\\xe3\\x25\\xaf\\x37\\x6a\\xa6\\xcd\\xa0\\x18\\x76\\xe9\\x13\\x2c\\x36\\xe9\\x58\\x85\\x57\\xd0\\xd6\\xa5\\x4c\\xd0\\x4b\\xe0\\x09\\xc7\\x43\\xf8\\xab\\xf8\\x51\\xeb\\xea\\xc6\\xcd\\x77\\xd4\\x84\\x1d\\x8b\\xd0\\xf6\\xda\\xda\\xeb\\x9c\\xfe\\xda\\x71\\xa8\\xad\\xbd\\xd6\\x19\\xa8\\x4d\\x06\\xbb\\xf7\\xfd\\x71\\x6f\\x4f\\x10\\x1d\\xaa\\xab\\x6b\\x62\\x98\\xbb\\xc9\\x9c\\xeb\\x3a\\x6f\\x28\\xe4\\xad\\x23\\x87\\x1f\\xb5\\xae\\x46\\xd7\\x9d\\x3d\\x6b\\xe3\\x4d\\xce\\x40\\xed\\xb5\\xb5\\xb5\\x08\\x9c\\xfe\\xda\\xeb\\x6a\\x6b\\x93\\xc1\\xf8\\xde\\x3f\\xee\\xeb\\x09\\x82\\x0d\\x10\\x00\\x1a\\xb7\\x00\\x99\\x5f\\x81\\x5b\\x00\\x4a\\x19\\x42\\x56\\x41\\x94\\x82\\x26\\x81\\x49\\xf1\\x4a\\xc2\\xcb\\x72\\xb1\\xd8\\xc1\\x36\\x13\\xa8\\x85\\x3f\\xbb\\x6e\\x1c\\xae\\xbb\\x1f\\x21\\x03\\xb4\\xe2\\x38\\xf9\\xbe\\xad\\x7c\\x3b\\x45\\x60\\x98\\xbd\\xc1\\x7d\\x1d\\x82\\xeb\\x1e\\x28\\x8e\\x1b\\x20\\x20\\x44\\xbe\\x03\\xe6\\x4d\\x62\\x03\\x18\\x16\\xe8\\x94\\x79\\x1f\\x95\\x51\\x58\\xb7\\x82\\x74\\x91\\x11\\x19\\x31\\x87\\xbb\\x67\\x1c\\x68\\x3f\\xba\\x02\\x69\\x64\\x61\\xa5\\xf4\\x04\\x13\\x92\\xdf\\x80\\xaa\\x9c\\x03\\x10\\x33\\xf2\\xee\\x26\\x33\\xbc\\xdb\\x30\\x64\\x24\\x23\\x38\\x4f\\x42\\xd4\\x93\\x27\\x06\\xe8\\xfe\\x58\\xa4\\xc5\\xc6\\x4c\\x6b\\x15\\x6c\\x08\\xe3\\x76\\xc8\\x18\\xe7\\xae\\x1c\\x55\\x2c\\x8e\\xc5\\xfc\\xbe\\x0e\\x8b\\x18\\x0d\\x84\\xe2\\xa1\\x49\\x92\\x4c\\x41\\xb4\\x48\\xc4\\x58\\x31\\x5d\\x29\\x9d\\x8c\\x6c\\x2a\\x50\\x10\\xc3\\xd1\\x92\\x19\\xfd\\x13\\xd1\\xb0\\x26\\x0a\\x82\\x20\\xa2\\x61\\xbd\\x38\\x22\\x08\\x5a\\x2e\\xf7\\x4f\\xca\\xfa\\xab\\x5c\\x9d\\xc7\\x4e\\x64\\x22\\x42\\x11\\x22\\x60\\xf5\\xe2\\xfb\\xc8\\x47\\x8e\\x16\\x14\\xdf\\x37\\x35\\x46\\x01\\x8d\\x11\\x6f\\x83\\xd4\\x16\\x51\\xf8\\x28\\xcd\\x6f\\x45\\x17\\x06\\x84\\xe2\\xe7\\xbf\\x79\\x2d\\xda\\xf5\\x22\\x3a\\x58\\xbc\\x2d\\x20\\x7e\\xf3\\xba\\xad\\xc5\\xdb\\x5f\\xac\\x90\\xcd\\x36\\x80\\xa8\\x15\\x8b\\x65\\xf8\\x78\\x5f\\x71\\x5f\\x0a\\xc9\\x9a\\x06\\x56\\x70\\x82\\x48\\x46\\x1d\\x03\\xc0\\x19\\xf3\\x25\\x28\\xab\\xd2\\x4f\\x25\\x82\\x0e\\x96\\xa5\\x62\\x5c\\xbb\\x83\\xfd\\xbb\\x29\\x26\\x68\\x70\\xf0\\xdf\\x1d\\x8e\\x06\\xaf\\x2f\\xdc\\xc1\\x77\\x4f\\xeb\\xe6\\x3b\\xc2\\x3e\\x6f\\x83\\xc3\\x11\\x77\\x34\\x77\\xcf\\xb9\\xc1\\xed\\x77\\xa7\\x6b\\x1a\\x1a\\x6a\\x32\\x78\\x17\\x9c\\x16\\x3a\\xd4\\xf7\\x19\\x94\\xb2\\xdb\\x9c\\x8d\\xf5\\x4d\\x75\\xb5\\x76\\x7b\\x6d\\x5d\\x53\\x7d\\xa3\\xd3\\x66\\xef\\xb3\\xcc\\x59\\x11\\xc6\\xce\\x73\\xb8\\xb1\\x46\\xc3\\x8f\\x6a\\x35\\x8d\\x61\\x36\\x18\\xf2\\x82\\xc5\\x84\\xfd\\x30\\xd4\\x42\\x33\\x80\\xdb\\x0b\\x98\\x0d\\xad\\x29\\x85\\xb7\\x93\\x14\\xc4\\x81\\x7a\\x14\\x58\\x12\\x58\\xbc\\xe6\\xe3\\x48\\xb7\\x88\\xde\\xd8\\xf9\\x76\\x77\\xfc\\x0a\\x74\\xb8\\xbe\\x78\\x6c\\x59\\x60\\xf1\\x39\\x48\\x0e\\x78\\xe2\\x67\\xdc\\xfe\\x56\\x2d\\x91\\xf5\\xd5\\x2b\\x94\\x90\\xb5\\x88\\x8c\\x88\\x70\\x84\\x21\\xf3\\x95\\x22\\x4c\\x84\\x35\\xcf\\x35\\x51\\x43\\xc3\\xc5\\x9c\\x28\\x60\\x8a\\x10\\xf0\\x09\\xf6\\xd1\\xd5\\x74\\xfa\\x00\\xde\\xe7\\xc9\\x21\\x20\\xd8\\x0a\\x31\\x22\\xe7\\xe2\\xe5\\xb5\\x81\\xb8\\x4a\\xfd\\x45\\xd0\\x64\\x2e\\x9d\\xe7\\xa1\\xb0\\x72\\x53\\x58\\xa2\\xe3\\x90\\xaa\\x31\\x3e\\x97\\xea\\x0f\\x74\\x06\\xfc\\xaa\\xcb\\xe7\\x6f\\x8d\\xb5\\xfa\\x8c\\x80\\x07\\x83\\x32\\x69\\xc1\\xe5\\x9b\\xd7\\xd8\\xea\\x6e\\x6d\\x75\\xb7\\x36\\xce\\xf3\\xb9\\xe2\\x8d\\x01\\x4f\\x20\\xe0\\x69\\x6d\\x88\\x0f\\xa7\\xd3\\xc3\\xa6\\x45\\x2c\\x92\\x6c\\x3f\\x2c\\xd1\\xba\\x26\\xf2\\xf6\\xa7\\xee\\x1e\\x1e\\xdf\\xa2\\x50\\x2a\\xcc\\x52\\x31\\x54\\xc0\\xfd\\x41\\x24\\x28\\xde\\x85\\xe2\\xe1\\x54\\xbc\\x7f\\x70\\x1c\\xb6\\xa3\\xf0\\xf6\\x19\\x8e\\x9c\\xd1\\x03\\x64\\x46\\x67\\xbd\\x53\\x73\\x36\\x84\\x09\\x2b\\xf5\\xc7\\xe7\\x9c\\x8d\\x34\\x4d\\x5b\\x8e\\x0c\\xde\\x48\\x90\\xf8\\x24\\x0b\\xdd\\x64\\xe5\\x40\\x32\\xc5\\x97\\xe2\\x53\\xa6\\xef\\x5e\\x4a\\x1c\\xb5\\x7b\\x4c\\xeb\\xa9\\xbd\\x9c\\x57\\x9a\\x4a\\x94\\xad\\xd7\\xaf\\x3c\\x73\\xd9\\x8c\\x5e\\x2f\\xdf\\xb3\\xf9\\x96\\xcd\\x24\\x57\\x14\\x69\\x5c\\x1b\\x23\\x24\\x06\\x12\\x02\\xd3\\xc6\\x0d\\x0e\\x0d\\xde\\x6e\\x24\\xb9\\xe7\\xf7\\xaf\\x9f\\x79\\x76\\x6b\\x94\\x3d\\x65\\xda\\xc0\\xe6\\xcd\\x03\\x3d\\x2b\\x49\\x76\\xe8\\xfa\\xf5\\xdc\\x2c\\x3a\\xea\\xeb\\xe5\\x12\\x09\\xce\\xc8\\x1d\\x95\\x07\\x07\\xeb\\x7c\\x46\\x5e\\x3b\\x82\\x2c\\x30\\x48\\x47\\x63\\x24\\xaa\\x29\\x19\\x5d\\x41\\x9b\\xf9\\x6e\\x0e\\xc3\\x55\\x31\\xf2\\xde\\x08\\x64\\x34\\x39\\x46\\x1b\\xc2\\x0b\\x37\\x2d\\x92\\x06\\x12\\xa1\\x78\\x38\\xdc\\xe0\\xaa\\x0f\\xc5\\xc3\\xd2\\x40\\x02\\xe9\\x1f\\xf5\\x2e\\x5a\\xd4\\x8b\\x6a\\x39\\x49\\xe2\\x46\\x31\\x26\\x0e\\x1d\\xc2\\x78\\x19\\xf5\\x86\\xc3\\xde\\xe2\\x9f\\xf1\\x55\\x5c\\xdf\\xb5\\xa0\\xa2\\x0d\\x28\\x0f\\x9d\\x00\\xee\\xa0\\x95\\x29\\xad\\xb2\\xc7\\x4b\\x64\\x79\\xbd\\x24\\x59\\x3a\\xd1\\x30\\xdd\\x58\\x0e\\xf3\\x12\\xe3\\xf9\\xc4\\xdb\\x16\\xa6\\xbb\\xda\\xd5\\x88\\x68\\xe9\\xb1\\xcd\\x0a\\x05\\xd4\\xcd\\x42\\x58\\x8d\\x70\\xa8\\xc7\\x92\\xf4\\x87\\x10\\xeb\\xa8\\x67\\xc2\\xde\\x10\\xef\\x98\\x36\\x8d\\x12\\x22\\xdd\\x6c\\x53\\x47\\x33\\x3b\\xaf\\xad\\x8b\\x9a\\xd6\\x53\\x13\\x6f\\xeb\\xf6\\xba\\xda\\x2a\\x66\\x50\\x54\\xda\\x73\\x66\\x7c\\xa9\\xb4\\xe2\\x88\\x35\\x42\\x47\\x50\\x56\\x27\\x19\\x1a\\xba\\x88\\xf4\\xa2\\x8e\\x18\\x5d\\x1f\\x2e\\xfd\\x23\\xad\\xa8\\x03\\xd0\\x53\\x8e\\x9f\\x54\\xcf\\x9f\\x52\\x60\\x16\\xcc\\x85\\x05\\xd8\\x2e\\xe2\\x64\\x06\\xf3\\x0a\\xc3\\xc9\\x64\\x05\\x12\\x89\\xe1\\xb0\\x77\\x64\\x2f\\x0d\\x8b\\x98\\x9a\\x80\\xcc\\xb4\\x31\\xb7\\xd2\\xb1\\xdb\\xfc\\xce\\x60\\x48\\x72\\x22\\x22\\x8b\\xfc\\x14\\x47\\x8c\\x03\\x4d\\x14\\x05\\x9d\\x6c\\x05\\x41\\x14\\x75\\x41\\x14\\xf3\\x64\\x0c\\xa4\\x40\\x26\\x5b\\xe9\\xa2\\x40\\x26\\xe1\\xa6\\xc9\\xb4\\x50\\x32\\x2a\\x62\\xcc\\xab\\x32\\x46\\x4f\\xc6\\x0d\\x27\\xcb\\xfc\\x6d\\xa5\\xff\\x62\\x5b\\x16\\xc3\\x20\\x9c\\x02\\x6b\\x30\\xd6\\x8c\\x41\\x9f\\xd2\\xa8\\x10\\x99\\xde\\x2e\\x93\\x88\\x3e\\x39\\x2f\\x0d\\x0a\\xf1\\x15\\xc7\\x95\\x9b\\x34\\xc5\\x33\\x48\\x25\\x43\\x42\\xd8\\x86\\x16\\x87\\xf1\\x8e\\x7c\\x0a\\x06\\xf4\\xe6\\x2d\\xc1\\xbc\\x8e\\x2d\\xee\\x61\\x63\\x14\\x88\\xa0\\x84\\xec\\xcc\\xb1\\x9f\\x34\\x69\\xf3\\x70\\x69\\x0e\\x59\\xda\\xbc\\xab\\x95\\x1a\\x3f\\x6c\\x44\\x85\\xc8\\x4f\\x59\\x58\\x80\\xac\\x0e\\xe3\\x02\\x90\\x23\\x4c\\x64\\x62\\x7c\\x9f\\xa2\\x38\\x59\\xb1\\x40\\x11\\xd0\\xd7\\x85\\x55\\x02\\x19\\xe3\\x5f\\x34\\xb2\\x6a\\x44\\xd3\\xd0\\x30\\x3e\\x77\\x24\\x1c\\x2e\\x7c\\xfe\\x0f\\x52\\x42\\xd4\\x8c\\xa0\\xf3\\xa5\\x31\\x34\\x4c\\x09\\x72\\x84\\x60\\x41\\x31\\x87\\xd0\\x58\\xd3\\x6f\\x2e\\xd9\\x07\\xa5\\xc1\\x33\\x99\\xe1\\x64\\x1a\\x63\\x29\\x2b\\xea\\x06\\x8e\\x44\\xb1\\x98\\x43\\x7a\\x41\\xd0\\x71\\xa3\\x04\\x9d\\x74\\xb8\\x86\\xfb\\x9f\\xac\\xcc\\x68\\x8e\\x97\\xe9\\x26\\x9a\\x34\\x23\\x4a\\xa6\\x99\\xc8\\x10\\xc5\\xa2\\xb1\\xb0\\xda\\x88\\x31\\x86\\x06\\x0d\\x55\\xed\\x98\\xba\\x0d\\x04\\x7e\\x63\\xa8\\x6f\\x22\\x4a\\x8d\\xe1\\x73\\xe3\\xd3\\x0a\\x4a\\x96\\xcc\\xa1\\x40\\xd9\\x84\\x9f\\x33\\xe0\\x16\\xc5\\x5c\\x2e\\x27\\xe4\\x72\\x1a\\x19\\xfc\\xd3\\xc4\\x82\\xa8\\x1b\\x00\\xe9\\x62\\xd6\\x80\\x50\\xc7\\xb7\\x85\\x1c\\x86\\x0d\\x91\\x7b\\x26\\x15\\x60\\x10\\x4d\\x48\\x45\\xf1\\x1f\\xc3\\x79\\x89\\x52\\xd9\\x12\\xa5\\x49\\x0c\\x47\\x9b\\xd7\\x30\\x6c\\x88\\x96\\xe8\\x8a\\xf1\\xcc\\xf2\\xd8\\x66\\xe9\\x9c\\x2a\\x51\\x66\\x69\\x02\\x23\\x46\\x73\\x51\\x2f\\x9d\\x0a\\xa5\\xcf\\x04\\x45\\xe6\\x30\\xc3\\x11\\xf6\\x12\\x45\\x04\\x98\\x2c\\xb1\\x14\\x31\\x08\\xaf\\x68\\xdc\\x37\\xba\\xc1\\x7c\\x06\\xa8\\x4f\\x69\\x0f\\x89\\xa5\\x60\\x7a\\x60\\xe9\\x08\\x8d\\xe5\\x52\\xd4\\xc4\\x2f\\xa6\\x8f\\xbc\\xa8\\x0b\\xc3\\x58\\x12\\x60\\x09\\x65\\x00\\x82\\x55\\x2d\\x2e\\xd9\\x98\\xb4\\x5e\\xd4\\x0b\\x64\\x21\\x40\\x4c\\xed\\xff\\x10\\xc6\\xdc\\x15\\xbc\\xa9\\x98\\x58\\x70\\x4b\\x34\\x57\\xc9\\xaf\\xa5\\x6f\\xd6\\xec\\xdd\\x12\\xd6\\x38\\x13\\xab\\x63\\xe5\\x29\\x9f\\x02\\xe9\\x60\\x93\\x89\\xf1\\x77\\x49\\x36\\x61\\xa4\\x6a\\x04\\x67\\x26\\x5e\\x4c\\x2c\\xa5\\x09\\xdd\\x1a\\x73\\xf9\\x72\\xa6\\xe0\\x1a\\x36\\xa8\\x5d\\x14\\xa1\\xa6\\xa2\\x25\\xce\\xf2\\x0a\\x83\\x6d\\xc6\\x8a\\x80\\x12\\x19\\xbb\\xa5\\xb9\\x68\\x85\\xa4\\xe1\\x4c\\x69\\x63\\xd2\\x20\\xb6\\x7e\\x4b\\x82\\x14\\xb3\\x0e\\xa6\\x41\\x0c\\x89\\x2e\\x16\\x73\\xb9\\x09\\x61\\xf1\\x8f\\xd3\\x59\\xd4\\xc4\\x86\\xd5\\xc4\\x00\\xc6\\x08\\x8a\\x30\\x11\\xfb\\x24\\x8c\\x51\\x93\\xb0\\x57\\xc2\\x9a\\x49\\x67\\x02\\x91\\xe5\\x82\\x01\\xa7\\x6e\\x82\\x59\\x98\\x24\\xff\\xc6\\x0c\\xc9\\x07\\x65\\x12\\x42\\x04\\x8f\\x5a\\x09\\x73\\x5a\\x89\\xe5\\x0d\\x81\\x47\\xce\\xfe\\xf1\\xd6\\x94\\x64\\x3b\\x6b\\x72\\x0d\\x53\\xc2\\xa8\\xc9\\x31\\xa8\\x82\\x43\\x78\\x13\\xcb\\xd4\\x64\\xae\\x99\\xe0\\x1b\\x8c\\xed\\x62\\xc1\\xe4\\x68\\x83\\x08\\xca\\x2d\\x31\\x40\\x2d\\xc9\\x2a\\xdc\\x72\\xad\\xaa\\x7d\\xa5\\x46\\x98\\x0f\\x4e\\xad\\xc9\\xdd\\xd8\\x0e\\x25\\x7a\\xc8\\x9c\\xe7\\x29\\x31\\x9c\\x4a\\xca\\x1a\\x19\\xd1\\x08\\x36\\xf5\\x62\\x61\\x64\\x04\\xe5\\xb1\\x9c\\x24\\xc5\\xe9\\x7f\\xa7\\x24\\xa6\\x62\\x4e\\x15\\xde\\x54\\xb3\\x84\\x8a\\x0d\\xe5\\xab\\x54\\xcc\\xa7\\x97\\x45\\x9b\\xf3\\x55\\x4b\\x2b\\x76\\x56\\x94\\x55\\x9a\\x9f\\x95\\x2f\\x89\\x06\\x9d\\xf4\\xe0\\xdf\\x69\\xe1\\x54\\x70\\xe9\\x08\\x70\\x61\\xb8\\xac\\xa9\\x00\\x23\\x23\\x46\\x3a\\xba\\x94\\x8c\\x20\\x93\\xcc\\x4e\\x23\\x5e\\x4e\\xd6\\x17\\x34\\x22\\xe7\\x5e\\x62\\xff\\xd2\\xd8\\x49\\x44\\xe1\\x46\\x97\\xab\\x71\\x50\\xc5\\x36\\x6d\\xdf\\xb4\\xee\\xf6\\x2f\\x5e\\xd3\\xd1\\xfb\\xbc\\xdb\\xef\\x56\\xf3\\xaa\\xdb\\xef\\x3e\\x83\\x49\\xb6\\xf7\\x20\\x31\\xb1\\xa4\\xb4\\x46\\x5e\\x8e\\x64\\xc7\\xd0\\x04\\x3a\\x8e\\xe2\\x15\\x8e\\xe7\\x59\\x32\\xbc\\xa2\\xf0\\x3a\\x12\\xf7\\xb7\\x77\\x37\\x49\\xb3\\x67\\x3a\\x50\\x32\\xb0\\x2f\\xa2\\x26\\xef\\x44\\x59\\x75\\x55\\xbc\\x63\\xb6\\xcd\\x5e\\x3c\\x14\\xd8\\xb7\\xf2\\xd2\\x3b\\xcd\\x1f\\xcb\\x35\\x35\\x71\\xa3\\xb1\\x72\\x07\\xd1\\xc5\\x25\\x77\\x20\\xa5\\x44\\x25\\xde\\x98\\x88\\xc3\\x19\\x33\\x6f\\x14\\xde\\x50\\xcd\\x59\\xd1\\xdf\\xee\\x63\\x6a\\x8b\\xef\\xbd\\x71\\xce\\x4d\\xb5\\xb5\\xbb\\x6a\\x1b\\xea\\x6b\\x77\\xd7\\xd6\\x5e\\x20\\x85\\x34\\x0d\\xd5\\xf5\\xb4\\x62\\xff\\xb5\\x3e\\x56\\xdf\\xbd\\x75\\x55\\xad\\xdf\\xb9\\xab\\xb6\\x76\\x97\\xd3\\x5f\\x7b\\x81\\x14\\x34\\xe6\\x38\\xcf\\x41\\x5f\\x41\\xaf\\x18\\x79\\x39\\x86\\xd7\\x49\\x3c\\x0f\\xde\\xee\\xa1\\x78\\x25\\x68\\xd9\\x8e\\xfa\\x02\\x33\\xa2\\x3d\\xf2\\x60\\xeb\\x62\\x24\\x5a\\x5f\\x9c\\xd9\\x28\\x2e\\x46\\xb7\\x15\\x5f\\x0b\\xf4\\x85\\x07\\xe5\\xf6\\xd4\\xe2\\x07\\x9a\\x1a\\x5e\\x1a\\x6c\\x4e\\x5d\\x5a\\xb2\\x22\\xc8\\x4a\\x7c\\x24\\x1f\\xc4\\x2d\\xf1\\xbc\\xe4\\x26\\xab\\xbb\\x51\\x11\\x26\\xf2\\xc6\\x56\\x89\\x11\\x76\\x4d\\x67\\xaf\\x69\\x99\\xbe\\x8b\\x80\\x0c\\xd7\\xce\\x28\\x16\\x54\\x55\\xd5\\x00\\x1c\\x27\\xf5\\xb0\\x0b\\xbc\\xc6\\x2a\\xaf\\x7c\\x49\\x92\\x61\\xba\\x51\\x08\\x03\\x8e\\x15\\x0a\\x85\\x09\\xda\\xd3\\xd2\\x85\\x31\\xc2\\xef\\x3a\\x21\\x9b\\xbc\\x36\\xec\\x15\\xc5\\xff\\x4a\\x89\\x58\\x32\\x45\\x59\\x0a\\x13\\xf7\\x44\\x89\\xb9\\x42\\x51\\xd7\\x34\\xa4\\x97\\x8a\\xc4\\x4c\\x97\\xd7\\xb4\\x8c\\x91\\x4d\\x68\\xac\\x5e\\x99\\x23\\x73\\xaf\\x31\\x77\\x11\\x71\\xa5\\x70\\x85\\xdc\\xec\\x25\\x3d\\x78\\x43\\x39\\x35\\xa7\\xaa\\x39\\xb0\\x41\\x18\\x06\\x51\\x01\\x3d\\x6f\\xd6\\xce\\x18\\xd9\\x34\\x64\\x4e\\x62\\x84\\x89\\x70\\xc6\\x0c\\x1a\\x4e\\x61\\x0b\\xe5\\x09\\x89\\x30\\x0e\\x9a\\xbc\\x6c\\x50\\x96\\x07\\x97\\x8d\\x09\\x82\\x2e\\x08\\x48\\x10\\x46\\x96\\x2d\\x1b\\x59\\xb6\\x0c\\x1c\\x20\\xc3\\x06\\x94\\x47\\x07\\xcd\\xd2\\xcc\\x39\\x51\\x95\\x9c\\xd9\\x31\\x69\\x5e\\x70\\x69\\x3e\\x31\\x99\\x15\\x6e\\x6e\\xd7\\x91\\x70\\x61\\xe5\\x3f\\xca\\xe2\\x8a\\x74\\x41\\x90\\xc9\\x39\\x72\\xbb\\x5a\\x5d\\xae\\xd6\\x0b\\xc8\\xde\\xf4\\x76\\xf3\\x65\\x6f\\x97\\x81\\x00\\x89\\x1b\\x55\\xb4\\x83\\x2a\\xaf\\x14\\xca\\xcb\\xdc\\x84\\x8e\\x21\\xb6\\x50\\x65\\xcd\\x85\\x21\\x95\\xe7\\xd5\\x18\\x8d\\xdd\\x5f\\x55\\x60\\x98\\x72\\x03\\xd3\\x5e\\x4f\\xdc\\xeb\\x89\\xab\\xaa\\x37\\x9d\\xf7\\xa6\\xbd\\xb5\\xde\\x5a\\x23\\x17\\xd3\\x88\\x34\\x87\\x2a\\x3c\\x62\\xe2\\x75\\xc9\\xdc\\x49\\x6b\\x45\\xe8\\x6a\\xae\\xde\\x29\\x3a\\xeb\\x0b\\x4c\\x79\\x79\\x59\\x70\\xd6\\xa3\\x5c\\x2e\\x8f\\xdd\\xac\\x31\\x8d\\xc1\\x97\\xb4\\xd2\\x5a\\x11\\x19\\xc8\\xa2\\x2c\\xca\\x98\\xf3\\x81\\x49\\x16\\x3c\\xc5\\x19\\x5f\\x48\\x14\\x54\\x5d\\x18\\x13\\x55\\x5d\\xcc\\xa6\\x75\\x3d\\x8d\\x37\\x12\\x4f\\xcd\\x98\\xd9\\x26\\x4d\\x86\\x35\\x40\\x6c\\x8e\\x08\\xc3\\xd1\\x1c\\xcd\\xa9\\x79\\x55\\x55\\x11\\x33\\xa4\\x66\\x10\\xa8\\x6a\\x36\\x9b\\x53\\xc7\\xc9\\x0f\\x68\\x93\\xb7\\x0c\\xcc\\x61\\xca\\x2b\\x65\\x52\\x11\\x33\\xd1\\x4d\\xb2\\xa9\\xf4\\x62\\x0e\\x09\\x43\\xe9\\xa1\\xa1\\x34\\xb6\\xe6\\x54\\x55\\x1d\\x07\\x55\\x2d\\xcd\\x8f\\x35\\xd6\\xac\\x65\\x00\\xa2\\x94\\x1c\\x91\\x23\\x32\\x5f\\x4a\\x9b\\x34\\x4c\\x1e\\x94\\x27\\x6b\\x03\\xe7\\xb0\\xef\\x9a\\x23\\x3f\\x15\\xa0\\xa9\\x82\\x9a\\xc6\\x8e\\xef\\xd8\\xd8\\x18\\xe1\\x68\\x23\\xc2\\x46\\xca\\x50\\x22\\x64\\xb5\\x5b\\xa5\\xba\\x8c\\x1c\\xa6\\xb7\\x74\\x5a\\x30\\xca\\x10\\x44\\x31\\x2b\\xa8\\x9a\\x56\\x51\\x46\\x69\\xe6\\x34\\x99\\x41\\x86\\xcb\\x48\\x55\\xfa\\xbd\\x12\\xe3\\x21\\xd1\\xd3\\x1f\\x0d\\x0d\\xca\\xf1\\xfe\\xb8\\x9c\\x11\\xb5\\x41\\x39\\x97\\x0b\\x89\\x62\\x28\\x97\\x93\\x0d\\x4e\\xd1\\x4a\\x9c\\x82\\x18\\x8e\\xa5\\x24\\x26\\x82\\xa9\\x04\\xe9\\xd9\\xa1\\xa1\\xec\\x38\\xdc\\x78\\x23\\xca\\xa9\\x99\\x8c\\x2a\\xea\\x24\\xeb\\xa6\\x9a\\x57\\x03\\xd5\\xeb\\x49\\x9d\\x14\\xba\\x37\\x67\\x83\\xc1\\x44\\x0a\\x73\\x36\\x9d\\x1e\\x19\\x39\\x70\\xa0\\x94\\xaa\\x7e\\xd2\\xea\\x44\\x9f\\x3e\\x3b\\x98\\xaf\\x1c\\x10\\xa8\\x9c\\x1d\\x5c\\x5a\\xfd\\xa0\\x6a\\x76\\x70\\x79\\xf1\\x83\\x0a\\x2c\\x1b\\x2b\\xa2\\x90\\x95\\x2c\\xcb\\x91\\xcb\\x64\\x0a\\x31\\xbb\\x77\\x67\\x73\\xba\\x19\\xb7\\xf4\\x21\\x75\\x57\\x58\\x37\\x57\\x55\\x4e\\xd3\\xbe\\xca\\x1c\\x73\\x23\\x7f\\xa6\\x0d\\xa2\\x00\\x1d\\xed\\x31\\x5e\\x72\\xc4\\xcc\\x79\\xfe\\xde\\xd2\\x7c\\xff\\xc9\\x39\\x35\\xd1\\x65\\xb3\\x1a\\x7e\\xd5\\x70\\x3f\\x61\\xe1\\xab\\xc8\\xfe\\xd9\\x8a\\x0c\\x9b\\x1b\\xbb\\x22\\x91\\x8d\\x15\\x5c\\xfe\\xaf\\x55\\x99\\x36\\xa5\\xfc\\xb3\\x31\\xb0\\x12\\x7b\\x87\\x64\\x00\\xbb\\x25\\x46\\x9a\\x9c\\x30\\x8e\\x8d\\x18\\x6c\\x6f\\xa3\\x6c\\x71\\xe4\\x84\\xc8\\x4c\\x4c\\xb6\\x60\\xc4\\x61\\x6f\\x26\\x73\\xe2\\x04\\xd2\\xab\\xb0\\x2d\\x8a\\x79\\x63\\xa5\\xb4\\xff\\xa9\\x6c\\xe0\\x12\\xcd\\xd8\\xc0\\x03\\xa0\\x50\\x11\\x9e\\x62\\x2b\\xe0\\xc7\\xc2\\xe1\\xf9\\x65\\x48\\xd8\\xb0\\xac\\x6a\\x56\\xc8\\xe8\\x06\\x7d\\x83\\x5c\\x3a\\xf1\\xd3\\xff\\xff\\xd7\\x1a\\xa9\\x9c\\x1b\\x5e\\xbd\\x86\\x46\\xa1\\x72\\xdd\\x8c\\x5c\\xc5\\x72\\x19\\xff\\xed\\x0c\\xfa\\x0c\\x59\\x3b\\x25\\x47\\xe6\\x6e\\x81\\x42\\x26\\x6e\\xc9\\x7c\\x84\\x89\\x64\\xb2\\x59\\x4d\\x27\\x9e\\x4e\\xe1\\xc0\\x01\\x5d\\x1f\\x11\\x89\\x0c\\xcd\\xa3\\x1c\\x52\\x8d\\x95\\xe6\\xc9\\xe2\\xe0\\x11\\xa4\\x8b\\xc5\\x61\\x11\\x01\\xf9\\xcd\\x91\\x89\\x55\\x79\\xf2\\x10\\x82\\x3e\\x00\\xc5\\x23\\x25\\xe4\\x64\\x8c\\x6f\\x8f\\xe1\\x5e\\x8a\\x30\\x9c\\xc7\\x5c\\xc0\\xd0\\x5c\\xfc\\x50\\x49\\x72\\xed\\x94\\xf1\\xbb\\x1d\\x5c\\x32\\x26\\x63\\x0b\\xc1\\x58\\xee\\xf0\\xb5\\xfe\\xde\\x06\\x1a\\xd9\\x6d\\x96\\x37\\x90\\xbe\\xc6\\x8a\\xa8\\x05\\x8c\\xaf\\xb9\\xa9\\xc3\\xc3\\x3f\\x25\\x75\\xd4\\x59\\x9b\\x9b\\x1b\\x37\\xd9\\x6a\\xc2\\xed\\xbd\\x72\\x30\\x74\\x3c\\xd5\\xd1\\xdc\\x58\\x63\\xb1\\x88\\x22\\xb2\\x23\\xda\\x35\\xc7\\xed\\xb0\\x52\\x4d\\x6d\\x89\\xbd\\xdd\\x5e\\x47\\x4d\\x53\\x5d\\xad\\x1d\\x59\\x51\\x03\\x1b\\xf5\\xb7\\x04\\x5a\\xbb\\x26\\xd6\\x0d\\x34\\xf2\\x24\\x89\\x04\\x8a\\x1a\\xf9\\x98\\xc6\\xdc\\x3e\\xd0\\x34\\x55\\xc8\\x88\\xb9\\x74\\xba\\x50\\x28\\xcd\\x67\\xcc\\x11\\xaa\\xae\\x35\\xed\\xaf\\xd2\\xf3\\x56\\x03\\x51\\x15\\xaf\\x0d\\xe1\\x1d\\x62\\x84\\x61\\x4d\\x4b\\xa7\\x8b\\x23\\x78\\x3f\\xb9\\x3e\\x62\\x5d\\x56\\xbc\\x98\\x26\\xaf\\xe4\\x45\\x7d\\xa2\\x3e\\x95\\xe4\\x4c\\x9b\\xab\\x9e\\x99\\x54\\xce\\xf0\\x8a\\x69\\x44\\x1a\\x4b\\xba\\x93\\x20\\x45\\x06\\x0b\\x59\\x51\\x55\\xa7\\x13\\x1e\\x7a\\x0f\\x17\\xa7\\x23\\x26\\x31\\x90\\x10\\x55\\x55\\xf4\\xb7\\xfb\\xb1\\x2e\\x2c\\x8e\\x08\\x02\\x58\\x60\\x2d\\xa8\\xe8\\x71\\x94\\x07\\x0f\\xb4\\x57\\xfd\\xea\\x05\\x09\\x04\\x2a\\x7c\\x4c\\x36\\x66\\xd2\\x97\\x43\\x81\\x17\\x21\\x25\\xd0\\xe3\\x8e\\xa8\\x91\\xb8\\xa5\\xc7\\x36\\x3b\\xda\\x38\\xb8\\x66\\xe9\\xd7\\xdc\\x8d\\xa1\\x46\\x97\\x1a\\xe6\\x50\\x8f\\x05\\x3d\\x5e\\x7c\\x2d\\x30\\x9d\\xa6\\x8c\\x28\\xa0\\x67\\x99\\x6f\\xd6\\xd2\\x88\\x23\\x44\\xd9\\x8d\\x30\\x20\\x69\\xb3\\x41\\x25\\xe4\\x17\\x09\\xb0\\x96\\x92\\x99\\x88\\xd1\\x60\\x23\\x7a\\x06\\x50\\x53\\x1e\\x59\\x36\\xac\\x3a\\x17\\x04\\xa1\\x1d\\x62\\x30\\x13\\x40\\x91\\x78\\x96\\x33\\x12\\x7e\\x15\\x09\\x2b\\x36\\x0e\\x9b\\x56\\xe5\\x69\\x56\\x94\\xcc\\x31\\x34\\x23\\xc9\\x76\\x92\\x84\\x69\\xc4\\x42\\x64\\xd3\\x03\\x7d\\xb7\\xaf\\x35\\x3a\\xd8\\xc4\\x2d\\x0d\\x2e\\x69\\xdf\\x60\\x46\\x0e\\x46\\x88\\x8f\\x8c\\x74\\x51\\xd4\\x47\\x8c\\xdd\\xef\\x4f\\xdd\\x26\\xe4\\xf3\\x27\\x48\\x74\\x46\\xc4\\xf7\\x47\\xb0\\xa7\\x84\\x9f\\xd0\\x46\\x4a\\x8f\\x81\\x0d\\x06\\x41\\x44\\xcf\\x97\\x65\\x3c\\x59\\xe3\\x9a\\xa5\\xa2\\x0a\\x4b\\x29\\xa6\\xff\\x83\\x51\\x88\\x86\\xba\\x83\\xdd\\xc5\\xef\\x06\\xbb\\x83\\x17\\x0b\\x02\\xd6\\xd6\\x3a\\xda\\xd9\\x1d\\x9c\\x36\\x2d\\xd8\\x1d\\xd2\\xd5\\x7c\\x26\\xa3\\x0e\\x0d\\x19\\xa3\\x39\\x87\\x50\\x01\\xc9\\x24\\xf7\\xca\\x98\\xe5\\xc6\\x73\\x0e\\xbc\\x99\\x73\\x79\\x59\\x29\\x85\\x37\\x74\\xd0\\x1b\\x0a\\x79\\x3b\\x1a\\xfa\\x1b\\x96\\x34\\xf4\\x37\\x74\\x54\\x9e\\x20\\x39\\x14\\x0f\\x85\\xc3\\xe1\\xb0\\xf9\\x05\\x27\\x61\\x19\\x23\\x23\\xc2\\x44\\xb4\\x91\\x11\\x8c\\xe7\\x31\\xec\\x78\\x91\\x5f\\xee\\xc9\\xa0\\x43\\x25\\x3b\\xa3\\xb4\\xba\\x24\\x6f\\xda\\x19\\xe8\\x90\\xaa\\xaa\\x23\\xc8\\x9b\\x51\\x33\\x08\\xdb\\x19\\x6a\\xc6\\x30\\x34\\x2a\\x46\\x7b\\xda\\x41\\x30\\x72\\xdf\\x48\\xac\\x18\\x43\\x1a\\xe3\\x65\\x8e\\xa4\\xed\\x18\\xfe\\x4c\\x3b\\xcf\\x79\\x59\\x46\\x2a\\xff\\x8c\\x44\\x70\\xc1\\xe9\\x7d\\x81\\x96\\x6e\\x8b\\x60\\x99\\x35\\xa3\\x2d\\xba\\x7e\\x06\\xdb\\x2a\\xdb\\x04\\xeb\\x82\\x19\\xbb\\x89\\x12\\xb9\\xbc\\x21\\x35\\x87\\x6d\\x0c\\x34\\x79\\x3a\\x67\\x34\\x09\\x82\\x83\\x0b\\xf4\\x79\\x1b\\x22\\x0d\\x0c\\x3e\\x2b\\xfd\\x9e\\x05\\x2a\\xe7\\x7f\\x53\\x86\\xbf\\x83\\x21\\xcd\\x20\\x61\\x97\\xba\\x0b\\x99\\x86\\x10\\xc1\\xa8\\x4e\\xb4\\x41\\xd4\\xcc\\xa4\\x35\\xf8\\xa4\\x2c\\xf9\\x3d\\x92\\xa9\\x17\\x8c\\xfc\\x5a\\x86\\x6b\\x17\\x17\\xf6\\x8e\\x62\\x86\\x79\\xde\\x1b\\x0e\\x7b\\x0f\\x3e\\xe8\\x74\\xbe\\x88\\xd9\\x66\\x34\\x14\\x8f\\x87\\x0e\\x1d\\xea\\x7d\\xb5\\x14\\x62\\x17\\x19\\x5f\\xbb\\x3f\\xde\\x2f\\x8a\\xa4\\x1e\\x23\\xb7\\xc7\\x45\\x66\\x25\\x94\\x4c\\xc4\\x64\\x4a\\x49\\xa5\\xa4\\x84\\x17\\xdd\\xd7\\x35\\x73\\x6e\\xbc\\x38\\x26\\x0f\\xce\\x9f\\xce\\x2c\\xef\\x9e\\xb9\\x0e\\x09\\xd6\\x39\\x42\\x7c\\xee\\xa0\\xdc\\xbb\\xd4\\xce\\x4f\\x5f\\x5a\\x89\\x45\\x17\\xc9\\x25\\x33\\x20\\x4a\\x1a\\x53\\x39\\x08\\x60\\x65\\xac\\x6d\\x20\\x63\\xae\\x09\\x2e\\xd8\\x4d\\x59\\xfd\\xb1\\x98\\xdf\\x6a\\xfc\\x10\\x47\\x28\\x1e\\xe2\\xa4\\x68\\x2b\\x8a\\x25\\x63\\xe5\\xdf\\xe3\\x98\\x98\\x47\\x6a\\x87\\x16\\x23\\x07\\x9b\\xa7\\xa2\\x27\\xc3\\x57\\xb8\\x39\\x78\\x61\\x3c\\x88\\x5c\\x93\\xa0\\xcc\\xde\\x1c\\xbc\\x20\\x1e\\x5c\\x56\\x0d\\xea\\x44\\x99\\x0e\\x32\\x7b\\x87\\xb0\\x15\\xab\\x4c\\xd1\\xe8\\x8c\\x9a\\x56\\x33\\x93\\x5b\\x3e\\xa6\\x69\\x99\\xe1\\xea\\x12\\x4b\\xe3\\x40\\x39\\x12\\xe9\\x14\\x01\\xdc\\x66\\x57\\x20\\x05\\x19\\xeb\\xcd\\x24\\x53\\x8a\\x7d\\x22\\xef\\x8b\\xe3\\x2a\\x16\\xee\\x78\\x24\\x8a\\x7b\\xea\\xa7\\xc5\\xdf\\x07\\xd0\\x96\\x80\\xf8\\x57\\x79\\x70\\x89\\x84\\xda\\xbb\\x66\\x76\\x87\\x22\\x31\\x7f\\x78\\x61\\x6f\\x88\\x0d\\xf3\\x3d\\x33\\xd7\\x21\\x51\\x1a\\x48\\xa0\\xe6\\x40\\xf1\\x9e\\x80\\x30\\x28\\x27\\x97\\x59\\x44\\xeb\\x1c\\x41\\x09\\x87\\x5c\\x31\\x7f\\xac\\xae\\x77\\x61\\x43\\xc8\\xb7\\xb4\\x12\\x5b\\xc6\\x08\\xae\\x69\\x2d\\x18\\x9d\\x60\\x80\\x34\\x05\\xee\\x50\\x16\\x77\\x42\\x78\\x61\\x6f\\x67\\x7f\\x5d\\x13\\x86\\x05\\xb5\\x4d\\x6a\\xb2\\x1e\\x4b\\xe2\\x4a\\xa6\\x47\\xa5\\x81\\xc4\\xf0\\x49\\xfd\\x5e\\x8d\\x4d\\x89\\xa7\\x24\\x46\\x9a\\x0a\\x9b\\x22\\xb6\\x55\\xd3\\x17\\x4d\\x46\\xe7\\xd0\\x50\\x3a\\x7b\\x52\\x99\\x86\\x96\\x3e\\x59\\x6f\\x19\\xe9\\x06\\x02\\xd6\\xd5\\xba\\x38\\x96\\xcd\\xea\\xfa\\x94\\x4f\\x2b\\xc6\\x00\\x1f\\x79\\x5a\\xd3\\xf0\\xd3\\x62\\x5a\\xcf\\x66\\xf5\\x8a\\x5f\\x26\\xc2\\xfa\\x8d\\xad\\x4c\\xe2\\x27\\xd3\\xb5\\xc5\\xca\\xc9\\x4a\\x39\\x91\\x4c\\x3a\\x9f\\x58\\x81\\x6f\\x62\\xe4\\x92\\x99\\x58\\x25\\x8f\\xa9\\xfa\\x75\\x23\\xf2\\x1b\\x21\\x95\\x8b\\xc9\\x8b\\x7a\\xa1\\x80\\xa0\\xa2\\x20\\xb1\\x72\\xce\\xb5\\xf9\\xdb\\x23\\x53\\xad\\xf7\\x35\\xa9\\xdc\\xec\\xac\\xe4\\x2c\\x63\\x41\\x2a\\xb5\\xb2\\xf4\\xac\\xd7\\xcd\\xb2\\x6e\\x6f\\xce\\xdf\\xee\\xf3\\xb5\\x9f\\x5e\\x55\\xcd\\x04\\xbc\\x75\\xc6\\xaf\\x65\\x55\\xcf\\x06\\x9e\\x5c\\x3e\\x59\\x9f\\x33\\x3d\\xb1\\xde\\xa3\\x2e\\x16\\x8c\\x25\\x76\\x73\\xe6\\x0c\\x6c\\x04\\x2e\\x9f\\x48\\xb2\\x38\\x8c\\x3c\\x01\\x0c\\xbb\\x87\\x64\\xe8\\x95\\x66\\x35\\x57\\x7e\\x57\\x2d\\x25\\x6f\\x24\\xe8\\x30\\x1b\\x6f\\x10\\x77\\x9c\\xd2\\xbf\\x4e\\x9c\\x1b\\xf7\\xc7\\x54\\x44\\x32\\x12\\xb2\\xd9\\x22\\x36\\x81\\x91\\x78\\xc3\\xc6\\x55\\xdb\\xc5\\xb5\\xfd\\xf1\\xb9\\x62\\xcc\\x8f\\xcc\\xdf\\x6d\\x13\\x91\\xa0\\xaa\\x64\\x5d\\x97\\x52\\x9d\\x58\\xb6\\x44\\xa0\\x0b\\xa6\\x4d\\x5a\\xab\\xde\\xa8\\x80\\xfa\\xff\\xa8\\x7b\\x1b\\xf0\\x46\\x8e\\xfb\\x3e\\x78\\x06\\x20\\xb0\\x04\\x08\\x7e\\x2c\\x80\\xdd\\x25\\x00\\x12\\x5f\\x4b\\xec\\x92\\x3b\\xfc\\xb8\\xe3\\x72\\xb1\\x77\\xc7\\x3b\\x72\\xef\\x74\\x5f\\x3a\\xde\\x97\\xee\\xb4\\x38\\xea\\x2c\\xc7\\xd4\\xe9\\xce\\xb6\\x08\\xc7\\xba\\x73\\x24\\x4b\\x96\\x2d\\x7b\\xe3\\xda\\x51\\x24\\x3b\\xae\\x1d\\x19\\x4c\\xe2\\xd4\\xf6\\x59\\x69\\x1c\\x9b\\xb0\\x13\\xbf\\x69\\x64\\xb7\\x75\\x62\\xa3\\x6e\\x9a\\xd4\\x56\\x9c\\xd4\\xae\\xc1\\xb7\\x69\\x9a\\x54\\x4d\\x1b\\x27\\x39\\xbe\\x89\\xf3\\xf4\\x89\\xd3\\xbc\\x6e\\x8a\\x7b\\x9f\\xf9\\xcf\\x2e\\xb0\\x00\\x49\\x59\\x6d\\x9d\\xa4\\xef\\x1d\\xb8\\x58\\x2c\\x16\\x33\\xb3\\xb3\\xb3\\x33\\xff\\xcf\\xdf\\xcf\\x6d\\x40\\x49\\x90\\x15\\x45\\x35\\xb8\\xae\\xf6\\x34\\x7c\\xd5\\x11\\x68\\x09\\x76\\x9e\\x4c\\xbe\\x6e\\xb9\\xd2\\x6e\\x50\\xa3\\xab\\xd6\\x1a\\x6d\\x51\\x75\\x6b\\x79\\x2d\\x29\\x6f\\xb8\\xed\\xf2\\x8f\\xf6\\x20\\xf3\\x5a\\x17\\x0c\\x7e\\x97\\x9c\\x76\\x1b\\x57\\xec\\x16\\xb2\\x3d\\x09\\x36\\x85\\x9d\\x66\\xf3\\x2e\\x22\\xde\\x78\\x6a\\xba\\x79\\x1f\\xc4\\x65\\x4d\\x4c\\x75\\x63\\x2e\\xca\\xe0\\xb2\\x91\\x77\\x20\\x2f\\xd6\\xb4\\x4d\\x8d\\x21\\x21\\xb0\\x40\\x1f\\xaa\\x15\\x59\\x82\\x60\\xb5\\xb5\\xa9\\x4e\\x89\\x99\\xee\\xf8\\x0d\\x26\\x3d\\xe8\\xc6\\x2b\\x94\\x09\\xca\\xac\\x07\\xa1\\x44\\x34\\x8d\\xb8\\xa5\\x86\\xbb\\x50\\x1d\\x99\\xdd\\x70\\xce\\xcd\\x03\\xd5\\x05\\x06\\x43\\xad\\x0b\\x72\\x88\\x2f\\xf0\\xa5\\x0e\\xa8\\x63\\x8f\\x12\\x21\\xe8\\x54\\x68\\x74\\xaa\\x55\\x07\\xb6\\x0c\\x85\\x11\\x2c\\xfa\\x69\\xde\\x15\\xf4\\x09\\x9f\\xd6\\xb0\\xe0\\x6c\\x55\\xab\\x96\\x55\\xd1\\x40\\x0e\\x07\\x2c\\xc7\\x8e\\x9e\\xa1\\xa1\\x20\\x72\\x5c\\x9f\\x72\\xd0\\xe3\\x66\\xda\\x19\\x92\\x0e\\xe2\\xa2\\xbd\\x09\\x60\\x5e\\x6c\\xd3\\x68\\x36\\xe9\\x85\\x75\\x2a\\x6a\\x69\\x84\\xa0\\x1f\\x28\\x8f\\x9f\\x97\\xff\\xb7\\x4d\\xef\\x65\\xdc\\xf3\\xfe\\x1b\\xba\\x17\\x0f\\xc0\\xe2\\xd8\\x16\\x3e\\x77\\xfb\\xa6\\x92\\xb6\\xec\\x2b\\xef\\xb8\\x62\\x5b\\x69\\x05\\x6f\\xdf\\xba\\xb0\\x91\\x56\\xea\\x64\\xe9\\xca\\x95\\x25\\x52\\x57\\xd2\\x1b\\x17\\x58\\x49\\x2c\\x2b\\x7b\\xbc\\xbb\\xa4\\x3d\\x4a\\x73\\x6a\\xb6\\xbf\\xbc\\xad\\xb4\\x42\\x84\\xee\\x12\\x63\\x6d\\x4c\\xe7\\xdd\\xed\\xf4\\x8b\\x3b\\x7d\\xd6\\xfe\\x7d\\x53\\xd0\\x0d\\x55\\xd0\\x0d\\xc9\\x7d\\x37\\x7b\\xa2\\xd5\\x70\\x4d\\xd3\\x34\\x91\\xde\\xcb\\x4d\\xba\\xb5\\xdc\\x4f\\x1b\\x7e\\x1e\\x17\\x38\\xcc\\x5e\\x15\\x42\\x36\\xd8\\x59\\xbe\\x83\\x96\\x3f\\x6a\\x0d\\x23\\x07\\x7d\\x11\\x3b\\xf8\\x01\\x60\\x2b\\x91\\x4c\\x89\\x53\\x3f\\x76\\xed\\x5a\\xd6\\x71\\xf0\\x03\\xf0\\x86\\x80\\x55\\xeb\\x7d\\xf8\\x5e\\xfc\\x3e\\x7a\\x46\\x09\\xe2\\x9d\\xf1\\xbd\\x59\\xc7\\xc9\\x5e\\xfb\\x34\\x6c\\xe9\\x19\\x5f\\x40\\xef\\xc5\\x36\\x7e\\x2f\\x64\\xea\\x99\\xf4\\x8c\\x2f\\xc0\\x8f\\x7f\\x8e\\x15\\x41\\xeb\\xf8\\x02\\x76\\xb0\\x0d\\xdf\\xab\\x50\\x07\\xfc\\xf4\\x0b\\xac\\x80\\x0e\\xdf\\x4b\\x3f\\x64\\x46\\x49\\xac\\x92\\x46\\xeb\\x9b\\x67\\xe9\\x09\\x67\\xb1\\xa0\\x9d\\xa3\\x3b\\xe7\\xda\\x1c\\x41\\xcf\\x82\\xff\\x08\\xe4\\x7f\\x15\\x4e\\x76\\x30\\x72\\x68\\x5d\\x59\\x87\\x90\\xaf\\xc3\\x0e\\x1a\\x74\\x11\\x5a\\x1a\\x6d\\x74\\x6d\\x2f\\x43\\x8a\\x6a\\x03\\x1a\\x9a\\x45\\x4b\\x08\\x95\\x54\\xdd\\xfc\\xdf\\xb9\\x1d\\xc8\\xde\\xb4\\xbe\\xdf\\x1d\\x11\\x2a\\x77\\x3c\\x8b\\x0c\\x73\\x9a\\xd5\\x5c\\x1f\\x6f\\xe7\\xa0\\xe5\\x9b\\xab\\x98\\x04\\x4a\\x7b\\x23\\xca\\x34\\x61\\xd6\\x1d\\x05\\x5c\\x23\\xad\\x5f\\x65\\xfd\\x80\\x53\\xb8\\xea\\xb8\\x5d\\xe2\\xa2\\xfa\\x30\\xae\\xb1\\x18\\xe3\\x56\\x82\\x2e\\x36\\x0b\\x46\\x01\\xd7\\x35\\xed\\x57\\xe0\\xbc\\xd6\\x37\\xf0\\x1c\\x76\\xee\\xa2\\x3f\\x84\\x4f\\x5a\\x1b\\xd7\\xae\\xf1\\xbf\\xc4\\xbf\\x88\\xda\\x8c\\x88\\x4b\\x4b\\x7e\\xfe\\xc5\\x1f\\xdc\\x8c\\xed\\xc5\\xbf\\x37\\x3a\\xac\\x72\\x0c\\x8d\\xb4\\x00\\xe5\\xf1\\x05\\xba\\xf6\\x6f\\x55\\x30\\x22\\x2d\\x44\\x30\\x9d\\x75\\x2c\\x41\\x20\\x04\\x74\\x16\\xef\\x97\\xf4\\xf9\\x93\\x3b\\xb1\\xc5\\x41\\x68\\x8d\\x7b\\xf7\\x7a\\x5a\\xc4\\xf8\\x5f\\x37\\x70\\xc5\\x66\\x40\\x64\\x9d\\xb6\\x55\\x01\\x5d\\x00\\x67\\xef\\xdc\\x69\\x6d\\xd3\\xc6\\xb9\\xa0\\x0c\\x77\\x7c\\xb8\\x2b\\x0d\\xb6\\xaa\\x74\\xae\\xd6\\xe8\\x2e\\x5c\\xee\\xbd\\x5e\\x1e\\xd7\\x9a\\xcd\\xd6\\x36\\x21\\x82\\xef\\x8a\\xfd\\x36\\xc5\\xb6\\xc7\\x5e\\x16\\x4a\\xed\\x39\\xbe\\x6d\\x5f\\xa4\\xa5\\xb7\\x27\\x29\\xd7\\xf0\\x65\\x30\\x83\\x98\\xa0\\x73\\x86\\x0b\\x12\\x5a\\xdd\\x82\\xc4\\x9a\\x14\\x0f\\xb6\\x47\\x3e\\xd5\\xfd\\xa1\\xae\\xd9\\x4e\\x6d\\x6b\\xcb\\xd9\\xe5\\x2b\\xf6\\xc1\\xd6\\x34\\xdb\\x71\\xda\\x76\\x8a\\x3f\\x45\\x7d\\x28\\x06\\x72\\x9c\\x20\\x2f\\x94\\x83\\x46\\x01\\xfc\\x3b\\x09\\x51\\x14\\xe4\\xed\\x8d\\x2b\\x57\\x70\\xe5\\xc6\\xfb\\x6f\\x34\\x96\\xaf\\x6c\\xe0\\x3f\\xfd\\xf4\\xd1\\xb5\\xd6\\x7f\\xb4\\xed\\x93\\x37\\x6e\\xe0\\x47\\xfb\\xd7\\x8e\\x42\\xbe\\x91\\x17\\x17\\x0b\\xb9\\x23\\x25\\x5e\\xe6\\x77\\xcb\\x09\\xc3\\x37\\x5f\\xfe\\xd9\\x0a\\x0c\\xa5\\x4d\\x18\\x4f\\x98\\xb4\\xe8\\x4d\\xc5\\x75\\x25\\xdd\\x82\\x23\\xb8\\x92\\x56\\x90\\x5b\\x1e\\x5b\\x97\\x98\\xe5\\x95\\x97\\xf9\\x76\\x4e\\x75\\x6f\\x99\\x76\\xe3\\x32\\x58\\x15\\xdf\\x4a\\xd5\\xa0\\x3a\\xdd\\x40\\xb9\\x36\\x73\\x1f\\x7c\\x36\\x2f\\xb6\\x36\\xa8\\xda\\x86\\xd7\\xc5\\xfc\\xdf\\x7a\\xce\\x45\\x1f\\x42\\x48\\x0e\\x20\\xfc\\xfb\\x28\\x8e\\x04\\x98\\x85\\x90\\x27\\xd3\\xca\\xaa\\xce\\x10\\xc3\\xa1\\x02\\x0c\\xd1\\x7e\\x50\\x8b\\xa9\\x86\\x0a\\x6a\\x01\\x6f\\xd3\\x5a\\xfa\\xac\\x59\\x9b\\xd0\\x7a\\xfe\\xa8\\xf5\\x9d\\xfb\\x30\\x29\\x66\\xe6\\x5b\\x3f\\x46\\xa2\\x2a\\xfe\\xcd\\xd6\\x1f\\x13\\x7c\\x1c\\xdb\\x50\\xa5\\xb5\\xf1\\x28\\x79\\x20\\x12\\x2b\\xfd\\x11\\x3e\\x7d\\x5f\\xeb\\x5b\\xc5\\xcc\\xbc\\xb5\\x3d\\x1c\\x53\\x8f\\xed\\xf4\\x2f\\xe5\\xd0\\x14\\xe3\\x97\\xed\\xc6\\x30\\xeb\\x4e\\xb3\\xd5\\x05\\x93\\xf3\\x94\\x27\\xa9\\xbd\\x83\\x2d\\x92\\xd7\\xf2\\x04\\x0b\\x1d\\x7b\\x76\\x93\\xec\\xe7\\x85\\x42\\x5e\\xe0\\xb3\\x93\\x53\\xfb\\xa7\\xf6\\xef\\x9b\\xe2\\x67\\x8e\\x2c\\xcd\\xb8\\x01\\x20\\xd5\\x34\\xcf\\xd2\\x5d\\xf8\\xb4\\x6d\\xff\\x18\\x2f\\x08\\x7c\\x76\\x70\\x62\\x82\\x9f\\x99\\x41\\x6d\\x3e\\x65\\xb6\\x5e\\xa6\\x3b\\xed\\xa1\\xba\\x53\\x97\\xef\\xa4\\x64\\xe2\\x5a\\x93\\x68\\x78\\x71\\x60\\xb8\\x6d\\x1f\\x8d\\xb5\\xbe\\x35\\x5c\\xa3\\x35\\x3c\\x13\\x94\\x06\\x1f\\x77\\xab\\xf8\\xe1\\xc9\\x36\\x56\\xe9\\x36\\xc8\\x1a\\x54\\xcb\\x96\\x84\\x64\\x98\\x53\\x14\\xc3\\x90\\x84\\x72\\xd9\\x94\\x0d\\x4e\\xc0\\xa8\\xf1\\xe6\\x4b\\x97\\xde\\xdc\\x58\\xbc\\xd4\\x5f\\xab\\xe1\\xed\\x8a\\xf3\\xc0\\xf3\\xc9\\xe4\\xf3\\x0f\\x38\\xb5\\x2f\\x27\\x1e\\xb9\\xe7\\x57\\x8f\\x3d\\x85\\x10\\xd7\\x13\\xf9\\xcb\\xd6\\xf2\\x52\\x37\\xc7\\x95\\xea\\xe3\\x7b\\xc3\\x09\\x4f\\x14\\x33\\x41\\xa3\\x05\\x33\\x11\\x21\\x5b\\xc4\\x21\\x58\\xc0\\xcc\\xb2\\xee\\xd4\\xf9\\x54\\xc3\\xb6\\x89\\xa6\\x39\\x36\\xfc\\x83\\xf0\\x13\\xab\\x1d\\x1b\\x9c\\xfa\\xc1\\xa0\\xe1\\xf5\\xf9\\x70\\x4b\\x87\\x19\\x7f\\x56\\x6f\\x5e\\x58\\x02\\x74\\x54\\xfa\\xa1\\x37\\x97\\xf2\\xdb\\x30\\xcb\\x27\\x57\\x97\\x97\\x57\\x97\\x01\\xdb\\x9f\\x4f\\xa7\\xaf\\x76\\x70\\xcb\\x18\\x22\\xe3\\x7b\\x97\\xe9\\xf7\\x58\\x62\\x10\\x31\\x5a\\x57\\x8e\\x41\\xa8\\x6d\\xdd\\xec\\xef\\xf0\\xd6\\x25\\x3c\\x8e\\x2b\\xd1\\x05\\x05\\x6e\\xa7\\xc8\\x7a\\x0d\\xe9\\x6d\\x87\\xd3\\x6c\\xc6\\x53\\xb7\\x81\\x6e\\x79\\xf0\\xe4\\xfc\\xfc\\x49\\xfd\\x0d\\xc5\\x74\\x2a\\xce\\xa7\\xe6\\x46\\x24\\x69\\xe4\\x9f\\x8c\\x88\\xe2\\x08\\xae\\xb5\\xa8\\xe2\\x88\\xed\\xcf\\x4f\\xe7\\xf3\\xd3\\xb9\\xfc\\xfc\\x49\\x5d\\x3f\\xf9\\xe7\\xa9\\x89\\xd1\\xd1\\x89\\xe3\\xd2\\x48\\xeb\\xeb\\x70\\x8e\\x3e\\x22\\xf9\\x78\\x2a\\xdc\\x3e\\xed\\xe4\\x35\\x75\\xa1\\xfe\\xb3\\x0c\\x2c\\x37\\xba\\xda\\x97\\xbc\\xe4\\x29\\xa6\\x74\\x64\\x21\\xc0\\xb1\\x69\\xcf\\x66\\x85\\xae\\xd9\\xac\\x5d\\xda\\xcf\\xb6\\xbe\\xf6\\x1b\\x95\\x3a\\x9d\\xb7\\xee\\x22\\xba\\xad\\x62\\xbb\\x55\\xa7\\xf3\\x59\\x53\\x49\\xb7\\x60\\x9a\\xc3\\x0e\\x9b\\xcf\\x48\\xbb\\xc4\\x01\\x4f\\x97\\xe8\\x9d\\xcf\\x7c\\x6d\\x6c\\x3c\\x0f\\x13\\xda\\xe7\\xe9\\x5c\\xd6\\x6a\\xd2\\x2d\\x94\\xcc\\xd2\\x2f\\xf0\\xbf\\xcb\\x89\\xad\\x75\\x7a\\x10\\x6f\\x88\\x39\\x37\\x0b\\x60\\x1b\\x6f\\xa3\\x90\\xcb\\xbd\\x80\\x30\\x63\\xa6\\x01\\x7b\\x96\\x00\\xb6\\x2d\\x37\\x9c\\x19\\x9d\\x58\\x3b\\xb9\\xbd\\xef\\xc4\\x89\\x7d\\xf4\\xef\\xc4\\xda\\x49\\x8c\\xdc\\x9d\\x6d\\xef\\x8b\\x6e\\xec\\x7a\\xa9\\xbb\\x17\\xbb\\xf8\\x21\\x1a\\xbd\\x49\\x61\\xb5\\xdd\\xf3\\xc0\\x02\\xc8\\x46\\x08\\xd7\\x21\\x4b\\x21\\x81\\x50\\x9c\\xf1\\xe5\\x14\\x21\\x82\\x0f\\x62\\x05\\x74\\x89\\xa5\\x0f\\xbe\\x7c\\x54\\xd8\\x14\\x8e\\xd2\\x0d\\x36\\x20\\xc5\\x70\\xf6\\x1f\\x2f\\x3c\\xf5\\xd4\\xfc\\xa7\\xe6\\x9f\\x7a\\xca\\x8f\\x1b\\x3b\\xea\\x72\\xb5\\xa9\\x1c\\xb8\\xb9\\x0d\\xc5\\x0b\\x43\\x0e\\x73\\x02\\xae\\xda\\xc0\\x34\\x57\\x49\\x8c\\x2a\\x0b\\xca\\x68\\xa2\\x5e\\x3d\\x7a\\xf5\\xea\\xd1\\xaa\\x7d\\x9c\\xcb\\x43\\xd6\\xac\\x90\\xe7\\x8e\\x33\\x3d\\xa5\\x81\\x1b\\xae\\xed\\x73\\x80\\x49\\x1e\\xae\\x3b\\xc2\\xd0\\x21\\x5a\\x1a\\xdb\\xd5\\xbb\\xa8\\x7a\\x17\\xad\\xaf\\xe3\\x5a\\xab\\xda\\xf0\\xe2\\xca\\x10\\x68\\xce\\x9d\\x31\\x96\\x41\\x53\\x1e\\xcf\\x4c\\xef\\x1a\\xe2\\x0d\\x7c\\x53\\x80\\x08\\x69\\x19\\x7c\\x13\\x86\\xea\\xe3\\x80\\x2b\\x08\\xb8\\x61\\xaf\\xf7\\x0f\\x0d\\xf5\\x3b\\xfd\\x83\\x83\\xfd\\x4f\\xc0\\x2d\\x3f\\x23\\x8a\\xb6\\x20\\xb8\\x94\\x70\\xd8\\x71\\xea\\xf5\\xe6\\x60\\x7f\\x93\\x9e\\xd4\\xec\\x1f\\xfc\\x1a\\xdc\\xff\\x6b\\x4a\\x32\\x33\\x96\\x54\\x94\\xc4\\xf8\\x58\\x42\\x71\\xee\\x22\\xe2\\xd9\\x27\\xfa\\x7c\\xd8\\x8f\\x54\\xe2\\x23\\x08\\xa1\\x1e\\xac\\x49\\xd5\\x67\\xb3\\xe8\\x5d\\x09\\xf0\\x4f\\x8e\\xc5\\xe3\\x63\\xf1\\x63\\xd0\\x0e\\x96\\xa5\\xee\\xce\\xfe\\x2e\\xff\\x02\\x78\\xe0\\x2f\\xc1\\x36\\xc5\\x78\\x0f\\x6a\\x9e\\x46\\x08\\x4f\\xcd\\xdf\\x25\\x87\\xed\\x0e\\xc4\\x2f\\xe4\\x26\\x30\\xed\\xf0\\x4b\\x02\\x7b\\xed\\xc2\\x9a\\x3f\\xdb\\x3f\\x0d\\x73\\xdf\\x76\\x97\\x0b\\xb2\\x8d\\x75\\xd9\\x74\\xd7\\x28\\x53\\x55\\x39\\x4e\\x92\\x76\\xc3\\xb9\\x9e\\x5c\\x5d\\x9d\\xa4\\x7f\\x35\\x0f\\xdf\\x9a\\xbe\\xff\\xd9\\x24\\x3b\\x8c\\xad\\x5e\\x44\\xeb\\x57\\x8f\\xf7\\xe4\\xb8\\xfe\\xed\\x61\\x37\\xc6\\xa0\\x83\\xd7\\x29\\x61\\x54\\xb3\\x71\\x5f\\xb9\\x34\\x79\\xe0\\xc0\\x24\\x3f\\x8c\\x1b\\xd6\\xf6\\xc4\\xfe\\x03\\x17\\x0f\\x84\\xd1\\x50\\x4f\\x4f\\x74\\x63\\xbb\\x5f\\x41\\xaf\\x43\\x6f\\x40\\x8f\\x22\\xe4\\xc5\\x62\\x48\\xf3\\x42\\x52\\x2e\\x1a\\x0b\\xbd\\xfd\\x14\\x72\\x8f\\x7b\\xdf\\xab\\x45\\x63\\x41\\x9f\\x17\\x92\\x5e\\x5c\\xbb\\xf7\\x99\\xeb\\x3d\\xcf\\x7d\\xef\\xc5\\x8e\\xc7\\x45\\x2a\\x53\\x0f\\x8a\\xd1\\xe8\\xc0\\xeb\\xfd\\x7d\\x6f\\x45\\xa3\\x03\\x03\\xd1\\xe8\\x80\\x31\\x30\\x10\\x4d\\xc0\\x29\\xf4\\xc8\\xca\\xc0\\x40\\xf4\\xcc\\xc0\\x40\\xb4\\x3c\\x30\\x10\\x3d\\x1a\\x1f\\x1c\\x84\\x2f\\x06\\xe3\\xb1\\x6d\\xd8\\x5b\\xa2\\x3f\\x58\\xf1\\xdf\\x2e\\x99\\x16\\x62\\xd3\\xc3\\x0e\\xdd\\xe4\\xe1\\xec\\xe9\\xf6\\x67\\x8b\\x6e\\x6a\\xf4\\x9c\\x33\\x50\\xc0\\x35\\xf8\\x1e\\xa1\\xa1\\xf6\\x2c\\xc2\\xfa\\x6a\\x1c\\x95\\xd0\\x14\\xda\\x8f\\x0e\\xa2\\xa3\\xe8\\x5e\\x74\\x0e\\xd9\\xe8\\xb5\\xe8\\x06\\x78\\xbc\\xe1\\x3a\\x94\\x9e\\x77\\xa9\\xb8\\xa0\\xcf\\x27\\xbd\\x9e\\x28\\x15\\x84\\x42\\xc8\\xeb\\xa5\\x3d\\x7e\\x41\\x85\\xe8\\xc0\\x2e\\x48\\xf9\\xf4\\x1d\\x67\\xbd\\xab\\x6c\\x6f\\x2d\\xe8\\x9a\\x81\\x68\\xeb\\x25\\x16\\x34\\x3a\\x30\\x10\\xfd\\x0c\\x68\\x2d\\xaf\\xf5\\xc5\\xc7\\xac\\x60\\x87\\xa9\\x32\\x31\\xdf\\x57\\x35\\x28\\xe0\\xde\\x98\\xbb\\x1d\\x1c\\x8c\\x5f\\x11\\xc5\\x0a\\x2d\\xeb\\x71\\xf2\\x5d\\x28\\x94\\xf5\\x24\\x3c\\xbd\\xf7\\x40\\x41\\xad\\xbf\\x26\\x04\\x23\\x38\\xf7\\x21\\xf8\\xdd\\x9b\\xe0\\x30\\x42\\x71\\x64\\x20\\x03\\xbf\\x84\\x5f\\x82\\x28\\x80\\x84\\xcb\\x77\\x3f\\x87\\xee\\x47\\x57\\xd1\\x35\\xb4\\x8e\\xde\\x82\\x9e\\x42\\x0e\\xfa\\x31\\xf4\\x7e\\xf4\\xd3\\xe8\\x36\\xd5\\xbd\\x84\\x64\\xd1\\x10\\xdb\\xe3\\x2b\\x29\\x17\\x17\\x94\\xae\\x63\\x13\\xf0\\xc9\\x1b\\x49\\x90\\x91\\xea\\x43\\xa6\\x53\\xdb\\x88\\x64\\x9d\\xa3\\x12\\x2b\\x26\\xbe\\x47\\xd7\\x75\\x82\\x11\\x8c\\x85\\x79\\x41\\x85\\xdb\\xa2\\xc3\\x96\\x53\\x14\\x86\\x90\\x91\\x0c\\xcb\\x1e\\x5d\\x81\\x21\\x8a\\xc7\\xa0\\xab\\xd6\\x07\\x06\\xa2\\x1b\\xde\\x07\\x7c\\x46\\x14\\xff\\x14\\x3a\\xfe\\x7d\\x19\\xfc\\x9a\\xb1\\x8b\\x98\\xf6\\x44\\xa4\\x2f\\x70\\x38\\x10\\x8f\\x0d\\x26\\x46\\x06\\x0e\\x63\\xda\\x29\\x91\\xf0\\xcf\\x47\\xa3\\x03\\x8f\\xf8\\xfa\\x9b\\xbd\\xbe\\x00\\xf7\\xeb\\x65\\x51\\xfc\\x2b\\x77\\xf4\\x0e\\x47\\x47\\x30\\xed\\xbf\\xc1\\x08\\x94\\xf9\\xf2\\x40\\x34\\x6a\\xc1\\xa9\\x4b\\xa2\\x78\\x27\\x3a\\x30\\x60\\x41\\xff\\x07\\xda\\x87\\x31\\x97\\x69\\xfd\\x7c\\xe6\\xbe\\x40\\x5f\\x04\\x1a\\x73\\x78\\x60\\x24\\x31\\x18\\x8b\\x07\\x0e\\x07\\xfa\\x22\\xf4\\xf7\\xf8\\x2f\\x45\\x11\\xe7\\xe1\\xcc\\x6b\\xbe\\x21\\xfc\\x71\\x38\\x72\\x65\\x20\\x1a\\x7d\\x4e\\x14\\x45\\x71\\x13\\x8f\\x44\\x43\\x83\\xf4\\xfe\\xaf\\xc1\\x17\\x08\\x50\\x01\\xd9\\xbd\\xf3\\x66\\x83\\x12\\x9a\\x41\\x3a\\x5a\\x44\\xf7\\xa0\\x15\\x74\\x19\\xbd\\x06\\x3d\\x8c\\x1e\\x41\\x8f\\xa2\\xc7\\xd1\\xdb\\xd1\\x3f\\x40\\xcf\\xa2\\x0f\\xa1\\x9f\\x42\\x1f\\x47\\xbf\\x80\\x7e\\x89\\xae\\x15\\xdd\\x51\\x5a\\xe1\\x9e\\x8e\\x67\\xb7\\xa4\\x73\\x1b\\xe8\\x3d\\x55\\x7a\\x7e\\xd3\\x3b\\x0b\\xf4\\x32\\x47\\xb0\\x5b\\x15\\xf4\\x8d\\x11\\x13\\x8e\\x84\\xbb\\x6e\\xe8\\x44\\xbb\\x05\\xf4\\x8c\\x5e\\x36\\x8a\\xf6\\x0c\\x93\\xf5\\x3d\\x14\\xcb\\xd0\\xeb\\xfd\\x4c\\x0f\\x8c\\x46\\x07\\x02\\x70\\x7f\\x6e\\x8b\\xe2\\xd2\\x8e\\x5b\\xc7\\x5e\\x3f\\x07\\xa7\\x4e\\xb5\\x27\\xa9\\x01\\x36\\x36\\xfe\\x6a\\x60\\x20\\x8a\\xd9\\xa8\\x10\\xc5\\x16\\x7b\\xf8\\xca\\xde\\x90\\xf1\\xbf\\xf0\\x0a\\x54\\xcc\\x1e\\xa5\\x73\\x70\\xec\\x2b\\xb0\\xff\\x67\\xa2\\x78\\xa6\\x7d\\x97\\x1a\\xbe\\x07\\xf2\\xe3\\xbe\\xbb\\x29\\xc1\\xa9\\xcf\\x7a\\x03\\xa4\\xb5\\x21\\x8a\\xb5\\x81\\x68\\xf4\\x65\\xff\\x6f\\xd7\\x61\\xef\\xfe\\xe8\\xc0\\x80\\xb0\\xe3\\xf7\\xbe\\x58\\x0f\\x1f\\x6b\\x1b\\x81\\xb9\\xf1\\x53\\x30\\xd1\\xc2\\xaa\\xc3\\x34\\x9b\\x41\\xf0\\x28\\x80\\xb7\\x15\\xa8\\xb8\\xca\\xcd\\x07\\x9e\\x7e\\xfa\\x81\\x43\\xfb\\xf6\\x1f\\x3c\\xb8\\x7f\\x1f\\x6e\\x3e\\xfd\\xb9\\xa7\\xc7\\xc6\\x1e\\x7e\\xec\\xe1\\xb1\\x31\\x58\\x81\\x98\\x46\\xb1\\xe3\\x37\\x8d\\xd5\\xa7\\x9f\\x5e\\x2d\\x66\\x8f\\x5d\\xbe\\x7c\\x2c\\x0b\\xbf\\x89\\x24\\x6f\\x7d\\xe0\\x56\\x32\\xe2\\xc3\\x79\\x18\\x64\\xf8\\x0c\\x65\\x70\\xc5\\x01\\x49\\x9c\\xd8\\x8b\\x7c\\xc1\\xf0\\x1e\\xd2\\x99\\xc2\\xd4\\x54\\x21\\xf3\\xaf\\xfc\\xb8\\x14\\x54\\x06\\x8c\\x0d\\x2f\\x9f\\x5d\\x1e\\x8e\\xfd\\xe6\\xff\\x0f\\x50\\x29\\xfe\\xae\\x10\\x39\\xbc\\xf5\\x6a\\x90\\x21\\xaf\\xb4\\xe5\\x35\\xc9\\x94\\x4c\\x41\\xe5\\x54\\x4e\\x35\\x3c\\x96\\x1c\\x8b\\xa9\\xcc\\x96\\x5d\\xa9\\x59\\x76\\xc5\\xb6\\x98\\x99\\x1f\\xc7\\xac\\x87\\xa8\\x78\\xf2\\x7e\\xab\\x52\\xf9\\x03\\xba\\xa9\\x1c\\xa5\\x9f\\x3b\\xfc\\xd9\\x0d\\x14\\x41\\x22\\x42\\x90\\x6a\\x0b\\xa1\\x3f\\x7d\\xf3\\xae\\x6b\\x7e\\xbe\\x6c\\x2c\\xe0\\x7f\\x1e\\x0e\\x7f\\x79\\xf1\\xcb\\xe1\\x78\\xb8\\xf5\\x07\\x0b\\xca\\xbc\\xbc\\x50\\x18\\xce\\xe0\\x8f\\x86\\xe3\\x70\\x30\\xfc\\x47\\x4a\\x5a\\x9e\\x27\\x52\\x22\\xed\\xcb\\x38\\xe7\\x50\\x0c\\xc5\\x51\\x0a\\x65\\x19\\x9a\\x70\\x19\\xe0\\x3a\\x54\\x9d\\x53\\x14\\x53\\x92\\x15\\x63\\x21\\x04\\x5e\\x5b\\xd5\\x94\\x4d\\x51\\xe4\\x98\\xad\\xe1\\x9b\\x7d\\xe7\\x85\\xf3\\x8b\\x67\\x85\\x2f\\xfc\\xce\\x85\\xd9\\x7b\\xf2\\x6f\\xba\\xdd\\x87\\x3f\\xd9\\x77\\xe0\\xf5\\xe1\\x9f\\xa5\\x1f\\xff\\x32\\x40\\xbf\\x49\\xed\\xe3\\x7e\\x5c\\x7e\\x66\\x5f\\xed\\x19\\xfe\\xd4\\xdd\\x2f\\x26\\x46\\x2f\\x4f\\x26\\x46\\x2f\\x1f\\xf9\\xdc\\x80\\xf0\\x0c\\x7f\\xea\\x42\\xe0\\x99\\x7d\\xa1\\xb6\\x07\\xb0\\x09\\x98\\x44\\x3e\\x8b\\x60\\x42\\x97\\x76\\x44\\x91\\x79\\xca\\xe9\\xb7\\x40\\xfb\\x25\\x8e\\x7a\\xbc\\x63\\xc9\\x3d\\x2e\\x4f\\x1e\\x98\\x9c\\x3c\\x50\\x63\\x9a\\x2f\\xd6\\xfc\\x9a\\xe1\\x6f\\xd2\\x6f\\x26\\x41\\xef\\x46\\xb8\\x06\\x1a\\x4d\\x0e\\x2c\\xfe\\x28\\x01\\x00\\xc4\\x02\\x20\\x99\\x31\\x8f\\x13\\x67\\xf8\\xfd\\x43\\x5e\\xd4\\x1c\\x15\\xff\\x6b\\xf7\\x1e\\xbf\\x97\\xd6\\xb4\\x61\\x59\\xeb\\xeb\\xe0\\x7b\\x7c\\x07\\xe0\\x6f\\xaf\\xaf\\xe3\\xe6\\xcb\\xa3\\xd9\\xec\\xe8\\xcb\\x6e\\x08\\x9b\\x65\\x11\\xf0\\x1a\\x69\\x7c\\xba\\xce\\x38\\x6e\\xbe\\xad\\x31\\xdb\\x18\\xab\\xbd\\x1f\\xd0\\x00\\x11\\x76\\xaf\\x54\\x34\\xf7\\xa8\\x3c\\xa1\\x0b\\x32\\x04\\x7b\\x15\\xd3\\xa9\\xa7\\xbb\\x6b\\xde\\x58\\x5f\\xc7\\x0e\\xb8\\x3a\\xd3\\xce\\x8e\\x4a\\x5b\\xb6\\x86\\x38\\xf7\\xbe\\x6e\\x77\\xd9\\x47\\xf4\\x9d\\x1e\\x0e\\xb5\\xc3\\x2e\\x26\\x77\\xe1\\x19\\xb9\\x94\\x1e\\x82\\x3e\\x2f\\xe2\\xba\\x1b\\x56\\x43\\xdf\\x2a\\x9b\\x9b\\x69\\x1e\\xbc\\xc3\\x22\\x64\\x64\\x0a\\x7c\\x1a\\x5b\\x90\\x20\\xe7\\x7f\\x61\\xa1\\xd5\\x00\\x93\\x83\\xc5\\xa7\\x21\\x6a\\x56\\x48\\xfb\\x22\\xef\\x19\\xba\\x81\\x4c\\xef\\x40\\x69\\x07\\xa4\\x01\\xe7\\xa1\\x18\\x70\\x9e\\x83\\xa7\\xbd\\x72\\xd4\\x00\\x99\\x9e\\x4f\\x13\\xdb\\xc5\\xa8\\xb7\\xf9\\xf4\\x47\\x19\\xba\\x08\\x1c\\xc6\\x36\\x3d\\x4a\\x08\\x7c\\x68\\xda\\xf4\\x9c\\x1a\\x83\\x17\\x09\\x77\\x49\\x90\\xa3\\xa8\\x80\\x34\\xda\\x1b\\xbd\\x58\\x66\\xd2\\xab\\x68\\x0d\\x63\\x49\\xea\\x87\\x6a\\xef\\xec\\xd2\\x20\\x86\\xc6\\xff\\x7a\\xa8\\xf7\\x9f\\xee\\xd5\\x2c\\xbf\\x26\\xd4\\xcf\\x66\\xe0\\x84\\xee\\x2a\\x57\\xbb\\x86\\x1f\\x12\\x8d\\xe9\\x57\\x0d\\x0b\\xa3\\xca\\xf2\\x97\\xfd\\xda\\x15\\x76\\x40\\xbd\\xaa\\xdb\\xeb\\x17\\x32\\xde\\xb1\\x14\\x8f\\x7c\\xfd\\xed\\xc9\\x14\\x0b\\x1d\\xcd\\x52\\xe9\\xd1\\x30\\xdb\\x7a\\x2f\\x9b\\x45\\x20\\x2d\\x94\\xcd\\x27\\xca\\x42\\x19\\xbf\\x11\\x56\\xdd\\x19\\xd8\\x5e\\xf1\\xed\\xd7\\x2e\\xdc\\x5a\\x9e\\x2e\\x0d\\xc5\\x47\\xe2\\x43\\x17\\x6f\\xde\\x74\\x55\\xcd\\x7b\\x7c\\xf1\\xa2\\x6f\\x84\\x23\\xbf\\x78\\xfd\\xd4\\xf4\\x52\\x62\\x70\\x20\\x19\\x1b\\x8a\\xdf\\xbc\\x7d\\xd3\\x9d\\x1f\\xbf\\x0a\\xb6\\x0a\\x81\\x45\\xb3\\x94\\x44\\x0e\\xd0\\x9a\\x65\\x03\\xe0\\x9a\\xcb\\xf3\\xd2\\x87\\x3f\\x33\\xf5\\x19\\x7c\\x61\\x78\\xf8\\x9e\\xa9\\x6c\\xf6\\xcb\\x37\\xbe\\x94\\xcd\\x4e\\xdd\\x13\\x8e\\x87\\xab\\x9f\\x99\\xfa\\xcc\\x5f\\xb2\\x83\\x5f\\xba\\xf1\\x65\\x38\\x18\\xf6\\xd9\\x14\\x07\\xd1\\x08\\x30\\xce\\xb5\\x7d\\xe2\\x12\\x2f\\x1b\\x41\\x83\\x4b\\x18\\x3a\\xef\\x33\\x82\\x80\\x06\\xb8\\xbe\\xbe\\x5e\\x59\\x5f\\x27\\x64\\x1d\\x3a\\xcd\\x75\\x7a\\x37\\x1c\\x2c\\x90\\x56\\xc3\\x71\\xb0\\x45\\x5a\\xde\\x13\\xd5\\xab\\xb7\\xfe\\x60\\x10\\xbc\\x3b\\xbc\\x31\\xac\\x4c\\xb5\\xc3\\x31\\xe1\\x8d\\xc7\\x70\\x52\\x94\\x04\\x45\\x01\\xcc\\x24\\xc9\\x57\\x03\\x0e\\xf8\\x30\\xea\\xec\\x59\\xf5\\xc0\\xe9\\xd3\\x07\\xd4\\xbf\\x01\\xdd\\x9e\\xa1\\xae\\x30\\x9c\\xbd\\x89\\xd5\\x7b\\xe3\\xb3\\xc9\\xeb\\x4f\\x5d\\x4f\\xce\\xc6\\xf3\\x10\\xd7\\x60\\xf9\\xf8\\x13\\xdb\\x1c\\x87\\x3b\\x2c\\x0a\\x80\\x1f\\xdb\\x31\\x20\\xd7\\x37\\x37\\x9b\\x3e\\x8b\\x41\\x2f\\x4b\\xe7\\x6e\\x80\\x28\\x3d\\x25\\xec\\x66\\xae\\xf3\\xe1\\xcc\\x8c\\x00\\x76\\x5c\\x87\\x2f\\x95\\xc1\\xba\\x27\\xe8\\x1b\\x6d\\x5a\\x0d\\x57\\x2a\\xda\\x16\\x9f\\xa2\\xdb\\x7a\\x9d\\x4f\\xd5\\xb4\\x4a\\x25\\xc5\\x6f\\x69\\x95\\x56\\xb3\\x4e\\x07\\xbe\\x1b\\x59\\xdf\\xf0\\x98\\x4e\\x7a\\x23\\x52\\x76\\xbb\\xa6\\x5a\\x2f\\x46\\x48\\xc0\\xc7\\x87\\xf7\\x2a\\xfb\\xa5\\xe1\\x38\\x75\\xc6\\xca\\xcb\\x3b\\x6e\\xbf\\x78\\x56\\xfc\\x57\\xd9\\x2f\\xd5\\x5d\\x68\\x70\\x7d\\xde\\x26\\x6f\\x9e\\x64\\xbe\\x08\\x7a\\xeb\\x13\\xde\\x04\\xa5\\xb2\\xe9\\xe8\\x48\\xc0\\x0b\\xc4\\xa7\\x63\\x9a\\xd8\\x30\\xb9\\x34\\x99\\x19\\xca\\xb6\\x09\\x1d\\xd5\\xb6\\x4d\\x5a\\x75\\x36\\x49\\xb1\\x6f\\xe9\\x1e\\xfa\\x81\\xf4\\x59\\xd0\\x17\\x37\\xdd\\x0f\\x16\\x3e\\x49\\x36\\xa5\\xdd\\xf8\\x1f\\xb0\\xb6\\x72\\xe7\\x90\\xf6\\xc9\\xee\\xf2\\xbe\\x77\\xe3\\xac\\x7e\\xcf\\x6e\\x3d\\xd0\\x93\\x31\\xf0\\x2a\\xad\\xec\\x76\\x0f\\x62\\xbf\\x87\\xc2\\xbd\\xf7\\xdd\\x80\\x28\\x7d\\x0f\\x0f\\x64\\x8f\\x51\\x4a\\x9f\\xfc\\xf7\\xe1\\x26\\x7e\\x9f\\x9f\\x27\\xd1\\xfb\\x0f\\xf8\\x1c\\xed\\xbf\\xf7\\x11\\x8b\\x58\\x9a\\xef\\xf9\\x08\\xb8\\x9e\\xfb\\x52\\x21\\xf8\\xe3\\x4f\\x3e\\xd9\\xfa\\xd7\\xd8\\x69\\x60\\xa7\\xd9\\x24\\xad\\xcd\\xff\\xdd\\xf8\\x6d\\x3f\\x57\\x72\\x18\\x89\\x8c\\xe3\\x04\\x27\\x76\\x31\\xd9\\x25\\x5c\\x8a\\x04\\x18\\x23\\xf5\\xd6\\xa6\\xe8\\x34\\x3a\\x52\\xd3\\x36\\xac\\xeb\\x84\\x85\\x33\\xb3\\xf8\\x83\\x8e\\xab\\xa0\\x05\\xf6\\x53\\x0d\\x7a\\xd2\\x01\\x4c\\x7d\\x88\\x15\\x2f\\x31\\x1e\\xfe\\x10\\x95\\x4e\\x6a\\x9a\\x75\\x3d\\xdc\\x6a\\xd4\\xeb\\xce\\x7f\\x16\\x27\\x26\\x1c\\x86\\x38\\xed\\xb8\\xa3\\x2a\\xcf\\xf2\\x9a\\x4a\\xf3\\x0c\\xce\\x9c\\x63\\xc9\\x3d\\x65\\x13\\xe2\\x4a\\xe5\\xa2\\x20\\x2f\\x98\\x65\\xb2\\xb9\\x89\\x17\\x2a\\x7d\\x5c\\x1f\\x2f\\x1d\\x79\\xd7\\x3f\\x7d\\x20\\x3e\\xc8\\x05\\xa2\\x63\\xb3\\xb3\\xa3\\x29\\x2c\\x68\\x9b\\x2b\\x43\\x03\\x89\\x70\\x46\\x3a\\x36\\x91\\x7f\\x28\\x2e\\xc6\\x46\\x06\\x43\\xe9\\xfd\\x13\\xa3\\x29\\xb7\\x3d\\x75\\x68\\x4f\\xbc\\xdd\\x1e\\xce\\x3f\\x3d\\xd6\\x89\\x75\\x9d\\xdb\\x82\\xa9\\x17\\x5a\\xa6\\xb9\\x53\\xae\\xdb\\xbe\\x26\\xf0\\x03\\xec\\x03\\xb4\\x8d\\xf6\\x8f\\xa4\\xee\\xe6\\x71\\x61\\x68\\x20\\x8b\\x4b\\x97\\x5c\\x48\\x76\\xae\\x0e\\xc6\\xcd\\x2d\\x68\\x6a\\xff\\x40\\x34\\x29\\x0c\\x0d\\xcc\\x8e\\x0e\\x0d\\xc7\\xc5\\x78\\x3c\\xc9\\x49\\x23\\xb1\\xd0\\x50\\xc4\\xe5\\x81\\xa8\\xfc\\x26\\x34\\x7b\\x70\\x78\\x64\\x78\\x70\\x68\\x60\\x74\\x62\\x74\\x28\\x14\\x0e\\xf5\\x73\\x49\\x79\\x34\\x9d\\x0c\\x8d\\x50\\xfd\\xeb\\x53\\xc8\\xc1\\x0f\\xe0\\x1a\\x12\\x80\\x9d\\x6b\\x41\\x55\\x54\\xa5\\x48\\x2b\\x11\\x84\\xa4\\x04\\xd8\\xef\\x86\\xc1\\x2d\\x40\\x54\\xbc\\x20\\xbb\\xf4\\x58\\x8a\\xaa\\x18\\x98\\x0c\\xf4\\x45\\x39\\x91\\x8b\\xf6\\x0d\\xa4\\xb8\\x01\\x61\\x20\\xf6\\x9e\\xd5\\xa3\\x3c\\x87\\x47\\x87\\x86\\x46\\x26\\x47\\x86\\x86\\x46\\xf1\\xe4\\x24\\x1f\\x0e\\xf7\\xf5\\x85\\xc3\\xfc\\xe4\\xc1\\x03\\xc3\\x7d\\x7c\\x7c\\xf2\\x20\\xf7\\xd8\\x52\\x7a\\x6c\\x7a\\x31\\x37\\x12\\x0a\\x87\\x43\\x23\\x99\\x65\\x9f\\xf7\\x21\\x08\\x96\\xa2\\xe2\\x1e\\x38\\x37\\x10\\x63\\x5d\\x6a\\x5b\\x7d\\x1b\\x8c\\xd5\\xc0\\x0b\\x56\\xda\\x20\\x76\\x6b\\x1b\\xdb\\xad\\x3a\\x9f\\x66\\x19\\x5a\\x15\\x7f\\x18\\x13\\x9d\\x9d\\x9b\\x4d\\xd7\\x09\\xe4\\xab\\x31\\x89\\x46\\xd1\\x24\\x60\\x30\\xb9\\xb2\\x95\\x37\\xcf\\x83\\xab\\x62\\xb7\\xd9\\xa3\\x63\\x76\\xae\\x3a\\x29\\x9e\\xd8\\x76\\x3c\\x95\\xe6\\x49\\xbd\\xbb\\x31\\x36\\x6b\\xc8\\x36\\xb1\\xe3\\x29\\xa2\\x8d\\xc6\\x49\\x3c\\xa5\\x55\\x76\\xb6\\xaa\\xe2\\x35\\xc8\\xd7\\xa2\\x51\\xe0\\x50\\x31\\x10\\x2a\\xf9\\x62\\x8c\\x3a\\x8d\\x9a\\x17\\x7d\\x5d\\xb0\\xdb\\x3c\\x52\\xf5\\xe4\\xbb\\x78\\x2a\\x31\\x38\\x98\\x68\\x35\\x59\\x53\\x70\\x4f\\x0b\\xb7\\x69\\xc3\\x08\\x6d\\x1b\\xc0\\x9a\\x3c\\xe7\\xb6\\x04\\x78\\xcb\\x7b\\x5a\\x89\\x7a\\xee\\xd0\\x18\\x44\\x47\\xbe\\x52\\xd7\\x84\\xe8\\xd4\\xdb\\x7b\\x83\\xdc\\x3e\\xc1\\xcb\\x67\\xb7\\x17\\xb5\\x5d\\x6e\\x91\\xd7\\x19\\xb7\\xae\\xaf\\xcc\\xf7\\xd4\\x38\\xbe\\x27\\xf6\\x91\\x17\\x77\\xbf\\xf7\\xb8\\xa8\\xdb\\x1a\\x21\\x5e\\x2f\\xec\\x3a\\x32\\x6c\\xc7\\xb6\\x77\\x1b\\x1b\\x3c\\x44\\x01\\xcd\\x76\\xdd\\x09\\x41\\x86\\xf8\\x89\\x57\\x71\\x0b\\x6c\\xa7\\x02\\xa5\\xbf\\x42\\xf7\\x3b\\x1a\\x49\\xc5\\x9d\\x57\\xec\\xf9\\x90\\xaf\\x1f\\x24\\xf0\\xc7\\x2c\\x30\\x84\\x2e\\x0f\\x9d\\xcb\\x6b\\x11\\xe0\\x96\\xbd\\xe2\\x70\\x15\\x08\\x90\\x33\\x56\\x2a\\xd0\\x0c\\x67\\xf7\\x9b\\x23\\x68\\x9a\\x9d\\x8a\\x3b\\xf1\\x51\\x40\\xc5\\x8e\\xa7\\xc8\\x2b\\x0c\\xda\\x4e\\x4f\\x31\\xce\\x25\\x99\\xce\\x7f\\x90\\x73\\xf8\\x7d\\x1a\\xa2\\xd9\\xb6\\x63\\xef\\x5a\\x7f\\xa3\\xae\\x69\\x5b\\xaf\\xf4\\x9c\\x84\\x7d\\xfd\\xc1\\x81\\xe5\\xfd\\x20\\x3a\\xc6\\x7a\\x44\\xf5\\xf5\\x8a\\xd7\\x39\\x9d\\x87\\xe6\\x55\\xf5\\x0f\\xed\\x21\\xfa\\xd0\\xa4\\x78\\xc2\\x9e\\x9e\\x57\\xea\\xa7\\x0a\\x21\\xf5\\x14\\x7b\\x7a\\xf2\\xc0\\xc5\\xce\\xf6\\x5e\\xb1\\xcb\\xf6\\xb8\\x9f\\x7e\\xdf\\x9f\\xab\\x74\\xef\\x05\\xef\\xd7\\x69\\xaf\\x45\\x08\\x9d\\x7a\\x6c\\x1b\\x6e\\xeb\\xee\\x13\\x10\\xc0\\x2f\\x8c\\xc6\\x1d\\x3a\\xda\\x52\\x71\\x12\\x1f\\xdd\\x6d\\x94\\xed\\xd6\\x3a\\xc6\\x7a\\x6c\\x82\\x17\\xdb\\x28\\xf0\\x05\\xa3\\x43\\x70\\xb4\\x93\\xa3\\xde\\x90\\xa5\\x9e\\x96\\xd3\\x8e\\x57\\xbb\\x9f\\x48\\x98\\x6d\\x7c\\x2d\\xac\\x40\\x90\\xac\\x65\\x81\\x7b\\x50\\xe0\\xd3\\xdb\\x5e\\x8b\\x9d\\x56\\xd3\\x01\\xf5\\xbe\\xee\\x6f\\x64\\x5d\\xa0\\x53\\xa9\\x90\\x8a\\x0b\\xf1\\x54\\x2a\\x6e\\x79\\x4d\\x0e\\x76\\xc9\\xb9\\x22\\xe3\\x8b\\xd9\\xd1\\x42\\x4e\\xc7\\xb5\\x5a\\xcd\\x27\\x3c\\xd6\\x6a\\x55\\xac\\x39\\x5d\\x7c\\xf2\\xf5\\xcd\\x6e\\x2d\\x75\\x04\\x56\\x22\\xd2\\xb1\\xca\\xbd\\x1a\\x7d\\x9c\\x45\\x44\\x34\\x77\\xd1\\xc4\\x5d\\x1f\\xe2\\x2f\\xed\\xa9\\x84\\x77\\x62\\xe2\\x24\\xc8\\x78\\xf1\\xe5\\x09\\x70\\x22\\xc4\\x4c\\x7f\\xdf\\x5c\\x81\\x43\\x13\\x53\\x06\\x01\\x26\\x9d\\xbd\\xb2\\x05\\xe6\\x06\\x4e\\x4c\\xcb\\xfa\\x2e\\x19\\x03\\xae\\x4e\\x09\\xd1\\x05\\x51\\x40\\x9e\\x2f\\x08\\x05\\x89\\x97\\x55\\x4e\\xde\\x31\\x04\\x75\\x53\\x72\\x61\\x24\\xd7\\xce\\xac\\x3c\\xe4\\x0f\\xac\\xaf\\xd8\\x36\\xb6\\x9b\\x04\\x93\\x95\\x95\\xde\\x41\\x66\\xdb\\x08\\xb7\\x7d\\xcb\\x61\\x84\\x70\\xa2\\x60\\x4a\\xa6\\x8a\\x49\\xa3\\xa5\\x39\\x6b\\xc5\\xc3\\xc0\\x15\\xee\\xa4\\xee\\xf3\\xa1\\x90\\xb6\\x19\\x90\\x5e\\xe9\\x29\\xd8\\x7d\\x91\\x79\\x85\\xe5\\x05\\xa1\\x08\\x9a\\x46\\xd3\\xf8\\x5b\\xf8\\x5b\\x6e\\xb4\\x43\\x0a\\x3c\\x1c\\x04\\xed\\x47\\x26\\xd5\\xff\\xa9\\x96\\x6b\\x96\\x4d\\x29\\xcc\\x99\\x65\\x53\\x0f\\x73\\x8a\\x07\\x6b\\x29\\x4a\\x9c\\xa2\\x9a\\x61\\x4e\\x2e\\x9b\\x21\\x45\\x35\\x45\\x49\\xe5\\x14\\xd5\\x10\\xb9\\x30\\xa7\\x96\\xcd\\xb7\\x65\\x4b\\x73\\xcb\\x8f\\xcc\\x4d\\xe4\\xf4\\xe5\\xb7\\x8c\\x85\\x49\\x78\\xea\\x06\\xdc\\xef\\x7f\\x19\\x1e\\xcb\\x4e\\x85\\xcf\\xc1\\x11\\x7c\\x9e\\x7d\\x60\\x67\\x96\\xb2\\xfa\\xf2\\x6b\\xb2\\xf4\\x8b\\x12\\x1c\\xae\\x2a\\x33\\x4b\\xfa\\x27\\x60\\xfc\\xd8\\x50\\xcc\\x3b\\x4b\\x73\\xcb\\xfa\\x5b\\xe0\\xbc\\x0f\\xfa\\xce\\xa3\\x72\\xe3\\x7e\\xc4\\xe3\\xdf\\xc1\\xdf\\x01\\x4c\\x99\\xb6\\xf6\\xcf\\x2d\\x94\\x4d\\x55\\x51\\x8c\\xb2\\x24\\x4a\\x30\\x38\\x20\\xb7\\xa5\\x6c\\x96\\xa5\\x64\\x98\\x1b\\x0a\\x70\\xd9\\x80\\x24\\x8a\\x42\\x58\\x55\\xc0\\x45\\xc6\\xf8\\x6b\\xc3\\x5c\\x98\\x19\\x95\\x9f\\x9a\\x29\\xc5\\xb3\\x45\\xcb\\x8a\\xf4\\x07\\xe4\\xf1\\x71\\x39\\xd0\\x1f\\xb1\\xac\\x62\\x36\\xc0\\x85\\x83\\xc1\\x30\\x17\\xe8\\xf9\\xa6\\x0e\\xf6\\xa4\\xfb\\x95\\x13\\xb1\\x48\\x7c\\xb1\\x50\\x2a\\xf5\\x71\\x43\\x61\\x79\\x91\\xe7\\x17\\xe5\\xf0\\x10\\xd7\\x57\\x2a\\x15\\x16\\xe3\\xb8\\x2f\\x88\\x71\\xb0\\x0f\\xef\\xf6\\x3d\\xbd\\x03\\xfe\\x59\\x7c\\xa0\\x2b\\xf6\\x99\\x21\\x19\\x98\\x12\\x67\\x9a\\x12\\xa7\\xf8\\xd8\\x5e\\x4c\\x60\\x90\\x93\\x0d\\x8e\\x53\\x4d\\xfa\\xe4\\x6d\\x6b\\x1f\\x9d\\xcd\\xce\\x7e\\x32\\x3b\\x9b\\x7d\\x0f\\x23\\x44\\x71\\x9c\\xf1\\xd9\\xec\\xac\\xad\\xa9\\xd9\\xd9\\x2c\\x76\\x04\\xc7\\xf9\\xd1\\xd9\\xec\\xec\\x6c\\x76\\x36\\xfb\\xaf\\xe1\\x56\\x84\\xb4\\x77\\xcd\\x66\\x67\\x1f\\x76\\x9c\\x0f\\x65\\x67\\xb3\\x3f\\x02\\x08\\xe7\\x16\\x12\\xf0\\xbf\\x07\\xbd\\x05\\x72\\x2b\\xb1\\xae\\x9a\\x12\\xc0\\x3a\\x98\\x05\\x9d\\xd3\\x83\\x86\\x8c\\xdf\\x30\\x9f\\x12\\x4e\\x4c\\x0d\\x1f\\x1f\\x9e\\x3a\\xd1\\x6a\\x36\\x6d\\xbb\\x66\\xe1\\xd7\\x9e\\xd7\\x1a\\x84\\x34\\x1a\\x77\\x51\\xc3\\xcb\\xb0\\xaa\\x41\\xb6\\x33\\xd3\\x9c\\x0c\\x9d\\x03\\xe0\\x71\\x43\\x36\\x54\\x5c\\x2d\\xbc\\xb8\\x55\\xf9\\x1d\\x7c\\x21\\xb3\\x7a\\xce\\x5a\\xc7\\xe4\\xe0\\x8b\\xb3\\x9b\\xb5\\xd6\\xe7\\x32\\x0f\\xfc\\x83\\xc6\\x85\\xaa\\x0f\\x21\\x3e\\x4c\\xb5\\x13\\xa8\\xb0\\xb6\\x55\\xa9\\x6c\\x58\\xb8\\xb9\\x09\\xa5\\x47\\xda\\xb6\\x24\\x86\\xb5\\x38\\x82\\x92\\x80\\x2e\\x4d\\x00\\x9d\\xd7\\xe3\\x65\\x51\\x5d\\x30\\x1a\\x8e\\xd7\\x41\\x35\\x95\\x0b\\x4c\\x2e\\x70\\xe3\\x44\\x4a\\x1e\\x42\\x6a\\x8d\\xa4\\x79\\x00\\xe5\\x69\\x6a\\x0e\\x9f\\x26\\xad\\x7a\\x7b\\x6e\\xb2\\x89\\x43\\x2c\\x46\\xb9\\xb2\\xc9\\xe0\\x58\\x1c\\xbc\\xd5\\xd2\\x70\\x3d\\xcd\\xd3\\x13\\xb7\\x48\\x9a\\x6f\\xb2\\xe3\\x08\\x45\\xdb\\x73\\xa4\\x17\\xb3\\xce\\x50\\x65\\x18\\x72\\x18\\xe4\\xa1\\xeb\\x82\\x1b\\x69\\x6a\\xe8\\x86\\xf0\\x0a\\xf9\\xee\\x92\\x9b\\xab\\xa0\\xea\\x9d\\x44\\x4a\\x49\\xd0\\x8d\\x82\\x2c\\x80\\xbe\\xaf\\xb9\\xb8\\x32\\x3d\\x39\\xf1\\x9a\\x0b\\x7f\\x03\\x5f\\x38\\xda\\x5d\\xa4\\x69\\x58\\x70\\x1c\\x76\\x6a\\x8d\\xc5\\xd9\\x60\\xcb\\x3f\\xb7\\x3b\\x1d\\x14\\x27\\xc2\\x72\\x3f\\x3d\\x7d\\xbc\\x37\\xde\\x61\\x07\\x8f\\xfd\\x0e\\x4f\\xe6\\x1e\\xfc\\xf5\\xde\\x79\\x40\\x49\\x9f\\x7a\\x14\\xcc\\xe1\\x8f\\x82\\x75\\x76\\x11\\xf6\\x3f\\xb4\\x93\\xb1\\x1e\\xbe\\x4e\\x61\\x66\\x97\\x3f\\x0c\\x10\\x7d\\x87\\xc1\\x8e\\xbe\\xb8\\x83\\xa5\\xfe\\xd7\\x7d\\xdf\\xa2\\x08\\x42\\x08\\xe1\\x3f\\xc2\\x7f\\x04\\xec\\x90\\x74\\x54\\xd0\\x95\\x2f\\x8f\\x26\\xd0\\x11\\x96\\xeb\\x65\\xa8\\xb2\\xa0\\xd2\\x8d\\xc4\\x32\\x55\\x25\\x41\\x0f\\x62\\x8e\\xe5\\x72\\xab\\x21\\xe8\\x60\\x60\\x61\\xe4\\x55\\xc3\\x0b\\x28\\x75\\xdf\\xb1\\x9d\\xcb\\x69\\xb1\\x33\\x5a\\xec\\x4c\\xa5\\x92\\x7b\\x28\\xf7\\xbb\\xf8\\x6b\\x19\\xd2\\xfa\\x3c\\x9f\\x22\\xd8\\xae\\xdc\\x45\\x39\\x82\\xcf\\xf0\\x29\\x2d\\x47\\xce\\x54\\xd8\\xc6\\xce\\xe5\\xce\\xc4\\x2a\\x0e\\xfd\\xab\\x54\\x70\\x2e\\xf7\\x50\\x0e\\x8f\\xb4\\xca\\x19\\x92\\xe2\\xf1\\x19\\x92\\xab\\x54\\xb4\\x14\\xdf\\xfa\\x3c\\xc9\\x69\\x95\\x33\\x6c\\x43\\x47\\x4f\\x37\\x72\\x81\\x3f\\xef\\xc1\\xe7\\x11\\x00\\x8c\\xbe\\x3d\\xf6\\x77\\x88\\xdb\\x75\\x00\\x4e\\xd5\\x7c\\xdb\\x2e\\xc4\\x63\\xbb\\x42\\x5b\\x47\\x1b\\x88\\x76\\xd9\\xeb\\x06\\x3d\\x46\\x7d\\x28\\x8b\\xb2\\xf8\\xeb\\xf8\\x25\\x94\\x04\\xbc\\x29\\xaa\\x97\\x8b\\x18\\x7c\\x70\\x6d\\xd8\\x33\\x46\\xb5\\xaf\\x82\\x70\\xa9\\x9a\\x54\\xea\\x94\\x55\\x57\\x3f\\xe3\\xe8\\xf4\\x61\\x5c\\xc3\\xe5\\xd1\\x17\\x4e\\xe7\\xf3\\x24\\x9f\\x27\\xfd\\x8f\\xff\\xb7\\xfe\\xfc\\xe4\\x60\\x22\\xbf\\x46\\x48\\xff\\xe8\\xca\\x60\\x22\\x91\\xc8\\x27\\x46\\xf1\\x4b\\x0f\\xb7\\xbe\\x2e\\xbd\\x70\\x6f\\xfe\\x11\\xc3\\x70\\x08\\x79\\xbc\\x96\\x4f\\x0c\\x4e\\xe5\\x23\\x82\\xb0\\x26\\x3d\\x92\\x18\\x14\\x24\\x6e\\x86\\x30\\x69\\xc4\\x8b\\x31\\x1b\\x04\\xfc\\x2b\\xd2\\x13\\x27\\x66\\x30\\x5c\\x12\\xd6\\xac\\x90\\x21\\x0b\\x3a\\x6b\\x81\\xc0\\xf4\\x45\\x2a\\xa5\\x52\\xa1\\xf4\\x8c\\x05\\x6d\\xc1\\x16\\x59\\x81\\xda\\xf3\\x2b\\x83\\x89\\x97\\x2d\\x6b\\x2d\\x31\\x68\\x0d\\x26\\x1c\\x42\\x1c\\xda\\x88\\xa8\\x20\\x24\\xa3\\x33\\x84\\x38\\x89\\x41\\x58\\x83\\x3b\\x51\\x60\\xd2\\x4e\\xdf\\x84\\xe7\\x5d\\xbf\\x0a\\x63\\x1b\\xfc\\x0f\\x3a\\x2e\\x80\\x63\\xd2\\xef\\x72\\x78\\x2d\\xf8\\x23\\xd1\\xce\\xf2\\x7a\\x6d\\xcb\\x6d\\xde\\xca\\xd3\\x50\\x14\\x2b\\xe9\\xe7\\x60\\xbf\\xee\\xf3\\x6c\\xe6\\x5d\\x7c\\x76\\x0e\\x69\\x48\\x6b\\x73\\x89\\x31\\x5e\\x15\\x15\\x9d\\x65\\xec\\x7b\\x5e\\xbe\\x5e\\xb8\\xc7\\xbb\\xa0\\x9a\\x2a\\x27\\xba\\xdf\\x49\\x1d\\xa8\\x21\\x8f\\xe9\\xdb\\x54\\x3d\\x1c\\x63\\x0f\\x1d\\x10\\x3f\\x7c\\xfe\\xfc\\xb9\\x2c\\x38\\xf2\\xef\\x05\\x7f\\x7d\\x0e\\xf6\\x27\\xce\\x9d\\x3b\\xff\\x45\\xf8\\x7c\\xc3\\x0e\\x87\\x1f\\x0c\\x47\\xa2\\xe1\\xfb\\xed\\x70\\x3c\\xfc\\xda\\x70\\xd8\\xb6\\xc3\\xe1\\xd7\\x86\\xe3\\x61\\xfb\\xfe\\x70\\x22\\xfc\\x60\\x38\\x7c\\xfe\\xfc\\xb9\\xf3\\x4f\\xf9\\xdc\\xf7\\x39\\xd8\\xcf\\x9d\\x3f\\x77\\x5e\\x86\\xcf\\x0b\\x7b\\xfc\\xce\\x86\\x82\\x13\\xe1\\x1f\\x1c\\x1a\\x84\\x1f\\xe1\\xb5\\xf3\\xc4\\xed\\x2a\\x5b\\x49\\x3e\\xa4\\x4a\\xc8\\x10\\xe8\\xc9\\x9e\\xac\\xc3\\x0a\\xa2\\x69\\xbb\\x58\\x28\\x61\\x9e\\xad\\x30\\x38\\x3a\\x7f\\x9e\\x42\\x18\\xc5\\xc1\\xaa\\x43\\xe7\\x77\\x1e\\x9b\\x6c\\x79\\x30\\x7a\\x61\\x91\\x99\\xee\\x5c\\xad\\x6a\\xad\\xad\\x28\\xc9\\x13\\x92\\xff\\xae\\x4f\\x62\\xcf\\x9f\\xc1\\x5a\\x6b\\xeb\\xbb\\xf4\\x30\\x21\\x6b\\x5d\\xd6\\xd5\\x57\\x27\\x57\\xfa\\xbd\\x6e\\x31\\x94\\x44\\x63\\x68\\x02\\xd0\\x61\\x17\\xca\\xba\\xc0\\x58\\x55\\x74\\x41\\x76\\x3f\\x04\\x93\\x61\\xd9\\x98\\x2f\\xd3\\x05\\x16\\xde\\x65\\xfa\\x8e\\xbd\\x4c\\xc8\\xed\\x76\\x5a\\xa4\\x43\\xf7\\x1c\\x25\\x6d\\x2d\\x5d\\xd1\\x20\\x5d\\xf1\\xa1\\xe7\\xc8\\xcd\\x8b\\xd8\\x81\\x8f\\xb0\\x9f\\x56\\x2c\\x9f\\x56\\xc1\\xe4\\xcd\\x19\\x98\\xe9\\x68\\x4d\\x9c\\xa4\\xd2\\xb7\\x20\\xa4\\x20\\x73\\x80\\xb2\\x2f\\xc8\\x0b\\xa6\\xb7\\x95\\x8d\\x79\\x77\\x6b\\xc2\\x19\\xf8\\xf4\\xc1\\xe5\\x39\\xed\\x58\\x31\\x93\\x8d\\x3d\\x5b\\xcc\\x89\\x8d\\x0c\\xbe\\x91\\x39\\x92\\xd0\\x72\\x39\\x42\\x0e\\x18\\xc7\\x2a\\x27\\x8c\\xdc\\xd4\\x7c\\x31\\xb3\\x3a\\x50\\x0c\\xe2\\x48\\x91\\x88\\xc7\\x8a\\x03\\x1a\\x16\\x96\\x0f\\xe6\\xb4\\xb9\\x4c\\xa6\\xf5\\xb3\\x99\\x23\\x99\\xe2\\xfc\\x54\\xd6\\x38\\x5e\\x39\\x66\\x1c\\x20\\x24\\x97\\xd3\\x12\\xab\\xd9\\x4c\\x71\\x20\\x86\\xba\\x23\\x41\\xe2\\x1d\\x14\\xda\\xa7\\x3f\\xf7\\x34\\xc4\\x69\\x78\\xb1\\x8d\\x5e\\xf4\\xec\\x24\\x9d\\xa9\\x01\\x5a\\xcc\\xcb\\x2d\\xd4\\x19\\x68\\xac\\x3c\\x5f\\xde\\x71\\x47\\x2d\\xb0\\x39\\x90\\x4a\\x85\\x4f\\xc5\\x87\\x86\\xe2\\x6c\\x24\\xb1\\x94\\xd8\\x3c\\x55\\x97\\xe9\\x2a\\x9e\\x8a\\xe7\\x87\\xe2\\xf1\\x5f\\xec\\xb5\\xbc\\x0b\\xa8\\x06\\xf7\\x75\\x80\\xce\\x19\\xf1\\x79\\x57\\x0b\\xa2\\xb7\\xc9\\xb7\\xff\\xf1\\xaf\\x3c\\x47\\x6e\\xde\\xbe\\x49\\x7e\\xf1\\xa9\\x55\\x6d\\x79\\x75\\x59\\xc3\\xce\\x73\\x0f\\x5d\\xb8\\x75\\xeb\\xc2\\x43\\xc6\\xea\\xd2\\xf4\\xf2\\xf2\\xf4\\xd2\\x2e\\xdc\\x90\\x4c\\x1e\\xd1\\x77\\x46\\x63\\x5b\\x44\\x23\\xb6\\xe3\\x77\\x33\\xd0\\x65\\xa2\\x07\\x7e\\xc7\\x57\\x1e\\xcf\\x30\\x09\\xbb\\x3b\\x41\\xde\\xc9\\xec\\x6b\\x39\\x20\\x69\\xa5\\xe2\\xda\\x66\\xa7\\x70\\x6c\\x11\\x87\\x5e\\x3b\\x89\\x8f\\x12\\xa7\\xbb\\x86\\x8e\\x5e\\x9b\\x60\\x52\\x31\\x36\\xe4\\x62\\x58\\x10\\x92\\xa2\\xbe\\x77\\x2d\\x80\\x74\\xc9\\x22\\x49\\xb5\\xde\\xba\\x1c\\x0d\\x5b\\x24\\x15\\x07\\xae\\xeb\\x1d\\xf5\\x31\\xc9\\x2e\\xe0\\x1b\\xa7\\x02\\xeb\\xa5\\x5d\\x7a\\x88\\x54\\x88\\x5f\\x93\\xde\\x22\\xf5\\xbd\\x7b\\x27\\xc9\\x62\\x78\\xbd\\x91\\x02\\x79\\x92\\x60\\xcb\\xdc\\x65\\x94\\x50\\x61\\x54\\x8b\\xa7\\x1c\\xba\\xb1\\x7d\\x7d\\x24\\x10\\x3a\\x46\\x46\\xe3\\x15\\x42\\x46\\x7f\\xad\\xab\\x22\\xbf\\x1f\\x34\\xe1\\x67\\x87\\x88\\x77\\xe2\\xa8\\x77\\xf7\\x85\\xa6\\xf8\\xfa\\x6a\\xaf\\x37\\x74\\xb5\\xce\\xa7\\x3a\\xfe\\xd0\\x40\\x3b\\xc3\\x36\\x03\\xb2\\x36\\x2f\\xbb\\x41\\xf0\\x6e\\x40\\x3c\\x55\\xce\\x0d\\x50\\xc8\\x77\\xf4\\x90\\x6e\\xea\\x12\\xae\\xd7\\x67\\x96\\x96\\x66\\xc6\\x26\\x27\\xc7\\xe8\\x1f\\xdd\\xf7\\x25\\xb1\\x9f\\x50\\x1c\\xa5\\x8a\\x91\\x78\\xe4\\xea\\x92\\x32\\x79\\x48\\x7d\\x76\\xf2\\x90\\xaa\\x1c\\xb9\\xba\\x24\\x78\\x99\\xbe\\xcc\\x6d\\x4e\\x88\\x2f\\x33\\x7e\\x14\\x32\\xf6\\xba\\xb2\\xc3\\x75\\xd5\\xfd\\xc3\\x8e\\xed\\x95\\x2c\\x6a\\x96\\xa6\\x41\\xd6\\xa0\\x85\\xeb\\xad\\x76\\xde\\x39\\x08\\x45\\x6e\\x6c\\xb0\\x03\\x91\\x40\\x1e\\xfe\\x58\\x3b\\x32\\xd8\\xb1\\xf5\\x93\\xf3\\xf3\\xb2\\x20\\xe2\\x86\\xbd\\x25\\xd3\\x85\\x37\\x86\\xdc\\xf8\\xaf\\x9f\\xc1\\xdf\\xa4\\xda\\x91\\x97\\xd1\\xd4\\x09\\x96\\xc7\\x82\\xd3\\xda\\x72\\xca\\xa7\\x56\\xdf\\x71\\xe5\\xec\\xa7\\x2e\\x6b\\xda\\xfd\\x91\\xcb\\xe6\\xd2\\xea\\xea\\xd2\\xc1\\xfb\\x5d\\xbd\\xe8\\x77\\xf1\\x37\\xc1\\x4a\\x87\\xbc\\x20\\xcc\\x52\\x32\\xcc\\x41\\x31\\x72\\xdb\\x3c\\x27\\x0b\\xed\\x22\\xdf\\x0c\\xc1\\xe3\\xf8\\x81\\xb3\\x07\\xac\\x56\\x5d\\x00\\x82\\x02\\xa1\\x0e\\xc5\\x63\\x01\\x3c\\xf8\\xc9\\x83\\xf7\\x73\\x97\\xb5\\x75\\x80\\xe8\\xae\\x58\\x6e\\x75\\x90\\x79\\xea\\xe0\\x7b\\xb1\\x03\\xb8\\xf0\\x1c\\xd0\\x3c\\xdd\\xcb\\x92\\x53\\xaf\\x79\\x99\\xa5\\x5f\\x40\\x0e\\xb6\\xd9\\x19\\x09\\x7a\\x82\\xda\\x74\\x9c\\xec\\xb5\\x6b\\xd8\\x81\\xb7\\xff\\xb3\\xe3\\x13\\xbc\\x6c\\x81\\x8e\\x04\\x10\\xda\\x55\\x02\\x00\\x42\\xc6\\x76\\x6a\\xcf\\x77\\xdb\\x22\\x00\\x8c\\x28\\x1f\\x16\\x08\\xe4\\x49\\xf6\\xc6\\x0c\\xf8\\xe3\\x04\\xec\\xde\\xa8\\x76\\x6f\\x14\\x4a\\x30\\xdb\\xcd\\x0b\\x7c\\x52\\x2e\\x82\\x83\\x48\\x2e\\x1a\\x3c\\xb8\\x85\\xe6\\xcd\\x32\\x88\\x53\\x02\\x8c\\xa6\\xaf\\xc6\\x62\\x81\\xbe\\xb5\\xdf\\x58\\xeb\\x0b\\x78\\x3b\\x63\\xe7\\x5f\\xbb\\x7a\\xf9\\xd2\\x03\\xab\\x97\\x71\\x7d\\xa8\\xf5\\x1b\\x43\\x01\\x59\\x0e\\x0c\\xe1\\x43\\xf0\\x6e\\x8e\\x8e\\xfe\\xc9\\xe8\\xa8\\x0f\\x77\\xac\\x1f\\xe5\\x11\\x32\\x75\\x65\\xc1\\x94\\x45\\x21\\x19\\x12\\x85\\xa4\\x5c\\x28\\x1a\\x0b\\x66\\x19\\x20\\x60\\xf4\\x02\\xf8\\xf0\\x92\\xef\\xff\\x13\\xfa\\x3b\\x1c\\x0a\\x74\\x97\\x67\\x5f\\xfe\\x1c\\xad\\xa7\\xda\\xa9\\xda\\xdd\\xf1\\x5f\\x47\\x82\\x45\\xdb\\xe5\\x02\\x62\\x72\\x38\\x10\\x2e\\xce\\x05\\x94\\x85\\xe5\\x80\\x58\\xe4\\xc2\\x49\\xb8\\x92\\x05\\xf5\\x9f\\x7c\\xe4\\xb5\\x89\\x70\\x3c\\x1e\\x4e\\xbc\\xd6\\xdb\\xf9\\x8b\\xf7\\x57\\x86\\x87\\x2b\\x74\\x83\\xeb\\x23\\xc1\\xc4\\xb1\\x1f\\x3b\\x96\\x08\\x8e\\x78\\x3b\\x99\\xa1\\x83\\x6f\\x39\\x38\\x44\\x37\\x3f\\x38\\x89\\xad\\xc3\\x68\\xd6\\xc7\\x56\\x2d\\xb3\\xa0\\x72\\xaa\\x2a\\x98\\xd2\\x8e\\x79\\xdf\\xc1\\xe8\\x92\\x35\\x6b\\x19\\xe5\\x5a\\xc7\\x7f\\x5c\\xfd\\xe1\\x4b\\xe6\\x9f\\xd7\\xf3\\xf9\\x7a\\x77\\xc6\\xd5\\xdf\\x65\\x8c\\xdb\\xdf\\x7e\\x54\\x11\\xe7\\xd3\\x26\\xa9\\x1e\\x9c\\x46\\x13\\x68\\x1f\\xb3\\x59\\xeb\\x1d\\xfb\\xb3\\x04\\x40\\xbd\\xb2\\x2b\\x73\\x72\\xee\\x72\\x34\\x5f\\x56\\xdd\\xbd\\x5d\\xd7\\x23\\x22\\x6c\\xb3\\xe6\\xd4\\x84\\x97\\xad\\x7c\\x3e\\x6f\\xc4\\x87\\x0c\\x63\\x28\\x5e\\x4d\\x0c\\x1a\\x79\\x61\\x30\\xf1\\xf9\\x4e\\xb2\\x09\\x1e\\xb0\\xac\\xc7\\xdd\\xa4\\x92\\x15\\x51\\x14\\xf3\\x8e\\x96\\x17\\x2d\\xaa\\x59\\x25\\x4c\\x71\\x30\\xe1\\x68\\x89\\xcf\\xfa\\xaf\\x05\\x75\\x49\\xc6\\x2e\\xe2\\xe5\\xae\\xbe\\x2d\\x81\\xa5\\x5c\\x79\\x81\\xea\\xbd\\x11\\x10\\xdf\\x6d\\x1c\\x3b\\x7c\\xec\\x2c\\x5d\\x60\\xc6\\x76\\x89\\x39\\x68\\xfd\\xd1\\xc8\\x88\\x98\\x4e\\x5b\\xe3\\xca\\xf8\\xb8\\xc2\\x34\\xb0\\x35\\xbc\\x8d\\x6f\\xbb\\x79\\x7e\\x3b\\x62\\x4d\\xcb\\xf3\\xa2\\x14\\x0e\\x17\\x15\\xb5\\xec\\xcf\\xea\\x1b\\xfb\\x98\\x33\\x36\\xe6\\xd0\\x8d\\x6b\\xbf\\x66\\xd9\\x7c\\xbf\\xb5\\x7a\\xfa\\xf4\\xea\\xea\\xe9\\xd3\\x08\\x38\\xcf\\xe9\\x1d\\xf8\\x0b\\x8f\\x55\\x14\\x8b\\x0c\\x59\\xcd\\x04\\xaf\\xf1\\x82\\x0a\\x4c\\xca\\xc2\\x7c\\x48\\x32\\x55\\x43\\xe2\\x54\\xfc\\xd1\\x03\\x07\\xcc\\xfb\\xf6\\x93\\x7c\\xa6\\xb0\\x34\\x4d\\xc8\\xf4\\xd2\\xd5\\xab\\xf7\\xb5\\xfe\\xf4\\xfc\\xf9\\xf3\\xcf\\x3d\\xf7\\x3e\\xfc\\x96\\x03\\x1f\\x3f\\x70\\x60\\x34\\x37\\x38\\x4d\\xde\\x31\\x3d\\x7d\\xe2\\xea\\x6b\\x4e\\x7c\\xe9\\xfc\\xf9\\xf3\\x87\\x9f\\x7b\\xee\\x39\\xda\\x67\\x57\\xd0\\x15\\xc8\\x14\\x1c\\x42\\x49\\x94\\x06\\x16\\x5b\\x08\\x0f\\x36\\x20\\xb4\\x58\\x50\\xcd\\x20\\x18\\x6e\\x55\\x9f\\x91\\x16\\x0b\\xcb\\x57\\xae\\x2c\\xcf\\x1e\\x39\\x32\\xfb\\xd0\\x43\\xef\\xcc\\x49\\xd9\\x7d\\x07\\x43\\x23\\xd9\\xb1\\xf0\\xd1\\x78\\x1f\\x09\\x8f\\xe3\\x4f\\xf7\\xaf\\xbd\\x7b\\xad\\x9f\\xf4\\x9f\\xfa\\xa1\\x53\\xfd\\x97\\x5f\\xf7\\x50\\xeb\\x03\\x39\\x3e\\x44\\xc2\\x1f\\x18\\x1f\\xcd\\x96\\x66\\x5f\\x97\\xce\\xcc\\x28\\xc0\\xe8\\x72\\x05\\x7f\\xba\\x9d\\x15\\x97\\x47\\xa8\\x04\\x16\\x61\\x8e\\x59\\x87\\x65\\x45\\x35\\x45\\x95\\x33\\xc2\\x9d\\xc8\\x28\\x03\\xbf\\x91\\x96\\x32\\xf6\\x96\\xac\\x94\\x9b\\xd8\\xf7\\x61\\x12\\xe2\\x73\\x63\\x57\\x1e\\xa2\\x4d\\xa0\\x4d\\xf9\\xbc\\x94\\x9d\\x2d\\x89\\xf4\\x58\\xf8\\x4b\\x59\\x29\\x5b\\x3a\\xf5\\xba\\xcb\\x50\\x3d\\x81\\xa6\\x1c\\x43\\xbb\\x79\\x33\\x76\\xd1\\xcf\\x24\\xae\\x77\\x28\\xac\\x57\\xab\\xbb\\x0c\\x81\\xaa\\x6d\\xbb\\x59\\xff\\x54\\x86\\x06\\xcc\\x42\\x7f\\x16\\xef\\x5e\\xd9\\xbc\\x00\\x9d\\xcc\\x5e\\x7e\\x0e\\x99\\xfa\\xa6\\xed\\xfe\\xeb\\x0a\\xc0\\x42\\x7d\\x68\\x14\\xed\\xc3\\xbf\\x8f\\xff\\x15\\x64\\x7a\\xe4\\x91\\x82\\x90\\x69\\x48\\x72\\x51\\x69\\x47\\x59\\x8b\\x61\\xa6\\x6a\\x07\\x15\\x03\\xc8\\x7f\\xe7\\x25\\xac\\x28\\xa6\\x29\\x3c\\x7d\\x26\\xc7\\xa7\\x8b\\x2c\\x12\\xfe\\x1e\\x6e\\x68\\xe4\\xa3\\xfd\\x91\\xb1\\x81\\xf5\\x60\\xfa\\x63\\x91\\xfe\\xcc\\x40\\xeb\\x6b\\x23\\x43\\xdc\\xc2\\x6b\\x9e\\xf9\\xe5\\xf4\\x7f\\x87\\x68\\xf5\\x4f\\x8e\\x14\\xb8\\xa3\\xc1\\x34\\x46\\xf4\\xcb\\xa3\\xc1\\x74\\xeb\\x97\\xb9\\xfc\\xc8\\xd3\\x8d\\xce\\xac\\xde\\x44\\x11\\x88\\x1d\\x67\\x36\\x62\\xc9\\xd0\\x7b\\x1f\\x69\\x90\\xcb\\xac\\x95\\x15\\x67\\x65\\xc5\\xa9\\xfa\\x26\\x32\\xd5\\x51\\x5f\\x5c\\x59\\x29\\x97\\x57\\x56\\xca\\x5d\\x1c\\xe8\\x1a\\x8b\\x20\\x61\\x28\\x1d\\xbd\\x65\\x9b\\xbc\\xda\\x8b\\xa7\\x82\\x85\\x95\\x15\\xe7\\xcc\\x19\\xa7\\x6a\\xdb\\xb1\\x48\\xab\\x49\\x65\\x14\\x4c\\x22\\x31\\xaf\\xec\\x33\\x95\\xd6\\x9d\\xca\\x0a\\x1c\\x45\\x0c\\xb5\\xf5\\xef\\x0b\\x29\\x33\\xd4\\x85\\xae\\x3e\\x0c\\x31\\x17\\xc8\\x34\\x05\\xce\\xa4\\xc2\\x8c\\x89\\x75\\x0e\\x84\\x33\\xce\\x28\\x89\\x12\\x56\\xd4\\xdf\\xf8\\xde\\xaf\\xfd\\x5a\\x9a\\xd7\\xec\\x56\\x5d\\xb3\\xd3\\x3f\\x77\\xe4\\x7b\\x78\\x2d\\x15\\x6e\\x7d\\x42\\xe2\\xac\\xef\\x1d\\xf9\\x35\\xc2\\xa7\\x6d\\x4c\\x6c\\x8d\\x4f\\x7f\\xef\\xc8\\x17\\x39\\xa9\\xf5\\x02\\x27\\xed\\x92\\x57\\xd7\\x2b\\x6b\\x4c\\xd0\\x37\\xd5\\xec\\x8a\\x4d\\xc4\\x91\\xb3\\x67\\xd6\\x95\\xab\\x5d\\xa2\\xc7\\xe4\\xd9\\x37\\x9e\\x55\\xae\\x3a\\x0c\\x3d\\xfa\\x9d\\x01\\x84\\xdf\\x0d\\x28\\x7d\\x36\\x7a\\x10\\xd0\\x99\\xdc\\xc8\\x18\\x21\\x29\\x89\\x74\\xd5\\x2e\\xab\\x6e\\x80\\x4a\\x52\\x2e\\x1a\\xa5\\xa2\\x90\\xcc\\x86\\x74\\x51\\x72\\xff\\x7b\\x78\\x8f\\x86\\x0e\\x68\\x90\\xb3\\x41\\x08\\x5f\\x01\\xa4\\x47\\xaa\\x49\\xaa\\x4a\\xc9\\xd4\\x79\\xd9\\xe0\\x70\\x22\\xca\\x49\\xd1\\x7e\\x29\\x80\\x47\\xa6\\xfb\\xc3\\x7d\\x6f\\xbf\\x3c\\x95\\x10\\x2f\\x5d\\xc6\\x63\\x59\\x1c\\x08\\xf4\\x05\\x38\\x1c\\x89\\x46\\x12\\xfd\\x43\\xfd\\xa1\\xd0\\x74\\x2c\\x7e\\x90\\x0f\\x4d\\x29\\x85\\x70\\x78\\x48\\x0e\\xf7\\xc7\\x12\\x5a\\x8c\\x2f\\x68\\x5a\\x3c\\xd6\\xba\\xf7\\x46\\x98\\x58\\xdf\\x2e\\x4f\\xf0\\xc3\\xc1\\xa1\\x05\\x63\\x34\\x12\\xca\\x8f\\xc4\\xe2\\xa7\\x7e\\x78\\x74\\xec\\xe0\\xd4\\x9b\\xdf\\x6c\\x48\\xc1\\x50\\x30\\x18\\xc0\\xc1\\x3e\\x1c\\x08\\x07\\x23\\xa1\\x81\\xe8\\x40\\x69\\xb8\\x4f\\x8d\\x45\\xb3\\x52\\x38\\x12\\x0c\\x47\\x02\\xc1\\xfe\\x41\\x49\\x19\\xea\\xcb\\x8e\\x0b\\x7d\\xc1\\x43\\xa5\\xbb\\xe8\\xeb\\x22\\x0a\\xa0\\x07\\xd0\\x3b\\xf1\\x57\\xf0\\xbb\\xd1\\x01\\xf4\\x43\\x08\\x61\\x7a\\x69\\x7d\\xf3\\xe2\\xae\\x17\\x27\\x02\\xd6\\xa5\\xa2\\x2a\\xbd\\xd7\\xc7\\xc1\\x59\\x45\\x7a\\x8e\\x24\\xea\\xf3\\x0b\\x00\\x5c\\x6a\\x96\\x8d\\x85\\x76\\x74\\x11\\xa0\\x82\\xbf\\x35\\x87\\x71\\x30\\xd0\\x17\\x08\\xe3\\x48\\x64\\x20\\xde\\x3f\\xc4\\x85\\x43\\xd3\\xb1\\xc4\\x01\\x3e\\x34\\x29\\xf2\\x85\\x70\\x98\\x0b\\x8d\\x8c\\x25\\xe3\\xec\\x52\\x13\\xb1\\x4f\\x68\\xa3\\xd2\\x99\\x39\\x32\\x30\\xc8\\x6b\\xb3\\xe9\\x54\\x3e\\x12\\x50\\xd2\\xd1\\xa0\\xb6\\x8f\\x1f\\x51\\x34\\x5c\\x90\\x82\\x7d\\xc1\\x20\\x0e\\xee\\xb8\\xd0\\xe1\\x61\\x7a\\xa5\\xc1\\x40\\x5f\\x78\\x30\\x36\\x0a\\x57\\x9a\\x0c\\x05\\xb3\\x23\\x5a\\x29\\x9e\\x54\\x8a\\xc9\\xfe\\xe8\\xa5\\x82\\x14\\x1a\\x50\\x92\\xe1\\xc8\\x4c\\x22\\x34\\x71\\x9a\\xad\\x96\\x04\\x7c\\x20\\x5c\\x9b\\xb9\\xda\\xcb\\x8f\\xf0\\x65\\x80\\x99\\xa2\\x04\\x64\\x0f\\x82\\x6c\\xb8\\x24\\x80\\x44\\xbb\\x79\\xfb\\xe6\\xcd\\x8b\\x47\\xcd\\xec\\xc8\\xd0\\x57\\x35\\xe2\\x30\\xd2\\xe7\\x17\\x8d\\x63\\x17\\x6e\\xdd\\xfa\\xd8\\x2d\\x92\\x1b\\xe4\\x3f\\xe3\\x38\\x58\\x24\\x60\\x69\\x2d\\xb9\\x7e\\x16\\x8f\\x15\\x63\\x0e\\x58\\x42\\x81\\xff\\x30\\xe8\\x43\\x0e\\x07\\x51\\x42\\x90\\x0d\\x49\\xe2\\x3a\\xc0\\x71\\x1e\\xda\\x01\\x52\\x27\\x7e\\x2b\\x79\\xe5\\xdd\\xf8\\xed\\x99\\xf2\\xfc\\x81\\x8b\\x37\\xf3\\x8b\\xbf\\xa1\\x11\\x67\\x2b\\x9b\\xd5\\xf2\\xb9\\xe4\\x95\\xa5\\xc9\\x62\\x7e\\xdf\\xa1\\x7b\\x0c\\x5b\\xf8\\xad\\xe2\\xd4\\xd2\\x2a\\xae\\xb4\\xde\\x9b\\x29\\xe7\\x6f\\x5d\\x38\\xb4\\x6f\\xf1\\x81\\xec\\xbd\\xff\\x91\\x90\\xb3\\xd9\\x9c\\x71\\xec\\xd0\\xbe\\x5c\\x71\\x6a\\xe9\\x4a\\x32\\x97\\xd7\\x10\\xea\\xef\\xc2\\x42\\x1a\\x44\\x71\\x68\\x59\\x01\\xac\\x56\\x65\\x53\\x16\\x24\\xba\\x11\\xca\\xa6\\x6c\\x08\\xba\\xa2\\xaa\\xde\\x26\\xc8\\xd3\\x05\\xa9\\x0d\\xec\\xf7\\xf3\\x81\\xc0\\x87\\x6f\\xc6\\x82\\xef\\xca\\x67\\x97\\x3e\\x1c\\x08\\x7c\\xf0\\x5d\\xc1\\xd8\\xcd\\xa5\\xec\\x99\\xe5\\x2b\\x57\\xfa\\xe0\\xb9\\x6b\\x86\\x47\\x44\\x8b\\x0f\\x89\\x4b\\x7d\\x23\\x0d\\x71\\x24\\x6c\\x89\\x21\\x7e\\x29\\x39\\xd2\\xfa\\x65\\x7c\\x89\\x2e\\x4a\\xf8\\xad\\x3e\\x1d\\x80\\xb1\\x6a\\xf5\\x53\\xd9\\x39\\xc1\\xec\\xdd\\xb2\\x21\\x79\\x88\\xdf\\x6d\\xb0\\x11\\x53\\x92\\xf9\\x42\\xd3\\xe1\\xd3\\xc4\\xb1\\x89\\x65\\x69\\x9b\\x7c\\xda\\x86\\x1d\\xac\\x61\\x9b\\xa4\\x79\\xc7\\x01\\x08\\xb3\\x34\\xbf\\x49\\x88\\x65\\xdd\\x45\\xa8\\xcb\\x32\\xe7\\x67\\xc9\\x76\\x23\\x05\\x25\\xd9\\xd0\\x21\\x5b\\x5b\\x36\\x74\\x49\\x66\\x07\\x83\\x1e\\x03\\xba\\x45\\x6c\\x08\\xde\\x69\\x12\\x62\\xdb\\x8e\\xa6\\xd5\\xeb\\xcd\\x66\\xd3\\x71\\xb0\\x05\\x3c\\x29\\x1a\\x71\\x88\\xd6\\x74\\x08\\x40\\x8e\\x6b\\x08\\xc5\\x5c\\xd4\\xeb\\xbd\\x50\\x97\\x5c\\x0c\\x2d\\xc1\\xf0\\xf1\\xa0\\xfb\\x58\\x5c\\x64\\x1f\\x17\\x86\\xc7\\xf0\\x82\\x1d\\xdb\\xb6\\x1b\\x95\\x86\\xdd\\xb0\\xb7\\xed\\x46\\xa5\\xb2\\x6e\\x0b\\xf0\\xc1\\xb6\\x71\\xcd\\x6e\\x7a\\x4b\\xe6\\x7a\\xa5\\x42\\x0f\\x55\\x19\\xc7\\x5b\\x95\\xb1\\x3c\\x76\\xb7\\xa5\\x8d\\xfb\\x5f\\x00\\x1c\\xed\\x5a\\xab\\x5a\\xc3\\xa8\\x55\\x75\\x70\\xcd\\xd9\\xac\\xd5\\x6a\\x35\\x97\\xeb\\x15\\xff\\x0d\\x78\\xad\\xb2\\x54\\x13\\x33\\x5d\\x6e\\xe0\\x92\\xce\\xc9\\x2a\\x27\\xab\\x9d\\x4c\\x5f\\x5d\\x32\\x75\\xa9\\x64\\x4a\\xff\\x61\\xf2\\x38\\x39\\x3e\\x35\\x7c\\x1c\\xf7\\xab\\xd3\\xa5\\x7c\\x5e\\x09\\x08\\x97\\xf6\\x9f\\xba\\x7e\\xfd\\xd4\\x25\\x7d\\x24\\x9d\\x2f\\xe6\\x5b\\x5b\\xa9\\xd1\\x7a\\xa3\\xa1\\x6d\\x34\\xde\\xfd\\xee\\x08\\x59\\xb8\\xf1\\xfe\\x1b\\xd6\\x33\\xcf\\x3c\\x33\\x74\\xfe\\xfc\\x0f\\x00\\x7b\\x32\\x8c\\x04\\x54\\xc0\\xdb\\xf8\\x65\\xb8\\xbe\\x36\\x7f\\x87\\x87\\x5f\\xaa\\x8a\\x1d\\xe8\\x7f\\x43\\xe7\\xe8\\x50\\x72\\xfd\\xbe\\xf8\\x66\\x56\\xc9\\x0a\\x96\\x55\\x05\\xae\\x2b\\x79\\xdc\\xd9\\xb6\\xb6\\xb4\\xaf\\x2a\\x59\\xe5\\xe9\\x71\\x25\\xfb\\x35\\xf2\\x1e\\xfe\\x90\\x6c\\xac\\xac\\x18\\xf2\\x21\\xfe\\x0d\\x0d\\x42\\xee\\x2e\\x2f\\x5f\\x56\\xb3\\x2a\\xf3\\x29\\xd3\\xfa\\xfe\\xd2\\x45\\x02\\xea\\xf6\\x29\\x9b\\x12\\x5d\\xb6\\x05\\xef\\xa9\\x08\\xe9\\x82\\xcc\\x99\\x12\\x97\\xf0\\x7c\\xca\\x82\\x6c\\x98\\x9c\\x6a\\x9e\\x55\\xb2\\xca\\x8f\\x6a\\x67\\xdc\\x0c\\x2b\\xcb\\x5a\\xcc\\x2a\\xd9\\x2c\\x1c\\xdb\\xb0\\xde\\x9e\\x55\\xb2\\x8f\\xa9\\x59\\xd5\\x58\\x5e\\xc6\\xeb\\xcc\\x1d\\x41\\x9e\\x1c\\x57\\xb2\\x78\\x45\\xc9\\x2a\\xc6\\xf2\\xf2\\xb7\\x08\\x79\\x5b\\x56\\xc9\\x76\\x33\\xe4\\x25\\x21\\x96\\xc2\\x90\\x05\\x73\\xef\\xf4\\xf5\\x7a\\xd5\\x28\\xef\\xcc\\x5d\\x47\\xf5\\x7a\\xfe\\xc5\\x5d\\x13\\xd7\\x3b\\xe8\\x0a\\x4c\\xc3\\xa4\\x7a\\x61\\xa9\\xa7\\xf4\\x2a\\x55\\x30\\xcb\\x78\\x60\\x24\\x93\\x19\\xa1\\xf2\\x5b\\x66\\xa4\\xe6\\xac\\x59\\x2f\\x65\\x46\\x5a\\x5b\\x23\\x19\\x2a\\x1e\\x8e\\x64\\xd0\\x90\\xaf\\x1c\\xf6\\x2c\\x8c\\xa2\\x31\\xf0\\x23\\x4e\\xa1\\x19\\xb4\\x1f\\x95\\xd1\\x21\\xb4\\x04\\xa3\\x8c\\x53\\x55\\xd6\\xd8\\x84\\xe7\\xb1\\x15\\xe4\\x85\\x32\\x76\\x7d\\xcc\\x21\\x08\\xac\\x15\\xd9\\x13\\x49\\x9f\\x93\\x44\\x32\\x2c\\x1b\\x86\\xfb\\x88\\x5a\\xcd\\xe3\\x86\\xba\\x86\\x09\\xbd\\x90\\x8a\\xcb\\x3d\\x90\\xc1\\x8b\\x9a\\xa6\\x69\\xad\\x4d\\x42\\x70\\x7d\\x24\\x43\\xc0\\xa1\\xbb\\x95\\x19\\x01\\x10\\x98\\xd7\\x9c\\x98\\x7d\\x7d\\x33\\xcd\\x33\\xca\\x27\\x32\\x92\\x69\\xd5\\x09\\xa6\\x4f\\xb3\\x93\\x19\\xa1\\xcf\\x33\\xbd\\x00\\xb2\\xa9\\x11\\x82\\x86\\x7b\\xb8\\x89\\x47\\x20\\x9a\\x93\\x5e\\x81\\x8a\\xa6\\xd1\\x3e\\xb4\\x80\\x0e\\xa2\\x23\\xe8\\x28\\x63\\xd8\\xd1\\xbd\\xbb\\x0c\\x2d\\x77\\x49\\xb7\\x82\\xee\\x5f\\x82\\x41\\xc0\\x83\\xf3\\xbc\\x4d\\xca\\x45\\x2f\\xc2\\x74\\xfd\\x20\\x35\\x60\\x5e\\x22\\x24\\x83\\x6f\\x80\\x0f\\xb9\\x49\\x08\\x9f\\xde\\x6a\\x42\\xd3\\x1d\\xaf\\xe5\\xb8\\xe1\\x12\\xd9\\xd4\\x59\\xab\\x81\\xc8\\xa4\\xe5\\x72\\xb8\\xb4\\x9a\\x69\\xde\\x76\\x30\\x5c\\x04\\x81\\xe3\\x70\\x19\\x9a\\xcd\\x2c\\xaf\\x1d\\xfc\\x46\\x9f\\xbc\\xd4\\x7b\\x53\\xff\\xd9\\x07\\xae\\x5f\\xff\\xc0\\x75\\x5c\\xed\\x08\\xe5\\x2c\\x3d\\xf1\\xbb\\xdd\\xf6\\x57\\x0e\\x9d\\x45\\x05\\xfc\\x2b\\xee\\x93\\xe0\\x63\\x1a\\x32\\x55\\x53\\x0a\\xd2\\x27\\x8c\\x53\\x4d\\x4e\\x36\\xf4\\x84\\xc4\\xa9\\xaa\\x8b\\x25\\xbc\\x9e\\x55\\xb2\\xc7\\xb3\\x4a\\x16\\x1f\\xcb\\x2a\\xd9\\xb7\\x69\\xda\\x8f\\x66\\x95\\xec\\x7b\\x35\\xcd\\xc1\\x5a\\x25\\xa7\\x64\\xf1\\x44\\x56\\xc9\\xb6\\xfe\\xdf\\xac\\x9a\\x7d\\x6a\\x19\\xbf\\x2e\\xab\\x64\\x5f\\xb3\\x7c\\xc7\\x71\\x7c\\xac\\x1e\\x23\\x28\\x85\\x4a\\x68\\xff\\x2e\\x99\\x13\\x92\\x17\\xbc\\x1a\\x64\\xb4\\x9b\\x2a\\xa7\\xce\\x97\\x83\\xa6\\x54\\xa4\\x93\\x95\\xaa\\x8b\\x62\\x9d\\x76\\xcf\\x66\\x3c\\x45\\x08\\xd9\\x74\\x1c\\x3e\\xfd\\x2e\\xc6\\xba\\x69\\x8c\\xdf\\x17\\xec\\x7f\\x1d\\xdd\\x04\\xd9\\x81\\x3a\\x21\\x6c\\xd5\\xd8\\x72\\x48\\x2a\\xee\\x60\\xf2\\xe3\\x0f\\x1f\\x5e\\x4b\\x8d\\xdd\\x87\\x5b\\x1e\\x41\\xa7\\x4f\\xa2\\xee\\x47\\x23\\x68\\x02\\x4d\\x43\\x74\\xdd\\xbc\\x28\\xe8\\x0b\\x8a\\x2c\\x04\\x3c\\xb3\\x9d\\x2e\\x74\\xab\\x05\\xc2\\xbc\\xa8\\x1a\\xcc\\xa3\\x10\\x70\\x4d\\x1e\\xd8\\x8e\\xa7\\xc6\\xb4\\xf1\\x1f\\x05\\x2d\\x78\\x6b\\xdd\\xa7\\x2c\\xc4\\x53\\xa2\\xb1\\x32\\xb6\\xf8\\x15\\x30\\x7f\\x60\\x27\\x15\\x1f\\xd7\\xc6\\x5a\\xdb\\x4b\\xf4\\xc4\\x9f\\xda\\x66\\xb8\\x37\\x7c\\x9a\\x58\\xa9\\x37\\x8c\\xad\\x18\\x53\\x8b\\xad\\xbb\\x87\\x26\\x27\\x0f\\xa9\\xd0\\x53\\x04\\x22\\x5e\\x22\\x88\\x07\\x2b\\x05\\xa0\\x06\\x83\\x01\\xb1\\xd8\\x41\\xd6\\xa0\\xfd\\xe5\\x33\\xc3\\x1c\\x09\\xea\\x6d\\xf3\\xf5\\x37\\x26\\xc7\\xc6\\x27\\x27\\x0f\\x0d\\xd3\\x8a\\x96\\x88\\x55\\x53\\x8f\\xc3\\x30\\xa8\\xd3\\xca\\x2c\\x62\\xfd\\xd3\\x43\\x93\\x93\\xe3\\x63\\x93\\x0a\\x34\\xe4\\xdd\\xb0\\xc0\\x32\\x54\\xfe\\x2d\\x87\\xe1\\x70\\xf4\\x22\\x9c\\x4e\\x22\\x84\\x5d\\x7c\\x0a\\xce\\xc3\\xa9\\xd8\\xd3\\xc2\\xfc\\xc8\\xf4\\x74\\x32\\x39\\x3d\\x9d\\xbc\\xb1\\xb8\\x98\\x49\\x2f\\x2e\\xa6\\xeb\\xbb\\x5a\\x9c\\x31\\x9c\\x93\\x9c\\x4e\\xa7\\x33\\x70\\x1e\\xcc\\x64\\xae\\x36\\x65\\xd1\\x7f\\x7e\\x0d\\x97\\xb6\\xa1\\x08\\x4c\\xbe\\x9c\\xaa\\x9a\\xa6\\x04\\x1b\\x89\\x93\\xba\\x6f\\x8e\\x20\\xf3\\x05\\x9c\\x39\\x74\\x28\\x43\\xff\\xaa\\xac\\xf8\\x69\\x49\\xf3\\x3c\\x48\\x8d\\x06\\x26\\x38\\x93\\x61\\x27\\x68\\xd3\\x6e\\xfd\\x0d\\xef\\x59\\x20\\xad\\x2d\\x1f\\xfb\\x6f\\x9f\\x3b\\x3f\\xb0\\x19\\xad\\x77\\x3e\\x96\\x75\\x5e\\x0e\\xea\\xbc\\xbc\\xdd\\x3c\\x5e\\x56\\x5e\\x8c\\x0c\\x0e\\x46\\xee\\x82\\x9e\\xb6\\x0e\\xee\\xcc\\xda\\xd5\\xe3\\xb3\\xbf\\x1a\\x73\\x0f\\x51\\x05\\x8e\\x2a\\xe0\\xad\\xad\\x36\\xe2\\xc7\\x36\\x0a\\xc1\\x5c\\xcc\\xb0\\x90\\xa1\\x68\\x8e\\x53\\x5d\\x00\\xdb\\x46\\xf6\\x85\\xb3\\x59\\xda\\x9e\\xc4\\x67\\x3f\\x9b\\x48\\xf3\\x75\\xf8\\xbc\\x95\\xe6\\x5b\\xff\\x8f\\x30\\xf4\\xd8\\x63\\x43\\x02\\x4e\\x42\\x8e\\x08\\x1d\\xbb\\xbf\\x0f\\xd8\\x27\\x69\\x57\\xd7\\x64\\x0e\\x13\\xdd\\x14\\xb9\\xb6\\x97\\xba\\x3c\\x2f\\x61\\x72\\xe6\\x4c\\x35\\x12\\xd3\\x2a\\xff\\x78\\x68\\xa8\\x11\\x8e\\x87\\x1b\\xe1\\x30\\x7d\\x7b\\xe9\\xcc\\x8a\\x31\\x18\\xb1\\xad\\xe1\\x91\\x21\\xf7\\x48\\x23\\x1c\\xa6\\xeb\\x30\\xc3\\x41\\x7e\\x19\\x7a\\xbc\\x04\\xbc\\x94\\x47\\x76\\x7a\\xe0\\x55\\x98\\xf7\\xda\\x1a\\xba\\x24\\xea\\x42\\x51\\x55\\x03\\xbd\\x7e\\x7f\\xcf\\x16\\xf5\\xd6\\xa5\\xe9\\xe9\\x25\\x32\\x7e\\x75\\x69\\xe9\\xea\\x91\\x13\\x73\\xda\\x89\\x58\\xec\\x70\\xbf\\x98\\x18\\x9e\\xca\\x4f\\x2f\\xcf\\xf0\\xbf\\xbd\\x44\\xc8\\xd2\\x74\\xf6\\xea\\x91\\x23\\x57\\x97\\xf0\\x83\\x10\\xe5\\xb2\\x42\\xe8\\x0f\\x9e\\x5b\\xa2\\xc7\\x7e\\x68\\xff\\x7b\\xd6\\x0f\\xf7\\x8b\\xf1\\xd8\\xe1\\x58\\x6c\\x2a\\x4f\\x66\\xf8\\xd6\\x5f\\xfb\\xbe\\xfd\\xaa\\xcb\\x55\\xd9\\xe7\\xe2\\xd6\\x7b\\x3e\\xfe\\xfd\\x2c\\xb6\\x48\\xdc\\x81\\x46\\xe3\\xc2\\x0f\\x72\\x6d\\xe4\\x9c\\x0e\\xaf\\x8a\\x82\\x9d\\xbb\\xe8\\x9b\\xe0\\x55\\xf8\\x45\\xd8\\x92\\xd5\\x4f\\xae\\x8a\\xb1\\x88\\x10\\x19\\xdc\\x1c\\x8c\\x08\\x91\\x98\\x88\\x85\\x6a\\xd5\\xf1\\x69\\xca\\xc1\\xa6\\x5e\\x2c\\xea\\xcd\\xb1\\xa4\\x42\\x6f\\xb4\\x28\\xd2\\xad\\x92\\xec\\xd8\\xec\\x6a\\x6e\\x6b\\x66\\xa8\\xbc\\xa6\\xca\\xbd\\xad\\x29\\x49\\xed\\xba\\x0b\\xed\\x3d\\xb3\\xac\\xeb\\xf3\\x55\\xac\\xe5\\xef\\xfc\\x3e\\xd4\\xf2\\x7f\\x33\\x8a\\x9a\\xa9\\xe9\\x58\\x44\\x8c\\xc4\\xee\\x22\\x78\\x9b\\x0e\\xa7\\xee\\xa4\\xb0\\xb0\\xf6\\x35\\x5f\\x63\\xbe\\xe2\\xd4\\x3b\\xad\\xa8\\x3b\\x02\\x0a\\xa2\\xd2\\xdd\\x16\\xfe\\x3d\\x88\\x07\\x2b\\x22\\x83\\xae\\x6c\\xa6\\x64\\x60\\x55\\x31\\xcd\\x36\\xc2\\x1f\\xed\\x0c\\x49\\xe4\\x38\\xb9\\xa8\\x86\\x8b\\x6a\\x18\\x56\\xe7\\xa2\\x1a\\x56\\x19\\x55\\x85\\x29\\xce\\x9b\\xa2\\xe3\\x38\\xad\\x6f\\x4d\\x72\\x42\\x26\\xcd\\x5b\\x8e\\xc5\\xa7\\x33\\x02\\x37\\x89\\xf7\\x97\\x4a\\x6b\\xa5\\xd2\\x7e\\x5c\\xd1\\xb4\\x99\\x29\\xdb\\x9e\\x9a\\xd1\\xb4\\xd9\\x49\\xf5\\x41\\x75\\x12\\x3b\\xb6\\xa6\\xd9\\xad\\xed\\x0f\\x24\\xb9\\xc8\\xc3\\x0c\\x93\\xe6\\xe1\\x08\\x97\\xfc\\x00\\x8b\\xa6\\x12\\xa6\\xa7\\x05\\x32\\x96\\xc9\\x8c\\x21\\x40\\xf3\\xea\\xdc\\x31\\xaa\\xf9\\x4f\\x31\\xd9\\x47\\xec\\x20\\x07\\xb5\\xf7\\x3d\\x1f\\x9d\\x24\\x14\\x0c\\x13\\x2c\\x4f\\xd8\\xa9\\x1e\\x81\\x9b\\x64\\x57\\xc1\\x11\\x12\\x9f\\xf9\\xe4\\xea\\x74\\x2e\\x7f\\x17\\xe5\\x73\\xd3\\x9d\\xdb\\xf4\\xc3\\xde\\x0e\\x9e\\x29\\xea\\x2f\\xe5\\x48\\x7e\\x60\\x20\\x4f\\x72\\x2f\\xe9\\x2e\\x73\\x41\\xdd\\xc5\\xfb\\x1b\\xef\\x1e\\x2d\\xed\\x51\\xd2\\xae\\x90\\x8e\\x0c\\x16\\x9f\\xe5\\xac\\xfa\\xea\\x21\\xeb\\xeb\\x1b\\x10\\xc0\\x12\\x7e\\x59\\x97\\x65\\xfd\\x65\\xb7\\x82\\xbf\\xe7\\x6b\\x0b\\x00\\xc6\\x6e\\x0d\\xbf\\x0c\\x38\\x2a\\x28\\x11\\xd4\\x4d\\x80\\x1a\\x35\\x45\\xdd\\xa0\\xf3\\x82\\x5c\\x0c\\xcb\\x9c\\xa0\\x1b\\xa6\\x17\\x9d\\xf6\\x8d\\xc3\\x33\\xea\\x34\\x99\\x19\\x9c\\x3d\\xb5\\x34\\x2e\\x0e\\x0b\\xc1\\x81\\xe0\\xa3\\x44\\x59\\x63\\xb4\\xb1\\xc7\\x5a\\xff\\xb6\\x4e\\x9c\\xdb\\xc4\\x32\\xb4\\x85\\xa2\\x10\\x98\\xbb\\x7e\\x7a\\xf8\\x5e\\xf7\\x99\\x63\\x73\\x50\\x03\\x37\\x11\\x42\\x02\\x42\\x09\\x49\\x15\\x24\\x41\\xe5\\x0c\\xd3\\xa0\\x7f\\xac\\x0b\\xa5\\xdf\\xfd\\xe3\\x3a\\x59\\x39\\xa3\\x6d\\x6e\\x26\\xd2\\x89\\x3a\\xb6\\x6a\\xc6\\xe3\\xf9\\xbc\\x20\\xe4\\xf3\\x8f\\x1b\\x5a\\xf5\\xf1\\xc1\\x44\\x62\\xf0\\xf1\\x2a\\x6a\\x7b\\xad\\x6a\\x68\\x08\\x90\\x01\\x98\\xb6\\x58\\x00\\x81\\x51\\x37\\xda\\xf0\\x35\\x35\\x59\\x07\\x16\\x84\\xfa\\x61\\x06\\x18\\x5a\\xd5\\xe5\\x86\\x65\\x61\\xab\\xb1\\xe1\\x80\\xb9\\x19\\xe6\\xd7\\x65\\x17\\x51\\x69\\x10\\xa1\\x92\\xa2\\xa8\\xa6\\x14\\x0e\\x73\\x80\\x5c\\x8a\\x51\\xe4\\x43\\x4a\\xa3\\xa1\\x7c\\x30\\xfa\\x51\\xb9\\xd1\\x90\\xeb\\xdc\\xad\\xf1\\x5a\\x6d\\xfc\\xe6\\xf2\\xdb\\x33\\xb5\\x5a\\x86\\xad\\x77\\xcb\\xa0\\xb3\\x0e\\xc3\\xcc\\x0f\\xbc\\x13\\x9c\\x6a\\x4a\\xa6\\xca\\xd1\\x72\\xd4\\x50\\x98\\x53\\xcd\\x84\\x6a\\x4a\\x27\\xf1\\x3f\\xcc\\x5c\\x5c\\x6f\\xc8\\x1f\\x5d\\xc9\\xce\\x44\\x3e\\xa4\\x9c\\xb8\\x8a\\x6b\\x99\\xc5\\x4f\\x2d\\xfd\\x42\\x2e\\x95\\xc3\\xdb\\xad\\x9b\\x99\\xfb\\x2e\\xd5\\x32\\x6f\\x5f\\xcc\\x16\\xb9\\x5b\\xe3\\xe5\\xab\\x1f\\x14\\x66\\x3f\\xb5\\xaf\\xb5\\x9d\\x4b\\x64\\xdd\\xb8\\x09\\xda\\xba\\x24\\x42\\xa5\\xdd\\x3a\\x0b\\x37\\x7c\\x9d\\x55\\xdf\\xad\\xab\\x82\\x5d\\x91\\x39\\xfa\\x2b\\xe4\\xb9\\x74\\xa2\\xeb\\x5d\\xcd\\xb8\\x93\\xa8\\xc4\\x62\\x74\\x3a\\x38\\xe1\\x1b\\xc4\\xb6\\x60\\xea\\xd0\\xbc\\x1d\\x37\\x5a\\x27\\x15\\xbf\\x8b\\x3c\\xdc\\xf0\\xd6\\x1d\\x51\\x73\\x49\\xea\\xdb\\x3b\\x7e\\x2f\\x59\\x04\\xb2\\x6e\\x54\\x26\\x1c\\x70\\x66\\x39\\x29\\xb6\\xd7\\x66\\x63\\x1e\\x2c\\x1f\\x6d\\xf0\\xd2\\x22\\x3e\\x2b\\x9d\\xbc\\x5a\\x28\\xbc\\xe6\\x94\\x74\\xb6\\x9e\\xe2\\x99\\x70\\x10\\x1f\\xa5\\x7b\\xb8\\xc2\\xa7\\xf8\\x8f\\x5c\\x39\\x14\\xba\\xff\\xfe\\xd0\\xa1\\x2b\\xfb\\x4f\\x16\\xd3\\x2c\\x21\\x34\\x15\\xe7\\xdd\\x3d\\xd4\\x95\\xad\\x3a\\x8c\\x50\\x42\\x37\\x0b\\x05\\xce\\x75\\x37\\xab\\x46\\xe1\\xe3\\x5f\\x51\\x5a\\xff\\x15\\x9f\\xaa\\x57\\xef\\xa2\\x6a\\x1d\\x3b\\xb8\\xaa\\x35\\xd6\\x09\\x59\\x6f\\xb8\\x32\\x4d\\x07\\x09\\x3b\\xc5\\xb0\\x7e\\x79\\x7f\\x8c\\x5c\\x7b\\x1a\\x06\\x82\\x0d\\xda\\x39\\x64\\x5e\\x76\\x64\\xdd\\x22\\x04\\x53\\x2d\\x33\\x15\\xb7\\xe2\\xa3\\x96\\xac\\xeb\\x72\\x13\\xe2\\xa9\\xe9\\x6a\\xfe\\x9d\\xf6\\x2c\\x7f\\x00\\xdd\\x83\\xce\\x83\\x8e\\xf5\\x3f\\x31\\xd7\\x2b\\x4c\\xad\\x35\\x45\\x21\\x29\\xee\\xba\\xfb\\x7d\\x17\\x03\\x6e\\xf4\\xce\\xe8\\x76\\x3a\\x31\\xd2\\xdf\\x9f\\x7f\\x60\\x2c\\x4e\\xdf\\x56\\xd9\\xa7\\xed\\xb5\\x97\\xd8\\x04\\x02\\xaf\\x7f\\xe9\\x6c\\x02\\x9e\\x01\\xa0\\x1a\\x6c\\x3a\\xa2\\x96\\x18\\x8c\\x8c\\x47\\xa3\\x25\\x81\\x8e\\xad\\x1d\\x7b\\x7e\\x09\\x10\\xb4\\xe5\\x0e\\x43\\xbd\\x0e\\xd8\\x0b\\x30\\xa6\\x0c\\xd9\\x00\\x53\\x28\\xe0\\x8b\\x19\\x05\\x6c\\x0b\\x82\\x48\\x6c\\x4b\\xd3\\x2c\\xd2\\xb4\\x36\\x2b\\x9b\\x16\\xd6\\x30\\xaa\\x32\\x38\\x62\\x51\\xb0\\x04\\xd1\\x6a\\xdd\\xa9\\x54\\xb0\\x68\\x81\\x6c\\xc7\\x9e\\x86\\x20\\x1a\\x82\\x88\\x05\\xb3\\x20\\x89\\x30\\x52\\x54\\x35\\x2c\\x24\\x83\\x85\\x60\\x18\\xba\\x49\\xc5\\xcf\\x44\\x5a\\x2f\\x47\\x7e\\x78\\x41\\xc9\\x8f\\x8c\\x58\\x0e\\x76\\x48\\x60\\x74\\x64\\x6b\\x64\\x34\\x80\\xed\\x4a\\xe5\\x8e\\x92\\x4e\\x1c\\x4a\\x24\\x4e\\x93\\x34\\x3e\\xde\\x7a\\xfb\\x88\\x20\\x8c\\x74\\xdb\\x00\\xf7\\x23\\x93\\xca\\x2f\\xc8\\x8d\\xe4\\xe3\\x16\\x4c\\x97\\x17\\xc4\\x7d\\xe4\\x98\\x50\\xcd\\xb9\\xf8\\x23\\x2e\\xad\\x35\\xd5\\x35\\xa4\\xa2\\x42\\x85\\xfc\\x85\\xb2\\x9e\\x0c\\x63\\x71\\x3a\\x97\\x9b\\xce\\x7d\\x29\\x97\\xcb\\x8b\\xc3\\xc3\\xb9\\xe9\\xdc\\xf0\\xb0\\x98\\xa7\\x1f\\xf8\\xc1\\xdc\\x74\\x6e\\x90\\x17\\xf3\\xcf\\x5e\\xbc\\x79\\xf1\\xe6\\xcd\\x8b\\x37\\xf1\\xfb\\x00\\x57\\xf2\\x64\\x61\\x78\\xb8\\x20\\xe6\\xa3\\x7d\\x62\\x3e\\x2f\\xf6\\x45\\xf3\\x22\\x7c\\xce\\x45\\xfa\\xc4\\x5c\\x4e\\xec\\x8b\\xe4\\xfe\\xcb\\xad\\x0b\\xb7\\x2e\\x5c\\xb8\\x75\\xe1\\x96\\xbb\\x0e\\xbd\\xe8\\x5a\\xb3\\x8c\\x4e\\x14\\x01\\x07\\x68\\xa5\\x1e\\xd1\\x36\\xed\\x5e\\x1f\\xac\\x85\\xe0\\xf2\\x8f\\x79\\x86\\x46\\x13\\x3f\\x01\\x8e\\x91\\xaa\\x83\\x15\\xda\\xbe\\xfc\\x16\\xe4\\x75\\x0b\\x7c\\x3a\\x16\\x8f\\x45\\x62\\x62\\xae\\x38\\x23\\x61\\xc2\\x60\\x84\\xd6\\xd7\\x17\\x87\\xa5\\x97\\x00\\xe1\\xf1\\x36\\x86\\x47\\xaa\\x96\\xe6\\xd7\\xe8\\x53\\xff\\x91\\xbe\\x9c\\x38\\x31\\x34\\x23\\x32\\xff\\x1f\\x71\\xe7\\x51\\xc0\\xba\\xf0\\x22\\x38\\xb1\\x2e\\x15\\xa0\\xc3\\xb8\\xb0\\x2c\\x73\\x5c\\x52\\xd7\\x41\\xd1\\x5f\\x30\\x4d\\x55\\x6e\\x7b\\x1b\\x58\\x98\\x67\\xab\\x79\\x32\\x89\\x0f\\x47\\x62\\xc1\\xb3\\xb1\\xd4\\xc7\\x13\\x38\\xf4\\xdf\\xa8\\x82\\x11\\x1a\\x3f\\x47\\x58\\x20\\x33\\xc3\\x00\\xc1\\x8f\\x6a\\x83\\x91\\x50\\xe8\\x39\\x51\\x0e\\x86\\x48\\x9a\\x8f\\x46\\x8d\\x17\\x5a\\x4d\\x16\\xb7\\xdc\\x79\\xca\\x3d\\x26\\xb4\\x3d\\xb1\\xfd\\xb0\\x63\\x57\\x6c\\xbb\\xb2\\xde\\x71\\x71\\x35\\xe9\\x67\\xdb\\xde\\xee\\xc9\\xab\\xfe\\xc1\\xac\\x32\\xa1\\xb6\\xaf\\x9d\\x79\\x2c\\x54\\x2a\\xdf\\xb5\\xbd\\x16\\xee\\x48\\xf3\\xf3\\x40\\x74\\xcd\\xcd\\x26\\xed\\x25\\x86\\x1d\\xc4\\xe0\\xd8\\x74\\xd8\\xd6\\xe8\\x3c\\xcb\\x66\\xdb\\xe3\\x4f\\xa6\\xe6\\x4f\\xda\\xa0\\xab\\xe3\\x01\\x1f\\x58\\x9b\\xe9\\xcd\\xd7\\x74\\xee\\x6e\\xfd\\xfa\\xdb\\x52\\xa7\\xe6\\xa1\\x97\\x72\\xee\\x9d\\xe2\\xe9\\x38\\x67\\x17\\xc1\\x41\\xbc\\xa0\\x22\\x1b\\xf3\\x2e\\xf4\\xa0\\x75\\xf1\\xe6\\xa3\\xf7\\xdd\\xf7\\xe8\\x4d\\x6c\\xc3\\x35\\xdc\\x5a\\xb9\\x73\\xf6\\xec\\x9d\\xf6\\x33\\xb8\\x0d\\x1e\\x4b\\x15\\xae\\xc2\\x90\\x61\\xc8\\xc9\\xc9\\x32\\xc4\\x39\\x4a\\xbd\\x7e\\x31\\x78\\x6e\\xbe\\xb5\\xba\\x4c\\x94\\x05\\x85\\xbc\\x77\\x41\\x71\\x7c\\xe1\\x57\\xda\\xf2\\xea\\xf2\\xf6\\xd2\\x74\\x5a\\x51\\xd2\\xd3\\x3f\\xa5\\xa4\\xd3\\x69\\x4f\\xad\\xa4\\x3a\\xdd\\xf4\\xf2\\xf2\\x34\\xa0\\xdf\\x7a\\xfc\\x52\\x1d\\x6b\\x03\\xe9\\x8e\\xe5\\xf6\\x83\\xa6\\x63\\x77\\x76\\x61\\x33\\x0c\\x4b\\x14\\xc0\\x2c\\x42\\x7f\\x93\\xc5\\xee\\x23\\x6f\\x77\\x93\\xf1\\x07\\x7b\\x74\\xc1\\x6c\\x07\\x33\\xde\\x24\\x98\\xce\\x09\\xea\\x8a\\x6b\\x01\\xbf\\xb6\\xe7\\x75\\x4c\\xba\\x4a\\x93\\x9b\\x90\\x26\\xb1\\xb8\\x1c\\xfc\\x58\\x2c\\xb6\\x11\\x9b\\x88\\x35\\x62\\x29\\x7e\\x23\\x1e\\xc3\\x55\\x10\\xb8\\x1e\\x8f\\x4d\\xc4\\x36\\x62\\xb1\\x46\\x2c\\xbe\\xc1\\xa7\\x62\\x20\\x6f\\xb1\\x9c\\x7f\\xb8\\x07\\xd8\\xe5\\x51\\x35\\x5d\\x2e\\x2c\\x99\\xc7\\x69\\x88\\xe3\\xb2\\x8c\\x95\\x15\\xc3\\xb2\\xb1\\x90\\x2e\\xa6\\x2b\\xf5\\x95\\xf5\\x15\\x07\\x3b\\x9d\\xd5\\x6c\\x9b\\x31\\xf3\\x75\\x8d\\x73\\x81\\x93\\x18\\x5f\\x60\\xc1\\x94\\x38\\x6c\\x03\\x0e\\x46\\x9d\\xf1\\x74\\xe3\\xe1\\xdc\\xfc\\xa8\\x4b\\xef\\xd1\\xd0\\x1c\\x87\\x10\\xc7\\xd1\\x2a\\x89\\x7b\\x7c\\xb8\\xa5\\x63\\x08\\x25\\x44\\xc9\\x2c\\x4b\\xa2\\xb7\\xf4\\xc3\\x9a\\x02\\xb3\\x48\\x52\\x12\\xb9\\x9f\\xd8\\xf7\\xda\\xb9\\x68\\x6c\\x62\\x92\\x3e\\xfb\\x1b\\xcd\\x58\\x64\\x25\\x12\\x8b\\xf5\\x45\\x70\\xfa\\xb5\\xfb\\xe6\\xa2\\xa1\\x18\\x7c\\x6e\\x6e\\xd0\\x2f\\x27\\x27\\x06\\x23\\xbe\\xf9\\x9a\\xb1\\x86\\xb4\\x47\\xbc\\xe2\\xe2\\xab\\x2a\\xf3\\x52\\x30\\xc8\\x20\\x66\\x2c\\x10\\x8a\\x8b\\xdf\\x3e\\xd7\\x68\\x34\\xe0\\x69\\x7e\\x01\\x9e\\x79\\xcb\\x6e\\xd5\\xb1\\xfd\\xf7\\x24\\x33\\x78\\x75\\x42\\xb4\\x22\\x36\\x38\\x55\\x90\\x76\\xcc\\x23\\x75\\xfa\\xcf\\x9f\\x0c\\x40\\xaa\\x55\\xb2\\xde\\xe5\\xe7\\x05\\xfc\\x02\\x4f\\x86\\xa0\\xe3\\x77\\x1c\\xd8\\x05\\x8c\\x3e\\xdf\\xbc\\x6d\\xb2\\x48\\x35\\x37\\x6e\\x0d\\xb2\\xdf\\xd8\\x33\\x4c\\x36\\xef\\xa4\\x15\\xfb\\x2e\\xb2\\x95\\x34\\x6e\\xd8\\x76\\x03\\x8e\\x7e\\x62\\x7d\\xfd\\x8e\\x92\\x76\\x6c\\xdb\\x49\\x2b\\x28\\x80\\x0e\\xa1\\x43\\x78\\x0b\\xff\\x0b\\x17\\x57\\x17\\x90\\x65\\x54\\x53\\x29\\x9b\\xe5\\xb2\\x18\\xe6\\xc2\\x61\\x8e\\xea\\xf5\\x12\\x3e\\x92\\x7b\\x3e\\xfb\\xfc\\xf3\\xd9\\x7f\\x13\\xe3\\x53\\xb9\\xb3\\xb3\\x91\\x5c\\xca\\xfa\\xd4\\xd5\\x54\\x6a\\x03\\x47\\xdd\\xe3\\xa3\\x56\\x2a\\x17\\x99\\x3d\\x97\\x4b\\x8d\\x64\\xae\\xa6\\x4e\\xa6\\x6a\\xe8\\xef\\x18\\xaf\\xca\\x8b\\x42\\x63\\x3e\\x9a\\xa9\\x8e\\x05\\xc1\\x94\\x05\\xbd\\xaf\\x23\\x13\\x79\\x93\\x0d\\x6c\\x5d\\xf8\\xf3\\xb7\\x80\\xbc\\x62\\x19\\xaf\\x6b\\x7d\\x8a\\x85\\xf8\\xad\\x58\\x74\\xb2\\xa1\\xb3\\x2f\\xf0\\xcc\\x3c\\x0e\\x0f\\xe1\\x67\\x8d\\xf7\\xc1\\xfb\\xd7\\xed\\x2a\\x9d\\x6f\\xe8\\xdf\\x36\\x9f\\xae\\x74\\xc5\\xcb\\xb8\\x96\\x80\\xff\\x29\\xdd\\x1b\\xb4\\xe2\\x57\\xa1\\x7f\\x1b\\x8e\\xf1\\xfd\\x34\\x70\\x42\\xda\\xf8\\x3e\\x4d\\xcf\\x82\\xb5\\x1b\\x4f\\x50\\x2f\\xda\\xab\\xb3\\x7a\\x71\\xf5\\xa7\\xf7\\x15\\x8b\\xfb\\x8a\\xaf\\xf1\\xf0\\x5e\\xe9\\xba\\x50\\x4f\\x8c\\x97\\x4a\\xe3\\x89\\xff\\x52\\xdc\\x57\\x28\\xec\\x7b\\x63\\x2f\\xe6\\xab\\x5f\\x2a\\x86\\x78\\x5c\\x55\\x48\\xcc\\x33\\xc3\\x12\\xc7\\x15\\x0d\\x7e\\xc1\\x34\\x25\\x13\\x5b\\xce\\x77\\x07\\xfa\\x9f\\x74\\xde\\x12\\x84\\x6d\\xf5\\x7f\\xcc\\xfc\\x0f\\x3c\\x39\\xd0\\xfa\\x52\\x7f\\x60\\x6a\\x66\\x1a\\x0f\\xe0\\x63\\xb0\\xe3\\xcb\\xaa\\x64\\x78\\x63\\x1d\\x1b\\xb3\\x2e\\xc8\\x61\\x8f\\x8c\\x4f\\x36\\xf4\\xb2\\xcb\\xc1\\xe7\\xe5\\x3b\\xb9\\xce\\xd4\\xfb\\xa7\\xa7\\xb9\\xb5\\x7b\\xb4\\x7b\\xd6\\x38\\x6f\\xe7\\xf7\\x18\\xd6\\x15\\x20\\xfc\\x5c\\xf6\\x7f\\x01\\x3b\\x41\\x37\\x53\\x03\\xa3\\x35\\x64\\xe1\\xdb\\x10\\xe3\\x80\\x70\\x82\\x0e\\x7d\\x8c\\x6e\\x0f\\x7f\\xe8\\x43\\xc3\\xb8\\xd9\\x7a\\x6a\\xd8\\xb2\\x86\\x19\\x1a\\x19\\xcb\\xa1\\x0b\\xa2\\x98\\x8b\\xbe\\x53\\x88\\xbb\\x98\\xe3\\x45\\x29\\x19\\xe6\\xb8\\xd9\\x00\\x48\\x77\\x10\\xe4\\xb2\\x9e\\xe6\\xe3\\xa9\\x74\\xf1\\x43\\x56\\x3e\\x3f\\x44\\x4e\\xad\\xac\\xaf\\xd8\\x1a\\x66\\x39\\x56\\x84\\x3c\\x5e\\x2a\\x0d\\x2f\\xbc\\x83\\x18\\x2b\\x2b\\x6d\\xe6\\x0a\\x7a\\x9f\\x46\\x3b\\xeb\\x82\\x42\\xa7\\xca\\xa1\\x00\\xc7\\xcd\\xf6\\x19\\x0b\\x77\\x40\\x0a\\x8c\\xbc\\xe3\\x4a\\x6e\\x9a\\x0c\\x8f\\x84\\x93\\x0b\\x6a\\x1e\\x0f\\xe4\\xe8\\xc1\\xfa\\x95\\xa5\\xdc\\xc5\\x93\\x47\\xe2\\x3c\\x27\\x9d\\x38\\x7a\\x29\\xb7\\xe4\\xf7\\xea\\xd0\\x56\\x32\\x04\\x7a\\x4e\\xd6\\xcd\\xb2\\xaa\\x2a\\x1c\\xd7\\x36\\xd5\\x73\\xec\\x7e\\x3f\\x4e\\xd6\\x8c\\xe7\\xfb\\xfb\\x95\\x7e\\xee\\x79\\x4c\\x58\\xc4\\xbb\\x9d\\xe2\\x9b\\x84\\x3c\\xdf\\xcf\\x29\\x1c\\xf7\\xfc\\x4b\\xcc\\xb3\\x63\\x63\\x87\\xdd\\xe9\\xbf\\xad\\x39\\xa2\\xcf\\x17\\x8d\\x18\\x63\\xd1\\xea\\x2c\\x8e\\xd0\\xcb\\x6a\\x10\\xe6\\xcb\\x3b\\xa4\\x2f\\xe6\\x3c\\x3a\\xb3\\x74\\x85\\xd0\\x95\\xff\\x8e\\x2f\\x88\\xdc\\x59\\xb3\\xf2\\xab\\x4b\\xd3\\xcb\\xd5\\xa3\\x6a\\x5a\\xdb\\x19\\xb1\\xee\\x21\\x31\\xf1\\x5e\\xfc\\x78\\xa9\\x1d\\x66\\x64\\x98\\x05\\x49\\x15\\x0a\\x06\\x46\\x0e\\xb6\\x04\\x62\\x6f\\x09\\x02\\xae\\x08\\x42\\x6b\\xd3\\xb1\\x6d\\xdb\\x71\\x1c\\x87\\x54\\xab\\x75\\xc6\\x45\\xfd\\x6a\\xb2\\x39\\xfa\\xda\\x52\\x47\\x04\\xc5\\x51\\x06\\xdd\\x0b\\x77\\x98\\x3d\\x89\\x6c\\xf5\\x92\\xdd\\xc7\\x11\\x76\\x4c\\x88\\x3b\\xa6\\x9b\\xb6\\x69\\x50\\x61\\xa1\\xcc\\xee\\xa6\\x2d\\x8a\\xd3\\x73\\xfe\\x7c\\x22\\x95\\x82\\x17\\x1d\\x69\\xee\\xdb\\xd6\\xc4\\x98\\x35\\x31\\x36\\x18\\xd9\\x8c\\x0c\\x8e\\x4d\\x58\\xec\\x05\\x9f\\xac\\x89\\x31\\x6c\\xa5\\x79\\x2a\\xc5\\xf1\\xef\\x85\\x55\\xf2\\x3d\\x60\\x4d\\xf9\\x85\\xec\\x4c\\xff\\x68\\x76\\xba\\x3f\\x45\\xa7\\x8e\\x54\\xff\\x74\\x76\\xb4\\x7f\\x26\\x3b\\xda\\x3f\\x9d\\x85\\xb9\\x44\\xcc\\x4e\\xf7\\x8f\\xa2\\x00\\x5a\\x42\\x22\\xd8\\x75\\xd2\\x74\\x26\\x01\\xb4\\x31\\x70\\x52\\xcd\\x77\\x6c\\xb0\\x1c\\x18\\x66\\x3d\\xc3\\xce\\xbf\\xad\\xf5\\x3f\\x52\\x54\\xb5\\x47\\x83\\x03\\x41\\x61\\x58\\x18\\x5f\\x3e\\x35\\x3b\\x38\\x43\\x66\\xee\\x85\\xc5\\xf8\\xe1\\x71\\x22\\x7c\\x76\\xf8\\xde\\xeb\\x73\\x01\\xa1\\xa8\\x13\\xc3\\xd2\\x6e\\x3b\\xda\\x4b\\x4c\\xf4\\xf6\\x3d\\x0d\\x03\\x54\\x8a\\xf0\\xe3\\x6a\\x77\\x3d\\x11\\xae\\x48\\x72\\xb9\\xeb\\x91\\x20\\x0c\\xa9\\x7b\\x73\\x97\\x67\\xa2\\xf3\\x8c\\xc5\\x60\\xdd\\x64\\x4f\\x83\\xc4\\x99\\x2a\\x27\\x94\\xbb\\x0a\\x5e\\x0a\\x87\\x93\\xe1\\xd0\\x70\\xee\\xe2\\xa9\\xdc\\xa9\\x40\\x57\\xf1\\xaf\\x0b\\x85\\x93\\xe1\\x30\\xfb\\x26\\xd7\\xec\\xad\\x04\\xfb\\xb2\\x12\\x10\\x0e\\xca\\xaa\\x6a\\xe0\\xc6\\x27\\x84\\x03\\x3f\\x89\\x1b\\x2d\\xe7\\x27\\x0f\\x08\\xdd\\xad\\xe0\\x69\\x3f\\x96\\xe7\\x4d\\x18\\x08\\x65\\x77\\x30\\x18\\x0b\\x5d\\xd7\\xf8\\xd5\\x37\\x67\\xdb\\xbc\\x6d\\x8f\\xf8\\x5b\\xd2\\x9c\\x4d\\xa4\\x52\\x89\\x4f\\xc1\\x5d\\x8f\\xf3\\xc7\\x7b\\x5b\\xd2\\x79\\x96\\xc2\\x68\\x10\\x25\\x41\\x87\\x11\\x64\\x20\\x2a\\x92\\x0d\\xa0\\x44\\x32\\x74\\x88\\x3e\\xd7\\x81\\x6d\\x08\\x37\\x9c\\xfd\\x4b\\xb9\\x23\\xbf\\xe3\\xec\\x3f\\x92\\x5b\\xba\\xe0\\xdb\\x6f\\xec\\x38\\xc2\\xf6\\xd9\\x8c\\xef\\x49\\x64\\x19\\x84\\xf0\\x42\\x19\\x64\\x65\\x15\\x90\\x07\\x5c\\xde\\x1d\\x17\\xef\\x04\\xdb\\x47\\x35\\xa3\\xbc\\xae\\xcd\\x16\\x8d\\xe2\\x2c\\x84\\xea\\x65\\xcd\\x56\\x65\\xb3\\x5a\\xab\\x15\\xf7\\x07\\x1a\\x8d\\xc0\\xfe\\x22\\x04\\x0d\\x74\\xb4\\xd1\\x10\\x1a\\x64\\xf9\\xed\\xb2\\xc1\\xe9\\xde\\xec\\x6f\\xbe\\x6a\\x7d\\xb4\\x6e\\x13\\x9b\\xfc\\x16\\xe8\\x9b\\x8b\\x7b\\x29\\xa4\\x4e\\xad\\x7a\\x7b\\x05\\x74\\xd2\\xb9\\xef\\xa7\\x90\\x32\\x3f\\xd0\\x36\\xc8\\xc8\\x10\\x8d\\x9d\\x48\\x4a\\x9c\\x2b\\xaa\\x84\\x3d\\x59\\x85\\xa3\\x4f\\x01\\x4b\\x74\\x5c\\xf8\\xee\\xd4\\x37\\x06\\xd3\\xfc\\x47\\x46\\xf2\\x20\\xa4\\x9c\\x5e\\xb0\\x0a\\xb9\\x34\\x5f\\xc3\\xce\\xc1\\xa9\\x6f\\x0c\\xc2\\x0c\\x94\\x3d\\x0f\\x92\\xcd\\x29\\x75\\xe0\\x5d\\x7c\\xfa\\xf1\\x61\\x9f\\x2f\\x50\\x04\\x0e\\x95\\x59\\x54\\x66\\x6b\\xb5\\x97\\x47\\xc3\\x09\\xba\\xa9\\x4b\\xba\\xa1\\xce\\x97\\x83\\xa2\\x28\\xf0\\x05\\x7e\\xa1\\x6c\\x96\\xe7\\x39\\x5d\\x90\\xbd\\x06\\x78\\xa0\\xb8\\xd8\\x39\\xb6\\xb4\\x78\\xa2\\x20\\x8d\\x4e\\xe4\\x0f\\xe7\\xf3\\xa3\\x52\\xa1\\x8f\\xcc\\xb6\\x2a\\xb3\\x84\\xbc\\xf0\\xc5\\x66\\x33\\x0a\\x32\\xdf\\xb3\\xa0\\xd0\\x7d\\xf6\\x79\\x2a\\xb7\\x3c\\x2f\\x15\\x46\\xfb\\xf3\\xf9\\xfe\\xd1\\x02\\x9e\\x1d\\x39\\x3e\\xd3\\xfa\\x13\\x3c\\x3a\\x73\\x7c\\x84\\xaf\\x55\\x75\\x1f\\x4e\\xb7\\xdf\\x5e\\xce\\xb9\\x36\\xe5\\x7d\\x1d\\xa9\\x4a\\xd5\\x0d\\x99\\xf3\\xd9\\x94\\x13\\x6d\\x9b\\x32\\x24\\xa8\\xbb\\x76\\xe5\\xa5\\x00\\xbe\\xc4\\x1c\\x1b\\xd5\\xaa\\xe6\\x9a\\x96\\x9d\\xcb\\xab\\xd3\\xb9\\x3c\\xd1\\xee\\xd3\\xf6\\xe5\\x73\\xd3\\x63\\x86\\x51\\x03\\x51\\xe6\\x1f\\xd8\\xb6\\x6d\\x6f\\x74\\x9b\\x97\\x09\\x01\\x03\\x73\\x66\\x62\\x24\\xdc\\xb5\\x0a\\x0f\\x00\\x02\\x85\\xaf\\x76\\x33\\x19\\x96\\xf5\\x76\\xd5\\x0a\\xe8\\x54\\x26\\x40\\xbd\\xc8\\x9c\\x28\\x0a\\xb8\\xba\\xf5\\x5a\\xa8\\xfb\\xc5\\xf1\\x74\\x80\\x55\\x5d\\x94\\xf2\\xc7\\x17\\xf9\\xd7\\x6f\\x9d\\x1c\\x59\\x3e\\xda\\xac\\x56\\xd7\\xa0\\xe2\\xe1\\x31\\x25\\x1f\\xd5\\xb4\\x68\\x31\\x34\\x21\\xfd\\xca\\x54\\x2e\\x90\\xcf\\xe7\\xf3\\x81\\xac\\x06\\x12\\xb8\\x80\\x9b\\xae\\x7d\\x7b\\x12\\xcd\\xf5\\xda\\xb8\\x15\\x30\\x72\\x73\\x5d\\x36\\xee\\x84\\x01\\x18\\xa5\\xa6\\x2e\\xc8\\x82\\x6a\\xbe\\x7d\\x71\\xa6\\x34\\x4b\\xa6\\x07\\x67\\x4e\\x8d\\xef\\x1f\\x4e\\x0e\\xa4\\x22\\xdc\\x4d\\x4d\\x79\\x08\\xe6\\xc5\\xba\\x61\\x3c\\x6e\\x3c\\xfe\\xb8\\x61\\xb8\\xa6\\xef\\x4f\\x4c\\x5b\\xa6\\x36\\x3e\\x5a\\x4c\\x06\\x67\\xaf\\x9f\\x1a\\x61\\xb6\\xef\\xd6\\x17\\x4a\\x46\\x59\\xc9\\x5f\\xcd\\x97\\x8c\\x32\\x42\\x11\\x1f\\x5e\\x5b\\x6f\\x9c\\x10\\xa0\\x84\\x7a\\x69\\xf7\\x8c\\x89\\x97\\x45\\x03\\x71\\xee\\x93\\x09\\xb9\\xf6\\x76\\xa5\\x52\\xd9\\x02\\xc8\\xaf\\xca\\x16\\xa4\\x25\\x6f\\x55\\xda\\x79\\xc8\\xfe\\x0d\\x46\\x95\\x0a\\x02\\x56\\x6b\\x56\\x5f\\x17\\xb3\\x59\\xbd\\xf5\\x37\\x4f\\x64\\xeb\\xf5\\xec\\x13\\x58\\xd0\\x9e\\xa4\\x3b\\x4f\\x02\\x66\\x40\\x03\\x57\\x21\\x0a\\x04\\x25\\x74\\xae\\xb6\\x55\\xc5\\xa4\\xea\\xd7\\x82\\x03\\x80\\x8b\\x66\\xca\\xed\\x94\\x5a\\x64\\x6f\\x32\\x32\\xd7\\x66\\x65\\xd3\\x8d\\xe6\\xa2\\xa5\\x34\\x71\\x15\\x5b\\xb4\\x14\\xd3\\x94\\x6a\\xd5\\x6a\\xb3\\x5a\\xed\\x6d\\x87\\x4b\\x0e\\xa6\\x62\\x44\\xdb\\xd0\\xfa\\x1b\\xdc\\xf7\\x04\\xd5\\xa7\\xb2\\x4f\\x6a\\x4f\\xfa\\xea\\x03\\x66\\x62\\xaa\\xf1\\x71\\x2a\\x27\\x71\\x92\\x29\\xb5\\x23\\xcf\\xaa\\xe7\\xce\\x65\\xbd\\xd7\\xcf\\x43\\x0b\\xfe\\x89\\xef\\x08\\xb6\\x3c\\xb6\\xdd\\x7b\\x01\\xfb\\xef\\x59\\xc6\\x0a\\x27\\x61\\xd5\\x6c\\xfc\\x61\\xf6\\x2e\\x7a\\x22\\xfb\\x0b\\xec\\xed\\x07\\x92\\xdf\\xe3\\x71\\xfa\\xd6\\x80\\xb7\\xdf\\x95\\xaf\\xe8\\x72\\x8b\\x6b\\x4f\\x3c\\x91\\xf5\\x5e\\xf8\\x09\\xdf\\x87\\x6e\\x3e\\x3a\\x2c\\x31\\xd9\\x95\\x16\\x97\\xc5\\x36\\xbc\\xc1\\x19\\x75\\xec\\xe0\\x7b\\xbd\\x33\\x4c\\x09\\x03\\xab\\xdc\\x35\\x97\\xfa\\x0e\\x70\\x7e\\x59\\xbd\\x1d\\x66\\x15\\x88\\x65\\x63\\x71\\x64\\x74\\x0c\\xc9\\xe3\\x01\\xba\\x8b\\xc9\\x3a\\x5d\\x66\\xd7\\x1b\\xeb\\x96\\xb5\\x8e\\x6b\\xeb\\xd6\\x96\\xb5\\xae\\x6d\\xac\\x6b\\x56\\xc5\\xd2\\xd6\\xf7\\x2c\\x47\\x0f\\x42\\x9c\\x0d\\x94\\x63\\xb0\\xb8\\x35\\x6c\\x5b\\xeb\\x9a\\xb6\\x6e\\x6d\\x6a\\xeb\\xeb\\x1a\\xb6\\xb5\\xf5\\xd6\\xd6\\xba\\x66\\xdd\\xb1\\xd6\\xb5\\x4d\\x6d\\x9d\\x59\\x69\\x3d\\xcc\\xcd\\x0e\\x86\\xa0\\x51\\x10\\x42\\x46\\x41\\xb0\\x80\\x33\\x00\\xfe\\xb0\\x43\\xd6\\x35\\xad\\x0a\\x1a\\x8f\\x8d\\x9a\\xb8\\x8e\\x89\\x17\\xcf\\x1b\\xdf\\x03\\xa1\\x9d\\x99\\x0a\\x3e\\x02\\xdb\\x6f\\x33\\x67\\x13\\x49\\xfb\\x00\\x0f\\xd2\\xcc\\xcb\\x14\\x44\\x4d\\x64\\x63\\xd2\\x46\\x5f\\x40\\x3b\\xe0\\xf9\\xdd\\xfd\\xef\\xf8\\x7e\\x78\\x18\\xb6\\x0c\\x2b\\xe1\\x23\\xb0\\x3d\\xce\\x8a\\xc3\\xa8\\xe2\\x8e\\x59\\xb0\\x38\\x0b\\xb2\\xc9\\x44\\x3f\\x7d\\xbe\\x6c\\xea\\xed\\x88\\x38\\xfc\\xb6\\xf9\\x8d\\x13\\xca\\x82\\xb1\\xb2\\x62\\x68\\xc7\\x06\\xa7\\x87\\x1e\\x5c\\x3c\\x79\\xfd\\xfa\\xc9\\x53\\xec\\xf0\\xca\\xfa\\xca\\x9c\\x72\\xe0\\xf4\\xf5\\x0f\\x5c\\x47\\x01\\xf4\\x31\\x64\\xe3\\x6b\\x60\\x55\\x18\\x60\\x48\\x88\\x92\\x19\\xa4\\x6b\\x3b\\x07\\x83\\xed\\xf8\\xf1\\x4f\\xc2\\x16\\xff\\x04\\xbc\\xb5\\xfe\\x35\\xbc\\x21\\xf8\\x9d\\x85\\xaf\\xb9\\x39\\xbe\\x10\\xe5\\xa6\\x9a\\x26\\x7b\\x8c\\xd1\\xf1\\x2c\\x9c\\x45\\xb7\\xef\\x80\\xed\\xaf\\xc3\\xb6\\xe7\\x79\\x4b\\xd0\\xdf\\xf0\\x32\\xcf\\xd9\\xf5\\x7a\\xee\\x09\\xed\\x49\\xdf\\x63\\xe7\\xe7\\xff\\x88\\xc2\\x08\\xd7\\x0d\\x9d\\x97\\x25\\x4e\\xdd\\xce\\x9e\\xfb\\x75\\xf2\\x9d\\x73\\x59\\x07\\x5b\\xd9\\x73\\x5b\\x77\\xd1\\xb9\\xac\\x03\\xa5\\x5a\\xc0\\x5f\\x1d\\x65\\x4c\\x8c\\x60\\x66\\x53\\x4d\\x5c\\x73\\xb2\\xe7\\xbe\\x43\\x7e\\xfd\\x5c\\xb6\\xe1\\x64\\xcf\\x61\\xb4\\x75\\x2e\\xdb\\xf3\\xc4\\xd3\\xf6\\xf2\\x3a\\x6f\\xd2\\xc7\\xbc\\xd3\\x04\\xdc\\xd7\\xfa\\x9b\\x27\\x5c\\x4e\\xc5\\x67\\x61\\xdc\\x44\\x20\\x97\\x47\\x66\\x2c\\x8f\\x0e\\x21\\x38\\xc2\\x06\\xbd\\x73\\x17\\x65\\xd9\\xb8\\x0f\\xa0\\x27\\x80\\x81\\xd1\\x3d\\xbb\\xc3\\x36\\x88\\x6d\\x42\\xfe\\xa0\\x7d\\xf6\\x1f\\x76\\x9e\\x12\\x01\\xd7\\xf0\\x7f\\x72\\x91\\xd0\\xd5\\x9d\\xac\\x33\\x54\\x52\\x29\\x80\\x24\\x22\\x95\\xe7\\x25\\x53\\xc2\\x2e\\xb5\\x1c\\x36\\x41\\x26\\x79\\x0c\\xb6\\x9f\\x3d\\xd2\\xda\\x3a\\x32\\x13\\xdf\\x9f\\x3f\\x9e\\xdf\\x1f\\x6f\\x7d\\x1b\\x6b\\x54\\x75\\xb5\\x7c\\x04\\x19\\x57\\x66\\x56\\x44\\x71\\x65\\x66\\x86\\xdf\\x3f\\x32\\xb2\\x9f\\x6f\\xfd\\x9e\\x6d\\x2f\\xad\\xae\\xb2\\xec\\x3f\\x26\\x77\\x05\\x50\\x08\\x22\\x50\\x0b\\xe0\\xcf\\xe3\\x05\\x93\\x4a\\x74\\xb2\\xc1\\x26\\x0b\\x43\\x97\\xc4\\x24\\xa7\\x96\\x17\\x54\\xce\\x14\\x85\\x24\\x87\\x13\\x93\\x93\\x87\\x1f\\x7c\\xf0\\x29\\xe1\\x1a\\x9d\\x31\\xae\\x09\\xbf\\x95\\x2b\\xa4\\x04\\xa1\\xb2\\x3f\\x1a\\xfd\\xc7\\x53\\xf7\\xe1\\xfe\\xfb\\xa6\\x1e\\x7c\\xf0\\x6d\\x2f\\xb0\\xef\\x5e\\xb8\\x3e\\xff\\xd4\\x42\\x4a\\x5b\\xd5\\x2a\\xfb\\x53\\xa3\\xa9\\x14\\xac\\x78\\x5e\\x2c\\x0e\\x0f\\xd1\\x91\\x6d\\x8d\\x9c\\x59\\x19\\xe9\\xb0\\x0d\\xb9\\xb1\\xa8\\x0c\\x53\\x44\\x3b\\x75\\xfd\\xfa\\xa9\\x93\\xd7\\xaf\\xe3\\x31\\x4d\\xd3\\x18\\xca\\xc2\\xaf\\xde\\x78\\xff\\x8d\\xeb\\x1f\\xb8\\x6e\\x55\\x6d\\x4d\\xdb\\x25\\xee\\xbe\\x44\\x45\\x5f\\x95\\x13\\xd5\\xa4\\x04\\x0f\\x45\\x1b\\xbb\\x1a\\x9d\\xbc\\x51\\xfa\\xce\\xbe\\xb7\\x94\\xbe\\xb3\\xef\\xe0\\xc9\\x76\\xce\\xdf\\xc9\\x83\\xfb\\xbe\\x53\\xaa\\xd3\\xcd\\x8d\\x7f\\xe8\\xae\\x13\\x3b\\x4b\\x74\\x03\\x9e\\x13\\x6e\\x6c\\x74\\x7b\\xae\\x7f\\x66\\xe2\\xc6\\xc9\\xc3\\x33\\x8f\\x1c\\x9e\\xf9\\x8b\\x89\\x1b\\x71\\x28\\xf0\\xa7\\x66\\x0e\\x9f\\xbc\\x31\\xd1\\xfa\\xed\\x89\\xbf\\xa0\\x3b\\x1e\\xb7\\x7a\\x9f\\x4f\\x4b\\xfc\\xdb\\x89\\xa3\\xe0\\x46\\xef\\x8c\\x62\\xf2\\x8a\\x6e\\xb2\\x76\\x14\\xd2\\x36\\xb0\\xf2\\x16\\xba\\x99\\x7e\\xdb\\x26\\x33\\x77\\x3d\\xe7\\x38\\xb6\\x4e\\x74\\x52\\x6e\\xa8\\x7a\\x20\\x90\\x4d\\x92\\x7b\\xd7\\x71\\x69\\xe6\\x8d\\xd5\\x3b\\x77\\xba\\xf3\\x6e\\x08\\x21\\xe4\\x33\\xf0\\x15\\xea\\xa9\\x49\\x7d\\xe5\\x9a\\x82\\x6c\\x49\\x92\\xe8\\xf2\\xb4\\x5b\\x7d\\xff\\x4c\\x5a\\x58\\x90\\x16\\x16\\x44\\xfa\\xda\\xb5\\xd6\\x56\\x93\\x9d\\x01\\xaf\\xb6\\xbe\\xc2\\x50\\x96\\x98\\xec\\x22\\xc8\\x46\\xe8\\x95\\xae\\x15\\x16\\xa2\\x0d\\x8c\\x76\\x56\\x2e\\x6c\\x35\\x35\\x6d\\x7d\\xb7\\x5a\\x6b\\x84\\x74\\x59\\x80\\x33\\x7e\\x0b\\xf0\\x2e\\xac\\xd6\\xef\\xe2\\xcd\\xd3\\xe3\\xe3\\xa7\\x4d\\x7e\\xb9\\xda\\xc5\\x9a\\x7d\\x6a\\x5f\\xf8\\x9e\\x7b\\xc2\\xfb\\x4e\\x95\\x7e\\xa3\\x9b\\x99\\x3b\\xe0\\x8b\\xa7\\x8d\\xbb\\xf6\\x0b\\xb3\\xcb\\xde\\xc2\\x0c\\x16\\x7f\\xd5\\xb1\\xb3\\x38\\x6b\\xd6\\xed\\x2e\\x0b\\x4b\\x37\\xbe\\xb5\\x84\\x94\\x8e\\xa4\\xdd\\x9b\\xd5\\xdb\\x89\\xba\\x54\\x55\\xb3\\xac\\xe3\\x1f\\xf7\\x65\\xf2\\x3e\\xc0\\xcc\\x97\\x90\\xa8\\xd9\\xfa\\x8a\\x38\\xf4\\x23\\x3f\\x32\\x94\\x7c\\xd9\\x37\\xd2\\xd8\\xeb\\xb7\\x59\\x0f\\x25\\x3e\\xfb\\xd9\\x84\\xe7\\x79\\x63\\x96\\xb7\\x71\\x26\\x57\\xbb\\x8c\\xc1\\x3d\\x6c\\x5f\\xcc\\x7f\\xa9\\xd2\\xaf\\xc2\\x82\\x50\\xc0\\x42\\x51\\xc1\\x8d\\xf8\\x58\\xdc\\xa6\\xa3\\x76\\x9d\\x6e\\x72\\xd3\\x39\\x63\\xf2\\x80\\xd0\\xba\\x83\\x37\\x02\\x5c\\x9d\\xe1\\x0d\\x0e\\x46\\x6c\\xaa\\x58\\xd9\\x91\\xc1\\x3c\\x55\\xb8\\xd6\\x0e\\x4c\\x86\\x13\\xe3\\x16\\xde\\xf8\\x17\\xd8\\x77\\xff\\xc7\\x50\\x0e\\x15\\xa9\\x76\\x51\\xda\\xd5\\x6d\\xc0\\x31\\x9f\\x82\\x2a\\x98\\xaa\\x60\\xb6\\xa7\\x3a\\x98\\xf8\\x70\\xbd\\xdb\\x97\\x30\\x37\\xf7\\x43\\x73\\x91\\xc1\\x89\\x60\\x32\\x99\\xbc\\x3a\\xbc\\xb8\\x38\\xbc\\x3f\\x7a\\x64\\x76\\xf6\\x48\\xf4\\xc5\\x1e\\xdf\\xc2\\xdc\\x83\\xfb\\xe7\\x22\\x7d\\xb1\\xff\\x6b\\x32\\x79\\x73\\x32\\xf9\\xb6\\xe1\\xc3\\x87\\x87\\xf7\\xdf\\x47\\x4f\\xbc\\xcf\\xb3\\x6a\\x6e\\x43\\xab\\xe4\\xef\\xd7\\x22\\x06\\x86\\xbb\\x57\\x23\\x6c\\xbb\\xba\\x47\\xc5\\x6b\\x56\\xc5\\xaa\\xf6\\x46\\x1b\\x4e\\x53\\x8d\\x5a\\x91\\x0d\\x37\\x1e\\x94\\xbe\\x73\\xaf\\x54\\x3b\\xb6\\x94\\xf4\\xf4\\xb2\\x76\\x65\\xe9\\xe2\\x4d\\x61\\xd7\\x06\\x60\\x94\\x56\\xc8\\xf2\\xf4\\xd2\\x15\\x72\\xf3\\xe2\\xca\\xee\\x0d\\xf1\\xcf\\x00\\xf4\\xfe\\x1f\\x62\\x78\\x08\\x7b\\xdf\\x7f\\xfe\\x15\\x5b\\xf4\\x11\\x31\\x2b\\x5c\\xa5\\x55\\x00\\x9d\\x68\\x6e\\x3a\\xbf\\x7b\\xbb\\xea\\xd1\\x61\\x51\\x1c\\x8e\\x76\\xc6\\x46\\x54\\xcc\\xe7\\x45\\x3a\\x43\\xee\\xde\\xc6\\x00\\x42\\xe8\\x1e\\x78\\x3a\\xc6\\xd1\\x24\\x42\\x25\\xd7\\x77\\xa6\\xa8\\x8a\\x61\\x28\\x45\\x4e\\x70\\x11\\x7f\\x55\\x65\\xc1\\x2c\\xe7\\x4b\\x2c\\x9a\\x9a\\xce\\x53\\xf8\\x7b\\xe1\\xb0\\x11\\x8e\\x87\\xc7\\xc6\\x63\\xb3\\x6f\\x9c\\x8d\\xe5\\x53\\xe1\\x78\\xd8\\x08\\x87\\x1f\\xc1\\xc5\\xd6\\xf7\\xf2\\xce\\xca\\x9a\\x23\\xd4\\xfe\\x11\\x3b\\x94\\x1e\\x0a\\x0d\\x1d\\x1b\\x1e\\x3e\\x36\\x1c\\x1a\\x1e\\x65\\xbf\\xb9\\xfe\\xbe\\x15\\x27\\xbf\\xe6\\x08\\x1b\\x5d\\x59\\x8f\\x8c\\x8d\\x82\\x16\\xff\\x4a\\xfd\\x10\\xa4\\xd3\\x54\\x8d\\x10\\x71\\xd7\\xcb\\x1f\\x25\\xb8\\x51\\x7b\\xeb\\xee\\xd7\\x8a\\x07\\x6a\\x35\\x16\\x5b\\xe8\\x67\\xec\\x4c\\x75\\x22\\x21\\x7a\\x41\\x69\\x12\\x26\\x76\\x88\\x40\\x04\\x52\\xf7\\x72\\xab\\xf1\\xbb\\x40\\xbb\\xa3\\x1a\\x5c\\xdb\\xad\\x84\\x1c\\x5f\\xbe\\x36\\xcb\\x77\\x00\\xfd\\xb9\\x97\\xf1\\x31\\x61\\x62\\x41\\xd3\\xb4\\x5a\\xa7\\xac\\xed\\xf5\\xf5\\x0a\\x21\\xd8\\xf2\\x17\\xe5\\x43\\xd4\\xde\\xb5\\x7d\\x3d\\xc6\\xe6\\x2a\\x43\\x48\\x13\\xdb\\xd3\\x1f\\x83\\x32\\x25\\xa4\\xe1\\x9f\\x02\\x83\\x5d\\x65\\x0a\\x1d\\xff\\x6c\\xa2\\xbb\\x34\\xda\\xbe\\x46\\xa7\\x28\\x62\\xdb\\xb4\\x7d\\xa8\\xc7\\x5e\\xed\\xf1\\x76\\x0e\\x41\\x5e\\x24\\xd5\\xc4\\xc1\\x4e\\x24\\x51\\xa1\\x20\\x31\\xdf\\xc9\\x8d\\x12\\x54\\x13\\x23\\xdb\\x3e\\x79\\x23\\x93\\x1b\\x5e\\x31\\xdc\\x37\\xdb\\x76\\x2c\\xbb\\x62\\xdd\\x38\\x39\\x3f\\x95\\xcb\\x14\\x8c\\x15\\x4c\\xda\\xbb\\x96\\x5d\\x41\\x41\\x74\\x04\\x1d\\x01\\x99\\x34\\x86\\x64\\x88\\xb3\\x6b\\x27\\x5b\\xa9\\x9c\\x0b\\x93\\xc3\\x19\\x65\\x90\\x40\\x24\\x10\\xf8\\x8d\\x05\\xd3\\x04\\x14\\x46\\x5c\\xd7\\xf5\\x74\\x7e\\x58\\x99\\xfb\\xf3\\x0c\\xbe\\x90\\x99\\x1f\\x1d\\xed\\x8f\\x7c\\x66\\x58\\x99\\x73\\x74\\x3d\\xfd\\xfa\\x70\\x34\\x97\\x12\\xe9\\x09\\x27\\xf6\\x69\\xb9\\xec\\xf8\\x82\\x32\\xe7\\x64\\x33\\xad\\xcf\\x65\\xe6\\x87\\xc2\\xd3\\xc1\\xd0\\x67\\xd8\\x11\\xf6\\x6d\\x20\\x9c\\x1f\\x0e\\x75\\xc9\\x2a\\x71\\x24\\x02\\x17\\x0d\\x30\\xdd\\x02\\x7e\\xa2\\x51\\x66\\xed\\xa1\\x0a\\x98\\x0a\\xa4\\x08\\xed\\xe6\\x6c\\x6b\\xf5\\xf9\\xf9\\xd3\\x07\\x94\\xb9\\xd2\\x3e\\x5b\\x6b\\xb2\\x1d\\x67\\x7e\\x7e\\xdb\\x71\\x1a\\xfa\\xfc\\xc9\\xc5\\x07\\x87\\xa6\\x07\\x8f\\x69\\x46\\x69\\xce\\x69\\xdd\\x21\\xa4\\xea\\xfb\\xac\\xcf\\x23\\x1f\\x0f\\x32\\x43\\xd5\\xa5\\x12\\xbc\\x0e\\x98\\xba\\xbb\\x00\\xcf\\xdb\\xb6\\x6d\\x69\\x15\\x1f\\xfa\\xfc\\x76\\xa5\\xb2\\xbe\\xee\\xec\\x42\\xf4\\xea\\xda\\x58\\x6a\\x80\\x79\\x3d\\xc6\\xb2\\xc8\\xda\\xcc\\x14\\x8a\\xaa\\xf3\\xb2\\x00\\xac\\x67\\x3a\\xc7\\x02\\xe1\\x65\\x81\\xbe\\xbb\\x51\\xf1\\x32\\x86\\x95\\x7a\\x26\\xc8\\x1f\\xdd\\x4a\\xf1\\x29\\x7e\\xfd\\xa1\\x67\\xb5\\x5b\\x17\\xd2\\x8a\\x05\\x2e\\x02\\x7c\\x27\\xc5\\xb7\\x6a\\x7c\\x8a\\x68\\x58\\x70\\x06\\x82\\x1f\\xe5\\xd3\\xdb\\xcf\\x5e\\xbb\\x70\\xcb\\x51\\xd2\\x1b\\xab\\x4b\\xd3\\xcb\\xff\\x87\\xc8\\x7c\\xe1\\xb6\\x04\\xd0\\x83\\x80\\xb5\\xb3\\x5b\\x13\\xae\\x65\\x27\\xe4\\xe5\\x78\\xd9\\x9b\\x2f\\x0e\\xc5\\xe3\\x43\\x0d\\xba\\xf9\\x2e\\x11\\x08\\x69\\x55\\x49\\x95\\xb8\\x29\\xd7\\xf1\\xa1\\x16\\x7c\\x81\\xad\\xa1\\x78\\xab\\xb9\\xb5\\x55\\x77\\xc8\\xd6\\x16\\x71\\x9c\\xae\\xc8\\x04\\x98\\x0f\\x38\\x00\\x21\\x30\\x7b\\x5c\\x45\\x76\\xbd\\xee\\x74\\x24\\x97\\xfa\\xf1\\xe3\\xf5\\x13\\x5f\\xec\\x91\\x5d\\x3c\\xdf\\x5d\\x14\\x50\\x0a\\xcf\\xd1\\x71\\x48\\x3b\\x07\\x44\\x70\\x53\\x17\\x3b\\xf3\\xa4\\x6b\\x2e\\x65\\x1b\\xd7\\x96\\x2b\\x95\\x8d\\x05\\xf3\\x15\\xd7\\x9c\\x26\\x9f\\x7a\\x43\\x5f\\xa5\\x45\\xf0\\xd3\\xab\\x0f\\x3c\\xfd\\xf4\\x03\\xb9\\x42\\x9a\\x27\\xb1\\x08\\x71\\x22\\x83\\x42\\x2e\\x3a\\x3d\\x27\\x64\\x85\\x07\\xfc\\x32\\xc8\\x51\\x2d\\xc5\\x8b\\xaf\\x1f\\x11\\x8f\\x3e\\xf4\\x05\\x6e\\x88\\xfe\\x60\\xf5\\xe9\\x68\\x99\\x4f\\x6b\\x91\\x41\\x6d\\x30\\x62\\x8d\\xcf\\x1d\\x1f\\xfa\\xe5\\x5d\\xd7\\x1f\\x3a\\xb6\\x35\\x40\\xbc\\xaf\\xc2\\x7a\\x2c\\x22\\x14\\x0f\\x87\\x15\\xa5\\x5c\\x16\\x39\\x37\\x6b\\xa4\\x24\\x14\\x0c\\x7d\\x5e\\xac\\x2b\\x0b\\x0a\\x56\\x16\\x94\\x77\\xe1\\x4d\\x67\\xd3\\xc1\\x9b\\xad\\xed\\x86\\x3c\\x8f\\x79\\x38\\x86\\x95\\x9b\\x1a\\x21\\xeb\\x9a\\xa3\\x23\\x58\\x2f\\xaa\\xf8\\x8f\\xf1\\xcf\\x77\\xca\\x83\\xe2\\x44\\xce\\x0c\\x71\\xaa\\x20\\x1b\\x25\\xae\\x64\\x4a\\xa2\\xf8\\x2b\\xfb\\x74\\x91\\xdf\\xa7\\x8b\\x3f\\x3f\\x8c\\x6b\\x43\\x0f\\x6d\\xe2\\x7d\\xc3\\xad\\xbf\\x9e\\xf9\\x7c\\x31\\x8b\\xf7\\xc3\\x61\\x7e\\xdf\\x1b\\x26\\x7f\\x72\\xb2\\x58\\x5c\\xeb\\x9b\\x7c\\xdd\\xdb\\x8e\\xc5\\xac\\x36\\xf2\\x54\\x15\\x45\\x21\\xff\\x6d\\x1e\\x94\\xcf\\xde\\x98\\xa2\\x96\\xe6\\x8f\\x28\\x72\\xb6\\x36\\xbc\\x70\\x22\\x17\\x3d\\xe8\\xcf\\x01\\xbd\\x29\\x47\\xd7\\xd3\\x30\\xc7\\x9c\\xc1\\xe0\\x8a\\x96\\x24\\xb3\\x2c\\x96\\x92\\xa2\\xee\\x82\\x06\\xeb\\xf8\\x8f\\xb9\\x68\\xec\\xc2\\xbd\\xb5\\xb4\\xe2\\xac\\x64\\x06\\x4e\\x8f\\xc6\\x52\\xad\\xc7\\x94\\xb4\\xe3\\x4c\\x2f\\x69\\x1f\\x8c\\xa5\\xc3\\x13\\x35\\x25\\x5d\\x77\\x46\\x6b\\x03\\xa1\\xfe\\x1b\\x20\\x70\\x34\\x3c\\x29\\xaa\\xd9\\xae\\x81\\x45\\xa6\\x18\\xed\\x3a\\x44\\x41\\xe8\\xaa\\xe1\\x45\\x2a\\x2c\\xae\\xd1\\x1a\\xaa\\x7c\\xaa\\xb5\\x05\\xa5\\x2f\\x13\\x27\\x3e\\x16\\x87\\xc2\\xd3\\x7c\\xcd\\x71\\x8b\\x66\\x25\\x7f\\x16\\xa2\\xb4\\x0a\\x08\\x25\\xfc\\xa5\\x88\\xb4\\x0e\\xd3\\x57\\x09\\xa7\\xcf\\x8b\\x55\\x25\\x6d\\xdb\\xd3\\xcb\\x04\\x2f\\x07\\x13\\xc3\\x6b\\x82\\xc3\\xea\\xd0\\xb2\\xb1\\x84\\x2b\\x1f\\x35\\x5a\\x9f\\x1c\\x96\\x2c\\xdb\\xad\\x67\\xb8\\x1d\\xb3\\xf9\\xef\\x20\\x06\\x91\\x4a\\xc4\\x12\\xf4\\x8e\\xaa\\x2a\\x65\\x53\\x2f\\x4b\\x92\\x68\\x0a\\x61\\x55\\x92\\x04\\x38\\xa6\\x4b\\xa2\\xa8\\x07\\xe8\\x6d\\x95\\x44\\x31\\x8c\\xaf\\xbe\\x3d\\x7f\\xdf\\x4f\\x4a\\x72\\x68\\x3c\\x28\\x25\\xb0\\x38\\x2c\\xef\\x5b\\xd8\\xb7\\x24\\x3e\\xbc\\x31\\x79\\x38\\xac\\x69\\x5a\\xdf\\xc4\\xe8\\xf2\\x58\\x38\\x29\\x0f\\x0d\\x71\\xc9\\xc6\\x5a\\xde\\x1a\\x97\\xde\\x99\\xcc\\xf7\\x05\\x63\\x99\\x52\\x74\\xb6\\xbf\\x78\\xc5\\x26\\xba\\xfa\\x8d\\xaf\\x49\\x39\\x9c\\x48\\xca\\x63\\x5c\\x74\\x40\\x1e\\x83\\x55\\xdb\\xc0\\x75\\xbc\\x05\\x5e\\x02\\x0d\\x66\\xdb\\x0e\\x88\\xb5\\x44\\xeb\\x16\\x8a\\xaa\\xa0\\x73\\xbe\\x6e\\x28\\xbb\\x96\\x2a\\x5c\\xcf\\xad\\xbc\\x29\\xad\\x8c\\x27\\x70\\x62\\x24\\xcb\\x1f\\x4c\\x2f\\x1d\\x38\\xf3\\x65\\xb7\\x63\\xe7\\xc0\\x6a\\x75\\x7f\\x6e\\x45\\x49\\xbf\\x3d\\x31\\x3e\\x52\\x48\\x8c\\xce\\xcd\\x5d\\x10\\x58\\x6f\\x08\\xcc\\xa0\\x85\\x7c\\x36\\x00\\xb6\\xca\\x4f\\x76\\xc7\\x4c\\x99\\x0c\\x5e\\x6a\\xf7\\xe8\\x19\\x58\\xa6\\x35\\xed\\x0e\\x9d\\x38\\x7a\\x23\\x67\\xf0\\x8a\\xa6\\xad\\xc1\\xeb\\x76\\xba\\x2b\\x72\\x86\\xaa\\x72\\x6d\\x7d\\x84\\xb1\\x75\\x8c\\x83\\x35\\x29\\xb4\\x4b\\xc8\\xb1\\xce\\x54\\xd1\\x46\\xad\\x86\\x11\\xa3\\x69\\xf6\\x92\\xce\\x5e\\x38\\x39\\x6c\\xdb\\xc3\\x27\\x31\\xa9\\xd8\\xa4\\x13\\x55\\xcc\\x84\\x97\\x78\\x8a\\x7d\\xc9\\xf4\\x1e\\x96\\xd3\\x46\\xeb\\x49\\xd3\\x55\\xdc\\x08\\xed\\x45\\x04\\x6d\\xb7\\x2b\\x61\\x5c\\xd0\\x10\\xa2\\x2c\\xd8\\xf5\\x2d\\x7f\\xf9\\x8c\\x0f\\x3a\\x9e\\xfa\\x5f\\xe4\\x97\\xa6\\x65\\xd6\\x76\\x2f\\xaf\\x83\\x8c\\x95\\x74\\x9f\\x76\\x0e\\x8c\\xb3\\x1d\\xcd\\x18\\x57\\x46\\xd2\\x2b\\xeb\\x2b\\xe9\\x11\\xac\\x55\\x34\\x5c\\xcd\\x8c\\x3c\\xbe\\x62\\x59\\x2b\\x8f\\x8f\\x64\\x6c\\xdb\\xf6\\xe4\\xc9\\x46\\x9b\\x91\\x69\\xaa\\x13\\xb7\\xe7\\x4d\\x18\\x09\\xd9\\x90\\x4d\\x36\\xa6\\xe4\\x50\\x17\\xfc\\x15\\x7e\\x0b\\xf8\\x9a\\x7f\\x17\\xb6\\x2f\\x5a\\x56\\x79\\x20\\x1b\\xc8\\x0e\\x94\\xad\\xd6\\x77\\xf3\\x69\\xde\\xe2\\xd3\\x79\\xec\\x00\\x51\\x79\\x0a\\xb6\\xad\\x9f\\x74\\x5e\\xc8\\x66\\x5f\\x70\\x6e\\x03\\x8d\\xfd\\xe3\\xb7\\xa1\\x9f\\x6d\\xbc\\x8d\\x3f\\xe1\\xe2\\x1a\\x22\\xb3\\x3c\\x2f\\x71\\x4a\\x91\\x93\\xe8\\xbb\\x5a\\xce\\xc3\\x87\\xea\\xd2\\x2f\\x1d\\xd1\\xa6\\xdf\\x39\\x4d\\xd2\\x67\\xd3\\xd6\\xf6\\x35\\x9c\\x78\\x88\\x5c\\x7c\\xf9\\xe2\\xf6\\x91\\x23\\x64\\x7a\\x9a\\xa4\\xd3\\xd6\\xf6\\x43\\x0f\\x91\\x0b\\x17\\x3a\\xa8\\x43\\xcc\\x2f\\x47\\xba\\xa3\\xd7\\x54\\x41\\x87\\x75\\x44\\xda\\xc1\\xff\\xcf\\x42\\x6f\\x5d\\xe7\\xf1\\x95\\xf7\\xa8\\x65\\xf5\\x2b\\x1d\\x28\\x22\\x61\\x79\\x75\\xb9\\xce\\x5c\\xc8\\x4d\\x42\\x32\\xaa\\x7a\\xb2\\xc3\\xdb\\x43\\xa6\\x97\\x97\\xa7\\x7d\\x9c\\xd8\\x9b\\x6d\\x4c\\xee\\x49\\x7a\\x25\\x12\\x17\\xe6\\x74\\xc0\\xda\\x36\\x61\\x5b\\x28\\x97\\x25\\x4e\\x09\\x73\\xa5\\x79\\x21\\x28\\xb8\\x9c\\xaf\\xa6\\x59\\xae\\x5a\\x0f\\x8e\\xed\\x2f\\x6d\\x0d\\x0c\\xc7\\xf2\\xa3\\x44\\xdd\\x3f\\x70\\x42\\x6f\\x69\\x8b\\x3f\\x7b\\x21\\x75\\xe4\\x89\\x19\\x9c\\x18\\x58\\x08\\x8e\\x0e\\xc7\\x53\\xa1\\x47\\x83\\xdb\\x56\\xf0\\x48\\xb8\\x34\\x10\\x5d\\x1a\\x19\\xd5\\xd4\\xe4\\xe1\\x94\\xbe\\x38\\x37\\x74\\xb0\\x7f\\x6a\\xc6\\x89\\xb6\\xfe\\x0c\\x0f\\x25\\x53\\xf1\\x81\\xe8\\x5f\\xf7\\x23\\x5f\\x4e\\x97\\x40\\x25\\x84\\x84\\xa0\\x42\\xca\\xb3\\xbb\\x7a\\xaa\\xac\\x0f\\x00\\x14\\x80\\x75\\x80\\xa9\\x9a\\x5f\\x52\\x43\\x8b\\x53\\xd3\\xcb\\x02\\x9f\\xfe\\xfd\\xc7\\xd4\\xb2\\x8a\\x03\\xe9\\xd1\\xfe\\x30\\xbd\\x7a\\x69\\x3a\\x8d\\x9d\\xb4\\x3a\\x59\\x5e\\x9e\\x26\\x29\\xfe\\x97\\xff\\x03\\xbd\\xfc\\xd6\\x87\\xd3\\xa3\\x81\\x14\\xbf\\x95\\x8a\\x91\\xb4\\x37\\x76\\x9a\\x80\\x02\\x4d\\x57\\x1b\\x02\\x9e\\x04\\x48\\x76\\x37\\x64\\x21\\xdc\\xc9\\x59\\x74\\x43\\xaa\\x60\\x0a\\x32\\x00\\x55\\x07\\x30\\x5e\\xab\\x96\\x55\\xaf\\x0b\\x36\\x20\\x94\\x0e\\x6e\\x69\\x9b\\xca\\x82\\x42\\xf8\\xf4\\x46\\xc5\\xb2\\xb6\\xf9\\x34\\x6e\\x5a\\x16\\x21\\x5b\\x96\\xe5\\x80\\x05\\x54\\xd7\\xd2\\x8a\\x92\\x4e\\xf1\\x70\\x2f\\x08\\x43\\x99\\x12\\xc0\\xf3\\xd6\\x84\\xc8\\xfb\\x0c\\xcb\\x29\\x57\\x7d\\x88\\x07\\x21\\x59\\x75\\x23\\xaa\\x55\\xbd\\x76\\x86\\xe4\\x6e\\xe0\\xdb\\x63\\x8b\\xe5\\x7b\\x56\\x9f\\x56\\x0e\\xe3\\xca\\x99\\x8f\\xc0\\xde\\xc3\\xb9\\x6d\\xed\\x8b\\xad\\xb5\\xcc\\x61\\xe5\\xe9\\xd5\\x7b\\xca\\x8b\\x1f\\xff\\x08\\xbc\\x5f\\xf7\\x5b\\x6e\\x82\\x60\\x15\\x37\\x64\\xa1\\x6d\\x83\\xac\\x6e\\x25\\xc0\\x4e\\xb8\\xad\\x69\\x77\\x98\\x6d\\x30\\x80\\x9a\\xc8\\xc2\\xc4\\x8d\\xf3\\x02\\x0b\\x73\\xd2\\x7d\\x86\\x9a\\x95\\x0a\\x44\\x64\\xe0\\xc6\\x5d\\xf4\\x06\\x78\\x18\\xba\\xb2\\xac\\x23\\xc0\\xbf\\xae\\x87\\xc3\\x1c\\x2f\\x8a\\x92\\xac\\xf2\\x8a\\xb2\\x50\\xc6\\xe2\\x97\\xb9\\x37\\x9d\\x3d\\xfb\\x26\\xee\\xcb\\xe4\\xbe\\x47\\x1f\\xbd\\x73\\xf6\\x4d\\x1c\\xde\\xe4\\xde\\x74\\xf6\\xcb\\xad\\x4a\\xff\\x53\\x9f\\x7c\\xca\\xa7\\x63\\xf5\\xa1\\xa8\\x67\\xdd\\x2c\\x9b\\xb2\\x92\\x14\\x25\\x3e\\x6c\\x0a\\xfa\\x6c\\xdb\\xb8\\x29\\x1c\\xba\\xcc\\x7d\\xb8\\x51\\xb1\\x96\\x1f\\xf9\\x30\\x77\\xf9\\x17\\xa0\\xd5\\x57\\xb8\\xcb\\x87\\x2a\\xef\\x5e\\xeb\\xc7\\x97\\xfa\\xfb\\x3f\\x7c\\xe8\\xb2\\xce\\xae\\x20\\xd8\\x85\\x2b\\x9d\\x42\\x28\\xee\\xb6\\x3f\\xdc\\x99\\x0b\\x74\\x66\\xde\\xfd\\x83\\xc5\\xca\\xe1\\xc3\\x95\\x7e\\x78\\xa6\\x9b\\x93\\xe3\\x63\\x93\\x93\\x63\\xe3\\x38\\x45\\x8f\\x2d\\xde\\x84\\x99\\xe0\\xc1\\x03\\x93\\xea\\x21\\x95\\x61\\x73\\xbe\\x15\\x70\\x02\\x20\\x32\\x48\\x94\\x64\\x45\\x75\\xd3\\x58\\xda\\xd0\\x13\\x26\\x6e\\x1e\\x2d\\x71\\x24\\x9c\\xaa\\xd8\\x4e\\xfe\\xb6\\x7d\\x64\\xd1\\xbe\\x77\\x31\\x7b\\xfa\\xea\\xeb\\x4f\\x1d\\xc1\\x6f\\xba\\x77\\xf1\\xb4\\x3e\\xfb\\x50\\xc5\\xc9\\xdf\\xae\\x9c\\x3c\\xb1\\x90\\xb5\\x2e\\x1c\\xef\\x94\\xf9\\x1c\\xe2\\xdc\\xa8\\x13\\x89\\x53\\x57\\xf2\\xb7\\xed\\x9f\\xca\\xbe\\x68\\xbf\\x35\\x7f\\xbb\\xb2\\x99\\xfd\\xad\\x8a\\x17\\x1f\\x1a\\x40\\x28\\x03\\xf8\\xde\\xc8\\xe5\\xe4\\xf2\\x40\\x73\\x01\\x4e\\xc4\\x9b\\x23\\x81\\x25\\xa8\\x3d\\x29\\xd0\\x0f\\xa6\\x24\\xce\\x9b\\xa6\\xca\\x1e\\x51\\x09\\xf0\\x02\\x9d\\xb4\\x92\\x2a\\xc6\\x66\\x67\\x63\\x72\\x6c\\x66\\x36\\x56\\x4c\\x29\\xe9\\xaa\\x76\\x4e\\xcc\\x8a\\xc9\\x58\\xa4\\xb5\\x19\\x89\\x25\\xa4\\xac\\x28\\x49\\xc2\\x92\\x20\\xad\\xf0\\x69\\x6e\\x62\\x82\\x4b\\x61\\x4b\\x49\\x17\\xf8\\x14\\xfd\\x09\\xfd\\x4b\\xf1\\x85\\xb4\\x42\\x48\\x4d\\x1c\\xbc\\x46\\x05\\xcb\\x6b\\x83\\xf4\\x74\\x41\\xfa\\x52\\x9a\\x1f\\x18\\x58\\x5e\\x1e\\x18\\xa0\\x7a\\x4e\\xac\\x2b\\x23\\xa4\\x17\\xdf\\x41\\x47\\x07\\x99\\x15\\x14\\x32\\xbb\\x8d\\x0e\\x80\\xa9\\x1f\\x61\\xba\\x17\\x71\\xda\\xe5\\xa4\\x2c\\xf0\\x2c\\x4e\\xb9\\x52\\xef\\xc0\\x89\\x33\\x1e\\x4a\\xc8\\xfb\\x6e\\xb6\\x2a\\xcd\\x06\\x04\\x29\\x6f\\x36\\x01\\x3e\\x09\\x23\\x88\\x57\\xb6\\xe1\\x58\\xcf\\x87\\x56\\x13\\x3b\\xc8\\x97\\x9b\\x1a\\x75\\x11\\x69\\xa9\\x24\\x07\\x41\\xec\\x0b\\x6a\\xb9\\x08\\xbb\\x05\\x63\\xa1\\x5c\\xee\\x81\\x03\\xc2\\xf6\\xd8\\xb1\\x03\\x8e\\xc6\\xfd\\xb3\\x03\\xc7\\xcc\\x56\\xf3\\xc0\\x93\\x54\\xea\\x2c\\xbd\\x97\\x31\\xd2\\x8f\\x4c\\x48\\x86\\x31\\x9d\\xc5\\xf0\\x2e\\x4d\\x1c\\x02\\x91\\x54\\xf1\\xe2\\xdc\\x11\\x72\\x02\\x08\\xd7\\x5c\\x2b\\xa8\\x8c\\xe6\\xc0\\xfb\\x06\\xb5\\x94\\xdc\\x8a\\x3b\\x4c\\xe5\\x6a\\x79\\x41\\x65\\xe3\\x55\\x15\\x3a\\xfc\\x1f\\x7f\\x76\\x71\\xf5\\x2e\\xc2\\x43\\xa5\\x03\\xd6\\x87\\xa0\\x5c\\x12\\x8d\\x24\\x12\\x91\\x68\\x5a\\x51\\xbe\\x03\\x89\\xc6\\xdb\\xf2\\x38\\x21\\xe3\\xb9\\x70\\x4e\\x22\\xa4\\x78\\x9a\\xd5\\x1d\\xcc\\x1c\\xcf\\x04\\x95\\x05\\x45\\x64\\xe1\\xcd\\x1d\\x14\\xf9\\xdd\\x70\\xc0\\xa7\\x3b\\xb6\\x93\\xde\\xbb\\xe0\\x8f\\x23\\x37\\x75\\xa1\\xc0\\xeb\\x86\\x29\\xe1\\x9a\\xa6\\x69\\x15\\xf7\\x76\\xb0\\xf7\\xa6\\xd3\\x72\\x1c\\xcb\\x6a\\xec\\xec\\xfa\\xcd\\xf6\\x4e\\x13\\xe2\\x9a\\xfe\\x1e\\x51\\x98\\x76\\xa9\\xb7\\x3c\\x2f\\x4a\\xf2\\x8e\\xdb\\xdd\\x5b\\xef\\xef\\x41\\xb5\\xc5\\x3d\\xaa\\x6d\\x4e\\x15\\x0a\\x8f\\xec\\x59\\x6d\\x1b\\x67\\xf1\\x25\\x94\\x00\\xeb\\x02\\xc4\\xa3\\x03\\x0a\\x07\\x5b\\xc4\\x45\\x51\\xe0\\x00\\x26\\x28\\x8c\\x1d\\xd2\\xda\\x24\\xfa\\x4c\\x7c\\x2c\\x3e\\xa3\\x3b\\xf1\\x54\\x25\\x5d\\x27\\x82\\x40\\xd6\\xe7\\xcf\\x0c\\x0c\\x53\\x75\\x62\\x78\\xe0\\xcc\\xfc\\x9d\\x14\\x0f\\xb6\\x25\\xaf\\x4c\\xce\\xf3\\xa7\\x30\\x7d\\xd3\\xdc\\xa5\\x74\\x06\\x42\\x84\\xed\\xd9\\xf3\\xb3\\x4d\\x5f\\x05\\x8f\\x16\\xd3\\x95\\x9a\\x33\\x65\\x9a\\x53\\x8e\\xb8\\x6b\\x35\\x6e\\x2d\\x0d\\x68\\x79\\x0a\\x7c\\x29\\x6a\\xb9\\x6c\\xea\\xe6\\xbc\\xa7\\xc7\\x76\\x4a\\x0f\\x8a\\xa2\\xc4\\xa9\\x50\\xb5\\xa9\\x9a\\xd8\\xf9\\x72\\x30\\x1a\\xc0\\x61\\x1c\\x0e\\x40\\x55\\x6f\\x9e\\x48\\x55\\xde\\x33\\xfa\\x52\\x39\\x43\\x5a\\xbf\\x47\\xf8\\xc3\\x99\\xdf\\xfc\\x2a\\x0e\\xe1\\x60\\xa0\\x53\\xdb\\x68\\x3c\\x8e\\x0f\\xa5\\xfe\\xcd\\xc1\\x0c\\x11\\x48\\x75\\x2a\\xbf\\x38\\xd6\\x5e\\x2d\\x5e\\x42\\x21\\x97\\x2f\\x84\\x8e\\x11\\x43\\x4f\\x9a\\xc2\\xce\\x4b\\x94\\x40\\x56\\x29\\x31\\x10\\xba\\xf8\\x44\\xca\\xae\\xf8\\xae\\x53\\x0b\\x9d\\xcc\\x5e\\x0e\\xb5\\xbe\\x7e\\x2a\\x44\\x42\\x97\\x49\\x8a\\x8f\\x7f\\x73\\xbd\\xf7\\x72\\xd5\\x8a\\x9e\\xb5\\xde\\xf0\\xec\\xfc\\x95\\x37\\x58\\xc8\\xd7\\xb7\\x11\\x34\\xce\\xf0\\x74\\x65\\x41\\xe7\\x04\\xdd\\x90\\xa5\\x57\\xb8\\x77\\xc6\\xfa\\xe2\\xe2\\xfa\\xe2\\x8f\\xf5\\xde\\x41\\x3c\\xa7\\x28\\xf7\\x2a\\xca\\xe2\\x1e\\x37\\x72\\x6f\\xbe\\x47\\x93\\x33\\x12\\xaa\\xc7\\xf7\\xc8\\x99\\x3e\\xbe\\x47\\x55\\x02\\xbe\\xc7\\xaa\\x58\\xa9\\x88\\xd5\\x34\\xef\\xac\\x8b\\x15\\x86\\x4d\\x51\\x11\\xab\\xb8\\xc1\\xde\\x5b\\x4d\\x7a\\xac\\x6a\\xb1\\x33\\x36\\xe1\\x6c\\x5f\\xfc\\xfa\\xa0\\x87\\xb8\\x54\\x36\\x16\\x54\\x99\\x81\\xaa\\x8a\\x66\\x31\\x2c\\x24\\x25\\x9d\\xd9\\x7f\\x95\\x5d\\xd1\\xdc\\xd0\\xf4\\x72\\x60\\xa6\\x4f\\x49\\xdb\\x85\\x85\\xf6\\xde\\x13\\xdd\\xd0\\x6e\\xb5\\xe5\\x69\\x6e\\x68\\x88\\x4b\\x2b\\x64\\xab\\xbd\\x67\\xf5\\xc0\\xbc\\xfd\\x9d\\xcf\\xc3\\x5c\\xbb\\x3e\\x0f\\x6d\\x76\\x0a\\xed\\x47\\x4b\\x9d\\xac\\x36\\x4f\\x6b\\x50\\x7a\\x3e\\x4b\\x2e\\x1f\\x90\\x3b\\x51\\x87\\x05\\x86\\xde\\x57\\x60\\xb6\\x9f\\x32\\xbe\\x05\\xaa\\x65\\x6c\\x69\\x7a\\x7a\\x69\\xfa\\x7b\\xbe\\xfd\\x97\\x4f\\x4d\\xa4\\x95\\x81\\xfc\\xa9\\xd3\\xa7\\x30\\x21\\x6b\\x2d\\x6d\\x8d\\xcc\\xed\\xdf\\x8f\\x1f\\x87\\xd0\\xa7\\x07\\xa7\\x97\\x08\\x59\\xba\\xd7\\xb7\\xff\\x89\\x74\\x74\\x2c\\x36\\x38\\x98\\x4e\\x47\\xc7\\xc6\\xa2\\xe9\\x35\\x35\\x77\\xe8\\x50\\x4e\\x15\\x45\\xe4\\xe3\\xb1\\x74\\x31\\x64\\xdd\\xba\\xdd\\xd6\\x7d\\xed\\x4d\\x8f\\xb7\\x36\\x7f\\x1b\\xe2\\xc2\\x9b\\x73\\x0a\\x21\\xca\\xd5\\xf9\\x93\\xba\\xee\\xea\\x82\\x5e\\xf6\\x40\\x82\\x4a\\x99\\x13\\xee\\x2f\\xd5\\x0e\\x38\\x73\\x9b\\xdf\\x1a\\x47\\x69\\x31\\x02\\x43\\xad\\xf8\\xcf\\xbe\\xd2\\xde\\x0b\\x8b\\x47\\xd5\\x2d\\xb3\\xaf\\xdd\\x96\\x08\\xe8\\x0b\\x05\\x68\\x8f\\x77\\xa3\\x3c\\x74\\x4b\\xda\\x45\\x05\\x63\\xc1\\xeb\\xc7\\x97\\xad\\xb3\\xcb\\xad\\xcd\\xe5\\x7b\\xa1\\xd4\\x1f\\x5d\\xad\\xe0\\xbe\\x47\\x95\\x74\\x5a\\x49\\x6f\\xc7\\xb5\\xb4\\x65\\xa5\\xb5\\x6f\\xea\\xf4\\x9b\\xcf\\x17\\x62\\x92\\x14\\xfb\\x4f\\x69\\x25\\x95\\x52\\x7c\\x8c\\x93\\x21\\xc8\\x05\\x32\\x79\\xd9\\xe0\\xba\\x08\\x1e\\x8d\\x35\\xad\\xbc\\x06\\x60\\xd2\\xf8\\x9d\\x52\\x6b\\xfb\\x0f\\x07\\x02\\x36\\xb1\\x6d\\x62\\x77\\x23\\x7d\\x72\\xed\\xac\\xb7\\x3d\\xf9\\x50\\x3c\\x4b\\xbe\\x8f\\xeb\\xa4\\x56\\xa9\\x6c\\x6d\\x6d\\x6c\\xf4\\x40\\x6c\\x77\\x64\\x5f\\xc9\\xb5\\x5a\\x40\\x92\\xe5\\x4e\\xdb\\x1f\\xd7\\xb1\\x13\\xb6\\xa5\\xd9\\x77\\xce\\x2c\\xee\\x4b\\xf3\\xda\\x60\\x44\\x73\\x22\\x31\\x21\\xfb\\xe3\\x7c\\xfa\\xf5\\x21\\x17\\x0c\\xec\\x27\\xf6\\xdd\\x63\\x54\\x12\\x11\\x3e\\x45\\x22\\x31\\x12\\x8b\\x58\\xf7\\x4f\\xa5\\x79\\xe1\\xf5\\xc9\\xf8\\xd1\\x36\\x10\\x58\\x47\\xf3\\x0e\\xa3\\x18\\xb0\\xc9\\xcb\\x06\\xa7\\x4a\\x92\\x29\\x70\\x2a\\x46\\xdb\\xa4\\xb1\\x5d\\xa9\\xd5\\x6a\\x35\\xdc\\x70\\xea\\x1f\\x7e\\xc4\\x79\\xe0\\xd2\\xa5\\xca\\x7d\\xf7\\x21\\x88\\xe1\\x9d\\x86\\xd5\\x5e\\x61\\x1e\\x3f\\x86\\xfc\\x64\\xaa\\x6d\\xc0\\x2a\\x93\\x21\\x40\\x43\\xce\\x26\\x27\\x26\\x39\\xa9\\x8c\\x9d\\xf4\\x44\\x69\\xbe\\x84\\x7f\\x2a\\x91\\x02\\xa5\\x25\\xb1\\x11\\xa0\\x0f\\x4f\\x7a\\x34\\xb9\\x11\\x08\\xfc\\x74\\xfc\\xd3\\xa5\\x54\\xba\\x54\\x4a\\x47\\xfb\\x56\\x79\\x65\\x41\\xe1\\xaf\\x44\\x43\\x69\\xfa\\x70\\xc5\\x57\\xa3\\xd1\\xe8\\xea\\x48\\x7b\\x95\\xfb\\xaf\\x68\\x00\\xd0\\x84\\x61\\x66\\x09\\x73\\xe0\\x9e\\x68\\x23\\x4f\\x99\\x02\\x84\\x09\\xd1\\xae\\xfb\\x1e\\x59\\x8c\\xe5\\x8e\\x1f\\x9e\\xbc\\xc7\\x5a\\xb9\\xfe\\x81\\xeb\\x27\\xa6\\x0b\\xf9\\xa9\\xfe\\xbe\\xea\\x22\\x99\\xd6\\xa6\\x86\\x06\\x8d\\x31\\x15\\x3f\\xb3\\x50\\xbb\\xff\\xe4\\xf5\\xeb\\x27\\xdf\\x74\\xa9\\xbf\\x30\\x3b\\x53\\x4c\\x2e\\xf8\\x23\\x4c\\xbd\\x11\\x38\\xe5\\xae\\xe0\\x4a\\x91\\x93\\xcb\\x62\\xcf\\xaa\\xdd\\x1b\\x54\\x4a\\x57\\x71\\x39\\x75\\x2d\\x25\\x0f\\xa6\\x7d\\xab\\xf7\\x3a\\x0b\\xd6\\x84\\x6d\\x73\\xaa\\xa0\\x69\\x85\\x2b\\xfe\\xf5\\x7b\\x5f\\x67\\x5d\\x4f\\xf8\\x11\\x24\\xbd\\x79\\x44\\xde\\x89\\xb6\\xd8\\x5b\\x2f\\xa7\\x0b\\xf2\\x3f\\xdf\\xa3\\xc6\\x77\\x3a\\x8e\\xbd\\x57\\x75\\x56\\x7e\\xaf\\x2b\\x36\\x75\\x40\\x8e\\xd5\\xbf\\xdf\\x15\\xff\\x0e\\xbd\\xd8\\x45\\x7a\\xd9\\x7d\\x7b\\xd4\\x5f\\xd7\\x0a\\x53\\x53\\x05\\xe7\\xd5\\x5c\\x31\\x7d\\x1a\\xc7\\x01\\xcf\\xc4\\x95\\x9a\\x4c\\x5f\\xf4\\x04\\xdb\\x32\\x57\\xf6\\xee\\xd2\\x13\\x27\\x49\\x92\\x24\\x4a\\xf0\\xef\\x1f\\xf9\\xf6\\x9f\\xed\\x91\\xa4\\xee\\x97\\x44\\x49\\x14\\x45\\x91\\x7e\\x7f\\x8f\\xc8\\xce\\xa2\\x47\\xbe\\xd3\\x2d\\x55\\xf9\\xdb\\x35\\xe0\\xcd\\x47\\x4c\\x8a\\x04\\x5d\\x0d\\xd8\\xac\\x54\\x6e\\x0f\\x09\\xf2\\xe7\\x44\\x69\\x66\\x56\\x3a\\x3a\\x3b\\x23\\x89\\xd2\\x5b\\x7a\\x24\\xc8\\x27\\x25\\x69\\x66\\x86\\xfd\\x49\\x8d\\xae\\x4a\\x7b\\xf0\\xfa\\xfd\\xd8\\x33\\x9d\\x39\\xc5\\x03\\x9f\\x89\\xa7\\x52\\x71\\x16\\xcc\\x51\\x6b\\xe4\\x5e\\x38\\x9b\\x6d\\xec\\x85\\xd9\\x4f\\x25\\x71\\xd4\\x3b\\x33\\x85\\x0a\\x7c\\x01\\xfb\\x60\\xff\\xc1\\xf3\\xa1\\xe1\\xae\\x42\\x48\\x6b\\x0b\\xfd\\x6f\\xa0\\x8c\\x7f\\x5f\\xd4\\xd0\\xf2\\x2e\\x65\\x7c\\x1a\\x62\\xbe\\xbb\\x19\\xcd\\x21\\x40\\x9c\\xe9\\xb8\\x96\\x3b\\x56\\x51\\x89\\x33\\x5d\\x78\\x21\\x8c\\xde\\x23\\x3f\\xf6\\x33\\x87\\x0f\\xff\\xcc\\x63\\xf2\\x07\\x2f\\x6e\\xdc\\x18\\xfc\\x89\\x9f\\x18\\xbc\\xb1\\x81\\xda\\x78\\xff\\xf4\\xfe\\x0d\\x53\\xa9\\x58\\x35\\x55\\x55\\xe2\\x24\\x95\\xfd\\x10\\xa3\\x8b\\xc2\\xa9\\x1f\\x9a\\x68\\x3e\\x26\\xbf\\x87\\xfd\\xfc\\x0b\\xfb\\x5e\\xb3\\xd4\\x5f\\xb9\\xe7\\xc6\\xc6\\x45\\x56\\x88\\xbf\\x84\\x08\\x44\\xc4\\x4a\\x5e\\x08\\x4c\\xa9\\xb7\\x94\\x89\\x1f\\x3a\\x25\\xe0\\x52\\x4f\\x51\\x95\\xfe\\xa5\\xd7\\xfc\\x4a\\xa7\\xb8\\x10\\xc2\\x08\\xe1\\xbb\\x01\\x04\\xa5\\xe5\\xd0\\x71\\x74\\x1e\\xee\\x8a\\x8b\\xa0\\x25\\x2d\\xc0\\x1c\\x6f\\x96\\x0d\\x95\\x41\\x9e\\x72\\xc0\\x06\\xe4\\x32\\x03\\xcb\\x45\\x17\\x0a\\x94\\xa1\\x7c\\x2e\\xb8\\xfc\\xc6\\x80\\x8e\\x9a\\xe4\\x4c\\x89\\x63\\xc0\\x5b\\x18\\x5d\\x7f\\xbe\\x3f\\x1f\\x3a\\x61\\x8c\\xdf\\xf7\\xe8\\x5c\\x32\\x31\\x11\\x0d\\xcc\\x19\\x89\\x90\\x20\\xca\\xfb\\xf7\\x8f\\x85\\xc2\\xa1\\xe1\\xd4\\x68\\x36\\x33\\x1c\\x1b\\xcb\\x8d\\x8c\\x8c\\xa7\\x53\\x63\\xc3\\x23\\xa2\\x3c\\xd4\\x77\\x7a\\xfc\\xbe\\x21\\x06\\xc7\\x15\\x40\\xcf\\x3c\\xbc\\xb8\\x96\\x1a\\xbb\\xef\\xbf\\x1f\\x7c\\x7b\\x91\\xe3\\x1f\\x98\\x8b\\x89\\xfd\\x8a\\x20\\x6e\\x5e\\x1e\\x18\\x8b\\x46\\x63\\x7d\\xb1\\x51\\x69\\x60\\xa8\\x2c\\xce\\x4b\\xfc\\xf0\\x60\\xa6\\x3f\\x26\\xfd\\xae\\x87\\xd1\\xd5\\xc9\\x71\\x80\\xc8\\x61\\x2c\\xbb\\x58\\x03\\xb2\\x51\\x68\\x87\\x2c\\x37\\x00\\xef\\x0d\\x3b\\xdf\\x60\\x41\\xa4\\x56\\x6b\\xdb\\x71\\xb0\\x40\\xd6\\x19\\x4c\\x49\\xc8\\x45\\xdd\\xf0\\xb3\\xa2\\xa1\\x04\\x95\\x85\\x43\\xe0\\xb4\\x2b\\x08\\x41\\x17\\x88\\xee\\xbb\\x2f\\xb5\\xaa\\x58\\xb3\\xac\\xd6\\x16\\xae\\x6d\\x5b\\x96\\x63\\x59\\x78\\xbb\\x4a\\x88\\xbd\\xb1\\x6e\\x59\\x18\\x6d\\x6c\\x78\\xb1\\x07\\x4d\\x37\\x5b\\xbf\\xd4\\x89\\x0a\\xe2\\x20\\x1a\\xaa\\x07\\xe2\\x57\\xf0\\x72\\x07\\xf0\\x69\\x98\\x8f\\x8c\\xa6\\xe0\\x85\\x48\\xd1\\x27\\xa0\\x41\\x77\\x58\\x38\\xd0\\xa9\\xcd\\x4d\\x22\\x74\\xe0\\xdc\\x05\\x06\\x96\\xdc\\x1d\\x8f\\x92\\x43\\xc8\\x74\\x85\\x93\\xb2\\x2b\\xa1\\xa8\\x6e\\x45\\xde\\xb3\\xe7\\x60\\xb4\\x7a\\x71\\xb5\\x01\\x52\\xe3\\xbf\\x67\\x95\\xb0\\x0a\\x6b\\x82\\x30\\x5e\\x2a\\x3d\\x06\\x02\\xa5\\xef\\xb9\\xdc\\xed\\x29\\x32\\x15\\xa5\\x18\\x6e\\xb3\\x22\\x79\\x7d\\xfc\\x4b\\x2f\\xcc\\xe1\\xd5\\xf3\\xab\\xf8\\x23\\x50\\xc4\\x4f\\xc3\\xd3\\xf4\\xfa\\x13\\x63\\x4a\\x69\\xfc\\x0e\\xd4\\xf6\\x7a\\x2f\\x5e\\x4f\\x40\\x04\\xff\\x4b\\xbc\\xed\\xce\\xb5\\x07\\x11\\x32\\xbb\\x30\\x02\\x0c\\x9d\\xce\\x86\\x92\\x5e\\x36\\x25\\x40\\x10\\x10\\x7b\\x62\\x82\\x4d\\xa3\\xc3\\xf9\\xfd\\x33\\x1d\\xc8\\x80\\x93\\xc9\\x64\\x68\\x22\\xba\\xb1\\xc2\\x95\\x2e\\xc5\\x52\\x1f\\x4f\\x34\\x20\\x7f\\xef\\x57\\x19\\x8e\\x00\\x58\\x27\\xff\\x95\\x87\\x1e\\xa0\\x69\\x24\\x72\\x4e\\xf8\\xf1\\x21\\xa1\\x26\\xca\\xa7\\x21\\x9b\\x29\\x0d\\xdb\\x7f\\x0f\\xf2\\x61\\x47\\x7f\\xff\\x77\\x70\\xc5\\x0c\\x67\\x72\\x07\\x5f\\x95\\x29\\x48\\x9c\\x6a\\xd0\\x99\\x38\\xc4\\xa9\\x26\\xcb\\x69\\x3c\\x71\\xfb\\xe6\\xcd\\xdb\\x37\\x5f\\xb2\\x47\\x6e\\xdc\\x73\\x2d\\x73\\x0d\\x9f\\xce\\x5c\\xcb\\x30\\x88\\xd8\\xd6\\xad\\x8f\\xdd\\xba\\xf5\\xb1\\xcc\\xcd\\xf9\\xf4\\x61\\xe7\\xe1\\x4b\\xf9\\x4b\\x97\\x0a\\x97\\xf3\\xc8\\x57\\x8f\\x1f\\xa3\\xd4\\x27\\x07\\x86\\x7b\\xea\\x2c\\x71\\xaa\\xc9\\x71\\xaa\\x89\\x05\\xb8\\xa0\\x29\\x5f\\xa5\\xb8\\x96\\xb9\\x96\\x79\\x89\\xd6\\xca\\xa4\\x5c\\x6b\\xdb\\x57\\xf1\\xd9\\xc2\\xe5\\x7c\\xfe\\x52\\xfe\\x12\\x0a\\x21\\xd9\\xad\\x91\\x21\\x1a\\x15\\x20\\xf3\\x15\\x20\\x6b\\xc2\\x20\\xb9\\x04\\x45\\x24\\x75\\x2c\\xb5\\x74\\xb5\\xa3\\x57\\xc7\\x31\\xa3\\x60\\x3b\\x06\\xa3\\x1e\\xcf\\x25\\xbe\\xf9\\xcd\\xe2\\x95\\xa5\\x85\\xbf\\x3a\\x8b\\x53\\xa5\\xcc\\x9c\\x79\\xea\\xe2\\xcd\\x39\\x7e\\x34\\x3b\\x3a\\x8e\\x7f\\x39\\x73\\x2d\\xf3\\x23\\x99\\xd1\\x82\\xa6\\x5d\\xbc\\x99\\x28\\x44\\xae\\xe0\\x7f\\x3e\\x9c\\x1d\\x6e\\xdd\\xfe\\xa6\\x66\\x2c\\xad\\xe2\\xa7\\xce\\xb6\\xfe\\xa4\\x94\\x99\\x9b\\xbb\\x75\\xe1\\xa4\\xc9\\x27\\x73\\x89\\xf1\\xd9\\xc2\\xe5\\xfc\\x6a\\x24\\x9f\\xbc\\x75\\x61\\x7a\\x32\\x3f\\x3a\\xb6\\x74\\xc5\\xdf\\x2b\\xcc\\x8a\\x01\\xbd\\x0f\\x6b\\x9d\\x29\\xf6\\xde\\x03\\xb7\\xf7\\xff\\xd3\\x23\\x92\\x73\\x5c\\x1c\\xf6\\x75\\xc7\\x1b\\xbd\\xfe\\xff\\xda\\x3a\\xfd\\xea\\x05\\x5f\\x67\\xbc\\xb3\\xdd\\xff\\x61\\xb0\\x8c\\x37\\x03\\x7d\\x20\\x4b\\xa7\\x91\\x82\\xe6\\xd1\\xd9\\x4e\\x5c\\x8c\\x29\\x0a\\x85\\x05\\x53\\x55\\xca\\x92\\x04\\xf2\\x64\\x59\\xa4\\x43\\xd1\\xcb\\x6e\\x5a\\x98\\xf0\\xed\\x4b\\x6e\\x7c\\x41\\x3b\\xf3\\xc9\\x7d\\x2f\\x2a\\xd8\\x12\\x2a\\xc2\\xfb\\x8c\\xbb\\x68\\x61\\xac\\x7f\\x84\\xcb\\xa7\\x73\\xd9\\x74\\xbe\\x7f\\x88\\x3b\\x0a\\x0f\\x7b\\xeb\\xd3\\xf0\\x66\\x63\\x14\\x8b\\x88\\x89\\x74\\x42\\x4b\\xa4\\x13\\x62\\x24\\x86\\x6b\\x54\\x3c\\x38\\xa2\\x1c\\x3d\\x56\\x1a\\xeb\\x1f\\xe2\\xf2\\x43\\x43\\x79\\x6e\\xa8\\xff\\x67\\x12\\x83\\xb5\\xa1\\x78\\x7c\\xa8\\x46\\xf5\\x6b\\x77\\xef\\x2b\\xcd\\x66\\x24\\xb6\\x42\\xf7\\x57\\xd8\\x36\\x86\\x76\\x46\\xe5\\x00\\xbf\\x9b\\x3f\\x06\\x69\\xb7\\xa8\\x9c\\x06\\x21\\xb6\\xe3\\x34\\x76\\x44\\x09\\x78\\x3e\\xb1\\x04\\xd8\\x28\\xf6\\x64\\xf7\\xd2\\x05\\xd8\\x1a\\x9e\\x7f\\xcc\\x73\\xec\\xd9\\x90\\x7d\\xb0\\x8e\\xa7\\x5b\\xdf\\x02\\xee\\xd4\\x0e\\x7f\\xa2\\x55\\x25\\xf4\\xf5\\xb7\\xa7\\xd1\\x84\\xba\\x62\\x55\\xdd\\x0c\\x73\\xbf\\x37\\x34\\xbe\\x07\\xfa\\x86\\x4e\\x75\\x3d\\x09\\x57\\xb7\\x68\\xa1\\x2c\\x0a\\xdc\\x47\\xdf\\xf4\\x00\\x97\\xd7\\xf2\\x5c\\x07\\x44\\x02\\x13\\x16\\x0c\\xee\\xaf\\x3b\\x31\\x3a\\x9a\\xf0\\xc5\\x4a\\xb2\\x79\\x73\\xa6\\x63\\xc3\\xf2\\x6a\\x56\\x5e\\xb9\\x05\\xce\\xea\\xc5\\x55\\x36\\x99\\x9a\\xbb\\xb7\\xa2\\x9a\\x1d\\x2f\\x95\\xc6\\xb3\\x18\\xc1\\xfc\\xfa\\xf6\\x3d\\x1a\\xd2\\xd5\\x92\\x01\\x40\\xec\\x6b\\xe7\\x2e\\x4b\\xbb\\x44\\x94\\x75\\x5a\\xf0\\xdf\\xa0\\x5a\\x4d\\xd3\\xfc\\xb4\\x4f\\x6e\\x07\\xd4\\xc0\\xfd\\xf3\\x75\\xc7\\xb1\\x7b\\xa9\\x31\\xa1\\xd2\\x4e\\x8c\\x62\\x18\\x0d\\x81\\xf5\\xc3\\x00\\x9c\\xfb\\xef\\xd3\\xe9\\xb6\\x5d\\xad\\x46\\x76\\xbf\\xd8\\x86\\x6d\\xad\\x57\\x2d\\x8c\\xf6\\xba\\xca\\x9d\\x35\\x9a\\x30\\x86\\xf6\\x02\\x59\\x71\\x6b\\x44\\x55\\xab\\x62\\xed\\x71\\x97\\x9d\\xaa\\x6d\\x37\\xbf\\x7f\\x7d\\x74\\x9e\\x92\\x3d\\x69\\xf9\\x95\\xab\\x6b\\xd6\\xb3\\x3f\\x61\\x66\\x9f\\xdd\\xbd\\xba\\x5a\\x3d\\xfb\\x7e\\x33\\xbb\\x57\\x85\\x3d\\x11\\x72\\x18\\x6c\\x5a\\xc0\\x84\\x41\\x15\\x51\\x15\\x4c\\x5b\\x1c\\x98\\xb6\\x0c\\x89\\xc3\\x1f\\xcc\\xdc\\x38\\x69\\xdb\\xc6\\xca\\xf0\\x2d\\x63\\x65\\x38\\x07\\x1f\\xf0\\x6b\\xa6\\xe6\\x4f\\xde\\xb0\\x2a\\xb6\\xb5\\x62\\x64\\xb3\\xc7\\x57\\x8c\\x42\\x26\\xe7\\x1e\\x41\\x3e\\xae\\xe8\\x30\\x20\\x8c\\xe8\\x2a\\xa7\\x0b\\xba\\xb9\\x0b\\x4c\\x33\\xb1\\xaa\\x55\\xab\\xf2\\x96\\x1e\\xb0\\xe6\\xed\\xf5\\xf5\\x4a\\xad\\x07\\xaf\\x39\\xe0\\xe3\\x9b\\x49\\xba\\xc8\\x82\\x3b\\x88\\x66\\xba\\x28\\x66\\x70\\x7d\\x27\\xbf\\x0c\\xcb\\x53\\xa9\\xe1\\x06\\x8a\\xba\\x5a\\x84\\xea\\x06\\x29\\xf2\\xa9\\x5a\\x2d\\xc5\\x83\\xca\\x50\\xb7\\x2c\\x6c\\x33\\xad\\xc3\\x3b\\xbb\\x0f\\xa4\\x6e\\x5e\\xe6\\xcd\\x84\\xff\\x47\\x5b\\x55\\xf7\\x77\\x0e\\x16\\x5a\\xdb\\x73\\x98\\xf7\\xff\\x3a\\xd8\\x85\\x3c\\x63\\x76\\xe6\\x0b\\x53\\x90\\x45\\x01\\x56\\xe6\\x24\\x07\\xf0\\x06\\x45\\x80\\x36\\x70\\x11\\x69\\x17\\x4c\\xd9\\xd0\\xcb\\xed\\x44\\x12\\x4e\\x94\\x30\\xa9\\x54\\x2a\\x5b\\x33\\x01\\x42\\x02\\x33\\x87\\xf9\\xc5\\x93\\x8b\\xfc\\x61\\xf7\\xc3\\xf0\\xa8\\x9c\\x9d\\x1b\\xce\\x0e\\xcf\\x65\\xe5\\xd1\\x61\\x8c\\x98\\xe3\\x40\\x1b\\xea\\x17\\x88\\xc0\\x0d\\x91\\x71\\x59\\x1e\\x27\\x43\\x9c\\x40\\x84\\xfe\\x21\\x2d\\xc5\\xcb\\xd9\\xd9\\x60\\x70\\x36\\x2b\\xf3\\x10\\x51\\x30\\x84\\xfe\\x3f\\xea\\xfe\\x06\\xbe\\xad\\xea\\x3e\\x18\\xc7\\xbf\\xe7\\x9c\\xab\\x7b\\x25\\x5b\\x92\\xf5\\x76\\x25\\xeb\\xc5\\xd2\\x95\\x64\\x4b\\x8e\\xae\\xed\\x38\\x96\\x65\\x99\\xbc\\x38\\x0a\\x84\\x10\\x92\\x00\\x49\\x40\\x4e\\x1a\\x20\\x0d\\x10\\xde\\xac\\x14\\x52\\x08\\x69\\x4a\\xb3\\x56\\x85\\x96\\xd2\\x40\\x29\\xa5\\x38\\x50\\xd6\\xd1\\xac\\xa5\\x8c\\xc5\\x94\\x76\\x1d\\xa5\\xb4\\xa3\\xcc\\xa5\\x94\\x76\\xc0\\x18\\xed\\x6a\\x3f\\x1d\\x63\\x7d\\x28\\xeb\\x58\\x17\\xf3\\xd0\\x8e\\x51\\x4a\\xbb\\xce\\xf9\\x7f\\xee\\xf7\\x9c\\x7b\\x75\\x25\\xdb\\xe9\\x9e\\xcf\\x7f\\x7b\\x7e\\xcf\\x03\\xb1\\x7d\\xef\\x39\\xe7\\x9e\\xf7\\xf3\\x3d\\xdf\\xf7\\xaf\\x87\\xcc\\x91\\x37\\x30\\x8a\\x07\\x46\\xc0\\xc8\\xe7\\xe5\\x5c\\x3e\\x97\\x2b\\x47\\xca\\xf9\\x11\\x03\\x67\\x52\\xc8\\xcf\\x14\\xe2\\x5c\\xd1\\xd1\\xf1\\x54\\xf7\\xb6\\xa4\\xe6\\x0b\\xed\\xae\\x5c\\x94\\xdb\\xa9\\x25\\xfd\\x1d\\x35\\x29\\xa8\\x18\\xc9\\x1d\\xfe\\xa4\\xb6\\x33\\x77\\x51\\xe5\\xa2\\x80\\x57\\x4b\\x6e\\xeb\\xb6\\x45\\x82\\xf2\\xf2\\x68\\x3a\\x4a\\xbe\\x88\\xcc\\x13\\x25\\x97\\xcd\\xc8\\x3d\\x91\\x6c\\xc8\\x0c\\xbc\\x32\\x52\\xca\\xb6\\x68\\x58\\xaa\\xb6\\x97\\x4a\\x43\\x23\\x53\\x33\\x35\\x33\\xed\\xfe\\x54\\x28\\xf7\\xd5\\x90\\x0e\\x2a\\x69\\x02\\x33\\xf3\\xe3\\x33\\xb7\\x12\\x1f\\x3a\\x98\\x73\\xbc\\x64\\xa3\\xef\\x8c\\x73\\x64\\x9e\\x22\\x71\\xc3\\x73\\x5a\\x73\\x0d\\xe2\\x92\\x9c\\xca\\x9c\\x31\\x65\\x1d\\xfc\\x6e\\xb2\\x47\\x9f\\x6c\\xd2\\xbc\\xb3\\x47\\x04\\x36\\x1d\\x47\\x93\\xe9\\xe9\\xe9\\xc6\\xdd\\x34\\x73\\x14\\xff\\xab\\x19\\xfb\\x00\\x21\\xd8\\x1c\\x8f\\x0e\\xe7\\x8f\\xbd\\xa2\\x1d\\xd1\\x54\\xed\\xbf\\x68\\xff\\x1a\\xe3\\xab\\x93\\x19\\xb4\\x24\\x44\\x3b\\x2e\\xb4\\x5a\\xe2\\x76\\x5c\\xe5\\xcb\\x2e\\x4b\\xd6\\xeb\\xb7\\x27\\xeb\\xf5\\xe4\\x65\\xf7\\xa3\\xe1\\xa1\\x30\\x76\\x6a\\xf2\\xe1\\x87\\x1e\\x9c\\x89\\xb0\\xa7\\x5b\\x18\\xab\\x76\\xfe\\x38\\x19\\x6f\\xf6\\xd5\\x47\\xaa\\xba\\x3e\\x53\\xaf\\x37\\xfb\\xe6\\x5b\\x78\\xd3\\x76\\x70\\xbd\\x68\\x7f\\x09\\xdd\\xe2\\x71\\xbd\\x44\\x75\\x6a\\x6a\\x6a\\xbe\\x3e\\x35\\x35\\x45\\xa6\\xeb\\x27\\x61\\x66\\xa6\\x5e\\x9f\\x9a\\x99\\xb1\\x9d\\x2a\\xee\\xbd\\xc8\\x28\\x5f\\x2e\\x46\\x98\\x3f\\x2d\\x94\\x1c\\xc9\\xe4\\xfc\\xec\\xa6\\xf0\\x44\\xf8\\x39\\x02\\x48\\x97\\x90\\x29\\x5d\\x57\\xd5\\xf9\\x69\\x02\\x38\\x31\\x76\\xfd\\x68\\x8a\\x5a\\x09\\x18\\x7d\\x2e\\x6f\\x5d\\x3f\\x11\\x4b\\x9d\\x19\\x51\\x93\\x83\\x07\\x2b\\xc7\\x8f\\x1f\\xaf\\xd7\\x85\\x4a\\x73\\xd4\\x4f\\x2a\\x37\\xbc\\x82\\x62\\x36\\x52\\xad\\x0b\\xc5\\x20\\x63\\x6e\\x25\\x1b\\xf5\\x13\\x81\\x14\\x2c\\x6f\\xdc\\x6c\\xad\\x31\\x68\\x96\\x4a\\xff\\x08\\x0f\\x99\\x8c\\x2e\\x0d\\xe7\\x8f\\x1b\\xbf\\x97\\x2f\\x48\\x21\\x15\\xa4\\x0f\\xae\\x70\\xbb\\xea\\x2e\\x8f\\xc7\\x55\\x77\\xb9\\xe7\\xa7\\x90\\x68\\xb8\\x12\\x5f\\x30\\x79\\x69\\xab\\xd3\\xae\\x07\\xff\\x91\\x5b\\x9d\\x32\\x70\\x41\\x8d\\xfc\\x86\\x7c\\x1c\\x9f\\x3c\\x1c\\xab\\x25\\x46\\xc1\\x88\\x81\\xc9\\xba\\x92\\xef\\x4b\\x92\\x5d\\xa9\\x93\\x70\\x28\\xf5\\xae\\x8f\\x7d\\x2c\\xf9\\xb1\\x57\\x8d\\xf7\\x24\\x7e\\xfa\\xae\\xa7\\x6f\\x4d\\xde\\xda\\x62\\xf9\\x93\\xe2\\x96\\x3f\\x41\\xae\\x36\\xb7\\xc0\\xf4\\x26\\x82\\x0a\\xed\\xf3\\xb3\\x27\\x38\\xd1\\x68\\x59\\xdd\\x84\\x6b\\xb5\\x13\\x27\\x48\\x5d\\x6f\\x36\\xb9\\x99\\xae\\xd5\\xec\\x1c\\x9b\\x08\\x46\\x43\\xb2\\x55\\x6b\\x6c\\x11\\x7f\\x1a\\xc3\\x47\\x15\\x83\\x06\\xb4\\xc3\\xed\\x3b\\x69\\xd6\\xac\\x93\\xc2\\xfc\\xac\\x1e\\x0d\\xec\\x2b\\xbf\\xf0\\x42\\x39\\x59\\xab\\x35\\xd8\\x38\\xd5\\x2a\\x29\\x54\\xab\\xfe\\xd8\\xfc\\xbf\\x8d\\x16\\x46\\x93\\xb5\\x5a\\x33\\x7e\\xca\\x2d\\x7d\\xcb\\x8a\\xd2\\x1a\\x23\\x9b\\x2c\\xdf\\xf6\\xe5\\x6d\\xbd\\x78\\xec\\x9f\\x0b\\x79\\x3c\\x21\\xcf\\x0f\\xbe\\xbc\\xed\\xcb\\xa4\\x8a\\x67\\x7f\\x9d\\xc7\\x48\\x11\\x9e\\x32\\xe7\\xc8\\x1c\\xc6\\x58\\x10\\x7e\\xb4\\xb8\\x65\\x3f\\x22\\x59\\x5c\\xad\\x85\\xfb\\xd9\\xb2\\xab\\x14\\x21\\x1f\\x9b\\x7c\\x2d\\xac\\x69\\x61\\x2d\\xea\\xdf\\x96\\x19\\xcc\\x6c\\xf3\\x47\\xb5\\xce\\x74\\xba\\x53\\x8b\\xfa\\xc7\\x53\\x7d\\xa9\\x71\\x7f\\x94\\xa8\\xfc\\xaf\\x99\\x6c\\x96\\x12\\x1f\\x8d\\xdb\\xf5\\xe9\\xbd\\x10\\x86\\x24\\xe4\\xb8\\x5f\\xb4\\x61\\x83\\x76\\xe2\\x5c\\x61\\x73\\x48\\x52\\x0b\\xf9\\xfa\\xcd\\xdb\\x2f\\x57\\x82\\x5d\\xd7\\x54\\xd2\\xe7\\x11\\x11\\xa7\\xa6\\x2d\\xec\\xf3\\x85\\x7d\\xfb\\xf1\\x77\\xf5\\xf2\\x0d\\xe1\\x98\\x63\\xd7\\xd6\\xac\\xec\\xde\\x20\\xd8\\x4f\\xe7\\x77\\x18\\x39\\x1d\\xf8\\x1b\\x47\\x7d\\x1a\\x72\\x17\\xd0\\x3f\\xe8\\x00\\x13\\x72\\x1a\\xee\\xf7\\x5b\\x56\\x08\\xa4\\x4a\\x83\\xab\\xc2\\x67\\x0c\\xad\\xcc\\xe5\\x56\\x0e\\x9d\\x31\\xbc\\xe6\\xcc\\xd3\\x12\\x83\\x03\\xeb\\xcb\\x5d\\x2b\\xd6\\xf7\\xf7\\xaf\\x5f\\x91\\xbf\\x60\\x6c\\x0c\\x21\\x12\\xaf\\xa3\\x13\\xb1\\xd2\\x31\\xc6\\x7d\\x18\\x28\\xd9\\x1c\\xba\\x32\\x08\\x25\\x69\\x24\\x12\\x34\\xfd\\x5b\\xe4\\xd1\\x53\\x0e\\xca\\x82\\xe8\\xe0\\xc0\\x88\\xaa\\x6b\\x51\\xdd\\xd9\\xeb\\xd4\\xa3\\x9a\\xae\\x8e\\x0c\\x0c\\xd2\\x3d\\x43\\x67\\x84\\x57\\x0d\\x96\\x52\\xa9\\x33\\xd7\\x0c\\x63\\xb3\\x07\\xf4\\xbe\\xd5\\x03\\x61\\xad\\x90\\x08\\x87\\x13\\x05\\x2d\\x3c\\xb0\\xba\\x4f\\xa7\\xe4\\xdc\\xf5\\x2b\\xba\\xca\\xeb\\x07\\x06\\x13\\xf1\\xb1\\xb1\\x0b\\xf2\\x46\\x67\\x16\\xa1\\x54\\xfe\\xff\\xb4\\x1f\\x30\\xfd\\xed\\xa5\\xd1\\x13\\x3a\\x4e\\x77\\x24\\x3f\\x22\\x44\\x35\\xc5\\xa1\\x72\\xa4\\x01\\x62\\x8a\\x11\\xce\\x01\\xf9\\xee\\xf6\\xc0\\xda\\x9d\\x6b\\xd7\\xf6\\xa5\\x12\\xbb\\xdb\\xbd\\x02\\xd6\\x4c\\xd5\\x7f\\x80\\x48\\xf7\\x39\\xdb\\x13\\xa9\\xbe\\xb1\\xb1\\x9d\\x6b\\x03\\xef\\x76\\x72\\x78\\x53\\xe7\\xed\\x8c\\x90\\x67\\x31\\x8a\\x45\\x9a\\xeb\\x99\\xa2\\x80\\xa1\\x54\\x54\\x84\\x7d\\x70\\xde\\x98\\xc8\\x11\\xa4\\x18\\xd5\\x6c\\x39\\x47\\x2e\\xbb\\x32\\x75\\x55\\xef\\xe0\\x58\\x5f\\x5f\\x7d\\x24\\xd5\\x9f\\x3f\\xcd\\xa9\\x4b\\x9f\\xcc\\xaf\\x74\\xea\\xce\\x0b\\x46\\xd7\\x60\\xda\\xb7\\xae\\x4a\\x5d\\xd9\\x85\\x4f\\x83\\x3d\\xdd\\x0f\\x0c\\xf6\\x8c\\x6c\\xc2\\x17\\xf0\\x34\\x41\\x6b\\x9f\\xa0\\x84\\x33\\x90\\x43\\xad\\x93\\x61\\x18\\x85\\xd5\\xdc\\x73\\x00\\x2b\\x15\\x55\\x87\\x19\\xfa\\xc1\\x61\\x86\\xf0\\x57\\x8c\\xd4\\x4c\\xae\\x84\\x41\\xdf\\x30\\x64\\x8f\\xc2\\x43\\x13\\x0c\\x8f\\x58\\x61\\x98\\x2b\\xba\\xae\\x9f\\x04\\x03\\x46\\x07\\xa2\\x18\\x49\\x05\\xdf\\x03\\x51\\xbd\\x6a\\x20\\xfc\\x7a\\x1d\\xc3\\xe8\\x72\\x73\\x3c\\x03\\x53\\x29\\x9c\\x04\\x3d\\xe6\\x27\\x30\\xab\\xfb\\x63\\xc2\\x77\\x9e\\xf1\\xaa\\xf3\\x58\\xfe\\x04\\x78\\xb8\\xff\\x71\\x5d\\x07\\xd7\\x02\\x9a\\x2e\\x05\\x59\\xe8\\xc5\\x18\\x0a\\x68\\xf1\\x50\\x14\\x01\\xf4\\x82\\x2d\\xda\\xe3\\x18\\x6f\\xb6\\x54\\x54\\xfd\\x46\\xcf\\x4d\\x97\\x08\\x93\\xba\\x5e\\xa8\\xcf\\xa0\\xfd\\xde\\x8c\\x01\\xc5\\xea\\xfa\\xfc\\x0c\\x86\\x70\\xd5\\xd1\\x67\\xa8\\xae\\xd7\\x67\\x66\\x8c\\x7b\\x87\\x97\\xf0\\xc7\\xd0\\xf5\\x1d\\x18\\x43\\xc1\\xc8\\xfe\\xe3\\x85\\x02\\xc7\\x0b\\xab\\x78\\x83\\x31\\x03\\x8f\\x2c\\xa7\\xd5\\xb4\\xb0\\x82\\xe0\\x3a\\xf7\\x85\\xc9\\xc9\\x6a\\xbd\\xae\\xcf\\x4d\\x4e\\xd6\\xeb\\xff\\xbb\\x9c\\x5e\\x69\\x81\\xcc\\xc4\\xe2\\xf9\\x99\\x7e\\xef\\x68\\x2b\\x97\\x7e\\x6d\\x9f\\xa6\\xf5\\xa5\\xaa\\xe8\\x19\\xaa\\x6a\\xfc\\xd2\\x8a\\x9c\\x3f\\x8f\\x29\\xdf\\xc6\\x94\\x93\\x80\\x2f\\x44\\x5f\\xc0\\xcf\\x56\\xb9\\x34\\x80\\x08\\xf7\\x44\\x45\\xee\\xcf\\x51\\x91\\x55\\xb5\\x38\\x5c\\x56\\x4a\\x59\\x2b\\x2a\\x09\\x59\\x17\\x1a\\xda\\x30\\x54\\x88\\x65\\x62\\x9e\\x58\\xb4\\x10\\x8d\\x16\\xce\\xe0\\x20\\xc7\\x17\\x4a\\x64\\x87\\x86\\xb2\\xfe\\x58\\x2c\\xe3\\x89\\xc7\\xd3\\xed\\xe9\\xf8\\xa7\\x0a\\x05\\x32\\x61\\xea\\x9c\\xd9\\xc7\\x13\\x5f\\xc8\\x37\\x77\\xd8\\x64\\x21\\x4d\\x11\\xb7\\xdc\\xc9\\x72\\xd9\\xfc\\xd7\\xc4\\x42\\x67\\xb6\\x0c\\x21\\xf1\\x9b\\x41\\x29\\x43\\x02\\x71\\x90\\x88\\x92\\xe7\\xe0\\x91\\xe3\\x9a\\x7c\\x50\\x4a\\x3e\\x5f\\x1c\\x26\\xa0\\x6d\\xf6\\x5d\\xb8\\xf2\\xfe\\xf7\\xbe\\xf7\\xfe\\xd1\\x64\\xdf\\x9a\\xb1\\x9d\\x3b\\x0f\\xef\\xa8\\x8c\\xd3\\xf3\\x2b\\xa4\\xba\\xab\\x3f\\x56\\x9e\\xd9\\x7f\\x6c\\xff\\x68\\xaa\\x6f\\xc7\\xe1\\x1d\\x3b\\xc6\\xc6\\xd9\\xf9\\x5b\\xad\\xf8\\xb6\\x48\\x2d\\x18\\x04\\x60\\x39\\x82\\x7c\\x84\\x99\\x89\\xca\\xcc\\x4c\\x65\\x62\\xbc\\x3a\\x35\\x3d\\x3d\\x55\\x37\\xe6\\xb2\\x0e\\x3a\\xa9\\x0b\\x5d\\xbf\\x20\\x00\\x31\\xb6\\x63\\x24\\xaf\\xa8\\x45\\x96\\x36\\x5d\\x2a\\x12\\xa8\\x1e\\x3f\\x5e\\xad\\x1e\\x9f\\x31\\xd0\\xdb\\x93\\x50\\xad\\x92\\xf6\\xea\\xe6\\xcd\\xd3\\xd5\\xea\\x66\\x52\\xaf\\x57\\xab\\xc6\\x0f\\xd7\\xf4\\xe5\\x35\\xb9\\xd0\\xf3\\x81\\xf8\\xb6\\x6e\\x7d\\x33\\x63\\x16\\x6d\\x68\\xc2\\x1a\\xf3\\x9a\\x6f\\xd8\\xed\\x85\\x6d\\xd1\\x5f\\x17\\xd5\\x82\\x3d\\x3d\\x3f\\x92\\x5f\\xc1\\xdd\\x15\\x34\\x2b\\xc1\\x92\\xaa\\x1e\\xcf\\xe7\\xe3\\xfa\\x34\\x6a\\x80\\x3f\\xb8\\x50\\x0b\\xb6\\x19\\xc6\\x76\\x34\\x60\\x6c\\x43\\x15\\xb1\\x50\\x30\\x77\\x45\\x45\\xd7\\xa7\\xea\\x75\\xd3\\x8d\\x46\\x93\\xcd\\x58\\x3b\\x62\\xd9\\x60\\x9c\\xcf\\x56\\x89\\x53\\xa4\\x54\\x54\\xe7\\x0a\\x17\\xda\\xf6\\xc1\\x74\\xc1\\xa8\\x6a\\xce\\xbe\\x01\\xbe\\x83\\xd6\\x2b\\x0d\\x49\\x6f\\xd2\\x80\\x03\\x68\\x8a\\x59\\x5e\\x02\\xcd\\x98\\x9b\\x9d\\xad\\x5a\\x9c\\x24\\x9d\\xd4\\xe7\\x0d\\x9c\\x65\\xaa\\x52\\xa8\\x54\\xa7\\xa3\\x81\\xf9\\x19\\x63\\x9c\\xe3\\xe3\\xa4\\x6f\\xbc\\x8a\\x5e\\x5b\\xab\\x30\\x4c\\xa6\\xc8\\x8b\\x20\\x73\\xaa\\x0f\\xc5\\xb2\\x65\\xc1\\x25\\x2c\\x13\\xd8\\x95\\xdb\\xf2\\xa5\\xa1\\xbd\\x77\\xec\\x1d\\x7a\\xff\\x6e\\x52\\xda\\x95\\x2b\\x0d\\x6f\\xf9\\xcd\\xd0\\x27\\xf6\\xee\\xfd\\xc4\\xd0\\xfb\\x51\\x92\\xcc\\xa3\\x26\\x79\\x51\\x4f\\xb6\\x01\\x8c\\x8a\\x43\\xe4\\xd0\\xc5\\x17\\x7b\\xc2\\xe8\\xae\\xec\\x44\\x98\\xdc\\x7c\\xf3\\xcd\\x01\\x9c\\x5c\\xc4\\x94\\xf8\\x37\\x12\\xc7\\x60\\xf2\\x59\\xb5\\xa7\\xe5\\xd3\\xea\\x96\\x2d\\x27\\x88\\xc7\\xf6\\xfd\\x64\\xad\\x36\\xfb\\x86\\x55\\x05\\xb4\\xd9\\x4e\\x99\\x1b\\x42\\x10\\x85\\x24\\xfa\\xd1\\x1d\\xe4\\xd1\\x14\\x7a\\x8a\\x23\\xc3\\xf9\\x6c\\x38\\xa4\\x8c\\x94\\xb3\\x72\\xde\\x78\\x96\\x43\\x91\\xc8\\x48\\x39\\x1b\\xce\\x8f\\x94\\x65\\x45\\x0d\\x47\\x72\\xf9\\x3c\\x46\\xb4\\x95\\x43\\x65\\x59\\x29\\xe6\\x22\\xb9\\x7c\\x38\\x62\\xc9\\x3b\\x2e\\xde\\x28\\xcb\\x1b\\xd9\\xb2\\x35\\xda\\xda\\xb6\\x28\\x63\\x7b\\x19\\x1b\\x4a\\x78\\xb6\\x7b\\x4e\\x6b\\x0b\\xad\\xd1\\xb4\\x35\\xa1\\xb6\\xad\\x1b\\x19\\xdb\\x28\\x4f\\x19\\x69\\x87\\x8c\\xf7\\x2f\\x71\\xe9\\x64\\x22\\x99\\x50\\xfb\\x6e\\x0b\\x8d\\xf6\\x6e\\x57\\xfb\\x54\\xb5\\x4f\\xfd\\xd0\\xb2\\xbe\\xbe\\xd9\\xde\\xee\\xd0\\xe8\\xf1\\xd1\\x50\\x77\\x6f\\x41\\xed\\x53\\x13\\xc9\\x6f\\x2c\\xeb\\xeb\\xeb\\x33\\x5e\\xeb\\xad\\x32\\x43\\x27\\x7a\\x98\\xc2\\xb0\\x38\\xf9\\x72\\x36\\x58\\x5a\\x10\\x77\\x83\\xe8\\x93\\xfa\\x0f\\x92\\x3f\\xd8\\x32\\xa1\\x9b\\x08\\xe9\\xe4\\x24\\x99\\x9e\\xdc\\xf2\\x83\\xe4\\x0f\\xe6\\x67\\x27\\x27\\xed\\x62\\x3f\\x19\\x2a\\x30\\x49\\xa6\\x49\\xad\\x49\\x9b\\xcf\\xf2\\x2c\\xd2\\x83\\x3f\\xfc\\x96\\xc3\\x2b\\x82\\xe8\\xf3\\x33\\xe2\\x87\\x3b\\x7e\\x25\\x35\\x7d\\x0a\\x61\\x7f\\x55\\x17\\x0f\\xff\\x1f\\x9d\\x3f\\xb3\\x4d\\x26\\xe2\\xac\\x09\\x1a\\xae\\xa5\\x9d\\x46\\x10\\x7a\\xd5\\x32\\x08\\xaa\\x1b\\x77\\x73\\xa3\\xbd\\xa7\\xf2\\x23\\xf9\\x65\\x6b\\x77\\xae\\xdd\\x85\\x1d\\xa9\\xce\\xce\\x1a\\x28\\x90\\xd5\\x9e\\xd1\\x0d\\x6c\\x73\\x3a\\xd6\\x88\\x76\\xa1\\x5b\\xd1\\x0b\\xb2\\x5c\\xf3\\x3e\\xad\\x06\\x7f\\x8f\\xc6\\xbd\\xbd\\xf5\\xb1\\x45\\xd4\\xee\\x1b\\xad\\xeb\\x8b\\x6b\\xde\\x4f\\x5b\\x3e\\x59\\xcc\\xfd\\xed\\x83\\x4e\\xae\\x51\\x82\\x9a\\x46\\x4a\\x9e\\x23\\x99\\x91\\x08\\x5d\\xd2\\xb1\\x2e\\xd9\\xef\\x4b\\x85\\x23\\x1d\\xbe\\x8e\\x8e\\x48\\x38\\xd5\\x71\\xe1\\x97\\x16\\xf3\\xb3\\xfb\\x4d\\x5f\\x5f\\xaa\\xc3\\xe7\\xeb\\x30\\x0a\\x5e\\x48\\xdc\\x8b\\x39\\xdd\\x15\\x34\\xc2\\x0c\\x05\\xa4\\xa0\\x17\\x21\\x93\\xb2\\x6a\\xb1\\x44\\x6c\\xde\\x5c\\xf5\\xa9\\x7a\\x81\\xd4\\xed\\x1e\\x89\\xeb\\xd5\\x29\\xbb\\x25\\x2e\\x05\\x2f\\xbf\\xb3\\xf2\\x41\\x9b\\x19\\xc3\\x22\\xf4\\x2b\\xda\\x2d\\x84\\x9b\\x28\\xd8\\xf9\\xb7\\xb9\\xc9\\x02\\x29\\xd8\\x69\\x58\\x6a\\xd9\\x32\\x22\\x54\\x24\\xfc\\xbe\\xb2\\x5c\\x7e\\x96\\x8a\\xa5\\xb4\\xca\\xed\\x84\\x10\\x19\\x86\\x6a\\xa5\\x50\\x39\\x11\\x88\\x1a\\xa4\\xd5\\xfc\\x6c\\x15\\x2d\\x70\\x88\\x3e\\x5e\\xaf\\xcf\\xf2\\xa6\\xf4\\x99\\x19\\x5d\\x78\\xa1\\xfd\\xef\\x39\\x99\\x0d\\xdb\\x41\\x9b\\xcf\\x3a\\x8c\\xd8\\xd7\\x83\\x36\\x06\\x25\\x05\\xbd\\x67\\x19\\xe8\\x9d\\x71\\xf7\\x72\\x7e\\x21\\x09\\xd7\\x2a\\x95\\xe9\\x4a\\xad\\x56\\x35\\xde\\x8c\\x87\\x4a\\xa5\\x56\\x19\\xaf\\x54\\xc6\\x8d\\x47\\xd5\\xf8\\x65\\xe7\\x79\\x78\\xb8\\xee\\x6a\\x4f\\xd9\\x8e\\xbe\\xb7\\xb2\\x5e\\x2c\\x5a\\xf1\\x8a\\xe4\\x58\\xc7\\xe8\\xd6\\xd1\\xd1\\xde\\x58\\xf4\\xe6\\xc6\\x52\\x1e\\x41\\x0c\\xeb\\x70\\x72\\x2c\\x1a\\xeb\\x1d\\x1d\\xdd\\x3a\\xda\\xf1\\xaf\\x76\\x1d\\xbd\\x5a\\xca\\xc8\\xfe\\xef\\xe1\\xb3\\x34\\x22\\xfd\\xb7\\xa3\\x0e\\xa2\\x80\\x32\\x06\\x2a\\xd8\\x58\\xd6\\x91\\x86\\x13\\xed\\x70\\xc4\\x5a\\x5e\\xd4\\x41\\x14\\x1e\\x8e\\xd0\\x84\\xf3\\x68\\xff\\x98\\x3e\\xb4\\x61\\x48\\x1f\\xeb\\x3f\\x6a\\xea\\x1f\\xce\\x71\\xfb\\x2b\\x7f\\x2c\\x26\\x8c\\x3a\\xfb\\x9d\\x67\\x2d\\xcf\\x16\\x8b\\xd9\\xe5\\x67\\x39\\xfb\\xad\\x40\\xff\\x4d\\x5e\\x02\\x3a\\xb8\\x9f\\x90\\x66\\xe9\\xc3\\x02\\x0e\\xb5\\xe9\\x07\\xb0\\x21\\x77\\xa8\\x36\\x3b\\xec\\xa8\\xab\\x5d\\x3d\\x3d\\x5d\\xaa\\x90\\x37\\x5c\\xd1\\xea\\xb5\\x83\\xc7\\x13\\x04\\x32\\x4f\\x01\\x14\\x38\\x03\\xce\\xb1\\x79\\xf4\\x8d\\x84\\x39\\xbf\\x52\\x51\\x42\\xd9\\x6c\\xa6\\x94\\xcf\\xe5\\x8d\\xd7\\x5c\\xb9\\x3c\\x9c\\x1b\\x1e\\x29\\x19\\x0f\\x23\\xc6\\xed\\x56\\x1e\\x2e\\x16\\x87\\xd4\\x08\\xda\\xe4\\xa3\\x71\\xbe\\x1a\\x92\\x39\\x6b\\x3b\\x4b\\x94\\x9c\\x70\\x9c\\x71\\x6d\\x84\\x51\\x95\\x49\\x31\\xd6\\x21\\xc9\\x05\\x59\\x72\\xb6\\xc5\\x1c\\x54\\xa5\\x2c\\x42\\x88\\x91\\x41\\x1d\\x31\\xb7\\x8c\\x19\\x92\\xd7\\xca\\x38\\xef\\xf4\\xdd\\xf4\\xd7\\x64\\x8a\\x78\\x37\\x23\\x9c\\xa0\\x7e\\x26\\xf5\\x38\\x68\\x3b\\x53\\xba\\x24\\xa9\\x4b\\x92\\xdb\\xa9\\xa3\\x47\\x62\\x7e\\xe2\\x94\\x14\\x12\\x60\\x52\\x8f\\x44\\xdb\\x9d\\x2c\\x21\\x49\\x09\\xea\\x6a\\xa7\\x52\\x8f\\xc4\\x02\\x4c\\xa1\\xce\\xe3\\xbb\\x4f\\x77\\x7a\\xc9\\xd4\\xaf\\xa9\\xe5\\x5d\\x68\\xce\\xe2\\x3e\\x2e\\x6a\\xf5\\x6b\\x11\\x5a\\x35\\x9b\\x3d\\x75\\xbd\\x50\\x28\\xd4\\x16\\x9a\\x53\\xcf\\xd6\\xeb\\x06\\xe5\\xf4\\x7f\\x4a\\x07\\x91\\x89\\x18\\x4e\\x06\\xfe\\x1b\\x46\\xbd\\x01\\xd3\\x07\\x8a\\x1a\\xb2\\x93\\xc9\\x16\\x61\\x39\\x49\\xf4\\xcd\\xa5\\xcd\\xaf\\x98\\x11\\xc2\\x48\\xd4\\x5f\\x37\\x68\\xc7\\xba\\x31\\x82\\xe9\\x3d\\x95\\x3d\\xb5\\x86\\x87\\x95\\x68\\x41\\x37\\x03\\x0b\\x36\\xc5\\xae\\x4f\\x73\\x18\\xa4\\x9c\\xd2\\x11\\x03\\x81\\xe9\\x7a\\xa5\\xd5\\x3b\\xc7\\xe0\\xc5\\xe8\\x84\\x62\\x7a\\xb2\\x32\\xd2\\xea\\x84\\xe1\\xe2\\x41\\x74\\x38\\x61\\x8e\\x87\\x53\\x9c\\x1e\\x80\\x60\\xb1\\x94\\xe5\\xbc\\x84\\x08\\x21\\x23\\x73\\x85\\x42\\xa1\\xa0\\xde\\x7a\\xe8\\x24\\x9c\\x84\\x83\\xa4\\x8a\\xa7\\x56\\xbd\\x70\\xfe\\x19\\xb2\\x6a\\x97\\xdd\\xae\\x90\\xaf\\xe6\\xa2\\x52\\x4e\\x87\\xb1\\x8e\\x2d\\xd2\\x4d\\x52\\x3d\\xbe\\x88\\x68\\xb3\\xca\\x29\\xc8\\x76\\xa8\\x92\\x5f\\x21\\x2c\\x33\\xb0\\xca\\x6c\\x39\\xcf\\xb2\\xf9\\x72\\x51\\x89\\x04\\xc9\\xe4\\x9e\\x3d\\xd5\\x3d\\xa3\\x0f\\x55\\xf9\\x1f\\x74\\x28\\x7e\\xd9\\xfc\\x9b\\xc6\\x6f\\xe2\\xb5\\xcf\\x18\\xf6\\x85\\x58\\xaa\\x85\\x11\\xd3\\xf5\\x68\\x3e\\x6f\\xf4\\xe5\\xf0\\xfa\\xfd\\xc7\\xf6\\xaf\\x4f\\x96\\x77\\x1c\\xde\\x51\\x3e\\xbb\\x40\\xee\\x5a\\xb9\\x73\\xeb\\xfe\\xfd\\x5b\\x77\\xae\\x4c\\xf6\\x9f\\x35\\xb6\\x63\\xc7\\xd8\\x59\\x7d\\xe7\\xcc\\xcc\\xc0\\x7f\\xb3\\x27\\x72\\xd6\\x62\\x71\\x00\\x04\\xb5\\x22\\x16\\x50\\xbb\\xed\\x7b\\x7c\\xfb\\x57\\xd8\\x09\\xc5\\xda\\xfe\\xd3\\xe2\\xeb\\xeb\\xf3\\x27\\x5a\\xb4\\xcf\\xcc\\xda\\x3c\\x68\\xdd\\x89\\x1e\\xaf\\x4d\\x45\\x19\\x8c\\x31\\xc0\\x0d\\x69\\xd3\\x25\\x52\\xf3\\xb8\\x66\\xaa\\x6e\\x17\\x51\\x5d\\x9e\\xaa\\xcb\\x5d\\x9d\\x73\\xb9\\x89\\x4a\\xc0\\xe5\\x1e\\x27\\xba\\xb1\\x33\\x2a\\x6e\\xd7\\xfc\\x74\\xd5\\xed\\xd2\\xa7\\x1b\\x91\\x3e\\x66\\x44\\xbc\\xd0\\x1e\\x80\\xb2\\x3f\\x52\\x6e\\xfc\\xef\\x47\\xe3\\x27\\xfe\\x7f\\x8f\\x80\\xfe\\xe8\\xb9\\x4e\\x5b\\xfc\\x3f\\xa2\\x71\\x9e\\x89\\xf1\\xa3\\x93\\xe3\\xf6\\xac\\xf9\\x71\\xdb\\xcb\\xaf\\x4c\\x11\\x31\\xd7\\x69\\xe0\\xfc\\x04\\x37\\x62\\x43\\x1a\\xac\\x43\\x89\\x68\\x44\\xc9\\xe5\\x65\\xe3\\x4a\\xc6\\x06\\x5b\\xc3\\x42\\x2c\\x40\\xd1\\x84\\x41\\x7e\\xa4\\x2c\\x94\\x31\\xc8\\xd4\\x7b\\xfa\\xb3\\x15\\xa7\\xb3\\x92\\xed\\x7f\\x8f\\x71\\x37\\x1d\\xb0\\x39\\x2e\\xb3\\x5d\\x53\\xcb\\xa5\\x5c\\x2c\\x1d\\x6a\\x6f\\x0f\\xa5\\x63\\x39\\x69\\xa6\\xbe\\x3a\\xba\\xa3\\xbd\\x7d\\x47\\x74\\x75\\x7d\\xa2\\x50\\x20\\x15\\x5b\\xec\\x88\\x64\\x34\\x70\\xc2\\x00\\xf5\\x27\\x02\\x51\\xaf\\x12\\xcb\\x25\\x3a\\x3a\\x12\\xb9\\x98\\xe2\\xb5\\xce\\x07\\xa7\\x21\\xdb\\x1a\\xb6\\x34\\x4a\\x30\\x88\\xe4\\xe3\\xec\\xdc\\xdc\\xcc\\xf8\\x78\\x55\\xd7\\x31\\xc8\\xec\\x7f\\x2b\\x7d\\xff\\xdf\\xe7\\x83\\xfb\\xbf\\x66\\x07\\x57\\x60\\xb3\\x88\\xd4\\x62\\xf3\\xbf\\x16\\x41\\x55\\x21\\xae\\x99\\x8c\\x0b\\x17\\xf9\\xc2\\x56\\x03\\x25\\x79\\x65\\x42\\x9b\\x90\\x73\\xc3\\x2b\\xb7\\x6d\\x3b\\xb0\\x35\\x2d\\xcf\\x8c\\x62\\xe2\\x84\\x36\\xe1\\x97\\xd3\\x5b\\x0f\\x6c\\xdb\\xb6\\x72\\x38\\x27\\x1b\\xf0\\xa0\\x1f\\x74\\xf2\\xb7\\x38\\xe2\\xb5\\x36\\x9f\\x6e\\x8d\\x1b\\xd5\\xb8\\x70\\xf2\\x8d\\x1b\\x35\\x37\\x5c\\x6e\\xdc\\xa7\\xc2\\xe6\\xdc\\xba\\x4f\\x43\\x3f\\x45\\xed\\xfd\\x13\\xfd\\x8a\\x43\\x97\\x5c\\x25\\xb5\\xc3\\x49\\x9d\\xe3\\x4e\\xea\\x0c\\xfa\\x4b\\x2e\\x49\\x77\\x28\\xfd\\x84\\x2c\\x9d\\xf5\\xb5\\x3e\\xe3\\xe3\\xb6\\xac\\xc3\\xb5\\x49\\x61\\x6a\\x87\\x3c\\xea\\x72\\x8d\\x3a\\x3d\\x2a\\x53\\x36\\xb9\\x1c\\x59\\x25\\xa1\\x2c\\x95\\x61\\xd3\\x52\\x2b\\xc3\\x59\\x70\\x1e\\x40\\xf7\\x70\\x5e\\xb8\\x39\\x47\\x3f\\xac\\x06\\x59\\x20\\x2b\\xc6\\xab\\x1c\\x89\\xc8\\xa1\\x88\\xf1\\x27\\x5c\\x2e\\x87\\x23\\x91\\x70\\xd1\\xc0\\xfc\\x46\\xca\\xc6\\xeb\\x48\\x7e\\x41\\x88\\x45\\x0b\\x07\\xdc\\x4f\\x34\\x87\\x94\\x64\\x72\\x8f\\xc7\\x2d\\x53\\xc7\\x6a\\x99\\xc8\\x3e\\x57\\x8f\\x43\\x4a\\x4a\\x0e\\x8d\\x2c\\x9d\\x95\\x6b\\xe8\\xb0\\xa2\\x1c\\x28\\xf6\\x76\\xc8\\xd1\\x29\\xc9\\xc3\\x0e\\xda\\xd1\\xe6\\xc8\\xcb\\x72\\xaf\\xa2\\x74\\x50\\xb9\\x28\\x4b\\x9d\\x8e\\xa5\\x32\\xfe\\xc6\\x0e\\xfa\\x27\\x63\\x66\\xd4\\x33\\x10\\xe3\\x0d\\x1b\\x38\\x7d\\x40\\xa8\\xa1\\x37\\x6d\\xfe\\xe2\\xb0\\xa9\\x84\\xfa\\x95\\x63\\xfb\\xf7\\x6f\\x3d\\xbd\\x98\\xec\\x5d\\x3e\\xb6\\x63\\x87\\xb1\\xfd\\xab\\x95\\x39\\xac\\x88\\x4c\\xef\\x3f\\xb6\\xbf\\x37\\x19\\xc7\\xed\\x5f\\xad\\x6e\\x5d\\xcb\\xcd\\xfc\\x65\\xa8\\x01\\x90\\x1b\\x29\\x08\\xdf\\x82\\xa6\\xf4\\x73\\x11\\xef\\x82\\x41\\xe1\\x49\\x16\\xf1\\xba\\x35\\xbd\\xbd\\x6b\\x6c\\xbe\\x05\\x2b\\xfa\\xac\\xae\\x17\\xfe\\xa6\\x77\\x2b\\x51\\xb6\\xf6\\x5e\\x78\\xd1\\x8d\\x9f\\xbf\\x34\\x79\\xe8\\x7d\\xc9\\x4b\\x3f\\x3f\\x0f\\xdc\\xfc\\x10\\x1c\\x60\\x5c\\x64\\x75\\x0a\\x4b\\xc9\\x58\\xed\\xde\\x4d\\xcc\\x08\\xd6\\xa4\\x7a\\x1c\\x95\\x45\\xf0\\xd7\\xa4\\x5e\\x2f\\xd4\\xf5\\x29\\x84\\x96\\x55\\x8e\\x38\\x18\\xb7\\xa6\\x3f\\x66\\xb5\\xd1\\xd0\\x31\\x72\\x20\\x57\\x73\\x99\\x71\\x02\\x8d\\x49\\x52\\x4a\\xf9\\x72\\xa9\\x58\\x8e\\x18\\xc0\\x43\\xcd\\x2a\\xf9\\xc8\\x22\\x77\\x32\\x81\\x58\\x2e\\x77\\xad\\xa6\\x95\\xcc\\x7f\\xaf\\xb4\\xdc\\xcf\\x95\\x7a\\x6e\\x38\\x37\\x59\\xb2\\x95\\x58\\xb7\\xf0\\xbe\\x46\\xbd\\xef\\x1b\\xc8\\x2f\\xc8\\x6d\\xe0\\x40\\xb9\\x1c\\xf7\\x85\\x8a\\x3e\\x5f\\x15\\x11\\x9d\\x1d\\xf9\\x0c\\xdc\\x4f\\xec\\x07\\x0e\\x1c\\x48\\x5f\\x7c\\xf1\\xb5\\x85\\x71\\x7d\\x4a\\x8f\\x5d\\x7c\\x71\\xfa\\xc0\\x01\\x72\\xdb\\x6d\\xb7\\xc5\\xf7\\xef\\xff\\xa8\\xb0\\x17\\x2c\\x7c\\x74\\xff\\xfe\\xf8\\x6d\\xb7\\x71\\xbc\\x22\\x23\\x3c\\x52\\x27\\xa0\\x17\\xf7\\x81\\x9a\\x15\\xa4\\xbe\\x43\\xe5\\x2c\\xd4\\x12\\x37\\x53\\x50\\x11\\x84\\x99\\x99\\x9f\\x7b\\xea\\x88\\xbe\\xff\\xd8\\x7e\\x9d\\xc0\\xd9\\xc9\\x4a\\x25\\x79\\xb6\\x96\\xea\\x4b\\x5d\\x7f\\x78\\x47\\x61\\xed\\xce\\xb5\\x05\\x32\\x77\\xe4\\x12\\xe3\\xa6\\xbf\\xe4\\xae\\x0d\\x3c\\x73\\x83\\xa7\\x3b\\x9c\\x4a\\x85\\xbb\\xbf\\xb1\\x63\\xcc\\x20\\xc0\\xc7\\x30\\x4e\\xb6\\xe9\\xdd\\x25\\x0c\\x19\\xd4\\xb1\\x3c\\x93\\xcb\\x0a\\x84\\xcf\\x6f\\xa6\\xe2\\x62\\x61\\xcb\\x91\\xc6\\x23\\xb2\\xde\\x43\\xdc\\x2b\\x78\\xd9\\xe6\\x21\\xdc\\x5e\\x9c\\xd4\\xea\\x9d\\x41\\xbd\\x30\\xae\\xd7\\x75\\x77\\xc0\\x3d\\xa5\\xd7\\x0b\\x9e\\x80\\x7b\\xbe\\x5a\\x2f\\xe8\\xc1\\xce\\xa9\\x7a\\x67\\xb0\\x10\\xec\\xac\\x16\\x8c\\x3c\\xcf\\x54\\xa1\\xa0\\x6a\\xca\\xae\\x5d\\x1d\\x64\\x47\\xb5\\x5e\\xaf\\xba\\x3c\\x9e\\xdd\\xfc\\x8f\\x6b\\x7e\\xb6\\x50\\xe8\\xef\\xd8\\xb5\\x4b\\xd1\\x54\\x51\\x46\\xd1\\xc8\\x5a\\x51\\x08\\xfe\\x9f\\xef\\xbf\\xdd\\x33\\x7e\\x17\\x40\\x50\\x35\\x29\\xab\\x62\\x29\\x52\\x14\\x7e\\x20\\xac\\xf8\\x00\\x53\\x85\\x70\\x21\\x5c\\xd0\\xd5\\xca\\xf1\\x8a\\x2a\\x44\\xe7\\x15\\x63\\x13\\x55\\x2a\\xf5\\x3a\\xfe\\x18\\x34\\x03\\xa0\\x7c\\xcc\\x8c\\xb6\\xc1\\x65\\x0c\\x79\\x28\\xc2\\xaa\\x46\\xd4\\x2d\\x93\\x36\\x68\\xe5\\xce\\x9a\\x10\\x72\\x84\\x9f\\x57\\x6c\\x55\\x16\\x5f\\x90\\x31\\xa4\\xa7\\xd6\\xe0\\xef\\x2f\\xa2\\xe2\\xe4\\xbb\\x9f\\x3a\\x72\\xe4\\xa9\\x23\\x9f\\xc6\\x94\\xa9\\x80\\xb7\\xe2\\x0d\\x18\\xbf\\xb8\\x29\\xc5\\x34\\xea\\x21\\xff\\x01\\x3e\\xff\\x78\\xbf\\x51\\x9c\\xac\\x3a\\x62\\x94\\xff\\x63\\xcc\\xf8\\x11\\x7e\\xf4\\x07\\xdc\\xac\\x42\\x6e\\xc2\\xa9\\xc3\\x10\\x45\\x8f\\x81\\x8b\\x47\\x22\\x54\\xf2\\x79\\x35\\xdf\\x13\\x51\\xf2\\x91\\x6c\\x2b\\x86\\x3d\\xa7\\xeb\\xd5\\x12\\x29\\x95\\x4a\\x75\\x7d\\x7c\\x11\\x54\\x7b\\x7e\\x6e\\x64\\xc4\\x20\\x9b\\x74\\xfd\\xb1\\x91\\x66\\xfd\\x06\\x0d\\xba\\xd1\\xfb\\xc9\\xef\\xf3\\xfb\\x96\\x17\\x8a\\x86\\x8b\\xf9\\x7e\\xe3\\x54\\x47\\xa7\\xae\\x17\\x48\\x45\\xdf\\xb3\\x38\\xe1\\x71\\x9b\\x80\\x94\\x55\\x00\\xe1\\xa9\\xcd\\xf2\\x03\\x95\\x2e\\x15\\x55\\xb6\\x04\\xf6\\xee\\x37\\xa1\\x65\\x45\\x6f\\xdb\\xb4\\xf7\\x8e\\xbd\\x9b\\x92\\x6b\\x36\\x4f\\x6c\\x1e\\xeb\\x2f\\x14\\xea\\xba\\xae\\x93\\x3f\\x1e\\xde\\xb9\\x61\\xef\\xde\\x0d\\x3b\\x87\\x93\\xb9\\x8d\\xa5\\xcd\\x9b\\x4b\\x1b\\x7b\\xce\\x9f\\x99\\x99\\x37\\x21\\xe6\\x2e\\x50\\xc9\\x83\\x14\\x30\\x22\\x75\\x27\\x8e\\x92\\xbb\\xe7\\xc8\\x8f\\x28\\xc2\\x51\\x87\\x9d\\xa1\\xd9\\xe4\\xdd\\x0b\\x2e\\x3b\\x23\\x39\\x7a\\x6c\\x34\\x79\\xa6\\xab\\xef\\x70\\x5f\\x32\\xb5\\x2b\\xb5\\x0a\\xaf\\x94\\x1a\\x57\\x62\\x70\\xbb\\x5d\\x14\\xce\\x4c\\x8e\\x8e\\x26\\xcf\\xfc\\x70\\x5f\\x5f\\x32\\x95\\xfa\\x63\\x53\\xef\\xe1\\x24\\x18\\xfb\\xde\\xc0\\xb0\\xc1\\x81\\xb7\\xcf\\x24\\xc6\\xc0\\x0c\\xa2\\xc5\\x77\\x1e\\x71\\x75\\x11\\x4c\\xa0\\x88\\xa3\\x64\\x62\\x7c\\x23\\x1c\\x75\\xc5\\x15\\x40\\x2f\\xe6\\x93\\x9b\\x4b\\x85\\xd2\\xe6\\xee\\x33\\x2e\\x3a\\x63\\x85\\x5e\\x2f\\x38\\x90\\xcb\\x30\\xa5\\x13\\x7d\\x64\\xbb\\x73\\xc3\\x06\\xe7\\xf6\\x91\\xe5\\x63\\x63\\xcb\\xe7\\x67\\x8c\\x81\\xce\\xe5\\x62\\xf5\\x58\\xce\\xf8\\x35\\xff\\x0b\\xdd\\x16\\x97\\x71\\xc6\\xf4\\xfe\\x52\\x2e\\xe7\\xcb\\x78\\xa4\\xac\\xcd\\x64\\x1d\\xaa\\xe9\\x63\\xc7\\xd4\\xf1\\x42\\x9d\\x23\\xc0\\xf5\\xce\\xc0\\x78\\xa0\\xb3\\x5e\\xab\\xd6\\x74\\x5d\\x9f\\x9f\\xe3\\x8e\\x60\\x30\\x6c\\xa3\\xd0\\x45\\x37\\x4e\\x15\\xaf\\x93\\xf3\\x9c\\x4a\\xfc\\xa0\\x5a\\x32\\x09\\xb3\\x56\\x87\\x9a\\x36\\xd3\\x08\\xdc\\x70\\x43\\x55\\xaf\\x45\\x03\\xf3\\x33\\x81\\xce\\x89\\x68\\xa0\\x1a\\x88\\xce\\x4f\\x93\\x6a\\xa7\\xf1\\x1e\\x9d\\xae\\x56\\x8c\\xa6\\x38\\x2e\\xad\\xa3\\xc4\\x72\\xce\\x68\\x6e\\xce\\x86\\x49\\x1b\\x78\\x74\\xa6\\x81\\xcd\\xe5\\x8b\\x79\\x0c\\xb0\\x24\\xcb\\x0a\\x77\\x13\\xca\\xf7\\x6a\\x79\\x64\\x28\\xc2\\x5d\\x56\\xab\\xf5\\xca\\xb5\\x57\\xb8\\x3c\\x6d\\xbd\\x0e\\x97\\x36\\x7f\\x42\\x73\\x8d\\x10\\x8f\\xeb\\x8a\\x8b\\xe5\\x4e\\x99\\xa3\\x1c\\x9f\\xda\\xbd\\xdb\\xed\\xea\\xfd\\x54\\x30\\x95\\x7a\\x86\\x4a\\x2e\\xf7\\xed\\x2e\\xd7\\xff\\x15\\xf1\\xf9\\x94\\x16\\xaf\\x83\\x7c\\xc7\\xf4\\x9c\\x22\\x92\\x5b\\x8b\\x27\\xb3\\xa9\\xa9\\xa9\\x5a\\x8d\\x3b\\x44\\xb0\\x05\\xbd\\x21\\x55\\x1e\\x2c\\x52\\xd7\\xeb\\xe6\\x43\\xb3\\x3a\\x00\\x83\\x61\\xd0\\x04\\x56\\x61\\x9c\\x12\\xe1\\x49\\xdd\\x98\\xe5\\x7c\\x56\\xc9\\x06\\x8b\\x41\\xf2\\xd7\\xc9\\xe7\\xf6\\x25\\xcf\\xbd\\x67\\x67\\x5f\\x35\\x7a\\xa8\\xb3\\xff\\x3d\\xbd\\xef\\x21\\xae\\xe4\\x73\\xef\\x49\\x9e\\xf7\\x8d\\x83\\xaf\\x54\\x2a\\x44\\x9d\\x9f\\xb3\\x5b\\x1e\\xb9\\xc0\\x6f\\xf7\\x40\\x6b\\xc9\\xce\\x76\\x75\\x6e\\xbd\\x7a\\xd9\\xb2\\xab\\xb7\\x76\\xee\\xda\\x89\\x54\\x41\\xfd\\xca\\x33\\x5d\\x7b\\x2e\\x71\\x9e\\x79\\xe5\\x08\\x49\\x99\\xb2\\xd4\\xff\\x9a\\x18\\x36\\x12\\x54\\xa1\\x46\\xa6\\x30\\x5a\\xb4\\xd0\\xdd\\x32\\x65\\x21\\x25\\x35\\x5d\\x8a\\xa8\\xd9\\x52\\x95\\xb3\\x27\\xe7\\x8f\\xcf\\xce\\x92\\xc9\\xc2\\x14\\x4e\\xce\\x14\\xb7\\x45\\xd6\\x85\\xb4\\xaa\\x0d\\x02\\x22\\x2e\\xcc\\x50\\x44\\x46\\x8b\\xdf\\x91\\x91\\xf0\\x50\\xb3\\x93\\x06\\xd3\\x68\\x76\\x3a\\xdc\\x55\\x9c\\x2c\\x9f\\x7e\\xcf\\xa6\\xad\\x27\\xfc\\x78\\x4c\\x0f\\x22\\x59\\x35\\x27\\x27\\x06\\x06\\x4b\\x91\\x6e\\x5f\\x58\\x8b\\x0d\\x0e\\xc6\\xf6\\x20\\x2b\\x70\\x95\\xe0\\xa6\\x72\\xb9\\xd8\\x34\\x99\\x44\\xde\\x30\\x10\\x93\\x21\\x8c\\x0e\\xe5\\xc9\\x74\\xf5\\xe8\\xd1\\xd9\\xa3\\x47\\xab\\xa4\\x52\\xad\\x14\\x2a\\xf5\\x4a\\xa1\\x52\\xb5\\x69\\x96\\xe1\\x17\\x41\\xce\\xfd\\x8e\\x20\\x3f\\xb9\\x38\\x8d\\xbc\\xee\\x4a\\xb5\\x5a\\x29\\xf0\\x8f\\xab\\xd5\\xa3\\x36\\x8a\\x4d\\xe6\\x14\\x5b\\x0f\\xce\\x65\\x24\\x8f\\x77\\x6c\\xde\\x92\\x80\\xdd\\x50\\xd2\\x4b\\x9b\\x8f\\x19\\xbf\\xfa\\xb9\\x50\\xb2\\x5a\\xdd\\xfc\\x5c\\xb5\\xba\\x79\\x93\\xe5\\xb5\\x40\\x85\\x12\\x99\\x23\\x5f\\x83\\x08\\xf2\\xdd\\x5b\\xb9\\xa1\\x6a\\xd6\\x9f\\xf6\\x67\\x4b\\x2c\\xcf\\xc3\\x09\\xda\\x14\\x07\\xeb\\x75\\x52\\xaf\\xe3\\x18\\xc8\\xd7\\xcc\\xb0\\xf1\\xc6\\xee\\x2c\\xcc\\xcf\\x10\\xbd\\x30\\x3f\\x57\\x9d\\x9e\\xb6\\xc9\\x3a\\x1d\\x62\\xd5\\x4b\\xd9\\x85\\xf8\\xeb\\xf4\\xd4\\x8c\\xfd\\xb6\\xab\\xcd\\x54\\xe7\\x67\\x9b\\xbd\\x21\\x03\\x5a\\xa0\\x98\\x37\\xa9\\xb1\\xf2\\x3e\\x11\\x73\\x5e\\x83\\x3c\\xea\\x53\\x0c\\xc3\\x69\\xb0\\x86\\xf3\\x13\\x38\\xcc\\x2d\\x73\\xb9\\x58\\x48\\x26\\x42\\x39\\x24\\x28\\x7e\\x18\\x5f\\x69\\x66\\xea\\x56\\x44\\x8c\\xb4\\xe1\\x91\\x86\\x14\\x8d\\xd4\\x0a\\x75\\x63\\xd7\\xe8\\xb1\\xf9\\xfb\\xd0\\x0f\\xc9\\x8c\\xae\\xfb\\x63\\xb3\\x33\\xc8\\xde\\xad\\xeb\\xb3\\xa8\\x20\\xc2\\x55\\x2e\\xa6\\x0a\\x85\\x29\\xdd\\x1f\\x33\\x4e\\xe2\\xfc\\x94\\xae\\x1b\\x7f\\x4f\\x82\\x71\\x48\\x63\\xfe\\x6a\\x7d\\xbe\\x8e\\x8a\\x17\\xa8\\xae\\xe7\\x8f\\xe9\\xc7\\x51\\x08\\x07\\xff\\x17\\xc4\\x75\\xe4\\x38\\x94\\xd1\\x7e\\x82\\x7b\\x90\\x67\\x3c\\xd0\\xbb\\x92\\xcf\\x95\\xb8\\x17\\xba\\x72\\x96\\xc7\\xab\\x27\\x93\\xe3\\xe3\\x55\\x7f\\xcc\\x73\\x7b\\xc4\\xa5\\x7e\\xcc\\x1f\\x23\\x84\\xad\\x6b\\xeb\\x22\\xd3\\x27\\x81\\x2b\\x9a\\x78\\x3e\\x11\\x71\\x79\\x94\\x4b\\xa3\\x7e\\xba\\xcc\\xe9\\x3c\\x1a\\x6b\\xf8\\x0f\\x9b\\xc3\\xb5\\x01\\xa2\\x14\\x05\\x80\\xe5\\xfe\\x9c\\xca\\x91\\xb0\\x8a\\xae\\xed\\x1c\\xfe\\xa2\\x9f\\xcc\\xf1\\xea\\xa6\\x1b\\xf5\\xcf\\x17\\xc6\\x89\\xce\\xeb\\xb2\\x57\\xff\\x3b\\x83\\x72\\x42\\x6a\\x12\\x28\\xa0\\x14\\x6b\\xb9\\xe9\\x33\\x07\\xfb\\x3c\\x32\\x52\\x36\\x1b\\x18\\x29\\xe6\\x17\\xb4\\x28\\xcb\\x46\\x93\\xe4\\x15\\x6f\\xc0\\x35\\xe1\\x57\\x58\\x3b\\xb9\\xd6\\xe5\\xa6\\x2b\\x5c\\xa1\\xad\\xc6\\xaf\\x3b\\xed\\xa9\\x44\\x0f\\x7a\\x6e\\xf3\\xba\\xae\\xf6\\x2b\\x6d\\xde\\x61\\xc5\\xed\\x8a\\x33\\xe7\\x7b\\x43\\x55\\xfc\\xdd\\x94\\xb1\\x94\\x5c\\x16\\x23\\x98\\x08\\xdf\\xf2\\x69\\x4b\\x3e\\x9b\\x56\\x0d\\xb4\\xca\\xb8\\x75\\xeb\\x0d\\xf9\\xec\\x9c\\x81\\xe3\\xa0\\xbf\\x9b\\x71\\xb1\\x2f\\x58\\x8b\\x57\\x71\\x08\\x0a\\xa3\\xbb\\xa5\\x7c\\x8a\\x4f\\xd6\\x6a\\x8b\\xf9\\x13\\x27\\x7a\\xad\\xba\\x98\\x37\\x71\\xbb\\xb7\\x00\\x6e\\x69\\x05\\x81\\x50\\x38\\xa2\\xe6\\x72\\xe8\\x64\\xb5\\xd5\\xaa\\xa8\\xb2\\x3c\\x37\\xba\\x71\\xe3\\x68\\xee\\xb3\\x18\\x7f\\x75\\x25\\x32\\x7d\\x48\\xe1\\x02\\x8c\\xf1\\x70\\xf0\\x22\\x6f\\x9f\\xe7\\x75\\x0c\\xbb\\xfa\\x0a\\x72\\x7e\\x2c\\x19\\x23\\x99\\x81\\x92\\xc5\\xad\\x45\\xf8\\x61\\xa1\\x7e\\x25\\xd9\\xc2\\xfd\\xca\\x66\\xe2\\x88\\x3d\\x95\\xdc\\x33\\x66\\x00\\xa5\\x9d\\x6a\\x38\\x96\\x89\\x85\\x13\\xdd\\x43\\x1b\\x86\\xa2\\xc9\\xdc\\xe6\\x89\\xcd\\x6b\\x06\\xd6\\xee\\xb8\\xfc\\xf6\\xcb\\x87\\xc8\\x3d\\x63\\xef\\xda\\x69\\x00\\xb1\\xaf\\xb8\\xa3\\xc6\\xc8\\xa2\\xee\\x7e\\x67\\x5f\\x32\\x3b\\x34\\x94\\x4d\\xc7\\x93\\x3c\\x06\\xc5\\xf2\\xb3\\x9c\\xba\\x73\\xcf\\xba\\x0d\\x97\\x5f\\xbe\\xe1\\xac\\x21\\x68\\xf2\\xc9\\xd7\\x86\\x5e\\x49\\x8b\\xf9\\x72\\x10\\xa3\\xed\\x04\\x15\\x1e\\x0a\\x2e\\x5f\\x0c\\x47\\x46\\xca\\x96\\x2d\\x9d\\xac\\x28\\xe4\\xfc\\x33\\xb3\\xe1\\x3d\\x7a\\xe7\\xe5\\x9d\\xfa\\x9e\\x73\\xfc\\xa7\\xd7\\x92\\xef\\xe9\\xed\\xd4\\xd5\\xc4\\x40\\xf8\\x17\\x47\\x0b\\x47\\xd7\\xc6\\x4a\\x64\\xf2\\xe2\\xd3\\x4e\\x42\\xa5\\x42\\x60\\x5f\\xdf\\xe9\\x13\\xc9\\x5a\\x5f\\xa9\\x37\\x55\\x5c\\xab\\x17\\x0a\\xfa\\xd6\\x55\\x84\\xcf\\x04\\xd7\\x74\\xc6\\x78\\x31\\xdc\\xa3\\x54\\xa4\\xac\\x92\\xea\\x8a\\xab\\xaa\\xf7\\x27\\xeb\\xd5\\x5b\\x56\\xd4\\x1b\\x4f\\xdc\\x86\\x7f\\x8a\\xcc\\x90\\x2a\\xc6\\x65\\x53\\x4a\\xe9\\x52\\xba\\x44\\x66\\xaa\\xf3\\xd3\\xa4\\xc2\\xc5\\x9c\\xcd\\x35\\x12\\x0c\\x82\\xc5\\x5d\\xe7\\x57\\xeb\\x2b\\x6e\\xa9\\xd6\\x93\\xf7\\x57\\xaf\\x22\\x75\\xeb\\x11\\xfe\\x8f\\xda\\x0a\\x34\\x7c\\xba\\xa1\\x7d\\x2f\\xd7\\x5b\\x0f\\x46\\x0c\\xa2\\x33\\x97\\x2b\\x95\\xb8\\xa5\\x47\\x7d\\xfa\\x9a\\xed\\xdb\\xaf\\xe1\\x86\\x1d\\x04\\xc6\\xeb\\xef\\xfa\\x74\\x28\\xf4\\xe9\\x77\\xd5\\x4d\\x19\\x21\\xb7\\x8e\\x4e\\x59\\x7e\\xb0\\x2c\\x56\\xaf\\xa3\\xe5\\x9d\\xfb\\x2b\\x9f\\x9f\\x44\\x6d\\xe4\\x9a\\xed\\x79\\xba\\xa1\\x93\\x3c\\x63\\x53\\x46\\x46\\x89\\x75\\x1d\\x6f\\x62\\x11\\x93\\xa5\\xec\\x2f\\xfa\\x83\\x45\\x7f\\x36\\xed\\x2f\\xfa\\xa7\\xa6\\xd5\\x4a\\x65\\x7e\\xa6\\x82\\xc3\\x32\\x7f\\x38\\x86\\x5d\\xb3\\x79\\x8f\\x44\\xea\\x29\\x8d\\x8e\\x82\\x8b\\x7e\\x52\\xaf\\x56\\xe7\\xa7\\xaa\\xea\\x2c\\xa9\\xcf\\xcd\\xcd\\x15\\x48\\x65\\x7e\\x7a\\x91\\x56\\x88\\x68\\xc1\\xf8\\x9f\\x54\\x6b\\xb5\\x93\\x50\\x53\\x6b\\x64\\xb2\\xb5\\x15\\x93\\x4a\\xb3\\x74\\x3a\\x5a\\xc7\\xcb\\x4a\\x69\\x55\\x27\\x93\\xf3\\x35\\x52\\x6f\\x0c\\x56\\x35\\xd6\\xaa\\xa2\\xbb\\xcd\\x61\\xba\\xe7\\xe7\\x2a\\x95\\x53\\x61\\x46\\x0e\\x01\\x85\\x2c\\xcc\\x88\\xff\\x90\\x49\\xe3\\x72\\x30\\x6f\\x25\\x19\\xbf\\x9f\\xb6\\x7d\\x7f\\x4a\\x4d\\x93\\x69\\x93\\xf5\\x4f\\x60\\x7e\\x12\\x7d\\x76\\x93\\xc9\\xea\\x4c\\xb5\\x3a\\x31\\x3e\\x5e\\xab\\x8a\\x07\\xac\\xb3\\xbe\\xb0\\x4e\\x63\\x3e\\xb3\\xe2\\xe2\\x35\\xf9\\x65\\xdc\\x1b\\x70\\xad\\x56\\xaf\\xa9\\xb5\\xb9\\xda\\x5c\\xad\\x56\\x23\\x93\\xf5\\x7a\\xdd\\xf8\\xe1\\x7f\\x38\\xee\\xd7\\x5c\\x1b\\x42\\xc8\\x08\\x6a\\x4b\\x15\\xfd\\xc6\\xf9\\x9d\\x99\\x9b\\xab\\xd7\\xe6\\x27\\x71\\xb2\\x8d\\x8f\\x8c\\xa9\\x46\\x8d\\x2b\\xfb\\x97\\xd6\\x98\\xaa\\xa4\\x36\\x3f\\x49\\x44\\x51\\x73\\xdd\\x8d\\x52\\x1d\\x5c\\x87\\x9e\\xb4\\x90\\x8d\\xc5\\x96\\xf7\\x6c\\x2b\\x59\\x89\\x2e\\x91\\x51\\x61\\x7e\\x16\\xc5\\x2f\\xc6\\xeb\\x1c\\x7f\\x32\\x36\\xe9\\x24\\x12\\x90\\xc6\\x13\\xfe\\x5e\\xfc\\x99\\xc3\\xac\\x3d\\x64\\x8e\\x1c\\xb3\\x7c\\xdd\\x59\\x3c\\x0c\\x0b\\x42\\x47\\xd0\\xf4\\x66\\xe4\\x35\\xc4\\x48\\x43\\x68\\xab\\x9f\\xb8\\xbf\\x9e\\x48\\xd4\\x8d\\x5f\\xa4\\x82\\xd8\\xe8\\x47\\xd1\\x5e\\xff\\xf9\\x9d\\x1b\\x37\\xee\\xdc\\xb9\\x71\\x23\\x08\\x2a\\xef\\x84\\xc0\\xc5\\x7a\\x0c\\x38\\x1d\\xe4\\x8e\\x17\\xb9\\xd1\\x6b\\x39\\xdf\\x88\\x91\\xae\\xe4\\x72\\xf8\\x96\\x1f\\x29\\xe7\\x72\\x11\\x61\\xf7\\x1a\\x91\\xb9\\xdd\\xeb\\x7f\\xb0\\x58\\xee\\x73\\xee\\xb5\\x7d\\x91\\xce\\xb4\\x53\\x8e\\xe5\\xe8\\x3d\\x71\\x72\\x63\\xdc\\x51\\xf2\\xea\\x43\\xe7\\xd5\\x13\\xd1\\xb2\\x5b\\xff\\x61\\x28\\x38\\x90\\x1f\\x38\\xef\\x43\\x89\\xce\\x15\\x63\\xce\\xb5\\xa4\\x92\\x8b\\x49\\xc5\\xce\\x48\\xdf\\x5a\\x77\\x9a\\xe6\\x62\\xb2\\xf3\\x9e\\xf8\\xfc\\x2d\\x71\\xc7\\xb0\\x37\\xb0\\x73\\xe3\\x58\\x9f\\xbb\\xaf\\xec\\x1c\\xe8\\xd8\\xb9\\x71\\x55\\x61\\x2c\\x18\\xea\\x5b\\xfb\\xff\\xbc\\x8c\\xc8\\x4e\\xe9\\x25\\x9a\\xf5\\x28\\xb8\\x6d\\x6c\\x5e\\x29\\x65\\x2d\\x70\\x66\\x57\\xa6\\x18\\xaf\\x56\\xf1\\x2f\\xd1\\xeb\\xf5\\x9a\\xae\\x13\\xb5\\x33\\x30\\x17\\x88\\x4e\\x14\\x0a\\x13\\xd1\\xc0\\x5c\\xa0\\xd3\\x92\\x61\\xce\\x88\\x93\\xd4\\xdf\\x6c\\x21\\xea\\x10\\x5a\\x4d\\x8b\\x69\\x34\\x71\\x8f\\xa8\\x64\\xaa\\xa2\\xd7\\xf5\\x8a\\xd1\\x62\\xad\\x5e\\x6b\\x0c\\xba\\x12\\x0d\\xd4\\x03\\xd1\\x99\\x7a\\xa1\\x50\\x28\\xf0\\x91\\xea\\xba\\xde\\x18\\x20\\xf2\\x08\\x74\\xbb\\x1f\\x06\\x86\\xf2\\xd3\\x52\\xd6\\xf2\\x7a\\xbd\\x48\\x5b\\xfa\\xf8\\x6c\\xa3\\x85\\x71\\xe4\\x3d\\x18\\xf8\\xe7\\x82\\x6a\\x8d\\xbb\\x6d\\x33\\x4a\\xc9\\x34\\xae\\x47\\x8e\\x12\\xa2\\x56\\x19\\x81\\x58\\xc5\\x08\\xa9\\x4d\\xa4\\x6a\\x72\\x6e\\x38\\x97\\xd6\\x82\\x21\\xd4\\x67\\xd9\\xb4\\x73\\x7b\\x69\\xfb\\x69\\x2b\\xb7\\x65\\xe4\\x99\\x09\\xad\\xe6\\x93\\xd3\\xc1\\x94\\x13\\xb5\\x60\\xaa\\xd5\\xd3\\xb6\\x6f\\x5b\\x59\\xcc\\xcb\\xfc\\x86\\xe3\\x31\\xbe\\x28\\xde\\xb1\\x91\\xb4\\x92\\x56\\xd3\\x04\\xee\\x98\\xff\\x99\\x82\\x2a\\x08\\x93\\x33\\x7a\\xc1\\xe2\\xac\\x70\\x1f\\x02\\x06\\xae\\x90\\xe7\\x0a\\xcf\\xf2\\x29\\xa2\\x3f\\x13\\x88\\xaf\\x5c\\x19\\x8f\\xaf\\x5c\\x79\\xd6\\x62\\xe1\\x9f\\x27\\x57\\xc5\\x63\\xab\\x56\\xc5\\xe2\\x5b\\xd7\\xee\\x1c\\x1b\\xdb\\x49\\x88\\x1e\\x6d\\xe8\\xde\\x44\\xed\\x9a\\xa5\\x41\\x8c\\x33\\x9d\\xe7\\xbc\\xf1\\x90\\xac\\x66\\x87\\xc7\\xa8\\xa9\\x0d\\xd7\\xea\\xfc\\xc5\\x00\\x78\\xff\\xb0\\x61\\xa8\\x52\\x08\\x75\\x86\\x62\\x99\\x58\\xa1\\xa3\\x59\\xe5\\xb4\\x3e\\x94\\x8d\\x9f\\x16\\x89\\xa4\\x3b\\xc2\\x5e\\xa3\\x0f\\xd9\\xdf\\xd8\\x45\\x73\\x3f\\x46\\xce\\x59\\xa5\\x05\\xd2\\x2f\\xb8\\x29\\x6c\\xd1\\xca\\x30\\x62\\x59\\xd3\\x4d\\xc1\\x2c\\xe9\\x9e\\x81\\x45\\xf6\\x00\\x90\\x86\\x0b\\xc3\\xa2\\xbc\\xa4\\xac\\x8f\\x80\\xae\\xea\\xba\\xaa\\x5f\\xbc\\x88\\xcc\\x8f\\xe8\\x46\\x8e\\x5e\\x5b\\x54\\xf4\\xd7\\x68\\x8f\\x09\\x4e\\x72\\x51\\xb5\\x7c\\xdc\\x2f\\x6c\\x67\\xb2\\x56\\xf3\\x2e\\xd6\\x44\\x45\\x1d\\x5f\\x5c\\xb2\\x68\\x40\\xc3\\x69\\x32\\x47\\x2a\\xe8\\xa9\\x35\\x02\\x29\\x93\\x16\\x2b\\x5b\\x67\\x96\\x4b\\x3e\\xc4\\x30\\x55\\xeb\\x1d\\x4f\\x5e\\x51\\x25\\xcf\\xe9\\xba\\x27\\x18\\xf4\\xe8\\xda\\x0d\\x7b\\x34\\xed\\xe8\\x1e\\x4d\\xab\\x6a\\x9a\\xae\\x69\\xa4\\x5d\\x55\\x4b\\x41\\x8f\\xea\\x09\\xea\\x75\\x4d\\xd3\\xf6\\xec\\x31\\x7e\\xda\\xf5\\x7a\\xa9\\x54\\xd7\\x6d\\x1a\\x09\\x5c\\xd6\\x12\\x45\\x0a\\xde\\x64\\xb1\\x15\\xd5\\x6c\\x8f\\xc0\\xfe\\xd1\\xfa\\xbb\\xc6\\x83\\x82\\xce\\x4f\\x57\\x2a\\x64\\xa2\\x52\\x99\\x9f\\x26\\xe3\\x95\\xd9\\x39\\x14\\x2e\\x4d\\x54\\x2a\\x95\\xa9\\x7a\\xbd\\x52\\x31\\xf6\\x79\\x09\\x2a\\xe4\\x39\\x32\\x23\\x78\\x2c\\xb9\\x7c\\xbe\\x94\\xa2\\xa5\\x14\\x0d\\x87\\x15\\x59\\xce\\x3b\\x8c\\x4d\\xaf\\x6f\\x3f\\x9c\\x49\\x85\\x26\\x96\\xad\\x7a\\xaf\\xc7\\xc3\\xa4\\xb0\\x67\\xfe\\x5e\\x72\\x74\\x7e\\xe2\\xf9\\x88\\xd6\\x76\\x8d\\x73\\x28\\xf1\\x95\\xf6\\xe9\\xa4\\x14\\xf1\\x78\\xdc\\xec\\x0c\\x3c\\xf1\\x79\\xa8\\x90\\x97\\xc8\\xa3\\xbc\\x3e\\x08\\xcb\\x8a\\xdc\\x41\\x73\\x06\\xea\\x69\\xfc\\x8c\\x60\\x85\\x3f\\x92\\x3d\\x9e\\xc3\\xdb\\xdf\\x9b\\x51\\x56\\xa4\\x0a\\x13\\x3b\\x97\\x7d\\xfa\\x3a\\xcf\\xfc\\x21\\xa3\\x4a\\xb2\\x36\\x16\\x96\\xd2\\xe1\\x64\\x9b\\xfb\\x02\\xa7\\x96\\xf8\\x4c\\xfb\\xc7\\x93\\xd2\\xab\\x58\\x67\\x1d\\xaa\\xc6\\x96\\x82\\x76\\x8c\\x39\\xc4\\x19\\xa5\\x45\\x63\\x67\\x97\\x8b\\x78\\xd8\\xeb\\xa8\\xe9\\xb5\\x79\\x62\\x73\\xad\\xb0\\x79\\xcf\\x9e\\xcd\\x33\\x06\\x7e\\x5f\\xda\\xbc\\xf9\\x57\\xef\\xdb\\xb3\\x07\\x63\\x38\\x4c\\x93\\x49\\x52\\x01\\x97\\xf0\\x13\\x91\\x15\\x8e\\x22\\xf0\\x36\\x46\\x45\\xc6\\xa2\\xcd\\x92\\x62\\x15\\x55\\xb3\\x64\\xb2\\xa2\\xeb\\xda\\x9e\\x19\\x97\\x7b\\x53\\x41\\x13\\x77\\xf1\\x0d\\x9a\\x46\\x34\\x55\\xd3\\xeb\\x6e\\x57\\x7b\\x45\\x43\\x65\\x89\\x71\\x97\\xbb\\xde\\x14\\x19\\x3c\\x28\\xb8\\x54\\x0b\\x2c\\xef\\x67\\xed\\x56\\xf7\\x73\\x85\\xc2\\x4c\\x6b\\xbc\\xe6\\x86\\x2c\\x1d\\x39\\x66\\x1c\\x27\\x46\\x5b\\x7b\\x71\\x84\\x5f\\xfe\\x64\\xf2\\xbd\\xcb\\x92\\xb3\\xc2\\x51\\xef\\x0c\\xbe\\x7d\\x56\\xd7\\x85\\x65\\x17\\xc8\\xb0\\x0b\\xb6\\x93\\x2f\\x93\\x3f\\x41\\x48\\x14\\x00\\x15\\x3a\\xd1\\xb7\\x9b\\x30\\x95\\x0f\\x08\\x51\\x86\\x52\\x2a\\xfa\\xb3\\xc6\\x0e\\xf1\\x17\\x55\\x52\\x5a\\xbf\\xfe\\x92\\xf5\\xeb\\xaf\\xd9\\xb9\\xf3\\xf0\\xf8\\xf8\\xbe\\x6a\\x95\\x54\\xab\\xd5\\x5b\\x8d\\x94\\x4b\\xd6\\x93\\x36\\x23\\xed\\xf0\\xce\\x8a\\x81\\xb8\\x1a\\x19\\x2d\\x96\\x0d\\xcb\\x17\\x5a\\x36\\x44\\x32\\xaa\\x1a\\x2a\\xe2\\xba\\x70\\xa7\\x37\\x25\\xd3\\xcb\\x4d\\x76\\x38\\x9f\\xcb\\xe7\\xec\\xd6\\x0e\\x3f\\xec\\xed\\xed\\x08\\xe5\\xc2\\x6a\\xb2\\xb7\\x10\\xea\\xcc\\xa5\\x83\\x6a\\x8e\\x39\\x68\\x5b\\x93\\xd9\\x43\\x7c\\xa5\\xbc\\xd2\\xef\\x89\\x06\\x03\\x83\\x05\\x79\\x59\\x24\\x1e\\x54\\x13\\x8a\\xdc\\x46\\xdb\\xc0\\x01\\x63\\xa0\\x93\\xa7\\xc9\\x0c\\x8c\\xc0\\x26\\xb8\\x1c\\x0e\\xc3\\x27\\x8c\\x53\\x90\\xcb\\x9b\\xc2\\x40\\x1e\\x62\\x38\\x9b\\x41\\x4b\\xb2\\x48\\x58\\xc6\\x38\\x39\\xc2\\xc8\\xcb\\x40\\x55\\x30\\x28\\x75\\x24\\x1c\\x09\\x2b\\x72\\x1e\\x3d\\x8e\\x0d\\xe1\\x73\\x36\\x63\\xd4\\x50\\x1c\\x52\\x78\\xa4\\x1d\\x5e\\x57\\xa6\\xa9\\x38\\xcb\\xe4\\xca\\x23\\xe5\\x91\\x21\\xf1\\x71\\x2e\\x9f\\xcb\\x29\\xb2\\x22\\xf7\\x64\\x30\\x1c\\xaa\\x9c\\x13\\xe3\\x95\\xc9\\x18\\x1b\\x48\\x0f\\xe4\\x46\\xf2\\xd1\\x5c\\xec\\xc2\\xca\\xc0\\x96\\xa0\\xdb\\xcb\\x42\\xcc\\xd7\\xa1\\xee\\x18\\x3e\\xfb\\xca\\xfc\\x48\\x2e\\x96\\x8b\\xf6\\x26\\x0a\\x2e\\x4a\\xd7\\x94\\x97\\x51\\xaf\\xcb\\x45\\x68\\xbb\\xdb\\xdb\\x1b\\x2b\\xb6\\xb7\\x9d\\x26\\xb1\\xb8\\x2f\\x72\\xd6\\xde\\xb3\\xc2\\x2b\\xb7\\xaf\\x0c\\x7a\\xe2\\x4e\\x27\\x3b\\xa2\\xc8\\x92\\x36\\x38\\x74\\x68\\x68\\x45\\x4a\\x76\\xb5\\x39\\xe2\\xfd\\x03\\xfb\\x06\\xfa\\x13\\x8c\\xf4\\x49\\x64\\xd5\\xea\\x75\\x23\\xb2\\xcb\\xb1\\xf2\\xac\\x75\\x15\\x45\\xd2\\xdd\\xe9\\x81\\x75\\xb1\\x9e\\x9e\\x98\\xbf\\xb3\\xd3\\xbf\\x7a\\x7c\\x79\\x3e\\x9a\\xed\\xed\\x69\\x93\\x5d\\xfd\\xe7\\x26\\xfb\\x47\\x2e\\x3b\\x33\\xd6\\xdd\\x1d\\x33\\x40\\xfb\\x68\\x6f\\xa2\\x9d\\xb8\\x9d\\x9f\\xed\\x19\\xa1\\xcc\\xd1\\x4e\\x69\\x30\\xbb\\xb2\\xfd\\x0b\\x2c\\x9e\\xec\\x1d\\x5e\\xbe\\x7e\\xfd\\xf2\\xb6\\xb6\\x7c\\xb9\\x9c\\x1f\\xcc\\x44\\xba\\x14\\x27\\x23\\xb4\\x4d\\x1e\\xe8\\x8c\\xc5\\x3a\\xfb\\xdb\\x1c\\xb2\\x2b\\x1f\\x89\\x90\\xce\\x48\\xaf\\xb4\\x9f\\x24\\x93\\x4c\\x69\\x97\\x34\\x4d\\xf2\\x99\\xd1\\x30\\x5e\\xb2\\x3c\\x45\\x74\\x88\\x88\\x9f\\x11\\x25\\xaf\\x94\\x89\\xd2\\x93\\x56\\xd3\\xdb\\x0f\\xad\\x7e\\xff\\x9b\\x87\\x56\\xbf\\x7f\\xd7\\x6a\\x32\\xb0\\x7a\\xfe\\x7d\\x88\\xff\\x8f\\xbc\\x7f\\xf5\\xa1\\x37\\xdf\\xbf\\xfa\\xd0\\xae\\xd5\\xf3\\x3f\\x5c\\x1d\\xd3\\xed\\x51\\xa3\\x3d\\xe8\\x7f\\x91\\xfb\\xd0\\xe3\\xba\\xce\\x66\\x54\\x6c\\x5b\\xb8\\xf0\\xd2\\x70\\xd0\\x3a\\xb2\\x64\\xcd\\xc0\\xda\\x9d\\x6b\\x07\\x02\\xe3\\x57\\x1f\\xde\\x51\\x41\\xda\\xa6\\x52\\xad\\xe3\\xd1\\xfc\\x17\\xad\\xdc\\xb7\\x76\\x6d\\x5f\\x59\\xf3\\xac\\x58\\xf1\\x9b\\x1d\\x63\\xe7\\xf6\\xad\\x30\\xce\\xec\\x8a\\xbe\\x73\\xc7\\xe6\\x9f\\x52\\x55\\x97\\xdb\\xbd\\x84\\xfe\\x5a\\x4f\\x8b\\xa3\\x21\\xc5\\xd4\\x5f\\x9b\\x8a\\xd9\\xb4\\x0e\\xc7\\x85\\x02\\x9b\\xc9\\xc2\\x8c\\xfa\\x3f\\xcc\\x29\\x0e\\x53\\x3b\\xd0\\x85\\x72\\xb4\\x51\\xb4\\x0d\\x47\\xa7\\x53\\x45\\x1e\\x7f\\x2d\\x5b\\x42\\x43\\x0d\\x21\\x58\\xb5\\x08\\x01\\xfb\\xe5\\x21\\x50\\xa3\\x93\\xeb\\x4a\\xa1\\xe1\\x52\\xa8\\xb4\\x4e\\x9d\\xf6\\x47\\x0b\\xf3\\x75\\xa2\\xea\\xfa\\x94\\x3e\\x89\\x62\\x98\\xe9\\x5a\\xcd\\x0a\\x3d\\x45\\x2a\\xb9\\xb1\\x7c\\x7e\\x2c\\x57\\xa9\\x76\\x06\\x0c\\xc2\\x51\\xd7\\x0b\\x05\\xd4\\x64\\x0e\\x74\\xce\\xd7\\x8f\\x1e\\x9d\\x76\\xbb\\xa6\\x8d\\x62\\xd3\\x2e\\x8c\\x2e\\x75\\x39\\x00\\xf9\\x22\\x99\\x86\\x04\\xfa\\xf6\\x0d\\xab\\xaa\\x22\\x73\\x35\\x18\\xc4\\x7b\\x8b\\x11\\xcb\\xd8\\x33\\x62\\x9d\\x03\\x85\\x2f\\x06\\xb9\\x2b\\xe8\\x23\\x01\\xf7\\xa7\\x3c\\xae\\x09\\xbf\\xd2\\x46\\x18\\x39\\x3b\\x18\\x0b\\xfa\\x99\\xf3\\xbd\\xfa\\xe8\\xd6\\xd1\\x82\\xd6\\x97\\xfa\\x92\\x2b\\x24\\xbd\\xd7\\xdd\\x61\\x64\\x93\\x8e\\x7f\\xf2\\x06\\x02\\xde\\x3a\\x1d\\x4a\\x0c\\xf7\\x8e\\x8e\\xf6\\x96\\xe2\\x5b\\xc3\\xa9\\x54\\xd8\\xb6\\xd2\\x06\\x36\\x5a\\xe2\\x9e\\xc2\\xb9\\x80\\x91\\x47\\xed\\x31\\x8e\\x64\\x7e\\x78\\x24\\x52\\x54\\xc3\\x22\\xe8\\x3a\\x47\\x19\\x79\\x24\\x81\\x61\\x33\\x08\\x74\\xa0\\xcf\\xb9\\x32\\xdf\\x37\\x36\\xd8\\x13\\xec\\xcc\\xc5\\xd4\\xf4\\x48\\x21\\x4c\\x14\\x39\\xd1\\x3d\\x34\\x3a\\x54\\xf1\\x47\\x0b\\x35\\x7f\\x0c\\x5d\\x94\\xd7\\x7b\\x06\\xc7\\xfa\\xf2\\x2b\\x9d\\x7d\\x4a\\x5a\\x8d\\xe5\\x3a\\x7f\\xd0\\x99\\xf0\\x10\\x26\\xa7\\xf2\\x85\\x65\\x67\\xc7\\xfc\\x37\\x4c\\xc4\\xfc\\x7f\\xc7\\xfd\\x97\\x53\\x8b\\xcf\\x8f\\xbc\\xf4\\x9e\\x7c\\x59\\xc5\\x60\\xc2\\xe8\\xfb\\x9d\\x54\\xaa\\xd5\\xc9\\xc9\\x7a\\xb5\\x3a\\x39\\x87\\x11\\x7e\\x90\\xab\\x6e\\x8f\\x53\\xc9\\x2c\\xaf\\xd6\\xa7\\x8e\\x5d\\x68\\xe1\\xdd\\xdc\\xbe\\x78\\x41\\x50\\x3f\\x74\\xcf\\x52\\x9d\\x9b\\x43\\x49\\x2d\\x9a\\xe9\\x10\\xdd\\x1f\\x33\\x50\\xec\\xa3\\x5c\\x3d\\x62\\xa1\\x7d\\x59\\xcf\\x08\\x06\\x56\\x55\\xca\\xb9\\x5c\\xbe\\x14\\x0e\\x47\\xf2\\xb2\\x6c\\xf1\\xe7\\x88\\x3a\\x78\\xb6\\x52\\x71\\x5e\\xb5\\xb5\\xae\\x9c\\x3d\\xb8\\xf5\\x2a\\xe7\\x89\\xa1\\x73\\xcf\\x1d\\xda\\x76\\xed\\xb5\\xdb\\xf6\\x29\\x1b\\x07\\xb7\\x5e\\xad\\x9c\\x18\\xdc\\xa8\\xac\\x73\\x5e\\xb5\\xf5\\x43\\xce\\xf1\\x7d\\xe3\\xce\\x75\\xce\\x1b\\x1f\\xbc\\xd1\\xd9\\x22\\x23\\x30\\x30\\x0c\\xb3\\x81\\x45\\xea\\x8f\\x7b\\xee\\x75\\x5e\\x7d\\x5e\\xaf\\x3b\\x71\\xde\\xd5\\x4e\\x34\\xd5\\x31\\x6a\\xff\\x8e\\x53\\x3b\\x67\\x9f\\x72\\x42\\x73\\xde\\xab\\xec\\x3b\\xa7\\x57\\xc9\\xf4\\x66\\x94\\x7b\\x79\\xdd\\xed\\x36\\x89\\x4e\\xab\\x9f\\xe9\\xbc\\x81\\x41\\x19\\x38\\x65\\x44\\xd8\\xd4\\xdb\\x29\\xfd\\xac\\x8d\\x3f\\x6f\\x3e\\x23\\xbe\\x39\\x33\\x35\\x5f\\x9f\\x3a\\xae\\xd7\\x51\\x59\\xa6\\xae\\x9f\\xa8\\xfd\\x6a\\xe2\\x57\\x35\\x32\\x35\\x5e\\x45\\x46\\xbb\\x6e\\xfd\\x27\\x1c\\x52\\x37\\x45\\x3f\\xfa\\x4f\\xe2\\xb1\\x53\\xe3\\x13\\x95\\xca\\xd1\\x70\\xb8\\x62\\x6a\\x69\\xd7\\x84\\xcf\\x6e\\xd5\\xb8\\x05\\xad\\x08\\xe1\\xd9\\x52\\x31\\xd7\\x88\\x75\\xdb\\xf0\\x6a\\xa9\\x64\\xcd\\xb0\\xb7\\x45\\xa3\\x0c\\xf9\\x00\\x92\\xdf\\x8f\\xac\\x5e\\xad\\xa4\\x43\\xb1\\x5c\\x2e\\x16\\x4a\\x9f\\x5c\\x36\\x3a\\xb6\\x6b\\x8d\\xbc\\x2a\\xeb\\x3c\\x2d\\xdf\\x3f\\x36\\xd6\\xff\\x6b\\x7d\\xcb\\xee\\x49\\xa4\\xc6\\x1d\\x7a\\x30\\x92\\x1b\\xce\\x75\\xde\\xc5\\x56\\xeb\\xfd\\x6b\\xd6\\xf4\\x87\\x02\\xab\\x7a\\x06\\xd7\\xec\\x1a\\xd3\\x0b\\xdc\\x9a\\x76\\x88\\x4c\\x91\\x17\\x40\\x46\\x7c\\x21\\x3d\\x9c\\xcf\\x2b\\xb2\\xc5\\x24\\x2d\\x97\\xeb\\x04\\x72\\xbb\\x76\\xe5\\x7e\\xc3\\x6d\\xb7\\x66\\xca\\xb9\\xdd\\x17\\xe7\\x36\\x0e\\x6d\\xc0\\xb8\\xa5\\x43\\xef\\x47\\x9a\\xb9\\x80\\xb8\\xa4\\x8e\\xda\\x10\\x67\\xc0\\x66\\x80\\x9e\\xa4\\x22\\x87\\x8d\\x3b\\x2d\\x97\\xcd\\x66\\xf0\\x86\\x1b\\x19\\x29\\x1b\\xff\\xca\\x23\\x45\\xe3\\x6e\\xc3\\xab\\x2f\\x3c\\x32\\xbc\\x20\\x46\\x70\\x93\\x5f\\x7d\\x72\\x1d\\xf5\\x48\\x1e\\xe6\\x26\\x2e\\xe6\\x60\\xed\\x79\\xe5\\xfc\\x84\\x94\\x38\\x5f\\xc9\\xb7\\xb3\\x90\\x3f\\xdc\\x96\\x6e\\x0b\\x04\\x25\\x26\\xb7\\xbb\\x1d\\x4c\\x0a\\x06\\x5c\\x19\\x86\\xda\\x85\\x1f\\xc2\\xdf\\x9f\\xb3\\x3d\\x7f\\x87\\x7a\\x24\\xaf\\xc3\\x2b\\xfb\\x14\\xbf\\x54\\x70\\x92\\xb6\\x36\\xe2\\x2c\\x84\\x0a\\x81\\x70\\x7b\\x6f\\x7b\\x58\\xa6\\x84\\x50\\x39\\xdc\\xde\\xbb\\x0d\\x0d\\x15\\x6e\\x40\\x93\\x4f\\x0d\\x7f\\x8f\\xe0\\x03\\x50\\x98\\x02\\x9d\\x54\\xf1\\x3e\\x51\\xd1\\xc7\\x3c\\xe2\\xe1\\x08\\xcd\\xc2\\x66\\x7f\\x49\\xb5\\x52\\x29\\xe4\\x86\\x73\\x85\\x49\\x74\\xfc\\x3f\\x37\\x3e\\x31\\x71\\xd4\\x58\\x12\\xff\\x87\\x38\\x50\\x10\\x1a\\x56\\x27\\xec\\xd6\\xa9\\xc4\\x8c\\x39\\x2b\\xfe\\xca\\xa6\\xd7\\x5d\\xb3\\xce\\x87\\xc7\\xc6\\xb2\\x7d\\x7d\\x59\\x4d\\xeb\\xf6\\x7a\\x1f\\xdf\\x77\\xc3\\xfc\\xf1\\xf1\\xa1\\x0d\\x43\\x43\\x1b\\xc8\\xcc\\xba\\xa9\\xb1\\x4c\\xf1\\xe6\\xc1\\x9e\\xec\\x4e\\xad\\x3b\\xd8\\x1f\\x3c\\x8e\\x5e\\x74\\x6f\\x47\\xbd\\x73\\xc0\\x93\\xc1\\x71\\xc8\\x85\\xa7\\x62\\x39\\x14\\x01\\x08\\xca\\x19\\xd1\\x83\\x60\\x98\\x58\\x3a\\x31\\x5c\\x48\\x65\\xc6\\x3b\\x37\\xf9\\x6c\\x0e\\xe3\\x19\\x7d\\x76\\xe8\\xb9\\xd8\\xc4\\x44\\xdf\\xda\\xf9\\x3a\\xba\\xc0\\xe7\\x02\\x2a\\x94\\xea\\xa0\\x5c\\x98\\x54\\x27\\x26\\x62\\x39\\x7d\\xed\\xfc\\x5f\\x8a\\x54\\x3c\\x35\\x96\\xd1\\xd7\\xb8\\x01\\x8e\\x90\\x4f\\x09\\xc8\\xab\\x8d\\x41\\x06\\x21\\x1c\\x27\\x9e\\x4a\\x61\\xa1\\x22\\x89\\x12\\x95\\x7c\\x49\\x56\\x22\\x45\\x53\\xb8\\xcb\\x22\\x59\\x25\\x4f\\xa6\\x2b\\x95\\x7b\\x14\\x4f\\x6c\\x34\\x90\\xf4\\x05\\x49\\xb0\\x2b\\xb4\\x25\\xd4\\x75\\x8b\\xb6\\x0d\\x45\\xf2\\x7b\\x46\\xf4\\xcd\\x5a\\xa5\\x52\\xd1\\xee\\x21\\x03\\x24\\x1a\\x4c\\xfb\\x12\\xa1\\x0f\\xc4\\x42\\x5b\\x56\\xf8\\x3d\\xb7\\x90\\x1a\\x4a\\xe5\\xe7\\x7f\\x3b\\xb2\\x49\\x03\\x20\\xa0\\x42\\x9d\\xcc\\x91\\xba\\x31\\x07\\x20\\x1c\\xd2\\x36\\x1c\\xd6\\x5a\\x6f\\x76\\xb7\\xb5\\x06\\x41\\x37\\x62\\xbe\\x91\\xb9\\x98\\xdf\\xc9\\xb6\\xd0\\x58\\x26\\x46\\xcb\\x72\\x9b\\x7c\\x89\\xf1\\x64\\x24\\x5d\\x42\\xa2\\x99\\x18\\x19\\x61\\x3e\\xcc\\x24\\x57\\x64\\xa2\\x64\\x8b\\xec\\x30\\x60\\xae\\x43\\x2e\\x53\\x7a\\x89\\xec\\xf0\\xa3\\x2f\\x8b\\x4b\\x98\\xd3\\x8f\\x1f\\x8c\\x10\\xb2\\xd9\\x48\\x6c\\xf2\\xf4\\x99\\x34\\xb5\\x5e\\x23\\xd9\\xb2\\x81\\x0d\\x86\\xc2\\x43\\x65\\x8e\\x01\\x67\\xf2\\xc6\\x36\\x8b\\x94\\x49\\xfb\\xa6\\x8e\\x0b\\x67\\x3e\\xb5\\xaa\\xef\\x03\\x7d\\xfa\\xf8\\xe1\\x3e\\x5d\\x1f\\x1d\\x3d\\x36\\x3a\\xba\\xff\\xfe\\xd1\\x95\\x5c\\x4d\\x77\\xa2\\x7f\\x75\\x1f\\xd1\\xfb\\x0e\\xed\\xec\\xd3\\xd7\\x9c\\x57\\x1e\\x1d\\x2d\\xff\\xd1\\xfe\\xd1\\xd5\\xad\\x9e\\x5d\\x7a\\xca\\xf9\\x52\\x56\\xb5\\xe4\\xb3\\xbb\\xfc\\x7b\\x34\\x6e\\x77\\xfa\\x60\\x62\\xe5\\xb5\\xf5\\x13\\x66\\xec\\x76\\x15\\x80\\xcc\\x51\\xc0\\xd8\\x9a\\x9c\\xc9\\x98\\xcf\\xf3\\x83\\x6b\\x5d\\xea\\x8b\\xfe\\x25\\x73\\xc5\\xec\\x1f\\x76\\x47\\x1f\\x8a\\x13\\xa5\\x4d\\x91\\x2f\\x0a\\xc6\\x82\\x6a\\x20\\x11\\x50\\x83\\xb1\\x60\\x38\\x18\\x0b\\x92\\xdb\\xe6\\x9f\\xcd\\x0e\\x45\\xa7\\x62\\x32\\x1b\\x9e\\x37\\x68\\xd6\\xa3\\xcf\\x19\\x37\\xfb\\x73\\x8f\\x19\\xcf\\x8f\\x1d\\xf4\\x04\\x83\\x5c\\x1e\\xc1\\xe7\\xc4\\xd8\\x21\\xe8\\x2f\\x40\\xb8\\xf9\\xe1\\x0e\\x7e\\x2c\\xc7\\x38\\xe8\\x02\\x28\\x14\\x31\\xa8\\xf1\\x30\\xa9\\x14\\xf3\\xb9\\x91\\x4d\\x63\\x97\\x85\\x36\\xaf\\x23\\x64\\xdd\\xe6\\xd0\\x65\\x63\\x9b\\x46\\x72\\xf9\\x62\\xfe\\xf4\\xc0\\x07\\x3e\\x4e\\xe9\\xc7\\x3f\\x10\\x58\\x77\\x43\\x26\\xb7\\x62\\xe3\\xa8\\xae\\x24\\x14\\x7d\\x74\\xe3\\x8a\\x5c\\x66\\x59\\x46\\xf7\\x7a\\xbd\\x7a\\x66\\x99\\xcd\\xc7\\x6b\\x27\\x6a\\xa6\\xaf\\x33\\xf6\\x69\\x8f\\xdf\\x38\\x23\\x11\\x4b\\x2c\\x13\\xc1\\x30\\xf8\\x06\\x42\\x11\\x8e\\x8c\\x8c\\x94\\xcb\\xd9\\x14\\x2d\\xe7\\xf2\\xc3\\xf9\\xac\\xda\\x08\\x46\\x1e\\x89\\x94\\xf3\\x0d\\xc0\\x6d\\xb2\\x67\\xf3\\xd9\\x46\\x88\\xdc\\x69\\xb7\\xeb\\x89\\xe8\\xb2\\xc8\\x39\\xf1\\xb6\\xd4\\xca\\x8e\\x95\\x41\\xbf\\x7e\\xd4\\xe5\\x3e\\xea\\xea\\x70\\xfb\\x28\\xab\\x2a\\x0e\\x8f\\xdb\\x3b\\x4a\\x2f\\x58\\xce\\xc2\\x21\\x35\\x99\\x54\\x83\\x1e\\x1a\\xa3\\xd1\\x74\\x77\\xb1\\xd8\\xdd\\xb3\\xfc\\x49\\x63\\x3b\\x4d\\xa9\\x68\\x7e\\x54\\x0f\\x56\\x49\\xd8\\xe5\\x1e\\x0f\\x87\\xc3\\xf9\\xee\\xd3\\x7c\\xa7\\x05\\x57\\xe9\\xee\\x3f\\x0b\\xfa\\xbd\\x5d\\x4e\\x67\\xc4\\xb7\\xbc\\xbd\\x63\\x43\\xbb\\x94\\x76\\x87\\x52\\x85\\x94\\x87\\x44\\x49\\xa4\\xb8\\xb1\\x38\\xf8\\xd9\\xa8\\x7f\\xfe\\x84\\x3f\\x5a\\x89\\xfa\\x49\\xd8\\x1f\\xad\\x20\\x66\\x09\\xe4\\x9f\\xc8\\x3f\\xa1\\x27\\x99\\x4e\\xe1\\x6b\\x97\\xdb\\xe9\\xe6\\x4d\\xb5\\x14\\xa5\\x98\\xcf\\x2a\\x4a\\xc8\\xd1\\xf0\\x44\\x28\\xc2\\xf2\\xe4\\xf3\\x65\\xee\\xaf\\xe5\\xa7\\xd3\\x24\\x85\\x6a\\x29\\xdf\\xdb\\xa7\\x0f\\x05\\x09\\xd9\\x12\\x5f\\xe3\\x51\\xfd\\xb1\\x40\\xf2\\x73\\xfe\\xa8\\xa3\\x6b\\xf9\\xee\\x38\\x57\\x4d\\xf9\\xe8\\x34\\xd7\\x4c\\xd1\\xf5\\x2c\\x73\\x7c\\x31\\xbe\\x26\\x10\\xf5\\x87\\x3d\\x5d\\xa8\\xa3\\x72\\xd9\\xee\\xb8\\xdd\\x6b\\x04\\x6a\\xa5\\xf4\\x0c\\x71\\x13\\xc5\\xbc\\x5a\\xcc\\x9b\\x51\\x55\\xf2\\xd9\\x70\\xb8\\xc5\\xbc\\x0f\\x0c\\x84\\x7c\\xa5\\x16\\xaf\\x66\\x42\\x03\\xa9\\xbe\\xbe\\x54\\x3e\\xdc\\xe3\\x2e\\x6d\\x69\\x98\\xfa\\xd5\\xd7\\xee\\x1c\\x5b\\x91\\xa8\\x66\\x7a\\xf5\\xb1\\x3e\\xad\\x2b\\xdb\\xec\\xb2\\x06\\x67\\x40\\x26\\x33\\xe4\\xef\\xc1\\x8f\\x92\\xfc\\x86\\xa7\\x15\\x25\\x5f\\x2c\\x65\\xf3\\x18\\x89\\x27\\xc2\\x7d\\xe3\\x30\\xa2\\xe4\\xb3\\x8a\\x3f\\x4f\\xa6\\xfc\\xd1\\x4e\\xff\\xe4\\xd5\\x77\\xab\\x7f\\x3a\\xf5\\xc1\\x65\\x06\\x80\\xbb\\x9c\\x7c\\x33\\x7e\\xe3\\x74\\x55\\x27\\x33\\xc8\\x59\\x8b\\x92\\x49\\x5d\\xd5\\x97\\x7d\\x70\\x5a\\xaf\\xe9\\x3a\\x91\\xe7\\x37\\xc4\\x6f\\xac\\x92\\x09\\x41\\x93\\x98\\x9e\\x7b\\x82\\xc8\\xbd\\x2c\\x72\\xe7\\x3d\\x4a\\x44\\x89\\x20\\x3b\\xc3\\x20\\xd1\\x1b\\x7e\\x7c\\x36\\x6f\\x42\\x47\\x3e\\x1f\\x1e\\xe8\\x4f\\xf6\\x8b\\x7f\\xe7\\xdb\\x7d\\xfa\\x7c\\x4b\\x64\\x0c\\x24\\x07\\x06\\x1e\\xb3\\xbc\\xfb\\x34\\x64\\xa0\\x3a\\x42\\xf9\\x88\\x92\\xcf\\x1a\\x10\\x85\\x1b\\x1c\\x96\\xb2\\x4a\\x5e\\xf8\\x8c\\x29\\x96\\x50\\x2d\\x59\\x2d\\x47\\x14\\xb5\\x58\\x8e\\x28\\x64\\xe6\\x5d\\x67\\x26\\x2f\\xd3\\xf7\\xa6\\xce\\x2c\\x9c\\x99\\xda\\xab\\x5f\\x96\\x3c\\xf3\\x5d\\xad\\x09\\x44\\x5d\\x32\\xcb\\x4a\\xe0\\x3a\\xa3\\xdc\\xff\\x3d\\xb7\\x73\\x89\\x70\\xff\\xff\\xa4\\xd8\\x88\\x0a\\x99\\xb7\\x05\\x3f\\x32\\x66\\xb9\\x27\\x62\\x06\\x40\\xe2\\xbf\\x91\\x31\\x5d\\xa9\\x8d\\xab\\xbd\\xdc\\x39\\x75\\xf5\\x5c\\x0c\\xfc\\xa8\\x55\\xab\\x44\\xaf\\x8f\\xe4\\x86\\x73\\x37\\xe4\\x86\\x73\\x7a\\x34\\x40\\xd4\\xf1\\x57\\x50\\x07\\xf2\\x7d\\xe3\\xe3\\x47\\xc4\\x43\\xa1\\x3e\\x61\\x5c\\xba\\xc6\\xcf\\x74\\xa0\\x13\\x08\\x00\\x7c\\x82\\x02\\xb9\\x9e\\xc7\\x9d\\x47\\xcb\\x87\\x7c\\x39\\xc2\\x7b\\xa2\\xc8\\x8a\\xc2\\xf1\\x8d\\x48\\x44\\xc9\\x73\\x1b\\xae\\xf2\\x48\\xb9\\x4c\\x2e\\xde\\x73\\xc6\\x19\\x7b\\x32\\x71\\x2d\\x1a\\x5e\\x5d\\x28\\xac\\x56\\xcf\\x0a\\xae\\x4e\\xf3\\x94\\x74\\xa7\\x95\\x42\\xae\\x5f\\xbf\\x7b\\x7d\\xa6\\x33\\xa1\\x86\\x0b\\xab\\x0b\\xea\\x58\\xa0\\x94\\x6e\\x79\\xb7\\x20\\xfb\\xf7\\xb8\\x5d\\x1a\\xc9\\xe5\\x94\\x91\\x70\\x44\\xc9\\xe5\\xca\\xb2\\xf1\\x67\\xb8\\x3c\\x5c\\x1c\\x89\\x84\\x23\\x8a\\x31\\xfb\\x07\\x86\\x6e\\x1e\\x1b\\xbc\\x7e\\xc5\\x8d\\x2b\\x56\\xc8\\xaa\\x36\\xb4\\x66\\xed\\x5a\\xb2\\xe1\\xd2\\x6d\\xa3\\x9f\\x49\\x7d\\x3c\\x45\\xd6\\x0f\\x69\\xaa\\xbc\\x62\\xc5\\x8d\\x2b\\xae\\x1f\\x1c\\xbb\\x79\\x68\\xcd\\xda\\x3f\\x5f\\x4b\\x36\\x38\\xe5\\xd1\\xc7\\x53\\x47\\x92\\x60\\xe3\\x18\\x33\\xe8\\x32\\xb9\\x86\\x56\\x24\\x48\\x83\\x36\\xb0\\xf8\\xe2\\xe5\\x62\\x44\\x55\\x8a\\x25\\x9b\\x3a\\x1d\\xd1\\xc7\\xb9\\x21\\xdc\\x78\\x3d\\xd0\\x19\\xf5\\x57\\xf5\\xaa\\x5e\\x1f\\x9f\\xe4\\x7a\\xf8\\x93\\xa4\\x56\\x28\\x60\\x8c\\x32\\x5d\\x8f\\x06\\x2a\\xfe\\x98\\x71\\xe5\\x4f\\xab\\x68\\xe5\\x5a\\x05\\xd4\\x3e\\x68\\x78\\xbb\\xe5\\x5a\\xb0\\xe5\\x46\\x64\\xff\\xb0\\x65\\x0d\\xd2\\xfc\\xd7\\x4c\\x5f\\xa0\\x7f\\xb3\\xdd\\x16\\x64\\xfb\\x5c\\xdb\\x6f\\xfe\\x8f\\xa8\\x36\\xf7\\xd4\\x15\\x4c\\xfb\\x21\\xfe\\x3e\\xd7\\xf6\\x9b\\xa7\\x90\\x81\\x16\\x8d\\xf2\\x86\\xf6\\x4f\\x0f\\x62\\xa5\\xe7\\x03\\x70\\x9f\\xe6\\xdc\\x08\\x94\\xfb\\x25\\xca\\xc8\\x59\\xf4\\xa4\\x9b\\xb1\\x40\\x77\\x31\\xdc\\x23\\xcb\\x0a\\xca\\xb8\\x72\\x39\\xce\\xf4\\x41\\xbc\\x75\\x08\\x5d\\xe2\\x86\\x43\\xdd\\x2d\\xfe\\xcf\\x8f\\x4d\\xbb\\x87\\x2b\\xc3\\xe9\\x2b\\xce\\xf3\\x10\\x89\\x13\\xf1\\x12\\xf1\\x9c\\xd7\\xfc\\x4a\\x6a\\x92\\x16\\x09\\xbf\\xfb\\xba\\xdd\\xe1\\x48\\x5a\\xa2\\x54\\x4a\\x47\\xfc\\x5d\\x23\\x67\\xaf\\xbc\\x18\\x5f\\xe7\\xbf\\x8b\\xae\\x85\\x2e\\x44\\xef\\x42\\x33\\x5d\\xd9\\xec\\x39\\xab\\x97\\x93\\x58\\x26\\x46\\x96\\xaf\\x36\\x1f\\x36\\x77\\xf6\\x28\\xcb\\xd7\\xae\\x5d\\xae\\xf4\\x74\\x3a\\xdd\\xce\\xce\\x1e\\x25\\xd7\\x39\\x38\\x36\\x88\\x6f\\x71\\xf4\\x59\\xc4\\xff\\x99\\x5c\\x7d\\x33\\x66\\x5d\\xaf\\x01\\xdb\\x5b\\x23\\xa2\\xf7\\x88\\xc8\\xa2\\xf9\\xac\\x6c\\x81\\xf6\\x52\\x31\\x92\\x0e\\xe5\\x87\\xc2\\x6a\\x96\\xec\\xc6\\x93\\x27\\xcc\\xbd\\xfd\\x51\\x3d\\x95\\x28\\x48\\xfd\\xd2\\xb2\\x44\\xaa\\x2f\\xdf\\xbf\\x7c\\x53\\x88\\x94\\xa7\\xce\\xda\\x3b\\x55\\xb5\\x45\\xa2\\x39\\x33\\x92\\x4e\\xe9\\x3d\\xf1\\x78\\x8f\\x9e\\xea\\x0b\\xef\\xd6\\xf5\\xd3\\x7e\\xb3\\x77\\x83\\x0d\\x1a\\xc5\\x51\\xb2\\x12\\xe1\\xb6\\x5d\\xdc\\x9f\\x2d\\xf7\\xe8\\x5e\\x46\\xe8\\x47\\xbe\\x9e\\xec\\x4f\\x26\\x53\\xfd\\xa9\\x64\\x6a\\xcb\\xd7\\xb7\\x24\\x93\\x4d\\x6f\\xdf\\x31\\x9e\\x8c\\x94\\xe4\\x96\\xaf\\x6f\\x49\\x25\\x9b\\xde\\x4c\\x4f\\x81\\x66\\x4c\\xa8\\x28\\xf7\\x28\\xd3\\xcc\\x3b\\x37\\x79\\x20\\x42\\xfa\\xac\\x73\\xb9\\xcf\\x50\\xb6\\x9e\\x2d\\xd6\\x74\\xa2\\x56\\x2a\\x35\\x63\\x87\\x47\\x2b\\xd9\\x62\\x31\\x3b\\x63\\xde\\x45\\xc6\\xec\\x75\\xf0\\xb8\\x5c\\xaa\\x2d\\xaa\\x40\\xd1\\x6f\\xc6\\xfd\\x22\\xb5\\xfa\\xc0\\xea\\xcd\\x13\\x9b\\x2b\\x3a\\x57\\xc7\\x26\\x37\\x9d\\xfe\\x6d\\xda\\xe9\\xc3\\xa8\\x8d\\xee\\x1e\\x52\\x9f\\xff\\x03\\xdc\\xbb\\x00\\x4e\\x31\\x0b\\xd3\\xe0\\x85\\x24\\xfa\\x0d\\x2a\\xc0\\x00\\x9c\\x0e\\x9b\\x0c\\xfc\\x5f\\x51\\xb2\\xe5\\x91\\x7c\\xae\\x5c\\x2e\\xa2\\xa9\\x0d\\x7f\\x35\\xdf\\x83\\x36\\xe1\\x5a\\x96\\x87\\x45\\x6a\\xd2\\x85\\x1d\\x8a\\x44\\x1a\\xe4\\xc7\\x69\\x69\\x99\\x2c\\x63\\x0e\\x35\\x23\\x93\\x65\\xd4\\x11\\xdc\\x91\\x91\\x69\\x2f\\x75\\x04\\xa9\\xf8\\xeb\\x2a\\x20\\x3f\\xa0\\x70\\xf3\\x3f\\x73\\xd9\\x50\\xa5\\x2b\\x18\\xf2\\x75\\x49\\x37\\x60\\xf0\\x41\\x72\\xb3\\xb6\\xdc\\xe5\\x8e\\xab\\x99\\x01\\x97\\x27\\x1e\\x22\\xe9\\x01\\x97\\x3b\\x1e\\x22\\xfc\\x6d\\xfe\\x07\\x75\\xf1\\xdf\\x14\\xda\\xe7\\x4f\\xf9\\x42\\x09\\x5f\\xda\\xb1\\x17\\x23\\x99\\x01\\x6a\\x5c\\xdb\\xe3\\x6d\\x77\\x98\\x7a\\x43\\x7e\\x94\\x8c\\x2f\\x6e\\xc3\\x3d\\x85\\x81\\x9c\\x4c\\xf1\\x7d\\x20\\xca\\x6f\\xec\\x68\\x80\\x40\\x8d\\x40\\x45\\xad\\xd5\\xe6\\xbe\\xfd\\x6d\\x82\\x5a\\xc3\\xfc\\xba\\xb6\\xc9\\x1e\\xa7\\x51\\x33\\x69\\x1b\\x7c\\x18\\x00\\xcc\\xa8\\x07\\x99\\x7c\\x2e\\x6f\\xa0\\x5d\\xa5\\xa1\\x70\\x24\\x22\\x73\\xee\\x6b\\x46\\x91\\x1d\\x82\\x95\\x9a\\x6d\\xfd\\x5b\\x1a\\xe2\\xbc\\xd5\\x62\\xeb\\x5f\\xb5\\xa5\\xe4\\x62\\x1f\\xd8\\xcb\\x13\\x1d\\xa9\\xcb\\x4f\\xb9\\x3d\\x92\\xfb\\x4c\\x55\\x2b\\x2d\\x1b\\xee\\xfc\\xb8\\xcc\\x3c\\xee\\x76\\x4f\\x78\\x28\\xec\\x21\\xfe\\x48\\xa4\\xdd\\xeb\\x69\\x8f\\x74\\xb6\\xfe\\x5d\\x2c\\xcd\\xf8\\xdb\\x92\\x36\\x18\\x69\\xf7\\x78\\xdb\\x23\\x91\\x45\\x92\\x3a\\x23\\xed\\x1e\\xc2\\x49\\xd5\\xaa\\x93\\x39\\xce\\x0c\\x6b\\xa5\\x60\\xe7\\xad\\x12\\x71\\x3a\\x3d\\x1e\\xe7\\x1e\\xaf\\xa2\\x78\\xcd\\x1f\\xbd\\xf1\\xe8\\x55\\x6e\\x5b\\x32\\x07\\x6c\\x5c\\x2b\\x1e\\x27\\x20\\x8c\\x31\\x19\\x2d\\x32\\x08\\x45\\x2d\\xf9\\xb5\\xe3\\xd2\\x7c\\x5d\\x1a\\x5f\\x2b\\xc5\\x32\\xb1\\x93\\x40\\x8e\\xcf\\x8f\\x93\\x5d\\x9e\\x4b\\xd6\\xad\\xbb\\xc4\\xd3\\xa6\\x18\\x6b\\xa5\\xfc\\x4d\\x81\\xfb\\x73\\x56\\x85\\x86\\x78\\x14\\x96\\x41\\x3f\\xac\\xc0\\xd8\\x6c\\xf9\\x62\\x1e\\xb1\\x64\\x35\\x83\\x9c\\xb9\\xa2\\xa9\\xf0\\x9a\\x2d\\x9b\\xf1\\xc9\\xb2\\x25\\xce\\xf2\\x2f\\xaa\\xd9\\x72\\x51\\xcd\\xf6\\x94\\x0d\\xbc\\xab\\x54\\x24\\xb5\\xb5\\x6b\\x47\\xba\\x0a\\x85\\x2e\\x7f\\x38\\xe2\\x4b\\x27\\xfb\\xb4\\xa8\\x7f\\x75\\xb2\\x47\\x5b\\xd1\\xed\\x8b\\x68\\x79\\x34\\x27\\x9a\\x3f\\x18\\x23\\xb5\\xf8\\xe4\\xcc\\xe4\\xc3\\x6b\\x2f\\xd4\\x57\\x16\\x34\\xd5\\xe7\\x8f\\xe5\\x13\\x99\\x78\\x28\\xb2\\xdd\\xbb\\xb2\\xbb\\xaf\\xaf\\xbb\\xa8\\x45\\xfc\\xc9\\xa7\\x2a\\x95\\xca\\x4c\\x7c\\x7e\\x32\\x7e\\xb4\\xc2\\x6d\\x41\\x6b\\xd8\\xcb\\xb0\\xd0\\xdf\\x1c\\x35\\x23\\x22\\x21\\x71\\x6c\\xef\\x6a\\x73\\x07\\xf1\\x4f\\x58\\x6d\\x74\\xd3\\x98\\x9a\\xf1\\x94\\xae\\x45\\xfd\\x69\\xb3\\x97\\x17\\x8b\\xfe\\x45\\x7c\\x5d\\x05\\xb3\\x8b\\xa4\\x32\\x3f\\x4d\\x72\\xb9\\xae\\x6c\\x22\\x14\\x31\\x3b\\x59\\xf2\\xae\\xcc\\x0e\\x0e\\x76\\x0f\\x69\\x11\\xbf\\x2f\\xa2\\x15\\xba\\x92\\xdf\\xad\\x18\\xff\\x35\\x45\\x5b\\x30\\xa0\\x90\\xac\\xe4\\xf2\\x23\\xe5\\xb0\\x63\\xc8\\xa0\\x3d\\x8a\\x21\\x59\\x31\\x12\\x72\\x39\\xb2\\xa9\\xa0\\x69\\x05\\xe7\\x19\\x67\\xcc\\xff\\xf3\\xfa\\xfd\\xe9\\xf4\\xfe\\xf5\\xef\\xde\\xe2\\x8f\\xaa\\xea\\x96\\x77\\x93\\x62\\x24\\x93\\x89\\xbc\\xfb\\x8c\\x33\\xae\\x3c\\xbd\\x58\\x3c\\xfd\\x82\\x5b\\xe2\\xb2\\x83\\x39\\xe3\\xb7\\x20\\x46\\xc4\\x39\\xca\\xe7\\x72\\xfe\\x83\\x22\\x67\\xf3\\x8a\\x9c\\x59\\x4e\\x95\\x48\\x28\\x9b\\x35\\xfe\\xa2\\x63\\x80\\x72\\x56\\x89\\x84\\x91\\xe6\\xe3\\x7f\\x4b\\x68\\x21\\x95\\x0e\\x97\\x73\\xe5\\x70\\x24\\x3c\\x92\\xcf\\xe5\\x33\\xf9\\x5c\\x79\\xb8\\x18\\x0e\\x47\\x22\\x49\\xaa\\x84\\x22\\xe4\\x24\\x21\\x51\\x4a\\x3b\\x14\\xea\\xa2\\xde\\xc8\\x72\\xbf\\x14\\xa2\\x34\\xd4\\x16\\x95\\x54\\x29\\xf2\\xb1\\xac\\x93\\xca\\x21\\x46\\x12\\x19\\x99\\xca\\x61\\xc9\\xa3\\x46\\x48\\x60\\x70\\xb9\\xd3\\x9b\\x70\\x2a\\x2e\\xea\\xea\\x26\\xd4\\x4d\\xa5\\xae\\x65\\x8a\\xc4\\x14\\x07\\xa1\\x64\\x8c\\x30\\xa2\\x51\\x16\\x96\\xa4\\xa4\\x63\\xff\\xad\\x12\\xdb\\xe6\\xbf\\x94\\x49\\x1f\\x3b\\x7d\\xbd\\x83\\x5e\\x91\\x5f\\xed\\xa0\\xa3\\xdb\\xef\\x74\\xa9\\x24\\x13\\xf6\\x86\\x1c\\x52\\xbb\\x92\\xf0\\x12\\xe6\\x60\\x52\\x8f\\x9f\\x49\\xce\\x0e\\xa7\\x83\\x02\\x80\\x02\\xbb\\x80\\x01\\x91\\x5c\\x00\\xb0\\x07\\x40\\x3c\\x13\\x48\\xc0\\x1e\\xf1\\x4c\\xc1\\x0b\\x87\\xc5\\x33\\x83\\xed\\x70\\x44\\x3c\\x4b\\xb6\\x32\\x0e\\x88\\xc1\\xcb\\xe2\\x59\\x86\\x02\\xbc\\x0d\\x67\\xc0\\xb5\\xb0\\x1f\\xde\\x0f\\xd7\\xc1\\xd5\\x70\\x25\\x5c\\x05\\x07\\x40\\x83\\x21\\x18\\x84\\x15\\x50\\x02\\x0d\\xce\\x82\\x6b\\xe1\\x5a\\xb8\\x12\\xf6\\xc1\\xe5\\xd0\\x07\\x1a\\x9c\\x0d\\xd7\\xc0\\x65\\x30\\x80\\xda\\x23\\xfb\\x60\\x1f\\x68\\xb0\\xdd\\xfa\\xee\\x7a\\x7c\\xbb\\x1c\\xae\\x87\\xcb\\xe1\\x3a\\x38\\x08\\x97\\xc3\\x5e\\x18\\x80\\x73\\xe0\\x12\\x38\\x80\\x29\\x57\\xc3\\x25\\xf8\\xc5\\xd9\\x70\\x19\\x5c\\x0b\\xd7\\xc0\\xf5\\x58\\xfa\\x4a\\xb8\\x01\\xf6\\xc1\\x25\\x70\\x1d\\x6c\\xc0\\xd4\\x03\\xf8\\xf7\\x3a\\xb8\\x12\\x2e\\xc7\\x9e\\x0c\\xc0\\x20\\x68\\xb0\\x12\\xb4\\x53\\xd6\\xc4\\x4b\\x8c\\x42\\x3f\\x0c\\xe1\\x8f\\xd1\\xff\\x11\\x18\\xc7\\xd2\\xd7\\xc3\\xd5\\x58\\x4a\\x83\\x15\\x58\\xdb\\x0a\\x58\\xb1\\xa0\\xae\\x46\\x4d\\xfd\\x2d\\xbd\\x12\\x5e\\x27\\x00\\x4e\\xde\\x0c\\x43\\xb0\\xf8\\x7f\\xe4\\xe4\\x49\\xa0\\xb8\\x07\\xdd\\x00\\x90\\x10\\xea\\xb4\\x0c\\xf2\\x40\\xa0\\x97\\x3d\\x0f\\x14\\xa9\\x32\\x22\\x7e\\xda\\x20\\x09\\xc3\\x40\\xf6\\x5d\\x72\\xe0\\x1a\\x70\\x72\\x8a\\xf5\\xe4\\x49\\x9e\\x7b\\xfd\\xd5\\x37\\x5e\\x2e\\xd2\\x8e\\x35\\xb7\\x20\\xbe\\xeb\\x5b\\xfc\\xbb\\x7d\\x57\\x5f\\x79\\x09\\x38\\xad\\x36\\x24\\xd1\\x9e\\x13\\xc8\\x55\\xbf\\x83\\x28\\x8c\\xc2\\x05\\xce\\x57\\xbd\\xaf\\x47\\x8e\\x25\\xee\\x4c\\x3d\\xb4\\xec\\x15\\xfd\\x9a\\xfe\\x2d\\xcb\\xbf\\xba\\xe2\\x9a\\xd3\\xee\\x58\\x33\\x58\\x69\\xab\\x1c\\xdf\\xf4\\xcd\\xcd\\xf7\\x6f\\x0d\\xec\\xde\\x75\\xe9\\xd0\\xa5\\x0f\\x5c\\x71\\xd7\\x55\\x47\\xae\\x7a\\xdc\\xa8\\x83\\xbe\\x8a\\x71\\x61\\x3c\\x90\\xc2\\xe8\\xfb\\x5e\\x48\\x43\\x18\\x12\\x10\\x87\\x8d\\x70\\x17\\xbc\\x40\\x9c\\xa4\\x42\\x0e\\x91\\x47\\xc8\\xcf\\x68\\x98\\xae\\xa7\\xd7\\xd1\\xfb\\xe9\\xf7\\xe9\\x2f\\x59\\x27\\x1b\\x63\\x97\\xb2\\x5b\\xd8\\x71\\xf6\\x3c\\x7b\\x5d\\x72\\x4b\\x7d\\xd2\\x16\\x69\\x9f\\x74\\xbb\\x74\\x5c\\xfa\\xbe\\xf4\\x9a\\x83\\x3a\\x92\\x8e\\x95\\x8e\\x71\\xc7\\x75\\x8e\\x3b\\x1c\\x0f\\x39\\x9e\\x72\\xbc\\xec\\x78\\x5b\\xf6\\xc9\\x05\\x79\\xbd\\x7c\\x91\\x7c\\x40\\xbe\\x5d\\x7e\\x40\\xfe\\xa6\\xfc\\xa2\\xfc\\x9a\\xfc\\x3b\\x25\\xa0\\xf4\\x2a\\x63\\xca\\x76\\xe5\\x0a\\xe5\\x46\\xe5\\x0e\\xe5\\xf3\\xca\\x63\\xca\\xb3\\xca\\xcb\\xca\\x1b\\xca\\xbc\\xd3\\xeb\\x4c\\x3a\\x07\\x9c\\x63\\xce\\x73\\x9d\\x17\\x39\\xaf\\x72\\x1e\\x70\\x7e\\xd0\\x79\\x0b\\x7d\\x00\\xba\\xd0\\xcb\\x44\\x14\\xc2\\x10\\x87\\x00\\x78\\x40\\x83\\x00\\xf6\\xd8\\x83\\x29\\x7e\\x08\\x43\\x16\\xc2\\xe0\\x87\\x0c\\x78\\x21\\x8a\\xf9\\x19\\x08\\x43\\x1a\\x02\\xf4\\x4f\\x20\\xb1\\xe4\\xb7\\x51\\x08\\x40\\x08\\xc7\\x9f\\x80\\x18\\xce\\x44\\x00\\xeb\\xf0\\x19\\x7f\\xe9\\x83\\x10\\xff\\x4f\\x7f\\x19\\x47\\xfb\\xb4\\x98\\xd1\\x3a\\xfd\\xd3\\x53\\x7c\\x67\\xb4\\xe0\\xb3\\xe5\\xd8\\xbf\\xfb\\x22\\xc4\\xfe\\xd3\\xed\\x05\\xa0\\x07\\xd2\\x90\\x02\\x2f\\x7d\\xe8\\x14\\x5f\\xb5\\xb6\\xd6\\xf8\\xea\\x0b\\xd0\\xb9\\xe4\\x57\\x41\\x88\\x8a\\x27\\x2f\\xc4\\xd1\\xb3\\x98\\x31\\x1b\\x13\\x58\\x3e\\x85\\xb1\\xe8\\x3c\\xe0\\xc7\\xa7\\x2e\\x7c\\x32\\x52\\xe2\\xe0\\x01\\x1f\\x96\\x30\\xda\\x0b\\xd0\\x7f\\x82\\x30\\xf8\\xc0\\x07\\x09\\xc8\\x60\\xfc\\x45\\x0f\\x74\\xe0\\xca\\x18\\x35\\xfa\\xb0\\xbd\\x6e\\x7c\\x8f\\xa2\\x1f\\xcc\\xbf\\x07\\x15\\xbf\\xed\\x12\\x25\\x02\\x10\\x83\\x04\\xf8\\xb1\\x9c\\xd1\\x3f\\x2f\\xf8\\x70\\x77\\x66\\x21\\x40\\xdf\\x86\\x10\\x68\\xa0\\x41\\x18\\x7d\\x07\\xc5\\x20\\x20\\xea\\x4f\\x43\\x06\\x52\\xf8\\xad\\x9f\\x7f\\x45\\x7f\\x05\\xc1\\x45\\x4b\\xa6\\xb0\\xcd\\x46\\xe9\\x97\\xd1\\xc2\\x70\\xf1\\xd6\\x6d\\x2d\\xc3\\x9f\\x61\\x69\\x7f\\xf3\\x48\\xc1\\x83\\x63\\x4c\\x9b\\x33\\x49\\x7f\\x8e\\x65\\xfc\\x38\\xa3\\x2a\\xce\\x51\\x17\\xe6\\x84\\xf0\\x3b\\x2f\\xa4\\x20\\x4d\\xdf\\x02\\xff\\xef\\xeb\\x19\\xfd\\x3c\\xee\\xea\\x53\\xaf\\xd0\\xdf\\x8b\\x9e\\x2c\\xd6\\xf3\\x04\\x04\\x21\\x48\\xff\\x0d\\x3a\\x16\\x6d\\x89\\x7f\\x1f\\x20\\xb7\\x59\\xf9\\x1a\\xc2\\x00\\x9e\\xdb\\x85\\x3d\\x4f\\x43\\x82\\x5e\\x8d\\x98\\xf1\\xd2\\xab\\xfe\\x32\\x74\\x9c\\xa2\\x07\\x71\\xf6\\x17\\x56\\xbe\\xb1\\xcf\\xd3\\x62\\x56\\x8c\\xf9\\x4a\\xe3\\x3e\\xf9\\x19\\x74\\x9c\\x6a\\x9f\\xd0\\x7f\\xc6\\x15\\xb0\\xe7\\xdb\\x77\\xd9\\x87\\x70\\x3e\\x1b\\xbd\\xe3\\x7d\\xea\\xc6\\x54\\x3f\\x7d\\x13\\xbc\\x8b\\x8e\\x1d\\x21\\x06\\x7b\\x02\\x67\\x21\\x2a\\xde\\x8d\\xfa\\x32\\x58\\xd6\\xd8\\x63\\x35\\x5c\\x8b\\x85\\xa3\\xce\\x40\\x17\\xb9\\x15\\x53\\xfc\\xb8\\xe3\\x12\\xf6\\xb9\\x02\\x8d\\xee\\x6b\\xfa\\x2e\\x88\\x63\\x36\\x7b\\xf3\\x8f\\xd8\\x77\\x63\\xef\\xf3\\x3e\\x75\\xa0\\x55\\xab\\x01\\xa3\\x72\\xf0\\xe3\\xa6\\x3c\\x8f\\x98\\x01\\x03\\x2e\\x68\\xf4\\x30\\xb8\\x6d\\x75\\x66\\x30\\xe2\\x26\\xd6\\x48\\xdc\\xe0\\xc6\\x79\\xf4\\xa2\\x77\\x57\\x0f\\xce\\xbc\\xb1\\x02\\x39\\xb8\\x02\\xdc\\x4d\\x7d\\x34\\xe8\\xb7\\x80\\xf1\\x43\\x7f\\x01\\x6e\\xd0\\xa0\\x0b\\xe1\\x02\\xdf\\x71\\x02\\xee\\xd3\\x37\\xc0\\x0d\\x71\\x84\\x47\\x19\\x71\\x46\\xc5\\x8c\\xd1\\x0b\\xad\\xda\\xa2\\x90\\xc0\\x3d\\x6c\\xde\\x14\\xff\\x03\\x75\\x4d\\x17\\xe9\\x37\\x7d\\x0d\\x2d\\x8d\\x9a\\xd7\\x35\\x01\\x3d\\xf0\\x77\\x22\\xdd\\xfc\\xc2\\xa8\\x29\\x06\\x01\\x9a\\xc2\\xbb\\xc8\\x8f\\x75\\xd8\\xe6\\x94\\xb4\\x43\\x7b\\xd3\\x18\\xb9\\x2d\\x70\\x80\\xfe\\x2b\\xb4\\x2d\\x5c\\x5b\\x7a\\x15\\xb4\\xd9\\xe6\\xaa\\x03\\xbf\\xea\\x64\\x9f\\x87\\xb6\\x96\\x99\\x37\\xce\\xed\\x57\\xa0\\x6d\\xe1\\x69\\xa6\\xbf\\x14\\xf5\\xf2\\xb2\\xa2\\x5e\\x72\\x3b\\x5a\\x5b\\xfa\\x71\\xd4\\x08\\x3f\\x8d\\x7a\\xc9\\x26\\x68\\xb3\\xf5\\xcd\\xdc\\x5f\\x13\\xa8\\x61\\xc5\\x21\\x92\\x28\\x49\\xe7\\xc0\\x65\\xad\\xa8\\x38\\x99\\xa0\\xa3\\x8e\\x93\\x5f\\xcc\\x5a\\x00\\xbf\\x79\\xa9\\x29\\x8d\\xcf\\xe4\\x89\\xa6\\x6f\\xbd\\x46\\x3e\\xfd\\x35\\xb8\\xf0\\x0c\\x25\\x10\\x62\\x18\\x6b\\xde\\x4d\\x8e\\x80\\xab\\xf5\\x24\\xd3\\xd7\\xc1\\xd9\\xd4\\x6e\\x1c\\xfa\\xc1\\x09\\xd9\\xc6\\xbc\\x43\\x8a\\xdd\\x87\\xfc\\x87\\xa8\\x05\\xc7\\xbe\\x8a\\x94\\xaa\\x0f\\x21\\xb2\\x01\\xf5\\xbe\\x8c\\x9c\\x76\\xbf\\xb9\\x82\\xf4\\x7f\\x61\\x44\\x5d\\x7e\\x26\\x8c\\x1b\\xf7\\xdd\\xa0\\xd8\\x20\\x40\\x8e\\x7d\\x13\\xbd\\x0d\\x7b\\x70\\xdd\\xc3\\x90\\x26\\x1f\\x47\\xd9\\x6c\\x04\\x4f\\x57\\x9a\\xfe\\x0b\\x46\\xab\\xe5\\x3d\\xea\\xc3\\xe7\\x0e\\xc8\\x40\\x8c\\x5e\\x09\\x12\\x42\\x4a\\x0d\\x1e\\x41\\x4b\\x47\\x3f\\xbd\\x09\\xff\\x76\\x40\\x19\\xf6\\xc3\\x67\\xe1\\x69\\x78\\x9d\\x04\\xc8\\x28\\xb9\\x88\\xd4\\xc9\\xe7\\xc9\\x53\\xe4\\x55\\x4a\\x69\\x86\\x9e\\x4e\\x2f\\xa5\\x37\\xd1\\x63\\xf4\\x09\\xfa\\x63\\xfa\\x16\\xf3\\xb2\\x5e\\x76\\x3a\\xbb\\x88\\x1d\\x64\\x77\\xb2\\xe3\\xec\\x69\\xf6\\x13\\xf6\\x8e\\x14\\x90\\xfa\\xa4\\x0d\\xd2\\x1e\\xe9\\x46\\xe9\\x6e\\xe9\\x11\\xe9\\x19\\xe9\\x27\\xd2\\xdb\\x0e\\xb7\\x23\\xe3\\x18\\x75\\x9c\\xeb\\xb8\\xd4\\x71\\xd0\\x71\\xab\\xe3\\x3e\\xc7\\xc3\\x8e\\x27\\x1d\\x2f\\x38\\x5e\\x76\\xfc\\xdc\\xf1\\x96\\x0c\\xf0\\x13\\x50\\x71\\x87\\xa7\\x71\\x4d\\x72\\xb8\\x3f\\x54\\xec\\x71\\xc8\\x82\\xe3\\x41\\xc8\\xe0\\x9c\\xfd\\x23\\x42\\xe2\\x0c\\x42\\xed\\x04\\xee\\x0d\\x15\\xcb\\x27\\xf0\\x24\\xf1\\x33\\x66\\xdc\\x19\\xff\\xb4\\x68\\x39\\x0e\\xcf\\xcd\\xb9\\x36\\x6a\\xbe\\x01\\xdb\\xf4\\x0a\\x8c\\x86\\xb7\\xd5\\xcd\\x21\\xb5\\xc0\\x12\\x52\\xd0\\x09\\x3f\\x83\\xc0\\x22\\xb5\\xf9\\x71\\xe5\\xbd\\x62\\x77\\xfb\\xe1\\x5f\\x70\\x8d\\x8c\\xf3\\xa1\\x42\\x1a\\x7b\\xc3\\x4f\\x5c\\x0c\\x73\\xc3\\xc6\\xac\\x13\\x3f\\xc2\\xcc\\x14\\xc2\\xeb\\x14\\x4a\\x89\\x13\\xf8\\x4d\\x1e\\x47\\x90\\x46\\xac\\xe4\\xdf\\x71\\x3c\\x09\\xe8\\xb4\\xda\\x6f\\xb9\\xf1\\xe0\\x35\\xbc\\x23\\x16\\xb6\\xe4\\xe5\\x7b\\x94\\x3d\\x89\\x6b\\xac\\x89\\xd2\\x3c\\xcf\\x27\\x4e\\x4b\\x00\\x52\\xa4\\x13\\x77\\x56\\xa3\\x17\\x59\\x71\\x1a\\xc2\\x08\\x6b\\xa2\\xf0\\xcf\\x4b\\xd4\\xaf\\xf2\\x34\\x7a\\x33\\x8e\\xb9\\x75\\x3e\\xbc\\xd6\\x89\\xfd\\x29\\x42\\x02\\xfb\\x8a\\x1a\\x7b\\xb3\\x13\\x61\\x5d\\x37\\xc4\\xe9\\xbf\\x63\\xfb\\xcd\\x23\\xb4\\xf7\\xe8\\xe7\\x98\\xba\\xb0\\x7d\\x03\\x1a\\x76\\x13\\x2f\\xce\\x47\\xa3\\xf7\\x1d\\xd8\\x03\\xa3\\x27\\x31\\xf2\\x09\\x2c\\x95\\xc1\\x74\\x13\\xca\\x64\\xc4\\xfe\\xff\\x07\\xec\\xa3\\xbd\\x57\\x16\\x1c\\x20\\x01\\x70\\x37\\xd5\\x19\\x16\\xfb\\x29\\x45\\xee\\xc1\\xdb\\x60\\x61\\x5f\\xda\\x88\\xaf\\xe5\\x1b\\x63\\xd5\\xd0\\x6b\\x02\\xe9\\x58\\x90\\x13\\xe5\\x3b\\x8f\\x1c\\x5d\\xa2\\x36\\x17\\x99\\x5c\\x22\\xc7\\x49\\xee\\x5e\\x22\\x47\\x21\\x9f\\x5e\\x22\\x47\\x26\\x77\\x2d\\x91\\xe3\\x20\\x9f\\x5a\\x22\\x47\\xa2\\xdf\\x04\\x37\\x64\\xa0\\x43\\xec\\xe7\\xc6\\x29\\x4c\\x93\\x7b\\xf1\\x1b\\x63\\xbd\\x02\\x88\\x77\\x86\\x71\\xdd\\x42\\x10\\x60\\xdf\\x02\\x37\\x8e\\xcc\\x27\\x76\\x80\\x05\\xf5\\x49\\xb8\\x65\\x0e\\x34\\xbc\\x77\\x8d\\x9a\\xff\\x27\\xb8\\x5b\\xd6\\x41\\x9c\\x6e\\xa2\\xb6\\x7c\\x63\\xf5\\x93\\x84\\x5a\\x72\\xf8\\x79\\x30\\xd6\\xe7\\x0e\\x68\\xb7\\x56\\xdc\\x3c\\x1f\\xc6\\x4c\\x07\\xd1\\x87\\x4b\\xe3\\x0b\\xa3\\xe5\\x20\\xa4\\xe1\\x15\\x68\\x6f\\x69\\xdd\\xe8\\x99\\x9f\\x44\\xa0\\xad\\xa9\\xbc\\xb1\\x9f\\xba\\x88\\xa7\\x25\\x15\\x31\\x68\\xfa\\x3b\\xbc\\x9d\\x42\\x02\\x7f\\x14\\x98\\x16\\xcd\\x60\\x6a\\x0a\\xeb\\xf3\\x58\\x58\\xd9\\xab\\x78\\x9b\\x34\\x9f\\x95\\x3f\\x07\\x17\\xbf\\xa7\\x10\\x33\\xf0\\x22\\xde\\x95\\x05\\x27\\x04\\x70\\x7e\\x55\\x6c\\x2b\\x40\\x7f\\x0b\\xce\\xe6\\x53\\x42\\x3e\\x89\\xb7\\x4b\\x46\\xcc\\x80\\x71\\xa7\\x1d\\x06\\x67\\xf3\\x49\\x27\\x77\\xe2\\xed\\x62\\x96\\x89\\xd3\\x77\\x30\\xba\\x92\\xd1\\x96\\x81\\x4b\\x7d\\x06\\x1c\\x90\\xc2\\x2f\\x54\\xfa\\x1f\\xe0\\x40\\x9a\\x2d\\x0a\\x7e\\x78\\x14\\x6f\\x86\\x04\\xde\\x9d\\xbf\\x41\\xfe\\x86\\xd1\\xee\\x38\\x3c\\x02\\x3f\\x21\\x5e\\x32\\x4a\\x2e\\x25\\x47\\xc8\\x57\\xc9\\x4b\\x14\\x68\\x37\\xdd\\x48\\x27\\xe8\\x11\\xfa\\x10\\x7d\\x86\\xfe\\x8c\\x51\\xa6\\xb1\\x31\\x76\\x11\\xbb\\x91\\xdd\\xcb\\x1e\\x65\\x2f\\xb2\\xd7\\x25\\xa7\\xd4\\x2d\\x55\\xa4\\x8b\\xa4\\x43\\xd2\\x5d\\xd2\\xc3\\xd2\\x33\\xd2\\x2b\\xd2\\x6f\\x1d\\x21\\xc7\\x80\\x63\\x83\\x63\\xb7\\xe3\\xa0\\xe3\\x0e\\xc7\\x83\\x8e\\x27\\x1d\\xb3\\x8e\\x37\\x64\\x59\\x4e\\xca\\x23\\xf2\\x16\\xf9\\x52\\xf9\\x90\\x7c\\x07\\xd2\\xa9\\x2f\\xc8\\xaf\\xca\\x6f\\x2b\\x6d\\x4a\\x52\\x19\\x52\\x36\\x28\\x3b\\x95\\x09\\xe5\\xb0\\x72\\x87\\x72\\x4c\\xf9\\xaa\\xf2\\xb4\\x32\\xab\\xbc\\xa6\\xbc\\xed\\x94\\x9c\\x01\\xa7\\xe6\\x1c\\x70\\xae\\x76\\x6e\\x74\\x5e\\xe0\\xdc\\xe3\\xdc\\xe7\\x3c\\xe4\\xbc\\xc9\\x79\\xbb\\xf3\\xa8\\xf3\\x98\\xf3\\x38\\x79\\x10\\x22\\x02\\x8a\\xa6\\xf0\\x24\\x7a\\x70\\x65\\xc2\\x02\\x1b\\xf2\\x23\\x26\\x17\\x15\\x30\\xce\\xa0\\x53\\x5f\\x86\\x08\\xce\\xb5\\xcf\\x82\\x3f\\x3d\\x0b\\x20\\xad\\x07\\x4f\\x83\\x71\\x3f\\x74\\xd2\\x08\\xc6\\x05\\xe7\\x14\\x94\\xcf\\xc2\\xc8\\x34\\xf1\\xad\\x1d\\x9a\\x3d\\x0c\\x21\\x41\\x6b\\x79\\x90\\x56\\xe4\\xf8\\x8d\\xdf\\xaa\\x3d\\x24\\xfa\\x15\\x82\\x4f\\x43\\x50\\xdc\\x7e\\x1e\\x84\\xd9\\x8d\\xd3\\xd7\\xd4\\x0f\\xf2\\x39\\x08\\x36\\xe0\\xb7\\xc0\\x74\\x7d\\xb8\\x8e\\x7c\\xff\\xa6\\xb0\\x2f\\x21\\x7a\\x1c\\x73\\xe2\\x82\\xbe\\x8a\\xd9\\x30\\x47\\x83\\xf2\\xcd\\x40\\x0c\\xb5\\xb4\\x53\\x8c\\xa0\\xae\\x76\\x0a\\x69\\xdb\\x80\\xd8\\xc7\\x5e\\x6b\\x97\\x8b\\xbd\\x4b\\x76\\xe0\\x8d\\x16\\x10\\xf7\\xa1\\x87\\xe3\\x3d\\xa2\\xf5\\x28\\x2f\\x4d\\x8e\\xe1\\xdf\\xc5\\x7b\\xd6\\x8d\\xdf\\x76\\xd2\\xe3\\xe2\\x86\\x5e\\xb2\\x57\\xec\\x56\\xbc\\x31\\x52\\x38\\x47\\x31\\xc4\\x84\\xb1\\x9f\\x48\\xbb\\x84\\xa1\\x8b\\x9c\\x8b\\xf3\\x99\\xc0\\x1b\\xa6\\x41\\x77\\x18\\x29\\x5e\\xf0\\xd3\\x93\\xe0\\xc5\\x59\\x34\\x66\\x34\\x20\\xee\\x29\\x4d\\x60\\x6b\\x39\\x18\\x10\\xdf\\x9a\\x6b\\xe0\\xc3\\xd8\\x49\\xa2\\x07\\xec\\x0b\\xe8\\x1f\\x38\\x86\\xe7\\x30\\x25\\x28\\x50\\x13\\xa3\\xd5\\xc8\\xbb\\xc0\\x8b\\x34\\x4d\\x7a\\x31\\x2c\\x83\\x7d\\x1b\\xdb\\xe5\\x27\\xc8\\x83\\x31\\x5a\\xc3\\x38\\x17\\x7e\\x88\\x42\\x8e\\x7d\\x02\\xbf\\x8d\\x09\\x0c\\xc3\\x23\\xce\\xb6\\x49\\x8f\\x1f\\xc4\\x5c\\xbe\\x47\\x38\\xcd\\xe0\\x6d\\xec\\x2a\\xf2\\x08\\xf6\\x82\\xd3\\x40\\x51\\x81\\x9f\\x68\\xa2\\xe7\\x01\\xf2\\x45\\x81\\x5b\\x2e\\xb2\\xd3\\xe9\\x7e\\x1c\\x7f\\x00\\xb2\\x62\\x4f\\xd8\\xa0\\x28\\x3c\\x6e\\x7d\\x17\\xb0\\xe8\\x4e\\x3e\\xba\\x00\\xfb\\x98\\x18\\xb9\\x1f\\x7d\\x04\\x87\\x11\\x56\\xfa\\x44\\xca\\x3d\\xd6\\x77\\x5e\\x41\\xc5\\x70\\x7a\\xc1\\xd8\\x99\\x5f\\x16\\xfc\\xac\\x2e\\x71\\x2b\\x87\\x05\\xd6\\x66\\x8c\\xed\\x26\\x13\\x62\\x5a\\x9c\\x91\\x80\\xc0\\x71\\xfd\\xe4\\x2b\\xb6\\xef\\x4c\\x5a\\x35\\x85\\xb1\\x59\\xd2\\x70\\x2f\\x42\\x7b\\x7b\\x7b\\x31\\xcc\\x89\\x92\\x6d\\xe0\\xb6\\xed\\x03\\x7e\\xa2\\x71\\x0f\\x90\\xcf\\xe2\\xad\\xd2\\x98\\xed\\xa0\\x18\\x7f\\x1a\\x1e\\xb3\\x6a\\x0b\\x58\\x14\\xad\\xd1\\x6e\\x8e\\x6c\\x69\\xaa\\xcd\\x4e\\x95\\x5c\\x0b\\xee\\x96\\x59\\x14\\xf7\\x07\\x03\\x91\\xc3\\xa1\\x86\\xed\\x1b\\xf6\\x71\\xbc\\x59\\x52\\x82\\x0a\\x34\\x7a\\x61\\x8c\\x34\\x4a\\xbb\\xa0\\xdd\\x1a\\x69\\x83\\xf3\\x17\\x20\\x7f\\x8c\\x37\\xd4\\x02\\x78\\x42\\xee\\xc7\\x7a\\x1a\\x23\\xe1\\x6b\\x1c\\x25\\x7f\\xb4\\x20\\x9d\\x63\\xb3\\x77\\x41\\xfb\\xa2\\x30\\xe4\\xeb\\x58\\x7f\\xf3\\xb8\\x33\\x90\\x26\\x5b\\xf1\\xc6\\x34\\x47\\x6d\\x51\\xaa\\xe4\\xcf\\x6c\\xfd\\xd4\\x30\\x1d\\x4f\\x04\\x93\\x30\\x9d\\xe3\\xb0\\x69\\x8b\\xa7\\xe2\\x87\\x0f\\x63\\x7f\\x16\\x40\\x39\\x36\\x0d\\x6d\\xb6\\x53\\xe1\\x13\\xe7\\xea\\x66\\x68\\xb3\\x4a\\x6b\\x02\\x12\\xa7\\xc9\\xe7\\xf1\\x7e\\xe5\\xbe\\xa6\\xf8\\x1c\\x1b\\x33\\x70\\x0e\\xb4\\xb5\\x9c\\x76\\x63\\xa7\\xfd\\x21\\xd6\\xd0\\x18\\xbf\\x17\\xbd\\xed\\xd6\\x6d\\xf5\\xf2\\x3c\\x03\\x06\\x7c\\x14\\x6f\\x5d\\x3e\\x3f\\x62\\x0f\\x92\\x2f\\x21\\x9d\\xc8\\xc7\\x17\\xc4\\x3e\\x05\\xc8\\x9f\\xd8\\xd2\\x24\\xb4\\x6f\\x72\\xd3\\xbf\\x07\\x57\\xeb\\xbd\\xc0\\xfe\\x10\\x5c\\x7c\\xcf\\xd8\\x70\\x92\\xf3\\xb0\\x0d\\xb3\\x97\\xfc\\x3e\\xfe\\x10\\xde\\xec\\x66\\x6f\\x38\\x44\\xfd\\x18\\xde\\xe3\\x8d\\xdd\\xac\\x91\\x2f\\x60\\x4a\\xd4\\xc2\\xfd\\x03\\x64\\x0a\\x9c\\x56\\x3f\\xda\\x10\\xeb\\x3b\\x6e\\x4b\\x71\\x22\\xb6\\xf7\\x90\\x2d\\x45\\x46\\x5c\\xee\\x61\\x5b\\x0a\\xd2\\x2f\\x64\\x17\\xd6\\x1c\\xc3\\xb8\\x33\\x1c\\x22\\x7f\\x10\\x9c\\x56\\x8f\\x10\\x36\\x91\\x07\\xd0\\xde\\xb3\\x01\\xf1\\x6e\\x11\\xef\\x26\\x4d\\xff\\x1e\\xc4\\x18\\x38\\x94\\x8a\\xb2\\xbf\\xc4\\x37\\x8e\\x61\\x24\\xe0\\x1b\\x20\\x37\\x6e\\x04\\x72\\x1f\\xe6\\x89\\x15\\xa1\\xf3\\x02\\xd3\\x50\\xf1\\x7c\\x6f\\x16\\x18\\x85\\x31\\x3b\\x5f\\xc3\\x67\\x5c\\x0d\\x46\\x05\\x3d\\xaa\\x81\\x46\\xaf\\x41\\xbd\\x0b\\x9c\\x69\\xfa\\x5e\\x51\\x5e\\x83\\x00\\xf9\\x53\\x90\\xc4\\xb8\\x3e\\x82\\xda\\xb0\\x5e\\x48\\x33\\x86\\x58\\x89\\x31\\x9f\\x7f\\x00\\x92\\xc0\\xc3\\xbe\\x85\\x4f\\x9d\\x10\\x20\\x3b\\xf1\\xc9\\x80\\x64\\xcb\\x61\\x0f\\xdc\\x02\\x0f\\xc3\\x0f\\xe1\\x1d\\x92\\x20\\x15\\x72\\x29\\xf9\\x08\\x79\\x90\\x3c\\x43\\x5e\\xa3\\x32\\xcd\\xd1\\x0d\\x74\\x2f\\xd2\\xaf\\x4f\\xd2\\x97\\xe9\\x6f\\x59\\x98\\x0d\\xb2\\x8d\\x6c\\x0f\\x3b\\xc4\\xee\\x64\\x0f\\xb1\\x27\\xd9\\x8f\\xd8\\x09\\x09\\xa4\\xb0\\x54\\x90\\xc6\\xa4\\xed\\xd2\\x5e\\xe9\\x80\\xf4\\x11\\xe9\\x6e\\xe9\\xf3\\xd2\\x57\\xa4\\x27\\xa5\\xe7\\xa5\\x59\\xe9\\x15\\xe9\\xe7\\xf4\\x6b\\x10\\x40\\x68\\x1d\\xc7\\x93\\x6c\\x52\\x81\\x9c\\x87\\xd8\\x61\\x71\\x01\\x3f\\xfa\\x7b\\x4a\\xe1\\xde\\xa5\\x3a\\xc2\\xc3\\xd4\\x02\\x7c\\x22\\x2d\\x68\\x52\\x63\\xd6\\xd3\\xb4\\xb0\\x44\\x29\\x0e\\x2d\\xa3\\x48\\xaf\\xe6\\xe8\\x32\\xc1\\xbd\\x6c\\x2d\\xa5\\x21\\x44\\xe0\\x65\\x1e\\xc3\\xb3\\x74\\xaa\\xbe\\xc7\\xe9\\x47\\xc1\\x87\\xb7\\x4d\\x0b\\x37\\x0d\\x34\\xb1\\x6a\\x2a\\x2d\\x08\\xa8\\xb7\\x78\\xaf\\xc3\\x10\\xa7\\xbd\\x4b\\x94\\x08\\xe2\\x4e\\x49\\x41\\x8e\\xf6\\x0a\\x2e\\xe5\\x62\\x98\\x94\\x17\\xd2\\xb4\\x6f\\x89\\x7c\\xce\\xc3\\xee\\xa4\\x3d\\x4b\\x7e\\x1f\\xc6\\xfd\\x70\\x31\\xe2\\x0f\\x08\\x7f\\x71\\x1f\\x35\\x28\\x45\\xce\\xc9\\xbb\\x08\\xf3\\x35\\xd4\\xe2\\xe4\\xe7\\xa7\\x5b\\xc8\\x35\\xf0\\xde\\xa7\\xbb\\x70\\x24\\x8b\\xcd\\x79\\x06\\xe2\\x34\\xbf\\x44\\x2e\\x87\\x75\\x73\\xe0\\x5d\\xa4\\x6d\\x81\\x53\\xd1\\xdc\\x12\\xdf\\x22\\xc5\\x4e\\x6f\\x41\\x6c\\x64\\x89\\x15\\x62\\xdf\\xc0\\x9a\\x39\\x07\\x3f\\x60\\xad\\x10\\x6f\\x2b\\x45\\x6e\\xc1\\x13\\x9e\\x45\\x0c\\x37\\x80\\x75\\x72\\x6a\\xc3\\x68\\x7f\\x06\\xe9\\xb4\\xc6\\x97\\x1a\\xe2\\x66\\x01\\xe8\\x62\\x0f\\x8a\\x5b\\x22\\x23\\x78\\xc5\\x31\\x01\\x2d\\x2f\\x44\\xab\\x47\\xfb\\x0c\\x19\\x39\\x3e\\xa6\\x88\\x74\\x1f\\xc2\\xae\\x06\\x1e\\xf5\\xc5\\xa6\\x7a\\xa2\\x82\\x7f\\x13\\x20\\xa7\\xe3\\xed\\xe1\\x45\\x6a\\x49\\x15\\x98\\x8c\\x71\\xc3\\x76\\xa3\\xaf\\xc8\\x96\\x79\\x20\\x1f\\x41\\x8f\\x57\\xe6\\x18\\x3c\\xc8\\xb9\\xee\\x80\\x5b\\xb1\\xac\\x49\\xad\\x7b\\xf0\\x5c\\x74\\xb1\\x07\\x10\\xf2\\xa7\\x05\\xfe\\x6a\\x62\\x7f\\x27\\x44\\xaa\\x17\\xf1\\x03\\x8d\\xd3\\xa9\\xf4\\x63\\x08\\xe7\\x39\\xee\\xe1\\xc1\\x59\\xf0\\xd2\\x8f\\x80\\x0b\\x67\\xd7\\xd7\\xa0\\x40\\x99\\x03\\xe1\\xb7\\x81\\x75\\x5a\\x7b\\x85\\xb5\\x09\\xf8\\x1d\\xb0\\x6e\\x92\\x3f\\x07\\x85\\xd7\\x81\\xe7\\x4f\\x83\\xd7\\xf1\\xbd\\x31\\xf3\\x1f\\x47\\x0e\\x9d\\x17\\xfd\\x57\\x1b\\xb8\\xc9\\x57\\x41\\x46\\x7c\\xdb\\x6b\\xc0\\x7a\\xfa\\x24\\xc8\\x08\\x6f\\xf1\\xac\\xc0\\x37\\x11\\xa2\\x7a\\x11\\xdf\\xd2\\x98\\x8c\\x25\\xc5\\x3a\\x31\\x2e\\x69\\x36\\xee\\xbe\\xdd\\xf8\\xe4\\x83\\x4e\\xe6\\x44\\xbb\\x1f\\x0d\\xfe\\x17\\x30\\xc4\\x4e\\x92\\x30\\x06\\xd7\\xc0\\x51\\x78\\x1c\\x5e\\x82\\xdf\\x92\\x18\\x59\\x49\\x76\\x92\\x83\\xe4\\x2e\\xf2\\x08\\x79\\x96\\xbc\\x4a\\x7e\\x4b\\x03\\xb4\\x40\\x2b\\x74\\x9c\\xee\\xa3\\x37\\xd1\\xa3\\xf4\\x38\\x7d\\x82\\xbe\\x40\\x7f\\x42\\x4f\\xd0\\xb7\\x19\\x65\\x5e\\xf6\\x09\\xd4\\x39\\x54\\x6d\\x52\\xa2\\x06\\x77\\xdd\\x0e\\x87\\x84\\xf4\\x82\\xfe\\x19\\xda\\x7f\\x37\\xca\\xfb\\xc5\\xad\\xe2\\x43\\x4c\\xdb\\xda\\x0d\\xe4\\xeb\\xe0\\x83\\x1e\\xc4\\xeb\\x34\\xdc\\xbb\\x01\\x81\\x23\\xc4\\x05\\x65\\xe0\\x20\\x8f\\xfd\\x9e\\x12\\x12\\xbd\\x15\\x6d\\xdb\\x4d\\xdc\\xc5\\xc0\\xa6\\xf8\\x7c\\x0b\\x8e\\x1b\\xf9\\x06\\x46\\x46\\x6e\\xae\\xa1\\x4b\\x48\\x15\\x8c\\x16\\x1e\\x3f\\x65\\xbe\\x44\\xbe\\x0e\\xde\\x05\\xf9\\x71\\x94\\xfa\\xf1\\xfe\\x2d\\x9d\\x2b\\x91\\x6f\\x82\\x67\\x41\\x6e\\x1e\\x77\\x67\\x82\\x5e\\x24\\xce\\x6d\\x7a\\x11\\xfe\\xfd\\x32\\x4b\\x5e\\x91\\x5a\\x20\\xc7\\xba\\x0e\\xda\\xb1\\x4e\\xaf\\x80\\xbf\\x51\\x4e\\xd1\\x33\\x37\\xa6\\x87\\x05\\x87\\x9b\\x53\\x0a\\x5d\\xd0\\x45\\xaf\\x6f\\x29\\x1f\\xe3\\xd0\\x80\\x3d\\x0a\\xed\\xd8\\xa7\\x04\\x9e\\x94\\x1c\\xd2\\x52\\x09\\x88\\xd2\\x8f\\xa3\\x5f\\xa1\\x80\\x25\\x1d\\x30\\xe6\\x21\\xc7\\x3e\\xdd\\x94\\x2a\\x24\\x5e\\xf4\\x12\\x4c\\xf5\\x08\\xce\\xb6\\xe8\\x3d\\x3d\\xd2\\x54\\x96\\xc3\\xa8\\x00\\x2c\\x07\\x97\\xc0\\x16\\xa3\\x1c\\x9b\\x81\\x14\\xf3\\x82\\x0b\\x25\\x9f\\x01\\x71\\x8b\\x19\\x7b\\xe2\\x6b\\xe0\\x6c\\x99\\xb3\\x41\\x91\\xc2\\xa9\\xf2\\x30\\xa4\\x99\\x07\\x14\\x91\\xc2\\x21\\xdb\\x11\\xd4\\xaf\\xc0\\x75\\x67\\xb7\\x83\\x03\\x22\\x1c\\x5e\\xb0\\x76\\x8c\\x8c\\xcf\\x7b\\xd2\\x8b\\x3c\\x0d\\x9c\\x53\\xf2\\x28\\x48\\x62\\xee\\x77\\xc1\\x63\\xf0\\x06\\xc9\\x91\\x0b\\xc8\\x4d\\xe4\\x61\\x32\\x4b\\x81\\x16\\xe8\\x76\\x7a\\x23\\xfd\\x3c\\x7d\\x96\\xfe\\x92\\x85\\xd9\\x6a\\x21\\x55\\x7f\\x81\\xbd\\x29\\x85\\xa5\\x51\\x69\\x97\\x74\\xa3\\x74\\x9f\\xf4\\xb8\\x34\\x2b\\xbd\\xe5\\x08\\x38\\x06\\x1d\\xe7\\x3a\\xf6\\x39\\x6e\\x75\\x3c\\xe0\\x98\\x76\\xbc\\xec\\x78\\x47\\x0e\\xc9\\x83\\xf2\\x16\\xf9\\x0a\\xb9\\x2e\\xdf\\x27\\x3f\\x2a\\xbf\\x20\\xff\\x5c\\xa1\\x4a\\x42\\x19\\x56\\xb6\\x28\\x7b\\x95\\xc3\\xca\\xdd\\xca\\xc3\\xca\\xd3\\xca\\xcb\\xca\\x5b\\xce\\x36\\xa7\\xe6\\x1c\\x71\\x6e\\x71\\x5e\\xea\\x3c\\xe4\\xbc\\xdd\\x79\\xcc\\xf9\\xa8\\xf3\\xfb\\xce\\x97\\x9d\\xbf\\x74\\x51\\x57\\xc8\\x95\\x73\\x8d\\xba\\x36\\xb9\\x2e\\x72\\x5d\\xe3\\xaa\\xbb\\xee\\x72\\x3d\\xe0\\x7a\\xcc\\xf5\\x7d\\xd7\\x8f\\x5d\\xaf\\xb9\\xde\\x6a\\xa3\\x6d\\xde\\xb6\\x58\\x5b\\x77\\xdb\\x00\\xe9\\xb7\\xc9\\xa7\\xf9\\x7a\\x73\\x09\\xf2\\xc2\\xbb\\xdd\\x63\\x71\\xa9\\x3c\\x10\\x25\\x7d\\xff\\x1b\\xdf\\x35\\x28\\xce\\x14\\xc9\\x62\\x6a\\xe3\\x3b\\x7e\\x07\\xda\\xe5\\x76\\x3e\\x81\\xef\\x19\\x78\\x59\\xe6\\x94\\xa5\\xfd\\xd8\\x4e\\xa3\\x74\\x0e\\xf9\\x1c\\x8d\\xd2\\x51\\x71\\x97\\xf1\\xbd\\x17\\xb5\\x6e\\x23\\x3f\\xd1\\x5b\\x4a\\x72\\x8e\\x06\\xde\\xe4\\x78\\x83\\xa5\\xf0\\xa4\\x84\\x40\\x25\\xf9\\x25\\xeb\\xb4\\x71\\x37\\xb0\\xce\\x58\\x4b\\x49\\xbe\\x3b\\x43\\x38\\x03\\x42\\x36\\x82\\x54\\x6e\\x8e\\xf4\\x88\\x7b\\xd4\\x5e\\xa7\\x29\\xff\\xe5\\xdc\\x39\\xe4\\xd5\\x90\\x68\\x4b\\x39\\x7b\\x8d\\x76\\xee\\xfa\\xf7\\x84\\xcc\\x2c\\x6d\\x71\\x7f\\x17\\xe7\\x8f\\xd4\\xb0\\x5c\\x87\\x85\\x1f\\x78\\x71\\x0c\\x5e\\x1b\\xb5\\x8c\\x9c\\x47\\xa2\\x21\\x2e\\xd9\\x68\\xd7\\x67\\xa3\\x98\\x52\\x08\\x23\\x8c\\x59\\xda\\x87\\x58\\x62\\x87\\x75\\x43\\x72\\x5e\\x54\\xba\\xa5\\xae\\x44\\x4b\\x5d\\xf6\\x31\\x34\\xf8\\x04\\xef\\x43\\xdc\\xc0\\x2b\\xf0\\x0e\\x0e\\xe5\\x85\\xb4\\xa9\\x31\\xe7\\xe4\\x79\\xdc\\x5d\\x8d\\x71\\xa6\\xc5\\x9b\\x47\\x70\\x6d\\x82\\x90\\x26\\x69\\x21\\xef\\x58\\xac\\xef\\x62\\x8f\\x92\\x78\\x4b\\x19\\x7b\\x9f\\x04\\xd5\\x4d\\x06\\x5a\\xca\\x64\\xc4\\xce\\x6b\\x48\\xeb\\xfd\\x24\\x75\\x8a\\xb6\\xf8\\x8a\\x44\\xc9\\x80\\x98\\x89\\x25\\xeb\\x61\\x7e\\x84\\xd7\\x59\\x41\\x9b\\xa5\\x17\\xf2\\xe2\\x98\\x1f\\x79\\x55\\xcd\\x25\\x6c\\xd2\\x0b\\x7a\\x83\\xb5\\xbf\\x35\\x71\\x1e\\x38\\xd7\\x3c\\xc0\\xa1\\x38\\x79\\x46\\xdc\\x63\\x69\\x0b\\x2b\\xf5\\x58\\x30\\xbc\\x9b\\x4d\\x5a\\xe3\\x57\\xc5\\x49\\x46\\x0a\\x87\\xd3\\x15\\xec\\x29\\xc1\\x21\\x59\\x54\\xae\\x03\\x87\\x10\\x3f\\x6c\\x5e\\x37\\xae\\xa5\\x13\\x80\\x04\\xf9\\xeb\\x96\\x76\\xb3\\x82\\x37\\xca\\x39\\xf9\\xdf\\x11\\xd4\\x20\\x1f\\x0d\\x3f\\xc5\\x9d\\x10\\xe4\\x54\\x15\\xbd\\x0d\\xf1\\xd2\\xa8\\x8d\\x9b\\xcf\\x25\\xda\\x88\\xe5\\x90\\xef\\x22\\x2c\\x68\\xd4\\xec\\x6e\\xdc\\xb4\\x64\\xbb\\xc8\\x0b\\x2c\\xe4\\xdb\\xc1\\x8b\\x16\\x5f\\x69\\x41\\x1e\\xe9\\x16\\xfc\\xa4\\x06\\xac\\x49\\x8b\\x99\\xf1\\x91\\x71\\xcc\\xb3\\xf7\\x46\\x15\\xbd\\xf7\\x93\\xbf\\x6a\\xe9\\x4b\\x10\\x71\\x18\\x83\\x46\\xd5\\x58\\x58\\xec\\xde\\x2e\\x0b\\x02\\x5a\\x5c\\x22\\x72\\x46\\x4b\\x7b\\xbc\\x4e\\x63\\x94\\x1a\\x59\\x26\\xa4\\x0f\\x66\\x9e\\x71\\xdb\\xe1\\xdd\\xc7\\x54\\xe4\\x20\\xd9\\x6b\\x14\\x32\\x70\\x92\\x6c\\xf9\\xa6\\x21\\x03\\xfa\\x3e\\xb8\\x9b\\x7a\\xe8\\x17\\x3d\\xf4\\x92\\xde\\x96\\x6f\\xba\\x04\\x8e\\x98\\x66\\x21\\xfc\\x26\\x2e\\xb4\\xc7\\x02\\xe2\\x34\\xfa\\x20\\xc0\\x82\\xb6\\x9c\\x30\\xee\\xb3\\x2e\\xbe\\xa2\\xb0\\x02\\x39\\x62\\x9a\\xd0\\x5f\\xb1\\xd1\\x72\\xe4\\x39\\x68\\x6f\\xea\\x41\\x5c\\xe0\\xb7\\x7f\\xd1\\x92\\x2e\\x4e\\x3a\\xfb\\x2c\\xa6\\x73\\xfc\\x3a\\x05\\x5d\\xb8\\xef\\x8d\\x39\\x2b\\x08\\x19\\x4b\\x63\\xce\\x38\\x37\\xa3\\x2a\\x38\\x5b\\x0d\\x69\\x8d\\x31\\x8f\\x71\\x76\\x37\\x72\\x9e\\x1a\\x7b\\x5b\\x70\\x36\\x49\\x57\\x4b\\x3d\\x1d\\xe2\\xeb\\x21\\xe4\\x30\\x69\\x16\\x14\\x13\\x34\\x1a\\x39\\x5f\\xf4\\x33\\xd0\\xcc\\x03\\xa4\\x07\\x50\\x02\\xd3\\x7a\\xf2\\x2e\\x11\\x32\\x9c\\x6e\\x8b\\x3b\\x27\\x03\\x23\\xcf\\x22\\x4d\\xd1\\x18\\xab\\x6a\\xac\\x03\\xf9\\x1b\\xe4\\x3c\\x71\\x0a\\xc0\\x92\\xa7\\xc2\\x9e\\x05\\x35\\x48\\xc0\\x68\\x5d\\x50\\x30\\x9a\\xb5\\x56\\x06\\xbd\\xf3\\xa2\\xd0\\x1e\\xe0\\x35\\xe0\\xa9\\x25\\xcb\\x51\\x7b\\x20\\xde\\x44\\xf1\\x1d\\x40\\xea\\xc3\\x84\\xd7\\x5c\\x63\\xe9\\xaa\\xa6\\x34\\xce\\x6d\\xbf\\x14\\x39\\x4f\\xf6\\xb6\\x9d\\x70\\x65\\x53\\x39\\xbf\\x41\\x07\\x90\\xa7\\xc0\\xd9\\x34\\x9e\\x36\\xf2\\xed\\x96\\x14\\x17\\xc6\\x95\\xb3\\xa7\\x38\\xc9\\x5f\\xb6\\xa4\\x28\\x2c\\x20\\xe4\\x50\\x7e\\x6b\\x27\\x7f\\xab\\xa5\\x8c\\x4c\\x9e\\x68\\x49\\x71\\x90\\xbf\\x68\\x49\\x91\\xc8\\x0f\\x84\\x26\\x84\\x39\\x0f\\x71\\xe6\\x43\\x4e\\x94\\x0d\\x6e\\x92\\xa7\\x5b\\xbe\\x72\\x93\\xef\\xb4\\xa4\\xb4\\xc3\\xb7\\x90\\x3b\\xd5\\xd0\\xea\\xe9\\x07\\xb9\\xb1\\x87\\xc8\\x05\\x48\\x4b\\x99\\xb2\\x08\\x83\\xb2\\x6a\\x7c\\x7d\\x1b\\x46\\xb3\\x49\\xa1\\xdc\\xfd\\x05\\x4b\\x0b\\x22\\x40\\x7e\\x08\\x92\\x38\\xb3\\x4f\\xe0\\x93\\x17\\x42\\xac\\x03\\xf9\\x47\\x3e\\xa4\\xd2\\xfa\\x60\\x23\\xec\\x81\\x43\\x70\\x07\\x3c\\x00\\x8f\\xc3\\xf3\\xf0\\x13\\xf8\\x25\\x01\\xe2\\x23\\x1a\\x19\\x24\\x15\\xb2\\x85\\xec\\x24\\x7b\\xc9\\x7e\\x72\\x98\\xdc\\x02\\xbf\\xc0\\x95\\xd3\\x6c\\xf4\\xba\\x71\\xcf\\xf4\\x20\\x17\\xf4\\x69\\x71\\x06\\x82\\xe2\\x26\\xe2\\x92\\xc1\\x00\\xfb\\x1a\\xb4\\x2f\\x46\\x59\\xc1\\xbf\\xa1\\x26\\x8d\\x17\\xe9\\xaf\\x30\\xd2\\xa4\\x01\\x48\\xb2\\x28\\xa6\\x26\\x70\\x97\\x7b\\xa0\\x1b\\xc7\\xd3\\x49\\xa7\\x05\\xd7\\x92\\xa7\\xa2\\x86\\x0a\\xbc\\x01\\x2e\\xd1\\x17\\xab\\x0f\\x64\\x06\\xf9\\x83\\xe1\\x06\\x7f\\x92\\xfc\\x2d\\xa6\\x78\\xf1\\xe6\\xe6\\x9a\\x36\\xb3\\xa8\\x7d\\x62\\x96\\x89\\xb3\\x88\\xa0\\x6d\\x05\\x95\\x01\\x4f\\xe2\\xbb\\xc9\\x83\\x08\\x90\\x77\\x83\\x22\\xe0\\x29\\xd2\\xb6\\xf0\\x4b\\x50\\x44\\xbb\\xfc\\x86\\xea\\x44\\x6c\\x1c\\x39\\x9f\\xec\\x8f\\xc0\\x61\\x72\\xc1\\xa1\\x88\\xcf\\x08\\x87\\xc9\\x8f\\x44\\x99\\x30\\xc4\\xe9\\x5f\\xe2\\x33\\x8e\\x85\\x3d\\x8f\\x54\\xae\\x17\\xd2\\xec\\x1e\\x60\\x88\\x41\\x44\\x60\\x10\\xb6\\xc3\\x75\\x70\\x27\\x3c\\x0c\\xcf\\xc0\\x2b\\xf0\\x0e\\xf1\\x92\\x0c\\x19\\x26\\xeb\\xc9\\x05\\x64\\x2f\\x39\\x40\\x3e\\x42\\xee\\x26\\x9f\\x27\\x8f\\x90\\x6f\\x92\\xa7\\xc9\\x0b\\xe4\\xc7\\x2c\\x8e\\x77\\x52\\x08\\x23\\x93\\x34\\xe0\\x4c\\x4a\\x68\\xc9\\x65\\x21\\xc0\\x92\\x08\\x5d\\x32\\xc8\\x9d\\x10\\x7c\\x48\\x9c\\xeb\\x18\\x52\\xaf\\x39\\x96\\xc2\\x9b\\xae\\x35\\xdf\\xe4\\x0f\\x70\\xe9\\x77\\x6b\\xfd\\x9c\\xf7\\x5b\\x42\\x48\\x1c\\xc2\\xfd\\xde\\xa0\\x87\\x8c\\x3a\\xef\\x10\\xdc\\x97\\xae\\x05\\x72\\xbd\\x4b\\x90\\x9b\\xe2\\x45\\xfe\\x5a\\x40\\x48\\x3a\\x8c\\x1b\\xee\\xef\\x50\\x57\\x2a\\xd5\\x2c\\xdd\\x23\\xeb\\xf1\\xdc\\x37\\xb5\\x4e\\x5e\\x02\\xa7\\x28\\x29\\xa4\\x6d\\xe4\\xef\\x71\\xc5\\xbc\\xa2\\x8d\\x10\\x4b\\x20\\x37\\xc2\\x92\\x87\\x91\\x3d\\x22\\x5f\\xb4\\xc9\\xbe\\x8b\\x27\\xcc\\xd4\\xe8\\xec\\x80\\x61\\x91\\x9f\\x12\\x78\\xef\\xff\\x40\\x7d\\x24\\x4b\\xe6\\x4c\\x7e\\x8c\\xfa\\x45\\xa6\\x7c\\x79\\x00\\x4f\\x59\\x1a\\x79\\xc5\\x1a\\x38\\x50\\xb2\\xde\\x05\\x1a\\x8b\\x81\\xc4\\xc7\\xcc\\xee\\xc2\\x48\\x72\\x69\\xe8\\x62\\x5d\\xb8\\xbe\\xc6\\x1e\\xb8\\x18\\x28\\x7a\\xea\\xea\\x83\\x8b\\xe0\\x26\\x78\\x10\\x9e\\x85\\x37\\x48\\x80\\x0c\\x93\\x0b\\xc8\\x01\\xc1\\xbb\\xf8\\x19\\x99\\xa7\\x9d\\x74\\x90\\xae\\xa6\\x1b\\xe9\\x05\\x74\\x37\\xbb\\x17\\x39\\x15\\x7e\\x41\\x33\\xa4\\x04\\xaf\\xc0\\xe4\\xff\\xf8\\x5a\\x39\\xf6\\xe4\\x1f\\x70\\x4d\\xbd\\x42\\x22\\xe8\\x5d\\x5c\\x07\\x8f\\x0c\\x81\\x1f\\x4f\\x61\\x40\\xe0\\xca\\x7e\\x1b\\x97\\x48\\x68\\xbe\\xc1\\x27\\xb0\\x4c\\xd6\\x2a\\xd3\\xc0\\x2b\\x1b\\xbb\\xfe\\x18\\xf8\\x71\\x07\\x71\\x39\\x96\\xd7\\x46\\x11\\x59\\x5c\\x21\\x32\\xdc\\xd2\\x56\\x18\\x6b\\x0d\\xdb\\x29\\x6c\\xd6\\x8d\\xdc\\xd7\\xa5\\xdb\\x8a\\xc3\\x43\\xd0\\x61\\x6b\\xc9\\x94\\x4a\\x36\\x64\\x0b\\x45\\xf4\\xd0\\xd2\\x68\\x85\\xef\\x7c\\xae\\xdb\\x63\\x50\\xe1\\x2b\\x04\\xdc\\xb1\\xb7\\x60\\xf1\\xfe\\x59\\x37\\xc2\\xb2\\xc5\\xdb\\xbf\\x1d\\x77\\x67\\xa3\\xe5\\x80\\xa0\\xe6\\x53\\x90\\x66\\x19\\xd4\\x65\\x0c\\x22\\x06\\xd4\\xbc\\xc3\\x47\\x30\\xa7\\xd1\\x5e\\x43\\xd3\\x70\\xb0\\x25\\xa7\\xa1\\x6f\\x52\\xc2\\x08\\xf4\\x8d\\x1c\\x5e\\x57\\x27\\xcb\\x82\\x03\\xe2\\x42\\xb6\\xf1\\x97\\xf8\\xcc\\xd7\\xfa\\x65\\xc1\\x25\\x30\\xf0\\xd8\\x34\\x48\\xbc\\x27\\xe4\\x27\\x18\\x55\\x84\\xf7\\x68\\x03\\xf2\\xc8\\x9e\\x80\\x57\\x88\\x44\\x72\\x64\\x03\\xd9\\x4b\\xea\\xe4\\x3e\\xf2\\x30\\xb9\\x1c\\xf7\\x47\\xae\\xc1\\xed\\x6b\\x92\\xff\\xda\\x35\\x50\\xf6\\x22\\xf7\\x7a\\xe9\\x92\\x26\\xa5\\x72\\xd9\\xef\\x29\\x27\\xf0\\x5c\\x72\\x25\\xde\\xb2\\xcd\\xe5\\x3a\\x5a\\xb5\\x42\\xc8\\x15\\xb8\\x87\\x96\\xae\\x2d\\x03\\x5d\\xe4\\xaa\\x45\\xca\\x70\\x49\\xb1\\x66\\xe9\\x74\\xbc\\x0f\\xf7\\x60\\x6b\\x19\\x9b\\x0c\\x99\\x4c\\x20\\x3e\\xd1\\x5c\\xc2\\xa6\\x1d\\x4d\\xf6\\x21\\x6d\\xd1\\x9c\\x9f\\x45\\xa9\\xb3\\xd1\\xcf\\xab\\x71\\x3f\\x34\\xe7\\xaa\\x9c\\xf2\\x20\\x35\\x84\\x7e\\xcd\\x79\\xc6\\x7e\\xed\\x20\\x97\\x22\\xae\\x61\\xcb\\x61\\xcf\\x20\\xac\\x4a\\x8b\\xf3\\x1c\\x87\\xf3\\xe0\\x18\\xbc\\x08\\xbf\\x23\\xdd\\x64\\x13\\xb9\\x86\\xdc\\x45\\x1e\\x23\\x2f\\x91\\x79\\xaa\\xd1\\xd3\\xe9\\x5e\\x7a\\x0b\\x7d\\x90\\x3e\\x4d\\x5f\\x65\\xc0\\x92\\x6c\\x35\\xdb\\xc5\\x0e\\xb2\\xbb\\xd8\\x23\\xec\\x59\\xf6\\x9a\\x44\\xa5\\xa4\\xb4\\x52\\x1a\\x97\\xf6\\x4b\\x47\\xa4\\x07\\xa4\\x27\\xa5\\x1f\\x4b\\x6f\\x3a\\xdc\\x8e\\x6e\\xc7\\x6a\\xc7\\x05\\x8e\\x7d\\x8e\\x8f\\x38\\x3e\\xeb\\x78\\xd4\\xf1\\xbc\\xe3\\x67\\x8e\\xdf\\xca\\x3e\\x39\\x27\\xaf\\x96\\xb7\\xcb\\x57\\xc9\\x87\\xe5\\x3b\\xe5\\x07\\xe4\\xc7\\xe5\\xe7\\xe5\\x57\\xe4\\xb7\\x14\\xa7\\x92\\x50\\x06\\x94\\x8a\\xb2\\x55\\xd9\\xa3\\xec\\x57\\xea\\xca\\x9d\\xca\\x31\\xe5\\x11\\xe5\\x09\\xe5\\x59\\x65\\x56\\x79\\x55\\x79\\x43\\x79\\xc7\\x49\\x9d\\x6e\\x67\\x98\\x96\\x51\\xe7\\xc4\\x27\\xa8\\x76\\x3e\\xa3\\x9c\\x2f\\x15\\x16\\x7c\\xd1\\x80\\x80\\xe1\\xc8\\xcf\\xa2\\x63\\xb8\\xfb\\xcd\\xf2\\x51\\xc4\\x30\\xb9\\x6e\\x67\\x4e\\x70\\xdf\\x52\\x26\\xc4\\xa0\\xab\\x04\\xaf\\x80\\x97\\xe5\\xb6\\x08\\xbe\\x26\\xad\\x25\\xce\\x23\\x7b\\x13\\xa9\\x43\\x5f\\x93\\x56\\xc5\\x02\\x4d\\x47\\xba\\x11\\x77\\x9e\\x59\\x1b\\xe7\\xc2\\x35\\xee\\x2e\\xde\\xe2\\xca\\xa6\\x32\\x21\\x84\\x9a\\x2d\\x3c\\x40\\xf8\\x57\\xab\\x4c\\xa3\\xb5\\x16\\x4d\\x48\\x76\\x3f\\xa6\\xf0\\xdb\\x91\\xd3\\xc2\\x1d\\x0b\\xe0\\xc2\\x35\\xe0\\x17\\x7a\\x18\\x5c\\xba\\xe0\\xb3\\xe9\\xa3\\x08\\x7d\\x1a\\x7a\\x2e\\xce\\x68\\x73\\x5b\\x4d\\xba\\x1d\\xb4\\x68\\x95\\x88\\x5a\\xda\\x7d\\x29\\xbb\\x26\\x05\\x3d\\xbb\\xa9\\x84\\x45\\xbb\\x34\\xac\\x05\\xe8\\xa6\\xa6\\x12\\x29\\x81\\xed\\x78\\x71\\xdf\\x73\\xad\\xde\\xb3\\xb1\\x47\\x0b\\xeb\\x30\\x6b\\x18\\x41\\x9c\\xa1\\xb1\\x0b\\xbc\\xe2\\x3e\\xe6\\xf2\\xb2\\x62\\x53\\x6e\\xc3\\xbe\\x01\\x71\\x03\\xba\\xa5\\x29\\x57\\xe8\\xbb\\x98\\x16\\x0c\\x74\\x75\\x53\\xae\\x8a\\xab\\xd6\\x65\\xd2\\xc2\\x64\\x3f\\xea\\x90\\x74\\x2d\\x21\\xc3\\x5a\\xdf\\xf4\\x6d\\x97\\x80\\xae\\x28\\xc5\\x81\\x1c\\x3d\\x0d\\x57\\xc4\\xcc\\x0d\\x5a\\xd2\\x68\\x83\\xda\\x3f\\xa3\\x29\\xaf\\x4b\\x68\\x35\\xf1\\x1e\\x25\\xc5\\xcd\\xd5\\x69\\xd3\\xa6\\x31\\x25\\xc0\\x6b\\x9b\\xbe\\x8b\\x22\\x8d\\x92\\xc2\\xaf\\x73\\xb0\\x06\\xbf\\x6b\\xbc\\x7b\\xd0\\xb3\\x8f\\x86\\x3b\\x6f\\xf5\\x82\\x3c\\x53\\xa3\\x4a\\xa3\\xdf\\xb6\\xea\\x6c\\xec\\x01\\x9f\\x98\\xbb\\x15\\x4d\\xed\\x79\\xed\\x76\\x0f\\x8c\\xeb\\x77\\x76\\x20\\x0e\\xd2\\xaa\\xd5\\xf5\\x49\\xa4\\xb3\\x9b\\xeb\\xe4\\xf7\\x78\\x9f\\xc8\\x59\\xa0\\x73\\x4b\\x37\\x59\\xdf\\x44\\x4d\\x69\\xbb\\x98\\x91\\x41\\xa4\\xb3\\x73\\x42\\x5f\\xc9\\x46\\xe9\\xc3\\x2c\\x7e\\xd3\\x6d\\xed\\x19\\x93\\xf2\\xc9\\xd1\\x75\\x4d\\xb5\\x71\\xdc\\x34\\x8c\\x58\\xc2\\x99\\x82\\x9e\\x37\\x75\\x17\\x34\\x51\\x2a\\x00\\x77\\x22\\x45\\xd1\\xda\\xeb\\x38\\xdd\\x60\\xa5\\x47\\x05\\x25\\x99\\x87\\x3c\\x78\\xe9\\x68\\x53\\xba\\x5f\\xec\\xda\\x4e\\x58\\x85\\xd4\\xb3\\x7d\\xb6\\x91\\x82\\x20\\x3f\\x15\\xb8\\x68\\x67\\x33\\xc6\\x4c\\xd7\\x34\\xd5\\xa3\\x9a\\xd8\\x1e\\x3d\\xbd\\x29\\x9d\\xc3\\x91\\x00\\xa4\\xe8\\x99\\x2d\\xfd\\x11\\x9a\\x42\\xec\\x21\\xc1\\x45\\x08\\x08\\x5c\\x55\\x40\\x08\\xf6\\x27\\x48\\x47\\xc7\\x2d\\x48\\x89\\x5a\\xa2\\xb4\\x82\\x34\\x77\\x63\\x86\\xb8\\xc4\\xbf\\xd4\\x94\\xea\\x43\\xb9\\x59\\x80\\x5c\\x8b\\x32\\xbf\\xae\\x66\\x49\\x25\\x3d\\xa7\\xa9\\x6c\\x1a\\xe5\\x39\\x61\\x7a\\x56\\x53\\xaa\\xe0\\x6a\\xd2\\xcd\\x48\\x65\\x37\\x4e\\x61\\x00\\x02\\x74\\xb8\\x29\\x0d\\xf5\\xd3\\xe8\\x50\\x53\\x9a\\xb1\\x12\\x31\\xfa\\x61\\x21\\x33\\xb4\\x73\\x01\\xfe\\x05\\xcb\\xe1\\x0e\\xc6\\xb6\\xbb\\x21\\xc1\\x74\\xf1\\x6d\\x67\\x83\\x23\\x42\\x7e\\xde\\x54\\x8e\\xcb\\xfa\\xfe\\x27\\xd6\\xd7\\xa4\\xf1\\x05\\x77\\x20\\xe6\\x9f\\x15\\x32\\x51\\xc4\\xab\\xc9\\x2b\\x78\\x7b\\xf2\\xf5\\xc2\\x15\\x64\\x79\\xa4\\xb0\\xe3\\x10\\x42\\xea\\xc3\\xc0\\x86\\xfa\\x11\\xb7\\xcf\\x09\\x5d\\x99\\x1c\\xf9\\x67\\x7c\\x37\\xdb\\x73\\x91\\xd7\\x9a\\xde\\x9d\\xe8\\xe5\\xa7\\xf1\\xae\\xd0\\x29\\xbc\\x8f\\x79\\xbb\\x69\\xc8\\x92\\x7f\\x6c\\xca\\x97\\xe9\\x72\\xd4\\xf9\\x10\\x7b\\x9f\\xf5\\xe2\\x1b\\xe7\\x74\\xa8\\x84\\xeb\\x91\\x88\\x55\\x21\\x27\\x90\\x4e\\xc8\\xa0\\xfe\\xda\\xcf\\xf0\\x19\\x6b\\x61\\x3d\\x48\\x17\\xe2\\x39\\x25\\xaf\\x22\\xcd\\x60\\x60\\x7e\\xd3\\x18\\xe5\\xda\\xd8\\xad\\x23\\x42\\x1b\\xb5\\x8b\\x2d\\xc3\\x34\\x0d\\xd2\\xac\\x60\\x4a\\x43\\x21\\x0f\\x5b\\xe1\\x20\\xdc\\x07\\x4f\\xc2\\x2b\\x84\\x92\\x6e\\xb2\\x9e\\xec\\x25\\x37\\x91\\x63\\xe4\\x09\\x32\\x4b\\x7e\\x49\\xdb\\x68\\x86\\xae\\xa4\\x5b\\xe9\\x15\\xf4\\x30\\xbd\\x8b\\x3e\\x44\\x9f\\xa0\\x2f\\xd2\\x9f\\xd1\\x77\\x58\\x1b\\x4b\\xb0\\x3e\\xb6\\x9a\\x6d\\x62\\xe3\\xec\\x52\\xb6\\x8f\\x1d\\x64\\x75\\x76\\x84\\xdd\\xc5\\xee\\x63\\x03\\xe2\\xdc\\x75\\xe2\\x28\\x4c\\xad\\x48\\x4b\\xff\\x4c\\xe0\\x9b\\x73\\x42\\x27\\x29\\xd1\\x74\\x6b\\x35\\x59\\x26\\xc1\\xa7\\x11\\x2b\\xe3\\x3a\\x51\\x26\\xe7\\xac\\x15\\x0e\\xad\\x36\\x20\\xf1\\x02\\x48\\x69\\x83\\x7e\\xf0\\x6f\\x42\\x7f\\x3d\\x8d\\x70\\x43\\x58\\xb7\\x34\\xe9\\xda\\xaf\\x59\\xa2\\x0e\\x0b\\xba\\x92\\x8d\\x58\\x5f\\x1c\\x71\\x39\\x03\\x36\\xb4\\xc2\\x8f\\xbf\\x10\\x77\\x74\\x5a\\xd8\\x47\\xc5\\x5b\\xb4\\xbf\\x5f\\xc7\\x7b\\x84\\xc3\\x27\\x8f\\x25\\xe1\\x31\\xeb\\x58\\x65\\x93\\x0a\\x2c\\x80\\x29\\xf0\\x03\\x6c\\xc3\\xdc\\x3f\\x09\\x71\\x77\\x70\\x5d\\xdb\\x3f\\x45\\xb8\\x19\\x5e\\x08\\x9f\\xc9\\x28\\x42\\x47\\xbf\\x68\\xcf\\xae\\x9b\\xa4\\x61\\x8e\\xd9\\x17\\x9b\\x9c\\x85\\x6e\\x85\\x76\\xd1\\x8f\\x66\\x18\\xf9\\x1e\\x94\\x86\\x6a\\x82\\xa7\\x62\\x71\\xc3\\xe9\\xfb\\x04\\x4f\\x2f\\x60\\xb7\\xc2\\x20\\x65\\xd4\\x3f\\x48\\x09\\xaa\\x31\\x8d\\x32\\xed\\x00\\xf9\\x5f\\xc8\\x57\\x34\\xeb\\x30\\xe5\\x9e\\x4f\\x21\\xd4\\x69\\xd9\\x2b\\xec\\x4f\\xb1\\x5e\\x8e\\x9f\\x18\\x2b\\xc3\\xf5\\x09\\x0f\\x09\\x2e\\x5e\\xa0\\x61\\x6d\\x41\\x4e\\xc3\\x34\\xbf\\xd0\\x48\\x40\\xa9\\x25\\x59\\x87\\x69\\xdc\\xa6\\xcc\\x84\\xa9\\x77\\x81\\xab\\x75\\x27\\xd1\\xef\\x08\\xdd\\x70\\x93\\x6a\\xf0\\xc3\\x28\\x72\\xce\\x7c\\x36\\x6e\\xee\\x69\\x78\\x76\\x7d\\x56\\x3d\\x9f\\x12\\x9c\\x1c\\xa1\\x13\\x41\\xde\\x8b\\xba\\x06\\x31\\xc1\\x15\\xb8\\x4e\\x9c\\x4f\\xa3\\x95\\x95\\xf8\\x8c\\xb3\\x4c\\x9f\\x12\\xe7\\xcf\\x0f\\xdf\\x46\\x1e\\x59\\x18\\xa2\\xf4\\x13\\x98\\x66\\xe0\\xb3\\x07\\xc5\\x89\\xcd\\xd0\\xf3\\x80\\x19\\xa7\\x9d\\xde\\x0e\\x0c\\x62\\xa0\\x41\\x19\\x39\\x38\\x3e\\x88\\xc1\\x08\\xec\\x81\\x23\\xf0\\x15\\xf8\\x11\\xbc\\x4d\\xc2\\x64\\x98\\x6c\\x27\\xd7\\x90\\x23\\xe4\\x41\\xf2\\x14\\xf9\\x09\\xf9\\x2d\\x0d\\xd1\\x01\\xba\\x91\\xee\\xa1\\x07\\xe9\\x11\\xfa\\x59\\xfa\\x30\\xfd\\x26\\xfd\\x3e\\xfd\\x21\\xfd\\x3e\\x4a\\xef\\xb8\\x84\\x2e\\xdc\\xb4\\x9e\\x9a\\x80\\xb2\\xbc\\xa7\\x7e\\xfa\\xbd\\x53\\x96\\xb4\\xdb\\xb1\\x7e\\x17\\xf1\\xe4\\xa5\\x4a\\x8a\\x59\\xa3\\xcf\\xe0\\xd9\\x5e\\xaa\\x14\\xd7\\xee\\xfa\\x1e\\xee\\xca\\xa5\\xcb\\xc4\\xc9\\x2f\\x85\\x8c\\x28\\x8c\\x58\\xb4\\x29\\x23\\x0a\\x98\\x1a\\x3b\\xf4\\x0e\\xa4\\xa6\\xd2\\x26\\x47\\xcf\\xda\\xb7\\x1c\\xab\\x5a\\x8b\\x27\\xce\\xe4\\x11\\xa4\\x85\\x4c\\x53\\xe3\\xd2\\x52\\xfa\\xe7\\xd8\\xc6\\xa2\\x7a\\x17\\xf4\\x69\\xa1\\xf5\\xb3\\x48\\xcf\\xe8\\x57\\x85\\xe6\\x4b\\xa3\\x4d\\x8b\\x6b\\x42\\xfe\\x55\\x68\\x58\\xd8\\xfb\\x1b\\x17\\x32\\xe4\\x5f\\x63\\x9d\\xdd\\x36\\x0b\\xe2\\x2e\\x71\\x2b\\xa5\\xc8\\x2f\\xc4\\x2d\\xd8\\xd0\\xaf\\x08\\xe0\\xdd\\x66\\xe0\\x2b\\x63\\x48\\xf7\\x75\\x0b\\x6c\\x22\\x6a\\xca\\x85\\x41\\x83\\x5f\\x61\\x8e\\xbd\\x27\\xdd\\xa2\\xc7\\x6f\\x2d\\xc8\\x41\\x2d\\x44\\x88\\xc2\\x3b\\x88\\x55\\x74\\x8b\\xb2\\x7e\\x3c\\x07\\x69\\xd0\\xe8\\x36\\x3c\\x85\\x8d\\x9e\\xf3\\xd1\\xfe\\x2d\\x9e\\x99\\x1e\\x9c\\x43\\xae\\xe9\\xd4\\xc9\\x96\\xe3\\x99\\x49\\x0b\\x7e\\x90\\x1f\\xfc\\xf4\\x62\\x8b\\xd3\\xc5\\x75\\x47\\xef\\x46\\x6e\\x32\\x97\\x63\\xc4\\xc8\\x1b\\x78\\x7f\\x99\\x63\\x7b\\x3f\\xee\\x79\\xe3\\xeb\\xb7\\xd1\\x6b\\xb3\\x0f\\x73\\x07\\x60\\x0b\\xec\\x85\\xc3\\x70\\x27\\x1b\\xc4\\x58\\xfd\\xa6\\x7d\\x4c\\x5c\\x48\\xd1\\x10\\x13\\xc7\\x13\\xfb\\xb0\\xb8\\xd3\\x03\\x42\\xd2\\xdb\\x24\\x9b\\x63\\x2b\\x30\\x5e\\x80\\xfd\\x6b\\xe4\\xfe\\xb3\\xcf\\x60\\xe4\\x82\\xa0\\x0d\\x2e\\x23\\x65\\xc0\\x86\\x90\\xdb\\xcb\\xcb\\x77\\xe3\\xdd\\xa0\\xb2\\xe3\\xc8\\x89\\xf5\\x9a\\xd8\\x31\\xec\\x80\\xaf\\xc0\\xab\\x24\\x40\\x4e\\x27\\xd7\\x91\\xcf\\x93\\x17\\xc9\\xef\\x68\\x8e\\x9e\\x4b\\x0f\\xd2\\xfb\\xe9\\x33\\xf4\\x75\\x16\\x60\\xa3\\x6c\\x37\\xfb\\x08\\x7b\\x88\\x3d\\xcf\\x7e\\x29\\x85\\x50\\x03\\xe2\\xb0\\x74\\xbf\\x34\\x2d\\xbd\\xe2\\x00\\x87\\xe6\\xa8\\x38\\x76\\x3b\\x0e\\x3b\\xee\\x73\\x3c\\xee\\x98\\x75\\xbc\\x25\\x07\\xe4\\x41\\xf9\\x5c\\x79\\x9f\\x7c\\xab\\xfc\\x80\\x3c\\x2d\\xbf\\x2c\\xbf\\xa3\\x84\\x94\\x41\\x65\\x8b\\x72\\x85\\x52\\x57\\xee\\x53\\x1e\\x55\\x5e\\x50\\x7e\\xee\\xa4\\xce\\x98\\x73\\xc8\\xb9\\xd1\\xb9\\xdb\\x79\\xc0\\x79\\x44\\xe8\\x3e\\xbc\\xe4\\x7c\\xdd\\x39\\xef\\xf2\\xb9\\x32\\xae\\x61\\xd7\\x7a\\xd7\\x05\\xae\\xbd\\xae\\x03\\xae\\x9b\\x5c\\x77\\xba\\xee\\x77\\x1d\\x77\\x3d\\xe6\\x7a\\xca\\xf5\\x82\\xeb\\x25\\xd7\\x6b\\xae\\x37\\x5d\\xbf\\x6b\\x93\\x69\\x27\\x74\\xda\\x74\\x8f\\x84\\x2c\\x49\\x60\\x63\\x51\\x8b\\x77\\xc7\\x4f\\x34\\x72\\x57\\x69\\x14\\x2d\\x38\\x7e\\xdf\\x17\\x96\\x2e\\x1a\\x8d\\xfd\\xa7\\xca\\x5b\\x3a\\x70\\xf4\\x93\\xa2\\x7c\\xc3\\x12\\x64\\xa1\\x45\\x61\\x97\\xc0\\xc1\\x02\\x90\\x62\\xa3\\xa8\\x9f\\xc2\\x6d\\x3f\\xfd\\x4d\\x7a\\x6c\\x61\\xc1\\x1d\\x6b\\xb2\\x7e\\x60\\x9f\\x83\\x30\\x96\\x68\\x9c\\x1f\\x53\\x82\\xd7\\x9c\\x8a\\xd8\\x1b\\x1b\\x11\\xba\\x7c\\xb1\\x05\\x5c\\x3f\\x8f\\x45\\x23\\xc4\\x91\\xaa\\x4e\\xc1\\xe9\\x78\\x1a\\x38\\x8c\\x3c\\xa5\\xf5\\x3c\\x9c\\x29\\x6c\\xdb\\x73\\xbf\\xa7\\xdc\\x3a\\x94\\x05\\x2f\\x5e\\xa3\\x90\\xae\\xa3\\xcc\\xe1\\xd7\\x58\\x8e\\x6b\\xa3\\xa0\\x54\\xd3\\x3a\\xb1\\x01\\xbb\\x7f\\x03\\xf2\\xab\\x45\\xca\\x2d\\x62\\x0d\\xc9\\xd6\\x22\\x44\\xe9\\xb6\\x24\\xbd\\x01\\xa4\\xf1\\xb9\\x34\\x52\\xb3\\xa4\\x64\\xeb\\x71\\x05\\x17\\x1b\\x85\\xad\\x6f\\xf4\\x1b\\x48\\x75\\x34\\x61\\x37\\x0b\\xc6\\xe9\\x87\\x6b\\xad\\xba\\x1a\\xda\\x25\\x5e\\xcb\\x72\\x59\\x40\\x4c\\xb6\\x06\\xeb\\xfa\\x3d\\x6b\\xc7\\xca\\x42\\x06\\xca\\x77\\x84\\xa9\\x97\\xd8\\x34\\x0a\\xba\\x5b\\x94\\xd1\\x04\\x4e\\xd6\\x25\\x6a\\xb2\\x8d\\x83\\xbc\\x8d\\x5f\\x37\\xcf\\x56\\xab\\xd5\\xe6\\x51\\xa1\\xff\\x90\\xb6\\x38\\x31\\x0d\\xb8\\x6a\\xf2\\xee\\xdf\\x5a\\xa4\\x9e\\x20\\x8e\\x52\\x15\\x1c\\xbc\\x00\\xac\\xc7\\x36\\x4f\\x31\\x97\\x6c\\x54\\xf0\\xa1\\x96\\xdc\\xe7\\x6c\\xc4\\x56\\x62\\xd1\\xbd\\x4a\\xde\\xc2\\xbf\\x8b\\xf7\\x04\\xfb\\xc1\\x4a\\x42\\xc2\\x19\\x6b\\xe6\\x32\\x98\\x32\\x12\\xf8\\x02\\x46\\xda\\xe4\\xa7\\x53\\x70\\x88\\x71\\x0c\\x29\\x7e\\xcf\\xd0\\x3b\\x6d\\xf9\\xad\\xda\\xcc\\xc6\\x3a\\x3f\\xb8\\xe8\\xf7\\x9a\\xe0\\x79\\x76\\xd1\\x2f\\xe1\\x1d\\x6d\\xae\\x0b\\xa7\\xf8\\x2c\\x88\\x0d\\x5f\\x44\\xdb\\x9f\\xd6\\xaf\\x85\\xcc\\x84\\x3e\\x8f\\xdf\\x9a\\x37\\x61\\x2b\\x2f\\xe1\\x6f\\x9a\\x6a\\x6e\\xd5\\x2f\\x59\\x2d\\x72\\x63\\x16\\xf5\\x1f\\x6f\\xac\\x24\\x5b\\x65\\xcb\\xed\\xb2\\x8d\\xcf\\xc0\\xb9\\x42\\xf0\\xc0\\xa2\\xbd\\x32\\x71\\x8b\\x3f\\x11\\x5a\\x12\\x9a\\xcd\\x87\\x47\\xc2\\xd2\\x6a\\xfd\\x1d\\x62\\x77\\xcd\\x70\\x87\\x63\\x5b\\x7e\\x08\\xb2\\x87\\xc5\\xb7\\x21\\x9c\\x8b\\xb8\\xb8\\x59\\xb9\\x1e\\x6b\\x9c\\x7e\\x5d\\x8c\\xdd\\xe2\\x70\\x34\\xac\\x85\\xd9\\x69\\x62\\x55\\x62\\xb8\\x3f\\x4c\\x7d\\x31\\x2e\\x19\\x3b\\x2a\\xe0\\x73\\xce\\x5a\\x21\\x4b\\xca\\x49\\xae\\x17\\x10\\x21\\x6e\\x41\\x0e\\xcb\\x06\\x9e\\x1c\\xb4\\xe5\\x35\\xc6\\xc9\\xf1\\xdc\\xab\\xad\\x3a\\x1b\\xe7\\x57\\xd0\\xf9\\xe4\\xdf\\x2d\\x0e\\x46\\xa2\\x95\\x66\\xa1\\x9f\\x6a\\x6a\\x8f\\x9f\\xc1\\xb4\\xd0\\x37\\xbf\\x1b\\xad\\x7e\\x12\\xd6\\x1d\\xdc\\xc0\\x3f\\x3f\\xdd\\x94\\x63\\xb3\\x83\\xa1\\x77\\x35\\xe5\\xd8\\xf0\\x3b\\x72\\xa0\\x29\\x27\\x6c\\xb3\\xa6\\xfa\\xad\\xc8\\xe1\\xfd\\xb3\\xef\\xfa\\x0d\\xa8\\x69\\xb2\\x08\\x54\\xa2\\xe9\\xa6\\x6f\\x6c\\x34\\x11\\xf9\\x0d\\x5a\\x06\\x25\\x6c\\xab\\x8c\\xb6\\xff\\xe4\\xa3\\x02\\x97\\x6a\\xd8\\x3a\\x73\\x99\\xca\\x19\\x42\\xfb\\x21\\x67\\x97\\x32\\xb0\\x95\\x82\\x26\\x8a\\xd9\\x6c\\xd9\\xbd\\xf4\\x05\\x91\\x6a\\xee\\x61\\xde\\x97\\x73\\x5b\\x52\\x11\\x96\\xd1\\x67\\x05\\xa5\\x94\\x16\\x94\\x29\\xd7\\x84\\x7f\\x1c\\x79\\x1a\\xcd\\xb4\\xe6\\x0d\\x68\\x7b\\xd3\\xb4\\xae\\x74\\x3b\\x52\\x36\\xf1\\x86\\x5f\\x10\\xf2\\x1f\\x88\\xc9\\xd9\\x2c\\xc6\\xe8\\x8b\\xc2\\x32\\xb6\\xc1\\x45\\xf9\\x37\\xc1\\x0b\\xb1\\xe0\\x0b\\xfb\\x73\\x91\\xe2\\x11\\x37\\x78\\x94\\x15\\x31\\x25\\x24\\x20\\x98\\x81\\x6f\\x0d\\xa3\\x74\\x3b\\x67\\xf9\\xa1\\x58\\x09\\x0a\\xca\\x44\\xf9\\x9c\\xab\\xe4\\x4d\\xcc\\x8f\\x0a\\xf8\\x1d\\x60\\x63\\xc8\\x0f\\x89\\x8a\\x2f\\x52\\xf4\\x87\\x20\\x5b\\xe5\\x7d\\xf4\\x39\\xa4\\xb0\\x04\\x14\\xa0\\x7f\\x8d\\x6f\\x62\\x6e\\x58\\x05\\xe5\\xde\\x1c\\xbf\\xaf\\x20\\x0f\\x04\\x77\\x14\\x79\\x07\\x6d\\x62\\xb8\\x2f\\x98\\x47\\x90\\x0e\\xc3\\x75\\xa2\\xe7\\x0b\\x0d\\x06\\x03\\xae\\x4e\\x8a\\x32\\x06\\x2c\\xf9\\x2b\\xfc\\xd6\\x18\\x83\\x46\\x7f\\x80\\x38\\xaa\\x01\\xa1\\xbf\\x27\\xa8\\xb6\\x28\\x9b\\x42\\x0a\\x2d\\x0d\\x1a\\x7a\\x89\\x58\\x0d\\x7b\\xe1\\x23\\xf0\\x00\\x4c\\xc3\\x8f\\xe1\\x1e\\xd4\\xae\\x0f\\x5b\\x96\\x6c\\x4d\\x72\\x44\\xc1\\xe3\\x34\\x75\\xee\\xef\\x45\\x09\\xf8\\xd2\\x65\\x4d\\xfe\\xc8\\x7e\\xdc\\x61\\x68\\x4f\\xd6\\xa4\\x33\\x28\\x68\\x09\\x76\\xba\\xc8\\xd7\\x6c\\x3c\\x08\\x2e\\x8f\\xc4\\x51\\xb2\\x75\\x28\\xd3\\x0a\\x58\\x7c\\x10\\xd3\\x3e\\xd9\\x48\\xd9\\x88\\x94\\xbc\\x59\\x77\\x83\\x7b\\x7c\\x16\\xda\\x31\\xf3\\xf4\\x3e\\xd8\\x05\\xb7\\xc2\\xa3\\xf0\\x0a\\x69\\x23\\xc3\\x64\\x27\\x39\\x4c\\xee\\x27\\x4f\\x92\\x9f\\x90\\xdf\\xd1\\x18\\x1d\\xa5\\x17\\xd0\\xfd\\xf4\\x08\\x7d\\x80\\x3e\\x49\\x67\\xe9\\x1b\\x4c\\x66\\x09\\x36\\xc4\\x36\\xb0\\x5d\\xec\\x1a\\x76\\x13\\xbb\\x9b\\x3d\\xc8\\x1e\\x63\\xcf\\xb0\\x59\\xf6\\x1a\\x7b\\x4b\\xa2\\x92\\x4f\\x4a\\x4a\\x7d\\xd2\\x4a\\x69\\xa3\\x74\\x81\\xb4\\x47\\x9a\\xa0\\xff\\x80\\xb3\\xc1\\x79\\x2e\\xbc\\x67\\xdc\\xe7\\x40\\x5c\\x68\\x11\\x36\\x24\\xd0\\xc6\\x09\\x79\\x06\\xdf\\x62\\x16\\xef\\xe3\\x14\\x98\\x15\\x39\\x29\\xd6\\xdb\\xa4\\xbb\\xdc\\xc0\\xc4\\xbd\\x1a\\x12\\x3a\\x4c\\x9a\\xf0\\x56\\xd3\\xcd\\x1e\\xc3\\x95\\x6e\\xd4\\xbb\\xb4\\xc7\\xa3\\x9f\\x20\\x06\\xb8\\x78\\x7f\\x9b\\xfb\\xfa\\x5e\\x41\\x95\\x24\\x2c\\xb9\\x77\\x4a\\xf8\\xbc\\xb2\\x6c\\x03\\xd9\\x97\\x84\\x76\\x6f\\xa2\\x55\\xf2\\x67\\xf1\\x77\\x52\\xf4\\x1f\\xb0\\xed\\xc5\\x5b\\xe4\\x74\\x73\\x55\\x58\\xdd\\x34\\x49\\x57\\x04\\x54\\x89\\x43\\x86\\xfe\\x44\\xf0\\x32\\x16\\xaf\\x21\\xce\\x1e\\x11\\xba\\x19\\x71\\x71\\x83\\x7b\\x44\\x8f\\xb8\\xa7\\x86\\x79\\xbc\\x19\\x1b\\xe3\\x48\\x59\\xf6\\x09\\x06\\x36\\x71\\x26\\xe6\\x36\\xa4\\xd7\\x5d\\x38\\x4a\\x8e\\x27\\xc5\\xe0\\xbb\\x96\\xa4\\x7c\\xe1\\x7a\\x6d\\xc2\\x3c\\x9f\\xcd\\x12\\xc1\\x27\\xf8\\x3b\\x1a\\xfb\\x3e\\xf2\\xa3\\x12\\xe2\\xae\\xb6\\x49\\xef\\xd8\\xd7\\x91\\x92\\x6d\\x48\\xe9\\x2c\\xde\\x30\\x25\\xf8\\x4d\\xda\\x66\\xbb\\x62\\xca\\xca\\x3e\\x63\\xe9\\xd9\\xf1\\x19\\x8e\\xa2\\x4e\\x73\\x80\\x5e\\x20\\x7c\\x16\\x98\\xa3\\x12\\xd0\\x8a\\x02\\xc2\\xf1\\x46\\x4d\\x42\\x06\\x4d\\xf7\\x20\\x14\\x6e\\x9d\\xe7\\x2d\\x98\\xda\\x65\\xf9\\xb4\\xe2\\x50\\xf6\\xfb\\x48\\x29\\x77\\x21\\x0c\\x33\\xad\\x75\\xf7\\x5a\\x69\\xfc\\xf4\\xca\\xc0\\xe0\\xb2\\x96\\x34\\x09\\x18\\x7d\\x14\\x5c\\x68\\x25\\xa0\\x0a\\x7e\\x65\\x06\\xba\\xe0\\x72\\xe4\\x4a\\x37\\xca\\x39\\xe1\\x4b\\xe0\\xb4\\xb4\\x68\\x50\\xb3\\x8c\\x7d\\x12\\xe9\\x6e\\x4b\\x63\\x96\\x6d\\xb0\\x74\\x8c\\xb8\\x05\\xc3\\x19\\xf8\\xce\\xad\\x85\\xbb\\x20\\x4d\\xdf\\x8f\\xef\\x41\\x81\\xbb\\xa8\\xec\\xcb\\x48\\xa7\\x77\\x8b\\xb9\\xda\\x8c\\x70\\xd5\\x1c\\xd7\\x5f\\x89\\x37\\xbe\\xce\\x4f\\x5b\\x3c\\xae\\x2c\\x04\\xc8\\xfb\\xf0\\x3b\\x61\\x19\\xc9\\xd6\\x63\\x9e\\x1f\\xfb\\x14\\x83\\x73\\xc4\\x77\\xbc\\xdf\\xdf\\x03\\x87\\x35\\x2b\\x67\\x23\\x84\\xc5\\x5d\\xc9\\xce\\x12\\x70\\x35\\x06\\xdf\\x41\\xb8\\x6a\\x60\\xdc\\x37\\xc0\\xeb\\x64\\x3d\\x39\\x4c\\x1e\\x21\\xaf\\xd0\\x00\\x5d\\x4f\\x0f\\xd2\\x07\\xe9\\x2c\\x93\\xd8\\x10\\xdb\\xc3\\xee\\x60\\x4f\\xb0\\x13\\x52\\x58\\x3a\\x5d\\xba\\x46\\xba\\x4f\\x7a\\x46\\x7a\\xd3\\x91\\x70\\x6c\\x70\\xec\\x77\\xdc\\xe7\\x78\\xda\\xf1\\xba\\x1c\\x92\\x57\\xcb\\x7b\\xe5\\x23\\xf2\\x57\\xe4\\x1f\\xc9\\xef\\x28\\x09\\xa5\\xa2\\xec\\x55\\x6e\\x55\\x1e\\x56\\x5e\\x54\\xde\\x74\\x86\\x9c\\x23\\xce\\x71\\xe7\\x41\\xe7\\x51\\xe7\\x63\\xce\\x59\\xe7\\x5b\\xae\\x80\\x6b\\xd0\\x75\\xae\\x6b\\x9f\\xeb\\x56\\xd7\\x03\\xae\\x69\\xd7\\xcb\\xae\\x77\\xda\\x42\\x6d\\x83\\x6d\\x5b\\xda\\xae\\x6a\\xfb\\x48\\xdb\\xb1\\xb6\\x27\\xda\\x66\\xdb\\x7e\\xd9\\xde\\xd6\\xde\\xdd\\xbe\\xba\\x7d\\x7b\\xfb\\x55\\xed\\x1f\\x6c\\xbf\\xbb\\xfd\\x78\\xfb\\x74\\xfb\\x6c\\xfb\\xeb\\x6e\\xea\\xee\\x74\\x0f\\xb8\\xd7\\xbb\\x77\\xba\\xf7\\xb9\\xeb\\xee\\xbb\\xdd\\x0f\\xb9\\x9f\\x70\\xbf\\xe8\\x7e\\xd5\\xfd\\x96\\x47\\xf6\\x74\\x7a\\x0a\\x9e\\x95\\x9e\\x4d\\x9e\\x5d\\x9e\\x09\\xcf\\x8d\\x9e\\x23\\x9e\\x7b\\x3d\\x0f\\x7a\\x1e\\xf5\\x3c\\xe5\\x79\\xc1\\xf3\\x92\\xe7\\x35\\xcf\\x9b\\x9e\\xdf\\x79\\x65\\xaf\\xcf\\x1b\\xf3\\x76\\x7b\\x07\\xbc\\xa3\\xde\\x0a\\x01\\xd0\\x85\\x6e\\xb6\\x29\\x81\\xe1\\xdc\\x19\\xd3\\xc7\\xca\\x62\\xbe\\x78\\x38\\x6f\\xcd\\xce\\xcb\\x8a\\x0b\\x5d\\x27\\xc5\\x92\\xab\\xfc\\x1d\\xa6\\xc5\\x2d\\x2f\\x49\\xfc\\xa4\\x65\\xad\\x9b\\xc0\\x2f\\xf0\\x2a\\x4e\\x3b\\x6b\\x88\\xe5\\x18\\x75\\xcf\\x0b\\x1b\\x01\\x3b\\x45\\xa8\\x41\\x4e\\xf0\\xca\\x4c\\xaa\\x2b\\x67\\xf9\\x31\\x88\\xb1\\xf3\\x17\\xf9\\xa2\\x81\\x01\\x99\\xfc\\x66\\x2e\\x1f\\x47\\x2d\\x45\\xb6\\xfd\\x3f\\xfd\\x85\\x18\\x03\\x7d\\x49\\x78\\x4a\\x59\\x6a\\x34\\x0b\\xc6\\x41\\x3f\\x88\\xa7\\xa7\\xa3\\xc9\\x5e\\x23\\x61\\x71\\xd2\\x17\\xd1\\x47\\xa1\\x7f\\x80\\x56\\x0c\\xbf\\xff\\x0b\\xd3\\x6e\\x7d\\x0b\\xf2\\x26\\x9a\\x47\\xd1\\xd1\\xf0\\x0c\\x62\\x93\\x7c\\xe3\\x19\\x24\\x04\\x79\\x13\\xa7\\x5a\\xe9\\x78\\x83\\x57\\xc6\\xb6\\xe1\\x38\\x96\\x9e\\x23\\xaf\\x65\\x87\\x6e\\xd4\\xf7\\x47\\x42\\x82\\x9d\\xb3\\x24\\xa3\\x31\\x4b\\x6e\\xb0\\xc0\\xdb\\x01\\xfc\\xa1\\xad\\xb4\\x0f\\xe1\\x59\\xaa\\xc9\\xab\\x5e\\xb3\\x6f\\x04\\x47\\x4b\\xbf\\x1b\\x14\\xb0\\xb5\\xdb\\x1a\\xd8\\x38\\x9d\\x35\\xf5\\x20\\x9b\\x56\\x6a\\x89\\xdd\\xc6\\xaa\\x78\\x6f\\x2e\\x3d\\x4a\\xcd\\xc6\\xd1\\xdb\\xbc\\x48\\x59\\xae\\x51\\x19\\x5d\\xc0\\x33\\xfe\\x2c\\x42\\xff\\xc5\\x47\\xd8\\xea\\x1b\\xe1\\xa4\\xa0\\xab\\x96\\x5e\\x97\\xc6\\x38\\xef\\xb7\\xd5\\xdb\\x3a\\xcf\\xad\\xf5\\xfe\\x06\\xd4\\x26\\x6b\\x85\\xa8\\x25\\xab\\x5c\\x38\\xc7\\x14\\x7d\\x3c\\x9c\\x7a\\x6f\\xa0\\xbe\\x24\\xdd\\x01\\x21\\xdb\\x0d\\x18\\xb3\\x2c\\xd1\\x17\\xee\\xda\\x7f\\x87\\xd0\\x12\\xed\\xb7\\x7a\\x4b\\xfd\\xed\\x92\\x25\\x5b\\xc6\\xc4\\xae\\x84\\x10\\x52\\xfc\\x5d\\x8b\\x70\\x4b\\x9a\\xf9\\x2b\\x0c\\xd7\\xf8\\x54\\x23\\xe2\\xfa\\x01\\xe7\\xe1\\x1d\\xd6\\x7a\\x8a\\x16\\xf8\\x53\\x62\\x17\\x2c\\x52\\xce\\xbe\\x53\\x54\\xd4\\x17\\x0c\\xd3\\x1f\\x5b\\x7e\\x5d\\xec\\xfb\\x6f\\xe1\\xce\\x3b\\x07\\x47\\xdb\\xda\\x6e\\x0b\\x3f\\x92\\xed\\x45\\x6c\\xad\\xcb\\xc2\\x43\\x34\\x41\\x51\\x37\\x79\\x74\\x24\\x92\\xd0\\xce\\x39\\xd5\\x09\\x99\\x02\\xbf\\x25\\x4d\\x6f\\xb6\\x62\\xb1\\x6c\\x2d\\xd8\\x56\\xa1\\x8d\\x69\\xef\\x53\\xc0\\xb2\\x38\\x46\\x18\\x4f\\xff\\x87\\x8d\\xde\\x8f\\xd9\\x2c\\x07\\x03\\x38\\x0f\\x29\\xe4\\xf0\\x8d\\x2f\\x52\\x8f\\xc0\\x29\\x4d\\xfe\\x07\\x7b\\x1c\\xfc\\x76\\x4e\\xab\\x4d\\x0a\\x67\\x49\\x65\\xe0\\x3a\\xb4\\x2c\\xe6\\x50\\xcf\\xd4\\x79\\xe4\\xb8\\x63\\xe3\\x54\\x5e\\x05\\xfe\\xa6\\xdb\\x21\\x83\\xdc\\x0d\\xaf\\x25\\x15\\x88\\x42\\x9a\\x9d\\x87\\xab\\xdf\\xdc\\x1f\\x0e\\x11\\x4c\\x8f\\x7b\\x57\\x1a\\xb8\\x78\\xcb\\xbe\\x6a\\xf6\\x05\\x72\\x15\\xca\\xfe\\x96\\x6a\\x27\\x0d\\x59\\xb2\\x1a\\x3a\\x96\\xb2\\x72\\xc3\\x59\\xfe\\x1d\\xfa\\xe9\\x6c\\xcc\\x7b\\xcb\\x29\\x60\\x17\\x0b\\xee\\x95\\x1d\\xf7\\xef\\x40\\x8e\\x0d\\xd6\\x47\\x64\\xb4\\x85\\x5f\\x6c\\x95\\xf9\\x4e\\x7e\\x17\\xe2\\xe2\\xcd\\xa3\\x4c\\x59\\xda\\xa2\\x01\\x7a\\x14\\xcf\\x50\\xcc\\xe6\\xef\\xc3\\xee\\x37\\xf1\\x02\\x81\\x59\\xa6\\x2c\\x7c\\xdc\\x83\\xbb\\x0d\\x9f\\xd9\\x4e\\x21\\xdd\\xb2\\xd7\\xdd\\x65\\x52\\xb2\\x6c\\xc7\\xa2\\xb9\\xa6\\x96\\xc8\\xae\\x45\\x72\\x2d\\x6a\\x83\\x3a\\x2c\\x79\\x87\\x4f\\x78\\xfe\\xb3\\x38\\x24\\xec\\xdd\\x42\\xfe\\xb4\\xc8\\x1e\\x21\\x7f\\xb0\\x20\\x2f\\x64\\x69\\xd0\\xef\\x16\\x96\\x3f\\xdc\\xf2\\xc4\\xc4\\x82\\x51\\x5f\\x8a\\x3d\\x2b\\xf6\\x52\\xa7\\x35\\xc7\\xa6\\x47\\x60\\x8d\\x7e\\x16\\x3c\\x4b\\xad\\x31\\xdb\\x2d\\xb0\\xe2\\x45\\x28\\x33\\xd8\\x0a\\x1e\\xac\\xaf\\x4b\\x40\\x65\\x8e\\xcf\\x73\\xd9\\xeb\\x35\\x58\\x4f\\xc7\\x42\\xfb\\x7a\\xd0\\xd8\\xb9\\xe2\\x7c\\xd9\\x67\\x46\\xc0\\x29\\x7a\\x1f\\xf6\\x25\\x8e\\xd2\\xde\\x56\\xbf\\x84\\xf7\\x2d\\x18\\xbb\\x35\\xdb\\x54\\x06\\x77\\xd3\\x7c\\x36\\xe4\\xe3\\x7f\\x08\\x6e\\xab\\xc6\\x26\\x5a\\x89\\xfe\\x14\\xbd\\xa0\\x7a\\x17\\xd1\\x67\\x38\\x8e\\xde\\x49\\x17\\x81\\x15\\xf4\\xa7\\xe8\\x55\\xd4\\x6b\\x79\\x61\\x30\\x31\\x7f\\x83\\x52\\xe9\\x12\\xb0\\xd6\\xa2\\x4a\\xe9\\xbd\\xd0\\x86\\xfc\\x4c\\x0f\\xca\\x08\\xc2\\x42\\xab\\xf0\\x72\\x68\\xb3\\x4e\\x9d\\x25\\x29\\x60\\x7f\\x85\\x65\\xb9\\x6f\\xba\\x86\\x5f\\x97\\x0f\\x60\\x2a\\x9f\\xef\\x06\\x97\\xf4\\x39\\xa4\\x80\\xec\\xb2\\x24\\xa3\\xdd\\xff\\x40\\x5d\\xfb\\x86\\x46\\x25\\xe7\\xa6\\x7c\\xce\\xd6\\x9a\\x4f\\x94\\xd4\\xe8\\xa5\\xe8\\x81\\x34\\x25\\xa0\\xb1\\x49\\x87\\x31\\x91\\xea\\xb5\\xee\\x81\\x00\\xc4\\xe9\\x13\\xe8\\x07\\x87\\xc3\\xa3\\x06\\x87\\x6b\\x83\\x48\\x4d\\x35\\xd9\\xe9\\x9e\\x8f\\x16\\x42\\x1d\\x82\\x2f\\x8a\\x96\\xdf\\xf4\\x15\\x70\\x59\\x73\\xa6\\x62\\x0f\\x82\\x94\\xa2\\x75\\x51\\x58\\xe8\\x96\\x60\\xed\\xec\\x0a\\x8c\\xf9\\xda\\x0c\\x8d\\xce\\x03\\x97\\xb5\\xc7\\x04\\xef\\x85\\xac\\x42\\x99\\xa1\\x57\\x50\\xed\\x1c\\xef\\x1e\\x47\\x5d\\xa3\\xb4\\x58\\x01\\x6e\\x95\\xf3\\x7e\\xa4\\xe0\\x38\\x1e\\x82\\x5c\\x5a\\x72\\x23\\x72\\xe0\\x6c\\xb0\\x80\\x5d\\x04\\x4e\\xb1\\xbf\\x4d\\xed\\xa6\\x8d\\xe0\\x34\\x7d\\xbf\\xe0\\xad\\x19\\x60\\x9b\\xb0\\x1e\\xdb\\x7e\\x65\\x97\\x09\\x6e\\x9a\\xb0\\xe2\\x86\\x73\\x31\\x9e\\x65\\x46\\x48\\x38\\x03\\x74\\x12\\x2d\\x0d\\xac\\x56\\xc8\\x61\\x94\\x68\\x5a\\x3b\\x97\\x1c\\x42\\x1e\\x96\\xd7\\xf2\\xcd\\xa8\\x80\\x62\\x5f\\x33\\xfa\\xb7\\x20\\x63\\x1f\\x90\\xf3\\x05\\xdb\\x40\\x46\\x08\\x90\\x80\\x3c\\x04\\xd8\\xd9\\x48\\xdf\\x09\\x9d\\x58\\x7a\\x99\\xe0\\xd3\\xa1\\x5f\\x14\\x76\\x09\\xda\\x2d\\x18\\x79\\x1a\\xfd\\x11\\xf2\\xd6\\xf8\\xae\\x95\\x30\\x1d\\xf5\\xd1\\xd8\\xa5\\xf8\\xcc\\x31\\x99\\xbf\\x16\\xfa\\x0f\\x69\\xfa\\x3f\\xd1\\xb6\\xc1\\x0b\\x29\\x76\\x21\\x7a\\xaa\\x31\\x66\\xe4\\x79\\xa1\\x13\\xe1\\xa7\\x9f\\x01\\x49\\x9c\\xa1\\x67\\x51\\x77\\xc2\\x58\\x9d\\xed\\xf8\\x45\\x02\\xba\\xe8\\x3d\\x5c\\x53\\x82\\x3d\\x87\\x31\\x99\\xbc\\xd0\\x0f\\x17\\xc1\\x9d\\xf0\\x55\\x78\\x11\\xde\\x20\\x6e\\xd2\\x4b\\xd6\\x93\\x3d\\xe4\\x30\\xb9\\x97\\x7c\\x55\\x78\\x72\\xf0\\xd1\\x1c\\x5d\\x49\\xcf\\xa5\\x97\\xa2\\xae\\xc4\\xfd\\xf4\\xab\\xf4\\x69\\x3a\\x4b\\x7f\\x4e\\x7f\\xcb\\xdc\\x42\\x9f\\x69\\x0b\\xbb\\x88\\x4d\\xb0\\x83\\xec\\x26\\x76\\x07\\xbb\\x8f\\x3d\\xc0\\x1e\\x61\\x8f\\xb3\\xa7\\xd8\\xb3\\xec\\x87\\xf4\\x0a\\x88\\x5a\\x16\\x47\\x41\\x01\\x05\\x84\\xdc\\x58\\xf0\\x56\\xbd\\xad\\x9a\\xbe\\xec\\x06\\x71\\x96\\xed\\xbe\\x51\\x9b\\x6f\\xee\\x6b\\x50\\xda\\xc0\\xed\\xae\\x35\\x01\\x01\\x1b\\x1a\\xee\\x1f\\x42\\xed\\xd4\\x0e\\xc1\\x2d\\x6d\\xe1\\xe0\\xb3\\x09\\x91\\xcb\\xb9\\x67\\x76\\x09\\xac\\x71\\xd6\\xaf\\x13\\x56\\x1a\\x3e\\x4b\\x4f\\xc1\\xf4\\xef\\xa1\\xd1\\xfb\\x85\\x07\\xca\\x86\\x4e\\x11\\xd7\\x2d\\xc8\\xc2\\xff\\x8f\\xb0\\xab\\x87\\x6d\\xa4\\x88\\xc2\\xef\\x27\\x18\\x27\\x10\\xff\\xac\\x7d\\xe6\\x6c\\x67\\xf1\\xda\\x5c\\x8c\\x74\\x05\\x15\\x05\\x0d\\x81\\x0e\\x21\\x5d\\x81\\x4e\\x1c\\xdc\\x01\\x12\\x14\\x80\\xc2\\x9f\\x00\\x25\\x40\\x48\\x20\\xe4\\x0f\\x02\\xa1\\x01\\x09\\x21\\x84\\x84\\x48\\x10\\x05\\xa2\\x80\\x90\\x32\\x35\\x55\\x84\\x82\\x84\\x80\\x82\\x02\\x51\\x47\\x14\\x88\\x06\\x4a\\xb4\\xdf\\xbc\\x99\\x1d\\x3b\\x44\\xd7\\x25\\x6f\\xc7\\xe3\\x99\\xd9\\xd9\\x79\\x6f\\xdf\\xfb\\xbe\\xcf\\x89\\x2e\\xa1\\xbf\\x11\\x55\\x72\\xef\\x07\\x74\\xd1\\x3c\\x5c\\x3c\\x1f\\x1b\\xab\\xbe\\xf2\\x3f\\xd7\\x4c\\xf3\\x5b\\x3e\\x03\\x4e\\x29\\x8d\\x58\\xba\\x3e\\x0e\\x78\\xd5\\x94\\xb1\\xe2\\x4f\\xe5\\x6b\\x70\\x0c\\x24\\xe5\\x6c\\xc4\\xbc\\x44\\xd5\\x97\\xef\\x1b\\xb1\\xb7\\x30\\xe7\\x3a\\x65\\xfa\\x3c\\xce\\x04\\xb7\\x8e\\xc5\\xfa\\x39\\x65\\xab\\x62\\xfd\\x9c\\xfe\\xca\\x1e\\x10\\x42\\x83\\xa0\\xb8\\x99\\x52\\x2a\\xd3\\xc8\\xa4\\x77\\x02\\xc6\\xac\\x41\\x0d\\x99\\x0c\\xb6\\xb6\\x71\\x01\\x12\\xb9\\x11\\x4f\\x7b\\xd3\\xce\\x55\\xb0\\x52\\xa4\\x0a\\x2e\\x99\\xdf\\x19\\x18\\xab\\xbe\\x86\\xd3\\x68\\x64\\x15\\x75\\x21\\x6a\\x67\\x9c\\x35\\x7d\\x01\\xa7\\x80\\x1f\\xf7\\x80\\x52\\xa9\\x98\\x56\\x4a\\xc1\\x7d\\x7a\\x0e\\x6d\\x92\\xa0\\xa9\\x9b\\xc9\\x94\\x9d\\x26\\xc6\\x14\\x24\\xd5\\xfd\\x60\\xf1\\x15\\xb2\\x32\\x32\\x3e\\xb3\\xa1\\x16\\xb5\\x1b\\xfe\\xcf\\xe0\\x7b\\xaf\\x81\\xb5\\x56\\xf1\\xd8\\x75\\xb9\\x09\\x58\\x27\\xdf\\x67\\x49\\xae\\xa2\\x7d\\xcf\\xb3\\xcc\\x78\\x15\\x68\\x0d\\x5b\\x4b\\xbe\\x9f\\x6e\\xf0\\xe7\\xac\\xdc\\x8c\\xbf\\x5d\\xf6\\xfe\\xc9\\x82\\x97\\xa6\\x2f\\x21\\xf7\\x8e\\xec\\x01\\xaf\\xe3\\x79\\x1f\\x52\\x26\\x4f\\x41\\x99\\xaa\\x42\\x1d\\xa9\\xd1\\x04\\x76\\x6e\\xa2\\x2f\\x87\\xac\\xfb\\x8b\\xa4\\xf9\\xbb\\x88\\x3e\\x03\\x2c\\x54\\x95\\x37\\x48\\xe8\\x36\\x43\\x48\\xce\\xd1\\x65\\x7a\\x82\\x9e\\x95\\x15\\x70\\x5b\\xbc\\x82\\x62\\x50\\xed\\x90\\xe5\\x31\\xbb\\xa9\\x7f\\xd0\\x4f\\x34\\x89\\xf5\\x8c\\x14\\xa2\\xf5\\x3b\\x2a\\x45\\xf1\\xe4\\x8f\\x60\\xbc\\xd4\\x69\\x86\\xcb\\x60\\xbc\\x54\\x69\\x96\\x2e\\xd1\\x12\\x7d\\x49\\x47\\xf4\\x27\\x57\\xf8\\x0e\\xbe\\xc4\\xf3\\xbc\\x15\\x50\\x91\\x65\\xc9\\xe4\\x2e\\x79\\x40\\xe6\\x65\\x4d\\x3e\\x91\\x6f\\xe4\\x7b\\xf9\\x4d\\xfe\\x1a\\xcb\\x86\\x7f\\xac\\x5f\\xe9\\xa1\\xfe\\xa0\\xbf\\xf3\\x9c\\xc5\\xf3\\xf1\\x9b\\xd3\\x59\\xca\\x07\\x77\\x5f\\xa7\\x6d\\xac\\xd4\\x7b\\x0f\\x7c\\xe8\\xd9\\x6d\\xdd\\xdb\\xc7\\x15\\x44\\xd5\\x75\\x53\\xd3\\xaa\\x9d\\xd6\\xcb\\x93\\x3a\\x5a\\x24\\xe6\\x65\\xf3\\xc8\\xac\\x31\\x5a\\x05\\xe7\\x6d\\x44\\xc2\\xae\\x8f\\xa6\\xc5\\x8b\\xd3\\xc6\\xec\\x4b\\xa8\\xaf\\xef\\xe0\\x8e\\x8f\\x2b\\xc4\\xfb\\x38\\xf9\\x2d\\xec\\x7f\\xd7\\xff\\x39\\xc3\\x83\\xfa\\x78\\xe7\\x4a\\xa8\\x68\\x9e\\xaa\\x26\\xea\\x1b\\xd1\\xe7\\x6a\\xa6\\xe6\\xe8\\x6a\\x86\\x6d\\x7d\\xdd\\x2a\\xa2\\xad\\x90\\xc7\\x9a\\xb6\\x6b\\x3d\\x49\\x80\\xff\\x8e\\xe7\\x93\\x5a\\xc6\\xf9\\x61\\x5c\\xa9\\x07\\xb6\\x47\\x50\\x36\\xd7\\x4d\\xe4\\x8d\\xdd\\x67\\x32\\x8b\\x4f\\x2a\\xd4\\xd1\\x37\\x23\\x7b\\x2d\\xe4\\x93\\xbb\\xb4\\x02\\x7b\\x31\\x6e\\xc3\\xdf\\xea\\x7a\\xd4\\xde\\x55\\xe9\\x9c\\x27\\x5f\\x8e\\xec\\x2e\\x3a\\x72\\x38\\x93\\xab\\xc6\\x71\\x1d\\xd8\\x9a\\x7a\\x0e\\xff\\xb5\\x31\\x7b\\xc7\\xe5\\x5c\\xf5\\x6d\\x20\\xbd\\xc7\\x56\\x5a\\x57\\x60\\xf5\\xbd\\xbb\\x67\\x76\\x48\\xcb\\xb0\\x16\\x77\\xde\\x21\\x72\\x76\\x81\\xae\\xf4\\x95\\x07\\xe7\\x17\\xfa\\x52\\x8f\\x7a\\xf0\\x7b\\x60\\xa8\\x1b\\x91\\xf5\\x56\\xab\\x24\\xf5\\xe9\\x11\\x53\\x1c\\xf4\\x63\\x73\\xa7\\xe5\\xe7\\xc6\\xa8\\xee\\x45\\xfe\\x6f\\xcb\\xea\\x93\\x17\\x22\\x0c\\xd9\\x5a\\x64\\xf3\\x75\\x58\\x77\\x22\\xb7\\x4c\\xc1\\xdf\\xc5\\xab\\x8f\\xc2\\x56\\x7c\\x4b\\x7e\\x36\\x76\\x71\\xca\\x35\\x2d\\xfb\\x99\\xaf\\xc7\\x2a\\x2c\\x89\\xf1\\xc2\\xf2\\x59\\x3f\\x04\\x4b\\x74\\x8f\\x65\\x8f\\xca\\x94\\x8e\\xe4\\x39\\xbe\\x40\\x54\\xd4\\xc5\\x5b\\x44\\x42\\x43\\x70\\x64\\x1f\\xa4\\x45\\xfa\\x88\\x0e\\xe8\\x98\\x4e\\x58\\xb8\\xc5\\x17\\x79\\x8e\\x2f\\xf3\\xd3\\xbc\\xc4\\x3b\\xfc\\x29\\x7f\\xcd\\x87\\x7c\\xc4\\xbf\\xf2\\x1f\\x7c\\xc2\\x7f\\xeb\\xbb\\xf8\\xae\\x76\\xe4\\x57\\x4e\\xe9\\xad\\xca\\x39\\xa8\\x48\\x7a\\x05\\x18\\x8f\\x5c\\xcb\\xfc\\xd3\\xae\\xdb\\xf6\\xab\\x11\\xbe\\x8f\\x31\\xc5\\x50\\x9e\\xc2\\x3a\\xb8\\xf7\\xcd\\x7e\\x94\\x15\\x70\\xe8\\x88\\x19\\x53\\xbd\\x68\\x19\\xf3\\x38\\xee\\xf9\\xbd\\x10\\x97\\x27\\x91\\xa6\\x3f\\x38\\xc4\\x7a\\x60\\x75\\x10\\xe7\\xfb\\xda\\xc1\\xa7\\x2c\\xa0\\x36\\x51\\x8d\\x9f\\x6a\\xfa\\x27\\x28\\x31\\x16\\x68\\xc5\\x7b\\xcd\\x87\\xa5\\x91\\xfa\\x88\\xf3\\x93\\x6e\\xa4\\x3e\\x2b\\xd8\\xa4\\x49\\xf4\\x56\\x0b\\x0a\\x86\\x43\\xf9\\x05\\x7e\\xac\\x12\\x58\\x3f\\x7d\\x69\\x51\\x19\\xad\\x32\\xf8\\x81\\x2e\\x0d\\xe9\\x5f\\x78\\xa1\\x02\\x9b\\xd8\\xc0\\xef\\x2a\\x16\\x3a\\x02\\x3f\\xc3\\x2b\\x25\\x96\\x1d\\xae\\xd3\\x45\\x54\\x93\\x7b\\x9e\\x49\\xc2\\x9b\\xa8\\x34\\x60\\x7e\\xba\\x63\\x31\\xe6\\x79\\xd9\\x07\\xee\\x3d\\x1f\\xe1\\x63\\xa4\\xf9\\x3c\\xe5\\x5b\\x12\\xaa\\x11\\xd3\\x84\\xbe\\x0f\\xf4\\xeb\\xc0\\x98\\xbb\\xc9\\x18\\xf3\\x2b\\x89\\x74\\xfc\\x14\\x4a\\xd1\\x77\\xca\\xe3\\x51\\xc5\\x6a\\xc6\\xb2\\x51\\xf9\\xae\\x4d\\xf5\\x43\\xc3\\x14\\x87\\x2b\\xfa\\x81\\xa1\\xfd\\x3b\\xb6\\x13\\x84\\x26\\xa8\\x44\\x25\\x22\\xdc\\x5d\\xa6\\xf3\\x74\\x81\\xa6\\x68\\x48\\xb7\\xd3\\x2d\\xff\\x05\\x00\\x00\\xff\\xff\\x11\\x1e\\xc9\\xd5\\xb4\\xf4\\x01\\x00\")\n\nfunc vendor_material_icons_materialicons_regular_ttf() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_material_icons_materialicons_regular_ttf,\n\t\t\"vendor/material-icons/MaterialIcons-Regular.ttf\",\n\t)\n}\n\nvar _vendor_material_icons_materialicons_regular_woff = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x5c\\x9a\\x53\\x90\\x2e\\x0c\\xd0\\x9c\\xdf\\xdd\\x3d\\x6b\\x9d\\xb5\\x71\\xd6\\xb6\\x6d\\xdb\\xb6\\x6d\\xdb\\xb6\\x6d\\xdb\\xb6\\x6d\\xdb\\xb6\\x99\\xfa\\xfe\\x24\\x17\\x49\\xd7\\xf4\\xcd\\x54\\x57\\xcd\\x53\\x73\\xdd\\xae\\xb2\\x22\\x22\\x00\\x20\\x00\\x00\\x00\\xd8\\x47\\x06\\xc0\\x01\\x00\\x00\\xa0\\x27\\x27\\x00\\xd0\\xff\\xde\\xfc\\xff\\x12\\x15\\x12\\x16\\x01\\x00\\x80\\x84\\x00\\x00\\x00\\x21\\x00\\x00\\x20\\xfa\\x03\\x00\\x28\\x8a\\xca\\xc9\\x2a\\x02\\x00\\x40\\x66\\x00\\x00\\x80\\x1a\\x00\\x00\\xb0\\xec\\xa1\\xdf\\x66\\x89\\x2a\\x2a\\x0b\\x00\\x00\\x40\\x69\\x00\\x00\\x29\\x2f\\x00\\x60\\x2e\\x77\\xb4\\x50\\x2e\\x2f\\xab\\x48\\xcb\\x00\\x00\\x90\\xad\\x01\\x00\\x00\\x3e\\x00\\x00\\xa0\\x07\\xe5\\x48\\x60\\x68\\x68\\xad\\x6f\\x07\\x00\\x90\\xa3\\x03\\x00\\x20\\xd8\\x00\\x00\\x18\\xf0\\xfd\\x1d\\xfd\\x9e\\xa9\\xbe\\xa3\\x1d\\x00\\x40\\xc5\\x04\\x00\\x00\\x20\\xfe\\xf3\\xef\\x2f\\x00\\xc4\\xd4\\xca\\xdd\\x04\\x00\\xa0\\xe2\\x02\\x00\\xca\\x67\\x00\\x40\\x0e\\x98\\xbf\\x61\\xea\\xc1\\x66\\xc6\\xfa\\x46\\x00\\xc0\\x0a\\x0c\\x00\\x00\\x60\\xfe\\xef\\x2e\\xd8\\xc6\\xb9\\x8c\\x99\\x99\\xb1\\x3e\\x00\\xb0\\xf2\\x1f\\x1f\\xca\\xff\\xf0\\x01\\x01\\xff\\x31\\xb3\\x76\\x72\\x03\\x00\\x56\\xb4\\x00\\x00\\x60\\x76\\x00\\x00\\x3c\\xcf\\xe2\\xc4\\x5c\\xc4\\xca\\xd6\\x50\\x1f\\x00\\x58\\x4b\\x03\\x00\\xc0\\x03\\x01\\x00\\xf0\\x2c\\x78\\x5f\\x8b\\x21\\x6b\\x7d\\x37\\x3b\\x00\\x60\\x0f\\x1b\\x00\\x00\\xe0\\xff\\xe7\\x3f\\xa4\\x80\\x7d\\x1b\\x7d\\x6b\\x63\\x00\\x60\\x8f\\x0b\\x00\\x00\\x0c\\x02\\x00\\x40\\x1e\\xd8\\xf0\\xcc\\x47\\x76\\xb6\\x8e\\x4e\\x00\\xc0\\xfe\\x7f\\xef\\x40\\xfa\\x2f\\xf7\\x1b\\x02\\x60\\x70\\x03\\x32\\xd4\\x33\\xd2\\xd3\\xdb\\x03\\x32\\xc0\\xc0\\x37\\x01\\x16\\x30\\x01\\x73\\xce\\x4b\\x03\\x7b\\xc4\\xc0\\xcf\\x04\\x25\\x03\\x4b\\x02\\x07\\x20\\x81\\x03\\xa9\\x02\\xfe\\x6f\\xc6\\x20\\xce\\x90\\x4e\\x5f\\x6f\\x4a\\x9c\\x6a\\xdc\\x70\\x4f\\x4f\\x4f\\x1f\\x10\\xf0\\xfb\\xdb\\xcf\\x10\\x35\\x9c\\xae\\x5c\\x2e\\x57\\x0f\\x0a\\x63\\x07\\x00\\x74\\xe3\\x82\\xf9\\x03\\x00\\x00\\x37\\xa0\\xa8\\x64\\x90\\x38\\x62\\xee\\xbf\\xa3\\x9c\\x18\\x35\\x27\\xfa\\xef\\x4d\\xf0\\xb9\\xd6\\x9b\\x2d\\xff\\x67\\x1a\\x9f\\xee\\xad\\x36\\x7f\\x96\\xad\\x5e\\x94\\x55\\x5c\\x55\\xcb\\xa5\\x3a\\x3e\\x77\\xe1\\x44\\x92\\xc2\\x96\\x24\\x3a\\xab\\x28\\x2e\\x96\\x0a\\x67\\xb8\\xb5\\x05\\xec\\xe3\\xc7\\x06\\x82\\xf1\\x03\\xae\\x8a\\x90\\x62\\x04\\xc0\\x50\\x64\\x53\\xfb\\x23\\x84\\xb2\\xd9\\x64\\x19\\x1a\\xf2\\xaf\\xb0\\xe0\\xc2\\x47\\x9a\\x79\\xd2\\x7b\\x1b\\xdf\\x0e\\x24\\x02\\x55\\xd8\\xbd\\x9b\\xb5\\x57\\xdd\\x3c\\xab\\x17\\x59\\x3b\\xbc\\x1b\\x99\\x5b\\xab\\xb6\\x1f\\x8e\\xb3\\x79\\x77\\x8e\\xef\\xb9\\x17\\x43\\xf1\\xbc\\x9e\\x36\\x44\\x79\\x3d\\xbf\\xb6\\x49\\x77\\xbc\\x0e\\x42\\x03\\xe0\\xb9\\x85\\x2e\\x88\\x88\\x61\\x15\\x92\\xba\\x92\\x88\\x0d\\x5a\\xf8\\x8e\\x8d\\x44\\xdb\\x35\\x7d\\x54\\xf3\\x37\\x14\\xb4\\xcb\\x74\\x54\\x07\\x9d\\x22\\x77\\x54\\x72\\xab\\xf1\\x56\\x79\\x2f\\xc4\\x65\\x32\\x1b\\xdb\\x1d\\x9b\\x1c\\xbb\\x1f\\x1b\\x1e\\x2b\\x19\\x67\\xaa\\x5d\\x55\\x9d\\x5d\\x9d\\x65\\x9d\\x6d\\x9d\\x75\\x5d\\x7c\\x9d\\x44\\xdd\\x36\\x2c\\x5f\\x59\\x5e\\x5e\\x5e\\x67\\x5e\\x6c\\x5e\\x75\\x9e\\x7a\\x5e\\x3e\\xdc\\x19\\xbf\\x8a\\x7a\\x1b\\x7a\\xab\\x7d\\xcb\\x7c\\x6b\\x7c\\x2b\\x7f\\xab\\x7e\\xeb\\x7f\\x4b\\x79\\x07\\x72\\xd1\\x8a\\x02\\x51\\x02\\xa7\\x03\\xbb\\x03\\x0f\\x03\\x23\\x03\\x37\\x03\\x4b\\x03\\x5f\\x03\\x73\\x03\\x7d\\xfa\\x83\\xf4\\xf8\\xd1\\x83\\xaf\\xf7\\x2f\\xf6\\x4f\\xf6\\x6f\\xf6\\xf3\\xf7\\xc3\\xf7\\xdb\\xf7\\x8f\\xf7\\x9f\\x3f\\xd4\\xc9\\xe3\\x34\\xe5\\x19\\xbc\\x1c\\x13\\x48\\x4e\\x11\\x75\\x19\\x42\\x04\\x08\\xc8\\x7b\\x26\\xe9\\x14\\x15\\xf8\\x33\\x10\\xec\\xca\\x50\\xef\\x9a\\x7c\\xf8\\x1f\\xbc\\x37\\x4c\\xf2\\x32\\x82\\x3e\\x30\\xd4\\xdf\\x08\\xb8\\x78\\x88\\xc8\\xab\\x3e\\xdc\\x9f\\x52\\x57\\x18\\x46\\x35\\x82\\x08\\x3a\\x7c\\xca\\x69\\x39\\x91\\xfe\\x99\\xff\\x6b\\xd9\\x76\\xac\\x92\\xc4\\x80\\xb7\\x61\\x3f\\x12\\x0e\\x7f\\x8a\\xbc\\x93\\x44\\x9b\\x6e\\xf1\\x10\\xd9\\xf8\\x68\\xb2\\x48\\x8a\\xca\\x27\\xa8\\x23\\x61\\xeb\\xc8\\x97\\x8d\\x79\\x1e\\xe7\\x4b\\x01\\x15\\x1f\\x56\\xfa\\x57\\x12\\x27\\x06\\x47\\x41\\x6e\\x76\\x27\\xac\\x0b\\x1f\\x2a\\x23\\x81\\x58\\x05\\x1c\\x42\\x2b\\x2e\\xf6\\x27\\x40\\xb4\\x68\\x68\\x10\\x4c\\x67\\x0e\\xf4\\x5b\\x37\\xc3\\x70\\x33\\x60\\x5e\\x4c\\x12\\x75\\x52\\xa9\\x4a\\xd4\\x67\\x2c\\xc1\\xac\\x7e\\xd4\\x2d\\x87\\x5f\\x84\\x58\\x04\\xda\\x12\\xae\\xbb\\xe9\\x5e\\x97\\x44\\x01\\x21\\x43\\x8b\\xb3\\xea\\xc9\\xc9\\xfc\\xaa\\xdc\\xbc\\xc3\\xc0\\xf2\\x55\\xb0\\x36\\xf6\\xcc\\xc5\\xc8\\x9d\\x72\\x45\\xc6\\xb9\\x1a\\x39\\x06\\x73\\x9e\\x3e\\x7b\\xa9\\x90\\xc8\\xb8\\x49\\x42\\x49\\x38\\x16\\x1d\\x7f\\x01\\x79\\x53\\x78\\x2d\\xf9\\x99\\xe9\\x8e\\xd8\\xa8\\x24\\x57\\xc4\\x14\\x92\\x53\\x68\\x37\\xc1\\xdb\\x24\\x47\\xb4\\x52\\x5e\\x36\\x59\\xc8\\x36\\x3e\\xca\\x5b\\x63\\x5b\\x61\\x58\\xf2\\x2e\\x9e\\x1f\\x5a\\xe0\\x44\\xce\\xdd\\x1b\\xf1\\xed\\xc0\\xa5\\x1b\\xcf\\x6d\\x17\\xe3\\x28\\x4b\\x96\\xc3\\x9e\\x8d\\x82\\x55\\x3b\\x5f\\x17\\xa6\\xa3\\x34\\xd4\\x9f\\xf6\\x24\\xeb\\x2c\\x5e\\x0e\\x75\\xe7\\x3a\\x49\\xfb\\x5f\\x7c\\x72\\xf6\\x78\\x78\\xb8\\x92\\x82\\x07\\x94\\xe5\\xec\\xc6\\x74\\xe4\\xbe\\x17\\xa6\\xeb\\x3f\\x43\\xb7\\x2f\\x84\\x7c\\xa3\\x99\\x35\\x72\\x31\\xcf\\x72\\xcc\\xe8\\x80\\x8e\\xf8\\x66\\x43\\xdf\\xf3\\xd8\\x6d\\x4a\\xf2\\x73\\x45\\x6b\\xce\\x0f\\xd9\\xe9\\x65\\xab\\x90\\x91\\x76\\xc5\\xc4\\x71\\xf2\\x7e\\x23\\xdb\\x7a\\x2d\\x9d\\x9f\\x7a\\x7a\\x33\\x8e\\xbf\\x9a\\xc6\\xf7\\xee\\xe5\\x4b\\x9a\\x3c\\xe3\\x79\\x8b\\x85\\x15\\xe0\\xf9\\xb1\\xf6\\xa1\\x19\\xfd\\x67\\x5d\\x75\\x20\\x6f\\x9c\\xb8\\x43\\x33\\xf5\\xda\\x14\\x63\\xe9\\x1e\\x04\\x62\\xe2\\x50\\x76\\xe2\\x8e\\x07\\x53\\x9d\\xb5\\xa4\\x7e\\x47\\xe8\\x4e\\x1b\\x5b\\xf2\\x8b\\xf4\\xde\\x62\\xcb\\x9a\\x60\\x4c\\xe6\\xdf\\xe4\\x3f\\x60\\xe7\\xcc\\xb6\\xdc\\x02\\x17\\x1d\\xb7\\x94\\x4f\\x0e\\x0f\\xb4\\x0e\\x9b\\xc0\\xb2\\x02\\xd8\\xda\\x49\\x1c\\x48\\x84\\x0d\\x9e\\x15\\x17\\x71\\x9b\\xcc\\x0e\\x8a\\x87\\xd9\\xb9\\x54\\xcd\\xdc\\xaf\\x2a\\xb9\\x64\\xcd\\x2a\\xb5\\x88\\xf5\\xca\\x99\\x8f\\x4c\\x0b\\x35\\xd9\\xa3\\x81\\x5d\\xe1\\x4d\\xa3\\xd6\\x2b\\x89\\x1c\\x5f\\x98\\xda\\x87\\xaa\\xdb\\x11\\x4d\\x88\\xbb\\xa2\\x0d\\x02\\xac\\x2f\\x95\\x2e\\x29\\x1a\\x94\\xac\\x85\\x94\\xa4\\x92\\xd1\\xec\\xe7\\xca\\xd2\\xdc\\xa8\\xe9\\xe7\\x52\\xa7\\xd3\\x49\\xca\\x71\\xce\\x2a\\x52\\x47\\x6b\\x27\\xbc\\x84\\x8d\\x9c\\xec\\x23\\x2d\\xc6\\xa0\\xab\\x8c\\xf1\\xca\\x41\\x3f\\xf8\\xc4\\x14\\x8e\\xea\\xce\\x8c\\x0d\\x36\\xac\\xea\\xb1\\x89\\x73\\x31\\x91\\x56\\xcc\\x44\\x93\\x4a\\x9f\\x32\\x4a\\xa7\\xfa\\x90\\x73\\xe3\\x4a\\xbb\\xf5\\xad\\xfb\\x91\\x02\\xc2\\x27\\xcb\\x9e\\x20\\x39\\x69\\xd9\\x9c\\x65\\xa3\\x83\\xa7\\x53\\xd9\\x66\\xfa\\xdc\\x02\\xc0\\x97\\xa0\\x6a\\x3b\\xef\\xe8\\x3c\\xe1\\x2c\\x9f\\x31\\x5d\\x55\\x36\\x88\\x78\\xd5\\x2a\\x6e\\x0f\\x0b\\x85\\xc3\\x95\\x26\\x4d\\x16\\x52\\xa4\\x7c\\x0d\\x1f\\x7f\\xec\\xef\\xe5\\xf8\\x4e\\x9d\\xed\\x0f\\x30\\x6b\\x51\\x55\\xe6\\x60\\x8f\\xa4\\xdc\\x95\\x7a\\x92\\xed\\x29\\xaa\\x59\\x94\\x42\\x2b\\x28\\x97\\x17\\x2f\\x2c\\x99\\x85\\x2c\\xb5\\xe7\\x35\\x2f\\x0b\\x9f\\x97\\x3f\\xc4\\xbf\\xcb\\x7f\\x44\\x65\\x1d\\x09\\x4c\\x85\\x4d\\x2d\\x4f\\xe5\\x4e\\xbd\\x4e\\x65\\x4e\\x8d\\x4f\\x35\\x4d\\xfd\\x18\\x27\\xa5\\x3b\\x2b\\x3b\\x36\\x3b\\x45\\x3b\\xd0\\x3a\\x5f\\x3b\\x6a\\x3b\\x77\\x3b\\x41\\xb6\\x30\\x74\\xba\\x55\\xef\\x59\\x9e\\x5c\\x5e\\x63\\x5e\\x66\\x5e\\x6d\\x9e\\x70\\x5f\\x74\\x9e\\x79\\x5e\\x7d\\x5e\\x3f\\xdc\\x0b\\xbb\\xcc\\x7b\\xc6\\x00\\x14\\xa7\\x41\\x8c\\x67\\x31\\x54\\x78\\xb9\\xf0\\x44\\x73\\xd2\\xcb\\xae\\x5d\\xf1\\x59\\x8c\\x51\\xf9\\x72\\x18\\x67\\x4d\\x75\\x68\\x51\\x0c\\x19\\x67\\xa3\\xd9\\x33\\xe9\\x9c\\x29\\x25\\x11\\xfb\\xdd\\xe7\\xe9\\xaf\\x5b\\x4f\\x1c\\x2f\\x5e\\x39\\x7f\\x91\\x30\\xbe\\xab\\x47\\x0e\\x5a\\x32\\xb5\\x1a\\xea\\x5d\\x32\\x61\\x02\\x2f\\xcf\\x61\\xa1\\xb9\\x44\\x4e\\x9c\\x4a\\x8d\\x98\\x1a\\xc3\\xaa\\x20\\x9b\\xa2\\x68\\x1d\\x0f\\xef\\x80\\x23\\xb2\\x6a\\x28\\x3f\\xa2\\xbc\\xe3\\x69\\x7f\\xfa\\x33\\x40\\xe1\\xac\\x40\\x57\\xb0\\x55\\xb2\\x04\\xb8\\x55\\xcb\\x42\\xe7\\x55\\xa2\\x77\\xaf\\x63\\x49\\x09\\xc3\\xd6\\x35\\x8b\\xca\\x0e\\xa3\\x38\\x72\\x03\\x47\\x6d\\x2b\\x83\\x89\\xa7\\xad\\xff\\xd5\\x58\\x80\\xb4\\x36\\xaa\\x8d\\x6c\\x85\\xa0\\x36\\x8d\\xf1\\x89\\xbc\\xdc\\xe0\\xd1\\xa4\\x9c\\x5b\\xf6\\x79\\xbe\\x10\\x56\\xec\\xac\\xf5\\xef\\xad\\xc4\\x64\\x34\\xae\\x8f\\x44\\xfd\\xa2\\x29\\xa5\\x9d\\xc9\\xe7\\x67\\xcf\\x93\\x15\\x75\\x0f\\xcf\\x42\\xbc\\x50\\x04\\x54\\x5c\\x60\\x4a\\x1a\\xdc\\x4f\\x57\\x6c\\xee\\x8d\\x4b\\x45\\xac\\x50\\x2a\\xd2\\x9f\\xf6\\xf2\\x32\\x70\\x52\\x5e\\xe2\\xc8\\x99\\x97\\xb7\\x7a\\x43\\x65\\x1b\\xf2\\x55\\x82\\xf3\\x79\\x4c\\x16\\xab\\x10\\x77\\xae\\x13\\xed\\x8f\\xfd\\xcd\\x14\\x82\\x0f\\x62\\x43\\xf4\\xdf\\xda\\x0d\\x6d\\xc5\\x74\\xd6\\xc5\\x13\\x2b\\xbb\\xb9\\x06\\x81\\x5c\\x22\\x90\\xa8\\x06\\xee\\x48\\xd6\\x0a\\x95\\x78\\x31\\xc2\\xbf\\x2e\\x19\\x27\\xf2\\xb6\\xde\\x48\\x5d\\x75\\x87\\x99\\x7c\\x4b\\xff\\xd5\\x35\\xf9\\x7f\\xb5\\xd2\\x2e\\x6a\\x3a\\x72\\xcf\\xb2\\xfd\\x08\\xdf\\x84\\xab\\x9e\\x62\\xac\\x99\\x52\\x73\\x84\\x3d\\x9f\\x4f\\x7a\\x34\\xc8\\xf9\\x94\\xf4\\x56\\x07\\xc7\\xed\\xdf\\xae\\xe3\\x31\\x22\\x1f\\xbb\\xe1\\x68\\x0f\\x3d\\xfa\\x50\\x8f\\x4e\\x78\\x0a\\x8a\\x95\\xb0\\xdd\\xdf\\xce\\x4c\\xd6\\xcc\\x2a\\x2e\\x9b\\x31\\x1a\\x21\\xb1\\xff\\xec\\xae\\xf4\\x89\\xdb\\x27\\x2a\\x13\\x70\\xa4\\x5a\\xb6\\xc9\\x09\\xde\\xbd\\xbd\\x75\\x19\\x3d\\xfe\\x7c\\x14\\xb2\\x1a\\xf8\\xe9\\xf7\\xc8\\x9e\\xd6\\xf1\\x80\\x34\\xfa\\x3d\\x97\\x5d\\x03\\xbd\\x8d\\xe1\\x9f\\x7e\\xc9\\x70\\xa2\\x9c\\xcf\\xd9\\x58\\x69\\xc2\\x7c\\x53\\xd8\\x30\\x09\\xef\\x69\\x71\\xef\\x84\\x8b\\x02\\xb1\\xf1\\x15\\x76\\xb6\\x24\\xf7\\x55\\x26\\x36\\x19\\x05\\xe2\\x0c\\xf1\\xe0\\x07\\x4b\\x77\\xe1\\x2c\\xf1\\xd5\\x29\\xa0\\x0a\\x01\\x6b\\x0f\\x35\\x96\\x07\\xbc\\xc5\\x9c\\x63\\x20\\x51\\xdf\\xdb\\x9d\\x46\\xc9\\xbc\\xab\\xb8\\xe5\\x23\\xf9\\xf6\\x37\\xff\\x4c\\x83\\xb9\\xe4\\x5a\\xcc\\xfe\\x53\\xfa\\x54\\x90\\xdc\\xc1\\x0d\\x6c\\xba\\x15\\x19\\xf1\\x04\\x38\\x85\\x23\\x46\\x82\\x29\\x08\\xa1\\xfb\\x84\\xd4\\x3c\\x56\\xd0\\xa9\\x76\\x3e\\x59\\x49\\xa1\\x6a\\xde\\xb6\\xa7\\x90\\xef\\x54\\x3b\\x83\\xa6\\x24\\xb5\\x9d\\x40\\x5e\\xcf\\x79\\x27\\x97\\xf6\\xf4\\x14\\x36\\x1d\\xd2\\x44\\xa7\\xb1\\x67\\x7d\\x37\\xcb\\xf2\\x86\\xc5\\x56\\xc3\\x90\\x71\\x5c\\x56\\xb5\\x69\\x73\\xd3\\xf0\\x3a\\xf9\\x45\\x7e\\x5c\\xee\\x50\\x4f\\xe0\\x6e\\x56\\x6f\\x58\\x6f\\x73\\xef\\x6e\\x4f\\xe0\\xfe\\xb7\\x16\\x6c\\x37\\x15\\xb3\\x38\\x5d\\xc2\\x31\\x55\\x05\\xf5\\xd6\\xd7\\xee\\xdc\\xea\\xfe\\x5b\\x36\\x95\\x07\\x6e\\xd0\\x4e\\x8a\\x4d\\xb5\\x4d\\xaf\\xcd\\xa3\\xcd\\xda\\x8d\\xee\\x61\\x29\\x74\\x70\\x75\\xb0\\xb6\\xd0\\x81\\x89\\x24\\x83\\x3a\\x83\\x53\\x83\\x45\\x83\\x77\\x43\\x9e\\x61\\x59\\xb1\\x70\\xb2\\x90\\xb3\\xb0\\xb4\\xb0\\xb5\\xb0\\xf6\\x10\\x5f\\xe6\\x50\\xca\\x61\\xb9\\x77\\xe4\\x71\\x44\\x72\\xa4\\x72\\x04\\x6b\\x64\\x73\\xa4\\x73\\x14\\x7c\\x44\\x74\\xb4\\x74\\xe4\\xf4\\x71\\x7d\\xa9\\x54\\x47\\xc9\\x0a\\xe5\\xbe\\x39\\x38\\x0c\\x92\\x29\\x88\\xaa\\x91\\x58\\xe9\\x8d\\xed\\xa8\\x9c\\x56\\x01\\xef\\x45\\x63\\x25\\xab\\x90\\x78\\x77\\x11\\x4a\\xbb\\xde\\xbe\\xf7\\xbc\\x10\\xec\\x88\\x85\\x5e\\x04\\x01\\xe3\\x26\\xe6\\x76\\x9a\\x06\\x59\\x46\\x0d\\xea\\x4a\\x2f\\xe9\\x20\\x53\\x83\\x46\\xfb\\xc8\\xac\\x89\\x3d\\xe0\\x02\\xf3\\x5b\\x48\\xc2\\xfe\\xd3\\x8b\\xfb\\x0d\\xb9\\x02\\xed\\x47\\x33\\xbe\\xc6\\x8d\\x65\\x2a\\xe7\\x3c\\x42\\x38\\x87\\x1d\\x8f\\x3b\\x30\\x43\\x17\\x16\\x79\\x0c\\x21\\xfd\\x96\\x2d\\xff\\x09\\x10\\x58\\xf7\\x75\\x3d\\x4c\\x16\\x2e\\x63\\x31\\x9a\\xbc\\x35\\xb1\\xec\\xe2\\x8e\\x51\\x61\\x3e\\xab\\x66\\x07\\xf4\\x7a\\x76\\x25\\x0d\\xcc\\x9a\\x2b\\xd1\\x1c\\x93\\x21\\xdd\\xb7\\xe6\\x33\\x5f\\xc1\\xd1\\xa0\\xe2\\xa2\\x3b\\x0f\\x8d\\xae\\x79\\x58\\x7c\\x21\\x8e\\x61\\x20\\x13\\x89\\x36\\xe2\\x33\\x91\\xe3\\x27\\xf8\\x08\\x27\\x27\\x64\\xf9\\x18\\xf9\\x75\\xbd\\xbc\\xc5\\xbe\\xcc\\x96\\x4c\\xae\\x91\\x29\\xc4\\x78\\xae\\xc6\\x0d\\x92\\xe5\\x1b\\xa9\\x04\\xe2\\x09\\xa6\\x5c\\x07\\x4d\\x3d\\x45\\x5b\\x98\\x0d\\x43\\x7a\\x78\\x7c\\x54\\x09\\xac\\x3e\\x98\\x07\\xe3\\x89\\x75\\x32\\x0c\\x3b\\x30\\x31\\xac\\xab\\x4f\\x6b\\x21\\x90\\x6e\\x04\\x3f\\xa0\\xa6\\xc7\\xa3\\x67\\xb5\\x75\\xcd\\x85\\xb7\\x8b\\xd9\\x5d\\x87\\x30\\x8d\\x41\\x11\\xac\\x7c\\x3f\\xac\\x34\\xee\\x98\\x57\\x72\\x90\\x28\\xc5\\x2c\\xfb\\x4e\\x95\\xef\\x52\\xe7\\xd4\\x48\\xbe\\x92\\xbb\\xe0\\xd6\\x0c\\x39\\x1a\\xb9\\xd0\\xfc\\xde\\x96\\xc4\\x74\\xbb\\xb4\\x5c\\xec\\x82\\xf7\\xbe\\x80\\x04\\xb8\\xa9\\x80\\x6e\\xae\\x48\\x32\\x14\\x1b\\x2d\\x8f\\xc9\\xa0\\xed\\x63\\xa0\\x8d\\xa7\\x5d\\x56\\xaa\\x87\\x91\\xc3\\x5a\\x69\\xe1\\x2c\\x1f\\x9d\\xa2\\x24\\x2c\\x37\\xd8\\xc2\\xd4\\xd5\\x88\\x52\\x84\\x87\\x7a\\x8a\\xf9\\x92\\x3a\\x88\\x66\\xdd\\x05\\x78\\x64\\x74\\xa5\\x3d\\x95\\xe1\\x98\\xd9\\x94\\xb0\\xf4\\x91\\x4a\\xc8\\xd6\\x6f\\xb2\\xc1\\x26\\xdb\\x33\\x3b\\x7b\\x56\\xd6\\x18\\xec\\x88\\x77\\xe9\\xfd\\x9b\\x9e\\x94\\x60\\xc9\\xb7\\xb1\\x45\\x63\\xf6\\x51\\x13\\x88\\xf5\\x80\\x75\\x8d\\xda\\x8e\\xed\\x78\\xc0\\x19\\xd2\\xa8\\x5b\\x28\\x31\\x87\\xd4\\x56\\xbd\\x50\\xfa\\x51\\xe0\\x91\\x3e\\x1b\\x7c\\x43\\xe2\\xc1\\x70\\x70\\x22\\x46\\x07\\xa1\\xe1\\x19\\x2f\\xa5\\xcc\\xe0\\xd6\\x3a\\x1b\\x7c\\x8f\\xb3\\x0c\\xba\\xa9\\xd5\\xf4\\x82\\xa2\\xa5\\x70\\xd2\\x6e\\xce\\x2c\\x7f\\x30\\x8e\\xc9\\xc1\\x38\\x6b\\x43\\x60\\x01\\xe0\\xa0\\xa7\\xe0\\x0b\\xab\\xb6\\x67\\xce\\x85\\xde\\x3b\\xbc\\xa8\\x50\\xa0\\xb5\\x0a\\xb4\\x2b\\x6e\\x08\\x96\\x4d\\x44\\x97\\x85\\x4a\\x65\\x11\\x2b\\x2a\\x2d\\x15\\xd1\\x63\\x72\\xd6\\xc5\\xc9\\x65\\x6f\\xd6\\xa4\\xb8\\x04\\xc8\\x65\\x3f\\x0b\\x6e\\xa8\\x6d\\x2c\\xc7\\x47\\xf2\\xbc\\xf9\\x75\\x93\\xc9\\x4f\\x25\\x8b\\x5a\\xf7\\x84\\x25\\x78\\x79\\x3b\\x9f\\x25\\x3d\\xb0\\xc3\\x51\\xe7\\x09\\xfd\\xb8\\x64\\xa2\\x91\\xdd\\x1f\\x06\\x70\\xf3\\x9b\\xd5\\x61\\x80\\x27\\x52\\x09\\x88\\xe7\\x17\\x8f\\x1c\\x6a\\x93\\x91\\x37\\xc9\\xc7\\x76\\xc0\\x0f\\x5b\\xaf\\x64\\xdd\\x63\\xe4\\x31\\x39\\x5e\\xe5\\x3e\\x80\\x22\\x9f\\x7a\\x24\\xf9\\x7f\\xcc\\xb8\\x92\\xd1\\xcf\\xed\\xb4\\xc3\\x11\\xff\\x49\\xe9\\x9c\\xcb\\xc7\\xf7\\xdd\\x3f\\x26\\x57\\xb1\\x2d\\x79\\x0b\\x73\\x29\\x61\\x5b\\x85\\xe8\\x09\\x9f\\x2d\\x2a\\x9b\\x3e\\xbc\\xae\\xde\\xcd\\x90\\xcd\\x8c\\x26\\x9b\\xea\\x56\\x5a\\xdc\\x09\\xa0\\xc5\\x87\\xd9\\xef\\x88\\x19\\x20\\x20\\xb8\\xbb\\x3f\\x5b\\x44\\xa2\\xe7\\xa5\\x5c\\x38\\x1b\\xfe\\xd6\\xf1\\x93\\x78\\xbf\\xd1\\x0a\\x66\\x91\\x19\\xc4\\x6c\\x92\\x27\\x65\\xc0\\x92\\xd4\\x74\\xdd\\xb0\\x02\\xe3\\xe8\\x62\\xca\\x15\\xf5\\xaf\\xb1\\x94\\x35\\xef\\x6f\\xa9\\x2e\\xe6\\x43\\x58\\x96\\x41\\x26\\x83\\xeb\\x84\\xac\\xf6\\xc1\\xa8\\xa7\\x02\\xbd\\x18\\x37\\x29\\x51\\x36\\x16\\x46\\x5b\\x38\\x7c\\xa2\\x8e\\x3d\\xf1\\x7d\\xb8\\xe8\\x22\\xcd\\x9d\\x76\\x7d\\xdc\\x24\\x61\\x4a\\x9c\\xda\\x32\\x91\\x3e\\xaa\\x65\\xcd\\x44\\x9b\\x7e\\x75\\x49\\xca\\x1e\\x9e\\xb1\\x54\\x6d\\xde\\x94\\xf8\\xf1\\xa8\\xe9\\x5e\\xe7\\x31\\xdf\\x85\\x27\\x43\\x47\\x91\\x82\\xfe\\xc1\\xa5\\xc2\\xad\\xc2\\xb0\\xc2\\xb8\\x22\\x57\\xbf\\x3a\\xef\\x2f\\xee\\x9f\\xee\\x0f\\xec\\x5f\\x0c\\x30\\xde\\x61\\x56\\x95\\x87\\xb2\\xe5\\x0e\\xcb\\xac\\x52\\xcf\\x5b\\xf9\\xeb\\xf9\\x40\\xb1\\xa7\\x43\\xe8\\x50\\x7e\\x9d\\x71\\xbe\\x0f\\x1f\\xca\\xc5\\x95\\xbf\\x03\\x72\\x2d\\x3f\\xc0\\x6c\\xed\\x46\\xf3\\x9c\\x22\\x7d\\x54\\x99\\x38\\xa5\\x34\\xb5\\x6f\\x6f\\xae\\xdd\\x23\\xea\\x5e\\x83\\x9a\\x13\\xef\\x8c\\x87\\x3c\\x5d\\x19\\xc6\\xa2\\xc3\\x1c\\xcd\\xc0\\xdd\\xac\\x33\\x5f\\xba\\xa1\\x6e\\xb9\\xe4\\x5f\\xea\\xb4\\x57\\x36\\xa8\\x40\\x44\\x02\\x0d\\x5e\\x91\\x34\\x48\\x40\\xce\\x6e\\xcd\\x38\\x78\\xf7\\xad\\x31\\x78\\xc3\\x8a\\xc4\\x19\\x83\\x07\\xea\\xa9\\x06\\xf9\\x06\\xf4\\x83\\xe6\\xa2\\x64\\x14\\xa1\\x06\\x5b\\x1b\\xf6\\x23\\xe5\\xe6\\xff\\xf8\\x4f\\x9d\\x49\\xd5\\x28\\x3e\\xfd\\xb8\\x7c\\x41\\x7f\\x76\\x74\\xfc\\x83\\x04\\x7e\\xb7\\xb2\\xe7\\x06\\xa4\\xe2\\xcd\\x11\\x2d\\x6d\\x42\\xea\\x82\\x0e\\x15\\xa3\\x73\\x3d\\x93\\x22\\x5b\\x76\\x4c\\x07\\x7c\\xbc\\x6c\\x4f\\x51\\xc2\\x43\\x80\\x63\\xf5\\xef\\x2d\\x35\\xb2\\x39\\xc8\\x7e\\x49\\x5c\\xb8\\x15\\xc8\\x23\\xaf\\xf0\\xb6\\x35\\x21\\xa3\\x5e\\x63\\x92\\xc6\\x8b\\x55\\x34\\xe2\\x61\\x93\\x0a\\x57\\xde\\x8e\\x03\\x68\\x7e\\xeb\\xf5\\x5f\\x8f\\x0a\\x16\\x05\\x0f\\x94\\x9e\\xca\\x3e\\x79\\xd3\\x76\\x07\\x3d\\xca\\xbb\\xa1\\x2f\\x5b\\x21\\xf8\\x71\\x54\\x7f\\x49\\x3f\\xa3\\xbf\\xfa\\xa4\\x72\\xef\\xad\\x9f\\x7d\\x9e\\x50\\xcd\\x6a\\x81\\x51\\x7e\\xcf\\x37\\xd0\\x3a\\xd3\\x2b\\xf9\\xc5\\x53\\x56\\xb3\\x45\\x0e\\x31\\x52\\xa1\\x0e\\x4f\\xaf\\x3d\\x0a\\x94\\x7d\\xe0\\x18\\x26\\x32\\xd3\\x3c\\x77\\x8f\\x7d\\xb8\\x6b\\xc4\\xe7\\xac\\x9e\\x0a\\x01\\xdb\\xd5\\xa8\\x18\\x65\\xd4\\x90\\xb0\\x2a\\x3a\\x6b\\x11\\xd4\\x95\\xbf\\x32\\x8f\\x62\\x0e\\xa0\\xc2\\x71\\xfe\\x9f\\xa4\\x5b\\x78\\x07\\x9d\\x6b\\xef\\xdf\\x64\\x0a\\xde\\x9a\\x7d\\x24\\xa9\\x8a\\x62\\xe4\\x2a\\xb4\\x3d\\x3b\\x5b\\x52\\xff\\xbe\\xa8\\x6f\\xa0\\xb4\\xe1\\x63\\x35\\x80\\x76\\x26\\xac\\x20\\x64\\xb8\\x49\\x33\\xe5\\xf2\\xea\\x6d\\x8d\\x9b\\x86\\x64\\x37\\xd2\\xa8\\xa8\\x4e\\x08\\x1b\\xf8\\x48\\x0d\\xcf\\x6e\\x9b\\xe8\\x71\\xa4\\x57\\x17\\x1e\\x9f\\xb8\\xe1\\xef\\x72\\xdd\\xd5\\x77\\x32\\xe0\\x4f\\x23\\xdf\\x7d\\x7c\\xb2\\x7b\\x59\\xcb\\xd3\\x4d\\x7e\\xcc\\x53\\x58\\xb0\\x22\\x76\\x39\\x37\\xb2\\x68\\x93\\x3b\\x43\\xa7\\x27\\x4f\\xbc\\x1f\\x9b\\x99\\x5b\\x08\\xd0\\x9b\\x6b\\x61\\x93\\x3b\\x96\\x9d\\x57\\xe1\\xcf\\x2f\\x83\\xdb\\xa3\\x2e\\x68\\x78\\xbf\\x84\\x22\\x5a\\xb6\\x2e\\x06\\x30\\xdf\\x30\\xf3\\xa5\\xfe\\xd4\\x4c\\xea\\x75\\x96\\x1b\\xfc\\xa9\\x87\\xaf\\x16\\xd4\\xfa\\xe6\\xc4\\xf6\\x8f\\xcf\\xf2\\x1b\\x39\\x5d\\x13\\x9e\\x4b\\xba\\x69\\x55\\xd9\\x7a\\xe3\\xb8\\xb8\\x27\\x06\\xa8\\x9e\\xc1\\x78\\x5d\\x87\\x7d\\xfb\\x9f\\xa9\\xdd\\x7f\\xda\\x4f\\xc0\\x2e\\xd7\\x3a\\xda\\xf6\\xad\\x4e\\xea\\xf6\\xba\\x32\\x54\\x39\\x36\\xa9\\xcb\\xdf\\x5e\\xaf\\xe9\\x5f\\xbc\\x2a\\x3e\\xbe\\x46\\xfc\\xe3\\x1d\\x65\\xcc\\x54\\x44\\x33\\x3a\\x88\\xd1\\xa3\\x62\\xf0\\xd8\\x84\\xe5\\x38\\x3a\\x4e\\x17\\x88\\xd4\\x30\\x81\\x8e\\xf5\\x05\\x28\\x28\\x7a\\x16\\xcf\\x09\\x93\\xda\\x99\\x30\\x41\\xb6\\x27\\xe5\\xc1\\x36\\xe2\\x25\\x47\\x7e\\x2f\\x41\\xed\\x13\\x79\\x0a\\xf1\\x53\\xeb\\x74\\x4d\\x59\\xe4\\x11\\xb4\\x52\\x35\\xb1\\x7e\\x76\\x76\\x5d\\x14\\x2a\\x84\\xb7\\x41\\x02\\x51\\x1b\\x10\\xaf\\x81\\x6a\\x22\\x6c\\x08\\x09\\xe7\\xa4\\x6f\\x0c\\x29\\x23\\x7b\\x7a\\xb2\\x40\\xfb\\x17\\xa8\\xb7\\x57\\xcd\\x41\\xcd\\xc8\\x43\\xad\\x08\\x7c\\x2a\\x86\\x23\\x7f\\x6e\\x82\\x14\\x6f\\x8b\\xde\\xa1\\xb5\\x44\\x4a\\xb4\\x93\\x28\\x16\\x55\\x7b\\x4e\\xa8\\x2a\\xe4\\x79\\xf6\\x72\\x69\\x4b\\xe3\\x3d\\x12\\xe9\\x24\\xb8\\x9e\\x42\\xbf\\x9b\\x0b\\x3a\\xc0\\xa3\\xb2\\x6e\\x66\\x2e\\x4e\\x7f\\x9f\\x28\\x86\\x7f\\xf9\\x2e\\xab\\x3e\\x87\\x5e\\x9f\\x22\\xde\\xff\\xa2\\x53\\xd1\\xa2\\x5c\\x1e\\x06\\x5a\\x12\\x4f\\xf8\\xaa\\x4b\\x48\\x36\\x8a\\x35\\x7b\\x08\\x96\\x2b\\xe7\\xaa\\x77\\x28\\x5f\\x2c\\xed\\x86\\x44\\xdb\\xa1\\x96\\x2b\\x57\\xe1\\xdc\\x60\\xe2\\xe2\\xe9\\x90\\x27\\x47\\xb8\\x12\\x22\\x45\\xc7\\x9c\\x84\\xa1\\x46\\xad\\x24\\x51\\x0c\\xc7\\xcf\\x07\\x2b\\x14\\xba\\xd1\\x7f\\x30\\xd0\\x48\\x7a\\x1b\\xd4\\xb8\\xf5\\xbb\\x39\\x97\\x4b\\x61\\x93\\x29\\x87\\x53\\x1e\\x7a\\x1e\\xa2\\x1d\\xca\\x22\\x25\\x32\\x25\\x88\\x8f\\xe3\\x25\\xbe\\x27\\xa2\\x24\\x46\\x27\\x6a\\x27\\x0e\\x26\\x32\\x26\\x56\\x26\\x7a\\x26\\x9a\\x26\\xb6\\x26\\xd2\\x4e\\x96\\x68\\x91\\xc3\\x27\\x91\\x26\\x99\\x1e\\x60\\x64\\xbf\\x9a\\x67\\xb5\\xf6\\xe0\\x7f\\xd6\\xe3\\xb8\\x6b\\xdb\\xc0\\x4b\\xe7\\xec\\xff\\xa2\\xab\\x1a\\x65\\x09\\x52\\xf1\\x4c\\xe2\\x94\\xd2\\xcf\\x79\\xb7\\x56\\x1a\\x78\\x81\\xb6\\x59\\x6d\\x89\\x6d\\x99\\xb5\\x6f\\x25\\x96\\xed\\x3b\\x1c\\x26\\x35\\x6e\\xbd\\x3c\\x11\\x63\\xaa\\xd9\\x7b\\xc4\\x2a\\xb6\\xed\\x55\\x7f\\xf6\\xfb\\x73\\x80\\x5e\\x58\\x77\\x73\\xb5\\x27\\x4a\\xb5\\x76\\x00\\xa5\\x83\\x5c\\x67\\x59\\x64\\xc3\\x5e\\xf9\\xf5\\x44\\xe3\\x4f\\x66\\x0f\\x21\\x95\\xdf\\x4c\\x2a\\xd9\\xd6\\x2e\\xb3\\x7b\\xb1\\xb6\\x89\\x3f\\xc7\\x20\\x6e\\x5f\\x7c\\x70\\x7f\\x98\\x84\\xd0\\xb6\\xce\\x56\\xc6\\x5a\\x01\\x7a\\x70\\x8b\\x23\\x95\\xaa\\xf2\\x0f\\x8c\\x26\\xcb\\xb8\\x1a\\xae\\x8a\\x39\\x6d\\xe5\\x4d\\x55\\x7a\\x60\\x3a\\x9b\\xfe\\x15\\xc7\\x34\\x49\\x59\\xca\\x1b\\x72\\xab\\x17\\x92\\x5f\\xb7\\x85\\x14\\xc8\\xd4\\xc1\\x16\\xb3\\x09\\xef\\xc1\\x3d\\x3f\\x7c\\x6c\\x28\\x5d\\xb1\\xf3\\x92\\x39\\xb9\\x66\\x1b\\x42\\xea\\x7e\\x1c\\x44\\x41\\x01\\x47\\x82\\xba\\x2c\\x69\\x5b\\x27\\x0d\\x87\\x70\\x5c\\x14\\xa9\\xb3\\xce\\x1e\\xdd\\x47\\x29\\x4e\\x52\\xea\\x5c\\x5a\\x72\\x2d\\xb9\\xd3\\x70\\xc7\\x97\\x8c\\x95\\xc7\\x50\\x8d\\xae\\xec\\xd5\\x8e\\x5a\\xda\\xb0\\xac\\xd4\\x0e\\xfb\\x17\\x8e\\x9e\\xda\\xe9\\xd2\\x4e\\xa9\\xb4\\x7b\\x9b\\x7a\\xe0\\xc9\\x31\\x8f\\x5a\\x04\\xe7\\xde\\x96\\x48\\x6c\\xf6\\xfc\\xc3\\x93\\xc3\\xe3\\xe9\\xc7\\x4d\\xae\\xed\\x55\\xb5\\x65\\x60\\xc0\\x16\\xd0\\xd1\\xb7\\x5d\\x85\\x1a\\xaf\\xbb\\xe5\\x68\\xa2\\x56\\xfe\\x72\\x5c\\xd4\\x3d\\x1f\\x73\\xf3\\x19\\xcb\\x56\\xf5\\x34\\x2a\\x52\\x79\\xb8\\x9d\\xb3\\xfa\\x5b\\xc9\\x2f\\x79\\x92\\xcc\\x1e\\xaf\\x9c\\x0e\\x52\\x56\\xc0\\xcc\\x1b\\x35\\xad\\xdb\\xe4\\xef\\xf0\\x46\\x93\\xdf\\x96\\xd0\\x19\\x29\\x36\\x19\\x69\\xa9\\xfb\\xb1\\xd9\\x81\\xc3\\x9d\\xb1\\x9a\\xec\\xb3\\x38\\x8a\\x34\\x77\\xfa\\x86\\x69\\x16\\x21\\xd6\\x2f\\x59\\x38\\xbb\\x5c\\xa2\\xda\\x5c\\x7b\\xef\\x9d\\x43\\x93\\x70\\x6e\\x19\\x93\\xb1\\x2e\\x6f\\xd1\\x4d\\xfd\\xec\\x27\\x93\\x1c\\xf6\\x7b\\x38\\x0d\\x9e\\xae\\x66\\x3c\\xa2\\x58\\xbe\\x79\\x2d\\xd8\\x24\\x78\\xd5\\xd8\\xbd\\x74\\x2d\\xbe\\xc4\\x6a\\x87\\x7b\\x18\\x4d\\xbe\\xe3\\x77\\x93\\x8c\\xab\\x3a\\x98\\x61\\xa1\\xb6\\x4f\\xbe\\x93\\x96\\x62\\x30\\x54\\xdf\\xe2\\x4f\\x5f\\x87\\xe0\\xed\\x68\\x66\\x90\\xb3\\xb4\\x12\\x89\\xfb\\x35\\x4a\\x86\\xbf\\xaf\\x5e\\x0c\\x5e\\x7a\\x7a\\xea\\xf0\\x05\\x70\\x6e\\x36\\xa7\\x2b\\x7b\\x7b\\x01\\x8b\\xad\\x61\\xdd\\xce\\x81\\xe0\\xb8\\x63\\xde\\xc9\\x0e\\x85\\xd0\\xb8\\x67\\xca\\x6f\\xbd\\x4e\\x57\\x61\\x4c\\x01\\xe6\\xe6\\xc5\\x9b\\x0e\\x00\\xbb\\x8e\\x17\\x70\\xb5\\xd6\\xa4\\xcc\\xdc\\x7a\\x38\\x7a\\x3a\\x3b\\x5b\\x0f\\xaa\\xa1\\xec\\xab\\x60\\x16\\x3d\\x24\\x56\\x9a\\x6d\\xea\\x06\\x33\\x6b\\x29\\x7a\\xa0\\x63\\x95\\xad\\x8b\\xea\\xf4\\x50\\x92\\xa5\\xda\\xa5\\x55\\x72\\xad\\xee\\x5e\\x60\\x1c\\x8a\\x85\\x50\\x7e\\xdc\\x3a\\xe0\\x4e\\x56\\x21\\xd6\\x15\\xe0\\x5b\\xb9\\x82\\x82\\x74\\xbb\\x25\\x77\\xc9\\xc6\\x2b\\x1e\\x8a\\xf7\\xd3\\x9c\\x0c\\x88\\xdb\\x33\\xdf\\x8a\\xb2\\x95\\xcc\\x47\\xf9\\xe9\\x08\\x4e\\xae\\xbe\\x5c\\x68\\xda\\xe8\\xe1\\x20\\xde\\xd9\\xa2\\xaf\\x3e\\x7c\\x80\\x94\\x7e\\x00\\xf4\\x68\\x9f\\xdd\\x78\\x4c\\x78\\x65\\x8a\\x8a\\xbf\\xa9\\xc4\\x22\\x3e\\x52\\xe3\\x12\\x37\\x94\\xf7\\x08\\x2e\\x3b\\x48\\xf6\\x8c\\x1f\\x42\\xbe\\x8b\\xc4\\x2a\\x1c\\x60\\x71\\x49\\xf4\\xc5\\x42\\x0e\\x6f\\x87\\xf2\\x6b\\x16\\xb7\\x6d\\xdb\\x3e\\x64\\xef\\x94\\xd9\\xf4\\x0c\\x16\\x3a\\xcd\\x4b\\x23\\xb7\\x5f\\xb2\\x32\\x2a\\xa8\\xad\\xfd\\xa5\\x15\\xd7\\xd7\\x37\\xa7\\x4a\\x4f\\x66\\xfc\\x00\\x50\\xe8\\x17\\xed\\x01\\xfb\\xb0\\xfd\\xa2\\x08\\x4d\\xc4\\x2a\\xe6\\xb9\\xbe\\x88\\x34\\x1d\\x6d\\x59\\xc5\\x36\\xd9\\xe5\\x0a\\x5d\\xc0\\x30\\xd5\\x66\\xbd\\xb5\\x38\\xd1\\x65\\x8b\\xaf\\x2e\\x04\\x3e\\x31\\x78\\x4f\\x0c\\x29\\xcf\\xb8\\xa1\\xfe\\x90\\xd2\\x8e\\x4d\\x3e\\x64\\x74\\x91\\xdf\\x8e\\x79\\x2e\\x92\\xb2\\xb5\\x57\\x8d\\xad\\x22\\x98\\x92\\x14\\x40\\x79\\x94\\xee\\xf8\\x73\\xfc\\x43\\x3c\\x9f\\xd4\\xb3\\xa8\\x45\\xfc\\xa0\\x4b\\x47\\xf1\\xe6\\x37\\x9e\\xd3\\x08\\xcb\\x56\\x1e\\x8a\\xa4\\x6f\\x11\\x17\\x18\\x36\\x5b\\x22\\xab\\xcb\\xf1\\x71\\xa4\\x24\\x86\\x43\\xe9\\x95\\xcb\\x8f\\x0d\\x06\\xd3\\x86\\xc2\\x79\\x23\\x8f\\xa8\\x5f\\x75\\xf7\\x4e\\xc8\\x05\\x08\\x8b\\x40\\xa0\\xd8\\x07\\xe6\\x96\\x8c\\xed\\x63\\x34\\x79\\x67\\x6c\\x5a\\xa4\\xf0\\xb3\\x1e\\x72\\x12\\x46\\x93\\x77\\x41\\x09\\x5f\\xc8\\x6a\\xc6\\x3d\\x92\\x0b\\xa7\\xa9\\x9a\\xd6\\x7d\\x2b\\x2d\\x60\\x28\\x78\\x26\\x34\\x35\\x43\\xc9\\x34\\x16\\xc2\\xf2\\x4e\\xc9\\x2a\\x90\\xd7\\xa2\\x6c\\x07\\xb0\\xac\\x18\\xe0\\x15\\xf9\\xc9\\xfd\\xd6\\x8f\\xc6\\x81\\x06\\x9c\\x15\\xaa\\x9b\\xd9\\x6f\\x64\\xc1\\x15\\x43\\x9f\\xdb\\x78\\x24\\xf7\\x1c\\x43\\xc5\\x1e\\xb2\\xbf\\xf5\\x76\\x15\\x65\\x0d\\xa4\\x74\\x91\\xe2\\x8d\\x97\\x3e\\x0e\\x7b\\x71\\xef\\x8e\\xc3\\x3f\\x36\\xaa\\xdc\\xa4\\x6d\\x84\\x5c\\x9a\\x86\\x3c\\xa9\\x3a\\x14\\x84\\xe3\\x08\\x72\\x7b\\x60\\xc2\\x36\\xcb\\xce\\xe3\\x7c\\x53\\xef\\x67\\x1b\\x09\\xd3\\xf6\\xee\\x96\\xc3\\xef\\x3d\\x6f\\x26\\xd6\\x52\\x96\\xb2\\x97\\x6b\\x9a\\x2f\\xa2\\xbc\\xff\\x35\\xc2\\xad\\x5a\\x4e\\x4d\\x89\\x25\\x76\\x63\\xbe\\x58\\x48\\x65\\xcd\\x63\\x9b\\xf6\\xaf\\xfc\\xc2\\x4e\\x46\\x40\\xdb\\xd0\\x79\\x7d\\xeb\\x4d\\x7a\\x6b\\x7c\\x7c\\x44\\xa6\\x2c\\xed\\x69\\xb9\\x87\\x66\\xab\\x8f\\x98\\x99\\xaf\\x2b\\x24\\x77\\xd8\\x1d\\x74\\x53\\xbe\\x5e\\x65\\xbf\\xd6\\x6e\\xd3\\xef\\xc3\\x2c\\x6b\\x99\\xca\\xff\\x16\\x8c\\xf0\\xcc\\x8d\\xb7\\x9d\\xca\\x63\\x79\\xa2\\x0a\\x7e\\x7f\\xcd\\x4b\\x0f\\x97\\xc8\\x00\\x67\\xb1\\x16\\x21\\xee\\xaa\\x8a\\xe4\\x5e\\x03\\x82\\x82\\xb0\\x6c\\x09\\x95\\x84\\x56\\xda\\x2c\\xe0\\xd3\\xc5\\x56\\x25\\x10\\x64\\xde\\x6a\\x46\\x31\\x77\\xe5\\xc8\\xbc\\x29\\x8d\\x65\\x4f\\x76\\xd4\\x4e\\x68\\x5d\\xda\\x18\\xce\\xfc\\x6a\\x3c\\x67\\x6d\\x4c\\xeb\\xcd\\x70\\x9f\\x4e\\x30\\x31\\xf6\\xa4\\x7a\\x26\\x57\\x19\\xbc\\x5e\\xd1\\xf0\\x5f\\xf1\\x2d\\xbb\\x50\\xbd\\x7a\\x27\\xce\\x22\\xf7\\x62\\xb0\\x72\\x5f\\xdb\\xdd\\xbb\\xb7\\x52\\x1a\\xa4\\x46\\x0e\\x8f\\x10\\x88\\xa0\\x90\\xd7\\x36\\x9c\\xe2\\xdf\\xe3\\x8f\\x9e\\x1e\\x4c\\x0e\\x5e\\xce\\xa5\\xe0\\x02\\x79\\xe7\\x54\\x29\\x1e\\x0b\\x8b\\xa8\\xf8\\x3b\\xbb\\x3f\\x4d\\xfc\\x51\\xb8\\x3a\\x5e\\x77\\xfd\\xa7\\x22\\x86\\x29\\xf5\\x29\\x5b\\x92\\x9b\\x23\\xd1\\xc1\\xcd\\x16\\xba\\x51\\xb2\\x97\\x13\\x9a\\x0a\\xef\\xa1\\x7f\\xbc\\xb1\\x62\\xd7\\xde\\x84\\xcc\\xe2\\x57\\x45\\x4e\\x75\\xf4\\x1d\\x3e\\xc9\\xd6\\xd4\\x64\\x4f\\xfd\\xbb\\xe1\\xb0\\x2c\\x13\\xcc\\x9f\\xc1\\x0b\\x3a\\x17\\x9a\\x9b\\x23\\x57\\x53\\xf7\\x40\\xbd\\x2b\\xe7\\xe0\\x95\\xc4\\x51\\x21\\x75\\xb3\\xb0\\xe1\\xe3\\xda\\x8d\\x62\\x3e\\xaf\\xc7\\x7a\\x2b\\x80\\x65\\x26\\x43\\x37\\xa9\\x25\\xa7\\x19\\x47\\x12\\x88\\x1f\\xc9\\x27\\x9d\\xca\\xb8\\x62\\x7e\\xab\\x2c\\x7e\\x5b\\xac\\xd6\\xa1\\x2f\\xd1\\xcd\\x46\\x27\\xd1\\xf5\\xf8\\xf0\\x5d\\x40\\x07\\xfa\\x85\\xbe\\xbc\\xec\\xa5\\xfd\\xb6\\xd7\\x46\\x66\\xc8\\x52\\xa1\\x9b\\xb1\\x34\\xb1\\xbc\\xea\\x9e\\xd3\\x2b\\xc2\\xf1\\x7d\\x55\\xa4\\x06\\x78\\x22\\x9e\\x70\\xfc\\x27\\x8a\\x8c\\x5f\\x9c\\x42\\xbe\\xb2\\xdd\\x53\\x94\\x71\\xb3\\x74\\x9d\\xb9\\x31\\x74\\x7c\\x6a\\x8a\\xc9\\xd4\\xc4\\xe4\\xe4\\x31\\x3d\\xfd\\x7e\\x66\\xaa\\xc9\\xca\\xe4\\xe4\\xf2\\x58\\x9b\\x91\\xb1\\x51\\x9b\\x56\\x47\\x49\\xa5\\xd8\\x42\\xc3\\x11\\x1e\\x33\\x81\\x82\\x91\\x81\\x81\\x61\\x4f\\xf4\\xc6\\xcf\\xa3\\x42\\xbb\\x18\\x07\\xc5\\xa0\\x45\\xb4\\x7a\\xd1\\x2c\\xe0\\x7c\\x8d\\x7e\\x5b\\x84\\x70\\x58\\x3a\\xf2\\x9c\\x0d\\xb0\\xec\\x94\\x69\\x04\\xb3\\x7e\\x15\\x15\\xb1\\x39\\x20\\x2c\\x9a\\xa9\\x2d\\x6f\\x53\\x9b\\xda\\xa9\\xd5\\xb6\\x79\\x15\\x84\\xaf\\xbc\\x09\\x5b\\xcf\\x35\\x45\\x43\\xd6\\xee\\x6c\\xb1\\xac\\x34\\xb5\\x32\\xd6\\xc9\\xfc\\x15\\x36\\x56\\x71\\xef\\x91\\x03\\x5e\\x8f\\x4a\\x33\\xea\\xf8\\xb6\\x13\\x95\\xa6\\x3c\\x7d\\x93\\x6f\\xf4\\x56\\xfd\\xae\\x49\\x86\\x96\\xc1\\x14\\xda\\x52\\x7c\\x78\\x6e\\xe1\\x11\\xa6\\x63\\x7c\\x47\\xeb\\x86\\x69\\x3b\\xf1\\xf9\\x98\\xee\\xc5\\xc8\\xdb\\x6f\\xeb\\x71\\xf4\\x3d\\x90\\x79\\x60\\x7d\\x76\\x7d\\x9e\\x7d\\xa6\\x8d\\x31\\x62\\xf3\\x73\\xe0\\x9d\\x41\\x6e\\x2c\\xc2\\xb0\\xc8\\x70\\x19\\xaa\\x93\\x6d\\xc8\\x88\\x66\\x7a\\x33\\xc5\\x95\\xec\\xce\\xfd\\x68\\xdd\\x92\\x61\\x6d\\x5c\\x6a\\xbc\\x3a\\x7d\\x93\\xc6\\xcd\\xe4\\xe9\\x11\\x26\\xf0\\xee\\xfd\\x52\\x7e\\x35\\xb9\\x3e\\xeb\\xf8\\x3e\\xd7\\xd9\\x28\\x66\\xa3\\x62\\x73\\xbd\\xb5\\xb5\\x95\\xd3\\x4e\\xe8\\x58\\x1a\\xca\\x96\\x94\\xe9\\xe8\\x1a\\xcc\\x8e\\x54\\xd8\\xae\\x3a\\x58\\x15\\x5e\\xfb\\x98\\x44\\x7b\\xec\\x69\\xa6\\xde\\x9f\\x05\\x61\\x31\\xa3\\xa0\\xf4\\xa5\\xe0\\xd1\\x1b\\x21\\xbb\\x3c\\xb1\\xc3\\x31\\xcd\\xd7\\x6a\\x4d\\xfb\\x51\\xab\\x91\\x17\\x20\\xa4\\x10\\xa3\\x1a\\xce\\xaf\\x38\\x8f\\xd2\\xba\\xac\\x15\\x54\\xb7\\xd5\\xb2\\x4c\\x7f\\x4f\\x7e\\x51\\x93\\x6a\\xaf\\x23\\x26\\xaa\\x81\\xd1\\xec\\xc6\\xf4\\x3c\\xb0\\xde\\x29\\xd9\\xcb\\x36\\x6c\\xbe\\xf8\\xb7\\x7c\\xfd\\x04\\x64\\x88\\x74\\x63\\x24\\xa5\\x28\\x3e\\xce\\xab\\x3c\\x69\\xac\\x5d\\x5e\\xb3\\x2d\\x21\\x01\\xba\\xb3\\x90\\x84\\x0b\\x53\\x18\\xad\\x02\\x92\\x2b\\xe2\\xc0\\xdc\\x4c\\x5a\\x49\\x71\\xd7\\xa1\\x0e\\xa7\\xa9\\xc8\\x7a\\xde\\x76\\xde\\xfb\\x30\\x41\\x0c\\x4a\\x63\\xd8\\x5c\\xdf\\x3a\\x95\\x4d\\xd3\\x4f\\x45\\xba\\xe5\\x6f\\xc4\\x44\\x44\\xf0\\xad\\x70\\x42\\xa8\\xa1\\xd2\\x09\\x73\\x08\\x8e\\x3e\\x46\\x52\\xa2\\x56\\x9e\\xfc\\x29\\x42\\x74\\x2a\\xf5\\xf9\\xd2\\xc5\\x96\\xd2\\x43\\xab\\xd9\\xb3\\x51\\xb5\\x87\\x8c\\x15\\x18\\x88\\xb4\\xe4\\xca\\xc4\\x6a\\x86\\x02\\x69\\x4b\\xdd\\x3a\\x92\\xb1\\xe4\\xa0\\x13\\x8c\\xa5\\x7b\\xe9\\x6d\\x9d\\x84\\x6a\\xf8\\x41\\x9e\\x70\\x22\\x02\\x91\\x45\\xa7\\xd2\\x04\\xb4\\xb5\\x79\\xbb\\x51\\xf6\\x48\\xf8\\xa7\\x93\\x48\\xef\\x5c\\x66\\x25\\xad\\xc8\\xe2\\x1a\\xc4\\x9d\\x54\\xa9\\x6e\\xef\\x1a\\x99\\x7e\\xbb\\xdd\\x95\\xd3\\x9f\\x99\\x5f\\x20\\x30\\xe4\\x76\\x95\\xe1\\x26\\xa5\\x6c\\x07\\x40\\x86\\x13\\x6f\\x00\\x32\\xbc\\x52\\xb2\\x4b\\x24\\xe7\\x2e\\x25\\xe9\\x23\\xae\\xda\\x5d\\x36\\xc1\\xe2\\x87\\x62\\x59\\xcd\\xa2\\x9c\\xc3\\x68\\xd3\\xeb\\x9b\\x80\\x46\\xe2\\xc0\\xd6\\x42\\x45\\x8b\\xac\\x2f\\xb2\\xb5\\x6a\\x04\\x15\\x89\\x8b\\x8b\\xe4\\xbd\\x04\\xa4\\x24\\x5e\\xe1\\x82\\xe9\\xd0\\x43\\x94\\x9c\\x9a\\x09\\x0f\\x27\\x7b\\xc6\\x45\\x09\\x77\\x01\\x71\\x55\\xde\\x8b\\x57\\x90\\xb6\\x99\\x45\\x25\\x87\\x8c\\x28\\x3d\\xb7\\x25\\xcc\\x42\\x84\\x46\\x4d\\x27\\x31\\xcb\\x9b\\x50\\x92\\x79\\x82\\x22\\x4d\\x46\\xf4\\xd5\\xa6\\x12\\x32\\x8e\\x45\\x25\\xa8\\xbe\\x8e\\xbc\\x76\\xd3\\xec\\x72\\x9a\\x79\\x07\\xa3\\x8c\\x6b\\xd1\\xf5\\x3c\\x76\\xa9\\xd6\\x19\\xe9\\x4f\\x2d\\x4a\\x96\\x43\\x24\\xf2\\x81\\xe5\\x72\\xa4\\x9c\\xaa\\xb6\\x32\\xf1\\x1f\\xdd\\xc0\\x00\\xea\\x56\\x32\\xf9\\x8c\\x60\\x81\\x04\\x01\\xcc\\x7b\\x5d\\x0e\\x75\\x8a\\xde\\x41\\xdb\\x0c\\x6e\\x39\\xbb\\x19\\xff\\x3b\\xb6\\xea\\xfd\\x26\\x1c\\xda\\xfb\\x2c\\x5c\\x8d\\x71\\x72\\xe5\\x5a\\x92\\x6a\\xb0\\x5d\\xf6\\x60\\xe7\\x25\\x73\\xf2\\x52\\xa9\\x3b\\xf3\\x26\\xa1\\x06\\x29\\x17\\x03\\xbf\\x98\\x84\\xb4\\xfc\\x4b\\x50\\x37\\x70\\x9f\\xa1\\xfe\\x87\\x6b\\x04\\x98\\xfb\\x80\\x8d\\x56\\xda\\x97\\xb0\\xb4\\xd6\\xc4\\x6b\\xa6\\x95\\x57\\xdb\\xb7\\xeb\\x30\\xda\\x2c\\xa8\\xdd\\x8b\\xe2\\xed\\xbf\\xdd\\x1b\\x5d\\x51\\x5d\\x37\\xa9\\x37\\xf8\\xb2\\x42\\x3a\\x87\\x79\\x48\\x4a\\x58\\x1a\\x6a\\x4e\\x9f\\x29\\x06\\xc6\\x1a\\x27\\xd4\\x47\\x88\\xbb\\x8f\\xd3\\x99\\x33\\xbf\\xee\\x8f\\x21\\x8f\\xbe\\x31\\x36\\x7c\\x33\\x3e\\xae\\x5c\\x3e\\xe6\\x3a\\x8e\\x17\\x8d\\x4d\\x64\\x0d\\xf4\\xb7\\x8f\\xb5\\x47\\xbc\\xf7\\x4e\\x79\\x9b\\x10\\x31\\x44\\x1b\\x28\\x8f\\x34\\x0c\\x16\\xf5\\x2b\\xd3\\x97\\x63\\x42\\x85\\x77\\xbe\\xf8\\x48\\xd9\\x8a\\x8f\\x14\\x5c\\xd1\\xe8\\xdb\\xe0\\xb2\\xed\\xce\\x18\\xc2\\x85\\x70\\x8f\\xb5\\xfb\\xe5\\xbc\\x16\\xfe\\x64\\x98\\x11\\xe1\\x6a\\x58\\x9f\\x87\\x02\\x5b\\x81\\xa9\\xb0\\xe9\\x08\\x8d\\x5d\\xeb\\x2b\\xd8\\xd6\\x34\\xac\\xae\\xe9\\xf2\\x8f\\xf4\\x28\\x66\\xc0\\xd2\\xf9\\xcd\\xe6\\x9e\\x1c\\x49\\x33\\x45\\x96\\xe7\\x34\\x1e\\x31\\x3a\\xa5\\xb5\\xed\\x7d\\x82\\x5d\\x7f\\x65\\x0f\\x95\\xdd\\x05\\x77\\x32\\x5c\\x8f\\xbf\\xdf\\xc5\\x78\\xe2\\x67\\x8f\\xa0\\xdd\\x11\\xb8\\x5d\\xbd\\x1b\\xa0\\x84\\x85\\x47\\xde\\x18\\x97\\x59\\x77\\x15\\xa5\\x16\\xe2\\x1c\\x2d\\xd9\\xd3\\xc5\\xd9\\xa0\\x99\\x9f\\xe7\\x57\\x08\\x67\\xd5\\x25\\xe0\\xa4\\x05\\x95\\xb9\\x2f\\x0c\\xc5\\x78\\xbd\\xc0\\xfa\\x6b\\x27\\xc3\\x5b\\xd7\\xa9\\xe1\\x56\\x7c\\x3a\\x38\\x45\\x34\\x3a\\x32\\x92\\xe5\\xfd\\xed\\x52\\xa2\\x18\\xe8\\x89\\x79\\x07\\xa2\\xe8\\x3f\\x61\\xb3\\xd3\\x0b\\xa3\\x7b\\x63\\x1b\\x92\\x65\\xfd\\x3f\\x96\\x0f\\xe8\\x4b\\x46\\xe4\\xfd\\x9b\\xa4\\xfa\\x1f\\x1f\\xa2\\xc3\\x7c\\x43\\x9e\\x6e\\xfe\\x52\\x1c\\x70\\x24\\x25\\x55\\x5c\\x77\\xf4\\x13\\x25\\x59\\xc9\\x64\\x1a\\xe6\\xca\\x29\\x5a\\x38\\xd1\\x8c\\xb3\\x41\\x57\\x47\\x17\\xcc\\x0c\\x26\\xc7\\x77\\xe6\\xa3\\xcb\\x13\\x9c\\xc3\\x96\\x82\\x2c\\x95\\xaa\\xca\\x9a\\xe8\\xa7\\x19\\xcb\\x87\\xd1\\x19\\x31\\x1c\\xa6\\xdc\\x5d\\x82\\x93\\x0d\\x19\\xae\\xb5\\x9d\\x82\\x90\\x15\\xb9\\x07\\xd7\\x26\\xda\\x0b\\xf3\\xc6\\x67\\xc7\\x6f\\xfa\\xc1\\x05\\xd9\\xf6\\x96\\xac\\x24\\xa7\\xc3\\xec\\xd6\\x28\\xcc\\x3b\\x9b\\xb0\\x7c\\x91\\x95\\x4e\\x4d\\x2c\\x31\\xee\\xb7\\x3a\\x22\\x72\\x97\\xad\\xdd\\x8d\\x59\\x94\\xe9\\x23\\x3e\\xcc\\x7f\\x39\\x05\\x8d\\x8f\\x89\\x8b\\x33\\xcd\\x60\\x5c\\x8c\\x9b\\x57\\x44\\x6d\\x48\\xd6\\x81\\x81\\x5c\\xa0\\xac\\x61\\x39\\xf0\\x1c\\x53\\x2a\\xc6\\x85\\x97\\x49\\xc1\\xf7\\x2d\\xd2\\x6e\\xc3\\xc3\\x37\\xe8\\x3a\\x41\\x71\\x2d\\x9b\\xbe\\xae\\x22\\x71\\xfa\\xaf\\x00\\x17\\x46\\xe9\\x73\\x60\\x44\\x01\\x31\\xd5\\x53\\xa9\\xf5\\xf0\\xf8\\x19\\xd3\\xa1\\x91\\x1e\\xa8\\x74\\x05\\xd1\\x4a\\xc7\\xaa\\x4f\\x54\\x59\\xba\\xb0\\x92\\x66\\x54\\x4e\\x83\\x9c\\xe8\\x9e\\x68\\x5a\\xcc\\x11\\x34\\x31\\x4c\\x17\\x7f\\x9f\\x0b\\x75\\xa4\\xd9\\x14\\xf1\\x2e\\x18\\x3e\\x01\\x73\\x87\\x84\\x68\\x54\\xef\\xe3\\x72\\x7e\\xae\\x07\\x89\\xa9\\x67\\x9b\\x47\\xe3\\x5e\\x2f\\x2d\\x8c\\x1b\\x7a\\xa3\\x3f\\xc3\\x51\\x27\\x5b\\x3c\\x41\\x58\\xe0\\x68\\x40\\x12\\x0f\\xda\\xaa\\x70\\xb6\\x60\\x30\\xe1\\x59\\x46\\x95\\x89\\x36\\x9d\\x91\\x89\\x28\\xc5\\xfe\\xe5\\x74\\xa2\\x98\\x70\\xc0\\x5d\\x2e\\x44\\xbb\\xaf\\xb6\\x50\\x66\\x3c\\x1e\\x2a\\x8f\\xe5\\xf3\\xa8\\x54\\xa1\\xa0\\xec\\x11\\xec\\xa1\\x97\\xdd\\x02\\xe5\\x0e\\xd2\\xab\\x4a\\x9f\\xbf\\x86\\xd8\\xb2\\x1d\\xd1\\x41\\x7a\\x84\\x0c\\x58\\xf2\\x02\\x67\\x0e\\xf9\\x4a\\x8e\\x62\\x47\\x34\\xfd\\x0b\\xfd\\x0d\\xba\\x6a\\xc4\\xb3\\xa0\\x39\\x77\\x40\\x19\\x34\\x32\\x58\\x50\\x3b\\xc5\\x27\\x7e\\x7f\\xa0\\x9f\\x9d\\x94\\xc4\\x3c\\x7b\\x0b\\x9d\\xb4\\x61\\xc2\\x50\\xc0\\xf8\\xc3\\xa5\\xac\\x28\\xac\\xdd\\xf3\\xce\\x1c\\x31\\x4f\\x75\\x04\\xc3\\x5a\\xa4\\x9d\\xb8\\xc2\\xff\\x8f\\xdd\\x51\\xfb\\x3a\\xf2\\xce\\xf9\\xc5\\x9f\\x20\\xfb\\xc3\\x4d\\xfe\\xe8\\xf9\\xa8\\xc2\\xa9\\x80\\x9a\\x40\\x36\\xd5\\x40\\x74\\x56\\x44\\x45\\x1e\\x89\\x1b\\x9d\\x0e\\x8f\\x20\\x53\\x6d\\x93\\xff\\xae\\xe9\\x35\\x55\\xcf\\x29\\x9f\\xa2\\x39\\x52\\xcf\\xd9\\x2a\\x52\\xd0\\x9e\\x83\\x36\\x04\\xea\\x48\\xa6\\xd5\\x3e\\x4d\\x22\\x88\\x20\\x15\\xc9\\xb3\\x70\\xe7\\xdc\\x39\\xfa\\x89\\xa3\\x9e\\x5d\\x07\\x5b\\xb8\\xb4\\xd5\\xe3\\xf7\\x1d\\x18\\xf9\\xf8\\x6a\\xc4\\x41\\x9d\\x0a\\x44\\x07\\xb8\\xc7\\x9a\\x97\\xc0\\x55\\x90\\x55\\x37\\x36\\xeb\\x2a\\xca\\x62\\x74\\x0d\\xa2\\xf5\\x40\\x59\\x91\\xd5\\x71\\x6a\\x27\\x3f\\xf6\\x89\\xfd\\x91\\xbb\\xd9\\x4c\\x7a\\x23\\x97\\xa6\\x58\\xf4\\xcc\\xbb\\xe6\\x91\\x68\\x27\\x21\\xf6\\xd8\\xf2\\x9d\\xfc\\x67\\xcd\\x12\\x02\\xf8\\x40\\xee\\x56\\xe1\\x96\\xe7\\xf6\\x18\\x86\\x61\\x7a\\xaa\\x8a\\x4e\\xf7\\x70\\x8e\\x4e\\xf5\\xf6\\x35\\x7d\\x9e\\x4e\\xb2\\x16\\xf7\\x00\\x6f\\x65\\xea\\x26\\x83\\xfb\\x5f\\x53\\xfc\\xed\\xe4\\x0f\\xe1\\xa7\\x73\\x4d\\xbc\\x26\\x95\\x10\\xaf\\x15\\xde\\xc6\\x08\\xda\\xc9\\xcd\\x14\\x77\\xa2\\x27\\xa7\\xec\\xbb\\xff\\x17\\xa2\\xbe\\xc9\\x48\\xca\\xbb\\xf7\\x23\\x29\\xc5\\xcb\\xbe\\xed\\xfb\\xeb\\x23\\xef\\x87\\xb2\\x6f\\x40\\x6f\\x52\\x6f\\x57\\x6f\\x4f\\x6f\\x75\\x6f\\xad\\x6f\\x93\\x6f\\x87\\x6f\\xb9\\xaf\\x77\\x98\\xaf\\x5b\\x9f\\xef\\xc8\\xaf\\x66\\x98\\xdf\\xdb\\xd2\\x6f\\x4f\\x5c\\x31\\xcf\\xd3\\xfa\\xe7\\xe2\\x48\\x82\\x12\\x96\\x62\\x54\\x13\\xf7\\xfc\\x81\\x76\\xb1\\xcf\\x93\\xcb\\xcd\\xbe\\xc1\\xbc\\x99\\x5e\\xcf\\x35\\x0e\\x0c\\x76\\x76\\xc9\\x75\\xf0\\xc3\\x79\\x56\\x2b\\x19\\x5c\\x05\\xc2\\x86\\x3d\\x17\\x64\\xf7\\x45\\xa6\\x93\\x97\\x6f\\x47\\x29\\x2a\\xb7\\x5e\\xb7\\x77\\x6a\\xbe\\xa8\\xc6\\xda\\xa3\\x21\\xa1\\x9b\\x4d\\xb9\\x99\\x6d\\x17\\x4c\\xc7\\xf5\\x59\\xcd\\x2a\\xad\\x5c\\xb4\\xd2\\x5d\\x77\\xc3\\x06\\xbb\\x99\\x1a\\xc6\\x3a\\xbd\\x27\\x2e\\xa5\\x99\\x8d\\xa7\\x25\\xcf\\xb5\\x49\\xa1\\xe5\\x14\\x02\\x73\\x07\\x0d\\x7d\\x68\\x6d\\x91\\x36\\x99\\x74\\x61\\x59\\x09\\x77\\xfd\\xf3\\xd1\\x27\\xd8\\x49\\xa4\\x53\\xa7\\xbb\\xb1\\xe0\\x83\\xd4\\xd2\\x31\\xb2\\x79\\x91\\xea\\x19\\xaf\\x4e\\x61\\xbc\\x34\\x16\\xb1\\x26\\xae\\xb3\\xb6\\x70\\x68\\xfb\\x3c\\xde\\xd0\\x85\\x5d\\x53\\xe6\\x12\\x87\\xe5\\xda\\x60\\x4c\\xf1\\xbd\\x6c\\xe5\\x34\\x11\\x11\\x89\\xac\\xa8\\xf7\\x8f\\xe7\\xe8\\x64\\x41\\xca\\x1e\\xc4\\x30\\x71\\x47\\x65\\x1e\\x75\\xb3\\xb4\\xa2\\x4a\\x35\\xe9\\x96\\x76\\xe8\\x3b\\x62\\x33\\x8b\\x45\\x71\\x23\\xcb\\xac\\xf2\\xd7\\xa0\\xdb\\x65\\x78\\xbd\\xc3\\xf2\\xc7\\x0d\\xaf\\x6c\\x2c\\xe1\\xb3\\xb4\\x53\\x25\\x78\\x6d\\xcc\\xb1\\xfc\\xb5\\x94\\x64\\x4e\\x90\\x85\\x29\\xcf\\xa9\\xb1\\xdc\\xf5\\x54\\xe5\\xbe\\x54\\x85\\xe1\\x8c\\xd0\\x49\\xbf\\x64\\x61\\x81\\x21\\x9b\\x4e\\x08\\x99\\x48\\xc0\\xaf\\xf0\\x70\\x8e\\xcc\\xf3\\x5f\\xc2\\x39\\x16\\xe9\\xa5\\xf3\\xa7\\xb6\\x1e\\x6e\\x60\\x9a\\x4f\\x2f\\xe7\\x8e\\xde\\xed\\x4c\\x48\\xf4\\x92\\x4c\\xb9\\x98\\x57\\x61\\xb2\\xac\\xb8\\xb5\\x36\\xa8\\x63\\xa7\\x5b\\x32\\x13\\x01\\xd9\\x7c\\xec\\xdd\\x20\\x72\\xdd\\x81\\xc6\\x99\\x31\\xeb\\x66\\x2e\\x58\\xe3\\xce\\x9b\\x12\\x85\\xf1\\x1b\\x22\\x59\\xe9\\x25\\xb8\\xd1\\x4b\\xa4\\xec\\x4a\\x7f\\xca\\xc5\\x46\\x89\\x33\\xd4\\x55\\x32\\x09\\x01\\xa6\\x71\\x74\\xd9\\xb2\\xb2\\x95\\x5b\\x79\\x9b\\x54\\xce\\x0a\\xeb\\xe5\\xb9\\x61\\x56\\x8b\\xdd\\x90\\x39\\x01\\x8f\\x49\\x6a\\xea\\x56\\x8c\\x6f\\x38\\xff\\xcb\\xfd\\xb0\\xc6\\x60\\x77\\x06\\x60\\xce\\x43\\xdc\\x48\\xb4\\x44\\x15\\xaf\\x9a\\x89\\xd3\\x94\\xed\\x7f\\x58\\xc7\\x4c\\x9f\\x63\\xe8\\xa8\\xee\\x99\\x53\\xfe\\xac\\x9f\\x84\\x62\\xb5\\x8a\\xcf\\x5b\\xd9\\x7f\\x8b\\x66\\x6a\\x37\\xde\\x4f\\x38\\xaf\\x49\\x2f\\x5d\\xac\\x51\\x39\\x06\\x63\\x30\\x72\\x4f\\xee\\x23\\x58\\x79\\xb1\\x88\\x35\\x4f\\x2f\\x72\\x4d\\x87\\x99\\x6d\\x70\\x61\\xb2\\x31\\x56\\xdb\\x3e\\xb2\\xd7\\x57\\xcb\\xcf\\xc3\\x5f\\xe7\\xbd\\x22\\x13\\xb2\\x73\\x27\\x9f\\x29\\x0b\\x98\\x6c\\xcb\\x85\\x0e\\x0f\\x79\\x6a\\xa4\\x8d\\x7a\\xf8\\xe9\\xe5\\x15\\x63\\x1c\\x7e\\xa7\\xed\\x2b\\x24\\xcd\\x6b\\x1a\\xa3\\xcb\\xa9\\x42\\x03\\x7c\\x08\\x11\\x8c\\xf7\\xc8\\xc9\\xce\\x7e\\x86\\xdb\\xaf\\x8c\\x3d\\x44\\x24\\x93\\x43\\x9d\\x69\\x2c\\x0b\\xe2\\x52\\x8c\\x9f\\x82\\x34\\x24\\x06\\xd0\\x50\\x21\\x7f\\x3d\\xdf\\xae\\x17\\xd6\\xae\\xc0\\x7b\\xbd\\x75\\xcd\\xb5\\x8f\\x8e\\x69\\x3f\\x69\\xc2\\xde\\x81\\xdc\\x59\\x0d\\xa3\\x72\\x16\\xa7\\xd6\\xd6\\x22\\x1f\\x30\\x1e\\x6a\\xbc\\xf6\\x39\\x9b\\x88\\xe6\\xb0\\xba\\x72\\x53\\x93\\x12\\xc0\\x84\\x02\\xc2\\x7b\\x9a\\x91\\x1d\\x1a\\x7c\\x9a\\x59\\xa7\\x91\\x8f\\x88\\x48\\x28\\x98\\x44\\x5b\\xdf\\x95\\x2e\\x3e\\x95\\x7d\\x56\\xdd\\x43\\xde\\x04\\x3f\\x9a\\x47\\xd9\\x3c\\x80\\xd4\\x37\\x7b\\x24\\x64\\x09\\xb0\\x24\\x81\\x3c\\x30\\xd7\\xd3\\x58\\xb8\\xa0\\x31\\x2e\\x45\\xe1\\x7e\\x63\\xd8\\x26\\xbc\\xa2\\xa5\\x9a\\x4c\\x9d\\x18\\x19\\xe6\\x79\\xe6\\x3d\\xc6\\x84\\xd2\\xf0\\xb2\\x08\\xad\\x8d\\xb2\\x9f\\xd8\\x18\\x3a\\x42\\x48\\xb8\\xe1\\x65\\x4d\\x16\\x67\\x63\\x07\\x16\\x99\\x77\\x00\\xb2\\x26\\x9b\\x42\\x32\\x5c\\xd5\\x9b\\x07\\x6a\\x5a\\xe1\\x9f\\x77\\x68\\x59\\xa4\\x67\\x1f\\xb8\\xfb\\x13\\x4a\\xd8\\xf2\\x65\\x38\\x86\\x37\\xb3\\xa2\\xaa\\xa5\\x2d\\x2b\\xbc\\x0d\\xa4\\x14\\xf2\\x3c\\xea\\x5e\\x17\\x06\\x9a\\x01\\xa7\\x66\\xde\\x8c\\x2f\\xfc\\x66\\x5c\\x0a\\x2a\\xe3\\x8d\\x08\\x62\\xde\\x47\\xe0\\xf3\\x5f\\x46\\xe4\\xea\\x18\\xc2\\x9c\\x2e\\x0b\\x9e\\x5d\\x88\\x0c\\x2d\\x5e\\xff\\xac\\x22\\x90\\xec\\x48\\x75\\x58\\x40\\x1b\\x93\\xd6\\xd7\\xb0\\x2d\\x68\\x98\\x5f\\xd3\\x7c\\xd3\\x6f\\xcd\\xfd\\x48\\xe6\\x3f\\x9a\\x48\\xb3\\xc5\\x54\\x17\\xb8\\x99\\x24\\xf0\\x1c\\x52\\x42\\xdd\\x20\\x75\\xe2\\x59\\x8f\\xb7\\xdf\\xcd\\x78\\x32\\x6b\\x4f\\x76\\x1f\\x08\\xb9\\x26\\x6c\\x1f\\x4e\\x71\\xdd\\x97\\xe9\\x42\\x9a\\xe4\\xd0\\x85\\x35\\xd6\\x35\\x77\\x33\\x2f\\xaf\\xa5\\x7e\\x91\\x2d\\xc2\\x66\\x85\\x4d\\x51\\x1d\\xfc\\x6a\\xf8\\xb8\\x75\\xca\\x34\\xa1\\x6f\\x10\\x9c\\x46\\x71\\x97\\x66\\x32\\x92\\xdf\\xc5\\x5f\\x39\\x1b\\x3a\\x25\\xf4\\xba\\x55\\xb1\\x22\\xf4\\x2d\\x2e\\x2c\\x99\\x09\\xbf\\x34\\x99\\x0e\\xec\\x39\\x7b\\xdc\\x9e\\x68\\x99\\x46\\xb2\\x6a\\x39\\x57\\xbb\\xe5\\x1c\\x47\\xae\\x14\\x62\\x55\\x08\\x58\\xe3\\x6c\\x15\\x9c\\x6e\\xe5\\x3c\\x8f\\x66\\x3f\\x5c\\x47\\x82\\x91\\x2b\\x62\\x9e\\x85\\x9b\\x33\\x59\\xf9\\x88\\x51\\xb4\\x11\\xa6\\x02\\x3f\\xfe\\xfe\\x04\\x4b\\x84\\x22\\x80\\xbd\\x9b\\x0c\\x9b\\x84\\xe1\\x18\\x1b\\xa6\\x1d\\x3e\\x15\\x87\\xe0\\xc9\\xbb\\xac\\xe4\\x43\\x88\\x2d\\x93\\xa8\\xc4\\x69\\x44\\xc3\\x95\\x89\\xfa\\x88\\x3d\\x17\\x01\\x71\\x45\\xe9\\x4d\\x7d\\x6b\\x28\\x5f\\x20\\x9b\\x9a\\x53\\xff\\x0d\\x0f\\x7f\\x34\\x24\\x5b\\x47\\x1b\\xc8\\x3a\\xc3\\xf9\\x95\\xa1\\x5a\\x67\\x93\\x30\\xf5\\x1e\\x34\\x92\\x8b\\x78\\xdd\\xec\\xdf\\xd6\\xd1\\xb3\\x77\\x11\\xd0\\x8f\\x37\\xfb\\x67\\x6d\\xe6\\x8d\\x8c\\x54\\x5d\\xdd\\x44\\x90\\x77\\x16\\x55\\x44\\x6f\\x96\\x11\\x29\\x90\\x31\\xa3\\xa6\\x2d\\x11\\xba\\xec\\x59\\xea\\x80\\x18\\xdb\\xaf\\xca\\xa5\\x3f\\x69\\x72\\x69\\x53\\x69\\x3c\\x7f\\x3e\\x1d\\x50\\x1f\\xad\\x49\\x02\\xd1\\xc6\\xb9\\x2f\\x99\\xc2\\xd7\\x3a\\xc7\\xa7\\x83\\xde\\xe7\\x32\\xc6\\x79\\xfd\\xd0\\x06\\xe9\\x1e\\x59\\x80\\x60\\x84\\x91\\x4b\\xe2\\xd2\\x2a\\x3c\\xf5\\x10\\x31\\x46\\x6c\\x3e\\x3c\\xf9\\xaf\\x14\\x39\\x15\\x86\\x90\\x43\\xec\\xe7\\x56\\x61\\xbb\\x38\\xd3\\x16\\x81\\xd3\\x5b\\xc8\\xbc\\x19\\xb3\\x21\\xdc\\x99\\x3b\\xc6\\xca\\x20\\x17\\x4f\\x80\\x65\\x47\\xd5\\xd1\\xef\\x69\\x71\\x4a\\x4c\\x47\\xe7\\x62\\x00\\x43\\x2c\\x92\\x39\\x4e\\x7a\\xea\\x53\\xde\\x88\\x4a\\x59\\x85\\x9f\\xe4\\x40\\x42\\x07\\x32\\xe7\\xe6\\x35\\xf0\\xae\\xe8\\xf5\\xef\\xcb\\xe0\\xa7\\x89\\xbb\\x63\\x59\\xfb\\x7a\\x97\\x94\\xb3\\x46\\xce\\x4b\\x69\\xa5\\x79\\x12\\xb7\\x4e\\xc0\\xe9\\x43\\xb9\\x17\\x5a\\xef\\xe5\\xb3\\x9b\\x63\\xd7\\x76\\x37\\x74\\xb7\\xe8\\x00\\xdb\\x93\\x9c\\xc9\\xf0\\x54\\x4e\\xbe\\xf6\\xb7\\xdc\\xc9\\xb7\\x15\\x61\\x14\\xb7\\x6d\\x26\\x37\\xbd\\xa7\\xe5\\x4b\\xf1\\x5c\\x01\\x2e\\xd4\\xe1\\xf4\\xe6\\x89\\x0c\\x84\\x23\\x64\\xce\\xa4\\x77\\x86\\x6d\\x90\\xfb\\x1f\\xac\\x93\\xd7\\xd9\\xdc\\xcc\\x5f\\x6b\\x1f\\xa6\\xdf\\x76\\xdd\\x57\\xb4\\xc7\\xd5\\x27\\xd7\\x67\\xd9\\xbb\\xda\\xa7\\xdb\\xc7\\xdf\\x7d\\x5f\\x6d\\x33\\x64\\x54\\xca\\x2a\\x9d\\xb5\\x7a\\x3b\\xab\\xfd\\x87\\x01\\xed\\xe0\\xf9\\x81\\xd1\\x61\\x01\\xfb\\x22\\xb6\\xea\\x36\\x1b\\xfb\\xd1\\x83\\xfd\\xe1\\xc6\\xc8\\x55\\xb4\\x5b\\xca\\x18\\xd4\\x5d\\x5a\\xf9\\xf2\\xda\\x26\\x31\\xf3\\xf7\\x85\\x91\\x62\\x6d\\x49\\xd1\\x94\\x19\\x1a\\x6d\\xcd\\x8e\\xca\\x27\\xad\\xf3\\xe5\\x85\\x53\\x7e\\x96\\x33\\x68\\x54\\x88\\x92\\x3f\\x95\\x60\\x99\\x60\\x9c\\xe0\\xe0\\xe0\\xa4\\x60\\xa7\\xe0\\xaa\\xe0\\xae\\x60\\xf0\\x7f\\x66\\xff\\xf8\\x42\\xef\\xc0\\xf0\\xc0\\xf6\\xd0\\x9a\\x4e\\x2e\\x3f\\xf0\\xb9\\x17\\x75\\x89\\xb9\\x2b\\xb8\\xa7\\x00\\xa1\\x22\\xdb\\x28\\x7b\\xaf\\x79\\x98\\x3e\\x45\\x27\\xbb\\x1b\\x8f\\x57\\xda\\x52\\x9f\\x4f\\x62\\x2a\\x55\\x29\\xce\\x8c\\x28\\xff\\x44\\xf0\\x57\\xa2\\x5d\\x6c\\x5b\\x52\\x67\\xa5\\x44\\xd3\\xb1\\x2e\\xbb\\xd8\\x14\\x40\\x73\\x33\\xbc\\xc4\\x9e\\x49\\xaa\\x07\\x49\\x37\\x2d\\xa9\\xa2\\xaa\\x6b\\x53\\x7f\\xc6\\xf4\\x03\\x6a\\x53\\x6f\\xf4\\x99\\xf1\\x23\\x43\\xe7\\xdf\\xda\\xf2\\x90\\xdd\\xb7\\x7f\\x5d\\xe1\\xb5\\x41\\xbe\\x61\\xbd\\xb3\\x55\\x12\\x75\\xc0\\x71\\x68\\x4a\\x4b\\x0f\\x8e\\x2c\\xc3\\x74\\x5d\\xa8\\xb8\\xa0\\x70\\x42\\x76\\xde\\x5f\\xc5\\x8e\\xaa\\x6b\\x63\\x76\\x96\\x28\\x28\\xee\\x27\\xf1\\x19\\x5c\\x0e\\x60\\x30\\x03\\x73\\xde\\xaf\\x9e\\xf4\\xae\\x28\\x0f\\x9d\\xe7\\x16\\xe3\\x45\\x8e\\xc9\\xe0\\xb5\\x47\\x3a\\x85\\x08\\xd7\\xa8\\xb1\\x30\\x70\\xea\\xec\\x03\\x97\\x2c\\xc1\\xdb\\xc6\\x5a\\x52\\x60\\x5c\\xd4\\x33\\x17\\x98\\xb6\\x37\\x8c\\xb6\\xdc\\x35\\xa1\\xd9\\xfa\\xad\\xeb\\x59\\x64\\x0a\\xcf\\xc4\\x6f\\x97\\xd4\\xb6\\x46\\xb0\\xf2\\x3a\\x0f\\x29\\x32\\x21\\x63\\x77\\x2c\\xce\\x5b\\x22\\xca\\xae\\x64\\xdf\\xa3\\x68\\x45\\x5e\\xd5\\x28\\xa5\\xba\\xa3\\xff\\x5a\\x40\\x67\\xbf\\x0c\\xab\\x9f\\x16\\x73\\xd8\\x64\\xcc\\x9c\\xdb\\xf7\\xf2\\xb7\\x26\\x56\\xe7\\x21\\x67\\x90\\x46\\x43\\x46\\xbf\\x3f\\x84\\xec\\x11\\x9b\\x13\\x32\\x21\\xb2\\xee\\xf9\\x4d\\x0b\\xc9\\x3a\\x5e\\xbb\\x9a\\x4d\\x7d\\x7e\\x96\\xaf\\x2a\\xf4\\xe2\\x14\\x1a\\x5b\\x48\\x77\\x81\\x60\\xa2\\xc7\\xb3\\x97\\x76\\x13\\xd7\\xf8\\x06\\xcf\\x2f\\xbb\\x0b\\x47\\xc0\\xab\\x41\\x6b\\x9f\\x2b\\x26\\xf9\\xc8\\x86\\xaf\\x8a\\xaa\\x8a\\xca\\x9c\\xa3\\x76\\xe9\\xc1\\x7f\\x83\\x6a\\x9b\\xff\\x08\\x66\\x3c\\xae\\xf0\\x71\\x33\\xeb\\x4c\\xe0\\x8d\\x6f\\x46\\xb4\\xb0\\x58\\x3d\\xc7\\x95\\x68\\x2c\\xcd\\x44\\xc6\\x8c\\x08\\x5a\\xf7\\x90\\x1e\\x81\\x2d\\x59\\x31\\x6d\\x4f\\x1b\\xd4\\xb7\\xa3\\x76\\xb1\\x58\\x94\\xb3\\x8b\\xf7\\xa8\\x50\\x1d\\x9e\\xcf\\x96\\x15\\xaf\\x92\\x3a\\x23\\x39\\xe5\\x7e\\xb8\\x0f\\x2e\\xb1\\xa9\\x94\\x46\\x7d\\xe1\\x7d\\x79\\x2e\\x25\\xe4\\xac\\x08\\x21\\xcf\\x88\\x18\\xd7\\xb1\\x5a\\x0c\\x40\\x13\\x5a\\x18\\x52\\xf4\\xb2\\xf9\\xbc\\xe0\\xc8\\x4b\\xee\\xc0\\x09\\x50\\xdf\\x4f\\x12\\x7f\\x55\\x59\\xe6\\x67\\x64\\xc4\\x8a\\xfd\\xf9\\x3c\\xd8\\x81\\x2b\\x2b\\x79\\x9b\\xd8\\x2f\\xbd\\xe3\\x5c\\xae\\xef\\x29\\x8c\\x7f\\x32\\x2f\\x8b\\x4a\\x3e\\x26\\x51\\xfa\\xc1\\x4d\\x4e\\xbb\\x39\\x57\\xec\\xd3\\x0f\\xe9\\xac\\xfc\\xbc\\xdc\\x61\\xfe\\x77\\x98\\x4e\\x45\\xf1\\xb8\\x63\\x7c\\x7c\\x24\\x2d\\x67\\xaf\\x6a\\x2e\\x8f\\x27\\xa0\\xca\\xa1\\x3a\\x33\\xe7\\xd7\\x4c\\xb6\\xe5\\x8a\\xb4\\x2a\\xaa\\x7e\\x9c\\x74\\x71\\xc8\\x60\\xfa\\x9d\\xc9\\x2a\\xc2\\xce\\xfc\\x62\\x67\\x34\\xfe\\x20\\x52\\xbe\\x41\\x24\\x61\\xb4\\xe8\\x64\\x6d\\x65\\x2d\\x27\\xa2\\x52\\x00\\xc1\\xbf\\x2a\\x38\\xa0\\xf9\\x0f\\x3d\\x52\\x74\\x4a\\xbf\\xbc\\x23\\x44\\x78\\xce\\x36\\xbc\\x4f\\x03\\x14\\xa5\\x12\\x14\\x5a\\x27\\x22\\x57\\x4e\\xe7\\x22\\xd2\\xcc\\x4a\\xf7\\x8f\\xcd\\xc2\\x30\\xc4\\xc8\\x86\\x21\\xdc\\x28\\xf6\\x24\\xc3\\xe0\\x06\\x84\\x51\\x97\\x7e\\x7a\\xe2\\xc5\\x23\\xa6\\xe7\\xb6\\xf6\\x48\\x79\\xd1\\xe3\\xe5\\xfc\\x11\\x33\\x42\\x11\\x59\\xa1\\x43\\x04\\x4d\\x52\\x3b\\x4c\\x41\\x86\\xc8\\xe1\\xfe\\xc0\\xd2\\x06\\x75\\x33\\x79\\xa4\\x82\\x94\\x2c\\x29\\x8f\\x0f\\x82\\x84\\x8b\\xd0\\xa8\\x4a\\x81\\xaa\\x1c\\xa2\\x8c\\xd4\\x21\\x46\\x8d\\xa8\\xf9\\x4e\\x03\\xc1\\x95\\xe2\\x12\\x8f\\x4c\\x0d\\xf6\\xac\\x30\\xd0\\x20\\x85\\x65\\xb5\\xb2\\xc4\\x69\\xa1\\x1f\\x50\\x33\\xfa\\x50\\x2d\\x3e\\x83\\x1d\\x27\\xf2\\x55\\x79\\x63\\x3c\\xb0\\x0f\\x36\\xe8\\x76\\xbe\\xc7\\x81\\x76\\xaa\\x60\\x91\\xd2\\x19\\x4e\\x2d\\xaa\\x6c\\xc1\\xde\\x48\\xc2\\x51\\x27\\x2f\\xc4\\xca\\x0e\\x01\\xc5\\x72\\xa6\\x83\\xfa\\x81\\xa5\\xb2\\xf5\\x7a\\x51\\xb5\\x7c\\x9c\\x22\\xe5\\xc2\\xda\\x86\\x7e\\x55\\xb1\\xb1\\x27\\x7c\\xd0\\x65\\x69\\xa7\\x5c\\x1c\\x6d\\x2c\\x1b\\x6e\\x0d\\x4a\\xb3\\x53\\x56\\x62\\x69\\x27\\xae\\xd7\\xba\\xeb\\x7d\\xe4\\x04\\x4c\\xe6\\x13\\x83\\x97\\x64\\xa3\\x4d\\x3a\\x3f\\x1a\\x82\\xd7\\xd3\\x25\\x2e\\xf3\\xbf\\xc2\\xc7\\x97\\x3b\\xc5\\x05\\x33\\xea\\xb7\\x94\\xd1\\xa5\\x57\\x83\\x92\\x81\\x58\\xbb\\x61\\x95\\xdb\\x9d\\xbf\\x3d\\x76\\x55\\x57\\x7e\\x26\\xc7\\xd8\\x41\\x5d\\x72\\x66\\x02\\x47\\x93\\xcc\\xe0\\x84\\xb7\\x13\\xc0\\x3b\\xd8\\xee\\xc7\\xb7\\x10\\xdb\\x4d\\x0c\\x0f\\x1d\\x81\\xcc\\xed\\xcc\\x97\\x5d\\x14\\x0f\\x34\\xbd\\x0f\\x2c\\x17\\xd2\\x8b\\x54\\x36\\x55\\xe1\\x59\\x6f\\x79\\x44\\x03\\xe1\\x1c\\xd9\\x84\\xe9\\x60\\x2f\\x94\\x27\\x72\\x47\\x09\\x59\\x96\\x70\\x42\\x32\\x17\\x05\\xad\\x18\\x8e\\x63\\xc4\\xaf\\x51\\x3a\\x42\\x2a\\x27\\xf8\\x39\\xb4\\x55\\x81\\x54\\x60\\xc7\\xb7\\xe1\\x65\\x8f\\x14\\x63\\x23\\x69\\x6a\\x1b\\x60\\xeb\\x6f\\xda\\xc8\\x3f\\xb2\\x46\\x49\\x0b\\xd2\\x1e\\x90\\x18\\x93\\xcd\\x39\\x49\\xad\\x46\\xcc\\x9a\\x84\\x86\\xcc\\xe9\\xa5\\xfb\\xe7\\x99\\xbe\\xbf\\x21\\xe0\\xe7\\xe3\\x99\\xfd\\x8a\\x11\\x5c\\xc5\\x69\\x61\\x98\\xda\\x00\\xd9\\xd9\\x39\\xa4\\x3b\\x26\\x24\\x13\\xed\\x73\\x84\\x96\\xc2\\x47\\x7c\\x31\\x48\\x1f\\x44\\xaa\\xcf\\x06\\x3a\\x96\\xd1\\xf3\\x36\\x9c\\xd9\\x7d\\x41\\x45\\x86\\x5e\\x86\\xc9\\xcc\\xf6\\x13\\x39\\xc7\\x9e\\x76\\x6d\\x5d\\x87\\x32\\x85\\xc8\\x92\\xb9\\x8c\\xa6\\x66\\x3d\\x62\\x9a\\xe2\\xcd\\xf3\\x7f\\x98\\xc5\\xad\\xe7\\x9a\\x34\\xe4\\x39\\xe6\\xce\\x3b\\x59\\xae\\x27\\xdf\\xef\\x66\\x3c\\xc9\\xb4\\x47\\x94\\xef\\x26\\x3f\\xdc\\xbc\\x7d\\xb2\\x77\\xd0\\x4d\\xdc\\x1f\\xd6\\x23\\xf1\\x79\\x4f\\x07\\x6d\\xf5\\x1f\\x2a\\x93\\xd7\\x62\\xba\\x3b\\xb2\\xb3\\x0d\\xde\\x58\\xcc\\xce\\x8e\\xb7\\x31\\x0c\\x1d\\xcc\\xb7\\x1d\\xe5\\x88\\x74\\x22\\x6d\\x78\\xfe\\x0d\\xc9\\x02\\x87\\x9b\\xdc\\x6f\\x5d\\x8d\\x2b\\x11\\xaf\\x54\\x18\\xfe\\xc9\\x8d\\x3d\\xad\\x26\\xe6\\x65\\xbd\\xf4\\xf7\\x1d\\x9a\\x89\\x34\\xcb\\x68\\x64\\xd4\\x25\\x62\\x1e\\x50\\xce\\xef\\x7c\\x7f\\xae\\x6b\\x13\\x44\\x5f\\x01\\xb7\\x91\\xf8\\xcd\\xb8\\xe9\\x95\\x55\\xcc\\xda\\xa5\\xb6\\x3e\\x8b\\xc4\\x64\\xe7\\xe7\\x0b\\x6d\\xdd\\xcb\\x20\\x2f\\xa2\\xf3\\xd7\\xc5\\x4c\\x6e\\x60\\xc2\\x91\\x3c\\x62\\x42\\xde\\xd3\\x12\\x32\\xee\\xb1\\x55\\xed\\x21\\x24\\xb7\\x11\\x01\\xc5\\x86\\x52\\xbd\\x84\\xf2\\x62\\x0b\\xb2\\xbb\\xba\\xed\\xc0\\x3d\\x62\\xda\\xf1\\xab\\x1f\\x88\\x42\\x00\\x5d\\x72\\x03\\x66\\xe5\\x07\\x6b\\xf5\\xde\\x13\\xe0\\x25\\x72\\xd2\\x52\\xed\\x95\\x12\\x87\\x3c\\x71\\x94\\xb7\\x14\\x46\\xa7\\x1a\\x2f\\xc0\\x97\\x0b\\xc5\\x03\\xcf\\xdd\\xa6\\xe3\\x8a\\x1b\\xeb\\xd1\\x75\\x97\\xf1\\xb1\\xd2\\x4a\\xab\\xc2\\xc1\\x56\\xa9\\x76\\x51\\x74\\x0f\\x3a\\x31\\x69\\x95\\x9f\\x97\\x41\\x0b\\x6e\\x9a\\x6d\\xb4\\x84\\x55\\x10\\x55\\x6c\\x96\\x1c\\x45\\x84\\xb0\\xb6\\xcd\\xaf\\xed\\xc4\\x76\\x27\\xa4\\x03\\x03\\xd6\\x70\\x8d\\x22\\x42\\xfb\\x50\\x9a\\xfa\\x86\\xda\\x46\\x6c\\x64\\xc3\\xd4\\xd4\\xfe\\xd8\\x48\\x13\\x53\\x25\\x3e\\xd2\\xb8\\x3a\\xc5\\x3f\\xa4\\xe7\\x22\\xeb\\xc3\\x2e\\xa6\\x1d\\x45\\xaf\\xdb\\x03\\x6e\\x3a\\xd1\\x71\\x77\\xdb\\x7c\\xf1\\xcd\\xfe\\x44\\x54\\x10\\xa5\\x60\\xd2\\x2c\\xcd\\xd3\\xee\\xaa\\x55\\x6f\\x78\\xba\\x10\\xb9\\xe3\\xec\\xbe\\x84\\x5d\\x3b\\x26\\x88\\x5e\\xa5\\xa0\\x23\\x98\\xaa\\xc8\\xf6\\xb5\\x74\\x38\\x7e\\xf9\\x7a\\xc0\\xf7\\xb8\\x2a\\xe7\\x99\\x5e\\xe9\\x56\\xcf\\x8f\\x3f\\xda\\x1e\\x34\\x37\\x12\\xad\\xd0\\xa3\\xf5\\x18\\xc9\\xd3\\xb8\\xe9\\x3e\\xbf\\xdc\\x2e\\x09\\xbc\\x88\\xa2\\x0e\\xb7\\x3a\\x0e\\xf8\\x81\\x04\\x97\\xff\\xab\\xf4\\x3a\\x95\\x81\\x0a\\x2b\\x67\\x86\\x21\\x35\\x05\\x83\\xac\\x74\\x86\\x90\\xe5\\x62\\x8c\\x13\\x51\\xb6\\x2c\\xeb\\xa2\\xe0\\x13\\xeb\\x47\\xdb\\x34\\x96\\x0f\\x8d\\xee\\xa4\\xef\\x51\\xe9\\x9b\\xae\\x09\\x58\\x87\\xf6\\x64\\xf9\\xe0\\x24\\xf8\\x22\\x67\\xab\\xb3\\xce\\x45\\x76\\xb8\\x47\\x69\\x8b\\x85\\xb7\\x95\\x9f\\x45\\x51\\xfc\\x58\\xab\\xc2\\xed\\xb1\\xbc\\xb4\\xc6\\x12\\xbd\\x01\\x37\\xbd\\xb6\\x0d\\xf2\\xd6\\x17\\x1a\\x85\\x4b\\x54\\xc8\\x45\\x24\\xe2\\xe6\\xd2\\x57\\xeb\\xa1\\xf1\\xe8\\xa6\\x4e\\x58\\xab\\xc7\\x03\\x02\\x44\\xc1\\x7d\\x72\\xac\\xa5\\xca\\xee\\x7a\\x9f\\x08\\x93\\xe2\\xbc\\x10\\xcf\\xd2\\xcb\\xe2\\xe7\\x54\\xc1\\xe5\\xc7\\x3b\\x7e\\x74\\xd8\\x8b\\x1a\\xaf\\x4a\\x9e\\xf3\\x61\\x59\\x8c\\xc2\\xa6\\x47\\xc8\\xf2\\x61\\x17\\x82\\xc4\\x8b\\x65\\xc1\\xeb\\x06\\x3b\\x6e\\x60\\xc1\\x0b\\x02\\x86\\x8d\\xb7\\x76\\x28\\xf1\\x44\\xe5\\x4a\\x2e\\x57\\x58\\x1c\\x78\\xb6\\x3b\\xe5\\x4f\\x4a\\x6c\\xc3\\x75\\x30\\xed\\xb5\\xb4\\x8f\\x5d\\x81\\x96\\x8d\\xc6\\x70\\xba\\x55\\x54\\x01\\x0e\\x73\\xfa\\x6e\\x6f\\xb8\\x22\\x4d\\x3d\\x66\\x3c\\xda\\x68\\x7e\\x5c\\x09\\x13\\x1e\\x41\\x31\\x47\\x47\\xce\\x3a\\x2a\\x5c\\x8a\\x42\\xe7\\x63\\xc4\\x58\\x3b\\x76\\x30\\xdb\\x43\\xde\\xeb\\x80\\x5b\\x45\\x7e\\xdc\\x81\\x3f\\x2a\\x9e\\xb5\\x24\\x71\\x42\\xbe\\xfd\\xbc\\xb4\\xbc\\xd8\\x8c\\x74\\xf1\\xb1\\xf1\\x9d\\xf3\\xeb\\xc1\\xe7\\xad\\xda\\xdb\\x06\\xef\\x48\\x1c\\x0e\\x46\\xea\\x3a\\x5b\\x95\\x98\\x51\\xb6\\x22\\x32\\xf8\\x26\\x8c\\xcf\\x17\\x4a\\x72\\x74\\xe0\\x18\\xa5\\xab\\xe8\\xfc\\xe0\\x60\\xb1\\x90\\x88\\x22\\xef\\x71\\xc8\\x58\\xa7\\xa7\\x94\\x2a\\x7e\\xac\\xfe\\xe8\\xec\\x3d\\xef\\x98\\xb9\\x38\\xde\\x85\\x99\\x78\\xcc\\xd5\\xc7\\x1a\\x9a\\xe9\\xa1\\x0b\\x57\\xa0\\x2b\\x6c\\x3a\\x6e\\xa3\\x5f\\xba\\xfe\\x0a\\xf3\\x66\\x26\\xc8\\x74\\xf8\\x89\\x80\\x63\\xf7\\x7b\\xa1\\xfb\\x40\\x54\\x46\\xea\\x74\\xe7\\x89\\x22\\x0f\\x7f\\x4f\\xf1\\x6d\\xed\\xd4\\x67\\xb7\\xf2\\x45\\x8a\\x2a\\xd1\\x33\\x28\\x7a\\xa4\\x96\\xa5\\x48\\x69\\xf6\\x20\\x23\\x4a\\x6c\\xbc\\x0f\\xfd\\x12\\xb2\\x5c\\xcb\\xcb\\xc9\\xdb\\x1a\\x65\\xde\\x59\\x98\\x9d\\xe8\\xbf\\x42\\xc9\\x70\\xce\\x07\\x5f\\xc2\\x30\\x51\\x17\\xdd\\x85\\xa3\\x4d\\x62\\x38\\xc4\\x75\\x8a\\xef\\x17\\x99\\x75\\x51\\x03\\xa4\\xe4\\xa3\\xf2\\x11\\xd5\\x3b\\x45\\xb3\\x61\\x75\\x8f\\x50\\x58\\x52\\x1d\\xbc\\xfb\\xfd\\xcd\\x74\\x8a\\xe0\\x72\\x20\\x5d\\x91\\xca\\x0d\\x34\\x18\\xcd\\x27\\x5f\\x87\\xd8\\x64\\xeb\\x95\\x59\\xb7\\x0b\\x7e\\x1d\\x0d\\xe6\\x63\\x5c\\x74\\x21\\x68\\x5d\\xc2\\x53\\x3d\\xa4\\xce\\x38\\x41\\xe2\\xfb\\x98\\x3e\\xc9\\x31\\xfe\\x37\\x31\\xd9\\x39\\xe0\\x31\\xc8\\x6e\\xa6\\xc4\\x21\\xec\\x40\\xa9\\x26\\x1e\\x1e\\x84\\x1c\\x13\\xcf\\x5d\\x28\\x59\\xd3\\x36\\x76\\xf4\\x7d\\x8e\\x73\\xd4\\xbf\\x15\\x74\\x77\\x6f\\x44\\x4c\\x4b\\x60\\x99\\xf8\\x9c\\x67\\x26\\x3e\\xcb\\x48\\xb7\\x6f\\xf5\\x5d\\xc8\\xdd\\xc8\\xd6\\xc9\\x61\\x6a\\xe2\\xb2\\xcb\\x54\\x21\\xef\\x30\\x47\\xdb\\x98\\x3c\\x38\\xed\\x65\\x42\\x26\\x62\\x77\\x71\\xc2\\xa8\\x71\\xdb\\xcc\\x67\\x83\\x10\\x50\\x66\\xfa\\x04\\x1e\\xbe\\x60\\x5d\\xf6\\xd7\\x1c\\xff\\xd3\\xb7\\xd3\\x37\\xd0\\xcb\\xea\\xeb\\x9b\\xe8\\xeb\\x3b\\x1b\\x4c\\x1b\\xe9\\xeb\\xdb\\x83\\x2b\\xee\\x65\\x10\\x63\\x68\\xa2\\xa3\\xa3\\xa3\\xaf\\x63\\x60\\xec\\x03\\x14\\xfe\\x8d\\xd3\\xd3\\xe7\\x03\\x86\\x85\\x01\\xfb\\xfd\\x65\\xf4\\x4f\\x97\\x92\\x63\\x16\\x6b\\x80\\x82\\xd9\\x00\\x04\\x29\\x81\\x7d\\xbb\\x01\\x0d\\x4d\\x83\\xc4\\x51\\xa9\\x22\\x87\\xde\\x33\\xaa\\x6d\\x76\\x5e\\x9b\\x4e\\xdf\\x30\\xba\\xb8\\x1a\\x6c\\xb6\\x58\\x63\\x05\\xaf\\xb5\\x24\\x0a\\xc8\\x45\\xe4\\x5a\\x67\\xb6\\x76\\x82\\xb7\\x1a\\xa2\\x05\\xcc\\xa0\\x61\\x0d\\xbb\\x56\\xf8\\x3c\\xff\\xa2\\x32\\xaa\\x0a\\x49\\xc4\\x09\\x80\\x25\\x13\\x88\\x4b\\x22\\x26\\x15\\xf5\\xee\\xb7\\x26\\x19\\xad\\xe5\\xfa\\xe4\\xca\\x78\\x11\\x10\\xa4\\x4e\\xbe\\x78\\x99\\x04\\x38\\x4d\\xda\\x3b\\x14\\x4b\\x94\\xc3\\x2d\\x8b\\x3e\\xab\\x62\\x30\\x2b\\x38\\x57\\x06\\x2e\\x81\\x5a\\x14\\x64\\x14\\x98\\x54\\x74\\xf9\\xc6\\xfc\\xfa\\xfd\\xb6\\xf1\\x0e\\xe6\\x5e\\xd2\\x3e\\xb3\\xbe\\xf1\\xdb\\x39\\xd0\\x31\\xa6\\xa1\\x51\\xc1\\x4c\\x0e\\xbe\\xd8\\x09\\x94\\x0d\\xc4\\x3a\\x48\\xb7\\xd7\\x68\\xb1\\xf0\\xd2\\xf8\\xea\\xfb\\x28\\xf6\\x53\\x5e\\x29\\xa4\\x29\\xaf\\x29\\xad\\x29\\xdc\\x45\\xc6\\xcb\\x9c\\x69\\x6c\\x17\\x78\\x3e\\x01\\x7d\\x10\\x7c\\x87\\xe8\\x60\\x8b\\x2b\\x61\\x2e\\x0b\\x0f\\xee\\xec\\x72\\xc6\\x08\\x1b\\xfd\\xa1\\xcd\\xcd\\x0b\\x4a\\x95\\x5e\\x96\\x85\\x55\\xd1\\xb6\\x68\\xba\\x50\\x0e\\x2d\\x5b\\x5d\\x32\\x62\\x16\\x9c\\x7e\\x71\\xbd\\xbf\\x3d\\x39\\x3e\\x75\\x73\\x8f\\xef\\x5d\\x51\\xed\\xef\\xd3\\x33\\xa0\\xcb\\x4c\\x9d\\x1c\\x98\\x98\\x83\\xc8\\x85\\x08\\xbc\\x5b\\xd4\\x92\\xb4\\x11\\xea\\x61\\xdc\\xcd\\xce\\x95\\x2f\\xa3\\x7e\\xa2\\x9c\\xfa\\x3a\\x3e\\x3e\\x10\\xed\\x90\\x60\\x3d\\xa3\\xf7\\xc0\\xf3\\x8e\\xeb\\x11\\xea\\x2d\\x4e\\x15\\x19\\x2f\\xe3\\xb2\\x70\\xeb\\x65\\x8d\\x39\\x44\\xb9\\xaf\\xbc\\xa7\\xdc\\xd1\\xab\\x1d\\xb7\\x7c\\xc2\\xec\\xd2\\xa8\\x1d\\xa9\\x7c\\xa9\\xe8\\x92\\x70\\x8d\\xef\\x9c\\xcb\\x3e\\x9d\\x71\\x9e\\xb5\\x73\\x75\\x74\\xb5\\xf3\\xdc\\xbe\\xbf\\x31\\x63\\x3d\\x84\\x73\\x79\\x98\\xc9\\x9e\\xc1\\x99\\xb1\\x9e\\x01\\x9a\\xf9\\x99\\xf1\\x79\\xf9\\x7c\\xf1\\x6c\\x69\\x89\\x74\\xe9\\xff\\x98\\xf8\\x18\\xf0\\xd8\\xe9\\x58\\xeb\\x98\\xfb\\x1a\\xd8\\x32\\xb2\\x61\\x62\\x45\\xa7\\x8c\\x2e\\x1e\\xc1\\x36\\x4c\\xb9\\x4f\\xb8\\xf7\\xb3\\xef\\xb5\\xcf\\xb5\\xaf\\xb5\\x8f\\xb5\\x6f\\xb5\\x4f\\xb5\\x37\\xfd\\x74\\x4e\\x88\\xab\\x76\\x5e\\x8e\\x2b\\x42\\x8c\\x99\\x34\\xf8\\xd3\\x11\\x3f\\x60\\xcf\\x5b\\xd9\\x0f\\xd9\\x86\\xd8\\x4c\\x20\\xd1\\xb7\\x6b\\x4c\\xb7\\x09\\x24\\x16\\xc2\\x3c\\x1f\\x7a\\x63\\xf4\\x99\\xcf\\xcb\\x1d\\x82\\x13\\x05\\xc3\\x1d\\x73\\x3d\\x20\\xd6\\x91\\x8a\\x13\\x6d\\xe3\\xc1\\xd9\\x82\\x06\\x3e\\xdf\\xd9\\x10\\xba\\x07\\xfc\\xc1\\xf6\\xc2\\x2c\\x55\\x54\\x6b\\x42\\x6a\\x08\\xe5\\x4d\\xc9\\x09\\xc2\\x78\\xbe\\xb9\\xbe\\x3e\\xb6\\xe8\\x1a\\xf1\\xd6\\xb9\\x87\\xfd\\xa1\\xfc\\x62\\xc3\\xc5\\x57\\xab\\x8f\\x07\\x6e\\x84\\xf4\\x89\\x6d\\x32\\x97\\xb9\\xde\\xee\\x37\\x74\\x45\\x40\\x85\\x22\\x0e\\xd1\\x89\\x8a\\x75\\xc6\\x54\\xf9\\x77\\xee\\x98\\xa0\\x9f\\x2f\\x4b\\x4a\\xb5\\x1e\\x89\\x3e\\x71\\x27\\x31\\x3b\\xda\\xfd\\x89\\xff\\x4a\\x00\\xc8\\x3b\\x4d\\x4c\\x2d\\xc4\\xe1\\xc3\\xae\\x05\\xf1\\xfa\\x29\\xbe\\xca\\x1f\\xf2\\x09\\xe3\\x0a\\x49\\xee\\x69\\xda\\xca\\x2f\\xf6\\x2c\\xf8\\xaa\\x94\\xa0\\x9d\\xc4\\x03\\x67\\x33\\x80\\xe6\\x03\\xcb\\xe5\\x4f\\x03\\xc1\\xb8\\x4a\\xbc\\x17\\xe9\\xc8\\xfc\\xf7\\x9a\\x8d\\x96\\x98\\x6b\\x03\\x63\\x5d\\x38\\x8f\\x74\\x91\\x1c\\x74\\x6c\\x4f\\xfc\\x75\\xa8\\xf6\\x19\\xf8\\x5a\\x7a\\x9a\\x70\\xef\\xb0\\x0d\\xe2\\xdc\\x6d\\x9d\\xe6\\x9f\\xa7\\xce\\x2a\\xda\\x3c\\xd2\\x08\\x64\\x42\\x20\\xee\\xf0\\x6f\\x31\\x21\\xd2\\xb3\\x71\\x2b\\x14\\x8b\\xf3\\x63\\x2b\\x10\\x8d\\xb3\\xe5\\x2b\\xf4\\xa7\\x39\\xac\\x35\\x6f\\x3b\\x00\\x4e\\x1d\\xf8\\x3e\\x41\\xc7\\x98\\x4e\\x00\\xab\\x90\\xc2\\xf1\\x95\\xa6\\x9a\\xd4\\xed\\x38\\x0d\\x4a\\x78\\x10\\x8f\\xbf\\x74\\x41\\x52\\x4f\\x2a\\xb5\\x28\\xce\\xf7\\xdf\\x4d\\x3f\\xfd\\x27\\x45\\x82\\xdb\\x57\\x03\\xdb\\x0f\\x9c\\xf2\\xd8\\x5e\\x94\\x39\\x68\\x61\\xc4\\xe2\\xbf\\xfb\\x6b\\x45\\x61\\x7b\\xf0\\xa9\\x71\\xbd\\x5a\\x14\\xda\\x0a\\x1a\\x2a\\x3a\\xf2\\xea\\xca\\xd4\\xbf\\xa7\\x16\\x45\\x2d\\x35\\x3d\\xf9\\xf5\\xe5\\xed\\xc5\\xcd\\xd5\\xdd\\x83\\x74\\xd4\\x9b\\xef\\x3e\\x0f\\x50\\x11\\x12\\x13\\x14\\x15\\x16\\x17\\x30\\x81\\x40\\x00\\x80\\x16\\x4a\\x70\\x0b\\x00\\x00\\x00\\xfa\\xfd\\x05\\x00\\xbb\\x01\\x5d\\x79\\x80\\xba\\x6d\\xaa\\xb5\\xdc\\x75\\x47\\x50\\x0f\\xd3\\x0f\\xe3\\x93\\xb7\\x20\\x25\\x1a\\x50\\xc6\\x27\\x74\\xd4\\x53\\x53\\x0a\\x96\\x4b\\x9c\\x3b\\x29\\x64\\x61\\xb8\\xdb\\xfd\\xd2\\x82\\x9c\\xdb\\x5c\\x1e\\x6f\\xcf\\x50\\x39\\x8b\\x4c\\x4e\\x5d\\xd2\\x30\\x8e\\x4e\\x46\\xed\\xde\\xe2\\xe1\\xd2\\x04\\x3e\\xa6\\xb5\\xeb\\x98\\x38\\xed\\xb6\\xab\\x3a\\x50\\x71\\x9e\\x1b\\xfa\\xcc\\x86\\xd7\\x14\\x55\\x56\\x3a\\xce\\x70\\xbf\\xde\\xa1\\x18\\xc8\\xfd\\xf9\\xf7\\x64\\x61\\x55\\x40\\x3f\\xf4\\x4f\\x29\\x5c\\x89\\xc0\\x81\\x98\\x40\\x38\\xc7\\xf1\\x37\\x9d\\x71\\xed\\xaa\\x99\\xa0\\x2d\\x80\\xce\\xe1\\x3b\\x65\\xee\\x77\\xeb\\x77\\xf6\\x9b\\xf7\\xd2\\x07\\xa6\\x5c\\x6c\\x18\\x67\\x2b\\x9f\\x01\\x4d\\xa4\\x2c\\x4f\\xbc\\x0b\\x02\\x5c\\x11\\xf5\\xc0\\xaa\\x47\\x6d\\xb8\\xab\\x80\\x0c\\x9c\\xd7\\x6e\\x7f\\x00\\x9c\\xc6\\x89\\xba\\xb2\\xa6\\x62\\xad\\x8d\\xef\\x26\\xae\\xf4\\x97\\xc4\\x9b\\x36\\x44\\x28\\xc8\\xe2\\x58\\xa3\\x39\\xcd\\xf4\\x50\\xfe\\x54\\xbb\\x7b\\x40\\x92\\x0b\\x3b\\xd7\\xa3\\x7f\\x64\\x04\\x9a\\xc5\\xa6\\x80\\x6f\\x03\\xea\\x6b\\x0a\\x76\\x21\\x50\\x11\\x59\\x61\\x4a\\x41\\xb9\\x6f\\x86\\x10\\xc4\\x15\\x87\\x83\\x04\\xcc\\xc9\\xae\\x1e\\x9d\\x58\\xbf\\x72\\xf3\\x7a\\xe9\\xb2\\xa4\\x02\\xb3\\x6d\\xdd\\xb2\\x8f\\x0c\\xe4\\xbe\\x0d\\xf6\\xf0\\x9b\\x2c\\x10\\xca\\x89\\x2b\\x8a\\xe4\\x8c\\x22\\x83\\xec\\x81\\x5d\\x7a\\xb5\\x82\\xd9\\x21\\x09\\x34\\x07\\xed\\x4f\\x4e\\xe5\\xdf\\x84\\x3a\\x73\\xb2\\x90\\x7c\\xae\\xba\\xb5\\x46\\xd4\\xe8\\xe2\\x37\\x27\\xaf\\xf1\\xb7\\xab\\xe9\\x70\\xaf\\x83\\x04\\x0b\\xf4\\x3b\\x5f\\x0f\\x79\\x64\\xb4\\x5c\\x05\\xf6\\x6b\\xf8\\xd0\\x83\\x7b\\xb9\\x35\\xdf\\x8e\\x85\\x70\\xa2\\x44\\x1b\\x9a\\x7e\\xad\\x71\\xa9\\x4f\\x46\\xa3\\x6c\\x8c\\xd5\\xac\\x4f\\x3c\\x51\\x10\\x7f\\x33\\x7c\\x17\\x0b\\xf7\\xf7\\xa5\\x07\\xb6\\x6c\\xda\\x13\\x90\\xa2\\xdb\\x2b\\x86\\xf3\\xcf\\xe2\\x69\\x8e\\x23\\xa0\\x0b\\xd8\\xbc\\x1e\\xe9\\x7d\\xf2\\x32\\x98\\xae\\xca\\x0d\\x3a\\x8b\\x3f\\x70\\x5a\\x93\\x28\\x58\\x45\\x2a\\xcb\\xcc\\xf1\\x89\\xea\\x3c\\x34\\x49\\x96\\x1a\\xcd\\x64\\x8f\\x0a\\x5b\\x18\\x16\\xa0\\x05\\xfd\\x7a\\x4f\\xe0\\x4d\\xde\\x34\\xbe\\x17\\xf3\\xb1\\x3e\\x8b\\x85\\xb1\\xbd\\x4c\\xdf\\x6f\\x5b\\xd4\\xb2\\xed\\xc7\\x21\\x19\\x02\\xf3\\x1b\\x4f\\x45\\xe6\\x9b\\x01\\xa7\\xb1\\x3c\\xcd\\x3e\\x28\\x3e\\xe6\\x1f\\xf6\\x8f\\x1b\\x13\\xd4\\xad\\x55\\x54\\xbb\\x5c\\x3c\\xbf\\xa2\\x47\\xd7\\x80\\xe3\\x52\\x48\\xe4\\x66\\x3d\\x17\\xe2\\x26\\xf8\\x7f\\x30\\x6d\\x44\\xe4\\xb3\\x0f\\x7e\\x6d\\x0a\\x40\\x4b\\x41\\x9d\\x1a\\xa0\\x31\\xdb\\x9f\\xce\\x7b\\x8e\\x44\\x33\\x12\\xec\\xf8\\xec\\x0a\\xd5\\xca\\x75\\x28\\x77\\x18\\x3d\\x7a\\x7f\\x33\\xf8\\x54\\x94\\x67\\x17\\xa1\\x37\\x40\\x5d\\x7b\\x21\\xb5\\xa2\\x9f\\x5a\\x0a\\xc2\\x85\\x90\\x1f\\x81\\xcf\\x6b\\x13\\x45\\xee\\xb0\\x7e\\xf6\\x3b\\x23\\xc7\\xc7\\x8c\\x85\\xc0\\x0c\\xcd\\xc6\\x39\\xd2\\xf8\\x8c\\xa1\\x5b\\xcb\\x92\\xde\\xfc\\x25\\xf0\\xc9\\xc0\\xd7\\xc2\\xab\\x87\\x4c\\xba\\x7d\\x30\\x96\\x93\\x39\\x58\\x3a\\xaa\\x51\\x6b\\x5e\\x59\\x10\\x16\\x4f\\x19\\xa3\\xa4\\xe3\\xd9\\xfd\\xbd\\xfc\\xb2\\xe2\\x0c\\xc1\\xbb\\x43\\x8c\\xd3\\x4b\\xda\\xcd\\x15\\x45\\xe4\\x31\\x2f\\x52\\x2a\\x28\\x2a\\x9a\\xb7\\xf3\\xff\\x62\\xa2\\xe7\\xf5\\x0f\\xe4\\x0e\\xa2\\x6a\\xb9\\x03\\x95\\x8c\\x89\\x23\\x20\\x3c\\xe2\\x7d\\xaa\\x7d\\x1a\\xae\\x35\\x50\\x45\\x51\\x31\\x88\\x04\\xd2\\x57\\xff\\xa4\\xa5\\xe1\\xc6\\x1b\\x7d\\x87\\xd2\\x1d\\x18\\xde\\xbd\\x31\\x34\\x54\\xf9\\xbf\\xf4\\x25\\xc3\\x07\\xcb\\x4d\\xe5\\x44\\x4e\\x9d\\x13\\xd0\\x46\\x03\\x49\\x55\\xf7\\x8d\\x6b\\x80\\xd6\\xe6\\xf2\\xda\\x56\\x61\\x85\\x24\\x33\\x47\\x3d\\xa6\\x85\\x42\\xe7\\x25\\x3a\\xf5\\x45\\x2f\\x46\\x9e\\x6d\\x94\\xd3\\x4d\\xf6\\x16\\x2d\\x14\\xf9\\x3b\\x71\\x00\\x13\\x34\\xda\\xc7\\x83\\x30\\x47\\xf5\\x33\\x28\\xeb\\xd5\\xb8\\xb7\\x9b\\xfd\\xae\\x5b\\xfc\\x43\\x98\\x3f\\x3e\\x2c\\xd0\\xfb\\xfd\\xa6\\xeb\\x8c\\x1b\\xa7\\xe2\\x72\\x71\\x67\\xf7\\x7e\\xbb\\xd3\\x15\\x41\\xb4\\x50\\x8f\\x08\\x3d\\x2d\\xdc\\x9a\\xf2\\xd2\\xea\\x3a\\xf6\\xef\\xf0\\xd8\\xbe\\xa6\\x8c\\x9f\\xbb\\xca\\xe2\\x25\\x8b\\x31\\x0c\\x8e\\x9a\\xf2\\x72\\x79\\x97\\xa6\\x7b\\xf9\\xc5\\xbd\\xe1\\xa6\\xc0\\x88\\x9f\\xc0\\xae\\x85\\x16\\xe8\\xa0\\xab\\xbd\\xaa\\x5c\\x7d\\xa5\\xae\\xa9\\xa2\\x32\\x61\\x2c\\x57\\xe2\\xd0\\x85\\x71\\x2b\\xeb\\xe2\\x5c\\x60\\x06\\x7b\\x20\\xce\\x87\\x9a\\x5f\\x85\\xa2\\xed\\x30\\x0e\\x27\\xa3\\x19\\x43\\x12\\x3d\\x86\\x5c\\x31\\x67\\x4d\\x5f\\x58\\xaa\\x22\\x54\\x4e\\x5c\\x17\\xd7\\xcd\\x4b\\x57\\x6e\\x54\\x6f\\xa5\\xfb\\xae\\xd7\\x7f\\xbb\\x8c\\x01\\x18\\x37\\xfa\\xfb\\x15\\x9b\\xeb\\x69\\x75\\xd8\\xfc\\x2b\\xb8\\x1c\\x1d\\xdc\\x70\\xf2\\xbf\\x64\\x0c\\x82\\x8b\\x5f\\x2c\\xcb\\x08\\x17\\x1a\\x35\\xf0\\x63\\x98\\x19\\x67\\x16\\xc0\\xa0\\xbd\\x44\\x4f\\x3f\\xb9\\x10\\xa1\\x40\\xd2\\x59\\xcc\\x4a\\x34\\xd7\\x08\\x51\\x67\\x65\\x51\\x99\\x7c\\x4c\\x57\\x92\\xd1\\x1c\\xbc\\x78\\x21\\x7e\\x02\\x79\\x02\\x03\\x86\\x06\\xbd\\xc4\\x2c\\x41\\x04\\xb7\\x3a\\xd5\\xe3\\x19\\x2e\\x50\\xf9\\x07\\x25\\x85\\xbc\\x51\\x2f\\x6e\\xff\\x95\\xb6\\xce\\x2c\\x3d\\xbf\\x62\\x02\\xbf\\xe3\\x7e\\x97\\x62\\x51\\xaf\\x46\\x6d\\xd0\\xe3\\xe2\\xe1\\xe5\\xec\\xfc\\xe5\\x54\\xed\\xb4\\xed\\x1c\\x6f\\xb0\\x20\\x81\\x9a\\xff\\xcf\\xe1\\x36\\x80\\x23\\xfa\\xc4\\x65\\x20\\xd9\\xdf\\xa9\\x20\\x8a\\x43\\x5d\\x61\\x1f\\x4a\\x2c\\x07\\xef\\x45\\x36\\xe8\\xde\\xc8\\xab\\xa1\\x03\\x69\\x13\\x3c\\x97\\x1e\\x01\\xee\\x3d\\x77\\x1f\\x3e\\xb4\\x77\\x6f\\xe4\\xf2\\x4c\\x16\\x9c\\x58\\x0e\\x6e\\x1c\\x7f\\x3c\\x2d\\x11\\x3c\\x0c\\xa8\\x98\\xa6\\x11\\x91\\x9f\\xd4\\xd3\\x18\\xab\\x58\\xac\\xdd\\x15\\x7c\\x47\\x6c\\x9b\\xe4\\x88\\xec\\x80\\x3b\\x9c\\xdc\\x3c\\x4b\\x1a\\x35\\xdc\\x02\\xa0\\xc1\\x98\\xf2\\xb4\\xef\\x72\\xdb\\x5c\\xbe\\x29\\xa0\\x03\\xde\\xa9\\x6b\\x10\\x31\\x2e\\x7e\\x79\\x0c\\xef\\x41\\x76\\x20\\x40\\x83\\x82\\x86\\x20\\x42\\xc1\\x60\\x0f\\x6e\\x64\\x12\\x31\\xb5\\x4a\\x0d\\x8e\\x52\\x4f\\xc0\\x09\\xde\\x32\\x25\\x54\\xd4\\x8a\\x21\\x4e\\x44\\x10\\x60\\x40\\x16\\x61\\x51\\x36\\x24\\xdc\\xe4\\x91\\xfd\\x13\\xb0\\x3a\\x3e\\x6b\\xdc\\x1f\\x4e\\x9c\\x06\\x1a\\x46\\xe3\\x4b\\x4f\\x61\\xaa\\x45\\x34\\xba\\x68\\xb9\\xc5\\xa4\\xbc\\xa8\\x84\\x05\\xd8\\x41\\xc8\\xe7\\x50\\x01\\x72\\x02\\x7e\\x9c\\x83\\xff\\xbd\\x1e\\xe2\\x6b\\x42\\x34\\xa9\\x2d\\x24\\x22\\x50\\x13\\x1e\\xbb\\x7c\\xa9\\xa0\\x89\\x5a\\x2a\\x3c\\x3f\\x6a\\x63\\x18\\x89\\x31\\x76\\xe6\\xd8\\xce\\x46\\xc7\\x8a\\x58\\x50\\x50\\xb6\\xf3\\xeb\\x3c\\x74\\x9a\\xb6\\xc3\\x86\\x2c\\x83\\xb0\\x5c\\x0e\\x3d\\x07\\x0d\\x12\\x96\\x63\\xbc\\xe0\\x77\\x91\\x5a\\x71\\xda\\xcb\\x34\\x21\\xa3\\x30\\xea\\x07\\x6b\\x33\\x89\\xa4\\x06\\xe7\\xaa\\xcd\\x7a\\x45\\x7a\\xc4\\xdf\\x72\\x9d\\x89\\xc6\\x91\\xef\\xcd\\x1e\\xd4\\xfe\\x12\\x75\\x2a\\x29\\xf7\\xdf\\xa5\\xb1\\x23\\x18\\x1d\\xcf\\xa2\\xba\\x3c\\x92\\x45\\x73\\x96\\x3f\\x2a\\x23\\x1c\\x2d\\x9b\\xc0\\xc9\\xe5\\xf4\\x70\\xba\\x61\\x53\\xdd\\xee\\x69\\x10\\x8c\\x1c\\x61\\x26\\x25\\x0c\\x65\\x48\\x0f\\x9c\\x4f\\x5c\\xd5\\xf2\\x0c\\xd0\\xc2\\x89\\xc8\\xda\\x3a\\xf7\\x84\\x56\\x62\\x7f\\xd4\\xaa\\xaa\\x52\\x6c\\x6d\\xc3\\x29\\xe7\\xf2\\x74\\x31\\x7c\\xde\\x18\\x6e\\x5c\\xa5\\xf1\\x31\\x75\\x21\\x94\\xc8\\xbe\\xa5\\x44\\xab\\xd5\\xde\\x4e\\xbb\\xf6\\xb6\\x7f\\xe1\\x3c\\x02\\xd6\\x6c\\xf9\\x34\\x8e\\x0b\\xc6\\x5c\\x1b\\x90\\x96\\x60\\x8c\\xa7\\x16\\x27\\xf8\\x01\\x59\\x69\\x34\\x16\\x70\\xaa\\x0f\\x4e\\xde\\x59\\xb9\\x89\\x8f\\x3f\\x8a\\x89\\x82\\xb1\\x83\\x53\\x44\\x96\\xb5\\x44\\xf2\\x51\\x3b\\xf7\\x74\\x5d\\xcd\\xf4\\xc1\\xc4\\x90\\xb7\\x1c\\x8d\\x11\\x12\\x25\\x78\\xf2\\xc7\\xe6\\x9e\\x44\\xc1\\x66\\x56\\xf6\\x53\\x72\\x05\\x17\\xbd\\xdd\\xde\\x12\\x42\\x6f\\xf6\\xdb\\x21\\x99\\x9b\\xec\\xab\\x88\\xd0\\xba\\x5c\\x20\\xde\\xb2\\x4a\\xe8\\xe4\\xc1\\x0d\\x11\\x92\\xea\\xa0\\x41\\xc3\\x99\\xc3\\x17\\x8c\\x44\\xde\\xcb\\x5c\\x59\\x9d\\xe5\\x54\\x82\\x7d\\xa4\\xef\\x60\\xd4\\x40\\x62\\x9e\\xc7\\x29\\xb3\\xd6\\x10\\x94\\xdf\\x20\\xdd\\xb8\\xa4\\x63\\x14\\x25\\xa5\\xf6\\x3b\\x19\\xf2\\xe2\\x98\\x0a\\x18\\x71\\x47\\x74\\xae\\x42\\xc1\\x10\\xa0\\xa5\\xc5\\xbe\\x30\\x89\\x34\\x83\\xf8\\xd2\\x15\\x41\\xd7\\x16\\xa1\\x06\\xf5\\x71\\xbe\\x9b\\x21\\x41\\x31\\x78\\xb2\\xad\\x8a\\xdf\\xf3\\xc7\\x9e\\x08\\x24\\x0b\\x70\\x4b\\xaa\\xfb\\xa6\\xb6\\x15\\xd5\\x4c\\x6e\\x38\\x23\\x7e\\x04\\x74\\x40\\xdb\\xed\\x8d\\xb0\\x83\\x50\\x29\\xd3\\xb3\\xe3\\x5e\\x38\\x6b\\xcc\\xfc\\xa9\\x2b\\x6e\\x49\\x1c\\xb2\\xf1\\x88\\x88\\x30\\x98\\x17\\xb7\\x9a\\xcd\\x97\\x74\\xcf\\x20\\x74\\x04\\x70\\x00\\x25\\x8c\\xee\\x5f\\xab\\xf1\\x1f\\x51\\x08\\x3a\\x02\\x2d\\x36\\x85\\xc7\\x6f\\x7c\\xb2\\x37\\xf7\\x27\\xb2\\x21\\x7f\\xf4\\xcd\\x16\\x28\\x2a\\xce\\xef\\x98\\x38\\x41\\x11\\x22\\xe5\\xb5\\x44\\x1c\\x21\\x98\\xe0\\xb2\\x7b\\x12\\x21\\x04\\xb7\\xf7\\x49\\xd1\\x4b\\x10\\xd2\\xca\\x6d\\x03\\xa4\\x2d\\x15\\xb4\\x30\\x88\\xfe\\xa5\\x8f\\xa1\\x3c\\xef\\x7b\\x4d\\xaf\\xdc\\x5c\\xc0\\xc5\\x42\\x3a\\xe0\\x80\\xbc\\x8f\\xfc\\x80\\xac\\xe2\\xba\\x69\\xd9\\x9b\\x94\\xb0\\x39\\x46\\xbc\\x8d\\x4e\\x86\\xb1\\xc9\\x5b\\x91\\x55\\x54\\xb0\\x90\\x06\\x1b\\x29\\xa4\\x7d\\x2d\\x63\\x3c\\xbc\\xa1\\x7e\\xc0\\x88\\xe8\\x99\\x95\\x93\\xcc\\x81\\xd0\\xcb\\x44\\xf1\\x57\\x49\\x0e\\xa5\\x9c\\x62\\xbf\\x89\\xea\\x04\\x3a\\xcf\\x22\\xa0\\x41\\xbd\\x9c\\x33\\xc4\\xd5\\xea\\x99\\x65\\x38\\xdf\\xc5\\x97\\xd4\\x1b\\xe7\\xce\\xad\\xbd\\x74\\x52\\xc9\\xf1\\x80\\xda\\x22\\xa9\\xcf\\x53\\x1e\\xc8\\xe0\\x73\\xbd\\x39\\xf6\\xf0\\xf8\\x2d\\xb1\\x80\\xf6\\x30\\xc3\\xc0\\x76\\xc4\\xf3\\x7f\\xb3\\x86\\xa7\\x4f\\x00\\xab\\x0b\\x8c\\x42\\xbf\\x78\\xbf\\xc4\\x7b\\xf2\\x3b\\x2c\\x37\\x3b\\x5a\\x5a\\x6a\\x80\\x20\\x9f\\xee\\x2c\\x13\\xbe\\xee\\x78\\x0a\\x69\\x06\\xc6\\x78\\x14\\xee\\xc7\\x10\\xa8\\x23\\x17\\x35\\x22\\x38\\xeb\\x2c\\x18\\xff\\x35\\xc4\\x98\\x4c\\x3b\\x04\\x8c\\x34\\x83\\xa3\\xdd\\x68\\xb2\\x91\\xed\\xb4\\xce\\x7d\\xf2\\x63\\x82\\xe3\\x4a\\xf1\\x52\\x7c\\x97\\x36\\x9d\\xd6\\x66\\xe5\\x04\\xce\\x05\\x96\\x11\\xd7\\xd7\\x09\\x3f\\xfb\\x5f\\x6b\\x22\\x22\\x0c\\x12\\xb8\\xf0\\x44\\x50\\x13\\xb0\\xa6\\x58\\xc2\\x04\\xaa\\x61\\x42\\x27\\xe8\\xe7\\x7e\\x9e\\x19\\x17\\x55\\xdc\\x65\\x41\\xad\\xf6\\x19\\x7e\\xb1\\x3c\\x00\\x09\\x43\\x32\\x09\\x16\\x91\\x83\\xc1\\x1c\\x88\\x8d\\x55\\xc7\\x9e\\x60\\x80\\xe6\\xc5\\xcf\\xad\\xb7\\xc4\\xe0\\xb5\\xc6\\xd4\\x72\\x1f\\xa3\\x86\\xbd\\xc3\\xf7\\x86\\x1b\\x01\\xda\\xd2\\x3b\\x38\\x9f\\xdb\\x3b\\x15\\x5d\\x03\\x05\\x90\\x6d\\x55\\x8f\\x37\\x37\\x5a\\x13\\x4a\\xbb\\x47\\xbb\\xf6\\xe9\\x63\\xdd\\x07\\xeb\\xb7\\xa4\\xd7\\xaf\\xa2\\xd7\\xb1\\xfc\\x95\\xd0\\x8e\\xc9\\x52\\x22\\x8f\\xa8\\x04\\xc0\\xf2\\x31\\xcc\\xec\\x9b\\xb6\\xc2\\x1b\\xc2\\x9b\\x60\\xaf\\x3a\\xfe\\x84\\x82\\x61\\x6a\\xa0\\x27\\x37\\xad\\xac\\xa8\\x68\\xaf\\x57\\x20\\x35\\x5f\\x7a\\x1e\\xc1\\xcd\\x23\\xbe\\xa9\\xe3\\x2f\\xdd\\xa0\\x4f\\x05\\xfb\\x0b\\x26\\xe2\\x23\\xb0\\x27\\x44\\xd8\\x6c\\xe6\\x6b\\x28\\x9f\\x88\\x21\\xab\\x38\\x91\\x4c\\xc7\\x9f\\x45\\x0d\\x35\\xb8\\xfd\\x39\\x6d\\x7d\\x1c\\x37\\xe2\\x79\\x6f\\x71\\x60\\x57\\xa4\\xe2\\xaa\\xd3\\xa0\\xa9\\x4d\\xe9\\x1e\\x16\\xe8\\xd0\\x1a\\x69\\x04\\xc1\\xac\\xcb\\x20\\x2a\\xcc\\x51\\xf5\\x41\\x88\\xaa\\x58\\x81\\xb2\\x4a\\x87\\x59\\x1a\\x37\\xc6\\xfc\\xb8\\xbb\\x12\\x0b\\xd9\\x6f\\x28\\x97\\xbf\\x98\\x75\\x7a\\x9f\\x18\\x81\\x50\\x57\\xb1\\x0c\\x25\\xfe\\xd8\\xfa\\xf8\\x80\\xed\\xc4\\xfc\\x07\\xe3\\xa1\\xe7\\x8f\\xab\\xa6\\xe4\\xe0\\xac\\x73\\x82\\x93\\x87\\x09\\x98\\x06\\x42\\xdc\\xa2\\x9b\\xde\\xe3\\xfb\\x0d\\x60\\xb3\\xd4\\x61\\x58\\x1d\\xdb\\x46\\x35\\x0f\\xeb\\x2a\\x97\\xe1\\x12\\xe1\\xfa\\x17\\x3d\\x02\\xf6\\x97\\xa2\\x21\\x35\\x35\\xbc\\x7e\\x5f\\xf5\\x3e\\x51\\x21\\x54\\x6d\\x05\\x8c\\xc9\\x9d\\xd9\\xc6\\xe7\\x13\\x03\\x50\\xb5\\xe8\\xa9\\x72\\x11\\x17\\x3a\\xd0\\xf1\\x71\\x97\\xeb\\xcb\\xb9\\xa7\\x59\\x38\\x5f\\x11\\x9e\\x1b\\xab\\x59\\x47\\xc0\\xe3\\xa7\\x3a\\x4f\\xd8\\xc0\\x84\\x75\\xda\\x14\\xb2\\x6e\\x96\\xc6\\xa6\\x39\\x28\\x52\\xd8\\xba\\xee\\xf6\\xe0\\x5d\\xfe\\x0a\\x78\\x96\\x46\\xb7\\x5c\\xa8\\x9f\\x19\\x33\\xf9\\xde\\x6a\\xef\\xe0\\x1e\\xca\\x5e\\x44\\x9c\\x29\\x2e\\x17\\x3e\\x35\\x4e\\x07\\x8b\\xd2\\x90\\x4e\\x75\\x57\\x5f\\xf0\\x13\\x1a\\xd3\\x63\\xee\\x8f\\xa9\\x37\\x36\\x63\\x02\\x2a\\x1c\\x26\\xe5\\x6b\\x6a\\x93\\x4b\\x93\\x0d\\x73\\x65\\x9a\\x8a\\x86\\xb5\\xd2\\x51\\xdc\\xf0\\x6d\\x8c\\x7b\\xb6\\x6c\\xab\\xd8\\x5f\\xb9\\x8e\\x04\\xc7\\x57\\xd3\\x4a\\x4b\\x57\\xdb\\x2b\\x70\\xed\\x2a\\xd2\\xb7\\xee\\xea\\x76\\x20\\x68\\xfa\\xcb\\xe1\\x69\\x76\\xeb\\x45\\xc3\\x7c\\xf8\\xa8\\x24\\x29\\x6e\\xa1\\x0f\\x07\\x72\\x23\\xab\\x68\\x7e\\x0c\\xd4\\x88\\x3f\\x04\\xb9\\x81\\x99\\x87\\xa4\\xc7\\x83\\x5d\\x8c\\x56\\xf9\\x69\\xdb\\xe3\\xee\\x7b\\x9e\\x61\\x29\\x91\\xb1\\x52\\xcc\\xf8\\xe5\\x74\\x76\\xe5\\x38\\x03\\xdc\\x84\\x64\\x2a\\x13\\x64\\xe3\\x21\\xf0\\xc0\\x1d\\xc0\\x98\\x8a\\x00\\x6b\\x77\\x80\\xb9\\x3e\\x0f\\xd4\\x25\\xf8\\x72\\xe9\\xd5\\xba\\x39\\xfc\\xec\\xbf\\xa6\\x7e\\xcd\\x42\\x45\\xf2\\x65\\xb8\\x4c\\xad\\x47\\x43\\x13\\x9d\\x8f\\x7f\\xf6\\xde\\x65\\x2d\\x69\\x9c\\x53\\xb2\\xa0\\xd7\\xb7\\xf5\\x2e\\x6b\\x65\\xfa\\xd3\\x28\\xb2\\x88\\x65\\x99\\x3a\\x64\\xba\\x5d\\x60\\x1e\\x6b\\x7c\\xca\\x85\\x0e\\x6b\\x5a\\xad\\x93\\x24\\x2a\\xf9\\x56\\xf9\\x26\\x59\\x37\\x03\\x84\\x0c\\x7e\\xee\\x3f\\x03\\xdc\\x4c\\x4d\\xe4\\xf9\\xaa\\x62\\x14\\x56\\x42\\xac\\x7e\\x40\\x54\\x3f\\x30\\x4c\\x84\\x93\\xeb\\xb1\\x31\\x8a\\xdb\\x76\\xd7\\xbf\\x73\\x69\\xa3\\x40\\xb0\\xd0\\x81\\xed\\x2b\\xa4\\xf5\\x73\\xc4\\x7d\\x3c\\x21\\xf2\\xae\\xfd\\xbe\\x34\\xfa\\x58\\x5e\\xca\\x6d\\x31\\x0b\\x5f\\xa1\\x5c\\x1e\\x85\\xa7\\x43\\xa2\\x30\\x4e\\x88\\xe2\\x6a\\xbf\\x19\\xb2\\x71\\x0a\\xd7\\x17\\x7d\\x44\\xe0\\x37\\x90\\xcf\\x53\\x12\\xd9\\x26\\x4d\\xc6\\x30\\x8d\\x5b\\xb4\\x71\\x34\\x51\\xc7\\x87\\x47\\xe6\\x8b\\x08\\x55\\xcf\\x2b\\x11\\xe0\\x50\\xbe\\x8a\\x8f\\xd1\\x30\\x39\\xa3\\x3a\\xcf\\x7c\\x46\\x34\\x87\\x15\\x1a\\x24\\x08\\xce\\x83\\x62\\x0e\\x18\\xf3\\x3f\\x44\\x7a\\x62\\xcb\\x2a\\xe6\\x92\\xb6\\x89\\x64\\x98\\xff\\x83\\x2e\\x4f\\x3e\\xd8\\x9b\\x66\\x22\\xe4\\x1f\\x2a\\x95\\x01\\xa2\\x3b\\x08\\x04\\x34\\x34\\xc8\\x26\\x5f\\xa7\\x0d\\x23\\x21\\xe3\\x86\\x01\\x3f\\xf8\\x96\\x56\\x4f\\x3f\\xbb\\xb6\\x86\\x3d\\xe8\\x80\\xdb\\x76\\xef\\x8e\\x8e\\x2a\\x83\\x7d\\xb9\\x65\\x87\\x0b\\xef\\xa8\\x99\\x45\\x1b\\xd3\\x7d\\xb0\\x43\\x18\\x2d\\xf2\\xbc\\x56\\x1f\\x8a\\xa3\\xd8\\xdf\\xeb\\x15\\x62\\xd8\\x85\\x2b\\xf2\\xec\\xd6\\x65\\x88\\xeb\\x10\\x03\\xca\\xcd\\x9f\\xa2\\x5f\\x07\\xee\\x89\\xb4\\xff\\xc3\\x8c\\xa4\\xf7\\xbd\\x41\\x81\\x05\\x57\\xa4\\x72\\x0b\\xba\\xab\\x58\\xca\\x03\\xd9\\x35\\x3f\\x77\\x65\\xe4\\xf4\\x87\\x1b\\xed\\x9f\\x37\\x1a\\xe2\\x73\\xaf\\xe7\\x48\\xa7\\xb4\\x1a\\x45\\xe2\\x7c\\xc2\\xd0\\x89\\xfb\\xd8\\x5d\\x36\\xa9\\x1e\\x32\\xbe\\x12\\x18\\x44\\x80\\x98\\x53\\xac\\x71\\xa8\\x9b\\xca\\x7e\\xb0\\x5b\\xb1\\x82\\xa3\\xce\\xd2\\x54\\xbe\\xfb\\xcf\\x86\\x9f\\xb8\\x9d\\x02\\x36\\x89\\x7d\\x22\\x4c\\x5d\\x94\\x56\\xec\\xab\\xfb\\x53\\x1a\\xdd\\xe1\\x3d\\x23\\x6e\\xff\\xec\\xbe\\x3d\\x36\\x44\\xd4\\xa0\\xa6\\x0e\\x1e\\x53\\x1f\\x02\\xfc\\xe8\\x9b\\x1e\\x7e\\x48\\xbd\\x3c\\x47\\xd8\\xfd\\x9f\\xce\\x41\\xec\\xf4\\x8d\\xe4\\x6c\\xc0\\x18\\x2b\\xee\\x4b\\x23\\x88\\x0d\\x18\\xf7\\x91\\xf5\\xac\\x5b\\x9a\\x3e\\xb7\\x3e\\x1c\\x4d\\xf7\\x4e\\xbd\\x7d\\x5f\\xa0\\x3a\\xcc\\x91\\x3e\\x98\\x27\\x69\\x7e\\x22\\x01\\x24\\xa1\\x49\\xe6\\xa4\\x71\\x13\\x14\\xb6\\x09\\x3f\\xb6\\x58\\xdd\\x44\\x72\\x33\\x85\\x5d\\x1a\\xdd\\xc8\\xf4\\xdf\\x50\\x2c\\xef\\x9c\\x49\\x07\\xf9\\x04\\x57\\xf5\\xa4\\x5c\\x7b\\xa9\\x39\\x4d\\x72\\xba\\x29\\xf4\\x39\\x7a\\xb0\\x30\\x20\\xce\\xbb\\x7f\\x30\\xa4\\x69\\xa6\\x7f\\xc8\\x9e\\x18\\x8c\\x18\\x6e\\x71\\x0f\\x0e\\xf1\\x62\\xf6\\xeb\\x15\\xd8\\x46\\xf4\\xa2\\x46\\xfd\\x88\\x7b\\xe2\\x62\\xef\\x0c\\xb3\\x12\\xb0\\x33\\xfc\\xc8\\xe9\\xf9\\x63\\x53\\x21\\xe1\\x1c\\x8f\\x75\\xd5\\xa0\\x9f\\xb4\\x07\\x8a\\x11\\xa8\\xe5\\x7e\\xe0\\xa8\\xdb\\x02\\xcd\\xfc\\xcd\\x44\\x55\\xe9\\x2a\\x0d\\x97\\x45\\x0e\\xf1\\x4a\\x41\\x69\\x71\\x21\\x87\\xc1\\x1a\\x0f\\xe3\\x43\\x6e\\x44\\x67\\x5d\\xa7\\x6b\\x34\\x96\\x7e\\x60\\x8d\\x7d\\x54\\x67\\x8a\\xbe\\x71\\x07\\x30\\xe2\\x8c\\x08\\x3e\\x1c\\x7f\\x0d\\x0a\\x74\\xd7\\xa3\\x83\\xe9\\x52\\xde\\xd1\\x92\\xbe\\x63\\x63\\xea\\x36\\x8a\\xa1\\x95\\x9d\\xbe\\x77\\x8b\\xa1\\xf3\\xeb\\x29\\xcf\\x02\\x5a\\xa0\\x63\\x7d\\xfa\\xe9\\xf7\\x71\\x3a\\xf6\\xee\\x0d\\x46\\x78\\x2b\\x60\\x05\\x1d\\x77\\x94\\x31\\xb8\\x0c\\xd3\\x30\\xe4\\x43\\x63\\x63\\x67\\x0a\\x7a\\x65\\xe7\\x4a\\x72\\x74\\x04\\x20\\xe0\\x15\\x64\\x75\\xfe\\xf8\\x0a\\x76\\xcd\\xa2\\xbb\\xe1\\x6d\\x5c\\xba\\xe1\\x96\\x5e\\xec\\x5e\\xa8\\xaf\\x45\\x10\\xd9\\x13\\x2c\\xac\\x59\\xcd\\x6d\\x34\\x5a\\xa4\\x7e\\xd3\\x2e\\xac\\xa9\\x36\\x37\\x52\\x2b\\x13\\xcb\\x90\\x65\\xf0\\x85\\x6d\\x8f\\xa0\\xfc\\x89\\x4d\\x17\\xf1\\x94\\xc3\\x58\\xce\\x9a\\x60\\x73\\x9e\\x33\\x10\\xae\\xb1\\xef\\x18\\x1a\\x4f\\x20\\xe3\\xcc\\x3e\\xde\\x30\\xd3\\xa3\\x02\\x8e\\x85\\xb6\\xdb\\x73\\x61\\x6a\\x4a\\x91\\x16\\x6a\\xac\\x5f\\x0b\\x8d\\x54\\xf7\\x9f\\x45\\x85\\x1b\\x0a\\xb0\\xb4\\xec\\x47\\x3f\\x81\\xa4\\xe6\\x8e\\x6c\\x52\\x57\\x1e\\xe6\\xc2\\xf6\\xe1\\x41\\x06\\xa5\\xed\\x39\\xab\\x54\\x17\\x8d\\x15\\x48\\x47\\xbb\\x29\\xd8\\x0d\\xe0\\x8f\\x11\\x8d\\x25\\xd9\\x31\\x42\\xef\\xe2\\x94\\x09\\xe7\\x1b\\xc1\\x27\\xf4\\x96\\x2b\\xf6\\x1b\\x2c\\x9f\\x9b\\xac\\xa9\\x60\\x05\\x5f\\x65\\x68\\x47\\x11\\x1d\\x1f\\xc2\\x93\\x96\\x29\\x2e\\x51\\xe0\\xcf\\x85\\x74\\x56\\x5e\\x5c\\x62\\xaa\\x4e\\xa9\\x22\\x4e\\xe4\\x80\\xe3\\x5c\\x27\\x6f\\xca\\x1e\\xf9\\xd8\\xd8\\xf0\\x00\\x21\\x88\\xdb\\x54\\x50\\x91\\x90\\x92\\xb6\\x56\\xb3\\xb4\\xbc\\xdb\\x25\\xce\\x2a\\x84\\x09\\x5e\\x29\\xa9\\x00\\x52\\x62\\x36\\x1f\\x61\\xf4\\x17\\x20\\x1a\\x3c\\x80\\xd2\\x88\\x21\\x59\\xd3\\xe1\\xec\\xe7\\x59\\xb5\\x34\\xdc\\xb9\\xd2\\x1e\\x3a\\xf5\\x40\\xeb\\x0c\\xe1\\x57\\x20\\x11\\xf6\\x4f\\x39\\x01\\x93\\x76\\xcb\\x54\\x0b\\x65\\xcb\\x10\\x58\\x24\\x83\\x5e\\xa0\\x70\\x64\\x28\\x7d\\x34\\xd2\\xfe\\x9c\\xb7\\x51\\xf7\\xfb\\x8a\\x2f\\x89\\x21\\x98\\xba\\x8e\\x7d\\x45\\x55\\x08\\x8e\\x25\\x21\\x44\\x85\\xed\\x21\\x10\\x77\\x4e\\xfc\\xda\\x18\\xd9\\xb9\\xd2\\x99\\x24\\x90\\x22\\x9c\\x36\\x55\\x52\\x98\\x6f\\x45\\x0e\\x6a\\x65\\xe4\\xb3\\xa9\\x7b\\x34\\x48\\xe5\\xbc\\x42\\x84\\x88\\x36\\x97\\x52\\xfb\\x44\\x2d\\xdf\\x83\\x19\\x4d\\xc4\\x35\\xe5\\xb2\\xa1\\xd2\\xf5\\xfd\\x76\\xa8\\x57\\xa2\\x78\\x61\\x39\\xaf\\x7c\\xbb\\xce\\xe7\\xbc\\xed\\x64\\x6c\\xfa\\xcb\\x65\\xf7\\xe8\\xbf\\xf7\\x5b\\x62\\xa7\\xf5\\x20\\xc1\\x30\\x8d\\x3d\\x0c\\x56\\x51\\xc2\\xde\\x0c\\x4e\\x51\\x4f\\x48\\x39\\x4f\\x41\\xd2\\x2e\\x07\\x02\\xf5\\x77\\xb7\\xe4\\x41\\xc2\\x80\\x6b\\xa3\\x07\\x44\\x02\\x7e\\x56\\x8e\\x96\\x04\\x9a\\x6b\\x7a\\x62\\x3a\\x1f\\x30\\xcb\\x98\\xd4\\x0a\\xc1\\xd4\\x91\\xf8\\x3e\\x20\\x16\\xc2\\x1f\\xc9\\xc8\\x4e\\x1d\\x2a\\x0d\\x5d\\xe8\\x53\\x26\\x31\\xa0\\x92\\x38\\xc6\\x8b\\x4c\\x72\\x51\\x3d\\x38\\xeb\\x4b\\x2d\\x6d\\xae\\x01\\xf8\\xf8\\x4d\\x14\\x10\\xd5\\x9d\\xe8\\x58\\x2b\\x50\\x07\\x9e\\x4e\\xab\\x87\\x18\\x2f\\x85\\x88\\xbf\\xd4\\x13\\xe7\\x4d\\xb5\\xde\\x49\\xde\\xde\\xbd\\xb4\\x5a\\xc9\\xf6\\x08\\xe7\\xf5\\xb4\\xe7\\xb6\\x84\\x88\\x30\\x28\\xf5\\x6f\\xb9\\x31\\xc1\\x08\\xda\\x04\\x90\\x0a\\x54\\xac\\x11\\x45\\x06\\xf3\\xaa\\x3e\\x87\\xa5\\xe9\\xb7\\x85\\x78\\x25\\xb9\\x52\\xd2\\x05\\x02\\x12\\xe2\\xbd\\x7b\\xf4\\x2f\\xe9\\xa9\\x68\\xeb\\x46\\xe4\\xac\\xa9\\x5b\\xce\\x1a\\x99\\x2b\\x26\\x4c\\x08\\x3a\\xda\\x21\\xed\\x8d\\x74\\xc3\\xb5\\xbf\\x5c\\x2f\\x12\\xd1\\xfb\\x3c\\x6a\\xcd\\x48\\x59\\xe8\\x7b\\x23\\xe3\\xe5\\x5c\\x59\\xff\\x52\\x69\\xf0\\x41\\xf7\\x3d\\xd6\\x12\\xf2\\x4e\\x89\\x0a\\x31\\xba\\x48\\x83\\x59\\x4b\\x46\\x90\\x44\\x9d\\x07\\x8c\\x09\\x42\\x11\\x38\\x08\\xab\\x9b\\xb2\\x97\\x97\\x08\\x52\\xae\\x3a\\xc9\\x1b\\xb1\\x6f\\xb9\\x1f\\x99\\x37\\xa8\\x3a\\x7c\\x68\\x9e\\x0b\\x98\\xe7\\x8e\\xcb\\x94\\x9e\\xae\\x1f\\x2e\\x56\\x4d\\xcc\\xf4\\x16\\x29\\x89\\xa9\\xbe\\x94\\x7f\\xbe\\x5c\\x8f\\xb2\\xf6\\x5c\\x8b\\x1f\\x5e\\xbc\\x69\\xaf\\x68\\xcf\\xbd\\xe8\\x64\\x91\\xc4\\xf2\\xaa\\x67\\x4c\\x2b\\xbd\\x70\\x03\\x6e\\x95\\x1e\\x9e\\x8a\\x5b\\x53\\x25\\xe2\\x78\\x18\\x6b\\xb8\\x51\\xe3\\xd4\\x0a\\x6c\\x0a\\x13\\x8c\\x57\\x59\\x0a\\xc3\\x7d\\x56\\x00\\xc1\\x27\\xf1\\x4f\\x43\\xc9\\xe9\\x9f\\x59\\x5f\\x46\\xf1\\x7d\\x17\\x9a\\xb0\\xe1\\x5a\\xd6\\x9b\\xbd\\x0e\\xd2\\xbb\\xc3\\x6b\\xfb\\x2a\\x12\\x92\\xc5\\x16\\xb3\\x13\\x15\\x43\\x7b\\xe5\\xf9\\x66\\xae\\x7a\\xfc\\x7d\\x3d\\xcd\\xd6\\x99\\xfa\\xea\\x96\\x4b\\x23\\xc3\\x3b\\x97\\x2c\\xb8\\xb3\\xa7\\x08\\x87\\x1a\\xf5\\xe8\\xc3\\xdd\\x8c\\xf0\\x16\\xad\\x9b\\x20\\xdd\\x7e\\x46\\xfa\\x42\\x18\\x22\\xfa\\x57\\x13\\x91\\x2f\\x75\\x2e\\xcc\\x30\\x86\\x7f\\x26\\xc2\\xae\\xc2\\x02\\xa1\\x7e\\xe0\\x36\\xc3\\xfd\\xf0\\x59\\xe9\\x14\\xaa\\x6a\\x2b\\x2d\\x2e\\x6f\\x8b\\xa0\\x6e\\xe1\\xcc\\x21\\xe0\\x2c\\x58\\x36\\x05\\xf9\\xd2\\x7e\\x3e\\xfa\\x96\\x89\\xe2\\x4f\\xa0\\x9a\\x23\\x74\\x4e\\xbf\\xb1\\x59\\x66\\x4c\\x5b\\x51\\xb0\\xf6\\x4f\\x77\\x49\\xfd\\x58\\x0e\\x7f\\x2e\\x18\\x36\\x51\\x20\\x78\\xab\\xcf\\xdb\\x28\\x6b\\x3a\\x97\\x09\\x95\\x02\\xcd\\x92\\x99\\xb5\\x92\\xcf\\x28\\x94\\x60\\x9b\\xe7\\x37\\x86\\x78\\x73\\x4e\\x8b\\xe2\\xa6\\xe1\\x1f\\xc9\\xf8\\x28\\xb1\\x71\\x42\\x4f\\x8b\\x06\\xb2\\x1c\\x2c\\xb2\\x29\\x28\\xf2\\xa1\\x3a\\xa0\\xf0\\x13\\x8b\\x50\\xe0\\xe4\\x09\\x93\\x36\\x47\\xd1\\xd5\\x31\\x56\\xe9\\x3d\\xf0\\x0a\\xcb\\xc9\\x5a\\xf8\\x52\\x2f\\xa9\\x93\\xbf\\x90\\x3f\\x4b\\x39\\x7a\\x55\\x4a\\x55\\x6f\\x9b\\xfa\\xe5\\xc8\\x27\\x4c\\x44\\x83\\x6d\\x40\\x09\\x3b\\x42\\x48\\xce\\xb1\\xba\\xcf\\xe3\\x05\\x18\\x06\\x36\\xdb\\xbf\\x98\\x04\\xe8\\xf9\\x97\\x2c\\x0b\\xf8\\x2e\\x69\\x8d\\x2a\\x9b\\xcf\\xd8\\xc8\\x1b\\x7a\\x27\\xba\\xed\\x6e\\x05\\x25\\x90\\xfc\\xd7\\xd9\\x07\\xca\\x23\\x71\\xca\\xba\\xfa\\x82\\x47\\x43\\x13\\xe1\\xd7\\x35\\x33\\xee\\xc0\\xce\\xbc\\x4f\\x09\\xdc\\xd9\\x58\\xb1\\x9e\\x80\\xb4\\x82\\x76\\x46\\xf1\\xb7\\xf8\\xcc\\xf9\\x12\\x4e\\xc5\\xee\\x26\\xea\\xdd\\x21\\xfa\\x2b\\x3c\\xa8\\x29\\xa1\\x88\\x50\\x5d\\x0e\\xf6\\x08\\x44\\x96\\xb9\\xfd\\xad\\x02\\xa2\\x1b\\x30\\x27\\x73\\x86\\xdf\\x1b\\xa9\\x2a\\xfb\\xa5\\x09\\xb0\\xc8\\x0c\\x09\\xbd\\xf0\\xaf\\x60\\x65\\xd7\\xb9\\x5f\\x77\\x2c\\x63\\xd3\\xa1\\x3c\\x05\\xc1\\x49\\x70\\xe0\\xc5\\x5e\\x90\\x47\\xfc\\x5d\\x14\\xc0\\x01\\x9a\\x54\\xcd\\x9c\\x13\\xb2\\x0b\\xbc\\xee\\xff\\x6c\\x5c\\x74\\x20\\x4c\\x1b\\x4a\\x5e\\x0b\\x0f\\xdf\\xda\\xdf\\x0a\\xe9\\x28\\x00\\x87\\x4e\\xf2\\x07\\xfa\\x59\\xa8\\x20\\x87\\xf0\\x9a\\xd0\\x96\\x2a\\x1f\\xf7\\x2b\\xf3\\x4f\\xf2\\x56\\x35\\xb5\\xbc\\xa3\\x12\\xbc\\x37\\x3f\\x3b\\xb2\\x35\\xb2\\xba\\xb2\\xef\\x0f\\x02\\x5b\\x60\\x1f\\xa4\\x56\\xb2\\xfa\\xbe\\x6c\\xf8\\x07\\xad\\x45\\x9b\\xd2\\xcd\\xce\\xaf\\xdf\\x6d\\x40\\x68\\xae\\xad\\x4b\\x9f\\x90\\xf0\\x58\\x65\\xfc\\xdc\\xf4\\x73\\xfe\\xed\\x50\\x38\\x15\\x87\\x2b\\xb2\\x3a\\x10\\x45\\x7b\\x68\\x3f\\x42\\x40\\x12\\x57\\x6b\\xcb\\x4e\\x22\\xc1\\xfe\\x70\\x32\\x41\\xf6\\x0c\\xe0\\xf2\\x94\\xb4\\x20\\xdc\\xd9\\xc5\\xa3\\x64\\x58\\x92\\x9a\\x2b\\x0b\\x12\\x1e\\xa0\\xad\\x29\\xb8\\x8f\\xf1\\xad\\x56\\x54\\xea\\x4f\\x70\\xee\\x22\\x2e\\x07\\x88\\x2e\\xd1\\x3a\\x45\\xca\\x53\\x5b\\x7a\\xb9\\xfe\\x85\\x0f\\x90\\xc7\\xb3\\x2a\\xd0\\x84\\xc9\\x2b\\xf6\\x1c\\x24\\x65\\x71\\xe2\\x95\\xa9\\xb0\\xca\\xd6\\x1b\\xc4\\xdc\\x48\\x82\\x41\\xfc\\x97\\xd2\\xd2\\x0c\\x82\\xe0\\x14\\x11\\xfc\\xc2\\x71\\x20\\x6d\\x42\\x17\\x99\\x6a\\xc1\\xae\\xf5\\x50\\xb8\\x82\\xfd\\xb0\\xcd\\xa0\\x04\\xa5\\x64\\x67\\x12\\x49\\x6e\\xd9\\x85\\x7f\\xe3\\x71\\x98\\xff\\x55\\x98\\xa2\\xc5\\x66\\x0f\\x06\\x41\\x19\\xec\\xca\\x23\\x05\\xc0\\x7c\\xf4\\x82\\x0a\\x23\\x77\\xf6\\xa5\\xe5\\xa9\\x60\\xed\\xc3\\x05\\xfe\\xd0\\x7b\\x82\\x20\\xf4\\x61\\xe6\\xf7\\xaf\\xcd\\x0b\\x8a\\xe2\\x65\\x65\\xe6\\xe4\\x64\\xfa\\x34\\x54\\xda\\x68\\xdc\\x5a\\xb3\\x34\\x2a\\x9e\\x3f\\x29\\xbd\\xbc\\x96\\x8c\\x0f\\x6a\\x6e\\xc5\\x14\\x80\\x1b\\xd1\\x85\\x09\\x59\\xd2\\xe0\\x8c\\x15\\x14\\xe0\\xfc\\x43\\x73\\x51\\x06\\x9e\\x59\\xf9\\xdb\\xf0\\x6d\\xde\\xe9\\x95\\xde\\x1a\\xa8\\xe0\\x20\\x88\\x8c\\xd9\\x1a\\xf2\\x5c\\xa8\\xf4\\xa1\\x4b\\xac\\x6b\\xe7\\x22\\xb3\\x07\\x9b\\xcc\\x7a\\x56\\x75\\x39\\x20\\x2a\\xda\\x54\\xec\\x74\\xaa\\x30\\x7e\\x0a\\xf9\\x55\\x8f\\x2f\\x67\\x08\\x6a\\xe8\\xce\\x4f\\x9c\\x3e\\x20\\xe4\\x9b\\xbb\\xbb\\xce\\x3a\\x05\\x90\\x95\\x10\\x13\\xfd\\xcc\\xdb\\x70\\x70\\x90\\xb3\\x46\\xcd\\x72\\xb4\\x3e\\xea\\x59\\xbb\\x75\\xcd\\x71\\xff\\x78\\x25\\x3c\\xe5\\xc1\\xd6\\x88\\x74\\xf9\\xd1\\x3d\\xec\\xe0\\x11\\xdc\\x9c\\x9d\\x6b\\x79\\xfd\\xcd\\xde\\x99\\xcf\\x6f\\x93\\xbc\\x9d\\x61\\xdb\\x2e\\x5c\\xfd\\xdd\\x5d\\xee\\x19\\x59\\x7e\\xb9\\x42\\x72\\x70\\x07\\xa5\\xad\\xf6\\x09\\x60\\x78\\x2c\\xe8\\x29\\x94\\x10\\xf7\\xa9\\x41\\x61\\xf1\\x97\\xbd\\x68\\x6f\\xf1\\xd4\\xd6\\xf6\\x8c\\xe0\\xd7\\x98\\x24\\x44\\x40\\x3c\\x85\\x20\\xa6\\x45\\x0c\\x63\\x88\\xee\\x0b\\x5f\\xfb\\xe3\\x8d\\x83\\xa4\\x05\\x7c\\x0b\\x2d\\x30\\xa3\\xe7\\xe2\\x0d\\x34\\x95\\xa8\\x5d\\xc8\\xa1\\x32\\x7e\\x80\\x0e\\xa4\\x5b\\x0b\\x3b\\xbb\\xcc\\xb2\\xf1\\x43\\x51\\x20\\xed\\xaa\\x25\\x97\\x3f\\x30\\x6e\\x54\\x29\\x57\\xd4\\x8f\\xc6\\x32\\xde\\x13\\xb3\\x10\\x34\\xe8\\x37\\x75\\x68\\xb0\\xd8\\xe5\\x16\\x6f\\xa1\\x86\\x7a\\x74\\x31\\xa9\\x74\\x68\\xea\\x87\\x88\\x68\\x07\\x05\\x2c\\x25\\x55\\xd8\\xd9\\x43\\xb0\\x86\\xc2\\x29\\x1d\\xfc\\x17\\x51\\xbf\\x29\\x89\\xe7\\x7d\\xc8\\x40\\xc9\\xed\\x3a\\xfd\\xa8\\xde\\xd6\\xa1\\xbc\\x52\\x72\\x15\\x97\\xfc\\x76\\xff\\xa4\\x56\\x5c\\x1f\\xa5\\xd7\\x8b\\xd6\\x7d\\x85\\xac\\xfb\\xc4\\x12\\x9e\\x3b\\x51\\xb5\\x72\\x54\\xe1\\xb0\\xbc\\x32\\xf2\\x78\\x61\\x71\\x72\\xb5\\xc8\\x03\\x67\\x35\\xd5\\xc8\\x48\\xd5\\x0e\\x88\\x6e\\xd9\\x6a\\xb8\\x7c\\x8e\\x99\\xe4\\x19\\xbc\\x6d\\x89\\x5d\\x15\\x5b\\x80\\xa1\\x87\\x47\\xf1\\x75\\x54\\x5f\\x90\\xdf\\xdf\\x19\\x82\\x04\\x49\\x82\\x20\\xdf\\x6a\\x01\\x8a\\x94\\x88\\x89\\xa9\\x88\\x7c\\xa8\\xb4\\x58\\x42\\x38\\xa0\\xc7\\x8b\\x2e\\x79\\xe2\\xfd\\xb1\\x3c\\xb5\\x9c\\x82\\x25\\xdc\\x39\\x9c\\x08\\x16\\x24\\x0d\\xae\\x05\\x8c\\x5d\\xcb\\x16\\x08\\x96\\x9e\\x48\\x5e\\x17\\x38\\xd1\\x90\\xdd\\x26\\x36\\xf4\\xca\\xeb\\xac\\x20\\x27\\x34\\xaf\\x9e\\xe1\\x8d\\xe9\\xd8\\x34\\x96\\x2d\\xa9\\xc3\\xc7\\xc1\\xc5\\x20\\x20\\x5a\\xf5\\xb8\\xea\\x54\\xee\\x42\\xf0\\xf0\\xe0\\x68\\x1f\\xd4\\xf0\\x38\\x65\\xfd\\x30\\x1e\\xe6\\x85\\xf7\\x4b\\xee\\x62\\xec\\x7f\\x01\\x00\\x40\\xff\\xbf\\xd4\\x1e\\xbf\\x9f\\x13\\x0f\\xef\\xbf\\x31\\xe3\\x17\\x60\\xc0\\x43\\xa3\\x87\\xf6\\xdc\\xb2\\xb2\\xf7\\xf0\\x89\\xf0\\x94\\x90\\xb1\\x57\\x44\\xc5\\x4d\\xba\\x1b\\x3c\\x05\\xda\\xe0\\x6c\\xb5\\x14\\x09\\x8e\\x10\\x63\\x63\\xbe\\x44\\xbf\\xf2\\xf1\\x3d\\xe5\\x96\\xcc\\x82\\x1a\\x9e\\xa4\\xa8\\xb0\\x3f\\x43\\x3a\\x5b\\xb7\\xac\\x64\\x4e\\xad\\x5e\\x17\\x8d\\xd8\\x08\\x56\\xfe\\x5e\\xeb\\x86\\x47\\xec\\xac\\xcb\\xba\\x0d\\x1b\\x5b\\x83\\xfe\\x63\\xe4\\xb6\\xb6\\xd8\\x25\\x93\\x68\\x04\\x52\\x6b\\xf0\\x76\\xc7\\xf5\\x8e\\x4b\\x8e\\x3d\\x28\\x0a\\x12\\x07\\xee\\x5f\\x1f\\x7d\\xb5\\xb7\\xa9\\xba\\xb0\\xb7\\x88\\x5b\\x57\\xb1\\x32\\x0c\\xa5\\x82\\x66\\xf0\\xff\\xa3\\xd5\\x86\\x68\\x7f\\xbf\\x85\\xca\\xbf\\x5c\\xe0\\x65\\x1d\\x56\\xe4\\x04\\x3e\\x3f\\x3d\\x17\\x18\\xdf\\x8a\\x24\\x96\\xf1\\xdd\\xdf\\x2b\\x5f\\x04\\x0b\\xfd\\xde\\xde\\x0b\\xa6\\xe7\\xd9\\x64\\xe4\\xdb\\xcb\\x63\\x3f\\xfd\\x5e\\x39\\xf9\\xaf\\x17\\x27\\x90\\xbd\\x2a\\x8d\\xce\\x31\\x8f\\xca\\xe8\\x00\\xc0\\x16\\x31\\x48\\x26\\x07\\x30\\x75\\xa2\\x23\\x90\\x74\\x00\\x74\\x7a\\x29\\xf4\\xaf\\xc5\\x11\\x49\\x12\\x69\\x2b\\x6d\\xf7\\xae\\xf2\\x78\\x23\\xf5\\x26\\xec\\x81\\x0c\\x28\\xef\\x53\\xf8\\x19\\x29\\x9e\\xce\\xed\\x91\\xf9\\xa5\\xab\\x16\\x16\\x3a\\x6a\\x21\\x53\\xbe\\xee\\xd6\\x0b\\x99\\x2c\\xbf\\xb1\\x24\\xe1\\xb2\\xe4\\xf3\\x48\\x42\\x52\\x5b\\xc3\\x9f\\x13\\x60\\x83\\xe6\\xcd\\x10\\x64\\x7a\\xf2\\xd1\\xf8\\x52\\xa2\\x10\\xb9\\x46\\x2a\\x66\\x32\\x7b\\x6a\\x7b\\x4e\\x8a\\x85\\xe9\\x7b\\xae\\xbe\\xe1\\xaa\\x45\\x6f\\x3c\\x93\\xb9\\x70\\xeb\\x75\\xe5\\x8c\\x3c\\xbf\\xba\\xf1\\x7b\\x92\\xc7\\x27\\x95\\xb1\\xe4\\x5b\\xd3\\x48\\xde\\x8a\\x90\\x41\\x72\\x42\\xc7\\x46\\x97\\x60\\xad\\xc8\\x87\\xa3\\x40\\x35\\xc7\\x02\\x4b\\x44\\xc8\\xfc\\x1d\\x3f\\x16\\xbd\\xd2\\x1e\\xf7\\x85\\xf1\\x71\\x29\\xab\\x2c\\x84\\x59\\x36\\xbc\\xa0\\x64\\xcf\\xdf\\x7a\\xea\\xd6\\xd7\\xd0\\xcd\\xf5\\x4b\\x34\\xd2\\xac\\x93\\xb6\\xc3\\x2f\\xf0\\x8a\\x9a\\xab\\xc2\\xa9\\x9a\\x53\\x15\\x93\\x9f\\x29\\x14\\x66\\x78\\x8c\\x8a\\x64\\xe0\\x99\\xa1\\x10\\xd4\\xdb\\xa7\\xc8\\xf9\\x7a\\x43\\x42\\xf3\\x76\\xac\\xce\\xff\\x3d\\x74\\x78\\x39\\x59\\x13\\x75\\xdc\\xd9\\xdc\\x8d\\x00\\xdc\\x34\\xe0\\x47\\x36\\x0c\\xad\\x2b\\xe3\\x86\\xac\\x41\\x50\\x55\\xca\\x93\\x83\\x0c\\x22\\xb2\\x4b\\xe3\\x2e\\x05\\x56\\xb6\\x08\\x56\\x80\\x06\\xbd\\xd4\\x0c\\xba\\x23\\xc0\\xd1\\xf8\\xf0\\xb9\\x37\\x30\\xe9\\x63\\x8f\\x54\\x7e\\xfb\\x58\\xfa\\x98\\x69\\x87\\x7e\\xd3\\x33\\x81\\x3d\\x0f\\x1b\\x8a\\x12\\x71\\xe9\\x06\\x9c\\x39\\xf6\\x9c\\x73\\xe7\\xee\\x58\\x4b\\x1f\\xfb\\xa5\\xdd\\x9d\\x0c\\x41\\x60\\x18\\x1e\\x0a\\x19\\x01\\xff\\x1d\\x48\\xc5\\x6f\\xc7\\x5d\\x1a\\xd3\\xa7\\x90\\x64\\xe7\\x63\\x64\\xe6\\xee\\x5a\\x4c\\xb1\\x0c\\xe2\\x05\\x22\\x24\\xd6\\xec\\x0b\\x6c\\x58\\x17\\x26\\x42\\xa1\\x89\\x27\\x91\\x46\\x6a\\x1f\\x4e\\x2f\\xbf\\x61\\x39\\x7d\\xf5\\xc2\\x03\\x60\\x3a\\x6e\\xcf\\x98\\xad\\x56\\x27\\x34\\xf1\\x25\\x78\\x04\\x4d\\x98\\x3c\\x5c\\x4e\\x5f\\xb7\\xb0\\x90\\xce\\x50\\xab\\xe4\\x7c\\xe3\\xe0\\x64\\x48\\x10\\x55\\x15\\x1c\\xdf\\xd3\\xcf\\x4d\\x9c\\xef\\x73\\x9e\\x9a\\x88\\x0c\\x32\\x09\\xdc\\xd8\\xda\\x22\\x7a\\x4c\\x1b\\xdb\\xb6\\xf1\\xb8\\xe9\\x50\\x0d\\xba\\x2f\\x45\\xb6\\x2d\\xb7\\xb3\\x56\\x43\\x6f\\x34\\x68\\x3d\\xe5\\xc1\\x44\\x3f\\xe9\\x82\\xf6\\x3f\\x10\\x25\\xd8\\xa9\\xa6\\xb5\\xe8\\xf7\\x25\\xa2\\x64\\x97\\x60\\x1d\\x59\\xa4\\x8e\\xd4\\xf9\\xd4\\x4f\\xa0\\x1f\\xe3\\x62\\xcb\\x34\\xc0\\x23\\x81\\x43\\x32\\xcc\\xed\\x2b\\xdc\\xaa\\x37\\xa5\\x72\\x59\\x6a\\x12\\xa8\\xe0\\x63\\x9b\\xe0\\x94\\x9c\\x9b\\x5d\\x2d\\xb7\\xab\\x86\\x58\\x18\\x36\\x9a\\x0d\\x95\\x24\\x47\\x58\\x18\\x98\\x5d\\x5e\\xa5\\xbf\\xf6\\x70\\x7c\\x8c\\x50\\x13\\x24\\xd8\\x42\\x9c\\x5d\\xa5\\x9d\\x75\\xfc\\x0b\\xeb\\x9c\\x67\\xcb\\x82\\xcd\\x45\\x4a\\x7b\\x9c\\xab\\x80\\x71\\xc2\\x0f\\x5f\\x51\\xd5\\x95\\x85\\x4b\\x2b\\x0b\\x0b\\x2b\\x2a\\x2e\\xdd\\x7d\\xe8\\xd0\\x52\\xef\\xd2\\xd2\\xa1\\x43\\x77\\x1f\\x4e\\xad\\xa7\\xda\\x0b\\xf4\\x21\\x6d\\x5f\\x01\\x5d\\x87\\xc9\\x63\\xb2\\x09\\xba\\x64\\x4b\\x8d\\x85\\xbb\\x14\\x5b\\x62\\xf0\\x5d\\x53\\xff\\xab\\x24\\x96\\x58\\xd9\\x2a\\x31\\x6f\\xcf\\x20\\xd1\\x52\\xe2\\xad\\x7f\\xa0\\x9a\\x0f\\x09\\x1e\\x50\\xa0\\xa8\\xac\\x29\\x07\\x3a\\x34\\x84\\xba\\xb6\\x6e\\x9a\\xc5\\x12\\x14\\x99\\x4b\\x88\\x71\\xe2\\x81\\x2e\\x12\\x09\\xe5\\xd8\\xb5\\x5e\\xf4\\x43\\x63\\x02\\x13\\xa0\\x89\\x1c\\xa8\\x22\\x27\\x53\\xef\\x8c\\x29\\x2b\\xc1\\xa3\\xab\\x9d\\x8e\\x4a\\xf6\\x37\\x4d\\xde\\xac\\xf3\\xd0\\xd6\\x4d\\xdc\\xed\\x27\\xbb\\x86\\x8a\\xeb\\xaa\\x11\\x49\\xbe\\xa6\\xff\\x08\\x5a\\xfa\\x2d\\x8a\\x83\\x8d\\x83\\x28\\x47\\x03\\x4d\\xef\\xaf\\xec\\xb0\\x8e\\x39\\xab\\xac\\x5f\\x81\\x9a\\xcf\\xc5\\x92\\xb1\\x3b\\x26\\x26\\x23\\xfe\\xf3\\x13\\x93\\x93\\x13\\x85\\x3d\\xb3\\xef\\x1f\\xa2\\x08\\xf3\\xd9\\xc0\\xe4\\x64\\x20\\x3b\\xe9\\x5f\\x83\\x41\\xd0\\x84\\xb3\\x42\\x36\\x2b\\x7c\\x6c\\x94\\x36\\xdb\\x8f\\xf3\\xb8\\xe3\\x48\\x6c\\x12\\xe5\\x77\\x97\\x5a\\xaf\\x40\\x37\\xf0\\x75\\x7a\\xaa\\xca\\x58\\x75\\x09\\x31\\x56\\xe3\\x71\\x3e\\x1a\\x3d\\x30\\x37\\x27\\xcc\\xcc\\x98\\x24\\x8f\\xc0\\x17\\x93\\x2e\\x89\\xfe\\x0c\\x5f\\x8d\\x09\\x89\\xa9\\x03\\xc5\\x46\\x41\\xc8\\x9c\\x9c\\x26\\x3c\\x58\\xd9\\xe6\\x78\\x06\\xdd\\x7c\\x65\\x9e\\x33\\xfd\\x95\\x25\\xd9\\x04\\x2b\\xc9\\x2c\\x69\\x61\\x90\\x0e\\xa6\\x90\\x63\\x65\\x19\\x76\\x85\\x34\\xb9\\x48\\xb6\\x86\\xc4\\x1a\\x69\\x2b\\x65\\x5e\\xa4\\xee\\x56\\x04\\x83\\x39\\xb2\\x48\\xc5\\x7c\\x22\\x91\\x4f\\x3e\\x45\\xf4\\x30\\x3c\\xe3\\x99\\x0e\\x79\\xbd\\x5e\\xac\\x32\\x63\\xd8\\xe3\\x0d\\xa5\\x19\\x2f\\xcf\\x4c\\x4d\\x91\\x07\\xde\\x54\\x90\\xf3\\xc0\\x03\\xd6\\xeb\\x0d\\x4d\\x33\\x1e\\x9e\\x11\\x77\\xae\\x67\\xef\\x12\\x95\\x20\\x36\\xe6\\x61\\x0a\\x64\\xd7\\x23\\xe5\\xf5\\xe0\\x14\\xe3\\xf3\\x31\\xde\\x59\\x8f\\x27\\x22\\x44\\xb6\\xbb\\xbd\\xa4\\x17\\x7b\\x66\\x3d\\x4c\\xc4\\x5d\\x5b\\x22\\x15\\x72\\x60\\x3c\\xec\\xb9\\x93\\x70\\x78\\xb7\\x82\\x70\\x47\\x31\\x4d\\xa5\\xde\\x25\\xb5\\x93\\xc1\\x4e\\x01\\x46\\x20\\x66\\xfb\\xf1\\x42\\xef\\xeb\\xb8\\x0e\\x7d\\xb4\\x9e\\x47\\x6a\\x7b\\x54\\x1b\\x34\\x80\\xfc\\x26\\xe4\\x43\\x45\\x62\\xaf\\x89\\x77\\xe7\\x41\\xfc\\xc7\\xca\\x22\\x81\\x9a\\x97\\x49\\x07\\x39\\xfe\\xb6\\xba\\xff\\x00\\x6c\\x24\\xb9\\xee\\x84\\xf1\\x2e\\xa4\\x06\\x49\\x30\\x80\\x40\\xa3\\x09\\x80\\x44\\x20\\x08\\x80\\xec\\x66\\x06\\x41\\x70\\x86\\x33\\x9c\\x9e\\x1c\\x38\\xbb\\x93\\x16\\x98\\xd9\\xd9\\x20\\x6e\\xd6\\x12\\x2b\\xed\\xac\\xb4\\xb3\\x79\\xa5\\x56\\xdc\\x24\\xf9\\x24\\x4b\\x18\\x85\\xb3\\xa4\\xd5\\xfa\\x94\\x08\\xcb\\x79\\x25\\x67\\xc1\\x92\\xa3\\xd6\\xb2\\x4f\\x3a\\x81\\xce\\xf7\\xad\\x83\\xac\\xbb\\xe1\\x9d\\xe5\\xf3\\xff\\xd6\\xe9\\xf3\\x61\\xfe\\xef\\xbd\\xea\\x06\\x8a\\x20\\x39\\x92\\xef\\x24\\xfb\\x3e\\x12\\x5d\\x1d\\xd0\\xa8\\xaa\\xae\\xae\\xf0\\xe2\\xef\\x0d\\x7b\\xe8\\x75\\xa2\\x3c\\x7a\\x9e\\xd5\\x92\\xda\\xfe\\xb9\\xb9\\xfd\\xd9\\xec\\x49\\x4d\\x76\\x39\\x1d\\x63\\x7b\\xf7\\xcf\\xe9\\x27\\xe6\\xa7\\x51\\x3d\\x23\\xeb\\xcb\\x27\\xc0\\x82\\xff\\xef\\x3a\\x13\\xaf\\x25\\x58\\x22\\xd1\\xf8\\x6d\\x97\\xcc\\xa0\\xfb\\xa8\\xcc\\xe3\\x62\\xbb\\x12\\x89\\x04\\x3c\\x8d\\x20\\x95\\xe2\\x92\\xb2\\x42\\x92\\x98\\x10\\xb6\\x45\\xbe\\x55\\x25\\x29\\x73\\x55\\xb4\\x95\\x60\\x4a\\xf9\\x9a\\x54\\x5f\\x5d\\x6d\\x17\\x46\\x02\\x3b\\x2b\\x15\\x1d\\x12\\x49\\xe9\\xb9\\x25\\x8e\\xe2\\x91\\x49\\xc6\\x08\\x26\\x76\\x34\\x2c\\x9a\\x13\\x32\\x53\\x4a\\xa5\\xfb\\x55\\xbd\\x78\\xa5\\xd8\\x90\\x8a\\x28\\x68\\xa4\\xfc\\x5f\\x39\\x7d\\x7a\\xb2\\xf7\\x8d\\xbb\\x9f\\xd0\\x41\\x72\\x5b\\xc7\\x06\\xaa\\xfb\\x39\\xc5\\x11\\x85\\x5c\\xff\\x98\\x28\\xc3\\x24\\xfa\\x8e\\x14\\xe6\\x81\\xdc\\x40\\x4b\\x15\\x3b\\xdf\\x42\\x96\\x41\\xc7\\xc6\\xf2\\x60\\x55\\xc3\\x22\\x9c\\x30\\x97\\x54\\x86\\x66\\x86\\x13\\x6f\\x64\\x9f\\x8a\\xee\\x6e\\x3c\\x0d\\x65\\xf4\\x24\\xd9\\x2f\\x87\\x1e\\x19\\x2e\\x39\\x64\\xc7\\x25\\xe6\\xf7\\x87\\xfb\\x16\\xfd\\xb5\\x51\\xdf\\x70\\xfc\\x2f\\x1b\\xb7\\x44\\x77\\xeb\\x30\\x16\\x02\\xbe\\x64\\xe3\\x6a\\xd8\\xf7\\x48\\xe2\\xd4\\x04\\x63\\x0f\\x0e\\x80\\x94\\x53\\x97\\x44\\xd9\\x08\\xc9\\x53\\x0a\\xdc\\xa7\\x42\\x36\\x62\\x2f\\x3d\\x0a\\x12\\x91\\x0a\\xbb\\x01\\x0e\\x40\\x46\\x52\\xb1\\xac\\xd4\\x3e\\xc9\\x3e\\x49\\x73\\x68\\x18\\xee\\xe6\\x26\\xfb\\xa9\\xbc\\xb5\\x57\\x88\\x3f\\xc1\\x77\\x58\\xbc\\xf0\\xd4\\xde\\x9b\\x97\\x9e\\xfb\\xca\\x9e\\x4f\\x3c\\x14\\x1d\\x8d\\x44\\x03\\xc1\\x28\\x1b\\x7b\\xea\\xc2\\xd2\\xcd\\x2f\\x7f\\xe5\\xb9\\x87\\x3e\\xf1\\x67\\x81\\x68\\x64\\x34\\x1a\\xe5\\x92\\x16\\x92\\xf8\\x74\\x41\\x5b\\xb6\\x94\\x66\\x20\\x15\\x36\\x35\\x13\\x3e\\x1b\\x98\\x98\\xed\\x3e\\x13\\xe9\\xeb\\x58\\x65\\xb2\\x72\\x09\\x4d\\x3a\\xcd\\x96\\x1d\\xca\\x06\\x9c\\xc3\\xa7\\xde\\x2e\\xb3\\x6c\\x5a\\x7a\\x06\\x36\\xe7\\x68\\x73\\xd9\\x56\\x4e\\x6f\\x20\\xcb\\x53\\x2b\\x93\\xab\\x64\\x77\\xda\\x66\\xb7\\x1a\\xdd\\xc6\\xcb\\x48\\x69\\x29\\x10\\x44\\x03\\xd6\\xab\\x94\\xcb\\x66\\x57\\x23\\x2a\\x05\\xac\\xc1\\x05\\x2b\\x9c\\x4e\\x29\\x86\\xf2\\x9b\\x6c\\x32\\x50\\xa0\\x7a\\xa5\\xc5\\x67\\x2c\\x14\\xb0\\x8b\\xa9\\x6f\\x60\\x99\\xe0\\x35\\xe9\\x6d\\x97\\x4f\\x94\\x4e\\x30\\xbd\\x93\\x3f\\x5c\\xe7\\x10\\x18\\xd3\\x4b\\xbd\\x9d\\xac\\x12\\x6a\\xbc\\x7a\\x59\\xd7\\xdf\\xe7\\xeb\\x6d\\xfc\\x1d\\x3d\\x73\\x67\\xaf\\x6f\\xc4\\xe7\\xc3\\x75\\xc9\\xa6\\x24\\xbb\\xb8\\x3e\\x86\\xb4\\x58\\xb0\\x70\\x14\\xd4\\x96\\x44\\x1b\\x0c\\xa4\\x51\\x30\\x7f\\x12\\xc8\\xb5\\x1b\\x62\\x37\\xc0\\xe7\\xe4\\xed\\xd4\\x9c\\xb5\\x60\\xcf\\x9b\\xdf\\xdc\\x13\\xfc\\x19\\xb8\\x64\\x7f\\x98\\xce\\x4b\\x0e\\x7c\\xfe\\xf3\\x01\\x69\\x1b\\xbb\\x68\\x58\\xff\\xd1\\x72\\x2e\\x1b\\x54\\x0b\\x68\\xee\\x6d\\x4b\\x28\\x98\\x74\\xe4\\x1e\\x30\\x80\\x7e\\x90\\x1b\\x41\\xf3\\xb6\\x29\\xde\\x73\\x04\\xcd\\xa4\\xab\\x64\\x2b\\xfd\\xef\\x78\\x43\\x6f\\xee\\x21\\x6c\\xd3\\xfa\\xf6\\xe8\\xa3\\x31\\xfb\\xc3\\x1e\\x15\\x4e\\xa8\\x16\\x34\\x77\\xd3\\x7a\\x31\\xb8\\xfd\\x6a\\x01\\x3a\\x22\\xb8\\x4a\\x0a\\x88\\xab\\x44\\x13\\x53\\xb2\\x46\\xf6\\x3e\\x06\\x4a\\xcb\\x6c\\x8e\\x98\\xf3\\xc3\\x25\\xbc\\xa2\\x93\\x36\\x42\\xe0\\xe2\\xbc\\x64\\x29\\x98\\x27\\xbb\\x5d\\x60\\xc3\\x66\\xe7\\x86\\x5b\\x46\\x91\\x7c\\xaf\\x32\\x74\\xa0\\x09\\xb5\\x6c\\x7a\\xb9\\x73\\x02\\x27\\x31\\x58\\xc5\\xa8\\xe8\\x89\\x50\\xe8\\xdd\\x82\\xf0\\xe5\\x71\\x26\\x1b\\x95\\x59\\x19\\x88\\x24\\xf4\\x75\\x99\\x9d\\xed\\x0d\\xa6\\xd0\\x88\\x90\\xd5\\x94\\x2b\\xfa\\x72\\xe8\\x0b\\xe1\\x91\\x70\\x78\\xe4\\xdb\\x94\\xfa\\x1b\\xff\\xa0\\x54\\xec\\xef\\xe5\\x59\\xfb\\x37\\x4d\\xdf\\x1b\\x4b\\xf2\\x96\\xc6\\xe7\\xa7\\xbe\\xe8\\xdf\\x89\\x4b\\xc8\\xcd\\x43\\x75\\x54\\x56\\xd1\\xd6\\xb5\\x8f\\x93\\x5b\\x96\\xd9\\xf2\\x38\\xba\\x59\\x4e\\x68\\x09\\x19\\x96\\x4c\\xc3\\x80\\x59\\xd2\\xf4\\xd1\\xf7\\xa2\\x9a\\x2e\\x30\\x30\\x10\\x90\\x84\\x11\\x8a\\x9e\\x43\\x24\\x19\\x01\\xc2\\x1b\\xb8\\x02\\x77\\x01\\x1c\\x87\\xd8\\x2f\\x64\\x4f\\x67\\x81\\x7a\\x9f\\xf5\\x34\\xcc\\xff\\x76\\xfa\\xbf\\x9d\\x66\\xab\\x78\\x0e\\xa7\\xfd\\xaf\\xc2\\x69\\x53\\x56\\x44\\x6f\\xac\\x9f\\x66\\x55\\xd9\\xdd\\x12\\xfc\\x17\\x60\\x6d\\x65\\xd2\\x4f\\xfe\\xe4\\x4f\\xb2\\x77\\xf1\\x82\\x83\\xbf\\xfa\\xab\\xc1\\x8d\\x37\\xde\\x77\\x9f\\x8b\\x5e\\x4f\\x3d\\xec\\x7b\\xe8\\x21\\xee\\x2d\\x46\\x7a\\x04\\x5b\\xfe\\x59\\x40\\x09\\x26\\xd0\\xc8\\xa8\\xd8\\x34\\x99\\xd4\\x80\\xaf\\x1a\\x66\\xa5\\xb4\\xa1\\x69\\x15\\xbd\\xae\\xeb\\xbc\\x6f\\x19\\x24\\xc1\\xed\\xb0\\x3c\\x9d\\xa0\\x99\\x40\\x22\\x9f\\x7b\\xec\\x8a\\xf7\\x31\\x0d\\x6e\\xaf\\x6b\\x15\\x56\\x86\\xaf\\x04\\xdb\\x5c\\x89\\xa1\\xe5\\x0d\\xc8\\x05\\x25\\x90\\x5b\\xb1\\x22\\xac\\x1a\\xa5\\x35\\xac\\xff\\x5e\\xeb\\xe9\\xbd\\xd2\\x61\\xea\\xf5\\x05\\x0f\\x72\\xb8\\x59\\x50\\xab\\x11\\x0f\\x4b\\xdc\\x10\\xba\\xa6\\xf0\\x73\\x54\\x49\\x79\\x2c\\x46\\xbb\\x30\\xe9\\x82\\x75\\x0f\\xe4\\x1b\\x1e\\x38\\x5b\\x72\\x16\\xe6\\xb3\\x19\\x36\\xda\\x33\\xe8\\x8a\\x25\\x3a\\x6b\\xe9\\x4e\\x6f\\x34\\x1e\\x48\\x0d\\x0e\\x76\\x79\\xdc\\xde\\x8e\\xde\\x50\\x74\\x7a\\x97\\x36\\xe6\\xcc\\xcf\\x79\\x96\\x92\\x83\\xa3\\x7b\\x0a\\x8c\\xb9\\xe5\\x9e\\xce\\xc1\\x45\\x7f\\xf7\\x40\\x57\\x6a\\xb6\\xab\\xbf\\xaf\\x97\\xf9\\xbb\\xe4\\x87\\xd3\\x19\\x6f\\xa6\\x5b\\xee\\xf8\\xc7\\x11\\x9f\\x37\\x1a\\x8b\\xc7\\x46\\xb3\\x23\\xfe\\x81\\xfe\\xd0\\xc8\\x9e\\xc2\\x70\\xfe\\xf0\\x52\\x36\\x9a\\x3c\\xd6\\xe9\\x05\\x03\\x0e\\xf7\\x71\\xa5\\x37\\xe8\\xec\\x9a\\x1e\\xe9\\x1d\\x19\\x8e\\x86\\xd8\\xa0\\xcb\\xb9\\xf9\\x2d\\x86\\xb9\\xbe\\x24\\x47\\x34\\x7c\\x60\\xab\\xd6\\xae\\x5e\\x42\\xc7\\x19\\xea\\x28\\x75\\x5c\\xdd\\x6a\\xf5\\x3a\\x7a\\xca\\x30\\x89\\x9b\\x04\\x58\\x2b\\xbf\\xd3\\xd6\\x9c\\x93\\x6d\\x3e\\xa7\\x5d\\xb9\\x1d\\x1e\\x0e\\x10\\xd8\\xcb\\xf0\\x76\\x46\\xc8\\xd5\\x8a\\x86\\x05\\xed\\x59\\x79\\x7c\\x69\\x69\\xbc\\x54\\x8a\\x66\\xb3\\xd1\\xd2\\xea\\x5a\\xa3\\x01\\xbb\\x92\\x75\\x89\\x95\\xf7\\x5d\\xd8\\x37\\x06\\x74\\xde\\x98\\xa9\\x69\\xd3\\xb0\\xc3\\xd3\\xef\\xa3\\xb4\\xf1\\xfb\\x98\\x13\\x83\\x95\\xbc\\x4a\\xcf\\xde\\x43\\xb6\\xb5\\x29\\x9a\\x02\\x81\\x38\\x85\\x2e\\xc0\\x9e\\x3b\\x59\\xbb\\x71\\x7a\\x69\\xe1\\x66\\xff\\x6c\\xe8\\xf2\\xf1\\x22\\x8b\\xdd\\x50\\xbb\\x61\\x74\\xff\\x5c\\xdf\\xa1\\x12\\xef\\x97\\xc0\\xe5\\x31\\x05\\x79\\x96\\x34\\xaa\\xc6\\x89\\xab\\xdb\\xd0\\x24\\x87\\xe8\\xc5\\xc1\\xf9\\xde\\xe6\\x8c\\x5a\\x5e\\x0f\\x58\\x2b\\x95\\xb6\\xed\\x2a\\x15\\xd8\\xc6\\xbb\\xa2\\xcd\\x0f\\x76\\x75\\x7d\\x7d\\xd3\\xd2\\x74\\x50\\x93\\x18\\xd7\\xe0\\x5a\\x3a\\x19\\xb0\\xc6\\x21\\x0b\\x9b\\xfa\\xeb\\x1f\\xea\\xbf\\xe1\\xe3\\x95\\x0a\\x33\\x7a\\xdf\\x76\\xcb\\x1b\\xce\\x57\\x2a\\x36\\x5d\\x44\\xf7\\xe1\\xd3\\xda\\x77\\xca\\xb2\\x0a\\x29\\x53\\xac\\x1f\\x80\\xda\\x4e\\xf8\\x15\\x72\\x83\\xf0\\x5b\\x71\\xe5\\xb3\\x57\\x63\\x25\\x64\\xd5\\x35\\xa0\\x82\\x4d\\x50\\x36\\x0f\\x59\\x68\\x9d\\x21\\x3f\\xd0\\xae\\x0f\\xa0\\x45\\xf9\\x25\\x20\\x0c\\x6e\\xf5\\x87\\xfa\\xfa\\x42\\x2c\\x01\\xa7\\xf0\\x69\\xcb\\x85\\x38\\x46\\x31\\x97\\xcd\\x7e\\x95\\xf5\\x27\\x49\\x18\\x52\\x2d\\x36\\x5d\\x3e\\xa1\\x2e\\x75\\xee\\xe4\\x30\\x05\\x86\\x07\\x4d\\x3a\\xa1\\x5f\\xc8\\x15\\x67\\x15\\xf2\\x30\\x21\\xbd\\xc2\\x08\\x58\\x0b\\x8c\\x83\\x8d\\xf8\\xbc\\xb4\\x1b\\x78\\x85\\x03\\x60\\xcb\\xb7\\x0c\\x2d\\xa4\\xe4\\xa8\\x47\\x3b\\xad\\xad\\x00\\x5b\\x96\\x1f\\x07\\x3d\\x78\\x40\\x5f\\xc2\\x64\\x8c\\x5f\\x2a\\x68\\xb6\\x04\\xe3\\x81\\xb4\\x0e\\xf4\\xb3\\x80\\x75\\x3b\\x5a\\xf8\\x29\\x35\\xb3\\xba\\x4e\\x5a\\x41\\x4c\\x60\\x99\\xd5\\x81\\xe6\\xd6\\x8b\\xb0\\x06\\xe9\\x58\\x33\\xdd\\xd4\\xaa\\xf0\\x95\\x89\\xdf\\x30\\xc3\\x84\\x7b\\xd7\\x99\\xa4\\xeb\\x0d\\xee\\x8f\\x05\\xe9\\x35\\x09\\x6e\\xad\\x92\\x83\\x16\\x33\\xe1\\x0b\\xb4\\x78\\x80\\x5b\\x61\\x43\\xeb\\x77\\xfa\\x5e\\x87\\xaf\\xd7\\x20\\x2b\\xe2\\xe7\\x39\\xe5\\xef\\xc6\\x79\\x33\\x9d\\xce\\xbb\\x75\\x66\\x34\\xe0\\xb1\\x61\\x81\\xd2\\x2b\\x35\\x69\\xe7\\xd9\\x55\\x81\\xea\\x1a\\xdc\\x4e\\xbf\\x61\\x9a\\xcd\\xc9\\xd5\\xc9\\xd7\\x6d\\xa2\\xbe\\x3b\\xf9\\x8a\\x90\\x93\\xd1\\xb8\\x4b\\x85\\xe5\\x10\\x7e\\xc6\\xa4\\xd1\\xd3\\xb7\\x05\\xc7\\xef\\x49\\xdc\\x33\\x1e\\xfc\\x2a\\x49\\x18\\xcc\\x72\\x66\\x6a\\x63\\x63\\xea\\xa2\\x46\\xb5\\xa9\\xb2\\xff\\xc7\\x1a\\x37\\xb3\\x24\\x27\\x84\\x29\\x12\\x14\\xfd\\xc0\\x13\\x74\\x1d\\x7f\\x58\\x9d\\xf5\\xdf\\xbc\\xb0\\x34\\x7d\\x63\\xed\\xe4\\x3e\\x98\\x81\\x0f\\xf5\\xcd\\xed\\x1f\\x85\\xd1\\x53\\x10\\xfb\\xbb\\x6d\\x4b\\xec\\x4c\\x39\\x73\\x85\\x5c\\xfb\\xec\\x05\\xc4\\x0e\\xbb\\x69\\xe2\\x0d\\xa3\\x6f\\x98\\x18\\x78\\xec\\xc1\\xd6\\x20\\x7e\\xeb\\xf8\\xf8\\x65\\x16\\x6a\\x5c\\x35\\x58\\x42\\x5c\\xe0\\x5e\\x7b\\xe4\\x11\\x49\\xe8\\x5d\\x1e\\x58\\xf3\\x13\\xb4\\xc2\\x91\\x79\\xd7\\xce\\x53\\x64\\x11\\x39\\xa4\\xd5\\x2d\\xf3\\x24\\xd3\\x4b\\xb0\\x96\\x96\\xed\\xd9\\x12\\x2e\\x8b\\xb3\\xe5\\x36\\x34\\xa0\\x2a\\x93\\x1b\\x6a\\xe1\\xfa\\x34\\xe0\\xfe\\x4e\\xde\\x95\\x05\\x12\\xf0\\x11\\xa0\\x00\\xbf\\xee\\xeb\\xb3\\x29\\xc0\\x3e\\x5f\\xca\\xe7\\x6b\\xd1\\x68\\x35\\xb2\\x9c\\x49\\x91\\x8f\\x16\\xd0\\x55\\x7e\\x28\\x03\\xa8\\x78\\x9b\\xc9\\x17\\x4c\\xf8\\x31\\xd9\\x28\\x16\\x43\\x86\\x01\\x8d\\x21\\xb0\\x48\\xa5\\xb0\\xff\\x32\\x48\\x0c\\x0c\\x83\\x75\\x6a\\x1a\\x70\\x33\\x5a\\xc4\\xbf\\x01\\xd7\\x21\\x89\\x68\\x9b\\xa4\\x55\\x7e\\x29\\xcb\\xf9\\x67\\x05\\x16\\x45\\x25\\x89\\x0e\\xe3\\x98\\xa7\\x6b\\x73\\x41\\x70\\x86\\xdf\\x21\\x37\\x1e\\x18\\xb8\\x26\\x0d\\x04\\xa0\\xce\\x53\\xc3\\x5c\\x86\\x45\\xfa\\x28\\x8d\\x81\\xbe\\x73\\x52\\x4e\\x28\\xe3\\xe3\\x4a\\x42\\x9e\\xf4\\x87\\x57\\xc1\\x42\\x82\\x24\\x54\\xc4\\xfa\\x1a\\x7e\\x49\\xf4\\xe1\\xe0\\x1e\\x55\\xa4\\xa5\\x41\\xd6\\x0c\\x3a\\x1e\\x0e\\x39\\x4e\\x00\\x92\\x8d\\xb9\\xa5\\xa6\\x47\\x9d\\xa8\\xa1\\x14\\x43\\xd5\\x3a\\xd9\\x68\\xa1\\x34\\xb4\\x02\\xd2\\x28\\x56\\x01\\xb9\\x67\\xa8\\xb1\\x51\\x47\\x12\\xe3\\xfd\\x30\\xd8\\x4c\\xbd\\x69\\xd9\\x56\\xe1\\xd6\\x4c\\xf8\\x7e\\xe6\\xad\\x15\\xcb\\x83\\x2b\\x18\\x51\\x06\\xc3\\x05\\x9e\\x39\\x6d\\xfa\\x99\\x5d\\xcb\\xcb\\xa3\\x0b\\x0b\\xa3\\x5d\\xe0\\x04\\xbc\\xeb\\x27\\xd6\\xe8\\xef\\x1b\\x6f\\x3a\\xa3\\x81\\xe7\\xbd\\x86\\xda\\x43\\xfd\\x45\\xfd\\x45\\x4d\\xf4\\xb4\\x81\\x99\\xda\\xae\\xf7\\x7c\\x9b\\x7f\\x4d\\x41\\x51\\x41\\x9a\\x8b\\xf4\\xaf\\x1b\\xb6\\x2f\\x0b\\xfe\\x35\\xaf\\x14\\xfb\\xee\\x39\\x88\\xee\\x35\\xc7\\xc0\\xcf\\xa6\\x28\\xf8\\xd6\\x44\\x2f\\xcd\\x46\\xf6\\x98\\x77\\x81\\x77\\xcd\\x59\\xf0\\xb2\\x69\\x95\\xf3\\x47\\xff\\xbb\\xe5\\xf8\\xef\\x3e\\x70\\x17\\x95\\x73\\xd7\\xa0\\x55\\x0e\\xcd\\xbe\\x91\\x87\\x72\\x91\\x25\\xf3\\xce\\x33\\x89\\x33\\x67\\x12\\x37\\x25\\x44\\x3e\\xc0\\x2d\\x75\\xd3\\x2a\\x4a\\x79\\x3a\\xda\\xd6\\x1f\\xd6\\xb5\\xd2\\x77\\x69\\x46\\x58\\x80\\x58\\xf9\\xd2\\xae\\xe8\\x21\\xb3\\x71\\x55\\x5c\\x85\\x84\\xd6\\xc1\\xd5\\x81\\xdb\\x5e\\x48\\x4c\\xe0\\xb0\\x76\\xf2\\x44\\x62\\x0a\\x59\\x85\\x8c\\x6d\\xeb\\x8a\\x04\\xcd\\x8f\\x9f\\x8d\\xed\\x5c\\x91\\x68\\x9d\\xe5\\x3e\\x2d\\x24\\x07\\x29\\x30\\x24\\x02\\x14\\x10\\xfb\\x17\\xf2\\xb0\\x15\\xe0\\xd0\\x72\\x2d\\x36\\xa2\\xec\\x74\\xf4\\x49\\x10\\x46\\x68\\x6b\\x6f\\x2d\\x57\\x0f\\x7d\\x06\\x64\\x5e\\xec\\x7d\\xd1\\xc6\\x4f\\x46\\x9f\\x38\\x95\\x48\\x28\\x4a\\x22\\x71\\x39\\xaf\\x9d\\x8e\\x96\\x35\\xe5\\x33\\x37\\x76\\x07\\x02\\xdd\\x42\\xce\\x12\\xb6\\x4b\\x40\\x15\\xf3\\xb5\\x46\\x81\\xfa\\x87\\xdf\\xae\\x52\\x8e\\x6b\\x90\\x5b\\x95\\x19\\x95\\xfc\\xe5\\x66\\x5e\\xe5\\xcb\\x98\\xcd\\x65\\xb2\\x3a\\xad\\x40\\x4e\\x20\\x85\\x6d\\xf7\\x72\\x6d\\xe7\\x74\\x70\\x9a\\x22\\x2f\\xd7\\xbb\\x7c\\x7e\\xbf\\xef\\x47\\x30\\x49\\x95\\xea\\xe0\\x69\\xa2\\xa3\\xaa\\xc9\\xd7\\xf8\\x79\\x14\\xc3\\xb1\\xa3\\x3e\\x3f\\x5a\\x04\\x38\\x9a\\xb9\\xba\\xa5\\x30\\xce\\x0d\\x29\\xf4\\x53\\xd9\\x26\\xc7\\x0d\\x5c\\x8b\\xc4\\x1c\\x8b\\x2f\\x3e\\xf2\\xe2\\xab\\x6d\\xd9\\x31\\x3b\\x37\\x92\\x57\\x6f\\x57\\xaf\\x1b\\x85\\x1c\\x58\\xb5\\xed\\xe7\\xff\\x87\\xbf\\x17\\xda\\x88\\xac\\x36\\xc7\\xa1\\x8d\\xb6\\xe8\\x51\\x45\\x35\\x6a\\x7b\\xe6\\x33\\xbd\\x30\\x75\\x27\\xfa\\x07\\xfb\\x3b\\x82\\xc1\\xe1\\xfe\\xde\\xd1\\x3b\\x85\\xc2\\xfe\\x47\\xaf\\x82\\x13\\x38\\xbc\\x8d\\x08\\x7c\\xab\\xf6\\xf5\\xdf\\x31\\x36\\xc6\\xb4\\xb6\\x0a\\x38\\x49\\xa3\\xf9\\x04\\x59\\x40\\xba\\x89\\xb2\\xc9\\x82\\x79\\x03\\x78\\x7e\\x20\\x98\\x02\\x67\\x64\\x81\\x02\\xd8\\x3b\\x3a\\xba\\xf7\\xd6\\x5b\\x9f\\x50\\xee\\x44\\xfe\\xf5\\x4e\\xe5\\x3f\\x8c\\x9d\\x61\\xde\\x33\\x63\\xb7\\xde\\xfa\\xf8\\x4b\\xfc\\xca\\x4b\\x92\\xdb\\xf6\\x56\\x24\\x9f\\xbe\\x0e\\xb2\\x40\\x22\\x2b\\x16\\x79\\x9b\\xfc\\xa8\\xe7\\xc3\\xb2\\xad\\x4d\\x6e\\xce\\xb7\\xac\\xe1\\x0b\\x87\\xbf\\x5b\\xb7\\x14\\x50\\x87\\xab\\x5c\\xee\\xcb\\x35\\xbe\\x0e\\x18\\xb5\\x21\\xe2\\xc3\\x50\\x02\\x65\\xe5\\xad\\x22\\x69\\xa2\\xd2\\xb0\\x1a\\x1d\\x7d\\x89\\x2d\\xc4\\x66\\x6e\\xc5\\xac\\xdf\\x5b\\xd3\\x94\\x27\\xf6\\xc7\\x86\\x9f\\x1a\\x1d\\xfb\\xcf\\x8d\\xdf\\x8a\\xcd\\xdc\\xf2\\x12\\x5e\\xec\\x38\\xac\\x97\\x1f\\xdf\\x1f\\x4b\\x49\\x42\\xdd\\x79\\x1b\\x44\\xa5\\xe4\\xf6\\xed\\xa0\\x5a\\x82\\x5b\\xb9\\x80\\xfc\\x12\\x0b\\x8c\\x8e\\xee\\x11\\x6a\\xff\\x3b\\xf1\\x64\\x58\\x51\\x4a\\x33\\x9d\\x9d\\x5b\\xdb\\xe7\\xee\\xd9\\x27\\xe6\\xc2\\xda\\x05\\xad\\x34\\x13\\x1e\\x08\\x87\\xc9\\x0f\\xb8\\x97\\xfd\\x0f\\xf6\\x3f\\x5a\\x74\\x00\\x68\\x20\\x61\\x09\\x00\\x56\\x54\\x41\\x3d\\x79\\x1e\\xcc\\x85\\xe0\\x24\\x27\\x17\\x54\\x36\\x33\\x76\\x58\\x3b\\x3c\\xd6\\x7b\\xe8\\xb9\\x23\\x47\\xee\\x3e\\x7a\\xf4\\x6e\\x9e\\xfe\\x5a\\x38\\x5c\\xad\\xd5\\xb4\\x37\\xf1\\x0b\\x94\\xfe\\xfc\\x8d\\x37\\x4a\\x62\\xce\\x70\\x14\\x17\\x2d\\x36\\xf8\\x0c\\x94\\x6e\\x2b\\xe1\\x4f\\xc9\\x03\\x30\\xb1\\x8a\\xb6\\xe2\\x4c\\x17\\x8b\\x60\\x45\\x72\\xfa\\xfb\\xd1\\x65\\xfc\\xee\\x29\\xa1\\x20\\x1c\\x83\\x62\\xfd\\x9b\\xf3\\xb3\\x7b\\x53\\xce\\x8a\\xfa\\x8a\\x95\\x2b\\xff\\x19\\xa5\\x26\\xe5\\xd6\\xcf\\x4f\\x29\\x15\\x73\\x23\\x7e\\x26\\x4d\\x7c\\x97\\xda\\x96\\x17\\x93\\x50\\xf3\\x50\\x6d\\xcb\\xea\\x37\\xc5\\x8c\\x6c\\xde\\xe3\\x9b\\x64\\xd7\\x0d\\xf9\\x14\\x54\\x9b\\x83\\x55\\x88\\xd9\\x0d\\x84\\x9a\\x1a\\xdc\\x2c\\x93\\x8e\\x8d\\x2f\\x18\\x0f\\x5c\\x78\\xfa\\xc1\\x33\\xf3\\x27\\xce\\x9f\\x3b\\xf3\\x60\\xff\\x42\\xe7\\x89\\xf9\\xf2\\x42\\xf2\\xfc\\xd3\\x17\\xce\\x3d\\xee\\x35\\xbc\\x37\\x2d\\x2c\\x9d\\x67\\xf7\\x7b\\x1f\\x3f\\x37\\x9d\\x4d\\x0e\\x46\\x00\\xf4\\x45\\x72\\x35\\x6d\\x63\\xba\\xa1\\x97\\x84\\xa5\\x2c\\xf7\\x42\\x6b\\x89\\xdc\\x0b\\xa8\\x66\\x94\\x55\\xea\\x2d\\x69\\x4b\\xe1\\xc1\\x4d\\x73\\x59\\x59\\x23\\x39\\xbf\\x66\\xc4\\xee\\xbc\\x33\\x76\\xf0\\x8b\\xb1\\x83\\x07\\x63\\x77\\x36\\xae\\x5a\\x17\\xcb\\x1a\\x51\\x5f\\x45\\xed\\x0c\\x7e\\x7b\\x08\\x3e\\x87\\x62\\x77\\x56\\xf0\\x22\\x0b\\xc3\\x55\\x78\\xab\\xb6\\x4c\\x97\\xe4\\x45\\x89\\xed\\xf5\\x89\\x69\\x85\\x44\\xbc\\x24\\xdf\\x55\\x58\\xbd\\x58\\x26\\x9f\\x37\\xf4\\x58\\x6e\\x5c\\x5d\\x07\\xe2\\x1a\\x35\\x6e\\x95\\x2b\\x57\\x6a\\xbe\\x8e\\x3a\\x5c\\x84\\xc4\\xa7\\x83\\x09\\x39\\xd0\\x42\\xba\\x6d\\xb3\\x2f\\xf2\\x10\\x84\\x5b\\x61\\xd9\\x0c\\xba\\x69\\xbf\\xb3\\x05\\x70\\x05\\x01\\x0a\\xb4\\xab\\x68\\x97\\x28\\xda\\x01\\x73\\x36\\x93\\x8c\\xff\\x8a\\x94\\xd6\\xb8\\xe9\\x42\\xc4\\xdf\\x32\\x08\\xb6\\x2d\\x46\\x15\\xb6\\x81\\xda\\x1c\\xb2\\x37\\x6a\\xf6\\xa7\\x34\\x09\\x21\\x38\\x70\\x06\\xfa\\x41\\xce\\xcf\\x23\\xb7\\x12\\x0a\\x79\\xac\\x3e\\xcd\\x57\\x7e\\x76\\xd3\\xf8\\xb8\\xbc\\x72\\x50\\x3b\\xb8\\x22\\xdb\\x07\\x7f\\x4c\\x9d\\xba\\x7c\\x1e\\xbf\\x3f\\x27\\x7e\\x41\\x07\\x4e\\xea\\xd7\\xd0\\xef\\xc4\\x72\\xbf\\x7b\\xa9\\x3b\\x96\\xb6\\x53\\x39\\x9b\\x9f\\x2c\\x4c\\x5a\\x7a\\x32\\x2b\\x00\\xad\\x02\\xae\\xd7\\x62\\x19\\x05\\x37\\x96\\x2a\\xb7\\xec\\x0a\\x78\\x99\\xec\\x96\\xaf\\xc7\\xcf\\x2f\\xcd\\xfe\\x6d\\x14\\x7d\\x3d\\x27\\x0a\\x3c\\x67\\x4f\\x9a\\x9d\\x1b\\x1f\\x77\\xf7\\x25\\xba\\xce\\x2f\\xc5\\xa2\\x89\\x78\\x1a\\x2e\\x3f\\xff\\xf5\\xb1\\x59\\xe8\\xaf\\xbb\\xa3\\xe8\\xf5\\x99\\xf6\\xf0\\x7a\\x14\\x26\\xee\\xd6\\xb2\\x43\\x89\\x68\\x6c\\xe9\\x7c\\x57\\xa2\\xcf\\xfd\\x7f\\x6f\\x9d\\x7e\\xf0\\x6f\\x42\\x5c\\x9f\\xec\\x1e\\x4e\\x12\\x35\\x19\\x7c\\xfd\\x09\\x55\\x07\\xf6\\x59\\xd8\\x70\\x5d\\x2a\\x02\\x2f\\x4a\\x04\\x35\\xd3\\x4b\\x45\\xec\\xb3\\x80\\x91\\xb4\\xc6\\xd6\\x1a\\xfc\\x44\\xb0\\xac\\x71\\xa0\\xf4\\x83\\x31\\xb0\\x82\\x65\\x6b\\x3a\\x43\\xcc\\x09\\xaf\\x34\\xcf\\xfe\\x81\\xa4\\x53\\xb4\\xfa\\x4d\\x17\\xb2\\x20\\x64\\x64\\x3f\\xcb\\x5e\\x7e\\x99\\x1d\\x7a\\xbc\\xf1\\x38\\x53\\xd9\\xab\\xaf\\xb2\\x9b\\x8a\\x45\\x91\\x02\\x05\\x6f\\x0d\\xb2\\xa0\\x22\\xbf\\x4f\\xf2\\x3a\\x51\\x42\\x8a\\x8d\\x62\\x85\\x2e\\xa0\\xdb\\x68\\xb7\\x98\\x09\\xb5\\xd2\\xd6\\x8c\\x10\\xf0\\x1d\\xa1\\xb0\\xff\\x4a\\x63\\x4d\\xd4\\x0d\\x71\\x53\\x21\\xf0\\xe6\\x98\\xf6\\x85\\x71\\x14\\x86\\x7d\\xd3\\xa0\\x72\\xab\\x93\\x56\\xd1\\x14\\x39\\x47\\xc9\\x23\\xe0\\x9f\\xf8\\x49\\x73\\x99\\x95\\xa6\\x25\\x09\\xb5\\x03\\x34\\xaf\\xb8\\xad\\x09\\x8e\\x98\\x47\\x22\\x66\\x6d\\x43\\x3e\\x14\\xc8\\x27\\x51\\x50\\x40\\x0c\\x46\\xf1\\x0a\\x1a\\xf1\\x98\\x30\\xa1\\xe1\\x81\\x76\\xa5\\x14\\x88\\x00\\xdd\\xf1\\x0e\\x20\\x5f\\x81\\x8b\\xc7\\xab\\x1b\\x57\\xe8\\x3b\\xfa\\x96\\x99\\x78\\xa8\\x3d\\x8d\\xb7\\x04\\xcc\\x53\\xbb\\x8a\\x4c\\xa7\\xeb\\x96\\x74\\xef\\x4f\\xd8\\x9f\\x34\\xfd\\x25\\x88\\x4d\\xc9\\x62\\x42\\xd2\\x0a\\x76\\xd7\\xe3\\x8f\\xdf\\x56\\xbd\\xf1\\xb1\\x2a\\xfc\\xb1\\x3f\\x79\\x1c\\xf6\\x8f\\xdd\\x58\\xbd\\xad\\xf1\\xa7\\xd5\\xaa\\xe4\\x12\\x90\\x1e\\x86\\xc8\\x37\\x9e\\x64\\x1d\\xd8\\x91\\xe4\\x4d\\xda\\x60\\xc5\\x9a\\x37\\x91\\x31\\x66\\x6d\\xac\\xe4\\x5f\\xcd\\xf5\\x86\\x7a\\xfd\\x38\\x71\\x82\\x00\\x1b\\x77\\xab\\xe8\\x33\\x22\\x98\\x96\\xeb\\xa1\\x50\\x67\\x6f\\xef\\xf3\\x3e\\xc4\\xe5\\x02\\x75\\x3e\\x48\\x2d\\xf9\\x21\\xca\\x36\\x68\\x32\\xa7\\x04\\x35\\xc2\\xa2\\x0d\\x43\\x54\\x9a\\xd9\\x5e\\xc6\\xaf\\x5e\\xb7\\x86\\x9b\\xac\\x1c\\xce\\xb4\\x57\\x8d\\x9b\\x3d\\x98\\xa2\\x92\\xb8\\xb6\\x7d\\xed\\xa8\\x6d\\x14\\xf6\\x4f\\x0e\\x89\\xda\\x26\\x4b\\x48\\x65\\xd7\\x2d\\x19\\x64\\xe2\\xf0\\x45\\x36\\x17\\x0a\\xa5\\x2d\\xb3\\x19\\x06\\x6c\\x17\\x09\\xcc\\x51\\x19\\x03\\x0b\\x1c\\xbb\\xf7\\xb8\\x12\\x0b\\x51\\x7d\\x00\\xe2\\x06\\x77\\x8d\\xd7\\x06\\xcf\\xf4\\xdc\\xfd\\x01\\x6f\\xc2\\x73\\x98\\x5d\\xea\\xec\\x7c\\xb6\\x23\\xd2\\x79\\x4d\\xea\\xec\\x7c\\xa6\\x23\\xda\\x39\\x17\\x9b\\x78\\xfc\\x6f\\x1f\\x9b\\x8a\\xb1\\x57\\xba\\xba\\x7a\\x15\\xe5\\xa3\\xe4\\x73\\xdd\\x15\\x02\\x64\\x9c\\x2e\\x3a\\x84\\x5f\\xb2\\x67\\xef\\x5a\\xbc\\xe3\\x3d\\x70\\xef\\x33\\x9d\\x9d\\x4c\\x82\\xdf\\x3e\\xdb\\x09\\x3f\\x1b\\x7f\\xec\\x6f\\x1f\\x9f\\x8a\\x41\\xfd\\x19\\xd4\\xf8\\x9a\\x43\\x22\\xff\\x0a\\x7c\\x02\\xa9\\xd0\\xac\\xa1\\x0a\\xf3\\x56\\x81\\xb5\\x55\\x53\\x46\\xfc\\x01\\x35\\x95\\xc9\\xbc\\x38\\x64\\x55\\xea\\xd0\\xd7\\x9f\\xbd\\x26\\x3d\\xfb\\x71\\xc6\\x78\\xd5\\x1a\\xd7\\x68\\xff\\xbe\\xe6\\xd7\\xf3\\x54\\x87\\x3d\\x2b\\x81\\x67\\x99\\xf4\\xec\\x27\\x1a\\xd7\\x78\\x15\\x18\\xa3\\x7d\\xd4\\xfa\\x52\\x72\\x71\\x0a\\x74\\x27\\xbb\\x0f\\x51\\x0a\\x0b\\x3c\\x99\\xa9\\x2b\\xf0\\x8f\\x4e\\x41\\x24\\x75\\x65\\x6f\\x65\\xc5\\x12\\xfd\\xb5\\x06\\xa1\\x64\\x6e\\xf2\\x98\\x08\\x90\\xf6\\x79\\x9b\\x01\\x1f\\xe0\\x84\\x4c\\x8e\\x0b\\xe7\\x49\\x44\\xdd\\xee\\x18\\x00\\x00\\x54\\xc9\\x01\\x97\\x32\\x39\\xa8\\xb9\\x18\\xb6\\xed\\x2a\\xd7\\x73\\x8b\\x5a\\xc5\\xc6\\x46\\x26\\x12\\x1e\\x71\\xe8\\xe9\\x28\\x58\\x24\\xb6\\xcd\\x64\\x05\\xe6\\xd7\\x69\\x1a\\x6b\\x94\\xc4\\xd9\\x89\\xac\\xa9\\xf0\\x5b\\xd4\\x3c\\x58\\xd2\\x3f\\xb8\\xa9\\x88\\xbe\\x00\\xb0\\x37\\x1b\\xeb\\x9a\\x06\\xd6\\x49\\xdf\\x27\\xab\\x3f\\x11\\x9d\\xc7\\x4d\\x73\\x22\\x63\\x49\\x9a\\x60\\xcd\\xc6\\xb7\\x59\\x98\\x8e\\x0e\\x36\\xbe\\x4d\\x2b\\x06\\x59\\x5c\\x10\\xb7\\x41\\xa5\\x25\\x0b\\x59\\x30\\x07\\xbf\\x97\\x3d\\x18\\xd5\\x1a\\xef\\xfa\\xe5\\x67\\xd8\\xe5\\x2f\\xb2\\x17\\x1b\\xef\\x8b\\xea\\xbf\\xfc\\xec\\xbd\\x8d\\xf7\\x7f\\x51\\x98\\x9b\\x5d\\xd0\\xc2\\x4e\\x9c\\x96\\xa5\\x7f\\x80\\x29\\x79\\x9e\\xe5\\x61\\x3a\\x76\\x42\\x2e\\x3a\\x6a\\x1d\\xc9\\x5e\\x8b\\xfc\\x25\\x64\\x67\\x61\\x49\\x9e\\x8d\\x79\\xa0\\xcb\\xa3\\x54\\x5c\\xbd\\xae\\x89\\x09\\x5b\\x5e\\xfe\\x7b\\x8f\\xa7\\x3b\\x14\\x4e\\x8c\\x64\\x27\\x26\\x27\\xb2\\x23\\x89\\x70\\xa8\\xdb\\xe3\\x19\\xf7\\xf4\\x4d\\xec\\x7d\\x1e\\x66\\xb9\\x92\\xb7\\xbb\\xdb\\x5b\\xc6\\x24\\x36\\x19\\x7f\\x65\\xe1\\x76\\x36\\xef\\x76\\x75\\xf4\\xf8\\x00\\x5b\\xcc\\xed\\xee\\xec\\xea\\xf5\\xf5\\x74\\xb8\\xdc\\x0b\\x8e\\xbd\\x37\\x24\\x90\\x79\\x4e\\xf4\\x78\\x8b\\x70\\x2b\\x24\\x3d\\x09\\x35\\x16\\x0f\\x49\\x0e\\xab\\xee\\x7f\\x06\\x32\\xb7\\x3e\\x94\\x72\\x4b\\x38\\x0c\\x9d\\xa0\\x80\\x77\\x93\\x09\\xe2\\x11\\x1f\\x8b\\x1e\\x8b\\x1e\\x3d\\xf7\\x0f\\xc9\\x09\\x9d\\x7d\\xed\\xe1\\x3f\\x9d\\x18\\x7f\\x2b\\xfb\\x33\\x5f\\xe3\\xaf\\x4e\\x44\\x8f\\xde\\xc7\\xf2\\xd1\\xe0\\xf8\\x2d\\xef\\xff\\x93\\x4e\\xc9\\x63\\xcb\\x9e\\x44\\x49\\xb1\\x2d\\x11\\x4e\\x2a\\xe4\\xaf\\x84\\xda\\x28\\xeb\\x1c\\xd8\\x67\\xe8\\x0b\\x20\\xc2\\x85\\xb4\\xa4\\xe1\\x09\\xf2\\xe8\\x46\\xa9\\x74\\x05\\xd3\\x1a\\x1d\\x42\\xab\\xde\\x2b\\x65\\x68\\x9e\\x1b\\x6f\\x62\\x03\\xa5\\xc4\\xf5\\x8b\\x9a\\x09\\x8e\\xb8\\xc5\\x12\\x64\\x4d\\x16\\x1b\\xb0\\x63\\x46\\x51\\x09\\xf7\\x1b\\x91\\xe8\\x68\\x34\\x62\\x80\\x77\\xd5\\x60\\x66\\x30\\xcc\\x05\\x1e\\x0a\\xea\\xb5\\xfb\\xc3\\xfb\\x7b\\x06\\x03\\x83\\xf0\\xe9\\xd9\\x1f\\xee\\x1f\\xef\\x89\\x06\\xa3\\xd1\\xe0\\x60\\xf7\\xf8\\x1a\\x2c\\xc5\\x9c\\x22\\xa6\\xf7\\x55\\xa7\\x19\\x8d\\xf0\\x20\\xae\\xf7\\x7a\\xb2\\xf8\\x95\\xcc\\xe6\\x13\\xf0\\x2e\\x59\\x1d\\xdf\\x07\\xcd\\xa0\\x98\\xc4\\xc7\\x13\\xf3\\xe3\\x4b\\xcb\\xd7\\xa4\\x4b\\x20\\xa8\\xdf\\xe5\\xa9\\xf2\\x37\\x40\\x1e\\x9d\\x3e\\x48\\xba\\x13\\x34\\x94\\x96\\xc6\\xf7\\xde\\x85\\xf2\\xd2\\x93\\x8c\\x8f\\x8d\\x59\\x92\\x4f\\xaa\\xd2\\x04\\x21\\x07\\xe2\\xb3\\x91\\xda\\x84\\x2a\\xd1\\x34\\x1c\\x75\\xd3\\x45\\xeb\\x1a\\x5d\\xc2\\xca\\xd8\\xd4\\xeb\\x67\\x7f\\xf2\\xe9\\x5d\\x33\\xa1\\xec\\xd4\\xdd\\x3f\\x74\\x37\\xd9\\x8a\\xb2\\x62\\x6a\\x48\\xd1\\x80\\x36\\x45\\x03\\x52\\xe0\\x6d\\xde\\xcf\\x8d\\xdc\\x6b\\x4f\\xdd\\xbc\\xfb\\xae\\xc1\\xb4\\x7a\\x6a\\xf2\\xc8\\xdd\\x77\\x1f\\x99\\xba\\x91\\xac\\x43\\x6f\\xbe\\x39\\xb5\\xe8\\x4f\\x87\\x67\\xd0\\x3c\\x8d\\xdb\\x8e\\x02\\x77\\xd4\\x15\\xc6\\x5f\\x70\\x99\\x84\\xc2\\x4c\\xb6\\x41\\x52\\x4d\\x5c\\xbf\\xf9\\x1c\\xc2\\x5b\\x86\\xb3\\x2a\\x24\\x10\\xe6\\x35\\xf3\\xd3\\x31\\x5b\\x49\\x80\\x81\\x58\\xee\\xc8\\x2c\\xb4\\x47\\x02\\xb0\\x2d\\x61\\x07\\x27\\xcc\\x7c\\x6d\\xe6\\xf0\\xe1\\x19\\xd6\\x89\\xa6\\x6f\\xaf\\x62\\x4b\\xbc\\xf2\\x0a\\xb6\\xcb\\xab\\x68\\x08\\xd5\\xf8\\x3b\\xbc\\x8a\\xe5\\x3d\\x23\\x19\\x6c\\x85\\xd5\\xd0\\x3b\\x31\\x10\\x73\\x2a\\x36\\xca\\x1e\\xcc\\xce\\x39\\x52\\xaf\\xe3\\x83\\x13\\xe9\\x86\\x53\\x72\\x0a\\x5b\\xe3\\x9f\\x43\\x43\\x09\\xff\\xd8\\xb0\\x91\\xd4\\x1d\\x53\\xae\\xc5\\x78\\xd4\\xb8\\x5b\\x4b\\x18\\xc9\\x14\\x9b\\x72\\xcc\\x45\\xe2\\x4c\\xf5\\xf8\\x14\\x68\\xf7\\xac\\x67\\x72\\x52\\xd6\\x92\\x13\\x6a\\xef\\x48\\x9f\\xba\\x7f\\x68\\x4c\\x9e\\x9c\\xf2\\x8e\\x0f\\x4d\\x84\\xfa\\x87\\x24\\xf7\\x36\\x5a\\x8f\\xa6\\xa7\\x59\\xd6\\xda\\x3b\\xc1\\x23\\x92\\x55\\x4c\\xb2\\xd0\\x30\\x75\\x14\\xff\\x33\\xc5\\x34\\xd7\\xec\\x0f\\x2b\\x36\\x4c\\x49\\xf2\\xb7\\xe7\\xb4\\x8d\\xff\\x54\\x41\\x5a\\x84\\x35\\xf3\\xa0\\x24\\x21\\x17\\xa4\\xe0\\x58\\x81\\x3d\\x21\\x90\\x40\\x8f\\x77\\xc3\\xb1\\xdb\\x56\\x8b\\x58\\x2b\\x01\\x79\\xda\\xe0\\x26\\x1c\\x07\\xac\\x7d\\x19\\x6b\\x52\\xd5\\x19\\x81\\xfc\\x34\\xd6\\xf9\\x01\\x6c\\x9a\\x49\\x5b\\x5d\\xd3\\x75\\x13\\xb6\\x1a\\xec\\xc8\\xbd\\x57\\xc7\\x03\\x48\\xd7\\xc9\\x25\\xa6\\x4e\\x7e\\x57\\xdc\\xaf\\x8a\\x0e\\x48\\x91\\x42\\xec\\x95\\x24\\x29\\xff\\x82\\x67\\x39\\x2a\\x2d\\x83\\x47\\xc7\\x39\\x6c\\x35\\x52\\xfa\\xd0\\xe6\\xb4\\x70\\xc9\\xf0\\x38\\x67\\x9d\\xdb\\x4a\\xa1\\xac\\x70\\x2c\\x6e\\xb9\\x6d\\xee\\x61\\x06\\x56\\x93\\x68\\x68\\x7d\\x0d\\x13\\xfa\\xab\\xf3\\xda\\x5b\\x5f\\x69\\xd6\\x75\\x56\\x81\\x7b\\xe8\\x39\\x78\\x93\\x50\\x62\\xe9\\x7e\\x4a\\xf4\\xcc\\x6b\\x74\\xb1\\x48\\xa7\\xfc\\x16\\xfe\\xf0\\xf4\\x0d\\xcd\\x05\\xb8\\x70\\x38\\xf0\\xa8\\x1b\\xd7\\x1e\\x84\\x13\\x6b\\xe9\\xf7\\x65\\x19\\xb8\\x57\\x87\\xd4\\x90\\xd8\\x2f\\x68\\xa7\\x35\\xd2\\xf1\\x1f\\x5e\\x3f\\xbd\\x5e\\x84\\x09\\x0d\\xce\\x49\\xc7\\x8f\\xe7\\xff\\xc2\\x9e\\x80\\x6f\\x3f\\x65\\x3d\\x6d\\xc1\\xee\\x09\\x50\\xb0\\x6c\\x9d\\x3b\\xad\\x37\\x5f\\xa0\\x1e\\xc1\\x37\\x5b\\x79\\x96\\x87\\x63\\x3f\\xec\\xe1\\xc9\\x4d\\xde\\x46\\xa8\\x16\\x43\\x6d\\xbe\\x89\\x0f\\x05\\x29\\xbe\\xf0\\x22\\xa4\\x64\\xd7\\x6f\\xeb\\xcb\\x4c\\x6a\\x26\\x3a\\x63\\xcd\\x46\\xa0\\xdf\\x9a\\x74\\xb8\\xce\\x75\\x68\\x52\\xb7\\xf8\\x1c\\x3b\\x3c\\x03\\xd5\\x9f\\xde\\xb8\\x20\\xa5\\xc6\\xfa\\x05\\xf0\\x54\\xe8\\xc9\\xf8\\x94\\x4e\\xab\\xce\\x01\\x3a\\xa3\\x7a\\x43\\x85\\xaa\\x55\\xad\\x5a\\x05\\x32\\x80\\xaa\\x02\\xfc\\x12\\xa4\\x54\\xe7\\x0a\\xaf\\xa1\\x09\\x5f\\xc3\\x07\\xeb\\xc6\\xe8\\x3b\\xd3\\xaa\\x6c\\xdd\\xae\\x29\\xfc\\xfd\\xcb\\xda\\xdc\\xee\\xa9\\x2a\\x6f\\x47\\x6a\\x73\\xbf\\x75\\x0d\\xeb\\x86\\xb8\\x6d\\xf4\\x2e\\x44\\xdd\\xa6\\x70\\x2e\\xdb\\x3d\\x53\\xb3\\x3b\\x21\\x1c\\x35\\x4c\\xfb\\x54\\xb3\\xff\\xec\\x1e\\x49\\x5d\\xac\\x8e\\x7d\\x91\\x9e\\x08\\x76\\x5c\\x89\\xc8\\x3b\\x5e\\x83\\x7f\\x4f\\x4f\\x6d\\xdf\\x23\\xc9\\x3b\\x3c\\x8f\\x14\\xb0\\xfa\\x03\\x9a\\x2a\\xe2\\xbc\\x94\\xa6\\xf6\\xe5\\xfd\\xa3\\x06\\x9d\\x60\\xad\\xb1\\xce\\x67\\x28\\x5e\\x11\\xa6\\xf0\\x9c\\xb9\\xd3\\x7a\\x03\\xba\\x86\\x46\\xdd\\xff\\x5f\\xd8\\x4b\\xed\\x1e\\xd7\\xec\\x95\\xb0\\x21\\xb2\\x9d\\x7d\\x4d\\xdc\\x93\\x7b\\xbd\\xd0\\x6a\\x29\\xab\\x55\\x37\\x9a\\x2e\\x9f\\x1a\\xbd\\x60\\x3e\\x88\\x69\\x6f\\xcf\\x4d\\xcc\\xa0\\xa7\\x5f\\x6b\\xb6\\x0b\\x6f\\x25\\xf2\\xe6\\xa5\\x4f\\x89\\x5a\\xd3\\x1e\\xb2\\xfc\\x1e\\xc9\\x2b\\x3c\\x09\\xd2\\xf5\\xb6\\x3e\\x2c\\x49\\x6f\\x9a\\x74\\xb7\\xfe\\x94\\xdd\\x4f\\x65\\xab\\x46\\xb9\\x56\\x1f\\x6c\\x98\\xad\\x89\\x14\\x86\\x0e\\xf5\\x41\\xac\\x89\\x09\\xd9\\x37\\x67\\x48\\xfe\\xf7\\x2f\\x1f\\xdb\\xaa\\xdd\\x5a\\x56\\x8b\\x30\\xa8\\x8d\\xbb\\xad\\xc5\\xe4\\xb6\\xd6\\xa3\\x56\\x6b\\xf5\\x33\\x8d\\xe6\\x72\\x8d\\xd7\\xd3\\xb4\\xaa\\x59\\x6f\\x9b\\xff\\x36\\xf8\\xcc\\x27\\x35\\xbb\\x10\\xa3\\x76\\x2c\\xda\\x2d\\x57\\x84\\xef\\x85\\x09\\x8f\\xce\\xfe\\xe5\\x4f\\x43\\x23\\xdd\\xae\\x25\\x1f\\xe1\\xbc\\x45\\xad\\x11\\xc3\\xf0\\x7b\\xe1\\x69\\x72\\x74\\xdc\\x36\\x6a\\xec\\x71\\x43\\xad\\x4d\\x22\\x92\\xe6\\x45\\xe1\\x49\\xa8\\xaa\\xcd\\xb9\\x0a\\x9f\\xbc\\x39\\x76\\xec\\x87\\x10\\x6f\\xdc\\x7e\\x25\\x0f\\x20\\x1d\\x4a\\xeb\\x90\\xe5\\xe7\\x09\\xc7\\x06\\xe5\\x05\\x06\\x20\\xb8\\x87\\xad\\x0e\\x3c\\x77\\x4d\\xd7\\xac\\x16\\x32\\xaf\\x93\\x93\\x82\\xb9\\x08\\x1b\\xe5\\xb4\\x79\\x63\\x35\\x71\\x89\\xb9\\x4e\\x5e\\x7e\\xcb\\x5f\\xd5\\x46\\xec\\x14\\xf2\\xb2\\xfd\\xb3\\x6a\\xf6\\xd4\\x60\\x42\\x7a\\xdd\\x27\\xdc\\xae\\x5e\\x26\\x93\\x20\\x33\\xca\\x6b\\xbb\\x8a\\x91\\xc6\\xc8\\x64\\x4f\\xb2\\x2a\\xb7\\xec\\xb4\\xe5\\xe5\\x84\\x2f\\x48\\x47\\x6a\\x88\\xe8\\x5f\\x3f\\x32\\x89\\x2c\\xd1\\xd3\\x0f\\x78\\x02\\x06\\xd2\\xb4\\x0b\\x93\\x13\\xc3\\x1f\\x7a\\xf7\\xc8\\xcc\\xcb\\x40\\xfe\\x1a\\x35\\x03\\x6d\\xdf\\x95\\xb9\\xe1\\x29\\xa6\\xcf\\x1e\\xb3\\x31\\xf2\\xaa\\x64\\x1d\\xe3\\xa7\\xda\\xa5\\xd0\\xb5\\x39\\x9b\\x55\\x49\\xbd\\x52\\xc8\\x9a\\x4c\\x7f\\x6a\\x78\\xa2\\x37\\xb7\\x67\\xb7\\x87\\xcd\\x45\\x1f\\x4f\\x1a\\x73\\x1f\\x64\\x15\\xe3\\xf4\\xf8\\xc8\\x1e\\x97\\xbb\\xf1\\x4a\\xf4\\xf1\\x1b\\x9f\\xfc\\x20\\x48\\x3d\\x84\\x95\\xb8\\x87\\x90\\x3b\\xf8\\x5a\\x8c\\x35\\xe2\\xfc\\x2b\\x28\\x3a\\xb8\\x23\\x4e\\x8a\\x7b\\xde\\x14\\xb2\\x7c\\x69\\xae\\xe8\\xe0\\x63\\xa0\\x74\\x36\\xbe\\xf5\\xb5\\xfb\\xde\\xd3\\xd9\\x79\\xb9\\xb3\\xdb\\xd7\\xf9\\x48\\x67\\xe7\\x1b\\x73\\x71\\x58\\xa6\\xbb\\xa6\\x06\\x91\\x7f\\xf5\\x65\\x7c\\x13\\xf7\\x9e\\xee\\x8c\\x74\\x5c\\x86\\x1b\\x3a\\x22\\xf0\\x65\\x8c\\xfb\\x38\\xef\\x65\\x9f\\x65\\xbf\\x44\\x9a\\x57\\x8b\\xeb\\x24\\xce\\x23\\xeb\\x46\\x63\\xe4\\x18\\x98\\x19\\x2f\\x44\\x77\\xa5\\xa7\\xf2\\xcb\\x83\\x47\\x99\\xee\\xfc\\xe2\\xee\\x1e\\xfd\\x28\\x7b\\x5f\\xe3\\xb7\\xa2\\x0b\\x89\\xe5\\xfc\\xf0\\xfc\\xd1\\x4f\\xf4\\x76\\xff\\xdc\\x72\\xdf\\xfc\\x93\\x36\\x15\\xc1\\x6a\\xb6\\x3d\\x48\\x00\\xd1\\xdd\\x02\\x84\\xee\\x86\\xf6\\x20\\x5f\\xbb\\x37\\x07\\x78\\xbe\\xd3\\xea\\xbb\\x07\\xa6\\x2f\\x53\\x95\\xa5\\x67\\x76\\x35\\xea\\x86\\x61\\x14\\x25\\xc9\\xd3\\xfe\\x86\\x49\\xff\\x2e\\xd9\\x33\\x69\\xda\\xee\\x37\\x05\\x1a\\x80\\xa0\\xb2\\xaf\\xb7\\xfa\\x5e\\xb1\\x54\\xdf\\xa0\\xf1\\x6e\\x52\\xb7\\xa9\\x15\\xd7\\x42\\xba\\xfe\\xbd\\xe4\\x18\\xc0\\xbd\\x2a\\x43\\xe7\\x16\\x72\\xac\\xc2\\x1e\\x9a\\xcc\\xb4\\xb3\\xbc\\x26\\x61\\x96\\xc5\\xb2\\xae\\x37\\xd1\\x2b\\x09\\x9d\\x85\\xbc\\xd7\\xb9\\x74\\xad\\x90\\xaa\\x57\\xf7\\x1c\\x9b\\xc2\\x8d\\x55\\x8d\\xaa\\x61\\xa0\\x2c\\x2d\\x21\\x2d\\xb3\\x3a\\x7b\\xd9\\x2a\\x5d\\xc1\\x92\\xa9\\x8f\\xd2\\x3c\\x98\\x22\\x0f\\x1a\\xe4\\xe4\\xea\\xd4\\xe1\\xad\\xad\\x98\\x3f\\xb1\\x9c\\xcf\\x2f\\x9f\\x80\\xb2\\x4d\\x54\\x08\\x68\\xeb\\x27\\x4e\\xc0\\x07\\x9e\\x25\\x2f\\x01\\x77\\xc0\\x5e\\xe4\\xb9\\xd9\\x3e\\x51\\xe2\\xc8\\x1c\\x69\\xf3\\x0b\\x0e\\x59\\x7b\\xf2\\x0a\\xb7\\xb6\\x67\\x49\\x5c\\x28\\x7e\\x58\\x05\\x0b\\x82\\x4f\\x9e\\xce\\x59\\x00\\x14\\xa1\\xfd\\x83\\x6f\\xa4\\xd4\\xe2\\x76\\x6b\\x4d\\x6e\\x57\\x81\\x52\\xb3\\x9b\\x9f\\x43\\x6e\\x22\\x85\\x02\\xc7\\xd0\\x5a\\x63\\xf2\\xb8\\x89\\x25\\xd7\\x57\\x8d\\x6c\\xd6\\xc8\\xf8\\x91\\xfd\\x35\\x34\\x45\\x69\\x3e\\x60\\x29\\x14\\x1c\\x87\\x8f\\x61\\x84\\x4a\\xb5\\x50\\x29\\xd4\\x19\\xea\\xe4\\xb6\\x98\\x5c\\xd2\\x1c\\x17\\x38\\x62\\xe8\\x92\\x98\\xf1\\x16\\xac\\x08\\xd3\\xa8\\x82\\xb3\\x2f\\x38\\x28\\x2a\\x36\\xbc\\x2c\\x3a\\x03\\xb3\\x6a\\xb5\\x86\\x6c\\xd6\\x46\\x51\\xc1\\x4b\\xc4\\x8a\\x72\\xbf\\xa8\\x0a\\x43\\x83\\x4f\\xee\\x0f\\x5c\\xa0\\x3a\\xa7\\xf8\\x8e\\xe9\\x9a\\x61\\x6a\\x1b\\xba\\x01\\x04\\x58\\xc9\\x34\\x4b\\xb8\\x91\\x3c\\x95\\xbc\\xa0\\x68\\xae\\x20\\x6a\\x80\\x68\\x0e\\x18\\xdd\\x7e\\xf8\\x37\\x6a\\xe8\\x5d\\xa7\\xac\\x1a\\x65\\x26\\x19\\x60\\xe7\\x56\\x35\\xf0\\x45\\x4a\\x4e\\xfa\\x15\\xb5\\x1c\\xf5\\x3c\\xdb\\x92\\x8a\\xc8\\x44\\xc8\\x83\\xe6\\xa9\\x2a\\xd3\\x56\\x11\\xc8\\x12\\xa9\\x39\\xc8\\xe5\\x1a\\x64\\x40\\x35\\xb4\\x31\\x6b\\x49\\x93\\x07\\xd3\\x37\\xfc\\x67\\x6d\\xb3\\x49\\x4e\\xf2\\xb0\\x1a\\x61\\x03\\x57\\x91\\x77\\xad\\x52\\xa8\\x00\\xf4\\x61\\x2e\\x21\\xe3\\x0b\\x70\\x90\\x92\\xa3\\x29\\x61\\xa3\\x3c\\x0a\\x49\\x42\\xbb\\x2d\\x6c\\xce\\xa3\\x8a\\xfd\\x0d\\x8c\\xd2\\x29\\x0f\\x5c\\x81\\x2a\\x1a\\x98\\xc7\\x09\\x79\\x90\\xe7\\x34\\x97\\xa8\\xf1\\x3c\\xe6\\x45\\xbe\\x17\\xf6\\x24\\x3d\\xfd\\xea\\xea\\x72\\x7e\\x7c\\x69\\x1c\\x58\\xb2\\x22\\xe8\\x16\\xab\\x71\\x5d\\x8f\\x57\\xab\\x79\\x3e\\x52\\x8a\\xf6\\x48\\x61\\x4a\\x0a\\xe5\\xd0\\x49\\xec\\x25\\xcc\\xac\\xac\\xae\\x56\\xae\\x49\\x2f\\x00\\xfa\\xa7\\x51\\x2e\\x1b\\xba\\x89\\x56\\x37\\x6d\\x63\\x35\\xba\\x19\\x4f\\x4a\\x94\\xe4\\x89\\xde\\x60\\x52\\xcb\\x84\\xb9\\x52\\x2a\\xad\\xaf\\x5f\\xb9\\xc2\\x74\\x51\\x56\\xf7\\x3d\\x79\\x07\\x13\\xfc\\xc1\\x76\\xde\\xc1\\x84\\x7e\\xd0\\xee\\x1d\\xdc\\x04\\x3f\\x10\\x5a\\x99\\x23\\xa2\\x10\\x92\\x65\\x53\\x72\\x39\\x37\\xcf\\x94\\x47\\x1e\\xa9\\x54\\x4d\\x4b\\x6e\\x19\\x46\\x80\\x14\\x28\\xa0\\xa9\\x36\\x90\\xdc\\x6d\\xf6\\x33\\x43\\x68\\xc5\\x3d\\x82\\x02\\x59\\x4f\\xc6\\xf2\\xf3\\x0f\\x59\\xfb\\x76\\x04\\x6f\\x96\\x3e\\xb1\\xd8\\xfd\\x47\\xdd\\x1f\\xa7\\x21\\xfc\\x0e\\x4a\\x7f\\x4a\\xb0\\xb0\\x79\\x61\\x2c\\x99\\xbc\\x43\\x18\\xe5\\xff\\x49\\xb4\\xb4\\xb1\\xed\\xcf\\x48\\xae\\x1e\\xe5\\x68\\x2c\\x49\\xe4\\x59\\x72\\x6d\\x8d\\x4c\\x3e\\x1a\\x40\\x6f\\x93\\xbf\\xe1\\x55\\x5d\\x69\\x39\\x5b\\x28\\xfa\\x5a\\xa8\\x5c\\x06\\x5d\\xa5\\xb9\\xa9\\xb5\\x61\\x9a\\x2c\\x97\\xa5\\x7f\\x3d\\x6b\\x60\\xbb\\xcf\\x10\\x5e\\x97\\x54\\x90\\x93\\x20\\x56\\x17\\xea\\x8f\\x93\\xc3\\xcb\\x27\\x98\\xb6\\x72\\x62\\x93\\x57\\xc8\\xab\\x2b\\xe6\\x4a\\x9e\\x9f\\x60\\xfa\\xbf\\x8f\\x35\\x22\\xfa\\x86\\x6f\\xc6\\xd0\\xa8\\x8b\\xb8\\x19\\x55\\x01\\x2e\\xe3\\xff\\xd4\\x82\\x9e\\x50\\x73\\x2b\\x64\\xa3\\x4e\\xb8\\xeb\\x84\\x63\\x80\\x02\\xc7\\x32\\x98\\xb3\\x99\\xc4\\xe9\\xd4\\xaf\\x5c\\x31\\xcd\\x75\\x9d\\xe6\\x50\\x98\\x7f\\x98\\x41\\x48\\xf3\\x38\\xf6\\x60\\x63\\xa6\\x8e\\xbe\\xe7\\x12\\xc5\\x1c\\x69\\xa1\\xf2\\xd4\\xa0\\x17\\x2c\\x48\\x12\\x62\\x7e\\xa2\\x5e\\x7f\\x38\\x83\\x6f\\x09\\x26\\xab\\x20\\xc7\\xe5\\xb3\\xc1\\x0f\\x0b\\x73\\xa0\\xc2\\xe4\\x71\\x3b\\xc0\\x0d\\x28\\x8f\\x14\\x02\\x87\\x3b\\xfc\\xad\\xa5\\x99\\x6e\\x3f\\x03\\xa8\\xbd\\xaf\\x31\\xf3\\x9c\\x93\\xc9\\x07\\x95\\x70\\x5f\\xef\\x48\\x30\\xfb\\xe3\\xb9\\x91\\x2e\\x67\\x5f\\x5f\\xcf\\x9d\\x2e\\x6f\\x62\\x78\\x26\\x1f\\x8b\\xff\\x97\\xf9\\x91\\xbe\\x1e\\xaf\\xc3\\xa1\\xeb\\xcc\\xcd\\xfc\\xfd\\x7b\\x03\\x1e\\xa7\\xdc\\x3b\\x34\\xfb\\xd8\\x44\\xc8\\xe3\\x45\\x39\\x2e\\x73\\xb2\\x6e\\x35\\x0d\\x78\\x70\\x83\\x63\\x2d\\xdc\\x40\\x6e\\x27\\x49\\x33\\x50\\x9a\\xdb\\x63\\x72\\xdf\\x3e\\x09\\xc1\\x1b\\xca\\x7a\\x15\\xbc\\x7e\\xea\\xd0\\xeb\\x6c\\xcb\\x02\\xba\\x9b\\xe8\\xaf\\xe6\\xfd\\x4e\\xde\\x50\\xc2\\xcf\\x56\\x31\\x61\\x8a\\xb6\\x06\\x33\\x5e\\xa9\\xb1\\x8e\\x69\\x7b\\x79\\x44\\x5d\\x0a\\x3f\\x2c\\xd1\\x4f\\x80\\xcf\\x6c\\x96\\x47\\x6f\\xd2\\xb6\\x13\\xb4\\x7b\\x39\\x4c\\xb4\\x16\\x11\\x49\\x90\\xee\\x5c\\x48\\x51\\xc6\\x49\\x56\\x37\\x8c\\x69\\x1a\\x43\\xdf\\xc2\\xec\\x4c\\xa6\\xc0\\x54\\x0b\\xd7\\x10\\x26\\x1a\\xd7\\x42\\x54\\x02\\x40\\x1d\\xce\\x43\\xae\\x9f\\x83\\x3a\\x04\\xa5\\x61\\x4e\\x8b\\x89\\x82\\xc0\\x02\\xbc\\x05\\xf2\\xa4\\x6f\\x89\\x02\\xdf\\xc4\\x0a\\xd1\\xa9\\x40\\xd2\\x48\\x8e\\x83\\x14\\x70\\x4f\\xba\\x67\\xf9\\xdc\\xf1\\x9f\\x0d\\xf4\\xc4\\x7b\\xfa\\x8d\\x04\\x8a\\x02\\xd9\\xe7\\x80\\x4e\\x9b\\xf6\\xcb\\x5c\\x0a\\x18\\x3c\\x11\\x5e\\x3c\\x9e\\xf4\\xc4\\x65\\x37\\x17\\x03\\x4a\\x0e\\xbb\\x97\\xe0\\xfc\\x48\\xab\\x14\\xa1\\xd3\\xd0\\x03\\x73\\xe9\\x99\\x24\\x79\\x9b\\x9a\\x65\\xa2\\xea\\x08\\x63\\x79\\x58\\xca\\x48\\xbb\\xe1\\x7e\\x84\\xd2\\x20\\x83\\x5f\\xd8\\x60\\x61\\x23\\xc1\\x61\\xae\\xe9\\x66\\x25\\xc3\\x1e\\x4d\\x4e\\xdd\\x78\\x42\\x17\\xe9\\x4b\\xe2\\x8d\\xfe\\x72\\x61\\x30\\xbd\\xdc\\x9b\\x3a\\x1e\\x3b\\x36\\xbc\\x62\\x49\\x0e\\xd6\\x61\\xe3\\x76\\xcc\\xe6\\x3a\\x4f\\xfe\\xe6\\xec\\x1b\\xb4\\x5a\\xed\\x2a\\x49\\x67\\x74\\xf8\\x1e\\x3e\\x3a\\xbf\\xa3\\x68\\xdd\\x41\\x5e\\xeb\\xcb\\x92\\xce\\x5e\\x6e\\xce\\xf1\\x84\\x71\\xad\\xca\\x69\\xd8\\x0a\\x16\\xff\\x83\\x4d\\xc8\\x56\\x27\\x62\\x13\\x8d\\xaf\\xc4\\x26\\x62\\x6f\\xd6\\x34\\x5c\\xad\\x4d\\xf6\\xf0\\x44\\x6c\\x72\\x32\\x36\\x11\\x37\\x0d\\x98\\xb8\\x8c\\xd5\\x55\\xae\\xcd\\x79\\x85\\xd5\\x59\\x5e\\x8a\\xda\\x6f\\x74\\x38\\x9b\\xf2\\xc0\\x66\\xfb\\xf2\\xaa\\xb9\\x79\\xdc\\xd8\\x8b\\x28\\xc9\\x1d\\xe9\\x5e\\xea\\x3e\\x06\\xdb\\x88\\x78\\xc2\\xf2\\xa0\\x18\\x4a\\xc0\\x9f\\xb5\\x93\\xda\\x5b\\x19\\x6b\\x85\\x34\\x3d\\x30\\x62\\xd8\\xce\\x1b\\xd0\\xcc\\x3c\\x72\\x4f\\x99\\xbd\\x62\\xd3\\x19\\x36\\xba\\x64\\xd6\\xa2\\x33\\xd8\\x2b\\x40\\x21\\xac\\xb3\\x50\\xd9\\x28\\x33\\xa4\\x33\\x8c\\x32\\x11\\x1a\\xa2\\xb6\\x67\\x18\\xfd\\xf5\\xd3\\x5c\\x56\\xcc\\x6b\\x9a\\x41\\x29\\xae\\x87\\x46\\xac\\xc2\\x9f\\x24\\x04\\x9a\\x89\\x66\\x18\\x89\\xd8\\xc1\\x8b\\x0b\\xd1\\x81\\x09\\x87\\xe6\\x58\\xdc\\x35\\x94\\xbe\\x79\\x97\\x3a\\x98\\x77\\x69\\xce\\x83\\xbb\\x1e\\xa1\\x45\\xe4\\x2d\\xdd\\xf3\\x7b\\xd5\\x9e\\x68\\x6f\\x70\\x74\\x57\\xaf\\xa6\\x79\\x52\\xd1\\x85\\x50\\x77\\xb2\\x5b\\xc1\\x33\\x3b\\x9e\\x05\\x6b\\xda\\x7f\\xcb\\x34\\x5e\\xa8\\xa6\\x65\\xa6\\x5d\\x36\\x2e\\x33\\x4e\\x08\\xf1\\x16\\x35\\x69\\x35\\x48\\x5b\\x96\\xb4\\xd4\\xaa\\xad\\x99\\x3f\\x98\\xe3\\xc3\\x85\\xec\\x6b\\xe9\\x8a\\x7e\\x68\\xe6\\x55\\x1c\\x30\\x2f\\xa3\\x84\\xfc\\xc5\\x97\\x3a\\x3a\\xbe\\x88\\xc3\\xe6\\xd5\\xf8\\xf8\\x78\\xfc\\x95\\x57\\x66\\x7e\\xcd\\x16\\xb1\\xeb\\x0a\\x08\\xeb\\xd1\\x2f\\x5b\\x62\\x4d\\xdb\\x9e\\x7e\\xf2\\x4a\\xe0\\x24\\x22\\x31\\x4b\\xe8\\x86\\x11\\x62\\x1f\\x1b\\xdb\\xbd\\x6f\\xbc\\xb1\\x91\\x5f\\x3e\\x30\\xad\\x9c\\x9c\\xd8\\x7d\\x81\\x69\\xce\\xbd\\xda\\xf8\\xbe\\xe5\\xfc\\xcc\\x71\\x77\\x76\\xfa\\xb8\\xd8\\x8a\\xfd\\x52\\xa4\\xc9\\x0f\\xce\\x71\\x57\\x0e\\xaa\\x58\\xb3\\xd5\\x56\\x48\\xe7\\x3a\\x9b\\x8a\\x4d\\xc8\\x4e\\x34\\x0e\\x74\\xf2\\x40\\x1c\\xf0\\xb2\\x53\\xb9\\xf4\\x20\\x03\\x63\\x42\\x3b\\x1e\\x87\\xe0\\x47\\xea\\x96\\x06\\xb8\\x0d\\x76\\x56\\x4e\\x6f\\xad\\x5f\\xfd\\xbd\\xb1\\x07\\xc7\\x63\\xac\\xbf\\xad\\x96\\x95\\xf7\\xc6\\xde\\x38\\x1e\\x3b\\xb1\\xa9\\xaa\\x42\\x9e\\x1e\\xf2\\xde\\xa1\\x61\\xa5\\x16\\xb6\\x79\\xe8\\xb2\\x51\\x32\\xca\\xed\\x4f\\xbe\\x01\\x8c\\xcc\\xda\\xe6\\x1c\\x6d\\x3d\\x50\\x95\\x24\\x9d\\x3a\\xbc\\x49\\xeb\\x55\\x30\\xb4\\x66\\xb1\\xac\\xbf\\xdc\\x2d\\xbb\\xaf\\x54\\x4a\\x00\\xee\\xf8\\x54\\x1a\\xdf\\xd4\\x7f\\x6c\\xfc\\x0d\\x9a\\xb2\\xe8\\xff\\x94\\x5f\\x3e\\x96\\x63\\xc3\\x63\\xbb\\x27\\xe2\\xc9\\x4c\\x24\\x71\\x68\\x26\\xae\\x26\\xb2\\x53\\xd0\\xde\\x3a\\x2a\\x42\\xfa\\xd0\\x8a\\x45\\x5b\\xce\\xcf\\x9d\\x70\\xe8\\x50\\x85\\x42\\x22\\xde\\x9f\\x89\\x64\\xba\\x66\\x0e\\x75\\xc7\\xc3\\xc7\\xc5\\xd6\\xe2\\x1a\\x5c\\x8b\\x5a\\xe0\\x2f\\x81\\x57\\x69\\x9b\\xb6\\x63\\x95\\x48\\x86\\x8a\\x1a\\x5d\\xea\\xea\\xc5\\xba\\xb0\\xa1\\xb6\\x47\\x86\\xd8\\x3f\\x58\\xc8\\x74\\x1a\\xea\\xd0\\xf6\\xe8\\x5b\\x5a\\x33\\x97\\x45\\x3b\\xfc\\xed\\x5a\\x53\\x47\\x5a\\xb5\\xf4\\xa6\\xf6\\xe6\\x04\\xf2\\xbd\\xd2\\x9e\\x27\\x5f\\xa5\\xb7\\x59\\xb7\\xb8\\xb9\\x81\\x86\\x6b\\xb5\\xa9\\x6f\\x80\\xa3\\x8c\\xb9\\xed\\xdd\\x05\\x52\\xf0\\xf1\\xbb\\x8b\\x45\\xbc\\x5b\\x2f\\x99\\x70\\xb7\\x10\\x99\\x08\\xd7\\x37\\x95\\xf4\\x74\\xa2\\xbb\\xb6\\x2e\\x3a\\x2b\\x55\\x75\\x72\\x3a\\x6f\\x22\\xf0\\x09\\x9a\\x4b\\xa5\\x85\\x92\\x27\\xfe\\x3e\\xa7\\xb2\\xea\\x66\\x23\\x18\\x53\\x47\\xa4\\x46\\x49\\xc8\\x48\\x17\\x7d\\xae\\x29\\xf6\\xc8\\xf6\\x78\\x5f\\x6d\\xf9\\x56\\x16\\xe7\\x16\\x39\\x20\\x95\\x21\\xe6\\x5e\\x09\\x05\\x54\\x35\\x10\\xaa\\x46\\xd0\\x27\\xfe\\xa2\\x58\\x8c\\x50\\xdf\\x2e\\x69\\xa8\\xdd\\x1b\\x78\\x6b\\xfe\\x84\\xcf\\x59\\x6a\\xe1\\x3d\\xa2\\x28\\x93\\x8c\\xbf\\xab\\xe4\\x81\\xcd\\x41\\x1e\\x61\\xad\\xb0\\xed\\x04\\xa8\\xee\\x41\\xb2\\xd0\\xb3\\xbd\\x9a\\xc5\\xfd\\x26\\x28\\x79\\x6e\\xa0\\xa3\\xdc\\xf1\\xbc\\xfe\\xd0\\xa9\\xa5\\x0b\\xfa\\xbe\\xf1\\x48\\xc6\\x60\\x55\\x62\\x3a\\x2a\\x0d\\x24\\x81\\x99\\xfe\\xfc\\x1d\\xa7\\x2f\\xe9\\xe7\\x97\\xc6\\xf7\\xe9\\x99\\x08\\xb3\\xe2\\xb6\\xe9\\x0c\\xea\\x44\\xb8\\x2e\\x56\\x99\\x34\\xb7\\x24\\x41\\xd3\\x3a\\x29\\x49\\xdb\\x14\\x20\\x5b\\x15\\x00\\xb1\\x76\\x06\\x66\\x6e\\x79\\x53\\x7d\\x6a\\x42\\x71\\x3a\\xd5\\x84\\x99\\x8f\\x05\\x5f\\xb7\\xaf\\xd4\\xac\\x50\\x6d\\x53\\xa9\\x15\\xac\\x51\\x79\\x7d\\xdf\\x4a\\x30\\x75\\xc5\\xaa\\x97\\xd8\\xdb\\x9d\\xa4\\xb5\\x46\\xf2\\x64\\x1b\\x9f\\x76\\x58\\xfd\\xd1\\x9b\\xdd\\xa6\\x60\\xc3\\x0c\\x3a\\x01\\x0a\\x41\\xe8\\xfd\\x50\\x62\\x23\\xef\\xd3\\x9a\\x1b\\xde\\x8c\\xb9\\x98\\x22\\x95\\x4d\\x6a\\x0b\\xf2\\x62\\x45\\x5b\\xd3\\x38\\x12\\x02\\x19\\xfa\\x10\\x57\\x64\\x28\\x8a\\x61\\x73\\x53\\x42\\x8e\\xd1\\xcd\\xf6\\x1b\\x29\\x85\\xcb\\x14\\xae\\x93\\x27\\x31\\xb3\\x36\\x84\\x12\\xd0\\x12\\xba\\x95\\xab\\x47\\x40\\x75\\xb4\\xe5\\x86\\x53\\x96\\x1f\\x28\\x6c\\x05\\x4b\\x82\\x83\\x56\\x99\\x69\\x2a\\x86\\xb6\\x36\\x26\\x42\\xc9\\x21\\xd1\\x68\\x96\\xcb\\x26\\xa5\\x1c\\x85\\x51\\xc3\\xbf\\x88\\x9f\\x13\\xfa\\xe8\\x34\\xac\\x31\\xc5\\x5c\\x87\\x39\\xc2\\x28\\x69\\x44\\x87\\x13\\x96\\x63\\x8b\\xcf\\x40\\x3b\\x71\\xd3\\xd2\\x29\\x3b\\xed\\xd8\\x4c\\x5b\\x4d\\xd2\\x89\\x5c\\x2c\\xae\\x11\\x98\\x17\\x4f\\xc0\\xe5\\x12\\x1e\\x4c\\x28\\xa8\\x01\\x19\\x4b\\xdf\\xd7\\x38\\x7e\\xb6\\xff\\xdf\\x86\\x14\\xe6\\x9a\\x78\\x85\\xf7\\x4c\\x3e\\xae\\x6d\\x3b\\xb6\\xb9\\x9f\\x7c\\xf1\\x52\\x06\\xc0\\x5d\\xc0\\x40\\xb0\\x68\\x44\\x32\\x6c\\xe3\\xa1\\x53\\x57\\x22\\x99\\xaa\\x8e\\x01\\x1d\\x75\\xc0\\x0e\\xbe\\x72\\x8a\\xe7\\xa4\\x50\\x4e\\x43\\x9b\\x73\\xda\\x21\\x37\\xb3\\x52\\x14\\xf3\\x5b\\x8f\\x64\\x74\\x65\\x73\\x8e\\xbe\\x26\\xa6\\xf3\\xf6\\x72\\xfa\\xc5\\x36\\x9d\\x75\\xdb\\x71\\x01\\xe6\\x8b\\x2c\\x6c\\xaa\\xb5\\x2f\\xb4\\x59\\xab\\x31\\x34\\xbc\\x0d\\xc1\\xa6\\xad\\x61\\x6a\\x58\\x67\\x57\\xc4\\x38\\x2e\\x74\\x19\\x3f\\x24\\x41\\xbe\\xc2\\xef\\x12\\x2e\\x1a\\x82\\xd5\\x1a\\xc9\\x3d\\x7e\\x91\\x99\\xec\\x66\\x8a\\x56\\x02\\x0c\\x84\\x9c\\xfd\\x38\\x58\\x24\\x9b\\x70\\x85\\x76\\x12\\x45\\xd5\\x7a\\x81\\x1d\\x67\\x2f\\xe0\\x1d\\x69\\xb2\\x77\\x66\\xc7\\xe1\\x9b\\xd8\\x9d\\x9f\\xa3\\x14\\xef\\xf8\\xa2\\xf4\\x2e\\x56\\x64\\xef\\x22\\x4f\\xbd\\x02\\xde\\xf1\\x45\\xfa\\xf1\\x8f\\x52\\x4a\\x65\\x7c\\x11\\xca\\x28\\xd2\\xf7\\x59\\x2a\\x83\\x7e\\xfa\\x45\\x4a\\x85\\x78\\x2f\\x5e\\xf2\\x8c\\x52\\x79\\x21\\xb5\\xc6\\x37\\x4e\\xe2\\x0d\\x27\\x99\\xa2\\xdd\\x80\\x07\\x37\\x34\\x63\\x04\\x3d\\x47\\xfa\\x23\\xa2\\xff\\xb3\\x74\\xb3\\x09\\x65\\x60\\x59\\x31\\x53\\xd7\\xbf\\x46\\x07\\x52\\xb7\\x85\\xd0\\x52\\x6b\\xa2\\x6b\\x73\\xce\\x87\\x73\\x03\\x1a\\xcc\\x6a\\x4b\\x68\\x09\\x9b\\x2b\\xfc\\x9f\\xbc\\x0e\\xa9\\xb8\\x66\\x7c\\xb7\\x37\\xa2\\x94\\xae\\xda\\x12\\x19\\xae\\x34\\xab\\xd0\\x81\\x2e\\x5c\\x34\\x84\\xb9\\x8a\\x28\\x50\\x6a\\x8d\\x4e\\x1a\\x23\\x56\\x73\\x24\\x51\\xfd\\xf5\\x4b\\xbc\\x1d\\x58\\x98\\x95\\x4d\\x7e\\x68\\xa3\\xfa\\xf0\\x58\\x63\\x3e\\x1e\\x5b\\x89\\x9a\\xb8\\x80\\x4e\\xba\\xa0\\x92\\xf8\\x59\\xba\\xaf\\xf1\\x75\\x36\\x85\\x02\\xa3\\x3f\\xa7\\x33\\xad\\x89\\x6b\\x57\\xfb\\xdf\\x8a\\xbf\\x28\\x35\\x23\\x22\\x2e\\x2d\\x09\\xf1\\x17\\xbf\\x8f\\x33\\xb6\\x6d\\xff\\x5e\\x6b\\x45\\x95\\xe3\\x68\\xa4\\x49\\xca\\xcf\\x9f\\xc4\\xb5\\x1f\\xa3\\x28\\xe9\\x0d\\x78\\x0e\\x9c\\x75\\x60\\x72\\xc6\\xa0\\xbb\\xc2\\x2f\\x71\\xfc\\xa5\\x5a\\xb6\\xc5\\x4e\\xaa\\x0d\\x7f\\x7b\\xed\\x35\\xe2\\xf1\\x5f\\xaf\\x40\\xbd\\x38\\x10\\x59\\xab\\x6e\\x65\\x42\\x17\\x60\\xb1\\xab\\x57\\x1b\\x1b\\x58\\x39\\x02\\x65\\xa0\\x44\\x72\\x08\\x75\\x0c\\x8b\\x4f\\x9b\\xdf\\x9c\\x79\\xaa\\xfd\\x79\\x31\\x7a\\x61\\xbd\\xb1\\xa1\\xeb\\x8a\\xf0\\xc4\\xa2\\x4c\\xd1\\xd6\\xd8\\x23\\xae\\x54\\x73\\x8e\\x6f\\xca\\x17\\x31\\xf7\\xe6\\x24\\xc5\\x05\\x5f\\xb4\\xd1\\xdc\\x2f\\xe7\\x2d\\x90\\xd0\\xf2\\x3a\\x39\\xd6\\x84\\xfd\\x24\\x7b\\xf4\\x87\\x37\\x9f\\x54\\xb5\\xa2\\x59\\x59\\x5f\\x37\\xb7\\xf9\\x8a\\x4e\\xc8\\x84\\xdf\\x34\\x9b\\x72\\x8a\\xff\\x0a\\xf5\\xf3\\x11\\x1d\\x87\\x81\\x23\\x9c\\xf9\\x24\\xe9\\x77\\xd0\\xbd\\x22\\xb5\\x71\\xe5\\xfc\\x79\\x86\\xc1\\xf8\\x6a\\xfb\\xce\\x5f\\x61\\xff\\xf5\\x73\\xfb\\x57\\x1a\\xff\\x0f\\x46\\x03\\xbd\\x87\\x3d\\xe8\\x5d\\xd9\\x2f\\x39\\x05\\xbb\\x58\\x59\\x52\\xb9\\x55\\xec\\x76\\x3e\\x61\\xec\\xd2\\xab\\xff\\xbe\\x44\\x5d\\x69\\x0d\\x13\\x93\\xe9\\x0d\\x7c\\xa9\\x0c\\x66\\xd6\\x06\\x5d\\x61\\xa5\\x48\\x46\\xe2\\xf9\\xf1\\x75\\x89\\x24\\xaf\\x94\\x5f\\xd3\\xa7\\xba\\x3d\\xcf\\x62\\xed\\x1c\\x49\\x15\\x1f\\x41\\x36\\xa8\\x8a\\x09\\xe5\\x5b\\xe4\\xea\\x83\\xcf\\x83\\x49\\xd3\\x15\\x64\\xdb\\xd8\\x6a\\x28\\xf1\\x83\\xf6\\xb9\\x20\\x5d\\x59\\x0a\\xf2\\xff\\x53\\x98\\x89\\x14\\x9a\\x85\\x24\\x66\\xe7\\x9e\\xcd\\xd1\\xb4\\xc3\\x0b\\x60\\x64\\xed\\x47\\xa5\\x80\\x52\\x0b\\xdc\\x6d\\xd9\\x06\\x96\\xe2\\x32\\x26\\x8b\\x3a\\x96\\xf3\\xad\\xc6\\x77\\xce\\x30\\x7d\\x38\\x3a\\xdb\\x78\\xb7\\xde\\x99\\x65\\xbf\\xd9\\xf8\\xb6\\xce\\x0e\\xb1\\x22\\x15\\x69\\x5c\\x79\\x50\\xbf\\xb9\\xc3\\x97\\xfe\\x16\\x3b\\x76\\xa6\\xf1\\x4d\\xb8\\xc7\\xd8\\xe8\\xf5\\x65\\x0f\\x6c\\xd5\\x2f\\xc5\\x81\\xb2\\xcb\\x6d\\x96\\x5b\\xa7\\xdb\\xdd\\x6c\\xc9\\xc3\\xc5\\x66\\x9e\\xd4\\xe6\\x01\\x33\\xf4\\x84\\x96\\xd0\\x99\\xd2\\x92\\x67\\xd7\\xf5\\x19\\xc0\\xc8\\x4d\\x28\\xfe\\xd8\\xe8\\xd8\\xcc\\xd8\\xcc\\xf4\\x98\\x7f\\x62\\xef\\xd2\\x84\\x65\\x00\\x52\\x8e\\xf8\\xc9\\xa2\\x1a\\x92\\x62\\xf1\\xdd\\x7e\\x05\\xee\\xea\\x1e\\x19\\xf1\\x4f\\x4c\\x48\\xcd\\x78\\xca\\x7c\\xbd\\x8c\\xb4\\xea\\x93\\x0e\\x6d\\xae\\x4b\\x32\\x5d\\x80\\x51\\xa3\\x6b\\x6c\\xb1\\xab\\xd7\\x2e\\x94\\xf9\\x1a\\xdf\\xec\\xad\\x60\\x09\\xcf\\x38\\xd5\\xee\\xcb\\x56\\x11\\x6f\\x18\\x6d\\x62\\x95\\x6e\\x10\\xad\\x81\\x5c\\xb6\\x0a\\x79\\xa1\\x39\\x1e\\x4c\\xe5\\xf3\\xf3\\xe8\\x40\\xa8\\x30\\xa9\\xf6\\xc6\\xb3\\x67\\xdf\\x58\\x5b\\x3c\\xeb\\xad\\x40\\xef\\x2c\\x99\\x37\\x7f\\x20\\x18\\xfc\\xc0\\xcd\\x66\\xe5\\x4b\\x81\\xfb\\x0f\\xfe\\xd2\\x81\\x27\\x24\\x49\\x6e\\x4a\\xcc\\xc5\\xb5\\x3c\\x2d\\xc4\\xb8\\x12\\xf6\\x24\\xf7\\x0f\\xd8\\xa4\\x58\\x81\\x38\\x5a\\x14\\x13\\x91\\x19\\x97\\x09\\x6d\\xc5\\xb8\\x64\\x1d\\x03\\xa1\\x81\\x7a\\x0e\\xbe\\x31\\x8b\\xf4\\x47\\xe6\\x27\\x46\\xd3\\x36\\x38\\xfc\\xfd\\x41\\xc3\\x73\\x09\\xb8\\xa5\\xbd\\x84\\x4f\\xbf\\xc5\\x2f\\x2c\\x40\\x3c\\x2a\\x9e\\xb4\\xfb\\x52\\xfe\\x15\\xcd\\xf2\\xc1\\x0b\\xfb\\x40\\x72\\x4d\\xd8\\xfe\\x90\\xed\\xc5\\x66\\x71\\x16\\x22\\xe3\\xbb\\xf6\\xe1\\xf7\\x4c\\xe5\\x10\\x31\\xda\\x26\\x1f\\x03\\x77\\x53\\xba\\xe9\\x6d\\xc5\\xad\\x0b\\xd8\\x31\\xae\\x42\\x5c\\x49\\xd0\\xc2\\xa5\\xb1\\x2b\\xd2\\x5e\\x0f\\x58\\x16\\x20\\x82\\x07\\x85\\x5b\\xee\\x46\\x07\\x9e\\xdc\\x7d\\xc3\\x11\\xa8\\x4c\\x78\\xaa\\x4f\\x55\\xfb\\x7e\\xa6\\x2f\\x14\\xea\\x63\\x95\\x06\\x32\\x8e\\xac\\xf8\\x85\\xf1\\x04\\xdc\\x97\\x80\\x7b\\x72\\x47\\xfe\\x3a\\x3c\\x32\\x30\\x30\\x72\\x48\\xed\\x6b\\x7c\\x8d\\xee\\xc9\\xf5\\xa9\\x42\\x9c\\x0a\\xde\\xa6\\xb6\\x5f\\x53\\x3b\\xea\\x3f\\xf7\\xc0\\xe2\\x0d\\x49\\xa1\\xfe\\xda\\xb0\\xb6\\xb0\\x67\\x49\\x84\\x63\\xd3\\x9c\\xcd\\x92\\xc2\\x6c\\x26\\xe4\\xf6\\xef\\x1b\\x5f\\xfd\\x8d\\x52\\x15\\xe7\\xad\\x6b\\x12\\xa6\\x65\\x56\\x6c\\x54\\x71\\x3e\\xab\\xc3\\x7c\\x46\\xd3\\x1c\\x83\\x94\\xf8\\x53\\x3b\\x47\\x7b\\x3e\\x4b\\xb6\\xcf\\x67\\x62\\x1d\\x6b\\x1f\\xa0\\x09\\xed\\x0b\\x38\\x97\\x35\\xea\\x98\\x52\\xce\\xdc\\xfd\\x82\\xfd\\x01\\x5c\\x5c\\xc5\\x8b\\xec\\x4a\\x28\\x2e\\xb9\\x9a\\xb2\\x50\\x37\\x8f\\xbd\\x40\\x48\\xc5\\x7c\\xf9\\x43\\x1e\\x91\\x64\\x5b\\x96\\x39\\xb3\\x74\\x78\\xe5\\xc8\\xc6\\xf4\\xe1\\xc3\\xd3\\xb8\\xc1\\x31\\x93\\xac\\x83\\x0d\\xfb\\x8b\\xcd\\xd8\\xf5\\xf4\\xec\\x3b\\xc4\\x87\\xa8\\xb5\\x3b\\x85\\x55\\xb6\\xf5\\x03\\x23\\x49\\x23\\xcc\\xb7\\xe4\\xa5\\x10\\x80\\x1e\\x1a\\xe4\\xcf\\x4d\\x16\\x7c\\x64\\x2b\\x90\\x53\\xb9\\xfb\\xe0\\xab\\xfb\\x95\\x35\\x65\\x3f\\x26\\x2c\\x4f\\x2e\\x86\\x93\\xff\\x61\\xee\\x89\\x27\\x66\\x3f\\x3b\\xfb\\xc4\\x13\\x22\\x6e\\xec\\x80\\x15\\xab\\x2d\\x2b\\x93\\x9a\\x3b\\x6f\\xd9\\xdf\\x92\\x79\\x2a\\x2b\\x17\\x29\\xd2\\x5c\\x29\\x30\\x00\\xfd\\x77\\x20\\x50\\x2d\\xef\\xbf\\x78\\x71\\x7f\\xb9\\x78\\x48\\x4e\\x90\\xd7\\xac\\x92\\x90\\x0f\\x71\\x3e\\x05\\x72\\x62\\x46\\x73\\xcc\\xf3\\x18\\x9e\\x7c\\x23\\x6b\\x69\\x56\\x04\\x18\\x36\\xf8\\xac\\xae\\x62\\x84\\xfd\\x9a\\x6d\\x57\\x86\\x1a\\x32\\xb1\\x8f\\x45\\x61\\xcc\\x15\\xb6\\x5f\\x43\\xec\\x8e\\x5f\\x40\\xab\\x69\\xac\\x2a\\xd9\\x4d\\x67\\xed\\xf1\\xc1\\x97\\x96\\x5a\\x71\\xd5\\xdb\\xd3\\xe3\\x35\\xd1\\x2c\\xfc\\x51\\x7a\\xe5\\x27\\x42\\xa1\\xa2\\xa2\\x58\\x21\\xe1\\x98\\x69\\x02\\x40\\x68\\xb7\\xb7\\x0e\\x37\\x41\\xd2\\xfd\\x55\\x7a\\xff\\x77\\x66\\x82\\xd1\\xc1\\x60\\x26\\x13\\x18\\x1a\\x0c\\x64\\x80\\xdc\\xd3\\x6d\\xf9\\x84\\x4b\\xc0\\x7e\\x44\\x8a\\x0f\\xaa\\x2b\\xb5\\x61\\x4d\\x66\\x05\\x99\\x45\\xfb\\x4a\\xc0\\x7e\\x18\\x35\\xec\\xfd\\x07\\xa8\\x1e\\xdc\\x4b\\x9d\\x29\\x62\\xfc\\x05\\xd2\\xc0\\x9f\\xa5\\x34\\xcc\\xe3\\x1e\\x54\\x88\\x23\\xa4\\xe4\\x5f\\x39\\x86\\xed\\x16\\xc4\\x2f\\xc9\\x72\\x60\\xda\\xa2\\x97\\x34\\x68\\x26\\x5b\\x11\\xbd\\xfd\\x23\\x34\\xf7\\x6d\\x6c\\x52\\x41\\xda\\x58\\x97\\x94\\x63\\x84\\xfb\\x20\\xcb\\xb2\\xaa\\x6e\\x87\\x73\\x3d\\x7a\\xe1\\xc2\\x28\\x6e\\x15\\x1b\\xdf\\x1a\\xf7\\xff\\x7d\\x94\\x5f\\x66\\x46\\x3b\\xa2\\xf5\\xf7\\x8e\\xf7\\x64\\x5a\\xfa\\xed\\x5e\\x7e\\x9f\\xd2\\xc2\\xeb\\x54\\x99\\x54\\x29\\x32\\xd7\\x7c\\x1a\\x51\\x1d\\xfc\\xbd\\xac\\x66\\x6c\\x8c\\xcc\\x00\\x9a\\x83\\x47\\xea\\xb1\\x5b\\x62\\x5b\\x6c\\xf7\\xf3\\xd2\\xeb\\xa4\\xfb\\xa4\\x07\\x25\\xc9\\xb6\\xc5\\x50\\x67\\x31\\x0e\\x58\\x7e\\xae\\xbd\\x9d\\xdc\\xfc\\x7a\\xf3\\xfb\\x2c\\x6c\\x39\\x38\\xb6\\xed\\xda\\xed\\x73\\xb9\\xfd\\x3e\\x6b\\xdf\\x8e\\x1d\\xcf\\x86\\x91\\xa6\\xee\\x0e\\x75\\x76\\x76\\xdd\\x2b\\xb6\\xbd\\x01\\x17\\xba\\x60\\xcb\\x43\\x1a\\xa0\\x5b\\xf0\\xca\\x32\\x9c\\x9d\\x80\\x6d\\x1e\\xb6\\xfd\\xfd\\xdd\\xdd\\xf4\\x05\\xa4\\x1b\\x74\\xb4\\xd4\\x85\\xb7\\x88\\xaf\\x2b\\x85\\x99\\x14\\xf1\\xb2\\x89\\x49\\x82\\xee\\x1e\\x6f\\x9e\\x1b\\x98\\x54\\x3a\\x31\\x53\\xca\\xe0\\x4e\\xfa\\x5e\\x92\\x7a\\x9a\\xb3\\x08\\xb5\\x15\\xe9\\xb7\\xc7\\x60\\xdd\\xda\\x25\\xed\\x97\\x8e\\x4b\\x37\\xc0\\x4c\\x75\\x9b\\x74\\x0f\\xb4\\x95\\xf5\\x1c\\x99\\xb6\\xbd\\x3a\\x0c\\x4d\\x10\\xb4\\x5b\\x02\\xad\\x75\\xdc\\x76\\x2b\\xed\\xf0\\x0b\\x24\\xa2\\x1d\\x42\\xab\\x88\\x7b\\x16\\xe3\\x4f\\x29\\xa4\\x06\\x36\\x0d\\x6c\\x8d\\x57\\xb8\\xd1\\x28\\x1c\\xfe\\x18\\x71\\x2d\\xb7\\x09\\xf6\\x31\\xcb\\xcc\\xe4\\xac\\x8c\\x4f\\xf8\\xaa\\x42\\x19\\x1c\\xf7\\x51\\x4a\\xf9\\x9d\\x0f\\x85\\x4a\\x98\\xd7\\x65\\xfd\\x35\\xca\\x94\\xb7\\x24\\x8d\\xde\\x83\\x94\\x51\\xe3\\x1f\\xd0\\x7c\\x80\\xee\\xbd\\x83\\x7e\\xf7\\x00\\x5d\\x86\\x29\\x5a\\xca\\x4b\\x10\\xc3\\x88\\xbd\\x22\\xb9\\x2d\\x9f\\xe8\\x24\\xf5\\xa9\\x9b\\xa4\\x8b\\xd2\\x9d\\xd2\\xaa\\xf4\\x26\\xe9\\x09\\xe8\\xa9\\xef\\x96\\xde\\x23\\x7d\\x58\\x7a\\x11\\x79\\x2f\\x25\\x38\\x9c\\x0f\\x35\\xfb\\x17\\x74\\x87\\xb9\\xcc\\xa6\\x6b\\x23\\x74\\x66\\xf7\\x24\\xf2\\x48\\x15\\x90\\xe9\\xb2\\x4d\\x44\\xb2\\xd6\\x55\\x95\\x67\\xd3\\xbf\\x43\\xd3\\xb5\\x8c\\x11\\xf2\\x73\\xb3\\x4a\\x96\\x5e\\x4b\\x8e\\x52\\x19\\xe5\\x94\\xfc\\xde\\x94\\x1d\\xae\\x20\\x1f\\x0a\\x1d\\xa0\\xa6\\x5a\\x85\\xe6\\xb8\\x62\\x9f\\x30\\x98\\x6a\\xff\\x2b\\x35\\xfc\\x0b\\x51\\x76\\xcb\\xe0\\x69\\x86\\x2d\\x01\\x31\\xec\\xf6\\x38\\xfa\\x7d\\xdd\\x81\\xbe\\xae\\x3d\\x0c\\x1b\\xa5\\xc3\\xf3\\x29\\x68\\xbc\\xfb\\xe1\\x68\\xf3\\xe7\\x8b\\xf4\\xbe\\x20\\xd2\\xc2\\xdf\\x59\\xbd\\xb7\\xb7\\xb3\\x8f\\x61\\xfb\\x75\\x77\\x50\\x9e\\xaf\\x42\\x9b\\x1b\\x74\\xeb\\x52\\x28\\x74\\x15\\x9a\\xdf\\xa0\\xf6\\x77\\x34\\x2f\\x33\\x39\\xda\\xf8\\x54\\xf4\\x8c\\xc3\\xd5\\x41\\x95\\xd9\\xd3\\xd5\\x17\\xe8\\x86\\xef\\xf7\\xc0\\x05\\xfc\\x3d\\xfb\\x9f\\xa1\\x10\\x4b\\xd0\\x9d\\x77\\x0a\\x5d\\xf8\\x13\\x74\\xe5\\x3c\\xe4\\xf2\\x7c\\x08\\xfe\\xd6\\x58\\x5f\\xa7\\xbb\\x1b\\xdf\\xff\\x0a\\x7d\\x21\\x49\\x03\\xf6\\xbb\\x6b\\xce\\x06\\x69\\x69\\x42\\xca\\x01\\xa7\\x79\\x10\\x74\\x92\\xe7\\x00\\xc3\\xfa\\x2e\\xe9\\x7e\\x98\\x0f\\x2e\\x4b\\x4f\\x4a\\xef\\x80\\x48\\x9b\\xef\\x97\\x3e\\x24\\x7d\\x42\\xfa\\x8c\\xf4\\x13\\x92\\x24\\xb5\\x59\\x69\\x79\\xda\\x1a\\x9e\\x5e\\x49\\xf3\\x8c\\xbf\\xf5\\x4c\\xdb\\x6f\\xda\\x67\\x81\\xf6\\xc8\\x11\\xfc\\x55\\x39\\x85\\x3e\\x52\\xa0\\x2b\\x9e\\x4d\\x2f\\x74\\xc4\\xae\\x01\\xdd\\x31\\xbf\\x43\\xde\\x2c\\x26\\x0c\\x8a\\x7d\\xd4\\xea\\x5e\\xce\\x07\\xc2\\x2b\\x71\\xd0\\xfb\\x79\\x31\\x14\\x5a\\x82\\x83\\xed\\x3e\\x3f\\x4a\\xb7\\x8e\\x35\\x27\\xa9\\x2e\\xde\\x37\\xfe\\x0e\\x76\\x8c\\xf7\\x8a\\x50\\xa8\\xc1\\x07\\xdf\\xbc\\xdd\\x65\\xc4\\x0f\\x5b\\xa6\\x82\\xf9\\x50\\xba\\x81\\xae\\x7d\\x99\\x8e\\xff\\x7b\\x28\\x74\\xa2\\xf9\\x96\\x6a\\xc2\\x80\\xfc\\x84\\xf0\\x36\\x55\\xba\\xf5\\x39\\xbb\\x83\\x34\\xa0\\xe4\\x0a\\xdc\\xfe\\xaa\\xf8\\xdb\\x55\\x3a\\xba\\x09\\xaa\\xa6\\x6c\\xf9\\xbd\\x60\\xeb\\x21\\x44\\x6d\\xd3\\x69\\x6e\\xfc\\x2c\\x4d\\xb4\\xb4\\xea\\x70\\xce\\xa6\\x9b\\x34\\x0a\\xa4\\x6d\\xa5\\x50\\x5c\\xf3\\xf5\\x9b\\x9f\\x7e\\xfa\\xe6\\xdd\\xd3\\x33\\xbb\\x76\\xcd\\x4c\\xb3\\x3a\\xdc\\x3c\\x38\\x78\\xd7\\xc3\\x77\\x0d\\x0e\\xd2\\x0a\\xa4\\xb3\\xca\\x76\\xbf\\xa9\\x5d\\x78\\xfa\\xe9\\x0b\\xc3\\xb1\\x03\\xe7\\xce\\x1d\\x88\\xd1\\x6f\\x3a\\x82\\x0f\\xfd\\xd0\\x43\\xc1\\x0e\\x01\\xe7\\x01\\x7c\\x38\\x6d\\x1d\\xd9\\xb0\\x4c\\x41\\xe2\\x42\\xed\\xc8\\x17\\x1c\\xef\\x21\\x12\\x4d\\x8e\\x41\\xc0\\xe2\\x5f\\x17\\x71\\x29\\x90\\x06\\xf4\\xf5\\xee\\x3b\\xb9\\xaf\\xd7\\xf7\\x9b\\xff\\xf7\\xa3\\x52\\xfc\\xab\\x21\\x72\\xd8\\xeb\\x55\\x37\\x47\\x5e\\x69\\xd2\\x6b\\x2a\\x42\\xe0\\x67\\x65\\xf8\\xcf\\xdb\\x51\\x72\\x0c\\xce\\x32\\x1b\\xc5\\x52\\x05\\xb6\\xa2\\xc1\\xc5\\xfc\\xcc\\x67\\xdc\\x81\\xe4\\xc9\\x7b\\xc0\\xaf\\xef\\x3f\\x63\\x52\\xda\\x8f\\xe7\\xa4\\x7d\\x6b\\xda\\xfd\\x84\\x24\\x89\\x5c\\x6d\\xc9\\xf4\\xc7\\x35\\x6b\\xa9\\xe6\\xd1\\xc9\\x8b\\xfd\\x82\\xc7\\xf3\\xa5\\xc5\\x2f\\x81\\x05\\x50\\xe3\\x3f\\xc3\\x88\\x4d\\xcd\\x25\\x7b\\xa3\\xec\\x63\\x70\\x8a\\x17\\x3d\\xdf\\xca\\x44\\x52\\xb3\\x3a\\x74\\x66\\xc9\\x23\\xf4\\x47\\x1f\\xac\\x20\\x61\\x29\\xc6\\xd1\\x84\\xe7\\x09\\xae\\x23\\x9b\\x83\\x89\\x19\\x34\\x88\\xe8\\x3e\\x47\\x5a\\x5b\\xb0\\x42\\x06\\x95\\xa6\\xcc\\x65\\x0d\\xdf\\x70\\xdd\\xa8\\xdc\\xb8\\x78\\x52\\xf9\\xe2\\xef\\x9d\\x9a\\x3c\\x98\\x78\\xe0\\x45\\x17\\xfb\\xb4\\x6b\\xe1\\x5e\\xcf\\xbf\\xc7\\xd3\\xff\\xe9\\xc0\\x6f\\xc2\\xd3\\xf2\\xb3\\xa9\\x67\\xa6\\x2b\\xcf\\xf8\\x8f\\x5e\\xfb\\xc5\\xc0\\xc0\\xb9\\x51\\xd8\\xf6\\xfe\\x64\\x97\\x02\\xe7\\xa7\\x1c\\xcf\\x4c\\xbb\\x6d\\x0d\\x20\\x95\\x1f\\x15\\x25\\x82\\x81\\x9c\\xba\\xc5\\x8a\\xcc\\x66\\x4e\\xbf\\x49\\xdc\\xaf\\x6e\\x66\\x0f\\xb5\\x24\\xb9\\x87\\x52\\xa3\\x0b\\xa3\\xa3\\x0b\\x15\\xce\\xf9\\x32\\x4d\\xe4\\x0c\\x7f\\x13\\xbf\\x19\\x25\\xbe\\x5b\\x62\\x15\\x87\\xc4\\x91\\x2d\\x48\\x3f\\xad\\x10\\x0f\\x92\\xcf\\x37\\x35\\x4e\\x72\\x5e\\xd4\\x0f\\xd9\\x56\\x73\\x48\\xfe\\x57\\x20\\xc4\\x10\\x96\\x74\\xc5\\x00\\xfb\\x0e\\x03\\x8f\\x9e\\x22\\xfc\\x6d\\xe0\\x35\\xea\\xaf\\x62\\x90\\xa1\\x57\\x75\\xeb\\x4d\\xa2\\xb3\\x01\\x7f\\x8b\\x55\\x1e\\xe3\\xe6\\xaf\\xc8\\x47\\xd2\\x2e\\xdd\\x4b\\x68\\x80\\x12\\xb3\\x9e\\x34\\x54\\xd8\\xa1\\x70\\x34\\x0a\\x86\\xea\\x63\\x19\\xe1\\xa7\\x37\\x97\\x7c\\x05\\x0a\\x35\\x23\\x54\\xbc\\xb9\\xa5\\xd0\\x46\\x51\\x93\\x64\\xeb\\xbd\\x6e\\x6c\\x92\\x8f\\xe4\\xda\\x35\\x1c\\xcd\\x3d\\xf9\\xa1\\x6c\\xc2\\x33\\xc2\\xc4\\xc2\\x77\\x63\\x55\\xcb\\xac\\x06\\x77\\xa5\\xb5\\xb5\\x88\\x9f\\xb4\\xc3\\x21\\xf2\\xc8\\x04\\x56\\x03\\xfd\\x11\\x6a\\x9b\\x3f\\x4c\\x69\\xd4\\x48\\xe4\\x00\\x0a\\x44\\xb2\\x9a\\x55\\x22\\x82\\xe5\\x3d\\x47\\x37\\x48\\xe1\\x1b\\x48\\x6f\\x81\\x34\\x90\\x6d\\x14\\x03\\xd9\\x56\\xf0\\x34\\x57\\x8e\\x0a\\x21\\xd3\\x03\\xcf\\x54\\xac\\xd3\\x11\\x1e\\x7f\\x8c\\xa3\\x8b\\xd0\\x65\\x56\\xc4\\xab\\xba\\x4e\\x27\\xf5\\x22\\xde\\x53\\xe1\\xf0\\x22\\x1e\\x91\\x82\\x24\\xa9\\x87\\x26\\xe5\\xb6\\x62\\x99\\xa9\\xdf\\x43\\x6d\\x78\\x94\\x24\\x2f\\x15\\x7b\\x75\\x9b\\x0a\\xd5\\x79\\xec\\x23\\x2a\\xf7\\xe7\\x76\\xaa\\x96\\xc8\\x09\\x79\\xf9\\x0c\\x1c\\xc8\\x59\\xcc\\xd5\\xb6\\xe6\\x87\\xba\\xc6\\xf9\\xab\\x9a\\xc1\\xa4\\xd2\\xbe\\x2f\\x89\\xdc\\x15\\x33\\x89\\xbd\\xaa\\x16\\x57\\x4f\\x45\\xed\\x6b\\x61\\xbf\\x24\\xb4\\xb7\\x4d\\x53\\xcc\\xb5\\x38\\xcb\\x8c\\xc0\\x61\\x8a\\xfb\\x02\\x9f\\x45\\xc8\\x2d\\x94\\x8e\\x70\\x04\\xb0\\xd7\\xd3\\xaa\\x3b\\x41\\xe9\\x79\\xe1\\xb8\\x72\\xea\\xa1\\x7d\\xe3\\xe9\\x9e\\xfe\\xbe\\xfe\\x9e\\xd3\\x97\\x2e\\x31\\x49\\x20\\x53\\xf9\\xe7\\xf5\\x74\\xe5\\xc7\\xef\\x3e\\x3a\\xbe\\x14\\xe8\\xee\\x0a\\xfa\\x7a\\xfa\\x11\\x7b\\x93\\xcf\\x8f\\xbf\\x4d\\xb2\\x0a\\x85\\x5b\\xb3\\xa4\\x61\\x52\\x51\\x09\\x3b\\x0a\\xb5\\x50\\x38\\x9f\\x7d\\xf0\\xc7\\xc6\\x7e\\x8c\\x9d\\xea\\xed\\x3d\\x38\\x16\\x8b\\x7d\\xe9\\x9e\\x5f\\x89\\xc5\\xc6\\x0e\\xc2\\xfc\\x55\\x86\\xab\\xff\\x93\\x5f\\xfc\\x95\\x7b\\xbe\\x44\\x17\\x3d\\x82\\x4c\\xb1\\x1b\\x64\\x5a\\x31\\x51\\x27\\xae\\xfa\\xd1\\x63\\x4e\\x0e\\x80\\x5e\\x42\\x10\\x82\\x10\\x07\\xb8\\xba\\x8a\\x36\\xd3\\xba\\xbe\\x8a\\x27\\xb6\\xd2\\xbb\\x66\\x32\\x45\\x6f\\xd4\\x4c\\x8c\\xcd\\xd9\\xb0\\x47\\x94\\xf4\\x83\\x40\\xf0\\x16\\xe2\\xc6\\xf0\\x3c\\xb3\\xc0\\xc1\\xb4\\xf5\\x47\\x4f\\x10\\x63\\x6f\\x66\\x08\\x33\\x49\\x15\\x4a\\x60\\x0e\\x01\\xa3\\xae\\x38\\x99\\xc5\\x28\\xae\\xd9\\x7f\\x26\\xde\\xbe\\x7c\\xbe\\x85\\xb3\\x37\\x72\\xe1\\x78\\xff\\x64\\xf0\\xee\\x27\\xee\\x0e\\x4e\\xf6\\x27\\xe0\\x4b\\xf8\\x08\\xf1\\x13\\x9b\\x31\\x0e\\xdb\\x25\\x0a\\x1c\\x3f\\xb6\\x25\\x40\\xae\\xae\\xad\\xd5\\x05\\x89\\x41\\x7b\\x94\\xce\\x76\\x7c\\x84\\xf6\\x1c\\xb6\\x17\\xd7\\x89\\x38\\x33\\x7d\\x52\\x98\\xec\\x55\\x36\\xa9\\x50\\x72\\x01\\xdc\\x61\\xd5\\x2a\\x0c\\xda\\x0b\\xe4\\x9b\\x98\\x22\\x8a\\x6e\\x05\\xda\\x0f\\x04\\x9e\\x5a\\xa9\\x51\\xaf\\x62\\xc7\\xe7\\x96\\xf5\\x24\\xa9\\x16\\xe2\\x36\\x5e\\xff\\x99\\x2a\\xed\\x18\\x21\\x0e\\x3b\\x1e\\xde\\xf7\\xde\\x2e\\xd0\\x4b\\xaa\\x14\\x95\\x97\\x12\\x61\\xd5\\xff\\x9e\\xdb\\xa5\\xbc\\x4d\\x18\\x5c\\xc9\\xb5\\x65\\x9e\\x94\\x98\\x3d\\x1d\\x05\\xec\\x09\\x2a\\xcb\\xa7\\xa3\\xbd\\x0e\\xdb\\x10\\x9f\\x55\\x70\\x1a\\xa2\\xc9\\xa5\\xce\\xc5\\x50\\x70\\xc2\\x6a\\xb4\\x6b\\x54\\xf1\\x8a\\xfd\\x2d\\x1e\\x49\\xdf\\x97\\x36\\x73\\x0a\\x76\\xd3\\x5e\\x92\\xf0\\xa9\\x60\\x6f\\xa4\\x6e\\xf7\\xe0\\xda\\xf2\\xd5\\xdd\\xda\\xa7\\x37\\xe7\\xf7\\x4f\\xf7\\x9c\\xcc\\x1d\\xdc\\xae\\x05\\x44\\x8f\\x81\\xef\\x55\\xca\\xde\\x96\\x89\\x10\\x6f\\x71\\xe7\\xb7\\x41\\x56\\xfa\\x1c\\x0f\\x64\\xa7\\x5e\\x4a\\x23\\xff\\x05\\x56\\x67\\x2f\\x88\\x71\\x12\\xed\\x7f\\xc2\\xe7\\x68\\x6e\\x2f\\x60\\xf8\\x3e\\x4d\\x18\\x1f\\x0e\\x4b\\x73\\x9f\\x4e\\x3a\\x9f\\x7d\\xec\\xb1\\xc6\\x6f\\x31\\x13\\xa5\\x46\\x75\\xb0\\x9c\\xfe\\x3f\\xb5\\xdf\\x16\\x63\\x25\\x7b\\xa4\\x10\\x8f\\x71\\xc2\\x02\\xdb\\x88\\xec\\x02\\x34\\x96\\xf8\\xdc\\x81\\x8a\\xd9\\x90\\x59\\x6b\\x51\\x4d\\x1b\\xb4\\xae\\xeb\\xdc\\x9c\\x99\\xec\\x0f\\x04\\x55\\x41\\x83\\xe4\\xa7\\x1a\\xb5\\xa4\\x49\\x98\\xfa\\x64\\x2b\\x9e\\xe6\\x71\\xf8\\xdd\\x39\\xec\\x73\\x9a\\x71\\xb7\\xa7\\x51\\xab\\x56\\xcd\\xbf\\x08\\x8d\\x8c\\x98\\x1c\\x71\\xda\\xb4\\x7a\\x55\\x82\\xfb\\x35\\xa5\\x67\\x39\\x9c\\xb9\\xcc\\x9d\\x7b\\xe6\\x0b\\x64\\x57\\x9a\\x1a\\x56\\x52\\x60\\xf4\\x0d\\xa8\\x48\\x6c\\xae\\xe4\\x92\\x5d\\x7e\\x75\\xef\\x5b\\x7f\\xee\\xe6\\xfe\\x6e\\xd9\\xd1\\x39\\x38\\x39\\x39\\x10\\x46\\x8b\\xea\\xe5\\x9e\\xae\\x80\\x27\\xaa\\x1e\\x18\\x49\\xdc\\x01\\xd8\\x39\\x7d\\xdd\\xee\\xc8\\xcc\\xc8\\x40\\xd8\\xaa\\x4f\\x95\\xea\\xd3\\xdf\\xac\\x8f\\x2c\\x4e\\x8f\\x55\\xdd\\xb8\\x5b\\x5e\\xa7\\xa9\\x97\\x6a\\xa6\\x59\\x53\\xae\\x55\\xbf\\x3a\\xc5\\x07\\x98\\x86\\xfa\\x09\\x3f\\x52\\x37\\x57\\x4f\\xf6\\x50\\x05\\xb9\\x5d\\xba\\x1a\\xb2\\x9e\\xa1\\x4a\\xc2\\xcd\\x75\\xaa\\xaa\\xb7\\xab\\x33\\xa8\\xf4\\x74\\x4d\\x0e\\xf4\\xf4\\xf6\\x87\\xfa\\xfb\\x83\\xb2\\xda\\xe7\\x73\\xf7\\x74\\xb0\\x32\\x2f\\xec\\x37\\xa9\\xda\\xdd\\xbd\\x7d\\xbd\\xdd\\x3d\\x5d\\x03\\x23\\x03\\x3d\\x6e\\x00\\x65\\x97\\x83\\xa9\\x81\\x48\\xd0\\xdd\\x87\\xfc\\xd7\\x67\\xa1\\x26\\x37\\x43\\x4d\\x14\\x8a\\xce\\x05\\x85\\x66\\x33\\xc3\\x58\\x08\\x8c\\x41\\x95\\xb0\\xdf\\xf3\\x79\\x79\\x0e\\x4b\\x87\\xa1\\x4f\\xa5\\x73\\xdb\\x79\\xa6\\x77\\xb9\\x3a\\xe5\\x90\\xdc\\xe9\\xea\\x0a\\xcb\\x5d\\x4a\\x97\\xef\\x9d\\x17\\xf6\\xfb\\x65\\x36\\xd0\\xd3\\xd3\\x37\\xda\\xd7\\xd3\\x33\\xc0\\x46\\x47\\xfd\\x1e\\x8f\\xcb\\xe5\\xf1\\xf8\\x47\\x77\\x2d\\xf4\\xba\\xfc\\xfd\\xa3\\xbb\\xe4\\x87\\x97\\x22\\x83\\xe3\\x8b\\xf1\\x3e\\xb7\\xc7\\xe3\\xee\\x8b\\xee\\x13\\xb4\\x0f\\x4e\\x92\\x14\\x0d\\xef\\x80\\x73\\x43\\x36\\xd6\\xe9\\xa6\\xd4\\xb7\\xc6\\xa3\\x1a\\xd8\\xc6\\x4a\\x57\\xf4\\x62\\x63\\x03\\x35\\x1c\\xfe\\x08\\xf7\\xd0\\x2a\\x89\\x66\\x4c\\x38\\x3b\\xd7\\xeb\\x96\\x12\\x48\\x28\\x11\\xb1\\x35\\x47\\x09\\x83\\xc9\\xa2\\xad\\xec\\x79\\x9e\\x54\\x15\\x34\\x7b\\xec\\x28\\x76\\x2e\\x9b\\xa8\\xff\\x2e\\x62\\xfc\\x67\\xbd\\xba\\xb9\\x32\\x45\\x5e\\x91\\x0d\\x1d\\xbe\\xd5\\xb5\\x81\\x7e\\xbd\\x3f\\xac\\x95\\xb6\\xd6\\xaa\\x64\\x57\\x48\\xa8\\xd1\\x00\\xc5\\x50\\xc9\\x43\\x8d\\x9a\\x36\\x46\\x62\\xa5\\x60\\xd7\\x6a\\x82\\xed\\xe6\\x91\\x32\\xcd\\xb2\\x54\\xaf\\x40\\x77\\x77\\x00\\x8a\\xa4\\xaa\\xb0\\xb6\\x1a\\x6e\\x60\\xc5\\x74\\xac\\x1b\\xc1\\x9a\\x3c\\x6f\\xd5\\xe4\\x9a\\xb4\\xb5\\x96\\x52\\xdb\\x1b\\x1a\\x24\\xeb\\xc8\\xeb\\x35\\x8d\\x1b\\xa7\\x5e\\x56\\xdb\\xb6\\x4d\\xd8\\xbe\\x93\\x1b\\x8b\\x5a\\x65\\xe7\\xc6\\x78\\xe8\\xee\\xe5\\xd9\\xb6\\x12\\x87\\xa4\\xcc\\xf5\\xfa\\x44\\xee\\x7a\\xfd\\xa2\\x5a\\xd4\\x74\\x2c\\x6b\\xe7\\x9e\\x51\\x04\\x55\\xc9\\x76\\x7d\\xc3\\x4f\\x56\\x40\\x93\\xe2\\x9b\\x20\\x53\\xba\\xef\\xed\\x15\\x14\\xcd\\x12\\xe5\\x7e\\x9d\\xe6\\x37\\x11\\x7a\\xda\\xbc\\x6e\\xcb\\xbb\\x85\\x76\\x50\\x49\\x1f\\x33\\xc7\\x11\\xba\\x6c\\x74\\x2e\\x5e\\x23\\xde\\x37\\xae\\xdf\\x5d\\x15\\x5d\\x27\\xe8\\xeb\\x12\\x55\\xc3\\xdc\\xf6\\xe5\\x10\\xb8\\x00\\xd4\\xa9\\x7f\\x80\\x50\\xb1\\xa1\\x92\\x3b\\xbf\\x27\\xa1\\xa5\\x28\\xe6\\x12\\x45\\xb3\\xe3\\x3e\\x87\\xdf\\xa5\\x22\\x5a\\x11\\x9a\\x7c\\xdb\\xf2\\x6b\\x55\\x70\\x86\\xb8\\xde\\x38\\xf1\\x08\\xed\\x21\\x93\\xe4\\x7d\\x97\\x74\\x80\\xb7\\x48\\x56\\x68\\x15\\x6b\\x67\\x37\\xcc\\xf7\\xda\\x3e\\xd0\\x42\\x34\\x68\\x60\\x5c\\xf3\\xd1\\x73\\x9d\\x76\\x22\\x08\\x83\\x30\\x1f\\x3d\\x09\\xb4\\xcd\\xe5\\x47\\xd7\\x6d\\xb2\\x9d\\xde\\xa7\\xa0\\xfb\\xb3\\x99\\x6e\\x82\\xf7\\xbb\\x6e\\x7d\\x0d\\x1d\\x2a\\x49\\x83\\x9d\\xba\\xf9\\xf6\\xf5\\x44\\x4b\\x32\\x30\\x1b\\xc6\\xde\\x16\\x86\\x59\\x08\\xc0\\xc9\\xbf\\xb7\\xda\\xf1\\xa8\\xc7\\x05\\xd2\\x62\\xe7\\x01\\x94\\x22\\xdf\\x0a\\x70\\xb4\\x35\\x46\\x7d\\x3e\\xa5\\xb6\\xd5\\x1c\\x1b\\x3e\\xbb\\x79\\x44\\xd2\\x6c\\x23\\xd4\\xb0\\x44\\x46\\xb2\\x86\\x41\\xea\\x41\\x48\\x36\\xec\\x1a\\x43\\x8b\\x9b\\xc4\\xde\\x57\\xc5\\x4a\\x56\\x15\\x9c\\x4a\\x15\\xf0\\xd2\\x43\\x43\\x03\\xc3\\xae\\xb2\\x73\\x13\\x9d\\x1b\\x22\\xfa\\x6c\\x6b\\x0d\\x65\\x20\\x1f\\x2b\\x95\\x16\\xb1\\x07\\x27\\x65\\xa6\\x99\\x9b\\xe2\\xc9\\x57\\xd7\\x36\\x73\\xa9\\x7d\\xb4\\x12\\xe9\\x24\\x95\\xfb\\x9e\\xf9\\x71\\x6e\\x11\\x51\\xdf\\x86\\x13\\xb7\\x74\\x88\\x3f\\xb1\\x13\\x13\\x2e\\xd8\\xc4\\xa9\\x92\\xb6\\xd9\\x4f\\x40\\x0e\\x91\\xcd\\xf4\\x77\\xf5\\x15\\xd8\\x3d\\x32\\x96\\xd7\\x67\\x8f\\x5c\\xc7\\x5b\\x60\\xaa\\xeb\\xf0\\x78\\x2a\\xb7\\xd5\\x63\\xc0\\xe6\\x29\\x1d\\x12\\xd9\\xeb\\x0f\\xf1\\x08\\x8d\\xc0\\xaf\\x02\\x13\\xbc\\xa5\\x0b\\x82\\x28\\xd2\\x82\\x91\\x5c\\x39\\xb1\\x7c\\x07\\x13\\x61\\xf5\\x8b\\x45\\x06\\xcf\\xcc\\xf4\\xe5\\xe5\\xf6\\x4e\\x56\\x2c\\x4a\\xcc\\xd6\\x2d\\x53\\x2c\\x9a\\x40\\x12\\x58\\xeb\\x2c\\xd3\\x6b\\x0d\\xcd\\x5c\\x19\\xde\\x43\\xb1\\xc2\\xcd\\xf0\\x19\\xc9\\xd9\\xb6\\xd6\\x5c\\x7f\\xa5\\xd9\\x61\\x91\\xa9\\x5c\\xaf\\x97\\x77\\x48\\xe3\\xd2\\x38\\xfb\\x26\\xfb\\xa6\\x65\\xed\\x10\\x26\\x0d\\x87\\x0e\\x54\\x40\\x01\\xf9\\x7f\\xe4\\x72\\x0b\\x28\\x72\\x94\\x21\\xcd\\x81\\x35\\x90\\x0d\\x6b\\x89\\xd8\\x5d\\xd9\\x02\\x38\\x6d\\x80\\xdf\\x08\\x1c\\x84\\xd4\\x2c\\x9c\\xe7\\x43\\xb2\\x07\\x1d\\xd7\\x1e\\x8f\\xa5\\xa7\\xf6\\xdd\\x3f\\x35\\x12\\xcf\\xed\\x7b\\xd3\\xa0\\x47\\xf7\\x8c\\xdd\\x43\\xef\\xfb\\x2b\\x9e\\xc1\\xd8\\x98\\xe7\\x06\\xba\\xc2\\x6e\\xe4\\x27\\xfc\\xce\\x74\\x2c\\xb7\\xef\\x96\\x18\\x7e\\x91\\xa6\\xcb\\xe5\\xcc\\xc4\\x52\\xee\\x93\\xd4\\x7f\\x8a\\x94\\xcd\\x5b\\xe0\\xb6\\xdc\\x9b\\xe8\\xbe\\xf7\\x09\\xf7\\x21\\xdd\\x38\\x23\\xf9\\xd9\\xef\\xb1\\xef\\x10\\xa6\\x4c\\x93\\xfb\\x97\\x51\\xfb\\x05\\x96\\x0c\\xf3\\x40\\x22\\x52\\xe7\\x20\\xdf\\x16\\xe8\\x23\\x30\\x38\\x31\\x46\\x4f\\xcc\\xa1\\xc2\\x15\\x4f\\x36\\x43\\x2a\\x32\\x1e\\xbf\\x16\\x08\\x39\\x2e\\x54\\x7e\\x62\\x22\\xdd\\x1f\\x1b\\x36\\x8c\\x0e\\xaf\\x23\\x35\\x34\\x94\\x72\\x78\\x3b\\x0c\\x63\\x38\\xe6\\x90\\x3d\\x4e\\xa7\\x47\\x76\\xb4\\x7d\\x53\\x25\\x79\\xd2\\x4d\\x99\\xc3\\xbe\\x8e\\xfe\\xc5\\x64\\x3a\\xed\\x92\\x7b\\x3c\\x80\\x3a\\x06\\x58\\x63\\x9e\\x1e\\xd9\\x95\\x4e\\x27\\x17\\xfb\\x99\\xcb\\xc9\\x98\\xd3\\xc5\\xb6\\xfb\\x1e\\xdf\\x80\\x38\\x8b\\x77\\x89\\xb6\\xcf\\x16\\x92\\x01\\x7a\\xb9\\xc1\\x96\\x11\\xa2\\xbd\\x20\\x86\\x32\\x05\\x1b\\x81\\xbd\\x0c\\xfb\\x0d\\xed\\x63\\x93\\xb1\\xc9\\x4f\\xc7\\x26\\x63\\xef\\xe4\\x01\\x51\\x4c\\x73\\x08\\x2e\\x14\\xb5\\x2c\\x5c\\x62\\xa6\\x62\\x9a\\x6f\\x83\\x53\\xf8\\xc4\\x7e\\x8b\\x5e\\x85\\x5b\\x7b\\x2b\\x9c\\xdc\\x65\\x9a\\xef\\x87\\x4b\\xe0\\x2c\\x67\\x49\\x6a\\xfe\\x88\\xf8\\x16\\xf2\\xad\\x64\\x39\\x28\\x97\\x60\\x1d\\x0a\\xc9\\x9c\\x9c\\x73\\xe6\\x53\\xec\\xbe\\xd9\\xb0\\x82\\x10\\xdb\\xbd\\x63\\x87\\x1b\\x75\\xe0\\x65\\x2b\\x06\\xbb\\xed\\x46\\x0d\\xe5\\x8a\\xb5\\x6b\\x52\\x8d\\xd3\\xf0\\x5c\\xdb\\xe1\\xb6\\x38\\x27\\x00\\x31\\x27\\xe0\\x71\\xf4\\x72\\x63\\xe5\\xe4\\xcb\\xeb\\xa5\\xdf\\x63\\xa7\\xa2\\x17\\x6e\\x30\\x56\\x99\\xbe\\xeb\\xe5\\xc9\\xb5\\x0a\\x00\\xec\\xdf\\xfc\\x8e\\xda\\xa9\\xb2\\x80\\x10\\x0f\\x2f\\x35\\xc0\\x0b\\xac\\x00\\xa3\\x70\\xc5\\x60\\xf5\\x35\\xca\\xbd\\xa3\\x29\\x4b\\xe2\\x58\\x8b\\x7d\\x52\\x90\\xd0\\xa5\\x75\\x42\\xe7\\xb5\\xe3\\xb2\\xe0\\x16\\x80\\x0d\\x01\\x6b\\xc9\\xed\\x23\\xc9\\xe9\\x02\\xcb\\x4e\\x24\\x6d\\xa1\\xb5\\x90\\xc4\\x92\\x40\\x79\\xea\\x18\\x62\\x0e\\x18\\xf1\\xe6\\xdc\\x54\\x84\\xcb\\x06\\x0f\\xb9\\xb2\\xc6\\xe1\\x58\\x4c\\xb6\\xde\\xd0\\x18\\xdc\\x81\\x37\\xae\\xa3\\xc5\\x2d\\xbf\\x2e\\x49\\x9d\\xcd\\x39\\xd2\\xb6\\x59\\x27\\x54\\x19\\x8e\\x1c\\xc6\\xfd\\xd0\\x73\\x64\\xaf\\x41\\x5b\\x5e\\xb9\\x8e\\xbf\\x3b\\xbd\\x55\\xf2\\x59\\x68\\x3a\\x52\\x12\\xee\\x29\\xc0\\x48\\x10\\xbf\\x4f\\x2b\\x86\\xbe\\xc5\\x27\\x5e\\xe3\\xf0\\x37\\xfc\\x5b\\x53\\x83\\xb0\\x67\\xe8\\xa4\\x60\\xf2\\x5b\\x2b\\x3a\\xfd\\x31\\x43\\x9c\\xdb\\xcd\\x16\\x8a\\x93\\x4e\\xbe\\x9f\\x36\\x3f\\xde\\x6e\\xef\\x20\\xe8\\x60\\xda\\xf6\\x9e\\xeb\\xc5\\xaf\\x17\\xee\\xa3\\x90\\xf4\\xe1\\x07\\x49\\x1c\\xfe\\x20\\x49\\x67\\x17\\xe9\\xf8\\xfd\\x5b\\x23\\xd6\\xd3\\xd7\\x61\\x56\\xa5\\xb3\\x3d\\x61\\x4a\\x49\\x8e\\xbe\\xc8\\xe3\\xd3\\x8b\\xa9\\xf0\\x2d\\xf4\\x0a\\xf8\\x63\\xdf\\x62\\xdf\\xc2\\xe8\\x90\\xd4\\x2b\\x60\\xe5\\x23\\x39\\xfe\\x5e\\xee\\xeb\\x95\\xcf\\x82\\x2c\\x1d\\x13\\x95\\x3c\\x55\\xb1\\x4d\\x9d\\x4c\\xe6\\xbe\\xdc\\x59\\x37\\x35\\x70\\x36\\x49\\x18\\x01\\x79\\x6e\\x50\\xda\\xdc\\xb3\\x62\\x3c\\xae\\xf9\\x4e\\xc0\\xa7\\x54\\x8a\\xdf\\x11\\xff\\x43\\xf6\\xd5\\xa8\\xde\\xf8\\x02\\x98\\x62\\xb1\\x62\\xe9\\x9a\\x14\\xd7\\xd9\\x09\\x00\\xe3\\x8d\\xeb\\x27\\x4a\\x3c\\x81\\xbb\\x4f\\xf8\\x4a\\x26\\x6e\\xa5\\x12\\x8b\\xc3\\x2f\\x58\\x5f\\x63\\x3e\\x8a\\x76\\x5b\\x27\\xf4\\x78\\xa9\\x84\\xd6\\x7e\\x5f\\xd0\\xe3\\x5a\\xe9\\x04\\x25\\xd4\\x7b\\x6c\\x59\\xc1\\x16\\xbf\\x07\\x41\\x23\\x40\\x9b\\x73\\x87\\xe3\\x2d\\xe4\\x76\\xb5\\x84\\x7f\\x9a\\x90\\x8a\\x6b\\x12\\x02\\xab\\x9a\\xf4\\x61\\xd2\\xd6\\xa3\\x36\\xd0\\x63\\x18\\x67\\x31\\x29\\xc6\\xbe\\x06\\xba\\xef\\x20\\xe1\\x4d\\x21\\x5f\\x1e\\x62\\xa4\\x83\\x6b\\xc2\\x9e\\xf1\\x50\\xfb\\x59\\x22\\x2e\\xb3\\x05\\x38\\x05\\x23\\x34\\x8b\\x3f\\x93\\x71\\xfa\\xc8\\xdf\\xc9\\xe6\\x07\\x5e\\x3a\\x96\\x48\\xe8\\xf0\\xf1\\x5e\\xfe\\x7b\\x6f\\x62\\xb4\\x3b\\x90\\x00\\x77\\x60\\xef\\xc0\\x32\\xd0\\x88\\x81\\x44\\x60\\x80\\xbd\\x72\\x57\\xe3\\x6b\\xea\\x4b\\xc7\\x13\\xf7\\xe7\\xf3\\xd0\\x39\\x2f\\x57\\x12\\x81\\xee\\xb1\\x44\\x87\\xa2\\xac\\xa8\\xf7\\x07\\xba\\x15\\x55\\x9e\\xd0\\x89\\x1a\\x69\\xda\\x98\\x75\\x13\\xfe\\x95\\xde\\x66\\x27\\x46\\x98\\x03\\x76\\xb5\\xdc\\xb0\\xcf\\x51\\x0d\\xe8\\x1c\\xee\\x41\\x2a\\x15\\x89\\xd2\\x13\\x06\\xd5\\x85\\x19\\xfa\\x32\\x95\\x9e\\x80\\x6a\\xbc\\x6a\\x18\\x2b\\x81\\x6e\\x80\\xff\\x81\\xe2\\x4d\\xac\\x44\\x27\\x64\\xd9\\x39\\x01\\x27\\x81\\x6e\\x28\\x4f\\xb4\\x02\\x53\\xb7\\xea\\x26\\x6c\\xed\\xfa\\x45\\xea\\xdb\\xa4\\x7f\\xc8\\xb1\\x24\\x29\\x26\\x45\\x95\\xc3\\x6d\\xa4\\x8f\\x94\\xb6\\xe6\\xd7\\x2e\\x5b\\x6e\\xc6\\xad\\x3c\\x46\\x59\\xf1\\x9c\\x7e\\x94\\x8e\\xab\\x82\\x66\\x33\\x41\\xc7\\xa8\\x33\\xd3\\x24\\x8d\\xf7\\xa2\\x66\\x5c\\x95\\xac\\x74\\x92\\x47\\xdf\\xb3\\xfd\\xf5\\x3c\\x6d\\xda\\x85\\x2c\\x7c\\x17\\xb2\\xbe\\x53\\x5b\\x50\\x43\\xb2\\xc7\\xc6\\x1b\\xb2\\x71\\x8c\\x6d\\x74\\x40\\x76\\xd7\\x8d\\x37\\xde\\x10\\x23\\x45\\xfe\\x71\\xd2\\xd7\\xc7\\xe9\\x78\\xe4\\x86\\x1b\\x6e\\xfc\\x45\\x3a\\xbf\\xa7\\xe8\\xf1\\xdc\\xea\\xe9\\xe8\\xf4\\xdc\\x54\\x04\\xf1\\xd8\\x6d\\x1e\\x4f\\x11\\x2e\\xdc\\x06\\x87\\xc5\\x9b\\x3c\\x01\\xf8\\xc6\\x03\\xbf\\xbf\\xf1\\x09\\x41\\x7d\\x1f\\xa7\\xe3\\x38\\x5c\\x4d\\xd1\\xf9\\xdc\\x0e\\xbf\\x2b\\x62\\xc6\\x70\\xf8\\x7d\\x43\\x83\\x10\\x11\\x5e\\x85\\x11\\xb7\\x2d\\x6d\\xa5\\x0a\\x48\\x95\\x05\\xd8\\xda\\xbd\\x27\\xab\\xb4\\x82\\x68\\xda\\x36\\x12\\x4a\\x9a\\x67\\x4b\\xc4\\x1a\\x89\\x7e\\x0a\\x24\\x1b\\x43\\xa9\\x0e\\xce\\xef\\x7e\\x56\\xe0\\xcb\\x03\\x99\\xf6\\x6d\\x0d\\x81\\x5a\\x2e\\x83\\xfc\\xb4\\x53\\x4f\\xe8\\x7a\\xe2\\x35\\x81\\x62\\x4f\\x9c\\x60\\x70\\xfd\\x35\\xb8\\x0c\\x9f\\x15\\xf1\\x59\\xbf\\x47\\xba\\x52\\xd4\\xba\\xf9\\xa0\\x2d\\x07\\xa5\\x11\\x42\\x87\\x45\\xfb\\x56\\x8a\\xaa\\x02\\xfb\\x14\\x3f\\x21\\x43\\xd5\\x3c\\xa8\\xae\\x73\\xd6\\x3e\\x85\\x7b\\x66\\x7b\\x42\\x6e\\x34\\xdd\\x22\\x4d\\x3c\\x32\\xc1\\x7b\\x6c\\xe9\\xbc\\x46\\xee\\x8a\\xe0\\xc2\\x78\\xe9\\x34\\x33\\xe9\\x94\\x8e\\xe1\\x9a\\xc0\\x55\\x70\\x7a\\x73\\x82\\x66\\x3a\\x2c\\x49\\x56\\xb3\\xb8\\x73\\x92\\x0b\\xb2\\x8c\\x36\\x4d\\x24\\xe8\\xb3\\x53\\x28\\xdb\\x4a\\x0b\\x74\\x07\\x3b\\xb6\\x6b\\xdf\\x94\\x76\\x60\\x38\\x1a\\xf3\\x3d\\x37\\x1c\\x0f\\xd5\\xd0\\x39\\x79\\x6f\\x40\\x8b\\xc7\\x75\\x7d\\x21\\x7f\\xa0\\x74\\x38\\x1f\\x1f\\x9b\\x1d\\x8e\\x5e\\xe8\\x1a\\x76\\xb2\\x8e\\x61\\x3d\\x74\\x60\\xb8\\x4b\\x63\\xca\\xbe\\x5d\\x71\\x6d\\x2a\\x8a\\x3e\\xca\\x7b\\xa3\\xc3\\xb3\\x63\\xb1\\xfc\\xa1\\xd2\\x81\\xfc\\x82\\xae\\xc3\\x44\\x1f\\xb8\\x10\\x8b\\x0e\\x77\\xf9\\x24\\xd1\\x12\\xa4\\xb5\\x02\\x72\\x1b\\x10\\x56\\xb7\\x6d\\x1b\\x05\\xeb\\xd9\\x51\\xf8\\x09\\x72\\x26\\x2d\\xdf\\x42\\x44\\x73\\xc5\\x2b\\xb3\\xf3\\x5b\\xde\\xa8\\x41\\x32\\x07\\xbd\\x04\\x5d\\xa8\\xbf\\xa7\\xa7\\x1f\\x76\\xcd\\xe0\\xa4\\x09\\x60\\x97\\x69\\x15\\x0f\\xf7\\x23\\x1c\\xd9\\x8f\\xb7\\x4b\\xde\\x15\\xa9\\x42\\xef\\xb5\\x4b\\x52\\xa9\\x5e\\x9c\\x0b\\xc2\\xd7\\x24\\x1c\\x7f\\xe2\\xcb\\xcf\\xeb\\xa0\\x61\\xd2\\x7f\\xfc\\x89\\x0b\\x1a\\x68\\xdc\\x35\\x06\\x6f\\xe5\\xd4\\x43\\x0f\\x9d\\xba\\x23\\x7f\\x01\\x5e\\xd1\\xbe\\xf1\\xa5\\x6d\\x62\\x43\\x72\\x7a\\x24\\xb7\\xd5\\x1a\\x1b\\x35\\xd7\\x45\\x53\\x54\\x33\\xe0\\x32\\xd1\\x06\\xbf\\x23\\xe4\\xe7\\xe7\\x98\\x84\\x9b\\x1b\\x21\\x95\\xdf\\xda\\x08\\x26\\x51\\x5a\\x20\\x53\\x59\\x6b\\x65\\x0e\\xa5\\xc1\\x88\\x21\\xbe\\x5c\\x37\\xc5\\x12\\x44\\x6d\\x46\\x00\\xa9\\x62\\x2a\\x03\\x9e\\x16\\xc3\\x31\\xec\\x5c\\x0a\\x21\\x5d\\x72\\x4b\\x52\\xad\\xbd\\x2c\\x53\\x83\\xd2\\xc2\\x28\\x09\\xd8\\xa6\\x3c\\xa2\\xec\\x84\\xa7\\xe2\\x76\\x2d\\xdb\\xb7\\x90\\x5e\\xd2\\x2b\\x62\\xfb\\xe8\\xd5\\x9d\\x5b\\x27\\x28\\x8d\\x08\\x3d\\x85\\x1e\\x80\\xa4\\x68\\xdb\\xf5\\x12\\x24\\x46\\x41\\xe0\\x64\\x62\\x52\\x14\\xda\\x48\\xd1\\xb1\\x8f\\x0c\\xf4\\x97\\x20\\xf9\\x65\\xb1\\xa0\\x4d\\x7a\\xd0\\x80\\x18\\x1d\\xa2\\xe9\\xa1\\xb9\\x93\\x2e\\x14\\x26\\xb1\\x0b\\xed\\xda\\xd0\\x0b\\xa0\\xcc\\x6b\\xe9\\x43\\x1d\\x4d\\x0f\\xdb\\xa8\\x34\\xc5\\xa5\\x0a\\xdc\\x08\\x9e\\x1b\\xc4\\x13\\x73\\x9e\\x27\\x86\\x7c\\x4b\\x0b\\x61\\xbc\\x36\\x56\\xad\\x4e\\x2c\\x2d\\x4d\\x0c\\x8e\\x8e\\x0e\\xe2\\x86\\xc7\\x82\\x13\\xfb\\xe1\\x8c\\x99\\x29\\x33\\x29\\xb4\\xf7\\xe2\\x52\\x66\\x74\\x77\\xf6\\x39\\xd8\\x32\\x70\\xac\\x30\\x4d\\x54\\xa5\\xeb\\xba\\xe0\\x19\\x3f\\x40\\x1e\\x7b\\x62\\x29\\x6a\\x2e\\x6b\\x6d\\xcc\\x2c\\xda\\x39\\x87\\xd0\\xb1\\x90\\xbc\\x06\\x0d\\x94\\x38\\xda\\xf3\\x32\\x11\\x45\\x96\\x6d\\xb0\\x49\\x96\\x40\\x36\\xfe\\x58\\xd3\\x32\\xd8\\x2c\\xe6\\x50\\x70\\xa0\\x84\\x58\\xad\\xb8\\x9e\\xc2\\x85\\xd7\\x27\\x59\\xf6\\x5f\\x1f\\x61\\xdf\\x40\\xee\\xc8\\xf2\\x68\\x12\\x8c\\xe5\\x99\\x02\\x18\\xef\\xe6\\xfc\\x51\\x08\\x43\\x76\\xf2\\xb3\\xe7\\x34\\xed\\xa6\\x8e\\x73\\x85\\xa5\\x0b\\x17\\x96\\x76\\xdd\\x64\\xf1\\x45\\x7f\\x08\\xbf\\x44\\x29\\x9d\\x64\\x1b\\x61\\x82\\x24\\x55\\xa6\\x6c\\x52\\x4d\\xf1\\x5c\\x4a\\x69\\x66\\xf9\\x46\\x32\\x1e\\x67\\x37\\x9f\\x5c\\x00\\xf9\\x8e\\x42\\x01\\x0a\\x94\\x2a\\x65\\xcf\\x14\\xd2\\xe0\\x07\\x77\\xdd\\x24\\x9f\\xd3\\x56\\x09\\xa2\\xbb\\x64\\x58\\xc5\\x91\\xe7\\xa9\\xc9\\x8e\\x33\\x93\\x70\\xe1\\x65\\x0a\\xf3\\x74\\x9c\\x3b\\xa7\\xde\\x49\\x3b\\xf2\\x3c\\x35\\x59\\x91\\xdf\\x11\\xc0\\x1b\\xb2\\x75\\x74\\x29\\xbd\\x93\\x99\\xb4\\xfb\\xbf\\xda\\x3e\\xc1\\xf6\\x16\\x10\\x28\\x00\\xf7\\xb6\\x14\\x00\\x93\\xc4\\x88\\x0f\\xaf\\x35\\x49\\x00\\x09\\x53\\xc9\\x21\\x5a\\x0d\\x6c\\xb5\\x19\\x10\\xed\\x04\\x36\\x59\\x08\\x88\\x18\\x0b\\x2a\\xcd\\x76\\xb3\\xd0\\xdd\\x53\\xc3\\xa4\\x20\\x02\\xab\\x6d\\x3f\\xa9\\x85\\x40\\x43\\x44\\xe4\\x94\\x42\\xbd\\xe9\\xb7\\x7d\\x3e\\x87\\x6b\\xe5\\x37\\x56\\x5c\\x0e\\xfb\\x60\\xf0\\xc6\\xdb\\x2e\\x9c\\x3b\\x7b\\xf3\\x85\\x73\\xac\\xda\\xd3\\xf8\\x8d\\x1e\\x47\\x2a\\xe5\\xe8\\x61\\xbb\\x69\\x5f\\x18\\x18\\xf8\\x2f\\x03\\x03\\x02\\xee\\x18\\xda\\x24\\x49\\x85\\x1c\\x8c\\xdd\\x14\\xb4\\xaa\\x1b\\x36\\x78\\x58\\x44\\x65\\x22\\x08\\x98\\x5c\\x92\\x74\\x78\\xc1\\xf7\\xfc\\x17\\xfc\\x1d\\x73\\x3b\\x36\\xe7\\x57\\x3c\\xf7\\x93\\x58\\x4e\\xb9\\x59\\xb4\\x7d\\x20\\x3e\\x47\\x80\\x5b\\xdb\\xc5\\x1d\\xa1\\x60\\xaf\\xc3\\x33\\x3c\\xe5\\xc8\\xcc\\xed\\x73\\x84\\x86\\x21\\x57\\x78\\x12\\x2c\\xe7\\x67\\x3e\\x7a\\x5b\\xc0\\xd3\\xdf\\xef\\x09\\xdc\\x66\\x1f\\xfc\\xcd\\x7b\\x4a\\xbd\\xbd\\x25\\x4c\\x58\\xb5\\xcf\\x19\\x38\\xf0\\xee\\x03\\x01\\x67\\x9f\\x7d\\x10\\xed\\xd9\\xf5\\xa6\\x5d\\x3d\\x98\\x7c\\xdf\\x28\\x36\\x21\\xa2\\x99\\x8b\\xaf\\x5a\\x05\\xc8\\x28\\x9b\\x55\\x0a\\xea\\x96\\x79\\xdf\\x64\\xd2\\x59\\x63\\xd2\\xc8\\xcf\\x57\\x5a\\xfa\\xe3\\xf2\\x1b\\xce\\x16\\xfe\\xba\\x9a\\x48\\x54\\x37\\x79\\x5c\\xfd\\xab\\xda\\xb8\\xfd\\xe0\\xad\\x8a\\x64\\x81\\x9b\\x44\\x3e\\x38\\x02\\xeb\\xcd\\x34\\x97\\x59\\xe7\\x5a\\xf2\\x67\\x95\\x80\\x7a\\x53\\x16\\xcd\\x29\\x5b\\xcb\\xd1\\xec\\x7c\\xd6\\x3a\\xda\\x76\\x3d\\xd2\\x95\\x0d\\x5e\\x9d\\x8a\\xf2\\x2a\\xb0\\x4f\\x89\\x7c\\x7f\\x4f\\x3e\\xdf\\xd3\\x5f\\x0e\\x74\\xe7\\x13\\x4a\\x77\\x00\\x78\\xe2\\x66\\x05\\xbb\\x00\\x6d\\xc0\\x72\\x2a\\x59\\x06\\x83\\xea\\x84\\xa9\\x25\\x42\\x06\\x72\\x56\\x81\\x42\\x08\\x52\\x2d\\xf0\\x79\\xf1\\x59\\x44\\x9b\\x0a\\xf2\\xff\\xd9\\x89\\x0e\\x0f\\x28\\xdc\\xe5\\xca\\x36\\x54\\x6f\\xb7\\x80\\x78\\xad\\x76\\x60\\xcf\\x81\\x93\\xb8\\xc0\\x0c\\x6e\\x63\\x73\\xd0\\xf8\\x16\\x04\\x18\\x8e\\x44\\x8c\\xa1\\xcc\\xd0\\x50\\x86\\x73\\x60\\x2b\\x6c\\x83\\xbd\\xc8\\xfd\\xfc\\xb6\\xda\\x9a\\x42\\x09\\xaa\\x07\\x2e\\x64\\xe7\\x45\\xaf\\xbe\\xc1\\x8f\\x9b\\x83\\x83\\x26\\x26\\xcc\\x10\\xbc\\xf9\\x7e\\xe7\\xc2\\xb1\\x63\\x17\\x60\\xc3\\x7c\\xfb\\xe9\\x0d\\xfc\\x8d\\x1d\\x55\\x94\\x85\\x38\\xb2\\x5a\\x01\\xb4\\xc6\\x34\\x62\\x09\\x3a\\x6c\\xd6\\x0d\\x34\\x79\\x1e\\x26\\x5e\\xf6\\xb1\\x85\\x85\\xc2\\x99\\x19\\x3d\\x11\\x4d\\x2e\\x8d\\xeb\\xfa\\xf8\\xd2\\xc5\\x8b\\x67\\x1a\\xff\\xf5\\xc6\\x1b\\x6f\\x7c\\xfe\\xf9\\x17\\xd8\\x9b\\x16\\x3e\\xb1\\xb0\\x30\\x10\\xef\\x1e\\xd7\\x9f\\x1a\\x1f\\x3f\\x7c\\xf1\\x96\\xc3\\xbf\\x02\\x5f\\xec\\x79\\xfe\\xf9\\xe7\\xb1\\xcd\\xce\\x4b\\xe7\\xc9\\x53\\xb0\\x07\\x46\\x55\\x84\\xa2\\xd8\\x92\\x79\\x70\\x9e\\x4c\\x8b\\xa1\\x0c\\x27\\x09\\x6e\\xb3\\x82\\x90\\x16\\x68\\xdf\\xf3\\xe7\\xf7\\x4d\\xee\\xdd\\x3b\\x79\\xc7\\x1d\\x6f\\x89\\xab\\xb1\\xe9\\x5d\\xee\\x3e\\x10\\xa4\\xee\\xef\\x77\\xe9\\x9e\\x21\\xf6\\x39\\xef\\xca\\xdb\\x57\\xbc\\xba\\xf7\\xe8\\xed\\x47\\xbd\\xe7\\x5e\\x77\\x47\\xe3\\x87\\xe2\\x7e\\xb7\\xee\\xf9\\xa1\\xa1\\x81\\x58\\x7a\\xf2\\x75\\x91\\xe8\\x44\\x06\\xca\\x2c\\x42\\x99\\x9f\\xb3\\xbd\\xe2\\xc8\\xd3\\x97\\x24\\xc2\\x32\\x97\\x0e\\xa7\\x50\\x08\\x0c\\xd2\\x16\\x4f\\xcb\\x32\\x2a\\xcf\\x5e\\x8f\\xb9\\x0c\\xbe\\x29\\xa6\\xc6\\x47\\xa6\\x3f\\xa8\\xbb\\xfd\\xf1\\xc1\\xf3\\x77\\x60\\x15\\xb0\\x2a\\x5f\\x50\\x63\\x93\\xe9\\x10\\x5e\\xf3\\xfc\\x4a\\x4c\\x8d\\xa5\\x8f\\xbe\\xee\\x1c\\x15\\xaf\\x53\\x55\\x0e\\x48\\xed\\xda\\x8c\\x1d\\xf8\\x33\\x55\\x6e\\xef\\x0a\\xab\\xe5\\xf2\\x36\\x5d\\x00\\xec\\x10\\x25\\x87\\xcd\\x1b\\x11\\x1d\\x29\\x7a\\xf1\\xee\\xe8\\xcd\\x4b\\xd0\\xc9\\xfc\\x23\\xc6\\x90\\xa9\\xae\\x15\\xad\\x3f\\xd1\\x00\\x0b\\xdf\\xcc\\x80\\x34\\xcd\\xfe\\x94\\xfd\\x3a\\x79\\x7a\\x24\\xa4\\x0c\\x4a\\x70\\x55\\x58\\x0a\\x9b\\x56\\xd6\\x21\\x0f\\x67\\xb5\\x9d\\x28\\x71\\x26\\x1b\\x06\\x06\\x86\\xbc\\x05\\xe5\\xe9\\x13\\x71\\x7f\\x64\\x98\\x5b\\xc2\\x1f\\x94\\x7b\\xfa\\x3e\\xe6\\xed\\x18\\xec\\x5a\\x75\\x46\\x3e\\xde\\xe1\\x8d\\x76\\x35\\xbe\\xda\\xd7\\x23\\xcf\\xdd\\xf2\\xcc\\x4f\\x47\\xfe\\x5f\\xb2\\x56\\xff\\x74\\x5f\\x52\\xde\\xef\\x8c\\x30\\x09\\xbf\\x84\\x83\\xc6\\x4f\\xcb\\x89\\xbe\\xa7\\x49\\x02\\x6b\\xcf\\x68\\x1d\\x64\\x3b\\xce\\x65\\xc4\\x30\\xe6\\x0b\\xdb\\xd1\\x65\\xc6\\xf2\\xb2\\x09\\x9f\\xb2\\x30\\x91\\x65\\xcd\\xec\\xcb\\xcb\\xcb\\xf3\\xf3\\xb0\\x6d\\x8a\\x81\\x4e\\xb8\\x75\\x36\\x4a\\x47\\x7b\\xde\\x05\\x7f\\xb6\\x1d\\x4f\\x85\\x29\\x90\\xf1\\x89\\x13\\x26\\x34\\x3b\\x84\\x3c\\xaa\\x23\\x8d\\xc2\\x00\\xbf\\xd5\\xce\\xfb\\x44\\xa9\\x71\\xb5\\xb4\\x4c\\x57\\x25\\x4c\\xff\\xed\\x90\\x32\\xdd\\x22\\xba\\x3a\\x49\\xe0\\x28\\x5a\\xaa\\x22\\x17\\x90\\x98\\x29\\xb0\\x9c\\x8c\\xdd\\x00\\xd2\\x74\\x08\\xde\\x54\\xf6\\x37\\xfe\\xe9\\x97\\x81\\xee\\xd6\\x40\\xaf\\xa2\\x15\\x23\\x3f\\xba\\xf7\\x9f\\xd8\\x4a\\xd8\\xd3\\xf8\\xa4\\x2a\\x1b\\xff\\xb4\\xf7\\x97\\x51\\xb1\\xc3\\xf4\\x22\\x74\\xb6\\x7f\\xda\\xfb\\x8b\\xb2\\xda\\x78\\x49\\x56\\xb7\\xf1\\xab\\x6b\\xa7\\x35\\x46\\x70\\x97\\x2d\\x6c\\xb2\\x4d\\x64\\x1d\\x27\\x4f\\xac\\x66\\x2e\\x6e\\x22\\x3d\\x46\\x4f\\xbe\\xfe\\x64\\xe6\\xa2\\xc9\\xd1\\xa3\\xdf\\xe2\\x90\\xd8\\xdb\\x09\\xa5\\xaf\\x28\\xdd\\x0a\\xef\\xc2\\xb6\\x8c\\x21\\x0b\\x15\\x5c\\xb5\\xe7\\xb3\\xdc\\x40\\x85\\x7c\\xc9\\xd2\\xc3\\x4a\\x30\\xe6\\xce\\x85\\x54\\xfc\\x17\\xf0\\x1e\\xf3\\x39\\x42\\x83\\x9c\\x74\\x92\\xf9\\x0a\\x21\\x3d\\x02\\x27\\x09\\x59\\xa5\\x0b\\x68\\x94\\x29\\xb3\\x40\\xa7\\xac\\x76\\x7a\\x55\\x07\\xeb\\x1b\\xf7\\x7a\\x5c\\x4f\\x9e\\x1b\\x0b\\x84\\xce\\x9e\\x63\\x83\\x31\\xe6\\x70\\xb8\\x1c\\x32\\xeb\\xe8\\xec\\x08\\x78\\x7b\\xbc\\x6e\\xf7\\xb8\\xaf\\x7f\\x97\\xdf\\x3d\\x96\\x49\\x7a\\x3c\\x3d\\x29\\x8f\\xd7\\x17\\xd0\\x7c\\xfe\\xa4\\xa6\\xf5\\xfb\\x1a\\xc7\\xef\\xf1\\x00\\x10\\x40\\xef\\xbf\\xe8\\xc6\\x5f\\xcd\\x8f\\xf8\\x7b\\x9d\\x3d\\x73\\xf9\\x81\\x0e\\x77\\xa2\\xcf\\xd7\\x7f\\xf4\\x0d\\x03\\x83\\xbb\\xc6\\xde\\xf8\\xc6\\xbc\\xea\\x74\\x3b\\x9d\\x0e\\x54\\x8d\\x38\\x3c\\xce\\x0e\\x77\\x57\\x67\\x57\\xba\\xd7\\x95\\xf5\\x75\\xc6\\x54\\x4f\\x87\\xd3\\xd3\\xe1\\x70\\x7a\\xbb\\xd5\\x4c\\x8f\\x2b\\x36\\xa4\\xb8\\x9c\\xbb\\xd3\\xd7\\xa4\\xaf\\x61\\x8c\\x9f\\x9b\\xa5\\xb7\\xb0\\x2f\\xc3\\xd3\\x2f\\x48\\xb7\\x4b\\x12\\xc3\\x47\\x03\\xf1\\xf3\\xb6\\x0f\\x17\\x22\\xac\\x4b\\x78\\xb6\\xf6\\xe7\\x93\\xf1\\x2e\\x72\\xe9\\x25\\x83\\x9e\\x39\\x02\\x2e\\x45\\xfb\\xa2\\xa6\\x75\\x11\\xa1\\x82\\x3f\\x12\\x67\\xcc\\x09\\x4f\\xea\\x61\\x1d\\x1d\\x5d\\xfd\\xde\\x1e\\xd9\\x03\\x4f\\x1a\\x58\\xf0\\xbb\\x47\\x43\\x7e\\x78\\x54\\xd9\\xdd\\x37\\x18\\xec\\xe7\\x8f\\x1a\\xf0\\x7d\\x52\\x1b\\x50\\x4f\\x4c\\xe9\\x5d\\xdd\\x7e\\x6d\\x32\\x12\\x4e\\x74\\x38\\x32\\x91\\x4e\\xa7\\x36\\xed\\xef\\xcb\\x68\\x2c\\xa9\\x3a\\x5d\\x4e\\x27\\x73\\x6e\\x79\\xd0\\xde\\x5e\\x7c\\x52\\x28\\xc3\\xd3\\xed\\x1b\\xa0\\x27\\x0d\\xba\\x9d\\xb1\\x3e\\x2d\\xdd\\x0f\\x2e\\x59\\x41\\x6f\\xe7\\xd9\\xa4\\xea\\xee\\x02\\x9d\\x5b\\xc7\\x44\\xc0\\x3d\\x72\\x8c\\xaf\\x96\\x3a\\xe9\\x40\\x64\\xbe\\xc6\\x08\\x51\\x00\\x05\\x0f\\x30\\x98\\xfd\\x51\\x18\\x8a\\x8b\\xa6\\x15\\x04\\x50\\xd7\\xd0\\xee\\xf4\\xf4\\xfe\\x42\\xac\\xaf\\xe7\\xb7\\x35\\xdd\\xe4\\x41\\x9f\\x5f\\xce\\x1f\\x00\\xe1\\xc0\\xc7\\x1f\\xd2\\xe3\\xdd\\xfe\\x1f\\x33\\x4d\\x16\\xd2\\x49\\xd2\\x9a\\xe6\\x7a\\x96\\x66\\x54\\x8c\\x29\\x8a\\x12\\x4a\\xf1\\x0f\\x9d\\x02\\x72\\x38\\x91\\x12\\x50\\x04\\xcc\\xc1\\x4d\\xe0\\xb8\\x26\\xda\\x81\\x94\\x1d\\xf9\\x9d\\xe0\\xf9\\xb7\\xb3\\x27\\xa3\\xf3\\xb3\\x0b\\xa7\\x2f\\x25\\x16\\x7f\\x03\\x4a\\x5d\\x8f\\xc5\\xb4\\x44\\x3c\\x78\\x7e\\x69\\x74\\x38\\x31\\xbd\\xfb\\x60\\xbe\\xa8\\xfc\\xce\\xf0\\xd8\\xd2\\x05\\x56\\x6a\\xbc\\x2b\\x3a\\x9f\\x78\\xe8\\xd4\\xee\\xe9\\xc5\\x9b\\x63\\xc7\\xff\\x1f\\x5d\\x3f\\x19\\x8b\\xe7\\x0f\\xec\\x9e\\x8e\\xc3\\xb7\\xe7\\x83\\xf1\\x84\\x86\\x5a\\x0a\\x11\\x0b\\xa9\\x5b\\xea\\xa7\\x9a\\x01\\xd2\\x16\\xad\\x43\\x20\\x0c\\xc7\\x44\\x81\\x24\\xaf\\x00\\x26\\x62\\xd6\\x4e\\x9c\\x7e\\x5c\\x90\\x9a\\xc0\\x7e\\x9f\\x72\\x38\\x3e\\x78\\xc9\\xe7\\x7c\\x6b\\x22\\xb6\\xf4\\x41\\x87\\xe3\\x7d\\x6f\\x75\\xfa\\x2e\\x2d\\xc5\\x4e\\xc0\\x72\\xe4\\xa2\\x71\\x57\\xf7\\xf4\\x85\\x0c\\xbf\\x3b\\xb4\\xe4\\xea\\xab\\x85\\xfa\\x3c\\x06\\x2c\\x4f\\x4b\\xc1\\xbe\\xc6\\x4f\\xb3\\xb3\\xb8\\x28\\xb1\\x47\\x04\\x1e\\x80\\x47\\xd5\\xf2\\x4a\\x71\\xc2\\x8b\\xe6\\x4a\\x70\\x95\\x23\\x7e\\x0b\\x60\\x23\\xa0\\x41\\xf3\\x27\\xeb\\xa8\\x60\\x32\\x8b\\xba\\x61\\xa0\\x0c\\xa2\\x48\\x07\\x4c\\x63\\xa8\\xe9\\x36\\x4d\\x82\\x30\\x83\\xd5\\x43\\x87\\xfd\\x35\\x49\\xda\\x24\\x99\\x13\\xa3\\x64\\x5b\\x96\\x82\\x2a\\x64\\x4b\\xde\\xda\\xb0\\x87\\x63\\xba\\xe8\\xb4\\x23\\xa0\\x1b\\x7a\\x91\\x8c\\x77\\xea\\x3a\\x1c\\x98\\x9a\\x06\\xbe\\xce\\xf5\\x3a\\x1a\\x4c\\x9b\\x84\\xff\\xaf\\xc3\\xae\\x0e\\x1b\\x43\\x8c\\x4d\\x44\\x5d\\x32\\xae\\x87\\xba\\x64\\x63\\x68\\x29\\x79\\x48\\x84\\xcd\\x8e\\xe2\\x82\\xc7\\xaa\\x70\\x9d\\xe2\\xd9\\xa0\\x60\\xa7\\x56\\xaa\\x15\\x6b\\xc5\\x0d\\xd8\\x97\\x56\\x8b\\x0a\\x9d\\x60\\x18\\x76\\x34\\x7e\\xe5\\x7f\\xab\\xa5\\x12\\x5e\\x2a\\x97\\xe8\\xaf\\x4c\\x51\\x1e\\xdb\\xea\\x62\\xe3\\xfe\\x93\\xff\\xb8\\x81\\x2e\\xe3\\x15\\x26\\x35\\xca\\x26\\xab\\x98\\x6b\\x15\\xf8\\xb3\\x62\\xbd\\xb2\\x7f\\x26\\xad\\x55\\x0c\\x39\\xb1\\x82\\x15\\x1b\\x38\\x9d\\x03\\x0d\\x04\\x7c\\x3c\\x2d\\x34\\x4f\\x15\\x16\\x3b\\x80\\x0a\\xfd\\x93\\xd1\\x43\\xfa\\x21\\x50\\x5f\\x32\\x6f\\x76\\x3c\\x9d\\x48\\x64\\x1c\\xca\\xd9\\x99\\xa3\\x77\\xdf\\x7d\\xf4\\x6c\\xae\\x2f\\x92\\x18\\x4e\\x34\\xd6\\xc3\\x03\\x18\\x2c\\xf8\\x4a\\xed\\xed\\x6f\\xef\\xd0\\xe7\\x60\\xee\\x35\\x9e\\x79\\xe6\\x99\\x9e\\x1b\\x6f\\xfc\\x3e\\x60\\x4f\\xa2\\xa5\\x4e\\x92\\x6d\\xb0\\x57\\xe9\\xf9\\x9a\\xf1\\x3b\\x6c\\xfc\\xd2\\x2c\\xe5\\xc9\\x73\\x04\\x95\\x29\\x76\\x25\\x4b\\xef\\xcb\\x2e\\xc5\\x32\\x31\\x05\\x8c\\xc7\\x29\\xd6\\x55\\x6a\\xc8\\xdc\\x30\\xd6\\xb5\\xdf\\xce\\xc4\\x32\\x4f\\x0f\\x65\\x62\\x5f\\xd5\\xdf\\xe9\\xdf\\x9d\\x42\\xd7\\xaa\\xd4\\x6e\\xff\\x7d\\x35\\x50\\x4a\\xee\\xdb\\x77\\x2e\\x1b\\xcb\\x92\\x4e\\x99\\xca\\xfb\\x9f\\x58\\x5e\\xdb\\x9b\\xa5\\x98\\x80\\x98\\xbf\\x3d\\x2a\\xd0\\x60\\x54\\x86\\x6b\\x01\\x5b\\xa7\\x0c\\x5b\\x01\\x8e\\x4f\\x42\\x31\\x6f\\xd3\\x4e\\x58\\x1e\\x56\\x86\\xb1\\x08\\x55\\x89\\xd1\\xb5\\x2b\\xc6\\x93\\x70\\xf0\\x30\\x14\\x95\\xdf\\xb7\\x8f\\xad\\x72\\x75\\x84\\xfe\\x18\\x54\\x89\\x2d\\xc3\\x0d\\x70\\xf1\\x9b\\xba\\xfe\\x38\\xdc\\xb2\\x29\\x42\\x1e\\x69\\x91\\xb8\\x7d\\xcf\\xce\\xee\\xeb\\xd5\\x72\\x7e\\x7e\\xab\\xef\\xba\\x54\\xad\\x26\\x5e\\xde\\xd6\\x71\\xbd\\x89\\xae\\x40\\xf9\\x73\\xbe\\x30\\xdd\\x96\\x7b\\x19\\x19\\xcc\\x79\\xd6\\xd5\\x17\\x8d\\xf6\\x21\\xfd\\x16\\xed\\xab\\x98\\x2b\\xc6\\x2b\\x70\\xb2\\xde\\x17\\x45\\xf2\\xb0\\x2f\\x2a\\xf5\\x08\\xf9\\xd0\\x58\\xa0\\x78\\xa3\\x09\\x92\\x8b\\x4f\\x80\\x8d\\xc1\\xbc\\xb4\\x5b\\x5a\\xa2\\x5e\\x06\\x7c\\x27\\xaf\\x6c\\xc0\\xd6\\xd8\\xa2\\x0c\\x96\\x59\\x3a\\x66\\x6c\\x4c\\x2c\\x9f\\x46\\x64\\x16\\xb6\\x00\\x0a\\xca\\xf2\\xd6\\x10\\x35\\xea\\x87\\xf2\\xd9\\x15\\xa6\\xe3\\x83\\x94\\xac\\xd8\\x03\\x51\\xb6\\xa8\\xc1\\x5f\\x03\\xa6\\x00\\xe0\\xa6\\xa3\\x3a\\x29\\x74\\xd7\\xa3\\x7d\\x04\\x02\\x73\\xcb\\xe1\\xc9\\x7b\\xeb\\x50\\x45\\x1e\\xa2\\xa5\\x2f\\x8a\\x81\\x5c\\x70\\x34\\x9b\\xd1\\x3e\\x48\\x74\\x7c\\x00\\x7d\\x0d\\xc1\\xe2\\x7a\\xdb\\x62\\x13\\xa3\\x76\\x9c\\x3f\\x41\\x56\\x1a\\x07\\x3e\\x70\\x0e\\x6c\\xc3\\xf6\\x4a\\xfb\\x79\\x84\\x9d\\x9c\\xfd\\x96\\xa9\\xe6\\x56\\xd0\\x2d\\xa7\\xb5\\x05\\x38\\x04\\x3c\\x29\\xcf\\xed\\xa0\\x5c\\xf4\\x10\\x34\\xd7\\xc3\\x56\\xa1\\xc8\\x4b\\x3a\\x54\\xfc\\x1e\\xd2\\x21\\xd7\\x75\\xa0\\x7c\\xd6\\xeb\\x54\\x75\\xd3\\xae\\x39\\xab\\x59\\x81\\x6c\\xaa\\x54\\x6b\\x1e\\xc8\\x84\\xf6\\x12\\xec\\xe1\\x91\\x8a\\x26\\xa3\\x87\\xd0\\xe9\\x3a\\x3e\\x06\\xb5\\x87\\x88\\x97\\xb1\\xc9\\x3f\\xb1\\xfd\\xa5\\xfe\\xfc\\x0f\\xdd\\x0d\\x21\\xe1\\x58\\x59\\x08\\xec\\x48\\xfd\\xf0\\xb5\\xcd\\xf2\\x57\\x19\\x34\\x61\\x49\\xf6\\xb3\\x34\\x12\\xc4\\x59\\x8e\\x30\\xd5\\x9c\\x38\\xc2\\xd0\\x82\\x02\\x9a\\x04\\x25\\x61\\x59\\x0b\\x4b\\x78\\x15\\xba\\xee\\x21\\xd8\\xd8\\x01\\x48\\x1e\\xd7\\xb4\\xb7\\xc1\\xee\\x5d\\xa8\\xe4\\xd1\\x4a\\x71\\xb8\\x3a\\x02\\xa7\\x8d\\x7f\\x8c\\x65\\x63\\x4f\\xec\\x63\\xaf\\x83\\xe3\\x5b\\xf6\\x5d\\x35\\x4d\\x21\\xaa\\x07\\x5a\\x4b\\xa5\\xa5\\x99\\x6d\\x3c\\x27\\x54\\xdb\\x78\\xd5\\xc9\\xc3\\x6e\\x66\\x65\\x70\\x0a\\x84\\x5a\\x0c\\x7b\\x52\\x3c\\x4a\\x67\\x15\\x9b\\x67\\x0d\\x84\\xbc\\x90\\x9a\\xf0\\x54\\x6f\\xe5\\x51\\x37\\xf3\\x43\\x67\\x9c\\xde\\xd7\\x61\\xe2\\xe4\\x17\\xa0\\x21\\xf9\\xaa\\xb1\\x6e\\xa2\\x20\\x9b\\xe9\\x18\\x76\\x33\\x0c\\xe1\\x37\\x1b\\x76\\x80\\x4e\\x81\\xa2\\x46\\x3c\\x99\\x11\\xe8\\x05\\x73\\xdc\\x5f\\x21\\x87\\x88\\x93\\x0e\\x5b\\x6c\\x97\\x53\\x36\\xb3\\x05\\x20\\xda\\xcd\\xe6\\xb9\\x46\\xc1\\x61\\x89\\x3c\\x18\\x58\\x9b\\x0d\\x6a\\x43\\x6f\\x23\\x2e\\x78\\x7d\\x55\\x60\\x16\\xfa\\xc3\\x21\\x88\\x18\\xb2\\xf8\\x65\\x12\\x7f\\x30\\x33\\xdc\\x3f\\xa4\\x0d\\x36\\x36\\x96\\xf0\\xc6\\x0f\\x6d\\xe0\\x3d\\x04\\xa4\\x61\\x84\\xef\\x1b\\x5c\\xce\\x8f\\x2d\\x36\\xae\\xed\\x1e\\x05\\xf1\\x2e\\xb5\\x94\\xce\\x36\\x08\\x69\\xc8\\x4f\\x52\\x0a\\x42\\x0d\\x86\\x42\\x05\\x80\\x9b\\x2c\\xb5\\x97\\x20\\x86\\xd9\\xeb\\xcc\\x35\\xc5\\xd7\\x5f\\x1f\\x1d\\x1c\\x82\\xac\\x7a\\xb1\\xa0\\x25\\xdd\\xa8\\x64\\x0f\\x51\\x37\\x00\\x63\\x27\\x42\\x04\\xfd\\x39\\x28\\x67\\x68\\x70\\x34\\x43\\x15\\x79\\x3b\\x2d\\xb0\\x1c\\x95\\x7f\\xdd\\xc4\\xaf\\x8d\\x76\\x84\\x53\\xd2\\xe1\\x58\\xf8\\x14\\xb2\\xb5\\x0f\\xec\\x28\\x61\\xbe\\x7f\\x7c\\x3c\\x18\\x84\\xed\\x9e\\xc5\\xc5\\x68\\x64\\x71\\x31\\x52\\xdd\\x56\\xe2\\xcc\\xf0\\x1e\\xd8\\x22\\x91\\x28\\xdd\\xc7\\xf4\\x96\\x08\\xda\\xc0\\x3f\\x81\\xc3\\xa5\\x3a\\x0c\\x53\\x24\\x5f\\xf4\\xe4\\x2c\\xa8\\x94\\xc0\\x2c\\xbd\\xf9\\xe5\\x28\\x40\\x4c\\xb0\\xe8\\xee\\xdd\\x51\\xdc\\xca\\x3c\\xfb\\x71\\x55\\xb3\\x35\\x48\\xb5\\x1a\\xd3\\x59\\x34\\xca\\x6f\\xd0\\xe8\\x4b\\xd8\\x6a\\xf6\\x58\\x80\\xc9\\x42\\x88\\xfe\\xeb\\xe2\\xf3\\x83\\x35\\xa3\\xb5\\xcf\\xc7\\x29\\xa0\\xff\\x9d\\xb0\\x6d\\xd4\\x0f\\xcd\\x67\\x5e\\x46\\x37\\xc1\\x6b\\xc4\\xa7\\xad\\x92\\x3a\\xb3\\x72\\xf1\\xd0\\xe4\\x2f\\xf9\\xac\\x4b\\x0c\\x52\\x64\\xc0\\x21\\x77\\x0b\\xf1\\x83\\x64\\x04\\xc1\\x26\\x16\\x32\\x65\\x0d\\xcf\\xc5\\x73\\xae\\xd7\\x62\\x2f\\x9d\\x8c\\x61\\x7d\\x02\\x9f\\xff\\x7c\\x00\\x38\\x69\\x3a\\x5f\\x87\\x97\\xf7\\xdf\\x94\\x9e\\x87\\x1f\\xee\\x51\\x58\\xd0\\x1f\\xb1\\xe4\\xb3\\x7f\\x4a\\xd8\\x27\\x1c\\x3b\\xc4\\x56\\x98\\x00\\x70\\x2f\\x45\\xb0\\xb5\\x15\\xd4\\x4c\\x3f\\x71\\x02\\xe0\\xc4\\xb4\\xd2\\x7f\\xe8\\xe9\\xa9\\x81\\xd6\\xb8\\xe6\\xf1\\xe0\\xee\\x15\\x88\\xb1\\x02\\x11\\x41\\x8c\\xde\\xbe\\x1e\\xba\\x42\\x5f\\xe0\\x3a\\xcc\\x71\\x90\\x5f\\xa5\\x16\\x4f\\x53\\x5c\\xca\\xbd\\x5b\\x35\\xf0\\x59\\x9a\\xf7\\x9a\\x1c\\x3a\\xf0\\x08\\x0a\\x94\\xe8\\x68\\xd7\\xfb\\xdb\\xb2\\xa8\\x47\\x96\\xc6\\x01\\xa3\\x7a\\xe8\\xe2\\xd2\\xd2\\xc5\\xbd\\x87\\xa7\\xb4\\xc3\\x3e\\xdf\\x1e\\x6f\\x28\\xd0\\x3b\\x96\\x18\\xdf\\x37\\xe1\\xff\\xdd\\x25\\x5d\\x5f\\x1a\\x8f\\x5d\\xdc\\x0b\\x4a\\x0d\\x76\\x2b\\x59\\xb9\\x2c\\xeb\\xf8\\x83\\xe7\\x97\\xf0\\xda\\xed\\x33\\xef\\x5c\\x85\\xbb\\xfb\\x7d\\x7b\\x7c\\xbe\\xb1\\x84\\x3e\\xe1\\x6f\\xfc\\x83\\xf0\\xed\\x6f\\x5b\\xb1\\x2a\\x5d\\x1c\\xb7\\xbe\\xa9\\xe3\\x9f\\xe1\\xb6\\x45\\xa1\\x76\\x34\\x1a\\x1b\\x7e\\x50\\x6e\\x22\\xe7\\xa4\\x9a\\x47\\x19\\xd4\\xfe\\x7e\\x83\\xb4\\x0a\\x3f\\x4e\\xa9\\x7e\\xe1\\xd3\\x17\\xc0\\x55\\x14\\xbc\\x40\\xd7\\xba\\x21\\xf5\\x85\\x98\\x02\\xf8\\xa7\\x02\\xa7\\xec\\xac\\xe7\\x86\\x87\\x73\\x75\\xc0\\xc6\\xc1\\x17\\x1d\\x0a\\x61\\x9a\\x09\\xb6\\x64\\x76\\x15\\xab\\x36\\x13\\x48\\xaf\\x65\\x53\\xed\\xb5\\x49\\xab\\xcd\\xb2\\x93\\xcd\\xa3\\x02\\x6a\\x3a\\x60\\x41\\x4e\\x5c\\xfd\\x53\\x2a\\xe5\\xf7\\x29\\x65\\x63\\xe3\\xbe\\x0e\\xc8\\xff\\x9a\\x44\\xbb\\x71\\x4f\\xf8\\x6a\\x98\\x29\\x2b\\x5f\\x15\\x2a\\xf3\\x65\\xb3\\xda\\xaa\\x45\\xd5\\x54\\xa0\\xec\\xf4\\xb5\\x06\\xfb\\x63\\xb2\\x07\\x1b\\x46\\x1f\\x81\\x00\\x8a\\x83\\x59\\x36\\x53\\xa0\\x70\\xe0\\x4d\\x74\\x3f\\x15\\x3a\\x0c\\x30\\x84\\x1e\\xf8\\xd0\\xea\\x0c\\x7b\\x38\\x22\\x8e\\x2f\\x04\\x1f\\xd3\\x34\\x1b\\xdf\\x1c\\x95\\x15\\x20\\x04\\x0c\\xd3\\x00\\xe2\\x40\\x91\\x47\\xd9\\x4c\\x3a\\xbd\\x92\\x4e\\xcf\\x30\\x58\\xa3\\x27\\xc6\\x8a\\xc5\\xb1\\x09\\x4d\\x9b\\x1c\\xcd\\xde\\x9a\\x1d\\x65\\x26\\x62\\xfc\\x35\\x36\\x7e\\x28\\x28\\x77\\xdc\\xc5\\x31\\x69\\xee\\xea\\x90\\x83\\x3f\\xc4\\xad\\xa9\\x94\\xf1\\x71\\x45\\x1f\\x8c\\x46\\x61\\x58\\xb9\\xc5\\x37\\x46\\x9c\\xff\\x18\\xa7\\x7d\\xec\\x56\\xca\\xe2\\x71\\x9b\\x8e\\x4e\\xc5\\xf0\\x29\\x24\\x79\\x62\\x66\\x79\\x2f\\xbd\\xa4\\x62\\xb9\\x9f\\xf6\\x13\\x9f\\xbe\\x00\\x50\\x5d\\xd7\\x24\\x40\\x9c\\x6f\\xbd\\xa6\\x37\\xd8\\x07\\x6c\\x62\\x38\\xf7\\x4a\\x5c\\x4f\\x74\\x75\\x25\\xf4\\xf8\\x2b\\x39\\x28\\x93\\x97\\xce\\xf1\\xfe\\x86\\xec\\xde\\x22\\xf4\\x12\\xb1\\x40\\xea\\x19\\xdc\\x3e\\xcb\\xbc\\x20\\x94\\xa3\\xaf\\xae\\x5e\\x21\\x03\\x16\\xcf\\xab\\xb9\\x54\\x2a\\xf7\\xaa\\x55\\xc0\\xbf\\xf1\\xb3\\x39\\x24\\x93\\x90\\xde\\x5e\\x25\\x1c\\x15\\x29\\xe0\\xcc\\x15\\x08\\x6a\\x14\\x84\\xac\\x79\\x9c\\x17\\x60\\xa2\\x48\\xc9\\x70\\xa1\\x60\\x5b\\xa7\\x7d\\x7d\\xcf\\x44\\x76\\x5c\\x9f\\xe8\\x9e\\x3c\\xba\\x34\\x14\\xea\\x55\\x9c\\x5d\\xce\\x07\\xf5\\xcc\\x0a\\x3d\\x2e\\x3b\\xd0\\xf8\\x4f\\x55\\xdd\\x7c\\x51\\x37\\xf2\\xda\\xdc\\xb0\\xe2\\x98\\xba\\xfb\\x58\\xef\\x71\\x3e\\xe6\\xf8\\x1c\\x44\\xf8\\x45\\x92\\xa4\\xa0\\xa6\\x2c\\xab\\xa8\\x0a\\x48\\x38\\x0b\\x79\\xdc\\x78\\x13\\xaa\\x7f\\xf8\\xed\\xaa\\xbe\\x7c\\x42\\x5b\\x5b\\x83\\xaa\\x56\\x99\\x51\\xc9\\x5f\\x4e\\x24\\x14\\x25\\x91\\xb8\\x9c\\xd7\\xca\\x97\\xd1\\xdc\\xe8\\x72\\x59\\x6a\\x6a\\xad\\x2a\\x40\\x65\\x86\\x9a\\x3e\\x83\\x49\\x22\\x18\\x73\\x79\\x4f\\x53\\xa4\\x9d\\xca\\x51\\x14\\x84\\xea\\x1e\\x0e\\x18\\x5a\\xce\\xa5\\x6a\\x86\\xc1\\x8c\\xda\\x15\\x93\\xc4\\xcd\\x34\\xbf\\xee\\xa3\\x1a\\xc9\\x14\\xd9\\x08\\xe8\\x07\\x90\\xbd\\x7a\\x64\\x42\\x2e\\x85\\x79\\xf8\\xfd\\x99\\x5a\\x2d\\xf3\\xbe\\xce\\x8f\\xa5\\x6a\\xb5\\x54\\x55\\x7e\\x68\\xa8\\x52\\x19\\xba\\xb4\\xef\\xc9\\x68\\xa5\\x12\\xe5\\xeb\\xdd\\x3e\\xe2\\x59\\x7b\\x69\\xe6\\xa7\\xb8\\x13\\x08\\x92\\x0a\\x93\\x34\\xe6\\x93\\x75\\x7b\\xe0\\x2c\\x00\\x17\\x8e\\xb0\\x7f\\x17\\x3d\\xbd\\x5a\\x4b\\x7d\\x6c\\x39\\x36\\x01\\x59\\x1e\\xbe\\xc8\\x2a\\xd1\\xc5\\xcf\\x2e\\x7d\\x26\\x1e\\x8e\\xb3\\x8d\\xc6\\xa5\\xe8\\x99\\xb3\\x95\\xe8\\x93\\x8b\\xb1\\x61\\x28\\x60\\xfe\\xe2\\xfb\\x94\\xc9\\xcf\\x4e\\x37\\x36\\xe2\\x81\\x98\\xc4\\x9a\\xed\\x15\\x84\\xba\\x6d\\xd7\\x58\\xac\\x26\\x34\\x56\\x75\\xbb\\xa6\\x72\\x6e\\xb2\\xcc\\xc9\\xed\\xec\\xe7\\x22\\x58\\xd7\\x5b\\x9c\\x71\\xcb\\x51\\x89\\x6c\\x74\\x04\\x9c\\x70\\x70\\x86\\x32\\x68\\xea\\xd0\\xec\\x03\\xcb\\x5a\\x27\\xdc\\x7f\\x4d\\xb2\\x71\\xc3\\x1b\\x57\\x43\\x9a\\x15\\xa4\\xbe\\x79\\x20\\x6a\\xc9\\x3a\\xc8\\xeb\\x26\\xcb\\x89\\x03\\x30\\x86\\x06\\xe1\\x52\\x53\\x4e\\x3c\\x4b\\x92\\x8f\\x26\\x78\\xe9\\x30\\x3b\\xa9\\x1e\\xb9\\x98\\x4c\\xde\\x72\\x54\\x3d\\x59\\x0d\\xfb\\x39\\x71\\xd0\\x3f\\x80\\x47\\xac\\x04\\xc9\\x47\\xcf\\xef\\x76\\xdf\\x74\\x93\\x7b\\xf7\\xf9\\x99\\x23\\xc3\\x11\\xee\\x10\\x8a\\x68\\x81\\xfc\\x48\\x12\\xbd\\x55\\x29\\x1a\\x55\\xae\\x90\\x4c\\xca\\x96\\xba\\x39\\x9b\\x4f\\x7e\\xe2\\xcb\\x99\\xc6\\xdf\\xb2\\xa3\\x55\\xc4\\x53\\xab\\x32\\x93\\x95\\xb5\\x1a\\xba\\x4a\\xd7\\x88\\xa6\\x11\\x91\\xb0\\xc3\\x1c\\xeb\\xd7\\x2f\\xda\\xc8\\x35\\xa7\\x61\\x0a\\xb0\\x81\\x8d\\xa3\\xcf\\xa6\\xcc\\x54\\x0e\\x03\\x1f\\x21\\x97\\x09\\xce\\x04\\xfd\\x03\\x06\\xc6\\x2b\\xc6\\x3e\\xc6\\x57\\xf3\\xef\\x34\\x67\\xf9\\x05\\xb0\\x6a\\xbd\\x11\\x72\\xfd\\x17\\xcd\\xf5\\x19\\xce\\xd6\\x16\\x80\\xb8\\x0b\\x6d\\x7b\\xf8\\x5d\\x17\\x03\\x79\\xe0\\xea\\xc0\\x46\\x24\\xd0\\xe7\\xf5\\x26\\x6e\\x1e\\xec\\xc7\\xdd\\x05\\x7e\\xb6\\xb1\\xf2\\x0a\\x4d\\x20\\xfc\\xf3\\x15\\x73\\x8d\\xf0\\x0c\\x14\\x4c\\xd7\\xcc\\x90\\x06\\xd0\\x41\\x43\\x9d\\x9d\\x69\\x50\\x50\\x6d\\x73\\x24\\x52\\x80\\xc4\\x2d\\xb7\\x22\\xd4\\x03\\xe7\\x4d\\x69\\x8a\\xec\\x33\\x48\\x14\\x4a\\xf8\\x62\\xf9\\x24\\x2b\\x2a\\x4a\\x48\\x2f\\xa2\\x3f\\xa6\\x5e\\x37\\xd6\\x4a\\x6b\\x06\\xd3\\x98\\x54\\xe6\\x70\\xc4\\x21\\xc5\\x50\\x42\\x06\\xc8\\xb5\\x4b\\x2c\\x64\\x10\\x6d\\x47\\xa3\\x01\\x8e\\x7a\\xc8\\x62\\xa1\\x90\\x54\\x43\\xd4\\x53\\xb2\\x28\\x49\\x73\\x26\\x9d\\x1e\\x6a\\xa6\\x2c\\x7b\\xa6\\xa3\\xf1\\x6a\\xc7\\x1b\\xe6\\x32\\x89\\xbe\\x3e\\xc3\\x64\\xa6\\xee\\x18\\xe8\\x5b\\xef\\x1b\\x70\\xa0\\xad\\xe6\\xd5\\x4c\\x24\\xb0\\x3b\\x10\\x38\\xa6\\x47\\xd8\\xa1\\xc6\\x93\\x7d\\x8a\\xd2\\xb7\\x49\\x06\\x48\\x56\\xfa\\x40\\xbf\\x48\\x96\\x25\\x9f\\x3c\\x57\\xb0\\xe2\\x82\\x58\\x43\\x8e\\x13\\xd5\\xb2\\x85\\x3f\\x62\\x85\\xb5\\x86\\xc3\\x8c\\x0a\\x07\\xf0\\x15\\xdc\\x1b\\xf4\\xb0\\x10\\x82\\x45\\xc6\\x7f\\x25\\x1e\\x4f\\x84\\x7a\\x7b\\xe1\\xa8\\xb7\\x37\\x94\\xc0\\x13\\x7f\\x37\\x9c\\x74\\xfb\\x43\\x89\\xe7\\x4e\\x5f\\x3a\\x7d\\x09\\x3e\\xec\\x05\\xc2\\x95\\x3c\\x92\\xec\\xed\\x4d\\x86\\x12\\x9d\\x2e\\x44\\x81\\x75\\x75\\x26\\x42\\x74\\x1e\\xef\\x70\\x21\\x86\\xa2\\xab\\x23\\xfe\\x97\\x0f\\x9d\\x7a\\xe8\\xd4\\x29\\x48\\xac\\x75\\xe8\\x65\\x4b\\x9a\\x95\\x6f\\x59\\x11\\xc8\\x84\\x56\\xaa\\xf0\\x1a\\x51\\xf3\\x0a\\xb0\\x16\\x8a\\x15\\x7f\\xcc\\x16\\x34\\x16\\xd8\\xa3\\xa4\\x18\\x29\\x9b\\x2c\\x83\\xf5\\x4b\\xac\\x93\\x5f\\x37\\xf8\\xc9\\xc0\\x45\\x18\\xa7\\xf1\\xe1\\x09\\x95\\xe9\\x3e\\x0e\\x49\\xb5\\xba\\xd8\\xab\\xbe\\x42\\x08\\x8f\\x2f\\x32\\x1a\\x52\\x80\\xa9\\xb7\\x82\\xa3\\xfe\\xa3\\x2e\\x88\\xdf\\xd2\\x33\\x11\\xe2\\xfa\\x3f\\xfe\\x6e\\x64\\x8e\\x75\\x61\\x5b\\x70\\xb2\\x9c\\x9a\\xa4\\x06\\x93\\x11\\x9f\\x4e\\x86\\xb0\\x25\\xc4\\xe8\\xa3\\x3d\\x64\\xaa\\xa9\\x6d\\xe0\\x66\\x9e\\x8d\\xfa\\x91\\x20\\xdb\\xd3\\xe1\\x73\\x9e\\xf4\\x85\\x3f\\x11\\x60\\xee\\xbf\\x47\\x06\\xc3\\x3d\\x74\\x83\\xce\\x0d\\x99\\x39\\x06\\x08\\x7b\\x50\\xeb\\xee\\x70\\xbb\\x9f\\x0f\\xa5\\x9c\\x6e\\xe0\\x41\\x3a\\x3b\\xf3\\x2f\\x35\\xea\\xf4\\x8d\\x30\\xca\\x39\\x7e\\xe5\\x75\\xb0\\xfd\\x98\\x59\\x04\\x5f\\x92\\xd2\\xaa\\x00\\x1c\\x0b\\xe7\\xf0\\xd9\\x10\\x59\\xdd\\xef\\xdb\\x2a\\xe3\\xe6\\xba\\xf6\\xa6\\xc6\\x22\\x2b\\x4d\\x08\\x5a\\x0b\\xab\\xa7\\x35\\xe3\\x40\\xb4\\xcf\\xcd\\x05\\x6c\\x25\\x8e\\x1d\\xc4\\xe1\\xd8\\x72\\x94\\x56\\xfa\\xc3\\xf6\\x6c\\x7b\\xe8\\xb1\\xf0\\xec\\x91\\x22\\xf1\\xea\\xac\\x4b\\x00\\x6b\\x2b\\xd8\\xf3\\x35\\xce\\xdd\\x8d\\x5f\\x7b\\x3c\\x7c\\x74\\x96\\x5a\\x29\\x6e\\xbd\\x29\\x3f\\xf6\\x73\\xfe\\x10\\x32\\xd9\\x0b\\xc2\\x94\\x3b\\x6b\\x41\\x0f\\x1a\\xa7\\x2f\\x3d\\x78\\xe6\\xcc\\x83\\x97\\x58\\x91\\x9e\\xe1\\xa1\\xe5\\xab\\x27\\x4f\\x5e\\x6d\\x8e\\xc1\\x0d\\xd2\\x58\\x66\\xe9\\x29\\xf2\\x29\\x7c\\x8b\\x90\\xce\\x93\\x9d\\xa3\\xda\\xae\\x17\\xa3\\x71\\x03\\x3a\\x7e\\x1d\\x32\\xd2\\xdf\\x35\\x97\\x31\\x05\\xf3\\x2b\\xb4\\xa8\\xdb\\x58\\x1a\\x47\\x07\\xa3\\xf1\\x0f\\x65\\x22\\x11\\xb2\\x2f\\xb0\\xb9\\x5c\\xb4\\xae\\x93\\x64\\x4e\\x19\\xb5\\x45\\x9c\\xd5\\x37\\xdb\\x72\\x67\\x85\\x63\\xc6\\x67\\x17\\xda\\xe8\\x3d\\xc1\\xc6\\xb8\\x85\\xfe\\x1a\\xa5\\x4c\\xa2\\x43\\x4a\\xc8\\x81\\x8d\\xfb\\xda\\xd9\\x07\\x8c\\xde\\x25\\xec\\x31\\x95\\x44\\xbb\\x16\\xd2\\x6b\\x37\\xb5\\x8e\\x41\\xce\\x34\\xd9\\x0e\\x69\\x2a\\xb7\\xcb\\x61\\x0f\\xfb\\x7c\\x57\\x7c\\x23\\xbe\\x9a\\x0f\\x5c\\x86\\x41\\xf1\\x58\\x26\\x82\\xeb\\xb2\\x6f\\x04\\xae\\xc2\\xc5\\x7e\\x00\\x64\\xf7\\x49\\x8e\\x26\\x8a\\x22\\xbd\\x03\\x66\\xc5\\x51\\x2d\\x90\\x09\\x18\\x56\\x9b\\x45\\xc8\\x8e\\xcb\\x40\\x41\\xa4\\x51\\x64\\x0a\\xd0\\x55\\xa5\\x2a\\xbc\\x5f\\x93\\x99\\xcd\\xd5\\x8c\\xde\\x41\\xb8\\xad\\x9f\\x2b\\xb2\\xca\\xe3\\x05\\x26\\x51\\x0e\\x53\\x24\\x1c\\x8c\\xaa\\x4e\\x4f\\xc4\\x7a\\xe3\\xb3\\x03\\x56\\x78\\x8f\\x9a\\x66\\xc2\\x15\\xd3\\xd4\\x4a\\x81\\x83\\x02\\x6e\\xe9\\x20\\x5a\\xa3\\x83\\x7d\\xb2\\x1a\\xe2\\x53\\x06\\x9f\\x2d\\x68\\x16\\x41\\x2d\\x98\\xfc\\xde\\xe9\\xdb\\xa6\\x3a\\x7d\\x23\\xa3\\x38\\xf6\\xaf\\xd4\\x7d\\x1d\\xa8\\x6e\\x74\\x75\\xb0\\xc8\\x6d\\xd3\\x53\\x9d\\x6e\\x1f\\x9d\\xd7\\xaf\\xe0\\x97\\xa3\\x23\\xdd\\x1d\\xc2\\x7c\\x4d\\x51\\x43\\x5a\\x3d\\x3e\\x63\\xe1\\xab\\x66\\x66\\x55\\xa7\\x93\\x43\\xcc\\x18\\x44\\x14\\x0f\\xff\\xd5\\x0d\\xb5\\x5a\\x8d\\x46\\xf3\\x4b\\x34\\xe6\\x0d\\xd0\\x0a\\xb2\\xe2\\xbf\\x11\\xcd\\x60\\x97\\x49\\xd6\\x8a\\x2c\\x2f\\x03\\xfd\\xb5\\x65\\x1e\\xa9\\xe2\\x9f\\xe8\\x0c\\xa0\\x97\\xcb\\x40\\x39\\x6c\\x82\\x55\\x70\\x09\\x34\\x04\\xf4\\x5f\\xe2\\x1d\\xe0\\x25\\xb9\\x84\\x79\\xbb\\x40\\x33\\x8b\\x6d\\xb7\\x46\\xde\\x6f\\x7c\\x0c\\xeb\\x6b\\x57\\x23\\x19\\xf0\\xdd\\x2d\\x66\\x22\\x0c\\x24\\xfc\\x35\\xba\\xfa\\xc9\\xd5\\x55\\x58\\xc5\\x30\\xac\\x46\\x24\\x03\\xf5\\xdc\\x2d\\xed\\x66\\xeb\\xec\\x57\\x2d\\x5c\\x5d\\x59\\x25\\x22\\x34\\x83\\x82\\x74\\xd0\\x8c\\x03\\x2d\\x8b\\x7c\\xbd\\xca\\xf6\\xc6\\x3f\\x10\\xfb\\xc0\\x07\\x62\\xff\\xd1\\xe7\\x0f\\xc7\\x4f\\x4e\\x76\\xc4\\xc3\\xc6\\x67\\x2f\\x86\\xc3\\x57\\x58\\xa7\\x75\\x7d\\xc0\\x08\\xc7\\x3b\\x26\\x6f\\x88\\x87\\xfb\\xa2\\x17\\xc3\\x47\\xc2\\x15\\xe9\\x5f\\x19\\xaf\\xca\\xb6\\x42\\xe3\\x3a\\x9a\\xb1\\x96\\x04\\xa1\\x00\\x5d\\xdb\\xd5\\xa2\\x89\\xec\\xc9\\x86\\x52\\x0b\\xfe\\xfc\\x4d\\x44\\xaf\\x18\\xf9\\xd7\\x35\\x3e\\x4b\\x47\\x6c\\xd9\\xc0\\xc9\\xc6\\x84\\x8d\\xe2\\xcc\\x5c\\xa6\\x41\\xf8\\xf9\\xfc\\x0b\\xb4\\xff\\x5a\\xb1\\x8c\\xf3\\x0d\\x6e\\x1b\\x20\\x33\\x16\\xed\\x65\\xb8\\x24\\xe0\\x5f\\xc6\\x7b\\xd3\\x04\\xf3\\xbd\\xf0\\xdf\\x79\\x33\\xff\\xdd\\x38\\x70\\x5d\\xe7\\x5e\\x63\\xcd\\x51\\x33\\xbc\\x7d\\x9c\\xa0\\x76\\xb4\\x57\\xf3\\xc2\\xe9\\x0b\\x1f\\x9e\\x1e\\x1e\\x9e\\x1e\\xbe\\xc5\\xc6\\x7b\\xc5\\x75\\xa1\\x1a\\x18\\x4a\\xa7\\x87\\x02\\x7f\\x39\\x3c\\x9d\\x4c\\x4e\\xbf\\xbe\\x1d\\xf3\\x55\\xa4\\x8a\\xc9\\x1e\\x37\\x0b\\x12\\x6a\\x2e\\x58\\x92\\x65\\x34\\xbc\\x2b\\x00\\x2b\\xc3\\x0c\\xf3\\xb5\\x2e\\xef\\x63\\xe6\\x9b\\x9c\\x94\\x96\\xff\\xd7\\xc4\\xff\\x62\\xa3\\x5d\\x8d\\x5f\\xf1\\x3a\\xc6\\x26\\xc6\\x59\\x17\\x3b\\x40\\x07\\x82\\x57\\x25\\xe1\\x8d\\x09\\x32\\x66\\x20\\xfa\\x3c\\x76\\x30\\x3e\\x60\\x32\\xe6\\xad\\x18\\x7c\\xb6\\xbf\\x93\\xa5\\x4c\\xbd\\x69\\x7c\\x5c\\x5e\\x39\\xa8\\x1d\\x5c\\x91\\xed\\x83\\x3f\\x26\\xbf\\x41\\x8e\\xf0\\x73\\x4e\\xfc\\x82\\x0e\\x9c\\x96\\xa7\\x06\\x93\\x56\\xe0\\x19\\x5e\\x24\\x1b\\x07\\x89\\x05\\xb0\\xeb\\x33\\xe9\\xc5\\xde\\xf7\\xbf\\xbf\\x97\\xd5\\x1b\\x4f\\xf4\\x1a\\x46\\x2f\\xf4\\x63\\x1b\\x83\\x9c\\xac\\xb8\\x38\\xfa\\x4e\\xb2\\xdf\\xc2\\x1c\\x1f\\x46\\xef\\x45\\x79\\xd2\\x41\\xd4\\x1d\\x19\\xb9\\xac\\x46\\xfc\\xe0\\xf7\\x3c\\xfc\\x7e\\xb0\\xca\\x82\\x88\\xcd\\x30\\xe9\\x16\\x35\\xc6\\x7d\\xac\\xc0\\x91\\x26\\x9d\\xee\\x9d\\x7b\\x4a\\x87\\x69\\x59\\x72\\x08\\xc8\\xe6\\x03\\xad\\x75\\x21\\x83\\x53\\x65\\x8f\\x03\\xb2\\x74\\xe5\\xe7\\xae\\x12\\x15\\xd8\\xf1\\xd4\\xf9\\xf8\\xb8\\xde\\xdb\\xe7\\x09\\xce\\x65\\x13\\xac\\x2b\\x8e\\x17\\xab\\xe7\\x97\\xe2\\xa7\\x8f\\xec\\xed\\xf7\\xcb\\xea\\xe1\\xfd\\x67\\xe3\\x4b\\x82\\x56\\x87\\x6a\\xc9\\x11\\xe8\\xe5\\x54\\xae\\x30\\x0f\\x4b\\x8c\\x2c\\x37\\x45\\xf5\\x32\\x7f\\xdf\\x97\\xf5\\x95\\xfc\\x07\\xbc\\xde\\x8c\\x57\\xfe\\x00\\xd3\\xb9\\xc5\\x7b\\x31\\x8c\\x4e\\x74\\x1f\\xf0\\xca\\x70\\xfb\\x07\\x5e\\xe1\\x9a\\x9d\\x22\\x33\\xe1\\x4d\\xff\\xe0\\xe6\\x08\\x61\\xec\\xf0\\xb8\\x0c\\x49\\xdb\\x8e\\xd0\\xf6\\x6a\\x50\\xe0\\xa0\\xb0\\xad\\xf2\\xe8\\xc4\\xd2\\x79\\x1d\\x57\\xfe\\xab\\x82\\x11\\x39\\xe8\\x90\\x12\\x68\\x55\\x5f\\xde\\x9f\\x8d\\x68\\x6d\\x16\\xeb\\x02\\x12\\x93\\xdf\\xb6\\x1f\\x4f\\x37\\xcd\\x8c\\xf2\\xc0\\x0b\\x60\\x64\\x74\\x26\\x99\\xcc\\x50\\xf4\\xe2\\xba\\xa2\\xb0\\x92\\xa2\\x34\\xd6\\x50\\x7f\\x6a\\xc2\\x1f\\x4c\\xcc\\x18\\x12\\xfd\\x7b\\xf3\\xe6\\xb0\\xa5\\x83\\x64\\xd1\\xdf\\x0f\\xb3\\xdf\\x71\\x7a\\xc3\\x7c\\x24\\xd2\\x28\\x44\\x99\\x48\\xeb\\xa0\\x40\\x76\\xc7\\x90\\xd8\\x13\\x03\\x45\\x30\\x11\\x12\\x9b\\x14\\xa7\\x7b\\xfe\\x7a\\x24\\x1c\\xa6\\x0f\\xf4\\x34\\x7b\\xb7\\x3e\\x32\\x68\\x8c\\x0c\\x76\\x77\\x00\\xc3\\x35\\x38\\x62\\xf0\\x0f\\x9d\\xc1\\x55\\x34\\x5e\\x47\\x2a\\xce\\xff\\x2e\\x5a\\x25\\xdf\\x19\\xc6\\xf4\\x33\\xb1\\x09\\xef\\x40\\x6c\\xdc\\x1b\\xc6\\xa9\\x23\\xec\\x1d\\x8f\\x0d\\x78\\x27\\x60\\x1b\\x8f\\xd1\\x5c\\x12\\x82\\x6f\\xd0\\xe6\\x75\\x49\\x0a\\x91\\x5c\\x27\\x82\\x33\\x09\\xa1\\x8d\\x91\\x92\\x6a\\xb6\\x25\\x83\\x95\\x49\\x30\\x6b\\x0b\\x76\\xfe\\x53\\xc5\\x7b\\xff\\x70\\x56\\x7b\\x10\\x24\\x3a\\x4a\\xaf\\x32\\xb4\\xef\\xe8\\x64\\xf7\\x84\\x3e\\x71\\x9c\\x16\\xe3\\xbb\\x86\\x74\\xe5\\xf3\\xbd\\xc7\\xef\\x9e\\x72\\x28\\xc3\\x39\\x3d\\x6f\\x68\\x2f\\x9a\\xda\\x2b\\x9c\\xf4\\x16\\x46\\x43\\x97\\x34\\xb8\\x19\\x57\\x7b\\xd3\\x88\\xb0\\x48\\x92\\x73\\x9b\\x86\\x84\\xce\\x91\\xba\\xd7\\xb6\\x8e\\x09\\x61\\x8c\\xf9\\x68\\xdd\\xe4\\xa3\\x01\\x35\\x0a\\xb2\\x32\\xbf\\x29\\xe3\\x25\\x0f\\x4c\\xd5\\xee\\xde\\xf8\\xe9\\xa3\\xf1\\xa3\\x8e\\x4d\\xd9\\xbf\\xce\\x0d\\xdf\\x78\\xf8\\x37\\xf1\\x7a\\x7b\\x21\\x4c\\xf0\\x4a\\x90\\x98\\x33\\x95\\xcd\\xe6\\x59\\xed\\x93\\xca\\xc2\\x0f\\x23\\x7a\\xfc\\x0f\\x2f\\x28\\x9b\\x6b\\xe1\\x97\\x86\\x71\\x6e\\x2b\\x50\\x47\\x98\\xa7\\xce\\x40\\xdd\\x42\\xac\\xca\\x6f\\xbf\\x31\\xd6\\x8c\\xdb\\x76\\xbf\\x58\\x93\\xfa\\x64\\x20\\x1c\\x0e\\x7c\\x96\\xde\\x7a\\xbf\\xff\\x50\\x7b\\x4d\\x9a\\x63\\x89\\xa2\\x6c\\x07\\x89\\x87\\x51\\x52\\x14\\xa8\\x28\\x85\\x60\\x9a\\xe4\\xfb\\x0b\\x69\\x21\\x47\\xd1\\x86\\x58\\xcd\\x9c\\x59\\x8a\\xef\\xfd\\x3d\\x73\\x66\\x6f\\x7c\\xe9\\x94\\x70\\x5c\\x13\\xaf\\x08\\xc7\\xf0\\x96\\x04\\x8a\\x0c\\x72\\x67\\x73\\xf3\\x44\\x2b\\xa3\\x9d\\x41\\x33\\xee\\x8e\\x85\\x77\\xc2\\x8a\\xfb\\xb5\\xfc\\xfc\\xaa\\x36\\x39\\x9c\\x1f\\x9e\\x24\\x53\\xbd\\x58\\xa1\\x51\\x5a\\x83\\x88\\xb9\\xc3\\x33\\x8e\\x5a\\xcd\\x31\\x33\\x5c\\x81\\x3f\\x81\\x1b\\x45\\x1b\\x33\\xf2\\x6f\\x07\\x3d\\x68\\xce\\x9e\\xfd\\x0b\\xdf\\x33\\x3f\\x5a\\x2d\\xea\\x45\\xfd\\x77\\x88\\xdf\\x5c\\xdc\\x89\\x21\\x35\\x2b\\xe5\\x17\\x97\\x89\\x27\\x9d\\xfa\\x6e\\x0c\\x29\\xe9\\x81\\x68\\x3d\\xea\\xe2\\xd6\\xd8\\x81\\xa0\\x2a\\x5b\\xa4\\x8a\\xc7\\xa6\\x55\\x64\\x1c\\x05\\xdc\\xd1\\x71\\xee\\xb5\\xb1\\xaf\\x77\\x47\\xfc\\x1f\\xed\\x4b\\x10\\x91\\x72\\x6c\\xce\\x48\\xc6\\x21\\x5b\\x66\\xee\\x82\\xeb\\x34\\x03\\xc5\\x6e\\x24\\xca\\xe6\\x68\\xb6\\xeb\\xad\\xfe\\xc8\\xe5\\x5e\\x41\\x17\\x18\\xa2\\x18\\x2a\\x93\\xd2\\x3c\\x5f\\xab\\x6d\\x3f\\x1a\\x98\\x10\\x0a\\x08\\x5e\\x81\\xea\\xc8\\x10\\x4c\\x80\\x49\\x28\\x1c\\xd4\\x2b\\x88\\x0c\\x65\\x57\\x60\\xde\\xda\\x33\\xf3\\xc0\\xd2\\xe2\\xe1\\xa4\\x3a\\x30\\x92\\xd8\\x93\\x48\\x0c\\xa8\\x49\\x97\\x3e\\xd9\\x28\\x4d\\xea\\xfa\\x4b\\xbf\\x58\\xaf\\x77\\x12\\xcd\\xf7\\x1c\\x31\\x74\\x9f\\xff\\x00\\xd2\\x2d\\x1f\\x50\\x93\\x03\\xde\\x44\\xc2\\x3b\\x90\\x64\\x93\\x7d\\x87\\x26\\x1a\\xff\\x85\\x0d\\x4c\\x1c\\xea\\xf3\\x57\\xca\\x39\\x01\\xa7\\x5b\\x94\\x97\\xcb\\x96\\x4c\\x79\\xba\\x45\\x55\\xa1\\x4d\\x8d\\x2c\\xc8\\x94\\x03\\x4d\\x99\\x32\\x39\\xa8\\x5b\\x72\\xe5\\x25\\x07\\x3b\\xcb\\x15\\x1b\\xe0\\x36\\x67\\x89\\x96\\xcd\\x73\\x28\\x5a\\xd6\\xb5\\x33\\xda\\x34\\x48\\x97\\x07\\xf3\\xf9\\x0a\\x91\\x32\\xef\\x28\\xc2\\xdf\\x95\\xcd\\xe2\\x65\\x5d\\x27\\x01\\x73\\x74\\xa4\\xcf\\xb3\\x69\\x15\\xee\\x22\\x04\\x0a\\xa1\\x74\\xb4\\x0c\\xcc\\x35\\x8b\\x86\\x5e\\x48\\x92\\x2c\\xd2\\xaa\\x23\\x38\\x05\\x2b\\xaf\\xdf\\x46\\x65\\xbf\\x3c\\x14\\x71\\xf0\\xa2\\x87\\xd5\\xc4\\xa1\\x45\\xff\\xbd\\xeb\\x47\\xfa\\xf6\\xed\\xaf\\x97\\xcb\\x2b\\x54\\x70\\xef\\x60\\x26\\xd1\\xa9\\x69\\x9d\\xc3\\xee\\x11\\xf5\\x67\\xc7\\xe2\\x8e\\x04\\xfc\\x39\\x62\\x9a\\xe4\\xe2\\xd6\\x45\\x96\\x7c\\x7b\\x54\\x9a\\x6a\\x97\\x71\\x67\\x48\\xc8\\x2d\\x6f\\x92\\x71\\x07\\xc0\\x9e\\x98\\x84\\x55\\x0a\\x9a\\x18\\x3f\\xb9\\x38\\x91\\x9e\\xd4\\xc7\\xbb\\x27\\x8e\\x0e\\xcd\\xf4\\x06\\xbb\\xc2\\x1d\\xf2\\x25\\x2d\\x73\\x07\\xcd\\x8b\\xd5\\x7c\\xfe\\x72\\xfe\\xf2\\xe5\\x7c\\xde\\x12\\x7d\\x7f\\x72\\xdc\\x28\\x68\\x43\\x03\\xc3\\x41\\xe7\\xe4\\xdd\\x47\\xfb\\xb8\\xec\\xbb\\xf1\\xc5\\x74\\x7e\\x3e\\x93\\xb8\\x98\\x80\\x9d\\x24\\x75\\x08\\x78\\x6d\\xed\\x76\\x42\\x84\\x12\\x9a\\xb5\\x36\\x1e\\x89\\x17\\x12\\xd8\\x70\\x9f\\xb3\\x7d\\xed\\x41\\x90\\x55\\x5a\\x27\\xc8\\x2f\\xd8\\x81\\x47\\x11\\xa4\\x4d\\x3f\\x64\\x21\\x21\\x4f\\x64\\x49\\x62\\x76\\x79\\x9b\\x23\\x9b\\x55\\x1b\\xff\\xfc\\x68\\xac\\x5a\\x8d\\x3d\\xca\\x14\\xed\\x31\\x3c\\x78\\x8c\\x30\\x03\\x6a\\xac\\x4c\\x56\\x20\\x88\\x19\\x50\\x59\\x87\\xe3\\xb2\\xc8\\x05\\x3b\\x08\\x17\\xad\\x90\\x6a\\xba\\xd4\\x4a\\xc5\\x35\\x27\\x37\\xf5\\x2a\\xad\\x71\\x6b\\x2e\\xca\\xa5\\x0e\\xb9\\x18\\x92\\x83\\x6c\\x63\\x2a\\xe5\\x32\\xbc\\xa3\\xf6\\x7a\\x58\\xc1\\xc1\\xb2\\x4c\\xc2\\x3a\\x34\\xfe\\x99\\xb9\\x1e\\x65\\x55\\xac\\x85\\xf6\\x98\\x50\\x5e\\x17\\x21\\xda\\x65\\x49\\xf1\\xa9\\xca\\x30\\x0d\\x36\\x2d\\xcf\\xca\\x37\\xdc\\x10\\xb3\\x3f\\x9f\\xa2\\x1a\\xfc\\x8c\\x70\\x85\\x19\\x76\\xb4\\xdd\\xe3\\x84\\xfd\\xf7\\x9c\\xe4\\xa6\\xba\\xb0\\x6c\\xa1\\xf6\\xe7\\xb1\\x6b\\xd2\\xa3\\xb1\\xcf\\xf0\\xdd\\xf7\\xc3\\xbf\\xc7\\x8e\\xe9\\x4b\\x58\\x6b\\x36\\x7d\\x45\\xcb\\x2d\\xab\\x3c\\xfa\\x68\\xcc\\xfe\\xb0\\x47\\x85\\x93\\xcd\\xf1\\xe8\\x18\\xfd\\x84\\x49\\x98\\x5d\\x8c\\x15\\x69\\x47\\x77\\x54\\x19\\xd4\\xcd\\xbe\\x03\\xaa\\x0f\\x15\\x82\\x2f\\xad\\xd0\\x77\\x92\\xcb\\x2e\\x57\\x88\\xac\\x42\\xb6\\x6c\\xdc\\x8e\\x2c\\x8b\\xe9\\x90\\x03\\x0f\\x99\\xbe\\x8a\\xcb\\xec\\x6a\\x6d\\x15\\x90\\x75\\x59\\x65\\xd5\\x58\\x37\\x56\\xb5\\x2b\\x70\\xad\\x04\\x17\\x77\\xcc\\x07\\x30\\x23\\xa8\\xff\\x53\\x6e\\x0a\\xa5\\xac\\x08\\x3f\\xd4\\x56\\x8d\\x35\\x6d\\x75\\x55\\x63\\x45\\x6d\\xb5\\xb1\\x0e\\xb9\\x5c\\x85\\x8b\\x70\\x85\\xa4\\xb4\\x36\\xe6\\xa6\\x80\\x21\\x08\\x2c\\x93\\x1b\\x36\\x83\\x62\\x06\\xd0\\xc6\\x4c\\x1d\\xb2\\x29\\xeb\\x3a\\xad\\x21\\xc0\\x67\\x33\\xdd\\xb6\\xe7\\xed\\xdf\\x01\\xa1\\x9d\\x8b\\x0a\\x3e\\x4a\\xe9\\x5f\\x51\\xca\\x74\\x48\\x36\\x7f\\x70\\xbd\\xae\\x43\\x2f\\xd3\\x59\\xd5\\xce\\x6f\\x0b\\x3c\\xbf\\x75\\xcc\\xf3\\xe3\\x9f\\x3d\\x94\\x56\\xe9\\xe4\\xa3\\x94\\x1e\\xe2\\xd9\\xc1\\x08\\xe2\\x7d\\x96\\x4b\\x9c\\x61\\x41\\xe6\\xa4\\x1f\\x3a\\x75\\xe4\\x9a\\x16\\x71\\xec\\xf1\\xd9\\x2b\\x87\\x33\\x73\\x28\\xaf\\xd1\\x0e\\x74\\x8f\\xf7\\xdc\\xba\\x78\\xe4\\xee\\xbb\\x8f\\x1c\\xe5\\x97\\x81\\x87\\x98\\xca\\x2c\\x1c\\x03\\xdb\\x1a\\xe8\\xd7\\x1f\\x87\\xdc\\xee\\x24\\xa9\\x02\\xf5\\x14\\xec\\x23\\xce\\x02\\xbe\\x7c\\xea\\x6c\\x87\\x0e\\x7d\\x9a\\x52\\xf6\\x5e\\xda\\x35\\x7e\\x8b\\x76\\x12\\xfd\\xce\\x80\\xdf\\xd5\\xf8\\xef\\xd2\\xa4\\x9f\\x2a\\xf0\\x61\\x2c\\x1d\\x8a\\xe1\\x5d\\x94\\x3e\\x45\\xe9\\xaf\\x51\\xda\\x36\\xde\\x02\\xf8\\x1b\\x40\\x97\\x94\\x8b\\xd5\\x6a\\xfc\\x51\\xed\\x31\\x61\\xd8\\x89\\xf1\\x3f\\x3a\\xa9\\x87\\xe7\\x10\\x43\\x16\\xee\\xdf\\x88\\xdd\\xf0\\x6b\\xfa\\x77\\x20\\xc6\\x1f\\x33\\x62\\x37\\xac\\x5f\\x93\\xe0\\x88\\x72\\x35\\x58\\x85\\xee\\xa5\\x48\\x8c\\x24\\x66\\xcb\\x42\\x57\\x87\\x90\\x7e\\xdf\\xd1\\x7f\\xed\\x86\\x58\\x0d\\x0e\\x98\\xb4\\x7e\\x43\\x6c\\x73\\x0d\\xe8\\x69\\x01\\x44\\xa4\\xc0\\xaa\\x62\\x15\\x98\\x0b\\xe6\\x21\\x2b\\xa6\\xe2\\x73\\xd4\\x6f\\x3a\\xc8\\x97\\x27\\xc5\\xa3\\x3c\\xa2\\xe8\\xaa\\x83\\x7a\\x3b\\x52\\xe7\\x31\\x3a\\x82\\xbb\\x1f\\xa5\\x08\\x8c\\x74\\xb7\\x18\\x6d\\x10\\x6d\\xa2\\xfe\\x73\\xf3\\xee\\x3f\\x6f\\x8e\\x12\\xd2\\x6f\\xfe\\x99\\x85\\x84\\x9e\\x6d\\x8f\\x3a\\xc3\\x29\\x95\\x24\\x51\\x22\\x2a\\x98\\x40\\xc0\\x38\\xb3\\x42\\xcb\\xb1\\x02\\xd1\\x24\\x0f\\x53\\xfa\\xf9\\xbd\\x8d\\xf5\\xbd\\x13\\xfd\\x33\\x89\\x43\\x89\\x99\\xfe\\xc6\\x5f\\x31\\x0d\\x59\\x57\\x43\\x08\\x90\\x71\\x7e\\x02\\x3c\\x74\\x96\\x27\\x26\\xfc\\x33\\x7d\\x7d\\x33\\xfe\\xc6\\x1f\\x17\\x8b\\xe8\\x40\\x28\\xb9\\x9b\\x74\\x97\\x03\\x8e\\x03\\x68\\x65\\x4b\\xfa\\x3c\\x3f\\x4c\\xf0\\x32\\x52\\x77\\x7c\\xb2\\x00\\xe3\\x9c\\x10\\x1a\\xfd\\xce\\x65\\x65\\xd4\\xe2\\xc8\\x2c\\x30\\x3a\\xba\\xe7\\xd6\\x5b\\x9f\\x50\\xee\\xc4\\x19\\xe3\\x4e\\xe5\\x77\\xe2\\xc9\\xb0\\xa2\\x94\\x66\\x3a\\x3b\\xff\\xc3\\xd8\\x19\\xe6\\x3d\\x33\\x76\\xeb\\xad\\x8f\\xbf\\xc4\\xbf\\x7b\\xe9\\xee\\xd9\\x27\\xe6\\xc2\\xda\\x05\\xad\\x34\\x13\\x1e\\x08\\x87\\x25\\x97\\x60\\x8b\\xe3\\x27\\xeb\\xc8\\x26\\x47\\x4e\\x52\\x46\\xea\\xb6\\x6e\\xcb\\x16\\x95\\x63\\x8a\\x68\\x68\\xb8\\x09\\xbd\\x96\\x0d\\x6a\\x9a\\xc6\\x51\\x16\\x7e\\x09\\x2c\\x36\\xa1\\xd7\\x1a\\x65\\x90\\x8c\\x6e\\x63\\x77\\x9f\\x46\\xd2\\x37\\x2b\\x87\\xb2\\x41\\x95\\x06\\xc5\\x7c\\x73\\x49\\x38\\x72\\x4f\\xfa\\x3b\\xd3\\x6f\\x82\\x6d\\xd7\\x91\\xa6\\xcf\\xdf\\x91\\x5d\\xd3\\xdf\\x49\\x57\\x31\\xb9\\xe7\\xdf\\xd1\\xd4\\xbc\\x5d\\x8e\\x96\\xc1\\x73\\x80\\x6c\\xa3\\x05\\x2b\\xe3\\x67\\x46\\xee\\x39\\xb2\\x67\\xe2\\xfe\\x3d\\x13\\x7f\\x33\\x72\\x4f\\x3f\\x65\\xf8\\xa1\\x89\\x3d\\x47\\xee\\x19\\x69\\xfc\\xee\\xc8\\xdf\\xe0\\x81\\x1d\\x5b\\xdd\\x65\\x73\\x89\\x3f\\x28\\x3b\\x0a\\x52\\x9d\\x31\\xfd\\xba\\x6a\\x32\\xdb\\x0a\\x89\\x6c\\x05\\xf8\\xbb\\x86\\x62\\xb6\\xc0\\x5c\\x59\\xeb\\xb9\\x4c\\x73\\x80\\xe8\\x72\\x83\\xec\\x81\\x02\\xc2\\xe9\\xf8\\x5b\\x0f\\xa9\\x13\\xaf\\x2f\\x5f\\xbd\\xba\\xd9\\xef\\x46\\x87\\xbf\\x1f\\xa3\\xaf\\xa4\\xb6\\x92\\xb2\\xd7\\x2f\\xc9\\xc9\\x97\\x24\\x15\\x97\\xa7\\xed\\xca\\xfb\\x79\\x75\\x6e\\x0e\\x3e\\x21\\xfc\\x6c\\x5b\\x6a\\xa3\\x4e\\x77\\xf0\\x8f\\xe4\\x12\\xca\\x96\\x89\\x76\\x21\\x94\\x4b\\xf7\\xf5\\x9e\\x95\\x16\\xa2\\x2b\\x4c\\xda\\x5a\\xb8\\xb2\\x5e\\x87\\x55\\x65\\xbb\\x52\\x2b\\xba\\xbe\\x49\\x02\\x1c\\x15\\x25\\xc0\\xdb\\x44\\xb5\\x7e\\xab\\xbf\\x70\\x6c\\x68\\xe8\\x58\\xc1\\xbf\\xaf\\xbc\\x29\\x6a\\xf6\\xd1\\x69\\xcf\\xc1\\x83\\x9e\\xe9\\xa3\\xe9\\xdf\\xd8\\x1c\\x99\\xdb\\x21\\xd8\\xd3\\xf6\\x93\\xfc\\x42\\xb0\\xde\\x92\\x5b\\x02\\x8b\\xbf\\x6b\\xc9\\x59\\x40\\x4e\\xf1\\xa2\\x28\\x61\\x69\\xc3\\xb7\\x56\\x51\\x4a\\x3d\\xb2\\xbd\\x57\\xaf\\x60\\x75\\x99\\xcd\\x42\\x97\\x63\\xcf\\x0a\\x9e\\xbc\\x37\\x73\\xf1\\x65\\x9e\\x9a\\xe6\\xcb\\xa1\\x9e\\x37\\xbf\\xb9\\x27\\xf8\\x2a\\x5c\\xd9\\xfc\\xf9\\x5d\\x6a\\x21\\xb2\\xf6\\xb2\\x35\\x6f\\x5c\\xf2\\x36\\x44\\x74\\xb5\\x1d\\x31\\xb8\\x2d\\xda\\x17\\xd7\\x5f\\x66\\xf1\\x2b\\xf8\\x24\\x99\\x02\\x93\\x5b\\x0d\\x4d\\x46\\xb0\\xd7\\xae\\x62\\x02\\x6c\\x57\\x7e\\x74\\x41\\x69\\x5c\\x65\\x57\\x1c\\x72\\x95\\xe3\\x0d\\x82\\xc5\\x17\\x32\\x56\\x70\\x53\\x02\\x19\\xae\\x95\\x85\\x51\\x4f\\x60\\xc8\\x60\\x57\\x7e\\x95\\x09\\xef\\x7f\\x10\\xde\\xfe\\x30\\x72\\x17\\xe9\\x6d\\xd5\\x06\\x32\\xd7\\x29\\x64\\x95\\x02\\x7c\\x9a\\x53\\x1d\\x4d\\x7c\\xac\\xba\\x59\\x97\\x30\\x35\\x75\\xfb\\x54\\x47\\xf7\\x88\\x33\\x18\\x0c\\x5e\\xec\\x5d\\x5c\\xec\\x9d\\xe9\\xdc\\x3b\\x39\\xb9\\xb7\\xf3\\xe5\\x36\\xdd\\xc2\\xd4\\xad\\x33\\x53\\x1d\\x2e\\xdf\\x4f\\x8d\\x06\\x2f\\x8d\\x06\\x1f\\xef\\xdd\\xb3\\xa7\\x77\\xe6\\x0c\\xde\\x78\\xc6\\x96\\x6a\\x6e\\x50\\xad\\x52\\xdf\\xad\\x46\\x1c\\x0c\\x77\\xa7\\x4a\\x80\\x41\\xfd\\x0e\\x05\\xaf\\x00\\xd5\\x54\\x6e\\xb7\\x36\\x1c\\x97\\x24\\x86\\x0a\\x08\\x6e\\x0f\\x4a\\x7b\\xf9\\x7a\\xa5\\x33\\x23\\x03\\x2a\\x2e\\xed\\xfc\\xd2\\xe9\\x4b\\xca\\xb6\\x15\\x60\\x52\\x24\\xa3\\x03\\xc0\\xc4\\x79\\x00\\xfa\\x58\\xde\\xbe\\x22\\xad\\x3a\\xf0\\xf7\\xbf\\x1b\\xea\\x70\\xdd\\xf7\\xef\\xbf\\x6e\\x8d\\x3e\\x1a\\x8a\\x29\\x17\\xb1\\x88\\x32\\x26\\xf1\\xf1\\xc4\\xf6\\xf5\\xaa\\x76\\xf6\\x86\\x42\\xbd\\x9d\\xad\\xbe\\xd1\\x89\\x6a\\xeb\\x6b\\xd2\\x0e\\x75\\x24\\xec\\xc1\\x83\\x34\\x3a\\x86\\xd0\\x2e\\x34\\xcd\\x75\\x67\\xe4\\x42\\x94\\x07\\x37\\x6f\\xf4\\x1c\\xb2\\x0d\\x10\\xe7\\x13\\x69\\x6e\\x4d\\x8d\\xf3\\x14\\xfb\\x27\\x8f\\x27\\x0f\\x86\\x86\\x83\\x43\\xbe\\xc9\\xd7\\x4f\\xfa\\x12\\x61\\x38\\x06\\x77\\xc8\\xfb\\xd9\\x70\\xe3\\x9f\\x12\\xe6\\xf2\\x8a\\xa9\\x54\\x7e\\x84\\x5f\\x8a\\xf4\\xb8\\x7b\\x0e\\xf4\\xf6\\x1e\\xe8\\x75\\xf7\\x0e\\xf0\\xdf\\xdc\\xfd\\xc2\\xb2\\x99\\x80\\x3b\\xae\\x88\\x5e\\x8f\\x56\\x34\\x0a\\xcc\\xfe\\x7a\\xed\\x80\\x36\\xdb\\x0c\\xa6\\x9d\\xd0\\xb6\\x8f\\x3f\\xa0\\xb3\\x5a\\xe5\\x91\\xed\\x9f\\x95\\x75\\x55\\x50\\x2a\\xda\\x16\\xb1\\x33\\xdc\\xb2\\x84\\x68\\x07\\xa5\\x09\\x14\\x98\\xa9\\x2b\\xf0\\x5f\\xb5\\x7d\\xab\\xd9\\x5b\\x89\\xbb\\x83\\xbf\\x16\\x76\\x94\\x04\\x74\\x8e\\x98\\xa7\\x2d\\xff\\x6c\\x8f\\xf8\\x08\\xb9\\x29\\xb0\\x7a\\x57\\x5a\\x79\\x6d\\x00\\xf0\\x3f\\xc2\\x95\\x09\\x59\\x89\\x88\\xda\\xdb\\xd6\\xaf\\x4d\\xd8\\x5c\\xe6\\x08\\x69\\xa1\\xe6\\xf4\\xc7\\x14\\x9d\\xfe\\x6a\\xe2\\x14\\x28\\xca\\xaf\\xa9\\x7e\\xac\\xbd\\x7e\\x94\\x1b\\xd5\\xaf\\xd6\\xca\\x4a\\x2f\\x16\\xb1\\x7e\\x52\\x9b\\xbc\\xda\\x8e\\xdb\\xd9\\x43\\x7e\\x91\\xc8\\x89\\x93\\x9c\\x48\\x45\\xa2\\x00\\x33\\xb4\\x7d\\xa3\\x14\\xb4\\xd2\\xc2\\x28\\xbf\\xd1\\x78\\xef\\x72\\xde\\xda\\x81\\xc0\\xd7\\x28\\x96\\x8c\\x7b\\x8e\\xcc\\x8e\\xc5\\xa3\\xc9\\xfc\\x32\\xd3\\x9b\\x87\\x70\\x1d\\xea\\xb7\\x57\\xda\\x4b\\x34\\xa9\\x4f\\x4a\\x91\\x9d\\x9d\\x6c\\x67\\x98\\x95\\x39\\x4c\\x0e\\xfa\\xfd\\x12\\x05\\xa2\\x22\\xc1\\x4f\\xe6\\x0a\\x84\\xc2\\xc8\\xaa\\xb9\\x5c\\x24\\xd1\\x9b\\x99\\xfa\\xeb\\x28\\x80\\xee\\xcd\\x0e\\x0c\\x78\\x3b\\x7e\\x0c\\xce\\x4c\\xb8\\x7a\\xaf\\xa7\\x33\\x1e\\x0e\\xe1\\x0d\\x87\\xa7\\xb5\\x78\\x6c\\x68\\x0e\\x2e\\xc7\\xa2\\x00\\xc6\\x37\\xdb\\xe3\\x19\\x77\\xba\\x7f\\x8c\\x5f\\xe1\\xdf\\x3a\\x3c\\x89\\x5e\\xb7\\x48\\xab\\x50\\x4c\\xf0\\x34\\xc7\\x26\\x2c\\x60\\x6d\\xb0\\x02\\xbc\\x3e\\xc8\\x80\\x65\\x29\\x28\\x42\\xb3\\x3a\\x1b\\x5a\\x75\\x76\\xf6\\xd8\\x42\\x66\\x2a\\x3d\\x5d\\xd4\\xea\\xfc\\xc0\\x9c\\x9d\\xdd\\x30\\xcd\\x5a\\x6e\\xf6\\xc8\\xe2\\xad\\x3d\\xe3\\xdd\\x07\\xb4\\x7c\\x7a\\xca\\x6c\\x5c\\xd5\\xf5\\xb2\\x70\\x9e\\x9b\\x95\\x84\\x38\\xc8\\x84\\xaa\\x4b\\x14\\x3c\\x2e\\xcd\\xea\\x76\\xc0\\xf3\\x20\\xd2\\x31\\xb4\\x92\\x80\\x3e\\xbf\\x01\\x1e\\x48\\xab\\xe6\\x36\\x81\\x5e\\xa9\\x4f\\x51\\xbe\\x84\\x7d\\x94\\xa4\\x76\\xb5\\xb3\\xcb\\x64\\x81\\x3e\\x57\\x28\\xea\\x59\\x4e\\xe6\\x86\\xf0\\x29\\x05\\xf7\\x79\\xeb\\x84\\xd1\\x4a\\x3d\\xe1\\xf4\\xef\\x5f\\x47\\xfd\\xec\\xea\\x1d\\xcf\\x69\\x0f\\x9d\\x02\\x6c\\x23\\x52\\x11\\xb0\\xab\\x50\\x52\\xc5\\x1f\\xd6\\x11\\x86\\xaf\\xcb\\xf9\\x31\\xc0\\x72\\x7d\\xee\\xce\\x53\\x0f\\x99\\x10\\xe9\\x1e\\x75\\x05\\xff\\x97\\xd0\\x7c\\x1e\\x9b\\x02\\x68\\x47\\xc0\\xda\\xda\\xac\\x01\\x4b\\xb2\\xe3\\xb6\\x7d\\xbc\\x8a\\x6b\\x2f\\x03\\x3c\\x51\\x4f\\x0d\\x93\\xd7\\x74\\x18\\x5d\\x8d\\xb2\\x0e\\xff\\xdc\\xe5\\xba\\xbf\\xa7\\x41\\x5f\\x30\\xa3\\xa7\\xbf\\x51\\x5f\\x5f\\xaf\\x82\\x43\\xc8\\xba\\x6e\\x9a\\xa2\\x65\\x02\\x9f\\x0f\\x64\\x02\\x21\\x28\\xb4\\xa9\\x8a\\x80\\xdd\\x33\\x5b\\x94\\x4b\\xf5\\xd0\\xa1\\xea\\xe1\\x5f\\x14\\x46\\x9b\\x88\\xbe\\xdd\\x49\\x28\\x85\\x37\\x60\\x3f\\xc4\\xc6\\x21\\x12\\xbc\\x90\\x0b\\x35\\xe7\\x49\\x5b\\x5c\\xca\\x13\\x4b\\x96\\xab\\x42\\x3f\\x2d\\x5c\\x77\\xcd\\x01\\x77\\xa3\\xfb\\x5c\\xa5\\x86\\xce\\x9e\\xbe\\x80\\x51\\xbd\\xe2\\x49\\xc0\\x89\\xf4\\x75\\xe8\\x26\\x04\\xd4\\x89\\x77\\x8e\\x4f\\x29\\x31\\xe5\\x66\\x91\\x06\\xd9\\xaf\\x81\\xd9\\xff\\xbd\\x7d\\xa1\\xfd\\x77\\x7c\\x51\\xee\\xc1\\x1f\\x5c\\x78\\xba\\x73\\x1e\\xfc\\xa5\\x3b\\xba\\xc1\\xf4\\xc7\\x18\\x9a\\x3a\\xd4\\xf3\\xd3\\xdb\\xae\\x3f\\xd8\\xb7\\x35\\x42\\xbc\\x2f\\xd3\\x7a\\x0c\\x17\\xfa\\x3d\\x9e\\x4c\\x06\\x74\\x5c\\xb2\\xe5\\x35\\x92\\x06\\x1e\\x0f\\xea\\x58\\x45\\x2b\\x1d\\xd8\\xde\\xca\\xd6\\xcc\\x35\\x93\\xad\\x35\\x36\\x6a\\xa9\\x59\\xe6\\xc7\\x6b\\xb0\\x5d\\xd2\\x74\\x10\\x4d\\x98\\x39\\x89\\xd6\\x8b\\x32\\xfb\\x36\\xfb\\x54\\x2b\\x3f\\xca\\x2e\\x24\\x17\\xdc\\x32\\x3a\\xf1\\xa4\\x65\\xe0\\xc4\\x43\\xa1\\x9f\\x9d\\xce\\x85\\xfc\\xb0\\x7d\\xaa\\x97\\x55\\x7a\\xee\\x58\\x63\\xd3\\xbd\\x8d\\x7f\\x98\\xf8\\xc2\\x70\\x8c\\xcd\\xe0\\x65\\xd8\\xee\\x1b\\xfd\\xe1\\xd1\\xe1\\xe1\\x15\\xd7\\xe8\\xeb\\x1e\\x3f\\xe0\\x33\\x9a\\xc8\\x53\\x65\\x68\\xf1\\x7e\\x3e\\x4e\\xa0\\x62\\xed\\x36\\x45\\x0d\\x4d\\xb4\\x28\\x32\\xd7\\xaf\\xd8\\xe6\\x44\\x16\\x7a\\xd0\\x5f\\xb3\\x1a\\x97\\x6d\\xa7\\x41\\x87\\xc7\\x95\\xc1\\x98\\x07\\x21\\xcc\\x85\\xd2\\x88\\xe4\\xa4\\xf0\\x6b\\xec\\xdb\\x72\\xa7\\xef\\xd4\\x71\\x80\\xf1\\x35\\x97\\xa3\\x5d\\xc7\\x06\\x7c\\xe1\\xc6\\xc3\\x60\\x3f\\x60\\x8e\\x2f\\x69\\xef\\xf3\\x45\\x3c\\x23\\x95\\x4c\\xa4\\x6a\\x0e\\x54\\xba\\xdc\\xde\\x7b\\x88\\xe0\\xa8\\xd9\\x54\\x54\\xbd\\x59\\x02\\xb7\\x4c\\xc9\\xdb\\x65\\x60\\x85\\x37\\x95\\xf0\\x32\\x12\\x8b\\x2b\\x58\\x02\\x8c\\xe4\\xc6\\x3a\\xe5\\x0e\\x56\\x00\\x30\\x54\\x28\\x73\\x10\\xa5\\x9b\\x3c\\x6b\\x2b\\xe7\\xcf\\xa3\\x95\\x16\\xd9\\x1a\\x8b\\xb9\\x84\\xb0\\x8c\\x82\\x50\\x88\\x0c\\x49\\x39\\x03\\x0e\\x9e\\x90\\x19\\xdb\\xe7\\x0c\\xf4\\xae\\x28\\x26\\x2f\\x43\\x8b\\xf9\\x02\\x4c\\xe2\\x79\\x36\\x3e\\xdd\\xab\\x1a\\x45\\xab\\x9c\\xde\\xa6\\xcd\\xe6\\x1f\\xa0\\x0d\\x22\\x51\\xc4\\x2a\\xb5\\x0e\\xd0\\x17\\x20\\xb2\\x99\\x07\\xbd\\x17\\x4c\\xa6\\x59\\x55\\x55\\xe8\\x5a\\x0e\\xde\\x5f\\xce\\x81\\xaf\\x15\\x0e\\x3c\\xec\\xe2\\x93\\x89\\x33\\x3f\\xac\\xa6\\xdc\\x43\\x4e\\x35\\xc0\\x42\\xbd\\xa9\\xe9\\xb9\\xe9\\xa5\\xd0\\x5d\\x57\\x46\\xf7\\x78\\x60\\xdd\\x72\\x8d\\x0c\\xec\\x1b\\xf4\\x04\\x53\\x3d\\x3d\\x72\\xb0\\xb6\\x92\\x30\\x86\\xd4\\xb7\\x04\\x13\\x2e\\xa7\\x2f\\x9a\\xee\\x9c\\xf4\\x0e\\x9f\\x2f\\xea\\xb9\\xec\\xd7\\xbf\\xaa\\xc6\\x59\\x20\\x98\\x1a\\x94\\x3b\\xbb\\x52\\x83\\xb4\\x6a\\x03\\x91\\xcb\\xd6\\x49\\x4b\\xa0\\xd1\\x6c\\x6b\\x0f\\x0e\\x52\\xc1\\x91\\x0e\\x4e\\xc9\\xc9\\x42\\x33\\xcc\\x5b\\x92\\x2a\\x56\\x8d\\x2f\\x3f\\x10\\xc9\\x0c\\x05\\x58\\xa0\\x2f\\xe6\\xdf\\x15\\x59\\x5a\\x38\\xf1\\x25\\xab\\x61\\xa7\\x48\\x6a\\x75\\x53\\x7c\\x39\\x13\\x79\\x32\\x30\\xd4\\x97\\x0c\\x0c\\x4c\\x4d\\x9d\\x52\\x78\\x6b\\x28\\x5c\\xa0\\x25\\x09\\x32\\x00\\xbe\\xca\\x8f\\x6e\\xb6\\x99\\x2a\\x0c\\x7b\\x76\\xb6\\x9e\\x61\\x8a\\x86\\x7f\\x57\\xfd\\xe1\\xad\\x96\\x33\\x6c\\x59\\xd3\\x56\\xe8\\xf3\\x62\\x44\\xb4\\x9c\\x21\\x93\\x83\\x26\\x3f\\xc2\\xa3\\x75\\x0c\\x91\\x34\\xc9\\xbd\\x8d\\xc9\\x71\\x8e\\xb3\\xa2\\xb5\\x0a\\xba\\xa1\\x9a\\x22\\x12\\xc4\\x4b\\x47\\x7a\\x8b\\xc5\\xde\\x23\\x4c\\x2f\\x15\\xf5\\x96\\x55\\x31\\x27\\x5e\\xfa\\xc3\\xfc\\x4b\\x18\\x9b\\xb6\\x4f\\x1b\\x95\\x13\\xc1\\x55\\x3c\\xef\\xde\\x29\\x10\\x74\\x11\\x0a\\x11\\x63\\x41\\x93\\x89\\xb2\\x52\\xac\\xae\\x8b\\xf9\\xeb\\x3a\\x2f\\xe1\\x7f\\x2f\\xbe\\x34\\xe5\\x59\\xd9\\x36\\x3f\\x01\\x19\\x2b\\x68\\x8d\\x76\\x99\\x84\\xb3\\x2d\\xce\\x98\\x95\\xfa\\x22\\x20\\x26\\x8c\\xf4\\x31\\xad\\xa4\\xb1\\x72\\xb4\\xef\\xf2\\xb2\\x61\\x2c\\x5f\\xee\\x8b\\xc2\\x0a\\x4c\\xf4\\xa4\\x60\\x49\\x15\\xc5\\xb5\\x55\\x6a\\x0b\\x37\\x1a\\x80\\x6a\\x15\\x78\\x9f\\x4a\\xb9\\x37\\xc1\\x5f\\xb1\\x37\\x91\\xae\\xf9\\x0f\\x29\\x7d\\xd9\\x30\\xe6\\xbb\\x62\\x8e\\x58\\xd7\\xbc\\xd1\\x78\\x2d\\x01\\xfe\\x19\\xfe\\x48\\x82\\x99\\x14\\xa8\\x3c\\x4c\\x69\\xe3\\x87\\xcd\\x97\\x62\\xb1\\x97\\xcc\\x17\\x29\\x8c\\xfd\\xe5\\x17\\x25\\xa7\\x65\\x99\\xf3\\x49\\x0b\\xd7\\x50\\x42\\x17\\x21\\x19\\xa8\\x76\\x15\\xf7\\xd9\\xf9\\x04\\x9d\\x94\\x97\\x7e\\x02\\xdc\\x73\\xdf\\x32\\xae\\x47\\x4e\\x46\\x8c\\x8d\\x3b\\x59\\xe0\\x0e\\xfd\\xf4\\xab\\xa7\\x37\\xf6\\xee\\xd5\\xc7\\xe1\\x1a\\x5c\\xba\\xe3\\x0e\\xfd\\xd4\\xa9\\x16\\xea\\x10\\xd7\\xcb\\xe9\\x9b\\xad\\xd7\\xb2\\xb0\\xe1\\x3a\\xa2\\xb6\\x21\\x86\\x58\\xcb\\x88\\x62\\x29\\x8f\\xcf\\xbf\\x33\\x3b\\x9f\\xfd\\x72\\x0b\\x8a\\x48\\x01\\xb5\\x5c\\x95\\xab\\x90\\xeb\\xba\\x1e\\xcd\\x66\\x8f\\xb4\\xe2\\xf6\\xe8\\x68\\x43\\x28\\xc4\\xc4\\x5e\\x6b\\x62\\x72\\x8f\\xe2\\x93\\xa8\\xc0\\x78\\xe4\\x08\\x6b\\xbb\\x40\\x69\\x72\\x1e\\x2e\\x65\\x3c\\x60\\x6e\\xa1\\x38\\x15\\x12\\xee\\x92\\xc3\\x52\\xd9\\xb8\\x75\\x70\\x26\\xbd\\xde\\xd5\\xeb\\x4b\\x0c\\xe8\\xd9\\x99\\xae\\xc3\\x30\\x37\\x2f\\xfe\\xfb\\x53\\xe1\\xbd\\x8f\\x4e\\xb0\\x40\\xd7\\x9c\\x73\\xa0\\xb7\\x3f\\xec\\x7e\\xd0\\xb9\\x61\\x38\\xf7\\x7a\\xd2\\x5d\\x9d\\x4b\\x7d\\x03\\x5a\\x36\\xb8\\x27\\x9c\\x5b\\x9c\\xea\\xd9\\xe5\\x1d\\x9b\\x30\\x3b\\x1b\\xff\\x9d\\xf5\\x04\\xc3\\xfd\\x5d\\x9d\\xff\\xe0\\x95\\x04\\x9f\\x2e\\x05\\x29\\x84\\x80\\x02\\xe1\\x2b\\x5b\\x7a\\xd1\\x2c\\x6f\\x03\\x26\\x67\\x79\\x03\\x90\\x4c\\xf2\\x57\\xb2\\xee\\xc5\\xb1\\xf1\\x7d\\xa0\\x0d\\xfd\\xd3\\x87\\xe1\\xe1\\x99\\x23\\x32\\xe0\\xf5\\xe0\\xd3\\xab\\xe3\\x18\\xbe\\x3d\\x3b\\x3a\\x0f\\x4f\\x19\\xf6\\xff\\xf4\\x9f\\xe0\\xe3\\x37\\x3e\\x18\\x19\\x70\\xc0\\xd3\\x87\\x7d\\x3a\\xcd\\x02\\x45\\x4e\\x25\\x10\\xbd\\xd7\\x4f\\x96\\x93\\x3c\\xf8\\x1e\\x4e\\x02\\x4d\\xf1\\x67\\xce\\x36\\xac\\xc2\\x22\\x09\\xab\\xb7\\x40\\xf5\\x61\\x65\\xc3\\xa8\\x56\\x95\\x22\\x21\\x94\\x76\\xaf\\x6b\\x6b\\x68\\x53\\xe5\\x8f\\x5c\\x29\\x19\\x06\\x18\\x4f\\xb1\\xba\\x61\\xe8\\xfa\\xba\\x61\\x98\\x24\\x01\\xcd\\x69\\x68\\x54\\x15\\xf6\\xd3\\xbb\\xd0\\x09\\x65\\x8a\\x68\\x0b\\xe2\\x0a\\xa8\\xe7\\x92\\x4f\\x79\\x56\\x40\\x3c\\x70\\xa7\\xb2\\x96\\x45\\x75\\x36\\x57\\x01\\x18\\xdf\\x7b\\xd8\\x8b\\x83\\x8b\\xf3\\x07\\x2f\\x3c\\x9d\\xd9\\xc3\\x4a\\x27\\x3e\\x4a\\x47\\x77\\xc5\\x37\\xb4\\x5f\\x6c\\xac\\x44\\xf7\\x64\\x9e\\xbe\\x70\\x70\\x7e\\xf1\\x13\\x1f\\xa5\\xfd\\xdd\\x82\\xe4\\x86\\x28\\x3f\\xe2\\x88\\x9a\\x32\\xc8\\xf2\\x7a\\x80\\xe4\\x84\\x1b\\x30\\x8b\\x91\\x6c\\x10\\xee\\xae\\x4b\\x06\\x83\\x71\\xc4\\xef\\xa6\\x28\\x80\\xd6\\x18\\xaa\\x97\\x4a\\x64\\x91\\xc1\\x00\\x75\\xfb\\x3e\\x1a\\x0c\\x9b\\xbc\\xac\\x3b\\x28\\xfe\\x3a\\x48\\xfb\\x65\\x7f\\x08\\x9c\\x4c\\xb3\\x7e\\x04\\xe3\\x61\\xa1\\x2f\\xc9\\x0f\\x9c\\x3c\\xf9\\x80\\xfc\\x25\\xfd\\xcc\\x83\\x0f\\x5e\\x85\\x03\\xb6\\x06\\x17\\xbe\\xd4\\x28\\x79\\x9f\\xf8\\xf4\\x13\\x92\\x4b\\xf8\\x7d\\xa7\\x2d\\xdd\\x04\\x30\\x05\\x30\\x7e\\x54\\xfd\\x1e\\x68\\xdc\\xc9\\xa6\\x70\\x53\\xd9\\x7d\\x4e\\xfe\\x60\\xad\\x64\\xec\\xbb\\xff\\x83\\xf2\\xb9\\xcf\\x50\\xad\\xcf\\xcb\\xe7\\x76\\x97\\x00\\xb4\\x07\\x60\\x12\\xbc\\x1f\\xdc\\x7d\\x2e\\xc7\\x9f\\xc0\\x29\\xe2\\x4a\\x93\\x35\\xaa\\x55\\x7f\\x4f\\x6b\\x2e\\xc8\\x71\\xf1\\xee\\x7f\\x5e\\x2c\\xed\\xd9\\x53\\xf2\\xd2\\x98\\xae\\xa3\\xe7\\x26\\xb8\\x77\\xb2\\x30\\x5e\\x5b\\xbc\\x44\\x33\\xc1\\xad\\x0b\\xa3\\xd9\\xdd\\x59\\x8e\\xcd\\xf9\\x08\\xe1\\x04\\x90\\x65\\x10\\xfa\\xd0\\x66\\x2d\\x37\\x96\\x26\\xf4\\x44\\x81\\xd5\\xf7\\xa7\\x65\\xdd\\x13\\x2e\\x15\\xcd\\xc4\\x8b\\xc5\\xbd\\x8b\\xc5\\xe3\\x8b\\xb1\\x63\\x17\\xef\\x3d\\xba\\x97\\x3d\\x70\\x7c\\xf1\\x58\\x6e\\xf2\\x8e\\x12\\x5c\\x2f\\x1d\\x39\\x3c\\x17\\x33\\x4e\\x1d\\x6a\\xe5\\xf9\\x3c\\xd4\\x53\\xb2\\x64\\x8e\\xd9\\x65\\xf8\\xe5\\x87\\x62\\x2f\\x17\\x1f\\x81\\x3b\\xd7\\x62\\xbf\\x53\\xb2\\xed\\x43\\x1d\\x92\\x14\\x25\\x7c\\x6f\\x89\\xf1\\x71\\x4f\\xa0\\xb9\\x94\\x08\\xfe\\x28\\x14\\x25\\xa8\\x39\\x29\\xe0\\x09\\x10\\x5e\\x90\\x64\\xf9\\x10\\x55\\x09\\x2f\\x10\\x68\\x83\\xf0\\xb0\\x6f\\x72\\xd2\\x97\\xf2\\x4d\\x4c\\xfa\\x86\\xc3\\x99\\x48\\x59\\xbb\\x21\\x14\\x0b\\x05\\x01\\x30\\x67\\xad\\xc3\\x17\\x50\\x63\\x21\\x58\\xf6\\x97\\x14\\x75\\xd9\\x1f\\x91\\x47\\x46\\xe4\\x30\\x8a\\x60\\x92\\xfe\\x30\\xfe\\x04\\xb7\\xb0\\x3f\\x09\\x6b\\xa8\\x5e\\x09\\x75\\xdf\\x89\\x84\\xe5\\x9d\\xdd\\x78\\xbb\\xa2\\xfe\\x4a\\xc4\\xdf\\xd5\\xb5\\x6f\\x5f\\x57\\x17\\xf2\\x39\\x3e\\xd1\\x23\\x64\\x0b\\xbe\\x43\\x4e\\xda\\x45\\x52\\x50\\xee\\xd9\\x6d\\xfb\\x3c\\x28\\x22\\xc2\\x34\\xdf\\xda\\xcf\\x11\\xbb\\xcc\\xcf\\xed\\x94\\x4b\\x55\\x0e\\x27\\xce\\xff\\x74\\xeb\\xaf\\x5a\\x6f\\x94\\xea\\x35\\x32\\x52\\x5e\\xab\\x13\\x7c\\x12\\x93\\xc8\\x5e\\xb9\\x48\\xd7\\xda\\x4e\\x1a\\x75\\x66\\x4a\\x82\\x6f\\x6a\\x27\\x47\\xa4\\x25\\x4a\\x8e\\x8c\\xd8\\xe7\\xc0\\xe4\\x87\\x0e\\x93\\xd0\\xc2\\xf3\\x6d\\x70\\x40\\xac\\x38\\x78\\x60\\xc1\\xd4\\xe4\\x9f\\x5f\\x38\\x50\\x68\\xd4\\x17\\x1e\\x43\\xaa\\x33\\xfd\\x2e\\x1e\\x91\\xbe\\x6f\\x44\\xcd\\xe7\\xc7\\x63\\x8c\\xf6\\xea\\xc8\\x6e\\xb8\\x66\\x7f\\x50\\x4b\\x29\\x99\\x0e\\x89\\x55\\x2c\\x29\\x68\\x4a\\x9a\\x22\\xed\\x1b\\x95\\x92\\xb6\\x0a\\x6e\\x45\\x2a\\x47\\x4d\\x07\\xef\\xaf\\x59\\xa5\\x15\\xff\\xe3\\xbf\\x9f\\xbe\\x00\\x6b\\x68\\x4f\\x7a\\xc1\\x78\\x3f\\xe5\\xab\\x03\\x24\\x4e\\xa0\\xa3\\x13\\x66\\x96\\xef\\x90\\xa3\\xf1\\x46\\x6a\\x48\\xd7\\x87\\xe2\\x9e\\xb8\\xaa\\xeb\\xc3\\xc7\\x78\\xd9\\xce\\xe8\\xa1\\xa8\\x13\\xf6\\x21\\x6e\\xde\\xdc\\x44\\x91\\xdf\\x16\\x07\\x7c\\x1c\\x5a\\x61\\x87\\xb7\\x90\\x15\\x8e\\x61\\x4a\\x84\\x37\\x92\\x2f\\xa8\\xac\\xa2\\x41\\xdb\\xd2\\xcb\\xb0\\xf7\\x75\\xb3\\x61\\x9a\\x60\\x46\\xbd\\xb5\\xe9\\xd7\\x9a\\x07\\x75\\xb2\\x6b\\xfa\\xb7\\x42\\x61\\xda\\xbe\\x5c\\x28\\x45\\x4d\\xd1\\xeb\\xbe\\x5e\\xb9\\x7f\\x4c\\xc5\\x0e\\xef\\x50\\x6c\\x1d\\x8a\\xbd\\x7f\\xc7\\x62\\x9b\\x38\\x8b\\xaf\\x48\\x01\\x92\\x2e\\x90\\x3d\\x3a\\xf4\\x31\\xdb\\x65\\x0d\\x7a\\x81\\x4c\\x30\\x41\\x30\\x5c\\x75\\x40\\x68\\xc8\\x4d\\xa0\\xbb\\x62\\x0e\\xfc\\xde\\x4b\\x91\\xaa\\xae\\x28\\xfa\\xea\\xec\\x89\\xae\\x5e\\x64\\x27\\x7a\\xbb\\x4e\\xcc\\x02\\xeb\\x4f\\xb2\\x25\\x3b\\x4f\\x99\\xf4\\x29\\x4d\\x19\\x77\\x61\\x9b\\xdc\\x3d\\x94\\x3b\\x2b\\x4e\\xde\\x38\\x59\\x17\\x0a\\x00\\x27\\x92\\x52\\xc5\\x1c\\x2b\\x14\\xc6\\xcc\\xd0\\xb6\\xc5\\x58\\xa5\\xd4\\xa8\\xe6\\x61\\xd2\\xa5\\x64\\x61\\xc2\\xce\\xa1\\xb1\\x5c\\x7b\\xee\\x60\\xd0\\x03\\x33\\x1a\\x16\\x4d\\xbe\\x34\\xe6\\x97\\x9c\\x9d\\x0e\\xe6\\x61\\x1e\\x07\\x15\\xf5\\xc6\\x91\\x70\\xe9\\x9d\\x03\\xaf\\x00\\x50\\x7d\\xe3\\x8f\\x75\\xff\\x9e\\xe8\\x6f\\xfe\\x36\\x73\\x33\\xa7\\xa3\\x55\\xda\\x40\\x7f\\x3f\\xdb\\x1d\\xfe\\x8f\\xbb\\xa2\\xba\\xa2\\x97\\xc7\\x12\\x8b\\x83\\xf6\\x6a\\x41\\xf1\\xec\\x79\\xbc\\x10\\x69\\x84\\x4a\\x2a\\x28\\x5b\\x1f\\x51\\x25\\x5a\\x25\\xcd\\x41\\xe8\\xfa\\x47\\xc2\\xc5\\x92\\xf0\\x9c\\x9a\\xfb\\x48\\xec\\x9c\\xbb\\xf1\\xb5\\xa3\\x6e\\xdd\\x7d\\x0e\\x68\\x82\\xfe\\x6f\\xac\\xb6\\x3f\\x6e\\xb6\\x94\\x8b\\x19\\xf7\\x3d\\x37\\x7b\\xfe\\x3e\\x43\\x12\\xda\\x16\\x31\\xc8\\x46\\x2c\\xb4\\x61\\x19\\x1d\\xb5\\xd4\\xeb\\xbc\\xbb\\xfc\\xea\\xe2\\xe2\\xea\\xe2\\xbb\\xdb\\xdf\\x20\\x9b\\xca\\x64\\x8e\\x67\\x32\\x8b\\x3b\\xbc\\xc8\\x9d\\xe3\\x3d\\x16\\xe4\\x7c\\x20\\x6b\\xc7\\x7b\\x94\\x0b\\x42\\xbc\\xc7\\xac\\x4a\\xf1\\x1e\\xcb\\xa1\\x52\\x29\\x54\\x06\\xa3\\xb0\\xd5\\x50\\x89\\x63\\x53\\xc0\\x29\\xab\\xf1\\x7d\\xa3\\x8e\\xd7\\xca\\x06\\xbf\\x63\\x8d\\xee\\x16\\xec\\xd7\\xbb\\x39\\xe2\\x12\\xd7\\x57\\xa6\\x42\\x54\\x4a\\xa8\\x80\\xd6\\x7b\\x6a\\x8e\\xcb\\x7f\\x33\\xdb\\xa2\\xb9\\x49\\xe3\\xfb\\x1c\\x13\\x2e\\xe0\\x3f\\x93\\x73\\xcd\\xa3\\x47\\x37\\x43\\xbb\\x55\\xf6\\x8d\\xcb\\xc0\\x0e\\xc2\\xb2\\xb1\\xde\\x3c\\x32\\xda\\x60\\xde\\xfe\\xd5\\xe7\\x61\\xd9\\x2e\\xaf\\x89\\x36\\x3b\\x06\\x56\\xed\\x4b\\x2d\\xaf\\x36\\x9b\\x6b\\xc8\\xb4\\x9d\\xab\\x5c\\xfd\\xca\\x6b\\x46\\x23\\x0c\\xea\\xc9\\xeb\\x86\\x82\\x1e\\xf6\\x10\\xb1\\x96\\x3e\\xf4\\xa6\\x1f\\xff\\x27\\xe1\\xf8\\xd5\\xa3\\x23\\x91\\x4c\\x57\\xe2\\xe8\\xb1\\xa3\\x4c\\xd7\\x57\\x1a\\xda\\x8a\\x3e\\x35\\x33\\xc3\\x2e\\x93\\xe9\\xd3\\xad\\xe3\\xe8\\xae\\x7f\\x5c\\x38\\xfe\\x64\\xa4\\x73\\xd0\\xd7\\xdd\\x1d\\x81\\xdd\\x60\\x67\\x64\\x25\\x1b\\xdf\\xbd\\x3b\\x9e\\x0d\\x91\\x6f\\xa8\\x48\\xdf\\x34\\x57\\x0e\\xbb\\x59\\xbe\\xfa\\xc0\\xe5\\xc6\\xda\\xef\\x92\\x5d\\x78\\x7d\\x0a\\xd6\\xe9\\xcc\\x45\\x80\\x11\\xce\\x11\\x2f\\xd8\\xf4\\x1e\\x20\\xed\\xba\\x34\\x62\\xfd\\x32\\x9b\\x6b\\x2d\\x2c\\xcd\\x46\\xed\\xc4\\x6c\\x14\\x8e\\x5a\\xf1\\x17\\x42\\x6e\\xef\\xa2\\xc5\\xa3\\x6c\\xe5\\xe9\\x6a\\xd6\\xa5\\x83\\xf8\\x85\\x24\\xd5\\xc7\\xaa\\x50\\x33\\x2a\\xc7\\xb0\\x87\\x2e\\xd8\\xed\\xf8\\xaa\\x71\\x72\\x5f\\x63\\x6d\\xdf\\x71\\xca\\xf5\\x6d\\x17\\x4a\\xcc\\xf5\\x20\\x1a\\xec\\x45\\x36\\xfa\\x35\\x34\\xbc\\xd7\\xbe\\x91\\xc3\\x6f\\xbe\\x90\\xf4\\xa9\\xaa\\xef\\xcf\\x80\\x58\\x09\\x67\\x84\\x88\\x93\\x6e\\xf2\\x05\\x2a\\x20\\x4c\\xdc\\xa6\\x00\\x8f\\xf9\\x15\\x6d\\x7e\\x85\\xc0\\xa4\\xd9\\x5b\\xd4\\xc6\\xc6\\x9f\\x77\\x39\\x8a\\x7a\\x11\\x3e\\x9b\\x91\\x3e\\x65\\xdb\\xeb\\x6d\\xe7\\x78\\x28\\xac\\xbc\\x25\\xd6\\x49\\x05\\xcc\\xc8\\x40\\xb0\\xc4\\xf4\\x1d\\x90\\xaf\\x55\\x4b\\x6a\\x41\\x4e\\x96\\x5b\\x65\\x7f\\xb2\\x2d\\x27\\x14\\x54\\xf5\\x6f\\x99\\x58\\x9c\\x8e\\xf8\\x41\\x54\\xa7\\x99\\x80\\xaf\\x1c\\x7b\\xd6\\x1f\\xb9\\xd7\\x6d\\x81\\x81\\xbd\\x77\\xfa\\x60\\xbe\\x14\\xe8\\x00\\xb6\\xac\\xc3\\x07\\x12\\x40\\xe3\\xa6\\x31\\xe0\\xde\\xee\\x0d\\xf6\\xef\\xb7\\x81\\xc0\\x04\\xce\\xdb\\x23\\xf9\\x28\\x9a\\x3c\\x1a\\x47\\x80\\x44\\x4b\\x41\\xe3\\xa8\\x0d\\xbd\\xb6\\x51\\xaa\\xc0\\x1f\\xab\\x99\\xd5\\x0f\\xde\\x6f\\xde\\x7c\\xf6\\x6c\\xe9\\xcc\\x19\\x89\\x6c\\x78\\xc7\\x69\\xb5\\xcf\\xd0\\xc8\\x82\\x3a\\x72\\xee\\xa2\\x09\\x58\\x45\\x4e\\x9c\\x9c\\x32\\xce\\xca\\xa0\\x7e\\x82\\xbe\\x6c\\x46\\x46\\xd2\\xb3\\x69\\xf6\\xa1\\x40\\x98\\x98\\x96\\xc0\\x15\\x40\\xe9\\x85\\x83\\x81\\xe0\\x15\\x87\\xe3\\xc3\\xfd\\x9f\\x4b\\x87\\x23\\xe9\\x74\\xa4\\xd3\\x75\\xc1\\x0f\\x97\\xfd\\xe7\\x3b\\xdd\\x11\\x1c\\x5c\\xfd\\x17\\x3a\\x3b\\x3b\\x2f\\xf4\\x35\\x57\\xb9\\xbf\\x95\\xba\\x08\\x4d\\x98\\x66\\x16\\x8f\\x4c\\xea\\x89\\x50\\xb3\\x7c\\x38\\xcb\\x71\\xff\\xd4\\x7f\\xd2\\x17\\x7d\\xf1\\x43\\x7b\\x46\\x0f\\x1a\\xcb\\x60\\x50\\x71\\x78\\x3c\\x99\\x18\\xf3\\xba\\xca\\x8b\\xfa\\xb8\\x36\\xd6\\xd3\\x9d\\x1f\\x04\\x8f\\xd5\\xb9\\xca\\x4d\\x68\\x32\\xf4\\xc0\\x59\\x6f\\x72\\x72\\x62\\x38\\x38\\x27\\x5a\\x98\\xda\\x3d\\x70\\xcc\\x5a\\xc1\\x33\\xc3\\x30\\xf5\\x87\\xda\\x56\\xed\\x76\\xa3\\x52\\x5c\\xc5\\x53\\xe1\\x3b\\xc3\\xa9\\xee\\x88\\xb0\\x7a\\xaf\\x72\\x63\\x4d\\x4a\\x61\\x25\\xd7\\xb4\\xe4\\x79\\x71\\xfd\\x9e\\x86\\xeb\\xf6\\x47\\x44\\x90\\xb4\\xe7\\x11\\xf2\\x02\\xba\\x7e\\xb9\\x68\\xe0\\xfa\\x0b\\x3b\\x94\\xf8\\x16\\xd3\\x2c\\xee\\x54\\x9c\\x91\\xd8\\xe9\\x89\\xd1\\xce\\x8a\\xb0\\x7c\\xbe\\x4b\\xc9\\xbf\\x87\\x0f\\xbb\\x88\\x8f\\xed\\xda\\xa1\\xfc\\xaa\\x96\\x1c\\x1b\\x4b\\x9a\\xdf\\xcb\\x13\\xc3\\x68\\x24\\x9a\\x69\\xc2\\xa6\\x9a\\x0a\\x82\\xf5\\x04\\x4f\\x65\\xba\\xb2\\x3d\\xf5\\x24\\xab\\xf0\\x17\\x52\\xe9\\xef\\x47\\x84\\xe3\\xe7\\xda\\x28\\xa9\\x9b\\xe0\\x8b\\x10\\xfc\\xe1\\xf7\\x07\\x29\\x55\\xe9\\xca\\x77\\xc4\\x3a\\x6e\\xae\\x57\\x17\\x6f\\x1b\\x9b\\x8a\\xcc\\x52\\x75\\x0a\\x64\\x43\\xb6\\x03\\x05\\xf9\\xa3\\x21\\x75\\x62\\x52\\xdd\\x3f\\x39\\x01\\x59\\xbf\\xa9\\x8d\\x82\\x7c\\x4c\\x55\\x27\\x26\\xf8\\xa6\\xd6\\xc4\\x42\\xdb\\xf1\\xfa\\x45\\xec\\x19\\x3e\\xa7\\x88\\xe0\\x33\\x28\\xfd\\xe2\\xc6\\x1c\\x95\\x5a\\x1c\\xae\\xd4\\x76\\xc0\\xec\\x27\\x4a\\x5c\\x6a\\x9f\\x99\\xdc\\x10\\x02\\x90\\x09\\xb0\\xff\\xa4\\xf9\\xd0\\x98\\x98\\x09\\x81\\xed\\xfc\\x1f\\xa0\\x8c\\x7f\\x57\\xd4\\xd0\\xf9\\x6d\\xf2\\xf8\\x1c\\xd9\\x7c\\x6f\\xca\\x29\\x40\\x06\\xe2\\x9c\\xc7\\x35\\x78\\x5f\\x45\\xa9\\x6e\\xc1\\x82\\x17\\x62\\xd2\\x3b\\x53\\x0f\\x7f\\x64\\xcf\\x9e\\x8f\\x3c\\x9c\\x7a\\xdf\\xe9\\x2b\\xf7\\x74\\xbf\\xf7\\xbd\\xdd\\xf7\\x5c\\xb1\\x25\\xf6\\xf4\\xfe\\x48\\x96\\xa0\\xa2\\x01\\x0b\\xdc\\x9e\\xe5\\x3f\\x64\\xd2\\x69\\xe5\\xe8\\xed\\x23\\xf5\\x87\\x53\\xef\\xe4\\x3f\\xff\\xe2\\xf4\\x2d\\x4b\\xde\\xd2\\xc1\\x7b\\xae\\x9c\\xe6\\x99\\x88\\x39\\x74\\x90\\x45\\xac\\x6a\\x9b\\xc0\\xa4\\xdb\\x73\\x19\\xb9\\xfd\\xa8\\xc2\\xd2\\x6d\\x59\\x95\\xbc\\x4b\\xb7\\xfc\\x6c\\x2b\\x3b\\x37\\xd4\\x5f\\x62\\xd7\\x1c\\x12\\xe5\\x16\\x97\\x0e\\x21\\x0a\\x01\\x6b\\x22\\x68\\xa9\\x73\\x34\\xc7\\x03\\x7e\\x67\\x96\\x43\\x9e\\xca\\x14\\x0d\\x28\\x84\\x07\\x70\\x48\\x34\\xa0\\x8d\\xf2\\x09\\xe9\\xb0\\x05\\xf0\\x49\\x50\\xa1\\xd0\\x11\\x39\\xf0\\x16\\x93\\x10\\x58\\xcb\\x7d\\x18\\x90\\xb6\\x1e\\x9c\\x0a\\x06\\x46\\x3a\\x1d\\x53\\xf9\\x80\\x5b\\x09\\xa5\\x66\\x66\\x06\\xdd\\xe0\\xaa\\x11\\x1e\\x88\\x45\\x7b\\x7d\\x83\\xf1\\xbe\\xbe\\xa1\\x48\\x78\\xb0\\xb7\\x2f\\x94\\xea\\x71\\x1d\\x1b\\x3a\\xd3\\xc3\\xe1\\xb8\\x1c\\xd2\\x33\\x77\\x2d\\x22\\xfe\\xd6\\xff\\xbb\\xeb\\xc9\\x61\\xd9\\x7f\\xf3\\x94\\x2f\\xe4\\xcd\\x28\\xa1\\xb5\\x73\\x5d\\x83\\x9d\\x9d\\x3e\\x97\\x6f\\x40\\xed\\xea\\x81\\x39\\x50\\xf5\\xf7\\x76\\x47\\xbd\\x3e\\xf5\\x0f\\x2d\\x8c\\x2e\\xc1\\xc7\\x81\\x2c\\x87\\x59\\x8a\\xbc\\x81\\x31\\x4d\\x36\\x4d\\x96\\x6b\\x84\\xf7\\xc6\\xcc\\xaf\\x73\\x23\\x52\\xa3\\x01\\xaa\\x53\\x06\\x04\\x2b\\xd1\\x28\\x7c\\xac\\xb5\\x45\\x45\\x93\\x02\\x48\\x0b\\xbb\\x49\\x69\\x97\\x54\\x9c\\x16\\x10\\xdd\\x6b\\xaf\\x34\\xca\\x0c\\x98\\x3c\\xe8\\xac\\x95\\x0d\\x10\\x82\\x19\\xb0\\x74\\xc1\\x1a\\x5b\\xbc\\xb2\\x0a\\x47\\xd2\\x95\\x2b\\xb6\\xed\\x41\\xdd\\xf2\\xd6\\x4f\\xb7\\xac\\x82\\x64\\xb2\\x86\\x6a\\x83\\xf8\\x55\\x6c\\xdf\\x01\\x76\\x8c\\xe6\\xa3\\x7c\\x5d\\xb1\\x4d\\xa4\\x70\\x04\\xd4\\xf0\\x80\\x9b\\x03\\x1d\\x5d\\x03\\x8b\\xa9\\x16\\x9c\\xbb\\x42\\x60\\xc9\\x6d\\xf6\\x28\\x71\\x18\\xb3\\x16\\x71\\x32\\x6f\\x51\\x28\\x59\\x2c\\x48\\x18\\x7b\\x26\\x93\\xc0\\x73\\xb0\\x46\\x54\\xe3\\x1f\\xf1\\x42\\x78\\x81\\x15\\x45\\x01\\xd7\\xc1\\x87\\x89\\xa0\\x14\\xc6\\xe5\\x76\\xa3\\xa8\\x90\\x81\\xbc\\x9b\\x51\\x91\\xec\\x36\\xfe\\x89\\x97\\xa6\\xd8\\x85\\x1b\\x2f\\xb0\\x8f\\x52\\x16\\x1f\\xa6\\xd1\\x74\\xef\\xe1\\xc1\\x4c\\x7a\\xe8\\x2a\\x95\\x76\\xaf\\x65\\xaf\\x47\\xda\\x82\\xaf\\xb0\\x0d\\x6b\\xae\\xdd\\x05\\x75\\xde\\x84\\x11\\x90\\xcf\\xe1\\x6c\\xa8\\xe6\\x00\\x12\\x9b\\x10\\x04\\x42\\x6d\\x36\\xc1\\x85\\x7c\\x2b\\xe6\\xf7\\x47\\x5a\\x90\\x01\\x47\\x82\\x41\\xf7\\x48\\xe7\\x95\\x65\\x39\\x7d\\x16\\xc1\\x04\\x6a\\xe4\\xbf\\xf7\\x4b\\x1c\\x47\\x80\\xa4\\x93\\xbf\\x6e\\xa3\\x07\\x68\\x9a\\xde\\x71\\x83\\xf2\\x6c\\x8f\\x52\\x09\\xa5\\x8e\\x45\\xe8\\x3e\\x4a\\xff\\x88\\xe8\\xc3\\x16\\xff\\xfe\\x07\\xf4\\xc4\\x84\\x33\\xb9\\x35\\x5e\\x55\\x41\\x41\\xef\\x1c\\x9c\\x89\\xdd\\xb0\\x71\\x9f\\xc6\\xc3\\x80\\x0e\\xfb\\xe2\\xa5\\x57\\x8a\\x7d\\xf7\\x1c\\xbc\\x33\\x7a\\x27\\x3b\\x16\\xbd\\x33\\xca\\x21\\x62\\x1b\\x00\\x0f\\xfb\\xd0\\xc7\\xa3\\x97\\x66\\x23\\x7b\\xcc\\xbb\\xce\\x26\\xce\\x9e\\x4d\\x9e\\x4b\\x48\\x42\\x39\\x22\\x46\\xa9\\x40\\x07\\x7a\\xda\\xca\\x44\\xeb\\x58\\x19\\x36\\xa6\\xd0\\x03\\x8d\\x09\\x85\\xb2\\x0a\\x14\\xf6\\x0a\\x96\\x6a\\xf0\\xa7\\xd8\\x10\\x0a\\x3e\\x09\\xc5\\x25\\xa0\\x58\\x28\\x31\\x65\\x95\\xc8\\x11\\x8d\\x92\\xe4\\xf9\\x4a\\x90\\x35\\x1e\\xa2\\x5c\\x9c\\x21\\x49\\x6d\\x4a\\x6a\\x69\\xb5\\x73\\x63\\x99\\x24\\x14\\x6c\\xd9\\x60\\x54\\xfb\\xe3\\x81\\x6f\\x7c\\x63\\xf8\\xfc\\xd2\\xdc\\xdf\\x9d\\x64\\xe1\\x74\\x74\\xaa\\x70\\xf4\\xf4\\xa5\\x29\\xff\\x40\\x6c\\x60\\x88\\xfd\\x34\\xd4\\xe3\\xcd\\xd1\\x01\\x20\\x33\\x4e\\x5f\\x0a\\x24\\x3b\\xce\\xb3\\x5f\\xe8\\x8d\\xf5\\x36\\x5e\\xfc\\x86\\x96\\x07\\x88\\xda\\x27\\x4e\\x36\\xfe\\x0b\\xdc\\x3e\\xf5\\xd0\\xa9\\x23\\x05\\x7f\\x30\\x1e\\x18\\x9a\\x84\\x9a\\x5d\\xe8\\x48\\x04\\x1f\\x3a\\x35\\x3e\\x9a\\x18\\x18\\x5c\\x3a\\x2f\\xb6\\x0a\\x97\\x62\\x50\\xeb\\xd3\\x5a\\x57\\x08\\xb5\\xbf\\x03\\xab\\xf5\\xff\\xec\\x7e\\xd5\\x3c\\x14\\xea\\x15\\x9a\\xe3\\xf5\\x76\\xfb\\x7f\\x75\\x15\\xbf\\x7a\\x49\\x68\\x8c\\xb7\\x34\\xdb\\xdf\\x43\\x92\\xf1\\xba\\xc3\\x45\\xb4\\x74\\x04\\x28\\xc9\\x59\\xe9\\x64\\xcb\\x2e\\x06\\x0c\\x72\\x93\\xd0\\x08\\x19\\x50\\x1f\\x12\\x3d\\x39\\x1f\\xc2\\xae\\x68\\x7b\\x37\\xcd\\x8d\\x08\\xc7\\xaa\\x65\\x5f\\x60\\x9d\\x37\\xf7\\x60\\x6f\\x67\\x28\\x25\\xe5\\x85\\xfc\\x35\\x69\\x6e\\xd0\\xdb\\x27\\x27\\x22\\xf1\\x58\\x24\\x01\\x18\\xc8\\xfb\\x69\\xb0\\x37\\x3e\\x47\\xbb\\x22\\x43\\xa3\\x03\\x38\\xd0\\x60\\x03\\xe3\\x03\\x56\\x09\\xc1\\xdf\\xde\\xcc\\xfe\\x03\\xe9\\x41\\xb8\\x37\\xd1\\xd3\\x93\\x90\\x7b\\xbc\\x1f\\x09\\x74\\x57\\xd0\\x28\\xa0\\xd2\\x1d\\x68\\x1e\\x7d\\xb9\\x0e\\xa0\\xe0\\xcb\\x78\\xbc\\xcc\\x53\\x9f\\xb8\\xea\\x09\\x56\\x43\\x05\\xdc\\xae\\x67\\x95\\x83\\x72\\x2d\\x30\\x26\\x69\\xb7\\x12\\xb0\\x75\\x62\\x24\\x1f\\x89\\xef\\x1c\\xdd\\x2b\\xa7\\x50\\x9a\\x67\\xb5\\xcd\\x8a\\xbd\\x22\\x79\\x1f\\xac\\xb2\\xf1\\xc6\\x37\\x59\\x69\\x53\\xfc\\x44\\xa3\\xac\\xe3\\xe7\\x07\\xc7\\xd1\\xb8\\x45\\x5b\\x55\\xdb\\xc3\\x5c\\xd4\\x86\\xf6\\xef\\x80\\xbe\\x91\\x43\\x5e\\x4f\\x05\\x6d\\x02\\x66\\xca\\xad\\xc0\\xcd\\x56\\x61\\x37\\xcb\\x09\\x2d\\x21\\xb7\\x40\\x24\\x98\\xce\\x8d\\xc1\\xc5\\xb2\\x03\\x03\\x03\\x01\\xc1\\x56\\x92\\xcf\\x9b\\x13\\x4d\\x19\\x56\\xb3\\xe4\\xcc\\x75\\x6b\\x40\\x2e\\xde\\x7c\\x32\\x2d\\x6c\\x5f\\x8b\\x72\\x0c\\x9d\\xbd\\x63\\x4c\\xa2\\xf9\\xf5\\xc9\\x1d\\x2a\\x22\\xd6\\x84\\xe4\\xa2\\xe9\\x96\\xef\\x72\\x53\\x16\\xbd\\x6d\\x0d\\xfe\\x9e\\x8a\\xd5\\xe0\\x6f\\x6d\\x4b\\x03\\x54\\x48\\xfd\\xf3\\x35\\xa0\\xee\\xd1\\xd6\\xac\\xbd\\x50\\xc1\\x46\\xd1\\x23\\xf5\\x90\\xf4\\x23\\x4f\\x38\\xf7\\xdf\\xa5\\xd1\\xc1\\xfe\\xb2\\xdc\\xb1\\xfd\\xc3\\xd6\\xc0\\x09\\xa5\\x6c\\x30\\x69\\xa7\\xa7\\xdc\\x5a\\x62\\x81\\xfa\\xd0\\xfc\\xf5\\x4b\\x94\\x40\\x84\\x64\\xec\\xf0\\x96\\x11\\x78\\xbf\\xfe\\x5d\\xcb\\xa3\\x79\\x2a\\x65\\x53\\xcb\\xd7\\x2f\\xae\\x5e\\x8d\\xbd\\xb7\\x10\\x7b\\x6e\\xfb\\xe2\\x2a\\xd5\\xd8\\x7b\\x0a\\xb1\\x9d\\x0a\\x6c\\xb3\\x90\\x63\\xc8\\x72\\x92\\xce\\x8e\\x18\\xd1\\x2c\\x89\\xb6\\x64\\x12\\x6d\\x81\\xed\\x1c\\x7b\\x5f\\xf4\\x9e\\x23\\xc5\\x62\\x7e\\xb9\\xf7\\x21\\xd8\\xe2\\x74\\xc2\\x6e\\x19\\x9b\\x3d\\x72\\x8f\\x51\\x2a\\x1a\\xcb\\xf9\\x58\\xec\\xd0\\x72\\x3e\\x19\\x8d\\x5b\\x57\\x24\\x21\\x56\\xb4\\x47\\x0a\\xf3\\x98\\x9f\\xb0\\xc2\\x16\\xb6\\x81\\x69\\x86\\x61\\x0b\\x4d\\xf6\\xa6\\x36\\xb0\\x66\\x34\\x3a\\xac\\xb4\\xe1\\x35\\x3b\\x84\\x78\\x33\\x48\\x4f\\x6d\\x1b\\x68\\x66\\x53\\x88\\x19\\x56\\xdd\\x1a\\x5f\\x06\\xde\\x90\\x85\\x9c\\xd2\\x69\\x71\\x11\\x59\\xcb\\x48\\x11\\x22\\xa9\\x54\\xc2\\x7e\\x62\\x19\\xaa\\x86\\xc1\\x8a\\xc4\\x75\\x34\\xef\\x76\\x49\\xbd\\xdc\\x16\\xab\\x10\\x10\\x7f\\xb4\\x5e\\xb6\\x7e\\x67\\x32\\xa5\\xb1\\x31\\xc5\\xfc\\xe2\\xaf\\x9d\\x9b\\x90\\x67\\x0a\\xad\\xf9\\x02\\xa4\\x93\\x21\\x85\\x56\\xe6\\xa0\\x0c\\x29\\x31\\xa7\\x30\\xdf\\x59\\x88\\xb4\\x73\\x05\\x48\\xe7\\x9b\\x8e\\x24\\x32\\x74\\x2b\\x1d\\xbd\\xf5\\x26\\x1c\\xba\\xee\\x98\\xd8\\xe3\\x5f\\x3c\\xb2\\xe8\\xdf\\x63\\x9d\\xf4\\x0e\\xa4\\x62\\x53\\xb0\\x24\\x4e\\xc5\\x52\\x03\\xbd\\x4c\\xe2\\x8a\\x03\\xad\\xc7\\xab\\xe8\\x8a\\xdc\\xa3\\x0f\\xa5\\x40\\xd5\\xd1\\x23\\xc3\\x89\\xb7\\x07\\x9a\\x21\\x15\\x9b\\x74\\x3a\\x27\\x63\\x29\\x9c\\x8d\\x19\\xbc\\xf7\\x6e\\xb6\\xc1\\xfe\\x5a\\x0a\\x59\\xf6\\x3f\\x9e\\x6c\\xd6\\x03\\x06\\xb5\\x19\\xf4\\x67\\x9f\\x47\\x9a\\x49\\x66\\x7f\\x29\\x33\\xef\\x4c\\x6f\\xef\\x97\\x47\\xce\\xc4\\x12\\x7d\\xc1\\xdb\\x8d\\x5b\\x33\\x17\\x12\\x31\\x7f\\x6f\\xd9\\x15\\x90\\xf1\\x72\\xaf\\x3f\\x96\\xb8\\x90\\xb9\\xd5\\xb8\\xb5\\xbf\\x27\\x11\\x3b\\x33\\x22\\x44\\x82\\xa2\\x3e\\x15\\x40\\xe0\\x75\\x12\\x9e\\xc8\\xe8\\xdc\\x91\\x56\\x53\\x41\\x3b\\xf0\\x0a\\xf8\\xf6\\xb7\\x59\\x58\\x2a\\xc2\\x89\\xd1\\xb2\\xc8\\x4c\\x58\\xfb\\xbc\\x88\\xa7\\xe2\\xe0\\x58\\x0d\\xc9\\x80\\x9c\\x64\\x12\\x6a\\xb5\\x9e\\x65\\x7d\\x04\\x30\\xe7\\xfe\\x23\\xc9\\x21\\x6a\\x2d\\xec\\x51\\x64\\xaf\\xf0\\x9c\\xd7\\xdc\\x4b\\xb4\\x24\\xe7\\x32\\xeb\\xb6\\xae\\x83\\xd6\\x26\\x31\\xfa\\xa4\\x60\\x79\\xd7\\x16\\x11\\xd8\\x06\\x8e\\x66\\x00\\x35\\xd3\\x5a\\x9b\\xea\\x57\\xe8\\xaf\\x8c\\xfd\\x80\\x66\\xb0\\x0d\\x1e\\x1d\\x0e\\x22\\x27\\x25\\x9e\\x4f\\x28\\x89\\xef\\x53\\xff\\x85\\xe7\\x23\\x0b\\x35\\xd3\\xf6\\xe3\\xca\\x12\\xdf\\x8e\\x29\\x2b\\xdc\\x75\\x57\\xcc\\x34\\xdf\\x03\\x5b\\xec\\xae\\x8f\\x93\\xe3\\xa1\\xe5\\xec\\x24\\x62\\xf8\\x11\\x82\\x33\\x61\\x4f\\x6e\\xe7\\x67\\xc1\\x71\\xfa\\x36\\x63\\xf5\\xa1\\x47\\x54\\xdd\\x34\\x37\\x63\\xf3\\x6d\\x5d\\x69\\x7b\\xb9\\x5d\\xb4\\x1f\\x9a\\x27\\x69\\xdb\\x25\\x2a\\xe0\\xa7\\xd5\\x30\\x21\\x61\\x35\\x70\\xa6\\x42\\xe0\\x7b\\x80\\xbf\\xa7\\x51\\x25\\xa2\\x17\\xe1\\xfd\\x20\\x2d\\x77\\xfa\\x93\\x96\\x91\\x23\\xfa\\x96\\x9c\\x08\\xad\\x86\\x5e\\x61\\x12\\xf1\\x25\\xac\\xaa\\xeb\\x8a\\xd2\\xa8\\x31\\x89\\x1a\\x46\\xb4\\x8f\\x76\\x90\\x55\\x02\\x45\\x9f\\xcb\\x36\\x97\\x1f\\xb5\\x69\\xce\\x4c\\xa4\\xc9\\x23\\x8f\\x18\\x6b\\x6b\\x00\\xdd\\x6c\\x99\\x34\\x43\\x4b\\x1a\\x97\\x5f\\x25\\x35\\x1b\\x2b\\x42\\xb5\\xec\\xb6\\x15\\x9e\\x48\\x26\\x59\\xd5\\x54\\x6b\\x65\\x6b\\x8f\\x41\\xb3\\xd3\\xf5\\x77\\xf2\\x90\\xc9\\x04\\x69\\xd8\\x58\\xc3\\x74\\x6a\\xcb\\x15\\x66\\x10\\x7f\\x70\\xaf\\xaf\\xc3\\x04\\x83\\x45\\x48\\x7c\\x8d\\x2a\\x31\\x0d\\xf7\\xd1\\x09\\x5d\\xde\\xd9\\xeb\\x74\\xe8\\xd3\\x7f\\x81\\xbb\\x18\\xf9\\xad\\x95\\xd9\\x3f\\xc2\\x1d\\x78\\xd4\\xcd\\xa9\\x5a\\x86\\x37\\xaa\\x48\\xc9\\x76\\xc4\\x1e\\x8d\\xb1\\x8b\\xf1\\x6b\\xd2\\x63\\xf1\\x9b\\x9f\\x79\\x26\\xf6\\xcc\\x9f\\xe3\\x79\\x8c\\x7e\\x7a\\xf3\\xaf\\x3d\\x1b\\x7b\\xb6\\xcd\\xf3\\x27\\xce\\x3d\\x7f\\x02\\x30\\x4d\\x6f\\xe3\\x7a\\x43\\x54\\x19\\xbe\\x95\\xab\\xba\\xb2\\xc9\\xeb\\x26\\x54\\x46\\x3f\\x1f\\x53\\xdf\\xec\\x72\\x53\\x2b\\x97\\x45\\x89\\x8d\\x2a\\x25\\x36\\x4b\\x6c\\xb0\\x8b\\x00\\xba\\x3c\\x19\\x19\\x05\\x70\\xb6\\xa3\\xee\\x5b\\xb1\\x73\\xd6\\x51\\x7a\\x03\\xbd\\xed\\x81\\xc2\\xef\\xfe\\x6e\\x21\\x56\\x2e\\xb7\\xc4\\x38\\xb0\\xec\\x68\\x18\\xa6\\xb2\\xf1\\xff\\x5b\\xd0\\x16\\xe0\\x9b\\xcd\\xf4\\x29\\xf7\\xf4\\x05\\x9e\\xa6\\x3d\\x46\\x36\\x9b\\x3a\\xf3\\x13\\x67\\x46\\x69\\xd8\\xbf\\x12\\xec\\xee\\x0e\\x76\\x7f\\xfd\\x27\\xce\\xfc\\x04\\x2b\\xd2\\xd8\\xdf\\xdf\\x8d\\x57\\x48\\x1a\\xc3\\xbd\\x60\\xa6\\xa8\\xae\\xb6\\xa4\\xda\\x56\\x63\\x70\\xb3\\x16\\x8e\\xb3\\x25\\x9a\\x14\\xe5\\x30\\x61\\x2f\\xa3\\xf9\\x68\\x22\\xec\\x3f\\x03\\x00\\x3a\\x67\\xfc\\xe1\\xc4\\x40\\x32\\x39\\x00\\xa7\\x25\\x30\\x46\\x45\\x7b\\x37\\x85\\xf6\\xfc\\xb2\\x70\\x97\\xf5\\xa3\\x92\\x60\\x4f\\x4f\\x38\\x71\\x31\\x29\\xc3\\x71\\xd1\\xe6\\x90\\x77\\xe2\\x52\\x61\\xfb\\x91\\x5c\\x22\\xfb\\xca\\x85\\x4d\\x72\\x60\\xe8\\x8d\\x46\\xf2\\x14\\xb3\\xe2\\xd4\\x74\\x86\\x20\\xb0\\x56\\xdf\\x25\\x4a\\xc1\\x69\\x2e\\x14\\x71\\x5f\\x3c\\x9d\\xf2\\xf8\\x8e\\x58\\xe2\\xa7\\x73\\xbd\\xf8\\x4d\\x2f\\xa5\\xf4\\xd4\\xbb\\x48\\xba\\x40\\xf8\\xa0\\x93\\x4e\\x4b\\x4f\\xc3\\x71\\xbf\\x3d\\x32\\x93\\xe2\\xf9\\xe9\\xc5\\xd0\\xc1\\xd9\\xdd\\x99\\xcc\\xee\\xd9\\x83\\x73\\x7b\\x0f\\xef\\x1a\\x9c\\x9e\\x3c\\x54\\x18\\x9a\\x39\\x34\\x31\\x71\\x68\\x26\\x7b\\xd3\\xd2\\x92\\xe4\\x68\\xe6\\x31\\x40\\x54\\xe9\\x92\\x93\\x63\\x18\\xc8\\xa9\\x0c\\xee\\x94\\x60\\xcc\\xa1\\xaa\\x01\\x1b\\xdf\\x22\\x3b\\xe9\\xb0\\xca\\x60\\x8e\\xe9\\xc9\\x79\\x45\\x4f\\x84\\x75\\xef\\xa8\\x57\\x0f\\x27\\x74\\x65\\x7e\\x72\\xda\\xb1\\x32\\x7b\\x30\\xb4\\x38\\x9d\\x8f\\xc7\\x0f\\xef\\x9d\\xa3\\x62\\x1f\\xd6\\xc7\\xf7\\x4c\\x86\\x12\\xda\\x60\\x28\\x34\\xa8\\x25\\x42\\x93\\x7b\\xc6\\x75\\x07\\xbb\\xf1\\xd0\\xcc\\x50\\xe1\\xd0\\xe4\\xf4\\x60\\x74\\x69\\xe9\\xa6\\x2c\\x56\\x46\\xfa\\xbe\\xfb\\x0f\\xd8\\x78\\x7b\\x20\\x27\\xb5\\xe5\\xc3\\x2a\\xf1\\xab\\xdc\\x79\\xb7\\xa0\\xb6\\xa6\\x98\\x9c\\xca\\x25\\x20\\xbf\\x7e\\xb6\\x1f\\x85\\x7b\\xe3\\xf1\\xc1\\xdb\\xbb\\x7a\\xac\\xb9\\xa6\\x6a\\x7e\\x9d\\x88\\xee\\x1b\\xce\\x0e\\xc6\\xc7\\x97\\x00\\xfd\\xbc\\xff\\x75\\x5e\\x3e\\xdf\\x98\\xbc\\x9c\\x79\\xf6\\x55\\x8a\\x62\\x91\\xe4\\x76\\xa6\\xa4\\x60\\x00\\x9c\\x0e\\xcb\\x3f\\x38\\x8b\\x0d\\x89\\xa4\\x12\\xb7\\xdc\\x67\\x77\\xdd\\x17\\x7f\\xfd\\xe8\\x34\\xe8\\xcc\\xcc\\xf9\\xf8\\x44\\x76\\x97\\x57\\x77\\xfd\\xbb\\xec\\x6e\\xaf\\xee\\xbd\\x69\\x61\\x2f\\x5d\\xfb\\xe5\\xd7\\xc7\\xef\\x1b\\xa2\\xa3\\xe9\\xf4\\xc8\\x7f\\x98\\x4e\\xcf\\x9f\\xa0\\x13\\xa9\\x7b\\xd3\\x6c\\xdd\\xc7\\x39\\x61\\xc4\\x9d\\x20\\xab\\x93\\x39\\x69\\x41\\xda\\x23\\x49\\x76\\x24\\x7e\\xb7\\x1d\\xfa\\xc1\\x6d\\x87\\xf0\\x97\\xf1\\x2a\\x5c\\xa1\\xa0\\x6f\\x14\\xb2\\x47\\xe6\\xa1\\x09\\xe6\\xe6\\x9b\\x61\\x98\\x0d\\x1d\\x43\\xf0\\x33\\x09\\x17\\x09\\x8a\\xa4\\x42\\xe7\\x30\\x9c\\x8b\\x48\\xf0\\xeb\\x26\\x85\\xd1\\xe5\\xee\\x78\\x48\\xa9\\x40\\x5c\\x7c\\xb8\\x87\\x49\\xeb\\x18\\xd7\\x9f\\xf3\\x3f\\x78\\xaa\\xf3\\x58\\xfe\\x4c\\xc2\\xcb\\x3c\\x52\\x73\\x47\\x3b\\x4f\\x47\\xb2\\x8d\\x51\\x8a\\xa1\\x40\\x1e\\x0f\\x39\\x2b\\x80\\x5e\\xa0\\xcd\\x7a\\x9c\\xe2\\xcd\\xc2\\xe6\\xc7\\x9a\\xdb\\x90\\x08\\x50\\xbc\\x66\\xd6\\xeb\\xb4\\x66\\xe3\\x2c\\x66\\x82\\x57\\x22\\x85\\x70\\x85\\x3f\\x03\\x13\\xf8\\x92\\x49\\xe4\\xe1\\x47\\x49\\xc3\\xe4\\xf5\\xbd\\x06\\xd7\\x34\\x8a\\x1e\\xcd\\xe9\\xc2\\x22\\xab\\x50\\x8d\\x3a\\x39\\x1e\\x94\\xe5\\x05\\xc1\\x6d\\xee\\xb5\\x4a\\x05\\xf8\\x5f\\x7d\\xa3\\x52\\x31\\xcd\\x7f\\xa9\\xa4\\xd7\\xb5\\x45\\x67\\x22\\x8d\\xb4\\xe1\\xde\\x39\\xda\\xa5\\xf4\\xfb\\xc6\\x13\\x80\\x02\\x5a\\x24\\x64\\xa8\\x22\\x26\\x89\\x1c\\x97\\xcf\\xd3\\x95\\x5f\\xa5\\x2b\\xd7\\x24\\x3a\\x61\\xfa\\x16\\x79\\xb6\\xc2\\xb5\\x01\\xcc\\x82\\x27\\xca\\x71\\x3c\\x47\\x98\\x75\\xe0\\xb0\\x80\\x3e\\x01\\x4d\\xd5\\xdc\\xfe\\x20\\xa8\\x25\\x35\\x10\\x79\\x76\\x47\\xc2\\x5a\\x38\\xac\\x1d\\xa4\\x52\\x58\\x5f\\x70\\x10\\x22\\xb2\\xa6\\xa0\\xc1\\x86\\xbb\\xa3\\xd1\\x64\\x57\\x32\\xfa\\x7e\\x4d\\x63\\xab\\x54\\x50\\x9b\\xc4\\x2f\\xba\\x55\\x6e\\xee\\x16\\x74\\x21\\x9b\\x22\\x6e\\xf9\\x62\\x85\\x82\\xfd\\xd9\\x24\\x42\\x77\\x0a\\x5f\\x58\\x1a\\xbf\\x3a\\x69\\x19\\x06\\x89\\x06\\x81\\xdc\\xf8\\xf4\\xc8\\x69\\x4d\\xfe\\x50\\x18\\x49\\x62\\x8e\\x49\\x89\\xe5\\xbe\\x5b\\x76\\xa3\\xe0\\x66\\x21\\x36\\xbe\\x77\\xe9\\x02\\x48\\x72\\x8c\\x92\\xe3\\x9c\\xc1\\x8a\\x17\\x27\\x22\\x85\\x3a\\xc8\\x7a\\x16\\xe2\\xe3\\x08\\x19\\xb6\\x54\\x72\\x9e\\x3b\\xdd\\x8c\\x6f\\x5b\\xa3\\xb7\\x8c\\x16\\xb2\\x2a\\xc9\\x11\\xea\\xab\\x46\\xbd\\x6e\\xac\\x96\\x8a\\x10\\x9c\\xa6\\x6a\\x62\\x5b\\x9a\\xf0\\x8c\\x26\\xb7\\xf5\\x23\\xa9\\x31\\x76\\x47\\x35\\x0b\\x6a\\x58\\x67\\xd2\\x86\\x54\\x44\\xa0\\x8b\\x35\\x8c\\x4e\\x07\\x07\\xc5\\x6b\\xb0\\xb1\\xae\\xe2\\xf2\\x32\\x80\\xf2\\x2d\\x33\\xe0\\x7b\\x8b\\xb8\\xc1\\x0f\\xed\\x9c\\xc8\\x87\\xbd\\xf9\\x5b\\xb3\\xf9\\x9b\\xba\\x7d\\x6b\\xd3\\x12\\x96\\xda\\x35\\xdb\\xf4\\xdb\\x6b\\x61\\xa2\\xec\\x64\\x05\\x7b\\x00\\x2c\\x40\\x67\\x38\\x5c\\xc1\\x66\\x23\\x58\\x56\\x44\\xf3\\xcf\\xa8\\x5e\\x23\\x0b\\xf0\\x4f\\xb7\\x5b\\xc1\\xb6\\xcf\\xb1\\xbd\\xad\\x39\\xb6\\x65\\x8a\\xa8\\x69\\x76\\xaf\\x80\\xc1\\x54\\x35\\x4d\\x1b\\x46\\x43\\x72\\xb5\\xad\\xd4\\x2a\\x45\\x69\\x52\\xda\\x35\\x4e\\x2a\\x5c\\xdb\\xd0\\x6e\\x11\\xfa\\x41\\x4d\\xc3\\xac\\x36\\xc4\\x0e\\xf0\\x15\\xd3\\xdc\\xa4\\xe9\\x8d\\xc1\\xdb\\xe1\\xae\\x98\\x85\\x1d\\xc8\\x8c\\x8d\\xf5\\xf5\\x62\\x53\\x92\\x04\\x0d\\xdc\\x40\\x9a\\xa5\\x0a\\x72\\xcf\\x62\\x0d\\xf4\\x4e\\x75\\x7c\\xce\\x52\\x89\\x8d\\x97\\x80\\xb8\\xa0\\x59\\x79\\x0e\\x5a\\xf6\\x3f\\x4a\\x1e\\xce\\xf5\\x91\\x5a\\xb6\\x60\\x49\\x09\\x0b\\x4c\\xba\\x98\\x39\\xf9\\xf9\\x59\\x50\\xc3\\xce\\x3e\\x7e\\x3b\\xcb\\x5f\\x04\\x6e\\xf6\\xe4\\x3f\\xce\\xbe\\xf7\\xee\\xbb\\xdf\\x3b\\xfb\\xb8\\xc4\\x9a\\x51\\x93\\x7a\\xc8\\x4e\\xb6\\x35\\x19\\xe5\\x66\\xd9\\x63\\xb7\\xdd\\xd6\\x1d\\x22\\xb8\\xb2\\xab\\x21\\xf6\\x8e\\x77\\xbc\\xa3\\x9f\\x1a\\x57\\x72\\x34\\x7f\\xe3\\xe2\\x14\\x4c\\x16\\x5c\\xe8\\xda\\x7e\\x5a\\x04\\xf0\\x54\\xd6\\x2d\\xfc\\x1e\\x20\\x51\\xd6\\xff\\xba\\x99\\x85\\xd4\\xd9\\x6c\\x5d\\x6e\\x65\\x1d\\x96\\x62\\x84\\xa3\\x3b\\xcd\\xa3\\x29\\xa4\\x73\\xf3\\x68\\xb8\\x12\\x94\\xc1\\x80\\xd4\\x93\\xc5\\x63\\x90\\xd6\\xa8\\x70\\x12\\x02\\xa7\\x34\\x8f\\xac\\xa0\\x49\\x50\\x96\\x22\\xda\\x42\\xbf\\x41\\x93\\x66\\x38\\x87\\x6b\\xf6\\x5b\\xbd\\xed\\x98\\xc7\\x73\\xcc\\x39\\xb6\\x37\\xb1\\xaf\\x33\\xec\\x74\\xde\\xed\\x74\\xce\\x0e\\x76\\x9f\\xed\\xde\\xd5\\x19\\xdc\\x9b\\x48\\xec\\x0d\\x76\\x9e\\x3e\\xe6\\x74\\x1e\\xf3\\x54\\xf1\\xda\\x63\\x78\\xfe\\x79\\xae\\x9d\\x1c\\x8c\\x0d\\x2a\\xe3\\x2f\\x04\\x17\\x46\\xcf\\x2a\\xe3\\x0a\\x7c\\xde\\x3a\\x36\\x3e\\xbe\\x3e\\x3a\\x12\\x5c\\x58\\x5b\\x08\\x8e\\x8c\\x6a\\x70\\x65\\x30\\xf6\\xf3\\x70\\x6d\\x1c\\x4f\\xcd\\x76\\x9d\\xa1\\x57\\x8a\\x5a\\x18\\x22\\x88\\x10\\x11\\xc8\\x6f\\x89\\xbb\\xc1\\x60\\x25\\xf9\\x7a\\xec\\xeb\\x27\\x57\\x75\\x9b\\x20\\x45\\xbd\\x7e\\xe5\\x24\\x5c\\x6b\\xac\\x57\\x2a\\xa2\\xda\\xcf\\x03\\xb9\\xc2\\x77\\xac\\x2c\\x5a\\xf3\\xb5\\x90\\x45\\xd2\\xb4\\xf1\\x55\\x8e\\x96\\x08\\x0c\\x0c\\x62\\x6d\\x1c\\xf8\\x95\\x95\\x11\\xdf\\x95\\x87\\x07\\xe2\\x07\\xff\\x46\\xe3\\xcf\\x2e\\xd3\\x49\\xba\\x6d\\xdb\\x5b\\xbf\\xad\\x1c\\x21\\x08\\xbd\\xd2\\x74\\x08\\x32\\x71\\x6d\\x6e\\x95\\xf7\\x65\\xa8\\xc4\\x18\\x94\\x79\\x91\\x2a\\x52\\x5c\\x5f\\x67\\x92\\x50\\x1e\\x56\\x83\\xca\\xe4\\x55\\x81\\xd1\\x2b\\x94\\xdc\\x45\\x3d\\x8b\\xf3\\x0b\\xd7\\xb1\\xb8\\x6f\\x2f\\x7d\\x69\\x8b\\xd9\\xbd\\x58\\xba\\xbe\\xbd\\xe5\\x3d\\x2f\\x5f\\x9c\\x79\\xfa\\xa4\\x01\\x6e\\x51\\x42\\x96\\x46\\x72\\x96\\x13\\x99\\xaa\\xea\\xd8\\x11\\x58\\x97\\x5d\\xea\\x8b\\x87\\xd4\\xde\\x3e\\x88\\xec\\x17\\x8a\\xf7\\xde\\xf2\\xf9\\xed\\x70\\x76\\x7f\\xa1\\x0f\\x30\\xb6\\xfb\\xfa\\x7a\\xf1\\xc6\\x5b\\x98\\x6f\\x3b\\xd0\\x5d\\x89\\xf1\\x3a\\x38\\x24\\xe2\\xa0\\xb7\\xb2\\x49\\x84\\x4e\\xce\\x04\\x34\\x57\\x98\\xff\\x34\\x66\\x8a\\x88\\xc4\\xe0\\x4c\\x27\\x7a\\xe2\\x3a\\xa4\\x1e\\xbe\\x66\\x65\\x03\\x82\\x1b\\xc3\\x36\\xfc\\x2b\\xf9\\x2d\\x84\\x36\\x71\\xb0\\x8d\\xbf\\xd3\\xe8\\x32\\xd3\\x44\\x1e\\xd6\\xd1\\xf4\\x65\\xa4\\x59\\x91\\xf1\\xf5\\xca\\x9e\\x15\\x71\\x8a\\x4c\\x42\\x19\\x4d\\x07\\x14\\x09\\x3d\\x22\\xae\\xf6\\x87\\x91\\xb5\\x6a\\xac\\x17\\xc9\\x03\\x87\\xe9\\x25\\xd3\\x5c\\xe7\\x45\\xe9\\xf5\\xba\\xce\\xcd\\xd0\\x7e\\x30\\x23\\x53\\xf0\\x1d\\x14\\x30\\xeb\\x28\\x62\\x5f\\x5a\\xa6\\x19\\x5d\\x56\\x48\\x2c\\x59\\xe0\\x6b\\x2f\\x97\\x17\\xb2\\x50\\x19\\x6c\\x67\\xe1\\xa8\\x08\\x1b\\x1e\\xc0\\x29\\x0a\\x5e\\xe1\\x03\\x87\\x0a\\x26\\xa2\\xcc\\xa3\\x9b\\xdb\\xae\\xa6\\x0b\\x22\\xf9\\xde\\x2e\\x7a\\x69\\xf2\\x8a\\xf7\\xc6\\x96\\x7a\\x17\\x4e\\x2f\\x2c\\x8c\\x46\\xc2\\xef\\x68\\xbd\\xca\\xe7\\x89\\xc2\\x7a\\x2a\\xb6\\x14\\x8e\\x8c\\x2e\\xc0\\xd7\\xbd\\xff\\x43\\xb4\\xd1\\x2b\\xc7\\xf1\\xeb\\x1f\\x88\\x9c\\x45\\x88\\xf4\\xdf\\x25\\x4d\\xb5\\xa4\\xfe\\x48\\x0a\\xb6\\x5e\\xeb\\x7c\\x0b\\x44\\x3b\\x04\\x04\\xb9\\x60\\x83\\x68\\x23\\x1c\\x91\\x0b\\xe7\\x95\\x89\\x25\\x1d\\x28\\x38\\x7d\\x69\\xe2\\x8a\\x6d\\x7f\\xb8\\x41\\xfe\\x57\\x98\\x58\\x4e\\x9d\\x13\\xde\\xa3\\x53\\x18\\x6d\\x60\\xea\\xa8\\x77\\xc2\\x0e\\xf4\\x2f\\xca\\xa7\\x69\\xb6\\xdb\\xaa\\x7d\\x28\\xec\\x80\\xd8\\x21\\xe8\\x1d\\x8a\\x9b\\x01\\x3b\\x4c\\x05\\xf5\\x0d\\x0a\\x93\\xb8\\x3e\\xb7\\x0d\\xb5\\x83\\xca\\x84\\x3f\\xd6\\x70\\x48\\x50\\xe6\\x41\\xe9\\x06\\x01\\xd1\\x57\\x0d\\x71\\x79\\xa5\\x2c\\x07\\x61\\x91\\xcc\\x03\\x10\\x00\\x9e\\x66\\x0a\\x85\\x39\\x98\\x6e\\xf2\\x78\\x80\\x6a\\x36\\x38\\x85\\xe1\\xaf\\xa8\\xe4\\x93\\x8f\\x3f\\x41\\xa6\\x96\\x8b\\xb6\\x53\\x4c\\xce\\x58\\xc0\\x19\\x0f\\xaa\\x4e\\x87\\xe2\\x74\\x45\\x9c\\xbd\\x2e\\x8f\\xe6\\x71\\x79\\x3b\\x23\\x6e\\x87\\xe2\\x70\\xaa\\x8c\\xe1\\x17\\x0e\\x77\\xc4\\xe7\\xa1\\x2f\\x5c\\x3d\\xcd\\x2f\\x4e\\x1d\\xb8\\xdd\\xf1\\xf7\\xac\\xca\\x7a\\x96\\x69\\x9e\\x70\\xf8\\x9d\\xae\\xb4\\xdb\\xd1\\xe5\\x94\\x87\\x5c\\xae\\x21\\x97\\xa7\\xcb\\xe1\\x4e\\xbb\\x9c\\x7e\\xe6\\x75\\xc9\\xac\\x1f\\xbe\\x72\\x39\\xba\\xbc\\xce\\x41\\x97\\x6b\\xd0\\xd1\\xd1\\xe5\\x80\\x53\\x67\\xbf\\x53\\x76\\x78\\xd7\\x6e\\x3f\\xe0\\xed\\x61\\xd5\\xbf\\x77\\x34\\xd1\\x85\\x36\\x6c\\xe9\\xe3\\xf6\\x5e\\xbf\\x4d\\x46\\xab\\x2c\\xf8\\x53\\x9b\\x40\\x6f\\x95\\xb7\\xba\\x53\\xaf\\x9b\\x26\\x70\\x4e\\xff\\x6a\\x36\\x88\\x4e\\x1e\\xc3\\x89\\xe8\\xdf\\x90\\x14\\x17\\x30\\x50\\x94\\xa0\\xc8\\x26\\x37\\x19\\xcb\\x0a\\xd3\\x97\\xf3\\xcb\\xaf\\xda\\x11\\xc2\\x18\\x3c\\x08\\xf2\\x8e\\x26\\x3e\\x41\\x6d\\xc5\\x58\\x29\\xb7\\x10\\x56\\xc2\\x9a\\x6e\\x07\\x16\\xdc\\x14\\xbb\\x3e\\xc9\\xe7\\x20\\xf9\\xba\\x40\\x0c\\x4c\\xaa\\x99\\x46\\x3b\\x3a\\xc7\\xf4\\x6d\\x04\\x42\\x51\\xab\\x18\\xf3\\xed\\x20\\x0c\\xb7\\x4d\\x13\\xe0\\x84\\xfd\\x3c\\x9c\\xe3\\xec\\x46\\x59\\x76\\x3e\\xc5\\x65\\x09\\x2a\\x63\\xf3\\x1b\\x1a\\xfc\\x29\\xcf\\x3e\\x76\\x0d\\x78\\xdd\\x47\\x58\\x91\\x46\\xad\\x72\\x4b\\xe3\\x37\\xd8\\xe2\\x45\\xd1\\xaf\\x90\\xde\\xe6\\xf6\\x5a\\x4e\\xb7\\x92\\xda\\xa2\\xdd\\x64\\xc5\\xb5\\x6d\\x54\\x9b\\x45\\xce\\x41\\x76\\xc1\\x7b\\x7c\\x0d\\xe7\\x32\\xa2\\x2a\\x01\\xd4\\x13\\x80\\x46\\x11\\xfb\\x29\\xc0\\x2a\\x2b\\x2b\\xc5\\x95\\x85\\xcf\\x16\\xf9\\x8e\\x00\\xc5\\xef\\x6a\\xfc\\x2d\\xa6\\xac\\x47\\x6c\\x31\\xaa\\x0b\\xe9\\x79\\x5a\\x48\\x08\\x5c\\xd9\\x83\\x75\\x79\\xea\\x10\\xf0\\x3e\\x87\\x62\\x05\\xe0\\x7d\\x0a\\xc7\\x35\\xf6\\xc3\\xbb\\x2f\\x60\\x74\\x89\\x0b\\xbb\\x63\\x13\\x47\\x97\\x80\\x1b\\x3a\\x3a\\x7e\\x03\\x08\\x6e\\x7f\\xc0\\x48\\xe4\\xce\\x36\\x8f\\x03\\x89\\x91\\x55\\xc4\\x16\\x6e\\xb7\\x6b\\xa5\\xef\\xd2\\x8c\\xc8\\x28\\x96\\x2f\\xed\\x8a\\x1e\\x02\\xb0\\x82\\x36\\xeb\\x33\\x3b\\xb7\\x6e\\xf2\\xee\\x24\\xc4\\x6b\\xdb\\x50\\x46\\x25\\x25\\x0e\\xf7\\xe5\\x87\\x01\\xd5\\xdd\\x51\\x2f\\x82\\x60\\x16\\x7c\\xf1\\xc1\\x21\\xbc\\xb8\\x01\\x4a\\x73\\x05\\x63\\xa8\\x95\\x98\\x8e\\x3d\\xc3\\x00\\xc9\\x6d\\x0d\\xbe\\xd7\\x6b\\xad\\x48\\x1f\\x75\\x1e\\x2f\\x94\\x30\\x17\\xfc\\x6a\\xa1\\xf5\\x0f\\xaa\\xa1\\xe6\\x7f\\x9a\\xcf\\xfe\\xb4\\x19\\x89\\xed\\xff\\x58\\x82\\x64\\x26\\xb4\\xe9\\x6c\\x4d\\xfc\\xaa\\x51\\x12\\x4e\\x5e\\xb3\\x55\\xc4\\x92\\xe4\\x6e\\xca\\x13\\x7c\\x44\\x0d\\x25\\xa4\\xfd\\xa4\\x11\\xc5\\xc8\\xf2\\x1e\\x5c\\x92\\xa9\\xc0\\xf6\\xb0\\x10\\x5b\\x48\\x34\\xcb\\x21\\x5f\\x2d\\x58\\xc6\\x18\\xac\\xfa\\x86\\x89\\x94\\xe1\\xf5\\x1a\\xa9\\x89\\x37\\xe0\\xda\\xc4\\xd5\\x98\\x3c\\x15\\x96\\xa9\\x29\\xb0\\x62\\x4f\\x06\\xbb\\xba\\x82\\xe0\\xea\\xe4\\xaa\\x9b\\x7b\\xc2\\xe7\\xbb\\xba\\xce\\x87\\xf7\\x98\\x00\\xc6\\xc7\\x0c\\x21\\x76\\x44\\x2c\\xdc\\x0f\\x84\\x05\\x25\\x68\\xd4\\x3e\\xd8\\x0b\\xe0\\x9a\\x11\\xb9\\xa7\\x39\\x3e\\x38\\x0f\\xd9\\xd9\\xf2\\xa5\\x91\\x03\\x01\\x62\\x1f\\xd7\\x37\\x36\\xc0\\x9d\\x0e\\x16\\x43\\x0a\\x32\\xfb\\x83\\xe4\\xef\\xbf\\xdf\\x18\\xdc\\xdf\\xf7\\x1e\\x6c\\x48\\xcb\\x3c\\x52\\x8b\\x88\\xbf\\xa6\\x62\\x96\\x96\\x65\\x32\\xbd\\x38\\xf5\\x47\\x4f\\x23\\x49\\xf2\\xea\\x6a\\x62\\xd5\\x93\\x99\\xdb\\x7d\\xe6\\xcc\\xc3\\xa7\\x93\\x9e\\xfa\\x02\\x5d\\x84\\x6b\\x7e\\x4f\\xf2\\xf4\\xc3\\x67\\xce\\xec\\x9e\\xcb\\x78\\x70\\x3e\\x98\\x80\\x1a\\xfe\\x27\\x7a\\xe2\\x7d\\x94\\x67\\xdb\\x8a\\x4a\\x6c\\x67\\xb6\\xb5\\xa2\\x02\\x4f\\xd8\\x5a\\x4f\\x89\\x9c\\x16\\xd6\\xd3\\xe0\\x9f\\x91\\xf5\\xfe\\xd5\\x09\\xd9\\xad\\xbb\\x3a\\xf2\\x4a\\xaf\\xd7\\xe1\\x2d\\xc1\\x16\\xf0\\xe7\\x3b\\x5c\\xba\\x5b\\x9e\\x60\\x6c\\xe7\\xaf\\x5e\\x1e\\xc7\\x1f\\x77\\xa6\\xdc\\x1d\\x27\\x64\\x00\\x8b\\xf6\\x2c\\x74\\x74\\x2c\\x78\\xbb\\x15\\xa7\\x7c\\xa2\\xc3\\x9d\\x92\\x07\\xe5\\x9d\\xbe\\x10\\xac\\xd4\\x0a\\xd2\\x51\\xe9\\x14\\xd0\\x05\\x73\\x59\\x0b\\xe6\\x9c\\x70\\x58\\x91\\x2d\\x40\\x44\\x72\\x48\\x55\\x15\\xda\\x0b\\x77\\xa1\\x42\\x21\\x04\\x29\\xd4\\x1f\\x9e\\xa2\\x80\\xa7\\xf0\\x83\\x1d\\x69\\xc0\\x4b\\x2c\\xe1\\x76\\xc5\\x9c\\x9e\\x74\\xb7\\xcf\\xe3\\x70\\xef\\xf1\\x30\\x4f\\x5f\\x47\\x1a\\xae\\xb8\\xdc\\x09\\xb6\\xf3\\x57\\x99\\x96\\x0d\\x2b\\xe9\\x81\\x22\\x7f\\x17\\x74\\x0f\\xb8\\x3c\\x73\\x6e\\x47\\x6f\\xa7\\x3b\\xeb\\xf1\\x8c\\xca\\x72\\xaf\\xc3\\x93\\xf3\\xb8\\x06\\xdc\\x3b\\x7d\\xf1\\x7b\\xe2\\xd4\\x5f\\x89\\xd8\\x51\\xcf\\x24\\xfe\\xbc\\xa4\\x1b\\xe0\\xe8\\x96\\xa9\\xb6\\xce\\x9f\\x9b\\xb3\\x8d\\x50\\x7f\\x12\\x83\\x8a\\x1f\\xc8\\xc5\\x46\\xa7\\x96\\xd0\\x82\\x09\\x35\\xf4\\x1b\\x94\\x11\\xab\\x41\\xf7\\x1f\\x8d\\x45\\xa9\\xfb\\x17\\x8b\\xa7\\xf7\\x51\\x1d\\x25\\x8f\\x84\\xc0\\xaa\\x4f\\x38\\xb0\\x1c\\xb7\\xad\\xfd\\xdc\\x1e\\x5d\\x30\\x80\\x3c\\x8e\\x4d\\xd7\\xed\\x1d\\x1d\\xdd\\x2b\\x60\\x0b\\x1a\\xfa\\xba\\xae\\x6b\\xbf\\x37\\x7a\\x9a\\xc9\\xa7\\x47\\x6f\\xb9\\xf5\\x09\\xc0\\x15\\x7c\\x0c\\x71\\x05\\x1b\\x92\\x4e\\x7f\\x90\\x37\\x2e\\x64\\xa6\\x43\\xda\\x49\\xc7\\x2a\\xa2\\x9b\\xa4\\x68\\x23\\x64\\x13\\x32\\x16\\xa1\\xa4\\xa2\\x9b\\x9a\\xa9\\x57\\x69\\xb6\\x2c\\x12\\xe1\\x00\\x17\\x51\\xd5\\x6e\\x97\\x21\\xd8\\x18\\xb9\\xe1\\x28\\x4c\\x36\\x3a\\x0a\\x36\\x92\\x0c\\x38\\xbd\\xa0\\x64\\x54\\x71\\xf2\\x00\\x9a\\x21\\xab\\x6e\\xb3\\x26\\x23\\x1a\\x44\\xe6\\xc1\\x44\\x22\\x6f\\x7f\\x5e\\x6d\\x5b\\x9f\\x0d\\x13\\x8d\\x19\\xf3\\xc2\\x1d\\xfb\\xb7\\xae\\xd7\\x64\\xf7\\x7d\\x99\\x7d\\x87\\xbd\\x00\\x47\\xa8\\x97\\xe3\\x58\\xa8\\x84\\xf9\\x2a\\x5b\\xd1\\xd9\\x71\\x9f\\xe5\\x38\\xb1\\x4f\\x3e\\xfc\\x70\\xf2\\xb6\\xdb\\x1e\\x84\\x89\\xbd\\xaa\\x47\\x6e\\xbb\\x2d\\xf9\\xf0\\xc3\\xec\\x85\\x17\\x5e\\x88\\x5e\\xba\\xf4\\x2e\\xcd\\xfa\\x7b\\xd7\\xa5\\x4b\\xd1\\x17\\x5e\\xe0\\x74\\xc5\\xb0\\x85\\x48\\x3d\\x28\\x8d\\x52\\x3f\\x50\\x52\\x16\\xab\\xef\\x56\\xb8\\x08\\x35\\x9f\\xc9\\xf3\\x49\\x21\\x23\\x7c\\xf9\\x89\\x2f\\x3f\\xaf\\xc3\\xab\\xd7\\x41\\xa7\\x18\\x33\\x8c\\xd8\\xf1\\x04\\xcc\\x5e\\x6f\\x7e\\xea\\x3c\\x86\\xce\\xd1\\xd8\\xc6\\xf3\\x77\\xe0\\x4a\\x7f\\xc7\\x0f\\x1f\\xe1\\x5f\\x1e\\xe9\\x1e\\x41\\x9c\\xb6\\x91\\x9f\\x3f\\xbf\\x84\\x0c\\xf8\\x92\\xe4\\x11\\xd0\\x5d\\x42\\xd2\\x30\\xd9\\x58\\x1e\\x86\\x37\\xd7\\xc2\\xfc\\x76\\x2a\\xf4\\xb2\\xa8\\x64\\xb5\\x75\\xa8\\x30\\xbc\\x85\\xee\\xc8\\x14\\x5a\\x77\\x6f\\xba\\x9d\\x95\\xcd\\x81\\x80\\x0e\\x4f\\x6f\\x62\\xac\\xa8\\x2a\\xbc\\x60\\x58\\x3b\\x1a\\x45\\x53\\xd3\\x03\\x03\\x55\\xf8\\x4a\\x0b\\x0c\\x14\\x35\\xfc\\xae\\x1b\\x74\\x01\\x4a\\x42\\xbe\\x78\\xb1\\x97\\x9d\\x47\\xf9\\x27\\x68\\x4e\\x6f\\xe7\\xbb\\x8e\\xc6\\xba\\xa6\\x4d\\xf4\\x5e\\xbc\\x28\\x27\\x14\\xba\\x07\\x8f\\xd8\\x3e\\xeb\\x26\\xe9\\xff\\xeb\\xf5\\x17\\x91\\xf1\\xc9\\xaa\\x82\\x46\\x1f\\xdf\\x54\\x0e\\x88\\x98\\x6d\\xc5\\x07\\xa8\\x6a\\x21\\xf8\\xd7\\x15\\x63\\xcd\\x50\\x2c\\xd5\\xb9\\xa1\\xc1\\x9f\\x61\\x98\\x26\\x6d\\xc8\\x33\\x48\\x92\\x6c\\xb7\\x49\\x53\\xc7\\x90\\x95\\x72\\xd2\\x22\\xcc\\xa4\\x6d\\xb6\\xec\\xed\\xd2\\xd9\\x90\\xfd\\x3d\\x1f\\xaf\\x54\\xaa\\xc7\\xfa\\x05\\x5b\\x22\\x7e\\x6a\\x2f\\xa5\\x9f\\x22\\xc3\\xc9\\xd7\\x7d\\xf9\\xf9\\xe7\\xbf\\xfc\\xfc\\x07\\xe8\\x4a\\xb5\\xbf\\x07\\x00\\x88\\x30\\xe1\\xae\\x14\\x35\\xb2\\x43\\x7e\\x9a\\x8e\\xff\\xe0\\x12\\xde\\xce\\x16\\x9f\\xc7\\xfb\\x3f\\x49\\x5f\\x7c\\x93\\x7e\\xf4\\x34\\xa5\\x92\\x67\\x13\\x4d\\x1d\\x82\\x91\\x3d\\xb8\\x93\\xfd\\x60\\x00\\x08\\x01\\x25\\x8b\\x9a\\x34\\x35\\xd5\\x4e\\x61\\x6f\\xe8\\x7a\\x31\\xcf\\xf2\\xf9\\xbc\\xa9\\x97\\xb6\\x21\\xb5\\x1b\\x1b\\xf3\\xf3\\xc0\\x36\\xc1\\xdf\\x17\\xe6\\x39\\xa5\\x27\\xa2\\xbe\\x8d\\x7e\\x0f\\xb8\\x6f\\x59\\x32\\x32\\x14\\xb1\\xdf\\xda\\xb9\\x8e\\x01\\x5d\\x47\\x71\\xf6\\xca\\xf6\\x8c\\xc7\\x0b\\xd6\\x4c\\x59\\x94\\x24\\x8e\\xd4\\xd6\\xc2\\x81\\x4a\\xa2\\x6e\\x6e\\x07\\xea\\xdd\\x6f\\xcf\\x96\\x86\\xde\\x79\\x02\\xe4\\xd2\\x27\\x62\\x7b\\x01\\x0b\\x64\\x69\\x42\\xd3\\x50\\x7a\\xc9\\x3e\\x39\\x77\\x01\\x3d\\x83\\x2e\\xcc\\xc5\\x32\\xc7\\x10\\x60\\xf8\\x58\\xfa\\x5c\\xbd\\xde\\xb0\\x67\\xcc\\x8b\\x92\\xc2\\x3e\\xed\\x90\\x28\\x22\\xf5\\x00\\x3d\\x25\\x87\\xe7\\xc8\\xce\\xcb\\xf3\\xfc\\xa8\\x29\\xd0\\x6c\\x47\\xf7\\x92\\xee\\x3a\\x18\\x5b\\x78\\x71\\x21\\x76\\xb8\\x63\\xfc\\xa9\\xf1\\x58\\xfc\\x62\\x7c\\x91\\x96\\x14\\xc2\\xfe\\x33\\x31\\x71\\x48\\x87\\x63\\x0b\\xf0\\xfd\\xdb\\xc6\\xe1\\xeb\\xf8\\x27\\x6d\\xbb\\x87\\x6b\\x12\\xf6\\x7b\\xa4\\xb0\\x25\\x37\\xae\\x3e\\xc4\\xfb\\x92\\x4c\\x96\\x47\\xc3\\x67\\xcd\\x60\\x02\\x39\\x7a\\x4a\\xa7\\xf5\\x7c\\xf3\\x9c\\x74\\xa5\\x37\\x80\\xd7\\x58\\x05\\xd0\\x92\\xf3\\xcb\\x23\\x07\\x6f\\x3d\\x38\\x03\\x43\\xcf\\x4d\\x52\\x86\\xaa\\xce\\xf4\\xf9\\xb3\\xde\\x23\\x47\\xbc\\x67\\xe7\\xa7\\x96\\x96\\xa6\\x40\\xbb\\x07\\x7f\\x1b\\xc0\\x65\\x44\\x32\\x98\\x34\\xbe\\xa3\\x0b\\x71\\x19\\xb9\\x05\\x49\\x84\\x2c\\x85\\x0a\\x34\\xa4\\x9a\\x9d\\xa9\\x39\\xa8\\x6a\\x2f\\xbe\\xa8\\x94\\x34\\x93\\x13\\xc0\\xb0\\x2b\\x41\\x5a\\x2e\\x96\\x21\\xd7\\xc6\\x06\\x07\\x82\\xa1\\xb0\\x8d\\x92\\xab\\x89\\xa4\\xc9\\xf3\\xe4\\x32\\xa7\\x3c\\xe5\\xda\\xa4\\xbc\\x9b\\xb9\\xba\\x95\\xa4\\x7d\\x8d\\x49\\x97\\x2f\\x17\\xf5\\x32\\x2a\\x22\\xfa\\x07\\x56\\xc3\\xfd\\x20\\x86\\x6b\\xd4\\x58\\x71\\x00\\xcf\\xc3\\x60\\xa9\\x88\\x45\\x71\\x5a\\x5a\\xc7\\xd4\\xdc\\xc0\\xe2\\x36\\x04\\x4a\\x1a\\xe9\\xe8\\xe1\\x16\\x35\\x97\\x05\\x5b\\x18\\x2c\\x02\\x34\\xf8\\x1c\\x26\\x94\\xf7\\x55\\x04\\x5e\\xe1\\x90\\xd5\\x8a\\x69\\x3c\\x78\\x2f\\xa0\\x5e\\x8d\\xba\\x3b\\x12\\x8d\\xab\\x89\\x8e\\x79\\xd6\\xdd\\x71\\xef\\x6d\\x9e\\x01\\x0f\\x27\\x39\\xde\\x7f\\xfb\\xed\\xd0\\x2d\\xdf\\x1f\\x88\\xc7\\x7f\\xc3\\xe1\\xea\\xf0\\xbd\\xa7\\xa3\\xe3\\xff\\x8a\\xf8\\x7c\\x72\\x93\\xba\\x16\\xa5\\xf8\\xe9\\xeb\\x44\\x72\\x6b\\x43\\x32\\x03\\xa6\\xb8\\x5c\\xe6\\x80\\x08\\x42\\xd0\\x1b\\x86\\xac\\x06\\x7d\\x4c\\x7e\\xd0\\x6e\\x0e\\xe0\\x04\\xfd\\x78\\x82\\x53\\x15\\x34\\x4a\\x2c\\x24\\x75\\x6c\\x65\\x8c\\x37\\x10\\xc8\\x05\\xd8\\xd7\\x62\\xaf\\x3c\\x10\\xbb\\xf1\\x43\\x17\\xc6\\x8b\\xe1\\xc7\\x06\\x26\\xde\\x30\\xfa\\x06\\xd6\\x11\\x7b\\xe5\\x0d\\xb1\\x53\\x3f\\xff\\xc8\\xab\\x86\\x81\\x26\\x61\\x30\\x8f\\x8b\\xbe\\x69\\x22\\x02\\xad\\xa3\\xd9\\x4a\\x03\\xa7\\xef\\x1f\\x1b\\xbb\\xff\\xf4\\xc0\\xc5\\x0b\\xc4\\x15\\x98\\xf7\\x1d\\xee\\x58\\xb9\\xc3\\x7b\\xf8\\xbe\\x79\\x16\\x27\\x8e\\xe0\\xfb\\x15\\xc3\\x86\\xe4\\x42\\x65\\x56\\x65\\x95\\x66\\x4b\\x36\\x75\\x21\\x79\\xf8\\x3d\\x4a\\x9a\\x8a\\x24\\x9e\\x84\\x0d\\x64\\xf3\\x15\\xad\\x4a\\x8d\\x53\\xe5\\xbe\\xc8\\x3a\\xd7\\x56\\x11\\x1a\\x0c\\x8f\\x0b\\x33\\x0b\\xf3\\x11\\xe9\\xd9\\xe6\\x61\\x81\\xa0\\xa3\\x76\\x68\\x82\\x5a\\x68\\x28\\x57\\x29\\x1c\\xf8\\xd0\\x89\\xd3\\x57\\xfd\\x34\\x4c\\x1f\\x21\\xb6\\x6a\\xc3\\x33\\x38\\x39\\x0d\\xde\\xc7\\x7d\\xa1\\x44\\x64\\x7a\\x3a\\xb2\\x42\\xa2\\xc0\\x45\\x2e\\x4d\\xe5\\x7a\\x31\\x8a\\x69\\xed\\x21\\xb9\\x87\\x2d\\x10\\x26\\x40\\x79\\x56\\x2b\\x5e\\xb9\\x02\\x26\\xd5\\x45\\x66\\xa0\\x0c\\xdb\\x84\\xad\\x28\\x58\\x96\\xd1\\x2f\\x02\\x5c\\xfa\\xad\\x92\\x3c\\x39\\x57\\x23\\x59\\xb7\\x51\\x84\\x1d\\xff\\x31\\x84\\x9b\\x10\\x38\\x36\\xf8\\x05\\xb5\\x28\\xb5\\xa5\\x9a\\xa5\\x35\\x36\\xdb\\xd4\\x80\\x5d\\xce\\xeb\\xf9\\xe5\\x17\\x31\\x99\\xa0\\x77\\x83\\x6a\\xdb\\x57\\x60\\x3b\\xd1\\x44\\x2d\\x50\\xa4\\x3c\\xdb\\x60\\x2f\\x43\\x8f\\x8c\\x89\\xda\\x01\\x21\\x4e\\xbc\\x1f\\x2c\\x26\\xb2\\x3c\\x9c\\xa0\\x60\\x38\\x68\\x9a\\xcc\\x34\\xe9\\x19\\xd8\\xcb\\x76\\xd8\\x78\\xec\\x9d\\x1a\\xaa\\x9f\\xb4\\xc6\\x46\\xb1\\x86\\x08\\x55\\x22\\x5d\\xcb\\x31\\x8f\\xb6\\xd2\\xaf\\xb5\\x6a\\x5d\\x5c\\xed\\xca\\xf5\\x22\\xc2\\xff\\x6d\\xf6\\xa3\\xeb\\x6d\\xe6\\xc4\\xdf\\x7c\\x9f\\x15\\x73\\x3e\\x21\\x65\\xc9\\x9e\\x62\\x0e\\xa8\\xa3\\xbd\\x5c\\x9e\\xc0\\xe7\\xdc\\x02\\x6c\\x32\\xf7\\xd8\\xe7\\xc6\\x21\\x01\\x6b\\x73\\xf2\\x37\\xed\\xb4\\x6d\\x2b\\x54\\xbc\\x06\\xd5\\x68\\x6a\\xd1\\x58\\x59\\x33\\xb1\\xd7\\xe8\\x91\\xc6\\x47\\x09\\x87\\x04\\x26\\x62\\x90\\x4c\\xd6\\x49\\xbc\\x6b\\xea\\xa0\\x61\\xb0\\x4c\\x2e\\xa8\\x63\\x55\\xe1\\x3b\\x1c\\x89\\x0d\\xe8\\x6a\\xb8\\xbf\\x26\\xc1\\x1e\\x26\\x80\\x22\\xc8\\x04\\xc9\\xf0\\x82\\xcc\\xf5\\xe0\\xb7\\x6b\\xa4\\x84\\x93\\xfe\\xed\\xe3\\x3a\\x72\\x1a\\x8a\\xca\\x1f\\xe4\\x08\\xf2\\xd4\\x24\\x3c\\xae\\x3e\\xa1\\xd0\\x41\\xc2\\xe3\\xd5\\xb3\\x4a\\x09\\x35\\xcb\\xdd\\xef\\x51\\x3b\\x94\\x67\\xe0\\x39\\x99\\x73\\x7f\\xe7\\x10\\x62\\x05\\x71\\x43\\x93\\xee\\xf7\\xaa\\x1d\\xdd\\xf2\\x9d\\x61\\xbf\\x63\\xcc\\xeb\\xbd\\x12\\xe1\\x79\\x73\\x0c\\xe2\\x01\\xca\\x5b\\x46\\x42\\xb4\\xa9\\x10\\x26\\xb4\\x1a\\x82\\xb6\\x73\\x03\\x18\\x3e\\xdb\\xe0\\xd9\\xd5\\x5a\\xf9\\x37\\xb4\\x12\\xd3\\x79\\x5e\\x62\\xf6\\xff\\x0c\\x9c\\x13\\x71\\x93\\x98\\xc0\\x4e\\x25\\x5b\\xb7\\x56\\x9d\\xe7\\x00\\xbc\\x20\\x43\\xdf\\xe7\\xa9\\xd2\\xbc\\xca\\xd9\\x2d\\x25\\x7a\\x3c\\x58\\x24\\x7b\\xb5\\xa7\\xbf\\x63\\xd5\\x2f\\x3b\\xbb\\xd8\\x83\\x1d\\x3e\\xc7\\x4c\\x47\\xf0\\x34\\x26\\xef\\x13\\xaf\\x32\\x3d\\xd0\\xfd\\x42\\x4f\\xc7\\xfd\\x7e\\xb9\\xb3\\x67\\x4e\\xf6\\x75\\x44\\x9d\\xde\\x87\\x82\\x45\\x4a\\x37\\x7d\\xb1\\x93\\x5e\\x96\\x22\\x98\\x58\\xd8\\xf2\\x49\\xae\\x9f\\xa5\\x8d\\x55\\xe8\\x3d\\x35\\xcc\\x96\\x7e\\x16\\x44\\xb1\\x26\\xbe\\x22\\x5b\\x39\\xbb\\x19\\xd1\\x5c\\xa6\\xc8\\x3d\\x90\\xd3\\xf5\\x30\\xc5\\x41\\x93\\xbe\\x1d\\x9e\\x38\\xd3\\xcb\\xc5\\xed\\xd0\\xc4\\x45\\xb4\\x00\\xee\\x69\\x25\\xf5\\xa3\\xd2\\x25\\x93\\x21\\x90\\xd5\\x76\\xaf\\x22\\x03\\x23\\x37\\x00\\xc4\\xea\\x8f\\x50\\xfc\\xd5\\xdd\\x24\\xf4\\x61\\xda\\x4d\\x14\\xe3\\xe1\\x11\\x44\\x56\\xfd\\x6f\\x14\\x76\\xf5\\x55\\x92\\xfc\\x48\\x12\\x6b\\xce\\x47\\xf9\\xa6\\xb4\\x96\\xe6\\x8f\\x26\\xe9\\x97\\xf7\\x34\\x69\\xbf\\x82\\x7d\\x71\\x5e\\xbc\\xca\\x3e\\xb4\\x84\\x93\\xd2\\x05\\x25\\x04\\x8b\\x79\\x68\\x70\\x04\\xa4\\xf8\\xe1\\x58\\x06\\x4a\\xd9\\x3b\\xb9\\x0f\\x7d\\xb5\\x67\\xe1\\x06\\x80\\xc4\\x84\\x7b\\x7e\\xd2\\x17\\xc6\\x27\\x0b\\xfb\\x26\\x20\\xec\\x17\\x5a\\xf0\\x24\\xa3\\x31\\x1e\\x83\\x02\\x94\\x3f\\xba\\x77\\x65\\xff\\x91\\x7b\\xee\\x39\\x02\\x21\\x5f\\x37\\x61\\xf2\\x75\\x4a\\x29\\xb2\\xe8\\x2f\\x04\\x52\\xb4\\xfa\\xc9\\xc4\\x78\\xa2\\xc3\\x26\\x48\\x88\\x9a\\xbe\\x74\\x20\\x48\\x62\\xe7\\x0e\\xa7\\x42\\x2b\\xfa\\xc0\\x3d\\x03\\xfa\\xca\\x0d\\xfe\\x03\\xe5\\xd8\\x1b\\x46\\x07\\x74\\x65\\x70\\x32\\xf4\\x9d\\x2b\\xda\\x95\\x7d\\x11\\x20\\x92\\x6f\\xdb\\x75\\x4d\\x42\\x47\\xc7\\x07\\xc6\\x0f\\xac\\xc6\\xca\\xe3\\xf9\\xd1\\x78\\x6e\\x9f\\x0e\\x33\\xc5\\xe9\\x45\\x46\\x2d\\xc1\\x2d\\x9d\\x79\\xbc\\x18\\xb2\\x71\\x86\\x7f\\x85\\x15\\x67\\x5e\\x5f\\xfc\\x78\\xcc\\x2c\\xbe\\x7b\\xc6\\x6c\\x1d\\x71\\x1f\\xfe\\x2a\\xdc\\x5f\\x94\\x3c\\xb4\\x56\\x24\\xe1\\x9f\\xc1\\x14\\x58\\x63\\x06\\x57\\x73\\x8a\\x39\\x12\\x2d\\x6f\\xc3\\x54\\xb1\\xa2\\x39\\xf3\\xee\\xa2\\x19\\xfb\\x78\\xf1\\xf5\\xcc\\x6c\\x1e\\x4a\\xff\\x8a\\xbe\\x02\\x22\\xa6\\x1b\\xf9\\xf7\\x72\\xbb\\xf5\\x80\\x8a\\x4c\\x27\\x46\\x33\\xe2\\x9e\\x1e\\x66\\xed\\x8d\\x67\\xcf\\xbe\\x91\\x3b\\x76\\x30\\xa9\\x64\\xde\\xfc\\x81\\x60\\xf0\\x03\\x37\\x9b\\x44\\x5b\\xd8\\xde\\xd1\\xd8\\xe3\\xdb\\x2d\\x02\\xdc\\x6d\\xe7\\x1c\\xaf\\xbc\\x51\\xc1\\x94\\x95\\x85\\xe3\\x5a\\xcb\\x26\\xb9\\x2e\\x18\\x23\\x93\\xc6\\xda\\x64\\xb5\\x26\\xbd\\x20\\x15\\x60\\xe2\\x41\\xfc\\xb3\\x24\\xec\\xab\\x35\\xc5\\x30\\x1a\\x75\\x83\\x1e\\xcb\\xde\\x38\\x85\\x5d\\x16\\xd0\\x23\\x89\\x7b\\x42\\x2e\\x46\\xc5\\x49\\xcb\\x04\\x7d\\x73\\xb5\\xa8\\xac\\x33\\x73\\x63\\x63\\x43\\x63\\x46\\xa3\\xb6\\x4d\\x29\\x8c\\x97\\x40\\xff\\xac\\x58\\xc6\\xf0\\xea\\x4a\\x99\\x55\\xda\\x4b\\xb1\\xb9\\xb4\\xa6\\x4d\\x47\\xfb\\xf3\\x3a\\x61\\xf4\\xeb\\x28\\x4c\\x66\\x66\\xeb\\x61\\x15\\x7c\\x57\\x86\\x4e\\x9c\\x0a\\x25\\x0d\\xf0\\xc0\\xbd\\x1e\\x65\\xe4\\xb6\\x66\\x21\\xa2\\x8c\\x5a\\x1b\\xab\\xe0\\xe2\\x60\\xaf\\x4a\\x1e\\xfa\\x3d\\x3d\\xc3\\xf7\\x62\\x69\\x42\\x26\\xed\\x7c\\x6b\\x54\\x4a\\xf8\\xc7\\x2a\\xc5\\x7a\\xb1\\xb8\\x5a\\x2a\\x95\\x8b\\xd6\\x01\\xe5\\x69\\xb6\\xe7\\xc9\\xdb\\x93\\x7c\\xe5\\x04\\x79\\x19\\xe6\\x89\\x2d\\x65\\x42\\x43\\x6d\\xc0\\x7f\\x19\\x9a\\xcb\\x34\\x4d\\xdc\\xf8\\x8e\\x68\\xbf\\xb6\\xdc\\x68\\x86\\xc4\\x5c\\xa8\\xad\\x61\\x5f\\xdf\\xd8\\x30\\xcb\\x8d\\x0a\\x35\\x36\\xfc\\x88\\x5e\\x2c\\x59\\x5c\\x89\\xbf\\x6c\\x3e\\x53\\x91\\xc1\\xbd\\xcc\\xba\\xd5\\x7a\\xef\\x74\\x57\\x2f\\xb7\\xa1\\x67\\x6d\\x6c\\x63\\xae\\xed\\x3c\\xd5\\x76\\xce\\x08\\x12\\x99\\x0c\\xe6\\xd7\\x31\\x31\\xf0\\x74\\x83\\x8e\\x30\\x61\\x15\\x64\\x20\\xe9\\x88\\xd2\\xed\\x8f\\xf9\\x9c\\xb5\\xc2\\x36\\xd8\\x8b\\x36\\xd6\\x9d\\xcd\\x8d\\x08\\x33\\xb4\\x4a\\xae\\x37\\xf3\\x7f\\x45\\x14\\x69\\x90\\x7c\\xf5\\x07\\x3f\\x6e\\x0e\\x0e\\x9a\\x98\\x30\\x83\\xa8\\xd1\\x77\\x91\\xbf\\xfe\\xef\\x5c\\x38\\x76\\xec\\x02\\x6c\\x92\\xc5\\xe5\\x5d\\xb5\\x68\\xb1\\x34\\xce\\xd3\\x01\\xb2\\x02\\xb7\\x9c\\x5e\\x0b\\xd9\\x56\\x8c\\x74\\x18\\xbb\\x74\\x06\\x46\\x56\\x99\\x8c\\x4a\\x7e\\xaf\\x58\\x28\\xf7\\x7b\\xfd\\x5f\\xce\\x48\\xe6\\x13\\xbe\\x7d\\xe3\\xea\\x40\\xd2\\xeb\\x89\\x64\\x1c\\x1f\\x8a\\xb2\\x27\\xa2\\xee\\x7c\\x8f\\x3e\\x7b\\xca\\x1c\\x0c\\x17\\x7c\\xfa\\x37\\x82\\x81\\xc9\\xec\\xe4\\xa9\\xb7\\x0e\\x0e\\xcc\\x2c\\x79\\xf7\\x21\\xd4\\x9c\\x2b\\x37\\xa0\\x8e\\xef\\xf3\\x25\\x1d\\x99\\x88\\xc7\\xfb\\xa1\\x68\\xe3\\xdd\\x51\\xf7\\x5c\\x4f\\xff\\x85\\x63\\x4b\\xe3\\xbe\\xf1\\x82\\x77\\xb2\\xf7\\xc2\\xb1\\x45\\x6d\\x29\\x10\\x1c\\xdf\\xf7\\xff\\x79\\x1d\\x91\\xc8\\xe9\\x0d\\x6e\\xb6\\xa3\\xe0\\xbe\\xb1\\x59\\x99\\x43\\x4d\\x6e\\x31\\xa6\\x28\\x15\\x8b\\xb4\\x67\\xba\\x69\\x02\\xe3\\xcc\\x14\\x60\\x95\\xfb\\xc3\\x18\\x71\\x2a\\x0c\\x07\\x03\\x4d\\x1d\\x66\\xdd\\x1a\\x49\\x13\\x9b\\x3d\\x44\\xdd\\x96\\x55\\xd3\\x96\\xa6\\x68\\x22\\xa2\\xb2\\xaa\\xa1\\x9b\\xba\\x81\\x25\\xc2\\x38\\x6b\\x3d\\xb4\\x01\\x9c\\x79\\x7f\\xb8\\x6e\\x6a\\xf0\\xc7\\x9f\\x54\\xd7\\xf5\\xd6\\x03\\x92\\x8c\\x40\\x17\\x71\\x18\\x9c\\xd2\\x90\\x85\\x96\\xb5\\x73\\x59\\x7a\\x69\\xbd\\x55\\x42\\x89\\x64\\x0f\\xcc\\xdc\\x9a\\x2d\\xad\\x6d\\xcb\\xa4\\x25\\x4b\\x70\\x3b\\xf2\\x7c\\x76\\x1b\\x1d\\x81\\xf5\\x16\\x55\\x56\\x5e\\x8d\\x97\\x3d\\xd0\\xbd\\x93\\x89\\x40\\x90\\xec\\x59\\x4e\\x5c\\x38\\x9b\\x3f\\xbb\\x6b\\xf7\\x99\\x61\\x4f\\x7d\\x35\\x51\\xee\\xf3\\x24\\x03\\x71\\x2f\\x59\\xc1\\x14\\x8b\\xbb\\xce\\x9e\\xd9\\x9d\\xcb\\x92\\xee\\xc8\\x8e\\xf1\\xe5\\xa0\\x35\\x56\\x4d\\xca\\x30\\x05\\x30\\xe9\\x87\\x1a\\x7f\\x29\\x93\\x09\\x42\\xa5\\xae\\x6b\\x4d\\xc9\\x0a\\x61\\x08\\x10\\xad\\x90\\xe5\\x06\\xcf\\x9e\\xeb\\x44\\x7f\\x66\\x52\\x74\\xf7\\xee\\x28\\x6c\\x47\\xb7\\x0b\\xff\\x5c\\x59\\x8c\\x46\\x16\\x17\\x23\\xd1\\xd3\\xfb\\x2e\\x80\\x05\\x3d\\x63\\x7a\\xb8\\x65\\x7b\\x13\\x16\\x2c\\x4b\\x89\\x1a\\x23\\x09\\x52\\x3f\\x3e\\x27\\xca\\xbe\\x97\\x1c\\xb6\\x35\\x5c\\x68\\x1b\\x43\\xd3\\x3f\\x3d\\x32\\x6b\\x68\\xc1\\x81\\x20\\x10\\x4a\\x5a\\xef\\x66\\x93\\x53\\x73\\x36\\x15\\xdd\\xa5\\xaa\\xc9\\xde\\x50\\x0f\\xd6\\x21\\xf5\\x8f\\xa2\\x6a\\xee\\x0f\\x48\\x72\\x46\\xdc\\xe9\\xce\\x2b\\x85\\x18\\xad\\x8c\\xb6\\xcd\\x2b\\x85\\xd3\\xd6\\xee\\x11\\x15\\x89\\x52\\x8c\\x16\\x84\\x61\\xce\\xb3\\xa3\\xae\\x8f\\x49\\xba\\xa2\\xc3\\xe7\\xb6\\x6d\\x74\\x7e\\x4c\\xc7\\x6f\\xf4\\xf2\\x76\\xaa\\x3f\\xa1\\x3c\\xee\\xad\\x4f\\xb3\\x7e\\x68\\xc7\\x72\\x80\\x2a\\xee\\xd9\\xae\\x08\\x43\\x29\\x6d\\x9b\\x3d\\xcd\\x86\\x40\\xbf\\x30\\x03\\xf2\\x27\\x99\\xb2\\xcd\\x8b\\x15\\x9a\\x63\\x96\\x6b\\x3e\\xac\\xc7\\x54\\x9a\\xe7\\x70\\x0f\\x9e\\xb3\\x57\\x74\\x1d\\xbd\\xd1\\xf5\\xc4\\xe5\\x95\\x44\\xe2\\x0a\\x6c\\xc5\\x44\\x42\\x4f\\x80\\xb6\\x55\\x51\\xf2\\x81\\x6e\\xa5\\x3b\\xa0\\x9b\\xa0\\x08\\x5f\\x59\\xc1\\xad\\x4b\\x37\\x51\\x8c\\x2b\\x58\\x24\\x70\\x5d\\x4b\\x98\\x38\\x78\\x5b\\xc4\\x06\\x99\\xa7\\x39\\xf5\\x4f\\xa5\\xb0\\x32\\x0f\\x0a\\xda\\xa8\\x19\\x06\\x5b\\x35\\x80\\xe8\\x60\\x25\\x63\\x7d\\x83\\x94\\x4b\\x70\\x6a\\x54\\x51\\x48\\x8e\\xfd\\x3c\\x0f\\x79\\xbe\\xc2\\xea\\x96\\x8c\\x05\\x94\\x8a\\xf9\\xb8\\x03\\x3e\\xa1\\x90\\xec\\xf1\\x64\\xdd\\xd8\\xe9\\xf5\\xb3\\x4f\\x0d\\xc7\\x83\\xab\\x63\\x8b\\x0f\\x75\\x77\\x3b\\x5d\\xa1\\xee\\xc6\\x87\\xd9\\x95\\xc6\\xea\\xef\\xa8\\x89\\xce\\x37\\x7a\\x67\\x07\\x7f\\xb2\\xab\\x16\\x73\\xa9\\xdd\\xdd\\x3e\\xe7\\x41\\x1a\\xf1\\x59\\xc8\\xef\\x8f\\xd8\\xcf\\xf2\\xfc\\x24\\x8c\\x98\\xdc\\xeb\\xc8\\x20\\xe9\\x89\\xdb\\x3c\\x65\\xf8\\x4d\\x4f\\x77\\xf7\\x53\\x67\\x1f\\x1a\\x96\\x67\\xe2\\xda\\xea\\x85\\xb1\\x0f\\xbc\\xa9\\xbb\\xf1\\x18\\x66\\xc9\\xf6\\x45\\x42\\xae\\x64\\x28\\xd6\\xe9\\xbb\\xc9\\x9b\\x18\\xfc\\x48\\xd7\\x73\\x31\\xd7\\x9f\\x53\\x9e\\xa6\\x54\\xc4\\x2e\\x25\\x75\\x51\\xcc\\x21\\x2e\\x28\\xcd\\x61\\xcf\\x2e\\xe4\\x68\\xb0\\x9b\\x64\\xe9\\x05\\x64\\x7f\\x59\\x5b\\x5e\\x59\\x59\\xae\\x23\\x7d\\x0f\\xa4\\xfd\\x6b\\x8f\\xae\\xac\\x50\\x0c\\x07\\xe8\\xb9\\xf0\\xae\\x3a\\x2c\\x9c\\x88\\x94\\x05\\x14\\x41\\xab\\x31\\x19\\x32\\xe6\\x04\\x4f\\x8a\\x45\\x87\\x92\\x62\\x15\\x98\\xcf\\x12\\x2b\\x00\\x11\\x70\\x42\\x4b\\x58\\x6b\\xf1\\x65\\xb4\\x5f\\x50\\x12\\xba\\xe9\\xeb\\xe8\\x32\\x12\\x3a\\x5e\\x2a\\x75\\xf8\\xcc\\x4d\\x91\\xc1\\x03\\x96\\x94\\x6a\\x8b\\xe7\\xfd\\xba\\xe8\\x75\\x0f\\x7c\\x5c\\x5d\\xe4\\xb4\\x36\\xeb\\xd2\\x49\\x62\\xc6\\x69\\x62\\xe4\\xe4\\xed\\x21\\xfc\\x27\\xff\\x2e\\xf6\\xd0\\x58\\x6c\\xdd\\x02\\xea\\xad\\xd3\\xd9\\x8f\\xa0\\x98\\x80\\x0b\\x65\\x3c\\x20\\xdb\\x3e\\xcb\\x7e\\x82\\x7d\\x86\\x66\\xa2\\x7e\\x68\\xfb\\x01\\xc2\\x76\\xb3\\x5c\\xe5\\xfb\\x2d\\x55\\x06\\xf4\\x41\\x04\\x77\\x21\\xa1\\x00\\xcb\\x1f\\x3a\\x74\\xc7\\xa1\\x43\\x6f\\x04\\xc3\\x81\\x52\\xe9\\x81\\x62\\x11\\x03\\x58\\x3c\\x0b\\x57\\xe0\\xc3\\x3a\\xf1\\xda\\x53\\x17\\x0c\\x20\\x5c\\xe9\\x8b\\x36\\xcf\\x86\\xa9\\xad\\x9e\\x0d\\xea\\x30\\x74\\xfc\\x1c\\xbd\\x17\\x0e\\x7a\\x93\\xb7\\x51\\x6e\\x52\\x73\\x18\\xbc\\x46\\xf4\\x76\\xf8\\xc6\\xe8\\x68\\x6f\\x30\\x13\\x52\\x62\\xa3\\x30\\x21\\x65\\x92\\x01\\x25\\xe3\\x74\\x3b\\x3a\\x37\\xb9\\x3d\\x44\\x77\\x7b\\x76\\xfb\\xbb\\xc3\\x81\\xfe\\x69\\xcd\\x33\\xa6\\x46\\x03\\xca\\xa0\\xec\\xe9\\x74\\x74\\x42\\xfb\\x2c\\x41\\x3d\\x7e\\x0d\\xea\\x31\\x2f\\x9d\\x90\\xee\\x91\\x9e\\x92\\xde\\x8b\\xa3\\x00\\x0a\\xe0\\xc2\\x72\\xea\\x1a\\xdc\\x27\\xcb\\x83\\xda\\x0a\\x0f\\xc5\\xc9\\x81\\x8a\\xd8\\xec\\x63\\x66\\x98\\xae\\xab\\xd0\\xbd\\xb3\\x84\\x38\\x36\\x4b\\xc7\\xa9\\x61\\xcc\\x01\\x40\\xda\\x60\\xdf\\xcc\\x6b\\x78\\xd3\\xed\\x4e\\xe8\\x6e\\x18\\x94\\x96\\x9f\\xe1\\x6d\\x19\\x19\\x4a\\x49\\x0f\\x53\\x38\\x54\\x4f\\xc6\\x7a\\x5e\\x0f\\x5b\\x72\\x4e\\x26\\x27\\x33\\xf3\\x59\\x80\\xd4\\xbd\\xc5\\x98\\x3c\\x19\\xf0\\xf5\\x38\\x83\\xce\\xbe\\x5e\\xe5\\xfc\\xdc\\xf1\\xfb\\xb2\\xf3\\x19\\x30\\x23\\x1b\\x1d\\xd4\\x3a\\x1c\\x8e\\xbd\\x85\\x31\\x47\\x4f\\x47\\x07\\x73\\x74\\xf9\\x7a\\x46\\x23\\xb9\\xae\\xce\\x5d\\x2e\\x67\\xb4\\x4f\\x3d\\x7a\\xf7\\xd1\\xd0\\xee\\xb3\\xbb\\x03\\x00\\xd5\\xe3\\x75\\x3e\\x2f\\x7b\\x5c\\x89\\xe9\\xd9\\xc7\\x66\\x67\\xe2\\x9e\\x8e\\x4e\\x77\\x74\\x62\\xf2\\x81\\xc9\\x89\\x41\\x27\\x1b\\x77\\xb1\\xc5\\x3d\\xfb\\xe7\\x3d\\x1d\\xee\\xdd\\x47\\xf7\\x1b\\xb2\\x4b\\xf7\\x25\\x27\\xf7\\x23\\x08\\x9b\\x7f\\x60\\xc0\\xbf\\xa7\\x34\\x95\\x0d\\xa7\\x46\\xd3\\x9d\\x9e\\x8e\\x89\\x1b\\x63\\x13\\xf3\\x77\\x1d\\x8e\\x8c\\x8c\\x44\\x70\\x6a\\x5f\\x18\\x1d\\xec\\x62\\x3e\\xef\\x8f\\xa4\\xe7\\x1d\\x4e\\x77\\x97\\xc3\\x11\\x48\\xed\\xee\\xfa\\x51\\x67\\x34\\x36\\x3a\\x37\\x75\\xe8\\xd0\\x54\\x67\\x67\\x16\\x3a\\x1e\\x84\\x8b\\x1d\\x92\\xbd\\x4e\\xe6\\xe8\\xf4\\x4c\\x0e\\x44\\x22\\x03\\x13\\x9d\\x6e\\x4f\\x47\\x56\\x55\\xd9\\x80\\x3a\\xea\\xba\\xc4\\x62\\x31\\xa7\\xdc\\xe5\\x4a\\x24\\x5c\\x7d\\x76\\x34\\x8c\\x3f\\x62\\x1b\\xc2\\xba\\xc0\\x11\\xbf\\xb2\\x18\\x1a\\x26\\x0d\\x83\\xfd\\xec\\x63\\x7b\\x1e\\xff\\x5b\\xd8\\x2e\\xee\\x61\\x93\\x7b\\x1a\\x8f\\x12\\xfd\\x3f\\xff\\xf8\\x9e\\xc7\\xfe\\x16\\xb6\\x8b\\x7b\\x1a\\xdf\\xd8\\x13\\xd1\\xc5\\xa8\\xd1\\xdd\\x84\\xbf\\xc8\\x31\\xf4\\xb8\\xad\\xb3\\x1d\\x15\\x5b\\x08\\x17\\x9e\\x9f\\x0b\\x34\\x87\\x2c\\xdb\\x3b\\x09\\x8b\\xe8\\x64\\x7f\\x09\\xa2\\x47\\x1b\\xc4\\xdb\\x18\\x45\\x93\\x86\\xe6\\x7f\\x4d\\x14\\x50\\xab\\x5b\\x48\\x74\\xcf\\xcc\\xfc\\xe3\\xf9\\xa5\\x1b\\xc7\\x67\\x70\\xcc\\xce\\x8c\\xdf\\xb8\\xd4\\xf8\\xb2\\xa2\\xc0\\xf1\\x0e\\xf6\\x6b\\xe9\\x36\\xa0\\x21\\xd9\\xb6\\x5f\\xab\\x46\\x04\\xab\\xc3\\x92\\x65\\xc0\\x46\\xe7\\x24\\x60\\x7f\\x1b\\x71\\x1c\\x4d\\xeb\\xc0\\x0e\\xd2\\xa3\\x2d\\xe0\\xda\\xc3\\x41\\xa7\\x72\\x64\\x87\\x0b\\x99\\x91\\xa3\\x86\\xa5\\x58\\xb5\\x19\\x01\\x71\\xf1\\xb0\\x69\\xbd\\x6b\\xfb\\xf3\\xc1\\xb9\\x7c\\x30\\xbf\\x5f\\xa9\\xa1\\x88\\xd4\\x64\\x0a\\x4a\\xe8\\x2a\\xa4\\x86\\xa9\\x95\\x89\\x97\\xa5\\x04\\xa8\\xe5\\xa5\\x6c\\x76\\x29\\x63\\x80\\x16\\x05\\x19\\x47\\x84\\x43\\x26\\x4b\\xe6\\xfe\\x81\\x86\\x79\\xe5\\x0a\\x30\\xba\\x35\\xb8\\x0d\\x13\\x9c\\x4b\\xef\\x91\\x24\\xf6\\x29\\x78\\xe2\\x41\\xc2\\xf6\\x45\\xe1\\x9a\\x87\\x9b\\xc1\\x10\\xdd\\x9b\\x53\\x9b\\xce\\x9e\\x6a\\x73\\x1c\\xc8\\xfc\\x65\\xb0\\x1f\\x0e\\xf4\\xb1\\x7e\\xdf\\xfb\\xbb\\x51\\xfa\\xd5\\xc9\\x9c\\xec\\x38\\xe8\\x2b\\xfd\\x20\\xe9\\xd2\\x61\\x89\\xd4\\xc0\\x64\\xf8\\xf3\\x1d\\x41\\xd7\\x43\\xbe\\x5e\\xfc\\x9a\\xf5\\x7e\\x0b\\x15\\xa0\\xa6\\x63\\x76\\x70\\x0e\\x88\\xae\\xd1\\x7c\\xf4\\x34\\xaa\\xda\\x85\\x37\\x8d\\xd4\\x68\\x9e\\x23\\x85\\xe3\\x03\\x5b\\x51\\x7b\\x68\\x48\\x02\\xf2\\x12\\x68\\x91\\xc8\\x86\\x85\\x02\\x3e\\xf0\\x66\\xa3\\xbb\\xec\\x20\\xd0\\xfd\\xe3\\xde\\xdd\\xd9\\xf1\\xa5\\xe9\\x74\\x60\\x20\\x13\\x51\\x92\\xf3\\x5a\\x88\\xc9\\x1e\\x90\\xff\\x2c\\xcc\\x1a\\xd0\\x56\\x65\\x7f\\x84\\x20\\xca\\xcd\\x34\\xb8\\x0f\\x82\\xcf\\xe0\\x38\\x10\\x6f\\x91\\xcc\\xc0\\xd7\\x07\\x06\\xbb\\x99\\xd3\\x13\\xcf\\x6a\\x63\\xc7\\x01\\xaf\\x7f\\x35\\xe2\\xff\\x43\\x8e\\x5f\\xee\\xe0\\xfc\\x3b\\x97\\xbe\\x93\\xbe\\x02\\x5f\\x8f\\xcc\\x83\\x1a\\x33\\x10\\xa3\\x83\\x73\\x1b\\x24\\x1b\\x14\\xe1\\xc7\\xc0\\x54\\x8c\\x53\\xe9\\x6c\\xa2\\x5a\\x5f\\x3f\\x76\\x21\\x3e\\x83\\xb5\\x6d\\x17\\x51\\x50\\x21\\x78\\x96\\xe2\\xc6\\x06\\x69\\x6a\\xc9\\x4d\\x87\\x81\\xa0\\x58\\x83\\xbf\\x2b\\x1a\\xfd\\xb5\\xfb\\x97\\x71\\x94\\x74\\x84\\x5a\\x07\\x96\\x2b\\x9b\\x0f\\x85\\x54\\x30\\xb0\\x69\\xca\\xe7\\x98\\x32\\x7d\\x5c\\x36\\xbc\\xaf\\x3f\\x6d\\xca\\xc7\\xa7\\x4f\\xbf\\xde\\x7b\\x75\\xf6\\xc6\\x1b\\x67\\x01\\x7d\\xfd\\xcc\\x03\\xf2\\xb1\\xe9\\xd3\\xf7\\xcb\\x57\\xa7\\x8f\\xc9\\xfb\\xe1\\xeb\\xb7\\x7a\\x4b\\x0f\\x94\\xbc\\xfb\\x11\\x88\\xdd\\xdb\\xa6\\x23\\x40\\x0a\\xc3\\x2e\\x60\\x9b\\xfc\\xa3\\xdd\\x1f\\xf6\\xde\\x7f\\x6a\\xd4\\x37\\x78\\xea\\x7e\\x2f\\xb9\\xea\\x60\\xee\\x5f\\xf1\\x26\\x6e\\x78\\x40\\xbe\\x9a\\xf0\\x7e\\x58\\x7e\\xe0\\x86\\x51\\x79\\x78\\x74\\x58\\xfe\\x30\\xcf\\xbb\\x4b\\xd0\\xe8\\xd0\\x6c\\xd1\\x86\\x08\\x4e\\x34\\x25\\xf1\\xe6\\x22\\xa7\\x2f\\x6c\\x05\\xe1\\x98\\xe8\\xcd\\x3a\\x7a\\xdc\\x83\\x75\\x35\\x1a\\xcb\\x40\\x7a\\xb5\\xfc\\xda\\xea\\x6b\\x20\\xd1\\x40\\x83\\x3a\\x1c\\x2a\\xcd\\x3f\\x0b\\x90\\x5a\\x8c\\x7e\\xf4\\x3d\\xd2\\xb1\\x90\\x19\\x50\\x4b\\x57\\x42\\x21\\xc3\\xb6\\xd2\\x2e\\x5b\\x98\\xdd\\x8a\\x34\\xd5\\xb2\\xd2\\x26\\x48\\x8b\\x56\\xac\\xdb\\x16\\xaa\\xa5\\x9c\\xb2\\xc3\\xde\\xe6\\xf0\\x1e\\xf6\\x24\\xb1\\xdf\\x3f\\xbe\\x67\\x8f\\x9c\\x0c\\xa2\\x8e\\x36\\x98\\xbc\\x36\\xb6\\xb0\\x74\\x71\\xaf\\x67\\x31\\xe5\\xdd\\x95\\x9d\\x58\\x5a\\x9a\\xf8\\x7b\\xfd\\xe4\\xed\\x15\\xe2\\xc6\\xdd\\x7a\\x40\\x85\\x83\\x81\\x1f\\x76\\xee\\xd1\\x27\\xf6\\xee\\x9d\\x08\\xf6\\x2f\\xa6\\xa7\\xf7\\x5e\\x5c\\xd2\\x35\\xee\\x4d\\x3b\\xcb\\xaa\\xec\\x77\\x25\\x0f\\xd1\\x0b\\xc9\\x39\\xc4\\x80\\x2f\\x34\\xcb\\x2d\\x98\\x4c\\xca\\x5c\\xbc\\x98\\xf9\\x47\\xee\\xbb\\x55\\x2f\\x64\\x6e\\xbf\\x2d\\x73\\x6c\\xf6\\x08\\xc5\\x2d\\x9d\\x7d\\x9c\\x78\\x66\\x8d\\x68\\x49\\x9d\\xac\\x21\\x0e\\x4a\\xcb\\xf0\\xae\\x63\\xb2\\x27\\x84\\x6b\\x1a\\xda\\x95\\xd1\\x0a\\x07\\xdd\\x0b\\x3f\\x30\\x35\\xe0\\xda\\x46\\x4b\\x5f\\x68\\xde\\xb6\\x98\\x68\\xdb\\x7b\\xac\\x3d\\x7b\\x93\\xa3\\xdb\\xd5\\xed\\xf4\\xb1\\x0e\\xa7\\xdb\\xd9\\x95\\x95\\xcf\\x0d\\xba\\x06\\xcf\\xc9\\xd9\\x2e\\x67\\xd0\\x1f\\xea\\x4c\\x76\\xf6\\x07\\x5c\\x4e\\x4f\\x97\\xcf\\xed\\x74\\x05\\xfa\\x3b\\x86\\x9d\\x64\\x5d\\xf8\\x56\\x4a\\x3f\\x21\\x1c\\x7f\\x05\\xf2\\x80\\x30\\x75\\x9e\\x3e\\xd9\\xef\\xd2\\xbc\\xac\\xb3\\x93\\x79\\xb5\\xa0\\xd6\\x1f\\xea\\x1a\\xed\\x0a\\x79\\x1c\\x8c\\x39\\x3c\\x70\\x78\\x86\\x1c\\x15\\x2e\\xc3\\xfd\\x74\\x00\\xe9\\x3c\\x1d\\x40\\xeb\\x54\\x25\\x9d\\x15\\x59\\xdd\\xd2\\x73\\x71\\x3a\\x9c\\xcf\\x66\\x21\\xbb\\xbe\\xac\\x68\\x18\\x1a\\xb4\\xaf\\x56\\x21\\xe0\\xff\\x0d\\x08\\xd6\\x75\\x05\\x5f\\x89\\xff\\xad\\x78\\xda\\x44\\x71\\xba\\x2a\\x7a\\xa7\\x32\\x3b\\xe6\\xac\\xb5\\xf7\\xd8\\xa8\\xbb\\x76\\x9e\\x3f\\xb6\\xb4\\x94\\x1a\\x1f\\x4f\\x25\\x12\\x23\\x3d\\x3d\\x3f\\x87\\xd8\\xb9\\xa5\\x59\\xb4\\x20\\x67\\xf5\\xfd\\xd5\\xa5\\xe1\\xdc\\x3b\\xa6\\xd3\\xa9\\x0b\\x89\\x91\\xc0\\x44\\x60\\x8d\\x50\\x74\\xdf\\x43\\x76\\xe7\\x92\\xd4\\x65\\xd3\\x90\\xe2\\xa8\\x10\\x70\\xf2\\x25\\x46\\x7a\\x46\\x42\\x10\\x0c\\x31\\x3e\\x9f\\xd0\\x66\\x5b\\x0b\\xc8\\x82\\x9c\\xcd\\x8d\\xc7\\x84\\xd9\\xa1\\x67\\x22\\xab\\xab\\xe3\\xfb\\x1a\\x26\\x4e\\x2c\\x34\\x42\\xf8\\x1f\\xd3\\x28\\x2d\\xae\\xae\\x62\\x14\\x9c\\xc6\\x97\\xac\\xab\\x34\\x6a\\x9a\\x4e\\x5f\\x25\\x9c\\x8e\\x48\\x4e\\x29\\x91\\xac\\x16\\xb4\\x9f\\x34\\xc3\\x71\\xe6\\x29\\x1f\\xe2\\x26\\x92\\xb4\\x64\\xc1\\x25\\x8f\\xac\\xe6\\x6c\\xe5\\xae\\x53\\x05\\xab\\x33\\x06\\x7c\\xc7\\x87\\xe4\\xee\\xc8\\x42\\x7f\\xac\\x2f\\xc0\\x02\\x43\\xc1\\x93\\xc1\\xa1\\x77\\x27\\xce\\x90\\x4a\\x7e\\x65\\x5e\\x5f\\x4e\\x00\\x0f\\x92\\xf8\\x10\\x9b\\x64\\xe1\\x40\\xb2\\x6f\\x30\\xf8\\x64\\x24\\x78\\x72\\xc6\\xdf\\xfd\\x6e\\x56\\x26\\xad\\x7c\\xe3\\x9f\\xe6\\x4f\\x24\\xa0\\x60\\x78\\x03\\x26\\xdb\\x60\\x26\\xb6\\x81\\xc4\\x01\\x69\\x05\\xc0\\x5a\\xfb\\x4c\\x84\\xad\\x25\\x86\\x6e\\xde\\x3e\\x63\\x1b\\x11\\xbf\\xd7\\x79\\xd2\\x01\\x99\\x3a\\x0a\\x9e\\x4e\\xcf\\x1d\\x78\\x84\\x97\\xee\\x60\\xa0\\xa4\\x67\\xf3\\xce\\x3e\\xfa\\x92\\xdd\\x3b\\x1c\\x66\\x27\\x3d\\x6e\\x9c\\x73\\xdd\\x9e\\x82\\xc3\\x71\\x07\\x1c\\x13\\x96\\xc5\\x1d\\x4e\\xaf\\x9f\\x7e\\x30\\xcf\\xd8\\x32\\x5e\\xdc\\x84\\xf4\\x19\\xb3\\xad\\x5e\\xd5\\x14\\xcc\\xc0\\x32\\x0a\\x96\\x0a\\x9c\\x02\\x1e\\x06\\xba\\x13\\x6b\\xc1\\xba\\x4e\\xf4\\xde\\x52\\x7f\\xff\\xe2\\xf8\\x93\\xe3\\x7a\\xe9\\xa9\\x71\\x5d\\x5f\\x00\\x23\\x92\\x85\\x4b\\x1f\\x5f\\xd8\\xcd\\xcd\\x74\\x57\\x27\\xf6\\x8c\\x33\\x7d\\xfc\\xb1\\x0b\\xe3\\xfa\\xde\\x53\\x85\\x85\\x85\\xc2\\xc7\\x2e\\x2d\\xec\\x69\\x43\\x76\\x21\\xcb\\x8a\\x94\\x92\\x69\\xea\\xce\\xfd\\x2b\\x09\\xee\\x77\\xfa\\xe9\\xc1\\xdd\\x0f\\x9a\\x56\\xc4\\x0e\\x46\\x36\\xb8\\x1b\\x0e\\x89\\x62\\x6b\\x72\\x21\\x63\\x36\\xcb\\x07\\x6e\\x73\\x51\\xdf\\x76\\xcf\\x36\\x72\\xa9\\x7f\\x3f\\x12\\xfe\\x6c\\x94\\xc9\\x9d\\xb2\\xe7\\x56\\x58\\xd4\\x15\\x30\\x4b\\x52\\x60\\x1f\\x82\\x8d\\xbd\\xd0\\xf8\\x6a\\x6a\\x36\\x5c\\x8d\\x78\\x9c\\x73\\x0d\\xe4\\x59\\xaf\\xbc\\x82\\x2b\\xfb\\x2b\\x5f\\xc0\\xe3\\x2f\\x3c\\x02\\x29\\x14\\x67\\xb7\\x09\\xf5\\x10\\xc2\\x0b\\xb0\\x60\\x7e\\x38\\xc0\\x4f\\x13\\x18\\x87\\x20\\x80\\x82\\x2a\\xa4\\xa1\\x10\\x33\\x72\\x30\\xc1\\x9c\\x58\\xba\\x2b\\xb8\\xbc\\x9f\\xb1\\xfd\\xcb\\xc1\\xbb\\x96\\x4e\\xcc\\x83\\x6e\\x25\\x7b\\xa0\\xff\\xc9\\xe7\\x1c\\x8e\\xe7\\x9e\\xec\\xdf\\x7f\\x79\\x38\\x33\\x73\\x6c\\x41\\x07\\x03\\x59\\x7d\\xe1\\xd8\\x4c\\x66\\x78\\x6c\\x58\\xef\\xe9\\xe9\\xd1\\x87\\xc7\\x04\\x8c\\xd7\\x01\\xb2\\x4c\\xdf\\x2f\\x15\\x91\\x7a\\xc3\\x31\\xa2\\x36\\xd5\\x32\\xf0\\x66\\x60\\x43\\x82\\x02\\xf4\\x35\\xd0\\x5f\\x53\\x71\\x07\\xac\\x63\\xe0\\x10\\xaa\\x70\\xa2\\xc3\\x92\\xf7\\x65\\x5b\\x13\\xb7\\x2d\\x9e\\xcd\\x36\\x05\\xb8\\x2a\\x2a\\x0a\\x7e\\x29\\x3c\\xa6\\xde\\x10\\xed\\x8c\\xef\\xee\\xdd\\x1d\\xf0\\xeb\\x60\\xc9\\x74\\xa5\\xa3\\xd7\\xd7\\xe7\\x70\\x16\\x65\\x77\\xb7\\xaf\\x67\\xc1\\x71\\xd3\\x94\\x33\\x14\\x54\\x62\\x31\\x25\\xd0\\xed\\x88\\x38\\xc2\\xc9\\x91\\x5c\\x6e\\x24\\x3d\\xf5\\x2b\\xd8\\x9d\\xaa\\x0a\\xb9\\x1f\\x99\\x81\\x22\\x0b\\x81\\x95\\x7d\\x28\\x14\\xca\\x8e\\xec\\xea\\xdb\\x15\\x58\\xd4\\x7d\\x3f\\x15\\xf0\\xf7\\x0c\\x79\\xbd\\x6a\\xdf\\x54\\x57\\xef\\x91\\x2e\\x57\\xd2\\x17\\x8c\\x6b\\xf1\\x6e\\x16\\x66\\x6a\\xee\\x58\\x6e\\xfa\\x47\\x40\\x24\\x04\\x21\\xa5\\x0c\\xa0\\x02\\x42\\xb0\\x23\\xca\\x52\\x62\\xdf\\x62\\xdf\\x22\\x24\\x19\\xc2\\x9f\\x68\\xa2\\xf9\\x65\\x6d\\xb3\\x14\\x39\\x97\\x45\\xc3\\x14\\x77\\x0b\\x89\\x90\\xef\\x0a\\x40\\xde\\x71\\xbc\\x96\\x3f\\xab\\xb1\\x38\\x99\\xa5\\xfc\\xe6\\x03\\xfa\\x6c\\x80\\xb1\\x93\\xd1\\xbd\\xdd\\x80\\x73\\xd2\\x1f\\xfb\\x04\\xda\\xa7\\x4c\\xdd\\x1e\\xe5\\xa6\\x29\\xef\\xaa\\x71\\xcb\\x14\\x5d\\x07\\xdb\\x94\\x4f\\x45\\xf7\\x82\\xef\\x6d\\xa8\\x7b\\x88\\x6c\\x54\\xee\\xba\\x3d\\x2a\\xa2\\x46\\xa8\\x64\\xfb\\x33\\xcb\\x5d\\x14\\x81\\x58\\x23\\xb9\\x2f\\x0d\\x55\\x78\\xc7\\x6d\\xee\\x7d\\x12\\x12\\xe4\\xbb\\x13\\xd1\\xe2\\x70\\x70\\x32\\x3e\\x3e\\x0e\\x40\\xe6\\x69\\x5f\\xfe\\x64\\xcb\\xd5\\xcf\\x04\\xa1\\xd7\\xcc\\x60\\x71\\x78\\x54\\x5f\\x1a\\x4f\\x0c\\xa5\\x36\\x43\\xd6\\x50\\x0b\\x78\\xe0\\x9d\\xff\\xb1\\xe4\\x47\\x4d\\xbe\\x80\\xb4\\x82\\x36\\x0f\\x29\\xdc\\x94\\xac\\xca\\xb1\\x71\\x9c\\x4c\\x86\\x96\\xf0\\x67\\xd1\\x45\\x71\\xc0\\x5f\\xb9\\xff\\x83\\xca\\xe7\\xaa\\x6f\\x19\\xd3\\xe1\\xef\\x1e\\xf6\\x0b\\xd1\\x27\\x6a\\x45\\xe8\\x3c\\x24\\x59\\x0b\\xb3\\x8a\\xae\\xe8\\x63\\x6f\\xa9\\xe9\\x28\\x40\\xf5\\x34\\x8e\\x44\\x9f\\x28\\xb2\\x55\\x5c\\xeb\\x05\\xe4\\x9e\\x00\\x49\\x2f\\x89\\x30\\x21\\x33\\x61\\x95\\xc4\\x19\\xc8\\xa2\\xb7\\x70\\x7c\\x96\\x4f\\x10\\x90\\xcf\\xdb\\x26\\x27\\x62\\x13\\xd6\\xe7\\x9c\\x88\\xe9\\xf3\\xcb\\xd6\\x17\\x93\\xb1\\xc9\\xc9\\x2f\\xd8\\xe8\\x3e\\x82\\x0e\\x54\\xa7\\x59\\x5e\\x85\\x6a\\x2b\\x90\\x70\\x87\\xc3\\x7c\\x0a\\x12\\x8e\\x19\\x93\\xcb\\x43\\x82\\x34\\x90\\x0a\\x46\\x21\\x90\\xb0\\xfa\\xcd\\x87\\x63\\x77\\xe9\\x77\\xc7\\x0f\\x6b\\x87\\xe3\\x77\\xeb\\x77\\xc5\\x0e\\xdf\\xdc\\x7e\\x81\\x29\\xdb\\x7f\\x25\\x5e\\x80\\x16\\x6d\\xe2\\xdf\\x73\\x3f\\x17\\x95\\xe3\\xff\\xb3\\x5c\\x2b\\x2a\\x64\\x56\\x08\\x7e\\x84\\xad\\x9c\\x56\\xed\\x00\\x48\\x3c\\x25\\xc1\\xb4\\x51\\x2e\\x29\\xa3\\x1c\\x9c\\xba\\x78\\x23\\x05\\x7e\\x4c\\x14\\x8b\\x4c\\x37\\xe7\\x61\\x89\\xbd\\x0c\\x9b\\x8e\\xc6\\x63\\xa5\\x57\\xc9\\x06\\xf2\\xd1\\x52\\xe9\\x79\\xeb\\x00\\xc4\\xc7\\xb8\\xe8\\xe2\\x56\\x03\\x89\\x35\\x83\\x77\\xfc\\x5e\\x87\\xc4\\xde\\x4c\\x71\\xe7\\xb9\\xe7\\x03\\x3c\\x38\\xaf\\x09\\xf4\\x6f\\x99\\xd3\\x1b\\x28\\xc3\\xe3\\x3e\\x5c\\x05\\x18\\xd7\\xec\\xb6\\x95\\x83\\x07\\x57\\x86\\xa3\\x89\\x70\\x68\\x8f\\xa6\\xed\\x51\\x8e\\x06\\xf6\\x24\\xf9\\x95\\xe4\\x40\\xf3\\x0a\\x7b\\xf3\\xa1\\xdb\\x0f\\x0d\\x0f\\x0c\\x2a\\x21\\x6d\\x8f\\xa6\\x2c\\xf5\\xe7\\x93\\x6d\\xe7\\xcd\\x99\\xfd\\x37\\xb9\\x5f\\x1a\\x83\\x19\\x7d\\x3e\\x04\\xf3\\x56\\xa6\\xe0\\xc1\\xdd\\x1c\\xb8\\xd8\\xcd\\xab\\x70\\x84\\xad\\xff\\xf0\\xec\\x3b\\x96\\xa6\\xdf\\x3c\\xf3\\xc4\\xcc\\x8c\\x47\\x49\\xcc\\xee\\xdd\\xb7\\x8f\\x1d\\xb9\\xf3\\xcc\\xc2\\x47\\xe2\\xcf\\xc5\\xd9\\xa1\\xd9\\x84\\xe2\\x99\\x81\\xaf\\xde\\x3c\\xbd\\xf4\\x0e\\xf8\\xea\\x67\\xe0\\x3b\\xaf\\x67\\xe1\\xe7\\xe2\\xcf\\xc7\\x24\\x41\\x62\\x8c\\x12\\x71\\x7d\\xb3\\x4c\\x9c\\x78\\x83\\xa6\\x5c\\x1c\\x1c\\x1a\\x61\\x1d\\xcf\\x0b\\xe6\\x74\\x28\\x21\\xa7\\xc9\\xa4\\x64\\x62\\x84\\xb9\\x22\\x2c\\xd6\\x66\\xa9\\xc2\\xed\\xf0\\x41\\x2b\\xa5\\x69\\x14\\xa3\\x0c\\x25\\xe6\\xb0\\xc3\\x25\\xbf\\xa6\\x90\\x97\\x6b\\x11\\xde\\xb2\\x3d\\x43\\x0b\\x56\\xb0\\x85\\x56\\x64\\x7f\\xfb\\x4d\\x67\\xc4\\xbd\\x70\\x7d\\x8b\\xfd\\xcd\\x59\\x21\\xc8\\xf6\\x8d\\x42\\xca\\x3f\\x4c\\x11\\xe0\\xa9\\x0d\\xba\\xf6\\x0d\\x4a\\x6f\\x14\\x52\\x7e\\x85\\x4d\\x6e\\xb6\\x28\\x17\\xac\\x7f\\xd2\\x44\\x95\\x9e\\x93\\x24\\x8e\\x69\\xce\\x9d\\x40\\x73\\x7c\\xa6\\xf1\\xa4\\x08\\x49\\x77\\xb8\\x39\\x75\\xe7\\x42\\x69\\x60\\x53\\x48\\xc7\\x95\\x81\\xcf\\x9c\\x4d\\xb7\\xa2\\x78\\x07\\x3e\\xc1\\x91\\x36\\xfc\\xf3\\x17\\x6b\\xbe\\x39\\x63\\x2e\\x79\\xef\\xa9\\x6e\\xe6\\x22\\x26\\x1e\\x76\\xdd\\xa7\\x36\\x9f\\xb2\\xb2\\x2b\\xa1\\x86\\x5e\\xf7\\xa6\\xdb\\x43\\x6a\\xd2\\xe5\\x70\\xb8\\x92\\xaa\\x7f\\x68\\xfe\\xf8\\xee\\xdb\\xe8\\xb4\\xf1\\xeb\\x04\\x2d\\x74\\x0b\\xa1\\x0b\\xd5\\x01\\x7e\\xee\\x86\\x3d\\x53\\x0c\\x11\\x92\\xa7\\xf6\\xd8\\x07\\xcb\\x03\\x69\\x79\\x6a\\xdf\\xbe\\x29\\x39\\x3d\\xe0\\xf5\\x79\\xe1\\x24\\x33\\x30\\xbd\\x34\\x4d\\x67\\x51\\xf8\\x95\\xfd\\x21\\xa9\\xbe\\x10\\xb3\\x6e\\x54\\x9a\\xd8\\x1a\\x11\\x3d\\x0d\\x13\\x3c\\x5f\\x55\\x3d\\xcd\\xa9\\x3d\\x0f\\xf6\\x88\\xc1\\x2c\\x5a\\xbf\\xb3\\xdb\\x69\\xe4\\x59\\xee\\xde\\xe0\\xc6\\x1a\\x1f\\xd4\\x5c\\x13\\xae\\x31\\xc0\\xe1\\xc9\\x4e\\x4c\\x9d\\x08\\xb2\\x42\\xf5\\xe8\\xdd\\xd5\\xa2\\x10\\x89\\xe6\\xb0\\x9a\\x8c\\xeb\\xe9\\x68\\x34\\xad\\xc7\\xc7\\x43\\xb7\\xeb\\xfa\\xae\\x7f\\xbc\\xfb\\x88\\x30\\x1b\\x21\\x6f\\x69\\x61\\x95\\xc8\\x34\\xd3\\xd9\\x88\\xee\\x05\\x9a\\xfd\\xd8\\x17\\x63\\x13\\xb1\\x58\\x7c\\x22\\x1e\\x8b\\x9f\\xfc\\xe2\\xc9\\x58\\x6c\\xd3\\xd9\\x57\\xe0\\x88\\xae\\xc4\\xe0\\x0c\\xae\\x89\\x67\\xa4\\xf9\\x16\\x62\\x42\\x85\\x39\\xa2\\xcc\\x66\\xd9\\xb9\\x2d\\x03\\xb1\\xb4\\xcf\\x3a\\xd7\\xfb\\xcc\\xa6\\xcc\\x54\\xae\\xac\\x23\\x84\\x6f\\x19\\x7b\\x78\\xd8\\x40\\xd7\\xdd\\x3a\\x5f\\x8b\\x78\\xeb\\xf5\\xf2\\xb8\\x5c\\x8a\\x10\\x55\\x20\\xe7\\xb7\\xe3\\x7e\\xb1\\xb2\\x39\\xb9\\x07\\x64\\xc4\\x86\\xce\\xcd\\xb1\\xd9\\xdb\\x0f\\xfc\\xaa\\x63\\xa0\\x8f\\xa2\\x36\\xfa\\xd2\\xcc\\x6c\\x3c\\x4d\\x7d\\x17\\xad\\x83\\x79\\x2b\\xd4\\xa4\\x1e\\x29\\x46\\xb8\\x41\\x9a\\x34\\x29\\x1d\\x90\\x4e\\x20\\xfd\\x2f\\xcb\\x10\\x3a\\x10\\xbd\\x84\\x72\\xe4\\x6a\\xc3\\x4f\\xed\\xf3\\x00\\x0e\\x60\\x61\\x2b\\xb4\\xd9\\xc2\\xc2\\xbc\\xd5\\x62\\x3f\\x76\\x25\\x3d\\x6c\\xcc\\xe9\\x56\\x86\\x61\\xe7\\x70\\x07\\xce\\x0f\\x7b\\x1c\\xa3\\xb0\\x77\\x58\\xfb\\x0e\\x1c\\xc0\\xf0\\x79\\xc7\\xb7\\xb9\\x6e\\xc8\\x18\\x0a\\x04\\xfb\\x86\\x5c\\x97\\x29\\xf8\\x20\\x7b\\x47\\x62\\xaa\\xc3\\x17\\x55\\x86\\x27\\x3b\\xba\\xa3\\x41\\x96\\x9c\\x84\\x93\\x20\\xe3\\x67\\x8d\\xaf\\x9b\\xd6\\x5f\\xb5\\x4a\\x14\\x08\\x40\\xd6\\xf4\\x25\\xdd\\x77\\xe3\\xef\\xa0\\xb9\\xdd\\x6d\\xf1\\xb6\\x7b\\x6d\\xbb\\x21\\x3f\\x6c\\xea\\x0e\\x3e\\xdc\\x55\\x0a\\xe4\\x64\\xab\\xef\\xfb\\xc3\\x7c\\xc5\\x46\\xb7\\xed\\x32\\x93\\x0c\\xa5\\x5c\\xde\\xf8\\xd5\\x5f\\x65\\x64\\x35\\xcc\\x97\\x6b\\x41\\xf7\\x58\\x23\\xcb\\xa4\\x33\\xd2\\xdb\\x24\\x49\\xb2\\x1e\\x9d\\x84\\xac\\x85\\x2c\\x85\\x7d\\x57\\x55\\x0f\\x49\\x5f\\x71\\x76\\x77\\x5b\\xa2\\xd4\\x54\\xdb\\x1e\\xee\\xe3\\xb2\\xd5\\x5c\\xfb\\x5e\\x69\\xbb\\x73\\xbb\\x1f\\x88\\xf7\\x33\\x9d\\xb8\\xcb\\xf7\\xfb\\xba\\x5d\\xbe\\xc3\\x4a\\x22\\x3f\\x36\\x37\\xf0\\x9c\\xc7\\xd9\\xed\\xeb\\xea\\x06\\x63\\xce\\x6e\\xe6\\x57\\x01\\x28\\xbd\\xbb\\x4b\\x1d\\x68\\xdf\\x8b\\xc7\\xe2\\xbe\\xed\\xda\\xb4\\xda\\xd5\\xdd\\xd3\\xa5\\xaa\\xdb\\x5c\\x1a\\x80\\x3d\\xe3\\xac\\x6a\\xd1\\xeb\\x74\\x1f\\x0e\\x25\\xf2\\x81\\x81\\x67\\x5d\\xcc\\xeb\\xed\\xee\\xf6\\xae\\xf4\\xc8\\x72\\x8f\\xbd\\xe9\\x7c\\xc7\\xb7\\x17\\x76\\xfc\\x46\\x12\\xa4\\x56\\x3c\\x4e\\x40\\x88\\x62\\x32\\x36\\xd9\\x20\\x52\\xb5\\x64\\xf7\\x95\\x5c\\x0d\\xd3\\x55\\xda\\xe7\\x82\\x19\\x09\\xde\\xdd\\x5a\\xa3\\xc4\\x2e\\x76\\xdf\\xb1\\x7f\\xff\\x1d\\xdd\\x9d\\x32\\xbe\\x2b\\xf9\\xf7\\x34\\x8e\\xe7\\xac\\x70\\x0b\\x71\\xf2\\x24\\x9a\\x90\\x66\\x28\\x36\\x1b\\x10\\xe3\\x44\\x25\\x2b\\xc3\\x24\\x99\\xcb\\xd9\\x06\\xaf\\xa9\\x42\\xc8\\x3e\\xca\\x73\\x91\\x3f\\xf4\\x9d\\x02\\x6c\\xe9\\x02\\x93\\x49\\xce\\x51\\xde\\xb7\\x6f\\x7e\\x48\\xd3\\x86\\xfc\\x21\\xb5\\x2f\\x19\\x1b\\x07\\xe8\\xb7\\x3d\\xb1\\x74\\x62\\x66\\xa4\\x4f\\x4d\\x64\\xc9\\x9d\\xa8\\xf1\\x48\\x84\\x95\\xa3\\x95\\x7a\\xe5\\xc7\\xf6\\xdd\\xa2\\xef\\xd6\\x12\\x4a\\x9f\\x3f\\x92\\x1d\\x1c\\x8e\\x06\\xd5\\xb3\\x3d\\xbb\\x47\\xc6\\xc7\\x47\\x72\\x09\\xd5\\x1f\\xfb\\x32\\x70\\x89\\xf5\\x68\\xa3\\x12\\xbd\\x62\\x70\\x5f\\xd0\\x32\\xd5\\x32\\xc4\\xed\\x37\\x51\\xba\\xca\\x9a\\x75\\x4a\\x89\\x55\\xdd\\x5c\\x41\\xda\\x85\\x94\\x56\\x35\\xb1\\x69\\x4a\\x71\\x1d\\xaa\\x95\\xb4\\x6b\\x79\\x9b\\x55\\x3f\\xb5\\x6f\\x48\\xb3\\xab\\x88\\xb6\\x3a\\x40\\x06\\x0c\\xa5\\x06\\x83\\xaa\\x5d\\xc9\\x7c\\xcf\\xee\\xd4\\xf4\\xf4\\xc8\\x2c\\x54\\x0f\\x1e\\x46\\x1b\\x8a\\xfd\\xba\\x81\\x7f\\x62\\xb4\\x05\\x9a\\x85\\x3c\\x32\\x9a\\x42\\x84\\xdc\\xb3\\xc8\\x7b\\x80\\xb2\\x4a\\xc6\\x0b\\x99\\x0c\\x03\\x8d\\x52\\x42\\xf3\\x1e\\x3c\\xd8\\xf8\\xf6\\xa1\\x4b\\xc9\\xe4\\xa5\\x43\\xaf\\x3b\\xe9\\x0f\\x2b\\xca\\xc9\\xd7\\xb1\\x9c\\x3a\\x3c\\xac\\xbe\\xee\\xe0\\xc1\\xfb\\x0e\\xe4\\x72\\x07\\x6e\\x7a\\x77\\xd4\\xe3\\x76\\x7a\\xa3\\xef\\x96\\x58\\x53\\xa2\\x7c\\x23\\xbe\\x63\\xb2\\x54\\xc4\\x70\\x7f\\x53\\x0e\\x59\\x45\\x44\\x00\\xd8\\xe3\\x0e\\xec\\x2f\\x65\\x35\\x44\\x3c\\x1f\\xdf\\xe7\\xc9\\x43\\x2a\\x19\\x2a\\x64\\x0a\\xb0\\xfe\\xc1\\x94\\x95\\x85\\xc1\\x01\\x24\\x0c\\xf4\\x12\\x35\\x06\\xbf\\x51\\xd9\\x35\\xc6\\xc2\\x0e\\x47\\xaf\\xec\\xe8\\x70\\xf4\\xa8\\x53\\x7e\\x57\\xd0\\xe1\\x08\\x76\\x86\\x5d\\x8a\\x4b\\x7d\\x26\\xe5\\x75\\x78\\x82\\x4e\\x36\\x08\\x73\\x91\\x27\\xe4\\xea\\x56\\x54\\xd6\\x3f\\x3d\\xe5\\xed\\x19\\xf4\\xca\\x1d\\x8e\\x8e\\x11\\xe6\\xf0\\x39\\x5c\\x43\\x63\\xb2\\xcb\\x29\\xbb\\x99\\x83\\x2d\\x31\\x27\\x4b\\x38\\x9c\\x21\\x97\\x2b\\xe6\\xbe\\xf4\\xac\\xcb\\x79\\xc6\\x7f\\xa7\\xd3\\xf5\\xcc\\x81\\x43\\x6e\\xc7\\xbd\\xd9\\x3d\\x6e\\xc7\\xc2\\xd9\\xf7\\x75\\x28\\x6c\\x38\\xd4\\x13\\x74\\xbb\\xba\\xe4\\xc1\\x1e\\xe6\\x04\\xd9\\x4f\\x1a\\x70\\x04\\xbc\\xbd\\x5e\\xb7\\xe3\\xff\\x0f\\x5f\\x5d\\xb1\\x80\\x00\\x00\\x78\\x01\\x63\\x60\\x64\\x60\\x60\\x60\\x64\\xba\\x30\\x65\\x7a\\xf6\\xb2\\x78\\x7e\\x9b\\xaf\\x0c\\x9c\\x4c\\x0c\\x20\\x70\\xe9\\xde\\xe2\\x53\\x60\\xfa\\x3e\\xe3\\x56\\x06\\x86\\xff\\xff\\x98\\x18\\x98\\x58\\x80\\x5c\\x0e\\x06\\xb0\\x34\\x00\\x77\\x1b\\x0c\\x4e\\x00\\x00\\x00\\x78\\x01\\x63\\x60\\x64\\x60\\x60\\x62\\x00\\x02\\x38\\x09\\x14\\x41\\x05\\xcc\\x00\\x00\\xf7\\x00\\x0c\\x00\\x00\\x00\\x78\\x01\\xad\\x94\\x35\\x92\\x18\\x31\\x10\\x45\\xdf\\x6e\\x62\\x66\\xab\\xca\\x89\\x99\\x99\\x99\\x14\\x9a\\x52\\x99\\x99\\x6d\\x1d\\x60\\x53\\x65\\x3e\\xc1\\xa4\\x4e\\x4d\\x07\\xf0\\x49\\xf6\\x3c\\x86\\xae\\x57\\x6d\\xce\\x3c\\x7f\\x40\\x1a\\x75\\xff\\x6e\\xfd\\x96\\x34\\x0b\\xab\\x00\\x66\\xf9\\xaf\\xd7\\x5e\\xf6\\x52\\xa8\\xec\\xa5\\x52\\x69\\xf1\\x1c\\xcf\\x5e\\xa7\\xc7\\x58\\x80\\xc2\\x5e\\x46\\xb4\\x3e\\xe1\\xbf\\x18\\x2d\\x5a\\x37\\x06\\x43\\x1b\\xc7\\xe8\\x4c\\x54\\xf9\\xb7\\x50\\x68\\x24\\x28\\x14\\x2d\\xb3\\x1d\\xdf\\x7d\\xb2\\x06\\xc2\\x33\\xde\\x40\\x63\\x8e\\x4a\\xa7\\x11\\xec\\xf1\\x6e\\xf1\\xed\\x46\\xe9\\x32\\x1e\\x8d\\x1e\\x71\\xdd\\xa1\\xd0\\x29\\x8e\\x41\\xd1\\xeb\\x82\\xfc\\x80\\xb3\\x95\\x13\\x92\\x29\\x58\\x8d\\x79\\x3e\\xb5\\xd8\\x9c\\xa3\\x50\\xd3\\x26\\x3d\\xd4\\x4a\\x88\\x29\\xd1\\x55\\x7a\\x85\\xd8\\x4b\\x8b\\xac\\x12\\xc1\\xb0\\x90\\x60\\x33\\xf7\\x19\\x9a\\x9c\\x47\\x83\\x7d\\x21\\x8b\\xc2\\xe2\\x39\\x04\\xf7\\x1b\\xf3\\x80\\xfa\\x0f\\x4c\\x31\\xd3\\xa6\\xc5\\x60\\x53\\xd4\\xb9\\xa9\\x5c\\x8f\\xd6\\x88\\xc8\\xaa\\x4b\\x65\\x2e\\xe7\\x5e\\x69\\xe2\\x46\\x64\\x72\\x35\\xec\\x8e\\xab\\x13\\xf1\\xe0\\xd5\\x55\\xc2\\x7a\\x82\\x3a\\x8f\\x54\\x67\\xf0\\x89\\xcf\\x11\\x6d\\x68\\xd5\\xf1\\xca\\x75\\x87\\x99\\xda\\x8f\\xa8\\x55\\xc6\\x86\\x2d\\x35\\xea\\x72\\x1f\\x37\\xa3\\x91\\xda\\x5a\\x31\\x73\\xb2\\x52\\x7e\\x89\\x6f\\xa1\\x0a\\x75\\x48\\xbb\\xe6\\xf3\\x9e\\xf2\\x27\\xf4\\x23\\xd7\\xec\\x61\\xf3\\x9b\\xcc\\x19\\xf6\\xb2\\x81\\x1a\\xa3\\x7b\\x62\\xc4\\x58\\xd9\\x12\\x66\\x38\\xe8\\xec\\x0d\\x5d\\xaa\\xf3\\x6a\\xe4\\xfa\\xd6\\x67\\x75\\xa8\\x5f\\x29\\xac\\x23\\xf7\\x18\\x70\\x8b\\xca\\x76\\xa2\\x1f\\x20\\x35\\x2f\\xe2\\x9a\\x35\\x32\\x76\\xb4\\x5b\\x78\\xb5\\xc0\\xc8\\x73\\x20\\x79\\x7d\\xaa\\xca\\x87\\xea\\xe6\\x33\\x7e\\xc9\\xfc\\x0c\\xe1\\xab\\x9a\\x0f\\xd5\\xfa\\x8c\\xfd\\xc6\\x05\\xcf\\x91\\x4e\\xf8\\xab\\x6d\\x8f\\x77\\x8b\\x75\\x39\\x05\\xeb\\xe5\\x98\\x7d\\x67\\x30\\xf4\\x68\\xcc\\x73\\x9d\\xb7\\xdf\\xd0\\xe8\\xe6\\x39\\x17\\x23\\x66\\x29\\x72\\x5f\\x0b\\xc2\\x37\\x94\\x73\\xdf\\x76\\xdc\\xd7\\x51\\x8d\\x4d\\x14\\xb2\\xca\\xa9\\xd2\\xa0\\x51\\x9c\\x6d\\x0b\\x8b\\x79\\x19\\xf2\\xa4\\x03\\xa3\\x35\\xf9\\x73\\x25\\xea\\x6b\\x5f\\x9d\\x84\\x91\\x04\\x33\\xd4\\xdf\\xce\\x89\\xad\\x8e\\xe4\\x0c\\x44\\x83\\x5c\\xfd\\xcb\\xb5\\x2d\\x32\\xbb\\x2f\\xb9\\xcc\\xa2\\xe4\\x17\\xe6\\x51\\xe9\\xbf\\x9d\\xdd\\x43\\x5f\\x6b\\x99\\xf5\\x4d\\xad\\xac\\x99\\x59\\x43\\xc4\\x20\\x5a\\x85\\x25\\x19\\xc5\\x39\\xab\\xea\\x7e\\x2d\\x07\\x85\\x55\\x14\\x47\\x8a\\x2a\\xdc\\xa6\\xa7\\xc2\\x7b\\x39\\x96\\x6b\\xba\\x92\\xff\\x3d\\xff\\xc9\\xe8\\xc5\\x18\\xdd\\x5a\\xb7\\x7c\\x84\\x9e\\x7b\\x13\\x9e\\xbd\\xc9\\x70\\x9c\\x9d\\x0c\\xbd\\x6f\\x7b\\xd6\\xf7\\x88\\xf1\\xcc\\xac\\xb5\\x87\\x60\\xfb\\x94\\x55\\xb7\\x7e\\xee\\x10\\xcc\\x12\\x2e\\x86\\x7d\\x51\\x27\\x33\\x4a\\xf0\\x15\\x69\\x21\\xd0\\x31\\x00\\x00\\x00\\x78\\x01\\x1c\\xc1\\x03\\x14\\xe3\\x40\\x14\\x00\\xc0\\xbf\\x71\\x52\\x6f\\x1d\\xa3\\x3e\\xdb\\xb6\\x6d\\xdb\\xb6\\x6d\\xdb\\xb6\\xed\\xa7\\xb3\\x6d\\xdb\\xb6\\x3d\\x03\\x00\\xf8\\x7f\\x11\\x4c\\x48\\x41\\x66\\xc8\\x0d\\x85\\xa1\\x34\\x54\\x86\\xda\\xd0\\x18\\x5a\\x43\\x67\\xe8\\x0d\\x83\\x61\\x34\\x4c\\x86\\xd9\\xb0\\x18\\x56\\xc3\\x66\\xd8\\x0d\\xfb\\xe0\\x18\\x9c\\x83\\x6b\\x70\\x0f\\x9e\\xc1\\x3b\\xf8\\x86\\x08\\x24\\x20\\x8c\\x44\\x64\\xa2\\x14\\xca\\x8c\\x72\\xa3\\x1a\\xa8\\x3f\\x9a\\x8e\\x4e\\xa2\\x8f\\x44\\x7e\\x62\\x12\\xb1\\x8a\\x38\\x4f\\x3c\\x24\\x3e\\x91\\x32\\xd9\\x8e\\xdc\\x42\\xde\\xa3\\x1c\\x54\\x29\\x6a\\x04\\xb5\\x9e\\x7a\\x48\\x6b\\x74\\x6d\\x7a\\x0c\\xbd\\x95\\x3e\\x4c\\x3f\\x60\\xec\\x4c\\x88\\xc9\\xc0\\x54\\x62\\x7a\\x30\\xeb\\x99\\xab\\xac\\x8b\\x2d\\xcf\\xb6\\x65\\xa7\\xb0\\x5b\\xd9\\xab\\xec\\x73\\xf6\\x17\\x97\\x9d\\x2b\\xca\\x75\\xe3\\xf6\\x71\\x6f\\x78\\x0f\\x9f\\x8b\\xaf\\xc0\\x37\\xe0\\xe7\\xf1\\x07\\xf9\\x77\\x42\\x7a\\xa1\\xae\\x30\\x42\\xf8\\x64\\x5b\\x65\\x17\\xec\\xbd\\x1c\\x19\\x1c\\x93\\x1d\\x47\\x9c\\x61\\x67\\x53\\xe7\\x10\\xe7\\x36\\xe7\\x21\\xe7\\x33\\x97\\xea\\x2a\\xeb\\xea\\xe8\\x5a\\xed\\xba\\xe2\\xd6\\xdc\\x85\\xdd\\x43\\xdc\\xcb\\xdc\\x47\\xdc\\x6f\\x3c\\xd8\\x93\\xc9\\xd3\\xc0\\x33\\xd8\\x73\\x05\\x53\\x38\\x3b\\x2e\\x85\\x9b\\xe2\\xde\\x78\\x1c\\x5e\\x8d\\x2f\\xe2\\xd7\\x5e\\xc5\\x5b\\xdb\\xbb\\xc2\\xa7\\xf8\\x0a\\xfb\\xda\\xf9\\x86\\xfb\\xf6\\xf8\\x7e\\xfa\\xb3\\xfb\\xeb\\xfb\\xc7\\xfa\\x97\\xfb\\x8f\\xfa\\x5f\\x04\\x42\\x81\\xde\\x81\\xfd\\x41\\x2a\\x58\\x2a\\x38\\x28\\xb8\\x34\\x78\\x28\\xf8\\x34\\x64\\x0b\\xe5\\x09\\x35\\x0b\\xcd\\x0d\\xed\\x0f\\x7d\\x0b\\x17\\x0e\\xf7\\x0d\\x7f\\x12\\x2d\\xb1\\x9e\\x38\\x52\\xdc\\x22\\xbe\\x93\\x58\\x29\\x83\\x54\\x44\\x6a\\x2b\\x8d\\x91\\xb6\\x49\\x4f\\xe4\\xa0\\x5c\\x50\\xae\\x2d\\x8f\\x92\\xaf\\x29\\x3e\\x25\\x8b\\x52\\x4d\\x69\\xaf\\x0c\\x56\\xa6\\x28\\x9f\\x55\\x5d\\xad\\xaa\\xf6\\x52\\xe7\\xab\\xbb\\xd5\\xc3\\xea\\x2d\\x0d\\x34\\x9f\\x96\\x59\\xab\\xa6\\x0d\\xd4\\xde\\xeb\\x94\\x2e\\xeb\\xb9\\xf5\\xea\\xfa\\x50\\x7d\\x87\\xfe\\xd4\\x50\\x8c\\x1a\\xc6\\x70\\x63\\x8b\\xf1\\xd8\\x94\\xcc\\xc2\\x66\\x1f\\x73\\xa5\\x79\\xd2\\xfc\\x62\\x69\\x56\\x01\\xab\\x81\\xb5\\xc0\\xda\\x6f\\x7d\\x8a\\x18\\x91\\xda\\x91\\x11\\x91\\xdd\\x91\\xbb\\x51\\x3a\\x9a\\x2d\\xda\\x39\\xba\\x38\\x7a\\x37\\xa6\\xc4\\xca\\xc7\\x66\\xc6\\xee\\xc5\\xbd\\xf1\\x5c\\xf1\\xe2\\xf1\\xba\\xf1\\x05\\xf1\\x47\\x09\\x2a\\x51\\x26\\x31\\x39\\xf1\\x2e\\x99\\x23\\xd9\\x28\\x39\\x3f\\xb9\\x26\\x79\\x20\\xf9\\x38\\xf9\\x3d\\xe5\\x4b\\x59\\xa9\\xce\\xa9\\x69\\xa9\\x3f\\x04\\xc1\\x03\\xb4\\x55\\x01\\x00\\x00\\xb0\\x6c\\xdb\\xf6\\xd3\\xb5\\x6d\\x2b\\xdb\\xb6\\x6d\\xdb\\xb6\\x6d\\xdb\\xb6\\x6d\\x77\\x98\\x5d\\x7f\\x3b\\x5a\\xe3\\x77\\x8c\\x8c\\x8d\\x8f\\x1d\\x8f\\xfd\\x8e\\x97\\x8b\\x8f\\x49\\xa4\\x4f\\x54\\x4e\\x8c\\x4f\\x3c\\x4d\\xea\\xc9\\x7e\\xc9\\xc7\\xa9\\x82\\xa9\\x01\\xa9\\x67\\x40\\x66\\x20\\x06\\x84\\x40\\x3f\\x60\\x25\\x70\\x06\\xf8\\x0f\\x56\\x02\\x25\\xb0\\x23\\x38\\x1b\\xdc\\x00\\x5e\\x87\\x72\\x41\\x06\\xd4\\x1b\\x9a\\x02\\xad\\x87\\xce\\x40\\xef\\xe0\\x1c\\x70\\x0d\\x58\\x84\\x3b\\xc3\\x0b\\xe1\\x83\\xf0\\x77\\xa4\\x2a\\xd2\\x10\\x19\\x8a\\x2c\\x40\\x76\\x23\\xb7\\x90\\x0f\\xc8\\x1f\\xd4\\x46\\x5b\\xa0\\x23\\xd1\\x05\\xe8\\x69\\xf4\\x2f\\x96\\x17\\x6b\\x8a\\x8d\\xc6\\xb6\\x61\\x27\\xb0\\x27\\x78\\x29\\x3c\\x89\\x37\\xc3\\x87\\xe3\\x9b\\xf0\\x3b\\xf8\\x7f\\x42\\x26\\x06\\x13\\x6b\\x89\\x23\\xc4\\x2d\\xe2\\x13\\x59\\x94\\xb4\\xc8\\xde\\xe4\\x56\\xf2\\x0b\\x55\\x9c\\x92\\xa8\\xce\\xd4\\x4e\\xea\\x01\\x9d\\x8e\\xae\\x4c\\x7b\\xf4\\x1a\\x7a\\x2f\\x7d\\x8e\\xbe\\x47\\xbf\\xa3\\xff\\x32\\x05\\x99\\xae\\xcc\\x58\\x66\\x05\\x73\\x99\\xf9\\xc4\\xe6\\x65\\x15\\xb6\\x23\\xbb\\x87\\xbd\\xcb\\xfe\\xe7\\xe2\\x5c\\x23\\x6e\\x21\\xf7\\x86\\xcf\\xcf\\x23\\x7c\\x37\\x7e\\x06\\x7f\\x5d\\x28\\x21\\x70\\x42\\x5b\\x61\\xb6\\x70\\x58\\x78\\x2d\\x66\\x13\\x93\\xa2\\x23\\x2e\\x10\\xef\\x4b\\xf9\\x24\\x52\\x6a\\x23\\x0d\\x90\\x66\\xcb\\x31\\xf9\\x88\\xb2\\x48\\x9d\\xa6\\x2e\\x57\\x0f\\xaa\\xb7\\xb5\\xcc\\x5a\\x5c\\x0b\\xb4\\x91\\xda\\x76\\xed\\x9e\\x5e\\x4c\\xf7\\xf4\\xc9\\xfa\\x29\\x23\\x8f\\xe1\\x18\\xb3\\x8d\\x33\\x66\\x41\\x93\\x36\\x3b\\x99\\x73\\xcc\\xeb\\xe6\\x27\\xab\\x88\\x45\\x5b\\x8d\\xad\\x21\\xd6\\x0a\\xeb\\xb6\\xf5\\xdd\\xae\\x68\\xab\\x76\\x7b\\x7b\\x84\\x3d\\xdb\\xde\\x65\\x7f\\x70\\xd2\\x39\\x90\\x13\\x38\\xb3\\x9d\\x5b\\x6e\\x6e\\xb7\\x8e\\xbb\\xda\\x7d\\xe2\\x95\\xf4\\x5a\\x78\\xdb\\xbc\\x0f\\xbe\\xe5\\xcf\\xf7\\x3f\\x05\\xc5\\x83\\xba\\xc1\\x9c\\xe0\\x5c\\xf0\\x30\\xcc\\x15\\x76\\x0a\\x2f\\x47\\xf9\\x22\\x28\\x0a\\xa2\\xe6\\xd1\\xc6\\x9a\\x69\\x04\\xc1\\x03\\x00\\x14\\x01\\x00\\x00\\xb0\\x6c\\xdb\\xb6\\x6d\\xdb\\x7e\\xdb\\xd6\\xd9\\x66\\xb6\\x6d\\xdb\\xb6\\x6d\\xdb\\xb6\\xb5\\x15\\x1c\\x1e\\x1f\\x7e\\x72\\x44\\xb9\\x11\\xee\\x11\\x73\\x46\\x1c\\x19\\xf1\\xc6\\xe0\\x35\\x28\\x86\\x7d\\x86\\xcf\\xc6\\xdc\\xc6\\x1e\\xc6\\x29\\xc6\\x65\\xc6\\xfb\\xa6\\x9c\\xa6\\x86\\x26\\xa7\\x69\\xba\\x69\\xb7\\xe9\\xbd\\xb9\\x92\\xd9\\x63\\xd6\\xcc\\x0b\\xcc\\x7b\\xcd\\x9f\\x2d\\x39\\x2d\\xa5\\x2c\\x3e\\x8b\\x6a\\x59\\x6c\\xb9\\x66\\xcd\\x63\\x6d\\x6f\\x75\\x59\\x47\\x5a\\xf7\\x5b\\x3f\\xd8\\x06\\xd8\\x14\\xdb\\x46\\xdb\\x53\\x7b\\x15\\xbb\\xc5\\x2e\\xd8\\x37\\xd9\\x3f\\x39\\xaa\\x3a\\x86\\x38\\x46\\x3b\\x76\\x3b\\x9e\\x38\\xfd\\xce\\x47\\xae\\x92\\x2e\\xb7\\x6b\\xa9\\xeb\\xb2\\x3b\\xaf\\x7b\\xb0\\x3b\\xec\\x9e\\xeb\\xde\\xe7\\xfe\\xe6\\xe9\\xe0\\x89\\x7b\\xc6\\x7b\\xde\\x7b\\x0d\\x5e\\xca\\xbb\\xc1\\xfb\\xc3\\xd7\\xcb\\xa7\\xf9\\x4e\\xfa\\xb3\\xfb\\x9b\\xf9\\x4d\\x7e\\xd1\\x7f\\x2f\\x50\\x2b\\x10\\x09\\x6c\\x0f\\x7c\\x0b\\xd6\\x0a\\x06\\x82\\x33\\x82\\x7b\\x83\\x0f\\x43\\x59\\x42\\x4d\\x43\\xc3\\x43\\xb3\\x42\\x57\\x42\\x1f\\xc3\\x65\\xc3\\x7a\\x78\\x7b\\xf8\\x49\\xa4\\x7d\\x44\\x89\\x1c\\x8f\\x7c\\x88\\x96\\x8c\\xda\\xa2\\x44\\x74\\x53\\xf4\\x53\\xac\\x62\\xac\\x43\\xcc\\x1f\\x1b\\x1f\\xdb\\x12\\x7b\\x17\\x2f\\x11\\xef\\x1e\\x4f\\xc7\\x97\\xc6\\x1f\\x27\\xea\\x27\\xdc\\x09\\x25\\x71\\x30\\x71\\x39\\xf1\\x2f\\x59\\x3b\\x69\\x48\\x0a\\xc9\\x6d\\xc9\\x5b\\xc9\\xb7\\xa9\\xa1\\x29\\x25\\xb5\\x21\\xf5\\x28\\xf5\\x39\\x5d\\x27\\x6d\\x49\\x0b\\xe9\\xb3\\xe9\\x7f\\x99\\x21\\x99\\x69\\x99\\x2b\\x40\\x45\\xc0\\x00\\x44\\x01\\x04\\x18\\x03\\xcc\\x00\\xd6\\x02\\x97\\x80\\xc7\\xc0\\x17\\x30\\x17\\x58\\x05\\x6c\\x0a\\x76\\x03\\x83\\xe0\\x28\\x70\\x31\\x78\\x1a\\xfc\\x04\\x95\\x83\\x5a\\x41\\x43\\xa1\\x20\\x44\\x41\\x13\\xa1\\x65\\xd0\\x5e\\xe8\\x0a\\x5c\\x12\\x1e\\x04\\x63\\xf0\\x02\\xf8\\x24\\x52\\x10\\xe9\\x86\\x70\\xc8\\x56\\xe4\\x31\\x9a\\x0b\\xed\\x8e\\x72\\xe8\\x29\\x2c\\x2b\\xd6\\x1d\\x9b\\x82\\x5d\\xc6\\x0b\\xe2\\xad\\x71\\x07\\xae\\xe2\\x6b\\xf0\\xdb\\x44\\x15\\xc2\\x46\\xa8\\xc4\\x61\\x32\\x37\\xd9\\x85\\xf4\\x93\\x27\\xc8\\x0f\\x54\\x45\\xaa\\x23\\x95\\xa4\\x66\\x51\\xa7\\xe9\\x62\\xf4\\x10\\x7a\\x14\\xbd\\x8f\\x7e\\xc3\\x94\\x64\\x5a\\x32\\x20\\x33\\x93\\xb9\\xca\\x56\\x60\\x87\\xb3\\x13\\xd9\\x03\\xec\\x75\\xf6\\x1d\\x57\\x98\\x6b\\xcb\\xf9\\xb8\\x31\\xdc\\x7c\\xee\\x17\\x3f\\x94\\xd7\\xf9\\xb3\\x42\\x71\\x61\\xb0\\x30\\x4a\\xd8\\x22\\x3c\\x17\\x6b\\x89\\x3e\\x71\\xa6\\x78\\x5e\\x2a\\x29\\x0d\\x94\\x56\\x48\\x47\\xa4\\x77\\x72\\x75\\xb9\\xab\\x9c\\x90\\x57\\xca\\x47\\xe4\\xbf\\x4a\\x13\\x25\\xa3\\xac\\x50\\x5e\\xaa\\xad\\xd4\\xb4\\x3a\\x55\\xdd\\xa9\\x5e\\x53\\xff\\x69\\xa5\\xb4\\xd6\\x9a\\x53\\x3b\\xa5\\xbd\\xd6\\x8b\\xe9\\x7d\\x75\\x42\\xff\\x5f\\x10\\x3c\\x40\\x59\\x11\\x00\\x00\\x00\\xcc\\xb6\\x6d\\xdb\\x76\\x8f\\xd9\\xb6\\x6d\\xdb\\x5e\\xdb\\xf6\\x37\\x37\\xdb\\xb6\\x6d\\xdb\\xba\\x19\\x75\\xeb\\xe7\\x6d\\x35\\xb7\\x8d\\xd9\\x16\\xdb\\xf6\\x7c\\x7b\\xbf\\xed\\x8b\\xb7\\xbb\\xdb\\xaf\\xed\\x28\\xb1\\x63\\xf8\\x0e\\x62\\xc7\\x39\\x20\\x07\\xd0\\x01\\x98\\x09\\x50\\xc0\\x2e\\xe0\\x22\\xf0\\x01\\xec\\x00\\x4e\\x01\\x29\\xd0\\x05\\x8f\\x82\\xdf\\xa1\\x32\\x50\\x73\\x68\\x34\\xb4\\x02\\x12\\xa0\\x13\\x70\\x01\\xb8\\x22\\xdc\\x11\\x9e\\x0d\\xab\\xf0\\x31\\x24\\x3b\\xd2\\x19\\x19\\x8f\\x58\\xc8\\x59\\x34\\x33\\xda\\x02\\xc5\\xd1\\xbb\\xe8\\x17\\x2c\\x2f\\xd6\\x11\\x9b\\x8f\\x69\\xd8\\x45\\xec\\x29\\x9e\\x07\\xaf\\x88\\x0f\\xc5\\x17\\xe3\\x12\\x7e\\x06\\x7f\\x45\\x64\\x23\\x6a\\x10\\xdb\\x88\\x24\\x71\\x9f\\x2c\\x4d\\x0e\\x22\\x49\\xf2\\x06\\xf9\\x87\\xaa\\x43\\x0d\\xa6\\xd6\\x51\\x61\\xea\\x25\\x5d\\x94\\x1e\\x44\\xc3\\x4c\\x36\\xa6\\x31\\x33\\x91\\x61\\x98\\xb3\\xcc\\x6b\\xb6\\x38\\xdb\\x84\\x1d\\xca\\x6e\\x61\\xc3\\xec\\x2d\\xae\\x1c\\xb7\\x9c\\xc3\\xb8\\x83\\xdc\\x4b\\xbe\\x10\\xdf\\x86\\xe7\\x85\\x62\\x42\\x57\\x61\\xb1\\xe0\\x08\\xaf\\xc5\\x92\\x62\\x7f\\x31\\x2e\\x15\\x95\\xda\\x4b\\x84\\x74\\x5e\\xce\\x27\\x77\\x91\\xd7\\xc9\\xfb\\xe4\\x17\\x4a\\x25\\x65\\x90\\x42\\x2b\\x57\\x94\\xef\\x6a\\x69\\xb5\\xbd\\x3a\\x5c\\x85\\x55\\x47\\x3d\\xa4\\x3e\\xd3\\x8a\\x6b\\x6d\\x34\\x49\\xbb\\xaf\\xe7\\xd7\\xdb\\xea\\x6b\\x75\\x4f\\xbf\\x63\\xe4\\x31\\x06\\x1a\\x90\\x61\\x19\\xbe\\x71\\xc1\\x78\\x6e\\xe6\\x30\\xab\\x9b\\x03\\xcd\\xd9\\xe6\\x16\\x53\\x35\\x4f\\x99\\xaf\\xac\\x62\\x56\\x5b\\x6b\\x88\\x35\\xdd\\x0a\\x5b\\xb7\\xed\\x06\\x36\\x60\\xef\\xb6\\x7f\\x3b\\x35\\x9c\\x21\\xce\\x74\\x47\\x77\\xee\\x3b\\xff\\xdd\\x96\\xee\\x64\\x57\\x75\\xcf\\xb8\\x5f\\xbc\\x0a\\x5e\\x7b\\x6f\\xa6\\x07\\x79\\x11\\xef\\x41\\xa0\\x5a\\xe0\\x75\\xb0\\x60\\xb0\\x7b\\x70\\x41\\xf0\\x48\\x28\\x5b\\xa8\\x77\\x68\\x6a\\x48\\x0b\\x5d\\x09\\x67\\x09\\x77\\x0d\\x8f\\x0f\\xdb\\xe1\\x13\\x91\\x96\\x91\\x61\\x11\\x28\\x72\\x27\\x5a\\x36\\x3a\\x31\\x4a\\x45\\xa3\\xd1\\xf7\\xb1\\x5a\\x31\\x25\\xf6\\x22\\x5e\\x25\\x3e\\x34\\xbe\\x23\\x7e\\x36\\x51\\x2c\\xd1\\x2f\\xb1\\x21\\x71\\x20\\x59\\x2c\\x09\\x25\\x2f\\xa7\\xb2\\xa7\\x1a\\xa4\\x06\\xa5\\x8e\\xa6\\x7e\\xa6\\xdd\\xf4\\x79\\xbf\\x8a\\x3f\\xd7\\x17\\x76\\xe6\\xcf\\x00\\x4d\\x30\\x30\\x5f\\x00\\x00\\x01\\x00\\x00\\x03\\xcd\\x00\\xb0\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x01\\x00\\x01\\x00\\x00\\x00\\x40\\x00\\x2e\\x00\\x00\\x00\\x00\\x78\\x01\\x7c\\x8e\\x35\\x52\\x03\\x61\\x00\\x46\\x1f\\xee\\xf4\\x38\\x2d\\xee\\x5a\\xe1\\xee\\x0e\\x0d\\xee\\xee\\x7a\\x02\\xce\\x98\\x73\\xa4\\xce\\x9b\\xc9\\x5a\\x95\\xb5\\xcf\\x77\\x7e\\xa0\\x84\\x03\\x0a\\xc8\\x2b\\x2c\\x03\\x8e\\x20\\xe0\\x79\\xd4\\xab\\xb2\\x3c\\x9f\\x6a\\xfe\\x02\\x5e\\xc0\\x06\\xff\\x01\\x2f\\x4c\\x74\\x8a\\xa8\\x25\\x15\\xf0\\x62\\x5a\\x49\\x33\\xc9\\x23\\x4f\\x7c\\xf3\\xc2\\x35\\x97\\x5c\\xf1\\x46\\x33\\xbd\\x74\\xd3\\xc3\\x80\\x6c\\xd6\\xf4\\x51\\xff\\x8e\\x73\\xda\\xd5\\xf3\\x3c\\x70\\x4a\\xa7\\x6c\\x5c\\xef\\x4e\\xdc\\x88\\x76\\xaf\\xa8\\x38\\x17\\xcf\\x79\\xe1\\xc3\\xef\\x99\\xcd\\x65\\x8e\\xcd\\x74\\xb8\\x96\\xb9\\x60\\x9e\\x53\\x1e\\x79\\xb0\\x67\\x9b\\x4b\\xde\\x75\\x8f\\xcd\\x67\\xd0\\xb5\\x2b\\xaa\\x2e\\xcd\\x3c\\x09\\x9d\\x74\\x8b\\xa3\\xbe\\x39\\xfe\\x14\\x34\\x86\\xe9\\x70\\xd1\\x11\\x9c\\x7f\\x90\\x1d\\x6c\\x9b\\x5e\\x63\\x8b\\x66\\xbd\\x4e\\x4c\\xbc\\x33\\x43\\x37\\x0b\\x61\\x92\\x2e\\xaa\\xab\\x00\\x7f\\x67\\x36\\x10\\x00\\x78\\x01\\x63\\x60\\x66\\x00\\x83\\xff\\xcd\\x0c\\x46\\x0c\\x58\\x00\\x00\\x28\\x44\\x01\\xb8\\x00\\x01\\x00\\x00\\xff\\xff\\xac\\xc4\\x23\\xe9\\x14\\xe1\\x00\\x00\")\n\nfunc vendor_material_icons_materialicons_regular_woff() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_material_icons_materialicons_regular_woff,\n\t\t\"vendor/material-icons/MaterialIcons-Regular.woff\",\n\t)\n}\n\nvar _vendor_material_icons_materialicons_regular_woff2 = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x00\\x12\\x40\\xed\\xbf\\x77\\x4f\\x46\\x32\\x00\\x01\\x00\\x00\\x00\\x00\\xad\\x0c\\x00\\x0e\\x00\\x00\\x00\\x01\\xf8\\x1c\\x00\\x00\\xac\\xb1\\x00\\x01\\x02\\xd0\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x24\\x1b\\x36\\x1c\\x81\\xd2\\x50\\x06\\x60\\x00\\x8c\\x02\\x11\\x08\\x0a\\x85\\xeb\\x44\\x84\\xb1\\x0e\\x01\\x36\\x02\\x24\\x03\\x8f\\x20\\x0b\\x8f\\x1c\\x00\\x04\\x20\\x05\\x82\\x7a\\x07\\x20\\x5b\\x55\\x92\\x51\\xa3\\x6c\\xfb\\x44\\x89\\xa0\\xbc\\x01\\x6c\\xbb\\xd6\\xaa\\x7d\\x2a\\xff\\x6c\\x44\\x04\\x1b\\x07\\x19\\xd8\\x83\\x5f\\x18\\x0a\\xb8\\x31\\x74\\x33\\xc6\\x01\\x00\\x9e\\x6f\\x0c\\xd9\\xff\\x7f\\x52\\x72\\x30\\x86\\x02\\xdb\\x40\\x35\\x33\\xdb\\xde\\x0b\\x4e\\xd8\\xa5\\xa2\\xf5\\x6d\\x1b\\xfb\\x36\\x06\\x06\\xcd\\x5a\\xa6\\x28\\xe5\\xa8\\xab\\x63\\x6f\\x68\\x8b\\x8c\\xe0\\xac\\xea\\xab\\x8c\\x9f\\x5c\\xdf\\x39\\xe7\\xaf\\x52\\xff\\xb8\\x75\\x7a\\xcf\\x11\\x9c\\xe6\\x50\\x09\\x87\\x13\\x0a\\x59\\x98\\x6a\\x6f\\x19\\xe3\\x90\\x9b\\x5a\\x6c\\xeb\\xae\\x8a\\x63\\x69\\x4b\\x5b\\xda\\xd2\\x96\\xee\\x0e\\x0c\\xbf\\x27\\x47\\x09\\x57\\x3d\\x5e\\xf7\\xcb\\x7f\\x97\\x5a\\xc6\\xa5\\x8c\\x2a\\xff\\x3f\\xe5\\xe6\\xc5\\x46\\xfc\\xb0\\x11\\xc3\\x64\\xed\\xf7\\x9f\\x87\\xa9\\xd0\\x5d\\x70\\xe3\\x1a\\x58\\x95\\x43\\x81\\x1f\\x98\\x62\\xae\\x54\\x27\\x3a\\x22\\x1e\\xd1\\x6e\\xbd\\x0a\\x28\\xc7\\xe6\\xd4\\x48\\xda\\xf3\\xe4\\x4b\\x1e\\xd9\\x55\\xbd\\x33\\xad\\xaa\\x6a\\x4c\\x0f\\x4e\\xcf\\x1c\\x0a\\x22\\x28\\x49\\x0d\\x44\\x04\\x42\\xfb\\xcf\\xad\\xcf\\x1c\\x17\\x2c\\x3f\\x37\\x2c\\x79\\x10\\x92\\x00\\xcb\\xf6\\x56\\xa7\\x50\\x1d\\x5f\\x55\\x7f\\x1a\\xd3\\xf1\\x6b\\x4c\\x85\\xac\\x90\\xd5\\x6e\\xaf\\xe1\\xaa\\x4c\\x21\\xd0\\x09\\x4c\\x08\\x70\\x34\\x4c\\x96\\x53\\xf3\\x57\\xf7\\x52\\x29\\x31\\xbf\\x2f\\x51\\xe5\\x79\\xfe\\x0f\\x41\\xef\\x7b\\xef\\x67\\xd0\\x9c\\x14\\x4a\\x00\\x03\\x1a\\x91\\xd1\\xb1\\x04\\x7b\\xca\\x73\\x79\\xb1\\x58\\xe0\\x06\\xb0\\x64\\x6b\\x08\\xcf\\xbc\\x24\\x2f\\xa3\\xed\\x1b\\xda\\xf6\\x36\\x07\\x7a\\x9a\\x4d\\x93\\xb4\\x5d\\x77\\x5b\\xdd\\x38\\x8e\\x38\\x71\\x8e\\x37\\x2e\\xe5\\xc5\\x88\\x98\\x8c\\x19\\xb7\\xea\\xa4\\xae\\x3d\\xb2\\xcd\\x1c\\xeb\\xc2\\xb6\\xa8\\x05\\xcb\\x95\\xd4\\xf2\\x6a\\xa9\\xa7\\x6a\\xc1\\x74\\xe2\\x7f\\xe7\\x32\\x97\\x01\\xa1\\x3a\\x23\\xa7\\x36\\xe5\\xf6\\xe6\\xe6\\xe5\\x84\\x45\\xca\\x51\\x0a\\x49\\xbb\\x5f\\xa2\\x14\\x10\\x9e\\xff\\xbf\\xda\\x9d\\x6f\\xbd\\x09\\x77\\xf5\\x59\\xf6\\x56\\xa1\\xe8\\x76\\x02\\x0d\\x23\\x09\\x3c\\xcc\\xb2\\x85\\xe9\\x60\\x7c\\xa6\\x1c\\x24\\x5c\\xdc\\xdf\\x16\\x44\\x92\\x98\\xf4\\xf3\\xbc\\x6e\\xfe\\x01\\x11\\x08\\x33\\x2f\\xe4\\x05\\x08\\x23\\x21\\x20\\x90\\x7b\\xc3\\x12\\x82\\x0a\\x98\\x3c\\x20\\xac\\x04\\x65\\xbd\\xfb\\x18\\x0e\\xd8\\x4a\\xa2\\xe2\\x60\\x39\\xea\\x7b\\xb5\\x56\\xc1\\xb6\\xd6\\xb6\\x09\\x1f\\x68\\xeb\\xea\\xe4\\xc5\\xd6\\xfe\\x5f\\x5b\\xfb\\xc5\\x36\\x74\\x4c\\xb0\\xe3\\x7f\\x92\\xbf\\x1a\\x6d\\x7f\\x7f\\x87\\xf8\\x8d\\x7f\\xd8\\xda\\x69\\x06\\xe7\\xa5\\x3a\\x5c\\x76\\x3e\\xe4\\xda\\x96\\x52\\xfc\\x89\\x70\\xe3\\x2c\\xc1\\x7b\\xf9\\xa5\\xa6\\xb6\\x87\\xeb\\xd2\\xfa\\x64\\x17\\xd1\\xfa\\x2d\\x07\\x58\\xeb\\x22\\xce\\x77\\x90\\x15\\x86\\x09\\xa0\\x0b\\x34\\x61\\x9a\\x00\\x6d\\x01\\x55\\xc0\\x0d\\x90\\x02\\xe8\\x14\\x48\\xaf\\xb7\\x29\\xf1\\x80\\x63\\x43\\x38\\x4e\\xb5\\x17\\xa8\\xca\\x54\\x52\\xf7\\x8d\\x01\\x66\\x36\\xa3\\x6a\\xcb\\x2d\\xa9\\x2d\\x34\\x46\\x03\\x06\\xcc\\xa4\\xbd\\x10\\xf3\\xe3\\x73\\xff\\x57\\x3a\\xeb\\xd7\\xec\\xad\\x6a\\xf7\\xd6\\x41\\x12\\x69\\x82\\x94\\x09\\x76\\x26\\x48\\xc2\\x13\\x09\\x4e\\x80\\xab\\xba\\x30\\xda\\x84\\xfb\\x79\\x74\\xb9\\x56\\x5f\\xbb\\xdf\\xdc\\x5a\\x2d\\x30\\xcc\\x64\\x8c\\x02\\xe0\\x09\\x59\\xc9\\xf6\\xa4\\x24\\xa0\\xba\\x7b\\xf6\\x4d\\x5e\\x36\\x1c\\xe4\\xd4\\xfe\\x67\\xec\\x8f\\x33\\xd2\\xc7\\xb4\\x5d\\x04\\x59\\x6a\\xbb\\x44\\x89\\xb2\\x08\\x8e\\x3d\\x90\\x44\\x97\\x3a\\x6a\\x56\\x97\\xab\\x7d\\xb5\\xaf\\x96\\x9d\\xa6\\xbb\\x1c\\xee\\x02\\x15\\x78\\x19\\xe2\\xf8\\xfd\\xed\\xe7\\x85\\xe7\\xf7\\x2d\\xdd\\x4e\\xce\\xcd\\xbf\\x93\\x10\\x0f\\xdd\\x28\\x8c\\xb9\\xcd\\xa6\\xf4\\x7d\\x79\\x6b\\x2c\\x63\\xff\\x68\\x40\\x81\\xc3\\xe9\\xd2\\x52\\x50\\xf4\\xdf\\x37\\xb5\\x6c\\xf5\\x2f\\x52\\x57\\x2d\\x9d\\xb2\\x9c\\xb2\\x8a\\xce\\xb1\\xdf\\x15\\xb6\\xa8\\xce\\x45\\xe9\\xfc\\xe6\\xcd\\xfb\\x1e\\x3e\\x3e\\x7e\\x70\\xc7\\x73\\x0b\\xdd\\xec\\x68\\x80\\x93\\x28\\xe2\\x96\\xd6\\x0a\\x86\\x9c\\x02\\xff\\x0c\\x0f\\x18\\xce\\xca\\x86\\x28\\x27\\x72\\x44\\x1f\\xc8\\x11\\x65\\x50\\xd2\\x5d\\x2e\\x4a\\x87\\x98\\xcb\\x2b\\x9d\\xbb\\xeb\\x2a\\xbb\\xe8\\x5c\\x94\\x2e\\x6b\\xf7\\x86\\x3b\\x17\\x75\\x65\\x1e\\xbe\\x6e\\xa4\\xfb\\x20\\xc8\\x02\\xfd\\xd8\\x44\\x2b\\x16\\x62\\x13\\x34\\xf3\\xa7\\x0d\\x82\\x04\\xc2\\xc4\\x8e\\xe9\\x80\\x4e\\x4f\\x50\\x4f\\xd0\\xcf\\xf2\\xf7\\xa6\\x78\\xf5\\x5c\\xa1\\x53\\x01\\xa2\\xd1\\x7a\\x32\\xa3\\xd3\\x6a\\xb4\\x28\\xf5\\xbb\\xe0\\xb4\\xc6\\xef\\x5d\\xda\\xcf\\x01\\x94\\x02\\x88\\x09\\x81\\xf9\\xfb\\x52\\xad\\xba\\x22\\xa9\\xa6\\x9a\\x6c\\x4b\\xd5\\x38\\xf5\\xcc\\x1a\\xf5\\x5a\\xd5\\x38\\x73\\x5f\\xef\\x4e\\x73\\xb8\\xee\\xe1\\x92\\xf9\\xfe\\xc7\\x4f\\xe4\\xff\\xf8\\x09\\xe6\\x4f\\x26\\x08\\x64\\x0a\\x12\\x08\\x88\\x12\\x09\\x92\\x12\\x90\\x20\\xab\\x40\\x50\\x54\\x31\\x13\\x09\\x14\\x98\\x64\\x77\\x80\\x10\\x55\\xbe\\x37\\x54\\xae\\x8d\\xaa\\x62\\x56\\xad\\xee\\x1a\\x63\\x41\\x50\\xac\\xa5\\x29\\xd5\\x90\\x54\\x57\\x7b\\x7f\\x5a\\x67\\xab\\xd4\\xaa\\x31\\xce\\x1d\\xd7\\x1f\\x8e\\x73\\x9c\\xbd\\x9e\\xf7\\x7c\\x99\\xc3\\x71\\x4f\\xd7\\x85\\xff\\x6d\\xb9\\xa7\\xf0\\xbd\\xd4\\x21\\x62\\x78\\x88\\x11\\x32\\xdc\\xf9\\xe6\\x17\\x4e\\x97\\xe4\\x27\\x7d\\xc7\\x55\\x4a\\x09\\xc1\\x04\\x61\\x84\\x56\\x08\\x21\\x84\\x56\\x18\\x93\\x37\\x33\\x5f\\x7b\\xfb\\x9d\\x1f\\x7d\\xaf\\x7b\\x98\\xfd\\x99\\xf5\\xbf\\xbb\\xef\\x1a\\x11\\xd1\\x22\\x22\\x22\\x4a\\x94\\x28\\xe5\\x28\\x25\\xe2\\xdd\\xaf\\xe5\\xf7\\x7f\\x18\\x42\\x99\\x4e\\x3a\\x97\\xaa\\x42\\x10\\x01\\x45\\x04\\x7d\\xd3\\x6a\\x5e\\x4d\\x7f\\xf9\\x07\\x59\\xae\\x5a\\xda\\x6a\\xd5\\x75\\x6f\\xaa\\x75\\xa4\\xaf\\x40\\x21\\xbc\\x01\\xf2\\x42\\x02\\x09\\x24\\x3c\\x33\\xf7\\x23\\x73\\xfe\\xff\\xd3\\x0e\\xdb\\x3b\\x96\\xb5\\xd8\\xaa\\x55\\x04\\x54\\x9c\\xa8\\xb0\\xb3\\x4e\\x92\\x93\\xa1\\xff\\x3f\\x0f\\x2b\\x41\\xcc\\xa8\\xea\\x5e\\xa4\\xaf\\x4f\\x3d\\xaa\\xf5\\xe2\\x76\\x44\\x18\\xc4\\x4a\\xe5\\xb3\\xa3\\xcd\\x20\\xb5\\x9f\\xbc\\x1a\\xd0\\x8b\\xe9\\x6a\\x83\\x65\\x06\\xfc\\x0e\\xdc\\xfd\\xc5\\x35\\x5e\\x74\\xc3\\xab\\xd0\\xeb\\x71\\x9f\\x7c\\xd8\\xb9\\xad\\x46\\x17\\x46\\xb4\\xa0\\xfe\\x2f\\xde\\x07\\xff\\x50\\x69\\x98\\x45\\xfb\\x7f\\xc5\\xbd\\x3b\\x4f\\x2c\\x50\\x75\\x68\\x1f\\xe0\\xb4\\xb0\\xbe\\xe8\\x50\\x5e\\x20\\x3a\\x6f\\xad\\xd8\\x38\\x82\\xc3\\xdf\\x75\\x0f\\xea\\xad\\x32\\x4e\\x1d\\x6d\\xdb\\x35\\x76\\x6d\\xf1\\x9c\\xe7\\x3d\\xcd\\x7b\\x3f\\x28\\x61\\x7d\\x84\\x38\\x44\\x61\\x78\\x54\\x23\\x19\\xda\\x34\\xf3\\x5c\\xcd\\x3c\\xa4\\x1c\\x39\\xbb\\xfc\\x75\\xb7\\xea\\xcd\\x77\\x5a\\xaf\\xe1\\xe6\\x29\\xce\\x75\\xce\\xf0\\xa2\\xb9\\x67\\x19\\x4b\\x08\\xa5\\x41\\x58\\x65\\x61\\x79\\x02\\x30\\xdf\\xf0\\xb8\\xc8\\x53\\x45\\xc2\\x84\\x92\\xd9\\x9a\\x73\\xe1\\x57\\x13\\x97\\x8d\\xbc\\x70\\x66\\x70\\x13\\x1f\\x26\\x51\\xb6\\x44\\xa2\\xa6\\x1a\\x2e\\x93\\x04\\xa1\\xf1\\xd3\\x55\\xab\\xad\\x52\\xa3\\x4e\\x7d\\x6d\\xac\\xa4\\xc5\\x3a\\x1f\\xea\\xf4\\xd5\\x20\\x39\\x8a\\xa4\\x01\\xa2\\x02\\x54\\x43\\x4c\\x34\\x4e\\xaa\\x92\\xb8\\x80\\x4a\\x88\\x2a\\x90\\x3c\\xa8\\x5d\\xf5\\xb6\\x4e\\x02\\x32\\xe9\\xa1\\x51\\xa8\\xc0\\xd0\\x5e\\x63\\xb7\\xcf\\x4c\\x6d\\xaa\\x35\\x79\\x0b\\xb7\\x3a\\x05\\xf1\\xc7\\x5b\\x67\\x8b\\x2a\\x86\\x55\\x13\\xca\\x9d\\xd3\\xaa\\x8a\\xea\\xb9\\xbd\\x4e\\x9e\\x0b\\xda\\xb1\\xde\\xb1\\xd5\\x2e\\xe7\\xd7\\xac\\x22\\x0a\\xd4\\xdd\\xd3\\x33\\xcc\\x28\\x25\\xd8\\x77\\x06\\x72\\xaf\\x14\\xbb\\xfb\\xb5\\x16\\x76\\x9e\\x86\\xed\\x61\\x8d\\x41\\x9b\\x3d\\x55\\x95\\x61\\x61\\xa0\\x71\\xd8\\x98\\x02\\x68\\xcc\\xa8\\xf8\\xdc\\x02\\x6e\\xc7\\x7b\\x57\\xb1\\x88\\x3d\\x5c\\x05\\x05\\x11\\x07\\xd6\\x2e\\x51\\x96\\x5f\\x5e\\x05\\x7d\\x93\\xc3\\x0f\\x96\\x32\\x5a\\x01\\xae\\x9d\\x26\\x70\\xd7\\x3a\\x6f\\x28\\xed\\xab\\x0c\\x44\\x8a\\xd8\\xc0\\xb1\\xb6\\xc8\\x88\\x2d\\x52\\xdf\\x2d\\x53\\x0e\\x17\\xf9\\x66\\x53\\x6b\\xc3\\xab\\xd8\\xea\\x85\\x00\\x08\\x2b\\xa1\\x0f\\xdb\\x2a\\x67\\xab\\xa2\\x77\\xcb\\xf7\\x45\\x60\\xb5\\x58\\x53\\xef\\xe6\\x38\\x9a\\xbd\\x6a\\x89\\xb7\\x36\\x4e\\x4f\\xfb\\xcc\\x93\\x60\\x6b\\x0c\\xcb\\x3e\\x62\\x8c\\x3f\\xae\\x9c\\x59\\xbf\\xc9\\xab\\x26\\x9f\\x9e\\x0d\\xf7\\xb6\\xd0\\x23\\x79\\xac\\x6f\\xba\\xd4\\x8c\\x68\\x57\\x11\\xd0\\x0a\\x96\\xbb\\x0c\\x3d\\xe1\\x3d\\x52\\xd2\\x73\\xee\\xc8\\x76\\xd8\\x70\\x12\\xc7\\x8c\\xf8\\x70\\x59\\x39\\x99\\xf7\\x89\\x93\\xad\\xd3\\xc2\\xbf\\x19\\x05\\x44\\x6d\\x01\\x2b\\x0a\\xd0\\x5f\\x07\\xfb\\xb1\\x82\\x2f\\xef\\xec\\x32\\x76\\x30\\x81\\x36\\x96\\x4e\\xd3\\x30\\xff\\x16\\x0e\\x72\\x89\\x49\\xf8\\x98\\x15\\x21\\xc0\\x07\\x34\\x61\\x95\\x4f\\xa3\\xd1\\x5b\\x75\\x21\\xe2\\x21\\x13\\xb6\\xb1\\x78\\x06\\xcf\\x21\\xa7\\x75\\xc7\\x88\\xc0\\xa0\\x19\\x56\\xb5\\x04\\xa8\\xae\\xf4\\xf1\\x68\\x2b\\x86\\xdf\\xe5\\x4d\\x00\\xef\\xcd\\xde\\x97\\x61\\x65\\x33\\xc1\\x71\\x1b\\x65\\x7e\\xb3\\x77\\xce\\x4b\\x16\\xd5\\x83\\xee\\xa4\\xd6\\xc5\\xec\\x90\\x54\\xca\\xb2\\x2e\\xe1\\xbd\\x49\\x3a\\xe7\\xf2\\x9e\\x21\\x4b\\xef\\x6f\\xd5\\xe9\\x6d\\x04\\x06\\x14\\xa0\\x68\\xc5\\xaa\\x1d\\xbf\\x4f\\xeb\\x39\\x39\\x42\\x70\\x27\\x0f\\x0a\\x4b\\xd3\\x0f\\xf8\\x08\\x6d\\x9d\\xcc\\x1b\\xea\\xc4\\xa6\\xe1\\x84\\xfc\\x9a\\xa0\\xea\\xd0\\xbc\\xe8\\xe6\\xe4\\x20\\x07\\x7d\\xc0\\x74\\x60\\x54\\x16\\x97\\xe3\\xed\\xb0\\x64\\x54\\x77\\xd3\\xe2\\x74\\x35\\x2f\\xba\\xb4\\x6c\\x07\\x5c\\xae\\xd7\\xcd\\x5e\\x03\\x55\\x28\\x94\\x6d\\x3d\\xb5\\x8a\\x05\\x2e\\x00\\x97\\x77\\xf6\\x96\\x8a\\xfd\\xaf\\xda\\x6a\\xfa\\xd2\\xec\\x3b\\xbc\\xdb\\xca\\x8e\\xf0\\x81\\x82\\x72\\x59\\x20\\xc4\\xd3\\xbd\\xa1\\xaf\\xf7\\xa5\\xf5\\xd6\\xe2\\xd0\\x7c\\x07\\x77\\x55\\x54\\x04\\x28\\xc3\\xc2\\x5b\\x29\\x25\\x44\\x24\\xde\\x23\\x6e\\xa2\\xc8\\xbc\\x66\\x6f\\xbf\\xb2\\xc4\\x01\\xba\\xed\\xf0\\x5a\\x2a\\xfc\\xab\\xd7\\x4d\\x39\\x5b\\x97\\xd6\\xb4\\xb3\\xdf\\x6f\\x99\\x24\\xa7\\x12\\xac\\x6d\\xdf\\x4b\\x62\\xe5\\x5e\\x8f\\x33\\x89\\x7d\\x3d\\x2f\\x3c\\x25\\x3b\\xe8\\x46\\xb1\\x3c\\x4e\\xbd\\xfd\\x77\\x49\\x7c\\xb2\\x8b\\x15\\x4e\\x7b\\x93\\xcd\\xa0\\x62\\x1f\\x1e\\x2e\\x66\\x78\\x31\\xcc\\x51\\xd5\\xc2\\x1a\\x85\\x25\\x7d\\xaa\\x98\\x46\\xf8\\xa6\\xba\\xd7\\xd1\\xd5\\x87\\x47\\x27\\x8f\\x45\\x21\\x2f\\x41\\x95\\x80\\x54\\xb5\\xd5\\x91\\x23\\x59\\x19\\x03\\xdf\\x71\\x98\\x80\\x50\\x3c\\x00\\x2d\\x54\\x12\\x28\\x26\\xc2\\xed\\x09\\xa1\\xa7\\x0a\\x54\\xe3\\x01\\x27\\x22\\x2c\\x81\\x2a\\xb2\\x0c\\x0f\\x83\\xa0\\x17\\x7f\\x9c\\xc2\\x1c\\x12\\x9b\\x8d\\x2f\\x58\\x40\\x41\\x65\\xd1\\xf1\\x3a\\x0d\\x70\\x9f\\x42\\x28\\xcb\\x49\\x67\\x40\\xe5\\x3d\\xe9\\xc0\\x36\\xe1\\x3b\\xec\\x91\\xc8\\x83\\x0b\\xe0\\x69\\xb9\\x4f\\xa4\\x48\\xec\\x4c\\x17\\xea\\xec\\x2a\\xf7\\x25\\xbb\\x68\\x6c\\x0b\\x9e\\x0e\\x1b\\xc3\\x41\\x4d\\x2a\\x5e\\xdb\\x04\\xfe\\x61\\x8e\\xcd\\x24\\x70\\x00\\xe7\\xae\\xec\\x61\\xea\\xa4\\x7e\\x4b\\x08\\x4c\\x4e\\x9d\\xd4\\xed\\x0e\\xf7\\x19\\x4f\\x52\\xd7\\xfe\\x6c\\xdd\\x1c\\x9f\\xab\\xba\\xee\\x04\\xb1\\xae\\x25\\x4d\\x8f\\x4e\\xc2\\x40\\x8e\\x20\\x84\\x12\\x8b\\xc0\\x6e\\x3e\\xc7\\xae\\x8f\\xfb\\x66\\x69\\xa4\\x68\\x61\\x74\\x58\\x47\\x3f\\xe4\\xcd\\x44\\x5f\\x5e\\xca\\xe9\\x5e\\x51\\xda\\x6f\\x5e\\x9c\\xcd\\xe6\\xe0\\x2f\\xb8\\xb5\\x96\\x5a\\x27\\x47\\x02\\x6e\\x30\\x6c\\x62\\xcf\\x22\\x2c\\x96\\x0b\\x18\\x0e\\x5c\\xc2\\x48\\xf0\\x7e\\xd1\\x7b\\x2c\\x23\\x9d\\x01\\xd3\\xa3\\xd0\\x81\\x27\\x93\\x97\\x4e\\x77\\x2b\\x67\\x78\\x14\\xf5\\x21\\x83\\x83\\x61\\x35\\xb5\\xdb\\x7f\\xa4\\xd5\\xba\\x72\\xdd\\xc7\\xb3\\x32\\xa4\\x71\\xba\\x94\\x4e\\xe7\\xa3\\x52\\x72\\x3e\\x32\\xc5\\xe7\\x23\\x52\\x74\\x3e\\x3c\\x85\\x55\\xd6\\xa9\\x68\\x97\\x78\\x99\\x02\\x08\\xca\\xa8\\x8a\\xa5\\xc2\\xc8\\xaf\\xd5\\xcb\\x0b\\x54\\x04\\x37\\x6b\\x7c\\x9f\\xc8\\xe8\\xc4\\x5f\\x58\\xc2\\xc4\\xb5\\xe7\\x02\\xea\\xe8\\xfb\\x8c\\x05\\x3a\\xd8\\xfb\\x8d\\x7a\\xd5\\x1c\\x07\\x47\\x55\\xa5\\x28\\x80\\x35\\x71\\x1e\\x32\\x5b\\x25\\xd1\\x2a\\x8f\\x52\\x6a\\x07\\x03\\xa9\\x97\\xce\\xd1\\x0f\\x10\\x31\\xb2\\x3a\\xce\\x47\\xab\\x6d\\xad\\xb5\\xe1\\x63\\x61\\x76\\x05\\x87\\x67\\xbf\\x3f\\x9d\\x49\\xb2\\xd1\\xd1\\x1d\\xb2\\xfc\\x38\\x2a\\xec\\xb0\\x0c\\x19\\xc8\\x8a\\x3f\\x02\\x31\\xb9\\x74\\x1b\\xe8\\x51\\xce\\x50\\xa0\\xe8\\x4e\\x88\\x53\\x0b\\xaf\\x2d\\x0b\\x9a\\x37\\x5d\\xea\\x97\\x1d\\x90\\xd6\\xf2\\x69\\x99\\xd4\\xcf\\x0a\\x0e\\xa0\\x43\\x3e\\xb9\\x02\\xea\\x78\\x4b\\xf7\\x83\\xa4\\x59\\x08\\x3b\\x56\\x49\\x28\\xe0\\x55\\xd1\\xdf\\xb3\\x7c\\x27\\x29\\xdc\\xed\\x38\\x66\\x6c\\xe5\\xfd\\xc4\\x29\\xff\\x76\\x96\\xd8\\xea\\x69\\x56\\x21\\x54\\x5c\\x23\\x32\\xc8\\x4b\\x11\\x79\\x5a\\xed\\x26\\x2a\\x2a\\xd5\\xa9\\x3e\\x8c\\xb0\\x4d\\x71\\xf6\\x53\\xd7\\xdf\\x68\\xd9\\xf0\\xae\\xe6\\xd9\\xa9\\x44\\xaf\\x92\\xd5\\x54\\x4b\\x8e\\x54\\x55\\x44\\x24\\x2a\\xde\\xa1\\x54\\x11\\x50\\x61\\xf8\\x9e\\x15\\x9b\\x2d\\x0f\\x86\\x96\\x5d\\x3d\\xa3\\x7e\\x3b\\x89\\xb9\\xb3\\xf4\\x72\\x8b\\x96\\x2a\\x8f\\x49\\x84\\xc5\\x97\\x87\\x19\\x84\\x86\\x04\\x92\\x95\\x29\\x5f\\x10\\xdf\\x7f\\xd0\\xa6\\xb7\\x05\\xc5\\x95\\x6b\\x74\\xb7\\xe7\\x85\\xc5\\x69\\x52\\x04\\xe5\\x09\\xca\\x2e\\x84\\x4c\\x4c\\x11\\x39\\x08\\xb1\\x1b\\xe2\\x44\\xe5\\x1b\\x9c\\x51\\xc3\\x1b\\xe5\\x3a\\x1b\\x96\\x3d\\xf9\\x9d\\x29\\xab\\x08\\x8e\\xc5\\x9d\\x3c\\x5a\\x19\\x26\\x2b\\x38\\x0d\\x63\\xc5\\x88\\x24\\x99\\x77\\x43\\xeb\\x5a\\x0a\\x1e\\x10\\x39\\xda\\x18\\x8e\\x2c\\x19\\xa7\\xad\\xcc\\xe9\\xb2\\xce\\x07\\x08\\x3a\\x78\\x89\\x1c\\x26\\x56\\x2f\\xcb\\x6e\\x77\\xc8\\x65\\x66\\x21\\x7a\\x97\\x1d\\x8f\\x30\\xab\\xab\\x2a\\xfa\\x6c\\x95\\x2d\\x86\\x46\\x8f\\xec\\x4e\\x50\\x48\\xc6\\x8f\\x0e\\x04\\x3c\\xd1\\x10\\x15\\xc0\\xc3\\x42\\x1d\\xae\\x7d\\xdb\\x9a\\x95\\x50\\xe5\\x06\\x50\\x0b\\x8d\\xd8\\x75\\x05\\x9c\\x6d\\x0d\\x02\\x2b\\x3e\\xdb\\xee\\xc6\\x5c\\x97\\x84\\x51\\xf3\\x32\\xc2\\x19\\xaf\\xb1\\x57\\x12\\x47\\xf0\\xe8\\x32\\x92\\x9d\\x21\\x07\\x7a\\x64\\xf9\\x99\\x03\\x76\\x1e\\x45\\xfd\\x97\\xf1\\xdc\\x2c\\xd0\\xa3\\x04\\x07\\xb5\\x28\\xea\\xd3\\x46\\xfa\\x83\\xf5\\x8d\\x4c\\xbe\\x7e\\xcd\\x9c\\x02\\x6c\\x57\\x05\\x5d\\xa7\\x9b\\x9d\\x38\\x1b\\x8e\\xc6\\x49\\x1b\\x30\\xfc\\x5b\\xa4\\xc4\\xf0\\x80\\xe8\\xd0\\x91\\x3a\\xec\\xe4\\x94\\x78\\xb9\\x6d\\x02\\xc3\\x85\\xdc\\x62\\x4d\\x67\\xf1\\x47\\xef\\xc5\\xd1\\x79\\x21\\xa3\\x1d\\xd5\\x5e\\x1f\\x77\\xfe\\x91\\x34\\x9a\\x08\\xb2\\xbe\\x4b\\xb0\\x56\\xd6\\xe5\\x7e\\xc1\\xd2\\x23\\x50\\xf5\\x43\\x77\\x82\\xde\\xe2\\xee\\x16\\x7d\\x2a\\x93\\x2c\\x6c\\x1b\\x2e\\x9d\\x55\\x3f\\x8c\\x64\\x4e\\x0a\\xdb\\x99\\xb3\\x5b\\x1e\\x4d\\x59\\x16\\x65\\x1b\\xd6\\xcf\\xb2\\x94\\x95\\x06\\x7f\\x78\\xb0\\x96\\x1c\\x96\\x96\\xfa\\x87\\x22\\x0a\\x54\\x75\\x88\\x6f\\xa0\\x85\\xd2\\xd3\\xd1\\xc8\\x9b\\xb2\\xe8\\x1c\\x86\\x8a\\xa1\\x5a\\x55\\x33\\xd1\\x1e\\x80\\x30\\x93\\xfd\\x93\\xab\\x61\\x94\\x46\\x23\\xb0\\xbd\\xe8\\x4e\\x46\\x30\\x5b\\xca\\x38\\x4e\\x1f\\x29\\xf1\\x44\\x32\\x1a\\xc4\\x28\\xa8\\x7b\\x47\\xfb\\x00\\x32\\x89\\x61\\xc3\\xdb\\x97\\x89\\xd4\\x43\\x19\\x20\\xf2\\x59\\x2a\\x66\\xed\\xd6\\x0f\\xfd\\x4e\\x85\\x35\\xa2\\x2c\\x99\\x5e\\x1d\\x12\\x51\\x2f\\x80\\x7d\\x57\\x5b\\xc3\\x2e\\x57\\x71\\x5a\\x7a\\x7e\\x14\\xdf\\x85\\x24\\xdf\\x77\\xe0\\x67\\x8c\\x66\\x7d\\x4a\\xdd\\xbb\\x41\\x8e\\xb5\\x5a\\xc3\\x30\\xf8\\x87\\x55\\x70\\x7c\\x45\\x04\\x14\\x78\\xe0\\xa1\\x28\\xe1\\xda\\xb7\\x00\\x03\\x41\\xc0\\xe7\\x80\\xc3\\xa1\\xd4\\x14\\xbe\\xe2\\xd7\\x04\\x07\\x26\\x57\\x5f\\x10\\x3f\\x6a\\x00\\x83\\x8e\\x2e\\x1b\\xad\\x86\\xd2\\x01\\x69\\xd8\\x3b\\x04\\x13\\xeb\\x10\\xff\\xe8\\x48\\x30\\x6e\\xe9\\x8e\\xdd\\x5e\\x2f\\x90\\xc6\\x81\\xcf\\x30\\xac\\x7d\\xbf\\x9c\\xe9\\xdc\\x0c\\xbd\\x4e\\xea\\x09\\x1b\\x57\\x0d\\xfc\\xd2\\x3d\\x8e\\xc4\\x46\\x80\\x21\\xf5\\xe2\\xe1\\x83\\x01\\x13\\x4c\\xd3\\xd1\\xa3\\x69\\x27\\x87\\xb8\\xe6\\x9d\\x51\\x63\\xff\\x36\\xac\\x9b\\xe6\\xc0\\xfd\\xc0\\x97\\xed\\xba\\x28\\x75\\xb6\\x4c\\x87\\x12\\x67\\xf1\\xf4\\xe0\\xd9\\xa5\\x35\\x5b\\x3a\\xc9\\xdc\\xd1\\x68\\xd3\\x41\\x34\\x1b\\xcc\\xa5\\xe9\\xb5\\x50\\x69\\x27\\x47\\x6d\\xe9\\x3c\\x1f\\x07\\x90\\x09\\x15\\xaa\\x9b\\xdf\\xe0\\x70\\x31\\x67\\xdc\\x43\\x76\\x83\\xe6\\xaa\\x4c\\x9b\\x11\\xf4\\xdf\\x90\\xc1\\x22\\xda\\xb1\\x1e\\xa1\\xcc\\xda\\x1d\\x84\\x11\\xc1\\xc1\\x67\\xd1\\xa5\\x0a\\x0b\\x74\\x55\\x0e\\x0a\\x81\\xbe\\x33\\x82\\x75\\xe2\\x92\\x2e\\x1d\\x81\\xfb\\xba\\x75\\x08\\x60\\xc3\\x54\\x74\\x20\\x3e\\x82\\xf1\\xec\\xdd\\x9b\\xdb\\xca\\x1a\\x53\\xec\\xa7\\xef\\x6b\\x9d\\x49\\x36\\xbb\\xe9\\x47\\xd6\\x28\\x07\\xc6\\x8a\\x10\\x27\\xd0\\x59\\x98\\xa7\\x9a\\x45\\x67\\xd7\\x2f\\xa7\\xf6\\xad\\xd5\\xa6\\x89\\x4d\\x7b\\x60\\xf2\\xf3\\xfb\\x95\\xa6\\xae\\x9a\\x7d\\x10\\xbb\\x73\\x04\\x8e\\xe2\\x31\\x3d\\xe8\\x90\\x63\\x9d\\xd3\\xc3\\x9d\\xde\\x51\\x4f\\x74\\xc8\\x51\\x8f\\xd9\\x3b\\x29\\x23\\xc1\\x10\\xb2\\xf1\\x0a\\x10\\xf1\\xa1\\x49\\x00\\xe0\\xae\\x6f\\x27\\x10\\x6d\\xfd\\x04\\xb9\\x30\\xc7\\xcd\\xbe\\x66\\x0e\\x78\\x78\\xb2\\xf1\\xaa\\x08\\x20\\x53\\xb2\\xd2\\xaa\\xa7\\x5f\\xf1\\xe3\\x37\\x57\\x36\\xc0\\x8f\\x1a\\xbb\\x03\\x75\\x7b\\x5a\\xb5\\xc4\\x21\\x89\\x20\\x2d\\x80\\x03\\xbb\\xab\\x22\\x01\\xac\\x62\\xf8\\x11\\xf0\\x6e\\xf8\\xa2\\xcb\\x03\\xe0\\x38\\xf1\\xfa\\x24\\x45\\x44\\x9d\\x4e\\xb5\\x84\\x3e\\x84\\xaf\\xc7\\xcb\\xe3\\x7e\\xca\\x13\\x15\\x3c\\x07\\xea\\x9e\\x7b\\x1d\\x0a\\x69\\x95\\xe8\\x42\\x3c\\xb6\\x8f\\x3d\\x03\\xe5\\x3c\\xa0\\x3a\\x80\\x12\\x57\\x7e\\x25\\xdb\\x5e\\xfa\\x7d\\x7a\\xa0\\xe3\\x8d\\x10\\xcf\\x15\\x7f\\xcd\\x95\\xd5\\x72\\xea\\xe3\\x88\\xe7\\x19\\xaa\\xf5\\x19\\xbb\\xc3\\x0d\\xc7\\xdf\\x64\\x56\\x84\\xf7\\x06\\x6e\\x2c\\xd3\\x71\\xbb\\xc3\\xfe\\x13\\xa9\\xbf\\x98\\x3c\\x47\\x25\\x31\\xfa\\x3a\\xf3\\x68\\xa9\\x2a\\x41\\x64\\xaf\\x6d\\x41\\x48\\xc0\\xc4\\x52\\x30\\x65\\x91\\x1d\\xea\\x0e\\x54\\x23\\x7b\\xb8\\xef\\x79\\xc6\\x91\\x12\\xaa\\xbf\\x35\\x07\\xa7\\xcf\\xf2\\x0c\\x4c\\x15\\x29\\x51\\x44\\x84\\x0f\\xf3\\xe5\\x7a\\x00\\x97\\xb6\\x1e\\x4c\\xee\\x16\\xac\\x1f\\xc0\\xe0\\x5c\\x7e\\x4a\\x23\\xa5\\xce\\x64\\x26\\xb6\\xed\\xb5\\x40\\x51\\x6a\\x8a\\xf0\\x93\\xaf\\x02\\x8a\\x3e\\x7d\\x87\\xa8\\x5f\\x3a\\xc7\\xa3\\xec\\x60\\xd2\\x81\\x55\\xda\\x5b\\x56\\x9d\\xa0\\x56\\x9f\\x1b\\x87\\x0d\\x3a\\x82\\x77\\xd1\\x24\\x38\\x02\\xee\\x36\\xb0\\x44\\xc2\\x61\\xea\\x39\\xce\\xde\\x71\\xf4\\x0d\\xd5\\xf5\\xe8\\x58\\xaa\\x56\\xb6\\xb2\\xa4\\x33\\x44\\xf2\\x8d\\x7f\\xf0\\x23\\x68\\x8e\\xb4\\x8a\\x99\\x50\\xbb\\x97\\x4d\\xab\\x54\\xa8\\xe2\\xe1\\xe8\\x11\\xb5\\x0e\\x1f\\xb0\\xb5\\xc7\\x8e\\x7f\\xe0\\xc7\\xaa\\x21\\x1e\\xa0\\x64\\x09\\xbf\\x15\\x0b\\x93\\x7f\\xbc\\x2e\\xc6\\xd8\\xc9\\x22\\xfb\\x3d\\xf4\\x2b\\x10\\x4c\\xac\\x43\\xd3\\x4c\\x27\\x41\\x78\\xaa\\xfa\\x0a\\x54\\xb9\\xf7\\xc5\\x35\\x7a\\x5e\\x5c\\xd2\\xa4\\x72\\xed\\x66\\x23\\x08\\x09\\x92\\xab\\x5c\\x90\\x5a\\x10\\xd8\\xe6\\x20\\x51\\x7a\\x69\\x74\\x50\\x96\\x2a\\x7c\\xa1\\x80\\x13\\x5e\\x26\\xee\\xd8\\xb8\\x44\\xa7\\xa4\\xab\\xa2\\x20\\x20\\x0f\\x22\\x2d\\x20\\x88\\x8f\\x64\\x2c\\x7a\\x81\\xf5\\x3c\\x60\\x0e\\xd9\\x12\\x69\\x47\\xaf\\x5d\\xd8\\x56\\xbe\\x49\\xfe\\x71\\x9c\\xa9\\xec\\xbb\\x9f\\x88\\xdd\\x3c\\xcb\\x38\\x07\\x06\\x4b\\x56\\x5b\\x8f\\x91\\x9b\\x67\\x99\\x62\\xd5\\xe3\\x96\\x63\\xb2\\x9f\\xd9\\xab\\x79\\x74\\x6f\\xba\\x5b\\x15\\xf9\\xce\\xc2\\x0a\\x43\\x51\\x3e\\x9c\\x0f\\x14\\x42\\x0b\\xe8\\x1f\\x51\\x08\\x73\\x91\\x4a\\x38\\x29\\xb3\\x85\\xa5\\x86\\xc0\\x48\\x35\\x35\\x02\\x7c\\x94\\xe9\\x54\\x51\\x41\\xe3\\x79\\x55\\x26\\xec\\x25\\xc2\\xc1\\xe1\\x78\\xc5\\x01\\x6d\\x76\\x5d\\xc8\\xa5\\xc0\\xd6\\xb2\\xa8\\xf7\\x96\\x95\\x46\\xfc\\xb4\\x05\\xfa\\x6a\\x15\\x8a\\x20\\xc2\\xe9\\x40\\xf3\\x48\\x6e\\x79\\x10\\x9d\\x82\\x74\\x58\\x69\\x94\\x96\\x7e\\x5f\\xa8\\xc8\\x17\\x64\\xeb\\x88\\x81\\xbc\\xd8\\xbc\\xd6\\x8e\\x23\\x64\\x7f\\xf3\\x72\\x4e\\xfd\\x9e\\x2b\\xda\\x47\\x08\\x78\\x15\\x6b\\xdd\\x34\\xf6\\xb3\\xb5\\x11\\xbc\\xef\\x3f\\xff\\x0a\\x7b\\xbd\\x4b\\x3f\\xe6\\x31\\xd2\\x0a\\x2b\\x22\\xcf\\x6a\\x5a\\xb5\\xcb\\x06\\x0d\\x37\\x4d\\xde\\x50\\xff\\xf1\\x93\\x19\\x37\\xd6\\x24\\x47\\x9f\\x54\\x0d\\x35\\x13\\x93\\xc0\\xa3\\x30\\x81\\xf1\\x40\\xe8\\xfa\\x67\\x52\\x38\\x5a\\xf1\\xe0\\x88\\xb9\\x81\\x47\\x4e\\x6c\\x06\\xcb\\x35\\x46\\x86\\xa0\\xb0\\xb4\\xd3\\x0a\\x0d\\x8d\\x68\\xaf\\x6a\\xad\\x0e\\x85\\x95\\x5b\\x2e\\xec\\xa8\\x5e\\x69\\xc3\\x91\\x2e\\x8e\\x9a\\xb3\\x6e\\xaf\\x4b\\x8f\\xef\\x78\\x68\\x93\\x79\\x1b\\x0e\\x26\\x0e\\xe9\\x75\\x0f\\x87\\x38\\x52\\xc2\\x11\\x61\\x6b\\x1a\\x47\\x8d\\xe6\\x71\\xda\\x5a\\x8f\\x89\\x42\\x85\\x3b\\x2b\\x4d\\xe8\\xc9\\x8d\\xe9\\x39\\x65\\x9c\\xa4\\x36\\xe9\\x6c\\xcb\\x4e\\x98\\xd4\\x53\\x75\\xd7\\x1c\\x89\\x70\\xb7\\xaf\\x73\\x79\\x64\\x60\\xb0\\x41\\xda\\x19\\xb5\\x88\\x46\\xf8\\x04\\x93\\x08\\x66\\xe0\\x12\\x0f\\x78\\x44\\x01\\x3f\\x6a\\x1b\\x47\\x8c\\x37\\x9f\\x0d\\x36\\x9c\\xeb\\x15\\x31\\x20\\x31\\x6b\\x99\\x78\\xb2\\x45\\x1c\\x85\\x7b\\x3c\\x8e\\x5b\\x9a\\xa4\\xb1\\x0f\\x81\\x39\\xc4\\x34\\x95\\xd1\\xf7\\x94\\xcd\\x06\\xeb\\xb2\\x6e\\x97\\xd1\\x6b\\x37\\x16\\x8d\\xf0\\xf6\\x29\\x92\\xbc\\xe1\\x02\\xfc\\x33\\x54\\x29\\x23\\x74\\x9c\\x1e\\x1b\\x28\\xa9\\x11\\xb3\\x9b\\x02\\x47\\xf3\\xde\\x0e\\xd2\\x4c\\x52\\x31\\x54\\x9e\\xff\\x28\\xa6\\xf4\\xfa\\x6d\\x44\\x10\\xed\\x2d\\x95\\xf7\\x12\\x54\\x5f\\x83\\x18\\x4d\\x5d\\xfd\\x9e\\xde\\x8e\\xd0\\xa2\\xb4\\x1f\\x42\\x80\\x8d\\x97\\xfe\\x2b\\xf6\\x5e\\xea\\x26\\x7a\\xce\\x34\\x46\\xbc\\x1e\\x52\\xdc\\xfb\\x4d\\x24\\x2e\\x3b\\xe9\\xb4\\x51\\x3f\\x2b\\x3e\\xd6\\x32\\x38\\x8c\\xbb\\xa1\\x26\\x82\\xe5\\xf0\\x8f\\x9c\\xab\\xe5\\xd0\\x65\\xfd\\x1e\\xc3\\x51\\xf4\\x15\\x25\\xb6\\x71\\x71\\xb1\\x08\\x6a\\x0b\\xce\\x02\\x02\\xf3\\xba\\x67\\xf0\\xe9\\xad\\x71\\x3d\\x8b\\x8d\\xdb\\x27\\x3e\\xaf\\xb4\\x75\\x11\\x53\\xec\\xa8\\x1b\\xd4\\x14\\xc1\\x2d\\xc1\\x91\\x74\\x4b\\xa7\\xd4\\x3e\\xdc\\xc8\\xd0\\xa1\\x03\\xad\\x83\\xdb\\x2d\\x89\\x41\\x68\\x42\\x88\\x2f\\xcb\\x4a\\x10\\x1b\\x81\\x3b\\x50\\xd6\\x53\\x45\\xd5\\x2c\\x1b\\x8d\\xfb\\xdc\\xa9\\xb8\\x06\\x80\\xe9\\xf4\\x56\\xd9\\xac\\x99\\x61\\xc9\\x06\\x33\\x0d\\x5f\\x05\\x90\\xdd\\x2d\\x5e\\x42\\x4a\\x29\\xf7\\x4d\\xe3\\xb2\\x79\\x46\\x7c\\x57\\x42\\x36\\xcb\\xdb\\xaa\\x44\\x44\\xe5\\x45\\x7c\\x9b\\x9f\\x28\\x70\\xfa\\x34\\xc2\\xa3\\x21\\xae\\xb1\\xec\\xa7\\x01\\xd1\\xe0\\xd4\\x4a\\x51\\x3e\\x95\\x8f\\xe1\\xf8\\x75\\x84\\xa1\\xd3\\xe1\\xda\\x9b\\x3e\\x6a\\x1d\\xd9\\xb4\\xfd\\x3d\\x30\\x96\\x74\\xdb\\xfe\\x51\\x1b\\x56\\x75\\xd7\\xbb\\x22\\x1a\\xbe\\x5b\\xb2\\x3c\\x0c\\xfd\\x51\\x5d\\xa2\\x9d\\x63\\x02\\x93\\xe8\\x59\\xcf\\x52\\x06\\xe1\\x86\\x0f\\xde\\x31\\x02\\xfd\\x75\\x0c\\x2e\\x51\\xc7\\x4d\\x6f\\x1b\\x15\\x97\\x45\\xda\\xf6\\xdf\\x17\\xd2\\x53\\xee\\x5f\\xcd\\xf5\\x48\\x2d\\xab\\x5a\\x0e\\xf4\\x5a\\x49\\x40\\x3b\\x82\\x8c\\x51\\x0b\\x34\\x1a\\x54\\x40\\xf3\\xfa\\x4a\\x10\\xad\\x35\\xd4\\xdc\\x6f\\xcc\\x39\\xc4\\x3c\\x8c\\x06\\x68\\xaf\\xde\\x69\\x98\\xf4\\x59\\x30\\xb3\\x1a\\x73\\x00\\xff\\x1d\\x56\\x38\\x9c\\xba\\x91\\xf5\\xb0\\x71\\x07\\x9c\\x1c\\xa7\\xd9\\x82\\x6d\\xd6\\x46\\x0b\\x36\\xb7\\x0f\\x35\\x6e\\x97\\x95\\xba\\xbf\\x75\\x8f\\x17\\xd8\\x4d\\x4d\\x26\\xab\\x87\\x3a\\x7e\\x61\\x07\\x85\\x5e\\x38\\xb1\\xeb\\x13\\xd5\\xca\\x32\\x96\\xda\\x1b\\xde\\x03\\x70\\x35\\xba\\x95\\xb2\\xdb\\x7c\\x13\\x68\\x2f\\xda\\x00\\xca\\x8e\\x2a\\xbf\\x53\\x6a\\xee\\x0c\\x30\\xbd\\x25\\xba\\x95\\xa2\\x3e\\x8b\\x5f\\x2b\\x75\\x59\\x58\\x49\\x65\\x3e\\x92\\xa3\\xb0\\xa0\\x0c\\x27\\x71\\xde\\x6c\\xbc\\x48\\x64\\xe6\\xb5\\x12\\xcf\\x74\\x95\\xe5\\xd0\\xea\\xc1\\x09\\xfa\\xc8\\xb4\\x70\\xe6\\x7e\\x5b\\x79\\x50\\x34\\x64\\xf9\\x75\\xfc\\xce\\x7f\\xca\\xd1\\x33\\x24\\xac\\x89\\x3e\\x93\\x33\\x27\\x6d\\x88\\xe1\\x39\\xf2\\x61\\x78\\x3c\\xf1\\x08\\x7e\\xe5\\x6e\\xf6\\x1c\\x10\\x5b\\xb0\\x23\\x7c\\x5e\\xf9\\xfe\\x3f\\x4b\\x54\\x3c\\x52\\xd6\\x3c\\xfa\\xbc\\x42\\x2f\\xd3\\xb4\\xf9\\x6d\\xcc\\xb2\\xc1\\x7e\\x97\\x3d\\xf5\\x21\\x08\\x5f\\x0b\\x5b\\xc4\\xa2\\x9c\\xd3\\x3c\\x06\\x25\\x1b\\x16\\xc7\\xfb\\xa1\\x65\\x51\\xab\\xab\\xc0\\x9d\\x00\\x54\\x56\\xe8\\xcf\\xe9\\x47\\x8c\\x29\\x78\\x2a\\xdc\\x28\\x52\\x55\\xeb\\x7e\\x86\\xdf\\x3b\\x33\\x41\\x62\\x9f\\xb0\\xcb\\xd1\\xff\\x86\\x46\\xc4\\x13\\x20\\x65\\x3b\\x6f\\x01\\xbc\\x5c\\x77\\xca\\xa2\\xef\\xb0\\x0e\\x5d\\x7e\\x7d\\xa7\\x74\\x9f\\x0d\\x27\\x21\\x1f\\x7f\\x29\\x2a\\xd2\\x65\\x33\\x7c\\x46\\xc5\\x23\\x7d\\xb4\\xba\\xd6\\x55\\x18\\xbe\\x07\\x2e\\xc2\\x0f\\x5b\\x30\\x27\\x8a\\x4b\\x9d\\xfb\\x36\\x3f\\x50\\x94\\x94\\xfd\\xc9\\x47\\xa7\\xf1\\x0a\\x5c\\x2d\\x01\\xc0\\x7d\\x03\\xff\\x29\\xa8\\xe2\\x4e\\x08\\x13\\xd5\\xe6\\x0b\\xb6\\xb1\\x71\\x3b\\x38\\xfa\\x79\\xfc\\x95\\x8b\\x1f\\x9a\\x54\\x45\\x3f\\x0b\\xf4\\x33\\xc7\\x66\\x67\\x3d\\xf7\\x23\\x1a\\xe2\\x88\\x54\\xd4\\x73\\x1b\\x14\\x12\\x2b\\xa7\\xe1\\xd2\\xc9\\x22\\x34\\xef\\x19\\xee\\x08\\xa3\\x85\\xc5\\x31\\x52\\x1c\\x72\\x0b\\xd5\\xd6\\xb1\\x48\\x06\\x21\\x19\\x35\\x15\\xc2\\xd1\\x6b\\x67\\x79\\xf1\\x58\\x51\\x42\\x03\\xc5\\x8c\\x48\\x6e\\xc2\\xbe\\xd1\\x60\\x1d\\xdf\\x59\\xa2\\x85\\x00\\x4f\\xf2\\xc0\\x4b\\xbe\\xb5\\xf4\\x22\\x17\\x64\\xba\\xa1\\x80\\x83\\xeb\\x0b\\x4a\\x6c\\x97\\xd0\\x36\\xf6\\x4a\\xa7\\x0e\\x0a\\xaf\\xef\\x8a\\x4e\\xd2\\x46\\xdb\\x85\\x5d\\x9b\\x85\\x2f\\x68\\x98\\x3a\\x26\\xcd\\x56\\xd8\\xd4\\x9c\\xa9\\x72\\xfe\\xad\\x4e\\x17\\xb9\\x39\\xa3\\xc4\\xfb\\x58\\xbd\\x3c\\xad\\xec\\x1c\\xd0\\x35\\x7d\\xe2\\x0b\\xf2\\x67\\xa8\\x13\\x99\\x30\\xf6\\x98\\xd8\\x63\\x63\\x79\\xe3\\x59\\x78\\x0c\\x4e\\xbb\\x1b\\x57\\x84\\x07\\x5a\\xc7\\xac\\xc1\\x6c\\xec\\xac\\x16\\x71\\x73\\xf6\\xf5\\x57\\x19\\x67\\x93\\x8b\\xde\\x65\\x33\\x52\\x31\\x0f\\xc1\\x16\\xdf\\x8f\\x9e\\xae\\x73\\xc5\\x2a\\x5f\\xed\\xde\\xf6\\x7d\\x7d\\xe5\\x32\\x8d\\x7c\\x39\\xc0\\x8c\\xd0\\x4f\\xae\\x85\\xf5\\x9b\\xbb\\x2b\\x75\\x28\\x38\\x34\\x4e\\xf7\\xdf\\x3d\\x7e\\x12\\x38\\x63\\x36\\x14\\x20\\x04\\x88\\xb4\\xeb\\xcd\\x77\\x62\\xfc\\xfa\\xaa\\x25\\x29\\xbb\\x08\\x0f\\xbf\\x00\\x35\\x85\\x85\\xd5\\xa0\\x72\\xc6\\x02\\x42\\xfb\\x4d\\xaa\\x0c\\x4f\\x19\\xfb\\xa4\\xba\\x9e\\xfd\\xb8\\xb0\\x7b\\x5b\\xbb\\x86\\x7f\\x53\\xd4\\xb2\\x15\\x46\\x24\\x25\\x05\\x90\\xf4\\x80\\x8d\\x49\\x95\\x89\\xdb\\xb1\\x3e\\x8b\\xfd\\x67\\x3b\\x2e\\xa4\\xb4\\x77\\x42\\xe8\\xa2\\x28\\x65\\xe9\\x87\\x7f\\x1c\\x3e\\x46\\x95\\x26\\x92\\xdb\\x93\\x41\\x97\\xb2\\x5d\\x86\\x7d\\x62\\x41\\xdb\\x6b\\x32\\x2a\\xad\\xfd\\xc2\\x3c\\x4b\\xf9\\x71\\x6a\\x44\\x5b\\x83\\x1f\\xfc\\x87\\x63\\x7e\\xcc\\x0d\\xb1\\x71\\xec\\x1a\\xaa\\x78\\xa7\\xdd\\x13\\xab\\xd5\\xf0\\x14\\x3c\\xf6\\x9d\\x1c\\xf6\\x3c\\xd3\\x10\\x4f\\x34\\x83\\xc2\\x03\\xd2\\xca\\x16\\x7c\\x8f\\x08\\xfa\\x2c\\xeb\\xd7\\x76\\x9f\\x8c\\xef\\x2e\\x4b\\x22\\x95\\xb2\\x7b\\xb7\\x8f\\x96\\xb8\\xe5\\xf3\\x92\\x5e\\xb9\\xc6\\x11\\x32\\xeb\\x3c\\x85\\x4c\\xe8\\x8d\\xcd\\xf7\\x8e\\x93\\xbd\\x6d\\xd0\\xcf\\x71\\x40\\x94\\xe4\\xb6\\xec\\xe3\\xb2\\xf9\\xf2\\x1f\\xdb\\x19\\x5d\\x3e\\x7f\\xee\\x03\\x7d\\x9c\\x65\\x8d\\x2b\\xfb\\xb0\\xf5\\x51\\x75\\x94\\xcf\\x8f\\x09\\x83\\x57\\x4f\\x30\\x71\\xa5\\x3f\\xfe\\xad\\xf1\\x94\\xf8\\x59\\xfe\\xcf\\xa8\\xcd\\xb5\\xc6\\x75\\x7f\\x72\\x46\\x37\\xe9\\x34\\x33\\xc9\\x4b\\xba\\xd6\\xaa\\x16\\xd5\\xa9\\x50\\x5a\\x3e\\x44\\x9f\\x4c\\x7e\\xb6\\xa3\\x6b\\xae\\xb3\\x60\\x48\\x10\\x66\\x9b\\x3c\\x5d\\xca\\x4a\\x08\\x49\\xd5\\x93\\x62\\x06\\x7e\\x12\\x70\\x80\\xb1\\xb8\\x61\\x44\\x84\\x4e\\x65\\x6b\\xca\\x81\\x37\\xc7\\xcc\\x5c\\x37\\xf2\\xcc\\x91\\x55\\x8b\\x28\\xb9\\x46\\x4a\\x92\\xcb\\x80\\x64\\xc3\\x73\\x18\\x98\\x4e\\x48\\x82\\x90\\xf0\\xf8\\x29\\x4a\\xd4\\xa0\\xea\\x73\\x9a\\xca\\xaa\\xc0\\x3d\\x93\\xba\\x89\\x48\\x2a\\x96\\x00\\xa7\\x12\\xef\\xce\\x43\\x8a\\x44\\x6a\\x94\\x50\\xf5\\x49\\x2e\\xa4\\x35\\xe0\\xd8\\x62\\x22\\x39\\x69\\x1a\\xee\\x21\\x40\\x8d\\x6e\\xed\\x44\\x55\\x3f\\xd9\\x80\\x31\\xd5\\xe5\\x38\\x99\\xb6\\x90\\x09\\x01\\x9c\\x5e\\x5b\\x6e\\xb1\\x73\\x31\\x78\\x21\\x55\\xf1\\x5f\\xe0\\xc7\\xb8\\xfe\\x4a\\x71\\x41\\x56\\xae\\x4e\\xbf\\x51\\x07\\xe7\\x27\\x9c\\x10\\x06\\x0a\\xf4\\x24\\x63\\x21\\x63\\xbd\\x28\\xe4\\xa5\\x29\\xcf\\x50\\x52\\xc6\\xf6\\x75\\x5c\\x4c\\x32\\x6a\\x92\\xb3\\xaf\\xcf\\xb9\\x28\\x06\\xd3\\xb9\\xb5\\x6e\\xe9\\xda\\x14\\x18\\x4c\\xf7\\x96\\x22\\x74\\x98\\xfe\\x42\\x47\\xef\\xc1\\x3a\\xfc\\x73\\x7a\\x9f\\x2d\\x83\\xc2\\x4d\\x15\\x39\\xad\\xb2\\x7e\\xc9\\x88\\xde\\x6d\\x40\\x59\\xb0\\x37\\xfd\\x9b\\xa0\\x89\\xde\\x5e\\x18\\x4c\\xfe\\xe6\\x71\\x60\\x0d\\xab\\x83\\xdb\\x0b\\xe6\\xfa\\x97\\x62\\x5f\\x29\\x75\\xab\\x62\\x64\\x56\\x2e\\x8a\\xcf\\xc7\\xd0\\x48\\xc4\\x04\\x23\\x1a\\x4e\\xfa\\xfd\\x6a\\x61\\xb4\\x88\\x25\\xaf\\x46\\x58\\x96\\x56\\x36\\x77\\xd2\\x90\\xf9\\xdb\\xaf\\xf4\\x04\\x4c\\xae\\x25\\x35\\x87\\xac\\xa3\\xa3\\x91\\x9f\\x11\\x01\\xae\\xb5\\x42\\x66\\x54\\x98\\x86\\xff\\x80\\x61\\x8b\\xec\\x2f\\xb1\\x7d\\xeb\\x17\\x2f\\xd5\\xa7\\x77\\x1e\\xf8\\xbc\\x9d\\x8b\\x4c\\xae\\xa2\\x5d\\x99\\x93\\x99\\x7c\\xb4\\xc2\\x45\\x28\\x98\\x9f\\x83\\x79\\xd1\\xbd\\xb0\\x8c\\x72\\xa2\\xbb\\x01\\x3d\\xec\\x91\\xda\\xd5\\x87\\x2a\\xdf\\xf7\\x46\\xba\\x29\\xe9\\x02\\xac\\xb0\\xea\\x7e\\x95\\x4c\\x28\\x4b\\x59\\x0a\\x04\\xd1\\xd0\\xf2\\xe4\\x5b\\x90\\x9a\\x70\\x32\\x38\\x05\\x55\\x0c\\xee\\x3e\\x57\\x13\\xad\\x4a\\x5d\\xd7\\x28\\x2d\\x2a\\x14\\x39\\x6e\\x64\\x23\\x23\\xb5\\x77\\x9a\\xd4\\x43\\xb0\\x87\\x32\\x34\\x67\\x16\\xcb\\x83\\x29\\xe4\\x68\\x8c\\x42\\x6f\\x4f\\xaa\\x21\\xea\\x9d\\x83\\xbe\\xfa\\x35\\x6e\\xed\\x12\\x0a\\xae\\x03\\x20\\x08\\xc8\\x54\\x97\\x1d\\xda\\xd7\\x0e\\x43\\xda\\x21\\x3a\\x9d\\x32\\xec\\x0e\\x9a\\xfd\\xfd\\xd2\\x01\\x65\\x97\\x02\\x58\\x90\\x9e\\x01\\x37\\x71\\xd4\\x66\\xf0\\x56\\x6d\\xfe\\x81\\x4c\\xeb\\xa5\\x81\\x66\\x3b\\x3d\\x70\\x21\\x73\\x8e\\x40\\x52\\x1f\\xf4\\xa6\\x0d\\x26\\x71\\x3d\\xaf\\xd6\\x14\\xa5\\xe4\\x69\\x00\\xa0\\x5e\\xba\\xe4\\x75\\xca\\x76\\x4a\\xe6\\x04\\x5f\\x8a\\x69\\x18\\x32\\xb8\\x17\\x29\\x68\\xf3\\x15\\xde\\x07\\x6e\\xaf\\xb6\\x93\\x80\\x24\\xad\\x8f\\x92\\xba\\xb5\\x07\\xf4\\xa8\\xdc\\xe1\\xb5\\x8e\\x57\\x8b\\x05\\x2a\\x41\\x08\\xb1\\xb0\\xac\\x97\\xe8\\x93\\x99\\x8f\\x7b\\x4e\\x95\\x1a\\xed\\xf2\\xec\\xe7\\xb9\\x2a\\x4f\\xab\\xb2\\xdd\\x54\\xf2\\x78\\x53\\xdd\\xe3\\xd8\\x9c\\xa8\\xa8\\x26\\xda\\xfb\\xc7\\xf7\\x03\\x21\\x87\\x2f\\xe6\\x21\\xa1\\x81\\xb4\\xf6\\x8a\\x50\\xab\\x57\\x60\\x4f\\x88\\x0c\\x9b\\xc7\\xad\\x71\\x46\\x5b\\x7b\\x84\\x9b\\x45\\xd1\\x43\\x38\\x51\\x65\\x88\\x13\\x75\\xcb\\x1e\\xbf\\x06\\x14\\xd5\\x10\\x30\\x42\\xff\\x20\\x75\\x35\\xcf\\x20\\xcb\\x1c\\xf5\\x3c\\x18\\xe2\\x8a\\x7a\\x50\\x8c\\xc0\\x90\\xb0\\x84\\xed\\x61\\x8e\\x62\\x6a\\xdc\\x48\\x59\\x9b\\x95\\x4a\\x9a\\x55\\x6f\\xb1\\x1e\\x61\\x9a\\xd0\\xe4\\xa7\\xbb\\xfb\\xc1\\xe1\\xd1\\xf1\\x6d\\xef\\x78\\x60\\x1b\\x80\\xe9\\x54\\x20\\x47\\xa4\\xf6\\x9e\\xb9\\x52\\x53\\x5e\\xfb\\x91\\xfa\\xcd\\xc2\\xb2\\xb7\\x92\\x5a\\x4e\\x17\\xf0\\xac\\x01\\x68\\x96\\xc8\\x41\\xf1\\x28\\x0c\\xa6\\xa7\\x33\\x5f\\xe0\\x67\\xef\\x3a\\xac\\x7a\\xb3\\xc5\\xf6\\xd9\\x9b\\xd1\\xcf\\x7b\\x61\\xd6\\x8d\\x69\\xf3\\xa4\\x72\\x32\\xe4\\x77\\xe5\\x8e\\x78\\x9a\\xcf\\x4f\\x55\\x59\\x42\\x3c\\x7e\\xc3\\x71\\x93\\x21\\xe6\\x0e\\x3d\\x37\\x23\\x0d\\x81\\x34\\x3e\\xf1\\xbd\\x9c\\x9f\\xa8\\x23\\x66\\x6d\\xa0\\xcf\\x36\\xba\\x96\\xe9\\x68\\xa2\\x2c\\x88\\x51\\x3a\\xf6\\xd9\\x6c\\x6d\\x32\\x11\\x9b\\x8e\\x3a\\x2c\\x8b\\xe5\\x41\\x65\\x8c\\x5c\\x66\\xeb\\xda\\x8e\\xa8\\x0b\\x16\\x08\\x0f\\x8a\\xc2\\x79\\x7d\\xb0\\x81\\xd1\\x9c\\x2c\\xca\\x4b\\x56\\x2d\\x47\\xaa\\x0e\\xbf\\x85\\xcf\\xc9\\xf2\\x3c\\xe0\\x11\\x48\\x93\\xd6\\x75\\xc2\\xf1\\xb3\\x1b\\x0a\\x7a\\x09\\xe3\\x68\\x50\\xc8\\x55\\x56\\xfe\\xd0\\xdf\\xd7\\xf2\\x25\\x8f\\x93\\x4a\\x85\\xf6\\xc9\\x88\\x4f\\x0b\\x4f\\x03\\x24\\x0a\\x5a\\xf6\\x85\\x93\\x62\\x98\\x77\\x86\\x69\\xa9\\x4d\\xe9\\x70\\xb8\\xe6\\x2f\\xca\\xf1\\xe8\\x53\\x29\\xe4\\x27\\x0e\\xf1\\x19\\x48\\x01\\x04\\x24\\x74\\x36\\x17\\xb0\\x62\\x04\\x75\\x38\\x68\\x69\\xf6\\xce\\x70\\x0f\\xe3\\xa8\\x5a\\xe5\\xe2\\x52\\x56\\x22\\xa7\\xf5\\x72\\xc8\\x48\\x1c\\xf4\\x66\\x39\\xb9\\x04\\xd0\\x50\\x20\\x7e\\xe8\\x0a\\x43\\xac\\x33\\xcd\\x76\\xb7\\x7d\\xcb\\x14\\xa9\\x98\\x26\\x1d\\x11\\x21\\x66\\xe4\\x54\\x8d\\x15\\xa9\\x76\\x41\\x69\\x45\\x6f\\xda\\xea\\xa2\\x5e\\xbf\\xfb\\x28\\x57\\xac\\x60\\xaf\\x35\\x4a\\x41\\x86\\xc5\\x2a\\xc7\\xe6\\xad\\x27\\xd9\\x3b\\xac\\x63\\xae\\x4a\\x2f\\xea\\xd8\\x6c\\xad\\x09\\x09\\xe4\\xec\\x1a\\x7f\\x5d\\xf2\\x89\\xf4\\x3e\\xd8\\x43\\xcf\\x91\\x32\\x34\\xf2\\xd2\\x9e\\x55\\xf3\\xb8\\x86\\x87\\x79\\x9a\\xb2\\x28\\xa8\\x78\\xec\\xb4\\x11\\x1e\\x80\\x46\\x12\\xa4\\x20\\x96\\x87\\xf3\\xa7\\x7b\\x2e\\x66\\x6a\\x85\\xad\\xaa\\xac\\x21\\xb6\\x9c\\x06\\x26\\xe5\\xfb\\xc8\\xd6\\x2a\\x8b\\x7d\\xcc\\xbf\\xe7\\xcb\\x96\\xdb\\xc3\\x62\\x17\\x52\\xe4\\xf6\\x7e\\x01\\x6a\\x6f\\x85\\xd3\\x5f\\xb6\\x52\\x25\\x1a\\xa3\\xc3\\x2b\\x0e\\x75\\xd8\\x09\\xdd\\xf1\\x2b\\xfa\\x95\\xa9\\x42\\xce\\x6a\\xf3\\x7f\\x09\\xb2\\x7d\\xb6\\xad\\xfc\\x81\\x2a\\x80\\xf8\\x72\\x96\\x32\\x8f\\x99\\xc0\\xaa\\xa9\\xd1\\xe8\\x55\\x50\\xb9\\x10\\x97\\xd3\\x56\\x7e\\xa2\\x5a\\xa6\\x96\\x36\\xfa\\x8c\\x03\\xe4\\x42\\xdf\\x68\\x74\\x06\\xe9\\x98\\x58\\x90\\x93\\x7b\\x47\\xb6\\x15\\xed\\x8b\\x3f\\xdc\\xf9\\x9b\\x58\\xc0\\x22\\x9f\\xfb\\x9d\\x59\\x3a\\x18\\x61\\x4e\\x37\\x25\\xeb\\x5c\\x5b\\x30\\x0d\\xe3\\x20\\x77\\xa6\\x55\\x7a\\x5e\\x02\\x26\\xaf\\x6d\\xcb\\x4d\\x9d\\xb8\\xf6\\x87\\x04\\xfe\\xd7\\xaf\\x12\\xcd\\xad\\xe6\\x64\\x54\\x05\\xb5\\x1b\\x41\\x28\\x95\\xcf\\xb5\\x10\\x8a\\xeb\\x82\\xb0\\x0d\\x2a\\x8c\\x7f\\xcb\\x96\\xda\\xee\\x65\\x36\\xa3\\x9a\\x7c\\x96\\xc9\\xd2\\xf4\\xaa\\x61\\x69\\xa7\\x75\\xea\\x6e\\x73\\xa8\\x39\\xce\\x9a\\xb4\\x68\\xe0\\x50\\xd1\\xfd\\xf0\\xe3\\x30\\x4d\\xa5\\x4b\\x05\\x81\\x24\\xbc\\xc3\\x18\\x32\\x83\\x21\\xec\\xf5\\xe5\\x27\\x63\\x7b\\x46\\xd6\\x4d\\x5d\\x24\\x46\\xd1\\xf7\\x1f\\x09\\x0f\\xc8\\x28\\x49\\xcc\\x62\\x05\\xd5\\xda\\xf4\\xbd\\xa4\\xe2\\xfd\\xe3\\x8c\\xeb\\xb6\\x9b\\x1d\\x9a\\xb1\\x62\\xb7\\x43\\x23\\x33\\x76\\xb8\\xbb\\x61\\xbb\\xdd\\xdc\\xfb\\xc6\\xf1\\xe1\\xf1\\x9e\\x8f\\xa8\\x01\\x61\\x3a\\xf9\\xea\\xd4\\x36\\x12\\x0a\\x31\\xf2\\x47\\xd3\\x34\\x23\\x58\\x3d\\x6a\\xf4\\x2a\\xc9\\xda\\x87\\xf6\\x89\\xc7\\xf0\\x31\\x55\\x68\\x4a\\xfe\\x45\\x5b\\x20\\xa9\\xdb\\x84\\x6c\\x7f\\xf1\\xec\\x78\\x89\\x50\\x2a\\x58\\xd2\\xc6\\x7e\\xee\\x38\\xb5\\x73\\x40\\x83\\xbe\\xb0\\x5e\\x59\\x54\\xcf\\x8e\\x36\\xef\\xec\\x00\\x0a\\xb7\\xf6\\xc9\\x10\\x99\\x13\\x80\\x9f\\x21\\xfa\\x20\\xd4\\x78\\xa3\\xf1\\x04\\x39\\x3f\\xf6\\xbe\\x39\\xdf\\x36\\x59\\x66\\xea\\xf7\\x9c\\xa2\\xc6\\xa7\\x67\\xd3\\x2b\\x58\\xa9\\x90\\xef\\xfb\\x8d\\x4e\\x14\\xa6\\xbf\\x68\\x5a\\xfb\\xe0\\xb4\\xc1\\xfe\\xfb\\x9a\\x92\\xbe\\x09\\xf9\\xf8\\x53\\x02\\xa6\\x34\\x79\\x41\\x7b\\xf1\\x46\\xa4\\x41\\x83\\x2c\\x9a\\x24\\x6d\\xa0\\xd7\\xba\\xfc\\x26\\x15\\x87\\x2d\\x6c\\x92\\x5b\\x8c\\xb9\\x9d\\xf3\\xb8\\xd6\\x27\\x71\\x85\\xc5\\x96\\x47\\x3c\\x05\\x30\\xb6\\xc9\\x93\\xc5\\xc9\\x40\\x9e\\x44\\xbb\\x81\\x20\\xc7\\x78\\x8c\\xcc\\xe3\\xa4\\xc3\\x0e\\xa5\\xfb\\x26\\x74\\x2a\\x79\\x63\\x53\\xce\\xf2\\x3e\\x18\\x0f\\x61\\x34\\xa7\\x6a\\x6c\\x7f\\xb5\\x2f\\x39\\x38\\x34\\x28\\x02\\xde\\xad\\x82\\x49\\xf4\\xde\\xc7\\x23\\x1c\\x0a\\xa3\\xf8\\x11\\x4e\\x06\\xa3\\xe9\\x4c\\xfb\\x22\\xa9\\x02\\xdf\\x93\\x27\\x2d\\x79\\xae\\x01\\x03\\xd9\\x23\\x9b\\x2e\\xe7\\x27\\x93\\xe0\\x70\\x80\\xc4\\xe7\\x2a\\xa8\\x20\\x96\\x68\\x7e\\x3b\\x23\\xbe\\xfa\\x55\\x4f\\xa5\\xe2\\xce\\x39\\x5b\\x2f\\x37\\x12\\xe0\\x6b\\xb1\\xf5\\x61\\xae\\xe4\\x1e\\x4a\\x19\\x27\\xef\\x7c\\x68\\x09\\x26\\x62\\x84\\xbe\\xfd\\xac\\x89\\x91\\xca\\xc9\\xeb\\x96\\xa5\\x76\\x48\\x0f\\x71\\xef\\xc9\\xbd\\xb2\\xb9\\x35\\x18\\xb7\\x0e\\xce\\x5c\\x51\\x11\\xc9\\x0a\\xb9\\xda\\x21\\x91\\xc5\\xf3\\x1d\\xc6\\x38\\x5a\\x8b\\xff\\x70\\x9c\\x83\\x42\\x6b\\x8b\\x4b\\xaf\\xe7\\x19\\x67\\x7d\\xc0\\xdf\\xea\\x74\\x16\\xd9\\x62\\xe3\\x36\\xdc\\xe8\\xda\\x14\\x6e\\x1f\\x1a\\xa9\\xb6\\x31\\x79\\xc5\\x30\\x21\\xb8\\x32\\x6e\\x36\\xd7\\x70\\xb4\\xc1\\xb9\\xb9\\x30\\xf6\\x03\\xc5\\xda\\x7f\\x2f\\x5f\\x24\\xdb\\x22\\x49\\xdc\\xc2\\x6d\\xd9\\xd9\\x25\\x8d\\x7f\\x71\\xbf\\xe1\\x45\\xae\\xd1\\x2b\\x83\\x15\\x96\\x52\\x13\\x14\\xf4\\x9a\\xc7\\x25\\xcc\\x9d\\x20\\x3d\\xb3\\xc5\\x41\\x7b\\x07\\x66\\x6f\\x45\\x97\\x2d\\xed\\x06\\x17\\x7e\\x65\\xa7\\x4d\\x2a\\xf9\\x75\\x61\\x6d\\x16\\xe1\\xc7\\xf8\\xc2\\x30\\xd2\\xde\\xd8\\xd3\\x6d\\x3d\\x54\\xd9\\xcf\\xee\\x60\\x43\\xef\\xfd\\x4f\\xee\\x36\\xe2\\x53\\x33\\xd9\\x29\\xf1\\x44\\x38\\x08\\x6d\\x30\\xb4\\x0f\\xa3\\x6d\\x74\\xb4\\xc7\\x3e\\x4f\\xbb\\x07\\xe9\\x4b\\x75\\x1c\\x60\\x08\\x79\\x2c\\x68\\x4b\\x25\\x21\\x25\\xc8\\x05\\x5f\\x38\\x01\\x98\\xb8\\x74\\x11\\x60\\xa4\\xeb\\x99\\xd2\\x7f\\xf4\\x49\\x90\\x92\\xfd\\xa5\\xb7\\xc5\\x82\\x0e\\xb6\\x62\\xbb\\x00\\x4a\\xc1\\x67\\x9a\\x5b\\x82\\x0d\\x7f\\x09\\x59\\xde\\xa1\\x3a\\xc9\\x4b\\x22\\x7b\\xc1\\xa8\\x15\\x4a\\x69\\x6e\\x9d\\x4e\\x50\\x54\\x31\\x9a\\x25\\xe9\\x77\\x28\\xf6\\x29\\x26\\x89\\xbb\\x43\\x38\\x45\\x14\\x22\\x2a\\x79\\xdb\\x75\\x44\\xbe\\xe7\\x58\\xdb\\x24\\x03\\x34\\xdb\\x75\\xdd\\x97\\xf6\\x29\\x13\\x08\\x19\\x1e\\x2e\\x99\\xda\\xfb\\x41\\x9c\\x81\\x59\\xeb\\x23\\x46\\xb4\\x99\\x19\\xe1\\xf7\\x09\\x9c\\x19\\x5f\\xd2\\xa0\\x4d\\xac\\xff\\x6d\\xd8\\x21\\xbe\\x27\\xe6\\xdf\\xfa\\x1f\\x65\\x54\\xb7\\x23\\x92\\x7d\\xcd\\x90\\xf5\\xab\\x6f\\x32\\xc1\\x06\\xc7\\xdd\\xb7\\x58\\x21\\x90\\x84\\x4c\\xb6\\x10\\x41\\xe9\\x6e\\xbf\\xfd\\xf8\\xe7\\xc8\\xd2\\x08\\x8d\\xac\\xed\\xc2\\xef\\x92\\x59\\x7e\\x41\\xd2\\x11\\xc1\\xa9\\xc6\\x32\\x88\\x1f\\xd0\\x8a\\xc4\\x06\\xd7\\x4f\\x85\\x7d\\x11\\x02\\xa1\\xdd\\x64\\xd8\\xc5\\xd3\\x50\\x5e\\x0b\\x1c\\xc7\\x53\\x89\\xd0\\x1f\\x76\\x2f\\x2b\\x4c\\xb1\\xdb\\xf3\\x2c\\x42\\x52\\xb1\\x0e\\xcb\\x34\\x6a\\x3e\\xd2\\x14\\x8a\\xaa\\x79\\xb3\\x15\\x45\\x55\\xcb\\xea\\x6f\\x16\\x61\\x9a\\xc4\\x34\\xf7\\xbc\\xf4\\x8c\\x9d\\x4e\\xd8\\x64\\xce\\xc8\\x60\\xe2\\x10\\x2c\\xb2\\xc3\\x72\\x84\\x0e\\xe6\\x68\\x9f\\xdb\\x03\\x4e\\xa2\\x5f\\xca\\x3c\\x13\\x62\\xaa\\x8a\\x3c\\x5f\\xbd\\xda\\xb5\\x28\\x70\\xa6\\x23\\x7e\\x42\\x01\\x4f\\xef\\x88\\xf8\\x0a\\xf6\\x7f\\xd4\\xa4\\xb9\\xa2\\x01\\x5d\\xa9\\x92\\xf9\\x97\\x04\\x0f\\xd5\\xcc\\x95\\x37\\x26\\xcf\\xd9\\xfb\\xb1\\xa3\\xb1\\xee\\xc9\\x6b\\x4d\\xaa\\xf3\\xdc\\x5d\\x05\\x09\\x30\\xab\\x7b\\x2f\\xd0\\xbf\\xde\\xb8\\x62\\x49\\xa6\\x9f\\x46\\x3b\\x77\\xc5\\x75\\x57\\x52\\x8c\\x34\\xf3\\x01\\x16\\xbc\\xb1\\x02\\x36\\xba\\xf8\\x60\\xdc\\x7b\\xfc\\xe3\\x50\\x5f\\x9f\\x26\\x26\\xbf\\x26\\xd9\\x97\\xe2\\x8e\\x34\\x8c\\xfe\\xe3\\x5a\\x90\\x12\\x47\\x21\\xc1\\x1a\\x11\\x65\\xc9\\x82\\x56\\x0e\\x25\\xd2\\x5d\\x2b\\x3c\\xce\\x8e\\x8a\\x67\\x84\\xc9\\x63\\x49\\xea\\x83\\x0d\\xec\\x8c\\x37\\x98\\xe3\\x60\\xb6\\x71\\xd7\\xbc\\xf1\\x32\\xeb\\x0d\\x3a\\x8d\\x85\\x9b\\x41\\xa6\\x47\\x6d\\x7b\\x6e\\xcd\\xb9\\x1e\\x3b\\xec\\x6e\\xa8\\x84\\x33\\x3d\\xca\\x5c\\x27\\x76\\x31\\xd5\\x64\\x00\\x51\\x16\\x6d\\x3f\\x1f\\x96\\x33\\xec\\x31\\xcf\\x0a\\x88\\x05\\x77\\x2e\\x47\\xae\\x7b\\x0a\\xdc\\x46\\x1d\\xc3\\x88\\x94\\x4d\\x1f\\x9a\\xdc\\x93\\x04\\xea\\xfb\\xb5\\xc0\\x16\\x3b\\x22\\xc7\\xc2\\xac\\x9b\\xe3\\x02\\xd3\\x36\\xd3\\x29\\xdb\\xca\\x3f\\xda\\x41\\xc3\\x60\\x0d\\x72\\xbe\\xe6\\xd6\\x6e\\xd9\\xa9\\xd3\\xa4\\xfa\\xd4\\x3a\\x35\\xaa\\xdb\\xce\\x76\\x91\\x5f\\xcc\\x4f\\x49\\x65\\x4b\\x28\\xae\\x5f\\xa3\\x4b\\xd9\\xa7\\xe1\\x99\\x64\\x4b\\xc3\\x4f\\x93\\x23\\x1e\\x7a\\x8c\\x1c\\xe9\\xc4\\xa2\\xc8\\xa3\\x11\\xfe\\xa9\\x87\\x43\\x0e\\xa2\\xc3\\xb3\\xc9\\x9a\\xe3\\x27\\x89\\x8e\\xac\\x4d\\x27\\x08\\x19\\x9c\\x16\\xa7\\x3e\\xb2\\xf0\\xe8\\xff\\x6a\\x9c\\xb1\\xa7\\x37\\xb9\\x0c\\xcb\\x2e\\x5f\\xdd\\xac\\x7a\\x69\\xb7\\x65\\x9b\\x46\\x24\\xe6\\xbc\\xea\\xc8\\xfe\\xcd\\xa5\\x5d\\x65\\x4a\\x6b\\x28\\x47\\x31\\x2b\\x15\\x59\\x86\\x50\\x5c\\x6f\\x3b\\xf0\\x6f\\xe1\\x9e\\x2b\\x17\\x59\\x93\\x04\\xc5\\x4b\\x2b\\x59\\xe2\\xc6\\x5a\\xbd\\x4a\\xdb\\xed\\xa4\\xac\\x62\\x7e\\xca\\xa6\\xe1\\x79\\x43\\xd3\\x47\\x57\\x9c\\x78\\x94\\x33\\x9c\\xd8\\xb1\\x0e\\x3c\\xe4\\xb0\\x13\\xfe\\xfd\\xdd\\xf9\\x07\\xff\\xf6\\xc7\\xfe\\xe2\\xdf\\xfe\\xf1\\xaf\\xff\\xe4\\x77\\x2f\\x1e\\xe6\\x2b\\xdd\\xe2\\x3e\\x5e\\x7c\\xf9\\x3d\\xbd\\xd2\\x25\\x37\\xbb\\xfc\\x8a\\x27\\x6e\\xf3\\xe3\\x9e\\xf7\\xba\\xf7\\xfc\\x12\\x4f\\x7d\\xe2\\x5d\\x3e\\xe1\\x8d\\x9e\\xf9\\xde\\xdf\\xf8\\xc1\\x8b\\xdf\\x73\\x6a\\x7b\\x45\\x90\\x90\\x5d\\x61\\xb8\\xc2\\x75\\x45\\xe4\\x0a\\xea\\x8a\\x72\\x02\\xa8\\x0e\\x29\\x93\\xc2\\x04\\x66\\xe8\\xbc\\x4a\\xea\\x86\\x3c\\x62\\x35\\x1b\\x63\\x89\\xf6\\x39\\x19\\x69\\xa9\\xc4\\x97\\xaa\\x49\\x42\\x29\\xfe\\x90\\xba\\x31\\xd1\\x5c\\x86\\x85\\xdb\\x2b\\x4c\\xc9\\xbc\\xc5\\xff\\xa9\\x50\\x83\\x51\\x15\\x31\\x19\\x29\\x2e\\x73\\x9d\\x30\\x38\\x08\\xce\\x2c\\x59\\x8b\\x1f\\x8d\\x9a\\xd1\\x1a\\x67\\xb9\\xde\\x3f\\x2a\\xa6\\xc9\\x54\\xbf\\xdf\\xd5\\xd5\\x63\\x23\\xc9\\x2d\\x2c\\x96\\x38\\x1a\\x24\\xbb\\x1a\\x62\\x12\\xd3\\xbd\\x28\\x47\\x2f\\x41\\x79\\x32\\xed\\xac\\x17\\xeb\\x2b\\x6f\\x20\\x63\\x8e\\x82\\x00\\xae\\x35\\x7f\\x47\\x19\\x04\\xa6\\x21\\x67\\x16\\x4c\\x36\\xfb\\x99\\x28\\xeb\\x8f\\xd1\\x3b\\xe8\\x80\\x25\\x7f\\xcd\\x6b\\x73\\x99\\xa2\\x52\\x58\\x06\\x69\\x87\\x0e\\xf6\\x3a\\x3f\\x91\\x2d\\x97\\x89\\xeb\\x67\\xda\\x3d\\x38\\xec\\x9a\\xb5\\x66\\xb2\\x88\\xd6\\x25\\xc4\\x4b\\x3b\\x53\\x36\\xa4\\x1e\\xef\\xd9\\xcf\\x42\\xd1\\x60\\xb6\\xc2\\xbc\\x7c\\xbd\\x34\\x72\\x53\\xe6\\x2b\\x5c\\x3c\\xd6\\x05\\x8a\\xe6\\x92\\xcf\\x22\\x8c\\xfd\\x3f\\x62\\x24\\x76\\x8b\\x63\\x5d\\xa4\\xe8\\x71\\x72\\x4e\\xf5\\xa7\\xb5\\xa9\\xe0\\x76\\x27\\xbd\\xbf\\x9f\\x1e\\x0c\\x22\\x2d\\xe0\\x31\\xaf\\xb2\\x92\\x2f\\x3f\\x03\\x5b\\xe8\\x29\\x84\\x3d\\xf0\\x6f\\x79\\xe9\\xb4\\x43\\xa9\\xbb\\xf9\\x2b\\x29\\xb9\\x9d\\xe6\\x79\\xc1\\x65\\xbd\\xc9\\xa0\\x24\\x09\\xad\\x8c\\x8f\\x80\\xd0\\x0c\\x79\\x03\\x0a\\x8d\\x64\\x03\\x4d\\x3d\\x93\\x35\\xfb\\x99\\xcb\\x48\\xc2\\xa3\\x57\\xf0\\x14\\xd9\\x85\\x8c\\x7a\\x69\\xa4\\x5b\\xd9\\x40\\x9a\\x8c\\x22\\xd7\\xcf\\x5d\\x3a\\xc7\\x24\\x41\\x18\\xaf\\x1c\\x72\\xcc\\xf1\\x68\\xc3\\x02\\x6e\\x3a\\xe2\\xeb\\x05\\x23\\x3d\\x61\\x83\\x45\\xef\\x59\\x94\\x9f\\xb1\\x50\\x0f\\x6c\\x33\\x82\\xdf\\x0f\\xeb\\x5c\\x68\\x0d\\xea\\x12\\x46\\x54\\x9c\\xce\\x32\\x87\\x96\\x93\\x84\\x3e\\xa6\\x6e\\x42\\x80\\xac\\xdd\\x06\\x9c\\x41\\xcd\\x7f\\x66\\x37\\x01\\x19\\x8f\\xfc\\x8e\\x30\\xdb\\x88\\x7d\\xc4\\x5b\\x58\\x0c\\xa0\\x14\\x22\\xb9\\x6e\\xc4\\x5a\\x64\\x24\\xa9\\x85\\xd8\\x80\\x8e\\xed\\x15\\x7b\\x49\\x28\\x65\\x53\\x69\\x96\\xf3\\x96\\x94\\x20\\x13\\x7d\\x2c\\x79\\xc9\\x86\\x9b\\xd3\\xe1\\xe1\\x7f\\xf8\\x9e\\x27\\x4f\\x40\\xf9\\x39\\xf0\\xb2\\x5f\\x99\\x7a\\xcd\\x75\\xf8\\x70\\x80\\x19\\x30\\x91\\x78\\x65\\x1b\\x9e\\x1c\\x1f\\xca\\x73\\xd9\\xfc\\x10\\x76\\xcb\\x2b\\x27\\x13\\x65\\x91\\xa8\\xc4\\x7a\\x1f\\xa1\\x71\\xfa\\x57\\x7e\\xd6\\x5c\\xde\\x46\\x56\\xb1\\xfb\\x9e\\x55\\xc4\\x76\\x88\\x5c\\xcd\\xf6\\xd2\\x4a\\x23\\x08\\xbb\\x09\\x74\\x07\\xda\\x70\\x64\\xa6\\x39\\xb1\\xf4\\xd8\\x7f\\x09\\x61\\x89\\x75\\x57\\xad\\x35\\xa4\\x08\\x1a\\x46\\x00\\xa3\\x57\\x2a\\xd8\\x16\\x8d\\x4c\\xde\\x5f\\x3a\\x06\\x7c\\x97\\xb0\\x1a\\xf6\\xae\\x1d\\x5e\\x2f\\xaa\\x6c\\xdd\\x3c\\x36\\x17\\x1e\\xbd\\x21\\x29\\x8f\\xb6\\x2b\\xef\\x94\\xe3\\x2a\\xc9\\x6e\\xfd\\x03\\x84\\x67\\xc8\\x76\\x85\\x38\\xca\\xaf\\xaa\\x8e\\x83\\x34\\x76\\x92\\x30\\xff\\xbc\\xb6\\x75\\xa7\\x27\\xc2\\x01\\x43\\x2f\\x6d\\x6b\\x3c\\xae\\x66\\xb2\\xd9\\x3a\\x69\\xbd\\x87\\x0c\\x09\\x53\\xbc\\x0c\\x63\\x5c\\xc7\\xf0\\xc4\\x9b\\xfb\\xd7\\x93\\xbd\\x27\\x57\\xbb\\x53\\x8a\\x64\\x9e\\xd5\\x8a\\xb4\\x59\\x85\\x09\\xa8\\x85\\x88\\x9a\\x1c\\x85\\xb1\\x07\\x9c\\x38\\x6d\\x12\\xb4\\x6e\\x13\\x0e\\x27\\x0b\\x27\\x5d\\x38\\x2e\\x80\\xbd\\xd6\\x8d\\x96\\x79\\x16\\xda\\x48\\x40\\x39\\xff\\x2f\\xe4\\xdc\\x94\\x08\\x52\\xb2\\x17\\x17\\x12\\x9b\\xb4\\x8a\\xb9\\x22\\xad\\x39\\xe3\\x35\\x98\\x20\\x01\\x43\\x57\\xc0\\x9b\\xa8\\xea\\x66\\x78\\x24\\xbc\\x05\\xb7\\x44\\xf3\\xee\\x77\\x3b\\xba\\xe1\\x42\\x30\\x72\\x44\\xa2\\xac\\x40\\x4e\\xfc\\x00\\xf4\\x8b\\xc7\\xe2\\xab\\x69\\xf0\\x2d\\x69\\x3c\\x75\\xcc\\x5c\\x7e\\x9e\\x80\\x89\\xa2\\xb9\\x80\\x5e\\x1a\\xbb\\x6c\\x4e\\x4e\\xab\\xa7\\x58\\x4b\\x6e\\xb6\\xf4\\x19\\x49\\xeb\\x3e\\x6e\\xe4\\xa8\\x18\\xf1\\x12\\x04\\x76\\xd5\\xb8\\x58\\x9b\\x07\\x5a\\x67\\x4f\\x53\\x9b\\x9c\\x4d\\x91\\x36\\x3d\\xbc\\x90\\x0b\\xfc\\x57\\xa0\\x4b\\x53\\x35\\x38\\x37\\x90\\x26\\xf7\\xdd\\xf7\\xe6\\x10\\x8d\\x82\\xb9\\xb9\\x0a\\x95\\x92\\x71\\x05\\xa6\\x16\\x4f\\x91\\xb6\\xb9\\x68\\x57\\x96\\xce\\x32\\x8e\\xe0\\x02\\x39\\xae\\xf5\\x8e\\xc9\\xf2\\x0e\\xf4\\x6a\\x9a\\xff\\xe1\\xe5\\x7d\\x7b\\x57\\x70\\x3a\\x68\\x3f\\x6c\\x33\\x37\\xf4\\x49\\x94\\xd6\\xb9\\x10\\x5d\\xde\\xc6\\x4e\\x08\\xc2\\x32\\x56\\x88\\x63\\x23\\xb1\\x2b\\x21\\x62\\xe4\\x79\\xef\\xc3\\x19\\xdf\\x7d\\x7c\\xd4\\x3a\\x3b\\xbc\\x1b\\xf2\\x9c\\x1f\\x62\\x8b\\x57\\x89\\xcf\\x4f\\xf4\\x0c\\xbe\\x05\\x53\\x5b\\x00\\x06\\xc8\\x5b\\x2b\\x77\\x49\\x2c\\xde\\x36\\x58\\xf2\\xfd\\xbf\\xb5\\xca\\x1c\\x3b\\x5d\\xf7\\x2e\\xcb\\x10\\x5f\\xd4\\x03\\xc2\\xd2\\xcf\\xe0\\x88\\xc3\\xfb\\xdb\\xf2\\x14\\x53\\xc3\\x42\\x9f\\xc4\\xe7\\xbf\\xeb\\xa0\\xb4\\xa4\\x66\\xab\\x0d\\x5e\\xa6\\xb7\\xe8\\x7b\\x73\\x89\\xb1\\x6a\\x6c\\x5f\\xdf\\x0c\\xad\\xb3\\xd9\\xcc\\x3d\\xef\\xbb\\x37\\x2a\\xb7\\x8d\\xf0\\x00\\x8b\\xb6\\x8c\\x5d\\xac\\x9a\\xab\\x5d\\xbe\\xc1\\x45\\xcc\\xb1\\x3e\\x8b\\x9a\\xbc\\xb4\\xbd\\xc0\\x57\\xc6\\x9d\\x6b\\xa9\\xec\\xd7\\xe5\\x6e\\x8f\\x93\\x38\\x06\\xca\\xf5\\xf0\\x3e\\x38\\xdf\\x08\\x82\\x33\\xcb\\x7c\\xf5\\xc0\\xe2\\x50\\xd6\\xe9\\x44\\x93\\x23\\x0b\\xe0\\x94\\xba\\xe3\\x93\\xda\\x4f\\x04\\x4d\\xd8\\xd9\\xd2\\x8b\\x66\\x0f\\x92\\xd3\\x0a\\x28\\xbd\\x70\\xb6\\x15\\xaa\\x73\\xff\\x8b\\x08\\xeb\\x73\\xdf\\xad\\x6a\\x99\\xc9\\x22\\xcb\\x9e\\x24\\x40\\x51\\x24\\x7a\\x80\\xed\\xaf\\xbd\\x80\\x9c\\x07\\x96\\xe1\\x3b\\x38\\xad\\x10\\xcb\\x76\\xdf\\x9d\\xc3\\xf3\\x87\\x3d\\xec\\xea\\xdd\\xd9\\xc9\\x90\\x4e\\xaf\\x3c\\x6f\\x23\\xb0\\x0a\\x46\\x1c\\x81\\x88\\x88\\x41\\xd7\\x0d\\x2d\\x52\\x2f\\x86\\xff\\x2d\\x6a\\x0f\\x60\\x15\\xc2\\x45\\x74\\x5b\\xc8\\x01\\x15\\xac\\xd1\\x91\\x82\\xea\\x2c\\xbd\\x28\\xd0\\xc1\\xd2\\x0b\\x03\\xfb\\x6a\\x93\\x17\\x40\\xd7\\x0c\\xbf\\x2e\\x13\\x92\\x33\\x29\\x5d\\x7b\\x4f\\xec\\x17\\xaf\\x43\\xb2\\x33\\x5d\\xc3\\x04\\x40\\x55\\xba\\xcd\\xd0\\x0d\\x7c\\x91\\x39\\x56\\xc5\\x03\\xd2\\x74\\xda\\x50\\xe6\\x92\\x9f\\x8c\\x6b\\x37\\xb4\\xa1\\x2a\\x71\\x7d\\xeb\\x93\\x11\\x02\\x99\\x2f\\x14\\xb5\\x4e\\x6d\\xb8\\x0d\\xb3\\x89\\x25\\x92\\x7d\\xdc\\x9c\\x0e\\xc1\\xb1\\x9b\\x11\\x01\\xfe\\x68\\x4f\\xee\\x3b\\x69\\x8b\\x17\\x5c\\x5f\\xc1\\x81\\xbf\\x94\\x6b\\x67\\x84\\x79\\xe0\\xd1\\x9d\\x10\\x99\\x06\\xbb\\x58\\x31\\x21\\xc0\\xbd\\x1a\\x24\\xbe\\xcc\\xce\\x47\\x4c\\xf4\\x4e\\x49\\x15\\x39\\xdc\\x91\\x9f\\x6f\\x8c\\x05\\xda\\xe8\\x16\\x0d\\xf9\\x00\\xfa\\xd4\\xc1\\x8e\\xc1\\x62\\x43\\xfa\\xf0\\xc7\\x6d\\x5e\\x01\\x5a\\x5a\\xc7\\xa1\\x27\\x6f\\x90\\x94\\x92\\xe1\\x8b\\xf8\\xe7\\x97\\x35\\xc3\\x03\\x54\\x95\\x78\\x30\\xcb\\x10\\x1b\\x5c\\xf4\\x26\\xab\\x90\\x48\\xf4\\x13\\x8b\\xe5\\x88\\x5c\\x52\\x30\\x5b\\x51\\x0f\\x5f\\xac\\xbc\\x97\\xed\\x94\\x76\\xdc\\x10\\x84\\x3f\\x3c\\xe7\\x93\\xb6\\x58\\x34\\x39\\x17\\x84\\x6a\\xea\\xf5\\xe8\\xc1\\xae\\x15\\xd2\\x92\\x8e\\xf4\\x8e\\xaf\\x04\\x2e\\x54\\x1e\\x6b\\x8b\\x25\\x62\\x04\\x68\\x52\\x4e\\xe5\\x6d\\x44\\x8e\\x2d\\x60\\x0d\\x61\\x72\\x52\\x03\\xbc\\xbd\\x74\\xfe\\x79\\x2d\\xb3\\x4d\\xdb\\x9a\\xb8\\xfb\\xc6\\x77\\x86\\x9d\\x78\\x1c\\x9e\\x24\\x72\\x9c\\xc4\\xe6\\x46\\x0a\\x1b\\x27\\x75\\xcc\\x62\\x33\\x33\\xd9\\x48\\xbc\\xe5\\xe2\\x9f\\xd0\\x2a\\xd3\\xce\\xba\\x48\\x5d\\x8c\\x19\\x6a\\x24\\xc2\\x12\\x12\\x3e\\xc9\\x45\\xa1\\xa3\\x15\\xb1\\xb0\\x39\\x5e\\xca\\x14\\x42\\xc9\\x4b\\xf5\\x3d\\x36\\x0d\\xc1\\x85\\x30\\x57\\x36\\x21\\x64\\x2c\\x4a\\xae\\x6a\\xfb\\x5b\\x35\\x2b\\x0a\\x9c\\xb2\\x29\\xa9\\x0a\\x68\\x89\\x67\\x63\\x43\\xb1\\x16\\x3d\\x26\\xf1\\x37\\x94\\xd1\\xda\\xed\\xcf\\x5b\\xfe\\xaa\\x03\\x6e\\x3d\\xe4\\x6e\\xc3\\x2e\\xd7\\x6e\\x4c\\xd3\\x99\\xdd\\x79\\x3d\\x76\\xd9\\x0f\\x0e\\x1d\\x5f\\x95\\x1a\\x48\\x07\\xe8\\x95\\x70\\x72\\x8b\\x5c\\xdb\\xf8\\x87\\xe3\\xa5\\x06\\x64\\x33\\x91\\xe6\\xbd\\x15\\xb0\\x2e\\x62\\x4a\\x55\\xef\\x0e\\x8e\\x48\\xf5\\xd4\\xbb\\x05\\xc8\\x3f\\x96\\x4d\\xfe\\x26\\x0b\\x16\\xd2\\x98\\xea\\x21\\x0b\\xcc\\x5b\\x69\\xba\\x80\\xcb\\x8b\\x8a\\x11\\x89\\x4d\\xc6\\x61\\x94\\x48\\x67\\x22\\x44\\x59\\xb0\\x84\\x1e\\xef\\xfd\\xd6\\x48\\xcb\\x88\\x23\\xba\\x8c\\xfa\\xe2\\xd9\\xd6\\xf8\\x7b\\xac\\xe8\\x67\\x91\\x01\\x16\\xd8\\xe9\\xaa\\x57\\xc1\\x10\\x4d\\x04\\xa2\\x18\\xd3\\x44\\x22\\x47\\x04\\x04\\x67\\x91\\x20\\x24\\x6a\\xec\\xc4\\x7b\\x12\\xfe\\x17\\x90\\xf4\\x53\\xab\\xef\\x14\\xb5\\x84\\xf9\\x6d\\x98\\x6b\\xad\\x81\\x93\\x5e\\xbb\\x38\\xe9\\xe7\\x29\\xc7\\x42\\xdb\\x23\\x00\\x5a\\x6b\\x9a\\x06\\x04\\xc8\\x19\\x11\\x31\\x21\\x99\\x61\\x97\\x90\\xf5\\x9c\\x4c\\xd6\\x3a\\xa2\\xb9\\x78\\x43\\x46\\xeb\\x14\\x93\\xd6\\x09\\xf4\\xa5\\x11\\x2f\\x99\\xe8\\x72\\xbf\\x03\\xa7\\xa2\\x28\\xaf\\xaf\\x4c\\x16\\xdd\\x95\\xe1\\x53\\x95\\x1a\\x08\\x86\\x54\\x5a\\x33\\x19\\x7b\\xbc\\xf0\\x79\\x63\\xa7\\xb4\\x91\\x36\\x7e\\x3a\\x3e\\x1a\\x2d\\x09\\x61\\x15\\xc4\\xe8\\xe3\\xa2\\x3f\\x58\\xbe\\xc4\\x79\\x4a\\xcd\\xcc\\x09\\x81\\x4b\\xaf\\x51\\x14\\x72\\xa7\\x27\\xec\\xa1\\xb9\\x57\\xee\\x16\\xc9\\xe6\\xd2\\x88\\xd6\\x82\\xcb\\x92\\x97\\xd5\\xbc\\x01\\xac\\xee\\xd6\\x55\\x62\\x89\\x5f\\xa5\\xfd\\x22\\x56\\x2d\\xb6\\x6c\\xf9\\x85\\x5b\\xbb\\x79\\x7e\\xeb\\x2b\\x0b\\x27\\xfc\\xb8\\xfe\\x48\\xf4\\xf0\\xa0\\x9c\\xcc\\x2a\\xa0\\x48\\x13\\x0d\\x15\\x27\\xe4\\x2b\\xa4\\xab\\xed\\x2b\\xa0\\x76\\xc0\\x4e\\xff\\xbb\\x0e\\x23\\xd6\\x8e\\x8c\\xfd\\xb6\\xd6\\xac\\xd4\\xe6\\xd2\\x55\\x45\\x43\\x01\\xfe\\x9c\\x80\\x4a\\x2f\\x13\\xc1\\x58\\xeb\\xdb\\xdb\\xaf\\x2a\\x1d\\x81\\x45\\xf8\\xc0\\xcb\\x50\\xba\\x61\\xce\\x55\\x63\\x34\\x7c\\x49\\xa0\\x23\\x3a\\x7e\\x51\\x3e\\xad\\xad\\xa7\\x1a\\x26\\x20\\x16\\x43\\xac\\xae\\x1a\\x86\\x50\\xf4\\xa8\\x9c\\xfc\\x9f\\x62\\xc7\\x4b\\x57\\xff\\xcb\\x34\\xe4\\x03\\xc6\\x86\\x68\\x42\\xf8\\x6c\\xab\\xa2\\x39\\xe9\\x02\\x42\\x22\\x85\\x34\\x74\\xe4\\xb1\\x86\\x26\\x42\\x98\\x41\\x83\\xaa\\xff\\xec\\xd6\\xa5\\xbe\\xb1\\xc5\\x1e\\xd9\\x27\\x9b\\x30\\xce\\xaf\\xcf\\x0a\\x7f\\xe2\\xaf\\xda\\x7c\\xcd\\xb5\\xba\\xbe\\xd0\\x7c\\x7d\\xeb\\x66\\xdf\\x92\\x2e\\xec\\xdd\\x7d\\x17\\xce\\xa7\\x62\\x56\\x41\\x02\\x05\\x98\\x61\\x99\\xbd\\xe8\\x8c\\x29\\x4a\\x43\\xc2\\x32\\x96\\xc4\\x42\\x8b\\xb3\\x66\\x5f\\xbf\\xda\\x2f\\x00\\xc4\\x38\\xe9\\x00\\x80\\x9e\\x04\\x52\\xc9\\x24\\x9b\\x7c\\x8a\\x21\\xf4\\xa3\\x62\\xa9\\xf7\\xec\\xca\\x05\\xbe\\xf1\\x83\\x3d\\xf6\\xc6\\x86\\x4c\\xe5\\xfd\\x73\\xf9\\x38\\xfc\\x55\\x9b\\xab\\xbe\\xa0\\x9e\\xac\\x1f\\x2d\\xfa\\x8b\\x9b\\xdb\\x59\\xbd\\xa6\\xdf\\x86\\xd5\\x39\\xe6\\x1d\\xd2\\xff\\x24\\x0d\\xdf\\x5c\\x8a\\x4b\\x41\\xd6\\xc5\\x2c\\x11\\x99\\x48\\x66\\xe1\\x55\\xeb\\x1e\\x9f\\x62\\xbf\\xf8\\xff\\xec\\x5f\\xe7\\x7f\\x41\\x9d\\xa9\\x8e\\x51\\xcb\\xd4\\x94\\x3a\\x4a\\x1d\\xa9\\x8e\\x50\\x87\\xab\\xc3\\x54\\x57\\x54\\x0b\\xaa\\x0f\\x55\\x1f\\xa8\\xfa\\x55\\x55\\xaa\\x52\\x55\\xb1\\x6a\\x95\\x2a\\x5f\\xa5\\x53\\x65\\x26\\x7f\\x9d\\x7c\\x3c\\xf9\\xa1\\xe4\\x07\\x92\\x1b\\x92\\xeb\\x93\\xeb\\x92\\x6e\\x24\\x31\\x8a\\xf9\\xab\\xfc\\x65\\xfe\\x62\\xfd\\xd9\\x7c\\x31\\x2d\\x2b\\x31\\xa1\\xfa\\x8b\\xbe\\xbb\\x1c\\x59\\x0e\\x43\\x80\\x9d\\xf0\\x01\\xbc\\x07\\x2b\\xa0\\x03\\x6d\\x68\\x41\\x13\\x1a\\x50\\x87\\x1a\\x54\\xe7\\xcf\\x2d\\x49\\x06\\x2f\\x3d\\x11\\x5c\\xf0\\x17\\x85\\x3c\\x31\\x68\\xc8\\xe1\\xf4\\x8e\\x98\\x8b\\xd8\\x20\\x01\\x0f\\xc0\\x7a\\x94\\x7c\\xd9\\xe8\\xa7\\x11\\x10\\x02\\x1e\\x30\\x26\\xfb\\x21\\x8c\\x13\\x17\\x29\\x7c\\x84\\xc8\\x10\\x21\\x4e\\x8e\\x24\\x34\\xa5\\x75\\x9b\\x66\\xd0\\x64\\x21\\x84\\x93\\x7e\\x33\\xe2\\xcd\\x99\\x97\\x65\\xd9\\x8a\\x1c\\x6b\\x9e\\xd6\\x79\\x78\\xa8\\x21\\x1e\\x06\\xe8\\x53\\xa0\\xd4\\xb9\\x1a\\x35\\xee\\x6a\\xb6\\xec\\x9e\\x0d\\x1b\\xfe\\xdb\\x8d\\x03\\x24\\x08\\x5c\\xb8\\x16\\xe4\\x81\\x47\\x75\\x28\\x1e\\xf1\\x08\\x3c\\x72\\x17\\x6e\\xc6\\x0a\\xb3\\x35\\x9b\\x9a\\xda\\xce\\x65\\x04\\x35\\xe3\\x31\\x6e\\xe2\\xa1\\x05\\x01\\x3a\\x6d\\x18\\xa0\\xf4\\xab\\xf5\\xc0\\x98\\x47\\xde\\x59\\x88\\x8f\\xf0\\x84\\x32\\xfe\\x86\\xf4\\x84\\x9a\\x88\\x5f\\x89\\x15\\xf9\\x07\\xac\\x00\\x3c\\x15\\x26\\x65\\x90\\x0a\\x2d\\x54\\x96\\x65\\x77\\xeb\\x2d\\x78\\x46\\x22\\xcf\\xd8\\x1c\\xc2\\x49\\x83\\xc3\\x8a\\x55\\xaf\\xb9\\xeb\\xae\\x4b\\xee\\xbb\\x6f\\xb6\\x3d\\x2c\\x13\\xf8\\x32\\x9e\\xbf\\x5c\\xf0\\x7a\\xbc\\x43\\x7a\\x01\\xc5\\x1b\\x78\\x41\\x88\\xc4\\x9f\\x90\\xa3\\xe6\\x21\\x05\\xe3\\x1f\\x0c\\x98\\xf8\\x27\\x33\\x61\\xbe\\x15\\x11\\x63\\x82\\x84\\x9a\\xb0\\xc7\\x1c\\x07\\x48\\x2f\\x41\\x74\\xe2\\xe5\\xb0\\x75\\xd1\\x97\\x2e\\xbb\\xea\\x3b\\xd7\\x3d\\x2f\\xbf\\x9d\\xaf\\x5f\\x50\\x5e\\x4e\\xe2\\x3f\\x25\\xff\\xd7\\xc0\\xe2\\xbf\\xfa\\xd2\\xc5\\xed\\x0f\\x4e\\x05\\x5c\\x1f\\x51\\x49\\x8b\\xdd\\x95\\xf8\\x60\\xe3\\xe0\\xfe\\x6f\\x79\\x5e\\x6d\\xb0\\x69\\xe9\\xab\\x7f\\xbb\\x26\\xfd\\x3d\\xbb\\xff\\x16\\xf8\\x50\\x2d\\x3b\\x63\\xd7\\x9a\\x97\\x4b\\xa5\\xff\\x45\\xf4\\x4d\\xf1\\xdb\\x8a\\xfa\\xb1\\x62\\xde\\x7d\\x91\\x81\\x07\\x6a\\x66\\xfd\\xc2\\x08\\xad\\xcd\\xbf\\x46\\xe9\\x75\\x89\\x62\\xe8\\xc1\\xbc\\x15\\x29\\xf9\\x18\\x2c\\xf7\\x09\\x38\\xe4\\x45\\xaa\\x03\\xa3\\xe4\\x35\\x48\\xe1\\xe5\\x8c\\xe0\\xc5\\xa1\\x85\\xb7\\xc6\\x90\\xc1\\xf2\\xc6\\xf9\\x92\\x12\\x35\\x62\\x81\\x3e\\x84\\x39\\xb1\\xc9\\xab\\x07\\xae\\x26\\x9f\\xc0\\x0b\\xee\\xfe\\x90\\xcc\\x9b\\x51\\x62\\x32\\x13\\x21\\x1e\\x00\\x4a\\xea\\xa0\\x59\\xd6\\x18\\x83\\x82\\x39\\x35\\x3e\\xc0\\xc5\\xb8\\x02\\x68\\xf9\\x19\\x70\\x6a\\x64\\xce\\x6d\\x4d\\x65\\x18\\x1f\\xa2\\xb2\\x43\\xeb\\x12\\x13\\xdb\\x00\\x2a\\x51\\xe7\\xeb\\x96\\xbe\\x26\\xf7\\x16\\x94\\xa9\\xf7\\x1b\\x47\\xa8\\xff\\x53\\xc5\\x37\\xef\\xaa\\x61\\x3b\\xf8\\x40\\x87\\x92\\x50\\x2a\\x9e\\x2d\\xe6\\x36\\x69\\x6c\\x29\\x25\\x5e\\x38\\x22\\x40\\xa0\\x1e\\x85\\xdb\\x96\\xec\\xb0\\xaa\\xa5\\xaa\\x73\\xe7\\x72\\x4d\\xcb\\x46\\xcc\\xeb\\xb7\\x11\\xe0\\x0e\\x37\\x56\\x2d\\xdd\\x18\\xa8\\x90\\xa5\\x13\\x06\\xfa\\xfa\\x7e\\xb5\\xb2\\x7f\\x70\\x21\\x69\\x62\\x54\\x3e\\xa6\\x2b\\x5f\\xa9\\x8b\\x1a\\xe6\\x83\\xe6\\x02\\x42\\x97\\x9a\\x72\\xfd\\xa9\\xf5\\xf2\\x78\\xb5\\x8e\\xf9\\x4c\\x20\\xd9\\xa7\\xcf\\x4b\\x4d\\x64\\x36\\x51\\x4d\\xce\\xa6\\x5a\\x3c\\x46\\xb3\\xe1\\xdb\\x98\\x68\\x33\\x30\\xda\\xd4\\x10\\xf8\\xba\\xc1\\xc5\\x25\\xcf\\xbf\\xbf\\x5b\\x6b\\x65\\x14\\x19\\xc8\\x9d\\x72\\xf9\\x61\\xec\\xeb\\x4c\\x70\\x56\\x68\\xae\\x34\\x12\\x27\\xb5\\xca\\xc4\\xdf\\x05\\xcc\\x41\\x07\\x67\\xaf\\x60\\x7d\\x6a\\x06\\xd6\\x08\\x3a\\x8c\\x8b\\x44\\xcc\\x52\\xd6\\x60\\x2b\\x99\\xe6\\xc7\\x25\\x0a\\x22\\x8f\\xce\\xe2\\xac\\x7b\\x4a\\x9c\\x33\\xe2\\x9c\\xf4\\x76\\xb8\\x9b\\xb3\\xe5\\x1e\\x15\\x37\\x8c\\x4d\\x96\\x31\\xb8\\x48\\x57\\x6a\\xa8\\x2c\\x6d\\x8e\\xbb\\x12\\x72\\x4b\\xf6\\xa1\\xd9\\xc6\\x45\\x34\\x48\\x2d\\xa9\\x6e\\x60\\xe1\\xdf\\x5f\\x2b\\x07\\x56\\x61\\x6a\\x10\\x7d\\x82\\x81\\x45\\x66\\x0a\\x4d\\x96\\xca\\x04\\x73\\x55\\x2a\\xea\\xd3\\x95\\x76\\xc8\\x96\\x33\\xeb\\x66\\x0f\\xbc\\x68\\x7b\\xd9\\x6a\\xf4\\xef\\x27\\xf2\\x18\\x9a\\x22\\x3c\\xa5\\x41\\x97\\xc1\\x44\\xdd\\xe7\\xde\\x51\\xb9\\x67\\x71\\xc4\\xfd\\x98\\x0e\\xed\\xe3\\xc1\\xe6\\xcc\\x98\\x9c\\x06\\x04\\x13\\x23\\x0b\\x25\\x67\\x68\\xe4\\x39\\xcc\\xbd\\x47\\xb4\\x88\\xdf\\xe0\\xc1\\x9b\\x69\\xe5\\x30\\x00\\x50\\xc2\\x9f\\x28\\xd1\\x95\\x47\\xdd\\x39\\x46\\xe2\\x50\\x64\\x91\\x44\\x16\\x5f\\xef\\x23\\xf4\\xc8\\x79\\xce\\xd9\\x97\\xb8\\x51\\xcf\\xc8\\xaa\\x64\\x67\\xd4\\x36\\xc4\\x7b\\x62\\x83\\x08\\x46\\x29\\x2f\\xbb\\x20\\x5e\\x44\\x6d\\x01\\x23\\x5c\\xc8\\x81\\x54\\xad\\x46\\x23\\xdd\\x0c\\x9f\\x21\\x38\\x30\\x24\\x2f\\x66\\x65\\xcd\\x92\\xf5\\xae\\x49\\x85\\x96\\x0c\\x0d\\xe8\\xf3\\x66\\xf0\\x48\\x2f\\x2c\\x65\\x94\\xfe\\xae\\x75\\x9b\\x7b\\xe7\\xbf\\xb3\\xd9\\x39\\xb6\\xeb\\x94\\x32\\xb8\\x0f\\x1c\\xee\\xcd\\xbc\\x1b\\x96\\xf0\\x2c\\x00\\x24\\x0b\\x2a\\x09\\x36\\x64\\x01\\x48\\x3e\\x4b\\xe3\\x00\\x7a\\xa8\\x75\\x03\\xe9\\x88\\xcc\\x12\\x7f\\xe5\\x4a\\x8b\\x7e\\xb1\\x02\\xdb\\x62\\x7d\\xbe\\xad\\x15\\x13\\x6b\\x96\\xc5\\x9b\\x97\\x35\\xb8\\xef\\xf4\\x84\\x06\\x78\\x28\\xd2\\x6c\\x17\\xb3\\x9e\\xaa\\xb6\\x63\\xed\\xc9\\xeb\\x53\\x45\\x93\\x16\\xf6\\x7c\\x3f\\x25\\x00\\x2b\\x5c\\xa2\\x02\\xbc\\x50\\xc8\\x02\\x3f\\xc7\\xdf\\x4b\\xeb\\x63\\xdc\\xb9\\x8c\\xe0\\x3e\\x90\\xc6\\xc1\\x1f\\x0d\\xe9\\xcf\\x22\\xc9\\x2e\\x6d\\xc6\\x44\\x7a\\x44\\x06\\xc9\\x80\\xf5\\x98\\x4f\\x87\\xb3\\x0a\\x8e\\x3c\\xc9\\xdd\\xb7\\x98\\x01\\xb8\\xd5\\x3f\\x3d\\x13\\xa9\\x32\\x3e\\x53\\xcf\\xae\\x55\\x51\\xcf\\x09\\x35\\x93\\x2f\\xfc\\x24\\xa9\\xbb\\x10\\x33\\xb3\\x20\\x6b\\xb6\\x75\\xc5\\x6d\\xd9\\xe9\\x86\\xad\\xc4\\xe1\\xfa\\x95\\x53\\x32\\x88\\x52\\x99\\xd3\\x9b\\x0d\\xe8\\xda\\x6d\\xf9\\x86\\x5e\\x4a\\xc3\\xd1\\x98\\xea\\x53\\x1e\\x19\\x60\\x96\\x1d\\x92\\xa9\\xb9\\x44\\x53\\x6d\\xc8\\x4b\\x7e\\x23\\x9d\\x83\\xf4\\xb2\\x65\\x67\\xe3\\xa7\\x5d\\xfc\\x64\\x90\\xaa\\x4a\\xa9\\x0d\\xdc\\x51\\xe0\\xe6\\xce\\xdd\\x87\\x53\\x62\\x00\\x68\\x95\\x6b\\x11\\x20\\xac\\x14\\x9a\\x26\\x0f\\xee\\x93\\x3a\\xb1\\x2f\\xd7\\xa3\\x62\\xec\\xfc\\xe4\\xd3\\x06\\x1d\\x2e\\xe4\\xe2\\x73\\x4f\\x07\\x9c\\xbf\\x5b\\x0a\\x9b\\x0c\\x26\\x2a\\x2b\\x19\\x2c\\xdc\\xf0\\xf2\\x5b\\x8a\\xa4\\xa3\\xb9\\xb9\\x5c\\xe3\\x1d\\x33\\x82\\xa5\\x60\\x33\\x0a\\xe4\\x23\\x29\\x9d\\x56\\x5a\\x33\\x14\\x18\\xd8\\xda\\x52\\xb2\\xa2\\xb9\\x18\\xf8\\xce\\x09\\x83\\xd1\\xc4\\x0a\\x6c\\x8d\\xa0\\x90\\x1e\\xed\\x3b\\xfa\\xf8\\xd5\\xe1\\x7d\\xf2\\xa3\\x75\\xa5\\xae\\xe6\\xd2\\x31\\x3a\\x40\\xe4\\xd2\\x05\\x0b\\xb9\\x84\\xd4\\xa4\\x91\\x36\\xca\\xf0\\xd0\\x0e\\xea\\xe4\\x1e\\x48\\x34\\xef\\x13\\xb7\\x17\\x0e\\x87\\x90\\x2a\\xbf\\x57\\x68\\xf1\\x16\\x26\\xd4\\x8c\\x62\\x50\\x99\\xaa\\x76\\x7c\\x03\\x08\\x05\\xda\\x39\\x4c\\xe4\\x65\\x2d\\x17\\x06\\x38\\xeb\\x0e\\xac\\x44\\xa0\\x8d\\xfb\\x53\\x9e\\xd5\\xf1\\xda\\xe6\\x18\\x53\\x9e\\x42\\x67\\x9c\\x6d\\xdf\\xdd\\x1a\\x19\\x19\\x11\\x64\\x78\\xc4\\xd5\\x93\\x07\\x53\\xd9\\xf0\\x24\\x44\\x54\\xa1\\x3e\\x7e\\x08\\x37\\xb2\\xe2\\xf1\\x90\\x2b\\x90\\x22\\xc9\\x5d\\xac\\x09\\xc4\\xa0\\x72\\x8c\\x64\\x17\\xbf\\x50\\xd4\\xc4\\xd8\\xdf\\x4d\\xd4\\x8a\\xc3\\x5e\\xab\\x36\\xc2\\x9e\\xca\\x24\\xdf\\xc2\\x86\\xa5\\x15\\x78\\x14\\xa2\\x81\\x7b\\x71\\xad\\xbf\\x11\\x0f\\x2b\\x91\\x4b\\x5b\\x06\\x11\\x76\\xb4\\x4b\\x41\\x86\\x0d\\x3e\\xad\\x6f\\xd6\\x87\\x7b\\x47\\x6a\\xdd\\x0c\\x3b\\x81\\xb5\\x2a\\x6d\\xaf\\xcb\\x55\\xeb\\x10\\x31\\x56\\xc5\\x01\\xab\\xff\\x6a\\x79\\xa0\\xd4\\x59\\xc9\\xb7\\x30\\x56\\xd8\\xfa\\x10\\x95\\x1d\\x0e\\x03\\xfc\\x15\\x51\\xc6\\x99\\xa4\\x69\\xb5\\x66\\xcc\\x1a\\x73\\x44\\x45\\x16\\xc1\\x8d\\x5d\\x44\\x20\\x69\\xc1\\x49\\xa8\\xa2\\xad\\x62\\x86\\x43\\xbc\\x85\\x32\\x1c\\xc5\\x87\\x02\\x35\\x96\\xf3\\xaf\\x49\\xa3\\xbc\\xef\\xa2\\xaa\\x0f\\xe5\\x99\\x11\\x9e\\x4b\\xf6\\x84\\xe6\\x96\\x8c\\x78\\xf4\\xb3\\x2d\\x7c\\x29\\x1a\\xe9\\x86\\x95\\xa2\\xe1\\x75\\xf4\\x88\\x54\\x04\\xd5\\xd7\\x67\\x95\\x44\\x85\\x3b\\x03\\xc6\\xca\\xfc\\x00\\x66\\x3d\\x5c\\x7b\\x46\\x96\\x9e\\xca\\x55\\xbd\\x7b\\x7f\\x92\\x83\\x2a\\x4e\\xee\\x35\\x7e\\xb6\\x5f\\x3f\\xa2\\xb8\\x02\\x9e\\x4d\\x8b\\x80\\x72\\xca\\x7a\\x94\\xae\\x46\\x1b\\x3a\\x7e\\x94\\x55\\x0a\\x47\\x43\\x52\\x92\\x95\\x0c\\xb1\\x05\\x6e\\xf0\\x7b\\x74\\x17\\xb7\\x5b\\x8b\\x99\\xb0\\x70\\xad\\x11\\x95\\xd6\\x59\\xe7\\x1a\\x2a\\x77\\x92\\x6b\\xef\\x20\\x74\\x96\\xa8\\xf1\\x1d\\x21\\x91\\x57\\x09\\x6f\\xf2\\x5a\\x91\\xb1\\xe5\\x53\\x81\\xc2\\x8d\\x6f\\xb6\\x59\\xc2\\x57\\x09\\x36\\xe4\\x3b\\xfe\\xc4\\x33\\x5d\\x80\\xf6\\x36\\x4d\\x93\\x47\\x60\\x72\\x7e\\xa6\\x4a\\x7c\\xc6\\x07\\x23\\x1f\\x20\\xea\\x67\\xd0\\x43\\x77\\x08\\x41\\x6d\\x29\\xb6\\x6b\\x4f\\x52\\xfc\\xa9\\x09\\xa2\\x2d\\x5a\\x0a\\x10\\x7f\\xb2\\x90\\x5e\\x6b\\x63\\xe1\\xa0\\xa2\\x5e\\x78\\x45\\x3d\\xd9\\xb3\\x50\\x12\\x0d\\xe6\\xb5\\x7e\\x75\\x67\\x5c\\x29\\x57\\xa5\\x5f\\xcd\\x5e\\x83\\x5d\\xf9\\x59\\x30\\x8e\\x10\\x19\\xc5\\x3c\\xc1\\xb7\\x37\\x82\\x8a\\xa3\\xf2\\x5a\\x0a\\x4b\\x8d\\xb6\\x90\\xd0\\x83\\x0e\\xe6\\x60\\x67\\x4b\\x36\\xa6\\xe9\\x29\\x03\\x48\\x6d\\x2c\\xc1\\x75\\x0f\\x83\\x5a\\x1d\\xc1\\x50\\x0c\\x99\\x73\\xf0\\x45\\x18\\x66\\x7c\\xe6\\x7e\\x79\\x76\\x89\\xa7\\xf5\\x3a\\xb7\\xdb\\x9f\\xaf\\x09\\x4f\\xa0\\x04\\x6f\\xdf\\xc5\\xf3\\x7c\\x39\\x14\\x33\\x96\\x19\\x72\\xa3\\x64\\x81\\x79\\x2b\\xc7\\x36\\x7d\\x88\\x5e\\xcd\\x28\\x3b\\xb1\\x87\\x76\\xc7\\xbe\\x47\\x3d\\x82\\x82\\x5b\\x3c\\x0b\\x8e\\x82\\x8e\\xbe\\x91\\xd1\\xee\\xd8\\xc1\\xc1\\xec\\xb9\\x79\\x6f\\x56\\x31\\x11\\x41\\x81\\xb4\\x88\\x22\\x30\\xd5\\x5b\\x0c\\x3e\\x46\\x74\\xd1\\xe6\\xe4\\x30\\x27\\xc2\\x73\\x1b\\xaa\\xa2\\x2f\\xda\\x71\\x25\\x83\\xd6\\x38\\xa7\\xde\\xad\\x61\\x65\\x5a\\xeb\\xd1\\x73\\x74\\x5e\\x12\\x51\\xde\\x32\\x95\\xb4\\x1b\\x8c\\x89\\xa6\\x1f\\xc7\\xe6\\x3c\\x38\\x70\\x3e\\x60\\x21\\x49\\x22\\x3c\\x96\\x89\\x64\\x42\\x7d\\x3b\\x2d\\x3e\\xf4\\xa0\\xb0\\x23\\xbd\\x61\\x12\\x11\\x93\\x45\\xdf\\x89\\x5e\\x80\\x85\\xcc\\xd4\\xf3\\x04\\xd6\\x88\\x9b\\x00\\xb4\\x54\\xc5\\x3a\\xe2\\x3a\\x6d\\x6f\\xd8\\xbb\\xf1\\x33\\xa2\\x9d\\xe7\\xd9\\x56\\xc9\\x49\\x26\\xe0\\x9b\\x23\\xcb\\x97\\xa2\\x8c\\xc6\\x24\\x01\\x46\\xe6\\x84\\x17\\xa0\\x75\\xb8\\x02\\x4a\\xa1\\xd4\\xa8\\xd0\\x91\\x6f\\x0a\\xe4\\x76\\x6e\\xfe\\x65\\xb7\\x75\\x06\\x2a\\xfb\\xc3\\x07\\x43\\x5e\\xe8\\xc4\\xac\\x32\\x62\\x47\\xa5\\x4b\\xf4\\x98\\x44\\x7c\\xc3\\x87\\xa6\\x56\\x6c\\xc3\\xea\\x2c\\xb3\\x92\\x81\\xca\\x31\\xcf\\xba\\xe2\\x00\\x8f\\xa5\\x57\\xe5\\xe0\\x95\\xcb\\x28\\xd1\\x86\\xe4\\x3a\\xb0\\xa2\\x68\\xa9\\x1c\\xa4\\xe3\\x03\\x4a\\xf1\\x87\\xe7\\x00\\x59\\xcf\\x92\\xa5\\xca\\x13\\xd0\\x52\\xb4\\x9e\\x2d\\x74\\x5e\\xfb\\x68\\x97\\x1b\\x80\\x0b\\xc8\\x77\\x81\\xa2\\x07\\xaf\\xe4\\x71\\x2f\\xfc\\xe5\\x97\\xe4\\xc1\\x81\\x1c\\x08\\xa1\\xaa\\xc6\\x80\\xfb\\x66\\x71\\x8d\\x29\\x3e\\xa1\\xbb\\x42\\xb4\\x62\\x50\\x43\\x11\\xf7\\xd1\\x4e\\x6b\\x87\\x4c\\xf1\\x97\\x2e\\xe8\\x34\\x73\\x62\\x19\\x7c\\xb0\\xb7\\x99\\xd2\\x42\\xa7\\xc4\\xd0\\xa6\\x9b\\xcc\\x0e\\x97\\xe3\\x30\\x4d\\x31\\x81\\x9d\\x6f\\xd1\\x71\\x9e\\x18\\x03\\xda\\x78\\x0d\\xfe\\x54\\x9e\\xee\\xc9\\xa6\\x49\\x26\\x55\\xb1\\xd4\\x2d\\xb9\\xf8\\x3a\\x91\\x04\\xde\\x50\\x7c\\xb4\\xa2\\x63\\x5b\\x00\\x37\\x34\\xde\\x2d\\xb9\\xd5\\xbb\\x58\\x63\\x21\\x5e\\x80\\x41\\xcc\\xf0\\x27\\x25\\xd9\\xe6\\x7b\\x57\\x0b\\x84\\x81\\xda\\xcd\\x21\\xdf\\xf9\\xb9\\xdf\\x8f\\x6b\\x25\\xe8\\x82\\xd9\\x72\\xbf\\x23\\x9f\\xd9\\xdb\\x7a\\x7c\\xe8\\x15\\x72\\x0c\\x0d\\x21\\x39\\xd1\\x6e\\x36\\x7d\\xd1\\xe1\\x61\\x64\\x2d\\xf0\\xdf\\xf7\\x9d\\xf2\\x83\\x9e\\xca\\x2f\\x3f\\x39\\x2b\\x1e\\x9d\\x6e\\xdb\\x68\\x4b\\x01\\x04\\x91\\x2f\\x14\\x9c\\xd6\\x3f\\x19\\xc0\\x2d\\x56\\x3e\\xf5\\x9d\\x97\\xb8\\x38\\x57\\x1e\\xc0\\x92\\x9c\\x53\\x96\\xe1\\x4e\\xba\\x6a\\x7c\\xf7\\x4d\\xa2\\x1c\\x29\\x95\\xe9\\x9e\\xe7\\x8b\\x39\\xff\\x27\\xe7\\x89\\x25\\x57\\x8c\\xab\\x84\\x87\\xf1\\x1c\\x09\\x94\\xaf\\xff\\xab\\xe3\\x0b\\x69\\x07\\x56\\xe8\\x84\\x56\\x60\\x4b\\xf1\\xd3\\xfd\\x38\\x67\\x20\\x10\\x04\\x24\\x2d\\xd9\\xdc\\x6a\\x22\\x05\\x7c\\x72\\x19\\x75\\x0a\\x02\\x9c\\x46\\x2b\\x9c\\xc3\\x4e\\xd3\\xa9\\x03\\x9f\\xf9\\x50\\x70\\xbb\\x66\\x37\\x7e\\x72\\x2a\\xc2\\xb5\\x3d\\x4b\\x3a\\xc7\\xd6\\x91\\xdd\\x17\\x61\\xea\\xa6\\x55\\x0d\\x64\\x61\\x88\\x9c\\x86\\x0c\\xf6\\x7d\\x4e\\xc8\\x38\\x6a\\x64\\x67\\x40\\xdf\\x09\\x91\\x05\\xcf\\x01\\xb5\\xa3\\xc5\\xca\\x5f\\x47\\x79\\x58\\xbb\\x2e\\xb8\\x2a\\x04\\xbd\\x2a\\xca\\x3b\\x82\\xcb\\xa1\\xa0\\xad\\xbd\\x57\\x87\\xd4\\xae\\xe1\\xba\\xdb\\x40\\x55\\xa7\\x49\\x8a\\xd2\\x02\\x01\\x48\\x19\\x2b\\x90\\x80\\xb9\\x07\\xfd\\x41\\xba\\xa9\\x50\\x55\\xdd\\x2b\\x64\\x0e\\xbe\\x7d\\x43\\x9a\\x33\\x40\\xf3\\x33\\x75\\xc2\\xbc\\xde\\x40\\xbe\\x50\\xbd\\xf7\\x50\\xd4\\x6c\\xe3\\x47\\xb1\\x1c\\xed\\x58\\x7c\\xae\\xd7\\x44\\x68\\xf7\\x31\\xb5\\x53\\x67\\x96\\xb3\\xa7\\xc6\\xdf\\x42\\xf6\\x14\\x10\\x75\\xfd\\xd1\\x82\\x99\\x43\\x53\\x27\\x87\\x5e\\x4c\\x94\\x26\\x32\\x5c\\x5f\\xca\\x72\\x60\\xe4\\x5e\\x95\\x96\\xf4\\xc1\\x08\\xb8\\xb4\\x85\\x84\\x2a\\x88\\x8f\\xf4\\x44\\x6d\\x63\\x9a\\x55\\xea\\xf9\\xe0\\x68\\xbc\\xf5\\x25\\x70\\x28\\x57\\x97\\xb6\\x7c\\x06\\x08\\x3f\\x0f\\x10\\x30\\x75\\x53\\xa5\\xdd\\x45\\xd2\\xe9\\x39\\x1d\\xa0\\x1d\\xac\\x19\\x3f\\x1b\\xa0\\xe5\\x8a\\xa9\\xe3\\xd9\\xae\\x1f\\xe9\\x4e\\xa5\\xc5\\xc8\\x56\\xce\\x3d\\xb9\\x88\\xa7\\x52\\x17\\x87\\x1d\\x33\\xb5\\x70\\x56\\xe6\\xb7\\xa2\\x30\\x54\\xa3\\x50\\xb6\\x63\\x73\\xc1\\x02\\xbe\\x65\\xcf\\xb7\\x95\\x10\\xae\\xbc\\x60\\x19\\xea\\xc7\\x40\\x11\\xf4\\xec\\x74\\xf3\\x5b\\x48\\x30\\xc0\\xac\\x89\\xba\\xd3\\x44\\x29\\xea\\x39\\x9b\\xfd\\xd5\\x55\\xc4\\xc4\\xcc\\x1b\\x4d\\x73\\x57\\x57\\x95\\xfc\\x3c\\x5e\\x26\\x98\\x9f\\xeb\\xcd\\xb2\\x0f\\x61\\xe5\\xf9\\x65\\xae\\x10\\x55\\xb9\\x92\\x23\\x9a\\x04\\x01\\x41\\xc2\\xb6\\xd9\\x5c\\x63\\xfb\\xb7\\x4f\\xa6\\xe2\\x6e\\x3b\\x0d\\xe1\\x08\\x43\\x75\\x44\\xed\\x81\\x11\\x03\\x95\\xb0\\x41\\x80\\xca\\x0d\\xc0\\x04\\xc4\\xea\\xd2\\x6e\\xdb\\x5d\\xab\\x47\\x5c\\x3d\\x90\\x8e\\xf2\\x1d\\x8e\\xe3\\x39\\x06\\x10\\x96\\x2f\\xfc\\x7f\\x9d\\x9e\\xd5\\xb5\\xdb\\x62\\x2d\\xbf\\x5c\\x38\\x0d\\x61\\x22\\x1c\\xc7\\x80\\x31\\x6a\\x62\\x96\\x96\\x2a\\x92\\x2b\\x79\\xc5\\x55\\xb2\\xaa\\x72\\x25\\x23\\x4a\\xb5\\xfa\\x39\\x1e\\x80\\x39\\x20\\x10\\x86\\xa8\\x82\\x39\\x21\\xe1\\x7d\\xcc\\x7c\\x11\\x4b\\x59\\xd2\\xe6\\x12\\xcc\\x57\\xfb\\xc8\\x75\\x1a\\x68\\xda\\x9c\\x21\\x3d\\x18\\x17\\x12\\x59\\x82\\x3e\\xdc\\x24\\x34\\x8b\\x85\\x0c\\x19\\xa4\\xd9\\xe9\\x8e\\xba\\xde\\x70\\x5d\\x73\\xaf\\x25\\x22\\xb1\\x67\\x61\\x25\\x20\\x53\\x14\\xdd\\x4b\\x21\\x36\\x64\\x41\\xeb\\xf2\\x61\\x23\\x8b\\xfd\\x62\\xad\\x44\\x67\\xc1\\xfc\\xce\\xbe\\xe8\\xd1\\x73\\xc8\\x66\\xe3\\xd0\\x76\\xb9\\x68\\x0d\\xab\\x74\\x43\\xe9\\xa8\\x83\\x01\\x1a\\x24\\xc9\\x35\\xbd\\x0a\\xb0\\xf6\\x02\\x4f\\x09\\x1a\\x2d\\x30\\xae\\x5d\\x8b\\x8c\\xbd\\x62\\xf4\\x9b\\x98\\xc7\\x73\\x36\\x83\\xd4\\xfa\\xf6\\x93\\x7e\\x78\\x0e\\x77\\x73\\x06\\x46\\xc8\\xd6\\xea\\x04\\x17\\x90\\xdf\\xda\\xb6\\xde\\xbf\\xb5\\xd8\\x56\\x1a\\xf8\\x55\\x79\\xe4\\x0b\\x49\\xf1\\x78\\x78\\xa8\\xf9\\xd7\\x0e\\x08\\x54\\x50\\x32\\x49\\x7d\\x61\\x05\\x0a\\x08\\x83\\x46\\x17\\x91\\x65\\xe3\\x66\\xce\\x32\\x22\\x41\\x64\\x3d\\xfb\\x01\\xb6\\xfd\\xcc\\xe8\\x56\\x3a\\x45\\x8c\\xeb\\x19\\x35\\x53\\x54\\x1a\\x33\\xaa\\x41\\x85\\x81\\xa2\\xef\\x7d\\xe0\\x9a\\xb7\\x89\\xeb\\x7b\\xaa\\x48\\x06\\x96\\x87\\xa9\\x4c\\xb8\\x40\\x39\\xd3\\x0e\\x06\\x26\\xe5\\xb4\\x81\\xa7\\x55\\x5a\\x39\\x35\\x88\\xcb\\x41\\xb5\\x34\\x32\\xaf\\x0b\\x05\\xe1\\x75\\x78\\x91\\x69\\x27\\x24\\xb2\\x85\\x49\\x31\\x4b\\x41\\xb9\\x25\\xb9\\xb7\\x8e\\xec\\x6b\\xef\\x44\\xf4\\xa2\\x9e\\x87\\xb5\\x6f\\x03\\xd4\\xf1\\xaf\\x02\\xfa\\x20\\xa6\\x12\\xfa\\x70\\x95\\xbe\\x0b\\xe3\\x4c\\x40\\x29\\x08\\x86\\xb1\\x76\\x46\\xef\\xc3\\x82\\x46\\x18\\xe8\\xa2\\x1e\\xb2\\x2a\\x42\\xba\\xea\\x9b\\xfa\\x42\\xca\\xd5\\xb7\\x7b\\xf7\\x52\\x3d\\xc8\\xef\\x36\\xe4\\x2c\\xc9\\xdb\\x04\\xc9\\x4a\\xd6\\xff\\xc7\\x20\\x54\\xd4\\x2c\\x47\\x60\\xf4\\x04\\xdb\\x2f\\x25\\xa9\\x34\\x15\\x32\\xac\\x00\\x5a\\x0d\\x2a\\xcc\\x26\\x15\\x28\\x80\\x74\\x88\\x79\\xec\\x34\\x30\\xdb\\x6e\\xb8\\x8f\\xc7\\xd7\\xa9\\x93\\x18\\xa9\\xf9\\x3c\\x50\\xaf\\x69\\xb2\\xb2\\x14\\x79\\xae\\x2b\\x70\\x3a\\xe2\\x9e\\xb9\\xd9\\xe8\\x75\\xa1\\x31\\x50\\xdb\\xb5\\xd5\\x7c\\x37\\xa1\\xb2\\x80\\xa1\\x4c\\x94\\x5a\\xa5\\xfe\\xe0\\x64\\x9c\\xe7\\xd0\\x94\\x54\\x12\\xe5\\xed\\x30\\x64\\x01\\x36\\x4d\\x09\\x79\\x6c\\xc9\\x1e\\xa3\\xfc\\xd9\\x1c\\x7f\\xa6\\x79\\xf2\\xdf\\xbd\\x2c\\x14\\xb1\\x1c\\x05\\x2e\\xa9\\x9c\\xb7\\x20\\xd3\\x20\\xe5\\xde\\x3a\\xd2\\x50\\xa3\\x50\\x99\\xe6\\x85\\x45\\x4d\\x2c\\xd1\\x05\\xf9\\xdc\\xa3\\x57\\x94\\xb8\\xd9\\x48\\x4c\\xf0\\x43\\x3b\\x56\\xd2\\xc3\\x83\\x4a\\x08\\xe8\\x52\\xc4\\x72\\x5a\\xa8\\xa4\\xff\\x42\\x44\\xfa\\xe2\\xbd\\x7d\\x0e\\x47\\xab\\xc9\\xc9\\xf3\\xf0\\xb9\\xf1\\xe2\\x58\\xf4\\xf0\\x71\\xfe\\xc6\\x20\\xbd\\xfe\\xb4\\x7f\\x30\\x19\\xff\\x30\\xa7\\xcf\\x7c\\x4b\\x3b\\x03\\xff\\x92\\xaa\\x18\\x03\\x8c\\x12\\xfc\\x6b\\x08\\x7f\\x61\\x8e\\xdf\\xc3\\xb2\\xa0\\x9a\\x19\\xf2\\x91\\xf8\\xfa\\x0b\\xe5\\x4b\\x25\\xef\\x78\\x01\\x4e\\xa0\\xec\\x9d\\xaf\\x68\\xf2\\x2e\\xaf\\x96\\x08\\xae\\x5d\\x05\\x10\\x76\\x0a\\x43\\x8e\\x26\\x83\\x43\\x64\\x28\\x71\\xfc\\xef\\xbb\\x3b\\x57\\x82\\x2a\\x67\\x23\\x36\\x3d\\x54\\x8f\\x0a\\x71\\xc8\\x45\\x30\\x78\\x96\\xb0\\x5b\\x87\\x4a\\x25\\xeb\\x9e\\x83\\xb6\\xb2\\x92\\xee\\xdb\\x5a\\x63\\x60\\xe9\\xe3\\x17\\x58\\x99\\x6b\\x75\\x5d\\xba\\x95\\x1c\\x20\\xf9\\xbc\\x24\\xd7\\x40\\x89\\x9d\\x32\\x57\\x82\\xa5\\x80\\x73\\x96\\x28\\x85\\xb1\\x1e\\x29\\xaf\\xa6\\xf0\\x6e\\xc4\\xb3\\xba\\xea\\xf5\\xad\\x8e\\xcc\\xd0\\xa8\\xc7\\xcd\\x02\\x83\\xe2\\xef\\x83\\x10\\x76\\x62\\x4c\\xd0\\x36\\x18\\x82\\x3a\\x82\\x21\\x18\\x62\\x00\\x7c\\xcc\\xe4\\x15\\xab\\x28\\x70\\x93\\x7f\\xaf\\xed\\x87\\x8b\\x42\\x07\\x43\\xf8\\x5b\\xde\\xaa\\x5d\\xa5\\xf8\\x64\\x7d\\x81\\x12\\x6c\\x3f\\xdb\\x89\\x06\\x3c\\xa1\\xf2\\x52\\x40\\x21\\xe9\\x47\\xb9\\xef\\x86\\x85\\xf7\\x7a\\x10\\xa4\\x30\\xe8\\xae\\xfa\\xef\\x5b\\x3f\\xb7\\xf7\\x5f\\x57\\x5d\\x46\\x31\\xd0\\x2e\\x6a\\x46\\xdb\\xc5\\x2a\\x55\\x92\\x6a\\x25\\xdb\\xc9\\x88\\xc8\\xeb\\x85\\x98\\xb3\\x18\\x23\\x9b\\xf2\\xf8\\xfb\\x9e\\x3d\\x1d\\xbb\\x9e\\xf5\\x47\\x0d\\x40\\x7b\\x03\\xf4\\xd9\\xae\\x68\\xe5\\x0c\\xe6\\xca\\xb9\\xe0\\xe9\\x46\\xf2\\x47\\xf9\\x08\\xd2\\x8c\\x59\\x0e\\xc7\\x88\\x12\\xd5\\x60\\x6d\\xcd\\x09\\x9b\\x66\\xb4\\xde\\x68\\x27\\x40\\xea\\x35\\x22\\x5b\\x6a\\x2b\\x13\\x5e\\x23\\x08\\xa6\\x2e\\x03\\x96\\xa8\\x77\\x23\\x76\\x9e\\xc8\\xb1\\x9d\\xa8\\xad\\x23\\x6b\\xfc\\xe4\\x34\\xad\\x86\\x5d\\x13\\x81\\x68\\x1b\\x95\\xf7\\x23\\x91\\x88\\x5e\\x5a\\x78\\x29\\xb6\\xb8\\xdc\\x5d\\x26\\x57\\x83\\xca\\xf4\\xcf\\xc9\\xd1\\x62\\x94\\xba\\xc2\\x66\\xbc\\x91\\x83\\x35\\xa1\\x0e\\xae\\x8b\\xd5\\xba\\xd3\\x46\\x13\\xba\\x7b\\x37\\xdd\\x00\\xa7\\xf6\\x36\\x1e\\x22\\xcb\\xc5\\x3a\\xa8\\x9c\\xfa\\xbe\\x0e\\xca\\x9f\\x4e\\xb5\\x3b\\x19\\x7f\\x03\\xf3\\xc0\\xa9\\xf8\\xde\\xba\\x01\\x4b\\x87\\xc8\\x8e\\x30\\x95\\x74\\x37\\xe0\\x07\\x37\\x97\\xad\\x01\\x9e\\x48\\xdb\\x8f\\x2e\\x89\\xe8\\xab\\x85\\xe9\\x71\\xca\\x2f\\xaf\\x6d\\x8b\\x8e\\xd3\\xab\\x21\\x06\\x5e\\x17\\x08\\x5f\\x6f\\xf1\\xf4\\xb3\\xf8\\xcc\\x73\\xd9\\x8e\\x96\\x63\\x4d\\xed\\xfe\\x12\\x7b\\x73\\x08\\x3d\\xd6\\x58\\x20\\x45\\xee\\xb5\\xe3\\xda\\x80\\xdf\\xb1\\x77\\x87\\x45\\x3f\\xdb\\x4b\\xf1\\xcc\\x79\\xa7\\x10\\x35\\xec\\x74\\x11\\x40\\xb8\\xc0\\xd3\\x16\\x90\\xd3\\xa9\\x5c\\xa5\\x0a\\xe9\\xc8\\x4b\\x63\\x40\\xaa\\x95\\xa0\\xdd\\xb7\\x8f\\x90\\x90\\xd0\\x04\\xf8\\x68\\x5a\\xe7\\xd8\\x39\\x04\\x46\\x00\\x2d\\x54\\xf4\\x22\\x7e\\x44\\xe4\\xdf\\x8a\\x32\\x97\\x2e\\x3d\\x91\\xf8\\x26\\xae\\x95\\xf6\\x52\\x1f\\x4c\\x73\\x03\\x45\\xcc\\x1b\\x44\\x5f\\x8f\\xbd\\xd0\\x84\\x5d\\x8c\\x88\\xe6\\x72\\x29\\xd0\\xc0\\x10\\xb6\\x20\\x37\\xdd\\xa2\\x91\\x49\\xec\\x8c\\x76\\x4e\\x86\\x9d\\xbb\\xf6\\x1b\\x00\\xcd\\xb5\\x37\\xc6\\xd8\\x1d\\x8c\\xc8\\xfc\\x64\\x5a\\xce\\x47\\x50\\x27\\xae\\x59\\xc7\\x9f\\x48\\x8b\\x4d\\x91\\x8e\\x9b\\x59\\x3f\\x2b\\xf2\\x71\\xd3\\xca\\xe6\\xac\\x6f\\x60\\x5d\\xa7\\x56\\x2a\\x7b\\x5d\\x7c\\xd2\\x57\\x2e\\xa2\\x43\\x67\\xfd\\x12\\x4f\\xbb\\xce\\xd5\\xf6\\x5b\\x7a\\x82\\xb2\\x85\\xfb\\xa6\\x2a\\x39\\x1e\\xea\\x97\\xb2\\x5f\\x77\\xd8\\x96\\xea\\x8d\\x55\\x75\\x9f\\x50\\x22\\x4e\\x62\\x6d\\x69\\xea\\xe4\\x4a\\xf0\\x18\\xe6\\x3c\\x48\\xd7\\x5a\\x6f\\xaa\\x22\\xdc\\xf1\\xaa\\xcc\\xd2\\xbc\\x3d\\xd9\\x75\\xe9\\x9c\\xaa\\x4e\\x93\\xea\\x77\\xff\\x74\\xc9\\x83\\x16\\x8a\\x41\\x5c\\x97\\x1b\\x6c\\xd3\\x4f\\xfa\\x14\\xe7\\x9f\\x90\\x3b\\x4a\\x95\\xac\\x1b\\xf0\\xb7\\xe7\\xd2\\x0d\\x63\\x31\\x6a\\x04\\x81\\xdd\\xf5\\xf4\\x76\\x3b\\x6e\\xf7\\x19\\xf4\\x6d\\xc5\\x22\\x80\\x50\\x3d\\x99\\x25\\xea\\xe3\\x75\\x53\\xb2\\xf1\\x71\\x26\\xc0\\xe2\\xc6\\xc3\\x90\\xfa\\x12\\xcc\\x86\\xa9\\x8a\\xac\\x92\\xf3\\xc1\\x94\\x37\\x38\\xd0\\x38\\xad\\x85\\x43\\x27\\x5d\\x96\\x85\\x71\\x70\\xd3\\xc1\\x5b\\xf3\\x32\\x13\\xc0\\xe1\\x8f\\xa4\\xe9\\xa9\\xb9\\x79\\x2c\\x16\\xa9\\xd4\\x5c\\x7b\\x4b\\x57\\xcc\\xfc\\x30\\x49\\x76\\x88\\xa7\\x2b\\xca\\x59\\xa3\\x5d\\xf0\\x73\\x98\\x72\\xa0\\xd3\\x5c\\x66\\x90\\x9a\\xa4\\x9e\\x4a\\x10\\x54\\xc8\\xee\\x30\\x53\\xd2\\x6d\\xc7\\xb2\\x25\\x55\\x09\\x33\\xf6\\xb1\\x45\\xc7\\xea\\x25\\xe3\\xcf\\xb6\\x8e\\x89\\xab\\xcd\\x46\\x1f\\xaf\\xf0\\xee\\x68\\x56\\xe1\\xfe\\x6e\\x57\\x2e\\xd8\\xae\\xa8\\x38\\xd5\\x66\\x9d\\xc2\\xe1\\xe6\\xee\\x67\\x26\\x5a\\x4c\\xda\\xf4\\xd0\\x51\\x67\\x4a\\xf1\\x4f\\x57\\x21\\x77\\x93\\x96\\x26\\xf3\\xcf\\x53\\xca\\x75\\x95\\x63\\x08\\x0b\\x21\\x04\\x8a\\x0c\\x05\\x03\\x5d\\x41\\x40\\x55\\xce\\x50\\x05\\x09\\xf3\\xde\\xbd\\x91\\x95\\x3d\\xb0\\x62\\xa4\\x43\\xfd\\x08\\xf1\\x8f\\xc0\\xd1\\x37\\x06\\x97\\x36\\x89\\x0f\\x1c\\x99\\xf8\\x84\\xf8\\x83\\x21\\x02\\xb4\\xdd\\xc7\\xec\\xda\\x76\\xe8\\xe0\\xb0\\x6f\\x4c\\xba\\xe1\\xd6\\x94\\x0f\\xbe\\x47\\xf6\\xf2\\xbd\\xad\\x2d\\xfd\\x88\\x36\\x30\\x31\\x00\\x96\\x3d\\x35\\x4c\\x29\\x55\\xbd\\x43\\xd1\\xc7\\x8a\\xdc\\x34\\x95\\x30\\x26\\xc8\\xf0\\xff\\x43\\x0e\\x01\\xd4\\x11\\x6d\\x02\\x74\\x34\\x41\\x02\\x1c\\x07\\x22\\x40\\xf5\\xa9\\xe7\\xc6\\x21\\x71\\x33\\x40\\xd5\\x63\\x55\\x30\\x1e\\xa8\\x03\\xc7\\x1d\\x1b\\xf9\\x4c\\xcb\\x25\\xa7\\xb4\\x88\\x4e\\x90\\xc4\\x1e\\x39\\xcd\\x86\\x5d\\x21\\x4a\\x0a\\x42\\x86\\x6d\\xf0\\x62\\x29\\xa2\\x08\\xaf\\x76\\x64\\x02\\x43\\xae\\x19\\x4b\\xb3\\xdc\\xaf\\x11\\xb1\\xda\\xb5\\x97\\x02\\xcc\\x03\\xe1\\x03\\x0d\\x2e\\xa0\\xee\\xe5\\x58\\x18\\xd4\\x97\\x6b\\xd4\\x6e\\xd6\\x69\\x92\\xf0\\x10\\xe6\\x0b\\xd8\\xa2\\x89\\x64\\x12\\xac\\x99\\x09\\xcb\\x5e\\xe2\\xac\\xb4\\x5f\\xb6\\xae\\xa2\\xe7\\xb3\\x87\\xdf\\xb3\\x63\\xdc\\x5c\\x25\\xd4\\x5f\\x4c\\x9e\\xa7\\x59\\xbe\\x8d\\xb5\\xb8\\x7c\\x74\\x2d\\xba\\xdc\\xd5\\x81\\x22\\x1f\\x58\\xde\\x64\\x62\\x6a\\x5a\\xca\\x9d\\x52\\x77\\x8b\\x66\\xea\\xd5\\x96\\x86\\xef\\x24\\x2c\\xa5\\x89\\x92\\xcd\\xb1\\x9f\\xec\\xc2\\x4a\\x0d\\x08\\xb0\\xd3\\x48\\x7a\\x42\\x3e\\xa3\\xc0\\xdd\\x48\\x88\\x9d\\x72\\x33\\xc7\\x09\\x67\\x6a\\x8f\\x9b\\x00\\x08\\x5b\\x8e\\xaa\\x9d\\x36\\x16\\x40\\xe9\\xca\\xbe\\x38\\x24\\xc0\\x99\\x3a\\xae\\xe4\\x51\\x0f\\xfa\\x59\\x11\\x4a\\x39\\xe8\\x45\\x86\\x06\\x8f\\xd6\\xda\\x6b\\x49\\x48\\x6f\\x04\\x96\\x09\\x04\\x16\\xf6\\x17\\xba\\x37\\x97\\x1b\\x7e\\x30\\x1b\\xc5\\x3b\\x94\\x2c\\x46\\x06\\xf7\\x80\\x09\\xde\\x87\\x14\\xdd\\x15\\xcc\\x6a\\xb3\\xa2\\x57\\x5f\\xec\\x4d\\xa2\\x06\\x0d\\x4c\\x06\\xe8\\x08\\xd8\\x5d\\x07\\x8d\\xe8\\x85\\x93\\x45\\xa0\\x56\\xe0\\xeb\\xa3\\xf0\\xda\\xf9\\x10\\xb1\\xdd\\x42\\xad\\x88\\xec\\x6a\\x46\\xbc\\x56\\x0a\\x55\\x98\\x66\\xaa\\x42\\x28\\x81\\xde\\x36\\xe4\\x62\\x6a\\xb2\\x48\\x83\\x62\\xa2\\x73\\xb3\\xe6\\x74\\x2a\\x9d\\xa3\\x6f\\x29\\x85\\x54\\x0e\\xa8\\xc4\\xb5\\xa2\\xbe\\x17\\xfa\\xae\\xb8\\x14\\xbf\\x6d\\x8d\\x4b\\xf3\\x10\\x18\\xc9\\xd9\\x48\\xf8\\x4a\\xe6\\x2a\\x30\\xea\\x1b\\x41\\x73\\xcc\\xca\\x59\\x5c\\x2f\\x38\\x87\\x72\\x8b\\xfb\\xb8\\x0d\\x33\\x1f\\x13\\x9a\\x2d\\x5e\\x0f\\xb0\\x41\\x7d\\xdf\\x1e\\x47\\xc7\\x79\\xfa\\x99\\x6d\\x9d\\xaa\\x10\\x72\\xf8\\x54\\x1a\\x3c\\x7b\\x46\\x3d\\xcf\\xbe\\xd9\\x73\\x39\\x32\\xf4\\x94\\xe5\\x1e\\x99\\xd7\\x44\\xa1\\xe5\\x0b\\x1d\\x36\\x1e\\x85\\xd5\\xd4\\x5e\\xec\\x25\\x30\\x63\\xa2\\xde\\xca\\x02\\x1f\\x77\\xf0\\x96\\x1b\\x68\\x88\\x46\\x20\\x87\\x61\\xec\\xa1\\x6d\\x49\\xc5\\x4e\\x60\\x18\\x3a\\x6a\\x1c\\x72\\x64\\xe0\\xb2\\xe2\\x75\\x81\\x30\\x53\\xff\\xbd\\x2b\\xf1\\xb5\\x64\\x31\\x4a\\xdb\\xcf\\x84\\x9d\\xf3\\xfa\\x6c\\x8b\\x81\\x5e\\x88\\xd8\\x73\\xbf\\xed\\x19\\x8f\\x77\\x2f\\x82\\xd6\\x55\\x34\\x08\\xfc\\x9c\\x54\\xb9\\x32\\x86\\xd5\\x34\\x68\\xc6\\xdb\\xe4\\x41\\x51\\xec\\x12\\xeb\\xe8\\x36\\x76\\x58\\x31\\xa6\\x62\\x30\\x2a\\xb7\\x61\\x15\\x94\\xff\\x1c\\xb2\\x14\\x1a\\x98\\x6a\\x69\\x10\\xf9\\x04\\x0c\\xf8\\xe7\\x2d\\x5a\\x50\\x64\\x4c\\xd4\\xc6\\xb4\\xd1\\x35\\x18\\x5b\\x4c\\xa3\\xfa\\x90\\x06\\xf3\\x04\\x39\\x09\\x28\\x74\\x40\\x95\\x31\\x20\\xb9\\x09\\x72\\x14\\xcc\\xd0\\x9c\\x52\\x26\\xda\\xb0\\xa2\\xf4\\x22\\x8a\\x3a\\x27\\xc7\\x40\\x9a\\xd4\\xf2\\x63\\x06\\x4e\\x01\\xd6\\x24\\x03\\x84\\xec\\x77\\x9e\\xe8\\x44\\x37\\x30\\xf8\\x55\\xdf\\x2c\\x85\\x22\\x7d\\x5b\\xb3\\x81\\xa5\\x7b\\x27\\x7a\\x97\\x28\\xa5\\xea\\x69\\xc2\\x43\\x67\\x30\\x37\\xf1\\xc5\\x28\\x2f\\x79\\xfe\\x05\\xb0\\xc8\\xf6\\xf4\\x7c\\x46\\xaf\\x05\\x5a\\xa9\\x47\\xee\\x3e\\x58\\xf2\\x1c\\x71\\x74\\xd0\\x87\\xce\\xed\\xa5\\xf8\\x1e\\xf1\\x4e\\x94\\xb5\\x9d\\xd4\\x45\\x51\\xa1\\x51\\xa0\\x0a\\xf7\\x0e\\xb5\\x06\\x1d\\xae\\x72\\x25\\x28\\x0e\\x86\\xbe\\xbb\\xf9\\x33\\xb7\\xbc\\x62\\x3e\\x3f\\x76\\x58\\x0e\\x32\\xbf\\x67\\x58\\xdd\\xb5\\x91\\x0f\\xfa\\x9c\\xf7\\x22\\x3b\\xe7\\x57\\xd4\\x5d\\x97\\x06\\x98\\x7d\\xa6\\x44\\xfb\\x35\\x81\\xa8\\x54\\x13\\xe5\\x7f\\x95\\x96\\x8a\\xf9\\xd3\\x33\\xe9\\xba\\xd8\\xf1\\x0e\\xdc\\xaf\\xb9\\x43\\x58\\x40\\x82\\x07\\xb5\\x84\\xe8\\x3d\\x30\\x0d\\x50\\xc0\\xc3\\x11\\x08\\xaa\\xf8\\x5a\\x2a\\x86\\xf1\\x2e\\xd0\\x35\\xe1\\x7b\\xf9\\x79\\x71\\x63\\x55\\xb7\\x0f\\xe8\\xb2\\xf1\\x0b\\x4c\\x06\\x3f\\x0d\\xd1\\xf2\\xf3\\xfb\\x4f\\x87\\x03\\x17\\x75\\x74\\x94\\x5d\\x6f\\xdf\\x4f\\x57\\xf0\\xb8\\x10\\x0f\\x9e\\x40\\x7f\\xd7\\xe5\\x70\\x34\\xce\\x66\\x2b\\x5e\\x0d\\x0a\\xe2\\x35\\x19\\x00\\x6a\\x51\\x74\\xcc\\xf0\\x5e\\xa6\\xf6\\xa1\\x73\\x8c\\x46\\xab\\x3b\\xf5\\x3a\\xd8\\x3e\\x07\\x84\\xc7\\xba\\xc3\\xfc\\x22\\xf1\\x26\\xb2\\xe7\\x76\\x70\\x7e\\x18\\x09\\x1c\\x4d\\xd3\\x4b\\x78\\xb0\\x9d\\x65\\x13\\x43\\x6e\\x3e\\xac\\x04\\xa2\\x80\\x02\\x16\\x1c\\x20\\x34\\xdd\\xe6\\x18\\xe8\\x80\\x78\\x20\\x5d\\x77\\x94\\xce\\x9a\\x72\\xaf\\x85\\xa9\\xcb\\x0b\\x45\\x00\\x36\\x7c\\x7e\\x96\\x00\\xae\\x9c\\xbd\\x09\\x73\\xd5\\x8d\\xf7\\xb8\\x14\\x87\\x5f\\x82\\xff\\x0c\\xff\\xa4\\xe5\\x15\\xa8\\x10\\x3a\\x6c\\x9c\\x1e\\xe9\\x0e\\xe7\\x28\\x86\\x20\\xf7\\x7c\\x1e\\x1e\\xc9\\x39\\x1d\\xf5\\xb9\\xb4\\x14\\xa5\\x55\\x54\\x6f\\xde\\x3c\\xdf\\x4d\\x42\\x38\\xcd\\x6e\\x17\\x56\\x95\\xb3\\x4e\\xc3\\x31\\xb9\\x44\\xa4\\x8a\\x92\\x72\\x2b\\x1a\\xb2\\x23\\xce\\x13\\x1c\\xa8\\x72\\xc5\\x95\\x25\\x6f\\x75\\x79\\x56\\x3e\\x18\\xa9\\x00\\xea\\xa5\\x9c\\x53\\x79\\x9b\\x33\\x30\\xee\\xc9\\x61\\x5e\\x83\\x78\\x3d\\xae\\xa4\\xcd\\x94\\xbd\\x44\\x7c\\xae\\x7c\\xa0\\xf6\\x26\\x2b\\x54\\x4b\\x2e\\x21\\x9c\\x5d\\x29\\x6f\\xd6\\x0c\\x24\\xd7\\x9e\\x1f\\x0e\\x6b\\x65\\x1e\\x26\\x05\\x91\\x02\\x16\\x09\\x06\\x49\\xb0\\xa2\\x39\\x38\\x9c\\x30\\x10\\xb6\\x90\\x5c\\x67\\x70\\x82\\x05\\x68\\x72\\xb7\\x31\\x10\\x50\\x50\\x5b\\x48\\xe0\\xe5\\x70\\x4f\\x8e\\xb0\\x91\\x2a\\xd2\\x02\\x99\\x72\\x42\\xc9\\xa2\\x61\\x24\\x29\\xcd\\x47\\x17\\x0c\\x4f\\xba\\xa0\\x73\\x21\\x9e\\x04\\xdb\\x33\\x60\\xe9\\xde\\xa1\\x18\\xdd\\x89\\x24\\xbd\\x12\\xaf\\x3c\\xba\\x6b\\x31\\x32\\x21\\x37\\xd6\\xe2\\x67\\xdb\\x77\\xd9\\x3d\\x7d\\x81\\x4d\\x65\\x1d\\xc7\\x32\\x31\\xd5\\x48\\xb2\\x21\\xb3\\x71\\xa2\\x5b\\xde\\xf1\\xac\\xb5\\xda\\x8a\\x79\\xf9\\xc0\\xe7\\x6c\\xb7\\xf2\\xcd\\x79\\x8a\\x53\\xf4\\x9f\\xe1\\x9f\\x10\\xaf\\x2f\\xc0\\x97\\x70\\x6c\\x12\\x3f\\xaa\\xee\\x84\\x0a\\x60\\xc8\\x5e\\xb8\\x4f\\xc8\\x38\\x39\\xd4\\xda\\x7c\\x9b\\xd1\\xc8\\x1f\\x24\\x8a\\xa7\\xea\\xfc\\xff\\x05\\x80\\xaf\\x8d\\x8b\\xf3\\x30\\x20\\x97\\x24\\x74\\x32\\xb3\\x4b\\xa6\\x6f\\x45\\x98\\xcc\\x14\\x8f\\x20\\xc5\\x88\\x40\\x82\\x9f\\xfe\\xe6\\x49\\xe6\\xc0\\x71\\xfa\\x06\\x78\\x11\\x0b\\x96\\x85\\x40\\x15\\xaa\\x96\\x8d\\x2f\\x98\\x76\\x01\\xfe\\xc3\\xb9\\x60\\x60\\xa1\\x8d\\x5e\\xa2\\x2d\\xcb\\xf4\\x70\\x5a\\x6d\\x09\\x0f\\x70\\xc6\\x76\\x20\\xa6\\x40\\x37\\x07\\xf7\\x48\\x19\\x48\\xe5\\x6c\\x80\\x6e\\x68\\x1f\\xaf\\x65\\xa5\\xf5\\x37\\x5d\\x25\\x2c\\xf0\\x0c\\x9b\\xb1\\x6e\\x22\\xa3\\x99\\x27\\xf6\\xf7\\xc3\\x64\\x3b\\x30\\xed\\x71\\xdf\\xf5\\x9d\\xd9\\x84\\x31\\xda\\x23\\x65\\x0c\\xfc\\x82\\xc6\\xd9\\x7d\\x0a\\x75\\x8f\\xd4\\xee\\xc4\\x25\\x34\\xd1\\x84\\x78\\xf8\\xef\\x63\\x4b\\xf5\\x5a\\x3d\\xfd\\x07\\xa7\\xc8\\x3c\\x48\\x6d\\x84\\x83\\xf4\\x31\\x01\\xe1\\xfc\\x52\\x11\\x32\\x2f\\xd9\\xf5\\xf4\\xda\\x8a\\x21\\x50\\xbb\\xa2\\x1e\\x02\\xe9\\x8a\\xe9\\x78\\x2c\\x79\\x0a\\xa5\\x0e\\x66\\xa4\\x0f\\x9a\\xed\\x54\\xb2\\x3c\\x74\\x8d\\x2c\\x77\\x9a\\x78\\x66\\x13\\xf0\\x1a\\xf7\\xc1\\x4f\\x53\\x76\\x89\\xcf\\x66\\x2e\\x65\\x4c\\x1d\\x52\\xa5\\x0c\\x34\\x9a\\x2d\\x21\\x5b\\x63\\x0e\\xcc\\x2b\\x3d\\x6d\\x73\\xad\\x9b\\xe8\\x32\\x60\\x3b\\xa8\\xa7\\x5d\\x25\\xae\\xee\\x7b\\x56\\x81\\xf2\\x14\\x09\\x05\\x96\\x4d\\x76\\xd9\\x00\\x4d\\xe6\\xbb\\x22\\xcd\\x21\\x41\\x8a\\xc4\\x02\\xa1\\x4d\\x86\\x48\\xd5\\xc0\\x56\\x46\\x44\\x26\\x47\\x31\\x33\\xbf\\x98\\xae\\xe5\\x6f\\x25\\x53\\x69\\xde\\xba\\x69\\x1d\\x22\\x6c\\xeb\\xb0\\x63\\xb4\\x71\\xa4\\x98\\x5a\\x05\\xe2\\x51\\xde\\x72\\x00\\x44\\xd1\\x7a\\x30\\x2f\\xc3\\x8d\\x09\\xdd\\xf9\\x18\\x99\\xf1\\x39\\x02\\xda\\x66\\x88\\x5f\\x7b\\x0e\\x09\\x56\\xda\\x20\\xfb\\x0c\\x32\\xb9\\xc3\\x30\\xbd\\xca\\x80\\x27\\xb6\\x79\\x29\\x3a\\x1a\\x72\\xe1\\xba\\x43\\xfa\\x88\\x7c\\xa6\\x20\\x28\\x50\\x76\\xbc\\x4d\\xd8\\x91\\xf2\\xd1\\x43\\x68\\xb3\\x5a\\xef\\x16\\x17\\xef\\x99\\xc5\\xe2\\xe6\\x06\\x8c\\x93\\x4e\\x3b\\xb2\\x1b\\x88\\x64\\xfb\\xb6\\x71\\x8f\\x25\\x8d\\x4c\\x70\\x54\\xe7\\x0b\\xa8\\x07\\xf2\\xd2\\xa0\\x8f\\x3e\\xaf\\xcf\\x32\\xec\\x2b\\xe6\\x5a\\x51\\xf2\\x93\\x71\\x0b\\xf1\\x19\\x56\\x67\\x59\\xab\\xd0\\x44\\xcf\\x33\\xf4\\xed\\x60\\xac\\x9a\\x39\\xfd\\x63\\xb1\\x09\\x03\\x03\\x4f\\xbc\\x24\\xef\\x71\\xac\\x9f\\x58\\xd9\\xd4\\xc8\\xd6\\x3b\\x0b\\x12\\x96\\x7b\\x07\\x31\\x05\\x97\\x76\\xbe\\xb6\\xbf\\x34\\xd3\\xfb\\x87\\x7a\\x4d\\x52\\xfe\\x21\\xc4\\xac\\x75\\x20\\x68\\x47\\x21\\xd2\\xf1\\x4e\\xe1\\x62\\xad\\xb8\\xd6\\x4f\\xde\\xc6\\xfb\\x2e\\x32\\xd0\\x7b\\xc1\\x22\\x4a\\xe2\\x27\\xca\\x20\\xc4\\x8a\\xd9\\x0d\\x55\\x80\\xa4\\x73\\xe6\\x01\\x20\\x7c\\x48\\x39\\xf6\\x28\\x9f\\x96\\x82\\x20\\x8c\\x06\\x83\\xe8\\x95\\x8c\\xbb\\x08\\x86\\xde\\xb7\\x29\\x9f\\x86\\xf1\\x6b\\xda\\x2b\\xe0\\x49\\xa4\\x5e\\xd5\\x3a\\xaa\\xf6\\xf2\\x18\\xc7\\xf1\\xa1\\xa7\\xb1\\x90\\x2d\\xd3\\x0e\\x03\\xad\\x38\\xf1\\x04\\xd6\\x08\\x01\\x65\\x4c\\x7a\\x80\\xdf\\xea\\x4a\\xca\\xed\\x3a\\xfe\\x1c\\x30\\x3e\\xc8\\xfc\\x96\\x8d\\x07\\xe5\\x92\\x94\\x8f\\xd4\\x6b\\x62\\xf9\\x80\\x90\\xfa\\x4e\\x9e\\xbf\\x41\\xec\\x1a\\x59\\x01\\x01\\xf8\\x40\\x67\\x49\\xe5\\xed\\x4d\\xe5\\xc6\\x5e\\x48\\xb2\\x70\\x7a\\x34\\x5c\\x11\\x01\\xf9\\xc8\\x0a\\x4c\\x50\\x41\\x17\\xe3\\x04\\xa6\\x1b\\x14\\xcb\\xc2\\xe0\\x42\\x35\\x1c\\x3b\\xd5\\xd1\\x8c\\x29\\xd6\\x40\\x71\\x8e\\xbe\\xe0\\x0b\\xb2\\x09\\xc1\\x27\\x34\\xd1\\x97\\xc8\\x69\\xa7\\x76\\x29\\x00\\x40\\x90\\x4d\\x04\\x3d\\x1c\\x11\\x4d\\x25\\x41\\x9a\\x56\\x39\\x50\\x27\\x5c\\xc5\\x50\\xbf\\x2e\\x94\\x3e\\xf3\\x21\\x86\\x5b\\xd8\\xca\\x21\\x75\\xa4\\xb6\\xd4\\x15\\x3d\\x12\\xc4\\x47\\xb6\\x4b\\x5f\\x6e\\xa8\\x6f\\xd8\\xad\\x17\\x0f\\xcc\\x06\\x8b\\x4e\\xfc\\x2b\\xff\\xfc\\xe8\\xbf\\x05\\xb3\\x31\\xbc\\x5c\\xba\\x1e\\xa4\\x61\\x87\\xe8\\x3f\\x0c\\x64\\x18\\xf8\\x77\\xd8\\xc2\\x4c\\xc7\\x4d\\xe2\\xcf\\x9e\\x5b\\x06\\xf2\\x71\\x2f\\x59\\xc8\\x41\\xff\\xfa\\x72\\x73\\xfb\\x66\\xe1\\xca\\x4c\\xa1\\x2d\\xe9\\x4e\\x80\\x44\\xe1\\x9b\\xd0\\x42\\x43\\xe1\\x3d\\x2c\\x55\\xfe\\x29\\xad\\xdf\\xd0\\xe7\\x5e\\x1e\\xd5\\xb9\\x57\\x1f\\x72\\x3a\\x6b\\xa7\\xb3\\x72\\x87\\xfb\\x2b\\x55\\x68\\x49\\x44\\x20\\x59\\x1a\\xc6\\x81\\xf4\\xd1\\x52\\x0d\\x3e\\x5a\\x2f\\xc6\\x37\\xa2\\x1f\\x0c\\xc9\\xce\\xb7\\xb5\\x4a\\x45\\x53\\xed\\xf5\\xd2\\xe0\\xa5\\xf5\\x5f\\x38\\x50\\xc7\\xe7\\x78\\x82\\x1f\\x4d\\x70\\xb0\\x30\\x19\\xc2\\xe4\\x79\\x39\\x27\\x2b\\x87\\xf3\\x21\\xfc\\x3d\\xf5\\x87\\x15\\xd4\\x84\\xbb\\x60\\xb5\\x24\\xbc\\x0c\\x6d\\x92\\x1d\\xd7\\x1a\\x6c\\x2c\\xdf\\x31\\xe3\\xb0\\xb0\\x28\\x7a\\x84\\x2e\\xbc\\x26\\xc1\\x89\\x91\\xfb\\x47\\xca\\x61\\x13\\x4c\\x03\\xe1\\x16\\xb2\\x1c\\x1a\\x6b\\x57\\x32\\x0d\\xfc\\x16\\x4e\\xc0\\x9a\\x17\\x25\\xaa\\x2f\\xc1\\xeb\\x5f\\x55\\x15\\xff\\xeb\\x8a\\xaa\\x70\\x47\\xe3\\x79\\xdb\\xdc\\x4c\\x44\\x75\\x66\\x71\\xa1\\x2d\\x1c\\x00\\x00\\x40\\xff\\xbf\\x69\\x6b\\x99\\x17\\xfa\\xd8\\x0a\\xcf\\x7f\\x5b\\xb6\\x28\\x4e\\xf7\\x96\\x68\\xb4\\x45\\x96\\x22\\x5f\\x0f\\xe2\\xcc\\xd5\\x0c\\xd6\\x48\\xe2\\xb5\\x24\\xfc\\xda\\x7d\\x28\\x05\\x89\\x3a\\xdc\\x77\\x78\\xe8\\x6a\\x27\\x0c\\xab\\x1c\\xc3\\x82\\xcd\\x1d\\x58\\xd7\\x22\\x2e\\x32\\x06\\x05\\x9a\\xb7\\xae\\x5c\\x86\\x12\\x85\\x8f\\xb8\\xd0\\x82\\x49\\x42\\x12\\xde\\x2b\\xb5\\xf0\\x4e\\xd2\\x46\\xc5\\xbe\\x75\\xd6\\x13\\x98\\x56\\xe0\\x65\\x27\\x77\\xbd\\xaf\\x60\\x7e\\x72\\xac\\x84\\x77\\x58\\xb2\\x62\\x37\\xfa\\x6f\\xa0\\xed\\xb4\\x6d\\xe9\\x8d\\x80\\xf8\\x5e\\x1a\\xa1\\x3f\\xe5\\xe7\\x57\\x89\\x72\\xdf\\x46\\xe6\\x40\\x55\\x15\\x46\\x7e\\x4f\\xd1\\x81\\xa7\\xe1\\x9c\\x0f\\x5f\\x03\\x84\\xfd\\x5f\\xb9\\x27\\x50\\xf0\\xf0\\x1e\\x17\\x43\\x10\\x86\\xab\\xd2\\xfb\\x1e\\xe6\\xbb\\x04\\x80\\x4c\\x7c\\x93\\xec\\xd9\\x99\\x82\\x9b\\x57\\x2b\\xce\\x92\\x67\\xb1\\x2c\\x25\\xff\\x26\\x64\\x32\\x74\\x39\\xeb\\x6c\\xc9\\xb2\\x13\\x56\\x6a\\x61\\x69\\x4e\\x7f\\xf3\\xb2\\x16\\x4f\\xdf\\xf5\\x27\\xc7\\x43\\xc6\\xba\\xa1\\xf3\\x07\\x1a\\xe3\\x47\\x1f\\x88\\xfb\\xe7\\x76\\xb8\\x79\\xb4\\x3e\\x63\\xeb\\x70\\x31\\xd3\\x64\\x5c\\x33\\xae\\x0e\\x8d\\x05\\x92\\x1c\\xb5\\x70\\x18\\xcf\\x19\\x0d\\xff\\xd2\\xfe\\xf7\\xcf\\x31\\xac\\x57\\xa5\\x45\\xb3\\x88\\xbc\\xf9\\xe4\\x84\\x13\\xec\\x5b\\x4c\\x83\\xe5\\x54\\xc0\\x95\\x96\\x91\\xad\\x1f\\x02\\x97\\x6c\\xb7\\x93\\x9f\\xf4\\xe9\\x84\\xfd\\x40\\x3c\\x31\\x16\\x75\\xed\\x79\\x6a\\xe8\\xe0\\x8c\\xac\\x9e\\x40\\x34\\x4b\\x20\\x61\\xac\\x0c\\x1f\\x6a\\xfa\\x3f\\xf8\\x3d\\x0a\\x07\\x19\\x92\\x68\\x8f\\x08\\x9e\\xb5\\xf8\\xd5\\xd4\\x79\\x44\\x6d\\xd0\\xe1\\x6b\\x9e\\x21\\x2e\\xd8\\x00\\x16\\x8a\\x4c\\x1d\\x93\\xf0\\x14\\x79\\xed\\x6f\\x92\\xd4\\xc5\\x0a\\xa9\\x8b\\xd9\\x92\\x8f\\x31\\x48\\xe6\\xe0\\xc8\\xfd\\xeb\\xca\\x92\\x59\\x19\\xcb\\x9a\\xda\\x83\\x20\\x22\\xd0\\x7a\\x83\\x30\\xe9\\xa2\\x65\\x5c\\x66\\x1f\\x1b\\x9f\\xe8\\x66\\x31\\x20\\x9f\\xbb\\x71\\x4f\\x25\\x2f\\x15\\x99\\x8a\\xb2\\x56\\x1d\\x3b\\x4e\\x0a\\x04\\x5a\\xa0\\x1b\\x0a\\xad\\x9a\\x5e\\xde\\x4c\\x32\\xe4\\x8a\\xbc\\x0e\\x3c\\xcf\\x19\\xf6\\xdb\\x54\\x87\\x1c\\xb3\\xfe\\x14\\x7c\\x6d\\xde\\x3c\\xbc\\x0c\\x27\\x18\\xc8\\x92\\xb9\\x99\\xb5\\xa6\\xbd\\x77\\x65\\x08\\x6a\\x84\\xe0\\xb9\\x57\\x88\\x55\\x33\\x71\\x43\\x32\\xd4\\x0b\\x82\\xf5\\x39\\x94\\xeb\\xe6\\xe0\\xff\\x3d\\x38\\x01\\x65\\xf3\\x44\\x4a\\xfe\\x80\\xa6\\x56\\xa3\\xab\\xc6\\xb9\\xfe\\x85\\x32\\x64\\x55\\x88\\x1e\\xaf\\x2a\\x53\\x5f\\x08\\x67\\x07\\xa8\\x8f\\x96\\x57\\x0f\\x66\\xbd\\x0c\\x1b\\xd4\\x1b\\xe3\\x2e\\x92\\x17\\x1e\\x47\\xe7\\x03\\x6c\\xac\\x71\\x7e\\x4e\\x0f\\x54\\x96\\x94\\x8d\\xf4\\x9a\\xd8\\xeb\\x1c\\x19\\x18\\x22\\xd3\\x96\\x31\\x21\\x3a\\xb9\\x23\\x60\\x8b\\x64\\x26\\x7a\\xe1\\xb5\\x59\\xa3\\x47\\x06\\x42\\xe9\\xef\\x77\\x35\\xd4\\xd7\\x89\\x27\\x56\\xd5\\x4d\\x30\\xb2\\xa4\\xf4\\x95\\xa2\\x13\\x1b\\x9c\\x28\\xfa\\x68\\x65\\x09\\x68\\x27\\xca\\x4d\\x07\\x0e\\x23\\x91\\x0e\\xf1\\xd3\\x87\\x00\\x6a\\xa7\\xfb\\x06\\x16\\x1f\\x5e\\x68\\x0b\\xa1\\x19\\xd3\\x2a\\x09\\x0b\\xbd\\x24\\xcf\\x39\\x9a\\x50\\x10\\xa9\\x02\\x35\\xb1\\x99\\x68\\x81\\x11\\x6d\\xe0\\xcd\\x13\\x43\\xf1\\x6a\\x76\\x4b\\xb6\\x88\\x11\\xf8\\x8d\\xb6\\x48\\x18\\x10\\x52\\xce\\xd0\\xfa\\xe6\\x7d\\x08\\x08\\xea\\x28\\x12\\x0c\\xff\\x9a\\x24\\xc2\\x42\\xa4\\xac\\x75\\x54\\x0f\\x5b\\x7e\\x82\\x87\\x43\\xaa\\xcd\\x96\\x72\\xf4\\x9b\\xfc\\xaa\\x3b\\x0f\\x5e\\x4c\\x12\\xe8\\x54\\x27\\x9a\\xbc\\x9e\\x18\\x97\\x04\\x95\\x10\\x75\\x0d\\x2a\\xa2\\x06\\xce\\xef\\xbe\\x48\\xba\\x31\\xb2\\x47\\x89\\xea\\xc8\\x2e\\x50\\xa5\\x15\\x32\\xc2\\x17\\x08\\xd9\\xba\\x6b\\x3d\\x0f\\x4b\\x6e\\xe6\\x8f\\x72\\xa5\\x81\\xd8\\x72\\xd0\\xfa\\xb9\\xea\\xa9\\x2a\\x36\\xa1\\xe3\\xb9\\xc5\\xe1\\x5a\\x68\\xe0\\x7a\\x9f\\xe5\\x0c\\xe6\\x3a\\x91\\x1b\\xf3\\xe3\\x33\\xb5\\x6f\\x9f\\xf1\\xb7\\x47\\xf8\\x95\\x4b\\x3b\\x94\\x5d\\x33\\xd5\\x93\\x5c\\xbf\\xf5\\xd2\\x78\\xf2\\xe0\\x31\\x23\\x3a\\x75\\x01\\x3f\\xa3\\x3a\\x93\\xa4\\x8d\\xda\\x35\\xed\\x84\\x17\\x93\\x8d\\x87\\xe8\\xe1\\x6a\\xa9\\x0e\\x90\\x7d\\x92\\xab\\x3f\\x00\\x95\\xa1\\x5e\\xda\\xed\\xfb\\x69\\xed\\x58\\xc0\\xe5\\x2a\\xfb\\xdb\\xbd\\xae\\x0d\\xb4\\x12\\x40\\xd1\\x90\\xd7\\xfb\\xca\\xb7\\xa2\\xca\\xf3\\xa6\\x6b\\x79\\x9e\\x4c\\xa5\\x83\\x33\\x03\\x4c\\xb2\\x33\\x19\\xcf\\x4a\\xf2\\xed\\x28\\xcd\\x9d\\x17\\x77\\xc1\\x76\\x93\\xd2\\x15\\xc2\\xa0\\x23\\x01\\x0b\\x8b\\xbb\\xb8\\xdf\\x90\\xc5\\xc4\\xa9\\x20\\xae\\x89\\x67\\x21\\x3c\\xc7\\x06\\xa8\\xa0\\xb1\\x23\\x55\\xae\\x8d\\xe4\\x09\\xe7\\xcc\\x28\\x3d\\x4c\\x04\\xc8\\x00\\xf7\\x51\\xfe\\xcb\\x70\\xb0\\x5a\\x04\\x68\\x90\\x47\\xe6\\x3d\\x62\\xaa\\xb8\\x49\\xd3\\xe9\\x11\\x03\\x02\\x06\\x49\\x49\\xb0\\xcc\\x3e\\x0a\\xd0\\x9b\\xc4\\x65\\x72\\x7c\\x37\\xd2\\xda\\xdb\\xf8\\xee\\x27\\x51\\x85\\x74\\xe9\\xbc\\x04\\x0a\\xb6\\x6d\\xa6\\xad\\xad\\x88\\x34\\x3c\\x9c\\x7c\\x8a\\x38\\x65\\xe6\\x48\\x10\\x5e\\xe8\\x70\\xfa\\x4f\\x6a\\xe0\\x4f\\xe9\\x08\\x3d\\x97\\xc4\\xf8\\x24\\xe2\\x80\\x25\\x64\\x71\\xc9\\x92\\x05\\x54\\x38\\x8b\\xe2\\x7a\\xe7\\xad\\xc6\\xf7\\xe1\\x71\\x32\\x2b\\xd1\\x89\\xa7\\x91\\xd7\\xd2\\x5a\\x21\\xce\\x31\\xe2\\xd0\\x50\\xf9\\x76\\xf2\\xfc\\xa4\\x53\\x0c\\x3b\\xb1\\x4a\\xe2\\x41\\xd4\\x94\\xe9\\x26\\x63\\xad\\x1b\\x2e\\x39\\x72\\xde\\x08\\xb4\\xe9\\xe3\\xde\\x51\\x13\\x13\\x92\\xab\\x0a\\x44\\x22\\x47\\xa4\\xfa\\x06\\x51\\xb5\\xa9\\x84\\x9a\\x79\\xbf\\x39\\xca\\x96\\x24\\xa7\\xf9\\xc5\\x3c\\x59\\x3d\\xe8\\x50\\x0c\\x24\\xf2\\x2d\\xc1\\xa4\\x24\\x01\\x97\\x87\\xf0\\x94\\xf9\\x1e\\x09\\x34\\x65\\x4b\\xe8\\x98\\xbe\\x7c\\xef\\x18\\x21\\x38\\x12\\x22\\x6d\\xb7\\x8d\\xe2\\x87\\xe3\\x91\\x49\\x4d\\xd7\\x3d\\x5d\\x93\\xf1\\x97\\xa2\\x36\\x59\\x8c\\x1a\\x1b\\x37\\xd2\\x13\\xf1\\xfd\\x59\\xf0\\x46\\x2f\\x7d\\x3d\\x3e\\x21\\xee\\x98\\xf3\\x76\\x24\\xad\\x22\\xfa\\x82\\x60\\xc0\\x39\\x0c\\xed\\x5e\\x13\\xfd\\xaa\\x81\\x3b\\x56\\xba\\x4d\\x08\\x60\\xa7\\x39\\x4c\\xa1\\xe4\\x99\\x30\\xe8\\x4b\\x31\\xcc\\xed\\x93\\x5e\\x2d\\xab\\x2c\\x8a\\x14\\xd3\\x63\\xa4\\x5d\\x27\\xd1\\x08\\x98\\xaf\\x9d\\xb6\\xba\\xdf\\x68\\x03\\xb8\\x05\\xf3\\xec\\xb3\\x2f\\x3d\\x85\\x0b\\x94\\x1f\\x4d\\x05\\x0d\\x28\\x82\\x51\\x99\\x98\\xee\\xb0\\xd0\\x18\\x32\\x69\\x00\\xfd\\xb7\\xf6\\xd8\\x30\\xcd\\x05\\x9b\\x29\\x20\\x17\\x54\\xc4\\x97\\x95\\xc8\\xc5\\x23\\xf4\\xf3\\xc6\\x13\\x49\\x46\\xf9\\x4f\\x15\\x93\\x9a\\x70\\x12\\x2c\\x49\\x10\\x79\\x3b\\x4c\\x10\\x0b\\x69\\x9f\\xd9\\x9e\\xe9\\x6b\\xe3\\x89\\xce\\xda\\xb9\\xd2\\x97\\xa8\\xac\\x28\\xf7\\x20\\xb5\\x31\\xb5\\x3d\\x14\\x71\\xa5\\xa7\\x92\\xb8\\x3a\\x72\\xf8\\xf0\\xd4\\x76\\x31\\x60\\xc0\\x58\\x96\\x6b\\xf2\\x8e\\xc5\\x69\\x04\\xae\\x97\\xe0\\x34\\x1b\\x99\\x3e\\xb6\\x8c\\x01\\xb2\\x97\\x0d\\x2a\\x9b\\xd9\\x33\\xbb\\xfe\\x62\\x5f\\xd0\\x8b\\xae\\x93\\xb6\\x71\\xc3\\x25\\x81\\xc5\\x2f\\xbd\\xd1\\xb7\\xe9\\x2b\\xe2\\x31\\xf3\\xe0\\xaf\\x5b\\x8f\\x1f\\x82\\x56\\xef\\x2f\\xff\\xa0\\xc1\\x53\\x4f\\x5c\\xe1\\xfa\\xf9\\x90\\xe0\\x24\\x3a\\x48\\x05\\xd5\\x6e\\x11\\x2b\\xa8\\x38\\x95\\xaf\\x44\\xdd\\xa4\\x21\\xb0\\x66\\x7d\\x6d\\x9a\\x25\\x0e\\x22\\x16\\xc2\\x84\\x93\\x96\\x35\\xe1\\x37\\x2f\\x69\\x9f\\x6d\\x3f\\x06\\x8c\\x71\\x79\\xbb\\xa5\\x1f\\x31\\xa7\\x93\\x1d\\xe2\\xb3\\xe7\\xad\\xe2\\x39\\x6c\\x8f\\xf5\\xda\\xde\\x3f\\xd5\\x6d\\x91\\xd9\\x30\\x28\\xd5\\xff\\x16\\xcf\\x26\\x9b\\x09\\x38\\x66\\x1c\\x8a\\x46\\x07\\xc3\\xbe\\x11\\xa1\\x97\\x27\\xf2\\x23\\x03\\xbc\\x3d\\x2a\\xeb\\xb9\\xda\\x87\\xe7\\x9c\\x96\\xb3\\xc9\\xbe\\x21\\xf8\\x81\\x14\\xfe\\x79\\xf8\\x3c\\xb0\\xc2\\x39\\xac\\x59\\x86\\x55\\x20\\xb5\\xa0\\xd0\\x5a\\x36\\xa1\\xd2\\x4a\\x40\\x48\\x67\\xbd\\xdc\\xae\\xdb\\x68\\xec\\x52\\x56\\xa6\\x7c\\x48\\x3c\\x7a\\x70\\x70\\x47\\x38\\x90\\x7b\\x47\\xf8\\x68\\x8a\\xec\\xb9\\x7e\\x61\\xc4\\xb0\\x57\\x8c\\x01\\x7a\\xab\\x06\\x48\\xaa\\x0a\\xdc\\x41\\xbc\\x04\\xe6\\xfc\\x79\\x96\\x83\\x52\\xe6\\xab\\xcc\\x57\\xa3\\x07\\xd7\\x62\\x85\\x93\\x9e\\xbc\\xbb\\x8b\\x8e\\x39\\x76\\x62\\xc4\\xb3\\x58\\x01\\x49\\x51\\xf9\\xa6\\xa3\\x0f\\xb7\\x8c\\xce\\x0b\\x82\\x5b\\x26\\x72\\x17\\xac\\xfc\\x19\\x27\\x57\\x6a\\x99\\x60\\xd9\\x4c\\x07\\xcf\\xf5\\x31\\xc7\\x6d\\x64\\x8e\\x42\\xe6\\x79\\xde\\xfb\\x2e\\x6d\\x0d\\xd9\\xc5\\xa1\\x26\\xa4\\x2b\\x3a\\xc9\\xc1\\x2d\\x67\\xb9\\x92\\x8f\\x17\\x6b\\x2e\\xc3\\x79\\x8a\\xef\\x3c\\x41\\x7f\\x71\\xb2\\x37\\x8b\\x1e\\x05\\xd3\\x1b\\x76\\xf7\\x7c\\x42\\x2d\\x89\\x5b\\xaa\\x35\\x20\\xf4\\x65\\xd3\\x13\\xd1\\x66\\x4c\\xb2\\x23\\x4e\\x67\\xc0\\xfc\\x08\\x30\\x32\\xf9\\xd4\\xd5\\xa4\\x8c\\x2a\\xc8\\x1d\\xef\\xcd\\x20\\x82\\x62\\x6b\\x93\\xd3\\xf8\\x12\\x5b\\x84\\xb2\\x46\\x91\\x85\\x8e\\xc2\\xa8\\x45\\x17\\xd8\\x28\\x9e\\x7c\\x1c\\x73\\x32\\x6e\\x5d\\x2b\\xcd\\x87\\x3a\\x81\\x1e\\x76\\x6b\\xc0\\x7a\\x8a\\x10\\xf0\\x40\\x33\\x27\\xc5\\xde\\x6c\\x6d\\xb5\\xfa\\xa9\\xb4\\x8c\\x64\\xa5\\xae\\x11\\x36\\x71\\x45\\x02\\xae\\x37\\x58\\x58\\x3c\\xa3\\x39\\x43\\x95\\xb0\\xe0\\x76\\x34\\xdd\\x82\\x42\\x1a\\x16\\xc3\\x44\\x02\\x3e\\xdf\\x09\\xf0\\x42\\xd9\\xdd\\x4c\\x43\\x82\\x47\\x68\\x26\\xd5\\x7c\\x2f\\x11\\x65\\x35\\x0d\\x92\\x44\\x91\\x65\\xb6\\xc9\\x42\\x2c\\x26\\x77\\xbf\\xa1\\x99\\x5d\\xba\\xcc\\xea\\xac\\x0b\\xdf\\x6a\\xa9\\x7d\\xa2\\x92\\xb4\\x21\\xdb\\xcc\\x2a\\xa0\\xee\\x6c\\x44\\xe4\\x04\\x08\\xed\\xa6\\x30\\x4c\\xc8\\x31\\x82\\xde\\x94\\x26\\x37\\xf4\\x12\\x0d\\x07\\x19\\x6a\\x47\\x69\\xae\\x3c\\x2c\\xef\\x29\\x71\\x22\\x34\\x3f\\xe1\\x0d\\x83\\x98\\x49\\x36\\x49\\x2d\\x52\\x1f\\x91\\x5f\\x83\\x40\\x87\\xda\\xed\\x45\\xab\\xb2\\x74\\x00\\x56\\x40\\xe7\\x45\\x32\\x10\\x28\\x53\\xe9\\x49\\x40\\xb3\\x57\\xb2\\x73\\xb4\\x8a\\xa2\\xa4\\x8c\\xcf\\x6a\\x8f\\xc4\\xe7\\x50\\x2d\\x88\\x40\\xe4\\x53\\xf3\\x68\\x6d\\xee\\x64\\x01\\x29\\x26\\xfe\\x7b\\x55\\x15\\x4f\\x67\\xd6\\x92\\xa9\\xf4\\x6d\\xfa\\x74\\x1e\\x21\\x67\\xb5\\xc9\\xac\\x21\\x6f\\xf4\\x67\\xdf\\x0f\\x6a\\x7c\\x5e\\x8b\\xe9\\x5a\\x8b\\x91\\xf5\\xaa\\xab\\x89\\x76\\x5d\\x8c\\x79\\x82\\xa6\\x63\\x46\\xde\\xe9\\xe2\\xf0\\x97\\xa6\\xeb\\x01\\x38\\x43\\x19\\x9f\\x84\\x5e\\xdd\\xc0\\x8e\\x9d\\xff\\x58\\xe7\\x22\\x53\\x2b\\xa3\\x03\\x91\\x6f\\xaf\\x41\\x8d\\x2d\\x79\\x9b\\x68\\xc5\\x26\\xb8\\x45\\xfd\\xb1\\x29\\xee\\xbb\\x77\\x7c\\x74\\x72\\x6a\\x8c\\x3e\\xf5\\xe4\\xad\\x37\\xcf\\x3f\\x71\\x4b\\xd6\\x5e\\x66\\x1e\\xe0\\x07\\x87\\x3f\\x36\\xc5\\x13\\x8f\\xdf\\x7c\\xeb\\xe2\\x53\\xb7\\xe9\\xfe\\x7b\\x67\\x26\\xc6\\xa6\\x26\\xc7\\x0e\\x24\\x0f\\x54\\x09\\x2f\\x8a\\xaf\\x3d\\xec\\x6b\\x95\\x2b\\x34\\xcf\\x1c\\xdb\\x8d\\xb3\\xeb\\x74\\x5c\\x6c\\x0d\\xcf\\x0e\\xe6\\xd8\\x58\\x37\\xd6\\xab\\x05\\x46\\x8c\\x0a\\x08\\xb5\\x48\\x0d\\xb5\\x1a\\x34\\x80\\xfd\\x7a\\xf3\\xbb\\xa7\\x4e\\xd5\\x49\\xe8\\x16\\xe3\\x1f\\x13\\xf0\\x93\\x9a\\x0c\\x48\\xf8\\xb0\\x51\\xfb\\x1b\\xbf\\xd0\\xb1\\x9f\\xa0\\x9d\\x16\\x93\\x27\\xe8\\xe3\\xb2\\x5b\\xa5\\xd0\\x28\\xf1\\xb0\\xa9\\x51\\x89\\xa0\\x6f\\xfb\\x61\\xa2\\xaf\\x55\\xee\\x8a\\x07\\x6d\\x39\\x85\\xd1\\x53\\x55\\x39\\xb3\\xae\\x5f\\x8d\\x08\\x75\\x8b\\x67\\x48\\xe0\\x45\\x3f\\x3f\\xbd\\x6d\\x9c\\xa8\\x6d\\x8c\\x99\\x93\\xf2\\x44\\x19\\xe9\\x80\\x9a\\x8d\\x09\\x51\\xc9\\x4d\\x9d\\x43\\x80\\x89\\x1a\\xae\\x29\\x48\\x44\\x0e\\x59\\x5d\\xda\\xa0\\x34\\xb6\\x2f\\xcd\\xb2\\x4f\\x01\\x63\\x7a\\xed\\x03\\x22\\xdd\\x33\\xfb\\xef\\x58\\x38\\x9e\\x69\\x81\\xf1\\x2e\\xe6\\x23\\x00\\xc6\\x96\\x16\\xf8\\x2e\\x87\\x30\\x28\\x4d\\x0e\\xe3\\x36\\xdb\\xb7\\x6d\\x47\\xf0\\x41\\x30\\xcd\\xf5\\x84\\x7c\\x94\\xdf\\x23\\x76\\x9f\\x6d\\xaf\\xe2\\x73\\xea\\xf1\\x64\\xd8\\x17\\xd2\\x5a\\x1b\\x57\\xec\\xb9\\xb9\\x38\\xc9\\x98\\x9b\\x0b\\x26\\x66\\xd0\\x51\\x61\\x41\\x04\\x3b\\xaa\\xfe\\xda\\x31\\xc8\\x4d\\x6d\\x70\\x56\\x7c\\x2c\\xea\\xb9\\x8d\\x8a\\xc8\\x74\\xb8\\x81\\xd5\\x6e\\x33\\xbb\\x25\\x9e\\x0e\\xfe\\x22\\x14\\xdc\\x77\\x61\\x18\\x3e\\x84\\x21\\x54\\x39\\x13\\x4c\\x76\\xbd\\xf1\\x8e\\x90\\xf8\\x15\\x8e\\x07\\x30\\x7b\\xdf\\x9e\\xfd\\xa5\\xfd\\xcf\\x05\\xb4\\x34\\xb3\\x11\\xb6\\xac\\x44\\xad\\x15\\x52\\x68\\xdc\\x18\\x86\\x85\\x07\\x3a\\x72\\x7a\\xc8\\xde\\x8e\\x5d\\x22\\xc1\\xb5\\x70\\xb6\\x2f\\x18\\xb3\\xb4\\xbf\\xca\\xb6\\xf3\\xb4\\x93\\x5a\\x43\\x13\\x70\\x35\\x93\\xcc\\x21\\xd1\\xeb\\x63\\xab\\x04\\x22\\xd7\\xb4\\xec\\xb4\\x7e\\xbf\\xcd\\xba\\x41\\x45\\x9f\\x71\\x0d\\xc9\\xa5\\xfc\\x3f\\x6d\\xc0\\xa8\\xb2\\x8d\\x43\\x02\\xd8\\x1d\\x11\\x85\\xa0\\x37\\xe0\\x8f\\xf0\\x8a\\x33\\x90\\x5d\\x4c\\x73\\x27\\x8c\\xa5\\xfd\\x3c\\xef\\xa3\\x01\\xba\\xab\\xc8\\x12\\xd6\\xbd\\x13\\x82\\x00\\x82\\xe5\\xa7\\xf4\\xdb\\x0c\\x32\\x3f\\x0b\\x6c\\xf7\\x11\\xa4\\x60\\xa8\\xbf\\xa3\\x8c\\x19\\xff\\x22\\xf0\\x87\\xf0\\x66\\xf8\\xa6\\xe8\\xdb\\xff\\x5f\\x83\\x52\\x46\\xc9\\xa0\\x3b\\x93\\x16\\x02\\x55\\x72\\x4d\\x91\\x2c\\xd4\\xc1\\x0e\\x63\\x6b\\x31\\x68\\x1e\\x06\\xe2\\x6c\\x79\\x76\\xce\\x61\\xc8\\xab\\xec\\x3b\\xb1\\x4b\\x4b\\xac\\x63\\x4c\\xa3\\x82\\x19\\x4b\\x2d\\xf4\\xb3\\x98\\x4b\\x0a\\x20\\xbe\\xf7\\x78\\x8f\\x81\\x28\\x3a\\xe8\\xb1\\x87\\xfe\\x84\\x98\\x9d\\xe9\\x63\\xb2\\xdf\\x14\\xf5\\xc1\\xb7\\xc1\\x43\\x87\\xcd\\xce\\x17\\xda\\x40\\x76\\x17\\x97\\x42\\x80\\xff\\x77\\x75\\xa9\\x2b\\xb0\\xe3\\xc4\\x82\\x9c\\xec\\x91\\x12\\xd9\\xbc\\xfc\\xa4\\x5e\\x7e\\x27\\x77\\x24\\xec\\xc8\\x74\\xed\\x53\\x6a\\x5b\\x56\\x4e\\x49\\x72\\xc2\\xa2\\xbc\\x19\\x27\\xe0\\xff\\x2d\\xfa\\xe4\\x8c\\xa3\\x11\\x96\\x13\\x37\\xac\\x29\\xc4\\x4d\\x5f\\xb8\\x69\\x07\\xe7\\xaf\\xea\\x2b\\x64\\x34\\xc8\\x78\\x99\\x82\\x22\\x26\\x13\\x2f\\x6f\\x14\\xdd\\xd5\\xb5\\xbc\\x5d\\xa5\\xb9\\x09\\x93\\xdd\\xfa\\x24\\xfc\\x82\\xbc\\xf7\\x1c\\x9b\\xb5\\xe5\\xe8\\xa8\\xf7\\x90\\x17\\x0b\\x66\\x83\\xf8\\xc2\\x4d\\xa4\\x49\\x22\\x3e\\xd4\\x52\\x4f\\x91\\xa7\\x60\\x19\\x89\\xa8\\x0e\\x66\\x0c\\x7b\\xa4\\xcf\\xc1\\xaa\\xc3\\xdf\\x2e\\x57\\xa5\\xe1\\xe7\\xa1\\x87\\x6a\\x10\\x20\\x14\\xc0\\x2e\\x5c\\x64\\x60\\xf4\\xd0\\xf9\\xd3\\xf0\\x43\\x1d\\x97\\xf0\\x76\\x3b\\x0e\\xec\\xd4\\xec\\x1b\\x58\\xeb\\x22\\xb5\\x47\\x8a\\x15\\x8e\\x2e\\x73\\xbb\\x52\\xfd\\x76\\xf2\\x13\\x28\\x7f\\xf7\\xbe\\xb7\\x48\\xe8\\x3e\\x75\\x15\\x4d\\xa2\\xa7\\xf5\\xb7\\x47\\x31\\x5b\\xc3\\xfe\\xf2\\xe6\\x0f\\xb5\\xd8\\x53\\x26\\x32\\xd4\\x63\\x81\\x71\\xc4\\xd8\\x2c\\x99\\x61\\x8d\\x4e\\xe0\\x6d\\xe0\\x91\\x42\\x4f\\x3e\\xaa\\x91\\x7d\\xcf\\x0d\\xa8\\xd9\\x48\\x66\\x84\\x70\\xa6\\x59\\xab\\x1b\\x72\\x7d\\x26\\x6a\\xb8\\x61\\xae\\xd9\\x09\\x2b\\x9d\\x72\\xe0\\x40\\xfb\\x3e\\x92\\x8b\\x3d\\xa4\\x2f\\x54\\x83\\x0c\\xc2\\xca\\xbc\\x7e\\xae\\xd7\\x53\\x93\\xa5\\x76\\x41\\x06\\xdf\\xf3\\x4b\\xbe\\x75\\x7c\\xf5\\x29\\x95\\x82\\x61\\xa0\\x09\\xb9\\xe1\\xa0\\xf8\\xe9\\x83\\x6d\\x77\\xc8\\x19\\x70\\xc2\\x19\\x46\\x71\\xaf\\xb7\\x76\\xd4\\x87\\x14\\x54\\x3b\\xe1\\xc5\\x96\\x43\\x19\\xe8\\x55\\x2f\\x37\\x38\\x50\\x8b\\x3e\\xe8\\x37\\x36\\x4b\\xa7\\xf9\\xd2\\xd2\\x14\\xa5\\x94\\xa7\\x8e\\xf3\\xd2\\x7b\\x5f\\x7c\\x61\\xc6\\x38\\xc3\\xdb\\x7b\\x18\\x2f\\x87\\xa6\\xd7\\x0e\\x9c\\x70\\x2e\\xa1\\x24\\x1f\\xe1\\xa2\\xcf\\x7c\\xe8\\x66\\xc5\\xd7\\xb1\\xa7\\xc5\\x4a\\x8f\\xdd\\xb4\\xb9\\x91\\x10\\x34\\xe1\\x9a\\x73\\x34\\x2e\\xd1\\x50\\x0e\\x23\\x0d\\x64\\x15\\x3b\\x73\\xe7\\x8c\\xc5\\x9d\\x76\\xf8\\x32\\x4b\\x33\\xcc\\xcb\\x22\\xb3\\x9a\\x5b\\x80\\x0e\\x03\\xab\\x79\\x0f\\x34\\xe1\\x31\\x94\\x63\\xd9\\x27\\x36\\xac\\x67\\x05\\x3b\\x81\\x99\\x03\\x6a\\x03\\x1b\\x00\\x26\\x28\\xec\\x65\\x3c\\x7b\\x00\\x4c\\x84\\x91\\x07\\x11\\xda\\x7b\\x21\\x34\\xb4\\x70\\xf6\\x7b\\x50\\x8b\\x28\\x6f\\x1a\\x8e\\x81\\x65\\xc5\\xa9\\x70\\x84\\xbc\\xc2\\x66\\x88\\xb2\\xec\\x93\\x98\\xf5\\x27\\xbc\\xdf\\x71\\xd7\\x13\\x82\\xb9\\xb1\\x0a\\x55\\x25\\x03\\xca\\x8a\\x37\\x25\\xd7\\xf2\\x43\\xd4\\xb0\\xdb\\x96\\xe4\\xab\\x80\\x76\\x2f\\xd4\\xfa\\x18\\x77\\xb4\\x40\\x1f\\x88\\x74\\x8e\\x5c\\x06\\x26\\xff\\xce\\x78\\x6a\\x83\\xeb\\x69\\xb2\\xbc\\xee\\x24\\x9a\\xb5\\x83\\x9a\\x36\\x75\\xda\\xde\\x34\\x8d\\xc5\\x37\\x71\\x71\\xb0\\x7c\\x9d\\xd7\\x0a\\x64\\x95\\x18\\xc8\\x0b\\x4e\\x03\\xe9\\xcb\\x9a\\x36\\xfb\\x3a\\x70\\xcb\\x4f\\x5a\\x2c\\x99\\xe2\\x91\\x62\\x36\\xae\\xaa\\xa2\\x59\\xab\\xa2\\x2c\\x67\\xca\\x82\\xa6\\x04\\x30\\xa7\\xb0\\xe7\\x5a\\xab\\x07\\x79\\x46\\x9e\\xd3\\xa7\\x43\\x35\\x61\\x88\\xdb\\xfc\\x06\\x81\\xb8\\x42\\x4c\\xbb\\xcd\\x7a\\x2d\\x12\\x94\\x93\\x27\\x1f\\x14\\xd0\\xf5\\xcc\\xee\\xd3\\x06\\x24\\xf4\\x93\\x40\\x76\\x37\\x1b\\x7b\\x66\\x90\\x67\\x26\\xa7\\x96\\x08\\x63\\x63\\xb9\\x1e\\xcd\\x85\\x83\\xa3\\xbd\\x43\\xc8\\xed\\x5c\\x97\\x5d\\x24\\x5f\\x7e\\x79\\x4f\\x97\\x9d\\x56\\x5b\\xbe\\x69\\xd0\\xcd\\x6f\\xb9\\x36\\x80\\xdc\\x09\\x41\\xe0\\x54\\xc0\\x66\\x20\\xa8\\x41\\x0b\\x21\\x73\\xbc\\x21\\x01\\x4d\\xb3\\x55\\xbf\\x4f\\x6a\\xbf\\x5e\\xb7\\x56\\x56\\xfd\\xa7\\xe9\\xa1\\xe2\\xa4\\x60\\xba\\x64\\x25\\x8e\\x55\\xdd\\xfa\\x4a\\x0a\\xd3\\x40\\xcd\\x9f\\xef\\x94\\x79\\x5f\\x89\\x77\\x53\\x4e\\x98\\x20\\x21\\x02\\xca\\xd0\\x4f\\xb6\\x6a\\x60\\x79\\x26\\x9c\\x83\\x0f\\xe4\\x37\\x6e\\xda\\x47\\xd6\\xb4\\x3a\\x27\\xb3\\xdf\\xe9\\x4b\\xe3\\xfc\\x27\\x82\\xb5\\x24\\x02\\x13\\xeb\\x5c\\x72\\xfc\\xd1\\xc8\\x72\\x53\\x6b\\x37\\x7c\\x50\\xc7\\x4a\\x07\\x24\\x1b\\xcc\\x11\\x24\\xf2\\xcd\\x16\\xe8\\x98\\x36\\xb0\\x3e\\xe8\\x73\\x2e\\x41\\x5b\\xb8\\x0c\\xf1\\xf3\\x4c\\x44\\xc4\\xe5\\x80\\x73\\x78\\xf2\\xd1\\xf3\\xc8\\x78\\x71\\x99\\xff\\x69\\x7f\\xda\\x7d\\xad\\xf7\\x45\\x87\\x72\\xfe\\xa0\\xf3\\xfc\\x3e\\x70\\xef\\xf0\\xa7\\x0f\\xbf\\x3e\\x78\\xa7\\xf5\\xd5\\x3e\\xbd\\xb2\\x75\\x99\\x01\\x61\\x7e\\xd9\\x82\\xeb\\xd1\\xb7\\x48\\xea\\x15\\x01\\x92\\xd3\\x65\\x66\\xb9\\xa1\\x88\\x61\\x33\\x29\\xef\\xec\\x8c\\xde\\x38\\xdc\\xb9\\x85\\x06\\x57\\xf6\\x2c\\x47\\xee\\x0c\\x2b\\x46\\xde\\xaf\\x0e\\x3c\\x37\\xfb\\x44\\x2c\\x96\\x89\\x9a\\xfd\\xe9\\xbd\\x29\\xb8\\xb7\\x63\\x6a\\x64\\xd4\\xfd\\x38\\x66\\xcb\\xcd\\x14\\xef\\xaa\\xf7\\x74\\xe6\\xe0\\x83\\x6b\\xaa\\xc9\\xb7\\x1f\\x36\\x58\\x0f\\x7d\\x44\\x76\\x8d\\x97\\x9a\\x1f\\xa8\\xe5\\x8b\\x35\\xb3\\xaf\\x77\\x69\\xe7\\xe7\\xb9\\xaf\\xfe\\x15\\x09\\xdd\\x6b\\xc0\\x92\\x7e\\xfc\\x74\\x23\\xbf\\xa8\\x46\\x9e\\x3f\\x44\\xef\\xd6\\xc8\\xdf\\x07\\xed\\x55\\x94\\xae\\xb7\\x10\\x6c\\x8f\\xfa\\x2e\\x29\\x04\\xfd\\xe1\\x04\\xc2\\xd1\\xc1\\x3c\\xaa\\xcd\\x9a\\x0d\\x69\\xa9\\xff\\x15\\xde\\x24\\xad\\xb0\\x32\\x8a\\x72\\xc9\\x9d\\xa2\\x4a\\x07\\x90\\xd4\\xc7\\x9d\\x08\\xfc\\x17\\x67\\x79\\xf2\\x9c\\x9d\\x9f\\xea\\x79\\x01\\x99\\xba\\x8d\\x5f\\x60\\x93\\x3b\\x36\\x65\\x0a\\x1c\\x03\\x36\\x10\\x0d\\x63\\x90\\x2d\\xf1\\x96\\xf0\\xde\\xfb\\x2f\\xec\\xe6\\x4f\\xf3\\xc4\\xd3\\xae\\xdd\\xc9\\x4c\\x77\\x17\\xaf\\x1d\\x2d\\x07\\xbf\\x84\\xec\\xe6\\xcf\\x65\\xde\\xec\\x41\\x03\\xfd\\xda\\x5e\\x82\\x78\\xc3\\x55\\x82\\xf4\\xe5\\x63\\x12\\x1f\\x6d\\x37\\x6e\\x9b\\x1c\\xbd\\x1d\\xc5\\xee\\xcb\\xc9\\x54\\x9a\\x2b\\x6b\\xe4\\xc0\\x19\\x54\\xbb\\x30\\x9d\\x29\\x75\\x88\\x61\\x31\\xea\\xd4\\xbb\\xea\\x50\\x73\\x4a\\xc6\\xa5\\xf6\\xb7\\x98\\xae\\x2e\\x26\\x1a\\x2d\\xb2\\x1f\\x1e\\xef\\x77\\xc9\\xd8\\x3e\\x1b\\x69\\xee\\x44\\xd1\\x90\\x1f\\xb4\\xc9\\xdb\\x92\\x56\\x47\\x3e\\x23\\xab\\xec\\x04\\x56\\x68\\x7e\\x11\\x3e\\x81\\x03\\xe1\\x3f\\x5b\\xfd\\x94\\x03\\xbf\\x16\\xd0\\x1a\\xfc\\x27\\xea\\x8b\\xcb\\x75\\x58\\x20\\x62\\x92\\xb5\\xac\\xe6\\x94\\xe5\\x23\\x46\\xaf\\x8d\\x0b\\xae\\xb7\\xcc\\x77\\x30\\x97\\x62\\x79\\x04\\xf5\\xe9\\x6c\\x4d\\xac\\xe8\\x41\\xe4\\x5e\\x5e\\x4b\\xf3\\xee\\x1b\\x3a\\x2e\\xd6\\xbb\\x28\\x67\\x75\\x93\\x78\\xca\\x0c\\xa4\\x74\\x95\\x78\\x2e\\xc9\\xd4\\x15\\x33\\xce\\x4e\\xfa\\xa1\\x07\\xca\\x4b\\x77\\x93\\x93\\x9a\\xf1\\xbc\\xe7\\x7f\\x07\\xaf\\x7c\\x67\\x7a\\x68\\x7f\\x46\\x02\\xeb\\x87\\xb0\\x4a\\x25\\x7c\\x76\\x95\\xf9\\x0b\\x1d\\xf3\\xe8\\x57\\xc9\\x78\\xf0\\xad\\xbc\\xd0\\xd5\\x8e\\x58\\xd9\\xe1\\x11\\x36\\x1b\\xde\\x99\\x96\\x93\\x6f\\x6f\\xb1\\x6d\\x5b\\x82\\x7f\\x02\\xd8\\x9c\\x81\\xd8\\x9f\\x9a\\xd0\\xf9\\x6e\\x08\\xbf\\x1c\\x26\\xd0\\x4d\\x07\\x8f\\xbd\\x17\\xa5\\xa3\\x80\\x4c\\x1e\\x68\\xd7\\xcc\\xb7\\xe9\\xa1\\x7d\\x1f\\xf0\\xe5\\x07\\xde\\x37\\xd1\\xb4\\x61\\x55\\x67\\xbd\\x57\\x25\\xa1\\x65\\x6b\\x9b\\xfe\\x72\\x94\\xae\\x92\\xcf\\x35\\x92\\xdf\\xe6\\x2f\\xc0\\x61\\x23\\xeb\\x15\\x02\\x23\\x19\\xb1\\x85\\x6d\\x4a\\xe3\\x8e\\x86\\x32\\x4d\\xbb\\x4a\\xd2\\x3d\\xc2\\x9a\\x45\\x7d\\x2e\\x07\\xed\\xaf\\x13\\x5f\\xcf\\x94\\xbc\\x77\\x8c\\x4c\\xa3\\x8a\\x3e\\xba\\x38\\xcb\\x4d\\x0e\\x1d\\x95\\xbd\\x82\\xb1\\xe4\\x39\\x85\\x46\\xfd\\x57\\x93\\x40\\x2a\\xa4\\xf1\\x0c\\x0b\\x66\\x19\\x23\\xcb\\xac\\x73\\xe5\\xa5\\xce\\x4b\\x20\\xbf\\xfe\\xa8\\x86\\x3f\\xbe\\xf0\\x4d\\x38\\x85\\x5d\\x40\\x58\\xe2\\xe4\\xb7\\xc7\\xdd\\x14\\x1f\\x85\\x37\\x85\\x7b\\x40\\x74\\x02\\x21\\x2d\\x1a\\xa6\\x89\\x1f\\xae\\x58\\xf6\\x0a\\xe1\\xc3\\x5a\\x47\\xc1\\x6d\\x8d\\x10\\xc9\\xb8\\xc4\\x74\\x17\\x13\\xa7\\xdd\\xd1\\xa2\\x25\\x2a\\x92\\x2a\\x78\\x3d\\x60\\xaa\\x8e\\x58\\x0e\\xf6\\x82\\x59\\xeb\\x49\\xdd\\x36\\xb0\\x57\\x43\\x91\\xf1\\x4c\\xc4\\xd5\\xb3\\x3c\\x2b\\xa5\\x50\\x74\\x3d\\xab\\x37\\x1a\\x7e\\x83\\x7e\\x0a\\x76\\x4a\\x3f\\xf9\\xe0\\xed\\x13\\xb8\\x27\\x10\\x4e\\x99\\xaf\\x69\\x85\\xf0\\xaa\\x0e\\xec\\x51\\x7a\\xd9\\x2f\\x78\\x04\\x3d\\xad\\x87\\x41\\x3d\\x51\\x8c\\x7a\\x13\\xc8\\x4d\\xf0\\xf6\\xb7\\xf9\\xbf\\xae\\x94\\xf0\\xb7\\x14\\x8f\\x13\\x8c\\x64\\x22\\x69\\x33\\xcb\\x47\\x2c\\x3d\\xe7\\x5b\\x09\\x70\\x85\\x2a\\x35\\xa2\\x78\\xb6\\x90\\xe6\\xdc\\x36\\x9b\\x8e\\x24\\x62\\x66\\x7f\\x5d\\x37\\xef\\xec\\x23\\x2e\\x82\\x4a\\x78\\x0a\\xbe\\x3d\\x72\\x4d\\x6d\\x2e\\xee\\xe1\\xd2\\x50\\x79\\x82\\x50\\x27\\xa2\\xcc\\xbe\\x46\\x5f\\x22\\x32\\x2c\\xf9\\xf7\\x44\\x06\\xe6\\x9b\\xda\\xb9\\x82\\xae\\x91\\x21\\xea\\xf5\\xc6\\x88\\x03\\x9a\\xae\\x04\\x42\\x56\\x5d\\xc4\\xc1\\x0b\\x94\\x13\\x55\\x1d\\xa5\\x4c\\x8a\\xa1\\x3a\\x87\\x7f\\xba\\x04\\xa9\\xf1\\xb3\\x55\\x26\\x51\\x62\\x84\\x08\\x7b\\x25\\x4a\\xea\\x1e\\x2d\\x6a\\x6e\\xca\\x4d\\xc6\\x41\\xe8\\x71\\x60\\x1e\\xc3\\xf7\\xda\\x8f\\x10\\xc5\\x7d\\x3c\\xe5\\xce\\xbc\\x0c\\xad\\xae\\x90\\x86\\x1b\\x4b\\xc9\\x79\\x19\\x59\\x3b\\x7c\\xf9\\xad\\x47\\x44\\x38\\x2a\\xbf\\xe9\\x15\\x11\\xae\\x87\\xfc\\xe6\\x58\\xe9\\x47\\x49\\xa8\\x4f\\x09\\x10\\x7d\\xbd\\x5c\\xb5\\x70\\xd4\\xd4\\xab\\xc3\\xaf\\x44\\xfd\\x3e\\x22\\xa6\\x5d\\x17\\xa7\\x6e\\xda\\x19\\x93\\x7c\\xb0\\x54\\xe0\\xc5\\x0e\\x0e\\x15\\x0f\\x48\\xa1\\x4c\\xba\\xf1\\x7b\\x5b\\x84\\x88\\xed\\xb9\\x17\\xb3\\x90\\xa1\\xa3\\x9d\\x92\\xdd\\x11\\xc2\\xba\\xcb\\x77\\x30\\xef\\x5c\\x8f\\x07\\x55\\xb5\\xa6\\xeb\\x37\\x99\\x54\\x2b\\xca\\xa8\\x4b\\x47\\xcf\\xcd\\xff\\x9e\\x38\\x0c\\xc3\\x12\\x19\\x9d\\x55\\x03\\xb3\\xeb\\x61\\x60\\xfc\\xe9\\xeb\\x40\\xd8\\x92\\xc7\\xc5\\xa0\\x50\\x0b\\x78\\x28\\xa7\\x3a\\x5c\\xcf\\xf8\\xc2\\x6d\\xcb\\x0f\\x12\\xf2\\x0b\\xf4\\x83\\x2a\\x2c\\x0d\\x92\\x1e\\x92\\x1b\\x2f\\x7f\\xbc\\x19\\xd3\\x7d\\xcf\\xeb\\x8a\\xf1\\x38\\x62\\x69\\x44\\x8f\\x13\\xc5\\x9b\\xa0\\x54\\xbd\\x03\\x23\\x2d\\x62\\x66\\x8c\\x7e\\x32\\x1a\\x1d\\x20\\x5f\\x92\\x01\\x0d\\xcc\\x78\\x09\\x95\\x50\\xa3\\x7a\\x73\\x3b\\xf7\\x97\\x52\\xc5\\xb3\\x59\\xd2\\x31\\x9f\\x04\\x2a\\xc1\\x40\\x47\\x53\\xe6\\x73\\x37\\xbe\\xb5\\xbf\\xcf\\x62\\xc4\\x83\\x9e\\xd1\\xd1\\x45\\xf7\\xc3\\xb9\\x34\\x57\\xa8\\x3a\\xea\\x74\\x26\\x5f\\x8f\\x52\\xdf\\xfb\\xaa\\xf7\\x35\\xfb\\x20\\xc8\\x36\\x82\\x09\\xd6\\xb4\\xd3\\x7e\\xa6\\xee\\x0f\\x72\\x13\\x59\\x68\\x2f\\x36\\x9a\\x8a\\xee\\x62\\x4a\\x53\\xa9\\x2d\\xd1\\x04\\xe7\\x86\\x48\\xb3\\xb9\\x20\\x93\\xb0\\x09\\x22\\xc5\\x0e\\xf6\\xa6\\x26\\x7a\\x8c\\xa8\\x24\\x6b\\x1f\\x0d\\xcb\\x76\\x54\\x71\\x83\\x35\\x1e\\x0d\\x03\\x68\\x71\\xf0\\xbc\\x58\\x7d\\x4b\\x81\\x64\\xaa\\x0f\\x98\\x2f\\xae\\x86\\x95\\x13\\x65\\xb6\\xcb\\xed\\xb1\\x58\\x55\\x81\\x71\\xc2\\x46\\x13\\x7b\\xdc\\xe5\\x6c\\xc3\\xa2\\x82\\x99\\x58\\x62\\x30\\x70\\x04\\x55\\xa9\\x3e\\x83\\xd6\\x85\\x0b\\x95\\xbd\\x1e\\x1a\\xda\\x6d\\x3c\\x68\\x12\\x72\\x23\\x51\\xc9\\x5d\\xa4\\xb6\\x55\\xb1\\xfd\\xd8\\x32\\x53\\x28\\xbc\\x21\\x9a\\x98\\x01\\xdd\\x40\\xac\\x62\\x89\\x5f\\x1c\\x15\\x38\\x64\\xe3\\x9c\\x13\\x5b\\x11\\x67\\x8d\\x6d\\xda\\x87\\xa6\\x9b\\xff\\xb1\\x29\\x1e\\x04\\x65\\x3c\\xfe\\xbe\\x1b\\xbc\\xdd\\xce\\xc7\\x0b\\xde\\xeb\\xaa\\x64\\x9f\\xe6\\xe7\\x7b\\xc7\\xf7\\x0c\\x20\\x77\\xe4\\x87\\x11\\xba\\xf3\\x31\\x66\\x1b\\xdc\\x3f\\xec\\x14\\x76\\xf1\\xc4\\xf3\\xdf\\x94\\xed\\x2b\\x51\\x1c\\x1c\\x05\\x6b\\x04\\xe0\\xa6\\xf9\\x1a\\x5a\\x1f\\x65\\x76\\x04\\x61\\x32\\x4f\\x7b\\x4e\\xfb\\x99\\x2c\\xa0\\x3c\\xd6\\xb6\\x27\\x30\\x8b\\x93\\x88\\xd4\\x37\\x89\\xff\\x30\\x42\\xb6\\x0d\\xd3\\x4a\\xfa\\x7a\\x8a\\xc0\\x23\\xeb\\x5b\\x50\\xe0\\x02\\x74\\xae\\xc7\\xaf\\x11\\xa2\\xa9\\xb8\\xeb\\xd2\\x19\\x21\\x0b\\x52\\x77\\x13\\x3d\\x35\\xdd\\xa1\\xd6\\xe8\\x7e\\x79\\x5c\\x75\\xf2\\x81\\xf1\\x3b\\xad\\xac\\xce\\xd3\\xef\\x1e\\x03\\x4d\\xb5\\x63\\x0b\\xfb\\x4d\\x8e\\xc1\\xe5\\x2c\\x39\\x97\\x41\\xdc\\x06\\x06\\xf5\\x5b\\xce\\xd6\\x85\\x4f\\xac\\x2e\\x88\\x12\\x19\\xd7\\xfa\\xb8\\x2b\\x39\\xb9\\x92\\x9c\\x25\\xf1\\xdc\\x90\\xcb\\x6e\\xe3\\x4e\\x53\\xc2\\xdd\\x75\\x21\\x1c\\xc1\\x1d\\xd5\\x04\\x78\\x3e\\x94\\xc1\\x24\\xb2\\x0f\\x5e\\x14\\x05\\x15\\x90\\x0d\\xc2\\x84\\x91\\x8b\\xa4\\x92\\x4b\\x41\\x5c\\x4d\\xe3\\x4e\\x6a\\x35\\xea\\x79\\xd4\\x4e\\x55\\xe9\\x72\\x4c\\xfe\\x53\\xec\\x2b\\xde\\xf0\\x42\\x65\\xc9\\x09\\xea\\x55\\x99\\x6e\\x04\\xf9\\x7c\\x77\\x3e\\x6c\\xc5\\x68\\x53\\xd0\\x6f\\xce\\xe2\\x6d\\x63\\xb2\\xd7\\x0d\\x11\\xd5\\xb7\\x47\\xe8\\x45\\xe3\\xe5\\x89\\x2f\\x4f\\xc1\\xbb\\x0b\\x6f\\x0d\\x1b\\x2f\\x5b\\x03\\x47\\x4f\\xc7\\xdf\\x18\\xe4\\x97\\xd8\\x7b\\x8b\\x6f\\x0e\\xed\\x9c\\x5f\\xe2\\x20\\xb3\\xfd\\x1c\\xca\\xd7\\x09\\xf0\\xca\\x16\\x86\\x0b\\x5c\\x19\\x34\\xe4\\x7c\\x40\\x35\\xf5\\x0f\\xc7\\xeb\\xc5\\x23\\x92\\x70\\xc7\\xa8\\x42\\xd7\\xc3\\xe6\\xaa\\xc9\\xe8\\x50\\xaa\\x91\\x57\\x26\\x34\\x4f\\xb7\\xed\\x21\\xaa\\xfa\\xab\\xc4\\xad\\x56\\x03\\x61\\x13\\xb0\\x2e\\x6f\\xf3\\x1c\\x83\\xed\\xd3\\x40\\xc5\\x47\\x79\\xa2\\xc9\\x8d\\x75\\x23\\xb8\\xc0\\x8c\\x2d\\x70\\x66\\xc5\\x73\\x57\\x06\\x66\\x2e\\x17\\xd8\\x14\\x68\\x65\\xa2\\xc6\\xc8\\xa7\\xf3\\xa4\\x71\\xb8\\xa4\\x86\\xa6\\x1a\\x5d\\x42\\xcc\\x04\\x6a\\x70\\x09\\xa8\\x09\\x95\\x44\\x3d\\x28\\x00\\xc0\\x98\\xba\\x51\\xa4\\xaa\\x09\\xd6\\x4c\\x8c\\x4b\\x2d\\xc5\\x58\\x6d\\x18\\x76\\xf1\\x6f\\x9e\\x07\\x7b\\x34\\x49\\x70\\xf4\\x18\\xf1\\x4e\\x5a\\x9e\\x55\\xfd\\xdd\\xa3\\xfe\\xb9\\x56\\xa4\\x02\\x36\\x61\\xa8\\x05\\x7d\\x42\\x95\\xca\\x32\\x10\\x82\\x91\\xfa\\xa2\\x4e\\xd6\\xe5\\x2d\\x78\\x68\\x75\\x2b\\x2a\\x3d\\xa9\\x69\\xca\\x61\\xfc\\x63\\x67\\xa0\\x3a\\x90\\x99\\x2f\\x31\\x52\\x9b\\x03\\xea\\xd0\\x25\\xc7\\xf4\\x90\\xb4\\x00\\x87\\xff\\x69\\xb7\\x59\\x73\\x96\\x45\\xb3\\x82\\x2d\\xb1\\x6a\\xdf\\xde\\x85\\xa0\\xef\\x9a\\xbd\\x2e\\xa8\\x10\\xad\\xed\\x80\\x2c\\xa8\\xbb\\xd4\\x4b\\x9e\\xab\\xd6\\x92\\xbf\\x5f\\xf6\\x48\\x36\\x5a\\x64\\xfa\\x7c\\x58\\x0f\\xe9\\x81\\xbb\\x77\\x34\\x97\\xde\\xfb\\x10\\x15\\x01\\x42\\x8b\\x11\\x8a\\xc6\\xbf\\x64\\x98\\x03\\xc4\\x7b\\x39\\xbb\\xf4\\x26\\x0a\\xa7\\x59\\xb9\\x63\\x43\\xf0\\xda\\x2f\\x98\\xe2\\x32\\xc0\\x49\\x11\\x45\\x2f\\x65\\x5e\\xd8\\x8e\\xef\\x3e\\x83\\xbd\\x6d\\x66\\xf2\\xbb\\x42\\x3c\\x8c\\xe0\\x53\\x68\\x9a\\x82\\xf6\\xe4\\x8a\\x72\\x15\\x24\\xb9\\x99\\x76\\xcd\\xdd\\xe4\\xe3\\x7d\\xcd\\x06\\xfa\\xb4\\x67\\xe9\\xa9\\x77\\xfb\\x50\\x7d\\x62\\x5d\\xbf\\xf6\\x7a\\x8d\\xa9\\x57\\xef\\x24\\x9e\\xca\\xf7\\xa4\\xa5\\x32\\x59\\x11\\x27\\x96\\x96\\x54\\xb5\\x5b\\x3d\\xe5\\x76\\x4f\\xbb\\xc2\\xbb\\x35\\xa6\\x5c\\xe6\\x2a\\x77\\x8a\\x3d\\xdc\\xec\\xaa\\x35\\x57\\xa8\\x91\\xab\\xde\\x52\\xd1\\xef\\xaa\\xa8\\x97\\x57\\xc4\\x98\\x7e\\x65\\x55\\xbf\\x43\\x3c\\xa6\\xdb\\xaa\\x5a\\x5c\\x79\\xd0\\xc1\\xbe\\x19\\xe6\\xb5\\xe4\\xe4\\xd1\\x2a\\x9a\\x78\\xaa\\xaa\\x29\\x7d\\x21\\x0e\\x6e\\x24\\x0e\\x04\\xe3\\x72\\x1a\\x8a\\x0c\\x4e\\xf5\\xc7\\x97\\x62\\x9c\\x20\\x92\\xd4\\x08\\xd4\\x22\\xa0\\x28\\x66\\x26\\x29\\x42\\x05\\x37\\x1e\\xd5\\xd9\\x43\\xcd\\xe6\\x5b\\x88\\xde\\x6d\\x8e\\x94\\xb6\\x19\\x68\\x5b\\x95\\x70\\xff\\x4a\\x8b\\x03\\xdd\\x69\\xa8\\x5d\\x68\\x5c\\xba\\xc9\\xd7\\x8c\\xf9\\x41\\xa5\\xd8\\xc4\\x3e\\x05\\x9c\\x97\\x83\\xfc\\x33\\xb3\\xd6\\xe0\\x09\\x61\\xe2\\xf9\\xfe\\xfb\\x20\\x05\\xa8\\x99\\x39\\x0f\\xad\\x07\\x18\\xec\\xd4\\x19\\xc4\\x0c\\xfb\\xc9\\xdf\\x42\\x25\\xfb\\x4d\\xa2\\x70\\x86\\xa2\\x35\\xb8\\xbc\\x18\\xb5\\xb5\\x74\\x5e\\x6c\\xf7\\x3f\\x68\\xf0\\x6c\\xfe\\xcc\\xd3\\xf6\\x00\\xc9\\x2f\\x24\\x03\\x9e\\x69\\xe8\\x5c\\x27\\x48\\x49\\xd6\\x2b\\x57\\x2e\\xea\\xd7\\xd6\\x1a\\xd3\\x27\\xd2\\x7e\\x11\\x0c\\x59\\xaf\\x86\\x14\\xd3\\x7e\\x0b\\xf5\\x57\\x6e\\x1e\\xdb\\xf8\\xc3\\x3c\\xdc\\xa0\\xe0\\x2c\\x30\\x4e\\xf1\\x80\\x64\\x08\\x2c\\x3e\\x80\\xbd\\xf0\\x52\\x39\\xbe\\x87\\x70\\x3e\\x31\\x96\\x0f\\x0b\\xd3\\xa3\\xca\\x3f\\x64\\x64\\x43\\x96\\xc5\\x06\\xc7\\x89\\x71\\x69\\x0d\\xc2\\xd0\\xf8\\x6a\\xaa\\xf0\\x07\\x86\\x3e\\x2a\\x1a\\x4c\\x4a\\xc3\\xf6\\xc0\\x95\\x8f\\x2c\\x9b\\xe6\\xb0\\x23\\x84\\x76\\x09\\x80\\x35\\x20\\xd4\\x80\\x86\\x09\\xd5\\xea\\xae\\x5e\\xe2\\x4b\\x80\\x6a\\xf4\\xfb\\xfb\\x8e\\x0f\\x67\\xea\\xbe\\x0c\\x96\\xb4\\x84\\x94\\x07\\xd1\\x96\\x95\\x69\\x17\\xc9\\xd9\\x7b\\x48\\xdc\\x2c\\x3f\\x54\\x72\\x84\\x1c\\xa6\\x07\\xe9\\x07\\x06\\x91\\x4d\\xe6\\x22\\xb6\\x86\\xe1\\x19\\xd1\\x42\\x25\\x1e\\x3a\\xf5\\xe7\\x3d\\x48\\x45\\xd1\\xa8\\xf1\\x79\\xcc\\x2b\\x9f\\xa5\\x48\\xf1\\xbc\\x7c\\x49\\xa5\\x68\\x1a\\x87\\xf1\\x41\\x52\\x5f\\x54\\x0f\\xdb\\x8a\\xc4\\x32\\x20\\xa8\\x27\\x44\\x97\\x40\\xf6\\xc9\\xc3\\xa4\\x4c\\xf0\\x05\\x82\\x05\\xf0\\x9c\\xab\\x95\\xc0\\x7d\\x3d\\xc0\\x41\\x56\\x53\\xb1\\x86\\x7d\\xf3\\xba\\x9e\\xd7\\xf0\\xb7\\xf0\\xde\\x73\\xfe\\xfe\\x8a\\xc2\\x65\\x57\\x75\\x2f\\x95\\x08\\xe8\\x30\\xec\\x4d\\x29\\xb0\\x84\\x35\\x71\\x41\\x37\\xbc\\x2d\\x7c\\x00\\x49\\x24\\xcb\\x3f\\x21\\x8e\\x9b\\xe1\\xe7\\xcd\\x79\\xa3\\x0d\\xee\\xd4\\xf2\\x96\\x4d\\x3a\\x51\\x08\\x64\\xb5\\x3e\\x95\\x55\\x68\\x72\\x25\\x67\\xbb\\xed\\x3e\\x15\\x36\\x97\\xbd\\xa2\\x94\\x3b\\x9f\\x3b\\xc3\\xfb\\x99\\x4f\\xce\\x82\\x2e\\x65\\xdb\\x4b\\x13\\x79\\xd3\\x98\\xb4\\xa4\\x36\\x5d\\x26\\x8d\\x16\\x0c\\x0d\\x51\\x7d\\x50\\x56\\x19\\xb3\\xed\\x09\\xf7\\xda\\x10\\x56\\x70\\x81\\x61\\x8b\\x59\\x9e\\x6e\\x7b\\xa2\\x05\\x81\\xdc\\xe7\\xa7\\x67\\x5f\\x74\\x5e\\x63\\x86\\x62\\xea\\xbb\\x0e\\x58\\xca\\x7b\\xf0\\x04\\xcd\\x0b\\xb3\\xa1\\x46\\xe1\\x06\\xd1\\x65\\xc6\\x67\\xdd\\x64\\xd8\\xc5\\x30\\xf2\\xba\\x61\\x45\\xfd\\x11\\x86\\xd9\\xbf\\x90\\x06\\x34\\x16\\xa0\\xa5\\x76\\x9c\\x02\\xbe\\xf2\\xc3\\x1b\\xf4\\x20\\x41\\xab\\x2b\\x59\\x8c\\x06\\x47\\x9a\\x4f\\xae\\xb5\\x8c\\xf7\\xaf\\x0f\\xba\\xac\\x1b\\x4f\\x3f\\x20\\x17\\xcc\\x77\\xae\\x50\\x95\\x77\\x33\\xdd\\xe0\\x21\\x3c\\x25\\x4e\\x2b\\x98\\x18\\x17\\x7a\\xc0\\x23\\xde\\x22\\xd5\\xfd\\x53\\x53\\xe5\\x5a\\x08\\xb0\\x0f\\x16\\xc1\\x73\\x0a\\x02\\x81\\x17\\xf8\\xd8\\x39\\x80\\x1b\\x98\\xa0\\xc8\\x95\\x34\\xb8\\xcc\\x8f\\x0f\\xe8\\xff\\x3e\\xd6\\x5b\\x16\\x1e\\xdf\\xc6\\x99\\xd1\\x0b\\x9e\\x93\\xa1\\xad\\xb4\\xee\\xed\\x6a\\x40\\x3d\\x58\\x74\\x7c\\xa6\\xcb\\xff\\x92\\x2f\\xf4\\x3a\\xbd\\xbc\\x6d\\xca\\x06\\x2e\\xf4\\xf2\\x46\\x11\\x70\\x82\\xbd\\x0f\\x71\\x6d\\xe1\\xa3\\x9b\\xe4\\x30\\xab\\x5a\\xa8\\x25\\x72\\x95\\x1f\\xd2\\x16\\xc7\\x82\\x54\\xac\\x3e\\xff\\x68\\xed\\x18\\x77\\x62\\xe2\\x16\\x86\\x77\\xa8\\x96\\x9b\\x4a\\xff\\x0d\\xed\\x40\\x08\\xc1\\x5f\\x37\\x37\\x94\\x6d\\x2a\\xb7\\x0f\\x8c\\x1b\\xef\\xe1\\x76\\x97\\xfa\\x30\\xc4\\x74\\xae\\x9e\\xf8\\x4e\\x2d\\x8c\\x33\\xcc\\x2a\\x48\\x9c\\x99\\x64\\xb2\\x16\\x5a\\xc4\\x6a\\x61\\x8a\\x6d\\xd5\\xb2\\x23\\xc3\\x3e\\x9d\\xa0\\x71\\x53\\x61\\x6e\\x7c\\xc6\\x5e\\xe1\\xff\\x64\\x86\\xd4\\xfc\\x9c\\x85\\x75\\x9e\\xef\\x8f\\x02\\xeb\\x02\\x6d\\xb3\\x2c\\x0a\\x80\\x19\\x75\\x88\\x66\\xee\\x88\\xe5\\x85\\x88\\xce\\x5d\\x51\\x26\\x4c\\x3a\\x56\\x3c\\xd7\\x49\\x12\\x7c\\x57\\x01\\x53\\x8e\\x6e\\xb4\\xda\\x13\\x6f\\x68\\x2f\\x59\\x03\\x80\\x1a\\x56\\x21\\x60\\xd4\\x9a\\xbb\\xb0\\x79\\xbe\\x54\\xfa\\x46\\x7e\\x1f\\xa9\\x3a\\x15\\x35\\xe5\\x30\\xb3\\xdf\\x3b\\xbe\\x98\\xa2\\x5d\\x6d\\x2b\\x76\\x97\\xad\\x63\\xda\\x68\\x90\\x1e\\x3b\\x94\\x69\\xaf\\xb5\\xd6\\xf5\\xf4\\xb7\\x67\\xbe\\x71\\x16\\xbe\\x1a\\x2b\\xde\\x53\\xed\\xad\\xe9\\x53\\xc1\\xe4\\x87\\xa3\\x7d\\xb3\\xab\\x7d\\x8d\\x39\\xdf\\xf7\\x2c\\xfd\\x1b\\xe2\\x0b\\xa5\\x5b\\xd2\\xba\\x39\\x17\\xa4\\xb9\\x58\\x5f\\x10\\x43\\xa8\\x4e\\x27\\xf5\\xeb\\x11\\x6c\\x89\\x2b\\xe7\\x2b\\xf6\\x3d\\x24\\x6e\\x66\\x1f\\x90\\x26\\x61\\xb9\\x60\\xfb\\x47\\x51\\x00\\x61\\xc6\\x4f\\xdf\\xf2\\xec\\xd3\\xb7\\x3d\\xcb\\xb7\\xdd\\x0e\\xc4\\xcf\\xe7\\xd2\\x52\\x2b\\x47\\x29\\xa5\\x79\\x15\\x90\\xfe\\x1b\\x65\\x4a\\xb3\\x44\\x9f\\xf6\\x0a\\x89\\x62\\xa5\\x63\\xaa\\x9d\\x62\\x74\\x87\\x9c\\x3c\\x23\\xb9\\x13\\xbf\\xf0\\xad\\x9c\\xbb\\xcc\\x3e\\xb9\\x08\\x2b\\x7b\\x6a\\x93\\x6b\\xb5\\x8c\\x4e\\x2b\\xc1\\x50\\xaa\\xb5\\x8e\\x34\\x1c\\x6f\\x1b\\xa9\\x78\\x89\\x8a\\x95\\x99\\x09\\x1b\\x17\\x87\\xdf\\xf5\\xe8\\xe1\\x70\\x1a\\xe6\\xf2\\xe3\\xe1\\x88\\x74\\xd6\\xf4\\x97\\x6e\\x84\\x24\\x98\\xd9\\x8c\\x88\\x67\\x41\\x4a\\x9b\\xe7\\xf9\\xfa\\xc0\\x62\\x73\\x39\\xf9\\xf8\\xa7\\x56\\xf6\\xc4\\x7e\\x02\\x1b\\x76\\x48\\xac\\x36\\x92\\xde\\x61\\xc2\\x27\\x35\\xca\\x1f\\xd1\\xb8\\xd7\\x8c\\x06\\x02\\xc1\\xd0\\xa9\\x61\\xe0\\x15\\x8e\\xd8\\x19\\xa8\\xd3\\xb1\\x83\\x1f\\x3a\\x2d\\x3d\\x9f\\xef\\x61\\xa7\\x68\\x72\\x86\\xff\\xd4\\x36\\x8d\\xde\\xf0\\xbc\\xfc\\xb3\\x7b\\x77\\x53\\x79\\xe1\\x5c\\x3f\\xc0\\xda\\x95\\xda\\xfb\\xc3\\xcb\\xf7\\x9a\\xb9\\x61\\x4f\\x3f\\x92\\x1a\\x12\\xec\\x73\\xf5\\xec\\x6a\\xa6\\xec\\x84\\x8a\\x64\\x9f\\xa0\\x57\\x72\\xb3\\xdc\\xa2\\xe2\\xaa\\x3f\\x23\\x9e\\xbd\\x3c\\x12\\x4b\\xe9\\x27\\x56\\x71\\x72\\x5f\\xa4\\xd3\\x2d\\x2b\\xb6\\xad\\xac\\x8b\\xaa\\xa7\\x8f\\x95\\x81\\xbc\\x99\\xc5\\x38\\x07\\x1a\\x9a\\xf3\\x50\\x9a\\x0f\\x23\\x17\\x90\\xbc\\xe5\\xaf\\x10\\x7c\\x66\\x9d\\x6b\\x7d\\x2c\\xab\\xdf\\xe4\\x26\\xaa\\x8d\\xa1\\xd6\\xd6\\x53\\x1b\\x71\\xe5\\x5f\\x69\\xb8\\xb2\\xd5\\x19\\x92\\xf8\\xaf\\x78\\x6c\\x4b\\xca\\xf6\\xf9\\x84\\xde\\xe8\\xcf\\x20\\xfd\\xed\\x21\\x1f\\x0c\\x4e\\xa9\\xcc\\x0c\\xfb\\x98\\x75\\xdb\\x8f\\x52\\xf3\\x5c\\x90\\x6f\\x0b\\xdf\\x99\\x3d\\x8f\\xd0\\x5e\\xfa\\xd1\\x5e\\xf1\\x7d\\x71\\x97\\xe5\\x66\\x9e\\x18\\x12\\x50\\x59\\xac\\x82\\x52\\x77\\xb2\\x76\\xe4\\x1c\\xa9\\xb9\\xb0\\x76\\x50\\x6d\\xf6\\x66\\xa7\\xfa\\x98\\xc1\\x19\\xe8\\x1a\\x81\\xd6\\xf6\\xfb\\x21\\xd1\\x5d\\x80\\x52\\x5d\\x42\\x80\\xfa\\x42\\x9d\\xe7\\xbf\\xe9\\x9b\\xd5\\x8e\\x87\\x55\\x09\\x82\\xaa\\x17\\x46\\x67\\x26\\x1a\\xd1\\x2d\\xf9\\x5b\\x01\\x3d\\xb7\\x43\\xd1\\xe1\\x96\\xbe\\x07\\x47\\x77\\x0d\\xe9\\x9e\\xd1\\xd1\\x08\\xb8\\x5f\\xc3\\xa7\\x31\\xb9\\x2b\\xa7\\x35\\xb0\\x60\\xe4\\x60\\x2f\\xa3\\xb7\\xd2\\x20\\x83\\x5b\\xc6\\x83\\x24\\x37\\xfa\\xd7\\xa6\\x9c\\x0e\\x26\\xd6\\xa3\\xc6\\x12\\xa6\\x5e\\xac\\x18\\x53\\xc2\\xb6\\x25\\x5e\\x5f\\xcf\\xc7\\x3c\\x15\\x03\\xa7\\x6f\\x13\\x95\\xe4\\x03\\xd0\\xe6\\x77\\x20\\x4f\\xb4\\x42\\xd0\\xb8\\x6e\\xa6\\x16\\xf3\\x04\\x98\\x72\\xea\\x18\\x16\\xec\\x92\\x27\\xa5\\x9a\\x16\\x2c\\xd8\\x7e\\x7e\\x74\\x6a\\x32\\x33\\x5b\\xc8\\x15\\x67\\xb3\\xf9\\x22\\x85\\xb8\\xd3\\x40\\x3a\\xa2\\x81\\xc3\\xe2\\x20\\x03\\x49\\x7c\\x03\\x42\\xb6\\x44\\x19\\xbf\\x01\\x32\\x78\\x4d\\x80\\x1f\\x56\\xb0\\x91\\xfd\\x44\\xef\\x36\\x6c\\xb7\\x26\\x1a\\x9a\\xfd\\x5f\\x9d\\x89\\x62\\x9c\\xcb\\xd4\\x4b\\xc8\\x44\\x7a\\x3b\\xbd\\x74\\xa6\\xd5\\x99\\x28\\xd4\\x26\\xb3\\x0d\\x40\\xa7\\x63\\x6e\\x9c\\xbb\\x51\\xfc\\x1c\\xcc\\x1f\\xf7\\x97\\xc5\\xf7\\x8d\\xbc\\x39\\xab\\xfe\\xb3\\x75\\xa3\\x43\\xd6\\x6c\\x73\\xbf\\x44\\xa3\\xee\\x17\\x95\\x6f\\xb5\\x0b\\xbe\\xf2\\x34\\x17\\x40\\x18\\xb9\\x12\\xfe\\xd7\\x43\\x21\\x87\\x17\\x16\\x04\\x24\\xcc\\xdf\\x4f\\xc8\\x35\\x79\\xe9\\x5b\\xfb\\x7b\\xdf\\x09\\x47\\x9c\\x0a\\xd1\\x37\\xbe\\x86\\x8b\\xef\\x02\\x5b\\x0e\\xda\\x1e\\x76\\x7a\\xd5\\xb1\\x4a\\x6e\\xcd\\xa5\\xbd\\xf8\\x1b\\xd2\\x0e\\xc6\\xdf\\xd5\\xb1\\x81\\xa5\\x1f\\xee\\xa5\\xde\\xce\\x21\\x45\\xde\\x3e\\x63\\x3b\\x9d\\x68\\x29\\xfe\\x8d\\x98\\x55\\xb5\\xae\\xc4\\x26\\x5c\\x3b\\xf9\\x9a\\xa0\\x8d\\x77\\x1b\\xd9\\x4c\\x6d\\x91\\xdb\\x17\\x0a\\x83\\x51\\xae\\xc8\\x6b\\x93\\x99\\x74\\x36\\x9f\\xe5\\xa3\\xb9\\x49\\x9c\\x64\\x67\\x07\\x32\\xb3\\x99\\x1c\\x55\\xaf\\x01\\xce\\x4b\\x17\\x56\\x19\\x53\\x85\\xc0\\xd1\\xaf\\xea\\x90\\x33\\x73\\xc0\\xd5\\xff\\x28\\xeb\\xcf\\x78\\x72\\x70\\x02\\xeb\\x87\\xb3\\xe7\\x46\\xf6\\x10\\x65\\x29\\xa3\\x67\\xa7\\xf9\\xee\\xa7\\xb0\\x39\\x53\\xca\\x10\\x67\\xec\\x00\\xa3\\xa4\\x57\\x1a\\x0d\\xce\\x6d\\xc3\\x08\\xac\\xe3\\xab\\x88\\xe1\\xff\\x49\\x28\\x75\\xe2\\x71\\xae\\xc7\\x5b\\x58\\x7a\\x5f\\x65\\xd8\\x8d\\xbc\\xca\\xd7\\xec\\x78\\x7f\\xbd\\x9b\\x34\\x6d\\x0c\\xc5\\x81\\x29\\x3d\\x4f\\x21\\x6d\\x4b\\xd2\\x0b\\x0b\\x89\\x6a\\xc6\\xf6\\x3c\\x9e\\x57\\x3e\\xf3\\x59\\x30\\x0e\\xe7\\xea\\x10\\x4a\\x3b\\xc5\\x63\\x0d\\x36\\x53\\xe7\\xa1\\x6e\\xcd\\xf2\\x3a\\xd7\\x01\\x68\\xe0\\xa4\\xd5\\x07\\x1f\\xce\\x11\\x96\\x36\\x7f\\x9c\\x32\\x50\\x93\\xcd\\x85\\xc4\\x8a\\x7f\\x98\\x8b\\x44\\x8b\\x74\\x65\\xef\\x2a\\x10\\xa1\\xc9\\xc8\\x82\\x15\\xe1\\xea\\x74\\x3d\\x31\\xfa\\xd6\\xf4\\x98\\x8f\\xfe\\xd9\\xf3\\x9f\\xfc\\xc4\\xd4\\xc4\\x4d\\x57\\xe2\\x6b\\xc9\\x9d\\xc0\\x7b\\xd1\\xfa\\x91\\x8b\\xf7\\x2f\\x72\\x6d\\xed\\x92\\x24\\xd5\\x76\\x77\\x29\\x2e\\x91\\x20\\x85\\x12\\x6d\\x0e\\x94\\xb7\\x4d\\x5e\\x5d\\xa1\\x07\\x02\\x94\\xfd\\x35\\x47\\x67\\x97\\xf5\\x4d\\xb5\\xac\\x6a\\xcb\\x17\\xba\\xda\\x40\\xef\\x90\\xfb\\xce\\x7d\\x13\\x1d\\x7f\\x57\\xb6\\x3f\\x9c\\xc8\\x05\\x9a\\x22\\x63\\x64\\x58\\xda\\x97\\xdf\\x07\\x9c\\xf4\\xe1\\x7a\\x3a\\x0a\\x48\\xd0\\x12\\x8c\\x70\\x99\\xf1\\xa5\\x03\\x07\\xf6\\x5f\\x03\\x5e\\x86\\x07\\x7b\\x7a\\x5a\\x1a\\x95\\xbe\\x25\\x2e\\x19\\x12\\x10\\x46\\xf9\\xd2\\xed\\x02\\x87\\x38\\x2d\\x9b\\x75\\x1b\\x97\\xec\\xa2\\x18\\xe0\\x6b\\xcc\\x30\\x88\\xd0\\xeb\\xae\\xee\\xa9\\x5f\\x88\\x15\\x62\\x17\\x0e\\xe4\\x1b\\xeb\\xc3\\xa2\\xa3\\xf2\\x13\\xf3\\xa3\\xa2\\xc3\\xd6\\xf5\\xf3\\x2f\\x2f\\xb2\\xd4\\xb8\\x66\\x1c\\x7e\\xd6\\xb2\\xd9\\xed\\x57\\xc8\\xb6\\xd6\\x8f\\xb4\\x86\\xfc\\x5a\\xb0\\x81\\x3f\\xd7\\xb5\\x79\\x69\\xfd\\x3f\\xe9\\x54\\x3e\\x26\\xd2\\xf5\\x03\\x03\\xa7\\x3f\\xdf\\xa3\\xfa\\x8e\\xda\\xd5\\x01\\x27\\x4e\\x78\\xf7\\xec\\x0e\\xd5\\x1b\\x38\\xee\\x00\\xc7\\x19\\x56\\xd7\\x34\\x35\\x6b\\xd1\\x35\\xd9\\x65\\xb9\\xc5\\xac\\x0c\\x50\\x2b\\x24\\xb3\\x12\\x46\\x32\\x2f\\xe1\\x40\\x63\\xd2\\x7c\\x85\\x3a\\x1c\\x33\\x38\\x7c\\x48\\x71\\xcf\\xb9\\xb0\\x68\\x50\\xc9\\x87\\x0e\\x6a\\x8a\\x02\\x4e\\x23\\xd9\\x78\\x78\\xaf\\xa7\\xca\\x00\\x2c\\x77\\x83\\x83\\xd5\\x55\\x4e\\xc4\\x71\\x1c\\x58\\x8b\\x05\\x8f\\x80\\x09\\x26\\x88\\xe0\\x19\\x3e\\xd2\\xc2\\xcd\\x08\\x68\\x7c\\xc5\\x0c\\xce\\x81\\x48\\xc3\\x8f\\xf2\\xa0\\x6f\\xde\\x76\\x82\\xb6\\x76\\x48\\x18\\xf2\\xb7\\xb7\\xfb\\xfd\\x41\\xa8\\xe4\\xcf\\x2f\\x93\\xab\\x4a\\xe1\\xc7\\x0a\\xdd\\x5d\\x9d\\x0f\\x2b\\x77\\x5d\\x1e\\x39\\x3d\\xe2\\x35\\x99\\xde\\xa2\\xdf\\xf9\\x5f\\x9f\\xa0\\xc6\\x29\\x9c\\x4a\\xa5\\xca\\xbf\\x39\\xac\\xe8\\x7d\\xf7\\xa1\\x82\\xad\\xc8\\xc8\\x91\\x83\\x84\\x18\\x71\\xd6\\x95\\x36\\x6f\\x96\\x3a\\xea\\xef\\x45\\xf7\\x9c\\x79\\xd7\\xb6\\x07\\x6a\\xd5\\x30\\x98\\xf9\\x99\\xab\\xdc\\x98\\x54\\xad\\x56\\x4b\\xcb\\x1f\\x4b\\x7b\\xb8\\xa0\\xd6\\x63\\xbd\\x5a\\x50\\x63\\x8c\\x3f\\x5c\\xaa\\xcd\\xcf\\x92\\x20\\xc3\\xb2\\x2c\\x61\\x2a\\x7b\\x7a\\x2a\\x57\\x3e\\xef\\x5b\\x4a\\xd1\\x9b\\xcd\\x05\\xe8\\x9d\\xe9\\x1f\\x76\\x84\\xbe\\x3a\\xad\\xd0\\x5c\\x5f\\x55\\x89\\x2a\\xab\\x7c\\x51\\x61\\x5a\\x4e\\x59\\xc9\\x46\\x9a\\xc3\\x49\\x0b\\x88\\x52\\x50\\x92\\xd7\\x00\\x8f\\x7f\\x74\\xc7\\x5e\\x3a\\x1c\\xe6\\x0b\\x0f\\xbb\\x19\\x0e\\xe3\\x4b\\xee\\xca\\xef\\xe6\\x2f\\x00\\x7f\\xe7\\x2d\\x7c\\x4f\\x8f\\xd8\\xd2\\xb2\\x29\\x68\\xbf\\x73\\x76\\xfc\\x3e\\xcd\\xae\\x60\\x25\\x51\\x4a\\x79\\xde\\xff\\x28\\x7f\\x30\\x28\\xe2\\x96\\x2c\\xbf\\x42\\x3d\\x7d\\x5f\\x2c\\x20\\x13\\x4c\\x8d\\x53\\x1c\\x4b\\x90\\x55\\x68\\x09\\x43\\x87\\x11\\x22\\x4c\\x04\\x7f\\x6d\\x06\\x48\\x63\\x42\\xf2\\x56\\x17\\x35\\x16\\x85\\x41\\x95\\x67\\xcd\\xa4\\x08\\x8b\\x31\\xc2\\x95\\x5f\\x40\\x31\\x90\\x43\\x6e\\xc4\\x8b\\x58\\xc0\\x8b\\x2c\\x76\\xe3\\xa5\\x68\\x49\\xc0\\x4b\\x35\\x2b\\x47\\x64\\xe8\\xef\\x32\\x85\\x9f\\x4c\\x8f\\xa4\\x18\\xb6\\xf6\\xc7\\x58\\xd8\\x68\\x3a\\xf9\\x5d\\x51\\xf0\\xfa\\x5a\\x69\\x46\\x79\\x75\\x32\\x66\\x33\\xca\\x6a\\xa9\\xe2\\x74\\x51\\x71\\xf0\\x3a\\xcf\\x40\\x79\\xad\\xb4\\x00\\x93\\xa6\\x97\\x94\\x20\\x3a\\x5b\\xf2\\xf6\\xd6\\x3c\\x36\\x6f\\xdd\\xda\\xb6\\x52\\x3c\\xc7\\x6f\\x69\\x88\\x20\\xe2\\x44\\x04\\x81\\x65\\x11\\x8b\\x48\\xb6\\xc6\\x6a\\xc3\\xa8\\x0e\\x58\\xc5\\xfd\\xa4\\x51\\x1a\\xf6\\x73\\x8d\\x11\\x60\\xba\\x8e\\x47\\x20\\x2c\\xe0\\xdb\\x2f\\x56\\x37\\xd8\\x98\\x53\\x33\\x17\\xe7\\x86\\x6c\\x30\\xbc\\x29\\xd7\\x12\\x44\\x38\\xcc\\xfd\\x76\\xb1\\x2c\\x86\\x44\\x76\\x0d\\x42\\x72\\x89\\x43\\x2b\\x66\\xe6\\x7e\\x05\\x61\\x7f\\xd7\\xd0\\x3f\\xa3\\x15\\xc8\\x89\\x58\\x3e\\x8b\\xf5\\x59\\x08\\x47\\x20\\x49\\x70\\x90\\x58\\x40\\x3e\\x3a\\x47\\x07\\x44\\x6e\\xff\\xf3\\xf9\\xca\\x9f\\x65\\xa3\\x32\\xc8\\x42\\x8c\\x0b\\x9d\\x28\\xb8\\x50\\x65\\xec\\x52\\x45\\x69\\x7c\\x09\\x95\\x29\\xa4\\xbb\\xdf\\x4d\\x5f\\xd8\\xd2\\x3a\\x5e\\x67\\x70\\x3c\\x30\\x9f\\x36\\x6a\\x91\\xed\\xa6\\xc5\\x08\\x83\\x23\\x0e\\x09\\xc0\\xb7\\xf7\\x61\\x19\\xcf\\xe5\\x56\\x00\\xed\\xd5\\x44\\xad\\x78\\x9a\\x26\\x62\\x58\\x07\\xa1\\xaa\\xee\\xee\\xca\\xaa\\x9e\\xee\\x07\\xe9\\xab\\x54\\x61\\xbd\\xd9\\x6c\\x4d\\xeb\\x39\\xab\\xa9\\x84\\x86\\x1f\\x97\\x95\\xcd\\x0e\\x0f\\xcf\\xce\\x86\\xe2\\x9b\\xc7\\xba\\xe1\\xe1\\xde\\xf0\\xf0\\x83\\x65\\xde\\x1d\\x3b\\xbc\\x50\\x9f\\xd2\\xbd\\x90\\x47\\x28\\xc8\\x7b\\xd7\\x22\\x18\\x12\\xe5\\x35\\x16\\xd2\\x6b\\x5b\\xd7\\x61\\x21\\xa3\\xb6\\xc5\\xec\\x3a\\xc0\\x35\\x9b\\x1e\\xee\\x28\\xd3\\x6f\\xa7\\x07\\x76\\x9e\\x84\\xd7\\x4e\\x76\\xcb\\xe9\\xce\\xc6\\xf3\\x1f\\xa9\\x3a\\x1b\\xce\\x8b\\x3d\\x00\\x22\\x28\\xa5\\x38\\x60\\x0f\\x76\\xb3\\x98\\xc3\\x68\\xd1\\x04\\x6d\\xf9\\x99\\xdf\\x39\\xe7\\x4c\\x40\\xd1\\x68\\xa6\\x3e\\x62\\x4f\\x65\\xeb\\x1d\\xa7\\x7c\\xa4\\xa0\\xd0\\x74\\xcf\\xf2\\x4a\\xca\\xa1\\x95\\xff\\x6a\\xde\\x5a\\xdb\\xd4\\xd4\\x38\\x42\\x0a\\x3c\\xb0\\x5a\\xb1\\x86\\x5c\\xe5\\x17\\xb1\\xec\\x12\\xcb\\x5a\\x30\\x7a\\x7c\\x56\\xe2\\xc1\\xee\\xf9\\xb7\\x87\\xbd\\x7b\\xc5\\xf2\\xf2\\xa6\\xe0\\x80\\x59\\xd2\\x29\\xbb\\xe9\\x5f\\x3e\\xdf\\xe1\\x46\\x85\\x05\\x9c\\x25\\x56\\x2b\\x47\\x5d\\x89\\x6a\\xdf\\x70\\xdb\\x39\\x20\\xcb\\xf5\\x5b\\x3f\\xf7\\x02\\xc2\\x6d\\x0b\\x23\\xa5\\x3d\\x3d\\xe2\\x6c\\xed\\xb8\\xee\\x48\\x67\\x5b\\xdb\\x89\\x8e\\x41\\xa1\\x77\\xb3\\x7f\\xf6\\xe9\\xfc\\xa2\\x75\\x37\\x75\\x4c\\x64\\xd3\\x56\\x53\\x6e\\xcb\\x7f\\xc4\\x5a\\xc9\\xb2\\xfc\\x9c\\x1a\\x30\\xaf\\x3c\\xc5\\xc6\\x54\\x96\\x89\\xd4\\xdd\\x6c\\x6a\\x7d\\xcf\\x99\\x05\\x8d\\xa3\\x35\\xe7\\x96\\xe8\\xd4\\xbb\\x02\\xe3\\x1c\\x37\\x27\\xb7\\x92\\x1b\\x64\\xe9\\xab\\x1d\\x41\\xf5\\xc3\\xa2\\xd0\\x36\\xb7\\x0b\\x7b\\x38\\xae\\xe0\\x79\\x09\\x28\\xf9\\x7b\\x91\\x84\\x3e\\x49\\xf0\\xe0\\x8a\\x43\\x9a\\x57\\x13\\xee\\x79\\xf5\\x1e\\xcd\\xef\\x13\\xba\\xef\\x6d\\xd2\\xee\\x88\\x4c\\x6d\\xff\\x7f\\x46\\xfe\\xf6\\xfc\\x8c\\xd7\\x34\\xdd\\xd4\\x4a\\x5b\\x2f\\x05\\xde\\xe3\\x68\\x1c\\x11\\x18\\xa3\\x66\\x25\\x69\\xb0\\x4f\\x1b\\xed\\xbc\\xfd\\x70\\xc1\\x39\\xaf\\x86\\x84\\x2d\\xa7\\x0a\\x62\\x02\\x71\\x4c\\xd0\\xe1\\xc0\\x65\\x9a\\xfc\\xd4\\x40\\x9c\\xba\\x3b\\x32\\x66\\x63\\x6f\\x50\\xe0\\xbd\\x81\\x92\\x3c\\x69\\x93\\xf4\\x70\\x7c\\x74\\xf9\\xca\\x6d\\xe4\\x46\\xba\\xf3\\x8a\\xe9\\xf0\\x96\\x02\\x79\\x65\\x45\\xf4\\x86\\x65\\x8f\\x29\\x2b\\xbb\\xbb\\xab\\xf8\\x6b\\x8c\\x2b\\xb0\\x98\\xad\\x14\\xd9\\x3a\\xa4\\xc7\\x2c\\xf8\\x50\\x01\\x62\\x48\\xbb\\xf7\\x62\\x73\\x85\\xb3\\xfe\\xa8\\x53\\x1d\\x72\\x47\\x5a\\x9c\\x19\\x1a\\x1d\\xbe\\xe2\\x36\\xb1\\xeb\\x6d\\xd6\\xae\\xe8\\xc8\\x20\\x2a\\x28\\x28\\x9c\\x3f\\x76\\x41\\x8a\\xd0\\x17\\x43\\x02\\x76\\x05\\x44\\xbc\\xb2\\x27\\x3a\\x24\\x26\\x30\\x28\\x28\\xd0\\x74\\x58\\xb6\\x6a\\xb9\\x84\\x82\\xda\\xea\\xe6\\x7f\\x07\\xde\\x1b\\x18\\x4a\\x41\\xbf\\x33\\x0f\\x4b\\x65\\x91\\xa3\\xce\\x7b\\x14\\x19\\x0d\\xbf\\x1d\\xed\\x0a\\x90\\x45\\xae\\xcf\\x8f\\x5e\\x21\\x0b\\x0c\\x0c\\x50\\x07\\x04\\x05\\x85\\x6a\\xe0\\x51\\x35\\xe5\\xf4\\x5b\\x23\\x75\\xb3\\x23\\xd1\\x3e\\xd6\\xfe\\xf3\\x13\\x3a\\x8a\\x0a\\x8b\\x0c\\xa2\\xca\\x63\\x02\\x23\\x63\\x4c\\x79\\x81\\xcf\\x47\\x54\\xb1\\x36\\xfa\\xfe\\xb2\\x1e\\xed\\x6d\\x5b\\xa9\\x38\\xde\\x68\\xe1\\x0d\\x52\\x8f\\x17\\x6c\\x26\\x2e\\x78\\x35\\x24\\x3c\\x28\\xdb\\xe9\\x01\\x31\\x01\\x81\\x83\\x81\\x41\\x38\\xfa\\x83\\xbd\\xfb\\x9f\\x55\\xaf\\xbc\\x00\\x13\\xfd\\x03\\x81\\x7f\\x29\\xd1\\x4f\\x78\\x73\\x19\\x64\\x4b\\xf6\\xcb\\xbe\\x98\\x5e\\x2b\\x18\\x6d\\xeb\\x9f\\x17\\xd1\\x01\\x63\\x14\\x1a\\x6a\\x52\\x06\\x92\\x1d\\xa3\\x6c\\x58\\xc4\\x36\\xd9\\x18\\x05\\xa5\\x53\\x64\\xe0\\x33\\x74\\x14\\x15\\x65\\x11\\xd4\\x38\\x5e\\xa9\\xd6\\x65\\xfe\\x41\\xbf\\x82\\x57\\xd3\\xd5\\xf2\\x6a\\x75\\x1a\\x5f\\xaa\\x62\\xa2\\x52\\x22\\x2d\\x82\\x25\\x32\\x45\\x7e\\x53\\x36\\x26\\x6b\\x20\\x54\\x68\\x28\\x4a\\xfa\\xb0\\xa9\\x4e\\x61\\x06\\xcb\\x8d\\x98\\xc6\\x90\\x0f\\x36\\x65\\x47\\x9c\\x25\\xc1\\x12\\xd7\\x91\\x60\\x93\\xcc\\x4b\\x88\\x64\\xd6\\xde\\x92\\x40\\x04\\x92\\xa0\\x8f\\xd5\\xf3\\xec\\x38\\x7d\\x8f\\xa0\\xb4\\xe8\\xcd\\x4a\\xc8\\x15\\x9a\\xa3\\x96\\x84\\xb9\\x54\\x1a\\x75\\xc7\\xc0\\xc5\\x7e\\x23\\xbe\\x5b\\x46\\x16\\xd3\\x98\\x5d\\x44\\x56\\xd4\\xcf\\x62\\x2b\\x86\\x1a\\xef\\xaf\\x3b\\x5f\\x77\\x81\\x17\\xa8\\x29\\x0a\\x7a\\xc7\\x6f\\x3f\\x85\\x66\\xb1\\x88\\x3d\\xdf\\xc9\\x0c\\x2f\\x22\\x11\\xe0\\xe5\\x5e\\xab\\x18\\xdc\\xd2\\x7b\\xaa\\x36\\x0c\\xd3\\x51\\xf7\\xe8\\x36\\x66\\x97\\xb2\\xf7\\xdd\\x48\\xde\\x08\\x79\\x8e\\xbc\\xac\\x80\\x28\\x43\\xfe\\x7c\\xd8\\x86\\x99\\x09\\x25\\x5b\\xe0\\x93\\x23\\x01\\xf1\\x6c\\xf3\\xe7\\x82\\xbb\\x36\\x00\\xf3\\xa6\\x07\\xfc\\xd3\\x4e\\x6a\\x8c\\xe2\\x38\\xee\\x94\\x24\\x1f\\x12\\xfb\\x36\\x02\\x63\\x78\\x0e\\x73\\x50\\xc8\\xf8\\x4b\\x1c\\x1d\\xed\\x7e\\xc6\\x88\\x68\\x24\\x22\\xb2\\xd8\\x7d\\x09\\x41\\x55\\x4e\\x86\\xfb\\x1c\\x33\\x33\\x68\\x7f\\x61\\x22\\x4b\\x4d\\xca\\x44\\x2c\\x0a\\x90\\x33\\x18\\xe5\\x06\\x98\\x62\\xb9\\x72\\x9a\\x7c\\x2e\\xc3\\xc3\\x4f\\x6f\\xdf\\x5b\\x1f\\x82\\xbf\\x25\\x1d\\x02\\xe9\\xf8\\x16\\xd7\\x87\\xdc\\xdc\\xe9\\xb5\\x7c\\x8d\\xbf\\x66\\x5f\\xdb\\xfc\\xf2\\xd5\\x43\\x9b\\x6b\\xef\\xb9\\xb0\\x19\\x6f\\x3e\\xf4\\x70\\xca\\xd7\\x16\\x6f\\xe6\\xd7\\xe8\\x69\\x9f\\x8f\\xc9\\x05\\x42\\x37\\x72\\x6b\\x55\\x3a\\x8f\\x6a\\x37\\x8b\\xbd\\x90\\x60\\x29\\x30\\x27\\xcc\\xe7\\xe9\\xcd\\x47\\x04\\xb5\\x80\\xcc\\x04\\xbf\\x1c\\x8e\\x92\\x2d\\x9d\\x23\\x87\\x50\\x1d\\x23\\xe9\\x55\\x7b\\x27\\xcc\\x09\\x2e\\xec\\xc8\\xb5\\x6f\\x9d\\x11\\x18\\xfe\\xa6\\x8b\\x43\\x73\\xc8\\x45\\xf0\\x1c\\xe6\\xc5\\xe0\\xab\\x14\\xc7\\x9c\\x83\\x77\\x39\\x05\\x5b\\x3d\\x3c\\xf4\\x3d\\x96\\x93\\x04\\x84\\xf5\\x59\\x65\\x22\\x62\\x50\\xb7\\x0a\\xbe\\xa0\\xf3\\xb9\\x5a\\xcf\\x4b\\xc2\\x12\\x2f\\xcf\\xca\\x85\\x1e\\x63\\x8c\\x46\\xc8\\x23\\x64\\xc6\\xed\\x5c\\x29\\x3e\\x1c\\x46\\xc8\\x6f\\x90\\x22\\x66\\x6a\\xd9\\x2f\\x81\\x90\\x57\\xa9\\x32\\x02\\x4a\\x62\\xec\\x55\\xf4\\xbb\\xb1\\x28\\xb8\\xe1\\xf1\\x73\\x72\\x36\\x6e\\xcc\\xf1\\x4d\\x5d\\x28\\xce\\x94\\xcc\\x4a\\x2c\\x3c\\x3a\\xb1\\xb8\\x38\\x71\\xd9\\x43\\xe6\\xcb\\x25\\x63\\x20\\xb6\\xe0\\x6a\\x59\\xf4\\x85\\xbb\\x47\\x89\\x8c\\x98\\x44\\x6a\\x6b\\xb7\\x86\\xa2\\xd7\\x4d\\x8f\\xde\\xbd\\x10\\x55\\xa6\\x02\\x4f\\x6e\\x37\\x7a\\xe8\\xce\\x1d\\xaf\\x18\\x7f\\x08\\x16\\x40\\xbb\\xe9\\x6c\\x19\\xe3\\x79\\xef\\x9e\\xdd\\x23\\x7c\\x48\\x75\\x95\\x57\\xec\\x05\\x16\\x39\\xaf\\xcb\\x65\\xb7\\x77\\x61\\xa7\\x13\\x77\\x0d\\x0f\\x03\\x3f\\x3e\\x16\\x47\\x71\\x76\\x01\\x81\\xa1\\x6f\\xdf\\x0b\\xe8\\x6c\\x4f\\x0f\\x8c\\xd9\\x27\\x08\\x70\\x54\\x09\\x40\\x16\\xdb\\x88\\x79\\xec\\xc4\\x36\\x0c\\x89\\xb1\\xf7\\xda\\x39\\xcc\\xb2\\xc2\\xa5\\x94\\x1c\\xc6\\x98\\x15\\xdd\\xa4\\x3f\\x45\\x08\\x45\\x4d\\x8a\\x75\\x28\\xfc\\xdf\\xb0\\x29\\x46\\x30\\xe6\\xeb\\x0a\\x70\\xa4\\x8e\\xab\\x4e\\x32\\x51\\x59\\x9c\\xfa\\xe0\\xdf\\x33\\x67\\x77\\xed\\xf6\\x71\\xdd\\x67\\xc1\\x89\\x39\\x0c\\xc7\\x55\\x70\\x1e\\x11\\xbb\\xf3\\x65\\x6f\\xd8\\x94\\xeb\\x1b\\x7b\\xbb\\x38\\xe3\\x9a\\x42\\xa1\\x30\\x33\\x0c\\xc6\\xb4\\x7f\\x8e\\x28\\x22\\x58\\x96\\xf3\\x15\\x04\\xd9\\x14\\x36\\x28\\x46\\xfd\\xc4\\x8a\\xef\\x3d\\xb5\\x9d\\x8a\\xf7\\x1c\\xec\\x7d\\xe5\\xec\\xdb\\x7a\\xb1\\xf3\\xd7\\xc7\\x4f\\xc1\\x9e\\x24\\x28\\x02\\x06\\x2c\\x5a\\xf1\\xb2\\x58\\xec\\x17\\x5d\\x7d\\xff\\x37\\x74\\x22\\x99\\x97\\xb8\\x59\\x82\\x35\\x5a\\x19\\xac\\xd1\\x8c\\x30\\x2c\\x7b\\xc3\\x4c\\xc3\\xf4\\x1c\\x00\\xa9\\x7a\\xf9\\x09\\x64\\xb7\\x3b\\x9f\\xad\\x09\\x06\\xe4\\xd9\\x68\\xef\\xfa\\xf5\\xa3\\xa3\\x84\\xb2\\x6e\\x9e\\x9e\\xfa\\xf3\\x96\\xde\\xde\\x47\\x70\\x81\\xc5\\xf2\\x6f\\xe5\\x16\\x71\\xea\\xeb\\x92\\x2a\\xea\\x6a\\xf0\\xa1\\x7b\\x45\\x11\\x21\\xc8\\x5d\\x9e\\x9f\\x98\\x2a\\xab\\x94\\xa5\\x22\\x0a\\x8a\\xca\\x85\\xe9\\x63\\x29\\xe1\\x48\\x73\\x2c\\xae\\x77\\x6b\\x84\\x67\\x58\\x6a\\x92\\xc2\\xd4\\x14\\x45\\xfc\\x7e\\x22\\x1b\\x5f\\xdf\\x93\\x31\\x19\\xfc\\x96\\xd9\\xc1\\x56\\x5e\\x2e\\x56\\x55\\xde\\x59\\x3b\\x3d\\xcd\\x15\\xe6\\x9b\\xd2\\x19\\x55\\x83\\x2a\\x5c\\xbf\\x7f\\x9f\\x7e\\xff\\xfb\\x90\\xbe\\xd8\\xff\\x9a\\xca\\x5f\\x67\\x0c\\x1c\\x67\\xc8\\x4d\\x35\\xd5\\xae\\x8b\\x8a\\x53\\xf8\\xe0\\xeb\\x8c\\xce\\xf7\\x21\\x42\\xc5\\x61\\xec\\x5d\\x54\\xc9\\x75\\xb8\\xe2\\xdc\\x97\\xff\\x89\\x19\\x6a\\xa0\\x70\\x3b\\xe3\\xe7\\x88\\xb6\\x1c\\x7e\\x5c\\x1d\\x43\\x55\\x22\\x22\\xad\\xdf\\xec\\xfb\\xd7\\x0c\\xee\\x99\\x1d\\x7d\\x25\\xd4\\x33\\x55\\xde\\x1a\\xe9\\x0c\\xfc\\xe9\\xbf\\xff\\xa5\\x26\\x52\\xbd\\x2d\\xe1\\x9f\\x9b\\xdb\\x0b\\x15\\x3d\\x3d\\xe2\\xa9\\xd3\\x01\\xb9\\xd4\\x14\\xb5\\x8c\\xba\\x57\\x9e\\x37\\x69\\x9a\\x43\\xa9\\xe9\\x86\\xab\\x91\\x85\\xd9\\x59\\xeb\\xfb\\x4c\\xe1\\xab\\xbb\\x8a\\xcc\\xaf\\x5d\\x5e\\x0c\\xc2\\xe5\\xbe\\xe4\\xb5\\x2d\\x07\\x0e\\xb4\\xac\\xfd\\xf2\\x6e\\xa5\\xb6\\xb2\\xa7\\x27\\xf7\\xef\\x9a\\x65\\x92\\x54\\x2a\\x55\\x92\\xab\\x69\\x51\\x0e\\x30\\x3f\\x60\\x25\\x8c\\x0c\\x83\\xba\\xc1\\xd4\\x9f\\xa6\\x5f\\xfa\\x8a\\xd5\\xb1\\x5f\\xbd\\x34\\xfd\\xd3\\x20\\x4b\\x27\\x35\\xa7\\xd5\\x37\\xa7\\x25\\xd1\\x53\\xfe\\x71\\x81\\x75\\xbd\\xb7\\xbd\\x73\\xd1\\x7d\\x6a\\x21\\xc8\\x18\\x51\\x10\\x80\\xde\\x0d\\xbb\\xf5\\xa7\\x9f\\x14\\x3f\\xff\\x0c\\x53\\xae\\xab\\xa9\\x91\\x5e\\xb5\\x58\\xb6\\x1f\\xb5\\x22\\xeb\\x5f\\xda\\x2c\\x66\\x6f\\xb2\\xd8\\x5f\\x1b\\x70\\xff\\x1f\\xaf\\xb4\\xbd\\xba\\xb5\\x81\\xaf\\x09\\x16\\x9c\\x82\\xf3\\xc0\\x62\\x98\\x37\\xec\\x13\\x66\\xfb\\xdc\\x7d\\x5d\\x0d\\xd3\\xb8\\xe6\\x4c\\x26\\xef\\xc8\\xc9\\x11\\xef\\x13\\xb3\\x07\\x67\\x6f\\xfa\\xda\\x7c\\x43\\xca\\x35\\x3d\\xe8\\xa0\\x9b\\x1a\\xa3\\x04\\x6a\\x92\\xf2\\x48\\x49\\x10\\xe0\\xfc\\x5e\\xee\\x3e\\x28\\x8d\\xe3\\x2e\\xad\\x91\\x80\\x5d\\x91\\x59\\xc2\\x38\\x52\\xa9\\x4a\\x2a\\xd5\\xc1\\x75\\x43\\x94\\x83\\x81\\x99\\x83\\x11\\xc9\\xcf\\x63\\xe0\\xb4\\xe8\\x43\\xbf\\xdb\\xd1\\x2e\\x52\\x77\\xee\\xe1\\x0d\\x4e\\x83\\x68\\xb8\\x64\\xb8\\x8e\\x0d\\xb3\\x5e\\x59\\xc7\\xb2\\x1f\\xeb\\x2a\\x2f\\xa7\\xac\\x29\\x4f\\x91\\x07\\xb0\\x59\\xd7\\x54\\x9e\\x87\\xcf\\x77\\x9c\\xc7\\x79\\x30\\x3e\\x34\\xb3\\x67\\x1c\\xd7\\x9c\\x2d\\xf6\\x72\\x98\\x10\\xb2\\xe9\\xdd\\xd2\\x6c\\xa4\\x1f\\x0d\\xc5\\x90\\xcc\\x00\\x45\\x19\\x2c\\xb9\\x67\\x33\\x18\\xbb\\x39\\x37\\xc6\\x4c\\x12\\xec\\x94\\xc5\\x40\\x33\\x71\\x3f\\x6b\\xea\\x67\\x4d\\x7b\\x64\\xa1\\xa0\\xd5\\x11\\x39\\xca\\x9c\\x08\\xf5\\x86\\x30\\x3f\\xa1\\x25\\x2c\\x3a\\x7c\\x28\\xec\\x3f\\xe1\\x16\\xb9\\x1b\\x86\\x8a\\xba\\x6c\\xa3\\xe2\\xc5\\x57\\x32\\x1a\\x03\\x03\\x9c\\x27\\xe3\\x0e\\x2c\\x10\\x6c\\xfc\\xc4\\x44\\xb3\\x05\\x05\\x2b\\x2b\\xe2\\x62\\x4b\\x4b\\x87\\x6c\\x83\\xe4\\xe3\\xba\\xf9\\xb2\\x8c\\xac\\xa0\\x35\\xe3\\xf8\\x5e\\x4f\\x69\\xf6\\x2f\\xef\\xca\\xa7\\x4c\\x54\\xd0\\xa5\\xbf\\x96\\x9a\\x4d\\x01\\x38\\x30\\x15\\x1a\\x54\\xfe\\xf5\\xaf\\x94\\xa9\\x3c\\x28\\x66\\xa7\\x62\\xa7\\xff\\x6b\\x97\\x8b\\x1f\\x74\\x16\\xa5\\x82\\x97\\x9b\\xf5\\xc0\\x6b\\xd2\\x7c\\x17\\xd5\\x01\\x41\\x0c\\x9e\\xbb\\x20\\xc2\\x2d\\x31\\x3a\\x41\\xc7\\x13\\x8d\\x48\\x61\\x2e\\xb8\\xff\\xcd\\x00\\x3f\\xf0\\x07\\x49\\x8f\\x52\\xe3\\xf7\\xc6\\xd2\\x8c\\x74\\x55\\xed\\xa9\\x55\\x41\\x7d\\x41\\xcb\\xa4\\xf7\\xaf\\x2d\\x35\\x9e\\x37\\x17\\xfe\\x10\\x80\\x01\\x41\\xbd\\x41\\x6b\\xce\\x5b\\xcc\\xe7\\xcf\\x83\\x68\\xd1\\xca\\x11\\xbf\\x5b\\xec\\x17\\xfb\\xdd\\xc3\\x96\\x3d\\xeb\\x02\\xa9\\x23\\x75\\xd9\\x5b\\xa3\\x14\\xdb\\x67\\x88\\x63\\x2f\\xc1\\x90\\xa4\\xb2\\x51\\x99\\x5b\\xca\\xe7\\x03\\x63\\x32\\xf7\\x36\\x40\\xfe\\xfd\\x70\\xea\\xee\\xf6\\xaf\\x9e\\x7e\\x5a\\x9c\\xba\\x2f\\xe4\\xe3\\x43\\x79\\x62\\xfe\\x01\\xaf\\x95\\xc5\\x6f\\x18\\x1a\\x52\\x91\\xf5\\x59\\xd2\\x10\\xe9\\xc0\\x0e\\x8a\\x3a\\x2a\\x8b\\xf6\\xcb\\x61\\x0a\\xec\\x7d\\xde\\x33\\x67\\x86\\x87\\xfb\\x9a\\x4f\\x9a\\xdd\\x0e\\x70\\x75\\xcb\\xfe\\xfd\\x2d\\x6b\\x0d\\x2d\\x2d\\x86\\x57\\xc6\\xdf\\x7a\\x6b\\xbc\\x64\\xd7\\xc9\\x93\\xbb\\xbe\\x8c\\x11\\x33\\xa7\\x32\\xc5\\x18\\xb9\\x08\\x14\\x05\\x01\\x7d\\x7e\\x2d\\x70\\x11\\x71\\x5c\\x5b\\x7e\\x71\\xd8\\xe4\\x7d\\x74\\xb1\\xdb\\xae\\x1b\\x16\\x5a\\xae\\xcb\\x22\\x3f\\x37\\x0e\\x7a\\x52\\xba\\x1e\\xc6\\x5c\\x34\\x38\\x68\\xc6\\x1c\\x36\\xa3\\x87\\x1f\\x8f\\x0e\\x4b\\x3f\\x1b\\x16\\xfd\\xf8\\xdb\\x45\\x0c\\xe6\\x31\\xa0\\x4d\\x96\\x5a\\x8c\\x79\\x29\\x56\\x0b\\x07\\x6a\\x95\\xdc\\xda\\x84\\x40\\xc6\\x18\\xf9\\x9f\\x76\\x9f\\xc3\\x89\\x3f\\xc9\\x41\\xc0\\x8e\\x52\\x56\\x72\\xeb\\xd6\\xdb\\x3b\\xc4\\x6f\\xf8\\xf5\\xd7\\x36\\x1e\\x17\\x34\\xf8\\x10\\xe2\\xfd\\xba\\x23\\x90\\xc5\\x4b\\xf8\\xba\\xd8\\x06\\xfe\\xd1\\x70\\xa2\\x33\\x78\\x37\\x0d\\x6e\\xa4\\x5b\\x7b\\x86\\xb6\\x3b\\x44\\x95\\x59\\xa1\\x50\\xdc\\xff\\x8a\\x66\\x32\\x6d\\x92\\xad\\xf8\\x6f\\x4e\\x6b\\x8d\\x4a\\x83\\x43\\x68\\xc6\\x6e\\xa7\\x76\\xc8\\xff\\x62\\xc2\\xfe\\xac\\xfc\\x1b\\x8a\\xfa\\xe6\\x66\\x43\\x20\\xe0\\x10\\xe3\\x61\\x10\\xf7\\x24\\x6f\\xde\\x2c\\xe1\\xc3\\xa9\\x49\\x8a\\x63\\x8e\\xdc\\xdd\\xb6\\x76\\xdd\\x41\\x77\\xba\\xe0\\xe5\\xee\\x7d\\x75\\x75\\x7d\\x44\\x46\\x28\\x22\\xe3\\xaf\\xdd\\xb8\\xa1\\x64\\x59\\x51\\x0f\\x12\\xcf\\x6f\\x3f\\xdf\\x67\\x32\\x87\\x97\\xb9\\xd9\\x64\\xcc\\x1d\\x5f\\x3c\\xb7\\x53\\xfc\\xc7\\x5c\\x0c\\x18\\x11\\x18\\x6b\\x17\\xb0\\x60\\x5f\\xc4\\x1c\\x86\\x9b\\x70\\xd4\\x3d\\xb1\\x77\\xd4\\x81\\x6c\\x73\\x20\\xc0\\x89\\xa2\\x28\\x72\\x4e\\x11\\xae\\x1a\\x10\\x75\\x41\\xff\\x97\\xef\\x23\\x9b\\x27\\x5d\\x3f\\x96\\x3f\\x3e\\x22\\xaa\\x62\\xb2\\x54\\xc9\\x17\\x5f\\x7d\\xaa\\xbe\\x2a\\x54\\xf2\\x25\\x79\\xea\\x97\\x35\\xe8\\x48\\x8a\\x5e\\x5f\\xb0\\xdc\\xe4\\x4d\\x49\\x1c\\x4e\\x48\\x29\\xae\\xea\\x0f\\x59\\x5e\\xdb\\xbb\\x18\\x96\\x58\\x54\\x1d\\xf4\\xf1\\x9e\\xb3\\x48\\x95\\x16\\xfd\\x14\\xf5\\xf3\\xd7\\x50\\xf2\\x54\\x17\\x90\\x77\\x63\\x37\\x67\\x92\\x2b\\xf8\\xa9\\x49\\x19\\xc2\\x55\\x5e\\x36\\x2a\\x43\\x0a\\xfd\\x8d\\x3a\\xdd\\xd5\\x96\\xab\\x3a\\x4e\\xcb\\x25\\xf4\\x15\\xf6\\x25\\x70\\xda\\x7e\\x1e\\x89\\x28\\x20\\xe7\\x9a\\xe0\\x82\\x03\\xf7\\xdc\\xc1\\x9d\\xf7\\x66\\xca\\x05\\x96\\xda\\xb9\\xb9\\x75\\xb5\\x77\\x0c\\xab\\x5b\\x98\\x65\\x2a\\xba\\x7c\\x90\\xd4\\x10\\xa0\\x88\\x10\\xe2\\xc3\\x37\\xd8\\x83\\x64\\xfc\\xb7\\x97\\xfe\\x32\\x0f\\xf2\\x40\\xb0\\x5b\\xa2\\x76\\x0a\\x54\\x5b\\xed\\xb6\\x93\\xcd\\x76\\xdb\\x0e\\xf4\\x0f\\x93\\x37\\x0a\\x57\\xb8\\x60\\xb3\\x5e\\x89\\x64\\x83\\x02\\xca\\xcf\\x40\\xcb\\xa6\\x32\\x3a\\xc3\\xe7\\x3c\\xb0\\x96\\xb8\\xc9\\xbe\\xc5\\x6e\\xe7\\x2d\\xc4\\x6c\\x96\\x85\\xf6\\x91\\xf2\\x56\\xb0\\x03\\xa2\\xe8\\x49\\x22\\xbf\\xd6\\x29\\xb4\\xec\\x59\\x12\\xc1\\xbb\\x05\\x35\\x25\\x15\\x11\\x46\\x8b\\x22\\x46\\x98\\xe5\\x1f\\x7d\\x2c\\x12\\x98\\x20\\x55\\x68\\xd9\\xdf\\x06\\x8f\\x0e\\x7b\\xc4\\x7e\\xad\\x9f\\xf2\\x80\\x02\\xcd\\x38\\x63\\xb0\\x7e\\x9a\\x11\\x61\\xc1\\xe1\\x72\\x81\\xe5\\x83\\x1e\\xb1\\xdd\\x58\\x18\\x93\\x74\\xc8\\xb0\\xd6\\x6f\\x5c\\x61\\xd0\\xf5\\x2c\\xa9\\x29\\xa7\\x33\\x7c\\xd8\\x8a\\xa0\\x4f\\x44\\x86\\xad\\xd9\\x43\\x14\\xe5\\xaa\\x65\\x2d\\xcc\\x6a\\xc3\\x9d\\x75\\xb5\\x73\\x73\\x96\\xda\\x6f\\xe0\\xd1\\x81\\x59\\xdb\\xe8\\xcc\\x6d\\x74\\x16\\x3f\\xba\\x43\\x35\\xfe\\x21\\xc7\\xec\\xc1\\xdb\\x78\\xc8\\x1c\\x01\\x30\\x2c\\x79\\x2b\\x88\\xe1\\x98\\x7e\\x2b\\xf1\\xff\\xfa\\x29\\x0a\\x37\\xe6\\xde\\x41\\x5f\\xc1\\x7c\\xfa\\xb8\\xb4\\x4f\\x36\\xfe\\xc5\\xd2\\xc7\\xdf\\x12\\x71\\x60\\x7f\\xe0\\x66\\xfd\\xfe\\x30\\xc4\\x21\\xf5\\x88\\x22\\xda\\xf2\\x1b\\x45\\xd1\\x1b\\xb4\\x66\\xa8\\xb7\\xdb\\x8e\\xa8\\x49\\x2a\\x3b\\x9d\\xa7\\x75\\x70\\x4d\\x19\\x9f\\x9e\\x7d\\x37\\xd5\\xaf\\x99\\xa2\\x6c\\xbd\\x24\\xb3\\xf5\\x77\\x9b\\x33\\x88\\xa1\\xc0\\x10\\x02\\x93\\xab\\x20\\x44\\x94\\xbb\\x2d\\x1e\\x2f\\x7e\\x54\\xfc\\x27\\x04\\x2c\\x08\\x0e\\xe4\\x10\\x08\\x26\\x60\\x76\\xed\\xae\\xaf\\x5f\\x63\\x41\\x96\\xcc\\x91\\xfa\\x91\\xcc\\x70\\xe4\\x17\\x1c\\xbe\\xe6\\x45\\x63\\x2a\\x3b\\x7d\\x7c\\x12\\x48\\x84\\xb7\\xc0\\x3a\\xb7\\xde\\x47\\xca\\x9d\\x6c\\xde\\x4f\\x3d\\xc5\\x42\\x59\\xd7\\xab\\xa8\\x6a\\xb0\\xd6\\xf9\\x47\\x25\\xdc\\xd0\\xf9\\xa3\\xf8\\x5d\\xec\\x4a\\x49\\xf7\\x5a\\xa1\\xb4\\xb3\\xab\\x5e\\x0c\\xd6\\x57\\xb9\\x9f\\x08\\x5d\\x4d\\x2e\\xc8\\x58\\x77\\xb6\\xaf\\xfe\\x79\\xa0\\x5c\\xc8\\xa5\\x39\\xf2\\x12\\xd0\\x96\\x19\\x3e\\x5e\\x74\\xe6\\x92\\xa9\\xf0\\x77\\x99\\x7d\\x4a\\xac\\xab\\x13\\xf7\\xed\\xad\\x3b\\xaf\\x36\\xcb\\x6b\\xe4\\xea\\x53\\x43\\x33\\x05\\xe8\\x60\\x9d\\x55\\x29\\x5a\\x51\\xb9\\xfc\\xd9\\x67\\xd7\\x47\\x6a\\x94\\x9a\\x48\\x38\\x60\\xbf\\xb1\\x8b\\x05\\x43\\x11\\x9c\\x19\\xeb\\x50\\xf0\\xdc\\x21\\xd1\\x0a\\x3a\\xd8\\x90\\x6d\\x84\\xb4\\x46\\x17\\x8a\\x80\\x53\\xab\\x22\\xa2\\x23\\x9e\\x60\\xad\\x2a\\x75\\x4a\\x45\\x1c\\x82\\x08\\xec\\x29\\x3c\\x2c\\xe4\\xd6\\x5f\\xf4\\xda\\x3d\\x74\\x3f\\x07\\xe4\\x6f\\xf8\\xd6\\x47\\xb3\\xcd\\xcf\\x4b\\x75\\xa4\\x2c\\x51\\xa6\\x1c\\xcb\\xcf\\x8f\\xd5\\x48\\xa9\\xa8\\x0e\\x6d\\xa6\\xb6\\x53\\x1b\\x79\\x76\\xa3\\x25\\xa3\\x0d\\xa1\\x0d\\xa3\\x6b\\x37\\xd8\\x69\\x7b\\x47\\xe9\\xb3\\x9d\\x9d\\x52\\x5b\\x0e\\xb7\\xe0\\x59\\x1a\\xc8\\x88\\xe2\\x74\\xd6\\x86\\xd0\\x01\\xeb\\xe2\\xf4\\xc6\\xa0\\x47\\x8c\\x8c\\x9e\\xf1\\xae\\x5a\\xe5\\x85\\x96\\x2d\\x9e\\x2b\\x1e\\x7c\\xd0\\x15\\x5a\\x31\\x6d\\xa3\\xbb\\xa7\\x31\\x8c\\x57\\x06\\xa5\\x05\\xfc\\x45\\x4b\\x76\\x3b\\xdf\\xfd\\xe5\\xbe\\x65\\x63\\x35\\x2d\\x35\\x84\\xc0\\xcc\\xb3\\xe3\\x27\\xe1\\x06\\xd6\\x9a\\x5c\\x88\\xaa\\xb4\\xd7\\x4d\\x63\\xbb\\x2a\\x2a\\x2b\\xba\\x1c\\xc5\\xcb\\x7a\\xe1\\x35\\xfb\\xf6\\x6b\\x71\\xeb\\x30\\x03\\x47\\xc0\\x1a\\x2b\\x54\\x67\\xad\\xc8\\xf8\\x73\\x35\\x68\\x7f\\x8c\\xfb\\x42\\x01\\x01\\x16\\x53\\xa1\\xea\\x35\\x03\\x82\\xea\\xd7\\xaa\\xc4\\xf7\\x36\\x6e\\x57\\x7d\\x71\\xa7\\x91\\xdb\\xa6\\x6f\\x6f\\xd6\\xb4\\x63\\xb4\\x3e\\x84\\x69\\xae\\x69\\x5a\\x6d\\xe0\\xb8\\xc6\\xad\\x4a\\x2e\\x5d\\x4d\\xb9\\x8a\\x9d\\x8f\\x2b\\xe7\\xc6\\x40\\xcf\\xb4\\x10\\xd1\\xa7\\x4a\\x09\\x42\\xc6\\x7a\\x6f\\xa7\\xcd\\x79\\xcb\\xca\\x5f\\xfd\\x92\\x41\\xc9\\x87\\x68\\xfb\\xe3\\x9c\\x1b\\xb2\\x53\\x9e\\xf6\\x00\\x81\\x26\\xc8\\x84\\xd5\\x25\\x99\\x95\\xb8\\x25\\x97\\x25\\x82\\x64\\x21\\x74\\x99\\x97\\xd0\\xe8\\x86\\x87\\xc1\\x0c\\x6e\\xba\\x67\\x04\\x0c\\x24\\xe3\\x6d\\x53\\xcb\\xf6\\xac\\x13\\x68\\x09\\xc9\\x5d\\x26\\x0f\\xe5\\xfb\\x02\\x27\\x6a\\x42\\x75\\xe0\\x2d\\xc7\\xe7\\xe8\\x73\\xad\\xa6\\x46\\x1d\\xd2\\x05\\x97\\xb5\\xb7\\x97\\x05\\x2f\\x7d\\x65\\xc1\\x72\\xe6\\xeb\\xb1\\xfe\\x1e\\x88\\xd4\\xc6\\x26\\x72\\x43\\x8b\\xa9\\x9f\\x7e\\xfa\\xdd\\xca\\xc1\\x56\\x6e\\xe5\\x7f\\xd7\\x88\\x46\\xe9\\x15\\xef\\xf4\\x02\\x8e\\x70\\xb5\\x8d\\xdd\\xa6\\x50\\xf9\\xab\\x9f\\x93\\x01\\xfe\\xa9\\x27\\x8b\\xfe\\x5b\\xa6\\x98\\x0d\\x86\\xd3\\x26\\x83\\xa7\\x5c\\x3e\\x77\\x90\\x28\\x03\\x1c\\xe6\\xf8\\x19\\x11\\x89\\x3c\\x0b\\x89\\x52\\xc1\\x88\\x33\\x33\\xb0\\xb9\\x1c\\xf2\\x35\\x17\\xae\\x81\\xba\\xf5\\xd1\\x51\\xf6\\xee\\x28\\x0b\\x88\\xa0\\x54\\x9a\\x20\\x51\\x14\\x99\\xdc\\x0d\\xf1\\xc2\\xd1\\x1d\\xbf\\x21\\x97\\x1a\\xa7\\x1c\\x13\\x96\\xed\\x08\\x2f\\xd8\\x4b\\x01\\xe2\\xc4\\x04\\x9a\\x88\\x99\\x09\\xde\\xb1\\x73\\x90\\x83\\x7f\\x56\\xaa\\x79\\x72\\x40\\xa9\\xf9\\x78\\x9a\\x43\\xbc\\x71\\xfd\\xf3\\x46\\x16\\x8c\\x89\\x90\\x85\\x0e\\x87\\x47\\xed\\xc0\\xc8\\x26\\xe7\\xc8\\xfa\\x91\\x91\\xf5\\x3e\\xbd\\x49\\xd4\\xe8\\x67\\x80\\xcf\\x8d\\xa2\\x40\\x11\\xe6\\x53\\xf8\\xa4\\xe3\\x92\\xd9\\x49\\xd6\\x19\\xd4\\x58\\xda\\x51\\x99\\xe2\\xee\\xca\\xfd\\xb4\\x07\\x79\\x58\\xff\\x68\\xa7\\xc9\\x33\\xe2\\x09\\xe3\\xf5\\xfb\\x8b\\xa8\\x77\\xa5\\xb4\\x21\\x74\\x2e\\x84\\xd7\\x84\\x47\\x9b\\x92\\x59\\xe9\\x94\\xa1\\x5f\\x84\\x2b\\x66\\xe6\\x78\\xf8\\xdd\\xbb\\x15\\x76\\x7b\\xb6\\xbe\\xfe\\xd3\\x9e\\x47\\x8f\\x86\\x74\\xa9\\xdb\\x4c\\x1d\\x03\\x0f\\x4c\\x26\\x4c\\x1d\\x3d\\x32\\xae\\x9c\\xf2\\xfb\\x27\\x5d\\xea\\xc8\\xd1\\xf1\\xd7\\x0f\\x96\\xef\\x9d\\x1f\\x1d\\xf9\\xef\\x7f\\x47\\x46\\x7d\\x5e\\x58\\x50\\x7b\\x3e\\x6a\\xe5\\x86\\xf2\\xf6\\x4f\\x65\\x47\\x8f\\xfa\\xfd\\x9c\\x7d\\xf2\\x24\\x28\\x21\\x5f\\x92\\x8e\\xaa\\xe7\\x95\\x0f\\x2b\\xc1\\x04\\x20\\x79\\x38\\x7d\\xb4\\x44\\x5e\\xab\\xa3\\xe0\\x94\\xc9\\x68\\x1e\\x7c\\xf7\\x51\\x83\\x9f\\xe5\\x6a\\xff\\xbc\\x5c\\x49\\x94\\xf1\\xcb\\x76\\x05\\x99\\xb3\\x13\\xed\\x45\\x01\\x0a\\x9f\\xce\\xa7\\x00\\x5e\\x35\\x23\\x7e\\xe5\\x05\\x82\\x70\\xeb\\x79\\x68\\x4e\\xe4\\x1c\\xa5\\xbf\\xbf\\x21\\x88\\x22\\x5f\\x16\\x17\\x17\\x0f\\x9d\\x17\\xec\\x18\\x10\\xa7\\xf7\\x5f\\xbe\\x7c\\xe4\\xe8\\x60\\xef\\xc0\\xab\\xaf\\x82\\xd4\\xbe\\x53\\xc0\\x13\\x1f\\x83\\x7b\\x0a\\xab\\xcd\\x9b\\x7e\\xd0\\xb3\\x4d\\x1f\\x6c\\x7a\\xe0\\x6e\\x51\\xff\\x3b\\xd9\\xef\\xf4\\x17\\xdd\\x7d\\x60\\xd3\\x07\\x4d\\xec\\xc5\\x06\\x69\\xd6\\xc2\\x78\\xad\\xba\\x23\\x58\\x43\\xcd\\x85\\x5e\\x09\\x25\\xa1\\x0b\\xa1\\x36\\xd6\\x48\\xfa\\x08\\xab\\x63\\xbd\\xd9\\x3e\\x05\\xdc\\x7e\\x7c\\x56\\x19\\x5f\\x55\\x23\\x56\\x56\\x36\\xf6\\xdd\\x29\\x08\\x7b\\xdb\\xb9\\xd0\\xb6\\xe7\\xc4\\xe7\\xff\\xf8\\x50\\xc7\\x03\\x68\\x84\\x11\\x6b\\xe4\\x44\\x8e\\x75\\x98\\xbe\\x53\\x62\\x52\\xeb\\xfa\\xe9\\x02\\xeb\\x08\\x47\\x8f\\x8e\\xd6\\x66\\x4a\\x9f\\x4c\\x8c\\x71\\x66\\x3a\\x63\\x12\\x9f\\x2c\\x65\\x3e\\x1f\\x84\\xee\\xc9\\x04\\xf9\\xa5\\xf4\\x4b\\xf2\\xc4\\x07\\x75\\x8c\\x88\\x8d\\xc4\\x48\\xb0\\xc8\\x20\\x1a\\x02\\x97\\x42\\x48\\x2e\\x5b\\x93\\x0d\\x89\\x8d\\x35\\x92\\x3e\\x0f\\x6a\\x85\\x4f\\x77\\x57\\xa1\\xef\\xd7\\x79\\x75\\x6b\\xcd\\x5d\\x7e\\x76\\x80\\x55\\x0f\\xb0\\xab\\x2d\\xf5\\xb0\\xc2\\xbf\\x74\\x60\\x7f\\x6b\\xd1\\xea\\xae\\x70\\xb6\\x2f\\x7b\\x7d\\x76\\x65\\x77\\xf7\\xf1\\xee\\xee\\xca\\x9c\\xac\\x75\\xd6\\x87\\xb9\\xad\\x6c\\x4b\\x2a\\x9a\\x33\\x4d\\xe6\\x8d\\x9a\\xb1\\x7d\\x02\\xcb\\xce\\x93\\x27\\xc2\\x34\\x93\\x76\\xa4\\x5c\\x5b\\x54\\x7f\\x3f\\xf2\\x5d\\xc7\\x64\\xca\\x0b\\x4b\\xd5\\x54\\xca\\x52\\xbf\\xc8\\xa9\\x62\\x5e\\x3d\\x2f\\x99\\x97\\xcd\\x4a\\x8a\\x93\\xb7\\x74\\xfe\\xf2\\xc0\\x0f\\x3b\\xfc\\x51\\x4e\\xe6\\x6f\\x47\\x4b\\xd5\\x11\\x3a\\x9b\\xc9\\x0e\\x9e\\x91\\xe6\\x94\\x14\\xab\\x9e\\x8d\\x4e\\xf3\\x77\\x54\\x94\\x26\\x4d\\xfe\\x90\\xcd\\xe4\\x84\\xe0\\x88\\x9c\\xc4\\x02\\xe5\\xd7\\xb2\\x24\\x20\\x2d\\xd8\\x01\\x7e\\x46\\x48\\x6a\\x67\\xce\\xfd\\x88\\x15\\xe0\\xec\\x95\\x9a\\x80\\x2e\\x76\\x11\\x61\\xc4\\xbe\\x31\\xa4\\xda\\x49\\x5a\\xc1\\xba\\x6f\\x29\\xf1\\x95\\x16\\x15\\x88\\x6a\\x7b\\x94\\x9c\\x35\\x76\\x13\\x5b\\x34\\x11\\x34\\x20\\x62\\x3c\\xe4\\xc7\\xb1\\x5f\\x83\\xc0\\x92\\x81\\x66\\x04\\x0e\\xa4\\x2c\\xa0\\x84\\xe8\\xcc\\x99\\x0b\\x7a\\xe6\\x10\\x46\\xe9\\x40\\x06\\x12\\x69\\x59\\x9c\\xb1\\x84\\x7a\\x0d\\xa3\\x4c\\x10\\xde\\xb8\\x30\\x92\\x40\\x9a\\xb9\\x16\\xa4\\x2a\\x55\\x2f\\xaf\\x9a\\xaa\\xab\\x9b\\x1a\\xa4\\x14\\x99\\x4c\\x6e\\x77\\x7d\\x3d\\x3b\\x40\\x36\\x0e\\xc9\\x57\\x17\\x2b\\x94\\x67\\x67\\x90\\xa0\\xd8\\xe2\\x74\\x64\\xed\\xc9\\x14\\x43\\x05\\x00\\x10\\x0d\\x79\\x24\\x8f\\x84\\x8f\\x03\\x11\\x24\\x67\\x44\\xde\\xe9\\x44\\x9f\\x8c\\xc5\\x92\\xc4\\xeb\\x24\\x09\\x77\\xa7\\x82\\xb0\\xa8\\x7b\\x4e\\x92\\xb0\\x10\\x25\\x92\\x36\\x5a\\x09\\x69\\x91\\x43\\x51\\x51\\x7d\\xfa\\xac\\x5f\\xc0\\x82\\xb6\\x86\\x1c\\x55\\x18\\x5a\\x9e\\x6a\\x3e\\xd6\\xfd\\xe7\\x01\\xf0\\x9a\\xa1\\x2a\\xd2\\x99\\xfe\\x0d\\x11\\x94\\x22\\x32\\xea\\xd8\\xe0\\x7c\\x02\\xa2\\x4d\\x72\\x62\\x06\\xa1\\x0c\\xa1\\xd4\\x40\\x73\\x49\\xa4\\x7c\\xa4\\xe1\\x45\\x71\\x18\\x40\\x89\\x57\\x12\\xa1\\x2a\\x0b\\xca\\xa1\\x0b\\x83\\x05\\x8c\\x5d\\x9b\\xe7\\x85\\x29\\xf7\\x26\\x96\\x86\\x84\\xb6\\x09\\x77\\x7d\\xf5\\x58\\x55\\xb6\\xc8\\x1b\\xba\\x3f\\x71\\x19\\x8f\\x04\\x2c\\xb0\\xfc\\x81\\x79\\x08\\xe7\\x4e\\x08\\x7f\\x50\\x64\\x7c\\x99\\x25\\x91\\x0b\\x41\\xd1\\x14\\x25\\xe4\\x19\\xbe\\x48\\xbc\\x2e\\x6e\\xf2\\x6e\\x01\\x09\\xd8\\x7c\\x09\\xc2\\xd1\\x08\\xbe\\x17\\x30\\x25\\x09\\xb2\\xc1\\x7a\\x58\\xce\\xd1\\x7a\\xb0\\x87\\x65\\x91\\xb0\\x18\\xc3\\x40\\x7c\\x8e\\x03\\x35\\x22\\x18\\xff\\x86\\xcf\\x8a\\x5c\\xb8\\xe9\\x11\\xd1\\x32\\x02\\x89\\xb1\\xa3\\x9c\\xc7\\x21\\x7a\\xc4\\xdf\\x0b\\xeb\\x5e\\x94\\x8f\\x92\\x29\\x65\\x51\\x16\\x66\\x8e\\x61\\x04\\xcb\\x3f\\xc7\\xab\\xda\\x16\\x0b\\x34\\x1f\\x6b\\x7e\\x87\\x8f\\xa4\\x05\\x54\\x03\\x12\\x66\\x0e\\xa4\\xd4\\xcd\\x7f\\x95\\x3f\\xfb\\x18\\x9b\\x5f\\x20\\x8e\\x8e\\xaa\\xd7\\x31\\xf9\\xfb\\x1e\\x7b\\x0c\\x52\\x95\\x2a\\xca\\xbc\\x98\\x48\\x4d\\x69\\xc6\\xa9\\x88\\x8a\\xc7\\x95\\xba\\x2b\\x7d\\xbd\\x0f\\xd4\\x4d\\x29\\x27\\x07\\x07\\xa7\\x22\\x23\\xa6\\x86\\x06\\x27\\x95\\x53\\xdb\\xb7\\x6b\\x6e\\x42\\x9f\\xa7\\x56\\xad\\x12\\x8f\\xd6\\xe5\\x18\\x32\\x3f\\x86\\x9a\\x57\\x2a\\x2b\\xd1\\xc9\\x68\\xdd\\xab\\x17\\xd7\\x98\\xaf\\x3d\\x53\\xb9\\x0f\\xb6\\x4a\\x97\\x95\\x47\\xaa\\xd1\\x20\\xca\\x1d\\x38\\xc2\\xe7\\x0e\\x1a\\x21\\x55\\x2a\\x46\\xe4\\x46\\xeb\\x4e\\x92\\x3c\\x5f\\x99\\x12\\x17\\xcb\\x8a\\x84\\xde\\xfa\\x86\\xe4\\x45\\x3f\\x76\\x3f\\xd9\\x2c\\x6b\\xdb\\x9e\\x1b\\xd8\\xc9\\x94\\x54\\x89\\x39\\xcc\\xb7\\x09\\x61\\xd4\\x47\\xf1\\xbd\\x63\\x05\\x18\\x95\\xee\\xd3\\xd7\\xd4\\x98\\x6b\\xf4\\x52\\x16\\xb2\\x85\\x16\\x64\\x22\\x4c\\x42\\x8d\\x57\\xd6\\x48\\x41\\x77\\x5e\\x22\\x93\\x29\\x53\\x12\\x53\\xd8\\x92\\x6d\\x3f\\x65\\x80\\x22\\x00\\x5e\\x41\\x51\\xda\\x4f\\x14\\x8c\\xdc\\x96\\xe1\\xde\\x9b\\x0d\\xd1\\x0c\\xad\\x40\\x9c\\xd6\\xa5\\x60\\x38\\x46\\x81\\xc2\\x68\\x05\\x1d\\x06\\xc8\\x8c\\xd3\\x39\\x67\\x4e\\x57\\x78\\xe3\\x1b\\x6e\\x42\\xd3\\x92\\xcb\\x12\\xf8\\xef\\x82\\x84\\x4c\\xda\\xb8\\xc0\\x90\\x96\\x30\\x92\\xcf\\x21\\x37\\xd0\\xa9\\x80\\x08\\x58\\x21\\x41\\xcc\\x81\\x5d\\x8d\\x22\\xcd\\x58\\x21\\xa7\\x7a\\x28\\x1b\\x1a\\x43\\x91\\x1b\\x31\\x56\\x86\\xfb\\x6e\\xf4\\xfb\\xe1\\x08\\x78\\x64\\xd9\\x09\\xa3\\x72\\x4c\\x84\\x76\\xd6\\x89\\xf0\\x0d\\x8c\\x21\\x65\\x03\\x93\\xdf\\xd9\\x94\\x25\\xac\\xd6\\x1f\\x9e\\x65\\x01\\xfa\\x43\\x0e\\xa3\\x0f\\x59\\xbd\\x38\\xe6\\xc4\\x12\\xd5\\x25\\xc3\\x25\\x95\\x33\\x42\\x29\\x53\\x8e\\x7e\\xab\\x3c\\xca\\xc1\\x40\\x52\\xcd\\xa3\\xb5\\x21\\x31\\x2c\\x8e\\x78\\x90\\x07\\x4f\\xb4\\xf3\\xa3\\x85\\x5b\\xb5\\x2d\\xeb\\x0b\\xa7\\x50\\x9e\\x16\\xb4\\x1d\\x1e\\x1a\\xb4\\xab\\x9c\\x3c\\x0f\\xdd\\xfb\\xd3\\xa7\\xd9\\x31\\xb8\\xbc\\xda\\xfc\\xfc\\xdc\\xdf\\xe7\\x9e\\xec\\xd0\\x98\\xb8\\xec\\xb4\\x9a\\x97\\xfe\\x34\\xdc\\xbb\\x49\\xe4\\x96\\xd0\\xd2\\x75\\x1e\\x63\\xda\\xaa\\x46\\xe9\\x36\\x95\\xa2\\x5d\\x36\\xdb\\x18\\x7b\\x4a\\x71\\xbe\\xa6\\xa6\\x1d\\xb5\\xf3\\xae\\xdd\\x62\\x41\\x5d\\x82\\xcc\\x42\\xb5\\x09\\x3c\\x2d\\x14\\xc4\\xf4\\x94\\x75\\xc1\\xee\\xc0\\xff\\x0c\\x89\\x20\\x08\\xac\\x1b\\x61\\x04\\x68\\xb1\\xc0\\x09\\x98\\x80\\xfa\\xe0\\xcb\\x42\\x43\\x5e\\x9a\\xf4\\x4a\\x48\\x40\\x69\\x5e\\xe0\\x15\\x2c\\xe0\\xa6\\x80\\x34\\x68\\x57\\xba\\xb6\\x4c\\x56\\x11\\x2f\\xfd\\x67\\xa1\\x61\\xdb\\xca\\x17\\x46\\xb2\\xf2\\xd3\\x9e\\x59\\x11\\x1a\\xfd\\xf3\\x4f\\x8b\\x5d\\x01\\x2b\\x03\\x0e\\xc4\\xae\\xf8\\x29\\x36\\x4f\\xff\\xf7\\x1b\\x5a\\x00\\xc7\\x61\\xce\\x2f\\xb2\\x84\\x25\\x8c\\x1b\\xb9\\x01\\x34\\x87\\x38\\xff\\x0c\\xcb\\xb2\\x2c\\xc3\\x21\\xae\\x5f\\x7b\\x4e\\x03\\xf8\\xa1\\x57\\x13\\xde\\x74\\x9a\\xe6\\x65\\x18\\xfb\\x05\\xe7\\xaa\\xb7\\x65\\x09\\x88\\xf0\\x88\\x93\\x54\\xd5\\xd0\\x6f\\x65\\xe1\\x2a\\xf1\\x96\\x3a\\xb8\\x6b\\x96\\xfe\\xb8\\x79\\xc9\\x8a\\x3f\\x9b\\x6b\\x1a\\xe3\\x8a\\xab\\xab\\x5f\\x56\\xc7\\xb8\\x7d\\x1e\\x79\\x55\\xe4\\xdc\\xe9\\x9f\\x27\\x00\\x3c\\xe6\\x16\\xd6\\xbc\\x33\\xf0\\xe9\\x89\\xd5\\x09\\x0d\\x69\\xdb\\x2c\\xd7\\x53\\xab\\x5d\\xc9\\x55\\x2e\\x4d\\xfb\\x75\\xb9\\x76\\x6a\\x1a\\x21\\xcf\\x67\\xd3\\x74\\xd7\\xf6\\x08\\x1e\\x2c\\x08\\x5f\\xef\\x13\\x74\\x1f\\xb0\\xe0\\xbd\\x52\\x92\\xe5\\x5d\\xb8\\xba\\x9b\\x47\\x0c\\xb2\\xba\\x6c\\xd0\\x43\\xac\\x82\\x15\\x16\\xd4\\xd2\\xe8\\xc6\\xd3\\x3e\\x31\\x7c\\x52\\xcd\\x8b\\xd3\\xee\\xca\\x01\\xa2\\x07\\x7b\\x84\\xe9\\x65\\x66\\xdb\\x44\\x39\\xc3\\xb8\\xad\\x0a\\xc6\\xb6\\xff\\xdd\\x73\\xc1\\xa8\\xb2\\x88\\xc2\\xb5\\xad\\x8a\\x7b\\x12\\xa2\\x9f\\x8a\\xcb\\x8a\\x45\\x71\\x2f\\xa2\\x35\\xe8\\xdd\\xb2\\x84\\xd5\\x2d\\xf4\\x83\\x29\\x91\\x3d\\x89\\xfa\\x55\\x28\\xb3\\x2c\\x0a\\xad\\x19\\x5a\\x2f\\x56\\xe1\\x18\\x31\\x43\\x90\\x53\\x2c\\xcc\\x3b\\x46\\xfd\\xdd\\x7d\\x91\\x2a\\xab\\xa4\\x52\\x5f\\x51\\xdc\\xd5\\xf9\\xcb\\x4f\\xe3\\xb3\\x12\\x5a\\x72\\x91\\x9a\\xd4\\xfb\\xa3\\xbe\\x50\\xcd\\x1a\\x2e\\xa9\\xe6\\xf1\\x7c\\x1e\\xcc\\xad\\x38\\xf4\\x04\\xd2\\xf9\\x74\\xb4\\xec\\xda\\x21\\xaf\\xb4\\xfa\\x76\\xa5\\x25\\x27\\xab\\xa8\\xb9\\x1a\\xda\\x72\\x49\\xe7\\x84\\xa7\\xca\\x52\\x93\\xdf\\xb1\\xa9\\x47\\xed\\x8b\\x02\\x17\\x9f\\xdd\\x2a\\x81\\x1e\\x7c\\xd0\\xbb\\x63\\xfb\\xac\\x97\\xaa\\x89\\x7f\\xab\\xb8\\xc8\\x10\\x8e\\x30\\x56\\xeb\\x13\\x33\\xa1\\xce\\x52\\xb3\\x02\\x3e\\xfb\\xd3\\xe8\\xe8\\xd1\\x94\\x98\\xf9\\x79\\x5b\\x52\\x50\\x55\\x93\\x92\\x82\\x86\\xf7\\xb3\\xea\\x13\\x5f\\x40\\xba\\x92\\x28\\xd5\\xe1\\x79\\xe5\\xe5\\x79\\xaa\\x6d\\x77\\xb7\\xe6\\xbc\\x1a\\x84\\xbf\\x10\\x12\\x90\\xcf\\xbc\\xf6\\x74\\x74\\xfc\\x65\\x25\\x66\\x3f\\x66\\x22\\x63\\xed\\xc7\\x27\\xc5\\x70\\xdc\\x2e\\x3b\\x94\\x14\\x3b\\x4c\\x63\\xc9\\x6e\\x81\\xd1\\xf1\\xfd\\x49\\x96\\x08\\x64\\x5f\\x80\\xc0\\xa2\\x73\\x0c\\xec\\xb5\\x53\\x5e\\x15\\xba\\x39\\x37\\xf1\\xfb\\xed\\x41\\x10\\x81\\x48\\x11\\xf3\\x6c\\xc1\\xb3\\x31\\x8a\\x5e\\x51\\x33\\xa5\\x99\\xc4\\x0b\\x19\\x5b\\x01\\x9a\\xc3\\x4a\\x0d\\x8b\\x88\\x46\\x7e\\x32\\x17\\xaf\\x34\\x3f\\x08\\x6d\\x3a\\xc7\\xc7\\x3b\\x71\\xfd\\xce\\x81\\x3a\\x6c\\x68\\xe6\\x0c\\x58\\xe7\\xd3\\x61\\x25\\x51\\x32\\xe2\\x62\\xd3\\x69\\x0e\\xec\\x40\\x02\\x33\\x47\\x72\\x01\\xef\\x7d\\x86\\x91\\x3d\\xf1\\x0b\\xe5\\xad\\x9e\\x51\\xc3\\xe6\\xf6\\xaf\\x52\\x89\\x23\\x1b\\x01\\x50\\x03\\x06\\xf3\\x0c\\x0b\\xcb\\x07\\xce\\x4c\\x1f\\x3c\\x82\\x87\\xf7\\x8f\\xd0\\x67\\x3a\\x4e\\xd1\\x22\\x7d\\xca\\xb1\\x0c\\xea\\x10\\x78\\x4e\\x62\\xc5\\x03\\xe8\\xda\\x4f\\x20\\x84\\xff\\xab\\x10\\x4d\\x04\\xc2\\xbb\\x6d\\xf6\\xfa\\xbc\\x95\\x30\\x84\\x37\\xda\\x38\\x9b\\x5f\\x8b\\x30\\xe2\\x17\\x55\\x01\\x05\\x90\\xa1\\x1d\\x89\\x3b\\x64\\x78\\xaf\\x46\\x08\\xc0\\xbb\\x45\\xf7\\x4c\\x86\\x1a\\x66\\x49\\x04\\x5f\\x58\\xf7\\x11\\x70\\xe5\\xac\\x7b\\x7d\\x3c\\x3d\\xb0\\xb3\\x6e\\xa2\\x22\\x19\\x27\\xc1\\x8b\\x7f\\x65\\x61\\x38\\x99\\x9d\\x35\\x51\\xf7\\x48\\xf2\\x3c\\xa1\\x80\\x1d\\x34\\x79\\x6c\\x90\\xb1\\x7d\\xa7\\x10\\x6f\\x77\\x67\\x6a\\x09\\x16\\x31\\xed\\xb8\\x0b\\xfb\\x29\\xa4\\xc4\\x61\\xa4\\xc6\\x28\\x0f\\x73\\x6e\\xeb\\xc0\\xbc\\x66\\x56\\x13\\xb4\\x12\\xcc\\xbc\\x6b\\xe5\\x26\\xe6\\x2d\\xef\\x03\\x2f\\x2c\\xf6\\x7b\\xf5\\xbc\\x17\\xa6\\x79\\x8d\\xb2\\x2d\\xb5\\x6f\\xb2\\x8a\\x00\\x28\\x2a\\x7c\\x21\\xd2\\xda\\x5e\\x10\\xcd\\x12\\xd1\\x78\\x1d\\x23\\x7c\\x8a\\x79\\xfb\\x56\\x68\\x59\\x78\\xb8\\xfd\\x2e\\xec\\xe7\\x10\\x45\\x7a\\xe9\\x86\\x56\\x05\\x64\\x04\\x53\\x6d\\x01\\x72\\xb0\\xe3\\x81\\xd5\\x83\\xe4\\xe6\\x2f\\x7f\\x5c\\x55\\x0e\\xca\\x81\\xbe\\xb2\\x62\\x37\\xb2\\x76\\xf1\\xda\\x45\\xbd\\x41\\x39\\xc3\\x60\\x7f\\x58\\xe6\\x36\\xd2\\x1c\\x0d\\xaa\\xf4\\x14\\x23\\xc2\\xcf\\x6e\\x7a\\x63\\xa6\\x23\\x69\\x89\\x5b\\xa2\\xc9\\xf4\\x2b\\x24\\xea\\x5d\\x92\\x96\\xfa\\x81\\x18\\x9d\\x5d\\x28\\x0d\\xb3\\x70\\x64\\x26\\x8f\\xf3\\xd3\\x97\\xca\\x04\\xdf\\x75\\x5e\\xa9\\xa8\\x83\\xf7\\xb0\\x3b\\x40\\xfc\\x6a\\x66\\xa2\\x94\\x6b\\xe7\\xd4\\x84\\x23\\x95\\x1d\\x6e\\xca\\xb5\\xe3\\xdb\\xb2\\xba\\x74\\x02\\xfa\\x20\\xfe\\x02\\x4f\\x43\\x5b\\xc2\\x8b\\x4a\\xa2\\xe4\\x98\\xb8\\xf3\\x00\\x10\\xcf\\xe1\\x46\\xb6\\xb7\\x2e\\x19\\x3a\\xa7\\xb8\\xa5\\xb0\\x4a\\xee\\xdc\\x34\\xc0\\xe4\\x65\\x45\\x08\\xab\\x0a\\xf2\\x8b\\x4c\\x90\\x01\\xb1\\xf5\\x75\\xed\\xb4\\xaf\\xbf\\x96\\x56\\xd5\\xd7\\x23\\x4c\\x89\\xd4\\xbe\\xbe\\x2e\\xd1\\x8f\\xf7\\xbd\\x57\\x1a\\x2f\\x9a\\xc0\\xf6\\x2e\\x69\\x35\\x46\\x9c\\xc7\\x58\\x6e\\xc5\\x91\\x2c\\x38\\x72\\xf7\\xef\\x26\\x98\\xe4\\xde\\x0f\\xb7\\x5d\\xa2\\x36\\xc1\\xd1\\xab\\xb5\\x11\\xf7\\xe5\\xe5\\xde\\x07\\x5b\\x1b\\x1b\\x16\\xb4\\x39\\xe6\\xae\\xf8\\x15\\x8b\\x8e\\x9c\\xfd\\x26\\x72\\x08\\x7c\\xb3\\x08\\xbc\\xed\\x5b\\x90\\xe8\\x22\\x42\\xeb\\xf6\\x47\\x1b\\x62\\x50\\x9e\\x6f\\xac\\x55\\x70\\xd9\\x5d\\x67\\x1b\\xb6\\x86\\x94\\x39\\x2e\\xdb\\x4b\\xf7\\x81\\xf3\\x04\\x93\\x41\\x4d\\x09\\x4f\\x10\\x41\\x6c\\x91\\x77\\xb3\\x08\\x2b\\xf9\\xa7\\xe4\\x46\\x48\\x95\\x99\\x34\\xa2\\x13\\x82\\x4c\\x44\\xeb\\x9f\\x4f\\xb2\\xe7\\x63\\x0e\\xb7\\xf8\\x3e\\xdc\\x56\\x85\\x6c\\x5c\\x33\\x2e\\xeb\\x8a\\x93\\xad\\xda\\x46\\x11\\x75\\x8b\\x01\\x89\\xb8\\xb1\\xbb\\xf9\\x91\\xa3\\xc8\\xa9\\x57\\x74\\xfe\\x6b\\x6e\\xe9\\x7c\\xba\\x4f\\x2a\\xa9\\x4a\\x59\\xa5\\xa6\\xb2\\xef\\xa6\\x66\\x32\\xed\\xa8\\x8c\\x3a\\x9a\\x96\\x5d\\x2e\\xed\\x93\\xe6\\x4b\\x7b\\xa5\\x2f\\x4b\\x89\\x98\\xcf\\x49\\x81\\x10\\x8c\\x02\\x63\\x21\\x1b\\xb7\\x97\\x48\\xe0\\x86\\xd9\\x8e\\x14\\x92\\x77\\x49\\xd8\\x2f\\x2e\\x4a\\x82\\x0e\\x5b\\x4a\\x72\\xc6\\x7a\\x94\\x6c\\x4a\\x5e\\xf9\\x8b\\xc2\\xa7\\x98\\x60\\x8e\\xb7\\xdd\\x40\\x24\\xd7\\x64\\xea\\xa8\\x30\\xe5\\xde\\x70\\xff\\x7a\\x53\\x05\\x04\\x3d\\x44\\xf0\\x64\\xa2\\x6c\\xc1\\x5a\\xc6\\xd9\\x8a\\x6b\\x59\\x4f\\x33\\xf9\\xf2\\xbd\\x22\\x0d\\x30\\x79\\xcf\\xa3\\x73\\x25\\x38\\x26\\x36\\x5b\\x29\\xdb\\x8a\\xb1\\xd2\\xf7\\x34\\x42\\x58\\x53\\x3a\\x6f\\xeb\\xce\\xd1\\x7c\\xba\\x49\\xdb\\x70\\x6c\\x18\\x8e\\x7b\\x77\\xb8\\x9f\\x77\\x60\\x07\\x78\\x74\\x12\\x67\\xff\\x62\\xe8\\xe7\\xa1\\xee\\x50\\x6f\\xa8\\x10\\x7a\\x45\\x8d\\x2e\\x84\\x0e\\x7f\\x08\\xfd\\x73\\xab\\xe9\\x4c\\x6f\\x4a\\x48\\x6c\\x4a\\x27\\xe9\\x65\\x49\\x89\\x65\\xe9\\x3c\\x0f\\x69\\x42\\x70\\x50\\x2e\\x60\\x78\\x46\\x12\\xa9\\x0f\\xab\\xb4\\x41\\x81\\x6f\\xfe\\x71\\x11\\x95\\x25\\xb7\\x37\\x3d\\x2e\\xb8\\x0d\\x5a\\xb3\\x6d\\xd9\\x73\\x88\\xbb\\x9a\\xf6\\x25\\xb5\\x35\\x7b\\xd5\\x37\\xcd\\x19\\xa8\\x50\\xbc\\xd9\\x6d\\xb5\\x1b\\xd7\\xbd\\x44\\xe7\\x4f\\x7d\\xe6\\x22\\xe7\\x7a\\x07\\x43\\x6e\\x04\\xe4\\xd7\\xaf\\x98\\x7e\\x29\\xa7\\xbe\\x86\\x4b\\xa2\\xec\\xf2\\x1f\\x72\\x8c\\x6c\\x0a\\x0b\\x0f\\xa3\\x87\\x10\\xde\\x6b\\xce\\xc9\\x34\\x6a\\x1e\\x29\\x1d\\x9c\\x05\\xca\\x17\\xf0\\xe1\\xe1\\x97\\xf9\\x39\\xb2\\x59\\xd9\\x65\\xd9\\x82\\xec\\x17\\xdf\\x83\\x66\\xab\\xc6\\xf8\\x9e\\xd7\\xdb\\xc3\\xc3\\x36\\x06\\x53\\x33\\xa2\\xcd\\x8f\\x1a\\xe1\\x9d\\x5e\\x5b\\xb8\\x92\\x81\\x0b\\xa8\\x70\\x23\\xa2\\x5a\\xaa\\x7b\\x48\\x6d\\xbe\\x91\\x0b\\x57\\x84\\x87\\x29\\x24\\x24\\xe1\\xcc\\x82\\x41\\x01\\x0b\\xe8\\x76\\x8a\\xa6\\x33\\x2c\\x96\\x0c\\xc9\\x8d\\x6b\\x87\\x50\\xbc\\x8c\\x5c\\xe5\\xe6\\x10\\x2c\\xe0\\x1f\\xfc\\x69\\xc8\\x20\\xc2\\x3b\\xa2\\xc0\\x9e\\xdb\\xc2\\x6c\\xa8\\x55\\x93\\x6a\\x26\\xac\\xd4\\x18\\x68\\xf6\\xaf\\x2d\\x64\\xc0\\x71\\x5d\\x21\\x0b\\x65\\xc2\\x99\\x9a\\x35\\x01\\x51\\x22\\xdf\\xb1\\xf9\\x12\\x77\\x3d\\x16\\x2c\\xb6\\xb5\\x5d\\xaa\\xab\\x0f\\x08\\x92\\xcc\\xfe\\xdc\\x42\\x12\\x24\\x9d\\x55\\xaa\\x22\\x22\\x35\\x91\\x11\\xff\\x3d\\x33\\xfb\\x44\\x7f\\xe5\\x52\\x90\\xd4\\x3f\\xfd\\xff\\xb0\\x54\\xc4\\x56\\xd5\\x0b\\xae\\x29\\xbf\\x7c\\x8a\\x96\\xc7\\x7a\\xf5\\x64\\x45\\xcd\\x6b\\x5c\\xfa\\xe6\\xf7\\xe3\\xc0\\xcc\\x02\\x43\\x79\\xd4\\xcc\\x09\\xbf\\x64\\x79\\x64\\x39\\x33\\x91\\xa1\\xed\\x39\\x67\\xe0\\x82\\x7b\\x60\\x57\\xeb\\x68\\x19\\x6a\\x83\\x93\\x21\\x6f\\x0a\\x4c\\xf6\\xef\\x2c\\xac\\x80\\x9a\\xb4\\x5f\\x72\\x2a\\xb9\\xd6\\x55\\x0a\\x5e\\x9d\\xbb\\x14\\xee\\x53\\x2e\\xeb\\xac\\x62\\x6b\\x65\\x8e\\x39\\x6c\\x53\\x36\\x43\\x61\\xfd\\x78\\x89\\xdb\\xa1\\x64\\xd7\\xee\\x92\\x70\\x37\\x3a\\x70\\xea\\xaf\\x6c\\xea\\x1f\\xd2\\x37\\xa1\\x6f\\x79\\xf2\\x22\\xee\\x07\\x66\\x85\\xe6\\x6a\\x86\\xd6\\x73\\x71\\x6b\\xd1\\x2f\\xe1\\xc3\\xba\\x06\\xa9\\x2c\\xfc\\x17\\xf0\\xa1\\xc5\\x5b\\xd1\\xa2\\xf9\\x6b\\x69\\x4c\\xe3\\xce\\xe3\\x42\\xf6\\x4d\\x7f\\x9d\\x70\\xf9\\x43\\xb0\\xd2\\x19\\x75\\xbc\\xf6\\x78\\x94\\xf3\\x9d\\xf7\\x26\\x70\\x1a\\x3a\\x6d\\x34\\x8a\\x25\\x7e\\x97\\x4e\\xe0\\x9c\\x07\\xfd\\x2c\\x21\\xc4\\xee\\x75\\x65\\xb6\\x8c\\x4c\\x60\\x25\\xbc\\x3c\\x97\\xc8\\xc8\\x1b\\x6f\\x88\\xa4\\xa8\\x8f\\x68\\xca\\xbf\\x0a\\x88\\x32\\x95\\x4a\\x2d\\x08\\x8b\\x7e\\x36\\x46\\x09\\xbb\\xae\\x2f\\x5c\\x77\\xb4\\x6c\\xdd\\x91\\xf3\\xb5\\xf4\\xab\\xf6\\x4f\\xd6\\x1f\\xf9\\xb4\\xac\\x52\\x75\\xd7\\x76\\xe9\\xf4\\xca\\xb8\\xa6\\x67\\x32\\xa6\\x69\\x07\\x7a\\xcf\\xb7\\x4d\\xcb\\x7d\\x9d\\xff\\xaf\\xa7\\x22\\x8d\\x1e\\x86\\x3d\\x24\\xfb\\x2f\\x87\\x60\\x4c\\x77\\xd3\\x54\\xfd\\x84\\x49\\xf3\\xde\\xea\\x91\\x8f\\x51\\xa0\\xf0\\xc5\\x8a\\x43\\xfd\\x0b\\x5d\\x6f\\xfe\\x84\\xdf\\x8f\\xad\\xc8\\x8a\\x99\\x7b\\x6b\\xbf\\xb8\\x40\\x47\\x53\\x1e\\x64\\x41\\x90\\x4a\\xa9\\x31\\xcd\\xe4\\x7b\\x35\\x07\\xf8\\xc8\\xc2\\x21\\x46\\x12\\x6c\\xbb\\xc1\\xb8\\xeb\\xeb\\x10\\xc2\\x5a\\xf5\\xd6\\x85\\x31\\x91\\x8b\\x8c\\xfe\\x08\\x6b\\x4d\\x21\\x09\\x55\\x18\\x28\\x24\\x32\\x9d\\xa6\\xa9\\x29\\x20\\x27\\x49\\xf3\\x04\\xb3\\xec\\xf7\\x59\\x42\\xf0\\x22\\xf2\\x5a\\x8b\\xe4\\x62\\x3d\\x61\\xa7\\x43\\x06\\x8a\\x61\\xf1\\xa1\\x15\\xd2\\xfb\\xf3\\x1e\\xb8\\x7e\\x31\\xf9\\x28\\x18\\x44\\xa2\\xf5\\xf9\\xba\\x44\\x23\\x0b\\x69\\x77\\xc3\\xfa\\x37\\x94\\x92\\x57\\x83\\xc3\\x0c\\x74\\x15\\x51\\x72\\x50\\x67\\x71\\xb2\\x93\\xa5\\xdb\\xe2\\xff\\x8e\\xd8\\x5f\\xa8\\xdb\\xd9\\x5d\\xa5\\xbb\\xa9\\x5b\\x11\\x25\\x8b\\x0c\\xff\\x7f\\x04\\xa5\\xa2\\xfe\\x08\\xae\\x08\\x9e\\x73\\x4e\\xe7\\x18\\xbd\\xf3\\xeb\\xff\\xef\\xf3\\x95\\x95\\x8d\\x79\\xbd\\x6f\\xbc\\xde\\xdb\\xfb\\xfa\\x1b\\x5e\\xef\\x58\\x59\\x19\\x91\\x11\\xa0\\xb1\\x41\\x07\\xeb\\x5c\\x3f\\x4f\\x5b\\x31\\x31\\x0a\\xc1\\xec\\x37\\x5a\\x4b\\xb9\\xd5\\xbf\\x11\\x8b\\x76\\xf8\\x49\\xd3\\x58\\xbe\\x13\\xdf\\x9d\\xd8\\xd4\\x96\\xac\\xea\\xce\\xec\\x3d\\x55\\xdd\\xfb\\x68\\x62\\x4f\\x76\\xe7\\x2f\\xaa\\x7e\\x08\\x3b\\xf3\\x80\\x58\\x44\\xa2\\x76\\xf1\\x3f\\x8e\\x5c\\xdc\\xc7\\x1f\\xa8\\x88\\xfa\\x1d\\x80\\x38\\x15\\x04\\x2a\\x04\\xf3\\x5c\\x98\\xdb\\xf8\\x0b\\x8b\\xb3\\x95\\xc6\\x29\\x0f\\xf2\\x68\\xa7\\x90\\x0e\\x22\\x41\\xfe\\xcf\\xaf\\x48\\x7f\\xc7\\x91\\xeb\\x00\\x39\\x2b\\xae\\x8f\\x4d\\x04\\x00\\x09\\xb5\\x5e\\xc5\\xb2\\xaf\\x5a\\x64\\x75\\xf7\\x83\\x40\\x39\\x7d\\x81\\x2b\\x7e\\x33\\xf7\\x2c\\xad\\xb1\\x3c\\xfa\\x4c\\x59\\xc6\\x58\\x6f\\xe2\\x2c\\xa7\\x72\\x8f\\x8b\\xe7\\xe7\\x98\\x84\\x7a\\x8e\\x5f\\xc5\\x54\\x8b\\x58\\x64\\x8a\\x91\\x08\\x93\\x71\\x64\\xd1\\x3c\\x99\\x55\\x48\\x70\\x11\\x93\\xcc\\x4d\\x63\\xe0\\x08\\xa1\\x8d\\x48\\x40\\x2e\\xe3\\x8c\\x1e\\x5d\\x6a\\x0e\\xf0\\xdc\\x87\\xd1\\xe7\\x0e\\x08\\xd1\\x57\\xdf\\xa7\\x75\\xa7\\x06\\x1b\\x79\\x27\\x72\\x82\\xd1\\x22\\x12\\xf3\\x67\\x38\\x4b\\x54\\x51\\x97\\x3e\\xac\\xaf\\xa4\\x94\\x4f\\x7b\\x4d\\xdd\\xd2\\x41\\xbd\\x6b\\x93\\x46\\xca\\xa7\\x12\\xb3\\xf3\\xb2\\xd3\\x46\\xc6\\x80\\x11\\xc7\\xb8\\x5f\\x88\\x5b\\x4b\\x72\\x58\\xb7\\xa6\\xfe\\x31\\x58\\xd2\\xfd\\x5e\\xbc\\x35\\x0e\\x44\\x4b\\x5f\\x7c\\x42\\x4e\\x7b\\xc5\\x38\\xf8\\x7a\\xde\\x7f\\xd1\\x0a\\x99\\x7c\\x55\\xdf\\xe7\\x26\\xee\\xa7\\x97\\x4d\\xd7\\xc6\\xc0\\x5c\\x95\\x79\\x5a\\xef\\xe8\\x56\\x74\\x3b\\xf4\\xa7\\x33\\xd7\\xac\\x3e\\xde\\x1d\\x4e\\x9f\\xfe\\x7d\\xe6\\x9a\\xfb\\x82\\x07\\x5b\\x4a\\x23\\xfb\\x13\\x75\\x01\\xc5\\x07\\xaf\\x2d\\x7e\\x9f\\xf9\\xfd\\xe2\\xb5\\x7d\\x46\\xf0\\xa6\\x7a\\xa2\\x3c\\x20\\x45\\x04\\xcd\\x5c\\x6a\\xce\\x4a\\x8b\\x5b\\xde\\x92\\x4a\\x5c\\xc4\\x02\\x91\\x9d\\xc0\\xdf\\x5e\\x8e\\xcb\\x8e\\xca\\xb0\\x6c\\xf0\\x41\\x91\\x48\\x12\\xb6\\xb2\\x24\\x8e\\x32\\x72\\x98\\x60\\x82\\xc8\\xaf\\x11\\x75\\xa4\\x26\\x92\\x92\\x68\\x3c\\xc2\\x05\\x45\\x7f\\x0a\\xa4\\x54\\xc1\\xb2\\xfd\\x5e\\x31\\xec\\xb4\\x74\\xdf\\x28\\x32\\x3f\\x12\\xa9\\x4f\\x44\\x86\\x80\\x9e\\x8f\\x82\\xdd\\x68\\xb1\\x2c\\x25\\x44\\x10\\x10\\x87\\xbb\\xdf\\x10\\x19\\xe2\\xa1\\x30\\xb5\\xb6\\xdd\\x53\\x6a\\xed\\xe1\\xf1\\xa3\\x14\\x17\\x27\\x26\\x6b\\x5f\\x0c\\x8f\\xaa\\xfe\\x62\\xd2\\x1e\\xb1\\x22\\x41\\x02\\x62\\xdd\\x40\\x09\\x3d\\x13\\x14\\x13\\x4f\\x08\\x82\\xc6\\xd4\\xb2\\xa3\\x14\\x66\\xf5\\xb6\\xee\\xe2\\x98\\x15\\xce\\x1a\\x7b\\x43\\x17\\xf0\\x9e\\xa5\\xc6\\x64\\xd8\\x70\\xaa\\x6e\\xc1\\xe2\\xc1\\xb2\\x29\\x3c\\x0b\\x65\\x21\\xc4\\xcb\\x61\\x62\\xc4\\xce\\x44\\xa4\\x69\\xda\\xc8\\xca\\x26\\x29\\x06\\x33\\x71\\x84\\x9a\\x94\\xd1\\x00\\xef\\xc9\\x25\\x63\\x1a\\xd0\\xf2\\xbf\\x35\\x87\\x60\\x17\\xe7\\xd9\\x45\\xfb\\x8c\\x03\\x3e\\xb7\\x4a\\xee\\x3d\\xb1\\xf8\\xa2\\x0c\\xf7\\x5a\\x9d\\x4a\\x8b\\x0c\\xc7\\x0a\\x4c\\x3a\\xfc\\x0c\\xbe\\xef\\x80\\x00\\x7b\\x15\\x27\\x1d\\x35\\x66\\x6b\\x77\\x62\\x32\\x14\\x86\\xd2\\x73\\xae\\x06\\x06\\xc7\\xaa\\x17\\x1f\\x18\\x74\\xf9\\x3d\\xbc\\xd8\\xce\\xc7\\x15\\xd7\\x73\\x9a\\x03\\x43\\x5b\\xfc\\x49\\xc8\\x75\\xb7\\xa6\\x7d\\x5d\\x7c\\x33\\xf3\\xeb\\x5d\\xd6\\x57\\x36\\xe2\\x4d\\x87\\x7a\\x4e\\xd7\\x64\\xc5\\x5b\\xec\\x5f\\x8a\\x8c\\xaf\\xdb\\xb5\\xf9\\x82\\xb7\\xe0\\x0f\\x47\\x47\\x7f\\x37\\x92\\x81\\x23\\xdc\\x7d\\xbd\\x1b\\x7b\\x9b\\xd2\\x75\\x26\\x4b\\xdc\\x67\\xca\\x94\\xdb\\xb7\\xef\\x1b\\x4e\\x0a\\x4e\\x45\\x73\\x73\\x28\\x35\\x38\\x69\\xf8\\xbe\\xf2\\x0b\\x99\\xa2\\xfc\\x4c\\xda\\xdd\\xa8\\x56\\x37\\x76\\x4b\\xc3\\x2a\\x21\\x6a\\x01\\x09\\x4f\\x08\\x5e\\x6b\\x3c\\x93\\xe5\\xac\\xfb\\xde\\xcf\\xdd\\x10\\x83\\x8e\\xfa\\x13\\x0f\\x1a\\x6c\\x57\\xec\\x4f\\x3f\\xf1\\x59\\x86\\xfe\\x46\\x40\\xd0\\xa5\\xd5\\xca\\xb8\\x75\\x35\\x26\\x97\\x76\\xc9\\xb4\\xa4\\x35\\xb9\\xb0\\x9b\\x75\\x11\\xbb\\x7f\\x8e\\x01\\x67\\x42\\x2f\\x5c\\xc8\\xf6\\x90\\x99\\x8f\\xed\\xeb\\xeb\\xc4\\xe6\\x96\\xda\\x43\\x73\\x4c\\x5d\\xbf\\x15\\x28\\x78\\xc8\\x0c\\xe7\\x78\\x3c\\x4c\\x76\\xa5\\x5c\\x92\\x9f\\x99\\xb6\\x2b\\x5b\\xe4\\x3d\\xc8\\xc3\\x73\\x45\\x9c\\x50\\x2d\\xfa\\x22\\x1b\\x32\\x05\\x25\\x80\\x60\\x24\\x1c\\x04\\x5f\\x92\\x23\\x7a\\x7d\\x20\\xec\\xb7\\x6c\\xc1\\xb5\\x53\\x5a\\x36\\xc6\\x2c\\x38\\x31\\x55\\x31\\xfe\\x82\\xb1\\x2b\\x55\\x62\\x06\\xde\\x61\\xbd\\xe8\\xdc\\x8e\\x62\\xcd\\x18\\xc1\\x02\\x63\\x0c\\xf1\\x11\\x0a\\x66\\x89\\x13\\xa6\\x0c\\xb2\\x92\\x26\\xd5\\x64\\xf2\\xa5\\xae\\x00\\xa0\\xf2\\x9d\\x34\\xcf\\x9a\\x39\\x2d\\x3f\\x4a\\x11\\x9e\\xb3\\x11\\xd5\\x60\\x47\\x07\\x6f\\xf1\\xd7\\xe8\\x0f\\x3f\\x14\\x45\\x33\\x35\\x46\\x99\\x45\\x36\\xf9\\xc8\\x81\\x8b\\x56\\xcd\\x18\\xd3\\xaa\\xa5\\x85\\xe3\\x1e\\x1d\\x60\\xc0\\x75\\x90\\xb7\\xd5\\x69\\xfd\\xd3\\xb5\\xf1\\x1f\\xcf\\xaf\\x56\\xa1\\xb3\\x4b\\xbf\\x72\\xf8\\xcc\\x99\\xea\\x1a\\x7f\\xbf\\x91\\xe4\\x9e\\x43\\x07\\x07\\x7f\\xb0\\x87\\xfa\\xf9\\x22\\x35\\x91\\x5a\\x7f\\xdb\\x50\\x1a\\xd3\\xa8\\x3d\\x74\\xb8\\xdf\\x52\\x6e\\x45\\xc7\\xa6\\xeb\\xd4\\x28\\x0e\\x74\\x0d\\x83\\x18\\x6d\\x3b\\x68\\x0c\\x9f\\x35\\x0b\\x3f\\x63\\xb5\\x95\\xa5\\x61\\x94\\x0c\\xdb\\x16\\xb9\\x36\\x96\\x52\\x83\\x55\\x1c\\x68\\x1e\\x32\\x46\\xa5\\x9c\\x2e\\x49\\xa9\\x54\\x6f\\x24\\x6c\\x8f\\xc3\\x9d\\x1c\\xf2\\xe7\\x9c\\xb5\\xce\\xaa\\x1e\\xd3\\xd0\\xe1\\x7e\\x3b\\x55\\x5b\\xbb\\x2e\\x69\\x2f\\xe9\\xaf\\x57\\xf3\\x12\\xdc\\xf7\\x45\\x18\\x6a\\xa3\\x32\\xeb\\x2e\\x69\\xc2\\x76\\xea\\xc9\\x67\\x59\\x22\\x23\\x1b\\x36\\x12\\x49\\x18\\x69\\x62\\xa7\\x22\\x1b\\x0d\\x19\\x31\\xa9\\x26\\x12\\xf3\\x38\\xb0\\xa1\\xbf\\x89\\x8d\\x6c\\x90\\x5d\\x60\\x09\\xca\\xe5\\x19\\xa1\\x4a\\xa1\\xb5\\x2d\\x91\\xcf\\x43\\xc3\\x8b\\x44\\xee\\xfb\\x6c\\x8e\\x6c\\x6a\\x9b\\xb6\\x06\\x69\\xb5\\x92\\xdb\\x6a\\x8c\\xff\\xb5\\xbd\\xdd\\xbe\\x39\\x6f\\x65\\x17\\xc6\\x6a\\x0b\\xe9\\x08\\x90\\x8d\\xdf\\x80\\x6c\\xcf\\x0c\\x0c\\xd4\\x23\\x7e\\x61\\x42\\x98\\xa7\\xc2\\xf2\\x7d\\xc3\\x9d\\xff\\xb9\\xd7\\x88\\x73\\x1c\\xa5\\xa5\\x94\\x98\\x8c\\x00\\xfa\\x2c\\x05\\xd3\\x22\\xc6\\xe4\\xc6\\x38\\x5f\\x6b\\x8e\\x4b\\x09\\xa0\\xff\\x8e\\x5c\\x40\\x1a\\xb4\\xf2\\xbb\\x9b\\x4f\\x9b\\x30\\xb7\\xaa\\xd4\\x54\\xba\\x8a\\xc3\\x15\\x66\\xdf\\xf1\\x95\\x48\\x73\\xb6\\xb9\\x39\\x59\\xa4\\x50\\x04\\xac\\x08\\x5c\\xd0\\x5c\\x7b\\x91\\x5a\\x36\\x46\\x71\\x98\\x3b\\x12\\x25\\x40\\x73\\x9f\\x8a\\xa2\\xa2\\x28\\x49\\x5e\\x80\\x66\\xc9\\x01\\xdb\\xf3\\xf1\\xad\\x7d\\x60\\x75\\xda\\x88\\x55\\x75\\xb8\\xf3\\x85\\x82\\x7d\\xcd\\xcd\\x87\\x16\\x6b\\x01\\x37\\x32\\x80\\x25\\x0f\\x6e\\x91\\x1e\\x59\\x20\\x1c\\xaf\\x54\\x03\\x8f\\x09\\x2f\\x13\\x88\\xa0\\x26\\x9b\\xff\\x27\\x92\\x21\\x3c\\xc3\\xc7\\x80\\x65\\xd0\\x56\\x2c\\x13\\xc5\\x41\\x7a\\x0f\\xdf\\x13\\x30\\xe4\\xe1\\x30\\x76\\xda\\x77\\x32\\xa4\\x71\\x5b\\x63\\x60\\xf4\\x19\\xe2\\x84\\x71\\x92\\xbd\\xfc\\x33\\x18\\xad\\xcb\\x5a\\x88\\xcb\\xf0\\x96\\xdf\\x3b\\xb3\\x83\\xd5\\xe5\\x59\\x9f\\xb7\\x79\\xb3\\xd2\\x13\\x47\\x8a\\x86\\x13\\xc7\\x47\\x2c\\x7d\\x2e\\x49\\x8b\\x46\\x35\\x9c\\x53\\xa5\\x3d\\xbe\\x8a\\x36\\xa1\\xcd\\x57\\xc1\\x80\\x78\\xc1\\xf6\\xa4\\xa6\\xc0\\x60\\x55\\xa9\\xf4\\x06\\xd0\\x2b\\x9a\\x04\\x05\\xd6\\x1e\\xd9\\x96\\xca\\xc6\\x55\\x86\\xe6\\xe6\\x03\\x5c\\xb3\\x61\\x8d\\xa5\\x09\\x7a\\xe9\\x44\\x99\\x52\\xc6\\x46\\x4b\\x4c\\x3e\\x6f\\xb8\\x89\\x41\\xc4\\x4a\\x73\\xf8\\xa7\\x4b\\x39\\x9a\\x71\\xc6\\xbe\\x0f\\xdc\\xd5\\x5e\\xdc\\x6c\\x05\\x7c\\x94\\xe1\\xee\\x64\\x2b\\xac\\xfc\\x8f\\xa5\\x42\\xf2\\xab\\x62\\xb8\\x65\\x0b\\xdc\\x42\\x67\\xf8\\x90\\x23\\xa2\\x8a\\xa2\\x22\\x02\\xf3\\xda\\x35\\xef\\xd1\\xca\\xbc\\xc0\\x99\\xb5\\x5e\\x5d\\x17\\xbb\\xa9\\xa5\\x31\\xf6\\xbb\\x86\\xd8\\x56\\x5f\\x0c\\x8f\\xc1\\x77\\xb1\\x8d\\x2f\\x49\\xf9\\x19\\x6b\\x28\\x33\\x41\\xd6\\x98\\x98\\xd9\\x18\\x4d\\xfb\\x7b\\xca\\x33\\xd3\\x09\\x36\\xf1\\xf4\\xc6\\x68\\x4d\\x23\\x55\\x7a\\x44\\x0c\\x36\\x6a\\x56\\x4f\\xbf\\xe2\\x96\\xf2\\x41\\x12\\xf9\\xdd\\xee\\xef\\x1c\\x7e\\x0d\\x5c\\x95\\x9f\\x15\\x1d\\x3c\\xdc\\xd3\\xd8\\xe0\\x31\\xde\\x74\\xd6\\xb5\\x3b\\xed\\x5a\\x6d\\x2d\\xd2\\x6f\\x08\\x5b\\x5b\\x3f\\x4f\\x37\\xd3\\x64\\x18\\x9a\\x59\\x1a\\x8c\\xf5\\x7b\\x08\\xb6\\x9b\\x15\\xb4\\xe2\\x1a\\xad\\x66\\x04\\x35\\x52\\xab\\xd5\\x8a\\x3a\\x26\\x52\\x16\\xa5\\x17\\xf4\\x51\\x32\\x6b\\xa1\\x22\\x52\\x13\\xa9\\x17\\xd4\\x88\\x8e\\xd4\\xbc\\x72\\x0e\\x9c\\x0b\\xc4\\xc4\\x8c\\xde\\x56\\x4a\\xe7\\x9c\\x23\\x94\\x58\\x8c\\x99\\x97\\xd3\\x2f\\x33\\xa6\\x6a\\xbc\\xf0\\x6c\\x71\\xc2\\xfc\\x49\\xbe\\x39\\xa1\\x0a\\x2d\\xbe\\x79\\xbc\\x4b\\x98\\xdb\\x6f\\xe4\\xd4\\xc8\\x96\\x86\\xbc\\xe7\\xee\\x9e\\x4b\\x31\\xcc\\x8a\\x07\\x9c\\xb3\\x86\\x8a\\x56\\xfb\\x55\\xda\\x2a\\x1a\\x14\\xaf\\xaf\\xeb\\x2f\\x19\\xaf\\x3c\\x36\\x0e\\x7a\\xe5\\xb7\\x5c\\xfb\\x21\\x38\\xea\\x5b\\xfc\\x97\\x92\\xca\\xcd\\x9f\\x8e\\xbf\\x34\\x75\\x6c\\xee\\xe8\\xb8\\x67\\x97\\xaf\\x63\\x11\\x7f\\xbf\\xfa\\xa1\\xda\\x3b\\xde\\x0b\\x9b\\x98\\xcd\\xf1\\x45\\x78\\xe3\\xbb\\xd0\\xf5\\xf9\\xe0\\x75\\x78\\xd3\\x85\\x5d\\xf4\\x62\\x87\\xaf\\xf8\\xfb\\xc7\\x5e\\xc7\\xeb\\x82\\x6f\\x5e\\xe0\\x2a\\xbb\\x79\\xd3\\x7a\\x1c\\xa7\\xb3\\x9c\\xb2\\xa3\\xc9\\xf6\\x5b\\xad\\x2c\\x9e\\x04\\xcf\\x62\\x4b\\xbe\\x70\\xf4\\x80\\x22\\xbf\\x08\\x68\\x16\\x8d\\x6c\\x71\\xb4\\xe6\\xf7\\xaa\\x68\\xa5\\xfc\\x0c\\xf0\\x7c\\x24\\xca\\x9e\\x19\\xf8\\xf4\\x87\\x27\\x98\\xdd\\x92\\xc4\\x99\\x7e\\x7f\\x66\\x68\\xc2\\xf4\\x93\\xcc\\xa1\\xd0\\x84\\x19\\xfd\\xba\\x1f\\xae\\x0d\\xe4\\x1f\\x98\\x03\\x9b\\x37\\xdb\\x63\\x85\\x42\\xe1\\x7b\\x5b\\xab\\xeb\\xca\\x9e\\xe9\\x17\\xfa\\x41\\xc7\\xb8\\xad\\xc6\\x5c\\x93\\xad\\x61\\x89\\x82\\xb8\\x45\\xdb\\x81\\x43\\xd0\\x68\\x89\\x7f\\xd1\\x7b\\xf6\\xa7\\x9f\\xd6\\x5e\\xb6\\xe8\\x48\\xc1\\xa4\\x48\\x71\\x4a\\x32\\x9e\\x5a\\x5b\\xfb\\x5e\\x6b\\xbf\\x74\\x84\\xdb\\xbc\\xa9\\xaf\\xaf\\x44\\xfd\\xdf\\x21\\x34\\xc3\\x62\\xd9\\x5a\\x63\\xb1\\x92\\xd6\\x56\\x01\\x4a\\x3f\\x2f\\x4c\\x3b\\xb1\\x23\\x36\\x6c\\xf7\\xf6\\x02\\x7d\\x5c\\x5c\\x90\\x5f\\x88\\xdf\\x90\\xb7\\xaf\\x72\\x7b\\x93\\x36\\x63\\xc3\\x1a\\xed\\x8e\\xc6\\xa6\\x1d\\x09\\x05\\xc9\\xb1\\xcb\\x82\\x64\\xb2\\x3c\\x69\\x57\\xc0\\x7d\\x27\\xee\\x5d\\xb1\\xfb\\xaf\\x83\\xe6\\x9a\\xf0\\x15\\x6f\\xbc\\x2c\\x5b\\x13\\x6c\\x09\\xd3\\x26\\xa7\\xa7\\xc4\\x06\\xb7\\x34\\xba\\x33\\x1b\\x76\\x5f\\xd4\\xc5\\xa6\\x3f\\xf9\\x32\\x95\\xf2\\x64\\x12\\xa2\\x63\\xfe\\xf0\\xea\\x9a\\x9e\\xb4\\x60\\x48\\xb6\\x7d\\x0f\\x83\\x2e\\x56\\xc5\\x2e\\x5b\\x16\\xa8\\x91\\xae\\x0c\\x6c\\x0c\\xb8\\x4f\\x38\\x43\\xef\\xfe\\x6b\\x4f\\xdb\\xea\\xfd\\x31\\xab\\xf3\\x99\\xd1\\x9b\\xa9\\xa7\\xaf\\xdd\\x55\\xfa\\xff\\x57\\x4a\\x12\\xe2\\x7e\\x17\\xcb\\xd3\\xfe\\x70\\x3a\\xe9\\x14\\x5a\\xb1\\xab\\xdb\\xfc\\xb5\\x06\\xcb\\x9f\\xfb\\x90\\x42\\x8d\\xd9\\xca\\x94\\x78\\xf5\\x11\\x79\\x78\\x7a\\xba\\xf2\\xb1\\x15\\x12\\x94\\xf5\\xbf\\x20\\x96\\xfe\\x58\\x35\\x86\\x3e\\x8f\\x2e\\xd8\\xcb\\xba\\x14\\xd0\\x75\\xaf\\xaa\\x2f\\xb5\\x5e\\xfd\\xf5\\xd3\\x0f\\x9c\\x54\\x1b\\xa3\\xcd\\x19\\x76\\x03\\x19\\x05\\xf3\\xf3\\x79\\x5a\\x03\\xd7\\x7c\\x2f\\xd9\\xb7\\x4f\\x24\\xaa\\xd5\\xf5\\x3d\\x6b\\xd5\\x15\\xf9\\xf9\\xdd\\x96\\x64\\x54\\x83\\xae\\x9a\\x22\\xb7\\xc5\\x7b\\xd5\\x5e\\xb6\\xa5\\xc5\\xfe\\xc7\\x97\\x33\\x64\\xc6\\xdc\\xf5\\x37\\x28\\xaf\\x81\\xa5\\x81\\x56\\xd9\\x15\\x03\\xc6\\x97\\xd2\\x78\\x85\\xe1\\xff\\xd7\\x0c\\x73\\x0a\\xbb\\x8a\\x7e\\xd8\\xa8\\xe0\\xd3\\x5e\\x1a\\x58\\x2b\\x37\\x5c\\xab\\x59\\xd7\\x98\\x1f\\x57\\x2c\\x1b\\x82\\x06\\x05\\xe0\\x1c\\x06\\x5a\\x45\\x62\\x91\\x60\\x0d\\x6c\\x84\\xc5\\x1c\\x27\\x27\\x3c\\x28\\x07\\xa3\\xac\\x15\\x70\\x91\\xcc\\xb2\\xac\\x1b\\xe1\\x10\\xc2\\xd3\\x82\\x5f\\x94\\xa6\\x8c\\x3b\\x91\\x73\\x51\\x5b\\xcb\\x79\\x04\\x24\\x48\\x40\\xd2\\x84\\xb8\\xf9\\xd0\\x1c\\xe1\\x0e\\x90\\xd2\\xa5\\x7e\\x8e\\x70\\x2e\\xd7\\x43\\xb3\\x16\\x25\\x72\\x2b\\xc7\\x71\\x73\\x1a\\x1e\\x28\\x3b\\xe7\\x02\\x4b\\x0e\\xc1\\xc1\\xa4\\x18\\xd3\\xa6\\x2d\\x55\\x70\\x98\\x33\\xcb\\x5d\\xb8\\x1c\\x77\\x5e\\x11\\xe2\\xc8\\xc0\\xae\\x15\\xaa\\x7b\\xb1\\x43\\x7a\\x9c\\xb9\\x21\\x3f\\xaf\\xaa\\xbb\\xe7\\x41\\xfa\\xfa\\x55\\x8d\\x39\\xd2\\xf8\\x23\\xaa\\x23\\x9a\\xb7\\xa3\\x36\\x32\\x6e\\x5d\\xec\\x3a\\xc9\\xfe\\xf5\\xfa\\x8c\\xfc\\x9c\\x78\\xe5\\x1f\\x32\\x98\\xb1\\xde\\x37\\xa7\\x4d\\x15\\x46\\xee\\x35\\x55\\x3b\\xb7\\x45\\x58\\x72\\x61\\x06\\xbb\\xef\\x1a\\x91\\xf1\\x83\\x46\\xce\\xcb\\xc1\\xbd\\x03\\xe6\\x2b\\x0b\\x05\\x46\\x64\\xac\\xe9\\xff\\xa5\\xa9\\xee\\x15\\x17\\x8d\\x7c\\x4e\\xbc\\x49\\x66\\x66\\x24\\xca\\x70\\xfc\\xf9\\xd6\\x4f\\xd0\\x7d\\xa3\\x5e\\xe2\\x05\\x16\\xa7\\xcd\\x59\\xa7\\xbf\\xe0\\x66\\x84\\x51\\xb3\\x5c\\xda\\x1e\\xf6\\x91\\x54\\x94\\x22\\x86\\x33\\x0d\\x41\\x67\\xb0\\xce\\x5d\\xde\\x56\\x60\\xda\\xde\\xde\\x8b\\xdd\\x17\\xa4\\x59\\x04\\x23\\x09\\x0d\\xed\\x71\\xa9\\x58\\x24\\xaf\\x32\\x89\\x56\\x37\\x50\\x19\\x37\\x31\\xfa\\x50\\x9c\\x70\\x6b\\xa7\\xb9\\x48\\xd9\\xa7\\x81\\xbc\\x4a\\x08\\x36\\x33\\x54\\x5c\\x37\\xd1\\x83\\xe8\\xc3\\x5a\\x70\\x88\\x0b\\x95\\x50\\x9e\\x78\\x84\\xc5\\x94\\xa4\\x99\\x97\\xf1\\x6c\\x0f\\x9b\\x40\\x1a\\x73\\xc5\\xf0\\x12\\x1e\\xef\\x36\\x5b\\x09\\x5e\\xdb\\x5a\\x6f\\x9b\\xa2\\xef\\xb1\\x7b\\x7a\\x95\\x78\\xcb\\x53\\xbd\\xc4\\x5b\\x1a\\xec\\xe5\\xbc\\xa3\\x7b\\x91\\x11\\x09\\x9b\\x73\\xe3\\x70\\x5b\\x14\\xfc\\xf5\\x7c\\xe0\\x30\\xc3\\x7e\\x4d\\x88\\xb2\\x71\\x4a\\xec\\xbb\\x66\\xdc\\x82\\x80\\x05\\x82\\x67\\xf8\\x20\\xd2\\x27\\x9e\\x53\\x3d\\x5f\\x5f\\xbf\\x6c\\xe7\\xe6\\x0f\\xdf\\x13\\xcb\\x16\\xed\\x04\\x80\\xb2\\x31\\x59\\x62\\xd2\\x54\\x52\\xa2\\x20\\x6f\\xb9\\x59\\xaf\\x1f\\x77\\x4f\\x58\\x8d\\x67\\x24\\xa8\\x36\\x59\\x05\\x46\\x36\\x46\\xf7\\x25\\x5e\\xef\\xcd\\x12\\xb5\\xe2\\x9b\\xd0\\x60\\xc8\\xea\\x91\\xa2\\xe1\\xd5\\xb0\\xf3\\xc5\\x28\\x5f\\x8b\\x8c\\xc8\\x05\\xfb\\xfa\\xfb\\xd8\\xd5\\x16\\x74\\x2f\\x63\\x8f\\x3b\\xac\\xa6\\x6b\\x03\\xa2\\x2d\\x40\\x0e\\x90\\x7f\\xa5\\xd0\\x4d\\x6d\\xde\\x5c\\x5c\\xcc\\x15\\x3d\\xf1\\x33\\xa2\\x38\\x2d\\xce\\x88\\x10\\x44\\xd4\\x54\\x9c\\x62\\x4e\\xa1\\xf3\\xcc\\x79\\x2c\\x6f\\x0f\\xe7\\x9e\\x3b\\x3d\\x3d\\x33\\x73\\xcc\\xaa\\x2d\\x5e\\xe5\\xbe\\x36\\x34\\x47\\x3a\\x5e\\x77\\x0e\\xcf\\x21\\x0c\\x91\\xdc\\xe5\\xad\\xfa\\xf2\\x4d\\x17\\x66\\x1d\\xf7\\x70\\x68\\x4e\\xa1\\x2d\\x60\\x84\\xc7\\xea\\x16\\xd8\\xe5\\xf2\\x9e\\x39\\x63\\xb1\\x78\\xb5\\x20\\xdc\\x98\\x9c\\xce\\x3a\\xb7\\x07\\x9d\\x2c\\x5a\\x4e\\x35\\x0f\\x16\\x6a\\xac\\x6d\\xd6\\xdb\\x80\\xdc\\x62\\xc4\\x70\\x4f\\x45\\x5d\\xf3\\x0e\\xde\\x87\\xc8\\xc8\\xdb\\x47\\x1e\\x06\\xdd\\x63\\xb8\\x64\\x98\\x35\\x38\\x0d\\x89\\xe3\\x6d\\xde\\xb6\\xcf\\xdb\\x16\\xda\\x4c\\x9b\\xbe\\x38\\x8c\\xac\\xa6\\xe2\\x8b\\x0a\\xd9\\xec\\xec\\x7e\\x45\\xcc\\x8d\\x31\\xbf\\x0e\\x1b\\x17\\x60\\xdb\\xbf\\x0d\\xa2\\xc1\\xf9\\x8e\\x25\\x19\\xed\\x8a\\x91\\x65\\x7e\\xc3\\x07\\x9a\\x49\\xde\\x6e\\x1e\\xa0\\xb6\\x41\\x8f\\x5d\\x3c\\xed\\x65\\xbd\\x20\\x1b\\x17\\x9d\\x75\\xe7\\x37\\xa7\\x3c\\x4b\\x53\\xf9\\xee\\xc4\\xa6\\x74\\x13\\xf3\\xb4\\x42\\x54\\xcc\\x1a\\xfd\\x7e\\x9a\\xf4\\x26\\x70\\x1a\\xa9\\xda\\x97\\x3e\\x57\\xe1\\x59\\x1e\\xd9\\x78\\x3c\\xf3\\x4d\\xcc\\x3b\\xdb\\x54\\x31\\xb4\\xa0\\xfc\\xa3\\xb3\\x13\\xf3\\x6c\\xfc\\x52\\x3c\\x20\\x12\\x5e\\xfb\\xae\\x26\\x58\\x9e\\xf1\\x50\\x77\\xe5\\xf3\\xdd\\xc6\\x8d\\x23\\x8c\\xc0\\x30\\x21\\xdb\\xfd\\x7c\\x65\\x77\\x65\\x2c\\x20\\xaf\\xa6\\xa6\\x83\\x44\\x1e\\x61\\x46\\x67\\x65\\x1d\\x66\\x31\\x8b\\x0f\\x67\\x3d\\x5c\\xd9\\xfb\\xad\\x1b\\xad\\xfb\\x0f\\x54\\xb6\\x7a\\x49\\xcf\\x60\\xb7\\x15\\x07\\x29\\xa1\\xd3\\xfd\\x9c\\x3d\\xaf\\xba\\xa4\\xf2\\x97\\x40\\x89\\x3f\\x6c\\x30\\x9f\\x0f\\x68\\xac\\xe0\\x7a\\x3b\\xb8\\xd3\\x22\\x7e\\xf9\\x17\\xf9\\xcd\\x9a\\x9e\\xbf\\x47\\x93\\xff\\x45\\x83\\x37\\xf8\\x01\\xef\\xac\\x2c\\xd6\\x65\\xa5\\x8b\\x97\\x04\\x7c\\xfa\\xa3\\x4f\\x16\\xab\\x90\\xe1\\xed\\x86\\x7f\\xd1\\xcb\\xce\\x2c\\xdb\\x91\\xdd\\x83\\xab\\x37\\xb7\\x57\\xb3\\xc0\\x75\\x99\\x24\\x55\\x91\\x4b\\xd5\\xa4\\xce\\x61\\xa6\\x18\\xce\\xc0\\x73\\xce\\x89\\x62\\x9e\\x98\\xa9\\x04\\xe1\\x23\\x27\\x76\\x6e\\x74\\xd9\\xd1\\xbd\\xf1\\xe1\\x81\\x93\\x4f\\xec\\x43\\x9f\\x6b\\x21\\xb8\\x3d\\x1e\\x7f\\x58\\xac\\xab\\xef\\x6f\\x00\\xb9\\x92\\x33\\x17\\x79\\xdf\\x8c\\xf3\\x0b\\xa1\\x49\\xdf\\xda\\x6a\\x7f\\xf8\\xe9\\x17\\x9e\\x7b\\xee\\xda\\xb3\\x72\\xdf\\xa1\\x9b\\xe0\\x79\\x8b\\x84\\xc3\\xf3\\x73\\x8b\\x71\\x9e\\x83\\x56\\x60\\x44\\x14\\x8c\\x01\\x42\\x3b\\x05\\x9a\\xed\\x04\\xf7\\xce\\x52\\x70\\x15\\x6b\\x5a\\x83\\xd4\\x4d\\x78\\x9d\\xb6\\xa0\\xca\\x35\\x0a\\xce\\x92\\x2b\\x56\\x68\\xc6\\x29\\x52\\x45\\xc0\\x84\\xb7\\x99\\x9a\\x5e\\x8f\\x82\\xf9\\xee\\xad\\xd6\\xa8\\x2a\\xd1\\x65\\x55\\x07\\x6f\\x69\\x15\\x5d\\x58\\x80\\xf5\\x89\\x80\\x69\\x06\\x33\\xc8\\xda\\xbb\\x33\\x23\\x1b\\x91\\x61\\x26\\x55\\x96\\x2a\\xa4\\x6a\\x52\\xdd\\xe0\\x62\\x7e\\xe2\\x1f\\xd1\\xe9\\x96\\x87\\x1a\\x0f\\x66\\xbe\\x25\\x0f\\x89\\x92\\xcb\\x32\\x67\\x68\\x28\\xfb\\x88\\x89\\x32\\xd5\\x1b\\xb7\\x84\\xcf\\xa6\\x55\\x6a\\x22\\x25\\xbf\\xee\\xdd\\x7b\\x9b\\x8e\\x6c\\x91\\x25\\xca\\x26\\x2d\\xcd\\xb2\\xb0\\x22\\x00\\xb1\\xd1\\x58\\x0a\\x05\\x23\\xec\\x18\\x67\\x18\\x05\\xa2\\x67\\xa5\\xfc\\xd8\\x2f\\x1a\\x19\\x85\\xc8\\x71\\x9c\\xa8\\x60\\x18\\x04\\x93\\x20\\x94\\xa8\\x43\\xc9\\xb6\\xeb\\x05\\x44\\x19\\xf3\\xd3\\xff\\xfe\\x67\\xac\\xc2\\x4a\\xbe\\x5c\\x40\\x87\\x55\\x83\\x52\\x8f\\x74\\x50\\x05\\x65\\xd5\\x72\\x7d\\x19\\x3a\\xbf\\x5e\\x91\\xe2\\xf3\\xa5\\x28\\xfc\\xe5\\xd1\\xd7\\x83\\x14\\xdb\\xf1\\x5b\\x8a\\xa0\\xeb\\xd1\\x05\\xfa\\x39\\x71\\x57\\x41\\x7d\\x10\\x84\\x28\\x4b\\x05\\x7d\\x40\\x49\\x31\\xf6\\x55\\xfb\\x0d\\xc3\\x48\\x9d\\x54\\x9f\\x81\\xc1\\x46\\x62\\xb7\\x8e\\x35\\xdc\\x2a\\x58\\x57\\x14\\xf9\\x62\\xe7\\xe3\\x4e\\xd9\\xd4\\xa7\\x3d\\xa4\\x91\\x35\\x1c\\xf4\\xc3\\xe8\\x90\\x0c\\x64\\x25\\xd3\\xf7\\x45\\xb4\\xce\\x55\\xa4\\x25\\x2d\\xf4\\x42\\x73\\xd4\\xa8\\x8b\\xf6\\x88\\x76\\x54\\xae\\x29\\x91\\x5c\\x96\\x2c\\x4f\\xb3\\x8c\\xbf\\x12\\x7f\\x4a\\x13\\xb8\\x7c\\xf9\\x1d\\x0c\\xfa\\xbc\\xb0\\x9a\\x77\\x6a\\xcf\\xe0\\x1d\\x08\\x7a\\x39\\x83\\x81\\x23\\xe4\\x5f\\xbb\\xfe\\x25\\x0a\\x34\\x68\\xe1\\x6b\\x29\\x40\\x1b\\x68\\x25\\x85\\x49\\x90\\xb9\\x2e\\x10\\xf6\\x42\\x6e\\x53\\x61\\x0e\\xfd\\x8d\\xca\\x8b\\x47\\x46\\xc7\\xaa\\xa8\\x4a\\x38\\x07\\x56\\xae\\x34\\xee\\xac\\x33\\xef\\x5c\\x1a\\xa8\\xb7\\xe0\\x3a\\x03\\x4b\\x3b\\x61\\x4f\\x6c\\xb9\\xa9\\xc3\\x90\\x62\\x1e\\xeb\\x0e\\x4f\\x68\\xdd\\x58\\x6c\\x7c\\x6d\\xcc\\x11\\xf2\\x00\\x73\\xd7\\xf7\\x07\\xb4\\x9a\\xfa\\x2b\\x67\\xc4\\xe9\\xb8\\xbf\\x9d\\xa3\\x38\\x44\\xfd\\xc8\\x40\\x57\\x57\\xf7\\x94\\xee\\x19\\x9c\\x4d\\x9b\\x75\\x38\\x5c\\xde\\xe5\\x9a\\x95\\x99\\xf1\\x14\\x64\\xb3\\x70\\x8e\\x76\\xbf\\x38\\x45\\x55\\x70\\x46\\x91\\x02\\x78\\x2b\\x8c\\x40\\x04\\x00\\xdd\\x34\\x21\\xba\\xf4\\x82\\x01\\xb7\\x0e\\xef\\x4f\\x2d\\x8a\\x4e\\x26\\xb2\\xd8\\x32\\x1f\\x11\\xc9\\xa2\\xd7\\x7e\\xd3\\xce\\x2c\\x30\\x18\\x57\\x7d\\x53\\xcb\\xba\\xb0\\xd1\\xd5\\x25\\xb8\\x61\\xf0\\x4c\\xf4\\x04\\xd2\\x12\\x97\\x5a\\xdf\\x40\\xa7\\x47\\xc4\\xf5\\xeb\\x98\\x10\\x8d\\x1c\\xb1\\x14\\x19\\x52\\xd4\\xe8\\xbf\\xbe\\x47\\x1f\\xf5\\x92\\x02\\xbf\\xd4\\xf9\\xe4\\x93\\x8b\\xd1\\x63\\x3e\\x4b\\xa8\\x37\\xb4\\xd6\\x37\\xe6\\x7f\\x4e\\xd9\\xda\\x3a\\x56\\x39\\xe6\\xb0\\xb3\\x7c\\x56\\xbf\\x81\\xf5\\xdf\\x4c\\xe3\\x39\\xbd\\xbe\\xbd\\xf9\\xd8\\xcc\\xa4\\x79\\xc1\\xc8\\xda\\xae\\x22\\x13\\x46\\x06\\xbe\\xf1\\xb9\\xc7\\x31\\xd7\\x1a\\x6c\\xa0\\xc7\\x02\\xd6\\xc7\\x03\\x72\\x8c\\x73\\x8b\\xd2\\x98\\xdf\\x7d\\x95\\x4b\\xe5\\x4a\\xf1\\x42\\x6d\\x5b\\xbc\\x8c\\x6c\\x66\\xdd\\x6f\\xbc\\xee\\xb7\\xdb\\x19\\xe1\\xe1\\x65\\xa1\\xbb\\x46\\x32\\xd3\\xdf\\xbb\\x0b\\xab\\xef\\x2e\\x03\\xbb\\x62\\x09\\xa7\\xee\\xf7\\x9d\\x30\\x2a\\xdb\\x07\\x4e\\xcb\\xca\\xdd\\x5f\\xa4\\x99\\xa4\\x64\\x63\\x22\\xce\\x0d\\x10\\x36\\x0e\\xde\\xbe\\x7d\\xf5\\xa9\\xca\\xfd\\xbe\\xf2\\xea\\xf6\\x5c\\xd2\\x39\\xe0\\x21\\xb1\\x43\\xff\\xe8\\xa3\\x23\\xc3\\x64\\xb8\\xcf\\xb7\\x41\\x1f\\x7d\\xaf\\xfb\\x1a\\x0d\\x39\\xa4\\x1b\\x7f\\x6c\\x6b\\x54\\x06\\xae\\xd9\\x80\\x75\\x57\\x75\\xb6\\x52\\x25\\xa7\\xbc\\xae\\x2d\\xc1\\x55\\x82\\x44\\x20\\x46\\x96\\xd6\\xb1\\xff\\xb1\\x10\\x3c\\x02\\x8d\\xe5\\x56\\x4e\\x6e\\x95\\x8b\\x98\\xc3\\xc2\\x37\\xf7\\xff\\x6d\\xda\\x38\\x25\\x3b\\x8a\\x44\\x1a\\x8c\\x3b\\xbc\\x66\\x35\\x53\\x94\\xcc\\x9d\\x8c\\xbb\\x2f\\x6d\\xec\\x63\\x2b\\xf7\\xb3\\xc9\\x25\\x17\\xe3\\x98\\xe4\\xe2\\x8b\\xf1\\x92\\x79\\x89\\xc8\\xb3\\xe2\\x2f\\x16\\x27\\x33\\x71\\x17\\x4b\\x24\\xf4\\xb9\\x62\\x11\\x55\\x44\\x7f\\x4a\\xe2\\x60\\x77\\x07\\x7b\\xe2\\xbe\\xad\\xf2\\x94\\x73\\x3b\\x6a\\x50\\xcf\\x8e\\xec\\x65\\x67\\x96\\xd1\\xff\\x2a\\x7d\\xcb\\x88\\xab\\x16\\x3f\\xf9\\xf0\\x34\\x16\\x3e\\xac\\xfe\\x08\\x00\\x6e\\x31\\x48\\x41\\xba\\x9a\\xc6\\x99\\x0c\\xdb\\xa4\\x71\\x1b\\x96\\xe4\\x93\\x0a\\x9f\\xaf\\xae\\xae\\xb2\\xd2\\x47\\x0f\\x45\\x15\\xb0\\x98\\x68\\x9f\\xde\\x9f\\xe6\\xe9\\x55\\x8f\\x3c\\xb2\\x8a\\x86\\x0f\\xc3\\x0e\\x6f\\xcc\\xf3\\x05\\xcf\\xc7\\xf4\\x3e\\x77\\x02\\x6f\\xbf\\x49\\xcd\\xa4\\x8c\\xda\\x5a\\xbe\\xce\\x2c\\x41\\x80\\x23\\xc5\\x2b\\x1f\\xaf\\x0f\\x97\\xd9\\x56\\xfc\\x7c\\xfd\\xc7\\xb3\\xfb\\x07\\xc0\\x64\\xa6\\x10\\x89\\x7a\\xb1\\xb0\\xdf\\xea\\x40\\x0e\\xcd\\xa7\\xd4\\x9c\\x7e\\x8e\\xfa\\x54\\x83\\x35\\x55\\x78\\x43\\x60\\x64\\xed\\xd8\\xc6\\x9e\\xc2\\xf3\\xe6\\xe6\\xfb\\xf5\\xf4\\x62\\xc3\\x5d\\xfe\\x23\\xae\\x19\\xfb\\xf4\\xd3\\x85\\x0b\\x36\\x3a\\xfd\\x9b\\x6a\\x5d\\x19\\x74\\x57\\x55\\x16\\x32\\x29\\x4b\\xfc\\x2a\\x1f\\xae\\xa1\\x68\\xc0\\x35\\x8f\\xa5\\x97\\xc6\\x1b\\x8a\\x4d\\xf1\\xe9\\x8f\\xc5\\xc2\\x59\\x43\\x42\\xd3\\xfc\\x8d\\xfc\\x17\\x87\\x8e\\xc4\\xc2\\x29\\x59\\xe7\\xb3\\xca\\xb3\\xe2\\xc4\\xb8\\x2c\\x3f\\xf7\\xfc\\xe9\\xb3\\x97\\xec\\x6e\\x9b\\xfb\\xd1\\xba\\x78\\x64\\x41\\x36\\x16\\x21\\x40\\x1c\\x9c\\x81\\x87\\xa9\\x8a\\x16\\xa3\\x43\\x36\\x62\\xd3\\xb2\\x9c\\x21\\x94\\xe3\\xeb\\x09\\x5e\\xd7\\x44\\xc7\\x4c\\xe2\\xe9\\x86\\xe9\\x5c\\x5a\\x66\\xc3\\x84\\x97\\xeb\\x2a\\xc0\\x05\\x9b\\xc7\\xb6\\xb1\\x3d\\xd1\\xbf\\x0a\\x17\\xa2\\x12\\xdf\\x55\\x06\\xfa\\x09\\xf0\\x54\\xc3\\x54\\x6e\\x18\\xd5\\xf3\\xff\\xd8\\x0b\\xda\\xf2\\xe4\\x33\\xd1\\x7d\\x6a\\x8f\\xba\\xd2\\xff\\x25\\x93\\x84\\x60\\x78\\x65\\x91\\x2e\\x2b\\x4d\\xfc\\xbb\\x80\\xcf\\xcc\\x7e\\xf2\\x5e\\x15\\x4a\\x8a\\xf8\\x36\\xef\\xa9\\x78\\x49\\xd7\\x40\\x56\\x0f\\xaa\\x6a\\xef\\xa8\\xa6\\x2d\\x3b\\x88\\xd5\\x2b\\x4c\\x15\\xe9\\x43\\xea\\x82\\x56\\xd6\\x86\\xd6\\x61\\x00\\x18\\xff\\x80\\x5b\\x22\\x3d\\xbc\\xee\\x09\\xa3\\x28\\x5c\\xf2\\xcf\\x06\\xd6\\x28\\x68\\x78\\xc4\\x2b\\xda\\x98\\x37\\xfc\\x28\\x80\\x8c\\xc7\\x6a\\x05\\x09\\x2c\\x11\\x03\\x67\\x0c\\x0c\\x62\\xa1\\x06\\x03\\xce\\xb1\\x68\\xd0\\x1a\\x19\\x70\\x9b\\x1c\\x69\\x78\\xde\\x5a\\x9f\\x36\\xae\\x73\\x0b\\xf9\\xe5\\x5f\\x7e\\xe9\\xf5\\xcb\\xf0\\xb0\\x17\\x4e\\x0c\\xe2\\x4c\\xc3\\x12\\x88\\x3a\\xed\\x85\\xf6\\x77\\xe1\\x5d\\xd7\\x32\\x64\\xb5\\x22\\x86\\x31\\xba\\x19\\xb4\\x98\\x2e\\xc7\\xcc\\xcb\\x38\\xc6\\x01\\x80\\x05\\x2f\\xd7\\x6a\\xcd\\x99\\xeb\\xbd\\x97\\x89\\xe8\\x28\\xb0\\x28\\x60\\xe1\\x26\\x0a\\x88\\xb7\\x62\\x01\\x43\\xd1\\xb8\\x91\\xd2\\xbf\\x1e\\x3f\\x20\\x14\\xd9\\x59\\xd4\\xab\\x8a\\xcb\\xbf\\xb3\\xa1\\x43\\xa9\\x89\\x09\\x93\\x89\\x14\\x38\\xaf\\x99\\xf1\\xae\\xee\\x2f\\x1b\\xaa\\x8a\\xad\\x05\\xf3\\x55\\xd0\\xfe\\xf1\\xc3\\xd5\\xca\\xed\\xf0\\x33\\xab\\x3e\\x53\\x20\\x23\\x5c\\xdc\\x3b\\xad\\xbf\\xfd\\x61\\x02\\x9c\\xc9\\xf4\\xcd\\xe1\\x61\\x7d\\xd4\\xc8\\x30\\x44\\xeb\\x9d\\x78\\xc7\\x83\\xe1\\x04\\xd6\\xd6\\x01\\xf2\\xaf\\xe3\\xb7\\x20\\xd9\\xf7\\xce\\x6e\\x25\\x70\\x5c\\x8c\\xf5\\x1d\\xfe\\x4f\\x52\\xb6\\x50\\x98\\x7d\\xf5\\xd1\\x2f\\xad\\x3a\\x56\\x7a\\x61\\xed\\x09\\x1f\\xef\\xfb\\x1c\\xb7\\x60\\x51\\x20\\x85\\x65\\x61\\x41\\x0a\\x72\\x9b\\x1f\\xce\\x3c\\x27\\x8d\\x20\\x62\\xe0\\xc0\\xde\\x06\\x5a\\xae\\xeb\\xef\\x78\\xf4\\xb1\\xb4\\xb3\\x60\\x01\\x3e\\xfa\\x42\\x82\\x11\\xd9\\x90\\xfa\\x22\\xea\\x44\\xa5\\x7c\\x4d\\x9d\\xcf\\x77\\x7b\\x97\\xf8\\x1e\\xb6\\xa6\\x57\\xaf\\xd7\\xda\\x7b\\xda\\x19\\x42\\x15\\xdb\\xc2\\x5c\\x50\\xcb\\xbe\\x28\\xfc\\x22\\x49\\x76\\x1e\\x3c\\x58\\x5e\\xde\\xb7\\xb0\\x65\\x4b\\xac\\xf1\\xd7\\x50\\x5f\\x7e\\x3e\\xf5\\x70\\xdf\\xcb\\x60\\x02\\x9a\\x40\\xfe\\xee\\xb1\\x37\\x93\\xdb\\xb1\\x07\\xc3\\x68\\x92\\x56\\x0e\\x54\\x2d\\x4f\\x2c\\x43\\x79\\x8e\\x0d\\xa4\\x07\\xf9\\x97\\xf5\\x5d\\xbc\\xfe\\x90\\x0b\\x5d\\x4e\\xbb\\xef\\x4f\\x75\\x57\\xd6\\xe4\\x9a\\xe3\\xd3\\xb9\\xd3\\x3c\\xd6\\x42\\x25\\xfe\\xb5\\x0a\\xae\\xec\\x32\\x69\\x50\\x78\\xaa\\x31\\x3d\\x7b\\x3f\\xc8\\x44\\xaa\\x89\\xb5\\x94\\x66\\x65\\x98\\x30\\x75\\x5d\\xf9\\x93\\xb1\\xa0\\x3d\\x73\\x24\\x33\\xb8\\x2c\\x89\\x51\\x38\\x1c\\x6f\\x06\\x76\\xf8\\x60\\x2b\\x0a\\x7c\\x29\\x33\\x3f\\x66\\x40\\xfd\\x64\\x6d\\x1d\\xf5\\x39\\x9d\\x3e\\x78\\x38\\xb3\\xe0\\xf5\\x2e\\x84\\x35\\xac\\xc4\\xdb\\x6d\\x33\\x4a\\xc1\\xca\\xb9\\x44\\x89\\x81\\x22\\xd0\\x0c\\xc9\\x98\\x2e\\x46\\x6e\\x5e\\xf3\\x66\\xc1\\x2c\\x0e\\x8b\\x26\\xc9\\x15\\xd1\\x61\\x6d\\xc6\\xba\\x2c\\xcc\\x62\\xf6\\x75\\x82\\x75\\x2f\\xe2\\xb7\\x39\\x8e\\xb7\\xb2\\xcb\\x8f\\x59\\xd4\\xf2\\x27\\x8f\\xda\\xd2\\xde\\xce\\xf3\\x26\\xbb\\x03\\xc8\\x63\\x07\\xa6\\x87\\x36\\x29\\x62\\xc3\\xda\\xa2\\x7a\\xac\\xb1\\x27\\x74\\xb4\\x22\\xab\\xb2\\xae\\x9d\\xdd\\x18\\x5e\\x8f\\x0b\\xad\\x09\\x6d\\x08\\x22\\x6b\\xb5\\x71\\xf9\\x17\\x37\\xc8\\x9d\\xf6\\x26\\xcc\\x1a\\x4d\\x45\\xee\\xd4\\xdd\\x9b\\x49\\x05\\xc4\\x27\\xcc\\xd7\\x14\\xd7\\xd7\\x89\\xd4\\x3d\\x43\\xba\\xdd\\x87\\x9d\\xce\\x79\\x26\\x2c\\xad\\xee\\x4d\\x6e\\x70\\xdc\\x3a\\xce\\x42\\xf4\\x3e\\x33\\x43\\x74\\xc9\\xa8\\xca\\x62\\x3f\\x97\\x6e\\xa4\\x37\\xdd\\x15\\x58\\xda\\x7c\\x73\\xb1\\x75\\x5e\\x08\\x32\\xa3\\x7e\\x64\\x2b\\xf5\\xc4\\x56\\x64\\x25\\xbc\\xfe\\xb6\\xe1\\xbe\\xde\\x69\\x36\\x5e\\x23\\x0b\\x49\\x4a\\x69\\x8f\\x70\\x2c\\xf0\\xc9\\xda\\x7a\\xfd\\x4b\\x9d\\x63\\x63\\x5d\\xa8\\x6e\\xe7\\xce\\x3a\\xf9\\xa2\\x3e\\x41\\x58\\xdd\\x1d\\xa5\\x99\\x42\\x1d\\x5e\\x72\\x81\\x8d\\xa2\\xa2\\x18\\xe6\\x73\\x81\\xeb\\x36\\xf2\\x60\\x8f\\xdc\\xd2\\xb3\\xdf\\x8e\\x0c\\x2b\\xd2\\x15\\x80\\xc1\\xc9\\x96\\x9b\\x9c\\xf6\\x81\\x2a\\xf8\\x4b\\x19\\x9a\\x0e\\x39\\xe4\\xb7\\x56\\xf4\\xf5\\x1a\\x15\\xa5\\xa4\\xe3\\xb7\\x57\\x71\\x70\\x54\\xeb\\x81\\x03\\x2d\\xdc\\xdf\\xda\\x62\\xab\\x24\\x85\\xf4\\xb5\\x0b\\x49\\x2e\\x4b\\x30\\x42\\xe5\\x77\\x65\\x68\\xd5\\x13\\x6f\\x98\\xa2\\xb2\\x7f\\x1f\\x16\\x5d\\x51\\x2c\\xc3\\x5a\\xab\\x17\\xf4\\x22\\xb7\\x4a\\xf8\\x4c\\x92\\x4b\\x96\\xf1\\x9e\\x0f\\x0e\\x88\\x48\\xc0\\x22\\x16\\x66\\xfa\\x11\\x2d\\xcc\\xa5\\xca\\x60\\xf3\\x0d\\xdf\\xab\\xdb\\x03\\xf9\\x1d\\x7c\\xba\\xef\\x5b\\xfb\\x23\\x7f\\xe9\\x48\\xd1\\x88\\x1d\\x39\\xcb\\xbe\\x0d\\xd9\\xac\\x1b\\x7d\\xa5\\x34\\xe1\\x1a\\x57\\xf8\\x16\\x82\\xc7\\x83\\x27\\x38\\xc2\\xf7\\xe1\\x8b\\xa7\\x6c\\x53\\xaf\\xac\\x4f\\xad\\xb6\\x3b\\x94\\x44\\xe9\\x14\\x04\\x4b\\xc2\\x73\\x55\\xf6\\x7d\\x17\\x8e\\x3e\\xd0\\x63\\x77\\x72\\x5d\\x41\\x77\\x55\\x37\\x87\\x20\\x8f\\x91\\x29\\x89\\x29\\x91\\x1d\\x8e\\x04\\xd4\\xa6\\xdd\\x64\\x69\\xf9\\x5f\\x11\\x9f\\x8d\\xc1\\x95\\x43\\x87\\x60\\x32\\xf3\\x3c\\x0c\\xad\\xd9\\xe9\\xd1\\x1d\\x8c\\x9c\\x15\\x92\\xfe\\x6f\\x5a\\x6b\\x4f\\x8e\\xc8\\x86\\xe6\\x7e\\x5f\\xbb\\xbf\\xde\\xf8\\x68\\xac\\xae\\x32\\xf1\\x9e\\xd4\\x81\\xd4\\x80\\xc6\\x1b\\xe8\\xf6\\x9a\\xec\\x3b\\x9f\\xd1\\x5c\\x17\\x8b\\x27\\x32\\xff\\xc0\\x69\\x3f\\x45\\xda\\x0f\\x0b\\x0d\\x71\\x06\\xd9\\xcb\\x8d\\xc5\\xe9\\x7f\\xfb\\x7b\\x57\\x31\\xf0\\xa3\\x3e\\xb3\\x79\\x9b\\x92\\x28\\xf7\\xc7\\x2c\\xc4\\x04\\xc4\\xf8\\x77\\x06\\x1e\\x55\\xe6\\x18\\x0e\\xd6\\x99\\xdf\\x90\\x6f\\x9f\\xff\\xab\\xf3\\xb4\\x41\\xdf\\x23\\x9d\\xd1\\xdb\\xdf\\x1e\\xed\\xfa\\x29\\x6a\\x9c\\x3b\\x63\\x32\\xd8\\xf1\\x9f\\x21\\x03\\x6f\\xec\\xc4\\xce\\xfa\\x91\\x73\\xd3\\xa8\\x7f\\x87\\x3e\\x28\\x1d\\x3f\\x5b\\x51\\xe1\\x63\\x6d\\xcc\\x17\\xbe\\x57\\x01\\xb4\\x9d\\x75\\xfa\\xdd\\xbe\\x69\\x97\\x49\\xe1\\x9d\\x52\\x27\\x9d\\x96\\x0e\\x99\\xcd\\x8c\\x95\\x71\\xda\\x50\\xa2\\x01\\xba\\x68\\x59\\x82\\xa0\\x1f\\xa4\\xc7\\xd2\\x8e\\xa2\\xf5\\xd7\\xb8\\x71\\xc7\\x0b\\xdb\\x19\\x81\\xd1\\x9f\\x79\\x21\\x39\\x30\\xf9\\x05\\x53\\x60\\xc2\\xf8\\xd3\\x6a\\x5b\\x09\\x89\\x79\\xf7\\x86\\xd4\\xa7\\xc1\\xc5\\xcf\\xcf\\x2f\\x4c\\xcf\\x1e\\x9c\\x15\\xa7\\x6a\\xa7\\xfc\\x4b\\x4b\\x9d\\x1d\\x31\\x1d\\x1d\\x62\\xdd\\xfa\\x2f\\xe8\\xbe\\x00\\x4c\\x91\\x17\\xb8\\x45\\x7c\\x18\\xdb\\x5e\\x26\\xdf\\xac\\x40\\xfe\\x45\\x03\\x93\\xc6\\x2c\\xf9\\x67\\x15\\x83\\x8b\\xfe\\x96\\x81\\x97\\x97\\x9b\\x3c\\xe2\\xf5\\xd7\\xfd\\x23\\x33\\x7d\\xcb\\x9c\\xa6\\x38\\x8d\\x47\\x9c\\xce\\x5e\\x1f\\x39\\xf6\\xfe\\x70\\xe6\\x82\\x8c\\x0f\\x0f\\xcb\\x97\\x05\\x64\\xed\\x89\\x96\\x8d\\xc9\\xc2\\x6b\\x76\\xdc\\xc9\\x80\\xd7\\x51\\xd9\\x57\\xf5\\x8c\\x56\\xde\\x3f\\x87\\xa6\\x26\\xa9\\x3f\\x7c\\xfe\\x8f\\xc1\\x2d\\x94\\x05\\xd8\\xa6\\x46\\x76\\x05\\xbf\\x74\\x8a\\xb7\\x5d\\x9a\\x02\\x17\\xfc\\x82\\x9d\\x38\\x53\\xee\\x66\\x08\\x53\\xcd\\x8b\\x18\\x26\\xdd\\x2b\\x11\\x12\\xf9\\x4b\\x65\\x68\\x9c\\x99\\x60\\x38\\x34\\xb1\\x1b\\x42\\x8b\\xae\\xd1\\x3c\\xa3\\xea\\xb9\\x74\\xea\\xd4\\x25\\x27\\x29\\x77\\x01\\x73\\x5e\\x39\\xb9\\x44\\x4e\\x9a\\xa7\\xa6\\x66\\x1e\\xac\\xab\\x5b\\xe5\\x2c\\xab\\x2c\\x78\\x0e\\xaa\\xba\\x66\\x5a\\xe7\\xb1\\x34\\x28\\xfb\\xda\\x15\\x6c\\xb1\\xd9\\x2c\\xc1\\x22\\xc9\\x5e\\x5e\\x2b\\x5d\\xe8\\x0d\\xb1\\x3e\\x64\\xc7\\xde\\x67\\xe5\\xee\\x40\\x57\\x4d\\x34\\x36\\xf6\\xdb\\x5d\\xe4\\x10\\x69\\xbf\\xd3\\xf8\\xed\\xd6\\x10\\xbb\\xbd\\x7f\\xd3\\xfa\\xec\\xca\\x0d\\xad\\x75\\xf4\\x6c\\xce\\xc9\\xcd\\x72\\x97\\xb8\\x90\\x81\\x87\\x36\\x8a\\x9f\\x93\\xc5\\x0d\\xab\\x47\\x92\\x12\\x87\\x8b\\x86\\x13\\x93\\x20\\xf4\\x60\\xaa\\xcd\\xc1\\x55\\xb8\\xf1\\x21\\xd2\\xc1\\x12\\x9e\\xf7\\x9f\\x3a\\xc5\\x92\\x92\\x8a\\x22\\x13\\xa9\\x79\\xca\\x5b\\x65\\x6c\\xeb\\xab\\x5c\\x5f\\x52\\x0e\\xf7\\x0c\\x0a\\xdb\\xf5\\xc4\\x8c\\xf7\\xc2\\x3c\\x4b\\x00\\xad\\x92\\x28\\x53\\xa8\\x31\\xcd\\xac\\xd7\\x3b\\x9b\\x3a\\x7b\\xc5\\x8d\\x68\\xc6\\xa8\\x94\\xfd\\x46\\x36\\x8c\\x70\\xad\\x9d\\x24\\x2b\\x4a\\xba\\x9c\\x7e\\xfc\\x3f\\x8b\\x2e\\x5d\\x6c\\x32\\xe9\\xeb\\x33\\x19\\x4c\\x7d\\xe6\\xd7\\xa9\\x29\\x2a\\xdc\\x6a\\x30\\x58\\xc3\\xa9\\x71\\x57\\xb1\\x9b\\x41\\x4c\\x2c\\x8d\\xde\\x13\\xab\\x17\\xf4\\xba\\x27\\x3b\\xfe\\xb8\\x3a\\x45\\xba\\xcb\\xb0\\x3e\\x76\\xcf\\xc8\\x9a\\x7a\\xe0\\x54\\x45\\xc1\\xe1\\x15\\x0d\\xc2\\x73\\xfb\\x26\\xd6\\x37\\x6b\\x92\\x30\\x24\\x17\\x44\\x26\\x57\\x1c\\x8c\\xc5\\x0c\\xd6\\x9c\\xa8\\x5a\\x52\\xf5\\x4c\\xd8\\x21\\x64\\x42\\x87\\xc2\\x2e\\x21\\xf5\\xf9\\x4d\\x25\\xff\\x8e\\x03\\xf9\\x7d\\x58\\x8a\\xec\\xd7\\x4a\\x32\\x33\\x9d\\x5b\\x9c\\x11\\xdc\\xa6\\x09\\xf7\\xb4\\x5f\\x54\\x91\\xe6\\xa1\\x90\\xf8\\xef\\x4c\\xca\\x56\\x1b\\x59\\x34\\xbc\\x29\\xb3\\xae\\x5c\\x59\\xf3\\x51\\x34\\x09\\x33\\x18\\xfd\\xd1\\xea\\xac\\xe4\\xaf\\xd7\\x01\\x5f\\xf8\\x49\\x00\\x12\\xb4\\x9e\\xf5\\x1e\\xad\\xb0\\x48\\xc7\\x7a\\xcd\\x8e\\xeb\\x9a\\xc9\\xe7\\x0f\\xf8\\xfe\\x1b\\x1f\\xa8\\xed\\xd2\\x80\\xc6\\x80\\x86\\xc0\\x65\\xf6\\xf6\\xeb\\x69\\x90\\xd9\\xaf\\xc7\\xfb\\xd6\\x8c\\x7e\\xf4\\x49\\x8b\\x28\\xae\\xa0\\x45\\x9b\\x36\\xfa\\x92\\x13\\xb2\\x26\\x6d\\x8c\\x22\\x32\\xf2\\x99\\x35\\xc5\\xcd\\x27\\x82\\x48\\xc5\\x4a\\x6f\\xa3\\x31\\xa8\\x6f\\xe5\\x58\\x65\\x5e\\x10\\x87\\x17\\x39\\xab\\x86\\x5a\\xd7\\xa5\\x5b\\xd3\\x8b\\x8b\\xaa\\x47\\xab\\xbf\\xbf\\x68\\x9f\\xb1\\x2e\\xf0\\xfa\\x82\\x8d\\x26\\x84\\xb6\\x11\\x44\\x13\\x9b\\x30\\x2b\\xfa\\x8d\\x03\\xfc\\x8b\\x8a\\x3d\\xb9\\x21\\xd1\\xdd\\x40\\x48\\xe7\\xd3\\x85\\x24\\x65\\xad\\x0d\\xa9\\xa9\\xef\\x1f\\x96\\xef\\x9e\\xbe\\xd0\\xb0\\x51\\xa2\\xdc\\xb0\\x3c\\x63\\xf5\\x1d\\x08\\x91\\x9b\\xe1\\x1b\\xfc\\x74\\xca\\xd0\\xf6\\xa7\\xea\\xb9\\xee\\xd7\\x4e\\x2b\\xc3\\x2a\\x13\\xd2\\x94\\x1b\\xce\\x45\\x2a\\xd5\\x9f\\xb1\\x6a\\xea\\x18\\xa6\\x44\\xed\\xb8\\x3d\\x5d\\x55\\xe4\\x29\\x52\\xf9\\x9d\\x71\\xce\\xf2\\xe5\\xf0\\x51\\xd8\\x36\\x98\\x9d\\x8e\\x39\\x9c\\x7e\\xa5\\xd5\\xe6\\x4a\\x86\\x61\\xf8\\xef\\x7c\\xab\\xfc\\xb0\\xa4\\x27\\xf9\\x4f\\xeb\\xd2\\x2d\\x6a\\x22\\x63\\xa1\\xae\\x2b\\x19\\x8e\\x51\\x5e\\xaf\\xfe\\x4c\\x6a\\x14\\x6e\\x29\\xbc\\xd2\\x42\\xd4\\x11\\xb1\\x41\\xb1\\x11\\x3b\\xbe\\x48\\x9f\\x4a\\x9f\\xc4\\x8d\\xa0\\xd6\\xa8\\x76\\x05\\x8d\\xfe\\xd9\\xd6\\x1e\\x80\\x0a\\x86\\x51\\x5d\\xe6\\xf5\\xd5\\xa3\\x1e\\xff\\xa4\\x5c\\x5f\\x44\\xfe\\x27\\x11\\x6e\\xba\\xb1\\x64\\x5e\\x82\\xb0\\x00\\xa4\\xe7\\xe8\\xe4\\xa3\\x4d\\xe2\\x9b\\xab\\xa2\\x7b\\x7b\\xcb\\x65\\xa5\\xaa\\xd8\\x4a\\xf1\\x4b\\xbc\\x13\\xdb\\x5d\\x5b\\x7d\\x96\\xb4\\xd8\\x1b\\x70\\x80\\xb3\\xd7\\xef\\x0c\\xb8\\x52\\x59\\x10\\xaf\\x34\\xad\\x34\\x29\\xc3\\x96\\x4d\\x34\\xab\\xe3\\x9b\\xc3\\x92\\x78\\xb5\\x83\\x8b\\x5f\\xbe\\xc2\\xe0\\x03\\x8d\\xcb\\x73\\x34\\xc7\\x87\\xc5\\xff\\xae\\x59\\x05\\xbf\\x39\\x2c\\x62\\xdd\\x1f\\xbf\\x2b\\x8f\\xbc\\xac\\x4f\\x1c\\x2e\\x3b\\xf2\\x7f\\xb3\\x9d\\x65\\xff\\xae\\xbd\\xcd\\xd4\\x10\\x9a\\xf2\\x7a\\x8a\\xfa\\x41\\x8d\\x7c\\x8f\\xa1\\x4c\\x7c\\xaf\\xa4\\x8e\\x77\\x8d\\xa7\\xce\\xc5\\x73\\x4e\\x04\\x43\\x73\\xca\\x0b\\x51\\xd9\\xd7\\x1b\\xaf\\xea\\x1e\\xa3\\xa0\\x16\\x60\\x3b\\x6f\\x9c\\x3e\\xbf\\x9d\\x7b\\x64\\x19\\xbf\\x1a\\x29\\xaf\\xd9\\xe0\\xa6\\xbe\\x5e\\x4c\\x93\\xde\\x5e\\x7f\\x5b\\xdf\\xe3\\x65\\x82\\xeb\\xfb\\xfa\\x10\\x7a\\xc7\\x7c\\xe9\\x90\\xba\\x61\\xf0\\xec\\x48\\x57\\xe9\\xc2\\xe7\\x7d\\x8c\\xe2\\xf3\\x85\\xfe\\xd5\\xec\\x72\\x25\\x9c\\x0c\\xe4\\x72\\x5d\\x55\\xbf\\x71\\x17\\xbb\\xc4\\x51\\xa0\\x5a\\x12\\xa8\\x43\\x74\\xeb\\x8d\\x60\\x47\\x1f\\x6c\\xa1\\xf5\\xbc\\x0c\\xe4\\xe9\\x0c\\xf2\\xd4\\x7d\\x75\\x1a\\xc7\\x9e\\x9e\\xc9\\x88\\xe2\\x07\\x51\\x9e\\xe5\\x28\\x17\\xdb\\x81\\xbc\\x50\\x97\\x23\\x6f\\xab\\x5c\\xbb\\x29\\x24\\x95\\x2c\\x96\\x7d\\x95\\x3b\\x3c\\x03\\xef\\x52\\x19\\x64\\x29\\xc7\\x47\\x95\\xb7\\xa5\\xbd\\xfc\\x73\\xae\\xf4\\x3c\\x7a\\x24\\xa4\\x4b\\x6d\\x36\\x29\\x55\\xff\\xab\\xb3\\xe3\\xe7\\x35\\x39\\xf2\\xfd\\x31\\x69\\x8f\\x28\\xa8\\xec\\x16\\x7d\\xb6\\x45\\x11\\x9a\\x6e\\x22\\xa9\\x79\\x62\\x6e\\xe3\\xa5\\xc4\\xb0\\x9a\\x0d\\xe5\\x37\\xe2\\xe3\\xfe\\x12\\x9b\\x10\\x7e\\x33\\x22\\xb1\\x50\\x25\\x55\\x48\\x93\\x56\\x2a\\xe3\\x63\\x13\\x29\\xdf\\xaf\\x8a\\xd4\\xbf\\xaf\\x8a\\x88\\xad\\xfa\\xab\\xe7\\xa7\\x6a\\x6f\\x05\\x1a\\x0b\\x48\\xc0\\x10\\xa3\\xf5\\x69\\x7f\\x29\\xdd\\x13\\xfc\\x18\\x3f\\xb2\\x62\\x07\\xd6\\xb2\\xcc\\x04\\xa3\\xed\\x67\\x1c\\xcc\\x92\\x3f\\x1a\\xbc\\xc3\\x25\\xe1\\x4e\\x66\\xf1\\xca\\x05\\x95\\xa2\\x5b\\x34\\xd3\\x3c\\x29\\x64\\xa5\\x41\\xcf\\x65\\x92\\x38\\x05\\x48\\x34\\xf8\\x37\\xb6\\x5c\\x7b\\x9e\\xad\\xbf\\xd9\\xe3\\x70\\xb4\\x4a\\x07\\x58\\xd7\\xf9\\x6c\\xb6\\x29\\xbc\\x79\\xc5\\xfa\\x6f\\x99\\x88\\xa9\\xeb\\xfd\\xd6\\xdf\\xf5\\x9e\\xfd\\x36\\x33\\xdf\\x55\\x81\\x6c\\x87\\x2a\\xd7\\x14\\x55\\xa7\\xd6\\xda\\x27\\xcc\\x47\\xb7\\x9b\\x1a\\xec\\x4a\\x12\\xcb\\x55\\x25\\x3f\\xb1\\x66\\xe3\\x81\\xc9\\x56\\xfe\\x6f\\x1e\\x09\\x1b\\xe9\\x1f\\xb1\\xe1\\xee\\x0c\\xbb\\xf1\\xcb\\xc9\\x37\\xb3\\x3f\\x6b\\xff\\xec\\xb3\\x78\\x3d\\xdf\\xd1\\xb5\\xe0\\xfb\\xbd\\x16\\x4b\\x5c\\xac\\x49\\xf4\\xed\\xa8\\x52\\x10\\x55\\x57\\x7e\\x03\\x03\\x8e\\xed\\x5e\\xf8\\x7d\\x56\\x72\\xf7\\xee\\xe6\\x84\\xd1\\xe8\\xc7\\x50\\xd8\\x98\\x2e\\x23\\xfa\\x68\\xe2\\xe7\\x27\\x00\\x07\\xc7\\x3f\\xda\\xda\\xdf\\xc7\\xf3\\xe5\\xe5\\x24\\xea\\xcc\\xae\\x56\\x6c\\xb9\\x67\\xff\\x4a\\x2c\\x29\\x68\\x05\\xc7\\xbf\\x13\\x8f\\x95\\x54\\x94\\xc2\\x2d\\xb5\\x66\\x47\\x7e\\xeb\\xf3\\x3f\\xa9\\x4a\\x7e\\xd2\\x3f\\xec\\xdd\\xc2\\x4c\\x2a\\x35\\x91\\x8e\\xa8\\x14\\x65\\x4a\\x94\\x23\\x92\\x93\\x4d\\x15\\xd8\\x37\\xdd\\xb0\\x57\\x50\\xcf\\x2c\\x5f\\x2c\\x0b\\x0a\\x62\\x8a\\xaf\\x21\\xd0\\xed\\xf6\\x23\\x09\\x48\\x70\\x71\\x8d\\x41\\x3c\\x80\\xcd\\x66\\x79\\x06\\xd9\\xac\\xd8\\x65\\x74\\x17\\xc5\\x30\\xf5\\xa6\\xe9\\xec\\x9d\\x61\\xc6\\x91\\x07\\x39\\xc8\\xa9\\xb5\\x07\\xc1\\x43\\x6d\\xf8\\xf0\\x44\\xc4\\xa3\\x6c\\x06\\x5d\\xb2\\xea\\x20\\x91\\xec\\x1c\\xfb\\x62\\x0a\\xf7\\xad\\x60\\xfd\\x4c\\x38\\x2a\\xa1\\x5d\\xb0\\xa6\\x41\\x6e\\x8e\\x96\\x61\\x8c\\x97\\x03\\x4f\\x88\\x67\\x85\\xc7\\x63\\x65\\x42\\xfd\\x29\\x1a\\x82\\x03\\x20\\x6a\\xb8\\x98\\x3d\\x8b\\x89\\x5e\\x44\\x81\\x44\\xd1\\xfb\\xe0\\x03\\x7d\\xde\\xb1\\xff\\x72\\x4f\\xb5\\x78\\x7e\\x25\\x6f\\xed\\x62\\x58\\xc2\\xb2\\xcc\\x53\\x2e\\xf9\\xe6\\xce\\xf2\\xe0\\xbe\\x29\\x4b\\xbe\\xc5\\x75\\xfb\\x7f\\x58\\x05\\x32\\x0e\\x10\\xa1\\xc3\\x52\\xc4\\x6e\\x44\\x46\\xf8\\xe6\\xef\\x12\\x69\\x0f\\x6d\\xcd\\xb6\\x4a\\x43\\xde\\x7d\\x23\\x09\\x87\\x09\\x8b\\x38\\xe4\\x9e\\x41\\x59\\x49\\xa1\\x34\\xc6\\x98\\x0e\\x49\\xca\\xc2\\x25\\x11\\x67\\x2b\\xcf\\x46\\x94\\x60\\x73\\x20\\x24\\x12\\xfa\\xf9\\x42\\x25\\xdf\\xed\\xd4\\x78\\x6f\\xfe\\x33\\xf9\\x9f\\x37\\xbd\\x9a\\x9d\\xdf\\xc1\\xa7\\xae\\x3b\\x70\\x18\\x8a\\xc5\\x37\\xdf\\x34\\xd4\\x4b\\xbd\\xfe\\x33\\x9a\\xf5\\x9b\\x36\\xf8\\x37\\x6c\\x68\\x68\\x8e\\xf4\\xdf\\x95\\xd6\\x7f\\x05\\x28\\x0c\\xcb\\x12\\x56\\xa4\\x70\\xdb\\x31\\xdf\\x8b\\xad\\x72\\xd5\\x2f\\xfc\\x7b\\x0c\\x84\\x17\\x09\\x5d\\x1a\\x74\\xf4\\x6f\\xd2\\x66\\x7b\\x45\\xc9\\x22\\xa0\\x5b\\x70\\xf4\\x1c\\xed\\xba\\x8c\\x12\\xcd\\x85\\xa0\\x64\\xf1\\xda\\x84\\x7a\\xe2\\x18\\x4b\\x74\\xb0\\x2c\\x98\\xac\\x33\\xaf\\xab\\xb3\\x4b\\x04\\xcc\\x1f\\x00\\x2e\\x23\\x5d\\x82\\xe1\\x94\\x1f\\x79\\x51\\xe0\\x04\\x95\\x79\\x47\\xd0\\xde\\x29\\x38\\x61\\xef\\x6a\\xb7\\x20\\x2c\\xfd\\xa2\\x28\\x80\\xb4\\x72\\xce\\x35\\xb3\\x56\\xf6\\x23\\x23\\x28\\x85\\xdf\\xc3\\xde\\x74\\x84\\xf1\\xda\\xdd\\x3d\\x34\\xd6\\xb5\\xe1\\x59\\xb7\\x3a\\xa3\\x14\\x8c\\xb7\\x4d\\xd1\\x1a\\xc6\\x5e\\xc9\\xac\\x44\\x90\\x5c\\x96\\x70\\xac\\x09\\xc9\\xca\\x66\\x61\\x74\\xcb\\xd8\\x37\\xc7\\xb9\\xc8\\x09\\xf0\\xcb\\xbe\\xfc\\x27\\x78\\x3d\\x76\\x05\\xfe\\xf3\\xa5\\xd7\\x6f\\xea\\x6d\\x4d\\xba\\xe9\\x97\\x91\\xe1\\x9b\\x2d\\x2d\\x47\\xde\\x3e\\x72\\xd4\\x4b\\xf5\\x7b\\xdf\\x69\\x25\\x1f\\x0e\\x08\\x44\\x0d\\x81\\x46\\xce\\xe7\\xd8\\x22\\xb6\\x7c\\x8c\\x3e\\xde\\xe2\\x85\\xd6\\x8b\\xae\\xdb\\x59\\xff\\xe2\\x8b\\xf5\\xdc\\x92\\xc1\\x9e\\xe9\\xfc\\x47\\x8c\\x7c\\xe1\\x47\\x35\\xe4\\xb5\\xe2\\xae\\xee\\xae\\x42\\x8d\\xce\\x39\\xb7\\x41\\x1d\\x27\\xcd\\x95\\xc6\\xa9\\x1b\\x26\\x5f\\x1c\\x90\\x1b\\x20\\x38\\x35\\x24\\x81\\xa3\\xe3\\x5c\\x57\\xf9\\xa3\\xa9\\x54\\xf4\\xa7\\x25\\xed\\x30\\xb6\\xaa\\xeb\\xd6\\x6b\\x96\\x47\\x54\\x76\\x99\\x25\\x92\\x46\\xc5\\x5d\\x85\\x1f\\xad\\x81\\xa8\\xf1\\x6e\\x40\\xea\\xdd\\xa8\\xfb\\xad\\xa8\\x9c\\x4b\\xca\\x2b\\x2b\\x5f\\x59\\xb4\\x71\\x63\\xd1\\x4a\\xbd\\xf7\\xbc\\x8c\\xfc\\xa6\\x2b\\xa6\\xb5\\x70\\xd2\\x9e\\x9f\\xff\\xb1\\x61\\x9d\\x42\\x3d\\xa3\\x8e\\x77\\x0e\\x65\\x0e\\x39\\xe3\\xa1\\x4a\\xb1\\x6e\\xc3\\x3f\\x7e\\xa6\\xda\\xd7\\xc5\\x19\\x4c\\xe2\\x2e\\x65\\x7f\\xab\\xbb\\xb1\\xd4\\x17\\xbb\\xd2\\xcd\\x33\\x56\\x0e\\x0c\\x72\\x59\\x7e\\x67\\x33\\x52\\xf5\\x4e\\x6d\\x43\\x43\\x82\\x4a\\x77\\x53\\x97\\xe8\\xce\\x3a\\xd5\\xef\\x37\\x6d\\x7e\\x2e\\xea\\x9a\\x81\\x7b\\xa4\\xf7\\xbf\\xc3\\x6b\\x7d\\x5b\\x7c\\x5b\\xfa\\x0e\\xe4\\x1a\\x66\\x67\\x05\\x81\\xf8\\xb2\\x32\\x1e\\x1e\\xc4\\xf9\\xc7\\x9f\\xca\\x38\\x35\\x88\\x87\\x9a\\x6a\\x56\\xaf\\x5d\\x74\\x1c\\x2c\\xb9\\x0d\\x73\\xf9\\x2b\\x40\\x25\\xaa\\x45\\x33\\x61\\xaf\\xb1\\x87\\xaa\\xde\\xc6\\x92\\x4e\\xca\\xea\\x7d\\xa3\\x07\\x8b\\x5f\\xf4\\x6d\\x06\\x7a\\xf8\\x84\\x53\\x3b\\x0e\\x64\\x7d\\xe6\\x0d\\xf2\\x6e\\x6b\\x2d\\xfa\\xdd\\xc1\\x9b\\x6e\\x19\\x90\\x1b\\x93\\x1d\\x90\\xad\\x50\\x48\\x49\\x9f\\xf1\\xbb\\xe6\\xef\\xfe\\xa5\\x36\\x31\\x92\\x6f\\x52\\xad\\xbb\\x7b\\xa3\\x3e\\x93\\x9d\\x53\\x70\\xc6\\x6e\\x2d\\x07\\xfc\\xf2\\xbe\\x75\\x25\\x2a\\x65\\xf9\\xdc\\x19\\xf9\\x89\\x4e\\x8a\\x3c\\x37\\x89\\x88\\xa4\\x68\\x27\\xbe\\x5d\\x6c\\x59\\x3f\\x51\\x74\\x26\\x3c\\xd0\\xdb\\xd7\\xf7\\x6f\\x53\\x10\\x50\\xb7\\x99\\x75\\x3f\\xb5\\x15\\xae\\x59\\x3c\\xb9\\x73\\xe0\\x34\\x7d\\xc3\\x93\\x23\\x57\\x67\\xd7\\x1a\\x9a\\xb9\\x03\\xbb\\xe1\\x38\\x03\\x43\\x88\\xac\\xb1\\x91\\xa9\\x87\\x00\\x56\\x27\\xb3\\xe8\\xd2\\x9b\\x31\\x4e\\xab\\xc0\\x81\\x64\\x58\\xd6\\x22\\x5a\\x66\\x5c\\x1e\\x06\\xb9\\x45\\x1e\\xc6\\x3c\\xc5\\x85\\xfe\\x03\\x00\\x86\\x59\\xa7\\x12\\xb0\\x8b\\xa9\\x0c\\xce\\x75\\x29\\x4d\\x56\\x25\\x3e\\x03\\x76\\x30\\xed\\xde\\xee\\xe1\\xa2\\x80\\x84\\x9b\\x44\\xd2\\xb8\\x68\\x39\\x6d\\x3e\\x03\\x0c\\xd7\\x5b\\xbd\\x5d\\x21\\x32\\xe3\\x41\\x1e\\x86\\x65\\x79\\x97\\x76\\x7f\\x54\\x40\\x34\\x9d\\xc3\\x9c\\xa0\\x13\\x38\\xe7\\x06\\x3b\\x48\\x6b\\x7d\\x6b\\x2b\\xd1\\x17\\x58\\x2c\\xe7\\x7e\\xa4\\x1e\\x22\\xce\\x67\\x3d\\x44\\x8d\\x8e\\xc2\\x90\\x71\\x1b\\x31\\xf3\\xa6\\x62\\xe9\\x40\\x8a\\x97\\x14\\x00\\x64\\xb1\\x8a\\x47\\x5e\\xf2\\x44\\xdc\\x5c\\xbc\\x79\\xab\\x50\\xbd\\x21\\x79\\x43\\x75\\x9a\\x2e\\xf3\\xd8\\xdb\\x77\\x8c\\xbf\\x8b\\x6b\\x88\\x46\\x5a\\x0f\\x77\\xc8\\x3b\\xf8\\xda\\x7c\\xe3\\xfc\\x6a\\xf7\\xef\\xf2\\x6b\\xdf\\x40\\xbc\\xf3\\x76\\xfe\\xef\\xea\\xb4\\xd5\\x4a\\xa7\\x10\\x5f\\xfb\\x2d\\x46\\xf0\\x82\\xc5\\xe7\\xee\\xc3\\x57\\xe1\\x1d\\x0e\\x5c\\xfb\\xe9\\xa7\\x5e\\x4a\\xd5\\xf6\\x6b\\xd7\\x66\\x47\\x4d\\xa1\\x7c\\xc5\\xd1\\x5d\\x58\\x12\\x4e\\x27\\x7e\\x8b\\x59\\x9f\\x7e\\x8d\\xcb\\xd4\\xab\\x43\\xf0\\xc0\\x3e\\x91\\x65\\xf1\\xb7\\x56\\x8e\\x6b\\x63\\xe8\\xad\\x9b\\xc0\\x09\\x57\\xdf\\x18\\x09\\xa7\\xbc\\xbf\\x53\\x7d\\x5e\\xf6\\x6f\\xab\\x14\\xb1\\x3e\\xff\\x09\\x5f\\xac\\x62\\xfc\\xd8\\xdb\\xda\\xce\\x85\\x6b\\x87\\x24\\x19\\x5d\\x84\\x91\\x1a\\x20\\x25\\x38\\x09\\x59\\x48\\xa8\\xb5\\x9b\\x25\\x62\\xb2\\xb6\\xb4\\xf6\\x77\\x17\\x31\\x2c\\x61\\x04\\x24\\x30\\xd7\\x2b\\x5f\\x1c\\xec\\xb3\\xd2\\x6e\\xe4\\x06\\x72\\x9b\\xa2\\xfa\\x32\\x36\\x67\\x3c\\xc3\\xd4\\xb1\\xf2\\xfc\\x32\\xda\\x18\\xe3\\x28\\xe3\\x32\\x72\\xf3\\x49\\x56\\xbe\\xa4\\x14\\x3a\\x8f\\xf0\\x7a\\xbf\\x53\\xfe\\xdf\\x25\\x60\\xf0\\x48\\xca\\xe3\\x87\\xfe\\xc3\\x81\\xe7\\xc7\\xad\\xba\\xbb\\xee\\x47\\x82\\xb7\\x59\\x8e\\x89\\xc4\\xa9\\x18\\x1a\\xa9\\xa2\\xe8\\xb2\\x89\\xac\\xf7\\xd7\\x56\\xe6\\x18\\xfa\\xa5\\x52\\x71\\xce\\x9a\\x79\\x3f\\x6b\\x22\\x4b\\xa8\\xc9\\xc9\\xd7\\x05\\x10\\x6f\\x42\\x22\\xb1\\xb5\\x95\\x4d\\x49\\x98\\xec\\x4c\\xe1\\x3d\\xdf\\x11\\xd0\\xa1\\x89\\x31\\xa5\\xe5\\x4d\\x6b\\xbe\\x29\\x09\\x0a\\x46\\xc1\\x41\\x25\\x7b\\x1c\\xd3\\xa5\\x72\\x53\\x8c\\xa6\\x23\\x20\\x24\\x28\\x38\\xa0\\xf3\\xe4\\xab\\xc4\\x94\\x4e\\x5f\\x6c\\x2c\\x1e\\x28\\xce\\xfb\\xab\\x14\\x93\\xea\\x0c\\x0c\\xc1\\x9f\\x20\\xeb\\x67\\xca\\x36\\x6d\\x2a\\x0b\\x4d\\xba\\x23\\x8a\\xf0\\xf3\\x2e\\x57\\x2d\\x49\\xde\\x7d\\x4f\\xca\\xc6\\x30\\xf4\\x20\\x7a\\x4a\\x99\\xdb\\xeb\\xc8\\xba\\x66\\xad\\x39\\x71\\x89\\x84\\x54\\xe9\\x0c\\xbe\\x88\\xa2\\xd2\\x7a\\x8b\\x60\\x10\\x3f\\xe7\\x10\\xfc\\xa2\\x5e\\x15\\x03\\x9a\\x41\\xd0\\xb3\\x21\\x42\\xa3\\xaa\\x2d\\x5e\\xb9\\x95\\xe4\\xf2\\xb1\\x91\\x36\\xff\\x1a\\x7f\\x83\\xa1\\x56\\x4a\\x78\\x16\\x2b\\x88\\x02\\x10\\xb7\\x63\\x8c\\xd0\\x9b\\xaf\\xea\\x7a\\x2e\\x92\\x4c\\xa6\\xc1\\x88\\x67\\xca\\xd7\\xb4\\x98\\xa4\\x0c\\xd6\\xb7\\xac\\x19\\xef\\xb6\\x2a\\x57\\x4e\\x4f\\x6d\\x95\\xad\\xba\\xd6\\x8d\\xdc\\x5a\\x40\\x75\\x7a\\x62\\xaf\\xef\\x06\\x42\\xf7\\xfd\\x9d\\xfd\\x7f\\x3c\\x53\\xa6\\xea\\xf6\\x8d\\xc1\\x86\\x10\\x38\\xa0\\x7c\\x67\\x15\\x07\\x61\\xfb\\x7c\\xa6\\x91\\xdb\\xb7\\xcf\\xc8\\x65\\xce\\x6f\\x17\\x48\\x3f\\xe2\\xd0\\x1e\\x17\\x1f\\xd6\\x9e\\x88\\x71\\x09\\x49\\x92\\x8d\\xca\\x96\\x98\\x73\\x01\\xcb\\x01\\x91\\x4a\\x52\\x8a\\x5f\\x7c\\xb1\\x38\\x45\\xb5\\x0f\\x59\\x7b\\x73\\xdd\\xc6\\xb4\\x08\\x75\\xe2\\x71\\xea\\x3d\\x1b\\xd6\\xe2\\x70\\x53\\xde\\xb1\\x6b\\xab\\xfa\\xfb\\xfd\\x74\\x83\\x14\\xa9\\x2f\\x28\\xaa\\xaf\\x1b\\xac\\xaf\\x1f\\xac\\xab\\x2f\\x2a\\x58\\x4e\\xe0\\x78\\xde\\x30\\xfb\\xf8\\x1b\\xfe\\x75\\xc9\\x5b\\x3d\\xd5\\xa8\\xa6\\xf0\\x90\\x69\\xfd\\xd7\\x23\\x71\\xa1\\x5c\\x68\\xdc\\x48\\x46\\x84\\xe9\\x50\\x21\\xaa\\xa9\\xee\\x79\\x2b\\x38\\x31\\x38\\xe2\\x37\\x5a\\xe8\\xf3\\x93\\x3c\\xe8\\x4e\\xb9\\xfe\\xcf\\x69\\x0d\\xeb\\x3f\\xbc\\xc0\\xd1\\xcb\\x4b\\x82\\x97\\x37\\xff\\x70\\x64\\x7d\\xa9\\xfe\\x4f\\xfa\\xf2\\x3b\\x41\\xcf\\xed\\x56\\x7c\\x2c\\xa0\\x48\\xde\\x67\\x6f\\xee\\xac\\xf5\\xfe\\x2e\\xc1\\x13\\x65\\x19\\xde\\x7d\\x39\\xb9\\x25\\x7a\\x76\\x52\\x2c\\xcb\\xea\\xe4\\x92\\x21\\xd6\\x33\\x34\\xda\\x3e\\x52\\x1f\\x52\\x3f\\xb2\\x76\\x43\\xdb\\x86\\x0d\\x7b\\xf7\\x4a\\xd2\\x7b\\x47\\x86\\x8d\\x7e\\xd7\\xb4\\x11\\x34\\x13\\x18\\x58\\xad\\x82\\x6a\\xc1\\xc5\\x80\\xda\\xa3\\xb9\\x80\\x36\\x77\\x40\\x2c\\x02\\xec\\x8a\\x3b\\xec\\x7a\\xbf\\xe8\\x87\\x17\\xbc\\xc6\\x14\\xfa\\x11\\x18\\x5e\\xbd\\xe7\\x3d\\x10\\xb6\\x71\\xc0\\xdc\\x71\\x18\\x05\\x0d\\xe2\\x66\\x78\\x13\\xf1\\x87\\x17\\xd0\\xb0\\x65\\x0e\\xcc\\x8f\\xc6\\x77\\xd1\\xfc\\x2f\\x8b\\x4a\\xff\\x23\\x95\\xd5\\xd5\\x5e\\xbf\\x78\\x67\\xab\\xf2\\x57\\xdf\\x82\\x62\\xf7\\x6b\\x27\\xa6\\x1a\\xe4\\x09\\xc7\\x06\\x14\\xdb\\xf1\\xe9\\x6d\\xb8\\xed\\x24\\xe1\\x08\\x16\\x04\\x01\\x13\\x6f\\x31\\x42\\xdc\\x34\\x89\\xa0\\xc8\\x42\\x5a\\x22\\x6a\\x07\\x8c\\xac\\x93\\x7a\\x34\\x9d\\x17\\xe5\\x89\\x35\\x94\\x9d\\x62\\x0d\\x04\\x7d\\xff\\x03\\xb4\\xb0\\xa1\\x72\\x66\\x06\\x21\\x05\\x1a\\x56\\x32\\xe7\\x69\\xc1\\xc8\\x33\\x22\\xf3\\xc8\\x08\\x34\\xe3\\xfa\\x2d\\x03\\x8d\\x3d\\x44\\xa2\\x97\\xb8\\x22\\x6f\\x79\\xfa\\x2f\\xde\\x26\\xa6\\x36\\x17\\xbd\\x35\\x3e\\xfe\\xcf\\x7a\\xf4\\x74\\xa2\\x39\\xe2\\x9f\\x95\\xb2\\x28\\x26\\x4a\\x36\\xd2\\x0f\\xad\\x12\\xa4\\xa9\\x79\\xc6\\x25\\xf9\\x33\\xcf\\xb0\\x3c\\x67\\x2e\\x40\\x66\\x33\\xff\\xca\\x33\\x1c\\xe9\\x78\\x31\\x74\\x7b\\x73\\x96\\x8c\\x3d\\x96\\x0b\\xb4\\x9c\\x9f\\x92\\x9c\\xae\\xc9\\x6f\\x81\\x10\\x63\\x2d\\x6b\\xc6\\xfb\\x6e\\x35\\xc6\\xe4\\x2e\\xd5\\x8b\\xba\\x46\\x37\\x72\\xbb\\x0b\\xc3\\xa4\\x74\\x97\\x99\\xbc\\x37\\x78\\xde\\x28\\x54\\x98\\x3d\\x30\\xeb\\xf5\\xb5\\xf9\\x8a\\x4e\\x6b\\x48\\x52\\x2b\\x67\\x23\\x81\\x24\\x48\\x30\\x0d\\xc8\\x14\\x9a\\x1b\\x9c\\xb3\\x1d\\x6c\\xc8\\xe4\\xe4\\xa2\\x1c\\xd6\\x1a\\xb4\\xe4\\xa6\\x4d\\x88\\xd2\\x8d\\x5f\\xc7\\xe3\\x29\\xeb\\x29\\x56\\x6e\\xc5\\x1c\\x9e\\x16\\xe8\\xa6\\xa4\\x94\\x16\\xb0\\x6c\\x44\\xc6\\xf1\\x3e\\x40\\xfc\\x20\\x3b\\x68\\xb4\\x61\\x82\\x45\\xdb\\x92\\x6c\\x4c\\x86\\xeb\\x1a\\xc3\\x8a\\xa3\\x46\\xe4\\x88\\x91\\xbf\\x41\\x06\\xc0\\xde\\xf2\\xf8\\x0d\\x28\\x96\\x9d\\x3d\\xcb\\x4f\\x08\\xc6\\x4d\\x3b\\x36\\xf5\\x49\\xe6\\x25\\xbf\\xcb\\x38\\x51\\x76\\x5c\\xad\\x50\\x1f\\xd7\\xbf\\x1b\\x10\\x54\\x7e\\x3b\\xef\\xdb\\xf8\\x40\\x4b\\x5c\\x0b\\xee\\xb6\\x04\\xb0\\x13\\x8b\\x46\\x17\\xb1\\xc6\\x6d\\xce\\x9c\\xf9\\xf9\\xa1\\xff\\xbd\\xcc\\x76\\xbd\\xf5\\x3f\\xde\\x8f\\x3e\\xb2\\x6d\\xf3\\xae\\x5b\\x3f\\xf1\\x5a\\x0b\\x1e\\x62\\xaf\\x3d\\x3c\\xca\\x67\\x6d\\x93\\x67\\xd2\\xcf\\x14\\x34\\xc7\\xd8\\xbe\\x3a\\xd3\\xd6\\xd0\\xcc\\xf6\\xcc\\x8e\\xad\\x21\\x75\\xa6\\xd8\\xbe\\x56\\x7d\\x73\\x72\\x93\\x15\\x5c\\xfb\\x8f\\x82\\x7f\\x11\\xee\\xf4\\x01\\xfa\\x81\\xba\\x45\\xe4\\x41\\xe0\\xa3\\xe2\\x5d\\x9c\\x9d\\xeb\\xd0\\xc7\\x76\\x97\\x46\\x4f\\xd0\\xe6\\x3a\\x95\\x32\\x77\\x29\\x57\\x29\\x6d\\x6f\\xcf\\xcd\\xa1\\x22\\x82\\x5f\\x86\\x0c\\x78\\x7b\\xe7\\x38\\xd3\\xcd\\xbf\\x0f\\xb2\\xec\\xb6\\xd7\\x27\\xaf\\xbb\\xef\\x2f\\xb7\\x21\\x0c\\xf4\\x7a\\x82\\x89\\xde\\x6c\\x3e\\xf5\\xd1\\x78\\x85\\xae\\x86\\x19\\xe7\\x79\\x3d\\x4e\\x2e\\x18\\xfa\\x03\\x80\\xa8\\xe8\\x1f\\x3f\\x64\\x94\\xb3\\x2c\\x33\\x87\\xe6\\x18\\xf0\\xce\\xed\\x24\\xee\\x7b\\x56\\xb6\\x75\\xd6\\xac\\xe5\\x1f\\x9d\\x9a\\xea\\x55\\x82\\xa7\\xa7\\xe4\\x9e\\x5e\\xc3\\x71\\xc5\\x94\\x24\\x86\\x71\\xe0\\xaf\\xde\\xf5\\x85\\x07\\x1e\\xec\\x1b\\x8b\\x0c\\x91\\x77\\x1e\\xa5\\x26\\xa9\\x80\\x00\\x6d\\x68\\x06\\xe3\\x98\\x4a\\x82\\x68\\x26\\xe1\\x73\\x49\\x3e\\x11\\xee\\x5f\\xa0\\x4a\\xa9\\x1a\\x13\\x25\\x8b\\x7c\\x20\\x6a\\xac\\x7f\\x2b\\x74\\xc9\\x64\\x3d\\x15\\x3c\\x20\\x99\\x95\\x24\\x2c\\x8b\\xcd\\xdd\\x79\\x9f\\xbc\\x8e\\x1d\\x87\\x9f\\x58\\x4e\\xdc\\x15\\x47\\x89\\x6e\\x2e\\x50\\xda\\xd1\\x13\\x49\\x91\\xb1\\xd9\\x55\\xfb\\x59\\xad\\x1f\\x1b\\x6c\\xc5\\xed\\x42\\x13\\xba\\xdb\\x87\\xb6\\x3c\\x7e\\x43\\xab\\xbb\\x65\\xcd\\xb5\\x4e\\xf0\\x0e\\x30\\x7d\\xba\\xb7\\xb5\\xe5\\xf5\\x44\\x0b\\xfd\\xd2\\x9d\\x15\\xf2\\x59\\x17\\x8b\\x93\\x79\\xbc\\x13\\x29\\xc7\\xbc\\xc8\\x32\\x9e\\x63\\xe0\\x18\\x2f\\x75\\x3e\\x28\\xcb\\xcd\\x28\\x78\\x84\\x2a\\x34\\x1b\\x5b\\xda\\xfd\\x98\\xef\\xe5\\xb1\\xff\\x1c\\xd5\\xda\\xc2\\x4b\\x4b\\xad\\xfd\\xde\\x6d\\xd6\\xfd\\x83\\xb8\\xea\\x8d\\x3f\\x6d\\xbe\\x85\\x27\\x10\\x42\\x13\\xd8\\x18\\x5f\\x67\\x06\\x05\\x08\\x5d\\xbb\\xb2\\xec\\x93\\x4f\\x7a\\x79\\x9e\\x65\\xef\\xbf\\x1f\\xc6\\xa8\\x20\\xc0\\xd2\\xd7\\x4a\\x23\\x25\\x08\\xb0\\xa7\\x2c\\xc6\\x4e\\x3e\\x1d\\x64\\xd9\\xa1\\x06\\x80\\x53\\xaa\\x40\\xad\\x0d\\xef\\x77\\x0f\\x98\\x01\\xf6\\x70\\x09\\xb7\\xc1\\x27\\x96\\x75\\x71\\xcc\\x6d\\x0b\\x3b\\x02\\x23\\x3d\\x47\\xcb\\xe5\\x0c\\xcd\\x60\\xba\\x3d\\x0d\\x88\\xe4\\x06\\xe9\\x7c\\xa3\\x86\\xf1\\x30\\x00\\x64\\xa3\\x6d\\x50\\x06\\x1a\\xcd\\x40\\xc9\\xe7\\x19\\x07\\x8f\\xd6\\x22\\x6b\\xcb\\x4a\\xb9\\x27\\xd7\\x70\\x65\\x93\\xb8\\x14\\x99\\x41\\xb1\\x9f\\xb0\\xfb\\x04\\x4f\\x90\\xaa\\xbd\\x29\\xa4\\xd2\\xcf\\x41\\x95\\xb3\\x12\\x8e\\x90\\xc5\\x37\\x39\\x17\\x1c\\x97\\x6e\\x4c\\x40\\x85\\x0c\\xb9\\x1d\\xf8\\x8d\\x21\\xb5\\x4e\\xa5\\x20\\x90\\x16\\x37\\xf8\\x47\\x6a\\xdb\\xb2\\x12\\x70\\x5c\\xc9\\x91\\x01\\x4d\\x86\\x45\\xbd\\x0c\\xf7\\xf4\\x39\\x13\\xd6\\x7b\\xa3\\x97\\x69\\x80\\xbd\\xec\\xce\\x7f\\xda\\x65\\x4a\\xa2\\x0c\\x3a\\xb9\\xf2\\x62\\xac\\xce\\xa7\\x8b\\xdd\\x0f\\x37\\xab\\xdf\\x26\\x38\\x76\\x62\\x42\\xdc\\xbb\\x57\\x34\\x95\\x7b\\xcf\\xac\\xac\\x8b\\xb7\\xf6\\x43\\xb6\\x59\\xe7\\x67\\x85\\xf2\\x0c\\xef\\x8e\\xec\\xba\\x83\\xe5\\xd8\\x3e\\x89\\x77\\xb7\\x7c\\xf8\\xf7\\x0b\\x2d\\x28\\xd8\\x70\\x2e\\xd0\\xc8\\xbb\\x88\\x5c\\x36\\x22\\xbb\\xf1\\x9a\\xb2\\xb2\\x5a\\xa4\\xd6\\xe4\\xda\\x8d\\x2d\\x6c\\x89\\x33\\x66\\x72\\x71\\xe6\\xd7\\xd5\\x59\\x8d\\x58\\xc0\\x56\\xb4\\x61\\xca\\x34\\xf6\\x9a\\xc0\\xa0\\x11\\x0d\\xc0\\xb3\\x5f\\x94\\xce\\x75\\x1d\\xcf\\x01\\x83\\x0b\\xfd\\xfd\\xb7\\xac\\x56\\x29\\xa9\\x2f\\x48\\x0f\\xbc\\x9b\\x21\\x67\\xb4\\xf6\\x6b\\x6e\\x66\\x1b\\x58\\xfd\\x9a\\x86\\x86\\x35\\x45\\xf5\\xf5\\x45\\xf9\\x0a\\x02\\x42\\x0f\\x2d\\x26\\x1a\\x73\\x29\\xb1\\xab\\x38\\x3d\\x25\\x8a\\x53\\xd3\\x95\\x75\\x2d\\xbe\\x16\\x90\\xe8\\x72\\x08\\xc6\\x38\\x93\\xbd\\xfc\\x2f\\x3c\\x26\\x38\\x82\\x95\\x54\\x6a\\xc2\\x8f\\xb1\\x28\\x36\\xf7\\xa0\\x3e\\x8a\\x9a\\xd4\\x4c\\x52\\x28\\x35\\xea\\x47\\x31\\x02\\xfd\\x4b\\xcb\\x5b\\xb0\\x24\\x20\\xa1\\xe9\\x16\\xfc\\x0c\\x3e\\xb4\\x87\\x3d\\x23\\x06\\x63\\xfa\\xdf\\x45\\x6d\\xb4\\x92\\xac\\x4f\\x15\\x59\\x1b\\x6d\\x8b\\x24\\x71\\x5c\\x85\\x0c\\x8d\\xe9\\xa7\\x5d\\x5f\\x28\\x3c\\x1b\\x63\\xb5\\x30\\xa8\\x52\\x77\\xa8\\xc9\\xea\\x98\\x08\\x5a\\xd9\\x30\\xe7\\x17\\xa7\\xc0\\x45\\x8f\\x89\\x72\\xca\\xd8\\xcf\\xd8\\x81\\x7e\\x23\\xe3\\x32\\x8a\\x02\\x27\\x30\\xe5\\xe5\\xb3\\x69\\xb6\\x34\\x28\\xf6\\xab\\xe2\\x77\\x7c\\x9b\\xd7\\x9f\\xf0\\xd2\\xb1\\x22\\xd7\\xce\\xa4\\xb7\\xdf\\xd3\\x95\\x6c\\x78\\x6b\\x4b\\xd9\\x04\\x9e\\x80\\x3d\\x4d\\x5a\\xdf\\x7d\\x7b\\xbf\\xba\\x81\\xde\\x99\\x14\\x6f\\xcb\\x6d\\xfa\\xf6\\x54\\x7f\\x42\\xf3\\xe4\\xb1\\x47\\xc7\\x76\\x25\\xbd\\x7d\\xf4\\xcb\\xa5\\x0e\\x06\\xdc\\xe0\\x90\\x3b\\xd4\\xe7\\x6f\\xa3\\x11\\x8b\\x87\\x6f\\x37\\xd0\\x45\\x0c\\x8d\\xd5\\x7b\\x47\\x3b\\x94\\x13\\xd9\\x70\\x33\\x83\\x3e\\x1c\\xe7\\x71\\x89\\xd3\\x86\\x5e\\x18\\xf9\\xd1\\xd6\\x1f\\x24\\x0b\\x3f\\xd2\\xc3\\xe1\\xf8\\x71\\xef\\xce\\x9d\\x63\\x5e\\xf7\\xe3\\xd8\\x83\\x65\\x30\\xe6\\x1d\\xa0\\xd6\\xe4\\xf2\\xf2\\xce\\x7f\\xdf\\x70\\xbb\\xa4\\xb9\\xf9\\x40\\x33\\x39\\x40\\x2e\\x69\\xb6\\x19\\xc9\\x73\\x30\\x28\\xeb\\xdf\\xf6\\xcf\\x94\\x99\\x45\\xc1\\x45\\x99\\xd1\\xb9\\x91\\xe9\\xf1\\x8d\\xa5\\xc9\\x99\\xa7\\x50\\xb0\\xb6\\x70\\x5f\\x7a\\x8a\\xc6\\x94\\x98\\x1e\\xb2\\xa2\\x86\\x9a\\x82\\xc6\\x66\\xd9\\x3f\\xe0\\x68\\xa5\\x92\\x2d\\xec\\x51\\x52\\x47\\xd3\\x7f\\x47\\x95\\xb4\\x11\\x26\\xdb\\x92\\x9d\\xfe\\x5a\\x6a\\xe6\\xa2\\x56\\x9f\\xf9\\xeb\\xfa\\x9b\\xb5\\x9c\\xbe\\xa0\\xa6\\xaf\\xab\\x42\\xd9\\x5d\\xd8\\xa4\\xa4\\x26\\xd3\\xc7\\xa8\\xd5\\x23\\xb3\\xd3\\x42\\x42\\x6c\\xc9\\xe3\\x2b\\x7a\\xb5\\x81\\x9f\\x49\\x0e\\x05\\x29\\xcf\\xfc\\x3e\\x2a\\xf3\\x51\\x4d\\x51\\x78\\x78\\xd8\\xea\\xb3\\x41\\x1a\\xf1\\xb7\\x2d\\x05\\x39\\x95\\xe5\\x3d\\xf2\\x73\\x9f\\x13\\xa6\\x08\\xcb\\x98\\x68\\x9c\\xc8\\xc8\\x4d\\x79\\xef\\xdc\\xf0\\x88\\x66\\x3c\\x20\\xa4\\x55\\xff\\xdb\\x9d\\xf8\\xd1\\xf8\\x90\\x7f\\xb7\\x1e\\x76\\x54\\x3f\\xfb\\x9e\\xc7\\x06\\xfb\\xdf\\xbf\\x98\\x8a\\x07\\x82\\x60\\x6d\\xa3\\xd2\\x4d\\x8d\\x47\\xc2\\xcb\\x4f\\x55\\x95\\xfa\\xbb\\x8d\\xf0\\x70\\xed\\x91\\xd1\\xd9\\x7b\\xc4\\xc0\\xfb\\x8e\\xad\\xad\\xb3\\x59\\x59\\xb3\\x63\\xf1\\x90\\x28\\xd5\\xe8\\xab\\x6b\\xab\\x48\\xec\\xaa\\x55\\xd7\\x12\\xf3\\xb8\\xbc\\xad\\x3f\\x12\\xdd\\x99\\xf5\\xbf\\xe4\\x35\\x78\\xe7\\xe6\\xfd\\xb2\\xde\\xc0\\xae\\xa5\\x05\\x3a\\xe3\\x31\\xfd\\xb9\\x42\\x84\\xae\\x5e\\x61\\x41\\x04\\x7e\\xf7\\x06\\xff\\xb6\\xa5\\x15\\x6b\\x0b\\x2b\\xd7\\x56\\x94\\xd6\\xb9\\x58\\xea\\xa8\\xcc\\x86\\x6c\\x02\\x94\\x51\\x98\\x05\\x27\\xc2\\xd8\\x01\\x94\\xc4\\x4a\\x6b\\x27\\x5d\\xfc\\x84\\xcd\\x0d\\x2d\\x9f\\xab\\x5b\\x21\\xb8\\x71\\x78\\x66\\x4d\\xa6\\x3c\\x28\\x7a\\x67\\x78\\x72\\xc4\\x23\\x91\\x63\\xfd\\xfd\\xd0\\x25\\x13\\xa0\\x0e\\xa8\\x8e\\xfa\\x5a\\x2a\\x35\\x47\\xa0\\x96\\xed\\xda\\x99\\xe7\\x2c\\xf0\\xbb\\xe9\\xe8\\xa7\\xeb\\xef\\x90\\xf3\\x51\\x82\\x2c\\xea\\x06\\x4f\\x65\\xe8\\xbc\\xba\\x8c\\x9f\\xaa\\x74\\xe9\\x3b\\x69\\x25\\x51\\xd2\\x21\\xfa\\x4f\\xe3\\x1e\\xdf\\x18\\x10\\xd0\\x45\\xde\\x28\\x5c\\x89\\x56\\xc7\\xd5\\xf8\\xcc\\x3b\\x6f\\x08\\x59\\x6d\\xd4\\x14\\xf5\\x37\\x5c\\xd0\\x90\\x8d\\x37\\x1e\\x9d\\x42\\x0e\\x9e\\x30\\x9f\\x33\\x81\\xe0\\x06\\xba\\xa1\\xf5\\x57\\xf4\\x45\\x14\\x92\\x1d\\x93\\xd1\\xe8\\xe6\\x0f\\x27\\xe4\\x0e\\xe4\\x45\\xe7\\x13\\x84\\x40\\xf7\\xf8\\xa1\\xba\\x6a\\x80\\x09\\xa9\\xdb\\xb2\\xb5\\x2e\\x98\\xbf\\x3e\\x50\\x5d\\xf5\\x43\\x69\\x5d\\xc8\\x96\\x2d\\x21\\x75\\xd7\\x0f\\xc6\\xae\\x23\\xdb\\xd6\\x91\\xd8\\x52\\x4d\\x23\\xd9\\x6f\\x0e\\xfa\\xed\\xe7\\x3e\\x99\\x0c\\xa9\\xdd\\x6a\\x5b\\x1f\\x9c\\x71\\xdd\\x75\\x71\\xd2\\xcb\\xab\\x9c\\x7f\\x27\\xd7\\x33\\x82\\x1f\\xc9\\x7c\\x24\\x78\\x32\\x09\\xaa\\x58\\x74\\x91\\xa8\\xd4\\x04\\x46\\xa4\\x4b\\x42\\x60\\xc5\\xf0\\xa4\\xe2\\x3a\\x41\\x36\\xf4\\x3d\\xb2\\x2a\\x25\\xe0\\xd8\\xe8\\xb6\\xd6\\x05\\x87\\x42\\x50\\xf0\\xf5\\x62\\x06\\x86\\x53\\x0b\\x30\\xe7\\x85\\xa0\\x12\\x5c\\xd2\\x15\\x2c\\x27\\xad\\x6f\\x44\\x1e\\x72\\xf7\\x91\\x43\\xfb\\x71\\xd6\\xe7\\x6d\\x0b\\x59\\xf2\\x06\\x31\\x75\\xf0\\xe1\\x0c\\xb7\\x1f\\x37\\x76\\x47\\xac\\x45\\x9b\\x01\\x03\\xd4\\x4d\\x5b\\x37\\xb5\\x6e\\x24\\x3f\\x56\\x51\\x95\\x55\\x3c\\x80\\xa8\\xaa\\x84\\x2a\\x3f\\xf6\\xfd\\xde\\xa6\\x16\\xf2\\xaf\\xa4\\xbd\\xbe\\xfc\\xe1\\x74\\x26\\x75\\x66\\x4b\\x47\\xa3\\x24\\x31\\x28\\xb1\\x51\\xd2\\xb1\\x65\\x26\\x75\\x4d\\x00\\x99\\x0e\\x99\\xa6\\x57\\xe4\\x2d\\xab\\x0f\\x8f\\x60\\x96\\xe5\\xad\\xa0\\x8f\\xc5\\x06\\xd6\\xd3\\x95\\xa3\\x3e\\xdd\\xc1\\x41\\x60\\xd9\\x3a\\xa9\\x1a\\x5b\\x07\\xf5\\x8b\\x8b\\x00\\x22\\xc7\\x58\\xd1\\x44\\x13\\x07\\xf5\\xc1\\x9e\\xb0\\x1f\\x4c\\x3b\\x9a\\x36\\x92\\x36\\x9a\\x06\\xab\\xc3\\x5a\\xc6\\xe9\\x4d\\xf9\\xc3\\x7d\\xae\\xb4\\xff\\xb5\\xf8\\xf3\\xff\\x94\\xf5\\xa7\\x8b\\x33\\x3a\\x1e\\x49\\xf2\\x80\\x25\\xcf\\x2c\\x0f\\x56\\x6c\\x55\\x12\\xe5\\x7c\\x5a\\xe7\\xe3\\x19\\x8c\\xab\\xe7\\x6e\\x2c\\x3e\\xc0\\x25\\xd3\\x52\\x82\\x88\\xb3\\xf8\\x80\\xad\\x5f\\xd4\\x13\\x13\\x1d\\x91\\xd9\\x27\\x46\\x65\\x9f\\xfa\\xff\\x17\\x10\\x33\\x2f\\xdf\\xaf\\xcc\\xb7\\x58\\xf2\\x72\\x17\\xee\\xbf\\x5f\\x5d\\x6f\\xe5\\x16\\x3a\\xb5\\x2f\\x27\\xd8\\x5c\\xe3\\x87\\xd8\\x59\\xa3\\x06\\x43\\xd5\\x67\\x26\\xbd\\xbc\\x2e\\x9f\\xb5\\x9c\\xee\\x6b\\x08\\x6b\\xe8\\xe8\\xc8\\x21\\x0e\\x84\\xcb\\xd9\\xe1\\xc0\\x50\\x6a\\x5c\\x96\\xd9\\x40\\xa2\\x96\\xf6\\x31\\xf3\\xc3\\xef\\x3e\\xc8\\xb0\\x6d\\x35\\xba\\xeb\\x6d\\x85\\xd6\\x45\\xdd\\x23\\xce\\xd9\\x7d\\xf0\\xca\\xea\\x51\\xd2\\x7c\\x60\\x56\\x5c\\x8b\\xeb\\x86\\x47\\x4e\\x8f\\x0c\\x3f\\x39\\x30\\x70\\x72\\xe4\\x71\\x68\\xbe\\x2c\\xbc\\x7d\\xcd\\x80\\x5a\\x28\\xd3\\x62\\x2b\\x8e\\xd5\\x85\\xa9\\x29\\xa9\\x8f\\x4f\\xeb\\x3d\\x27\\xce\\x04\\xf4\\x86\\x85\\x34\\x6e\\xc8\\xbf\\x6b\\xde\\xb9\\xde\\x04\\x3d\\x1f\\x45\\x25\\x52\\x51\\xf3\\xf4\\xab\\xb3\\xf6\\xab\\x8a\\xe1\\xe0\\xdf\\x65\\xb0\\x03\\xf3\\x3b\\x49\\xbd\\xd9\\xd0\\x55\\xb5\\xca\\x82\\x4b\\x83\\x13\\x83\\x4b\\xb1\\x65\\x55\\x57\\x95\\xc1\\x5c\\x4f\\x3a\\xf3\\x33\\x4a\\x33\\xa9\\xfd\\x78\\x3c\\x29\\x2a\\x69\\x1c\\xef\\xa7\\x98\\x4c\\xf0\\xa0\\x90\\xcc\\x4a\\x2e\\xc7\\x11\\xad\\x22\\x56\\xb1\\x4e\\x91\\x30\\xf1\\xd5\\xe4\\xad\\x49\\x4d\\x98\\x38\\x21\\x99\\x75\\xbc\\x74\\xe8\\x8b\\xd7\\x7f\\x8d\\xcd\\x20\\x7d\\x75\\x1f\\x5f\\xba\\xba\\xaa\\x22\\x3c\\x86\\x4d\\xc9\\xc1\\x4d\\x72\\xfa\\x2a\\xba\\x4a\\xc7\\x2c\\x48\\x27\\xa5\\x47\\x52\\xd2\\x34\\xd5\\x9a\\xb4\\x15\\xb7\\x5e\\x7f\\x9c\\x1a\\xa3\\x14\\x9c\\x71\\xd6\\x4d\\xfc\\x9c\\x12\\x72\\x60\\x3c\\x32\\x47\\x67\\xbe\\x38\\xec\\x72\\xa9\\x98\\xa8\\xf1\\xf7\\xd0\\x36\\x71\\xe5\\xb3\\x60\\x79\\x5a\\x5c\\x78\\x13\\x27\\x78\\x52\\x91\\xf8\\xf9\\x29\\x86\\xea\\xd7\\x6c\\x76\\xd7\\xa6\\x4d\\x22\\x08\\xea\\x7c\\x2d\\x37\\x75\\x45\\xff\\x71\\x12\\x42\\xad\\xca\\x56\\x5d\\x32\\xcc\\xaa\\x32\\xda\\x57\\x5c\\x2e\\xb3\\xc8\\xd1\\xc8\\x7d\\xa1\\xb7\\x1c\\x0a\\x44\\xfd\\xd8\\x6e\\x9a\\xc1\\x4e\\xed\\x3d\\xf7\\x64\\xba\\x00\\x84\\xd7\\xcf\\xd8\\xb3\\xfc\\x8f\\x7f\\x14\\xf7\\xee\\x9d\\x63\\x59\\xab\\x08\\xf7\\xb0\\x59\\x52\\x97\\x15\\x2e\\x7b\\x17\\x50\\xa1\\x2b\\x5c\\xf1\\x5e\\xb9\\xd2\\xf8\\x8a\\xd4\\x6e\\x93\\xa0\\x51\\xab\\xc9\\x74\\xb5\\xab\\x1b\\xe3\\xee\\xae\\x9b\\x91\\xb6\\x4e\\x0f\\xdc\\xec\\xee\\x3a\\xd4\\xd5\\x7d\\x35\\x78\\xc4\\x7c\\xb0\\xda\\x46\\x08\\x9d\\x71\\x8d\\x39\\x9f\\x69\\x1c\\xe6\\x08\\xb7\\x6e\\xdc\\xc2\\x46\\xa8\\x86\\x35\\x3a\\x27\\xb4\\x3c\\x6f\\x2d\\x2c\\xe2\\x6c\\x68\\x24\\xf0\\x9c\\x51\\x65\\x51\\xab\\xfe\\x1d\\x65\\xe5\\x9b\\x69\\x56\\x07\\xf5\\xdc\\x2f\\x87\\x49\\xc9\\x94\\xbe\\x93\\xa9\\x72\\x6d\\xca\\x05\\x58\\xf4\\xd7\\x85\\x0f\\x7e\\x74\\x07\\xdc\\x4a\\x1d\\x52\\x2d\\x7e\\xbf\\x3b\\x17\\x86\\x0d\\x83\\x1b\\xfa\\xb7\\xaf\\x53\\x1d\\xa2\\x16\\x7c\\x2f\\xfb\\x02\\x02\\x2a\\x2a\\x3a\\x43\\xea\\x97\\x8f\\x4c\\x5e\\xf4\\x8d\\x8d\\xdf\\x04\\xe3\\x10\\x87\\x20\\x53\\x89\\x01\\x7e\\x50\\x13\\xfe\\x5e\\x04\\x93\\xa7\\x23\\x48\\x24\\x22\\xe2\\x5d\\x1c\\xed\\xb8\\xf3\\xef\\x74\\xe2\\x80\\x87\\x6d\\x22\\xf5\\x97\\x7f\\x36\\x7e\\xf5\\xba\\x75\\xbe\\x8b\\xdb\\xcb\\xb3\\xee\\xc9\\xb1\\x53\\x98\\xbb\\xbc\\x92\\x59\\xa9\\xae\\xed\\x5b\\x5f\\xfc\\x71\\x40\\x6e\\x00\\x37\\xa1\\x84\\xd8\\xc7\\xb9\\xef\\xeb\\xfb\\x66\\x35\\xaf\\xba\\xdd\\xb7\\x79\\xb3\\x61\\xf7\\x26\\xc3\\xe6\\xbe\\xa0\\x55\\xb1\\x11\\xb1\\xab\\x82\\xfa\\x96\\xbf\\xdf\\x5e\\x53\\xb4\\x71\\x6d\\xfb\\x63\\x49\\x91\\x52\\xe1\\x2f\\xbf\\x85\\x46\\x5b\\xf4\\x13\\xa9\\x02\\xad\\xd6\\x90\\xa9\\xd6\\x39\\xd9\\xf8\\xc3\\x2a\\x35\\x1d\\x49\\x51\\x89\\xaa\\x44\\x7b\\x51\\x56\\xd1\\xe1\\x44\\xd5\\x25\\x95\\xae\\x57\\xb7\\x29\\x07\\x9b\\x8b\\x56\\xad\\x11\\x7f\\xac\\xea\\xee\\xae\\x74\\xc2\\x0b\\x6f\\x5f\\x5d\\xb8\\xea\\xbd\\xb9\\x70\\x93\\x0f\\x5b\\x2c\\xaf\\xbe\\x2a\\x67\\xbe\\x5f\\xf0\\x8d\\x3b\\x86\\x89\\xdc\\x48\\xf9\\xaf\\xa7\\x46\\x3b\\x8d\\xe5\\x4b\\xdf\\xfc\\xec\\xa2\\x94\\x32\\xc7\\x59\\x69\\x1e\\x15\\xff\\xcb\\x0a\\x2c\\xb8\\x0e\\x9d\\x81\\x8e\\x50\\x6f\\x5c\\xf4\\xe6\\x50\\x2d\\x36\\x9b\\xa8\\x4d\\xbe\\x43\\xa2\\x39\\x95\\x83\\x33\\x5b\\xc7\\x65\\x26\\x80\\x21\\xa5\\x74\\x24\\xd1\\x0a\\xcd\\xe6\\x7e\\xc9\\x8f\\x13\\x87\\xc4\\x6f\\xff\\xaf\\x0c\\xb6\\x62\\xa4\\xf2\\xf9\\x18\\xb9\\xff\\xcd\\x82\\xc1\\xee\\xb4\\xd1\\xb4\\x31\\xb4\\x81\\xa5\\x11\\xcf\\x99\\x1c\\x5a\\xb4\\xd3\\x77\\xcb\\xd2\\x9b\\xf0\\x96\\xa0\\xd5\\x2d\\x91\\x5b\\x2b\\x29\\x09\\xa6\\x2e\\xfd\\xbd\\xf1\\x04\\x1b\\xf1\\xfe\\xca\\x0b\\x26\\x53\\x85\\x5f\\xaf\\xd7\\xae\\x1c\\x19\\x3b\\xda\\xa4\\x7e\\x3f\\x22\\xfc\\xfd\\x8d\\x2b\\x37\\xbe\\x2f\\x6d\\x8f\\xdd\\xfe\\x6c\\x54\\xe4\\xb3\\xdb\\xe3\\x82\\x50\\xbc\\x80\\xf4\\xc2\\x1e\\xe8\\xc5\\x72\\xf5\\x60\\x64\\x94\\xbf\\x50\\x2c\\xee\\x69\\x71\\xa1\\x12\\xae\\x6c\\xfe\\x6f\\xd2\\xb1\\x8c\\x11\\x48\\x56\\xce\\xbf\\xd7\\x84\\x34\\x87\\x9f\\xc1\\x10\\xff\\x9e\\x88\\x44\\x70\\xab\\x7d\\x46\\x7d\\x5b\\xd2\\x74\\xd1\\x54\\x92\\x9a\\x62\\xa5\\x54\\xbf\\x34\\x25\\xf9\\xd5\\x44\\x8d\\x3a\\x41\\x7e\\x84\\x2a\\x6e\\xf0\\xd6\\xa4\\xe9\\xd4\\xba\\xb4\\xc0\\x34\\xb5\\xb4\\x8f\\x52\\x27\\xa7\\xbf\\xa9\\x66\\xd4\\x75\\xbc\\xa7\\xf1\\xc5\\x69\\xab\\x55\\xb4\\x3b\\xdc\\x8c\\x03\\xd2\\x2b\\x54\\xcf\\x24\\xa5\\xaa\\x13\\xbb\\x17\\xa5\\xa4\\x31\\xb8\\xb1\\xe0\\xe6\\x57\\x49\\xcd\\x55\\xe7\\xa6\\x05\\xc8\\x94\\x92\\xaa\\x93\\x1a\\xc7\\x93\\xd3\\xdf\\x59\\x1f\\xa8\\xd2\\x35\\xe0\\xee\\x9b\\x26\\xfe\\xfb\\xdf\\x89\\x90\\xcd\\x65\\xb6\\x38\\xae\\xcf\\x34\\x50\\x1a\\x18\\xc8\\x1d\\x4c\\xec\\xe6\\xfb\\x2d\\xca\\xe5\\x87\\xcb\\xaa\\x40\\x8e\\xff\\x3f\\x5f\\xf8\\xbb\\x31\\x9c\\x02\\x4f\\x65\\x27\\x00\\x7e\\xf4\\x6e\\x86\\x4f\\xf9\\x77\\x4f\\xfd\\x20\\xb2\\xf4\\xa0\\x75\\xaa\\x52\\xdc\\x9c\\x57\\x40\\xe7\\x82\\xec\\x53\\x1f\\x2c\\x9a\\xcf\\x8e\\x22\\x15\\xdc\\x93\\x5b\\x38\\x54\\x83\\x18\\xdf\\xa5\\xb1\\xa3\\xc2\\xa1\\x39\\xf0\\xfa\\xad\\xab\\x02\\xef\\x82\\xe2\\x07\\x0f\\x3d\\x19\\x92\\xf6\\xd3\\x68\\xb2\\xd7\\x42\\x64\\x7f\\xc8\\x11\\xac\\xe5\\x4f\\x41\\x63\\xce\\xad\\x0d\\xd5\\xc1\\x5f\\x2d\\x39\\x78\\xa0\\x01\\x0f\\x37\\xd8\\x83\\xf2\\x8e\\xf6\\x3b\\x1f\\x7c\\xed\\x0c\\x06\\x00\\x00\\xfe\\x74\\xaf\\x39\\x08\\xae\\x7f\\x1f\\x5a\\x00\\xfe\\x2e\\x01\\x1f\\x00\\x20\\x14\\xbc\\x06\\x45\\x1e\\x8e\\xf5\\xb2\\x2f\\x20\\xcd\\x93\\x65\\x35\\x15\\xfe\\xdf\\xfc\\xf9\\x10\\xc3\\x68\\x8c\\x0a\\xa6\\xc8\\x73\\xeb\\x67\\x16\\x1b\\x5b\\xb8\\x71\\x92\\x05\\x13\\xfa\\xed\\x9c\\x0f\\xc6\\x74\\xc2\\x85\\x10\\xa2\\xd6\\x42\\xf8\\x99\\x8d\\x03\\x69\\xdf\\xd4\\xa0\\x91\\xbf\\x41\\x0f\\xac\\xc9\\x79\\x60\\x5d\\x8a\\xa6\\x43\\xcc\\x8c\\x5e\\x00\\x10\\x23\\x72\\xb1\\x21\\xfd\\x81\\x73\\x92\\x25\\x51\\x60\\xb6\\x0d\\xad\\xf2\\x37\\x78\\x79\\xb6\\x01\\x5d\\x99\\xae\\x5f\\x02\\xd0\\x0d\\x36\\x60\\x5f\\x02\\x80\\x50\\xe2\\x35\\xa0\\xe0\\x0a\\xba\\xc3\\xb5\\xd7\\x58\\xca\\x41\\xc1\\x21\\x17\\x81\\x21\\x64\\x7e\\x3d\\x76\\xd8\\xa6\\xb2\\xa3\\xcb\\x22\\x88\\x30\\x52\\x39\\x6f\\x1e\\xa1\\x66\\x78\\x57\\x80\\x3e\\x10\\x95\\xd7\\x25\\x14\\xfe\\xe1\\xd2\\x07\\x70\\x7d\\x94\\x43\\xc0\\x37\\xbc\\x96\\x43\\xa4\\xc9\\xe1\\x22\\x50\\x5b\\x0c\\xc1\\x90\\xb6\\xd8\\x08\\x4b\\x10\\x4c\\x3d\\x22\\xbb\\x19\\xc3\\xaa\\x99\\x45\\x59\\x8a\\xf5\\x1a\\x35\\xe8\\x7c\\x06\\x00\\x98\\x69\\xa5\\x61\\x6d\\x41\\x99\\x57\\x02\\xa7\\x8b\\x44\\x16\\x00\\x8f\\x6c\\x5e\\xe4\\x39\\x3c\\xe4\\xc1\\x24\\x94\\x27\\x9a\\xdc\\x8d\\xd9\\x01\\xd7\\x7a\\x36\\x2d\\xe8\\x4a\\xb3\\xc2\\x46\\x62\\x96\\x82\\xdb\\x9a\\xd6\\x47\\xbe\\x92\\x06\\x41\\xfe\\xfd\\x3c\\xfa\\x35\\x98\\x06\\xbf\\x3a\\x8f\\x9b\\x1d\\x7c\\xb3\\xba\\x49\\x1e\\x41\\x1b\\x51\\x9a\\x5e\\xa6\\x95\\xec\\x86\\x90\\x9a\\x98\\x91\\xb4\\x26\\xde\\x06\\xbc\\x64\\xca\\xe7\\x7d\\x1d\\x17\\xaf\\x33\\x80\\xd6\\x58\\x41\\x59\\x0d\\x7a\\x93\\x67\\xd5\\xce\\x0d\\xb4\\xf9\\x08\\xe2\\x15\\x86\\xb6\\x90\\x01\\xc2\\x94\\x4e\\x50\\x1d\\x8a\\x83\\xcb\\xaf\\x02\\xeb\\x2e\\x8a\\x7f\\x16\\x77\\xe8\\x1c\\x45\\x68\\xb0\\x21\\x43\\xda\\x96\\x2f\\xf0\\x5c\\x61\\xd2\\x70\\x9c\\x39\\x90\\xaa\\x11\\x9e\\xc6\\x59\\x00\\x7f\\x48\\xb8\\x81\\x39\\xb9\\x72\\x05\\xc7\\xfb\\x23\\x6c\\x93\\x7a\\x6b\\xd0\\xb3\\x60\\xca\\xc5\\x38\\xb2\\x61\\xa3\\x51\\x37\\x11\\x35\\xda\\x60\\x2a\\x54\\x82\\xc8\\x20\\x66\\x82\\x66\\x77\\xf3\\x56\\xca\\x05\\x60\\x0f\\x6c\\xb9\\x10\\x6d\\xdc\\xca\\x32\\x71\\xdc\\xde\\x44\\xc0\\x8e\\x8c\\x38\\x4c\\xdd\\xe1\\xc3\\x60\\x1a\\x9c\\xef\\x28\\x58\\x96\\x35\\x8e\\xe4\\x9f\\x35\\x24\\xd8\\x64\\x06\\x27\\xcf\\xb9\\x9d\\xe2\\xd4\\xae\\x18\\x48\\x06\\x96\\x60\\xc8\\xb8\\x00\\xbf\\xe0\\x7e\\x4d\\x0b\\xbf\\x52\\x2e\\x14\\x75\\x16\\x68\\x23\\x70\\x49\\xa1\\xab\\xa6\\x15\\xa8\\x36\\x00\\x73\\xbc\\x0b\\xfc\\xbc\\x66\\x6a\\x45\\x3e\\x1b\\x88\\x07\\xdd\\xb8\\xf7\\x34\\x79\\xe7\\xcc\\xe0\\xb3\\x30\\x77\\xd9\\xfc\\x46\\x2f\\x83\\xd0\\x18\\x6d\\x36\\xf0\\xb9\\x04\\xe8\\x65\\x4c\\xe8\\x19\\x00\\x69\\xa7\\xe1\\xb4\\x8e\\x49\\x69\\x9b\\xe5\\x61\\x54\\x28\\xc9\\x86\\xaf\\xe8\\xdf\\x5f\\x2c\\x7b\\x1b\\xde\\x11\\xf7\\x5b\\x96\\x80\\x52\\x1f\\xcd\\xc8\\xfe\\x7a\\x21\\x6c\\x95\\x2c\\x86\\x0f\\x3e\\x40\\xac\\x0d\\xf6\\x78\\x16\\xb6\\x5a\\xf7\\x2c\\x42\\xfb\\xf3\\x2c\\xea\\xab\\x69\\x59\\x76\\xfc\\x2c\\x0e\\x6c\\xf9\\x53\\x11\\x5e\\xf9\\x4d\\x73\\xbd\\xf5\\x31\\x54\\x3f\\x5d\\x75\\xd6\\xc5\\x00\\xb5\\x0d\\xd0\\x4f\\x7f\\x83\\xa1\\xa9\\x7a\\xeb\\xad\\xb3\\x1e\\x3a\\xaa\\x0b\\x4d\\xd7\\x4b\\x7b\\xf5\\xa1\\xf1\\x7a\\xe8\\xa1\\xb6\\x05\\x2d\\xdc\\x7f\\xe3\\x75\\xcc\\xdb\\x3b\\xea\\x67\\x90\\xbc\\x0e\\xad\\xce\\x6c\\x6d\\x0d\\xd8\\x85\\x5d\\xb5\\x05\\xbf\\xfd\\x74\\xed\\xf5\\xd6\\x4b\\x30\\xaf\\x76\\x36\\xb0\\xf0\\xda\\x3a\\xb7\\x2a\\x3c\\xe0\\xe6\\xf5\\x9b\\xdc\\x91\\x85\\xd7\\x27\\xaa\\x68\\x44\\xcf\\x28\\x78\\xb8\\x3a\\x4c\\xef\\xb6\\xf4\\xe6\\x1e\\x0e\\xb1\\x04\\xe8\\xf5\\x0f\\x00\\x78\\xb5\\x6f\\xee\\x53\\xcd\\xed\\x8f\\xd3\\x3d\\xe7\\xd5\\x63\\xe4\\xc7\\x5e\\x5e\\xd3\\xff\\x1b\\x8d\\x01\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xff\\x9d\\x75\\x47\\x3d\\x0c\\xad\\x00\\x00\")\n\nfunc vendor_material_icons_materialicons_regular_woff2() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_material_icons_materialicons_regular_woff2,\n\t\t\"vendor/material-icons/MaterialIcons-Regular.woff2\",\n\t)\n}\n\nvar _vendor_material_icons_readme_md = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x34\\x8e\\x31\\x6e\\xf4\\x20\\x10\\x46\\x7b\\x4e\\x31\\xf2\\x5f\\xfe\\xc2\\xf4\\x56\\x36\\xe9\\x12\\xa5\\x48\\x13\\xe5\\x00\\x8b\\xcd\\x18\\x46\\x01\\x66\\xc5\\x0c\\x5a\\xf9\\xf6\\x11\\xde\\x84\\x86\\x62\\xbe\\xa7\\xf7\\xbe\\x12\\x42\\xc3\\x8d\\x4b\\xc1\\x1a\\x30\\xc0\\xdd\\x1f\\xa0\\x0c\\x5d\\x10\\x34\\x21\\x7c\\x78\\xc5\\x46\\x3e\\xc3\\xfb\\xc6\\x55\\x60\\xe7\\xaa\\x40\\x02\\xeb\\x01\\x99\\xea\\x37\\xd5\\x38\\xc6\\x63\\x78\\xc7\\xf5\\x71\\x4d\\x2c\\x8a\\x01\\xb8\\xc2\\x1b\\x73\\xcc\\x08\\xaf\\x5c\\x55\\x16\\x63\\xae\\xd7\\x6b\\xd2\\x92\\xcd\\xd3\\x20\\x21\\x35\\xdc\\x2f\\x53\\x52\\xbd\\xc9\\xe2\\xdc\\x20\\x65\\x8e\\x27\\xe0\\x6f\\x24\\xf3\\xc6\\xc5\\xd1\\xc6\\xf5\\x65\\xf7\\x85\\xf2\\x71\\xf9\\xeb\\xf8\\x7f\\x76\\x4c\\x06\\xce\\xd7\\x30\\x5f\\x26\\xd1\\x23\\xa3\\x24\\x44\\x9d\\x9e\\x87\\xc4\\x98\\x4f\\xf4\\x01\\x0a\\x37\\x04\\xaa\\xc0\\xbd\\xc1\\xde\\x73\\x86\\x2e\\x3e\\x22\\xc4\\x4e\\x01\\x17\\x33\\xc4\\x8b\\x73\\x0f\\xe3\\x1c\\x49\\x53\\x5f\\x67\\x62\\x57\\x7e\\x3d\\x36\\xa0\\x50\\xac\\x76\\x34\\x88\\xfb\\x37\\x3e\\x3b\\x22\\xed\\xce\\xcd\\x6a\\x42\\x7b\\xc7\\xd5\\xfc\\x04\\x00\\x00\\xff\\xff\\xfc\\x28\\xf6\\x83\\x3c\\x01\\x00\\x00\")\n\nfunc vendor_material_icons_readme_md() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_material_icons_readme_md,\n\t\t\"vendor/material-icons/README.md\",\n\t)\n}\n\nvar _vendor_material_icons_codepoints = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x6c\\x5b\\x5b\\x96\\xb4\\xaa\\x0e\\x7e\\x67\\x14\\x3d\\x04\\x15\\xaf\\xa3\\x61\\x71\\x89\\x55\\x9c\\x56\\x71\\x03\\x56\\xed\\xfe\\x47\\x7f\\x56\\x02\\xa8\\xd5\\xff\\x7e\\xa9\\xc5\\xf7\\x05\\x6f\\x21\\x84\\x24\\x50\\xdc\\x08\\xef\\xa2\\x8c\\xd6\\x6d\\x5f\\x30\\xb6\\x86\\x49\\x2d\\x8e\\xcd\\xc6\\x2f\\x50\\x5c\\x31\\xa9\\x35\\x84\\x20\\xe4\\x22\\xfd\\xfa\\x05\\xf5\\x54\\x7d\\x30\\x01\\xa9\\xba\\x50\\xd1\\xae\\x80\\x44\\x93\\x09\\xab\\xec\\x62\\xe3\\x0f\\xde\\x15\\x4e\\x6a\\x81\\x2f\\x98\\xea\\x16\\xb1\\x3b\\xb6\\x28\\x94\\x5c\\xe4\\xa6\\x01\\x3b\\xcd\\xbf\\x49\\xf1\\x96\\xcb\\x02\\xf1\\x0b\\xc6\\xae\\xba\\x64\\xee\\x5f\\x24\\xea\\x93\\xd0\\xd6\\x6b\\xbc\\xeb\\xd8\\x71\\x26\\x8d\\xfa\\x82\\xbe\\x02\\x26\\x8d\\xf9\\x82\\xba\\xed\\xb0\\x21\\xa4\\xd8\\x9f\\x2e\\xba\\x2f\\x68\\xf9\\x94\\x88\\xf2\\x39\\x3c\\x43\\xf0\\xf1\\x0b\\xaa\\x2a\\x41\\x7a\\x42\\xdd\\xf6\\x04\\xca\\xdd\\xeb\\x76\\xb8\\x61\\xe1\\x8e\\xb8\\xd8\\x8d\\xf8\\x91\\xf8\\xc5\\xe9\\xac\\xc3\\xae\\x4f\\x3d\\xc3\\xd3\\xed\\xbb\\xdd\\x1e\\x42\\x4b\\x4f\\xdf\\xd0\\x12\\x1d\\x5d\\x7a\\x9b\\xf0\\x05\\x7c\\x32\\x85\\xfa\\xe7\\x80\\x03\\xbe\\xa0\\xea\\x34\\x93\\xe6\\x7f\\x47\\x88\\x28\\x05\\x26\\xad\\xc7\\xc7\\x88\\x00\\x32\\x8a\\x79\\x91\\xf1\\x0b\\x7a\\x5e\\xfd\\x4d\\x0b\\xb9\\x3d\\x16\\x30\\x28\\xad\\x3f\\xa5\\x76\\x33\\xf6\\x65\\xcd\\x21\\x17\\x11\\x0e\\x1b\\x01\\xbb\\x34\\x9f\\x5d\\x16\\x78\\x78\\xe7\\x56\\x01\\xff\\x46\\x2f\\x51\\xce\\xff\\x5b\\xbe\\x39\\xbf\\xca\\x05\\x3b\\xb4\\xff\\xdd\\xc1\\x83\\x39\\x74\\x7a\\x8b\\xee\\xb3\\x87\\x07\\x4d\\xe0\\x7c\\x44\\xff\\xdf\\xf2\\xeb\\x11\\x03\\x76\\xd8\\x17\\xb9\\xc1\\xea\\x0c\\x08\\xa9\\xa3\\x7d\\x91\\x75\\x75\\x9f\\x02\\xbb\\x5d\\xa2\\x36\\x8b\\x7e\\x50\\x91\\xa9\\x9f\\xf3\\x51\\x84\\xe7\\x11\\x23\\x8e\\xa1\\xe2\\x9a\\xe5\\xa1\\x1f\\x51\\x8e\\x4d\\x41\\x96\\x32\\x76\\x7d\\x86\\x6e\\x9e\\x11\\x0e\\x05\\xe2\\xa4\\xe8\\x46\\x26\\x17\\x75\\xac\\x5f\\x50\\xd5\\x13\\x93\\xcb\\x22\\xec\\xa6\\x97\\x23\\xd0\\x63\\x15\\x37\\x44\\xb9\\x23\\x7e\\xc1\\x54\\x29\\x26\\x37\\xe3\\x9d\\xa5\\x9b\\x4e\\x4c\\x6e\\x9b\\x3b\\x36\\x0d\\x2b\\x6c\\x64\\x03\\x92\\xc9\\x7d\\x0f\\x5f\\xd0\\x69\\xce\\xa4\\xd7\\xcf\\xf4\\xe6\\xed\\xc4\\xa4\\xf7\\xee\\x2d\\x94\\xd4\\xdf\\x28\\x6c\\x33\\x36\\xee\\xbd\\xbd\\xa5\\x37\\x5f\\xd0\\x19\\x55\\x38\\xef\\x76\\x12\\x60\\xc7\\xee\\x37\\x79\\x1a\\x6c\\xa7\\xfb\\xbb\\xec\\xd8\\x91\\x1a\\x32\\x35\\x3b\\x9f\\x6f\\xab\\xc7\\x4c\\x1d\\x7b\\x79\\x10\\x32\\x51\\x44\\x4f\\xef\\x52\\xf5\\x15\\x93\\x61\\x07\\x1d\\x85\\x47\\x03\\xc7\\x8f\\x50\\x4c\\x86\\x00\\x21\\x94\\x8f\\xd2\\x88\\xed\\x63\\x2b\\xd8\\xdc\\x30\\x1a\\x20\\x72\\x70\\xe7\\x16\\x19\\x69\\xc2\\xce\\x77\\xd2\\x43\\x3c\\x3c\\xaa\\x9b\\x9e\\xf8\\x8b\\x46\\xab\\x1a\\xfb\\xfa\\x2e\\x48\\xb4\\xb0\\x74\\x49\\x43\\x92\\x10\\xe5\\x46\\x33\\x67\\xbe\\x60\\x99\\xfb\\x5c\\x56\\x4c\\xc6\\x28\\xf5\\x53\\xcc\\x16\\x15\\xd4\\x34\\x7d\\x21\\x56\\xb7\\xc1\\x0f\\x32\\x43\\x66\\xd2\\x97\\x34\\x4a\\x33\\x79\\x18\\xeb\\xb2\\x2e\\xb8\\xac\\x99\\x3c\\xa2\\xf3\\xb0\\xc1\\x1b\\x9f\\xca\\x99\\x7c\\x91\\xdb\\xf3\\x68\\x1a\\x8a\\xe1\\xf0\\x85\\x5d\\x6a\\x1a\\x53\\x49\\x10\\xf5\\x3e\\xf6\\x2d\\x53\\x32\\x46\\xf0\\x3f\\xc5\\xd7\\xd4\\x93\\x3e\\x29\\xfd\\x94\\xfe\\x81\\x8e\\x62\\x3e\\x96\\xe5\\x0b\\x6a\\xc9\\x4f\\x51\\x61\\xae\\xeb\\x43\\x44\\xc7\\x26\\xbb\\x93\\x38\\xb6\\xef\\x8d\\x8c\\xa1\\x96\\x3d\\x53\\x80\\x9f\\x93\\x7c\\x2d\\x9a\\x26\\x30\\x05\\xb0\\x3d\\xc1\\xa3\\x41\\x34\\x86\\xa9\\xc5\\xe1\\x87\\xd4\\xad\\x62\\x6a\\x39\\x20\\x3a\\x17\\x9f\\x78\\xe5\\x70\\x41\\x41\\x5f\\x8c\\x5e\\x74\\xbe\\x91\\xda\\x6d\\x1b\\xe8\\x08\\xf4\\xf0\\xf1\\x26\\x30\\x36\\x48\\xb5\\x24\\x7e\\xba\\xf1\\x01\\xc8\\xbc\\xb7\\x07\\x0a\\x24\\x0a\\x3c\\x99\\xe6\\xb1\\x48\\x8f\\x9a\\x6c\\x12\\x85\\xb3\\x3e\\x11\\x3c\\x11\\x34\\xff\\x38\\x7e\\x30\\xa1\\x0d\\x41\\xc7\\x94\\x73\\xdf\\xa8\\xc7\\xd4\\x5a\\xa5\\x27\\xd4\\x9f\\x48\\x28\\xe7\\x0d\\x8e\\xc2\\xd8\\x0f\\x2c\\xb5\\x85\\x44\\xd5\\x35\\xcd\\x58\\xb0\\x72\\x31\\xba\\x15\\xa9\\xa9\\x50\\x7a\\xa1\\x87\\x37\\x8d\\x3c\\x19\\xb7\\x38\\x62\\x54\\x61\\x9e\\xce\\xdb\\x3f\\x6e\\x8b\\x92\\xee\\xa6\\x0b\\x6d\\xb7\\x0d\\xa8\\xa3\\x29\\xcc\\x02\\x33\\xda\\x4c\\x03\\x85\\x70\\x47\\x4c\\x5d\\xe6\\xc2\\x78\\xfb\\x78\\x62\\x1f\\x5e\\x15\\x26\\xc4\\x1f\\xb2\\x45\\x5e\\x17\\x26\\xba\\x1d\\x71\\x53\\xf0\\x0b\\x7c\\xb4\\x9a\\x9e\\xce\\x39\\x53\\x5e\\x6e\\x06\\x6d\\xe5\\x2d\\x23\\xf8\\xa4\\x88\\xaa\\x57\\x4c\\xd1\\xad\\x37\\x5c\\x86\\x6b\\x54\\x59\\x7f\\x67\\x1a\\x64\\x86\\x3b\\xc3\\x91\\x19\\xef\\x4c\\x8b\\xcc\\x74\\x67\\x3a\\x64\\xe4\\x9d\\xe9\\x91\\xf9\\x78\\xd6\\x80\\x8c\\xbe\\x33\\x38\\x3f\\x70\\xc8\\x3f\\xba\\x3d\\xed\\x83\\xcc\\xec\\xa3\\xe7\\xe2\\xde\\xc8\\x99\\x3b\\xb7\\x82\\xb1\\xe8\\x67\\x6b\\x09\\x4c\\x79\\xf7\\x0d\\x9b\\xb0\\xab\\x7c\\x00\\x3e\\x06\\x3b\\x1e\\xe1\\x89\\x4d\\x60\\xea\\x50\\x6a\\x01\\x9a\\x3a\\xb8\\x26\\x1a\\xc3\\xd4\\xf1\\x10\\x1e\\xd0\\xe1\\xa3\\x15\\x8c\\x4c\\x1d\\x76\\x21\\xa7\\x31\\x31\\x75\\xf8\\x10\\x05\\x2e\\x17\\x18\\x02\\x68\\xa6\\x8e\\x60\\x37\\x9a\\x21\\x95\\x9c\\x4f\\x24\\x34\\x6c\\x34\\x60\\x8a\\xcf\\x4c\\x4b\\xfd\\x4c\\x3e\\x47\\x32\\x2d\\xbf\\xe1\\x0b\\x06\\x98\\x98\\x26\\x9b\\xaa\\x54\\x45\\x2d\\x01\\xe8\\xda\\x2a\\x55\\x27\\xb4\\x4a\\xbc\\x7f\\xa5\\x9a\\x0c\\xc1\\x3f\\x08\\xf3\\x8c\\x6d\\x08\\x40\\xfd\\xdb\\x3b\\x81\\x56\\xf2\\x70\\x34\\x4f\\x2a\\xc8\\x12\\x0f\\x1a\\xec\\x2b\\x75\\xee\\x12\\x15\\xf6\\x05\\x43\\xb2\\x4a\\xf5\\x09\\x47\\x47\\x4b\\x22\\xce\\x8f\\xaa\\xd7\\x4c\\xcb\\x15\\x70\\x61\\xe5\\x72\\xce\\x6d\\x21\\x17\\xf4\\x84\\xf4\\xaa\\x84\\x61\\x7b\\xe6\\x40\\x6b\\x2e\\xfd\\xc5\\xec\\x1d\\xf9\\x4b\\xfa\\x04\\x62\\x7c\\x9a\\x8d\\xf4\\x11\\x89\\x70\\xf8\\xc9\\x9c\\xbe\\x62\\xd3\\xb0\\xe0\\x92\\x81\\x8a\\xf0\\x46\\x3c\\xec\\x1c\\x35\\xad\\x19\\xe3\\xdc\\x27\\x6a\\x85\\x55\\x81\\x0f\\x4f\\x8b\\x5e\\x6f\\x1e\\x12\\x19\\xbd\\x7c\\xe1\\x85\\xe3\\x3c\\x32\\x2d\\x83\\xdd\\xdc\\x17\\xa8\\x16\\x5f\\x8c\\xc2\\x9c\\x6a\\xa0\\xd6\\xdd\\xc5\\xf0\\x6a\\x64\\x69\\x34\\xc4\\xec\\xf4\\x11\\x44\\x88\\xde\\xa1\\x8a\\x38\\x2a\\xef\\x2e\\x78\\x83\\x44\\xc7\\x8c\\x6a\\x7a\\xca\\xed\\x01\\xe2\\x69\\x43\\x74\\x1e\\x83\\xce\\x5e\\x21\\x47\\x4a\\x1b\\xa8\\x25\\x92\\xd1\\x7c\\x41\\xa5\\xe5\\x9d\\xb8\\x82\\xb9\\x4a\\xe3\\x35\\x90\\xd6\\x60\\x99\\x9a\\x39\\xe0\\xe4\\xed\\x05\\xcb\\x05\\x42\\x2d\\x72\\x43\\x4f\\xc4\\xbb\\x2c\\x3c\\x63\\x51\\x1c\\x93\\x27\\xbc\\xbc\\xdb\\xb2\\x5f\\xe8\\xd2\\xad\\x89\\xc9\\x6e\\xa0\\xd3\\xd8\\xc9\\x2e\\x06\\x23\\x44\\x8c\\x24\\xda\\x3a\\xe3\\xd9\\x5b\\xd8\\xcc\\xf2\\x83\\x5c\\xc3\\xf4\\xd3\\xbb\\x15\\x70\\x68\\xd0\\x1f\\x24\\x33\\x1e\\x7b\\xc3\\xf4\\x22\\xd1\\x86\\xc7\\x1e\\x58\\x76\\x64\\x75\\xab\\x53\\x53\\x64\\x43\\x1d\\x99\\x5e\\x5c\\xa0\\x68\\xc0\\xa4\\x26\\x3e\\x6c\\xcf\\x86\\x53\\x63\\x6f\\x77\\x18\\x5c\\xe9\\x4c\\x6a\\x9e\\x5f\\xd0\\x28\\xc8\\x8c\\x71\\x1b\\xe1\\xf9\\xc4\\xef\\x6d\\x71\\x12\\xaf\\xd2\\x55\\xe6\\xc8\\x6b\\x37\\xba\\xce\\x30\\x47\\xb3\\x8d\\x6e\\x32\\x71\\xec\\xe5\\x0a\\xce\\x74\\xfe\\x80\\x99\\x69\\xb7\\x2c\\x40\\x56\\x8c\\xc1\\x30\\x9a\\xf6\\x45\\x88\\xcb\\xd1\\xb7\\xbc\\x66\\xe4\\x97\\xc5\\x02\\xa9\\xe7\\x90\\xb0\\xfd\\x83\\x8e\\x01\\x3f\\xd2\\xad\\x69\\xc5\\xae\\xd4\\x84\\x60\\x27\\x7d\\xf2\\x0b\\x08\\x8a\\x71\\x02\\xa6\\x1e\\x1d\\x71\\xc9\\x35\\xf3\\x4a\\x32\\xed\\xb6\\xd9\\xfa\\x95\\x82\\x77\\xb1\\x1d\\x68\\xbf\\x18\\x7f\\xe2\\x4d\\xb7\\x28\\x75\\x14\\xab\\xb4\\xa8\\x4b\\x53\\x9d\\xcc\\xfe\\x74\\xc9\\x5a\\xe6\\x42\\xa1\\x2b\\x51\\x74\\xaf\\x88\\xa1\\x89\\x76\\xfb\\x0f\\x8e\\x86\\xb9\\x18\\x8c\\x0e\\xeb\\x16\\x4e\\x62\\x97\\x21\\x52\\x98\\x90\\xee\\xe1\\xdd\\x22\\x76\\x67\\xd3\\x6c\\x94\\x9f\\x94\\x30\\xc7\\xbe\\x58\\x4d\\x31\\x13\\x57\\x8a\\xe1\\xdd\\xb3\\x09\\x4d\\x95\\x66\\xda\\x03\\x89\\xea\\xae\\xca\\x6d\\xb1\\x01\\x86\\x78\\x0b\\xad\\x88\\x8d\\xa6\\x2e\\xc6\\x46\\x91\\x27\\xeb\\x80\\xfd\\x70\\x95\\xe1\\x38\\xc6\\x18\\x1c\\xd6\\xbd\\x98\\x10\\xea\\x04\\x39\\xad\\x18\\x68\\x12\\x88\\x3a\\x5a\\x1b\\x70\\xf8\\x11\\x0d\\xb4\\x2e\\xe8\\x74\\x0b\\x61\\x30\\xfa\\xe2\\x38\\xee\\x88\\x66\\x0f\\xf8\\x8a\\x38\\xea\\x08\\x17\\xb9\\x99\\xa0\\xe5\\x4e\\x1c\\x4f\\x9c\\xf3\\xf6\\x61\\x37\\x5c\\xcd\\xb8\\x6e\\x13\\x85\\x2e\\xdb\\x4b\\xf4\\x6e\\x5c\\x77\\x89\\xa2\\x84\\x94\\x9c\\xf5\\x90\\x88\\xf0\\xcf\\x91\\x86\\x54\\xf7\\xcc\\xc8\\xf0\\x54\\x2e\\x7f\\x4a\\xcd\\x8c\\x8c\\x52\\x1c\\x81\\x16\\x89\\x5a\\xce\\x88\\x41\\x78\\xf4\\x05\\x38\\xda\\x3d\\x33\\xf0\\x94\\x64\\x27\\x7a\\x60\\x06\\x16\\xa0\\xc8\\x73\\x68\\x72\\x1b\\x23\\x61\\x78\\xa1\\x9e\\xa6\\x46\\x15\\x2e\\xbc\\x01\\xf6\\x2f\\xa8\\x7b\\xcd\\x0c\\x04\\xed\\x6d\\x9e\\x30\\xe3\\xc0\\x91\\xf8\\x8e\\x6e\\x17\\xab\\xd4\\x68\\x3f\\xea\\x24\\xde\\x76\\x33\\x64\\x62\\xbc\\xc2\\xcb\\xa2\\xb4\\x0b\\x02\\x3d\\x32\\x03\\x2f\\x58\\xdc\\x4e\\x21\\x08\\xbd\\x36\\xaf\\xcc\\x8d\\x4c\\x13\\xba\\x56\\x15\\x72\\x56\\x83\\x78\\x1e\\xea\\x0b\\x38\\xef\\x32\\xc6\\x24\\x5b\\xd5\\x05\\x08\\x17\\x9f\\x64\\xba\\x7c\\x60\\xc6\\x62\\x34\\x29\\x02\\x7a\\xdb\\x4a\\x29\\xc2\\xbb\\xa4\\x65\\x43\\x33\\x63\\xfd\\x39\\xb7\\xba\\x06\\x6e\\x58\\x28\\xfb\\x4d\\xf1\\xe0\\xfc\\x41\\x3a\\xf4\\x95\\x1d\\x6f\\x3e\\xc8\\x03\\xaf\\xe6\\xd5\\x9d\\xd3\\xe8\\x69\\x3a\\x5e\\xdf\\x39\\x2f\\xed\\xf2\\xc6\\xbc\\xab\\xe3\\xed\\x07\\x7f\\x50\\x42\\xdc\\xdf\\xb9\\x70\\xa8\\xdc\\x95\\xdf\\xe9\\xe8\\xe5\\x16\\x2c\\xbd\\x42\\x77\\xe7\\xdf\\x72\\x41\\x77\\xcc\\xf1\\x1e\\x41\\xe7\\x88\\xb8\\xaf\\x2b\\x66\\xf0\\xcb\\xc6\\xa1\\x63\\xc6\\x89\\xcd\\x45\\x8c\\x44\\xe3\\xe1\\x31\\xff\\xaf\\x9b\\x5f\\x5c\\x5a\\x0c\\xfb\\xba\\xfe\\xcd\\x93\\xdf\\xea\\x5b\\xfe\\x17\\xbf\\x21\\xdd\\x32\\x43\\xe1\\x32\\xaf\\x80\\x19\\xb7\\x4a\\x34\\xf6\\x01\\xb0\\xbd\\x91\\x11\\xf5\\xd4\\x4a\\xbe\\x76\\x1c\\x06\\x44\\x07\\x26\\x37\\x3e\\xd9\\x5e\\x21\\xc2\\x4a\\x3d\\xa6\\x7a\\x64\\xc6\\xcb\\x19\\x9d\\x45\\xdd\\xd5\\xd8\\x7e\\x88\\xa7\\xdc\\x0c\\xb9\\xdb\\xce\\x30\\xe3\\xed\\x0b\\x04\\x44\\x4c\\x90\\x6b\\xce\\xcc\\x0b\\x3d\\xba\\x6a\\x18\\xce\\x5d\\xb4\\xa4\\x89\\x5a\\x1f\\x95\\x86\\x91\\xc1\\xff\\x40\\x63\\xc4\\x33\\x2b\\x06\\xd9\\x53\\x29\\x60\\x79\\xb1\\x37\\x02\\x36\\xed\\x7f\\xb2\\xf9\\xf6\\x7c\\x66\\xf0\\xcf\\x21\\x17\\xfb\\x27\\x25\\x2c\\x86\\x81\\xf7\\x18\\xee\\x56\\x55\\x95\\x9a\\xb7\\xa5\\xb0\\xaa\\x19\\x1c\\xde\\x89\\xf0\\xb3\\x2a\\x87\\xaf\\xdf\\xf4\\x0c\\x5e\\x22\\xc4\\xf3\\xe1\\x86\\xc1\\x2b\\x65\\x7c\\xc3\\x98\\x9a\\x42\\xbe\\xa4\\x5d\\x24\\x2d\\xb2\\x7d\\xdd\\x66\\x52\\x1d\\xe1\\x07\\x71\\x97\\xf1\\xe6\\xa8\\x0c\\x51\\xf7\\x19\\x07\\x90\\xe4\\xca\\x38\\x83\\x7f\\x6d\\xa4\\xd0\\x66\\xc7\\xf8\\x61\\x98\\x18\\xfc\\xbb\\xcb\\xcd\\x88\\x85\\x82\\xb5\\x4e\\x43\\x21\\x56\\x47\\x19\\x8d\\x9e\\x91\\x58\\xac\\xa6\\xd8\\xa8\\x26\\xf1\\x42\\xa2\\x71\\x90\\x08\\x5c\\x38\\x92\\xdb\\xb8\\x90\\xd8\\xe0\\x41\\x31\\xb2\\x56\\x9f\\x1c\\xfa\\x3c\\xad\\x2f\\x6e\\x5f\\x8e\\x14\\x4c\\x6b\\xf3\\x8b\\xa4\\x9e\\x70\\x91\\x7f\\xc0\\x63\\x82\\x49\\x6f\\x13\\x61\\x0b\\xd9\\x59\\x28\\x36\\x53\\x2a\\x38\\x0e\\x9a\\xcd\\x18\\xe1\\x9c\\x59\\x77\\x55\\xcf\\x89\\xf1\\xf0\\xa6\\xfc\\xb8\\x6a\\x2a\\x36\\xcb\\x97\\xf3\\x36\\xb9\\x27\\x73\\xa2\\x2b\\xb3\\x19\\x80\\xcd\\x20\\xe3\\xe1\\xc1\\x88\\x7d\\x91\\x3f\\x62\\xb1\\x18\\x3f\\x55\\xbd\\xb9\\xf8\\x97\\x35\\xe0\\x90\\xc3\\xbe\\x60\\x52\\x39\\x61\\x1c\\x66\\x36\\x5b\\x05\\x5e\\x90\\x49\\x55\\x9d\\xc9\\x70\\x95\\xdb\\x21\\x29\\xdc\\x74\\xf4\\x56\\x7d\\x9d\\x05\\x94\\xde\\x56\\x1d\\x64\\xb8\\x5b\\x0a\\x33\\x65\\x86\\x61\\x95\\x3e\\xde\\xae\\x6a\\x18\\x26\\xd4\\x1f\\x71\\x41\\x9b\\xa8\\x6b\\xd9\\xef\\x91\\x48\\x6b\\xae\\xe1\\xb9\\x4d\\xca\\x35\\x55\\x41\\xa8\\x55\\x53\\x17\\x84\\x19\\x8a\\x69\\x0a\\xc2\\x15\\xc8\\xb4\\x05\\xe1\\x0a\\x64\\xba\\x82\\x30\\x2b\\x31\\xe5\\xfe\\x94\\x91\\x98\\xa1\\xa0\\x11\\xd1\\x58\\x10\\xae\\x71\\x66\\x3a\\x11\\x0d\\x26\\x52\\xb2\\x50\\x4a\\xa0\\x71\\xbd\\x91\\x53\\x85\\xbb\\x87\\x9b\\x28\\xd0\\x45\\x60\\xbc\\x5c\\x31\\xe4\\x36\\xa6\\x30\\xb3\\x97\\x2b\\x50\\x27\\x28\\xd4\\xd3\\xd0\\x27\\xcf\\x05\\xa7\\x31\\xab\\xbb\\xf3\\xcb\\x36\\xf2\\x25\\x1c\\x4e\\x35\\x44\\xbb\\x44\\x11\\x9e\\x16\\x83\\x46\\x0e\\x67\\xbf\\x97\\xdd\\x62\\x4a\\x84\\x00\\xf5\\xb7\\x19\\x61\\x37\\xb1\\x13\\x33\\x8e\\x55\\x62\\x3c\\xec\\x4b\\xb2\\xb8\\x11\\xf5\\xb8\\x3d\\xc0\\xef\\x9e\\x62\\x8a\\xa9\\xc2\\x97\\xc4\\x2c\\x28\\x5d\\xd2\\xd1\\x67\\xc4\\xcf\\xb4\\xa7\\xe5\\x6c\\x5e\\x24\\x26\\xec\\x1d\\xb5\\x68\\xe6\\x40\\x8b\\xcd\\xf0\\xcc\\x89\\x1d\\x87\\x2e\\xe3\\x94\\xa8\\x43\\x5f\\x20\\x06\\x02\\x30\\xb0\\x79\\xc9\\xc1\\x2d\\x9f\\x72\\x9b\\xe2\\x00\\x7c\\x85\\xb6\\x10\\x51\\x7e\\x03\\x5d\\x3e\\x55\\x78\\x37\\x5c\\xbe\\x38\\x8c\\xd4\\xc2\\xd9\\x9f\\xad\\x76\\x6c\\x4e\\x26\\xe7\\x29\\xe3\\xc8\\xd9\\x15\\xd6\\x0c\\xb9\\x2d\\xdc\\x0e\\x1b\\x12\\x63\\x21\\xc2\\x53\\x7a\\x20\\xb3\\x9b\\x4e\\x6a\\x07\\x6d\\xa9\\xb2\\x58\\xe3\\x75\\x18\\x54\\x9d\\xe6\\x5a\\xf7\\x48\\x61\\x08\\x28\\xe4\\x62\\x1f\\xdb\\xa9\\x91\\x86\\xb7\\x9f\\x82\\xff\\x1d\\x21\\xda\\xf9\\x07\\x25\\xdd\\xa7\\x24\\x27\\xff\\xbc\\xff\\xa4\\xcf\\x84\\xff\\x7c\\x82\\x72\\x98\\x95\\x36\\x7c\\x2c\\x44\\xa9\\x41\\xa0\\xbe\\x32\\x43\\xb1\\xee\\x6c\\xa9\\x7e\\xc1\\xe5\\x27\\xed\\x21\\x00\\xdd\\x51\\x7d\\xf2\\x11\\xfe\\x25\\x5a\\x17\\xda\\x6e\\x06\\x9d\\xab\\x01\\x8c\\x09\\x03\\xd5\\x18\\xcc\\x2f\\x99\\xdd\\x2e\\x19\\x9c\\xb2\\x28\\x17\\xab\\x91\\x9a\\x0b\\x95\\xea\\xb4\\xbb\\xd4\\x94\\xa6\\x36\\x6d\\x75\\x09\\x02\\xba\\xf7\\x05\\xa3\\x26\\xfc\\xaa\\xb6\\xfe\\x90\\xa4\\x68\\x3a\\x49\\x9a\\x22\\xd9\\x25\\x59\\x64\\x83\\xd6\\x96\\x98\\x7f\\x0e\\x5a\\x10\\x9a\\xf6\\xd4\\x76\\x78\\xca\\x1d\\x27\\x52\\xd3\\x9d\\xaf\\x15\\x28\\xd8\\x6f\\xda\\x53\\xef\\x21\\x7a\\xfb\\x0d\\xf1\\xe9\\xdd\\xf1\\x78\\xa2\\xe4\\x54\\x3d\\xaa\\xe2\\x0c\\x20\\x04\\xe5\\xca\\xa8\\xe0\\x76\\xf8\\xef\\x0e\\x1e\\x3b\\xa0\\xaa\\xdb\\x73\\x4c\\x8e\\xcd\\x00\\x55\\xa7\\xe9\\xd5\\x69\\x60\\xa8\\xfa\\xab\\x48\\x25\\xc9\\x87\\xd7\\x5d\\x5b\\x80\\xa8\\x2b\\x74\\x97\\xfd\\x89\\x39\\xe1\\xe1\\xc4\\x1d\\xc2\\x91\\x61\\x7c\\x2c\\x94\\x07\\xf9\\x3d\\x53\\xea\\xab\\xf0\\x8b\\x8f\\x65\\x09\\xda\\x03\\x9a\\x70\\x87\\xce\\xf0\\xc4\\x02\\x57\\x43\\x24\\x6b\\x36\\x1f\\x5b\\x09\\xe5\\x9a\\x56\\xb2\\x47\\x0a\\x96\\x52\\x15\\x75\\x6a\\x06\\xf6\\x90\\x2b\\x50\\xe0\\xc7\\xab\\x99\\x00\\xe6\\x23\\x4d\\xcd\\x1e\\x29\\xf1\\x9e\\x2a\\x60\\x0f\\xc0\\xc8\\x86\\xd2\\x84\\x8e\\x3d\\x20\\xe6\\x35\\x76\\x6c\\xd9\\xc3\\xd2\\x4c\\x1c\\xd9\\xc3\\x2d\\xb3\\xd0\\xee\\xf0\\x81\\x92\\xd1\\x8e\\x3d\\xf6\\x20\\x66\\xfb\\x2f\\x15\\xf7\\x14\\x27\\x88\\x41\\xd2\\x49\\xb5\\x44\\xd1\\x4c\\xae\\x55\\xc7\\x1e\\x9e\\x2a\\x20\\xe3\\x98\\x9a\\x96\\x62\\x03\\x0e\\x13\\x22\\xca\\x13\\x40\\x62\\x73\\x7f\\x5a\\x2d\\xe0\\x1f\\xbc\\x66\\x64\\x0f\\x6f\\x4d\\x71\\x25\\x2a\\x23\\xea\\xaa\\xd9\\xc3\\xbb\\x63\\xc7\\x80\\x6b\\x4e\\xcd\\x54\\xa9\\x1f\\xe6\\x2a\\xc3\\xb7\\xa3\\x2a\\xe0\\xd8\\xb3\\x27\\x2e\\x43\\x5d\\xc3\\x9e\\xa6\\xd4\\x0f\\xc1\\x24\\x40\\xb7\\x02\\x6a\\x9f\\x25\\x84\\xb9\\x26\\x9c\\x2b\\x07\\x73\\xc3\\x9e\\x20\\x0d\\x4d\\x2a\\x5e\\x57\\x05\\x88\\x15\\xe7\\x00\\xaf\\x6b\\x24\\x16\\x9b\\x2e\\xe4\\x08\\x7c\\xaa\\xd5\\x34\\x08\\x16\\x52\\xe1\\x40\\xad\\x2b\\x74\\x1a\\x67\\xc3\\x9e\\xf6\\xf1\\x14\\x14\\x6b\\xc5\\x1f\\xec\\xdd\\x12\\x93\\x7d\\x63\\xd3\\xcd\\x17\\xcc\\x3b\\x0e\\xe3\\xc8\\xae\\xd2\\xc5\\x38\\xb1\\xa7\\x5b\\x49\\x97\\x92\\x3d\\x5d\\x14\\x11\\x53\\x02\\xd5\\xf6\\x08\\xa8\\x06\\xc3\\x91\\x3f\\xfc\\x63\\x91\\x21\\x08\\x58\\x77\\xda\\x66\\x1b\\xd5\\x8d\\x4c\\x81\\xf2\\x38\\x6a\\xf6\\x8c\\x71\\xc7\\x11\\x6e\\xa8\\x85\\x41\\xf3\\x68\\x58\\x29\\xab\\xcd\\x6d\\x6a\\x8a\\xcf\\x22\\x3f\\x9f\\x3b\\x66\\x57\\xda\\x3e\\xb9\\xa5\\xb8\\x50\\x15\\x12\\x63\\x1f\\xda\\x33\\xd3\\x3c\\x53\\x92\\x9c\\x4d\\x4e\\x58\\xa6\\xba\\x61\\x76\\x4b\\x1b\\x69\\x5d\\xcf\\xd0\\xdf\\x44\\xf0\\xab\\xdd\\x30\\x39\\xbb\\x95\\x55\\xa6\\x6a\\x62\\x76\\x9b\\x1d\\xbe\\x13\\x50\\xeb\\xa6\\xc6\\x71\\x66\\x76\\xdb\\x31\\x71\\x1e\\xa7\\x8a\\xd9\\x2d\\x00\\xbe\\x4d\\xaa\\xf8\\x35\\xad\\x3a\\x99\\x92\\xfc\\x37\\xad\\x2e\\x5c\\x0a\\xa5\\x73\\x9d\\xbf\\x35\\x85\\x86\\xd5\\x45\\xab\\xd1\\x2a\\x9a\\x16\\x0a\\x69\\xb7\\x97\\x2d\\x41\\x6d\\xd3\\xce\\x85\\x5e\\xec\\xf6\\x8d\\x43\\x75\\x3e\\x39\\xef\\x23\\x34\\x5d\\xcd\\xec\\xf6\\x4a\\x4f\\x5e\\x9c\\x47\\x7d\\x4e\\xbf\\xa8\\x34\\xa6\\x95\\x6e\\x99\\x0d\\xa4\\xcc\\x9e\\x7d\\xc3\\x4f\\xc9\\xfe\\xea\\xe6\\x44\\xe2\\xda\\xe6\\x41\\x01\\xff\\x2d\\x48\\xcb\\x0a\\xaf\\xdb\\xdf\\x82\\xbc\\xb0\\xf0\\xba\\xfb\\x2d\\xc1\\x39\\xc3\\xeb\\xeb\\x81\\xe2\\xb6\\x29\\xc1\\xeb\\xe1\\xe2\\xb5\\xdc\\x43\\xda\\x0e\\xe0\\xf5\\x78\\xd1\\x4f\\x6b\\xa8\\xa7\\xbc\\xa8\\xb2\\x33\\xc3\\x6b\\x75\\x91\\x51\\x62\\x96\\x5a\\xeb\\x8b\\x79\\x39\\x9b\\x1e\\x62\\xd8\\xb7\\x8d\\xfa\\x89\\x2e\\x4d\\xb5\\x03\\x5b\\xa4\\xa2\\xf2\\xdf\\xd4\\xa4\\xe6\\x6d\\x88\\x27\\xce\\xee\\x55\\x82\\x19\\x3b\\x6f\\x8f\\x23\\x85\\x35\\x53\\xcb\\x16\\xb9\\x53\\x3d\\x9c\\xd7\\x90\\xdb\\x22\\x55\\xc3\\xd2\\x86\\x00\\xaf\\xe7\\x42\\xa7\\x7c\\xbc\\xa9\\x0a\\xbe\\xd2\\xf1\\xa6\\x66\\x8b\\xbc\\x45\\x3e\\x86\\x2d\\xf2\\xd8\\xf4\\x13\\x9f\\xd0\\xb1\\x45\\xfe\\x80\\xa7\\x24\\x57\\xe5\\x76\\x59\\x91\\x3b\\xae\\xd9\\x02\\xf2\\x3b\\xf9\\x1d\\x3e\\x8f\\x09\\x79\\x58\\xdd\\x8b\\x5e\\x76\\x62\\xb9\\x1e\\x35\\x4b\\xb6\\x58\\xe5\\xa5\\xff\\x49\\x7d\\xab\\x06\\x4e\\x02\\x5f\\x94\\xbc\\xf1\\x7c\\x52\\xeb\\x11\\xd0\\xb9\\x54\\xbc\\x62\\xe4\\x01\\xd4\\xb1\\xa8\\x4b\\x27\\x53\\x85\\x3d\\x71\\xc1\\x4d\\x5b\\x03\\x53\\x3d\\x25\\xfc\\x86\\x5c\\xf3\\xa9\\x25\\x4b\\xdb\\x26\\x22\\x68\\x49\\x16\\xde\\xe3\\x9d\\xd0\\x5c\\xeb\\x6e\\xa0\\x16\\x95\\xf9\\x52\\x49\\xb8\\xe5\\x23\\x4b\\x51\\xe7\\x38\\xf5\\x6c\\xc1\\x79\\x91\\x1c\\x57\\xa5\\x33\\x8c\\x2f\\xcc\\x0d\\x27\\x86\\x89\\xe5\\x92\\x76\\x5a\\xc9\\x6b\\x75\\x7c\\x2e\\x5c\\xda\\x49\\x45\\xca\\x14\\x2a\\xae\\x08\\x21\\x43\\x45\\x1a\\x6b\\xab\\x0c\\xb5\\x9c\\x51\\xd7\\x6d\\x7d\\x62\\x2f\\xde\\x32\\x3c\\x91\\x6b\\x0a\\xe7\\xb6\\x17\\x6c\\x16\\x36\\x8d\\xdf\\x9a\\x12\\xba\\x96\\x67\\xa1\\xb1\\x1b\\xf9\\xd9\\xae\\xeb\\x0b\\xe3\\xe9\\x0b\\xbb\\xb6\\xcd\\xc4\\xbc\\x38\\x4f\\xdf\\xd5\\xb5\\x5d\\xa6\\x1e\\x32\\xdc\\x12\\xd4\\xb6\\x5c\\xfa\\xf0\\x4e\\xa7\\xbd\\xb3\\xfc\\x94\\x21\\x0b\\x9e\\x2e\\xec\\x96\\x76\\x76\\xba\\x76\\x3c\\xb9\\xe4\\x61\\xdb\\xa2\\x10\\xb4\\x16\\x83\\x57\\x83\\x7f\\x91\\x81\\x77\\xad\\x2c\\xa2\\x34\\xa2\\x48\\xa9\\x4c\\xa5\\x5c\\xbf\\x6b\\x75\\xc1\\xee\\x65\\xd1\\x23\\x76\\x6d\\xd1\\x9c\\x9b\\x67\\x20\\x65\\x15\\xdd\\xed\\xd2\\x7f\\xa7\\x8f\\x6d\\x8b\\xc2\\xf7\\xa7\\xf4\\xab\\xd4\\x78\\xe7\\xae\\x3a\\x39\\x4a\\x15\\xba\\xae\\x28\\x75\\xb7\\x7f\\xfe\\x48\\x24\\x8a\\x46\\xd3\\xd6\\x77\\xd7\\x15\\x25\\xee\\x2e\\xd0\\xf2\\x92\\xde\\xba\\x2b\\x8a\\xa3\\x9c\\x20\\x3c\\x71\\x5e\\x75\\x5d\\x51\\x5d\\x00\\xea\\x53\\x34\\x13\\x9e\\x96\\x0e\\x2f\\x20\\x57\\x34\\x13\\xe5\\xbf\\x16\\x71\\x52\\x0c\\xc5\\x4e\\x9a\\x0c\\x65\\x98\\xeb\\x8b\\xba\\x6d\\x08\\xaa\\xfe\\xa2\\xb3\\x47\\x1c\\x6e\\x0c\\x26\\x95\\x7a\\xbc\\x88\\xfb\\x96\\xa1\\xa2\\x8e\\xb8\\xbe\\x4f\\xa9\\x95\\xa3\\xfc\\x71\\x1a\\x33\\xbc\\x7c\\x08\\xbe\\x0f\\x4d\\x32\\x3e\\xeb\\xd4\\xa4\\xec\\x71\\x56\\x19\\x60\\xf2\\x38\\x9b\\x0c\\x30\\x77\\x9c\\x21\\x03\\x4c\\x1d\\xe7\\x39\\x03\\xd2\\x6e\\x5b\\x55\\x19\\xc6\\xb7\\x43\\x88\\x5f\\x86\\x9a\\xaa\\x1a\\x7c\\xf0\\xb1\\x53\\x1f\\x54\\xf8\\x1b\\xf5\\x88\\x29\\xfa\\x0f\\x66\\x10\\x78\\xfb\\x1f\\xb9\\xd0\\x32\\x3c\\x49\\x96\\x2a\\x31\\x75\\x37\\x52\\xeb\\x56\\x55\\x81\\x9a\\xad\\x92\\x14\\xaf\\xd8\\x2a\\xfd\\xf7\\xb1\\x79\\xa0\\x1c\\xa4\\x9b\\x6e\\x98\\x6a\\xce\\x69\\xdf\\x61\\x52\\x6c\\x85\\x95\\xc2\\x02\\xde\\x34\\x6c\\x85\\xed\\x40\\x27\\x86\\x2d\\xff\\x00\\x11\\x7f\\x76\\xaa\\x1e\\x21\\x0e\\xa9\\x08\\x5a\\xe9\\x89\\x51\\xf4\\x52\\x35\\xd4\\xc8\\x29\\x66\\xd5\\x48\\x42\\x69\\x20\\x1a\\xc5\\xd6\\x35\\x60\\x3a\\x34\\x32\\x3a\\x47\\x71\\xad\\xa2\\x1d\\x4f\\x4c\\x2a\\x3b\\x35\\x5d\\xcb\\x56\\xb7\\x41\\xb4\\x7f\\xae\\x61\\x6b\\x7a\\x4e\\xe4\\x4f\\x2e\\xfc\\x77\\x1a\\xa1\\xcb\\x1b\\x15\\xe5\\x78\\x4b\\x5b\\x61\\x2f\\x47\\x41\\x5b\\x43\\x2d\\xa1\\x24\\x21\\xe4\\x3d\\xd5\\x80\\x26\\x6a\\xa5\\x4d\\x56\\xfc\\xae\\x24\\xa1\\x4d\\x4f\\x84\\xf8\\xec\\xe8\\xbc\\xfe\\xd1\\xc9\\x15\\x2a\\xb6\\xba\\x03\\xc3\\x53\\xde\\x60\\x4f\\x74\\x5e\\x4e\\x94\\x40\\xa3\\xc7\\x4f\\x79\\x59\\xfa\\x56\\x9d\\x9a\\x82\\x0a\\xe2\\xe4\\x0e\\xda\\xaa\\xcd\\x5c\\xa9\\x44\\xb4\\x5c\\xb2\\xf5\\x58\\xa2\\x25\\xf7\\x7a\\x6e\\x25\\xce\\x8c\\x1c\\x74\\x2e\\x53\\xb5\\x55\\x97\\xf1\\x59\\x5b\\xe1\\x6c\\xfd\\xb9\\x57\\xe1\\x3a\\xcd\\x36\\x99\\x82\\xeb\\xb6\\xea\\x73\\x5b\\xec\\xe0\\xf6\\x85\\xa8\\x81\\x6d\\xf2\\x65\\x1f\\x18\\xfa\\x28\\x98\\x5d\\xea\\x37\\x5e\\xe4\\x46\\xa9\\x5b\\x5b\\x4d\\x85\\xca\\xb7\\x35\\x8c\\x9c\\x3c\\xc6\\x81\\x5d\\x3f\\xb1\\x0d\\x22\\x86\\xbc\\x42\\x03\\x9d\\x09\\x50\\x37\\x26\\x6d\\x59\\xf5\\x6d\\x75\\x52\\x38\\x47\\xe8\\x24\\x4e\\x2d\\x4f\\xee\\x6d\\x67\\x8b\\x17\\x22\\xf3\\x16\\x1e\\x16\\xcc\\xfd\\x70\\x6d\\xe2\\x35\\xc3\\x77\\x10\\x6f\\x00\\x5c\\x43\\x7a\\xc9\\xb6\\x59\\x63\\x4f\\xc5\\x36\\xf7\\x59\\x42\\x6c\\x6b\\xa4\\x82\\xc5\\x6c\\x48\\x6b\\x86\\xe9\\x80\\xc5\\x64\\x19\\x02\\x65\\x80\\x15\\xe7\\x2c\\xe9\\xad\\xea\\x67\\x6a\\xe5\\xf3\\x35\\x13\\xf5\\xb5\\xb3\\x4d\\x5a\\x0b\\x68\\x05\\xed\\x27\\x75\\x9e\\xf1\\x19\\xe6\\xe1\\x97\\x24\\x59\\xf0\\x30\\x77\\xbf\\x78\\xb2\\xbe\\x61\\xee\\x7f\\xd1\\xbb\\x3c\\x68\\xab\\x75\\x98\\x47\\xe6\\xe6\\x99\\x86\\x97\\x6a\\x58\\x53\\x25\\x99\\xdb\\x0c\\xac\\x72\\x3b\\x6b\\x65\\x3d\\x97\\xcc\\x61\\x6e\\x8b\\x73\\x77\\xaa\\x35\\x43\\x47\\x23\\xec\\x26\\x94\\x77\\xef\\x40\\x95\\xb7\\xc9\\x9c\\x64\\x3a\\xf8\\x31\\x41\\x22\\xde\\x36\\x52\\x18\\x31\\x33\\x0c\\x2e\\xe8\\xa3\\x26\\x6a\\xbe\\x2c\\xf5\\x93\\x15\\xdb\\xe5\\x02\\x31\\x19\\x92\\x64\\xbb\\xdc\\x44\\x74\\xa9\\x9a\\xda\\x21\\x72\\xa9\\x86\\xd4\\x56\\xea\\x44\\x62\\xb6\\xe1\\x29\\xe0\\x87\\x2e\\xd1\\x17\\x7d\\x3f\\x87\\xd0\\x56\\xe6\\x12\\x5c\\x07\\x04\\xda\\x0a\\x2e\\xfa\\x6d\\x0d\\xa4\\x63\\x61\\x28\\xc0\\x37\\xf4\\xf1\\x27\\x6f\\x36\\x0c\\x33\\xbe\\x0b\\x4d\\xa4\\x8a\\xb7\\xa9\\x59\\x4e\\xb6\\xcd\\x76\\x59\\xd2\\x50\\x76\\x9f\\x82\\xcb\\x89\\xf1\\x9e\\xed\\xf2\\x27\\x9f\\xf6\\x91\\x35\\x2b\\xa6\\x3e\\xcc\\x2a\\xb7\\xaf\\xce\\xc3\\xac\\xd9\\x0e\\x7e\\xcd\\xf1\\x48\\xca\\xab\\x46\\xd9\\x64\\x32\\xef\\xa8\\x61\\x1c\\xb3\\x19\\x8c\\x21\\x46\\xc9\\x93\\x88\\xf6\\x75\\x02\\xc4\\x48\\x0b\\xc2\\x28\\xdb\\x4c\\xa7\\x3d\\x12\\x4c\\x15\\xf2\\xa6\\x1d\\x0a\\xbb\\x24\\xb4\\x06\\xb6\\x98\\x8e\\x1c\\xca\\x3e\\x51\\x2b\\x18\\x2b\\x11\\x0f\\x09\\xd3\\x2a\\x2a\\xd6\\x40\\xf7\\x1c\\x13\\x17\\xb4\\xdc\\xf2\\xec\\x18\\xe5\\x84\\x5c\\xc0\\xdb\\x0e\\xb3\\xc9\\xed\\x92\\x7a\\x42\\xc1\\xb7\\xcf\\x9b\\x0b\\x47\\x16\\xd6\\x75\\xf2\\x86\\xaf\\xc3\\x58\\x7d\\xa1\\xe5\\x72\\x19\\x1e\\x6a\\x2b\\x52\\xb6\\x64\\xd8\\xb9\\xa7\\x98\\x9b\\xe2\\x3c\\x46\\xc6\\x9b\\x36\\x53\\xb7\\xd3\\x35\\x3b\\xc8\\x6f\\xda\\xa8\\xac\\x55\\x16\\xe6\\x5a\\x43\\x9a\\xf4\\x3a\\x93\\x76\\x13\\x91\\xf6\\x4f\\xfa\\xf2\\x08\\x61\\xf3\\x93\\x38\\x5a\\x20\\x31\\x97\\xaf\\x80\\xcc\\x94\\xb3\\x0a\\x7d\\x3d\\x67\\xa6\\x4c\\xa9\\xbe\\xa9\\x12\\x93\\xe2\\x4d\\xde\\xf4\\x17\\x14\\xe0\\xa9\\x98\\x54\\x19\\x75\\x23\\xd3\\x32\\x5e\\x19\\x7d\\xe3\\x52\\x92\\xde\\x0c\\x37\\x2a\\xa7\\xd5\\xc6\\xdc\\xb8\\x00\\x11\\xb3\\x99\\xca\\xd0\\x7b\\xd1\\x01\\xce\\xba\\x4a\\x4d\\x91\\x0f\\xe4\\xb5\\x75\\x9d\\x89\\x33\\xde\\xad\\x9b\\xcc\\x5c\\x7e\\x5e\\x65\\xe6\\x8c\\xd7\\xda\\x9a\\x67\\x2a\\xd8\\x3f\\x20\\x02\\x2c\\x98\\xfb\\x4a\\x1d\\x0f\\x9a\\x47\\xbc\\xf9\\x0f\\x69\\xde\\xd7\\x69\\xf9\\x7f\\x5d\\x9a\\xf7\\x78\\x5a\\x9c\\x4d\\x56\\xd3\\x02\\x20\\x83\\xd8\\xcd\\x8c\\xcf\\xea\\x4e\\xce\\xa2\\x59\\xe8\\xb4\\x56\\x8c\\x52\\xfe\\x07\\x9f\\xb6\\xaa\\x26\\xfc\\x2c\\x7b\\x2d\\x4a\\xba\\xbd\\x60\\x31\\x3e\\x1c\\x0d\\x8d\\xb7\\xde\\xe8\\x84\\x1f\\xda\\x1e\\xb0\\x5c\\x00\\xee\\xba\\x99\\xd1\\x1e\\x01\\xe5\\x84\\x38\\x65\\x87\\x84\\xff\\x9a\\xe4\\xe3\\x07\\x7f\\x9b\\xe3\\x53\\x12\\xcc\\xce\\xe7\\x4a\\xcb\\x54\\xf5\\x44\\x51\\x69\\x2f\\xe5\\x39\\xa8\\xd8\\x1b\\x53\\x16\\xa2\\xaa\\xef\\x2e\\xbe\\x9c\\xc7\\xc4\\x17\\x3a\\x72\\x94\\x35\\x56\\x15\\xdb\\xe9\\x60\\xc9\\x58\\xd5\\xd8\\xfa\\xa1\\x23\\x74\\xa3\\x54\\x6c\\x27\\xf7\\xa8\\xda\\x91\\x51\\x51\\x41\\x2d\\x40\\x33\\xb3\\xc4\\x8f\\xc0\\xae\\xed\\xe2\\xb6\\xee\\xd9\\xee\\xde\\x69\\xbf\\x5e\\xa7\\xa6\\xc8\\x15\\x03\\xce\\xb3\\xac\\xb8\\x90\\x90\\x5d\\xb7\\xd4\\x6c\\xf7\\xf0\\xd8\\xe4\\x16\\xc5\\xdb\\xad\\x12\\x57\\x05\\xb4\\x7b\\x0f\\x81\\x0e\\x15\\xba\\x7c\\x74\\xc2\\xcc\\x2c\\xd7\\xce\\x47\\x69\\x58\\x09\\xf5\\xf2\\x49\\xa6\\xbe\\xed\\xd8\\x7e\\x28\\xaa\\x93\\x8e\\xe8\\xbb\\xb1\\x8d\\xd9\\x4d\\xd3\\x75\\xec\\x9f\\x03\\x73\\x0d\\x3a\\x7e\\x94\\x3e\\x0a\\x90\\x0a\\x14\\x3c\\xc9\\x2d\\xbc\\x13\\x39\\xb3\\x72\\xe4\\x97\\xeb\\xd4\\xbc\\xf2\\x42\\x93\\x09\\x1a\\x80\\x14\\x1d\\x54\\x7d\\xcf\\xbc\\xa4\\x83\\x79\\x15\\x87\\xd4\\x14\\xea\\x88\\x11\\x83\\x70\\xd4\\x3a\\x1d\\x56\\xe2\\xc3\\xa7\\x04\\xd3\\xdc\\x53\\x86\\x37\\x88\\x20\\x7c\\x5e\\x9c\\xba\\xbe\\x62\\x74\\xd0\\x68\\xc7\\x6f\\x54\\x09\\x6c\\x34\\x09\\xa8\\xa8\\x51\\xf1\\x99\\xa5\\x3d\\x9e\\x94\\xd8\\x0b\\x97\\xb6\\xc9\\x6b\\xa4\\x0d\\xc0\\x8a\\x57\\xd5\\xd8\\x76\\x18\\xbe\\x4a\\xe6\\x61\\xf6\\x40\\x29\\x9e\\xe9\\x58\\xc9\\x92\\xeb\\x4e\\xe5\\xf6\\x75\\x92\\xba\\xd3\\x9f\\xd4\\xed\\x30\\x75\\x67\\x8a\\x68\\xf6\\x6e\\x3d\\x4f\\x45\\xf7\\x43\\xa1\\x3d\\x98\\xbc\\x36\\xd6\\x27\\xf7\\xeb\\xa0\\xf5\\xd4\\x8c\\xcc\\x43\\xd9\\x35\\x9b\\x81\\x79\\xd8\\x69\\x87\\xb1\\x6a\\xab\\xdc\\x4e\\x56\\x58\\xb5\\xf8\\xfa\\xd9\\x3e\\xdb\\x26\\xb7\\x73\\x31\\x77\\x2a\\x30\\xd5\\x72\\x65\\x81\\x54\\xca\\x55\\x84\\x30\\xf0\\xef\\x20\\x35\\x93\\xd5\\xd4\\x1d\\x2a\\x27\\xa5\\xca\\x35\\xe9\\x97\\x8a\\x65\\xbb\\x77\\x6a\\x49\\x0a\\xc3\\xa7\\x84\\x28\\x0f\\x4f\\x07\\x55\\xbb\\x5e\\xdf\\xb0\\xc8\\xc1\\x7d\\x5f\\x13\\x99\\xf6\\x31\\x15\\x2f\\x20\\x17\\x30\\xa6\\x66\\x62\\xe8\\x2c\\xc5\\xcb\\x2d\\xc7\\x4a\\xee\\xb6\\x66\\xde\\x39\\xba\\x7d\\x4b\\xad\\x2b\\x55\\x55\\xed\\xc4\\xd2\\x61\\x0a\\x31\\x55\\xc2\\xc0\\xc3\\x03\\x04\\xa1\\xf5\\x1b\\x15\\x38\\x16\\x51\\xaa\\x32\\xb5\\xf5\\xd9\\x37\\x57\\x97\\xda\\x5a\\x32\\xef\\x8e\\xcd\\x80\\x11\\xda\\xf9\\x2d\\x1d\\x93\\xa8\\x90\\x4b\\x5b\\x79\\xa8\\x69\\xf7\\x26\\xcf\\x3d\\x35\\x35\\xf3\\x21\\x88\\x19\\xc8\\xaf\\x40\\xc7\\xfc\\x4b\\x3c\\x9d\\xa3\\x03\\xb0\\x7d\\xdb\\xb0\\x20\\x23\\x2c\\x0b\\xed\\x6f\\x76\\x3d\\x42\\x32\\x8f\\xbe\\x66\\xb8\\xfa\\x6e\\xe9\\x76\\x13\\x0b\\xfa\\x09\\xe6\\xa0\\x23\\x54\\xaa\\x43\\x44\\xee\\x60\\xac\\x34\\xcb\\x45\\x71\\x4a\\xfe\\x6e\\x35\\xa3\\x5a\\xc1\\x87\\xe8\\x72\\x0f\\xb5\\x9a\\x3f\\x24\\xd7\\xbf\\x1c\\x6a\\x5d\\x15\\xc9\\x9d\\xac\\x0b\\x49\\xfb\\x47\\xf8\\x11\\x0d\\x0b\\x26\\x9f\\x9a\\xe9\\x1b\\x8e\\x00\\x47\\x22\\x1d\\x35\\xd1\\x0d\\x4b\\x09\\x2b\\xbe\\x6a\\xcf\\x02\\xe8\\x23\\x25\\x83\\xbc\\x91\\xac\\x2c\\x28\\x64\\x14\\xf8\\xb5\\x74\\x54\\xb0\\xee\\x39\\xb6\\xa2\\xa5\\xf3\\xcb\\xc6\\x86\\x20\\xa3\\x0d\\xb3\\xa5\\xf9\\x59\\xd7\\x37\\xd9\\x06\\x47\\xf4\\xb8\\x14\\x8d\\x75\\x73\\xa3\\x3f\\xfa\\xdf\\xef\\xf5\\x42\\x97\\xf3\\xfb\\x86\\xed\\xef\\x0e\\x1f\\xd2\\x8e\\x15\\xcf\\x88\\x1f\\x30\\x9e\\x48\\xc8\\x3d\\x9d\\x36\\x4a\\x61\\xfa\\xa8\\xa6\\x4b\\x94\\x0e\\x34\\x8b\\x9b\\x75\\xca\\x9b\\xf0\\x3a\\x50\\x3c\\x2a\\x75\\xe3\\xcf\\xe3\\x9d\\x28\\x30\\x97\\x20\\x25\\x32\\xa3\\xd2\\x17\\x05\\xf1\\x09\\x7e\\xa3\\xbf\\x7c\\xe0\\xb8\\x16\\x9a\\x9c\\xba\\x90\\x5b\\x84\\x6d\\xc3\\x60\\x0e\\x47\\xf6\\x53\\xa6\\xdd\\xba\\xbb\\x2d\\x45\\xa4\\x38\\xba\\xff\\x21\\x0d\\x69\\x6f\\x1d\\x87\\xf9\\x53\\xfa\\x34\\x2b\\x46\\x7e\\x34\\xa0\\x1f\\x82\\x90\\x23\\xb5\\x51\\xf3\\x4b\\x84\\x6e\\x10\\x4d\\x16\\xe9\\xf6\\xa2\\x73\\x54\\x35\\xea\\xee\\xc6\\xa5\\xc5\\x69\\xd4\\xfd\\xc5\\xa1\\xcf\\x4a\\xef\\x31\\x5c\\x64\\xf8\\x09\\x11\\x30\\xe4\\xfd\\x31\\x1e\\xe4\\x8a\\xd6\\x75\\x7b\\x62\\xae\\xab\\x8e\\x7a\\x64\\xd9\\x32\\xc7\\xca\\xb0\\x54\\xc0\\x19\\xf5\\x44\\xad\\x54\\xae\\x18\\xb5\\x64\\xa7\\x37\\x54\\x32\\x7c\\x93\\x26\\xb5\\x62\\xbf\\xff\\x8b\\xa2\\x35\\x52\\x3e\\x96\\x6d\\x43\\x9c\\x86\\x4f\\xf7\\x3e\\xe3\\x0d\\x40\\x7c\\xcc\\x33\\x9d\\x96\\x6c\\x39\\x0b\\xf6\\x81\\x91\\x2b\\x8e\\xd8\\xb1\\x48\\x2f\\xda\\x54\\xf0\\xab\\xf1\\x95\\x7e\\x89\\xce\\x63\\x9c\\x62\\x73\\x29\\x37\\xdc\\x20\\x5e\\x17\\x98\\xbf\\x2e\\x28\\xf9\\x64\\xad\\xe1\\x6f\\x59\\x3a\\xff\\xae\\xe7\\xbf\\x24\\x69\\xd7\\xc9\\x54\\x45\\x40\\x41\\x42\\x79\\x8a\\x19\\xff\\xa6\\x73\\x20\\x5a\\x9b\\xe9\\x43\\x96\\xef\\x23\\x59\\xb0\\x6b\\x9e\\xea\\xbc\\x51\\x27\\x2a\\xe7\\xf5\\xfb\\xa6\\x65\\xe1\\xdb\\xee\\x65\\x39\\x6e\\x33\\xdc\\x71\\x39\\x75\\x07\\xae\\x97\\x6d\\xc7\\xc2\\x62\\x0d\\xa0\\x22\\xd1\\x77\\x2a\\x16\\x16\\xf7\\x16\\xab\\xa3\\x95\\xff\\xac\\x1e\\x8c\\x8c\\xce\\x4f\\x9c\\x51\\xb8\\x66\\x61\\x75\\xdf\\x90\\x0f\\xcf\\xa9\\x56\\x12\\xc6\\xb1\\x42\\x57\\x1e\\x90\\x52\\x2c\\x50\\xad\\xa6\\xe9\\xb0\\x21\\x66\\x69\\xd3\\x7f\\x7d\\x9a\\x9e\\x85\\xcd\\xb9\\x3f\\x34\\x48\\x3d\\x0b\\x79\\xdd\\x69\\xa9\\x25\\x14\\x2e\\x4a\\xfb\\x53\\xe2\\x82\\xc5\\x59\\xd8\\x25\\xde\\x4a\\x33\\xda\\x0a\\x48\\x7a\\x6a\\xba\\x9e\\x9d\\x99\\x04\\x6f\\x4c\\x01\\x22\\x6f\\xbd\\xf1\\x06\\x4e\\x0a\\x73\\x79\\x9c\\xc0\\xda\\x7c\\x52\\x49\\x81\\x13\\xfa\\xbc\\x4c\\x97\\x4c\\xc6\\x34\\x48\\x2d\\x4b\\x0e\\x0a\\x47\\x1c\\xde\\x48\\x29\\x1e\\x1f\\xa9\\x75\\x1d\\x6d\\xe1\\x32\\x11\\x4f\\xb9\\xcc\\x08\\x27\\x82\\xf8\\x38\\x1c\\xe0\\x88\\xf1\\xe9\\xe1\\x7d\\xfa\\xe7\\xc8\\xe9\\xf9\\x2b\\xc3\\x3f\\x65\\x97\\xeb\\xaf\\x4c\\x9b\\x44\\xbb\\xb7\\xab\\xf4\\x3f\\x9f\\x97\\x75\\x9f\\xb2\\xfb\\x65\\x3d\\x0b\\xb4\\xdf\\x50\\xb5\\x03\\xb5\\xc4\\xef\\x15\\x01\\x1f\\x59\\x56\\x00\\xa3\\x58\\xf1\\x83\\xa6\\x4e\\x4d\\x2a\\xff\\x8a\\xb4\\xb7\\x4c\\x35\\xbb\\x0e\\x5d\\x3e\\xde\\xfe\\xf1\\x8c\\xb0\\xa1\\x59\\x68\\xc4\\x00\\xb1\\x44\\x61\\xa8\\x95\\xdb\\x4e\\xb6\\xa0\\x6d\\x6f\\x7c\\x3a\\x55\\xff\\xdb\\xda\\xb0\\x70\\xa8\\xf3\\x8e\\x1f\\xfb\\x42\\x1d\\xda\\xf2\\xdf\\xc2\\x72\\xbc\\x18\\x8d\\xfa\\x50\\xf9\\x7c\\x18\\x8e\\xc6\\xa1\\xce\\xc3\\x8c\\x68\\xb0\\x68\\x28\\x87\\x8a\\x36\\x2e\\x54\\x05\\x6a\\x47\\x76\\x1e\\xcd\\xeb\\x67\\x16\\x8e\\x1d\\xa3\\x88\\xe0\\xbc\\xc8\\xff\\xb4\\xc3\\xbb\\x70\\x16\\x0e\\x4f\\x31\\x81\\x08\\xf8\\x8b\\xd7\\x4d\\x2c\\xbc\\xe5\\x8e\\x39\\xfc\\x82\\xf7\\x31\\x43\\xc2\\xb9\\xa6\\x37\\xe2\\x58\\x20\\x4e\\x35\\xbd\\x11\\xd5\\x5f\\xa0\\xa5\\x7d\\x80\\x72\\x66\\x1a\\xb5\\xff\\xb6\\x51\\x3f\\x6f\\xb9\\x1c\\x14\\x2a\\xcf\\x9f\\xb6\\x9e\\x59\\xf8\\xd9\\x34\\x5a\\xff\\x40\\xad\\x5b\\xc1\\xb9\\x6f\\xc6\\x44\\x9d\\x01\\x57\\x8f\\x21\\x45\\x72\\xae\\xc7\\x6e\\x68\\xbf\\xbc\\x47\\x53\\xbd\\x53\\x29\\xe3\\x1a\\xcd\\xc0\\x68\\x4b\\x6b\\x34\\x23\\x36\\xc4\\xb1\\xa5\\x45\\x9c\\x56\\x4b\\x33\\x31\\xca\\x45\\x30\\xb3\\x68\\xe6\\xdc\\xbe\\xa5\\xe8\\xbc\\x2a\\x5c\\xda\\x87\\xe2\\x35\\x8b\\xf2\\x21\\x66\\x49\\xbb\\xa1\\x6d\\x83\\xe2\\x9d\\x0e\\x17\\xa5\\x70\\xb3\\x6f\\x14\\x8b\\xe0\\xd3\\xbe\\x78\\xd7\\xb7\\x0c\\xfd\\xb0\\x98\\x2d\\x2c\\x06\\xc7\\xbf\\x6f\\x32\\x41\\x35\\x0e\\x9c\\xd3\\x1d\\x11\\xe4\\x06\\x2a\\x7c\\x41\\xf8\\x37\\x17\\x1c\\x9b\\x9a\\xc5\\x27\\xc8\\x08\\x69\\xba\\x48\\x16\\x9f\\xc7\\xaa\\xf2\\x8e\\xe2\\x68\\x54\\xc6\\xf4\\x37\\x24\\xa3\\x13\\x0a\\xe2\\xd8\\xcf\\x1e\\x86\\x61\\x88\\x40\\x67\\x20\\x80\\x62\\xb2\\xbe\\xd1\\x44\\x2d\\x72\\x0f\\xf4\\x84\\x26\\xc1\\xb4\\x3b\\x95\\x11\\xa6\\xd5\\x4d\\x97\\x9a\\x14\\x31\\xb7\\x0d\\xcf\\x88\\x23\\x68\\x33\\x20\\xef\\xd0\\x36\\x3d\\x23\\x33\\xc3\\x4f\\x6b\\x59\\x74\\x98\\x36\\x19\\x60\\xd1\\x19\\x54\\xc6\\x68\\x66\\x16\\x53\\x36\\x08\\x15\\x8b\\x6e\\xcb\\xbb\\xe6\\x6d\\x33\\xb0\\xe8\\x0e\\xfd\\x4c\\x67\\x15\\xa6\\x9a\\xb3\\xe8\\x7e\\x02\\xaa\\xb7\\x61\\xf4\\x97\\x2c\\x91\\x0e\\xfd\\xe3\\x97\\x43\\x8d\\xd4\\x3c\\x63\\x06\\xd5\\xa1\\xba\\xb2\\x6e\\x87\\x0a\\x9b\\x2b\\xb6\\xa8\\xc7\\x16\\x66\\xf0\\x54\\xb8\\xb3\\x9b\\x90\\xb7\\xdd\\xa2\\xa1\\xc9\\x62\\xe7\\x57\\x7c\\xf6\\xc8\\x6e\\x87\\x2c\\x46\\x40\\x29\\xa4\\xbf\\xde\\x64\\xcd\\x01\\xbf\\xa8\\xf4\\xd7\\xcc\\x11\\xda\\x8b\\x22\\x8d\\x43\\xc7\\xe2\\x41\\xfb\\x0a\\xcd\\xc4\\xee\\x7f\\x58\\x83\\xfe\\x82\\xe8\\x48\\x91\\x1a\\x58\\x7c\\xe1\\xc7\\x71\\x76\\x6c\\xd7\\x7f\\x03\\xfb\\x89\\x1d\\x1b\\xe5\\x58\\x7d\\xcf\\x8e\\x6d\\x76\\xcb\\x79\\x1e\\xd2\\x9c\\x44\\x3e\\x0f\\x69\\x06\\x56\\xcc\\x7c\\x6a\\x38\\x3b\\x82\\xfa\\x82\\x1a\\x2a\\xf6\\x02\\x6f\\x31\\xee\\x13\\x47\\x2a\\x68\\xc2\\xc8\\xce\\xe9\\x97\\x0e\\x2a\\x9d\\x7f\\x8e\\xea\\xfe\\x12\\x9d\\xa7\\xa1\\xba\\xe9\\xb7\\x28\\xfd\\x57\\xa9\\x93\\xec\\x65\\x95\\xcf\\x8a\\xec\\x1b\\xc3\\x68\\xb2\\x8a\\xfc\\x6f\\x99\\xa1\\xca\\x38\\xef\\x03\\x57\\x43\\x5d\\x88\\x52\\x8e\\xa9\\x5a\\x99\\x28\\x8d\\x23\\x55\\xb5\\xea\\x44\\x39\\xef\\x6f\\x75\\x62\\x1e\\x72\\x05\\x21\\x43\\x3a\\xad\\xc1\\x47\\x86\\x4e\\x54\\xc8\\x07\\x6c\\x06\\xc3\\x42\\x98\\x32\\xe1\\x3d\\xd9\\x15\\xc8\\x84\\xb5\\xf4\\xee\\x08\\xb4\\x07\\x0d\\x2a\\x53\\x98\\x3c\\xd1\\x40\\xe8\\x42\\xac\\x33\\xd9\\x9c\\x3c\\xf1\\x2e\\xd1\\x73\\xb6\\x4d\\xbe\\x24\\xd9\\x2a\\x98\\x84\\x9e\\x20\\x4d\\xde\\x80\\x02\\x48\\x54\\xde\\x65\\x85\\x39\\xc1\\xd5\\xe5\\x44\\x66\\xae\\x12\\xf1\\xcf\\x61\\xc9\\xd3\\xcc\\x75\\xc2\\xb8\\x0e\\xe0\\xf7\\x8e\\x73\\x93\\x88\\x54\\x7f\\x1f\\x67\\xce\\x5e\\xf6\\xb1\\xe5\\xb2\\x31\\xef\\xd8\\xcb\\xde\\xfe\\x4b\\x3d\\xb7\\x37\\x9c\\x0f\\x8f\\xcc\\x1d\\x4b\\x39\\x7a\\xfa\\xc3\\x4b\\xdf\\x40\\xc2\\xe5\\xaf\\x0b\\x13\\x4b\\xc9\\x62\\x36\\xdd\\xaa\\x35\\x85\\x58\\x0f\\x2a\\xd6\\xb7\\x50\\x88\\xac\\xef\\xb9\\x60\\x2a\\xc0\\x75\\x15\\x7b\\xed\\x9b\\xf8\\x06\\x1c\\x2b\\x23\\x09\\xa4\\x70\\xaa\\x6f\\x66\\xf6\\x96\\xcb\\xb2\\xcb\\x1d\\xe8\\xb8\\xb2\\x66\\x6f\\xe9\\xd3\\xde\\x6d\\x55\\x35\\xec\\x2d\\x23\\x66\\x48\\x9c\\xb7\\xa9\\x49\\x7f\\xfd\\xa4\\x34\\xb2\\x65\\x6f\\x95\\x0f\\x15\\xb6\\x8d\\x46\\x40\\x7f\\x15\\xa1\\x31\\x30\\x08\\xed\\xa6\\xe5\\x66\\x20\\x68\\x8a\\xea\\xdb\\x06\\x88\\xf4\\xf6\\xa2\\x78\\x8f\\x54\\x38\\xb6\\x0d\\xaf\\xe2\\x15\\x7b\\xe3\\xba\\xc0\\x0d\\x7b\\x83\\xc2\\xb7\\xae\\xb1\\x51\\xcc\\xa5\\xea\\x27\\x86\\x0a\\xce\\x99\\x98\\x62\\xef\\xa7\\x8c\\xe1\\x49\\x53\\xaf\\x02\\xf6\\xb6\\xe6\\x41\\xc5\\xd8\\x5a\\x19\\x96\\x6a\\xc1\\x3d\\x07\\x6a\\x95\\xc8\\x11\\xea\\x04\\x23\\x65\\x29\\x69\\x9f\\x12\\x1a\\x96\\xcf\\x21\\xcd\\x13\\x7b\\x7b\\xb9\\x97\\x88\\xba\\x53\\xec\\xc7\\x1d\\xf1\\x50\\x90\\xf7\\x35\\xc1\\xa0\\x3b\\xc7\\x8e\\x92\\xfd\\xc1\\x24\\x9d\\xfc\\xc0\\x3c\\x27\\x90\\xff\\x3d\\x5c\\x9d\\x48\\xa4\\x6d\\xc2\\x5e\\xb1\\xff\\x07\\x00\\x00\\xff\\xff\\x92\\x00\\x31\\x8d\\xa1\\x3f\\x00\\x00\")\n\nfunc vendor_material_icons_codepoints() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_material_icons_codepoints,\n\t\t\"vendor/material-icons/codepoints\",\n\t)\n}\n\nvar _vendor_material_icons_material_icons_css = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x94\\x52\\x4d\\x6b\\xdb\\x40\\x10\\xbd\\xeb\\x57\\xcc\\x4d\\x76\\xe8\\x3a\\x69\\x08\\xa5\\x48\\x97\\x42\\x49\\xc0\\xb4\\x85\\xd2\\x1c\\x7a\\x1e\\x4b\\x23\\x79\\xc8\\x6a\\x57\\xcc\\x8e\\x91\\xe5\\xd2\\xff\\x5e\\x76\\x2d\\x15\\xdb\\x71\\x21\\xdd\\xdb\\x7c\\xbc\\x37\\xef\\xcd\\xec\\xa7\\xc6\\x3b\\x35\\x0d\\x56\\x04\\xbf\\x32\\x80\\x29\\xea\\xd8\\x8e\\x05\\xe4\\xdf\\x50\\x49\\x18\\x2d\\xac\\x2b\\xef\\x42\\x5e\\xce\\x0d\\x41\\x47\\x4b\\x05\\x38\\x2f\\x1d\\xda\\xbf\\xd9\\x81\\xb8\\xdd\\x6a\\x01\\x0f\\x77\\x77\\x31\\x17\\xa4\\x2a\\x60\\x27\\x76\\x31\\xb3\\x24\\x12\\xf3\\x83\\xda\\x9d\\x45\\x59\\x91\\xd7\\x65\\x09\\xb7\\x37\\xf0\\xe4\\x05\\xd6\\x8f\\x1f\\xcc\\x47\\xb8\\xb9\\x9d\\x61\\xd6\\x57\\x68\\x17\\x97\\xf3\\x97\\xef\\x32\\x38\\xbe\\x8b\\xfa\\x19\\xf3\\x49\\xdb\\xbf\\xa7\\x0f\\xbe\\x69\\xee\\x97\\xd0\\x44\\x07\\xba\\xc8\\x53\\xf8\\x66\\xe0\\x39\\xee\\x4d\\x30\\xd5\\x13\\x94\\xca\\x8e\\x74\\xec\\x29\\x5f\\x96\\xd9\\xef\\x2c\\x5b\\x75\\x13\\xc4\\x70\\xc4\\xfc\\xc7\\x1d\\xe6\\x8d\\x5f\\x1c\\xe2\\xfa\\x79\\x02\\x1f\\xa8\\x80\\xfb\\x87\\x7e\\x5f\\x42\\xdc\\xfb\\x77\\xa1\\x86\\x44\\xa8\\x86\\x38\\x16\\x62\\xf9\\x78\\x81\\x9a\\x43\\x6f\\x71\\x2c\\x80\\x9d\\x65\\x47\\x66\\x63\\x7d\\xf5\\x12\\x69\\x52\\xb4\\x9d\\x66\\xbe\\x8f\\x19\\xa5\\xbd\\x1a\\x15\\x74\\x21\\x7a\\x8b\\x23\\x1d\\xa5\\x4e\\x52\\x25\\x31\\xa1\\xc7\\x8a\\x5d\\x7b\\x2a\\x65\\xf0\\x52\\x9b\\x41\\xb0\\x3f\\x4b\\x6e\\x59\\x29\\x75\\x27\\xd9\\xb1\\x5c\\x26\\x21\\x42\\x95\\xb2\\x77\\x05\\x58\\x95\\x32\\xcb\\x92\\xee\\xe7\\x5d\\xdf\\x7b\\xd1\\xb8\\x4d\\x40\\x6b\\xe1\\x27\\x6d\\xbe\\xb0\\xc2\\x46\\xfc\\x10\\x48\\xc2\\xea\\x68\\xc2\\x0c\\xb4\\x79\\x61\\x35\\x47\\xeb\\x9d\\xf7\\xba\\x4d\\x4a\\xd0\\x29\\xa3\\x65\\x0c\\x54\\x97\\xaf\\xf9\\x9e\\xb1\\x41\\x61\\x40\\x57\\xc3\\xe7\\xad\\xf8\\x8e\\x26\\xb6\\xe4\\x53\\xc8\\xd5\\x24\\x89\\xc5\\xf7\\xca\\x1d\\x1f\\xe8\\x2b\\xb5\\xbc\\x61\\xcb\\x3a\\x5e\\x53\\xf7\\xc4\\x42\\x8d\\xdf\\xcf\\x8a\\x3a\\x7f\\x30\\x3e\\xec\\x5f\\x49\\x6a\\x05\\xc7\\x50\\xa1\\xa5\\x6b\\x1c\\xeb\\xc7\\x09\\x7e\\xfc\\x11\\x84\\xba\\x13\\x32\\x81\\x54\\xd9\\xb5\\xa1\\x80\\xdc\\x72\\x8b\\x79\\xfc\\x47\\x7f\\x02\\x00\\x00\\xff\\xff\\xcd\\xb2\\xdf\\xfa\\xca\\x03\\x00\\x00\")\n\nfunc vendor_material_icons_material_icons_css() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_material_icons_material_icons_css,\n\t\t\"vendor/material-icons/material-icons.css\",\n\t)\n}\n\nvar _vendor_picodom_picodom_js = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x7c\\x56\\x4d\\x93\\xa3\\x36\\x10\\xbd\\xe7\\x57\\xd8\\xa4\\x8a\\x92\\xca\\xbd\\x8c\\x77\\x73\\x33\\xdb\\x71\\xcd\\xa6\\x72\\x4b\\xf6\\x90\\xaf\\x0b\\xc5\\x01\\x43\\x83\\x59\\x63\\x89\\x12\\xcd\\xd8\\x2e\\xc3\\x7f\\x4f\\x49\\xc2\\xc6\\x33\\x93\\xcd\\xc5\\x0d\\xea\\xee\\xc7\\xd3\\xeb\\x56\\xcb\\xcb\\xb2\\x57\\x39\\xd7\\x5a\\x09\\x02\\x96\\xd7\\x40\\xef\\xbe\\x51\\xce\\x01\\x22\\x5f\\x5a\\xd2\\xe5\\x82\\xce\\xad\\x36\\xdc\\x85\\x61\\xd0\\xab\\x82\\xca\\x5a\\x51\\x11\\x2c\\x6f\\xce\\xa3\\x2e\\xfa\\x86\\xb6\\x2c\\xa6\\x28\\xb9\\x09\\x6e\\x70\\x33\\x82\\xcf\\x0a\\x43\\x6f\\xa3\\xec\\x58\\x6c\\xfd\\xa3\\x48\\x82\\x29\\x2f\\x48\\x81\\xe5\\x86\\x05\\x45\\x6d\\x9d\\xeb\\x42\\x1f\\xf1\\x3a\\xca\\x51\\xf0\\xbe\\xee\\x60\\xe6\\x27\\xaf\\x41\\xdf\\xd1\\xa2\\x63\\x53\\xe7\\x1c\\xc4\\x37\\xc7\\x82\\x3d\\xf5\\x97\\xcc\\x2c\\x14\\x18\\x4c\\xd2\\xb8\\xd4\\x46\\xf4\\x98\\x99\\xaa\\x3f\\x92\\xe2\\x2e\\x6a\\x48\\x55\\xbc\\x8f\\xfb\\x0f\\x1f\\x16\\x3f\\x7f\\x8a\\x65\\x11\\xb5\\x7d\\xb7\\x17\\x77\\x7f\\xd2\\xa7\\xd2\\xe5\\xc4\\xc5\\x2d\\x54\\xd6\\xa5\\x78\\x36\\x26\\xbb\\x44\\x75\\xe7\\xac\\x50\\x58\\x44\\xad\\x6e\\x85\\x94\\xd2\\xc3\\xab\\x07\\xd8\\x3b\\xa6\\x72\\x58\\xd4\\x74\\xb4\\x50\\x7d\\xd3\\x2c\\x51\\x85\\xe1\\x72\\xbd\\x44\\x67\\x3f\\x7a\\x2b\\x02\\xd5\\x1f\\x77\\x64\\x66\\x89\\xec\\xa2\\x5a\\x61\\x10\\x48\\x30\\x13\\x8e\\x94\\xb1\\x21\\xee\\x8d\\x0a\\xec\\x7e\\x55\\xf5\\x50\\x91\\xed\\x95\\xb3\\x6a\\x43\\x50\\x64\\x9c\\x6d\\x78\\x18\\xae\\x23\\xe4\\xfb\\xba\\x29\\x0c\\xa9\\x8d\\x19\\x37\\x24\\x18\\x8c\\x1c\\xef\\xf2\\xb8\\xca\\x42\\x06\\x0d\\xf4\\x50\\xc8\\x6b\\x5d\\x0a\\xcb\\x0c\\x31\\x93\\x8c\\x14\\xd5\\xaa\\x23\\xc3\\x5f\\xa8\\xd4\\x86\\x84\\x16\\x0d\\xf4\\x12\\x78\\xda\\xc1\\x14\\xba\\xc4\\x26\\xe2\\xac\\x0a\\x43\\x67\\x10\\x31\\xb3\\x56\\x5e\\x6b\\xc1\\x90\\x45\\x96\\x05\\x34\\xce\\x48\\xe8\\xb1\\x1f\\x86\\xa0\\x7b\\xb1\\x74\\x7d\\x96\\xd3\\xd5\\x96\\x26\\xc7\\x26\\xba\\xd1\\x9c\\x94\\x83\\x0e\\xb3\\x77\\x6b\\x7b\\xbc\\x8e\\xf0\\x82\\x49\\x0a\\xad\\x7d\\xaa\\x70\\x1d\\x57\\x9f\\xbb\\xb8\\x5a\\xad\\x7c\\x89\\x2f\\xf8\\x92\\x54\\x29\\xb2\\x4f\\xfc\\xaa\\x0b\\xea\\x92\\x2a\\x85\\xe3\\x03\\x94\\x7d\\xdf\\xa1\\x11\\x47\\x19\\x7b\\xfe\\xbb\\x30\\x14\\xfb\\x64\\x97\\x62\\x72\\x81\\x63\\x2a\\xc7\\x1b\\xa7\\x0a\\xd7\\x70\\xc0\\x75\\x7c\\xf8\\x9c\\xc7\\x8f\\xe8\\xef\\xd0\\x4e\\x0f\\xe4\\x93\\xc3\\x1d\\xbd\\x2e\\x45\\x9b\\xec\\x52\\x59\\xad\\x56\\x4e\\x31\\x07\\x71\\x46\\x23\\x4e\\x12\\x9e\\x71\\x9f\\x9c\\xd3\\x61\\x48\\xd2\\xd8\\xeb\\x7d\\xde\\x4e\\xc2\\x5b\\x36\\x4a\\x30\\x5c\\xe0\\x08\\x27\\xab\\xf7\\x61\\xb5\\x92\\x60\\x37\\xb8\\x11\\x3b\\xf4\\x81\\x82\\xe1\\x39\\x59\\xa7\\xf0\\x9c\\x7c\\x4c\\x7d\\x90\\xf3\\xdb\\xb5\\xad\\xe0\\xd7\\x55\\x73\\x81\\x17\\x09\\xef\\x93\\xe4\\xc6\\x7f\\xc7\\x7e\\xf7\\xfe\\x29\\x68\\x93\\x73\\x8a\\x27\\x39\\x3a\\x19\\x9c\\xb8\\x7e\\xef\\xff\\x23\\xa1\\x23\\x5d\\x0a\\x06\\xaf\\xce\\x54\\xed\\x6a\\xb5\\x9a\\xa5\\x5c\\xd4\\x6a\\xb1\\xf7\\x40\\x76\\xeb\\x55\\x0a\\x5f\\xd0\\x12\\x89\\xdb\\xe4\\x8b\\x8b\\x8f\\x0e\\x74\\x49\\x87\\xa1\\xbc\\xb1\\xf4\\xab\\x72\\x1c\\x5d\\xaf\\x71\\x18\\x36\\x4b\\x44\\x8e\\x94\\x2e\\xe8\\x9f\\xac\\xe9\\x29\\x0c\\xc5\\xf7\\x1a\\xb4\\x40\\x96\\x50\\x0a\\x82\\x62\\x6a\\xc0\\xfb\\x69\\x59\\xf0\\xdc\\xf8\\xc6\\x8e\\x8c\\xba\\x14\\x16\\x89\\x90\\xa6\\xc0\\x29\\x8e\\x2c\\x9d\\x39\\x36\\x7b\\x98\\x21\\x78\\x1d\\xef\\x5d\\x6b\\xec\\xb6\\x48\\xaa\\xc4\\xa4\\x48\\x89\\x49\\x5f\\x3b\\xd8\\x3b\\xd8\\x3a\\x26\\x5c\\x35\\x63\\x6a\\x8f\\x59\\x97\\xe2\\xfd\\x19\\x96\\xfe\\x4b\\x85\\xce\\xdd\\x08\\x8a\\x72\\x43\\x19\\xd3\\x5f\\x74\\x66\\xdb\\xd1\\x82\\xe4\\xdc\\x4f\\x0a\\x05\\x23\\xcf\\xc7\\x8a\\xdc\\xe9\\xdb\\xbe\\x49\\xfd\\xb5\\x21\\xfb\\xf6\\xf5\\x4f\\x11\\xec\\x99\\xdb\\xcd\\xd3\\xd3\\xe9\\x74\\x8a\\x4e\\x3f\\x45\\xda\\x54\\x4f\\x9f\\xd6\\xeb\\xf5\\x93\\x4d\\x07\\x9f\\xbc\\xf9\\xef\\x64\\xe1\\xbd\\xb1\\x97\\x2a\\x0c\\xbd\\x8d\\xb4\\xf2\\x51\\x61\\x98\\xfb\\xe1\\x74\\x1f\\xc9\\xf2\\xfa\\x26\\x44\\x28\\x39\\xca\\x37\\xe2\\x79\\xdd\\x1b\\xa1\\xc0\\x80\\x7f\\x49\\x4c\\xfa\\x10\\x84\\xeb\\xd8\\x7c\\xa6\\xb7\\x73\\x20\\x96\\x2a\\xca\\xda\\x96\\x54\\xf1\\x8b\\x75\\x08\\x2d\\xe6\\x90\\xc4\\xac\\x56\\xf6\\xc6\\x90\\xe3\\x7b\\xd1\\x6b\\x37\\xed\\x94\\xbc\\xbe\\x22\\x91\\x09\\xbb\\xe6\\xeb\\xab\\xd1\\x16\\x0d\\x6a\\x0c\\x5e\\x6c\\x9b\\x59\\x49\\xcd\\x30\\x04\\xf9\\x9e\\xf2\\x03\\x15\\xee\\x75\\x6b\\x4b\\xbd\\x71\\x65\\xd5\\x4b\\xc4\\x3a\\x0c\\x1b\\x41\\x60\\x40\\x43\\x2d\\x47\\x15\\x86\\x2a\\xd2\\xaa\\x6f\\x8b\\xef\\x68\\x32\\x7b\\x5d\\x03\\x8c\\x0f\\xb3\\xb8\\xbc\\xb1\\x9b\\x40\\x0c\\x1d\\xf5\\x0b\\x6d\\xe7\\x47\\xc1\\x72\\x43\\x91\\x7f\\xf6\\x1b\\xe7\\x87\\xf4\\xc6\\xa7\\x83\\xf1\\x5d\\x75\\xa0\\x8b\\xa5\\xfb\\x30\\xae\\x83\\x8e\\x2f\\x0d\\xf9\\xc5\\x9b\\x00\\xda\\x0b\\x60\\x40\\xa1\\xb2\\x97\\x85\\x94\\x14\\xb9\\xb0\\x44\\xa7\\xa8\\x12\\x9d\\x0e\\x43\\x10\\xf8\\x76\\x63\\x73\\xb9\\x52\\xc2\\x29\\xaa\\x31\\xcf\\x38\\xdf\\xdb\\x03\\x34\\xce\\x57\\xfa\\xf2\\xd5\\x7d\\xb5\\xa5\\xa8\\x23\\x7e\\x66\\x36\\xf5\\xae\\x67\\x72\\x0a\\xdf\\xb9\\x3f\\x2c\\x4b\\x39\\x8e\\x96\\x47\\x0f\\x85\\x9d\\xea\\xb9\\xfd\\xe9\\xf0\\xf1\\x6f\\x07\\x18\\xc8\\x40\\xfb\\x92\\x19\\x54\\x22\\x1b\\x86\\x7b\\x83\\xee\\x74\\x71\\xb1\\x8d\\x63\\x2f\\x25\\x8d\\xb9\\xbf\\x82\\x63\\xa9\\xc5\\xfd\\xc4\\x9b\\x31\\xa6\\x68\\x8f\\x0c\\x14\\xb5\\x96\\x34\\x76\\xa3\\x8c\\x7f\\x78\\x7a\\xfa\\x71\\xd1\\xe9\\xde\\xe4\\xf4\\x7b\\xd6\\xb6\\xb5\\xaa\\xfe\\xfe\\xe3\\x37\\x9c\\xfe\\x5d\\x44\\xdf\\xba\\xe8\\x98\\xb5\\xff\\x06\\x00\\x00\\xff\\xff\\x75\\xeb\\xaa\\x7d\\xfb\\x08\\x00\\x00\")\n\nfunc vendor_picodom_picodom_js() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_picodom_picodom_js,\n\t\t\"vendor/picodom/picodom.js\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_eot = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x8c\\xaf\\x55\\x50\\x1c\\x8e\\x0f\\xf8\\xb9\\xc0\\xe2\\xee\\x0e\\xcb\\xe2\\xee\\x4e\\xd1\\xc5\\xdd\\xdd\\xdd\\x5d\\x8a\\xee\\xe2\\xee\\xc5\\xdd\\xdd\\xb5\\x50\\xdc\\x8b\\xbb\\xb6\\x78\\xf1\\xa2\\x45\\x4a\\xbf\\xdc\\xdc\\x6f\\xfe\\x0f\\x37\\x77\\x2f\\xf7\\xc9\\x43\\x3e\\x93\\x4c\\x26\\x49\\xec\\x2f\\x00\\xc0\\xe9\\x14\\x00\\x80\\x07\\xc0\\x03\\x80\\x80\\xff\\x27\\x70\\x00\\x36\\xb8\\xff\\x3b\\xab\\x68\\x7c\\xc0\\x03\\xf6\\x8d\\x41\\x00\\x1c\\xd0\\xff\\xe9\\x14\\xc3\\x01\\x40\\x00\\x00\\x9c\\xfa\\x90\\x79\\xdc\\x11\\xe0\\xff\\x03\\x18\\xa0\\x05\\x70\\x07\\x58\\x01\\xdc\\x01\\x3e\\x00\\x77\\x00\\x08\\xa0\\x0a\\x70\\x07\\xb8\\xfd\\xcf\\x54\\x00\\x8e\\x00\\x7b\\x80\\x03\\xc0\\x07\\x00\\x00\\x60\\x01\\xb4\\x00\\xb6\\x00\\x7b\\x80\\x2f\\xc0\\x05\\x60\\x09\\xf0\\x02\\x00\\x00\\x3a\\x00\\x3d\\x80\\x2d\\xc0\\x0b\\xe0\\x0d\\x70\\xfc\\xdf\\x04\\x08\\xc0\\x03\\xe0\\x00\\x70\\xfd\\x2f\\x84\\x01\\x42\\x00\\x7e\\x80\\xe8\\xff\\x6a\\x5c\\x00\\xee\\xff\\xe3\\x3e\\x00\\x1f\\x80\\x1d\\xc0\\x12\\xe0\\xfb\\xbf\\x4d\\x0e\\x00\\x47\\x80\\x1b\\xc0\\x07\\x00\\x02\\x30\\x01\\xfc\\x00\\xdc\\x00\\x0e\\x00\\x2f\\x80\\xf9\\xff\\xf7\\x3d\\x00\\x80\\xb4\\xb6\\xbc\\xc6\\xff\\xfb\\x17\\x04\\x38\\xd5\\x31\\x40\\xb7\\x07\\x60\\xed\\x05\\x90\\x73\\x48\\x30\\x77\\x9e\\xb8\\xb0\\x16\\x4b\\xda\\x96\\x17\\xfe\\x78\\x73\\x7b\\xaf\\x42\\x91\\x47\\xe1\\xc0\\xc7\\x77\\xe3\\x90\\xba\\x84\\x55\\x01\\x8f\\xf0\\x57\\x68\\xe2\\x19\\x98\\x13\\x28\\x50\\x9d\\x9a\\x98\\x73\\x9d\\x59\\xd0\\x09\\xac\\x24\\xd7\\x94\\xf6\\x47\\xfd\\xe1\\xeb\\x56\\x55\\xa0\\xd6\\x3f\\xce\\xec\\x68\\x1f\\xc3\\x33\\xcc\\xd7\\x4b\\xa2\\x49\\x6e\\xc8\\xcb\\xdc\\xe9\\x97\\x07\\x72\\x2c\\xba\\x71\\x8d\\x57\\xfc\\xd1\\xda\\x7a\\x62\\xb8\\x1d\\x1e\\x18\\xfd\\x60\\x53\\x99\\x3f\\x1e\\x15\\x3d\\x5d\\x6a\\x7d\\x7b\\xb7\\x53\\x72\\x4d\\x10\\xd4\\x68\\xf8\\xc5\\xde\\x87\\xe9\\x90\\x97\\xc6\\x85\\xb3\\xce\\x74\\x7f\\xbf\\xe7\\x96\\x2e\\x8e\\x40\\x91\\x71\\x3e\\x20\\x88\\x47\\x3d\\x99\\xfa\\x06\\x4a\\x1d\\x62\\xa4\\x87\\xea\\x4f\\xde\\x15\\xeb\\x90\\x3d\\xff\\x01\\xaf\\x61\\x77\\x51\\x0f\\x52\\x99\\xbc\\x5a\\xa2\\xf5\\x35\\xcb\\xb0\\x40\\x13\\xbc\\x0c\\x08\\xa3\\x7c\\x3b\\x70\\xde\\x72\\x7e\\xef\\xc6\\x58\\xb8\\xc9\\x0b\\x9d\\x1c\\x2a\\xf6\\x5b\\x7e\\x0b\\x52\\xb9\\xad\\xbf\\x36\\x73\\x1c\\x77\\xa2\\x1a\\x97\\xf8\\x20\\x36\\x82\\x00\\x95\\x58\\x44\\x22\\xc4\\xb0\\x48\\x81\\xf1\\xd5\\x6d\\x19\\x3e\\xa8\\xfb\\x43\\x7f\\x5b\\x11\\xd2\\x90\\xc1\\xb3\\xd1\\x49\\xb7\\x64\\x93\\x35\\xa4\\x28\\xa5\\x65\\x13\\xc9\\x64\\x62\\xea\\xa5\\x1a\\x30\\x20\\x90\\x04\\x1f\\xa0\\x02\\x03\\x00\\xb1\\xdf\\xb0\\x97\\xdd\\x47\\xf7\\xc8\\x1f\\x97\\x63\\x0c\\xdc\\xcb\\x43\\xf2\\x5b\\xf6\\xaa\\x66\\x84\\x57\\x8c\\xc4\\x72\\x4b\\x4d\\x01\\x6c\\x27\\x76\\x43\\x5d\\xb3\\x9c\\xbd\\x70\\x28\\x68\\x92\\x96\\x08\\x71\\x01\\xe1\\x40\\x3c\\x50\\x29\\x62\\x2c\\x97\\x54\\x19\\x16\\x4e\\x40\\x24\\x10\\x4c\\x23\\x44\\x60\\x77\\xc5\\x32\\x32\\xcb\\x31\\x8a\\xc1\\x33\\x9f\\xe3\\x78\\x22\\xe3\\x2e\\x87\\x2f\\xea\\x43\\xdb\\x3d\\x3c\\x08\\x24\\xbf\\x1d\\xe2\\x4e\\xb3\\x8c\\x53\\xde\\x44\\x0d\\x6a\\xe0\\xf4\\xcd\\x70\\xe7\\x72\\x3d\\x55\\xed\\xb3\\xec\\x76\\x15\\x98\\x2c\\x5b\\xd8\\x37\\x7c\\x57\\x96\\x78\\x52\\xff\\xe0\\x9d\\x50\\xd9\\x67\\xf0\\x3b\\x71\\xcf\\x85\\xc3\\x07\\x31\\xd8\\x30\\xe4\\xc2\\x79\\x95\\xf0\\xe8\\x86\\x81\\x11\\x2a\\x24\\x83\\x63\\xe9\\xc1\\x40\\x1b\\xc9\\xcc\\x58\\x7c\\x4f\\xf8\\x44\\x10\\x39\\x0a\\x91\\x25\\xfc\\x15\\xc8\\x32\\x2a\\x60\\x84\\xd5\\x40\\x72\\x07\\x85\\xc2\\x12\\xa1\\x01\\xf4\\x39\\x12\\xbb\\x25\\x1c\\x09\\x47\\x7a\\x04\\x25\\x47\\x8a\\x0a\\x8d\\xc1\\x43\\x3d\\x92\\xc0\\x12\\x51\\x48\\xf1\\x44\\x40\\x94\\x00\\xa6\\xb4\\x65\\xdd\\xc5\\x1b\\xb5\\x99\\x66\\x4c\\x3c\\x92\\x50\\x20\\xf1\\x75\\x75\\x6c\\x9f\\x4e\\xbd\\x00\\x6e\\x44\\xf7\\x71\\xf7\\xa8\\x7f\\x4b\\x52\\x5b\\x79\\x69\\x5f\\x77\\xaf\\x62\\x63\\x40\\x8a\\x22\\xcc\\x85\\xa6\\x1f\\xed\\xfd\\xa6\\x54\\x2e\\xfc\\x92\\x20\\x93\\x2d\\x54\\x9e\\x4b\\x06\\x40\\x7c\\x47\\xc0\\x8b\\x7e\\x83\\x63\\x82\\xd2\\xfb\\xc5\\x7a\\x79\\xa5\\xaf\\x2b\\x4c\\x50\\x46\\x73\\xab\\xed\\x00\\xad\\xeb\\xbc\\xcd\\xbd\\x89\\x98\\x2e\\xe7\\x30\\x55\\xd9\\x1d\\xd3\\x46\\xdd\\xe9\\x74\\xac\\x74\\xfb\\xa5\\x8d\\x6b\\xae\\x73\\x89\\x45\\xa1\\x94\\x0c\\xb5\\x6d\\xe1\\xbf\\x69\\xb6\\x34\\x45\\x1c\\xc1\\x0b\\xe0\\xf5\\xca\\x60\\xd2\\x0d\\xfa\\xee\\xe4\\x54\\x8a\\x42\\xc6\\x29\\x1f\\xef\\x1b\\x3b\\x07\\xa4\\xd7\\x73\\x81\\x69\\x18\\x5f\\xcf\\xd8\\x4e\\x06\\xc9\\x22\\x9b\\x7e\\x96\\xf7\\x0a\\x5f\\xa8\\x7f\\x30\\x90\\xc8\\x4d\\x05\\x77\\x88\\xe9\\x7e\\xf1\\xcb\\xe7\\x03\\x76\\xcd\\xe2\\x6b\\x13\\xd1\\x3e\\x82\\x8d\\x6c\\xdf\\x0d\\xff\\x8e\\x44\\x14\\xd9\\x14\\xc0\\x2a\\xf0\\xfb\\xc8\\x9a\\x18\\x98\\xd6\\xea\\xf2\\x24\\x5d\\x94\\x43\\xca\\xcf\\x64\\xe9\\xa2\\x04\\x86\\x7a\\xee\\xfb\\xb7\\xa1\\xa7\\x89\\x2b\\x29\\x21\\x24\\x3a\\x52\\xfd\\x68\\x9f\\x0b\\xde\\xe3\\x3b\\x75\\xa9\\x09\\x11\\x8d\\xc3\\x17\\xd2\\x79\\x40\\x66\\x76\\xd7\\x4b\\x7e\\x52\\x9a\\x15\\xd2\\x23\\xce\\x24\\xc0\\x0d\\x69\\xa8\\x97\\xbd\\xd0\\x62\\x2f\\x18\\x46\\xa6\\x82\\xcd\\xb5\\x8e\\x6e\\x10\\xae\\xc0\\xf6\\x6f\\xc5\\xa2\\x1a\\x51\\x4c\\x38\\x52\\x8e\\x1e\\x46\\x8e\\xdf\\x0a\\x88\\xe7\\x66\\x62\\x1d\\x9d\\x0d\\x40\\xa8\\x05\\xbe\\x58\\xca\\x88\\xa1\\x59\\x93\\x51\\x73\\xb3\\x9f\\x90\\x53\\x82\\x1b\\xe8\\x25\\x1f\\x31\\x2c\\x0a\\xd1\\x84\\x4a\\xf1\\xd6\\xfc\\x94\\x57\\xac\\x47\\x7f\\x85\\xd2\\xe7\\x25\\xa0\\x3c\\xe1\\x61\\xc6\\xf8\\x54\\xe5\\x50\\x1b\\xe1\\x57\\x0e\\x6b\\xf0\\x46\\x48\\x0a\\xc5\\x2c\\x36\\x6d\\x00\\x6f\\x7a\\xb2\\x93\\x2f\\x67\\xcf\\xd4\\xc3\\x41\\x09\\xcb\\x74\\x71\\x4c\\x77\\xec\\x2d\\xcc\\x19\\x2e\\x64\\x45\\x71\\x64\\xf1\\x9a\\x22\\xe0\\x50\\x24\\x5f\\x6b\\x0d\\x36\\x89\\x58\\x32\\x1f\\x82\\xa9\\x7f\\xc0\\xd2\\x16\\x24\\x4b\\xca\\x0e\\x8c\\xef\\x3b\\xa0\\x9c\\x9b\\xf1\\x49\\xf5\\xfd\\x77\\x4f\\xec\\xc3\\x12\\x4c\\x29\\x78\\xb6\\x72\\x11\\x63\\x39\\x86\\x87\\x43\\x32\\xf9\\x33\\xf1\\x88\\xa5\\x96\\xa4\\xbe\\x12\\x1e\\x12\\x0e\\xb4\\xc1\\xde\\x1c\\x95\\x7a\\xe8\\x96\\x26\\x00\\x54\\x43\\x74\\x6f\\xc1\\x4d\\xd5\\x37\\x9a\\xae\\x27\\x09\\x10\\x41\\x2d\\x11\\x8f\\xf3\\x07\\x90\\xef\\x98\\x75\\xfe\\x8b\\x6a\\xa7\\xf0\\x28\\x34\\xae\\xe9\\xf1\\xee\\xf6\\xd9\\x6b\\xae\\xcb\\x0b\\x6f\\x5a\\x13\\xff\\x23\\x90\\x95\\xa5\\x78\\x29\\x74\\xd1\\xac\\x94\\x6c\\x28\\x41\\xc4\\xbe\\xa6\\x85\\xd0\\x4a\\xb0\\x83\\x66\\xa5\\xff\\x1f\\xa5\\x6e\\x5f\\xf0\\x23\\x09\\x3b\\x10\\xf0\\x93\\xc9\\x06\\x75\\xc8\\x92\\x28\\x5c\\x17\\xb3\\x7c\\xc0\\x81\\x08\\xdc\\x9c\\x5e\\xc7\\x49\\xf5\\xc8\\x2b\\xc4\\x4a\\xee\\xb5\\x6e\\xb5\\x3e\\x92\\xdd\\xfd\\x62\\x04\\xec\\xeb\\x8a\\x97\\x4e\\x6e\\xd6\\x46\\x77\\x4d\\x7e\\x41\\x23\\x45\\x59\\xa7\\xa8\\x7e\\x40\\xc1\\x34\\xb3\\xd4\\x07\\x1f\\xc1\\x8a\\x30\\xeb\\x8e\\x57\\xb6\\x6a\\x8b\\x7c\\xd1\\x50\\xbf\\x52\\x60\\x65\\xfe\\xe4\\x36\\x8f\\x18\\xbe\\x55\\x92\\x23\\x77\\xb3\\xfc\\x52\\xc2\\x85\\x91\\xca\\xdf\\x57\\xd3\\xf7\\x43\\x59\\x63\\xef\\x56\\x46\\x8f\\x69\\xf2\\xe9\\xf2\\xd1\\x8a\\xa0\\x74\\xd3\\xe3\\x9f\\xa2\\x23\\x5e\\x9a\\x97\\x63\\x29\\x9a\\x7b\\xea\\x20\\x8f\\x56\\x16\\x6a\\x65\\x4d\\x61\\xbf\\x14\\x75\\x08\\x66\\x6f\\x1e\\x24\\x9d\\xde\\x1b\\xda\\xa2\\x01\\x67\\x3a\\x9e\\xe1\\x90\\x16\\x7e\\x76\\x2a\\x02\\xbe\\x5e\\x6b\\xdc\\xba\\x2c\\xdf\\x01\\x91\\xd3\\x4c\\x61\\xbc\\x49\\xa3\\x41\\x39\\x0d\\x8e\\xbe\\x5c\\x9a\\x99\\x85\\xe7\\xe0\\x2e\\x15\\x59\\xfd\\xa4\\xee\\x0a\\x05\\x1e\\x3d\\x23\\x8c\\xd3\\x64\\xb7\\x6e\\x04\\xa3\\xd3\\x74\\xfe\\xf9\\x96\\xc2\\xa7\\x10\\xa7\\x02\\xf3\\xa1\\xe7\\x71\\x91\\x0c\\xd7\\xf7\\x02\\xb6\\x77\\x71\\x81\\x2e\\x3d\\x0a\\xed\\xad\\x28\\x3c\\xfd\\x41\\xc9\\xfe\\x9b\\x03\\x2c\\xb9\\xf7\\x74\\xe2\\xa9\\x11\\x7b\\xbc\\xb3\\xf7\\xb4\\x14\\xc2\\xf8\\xe4\\x9f\\xe2\\x98\\xdf\\x71\\xe2\\xcd\\xa3\\x09\\xda\\xb9\\x59\\x49\\x38\\x51\\xbd\\x9e\\x68\\xae\\x27\\xca\\x12\\x49\\x5a\\xf7\\xee\\xa0\\x1e\\x5a\\x34\\x45\\x57\\x44\\x1a\\x79\\x22\\x38\\xeb\\xa3\\x66\\x9f\\xd8\\xae\\xa6\\x5e\\xa4\\x44\\x12\\x61\\x0f\\x7c\\xdd\\x6e\\x3c\\xbd\\x57\\x70\\x59\\x5c\\xd2\\x70\\x31\\x58\\x65\\x78\\x71\\xbe\\xa4\\x62\\x96\\x4b\\x04\\xcc\\x28\\x3d\\x5a\\x19\\xde\\x61\\x38\\x38\\xef\\xcc\\xdf\\xf5\\x95\\x90\\x08\\x90\\x0b\\x30\\x5d\\x30\\x3b\\xdc\\xd3\\x72\\x48\\x92\\xc1\\x5f\\x5c\\x08\\xf6\\x30\\x3d\\x04\\xba\\x34\\xa9\\x11\\x8d\\x13\\xaa\\x24\\x2b\\x35\\xa4\\x98\\x6a\\xec\\xc8\\x45\\xbd\\x38\\x85\\xc7\\x15\\x51\\x29\\xa6\\x1b\\x0e\\xbc\\xd0\\xc6\\xd9\\x67\\x2a\\xce\\x5d\\x0a\\x94\\xb4\\x62\\x09\\xd1\\x63\\x1a\\xb4\\x23\\x24\\x83\\xcc\\xdd\\x98\\x09\\x4a\\x39\\xc7\\xca\\x8d\\x1e\\x69\\x97\\x1a\\x92\\xc0\\x3f\\x5a\\xe8\\x81\\x99\\xca\\x68\\x81\\x68\\x6d\\xd6\\xfc\\x9c\\x80\\x47\\xf1\\x9e\\x2e\\x4c\\xf6\\xd2\\xa9\\xd9\\x6c\\xe9\\x3d\\x3e\\xba\\x96\\xc4\\x07\\xc2\\x45\\x97\\xad\\xe1\\x9d\\x4f\\xa6\\x28\\x73\\xdd\\xd2\\xce\\xb4\\x8e\\xb4\\x55\\xe8\\x2a\\x16\\xec\\x19\\xc4\\x1a\\xa6\\x8a\\x2c\\x5c\\x30\\xca\\xef\\x7d\\x55\\x05\\xff\\x3c\\x41\\x47\\x24\\xf6\\x66\\x8a\\x70\\x5f\\x48\\x94\\xaa\\x2e\\x4c\\xbb\\x14\\x3c\\xa1\\xe1\\x4b\\x24\\x85\\x4d\\x0a\\xf9\\x54\\x3c\\x94\\x77\\x44\\xda\\x96\\x78\\x95\\xd7\\xe4\\x67\\x41\\xa7\\x72\\x13\\xa8\\xfd\\xd2\\xf2\\x91\\xa7\\x48\\x8c\\x96\\x16\\x27\\xdc\\x74\\x21\\x39\\x48\\x00\\x6b\\x78\\xbf\\xab\\x3f\\x00\\x78\\x84\\x09\\x09\\x2a\\x49\\x0c\\xb3\\xd4\\x54\\xe7\\xce\\x76\\xa8\\xe2\\xac\\xf4\\xe7\\x60\\x58\\xe3\\x34\\xf4\\xa0\\xab\\x77\\x8a\\xcd\\xfd\\x80\\x41\\x3b\\x55\\xe2\\x0e\\x53\\x93\\x07\\x57\\x3e\\x5e\\x0b\\xfd\\xef\\xc1\\x9d\\x3a\\xfa\\x9f\\xac\\xf7\\x72\\x9e\\xdc\\x0d\\xa3\\xfb\\xf0\\x61\\x67\\x56\\x93\\xcd\\xd3\\x98\\xe7\\xeb\\x15\\x27\\x1e\\xee\\x05\\x05\\x81\\x6f\\x1b\\x1b\\xce\\x2c\\xd6\\x45\\x3a\\x82\\x8a\\xe7\\xb2\\xaf\\xfa\\xe1\\x53\\xba\\x6a\\x81\\xbe\\xd7\\xd9\\xaa\\xbe\\x83\\x53\\xe4\\x33\\xd2\\x38\\x0b\\xda\\x51\\x65\\xdf\\x68\\x03\\x0e\\x45\\x58\\x07\\xc8\\x84\\x57\\x43\\xe2\\x8c\\x68\\xf3\\xa4\\xd3\\x12\\x8f\\xdb\\x79\\x6a\\x8e\\x17\\x49\\x7e\\xff\\xf9\\x8c\\x48\\x3e\\xe2\\x21\\x49\\xd1\\x9e\\xde\\x02\\x8c\\xb5\\x40\\x4a\\x0f\\x49\\xc3\\x5e\\x88\\x4a\\x7a\\x5d\\xe3\\x16\\x1c\\xe6\\x39\\x16\\x1c\\x82\\x85\\xc1\\xb3\\x1b\\x0e\\x00\\xe1\\x06\\x16\\xb4\\x04\\xb7\\x9c\\x7b\\xfe\\x9b\\x76\\xc3\\x1e\\x66\\x17\\xc1\\xfa\\x23\\x7b\\x1b\\x6e\\x11\\xaa\\xb0\\x24\\xda\\xbd\\x5a\\xf2\\xd6\\x2f\\xb0\\xdb\\xcd\\x4f\\x4f\\xc0\\xe9\\x41\\xc6\\x47\\x82\\xc1\\xe2\\xc5\\x51\\x03\\x1e\\x6e\\xae\\x66\\x52\\x7c\\x9e\\x22\\x7a\\x96\\xfb\\x55\\x68\\x88\\xd4\\xe8\\x46\\x31\\xb9\\x95\\x95\\x9f\\xd2\\xcb\\x9b\\xb9\\xab\\x8d\\xa2\\xf7\\xb7\\x81\\x48\\xfb\\xbb\\x5f\\x17\\xae\\x60\\x7a\\x24\\xe7\\x22\\x1a\\xb9\\x58\\x26\\x0e\\xd2\\x19\\x4e\\x32\\x9d\\x13\\x5a\\xea\\x57\\xb7\\x88\\xfb\\x99\\x48\\xbb\\xb8\\x3b\\xa4\\x53\\x8f\\x5f\\x1e\\x53\\x18\\x04\\x55\\x44\\x29\\x06\\xf6\\x35\\x0f\\xca\\x0f\\x08\\xec\\x12\\xb2\\xd5\\x59\\xdd\\xbc\\x08\\x2d\\x58\\x18\\xc9\\xa7\\xe4\\x95\\xd9\\x66\\x29\\x88\\x69\\x45\\x01\\x61\\x88\\x3d\\xc5\\x3e\\x43\\xc1\\x3f\\x74\\x86\\x50\\x53\\x35\\x24\\x78\\x74\\x50\\x04\\x86\\x17\\x07\\x39\\xa3\\x6a\\x00\\xf9\\xcc\\xa2\\x39\\xad\\x65\\x68\\x57\\x2e\\xfb\\xca\\xdf\\x54\\xe3\\x94\\x34\\x4a\\x6e\\xfa\\xb6\\x6f\\xc3\\x47\\x35\\x60\\xb3\\x75\\x60\\x81\\x12\\xed\\x3a\\x8c\\x5c\\xb4\\x26\\x11\\x68\\x3e\\x5c\\x36\\xa7\\x3d\\x05\\x97\\x11\\x4f\\xf0\\x80\\x28\\x59\\x07\\x5b\\x34\\x17\\x5f\\x6f\\xbb\\x17\\xd6\\x6f\\x48\\x64\\xc8\\x76\\x2f\\x2b\\x9c\\x2f\\xd2\\x17\\xfd\\x43\\x99\\x34\\x5f\\x31\\x2c\\xaa\\xbd\\x23\\x67\\xfc\\x29\\x58\\x5d\\xac\\xbc\\x36\\x8d\\x38\\x1e\\x74\\xe8\\x91\\xe1\\x39\\x8b\\xde\\x2c\\xf3\\x29\\xfe\\x05\\x98\\x69\\xf2\\x5b\\xc5\\xe3\\x9b\\x3e\\x09\\x69\\xee\\x68\\x84\\x00\\x47\\x72\\x34\\x4a\\xad\\x8c\\x4a\\x7a\\x19\\xdb\\x2a\\x5c\\xa5\\x5d\\xbe\\xd9\\xeb\\x62\\x9b\\x2c\\xae\\x85\\xea\\xa2\\x64\\xec\\xbc\\x24\\x12\\xda\\x3a\\x13\\x2d\\xfe\\x27\\x03\\xa1\\x2d\\x4f\\x95\\x34\\xe0\\x1b\\x7f\\xbe\\xd7\\x17\\x8c\\x6c\\xc6\\x08\\xd9\\xcf\\x7c\\x85\\xcb\\x00\\x46\\xd8\\x6a\\x9d\\x18\\xda\\x89\\x68\\xcc\\xb2\\x89\\x20\\xe5\\xf7\\x27\\xc9\\xac\\x6b\\x1d\\x59\\x4f\\x4b\\x0f\\xe3\\x69\\xcd\\x56\\x73\\x77\\x85\\xbe\\xe0\\x6d\\x97\\x6a\\xf0\\x1e\\x37\\x8a\\x52\\x65\\x47\\xd1\\xce\\x86\\xd1\\x42\\x5d\\x5d\\xf7\\x09\\x81\\x41\\xce\\x0a\\xf3\\xbf\\x1a\\x12\\xe6\\x4c\\x4e\\x6d\\xc6\\x08\\x5b\\x69\\x23\\xb9\\x2d\\x14\\xcf\\x79\\xb9\\xeb\\xb0\\x78\\x21\\xc7\\x9a\\x00\\xe6\\xfe\\x76\\x06\\x6b\\x06\\xd2\\x91\\x5f\\xb6\\x27\\x3f\\x6c\\x4e\\x7f\\xe4\\xbc\\xcb\\xdc\\x7a\\x50\\x22\\xa8\\xde\\x78\\x4b\\x93\\xdb\\x11\\xfe\\x6c\\x4f\\x62\\xc7\\x77\\xe3\\x2d\\x24\\x37\\x7d\\xc7\\x14\\xe8\\x3a\\x0b\\xa9\\x46\\x30\\xd1\\x7d\\xb0\\x72\\x0d\\x7c\\xd1\\xae\\xf6\\x6c\\x49\\x0c\\xea\\x8b\\x4f\\xe6\\xd3\\x9a\\x90\\x9e\\x1f\\x2e\\xb4\\xfa\\x08\\x59\\x17\\xa0\\x61\\x9b\\x48\\x36\\x01\\xb7\\xd5\\x4f\\xf6\\xda\\x33\\xdc\\xdc\\xb5\\x88\\x96\\x59\\x35\\xf6\\xa1\\x0f\\x63\\x2d\\xfe\\x0e\\xfe\\x43\\x70\\x14\\xa0\\x32\\x92\\xfc\\xe9\\xb3\\x66\\x8c\\x3a\\x62\\x60\\xd1\\x54\\x62\\xc4\\xb4\\xd0\\xef\\xe3\\xf8\\xec\\x1f\\xbc\\x95\\x7f\\x6b\\xd1\\x6a\\x7d\\xca\\x72\\x01\\x01\\x20\\xfa\\x01\\xd9\\x54\\xb9\\x6c\\x41\\x82\\xfd\\xb8\\xd9\\x65\\xba\\x6a\\x3d\\x1b\\x3f\\x9a\\xd6\\x00\\x01\\xdc\\x19\\xb6\\x3d\\xb8\\x1c\\xb2\\x27\\x54\\xfa\\x9f\\xe7\\x8f\\x19\\x16\\xad\\x27\\xa5\\xd2\\xb7\\x11\\x2b\\xbf\\xd4\\x4b\\x50\\x92\\xf0\\xce\\xfc\\x06\\x05\\xfc\\x6e\\x8a\\x26\\x81\\xdf\\x0a\\xff\\x35\\x59\\x05\\x24\\xf8\\x67\\x07\\x71\\x78\\xb9\\xf7\\x2c\\xa1\\xd3\\x53\\x8b\\xe3\\xd3\\x82\\xc5\\xa6\\xa3\\x9d\\x75\\xdd\\x1f\\x8f\\xaf\\x8e\\xe4\\x6b\\x75\\x25\\x80\\xfd\\x87\\x1b\\xa0\\x5c\\xa3\\x86\\xa8\\x09\\xac\\x9c\\x90\\x3f\\x61\\x38\\x61\\x78\\x8d\\xfa\\x54\\x67\\xdb\\x68\\xb7\\x44\\x3f\\xb3\\x02\\x93\\x87\\x95\\xfe\\xbc\\xd9\\x13\\x3a\\x93\\xac\\xe1\\xf9\\x7e\\xd0\\x3c\\xa4\\x93\\x7e\\xf7\\x91\\x14\\x7a\\x12\\xf5\\xec\\x04\\xe7\\xa8\\x46\\x2e\\x15\\xa7\\x85\\x96\\x62\\xcd\\xd7\\x1a\\xae\\x91\\x52\\xc4\\xa9\\x0c\\xa9\\xb5\\xa8\\x06\\xe6\\x7b\\x16\\xb9\\x65\\x08\\x1a\\x7d\\x6e\\x7b\\x5a\\xa4\\x87\\xa0\\x61\\xd4\\x77\\x51\\x9d\\xf3\\xae\\x9e\\x6d\\xc9\\x1b\\xa0\\x9a\\xdb\\xf7\\xf7\\xcb\\x8c\\xea\\xd6\\x9e\\x8e\\xeb\\x69\\x1b\\xcc\\x1b\\xb0\\x20\\xfe\\xeb\\x57\\x40\\xfa\\xed\\x6c\\x8c\\x65\\x8a\\xbc\\x38\\x84\\x04\\xff\\xb3\\x51\\x3f\\x8b\\xfd\\xbb\\x20\\x1c\\x75\\xdc\\x7c\\xdb\\xed\\x65\\x81\\x16\\x03\\x4d\\x29\\x6c\\x34\\x07\\xf9\\xbb\\x0a\\xaa\\xa3\\x14\\x65\\x37\\x52\\x4e\\x41\\xb5\\xe5\\x77\\x48\\x50\\x17\\xb5\\x2a\\x68\\x67\\x0d\\x5e\\xbc\\xb9\\x14\\x3d\\x81\\xb0\\x7c\\x5f\\xa9\\xdf\\x6d\\x91\\x48\\xe7\\xf2\\x0f\\xd1\\x6f\\x64\\x13\\x6b\\xec\\x70\\x0e\\xf4\\x8d\\xf3\\x5b\\xbf\\xdc\\x1c\\x39\\x59\\xe3\\xc2\\xf1\\xf1\\x08\\x0e\\x0b\\xa8\\x83\\xa4\\xe3\\xf3\\x96\\x1f\\x8e\\xf8\\xbb\\xff\\xad\\xf4\\xeb\\xcc\\x06\\xaf\\xa1\\x00\\x12\\x98\\x52\\x45\\xa6\\x3d\\x80\\x6f\\xf8\\x2b\\x2b\\xac\\x18\\x73\\xe8\\x53\\x02\\x89\\xa0\\x82\\x33\\x15\\xc0\\x9d\\x2b\\x59\\x4c\\xf2\\x47\\x83\\x86\\x64\\xf4\\x83\\x24\\xf7\\x45\\xdc\\x4a\\x58\\x4c\\x3d\\xbe\\xaa\\x67\\x72\\xe2\\x00\\xa9\\x6d\\x6f\\x51\\x83\\x94\\x7b\\x59\\xf2\\x10\\x8e\\xc1\\x10\\x82\\x1c\\x0a\\xa7\\xbb\\x22\\xd5\\x19\\xb5\\xcc\\x69\\xf5\\xd3\\x11\\xb6\\xdd\\x19\\x41\\xc0\\xe6\\x58\\x28\\x85\\x0b\\x3c\\x57\\x04\\xd9\\xfe\\x7e\\x10\\x99\\xc3\\x1f\\xd3\\x89\\x68\\x2e\\x37\\x6b\\x31\\xc2\\xf6\\x9c\\xf9\\x98\\x82\\x26\\x1e\\xcf\\xc5\\xda\\xc4\\x4c\\xd7\\x79\\x60\\x0b\\xdf\\xba\\x22\\x0a\\x6d\\x50\\x3f\\x80\\xca\\xad\\x22\\x86\\x8f\\x56\\x92\\x3d\\x58\\xc9\\x28\\xec\\x9f\\xac\\xe2\\xf5\\x41\\x51\\x61\\x28\\xeb\\xba\\x36\\x64\\xc6\\xb9\\x35\\x25\\x45\\x8a\\x8a\\x8d\\x00\\x92\\xe8\\xf6\\xa4\\x20\\x1b\\x70\\xc8\\x6b\\x31\\xd3\\xc9\\x34\\x6a\\xf4\\x37\\x49\\xf0\\xc4\\xcc\\x23\\x00\\xdd\\xba\\xad\\x68\\x10\\xdb\\x24\\xe1\\xba\\x12\\x0a\\xd7\\x13\\x8c\\x15\\x38\\xce\\x9b\\x2f\\x0a\\x33\\xbf\\x1d\\xf7\\x28\\x88\\x45\\x4b\\x12\\xfa\\xaf\\x07\\x95\\x50\\xe5\\x47\\xce\\x66\\x88\\xd0\\x28\\xb7\\x3c\\x79\\xf7\\x2f\\xaa\\x53\\x9c\\x92\\x1a\\x20\\x35\\xce\\x16\\x38\\x86\\x0b\\xb1\\xc4\\xd2\\xa8\\xc4\\xc0\\x0c\\x28\\xd5\\x8c\\xd3\\x9a\\x1e\\x3b\\xe0\\xa4\\x6c\\x71\\x82\\x28\\xea\\x8a\\x2f\\xf3\\x6b\\x4b\\xcc\\x68\\x21\\x16\\x37\\x3e\\x82\\x26\\xea\\x78\\x33\\x7d\\xb3\\x7c\\xbd\\xdc\\xe0\\x5b\\xdc\\x69\\x3e\\xde\\xe7\\xc9\\xb6\\x0c\\xc3\\x64\\x38\\x0b\\xcd\\xda\\x7e\\x34\\xb5\\xed\\x59\\x65\\x2f\\x2c\\x53\\xc7\\xae\\x5e\\x6d\\xb9\\xfa\\xa1\\x53\\xc0\\x57\\xac\\x58\\x8c\\xa8\\x1a\\x07\\x88\\x30\\x51\\xfc\\xa4\\xed\\x3e\\x32\\x68\\xad\\x36\\xda\\x52\\x7f\\xc9\\x6b\\x38\\x19\\x65\\xf1\\x7c\\xea\\xba\\x20\\x05\\x9d\\x28\\x06\\x31\\x53\\x32\\x38\\xe7\\xec\\xf6\\x79\\xac\\x61\\xe2\\xee\\x15\\xf3\\x01\\x13\\xd7\\x8d\\x24\\x93\\x22\\xcf\\x26\\x55\\x6c\\x33\\x03\\x86\\xe6\\xa6\\x86\\x10\\x92\\xf1\\x01\\xd1\\x20\\x3d\\x85\\xd0\\xa4\\x13\\x0b\\x43\\xd3\\x76\\x39\\x52\\x33\\xff\\x18\\xef\\x55\\xb8\\xbd\\xc0\\xbf\\x49\\x3d\\x73\\x18\\x1b\\x69\\xd9\\x3f\\xd4\\x19\\x8d\\x64\\xae\\x74\\xde\\x61\\x34\\x4e\\x1e\\xf4\\x2a\\x14\\x0d\\x61\\x05\\xb4\\x5a\\xce\\x37\\xa1\\xb4\\xce\\x9d\\xb2\\x5c\\x1f\\xe8\\xad\\x2c\\xc9\\x09\\x27\\x20\\x87\\xef\\xb3\\x90\\xf3\\xec\\xe2\\x94\\xdb\\x4a\\xcb\\x4f\\x0b\\xb3\\x20\\xf1\\x7a\\x29\\x19\\x89\\xbb\\x2a\\xac\\x94\\xa1\\xee\\x76\\xf4\\x58\\x4e\\xfc\\x39\\x51\\x52\\x5b\\x4c\\x8e\\x54\\x1a\\x8e\\xd8\\x8c\\x08\\x3a\\x2e\\x8b\\x86\\x79\\x02\\xa3\\x21\\xbc\\xe1\\x11\\x4b\\x25\\x62\\x23\\x68\\xce\\xde\\x1e\\xb5\\x4c\\xec\\x76\\xf4\\x8b\\xe1\\x60\\x94\\x91\\xab\\xa3\\x55\\xc2\\xa2\\xdc\\x50\\x4d\\x6b\\xf8\\xa8\\x1b\\xf4\\xe6\\xcd\\x65\\x4c\\x0c\\x02\\x00\\xa9\\x2e\\xa7\\x9e\\xb9\\xbc\\x9f\\x64\\x3b\\xf5\\xda\\x70\\x7c\\x9c\\x34\\xfd\\xcf\\x27\\x01\\x92\\x22\\x83\\xc5\\xee\\x9f\\x48\\x87\\x2b\\xca\\x30\\x14\\x4e\\xb8\\x71\\x32\\xb5\\x85\\x55\\xdf\\x8a\\x6f\\x72\\x1f\\x20\\x0d\\x11\\x6e\\x39\\x03\\x42\\x19\\xf6\\x98\\x35\\x25\\x9b\\xe8\\x92\\xb4\\x3d\\xb2\\xb7\\x84\\x0b\\x9e\\xbe\\x0c\\x5d\\x2e\\xf1\\x77\\xda\\xce\\x24\\x20\\xc3\\x8a\\xfc\\x54\\xd8\\xc7\\x01\\x25\\x0a\\x66\\x7d\\x43\\x90\\x0c\\x94\\x3a\\x59\\xd9\\x87\\x4a\\x10\\xbd\\x5b\\x16\\x69\\x03\\xad\\xe3\\x1e\\x4b\\x73\\x44\\x2c\\xb5\\xd2\\x31\\xb5\\xa4\\x25\\x19\\xa3\\x83\\x25\\x31\\xa7\\xa2\\x44\\xd1\\x90\\x66\\xc9\\x98\\xf9\\x5a\\xbe\\x7a\\x1d\\xab\\x7a\\x1b\\xab\\xb3\\xd2\\xad\\x3a\\xd7\\xfc\\xa7\\x8c\\x10\\xb9\\x96\\xf7\\x1e\\x0d\\xce\\xd8\\x2b\\xd7\\x99\\x57\\x0f\\xae\\x4d\\xa1\\xb5\\xe2\\x1a\\xa2\\x62\\xa5\\xa0\\xcc\\x85\\x6a\\xd4\\x46\\x13\\xe4\\xe0\\xd4\\xc9\\xb9\\x21\\xf8\\x37\\xbf\\x42\\x31\\xf6\\x1c\\x99\\x82\\xe4\\x03\\x24\\xbc\\xb8\\xff\\xb4\\x72\\x35\\x40\\xd8\\xee\\x33\\x22\\x31\\x87\\x5d\\xaa\\x04\\x92\\x15\\xfe\\x3f\\x97\\x4b\\x8e\\x8a\\x42\\x8c\\x31\\x1a\\x73\\x64\\xae\\x1a\\x51\\x8b\\x53\\x4c\\x9a\\xa7\\xad\\x70\\x62\\x83\\x25\\xbb\\xb0\\x8a\\xcc\\x6c\\x89\\x25\\x2b\\x95\\x77\\x25\\x05\\x5e\\x2c\\x53\\x17\\x1c\\xfb\\x43\\xec\\xf8\\x05\\xbe\\x16\\xc2\\x22\\x47\\x07\\x2b\\xf8\\x30\\xba\\x28\\x5f\\x99\\x25\\x7c\\xc4\\xb7\\x9c\\x70\\xc5\\x24\\x37\\xc7\\x51\\x3d\\x54\\x63\\x89\\x61\\x20\\x21\\x29\\x50\\x6b\\xfa\\x1b\\x82\\xde\\x39\\x28\\xa7\\x50\\xd3\\xc4\\xa3\\x1b\\x61\\xa0\\x26\\x6e\\x1b\\xd5\\xc0\\xe3\\xa3\\x46\\xc5\\x81\\x0b\\xa7\\xef\\x67\\x39\\xc4\\xd8\\x4d\\x35\\x42\\x65\\x17\\xd9\\x40\\xd6\\xaf\\x22\\xd8\\x32\\x56\\xd3\\xb9\\x57\\x55\\xc3\\xe0\\xf7\\x36\\x29\\xa9\\x4e\\xdc\\xb1\\xe9\\x5f\\x6b\\xae\\x12\\x18\\x62\\x9d\\x25\\xf7\\xc4\\x0a\\x4c\\x5f\\xd6\\x40\\x3b\\xa5\\xad\\xb0\\x0b\\x8f\\x29\\x33\\xf3\\xcf\\x97\\x63\\x5b\\xcb\\x96\\x50\\x5a\\xef\\x3d\\x05\\x43\\x65\\x54\\x47\\x36\\xa3\\x28\\x63\\xc8\\x71\\xed\\x42\\xf6\\xb6\\x8f\\x7e\\x83\\x95\\x15\\xe9\\x9f\\x0a\\x59\\xce\\x45\\x23\\x38\\xbf\\x9c\\x76\\xf3\\x99\\xad\\x52\\x21\\xc1\\x60\\x32\\x6c\\x73\\xf8\\xbf\\xf7\\xc4\\x3f\\x7c\\xef\\x1a\\x69\\x4a\\x3b\\xb4\\x4f\\xaf\\xde\\x36\\xc7\\x8d\\x1a\\xa8\\x19\\x56\\x99\\x2c\\xee\\x89\\x7f\\x93\\xe8\\x91\\x58\\x8c\\x07\\x60\\xea\\x9c\\x10\\x77\\x7a\\x50\\xc1\\xea\\x0b\\xcb\\x71\\x54\\xde\\x41\\xcb\\x03\\x93\\xe3\\x43\\x1d\\x2b\\x44\\xee\\xdd\\xbe\\x7c\\xe0\\x89\\x3d\\xa2\\xe7\\xb7\\x5a\\x47\\x5f\\x40\\x7d\\xe3\\x86\\x69\\x46\\xae\\x31\\x9c\\x12\\xe1\\x4f\\x30\\xf2\\x4a\\x21\\x5f\\x97\\x92\\x73\\x94\\xb2\\x73\\x04\\xa1\\x3d\\x1e\\x3e\\x3f\\xab\\xc6\\x57\\x52\\xe2\\x94\\xca\\xc7\\x70\\xb1\\xf1\\xb7\\xda\\x75\\x7b\\xcb\\xe5\\xc6\\x7e\\x0e\\xbb\\x0d\\xb7\\xb0\\x76\\xa4\\xfd\\x88\\x1e\\xde\\x81\\xa8\\xce\\x6b\\x37\\xe2\\x17\\x22\\x2a\\xea\\xa9\\x32\\x3b\\x5b\\x64\\x35\\xf8\\x84\\x15\\xcb\\x6b\\xb9\\x67\\x28\\x6a\\x87\\xd1\\x37\\xd1\\xac\\xc3\\x88\\xeb\\xf3\\xdd\\x1a\\xe1\\x3b\\x59\\xca\\xde\\x0c\\xef\\xfd\\x64\\xe6\\x14\\x9a\\x1b\\xad\\x3a\\xdb\\x13\\x97\\x0b\\xe2\\xf2\\x17\\xc2\\x96\\xf7\\xed\\x4c\\xac\\xeb\\x8e\\x3e\\x34\\x49\\xdc\\x6f\\xcd\\xd8\\x04\\xfc\\xa1\\x63\\x4a\\x70\\x8f\\x63\\x8c\\x38\\xa9\\x42\\xf9\\xe4\\x75\\xcc\\xc2\\xb3\\x42\\xf1\\x30\\x64\\x46\\x59\\xd6\\x4b\\x91\\x72\\x4e\\x5a\\xba\\x31\\xd8\\x1f\\x9f\\x47\\x21\\x8e\\x4c\\x62\\xca\\xa7\\x13\\x43\\x6f\\xdc\\xd7\\xce\\xb4\\x33\\xdc\\x01\\xd8\\x22\\xb8\\xf6\\x45\\x45\\x0f\\x40\\xf1\\x1f\\x8f\\xd3\\x99\\x46\\xd1\\x57\\x51\\x64\\xd7\\x2f\\x45\\x86\\x89\\x3b\\x2c\\x51\\x02\\x18\\x75\\xbb\\x25\\x25\\xe6\\xbe\\x99\\x59\\x12\\x38\\x85\\x10\\xb6\\xdb\\x4f\\x93\\x29\\x04\\x3b\\x8c\\x61\\xf0\\x6d\\x05\\xb2\\x2f\\x7c\\x45\\x27\\x4d\\xec\\xcd\\x3f\\x3e\\x7a\\x66\\x3b\\x4b\\x28\\x67\\x4d\\xc9\\xf7\\x4c\\x62\\x73\\xf4\\x9a\\x87\\xff\\x13\\x63\\x0f\\x61\\x6d\\xfc\\x59\\x0b\\x7c\\x14\\xc1\\x91\\x1c\\xe1\\xa3\\x16\\xc8\\xeb\\x8f\\x3c\\xf9\\x19\\xeb\\x12\\xbc\\xf6\\x53\\x8e\\xa4\\x5b\\x4e\\xe2\\xc4\\x93\\x23\\x28\\xff\\xb6\\x5d\\xb3\\x21\\x2e\\xdc\\xdd\\xaa\\x1f\\x35\\xdd\\x9e\\xbf\\xe8\\x60\\xff\\x54\\x4e\\xce\\x43\\xe4\\xba\\x32\\x87\\x79\\x6d\\x42\\xb1\\x34\\xee\\x9a\\x79\\x3e\\xa1\\xc6\\x15\\x76\\xca\\x95\\xc9\\x0b\\x4f\\x05\\x4d\\xa0\\xce\\xe8\\x7e\\xa5\\xec\\xb7\\x16\\xf3\\x0d\\xc1\\x72\\xa7\\xa0\\xbc\\x92\\x2b\\x33\\x33\\x19\\x5a\\x56\\xc1\\x26\\x29\\xbf\\x13\\x88\\x1f\\x50\\xcf\\x3b\\xa3\\xbb\\xf5\\xcf\\x5b\\x71\\xc2\\xc2\\x48\\x9f\\x44\\x1c\\x46\\xe8\\xb0\\x7c\\xe7\\x22\\x08\\x89\\x80\\x3b\\x2b\\x39\\x8f\\x36\\x8d\\xa1\\x0c\\x4d\\x50\\x89\\xef\\xaf\\x7a\\x1a\\x02\\xf8\\xf7\\x25\\x87\\xd2\\xfe\\xd4\\xb1\\x46\\xc4\\xba\\xc7\\x97\\xe6\\x0d\\xdd\\xcf\\x10\\x61\\x50\\x6c\\x26\\xc1\\xc2\\x35\\x20\\xd9\\x56\\x17\\x1a\\x05\\xa0\\xe6\\x26\\xcf\\x4a\\x39\\x6b\\x36\\x16\\x17\\xb6\\xc3\\x6a\\x87\\x3c\\x6b\\xe8\\x71\\x9b\\xb3\\xf0\\x57\\xca\\xa4\\x84\\x7f\\x11\\xb9\\x5c\\x89\\x4d\\xf8\\x1f\\xeb\\xe7\\x70\\x38\\x93\\x1f\\xfb\\x5b\\x2f\\xc7\\x85\\x30\\xe4\\xee\\x7e\\x5b\\x14\\x9e\\x3a\\xd5\\x41\\x58\\x16\\x28\\xc0\\xe7\\xbb\\x93\\xf6\\xef\\x12\\xce\\xe2\\x11\\xba\\xb4\\x96\\x54\\x0e\\xd6\\x53\\x1d\\x24\\x6e\\x96\\xe2\\xa7\\x72\\xc2\\x02\\x0b\\x8f\\xe4\\x58\\x19\\x4f\\xe5\\xc3\\x2b\\xdc\\xcb\\x03\\x98\\xf5\\x48\\xa7\\x60\\x38\\x6a\\x85\\xc9\\xe4\\xc4\\xe6\\x17\\xb4\\xab\\x95\\x21\\xb9\\xfd\\x06\\xc5\\xb3\\x2c\\xca\\x1a\\x9c\\x29\\x75\\x02\\x03\\x77\\x29\\xd2\\xa4\\x10\\x61\\xa2\\x18\\x96\\xb8\\xf8\\x4f\\x2c\\xf7\\xca\\x44\\xc3\\x5b\\x55\\x1a\\x43\\xbf\\x66\\x94\\x72\\x0e\\xbd\\xd8\\x28\\x54\\x46\\xb1\\xa8\\x5a\\x98\\x6c\\x43\\x5e\\x84\\xac\\xa8\\x01\\x38\\xad\\x53\\xf6\\xce\\x18\\xe0\\x14\\x6e\\x9c\\x14\\x26\\x45\\x74\\x1e\\xac\\x89\\x3b\\x4d\\x45\\xa0\\x14\\xd0\\x14\\x99\\xa4\\xdf\\xfd\\x75\\x91\\x8b\\xda\\xa9\\x66\\xb7\\x0b\\xee\\x83\\x3c\\xbf\\x0f\\xc1\\x6b\\x94\\xed\\x33\\xce\\x58\\x0a\\x02\\xfc\\xec\\xd0\\x10\\x7e\\x3d\\xa4\\xc9\\x0f\\x3e\\x07\\x91\\xbb\\xe5\\xa6\\x4d\\x22\\x08\\x3b\\x02\\x00\\x90\\xab\\x42\\x1f\\xe2\\x80\\x46\\x54\\xdb\\x2b\\x66\\x0e\\x61\\x43\\x50\\x92\\x13\\xc5\\x68\\xc9\\x5a\\xf9\\xe6\\x00\\xb6\\x94\\xf8\\x60\\xf0\\x66\\xcf\\xc0\\xc2\\xeb\\x6e\\x06\\x5d\\xd8\\x79\\xaf\\x17\\xe2\\xe3\\x6e\\xa2\\xd0\\xf5\\xd8\\x52\\xf1\\x6c\\x33\\x41\\xb0\\x27\\x8f\\x7e\\x3d\\x07\\x3e\\x02\\x87\\x74\\x81\\x08\\xd7\\x21\\x76\\xbd\\xc8\\xa7\\xaf\\x62\\xb2\\xd0\\x01\\x16\\x2c\\x37\\x62\\xf2\\x13\\x15\\x8b\\x9a\\xb0\\xb1\\x98\\x95\\xb0\\xd2\\x88\\x29\\xc9\\x0b\\x10\\x48\\x20\\x41\\xf2\\xf1\\xeb\\x23\\xc5\\x2b\\x35\\xdd\\x2f\\x5f\\xa3\\xc8\\x7d\\xd5\\xf5\\xc0\\x8c\\xc0\\x57\\x53\\x7d\\xc5\\x20\\x3e\\x32\\xc0\\x3e\\x78\\x3d\\xc8\\xbf\\xc4\\x45\\x3d\\xd2\\x8c\\x65\\xe8\\x79\\x7d\\xe8\\x25\\x76\\x33\\x07\\x29\\xef\\x17\\xe3\\x77\\x32\\x43\\x9f\\xb6\\x8c\\x15\\x94\\xda\\x9c\\x20\\xb4\\x54\\x62\\x16\\x82\\x82\\xd8\\xdf\\xf8\\x67\\xbf\\x8b\\x6e\\xe8\\x9d\\x03\\x68\\x45\\x44\\x60\\xf4\\xdf\\xe3\\x68\\xdb\\x04\\xd9\\x08\\x2d\\x4f\\xd7\\xf9\\xe3\\x9a\\xc0\\xcf\\x3e\\x45\\x1e\\x0d\\x66\\xb0\\x3d\\xcc\\x8f\\xab\\xb0\\x9a\\xa1\\x80\\x29\\x44\\x3d\\xa2\\x63\\xe5\\x4d\\x19\\x00\\x9d\\x94\\xee\\xcf\\xae\\x02\\x44\\xdc\\xa6\\x2f\\x28\\xf3\\x35\\x04\\x67\\x7f\\x60\\x5c\\x11\\xde\\xb1\\xfc\\x5e\\xf7\\xc0\\xa6\\xb4\\x7c\\xe9\\x1b\\x5e\\x84\\x68\\x20\\xc0\\x61\\xea\\x56\\x50\\xec\\x52\\x65\\xcf\\xa2\\xec\\x93\\xe1\\xbe\\x41\\x69\\xc1\\x11\\xb3\\x98\\x10\\x6e\\xc4\\xa5\\x26\\x7a\\x45\\x0e\\xb5\\x12\\x13\\x61\\x01\\xd8\\x21\\x79\\xd8\\xc7\\x20\\x03\\x15\\x94\\x84\\x4a\\x08\\xba\\xea\\xca\\x73\\xe9\\xa0\\x86\\x60\\xcb\\x65\\xdc\\xaf\\xca\\x92\\xfb\\x08\\x76\\x46\\x0c\\xe1\\x19\\x7d\\x30\\x2d\\x31\\xdd\\x8e\\xc5\\x29\\x22\\xe1\\xde\\x52\\x41\\x9f\\xf0\\xb4\\xc9\\xc4\\x00\\xb5\\x61\\x06\\x18\\x3f\\x9a\\x9b\\x52\\x3a\\x12\\xcb\\xda\\x02\\xb3\\x17\\x7e\\x4b\\x2d\\x21\\xe9\\xe7\\xd3\\x89\\x61\\x65\\x41\\x1e\\xf3\\x34\\x87\\xcc\\x15\\x7c\\x19\\xf8\\x22\\xc1\\xec\\xa8\\x83\\xed\\xf1\\x04\\xe6\\xf6\\x8e\\xce\\xd1\\x36\\x8d\\xd2\\x01\\xf0\\xd6\\x84\\x09\\x4d\\xad\\x88\\x0a\\xfd\\xd6\\x76\\x33\\x63\\xe4\\xf4\\xbc\\x6a\\x3c\\x8a\\x1b\\xb6\\x88\\x68\\xd1\\x9f\\x0b\\x23\\xfd\\xfe\\x86\\x23\\xb6\\x62\\x48\\x16\\xe8\\x93\\x66\\xff\\x94\\x77\\xb2\\x90\\x42\\x5f\\x83\\x80\\xcb\\x8f\\xc9\\x79\\xe7\\x20\\xed\\x74\\x56\\xed\\x26\\x7e\\x8f\\xa3\\x4b\\x5a\\xaa\\x4f\\xa0\\x4d\\x9d\\x04\\xb7\\xe8\\xa0\\xee\\x89\\xe5\\x9e\\x28\\x9e\\xde\\xae\\x4a\\x40\\x7b\\x87\\xf8\\x9c\\x60\\xb4\\x55\\x86\\x90\\x84\\xc8\\xc5\\x7c\\x80\\x6f\\x97\\x37\\x39\\x03\\xa3\\x06\\xc4\\xc6\\x50\\x55\\xab\\x44\\xce\\x65\\x43\\xc4\\xac\\x90\\x3c\\xc6\\xc3\\xe0\\xb4\\x34\\xee\\xda\\xc8\\x38\\xcc\\x11\\xa9\\x45\\xde\\x1c\\x05\\x9c\\xee\\xa2\\x96\\x0d\\x5f\\xee\\x0a\\x47\\xee\\x4d\\x66\\x15\\x71\\x04\\xe3\\x14\\xe5\\xc7\\x6a\\xc2\\x98\\xab\\x66\\x0a\\x8f\\x23\\x3e\\x39\\x6a\\xdf\\xfc\\x87\\x6f\\xa3\\xd2\\x51\\x22\\x4b\\x66\\x3a\\xa0\\xf1\\xf4\\x57\\x4c\\x58\\x93\\xb3\\xc2\\x76\\x63\\xa0\\x4f\\x4e\\x53\\xc5\\xf8\\xc1\\x88\\x98\\x04\\xdc\\x9f\\xac\\x61\\xe5\\xe2\\x0d\\x1a\\xb6\\xb2\\x9e\\x88\\xab\\xd1\\x64\\x44\\xa0\\x93\\x5e\\xbc\\x08\\xb8\\x18\\x0b\\x54\\xc0\\xdd\\x21\\xd7\\x52\\x62\\x8e\\x92\\xd7\\xcd\\xaa\\xcb\\xca\\x5d\\x73\\x03\\x1e\\x58\\xc1\\xb2\\xeb\\xc9\\xf4\\xaf\\x29\\x2c\\x55\\xca\\x87\\xf7\\xa2\\xff\\x8b\\x60\\x26\\x91\\x99\\xcd\\x81\\x6c\\x1b\\x39\\xfc\\x51\\xe7\\xfb\\x71\\xea\\x72\\xa9\\x7c\\x55\\xe6\\x2d\\x75\\xa4\\x84\\x43\\x40\\x91\\x94\\x1a\\x79\\x53\\xab\\xdb\\xce\\x14\\x65\\xc9\\xb8\\xd9\\xf4\\xaa\\x8f\\x7b\\xb6\\x71\\x89\\x4e\\xa5\\xde\\x14\\xad\\x8a\\x37\\x1a\\x1f\\x9f\\xfc\\xf5\\xf3\\x4f\\x9e\\x07\\x12\\xca\\x8a\\x16\\x2d\\x6b\\xf2\\xcc\\x5e\\xc5\\x5c\\x0e\\xb7\\x6f\\x12\\x91\\x6b\\x1a\\x79\\x74\\x24\\x8b\\x01\\x94\\x05\\x0a\\x63\\x78\\x81\\xe4\\x25\\xff\\xad\\x25\\xe0\\x4e\\x39\\xb0\\x7b\\xa1\\x45\\x7a\\x94\\x56\\xc9\\x1b\\xfa\\x01\\x54\\x72\\xfb\\xd6\\x24\\x43\\x24\\x41\\xd9\\x39\\x8c\\x05\\xfa\\xaa\\x71\\x5f\\xae\\xf8\\xec\\x55\\xcb\\xbd\\xd2\\xb5\\x00\\x57\\x74\\xea\\x63\\x3b\\x85\\xef\\x81\\xd5\\x9f\\xa4\\x3e\\xe0\\xa7\\x1e\\x87\\xd3\\x10\\x2d\\xb1\\xa2\\x73\\xbe\\xc3\\xf5\\x92\\xd1\\x42\\xb0\\x33\\xf8\\xc8\\x51\\x64\\x0b\\x56\\x93\\x09\\xda\\x05\\x0b\\x45\\xcd\\xb1\\xc8\\xb2\\x77\\x2d\\x99\\xea\\xb6\\x2f\\x29\\xff\\x03\\x66\\x77\\x40\\x4c\\x5f\\x5f\\x05\\x7e\\xc2\\x88\\xc5\\xc4\\xe2\\x2d\\xba\\x15\\x18\\x84\\xb4\\x6f\\x8f\\xaf\\x74\\xe6\\xfc\\xee\\xf1\\x8c\\x20\\x9a\\x9b\\x77\\x7e\\x31\\x11\\x6e\\xd1\\x62\\xc7\\xeb\\xf5\\x65\\xdd\\xe2\\xf3\\x74\\x22\\x1c\\xed\\xf1\\x10\\xdd\\x9d\\xf2\\x44\\x83\\xad\\xcf\\x10\\x9d\\xbe\\x7d\\xfe\\xd5\\x6e\\x11\\x0f\\xdd\\x98\\x40\\x50\\x85\\x6e\\x69\\x1e\\x12\\xd3\\x34\\x34\\x7f\\x18\\x4a\\xfe\\x05\\xf5\\xdb\\xbf\\xcf\\x54\\x36\\xbc\\x7b\\xd1\\x3a\\xab\\xb2\\x09\\xd3\\x4a\\x47\\x3e\\x3f\\x99\\x6f\\x27\\xc5\\x62\\xb8\\xab\\x86\\x95\\x0f\\x78\\x8f\\x6f\\x56\\x27\\xa6\\xe9\\x96\\x12\\xbf\\x31\\x4a\\x90\\x4a\\x36\\x43\\x1c\\xc6\\x3a\\xb2\\x67\\x45\\xc2\\x23\\xfa\\x30\\xed\\x19\\xe5\\x11\\xbc\\x75\\x55\\x96\\x4f\\x52\\xf4\\x7e\\xf4\\x05\\xda\\x2d\\x7c\\xda\\x4a\\x61\\xcb\\xa4\\x91\\xb4\\x68\\xb0\\x22\\xd4\\xa3\\x95\\x91\\x41\\xd3\\x68\\x22\\xab\\x78\\x20\\x8a\\xd3\\x39\\x72\\x1a\\xba\\x92\\xbf\\xf7\\xb8\\xf9\\x91\\x3c\\xdf\\xb7\\x30\\x2e\\x84\\x91\\x36\\xcb\\x11\\xdf\\x39\\x50\\xf5\\xe5\\x1f\\xe5\\x54\\x4e\\xf5\\x6a\\xbd\\xe5\\x37\\xb8\\x6f\\xfe\\x83\\x2e\\x9a\\xab\\xad\\x9f\\x4d\\x57\\x54\\x88\\x64\\x7a\\x84\\x43\\x10\\x2d\\xa9\\x8f\\x78\\xd1\\x3f\\x45\\x2e\\xf7\\xed\\x28\\xf8\\x86\\x7d\\xd9\\x4d\\x67\\x4b\\x53\\x91\\xe1\\x28\\x35\\xda\\xfb\\x96\\xc0\\x0b\\x41\\x6b\\xb8\\xf7\\xf1\\xf7\\x34\\x0c\\x70\\xfa\\x2f\\x38\\x9f\\xb0\\x25\\x4a\\x98\\xdf\\x26\\x3f\\x35\\x85\\xfa\\xdb\\xe4\\x83\\x7b\\x66\\xc9\\x5f\\x4e\\xc3\\x04\\x33\\xdc\\x70\\x3e\\x45\\x29\\xb3\\x9c\\xaf\\xe2\\xb0\\x9a\\x04\\x1f\\x1d\\x55\\x29\\xc5\\x7a\\x92\\x75\\x6e\\x76\\x8d\\x68\\x2a\\xee\\xbb\\xbf\\x58\\xc4\\xf5\\x7a\\x4c\\x51\\xc4\\x98\\x25\\x40\\x4d\\x0b\\x73\\x6e\\x5b\\xbb\\x9f\\x3f\\x82\\xd7\\x47\\xa6\\x47\\x5a\\xec\\x52\\x84\\x7b\\x08\\x50\\xe0\\x18\\x59\\x64\\x34\\x32\\x33\\x5f\\xb0\\x94\\x81\\xf9\\x21\\xa4\\x37\\x5d\\x8b\\xf8\\xc2\\x77\\x92\\xda\\x4f\\x59\\x28\\xfd\\xaf\\x15\\x38\\x78\\x67\\x3f\\xfd\\xe5\\xec\\xcd\\xa7\\xe1\\x99\\x98\\xef\\x54\\x11\\x25\\x2d\\x90\\x6d\\xbc\\x9f\\xd0\\xb8\\x94\\x4e\\x4e\\x8b\\x71\\xa4\\xe2\\x2a\\x9e\\x0b\\x18\\x59\\x72\\xfc\\x2f\\x2a\\xa7\\x79\\xb0\\xc8\\x81\\xff\\x0c\\x83\\xa5\\x27\\xe0\\xa2\\x1b\\xa6\\x0a\\x71\\x25\\x27\\x15\\x05\\x25\\x78\\x0b\\xed\\x63\\x2d\\x71\\xf9\\x8a\\x25\\xca\\x38\\x51\\xbf\\x61\\x73\\xb2\\x0a\\xa3\\x56\\xf1\\x99\\x29\\x1b\\x47\\x30\\x9e\\x69\\x05\\x1c\\xfd\\x0c\\x10\\x41\\xe4\\x18\\xff\\x71\\xa5\\xe5\\x63\\x0a\\x6d\\xc2\\x15\\xb0\\x76\\xe1\\x19\\x21\\xde\\xc8\\x89\\x30\\x90\\x25\\xbe\\x9a\\xf0\\xdb\\x44\\x2d\\xb8\\xb4\\xc6\\x47\\x87\\x87\\x29\\xa5\\x96\\x06\\xb6\\x35\\xcf\\x96\\xd4\\xe2\\xcb\\xab\\x18\\xbe\\x8e\\x2f\\x9e\\x62\\xd7\\xa3\\xdb\\x87\\x3f\\xb6\\xbf\\xe5\\x75\\x4d\\xce\\x92\\x95\\x00\\xde\\xac\\x08\\x6b\\xec\\xf4\\xf9\\xbc\\x52\\x35\\x3d\\x0c\\xd4\\x04\\xa0\\x0d\\xfa\\x87\\x1d\\xa4\\x50\\x3c\\x71\\x64\\x78\\xa2\\x52\\xa9\\x1f\\xdf\\xe5\\xca\\x74\\xae\\x06\\x75\\xab\\x7b\\x12\\x09\\x89\\xd4\\xe4\\xa9\\x1b\\x48\\x7e\\x54\\x01\\x6d\\xec\\xc6\\xc4\\xbf\\xc6\\x95\\xd9\\x7c\\x57\\x8c\\x53\\x90\\x54\\x76\\x2d\\x79\\xda\\x97\\x77\\x31\\x10\\x1a\\x66\\xc3\\x14\\x74\\x4c\\x31\\x4d\\xf1\\xee\\x6a\\x54\\x76\\x5f\\x11\\x4a\\x5f\\xa6\\xd3\\xb5\\x2c\\x9e\\x74\\x1f\\xff\\x61\\x0a\\x7d\\x56\\x51\\xbe\\xbf\\xa4\\x3c\\x49\\x3d\\xbc\\x84\\x2e\\x94\\xe6\\x3a\\xcc\\x50\\x59\\xf5\\xb2\\xbb\\xd4\\x25\\x30\\x8a\\xcb\\x64\\xb0\\xb9\\x22\\xe3\\x2a\\xcc\\xbe\\x87\\x6a\\x85\\x40\\x19\\xe7\\x91\\x6e\\x0e\\x6a\\xe4\\xb9\\x7a\\x47\\x99\\xbe\\xe1\\xb5\\xb6\\xf7\\xef\\x97\\x40\\x5f\\xf0\\xa3\\xfc\\x88\\x27\\x8c\\xe1\\x83\\x5c\\xf6\\x14\\x30\\x79\\xc9\\x24\\x9a\\xec\\x99\\x6f\\xc2\\xa8\\xf8\\xae\\x8f\\xb8\\x7e\\x80\\x03\\x04\\xaa\\x4d\\xf1\\xf8\\x6f\\x13\\x57\\x51\\xf3\\x7e\\x7d\\x3d\\x1b\\x54\\x8d\\xf9\\xad\\x80\\x7e\\x4f\\xf5\\x31\\x42\\x3b\\x9a\\x67\\x8b\\x3b\\x32\\x4d\\xf3\\xf4\\x26\\x33\\x32\\x16\\xae\\xd8\\xcf\\xae\\x00\\x55\\x1c\\x11\\x44\\x98\\x5c\\xff\\xce\\xc5\\x3b\\x45\\x89\\x08\\xe5\\x08\\x42\\xd0\\x54\\x7e\\x27\\x43\\x95\\x4c\\xed\\x95\\xd6\\xa4\\x90\\xcc\\x4e\\xa1\\x4c\\x98\\x47\\x93\\x69\\xc0\\x32\\x9f\\x2d\\x04\\x72\\xe1\\x26\\x56\\x7a\\x6f\\xdb\\x60\\x50\\x48\\x79\\x8a\\x25\\xc1\\x2d\\xaa\\xd3\\x84\\x22\\xf9\\x4b\\x8d\\x05\\x29\\x7e\\xf8\\x26\\xfc\\xee\\x40\\x73\\xbf\\x21\\xb2\\x2e\\xea\\x0f\\xdd\\xcf\\xa2\\xaa\\x05\\xe3\\xf9\\x66\\xa8\\x2c\\x9a\\xeb\\x1d\\x15\\x38\\x71\\xdd\\x2a\\xe0\\x05\\x1f\\x90\\x3b\\x0b\\x7a\\x87\\x54\\x63\\xa9\\x4a\\x5c\\x2c\\xbc\\xb9\\xe1\\x98\\xd0\\x45\\x5a\\xc6\\xe5\\xa9\\x4b\\x60\\xc0\\x4f\\xfd\\x5d\\x14\\x59\\x1f\\x59\\x36\\xe5\\xb3\\x97\\x58\\x60\\xd8\\xf2\\x5d\\x76\\x45\\x47\\x6a\\x71\\x54\\x33\\xca\\x84\\xf1\\x5b\\xd9\\x15\\x1a\\xed\\x0b\\x30\\xeb\\x20\\x50\\x82\\x31\\x92\\xb8\\x75\\x4b\\xc4\\xfd\\x23\\xf9\\xff\\x20\\x63\\xd4\\x9e\\x8a\\x19\\xe0\\x51\\x46\\x8c\\xdf\\xc7\\x3d\\x7d\\xe6\\x1c\\x89\\x05\\xa0\\xa9\\x96\\x68\\xb5\\xef\\x33\\x84\\x8c\\x27\\x7f\\x3b\\x4f\\x71\\x8c\\xb5\\xa2\\x2c\\x91\\x27\\x60\\x28\\x22\\x42\\x3f\\x52\\xe0\\xca\\x1a\\xfb\\xf3\\x34\\xb3\\xdd\\x45\\x1b\\xb5\\x03\\xc7\\x70\\xb2\\x19\\xdf\\x2d\\xb0\\x28\\x26\\xc7\\x06\\x18\\x9e\\x6d\\x28\\x03\\xff\\xf9\\x0a\\x0a\\x42\\x2f\\x22\\xa1\\xd0\\xa0\\xef\\xd2\\xb5\\x78\\x9b\\xfc\\x69\\x8a\\xdf\\x00\\xff\\x5f\\xaf\\x57\\xc1\\x3a\\x5e\\x72\\x87\\x8d\\x6c\\x93\\xd3\\xf6\\x51\\xad\\x3e\\xa6\\x44\\x22\\xa9\\x10\\xf7\\xaa\\xd6\\x56\\x90\\x41\\xe9\\xe5\\x3f\\xb5\\x14\\x3a\\x69\\x6c\\xd9\\xae\\xbb\\xaa\\xe6\\xa9\\x27\\x11\\xa5\\xc5\\x92\\xed\\x43\\x05\\x8d\\x93\\x04\\xc4\\x4f\\x7c\\x25\\xd5\\x38\\x9f\\x8e\\xd1\\x67\\xb9\\xd7\\x5b\\x73\\xd3\\x60\\x11\\x7a\\xf8\\xb6\\xdc\\x99\\x60\\xbf\\x99\\xef\\x11\\x51\\x55\\x79\\xcc\\x90\\xdc\\x8b\\x45\\x23\\xb9\\xe6\\x7c\\xa9\\x22\\xaf\\x92\\x90\\x74\\x28\\x62\\x12\\x8b\\x40\\x7d\\x76\\x8d\\xdf\\x05\\x2b\\x11\\xde\\x21\\x8c\\x13\\xc1\\xad\\xee\\x10\\xf7\\x26\\x8f\\xad\\x29\\x0b\\xa3\\x36\\x35\\x56\\x3a\\x87\\xd1\\x3e\\x52\\xab\\x20\\x5a\\x12\\x37\\x3d\\xbf\\xb5\\x6d\\x35\\x73\\x73\\xff\\x04\\x05\\x35\\xc8\\x95\\xd9\\x09\\xad\\x70\\x52\\x5b\\x65\\xa8\\xb3\\x0b\\x78\\x7c\\x1a\\x52\\x35\\x45\\x6b\\xff\\xcf\\x26\\xe9\\x55\\x20\\xb3\\x2a\\x52\\xb7\\x00\\xe5\\x8f\\x06\\xd0\\x2c\\xde\\xc7\\x4d\\x69\\xa8\\x7a\\x2c\\x3b\\x40\\x7a\\x69\\xaf\\x4b\\x46\\x34\\x2c\\xef\\x11\\xff\\x00\\x13\\x97\\x94\\x99\\x93\\x4f\\x45\\x3d\\xb5\\xa4\\xd4\\x85\\x8a\\x95\\xe9\\xde\\xfb\\xbc\\xb4\\xf3\\x37\\x6e\\xb4\\x74\\xe1\\x78\\xb8\\x16\\xe7\\x00\\x7b\\xca\\xc8\\x76\\x22\\x41\\x4d\\xd3\\xf2\\x52\\x5c\\x74\\xa7\\xd1\\x04\\x77\\x7c\\x65\\x19\\x77\\x39\\x06\\xf5\\xb3\\x2a\\xb3\\x9b\\x29\\xda\\x9b\\xfc\\x40\\x9a\\x22\\x1d\\xdb\\x3d\\xa4\\x1f\\x93\\xa4\\x3e\\x19\\x51\\x3a\\x8c\\x24\\x1e\\xfe\\xd8\\x8e\\x02\\x12\\x2f\\x36\\x25\\xeb\\x08\\xf1\\xa7\\xc3\\x41\\xd3\\xea\\xa6\\x4d\\xdc\\x5e\\x69\\xad\\x59\\xaf\\x13\\x63\\xb6\\x13\\xa0\\x56\\xd9\\x08\\x6d\\xfe\\x34\\xb4\\x0b\\x38\\x50\\xc7\\x31\\x52\\xe5\\x34\\x4a\\xdb\\x25\\x82\\xb4\\x2e\\xad\\x4a\\x8b\\x24\\xa3\\x6b\\x04\\x4c\\x27\\x64\\xc3\\x6b\\xdc\\x7a\\x55\\x14\\x61\\x15\\x75\\xfa\\xad\\x52\\xb2\\x46\\x1b\\x07\\x4a\\xdf\\xc0\\x6c\\x58\\xaa\\xbe\\x87\\xfe\\x73\\x70\\x4a\\x55\\xea\\x53\\x91\\x3a\\x16\\x93\\x40\\xe5\\x56\\xe5\\xe2\\x41\\x6e\\x4e\\x60\\x92\\x8f\\x5f\\x66\\x43\\x7a\\x19\\xf3\\x2a\\x13\\xf7\\x69\\x72\\x2a\\xcb\\xc6\\xe6\\x28\\x53\\xac\\x85\\xaf\\xd4\\xa6\\x8a\\x2a\\xfc\\x66\\x85\\x15\\xfb\\x8b\\x77\\xfa\\x3f\\x29\\xc0\\xaf\\xb9\\x56\\x9b\\xdf\\x8a\\x99\\x3e\\xb0\\xa2\\x80\\x16\\x8c\\x6f\\x34\\xac\\x55\\x19\\xae\\x84\\x95\\x6b\\xaa\\xb6\\x87\\x57\\x92\\xc6\\xfa\\x31\\xda\\xf4\\xd0\\xee\\xdd\\x9d\\x31\\x1c\\xca\\xa3\\xd0\\x1d\\xfc\\x4f\\x1a\\xd4\\x72\\x56\\x25\\x36\\x25\\x79\\x7b\\x86\\xc3\\x0d\\x48\\x7b\\x68\\xf5\\x3c\\x83\\xec\\x9f\\xac\\x47\\x2a\\x9a\\x89\\x49\\x7a\\x45\\x33\\x9f\\x70\\x47\\x70\\xef\\x6a\\x7a\\x6c\\x0d\\xcd\\x01\\x96\\x25\\xb4\\x4e\\x75\\x6e\\x81\\xdf\\xa3\\x62\\x98\\xbc\\xf3\\xf5\\x91\\x19\\x66\\xc3\\x6f\\xc9\\x10\\x86\\x13\\x54\\xf8\\x35\\x17\\xc0\\x5b\\x9c\\x98\\x52\\xeb\\x2f\\xfa\\x08\\x75\\x4c\\x3f\\x4e\\xc8\\x74\\xc8\\x0c\\xfc\\x9a\\xf5\\x72\\x62\\x7f\\x2e\\x55\\x4c\\x0e\\x07\\x2f\\x53\\x06\\xb8\\xd7\\x47\\xa5\\x60\\x2d\\x37\\x48\\xff\\x92\\xa7\\xa3\\x4b\\xe6\\x22\\x91\\x1f\\xee\\x75\\x41\\x59\\xd9\\x07\\x89\\x9c\\x83\\x95\\x35\\x24\\x53\\x24\\x25\\xb8\\xbf\\xb3\\x89\\x7e\\xe4\\xa4\\xba\\x0c\\xdc\\x09\\x66\\x63\\x72\\x9e\\x94\\x76\\x6c\\xbc\\x03\\x10\\x69\\x16\\x50\\xfb\\x7a\\xe8\\x43\\xbe\\xf6\\x34\\xa1\\x72\\xbf\\x1b\\x4b\\xf5\\x7a\\x0f\\x2f\\x34\\x0f\\xe2\\xf3\\xb4\\x74\\x4d\\x26\\xf6\\x19\\x5c\\xa6\\x7a\\x21\\x2d\\xcc\\x2e\\x0e\\x76\\x5f\\x77\\x53\\x5d\\x73\\xc4\\x4d\\xd7\\x5d\\x4f\\x9c\\x5c\\xd3\\xa1\\x54\\xf0\\xf9\\xb6\\x69\\x4a\\x73\\xf4\\xa8\\x8c\\x57\\x27\\x7d\\x15\\x79\\xe6\\xac\\x58\\x17\\x2c\\xc3\\xea\\x8f\\x3a\\xe4\\xa5\\x4d\\xe1\\x32\\x44\\x60\\x86\\x3d\\x18\\x25\\xe8\\xd8\\xa3\\x33\\xe8\\xcf\\x1a\\x05\\xb8\\xdd\\xa8\\x85\\x07\\x52\\xe8\\xea\\xae\\xe8\\xcf\\xf7\\x48\\x5d\\x61\\x4d\\x32\\xeb\\x14\\x8e\\x88\\xd1\\x6a\\xfc\\x31\\xff\\x92\\x6c\\x16\\x63\\x06\\x15\\x50\\x92\\x15\\x90\\x63\\x40\\x08\\x08\\xfe\\x34\\x21\\x74\\x84\\xb4\\xe3\\x9b\\xa3\\xc6\\xde\\x5f\\xe6\\x01\\xf7\\xec\\x0d\\xe8\\xa1\\xa5\\x3e\\x1e\\xe0\\xf6\\x6a\\x24\\x79\\x96\\x6a\\xdf\\x73\\xfc\\x60\\x2e\\xe4\\x70\\x2d\\x49\\x3f\\x47\\xe4\\x61\\xba\\xf7\\xdb\\x6c\\x70\\x40\\xe3\\x3b\\x0d\\xb3\\x9d\\x3a\\x0f\\x19\\x16\\x6d\\x11\\x21\\xa8\\x3e\\x50\\xa7\\xfc\\x89\\x0e\\xcf\\x3e\\xdf\\x16\\x8f\\x52\\x8d\\xa3\\x57\\xdd\\xf6\\x9f\\x71\\x53\\xcf\\x42\\x93\\x8f\\xeb\\x87\\xa0\\xa7\\x95\\x1f\\x6e\\xc3\\x0c\\xde\\xe7\\x2f\\x6a\\x5d\\x60\\xd0\\x70\\xe8\\xe7\\xd7\\xaf\\x97\\x34\\x9e\\xb1\\x08\\xb4\\xcf\\xcc\\x33\\x69\\x08\\x11\\x58\\xcf\\xf0\\x84\\x1a\\xd4\\x8c\\x2b\\x72\\x0f\\xdb\\xdc\\x9f\\x85\\xe1\\x2c\\x0d\\xfe\\xe8\\x2a\\x4d\\x78\\x23\\x89\\x6c\\xd5\\x2a\\x9f\\x91\\x8d\\x1e\\xf4\\xdf\\x18\\x77\\x06\\xf0\\x07\\x7f\\x94\\x83\\xd1\\x0c\\x95\\xae\\x38\\xc4\\xb2\\xb0\\x70\\xab\\x7f\\x92\\xc3\\xdc\\xcd\\x3d\\x17\\x9a\\x86\\xe8\\x4c\\x0e\\x42\\x4e\\x84\\x64\\xb6\\x09\\xa0\\x6f\\xb5\\xd4\\x67\\xe2\\xc5\\xf3\\x0f\\xdf\\x00\\x23\\x91\\xa5\\x3f\\x9c\\xe0\\xf9\\x4d\\x41\\x4d\\xaf\\x92\\x97\\x87\\x09\\x86\\x1e\\x15\\xde\\x21\\x40\\xb0\\x17\\x7e\\x7b\\xe3\\xf6\\x44\\xc8\\xa1\\x8e\\x27\\x8b\\x47\\x2d\\x6a\\x20\\xbc\\xd7\\x7c\\x15\\x05\\xd5\\xe7\\xbd\\x05\\xcb\\xa5\\x61\\x6a\\x49\\xbb\\x32\\x85\\x04\\x3d\\xfc\\x59\\x99\\xd8\\xe0\\x85\\xd4\\x61\\x90\\xb3\\x39\\x3b\\xcb\\x0a\\xd3\\xec\\x65\\xe1\\x99\\x4e\\x98\\x01\\x0a\\xfd\\x6c\\x6e\\xdd\\xdf\\xa4\\x00\\xa3\\xfc\\x8e\\x9a\\xdf\\x66\\x45\\xfe\\x48\\xe3\\x0d\\xba\\x8c\\xcb\\x24\\xc9\\xcd\\x3b\\x31\\xd0\\xfd\\x08\\x36\\x38\\x95\\x31\\xca\\xd8\\xf3\\x1a\\x7f\\xf7\\x41\\x74\\xdb\\x82\\xcc\\x1a\\x49\\xc0\\xf0\\x0d\\x49\\x1f\\x64\\xce\\xf6\\xba\\x0c\\xca\\x60\\x49\\x1d\\x3a\\xf8\\x37\\xb7\\xcf\\x73\\x76\\x2c\\xa9\\x6c\\x52\\x83\\xb6\\x7c\\x2b\\x06\\x4e\\x58\\x64\\x0c\\x8e\\x74\\x32\\x2f\\x6f\\xf3\\x68\\x20\\xcb\\x40\\x6c\\x6a\\xd1\\xf5\\xac\\xe3\\xad\\xec\\x3a\\x2a\\xe9\\x65\\x7e\\xf9\\xb4\\x6d\\x15\\x20\\x8f\\x2c\\x0d\\x44\\x2a\\x61\\x67\\x87\\x6b\\x6f\\x70\\xbc\\xb6\\xad\\x44\\x7a\\xf0\\x10\\xf7\\xfb\\x2a\\x99\\x8f\\x17\\xa1\\x84\\x06\\xfb\\x03\\x3f\\xe4\\x34\\xbd\\xc3\\xd4\\xdc\\x1d\\x43\\x21\\x68\\x8a\\xa4\\xb0\\x2c\\x79\\x85\\x39\\xb1\\x37\\x2b\\x50\\x3c\\x3d\\xfb\\xe3\\xc0\\xa2\\xc8\\x51\\x12\\xb6\\x24\\xa1\\x72\\xcc\\x57\\xa4\\x33\\xf7\\x2c\\x20\\x4d\\xc1\\x8d\\xf2\\x67\\x81\\x0b\\x0f\\x05\\x47\\x3b\\x25\\x56\\x6e\\x49\\x70\\x4e\\xdb\\xf8\\xd5\\xcc\\x4b\\xaa\\x98\\x0b\\xdb\\xb8\\xbe\\xf8\\x91\\xe7\\x48\\x9e\\xa6\\x4f\\x41\\x56\\x24\\x7d\\x49\\x3a\\x52\\x36\\x22\\x9e\\x22\\x0c\\x3d\\x00\\xf5\\x70\\x93\\xce\\x9e\\x08\\x89\\x32\\x14\\x84\\xdb\\xbd\\x73\\xc3\\x98\\x95\\x0c\\xad\\x8b\\xc2\\x7d\\x32\\xc7\\x02\\x0b\\x41\\x39\\x50\\x97\\x47\\x3b\\x7a\\x7f\\x29\\xe8\\x8c\\x28\\xd2\\xd4\\x6f\\x97\\xf3\\x27\\x8e\\x49\\xce\\x23\\x8d\\xf1\\xf1\\x8e\\xb7\\xe3\\xe2\\x0d\\xb8\\x1b\\xff\\xc5\\x9c\\x1d\\x1e\\x91\\xe7\\xa6\\xb8\\x41\\xb3\\xfd\\xad\\x40\\xc6\\x84\\xd2\\x9b\\x89\\x6f\\x25\\x8a\\xfc\\xe5\\xd7\\x46\\xa2\\xc0\\x3c\\x89\\x70\\x6c\\x16\\x07\\xb9\\x55\\x54\\x30\\xa9\\x86\\x58\\xa8\\x32\\x89\\x67\\x1e\\x3c\\x86\\x76\\xfb\\xdc\\x44\\xab\\xa6\\x18\\x8b\\x80\\xd1\\x86\\x37\\xc9\\xe8\\x11\\x5b\\x67\\xe2\\xee\\xc1\\x80\\x89\\xea\\xee\\xa8\\x1d\\x0c\\x42\\xbb\\xe9\\x74\\x6a\\xaa\\x8f\\x6a\\xe3\\x24\\xcd\\x93\\x6c\\x94\\xd1\\xa4\\x36\\xf0\\x81\\x4c\\x87\\x71\\x8d\\xa8\\x69\\x33\\xbc\\x44\\x03\\x57\\x12\\xd9\\x40\\xb3\\x7f\\x1d\\x9e\\x2c\\x81\\x9a\\x31\\x72\\xab\\xec\\x19\\x92\\xa8\\xf7\\x1d\\x49\\xf2\\xbd\\x26\\xae\\x73\\x9a\\x0e\\x64\\x22\\x9b\\xc4\\x66\\xba\\xc3\\x5e\\x8f\\x61\\xae\\x7f\\x6c\\xba\\xfc\\x5f\\x28\\xda\\xaf\\x2b\\xee\\xaa\\x7a\\xa1\\x61\\xbf\\x4d\\xc6\\x00\\x71\\x22\\xaf\\x3a\\x8a\\x5c\\xfc\\xdf\\x13\\xdd\\x19\\x0b\\x34\\xf4\\xb8\\x99\\xe3\\xce\\xdb\\x15\\x88\\xd3\\x84\\xc3\\x8d\\xff\\x7d\\x88\\xc9\\xec\\xfd\\xa4\\xdf\\x89\\x41\\xdd\\x2e\\x7c\\xcf\\x5c\\x96\\xaf\\x6c\\x6a\\xc1\\x24\\xd5\\x98\\xcd\\x09\\xbc\\xbe\\x3f\\xb0\\x95\\x8f\\x9b\\xcf\\x21\\x0d\\xd7\\x61\\xf8\\xbc\\x9b\\xaa\\xf0\\xa5\\x40\\x00\\x93\\x35\\x46\\x26\\xd5\\xa7\\x98\\xf2\\xc8\\xd7\\xd4\\x3b\\xf5\\x6e\\x7f\\xa5\\x3d\\x43\\x27\\x72\\x2c\\x2e\\x8f\\xf1\\xc7\\x55\\x4f\\x3c\\x05\\xcf\\xd2\\xc8\\x90\\xd5\\xae\\x1b\\xfb\\x12\\xf1\\x45\\x86\\x47\\xc9\\x51\\xcc\\x58\\xe2\\x50\\xa4\\xf0\\xf0\\xea\\x05\\xe1\\x92\\x3b\\x99\\xd0\\x4d\\x60\\x7f\\x2b\\x5e\\xea\\x28\\x85\\x84\\xdc\\x51\\x14\\xda\\xc1\\x2f\\x7d\\x96\\x1f\\x66\\x0f\\x53\\x52\\x86\\x3c\\x9c\\x79\\x69\\x08\\x7e\\x01\\xf5\\xcb\\x4e\\x00\\x3b\\x9c\\x5d\\xa7\\x18\\x2a\\x9f\\xa3\\x89\\xf6\\x6e\\xbe\\x3d\\x86\\x25\\xd6\\xd7\\x79\\x83\\x5e\\x16\\xba\\x16\\xb7\\xb8\\x8d\\x3a\\x46\\x24\\xce\\xe1\\x15\\x90\\xbf\\x13\\xc3\\x4a\\xdc\\x67\\xfe\\xe9\\x78\\x5d\\x52\\x76\\xd7\\x01\\xc7\\xdb\\x4b\\xcd\\xcf\\x36\\x87\\x62\\x1a\\x47\\xbd\\xe8\\x9b\\x2d\\x0d\\x28\\xb9\\x81\\x55\\x9f\\xb8\\x39\\xfd\\xba\\xc4\\x7b\\x51\\x05\\x4a\\x1d\\x33\\xca\\x59\\xf9\\x90\\xc4\\xd3\\xa5\\x14\\x57\\x22\\x7f\\x4d\\x3d\\xcf\\xd0\\x09\\x3b\\xb4\\xe0\\x09\\x31\\xee\\xa4\\xcf\\x2b\\x19\\x99\\xf4\\x38\\x7d\\xf1\\xf4\\x54\\x01\\x37\\xae\\xc7\\xca\\x1b\\xb3\\x11\\xde\\x5b\\x72\\x7a\\xae\\x0d\\x12\\x28\\xd5\\xf2\\x62\\x2c\\x58\\x2d\\xe5\\x73\\x6e\\x72\\xfd\\x20\\x33\\xb5\\xed\\xa2\\x83\\x98\\x0f\\xdf\\x7e\\x9e\\xf0\\x70\\xb7\\xe2\\xd5\\x1c\\x38\\x33\\x71\\x49\\x0d\\x5a\\x16\\xdc\\x90\\x76\\x51\\x16\\x35\\x5f\\x48\\xec\\x01\\xcf\\xf3\\xf2\\x85\\x33\\x1e\\x89\\xee\\xf6\\x12\\x78\\xf3\\x9c\\xb1\\x28\\x22\\x0c\\x46\\x2f\\x07\\x6c\\x7f\\xc0\\xa9\\xc8\\xfa\\xc4\\xb2\\xec\\xab\\x48\\xfb\\x6e\\x58\\x7f\\x11\\x56\\xa7\\xbb\\x66\\x92\\x0d\\xa3\\x0f\\x2d\\x0d\\x4c\\xf8\\x5b\\x32\\xde\\xab\\xc3\\xfd\\x4c\\x87\\x75\\x86\\xc0\\x47\\x16\\xae\\x36\\x62\\xb4\\x39\\xf7\\xb9\\x45\\xb5\\x03\\x7a\\x2b\\xb3\\x8e\\x6d\\x38\\xb6\\x2e\\xa9\\x8b\\x43\\x60\\x90\\x58\\x0e\\x56\\x16\\x87\\x63\\x65\\xc9\\x3e\\x5c\\x0a\\x98\\xff\\x17\\xfd\\x8a\\xca\\x2a\\x09\\x15\\x91\\x91\\x85\\xc3\\xf2\\xdb\\xca\\x67\\xd3\\xa9\\x9a\\x7e\\xb8\\x8b\\x0d\\xf5\\xa5\\x06\\xc9\\x7b\\x05\\xc8\\x57\\x8a\\xf6\\x3e\\xa2\\xaa\\x7b\\x3b\\x49\\x81\\x4e\\x47\\x8f\\xec\\x8f\\x64\\x94\\x3f\\xdd\\x5d\\x83\\xb3\\xdd\\xeb\\xc9\\x11\\xb2\\xfb\\x9e\\xb8\\x6e\\x4b\\xcb\\xc9\\x0c\\x2c\\x4b\\xdc\\xd3\\x2e\\x56\\xd3\\xdb\\x2c\\x28\\x87\\x18\\xf6\\x30\\x37\\xb5\\x42\\x09\\xe8\\xf4\\x5a\\xa0\\x29\\x0c\\xb8\\x89\\x8b\\x53\\xb2\\xf3\\x40\\x12\\x57\\x5c\\xc1\\x77\\xa9\\x2d\\x6e\\x7b\\xa3\\xdd\\x8d\\xad\\xd7\\x9a\\xb4\\xe9\\xed\\xdd\\x15\\x30\\x0d\\x37\\x31\\x93\\x05\\x0e\\xd5\\xb4\\x73\\xe2\\xc1\\x33\\x8b\\xcb\\xcc\\xe8\\x36\\x3f\\xc1\\xf0\\x83\\xb3\\x2b\\xb4\\x26\\xed\\xbe\\x45\\x61\\x88\\xbd\\x7c\\xa6\\x99\\x04\\xc5\\x77\\xd3\\xfd\\x40\\x96\\x28\\x2d\\x43\\xa2\\xc4\\xeb\\xf3\\xcf\\x78\\xcc\\x6e\\xfa\\x21\\x17\\x2d\\xa9\\x4f\\x2d\\x54\\x00\\xd7\\xc3\\x7c\\x88\\xe6\\x20\\x68\\xdf\\x40\\xd6\\x9a\\xfe\\xb0\\x5d\\x3f\\x3e\\x52\\x29\\xdc\\xa7\\x3c\\x11\\x4b\\x2f\\x75\\x10\\x94\\xd0\\xce\\x82\\xf9\\x94\\x33\\x8b\\x47\\xeb\\xc8\\x4a\\xff\\x57\\xab\\x72\\x80\\xe8\\x3e\\xc7\\x11\\xb6\\xdf\\x88\\x73\\x65\\x72\\x88\\xae\\x87\\x08\\xbc\\x73\\xc9\\xb6\\x06\\x63\\x92\\x62\\x9e\\x7b\\xe1\\xd4\\xec\\x1b\\x7c\\x47\\xb5\\x5e\\xc8\\xf2\\x4c\\x06\\xce\\x27\\x8a\\x60\\xc8\\xca\\xb1\\x91\\xd4\\x8d\\x21\\x96\\xcf\\x3b\\x2f\\x34\\x2f\\x7f\\xd6\\x23\\xc8\\x56\\x55\\xca\\x44\\x4e\\x1b\\x7f\\xae\\x98\\xb3\\xe7\\xfb\\x34\\x5b\\xe8\\xdb\\x36\\x1d\\xb5\\xc4\\x24\\xc2\\x90\\x53\\x12\\xe2\\x50\\xb5\\xc4\\x10\\x2b\\x0e\\xaa\\x2a\\x9b\\x36\\xf8\\x7c\\x26\\xcc\\x61\\x69\\x18\\xd8\\x3a\\xbe\\x9f\\x3d\\x2d\\x85\\xf2\\x85\\x80\\x78\\x60\\x3b\\xa8\\x81\\xc5\\xc2\\xd7\\xb4\\x3f\\x52\\xea\\x75\\x31\\x71\\x88\\xc6\\xee\\x91\\xcf\\xec\\x3f\\xab\\x7b\\x07\\x95\\x3c\\x6b\\xfb\\xfc\\xdd\\xcd\\xa1\\x20\\xa7\\x99\\x60\\x56\\x6d\\x68\\xfc\\x49\\x5f\\x92\\xee\\x65\\x45\\x61\\xce\\xa6\\x7e\\x7d\\x76\\xbb\\xb8\\x8c\\xee\\xe0\\xbe\\x0d\\x1e\\x27\\x38\\x8f\\x04\\xaf\\x0b\\xc2\\x9c\\xa4\\x80\\x46\\x14\\xaf\\x95\\xd8\\xdf\\x35\\x5c\\xf9\\x8f\\xab\\xa0\\xe1\\x40\\x63\\x84\\x74\\xab\\x47\\x4e\\x6f\\x57\\x8b\\x0b\\x0d\\xb2\\x69\\x96\\xde\\x20\\x95\\x56\\xae\\xf8\\x4e\\xfc\\x6b\\x40\\xbd\\x96\\xb6\\x38\\x3e\\xf3\\x7d\\x5e\\xc0\\x66\\x0f\\x72\\x33\\x9e\\xa6\\x83\\xe4\\xf2\\x4f\\x9c\\xcb\\x64\\xc0\\xa2\\x39\\xb3\\x3f\\x46\\x66\\x90\\xc4\\xca\\x8a\\x16\\xa9\\xba\\xa6\\x3d\\x31\\xe6\\x37\\x3d\\x81\\x1f\\x83\\x41\\x44\\xf0\\xdd\\xde\\xb2\\xc2\\x72\\xda\\xbb\\x09\\x2a\\x56\\x34\\x76\\xda\\xc1\\x2b\\x0d\\x60\\xef\\x0d\\x36\\x23\\x3c\\xeb\\x7c\\x3d\\x51\\xbd\\x59\\x07\\x32\\x91\\xa8\\x62\\x32\\x67\\xb5\\x0f\\x69\\xc6\\xab\\xb6\\x6f\\xcb\\x46\\x90\\x0f\\x16\\x4a\\x86\\x4b\\xa0\\x0c\\x3c\\x30\\x71\\x93\\x1a\\x37\\x9c\\xa9\\x57\\x09\\x1e\\xd7\\x88\\x44\\x2a\\x3b\\xe3\\xbb\\x19\\x94\\xcd\\xf6\\xee\\x48\\x05\\x45\\x92\\x15\\x5d\\x40\\xeb\\xcd\\x3b\\x5b\\x43\\xfe\\x4b\\x65\\xe8\\x49\\xb0\\x7a\\xf2\\xcd\\x1f\\xe2\\x8d\\x75\\xc6\\xe8\\xdc\\xfe\\xde\\xc3\\x32\\x5c\\x6e\\x26\\x72\\xf3\\x8e\\xf5\\x91\\xe3\\x32\\x3e\\xe4\\xed\\xbd\\x9e\\xa6\\x67\\x0f\\x41\\x4f\\xa8\\x2f\\x64\\x80\\xfa\\x51\\x2d\\x2e\\x40\\xdd\\x7f\\x73\\x07\\x94\\xfe\\x37\\xcb\\x63\\x47\\xf3\\xa7\\xda\\xbc\\xa7\\xe8\\x5a\\x40\\xfb\\xee\\x7b\\xda\\xe4\\xb1\\xc1\\x7f\\xbf\\xbe\\x31\\xec\\x8d\\xea\\x8c\\xca\\xae\\x7c\\xfd\\x94\\x52\\xe6\\x07\\xf9\\x41\\x09\\xd1\\x5a\\xb3\\x2c\\x4b\\x9a\\x1e\\x89\\xa5\\xd5\\x5a\\xd9\\x84\\xf6\\x44\\x23\\x39\\xcd\\x5a\\x0a\\x1e\\x75\\x7e\\x38\\x34\\x56\\x6a\\x2e\\x1e\\x9b\\x99\\xa0\\x16\\x33\\xb1\\x7a\\x54\\x2a\\x34\\x2a\\xb9\\x14\\x50\\x55\\xf5\\xe7\\xe1\\x05\\xb3\\xaf\\xd3\\xbf\\x38\\x27\\x76\\xf9\\xa8\\xa8\\x65\\xea\\x02\\x94\\x6e\\xe2\\x6b\\x9e\\x86\\x6c\\x44\\xfc\\x6a\\x0b\\x47\\x5b\\x21\\x39\\x67\\x66\\x85\\xb2\\x6d\\xa4\\x15\\x22\\x50\\x94\\xcf\\xf6\\x14\\xca\\x87\\xd0\\xbd\\x6e\\x97\\x69\\x55\\x4a\\x6a\\xc2\\x11\\x42\\x9d\\xdb\\xfa\\x6e\\x12\\x53\\x01\\x3d\\x0e\\x55\\xb2\\x0b\\x2c\\x2c\\x54\\x19\\x96\\xd7\\x94\\x3c\\xba\\x60\\x69\\x4a\\xe8\\x77\\xbf\\x9f\\xed\\x1b\\x79\\x45\\xf3\\xbd\\x45\\xfa\\x38\\xc8\\x37\\x42\\x88\\xb3\\x89\\x59\\xca\\x7d\\x52\\x86\\x76\\x2f\\x78\\x43\\x19\\x77\\x38\\xb4\\x6b\\x51\\x13\\xeb\\xfa\\x96\\xf5\\x6a\\xdc\\xbb\\x4c\\xc6\\xee\\x3f\\xf4\\x5f\\x23\\x3f\\x68\\x84\\x64\\x94\\x76\\x47\\x31\\xce\\xe3\\xf0\\xa3\\x25\\xf3\\x73\\xe4\\x70\\x25\\x71\\x2e\\x6c\\xcf\\x19\\xb6\\x8c\\x10\\x7f\\xeb\\x5c\\x8b\\x89\\x31\\x27\\xe0\\x22\\x63\\x91\\xe6\\x27\\x51\\x64\\xad\\x9c\\x0b\\x5d\\x9a\\x79\\xfa\\x93\\xfc\\xd5\\xf7\\x66\\x72\\x65\\x50\\x01\\x74\\xce\\x2f\\x2f\\xa4\\x9d\\xac\\xad\\x6b\\xa9\\xe9\\x19\\x0d\\x4a\\x72\\x10\\x0f\\xb9\\x9e\\xe5\\x01\\x6e\\x6a\\xab\\xe9\\x02\\xfc\\xbf\\x61\\x3f\\x8b\\x50\\x94\\x7d\\xec\\x57\\x22\\x65\\x73\\xae\\x51\\x68\\x38\\x96\\xee\\x9b\\x1a\\x14\\x1b\\x32\\xb5\\xbc\\xa7\\xa4\\x5a\\x1c\\x1c\\x24\\x96\\x5b\\xcd\\x8f\\x63\\x05\\x73\\xe5\\xa0\\xef\\xd5\\xee\\x32\\xcf\\x14\\xa4\\x9a\\xe8\\x13\\xde\\x48\\x05\\xe6\\x97\\x54\\x0e\\x90\\xd6\\xf3\\xf1\\xd0\\x6b\\xb4\\x0b\\xad\\xad\\x9e\\x0b\\xe0\\x24\\x11\\x7b\\xaf\\x2b\\xb6\\xfc\\x33\\xa6\\x56\\x73\\x71\\xe3\\x94\\xdd\\x59\\x97\\x68\\x41\\x13\\xc3\\x5f\\x9a\\xed\\xe8\\x62\\x33\\x9f\\xa5\\x9a\\x90\\x86\\xd9\\x18\\x1f\\xfb\\xd1\\x12\\x91\\x92\\x56\\x8f\\x1a\\xca\\x49\\x1d\\x58\\x6c\\x7e\\xe5\\xb2\\x0c\\x19\\xbe\\x9c\\x53\\x2e\\x95\\xba\\x23\\x4c\\xb3\\x4c\\x7a\\x81\\x12\\x74\\xd1\\x83\\x9e\\x2c\\xc9\\x16\\x46\\x05\\xe9\\x1a\\xce\\xa1\\x05\\xcd\\x49\\xbb\\x6c\\x68\\xd6\\xe5\\x25\\x3b\\x5b\\x97\\xbd\\x24\\x0d\\x94\\x9b\\x02\\x74\\x6b\\xb0\\x08\\x78\\x07\\x51\\x17\\x12\\xe6\\xd1\\xfb\\x0c\\xdb\\x2d\\x23\\xdc\\xd1\\x7a\\xfd\\x4e\\x8a\\xe1\\xae\\x59\\xcd\\x2a\\x61\\x51\\x15\\x72\\x68\\xf9\\xb0\\xbc\\xd7\\x1c\\x9d\\x87\\x4b\\xd9\\x23\\x7d\\x08\\xcb\\x00\\x1e\\x41\\xe2\\xdd\\x4f\\x12\\x8d\\xe0\\x26\\xe6\\x8f\\xc0\\xe4\\x79\\x15\\x4a\\x8a\\x7b\\x51\\x5f\\x5f\\x1d\\xb4\\x49\\x6b\\x44\\x8c\\x85\\xeb\\x77\\x34\\x36\\xea\\x1e\\x5c\\x9e\\xe2\\xe3\\xf3\\x38\\x1f\\xde\\xf7\\xfb\\x6f\\xfd\\x18\\x1e\\xae\\x35\\x13\\x4d\\xe4\\x12\\x5c\\xa3\\x2a\\x23\\x4f\\xf5\\x81\\x49\\xe8\\x56\\x16\\x4c\\x5f\\x13\\xc8\\x7c\\x28\\x83\\xfc\\xc8\\xd7\\xeb\\x05\\xb6\\xe5\\x3e\\xac\\xa9\\x5f\\x04\\xd3\\xc3\\x98\\x2a\\x33\\x25\\x76\\xc5\\xf0\\xb7\\x1a\\x31\\xe5\\x14\\xff\\xce\\xed\\x92\\x7a\\xc1\\x80\\xda\\x9f\\x08\\xaa\\x65\\xd2\\xd4\\xaf\\x46\\x0d\\x6d\\xaa\\xba\\x4c\\x9b\\xed\\xce\\xa3\\x04\\x98\\xf8\\x09\\xbc\\x82\\xd9\\x56\\x7f\\xb8\\xb1\\x3e\\x7f\\x28\\x2a\\xf1\\x88\\x7e\\xe2\\x67\\xc4\\x17\\x47\\x43\\x94\\x6b\\x28\\x8d\\x88\\xc1\\xeb\\x21\\x7e\\xc1\\xd7\\x6b\\x35\\x68\\x87\\xc2\\x4d\\x10\\xf6\\x3c\\x02\\x31\\x7a\\xc7\\x88\\xe8\\x7f\\x3a\\x2c\\x7d\\x99\\x84\\x55\\x8a\\xfd\\x9e\\x08\\x7f\\xa1\\x75\\xc7\\xb7\\x7c\\x60\\x4f\\x9f\\x58\\xa0\\x1b\\xc1\\x15\\x86\\xf8\\x8a\\x5d\\xe9\\xd6\\x9f\\xfa\\x72\\xb5\\x41\\x90\\xe9\\xac\\xe0\\xd9\\x85\\xff\\xc2\\xaf\\x3d\\x04\\xcb\\x7b\\xc0\\xe3\\x43\\x0b\\xc5\\xf1\\xfb\\x5a\\xd2\\x48\\x82\\x8a\\x70\\xea\\xc5\\xfa\\x0b\\x76\\x87\\x41\\xc1\\x18\\xc9\\xba\\x4b\\x16\\xdb\\xcc\\x05\\x56\\x06\\xed\\xdc\\x2e\\x2b\\x2f\\x10\\xa4\\xfb\\x64\\x8d\\x9a\\x26\\x83\\xda\\x58\\xbb\\xc8\\x96\\x8e\\xab\\x09\\x7c\\x5c\\x7c\\x4b\\x93\\xa4\\x31\\x63\\xfe\\x38\\x33\\x1a\\xe3\\x21\\xe5\\xc6\\xb9\\xb2\\xae\\xff\\x76\\x61\\xbe\\x96\\x15\\x67\\x4a\\x0d\\xfb\\x1b\\xf3\\x74\\x96\\xf2\\x73\\x67\\xeb\\x7c\\xa7\\x59\\x8c\\xcf\\x04\\x21\\x28\\x7d\\x8f\\x70\\x92\\xa9\\x58\\x84\\x38\\x0f\\x9d\\xbb\\x9a\\x01\\x08\\x5e\\xb8\\xec\\x3a\\xdd\\x30\\x8d\\xb7\\x9f\\x8c\\x2a\\xc7\\x8e\\x30\\x8c\\x4c\\x33\\xfd\\x65\\x81\\xd6\\x71\\x04\\x70\\xb2\\x27\\x25\\x91\\x62\\x69\\x06\\xd5\\x97\\x79\\xc4\\x74\\xda\\x78\\x5a\\x60\\x47\\x8e\\xc3\\x84\\x1b\\x8a\\x3c\\x6d\\xff\\x19\\xd4\\x92\\x7a\\x44\\x2d\\x49\\x10\\x3c\\x67\\x17\\x03\\xff\\x52\\xf4\\x88\\x1a\\x01\\x39\\xb5\\x7b\\x13\\xb6\\xde\\xf1\\xb3\\xea\\x46\\x7e\\xc7\\xc1\\x2e\\x77\\xe1\\xc5\\x58\\x00\\x13\\x99\\x24\\x48\\xa0\\x8f\\x12\\x60\\x70\\x59\\xc8\\x9d\\x8a\\xfd\\x6d\\xc1\\xfd\\x93\\x34\\xe8\\x14\\x0c\\xbf\\x94\\xbc\\x64\\x52\\xf1\\xef\\x8e\\xd0\\x27\\xe0\\xd1\\xee\\xf7\\x8d\\x38\\x1f\\xb1\\x3a\\x38\\xe1\\xe3\\xb6\\x90\\x3a\\x18\\x2e\\x70\\x0b\\xc9\\xa1\\xb0\\xcf\\x6e\\x00\\x67\\xd3\\x52\\x78\\x9f\\xce\\x10\\xa1\\x60\\xe6\\x21\\xdb\\xff\\x44\\x31\\x54\\xfc\\x46\\x0c\\xf2\\x27\\x8e\\xc9\\x44\\xc2\\xd6\\x4a\\x02\\x29\\x29\\xdd\\x8f\\xa3\\x97\\x70\\xac\\x7c\\x4c\\xd6\\x45\\xf6\\x00\\x5a\\xd4\\x27\\x07\\xeb\\xb5\\x57\\x3a\\x04\\xce\\x3a\\x04\\x83\\x86\\xb7\\x67\\xc2\\x50\\x80\\x70\\x25\\xd8\\x38\\x18\\x22\\xe8\\xb9\\x28\\xfd\\xf6\\xce\\xc7\\xaa\\xc9\\x10\\x40\\xba\\x67\\x92\\x8a\\x64\\x5c\\x5c\\x71\\xe4\\xcf\\xef\\x8b\\x5b\\x71\\xd8\\xbc\\x72\\x20\\xcd\\x95\\x2e\\x43\\xb2\\x43\\x8e\\x17\\x8c\\x75\\xba\\x68\\x27\\xec\\x74\\xec\\x56\\xf9\\x94\\x49\\x8f\\x45\\x8f\\x72\\x06\\x38\\xce\\xc1\\x59\\x29\\xea\\x7a\\x9d\\xaf\\x4e\\x35\\x35\\x9d\\x43\\x02\\x36\\x2c\\x97\\xab\\x3e\\xb2\\x79\\xaf\\x72\\x07\\xdf\\xd4\\x54\\xa5\\xe9\\x5e\\x27\\x09\\xe3\\xbd\\x72\\x1b\\x1e\\xa2\\x88\\xd7\\x1a\\xd8\\x6b\\x65\\x73\\xf1\\x25\\xbf\\x09\\x12\\x7c\\x40\\x9f\\x63\\xef\\x3a\\x98\\x55\\x8a\\x90\\x2c\\x6c\\xf8\\xce\\xaf\\xff\\x9e\\xc6\\x3a\\x0e\\x70\\x6a\\xc2\\x44\\xc5\\xe3\\x02\\x5b\\xbb\\x30\\x9d\\x94\\x94\\x85\\x84\\x58\\x14\\x3c\\xe5\\x1c\\xce\\xc3\\x45\\x87\\x34\\x45\\xea\\x73\\xa0\\x96\\x10\\x58\\xd0\\x1f\\x17\\x95\\x19\\xae\\xff\\xa2\\xfa\\xa5\\x72\\x88\\x4c\\x3a\\x40\\x54\\xae\\xae\\x71\\x3a\\x08\\x6e\\x7a\\xe1\\x7c\\x7e\\x2b\\x2f\\x42\\x8b\\xf7\\x52\\x57\\x78\\x33\\x7f\\xcd\\x39\\xbf\\x8b\\x36\\x73\\x65\\x9a\\x5f\\x39\\x48\\xfe\\x58\\xce\\x18\\x43\\xd1\\x0e\\x44\\x9a\\x32\\x28\\x72\\xa7\\x46\\xb8\\xb6\\x58\\x70\\x52\\xf4\\xa8\\x42\\xc7\\x44\\x47\\xd2\\x24\\xe1\\x9b\\xf2\\x79\\xf5\\xcf\\x0e\\x5a\\xf4\\xef\\x11\\x3b\\x7b\\xcd\\xdb\\xcd\\x2d\\xbe\\x1c\\x0f\\x17\\x1a\\x8e\\xd2\\xed\\x2e\\x38\\xc5\\x7d\\xc9\\x4f\\x42\\x9f\\x43\\xa7\\x9d\\x8a\\xfb\\x9c\\x45\\xe0\\x01\\x27\\xc9\\xc5\\xf3\\x61\\x6e\\x1a\\x55\\x85\\x46\\x9a\\x7d\\xf9\\x0a\\xaf\\xf0\\x48\\x61\\x10\\x0c\\x75\\xc8\\xb1\\xd4\\x63\\x8b\\x9e\\x8f\\x22\\xed\\x45\\xb5\\x63\\xb7\\x81\\x2a\\xc4\\x06\\xaf\\xd8\\x6f\\x24\\x82\\x71\\x9e\\x5d\\x79\\x5f\\x0c\\xfe\\x4e\\x82\\x6c\\x3b\\xce\\xc9\\x92\\x34\\xc5\\xa9\\xf0\\x62\\x1a\\x72\\x25\\x74\\x82\\x18\\x6b\\x08\\x3e\\x51\\xad\\x73\\xbb\\x67\\xb2\\x84\\x4b\\xd3\\x74\\xc6\\xe2\\x7c\\xba\\x8b\\x41\\x33\\x04\\xdb\\x42\\x6e\\xd9\\x2d\\x3c\\xea\\xa3\\x11\\x18\\x39\\x11\\x09\\x37\\x2e\\xca\\x34\\x5d\\xd3\\xf3\\x87\\xb0\\x22\\x51\\x1b\\xa2\\xa2\\xd5\\x0d\\xe4\\xdd\\xf1\\x9e\\xdb\\x2c\\x9d\\x86\\x45\\xaf\\x6e\\xf6\\xa5\\x74\\x21\\x14\\x34\\x3e\\x71\\xff\\x98\\x59\\xcc\\x20\\x39\\x94\\x28\\x6a\\x6a\\xa9\\x4b\\x6c\\xef\\x06\\x1c\\x0c\\x7e\\x4c\\xb1\\x62\\x43\\xe0\\xe3\\xcc\\x21\\x4d\\xe1\\xcf\\xe2\\x4a\\x38\\x4d\\xdc\\xa7\\x38\\x17\\x2d\\x90\\xcc\\xe6\\x06\\xe7\\x04\\xda\\xa1\\x3d\\x11\\x91\\xcf\\x8c\\xf2\\xe3\\xd8\\x2a\\x68\\x9f\\x19\\x5b\\x41\\xc1\\x88\\xc9\\x70\\x49\\xe8\\xe2\\xad\\x2d\\x0c\\xd8\\xa1\\x40\\x2f\\x92\\xcc\\xf3\\xf8\\xe1\\x36\\xfc\\xe0\\x4a\\x20\\x19\\x71\\x02\\xb7\\x79\\xe3\\x03\\x7e\\x2a\\xb6\\x23\\xb3\\x55\\x07\\x97\\x16\\x46\\xfb\\x8e\\xe3\\xef\\x6b\\x14\\xf3\\x7e\\xf6\\xb3\\xf7\\x90\\x7a\\x7d\\xf5\\x74\\xb5\\x79\\x38\\x91\\x32\\xb4\\x4c\\x46\\xb3\\x95\\xa4\\x10\\x2e\\x27\\x13\\x80\\xd9\\x85\\x51\\x1e\\xb5\\x08\\x27\\xb5\\xb7\\x00\\x4d\\x84\\x4e\\x1d\\x3a\\x10\\x4d\\xb2\\x37\\xba\\x67\\x2a\\xc3\\x1f\\x42\\x22\\xec\\x10\\xae\\x22\\x43\\x13\\x1f\\x67\\x03\\x54\\xfe\\x0f\\x71\\xa1\\xa3\\xd0\\xea\\x3e\\xd6\\x6a\\x1f\\x71\\xca\\xba\\x84\\x61\\xc5\\xe7\\xf1\\x01\\x43\\xc7\\x4f\\x05\\x56\\x57\\x67\\x10\\x91\\xca\\x00\\xd2\\xe4\\xd2\\xf8\\xc3\\xcd\\xf3\\xc4\\xf6\\xa7\\x91\\x2b\\x5c\\x72\\x03\\xcf\\xd3\\x61\\x39\\x1f\\x77\\x3e\\xee\\x99\\xe5\\xec\\x2c\\x86\\xa5\\x7b\\xce\\x33\\xd6\\x96\\x66\\xf3\\x8b\\xda\\xef\\x46\\x85\\x6f\\x3e\\x1e\\xe8\\x15\\x54\\x9b\\xf0\\xb3\\x54\\x64\\x68\\x1c\\xf6\\xb4\\xff\\xac\\x50\\x93\\x4b\\x6a\\x96\\x43\\xda\\x3d\\xbe\\xa7\\xe8\\x9e\\xda\\xf4\\x79\\x12\\xd8\\x8f\\x1d\\xff\\x76\\x1b\\x94\\x46\\x4d\\xd4\\x13\\xcd\\xcc\\x51\\xd8\\x92\\xfb\\x42\\xac\\x49\\x83\\xd1\\x3d\\xdf\\xf5\\x13\\xbe\\xc4\\xc0\\xba\\x47\\xbd\\x1d\\xef\\x68\\xb1\\xb8\\x19\\x95\\x3d\\x07\\x02\\x7d\\xac\\xc6\\x8c\\x45\\x81\\x71\\xd0\\x47\\xb7\\x13\\x00\\x0d\\x0d\\x38\\x15\\xa0\\xd7\\x4f\\xee\\xdf\\xd2\\x6c\\x4d\\x09\\x30\\xad\\xe8\\x14\\x50\\xef\\x79\\x8e\\xad\\xec\\xec\\xac\\xd0\\xec\\x93\\x8d\\xdf\\x0b\\x75\\xcc\\x67\\x4e\\xbe\\x43\\x0a\\xa3\\xf1\\xfe\\x9e\\xc5\\x4b\\xd7\\x8f\\x08\\x84\\xba\\xca\\x04\\xe3\\x73\\xe5\\x37\\xe1\\xa6\\x14\\x9a\\x04\\x01\\x03\\xda\\x0f\\xdc\\x6e\\x9c\\x1d\\x71\\xa8\\x9c\\x17\\x01\\xad\\x63\\x5d\\x25\\x87\\xff\\x38\\x66\\x46\\x7c\\x33\\x19\\x4a\\x05\\xa3\\x42\\x21\\x32\\xcf\\x4e\\xf8\\x06\\x9a\\x8f\\xbf\\x26\\x34\\x3b\\x5e\\x37\\xb9\\xee\\xbb\\x3d\\x12\\xbf\\x5c\\x20\\x99\\x3a\\x3d\\x23\\x33\\x92\\x8a\\x51\\xef\\x20\\x2a\\x13\\x7e\\x58\\x61\\xb5\\x12\\x35\\x0e\\xbe\\x67\\x36\\xe9\\x21\\x50\\xa7\\x19\\xb0\\x34\\xce\\xf8\\x77\\xe0\\x48\\x45\\xd1\\xe1\\xc2\\xc9\\x2d\\x44\\x6e\\x4e\\x9d\\xa7\\x34\\x94\\x57\\x25\\x50\\xe4\\x27\\x5c\\x82\\x6f\\x2c\\x17\\xdd\\x6d\\x28\\xc0\\xc5\\x78\\xcd\\x70\\xaa\\x30\\x0b\\x4a\\x4f\\x42\\x61\\xc4\\x7d\\x66\\xa2\\x5b\\x02\\x05\\xcf\\x81\\x9c\\xa2\\x66\\x35\\x46\\x03\\x9d\\x58\\x35\\x78\\x6d\\xf2\\x73\\x12\\x29\\x52\\xa2\\x86\\xcb\\xd3\\xc9\\xf4\\x99\\xcc\\x74\\xe7\\x27\\xbb\\xa5\\x1b\\x0a\\x2a\\x04\\x27\\x5d\\x2d\\x2e\\x0f\\x03\\x09\\xd8\\x8a\\x68\\xc9\\x65\\x46\\x76\\x5c\\x07\\x19\\x64\\xbd\\xf3\\x1a\\xec\\x40\\x14\\xf7\\xa7\\xa7\\x0d\\x86\\x55\\xa8\\x7c\\x93\\x9d\\xaf\\xe2\\x23\\x91\\xe5\\xf4\\x02\\x1c\\xf4\\xd2\\x41\\x7d\\xc3\\xc2\\x75\\x24\\xfa\\x0e\\xca\\xd2\\x00\\xa7\\x31\\x55\\xdd\\xcb\\x4e\\x84\\x4e\\x68\\x05\\x7b\\x20\\x30\\xee\\x60\\x32\\x85\\x5b\\x3b\\xa2\\xeb\\x0f\\x4c\\xde\\xfe\\x1a\\x9c\\x80\\x6a\\xd4\\xc1\\x8e\\x9b\\x26\\x1e\\x4b\\x14\\x37\\x9d\\x13\\x61\\xeb\\xa3\\x4a\\x7b\\x7c\\x57\\xe0\\x48\\xb3\\xa1\\x57\\x64\\x66\\x5b\\x12\\x22\\x80\\x64\\x7c\\xc3\\x06\\x3a\\x5d\\x2e\\x39\\xd6\\x41\\xa7\\xa7\\xe2\\x04\\xff\\x2e\\xad\\xaa\\xc9\\xa7\\xb5\\xf8\\xb9\\x10\\xe8\\x03\\x74\\x2b\\xb7\\x12\\xb5\\x5f\\xf2\\x33\\xd3\\x79\\x7f\\x6b\\xec\\x50\\x47\\x7f\\xab\\x64\\x93\\xa5\\x28\\xa3\\xe2\\x07\\xdb\\x95\\xba\\x4c\\x21\\xc8\\xa9\\x05\\x27\\xf0\\x65\\xde\\xd7\\x2d\\x0b\\x5b\\xc7\\x85\\xe9\\x18\\xb1\\xcb\\x89\\xc4\\xf0\\x62\\xd5\\xf9\\x5b\\x73\\xaa\\x7e\\x39\\x83\\x42\\x82\\xc7\\x62\\xec\\x01\\x31\\x90\\x57\\xa7\\x91\\xe6\\x96\\xb0\\x24\\xea\\x42\\x2f\\x31\\xfc\\xf0\\x6c\\x9b\\x09\\x8f\\x62\\xb0\\x58\\x29\\xbd\\x63\\x2e\\xcf\\x1f\\x5c\\xb3\\x92\\x40\\x71\\x60\\x9d\\x18\\x53\\x20\\x0a\\xa5\\x6f\\x2c\\x0e\\x6d\\xce\\x34\\x1b\\x65\\x0e\\xf9\\xdc\\xf9\\x89\\x76\\xae\\x50\\x91\\x68\\xed\\xdb\\x0a\\x62\\x12\\x18\\xed\\x4d\\x23\\x16\\x12\\x89\\x97\\x91\\x11\\xaf\\x08\\x86\\xaf\\x71\\x85\\xf9\\xdd\\x65\\x76\\x51\\x8a\\xf2\\x96\\xa6\\x6a\\x1c\\x95\\x9c\\x8f\\x49\\xfd\\x37\\x82\\xff\\x8c\\xbc\\xf4\\xb5\\xa6\\xe4\\x1b\\x3f\\x06\\xd9\\x31\\xbf\\x8a\\x9d\\xca\\x0a\\x81\\xbe\\xb2\\x9f\\x70\\x52\\x85\\xc8\\x17\\x8d\\x02\\x6f\\x9e\\x31\\xe3\\xc6\\x97\\xdb\\x9f\\x1c\\xac\\xed\\xca\\xc2\\xe2\\x53\\xbf\\xdf\\x5c\\x5a\\x16\\x42\\x6c\\x1b\\xe4\\xdc\\x54\\x06\\x93\\x2a\\x8d\\x09\\x98\\xac\\xa2\\x97\\x1d\\xc3\\xb4\\xf1\\xdc\\xc6\\x9f\\xef\\x56\\xfd\\x96\\x1c\\x61\\x74\\xcd\\x49\\x94\\xdd\\xbf\\xcb\\x4f\\xde\\x10\\x49\\x3f\\xb9\\x3b\\x6d\\xb5\\x4b\\x47\\x68\\xb1\\x9d\\xbf\\x46\\x69\\x66\\x6d\\x94\\xea\\x02\\x3d\\xa8\\x10\\xe2\\xe9\\x31\\x3d\\xab\\xb8\\x3b\\xd7\\x14\\xcb\\x40\\xdf\\xc7\\x89\\x33\\x49\\x0d\\x67\\x28\\x8f\\x5e\\x10\\xd1\\xa2\\x5c\\x49\\xad\\xb7\\x39\\x0c\\x57\\xb3\\xa4\\x93\\xe3\\x86\\x03\\x1d\\xdf\\x7b\\xf9\\x3f\\xdf\\x18\\xe0\\x8d\\xd3\\x5a\\x85\\xed\\xf2\\x0c\\xd8\\x30\\x92\\xc4\\xfa\\x3a\\xa7\\x45\\x29\\x59\\xab\\xd1\\xbf\\x91\\x7c\\x75\\xbe\\x28\\xdc\\x3c\\x4d\\xae\\x91\\x50\\x90\\xc5\\xfa\\x5e\\xae\\x76\\xc2\\xae\\xd1\\xa9\\xc2\\x4f\\xbb\\x32\\xc2\\x43\\x90\\xf7\\xa9\\x28\\xa2\\xd3\\x14\\x0b\\xa3\\x07\\x03\\x5c\\x5f\\xeb\\x90\\xba\\xd3\\x54\\x62\\x69\\xc8\\xf0\\x0a\\xc5\\x09\\x98\\xb3\\x21\\x58\\xad\\xc0\\x1e\\xc1\\x4b\\x0e\\xa5\\x35\\x02\\x62\\x79\\xd0\\x1a\\x3d\\x32\\xa5\\x35\\xd1\\x66\\x83\\x70\\x51\\x6e\\x45\\x31\\x6d\\xb1\\x22\\x28\\x23\\x93\\x13\\x8b\\xee\\xc2\\xa5\\x7b\\x0e\\xbb\\x7c\\x22\\xfd\\x7d\\x75\\xe1\\x8e\\x48\\xe7\\x87\\x75\\x94\\x22\\xd2\\x50\\xd6\\xac\\x09\\xf0\\x23\\xaf\\x0c\\x6b\\x94\\xfc\\x5d\\x7e\\x36\\x40\\x70\\xc5\\x6b\\x26\\x1c\\x54\\x8e\\xe0\\x4c\\x52\\x05\\x3c\\x4a\\xd9\\x13\\x18\\xbe\\x5c\\x22\\x5b\\x33\\x0d\\xf8\\x00\\x8d\\x7b\\x83\\xa6\\x0c\\xc6\\x6a\\x03\\x28\\x38\\xca\\xc2\\xff\\xf2\\x5f\\x38\\xda\\xae\\xa0\\x7d\\xe0\\x56\\xe5\\x25\\xf1\\x8b\\xcb\\x6a\\x98\\xf0\\x94\\x5c\\x7e\\x6a\\x78\\x8a\\xb0\\x73\\xac\\xc4\\xc7\\x0c\\xea\\x06\\x77\\x2e\\xfd\\xae\\xad\\xb7\\x35\\x2e\\x28\\x4a\\x58\\xcf\\xb5\\xc4\\xe3\\x5a\\xc9\\x2f\\x07\\x9c\\xc8\\xf7\\x9c\\x45\\xea\\x6c\\xcc\\xbb\\xd7\\xc0\\x5f\\xa3\\x58\\x60\\xbc\\xc6\\x46\\xd2\\x70\\xb2\\xfd\\x97\\x85\\x76\\x2f\\x02\\x3a\\x21\\xdb\\xb4\\x87\\x69\\x0b\\xd9\\x40\\x80\\x8d\\xc0\\x22\\xdc\\x46\\x6d\\x58\\xd9\\x15\\xda\\x0d\\xca\\x83\\xd0\\xd7\\xfb\\x04\\x23\\x70\\xda\\xbc\\xd5\\x97\\x62\\x12\\x94\\x57\\x3c\\xbd\\xba\\x77\\xc6\\x92\\xed\\x3b\\xf8\\x32\\x42\\xc5\\xf0\\xfc\\xd6\\x8e\\x16\\x5e\\x84\\xc8\\x6f\\xd5\\x66\\x4d\\xa4\\x6d\\x82\\xce\\xaa\\xa9\\x69\\xc5\\xe4\\x2c\\xbb\\x2c\\xc7\\xb2\\xdc\\x0f\\xdf\\xb0\\x5c\\x2e\\xea\\x4b\\x7c\\x47\\x11\\xc4\\x64\\x05\\x85\\x86\\x29\\x1b\\x70\\xb1\\x4b\\x43\\x09\\x05\\x6f\\x27\\x11\\x30\\x80\\xfd\\x2e\\xae\\x1b\\xf1\\x07\\xd3\\x6b\\xa2\\x01\\x7f\\xc8\\x3a\\xd5\\x16\\x6a\\x59\\x10\\x34\\xa7\\x41\\xfe\\x0c\\x34\\xbd\\x25\\x64\\x3b\\xbc\\x96\\xad\\xf4\\x2f\\xbd\\xa9\\xb2\\x48\\xb2\\x43\\xf4\\x7d\\x18\\x8a\\xe8\\xbc\\x74\\xc3\\x89\\xb2\\x09\\x38\\x69\\x43\\x89\\x22\\x4c\\x15\\x6a\\x87\\x74\\xab\\x59\\x90\\x58\\x18\\x38\\xfd\\x9a\\xb2\\xee\\x83\\x36\\xaa\\x39\\xac\\xf8\\x21\\xdf\\xeb\\x3b\\xa9\\xe6\\x60\\xab\\xd6\\xc1\\xd6\\xaf\\xad\\xbf\\xc6\\x89\\xef\\x1f\\x3f\\xc3\\xd7\\x97\\xda\\x1e\\x0a\\x36\\x4d\\xf9\\x36\\x24\\xc6\\x64\\x47\\xf3\\x51\\xd5\\x2e\\xe7\\x5a\\x3e\\x19\\xce\\x57\\x22\\xeb\\x1b\\xbb\\x35\\x9e\\xc4\\x7f\\x64\\x2c\\x35\\xdc\\x2d\\xf2\\x9b\\x9f\\x8e\\xb4\\x1a\\x58\\x65\\x90\\xc7\\xe0\\x19\\xd3\\xdd\\x13\\xaf\\xb2\\x03\\x0c\\x4d\\xcc\\x8c\\x70\\x39\\xb7\\xe2\\x22\\x30\\x81\\x08\\x3c\\x42\\x00\\xe2\\xaf\\xec\\x95\\x3b\\xe8\\xd3\\xb9\\x02\\x2c\\x35\\x5c\\x0e\\x6f\\xdf\\xed\\xa8\\x5d\\xa9\\x5d\\x06\\xb1\\xc3\\x4f\\x5b\\xca\\x5c\\x8c\\x2b\\x13\\xb4\\x91\\x06\\x92\\x19\\x8b\\x34\\xcd\\x88\\x77\\x17\\xed\\xfe\\xa1\\xf8\\x8f\\x04\\xb3\\x84\\x17\\x5b\\x5a\\x62\\xa1\\x39\\x4f\\x11\\x7d\\x3a\\xc9\\xb5\\x69\\xad\\x02\\x7f\\xeb\\x15\\x91\\x9a\\x3c\\xb6\\x57\\xa7\\xd0\\x54\\x51\\x1e\\x66\\x4c\\xe8\\x48\\x05\\x02\\xf9\\x34\\x29\\xab\\x56\\x87\\x40\\x39\\x56\\xd6\\xb6\\x1d\\xfa\\xc4\\xa8\\x83\\xad\\xe9\\x73\\xca\\x6b\\x1c\\x9f\\x9a\\x58\\x41\\xee\\x27\\x6a\\xb7\\xf8\\xc1\\xf5\\x43\\x4e\\x71\\xae\\x31\\xad\\x72\\x5f\\x01\\x5a\\xd2\\x9f\\x32\\x82\\x09\\x76\\x9f\\x09\\xc9\\x00\\x4c\\x92\\xd0\\xd2\\x5e\\xdf\\xea\\x93\\x79\\xaf\\xf7\\x78\\x3d\\x9f\\x80\\x99\\xb6\\xa0\\x58\\x3f\\x17\\xab\\xc5\\x87\\x16\\xcb\\x98\\xc7\\x1e\\x07\\x54\\xee\\xed\\x49\\x86\\x4d\\xe3\\x44\\xd4\\xf1\\xb1\\x7f\\x66\\x8b\\x89\\x02\\x61\\x03\\x20\\x0c\\xa2\\x87\\x77\\x91\\xb9\\x35\\xcf\\xe8\\x34\\x79\\xee\\x9d\\x73\\x5f\\x38\\x26\\x43\\xfb\\xdb\\x88\\x73\\x52\\xf6\\x9a\\xb1\\x1f\\xa1\\x55\\xce\\xe2\\x82\\x18\\x83\\xc9\\xc3\\x27\\xa0\\x9a\\x88\\x32\\xf7\\xff\\x98\\x94\\x50\\x2d\\xc1\\xac\\xa2\\x95\\x91\\x86\\x20\\x82\\x72\\xd2\\x8c\\x19\\xa2\\x7d\\x73\\x1d\\xd3\\x86\\xd7\\x53\\xb3\\x38\\x3a\\x7c\\x2a\\xdc\\x61\\x5c\\xe5\\x86\\x0e\\x3c\\x30\\x77\\x44\\xcd\\xc6\\x08\\x6f\\x57\\xe3\\x95\\x7c\\xd9\\x64\\xbd\\x1f\\x02\\x5c\\x70\\x9b\\x82\\x41\\xef\\xfc\\x98\\x30\\xc3\\xab\\xf1\\x8e\\x13\\xb1\\xe5\\x34\\x38\\xa3\\x81\\x07\\x03\\x53\\xf7\\x27\\x21\\x31\\x7f\\x93\\x29\\x26\\xe2\\xb1\\xee\\x37\\x90\\xe5\\x8c\\x17\\xdd\\xfe\\x81\\xf4\\x12\\xb1\\xa9\\x1d\\xf6\\x72\\x2c\\x32\\x4b\\xcb\\xd4\\xc7\\x8f\\x0d\\xa3\\xba\\x1b\\x47\\xb5\\xd8\\x4c\\xa2\\x79\\x56\\x72\\x09\\x06\\xd7\\x1a\\xb1\\x9c\\xce\\x7d\\x9e\\x63\\x98\\x66\\x65\\xc9\\xb5\\xb0\\x25\\x7f\\xac\\x88\\x94\\xaa\\xa4\\x14\\xa9\\xb8\\x2f\\x8d\\x58\\x71\\x21\\x0d\\x97\\x0c\\xec\\x06\\x07\\x7e\\x3b\\x37\\xc0\\x1b\\xe5\\xe3\\x0f\\x32\\x9c\\x2e\\x75\\x5b\\x9d\\x3e\\x31\\x0d\\x58\\xf5\\x81\\x0b\\x0a\\x8f\\x43\\xee\\x56\\xeb\\xa3\\x21\\x26\\xb5\\x29\\x1d\\xaa\\xa3\\x45\\xfa\\x92\\x7e\\xad\\x38\\xd4\\x95\\xa9\\xf0\\x86\\xb1\\xba\\xf4\\x9d\\x1f\\x7d\\xf8\\xd3\\xe4\\xdb\\xc2\\xef\\x2b\\x82\\x31\\x47\\x85\\x39\\x98\\x71\\x6e\\xd3\\x4b\\xde\\xda\\xc2\\xed\\x2c\\x66\\x2d\\x20\\x7a\\x18\\x1f\\x1a\\x3e\\x52\\x26\\xe0\\xee\\x7b\\xea\\x30\\x5f\\x5d\\x46\\x43\\x3e\\x2a\\xd4\\x94\\x9e\\x47\\x09\\x2c\\xc7\\xb6\\x48\\x5d\\x8e\\xd4\\x64\\x20\\xf0\\x1c\\x1a\\xee\\xbe\\x02\\x46\\xc9\\x19\\x2c\\xc2\\xe1\\x3d\\x2e\\x81\\x4b\\x90\\x32\\x15\\x83\\x22\\x95\\x1e\\x1a\\x8c\\x11\\xe0\\xc8\\x05\\x5a\\xa9\\xce\\x6a\\x06\\x65\\x6c\\xa4\\xbb\\xf8\\xa3\\xa3\\x07\\x3b\\x06\\x2e\\x7e\\xcd\\xca\\x9f\\x15\\x53\\x7c\\x1a\\xbe\\x9b\\x85\\x0e\\xf1\\xf0\\x55\\x8f\\x19\\x77\\x1e\\x07\\xa0\\x84\\x23\\xd9\\xed\\xe6\\xe9\\xf5\\xef\\x3c\\x4a\\x21\\x0f\\x84\\x8b\\xdc\\x30\\xa1\\x21\\xf1\\xfc\\x5b\\xd4\\x0a\\x81\\x72\\x85\\xca\\x91\\xc3\\xfa\\x65\\x1b\\x6b\\xe8\\x34\\xc8\\xa6\\xba\\x34\\xd5\\x73\\xe7\\xc4\\xf7\\xd0\\xad\\x86\\x69\\x18\\x08\\x1e\\x8a\\xfa\\x39\\xed\\x2a\\xcc\\xba\\x2f\\x09\\xac\\x09\\xc3\\x8b\\xb9\\xd2\\x38\\xd8\\x5d\\x56\\x4e\\xc4\\xf7\\x78\\x53\\x7f\\xc1\\x43\\x3a\\x7e\\xc0\\x11\\x28\\x6a\\x2c\\x29\\xca\\x5a\\xf0\\xad\\x76\\x57\\xcb\\xf8\\x40\\xdb\\x97\\x36\\xef\\x63\\x63\\x3a\\x2d\\x88\\x42\\xc8\\x71\\xc9\\x45\\xe2\\x28\\xb3\\x1f\\x97\\x1a\\xbd\\x67\\xe0\\x65\\x4a\\xf3\\xd0\\x5f\\x9c\\x5f\\x23\\xc3\\xab\\xdd\\x5b\\xec\\x1b\\x87\\x52\\x94\\xd4\\x33\\x12\\x37\\x26\\xc2\\x0f\\xf3\\x19\\xfb\\x48\\x5a\\xd8\\x98\\xb8\\x47\\x72\\x84\\xf1\\xbb\\x46\\xdf\\x81\\xfc\\xaa\\x00\\xbb\\x58\\x5e\\x07\\x79\\x52\\x15\\xbe\\xb2\\xe2\\xf3\\x12\\xee\\xac\\x34\\x85\\xe3\\xaf\\x1a\\xca\\x24\\x02\\x0e\\x57\\xff\\x34\\x88\\x92\\x68\\x39\\xfe\\xd1\\x91\\xd3\\x91\\xe0\\x02\\x59\\x30\\x46\\xbd\\x59\\xbc\\x83\\xbc\\x4c\\xf5\\xb6\\xb4\\x33\\xfd\\x20\\x3e\\xc9\\xf2\\xc7\\x56\\xae\\x2c\\xda\\x31\\x51\\x11\\x51\\x3d\\x1d\\xb2\\x27\\x5f\\xb2\\x47\\xe0\\x27\\xbf\\xce\\xa8\\x14\\xab\\xff\\x1d\\xa4\\x43\\xf5\\xcd\\x72\\xfd\\x5a\\xc0\\x16\\x37\\x7a\\xa9\\x85\\xfd\\x5f\\x6c\\xa8\\xbd\\x0c\\x53\\xce\\x95\\xba\\x40\\x76\\xf8\\xbf\\xdb\\x6c\\x9b\\x1e\\x53\\x10\\x36\\x0d\\xfa\\xd9\\xc3\\x0c\\x0c\\xa9\\x02\\x8d\\xeb\\xb3\\xea\\xdc\\x9d\\x34\\x5a\\x36\\x45\\xba\\x4a\\x32\\x4d\\x1f\\x48\\xaa\\x44\\x61\\x60\\x92\\x7d\\xa1\\x98\\x42\\x4a\\x52\\xc3\\x96\\x00\\xc1\\xdc\\x21\\xd2\\xc4\\x2a\\xff\\xea\\xc2\\xef\\x31\\x09\\x3e\\xd5\\x0d\\x53\\x3e\\x46\\x7b\\xde\\x53\\x84\\x54\\x36\\xe8\\xd0\\xf7\\xd0\\x98\\xed\\x4f\\x34\\x15\\x16\\x0b\\xee\\xf5\\x4c\\x1c\\xd1\\x54\\x68\\xa8\\xf6\\x0a\\x6d\\x96\\xc6\\xd8\\x7b\\x85\\x2a\\xba\\xc2\\x4f\\x16\\x85\\x40\\x42\\xe0\\xb9\\x9a\\x9d\\x0a\\xbd\\x62\\x5f\\xe8\\xee\\xc9\\xfe\\xc1\\x6c\\x17\\xea\\xad\\x70\\xfa\\x79\\xca\\xa6\\xf7\\xb5\\x00\\xa9\\xf6\\x7e\\xfc\\x9a\\x2e\\xbd\\x3c\\x8e\\x5e\\x11\\x23\\x69\\x7a\\x53\\xe8\\xc3\\x81\\x35\\x9b\\x1e\\x97\\xf3\\x18\\xa0\\x46\\x89\\xb0\\x7a\\xbc\\x76\\xec\\xb6\\x6e\\x7a\\x4d\\x1c\\xa4\\x28\\xcb\\xce\\x9e\\x8e\\xc5\\x9c\\x35\\x72\\xbc\\xba\\xfe\\xcb\\x67\\x6a\\xe0\\xaa\\x6e\\xde\\x91\\xf4\\x97\\x57\\x43\\xcd\\x94\\xde\\xf0\\x60\\xd6\\xc0\\x1a\\x39\\x91\\x27\\xfd\\xe9\\xdb\\x14\\x1b\\x7e\\x71\\xa4\\x56\\x26\\x3c\\x3d\\x60\\xb3\\xa1\\x2e\\xa6\\x34\\x8c\\x63\\x15\\x9f\\x13\\x97\\x68\\x0b\\x12\\xe1\\xc6\\x38\\x73\\xef\\x22\\xda\\x31\\x21\\x7f\\xba\\x72\\xfe\\x47\\x41\\xa6\\xf8\\x8b\\x16\\xe2\\x13\\x28\\x56\\x86\\xce\\x32\\xdc\\xa9\\x52\\x6a\\x07\\x65\\x84\\x07\\xa9\\x07\\xc6\\x24\\xc3\\xc5\\x57\\x70\\xe0\\xd9\\xff\\x8c\\xae\\x72\\x17\\x15\\x97\\x71\\x23\\x0c\\xf8\\xe2\\x64\\x92\\x38\\x7d\\xfc\\xfd\\xdd\\xc1\\x58\\xa3\\x34\\xdb\\xbf\\x13\\x73\\x2b\\x3f\\xc2\\x16\\xef\\x88\\x59\\x62\\x52\\x98\\x84\\x70\\x33\\x7b\\x4d\\x69\\xe2\\x1d\\xca\\xac\\x0f\\x7f\\x49\\x68\\xb9\\x7f\\x03\\x52\\x9c\\xc1\\x7a\\xdf\\x98\\xb6\\x4b\\xe0\\x08\\xfe\\xa0\\x98\\xce\\x84\\xd8\\x29\\x35\\x75\\x79\\x9a\\xfb\\xb5\\x5b\\xc0\\x82\\x4f\\xb2\\xab\\xa6\\x41\\x08\\x5f\\xf6\\x30\\x16\\x97\\xd9\\x65\\xa3\\xee\\xbf\\x17\\x91\\xed\\x1d\\xe9\\x66\\xce\\x61\\xba\\x7d\\x8d\\xfa\\xbb\\x64\\xa3\\xe6\\xac\\x6c\\x14\\xb7\\x1e\\x87\\xd1\\x61\\x9a\\x87\\xc3\\x32\\x9f\\x4a\\x56\\x22\\x5c\\x7d\\xcf\\xc1\\x74\\xb1\\x8c\\x38\\xe0\\x1e\\x0b\\x1c\\x48\\xe9\\x4f\\xc4\\x14\\x24\\x57\\x06\\x6e\\x7b\\x30\\xee\\x7d\\x07\\xc0\\x19\\x07\\xa9\\xf0\\xe0\\x8a\\x7b\\x78\\xbd\\x05\\x1c\\x61\\xf4\\xa2\\x2c\\xe9\\xe5\\x43\\x9b\\xd6\\x30\\xf0\\xb2\\x73\\x89\\x80\\x62\\x89\\x31\\x3a\\x3e\\xf5\\x46\\x2a\\x56\\x2b\\xc2\\x91\\x71\\x42\\xbc\\xfe\\xda\\x58\\x34\\xef\\x39\\x36\\xba\\xb1\\xa7\\x66\\x5a\\x6b\\xd6\\x9e\\xb5\\x68\\x39\\x4a\\x96\\x1d\\x59\\x91\\x68\\xed\\xc3\\x9a\\x61\\x52\\xb5\\x11\\xc6\\x7a\\x81\\xd7\\x2b\\x0e\\x28\\xf9\\xfa\\x4b\\xfb\\x53\\x5e\\x8a\\xbc\\x8f\\x29\\xa9\\x26\\x29\\x62\\x7c\\x1d\\x55\\x83\\x4d\\x39\\xfa\\x68\\xae\\xca\\xed\\x35\\xeb\\x49\\x5e\\x32\\x07\\x87\\x6b\\xe9\\xb8\\xdb\\xc2\\x5a\\x6c\\x07\\x52\\xf3\\xf0\\x30\\x2c\\x92\\x02\\x56\\x2c\\xd2\\x68\\x4b\\xe1\\x11\\xce\\x5e\\x03\\xa1\\x3e\\x35\\x3f\\xff\\xb7\\x70\\x9a\\x58\\x4a\\xa4\\x79\\x72\\x38\\xcf\\xcf\\x5f\\x4d\\x71\\x2a\\xf7\\xb3\\xdd\\x99\\x3e\\x95\\x24\\x38\\xb1\\x78\\xe7\\x19\\x5f\\xec\\x38\\xd6\\xa3\\xb5\\xdb\\x65\\xc3\\xbc\\x3d\\x63\\xe3\\x23\\xaf\\xb4\\xad\\xf9\\x89\\xb1\\xa2\\xa6\\x0c\\x60\\x4a\\xd8\\x76\\x53\\x8e\\xf1\\xef\\x7a\\x45\\x3c\\x62\\xd0\\x9e\\x52\\x90\\xc8\\x68\\x9d\\x10\\x79\\xb7\\xc7\\x2b\\xb5\\xa5\\x8c\\x30\\xe4\\x65\\xb5\\x84\\xaf\\x66\\xd2\\xac\\x2d\\x08\\x43\\x6f\\xa9\\x7d\\xbf\\x25\\xad\\x3f\\x1e\\xfc\\x2b\\x89\\xb7\\xa8\\x92\\x7e\\xd1\\xaa\\xc7\\x97\\xbf\\x06\\xa7\\x74\\xa8\\x97\\x74\\xf2\\x0f\\x00\\xd9\\x87\\xa0\\xc2\\x4a\\x2f\\x51\\xc6\\xb3\\x4b\\xb0\\x4e\\x67\\x41\\xf6\\xa4\\x09\\x9a\\x49\\x5c\\xc0\\x14\\xfd\\x35\\x4d\\xdf\\x20\\xd0\\x43\\x9c\\xa5\\x48\\xae\\x46\\xba\\x0b\\x0e\\x2d\\xc6\\x4c\\x5e\\xb5\\x07\\x6b\\xc4\\x5e\\x69\\xdc\\x6b\\x06\\x53\\x46\\xaf\\xb1\\x24\\xc3\\x4e\\x9f\\x19\\xf8\\x30\\x7e\\xef\\x63\\x9d\\x1a\\x35\\x2b\\xa6\\x75\\x2c\\x5e\\xf1\\x93\\x48\\x3a\\xee\\x2b\\x1f\\x33\\xfb\\xcb\\xf2\\xf3\\xd4\\x31\\x3a\\x34\\xdc\\xb7\\x10\\x0d\\xe5\\xcf\\x12\\x09\\x2c\\x3c\\xc4\\x60\\xa7\\x0e\\x4e\\xc6\\x83\\xca\\x28\\xf8\\x93\\x23\\xab\\xbf\\x4e\\x43\\xac\\x6b\\x69\\x7b\\x3c\\x1d\\xae\\xb4\\xa5\\xef\\xcb\\x9a\\xd1\\x88\\x38\\x92\\x87\\xb1\\x36\\x8c\\x55\\x9e\\x55\\x12\\x0b\\x97\\xa4\\xbe\\x8d\\x8b\\x30\\x84\\xa4\\xef\\x67\\xbf\\xa9\\xd9\\xad\\x50\\x83\\x05\\x76\\x74\\x2e\\xfb\\xc4\\x00\\x96\\x37\\xa3\\x80\\x69\\x76\\xa9\\x36\\x86\\x92\\x03\\x62\\x02\\xdc\\xbd\\x65\\x13\\xcb\\x92\\x02\\xe9\\x17\\x04\\xd0\\x3b\\x92\\xd5\\x63\\xbb\\x96\\x19\\xb1\\xb7\\x72\\x2f\\x0c\\xa3\\x34\\x8f\\xc6\\xea\\x06\\x8f\\xdc\\x42\\x8a\\x53\\x1c\\xc0\\x33\\xcf\\x1f\\x68\\xd6\\x66\\x21\\x42\\x28\\x5c\\x97\\x46\\x6b\\xdb\\xfa\\x9d\\x8d\\x7a\\x9a\\xc0\\x06\\x25\\xc9\\xdd\\x42\\xad\\xc3\\x48\\x86\\x0f\\xc2\\x13\\xa8\\xfb\\x77\\xbe\\x1b\\x04\\x95\\xba\\x81\\xfe\\xf3\\x00\\x6d\\xec\\x42\\xd4\\x2e\\x14\\x52\\xc3\\x44\\xdb\\xc3\\x04\\xa2\\x41\\x6d\\x05\\x43\\xfa\\xa9\\x06\\xd2\\xcb\\xa7\\x1a\\x1d\\x03\\x3e\\x7c\\x63\\xb2\\xe5\\x7f\\x97\\x15\\x96\\xa8\\xf5\\xe9\\x4b\\xcd\\x45\\x70\\xcf\\xec\\x8a\\x74\\x54\\x6a\\x6d\\x3a\\x26\\x1d\\x85\\x9e\\x3d\\x3f\\x13\\x1c\\xe0\\x78\\xab\\xa1\\x4e\\xa8\\xb4\\x64\\x1b\\x2a\\xd5\\xe6\\xd7\\xe1\\x12\\x2c\\xd1\\x91\\xc2\\x89\\x3d\\x3f\\xb3\\xae\\x6e\\x78\\x97\\x75\\x39\\x0b\\x76\\x43\\xdd\\xd5\\x21\\xb9\\x15\\x01\\xa6\\xd1\\xb6\\xea\\x58\\x8e\\xf1\\xaf\\xab\\xf4\\x70\\xc6\\xfc\\xa9\\x29\\x9f\\x86\\xe6\\xf2\\x03\\x78\\x77\\x3f\\x74\\x0a\\x3e\\xe4\\x77\\x3f\\x25\\x8f\\x4d\\x72\\x85\\x37\\xb7\\xf0\\x3a\\x9b\\x2e\\xba\\x3a\\x62\\xc5\\x4b\\x8c\\x23\\xc2\\x30\\x91\\x70\\xed\\xc0\\x7f\\x15\\x7d\\x86\\x65\\x66\\x77\\xa2\\x17\\xaa\\x42\\xf8\\xf7\\xbf\\xeb\\x0f\\xb7\\x60\\x97\\xb0\\x7e\\x31\\xb1\\x8c\\x4b\\xd0\\x93\\xd2\\x89\\x5e\\x11\\xe7\\x4b\\x92\\x5e\\xf2\\xa3\\xff\\xfa\\x2d\\xa0\\xb6\\x25\\x2b\\x79\\x97\\xbd\\xad\\xd3\\x87\\x0f\\x24\\xa8\\x60\\xaa\\x3c\\x41\\xa2\\x49\\x17\\x5b\\x99\\x48\\xfc\\x94\\x62\\x65\\x7d\\x4d\\x84\\xc4\\x30\\x96\\x59\\x65\\xc3\\x50\\x3e\\x3a\\x37\\xaa\\x3f\\xaf\\x48\\x29\\x2f\\x8d\\x7d\\xa3\\xfb\\x3d\\x9b\\xf8\\x9b\\xc9\\x4b\\xaa\\x98\\x87\\x6f\\x1e\\x87\\x55\\xcb\\x41\\xbe\\xd1\\x61\\x1d\\x41\\xcf\\xd4\\x6c\\x9c\\x10\\x21\\xdb\\x1f\\xd2\\x49\\x0b\\xe0\\xb6\\x9a\\xc6\\x69\\xfc\\xc4\\x0f\\x91\\xfb\\xc8\\x1f\\x73\\x17\\x90\\xc2\\x1f\\x06\\x92\\x1f\\x85\\xac\\xd6\\x3d\\x17\\x2b\\x5d\\x02\\x2c\\xa4\\x9e\\x0a\\x0b\\x43\\x78\\x05\\x0a\\x73\\x59\\x93\\x65\\xb9\\x13\\xb4\\x87\\xaf\\x28\\xda\\x6c\\x4c\\xf2\\x23\\x08\\x69\\xd2\\x4d\\x49\\x67\\x4d\\x24\\xa6\\x66\\x28\\xec\\x05\\x3c\\x6c\\x91\\xe6\\x52\\xe9\\xb4\\x56\\xa4\\xc0\\xbb\\x5f\\xb4\\xe5\\x9c\\xf2\\x91\\x91\\x36\\x90\\xd7\\x87\\x4c\\x5a\\xc4\\x99\\x04\\x7b\\xff\\xe4\\x08\\x04\\x49\\x7d\\xf4\\xb3\\x37\\xda\\xd8\\x23\\xb4\\xcb\\x97\\x52\\x22\\x81\\x5d\\xd5\\xbf\\x8b\\x5e\\x5a\\x34\\x09\\xb2\\x97\\x4f\\x63\\xcf\\x8c\\xac\\xf9\\xb8\\x23\\xa5\\x1b\\xd7\\xc1\\x12\\xaa\\xe9\\x42\\x1a\\xfb\\x5f\\x0f\\x8e\\x55\\xa1\\x4d\\x55\\xfc\\x70\\xd2\\xaa\\x1b\\x60\\x2e\\xb3\\x30\\x30\\x1c\\x52\\x9d\\x34\\x32\\x57\\x41\\x39\\x84\\xcb\\x58\\xe0\\x1c\\x23\\x52\\x52\\x37\\x50\\xbf\\x43\\x2c\\x19\\x3c\\x9d\\x10\\xdb\\x12\\x4f\\xbb\\x8c\\x88\\x58\\x10\\xa1\\x10\\x48\\x56\\x6e\\xf2\\xde\\xac\\xc8\\xd1\\x37\\x1b\\x13\\x96\\xe9\\xf7\\x01\\x8e\\x1c\\x92\\x03\\x8d\\x8d\\x14\\x92\\xc6\\x48\\xc9\\xc1\\xfe\\x9e\\xc0\\xeb\\x22\\x04\\x6a\\x3f\\xcb\\x49\\x9a\\x79\\xc9\\x0c\\x80\\x8a\\x52\\x18\\x48\\xfa\\x07\\xc3\\x71\\x7e\\xfa\\xd6\\x0b\\xd0\\x2c\\xb8\\x19\\x6c\\x23\\x8f\\x7e\\x72\\x65\\xb2\\xc5\\xe1\\xd5\\x2c\\x7a\\xd6\\xdd\\x8d\\xb2\\x3e\\x80\\xe0\\x42\\x82\\xfe\\x6c\\xac\\x29\\x4b\\xc1\\x4e\\xcc\\x42\\x94\\x13\\x9f\\x0f\\xec\\x7b\\xf0\\x95\\x89\\x99\\xab\\xdb\\x2b\\x8e\\xbd\\xdf\\x86\\xa9\\xba\\xf4\\x66\\x06\\x8a\\xcd\\x88\\xd2\\x84\\xc6\\x27\\x00\\x26\\xf4\\x41\\xc6\\x0d\\xf2\\xb3\\x90\\xd6\\x15\\x9a\\x87\\x9d\\x8f\\x16\\xe5\\xb7\\x45\\x34\\x1b\\xae\\x64\\x01\\x54\\x8c\\x8f\\xc3\\xf1\\x4a\\xf6\\x8c\\xe9\\x49\\xbf\\xa3\\xcb\\x19\\x28\\xb9\\x2a\\xbb\\x77\\xed\\xaf\\x30\\x28\\xb9\\x54\\x6b\\xb2\\xea\\x58\\x15\\xf3\\x05\\x2d\\xce\\xf4\\x1c\\x37\\xa9\\xae\\x96\\x46\\x75\\xe5\\x70\\xcf\\x5f\\x71\\x64\\xc1\\x81\\x2d\\xb6\\x57\\x82\\x40\\x8c\\x8a\\xcb\\xd9\\x61\\xa1\\x71\\x45\\x95\\xd6\\xad\\x6e\\x2b\\xa5\\x60\\xe5\\x1c\\x32\\x5a\\x99\\xd8\\x06\\xf2\\x2c\\x7e\\x1b\\x4e\\x3c\\x7a\\x57\\xe1\\x6f\\x60\\x34\\x5d\\x1c\\xa5\\x5d\\xd4\\xb8\\x32\\x3e\\x55\\xb9\\x0a\\xef\\xa4\\xcd\\x76\\x29\\x6a\\xdc\\xce\\x40\\x8d\\x1f\\x26\\xf0\\xfe\\x9e\\x04\\x68\\x5d\\x3e\\xac\\x80\\x45\\x24\\x70\\x3e\\x1a\\xb2\\xcf\\x3e\\x09\\x4e\\xc5\\x76\\xa0\\x83\\xa2\\xda\\xd6\\x3f\\x50\\x39\\xaa\\x7a\\x48\\x35\\x74\\x39\\xca\\x59\\x6d\\x88\\x93\\x66\\x86\\xe8\\x8a\\xc2\\x1b\\xd6\\x15\\x3b\\xc1\\xae\\x66\\x99\\xc3\\x8a\\x06\\x5f\\x39\\xfd\\x19\\x57\\x6b\\xd6\\xc6\\x82\\x9e\\x3d\\xcd\\x0e\\xe7\\xf6\\x79\\x29\\x82\\x94\\xd5\\x59\\x3d\\x6e\\x6d\\xab\\x42\\x43\\xdb\\x2a\\x9d\\xb5\\xad\\xd4\\x1f\\x6e\\x4f\\xb4\\x84\\x84\\x10\\xb5\\xb4\\xdf\\x2c\\x16\\x27\\x9a\\xb0\\xfd\\x59\\xdc\\x26\\x85\\x8b\\x00\\x3e\\x75\\xde\\x41\\x95\\xf1\\x04\\xc1\\x7b\\x4f\\x44\\x2f\\x97\\x44\\x42\\x26\\x0a\\x8e\\xde\\x23\\xfb\\x2f\\x47\\xaa\\x67\\x62\\x6c\\x32\\x21\\x74\\x0a\\xe5\\x07\\x77\\xc3\\x79\\x59\\xd7\\xd4\\x7b\\xf7\\xaa\\x8d\\x6c\\xba\\x9a\\xc8\\x64\\xed\\x08\\x45\\x20\\x41\\x99\\x8b\\x6f\\xd5\\x0b\\x2d\\x1b\\x2d\\x86\\x1c\\xf5\\x73\\xdc\\xe1\\x70\\xcd\\x33\\x56\\x7e\\x4b\\x70\\xfd\\xdb\\x37\\x86\\x70\\xc7\\x0a\\x95\\xe9\\x99\\x1a\\x13\\x3c\\xef\\x51\\xb2\\xdb\\xa1\\x5b\\x09\\x94\\x27\\x69\\xd6\\x88\\x04\\xb9\\x1f\\xce\\xd0\\x52\\x0d\\x32\\x92\\x29\\x3a\\xd6\\x3f\\xca\\x6e\\x12\\x20\\x5f\\xa7\\xd8\\x1a\\x92\\x8a\\xc3\\x56\\x48\\x23\\x9e\\x8d\\x0b\\xdf\\xbe\\x0b\\xd5\\x32\\x31\\x7a\\x46\\xd0\\xd6\\x7d\\x63\\x81\\x99\\x12\\x69\\x4c\\x89\\xf0\\xce\\x3f\\x90\\x54\\x36\\x51\\x33\\x83\\x1c\\x7c\\x0e\\x3a\\x43\\x26\\x50\\x9c\\x77\\xdb\\x3d\\x57\\x49\\x59\\xd3\\xd9\\x2b\\xa2\\xe8\\xab\\xf1\\x28\\x58\\xe1\\x42\\x48\\x8e\\x86\\xce\\xba\\x10\\xea\\x75\\xf5\\xa3\\xda\\x52\\x45\\x87\\x3b\\x96\\x8f\\x9b\\xb5\\x18\\x75\\x4c\\x1a\\x12\\xa2\\x47\\x20\\xa7\\xc5\\x1e\\x25\\x9c\\x2d\\x7f\\x38\\x0e\\xdf\\xc7\\xdc\\xa9\\x22\\x85\\x54\\x54\\x12\\xa1\\x06\\xdf\\xd2\\x48\\x24\\x9e\\xec\\x48\\x87\\xd0\\x74\\x8d\\x59\\x5a\\xc2\\xe4\\x3b\\xe4\\x37\\x57\\xf6\\x99\\x01\\xe2\\x2b\\x9e\\xed\\xac\\x93\\xce\\x48\\xaa\\x41\\x41\\xe3\\x7d\\x1c\\x55\\x1a\\x47\\x17\\x7e\\x43\\x64\\x9f\\xa5\\x93\\xc6\\xc9\\x2e\\x72\\xe6\\x4c\\xf2\\xd3\\x27\\xc2\\x31\\x84\\x4e\\xf6\\x81\\x74\\x08\\x9d\\xff\\x63\\x7f\\xfc\\xa2\\x86\\xcc\\xd1\\xb5\\xab\\x8e\\x47\\x43\\x34\\x81\\x46\\xba\\xe1\\x49\\x09\\xc9\\x28\\x71\\xa8\\xc5\\x54\\x5f\\x72\\x78\\x74\\x00\\x53\\x68\\x36\\x7a\\x36\\x18\\x10\\x23\\xa4\\xc0\\x24\\x69\\x23\\x0f\\x2f\\xeb\\xb1\\x5c\\xba\\x29\\x50\\x76\\xa5\\x56\\x12\\x3f\\xd8\\x0e\\x87\\x1a\\xb4\\x9c\\xd1\\xb8\\x1e\\xd9\\x9a\\x2f\\x3a\\x1f\\xc4\\x14\\x22\\x68\\xbf\\x84\\x83\\xaa\\xf7\\x2c\\x2d\\xe5\\xc9\\xd3\\xf3\\x85\\x28\\x5e\\x42\\xbb\\x10\\xd4\\x74\\x21\\x73\\x69\\x8a\\x2e\\xe2\\x23\\x04\\x3d\\x0c\\xf9\\xa2\\x60\\xd5\\xc3\\x90\\xc7\\x22\\xde\\x42\\x2c\\xf0\\xa5\\x00\\xf9\\xb8\\x03\\x51\\x2b\\x1b\\xbb\\x53\\x58\\x89\\x8d\\xfe\\x27\\xe3\\x6c\\x6e\\xe3\\x41\\x89\\x45\\x48\\xff\\x9a\\x5a\\x6e\\xd3\\x89\\xd7\\x75\\x8e\\x17\\x06\\x32\\xdf\\xb6\\x91\\x73\\x77\\xfb\\x9c\\xb6\\x12\\xa1\\x75\\x9e\\x99\\x44\\x5b\\xdf\\x40\\x30\\x4d\\xb1\\x6a\\x35\\xd6\\xc2\\x69\\x1a\\x1a\\x71\\xa8\\xf5\\x22\\x8f\\x01\\xbc\\xbf\\x21\\x2e\\xcf\\xfd\\x2d\\x85\\x6f\\x94\\x5d\\xcd\\x7d\\xce\\x2e\\x16\\xd1\\x93\\x04\\x05\\x46\\xee\\x0c\\xdf\\x93\\x94\\x6a\\xed\\x04\\x4e\\x89\\xb4\\x65\\x25\\x23\\x2a\\x4f\\x66\\x13\\x66\\x70\\xbc\\xa1\\xcd\\x61\\x2d\\x9c\\x4d\\x7c\\x95\\xf2\\x69\\x1f\\x83\\x37\\x9a\\x24\\x59\\x70\\xec\\xc9\\xa3\\x20\\x88\\x56\\x35\\x11\\xb9\\x45\\x6d\\x91\\x28\\xa2\\xff\\x1e\\x69\\x27\\x42\\x2c\\x5c\\x88\\xb9\\xbc\\x38\\xdc\\x84\\x7f\\xe9\\xe2\\xb8\\xf8\\x2f\\x64\\x06\\xd4\\x61\\x92\\xdb\\x5c\\x72\\x98\\x8e\\xf2\\xcf\\x88\\xe8\\x58\\xc0\\x3d\\x11\\x6a\\x05\\x2b\\xf4\\xd1\\xf6\\x15\\xe3\\xce\\xd9\\x22\\x15\\xf8\\x4b\\x4d\\x9f\\xce\\xd8\\x1d\\x7d\\x36\\x48\\x70\\x71\\x9c\\xe8\\x61\\xf4\\x74\\x8d\\xfc\\x87\\x0e\\x13\\xdd\\x25\\x1f\\x6a\\x3d\\x96\\xf3\\x6e\\x80\\x83\\x7f\\xd6\\xf0\\xf5\\x69\\x28\\x69\\xfb\\xf9\\x75\\xe1\\xd4\\xf4\\xbb\\xe2\\xcb\\xb0\\xcd\\x81\\x33\\x47\\xa1\\x94\\x54\\x6f\\x7f\\x00\\x8a\\x88\\x3e\\x0e\\x1d\\x11\\x20\\xc4\\xe8\\x21\\x7a\\x82\\xf8\\x53\\xcd\\x5e\\x3b\\x91\\xce\\x61\\xd0\\x67\\x12\\x73\\x63\\xd7\\x43\\xc5\\x0f\\x3c\\x5e\\xb5\\xae\\xe2\\x48\\x39\\x95\\x8a\\x2e\\x05\\x4d\\x73\\x7c\\x4d\\x99\\x6a\\xe7\\xc5\\xdb\\x75\\x2f\\x90\\x7e\\x3e\\x15\\x24\\x94\\xe1\\xe2\\xf0\\xb4\\xd6\\xee\\x9e\\xe6\\xc4\\xea\\x6c\\x6f\\x5b\\xc1\\x2c\\xef\\x2f\\xbc\\x68\\x2f\\x13\\x59\\x83\\x80\\x60\\x7e\\xfc\\xa9\\xb0\\x54\\x26\\x51\\xf9\\x37\\xe0\\x5d\\x83\\x93\\xe0\\xf1\\xc5\\x7e\\xc0\\x81\\xa0\\xe9\\xef\\xdf\\x33\\x13\\x88\\xee\\xd2\\x49\\x6f\\xb3\\xd1\\x59\\x66\\xa3\\x26\\x68\\xd3\\xc3\\xca\\x25\\x2a\\xda\\xb2\\xa8\\x0d\\xaf\\x4f\\x69\\xea\\x5d\\xc8\\x52\\x75\\x91\\x44\\x10\\x6e\\xae\\x57\\x82\\x31\\xc2\\x66\\x1b\\x91\\xb8\\xb2\\x0e\\x46\\xf6\\x30\\xc1\\x43\\x39\\x87\\xcc\\x62\\x21\\x1a\\x21\\xc9\\x43\\x6e\\xa4\\xd7\\xb6\\x36\\x7a\\x03\\x57\\xf9\\xc0\\xc7\\xab\\xb3\\x56\\x87\\xd5\\xe6\\x70\\x8f\\x18\\xfe\\x79\\x05\\xfa\\xb2\\xcd\\x13\\xbe\\xd1\\x61\\x8d\\xb9\\x67\\xd2\\xb9\\x98\\xfe\\xdc\\xa2\\xfd\\x61\\xa9\\x8a\\xfe\\xca\\x12\\x22\\x00\\xae\\x25\\x1e\\x5c\\xb9\\xb2\\x14\\x22\\x72\\xf2\\x84\\x25\\x04\\xd4\\xf1\\x57\\x8a\\x70\\x52\\x53\\x95\\xe8\\x0c\\xc2\\xbf\\x81\\xd0\\x3f\\x1b\\x38\\x11\\x0a\\x1e\\x2d\\x58\\xae\\x71\\x12\\x10\\xcc\\x3a\\xbe\\x55\\x11\\x02\\x8a\\xdb\\x05\\xac\\x4a\\x69\\x26\\xde\\x8a\\x47\\x58\\x39\\xcd\\xf4\\x94\\x5d\\x1f\\x1a\\xb0\\x6d\\x23\\x23\\x15\\x8a\\xbb\\x11\\x9c\\x0c\\xeb\\xf0\\xbb\\xa9\\x19\\xaf\\x63\\x87\\x36\\x56\\x93\\xd9\\xa6\\xc1\\x6a\\x34\\x04\\xcf\\x57\\x90\\x67\\xde\\x9c\\x77\\xc8\\x8f\\x3a\\xae\\xc8\\xb0\\xd8\\xc0\\xae\\x2d\\x7a\\xbc\\x61\\x26\\xef\\x99\\x8b\\x02\\x78\\x1d\\x4c\\xea\\x40\\x66\\x6b\\x5f\\xdd\\x1c\\x6a\\xae\\x57\\x53\\x52\\x6d\\x4f\\x9c\\xce\\xf7\\xf0\\x0e\\xcc\\x74\\xcb\\x26\\xdb\\x94\\x8f\\xa0\\x14\\x05\\x62\\x04\\xcf\\x4d\\x03\\x44\\x38\\xa5\\x5e\\xda\\x42\\xec\\x06\\xf6\\xba\\xe4\\x8b\\x89\\xe2\\x45\\x7d\\x5a\\x6f\\xb9\\x0b\\xe5\\xc0\\xe2\\xa5\\xfe\\x25\\xb8\\xce\\x73\\x36\\x38\\x63\\x07\\x1d\\x26\\xb3\\xbb\\xf4\\x55\\x68\\xd7\\xe1\\x8c\\x4f\\x82\\xea\\x30\\x7f\\x7d\\x4d\\x89\\xc6\\xe3\\x48\\x1c\\x49\\x21\\x21\\xd2\\xc8\\x0a\\x77\\x28\\x6f\\x42\\x04\\x4a\\xb6\\x0d\\x9a\\x0e\\x1d\\x51\\x39\\xe5\\x4e\\xf8\\x14\\xe2\\xcc\\x0c\\x42\\x53\\xf9\\xa1\\x24\\x85\\x78\\xc0\\x74\\x47\\xec\\xca\\xa3\\x65\\xbc\\x62\\xa0\\x0d\\x19\\x90\\x44\\xeb\\xb1\\xe8\\x13\\xe3\\xdb\\xb2\\xf4\\xae\\x80\\xa2\\xd4\\xd8\\xb5\\xba\\xc3\\x04\\x6d\\x48\\xea\\xf7\\x8a\\xfb\\xf5\\xdc\\x89\\xd5\\x31\\xdb\\x0b\\xe4\\xb4\\x88\\x39\\x2f\\x6a\\x45\\x9c\\xe5\\x07\\x08\\xb6\\x84\\x1e\\xa4\\x72\\xf9\\x1d\\x12\\x7d\\x42\\x5a\\xe6\\x80\\x2d\\x57\\xdd\\x9e\\xc6\\x05\\x9e\\xb9\\xa2\\x68\\xd9\\x49\\x38\\x77\\x9d\\x6d\\x22\\x29\\x66\\x75\\xe9\\x41\\xaf\\x6d\\xc9\\x94\\xc1\\x9b\\x5e\\x81\\xce\\xdf\\xb1\\x5f\\xc5\\x78\\x0e\\x66\\x92\\x11\\xf6\\x39\\xdb\\x46\\xe3\\x6e\\xca\\x54\\x02\\x2e\\x0d\\xdd\\x1f\\x1a\\xe8\\xac\\xd4\\x73\\xa1\\xf8\\x88\\xf4\\xb0\\xee\\x5c\\x41\\x62\\xca\\x1d\\x69\\xcb\\xa4\\xb7\\x7f\\xd7\\xda\\xc3\\x5b\\xec\\x76\\xac\\x5d\\x99\\xc3\\xc3\\x85\\x02\\xd9\\x66\\x5f\\x83\\x6c\\x02\\xe4\\xf5\\x97\\x24\\x21\\x3e\\x93\\x8d\\xf2\\x61\\x52\\x9b\\x17\\xab\\x17\\x48\\x0f\\xb6\\x3d\\x86\\xe7\\x57\\xdc\\x58\\x78\\x90\\xda\\x6f\\x26\\x19\\x26\\x78\\xba\\x61\\x62\\x3a\\xac\\x6d\\x95\\x68\\x57\\xd5\\xd7\\xa5\\xda\\xaa\\x4a\\x83\\x21\\x7c\\xdc\\xa2\\xb3\\x36\\xa1\\x9c\\x6e\\xed\\xa5\\x2e\\x8d\\x26\\xa1\\xef\\x96\\xb2\\xd2\\x65\\x6d\\xa6\\xa6\\x83\\x4f\\xa3\\x7e\\x73\\x74\\x2e\\x1f\\x78\\xaf\\x1c\\xa6\\x26\\x9b\\x73\\xb1\\x24\\x91\\xbc\\xad\\x14\\x58\\x2a\\xe9\\x8d\\x9d\\x4b\\xa8\\x33\\x76\\x72\\xf0\\x26\\x65\\xe8\\x30\\xfa\\xdd\\x0a\\xa0\\xa4\\xbc\\x57\\xc7\\xb1\\x7d\\x31\\x07\\xa4\\x15\\x48\\x0c\\x1e\\xb2\\x18\\x17\\x7d\\x45\\x84\\x49\\xcf\\xb4\\xc6\\x92\\x6e\\x86\\xb8\\xf5\\x13\\x1d\\xf5\\xa4\\x10\\xb8\\x8c\\xe5\\x56\\x7b\\x6b\\x07\\x16\\xce\\x16\\xc8\\x96\\x36\\xb5\\x31\\xb7\\xc6\\x30\\x3c\\x4d\\x60\\x14\\xc2\\x7b\\xeb\\xb5\\xc5\\x1a\\xd2\\x75\\xb1\\x7b\\xb2\\x1f\\xaf\\x2a\\x0e\\xea\\xaf\\x02\\xa4\\xc3\\xff\\x54\\x09\\x0c\\x38\\x7b\\xee\\x5e\\xd5\\xec\\x8e\\x69\\x22\\x16\\x0a\\xcc\\xf0\\x9e\\x9c\\xbb\\x9d\\xfa\\x5c\\x75\\x19\\x0d\\xe6\\xea\\x81\\xe7\\xa7\\x13\\xbf\\x2a\\x19\\x9e\\x15\\xbd\\x69\\xf4\\x84\\x12\\xa3\\x17\\xd6\\xa0\\x8f\\x8d\\x88\\xe2\\x1e\\xac\\x28\\xdd\\xf8\\x07\\xd7\\x03\\xc6\\x7f\\x1b\\x40\\xfc\\xbb\\x82\\xc2\\x2f\\xc9\\x8d\\x84\\x7e\\xb5\\xbe\\x9b\\xc4\\x40\\x2a\\x98\\xbc\\xc1\\x24\\x89\\x3d\\xaf\\x56\\x0b\\xd4\\xf8\\xbc\\x25\\x24\\xd8\\x0f\\x70\\x99\\x05\\x5d\\x0b\\x1b\\x6e\\xed\\x86\\x41\\xff\\x6d\\x08\\xa7\\x5b\\x15\\xd8\\x0a\\x75\\x20\\xc1\\x91\\xfa\\xcd\\xf9\\xbd\\xf9\\x63\\x6e\\xc4\\xd8\\x6e\\x95\\x85\\x83\\xe1\\xef\\xfa\\x09\\xef\\xbe\\xc3\\x18\\x8c\\x28\\xd8\\xe7\\x29\\xef\\x97\\x36\\x7f\\x98\\x68\\xe3\\xbd\\x12\\x89\\x27\\x9d\\x68\\x8d\\xcf\\x00\\x87\\xfb\\x2f\\x35\\x75\\x04\\xd6\\xd6\\xe5\\x34\\xd7\\x0f\\x74\\xb4\\x44\\xe0\\xb0\\x7f\\xe4\\xde\\x95\\x94\\xbb\\x82\\x9e\\xf0\\x5b\\x37\\x7c\\x88\\x0d\\x07\\x98\\xe4\\x5c\\x7d\\x76\\x2a\\x32\\x76\\xac\\xd4\\xe5\\x0e\\x79\\x29\\x5c\\x7d\\x44\\x02\\xe5\\x92\\xc9\\x89\\x90\\x7f\\x45\\xd8\\x49\\x8a\\xfe\\x42\\x8f\\x7f\\x96\\xde\\x6f\\x41\\x9c\\xec\\x98\\x6a\\xd1\\xbc\\x9c\\x22\\xa2\\x6d\\xf4\\x38\\xe6\\x21\\xc9\\x43\\x0e\\xea\\x5f\\xb2\\xfb\\x7a\\x1b\\x74\\x45\\xc0\\x19\\x5c\\xc2\\x1e\\xf5\\x0f\\xff\\xd7\\xe7\\x6a\\x51\\xfa\\xfb\\x8b\\xf4\\x1a\\x62\\xd4\\x0f\\x9e\\x44\\x9a\\x6b\\x00\\xc3\\x55\\xc9\\xca\\xbf\\x8d\\x64\\xee\\x8c\\x09\\x79\\x10\\x90\\xa8\\x80\\x98\\xdf\\xda\\x46\\x45\\x50\\x68\\x05\\x89\\x5f\\x62\\x9d\\x5f\\x91\\x44\\x66\\xae\\x42\\x68\\x5d\\x52\\x93\\xcd\\x9e\\x57\\x72\\x68\\xea\\x8b\\x1c\\x55\\xb9\\x1a\\x49\\x02\\x8f\\x81\\x00\\xf6\\x63\\xea\\xfc\\xa1\\x1d\\x84\\xba\\xc2\\x54\\x37\\xd7\\x62\\x41\\x10\\x93\\x03\\x20\\x92\\xcd\\x3f\\x5f\\x48\\x62\\xc5\\x7f\\x8b\\x24\\xae\\xa8\\xe7\\xc1\\xdd\\x98\\x27\\x87\\x97\\x5f\\xd9\\xd6\\x4d\\xb4\\x31\\x17\\x54\\xce\\xfb\\x86\\x8e\\xd7\\xe3\\xf9\\x1a\\xf4\\x51\\xb0\\xf9\\xe4\\xe3\\x00\\xae\\x63\\x9b\\xe4\\x5a\\xaa\\x99\\x61\\x9d\\xca\\xde\\xa8\\x2e\\xa5\\xf9\\xbf\\x00\\x00\\x40\\xff\\xbf\\xe5\\x42\\xf3\\x39\\xa1\\xc4\\x79\\x35\\x2e\\xb4\\x05\\x1f\\x79\\xff\\x61\\xc5\\x71\\xb9\\xf0\\xe9\\x19\\xba\\x30\\x89\\x46\\x78\\x5c\\xab\\x52\\x17\\x2f\\xca\\xd0\\x4a\\x85\\x16\\xe6\\x43\\xc0\\x99\\x3b\\x47\\xb5\\xf3\\xfe\\x45\\xa2\\xbf\\x5f\\x4a\\xc0\\x9c\\x9f\\x9e\\xd1\\x67\\x35\\xac\\x42\\x77\\xab\\x7c\\xcd\\x75\\x2d\\x88\\x26\\x04\\x72\\xb2\\xeb\\x89\\xf9\\xef\\xff\\x9c\\x13\\x29\\x64\\xae\\x4c\\x81\\x9e\\x66\\xdc\\x1f\\x0d\\x82\\xe8\\x50\\x51\\x9f\\xcc\\x11\\xc5\\x74\\xda\\xf9\\xf8\\xd3\\xf2\\xc4\\x0f\\xe4\\xe6\\x48\\x40\\x3a\\x71\\x35\\x16\\x4e\\x82\\x09\\x81\\x61\\xb8\\x89\\x00\\x91\\xad\\x8d\\x04\\xbf\\x92\\x7a\\xef\\x97\\xe0\\x8c\\xef\\xa8\\x3c\\x43\\xae\\x93\\xb5\\xc4\\x13\\x4a\\x7f\\xa7\\x05\\x02\\x58\\xee\\x72\\x4a\\x73\\x53\\x18\\xba\\xd4\\x9d\\xad\\x49\\x7c\\xf8\\x86\\x81\\x6a\\xfe\\x2b\\x02\\x9a\\x56\\xaa\\x63\\x42\\x26\\x24\\x8b\\x80\\xe9\\x18\\x8c\\x06\\x3b\\x7c\\x1d\\x4d\\x14\\xda\\xa8\\xce\\x4c\\x2d\\x6b\\x4d\\x7a\\x78\\x70\\x3a\\xd2\\x59\\xb7\\x86\\x1b\\x59\\xe2\\xa6\\x18\\x25\\xea\\xbd\\xe0\\x9e\\x9b\\xa1\\xc7\\x14\\xe8\\x59\\x41\\x21\\x4e\\x4b\\xc1\\x5c\\x4c\\xaa\\x84\\x08\\x0d\\x29\\x87\\x01\\x00\\x36\\x69\\x60\\x78\\xc0\\x07\\x46\\x77\\x4e\\x76\\x53\\x56\\xa1\\x68\\xe1\\x47\\xbe\\x7a\\x62\\x57\\xc2\\x33\\x59\\x0f\\xe4\\x1c\\x35\\x3f\\x36\\xc7\\xad\\x9e\\xe7\\xa5\\xcd\\x03\\x6d\\x40\\xd2\\xc0\\x1f\\x65\\x53\\x7e\\xc0\\x84\\x46\\x58\\x77\\xd7\\x27\\xf5\\x54\\xf2\\x0d\\x67\\x4b\\x07\\x6f\\x90\\x3e\\x94\\xa3\\x1d\\xcd\\xf5\\x88\\x2d\\x8a\\x99\\x06\\xf2\\xa7\\xa1\\x9b\\x24\\x46\\x8e\\xc4\\x9c\\xc7\\x25\\xa0\\xa6\\xcc\\x7b\\x70\\x37\\xf3\\x41\\x5d\\x99\\xb5\\x06\\x73\\x37\\xec\\x52\\xc6\\xbc\\xc4\\x1a\\x7c\\xe3\\x84\\x8c\\x36\\xc8\\xa5\\x31\\x21\\xd3\\x0d\\x73\\xff\\x82\\x26\\x04\\xf6\\x47\\x02\\x82\\xcf\\xc0\\xdb\\xe5\\x21\\x79\\x51\\xa9\\x21\\x0c\\xbc\\x77\\x74\\x0b\\xa7\\xf2\\x17\\xdf\\x72\\x97\\xda\\xb0\\x32\\x5a\\xdc\\x46\\xdd\\xb1\\x1e\\x73\\x73\\x02\\xa9\\xd8\\xec\\x26\\xcb\\xe2\\xf3\\xa0\\x49\\xda\\x1a\\xc0\\x3c\\x65\\xc1\\x9e\\x92\\x85\\x1d\\xde\\x4f\\x11\\x1e\\xfb\\x90\\xdf\\x00\\xf6\\xc1\\x33\\xc4\\x26\\xbd\\xd5\\x4e\\x61\\xc5\\xb0\\x49\\xe0\\xf1\\xf5\\xad\\x9a\\xbc\\x87\\xf4\\x21\\x44\\xb8\\x29\\xf4\\x80\\x58\\xb4\\xcc\\xc6\\xdb\\x83\\xa6\\xec\\x8b\\x66\\x0d\\x86\\x0d\\x62\\x53\\xfc\\xd7\\x5b\\x4d\\xe2\\xb5\\x72\\xf2\\x9d\\x18\\x10\\xfc\\x4c\\x91\\x9a\\xf2\\xd8\\x99\\x0e\\x82\\x32\\x57\\x8c\\x58\\x14\\x29\\x86\\xc8\\xc3\\xa4\\x17\\x4d\\x1f\\x8b\\x6f\\x8c\\x9a\\x67\\x81\\x72\\xfc\\xb4\\x51\\xd4\\x6c\\xf2\\x50\\x00\\x8d\\x16\\x4e\\xeb\\x08\\x6e\\xcd\\x1c\\x96\\xbf\\xc9\\xe9\\x7c\\x4a\\xd1\\x5e\\xe1\\xdd\\x02\\xa8\\xb0\\x08\\x4f\\x0e\\x41\\xd8\\xf9\\x97\\x88\\x33\\x20\\x23\\xd8\\x6e\\x22\\x52\\x6a\\x3c\\xe3\\x12\\x98\\xf3\\xdd\\x81\\x81\\xe3\\x08\\x3f\\x04\\x7f\\x5f\\x3c\\x41\\x28\\x89\\x4a\\x2f\\x75\\xec\\x2e\\x55\\xc8\\x0f\\x2d\\x07\\x70\\xeb\\x1f\\xf7\\x76\\x9c\\x09\\x32\\xf8\\x5d\\x5f\\x43\\x70\\xbc\\x43\\xd0\\x6c\\xe8\\x50\\xdd\\x61\\x1d\\x31\\x1d\\x1d\\x02\\x69\\x5c\\x7f\\x1c\\x79\\xc9\\x1c\\x56\\xdd\\x15\\x12\\xc3\\xec\\x2a\\xb7\\xeb\\x6a\\xa5\\xeb\\x02\\xf5\\x07\\xa4\\x10\\xa9\\x19\\xd4\\x7d\\x43\\xe8\\xbd\\x01\\x62\\x0c\\xcf\\xf1\\x86\\xf9\\x76\\x2a\\xe5\\x73\\x3a\\x67\\x54\\x46\\x5a\\x49\\x02\\xc4\\x62\\x84\\xf4\\xb3\\x73\\xb3\\x42\\xc6\\x89\\xd5\\x6d\\x5f\\xf2\\x9d\\x0f\\xe1\\x01\\xb6\\x05\\x65\\xc0\\x3b\\x2d\\x4d\\x4d\\x61\\xd5\\x16\\x2a\\x11\\x3c\\x40\\x70\\xc8\\x56\\x22\\x09\\x91\\xd5\\xa9\\x1e\\x4e\\xc4\\x83\\xc2\\x54\\x97\\xca\\x89\\xf4\\x40\\xa3\\x89\\x7b\\xdc\\xa7\\x0b\\x04\\x58\\x1f\\xc8\\x3a\\xc0\\x75\\xb7\\x01\\xf3\\xe1\\xf7\\x40\\x03\\x8b\\x5e\\xcf\\xfc\\x9e\\x51\\x19\\x0c\\x3e\\xd6\\x23\\xe4\\x30\\x79\\xef\\xe4\\x29\\x5b\\xdb\\xba\\x47\\x87\\xa5\\x98\\x7d\\xc8\\xb6\\x42\\xba\\x5a\\x3a\\x70\\x16\\x39\\x42\\x13\\xea\\x8e\\x01\\x0b\\x48\\x84\\x07\\x93\\xf5\\x47\\xc5\\x99\\xec\\x04\\x95\\x17\\x20\\xb3\\x9d\\x11\\x2e\\x09\\x2b\\xf6\\xcc\\x75\\x61\\xc8\\x9d\\xd6\\xe8\\x65\\x60\\x54\\xaa\\x04\\x58\\x67\\xda\\x7f\\xce\\xe5\\x9e\\x28\\x7f\\x25\\x87\\x08\\x80\\x0d\\x96\\xca\\x90\\xfe\\xdf\\x94\\x35\\xc3\\xfa\\xf4\\xa4\\xa9\\x5e\\xc9\\xb4\\xde\\x42\\xc7\\xe8\\x39\\x12\\xaf\\x92\\x7c\\xb9\\x61\\x74\\xa4\\x4a\\x21\\xe0\\x4c\\x45\\xd9\\xc2\\x8e\\x56\\x0f\\xe6\\xed\\xc5\\xf7\\xac\\xfd\\x5f\\x09\\xd5\\xc3\\x4a\\x61\\x3d\\x21\\x77\\xdc\\xa4\\x59\\x5f\\xa4\\x26\\xa6\\x50\\x1f\\x3a\\x3e\\x0b\\xdb\\x79\\x21\\x46\\xd6\\xf1\\x68\\x42\\x03\\x8f\\x9a\\xc8\\x60\\x17\\x15\\x41\\x57\\xdf\\x01\\x28\\x9a\\xf5\\xeb\\x13\\x24\\x64\\xef\\x65\\xb8\\xba\\x53\\x8c\\x4b\\xf5\\x74\\xd6\\x0f\\xc1\\x18\\xb6\\x7e\\x8a\\xb7\\x76\\xa2\\x65\\x94\\x5a\\x0f\\xca\\x16\\xc1\\x0b\\x11\\x39\\x59\\x49\\x4c\\x2a\\x68\\x0f\\x40\\x22\\x65\\x97\\x77\\x35\\x61\\xfe\\xe1\\xb1\\xd2\\xe3\\x7b\\x05\\x00\\x51\\x42\\x0d\\x56\\xa2\\x8c\\x10\\x1d\\x3c\\x55\\xba\\x15\\xfe\\xc4\\x4f\\x1e\\x4b\\x36\\xa2\\x73\\x86\\x1a\\x1e\\x26\\x0b\\x8a\\xf0\\x67\\x0e\\x85\\x25\\x38\\x18\\x06\\x92\\xfc\\xb9\\x9a\\x92\\x5f\\x04\\xc0\\xbb\\xb1\\xb4\\xee\\x3c\\x34\\xd8\\xab\\xe4\\x5b\\xaa\\xf5\\x14\\xaf\\x9d\\x3b\\x25\\x51\\x2b\\xb6\\xb0\\x71\\x58\\x3f\\xfc\\x7d\\x07\\xaa\\x74\\x99\\xc5\\x53\\x92\\x1c\\x65\\x85\\xe9\\x18\\x1f\\xcd\\x3a\\x3b\\xef\\x03\\x0d\\xfb\\xa2\\x8c\\xc8\\x9d\\x69\\x4f\\x7d\\x74\\x57\\x58\\xd6\\x27\\xa8\\x46\\x9b\\x47\\x86\\xf7\\xc1\\x4c\\xbd\\xfd\\x26\\x23\\x77\\x31\\x40\\x8e\\xb5\\x18\\x6c\\x5f\\x5a\\x36\\xb5\\xb5\\x6b\\x86\\xe8\\xac\\xb6\\x46\\x26\\x39\\x7d\\x5a\\xdd\\xb6\\xcd\\x63\\x06\\x5a\\xca\\xa3\\x8d\\xe2\\x44\\xc5\\xe7\\x33\\x4a\\xbb\\xc1\\x01\\xf5\\xe3\\x21\\x7a\\x7b\\xd6\\x34\\x0e\\x0d\\x3c\\xd2\\x59\\xd0\\x53\\x9f\\x63\\xa4\\xbb\\xdd\\x21\\xd0\\xab\\xfc\\xd0\\xfe\\xa8\\x54\\x55\\x21\\x58\\x07\\x96\\x27\\x02\\x9b\\x9f\\x06\\x13\\xca\\x18\\x01\\x26\\xf1\\xea\\x0d\\x44\\xe4\\xc0\\x81\\xe7\\x54\\x88\\x4c\\x42\\xa1\\xea\\xc4\\xb7\\x18\\x82\\x17\\x84\\x1e\\x2d\\xde\\xd5\\x98\\x97\\x42\\x25\\x10\\xd4\\xe4\\xaa\\xb8\\xe9\\x73\\x1c\\xd6\\x56\\x9e\\x85\\x32\\xec\\x1b\\x6c\\x7c\\x78\\xb2\\x4a\\x79\\x8d\\x70\\x52\\x9d\\xf0\\x91\\x6f\\x74\\x72\\x7c\\xbe\\x33\\xc6\\x68\\x44\\x41\\x32\\x96\\xa1\\x47\\x44\\x78\\xce\\x41\\x76\\x38\\x86\\x9c\\xee\\x7c\\xcb\\x29\\x65\\x27\\x70\\xee\\xb6\\x4e\\xe7\\x39\\x27\\xa4\\xe8\\xe2\\xc0\\x52\\x01\\x0d\\x7e\\x45\\xed\\x90\\x5b\\x40\\x50\\x9f\\x42\\x55\\xec\\xe6\\xf3\\xde\\xe3\\xe3\\xea\\xa2\\x9b\\x22\\x12\\xd6\\xfa\\x9f\\xbc\\xfc\\x01\\x8f\\x0e\\xf6\\xb7\\x1a\\x59\\x6d\\x55\\xa4\\xb9\\xb9\\xbb\\xa0\\xad\\xd8\\xbb\\x72\\xab\\x7e\\x13\\x4a\\x05\\x97\\x2f\\x26\\x71\\x43\\x7d\\x8f\\x8f\\xb7\\x2c\\x37\\xcc\\xcb\\xd5\\xe0\\x8f\\x59\\xfd\\x12\\xcf\\x0b\\x79\\x68\\xa0\\x76\\x92\\x39\\xb0\\x55\\x05\\xa6\\xe1\\x62\\xe1\\xd1\\xac\\x22\\x98\\x80\\x53\\xa4\\x9a\\x9a\\xd6\\xa6\\x3b\\x92\\xd8\\x83\\xcc\\x32\\x5b\\x05\\xf0\\x39\\x3d\\x3b\\xd6\\x65\\x93\\xd1\\x7a\\x9b\\xa8\\xdd\\xcd\\xb2\\x4d\\x87\\x33\\xbd\\x65\\x91\\x31\\x9f\\x6b\\xb3\\xbd\\xbb\\x8a\\x8b\\xb2\\x9b\\xab\\x0b\\xba\\xd9\\x90\\x65\\x2f\\x7b\\xf0\\x90\\xfe\\x23\\xd3\\x05\\x86\\x34\\xc1\\x66\\x28\\xc1\\xf0\\x1a\\x6c\\x22\\x91\\x02\\x1c\\xe6\\x01\\xf5\\x3c\\x27\\x1d\\xa1\\x0c\\x82\\xa3\\x0f\\xf5\\x47\\xcd\\xf1\\x13\\xb8\\x28\\x04\\x17\\x05\\x06\\xf1\\x70\\xa1\\x27\\xf8\\xe0\\xb8\\xb3\\x41\\x16\\x9c\\xc5\\xb5\\xd7\\xaa\\xd6\\xf6\\x26\\xc3\\x8c\\xb3\\x78\\xd4\\xaa\\x47\\x4f\\xd6\\x66\\x81\\x43\\x3b\\xa6\\xc3\\xc5\\x3c\\x01\\x7d\\x61\\x95\\x89\\x06\\x25\\x3a\\xa0\\x14\\xd4\\xa6\\x17\\x66\\x0a\\x2c\\x81\\xc4\\xd0\\x50\\x67\\xa3\\xb2\\x09\\x4b\\xbd\\x85\\x71\\x2a\\x87\\x21\\x27\\x8c\\xc0\\xc0\\x61\\xd3\\x68\\x98\\x52\\xf3\\x35\\xc5\\xea\\x34\\xbc\\xae\\x59\\x22\\xa1\\x27\\x1b\\xbf\\xc7\\x88\\xef\\x64\\x68\\xb8\\x56\\xba\\xdd\\xbb\\xd1\\xb1\\x68\\x48\\x80\\xed\\x27\\x0d\\x64\\x8e\\xd6\\xd6\\x04\\xe6\\x98\\x94\\xe5\\x32\\xfa\\x70\\x13\\xd1\\x71\\xf6\\x7f\\x6c\\x57\\x7e\\x76\\x72\\x23\\x40\\x5b\\x50\\x0e\\x98\\x87\\xc2\\x91\\x0b\\xcd\\xf1\\xd8\\x0b\\xfd\\x62\\x95\\xe3\\x67\\x23\\x5a\\x73\\x50\\xdd\\xe8\\xb8\\x89\\x9b\\x3f\\x39\\x09\\xa1\\x52\\x9d\\xb5\\x62\\x40\\xfb\\xc0\\x53\\x87\\xd0\\x97\\xc3\\x5f\\x80\\x13\\x72\\xa7\\xaf\\x1a\\xb5\\x8e\\x33\\x4e\\x6b\\x3a\\x4c\\x5e\\xbb\\xbb\\xe2\\xcb\\x5c\\x47\\x15\\x53\\x41\\xc1\\x57\\x63\\x82\\xf6\\xae\\x99\\x2d\\xf8\\x87\\x4a\\xb6\\xac\\xf8\\xee\\xc2\\x8a\\x90\\x08\\x2a\\xac\\xbe\\xc4\\x12\\x09\\x07\\x52\\x17\\xb6\\xa2\\x99\\x6b\\x4c\\xbe\\x58\\x3c\\xe4\\x61\\xd6\\xd5\\xf8\\x11\\x01\\x1e\\x73\\x51\\x08\\xdc\\xa2\\xe6\\x89\\x36\\x15\\x1b\\x4c\\xf0\\x52\\x1e\\x40\\xa3\\xb7\\xdf\\xcb\\x92\\x29\\x45\\x86\\x9f\\x02\\x60\\xc9\\x34\\xfc\\x02\\x67\\xcc\\xd4\\x33\\xac\\x71\\x35\\x4f\\x4d\\x25\\xf5\\x92\\x34\\xc3\\x08\\xd7\\x85\\x03\\x7c\\x96\\x61\\x47\\x25\\x73\\x06\\xc8\\x89\\x75\\x68\\x43\\xb1\\x4b\\xaa\\x6f\\x79\\xab\\x60\\x47\\x81\\x48\\xbc\\x32\\x21\\x10\\x67\\xb5\\xc4\\xf9\\xbd\\xbc\\x50\\x45\\xb2\\xf1\\x0e\\x15\\x5a\\x3f\\xf3\\xa2\\x6e\\xda\\x00\\x45\\x5b\\xbe\\xf2\\xcc\\xda\\x56\\xa9\\x26\\x1f\\xce\\xcd\\xd8\\x04\\x55\\x41\\x9e\\x62\\x40\\x32\\x1e\\x5a\\x75\\x89\\xaf\\xec\\x1f\\xd0\\xf4\\x83\\x2f\\x18\\x71\\xb5\\xd9\\x96\\x1a\\x54\\xb7\\xa9\\x71\\xfa\\x71\\xb6\\x61\\x3a\\x47\\xea\\x32\\xa6\\x51\\x26\\xc3\\xa8\\x1e\\xb2\\xf5\\x22\\x21\\x47\\x17\\x29\\x11\\x09\\xb5\\xec\\xcb\\x6e\\x2c\\xa8\\x13\\x48\\x7a\\x20\\xb9\\xf1\\x49\\x7b\\x6d\\x42\\x93\\xab\\x24\\x14\\x52\\xb0\\x36\\x13\\x59\\x10\\x76\\xe7\\xc5\\x26\\xe8\\x40\\x66\\x24\\xb1\\x09\\x5d\\xbc\\xd5\\x4c\\x8a\\xa4\\xf2\\x4c\\x95\\x2b\\xbb\\x12\\xbb\\x4f\\x6d\\x52\\x52\\x58\\x0a\\xd1\\x06\\xc5\\x2f\\xbd\\xaf\\x28\\x90\\x70\\x46\\x5b\\xc7\\x09\\xb2\\xd4\\xe1\\xe3\\x86\\x82\\x7c\\x55\\xc7\\xe0\\xf2\\x09\\x14\\x34\\xa3\\x86\\xc9\\x0e\\xe5\\xcd\\xad\\x1e\\x46\\xfd\\x86\\x03\\xa8\\x16\\x29\\x0d\\x68\\x05\\xbb\\xc4\\x80\\x1d\\xc1\\x1f\\x14\\x8e\\x0c\\x0d\\x4f\\xf0\\x62\\x2a\\x0b\\xbc\\x04\\x0c\\xe4\\x18\\xc9\\x9f\\x42\\x65\\x52\\x0c\\x0e\\xf6\\xa9\\x9a\\x8f\\x01\\x17\\x08\\xa4\\xe1\\x0b\\xc2\\xde\\x96\\x82\\x49\\xe5\\x13\\xe1\\xfe\\x44\\xa9\\x69\\x8c\\xc1\\x80\\x60\\x12\\xa8\\x36\\xb1\\xe2\\x0a\\x91\\x02\\xcb\\x7c\\xba\\x2b\\x0e\\xdb\\x0b\\xd6\\xf4\\xd7\\x9b\\x97\\x91\\xa7\\xb4\\x37\\x25\\xd9\\xe5\\xd6\\xdf\\x6b\\xfa\\x70\\x01\\x0a\\x25\\xcb\\x18\\xef\\x96\\xb0\\x67\\x31\\xde\\x70\\x10\\x0a\\xde\\x70\\x56\\x67\\x65\\x09\\x88\\xe8\\x5a\\x91\\xc3\\xb8\\x9b\\x99\\x4a\\x12\\x3b\\x08\\xb9\\x1b\\x14\\xbd\\x1e\\x53\\xb4\\x64\\x88\\xde\\xd2\\xc2\\xad\\xc9\\x76\\x27\\x24\\x24\\xf2\\xdf\\x78\\x88\\x48\\x3b\\xe9\\x92\\xf7\\x57\\xa0\\x5c\\x06\\x2e\\xa0\\x30\\xbf\\x30\\x1d\\x4d\\x32\\x8c\\xbc\\xb9\\xb1\\x91\\x21\\x5e\\x22\\x24\\x4a\\x8b\\x94\\xf0\\xc5\\x04\\x72\\xf4\\x30\\x5b\\xd7\\xf9\\x87\\xea\\x67\\x53\\x22\\x51\\x0a\\x6d\\xad\\xdd\\x6d\\x93\\xe3\\x48\\xa6\\x11\\xac\\x54\\x7e\\x93\\x47\\xee\\x40\\xa8\\x11\\x28\\x0f\\xb7\\x08\\x20\\x73\\x3b\\xd1\\x8b\\xae\\x0b\\xc5\\x6a\\x0e\\x14\\x0b\\xbb\\x7a\\x06\\x2e\\x34\\xa9\\x0a\\x25\\x14\\x35\\x4a\\x7b\\xb6\\x46\\xe7\\x6d\\xb0\\x71\\xd3\\xa3\\x20\\xd1\\xcb\\x7c\\x15\\xda\\xd0\\xd3\\x24\\x14\\x14\\x21\\x4e\\xb8\\x22\\x61\\x52\\xd5\\x64\\x09\\x0a\\x32\\xe3\\x43\\x83\\xd8\\x75\\x81\\x8e\\x94\\xe3\\x4f\\xc9\\xde\\x28\\x36\\xd7\\x78\\x87\\xa4\\xd4\\x4e\\x8b\\x4e\\x5c\\xc7\\x6e\\xf7\\x33\\xd0\\x58\\x98\\x45\\x2b\\x1e\\xd0\\xe2\\x25\\xf9\\x9c\\xc0\\xc2\\x24\\xd0\\x85\\xb3\\x9a\\x91\\x71\\xd4\\x13\\x7d\\xe1\\xcf\\x87\\xab\\x1b\\xa6\\x8a\\x24\\x71\\xee\\x7a\\x73\\x58\\xfa\\x62\\x39\\x98\\xd3\\xc0\\x04\\x0f\\xc2\\xdb\\x0f\\x06\\xb2\\x76\\x4a\\xfc\\xee\\xdb\\x11\\x39\\x5a\\xd8\\x3c\\x59\\x42\\xe7\\x52\\x09\\x15\\xe5\\xce\\xfa\\x4a\\x64\\x29\\x8e\\xbd\\xf7\\x90\\xbe\\xb4\\xfa\\x12\\x11\\x65\\x93\\xb2\\x60\\x10\\x28\\xb5\\xde\\xb1\\x13\\x76\\x90\\x7d\\x37\\x08\\x13\\xa1\\x42\\x87\\x06\\xb0\\x45\\x4c\\x9a\\x05\\x95\\xdf\\x41\\xa6\\xa2\\xec\\x92\\x5b\\xf0\\xe3\\x39\\x58\\x89\\x8d\\x01\\x95\\x27\\x95\\x5e\\x60\\x54\\x03\\x2f\\x4d\\x24\\xbd\\x39\\x29\\x95\\xe8\\x20\\x99\\x2d\\xf9\\x66\\x0e\\x25\\xed\\x26\\xe1\\x9e\\xf9\\xc3\\x84\\xf0\\xc6\\x93\\x43\\x32\\xa3\\xe4\\xd6\\x98\\xb1\\x24\\xf0\\x35\\xa9\\xaf\\x24\\x3e\\x58\\x32\\xcc\\x4a\\x50\\xe1\\x8a\\x35\\xc8\\x89\\x47\\xba\\xb2\\x93\\x24\\x1e\\x73\\x7a\\x11\\x14\\x68\\xc6\\x10\\x0d\\x98\\xa2\\x92\\x53\\x5b\\x69\\xf1\\x25\\x43\\xd8\\x84\\x22\\x6d\\x6f\\xcd\\xd8\\x88\\xc1\\x58\\xdf\\x35\\xea\\xf5\\x78\\xe5\\xd1\\xd9\\xe1\\x35\\x84\\x15\\x14\\x31\\xae\\xe6\\x56\\xde\\xa6\\x62\\x5a\\x3b\\x95\\x73\\x57\\x81\\xa9\\xa5\\xa5\\xfe\\x12\\xff\\x31\\x04\\x78\\x90\\xfc\\x40\\xef\\x22\\xd0\\x78\\x59\\x64\\x4d\\x12\\xc9\\x6d\\xd1\\x88\\xcf\\xa9\\x60\\xb2\\x88\\x52\\xb9\\x4b\\x00\\x83\\x52\\x5a\\xb6\\x94\\x56\\xfa\\x14\\x00\\x71\\x46\\xfe\\x8b\\x09\\xb0\\x98\\x36\\x43\\x7d\\x79\\x1c\\x73\\x3f\\x51\\x3f\\xf6\\x2a\\xa9\\x84\\x7c\\x9c\\x60\\xe0\\xe2\\x3d\\xc0\\xb4\\x71\\x19\\x59\\x3d\\x36\\xed\\x1c\\xf8\\x13\\xf8\\x55\\x14\\xa6\\xdd\\x9b\\x77\\x7e\\x2b\\x05\\x88\\xf8\\x2b\\x0f\\x00\\x21\\xf2\\x29\\x0c\\x02\\xc5\\x8a\\xde\\xb5\\x92\\x4e\\xa1\\x20\\xa3\\x86\\x67\\x29\\xca\\x04\\x18\\x19\\xad\\x51\\x4b\\x66\\xb4\\xde\\x9a\\xc6\\x53\\xc3\\x96\\x02\\x00\\xc2\\xa9\\x6c\\x87\\x4a\\x40\\xcb\\xc0\\x46\\x50\\xea\\xe7\\x96\\x4b\\x2f\\x6a\\xcc\\x72\\x3f\\x19\\x24\\x3a\\x5d\\x20\\xdf\\xf1\\x8a\\x74\\x9c\\xf3\\xa9\\x74\\xa2\\xfc\\xae\\x66\\x2d\\x03\\x30\\xb5\\x74\\x38\\xa8\\x29\\xd1\\x20\\xed\\x0d\\x16\\x58\\x5b\\x39\\x30\\xf9\\x0f\\x98\\x9b\\xc6\\xf0\\x86\\xf1\\xef\\x98\\x2b\\x11\\x0c\\x5c\\x15\\x88\\x5c\\xf0\\x8a\\x4a\\xf5\\x45\\x67\\x74\\x52\\x9a\\xeb\\x4a\\x81\\x08\\xd2\\x29\\x7c\\xb4\\xef\\xe7\\xd0\\x83\\xf1\\x1f\\x32\\x35\\x8d\\xa0\\x00\\xf4\\x62\\xe0\\xc1\\xd3\\x18\\xe2\\x1f\\xa4\\xbc\\x8e\\xb4\\x15\\x8c\\xac\\x80\\x78\\xe0\\x69\\xfb\\xa2\\x89\\x06\\xf3\\x7a\\x1a\\x83\\x82\\x55\\x18\\x1c\\xcc\\x7a\\xae\\xb5\\x2b\\x14\\x53\\x37\\x8a\\x91\\xd4\\xc0\\x3d\\x2d\\xf3\\xbf\\x64\\xb7\\xd6\\x00\\x5a\\x7c\\x79\\x2b\\x5d\\x9c\\x65\\xf5\\x42\\x84\\x2f\\x94\\x5f\\xf2\\xdb\\x8d\\x16\\xda\\xf5\\x19\\x76\\xa3\\xc2\\x6c\\xea\\x67\\x12\\xf6\\x11\\xcd\\x8a\\xab\\xd8\\xaf\\xd5\\x8a\\xe9\\x91\\x94\\x0f\\x82\\x6e\\xa7\\xb0\\x26\\x82\\x1d\\xbe\\x68\\x42\\xe3\\x9c\\xd3\\x14\\x08\\x36\\x4e\\xcb\\xa6\\x57\\x00\\xe7\\x81\\x72\\xb6\\x82\\x43\\x79\\x26\\xca\\xe4\\xb8\\x84\\xa1\\x68\\xcd\\x9d\\xa9\\x86\\xa5\\x01\\x1a\\x40\\xcb\\x56\\x03\\x4c\\xed\\xcb\\x10\\x19\\x0d\\xd2\\x83\\xb9\\x43\\xe0\\x94\\x16\\x7a\\x51\\x72\\xc9\\xb1\\xfe\\x75\\x6c\\xdf\\x4b\\x44\\x06\\x75\\xa1\\x3b\\x6b\\x4c\\x55\\xf9\\xed\\x24\\x61\\xd5\\xa7\\xf8\\x56\\xb4\\x82\\x6f\\x3f\\xdd\\x3c\\x0a\\x4b\\x1e\\x19\\x0b\\x1c\\xb8\\x91\\xa2\\x9d\\x06\\xba\\xd9\\xca\\xfe\\x42\\x46\\x75\\x49\\x4d\\xaa\\x68\\xcb\\xf0\\x9c\\x0a\\x94\\xbd\\x48\\xf7\\x32\\x6e\\x5b\\x73\\x06\\x1e\\xc7\\xb2\\x34\\x3e\\x3a\\x21\\x5a\\xc8\\x95\\xd2\\xdb\\xed\\x6e\\x34\\x98\\x2c\\x61\\xa1\\x48\\xc1\\x0a\\x2f\\x96\\x20\\x9a\\x75\\x27\\x86\\x39\\x81\\x52\\x86\\x01\\xea\\x62\\x8b\\x8c\\x51\\xbe\\x05\\x2a\\x27\\xa4\\xd4\\x73\\x1b\\x83\\xdd\\xe9\\x69\\x51\\xfa\\x18\\x8f\\xc8\\x11\\x4d\\x71\\x56\\x6a\\x12\\x19\\xf5\\x09\\x40\\x7f\\x03\\xe6\\x99\\x23\\x5f\\x6b\\xef\\xd3\\x93\\xf2\\xa9\\xe0\\xa1\\x4f\\x05\\xe5\\xf5\\x83\\x26\\x55\\x9f\\x8e\\x12\\x0a\\xb4\\xc9\\x96\\x4a\\x14\\x63\\xb6\\xcf\\x6e\\x39\\x76\\xb8\\x47\\x0e\\xb8\\x18\\x8e\\xc2\\x02\\x01\\x65\\xad\\x12\\xae\\xca\\x2c\\xcd\\xb4\\xfa\\x40\\x58\\x78\\x32\\x55\\x2a\\xca\\x32\\x3d\\xf3\\xce\\x48\\xcc\\x0b\\xb7\\xc2\\x9b\\x4c\\x06\\x12\\x0a\\x7b\\x47\\x90\\x11\\x10\\xdb\\x59\\xfe\\x8a\\xf6\\x17\\x31\\x01\\x54\\x60\\x53\\x43\\xa1\\xc1\\x2c\\x4d\\xea\\xa5\\x94\\x2d\\x10\\x6b\\x68\\xdc\\x13\\x62\\x28\\xca\\x2f\\x28\\xaa\\x6c\\x2d\\x91\\x02\\xe2\\xb2\\x01\\x47\\x74\\xdd\\xa7\\x5b\\xac\\xc2\\x25\\xe2\\x15\\xa6\\x75\\x5f\\xa6\\x64\\x34\\x2d\\xae\\x5b\\x3c\\x0c\\x32\\x94\\x71\\x1a\\x80\\x8f\\x33\\x72\\x61\\x46\\x5c\\x68\\x4f\\x31\\x48\\x52\\x83\\xbe\\x3d\\x23\\x18\\x2b\\xf9\\x41\\x78\\xda\\xdc\\xf9\\x8e\\x79\\xaf\\x27\\xd1\\x5e\\xef\\x05\\xa3\\xca\\xf3\\x1b\\xb8\\xad\\xe5\\x1b\\xb5\\xe5\\x6d\\x22\\xc9\\x03\\x80\\x05\\xee\\x14\\xc3\\xba\\x32\\x15\\x9e\\x38\\x1f\\x05\\xcc\\x15\\xf8\\x83\\x4a\\xf6\\x7a\\xd8\\xd5\\xb9\\x54\\xe5\\x0d\\xe5\\x0b\\x29\\x5a\\x39\\x25\\x7d\\x94\\xd4\\x53\\x51\\x84\\x57\\xe0\\x0b\\xad\\x7b\\xbc\\xa4\\xb3\\x0c\\xd9\\x45\\xd0\\x65\\xd8\\x23\\xf9\\xd4\\xb4\\x80\\xb1\\x04\\x5a\\x9a\\xca\\x45\\xb5\\xe1\\x37\\x08\\x19\\xca\\x99\\x7e\\x16\\x42\\xfc\\x33\\xd5\\x34\\x81\\x21\\xca\\xc5\\x41\\xef\\x64\\xe4\\x8a\\x78\\xc7\\x51\\xc0\\x8d\\x3c\\x16\\x91\\x97\\x6a\\x47\\x31\\x83\\xf0\\x73\\x96\\xa5\\x16\\x2d\\xbe\\xdd\\x48\\xd0\\x1c\\xec\\x61\\x22\\x38\\x26\\x1c\\xdc\\x91\\xa2\\xa4\\x89\\x26\\x16\\xa9\\xe7\\x08\\x52\\xdd\\x61\\x82\\x3a\\xa1\\x5e\\x35\\x04\\x38\\xe0\\x2c\\x06\\x8f\\x71\\x48\\x29\\xc0\\xdb\\x76\\x6b\\xb4\\x2a\\x0a\\xab\\x5f\\x3b\\x2f\\x20\\x2a\\x20\\x6a\\x48\\xb7\\x30\\xb2\\x58\\x1e\\x07\\xa6\\x63\\x10\\xa6\\x7b\\x20\\x35\\xc1\\x00\\x7d\\x77\\x4c\\x6c\\xc6\\xf0\\xd4\\x6c\\xe6\\xd8\\x69\\xdd\\xcf\\xed\\xb0\\x7b\\x3e\\x43\\xe4\\xd2\\x93\\x44\\xc1\\xa4\\x81\\x39\\x64\\xdd\\x44\\xd7\\x30\\x38\\x0b\\x39\\x3a\\x23\\x61\\x67\\x75\\x17\\xd8\\x0a\\x79\\x76\\xd0\\x8c\\xdf\\x1d\\x00\\xb5\\x58\\xd5\\x82\\x57\\xd9\\x0e\\x51\\x85\\xf8\\x39\\x40\\xa7\\xbe\\x8c\\xdb\\x52\\x74\\xec\\x62\\xc4\\x04\\x8d\\x79\\x2a\\x3a\\x2f\\x1c\\x84\\xd4\\x51\\x32\\x91\\x2c\\x14\\x15\\x88\\xe4\\xf0\\x46\\xc2\\x34\\x79\\x49\\xa7\\x85\\x70\\xc3\\x1a\\x59\\x9b\\x0f\\xff\\x2c\\xb5\\x5b\\xc5\\x26\\xbb\\x1f\\xa6\\xda\\x6b\\xac\\xe4\\x58\\x70\\x53\\x6e\\x8c\\x3f\\x6a\\x4c\\x0b\\x6b\\x43\\x82\\x8f\\x52\\x92\\x64\\xd7\\xa1\\x30\\x6e\\xf7\\x8d\\x9c\\xf0\\x74\\xa3\\x4d\\xe0\\x8d\\xfc\\x89\\xb2\\x30\\x1d\\xbc\\xbd\\x21\\x42\\x28\\x6a\\x46\\x6e\\xf4\\x87\\x26\\x84\\xce\\x09\\xda\\xba\\xf7\\x34\\xac\\x4a\\x4c\\xb9\\x0a\\x0d\\x08\\x7b\\x2d\\xb2\\x16\\xc2\\xb5\\x81\\x3a\\xaa\\x16\\xe1\\xa3\\xe9\\x81\\x6c\\xc1\\xc0\\xcb\\x30\\x77\\x80\\x9b\\x03\\x19\\xe8\\xed\\x41\\xd2\\x94\\x49\\x37\\x65\\x58\\x3d\\xc1\\x2e\\x19\\xbd\\x99\\x6b\\x13\\x77\\xa2\\x33\\x04\\x94\\x4a\\xdc\\xc4\\xd8\\x94\\x41\\xbb\\x4d\\x14\\xac\\xd4\\x23\\x58\\xc5\\xbb\\xbf\\x34\\x29\\x3e\\x34\\x80\\x85\\x9d\\x17\\x82\\xd7\\xc2\\xaa\\x12\\x1e\\x3e\\x24\\x13\\x83\\x3c\\xad\\xd8\\x66\\x08\\xfb\\x81\\x7e\\x57\\x23\\xaf\\x39\\xd8\\xc9\\xaa\\x70\\xf1\\x01\\x11\\x1b\\xd7\\x25\\x40\\xfc\\x60\\x65\\x14\\x39\\x09\\x5e\\xe4\\xfc\\xaf\\xf3\\x23\\xae\\x2d\\x41\\x1c\\x44\\xc1\\xa8\\x02\\x75\\xe9\\x7c\\x7a\\x15\\x65\\x42\\xe7\\x64\\xb1\\x0b\\x86\\xbf\\x68\\x4a\\x9b\\x50\\x9b\\xa8\\xca\\x0b\\xbc\\x3f\\x88\\x22\\xac\\x0e\\xb5\\xdb\\x6d\\x51\\x3e\\x1b\\x02\\xf8\\x63\\xea\\xb8\\x50\\xcd\\xdf\\x0d\\xd1\\xbd\\xa2\\x35\\xfd\\x30\\xfc\\x39\\x77\\xdf\\x59\\xeb\\x68\\x64\\xbd\\xcb\\x90\\x03\\x31\\x1b\\xfc\\x22\\xcc\\x22\\x50\\x0b\\x5c\\x3a\\x6d\\xe7\\xb8\\xec\\x58\\x68\\x6b\\x5d\\x39\\x82\\x7b\\x15\\x9e\\x5e\\xce\\x11\\x1c\\x28\\xf6\\x32\\xb3\\x61\\x10\\x39\\xe7\\xb1\\xc2\\x3c\\x05\\x88\\xbf\\xf9\\xe7\\x14\\x9f\\x05\\xfb\\x47\\x19\\x12\\x2c\\x54\\x31\\x5d\\xf5\\x82\\xf4\\x9f\\xe5\\xe3\\x94\\xca\\xb7\\x05\\x63\\x92\\x3f\\xb2\\xc1\\x63\\x23\\x28\\xce\\x94\\x4f\\x9f\\x47\\x0d\\xc2\\x36\\x53\\x49\\xa1\\x86\\xf4\\xe6\\x84\\xc5\\x5d\\x83\\xdb\\xb1\\xbc\\x8b\\x04\\xa7\\x39\\x52\\xb8\\x8c\\x65\\x95\\x3c\\x67\\x60\\x61\\x61\\x4d\\xef\\x08\\xd3\\x73\\xe0\\x02\\xbc\\x44\\xa9\\x31\\x71\\x9f\\x33\\x36\\x59\\x69\\x3c\\x10\\x22\\x2f\\x56\\xe0\\xee\\xd2\\x02\\x99\\x45\\x0e\\x99\\xb6\\x92\\x00\\xe0\\x12\\x77\\x00\\xc0\\x93\\x1f\\x6f\\x10\\x87\\x9b\\x4c\\xac\\x91\\x92\\x24\\x33\\xcd\\x7d\\x03\\x55\\x0c\\x2b\\x55\\xd5\\x2c\\x0b\\x24\\x9f\\xbb\\x77\\x9a\\xb3\\x88\\x69\\xaf\\xa1\\x16\\x13\\x93\\x6f\\x24\\x80\\xe2\\x50\\xa3\\xbf\\xa5\\x13\\x5b\\x42\\x20\\x1a\\x5c\\x20\\x5b\\x8a\\x14\\x35\\x04\\x8f\\x27\\x2c\\xf6\\x20\\x05\\x89\\x7d\\xf1\\xc0\\x0a\\x11\\x2c\\x25\\x5f\\x17\\x2a\\x00\\x30\\x9c\\xcc\\xed\\x43\\xbb\\x74\\xbc\\xfe\\xa5\\xba\\x2a\\x9e\\x61\\xa2\\xad\\x96\\x55\\xef\\xcd\\x19\\xc0\\x27\\x59\\xbd\\xf8\\x6b\\x17\\xbf\\x10\\x02\\xfc\\xc5\\xb3\\x59\\xa9\\xab\\xa8\\xaf\\xa0\\xd4\\x9d\\x21\\xac\\x77\\xbd\\x9c\\x9f\\x9a\\x49\\xf6\\x8d\\xe6\\xb3\\x2c\\x72\\x65\\x6f\\x24\\x02\\xf2\\xaf\\xef\\xbb\\xb6\\x0a\\xac\\xe8\\xd8\\xbe\\x8a\\xf5\\x98\\x4a\\xc1\\xbc\\xd6\\x73\\x87\\x9f\\x51\\xe5\\x44\\x82\\x86\\x75\\x8d\\xcd\\x15\\x97\\x1b\\x34\\x1d\\x1d\\x82\\x23\\x47\\x0c\\x2b\\x7a\\xe9\\x97\\xfd\\x2a\\x2a\\x38\\xaf\\xd3\\x87\\xf8\\xbf\\xeb\\xd0\\x15\\x08\\x34\\xf3\\x6b\\xb8\\xc2\\xe8\\x36\\x19\\x47\\x6e\\x18\\x91\\xf4\\x32\\x40\\xde\\xbe\\xd5\\x05\\x0a\\xb4\\x7a\\x39\\x60\\x01\\xe8\\x28\\x3e\\xc9\\xa3\\xd0\\x36\\x57\\x7b\\x4e\\x64\\x57\\x53\\x5d\\x3e\\x33\\x72\\xd1\\xbc\\xd5\\x5e\\x86\\x25\\x86\\xf5\\x0f\\xc3\\x7c\\xd2\\x2b\\x38\\x0b\\x1d\\x56\\xe7\\x8e\\x41\\x60\\x40\\xd7\\x12\\x67\\x22\\x90\\xde\\xbc\\xb3\\x30\\x48\\x68\\x3a\\x55\\x1c\\x2f\\xd5\\x8e\\x12\\x6e\\x8c\\x45\\xed\\x4f\\xc1\\xe4\\xe2\\x14\\x6e\\xab\\xf9\\x33\\x32\\x30\\x14\\x45\\xe3\\x1a\\x0f\\x6a\\x8e\\xa3\\x79\\x0b\\x8e\\xc9\\x15\\x80\\x4f\\x4f\\x70\\xc2\\x51\\xb3\\xa8\\xf0\\xc5\\x95\\x60\\x63\\x64\\x4d\\xfd\\x27\\x5c\\x51\\x34\\x48\\xeb\\x4a\\x05\\x54\\x85\\x55\\xd6\\xe6\\x94\\x9b\\x58\\xb3\\xe5\\xaa\\xa9\\x11\\x0e\\x41\\x12\\xde\\x9c\\xe2\\x94\\xed\\x35\\x62\\xd0\\xb8\\xc1\\x98\\x2a\\xb5\\xa9\\x69\\x5e\\xb4\\x34\\x32\\x66\\xa2\\x18\\x2c\\xaa\\x21\\x9d\\x90\\xe3\\x34\\xc5\\xa4\\xad\\x45\\x8e\\xcf\\x64\\xe4\\x45\\x81\\xf9\\xc5\\x66\\x81\\x45\\xc0\\x0c\\x60\\x03\\xc3\\x6e\\x57\\xc6\\x86\\x21\\x13\\x1c\\x5c\\x77\\x30\\x05\\x8c\\xf8\\x8b\\x89\\x70\\x1b\\xc8\\x60\\xc8\\x25\\xb7\\xb3\\xbc\\x28\\xf6\\x7a\\xaa\\x00\\xbb\\x95\\x5c\\x79\\x63\\xb5\\x9b\\xd6\\xde\\xc5\\x64\\x45\\xc5\\x50\\xc1\\x09\\x8f\\x14\\xb8\\x63\\x11\\x5d\\xf8\\x66\\x57\\x8d\\x3d\\x9a\\xf3\\x9b\\x08\\x2e\\xaa\\xed\\x16\\x56\\x96\\x4d\\x03\\xbe\\x46\\xbc\\x38\\x96\\x44\\x16\\xc0\\x7c\\xb2\\x5d\\x96\\x84\\x09\\x18\\x71\\xeb\\xca\\x41\\x8e\\xce\\xb3\\x04\\xd8\\xb7\\x43\\x75\\x81\\x98\\x0f\\x80\\xb7\\xd7\\x02\\x7d\\x0b\\xcc\\xd1\\xdc\\x22\\x26\\x17\\x2e\\xe5\\x50\\xd3\\x89\\x2a\\x7c\\x5b\\x51\\x0e\\x11\\x81\\x1b\\x86\\x98\\x5f\\x8b\\xf0\\x91\\x1e\\x8b\\xb0\\xf2\\x3b\\x16\\x8c\\xa1\\x1b\\x94\\x18\\x7f\\x5c\\xd2\\xd0\\x23\\xc8\\x3e\\x82\\xc1\\x96\\xc1\\xd1\\x45\\xc4\\xe5\\x82\\x14\\x2f\\x44\\x96\\x7a\\x90\\x35\\x10\\x94\\x43\\x32\\xf6\\x23\\x83\\x45\\x66\\xaa\\xc5\\xa9\\xb6\\xdc\\x35\\xa4\\x77\\x72\\x6f\\x61\\x58\\x76\\x0b\\x49\\x0f\\xbc\\x11\\xcb\\x55\\x51\\x14\\xad\\x98\\x90\\xab\\x9e\\x9b\\xd1\\x19\\x5d\\x0d\\x43\\x1d\\x46\\x06\\xf5\\x12\\x31\\xef\\xb5\\x4c\\xe3\\x89\\x58\\xf7\\xb0\\x48\\x15\\x83\\x1f\\xd4\\xae\\x61\\x3a\\xf9\\x61\\x44\\x16\\xc0\\x63\\x15\\x21\\x98\\x71\\xb9\\x10\\xf3\\x2b\\x9f\\x31\\xc8\\x41\\xe5\\xad\\x25\\x53\\x45\\x5a\\x91\\x5e\\x04\\x16\\xc8\\x48\\x25\\x1d\\x43\\xfe\\xf2\\xb4\\x91\\x60\\x2d\\xf4\\xaa\\xc9\\xc3\\xb3\\xfc\\xa0\\xd6\\x9e\\xe9\\x1c\\x97\\x2f\\x4b\\x2b\\xd6\\x78\\xaf\\x68\\x01\\xb9\\x60\\x88\\x08\\x1a\\xba\\xf3\\xa0\\x91\\xd5\\x17\\x96\\xc5\\xa0\\x1f\\x79\\x8d\\xb9\\xc6\\x84\\x76\\x71\\xba\\x37\\x20\\x5d\\xe4\\xfe\\xab\\x1a\\xec\\x56\\x99\\xda\\xa1\\xe1\\xd8\\xbd\\x3e\\x18\\x4c\\xbc\\x8b\\x77\\x00\\x2e\\xf5\\x10\\x59\\xbb\\x93\\x7e\\xc2\\xa6\\xc1\\xa0\\x9b\\x02\\x96\\x78\\x67\\x8e\\x24\\x07\\x35\\x16\\xb5\\x8d\\x66\\x71\\x1d\\x39\\x48\\xb0\\x47\\x0d\\xe5\\xf4\\x78\\x64\\x8a\\xa9\\xee\\xda\\x8f\\xca\\xb9\\x80\\x5a\\x70\\x62\\xbf\\x60\\x2d\\xe5\\x82\\x88\\x01\\x95\\x98\\x10\\x84\\xc5\\x45\\x49\\x34\\xa5\\xa3\\x2f\\xba\\xc8\\x1f\\x01\\x7c\\x88\\x57\\xe2\\x76\\x3e\\x21\\x18\\xbd\\xef\\x7a\\xb6\\x6b\\xf0\\x5d\\x54\\x82\\xf8\\x31\\x5a\\x8d\\xfe\\x6b\\x19\\x38\\xcc\\x49\\xb1\\x41\\x95\\xd7\\x8c\\x8a\\x3d\\x38\\x1a\\xbc\\x56\\xeb\\x96\\x1e\\x32\\x81\\x55\\xbe\\x71\\x32\\x5e\\x1d\\xc4\\xbe\\x8e\\xdb\\xfe\\xd8\\x8e\\xce\\xe0\\xdf\\x0b\\x07\\x90\\xbc\\x9d\\x8e\\x38\\x20\\xe2\\x8a\\xde\\x0b\\x04\\x7c\\xba\\x8a\\x12\\x2e\\x9c\\xa7\\x72\\x69\\xd6\\xc0\\x1f\\x86\\xcb\\x9c\\x22\\x85\\x88\\x49\\x81\\x71\\x8c\\x63\\x22\\xbf\\x95\\xa0\\x8b\\x3f\\x5b\\x0c\\xdf\\xd3\\x8e\\x2c\\x23\\x03\\x6a\\xc2\\x16\\xb6\\x39\\x00\\xab\\xea\\xbb\\x47\\x92\\xf0\\x92\\xb4\\x90\\x94\\xad\\x43\\xbb\\xae\\x59\\x8c\\xaa\\xb8\\xd4\\xd3\\xc2\\x80\\x53\\x31\\x85\\x7e\\x09\\x2f\\xba\\xec\\x1c\\x68\\xa6\\x2b\\xe3\\x25\\x9c\\xba\\x70\\x15\\x6c\\x8d\\xb0\\x78\\x21\\x6e\\xee\\x0f\\x85\\x40\\x38\\x2a\\xd5\\x38\\x50\\x20\\x22\\x42\\x13\\x0c\\x8e\\x32\\x3c\\x08\\x32\\x8c\\x00\\x44\\x31\\x00\\x69\\x55\\x81\\x84\\x0d\\x37\\x08\\x40\\x64\\x99\\xd6\\xc5\\x44\\xba\\x60\\xd5\\x14\\x30\\x76\\x21\\xc5\\xfc\\x9b\\x0b\\x3d\\x70\\x05\\x34\\x66\\xe9\\x35\\xa4\\x59\\x30\\x12\\x37\\x96\\xad\\xad\\x73\\x95\\x0f\\xd0\\x96\\xc5\\x55\\x94\\x3c\\x24\\x0c\\xa6\\xa2\\xec\\xfc\\x46\\x37\\x51\\x2c\\x86\\x58\\x28\\xbd\\x41\\xce\\xad\\xdb\\x5d\\xd7\\xec\\xf9\\x70\\xf3\\xd0\\x39\\x80\\x27\\x82\\x7c\\x4f\\x1a\\x0a\\x74\\xf0\\xc8\\x48\\x64\\x5b\\x31\\xfb\\xbf\\x27\\xcf\\xe4\\xf3\\xbc\\xee\\xe4\\xec\\x41\\xba\\xa4\\x22\\x5f\\x49\\x4b\\x14\\x01\\xf9\\xef\\x6e\\x07\\x95\\x96\\x41\\x96\\x01\\x79\\xff\\xea\\x30\\xe4\\x5e\\x31\\x20\\xc3\\xba\\xf4\\x6b\\xc5\\x8a\\x30\\x22\\xbf\\x15\\x73\\x64\\x7d\\xdc\\xce\\xa9\\x14\\x10\\x33\\x64\\xf3\\x8f\\x5a\\x2f\\x73\\x4d\\xe2\\xcb\\x83\\x61\\xd2\\x84\\x29\\x5d\\xf0\\xe5\\x02\\x8b\\x93\\x20\\x2f\\xe4\\x3f\\xcc\\xf9\\xd9\\xbb\\x67\\x42\\x5a\\xe3\\x56\\x5f\\x76\\x97\\x21\\x09\\x6d\\xeb\\x1e\\x8a\\x0c\\xe7\\x02\\x97\\x4e\\x51\\x68\\x1a\\xd2\\x89\\x9c\\xe1\\xd1\\xa4\\x75\\xf1\\x17\\x11\\x09\\xf5\\xc7\\xcd\\xb6\\xbd\\x1e\\x92\\x7c\\xbf\\x2d\\xa4\\x83\\x26\\x4d\\xbc\\x9c\\xa6\\x47\\x24\\xfc\\x63\\x5d\\xf0\\x14\\xe6\\x74\\x04\\x4f\\x66\\xfd\\x83\\x4c\\xb1\\xe4\\xf1\\x36\\x61\\x8f\\xc2\\xe1\\x12\\xc5\\xa9\\x30\\x6e\\xa6\\x06\\x62\\x00\\xd6\\x69\\xd8\\x09\\x77\\x45\\xf9\\xf3\\xb3\\x66\\xd3\\x2a\\xe1\\x28\\x30\\x69\\x86\\x53\\xc2\\x05\\xfb\\x78\\x54\\x64\\x02\\x08\\x19\\x00\\xa1\\xd5\\xe3\\x77\\x69\\xe8\\x93\\xaf\\x0b\\x2d\\x85\\x63\\x9b\\xcd\\x51\\x2c\\xaa\\x28\\x2c\\x44\\x79\\x04\\xb1\\x12\\xaf\\xa6\\x51\\x59\\x97\\x64\\xb2\\x31\\x3a\\xf2\\x46\\x00\\x2b\\xd8\\x95\\x2d\\x21\\x3a\\xf0\\x46\\xc4\\x7c\\xea\\x04\\x31\\xa1\\x5e\\x36\\x71\\x19\\x75\\x93\\x39\\xe3\\x08\\xfe\\x20\\x19\\xd0\\x51\\xdd\\xcf\\x53\\x27\\x79\\xed\\x4a\\x48\\x09\\x5d\\x09\\x9d\\x84\\xb8\\xac\\xa8\\x57\\xce\\x71\\x37\\xf9\\xb0\\xcd\\x7b\\xb0\\xb7\\x0d\\x02\\x2d\\xcc\\x4f\\xb5\\x01\\xd6\\xbc\\x2d\\xac\\x98\\xc7\\xb6\\xe9\\xe8\\x30\\xed\\x2f\\x16\\x94\\xd5\\xba\\xbc\\xeb\\xa3\\x04\\x42\\xbc\\x94\\x7b\\xc5\\xd1\\x90\\x5e\\xcc\\xe2\\x90\\x1f\\x6a\\xdd\\x5c\\x69\\xf3\\xfa\\x87\\xe0\\xcb\\x2f\\xc5\\x8b\\x60\\xa4\\xcf\\xdd\\xfd\\xa9\\x38\\x22\\x40\\x80\\xb9\\x92\\x9f\\xc6\\x2a\\x79\\x74\\x92\\x70\\x3a\\x4c\\x7b\\x73\\x99\\x45\\xfa\\x26\\xfd\\x23\\x67\\xf2\\x2d\\x4a\\x0d\\x2d\\xa3\\x1f\\x24\\xec\\xc2\\x6d\\xc7\\xee\\xb7\\xd4\\x4a\\x1c\\x5d\\x72\\x8c\\x17\\x7e\\x9f\\x5e\\x71\\x6f\\x0a\\x23\\xe1\\xcb\\xa2\\x6b\\xcc\\xe9\\x28\\x53\\xf2\\xd4\\x83\\x1a\\x3c\\xc4\\x16\\x05\\xc7\\xc4\\xea\\x52\\x6c\\xa1\\x8a\\xb5\\xad\\x38\\x04\\x91\\x60\\x05\\xe4\\x0a\\xc1\\x2a\\x78\\xf6\\x11\\xf4\\x0b\\xd6\\xe1\\x10\\xaa\\x22\\x54\\xac\\xae\\x9c\\xa7\\x39\\x58\\x5d\\x47\\xc8\\x03\\xa5\\x09\\x0c\\x32\\x35\\x34\\xdb\\xbe\\x0a\\x22\\x19\\xee\\x44\\xda\\x8e\\xcd\\x34\\x04\\x1d\\xc6\\x5c\\x34\\x35\\x19\\x80\\x1e\\x41\\x2c\\xfd\\x42\\x12\\x33\\xf2\\x8e\\x22\\x30\\x59\\xf1\\x43\\x9f\\x72\\x80\\x6c\\x6c\\xeb\\x3c\\x86\\xda\\xfa\\xfd\\xad\\xb1\\x11\\x58\\x82\\x7f\\x8c\\xdb\\x2c\\x66\\x87\\x9f\\xa9\\x93\\x57\\xac\\x1d\\xf2\\x95\\xcd\\x3b\\x24\\x71\\x48\\xc3\\xf1\\x25\\x83\\xa2\\x18\\x45\\xc9\\x32\\x42\\xb4\\x43\\xe4\\xf1\\x29\\x67\\x3e\\xc8\\x4a\\xf8\\x8d\\x92\\x38\\x70\\x2c\\xe8\\xe8\\x65\\x46\\xb1\\x83\\x85\\x74\\xbe\\x8d\\x17\\x76\\x98\\xf9\\xae\\xb0\\x8f\\xbd\\x4e\\xb1\\x54\\xe3\\xe4\\xc5\\x81\\x2e\\x32\\xa8\\x47\\xb6\\x4d\\x45\\x96\\xe4\\xe3\\x26\\x22\\xf8\\x61\\xcd\\xeb\\xb7\\x4a\\x5f\\x44\\x07\\x6a\\xa9\\x02\\x1e\\x3c\\x75\\x1c\\xfa\\x93\\x28\\x74\\xea\\x1e\\x9d\\x74\\x41\\x6f\\xff\\x08\\xbb\\xe7\\xc0\\x1d\\xa9\\xa5\\xf5\\x38\\x75\\xba\\x34\\x38\\x42\\xd6\\xe4\\x15\\x7b\\xc4\\x4d\\xe9\\x8f\\x27\\x8b\\x23\\x21\\x33\\x70\\x25\\xb1\\xb6\\x28\\x96\\x5b\\x2f\\x16\\xfb\\xed\\x59\\x9e\\xa9\\xdd\\x29\\x41\\x8e\\xff\\x6d\\x6d\\x71\\x93\\x07\\x93\\x13\\x78\\xa9\\x41\\x0b\\x0e\\x85\\x62\\xd3\\x74\\xa7\\x67\\x6e\\x4c\\xf8\\xa2\\xc9\\xf6\\x0c\\xc0\\xb7\\xbf\\x6b\\x96\\x7a\\x97\\x97\\xc8\\x1a\\xa6\\xb9\\xbf\\xff\\x23\\x48\\xb3\\x4d\\x85\\x9c\\x01\\xfd\\x87\\xa4\\x5e\\xda\\xc5\\x0a\\x04\\x5e\\xc6\\x93\\xb4\\xad\\x10\\x5c\\xd6\\x02\\x0b\\x58\\xe4\\x6d\\xf9\\x2c\\xe6\\x33\\x47\\x63\\x85\\xce\\xd4\\xc1\\xb5\\x35\\x5a\\x6e\\x99\\x29\\x2d\\x82\\x8b\\x1f\\xcf\\xb8\\xc6\\xbd\\x1f\\x95\\x11\\x70\\xe6\\xb2\\xed\\xed\\x03\\x49\\xaa\\xff\\x84\\x65\\xbf\\x61\\xde\\x77\\xc9\\x80\\x12\\x55\\x0f\\x19\\x4e\\xd4\\xe4\\xbb\\x49\\x2f\\x32\\xc8\\xd6\\x83\\x65\\x6b\\xad\\xb5\\x80\\xf7\\x17\\x6d\\x8e\\x2b\\xbc\\x56\\x33\\xd9\\x20\\x50\\x02\\x8e\\xba\\xf5\\xf0\\xc2\\xd6\\xb8\\xcc\\x0c\\x0e\\x14\\x6b\\x64\\x4e\\xd1\\x72\\xa3\\xfa\\xeb\\x5d\\x0c\\x4a\\x02\\x68\\x2a\\x4c\\x36\\xf1\\x75\\x5f\\x46\\xa1\\x4b\\xae\\x15\\xbc\\x8d\\xcd\\x37\\x66\\x35\\x5a\\x30\\x62\\x60\\x80\\xcd\\x03\\x14\\x91\\x2c\\x08\\x23\\x44\\xe6\\xe9\\x7a\\x8f\\xb3\\x9f\\x24\\xc8\\x93\\xc6\\x74\\x11\\xbb\\x31\\x0e\\x2f\\xbc\\x44\\x76\\x65\\xda\\xa1\\x9d\\x6b\\xca\\x73\\x22\\xc2\\x89\\x46\\x7a\\xbb\\x8e\\x84\\xb0\\x50\\x44\\xd2\\x1a\\xd5\\x5b\\xdd\\xc6\\x31\\xe7\\x5c\\x84\\xb8\\xad\\xae\\x71\\xac\\x1d\\x11\\x67\\xa2\\x11\\x21\\xd1\\xc3\\x19\\x0e\\xc2\\xe5\\xf3\\x48\\x65\\x0c\\x3e\\xad\\xfe\\x17\\x74\\x9b\\x4f\\x18\\x81\\x56\\x2c\\x72\\xa2\\x76\\xc9\\xcc\\xe2\\x6b\\x22\\xd1\\xbc\\xf5\\xa3\\x6a\\x10\\x34\\x93\\xb8\\x33\\x87\\x34\\x36\\x33\\x20\\x19\\x6d\\x51\\x95\\xb8\\xd5\\xce\\x36\\x4f\\x1d\\x26\\x6b\\x69\\x9b\\xdd\\x81\\x47\\x78\\x2e\\x4c\\xc0\\xd1\\xb8\\xa7\\xd3\\x62\\x02\\x2e\\xe2\\xdd\\x1b\\x1b\\xf2\\xea\\x29\\x23\\x21\\x39\\x9c\\x60\\x62\\x1c\\x6b\\x45\\x67\\x73\\xec\\x8f\\x59\\x39\\x36\\x07\\x5b\\x76\\x00\\xd4\\xa4\\x61\\xd5\\xd7\\x54\\xc7\\x6f\\xbc\\x58\\xb1\\xa4\\x7d\\x99\\x02\\x45\\x0f\\x23\\x07\\x3a\\xdd\\x4f\\x10\\x60\\x40\\x2b\\x2a\\xfe\\x87\\x65\\x39\\x69\\x0d\\xc0\\xea\\x09\\x0a\\x45\\x94\\xe0\\x32\\x70\\xda\\xd9\\xf0\\x67\\x1c\\xfc\\xaa\\xe4\\x80\\x61\\x73\\x80\\xc7\\x64\\x67\\x7c\\x93\\x96\\x54\\x87\\x93\\x32\\xab\\xb3\\x03\\x17\\x54\\xc9\\x19\\x14\\xa7\\x2c\\x72\\xab\\x73\\xa7\\x5a\\x72\\xc1\\x6b\\x90\\xc7\\x0c\\x0a\\xa2\\xab\\x07\\x05\\x4a\\xb1\\x88\\x29\\xf8\\xf2\\x50\\x53\\x0a\\xc4\\x1f\\x70\\x14\\x26\\x3e\\x54\\x5c\\x8b\\x16\\xb9\\x54\\xe1\\x7d\\x68\\x1c\\x38\\xf8\\xb4\\xde\\x9c\\x48\\x8a\\x19\\xa9\\xbe\\x01\\xe6\\xcd\\x12\\x64\\xdd\\xba\\x86\\x1d\\xba\\x3d\\x60\\x20\\x2c\\x5d\\x42\\x56\\x64\\x9f\\x7e\\xfc\\xb0\\x8a\\x49\\x08\\xca\\x79\\xcd\\x0b\\xa8\\x30\\x04\\xab\\xd8\\x6b\\x14\\x16\\x27\\xe8\\xb0\\x4e\\xb0\\x45\\xaf\\xbc\\xe5\\x56\\xed\\xca\\x48\\x9d\\x3d\\xd2\\x9d\\x7c\\x36\\x4f\\xcd\\xc4\\x5c\\x42\\x05\\x81\\x01\\x4b\\x96\\xd5\\xfb\\x8c\\x23\\x00\\x96\\x1e\\xf9\\x13\\x23\\x78\\x4d\\xc2\\x29\\xcc\\x6c\\x44\\x3e\\xcb\\x1e\\x15\\x17\\x70\\xd3\\x02\\x9e\\x68\\xa9\\xa2\\xf3\\x6e\\x2a\\x0e\\x58\\xc5\\xc2\\xcd\\xb8\\x09\\x1c\\x78\\x6e\\x05\\xf3\\x20\\x79\\xc0\\x07\\x06\\x1d\\xaa\\x06\\xab\\xa2\\x38\\xbe\\x28\\x3d\\xe1\\xf5\\x17\\xc9\\xb1\\xb9\\xdc\\x4f\\xf6\\xdd\\x48\\xdf\\xd2\\x4e\\x02\\xbf\\x3e\\x28\\x05\\x2e\\x34\\xc0\\x0b\\x4e\\xea\\x20\\x1c\\x93\\x0b\\xe0\\x77\\x57\\xac\\x77\\x03\\x79\\x2b\\x5d\\xcc\\x32\\x2b\\x91\\xf9\\x74\\x12\\x7b\\xbe\\x27\\x21\\x1f\\xbb\\x90\\x8f\\x82\\x6a\\x76\\x66\\x11\\x30\\x0a\\x1d\\x9b\\x75\\x1c\\x0d\\x63\\x43\\x3c\\x95\\x0d\\x6d\\x6a\\x74\\xd5\\xb6\\xd5\\x1e\\x1b\\x65\\xb7\\x17\\xf5\\x27\\xcb\\xda\\x97\\x0b\\xe9\\xab\\x78\\x03\\xa0\\xb9\\xb0\\xe4\\xe2\\xb2\\x22\\xaa\\x0e\\x42\\x90\\x07\\x2b\\x22\\xe4\\xa8\\xa0\\x31\\x00\\x54\\xde\\x64\\x95\\xea\\x36\\xc5\\xb3\\xdb\\x28\\x20\\x85\\x5b\\x6c\\x5a\\x45\\xa4\\x2c\\x81\\xfe\\x2e\\x1e\\x90\\x94\\xd1\\x33\\x37\\xec\\x78\\x61\\xd5\\x06\\xcc\\x45\\x11\\x0c\\x0c\\x6b\\x11\\x17\\xa7\\xe8\\x26\\x15\\x86\\x04\\xb0\\xa7\\x54\\xc3\\x74\\xb6\\x60\\x31\\x30\\xe8\\x7f\\x60\\x0b\\x9a\\xc0\\x2a\\x37\\xed\\x95\\x88\\x98\\x99\\x0c\\x20\\xf5\\x60\\xa1\\x5d\\xd8\\xa4\\x43\\x08\\x3e\\xd8\\x59\\xcb\\xc5\\xb7\\x42\\xc2\\x85\\x6e\\x0a\\xfc\\x55\\x21\\xc9\\x2c\\x8c\\xd8\\xbf\\x06\\x35\\xdb\\xa2\\xf8\\x55\\xdb\\x37\\x3d\\x26\\x6f\\x83\\x57\\x04\\xa0\\x04\\x62\\xb6\\xe9\\x86\\x9e\\x71\\x3e\\xc5\\x89\\x95\\xb7\\xc8\\x26\\x43\\xac\\xe4\\xe2\\x74\\xee\\xb1\\xb3\\x32\\x20\\xa0\\x58\\x42\\xa2\\x1f\\xf1\\x22\\xbb\\x73\\x4f\\xd6\\x9a\\x95\\x95\\x77\\x46\\x45\\x45\\x14\\x76\\x23\\x64\\xb1\\x24\\xb8\\x2e\\x64\\x44\\x10\\xff\\x0e\\xbd\\xfe\\xc2\\x58\\x4e\\x51\\xda\\xd2\\xb8\\x18\\x87\\x70\\x76\\x45\\x4e\\x28\\x6c\\x4a\\xc2\\x77\\x15\\x72\\x27\\x18\\x02\\x87\\x20\\x05\\xdd\\x24\\x51\\x56\\x01\\x4d\\xce\\xb7\\xe6\\x31\\x80\\xa9\\xab\\x77\\xb5\\x6b\\x8f\\xbe\\x97\\x8b\\xca\\x74\\x7a\\xe3\\x82\\x33\\x7f\\x0b\\x39\\xe8\\x93\\x44\\x37\\x2d\\x89\\x47\\x29\\x11\\xcd\\x22\\x2c\\x27\\x29\\x97\\x43\\x29\\xd5\\xf8\\x01\\xf4\\x81\\x15\\xa9\\xc1\\x00\\x50\\xcd\\x2b\\xa2\\x10\\xfb\\x61\\x75\\x27\\x84\\x5d\\xf7\\xc2\\xc0\\xd5\\x32\\xee\\x1f\\xd5\\x42\\xda\\xe6\\x88\\x5c\\xda\\x01\\x84\\x09\\xf5\\x7f\\x6b\\x6f\\x7a\\xcd\\xb5\\xb8\\x48\\x04\\x3a\\xd4\\xeb\\x79\\x68\\xd8\\x5e\\xc8\\xab\\x03\\xc8\\x9b\\xba\\x0f\\x93\\xb0\\xd4\\xb5\\x3f\\x2e\\x46\\xd6\\x12\\x80\\xd3\\x02\\xd1\\xe3\\xd0\\x0f\\x8f\\x9d\\xbb\\xf3\\x8e\\xbf\\x64\\x92\\xef\\x52\\xa6\\x9d\\x81\\x08\\x85\\x69\\x52\\x6f\\xd8\\xa0\\xe6\\x5c\\xea\\x2a\\xfc\\x94\\x3b\\xfc\\x91\\xee\\x8e\\x3f\\x29\\xca\\x2c\\x81\\x5a\\xa2\\x31\\x98\\x39\\x1a\\x6b\\xef\\xb9\\x13\\xa7\\xba\\x0f\\x0c\\x37\\x90\\x2d\\xfd\\xe1\\x31\\x0b\\xe4\\x8e\\xbd\\x06\\x3a\\xbf\\x94\\x85\\x25\\x2a\\xa9\\xb3\\x77\\x10\\x6a\\xd8\\x7a\\x12\\x63\\x72\\xc3\\xc0\\xc8\\x64\\xf2\\x66\\x08\\xf4\\x9a\\xe3\\x98\\xd2\\x73\\x3d\\x52\\x51\\xd5\\x82\\x97\\x6c\\xb3\\x86\\x1b\\x19\\x03\\xb2\\xac\\x4c\\xf2\\x3d\\xfb\\x25\\xc6\\x66\\xe4\\x1c\\x33\\xb8\\xa5\\x80\\xa5\\x9a\\xc3\\x12\\x36\\x09\\xad\\xfa\\xde\\x9f\\xe5\\x87\\x2b\\x46\\xd1\\x47\\xc1\\x87\\x6d\\x69\\x40\\x81\\x92\\xf4\\xa8\\x41\\x94\\xc1\\x19\\x11\\x36\\xa9\\x3e\\xd0\\x9a\\xdc\\x0a\\x7a\\x3e\\xaa\\x20\\x4a\\x7b\\x11\\x2a\\xf0\\x55\\x44\\xc1\\x57\\xec\\xae\\xc6\\xcf\\xcb\\x24\\x0a\\xbc\\x8c\\x00\\x97\\x35\\xa7\\x47\\xce\\x94\\xe7\\xb5\\xb0\\xcc\\x4d\\x65\\x9a\\x3b\\x0f\\x08\\x8f\\x79\\xaa\\xc2\\x82\\x37\\xfd\\xca\\xc5\\x72\\x94\\xb0\\xaf\\x5c\\xe5\\x72\\x1a\\x61\\x2b\\xa2\\x42\\xdb\\x45\\xd0\\x93\\x9f\\x9b\\xa7\\x36\\x63\\x75\\xaa\\xd4\\x16\\x03\\x22\\xaa\\x96\\x45\\xe8\\x4c\\x09\\xdc\\x39\\x1e\\x6f\\x40\\xb9\\xea\\x90\\xa8\\x6c\\x16\\x99\\x9d\\x8a\\x7a\\x43\\x1e\\x0a\\x58\\x3a\\xb3\\x15\\x9e\\xb9\\xb0\\xae\\xf6\\x68\\x03\\xb3\\x9f\\xac\\xdd\\xb1\\x99\\x4b\\x44\\x8a\\x33\\x80\\xbb\\xcf\\x99\\xf2\\x47\\xc6\\xd6\\x61\\xfa\\xc9\\x63\\x5a\\x08\\x8b\\x68\\x23\\x58\\xc9\\xc8\\xca\\x86\\xe2\\x66\\x4e\\x19\\xb2\\x84\\xe9\\x28\\x34\\x9a\\x88\\xa5\\x8a\\x06\\x63\\x1c\\xd9\\x4f\\x77\\x53\\xb0\\xe4\\x0a\\x63\\x23\\x24\\x02\\x3b\\x1a\\x07\\x4c\\x1b\\xf8\\xcd\\xec\\x83\\xb5\\x5a\\x72\\x62\\x38\\x81\\x68\\xd5\\xee\\xca\\xae\\x7e\\xb6\\xb6\\x7e\\x23\\xc0\\xcc\\xac\\x62\\xe3\\xa6\\x91\\x41\\xbe\\xcf\\xd6\\x48\\x52\\x90\\x3a\\x57\\x68\\xf7\\x40\\x88\\xc4\\xf7\\xb0\\x95\\x97\\xf0\\x56\\x2c\\xef\\x77\\x25\\x63\\x88\\x43\\x15\\x26\\xac\\x9f\\x78\\x92\\xe0\\x66\\x41\\xa4\\x65\\x28\\xf2\\x89\\x51\\xdc\\x86\\x40\\x15\\x26\\x57\\xce\\x58\\xde\\xe1\\x22\\xbd\\x94\\x02\\x45\\x04\\x0f\\x15\\x04\\x64\\x07\\x82\\x9c\\xf2\\x4a\\x1c\\x8b\\xeb\\x03\\x08\\x62\\x09\\xf0\\xb4\\x27\\x95\\x19\\x23\\xfd\\xe7\\x34\\xc8\\xe3\\xa6\\x80\\x0a\\x0c\\xcb\\xaa\\xe3\\x49\\xc9\\x12\\xd3\\xa9\\xaf\\x0f\\x2d\\xdb\\x85\\x5a\\xc2\\x75\\xbe\\x8d\\x34\\xf3\\xca\\xb5\\x45\\xee\\x59\\xf6\\xef\\x3e\\xbf\\xde\\xa4\\xb8\\xb0\\x50\\x83\\xff\\x78\\x05\\x01\\x51\\x03\\xcc\\xb2\\x68\\x88\\xa1\\xb1\\x77\\x31\\x08\\xeb\\x01\\x22\\x99\\x84\\x81\\x02\\x0e\\x1d\\xdd\\x63\\x99\\x43\\x75\\x10\\x3a\\x4e\\x75\\xea\\xc0\\x30\\x4b\\x31\\x83\\x37\\x19\\x5f\\x41\\x84\\x0e\\x98\\x1f\\xd5\\x04\\xad\\x85\\xd0\\x78\\x4b\\x0f\\x57\\x93\\x1f\\xb7\\x42\\x63\\x1c\\x54\\x40\\x95\\xb2\\x6e\\x51\\xdc\\x30\\x55\\x09\\x93\\x8e\\x85\\x2f\\x50\\xc0\\x43\\xb3\\x09\\x9c\\x77\\xb3\\x4b\\x31\\x7b\\x67\\x02\\x65\\xd2\\x5b\\xb5\\xae\\xee\\xfb\\x95\\xf7\\xa3\\x22\\x7c\\xfa\\x40\\x13\\x0b\\x59\\x6b\\x7d\\xae\\x41\\x44\\x18\\x72\\x60\\x38\\x73\\x33\\xae\\x8e\\xd5\\x04\\x63\\xd7\\xbd\\x8d\\x2b\\x18\\xf3\\xe6\\x6e\\x32\\x83\\x86\\x31\\xd2\\x1e\\xec\\xf9\\x7f\\xce\\x5b\\x79\\x43\\xf1\\x76\\x25\\x99\\xa0\\x02\\x12\\xbd\\xff\\x1f\\x9c\\xfd\\x63\\xc0\\xcd\\x2e\\x8b\\xee\\xd2\\x90\\xf6\\x72\\x5b\\x57\\x68\\x0a\\xdb\\xec\\xa9\\xd4\\x0a\\xa3\\x15\\x9b\\x5a\\x08\\xe7\\x1e\\xa2\\xaa\\x5e\\xd9\\x1c\\xd9\\x5f\\xba\\x8a\\xcb\\xdb\\xfd\\x1f\\x2a\\x54\\x21\\xd5\\x40\\x77\\x19\\x28\\x59\\xf9\\xc3\\xca\\x8d\\xb6\\x89\\x9a\\x90\\x89\\x63\\x92\\x65\\x66\\x63\\xc0\\xc0\\x57\\x92\\xc8\\x45\\x89\\xe9\\xa1\\xd9\\x13\\xf1\\x69\\x61\\xaa\\x82\\x88\\x4c\\x0b\\x86\\xa3\\x5a\\xa6\\x02\\x88\\xad\\xf0\\x90\\x44\\x82\\x47\\x5d\\x20\\x4f\\xdf\\xc6\\xcc\\x28\\xb3\\xd1\\xea\\x47\\x94\\xdb\\x58\\xd2\\xb3\\x3d\\x80\\x30\\x83\\x85\\x4f\\x47\\xad\\x87\\x5e\\xa5\\x3f\\x40\\x24\\x30\\x17\\x69\\xea\\x62\\x1a\\x2f\\x58\\xf4\\x87\\xc9\\x87\\x39\\x55\\xfc\\x8b\\x13\\x7c\\x40\\x7e\\xf7\\xed\\xd8\\xd6\\xe8\\x63\\x81\\xcd\\x03\\x0c\\x62\\xb0\\xcc\\xc0\\xba\\x61\\x62\\x75\\xa4\\x4c\\x48\\x09\\x64\\xba\\x2d\\x78\\xc5\\xc7\\x00\\x22\\x83\\xf5\\xd8\\x48\\x84\\x8e\\x18\\x5f\\x96\\x05\\x08\\x77\\xb5\\x52\\x5e\\x6f\\x98\\x4a\\x91\\xf9\\x52\\x1b\\x45\\x8b\\x08\\x1d\\x43\\x50\\xcc\\x16\\x22\\x00\\xd4\\x3f\\x0f\\xd3\\x85\\xae\\x82\\x92\\xa9\\xa0\\x73\\x8b\\xc0\\xd8\\x1a\\x09\\x02\\xb7\\x72\\xf0\\xd2\\x48\\x05\\xaa\\xa9\\x8a\\x13\\x08\\xb4\\x14\\xb0\\x12\\x0d\\x13\\x01\\x58\\xf1\\x1b\\xf8\\x2d\\xdd\\x80\\x56\\x23\\xeb\\x47\\x3f\\xb5\\x4c\\x0f\\x3d\\xec\\xe5\\x8e\\x74\\x82\\xe2\\x3e\\x75\\x39\\x8d\\x3b\\xa8\\xbb\\x13\\x90\\xe7\\x0a\\xb1\\xb4\\x1a\\x3c\\xe6\\xd3\\x29\\x60\\x1f\\xe0\\xd0\\x0b\\x81\\x76\\xa4\\xc7\\x1d\\x32\\x79\\xe3\\x1c\\x69\\xc5\\xeb\\xc5\\x00\\x4d\\xc2\\xc4\\x84\\x30\\xfd\\x9a\\xda\\x95\\x9b\\x23\\xb9\\xf1\\x53\\x12\\x05\\x26\\xa6\\x99\\xa4\\x86\\x60\\xd3\\xc2\\x1e\\xd4\\xd4\\x48\\x26\\x1e\\x23\\xc1\\x45\\xaf\\x4f\\xfa\\xff\\x45\\x6c\\xf5\\x4e\\x5e\\x7a\\xef\\xa5\\xab\\x04\\x02\\xf3\\xf1\\xe8\\xb1\\xb8\\xc8\\x5b\\x72\\x38\\x3e\\xd8\\xf4\\x2e\\x42\\x62\\x38\\xfd\\x88\\x6c\\x0e\\xe5\\x30\\x17\\xe1\\x9a\\x2e\\xb7\\x19\\x11\\x1b\\x2b\\xc1\\x4f\\x15\\x77\\xc0\\x16\\x13\\x78\\x2b\\x32\\x28\\x40\\x98\\x29\\x23\\x70\\xee\\x49\\x38\\x26\\x98\\xba\\xf0\\xba\\xd9\\x42\\x4a\\xf3\\x1b\\xa4\\x74\\x47\\x7e\\x8c\\xda\\x79\\x24\\x46\\x10\\x48\\x2f\\x12\\xa4\\x50\\x87\\x73\\xd9\\xf0\\x25\\x8e\\x7b\\x13\\x06\\x26\\x21\\xd6\\xe9\\xd2\\x8c\\x8e\\xad\\xe0\\x36\\xb0\\xea\\xe2\\x59\\x55\\x1a\\x4b\\xdd\\xa5\\x8e\\x20\\xaf\\xe1\\x62\\xe1\\x11\\x74\\x79\\xe5\\x01\\xc7\\x05\\xa6\\x08\\x4d\\x20\\x95\\x6e\\xdc\\x50\\x16\\xab\\xba\\xeb\\x3e\\x33\\x81\\x68\\x17\\x0a\\x0b\\x99\\xfd\\x82\\x53\\x32\\x1d\\x4e\\x9e\\x81\\x94\\x28\\x63\\x1d\\xe4\\xae\\xc2\\xe5\\x6c\\x29\\x53\\x22\\xf4\\x22\\xaf\\xe8\\x30\\xf4\\x97\\x97\\xa1\\xf4\\x96\\xe3\\xe8\\x9c\\x99\\x2f\\xb6\\xeb\\x6a\\x88\\xad\\x30\\x7a\\xe8\\x4f\\x20\\xc2\\x5e\\x45\\x58\\xe4\\x00\\xe8\\x34\\x39\\xb4\\xd9\\x1e\\x42\\xa6\\xd3\\x35\\x41\\xea\\x16\\x79\\x05\\x29\\xfc\\x2a\\x3c\\x5f\\xd3\\xc4\\x93\\x65\\xf5\\xfa\\xce\\x33\\x73\\xa4\\x29\\xa1\\x48\\x00\\x19\\x60\\xde\\xf6\\xae\\xf5\\x07\\xce\\x30\\x15\\x38\\xfa\\xf1\\x68\\x10\\xb8\\x9e\\x2f\\x4e\\x44\\x22\\x0f\\x67\\xa1\\xd4\\xfd\\x58\\x6b\\xb8\\x3f\\x15\\xfa\\x4a\\x64\\xee\\x87\\xf0\\xe1\\x35\\x81\\x7c\\xe2\\xc9\\xde\\x4f\\xc5\\xf4\\x24\\x56\\xc0\\xd4\\xc4\\x13\\x2c\\xc3\\x70\\x12\\x6d\\xe9\\xf4\\x5d\\x2d\\x70\\x74\\x00\\xca\\xa5\\xea\\xe7\\xf2\\x85\\x62\\x86\\xeb\\x1e\\x2c\\x11\\xc6\\x62\\xa2\\x66\\x0e\\x67\\x83\\x2c\\x69\\x32\\x52\\x84\\x6e\\x32\\x57\\x59\\xd1\\x4e\\x1e\\x96\\x42\\x28\\xc7\\x66\\x06\\x20\\x45\\x07\\x8a\\x17\\x96\\x63\\x21\\xd8\\xb4\\x0d\\x5d\\xe1\\x38\\xf2\\x35\\xe6\\xfa\\x3f\\x3a\\x02\\xf0\\xaa\\xa2\\x71\\x71\\x0d\\xef\\x67\\x92\\x93\\x17\\xdd\\x4f\\xc4\\x0f\\x8d\\xe3\\x84\\x65\\x3c\\x10\\x4a\\x12\\x4d\\x9d\\x86\\xf9\\xcb\\x19\\x52\\x0d\\xc1\\x5a\\x3b\\x62\\xc8\\xae\\x12\\x1e\\x2a\\x27\\x5c\\x49\\x18\\x86\\x8e\\x7e\\xba\\xa4\\x29\\x39\\x2a\\x83\\x72\\x00\\x9f\\xfc\\x18\\xb5\\x21\\xee\\x12\\xb2\\x88\\xa3\\x60\\x94\\x56\\x73\\x76\\xfa\\x63\\xdb\\xa7\\x59\\x7e\\x96\\x62\\x91\\x93\\xd7\\xb5\\x61\\x13\\x82\\xdd\\x89\\x04\\xb1\\x36\\x83\\x80\\x91\\x86\\x4f\\xd8\\x2f\\xd0\\xca\\x50\\x16\\xec\\xfa\\xdb\\xf3\\x2d\\xc2\\x9d\\x83\\xa5\\xd9\\xf6\\xb2\\x0f\\xcf\\x3a\\x76\\x86\\x86\\x78\\xe2\\x85\\x35\\xac\\xc3\\x38\\x96\\x7e\\x13\\x02\\xa1\\x97\\x7d\\x86\\xbe\\xac\\x1d\\x01\\x47\\x69\\x2b\\x02\\xad\\x9b\\xf3\\x46\\x70\\x5e\\xec\\xa1\\x52\\xe5\\x2b\\x5f\\xf8\\x29\\x2d\\x72\\xd8\\x4e\\x00\\x86\\x26\\xe1\\x08\\xf7\\x45\\x39\\xb9\\x05\\xe0\\x10\\x29\\x3f\\x2d\\x4a\\xc1\\xd7\\x36\\x4a\\xa3\\xae\\x42\\x40\\x44\\xc2\\x91\\x5b\\x72\\x01\\x71\\x86\\x85\\x0e\\xf0\\x1f\\x81\\xe1\\x4d\\x69\\x43\\x1a\\xc3\\x89\\x7d\\x54\\x7e\\x86\\x35\\xa2\\x30\\x37\\x6a\\x99\\x72\\xbe\\x09\\x19\\xfe\\x4a\\x30\\x44\\x7f\\x29\\xa8\\x1b\\x94\\x92\\xdd\\x8d\\xc9\\x4d\\xc6\\xcd\\x5a\\x02\\x6f\\x9d\\x50\\xc7\\x33\\xc7\\x43\\xc2\\x56\\xd3\\xfa\\xb9\\x86\\x4e\\x16\\xc3\\xb2\\x13\\x4f\\x5e\\xf6\\x77\\xd3\\x92\\x21\\xc1\\xa3\\x1d\\xa3\\x04\\xb0\\x14\\x55\\xa9\\x99\\x92\\x38\\xbf\\xd6\\x0c\\x2a\\x0b\\xc7\\xe7\\xb7\\xc3\\xab\\xe2\\xaa\\x7e\\x27\\x4a\\xda\\xc9\\x9c\\xb8\\xbc\\x5c\\x3a\\xb4\\x23\\x68\\x44\\x05\\x4b\\xfa\\xa7\\x23\\xb8\\x2f\\xe5\\xba\\x0f\\xd5\\x25\\xeb\\x95\\x25\\xea\\xca\\x50\\x31\\x34\\x25\\x2b\\xae\\xa3\\x54\\xfd\\x96\\x09\\xaf\\x86\\x9e\\x0c\\xc3\\xab\\x1f\\xff\\xc8\\xad\\x0b\\xb4\\x2a\\xde\\x5e\\x1b\\x85\\x94\\x02\\xee\\x72\\x18\\xa9\\x6a\\x4c\\x5f\\x5c\\x18\\x9e\\x0f\\xa9\\xc2\\xab\\xa4\\xfd\\x2e\\x0b\\x53\\x96\\x0d\\xa7\\x87\\x03\\x0b\\x1a\\x8f\\x28\\x04\\x0d\\x07\\x0b\\xef\\x1d\\x3b\\x51\\xa0\\xb7\\x64\\xbe\\xb2\\x04\\x02\\x00\\x06\\xa9\\xaf\\x95\\xe2\\x67\\xa3\\x1a\\x3e\\x57\\x5b\\xd0\\x25\\x16\\x53\\x9d\\x36\\x82\\xf7\\x76\\xe6\\x7d\\xe3\\x76\\x3f\\x63\\xee\\x14\\xd1\\x47\\x08\\xa0\\x8d\\xc2\\x24\\x54\\x00\\xe4\\x20\\xb7\\x78\\xb6\\xef\\xe1\\x09\\xe8\\xf1\\xc8\\xa8\\x16\\x60\\x31\\xaa\\xe3\\x7c\\x45\\xe4\\x34\\x63\\x04\\x10\\xa1\\xf9\\x45\\xe8\\xb5\\xac\\xa9\\x8c\\x4d\\x4c\\xfb\\xe8\\x91\\x91\\xa5\\xf5\\xe8\\xa2\\x8b\\x82\\xcd\\x7a\\x21\\xc2\\x1a\\x07\\xd5\\x24\\xc6\\x74\\xdc\\x5c\\xde\\x03\\xab\\x72\\x09\\x6a\\x55\\xa3\\x8f\\x40\\x6d\\xd4\\x7e\\x41\\x11\\x65\\xf6\\x03\\x84\\x38\\x9a\\x9e\\x88\\xef\\x44\\x71\\xf2\\xf9\\x51\\x25\\xed\\x89\\x28\\x82\\xf7\\xd3\\x0e\\xc8\\x6a\\x4f\\x08\\x27\\x02\\xa5\\xa0\\x00\\x2a\\xaf\\x03\\xa4\\xac\\x6e\\x4f\\x65\\x83\\x9e\\x17\\x00\\xce\\xfd\\x5a\\xa3\\x19\\x11\\xbe\\xfb\\x5b\\x33\\xce\\x0b\\x52\\xe0\\x3e\\x53\\xd9\\x16\\x15\\xc9\\x32\\xca\\xfa\\xab\\x03\\x90\\xb7\\x09\\x3f\\xaf\\x17\\xab\\xd2\\xa5\\xdf\\x7c\\x64\\xa8\\x70\\xf0\\x57\\xfb\\x29\\xd1\\xb1\\x04\\x90\\x2a\\x6e\\xe3\\x53\\x95\\xa9\\x61\\xc1\\xc9\\xeb\\x72\\xa7\\xa0\\xf0\\x3c\\x80\\xef\\xf2\\x02\\xc3\\xa9\\x5a\\x60\\x63\\x07\\x40\\x9e\\x4a\\xaf\\x78\\x54\\x59\\x42\\x03\\x18\\x17\\x72\\x95\\xc1\\xf6\\xa4\\xd8\\xef\\x0a\\x8b\\x3f\\xa5\\xc4\\x28\\xb5\\x77\\x54\\x59\\x4d\\x12\\x7c\\x8c\\x76\\x4d\\x36\\xa4\\xf2\\x21\\x2c\\x71\\xba\\x10\\x04\\x60\\x33\\xdc\\x37\\x7d\\x85\\x51\\xfd\\xf0\\x61\\x79\\xfd\\xff\\xe0\\x2a\\x6e\\xde\\x70\\x83\\x5a\\xad\\xe4\\x94\\xdd\\x99\\x02\\xd6\\xa6\\x25\\xc0\\x24\\xcf\\xd5\\x66\\xa2\\xfa\\x93\\xe5\\x3d\\xae\\x48\\x8b\\xc1\\x8d\\x85\\x93\\x85\\xdf\\x71\\xab\\x4c\\xe5\\x93\\x7d\\xc8\\x93\\x46\\x3a\\xde\\x9c\\xf5\\x90\\x22\\x67\\xc5\\xe5\\x2b\\x9e\\xfd\\xd2\\x41\\xc5\\x58\\xd5\\x1c\\x44\\x06\\xe0\\x69\\xba\\xd2\\xcb\\xf4\\x14\\x1c\\xff\\x39\\x7f\\xa7\\x25\\x9f\\x50\\x43\\xe9\\xa9\\xa9\\xf1\\x7e\\xe3\\x37\\x99\\x37\\x22\\x11\\x41\\x8d\\x12\\x1e\\x65\\x3e\\x2b\\x41\\xb9\\x4c\\x88\\xa5\\xe4\\xbe\\x02\\x60\\x40\\x7c\\xad\\xe2\\x00\\x5e\\x59\\x90\\x3b\\x1c\\x15\\x8f\\x16\\xa5\\x65\\x48\\xb9\\x93\\x05\\x4a\\x9b\\xd2\\x0d\\x91\\x18\\x8b\\x13\\x62\\x52\\x24\\x49\\x52\\x44\\x23\\x77\\xbb\\x4d\\x91\\xc6\\x04\\x2b\\xea\\x32\\xd0\\x60\\xdc\\x66\\x9d\\xc0\\x08\\xa0\\x13\\x0f\\x46\\xde\\xe3\\x0b\\xcc\\x1f\\xc8\\xdb\\x24\\xad\\x4e\\xc6\\xfb\\x33\\x6b\\x63\\x45\\xec\\x12\\xa6\\x45\\x17\\x93\\xa8\\x87\\xf6\\x43\\xc4\\x52\\x38\\x0a\\x60\\x38\\xf4\\xb9\\x43\\x57\\x05\\x26\\xe8\\x9c\\x49\\x1c\\x14\\x22\\xc0\\x61\\xef\\x13\\xd0\\x10\\x81\\xaa\\xe3\\x17\\xfc\\xea\\xac\\xfd\\x24\\xfb\\xf4\\x80\\xa9\\x22\\xe8\\x90\\xd7\\x02\\x04\\xec\\x27\\x5e\\x43\\xe9\\x90\\x61\\xa3\\x64\\x8d\\x65\\x10\\xc9\\x4d\\x8a\\xc3\\xf2\\x45\\x83\\x13\\xd8\\xa9\\x0c\\x64\\xea\\x39\\xc1\\xa4\\xdc\\x97\\x65\\x26\\xd9\\xc1\\x75\\xba\\x60\\xfe\\x03\\x04\\xf4\\xfc\\x18\\x70\\x12\\x5c\\x00\\x10\\x61\\x20\\x62\\x46\\x20\\x06\\x44\\x87\\x63\\x3c\\x86\\x9a\\x61\\x99\\x11\\xd8\\x7a\\x25\\x5a\\x3f\\x65\\x91\\x68\\x31\\x0e\\x45\\x85\\x51\\x83\\x4a\\x7a\\x7b\\x59\\x6e\\xdf\\x31\\xeb\\x03\\xde\\x2d\\xa1\\x5f\\xf5\\x70\\x18\\xac\\x4e\\xc7\\x87\\xb6\\x3d\\x1a\\xdf\\x5a\\x1e\\x75\\xd7\\x05\\x26\\x82\\x5a\\x67\\xd5\\x61\\xef\\xce\\xf2\\xa4\\xbc\\x41\\x45\\xc4\\xa6\\xf0\\xd0\\xee\\xe9\\x53\\xa5\\xfc\\x6c\\x02\\x01\\x46\\x31\\x95\\x79\\xc4\\x8a\\x2c\\x20\\xb9\\x05\\x5a\\xe4\\x23\\x94\\x60\\x84\\x7d\\xe4\\xd8\\x29\\xae\\x4a\\x24\\xc0\\x9a\\xb7\\xf8\\xc2\\xd0\\x1a\\x0b\\x1f\\xfd\\xcc\\x24\\x83\\xc3\\x4f\\xc4\\x94\\x83\\xa3\\xe2\\xc4\\xac\\x09\\xac\\x02\\x2e\\x92\\x61\\xd2\\x9a\\xab\\x10\\x89\\x98\\xe8\\xa0\\x81\\x79\\x45\\xe5\\xc5\\x53\\xeb\\x61\\x9e\\xe4\\x17\\x91\\x9e\\xb5\\x38\\xfa\\x4b\\x33\\xa0\\xbd\\x72\\xb2\\xf2\\x3c\\x67\\x82\\xe1\\x78\\x86\\x40\\x4b\\xb0\\xed\\x7c\\xa8\\x47\\x08\\xc8\\xdb\\xc8\\x98\\x21\\x74\\xc9\\xab\\x24\\x31\\x6a\\x49\\xff\\xb7\\xb4\\x75\\xd4\\x31\\x65\\x07\\x77\\x69\\xb0\\xe7\\x4c\\x1c\\xe5\\x57\\xf0\\x18\\x92\\x44\\x99\\x85\\xb4\\x00\\xc9\\x02\\xb4\\x04\\x3b\\xe1\\x3a\\xfa\\x1a\\x58\\xdf\\x7f\\x04\\x85\\xfd\\x28\\x58\\x9b\\x8f\\xaa\\x06\\xc2\\xc7\\xe0\\x94\\x0b\\xed\\x8e\\x21\\x37\\x4f\\xa0\\xf2\\x62\\x0f\\x51\\x78\\x1b\\x67\\x77\\xdb\\xf1\\x37\\x2c\\x29\\xdd\\x6a\\x58\\x5c\\xe0\\x01\\x07\\x34\\x6a\\x6c\\xf3\\x60\\x05\\xa7\\x12\\x16\\xfd\\xc2\\x8e\\x21\\xb2\\xe7\\xea\\x47\\xea\\x30\\xe3\\xd2\\xfd\\x22\\x40\\x08\\x09\\x8a\\x81\\x01\\x83\\xcd\\x48\\x89\\x3f\\x9f\\xc9\\x8b\\x0a\\xa9\\x6f\\x20\\x9b\\xc2\\x2c\\x12\\xe2\\xd4\\xd4\\xed\\x63\\x77\\xc5\\x83\\x58\\xbd\\x0e\\x84\\xe8\\x97\\xbf\\x5b\\x19\\x44\\x13\\x42\\x05\\x2e\\x99\\x12\\x69\\xa9\\x92\\x0e\\xf4\\xc6\\x23\\x4c\\x7c\\x12\\x41\\x8f\\x4b\\x2a\\x7e\\x73\\x32\\xd2\\x98\\xd8\\x7d\\xdf\\x20\\x9e\\x7e\\xe4\\x4c\\x67\\x3e\\x90\\x94\\xfa\\x9b\\x39\\x15\\xb1\\xb2\\xd3\\xf3\\xf5\\x48\\xe4\\xb1\\x6d\\x69\\x97\\x36\\x1e\\x84\\x69\\x8f\\x19\\x58\\x1b\\xb0\\xfc\\xf7\\x6f\\xfd\\x30\\xba\\x8a\\x71\\xbc\\x04\\x48\\xe8\\x0b\\x1f\\xf1\\x07\\x77\\x48\\x92\\x51\\xac\\x74\\x6b\\x33\\x0e\\x06\\xf4\\x47\\x49\\xa5\\x05\\xef\\x2a\\x50\\x25\\x1e\\x46\\x8f\\x78\\xc4\\x70\\x59\\xb8\\xa3\\xd4\\x87\\x92\\x16\\x45\\x38\\x8a\\x90\\x48\\xe8\\xf2\\xf3\\xc7\\xdb\\x44\\xbf\\xb1\\xcc\\x60\\x09\\x7e\\xae\\x02\\xc2\\xa0\\xbb\\x42\\xfb\\x42\\x68\\x2e\\xed\\xf6\\x4b\\x18\\xc4\\x55\\xdd\\xe2\\xc0\\xcc\\x29\\x35\\x4a\\xaa\\x02\\x2e\\x3c\\x66\\xed\\xfe\\x09\\xbc\\x8d\\x58\\x53\\xf0\\x71\\x3c\\x5c\\x2f\\x10\\x6c\\x81\\x38\\x34\\x59\\x4f\\x24\\xe8\\x76\\x46\\x59\\xc3\\xc9\\xdb\\x3a\\x0b\\xbd\\x90\\x63\\x35\\x32\\x00\\x96\\x57\\xec\\x62\\xd2\\x13\\x64\\x3a\\x32\\x4f\\xd9\\x11\\xf2\\x78\\xb4\\xe0\\x6e\\x97\\x9c\\xca\\x36\\xbf\\xb0\\x9a\\xf5\\xb2\\x80\\x64\\xc9\\x39\\x75\\xaa\\x14\\x80\\xf0\\x41\\x25\\x43\\x00\\x7e\\x12\\x97\\x6a\\x84\\xdb\\xdb\\xe3\\xec\\xd7\\x64\\xe1\\xc3\\xb9\\xbc\\x21\\x9c\\x02\\x11\\x01\\x60\\xf7\\x46\\x07\\xb4\\x44\\xb9\\x91\\x35\\x61\\x96\\x48\\xe5\\xcc\\xa0\\xda\\x45\\x62\\x48\\x08\\x3a\\x6c\\xf5\\xea\\xab\\xa1\\xd1\\x2a\\x73\\x89\\xa3\\xbf\\x10\\x0e\\x2d\\x81\\x75\\xfa\\xd0\\x84\\x74\\xfc\\x78\\xe8\\x2d\\xda\\xbc\\x59\\x7d\\x43\\x28\\x3f\\xd6\\x84\\x66\\xab\\xde\\xbf\\xa4\\x2d\\x0e\\xa0\\x69\\x1f\\xe5\\x65\\xf7\\xa0\\xba\\x0e\\x05\\x47\\x9d\\x9d\\x3c\\xbb\\x33\\x05\\x4f\\xff\\xa3\\x57\\x13\\x68\\x60\\xd1\\x9c\\x00\\x98\\x60\\x97\\xfb\\x97\\x2d\\xb2\\xfc\\x90\\x0b\\xf9\\x93\\x5c\\x7b\\xd0\\x32\\xe3\\x4a\\x00\\x38\\x10\\x2a\\xe2\\x3d\\x82\\xa1\\x2b\\x65\\x82\\x8c\\x66\\x72\\x22\\x6b\\x5f\\xca\\x37\\x57\\x75\\x09\\x9c\\xcd\\xce\\x38\\xb9\\xee\\xf5\\x70\\x92\\x81\\xe8\\x82\\x83\\x13\\x67\\x3c\\x3e\\x64\\x73\\x44\\x2a\\x30\\xaa\\x30\\x6c\\x14\\x0e\\x9c\\x04\\x35\\x68\\x6d\\x30\\xc1\\xe0\\x4d\\x20\\xc0\\x20\\x1f\\xa3\\x2c\\x4f\\xc1\\x08\\xd8\\x1a\\xab\\xa3\\x1c\\xb2\\x9b\\x66\\x3e\\xb0\\xe2\\xb7\\x3d\\x04\\x2a\\x9e\\x95\\xe3\\x05\\x3e\\x24\\x49\\x02\\xc9\\x29\\x33\\x3c\\x88\\xfb\\x8c\\xae\\xf2\\x42\\xd3\\x35\\x75\\xa3\\xc6\\xa4\\x49\\x2c\\xd2\\xf8\\xf4\\x14\\x0c\\x78\\x14\\xa8\\x9d\\x13\\x63\\x72\\x2d\\x8f\\x8b\\xfa\\xcf\\x2a\\xda\\x06\\x3b\\x73\\xbc\\x6b\\xf0\\xbc\\x90\\x18\\xc6\\xa1\\x02\\x49\\x6f\\x09\\x40\\x1b\\x63\\xcc\\x68\\x94\\x58\\xe0\\xdd\\xd5\\x0e\\x4a\\x94\\xcb\\x3b\\x3c\\x8b\\x4c\\x60\\xb0\\xa4\\xcf\\x38\\x4f\\x47\\x01\\x8a\\xf6\\x57\\x09\\xca\\xa2\\x94\\x3f\\xcc\\x79\\x0a\\x21\\x6b\\x91\\xfb\\x1a\\x3f\\x2c\\x31\\x08\\x2c\\xc9\\x55\\xdf\\xba\\xbe\\x98\\x70\\x3b\\x0e\\x1a\\x19\\x69\\x7c\\x83\\x56\\x9f\\xd1\\x73\\x1b\\x58\\xd2\\x1e\\xe4\\x73\\x3b\\x31\\x6b\\xef\\x2c\\x4e\\x65\\x67\\x60\\x58\\x3e\\xc2\\xd0\\x71\\x80\\x13\\xe5\\xa6\\xfd\\x2f\\x19\\xcc\\x2f\\x8b\\xf2\\x4d\\xe8\\xe3\\x73\\x59\\x5d\\xa5\\x30\\xba\\x12\\x41\\x7e\\x6b\\x77\\xb8\\x22\\x92\\x76\\xad\\x04\\x68\\x5b\\x66\\x09\\x5a\\xcd\\x3a\\x8b\\x22\\x46\\x64\\xa3\\xaa\\x85\\x8d\\xae\\xed\\xb1\\xde\\x8b\\x50\\x8a\\x03\\x44\\x4c\\x15\\xca\\x92\\x88\\x29\\x1d\\xb0\\xeb\\x0a\\x60\\xf8\\x3d\\xf3\\x45\\x27\\xc8\\xb8\\x8f\\x6e\\x54\\xaf\\xb0\\x55\\x1a\\x6a\\xf1\\x3e\\x2a\\x2a\\x81\\x2b\\xcf\\x23\\x48\\x15\\xb1\\x17\\xc0\\x18\\x67\\x9d\\x96\\x7f\\x23\\x61\\xd8\\xd1\\x5b\\x0d\\x8e\\x8d\\xb1\\x36\\xdc\\x98\\x9d\\x63\\x3c\\x46\\x52\\x93\\x46\\x67\\x31\\x72\\x65\\x23\\xf8\\x8d\\x2c\\xff\\xe9\\x02\\xb8\\x9e\\xd5\\xb6\\x32\\xc8\\x46\\x9d\\x05\\x74\\x00\\x8f\\x59\\x79\\x8d\\x49\\xea\\x59\\x24\\x48\\x91\\x27\\x3d\\x0b\\x72\\x36\\x73\\x1f\\xf6\\x47\\xb1\\xb4\\xc1\\x21\\xc1\\x89\\x0d\\x42\\xc6\\x81\\x70\\x58\\xb1\\xe0\\x35\\x83\\x92\\xef\\x57\\x5a\\x55\\xa8\\x81\\x3d\\x85\\x0f\\x39\\xa8\\xf2\\x91\\x0e\\x9e\\x03\\x9a\\x7a\\xa4\\x93\\x29\\x43\\x9a\\x52\\xcd\\xc2\\x63\\x94\\xa9\\xc2\\x60\\x04\\x1b\\xa0\\x97\\x81\\x44\\xf0\\x57\\x13\\x59\\xba\\xfb\\x89\\x99\\x1d\\xce\\x86\\xc7\\x8b\\xa3\\x39\\x66\\x91\\x07\\xc2\\x41\\x2a\\x2f\\xf3\\xac\\xd2\\x13\\xa3\\xa2\\xab\\x11\\xde\\xc4\\x86\\x49\\x84\\x7a\\x74\\x60\\x79\\xa2\\xff\\xb3\\x83\\x02\\xa5\\x81\\x15\\x65\\xa0\\x19\\x92\\x85\\x28\\x9a\\x00\\xc2\\x94\\xed\\xb4\\x43\\x24\\x3a\\x2f\\x45\\x78\\x54\\x85\\x85\\xd0\\x8f\\x50\\x69\\xaa\\x27\\xa1\\xa4\\x31\\x54\\x65\\xc0\\x8f\\xed\\xb4\\xc8\\xb5\\xd3\\x5d\\xdb\\x5b\\x1e\\x7a\\xef\\x25\\xb3\\x49\\x29\\x01\\x7d\\xb4\\xb6\\x86\\x7b\\xb6\\x88\\x7e\\xad\\xa8\\xd1\\xe5\\xd0\\x24\\x18\\x0c\\x95\\x07\\xf8\\x2a\\x6e\\x7d\\xa9\\xec\\xa8\\x37\\x99\\x94\\x1e\\x80\\x7b\\xca\\x70\\x36\\x53\\x4f\\x81\\x58\\xc7\\x49\\x10\\x20\\x80\\x31\\xe8\\x28\\x50\\xde\\x1d\\x11\\x92\\x28\\xaf\\x40\\xfd\\xa8\\xc8\\x03\\x9d\\xb0\\x6e\\xe7\\x70\\xfe\\x64\\x90\\x83\\x3e\\x94\\xc0\\x3b\\x8d\\x33\\x8d\\x29\\xcb\\x5a\\xb3\\x91\\x5b\\xc0\\x01\\x9b\\xfa\\x13\\xe2\\xf5\\x90\\x2e\\x7f\\x6f\\xd2\\x35\\x23\\x5a\\x9c\\x8b\\x4a\\x2b\\xca\\xb8\\x96\\x0a\\x37\\x94\\xec\\x35\\x82\\xf6\\xa3\\xa0\\x88\\x6f\\xbd\\xbd\\x3c\\x43\\x22\\x94\\xac\\xcc\\x74\\xe8\\x77\\xee\\x2a\\xdb\\x20\\x3d\\x95\\x50\\x4c\\x48\\x59\\x65\\x51\\x43\\x46\\x83\\x78\\x0c\\xb9\\x17\\xb4\\xcd\\xe7\\xec\\x6b\\xc9\\x8c\\x4d\\x3e\\x0a\\x71\\x50\\x3c\\x84\\x0e\\x91\\xed\\x39\\x89\\x82\\x49\\x69\\xd6\\xae\\x34\\x5d\\xa6\\x57\\xd6\\xc9\\x88\\x2e\\xa2\\xa2\\xb7\\x4f\\x1b\\x15\\x25\\x63\\x8b\\xe9\\x3d\\x12\\x60\\x9b\\x59\\xcd\\x64\\xbf\\x58\\x94\\xa7\\x04\\xe2\\x19\\x12\\x57\\xda\\x27\\xd3\\xc6\\x7a\\xb3\\x0c\\xa5\\xce\\x0b\\xee\\xf5\\xcf\\x82\\x3e\\xcb\\xb9\\x81\\x9b\\x06\\x12\\xb5\\x95\\x8c\\x68\\xc7\\x84\\x23\\x09\\x77\\xc7\\xf5\\xbe\\xf9\\x1f\\x28\\x85\\xf6\\x8e\\x21\\x19\\xce\\x58\\x96\\xed\\x78\\xe3\\x23\\x8f\\x9e\\x05\\x47\\xa9\\x4d\\xf4\\x08\\x1b\\xe6\\x48\\xa7\\x3e\\x3d\\x51\\x19\\x0f\\xb3\\xfc\\x4f\\x4d\\xe6\\x05\\x79\\x2b\\x76\\xc9\\xfc\\xca\\x90\\x6a\\x1c\\x1e\\x72\\xe4\\x17\\x8d\\x73\\x81\\x91\\x59\\xaa\\x41\\x85\\x23\\x72\\x61\\x9e\\xe7\\x66\\x84\\xec\\x27\\xe7\\xbd\\x79\\x4c\\x11\\x46\\x31\\x14\\x22\\x3a\\x2a\\x8b\\x16\\x20\\xa6\\x22\\x81\\x04\\x5c\\xa0\\x67\\x4f\\x25\\x59\\x24\\xc2\\xd5\\x05\\x2c\\x75\\x11\\xe5\\x83\\xe3\\x90\\x27\\xb0\\xf6\\x56\\xad\\x36\\xab\\xd0\\x06\\x8c\\xa2\\x06\\x3c\\xa1\\x93\\x3e\\x8d\\xe5\\x23\\xac\\x5c\\x69\\x35\\x81\\x20\\xbf\\x92\\xa2\\x2a\\x19\\xed\\xa8\\x80\\x5a\\xf8\\x45\\x84\\xaf\\x3f\\xc3\\xa1\\x14\\x52\\xf6\\x52\\x4f\\x0f\\x4e\\xee\\x40\\x0c\\x2d\\x9e\\xb2\\x2d\\x43\\x10\\x35\\xd3\\xc4\\x01\\xfd\\xdf\\x1a\\xfe\\xd2\\xcc\\x27\\xbb\\x92\\x4b\\x45\\x8f\\xc9\\xa1\\xaa\\xa4\\xc4\\x2a\\xa3\\xd8\\x99\\x4b\\x49\\x95\\x34\\xfc\\x07\\xe3\\xce\\x86\\x48\\xa2\\xfd\\xdd\\x75\\x62\\x75\\x38\\x4e\\x7e\\xc7\\x92\\x67\\xc0\\xad\\x29\\x72\\x46\\x8d\\x1a\\x0a\\x29\\xd3\\x53\\x82\\x7e\\x07\\x9b\\xcb\\x51\\xbe\\xaa\\xb4\\xcc\\xa2\\x1c\\xe1\\xd3\\x07\\xe4\\x46\\x26\\xc8\\x54\\xce\\xa0\\x1f\\xc1\\xe4\\xdc\\x37\\xd0\\x80\\xa9\\x48\\x59\\x53\\x8f\\xab\\xf1\\x08\\x16\\xa9\\x66\\x58\\x0a\\xd8\\xc4\\xb3\\x8c\\xa8\\x09\\x8f\\x1e\\x8f\\xa3\\x9b\\x73\\xfd\\x00\\xc1\\xd1\\x62\\xd0\\x9b\\xad\\x95\\xed\\xd8\\x15\\x8d\\xc4\\x09\\xb1\\x85\\x79\\x43\\x03\\x25\\x2e\\x12\\xd6\\x0b\\x74\\x3a\\x58\\x97\\xc1\\x5e\\x6b\\x0a\\xc3\\x53\\xc8\\x41\\x49\\x70\\x3f\\xeb\\x24\\xe0\\x37\\x31\\x3e\\xb0\\x84\\xb0\\xdc\\x5a\\xa0\\x98\\xd8\\x04\\x99\\xc1\\xaf\\xb9\\x1e\\xea\\xc7\\xd0\\x4b\\xcb\\x03\\x61\\x4e\\x19\\xd4\\x61\\x7d\\xbe\\x62\\x33\\xfb\\x4b\\xff\\xc9\\xee\\x24\\x97\\xac\\x64\\x4f\\x3e\\x2b\\x30\\x05\\x63\\x51\\xe3\\xd5\\xdf\\x49\\x4b\\xd6\\x15\\xea\\xa5\\xeb\\xb1\\x98\\x00\\x51\\x90\\xeb\\x28\\x9f\\xbd\\x78\\xf1\\x04\\x6f\\xbf\\x15\\x84\\x0e\\x81\\x95\\x71\\x95\\x49\\x78\\xf2\\x79\\xb3\\x1f\\x72\\x22\\x7a\\x71\\x6f\\x22\\x2d\\x88\\xa7\\x88\\xcb\\x0b\\xa0\\x8d\\x26\\x31\\xc0\\x69\\x60\\x0f\\x02\\x28\\xdf\\xc2\\x4b\\xb0\\x01\\x05\\x88\\x5f\\xbb\\xbf\\x52\\xab\\xd8\\x0a\\xb7\\xd2\\x48\\xb2\\x20\\xa2\\xf7\\x44\\x2c\\xd1\\xc6\\x05\\xd7\\x31\\x26\\xf2\\x3a\\x89\\xb7\\x0d\\x76\\x60\\xb8\\x8b\\x12\\xb4\\x1a\\x07\\x72\\x3e\\xdb\\x35\\xd0\\x84\\x66\\x20\\x01\\x39\\x64\\x80\\x07\\xa1\\x95\\xc2\\x01\\xa8\\x12\\x91\\x36\\x3d\\xec\\x61\\xcf\\x22\\x8f\\x6e\\x4c\\x81\\x86\\x46\\x26\\x6d\\x08\\x86\\xab\\x9d\\x4c\\x3d\\x6e\\x2e\\x35\\x8a\\x30\\xba\\x03\\xef\\xeb\\x00\\x6e\\xca\\xe4\\x9b\\xb1\\xa8\\x89\\x27\\xe1\\x60\\x5b\\x76\\x78\\x8e\\x09\\x27\\x80\\x3d\\x04\\x9b\\x74\\x2a\\x27\\x23\\x42\\x2e\\x08\\x19\\xf6\\xc0\\x3a\\x82\\x25\\xbc\\x99\\x06\\x12\\x1c\\x53\\xe0\\x0e\\x3f\\xb0\\x3a\\x59\\xc3\\x6e\\xd6\\x84\\x37\\x42\\xe9\\x47\\x64\\x23\\x1b\\x14\\x05\\xde\\xff\\x42\\x68\\x4b\\xe7\\xf4\\x2b\\x71\\xb8\\x13\\x02\\xd2\\x88\\x3a\\x1f\\x58\\x38\\xad\\x21\\x02\\xaf\\x18\\x43\\x79\\x59\\x59\\x95\\x68\\x2f\\x5e\\x67\\x04\\x1d\\xad\\x50\\x75\\x4f\\x0f\\xde\\xb2\\xbb\\xd2\\x6d\\xd5\\xcd\\x31\\x29\\x6a\\xe8\\xba\\xff\\x18\\x91\\x03\\xd2\\x0d\\xec\\xd5\\xc0\\x9a\\x4d\\x88\\x24\\x6a\\x21\\x45\\xd4\\x41\\x79\\xf3\\xe9\\x75\\xc0\\x7a\\x36\\xa6\\x01\\xc0\\x89\\x96\\x7e\\x89\\xd3\\x9d\\xd0\\xf7\\xc2\\x6c\\x35\\xb2\\x8e\\x9b\\xad\\x33\\x41\\xdb\\x96\\x36\\xce\\xdb\\x35\\x4c\\xf7\\x68\\xf6\\xeb\\x37\\x46\\x47\\xba\\x47\\xf9\\xa0\\x22\\xdd\\xea\\x80\\x38\\xf9\\x40\\x2b\\x43\\x20\\xfe\\x6d\\x41\\xe3\\xca\\xf8\\x78\\x0c\\xe6\\x7f\\x23\\xe1\\x81\\xa8\\x3c\\xe0\\xb4\\x1d\\x2c\\x64\\xf5\\x11\\xb2\\x11\\xe4\\xbf\\x93\\x76\\x8c\\xcf\\x45\\xe8\\x5e\\x24\\xd4\\xdd\\xd3\\xa5\\x5a\\x08\\x96\\xbc\\x73\\xc5\\x99\\x3d\\x81\\xdb\\xfc\\xca\\xd1\\x5e\\x82\\x25\\x4f\\x00\\xb3\\x1a\\x4f\\xc3\\xf7\\xe4\\x1b\\xde\\xb6\\x23\\xcd\\x90\\x1c\\xb1\\x08\\x2f\\x86\\x44\\xe3\\x2e\\x9a\\x20\\x8a\\x46\\x87\\xb1\\xc0\\x7d\\xa8\\xc0\\x72\\x3a\\x69\\x59\\x8c\\x29\\xb3\\x73\\xee\\x7d\\x2c\\xdb\\x9d\\x3e\\xfc\\x7e\\x89\\x77\\x78\\x08\\xf0\\x69\\xc7\\x3b\\xd7\\x23\\xaf\\x7b\\x33\\xa4\\xc3\\x5e\\xa0\\xdd\\xee\\xad\\xe9\\xbf\\x2d\\xe9\\x4d\\x08\\x66\\x3d\\xe5\\xef\\xba\\x87\\x2a\\xd2\\xda\\x96\\xa6\\xcb\\x27\\x20\\x5a\\xb3\\x0c\\x62\\xa1\\x0b\\xc5\\x7a\\xa3\\xe0\\xa6\\x05\\xc5\\xa7\\xda\\x11\\xad\\x01\\x42\\x66\\xa8\\xa4\\xd9\\x81\\xe3\\x46\\x72\\x19\\x75\\xf2\\xe8\\x62\\x18\\x9f\\x48\\xb7\\xb0\\x78\\x11\\x51\\x38\\x55\\x80\\x98\\xe9\\x41\\x96\\x9f\\x3c\\x02\\x0c\\x5f\\x28\\x89\\x42\\x41\\xa4\\x53\\x04\\x40\\x07\\xaf\\x68\\x96\\x9f\\xac\\x1f\\x96\\xdb\\x25\\xb6\\x9e\\xf5\\x04\\xae\\xa1\\xb6\\x8e\\x18\\x90\\x23\\x7f\\xa3\\xb1\\x9f\\x72\\x8f\\x78\\x3e\\x1f\\x73\\x8b\\x41\\x22\\x95\\x7c\\x81\\x59\\x96\\x73\\xf3\\xa1\\x85\\xa1\\x5f\\xa7\\x33\\x31\\xfd\\x01\\x0c\\x2e\\x28\\x58\\x41\\xfe\\x3a\\x61\\xd5\\xee\\xf5\\x40\\xfa\\xb1\\x19\\xba\\xa4\\x57\\x38\\xdd\\xa4\\x94\\x38\\x1b\\xd4\\x0c\\x89\\x8f\\x06\\x33\\xc4\\x10\\x0d\\xa3\\x84\\x8f\\x91\\x24\\x01\\x03\\x38\\xeb\\x00\\x27\\xc8\\xa1\\x47\\x82\\xe8\\x62\\x67\\xd3\\x18\\xfb\\x9b\\x44\\xb0\\xe7\\xc8\\x59\\x16\\x3a\\x11\\xd1\\xcb\\x6d\\x68\\xdd\\xaa\\x6a\\x1e\\x00\\x55\\x97\\x85\\x68\\xb7\\x1e\\x32\\x6c\\x71\\xb7\\xe5\\x1c\\x73\\x1c\\xff\\x54\\x68\\xba\\x07\\x6a\\x4b\\xf0\\xda\\x69\\x94\\x78\\x00\\x82\\xdf\\xcb\\x19\\x38\\x57\\xe0\\x78\\x08\\x09\\x8a\\xd9\\xfd\\xb4\\xe4\\x25\\xd7\\x5f\\x35\\xf7\\xcb\\xa0\\x8d\\xf4\\x82\\x05\\xd7\\x18\\x3e\\x7e\\x43\\xa2\\x9a\\x66\\x11\\x1d\\x8a\\x44\\x85\\x14\\xd9\\x5a\\x5b\\x24\\x81\\x28\\x34\\xbc\\x62\\x8c\\x08\\xa2\\x95\\x9b\\x78\\x06\\x4e\\x61\\xce\\xc6\\x25\\x0d\\xa1\\xeb\\xc6\\xb6\\x17\\x58\\xd5\\x2f\\x2e\\x41\\xab\\x69\\x86\\x95\\x22\\xa9\\xb4\\xc1\\xe2\\x90\\x91\\x98\\xb8\\x90\\x39\\x28\\x32\\xd1\\x22\\x8f\\xcc\\x51\\x42\\x52\\x92\\xa5\\x47\\xe4\\x33\\xbb\\x93\\x6f\\xe2\\xa9\\x8c\\x10\\x60\\x8b\\x40\\xa9\\x3c\\xaa\\xe4\\x02\\x24\\x44\\x34\\x3c\\x15\\x5e\\xac\\xfe\\x9a\\x1c\\x3a\\x69\\xe4\\x83\\xd6\\x22\\x9d\\x60\\xa1\\x9c\\xae\\x5b\\xb1\\x54\\x6a\\x3f\\xb6\\x58\\xd6\\xb2\\xe9\\x34\\x56\\xf4\\x8c\\x3d\\x9c\\xc4\\x91\\xdf\\x37\\x91\\x14\\xcb\\xe4\\xa0\\xfc\\x46\\xcb\\x1c\\x06\\xe5\\xae\\xfd\\x07\\x8b\\xa5\\x4a\\xd6\\x5d\\xeb\\xc9\\x4c\\x8c\\x89\\xa0\\x13\\xa7\\xaf\\x8c\\x2c\\xd5\\x3e\\xae\\x05\\x63\\x26\\x55\\xd1\\x40\\xcf\\x91\\x1f\\xa8\\x6f\\x64\\x70\\x66\\x4a\\xec\\xac\\xd5\\xf1\\x17\\xfc\\x79\\x83\\x54\\x5c\\x23\\x34\\x6a\\xa8\\x68\\x12\\x20\\xed\\x3a\\xa6\\xe2\\x59\\x36\\x26\\xbc\\x04\\xce\\x91\\x4d\\x2c\\x0a\\x7f\\xa1\\x66\\x71\\x75\\x7c\\x7c\\x0d\\xe0\\x97\\x8c\\x8a\\x62\\xb2\\x0d\\x4e\\xd9\\x21\\x66\\x58\\xa5\\xef\\xd7\\x80\\x87\\xd8\\x58\\xbe\\x40\\x2a\\xe6\\xd9\\x20\\x7d\\xe8\\xc0\\x87\\x19\\xa4\\xc9\\xcc\\x62\\xe0\\x57\\xfc\\xff\\x8b\\x28\\x12\\x31\\x6b\\x09\\xd1\\xda\\x20\\x7e\\xf7\\x65\\x84\\x12\\x11\\x3b\\x16\\x40\\xc9\\x13\\xc1\\xef\\x06\\x42\\xa6\\x64\\x40\\xab\\x5d\\x29\\x15\\xd9\\x00\\x2d\\x1b\\xdc\\x79\\xad\\x68\\x0e\\x21\\x71\\xdb\\xd7\\x81\\xb5\\xbd\\x49\\x1c\\x7d\\x49\\x62\\xaa\\xd9\\x84\\xe4\\x1c\\x0c\\x8c\\xb7\\xf3\\xba\\xcf\\x65\\x90\\xa8\\xb8\\x34\\x20\\x7d\\x87\\x79\\xde\\x0d\\x44\\xf0\\x33\\x65\\x20\\xec\\x30\\xaa\\x39\\x98\\x82\\xb5\\x6f\\x85\\xab\\x5d\\x03\\xfe\\xf1\\x18\\x5c\\x68\\x16\\x89\\x89\\xc3\\x1f\\x4b\\xcc\\xf6\\xd1\\x89\\x72\\xe2\\x7a\\xd1\\x64\\xc7\\xbd\\x6d\\xb4\\xd7\\xc3\\xce\\xef\\xa5\\x80\\x21\\xf4\\x28\\xd7\\x3b\\xa5\\x89\\x20\\x2b\\x8b\\x6c\\x0d\\x38\\xcb\\x6d\\x41\\x32\\x09\\x1d\\x51\\xd7\\x1a\\x4b\\x29\\xbb\\xa4\\xac\\x56\\x88\\x01\\x6a\\xcb\\x6f\\x52\\x0e\\x0f\\x01\\x14\\xad\\xd3\\xcc\\x14\\x34\\x21\\x71\\x8d\\x2f\\x5c\\x6f\\x80\\x33\\x64\\xcd\\x9e\\x95\\x5c\\xea\\x09\\x47\\x41\\xc3\\xa9\\x43\\xeb\\xe6\\x5c\\xf2\\xe0\\x04\\x22\\x87\\x08\\x18\\x07\\xcd\\x75\\xb0\\xd0\\xc4\\x71\\x15\\x90\\x87\\xa5\\x61\\xd2\\x25\\xd1\\x3b\\xfb\\x7f\\xeb\\x3c\\xc3\\xf4\\x11\\x23\\x26\\x48\\xd7\\x48\\x30\\x39\\x33\\xc2\\x22\\x93\\x29\\x64\\x12\\xee\\xf7\\x45\\x38\\x48\\x05\\x5a\\x12\\x01\\x4b\\x57\\x4e\\xc0\\x7a\\x63\\x5d\\x16\\x99\\x5f\\x07\\x0f\\xe4\\xed\\x12\\x4b\\x32\\x4b\\x0e\\xe5\\xbd\\x84\\xaa\\x6e\\x48\\x0a\\xa7\\x14\\x9e\\xb2\\x81\\x32\\xd4\\x55\\x47\\xcd\\x51\\xf2\\x79\\xc6\\x87\\x87\\x3e\\xe2\\xea\\x5f\\x95\\x23\\xa1\\xcc\\xce\\x62\\xd4\\x70\\x55\\x6d\\x59\\x34\\x91\\x24\\x28\\x40\\xe8\\xcf\\x32\\xb6\\x13\\x86\\x10\\xf3\\x39\\x84\\x6c\\x65\\xc6\\x00\\x91\\x62\\x55\\x79\\x8c\\x53\\x71\\xf9\\x3a\\xa1\\x2b\\xf1\\x2a\\x6d\\x6a\\x68\\xc9\\x6e\\x12\\xbc\\xf5\\x2c\\xa5\\x75\\x41\\xd1\\x56\\xb9\\x8f\\x3c\\x7c\\x8e\\xe9\\x45\\x75\\x27\\x3d\\xf2\\x5e\\xc0\\x62\\x6a\\x46\\xa9\\x39\\x5d\\x28\\x06\\x00\\x95\\x44\\x40\\x1e\\x3a\\xc1\\x6f\\x2d\\x5e\\x36\\x0e\\x0b\\x9d\\x11\\x8a\\x86\\x89\\x23\\xd7\\x96\\x57\\x84\\x5c\\x1d\\xa2\\xed\\x28\\x6c\\xf0\\xff\\x24\\xda\\x18\\x6a\\x1e\\xc1\\x9f\\xa4\\x41\\x67\\x55\\x83\\x02\\xba\\xa2\\x41\\x1a\\xd5\\x05\\x92\\x2f\\xb1\\x0e\\xdf\\x50\\x15\\x10\\x28\\x6e\\xea\\xdc\\x33\\x15\\xe5\\x3d\\xd9\\x69\\xc8\\x28\\x90\\x47\\x67\\xb3\\xb8\\xad\\x5f\\x15\\x11\\x50\\x92\\x0d\\x42\\x33\\x11\\x44\\x12\\x69\\x0c\\x94\\x8a\\x30\\xea\\x66\\x87\\xfc\\x2b\\xb8\\xb8\\xb9\\xa9\\x54\\x9f\\xe6\\x45\\x41\\x53\\x7c\\x7f\\x74\\x97\\x51\\x07\\x89\\x8a\\x0a\\x0d\\xd7\\x4f\\x9b\\xb9\\x53\\xa0\\xb6\\x5b\\x51\\xbe\\x90\\x10\\x5b\\xee\\x6e\\x02\\xb5\\xca\\x02\\x25\\xdf\\x42\\xb8\\xb8\\xfa\\xf9\\xff\\x38\\x00\\x44\\xb6\\xd4\\x7c\\x5e\\x4f\\x16\\xcf\\xc1\\xbc\\x9d\\x4a\\xd5\\xcb\\xd7\\x70\\x07\\xcb\\xa1\\x8e\\xad\\x62\\x94\\xdb\\x48\\x08\\xd9\\x75\\xcf\\xb9\\x05\\x19\\x61\\xad\\xdd\\x4e\\xa7\\x6a\\xd1\\xbc\\x04\\x45\\x36\\x22\\xb9\\xee\\xb8\\x88\\x85\\x3f\\xd9\\x00\\xe6\\x0a\\x84\\xaa\\xb5\\x66\\xd4\\xb4\\x56\\xae\\x81\\xa5\\x8c\\xdc\\x19\\x2e\\x75\\xee\\x81\\x22\\xeb\\x77\\xb1\\x3f\\x64\\x16\\x1d\\xb6\\x2e\\x98\\xc6\\x4c\\x75\\x4e\\x33\\x2f\\xce\\x82\\x61\\x3d\\x2b\\x59\\xb2\\x36\\xbd\\xf0\\x47\\x5e\\xf7\\x1f\\xc7\\x42\\x55\\xd3\\x0a\\xb8\\x87\\x1f\\x09\\x4b\\xa9\\xd4\\xd1\\xdc\\x48\\x7d\\x98\\x10\\x21\\x07\\xb1\\xfb\\x26\\xe0\\x55\\x56\\x67\\xb0\\xcd\\x62\\x46\\xc5\\x6e\\xb8\\x41\\x4f\\x4e\\x0a\\xb6\\x32\\x11\\x2a\\xab\\x02\\x80\\xb9\\xf3\\x9b\\x09\\xce\\xcb\\x2f\\x01\\x3d\\xbb\\x62\\x89\\xb7\\xdf\\x07\\x49\\x04\\xe4\\x68\\x2e\\x94\\x01\\xf6\\xea\\x12\\xa2\\xd3\\x24\\xc9\\x68\\x34\\x82\\x62\\x98\\x4b\\x6e\\x8f\\x1a\\xbd\\xbd\\x09\\xea\\x38\\x58\\xc1\\x41\\x69\\x05\\x3e\\x82\\x26\\xfa\\xbf\\xf0\\x85\\xd0\\x26\\xd3\\xd3\\x1d\\x90\\x4b\\x79\\xdd\\xfa\\x26\\x00\\xd5\\x21\\x02\\x3e\\x81\\x5d\\x28\\x41\\x67\\x67\\x04\\x62\\xa8\\xa0\\x75\\x20\\xeb\\x40\\x5a\\x9c\\xfa\\x15\\xc4\\x55\\x78\\x04\\x1a\\x60\\xce\\x2d\\x13\\x58\\xd9\\x7e\\xe3\\x4a\\xc2\\x6d\\xfa\\xa0\\x9d\\xe2\\xa8\\x40\\xe9\\x3c\\x2e\\x02\\xfd\\x47\\x8e\\x4d\\xac\\x88\\x97\\xed\\xc3\\x27\\x3b\\xb6\\xad\\x63\\xf8\\xfa\\x7b\\x92\\xbd\\x16\\x3b\\xd0\\xa1\\x61\\x58\\x5c\\x6f\\x44\\x3b\\x28\\x88\\x1f\\xb5\\x65\\x3b\\x3e\\x1e\\xc1\\xa7\\x73\\x0e\\x18\\x3c\\x7a\\xc5\\xee\\x06\\x2e\\x1b\\x84\\x81\\x9d\\x25\\x46\\x80\\xb0\\xd2\\x45\\x22\\x2a\\x5a\\xd7\\xdc\\x6a\\x7f\\x9f\\x90\\x98\\x76\\x9c\\xec\\x83\\x36\\xc8\\x21\\xb0\\x29\\xe1\\x80\\x94\\x87\\x59\\x1c\\x32\\x5c\\x1e\\xa2\\x0f\\xdf\\x0f\\x54\\x81\\xe7\\x79\\x5c\\x0d\\x47\\xb5\\x64\\x13\\x7d\\x0e\\x28\\x7c\\xac\\x84\\xf9\\x4f\\x2c\\x31\\x71\\x58\\xdc\\xc0\\x69\\x7d\\xbc\\x4a\\xe8\\xb7\\xf3\\x31\\x11\\x12\\x06\\x1a\\x6d\\x48\\x68\\x80\\x77\\xf5\\x98\\x76\\xc9\\x99\\xb0\\x54\\x98\\xdb\\x1d\\x24\\xea\\x44\\xe7\\xda\\xb8\\x67\\xe2\\xf9\\xe0\\xd1\\x26\\x93\\xa4\\x61\\xd4\\x98\\x89\\x25\\xe2\\x92\\x6b\\x62\\x80\\xf6\\x98\\xa7\\xbc\\xeb\\xc0\\x2a\\xfa\\x4d\\x08\\x2c\\x18\\x81\\x54\\xce\\xbb\\x75\\xc5\\xd4\\xbd\\x5a\\xf8\\xe1\\x7c\\xe8\\x5d\\xdb\\x8b\\xf5\\x79\\xe6\\xa6\\xa2\\x0f\\x47\\x38\\x90\\x4e\\x49\\xc6\\x98\\x32\\xa6\\x50\\x1b\\xdf\\x1f\\x2e\\x92\\xb2\\x09\\x24\\xc8\\x18\\xd8\\xe3\\x66\\xb8\\x25\\x08\\x3b\\x7e\\xad\\xf6\\x3b\\xa8\\x81\\x65\\x96\\x0c\\xa9\\x94\\x00\\x77\\x3a\\x37\\x25\\xc6\\x71\\xe2\\x23\\x74\\xd5\\x83\\x2f\\xe4\\x96\\xd3\\x75\\x45\\xa8\\xe4\\x95\\x34\\xe2\\x3c\\x19\\x05\\x7b\\x87\\x6c\\x77\\x18\\x8d\\x71\\xc2\\x94\\xb3\\xd8\\x8e\\xe1\\x14\\x65\\x80\\xcb\\x8c\\x42\\x17\\x1c\\x82\\xc6\\x15\\x82\\x9c\\x7a\\x03\\xd9\\xea\\x2b\\x9f\\x4b\\xa8\\x02\\x42\\x0c\\x28\\x40\\x89\\x08\\xae\\x9d\\xa2\\x20\\x4d\\xd0\\xe6\\xac\\x08\\x08\\x91\\x4f\\xb3\\xab\\xe1\\xd9\\xa6\\x66\\x9c\\xde\\x8b\\xb1\\xe5\\x05\\x97\\xbd\\xaa\\xb5\\x5a\\x21\\x07\\xb3\\x36\\xa6\\xec\\x38\\x5e\\x4b\\x2a\\xc0\\x7a\\xb8\\xb6\\x40\\x27\\x08\\xf0\\x5e\\x31\\x9e\\xfc\\xb4\\x3f\\xdd\\x46\\x6c\\xb9\\xfa\\xa1\\xb3\\x16\\xbf\\x27\\x95\\xcd\\x1d\\xd2\\xc2\\x46\\x43\\x34\\x2c\\xc9\\x46\\x3b\\x94\\x02\\x44\\x60\\xcd\\x92\\xa1\\x98\\x29\\x6c\\xd9\\x82\\x80\\x8b\\xb0\\x31\\x64\\x0a\\x43\\xb4\\x30\\x4a\\xc1\\x08\\x54\\xbc\\x1d\\xa9\\xaa\\x0e\\x9f\\x24\\x6e\\xed\\x70\\x27\\xda\\x30\\x05\\x26\\x69\\x4b\\xea\\xc2\\xf6\\xf6\\xcb\\x17\\x36\\x4c\\x8d\\x6a\\x1f\\x41\\x61\\x62\\xc3\\x73\\x2a\\xb4\\x04\\xf6\\xb9\\x16\\x50\\xee\\xe1\\x21\\x0a\\x38\\x8d\\xd0\\xea\\xc6\\xd9\\xe9\\x82\\x6c\\xd1\\x10\\x5f\\x09\\xa6\\x72\\x07\\xb0\\xe9\\x12\\x37\\x32\\xd2\\x5f\\x46\\x27\\x7a\\xe2\\x58\\x58\\x84\\xf3\\x73\\x82\\x67\\x8a\\x11\\x8e\\xbe\\x05\\xe5\\x2f\\xfb\\xf3\\x57\\x65\\xb0\\x05\\x3d\\x32\\x31\\x34\\x53\\xd3\\x89\\x60\\x00\\x5a\\xc5\\xce\\x07\\xde\\xb2\\xb2\\xc0\\x11\\xf5\\xef\\x45\\x81\\x59\\xc2\\x2e\\x6f\\x42\\xec\\x51\\xf5\\x58\\xb8\\x99\\xae\\x3c\\x72\\xfa\\x52\\xdb\\xea\\xa2\\x45\\xe3\\x28\\xbf\\xb9\\x6a\\x32\\xf3\\x43\\xb0\\x4b\\xfb\\x1c\\xde\\xc2\\x88\\xac\\x29\\x6e\\xbb\\x1b\\xa1\\x6f\\xaa\\x5b\\x3d\\x2d\\xd7\\xad\\xb5\\x1b\\x81\\x53\\xc0\\x1a\\x26\\x7a\\x46\\xe4\\x52\\x78\\xd9\\x85\\x88\\x10\\xf1\\x1c\\x1b\\x70\\x84\\x69\\xc6\\x51\\x61\\xaa\\x48\\x54\\xe2\\xe6\\xa6\\xe6\\x33\\xf5\\xe6\\xe6\\x99\\xfc\\xeb\\x5a\\x42\\x90\\x05\\x19\\x1e\\x36\\x1b\\x68\\xb6\\x21\\x8c\\xd7\\x50\\xd6\\xe8\\x3a\\xe3\\xf5\\xa3\\x9f\\x34\\x44\\xb7\\x95\\xd4\\x80\\x98\\x80\\x7b\\x10\\x98\\xaf\\xf3\\x6f\\xfd\\xc9\\x79\\x09\\x38\\xbb\\xfa\\xb1\\x83\\xc9\\x6c\\x72\\x10\\x6d\\xb6\\x8b\\x7a\\x8e\\xc3\\x9c\\x4d\\xe2\\xeb\\xef\\x96\\x84\\x2e\\x93\\x09\\x44\\xe4\\x56\\x43\\xe5\\x84\\x6c\\xb1\\x62\\x74\\x4c\\x5c\\x07\\x69\\x98\\xed\\x7c\\x32\\x95\\xd7\\x5d\\xef\\x2b\\xab\\x5f\\x58\\x38\\xc2\\x06\\x02\\x66\\xed\\x7a\\xb1\\x14\\xdb\\x07\\x55\\x52\\xc8\\x93\\x49\\xbc\\x22\\x00\\x6e\\xe5\\x95\\xf0\\xc1\\xdd\\xe4\\xff\\xb7\\xb0\\x9c\\x54\\xf2\\x74\\x9f\\xec\\xb6\\x3a\\x8d\\x3e\\x10\\x78\\xd7\\x83\\x17\\x60\\xf4\\x93\\xdd\\xdf\\xbf\\x20\\x20\\x69\\x9d\\x73\\xfe\\xc1\\xb3\\x6f\\x0d\\x2b\\xf9\\x97\\x29\\x9f\\xdf\\x4b\\x2e\\x23\\x37\\x22\\x4d\\x6a\\x31\\x59\\x46\\xe7\\xb6\\xf6\\xc4\\x53\\xb5\\x5d\\xee\\x53\\xa6\\x50\\x61\\xd1\\x3c\\xcd\\x44\\xac\\xcd\\x10\\x1e\\xc6\\x9c\\x30\\xd3\\x89\\xfc\\x01\\x6d\\x4c\\xcd\\x53\\x80\\x20\\xb7\\x70\\x5f\\xd0\\xe0\\xfc\\xee\\x70\\x2b\\xdc\\x8f\\x31\\x0a\\xf9\\x5b\\x9a\\x5f\\x9d\\xc6\\x04\\x7b\\x91\\xff\\x34\\x05\\x1b\\xd5\\x7d\\xce\\x42\\x91\\x52\\x3c\\xc2\\xf3\\xbf\\xdb\\xe8\\x8f\\xa6\\x79\\xa1\\x02\\xff\\x72\\x3c\\x2e\\xc8\\xd0\\x1d\\x4a\\xdd\\x15\\x2d\\x99\\xc6\\x02\\xc6\\x02\\x72\\xc0\\x01\\xcc\\xd9\\xc4\\xca\\xa9\\xb7\\x07\\xd5\\xd5\\x56\\xc2\\xf9\\x09\\x99\\x04\\x25\\x9e\\x61\\x69\\x54\\x37\\xe1\\xab\\xd5\\xeb\\x0e\\xef\\x53\\x95\\xc3\\x4e\\xbe\\x36\\xa4\\x92\\xe9\\x23\\x36\\x88\\x54\\x50\\xd9\\x81\\x20\\x71\\x32\\xf1\\xe0\\x94\\x5c\\x9e\\xa0\\x07\\x28\\x12\\x55\\x38\\xdb\\xab\\x68\\x4a\\x95\\x1c\\x97\\x3e\\x5d\\x23\\xd0\\x27\\xc9\\x03\\xbe\\xb9\\x17\\x22\\x72\\x71\\xae\\x1c\\x34\\x36\\xec\\xe1\\x7a\\x62\\x84\\x1f\\x6e\\xb0\\x4a\\x1d\\x4d\\x68\\xb9\\x4e\\x51\\x4d\\x87\\xd5\\x7f\\x8e\\x3e\\x06\\x0b\\x6f\\x0c\\x4a\\xaf\\x64\\x6a\\x60\\xdc\\xdc\\xa6\\x3b\\x91\\x7d\\x20\\x72\\x95\\xcd\\x07\\x3d\\x92\\x02\\xd4\\x07\\x6d\\xb8\\xe1\\x00\\x0c\\x74\\x72\\x4a\\x9d\\xa7\\x9a\\x4d\\x53\\x13\\x0c\\x8f\\xe2\\x25\\x84\\x23\\x10\\xff\\x71\\x95\\x45\\x0e\\xe2\\x02\\x18\\x22\\x80\\x3c\\xab\\x55\\x1b\\xb8\\x3c\\x2b\\xf7\\x72\\x23\\xa1\\x4c\\xa9\\x59\\xbd\\x79\\x7e\\xe8\\x52\\x3b\\x11\\x62\\x16\\x92\\xc9\\xfb\\xfc\\x62\\xd9\\x6d\\xae\\x63\\xe7\\xc1\\xd5\\x26\\x6c\\x9f\\x9a\\xb6\\x41\\x61\\xd8\\x0e\\x2d\\x88\\xc6\\x63\\xc1\\x85\\xb5\\xaa\\x4a\\xb2\\x32\\xc1\\x53\\x37\\x83\\x1e\\x8b\\x35\\x50\\x66\\x1a\\xeb\\x01\\xc0\\xb7\\x26\\x11\\xda\\x90\\xb6\\x17\\x2a\\xd9\\x03\\xfd\\x6d\\x0f\\x9b\\xdc\\x2a\\x65\\xcf\\xce\\x28\\xfb\\xea\\x3b\\xa8\\xd6\\x9c\\x29\\xae\\xb2\\x05\\x4c\\xb4\\x8a\\x10\\x80\\x39\\x4c\\x23\\x79\\x2d\\x23\\xcd\\xfb\\xbc\\xd0\\x23\\x59\\x23\\x54\\x44\\x3d\\x13\\x23\\x0e\\x0e\\x20\\xbe\\xfb\\x54\\xb3\\x69\\x68\\x06\\x6b\\x96\\x65\\xc1\\xbf\\x83\\xf9\\x8b\\x9d\\x95\\x25\\x51\\x07\\xb3\\xf8\\x96\\xf3\\xd5\\x4a\\x4e\\x2a\\x21\\x2a\\xd2\\x38\\xb7\\x07\\x3b\\x70\\x6f\\x2b\\x22\\xac\\x89\\x83\\x03\\xf5\\x4e\\x48\\x42\\xe0\\xda\\x75\\x56\\x99\\x96\\x65\\xc7\\xc3\\x02\\xdb\\x5d\\xdf\\x3b\\x32\\x84\\x67\\xa8\\x19\\x70\\x52\\x94\\x92\\xaa\\xf9\\xb7\\x2e\\xa7\\x79\\xb1\\xb5\\x12\\xb9\\x53\\xea\\x6b\\x9b\\x7e\\x6e\\x3d\\xb2\\x07\\x6a\\xdc\\x16\\x55\\x35\\x99\\xcc\\x65\\xd2\\xac\\x0e\\x9f\\xe2\\x1f\\xf0\\x01\\x68\\xe0\\xe0\\x65\\xad\\x47\\x6c\\xca\\x95\\xd5\\x91\\x56\\x9a\\xcd\\x46\\x90\\xd2\\xda\\x2e\\x45\\x84\\xf0\\xe1\\x9b\\xb1\\x28\\xc2\\xbd\\xb3\\x3c\\xc2\\x6d\\x28\\xe0\\xb8\\x29\\x65\\x68\\x54\\xbf\\x86\\x70\\x24\\xe1\\xa9\\x70\\x67\\x80\\xb6\\x96\\x89\\x0e\\x83\\x41\\xaf\\x1c\\x1a\\x8b\\x85\\x23\\xc1\\x7d\\x99\\x8a\\xf8\\x2d\\x17\\x9b\\x59\\x16\\xa6\\x72\\xc7\\x32\\x1b\\x6b\\xc3\\x9c\\x52\\x52\\x59\\xc5\\xed\\xf0\\xe3\\x5f\\x34\\x10\\xc9\\x37\\xac\\xdd\\x37\\xc4\\x66\\x3a\\x16\\xf1\\x26\\x03\\x96\\x7b\\x44\\x16\\xae\\x73\\x2a\\x55\\xf8\\xb5\\x68\\x3c\\xd4\\x49\\x0a\\xb0\\x1b\\x1a\\x11\\x75\\x6e\\x1b\\xef\\x56\\x4e\\xb7\\x76\\x6b\\x8e\\x29\\x4b\\x5a\\x6d\\x2c\\xa8\\xaf\\xc5\\x7d\\x8b\\xcb\\xad\\x85\\x8e\\x78\\xc7\\x5e\\x19\\x14\\xc8\\xd9\\x82\\x97\\xf4\\xbb\\xf1\\x75\\xd5\\x6b\\x03\\x27\\x18\\x73\\xb8\\x68\\x16\\x24\\xe4\\x1b\\x2a\\x5e\\x05\\x79\\x12\\xa6\\xe3\\xa8\\x18\\xa9\\x05\\x5b\\xa6\\x68\\xae\\xa2\\x6b\\x32\\x78\\x72\\x08\\xaa\\x22\\x35\\x58\\x97\\x0c\\xff\\x94\\x7f\\x7f\\xd9\\x33\\x36\\xf0\\x27\\xa5\\x3f\\x40\\x93\\xfd\\x01\\x50\\xdc\\x3a\\x92\\x18\\xbe\\x24\\x00\\x90\\xc8\\x72\\xaf\\x91\\xfa\\x5f\\xb2\\x34\\x8a\\x22\\x6c\\xb7\\x52\\x6d\\xa7\\xa8\\xf1\\xc6\\xfe\\x61\\xc2\\x1d\\x39\\xf4\\xb5\\x63\\x72\\x06\\x55\\xd8\\x96\\x2d\\x62\\x0a\\x3b\\x61\\x90\\xa5\\xd4\\xc1\\xa5\\x88\\x55\\x20\\x34\\x63\\x47\\x37\\x06\\x4c\\xaf\\xa3\\x81\\xd5\\x0c\\xc9\\x75\\xc9\\x31\\x80\\xb8\\xb4\\x8e\\xaa\\xfd\\x61\\xc1\\x14\\xd0\\x70\\x1c\\xff\\x59\\x18\\x38\\xdc\\x6a\\x6b\\x14\\x4c\\x4f\\x1b\\xc2\\x3c\\x60\\x02\\x92\\x6c\\xf1\\x07\\x19\\x18\\x6d\\xa8\\x68\\x1a\\x4a\\x92\\x9f\\xb9\\xc6\\xe3\\xb1\\x60\\x0b\\x1b\\xf2\\x9b\\xf0\\xd4\\x92\\x8e\\x5b\\xf0\\x10\\x51\\x28\\x3b\\x22\\xb2\\xa7\\x8a\\x58\\x50\\x27\\x1c\\x31\\xa6\\xcb\\x56\\xbb\\xad\\xd4\\x60\\x38\\x9e\\x88\\x4b\\x8b\\x16\\x56\\x24\\x25\\x34\\x07\\x42\\xc2\\x6c\\x15\\x07\\x9c\\xd7\\x18\\xb3\\xec\\x14\\xc4\\xf6\\x0b\\x26\\x3c\\x45\\x72\\x64\\xc1\\xa6\\xa8\\x6d\\x11\\xe5\\x6e\\x85\\xd6\\xad\\x3a\\xce\\x15\\x59\\xda\\x2a\\xa1\\xfc\\x6d\\xd4\\x31\\x2c\\x08\\x26\\x49\\xab\\xf5\\x5b\\x3a\\xba\\x99\\x09\\xb4\\x9e\\xba\\xfb\\x8f\\x36\\x79\\x7e\\x87\\xcc\\x89\\xd0\\x24\\xab\\xee\\x9d\\x1b\\x74\\xe2\\x93\\x2f\\x84\\x00\\x3b\\x01\\x81\\xf4\\x1a\\xdf\\x92\\xec\\xb8\\x3f\\xca\\x78\\x18\\x2e\\xf5\\x53\\x5e\\x82\\x1e\\x3a\\x9b\\x25\\x8f\\x6d\\xf7\\x2f\\xb7\\x7b\\x16\\x4d\\xaa\\x2a\\x27\\x29\\xc9\\x7d\\x71\\x6b\\xf2\\x1e\\x85\\x74\\x96\\x1c\\xd4\\x4d\\x9a\\x39\\x31\\x16\\x74\\x0a\\x86\\xda\\x5d\\x0a\\x2a\\xc1\\x12\\x8a\\xdf\\xb8\\xd3\\xc1\\xb8\\xbf\\x00\\x62\\xce\\x26\\x73\\x9c\\x87\\xc2\\x8d\\x0a\\x9a\\x26\\xc8\\x9c\\x46\\x95\\x29\\xa4\\x1b\\x9a\\xd1\\xaf\\x7a\\x5f\\x95\\xb1\\x5c\\x26\\x35\\xd6\\xcd\\x16\\xe4\\x2b\\x08\\x65\\x4f\\x10\\x79\\xd3\\x09\\x74\\x50\\x82\\xe3\\x8d\\xf8\\x11\\xda\\xe5\\xdd\\x07\\x74\\xfa\\xe4\\x7d\\xf0\\x0b\\x7a\\x62\\x17\\x91\\xa1\\x7a\\xfb\\x7d\\x8b\\x10\\x62\\xe4\\xda\\x34\\x28\\xad\\xe4\\x71\\x6d\\x79\\x42\\xb7\\x90\\xe1\\x31\\xbe\\x0c\\x7c\\x4e\\xd2\\x2c\\x4c\\x9a\\x7b\\x9f\\x8f\\x30\\xd6\\x9d\\x5b\\x45\\x60\\xa4\\x04\\x87\\xc9\\x8d\\xb1\\xf8\\xf4\\xa9\\xc7\\xc3\\xa4\\x57\\x4a\\x8b\\x75\\xf1\\x76\\xb9\\xe1\\x82\\x63\\xc4\\x1c\\x43\\xae\\x2a\\xc5\\x3f\\xea\\xb5\\x12\\x81\\xd7\\xaf\\xf4\\xe9\\x02\\xc7\\xff\\xe5\\x5c\\x59\\x12\\x90\\x1c\\x42\\xc6\\x0d\\xf8\\x14\\xc2\\x64\\x45\\x5f\\x96\\xc2\\x75\\xc7\\x6d\\x0a\\xe8\\xb7\\x3b\\xd4\\xe4\\x23\\xfa\\xc6\\xb0\\xb2\\xbd\\x27\\x87\\xe8\\xbe\\x55\\xea\\x08\\x4a\\x52\\xe0\\x14\\xd1\\xd3\\x8d\\xac\\x22\\x6f\\x72\\x5c\\x90\\x1a\\x56\\xd2\\x2f\\x34\\x19\\xc5\\xe7\\x71\\x29\\xa9\\xb4\\x82\\x81\\x42\\xc2\\x8a\\xf4\\x78\\xf2\\x93\\x4f\\x4d\\xa8\\x03\\xa8\\x92\\xc9\\x93\\xa6\\xdc\\x42\\x4f\\xd7\\x0a\\xe6\\xe8\\x02\\x56\\x0d\\x55\\xaa\\x62\\x8e\\x82\\x39\\x21\\x42\\xe9\\xf7\\x00\\x80\\x96\\xf0\\x88\\x60\\x6c\\xa8\\x2c\\x36\\x43\\xf4\\x21\\xdd\\x74\\x98\\x51\\x11\\xcc\\x1e\\xe9\\x58\\xef\\xf7\\xa0\\x82\\x48\\xd8\\x85\\xd7\\x18\\x00\\x72\\x10\\x8a\\x50\\x15\\x07\\x87\\xc1\\xdb\\x31\\x62\\x22\\xa5\\x3a\\xe7\\x33\\xb6\\x9c\\xca\\x62\\x00\\xd4\\x40\\xde\\x1d\\x70\\x2c\\x18\\x07\\x08\\x10\\x94\\x48\\x0c\\x7f\\x10\\x96\\xe5\\x1a\\xb0\\xd2\\x0a\\x47\\x3b\\x7c\\x54\\xc5\\xed\\x42\\x7a\\x96\\x2f\\x2c\\x2d\\x3c\\xed\\x3f\\x4e\\xe4\\x38\\x8c\\x96\\x60\\xf5\\xe2\\x4f\\xa0\\x2c\\xa1\\x1c\\x82\\xe8\\xca\\x2b\\x5b\\x9e\\x56\\x71\\x90\\x46\\xd0\\xbe\\x4c\\x71\\x70\\xb6\\x7b\\x41\\x88\\x8b\\x1b\\x11\\x8b\\xd3\\x12\\x95\\x64\\xb1\\x08\\x50\\x66\\x46\\x40\\xc1\\x89\\x18\\x72\\x53\\x60\\x59\\x2d\\x79\\x56\\xcf\\x07\\x39\\x18\\x2f\\x1e\\x3c\\x09\\x90\\x92\\x2a\\x98\\x56\\x16\\xc1\\x1b\\x31\\xbd\\xb9\\x70\\xfa\\xf2\\xa8\\x90\\x6d\\x15\\xd3\\x7a\\x2b\\xf8\\xfe\\x9d\\xa9\\xb4\\x67\\x30\\x39\\xf9\\x3b\\xfc\\x52\\x24\\xe8\\x74\\x91\\xe6\\x48\\x5f\\x26\\x72\\xdb\\x7d\\x50\\xc9\\x7c\\x4b\\xb2\\xb8\\x3f\\x53\\x4a\\x14\\x7f\\xfd\\x6a\\xa4\\xd0\\x13\\x96\\x1f\\x70\\x52\\x21\\x8c\\x7a\\xa7\\xa5\\x22\\x1e\\xbe\\x60\\xf8\\xba\\x5a\\xc8\\xc9\\xab\\xf2\\xb8\\x95\\xe4\\x64\\xe2\\x23\\x4d\\xb3\\xba\\x19\\x13\\xab\\x56\\x1d\\xe7\\xbd\\xa0\\x26\\xca\\xf3\\xaa\\xe2\\xea\\xe9\\xf0\\xce\\x37\\x38\\x95\\x02\\x3a\\xd9\\x91\\x6b\\xb9\\xe4\\x41\\xd0\\xd4\\xc3\\x06\\x20\\x12\\xa8\\x86\\x83\\x91\\x0b\\xcd\\x31\\x1c\\xde\\x4c\\xa4\\x6c\\x90\\xe8\\x80\\x48\\x61\\x28\\x75\\x6e\\x63\\x50\\x1b\\x2e\\x09\\xe3\\xfe\\x4e\\xe9\\xb0\\xe6\\xd1\\x5a\\xac\\x87\\x88\\xec\\x07\\x01\\x27\\x33\\x96\\x43\\xc8\\xe2\\x19\\xe3\\x96\\x3a\\x93\\xb0\\xf3\\x00\\x75\\x9b\\xc4\\xdb\\x85\\xb5\\x0f\\x28\\x12\\x1b\\xbe\\x27\\x0b\\x59\\xb2\\x05\\x31\\x6a\\xa2\\x49\\x87\\x8b\\x3f\\x0c\\x56\\x81\\x7e\\x93\\x70\\xf7\\xea\\x5f\\xb7\\x3d\\xb4\\xb0\\x8a\\xc3\\xda\\xce\\xf4\\x82\\x90\\x72\\xe2\\xda\\xea\\x16\\xf6\\x4e\\x20\\x65\\x02\\x34\\x48\\x03\\x64\\x48\\xcf\\x34\\xc6\\x20\\x49\\x92\\x7d\\x79\\x72\\x23\\x9b\\x21\\x87\\x30\\x92\\x83\\xe5\\x78\\xa1\\x5c\\x22\\x34\\x3b\\x46\\x33\\x42\\x41\\x59\\x1c\\x44\\x1c\\xf2\\x2a\\x0d\\x5b\\x4b\\xce\\x2c\\x10\\xce\\xb2\\x91\\xff\\xa1\\x16\\x05\\xcc\\xf8\\x9c\\x45\\x88\\xb1\\x0d\\xa2\\x74\\xc0\\xfd\\x9a\\x99\\x93\\xd7\\xe7\\xcf\\x79\\xad\\xe4\\x3d\\xbf\\x9b\\x50\\xb6\\x0d\\x93\\x37\\xab\\x71\\xc0\\x2d\\xe6\\xdb\\xa9\\x3c\\x4a\\xe9\\xd5\\x73\\x99\\xbf\\x2b\\xd0\\xcb\\xad\\x21\\x19\\x9e\\xda\\x8e\\xa7\\x6c\\x77\\xb8\\x5f\\xb7\\x78\\x83\\x29\\x01\\xc3\\xbe\\xce\\x29\\x03\\xeb\\xee\\x0c\\xa9\\xe3\\x80\\x6e\\x9e\\x84\\x84\\xff\\x92\\x8d\\x34\\xbe\\x4c\\x64\\xa0\\x9a\\x0e\\x68\\x71\\xd0\\x1b\\xda\\xf1\\xad\\x90\\x1a\\xd1\\x8c\\x2b\\x8b\\x29\\x0f\\x50\\x54\\x4f\\x86\\x27\\xcd\\x3b\\x79\\x87\\x76\\x78\\x34\\x21\\xd7\\x61\\x3a\\xfa\\x31\\x2a\\xbf\\xd0\\xa2\\x59\\x78\\x03\\x41\\x1b\\x62\\x0f\\xe0\\x61\\xab\\xf2\\x95\\xfa\\x04\\xaf\\x1e\\xfb\\x14\\x68\\x90\\x01\\xec\\x30\\x70\\x84\\xe2\\xa1\\x65\\x48\\xfa\\x79\\x52\\xd0\\xda\\xf9\\x61\\x7f\\x6c\\x96\\xf1\\xf4\\x30\\xc3\\x14\\xb9\\x86\\xda\\xc0\\xfe\\x26\\xf0\\x07\\xed\\x73\\x0d\\xa6\\x80\\xb9\\x44\\xb9\\x42\\x84\\xd2\\x8d\\x04\\x47\\x98\\x79\\x08\\x10\\x18\\x17\\x63\\xb8\\x8b\\x11\\xa3\\x2c\\x3b\\xb6\\x41\\xc1\\x10\\x80\\xa7\\x09\\xd5\\xcf\\x80\\xbf\\x94\\x28\\xc1\\x77\\x4a\\x7d\\xd9\\x57\\x35\\x10\\xfb\\xcc\\x4c\\xd1\\x58\\x40\\x33\\xfc\\x3c\\x73\\x01\\x21\\x78\\x0c\\xeb\\x53\\x69\\xdd\\x1a\\xb3\\xab\\xba\\x04\\x3e\\x11\\x93\\xeb\\x31\\x06\\xda\\x04\\x21\\x28\\x84\\x33\\x4e\\x8b\\x2e\\xea\\x4e\\x70\\xa5\\x74\\x88\\x60\\x81\\xae\\x1f\\x43\\xab\\xb1\\x20\\xa2\\x56\\x70\\x08\\x52\\xc2\\xab\\x06\\xf3\\xe3\\xa1\\xcd\\x6e\\xf6\\x05\\x3f\\x44\\x7d\\x54\\x66\\x23\\xa2\\x13\\xe2\\xac\\x68\\x48\\x0d\\xf9\\xbd\\xcf\\xc2\\x10\\xa5\\xea\\x07\\x91\\xa4\\xc4\\xfc\\xaf\\x96\\x40\\x6f\\xeb\\xe6\\x4f\\x62\\x2a\\x01\\x4b\\xee\\x43\\x91\\x30\\x0d\\x3a\\x5f\\x8a\\x0e\\xce\\x84\\x6d\\x80\\xc8\\xa6\\x9f\\xfb\\x2d\\xb6\\xa6\\xb2\\xce\\x52\\x29\\x4a\\x90\\x8e\\x86\\x39\\x93\\x5f\\xf3\\xb4\\xf2\\x63\\xc2\\x89\\x3f\\x00\\x25\\x45\\x3c\\x48\\x8c\\x91\\x4f\\x76\\x50\\x5f\\xa3\\xc0\\x81\\x32\\xdf\\xc2\\x57\\xe4\\xfc\\x9d\\x65\\x41\\xfd\\xbc\\x18\\xf2\\x29\\x2c\\xdf\\x81\\xec\\x82\\x16\\xc0\\x4a\\x17\\x37\\xb2\\x21\\xcf\\xb6\\x03\\x41\\x38\\xf4\\x3c\\xdd\\x87\\x0f\\x3d\\x9d\\x69\\xe6\\x2c\\x7e\\x37\\xea\\x04\\xf2\\x9a\\x4d\\x90\\x63\\x5f\\x1a\\x0a\\xbd\\xc4\\x7a\\x62\\x29\\x8e\\x77\\x84\\x12\\xaa\\x11\\x7d\\x64\\xa1\\x02\\x96\\x7e\\x20\\x22\\x77\\x71\\x7e\\x8c\\xbe\\xac\\x2a\\xd0\\xd5\\x87\\x99\\xe2\\x94\\xf7\\x09\\x07\\x18\\x7b\\x18\\x84\\x79\\x6a\\x22\\x21\\x4b\\x68\\xd6\\xf4\\x44\\x25\\x42\\x49\\xc1\\x09\\x8d\\x48\\x8b\\xe7\\xe3\\xf0\\x54\\xf7\\x7c\\x44\\x29\\xb9\\x14\\x98\\xc6\\x0c\\x37\\x45\\xb4\\x72\\x2b\\x43\\x29\\x24\\xa2\\x10\\x1b\\x72\\x82\\x9a\\xc7\\xa2\\x53\\x52\\xce\\x3a\\x63\\x08\\x82\\x28\\x13\\x47\\x9c\\xca\\x25\\x9c\\xd3\\x65\\x31\\xa7\\x16\\xc0\\xab\\x43\\x1e\\xbf\\x8b\\xfa\\x90\\xa0\\x0f\\x5f\\x93\\x6f\\x8c\\xba\\x20\\x26\\x1c\\x4c\\xdd\\xbd\\x0b\\x67\\xab\\x48\\x09\\x2b\\x63\\xe6\\x42\\xfb\\x57\\x7f\\x17\\xe8\\x30\\x3b\\xe2\\x9e\\xdb\\x16\\xcb\\x12\\xb7\\x37\\xc3\\x4c\\xe6\\x45\\x12\\x8e\\x83\\xc4\\x74\\x88\\xc3\\x19\\xcc\\x06\\x6b\\x07\\xdf\\x01\\xbf\\x3c\\x00\\x37\\xfe\\x5c\\x4a\\xdc\\x10\\x1a\\xc6\\x13\\xd2\\xc9\\x48\\x8f\\x3d\\x5a\\x02\\x1a\\xc9\\x22\\x2a\\x72\\x72\\x87\\xc9\\x3b\\x90\\xde\\xa4\\x14\\x63\\x07\\x32\\x15\\x43\\xad\\x68\\xa2\\x00\\x48\\xc3\\x85\\x58\\xdf\\x29\\xf0\\x94\\x3b\\x2c\\x4d\\x5a\\x63\\x0f\\x69\\xb8\\x6d\\xf7\\x01\\x1c\\xc2\\x5b\\x08\\x40\\xe0\\xf4\\xa1\\x15\\xa2\\xae\\xbf\\x1b\\x2b\\xd9\\x12\\x0b\\xf3\\x22\\x30\\x98\\xcf\\x06\\xaf\\x8e\\x6a\\xdc\\xe4\\x2b\\x4d\\x07\\x8a\\x0d\\x0e\\x9c\\x83\\xef\\xc2\\x12\\x9b\\xd7\\x8b\\x98\\xa5\\x35\\xf1\\x10\\x6e\\xca\\x68\\xd9\\xa0\\x0e\\x1e\\x66\\x81\\x2e\\x83\\x34\\x46\\xbe\\x27\\x2e\\x54\\x82\\xd6\\x1d\\x16\\x44\\x4b\\x9d\\x4f\\x0a\\x0b\\x40\\x23\\x57\\x0a\\x9e\\xdd\\xec\\xb2\\x1a\\x9c\\x9c\\x58\\x13\\x2c\\x39\\xe9\\x41\\x04\\xb0\\x76\\x90\\xbb\\x96\\x15\\x38\\x0d\\x10\\x98\\xca\\x12\\x38\\x78\\x46\\x00\\x1a\\xa5\\xb4\\x1a\\x1e\\x05\\xcc\\x81\\x12\\x37\\x10\\xf0\\x14\\x14\\x82\\x3d\\xd6\\xb2\\x38\\x2a\\x0f\\x75\\x0c\\x7b\\x60\\x54\\x26\\xf9\\x12\\x1a\\xb0\\x90\\x11\\x9f\\x94\\x13\\xf2\\x32\\x90\\x1f\\xa0\\x9a\\xc1\\xe4\\x60\\x10\\xa3\\x00\\x53\\xa6\\xe4\\x64\\xb0\\x33\\x11\\x25\\x87\\x4e\\xfb\\x85\\x8d\\xa7\\x7c\\x2e\\x2c\\x76\\x0c\\x99\\xf5\\x63\\x98\\xb8\\xa9\\x33\\x30\\xa4\\xab\\x00\\x0b\\x8b\\x59\\x87\\x82\\x39\\x32\\x25\\x95\\xea\\x05\\xa1\\x05\\x7c\\x75\\x4b\\x5c\\xa6\\x5d\\x8c\\x92\\x3b\\x7c\\x45\\x4d\\xeb\\x29\\xc1\\xb4\\xb9\\x05\\x45\\x1e\\xc0\\x8e\\x61\\x52\\x14\\x84\\x9b\\xa2\\x97\\x0d\\xd6\\x90\\xfd\\x74\\x06\\x99\\x8c\\xbd\\x9d\\x17\\xcd\\xa0\\x19\\x5f\\xcf\\xe5\\x95\\x15\\xd5\\x3c\\x39\\x49\\x74\\x87\\x04\\x00\\x11\\xd4\\xd4\\xc7\\x50\\x8b\\x2c\\xa4\\x56\\xaf\\xb3\\xf1\\xb4\\x7c\\x98\\xe9\\x6f\\x86\\x8b\\x0f\\x5e\\x45\\x43\\xa1\\xc5\\x21\\xb1\\x31\\xb6\\x27\\xf7\\x80\\xa0\\x1e\\x23\\xf0\\xae\\x20\\x2e\\x24\\xe9\\x62\\xd8\\x60\\x60\\xaa\\x7e\\x39\\xdc\\x76\\xf4\\x5c\\x1a\\x09\\x5e\\xd2\\x90\\xc8\\x4c\\x1f\\xc3\\x61\\xac\\x1e\\xa8\\xa8\\xea\\x20\\x24\\x7d\\x27\\x5a\\x2e\\x20\\x29\\x00\\xfe\\x4a\\xe9\\x49\\x5b\\x31\\x18\\x5d\\x43\\x8d\\x78\\xff\\xc4\\xbd\\x18\\x5d\\xfc\\xc4\\x48\\x49\\x2a\\x8a\\xa6\\x5f\\xcc\\x70\\xd8\\x92\\x78\\x78\\x12\\xee\\x22\\xc4\\x4a\\xa6\\x41\\xd2\\xd5\\x0c\\x99\\x60\\x25\\xc4\\xb1\\x67\\x4a\\x81\\xbb\\x77\\xe2\\xb4\\x20\\xd5\\xdd\\xfb\\x33\\xab\\xf3\\x3f\\x41\\x40\\x47\\x2f\\x0d\\x8a\\x36\\x73\\x69\\xe2\\x51\\x71\\x70\\x91\\xe8\\x22\\xf2\\xc2\\x27\\x30\\x16\\x23\\x3c\\x32\\x6e\\x50\\x41\\x8b\\xa7\\x71\\x8b\\x46\\xf1\\x6c\\xad\\xc7\\xf8\\x89\\x8a\\x27\\x46\\x2b\\x6e\\x6b\\xc0\\x75\\x88\\x87\\xfa\\x99\\x04\\x13\\xad\\xfc\\x27\\x21\\x53\\xed\\x69\\x08\\x17\\xea\\xe5\\xba\\x06\\x4a\\xe2\\xb7\\x3d\\xc6\\x8e\\x68\\x10\\x79\\x01\\x29\\xc0\\x76\\x2e\\x01\\xce\\x39\\x5e\\x98\\x80\\xa8\\x2b\\xfb\\xa4\\x9a\\x5b\\x40\\xe3\\x0a\\x56\\x2b\\x84\\x5f\\x86\\x64\\x32\\x40\\xdd\\xd0\\xb8\\x13\\x82\\xf3\\xa9\\x63\\xc8\\x1b\\x05\\x09\\xcc\\xf5\\xbb\\xa6\\xf2\\x24\\x65\\x29\\xe9\\x5f\\x42\\x15\\x49\\x61\\x50\\xd2\\x4f\\xbe\\xda\\x1a\\x55\\xc4\\x26\\xa5\\x2c\\x2c\\x70\\x72\\x6d\\x80\\x67\\x50\\x38\\x75\\xaf\\x92\\x87\\xfa\\x9c\\x3f\\x6b\\x0b\\x03\\xbe\\x0f\\xf9\\x7e\\xc2\\xc9\\xbf\\x13\\x8c\\xb3\\x1b\\xb5\\xcf\\x6d\\xa6\\x97\\xc8\\xe7\\xf1\\xdc\\xbc\\xf7\\x22\\x8e\\x9f\\xd3\\xd9\\x82\\x3a\\xb4\\x55\\x8a\\x06\\xe2\\x58\\xa5\\xc2\\xfa\\xad\\x22\\xdb\\x5d\\x22\\xdc\\x75\\xfd\\x3f\\x27\\xe0\\x4c\\x48\\xa8\\x0b\\x69\\x28\\xf1\\x72\\xec\\x9e\\x94\\x0a\\x8d\\x18\\xac\\x69\\x3d\\x2f\\xe0\\x23\\x2c\\x8c\\x38\\x1d\\xc1\\xd2\\xd7\\xa0\\xe8\\xcd\\xab\\x6a\\xc1\\x75\\x01\\xf2\\xc1\\x71\\x35\\x5a\\xc1\\x1c\\x08\\xdb\\x66\\x0b\\xe9\\x15\\x34\\x40\\x32\\x78\\x81\\x12\\x27\\xca\\xde\\x89\\x47\\xf6\\x74\\x7f\\x22\\xda\\x8f\\x5e\\xd7\\x22\\x80\\x01\\x6f\\x4b\\xf6\\x55\\x1a\\x55\\x52\\x07\\xe4\\xbc\\xc7\\xf2\\x5c\\xb8\\xfe\\xc3\\xc6\\xc3\\xa0\\xa1\\xc3\\x03\\xab\\x0e\\x40\\xaf\\x5b\\x1b\\xb4\\x90\\x95\\x05\\x34\\x28\\x97\\x4f\\x60\\x74\\x74\\x38\\x0c\\x34\\x8e\\x83\\x82\\xfc\\x1c\\x7c\\xa7\\x36\\xc5\\x69\\x27\\xd8\\xfb\\xc7\\xca\\x40\\x6d\\x3d\\xee\\x7e\\x18\\xa0\\xfc\\xeb\\x9a\\x30\\xb8\\x94\\x09\\xb9\\xab\\x9f\\x5d\\x85\\x0a\\xf9\\x03\\xa4\\x78\\xad\\x14\\x9b\\x80\\x26\\x18\\x01\\x08\\xa2\\x44\\x1c\\xfc\\xec\\x20\\xef\\x64\\x26\\x3d\\x8c\\xe0\\xc9\\x06\\xc1\\x00\\x54\\x89\\x1d\\xb2\\x3d\\x29\\x44\\x72\\x49\\xd8\\xa4\\x05\\x7b\\x9a\\x43\\x11\\x29\\x92\\x28\\x4d\\x23\\x8c\\x81\\x33\\x99\\x34\\x39\\x0d\\xc5\\x97\\x0a\\xb7\\x2b\\x70\\x77\\x26\\x5b\\x54\\x68\\x89\\x89\\x29\\x81\\x35\\xd6\\x3a\\x9f\\x73\\xc8\\x5b\\x7f\\xb2\\xeb\\x10\\x08\\xcb\\xee\\x1f\\x5f\\x90\\x9a\\x77\\xae\\x45\\x0e\\x03\\x26\\x80\\x62\\x64\\xd7\\x86\\x93\\xaa\\x88\\x53\\xd5\\x1b\\xfe\\xf8\\xfd\\x3f\\x3d\\xaf\\x1e\\x17\\x10\\xfc\\x91\\x4d\\x65\\xf4\\xe3\\xd3\\x44\\x68\\x01\\xae\\x50\\x8c\\x94\\x98\\xdb\\x17\\x66\\x6a\\x9d\\xb8\\x35\\x0c\\x06\\xe1\\xc4\\xf7\\xb8\\x52\\xe2\\xa2\\x4a\\x40\\xf9\\x2b\\x44\\xc1\\x7a\\x8e\\xf9\\x86\\xf6\\x55\\xc1\\x51\\x5e\\xbd\\xe1\\xd6\\x88\\x98\\x13\\xd0\\xcf\\x64\\x0c\\x95\\x58\\x1d\\xfd\\x14\\xc0\\x00\\x03\\x40\\xfc\\xbf\\xec\\xda\\x46\\x7e\\xf0\\x96\\x34\\x60\\xa1\\x38\\x7e\\x4a\\xff\\xbc\\x65\\x44\\xc0\\x1d\\x9b\\x6d\\x4c\\x2e\\x8b\\x78\\x3f\\x2f\\x59\\x9c\\x54\\x07\\xb8\\x10\\xba\\x5e\\x8f\\x04\\x10\\x42\\xc7\\x86\\xb2\\x22\\x52\\x61\\x45\\x38\\x89\\x27\\x99\\xaf\\xc6\\x4b\\x26\\x11\\xa9\\x2f\\xa7\\xd0\\x9a\\x09\\x4f\\x20\\xaf\\x9a\\xc3\\x93\\xb5\\x91\\x54\\x02\\xe2\\x83\\xd8\\x32\\x9e\\x50\\x2f\\xaa\\x88\\x36\\xd1\\x8a\\x93\\xbb\\xcb\\x7d\\xc0\\xe7\\xb8\\xd7\\x11\\x69\\xaa\\x49\\x82\\xd6\\x95\\x35\\x2c\\xa1\\x40\\x97\\x80\\x2a\\xc2\\x90\\xd3\\x0f\\x4f\\x2e\\xe8\\x28\\x72\\x4a\\x41\\xab\\x4a\\x75\\xf0\\xb3\\x7d\\xfb\\xe8\\x85\\x51\\x80\\x17\\x1f\\xad\\xb1\\xc9\\xd5\\x2f\\xa0\\x2a\\x82\\xe2\\xf5\\xcd\\x9d\\x95\\x70\\x90\\xf6\\x6b\\x33\\x46\\x42\\x83\\x90\\x43\\xb6\\xf0\\xb0\\x99\\x11\\x67\\xd6\\x63\\x2d\\xec\\x0a\\xea\\x30\\xe7\\x64\\x27\\x05\\x8c\\xaf\\x1f\\xdf\\x0d\\x47\\x84\\x37\\x8a\\x3a\\x10\\xa9\\x80\\xab\\x83\\x31\\x32\\x36\\x00\\x96\\x9c\\xf6\\x20\\xa9\\xb8\\x86\\x82\\x4b\\x44\\x3f\\xcb\\x06\\xbe\\xd1\\x74\\xe9\\xb7\\x2d\\xa7\\xd4\\x90\\x95\\xac\\xae\\x4d\\xcf\\xbd\\x53\\x94\\x01\\x2e\\x74\\xd7\\x87\\x8a\\x02\\xea\\xac\\xed\\x06\\x96\\x41\\x61\\x69\\x69\\xee\\xce\\x01\\xa6\\x0b\\x70\\xc4\\xa7\\xc1\\x77\\xfa\\x1b\\x3c\\x42\\xe0\\x2e\\x9c\\x41\\x34\\x44\\x83\\xbc\\x01\\xe9\\x35\\x20\\x03\\xca\\xe7\\x47\\x74\\xd9\\x51\\xcf\\xf4\\xeb\\x4c\\xe8\\x9e\\xb2\\x49\\x2b\\x20\\xd2\\x1a\\x59\\x30\\x48\\x93\\x81\\xbc\\xef\\xc3\\x90\\x10\\x81\\x86\\x90\\xe9\\xae\\x44\\x47\\x44\\x24\\xbe\\x43\\xeb\\x91\\x44\\xd7\\x43\\xa2\\x3b\\x1b\\xed\\xb7\\x9a\\x08\\x75\\x82\\xbf\\xd2\\xa0\\xe5\\x2f\\x36\\x60\\xe6\\xb0\\xb0\\x33\\x80\\x52\\x1f\\x92\\xb7\\x10\\xe8\\xae\\xb0\\x17\\x9e\\x6c\\x0a\\x3c\\x29\\x6f\\xdf\\x15\\xa6\\x12\\x85\\xf8\\x04\\x70\\xa0\\x2b\\xdc\\xb7\\x8a\\x07\\xd2\\x98\\x50\\x16\\x61\\xfd\\xd6\\xde\\xfc\\x47\\x8a\\x4c\\xdc\\x3d\\xd9\\xe1\\xc6\\xb6\\xf8\\xb0\\x92\\x1c\\x8b\\x8d\\x46\\x59\\x26\\xb8\\x7c\\x2d\\xc0\\x85\\xce\\x5e\\x0b\\xff\\xf7\\x65\\x08\\x64\\x05\\x92\\x94\\x50\\xfe\\x55\\x29\\x3f\\xea\\x70\\x88\\xcf\\xdc\\x3e\\xa1\\x4e\\x15\\x5c\\x15\\x90\\x51\\x5c\\x13\\x4b\\x02\\xef\\x31\\xa7\\x83\\x8e\\xd5\\xb2\\xb9\\xff\\xe4\\xd2\\x2e\\xc5\\x83\\x51\\x6e\\x11\\x88\\x81\\x14\\xf0\\x0d\\x14\\x29\\x44\\x5c\\xd0\\x56\\xfb\\x64\\xd4\\x15\\x38\\xb5\\xcc\\x8e\\x9a\\x68\\x00\\x60\\x99\\x62\\x60\\x30\\x84\\x13\\x5a\\x89\\x88\\x7f\\x86\\xd8\\x95\\x10\\x5f\\x19\\xcc\\xae\\xbe\\xc1\\x62\\x41\\x95\\x00\\x31\\xd8\\x0c\\xc8\\xd6\\x9a\\x12\\xd7\\x94\\x53\\x45\\xbc\\x49\\x02\\xc3\\x31\\x32\\x98\\x6e\\x58\\x13\\x17\\xfd\\xe7\\x78\\x28\\x26\\x24\\x6f\\xf3\\x31\\x6e\\xbb\\xa1\\x66\\x56\\x51\\xd9\\xe0\\x1b\\x37\\xdf\\x99\\x9f\\x06\\x67\\xba\\x2b\\xcc\\xfb\\x6d\\x77\\x37\\x47\\xe8\\x0e\\x31\\xdd\\x85\\x48\\x24\\x39\\xb5\\xce\\xec\\x2b\\x35\\xef\\x41\\x4a\\xef\\x22\\x39\\xb1\\x53\\x92\\xe3\\xfc\\x4d\\xf5\\x62\\x28\\x15\\x82\\xdc\\x81\\x82\\x5c\\xf3\\xa6\\x3c\\x1a\\xb9\\x4d\\x6b\\xfa\\x2a\\xf6\\xd4\\x75\\x61\\xf0\\x07\\xa1\\xe8\\x02\\x6c\\x94\\xb1\\x2e\\x24\\x88\\x88\\x9e\\xc1\\x99\\xe9\\xe0\\x90\\xe0\\x6a\\x7b\\xb2\\x19\\x1a\\x01\\xda\\xb0\\x32\\xa2\\x5d\\x92\\x3b\\x58\\xee\\x4f\\x9a\\x6e\\xcc\\xfc\\xc1\\x18\\xc3\\x64\\x8e\\xf3\\x57\\xa3\\x7d\\x01\\x30\\x34\\x0a\\xcc\\x9c\\x3b\\xfd\\x47\\xff\\x95\\x36\\xd3\\xb6\\x7b\\x00\\x07\\x74\\x3a\\xda\\xd7\\xdc\\x92\\xcc\\x26\\x7a\\x88\\x1e\\x28\\x2f\\x46\\xa0\\x85\\xc2\\x5a\\xf5\\x90\\x2b\\x9a\\xaa\\x9f\\x44\\xb7\\xc8\\x2e\\x1d\\x78\\xa6\\xf0\\x4b\\x32\\xb7\\xf5\\xaf\\xb6\\xe9\\x52\\xd4\\x00\\xa5\\xe4\\x41\\x3a\\x1a\\x34\\x76\\xb5\\xa8\\x17\\x20\\x6c\\x44\\x53\\x3d\\x27\\x01\\x63\\xd1\\x36\\x5b\\x80\\x0a\\xcb\\x8d\\x0d\\x88\\x7f\\xa5\\xdf\\xc4\\x15\\x49\\x02\\x64\\x2a\\x62\\x21\\xe0\\x43\\x93\\x07\\x0b\\x30\\x29\\x76\\x87\\xe2\\x01\\x6a\\x9a\\xda\\xd9\\xc0\\x2f\\x95\\x84\\x09\\xc1\\x04\\x24\\x72\\xc1\\x22\\x55\\x7f\\xaf\\x50\\x84\\x75\\x38\\x0f\\x99\\x45\\xd0\\x6f\\xa0\\x00\\x42\\xef\\xe8\\xa9\\xc5\\x17\\xef\\xc4\\x07\\x69\\x48\\x14\\x18\\xd9\\xb2\\x1d\\xce\\xea\\xfc\\x58\\xd5\\xd9\\x4c\\xe0\\x39\\x40\\x05\\xff\\x89\\x28\\x03\\xba\\xcd\\xb0\\x79\\xd7\\x22\\x4c\\x30\\x87\\x96\\x49\\x14\\x4b\\x11\\xa1\\xf4\\x25\\x81\\xa4\\x14\\x1a\\x13\\x10\\x54\\x31\\x3f\\x94\\x91\\xae\\x45\\x0d\\xe1\\x61\\x78\\x01\\xde\\xb1\\x52\\xb8\\x23\\xef\\xb8\\x02\\xbe\\xbe\\x77\\x88\\x67\\xd0\\x10\\xf7\\x09\\xd0\\x50\\x86\\x26\\xc5\\x34\\x8f\\x7b\\x5e\\x02\\x10\\xe1\\x7d\\xc2\\x02\\xc5\\xad\\x81\\xa2\\x4a\\x8b\\x0f\\xc3\\x7d\\x85\\x0f\\xa4\\x9a\\x2e\\x5c\\x0d\\xc5\\x05\\x9e\\x3d\\xb9\\x72\\xc4\\x12\\x0e\\x9f\\x45\\x6e\\x01\\xae\\xda\\x77\\x51\\x88\\x78\\x36\\x61\\x90\\xe5\\x5d\\x3a\\xf4\\xff\\x1a\\x2c\\xa5\\xc0\\x9e\\x0b\\x32\\x6e\\xdd\\x72\\x00\\xd5\\x92\\xec\\xb1\\x62\\xb6\\xb6\\x1c\\x82\\xa4\\x8e\\xcf\\x1f\\xb4\\x9a\\x9f\\xc7\\x16\\x15\\xf8\\x9e\\x2a\\x95\\x25\\xe1\\xcb\\x04\\xe2\\x4f\\x37\\x20\\x3b\\x86\\x37\\x50\\xee\\x91\\x60\\x2a\\x24\\x21\\x83\\x20\\x28\\xa1\\x32\\x46\\xb2\\x6d\\xbc\\x5d\\x32\\x3a\\x21\\x4b\\xcd\\xdd\\x55\\x45\\xa5\\x4d\\x64\\x8c\\x8e\\xff\\xd5\\xa1\\xb8\\x57\\x7f\\x23\\xcf\\x59\\x6a\\x08\\x7d\\x16\\x5a\\x4e\\x27\\x3a\\xb7\\x77\\x4f\\x55\\x46\\xb8\\xad\\x46\\xf1\\xbc\\x7c\\xb3\\xd1\\x22\\xac\\xc6\\x29\\x00\\xb3\\x9b\\xea\\xe9\\x41\\x08\\x10\\x48\\x6c\\xba\\x77\\xe4\\x04\\x6d\\x1d\\xb3\\xd5\\x84\\x1d\\xc6\\x0f\\x5f\\xb3\\xd9\\x7a\\xde\\xe0\\x73\\x8b\\x98\\x4b\\xf9\\x58\\xb8\\xc5\\x94\\x5c\\xee\\xdb\\x36\\x16\\xc4\\x7e\\x2f\\x17\\xf7\\x0d\\x20\\x3b\\x89\\xb5\\x1b\\x5a\\xfd\\x29\\x8e\\x05\\xd9\\x36\\x61\\xf9\\x07\\x6f\\xdc\\x95\\xbc\\xcf\\x05\\xe7\\xf8\\x82\\x3b\\xcc\\x15\\x79\\xc4\\x5f\\x26\\x26\\x57\\xf9\\x9f\\x6b\\x83\\xea\\x7e\\x73\\xe7\\xd8\\x30\\xc8\\xd0\\x1d\\xc8\\x19\\xe4\\x52\\x1e\\x68\\x28\\x9a\\x7c\\x10\\x06\\x3b\\x37\\x09\\x01\\x6e\\x08\\x1b\\x38\\x06\\x5e\\x2f\\x6d\\x7f\\xc5\\x3a\\xbe\\xc3\\x5b\\x6a\\x90\\xf5\\x63\\xba\\x09\\xe0\\x17\\x72\\x72\\xbd\\xb8\\x59\\xcf\\xc3\\x41\\x49\\xe1\\x15\\x35\\x8c\\x0b\\x93\\xc0\\xaa\\x4e\\xe5\\xd7\\xf8\\x8b\\x57\\x43\\x09\\x19\\xb4\\x18\\xf8\\x4e\\x11\\x51\\x3c\\xca\\x54\\xc3\\xad\\x9e\\x39\\x09\\xf2\\x27\\x98\\xa3\\xe9\\xcd\\x3c\\x64\\x25\\xa5\\x15\\xf4\\x5d\\x6c\\xc5\\xe9\\x64\\x55\\x11\\x40\\x4b\\x72\\x0f\\x19\\xc7\\x96\\xb3\\xd3\\x8f\\x9c\\xef\\x8a\\xdb\\x49\\xc9\\x7c\\x4b\\x38\\x02\\x0e\\xd7\\x45\\x6c\\x66\\xa5\\xab\\xb3\\xfc\\xb1\\xa0\\x1c\\x28\\xbf\\x5e\\x05\\x1a\\x35\\x26\\xc8\\x00\\xe4\\xf2\\xca\\x2e\\x52\\x10\\x40\\xf4\\xfa\\xa4\\x67\\x4e\\x51\\x0a\\xf1\\x4d\\x8a\\x94\\x64\\x95\\x1a\\xa3\\x68\\xbf\\x5d\\x37\\xa1\\x87\\xd4\\xfc\\xb6\\x52\\x00\\x8a\\x64\\xc5\\x4e\\xf8\\x1e\\x9e\\x2b\\x81\\x3b\\x3e\\x80\\x6f\\x1c\\x37\\x7b\\xb6\\x52\\xc2\\x64\\x23\\x25\\xfa\\x8d\\x06\\x88\\xc5\\x84\\xd2\\x20\\x6b\\x93\\xa9\\xa2\\x0c\\x86\\x89\\x22\\x14\\xcb\\x6b\\xd1\\xbb\\x19\\x13\\xb0\\xd2\\xca\\xbe\\xb9\\x96\\xca\\x02\\x00\\xe7\\xc4\\xc0\\x1e\\xa3\\x39\\xde\\xdb\\xe0\\xc5\\x7f\\x4d\\xc2\\xc3\\x4c\\xb9\\x0d\\xfb\\xff\\xf1\\x8d\\x0e\\x24\\x57\\x63\\x90\\x22\\x2d\\x91\\x3d\\xc6\\x9b\\x4a\\x57\\x75\\xa3\\x9e\\x7e\\x21\\xc2\\x68\\x16\\x60\\x88\\xea\\x66\\x58\\x0e\\x86\\x32\\x21\\x4f\\xc3\\x31\\xb2\\x39\\x63\\x04\\x5c\\xf4\\xe7\\x46\\x9b\\x7a\\x2b\\x7b\\x58\\x4e\\xcc\\x35\\x82\\xe4\\x2d\\x52\\x86\\x4e\\x18\\xac\\x19\\x41\\x1b\\x4b\\xf2\\x18\\x92\\x0d\\x1d\\x88\\xaa\\x88\\xb8\\x35\\x0f\\xb0\\x8c\\x7f\\xb0\\x94\\xf2\\x67\\x4c\\x13\\x1e\\xaf\\xea\\x43\\x03\\xf4\\xf9\\xa1\\x8e\\x4a\\x50\\xfd\\xf8\\xf2\\x5f\\x72\\xa4\\xfd\\xdb\\xff\\x45\\x53\\xcd\\xb4\\x2f\\x42\\x84\\xf9\\xf8\\x66\\x9f\\x58\\x02\\x5a\\xa3\\x1b\\x1a\\x14\\x14\\x1c\\x97\\x53\\xb1\\xec\\x61\\xe8\\x39\\xc5\\x0f\\x8c\\xc7\\x8d\\x86\\xb1\\xa3\\x87\\x2b\\x51\\x1b\\x04\\xc3\\x40\\x0d\\x0e\\x24\\x94\\x2a\\x79\\x81\\x19\\x1a\\x6a\\x25\\xa7\\xae\\x15\\x76\\x1e\\xd1\\x50\\x35\\xea\\xa8\\xf2\\xf2\\x90\\x3f\\xd2\\xe0\\x69\\x88\\x42\\x7c\\x13\\xb3\\xd9\\x6a\\x14\\x16\\xd5\\xc2\\xe9\\x0d\\x31\\xf0\\xe2\\x7a\\xae\\x20\\x75\\xb8\\x3b\\xb2\\x73\\x75\\xcf\\x70\\x06\\xb0\\x06\\x8a\\x8b\\x02\\xe0\\x59\\x6d\\x16\\xda\\x28\\x63\\x0b\\x6d\\xc2\\x69\\xe9\\x98\\x90\\x09\\xf4\\xca\\xfe\\xff\\xf3\\x54\\x0c\\x4f\\x45\\xb4\\xc6\\xed\\x66\\xcd\\xbe\\x85\\xad\\x8e\\x79\\x0b\\x29\\xeb\\x5b\\x1c\\xbe\\xa9\\x81\\x4e\\x49\\x33\\x94\\xca\\x26\\xc8\\x7a\\x60\\xd0\\x4d\\x1c\\x9d\\x19\\x1b\\xa3\\xd3\\x06\\xa0\\x30\\xd1\\xbd\\x3b\\x7a\\xa8\\x01\\xa6\\xa1\\xd6\\xb9\\x44\\xb2\\xf1\\x87\\x80\\x36\\xa1\\x96\\xb8\\x70\\x8b\\xef\\x29\\xb5\\xd4\\x4c\\xe4\\x1a\\x17\\x6d\\xb7\\x06\\x50\\x21\\x7b\\xa1\\x1d\\x0b\\x31\\x0f\\x82\\x6d\\x33\\x32\\xc4\\x32\\x67\\x09\\x30\\x4e\\x33\\x21\\x5d\\xfc\\x75\\xa2\\x9d\\x41\\x16\\x20\\xf2\\x1c\\xd7\\x2a\\x76\\x8a\\xde\\x6b\\xf7\\xfa\\x9b\\xea\\x57\\x0b\\x50\\x63\\x3e\\xe0\\x95\\xc2\\xbd\\x6b\\x1e\\xe9\\x83\\x88\\x20\\xf7\\x0f\\x80\\xcc\\x40\\xdd\\x3a\\xc5\\x44\\x99\\xcb\\xd7\\xc6\\x88\\x5a\\xd8\\x22\\x88\\x44\\x12\\x86\\xed\\x46\\xdc\\x9b\\xbf\\x00\\x87\\xf1\\x5e\\xa1\\xaa\\x07\\x4e\\x00\\xa6\\x3c\\x7c\\xc1\\x99\\x82\\x72\\xaa\\x3a\\x7a\\x36\\xc0\\xe5\\xec\\xcb\\x89\\xf7\\xbe\\xbb\\xc7\\x65\\xcc\\xd0\\x59\\x92\\x54\\x50\\xab\\x6d\\xa3\\x49\\x19\\x84\\xa6\\xb6\\xcf\\xf7\\x96\\x09\\x19\\x97\\x72\\x8c\\x51\\x4a\\xbf\\x5b\\x5f\\x07\\x84\\x99\\x17\\x37\\x00\\x02\\xf6\\x7b\\xfa\\x8e\\xd7\\xd8\\x59\\xc7\\x46\\x21\\x03\\x51\\xc3\\xfa\\x8e\\xa2\\x78\\x38\\x7e\\x68\\xec\\x95\\x35\\x28\\xa8\\xe2\\xfd\\x53\\xc2\\x6a\\xfa\\x2c\\x4d\\x96\\xea\\x10\\xbc\\x54\\x2b\\x8b\\x5e\\x92\\x98\\x94\\xae\\x19\\x8b\\xb7\\x54\\x13\\x8b\\x5b\\x4a\\xa9\\x57\\xef\\x44\\x84\\xf3\\x08\\xd8\\x2f\\x80\\xb4\\xae\\xbe\\x63\\x96\\xac\\x66\\x89\\x43\\xd9\\xd4\\x84\\xa3\\xc0\\x38\\x07\\xcc\\xbb\\x2f\\xa1\\xac\\xed\\x89\\x0a\\xd9\\xa0\\x24\\x5a\\xbe\\x47\\x14\\x7e\\xf4\\x4f\\xee\\x61\\x0a\\xa8\\xab\\xee\\x95\\xbf\\xcc\\x72\\x45\\x60\\x48\\x90\\x29\\x0a\\x70\\x85\\x21\\x5e\\xee\\x9a\\x93\\x74\\x30\\x09\\x36\\x63\\x8a\\x41\\xdb\\x20\\x95\\x32\\x49\\x47\\x6c\\x0f\\xe3\\x99\\x72\\x51\\x69\\x80\\x47\\x7b\\x69\\x78\\x66\\x56\\x4a\\x64\\x76\\x6f\\x5e\\xe7\\xcc\\xf5\\x95\\xb1\\x31\\xf8\\x17\\x6c\\x85\\xcf\\x98\\x39\\x86\\x35\\xbf\\x00\\x9e\\x32\\x1c\\x48\\x00\\x2b\\xc8\\x72\\xe8\\x31\\x65\\x04\\x4a\\x3f\\xdf\\x96\\x82\\xd9\\xcc\\xb5\\x23\\x93\\x03\\xc4\\xf6\\x11\\xe9\\xba\\xd9\\x94\\xd2\\x1a\\xcf\\xb7\\x96\\x74\\xb3\\x05\\xc9\\x9b\\x38\\x2b\\xa2\\x77\\xed\\x9f\\x90\\xd8\\x8e\\x7e\\x05\\x15\\x06\\xa5\\xbd\\x57\\x50\\x43\\x84\\x68\\x66\\x26\\x1b\\x01\\xd7\\xb7\\xef\\xec\\x4c\\xb5\\x9c\\x20\\x81\\x87\\xc7\\xec\\xb1\\x4f\\x2d\\xa0\\x40\\x05\\xf0\\xfb\\x26\\x7e\\x54\\x4d\\xbb\\x47\\x08\\x32\\x82\\xc5\\x55\\x28\\x98\\xf8\\xb7\\x6e\\xf7\\x08\\x2d\\xa5\\xf3\\x1e\\xa0\\x2e\\xb9\\xec\\xb9\\x63\\x1e\\x71\\x08\\x00\\x96\\x71\\x32\\x9d\\xe0\\x77\\x14\\x12\\xa8\\x6e\\x58\\x44\\x11\\x5c\\x85\\xb0\\x15\\x62\\x91\\x10\\xeb\\xb4\\x88\\x87\\xc3\\xe0\\x04\\xb9\\x52\\x72\\x1f\\x04\\x8e\\x39\\xd5\\x77\\x00\\x81\\x7d\\xaf\\xec\\xb1\\x59\\x95\\x5f\\x20\\xff\\x2b\\xbb\\x26\\x5f\\x95\\x01\\x85\\x49\\x75\\x6c\\x48\\x4e\\x15\\x54\\x4d\\x44\\xc2\\x35\\x75\\x80\\x4c\\xbe\\x40\\x04\\x07\\x48\\x83\\x51\\x08\\xc9\\x05\\x73\\x54\\x1b\\x24\\xef\\x12\\x94\\xfa\\x21\\x1f\\x34\\x5f\\x4d\\x84\\x89\\x30\\x3c\\x1b\\x17\\x06\\x8f\\xb0\\x41\\x66\\x68\\xad\\xa9\\x58\\x04\\xc1\\xfe\\xdf\\x21\\xe8\\x0c\\x62\\x95\\x32\\x9b\\xcd\\x10\\x5f\\xa7\\x26\\x0e\\x5e\\x05\\xef\\x9d\\xd8\\x0a\\x84\\x54\\xbb\\xc9\\xf2\\x0e\\xfe\\x83\\xb2\\xc0\\x3d\\x59\\x0c\\x40\\x36\\x27\\x3b\\x20\\x43\\xc8\\x46\\xdf\\xc3\\x1c\\x19\\x42\\x42\\x17\\xa1\\xf1\\x0a\\xac\\x5e\\x10\\x35\\x3e\\x2a\\x07\\x73\\xbc\\x40\\xa1\\x72\\x31\\xb6\\x42\\x90\\x05\\x0b\\x39\\x17\\x88\\x44\\x0c\\x9c\\x47\\x65\\x5a\\x5c\\x05\\x34\\x34\\xed\\xd0\\x31\\x27\\x53\\xb0\\x81\\xb6\\xba\\xbf\\x76\\x05\\xa4\\xdc\\xa2\\x46\\x1f\\x25\\xbc\\x69\\xa7\\xba\\x12\\x00\\xae\\x43\\xb8\\xfd\\x90\\x2d\\x2d\\xbd\\x81\\x63\\x8b\\x40\\xb2\\xe3\\x1a\\x05\\xc0\\x59\\x72\\x9e\\x96\\xe4\\xa1\\x6c\\xfa\\x8a\\xeb\\x00\\xba\\x21\\x3d\\x4b\\x56\\xca\\x8b\\x72\\xc3\\x5e\\x12\\x79\\x81\\x76\\x6b\\xf2\\x8f\\x3a\\xd3\\x84\\x9c\\x63\\x48\\xb7\\x28\\xc2\\x8f\\x71\\xf9\\xe5\\xce\\x97\\x97\\xcc\\x32\\xdd\\x8f\\xe1\\xc5\\x0b\\x86\\x3f\\xa4\\x8c\\xcd\\x89\\x18\\x39\\xd2\\x65\\x48\\x4e\\x14\\x7d\\x3f\\xc5\\x80\\x9a\\x48\\x4a\\x60\\x2b\\x47\\xdf\\x6e\\xe4\\x08\\x45\\x79\\x7d\\xa7\\xfc\\x28\\x90\\x0e\\x30\\x03\\x64\\x50\\x41\\xd3\\xfb\\x7f\\x4f\\x0b\\x49\\xf2\\x02\\x9c\\x20\\x13\\xa5\\xa4\\x6d\\x56\\x31\\x3f\\xe7\\xaa\\x94\\xee\\xa0\\x3e\\xa1\\x9c\\x17\\xcc\\xd0\\x90\\xbc\\x04\\xba\\x66\\x1a\\x5a\\x2a\\x3d\\x40\\xcf\\xae\\x8a\\xfd\\x8f\\x80\\x53\\x3d\\x4f\\xfa\\x2c\\x4e\\xea\\xd9\\xc5\\x59\\x22\\x36\\x84\\x39\\xc0\\x91\\x0a\\xca\\x88\\x50\\xb3\\x00\\x08\\x6c\\xb8\\x33\\x8c\\x88\\x26\\xc5\\x39\\x90\\x00\\x0f\\x9f\\x5d\\x81\\x1a\\x85\\xf7\\x74\\xc5\\x80\\x0c\\x78\\x49\\xc9\\x40\\xef\\xb4\\x15\\xc5\\xfc\\x24\\xd7\\x46\\xa9\\xa1\\xec\\xbd\\x84\\x75\\x94\\x42\\x54\\x8d\\x10\\xb7\\x9c\\xb9\\x84\\x73\\x7f\\x64\\xc4\\x16\\xca\\x61\\x43\\xcc\\x34\\x1f\\x7e\\x4b\\x30\\x2a\\x68\\x40\\x96\\x8f\\xa0\\x86\\x97\\x29\\xb1\\xb5\\x16\\xc8\\x00\\x3f\\x11\\x90\\x18\\x4f\\x81\\xc2\\xbd\\x6d\\xa7\\x95\\x14\\x66\\x0d\\x7a\\x3e\\x7e\\xa7\\xf3\\x45\\x78\\xc1\\x9d\\xbd\\xee\\xcc\\x46\\x3f\\xde\\xa1\\x8b\\x34\\x52\\xb2\\xc6\\x12\\x2e\\x63\\xe2\\x84\\x45\\x4a\\xc0\\x37\\x95\\x30\\x91\\x39\\x92\\x31\\x22\\xc1\\x0a\\x78\\x48\\x8b\\x21\\x88\\x30\\x22\\xde\\x05\\x2c\\x23\\xce\\x65\\x9c\\x82\\x96\\x1d\\xf5\\xcc\\x78\\x57\\x74\\xd3\\xea\\xe2\\xc7\\x7f\\x8e\\x39\\x47\\x1e\\x0d\\xa1\\x7c\\x4b\\xc1\\x74\\x6f\\xcd\\x13\\x2e\\xe8\\x51\\xfa\\x41\\x1e\\x1b\\x5b\\x1b\\x8b\\x3a\\xc3\\x51\\x29\\x29\\x0e\\x84\\xa9\\xad\\x41\\x1b\\xe2\\xd2\\x73\\x4c\\xb9\\xb5\\x60\\xa1\\xd2\\x5c\\x5f\\x2a\\x23\\x6f\\xc6\\xfb\\xd6\\x0e\\x1a\\x72\\x6c\\xf2\\x42\\x14\\xc8\\x16\\x26\\x46\\x04\\x06\\x10\\xae\\x94\\xa4\\x14\\xce\\x1b\\xef\\x42\\x25\\x1e\\xb1\\x64\\xd7\\x15\\xc3\\x7c\\x98\\xff\\x32\\xd6\\xfd\\xdf\\x16\\x4d\\x1b\\x9b\\xa7\\x46\\x23\\x21\\x4b\\xe2\\xc5\\x98\\x8e\\xd4\\x5f\\xb1\\xda\\xa4\\x27\\x6b\\x8f\\xc9\\xbc\\x5e\\x24\\x59\\x0f\\x6e\\x45\\xc6\\x5a\\xed\\x42\\xd9\\x53\\xb0\\x8e\\xf2\\x8c\\x4a\\xa7\\xaf\\x8b\\x79\\xa9\\xb8\\x47\\x78\\xb2\\x8a\\xd0\\xb7\\xf2\\x66\\x11\\xb6\\xc8\\x69\\xa9\\x3b\\x0a\\x72\\x47\\x81\\x19\\xe2\\x3a\\x93\\x0a\\xf6\\xf3\\x03\\x8c\\x14\\xa3\\x30\\x32\\x44\\xa5\\x31\\xad\\xa6\\xda\\x9c\\x1e\\x04\\xc5\\x05\\x81\\x91\\x9a\\x14\\x20\\xf6\\x26\\xdd\\xd6\\xd7\\x49\\xd8\\xd3\\x98\\xfc\\xab\\xca\\x58\\xc8\\x5b\\x27\\x37\\xfc\\x0b\\x58\\x38\\x2c\\xf2\\x2a\\x02\\x7e\\x95\\x05\\x7d\\x20\\x9a\\x17\\x26\\x87\\xce\\x89\\x7f\\x70\\x92\\x10\\xb9\\x6e\\x94\\x9e\\xfc\\x26\\xf4\\xe3\\xea\\x74\\x85\\x29\\x70\\x1c\\x72\\xf1\\xe0\\x01\\x1a\\xf2\\xc3\\x59\\xf3\\xd8\\xe8\\x00\\xb7\\xed\\x6d\\xea\\x35\\x55\\x92\\x66\\x4d\\xaa\\x1c\\x61\\x1c\\x9d\\x0b\\x6d\\x99\\x3d\\x8d\\x40\\x77\\x69\\xae\\x11\\xb0\\x78\\x62\\xce\\x70\\xd4\\xb4\\x64\\xf3\\xfb\\x12\\xe3\\x92\\xc9\\xb0\\x38\\xc8\\x58\\xd6\\xb4\\x38\\x8e\\x05\\x0d\\x87\\x46\\x06\\xed\\xbc\\x22\\x3d\\xa3\\xa5\\x41\\xf1\\x33\\x46\\xd5\\x48\\xae\\x82\\xea\\x5c\\x51\\xae\\xd1\\xa0\\xe1\\xd0\\x4b\\x5e\\x8e\\x40\\x50\\x37\\x1d\\x28\\xb6\\xa5\\x88\\x71\\x86\\x4c\\x4c\\x23\\x5e\\x5f\\x63\\xab\\x07\\x25\\xf0\\x86\\x4f\\x85\\x24\\xbd\\x80\\x21\\xee\\x83\\x7c\\x96\\x41\\xc7\\xc9\\xfa\\xe7\\x0d\\x76\\x83\\xb0\\x11\\x2b\\xbb\\xa9\\x05\\x5d\\xb7\\x71\\x1b\\x95\\x70\\x9e\\x45\\xaa\\x6a\\xaf\\x30\\x86\\x86\\x49\\xea\\xac\\x46\\x88\\x08\\x6e\\xe1\\xc8\\x9a\\xe7\\x10\\x17\\xc5\\x33\\x6c\\xb9\\x5a\\x9d\\xa8\\xdd\\x29\\xb6\\x33\\x72\\x6f\\x95\\xce\\x2f\\x63\\x11\\xb3\\x2a\\x21\\x2c\\xa2\\xd0\\xa3\\xde\\x7f\\x5c\\xe1\\xbd\\x2c\\xef\\xcf\\x85\\x90\\x0b\\x08\\xd8\\xc2\\x6e\\x4c\\xb7\\x61\\x28\\xf1\\x7d\\xa6\\x49\\x03\\x1c\\x78\\xc1\\x31\\xc4\\x95\\x30\\x55\\x8e\\xfa\\x58\\x95\\x40\\x29\\x8c\\xd4\\x08\\x0d\\x82\\xc9\\xdc\\x75\\xf3\\xcc\\xc6\\xe2\\xd4\\xa4\\x4c\\x10\\x1b\\xf3\\xaa\\xe5\\x08\\x94\\x56\\x39\\x1e\\x57\\x35\\xb6\\x57\\x12\\x03\\x9e\\x21\\x60\\x9d\\x7d\\xef\\x31\\xf7\\xc5\\x67\\x06\\x50\\xce\\x86\\x19\\x35\\x89\\x10\\x2b\\x61\\xe1\\xbe\\x71\\xbb\\x3b\\x34\\x0a\\x5e\\xa0\\xc8\\x0b\\xd7\\x0e\\xd6\\xa9\\x73\\x4b\\x99\\x94\\x3d\\xa8\\x7f\\x60\\xd4\\x3f\\xb9\\x35\\x4e\\xf7\\xb1\\x08\\x03\\xf1\\x08\\x5f\\xc2\\x10\\xbd\\x34\\xb9\\x56\\x8e\\x60\\x4d\\x56\\x2c\\x99\\xe7\\xca\\xcd\\x4b\\xee\\xf9\\x79\\x81\\x17\\x5c\\x5b\\x4d\\xa5\\xe7\\xc2\\xad\\xb6\\xfb\\x7c\\x2a\\x4a\\x5a\\x69\\xcd\\xfe\\x2d\\x93\\xcf\\x0c\\xa6\\x7c\\xcc\\x6d\\x45\\x4a\\x9f\\x35\\x00\\xb5\\x82\\x12\\x81\\xdc\\x8d\\x09\\xa1\\x51\\x2c\\x85\\x44\\x37\\xb3\\x0e\\xe1\\x18\\x57\\x6f\\xe5\\x44\\x78\\x5b\\x95\\x1c\\xc2\\x75\\xf2\\x78\\x88\\xb0\\x18\\xbe\\x14\\x79\\x70\\xdf\\x27\\x3e\\x60\\xed\\x20\\xc2\\xb8\\x51\\x8a\\xd5\\x61\\x88\\xa2\\x4a\\x36\\xb9\\xd8\\x0c\\x39\\x57\\x30\\xb6\\x1b\\x4f\\x8c\\x22\\x90\\x7a\\xa9\\xc6\\x53\\x01\\xe7\\x39\\xa0\\xfc\\x73\\x24\\x1f\\x9d\\x6a\\x10\\x5c\\xe3\\x43\\xca\\xb8\\xc5\\xb6\\x86\\x29\\x21\\xec\\xd0\\xea\\xa0\\xe8\\xf8\\x70\\xf3\\x9c\\x95\\x08\\x37\\xa5\\x50\\xdf\\x26\\xc6\\xf0\\xf3\\x02\\x2a\\xb2\\x0a\\x48\\x91\\x07\\x28\\x75\\xea\\x56\\xbb\\x83\\x98\\x11\\x35\\xcb\\xd0\\x7f\\x4b\\x50\\xf4\\x1b\\x61\\xa5\\x43\\x5e\\x09\\x85\\x72\\x4a\\x22\\x89\\xd5\\x38\\x99\\xe7\\x3a\\x78\\x88\\x58\\x49\\x30\\xa3\\x84\\x40\\x04\\x51\\x0c\\x19\\x7e\\x59\\xae\\xcf\\x70\\xe0\\x00\\x1f\\x06\\x40\\x39\\x14\\xef\\x17\\x67\\xbd\\x00\\xd6\\xc2\\xe8\\xfc\\x99\\x14\\xe7\\x29\\x70\\xcb\\x66\\x32\\xc1\\x68\\x13\\x00\\x71\\xd0\\x15\\x47\\xc4\\x28\\x08\\x4a\\x13\\x33\\x0a\\x02\\x87\\x72\\x88\\x14\\xde\\xe6\\xa3\\xf8\\x34\\x09\\x01\\xee\\x6b\\x8b\\x3c\\x91\\x88\\x3c\\x6a\\x0d\\x60\\xcf\\xcd\\xcd\\xf8\\x6f\\x2a\\x74\\xb2\\x35\\x68\\x36\\xc6\\x2c\\xf3\\x01\\x67\\x52\\x01\\x1a\\x5f\\x51\\x66\\xaf\\x59\\x2a\\x1a\\xb2\\x4f\\x11\\x2b\\x01\\x5b\\x25\\x7d\\xaa\\x9d\\x32\\xbc\\xa4\\xd8\\xc4\\x07\\x0b\\xad\\x41\\xc2\\xdd\\x12\\x40\\xce\\x40\\xc9\\x3b\\xf9\\x2b\\x15\\x0f\\x33\\x0f\\x46\\x0d\\xb9\\xc8\\xf6\\xe9\\x5d\\x8f\\x16\\x57\\xcf\\x5e\\xec\\x97\\x87\\xd9\\x8e\\x19\\x74\\xba\\x46\\xdb\\x40\\xb2\\x6d\\xca\\x71\\x9a\\xbf\\x49\\x9d\\x7b\\x09\\x4e\\x42\\xc7\\xc8\\xc1\\x07\\xb5\\x38\\x87\\x69\\x31\\x2a\\xbd\\x84\\x81\\x49\\xcc\\xa0\\x35\\x63\\xad\\xa2\\xb2\\x5c\\x7c\\xd4\\x93\\x19\\x27\\x9c\\x98\\xc7\\xd6\\x0b\\xb1\\xd8\\x7c\\x9a\\x88\\xa4\\xcc\\x14\\x3b\\x4c\\x7c\\x0b\\x85\\x08\\xb9\\xbd\\xb0\\xad\\xc5\\x92\\xc1\\x10\\x49\\x9f\\x70\\x00\\xd1\\x25\\x7e\\x72\\x28\\x26\\xb1\\x6a\\x54\\x08\\xc8\\x16\\x22\\x0d\\x56\\xbf\\x38\\x9c\\x12\\xf5\\x67\\x86\\xa0\\x7f\\xe1\\x31\\x2a\\x86\\x3e\\x54\\xa1\\xda\\x06\\xff\\xe1\\x2f\\x81\\x94\\x5f\\xb8\\x50\\xbc\\x8b\\xdf\\x70\\x9e\\xb2\\x58\\x5f\\x70\\x55\\x50\\xd7\\xdb\\x2b\\xea\\x09\\xe6\\x0e\\x59\\x89\\x92\\x84\\x50\\x2d\\x89\\xcf\\x8d\\xea\\x0c\\x1b\\x15\\xe9\\x13\\x4c\\x00\\xcf\\x8f\\xa2\\xdc\\xbc\\x25\\x33\\xb1\\x65\\x0d\\x75\\x58\\x65\\xb5\\x37\\x15\\x40\\xf4\\x8c\\x6d\\xde\\x3c\\x85\\xbe\\xd1\\xae\\x8d\\xf1\\x56\\x3a\\xd1\\x62\\xde\\xd2\\x73\\x6e\\x5e\\x7a\\x3c\\x15\\xd9\\x33\\x3d\\xe8\\xd1\\x22\\x62\\xe9\\x2e\\x52\\xf8\\xeb\\x77\\xa2\\x35\\x13\\x9d\\x3b\\xc6\\x7b\\xbe\\x98\\xb1\\x1b\\x16\\x9a\\x78\\x5a\\x15\\x47\\xa9\\x48\\xa9\\xeb\\xac\\x61\\xed\\x52\\x9e\\x2f\\xba\\xc0\\xb2\\xf5\\xb5\\xb9\\xad\\xd4\\x38\\xb7\\x45\\xbb\\x00\\x33\\x86\\xed\\x04\\x16\\x37\\xb7\\x36\\x11\\xd7\\x6e\\x4c\\xe8\\xf1\\x94\\x40\\x6a\\x07\\x7f\\x7e\\xed\\x5d\\xfb\\x27\\xe4\\x53\\xd4\\x3b\\xbe\\x61\\x01\\xa7\\x97\\xef\\x60\\x30\\xa5\\x02\\xc7\\x61\\x24\\x51\\x6d\\xa6\\xdb\\x1d\\x6b\\x6e\\x80\\x19\\xb4\\x8e\\x0c\\x9c\\xd0\\x35\\x5f\\x61\\x6d\\x69\\x76\\x9d\\x40\\xb4\\x45\\xde\\xb0\\x64\\xe5\\xd3\\x6c\\x71\\x2a\\x04\\x01\\xf9\\x00\\x17\\x0d\\x78\\x92\\xc6\\x61\\x36\\x2f\\xe7\\x08\\x4d\\x2a\\x63\\x81\\x22\\x7a\\x80\\xdc\\x87\\x1c\\x20\\xd8\\xd1\\x84\\xd2\\x62\\xa2\\x41\\x7d\\x34\\xc9\\x87\\x95\\xc2\\x6a\\x65\\xa6\\x59\\xa3\\xae\\xa7\\x97\\x19\\x17\\x2e\\x38\\x97\\x88\\x44\\xeb\\x45\\xc0\\xa7\\xb8\\x23\\x06\\x87\\x6d\\x9c\\x2f\\x7e\\x1b\\xe0\\x02\\x06\\xa1\\x9b\\x59\\x57\\x34\\xe2\\xdd\\xab\\x34\\xa2\\x73\\x5b\\x7a\\x0f\\xc4\\x7a\\xe5\\x48\\x2e\\x4d\\x38\\x02\\x36\\xc6\\x56\\xc5\\x1f\\xec\\xb0\\x45\\xf1\\x4a\\x3d\\x57\\x90\\x3d\\xb2\\x71\\x85\\xf3\\x9b\\xb3\\x9f\\xfb\\xaf\\xbc\\x90\\xf5\\x9c\\xb0\\x24\\x81\\x3e\\xed\\xce\\x1f\\x03\\x04\\x9d\\xb7\\x61\\x46\\xa1\\x08\\x3c\\xdf\\xd9\\x60\\xd5\\x0c\\xf6\\x41\\x31\\xb7\\xb1\\x1f\\xa1\\xd6\\xb7\\xbb\\x6f\\x66\\x8d\\xa1\\x03\\x6b\\x0d\\xcb\\xad\\xf6\\x06\\x03\\xb9\\x8d\\x55\\x2f\\x5a\\xfb\\x2a\\xd7\\x31\\xd2\\xa9\\x07\\xef\\x55\\x3e\\x42\\x79\\xad\\xa7\\x59\\x1e\\x81\\x41\\x43\\x43\\xb9\\x05\\x67\\x90\\x24\\x10\\x8b\\xeb\\xdc\\x84\\x41\\xff\\x35\\xf0\\x72\\x6c\\x39\\xec\\x58\\xf9\\x17\\xa9\\x27\\xbd\\x5d\\xab\\x07\\x59\\xc3\\x4c\\x67\\xed\\x58\\x3a\\xce\\x92\\x8e\\x52\\xce\\x1a\\xa5\\x2b\\xb0\\xce\\xc8\\x94\\xc7\\x5f\\xb6\\x3d\\xdd\\x75\\xb5\\x00\\x0c\\x13\\x08\\x36\\x7c\\xdd\\x96\\x2d\\xe3\\xc8\\xac\\x2c\\xa4\\xf9\\x7b\\x11\\x5f\\x87\\xf5\\x20\\x8f\\x2f\\x60\\x2c\\x1c\\x69\\x21\\x5c\\xf2\\x15\\xf3\\x5a\\x16\\x10\\x6b\\x6b\\xce\\x31\\x2a\\x6a\\x15\\xaa\\x83\\xe4\\x64\\xc2\\xd4\\xc8\\x6c\\xb5\\xb4\\x2b\\x44\\x8f\\x08\\x39\\xc3\\xd9\\x5e\\xd2\\x08\\xb0\\x82\\x3b\\x07\\x62\\x20\\x10\\x88\\x40\\xd5\\x30\\xd9\\x6b\\xb4\\x28\\x18\\x04\\x73\\x3b\\x0d\\x81\\x04\\x02\\xf5\\x81\\x05\\x57\\x9e\\x42\\x31\\x94\\x2c\\x97\\x49\\x85\\x50\\x83\\xc4\\x0c\\x41\\x6b\\xa9\\x2a\\xc2\\x67\\xe1\\x66\\x16\\x20\\xb5\\xd4\\x91\\xae\\x70\\xb0\\x81\\x12\\x6a\\xe0\\x6f\\xe4\\xf7\\x12\\x4d\\x93\\x65\\x4c\\x2f\\xdd\\xe3\\x28\\xb7\\x2a\\x89\\x46\\x8c\\xc5\\xf2\\xb1\\x6f\\x37\\x08\\xe4\\x71\\x20\\xde\\xa9\\xed\\xf6\\x26\\x2c\\x82\\x4d\\xf1\\x6e\\x2f\\x29\\x93\\xb2\\xc2\\x98\\x9e\\xe2\\x3f\\xf2\\x9f\\xb1\\x10\\xb6\\x86\\x74\\x40\\x8d\\x37\\xe5\\x0a\\x1c\\x98\\x38\\xd2\\xbf\\x21\\x0b\\xee\\x08\\x8f\\xc8\\x3e\\xbf\\xdb\\x74\\xc7\\x23\\xb4\\x02\\x9d\\x86\\x81\\x29\\x02\\xaf\\x14\\x6d\\x86\\x88\\xb5\\xd8\\x53\\x1e\\xfc\\x0d\\x61\\x60\\xb8\\x6c\\xf6\\x42\\x65\\x80\\xe4\\x0c\\x99\\x96\\x7b\\x04\\xb6\\xc3\\x4b\\x49\\x66\\x55\\xfb\\x77\\x68\\x2d\\x41\\x65\\x24\\x53\\xa5\\x97\\x65\\x8f\\x5e\\xbb\\x24\\xe7\\x42\\xbd\\xab\\xb3\\x95\\x25\\x8e\\xcb\\x8b\\x9b\\x1a\\xd7\\x0d\\x6e\\xc4\\x74\\xf9\\xef\\x4b\\x7f\\xc0\\x22\\xb4\\x17\\x60\\xcd\\xf4\\xec\\x1d\\xa7\\x5a\\x0c\\x53\\x80\\x03\\x0f\\xf8\\x4a\\x6a\\x72\\xd6\\x65\\x0e\\x58\\x24\\x79\\xe8\\x2e\\x20\\xd5\\xb5\\x27\\x35\\x94\\x5b\\x7a\\x72\\x89\\x39\\x70\\x03\\x90\\x51\\xd5\\xec\\x47\\x32\\x62\\x40\\x26\\x13\\xf2\\x2a\\xa8\\x62\\x11\\x80\\xa8\\x05\\xfa\\xbe\\x56\\xdf\\x7a\\xcb\\x51\\x0b\\xbc\\x9a\\x8a\\x10\\x65\\xcc\\xc8\\x00\\xeb\\x61\\x8d\\x70\\xb1\\x30\\xa8\\x4d\\x66\\x85\\x90\\x0c\\x2c\\xdd\\x06\\xe7\\xf8\\x6f\\x76\\x6f\\x68\\x24\\x6e\\x79\\x61\\x68\\x77\\xa9\\x61\\xe2\\xe1\\xb5\\xa3\\xf8\\x2d\\x0d\\x2e\\xc4\\x3d\\x7b\\xea\\x5d\\x25\\x4e\\x1c\\x70\\xad\\x35\\xfb\\x85\\x64\\xd8\\x54\\xfb\\x36\\xf3\\xf0\\x43\\x2b\\xb6\\xc3\\xa0\\x9b\\xcb\\x0e\\xb5\\x8e\\xad\\xa0\\xbd\\x32\\xf0\\xb5\\x5d\\xc1\\xf3\\xa4\\x8e\\x11\\x05\\x86\\x6a\\xe1\\x30\\x2b\\x56\\x84\\x6a\\xf8\\x72\\xf8\\x09\\x83\\xda\\xb1\\x03\\x85\\x42\\x8a\\x88\\xe3\\xc4\\x4b\\xd6\\xce\\x07\\x7a\\x01\\x74\\x4a\\x01\\x9f\\x04\\x97\\x5f\\x7c\\x1f\\x4d\\x29\\xc7\\x72\\x75\\x53\\x4a\\x79\\x1f\\xf4\\x5b\\xfa\\x10\\xde\\xaa\\xae\\xa2\\x93\\x5e\\xa9\\x7b\\x43\\xc2\\xf3\\x3b\\x24\\xc7\\xb2\\x53\\x92\\x4a\\x52\\x9b\\xc2\\x39\\x28\\x22\\xdb\\x8f\\xba\\xfa\\xa5\\x51\\x32\\x09\\x4b\\x94\\xa2\\x84\\x84\\x28\\x33\\x8c\\xed\\x48\\xeb\\xb7\\x7d\\xb0\\xd2\\x56\\x65\\x5c\\x99\\xf2\\x53\\x24\\xe1\\x52\\x39\\x23\\x24\\xbb\\x73\\x3e\\x88\\x62\\x03\\x38\\x85\\x0e\\xd1\\xcc\\x83\\x11\\xa9\\x20\\x9b\\x4b\\x5a\\x13\\x15\\x44\\xa7\\x69\\x5f\\xc1\\x4a\\x64\\xd4\\x11\\x41\\xb6\\x30\\x86\\x98\\x51\\x74\\x6f\\x41\\x4a\\x46\\xcf\\x05\\x5b\\x1b\\x5b\\x38\\x23\\x10\\x96\\x82\\xc4\\x97\\x84\\x0c\\x5c\\x16\\x69\\x88\\x82\\x7d\\xc3\\x2a\\xfd\\xba\\xe2\\x81\\xee\\x41\\x01\\x2f\\xb0\\xa0\\x8e\\x32\\x43\\x95\\xa8\\xa2\\x21\\x6a\\x25\\x4a\\x0c\\x2c\\x57\\xae\\xe9\\x10\\x61\\xc9\\xec\\x0a\\x3e\\x3e\\x66\\x4c\\x96\\xb2\\x3e\\x26\\xc0\\x20\\xee\\x82\\x27\\x89\\xb1\\xed\\x31\\x28\\x32\\x02\\x60\\x23\\x65\\x21\\x04\\x17\\x21\\xde\\xf8\\x09\\x40\\x6d\\x3f\\x43\\xf8\\x01\\x14\\x9b\\x88\\x71\\x3d\\x59\\x3e\\x08\\xc9\\xbd\\x80\\x73\\x8d\\x5a\\x8e\\x3f\\x61\\xd3\\x80\\x87\\x03\\x07\\xc8\\xbd\\x93\\x8e\\x03\\xd0\\xfb\\x30\\xa4\\x01\\x6f\\x89\\xa6\\xc2\\xd4\\xd7\\x6d\\x3c\\x23\\x3b\\xc7\\x6c\\x30\\x1d\\xc4\\x02\\x22\\xd0\\x17\\x3e\\xb4\\xc8\\xff\\xfb\\x90\\x22\\x82\\x70\\x51\\x4b\\x4d\\xb9\\xa2\\x05\\x35\\xdb\\x6c\\xc5\\x91\\x19\\x09\\x8a\\xa6\\x88\\x77\\xb8\\xc8\\xff\\x31\\x61\\xdb\\xd1\\xba\\x34\\x4a\\x73\\x5b\\xbd\\xc5\\x76\\x05\\x56\\xc9\\x9c\\x97\\xd2\\x81\\x75\\x5f\\x58\\x44\\x7f\\xc0\\xc1\\x69\\xcd\\x41\\x4c\\x01\\x56\\x41\\x09\\x85\\xde\\xa7\\x8a\\x1e\\x2b\\xec\\xe8\\x88\\x96\\x48\\x5a\\x4d\\xc1\\x0a\\xb4\\x60\\xce\\x64\\x6c\\x43\\xdc\\x86\\xf2\\xb2\\x10\\xc9\\xf8\\x4f\\xf1\\x49\\x53\\x89\\x23\\xef\\x01\\x89\\x45\\x4f\\x7a\\x7a\\x1c\\xe5\\x5d\\xab\\x6f\\x83\\xe9\\x10\\x6e\\x31\\xa1\\xac\\x15\\x33\\xe2\\x43\\xa9\\x8e\\x75\\xc7\\x41\\x1d\\x01\\x30\\x18\\xa2\\x72\\x69\\x8c\\x12\\x89\\xc6\\xcf\\x12\\xea\\xd8\\x81\\xe2\\x2d\\x53\\xd1\\x38\\xf5\\xce\\x40\\xb9\\xda\\x58\\x38\\xed\\x2e\\x1d\\x58\\xda\\x2e\\x62\\xf1\\x40\\xe2\\xab\\x24\\x09\\x4d\\xb5\\x5a\\x73\\x23\\x3a\\xe8\\x9f\\x56\\xb9\\xcb\\x8c\\x24\\x76\\x13\\x66\\x40\\xb5\\x55\\x2c\\x85\\xb3\\x88\\xb0\\xb5\\xda\\x13\\x51\\xac\\x58\\x58\\x8e\\xe0\\x78\\xba\\xd8\\x88\\x83\\xab\\x9f\\x3f\\x46\\xea\\xec\\xb5\\xa8\\x72\\xc6\\x24\\x25\\xe1\\x9c\\x9f\\x1a\\x54\\x00\\x8c\\x79\\x9d\\x39\\x48\\x31\\x39\\x4b\\xc9\\x9d\\xaf\\x26\\x18\\xa2\\x7c\\x52\\xb0\\x9e\\x34\\x6a\\x53\\x4c\\xd1\\x23\\x3c\\x6a\\x7f\\x23\\x66\\x5a\\x82\\x9a\\xf1\\x26\\x0f\\xc7\\x29\\x5d\\xa3\\x19\\x10\\x5f\\x23\\xc1\\x0c\\x7e\\x9a\\x61\\xc6\\x78\\x57\\x5b\\x16\\x66\\x41\\xa7\\xba\\xfd\\x5e\\x0e\\xd7\\x6e\\x5c\\xa3\\x72\\x88\\xf8\\xec\\x1b\\x0a\\xed\\x9b\\x3b\\xf5\\x91\\x3e\\x63\\x84\\xa9\\xb4\\x8f\\xf1\\x1a\\x70\\x23\\x79\\xa5\\x3d\\xdf\\xc1\\x2f\\x73\\xf6\\x89\\xe1\\xd8\\xbb\\x8e\\x3d\\x0a\\xf2\\x3d\\xcc\\xb5\\x96\\xb8\\x5f\\x10\\xef\\xb9\\xe2\\x5b\\x16\\x37\\x01\\x60\\xa2\\x46\\x44\\x5d\\x59\\x6e\\xbe\\x71\\xf4\\xbb\\x09\\x6f\\xa3\\x85\\xc5\\xee\\x31\\x4b\\x05\\xb5\\x42\\x30\\x60\\x93\\xb0\\x9d\\xb7\\x20\\x13\\xc0\\x0d\\x72\\x85\\x77\\xa8\\x00\\x5f\\xd0\\x20\\xcd\\xd5\\xd8\\xb4\\xe3\\x91\\xf9\\x56\\x78\\x0f\\x1a\\x2b\\xc0\\x78\\xe5\\xcd\\xdd\\xe6\\x12\\x89\\xd2\\x08\\xdd\\x5c\\x27\\x7d\\xdc\\x8b\\xcf\\x2c\\xdc\\xbe\\xdd\\xa0\\x81\\x10\\xa2\\xb4\\x81\\xb4\\xaa\\x1e\\x69\\xa5\\x46\\xe9\\xd7\\x9f\\x31\\x20\\x55\\x42\\x81\\x58\\x35\\x21\\x35\\x61\\x80\\xaf\\xfa\\x1e\\x70\\xe0\\x09\\x34\\x8a\\x2b\\x08\\x45\\xb4\\xb7\\x8d\\xaf\\xec\\xb8\\x64\\xac\\xe5\\x7f\\x17\\xe6\\xb5\\x35\\x7a\\x8d\\xce\\x4f\\x25\\x85\\x3b\\x8d\\xeb\\x2d\\x1a\\xec\\x5c\\xd0\\x82\\x41\\xdc\\x16\\x28\\x4d\\x70\\x12\\x52\\x1a\\x64\\x84\\xb6\\x81\\x0b\\x40\\x59\\x94\\xcc\\x2b\\x06\\x25\\xd8\\x2a\\xbb\\xdb\\xbd\\xfa\\x4d\\x55\\x0c\\x04\\x8b\\x06\\xee\\x49\\x39\\xcc\\x7a\\x46\\xdc\\x74\\xcc\\x06\\xb0\\x52\\x05\\x30\\x6d\\x9f\\x3c\\xf3\\x6c\\x9f\\x37\\x23\\x8e\\x49\\x2b\\xd1\\xd9\\x18\\x88\\xa4\\x29\\x85\\xb4\\x80\\xf8\\x45\\xaa\\x25\\x91\\x32\\x45\\x7d\\x34\\x73\\x27\\x90\\xbb\\x50\\xce\\x32\\x17\\xe6\\xf0\\xb0\\xa2\\x6c\\x01\\x80\\x73\\xc0\\xb7\\x9b\\x0e\\x0b\\x0b\\xe8\\x0e\\x6f\\x8f\\x26\\x6d\\xdd\\x91\\x47\\xbb\\x0f\\x11\\x75\\x9e\\xac\\xc2\\xd6\\x4e\\xd9\\xac\\x61\\x85\\xa4\\x38\\xc5\\x52\\xa0\\x06\\xe2\\x2d\\xe6\\xc2\\xb5\\xdc\\x19\\xaf\\xc0\\x63\\x8d\\x66\\xc2\\x39\\x39\\xec\\x03\\x6f\\x59\\xfd\\x9a\\xcb\\x0e\\xe0\\xf3\\xfc\\x99\\xa5\\x3c\\xdd\\x13\\xba\\xb6\\x3b\\x8e\\x63\\xbc\\x53\\x41\\x9e\\xe0\\xa5\\xac\\xae\\x06\\x11\\x40\\x30\\x5f\\x60\\x21\\x9a\\x59\\xd8\\xe8\\xcb\\x20\\x76\\xfc\\x14\\x4c\\xa5\\xbb\\x34\\x59\\xbd\\x42\\xc2\\xc3\\x3c\\xcc\\x83\\x0b\\x76\\x4b\\x2d\\xa6\\x40\\xd2\\x6c\\x20\\xf0\\xc5\\x3e\\x17\\x8d\\x7a\\xc3\\x45\\x7c\\x1c\\x7a\\x41\\xee\\x02\\x26\\xa5\\xd5\\x39\\x83\\x8b\\xfc\\xd5\\x4e\\xc6\\xe6\\x60\\x93\\xe4\\x8d\\x97\\x90\\x7c\\xd5\\x48\\x3d\\xb9\\xf0\\x7c\\x7c\\x89\\x55\\xa7\\x69\\x32\\x3d\\x84\\xeb\\x0d\\xa6\\x42\\xff\\xed\\xe2\\x0d\\x85\\xd1\\x32\\x18\\xfc\\xbc\\x96\\x19\\xe1\\xb8\\x2d\\xc7\\xc2\\x7a\\x5e\\xcd\\x65\\x60\\x2f\\x96\\x3b\\xbf\\x6f\\x90\\x69\\x3a\\xfd\\x9e\\x6d\\xf2\\xa2\\x6b\\xd6\\xf9\\x06\\x9c\\x31\\x46\\xe2\\xb0\\xe3\\x9c\\x25\\x2f\\x3d\\xe0\\x95\\x4e\\x40\\x4a\\x7b\\x9c\\x25\\x17\\x8e\\xb6\\xd5\\xaa\\x5c\\x61\\x7f\\xbd\\x49\\x8c\\xd8\\x04\\x7d\\x36\\xc2\\xfe\\xbc\\xe6\\xd7\\x28\\x5a\\xed\\xaa\\xb3\\x9d\\x1e\\xee\\x6d\\x5c\\x4d\\x09\\x9d\\x0f\\x9c\\xf7\\xbd\\x50\\x00\\xc2\\x44\\x79\\xa3\\xa8\\x82\\x05\\x8e\\xaa\\x7a\\xd5\\x2e\\xa2\\x70\\x42\\x4e\\x57\\xa3\\x32\\x46\\xa9\\x05\\x84\\x47\\xac\\x6d\\xe0\\x5e\\x4d\\x30\\x60\\x8a\\x8e\\xb3\\xc0\\x3e\\x29\\x91\\x4c\\x15\\x3b\\x52\\x1b\\xd2\\xca\\xe0\\x00\\x34\\x87\\x8d\\x55\\x94\\x29\\x78\\x63\\x83\\x9c\\xd6\\x42\\xcd\\x10\\x1a\\x44\\xf0\\x35\\x4e\\x7f\\xb4\\xdb\\x12\\x5e\\xc6\\x4d\\x74\\xb0\\xd0\\xae\\x96\\x18\\x26\\xaa\\x20\\x4b\\x40\\x82\\x73\\xa3\\x48\\x0d\\x74\\x3c\\x8e\\xb3\\x8a\\x98\\x1b\\xa0\\x11\\x74\\xa0\\x23\\x55\\x95\\x70\\x2c\\x41\\xb7\\x84\\x2a\\x4b\\x8d\\xd4\\xc8\\x15\\x57\\xf7\\xa0\\x5c\\xef\\x95\\x21\\x86\\xe2\\x0c\\x1a\\xca\\x5c\\xd3\\x3a\\x59\\x20\\x2c\\xc0\\xdb\\x4c\\x8c\\x6d\\xca\\x48\\xe2\\xcc\\xb6\\xa6\\xcd\\xb6\\xef\\x0e\\x67\\xda\\x09\\xbd\\x66\\x29\\x96\\x40\\x38\\x11\\xe3\\xb1\\xb0\\x3d\\x96\\xf8\\x03\\x71\\x38\\x1d\\x90\\x51\\x5f\\xb4\\xff\\x65\\x88\\xb5\\xb2\\xc1\\x10\\x26\\xab\\xf3\\x9e\\x6f\\x32\\x6b\\xae\\xd8\\x39\\x5b\\x4b\\x1d\\xc3\\x98\\x8a\\x2d\\xbd\\x04\\x23\\x29\\x1f\\xae\\x43\\x28\\xbb\\x38\\x4e\\xbe\\xfe\\x9f\\xe9\\xa0\\xbb\\x93\\x80\\x33\\x80\\x55\\x6d\\x20\\x63\\xdf\\x6b\\xe6\\x16\\x56\\x6a\\xe5\\x4a\\x7d\\x9d\\x4a\\x99\\x90\\x0e\\xf9\\x1e\\x6c\\x21\\x19\\x90\\xb9\\x21\\xb5\\xb6\\x09\\x7e\\x01\\x7c\\xed\\x9d\\x68\\x04\\x70\\x4b\\x7f\\xc0\\x45\\x0c\\xae\\xf9\\x67\\xc1\\x1a\\xd2\\x78\\x18\\x08\\xd5\\xe2\\x97\\x69\\xd5\\xc0\\x04\\xd5\\xbd\\xf3\\x08\\x98\\x80\\x6d\\x98\\xcd\\x47\\x46\\xc5\\x21\\x2d\\x69\\xaa\\xff\\xb1\\x08\\x6c\\x4c\\xc4\\x21\\xb3\\xf3\\x73\\xa3\\xd4\\x8d\\xbd\\x01\\x43\\x4b\\x93\\xfc\\x3b\\x39\\xb4\\xb6\\xa8\\x8b\\x5c\\x21\\xa5\\x36\\xc2\\xb1\\x29\\x79\\x9b\\x11\\x49\\x58\\xd6\\xc6\\x4c\\x95\\x98\\x66\\x46\\xfd\\x4f\\x19\\xd2\\xd5\\xd5\\xb8\\xcc\\xb1\\xb7\\xed\\xa2\\x04\\xfb\\xce\\x0d\\xf6\\xf0\\xa4\\xcd\\x21\\x16\\x1a\\x1c\\xb6\\x0f\\x55\\x3f\\x6e\\x2f\\x37\\x38\\x1e\\x89\\xa8\\x27\\x5c\\x88\\xe3\\xb0\\xe6\\x40\\x6d\\x69\\x72\\x18\\x4b\\x99\\xdc\\x79\\xc1\\xd1\\xc7\\xef\\xe3\\x77\\x2e\\x5c\\x27\\x67\\x03\\x17\\xc2\\x6b\\xb1\\xbe\\x81\\x5d\\x55\\x75\\x75\\x4d\\x86\\xf8\\xb8\\x63\\x48\\x0c\\x04\\xf6\\x73\\x6c\\x06\\xf7\\xae\\x47\\x7f\\x44\\x88\\xd8\\x0a\\x69\\x70\\x8c\\x0b\\xd7\\xed\\x61\\xcb\\xfb\\x73\\xfb\\xb0\\x25\\xd3\\xb9\\x82\\x5a\\xb0\\x14\\x8e\\xe3\\x88\\x39\\x62\\xfb\\x10\\x9d\\x35\\xe7\\xd5\\x7f\\x21\\x36\\xca\\x6c\\x5b\\xa0\\xbc\\x97\\x9f\\x0d\\xf9\\x08\\xb6\\x01\\x8c\\x93\\x36\\x01\\xf6\\x6d\\xc3\\x5b\\x21\\x03\\xca\\xc4\\x85\\x08\\xd5\\xe3\\x49\\x60\\x87\\x17\\x29\\x00\\xf2\\xee\\x2c\\x35\\x3c\\xde\\x07\\xf3\\x21\\x8f\\x36\\xb8\\x52\\xbf\\x4b\\x5a\\xdc\\x79\\x2e\\xad\\x1a\\x59\\x88\\x87\\xab\\xd3\\xe0\\x9f\\xcc\\x86\\x2d\\xde\\x14\\xa0\\x6d\\xb7\\xb2\\xa1\\x4b\\x7d\\xb4\\x6b\\x68\\x20\\x9e\\xbe\\xd9\\xac\\xa3\\xe4\\x88\\xc6\\xfc\\x85\\x91\\xb1\\xd2\\x22\\x56\\xda\\x73\\x54\\x17\\x05\\xdb\\xe2\\xe6\\x4c\\x67\\xb8\\xfe\\xee\\x74\\xf3\\x50\\x31\\x8e\\xc9\\xd0\\xa5\\xec\\x9d\\x0d\\x10\\x33\\x8a\\x51\\x2d\\x5c\\xc4\\x3c\\x42\\x6a\\x01\\xed\\x51\\x2c\\x17\\x9f\\x1a\\x48\\xf9\\xa0\\x0f\\x5b\\x3c\\x26\\xf5\\x34\\x7b\\x1b\\x0c\\x29\\x92\\x09\\xc0\\x88\\x9a\\x93\\x82\\xbd\\x96\\xd6\\xd6\\x7c\\x9a\\x2b\\xdc\\x73\\x24\\x01\\x22\\xd3\\x01\\x03\\x3c\\xcc\\x9f\\xd0\\xcc\\x0d\\xf7\\x0d\\x48\\x48\\xde\\x00\\x67\\x8c\\x50\\x53\\x1b\\x36\\x61\\xcd\\x4e\\x32\\xb9\\x00\\xd3\\xd8\\x80\\xf0\\xd8\\x00\\xd3\\x4f\\xd9\\x3c\\x81\\xe9\\x20\\xb9\\x46\\x23\\xcd\\x92\\x9b\\xad\\x54\\x0c\\x5a\\x90\\x02\\x4b\\x86\\xe7\\x08\\xb0\\x4d\\xa8\\x01\\x0d\\xa8\\x29\\x8d\\xae\\x9d\\xb0\\x25\\x9c\\x8b\\x1a\\x30\\xec\\xb0\\x5e\\xe0\\x5e\\xbb\\x57\\x66\\x50\\x1b\\x42\\x03\\x0b\\x3c\\xa1\\xb5\\xe9\\xaf\\xf4\\xac\\x8d\\x60\\xb6\\x59\\x91\\x0f\\x01\\x1a\\x79\\x58\\x0e\\x32\\x59\\x11\\x66\\x41\\x65\\x22\\x13\\x81\\x63\\x70\\xf1\\x98\\x3f\\x80\\x36\\xae\\xd8\\x86\\xe0\\x61\\xbc\\x89\\xd1\\x5f\\x62\\xd3\\xae\\xd5\\x07\\xd3\\x71\\x16\\xbe\\x3d\\x95\\x34\\xfa\\x69\\xea\\x5f\\x17\\xd0\\x74\\x21\\x2b\\x88\\xa5\\x19\\xf7\\xb0\\x26\\x42\\xa7\\x4f\\x8c\\x0b\\xe9\\xb8\\xc7\\xcc\\x1c\\x3e\\x70\\x0a\\xbb\\x09\\x01\\x12\\xc5\\xee\\x89\\xb9\\x45\\x0e\\x95\\xf1\\x6e\\x11\\xe1\\x5b\\x5d\\xb4\\xb3\\x43\\xcd\\x4a\\xc9\\x6e\\x15\\x3d\\x09\\x4a\\xc4\\x19\\x84\\xb8\\xa9\\x23\\xca\\xb3\\x0a\\x69\\x5f\\xb0\\x07\\x0f\\xe6\\x0a\\xd5\\x98\\x59\\xb2\\xd3\\xff\\x19\\x02\\x68\\x7f\\xeb\\x2b\\x65\\x9f\\xe9\\x1d\\x38\\xd9\\xc3\\xdc\\xcc\\x8b\\x12\\xa8\\x9a\\x92\\x22\\x87\\x51\\xa2\\xc0\\x13\\x09\\x38\\x73\\x97\\x90\\x93\\xa7\\xce\\x21\\x09\\xae\\x58\\xac\\x41\\x1e\\xc1\\x08\\x2c\\x75\\x6e\\x3c\\x04\\xc7\\x15\\x14\\xc1\\x02\\x98\\xea\\xdc\\x22\\x67\\x5d\\x50\\x3e\\x53\\x72\\xbc\\x2a\\x2f\\xca\\x35\\xac\\xe5\\xe0\\xf5\\x56\\x15\\x05\\x18\\xeb\\x29\\x7a\\x85\\x46\\x17\\x89\\x49\\x8a\\x15\\xc6\\x5e\\x66\\xd4\\x61\\x77\\x70\\x1c\\x93\\xba\\x65\\x4e\\x4f\\x84\\x39\\x15\\xac\\x9c\\x30\\xa1\\xe9\\x90\\x45\\x12\\x4c\\x21\\x93\\x57\\x34\\x75\\x56\\xcd\\x6c\\x37\\xe5\\xe5\\xcc\\xc2\\x54\\x38\\x2c\\x30\\xdf\\x94\\xae\\x91\\xc3\\x58\\x2b\\x29\\xb7\\x7d\\x70\\x31\\x92\\xa7\\x4e\\x05\\xfe\\xe8\\xe5\\x04\\x13\\x52\\x6e\\x8a\\xd8\\x37\\x2c\\x9d\\x60\\xda\\xcd\\x5c\\x37\\x88\\xa5\\x17\\xf0\\x2c\\x93\\x05\\xac\\x16\\x0f\\xe3\\x50\\x8e\\x32\\xfc\\xcc\\xad\\xd2\\x20\\x10\\x2f\\x50\\xc1\\xa1\\x14\\x88\\x02\\xa2\\x3c\\x13\\xba\\x8b\\x72\\x83\\x8d\\xb0\\x1f\\x0e\\xf1\\x22\\xc1\\x5a\\x88\\x30\\x86\\x43\\x82\\x23\\x55\\x88\\x26\\xd1\\xf3\\x22\\x0f\\x7c\\xda\\x14\\x5f\\xb0\\xcb\\x88\\x3b\\xd7\\x27\\x02\\xe0\\x2d\\xe3\\x93\\xcc\\x0d\\x9d\\xf6\\x41\\x84\\x67\\x27\\x6b\\x52\\x94\\x38\\x9c\\x34\\x90\\xf8\\x83\\x08\\xbf\\x77\\x0b\\x2f\\xe4\\x8c\\x65\\xc4\\x19\\xf4\\x14\\x80\\x91\\xd6\\x3c\\x82\\x2e\\x9f\\x05\\xd5\\x2b\\x47\\x80\\x70\\xeb\\x0c\\x50\\x39\\xfc\\x98\\x83\\x3c\\x82\\xc3\\x8c\\x78\\x29\\x48\\x84\\x18\\xb5\\x84\\xbd\\x83\\xdb\\xe1\\x15\\xd8\\x25\\x29\\x39\\x11\\xb7\\x88\\x1a\\xeb\\x68\\x81\\x09\\x07\\xaa\\x57\\x50\\x6e\\x52\\x46\\x86\\x2c\\x41\\xcc\\xb7\\x2e\\xc0\\x29\\xc4\\xae\\xe4\\xa6\\xd8\\x23\\x25\\xc8\\x18\\x0b\\x5a\\x80\\x2d\\xf3\\x2e\\x21\\xcb\\x60\\x12\\x36\\x24\\x1f\\x29\\x05\\x13\\x7d\\x90\\x42\\x9b\\x42\\x31\\x03\\xc0\\x0f\\x1d\\x89\\x89\\x5b\\x8a\\x7c\\x99\\x1d\\x10\\x32\\x63\\x71\\x1a\\xee\\xbc\\x84\\x41\\xd4\\xa0\\x24\\x24\\xe2\\x96\\xb8\\x7a\\x2a\\x6a\\xf0\\x2f\\xae\\x27\\xdf\\x3b\\x1e\\xf1\\x7e\\x64\\xa3\\xef\\x59\\x31\\x17\\x03\\xd5\\x78\\x22\\x38\\x29\\x42\\x21\\x9d\\xc1\\x66\\x84\\x9b\\xe4\\x4b\\x2d\\x85\\xfc\\x13\\xc6\\xf0\\x50\\x2f\\xad\\x93\\x84\\xd6\\x09\\x55\\x93\\x8e\\x49\\x42\\x78\\x5e\\xa8\\x8c\\x08\\xf4\\xfb\\x0b\\xa5\\x30\\x23\\x53\\xe3\\x02\\xed\\xed\\x9a\\x77\\x27\\x06\\x9c\\xa7\\x1a\\xc2\\x24\\xaa\\x58\\xa1\\x3a\\xa2\\x1a\\x41\\xa7\\x15\\x9a\\xc2\\x23\\xfe\\x09\\x55\\xf2\\x4f\\x8c\\x8e\\x86\\xb0\\x9e\\x68\\xfa\\x19\\x41\\x16\\x4f\\xa4\\x90\\xf5\\x86\\x70\\x9e\\x08\\xf0\\x90\\xea\\x59\\x1b\\x8b\\xe1\\x5f\\x20\\x86\\xc0\\x65\\xd5\\xab\\xbb\\xf5\\xeb\\x58\\xc0\\x1e\\x15\\xed\\xe8\\xa9\\xdb\\x8a\\x97\\x17\\x1c\\xed\\x25\\x1b\\x0d\\xb9\\x38\\xc6\\x8a\\x11\\x09\\x82\\xe2\\x02\\xdc\\x93\\x6c\\x41\\x92\\x04\\xb5\\xbc\\x12\\xe4\\xdb\\xaf\\xf8\\x36\\x8d\\x15\\x27\\x62\\x20\\x70\\x43\\x56\\x6c\\x8e\\x89\\xa4\\x86\\x3a\\xd4\\x5c\\x28\\x1b\\xb6\\x63\\x09\\x60\\x01\\x64\\xae\\x0b\\x40\\x83\\x90\\x85\\x3e\\xf4\\x08\\x3d\\x28\\x00\\x29\\x12\\xb5\\x93\\x8d\\xc8\\xf6\\xf0\\xa6\\x12\\x9b\\xb4\\x8d\\x58\\x50\\x1c\\xe0\\x31\\x58\\x06\\x73\\x23\\x99\\xc4\\xc0\\xa0\\x9e\\x0d\\x6d\\x7e\\xd9\\x40\\x02\\x39\\x42\\xb2\\x06\\x22\\xf9\\x25\\x7c\\x14\\xc1\\x40\\xbd\\x42\\x1a\\x77\\xa1\\xb5\\x06\\x04\\x10\\xc7\\x15\\xd8\\x02\\x08\\x94\\x76\\xdb\\xac\\x1e\\xc5\\x13\\xea\\x27\\x4b\\x59\\x3c\\x27\\xc8\\xee\\x42\\xdc\\x70\\x19\\x90\\x62\\x44\\x88\\xb9\\xcc\\x98\\x0a\\x6a\\x74\\x03\\x36\\xc8\\x81\\x54\\x54\\xdb\\x8e\\x3c\\x46\\x8b\\x30\\xe1\\xe2\\x0a\\x81\\x62\\x4c\\x98\\x11\\x34\\x0a\\x35\\x59\\x4b\\x40\\x91\\x0b\\x3c\\x33\\x42\\x3e\\xd8\\x09\\x05\\x73\\x21\\x27\\x04\\x98\\x8c\\xbe\\x2c\\x7b\\xb8\\xcd\\xf4\\xc0\\x74\\x8e\\x94\\xc6\\x62\\x32\\xf0\\x18\\xdf\\x38\\x08\\x35\\x79\\xcc\\x30\\x20\\x5c\\x0f\\x23\\x11\\xc2\\xce\\x1b\\x76\\xd4\\x39\\x32\\x20\\x2e\\x18\\xfc\\x2c\\xf5\\x80\\x83\\x70\\x3d\\xf9\\x1f\\x85\\x93\\x12\\xdf\\x9f\\x50\\xd4\\xd0\\x74\\x80\\xe1\\xc7\\x46\\xf0\\x8e\\x51\\x80\\x21\\xdf\\x46\\xc5\\xd8\\x6b\\xc5\\xe1\\x4c\\x73\\xc5\\xc2\\x94\\x96\\x89\\xe5\\xbe\\x86\\xfa\\x2e\\xef\\xd0\\x04\\x39\\xe5\\x58\\x41\\xc6\\x8c\\x30\\xcd\\xee\\x52\\xed\\x80\\x65\\x9c\\x18\\xf2\\xf1\\x10\\xe0\\xe3\\x6e\\x70\\x26\\xee\\xff\\xbf\\x64\\xbf\\xdf\\x80\\x93\\xd9\\xef\\x3e\\xfa\\xa2\\x86\\x1d\\x48\\x7d\\xb3\\x45\\x0e\\x95\\x5b\\x70\\x40\\x07\\xeb\\xe7\\xbe\\x80\\xdf\\x03\\xcc\\x0d\\xce\\x43\\xed\\x5e\\x70\\xe2\\x20\\x82\\x50\\xd8\\xd1\\x8d\\xfd\\x75\\xe3\\x7e\\x62\\x77\\x25\\x2b\\xd3\\x18\\x7f\\xa6\\x2f\\xe9\\xc1\\x1d\\x57\\x41\\x07\\xbc\\xf9\\x87\\x18\\x45\\x1f\\xbe\\x82\\x53\\x48\\x77\\x03\\x1d\\x78\\x9c\\x7b\\xb1\\x19\\x9e\\x2b\\x8e\\x82\\x3b\\xd5\\xd2\\x7d\\x81\\x13\\x3a\\x0e\\xb2\\xb7\\x26\\x43\\x22\\x86\\x6e\\xd3\\x7f\\x48\\xbc\\x26\\x46\\x36\\xb1\\x46\\x4c\\x88\\x86\\x73\\x40\\x1a\\x3d\\x07\\x69\\xbe\\x0d\\x73\\x4c\\x2f\\x34\\xf3\\x22\\x41\\x78\\xf3\\xb8\\x40\\x08\\xe1\\xa1\\x8b\\x08\\x83\\x42\\x74\\xba\\xd6\\xd3\\x5c\\x32\\x21\\x1a\\x4c\\x15\\x1f\\x00\\xad\\x31\\x85\\x83\\x68\\xe1\\x50\\x08\\xd9\\x21\\x45\\xd1\\xeb\\xf6\\xfc\\xda\\xe0\\x05\\xae\\x9e\\x48\\x76\\x23\\x37\\xd9\\xe2\\x0d\\xbe\\xfc\\x0d\\xe0\\x29\\x2e\\x96\\x58\\x3e\\x6c\\xef\\x85\\x2c\\xe0\\x08\\x80\\xe7\\x6e\\x22\\x6c\\xfd\\xe7\\xd8\\x1c\\xce\\xf3\\x18\\x4b\\x46\\x07\\xc5\\xc6\\xff\\xdd\\x12\\x1b\\xf1\\x18\\x53\\xbb\\x03\\xdb\\x12\\x7b\\x30\\x11\\x6c\\x6e\\x27\\x25\\x79\\x55\\x31\\x1e\\x10\\xc2\\x52\\x00\\x2f\\xf4\\x93\\x5f\\xe9\\xf1\\xa9\\xe4\\x9d\\xf8\\x4b\\xf4\\xbf\\x27\\x2e\\x3d\\xa8\\xaa\\xf2\\x4e\\xce\\x80\\xec\\x8d\\xc3\\x2c\\x3e\\xad\\xaf\\xb7\\xdd\\xff\\x08\\x50\\x22\\xfe\\x52\\x81\\x2e\\x41\\x76\\x26\\xae\\xd9\\xa7\\xb6\\xeb\\x3d\\xa8\\xd1\\x3b\\xd3\\x76\\x1b\\x55\\xcf\\x45\\x01\\xeb\\x0f\\xd1\\x79\\xea\\xf8\\x25\\x25\\x96\\xe9\\xbc\\x95\\x9f\\x56\\x7e\\x93\\x3f\\x76\\xea\\xfd\\xd8\\xab\\xe2\\x43\\x3a\\x54\\x7b\\xc0\\xe5\\xd7\\x79\\x28\\x75\\x7e\\xe4\\x54\\x6a\\xa3\\xf0\\x8c\\xdd\\xbe\\xce\\x9c\\x4a\\xd8\\xad\\xd1\\xb2\\x7a\\x02\\xcb\\xb6\\x7e\\x1f\\xd4\\x92\\x47\\xe2\\x9b\\x58\\x2e\\x7c\\xfb\\x97\\x96\\xa5\\x08\\xbc\\x8a\\x94\\x9c\\xe6\\x24\\x29\\x8e\\x0f\\x16\\xcf\\x4c\\xf0\\x4e\\x97\\x71\\x98\\xca\\x0a\\x84\\x1d\\x01\\x6b\\xa2\\x78\\x72\\x0e\\x9f\\x86\\xa6\\x1d\\x16\\xba\\x12\\x0e\\xbb\\x1d\\x5d\\x05\\x17\\x6f\\x28\\x36\\xc1\\xe0\\x20\\xbf\\x10\\x1a\\x33\\xc6\\xe8\\x2e\\x89\\x16\\xd5\\x1c\\x1e\\x8b\\x4a\\x71\\x52\\x03\\xf8\\x73\\x94\\xd5\\x4a\\x22\\xe1\\xdb\\xc3\\x3b\\x03\\x12\\xfe\\xda\\x0c\\xd5\\x3d\\x9f\\x69\\x84\\x0d\\x52\\xbb\\x49\\x5c\\x29\\xec\\xa0\\xcf\\x54\\x51\\x84\\x8b\\xa4\\xe9\\x96\\xf3\\x11\\x02\\xf6\\x98\\xe3\\x68\\xed\\x01\\x5e\\x4f\\x00\\xda\\xec\\x37\\x45\\x9f\\x94\\x6d\\xb7\\xca\\x14\\x8e\\x8d\\x5e\\xf4\\x47\\xae\\x6b\\x7e\\x61\\xe5\\x2a\\x95\\x82\\x50\\x99\\x71\\xad\\x53\\x89\\x8e\\x81\\x4b\\xd4\\xe2\\xd4\\x53\\x07\\x14\\x69\\x7d\\x62\\x43\\x77\\x67\\x5e\\xc8\\xe9\\x21\\x21\\x3e\\x0f\\x4d\\x60\\x3e\\x36\\xc2\\xc0\\x73\\x2e\\xb3\\xc4\\xde\\x14\\x33\\x1e\\x41\\x31\\x98\\x75\\x60\\x40\\x2a\\xc5\\xf5\\x87\\x93\\x75\\x8f\\x89\\x56\\x40\\x51\\x4e\\xf0\\xbe\\x69\\x36\\xff\\xeb\\xba\\xcf\\x80\\x76\\x6b\\xc7\\x67\\xa0\\x1f\\x39\\xa4\\xf9\\xa9\\x66\\xf8\\x15\\xfb\\x60\\xf1\\xfc\\x12\\x50\\xcf\\xba\\x1a\\xbc\\xa1\\xe9\\xc9\\x9d\\xd0\\x4f\\xa0\\x66\\x14\\x59\\x0f\\x43\\xca\\x85\\x9f\\xd0\\x08\\xea\\x7d\\xd0\\xca\\xb8\\xb7\\x04\\x95\\x84\\x8a\\x15\\xa8\\x5e\\x4c\\x70\\x84\\xb7\\x03\\xd0\\x54\\x1d\\xd8\\x9a\\x24\\xe1\\x09\\x11\\x37\\xbc\\xd9\\x2b\\x28\\x39\\x61\\xb3\\xe5\\x61\\x21\\x58\\x04\\x05\\x02\\x09\\x8e\\x7e\\xb5\\x7d\\x51\\x08\\x0a\\x8b\\x10\\x14\\x62\\x98\\xe1\\x61\\xc0\\x76\\xfc\\xea\\xd6\\x20\\x28\\x15\\x31\\xc4\\xa3\\x80\\xed\\xb9\\xd4\\x38\\xc0\\x46\\x1a\\xba\\xc7\\xb9\\x96\\x6e\\xae\\x1d\\xf2\\x65\\x99\\xcc\\x8e\\x14\\xa6\\xec\\xce\\x59\\x6a\\xdd\\xd5\\x29\\x7f\\x30\\x77\\x72\\x52\\xbb\\x9c\\x0e\\xf4\\xbe\\x9d\\x60\\x1e\\x62\\xde\\x4b\\x07\\xa4\\x71\\x2f\\x71\\xf2\\x08\\xd6\\x1a\\x65\\xa3\\x97\\xa6\\x2d\\x29\\xa0\\x89\\x44\\x36\\x89\\x13\\x24\\xcf\\xee\\x28\\x59\\xb9\\x5e\\xe1\\x34\\x89\\x29\\xc4\\x3c\\x5a\\x87\\x96\\x6c\\xf7\\x3b\\x55\\x59\\xe8\\x68\\xbc\\x7b\\x8c\\xa8\\x98\\x89\\x68\\x74\\x5b\\xa7\\x5c\\xb9\\xcb\\xdc\\x22\\x64\\xc0\\x85\\xcb\\x85\\xe3\\x0a\\x22\\x62\\x28\\x3f\\x1b\\xe3\\xaf\\x0d\\x56\\xa5\\x4e\\x3c\\xc5\\xa9\\x4d\\x2b\\x22\\x4f\\x78\\x17\\x43\\xbf\\xfc\\xa8\\xc5\\xa0\\x30\\x48\\x21\\xd2\\x7f\\x10\\x8b\\x50\\x8d\\xdd\\xf3\\xe1\\x6b\\x85\\x02\\xdb\\x4c\\xcd\\x33\\xc0\\x13\\x55\\xd3\\xac\\xa4\\xc0\\xd4\\xca\\xb9\\x2b\\x13\\x4c\\x63\\xae\\x0f\\x65\\xb8\\x12\\xeb\\xb8\\xd5\\xf8\\x27\\x53\\xba\\x1a\\x18\\x66\\x26\\x7e\\xc3\\x15\\x39\\xbc\\xb5\\x0a\\xe1\\x7f\\x40\\xa5\\x16\\x4e\\x43\\x83\\xa0\\x5a\\x26\\x43\\xfb\\xc7\\x00\\x82\\x76\\xd5\\xbd\\xd9\\x3c\\x46\\xd7\\x1b\\x27\\xd9\\x3d\\x78\\xc6\\xd2\\x68\\xda\\x21\\xbd\\xfd\\xac\\xa6\\x68\\x85\\x40\\x0d\\xba\\x3d\\x75\\x76\\xbd\\xea\\xcc\\x11\\x30\\x5b\\x9a\\xe4\\xc5\\x55\\x93\\xf9\\x7e\\xd2\\x87\\x1c\\x76\\x7d\\x81\\xaf\\x14\\x51\\x9d\\x41\\xf2\\x59\\x55\\x02\\x8c\\xb6\\xc1\\x14\\xd5\\x64\\xbc\\x31\\x56\\x91\\xce\\xb0\\x4d\\x90\\xe4\\xd2\\x3c\\x7a\\x56\\xc4\\x49\\xab\\x16\\xc2\\x86\\xf9\\xd4\\x85\\x0a\\x0f\\x7a\\x25\\xb2\\x17\\xf8\\x09\\x93\\x38\\xb1\\x3e\\x25\\x7b\\x46\\x8e\\x43\\xf8\\xcd\\xde\\xcf\\x4b\\xc9\\x66\\xee\\x6b\\x7e\\x54\\xe5\\x9c\\x24\\x55\\x77\\x55\\xc4\\x77\\x00\\x2d\\xa1\\x83\\xf4\\x28\\x97\\x2e\\x80\\x4c\\x7d\\x55\\x47\\xe8\\x1a\\x74\\xc2\\x7b\\x49\\x17\\xb1\\x9b\\x6b\\x26\\x4a\\x7a\\xa5\\x0d\\xc8\\xa0\\xb6\\x92\\x52\\xa5\\x29\\x54\\x74\\xef\\xf5\\x24\\x6a\\x73\\xb4\\x00\\x47\\xd7\\x78\\x9b\\x95\\x05\\x16\\x07\\xda\\x3d\\xf2\\xf8\\xf7\\x6c\\x6b\\x47\\xe4\\x37\\x89\\x72\\x75\\xab\\xdc\\xe1\\x4b\\x9c\\x00\\x38\\xd1\\xed\\xf1\\xe4\\x1c\\xff\\x24\\xdd\\x78\\x5a\\xe0\\x23\\x4c\\xd3\\xb4\\x4d\\xec\\xb0\\x6a\\xc3\\x5a\\x97\\xa7\\x85\\xc8\\x08\\xb1\\x24\\xaa\\xd7\\xd5\\x25\\xe5\\x18\\x15\\x3a\\x0c\\xa3\\x54\\x0c\\x26\\xc8\\x24\\xc6\\x16\\x7a\\xb2\\x35\\x50\\x39\\x59\\x73\\xdf\\xc1\\x3d\\x9e\\xa4\\xa5\\x75\\xec\\x1b\\x04\\x49\\xde\\x12\\xc9\\x0c\\xb7\\x9d\\x56\\xc4\\xa4\\xfa\\xf4\\x02\\x01\\xc3\\x3d\\x0d\\x20\\x19\\x2a\\xb0\\xf8\\x5c\\x69\\xc7\\x53\\x18\\x00\\x2e\\xb2\\xe9\\x08\\x67\\x72\\xd9\\x8c\\x51\\x12\\x10\\xcf\\xb3\\x8e\\x19\\x45\\xcc\\xd6\\x41\\x4b\\x9a\\x14\\x0f\\x04\\x84\\x74\\xcd\\x42\\x2d\\xeb\\x0d\\x9a\\xd0\\x87\\xd7\\x9b\\x71\\x40\\xff\\xc4\\x3f\\xcc\\xc7\\xbb\\xcc\\x7c\\xaf\\x2c\\xfb\\xf8\\xd1\\xa4\\x6a\\x85\\x83\\xbc\\x10\\x6a\\x02\\x17\\x8c\\x1e\\x0c\\xa8\\xb5\\xd2\\x9a\\xde\\x24\\xd5\\xd0\\x37\\x50\\x03\\x0a\\xc0\\x01\\xc1\\xe5\\xf4\\x02\\xe2\\xb1\\xb0\\xa4\\xdc\\x89\\xcf\\x27\\xc2\\x33\\xd0\\x8d\\xb0\\x3c\\x75\\x2a\\x86\\xd7\\x03\\x65\\x62\\xc8\\xae\\xa2\\x74\\x5e\\x09\\x1c\\x4c\\x34\\x67\\xc2\\xe4\\x80\\xe5\\xfb\\x87\\x1f\\xc7\\x9a\\x3a\\xd5\\x05\\xe4\\x16\\x91\\x50\\x05\\x43\\x41\\x55\\x89\\xb7\\x81\\xe6\\x7e\\xec\\x9b\\x73\\x1f\\x12\\xc2\\x62\\xa0\\x8b\\x5f\\x24\\x2b\\x97\\xda\\x56\\xe9\\x95\\x34\\xc1\\xfd\\xd0\\x3c\\x18\\x84\\x49\\x25\\xfd\\xaf\\xc9\\x06\\xb8\\x0b\\xf1\\xc1\\x3a\\xf7\\xe7\\x0e\\xae\\x31\\x44\\x19\\x8f\\xf5\\x07\\x44\\x42\\x0b\\x9c\\x00\\x39\\xb3\\x98\\xaf\\x60\\x30\\x69\\x48\\x27\\xda\\xa3\\xd0\\x39\\x6c\\x0a\\xc8\\x03\\x35\\x9b\\x3d\\xea\\x20\\x30\\xdf\\xd8\\x7d\\xee\\x16\\xc8\\xc7\\x19\\x76\\x46\\x44\\x7f\\x72\\x42\\x5c\\xf0\\x1f\\x9d\\xa2\\xe2\\x59\\x99\\x16\\xb6\\x41\\xca\\x7d\\x19\\x20\\xad\\xfa\\xb3\\xde\\xa2\\x5e\\xf3\\x0f\\x78\\xa0\\xc2\\x44\\xc7\\x56\\x46\\x36\\xb8\\xed\\x2c\\x5b\\xbb\\x4f\\xb2\\xdd\\x6e\\x20\\x2b\\xb9\\x63\\xff\\x69\\x13\\x24\\x78\\x39\\x34\\x83\\x1f\\x92\\x28\\x30\\xe5\\x07\\xb8\\xa8\\x99\\xff\\x22\\xf0\\x09\\x3b\\xdc\\x3e\\xd6\\x58\\x90\\x4d\\x1a\\xff\\x3c\\x77\\x99\\x4f\\xac\\x0b\\xd2\\xf6\\x86\\x62\\xd3\\x6c\\x60\\xc0\\xf6\\xc0\\x8b\\xf1\\xdc\\x2f\\x2c\\x48\\x8d\\x7a\\x07\\x3b\\x89\\xce\\xa8\\x9f\\x6e\\x7f\\x7f\\xc8\\x3e\\x05\\x40\\x43\\xc5\\xd9\\x91\\x11\\xec\\x04\\x48\\x28\\xce\\x32\\xe7\\x19\\x24\\x31\\xe1\\xc4\\xeb\\x03\\x97\\x78\\xd2\\x32\\x2a\\x67\\x77\\x58\\x8c\\xa7\\xa0\\x40\\xe1\\xe0\\x42\\xdd\\x42\\x40\\xdf\\xd5\\xf0\\x9a\\x8e\\xb7\\xfc\\xac\\x7a\\x59\\xda\\x2b\\x11\\x22\\xc3\\x4e\\x33\\xff\\x0c\\x79\\x2f\\x99\\x1e\\x20\\xec\\x79\\xa3\\x58\\x84\\x54\\xe3\\x2f\\xef\\x19\\x77\\xdd\\xaf\\xc6\\x03\\xf1\\xdb\\x8a\\x63\\x07\\x02\\xeb\\x38\\xd3\\x7e\\xfe\\xb0\\x03\\x9b\\xad\\x77\\x74\\xe4\\x38\\xc4\\x24\\xb1\\xa6\\x57\\xf8\\x08\\xa3\\xb1\\x0a\\x6b\\x18\\x15\\x61\\x8c\\x6c\\x3a\\xff\\xc8\\x35\\x79\\x8d\\xb7\\x9e\\x0c\\x17\\xb8\\x30\\xa6\\xf4\\x41\\x61\\xdd\\x07\\x7c\\xc8\\xd6\\x18\\xec\\x87\\x85\\x91\\xb2\\x6b\\x7d\\x3e\\xce\\x2c\\x7b\\x21\\x1d\\x76\\x7c\\xe3\\x3d\\x6d\\x3e\\x42\\xc4\\x5e\\xec\\x41\\xc5\\xd0\\xf4\\xcb\\x61\\x47\\x0f\\xa6\\xcb\\x69\\xe6\\xb3\\xf0\\x1d\\x9a\\xc0\\xd7\\x87\\x52\\x7a\\x8a\\x25\\xd3\\x4a\\x99\\x38\\xd8\\x2a\\x0f\\x45\\x23\\x9e\\x7c\\xcf\\x25\\x8b\\x38\\xc8\\x35\\x79\\x41\\x30\\xfe\\x1e\\x6e\\x1e\\x2d\\x60\\x3e\\x09\\x73\\x54\\x40\\x6a\\xcd\\x03\\xb2\\xc3\\xbd\\xb2\\x3e\\x4a\\x13\\x8e\\x64\\xc5\\x72\\xc3\\x76\\x85\\x0d\\x7f\\xe6\\x99\\x8c\\x6d\\x7e\\x01\\x14\\xf0\\x1d\\x79\\xe7\\xf3\\x6f\\x3a\\xe4\\x1f\\xd8\\x69\\xb0\\x4b\\x37\\xe7\\xe6\\xcd\\xb1\\x7e\\x5e\\xbd\\x70\\x6f\\x44\\x31\\xde\\x30\\xf8\\xe5\\x14\\x2a\\x6a\\xbd\\x40\\x89\\x7c\\x3e\\x6f\\xbd\\x51\\x5e\\x97\\x26\\xb5\\x77\\x8c\\xdc\\xb6\\x50\\x56\\x83\\xa4\\x43\\x2d\\xcf\\xcd\\x30\\xf8\\x93\\x68\\x6a\\x83\\xa6\\x69\\xab\\xbe\\x34\\xdd\\x97\\x52\\x0c\\x74\\xc9\\x69\\x76\\xee\\x0d\\xab\\x1d\\x6a\\xd7\\x19\\x64\\xe5\\x89\\x97\\x3a\\x00\\x90\\x47\\x9d\\x08\\x35\\xec\\x04\\x03\\xfd\\x30\\xf5\\xe6\\xab\\x53\\x71\\x55\\xbb\\xf1\\x8b\\x10\\x4d\\x62\\xba\\xc2\\x94\\x35\\x4f\\xc6\\x61\\xc5\\x55\\x2b\\x4a\\x91\\xa4\\xfb\\x94\\xeb\\x5e\\x5c\\x1b\\x2e\\x1c\\x97\\x46\\x85\\x2e\\xb8\\xc3\\x64\\xbb\\xa5\\x2a\\x21\\x64\\xcf\\x93\\x20\\x99\\x27\\x9f\\xe4\\x43\\x3c\\x00\\x87\\x16\\xf6\\x88\\x54\\x3d\\xc5\\xe4\\xa9\\x82\\x51\\x32\\xc0\\xba\\xe1\\x96\\x0f\\x2c\\x42\\x06\\x34\\xb9\\xd4\\x66\\xae\\x12\\x42\\x3b\\xf9\\x64\\x81\\xf9\\xf9\\xea\\xb7\\x68\\x7b\\x3e\\x5c\\x86\\x72\\x09\\x70\\xc2\\xa0\\xc8\\x83\\xdc\\xe3\\x0e\\x8f\\xb7\\xe2\\xcc\\x95\\x35\\x55\\x80\\x14\\xa5\\x21\\x46\\x3a\\x99\\x7d\\x28\\x3c\\x91\\x12\\xa6\\x53\\x8a\\x0f\\x29\\x13\\x5a\\x64\\x96\\x00\\x52\\x80\\x92\\x90\\x3b\\x4a\\x07\\x78\\x9b\\x01\\x8f\\xde\\x8f\\xf4\\xd5\\x16\\x00\\x52\\xbc\\x21\\xce\\x3e\\x63\\xb2\\x00\\x73\\x07\\x98\\xdc\\x80\\x1c\\xbc\\xf8\\x26\\xdb\\xf9\\x64\\x01\\x67\\x43\\x9c\\x79\\x2c\\x44\\x92\\x7a\\x50\\xe2\\xae\\x08\\xd9\\x01\\xfa\\x1d\\x3c\\x18\\xbc\\x2f\\x40\\x1b\\xb4\\x07\\x4b\\x21\\xf6\\x83\\xf4\\x82\\x18\\x34\\x20\\x40\\x15\\x71\\x05\\xec\\x4d\\x70\\x44\\xe3\\x83\\x09\\x38\\x9a\\x2c\\xd8\\x0c\\x9c\\x43\\x67\\x65\\xf7\\x6b\\x20\\x05\\x2a\\x1e\\x05\\xcf\\x81\\x2a\\x66\\x88\\x89\\x58\\x49\\x04\\x0f\\x0b\\x20\\x08\\x23\\xc5\\x40\\x5a\\x7d\\x2b\\x33\\x16\\x3d\\x86\\xfe\\xde\\xf2\\x67\\x93\\x20\\x60\\x69\\xdb\\xeb\\x80\\x9f\\xce\\xa9\\xaa\\x21\\x74\\xa1\\x6c\\xff\\xae\\x45\\x90\\x3d\\xb1\\xfc\\x4b\\x72\\xa0\\x39\\xd1\\x5a\\xc9\\x93\\x60\\x1f\\x05\\x6f\\x27\\xc3\\x7c\\x7c\\xb5\\x96\\xc4\\x84\\x24\\x37\\x90\\x1a\\xe8\\x99\\x83\\xd8\\x5f\\xcf\\xce\\x50\\x23\\x9c\\x7e\\x24\\xbe\\x1c\\x79\\x33\\xb4\\xa5\\xa2\\xf3\\xeb\\xe9\\x61\\xf4\\xfe\\x15\\x51\\x03\\xa9\\xa0\\x40\\x14\\xb7\\x0e\\x24\\xdb\\x58\\x92\\x4c\\x9a\\x2f\\xbb\\xc3\\x16\\xfe\\x0c\\x01\\x38\\x90\\x01\\x96\\xf9\\x00\\x9c\\xdb\\x7c\\x04\\xa1\\x73\\x62\\x29\\x00\\xf6\\xf2\\x1d\\x41\\x66\\x62\\x57\\xcf\\x25\\x69\\x22\\x21\\x84\\x14\\x3f\\x2c\\x2a\\x74\\x85\\x58\\x89\\xc9\\x21\\xc9\\xff\\x0e\\xe5\\x9b\\x8c\\xec\\x45\\xc8\\x13\\xa2\\xc4\\x04\\x4a\\x12\\x4f\\x93\\x93\\xf6\\xd0\\x49\\xc8\\x7d\\x07\\xfc\\xcc\\xa9\\x42\\x58\\x46\\x87\\xc6\\x7e\\x10\\x54\\x45\\x28\\xf7\\xb4\\x29\\x3f\\x18\\x8e\\x65\\x1b\\x79\\x14\\x3b\\xaa\\xa6\\x53\\x2e\\xd3\\xf1\\x03\\x6f\\x9d\\xfb\\xb2\\xea\\xea\\x10\\x6f\\x5b\\xe6\\xf9\\xc7\\x22\\xf8\\x81\\xde\\x6f\\x3b\\xce\\xf6\\x3b\\xed\\xec\\x19\\xae\\xbe\\x14\\x5c\\xbd\\x0e\\x73\\x21\\x9b\\xbb\\x58\\x08\\xa9\\x55\\x18\\x71\\x7c\\x9d\\x80\\x84\\xa2\\xde\\x79\\xd1\\x61\\x72\\x9c\\x30\\x32\\xba\\x08\\xbf\\x01\\xc7\\xb1\\xbf\\xb4\\x90\\xcf\\xc9\\xf8\\x22\\xd5\\xa9\\xa8\\x27\\x80\\x41\\x4f\\x5e\\x41\\x04\\xc3\\x80\\x41\\x35\\xe4\\x08\\x4f\\x4c\\x01\\x0a\\x97\\x00\\x97\\xfb\\x40\\x23\\xd0\\x02\\xfc\\x6b\\x95\\xba\\xad\\xd1\\x24\\x58\\xcd\\x8c\\xed\\x10\\x51\\x43\\xc2\\x67\\x3c\\x00\\x6f\\xca\\x48\\x2c\\x82\\x7c\\x94\\xe6\\x4a\\x63\\x22\\xba\\x85\\xd6\\x8c\\x43\\x03\\x05\\xec\\xb0\\xb2\\xfb\\x64\\x25\\x0b\\xfe\\x7b\\x9f\\xb7\\x02\\x65\\x8d\\x01\\xf7\\xe1\\x0e\\xf3\\xc2\\x18\\xdf\\xcd\\x2e\\xa1\\xe3\\xc2\\xe1\\xff\\x07\\x5d\\x1f\\x89\\x44\\x5f\\x0e\\x8a\\xae\\x26\\xf5\\xbd\\x84\\xc6\\x8b\\xd0\\x87\\xf3\\x11\\x1e\\x95\\x58\\xd0\\xee\\x3b\\x75\\x71\\x09\\xfd\\xf1\\x1f\\x86\\xc8\\x60\\x73\\x40\\xf9\\xd1\\xc2\\xec\\x38\\x62\\x0d\\xbc\\x42\\x7e\\x3a\\xad\\xf1\\xc6\\x29\\x6d\\x40\\x18\\x67\\xcb\\xba\\x93\\xae\\xac\\x3b\\x9a\\x70\\x46\\x31\\x9e\\x5b\\x33\\x87\\x10\\x4f\\xd6\\x92\\x2c\\x9f\\x07\\xb8\\xaa\\x2e\\x68\\x44\\x1d\\x63\\x00\\xd6\\xf0\\xea\\x52\\x2e\\x76\\xff\\x78\\x0b\\xc0\\xea\\x54\\xd2\\x11\\x40\\x3a\\xb0\\xbd\\x8c\\x9c\\x5b\\x16\\x34\\x1c\\x68\\x24\\x5a\\xb2\\x06\\xb1\\x29\\x12\\x0a\\x90\\xfa\\x90\\xb4\\xc7\\x29\\x7a\\x4f\\x13\\x45\\xdf\\xa5\\x57\\x71\\x0d\\x66\\xbd\\x1b\\x26\\x04\\x6c\\x13\\x6c\\xa1\\xf8\\x35\\xe8\\x2f\\xfb\\x8f\\x5f\\x51\\xac\\xbc\\x31\\xab\\x8c\\x3a\\x41\\x81\\xc8\\xc9\\x54\\x7c\\x46\\xb3\\x80\\xad\\x5f\\x37\\xee\\x22\\xa2\\x0b\\xeb\\xb7\\x9f\\x1d\\xdf\\xba\\x0a\\x14\\x1c\\x37\\xb1\\x74\\xfa\\xd0\\xda\\x81\\x34\\x0a\\xa1\\x15\\x17\\xa8\\xce\\x99\\x02\\x5c\\x40\\xb0\\x86\\x48\\x00\\x06\\x05\\xed\\x41\\x62\\x27\\x19\\x1e\\x72\\x71\\x94\\x26\\x51\\x82\\x43\\x50\\x3e\\x83\\xb4\\x24\\x2a\\x7a\\x7d\\xde\\xf6\\x21\\xa4\\x0e\\x0a\\x16\\x9a\\x65\\xf0\\x89\\x56\\x94\\xa7\\xc6\\xd2\\x1d\\x19\\x68\\xc8\\x52\\x48\\x14\\x64\\x17\\x7d\\x1d\\x3a\\x61\\xad\\x9a\\xa3\\x9a\\x40\\xcc\\xa7\\x11\\x28\\xee\\x89\\x6c\\xec\\x07\\xe1\\xa6\\x82\\xc9\\xd5\\x68\\x59\\xe2\\x81\\x5c\\xfa\\x34\\x21\\xf1\\x70\\xaa\\x70\\x00\\xe5\\xe0\\xf4\\x96\\x7e\\xf3\\xc3\\xf3\\x0a\\x4a\\x3b\\x94\\xc9\\xbc\\xf6\\x40\\x07\\x73\\x6a\\xf3\\x3b\\x20\\x9e\\xfa\\x75\\x02\\x5f\\xc7\\xc7\\xa7\\x9c\\x48\\x34\\x1c\\x6e\\x78\\x89\\xf2\\x05\\x93\\x1e\\x13\\x89\\x9a\\xac\\xd0\\x67\\xab\\x3b\\x29\\x9b\\xcf\\xfc\\xec\\x66\\x59\\x35\\x0c\\x98\\xb6\\x17\\xed\\x1a\\x63\\x62\\x89\\x4c\\xa1\\xee\\x13\\xfc\\x4e\\x45\\x32\\x7f\\x91\\xf9\\xe2\\x38\\xac\\xf3\\x7d\\xc0\\x99\\x80\\x0a\\xc8\\x4f\\xf5\\xa6\\x1a\\xfc\\xd3\\xce\\x76\\xac\\xb6\\x68\\xf4\\x9b\\xca\\xe4\\xf2\\x74\\x67\\x57\\xb2\\xa3\\xec\\xcd\\x92\\x7f\\x0c\\x2e\\x58\\x13\\xf8\\x90\\xcc\\x75\\x69\\xca\\x4e\\x04\\x47\\x8f\\x24\\xd8\\xf0\\x3a\\x8f\\x0e\\xfb\\x93\\xac\\xed\\xce\\xf6\\x03\\x4b\\x44\\x6e\\x45\\x58\\x11\\xe7\\x64\\x75\\x26\\x32\\x4c\\x9a\\x08\\x6d\\x30\\x3a\\x13\\x4b\\x50\\x55\\x90\\x1b\\xe1\\xc2\\x1a\\xb3\\x05\\x6f\\xe4\\x07\\xbe\\xe0\\x77\\xd5\\x38\\xac\\x6a\\x43\\x44\\x52\\xa3\\x15\\x77\\xbd\\x97\\x6f\\x62\\x6d\\x07\\xf6\\xf4\\xb0\\xf5\\xd6\\x18\\x26\\xeb\\xf3\\xb5\\x18\\x73\\xd3\\x65\\x54\\x17\\xd0\\xcc\\x23\\xcd\\x12\\x6e\\x1e\\x28\\x9e\\xc9\\xd0\\x95\\xec\\x99\\x66\\x7e\\x3e\\xa8\\x0d\\x0e\\xbf\\xdf\\x11\\x4a\\xc5\\xeb\\x00\\x6d\\x77\\x52\\xf7\\x2d\\x0d\\x21\\x36\\xc6\\xc5\\xed\\x5b\\x74\\x7c\\x3e\\xcf\\x36\\xc4\\xe3\\xb1\\xce\\xa9\\x1b\\x47\\x4c\\x6b\\x0c\\x18\\x3f\\xda\\xc7\\x04\\xc9\\x48\\x5e\\xc7\\x82\\x93\\x60\\xca\\xc5\\x80\\x5d\\xbd\\xbd\\x8f\\xb2\\xba\\x90\\xb1\\xc3\\xd2\\x5a\\x00\\x0a\\xa7\\x69\\x2e\\x8e\\x4b\\xa3\\x7b\\xc0\\x85\\xca\\x18\\x50\\xf3\\xc1\\x49\\x36\\x89\\x3b\\x20\\x05\\x68\\xbc\\xd1\\x49\\x74\\x16\\xf9\\x18\\x48\\x71\\x72\\x7a\\xf4\\xaf\\xe5\\xef\\xa0\\xe1\\xaa\\x6b\\x58\\xf0\\x23\\xa1\\x65\\x4f\\xbd\\x0e\\xcc\\x54\\xaa\\x17\\xe7\\xf0\\x10\\x53\\x46\\xa9\\xf6\\x9a\\xc2\\x10\\x5d\\xa2\\x45\\x12\\x38\\x5a\\xa8\\x92\\xbd\\xd3\\x27\\xce\\x69\\xa9\\x20\\xf1\\x3a\\x21\\x08\\xf5\\xa3\\x45\\x88\\xa3\\xc9\\x58\\xd8\\x62\\xcb\\x93\\x70\\xea\\x16\\x8a\\x06\\x37\\x78\\xd0\\x3b\\x11\\x50\\x43\\xf4\\xfe\\x23\\xe8\\xea\\x64\\xcf\\x39\\xf6\\x8b\\xad\\x17\\x54\\x68\\xb2\\x24\\x94\\x9e\\x91\\x73\\xfd\\x9e\\x29\\xd8\\x53\\xef\\xf7\\x21\\x38\\xcd\\xf7\\xe9\\x86\\x7e\\xf5\\xc0\\x92\\xc5\\x8a\\x59\\x3c\\x70\\x64\\xd5\\xb1\\xe4\\x99\\x96\\x2f\\x84\\xde\\xa7\\x02\\x90\\x18\\x4b\\x1e\\x61\\x17\\xe3\\x76\\x45\\x16\\x82\\xe1\\x8a\\x2b\\x10\\xda\\x0c\\xbe\\xbb\\xc3\\xf1\\x79\\x2c\\x58\\x24\\x3a\\x14\\x6f\\x25\\x88\\x94\\xa4\\x42\\x45\\x69\\x09\\x7f\\x98\\x90\\x45\\x9e\\x2e\\x71\\x3b\\x3d\\x32\\x17\\xb7\\xc8\\x9e\\x47\\xf4\\x6c\\xa2\\xe8\\x7a\\x64\\x2e\\xa9\\x58\\xbc\\x46\\x16\\x2a\\x91\\xc8\\x8e\\x9c\\x14\\xe1\\x51\\x0a\\x68\\x65\\x40\\x9a\\x04\\xf0\\x41\\x83\\x5c\\x34\\xc0\\x29\\x04\\x29\\x0f\\x90\\xec\\x78\\xc2\\x04\\x28\\x32\\x20\\xe4\\x82\\xc6\\x02\\x78\\x34\\xe0\\xde\\x84\\xa2\\x15\\x58\\x07\\x60\\x4a\\x83\\x46\\x07\\xb8\\x3f\\xe1\\x4b\\x85\\x0a\\x09\\x88\\x46\\x20\\xc9\\x84\\x5d\\xfa\\x87\\xf3\\x9f\\x6d\\x7c\\x15\\xe5\\x67\\x8d\\xdf\\x1c\\x79\\x08\\x2a\\xa1\\x20\\x39\\xe0\\x2e\\xc2\\x18\\x1b\\xe9\\xbf\\x80\\xfe\\x83\\xfa\\x4f\\xd0\\x3d\\x31\\x7f\\x05\\xe1\\xeb\\xfd\\xaf\\xdb\\x3e\\x8a\\xff\\x6b\\xf7\\x0f\\xa6\\x3c\\x0b\\x7e\\x3d\\xf8\\xf7\\xc2\\x71\\x74\\xcb\\x8c\\xdf\\x99\\x78\\x54\\xe1\\x39\\xc2\\x6c\\x8d\\xc5\\xef\\x3b\\xa6\\xc6\\xbd\\x3f\\x4d\\xdb\\x97\\x4c\\xc3\\x73\\x3e\\xa5\\xdd\\x27\\x62\\x94\\x22\\x76\\xb9\\xcd\\xae\\xd0\\xf5\\x08\\x8f\\xc5\\xc5\\x54\\x5e\\xad\\xdc\\x0e\\xdf\\x4e\\x8e\\x3b\\x5c\\xef\\x13\\xba\\x2e\\x63\\x9c\\xc5\\xbb\\x07\\x49\\x9f\\x3a\\x08\\xef\\xb1\\xc8\\x2b\\xa4\\x98\\xb5\\x04\\xff\\x70\\xcd\\xc5\\x67\\x51\\x0e\\xd0\\x3a\\x28\\xe2\\x12\\x74\\x9d\\x46\\x74\\x55\\xda\\x87\\x71\\x7b\\x04\\xdd\\x74\\x3b\\x13\\x75\\xd0\\xe7\\xf9\\xc1\\xe3\\x61\\xe6\\xdc\\xbc\\x2c\\x83\\x01\\xc4\\x39\\x20\\xd7\\x9b\\xd3\\x6a\\x62\\xd0\\x78\\xd8\\xb9\\xaf\\xcb\\x70\\xf6\\xb9\\xff\\xc4\\x81\\xb4\\x41\\x12\\x0d\\x6b\\xeb\\x4d\\x84\\xf4\\xc1\\x2a\\x34\\xea\\x2d\\x22\\x47\\xba\\x53\\x09\\x3f\\x81\\x4a\\xa1\\x11\\xf7\\x50\\x0b\\x6e\\x69\\xd5\\x23\\x90\\x48\\xc4\\xca\\x50\\x18\\x98\\xca\\x40\\x5b\\x97\\x6f\\x3e\\x23\\x26\\x68\\xf8\\x86\\x6f\\xc6\\xbd\\x9b\\x52\\x6e\\xc1\\xa5\\xe2\\x23\\x7b\\xac\\xd8\\xd3\\x75\\x88\\x92\\xab\\xb5\\xaf\\xc8\\x8c\\x33\\x0a\\x12\\xde\\x74\\x6b\\xf8\\x23\\x9a\\x13\\x5f\\x1d\\x09\\x3e\\x82\\x82\\x70\\x4e\\x4f\\x1d\\x09\\x3e\\x27\\x6b\\x9a\\x04\\xb5\\xa5\\xa8\\xb6\\x83\\x5a\\x5e\\x69\\x50\\xfa\\x15\\xc7\\xb1\\x2f\\x1b\\x22\\x1a\\x42\\x78\\xb1\\x48\\x83\\x6a\\xc3\\xae\\x13\\xc7\\x8a\\x40\\x68\\x7d\\x86\\xba\\x94\\xa4\\xf1\\x59\\x2b\\xb5\\xbb\\x6e\\xf6\\x9c\\x9e\\x2c\\x18\\x43\\xff\\x84\\x18\\xe0\\x61\\xd3\\x3f\\x32\\xbd\\x8f\\xac\\x5e\\x63\\xa3\\x25\\x58\\xfe\\xc8\\xe6\\x29\\x33\\x19\\x99\\xfb\\xcc\\x83\\x11\\xd4\\xcc\\xc7\\x61\\x33\\x09\\x56\\x88\\xb7\\x39\\x64\\x20\\xf2\\x6b\\x28\\x2c\\xbc\\xb1\\x62\\xc6\\xab\\x63\\xa5\\x87\\x2d\\x1d\\x4c\\xf0\\x5a\\xae\\x12\\xe4\\xc0\\xaa\\x61\\x32\\xdb\\x2b\\x71\\x2e\\x40\\xba\\x7a\\xc3\\xab\\x23\\x2d\\xac\\xb4\\x22\\xe1\\xcb\\xa2\\xae\\x3e\\xb4\\xd2\\xe1\\xaa\\x6b\\x2a\\x21\\xb3\\x08\\x70\\x82\\x37\\x0c\\x16\\x69\\x20\\x5a\\xf0\\xc1\\x62\\x94\\x14\\xaa\\x9f\\xe9\\xa3\\x30\\x48\\x05\\xed\\x30\\x50\\x6f\\x13\\x04\\x09\\x02\\x56\\xce\\x26\\x98\\x03\\x6d\\x5c\\x01\\x30\\x06\\xb4\\xad\\xbc\\xc0\\x02\\xb0\\x8a\\xc2\\xb6\\x53\\x00\\x7d\\x13\\xaf\\x13\\x00\\x79\\x6c\\x98\\x01\\xf3\\xcc\\x60\\x07\\x6b\\x4b\\x21\\x80\\x12\\x89\\x07\\xea\\x60\\x02\\x24\\xe8\\xc0\\x06\\x5b\\x42\\x99\\x80\\x25\\xd1\\x80\\x53\\x00\\x07\\x00\\x89\\x80\\x00\\xd2\\x3f\\x11\\x0d\\xb2\\x76\\xba\\x54\\x86\\xc2\\x3d\\x21\\x0d\\x86\\xd8\\xba\\x59\\x0d\\xb9\\xd8\\xc8\\x6c\\xf4\\xa1\\xbf\\xc8\\x73\\xc5\\x50\\x0a\\x9d\\x75\\x5e\\xea\\x6c\\xd4\\x01\\x15\\x65\\xed\\x52\\x1c\\x88\\xe1\\xa9\\x0e\\x44\\x6e\\x14\\x87\\x22\\xf7\\xfa\\x69\\x09\\x1a\\x6a\\x21\\x53\\x72\\x9f\\xd4\\x66\\xa3\\x75\\x00\\xab\\xea\\x8d\\x15\\xf9\\x55\\xaa\\x7b\\xcd\\xe4\\x1e\\xc2\\xa5\\xa5\\x62\\x2b\\x45\\x4b\\x8a\\xa9\\x55\\x2a\\xb1\\x52\\x4c\\x92\\x44\\xa2\\x25\\xc1\\x3a\\x52\\x0b\\x4a\\x29\\x24\\x74\\x93\\xd2\\x21\\x48\\xb9\\x2b\\xd4\\xba\\xe9\\xf0\\x87\\x06\\xc9\\x5c\\x87\\x06\\x09\\x8f\\x11\\x59\\x0e\\x08\\x12\\x44\\x4b\\x19\\x27\\x84\\xc0\\x93\\x23\\x4c\\x7d\\x28\\xc4\\xc0\\xd2\\xbf\\x4c\\x21\\x19\\xb4\\x74\\x11\\x61\\x43\\xe5\\x05\\x84\\x0a\\xd1\\x1c\\x40\\xd1\\x00\\xb4\\x0d\\x90\\x36\\x42\\xd9\\x1d\\x24\\x40\\x11\\x11\\x45\\x01\\x19\\xf4\\x7f\\xd1\\x8f\\x46\\x1d\\x1e\\x54\\x6c\\x51\\x7a\\x45\\x09\\x14\\xb3\\xdc\\x4e\\x45\\x9d\\xc4\\xf0\\x83\\xf9\\x8f\\x56\\x3e\\xc4\\xfc\\xe3\\xf3\\x0f\\xb3\\x3f\\x34\\xfb\\xe3\\xe4\\x4c\\x57\\x1b\\x56\\x60\\xfc\\xde\\x13\\x67\\x0d\\x42\\x37\\x84\\xd9\\x73\\x52\\xcc\\x01\\x1a\\xf8\\x6b\\xe9\\x9e\\x63\\x14\\xe6\\x82\\xcd\\x90\\x30\\x04\\x60\\xe4\\xc2\\x91\\xb1\\xe6\\xe6\\x9a\\x98\\x6c\\xf1\\x93\\xa3\\x3b\\xcd\\x06\\x36\\x64\\xdc\\xd3\\x73\\x8c\\xd0\\x19\\x3b\\x35\\xfa\\x63\\xe8\\xdb\\xb9\\x8e\\xb2\\xc7\\x05\\xdb\\xca\\x0e\\x16\\x82\\x2d\\xfa\\x5a\\x70\\xae\\x40\\x8b\\x10\\xff\\x80\\x82\\x10\\xfd\\x3d\\x10\\x87\\xf2\\xb1\\x4a\\x0c\\xc1\\x00\\x87\\xe0\\x19\\xa8\\x87\\x68\\xe4\\x04\\x3b\\x0a\\x7e\\x90\\xe3\\x39\\x22\\x43\\xf0\\x0f\\x18\\xb4\\xf1\\x76\\x42\\xdf\\x31\\x28\\x87\\x16\\xdf\\x31\\x0e\\x24\\x21\\xa4\\x84\\xa8\\x5d\\x66\\x84\\x9c\\x0e\\x53\\xae\\xcd\\x44\\xea\\x05\\x28\\xec\\xef\\x39\\xa9\\xab\\x14\\x9b\\x71\\xd6\\x84\\x7b\\xf5\\xfa\\xb8\\x0a\\xaa\\xb8\\xf3\\xd3\\x95\\x4f\\xd5\\x20\\x71\\x4f\\x05\\x10\\x9f\\xdb\\x74\\x01\\x4c\\xc9\\xc1\\x6a\\xde\\xa0\\x18\\x4f\\x28\\xb4\\xe7\\xba\\x33\\xbe\\x9d\\x54\\x9b\\x1e\\xf2\\x54\\x77\\x44\\xd2\\xa1\\xad\\xce\\x61\\x8e\\x97\\x13\\xb7\\x7f\\x8d\\xce\\x79\\x4f\\x38\\x28\\x5a\\x2f\\x6d\\x4c\\xd9\\x3a\\xe9\\xdd\\xe9\\xcf\\x97\\x08\\xe3\\x9a\\x96\\x4d\\xbf\\x93\\x32\\x84\\x60\\x13\\x23\\xae\\x37\\xc9\\x63\\xc5\\x01\\x35\\x8b\\x93\\x7f\\xac\\x5f\\x4f\\x49\\x50\\x2b\\x5d\\x45\\x2b\\x91\\xd3\\x5d\\x84\\xa6\\xdd\\x3b\\x0b\\x4b\\x12\\x32\\x89\\xe9\\x9c\\x45\\x54\\x3f\\x00\\x37\\xc4\\x13\\x33\\x52\\x4e\\xee\\x55\\x74\\xe3\\x7a\\x33\\xa4\\x95\\x5a\\x02\\xb3\\xd4\\xd9\\x81\\x53\\x66\\xd8\\x59\\x45\\xd6\\x44\\x55\\xb9\\x19\\x10\\x2f\\xcc\\xd2\\x97\\x02\\xec\\x7e\\x00\\x02\\xd9\\x0d\\xe6\\x20\\xf4\\x69\\x38\\x22\\xe4\\x90\\x20\\xa4\\x93\\x08\\xe2\\x53\\x69\\x97\\x3d\\x14\\xf7\\x22\\x04\\xcb\\x92\\xf2\\xc3\\x42\\xc7\\xa9\\xc4\\x5e\\x05\\xb4\\xba\\x6c\\xca\\x28\\xc9\\xb0\\x5e\\xb8\\x02\\xbc\\xa8\\x9d\\x52\\x11\\x72\\x17\\x99\\xe3\\x4a\\xa6\\x7d\\x35\\x42\\x11\\xf0\\xc7\\x29\\x33\\x7c\\xd0\\x13\\x4b\\xb6\\x47\\x78\\x36\\x25\\x11\\xba\\x48\\x8b\\x35\\x5c\\x9d\\xca\\xea\\x2d\\x42\\x84\\x47\\x9d\\xa9\\x1d\\x96\\x17\\x02\\xc4\\x0c\\x87\\xf3\\x3f\\x95\\xe2\\x2f\\x48\\x02\\xb2\\x5a\\x14\\x92\\x0b\\x1c\\x9f\\x8a\\xc1\\x26\\xbc\\xa2\\x32\\x5d\\x0c\\x90\\x58\\x60\\xb7\\x83\\x48\\x48\\x1a\\x93\\xf3\\xd0\\x59\\x04\\x3c\\x79\\xf1\\x04\\x79\\x1c\\x0a\\x27\\x50\\x11\\x04\\x06\\x5a\\x1d\\x00\\x90\\x41\\xcb\\x21\\x07\\x2c\\x04\\x1c\\xa7\\xf1\\x79\\x43\\xe2\\xf2\\x68\\x38\\x21\\xd3\\xf8\\xbe\\x7b\\x17\\x2f\\x22\\xf8\\x21\\x0e\\x7c\\x10\\x86\\x7d\\x0e\\x86\\x3c\\x27\\x0c\\x78\\x13\\x0a\\xf6\\x5e\\x15\\xec\\xbc\\x27\\xd8\\xf4\\x4b\\xb1\\xa8\\x87\\x63\\x50\\xde\\xc6\\xa1\\xbd\\x0d\\x43\\x3a\\x18\\xbd\\xf4\\x25\\x79\\xe8\\x55\\xe7\\x91\\x57\\x6e\\x45\\x5c\\xf9\\x15\\x71\\xe4\\x39\\x6d\\xe0\\x4a\\xd9\\xc0\\x95\\xa3\\x81\\x2b\\x2f\\x02\\x56\\x1d\\xc3\\x95\\xfd\\xc6\\x36\\xbb\\x8c\\x6c\\xf7\\x18\\xd9\\x6e\\x20\\xd6\\xee\\x20\\xd6\\xee\\x20\\xd5\\x83\\x3a\\x82\\x7d\\xde\\x3b\\x9f\\x28\\x1b\\x93\\xa7\\xe0\\xcc\\x9e\\xd5\\x75\\x8e\\xc1\\xa9\\xee\\xc1\\xa9\\xe6\\xc1\\xa9\\xbe\\xc3\\x13\\x4d\\x86\\x26\\x5b\\x0c\\x4c\\x36\\x0d\\x49\\xf6\\x0d\\x49\\xb5\\x0d\\x49\\x35\\x11\\x63\\x75\\x0d\\x62\\xf5\\x1e\\xc2\\xea\\x3d\\x85\\xd0\\x7b\\x09\\xa0\\xc6\\x0b\\x41\\x8c\\x06\\x83\\x17\\xcd\\x06\\x2f\\x59\\x8c\\x5e\\xb3\\x18\\xbb\\xe6\\x31\\x74\\xcc\\x62\\xeb\\x91\\x0a\\xeb\\x91\\x95\\xcf\\x21\\xeb\\x76\\x43\\xd6\\xbc\\x87\\xad\\x39\\x0f\\x59\\xb2\\x24\\x58\\xb2\\x32\\xb0\\x62\\x22\\xae\\xe2\\x25\\x5a\\xc0\\x4a\\xb7\\x80\\x95\\x6f\\x01\\x2a\\xd6\\x02\\x0a\\xa6\\x02\\x0a\\x8e\\x01\\x2a\\x76\\x01\\x28\\x58\\x33\\xa1\\x60\\xce\\x84\\x83\\x3a\\x12\\x0c\\xe8\\x4e\\x02\\x28\\x46\\x07\\x28\\x45\\xe3\\x90\\x8b\\xc7\\x3c\\x41\\x9d\\xe0\\x0c\\xef\\x00\\x64\\x78\\x03\\x90\\x2f\\x29\\x77\\xdc\\x55\\xdf\\x71\\x57\\xb5\\xc4\\xaf\\x60\\x46\\x7b\\x5c\\x31\\xec\\x04\\xcf\\xae\\xa1\\xed\\x69\\x17\\xad\\xa4\\x51\\x3b\\x45\\x44\\xed\\x7d\\x34\\xe5\\x3e\\xe4\\x14\\x7e\\x21\\x0a\\xe1\\x15\\xce\\x01\\x2f\\x00\\x92\\x6c\\x8b\\x96\\xb0\\xaa\\xe9\\x8a\\x46\\x70\\x83\\xe6\\x8d\\xb1\\x21\\xd3\\x2c\\x7c\\x63\\x0f\\x3c\\x41\\xb5\\xf4\\xd2\\x9c\\xdc\\x46\\x23\\x25\\x3e\\xc2\\x80\\x71\\x7c\\x28\\x57\\x42\\x15\\x6e\\x2b\\x95\\xc3\\x45\\x5c\\x24\\x35\\x82\\xdf\\x56\\x2a\\xb5\\x42\\x8f\\x4c\\x20\\xd3\\xe3\\xbd\\x38\\x10\\x99\\x7e\\xca\\x54\\x36\\x7f\\x4d\\x00\\x2b\\xc3\\x22\\x4e\\x64\\xeb\\xec\\x38\\x08\\xe4\\x8b\\x21\\x2a\\x20\\x58\\x26\\xb0\\x5e\\xdc\\xaf\\x5c\\xee\\xa7\\x38\\x39\\x00\\x6e\\x28\\x7b\\x1c\\x65\\x0b\\x8c\\x72\\xa5\\x3e\\x19\\xb8\\x39\\x4c\\x62\\xbd\\xdc\\x52\\x5b\\x60\\xe0\\x2b\\x2a\\x0a\\x9b\\x11\\xea\\xd9\\x6b\\x31\\x19\\x20\\xb9\\x47\\xe2\\x9a\\xc7\\xb7\\x6f\\xc9\\x62\\x8a\\xfc\\xcc\\x1a\\x08\\x13\\x87\\xee\\x64\\xe9\\xdf\\xc0\\x22\\x32\\x26\\x65\\x81\\x31\\xd4\\x45\\xd0\\x0c\\x2a\\x68\\x16\\xca\\x39\\x5d\\x2c\\x38\\x68\\x0d\\xa9\\x11\\xe4\\x6b\\x94\\x80\\x2a\\x6e\\x92\\x63\\xe2\\xa5\\xd3\\xdd\\xeb\\xca\\x23\\xda\\x2f\\x9f\\xeb\\x49\\x13\\x36\\x19\\x95\\x59\\xf2\\xe8\\x5b\\xb2\\xc9\\x88\\xe0\\x06\\x1f\\x44\\xc4\\x64\\x6c\\xcb\\xbc\\x53\\x0e\\x22\\x59\\xdd\\x78\\x4a\\x46\\x43\\x06\\xec\\x52\\x12\\x1e\\x18\\xa6\\x1b\\xa8\\x01\\xe1\\xa6\\x12\\x85\\x6e\\x93\\x40\\xfa\\x5b\\x18\\x80\\x6e\\x38\\xaf\\xee\\x91\\x5e\\x71\\xeb\\xe2\\x39\\x78\\xc4\\xa8\\x7c\\x4a\\xa2\\xc4\\x2a\\x14\\x22\\x97\\xc1\\x29\\x53\\xfa\\x88\\xbe\\x29\\xc3\\xe2\\xa3\\x3d\\x2a\\x03\\xc2\\xb9\\xba\\xa8\\x8b\\xa2\\xb7\\x37\\xa9\\x03\\x62\\xdc\\x68\\x5d\\x4c\\x8b\\x91\\x8d\\x77\\xb0\\x2b\\x12\\xf2\\x92\\x2e\\xa9\\x73\\x12\\xa4\\x5b\\x8c\\xb6\\x4c\\x3a\\xe7\\x44\\x83\\x14\\x75\\xec\\x5c\\xb7\\x1f\\x76\\x04\\x8a\\xfb\\xa9\\xc0\\x1d\\xe4\\xec\\x96\\x08\\x74\\x68\\x01\\x69\\x49\\x83\\x26\\x02\\xd3\\x5c\\x6f\\x56\\x7d\\x71\\xf0\\x0b\\x63\\x84\\x1d\\xb1\\x5b\\x51\\x32\\x41\\x57\\x50\\x65\\x99\\xbf\\xb5\\xe1\\x07\\xf3\\x6d\\x60\\xd6\\x53\\xb5\\x6c\\x5a\\xb4\\xfd\\x76\\xa2\\xc4\\x06\\x5a\\xb6\\xf4\\xb6\\x0c\\xed\\x75\\x83\\x28\\xba\\x6c\\x59\\x5a\\x8a\\x6b\\x02\\x24\\x21\\xa5\\xa4\\x64\\xf1\\xa5\\x20\\x57\\x5d\\x32\\x68\\xa5\\x52\\x5c\\x0a\\x4e\\xc4\\xa0\\x8d\\x8b\\x75\\x9e\\x1c\\x00\\x58\\xad\\x2d\\x8c\\x0c\\x10\\x05\\x92\\x40\\x9b\\xa5\\x09\\x61\\xd7\\x55\\xbf\\x3f\\xe4\\x5f\\x84\\xdc\\xeb\\x65\\x68\\x89\\xeb\\x32\\x18\\x8a\\xe9\\xd6\\xa5\\x29\\x59\\x6c\\x34\\xca\\xd6\\x57\\xd6\\x52\\xa6\\x54\\x69\\x9a\\xd7\\xf5\\x1a\\x23\\xe3\\xec\\x26\\x2c\\x7c\\xc0\\x2b\\x04\\xba\\x94\\x7a\\x02\\xd8\\xdb\\x5c\\x11\\x06\\x19\\x10\\x97\\x26\\x05\\x13\\xd9\\x9a\\xd4\\x20\\xb7\\x30\\x51\\x14\\xc2\\x88\\xf4\\x47\\x25\\xbf\\x64\\x14\\x77\\xd2\\xc8\\x9f\\x69\\x72\\xa6\\x2c\\x5a\\xbd\\x26\\x1f\\xd1\\x89\\x55\\xb1\\x1f\\x2c\\x84\\xea\\xb1\\x11\\xa2\\xa0\\x7c\\x03\\xdd\\x6c\\xc7\\x66\\xa9\\x71\\x42\\x1e\\x8e\\x4c\\x21\\xd7\\x15\\x6c\\x53\\x33\\xec\\x06\\xce\\x84\\xf6\\x9d\\x43\\x39\\xe0\\x30\\x37\\x7f\\x9c\\x9d\\x41\\x2b\\x00\\x35\\x2c\\x55\\x92\\xab\\x56\\x80\\xba\\x93\\x9c\\x85\\x6a\\x96\\x54\\xf4\\x80\\x73\\x1f\\xb3\\x50\\x02\\x80\\xd0\\x9a\\x88\\xf2\\xc7\\xf2\\x72\\xcf\\xee\\x2e\\xec\\x84\\x30\\xa9\\x4b\\x43\\x39\\xbc\\x6b\\x19\\xfd\\xd6\\x33\\xf1\\xad\\x60\\x99\\x94\\x9f\\x1c\\x4a\\x51\\xb7\\xa3\\x4e\\x0b\\xe2\\x74\\xbc\\xca\\x26\\xb1\\x19\\xe9\\x0d\\x32\\x89\\xad\\x5b\\xe5\\x47\\x9f\\x89\\x02\\x41\\xdc\\x98\\x34\\xc7\\x02\\x59\\xea\\x08\\x99\\xfd\\x10\\x86\\xa2\\x83\\xf9\\x37\\xa2\\x1f\\x89\\x56\\xc0\\xef\\x7d\\x2a\\x54\\xce\\x46\\x90\\x35\\x49\\xf5\\x40\\x9c\\xa3\\x8a\\x8a\\x73\\xe5\\x45\\x38\\xb6\\xa4\\x8d\\x7a\\xa9\\xfc\\x96\\xd4\\x19\\xdd\\xd0\\x13\\xdc\\xae\\x9e\\x03\\xf0\\xb0\\x36\\x26\\xc0\\xf0\\xe9\\x7b\\x0f\\x0b\\xc2\\x1d\\xa7\\x7a\\x0a\\x3e\\x79\\x18\\x16\\xa3\\xed\\x8a\\x18\\xf6\\x75\\x6d\\x25\\x49\\xb5\\xe4\\xa5\\xe7\\xa4\\x9c\\xe2\\x18\\x74\\x72\\xfc\\x18\\x86\\xcc\\xa8\\xa3\\x01\\x71\\x70\\x02\\xe2\\x8d\\x67\\x06\\xb7\\xd9\\x41\\xa8\\x40\\x5c\\x4d\\x4b\\xc2\\x4b\\xf9\\x75\\x24\\x0b\\xe5\\x72\\x7f\\x7e\\x31\\xdc\\xe9\\x25\\x17\\x1a\\x49\\x45\\xca\\x86\\x5c\\xe0\\x5b\\x0a\\x5b\\x8f\\xa8\\xe4\\x4f\\x42\\xd2\\x32\\x25\\x05\\x0e\\x88\\x74\\xa6\\xec\\xfa\\x14\\xd6\\xc9\\xd4\\x46\\xd2\\x75\\x11\\x6b\\x0b\\x4f\\xdb\\x10\\x94\\x44\\x1a\\x67\\x51\\x1a\\x0f\\x94\\x80\\x0a\\x20\\x84\\x39\\x0f\\xc1\\xd0\\x91\\x6e\\x41\\xa4\\x15\\x6a\\x53\\xf7\\x86\\xb3\\xea\\x27\\x83\\xf4\\xec\\x5f\\x65\\xb4\\xac\\x81\\x21\\xe0\\xec\\x5f\\x1f\\xc0\\xe9\\xc1\\x49\\x77\\x27\\x5b\\x61\\x0b\\x97\\x5c\\xee\\x23\\x17\\x3b\\x88\\xeb\\x98\\xc7\\xc4\\xcc\\x63\\xf4\\xcc\\xce\\xc2\\x8d\\x82\\xb5\\xa2\\x1b\\x66\\x4f\\x06\\x99\\x28\\xba\\x01\\xbc\\xe3\\x03\\x7e\\xc3\\x8b\\xa2\\x63\\x6f\\x00\\x5c\\x9f\\x9c\\x01\\xa1\\xd4\\xa6\\xea\\x12\\x4a\\xcc\\x55\\x88\\x6a\\xde\\x77\\x33\\x36\\x75\\x79\\x44\\xc3\\x92\\x1b\\x40\\xb9\\x96\\x67\\x0b\\xef\\x16\\x08\\xde\\xa7\\x78\\x36\\x7f\\x6d\\xe7\\xa8\\x08\\x67\\x9e\\x4a\\x91\\x6a\\x9d\\xc5\\xd1\\xc2\\x5c\\xcf\\x9f\\x8c\\x17\\x87\\x02\\x31\\x86\\xed\\xc1\\x97\\xf5\\xf4\\x66\\x1b\\xc9\\xce\\xc1\\x90\\x61\\xad\\xfe\\xfe\\xa4\\xa0\\x4a\\x6a\\xd9\\x7f\\x2d\\x7d\\xf4\\x80\\x3e\\xe6\\xd3\\x94\\x64\\xa0\\x0b\\x55\\xa7\\x1f\\x94\\x05\\x5d\\x88\\xbc\\xa8\\xef\\x2f\\x27\\xc7\\xa8\\x40\\x5c\\x3c\\x7f\\x46\\x9d\\xdf\\xa3\\x4e\\xd0\\x8e\\x30\\x6f\\xb6\\xfe\\xe9\\xbe\\x4b\\x2b\\x8f\\xca\\xeb\\x4f\\xca\\x2b\\x22\\x70\\x25\\xa4\\x87\\x94\\x2f\\x94\\xf3\\xdd\\xb2\\xa0\\xcb\\x65\\x29\\x96\\x8f\\x5e\\x48\\xb1\\x7b\\x12\\x0b\\x17\\x3e\\xb8\\xe7\\x9f\\x33\\x9e\\x78\\xce\\x6e\\x66\\x38\\x32\\xce\\x03\\xc9\\x1c\\xeb\\x4b\\xb8\\xf4\\xf3\\xe6\\x3a\\x23\\x0f\\x50\\x01\\x2d\\x67\\xa8\\x04\\xce\\x5e\\x02\\x67\\x2d\\xf0\\x5c\\xd2\\xc2\\x06\\xfa\\x00\\xb0\\x51\\x8a\\x48\\x8f\\xc8\\xdd\\x2e\\xbb\\x3a\\x23\\x2e\\xce\\x75\\x83\\x4a\\x3b\\x3c\\xa0\\x0a\\x79\\xa3\\xee\\xc9\\x37\\x05\\xba\\x46\\x6f\\x2a\\x51\\xb9\\x03\\x60\\xe4\\xf4\\x55\\x50\\xad\\x21\\x07\\x80\\xcc\\xd6\\xa5\\x83\\x8c\\xf4\\x8b\\x75\\xed\\x74\\x21\\xdb\\x85\\xc3\\xfb\\x42\\x91\\xed\\x32\\x60\\xa4\\x1a\\xca\\x13\\x0d\\xb1\\x75\\xd2\\x21\\x6a\\x43\\xed\\x28\\xd1\\xea\\x72\\x3b\\x54\\xd1\\x1c\\x00\\xb5\\xba\\x4c\\x26\\x82\\x19\\xb3\\x0e\\x50\\x9e\\x44\\xea\\x00\\x32\\xf6\\x1f\\x68\\x1c\\x32\\xee\\x74\\x3e\\x2d\\xe4\\xa7\\xfc\\xe1\\xbc\\x33\\x3f\\xb1\\x65\\xc6\\x16\\x32\\x50\\xbb\\x95\\xfc\\x10\\x7a\\x3f\\x7e\\x69\\x87\\xe4\\x92\\x1a\\x86\\x3c\\x3c\\x8d\\x12\\x37\\x20\\xff\\x45\\x72\\x29\\xd0\\xb7\\x2f\\x85\\x39\\x6e\\xcf\\x66\\x5b\\xb8\\x7c\\xc9\\x37\\xb6\\xf3\\x8c\\x74\\x47\\x8e\\x76\\x28\\x63\\x22\\xb8\\xe1\\xb7\\x04\\x1b\\x5e\\x0f\\x50\\x53\\x66\\x47\\x21\\x0c\\xa4\\x88\\x5d\\xb2\\xd3\\x8b\\x66\\x36\\x7c\\xe0\\x51\\xad\\x92\\xc3\\x6c\\xf4\\xf9\\xfb\\x89\\x0f\\xf5\\x1a\\x03\\x85\\xbb\\x57\\x82\\x1e\\xaa\\x68\\x24\\x26\\xef\\xd2\\x14\\x03\\x74\\x92\\x10\\xef\\xd5\\xdc\\x57\\xe8\\x46\\xec\\x11\\xa5\\x3d\\x96\\x24\\x21\\xcc\\xfd\\xed\\x0b\\xb8\\xdf\\x64\\xe2\\x1b\\x65\\x9a\\xac\\xe1\\x9b\\xd2\\x0a\\x32\\xf2\\x61\\x90\\x2c\\xb8\\x6a\\x50\\xce\\xb3\\x05\\x8a\\xb1\\x59\\x0e\\x3f\\x58\\x58\\x4c\\x10\\xa2\\xfc\\x10\\x7c\\xfb\\x79\\x30\\xce\\x84\\xbd\\xdd\\xaa\\x9b\\x87\\xf2\\xa3\\x30\\xd0\\x40\\xe7\\xdd\\xd5\\xb4\\x66\\xc4\\x48\\x4f\\x7e\\x13\\xfc\\x43\\xb1\\xfd\\x72\\x70\\xf9\\xac\\x87\\x5f\\x13\\x48\\x00\\xe5\\x34\\x80\\x1a\\xcf\\x71\\xbf\\x19\\x83\\x33\\x60\\xa9\\x05\\x1c\\xf4\\xd5\\x71\\xe9\\x50\\x66\\xfe\\x60\\xae\\x0f\\x28\\x05\\x46\\x51\\xd5\\x12\\x2c\\xe0\\x20\\x82\\x0d\\x7f\\x9f\\xcc\\xd2\\xbc\\x51\\xca\\xc6\\xa9\\x7a\\x8d\\xa5\\x56\\x17\\x10\\x88\\x59\\x00\\xd4\\x8f\\x89\\x10\\xf0\\xba\\x0e\\x0d\\xa1\\x43\\x9f\\xbf\\x8b\\xc8\\x5c\\x75\\x7e\\x15\\x08\\x58\\x52\\x05\\x06\\x51\\x52\\xd9\\x45\\x59\\x20\\xa5\\xa7\\xfc\\x14\\xab\\xe0\\x90\\xff\\x30\\x59\\x50\\x6c\\x45\\x94\\x41\\x43\\x90\\x25\\x42\\x90\\x55\\x04\\xe2\\x03\\x20\\xa8\\x5f\\xe5\\x42\\x7e\\x88\\x48\\x31\\x09\\x90\\x55\\x77\\xd2\\x2b\\xb2\\x08\\x2b\\x51\\x85\\x56\\x7d\\x3b\\x53\\xe8\\x5a\\x8f\\x42\\xd1\\xf9\\x08\\x46\\x41\\x68\\x63\\x20\\xb3\\xb1\\x90\\x59\\xd8\\xc9\\xd9\\x3d\\x49\\x3c\\x05\\x65\\x8a\\x49\\x68\\x7a\\xf0\\x64\\xb1\\xa5\\x7b\\x69\\x9f\\xdf\\x1c\\xfa\\x4f\\x13\\x87\\x42\\x90\\x43\\xe3\\x62\\xc0\\x6a\\xc4\\x37\\xb8\\x0a\\xd8\\x19\\x1e\\x0e\\xb7\\x96\\xcf\\x26\\x28\\x29\\x94\\x90\\xf1\\x1e\\xbf\\x2f\\xf2\\xc1\\x28\\xd8\\x40\\xdf\\x7d\\x57\\xa4\\xda\\x6a\\xc5\\x4a\\xd1\\x10\\xc4\\xaf\\x61\\xc5\\xa7\\xaa\\x73\\x37\\xf6\\x45\\x22\\x1d\\xa4\\xb3\\xfd\\x8b\\x27\\xd8\\xb2\\x5d\\x0a\\xe7\\xd0\\xae\\x31\\x9d\\xce\\x11\\x92\\x66\\xe8\\x89\\x32\\x84\\x44\\x99\\x3a\\x22\\xed\\xf7\\xe0\\x60\\xef\\x0c\\x18\\x8e\\xef\\x71\\x03\\x37\\x28\\x45\\x78\\xc2\\x2b\\xc6\\x13\\x7d\\xc3\\xa2\\x3f\\xba\\x23\\xf7\\xa2\\x3f\\x3a\\x23\\xf2\\x13\\xdd\\xe0\\xe1\\x43\\x09\\xfe\\xef\\x08\\x57\\xb4\\x01\\x5e\\xd0\\x0e\\x7b\\x40\\x15\\xe7\\xb8\\x28\\x78\\x05\\x0c\\x04\\x2f\\x38\\x02\\x5e\\x50\\x08\\xba\\x60\\x1a\\xe8\\x80\\x6b\\xa2\\x01\\xae\\x87\\xc6\\xb9\\x9f\\x1a\\xe6\\x7c\\x6b\\x95\\xf2\\x0b\\x95\\xf1\\xae\\x37\\xc4\\x5c\\x6f\\x8f\\x70\\xbe\\x3d\\xc2\\xf8\\xf7\\x03\\xe3\\xdb\\xef\\x0f\\x5e\\x07\\xa0\\xc5\\xe2\\x54\\x41\\xe1\\xc8\\x7b\\xc3\\x90\\xe7\\x87\\x21\\xaf\\x0e\\x43\\x5e\\x1e\\x86\\xba\\x3d\\x0b\\x74\\x62\\x17\\x60\\x40\\x44\\x1d\\x7a\\x64\\x07\\xad\\xda\\x35\\x6d\\xe0\\x09\\xaf\\xfb\\x74\\xc2\\xf9\\x26\\x08\\x13\\x10\\x81\\xea\\x40\\x55\\x05\\x18\\x90\\x51\\x22\\x05\\x16\\x90\\x51\\x5d\\x04\\x14\\xe0\\x11\\xf0\\x02\\x3b\\x80\\x47\\x78\\x08\\xf2\\x00\\x13\\x80\\x08\\xf5\\x45\\xd8\\xe8\\xe7\\x63\\xa3\\x9d\\x6e\\x8e\\x75\\x3a\\x39\\xd4\\xe0\\xe7\\x4b\\x83\\x9d\\x2e\\x0e\\x74\\xb8\\x39\\xce\\xe0\\xe7\\x3b\\x83\\x9c\\xce\\x0e\\x73\\x38\\x39\\x1c\\x33\\x86\\x46\\xc7\\x39\\x1b\\x1c\\xe2\\x6c\\x73\\xbd\\xa1\\xce\\xd6\\x87\\x3b\\x5a\\x1c\\xec\\x68\\x73\\xad\\xa1\\xce\\xb6\\x07\\x3a\\x98\\x1c\\xea\\x60\\x73\\xa9\\x81\\xce\\x86\\x07\\x3a\\x18\\x1c\\xe7\\x60\\x73\\x9d\\x81\\xce\\x56\\x07\\x39\\x57\\x1c\\xe3\\x5c\\x73\\xc5\\x71\\xcf\\x15\\xc7\\x3c\\x17\\x1c\\xf0\\x5c\\x73\\xb9\\x71\\xce\\xe5\\x87\\x3b\\x56\\x1c\\xec\\x5a\\xe7\\x62\\xd7\\x3a\\xd5\\xb9\\xd6\\xad\\xce\\xb5\\x6e\\x74\\xab\\x73\\xa5\\x5b\\x9d\\x0a\\xdc\\xe8\\x56\\xe6\\xfa\\x97\\x37\\x94\\xb9\\xbc\\xa5\\xcd\\xd5\\x2e\\x6e\\xa9\\x73\\x71\\x4b\\x9b\\x8a\\x5c\\xdb\\x52\\xe6\\xda\\x77\\x36\\x93\\xb9\\xb4\\x9d\\xcd\\x94\\xee\\x6c\\x27\\x73\\x5d\\x3b\\x9a\\xc9\\xdc\\xd6\\x4a\\xe4\\x2d\\x2b\\x90\\x94\\xae\\x42\\x52\\xbd\\x08\\x4a\\xf4\\x21\\x1b\\xd0\\x64\\x6f\\x41\\x91\\xbd\\x03\\x4f\\x4b\\xb1\\xd1\\x45\\xbb\\xc1\\x2a\\x8e\\x94\\x32\\x6f\\x70\\x0b\\xd5\\x57\\x98\\xac\\xf8\\x5f\\xfb\\x8f\\xf5\\xcd\\xf5\\x38\\xba\\xc7\\x17\\x58\\xad\\xac\\x59\\xfb\\x14\\xfd\\x91\\xa5\\x45\\xc0\\xa4\\x7b\\x7a\\xc4\\x0b\\xac\\x52\\xfa\\xaa\\x1f\\x35\\x58\\x58\\xb2\\xe0\\x5f\\x6f\\x3c\\xb0\\x23\\x7a\\xbe\\x8d\\xc9\\x12\\x34\\x54\\x2f\\x40\\x08\\xdc\\xa0\\x73\\xc9\\xa7\\x3c\\xae\\x23\\x8a\\xb2\\x80\\x10\\x03\\x4f\\x37\\x99\\x70\\xa1\\x4b\\x87\\x98\\xaa\\xc9\\xab\\x2e\\x80\\x40\\x04\\x7f\\x14\\x6c\\x86\\xdc\\xea\\x05\\x62\\x91\\x1c\\x48\\x83\\x71\\x18\\xce\\x03\\xda\\x91\\x15\\x39\\x4b\\xf2\\x17\\x28\\x78\\x01\\x4a\\xa0\\xc2\\xe5\\x22\\x04\\x0a\\x46\\x43\\x03\\x4c\\xf1\\x28\\x90\\xcb\\x71\\xda\\x52\\xb0\\x80\\x14\\xa7\\x05\\x6b\\x06\\x34\\xc6\\xde\\x80\\x87\\xa5\\x50\\x45\\x5b\\x69\\xc7\\xdc\\x94\\xfd\\x6f\\x34\\xa2\\x28\\xcc\\x94\\x8e\\x70\\x0a\\xf2\\xc3\\x7d\\x61\\x12\\xac\\x07\\xb7\\xf6\\x29\\x63\\xae\\x88\\x35\\x30\\xb2\\xc3\\x5d\\x7f\\x31\\x03\\x4c\\x66\\x69\\xcf\\xc5\\x86\\xcd\\x65\\xa5\\xf4\\x14\\xf8\\x51\\xba\\x00\\x42\\x5f\\x4c\\xcd\\x2c\\x99\\xa9\\xcd\\xe9\\xd9\\xed\\x8e\\x5a\\x04\\x19\\x31\\x4a\\x6e\\x8d\\x26\\x6a\\x91\\x13\\x08\\x62\\x2a\\xc0\\x62\\xda\\xf5\\x3d\\xad\\xf0\\x63\\x7b\\x1f\\xe0\\x10\\x5c\\x7c\\xfc\\x18\\xab\\x88\\x83\\x8d\\xd5\\x6e\\x61\\x8a\\x1a\\x00\\x1f\\x92\\x22\\x9a\\x8a\\x68\\xa2\\xb5\\xc1\\x61\\x50\\xba\\x55\\x75\\x86\\x3f\\x40\\xf6\\x11\\x02\\x98\\xad\\x42\\x21\\xd2\\xa5\\x1e\\x1f\\x31\\x74\\x72\\x45\\xea\\x4e\\x47\\x6b\\x02\\xbc\\xb9\\x73\\x04\\x51\\x33\\x8f\\xe6\\x66\\x98\\xb1\\x84\\x6a\\xad\\x75\\xca\\xc6\\x1a\\xca\\xd1\\x02\\x77\\xc4\\xfa\\xba\\x6f\\x5d\\x49\\x1e\\x8d\\x86\\xa5\\x09\\xa1\\x1d\\x9b\\x17\\x4b\\x49\\x9b\\x04\\xb4\\x0d\\xdd\\x4e\\x7f\\x16\\xe5\\xb2\\x74\\xaa\\x9a\\x2a\\x0b\\x26\\x29\\xb6\\xda\\xa3\\x80\\xb0\\xdc\\xb1\\x5b\\x60\\xef\\x1c\\x27\\x68\\xef\\x65\\x57\\x2c\\x2b\\x8a\\x3a\\x75\\x59\\x65\\xaa\\x62\\x59\\xa6\\x91\\x18\\x69\\x97\\x95\\x85\\x76\\x36\\xbc\\xa7\\x70\\x21\\x3d\\xbf\\x00\\x6d\\x51\\x54\\x6b\\x25\\xbf\\xb5\\x3b\\xa0\\xbd\\xe0\\x2c\\x5f\\x41\\x8a\\xa3\\xd9\\x3c\\x85\\x3f\\xb5\\xfb\\xe6\\xd1\\xcd\\x2d\\xc6\\xea\\xac\\x02\\xa3\\x3e\\x02\\xe2\\x5f\\xe3\\xcf\\xc5\\xd5\\x58\\x19\\x7f\\x59\\x95\\xe0\\x64\\x8f\\x2c\\x40\\xcd\\x0a\\x1a\\xc6\\x00\\xc3\\x24\\xcf\\x03\\x02\\xd7\\xa4\\x78\\x97\\xc7\\x9a\\x88\\xcf\\x09\\x11\\x74\\x3c\\x0b\\xfe\\x57\\x0a\\x19\\x96\\xdb\\x96\\xb2\\x29\\x35\\x1b\\x58\\xcc\\x1e\\x71\\x18\\xb6\\x03\\x0d\\xfb\\x02\\x61\\xd4\\xe9\\x9c\\x42\\x70\\x1f\\x60\\x27\\x70\\x0e\\x78\\xf4\\x68\\x22\\x9b\\xca\\x1a\\xe7\\xc5\\xf2\\xd2\\x85\\xf0\\x4d\\x65\\x77\\xf8\\x92\\xea\\x69\\x02\\x2b\\xf1\\xb9\\x82\\x53\\x19\\x83\\x23\\x8e\\x4e\\x9c\\xf4\\x65\\x23\\x21\\x8e\\x11\\xaa\\xae\\xe3\\xff\\x1c\\x8a\\x0b\\x6e\\xc0\\x7a\\x56\\xa4\\xca\\x00\\x82\\x5f\\x78\\x79\\x15\\xc8\\x20\\xb6\\x4b\\xa2\\x85\\x84\\x20\\x64\\xc0\\x27\\x48\\x24\\xb5\\xdd\\x25\\x92\\x44\\x8c\\x58\\xf7\\x90\\x56\\x84\\xb3\\xb9\\xb5\\x7a\\xf3\\xbd\\x54\\x38\\x6c\\xb3\\xaf\\x18\\x5f\\xf2\\x7a\\x74\\x26\\xab\\x91\\x2c\\x0e\\x2f\\x3b\\x9e\\x9e\\x84\\x09\\x30\\x91\\x78\\xba\\x2b\\xdc\\x45\\xd0\\x50\\x16\\xf4\\x0c\\x79\\xd5\\x54\\x24\\xc2\\x4e\\xcf\\xe4\\x55\\x54\\x24\\xb4\\xae\\x7c\\x05\\x1e\\x59\\x60\\x67\\x83\\xb9\\x90\\xae\\x51\\x1a\\x31\\xca\\x72\\x95\\x28\\x39\\xee\\xe6\\x34\\xf2\\x1e\\x22\\xe6\\xc5\\xb5\\xa6\\x99\\x12\\x56\\x59\\x2a\\xef\\x39\\x11\\xe2\\x63\\xe0\\xd0\\x18\\x89\\xf6\\xa1\\x22\\xe1\\xf4\\x24\\x9b\\x03\\x38\\x2e\\xcd\\x93\\x63\\xec\\x1c\\x30\\x46\\x51\\xd1\\x70\\x5e\\x5c\\x46\\xe9\\x9b\\x58\\x60\\x6c\\x25\\xa9\\x96\\xf6\\xa7\\x57\\xa3\\x45\\x2c\\x26\\xe8\\x49\\x1e\\x14\\x40\\xd9\\x65\\xec\\x4d\\x69\\xcc\\x46\\x78\\x22\\xb8\\xd8\\xd1\\x9f\\x18\\xec\\x1a\\xf9\\x46\\xb6\\xea\\x2f\\xa0\\x47\\x4b\\x8c\\xe6\\x7a\\xfe\\x39\\x32\\xc1\\xb4\\xbd\\xca\\xb7\\xdf\\x56\\xdf\\x36\\xa0\\x4d\\x37\\x13\\xa0\\xec\\x46\\x20\\x2b\\x5c\\x05\\xc8\\x45\\xef\\x4b\\x3d\\x40\\x19\\x54\\x30\\xbe\\x72\\x0d\\x24\\x23\\xa8\\x83\\xd9\\x54\\xb9\\x00\\xa6\\x94\\x7b\\x4f\\x34\\x22\\x37\\x9b\\x00\\xb0\\xa1\\x9e\\x34\\x6d\\x6e\\x1d\\x18\\xd6\\xba\\xff\\x98\\x0c\\x71\\x51\\x7e\\x60\\x2b\\x01\\x2d\\x32\\xdf\\x01\\x58\\x95\\xed\\x48\\xe0\\xaa\\x94\\xb3\\x77\\xa6\\xbf\\xb4\\xbe\\x03\\xd3\\x2d\\xaf\\x30\\x5f\\xe3\\x6d\\x3a\\xf3\\x25\\x61\\x83\\x48\\x22\\x06\\x39\\xd0\\x53\\x0e\\xbb\\x17\\xee\\xc8\\xd5\\x97\\x01\\xf2\\x0c\\x36\\x21\\xe9\\x9a\\xef\\x6a\\xc9\\x3a\\xb4\\xa5\\x74\\x75\\x4c\\x18\\xb1\\xae\\x25\\x01\\x31\\xf8\\x03\\xeb\\x01\\xd5\\xaf\\xe2\\x98\\x55\\x88\\x78\\x8c\\x1b\\xaf\\xb8\\x2b\\x95\\x07\\x2a\\xae\\xc2\\x69\\xbd\\x06\\xdc\\x65\\x3e\\x0e\\x87\\xfb\\x4b\\x21\\x03\\x81\\x36\\xe5\\xb2\\x8f\\x6d\\xb7\\x85\\x81\\xcb\\xa0\\xa7\\x55\\x3e\\x18\\xc5\\xb6\\x58\\xad\\x15\\x31\\x03\\x17\\xf1\\xad\\xc5\\x22\\x14\\x13\\x57\\xc7\\x81\\x64\\x16\\x85\\x58\\x00\\xeb\\x7c\\x5c\\xfa\\xbb\\xe0\\x2d\\x1d\\x9e\\xb5\\x55\\x32\\x88\\xa1\\x19\\x3e\\xac\\xd4\\x2f\\xa3\\x8d\\x40\\x40\\xbc\\x3b\\xfc\\x3f\\xe3\\xf7\\x1e\\xff\\x07\\xe2\\x72\\x5c\\x18\\x8d\\x48\\x3c\\xf2\\x1f\\x58\\xc5\\x04\\xf2\\x8d\\x6d\\xa7\\x11\\x50\\x17\\x06\\x41\\x94\\x28\\x7d\\xdf\\x87\\x3b\\x9f\\xfb\\x15\\xcd\\x2f\\x77\\x83\\x61\\x23\\xc0\\x33\\x71\\xf9\\x7f\\x69\\xb8\\xa6\\x6c\\xfc\\x8f\\xb6\\xcd\\xbc\\x29\\x72\\xaf\\xa1\\x71\\x40\\x78\\xfa\\xfc\\x1c\\x63\\xdd\\x31\\x49\\x85\\x7b\\x00\\xc6\\x63\\x7f\\x43\\x02\\xfe\\xbe\\x05\\xf0\\x36\\xe4\\xde\\xa3\\x5b\\x01\\x66\\xf3\\x9a\\x0a\\xa5\\x0a\\xce\\x46\\x15\\x46\\xef\\x07\\x64\\x14\\x05\\xb9\\x2b\\x88\\x70\\x11\\x4c\\x52\\xfa\\x92\\x49\\xae\\x70\\xb0\\x06\\x69\\xe2\\xcc\\x82\\x73\\x0c\\xc5\\xb1\\xb8\\xb5\\x1b\\x5a\\xe0\\x0b\\xcb\\xe9\\x34\\x5b\\xb9\\x36\\x7c\\x26\\x79\\xf7\\xbc\\x9b\\xc2\\x0a\\x7f\\x27\\xa7\\x67\\xd0\\x63\\x74\\x08\\x16\\xd5\\x22\\xbd\\xe2\\xa9\\xc6\\x0f\\xf4\\x51\\xf8\\xe6\\x34\\x57\\x89\\x65\\x01\\x03\\x28\\xc6\\x0e\\xe4\\x28\\xf5\\xbe\\x32\\x3f\\x0d\\xd3\\x6c\\xf2\\x45\\x14\\x0d\\x4c\\x70\\x0a\\x43\\xf8\\x96\\x1f\\x4b\\x9d\\x91\\xeb\\xc4\\xa4\\xcf\\x3e\\x13\\x60\\x53\\x9c\\x18\\xa8\\x37\\x31\\x1e\\xdc\\x12\\xc5\\x80\\x35\\x03\\x80\\x36\\x3d\\x3f\\x19\\x6e\\x5b\\x41\\x98\\xa9\\xf4\\x51\\xe3\\xbe\\xd1\\x0e\\x25\\x54\\x32\\x0d\\x10\\x1f\\x11\\x90\\x9b\\xf5\\x44\\x73\\x2f\\x7e\\x9b\\x4d\\xaf\\x00\\x80\\x87\\x13\\xf6\\xe8\\x49\\xad\\x12\\x67\\xe8\\x5e\\x14\\xe2\\xcc\\x0c\\x00\\x90\\x04\\x0b\\x30\\x9d\\x78\\x6b\\x0d\\x52\\x27\\x5b\\x85\\xf7\\x70\\xa5\\xe2\\x2d\\xe6\\x12\\xd2\\x01\\x33\\x2c\\x9b\\x55\\x82\\x69\\xd7\\x20\\xf0\\xae\\x59\\xbc\\x5a\\x95\\xeb\\x4b\\x66\\x3b\\xfa\\x92\\xff\\xb6\\x89\\x22\\x32\\xa8\\xa2\\xa3\\x5d\\xa8\\x02\\x63\\x25\\x00\\x57\\x83\\x8b\\x36\\x4c\\xdf\\x0f\\x88\\x2a\\x36\\xf7\\x37\\xb1\\x3c\\xe0\\xa4\\x17\\x71\\xad\\xa1\\xb6\\x86\\x26\\xc2\\x66\\xf5\\xe0\\xb0\\xb4\\x26\\xf8\\x84\\xa3\\x19\\x80\\x9c\\xe8\\x54\\xa8\\xc1\\x78\\x40\\x02\\x06\\x01\\x61\\x1b\\x49\\xe6\\xc4\\x77\\xbf\\xb0\\x62\\xc3\\x6c\\x44\\x48\\xc4\\x08\\x10\\xfe\\x18\\x6e\\xad\\x6a\\x86\\x86\\x09\\x0d\\xc5\\x15\\x19\\x74\\x18\\xee\\x36\\x16\\xf3\\x20\\xc5\\x0d\\x6a\\x1b\\x64\\xf1\\x8e\\x16\\x4d\\xe2\\x8b\\x63\\x58\\x47\\x0d\\x4b\\x81\\xfe\\xc9\\xbf\\x5f\\x21\\x46\\xbf\\x69\\xbf\\x05\\x88\\xa0\\xe2\\xaa\\x1a\\x45\\x9a\\x24\\xae\\x9a\\xde\\x6d\\x03\\x3f\\x40\\xd0\\x43\\xc4\\x8b\\x58\\x7b\\xb9\\x52\\xf2\\x7f\\xea\\x28\\xb5\\x19\\xcd\\x5c\\x75\\x55\\x44\\x57\\xdd\\xef\\xac\\x18\\x0a\\x36\\x44\\x95\\x30\\xdd\\xe6\\xe3\\x68\\x4b\\x30\\x1d\\x58\\xab\\xb4\\x58\\xf5\\xe9\\xdc\\x5d\\x0b\\x9d\\x0f\\xa2\\x6b\\x33\\x02\\xde\\x3a\\x26\\x6d\\x6c\\x53\\x0a\\xb8\\x2b\\xd1\\xd9\\xc1\\xb0\\x21\\x49\\x12\\x6f\\x08\\xd3\\x9b\\x97\\x31\\x10\\x3a\\xee\\x3c\\x06\\x99\\x7f\\x76\\x0f\\xf5\\x2a\\x55\\x05\\x4b\\xb6\\x26\\x8e\\xf4\\x35\\x82\\x9a\\x13\\xaa\\x65\\x73\\xb0\\x10\\x4e\\xda\\x72\\x39\\xa2\\xb6\\x94\\x84\\x90\\xe1\\x61\\x54\\xa9\\x25\\x05\\xca\\x48\\xc4\\xd6\\x05\\xac\\xb4\\xe4\\x19\\x30\\x67\\x77\\xb1\\xd0\\x55\\xcd\\xe3\\x8d\\x1f\\xc9\\xb9\\x60\\x64\\xec\\x4b\\x04\\x63\\x8f\\x87\\x81\\xdd\\x9d\\xcf\\x03\\x59\\x0d\\xa7\\x3a\\x21\\x58\\x04\\xd7\\x6d\\xbe\\xb0\\x2d\\x0c\\xbc\\x9f\\x1a\\xc1\\xbb\\xc7\\x06\\x08\\x4e\\x63\\x83\\x59\\x50\\x69\\x06\\x39\\x90\\x0c\\x11\\x83\\x00\\x5c\\x53\\x40\\x30\\xfd\\x95\\xe8\\xd0\\x7a\\x2e\\x25\\x9d\\x48\\x08\\x1a\\x37\\x26\\xa5\\xb2\\xea\\x26\\x9e\\x22\\xf8\\x44\\x68\\xaa\\x17\\x38\\x4b\\x80\\xc7\\x06\\x69\\xe6\\x6a\\x1d\\xa4\\xfa\\x93\\x74\\x0a\\xc4\\x75\\xea\\xe6\\x2b\\x0d\\xe0\\xc3\\x9d\\x88\\x88\\xb6\\xd2\\xc5\\x12\\x96\\x5e\\x99\\xf4\\x53\\xfe\\x7a\\xbb\\xe2\\xc0\\x2b\\x9c\\x3e\\xba\\x41\\xae\\x5e\\x71\\xd5\\x29\\x27\\x83\\xd6\\x4b\\x04\\x51\\x05\\x3d\\x69\\xa6\\xcb\\x45\\xef\\x94\\x99\\x7c\\x00\\xe4\\xdc\\x13\\x71\\xdc\\x07\\xf1\\x3e\\x66\\x20\\xe8\\x1c\\x06\\xcd\\xad\\x7b\\x7a\\x25\\xf0\\x04\\xd6\\x2a\\x6e\\x84\\x55\\x52\\xc0\\x05\\xce\\x86\\x8b\\xd4\\x6b\\xd5\\xe3\\x9b\\x65\\x85\\x61\\xe7\\xef\\xb4\\x0e\\xb1\\x5b\\xd8\\x00\\x05\\xa9\\xcb\\xa9\\x46\\xed\\x07\\x2a\\xdc\\x9b\\xb7\\x08\\xf0\\x8c\\x3d\\x88\\x15\\xb5\\x75\\x9c\\xa5\\xb9\\x48\\xac\\x60\\x5e\\xda\\xfa\\x41\\x39\\xa1\\x46\\x85\\x7b\\x1c\\x6a\\x35\\xdc\\xc6\\x68\\x48\\x0c\\x42\\x9f\\x56\\xa1\\xd6\\xc8\\x03\\xf6\\xe2\\x76\\xc0\\x59\\xeb\\x92\\x52\\x1d\\x01\\x16\\x18\\xe9\\x1c\\xfd\\xf5\\xee\\x53\\xbb\\x29\\xf2\\xb5\\xb2\\xc6\\x84\\x90\\x23\\x14\\x45\\x69\\xe5\\xab\\xf2\\xc0\\x16\\x98\\xd7\\x21\\x5c\\x08\\x19\\x75\\x60\\x61\\xa4\\x93\\xd0\\x4b\\x9d\\x5e\\xc2\\x4a\\x73\\xc6\\x0f\\x17\\xde\\xd6\\x4e\\xc8\\xa0\\xb0\\x82\\x96\\xca\\x8e\\x33\\xb1\\x6b\\x43\\x2c\\xd5\\xd8\\x45\\xc8\\x9a\\x44\\x06\\x9f\\x89\\x7c\\x84\\x92\\xb1\\x90\\x14\\x44\\x5f\\x80\\x56\\xd9\\x2b\\x8a\\xdb\\x24\\x26\\xcf\\x66\\x66\\xe5\\x94\\x7e\\x4c\\x1e\\x19\\xdc\\x84\\x91\\x17\\x53\\x08\\xa1\\xc8\\x09\\x3e\\x92\\x12\\x61\\xb0\\x08\\xd3\\x5d\\xad\\x96\\x6c\\x76\\x90\\x91\\x03\\x0c\\xbe\\xa1\\xde\\x3d\\xd5\\x9b\\x8c\\xa7\\x8e\\x21\\xfd\\xe8\\x02\\x31\\x1f\\xf8\\x90\\x29\\xa1\\x0c\\x50\\x4e\\x8c\\x57\\x51\\x2a\\x91\\xf6\\x02\\x06\\x21\\x5d\\x3c\\x2c\\x58\\x6f\\xde\\x00\\x81\\x4d\\x7b\\x22\\x3c\\x21\\x19\\xdd\\x86\\xc8\\xfd\\x22\\xba\\xdc\\x60\\x5e\\xe4\\x22\\x36\\x94\\x12\\x8a\\x8a\\x0b\\xd5\\xb2\\x2b\\x24\\x26\\x21\\x12\\x59\\x4f\\xf6\\x0c\\x2e\\xd1\\x34\\x8a\\x4c\\x16\\x97\\x39\\x86\\xc5\\x88\\x56\\xaf\\x60\\x33\\xb0\\x32\\xb0\\xfd\\x13\\x2a\\xd9\\x28\\x07\\xed\\x58\\x89\\x0b\\xb1\\xe2\\x34\\x2b\\x71\\x3e\\x26\\xa8\\xbe\\x0d\\x7c\\x0e\\x52\\x35\\xa3\\x95\\xb2\\x8a\\x1b\\x10\\xfc\\x4e\\x90\\x8f\\x3d\\xe8\\x0d\\x69\\xa1\\x21\\x00\\x11\\x8e\\x9c\\x3d\\x7a\\xc3\\x08\\x1e\\x28\\x56\\x10\\x2e\\x4b\\xba\\x80\\x49\\xcf\\x3f\\x61\\x0c\\x93\\x5a\\xc0\\x43\\x9b\\x1b\\xe1\\xc9\\x24\\x59\\xa3\\x26\\xcc\\xea\\x49\\x90\\xe7\\x75\\xad\\x1b\\x22\\x2d\\xff\\x06\\xc4\\xec\\x25\\xb0\\x08\\x87\\xff\\x12\\x0f\\xc5\\x09\\xd2\\xff\\x03\\xe9\\x87\\x49\\x89\\x62\\xb5\\xbf\\x92\\xe5\\x52\\x42\\x36\\xfb\\xc3\\xe4\\x30\\x42\\x55\\x40\\x10\\x90\\x08\\x23\\xc1\\x85\\x3b\\x1d\\x0c\\x0e\\x89\\x97\\x80\\x13\\x00\\x4b\\x87\\xc7\\x8b\\x98\\x2c\\x6b\\xf8\\x5c\\xe6\\xa8\\x53\\x96\\x27\\x38\\x55\\x2b\\xfe\\x0c\\x78\\x1a\\x25\\xe2\\xfa\\xf9\\x64\\xc0\\x2f\\xb8\\x07\\x62\\xa1\\xab\\x47\\x21\\x28\\x88\\x34\\x3e\\x15\\x5b\\x7f\\xcd\\x6d\\x44\\xd2\\x2f\\xb5\\xbf\\x24\\x8f\\x71\\x34\\x24\\x85\\x8f\\xb2\\x02\\x69\\x42\\x81\\x51\\x34\\x0a\\x01\\xd0\\xf6\\x42\\xab\\x52\\xe0\\x97\\xa6\\xdf\\x35\\x71\\xad\\xb3\\x80\\x02\\xfc\\xa4\\xc4\\xf5\\x2c\\xc7\\xf1\\xa5\\x4a\\xf4\\x7c\\x6b\\xae\\xce\\x49\\x0e\\xb2\\xd9\\x6b\\x10\\xfd\\x46\\x25\\x18\\x27\\x81\\x82\\xfb\\x7f\\xa2\\xa1\\x31\\x36\\x1f\\x29\\x68\\xad\\xf4\\x24\\x45\\x1e\\xbf\\xd1\\xb1\\xac\\x37\\x6a\\x57\\xfc\\x35\\x14\\xbd\\xec\\xb6\\x84\\xb4\\x83\\x8c\\x00\\x10\\x27\\xef\\xd8\\x53\\x1b\\xd5\\x73\\x91\\x82\\x78\\xcb\\x45\\x68\\xd0\\xac\\x04\\x71\\x32\\x5d\\x72\\xae\\xa9\\xa8\\x6d\\x32\\x9d\\xef\\xe2\\xb1\\x15\\x62\\x68\\x9f\\xe0\\xb0\\xf5\\xcb\\x28\\xae\\x43\\xc7\\xbb\\x0a\\xc5\\xb3\\xc1\\xab\\x21\\xfc\\xe4\\x4f\\xca\\xfe\\x99\\xfe\\x99\\x74\\x5f\\xc1\\xe9\\x02\\xe0\\x28\\xa7\\x77\\x7b\\xab\\x4b\\x0a\\xe8\\x22\\x9e\\xa3\\xa3\\x95\\x5b\\x18\\xd2\\x83\\x0d\\xae\\x89\\x0a\\x50\\x3e\\xf4\\xc7\\xa0\\x01\\x00\\x39\\xc2\\xbf\\xc7\\x34\\x05\\x48\\xf8\\x2c\\x91\\x00\\x7e\\xc2\\xda\\x02\\xaa\\x7a\\x34\\xa4\\x0a\\x8b\\xbb\\xac\\x8b\\xd0\\xcb\\xc1\\x80\\x2f\\x83\\x78\\xb4\\x1e\\xca\\x35\\xe0\\x5b\\x1b\\x0a\\xac\\x20\\xea\\x14\\x1c\\x52\\x03\\x63\\x5e\\xf8\\x57\\x60\\xd8\\x7d\\xd3\\x53\\x2e\\x19\\xec\\xbf\\xde\\x21\\xa0\\xc8\\xdf\\x2a\\x49\\x13\\x33\\xbf\\x56\\x30\\x5a\\x62\\x98\\x6c\\xf7\\x1f\\x45\\x52\\xe2\\x55\\x7c\\xf9\\x92\\xcc\\xd1\\xf5\\xe6\\x50\\x63\\x47\\xc6\\x99\\xc3\\xad\\x15\\x23\\xf6\\x58\\x6a\\x4b\\x4a\\x7e\\xaf\\x34\\xf7\\xcb\\xd3\\x82\\xee\\xac\\x4a\\x54\\x5b\\xdb\\xd8\\x3d\\x00\\xe9\\x15\\x96\\x06\\xad\\x53\\x6f\\x0d\\xd8\\x43\\xf9\\xb3\\xb8\\xa8\\xd2\\x91\\x8a\\x71\\xa5\\x4b\\x43\\x3d\\x88\\x2c\\x27\\x90\\x44\\x09\\x66\\xdb\\xdf\\x19\\x58\\x44\\x3d\\x91\\xe6\\xd7\\x70\\x0b\\xab\\xfb\\x03\\x58\\x00\\xf1\\xc0\\x57\\xb2\\xd1\\x1d\\xaa\\x1f\\x3e\\x1f\\xf1\\xd3\\x00\\x6a\\x54\\x11\\xf7\\x73\\x86\\x9e\\x39\\xd4\\x4b\\x12\\xfa\\xb9\\x72\\x89\\xb2\\x74\\x7a\\x7f\\x1d\\xdf\\xc0\\xf8\\xf8\\xae\\xc2\\x91\\xd2\\x90\\x3a\\x80\\x8d\\x87\\x64\\x79\\xdb\\xf7\\xd8\\x36\\x2c\\xaa\\x14\\x86\\x37\\xcf\\x82\\xd0\\xa9\\x0c\\xca\\x02\\xcb\\xb4\\x47\\xc1\\x46\\x8f\\x69\\x18\\x5b\\x54\\x51\\xad\\x61\\xb8\\x1e\\x9f\\x99\\x84\\xee\\x82\\x22\\x10\\xf8\\xfd\\x0f\\x7d\\x7b\\x11\\x4e\\x48\\x00\\x5e\\x27\\xc1\\x80\\x13\\x6c\\x34\\x61\\x94\\xef\\x7e\\x28\\x67\\xa8\\x76\\x41\\x87\\x00\\x56\\x2e\\x58\\xc0\\xfa\\x81\\xa2\\x80\\xaa\\x37\\xe0\\x14\\x83\\x80\\xf2\\x6b\\x56\\x38\\x8a\\x90\\x6b\\xfa\\x20\\x66\\x6e\\x09\\x5a\\x82\\xb8\\x21\\x4c\\xf1\\xfa\\xec\\xd2\\x1b\\x25\\x32\\xb5\\x3c\\xdc\\x8d\\x95\\x43\\xe4\\x35\\x66\\x7a\\x61\\xda\\xce\\x38\\xa3\\x0d\\x10\\x2c\\x29\\x1d\\x19\\x20\\xa4\\x3d\\x2a\\x35\\x13\\x00\\xe2\\xad\\x96\\xbd\\x49\\x2e\\x84\\x08\\xd5\\xed\\x8a\\x36\\x5e\\x62\\xe1\\xba\\x02\\x08\\x81\\x88\\x2d\\x68\\xd5\\xba\\x06\\xd0\\xc9\\x52\\x86\\x3b\\xc6\\xc3\\x18\\x31\\x34\\xd0\\xa9\\x57\\xb5\\x90\\x35\\x43\\x84\\xac\\xe7\\x30\\x3a\\xaa\\x03\\xb6\\x19\\x08\\x40\\x70\\x1d\\x04\\x15\\x8e\\xde\\x25\\x49\\x54\\xa4\\x85\\x8e\\x9e\\x50\\x8b\\xc1\\x68\\xa6\\x0d\\xa8\\xc5\\x09\\x61\\x00\\x5b\\x75\\x39\\xd3\\x5b\\xa9\\x68\\x4e\\x64\\x32\\x2b\\x02\\x8b\\x8c\\x57\\x99\\x18\\x9b\\xfb\\xd0\\xae\\x8f\\x40\\xe1\\x62\\x0d\\xa4\\xc5\\xef\\x8c\\xbd\\x99\\x5e\\xc8\\xec\\x40\\x9f\\x5a\\xa9\\x45\\x53\\x24\\xc0\\x39\\x33\\x6c\\xc0\\x6f\\x92\\x10\\x2e\\xba\\x57\\xd1\\x7d\\x69\\x26\\xab\\x59\\x3f\\x7b\\x18\\x3e\\x38\\xe8\\x41\\x2b\\x02\\xf3\\x4a\\x9a\\x68\\xba\\x43\\xd4\\xa4\\x19\\x44\\x5d\\x51\\xac\\x68\\x12\\x1d\\x17\\xf9\\x9c\\xf8\\xfe\\xf9\\x97\\xfa\\xc8\\x79\\xec\\xdc\\x83\\x61\\x3e\\x78\\xc0\\x3e\\xbb\\x8a\\x6c\\x43\\x3a\\x1d\\xdd\\xde\\x96\\xf2\\x51\\x3c\\xb0\\x10\\xd9\\x85\\x67\\xc7\\x41\\x93\\xfb\\x20\\xd9\\x82\\xad\\x01\\x6c\\x02\\xcb\\xc8\\xb7\\x2a\\xb9\\x26\\xc2\\x04\\x3f\\x18\\x66\\x80\\xe7\\x6b\\xf4\\x28\\x6f\\x54\\x30\\x0e\\xaa\\x70\\xd3\\xde\\x0f\\x41\\x1e\\x14\\xc8\\x5a\\x3c\\x15\\xc0\\x7a\\x13\\x86\\x06\\x5e\\xa7\\x3c\\x25\\x40\\x7b\\x38\\x84\\x4b\\xc4\\x30\\xcb\\x2e\\x97\\x6d\\xac\\x53\\x53\\x0e\\xc5\\xcc\\x07\\x04\\x55\\x46\\x98\\x3e\\xac\\x1b\\x07\\xd7\\xc5\\x10\\x07\\x5d\\x80\\x69\\x68\\x6e\\x2b\\x38\\x55\\x1f\\x79\\x3c\\x4c\\xb8\\x3a\\x44\\x38\\xd2\\x85\\x38\\x02\\x00\\x02\\x1e\\x71\\x04\\x0b\\x11\\x40\\xc8\\xa2\\x23\\x08\\xbf\\xa5\\x5d\\x4c\\x9d\\xac\\x8f\\xdc\\x3f\\xe0\\xe8\\x97\\x8e\\xa2\\x25\\xa2\\x49\\x57\\x69\\x52\\xf3\\x67\\x49\\xe0\\x49\\x01\\x4e\\x91\\x6d\\xc2\\x42\\x2e\\x17\\xed\\x72\\x8a\\xfe\\x24\\x2c\\x64\\x37\\x0a\\xe0\\xbb\\x5a\\xf4\\xb6\\xf0\\x49\\x60\\x82\\x35\\x48\\x23\\x99\\xb9\\x9e\\x2d\\x45\\xd2\\x1f\\xa8\\xc2\\xb3\\x43\\x5e\\x04\\xd0\\xdc\\x84\\x5e\\xd7\\x40\\x60\\x70\\x4d\\x72\\x8e\\x84\\xd0\\xc0\\xf4\\x85\\x59\\x1f\\x61\\x88\\x2e\\x86\\x71\\x75\\x6e\\x93\\x48\\x6d\\x33\\x89\\xfb\\x4b\\x06\\x54\\x4f\\x0c\\x5a\\x32\\xa4\\x9a\\x2d\\x51\\xa9\\x4c\\xe7\\x3f\\x06\\x32\\xda\\x4e\\xc4\\xb7\\xd0\\xd2\\xd4\\xd4\\xbd\\x9b\\xcc\\xd3\\xe7\\x8c\\xee\\x7a\\x8b\\x8d\\x6c\\x14\\x91\\x7b\\x76\\x0c\\x93\\x78\\x7e\\x52\\x64\\xb0\\xbd\\xa7\\x87\\x23\\x1d\\x3f\\xb5\\x74\\x06\\x82\\xa3\\xd3\\xc4\\xe5\\xc8\\xc1\\xac\\x57\\x94\\x37\\x9e\\x6c\\xfa\\xb8\\xc7\\xbe\\x09\\xf2\\x24\\x04\\x29\\xe4\\x5f\\x45\\x21\\xa1\\xe9\\x3c\\x34\\x4a\\xa1\\xc8\\x72\\x68\\x17\\xca\\x81\\x4b\\x23\\x05\\x33\\x11\\xfd\\x26\\x8e\\x24\\xfa\\x79\\x7a\\x37\\x3a\\x40\\x42\\x48\\x82\\x8e\\xc1\\x82\\x79\\x8e\\xe5\\x91\\x88\\x9d\\x1f\\xc4\\xc1\\x8d\\x19\\xa8\\xf5\\x07\\x02\\x9a\\x4e\\x41\\x48\\x21\\x00\\x7a\\x74\\x86\\x6f\\xbf\\x99\\x0d\\x0a\\x96\\x27\\x3a\\x1a\\x00\\x06\\xe7\\x12\\x2d\\x33\\x1a\\x89\\x7b\\x83\\xb3\\xa1\\x61\\xbc\\x49\\x3a\\x3d\\xe6\\x52\\xc0\\xf6\\x41\\x2b\\xfa\\xc0\\x8b\\x1b\\x0a\\xee\\x22\\x71\\x30\\x0d\\xd9\\x20\\xb1\\xaa\\xdd\\xb1\\xec\\x0c\\xa1\\x7b\\x29\\x4f\\x19\\xd7\\x70\\x9c\\xd7\\xe5\\xe1\\xbc\\x0c\\xbc\\x52\\x07\\x0a\\xba\\x50\\x3b\\xfa\\x6c\\x99\\x94\\x55\\x86\\xee\\x8d\\x6a\\x98\\xa9\\x55\\x12\\x30\\x80\\x87\\x7a\\xe3\\x82\\x48\\xaa\\x3e\\x22\\x2c\\x47\\xa7\\x42\\x75\\x9f\\xfa\\x34\\x1e\\xf6\\xf4\\x71\\x3a\\xa2\\xd5\\x85\\x88\\x8c\\x14\\x56\\x73\\x3a\\x40\\x48\\x44\\xa2\\xc6\\x4c\\x5e\\xbd\\x49\\xd2\\x54\\x46\\x5c\\xfa\\xcd\\xc5\\x36\\x73\\x1a\\x31\\x5d\\xc0\\x6e\\x3a\\xc0\\xa5\\xe0\\x51\\xa6\\xd1\\x2f\\xa8\\xa7\\x40\\x27\\x8d\\xb0\\xc4\\xd3\\x40\\x84\\x65\\x2d\\x19\\xa6\\xf6\\x50\\xce\\x87\\xc6\\xa4\\x0a\\x01\\x7d\\x46\\x07\\x98\\x57\\xb8\\x50\\x4e\\x93\\x8b\\xa1\\x31\\xd8\\xcd\\x3a\\x2a\\x80\\x62\\x74\\x37\\x42\\x31\\x58\\x46\\xe7\\xbd\\xc5\\x32\\x4e\\x4d\\xcb\\x7d\\x5b\\x0e\\xc8\\x5a\\xd4\\x3b\\x60\\x79\\x1e\\xb2\\xcc\\x07\\xcb\\x06\\xa3\\xcc\\x96\\x3d\\xb4\\x90\\x98\\xc2\\x65\\x00\\x02\\x3a\\x19\\x03\\x75\\x1d\\x12\\x5e\\xc4\\xed\\x2e\\xad\\x59\\x77\\x62\\x8c\\xce\\x9d\\x9c\\x29\\x2f\\xda\\x37\\x50\\xb0\\x22\\xde\\x9b\\x70\\xfc\\x71\\x05\\x79\\xda\\x0b\\x83\\x5b\\x0f\\xf1\\x95\\x15\\x1a\\x14\\xd1\\x8c\\x4a\\xf5\\x05\\x18\\x84\\x25\\x36\\x7e\\x9c\\x45\\xa7\\xe6\\x83\\x9c\\x1d\\xcf\\x63\\xba\\xd7\\x33\\x0f\\x10\\x07\\x41\\x63\\x58\\x70\\x3f\\xc4\\xa9\\x6d\\x1f\\xcc\\x37\\x29\\xb1\\x76\\x69\\xcd\\x02\\x21\\x1b\\x86\\x1b\\x4f\\xfd\\x19\\xf5\\xe8\\x20\\x1c\\x1d\\xb5\\xa9\\x01\\x01\\xe1\\x02\\x18\\x4d\\x72\\xdf\\x96\\x56\\x19\\x99\\x5a\\xd6\\x61\\xe7\\xe1\\x02\\xaf\\xf6\\x62\\x61\\x6d\\xaf\\x6b\\xa4\\x48\\xd3\\xab\\x04\\xea\\x28\\x81\\x0b\\x5e\\xca\\xd5\\x74\\x04\\x42\\x60\\xba\\x1a\\x14\\x3e\\xda\\xc0\\xe6\\x7c\\x87\\xaa\\x9d\\xac\\x13\\x81\\xfa\\xbd\\x2c\\xab\\x10\\x06\\x40\\x55\\x1e\\x79\\xa0\\xc0\\x1b\\x14\\x09\\x94\\xaf\\x91\\x1f\\x55\\xa6\\x83\\x29\\x73\\x0a\\xed\\x0b\\x86\\x82\\xac\\xff\\xd5\\x5b\\x32\\x42\\xd6\\xe5\\xf3\\x4e\\xb4\\x3b\\x58\\x97\\xde\\x0e\\x8f\\xb5\\xdf\\x90\\x11\\x46\\x36\\x01\\x34\\x35\\x68\\xd1\\x45\\x5b\\x50\\xd4\\xe1\\x2e\\x57\\xaa\\x3a\\x97\\xea\\xd6\\x22\\x75\\xbe\\xbc\\xf0\\xf7\\x2b\\x3e\\x11\\x71\\x42\\x78\\x41\\x5e\\x89\\xb4\\xcf\\xfa\\x19\\xfc\\xf0\\xf7\\xb4\\x36\\x11\\x9d\\x29\\xd2\\x50\\x2f\\xbe\\x84\\x32\\x04\\x3b\\x08\\x4d\\x36\\xe0\\x59\\x25\\x45\\xb5\\x06\\x6e\\x7d\\x4e\\xc7\\xbf\\xa3\\x04\\x96\\x1d\\x38\\xd8\\x2c\\x22\\x02\\xd1\\x6d\\xed\\x00\\xed\\x4f\\xb7\\xd3\\x9c\\xed\\x5b\\xf8\\x0b\\x63\\xa0\\xeb\\xb4\\x13\\x74\\x40\\x04\\x17\\xa4\\x6f\\x16\\x11\\x52\\x6f\\xbf\\x60\\x99\\xcb\\xa8\\x24\\x13\\xd2\\x96\\x22\\x0d\\x40\\x27\\x20\\x1f\\x94\\x04\\x36\\x5b\\x70\\x9a\\x3a\\x67\\x0c\\x28\\x64\\x2b\\xcb\\xcf\\x99\\x57\\xe6\\xb1\\x4c\\xce\\xdd\\xf8\\x4e\\x77\\xcf\\xea\\x6d\\xac\\xd6\\x42\\xb5\\x0e\\x42\\xd8\\x53\\x18\\x29\\x7f\\x50\\x14\\xc2\\xf3\\x6d\\xd8\\x80\\xc8\\xfc\\x6e\\xcc\\x49\\x73\\xad\\x81\\x00\\xc8\\x01\\xec\\x8a\\xbb\\x0a\\x1e\\x39\\x51\\xdd\\x29\\x45\\xe4\\x6b\\x08\\xb1\\x0c\\xcd\\x28\\x55\\x4e\\x4c\\xd2\\xa6\\x49\\x82\\x20\\xd3\\x65\\xf9\\xa1\\x27\\x8a\\x14\\x41\\x34\\x60\\x9c\\x0c\\x38\\x43\\xfc\\x90\\x01\\x3a\\xbd\\x1a\\x0f\\x41\\x89\\xa3\\x20\\xc2\\x4a\\x14\\x35\\xa8\\x27\\x54\\x52\\x50\\x11\\xc5\\x46\\x97\\x90\\x19\\x3f\\x10\\xbc\\x6b\\x6a\\x72\\x23\\x07\\x95\\xf9\\x9a\\xfc\\x1f\\xf9\\x2a\\xdb\\xea\\xe5\\x60\\x8b\\x89\\xe8\\x59\\xa6\\xc3\\x44\\xc7\\xd5\\x4a\\x9d\\x78\\x0c\\xd4\\x19\\x59\\x1b\\xe6\\x8b\\x42\\x7d\\xbf\\xba\\x99\\x08\\xa2\\x7e\\xb1\\xc8\\x8c\\xf4\\xc4\\xcb\\x88\\xe5\\x55\\xa3\\x50\\xaa\\x55\\x78\\x52\\x76\\x66\\x41\\xbb\\x85\\x23\\x33\\x21\\x94\\x5c\\xcb\\x9a\\xed\\x51\\x9a\\x9e\\x9a\\x1b\\x29\\x49\\x82\\xca\\xe5\\xb8\\xcf\\xb7\\x0d\\xbb\\x6e\\xdc\\x15\\x10\\xdd\\xdc\\x06\\x07\\xc9\\xfb\\xc0\\x71\\x95\\x56\\xae\\x11\\xb7\\x08\\x9c\\xde\\xe3\\xf3\\x29\\x66\\x42\\x8a\\x9b\\x13\\x9e\\x3c\\x45\\xa0\\x5d\\x00\\xa7\\xab\\xde\\x12\\xe4\\xfd\\x3e\\xcf\\x4a\\x07\\x9a\\x2f\\xf4\\x73\\x78\\xaa\\x16\\x0f\\x23\\x53\\xa7\\x00\\x58\\xbe\\x0c\\x90\\xf2\\xa6\\x74\\xfb\\x40\\x70\\x91\\xf6\\x69\\xba\\x3e\\x39\\x7d\\x30\\xa3\\x4e\\xb9\\x20\\xc4\\xec\\x6b\\x84\\x1c\\x7d\\x38\\x32\\x42\\x06\\x11\\xa0\\xf2\\xa8\\x27\\xf8\\xef\\xb5\\xfa\\x78\\x7f\\x4a\\xd6\\x1c\\x4b\\x9a\\x25\\x2d\\xab\\x98\\x8d\\xf6\\xd3\\x35\\x40\\x70\\xd6\\xde\\xe3\\xe4\\xb6\\x10\\x4f\\x90\\xb6\\x43\\x24\\x7b\\x71\\xea\\xa8\\x78\\x8c\\xbc\\x9b\\xcf\\x96\\x2a\\x03\\x00\\x9e\\xf5\\x74\\x0d\\x1a\\xb1\\x9a\\x82\\x12\\x8d\\x1c\\x18\\xbc\\x90\\xd9\\xfe\\x0f\\x64\\x9f\\x26\\xbb\\x23\\x24\\xce\\xfb\\x99\\xb6\\x41\\x82\\xf2\\xc6\\x7b\\xfd\\xda\\xd6\\xe8\\x03\\xac\\xae\\xae\\x04\\x70\\xe9\\xbc\\x32\\x07\\x21\\x30\\xc2\\x3a\\x68\\x60\\xbf\\x64\\x1d\\x08\\x15\\x1c\\x20\\xf1\\xc2\\xd5\\xf1\\x91\\x9c\\xa7\\x1f\\x59\\x64\\x0b\\x83\\x21\\xb6\\x42\\xbc\\x0d\\x74\\x71\\x80\\xbf\\x3e\\x21\\xc0\\x6e\\xcb\\x77\\x61\\xbe\\x6e\\xe7\\xb2\\x5a\\xf1\\x5d\\xd0\\x6b\\xdf\\x40\\x23\\x24\\x5e\\xef\\x12\\x30\\x42\\x81\\x8a\\x25\\x03\\x6d\\x4b\\x4c\\xd0\\x74\\x6a\\x38\\x72\\x21\\x58\\x26\\x9e\\x8c\\x18\\xfc\\x1b\\xb8\\x26\\x73\\x4c\\x7e\\xcb\\xf1\\x9b\\x06\\x4a\\xc8\\xb4\\x4c\\x48\\xd4\\xb2\\x49\\x98\\xab\\x5b\\x28\\x73\\x2d\\x9b\\x52\\xa4\\x32\\x23\\x8b\\x13\\xbf\\x30\\x2c\\xa4\\xaf\\xdd\\x03\\x6d\\xc4\\x59\\x55\\xbb\\x35\\xfe\\xa8\\x96\\x5c\\xd8\\x28\\x7d\\x0d\\x43\\x7e\\xb6\\x68\\x5c\\xf6\\x0f\\x45\\xff\\xa1\\xf8\\xbf\\x42\\xfc\\x80\\x33\\x9f\\x28\\x80\\xe6\\xd3\\x12\\xc2\\x42\\x08\\x7d\\x72\\x87\\xbe\\xda\\xf9\\x57\\x05\\x74\\xd0\\xb2\\x95\\x3b\\x19\\x14\\x65\\xf8\\xd5\\xe3\\x84\\xcd\\xc3\\x36\\x8d\\xf9\\xe6\\xf1\\x98\\x08\\x51\\x92\\xac\\x08\\x2b\\xf2\\x94\\x89\\xd4\\x64\\xdc\\x67\\xc3\\x99\\x47\\xd0\\x3d\\x79\\x98\\x3e\\xb8\\x61\\x5f\\xda\\xbf\\x30\\xff\\xc6\\xd5\\xdc\\x60\\x37\\x4d\\x93\\x10\\x6c\\xd4\\x18\\x06\\xa9\\x53\\x9f\\x54\\xbd\\xbb\\xb3\\x99\\x42\\x07\\xd4\\xd6\\x5d\\x41\\xcf\\x79\\x69\\x02\\xd2\\xac\\x46\\x1f\\x03\\xbc\\x42\\x5f\\xf8\\xf0\\x25\\xdc\\xa8\\x67\\x6f\\x47\\x79\\x52\\x40\\xd2\\xe4\\xcd\\x43\\x42\\x47\\xe6\\xe3\\xcc\\x20\\x37\\x17\\x11\\x10\\xfa\\x8f\\x66\\x6a\\xf3\\xb3\\x49\\x48\\x4c\\x0d\\xee\\xb6\\x0f\\x9f\\xfd\\x0a\\x7f\\x61\\xb3\\x8d\\x5f\\x25\\xc5\\x60\\x6f\\xa2\\xc9\\x08\\x88\\xa5\\x8f\\x11\\x6e\\x88\\x8a\\xe9\\xb5\\x96\\xea\\x55\\x68\\x0d\\x06\\x7a\\x2e\\xc0\\x94\\x1d\\x32\\x55\\x77\\x54\\xf7\\x1e\\xb7\\x80\\xa8\\x0e\\xb4\\x5e\\xcd\\x42\\x64\\x39\\x38\\xa6\\xa0\\xd1\\xd3\\xdd\\x59\\x95\\x13\\x20\\x2a\\x1f\\x07\\x70\\x9d\\xf8\\x14\\x64\\x07\\xc5\\xd3\\xf2\\x1f\\xa3\\x6e\\xb7\\xda\\x6c\\x4f\\xcc\\xb2\\x78\\x66\\x7a\\x51\\x6f\\xa9\\xbc\\x92\\x3b\\x6a\\x2a\\xf7\\x67\\xd3\\x7f\\x44\\x85\\xb5\\x4d\\xa3\\x1a\\x80\\x49\\x83\\x94\\xeb\\xd9\\x06\\xe1\\xb2\\x1c\\xb2\\x8b\\x43\\xee\\x95\\x22\\x70\\xc1\\x32\\x32\\xd5\\xd7\\x9f\\xb0\\x1f\\x19\\x1e\\x21\\xd8\\x56\\x13\\x2f\\xe0\\x10\\x66\\x8e\\x6d\\x17\\x65\\x6d\\xa0\\x91\\xc2\\x53\\x61\\x31\\xa8\\x3e\\x92\\x14\\x6a\\x60\\x07\\x0f\\x10\\x58\\x3a\\xbf\\xd0\\x0b\\x42\\x8b\\xf9\\xd3\\x8e\\x1c\\xf5\\x8f\\x2f\\xa4\\x4d\\x0e\\x48\\x19\\xb8\\xb7\\x67\\x02\\x8c\\x44\\x53\\xad\\x08\\x19\\x54\\x66\\x0e\\x4a\\x9e\\xf4\\x92\\xd6\\x14\\x2b\\x74\\x74\\x2d\\x76\\xf2\\xa5\\x1f\\xa7\\x98\\x8e\\x91\\x26\\x59\\x1e\\x4c\\x74\\x6c\\x1f\\x16\\x8c\\x42\\xba\\x04\\x88\\xe2\\x2e\\xa1\\xd6\\x0f\\x63\\x7e\\xf9\\x60\\x87\\xb9\\x91\\xfb\\x77\\x01\\xd6\\x21\\x5a\\xc5\\x39\\x34\\x56\\x60\\x6f\\x41\\x0b\\x85\\x16\\x40\\x93\\xb9\\xe6\\xc7\\x87\\x65\\x00\\xc0\\x68\\xf5\\x88\\xd7\\x93\\x83\\x43\\x67\\x6c\\xef\\xdb\\x84\\x15\\x11\\x6f\\xc4\\x9e\\x9c\\x1a\\xbe\\xed\\xb9\\x2c\\x06\\x14\\xac\\x21\\xf5\\x09\\xce\\x05\\x5f\\x0d\\x83\\x97\\x36\\x0c\\x3a\\x58\\x80\\xd4\\xeb\\xe0\\x18\\x85\\xab\\x24\\x8f\\x05\\x6d\\x5f\\x04\\x43\\x10\\xd0\\x7e\\xa0\\x54\\x13\\xd1\\xf7\\xe6\\x76\\x81\\x8f\\xcc\\xa6\\xbc\\x3d\\x81\\xfd\\xc4\\xde\\xf7\\x44\\xf5\\xf4\\x4a\\x0c\\x57\\x70\\x0d\\x9b\\x28\\xe6\\x2e\\xe4\\x0b\\x42\\xbd\\x9d\\x39\\xf7\\x14\\xf6\\xa7\\xad\\x7c\\x92\\x3b\\xfc\\xed\\x56\\x3f\\xa7\\xab\\xb7\\x64\\x37\\x0b\\xc8\\xea\\xf2\\x41\\x7e\\x6d\\xeb\\xd4\\x80\\x25\\x01\\x37\\x07\\x86\\x00\\xc4\\x32\\x85\\x6e\\x3a\\x9d\\xe1\\x40\\x6f\\xec\\x9d\\x8a\\x8b\\xce\\x21\\xe7\\x7e\\x43\\x53\\x94\\x72\\xa7\\x89\\x80\\x18\\x70\\x1e\\x8f\\xd5\\x10\\x00\\x7c\\xd6\\x3d\\x6b\\x14\\xa7\\xc3\\x96\\x1c\\xba\\xdc\\x46\\x1a\\xe7\\x91\\xa6\\x8c\\x1f\\xc8\\x0c\\x12\\x22\\x8c\\xba\\xcc\\x76\\x90\\xa1\\x05\\xe4\\x6c\\xcf\\xef\\x5f\\x09\\x93\\xa8\\xb7\\x60\\x8e\\x4c\\xde\\x59\\x42\\x69\\x0a\\xda\\x12\\x5d\\xe8\\x0f\\xa1\\x9e\\xe9\\x4e\\xb7\\xc3\\xe2\\x79\\xa0\\xb0\\x0d\\x6b\\x9c\\x96\\x3d\\x49\\x65\\x2d\\xbb\\x71\\xda\\xcb\\x34\\xff\\x50\\x31\\x65\\x71\\xcd\\xd8\\x49\\x42\\x73\\x5a\\x65\\xb7\\x91\\xce\\x9c\\xe8\\x9d\\x43\\x87\\xb4\\x50\\xf6\\x6f\\x82\\x23\\x2f\\x18\\x48\\xe7\\xc9\\x27\\x5f\\x12\\xa6\\x18\\x9e\\xab\\x87\\x7b\\x91\\x4d\\xc8\\xc8\\x37\\x20\\x17\\x45\\xfa\\x22\\x5d\\xdf\\x2e\\x13\\xb1\\x91\\x54\\xf3\\x3d\\xdc\\xcc\\x58\\x59\\x99\\x14\\x08\\x20\\x51\\x69\\x71\\xb8\\x49\\x6b\\xf7\\xed\\x5c\\xba\\xcb\\xef\\x37\\xa1\\x99\\x5a\\x24\\x80\\x1a\\xae\\x69\\x2b\\xd9\\x25\\xa3\\x98\\x09\\x45\\xf1\\xb6\\x12\\x53\\x48\\x24\\x5b\\x4a\\x31\\xbd\\x8e\\x23\\xc3\\x17\\x1c\\x3b\\xea\\x80\\x05\\xd1\\x73\\xdc\\x07\\x10\\x68\\x64\\x31\\xe4\\xe5\\xd6\\xd6\\x28\\x48\\x17\\x7d\\xa6\\x01\\xc7\\x4d\\x0e\\x43\\x90\\x19\\xda\\x77\\x4a\\x9e\\xf3\\xaf\\x83\\xe4\\x51\\x4c\\xca\\xc4\\xfa\\x4e\\x10\\xcb\\xad\\x81\\xfc\\x1e\\x96\\x12\\x1c\\x4c\\xee\\xf4\\x87\\xd1\\xc4\\x28\\x90\\x06\\x47\\x42\\x90\\xf0\\x45\\x15\\x50\\x5f\\x89\\x39\\x5b\\x22\\xbd\\xa4\\x2b\\x0d\\x75\\x2f\\x40\\x39\\x60\\xa6\\xda\\xb1\\xa4\\xf2\\x05\\x54\\x44\\x47\\xde\\xc7\\xc0\\x43\\xf5\\x12\\xcf\\x00\\x6b\\x10\\x46\\x5b\\xe9\\x38\\x37\\x86\\x4e\\xc6\\x20\\x6c\\xc2\\x48\\x96\\xaf\\xef\\x65\\xd4\\x1f\\xab\\xa2\\x1b\\xc4\\x36\\x8e\\x7c\\x0a\\xad\\x05\\x82\\xb6\\x78\\x12\\x2d\\xc4\\xc4\\x51\\x4b\\x63\\x48\\xb1\\x91\\x54\\x02\\x81\\xb0\\xf8\\x91\\x81\\x5a\\x80\\xc4\\x57\\xba\\x8d\\x93\\x9c\\x1a\\xb8\\x0d\\x98\\x34\\x7d\\x83\\x73\\x00\\x2a\\x8d\\xad\\xa3\\x23\\xd2\\x1e\\x1a\\x44\\x84\\xa1\\xa2\\x9b\\x08\\xa6\\xc1\\xce\\xd1\\x11\\x6c\\x60\\xd2\\x6f\\x23\\x08\\x1c\\x10\\x04\\xaf\\xda\\x32\\x30\\x58\\x02\\xed\\x33\\x4f\\xcb\\x74\\x41\\x85\\xb9\\x1b\\x4b\\x2b\\xc1\\xfc\\x9e\\xb8\\x42\\x45\\x99\\x39\\xe7\\x75\\x62\\x72\\xee\\x10\\xa3\\x31\\x01\\x08\\x8c\\x3d\\xf7\\x2e\\x2a\\xaf\\x87\\x09\\x2e\\x20\\x01\\x8a\\x27\\x90\\xca\\x97\\x1b\\x41\\x01\\x3e\\x69\\x38\\x1b\\x34\\xf9\\x30\\xac\\x5a\\x4c\\xed\\x58\\x4e\\x6e\\x45\\x49\\x62\\x5e\\x44\\x0c\\x29\\xdc\\x8c\\xb6\\x44\\xd9\\xca\\x5d\\x84\\x88\\xcb\\x41\\x8d\\x5b\\x4e\\x37\\x8f\\x06\\x0d\\x0c\\x50\\x61\\x44\\xfe\\xe1\\x33\\x84\\x30\\x5e\\x24\\x17\\x03\\x35\\x89\\x16\\x06\\xbd\\x27\\x0d\\x06\\x9d\\xf8\\xfe\\x55\\x52\\x80\\xa2\\xa5\\x01\\x8b\\x13\\xc8\\x75\\x4f\\x2a\\x6d\\x69\\xfa\\x43\\x43\\x63\\x8d\\x72\\xae\\x7c\\x3f\\x67\\x18\\xc6\\x0c\\xcf\\x5e\\xa0\\x59\\x79\\xa5\\xf9\\xd4\\x76\\x37\\x36\\x96\\x3d\\xe1\\xed\\xad\\xf7\\xb9\\x35\\x09\\x0a\\xee\\x58\\x2f\\x9e\\x6d\\xda\\xf4\\x63\\xb8\\xd3\\x92\\x09\\xe0\\x39\\x0e\\xa8\\x80\\x41\\x31\\x33\\x5a\\x80\\x9e\\xcb\\x06\\x95\\xb6\\x98\\xe8\\xf0\\xd3\\x52\\xbc\\x52\\x23\\x64\\x11\\x65\\x08\\xd1\\x40\\x4b\\x44\\x4d\\xdf\\xe2\\xdb\\xe0\\x5d\\x5c\\xd9\\x25\\x40\\x12\\x4d\\x83\\x94\\x4a\\x92\\xf2\\xdf\\x9f\\x70\\x08\\x6c\\x5b\\x5c\\xb1\\x41\\xa7\\xe8\\x03\\xca\\xdf\\x6c\\xfd\\x35\\x59\\x55\\x91\\xca\\x3e\\x45\\xf2\\xe6\\xbe\\x15\\xc2\\xa8\\x77\\x6b\\xc0\\x64\\xbf\\x3b\\x7f\\x86\\x1a\\x35\\x13\\x8f\\xcf\\xe0\\xcd\\xc1\\x0c\\x40\\x3b\\xf9\\xf3\\x77\\x42\\x31\\xe8\\x94\\x25\\x81\\xbd\\x40\\x06\\x08\\xb0\\xd0\\x98\\xbb\\x05\\x2e\\x2a\\x6e\\x2d\\xed\\x05\\x2e\\xdb\\x2c\\xf5\\x4d\\x67\\x39\\xd5\\xbf\\x14\\x8a\\x66\\xab\\x0a\\xe6\\xf4\\xd7\\x6b\\x2a\\x80\\x00\\x3b\\x51\\xc8\\xc5\\x1f\\x14\\x80\\xec\\x73\\x37\\xe2\\x25\\x55\\x55\\xed\\x22\\x12\\xb1\\xe0\\x2c\\xa6\\xa3\\x94\\x90\\xca\\x03\\x9c\\x3c\\x6a\\x9a\\x4c\\xb3\\x99\\x0e\\x48\\xca\\xf7\\x29\\x49\\x67\\xd4\\x62\\x46\\x0c\\x4c\\x44\\xce\\x42\\xa0\\xd1\\x4b\\xdc\\xe1\\xc0\\x42\\x6b\\xe6\\x41\\x9e\\xa9\\xf1\\xbd\\xbc\\x4c\\x3d\\x3a\\x2e\\x7a\\xd6\\xf5\\xed\\xe9\\x32\\xdd\\xb6\\x4c\\x34\\xe0\\x9d\\xf5\\x05\\x26\\x23\\x60\\xb2\\x8d\\x03\\x62\\x12\\x8a\\x1a\\x22\\x28\\xd0\\x88\\xf6\\x5d\\x35\\xb4\\xf8\\xda\\xd6\\x88\\x75\\x91\\x0d\\x33\\x12\\x53\\xe6\\x6c\\x7f\\x7b\\x5b\\x04\\x40\\x03\\x5b\\x76\\x53\\xb2\\xad\\xd9\\x73\\x87\\xfd\\xc8\\x2c\\x65\\x62\\x5c\\x43\\x73\\x42\\x74\\x2d\\xcb\\x4e\\x96\\x8a\\x94\\x44\\x6c\\x10\\x7a\\x29\\x5f\\xcb\\xd2\\x61\\xbd\\x41\\x5f\\xe5\\x04\\x0c\\xc1\\x5b\\x20\\x7c\\xd0\\x5b\\xbb\\x34\\x97\\x6e\\xc1\\x85\\xb2\\x6a\\xb9\\x23\\xe5\\x72\\xfe\\xf7\\xd8\\xe3\\xa7\\xc6\\x9e\\x83\\x08\\x3c\\x27\\xc6\\xcf\\x68\\x53\\x3c\\x55\\x2a\\x39\\x15\\x6c\\x94\\xa6\\x9f\\xb0\\xe6\\x6b\\xd6\\x28\\x28\\x3a\\x17\\xda\\xfb\\x2c\\x16\\x69\\xb9\\xa9\\x4c\\xb8\\x9e\\xcc\\x98\\x2f\\x98\\xb6\\x28\\x29\\xa5\\x3a\\xe6\\x32\\xad\\x4b\\xc5\\xd1\\xc8\\x49\\xbb\\x4b\\x42\\xad\\x89\\x9d\\x75\\x05\\x8d\\x37\\x7b\\x7d\\xa5\\x82\\x91\\x9b\\x15\\x9e\\x58\\x42\\x64\\xe8\\x4b\\xda\\x41\\x00\\x05\\x43\\x58\\x1b\\x61\\xc2\\xc0\\xf5\\x34\\x50\\x46\\x53\\x24\\x2d\\x60\\x00\\x6c\\x0e\\xb4\\x48\\x60\\x05\\x8c\\x0d\\x74\\xe8\\xc7\\xc8\\xf3\\xf0\\xb8\\x80\\x93\\xdf\\x71\\x2e\\x45\\xcd\\xc3\\xce\\xe3\\xc1\\xaa\\x8c\\xdc\\xab\\xc9\\x98\\xee\\x48\\xc4\\xbf\\x45\\xe8\\x78\\x98\\x0f\\xb8\\xfd\\xb0\\x8b\\xdb\\x80\\x57\\x44\\x95\\xc8\\x04\\xe8\\xb6\\x78\\xb0\\x80\\xb7\\x60\\xc5\\xd7\\x21\\x83\\xb8\\x51\\xd0\\xc0\\x0b\\x4e\\x57\\x28\\x2d\\xbb\\xc7\\x69\\x86\\x15\\x6a\\x09\\x34\\xa9\\xb9\\x6e\\x40\\x09\\x6b\\xcd\\x25\\x4e\\x4f\\x51\\x96\\xa5\\x89\\x9d\\x71\\x0a\\x35\\x3c\\x43\\x1b\\x55\\x01\\x00\\xcc\\xa0\\x85\\x92\\xe4\\x9c\\x74\\x86\\x44\\xfd\\x31\\x2e\\x72\\xb6\\xc0\\x6e\\x42\\xc4\\xc2\\xe9\\x47\\xdc\\xc4\\xa7\\x56\\xc5\\x55\\x20\\xb1\\x56\\x3e\\x5e\\x48\\x3f\\xa7\\x4b\\x81\\x0e\\xe3\\x9d\\x74\\xd7\\x59\\x4c\\xd6\\x2f\\xd1\\x26\\xe1\\x5e\\x1a\\x83\\xdd\\x45\\xe1\\xe3\\x4c\\x49\\xb1\\xc0\\xa8\\x74\\x90\\x45\\x4e\\x65\\x88\\xa7\\x3d\\x01\\xd1\\xc6\\x80\\x46\\xd8\\x6c\\x0a\\x2d\\x79\\x73\\xf8\\x74\\x51\\xb6\\x18\\xe9\\x55\\xde\\x40\\x95\\x39\\x04\\x77\\xb2\\x48\\xa8\\x45\\x51\\xec\\x27\\xda\\x2b\\x57\\xfc\\xf9\\xbe\\x0e\\x54\\x1b\\xfd\\xb0\\x0a\\x20\\x2d\\xac\\x25\\x81\\x41\\x86\\xa9\\x57\\xdb\\x38\\x8c\\xa8\\x3a\\x8e\\xf4\\x38\\xab\\xda\\x61\\x49\\x53\\xf7\\xab\\x62\\x34\\xa2\\xdb\\xd1\\xf8\\x4d\\xbb\\x33\\x67\\x52\\xc1\\x75\\xaf\\x7b\\xa7\\xaa\\xdc\\x10\\x4f\\xc4\\x78\\xfc\\x04\\x5c\\xea\\x82\\xc4\\xac\\x41\\x53\\x12\\xa0\\xfd\\x3a\\x8d\\xde\\x53\\x80\\x36\\xf9\\xdd\\x3e\\x96\\x57\\x0e\\x07\\x02\\x6b\\x20\\xfb\\x0d\\x3b\\x31\\x10\\xfe\\x05\\xcc\\xeb\\x7a\\x3d\\xea\\x13\\x0d\\x0a\\xc2\\x38\\x8b\\x6b\\xe0\\xde\\x0c\\xda\\x8e\\x01\\xdb\\xbd\\xcc\\xe0\\x3d\\xba\\xdb\\x0d\\xbf\\xdc\\xad\\xeb\\xb7\\x1b\\x9d\\xb8\\x76\\x1b\\x05\\xbb\\x65\\x6e\\x1b\\x91\\xed\\xb1\\x8e\\xf5\\xd0\\x64\\xe1\\xc3\\xf3\\xfd\\xc7\\xba\\x0b\\xc6\\x8d\\x6b\\x26\\x22\\x94\\x04\\xab\\x3a\\x89\\x67\\x65\\x11\\x50\\x36\\xa5\\x1f\\x8f\\xa9\\x47\\x64\\xbf\\x65\\x0a\\x13\\xb9\\xcd\\x13\\x8e\\x20\\x20\\x69\\x38\\x9d\\x8b\\x0c\\xcf\\x1c\\x0a\\x25\\x89\\xd8\\x19\\x6d\\xd3\\xb5\\x26\\x1b\\xba\\x37\\x2a\\x12\\xba\\xa1\\x49\\x4c\\x10\\xda\\xf7\\xa8\\xc8\\x13\\xdf\\x4e\\xee\\x6c\\x71\\x35\\x83\\x40\\x04\\xc4\\x65\\x34\\x86\\x05\\x69\\xf6\\x69\\x87\\x6f\\xbf\\xbf\\xd4\\xbf\\x4f\\x0d\\xf2\\xbe\\x6b\\x2a\\x68\\x61\\xc1\\xac\\x0c\\x49\\xde\\x89\\x13\\x58\\x23\\x25\\xea\\x8e\\x75\\xaa\\x99\\x4f\\x87\\x23\\xaf\\x5b\\x45\\x46\\x9a\\xe3\\xc8\\x9a\\x9f\\x4a\\xa2\\x5b\\x30\\xd6\\xff\\x76\\x15\\x4f\\xb4\\xe0\\x1c\\x13\\xe8\\x4b\\xac\\xa5\\x53\\x59\\x3d\\x53\\xed\\xab\\x59\\x74\\x92\\xcc\\x18\\x70\\x83\\x3d\\x1d\\x3d\\xa9\\xb0\\x13\\xea\\x95\\x4e\\x61\\x7c\\xcd\\xd6\\x9f\\x0d\\x22\\x9c\\x5b\\x1c\\xa1\\xa2\\x4e\\xe1\\x3d\\xa6\\x44\\xf9\\x9a\\x5f\\x18\\xdf\\x82\\x4e\\x93\\x36\\xc8\\x3b\\xe0\\xef\\x18\\xaa\\xfe\\xc0\\x97\\x38\\x63\\x6c\\xac\\x41\\x17\\xf6\\x52\\xfa\\x10\\xa5\\xf0\\xbf\\x4c\\x70\\x2f\\x6d\\x58\\x91\\x00\\x07\\xac\\x8e\\x26\\x3e\\x5c\\x79\\x2f\\xc5\\x33\\xe1\\xd9\\x43\\x4e\\x05\\xe2\\x62\\x30\\x91\\x61\\x04\\x17\\x08\\x31\\xc4\\xdc\\x96\\x31\\x51\\x07\\xc0\\xfc\\x40\\xc2\\xf1\\x47\\x32\\x4a\\x95\\x49\\xc9\\x4d\\x0e\\xa4\\xb1\\x69\\x24\\x73\\x77\\x35\\xab\\x42\\xf1\\xfe\\x20\\xd1\\x14\\x16\\x37\\x42\\x7d\\x08\\x64\\x1b\\x9d\\xa1\\xa1\\x40\\x08\\xfb\\x97\\x8a\\xf4\\xc7\\x07\\x78\\x50\\x15\\xe7\\x87\\xfd\\xc2\\xc6\\xf2\\xff\\x90\\xb2\\xc6\\xcc\\xa4\\x44\\x94\\x90\\x27\\x0a\\x0c\\x0d\\x00\\xc2\\x1b\\xb5\\xed\\xff\\x8f\\xac\\x4d\\xe2\\x6e\\x28\\x29\\x7e\\x68\\x13\\x9a\\xdc\\x3c\\x49\\x49\\x90\\xe3\\x6b\\xee\\x91\\x5e\\x0a\\x66\\x1c\\x9b\\xbe\\x99\\xb8\\x8b\\xa0\\x71\\xa1\\x67\\x54\\xed\\xd9\\xa9\\x45\\xd2\\x00\\x47\\x99\\xac\\x6e\\xbd\\x08\\x7c\\x1a\\xf7\\x26\\x52\\x71\\x60\\xb2\\xb9\\x13\\xd9\\x80\\x35\\x18\\xa9\\x74\\x6f\\x1d\\x7e\\xd6\\x9f\\x6a\\x62\\x12\\xae\\x2c\\x20\\xd2\\x32\\xb5\\x49\\xeb\\xb1\\xd0\\xcf\\x01\\xf9\\x23\\x5b\\x0f\\x24\\xe1\\x10\\xd3\\xa8\\x86\\x9d\\x5a\\xb3\\x66\\x8b\\x63\\xbc\\xd8\\xa5\\x37\\x1e\\x39\\xe3\\xf9\\x2e\\x0c\\x93\\xe9\\x91\\x47\\x91\\x1a\\x09\\x49\\x8b\\x97\\x5e\\x3d\\x75\\x67\\xca\\x18\\x46\\x9b\\x79\\xd8\\x31\\xb4\\x65\\x87\\xbd\\x34\\xb8\\x6b\\x65\\xd2\\x22\\x34\\x9c\\xb6\\x4c\\xd8\\xbd\\x81\\x71\\xf3\\xb9\\x52\\x3d\\x6e\\x88\\x6a\\xb8\\x38\\xc1\\xdf\\x04\\xc0\\xcb\\x99\\x32\\xe5\\xde\\x71\\x17\\x77\\x2a\\x7c\\x62\\x2d\\x14\\x8b\\x7d\\x96\\x69\\x9d\\xfb\\x10\\x8c\\x66\\x35\\xfb\\x55\\x67\\xfb\\x67\\x0c\\x16\\x4b\\x3e\\xfd\\x00\\x92\\xc4\\xe6\\x81\\x08\\x60\\x1f\\xaa\\xac\\x78\\x33\\x86\\xf2\\xb6\\xa7\\x39\\xb8\\x2a\\x0a\\x5e\\x07\\x10\\xd3\\x7d\\xc2\\x86\\x30\\xd8\\x2e\\x6d\\x37\\x02\\xc7\\x48\\x18\\x75\\x28\\x4b\\x13\\x9d\\x42\\xe0\\x9c\\x00\\xc0\\x50\\x68\\x20\\xc0\\x83\\x77\\x50\\xdb\\x10\\xf4\\x8e\\x83\\xb1\\xb4\\x6e\\x81\\x53\\x31\\x7f\\x6f\\x26\\x03\\x16\\x74\\x3a\\xb9\\x36\\xac\\x47\\x24\\xbf\\x0f\\x3c\\xe7\\xd0\\x6a\\xac\\xea\\xe1\\x5e\\xac\\xd4\\x6f\\xf3\\x9c\\x88\\x4a\\x81\\x5c\\xef\\x92\\x16\\x5b\\x0a\\x89\\xa1\\xf0\\xb5\\x62\\xbd\\x9d\\x56\\xc1\\xf1\\xff\\x92\\x6d\\x3a\\x94\\x64\\xae\\x75\\xaf\\xfa\\x0a\\xb8\\x30\\xad\\x51\\x32\\x3f\\x52\\xcc\\xa5\\x26\\xba\\xba\\xe7\\x2c\\xb3\\x4a\\xed\\xc5\\xa2\\xb9\\x61\\x07\\x55\\x31\\x8a\\xa9\\xd2\\x92\\x92\\x18\\x97\\x62\\x6d\\x45\\xfa\\x2f\\xe1\\x25\\x2e\\xa6\\xe3\\xd8\\xc6\\x64\\x6f\\x92\\x04\\x18\\xad\\x16\\x2c\\x69\\x3b\\x5e\\xc3\\xc8\\x40\\xa7\\xf2\\xe4\\x36\\xce\\x19\\x6d\\xf0\\x32\\xda\\xe4\\xb1\\xbd\\x4b\\x20\\xab\\x82\\x96\\x58\\xaf\\x8e\\x95\\x28\\xd0\\xdf\\x1f\\xd4\\x82\\x88\\x4c\\xb5\\xe8\\x74\\x9b\\xd1\\x2c\\x27\\x9d\\xb0\\x07\\xd1\\xcf\\x18\\x61\\x9e\\x35\\x99\\x81\\xe2\\x2d\\xb6\\xa7\\xfc\\x0c\\xcd\\x7e\\x24\\xf9\\x17\\xed\\x31\\x8a\\xff\\xcb\\xab\\x7c\\xc6\\x33\\xe0\\x92\\xa2\\xba\\x8d\\x22\\x38\\xc1\\x3a\\x0a\\x58\\xa6\\x09\\x9d\\xf4\\xd4\\x5e\\xa2\\x15\\x06\\xaa\\x1b\\x91\\xab\\x46\\x35\\xd5\\x27\\xc2\\x5f\\xc8\\x12\\x5f\\x00\\xa5\\x92\\x1c\\x25\\xf2\\x68\\xf5\\xec\\x16\\xdb\\x06\\xac\\xa6\\xda\\x4d\\x12\\x0b\\x0a\\xa1\\x19\\xd5\\xd6\\xcf\\xae\\x07\\x87\\x95\\xf2\\xc3\\x31\\x07\\x62\\xf8\\x6a\\xa9\\x25\\xab\\x58\\xcd\\xf2\\x04\\x4e\\xe2\\x10\\x8f\\x2e\\x24\\x01\\xd7\\x70\\x31\\x50\\x1a\\x0a\\xa1\\x9e\\x10\\x90\\xac\\x15\\x3a\\x96\\x64\\x32\\x25\\xa2\\xd1\\x21\\xc8\\x27\\xa9\\xa0\\x36\\xfe\\x74\\xf7\\x4d\\xec\\x9c\\x35\\x2d\\x21\\xc8\\x6e\\x79\\xbe\\x6f\\x84\\xd5\\xdd\\xf3\\xbe\\x29\\x3d\\x94\\xd8\\x90\\xf2\\x43\\xe4\\x80\\x72\\x65\\xe0\\x80\\x79\\x03\\xec\\xb6\\x92\\xba\\x81\\x68\\x41\\x16\\x62\\xf8\\x5e\\xb3\\xc1\\x46\\x9b\\xbb\\x6b\\xef\\x9a\\x77\\xe5\\x8b\\x3a\\x4f\\xc1\\x20\\xb9\\x56\\x1f\\xff\\xd0\\x24\\x9c\\x1b\\x83\\x4d\\xf1\\x5c\\xd9\\xea\\x21\\x08\\x5b\\x21\\xa9\\xb4\\x54\\x0c\\xcb\\x2e\\x4c\\x3a\\x4b\\x1b\\x4e\\xf7\\x86\\x4f\\x83\\x84\\x58\\x83\\xb3\\xb0\\x38\\x40\\x48\\x34\\x0f\\x16\\x0c\\x20\\x10\\x9e\\x59\\x6b\\x9e\\xa8\\xd7\\x88\\x4b\\x0b\\x8f\\x9d\\xd3\\x54\\x76\\x73\\x23\\x00\\x21\\xf3\\x4e\\xc8\\xc2\\xc3\\xd4\\x31\\x26\\x06\\x48\\x02\\x48\\x75\\x6b\\xb2\\x6b\\x10\\x6a\\xc6\\xfd\\xa4\\x04\\xc3\\x22\\x39\\xd3\\x3e\\x4c\\x3a\\x11\\xe5\\x08\\xf7\\x6d\\xa0\\xc6\\xcc\\x82\\xcd\\xbb\\xad\\x1b\\x71\\x2d\\x0c\\x3d\\x07\\xa6\\x9f\\x79\\xe9\\xc8\\x7d\\xf0\\x57\\x89\\x91\\xbd\\xa8\\xb6\\x42\\x75\\x44\\x87\\x37\\x97\\x0d\\xc4\\x32\\x83\\xd3\\x77\\x7f\\x0e\\x81\\x75\\x45\\xb8\\x0a\\xc3\\x30\\x40\\x60\\xda\\x86\\xe5\\x1f\\x07\\xd5\\x4e\\x8c\\xa9\\xc6\\xd8\\x5a\\x0a\\x7c\\x64\\x39\\x5e\\x78\\x4b\\xca\\x6c\\x11\\x41\\x08\\xa8\\x65\\x9c\\x3e\\x19\\xb2\\x34\\x3d\\x4d\\xde\\x0f\\x4d\\xb5\\x1a\\x85\\xe8\\x11\\xba\\xf6\\x12\\x24\\xa6\\x40\\xaf\\x56\\x73\\x94\\x74\\xf7\\x67\\xe2\\xff\\x84\\x9c\\xbc\\xcc\\x00\\x90\\xb0\\x9f\\x50\\x86\\x67\\xe4\\xa4\\xd6\\x19\\x16\\x23\\xc5\\x1f\\xc6\\x43\\x8d\\x94\\xff\\x1c\\x13\\xa3\\x9f\\xb0\\x93\\x0c\\x0b\\x21\\xff\\x0c\\x99\\xd3\\xcc\\x26\\xf9\\x0c\\xbf\\x6a\\xc2\\x41\\x5c\\xdd\\x70\\x29\\x02\\x4b\\x7f\\x70\\xaf\\xb4\\x76\\x54\\x1b\\x4d\\x0a\\x3e\\x84\\x7f\\x97\\xfd\\x7c\\x53\\xed\\xfa\\xb3\\x29\\xcf\\xe3\\xe8\\xb1\\xdf\\x0a\\x08\\x3a\\x5e\\x65\\xfa\\x32\\x05\\xfd\\x6d\\x03\\xe3\\xcd\\x72\\xff\\x6c\\x5f\\x1f\\x8d\\xf9\\x59\\xec\\xe7\\x13\\x14\\x3d\\x65\\x2a\\x1b\\x37\\x67\\x16\\x24\\x95\\x1b\\x13\\x5a\\x96\\x59\\x51\\x12\\x4a\\x30\\x7c\\x40\\x49\\x6f\\xd1\\x19\\xc4\\xbe\\x7a\\x44\\xa6\\xdd\\x31\\x66\\x0b\\x4d\\x2d\\x15\\x78\\x0e\\xb9\\x88\\xa0\\x04\\xb6\\x76\\xd6\\x8a\\xad\\x58\\x82\\xc3\\x14\\xb8\\x79\\x02\\x03\\x05\\xb7\\x36\\x2a\\x3a\\x48\\x00\\x3c\\x9b\\xf1\\xc2\\x66\\x3b\\xea\\x39\\x40\\xbf\\xae\\x30\\x26\\x88\\xd5\\x6b\\xde\\x21\\x00\\xc2\\xd0\\x68\\xf8\\xf8\\xcd\\x44\\xb3\\x34\\xa8\\xf5\\x34\\xa0\\xd9\\x32\\x38\\xb2\\x5a\\x79\\x9b\\x06\\xad\\xc0\\x18\\xe6\\xe0\\xf1\\xb1\\x15\\xb7\\xec\\x63\\x7c\\x6a\\x8e\\xaf\\x93\\xfe\\xdd\\x31\\x70\\xcd\\x26\\xec\\xfe\\xfb\\x22\\xc7\\x7c\\xbd\\xa9\\x10\\xbb\\x95\\xd7\\xaa\\xd1\\xed\\xb7\\xec\\xfa\\x57\\xbf\\x44\\x8d\\xd3\\x01\\xb8\\x04\\x5b\\x4a\\x2c\\x2d\\xb8\\x81\\x9c\\xdc\\x58\\x79\\x27\\x3a\\xc0\\xdf\\x6c\\x75\\x39\\x85\\x81\\xf4\\xb4\\x9a\\x4f\\x9c\\x00\\xec\\x48\\x35\\xfa\\xba\\x6f\\x2b\\xdc\\xd8\\x20\\x8f\\x73\\x3f\\xa6\\x22\\xee\\xe2\\x61\\xde\\xa1\\x25\\x49\\x53\\x6e\\x76\\xb1\\x2e\\xce\\x67\\xd0\\x41\\x4f\\x44\\x8e\\x5c\\x8e\\x05\\xdc\\x58\\x23\\x6b\\xf3\\x80\\xa7\\xf1\\x62\\x68\\xbb\\x9a\\xd0\\x67\\x40\\x1e\\x40\\x12\\xea\\x27\\x5f\\x18\\xc7\\x03\\xdb\\x8f\\x5d\\x5e\\x9a\\x4c\\x72\\xb9\\x80\\xf3\\xa0\\xc2\\x09\\xc2\\x50\\xdf\\x84\\xaa\\x1b\\xfd\\x5f\\x34\\x88\\x24\\x89\\x89\\x69\\x16\\x95\\xc6\\xa1\\x31\\xc8\\x84\\xd3\\xf9\\x30\\xfb\\xba\\x49\\xa7\\x08\\xe0\\x0b\\x13\\x27\\x9a\\xee\\x43\\x8c\\xe3\\x82\\x9e\\x48\\xa5\\xf0\\x1c\\x17\\xb3\\x0a\\x52\\xe6\\x10\\x44\\x00\\x80\\x60\\xcc\\x53\\x72\\x19\\x8b\\x44\\x22\\x05\\xb2\\xb0\\x15\\x99\\x2d\\x7d\\xde\\x19\\x9c\\x81\\xe1\\x01\\x78\\x21\\xba\\xdf\\x25\\x87\\x07\\x80\\x11\\x87\\x58\\x1b\\xd8\\x53\\x6c\\x1b\\xb3\\x7e\\xca\\x2f\\xed\\xe3\\x4e\\x4f\\x75\\x0d\\xcb\\xe7\\xf6\\xb8\\x20\\x82\\x3a\\xc2\\x1c\\x5a\\x99\\x11\\x38\\x68\\x87\\xbf\\xa1\\x1e\\xa3\\x1f\\x0f\\x05\\xa1\\x11\\x20\\xd0\\x05\\x84\\x18\\xce\\x18\\x51\\x0c\\x20\\x69\\x1a\\xa0\\x7e\\x52\\xd4\\xcc\\x50\\x15\\x3d\\x10\\x0a\\x85\\x34\\xb8\\x70\\x85\\xb7\\x80\\x00\\x18\\x28\\x7a\\xdf\\x19\\x4d\\xab\\xf8\\x6d\\x04\\xa4\\x30\\xa8\\x51\\x2b\\x54\\x14\\xd5\\xc1\\x5c\\x7e\\xf5\\xd6\\x03\\x71\\xe1\\x83\\x9e\\xdf\\x46\\x38\\xa6\\x06\\x6d\\x15\\x04\\xcb\\x16\\x0f\\x96\\x86\\x60\\x94\\x7b\\x91\\x3a\\xa9\\x4e\\xf4\\xf7\\x03\\xdb\\x81\\x4b\\x7b\\x0e\\xe0\\x3d\\xee\\x26\\x5c\\x91\\x28\\xfb\\xda\\x90\\xc7\\x29\\x5b\\x85\\xb1\\x1c\\xfd\\xa1\\xb9\\xbd\\x30\\xf4\\xa0\\xef\\x9e\\x59\\x5d\\x0d\\x8b\\x1e\\x78\\x8d\\xf0\\x69\\x20\\xd9\\x05\\xa0\\x7c\\x8e\\x97\\x68\\xf0\\x0c\\x0c\\xca\\xc9\\x5b\\x18\\xbe\\x2a\\xda\\x58\\x57\\xe1\\xc7\\x76\\xed\\x8a\\x16\\x12\\xf4\\x1d\\xc9\\x39\\xb0\\x69\\x7c\\xcf\\xd7\\xa3\\x23\\x6b\\x49\\x7a\\x43\\x19\\xc0\\x9e\\x12\\x21\\xd0\\xee\\x43\\x66\\x11\\xe3\\x05\\x16\\xfe\\x79\\x26\\xa0\\x80\\x41\\x5a\\x14\\x61\\x9c\\x80\\x36\\x44\\x13\\x21\\xbf\\x7b\\x00\\xe4\\x1e\\x3b\\xcb\\x7f\\x90\\x49\\x87\\x02\\x44\\x5a\\xdb\\x24\\x95\\xe5\\x90\\x17\\xc2\\x2e\\x41\\x04\\xab\\xce\\xe1\\x33\\xa6\\xd4\\xa0\\x59\\xa4\\x0f\\x6a\\x8a\\xf6\\xcf\\x3c\\x06\\x0e\\xb6\\xa3\\x81\\x0f\\x4a\\x2d\\xd6\\x08\\xd7\\xa5\\x82\\x8a\\x20\\xb5\\x88\\x83\\x20\\x00\\x18\\xdf\\xbb\\x6d\\xa4\\x3d\\xc1\\xb5\\x96\\x8a\\x62\\xc2\\x1a\\x46\\x42\\x15\\x11\\x08\\x19\\xa4\\x56\\xee\\x5e\\x3c\\x3c\\x16\\x71\\xa0\\xb8\\x01\\xad\\x14\\x44\\x14\\xc1\\x25\\x61\\xe1\\x87\\x0a\\xd7\\x28\\x15\\xbb\\x41\\xbc\\x1b\\x06\\x6c\\x8d\\x5b\\x36\\x90\\x84\\x29\\x9f\\x21\\x0b\\x1c\\xb4\\xac\\x89\\x55\\xc4\\x62\\x99\\xf9\\x81\\xf9\\x5a\\x6e\\x54\\x21\\xaf\\x4e\\xb8\\x69\\x94\\xe6\\xb8\\xb6\\xd9\\x94\\xd0\\x4f\\x56\\x44\\x82\\x70\\xf1\\xb2\\x2a\\xa5\\x33\\x97\\x78\\x71\\xd4\\x8d\\x23\\xa6\\x42\\x38\\x58\\x53\\x28\\x56\\x33\\x53\\x9c\\xa5\\x51\\x9e\\x70\\xaa\\x2b\\xa0\\x06\\x86\\xc4\\x73\\x69\\x11\\x15\\x45\\xa0\\x89\\x27\\x5e\\x93\\x99\\x65\\x6e\\xe1\\x79\\xb1\\x95\\xaa\\x1b\\xa6\\xc5\\xf4\\x1e\\x79\\x5a\\xb3\\x68\\x23\\xf0\\xcd\\x23\\x17\\x6a\\x8c\\x94\\x5c\\x82\\x2a\\x94\\x66\\x3a\\x69\\x5c\\xb5\\x5e\\x82\\x91\\x95\\xdf\\x65\\x69\\xf6\\x39\\xd6\\x2d\\xc9\\x41\\x71\\x7e\\xa3\\xe8\\x68\\x07\\xe8\\xac\\x70\\x3a\\x39\\xc1\\x41\\xf1\\xd1\\xbf\\x73\\x6c\\x68\\x75\\x5d\\xb2\\x36\\xbd\\xb2\\x35\\x25\\x32\\x85\\x09\\x62\\x01\\x95\\x43\\x80\\xe4\\x8c\\x9f\\xe8\\x19\\xa4\\x57\\x20\\xba\\xe9\\x44\\x8d\\x22\\x71\\xa2\\xf3\\xb3\\x14\\x47\\xe4\\x74\\xd7\\xc6\\x57\\x61\\x2d\\xca\\x40\\xea\\x0f\\xa1\\x2d\\x08\\xea\\x3e\\xec\\x1a\\x6e\\x30\\x15\\x76\\xc6\\x90\\xd3\\x53\\x01\\xd2\\xe9\\x46\\x73\\x2c\\x34\\x25\\x2f\\x88\\xe5\\x30\\xe9\\x7d\\x48\\x5e\\xf5\\x57\\x3d\\x90\\x01\\x83\\xf1\\x07\\x43\\x20\\x7f\\x1d\\x1f\\x04\\x44\\xa1\\xa9\\x8f\\x47\\xc2\\x17\\x84\\xc3\\x90\\xb1\\x26\\xa9\\x14\\xb8\\x1a\\xf8\\x7e\\x88\\x1e\\xff\\x87\\x52\\x41\\xd1\\xb0\\x54\\xa4\\x72\\x35\\x54\\x99\\x68\\x96\\xc1\\x04\\xa0\\x38\\x50\\x09\\xc8\\xad\\x2c\\x71\\xd7\\x6a\\x52\\x3a\\x13\\x91\\x5a\\x7e\\x74\\x06\\xd6\\xe0\\x7a\\x74\\x7e\\x0f\\xf0\\x64\\x25\\x38\\x40\\x4e\\x57\\x0c\\x30\\xf9\\x25\\x60\\x3d\\x8d\\x24\\x99\\xae\\x22\\xdd\\x31\\xc7\\x1c\\x52\\xc3\\xce\\x84\\x88\\x76\\x27\\x74\\x73\\xa6\\x8f\\xb9\\x00\\x9c\\xc8\\xbd\\x4d\\xd6\\x40\\x74\\x81\\xd0\\xf3\\x43\\x90\\xad\\x01\\xe6\\x24\\x55\\xb2\\x5d\\x9b\\x8e\\x59\\x03\\x09\\x06\\x2e\\xf2\\x52\\x79\\xf6\\xc9\\x1e\\xbc\\x9d\\xd4\\x45\\x22\\xe3\\x2e\\xd8\\x49\\x01\\x3b\\xac\\x23\\x1f\\x77\\x42\\xe7\\x71\\x85\\x71\\x4d\\x38\\x05\\x3a\\xc4\\xab\\xac\\x45\\xc8\\x30\\xc7\\x0c\\x17\\x23\\x5a\\x0f\\x2f\\x68\\x69\\xc4\\x91\\xf5\\x84\\x52\\xea\\x07\\x50\\xf9\\x5b\\xb6\\xb8\\x88\\x41\\xea\\x0a\\x30\\xd9\\xd6\\x8d\\x44\\x32\\x97\\x90\\x4f\\x24\\xc2\\xeb\\x5a\\xa7\\xe4\\x17\\xdf\\xa1\\xb9\\x1d\\xe5\\x0c\\xea\\x7c\\x84\\x3b\\x96\\x15\\xbf\\xb0\\x68\\x26\\xc5\\xba\\x4c\\x48\\xa3\\x01\\x9c\\x91\\x8a\\xc6\\xce\\xbe\\x27\\xe0\\x98\\x40\\xff\\x2b\\x8d\\xd8\\x10\\xb2\\x73\\x56\\x7e\\x78\\x18\\x21\\x1c\\x7a\\x18\\xc4\\x34\\xab\\x8f\\xb2\\x6f\\x94\\xc0\\x49\\xe6\\x43\\x93\\xcd\\x85\\xbc\\xfb\\x25\\xd3\\x32\\xc3\\x7a\\xea\\x66\\xf8\\x53\\x81\\x7d\\x0f\\x6d\\xb9\\xfe\\x31\\x46\\xcf\\x99\\x5c\\xb4\\x3d\\x9c\\xca\\x6c\\x2e\\x14\\xd2\\x1c\\xdc\\x87\\x29\\x7b\\xbe\\x77\\x40\\x40\\xaf\\xa0\\xf2\\xae\\xe9\\x2e\\xce\\xc3\\x5d\\xca\\x35\\x06\\xef\\x64\\xab\\x10\\x5c\\xe2\\x9a\\x69\\x5e\\xb9\\x01\\x6c\\x2f\\x25\\x66\\x11\\xce\\x8f\\x0b\\x17\\x1e\\xf3\\x7a\\x5f\\x0b\\xaa\\x42\\x97\\x47\\x01\\x6f\\xbb\\xae\\xe5\\x0d\\xd3\\xc6\\x41\\xc6\\xe3\\x1f\\xe3\\x88\\xf3\\x01\\x83\\x28\\x1e\\x9b\\xb6\\x8c\\x0b\\xec\\x2b\\x60\\xe2\\x70\\x86\\x06\\x36\\x20\\xbb\\xfe\\xc4\\xfa\\x87\\x2f\\x07\\x8d\\x9f\\x55\\x44\\xed\\x88\\x0b\\x8f\\x2e\\x62\\x06\\xd8\\x6b\\x16\\xca\\x31\\x99\\x2e\\x07\\xd2\\x05\\x7e\\xd4\\x9b\\x3e\\xc8\\x30\\xd4\\x5c\\x60\\x82\\x8f\\x10\\xc2\\x4b\\xc9\\xdc\\xce\\xeb\\x6f\\x09\\x02\\x2f\\xfb\\x5f\\xea\\xbd\\x09\\x81\\x57\\x7e\\xb1\\xe9\\x81\\x81\\x5b\\xe5\\x20\\x05\\xe3\\x29\\x34\\x65\\x91\\xa9\\xf1\\x5d\\x3c\\xeb\\x1f\\xeb\\x6e\\x4c\\xdf\\xed\\xbd\\xf1\\x2c\\x4f\\xe5\\x8f\\x60\\x07\\x5b\\x92\\x33\\x57\\x8e\\x27\\x46\\x64\\x3a\\x81\\xc1\\xfd\\x94\\x19\\xd6\\x08\\x48\\x1a\\xf1\\x1c\\xa2\\x08\\x44\\x3f\\x85\\x08\\x67\\x66\\x36\\xb3\\x71\\x90\\xe4\\x0f\\xcb\\x5e\\xef\\x70\\x79\\x17\\x68\\xe6\\x9d\\x53\\x16\\xbd\\xa7\\x44\\x9e\\xa3\\xa7\\x70\\xef\\x2c\\xe0\\x0c\\x58\\x64\\x01\\xd6\\xf3\\xd1\\xf9\\xd1\\x28\\xdc\\xa6\\x30\\x4a\\xca\\x43\\x94\\x98\\x99\\x5c\\xe0\\x75\\x34\\x3e\\x63\\x8f\\xd2\\x85\\x50\\xa0\\x15\\x44\\x78\\x3a\\xa2\\xe1\\xac\\xae\\xc5\\x20\\x80\\xab\\xaa\\x6d\\xce\\x7a\\x07\\x28\\x2c\\x28\\x0c\\xed\\x01\\x12\\x43\\xae\\x5c\\x7c\\x80\\x9b\\xb3\\x82\\x93\\xad\\x98\\xbf\\xef\\xc4\\x33\\x19\\x11\\xa4\\xfb\\x1a\\x2f\\xe9\\x46\\x86\\xb3\\x9d\\x8d\\x30\\xc0\\x14\\x15\\x19\\x31\\x7c\\x0a\\x56\\x07\\x00\\xee\\x54\\xcf\\x9b\\x64\\x31\\x62\\x8b\\x98\\x42\\x92\\x27\\xe7\\x4a\\x18\\x36\\x94\\x25\\x05\\x7e\\x1a\\xad\\xe5\\xa4\\xc8\\x88\\x7f\\xaa\\x20\\x99\\xfc\\xc0\\xf4\\x7f\\x08\\x8b\\xd5\\x09\\x2a\\x0c\\x01\\x78\\x5a\\xd0\\x69\\xcf\\x7a\\x67\\xf8\\xce\\x46\\xe6\\x3d\\x88\\xed\\xd9\\x8f\\x11\\x77\\x79\\x14\\xed\\x3d\\xe6\\x48\\x9e\\x9a\\xe9\\x90\\x3c\\x84\\x23\\x8f\\xe5\\x85\\xd7\\xf5\\xed\\x9c\\xa9\\x31\\xea\\x04\\x52\\x1c\\x2e\\x45\\x7a\\x00\\x85\\x25\\x1c\\xd1\\x7d\\xa5\\xca\\x64\\x2c\\xee\\x4c\\xc8\\x4b\\x46\\x47\\x4f\\xb4\\xec\\x34\\x67\\x78\\x03\\xd3\\x00\\x16\\xb2\\x32\\x3b\\x5c\\x86\\xb2\\xb9\\x68\\xad\\x02\\x56\\x05\\x22\\x5a\\x10\\x8a\\xe5\\xd1\\xc7\\x26\\x1a\\x92\\x9a\\x8c\\x73\\x1a\\x13\\xdd\\x8e\\xb7\\x6b\\xc9\\x8b\\x81\\xe4\\xba\\xac\\x6c\\x09\\x5e\\x17\\xbf\\x59\\x5c\\x04\\x0a\\x6c\\x12\\x0d\\x47\\x05\\x97\\x26\\xce\\x93\\xe4\\x6e\\x04\\x0a\\x41\\xfa\\x85\\x64\\x96\\x7a\\x46\\x38\\x3a\\xbc\\x51\\x2b\\xe5\\x87\\x9f\\xc3\\xe2\\x61\\x49\\x1b\\x12\\xfb\\x68\\xd2\\xa8\\x0f\\x52\\x5f\\x9a\\xf6\\xed\\x72\\x49\\x6e\\x16\\x1c\\xe2\\x44\\x6e\\xb1\\x69\\xac\\x52\\x8c\\x8b\\x39\\x0e\\x20\\xa9\\x27\\x7c\\xe3\\x28\\x0d\\x11\\xce\\xe1\\x94\\x48\\xed\\x83\\xea\\x4b\\x38\\x37\\xb2\\xb8\\x21\\xed\\x74\\x45\\x6d\\x9b\\xd9\\x05\\xcb\\x48\\x8b\\xdf\\x46\\xeb\\xb0\\xec\\x2f\\x52\\xb9\\x08\\x11\\xe4\\xd7\\x1e\\x58\\x84\\x44\\x45\\x9f\\x2a\\x32\\x28\\x90\\x56\\xa7\\xa6\\x50\\xb8\\x73\\x93\\x16\\x00\\x18\\x5b\\x0d\\x29\\x01\\x38\\x18\\xaa\\x3e\\xa2\\xd2\\x20\\x34\\xdb\\x80\\xd5\\x20\\x21\\x7c\\xa5\\x9c\\x1c\\x80\\x2e\\x76\\x91\\x68\\xb8\\x49\\x9c\\x13\\x62\\x4c\\x26\\x36\\xe1\\xcf\\x16\\x6d\\x14\\x63\\x64\\xec\\x18\\xfb\\x6c\\x23\\x49\\x3a\\x69\\x22\\x3d\\xc0\\x7f\\x8d\\xb9\\xdb\\x49\\x27\\x94\\x62\\x39\\x62\\xf3\\x30\\xbe\\x46\\x2c\\x61\\x21\\x8f\\x95\\xee\\xe9\\xf2\\x81\\x29\\x8f\\x63\\x2e\\x0b\\x6f\\xc2\\x16\\x01\\xd3\\x22\\x5a\\xc9\\x17\\x4e\\xf8\\x31\\x75\\x6e\\x9f\\x14\\x6e\\xc1\\x98\\x8a\\xe7\\x22\\xe1\\x8c\\x1e\\x17\\x87\\x70\\x99\\xca\\x1d\\x83\\x8d\\x8c\\x9a\\x30\\xd9\\x0c\\x51\\x17\\xa6\\x71\\x27\\xd1\\x43\\x40\\x12\\xcc\\x70\\xa7\\xd8\\x02\\xf5\\xf2\\xa2\\x94\\xde\\x2f\\x75\\xc0\\xea\\xb8\\xbe\\xb9\\x64\\x10\\x83\\xa5\\x11\\xc2\\x72\\x4a\\xbb\\x5f\\x1e\\x37\\xc9\\x44\\x56\\x85\\x1c\\x41\\x26\\x99\\xe3\\x04\\x3f\\xfc\\xd6\\xc5\\x51\\x49\\xfd\\x78\\x48\\x44\\x80\\x89\\x10\\x30\\x32\\xca\\xc4\\x46\\xe2\\x43\\x58\\x88\\x22\\xa4\\x50\\xf6\\x20\\x6d\\xb9\\xf1\\xa7\\x19\\x49\\x00\\xf9\\x42\\x58\\x89\\x5f\\x95\\xae\\x49\\x73\\x66\\x10\\x25\\x4a\\x01\\xa5\\x0e\\x0c\\x2a\\x60\\x29\\xcc\\x94\\xd1\\xce\\x66\\xcb\\x33\\xbd\\xf7\\xae\\xda\\x1a\\x6d\\x24\\x1c\\x85\\x10\\xff\\x5d\\x41\\x21\\x70\\xdf\\x80\\xa9\\xd0\\x98\\x61\\xd6\\xb9\\x38\\x3a\\x00\\xbd\\x10\\x26\\x72\\xb3\\x78\\xbe\\x53\\xd9\\xf4\\x71\\x30\\x66\\x72\\x4a\\x31\\x7a\\x15\\xbc\\x6a\\x89\\x60\\x7b\\xa4\\xb2\\x89\\x1c\\x61\\xe8\\x4d\\x61\\xe5\\x0b\\x99\\xfa\\x4c\\xbf\\x7c\\x21\\x60\\x2d\\x88\\x62\\xf4\\xe3\\xb0\\xc4\\x3d\\xad\\x39\\x82\\x02\\xce\\xc8\\xc6\\xe0\\xf6\\xda\\x79\\x1c\\x15\\x46\\xf1\\xa4\\xfc\\xcb\\x51\\xda\\x1a\\x15\\x7c\\x3c\\xb7\\x01\\xd3\\x75\\xe0\\x59\\xbb\\x7b\\x31\\xd2\\xfb\\x6c\\x05\\xbc\\x5b\\x8c\\x72\\x00\\xa1\\x0f\\x4a\\x2a\\x7e\\xd1\\xdc\\x68\\x93\\x81\\x9a\\x9f\\xce\\xca\\x72\\x49\\xe6\\xa8\\xe2\\xf7\\xb6\\xcd\\x5d\\x5a\\x36\\xcd\\x2c\\x3d\\xb4\\x1c\\xe2\\x4a\\xc0\\xf7\\x51\\x8f\\x0a\\x5f\\xd8\\x4a\\x69\\x58\\xcb\\xc8\\x11\\x91\\xf8\\xd2\\xa4\\x3f\\x35\\xf3\\xfb\\x67\\x1f\\x12\\x2d\\xca\\x48\\xaf\\x97\\xb5\\x4f\\x40\\x0b\\x42\\x56\\x58\\x13\\x86\\x3e\\x9d\\xf6\\xf5\\x98\\x57\\x29\\x24\\xe4\\xde\\x3b\\x9a\\xf3\\xe0\\x52\\x6d\\x0e\\xcd\\x87\\x59\\x1b\\xdc\\x51\\x91\\xec\\xbc\\x6e\\x8f\\xcc\\xca\\x62\\x9f\\x2e\\x15\\x67\\x07\\xd7\\xa5\\xf2\\xb6\\x1b\\x40\\xb8\\xdb\\xf4\\x14\\xbd\\x72\\xd9\\xbc\\x73\\x00\\xe8\\x0a\\x81\\x2f\\xbc\\x7b\\x82\\xdf\\x33\\xd7\\xa7\\x1b\\xa5\\x79\\xfb\\xa9\\x8e\\x89\\x9a\\xda\\x04\\x17\\x76\\x99\\x06\\x0e\\xbf\\xfe\\x1c\\x69\\xf8\\xee\\xd0\\x63\\x3e\\x0a\\x8f\\x55\\x31\\x8d\\x6a\\x9a\\x9a\\x0b\\x89\\x02\\xde\\x6c\\x9c\\x6d\\xc4\\x16\\xd2\\x1c\\x17\\xe0\\x1b\\x60\\xab\\x41\\xb0\\xa2\\xb3\\xd4\\x68\\x4a\\x8d\\xf5\\x11\\x4e\\x2f\\x2a\\xc0\\x54\\x10\\xc4\\x9b\\xec\\x5b\\x46\\x56\\xd4\\x19\\x75\\x07\\x2c\\xa8\\x3f\\x15\\x3a\\xd5\\x9e\\x0d\\xfe\\xc8\\x18\\x7a\\x08\\xa7\\x4f\\x39\\xb0\\x03\\x9d\\xa1\\xf3\\xfb\\x9a\\xef\\x4e\\xc3\\xf4\\x12\\x94\\xf0\\xcd\\x80\\xf0\\xfc\\x71\\xae\\x51\\xf1\\x73\\x1a\\x45\\xdd\\x89\\xe9\\x3b\\xec\\x85\\x44\\x3d\\xf6\\x94\\x49\\x0c\\xcd\\xa9\\xe4\\x9c\\xa5\\x90\\xd4\\x16\\xbe\\x2b\\x59\\x41\\x62\\x10\\x78\\x23\\x28\\x89\\x5a\\x32\\xac\\xcd\\x59\\xe8\\xb8\\x94\\x1a\\xca\\x5c\\x47\\xbb\\xaa\\xf2\\xaf\\x74\\xd9\\x67\\xa6\\x04\\xb3\\x93\\xf7\\xb5\\xad\\x7d\\xf3\\xe3\\xe0\\xb8\\x42\\xc9\\x7f\\x3a\\xc8\\x65\\x78\\x2f\\x23\\x68\\x7b\\x35\\xae\\x0f\\xe1\\xc5\\xd5\\x21\\x8a\\xbf\\x14\\xd5\\x10\\x4b\\xd2\\x6a\\xb1\\x00\\x95\\x90\\xf4\\x80\\x91\\xad\\x50\\x0c\\xbf\\x98\\x92\\x4f\\x39\\x6e\\x32\\xf1\\xfd\\xb9\\x55\\x67\\xd6\\xd5\\x6e\\x5e\\x95\\x18\\x5e\\x97\\x0d\\x0c\\xbc\\xf0\\x7a\\xc5\\xfc\\x48\\x77\\xb5\\xff\\x0e\\x9b\\xdc\\x3e\\xa0\\xd8\\x4b\\x4c\\x25\\xa7\\x9b\\x08\\xe5\\xb4\\x5e\\x5c\\xaa\\x59\\x7a\\x97\\x45\\x72\\xe8\\x03\\xb6\\x84\\xb4\\xd8\\x24\\xab\\xb9\\x0f\\x8c\\xd7\\x92\\xfb\\x71\\x0b\\xc8\\x1b\\xc8\\x85\\xf0\\xc0\\xa2\\x71\\xea\\x32\\x35\\x5a\\xb7\\x9e\\x9d\\x4a\\x8e\\xac\\x95\\xdd\\xdd\\x33\\xdd\\x04\\x2c\\xc0\\x90\\x5d\\xf7\\xb2\\x2d\\xb6\\x79\\xb4\\xd8\\x5a\\xda\\x32\\xee\\x39\\x46\\xf6\\xa7\\xab\\xd0\\x7e\\x88\\x22\\x1f\\x66\\x37\\x25\\xc5\\x4a\\x92\\xc3\\x34\\x05\\x3b\\x91\\x2d\\xc0\\x17\\x19\\x2d\\x57\\xc0\\x74\\x96\\x16\\x2a\\x3b\\x55\\xbb\\x75\\x8a\\xf2\\xb8\\x0a\\xd3\\x4f\\x3b\\xc5\\x59\\x56\\x9a\\x38\\x4f\\x2b\\x98\\x97\\x27\\x6c\\x89\\x25\\x77\\x6c\\x0a\\xa5\\xee\\x61\\x71\\x47\\x77\\xb3\\x53\\xa5\\xb8\\x8d\\x1d\\x19\\x51\\x86\\xaf\\x97\\xb0\\x36\\x99\\xec\\x4d\\x28\\x42\\x9e\\x69\\xfd\\x97\\xfb\\xd6\\xc3\\x2a\\x36\\x39\\xc7\\x61\\xe8\\x6b\\x20\\xe1\\xd5\\x22\\x48\\x6d\\x4b\\xd9\\x59\\x8d\\x58\\x50\\x23\\xf2\\xd4\\xf0\\x8c\\x8d\\xc7\\xb6\\x39\\xb3\\x4c\\x8c\\x0c\\x12\\x5c\\x00\\xb1\\xcf\\x5c\\xb2\\x6b\\xab\\xb3\\x04\\x79\\xe5\\xbf\\x36\\x70\\xe0\\xad\\x0b\\x99\\x25\\x7c\\xe9\\x48\\x55\\x41\\x24\\xd4\\x20\\x84\\x20\\x08\\x47\\xae\\x05\\xd6\\x33\\xda\\xa7\\x98\\xbe\\x1b\\xa7\\x20\\xcc\\xc5\\x72\\x68\\xc9\\xe7\\x9e\\x5c\\x35\\x8f\\x57\\x55\\x29\\x87\\x87\\x68\\x74\\xbd\\x99\\xa9\\x18\\xd5\\x38\\xab\\x75\\x39\\x21\\xcf\\x2a\\x4e\\x06\\xb3\\x02\\xd3\\xa2\\x69\\x72\\x52\\x19\\x84\\x3b\\x04\\xb2\\xac\\x4c\\x02\\x20\\x91\\x94\\x43\\x9a\\x32\\x77\\xdc\\x77\\x60\\x86\\xad\\xac\\x4e\\xe9\\x2c\\x4a\\x65\\xe3\\xae\\x89\\x0d\\x66\\xd8\\xaf\\x30\\x32\\x94\\x98\\xc9\\x58\\xac\\xb0\\xa1\\xb0\\x69\\x0b\\xbb\\x24\\xfb\\xff\\x23\\x03\\x10\\x81\\xfd\\xd0\\xd7\\xfc\\x70\\x13\\x11\\x72\\x11\\x2b\\x45\\xfa\\x65\\xcd\\x63\\xd9\\xa3\\x8d\\xcf\\xfa\\x1b\\x01\\x80\\x48\\x01\\xd1\\x41\\x7a\\xde\\x5b\\x92\\xe2\\xae\\x2c\\x91\\x1a\\x30\\xc2\\xba\\xc9\\xc3\\x95\\x30\\x73\\x47\\xe1\\x66\\xaa\\xdf\\x10\\x25\\x9e\\x05\\xf4\\x8c\\x4a\\x79\\x28\\x9c\\x6d\\x0a\\x27\\x1b\\x34\\xc0\\x4c\\xcf\\x3c\\x21\\xab\\x9f\\x40\\x10\\x22\\x39\\xc3\\x0e\\x94\\x05\\x82\\x3e\\xcf\\x89\\x4a\\xf7\\x4a\\x67\\xc0\\x59\\x39\\xa6\\xdd\\x13\\xd6\\xa6\\x84\\x6d\\xca\\x7f\\xd6\\xb1\\x09\\x84\\x46\\x5a\\xee\\xe4\\x98\\x50\\x03\\x81\\xed\\x82\\x55\\x13\\x2d\\xd6\\x60\\xad\\xae\\x36\\x70\\xd8\\xa4\\x0a\\x10\\x84\\x12\\xc8\\xfd\\xb7\\x10\\x3b\\xbf\\x8a\\x24\\x14\\xcd\\x6f\\xb8\\x45\\x02\\xd6\\xd1\\x0e\\x56\\x93\\x90\\xb2\\xa5\\x95\\xb7\\x3a\\x33\\xc1\\xa4\\xd7\\x53\\xa2\\x47\\x88\\x91\\xbb\\x8a\\x14\\x18\\x0c\\xa2\\x98\\x7e\\x9b\\x81\\x94\\xdd\\x04\\x33\\x87\\xc5\\x60\\x50\\xfe\\x31\\x2c\\x8d\\x53\\x71\\xf0\\xbe\\x36\\x6c\\x99\\xb1\\x5a\\x7c\\x43\\x89\\x2b\\xa3\\xf6\\x58\\x48\\x15\\x6d\\x6e\\xa5\\xb2\\x10\\x48\\x88\\x6e\\x1c\\x49\\x5a\\xa8\\x56\\x43\\x1a\\xce\\xca\\x99\\xb9\\xb3\\x8d\\xf4\\x89\\xa2\\x99\\x39\\x1b\\xba\\x4a\\x42\\x18\\xd0\\xd5\\x90\\x99\\x12\\xf8\\x31\\x4a\\x02\\x35\\xf4\\x6a\\xbb\\xa3\\xa6\\x45\\xe8\\xad\\xc9\\x96\\x29\\x92\\x42\\x6b\\x92\\x9e\\xff\\xf1\\x7d\\xc9\\x72\\xfc\\xe8\\xd2\\x32\\x88\\xdf\\xb9\\x75\\x5a\\x38\\x91\\x1c\\xc2\\x24\\x25\\xa3\\x3e\\x90\\x0c\\x1e\\x8d\\x10\\xb4\\xb4\\x7b\\x5d\\x98\\xee\\x3f\\x08\\x65\\xb6\\x59\\x97\\x73\\x16\\x97\\xde\\x91\\xb2\\xf0\\x4c\\x03\\xcd\\xcd\\x8a\\xb2\\xa1\\xc5\\x6f\\xa4\\xf6\\xad\\x5e\\x57\\xc2\\xb1\\x1c\\x3a\\xe2\\x6e\\xcc\\x99\\x12\\x42\\xf5\\x7d\\x1d\\xfb\\xad\\x43\\x25\\xc1\\x27\\x16\\x03\\x5f\\x30\\x0e\\xbc\\x21\\xa6\\xae\\xf7\\xf4\\x02\\xc0\\x88\\xa5\\x86\\xc9\\x68\\x30\\x47\\x90\\x0b\\x73\\xc0\\x14\\x92\\x9b\\x11\\x28\\x20\\xa2\\x1e\\x20\\x66\\xec\\x21\\xa9\\xdc\\x7f\\xde\\x71\\x6a\\x44\\x1b\\x07\\x38\\xad\\xae\\x6c\\x22\\x25\\x34\\x5a\\xef\\x33\\x4c\\x9a\\xae\\x99\\x4b\\x25\\x3a\\xb7\\x45\\xa9\\x89\\x1d\\x84\\x87\\x28\\xe8\\xf8\\x44\\xf2\\x22\\x69\\x61\\xe9\\x70\\xf0\\x02\\x0c\\x5e\\x61\\x83\\x12\\xc6\\x15\\xc6\\x28\\x28\\xc6\\x8c\\x20\\x55\\xe8\\xde\\xc6\\x18\\xa4\\xcd\\xb1\\x8d\\xb5\\x3e\\x38\\x37\\x43\\x40\\x92\\xf1\\x29\\x7a\\x6c\\x3e\\xc3\\xc9\\xc3\\x1f\\x00\\x84\\xb2\\x17\\x58\\x3c\\x3e\\xa1\\x45\\x6b\\x05\\x9a\\x86\\x88\\x10\\x0f\\xda\\x1e\\x18\\x4b\\x0c\\xc3\\x01\\xc2\\x3a\\x2c\\xb5\\x16\\x25\\xc2\\x5a\\x8d\\xb6\\x86\\x5d\\x98\\xaa\\x22\\x1d\\xa7\\xee\\x3b\\x36\\x95\\x3e\\xd1\\xce\\xbe\\x95\\x4d\\x4f\\xbd\\x86\\x61\\xd7\\x79\\x1e\\xd2\\xde\\x65\\xc9\\x5c\\x9b\\xc2\\xab\\xa8\\x83\\x02\\x18\\xe9\\xd7\\x24\\x23\\xa1\\x8a\\x5c\\xf9\\x2f\\xd3\\xbc\\x71\\xb8\\xce\\x54\\xf4\\xd5\\x38\\x82\\x29\\x9c\\x51\\x53\\x99\\x61\\x8f\\x95\\xf9\\x08\\xc4\\xb8\\x49\\xd0\\x68\\x48\\x6a\\xea\\xa0\\x43\\x2f\\x39\\xb1\\x09\\x06\\xd0\\x47\\x39\\x1c\\xa8\\x93\\x20\\xe2\\x0f\\x25\\x8c\\x4b\\x1b\\x20\\x52\\x69\\xc4\\x0e\\x88\\x8b\\x63\\xdc\\xa1\\xd0\\x68\\x05\\x08\\x6c\\x68\\x18\\x54\\x48\\x9a\\x82\\x24\\x25\\xb0\\x8b\\xd0\\xc1\\x44\\x9c\\x89\\x8c\\x70\\xc7\\x88\\x1d\\xa1\\x89\\x73\\x47\\x84\\x95\\xeb\\x18\\xe1\\xed\\x22\\xf8\\x5b\\xb9\\xad\\x27\\x3b\\xe5\\x47\\x82\\xab\\xe1\\xfa\\x32\\x0e\\xb8\\x57\\xa5\\x09\\x8a\\xc0\\x4c\\x58\\x1c\\x2c\\x23\\x92\\xef\\x14\\xf5\\xfa\\xc1\\x85\\xa5\\x00\\x66\\xa1\\xfd\\x91\\xc1\\xce\\x1e\\xf3\\x56\\x21\\x79\\x2e\\xcb\\x4d\\x58\\x5a\\x01\\x31\\xc0\\xa9\\x04\\x3e\\x4d\\xf7\\x4b\\x28\\x12\\x91\\xdc\\xbd\\x6b\\x4b\\x39\\xb5\\xbd\\x3a\\xac\\x72\\xa9\\x69\\x33\\x7b\\x47\\x43\\x23\\xdf\\xf9\\xb0\\xe2\\x8a\\x17\\xb0\\xc8\\x92\\x60\\x1f\\xa0\\xea\\xb8\\xfa\\xa7\\x41\\xcb\\x0f\\x7d\\x88\\x0b\\xb4\\xa6\\x16\\x89\\xaa\\xe8\\xe2\\x02\\xb6\\x40\\x87\\x32\\x7d\\x0a\\x1c\\x85\\xa1\\x9b\\x51\\xab\\x46\\x08\\x36\\x01\\x4a\\x05\\x90\\x87\\xd8\\x00\\xea\\x22\\xcf\\x66\\x29\\x26\\x89\\xe0\\xa0\\x7e\\x8e\\x0f\\xe6\\x8a\\x67\\x8b\\xe2\\xeb\\xbb\\x2d\\x80\\x7b\\x0a\\x19\\x42\\x81\\xf8\\x2a\\x51\\x6c\\xc8\\x3c\\xee\\x0e\\x53\\xf3\\x37\\x76\\x68\\x44\\xdd\\x00\\xb2\\x12\\x3e\\x2c\\x38\\x2b\\x3d\\x86\\xc7\\x9f\\xf2\\x84\\x37\\x41\\xc6\\xb0\\xdb\\xec\\x61\\x80\\xc4\\x73\\xf0\\xa4\\xf8\\xd0\\xb1\\x12\\xcb\\x2e\\x0d\\x8f\\xb1\\xe9\\xa5\\xf4\\xcd\\x21\\xdc\\xc7\\xa7\\x31\\x60\\x2d\\x8d\\x4d\\x87\\x0b\\x01\\x09\\x0d\\xf4\\xa4\\xfa\\x2c\\x0f\\xf5\\xc1\\x52\\x49\\x7d\\x9b\\xcf\\xb4\\x04\\xc8\\x0c\\x72\\x60\\xe1\\x76\\xdd\\xa6\\xd5\\x0f\\xd2\\xe3\\x64\\xfa\\xcd\\x79\\xb8\\x7c\\xdb\\xc5\\x91\\x28\\xd3\\xdd\\x86\\x4c\\x8e\\x69\\x2e\\xf2\\x50\\x14\\x86\\x5d\\xc8\\xc9\\x94\\xd1\\x45\\x11\\x2a\\x3d\\x28\\x6a\\x7c\\x74\\x88\\xda\\xc4\\xb2\\x4a\\x44\\x8f\\x09\\x70\\x52\\x24\\x63\\x83\\x54\\x2b\\x44\\x12\\x72\\xa2\\x06\\x1c\\xe1\\x86\\xc5\\x06\\x89\\xcc\\x63\\xec\\xa2\\x36\\x2a\\x28\\x0f\\x1a\\x80\\x12\\x95\\x2f\\x92\\x74\\x6b\\xc4\\x17\\x33\\xf0\\x59\\x4b\\x63\\xca\\x87\\x20\\x76\\x0f\\x6f\\xae\\xc7\\xed\\xc2\\x82\\x89\\xb6\\xb2\\x25\\x61\\x37\\xc2\\x18\\x3b\\xbc\\x47\\x9d\\x1f\\x30\\x22\\x30\\xfd\\xf4\\x97\\x4b\\x31\\xb6\\x15\\x9a\\x06\\x29\\x74\\xf1\\x9a\\x8a\\xaa\\x4a\\x40\\x50\\x8e\\x73\\xb1\\xa1\\xa0\\xfb\\x6b\\x40\\xec\\xae\\x9b\\xd0\\xb8\\xd3\\xee\\x72\\x83\\xe7\\x7e\\xdd\\x9c\\x3b\\xc7\\x15\\xcd\\x6c\\xb6\\x73\\x83\\xf1\\x4d\\xdd\\x0a\\xb3\\xda\\x4d\\x9c\\x64\\xec\\x0f\\xf8\\xc0\\x53\\x1d\\x67\\xa1\\xf1\\x0c\\xa7\\x8f\\xf6\\x46\\xae\\x59\\xd6\\xec\\xdc\\x92\\xcb\\x5f\\xfb\\x22\\x5f\\xae\\x63\\xbb\\xbb\\xff\\xeb\\x7e\\x15\\xda\\xb6\\x19\\x39\\xbb\\x92\\xfd\\x66\\xa8\\x06\\xaa\\x1c\\xd0\\xcf\\x32\\xcf\\xc2\\x78\\x16\\x7e\\x80\\xd6\\x19\\x43\\x03\\xaa\\x24\\x33\\x77\\x3f\\x1b\\x8f\\x7c\\x24\\x1e\\xb2\\x92\\x6c\\x8a\\x25\\x12\\x48\\x73\\x7c\\xc1\\x7f\\x1b\\xed\\x3d\\x7f\\xf0\\x91\\xf1\\x01\\x37\\x86\\x0d\\xa0\\x49\\x97\\xbc\\xe1\\xd5\\xc1\\x4f\\x90\\xb0\\xc8\\xe1\\xaa\\x10\\x55\\x48\\x49\\x0d\\x49\\xae\\x24\\xde\\x90\\x45\\x98\\xdf\\x60\\xc2\\x29\\x72\\x11\\x39\\x4f\\x55\\x66\\x92\\xc3\\x16\\x53\\x34\\x2b\\xa8\\xbc\\x71\\xc9\\x76\\x4a\\xdf\\x1f\\x4c\\x90\\xef\\x5f\\x2e\\x93\\xcf\\x89\\x30\\xd1\\xa5\\x73\\x88\\x57\\x0d\\xa0\\xad\\x0a\\xc0\\xbb\\x28\\x86\\xd4\\x99\\x6d\\xd9\\x63\\xce\\xb7\\xf8\\xe7\\x4a\\xf5\\xe1\\x17\\x12\\xd0\\x4f\\x78\\xf2\\xbd\\xb8\\x12\\xaa\\xd7\\xea\\x8a\\xb1\\xc3\\x91\\xe6\\x7b\\xc0\\x66\\xab\\x57\\x86\\x0e\\x82\\xa8\\x1d\\x76\\xa9\\x58\\x1c\\x3a\\x11\\x87\\x9a\\xca\\xc8\\xd3\\x9a\\x9c\\x59\\x1c\\x4c\\x48\\xa4\\x06\\x6e\\x16\\x08\\x68\\x42\\x68\\xc6\\x8e\\x87\\xe2\\x0d\\x42\\x30\\x5c\\xe4\\xf6\\x92\\x91\\x34\\x3b\\x93\\x57\\xd7\\xda\\x8e\\x2f\\x6c\\x6c\\x51\\x39\\x37\\xa9\\xa5\\x99\\x23\\x9b\\x5e\\x9c\\x53\\xa0\\x4b\\x88\\x36\\x9a\\xa8\\x07\\x82\\xcf\\x74\\x88\\xf3\\x66\\xcb\\x9f\\xb6\\x4b\\x5a\\x11\\x7b\\x20\\x58\\x97\\xf1\\xcf\\xfa\\xcb\\x18\\x74\\xf7\\xfc\\xab\\x5e\\xcc\\x19\\xaa\\x52\\x19\\x37\\xfe\\x14\\x91\\x30\\x68\\x39\\x1a\\x99\\x8e\\x71\\x10\\x1d\\x3e\\xdf\\x25\\x89\\x76\\xd8\\xb5\\x22\\x28\\x08\\xae\\x61\\x05\\xc4\\x8a\\x25\\x16\\x59\\x2c\\x59\\xe2\\xc7\\xe5\\xc0\\x68\\x62\\x10\\xe4\\x10\\x2b\\x39\\xc5\\x72\\x21\\x82\\xc8\\x9d\\x9c\\x09\\x43\\x33\\x8b\\x2e\\xf4\\xfd\\x59\\xe0\\x0e\\x8e\\x34\\xdf\\xb8\\x0d\\xc9\\xa2\\xfa\\xb5\\x3b\\xb1\\x09\\xbc\\xcd\\x74\\x52\\x74\\x6d\\x62\\x77\\xbe\\x47\\x42\\xc5\\x81\\xf5\\x28\\xd1\\x0c\\x71\\x5f\\x96\\x0b\\xa8\\xc5\\xf4\\x0f\\x82\\xc2\\x8d\\xc0\\xf5\\x2b\\xe8\\xdc\\xec\\xb6\\x43\\x82\\xc4\\x14\\x69\\xe0\\x9a\\xb8\\x8a\\xa9\\x03\\xa9\\xe0\\x8e\\x73\\xa9\\xf5\\xc4\\x76\\xa7\\x47\\x24\\x41\\x20\\x68\\x5f\\xbc\\xa2\\xcc\\x48\\x83\\x8d\\x67\\xc8\\x17\\xf2\\x2d\\x7d\\x5e\\xa0\\xa9\\x12\\xfb\\x68\\x13\\x21\\x8b\\x12\\x63\\xed\\x33\\x04\\x01\\x06\\xf0\\xcb\\x5a\\x61\\x87\\xf4\\x44\\x31\\x78\\xc9\\xa2\\x0b\\xb5\\x7a\\xb6\\x33\\x41\\x7d\\x5f\\x03\\xde\\x32\\xdb\\xa9\\xc9\\x0a\\x0f\\x94\\xe1\\xc6\\x34\\x21\\xe2\\x1e\\x44\\x90\\x29\\x6d\\x09\\x1c\\x83\\x24\\xa1\\x46\\x47\\xfb\\xa6\\x09\\x24\\xc2\\x4f\\x18\\x21\\x05\\x28\\x31\\xd6\\x33\\x1e\\x08\\xeb\\xf4\\xfd\\xea\\xfd\\xbb\\x40\\xd7\\x76\\xb8\\x91\\x2a\\x29\\x9c\\xce\\xcd\\xf1\\xd0\\x91\\x4f\\x86\\xcb\\x61\\x75\\x44\\x89\\x24\\xdc\\x5d\\xb4\\x1e\\xc9\\x5a\\xab\\xf1\\x1f\\x29\\x5b\\x14\\xb8\\xda\\xb8\\x20\\xaa\\x10\\xd6\\x82\\xbc\\x08\\x3d\\xb3\\xe2\\xf9\\xd2\\x26\\x37\\x9d\\xa8\\x64\\x6e\\xa5\\xf4\\x39\\x83\\xaf\\xd9\\x41\\x5e\\xdb\\xa7\\x1d\\xc4\\x6b\\x16\\xc1\\xdf\\xd0\\xcc\\x30\\x21\\x9f\\x29\\xc2\\x57\\x03\\x75\\xf4\\x86\\x9b\\x3c\\x10\\x31\\x67\\xbf\\x2c\\xe0\\xcf\\xfe\\x20\\x02\\x5f\\x1d\\x85\\xe3\\x99\\xfe\\x6b\\xb7\\x21\\x6a\\x80\\x8d\\x8c\\x70\\x65\\x8c\\x70\\x81\\x20\\x94\\xf0\\x01\\x21\\xe3\\x6e\\x28\\x5a\\xa6\\x9a\\x24\\x5c\\xbe\\x91\\x4b\\x62\\xa4\\x91\\xb3\\x4d\\x03\\x53\\x3e\\x0b\\xb9\\x0d\\x0e\\x15\\x2e\\x74\\x58\\xb6\\xe4\\xa7\\x86\\x72\\xa0\\xed\\x97\\x6a\\xa3\\x5b\\x0a\\xed\\x9b\\x42\\x0e\\x3b\\xb9\\xf0\\x51\\x04\\x7c\\x0c\\x76\\x27\\x24\\xbf\\xcc\\x5e\\x96\\x20\\x34\\xe1\\xc0\\x35\\xe5\\x14\\x39\\x30\\xfb\\x75\\xc9\\x10\\x95\\x77\\x41\\x81\\x47\\x84\\xb4\\x3e\\x0e\\x70\\x9a\\xdb\\xd2\\x86\\xaa\\x83\\x09\\x42\\x20\\x46\\x19\\x76\\xf0\\x44\\xee\\x62\\xd3\\x44\\xa5\\x64\\xc8\\x61\\x22\\x54\\x22\\xc0\\xc8\\x5d\\xd8\\x0e\\xd1\\x40\\x5d\\x81\\xa5\\x0c\\x3a\\x8e\\x11\\x0c\\xbd\\x8e\\x78\\xd1\\x1f\\xcb\\xd0\\xb3\\xee\\x38\\x00\\x3a\\x0f\\xc8\\x0b\\xff\\x96\\x46\\xc2\\x11\\x63\\x8c\\x44\\x37\\x26\\x93\\x21\\x5e\\x22\\x6f\\xdc\\xc3\\x2f\\xb5\\xa0\\x40\\xe9\\x4d\\x44\\x57\\xed\\xb1\\x29\\x76\\x60\\xd8\\xe7\\xe5\\x0f\\x5b\\xbd\\xd3\\x92\\xf2\\x5e\\x09\\x2e\\x24\\x89\\x2c\\x3d\\x4b\\x9b\\xc7\\xb7\\x4c\\x5a\\x92\\x49\\xff\\xb9\\x55\\xc9\\x8b\\x0a\\x09\\x33\\x02\\x61\\x30\\x17\\x25\\x49\\x66\\x36\\x38\\x34\\xc9\\x03\\x0c\\x56\\xc1\\x4e\\x2c\\xf0\\x19\\x5b\\xf4\\x60\\xde\\x93\\x51\\x59\\xc1\\xa6\\xad\\x23\\x26\\xbd\\x12\\x13\\x99\\x32\\xba\\x50\\x0b\\xac\\x3e\\x88\\x50\\x17\\x7d\\x65\\x6a\\xb8\\x88\\x64\\x7a\\x69\\xa9\\x1f\\x9f\\xb7\\x51\\xd9\\xae\\xa6\\xc3\\x24\\x22\\xe8\\x9c\\xa2\\xd9\\x13\\xdc\\x38\\xa4\\x92\\x07\\x7e\\x96\\x90\\x54\\x89\\xc5\\x64\\x91\\xce\\x0e\\x24\\x6c\\x60\\xd0\\x12\\x74\\x0b\\x21\\x87\\x69\\x31\\x28\\x01\\x00\\x00\\xff\\xff\\xab\\xaa\\xc0\\x6d\\x88\\xe7\\x00\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_eot() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_eot,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.eot\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_svg = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xec\\xfd\\x69\\x93\\x1c\\x49\\x76\\x1e\\x0a\\x7f\\xaf\\x5f\\xe1\\x6a\\xbd\\xaf\\xec\\x6e\\xc9\\xf6\\xb3\\xfb\\x11\\xd9\\xd4\\x1d\\x71\\x46\\xcc\\x91\\xa2\\x38\\x0c\\xd1\\x95\\x92\\xea\\xae\\x18\\x34\\xa6\\x07\\x22\\x1a\\x68\\x02\\xdd\\xb3\\xe8\\x2e\\xbf\\xfd\\xda\\x79\\x3c\\x12\\xdd\\xa8\\xa9\\xac\\x96\\x91\\xe2\\x07\\x1a\\x65\\x30\\x43\\x44\\x65\\x2c\\xee\\xe1\\xcb\\x39\\xcf\\xd9\\xff\\xe4\\x5f\\xfc\\xee\\xeb\\x37\\xed\\x37\\xaf\\xde\\x7f\\x78\\xfd\\xee\\xed\\x17\\x9f\\xd1\\x1f\\xf5\\xcf\\xda\\x87\\x6f\\x5f\\xbc\\xfd\\xf2\\xc5\\x9b\\x77\\x6f\\x5f\\x7d\\xf1\\xd9\\xdb\\x77\\x9f\\xfd\\x8b\\x3f\\xbd\\xfb\\x93\\x7f\\xf2\\xd3\\x5f\\xfc\\xd9\\xfc\\x8f\\x7f\\xf9\\xb3\\xf6\\xe1\\x37\\x5f\\xb5\\xbf\\xfc\\x77\\xff\\x72\\xfb\\xf9\\x9f\\xb5\\xcf\\x4e\\x9f\\x7f\\xfe\\xef\\xe5\\xcf\\x3e\\xff\\xfc\\xa7\\xf3\\xa7\\xed\\xaf\\x2e\\x7f\\xde\\xe8\\x8f\\xe8\\xf3\\xcf\\x7f\\xf6\\x17\\x9f\\xb5\\xcf\\x7e\\xfd\\xed\\xb7\\xdf\\xfc\\xf3\\xcf\\x3f\\xff\\xed\\x6f\\x7f\\xfb\\x47\\xbf\\x95\\x3f\\x7a\\xf7\\xfe\\xab\\xcf\\xff\\xfc\\xfd\\x8b\\x6f\\x7e\\xfd\\xfa\\xe5\\x87\\xcf\\xff\\xea\\xf2\\xe7\\x9f\\xd7\\x8d\\x3f\\x9d\\x3f\\xfd\\xfc\\xc3\\x6f\\xbe\\x22\\xfa\\xa3\\x2f\\xbf\\xfd\\xf2\\xb3\\x3f\\xbd\\xfb\\x93\\x7a\\xf3\\xef\\xbe\\x7e\\xf3\\xf6\\xc3\\x17\\x4f\\x3c\\xce\\xbd\\xf7\\xba\\xbd\\x6e\\xfc\\xf2\\xd5\\xaf\\x3e\\xb4\\x3f\\xbd\\xfb\\x93\\x5f\\xbd\\x7b\\xfb\\x6d\\x7b\\xfd\\xe5\\x17\\x9f\\xfd\\xdb\\x77\\xbf\\x7c\\xf7\\xed\\xbb\\xfb\\x77\\x6f\\xdf\\x7d\\xd6\\x7e\\xfd\\xee\\xfd\\xeb\\xff\\x7c\\x7a\\xf1\\xe5\\x6f\\x4e\\xbf\\xfb\\xe2\\x33\\x62\\x8e\\xcf\\xda\\x9f\\xe2\\xce\\xd3\\xaf\\x5e\\xbc\\x7c\\x75\\xd7\\x5a\\x6b\\xc7\\x5f\\x5f\\xbf\\x7e\\xf3\\xfb\\xeb\\xb3\\xad\\x1e\\x6e\\xdb\\xeb\\xaf\\x7e\\xfd\\xed\\x67\\xb8\\xe7\\xbb\\xb7\\xaf\\xbf\\xfd\\x70\\xfa\\xe6\\xd5\\xfb\\xd3\\xab\\xaf\\xbf\\xf8\\x8c\\xbb\\x8e\\xf5\\xfb\\x37\\x2f\\xde\\xbe\\xfb\\xf0\\xea\\x44\\x5f\\x7c\\xd6\\xdb\\x1f\\xfc\\x5b\\xb7\\xbc\\xf8\\xf0\\xf2\\xd5\\xdb\\x6f\\xbf\\xf8\\x8c\\x49\\x7d\\xfd\\xf2\\xe5\\xab\\xe3\\xa7\\x93\\x99\\x1d\\x37\\xbd\\xf9\\xe6\\xd7\\x2f\\x7e\\xf9\\xea\\xdb\\xd7\\x2f\\xbf\\xf8\\xac\\x7f\\xd6\\x3e\\xff\\xd3\\xbb\\x3f\\xf9\\xea\\xcd\\xef\\xbf\\xf9\\x75\\x35\\xfc\\xf2\\xdd\\x97\\xaf\\xbe\\xf8\\xac\\x7d\\xd6\\xf0\\xcb\\xe9\\xed\\x8b\\xaf\\x5f\\x7d\\xf1\\xd9\\x87\\x6f\\x5e\\xbc\\x7c\\xf5\\x87\\x9f\\x97\\x4f\\x3e\\xfb\\x4f\\x3e\\x7d\\xf6\\xd5\\xef\\x5e\\xbe\\x79\\xf1\\xf5\\x93\\x0f\\x7f\\xf9\\xc5\\x67\\xf7\\x6e\\xda\\x54\\xec\\x6c\\xa2\\x17\\x52\\xf3\\xb3\\x9b\\x5e\\x54\\xec\\xe1\\xde\\x48\\x5b\\xf0\\x5e\\x07\\xea\\xd1\\x4c\\xa2\\x91\\xd0\\xb4\\xcc\\x46\\xe6\\xbb\\x0b\\x8e\\xcd\\x9d\\x1b\\x09\\x4f\\x1f\\x5e\\xb7\\xd7\\x41\\xc6\\xfa\\xd5\\x70\\xf3\\x69\\xec\\xe6\\xbd\\x9d\\xc6\\x7a\\x85\\xcd\\xf5\\xe2\\x87\\x27\\x3b\\xff\\xcf\\xfe\\xe6\\xbb\\x77\\xdf\\xfe\\xf1\\xa7\\x5f\\x50\\x3f\\xbd\\xfa\\xf2\\x97\\x6f\\x6e\\x7e\\x83\\xf5\\x6c\\xa4\\xd4\\x37\\x4d\\x69\\xd4\\xb3\\x9f\\xb5\\xf3\\xa6\\xdd\\x1b\\x69\\xef\\x9b\\x76\\x6b\\x64\\xe2\\x67\\xa3\\xbe\\x5d\\xef\\x7d\\xb8\\x1f\\xc4\\xeb\\xa9\\x48\\x5f\\x4f\\x45\\xb7\\x2d\\xa8\\xaf\\xa7\\xa2\\x6e\\xac\\xa7\\x06\\xe9\\x76\\xbd\\xf7\\xe9\\x4e\\xff\\xd3\\x4f\\xfb\\xfb\\xf6\\xbb\\xaf\\x7f\\x59\\x5b\\xea\\xab\\xb7\\x37\\x7b\\x1c\\x9c\\x4d\\xa9\\x9f\\x95\\x6c\\x13\\x19\\xad\\x9f\\x59\\x72\\x13\\x72\\xfc\\xea\\x74\\xb1\\x2e\\x67\\x11\\xd9\\x94\\xbc\\xa5\\xea\\x99\\x24\\x2e\\xd4\\xb5\\x9f\\x55\\x74\\x33\\x92\\xb6\\xe6\\x8a\\x78\\x33\\xa9\\x6f\\xd6\\x7e\\x1e\\x3a\\xb6\\xe4\\x58\\x57\\xa8\\xb3\\x6f\\xa9\\xb1\\x2e\\x11\\x45\\x5c\\xea\\x35\\xc9\\xb9\\x0d\\xf5\\x56\\xaf\\x27\\xea\\x7c\\xa9\\xe6\\x06\\x8f\\x2d\\x8c\\x5a\\x3f\\xbb\\xf1\\x76\\x74\\xed\\xe1\\x5e\\x85\\x71\\x5f\\x68\\x6c\\x43\\xfa\\x5d\\x3d\\x6f\\x64\\xdb\\xf1\\xfb\\xd3\\x43\\xf1\\xff\\xfb\\x74\\x28\\xbe\\x7c\\xf7\\xe6\\xcd\\x8b\\xf7\\x37\\x87\\x21\\x9d\\x9a\\x58\\xee\\x75\\x54\\x96\\x96\\xe2\\x4d\\x83\\xe6\\xf0\\x68\\x66\\x31\\xc3\\xb5\\x39\\xf3\\x74\\xf1\\xe6\\xa1\\xbb\\x99\\xb4\\xe8\\xd4\\x74\\xf4\\x16\\xe2\\x53\\x8c\\xda\\xe0\\x3e\\xd9\\xf1\\xec\\x64\\xe9\\x35\\x93\\xb6\\xe3\\x84\\x46\\x6f\\x6c\\xa3\\x11\\x6b\\x4c\\x11\\x6b\\x24\\x2e\\x53\\xad\\x06\\x4f\\x72\\x7a\\xaf\\x99\\x0e\\xbb\\x90\\x47\\x9c\\xa3\\xf3\\x85\\x34\\x74\\x8f\\x31\\x1a\\xa9\\x7b\\x1b\\x66\\x75\\x23\\xcf\\x8c\\xde\\x48\\x94\\x26\\x75\\xe5\\x3b\\xe2\\xae\\x93\\x7a\\xfd\\xd6\\x79\\x9c\\xd3\\x68\\x4f\\xab\\xd6\\xba\\xb4\\xe4\\x6c\\x44\\xee\\x73\\x78\\x36\\xe2\\xd0\\x19\\x51\\xcd\\xaa\\x4e\\xd7\\x6c\\x24\\xd1\\x77\\x1b\\x8e\\x93\\x66\\x52\\x1b\\xc7\\x78\\x6a\\x6d\\x0b\\xce\\x9c\\x12\\xd2\\x88\\x49\\xa7\\xd4\\xcd\\x3d\\x63\\x5f\\x27\\xd2\\x5b\\x5d\\xca\\xc1\\x53\\x95\\xda\\xc8\\x98\\xa6\\xd6\\x86\\xc8\\xf4\\x88\\x16\\xa3\\xef\\xe1\\xd4\\xc2\\xb8\\x0d\\xd1\\x16\\x34\\x66\\x3a\\x37\\x97\\xea\\xa8\\x66\\x33\\xca\\x49\\x7d\\x50\\x13\\xa7\\x1d\\x27\\x5c\\xdd\\xea\\xc6\\x8d\\xfb\\x98\\x19\\xd4\\x52\\xe6\\x30\\x6a\\x14\\x33\\x7a\\x6f\\x27\\x1a\\x97\\x13\\xf7\\x71\\xb6\\x8c\\xcb\\x89\\x72\\x37\\xe2\\xbb\\x13\\x49\\xd3\\xb5\\x83\\xa5\\x6b\\xcb\\x98\\x4c\\xd2\\x58\\xfa\\xa4\\x88\\xa6\\x34\\xce\\x9c\\xb1\\x73\\x8e\\x26\\xd5\\x61\\x8e\\xc6\\x1e\\x53\\xbb\\x34\\x72\\x99\\x56\\x3b\\xa8\\xcb\\x74\\xe5\\x36\\x6c\\x8f\\x5e\\x03\\xdc\\x6a\\x82\\xeb\\xd7\\xe1\\xb5\\x45\\x7d\\xa6\\x58\\x63\\xe5\\x79\\x2c\\x8c\\xa7\\xd7\\xd8\\xff\\xff\\xd3\\x35\\xf6\\xcd\\xab\\xf7\\x45\\x60\\x6f\\x2e\\x32\\xd5\\x5a\\x0a\\xba\\xd7\\x91\\x25\\x9b\\xf7\\x1a\\xed\\x9a\\xcd\\xd1\\x48\\x86\\x4d\\x1a\\xd8\\x34\\x3c\\x39\\xeb\\x24\\x62\\x17\\xc7\\xd2\\x88\\xa6\\xfd\\xb8\\xa4\\x98\\xb5\\x61\\xd3\\xa4\\x5e\\x93\\x3c\\xad\\x86\\x8b\\x86\\x5e\\x88\\x7a\\xec\\xf8\\xab\\x9b\\x34\\xab\\x75\\xd6\\x3b\\x4d\\x1d\\xd1\\xb2\\x8f\\xa9\\x7d\\xb4\\xa1\\xf5\\xf2\\x6c\\x83\\x62\\x67\\xf1\\x3a\\x36\\x1a\\x89\\xdf\\xa9\\x67\\xcb\\x1e\\xd3\\xeb\\x05\\xbd\\x4f\\xd5\\xbb\\x7a\\xe3\\xa5\\xde\\xfd\\x70\\x4f\\x8a\\xa5\\x15\\x3b\\x4e\\x7a\\x50\\xa3\\xb5\\x24\\x0c\\xa3\\x9e\\x9e\\x93\\x39\\x5a\\xf2\\x6a\\x20\\xbb\\xee\\xa2\\x54\\xc7\\x56\\x6b\\xac\\x7e\\x57\\x1a\\x2d\\xa3\\x5e\\xec\\xeb\\x41\\xad\\x85\\x7d\\x6d\\x62\\xc7\\x5f\\xcc\\xd4\\x70\\x9d\\x2d\\xf0\\x00\\x09\\xcb\\x14\\xc7\\x9a\\xa5\\x35\\x30\\x92\\x7d\\xe7\\xba\\x59\\xb2\\x37\\x66\\xac\\x62\\x46\\x2f\\x48\\x58\\x27\\xfa\\x55\\x8f\\xaf\\x2e\\x1f\\x03\\xf3\\x70\\xef\\x21\\x4d\\x74\\xec\\x1e\\xda\\xb4\\x73\\xf3\\xec\\x4d\\x4d\\x67\\xc8\\x68\\xa6\\x63\\x0e\\x8a\\x3b\\x27\\x9d\\x45\\xba\\x5c\\x72\\xcf\\xec\\x0d\\xbc\\xa5\\x4b\\xb4\\xba\\x40\\x44\\x8e\\x3b\\x89\\x5c\\x9b\\x9a\\x4d\\xa2\\xc1\\xf5\\xce\\x0b\\x47\\xdf\\x89\\x6a\\x3d\\x53\\x7d\\x52\\x2d\\x22\\x97\\x7a\\x20\\x5a\\xf4\\x49\\x5d\\x46\\xab\\x17\\x67\\x3b\\x31\\xed\\xc3\\xbd\\x8e\\x6d\\x50\\xb6\\x6a\\x3e\\xeb\\x1e\\x4f\\xc2\\x33\\xd5\\x4b\\x8e\\x7e\\x11\\x1d\\x0f\\xf7\\x11\\xbd\\xfe\\xd8\\x71\\x14\\x69\\x11\\xd9\\x28\\x63\\x8e\\xbe\\x58\\xe0\\x30\\x6f\\x43\\xf0\\x62\\xb7\\xbd\\xb6\\x8f\\x63\\xd2\\x7b\\xfd\\x4a\\x5d\\x6b\\xf8\\xaa\\xf9\\xf0\\x46\\xe9\\xb5\\xd0\\xec\\xfa\\xf2\\x1d\\x7f\\xc8\\xb0\\x3b\\x5c\\x56\\xa6\\xb5\\x45\\x75\\xc4\\xc4\\x1b\\x4c\\xd6\\x50\\x98\\xf1\\x3e\\x86\\xd6\\x11\\x94\\xa8\\x7e\\x1f\\xdd\\x71\\x63\\xf5\\x47\\x99\\x67\\xf5\\xef\\x18\\x86\\x87\\x7b\\xb1\\xda\\x9a\\xb9\\x71\\x51\\xbd\\x6e\\xdb\\x08\\x2c\\x54\\xd9\\xb2\\x96\\x26\\x6b\\x6c\\xc7\\x1d\\x37\\x18\\xef\\x8b\\xaf\\xbf\\x79\\xc4\\x77\\x5f\\x7c\\xfd\\xcd\\xab\\xf7\\x1f\\x5e\\xbc\\xfd\\xf2\\xf6\\xd6\\xaa\\x81\\x4e\\xda\\x65\\x28\\x28\\x4f\\xb5\\x30\\x22\\xa6\\xd4\\x9a\\x76\\x9d\\x5c\\x8b\\xa3\\x9b\\x4c\\xae\\x01\\x22\\x8d\\x1d\\x27\\xcc\\xbd\\x71\\x6d\\x3a\\x1e\\x34\\xc5\\x78\\xed\\x2c\\x35\\xad\\xbd\\x26\\xd3\\x40\\x81\\x23\\x76\\xaf\\x4b\\xb5\\x0d\\xa3\\xe3\\x92\\xcd\\x48\\xad\\xf5\\x57\\xc4\\xaa\\x9e\\xea\\x3c\\x47\\xd1\\x4c\\x4a\\xda\\xd7\\x09\\xa8\\x4b\\xd4\\xf2\\xee\\x73\\xd4\\xa2\\xe8\\xdc\\x67\\x98\\xb4\\xd4\\x9c\\x3e\\xfa\\xdd\\x18\\xb6\\x99\\x73\\x8b\\x61\\x5b\\x56\\x97\\xa9\\x66\\x70\\x34\\xa9\\xfe\\xf4\\xce\\x4d\\xa3\\xe6\\x90\\x47\\x73\\xa3\\x33\\x91\\x8c\\xbd\\xfe\\x6b\\x06\\x8e\\xd2\\xb5\\x69\\xad\\xf5\\xde\\xb5\\x31\\xc7\\x56\\xeb\\xbc\\xf5\\x33\\x75\\xa5\\x2d\\xb9\\xba\\xcd\\x7b\\xd1\\x51\\x1f\\x2d\\x6c\\x34\\xd6\\x69\\x66\\xed\\xc4\\x7d\\x57\\x97\\x3a\\x36\\x29\\x98\\x34\\xd9\\xb4\\x0d\\x9d\\xe4\\xd1\\xc0\\x4e\\xc4\\x9a\\x38\\xef\\x75\\xd4\\xe2\\x21\\x16\\x98\\x68\\xae\\x95\\x9f\\x35\\x9e\\xb5\\x6f\\x0c\\xb4\\x24\\x86\\x6e\\xc7\\xb8\\x3f\\xdc\\xd7\\xdb\\x07\\xed\\xc5\\x5c\\x8a\\x25\\x16\\xf7\\xa7\\x31\\x6b\\xa5\\x33\\xf3\\xa6\\x63\\x14\\xbb\\xdc\\x34\\xc6\\x5d\\x90\\x6c\\xc5\\x3c\\x7c\\xd0\\x5e\\x6c\\xd3\\x8b\\x42\\x74\\x69\\x56\\x94\\xc3\\x56\\xf3\\x75\\x2c\\x2a\\x52\\xd3\\xb6\\x78\\x66\\x75\\x25\\xa7\\x16\\xcd\\xeb\\x3c\\x57\\x6b\\x0f\\xf7\\xf5\\x0d\\x44\\x9a\\xbb\\x8c\\x1a\\xe1\\xb0\\x06\\x92\\xd1\\xbb\\x4e\\xeb\\xdc\\x86\\xf3\\xe6\\x52\\x1c\\x82\\x76\\xaf\\x09\\xeb\\xd5\\xdd\\x22\\x18\\x3d\\x78\\x46\\xd1\\xd6\\x9a\\x30\\x9c\\x30\\x8f\\x16\\xb5\\x61\\xd8\\x69\\x46\\xe1\\x1a\\xa1\\x9c\\x6e\\x45\\x78\\xbc\\xaf\\xa5\\x20\\x61\\xbb\\x09\\x48\\x91\\xb5\\x6a\\x80\\xa4\\xa8\\x14\\x7e\\xe9\\xc5\\x61\\xea\\x3d\\x62\\xf3\\xda\\xad\\x5b\\x0b\\xfc\\x9b\\x77\\x1f\\x9e\\x42\\x96\\x1f\\x5e\\xbf\\xfd\\xea\\xcd\\xd3\\xe8\\x1a\\x00\\xb9\\xa6\\x55\\xd2\\x36\\xa7\\xbe\\x60\\xa2\\x91\\x6f\\xc6\\x54\\xab\\xd6\\x2f\\x80\\x88\\xce\\xe3\\x52\\xf7\\x3c\\xdd\\xf2\\x7f\\xf7\\x88\\x5f\\xbd\\x78\\xff\\xea\\xed\\x9b\\x57\\xbf\\xba\\xcd\\xb1\\x64\\x50\\xb3\\x31\\xf6\\x3a\\xd6\\x28\\x01\\x04\\x32\\x4f\\xa3\\xda\\xc9\\x85\\x87\\xb0\\x55\\x0a\\x67\\x08\\xb8\\x2b\\x6f\\x03\\x78\\xdb\\x68\\x8f\\xda\\x72\\x9a\\xbd\\x01\\xc8\\x4a\\xf6\\x69\\x45\\xbc\\xc9\\x75\\x1a\\x7b\\x1b\\x49\\xd3\\x3a\\x35\\x4b\\xba\\x58\\xd0\\x5e\\xe7\\x35\\x79\\xc6\\x45\\xa2\\x78\\x5a\\x7a\\x3b\\xd5\\x4c\\xf4\\x76\\x62\\xce\\x59\\xef\\x3d\\x49\\xca\\x56\\x2d\\x9d\\xb4\\x88\\xa2\\x78\\x3b\\x69\\x2f\\xd2\\xa7\\xed\\x24\\x35\\xe7\\x44\\x77\\x27\\xa7\\x59\\xdd\\x64\\x19\\x13\\xdd\\x0f\\xb9\\xd8\\x18\\x4f\\x0f\\xc8\\x7f\\xff\\xc4\\x80\\xbc\\x87\\xf8\\x75\\x6b\\x44\\x06\\x4b\\xbd\\x72\\xaf\\x63\\xcd\\x77\\x8c\\x6c\\x5c\\x18\\x2e\\xb5\\x9d\\x6a\\x9d\\x18\\x55\\x5f\\x64\\x4a\\x10\\xba\\xb9\\x89\\xae\\x8e\\xef\\xca\\xd1\\x4e\\x22\\xdc\\xb4\\xee\\x65\\xa1\\xe9\\xbd\\x7e\\x99\\x1e\\xa3\\x71\\xd0\\x8c\\xda\\x05\\x41\\x17\\xab\\x35\\xd9\\xa5\\x85\\x5a\\xab\\x6b\\x23\\x79\\x7a\\xb7\\x05\\xe8\\xb4\\xf8\\x44\\x11\\x9e\\x7a\\x2f\\x99\\xd9\\x56\\x2d\\xd5\\xd0\\xef\\xea\\x45\\x56\\x83\\x9b\\x15\\x07\\xac\\x59\\xf1\\x2c\\x98\\x58\\x04\\x7a\\x0c\\x4c\\x1c\\xba\\x3f\\xc6\\xc5\\xe2\\x06\\x6c\\xfe\\x1f\\x1e\\x51\\xde\\x0f\\xdf\\xbe\\x7a\\xff\\xfa\\xc3\\x5f\\xdf\\x96\\x78\\xa2\\xb7\\x61\\xb2\\x15\\xf9\\x49\\xd7\\xad\\x28\\x2a\\xf5\\x88\\xad\\x40\\x6d\\x8a\\x6d\\x36\\x6a\\x77\\x28\\x9f\\xa3\\xc7\\xe6\\x23\\x5b\\x0a\\x6f\\xd4\\x6b\\x95\\xf4\\x18\\x5b\\xd1\\x47\\x3c\\x58\\x5b\\x0e\\x82\\x43\\xcd\\x19\\x8f\\x6d\\x0c\\x69\\x6a\\xb1\\x15\\x07\\x8e\\xcc\\x4d\\x8b\\xe2\\x79\\xdf\\xa4\\x0f\\x5c\\x3f\\x1a\\x7e\\xfa\\x2b\\xfe\\xc7\\x47\\xf3\\xfa\\xe6\\xbb\\x0f\\xb7\\xb7\\x55\\xd4\\x48\\x97\\x68\\x42\\x71\\x71\\x96\\xb3\\x87\\x5c\\x48\\xfd\\x6c\\x26\\xf8\\x9b\\x28\\x2f\\x75\\x43\\xfd\\x4d\\xdc\\x1d\\x37\\x84\\xde\\x10\\xc1\\xfe\\xa7\\x4f\\x9b\\x7e\\xf9\\xee\\xeb\\xaf\\x5f\\xdc\\x6e\\xbb\\x17\\xba\\xdc\\xeb\\x70\\xca\\x66\\xc9\\xed\\x54\\x6c\\xc7\\xad\\x9d\\x48\\xfb\\xac\\xbd\\x7d\\xaa\\xe9\\x53\\xaf\\x93\\xb4\\xad\\xe8\\xdc\\x89\\x35\\x76\\x0d\\x69\\x27\\x62\\x70\\x89\\x26\\x7c\\xa1\\x31\\xce\\xde\\xe9\\x22\\x37\\xb6\\xfe\\xe9\\xd3\\x6e\\xfd\\xfa\\xf7\\xdf\\xfc\\xfa\\xd5\\x1f\\x4a\\x85\\xd2\\x0f\\x71\\x28\\x7a\\xf3\\x4e\\x67\\xe6\\xbc\\x44\\xe7\\x73\\x46\\xbf\\x78\\xa7\\xa7\\x5f\\xfd\\x47\\x7f\\x80\\x82\\x5f\\xbf\\xbb\\xcd\\xa9\\x6d\\xc1\\xee\\x3a\\x50\\xa1\\x0b\\x87\\xf0\\x3e\\xbd\\x40\\xf1\\xf0\\xdd\\x93\\xeb\\xd8\\x82\\xc0\\x7c\\x66\\x68\\x00\\xa5\\x6b\\x34\\x95\\x16\\xb5\\xba\\xd6\\xcd\\x27\\xe2\\xbd\\x08\\xca\\x89\\xb8\\xd5\\x5a\\x28\\x71\\x1e\\xaf\\x7e\\xba\\x93\\x9f\\x3f\\xd2\\x63\\xbc\\x79\\xf1\\xe1\\xd7\\xb7\\xc9\\x5e\\x52\\xbd\\xd7\\xce\\x1c\\xb9\\x8d\\x71\\x48\\xb2\\x99\\xb9\\x5d\\xaf\\x3c\\xdd\\x48\\xff\\xb4\\x91\\xff\\xfc\\xea\\xfd\\x13\\xaa\\xa0\\xa3\\x0d\\x70\\x2b\\x0b\\xdf\\x17\\xdb\\x2a\\x3a\\x5a\\x78\\x4d\\xd4\\x67\\x1e\\x32\\x48\\x6d\\x56\\x1e\\xd3\\x69\\x80\\x71\\x5b\\xc9\\x43\\x5c\\x44\\x58\\x1b\\xc7\\xe4\\xda\\xf6\\xe6\\x10\\x1a\\x44\\x6d\\x92\\x8d\\x7a\\xdf\\x65\\x44\\xee\\x54\\x6c\\xab\\x77\\xc2\\x50\\x12\\xf5\\x9c\\x0c\\x04\\x5d\\xa8\\x1e\\x0a\\x04\\xce\\xe9\\xe4\\x0b\\xdc\\x44\\x09\\x0a\\x05\\x6e\\x46\\xb1\\x12\\x95\\x3e\\xb3\\x84\\x21\\xe9\\x40\\x84\\x45\\xb2\\x09\\x18\\xd2\\xda\\x88\\xbc\\x58\\xf8\\xc3\\x3d\\xc7\\xb8\\x33\\x1b\\x3b\\xc7\\x68\\x46\\xd1\\x78\\x40\\x14\\xde\\x52\\x06\\xd8\\xf0\\x9e\\x5c\\xb2\\x8e\\x64\\x1b\\x59\\x82\\x68\\xea\\x1c\\xd5\\x0a\\x8f\\x9c\\xa1\\xb4\\xa4\\x4d\\x74\\x00\\x2c\\x95\\x65\\xb1\\x54\\x05\\xb7\\x85\\x38\\x0d\\x11\\xa9\\xf0\\x3e\\x98\\x75\\x4e\\x06\\x1d\\xcc\\x8b\\xd9\\x78\\xb8\\xcf\\x62\\xff\\x99\\x7b\\x1d\\x53\\xb8\\xa5\\xf1\\x22\\x3e\\x25\\xf2\\x45\\xdf\\x85\\xa4\\x15\\x9d\\x28\\xd8\\xc0\\x56\\x68\\x45\\x5b\\xf1\\x1d\\xc5\\xdb\\x04\\x23\\x3a\\x68\\x0f\\x2a\\x0c\\xde\\x20\\x19\\x73\\x9f\\x23\\xb2\\xa4\\x89\\x99\\x12\\x4d\\x62\\xcc\\x7a\\xbb\\xd9\\xb8\\x8c\\xbc\\xc1\\xc8\\xe9\\xd3\\xe9\\x7e\\xf7\\xf6\\x36\\xef\\x0e\\xe5\\xd6\\xcf\\xce\\x7c\\x21\\xe9\\xb6\\x71\\xad\\x6e\\xaa\\x6d\\xcb\\x6a\\x5b\\xb0\\xad\\x15\\x16\\xca\\x97\\x1b\\x64\\x85\\x3f\\x6d\\xeb\\xdb\\xdf\\x3e\\xb7\\xb2\\x54\\x0a\\x0a\\x4a\\xbf\\x24\\x6f\\xc5\\x63\\x5c\\x64\\x77\\xef\\xcd\\x53\\x80\\x60\\x43\\xc7\\x8c\\x41\\x6d\\xd4\\x22\\x13\\x8c\\xdd\\x1c\\xd6\\xd7\\xd4\\xe1\\x84\\x4a\\xba\\x2f\\xbc\\x51\\x62\\x43\\x78\\xc9\\x63\\xd9\\xa7\\x63\\x11\\x19\\x4f\\xab\\xdd\\x2a\\xa1\\x8b\\xe5\\x08\\x04\\xaa\\x3a\\xd1\\x31\\xa5\\xd7\\xcd\\x11\\x93\\x6b\\x87\\x53\\xc9\\x6c\\x80\\x64\\xe2\\xe7\\x1c\\x3b\\x56\\x03\\x24\\xb6\\x02\\x10\\xdd\\x27\\x03\\xbe\\xa8\\x4f\\xf1\\x7e\\x47\\xaa\\xb4\\xde\\xad\\xe1\\xbb\\x2b\\x64\\xdf\\xa2\\x05\\x85\\x67\\x4b\\x42\\xb3\\x5a\\x28\\x1e\\x33\\x0b\\x72\\xb1\\xd2\\xd2\\x88\\xf4\\x18\\xfb\\x3a\\xe9\\xde\\x52\\x6b\\x4d\\x0c\\xcc\\xe6\\xe8\\x36\\x63\\x44\\xf3\\x28\\xc8\\xad\\xcd\\xbc\\x6f\\x4b\\x12\\xa0\\x42\\xca\\x72\\x6b\\xb0\\xe5\\xd1\\x60\\xff\\xfa\\xfd\\xab\\xdb\\x53\\x5b\\xa2\\x64\\xa4\\x9c\\x8d\\x65\\xb7\\x1a\\xe0\\xd4\\xe6\\xc0\\xa7\\x32\\xc3\\xa5\\x0d\\x1f\\x73\\x48\\xb4\\xac\\xc1\\x86\\x96\\x21\\x7c\\xc7\\x09\\x15\\x6d\\x03\\x1d\\xec\\xc5\\xa1\\xa1\\x0d\\x70\\x74\\x94\\xc4\\x0a\\xb0\\x8f\\x63\\x90\\xc1\\x42\\x6b\\x90\\x05\\x5b\\x47\\xa6\\x60\\xf8\\x92\\x27\\xe3\\x3d\\x39\\x26\\xaf\\x9d\\xa7\\x67\\xa2\\xb1\\x53\\x91\\x49\\x2a\\x54\\x5b\\x03\\xc6\\x22\\x93\\x15\\x4a\\x27\\x9a\\x32\\xa4\\xc6\\xd2\\xea\\xed\\x77\\x6b\\x98\\x4b\\x2a\\xc3\\x30\\x17\\xde\\x57\\x2d\\xa8\\x85\\xfd\\xd8\\xe7\\x21\\xb0\\xc9\\xcc\\x7a\\xaa\\x07\\xef\\xeb\\xa4\\xe4\\x78\\x77\\xc8\\xfc\\x49\\x06\\x41\\xab\\xb6\\xf7\\xe8\\x34\\x43\\x7a\\x0b\\x75\\xc8\\xb8\\xd1\\x47\\x4d\\x45\\x73\\x2a\\xd1\\x93\\x7a\\x93\\xb4\\x1d\\x27\\x25\\xc6\\x67\\x94\\x6c\\xd0\\xe7\\x18\\xd4\\xb2\\x43\\x0c\\xce\\x69\\x4b\\x38\\xc1\\xba\\x5a\\x42\\x8a\\xb4\\xfa\\x38\\xaf\\x5b\\x48\\xea\\x89\\x9a\\xf4\\x7a\\xd3\\x99\\xc9\\xf7\\x5a\\x5b\\x52\\x64\\x52\\xad\\xb1\\xdb\\x94\\x5a\\x2a\\x85\\x92\\x4a\\x00\\xe9\\x82\\xf7\\x95\\x58\\x22\\x5a\\x3b\\xdd\\x53\\xef\\xa8\\x3a\\x99\\x75\\x57\\x5f\\xe2\\x89\\xc5\\x1c\\x49\\x4d\\x4a\\x72\\x4b\\x6a\\x1a\\x54\\x72\\x43\\x33\\x8e\\x19\\x83\\x9b\\x73\\xad\\xfb\\x02\\x62\\x32\\x8b\\x50\\x79\\xd2\\x59\\x3b\\x5f\\x22\\x6f\\x60\\x0f\\xfd\\x74\\xf1\\xfc\\xea\\xdd\\x77\\xb7\\xd5\\x8e\\x63\\x8c\\xa6\\x9e\\x85\\x3d\\xfc\\x22\\x3e\\xce\\x63\\x8c\\x4b\\x3f\\x87\\xe7\\xfa\\x4b\\x2f\\x2a\\xbe\\x85\\x1d\\x1c\\xa8\\xae\\xaa\\xe7\\xc3\\x7d\\x09\\x2b\\xf5\\x5c\\xdd\\x08\\x82\\x12\\x84\\x65\\x54\\xf8\\x0b\\x57\\x9e\\xee\\x9a\\x3d\\xea\\xda\\xeb\\xdf\\xdc\\x5e\\xd6\\xec\\x98\\xc8\\x0d\\x4b\\x6d\\x29\\x72\\xad\\x1a\\x83\\xe6\\x57\\x36\\x4c\\x8c\\xc9\\xae\\x12\\x6d\\x64\\x6f\\xd6\\xa3\\x25\\xd1\\x74\\x8b\\x96\\x22\\x7b\\x98\\xd7\\xb1\\x0d\\x29\\xa8\\x9f\\x33\\x83\\xdb\\xe8\\x3c\\xa9\\x5b\\x09\\xb4\\x25\\xd9\\xe2\\xdb\\x75\\xc7\\x89\\xd4\\x92\\x2b\\x50\\xc8\\x61\\x6b\\xb5\\x15\\x58\\x2d\\x71\\x6c\\x4c\\x3f\\x04\\x57\\x73\\x5d\\xfc\\x6f\\x44\\x8b\\xa5\\x71\\xf5\\xc9\\xe6\\x8d\\x49\\x26\\xf7\\xac\\xc5\\x72\\x16\\xb6\\x5d\\x44\\xef\\x84\\xb8\\x89\\xf7\\xc6\\x56\\x8b\\xa1\\xa6\\x9b\\xa6\\x61\\x51\\xf0\\x5c\\xbb\\x13\\x7c\\xaf\\xc8\\x7f\\x09\\x86\\xd4\\xe7\\x28\\xe4\\x91\\x7d\\xa6\\x66\\x13\\xa2\\x99\\x5e\\xfd\\xe3\\xbd\\x8e\\x26\\xa3\\xa5\\x7a\\xc9\\xaa\\x73\\x94\\x7c\\x4b\\x39\\xa3\\xb6\\x4c\\xed\\xd7\\xfa\\x42\\xd6\\xdd\\xb2\\xd7\\x71\\xe9\\x49\\x68\\x4c\\xa8\\x86\\x33\\x21\\x8c\\x84\\x17\\x4f\\xb3\\x7a\\x6e\\x3b\\x06\\xf6\\xe9\\x19\\xf2\\x47\\x30\\xe5\\xf5\\xef\\x6e\\xaf\\x9d\\x1a\\x32\\xf5\\xb8\\x90\\x58\\x2d\\x15\\xdb\\x3d\\x41\\x9e\\xa3\\x19\\x94\\x13\\x3d\\xa7\\x82\\x10\\x0c\\x9a\\x42\\xd6\\x32\\x75\\x72\\x70\\x8b\\x90\\x5d\\x7a\\x2f\\x02\\x05\\x0e\\x39\\x34\\xa6\\xb2\\xb6\\xec\\x36\\xad\\x8e\\xca\\xd3\\x45\\x8a\\x60\\xed\\x51\\x1f\\x6e\\xde\\x46\\x09\\x7e\\xe4\\x33\\x8b\\x64\\xf5\\x9c\\xd4\\xd9\\x9b\\x17\\xfa\\xe8\\x56\\x18\\x34\\x76\\x9c\\x94\\xc0\\x45\\xbd\\x24\\xb8\\xe4\\x99\\x5a\\x64\\x44\\xe6\\xe8\\xa3\\x95\\xa8\\x08\\x30\\x5b\\x30\\x26\\xee\\x30\\x8d\\x5c\\xb3\\x83\\x1e\\x51\\xc1\\x97\\x41\\x4d\\x8a\\x50\\x40\\x4d\\xac\\x17\\x57\\xd9\\xeb\\xbc\\x90\\x1f\\xb9\\x95\\x6c\\x30\\xa1\\x5c\\xeb\\x4a\\x53\\x3a\\xf4\\xd3\\x7d\\x29\\x04\\xa0\\xd5\\x86\\x25\\xa2\\x5a\\x2b\\x4a\\xa7\\x1e\\xe7\\xe1\\xf2\\x70\\xef\\xa4\\x58\\xa6\\x66\\x05\\x23\\xa5\\x59\\xaf\\x25\\x59\\x88\\x00\\x8a\\x97\\x29\\xcc\\x45\\xa6\\x26\\x03\\xf0\\xc6\\xc5\\x88\\xf7\\x3a\\x2f\\x49\\xb4\\xb0\\x87\\x48\\x4e\\xf1\\xd1\\x8a\\x42\\x6b\\x80\\x69\\xe3\\x43\\x06\\xef\\x9e\\x85\\x98\\x5a\\x40\\x87\\x69\\xe0\\x4d\\x75\\x57\\xd6\\xa8\\x72\\xb1\\x28\\x2d\\x6c\\xbe\\xd7\\xd1\\x74\\xdc\\x25\\x29\\x08\\x61\\xdd\\x17\\x12\\x50\\x05\\x0d\\xa6\\x79\\xf4\\xf0\\xe9\\xe5\\x10\\x8f\\x96\\xc3\\xab\\xdf\\x3c\\x01\\xda\\xbf\\xe7\\xfb\\x03\\x0a\\xac\\xd8\\xd4\\x7b\\xeb\\x67\\x11\\xdb\\x12\\x1c\\x53\\xf3\\x4c\\x6c\\x97\\x63\\x1b\\x8f\\x02\\x21\\x23\\x9e\\x6e\\x71\\x3c\\xb2\\xd9\\x3d\\x2b\\x0c\\x53\\x2f\\x64\\xd0\\x07\\xed\\xc7\\x19\\xf3\\x42\\xb1\\x59\\xcc\\xa3\\xc6\\x27\\x7c\\x66\\x0d\\x57\\x27\\xa0\\xd9\\xd0\\xd8\\x4b\\xb0\\x0b\\x2e\\xea\\xa0\\xcd\\xb3\\x28\\x42\\x51\\x55\\xaa\\x93\\xc1\\xcd\\x6a\\x71\\x51\\x97\\x26\\xc3\\x77\\x9c\\x40\\x3f\\x57\\xaf\\x67\\x6c\\x4a\\x6f\\x43\\xe7\\xa0\\xd1\\x62\\xba\\x1e\\x2b\\x4a\\x17\\xb3\\x50\\x97\\xe6\\x58\\xea\\x43\\x26\\x17\\x4a\\x26\\x82\\x5a\\x18\\xef\\x8a\\x68\\x6a\\x7c\\x47\\x19\\x68\\x84\\xcd\\x9a\\x13\\x41\\x8c\\xf6\\x24\\x58\\x63\\xaa\\x7b\\x10\\xea\\x7d\\x2c\\x0d\\x62\\xef\\xb3\\xa0\\xed\\x08\\x9b\\x5c\\x38\\x29\\x3a\\xde\\x8b\\x4f\\xc6\\x09\\x85\\x36\\x86\\xba\\x1a\\x5a\\x2a\\x5f\\x5a\\x6a\\x2d\\x30\\x52\\x9c\\xd4\\x25\\x16\\x96\\x81\\xd2\\xa9\\x98\\xec\\x80\\x02\\x51\\x73\\x26\\x60\\x70\\x14\\xc6\\x16\\x5e\\xcf\\x7f\\x1c\\xce\\x87\\xfb\\x22\\x81\\x32\\x0c\\xfc\\x56\\x8b\\xa4\\x16\\x16\\xad\\x55\\x36\\x7a\\xf3\\x02\\x16\\xb5\\x5e\\x43\\x67\\x49\\xc7\\x9e\\xbe\\x97\\x04\\xe4\\xe9\\xcd\\xfa\\x68\\x1e\\x36\\x25\\x13\\xf7\\x09\\xdb\\x5d\\x3d\\x57\\x0c\\xb7\\xde\\x87\\x23\\x51\\x13\\xd6\\xc6\\xa6\\x53\\x8a\\x13\\x5a\\xce\\x22\\xdf\\xc5\\x19\\x6b\\x48\\x81\\x8c\\xfb\\x42\\xc6\\x8c\\x5f\\x8b\\x45\\xd7\\x5d\\xd5\\x8b\\x7a\\xea\\xe8\\xdd\\xc3\\x7d\\x42\\x93\\x3f\\x78\\xc7\\x49\\xe1\\x99\\x9a\\x6d\\xe2\\x7a\\xc6\\x96\\xd6\\x77\\x62\\x83\\x14\\x68\\xc1\\x60\\x14\\x9e\\xb1\\x58\\xe8\\xb1\\x19\\xe5\\x82\\x3a\\x5a\\x12\\x40\\x81\\x1f\\x81\\x95\\xac\\xeb\\x14\\x68\\xfa\\x06\\xef\\xeb\\x84\\xac\\xd5\\xa5\\x74\\x01\\xa9\\x1a\\xa1\\x10\\x8e\\x8b\\xce\\x2e\\x05\\xc1\\xd8\\xa3\\x17\\x2d\\x1f\\x2d\\xcc\\xef\\x06\\x05\\x3a\\x30\\x42\\xb0\\xfe\\xea\\xb9\\x6b\\x5f\\x9f\\x5e\\xf7\\xf9\\xc8\\x72\\xfa\\xfa\\x19\\x30\\x2f\\xa3\\x96\\xc2\\x6e\\x62\\x2d\\xc7\\x32\\x11\\xa8\\xce\\xd1\\xb3\\x71\\xad\\xfb\\x0e\\x71\\x6e\\x02\\xf9\\x14\\x32\\x25\\x18\\xc0\\x6a\\x2f\\x34\\xcb\\x31\\x23\\x05\\x3a\\xf4\\x92\\x74\\x35\\x79\\x5a\\x08\\x08\\xa8\\x7a\\xd6\\xb1\\x80\\x08\\xec\\x64\\xec\\xd4\\x5c\\x68\\x52\\x11\\x99\\x11\\x93\\x4a\\xd8\\x71\\xdb\\xeb\\x48\\xbd\\x88\\x7f\\xb1\\x49\\x32\\x9d\\x0c\\x10\\x4e\\x31\\x61\\x5f\\x56\\xe1\\x69\\x69\\xd7\\x75\\x47\\xd7\\x75\\x57\\x70\\xaf\\xe8\\x12\\x30\\x5d\\xda\\xb1\\xee\\x08\\xc4\\xdc\\x4a\\xb8\\xb2\\x4b\\x94\\xe8\\x08\\x06\\x5d\\xa4\\xae\\xab\\x35\\x1b\\xbc\\xac\\x01\\x92\\x63\\x26\\x65\\x63\\x71\\x7c\\x01\\xc1\\x50\\x54\\x9b\\x72\\xd6\\x70\\x9c\\x88\\xce\\x62\\xb6\\x49\\xb1\\xfd\\x38\\xcb\\xe0\\x87\\x7b\\x1b\\xa3\\xd9\\xe8\\xbb\\x2b\\x8e\\x0d\\xea\\xad\\xcc\\x39\\xba\\x35\\xb7\\x62\\xa4\\xde\\x42\\x06\\xc0\\xfc\\x50\\xbb\\x64\\xf7\\x1d\\xc0\\xbe\\x77\\x69\\x49\\xb5\\x20\\xc7\\x58\\xfa\\x75\\xb4\\x0a\\x08\\x2b\\xbe\\xd4\\x88\\x12\\xb2\\xaf\\xe5\\x53\\xc3\\xb7\\xe4\\xc6\\x3c\\x96\\x4f\\x71\\x8a\\x1a\\x80\\x12\\xea\\x38\\xe4\\x2e\\xa3\\xef\\x1c\\xd2\\x46\\x16\\x51\\x2f\\xb2\\x3b\\xa6\\xc0\\x80\\x2b\\x53\\x8d\\x61\\xdb\\x39\\x3a\\xfb\\xf4\\xe2\\xf8\\xe7\\x8f\\x75\\x3a\\x6f\\xde\\xdd\\x26\\xc3\\x96\\x0e\\x05\\x47\\x42\\x0e\\x6a\\x5e\\x4b\\xdb\\x7c\\x7a\\xed\\xb4\\xe1\\x7b\\xd4\\x32\\xac\\x2f\\x0f\\x81\\x82\\x63\\xf4\\x92\\xc3\\xf6\\x3a\\xa8\\xb4\\xa8\\xad\\xb1\\x6e\\x3e\\x11\\x03\\x9b\\x9f\\x6a\\xfd\\x94\\x38\\x6d\\x73\\xbd\\xfa\\x01\\x4d\\xa4\\xd3\\x6a\\xa3\\x46\\x0b\\x8d\\x74\\xe1\\xd5\\x4a\\x77\\x5e\\xcd\\x14\\xa0\\x42\\x3b\\x1d\\x6c\\x98\\xf0\\x10\\x8e\\x94\\x68\\x0a\\x9a\\xc5\\x1c\\x77\\xc3\\x15\\x6d\\x0d\\x98\\xb9\\x75\\x29\\x67\\x57\\x23\\x4f\\x8f\\xc8\\x1f\\x3f\\x66\\x4c\\x5f\\xbf\\xfe\\xb1\\x51\\xe1\\xa3\\xcb\\x7c\\x74\\x99\\xf2\\xda\\x65\\xbd\\x76\\x99\\x8f\\x2e\\x7b\\xae\\x2e\\x47\\x89\\x09\\x4e\\x3b\\x8e\\xe8\\x72\\x3f\\xba\\xac\\x0d\\x5d\\x2e\\x34\\x82\\x2e\\xf7\\xa3\\xcb\\x68\\xe4\\xe1\\x3e\\x54\\x9b\\xd8\\x5e\\x87\\x53\\xb6\\x02\\x7a\\x27\\x93\\x59\\xf2\\x08\\xf4\\x6a\\x0e\\x24\\x59\\x98\\xa4\\xeb\\xd2\\xab\\x19\\x8f\\xa5\\x57\\xab\\x35\\x7d\\x22\\xe6\\xbb\\x3a\\x39\\xf4\\x6a\\xa1\\x7a\\x53\\xaf\\xf6\\xcf\\xde\\x3c\\x76\\x12\\x79\\xf3\\xea\\xc3\\x6d\\x65\\x23\\xec\\x27\\xe6\\x1b\\x98\\x9e\\x98\\x5f\\x58\\xfa\\x46\\x5e\\xc8\\x32\\x2f\\xd1\\x6d\\x5d\\xa0\\x3e\\xe4\\x92\\x36\\xb6\\xe3\\xf6\\xa7\\x9b\\xfe\\xe2\\x11\\xab\\xfe\\x9b\\xef\\x5e\\xdc\\xf6\\x4c\\x01\\x6f\\x19\\xc4\\x67\\x0a\\xbd\\x24\\x8d\\x73\\xfd\\x70\\x19\\xc4\\x0f\\xeb\\x92\\x96\\x48\\x1c\\x7a\\xb1\\x1e\\xeb\\x92\\xde\\x52\\xf7\\xfd\\xb3\\xaf\\x1e\\x7f\\xf1\\x57\\xef\\x5f\\xbd\\xf8\\xf6\\xd5\\x33\\xce\\x15\\x34\\x9a\\x7b\\xdf\\x8a\\x60\\xa5\\xf3\\x85\\xfa\\xa8\\x0f\\xb5\\x68\\xd1\\xe3\\xe2\\x44\\xb8\\xc2\\xc2\\x97\\x22\\x21\\xc7\\xdd\\x4f\\x37\\xfe\\x2f\\x1e\\x9b\\x4d\\x5e\\x7d\\xf8\\xf6\\xf5\\x73\\xcb\\x4e\\x7b\\xd3\\xae\\xbb\\x29\\xb5\\x92\\x29\\x0d\\xe8\\x52\\xa6\\x81\\x18\\xe7\\xac\\xc5\\x5e\\x92\\x5d\\x14\\xd7\\xb7\\xbe\\xc3\\x18\\x5b\\xf2\\x45\\x58\\x1b\\x6c\\x73\\xc0\\x84\\xed\\x73\\x8c\\x68\\x99\\x31\\xb3\\x43\\x58\\xe0\\x7d\\x9d\\x94\\x74\\x39\\xac\\xa0\\xa8\\xcc\\xb1\\x64\\xf2\\x98\\x01\\xe5\\x88\\xd1\\x74\\xbe\\x7a\\x5a\\xc0\\x6f\\x23\\xfa\\x95\\xe1\\xc9\\x12\\x49\\xa4\\xf8\\x1c\\x74\\x2b\\x6c\\x53\\x60\\xac\\x26\\x3f\\x33\\xf7\\x9d\\x59\\xee\\x4a\\xac\\x6f\\x30\\x73\\xb3\\xeb\\x94\\x05\\x17\\xc6\\x2c\\x36\\x41\\x6a\\x7d\\xbd\\x7d\\xd1\\xf8\\xab\\x9e\\x24\\x65\\x5d\\x02\\xf1\\x94\\xd0\\x99\\x79\\x58\\xd2\\xa9\\x43\\x21\\xd7\\x65\\x5f\\x67\\x1d\\x5c\\xb5\\xe8\\x6c\\xdd\\xa5\\xde\\x06\\xc4\\x61\\x6b\\xe1\\x7d\\x46\\x50\\xf3\\x60\\x80\\x7f\\x57\\x6e\\x41\\x01\\x30\\xe1\\x43\\x4a\\xba\\x81\\x38\\xac\\x43\\xa6\\x3b\\x06\\xf7\\x6c\\xda\\x1f\\xee\\x0d\\xa6\\xb5\\xdd\\x40\\xb7\\x6b\\xa0\\x3b\\x2c\\xd4\\xde\\x79\\x39\\x69\\x29\\x1d\\x4e\\x5a\\x76\\x38\\x69\\xe5\\x72\\xd2\\xca\\xe5\\xa4\\x65\\x45\\xdf\\xbc\\xf3\\x1d\\x9c\\xb4\\x04\\x4e\\x5a\\xba\\xb4\\xba\\x78\\xf1\\xd3\\xcb\\xe1\\x7f\\x7e\\x64\\xad\\x78\\x06\\xaa\\x96\\x0c\\x11\\x61\\x3b\\x26\\x2d\\x60\\x43\\xb5\\x68\\x1e\\x31\\xa1\\xa7\\xb4\\x42\\x62\\xd5\\x71\\xf5\\x83\\x21\\xca\\xe0\\x99\\xd9\\x9b\\x30\\xcf\\xec\\xd4\\x38\\x13\\x6a\\x1b\\xb8\\x4f\\x88\\x37\\x21\\x9e\\x51\\xdd\\xd7\\x31\\x4b\\x42\\x57\\x68\\x3f\\x96\\x4c\\x5b\\x53\\xa2\\x42\\xad\\xc8\\x71\\xfd\\xee\\xd6\\x9b\\x68\\x82\\x40\\x49\\x2d\\x3f\\x76\\xbc\\x4f\\xc7\\xb2\\x73\\xaa\\x19\\x84\\x1f\\xed\\x5a\\xa2\\xf0\\xac\\xb5\\x52\\x7c\\x5c\\xac\\xdf\\x19\\xdc\\x70\\xb8\\x79\\x2f\\xb0\\xaa\\xcd\\x87\\xed\\x62\\x85\\x09\\xb4\\x49\\x14\\xc6\\xa6\\xa9\\x0a\\x03\\x33\\x4f\\x2b\\x91\\x99\\x58\\xe1\\x04\\x47\\x54\\x54\\x95\\x06\\x4e\\x1a\\x96\\x65\\xc1\\x85\\x48\\x2a\\x39\\x46\\xe7\\x58\\x96\\x64\\x5b\\x4e\\x2f\\x3d\\x78\\x3b\\xf4\\x53\\xb4\\x95\\xbc\\x67\\x1e\\xfb\\x20\\x6d\\x56\\x62\\x3c\\x15\\x6a\\xee\\x78\\x44\\x95\\xe6\\xf0\\x03\\x12\\x40\\xec\\x2e\\xfc\\x57\\xc2\\x5f\\x51\\xdf\\x1a\\x88\\x3e\\xa9\\x13\\xb7\\x82\\xb9\\x0b\\x45\\x70\\x5f\\xe0\\xd6\\x97\\xc7\\xd2\\x38\\x80\\x7f\\x49\\x02\\x35\\x25\\x7d\\x8c\\x96\\x30\\x6a\\xfa\\x61\\x28\\xcf\\xa4\\x3b\\xe2\\x9e\\x73\\x78\\xad\\x7b\\xe9\\xf0\\x8b\\x58\\x5c\\x7f\\x6d\\xa6\\x02\\x4d\\xf0\\x0e\\x89\\x29\\x40\\xe2\\xf5\\xc6\\xcc\\x96\\xe1\\x93\\xac\\x37\\x1f\\xba\\x53\\xb5\\xed\\xdc\\x8a\\xc0\\xc2\\xad\\x46\\xa9\\xb1\\xe5\\x94\\x91\\x8d\\x78\\x4c\\x2f\\xe9\\x2f\\x77\\x2f\\x2c\\x90\\xcd\\x47\\x94\\x6c\\x51\\x78\\xb5\\x50\\x4a\\x8d\\x1b\\x1f\\x66\\x7d\\xe3\\x2d\\x8b\\x42\\x2c\\xe3\\x3e\\xbc\\x9b\\xb2\\x95\\x10\\x57\\xc8\\x8b\\xe0\\xbb\\x71\\xb2\\x59\\x2c\\xed\\x44\\xb4\\x5b\\xc7\\xb1\\xe9\\xe2\\xda\\x5c\\xf0\\x2b\\x26\\x05\\x35\\xca\\x31\\x21\\xdc\\x14\\x13\\xca\\x66\\x5d\\xa7\\x33\\xba\\x5a\\xab\\x73\\xc4\\xdd\\xb0\\x22\\x28\\x93\\x6a\\xb7\\x74\\xb8\\xd4\\x24\\x4c\\xd3\\x53\\xe0\\xcb\\x51\\x94\\xa3\\x38\\xbc\\x8a\\x4d\\x8f\\x12\\x29\\x5c\\x77\\x78\\x17\\xa8\\xeb\\x1a\\x42\\x05\\xa0\\x2b\\x78\\xc8\\xde\\x27\\x91\\x1e\\x22\\xf3\\x75\\x03\\x2c\\x77\\xba\\x5a\\x44\\x2a\\xbd\\xb9\\x8d\\x86\\x23\\xfb\\x54\\x91\\x1a\\xad\\xa9\\xaa\\x4d\\x33\\x67\\xbd\\x52\\xd5\\xa1\\x35\\xd7\\x3e\\x66\\xd1\\x50\\xc9\\x82\\xef\\x5e\\xc7\\xe6\\x05\\x74\\xa1\\xf2\\x19\\x25\\xa3\\xcc\\x02\\xe0\\xc6\\x32\\x43\\x6a\\xa2\\xfb\\x06\\x8d\\x66\\xd7\\xbe\\x07\\x8c\\x7d\\xa6\\x2d\\xe0\\x3a\\xe4\\x45\\x49\\xa0\\xad\\x94\\xdd\\x99\\xef\\xea\\xa4\\x19\\xd4\\xb2\\x92\\xb0\\x09\\xa7\\x75\\xf8\\x06\\x0d\\xf4\\x0a\\xbd\\x7d\\x7a\\xff\\xff\\xe4\\xd3\\xfd\\xff\\x93\\xdb\\x2c\\xa8\\xfa\\xda\\xfd\\x2c\\x46\\x1b\\x33\\xc3\\x53\\x82\\x36\\x8b\\x43\\xf1\\xee\\x43\\x36\\x22\\x83\\xda\\xbc\\x8b\\x6c\\xc7\\xed\\x0f\\xf7\\x32\\x4a\\xee\\x92\\xf3\\x08\\xda\\x40\\x70\\x39\\x72\\x3b\\x7e\\x7c\\xba\\x4b\\xff\\xf2\\xd3\\x2e\\xfd\\xcb\\xdb\\x14\\x29\\xb5\\xf5\\x25\\x93\\x5b\\x16\\x25\\xec\\xf0\\x2c\\x69\\xe1\\x87\\x26\\xa3\\x04\\x07\\x12\\xaf\\x1d\\x43\\x90\\x30\\xa1\\x6d\\x59\\x7e\\x0e\\xfb\\x71\\x46\\x00\\x77\\x0e\\x0d\\x7e\\xd6\\xe2\\x29\\x81\\xbb\\x0f\\xe8\\x68\\x06\\x49\\x8b\\x02\\x7c\\xc5\\x1a\\xd4\\xe1\\x13\\x18\\x54\\xc0\\x9f\\x4b\\x22\\xc9\\xb5\\x01\\x4d\\xac\\x08\\x1f\\xfc\\x3d\\x77\\x50\\x40\\xc1\\x4b\\xe1\\x71\\x34\\x96\\x82\\x9d\\xfa\\x1c\\x50\\xea\\x4c\\x37\\xbe\\xeb\\x67\\x4a\\x7d\\xb8\\xaf\\x5d\\x17\\xbd\\x5f\\xa8\\xeb\\xd9\\xcd\\x96\\xa8\\xd1\\x6b\\x19\\x17\\x1f\\x74\\xc0\\x7b\\x1a\\x25\\x70\\x8c\\xc6\\x83\\xd0\\x3d\\xed\\x63\\xc7\\x11\\x1e\\x63\\xbd\\x99\\xf4\\x39\\xb2\\x96\\x1f\\x1d\\x8a\\xfa\\x01\\x70\\x16\\xbd\\x9f\\x85\\x8e\\x46\\x46\\x97\\xb3\\xf7\\xd8\\xbd\\xd0\\x5f\\x57\\xe8\\xa9\\x07\\x13\\x5c\\x0e\\x46\\x14\\x71\\x2e\\xf9\\x38\\xe0\\xb2\\xb7\\x6c\\x01\\x02\\x95\\x0c\\x38\\xf7\\x52\\xae\\x0f\\x4c\\xdd\\xf0\\x09\\x5e\\x29\\xa2\\x4b\\x42\\x12\\xa3\\x6a\\xe6\\x32\\x6e\\x39\\x91\\xfe\\xd9\\xa7\\x93\\xf9\\x67\\xcf\\xc0\\xab\\xa2\\xe2\\xca\\x45\\xcb\\xa2\\x15\\x99\\xa6\\x6e\\xbd\\xd5\\x16\\xcc\\x12\\x60\\x68\\xa9\\xc1\\x8a\\xc7\\x71\\x5f\\x4a\\x0b\\x91\\x1f\\x2a\\x2d\\x64\\xb4\\xc8\\xc9\\x2a\\x18\\x33\\x28\\x2d\\x8a\\x68\\x4a\\x2e\\x86\\xc4\\xd6\\x9c\\xf9\\x32\\x44\\x76\\x62\\x6f\\x45\\x76\\x49\\x46\\xcb\\xe1\\xcb\\xef\\xad\\xc8\\x39\\x1e\\x66\\x1f\\x53\\x96\\xa0\\xed\\x53\\x6b\\xe3\\x41\\x0f\\x71\\x40\\x84\\x1f\\xea\\x21\\x20\\xb5\\xd2\\x4c\\xd3\\x3b\\x68\\xd0\\xa8\\xc3\\x8f\\x10\\x6e\\x62\\x59\\x00\\x9c\\xe8\\x9c\\xa3\\x43\\xff\\x49\\x7d\\x78\\x4b\\x18\\x74\\xac\\x48\\x22\\x66\\xb8\\xc8\\x1f\\x7c\\x4a\\xd7\\x47\\x2d\\xd1\\x5e\\xaf\\xa6\\x0a\\xa8\\x20\\xad\\x2f\\x0d\\x43\\x0d\\xbd\\xc0\\x27\\x28\\x65\\x32\\xe8\\x42\\x7d\\xad\\x29\\x26\\x8e\\xe1\\x42\\x6a\\x17\\x67\\xde\\x19\\x24\\x5b\\x1a\\x43\\x59\\xd7\\x71\\xb3\\x44\\xcc\\xe5\\xc5\\xa9\\x53\\x4a\\xf8\\x8b\\x3e\\xf1\\xfe\\xbe\\x5a\\x1e\\xb4\\x47\\x87\\x82\\x3f\\x96\\x02\\x65\\x8e\\xe0\\x46\\xc3\\x26\\xd8\\x52\\xef\\x33\\x47\\xb1\\x2d\\x3e\\xd7\\x97\\x3d\\x3d\\xd3\\x3f\\xfd\\x74\\xa6\\x7f\\x7a\\x7b\\xa6\\x23\\x3e\\x6e\\x5b\\xce\\xdd\\x17\\x1c\\xd3\\xe5\\x9a\\x57\\xbc\\x1e\\xd6\\xdb\\xe2\\x32\\xf0\\x6f\\xa5\\x6e\\x3c\\x89\\xb8\\x38\\x4c\\x5e\\xdc\\x7c\\x27\\xe2\\xa2\\x93\\x0c\\x4d\\x4f\\xe1\\xa7\\xf5\\x44\\x3a\\xbc\\xe9\\xcc\\xa6\\x71\\x16\\x1d\\x8a\\x78\\xb8\\x5f\\xee\\x8e\\xa6\\x17\\xea\\xb4\\x9a\\x5b\\xae\\x93\\x2d\\x0a\\xbf\\x69\\xce\\x31\\x18\\xae\\x23\\x19\\xd4\\x14\\x2a\\xa4\\x12\\xad\\xcc\\x2f\\xa3\\xd7\\x5a\\xec\\x0c\\xa6\\x90\\x51\\x54\\xb6\\xaf\\xdb\\x89\\x8a\\xc9\\xc1\\x09\\xb9\\x3b\\x1a\\xab\\x16\\xce\\x9c\\x37\\x34\\x82\\x3f\\xfb\\x74\\x64\\x7e\\xf6\\x8c\\x0f\\x35\\x17\\xe0\\x39\\x0b\\x2f\\xa2\\x40\\xdd\\xfb\\xa5\\x9f\\xb9\\xd3\\x55\\xf3\\x68\\x7e\\x59\\x7b\\x8e\\x7b\\x75\\xf0\\x5c\\xc2\\x80\\xe7\\x0d\\xdf\\x9c\\x7f\\xf5\\x69\\xbb\\xff\\xea\\x76\\xbb\\x51\\xa0\\xa8\\x9f\\x45\\xd0\\x1c\\xf5\\x6b\\x73\\x41\\x47\\x73\\xd2\\x2f\\x31\\xec\\x9c\\xa1\\x17\\xbf\\x25\\xe3\\xff\\xf9\\xa7\\xcd\\xfd\\xf9\\x73\\x5b\\xbd\\x96\\x60\\x21\\x69\\xa8\\xb8\\x78\\x79\\xeb\\x0d\\x83\\x05\\x81\\x6d\\x96\\xf8\\x7a\\x4a\\xe8\\xa5\\xb0\\xd1\\x8d\\xdb\\x89\\x72\\xb9\\x8a\\xc3\\xa1\\x7a\\xf4\\xc9\\x30\\x6d\\xe4\\xb1\\xd1\\x75\\x92\\x14\\x9e\\xd1\\x49\\x05\\xb5\\x85\\x2e\\x43\\x0a\\xa9\\x16\\x2a\\x22\\xd8\\x4a\\x73\\x8c\\x49\\x01\\x42\\xe2\\x80\\x31\\xc4\\x9e\\xa0\\x1a\\x54\\xbb\\xa3\\x58\\xf5\\xb1\\xd1\\xf9\\xd8\\xe8\\x94\\xd7\\x8d\\x4e\\xcb\\xe0\\x97\\xea\\x77\\xf0\\x57\\xa3\\x0e\\x85\\x25\\x1c\\x3e\\x13\\xe8\\xc0\\xcf\\x19\\xb1\\x67\\x31\\x1e\\x22\\x6f\\x8b\\x7e\\x86\\xc3\\xe7\\xaa\\x38\\xde\\x0c\\x28\\x58\\xd4\\xa7\\x2f\\x53\\x3d\\xc1\\x01\\xbe\\x4e\\x9a\\xe6\\xd5\\xf0\\x9b\\xa0\\xb1\\x36\\xa5\\x68\\x0c\\x36\\x7a\\x2c\\x75\\xe6\\x64\\x2d\\x0a\\x9d\\x93\\x25\\xda\\x90\\xb8\\xb8\\xd0\\xce\\x32\\xe0\\xb7\\x51\\x23\\x61\\xdd\\xd7\\x46\\x1f\\x3c\\x45\\xe4\\x70\\xd7\\xce\\x1a\\xe5\\xe5\\x6a\\xd6\\x73\\xba\\xf6\\x56\\x38\\xa9\\x98\\x5c\\xad\\xff\\x92\\xbc\\xe6\\xe0\\xb5\\xdf\\x31\\x4c\\x3a\\xb0\\xcf\\x99\\x68\\x39\\x11\\x8d\\x38\\xbb\\xf8\\xc5\\x93\\x6a\\xdf\\x97\\xc4\\x99\\x71\\x47\\xb7\\x1c\\x9f\\xce\\x9f\\xce\\xff\\xf9\\x39\\x49\\xba\\xf6\\x67\\x5a\\xbd\\x7a\\x9c\\x39\\xf8\\xd2\\xcf\\x64\\xb9\\x56\\x5d\\xfd\\x89\\xa5\\x5d\\x6b\\x7d\\x2d\\x43\\xcf\\x5b\\x76\\xe6\\x9f\\x7f\\xda\\xe6\\xcf\\x9f\\xc1\\x0a\\x72\\x35\\xc2\\x49\\xed\\x21\\x1d\\x67\\xaf\\xd5\\xdd\\x8f\\x5f\\x8a\\x25\\x0b\\xfe\\x34\\x8d\\x75\\x1d\\x3f\\xe8\\x2d\\xdd\\xc1\\xbf\\xfe\\xb4\\xe5\\x7f\\xfd\\x0c\\x70\\xe2\\x8f\\x71\\x1c\\x7a\\x59\\x1c\\x8e\\x19\\x1c\\x2e\\xc7\\x00\\x83\\x1b\\x30\\xa0\\x15\\x70\\x86\\x73\\x8e\\xf9\\x38\\x4c\\xb8\\x79\\x98\\x70\\x8b\\x7f\\xac\\x35\\x10\\xb3\\x40\\x16\\x0b\\x5c\\xa3\\x11\\x61\\xc2\\x22\\x70\\x44\\xaf\\xa5\\xcc\\x4e\\x8d\\x63\\x4c\\x29\\x9a\\x14\\x0a\\x40\\x5a\\xb3\\x5b\\x6f\\xac\\xa9\\x57\\x6d\\xa3\\xb0\\x81\\x1d\\xfc\\x34\\x1b\\x25\\xcd\\x82\\x37\\xd2\\x6d\\x56\\x4f\\x55\\xf9\\x99\\x8f\\xfe\\x37\\x9f\\x7e\\xf4\\xbf\\x79\\x26\\x8c\\x67\\xb4\\x60\\xda\\x64\\x51\\x6a\\x10\\xb1\\x83\\xaa\\x08\\xd3\\xc5\\x23\\x36\\xeb\\xbd\\x8d\\x21\\x5b\\xe6\\x75\\x7c\\x48\\x09\\xce\\x6e\\xa3\\xe7\\x06\\x57\\x70\\x60\\x49\\xdb\\x8e\\x97\\x3d\\xdd\\xa5\\xed\\xd3\\x2e\\x6d\\xb7\\x15\\x47\\x80\\xce\\x45\\x54\\x07\\x55\\x7f\\xf8\\xda\\x1f\\x05\\xb1\\x7d\\xfa\\xed\\xf7\\x9f\\xbe\\xfd\\xfe\\xf6\\xdb\\x79\\x19\\x79\\x37\\x27\\x6d\\x2e\\xbc\\x25\\x70\\xc2\\x32\\x17\\xc9\\xa5\\x9f\\xd3\\xfd\\xe2\\x6a\\x5b\\xc2\\x57\\x26\\x7d\\x73\\xe3\\xa6\\x32\\xce\\x16\\xba\\x31\\x1c\\xbc\\x07\\x6f\\x3c\\xb4\\xb9\\x5a\\x2d\\x47\\x8f\\x8f\\xe3\\xf5\\x74\\xdf\\xfe\\xe2\\xd3\\xbe\\xfd\\xc5\\x73\\xfb\\x6d\\xd4\\x7e\\xd3\\xdc\\x18\\xd0\\x92\\x97\\x6b\\x79\\x35\\x72\\x70\\x16\\x1e\\x7d\\x4b\\x1d\\xad\\x2e\\x25\\x7c\\x1f\\xd7\\xc6\\x1b\\xb7\\x36\\xde\\x2f\\x3e\\x6d\\xfc\\x17\\xcf\\xa8\\x0d\\x8a\\x9f\\x0a\\x15\\x32\\xe6\\x66\\x16\\x70\\xbc\\x2d\\x5a\\x3e\\x11\\x64\\x51\\x92\\x69\\xed\\x03\\x78\\x38\\x25\\x9c\\xf1\\x23\\xb8\\x8d\\xe9\\x74\\x18\\xad\\x79\\xed\\x02\\xb5\\x6c\\x2b\\xf6\\x67\\x2c\\x39\\xb4\\x9e\\xa0\\x5a\\xba\\x52\\x30\\x6f\\xac\\x57\\xb2\\x2e\\xea\\xcf\\x05\\xf3\\xac\\x8d\\xa5\\xe9\\x86\\x92\\x86\\xc2\\x96\\x64\\xcf\\xf0\\x7d\\x71\\x02\\xa5\\x2c\\x41\\x78\\xaa\\xf9\\xf2\\x8f\\x59\\x46\\xd0\\xa2\\xfe\\xbd\\xdf\\x2d\\x95\\xd0\\xd5\\x12\\x85\\x4d\\x0a\\x95\\xd0\\x80\\x8f\\x33\\x2f\\xcb\\x2d\\x15\\x52\\xc7\\x27\\x41\\x6e\\xae\\xaf\\x1d\\x2c\\x45\\xa0\\x1f\\xee\\x21\\x4f\\xb0\\xed\\x39\\xb4\\x96\\x3a\\x1c\\x36\\x52\\x7d\\x22\\xc8\\xa8\\x84\\xd3\\xa5\\x03\\x1b\\x32\\x07\\x42\\x51\\x8a\\x4f\\x80\\x21\\x5d\\xcd\\xb1\\xe2\\x63\\x37\\x5d\\x27\\x6d\\x39\\xb1\\x68\\x21\\xb8\\x82\\xa9\\xd8\\xe6\\xc7\\xe3\\xcb\\x25\\xc7\\xc7\\xe4\\xc2\\xec\\x6a\\x70\\x1d\\x1a\\x6c\\x8b\\x4f\\x28\\x1c\\x6e\\x5b\\x5d\\x33\\x22\\x38\\x82\\xc9\\x58\\x4f\\x73\\xc8\\x2c\\x49\\x94\\x8a\\x05\\x66\\xbf\\x23\\x62\\x0c\\xfc\\x08\\x44\\xff\\x8d\\x58\\x12\\x27\\x95\\xac\\xe0\\xb8\\xab\\x04\\x3b\\x2e\\x99\\xc1\\xa8\\x49\\x09\\x27\\xe1\\xcd\\xa8\\x43\\x38\\x59\\x23\\x7f\\x43\\xd2\\xfc\\xcb\\x4f\\x57\\xcc\\x5f\\xde\\xde\\x4a\\x4b\\xfa\\x05\\x12\\x39\\x58\\x80\\x87\\xee\\x6b\\x22\\x0c\\xb6\\xde\\x46\\xca\\x3a\\x33\\x0f\\xa3\\x05\\xf5\\x3c\\x8c\\x5e\\x05\\xe3\\x61\\x3f\\xdf\\x71\\x96\\x5c\\xdc\\x39\\x07\\x2c\\xf4\\xb0\\xc2\\x04\\x29\\x0c\\xc8\\x0e\\x85\\x48\\x89\\xe0\\x05\\x7b\\x4a\\x4e\\x15\\x6f\\xd1\\x69\\x35\\xa5\\x75\\xce\\x6d\\x80\\xf0\\xd8\\x4c\\xf2\\x16\\x23\\x31\\xf3\\xa3\\x30\\x47\\x5f\\xe1\\x08\\x85\\x60\\xe8\\x68\\x21\\x47\\xde\\x11\\x4c\\x7c\\x14\\x6b\\x79\\x80\\xbc\\x0a\\x0f\\xb4\\x03\\x84\\x28\\xe2\\x97\\xb8\\xa5\\x15\\xde\\x3f\\x1d\\x9f\\xfd\\x99\\x1d\\xc5\\xd1\\x5c\\x4b\\xd6\\x64\\x5f\\x3b\\x0a\\xbc\\x00\\xc1\\x0e\\x6e\\xcb\\xf5\\x62\\x44\\x23\\x2f\\x18\\xaf\\xcd\\x62\\xab\\x65\\xdf\\x4e\\x14\\x63\\xa3\\x0e\\x93\\xaf\\xe9\\x56\\xa2\\x87\\xec\\x21\\xdc\\x4e\\x03\\x96\\xcf\\x13\\xe9\\xf7\\x9e\\x92\\x1f\\x37\\x1d\\x3c\\x45\\x78\\x60\\xd3\\x49\\x5f\\x9b\\xce\\xa9\\x89\\xf0\\x2c\\x18\\xae\\xa3\\xe4\\x1e\\xaf\\xfe\\x5c\\x06\\xe9\\x5e\\xe2\\xef\\x48\\x58\\x30\\x61\\xec\\x85\\x0f\\x15\\xb1\\x4c\\xe6\\x71\\xb7\\x36\\xdd\\x0a\\x37\\x92\\x15\\xbb\\xb4\\x36\\x9d\\x5f\\x37\\x9d\\x1d\\x7a\\x58\\x78\\xbe\\x6b\\x6d\\x10\\x5f\\x9b\\x0e\\x61\\x1a\\xc7\\xae\\x03\\x8a\\x63\\x44\\x13\\xd5\\x9e\\xa2\\x89\\x11\\x19\\x70\\x79\\xe8\\x0f\\xf7\\xd4\\x4b\\x7c\\x27\\x2f\\xf4\\x8e\\x18\\x96\\x56\\x0b\\x25\\x95\\x81\\xf1\\xb1\\x4d\\x60\\x63\\xc5\\xbe\\x43\\xbc\\x42\\xed\\x3b\\x8d\\xeb\\xbe\\xf3\\x3f\\xd8\\x77\\xc7\\x25\\xc4\\x95\\xd4\\xcd\\x90\\xef\\xb1\\xef\\xa0\\xed\\xf3\\x98\\x2c\\x86\\x16\\xb8\\x68\\x0e\\x15\\xa5\\xef\\x3b\\xb3\\xdf\\x59\\x64\\xab\\x6b\\xb0\\x20\\xbb\\x34\\x19\\xeb\\x69\\xec\\xbb\\x7a\\x5d\\xed\\xbb\\x81\\x19\\x5c\\x3e\\x95\\xb1\\x7b\\xd2\\xda\\x77\\x63\\xed\\xbb\\xa2\\xc6\\x70\\x02\\xe0\\xb5\\xef\\x82\\xb0\\x7b\\x33\\x47\\x33\\xc2\\xc0\\x8c\\x63\\xf4\\x6f\\x30\\xed\\x7f\\xfb\\xe9\\xc2\\xfa\\xb7\\xb7\\x7d\\xa9\\x07\\x37\\xef\\x79\\x96\\x83\\x61\\x5f\\xa3\\x88\\xc9\\xe0\\xe8\\xb9\\x84\\xb4\\xac\\xb9\\xaa\\x3d\\x01\\x1d\\x3d\\x82\\xde\\x10\\x8d\\xd7\\xc7\\x55\\x5c\\xe3\\x58\\x81\\x89\\x09\\x8f\\x5c\\xef\\x6d\\xa4\\x1e\\x9b\\x6f\\xf8\\x2c\\x69\\x2a\\x7a\\x47\\xf8\\x8f\\x0b\\x96\\x66\\x0d\\x78\\x71\\xbc\\xde\\x69\\x3b\\xfa\\xf0\\x70\\x0f\\xbf\\x12\\xea\\x67\\x97\\xdc\\xa3\\x47\\x0b\\x62\\x08\\xa7\\x21\\x85\\xaa\\x07\\x1c\\x22\\x12\\x5e\\x6d\\x25\\x30\\xd2\\x1d\\x75\\x1e\\x08\\x3e\\x25\\xea\\x06\\xd7\\x08\\x22\\xb7\\xa5\\xfd\\x64\\xf7\\x19\\x76\\x55\\x83\\xd2\\x75\\x37\\x32\\x5f\\xe2\\x56\\x1c\\xf0\\x5f\\x7d\\x3a\\x68\\x7f\\x75\\x1b\\xde\\x65\\x6f\\x62\\x03\\xb1\\x6e\\x85\\xb8\\x8b\\xbf\\x63\\xe5\\x0a\\x23\\x20\\xa7\\xfa\\x6a\\x31\\xa0\\x33\\x76\\xe6\\x59\\xdf\\xe2\\xe6\\xcb\\x6e\\x32\\x74\\x2f\\xca\\x1c\\xbd\\x37\\x63\\x82\\x53\\x94\\x52\\xb6\\x28\\x31\\x9d\\xbd\\x0d\\x04\\xf4\\xd4\\x00\\xfa\\xd2\\xcc\\x8e\\x98\\x34\\xa0\\x4e\\xea\\xfb\\x3a\\x49\\x6a\\x08\\x18\\xf8\\xc1\\xce\\xca\\xa9\\xcb\\x23\\x88\\x7e\\xe0\\x3d\\x21\\x87\\x85\\x63\\x10\\xe4\\x1c\\x5f\\x63\\x26\\xde\\xaf\\xaa\\x4e\\x8e\\x89\\x98\\xa8\\x62\\x6a\\xe7\\x1c\\xb2\\xe7\\x62\\x97\\xd2\\x12\\x2b\\x71\\x2c\\x9c\\x58\\x28\\x05\\xe6\\x0d\\x12\\x8d\\xab\\x43\\x02\\x41\\xa3\\x09\\x61\\x06\\xd6\\x0b\\x31\\x9b\\x8a\\x98\\x95\\x6e\\x8b\\xc9\\x96\\xac\\x04\\x97\\x23\\xea\\xbc\\xe3\\xa4\\x73\\x36\\x01\\x67\\x1e\\x53\\xc1\\xa9\\x19\\xfa\\xd1\\x21\\x3a\\xdd\\xe1\\x10\\xba\\x07\\x19\\x48\\x41\\xc9\\x83\\x61\\x01\\x4d\\x72\\xf4\\x84\\x63\\x99\\x2f\\xd5\\x78\\x91\\x37\\x5e\\x62\\x98\\xc2\\x12\\x41\\xda\\xc4\\x8b\\x36\\x92\\xb6\\xb5\\x3d\\x43\\x5a\\xc9\\x52\\xe9\\x76\\x17\\x86\\x48\\x32\\x9d\\xae\\x07\\xb8\\xd0\\xef\\xc1\\xc5\\x38\\xc2\\x2e\\x27\\x0d\\x6d\\xcc\\x32\\x0b\\x38\\x68\\xb7\\x33\\xdb\\xd8\\xd9\\x63\\xc5\\xc1\\x66\\x42\\xb8\\x82\\x17\\xa8\\x3b\\x94\\xad\\xd0\\xa2\\xa8\\x15\\xc2\\x8e\\x9e\\x40\\xd8\\xcb\\x97\\x76\\xb9\\x7d\\xd4\\x62\\xf0\\xde\\x58\\x74\\x1e\\x8b\\xe5\\xe9\\x25\\x37\\x3f\\x5d\\x72\\xf3\\x19\\x06\\x80\\x78\\x29\\x2b\\x66\\x55\\x50\\xd1\\x6c\\x6c\\x66\\xc7\\x4f\\x79\\xec\\xda\\xba\\x09\\xc2\\xfb\\xd3\\x8d\\xfd\\xbb\\x4f\\x1b\\xfb\\x77\\xcf\\x79\\xd9\\x1f\\xc8\\x16\\x84\\x57\\x3d\\x77\\xa8\\x36\\x05\\x9f\\x28\\x87\\x66\\x12\\xf2\\xb0\\xcf\\xd1\\xa5\\x71\\xff\\x1e\\xba\\xd1\\xe1\\x6f\\x5f\\x0b\\x33\\x27\\xc3\\x2b\\xd1\\x26\\x16\\xed\\xa0\\x89\\xd0\\x38\\xcf\\x0d\\xbe\\xf6\\x87\\xe8\\xb7\\x71\\xed\\x1f\\xcf\\x9d\\x0f\\x1d\\x79\\x0d\\xb8\\xb0\\x4d\\x71\\x3b\\x7c\\xc8\\x6a\\x8b\\xfb\\x42\\x29\\xba\\x17\\xe3\\xaa\\x01\\x37\\xd8\\x68\\xe0\\x78\\xcb\\x45\\x11\\x78\\xdc\\x49\\x41\\x04\\x13\\x34\\x91\\x66\\xed\\xa3\\x4e\\xe3\\xe9\\x11\\xb9\\x7c\\x3a\\x22\\x97\\x67\\x42\\x4e\\xb2\\xd1\\xa0\\x0d\\xce\\xd2\\xd7\\xb1\\x96\\xcd\\xdd\\x5b\\xcd\\x85\\x6d\\x88\\x79\\xac\\xcf\\x21\\xdb\\x8e\\x9b\\x9f\\x6e\\xf2\\xdf\\x7f\\xda\\xe4\\xbf\\x7f\\x46\\x76\\x41\\x24\\x36\\x9c\\x43\\x98\\xc7\\x56\\x6c\\xa9\\xfe\\xb6\\xa5\\xf2\\xf6\\xb3\\x0f\\xdd\\x06\\xbc\\xed\\xfa\\x96\\xf0\\x16\\xb4\\xad\\x80\\x48\\xfd\\xbd\\x9c\\xa2\\x56\\x3f\\x63\\x6c\\x19\\xd2\\xfa\\x79\\x98\\x6e\\x0e\\xb7\\x29\\xd2\\xad\\xe8\\x56\\x3f\\x73\\xf6\\x6d\\x5c\\x87\\x29\\xc7\\x76\\x34\\xfa\\x74\\xd7\\xff\\xc3\\xa7\\x5d\\xff\\x0f\\xcf\\xc4\\xdc\\x65\\xed\\xe9\\x2d\\x73\\x7c\\x1c\\xac\\xdc\\x60\\x2d\\x96\\xf1\\xbd\\xc9\\x80\\x64\\x73\\xa1\\xe6\\xca\\x1b\\xeb\\xc0\\x4f\\xb1\\x99\\x1f\\x77\\x1d\\xc2\\xd5\\x99\\x9d\\xb7\\xe3\\x85\\x4f\\x77\\xeb\\x3f\\x7e\\xda\\xad\\xff\\xf8\\xcc\\x24\\xf6\\xe6\\xce\\x5b\\x8e\\xab\\xb0\\x43\\x6c\\x9b\\x1b\\x02\\x99\\x37\\x37\\xcc\\xa5\\xea\\x66\\xca\\xf8\\xe5\\x6a\\xe7\\xa8\\xe1\\x3a\\x9e\\x7d\\xba\\x07\\x0f\\x9f\\xf6\\xe0\\xe1\\x19\\xf7\\x60\\x6f\\x3f\\x50\\xf2\\x51\\xcd\\x14\\x8f\\x96\\xb2\\x8d\\xc2\\xf7\\xb5\\x97\\xc9\\xf8\\xaa\\x02\\x41\\xc8\\x97\\x2c\\x44\\xb2\\x1d\\x8f\\x3e\\xdd\\x81\\xff\\xe5\\xd3\\x0e\\xfc\\xf2\\xfd\\x8b\\x97\\x7f\\xfd\\xea\\xdb\\x67\\x83\\x14\\xe1\\xcd\\x6d\\xce\\x67\\xf3\\xb8\\x9c\\x98\\xfa\\x39\\x72\\x5c\\x4e\\x42\\x7c\\xd6\\xea\\x82\\xbb\\xe2\\x97\\xba\\xe7\\xe9\\x46\\xff\\xd7\\x47\\x8d\\xbe\\x78\\xf9\\xd7\\xcf\\x07\\x08\\xb1\\x1d\\x6b\\x52\\x6a\\x77\\x46\\xac\\x68\\xa1\\xe1\\xba\\x5d\\xaf\\x3c\\xdd\\xd0\\xff\\xf6\\xe4\\xd7\\x3d\\x1f\\x71\\xa8\\xc5\\xfc\\xf0\\x0d\\xe1\\xc7\\x57\\x49\\x5f\\xdf\\xe9\\xde\\xf1\\x55\\xf8\\xa5\\xee\\x79\\xba\\xd5\\xff\\xfd\\x71\\x4c\\xdf\\xcb\\xd7\\xaf\\x5f\\xbe\\x7e\\xff\\xf2\\xbb\\xdb\\xc9\\x58\\xc4\\xa9\\xb9\\xc7\\x99\\xd5\\x10\\x69\\x77\\x24\\x64\\xc9\\x2d\\x87\\xe0\\xc2\\xf0\\x80\\xb2\\x00\\x81\\xdd\\x90\\xf6\\x38\\xed\\x82\\xbf\\x8e\\x67\\x9f\\xee\\xcb\\xff\\xf1\\x69\\x5f\\xbe\\x7b\\xfb\\xe5\\xab\\xf7\\x1f\\x5e\\xbe\\x7b\\x7f\\xdb\\xdb\\x0e\\x6a\\xd6\\x13\\x42\\x36\\x62\\x01\\x2d\\xd3\\x4b\\xfd\\xfd\\x74\\x03\\xff\\xe7\\x63\\xdf\\x94\\x17\\xcf\\x38\\xb9\\xaf\\xd0\\x1f\\xe1\\xb3\\x07\\x6d\\x2b\\x1f\\x47\\x22\\xd7\\xc4\\x76\\xbd\\xf2\\x74\\x23\\x2f\\x1e\\x8d\\xe8\\x6d\\x7c\\x25\\xd1\\xfa\\x9e\\x5c\\xb4\\xad\\x25\\x17\\x41\\x58\\x76\\x3d\\xf3\\x1d\\xec\\xb5\\x50\\xb3\\xf6\\x36\\x16\\xc4\\x13\\x9a\\xae\\xde\\x4e\\x4b\\x2f\\x0f\\x2d\\x9a\\xc9\\x47\\x2d\\x1a\\x4f\\x2e\\x99\\x4f\\x27\\x1d\\xf1\\x0b\\x14\\x08\\x5f\\xdf\\xeb\\x28\\x4b\\xf5\\xd9\\x54\\x97\\x57\\xb3\\x59\\x9f\\x3a\\xb4\\x39\\x75\\xe4\\xe6\\x70\\xce\\x73\\x12\\x5d\\xc2\\x78\\x4f\\x5a\\xde\\xdf\\x63\\x44\\x1b\\x96\\x30\\xee\\xa5\\xc4\\x0c\\x68\\x9a\\x6d\\x3a\\xc1\\x5e\\x40\\xbb\\x01\\x04\\x77\\x42\\xb0\\x73\\x0e\\x87\\x56\\x36\\x55\\xa6\\xa8\\xc0\\x2b\\x56\\x20\\x5b\\xca\\x46\\x59\\x47\\xdd\\x0b\\xe7\\xc1\\x13\\x5a\\x18\\xe1\\x00\\x02\\x6f\\x26\\xa2\\x25\\x2e\\xf5\\x28\\x71\\x29\\x16\\x8e\\x8a\\x03\\x50\\xb5\\x08\\x18\\x98\\x3a\\x9c\\x09\\xa8\\x93\\xc2\\x75\\x38\\xe1\\x2a\\x20\\xd4\\xc2\\xfa\\x85\\xb9\\xe4\\x21\\xa1\\x06\\x1d\\x78\\x87\\x50\\x0f\\x7f\\xd9\\x5a\\x80\\x1b\\xe4\\xc6\\x7e\\x4e\\x89\\x87\\x15\\x5e\\xe8\\xbb\\x77\\x6b\\x25\\xd2\\xfb\\x72\\x60\\x0d\\x07\\xf9\\x5e\\x4e\\xda\\x24\\xd0\\x17\\x4b\\xef\\x17\\x93\\x38\\x7b\\xca\\xee\\xa4\\x77\\x26\\xd1\\x0a\\xc2\\x19\\x1b\\x82\\xe4\\x14\\x36\\x2b\\x69\\x4a\\x3c\\x79\\x64\\x43\\x4e\\x91\\x3a\\x16\\x63\\xe9\\xd9\\xb8\\xe7\\x94\\x65\\xab\\x9d\\xaa\\xf8\\xcc\\x15\\x81\\x78\\x63\\xef\\xff\\xf2\\xd1\\xde\\x7f\\x0e\\xb3\\x70\\x33\\xe9\\xfb\\x82\\x2c\\x50\\x02\\x68\\xe1\\xb7\\x82\\xbd\\xd9\\xc8\\x3a\\xd4\\x19\\x1c\\x6b\\xad\\x00\\x07\\xf2\\x81\\x03\\xe1\\x69\\x2f\\x90\\x48\\x6d\\x13\\x82\\x12\\x32\\x73\\xc5\\x86\\x0b\\xe5\\x25\\x85\\x76\\x09\\x78\\xd4\\x72\\x83\\xde\\xa8\\x5b\\xac\\xe0\\x4b\\xcc\\xc9\\x4a\\xc8\\xc1\\x70\\x70\\xc1\\xa5\\x6a\\x31\\xc5\\x96\\xd1\\x20\\x60\\xd5\\xaa\\xde\\x19\\x5d\\x4c\\xfa\\xc3\\x7d\\x1a\\xd5\\x1f\\x7b\\x1a\\xdd\\x15\\x43\\x4e\\x64\\x7d\\xe1\\x15\\x7d\\x65\\x36\\x6b\\x6e\\xd3\\x06\\x7c\\xe6\\x33\\xc7\\x6e\\x5e\\xf2\\xec\\x68\\x56\\x02\\xf6\\xe0\\xa9\\xb2\\xa2\\xb5\\xc4\\x97\\x23\\x8b\\x94\\xfc\\x30\\xec\\xc2\\xa3\\xef\\x88\\xde\\x13\\x6f\\xe2\\x35\\xd8\\xfd\\x88\\xb3\\x1f\\xd3\\x6a\\xb5\\x0e\\x98\\x22\\x0a\\xb3\\xd2\\xd2\\x0a\\x03\\xdd\\xcb\\x2c\\x81\\x99\\x4b\\xc0\\x13\\xa9\\x07\\xa1\\xe8\\x31\\xe9\\x17\\xbb\\x05\\x25\\x5f\\x3e\\xf2\\xed\\xbc\\xcd\\x73\\x85\\x11\\x4a\\x94\\x0c\\x4b\\xa3\\x7a\\x75\\x62\\xa8\\x2c\\x88\\x4c\\x25\\xc9\\x8c\\x65\\x70\\x94\\x62\\x8b\\x86\\x90\\x08\\x69\\x0c\\x9d\\x61\\x2d\\xfa\\xe4\\x99\\xd5\\xe7\\x92\\x1e\\x7b\\x2b\\xf1\\x83\\x0f\\x9c\\x79\\x58\\x82\\xd9\\x56\\x40\\x44\\xae\\x80\\x88\\x2c\\x7a\\x10\\xd0\\x57\\x18\\xf7\\x8b\\x39\\xef\\xb4\\x48\\x6b\\xa3\\x7a\\x01\\xd2\\x5a\\x0c\\x6c\\xdc\\xb5\\x48\\x6a\\x26\\x85\\x8e\\x99\\x64\\x3a\\x76\\x57\\xc6\\x1d\\xf5\\xd0\\x99\\xd2\\x11\\x02\\x42\\x9d\\x3b\\xec\\xe6\\xcb\\x03\\x8f\\xe2\\x9c\\xca\\x70\\xbc\\xc5\\x64\\xd5\\x70\\x4a\\x87\\x6a\\x21\\x91\\xb1\\x82\\x5b\\x46\\xae\\x17\\xf7\\xde\\x77\\xa4\\xce\\x2a\\x71\\xb8\\xa0\\x6c\\x3a\\x4f\\x71\\x24\\x5a\\x98\\xd2\\xa9\\x45\\x89\\x7c\\x83\\x9a\\x39\\x5f\\x8c\\xfb\\x8e\\xb8\\x50\\xa9\\xfd\\x52\\x92\\x43\\xe2\\x5e\\x2e\\x31\\x11\\x5e\\x05\\x39\\xd7\\x98\\x3e\\x3d\\x31\\x5f\\x3e\\x4a\\xe0\\x74\\x7b\\xbf\\x58\\x60\\x0d\\xc2\\x9f\\xab\\xc0\\xf8\\x42\\xd4\\x50\\x6f\\xa4\\x1c\\x3e\\xee\\xdd\\x7c\\xe5\\x70\\xa8\\xc1\\x41\\xae\\x95\\x45\\x7a\\xe0\\x99\\xb2\\xfc\\x98\\x52\\x6c\\x6d\\x94\\x12\\xc6\\x2f\\xfd\\x9c\\xe4\\xdb\\x32\\x2c\\xd1\\x3e\\xac\\xe4\\xfd\\x56\\xa2\\x23\\xf3\\xb4\\xb1\\xf6\\x9d\\xc6\\x61\\xe2\\x80\\x58\\xb5\\x72\\x8b\\x94\\x60\\x37\\x14\\xa0\\x1f\\x1d\\x3b\\xd6\\xde\\x3d\\x42\\x65\\xa5\\x23\\x64\\x56\\xb5\\xc8\\x89\\xdd\\xd5\\x02\\x15\\x63\\x44\\x9d\\xea\\x0a\\x79\\x9d\\xde\\x97\\xb1\\xc3\\x96\\x28\\xb6\\xf2\\x1b\\x21\\x15\\x94\\xe8\\x44\\x46\\x91\\x92\\x06\\xe1\\x6b\\x4e\\x97\\x48\\xdb\\x07\\xd2\\xf7\\x14\\x0b\\xe9\\x88\\xc4\\x8b\\xe4\\x96\\x4a\\xf0\\x76\\xcd\\x21\\xd3\\xa9\\xaf\\xad\\x47\\x03\\x5b\\xaf\\x28\\x71\\xd6\\x5c\\x98\\x20\\x00\\x94\\x8b\\x74\\x17\\x8d\\xab\\x0e\\x1e\\xfb\\xfa\\xc9\\x09\\x79\\xf5\\xc8\\xdf\\xf4\\x99\\x4c\\x6e\\xf6\\x29\\x59\\xaa\\xcf\\xe5\\xc9\\x59\\x32\\xf5\\x11\\xb0\\xdc\\xf5\\x88\\xf4\\xa9\\xe1\\x91\\x1d\\x1e\\x5b\\x45\\xdc\\x06\\xe4\\x65\\xdc\\x9b\\x1f\\x09\\xab\\xad\\x95\\xb2\\x16\\xf6\\xca\\x43\\xc4\\x6d\\x80\\xb5\\xb8\\x20\\xc3\\x54\\x2e\\xbb\\xe6\\x40\\xc4\\x15\\xf5\\xc8\\xe6\\xdd\\x2f\\x26\\x72\\x66\\xcf\\x8b\\x51\\x5f\\x51\\x3d\\x70\\x62\\x19\\x70\\xd9\\x93\\x22\\x14\\x44\\xd3\\xfa\\x62\\x26\\xee\\xfd\\x6e\\xac\\x5c\\x20\\xa3\\xb7\\xa1\\xe0\\xcd\\x33\\x11\\x13\\x3c\\xb6\\xe5\\x6e\\x13\\xb4\\x23\\xba\\x89\\x38\\x5b\\x0e\\x6d\\x50\\xfa\\x4b\\x13\\x41\\xa4\\xe0\\xc9\\xaf\\xa1\\x6a\\x0f\\x20\\x16\\x6b\\xbb\\xac\\x48\\xec\\xde\\x34\\x47\\x4b\\xe8\\xab\\x09\\x1a\\x11\\x21\\xb8\\xca\\x2c\\x96\\x2e\\x76\\x4e\\xcb\\x8b\\xeb\\xd8\\x13\\x9b\\xd2\\x60\\x84\\x8d\\x18\\x70\\xb6\\x18\\x49\\xb0\\x2a\\x67\\xf4\\x79\\x7d\\xf3\\xd3\\x73\\xf4\\xab\\x47\\x11\\x7e\\x37\\x23\\xfc\\x91\\x58\\x26\\x87\\x02\\xec\\x58\\x96\\x04\\xa5\\x61\\x9b\\x86\\xe3\\x57\\x1a\\x74\\xa1\\x3e\\xf8\\xac\\x11\\x17\\x22\\x1f\\x3b\\xbc\\xed\\x8a\\x36\\xc1\\x20\\x2b\\x66\\xcb\\xb5\\x53\\x63\\xc0\\xe1\\x8b\\x4c\\x7d\\x66\\x8d\\xa5\\x79\\xe0\\x23\\xea\\x04\\xbc\\xbf\\xce\\xfa\\x84\\xdb\\x03\\x99\\xf6\\x0d\\xde\\x46\\xa4\\x32\\xf6\\xc5\\xc0\\x15\\x79\\xa4\\x68\\x89\\x28\\x0b\\x1d\\xa9\\xcb\\x3e\\x34\\x70\\xd2\\xe0\\xaf\\x08\\xe3\\x76\\xd2\\x1d\\x69\\xe7\\xc3\\x0a\\x5d\\x93\\xb7\\x32\\x8a\\x8c\\xd5\\x57\\xec\\xdb\\x1c\\x37\\x50\\xf0\\x57\\x8f\\x80\\xe1\\x33\\xf4\\x24\\x0f\\x7a\\x92\\x07\\x3d\\xb1\\x5b\\xf4\\x24\\xaf\\xf4\\xe4\\x23\\x94\\xb1\\x83\\x9e\\x90\\x20\\xd1\\x45\\x22\\xf6\\x19\\x7d\\x2b\\x88\\x9e\\x3b\\x34\\x47\\xa7\\xd1\\xa1\\xd5\\x3d\\x51\\x2d\\xdf\\x22\\xff\\xd2\\x0d\\x01\\x85\\x27\\xc9\\xb1\\x52\\x9f\\xa8\\xd0\\x6e\\x3a\\x70\\xd2\\x14\\xbf\\x70\\x87\\xb5\\xe3\\x24\\xc3\\xa1\\xec\\x39\\x09\\xe7\\x64\\x2a\\x1a\\xa4\\xbe\\xf1\\xf0\\xbb\\x13\\x85\\xee\\x4a\\xd6\\x4e\\x22\\xbd\\x15\\xbd\\xab\\x93\\xdd\\xfd\\xf8\\x25\\xd8\\x56\\x5b\\x85\\xf8\\x4e\\x2c\\x06\\xc7\\xe6\\x13\\xf1\\xd2\\x6c\\x92\\x5e\\x48\\x62\\x87\\x85\\x81\\x16\\xb1\\xa3\\x69\\x23\\x9e\\x27\\x76\\x7e\\x10\\xbb\\xfc\\x21\\xb1\\xcb\\x83\\xd8\\xe5\\x41\\xec\\xc0\\xc6\\x41\\x73\\x16\\xb1\\xb3\\x83\\xd8\\x25\\x88\\x5d\\x6d\\xba\\x22\\x76\\x0e\\x62\\x77\\xd0\\x89\\x51\\x63\\x9f\\xab\\x67\\x1c\\x7e\\x09\\x44\\xe8\\xf6\\x15\\x52\\xea\\x84\\x20\\xa0\\x48\\xbd\\x4b\\x49\\xa4\\x89\\x29\\x3c\\xe1\\x74\\xe0\\x0c\\xca\\x83\\xd8\\xf9\\x41\\xec\\xf4\\x20\\x76\\x71\\x10\\xbb\\x7c\\x9e\\xd8\\xfd\\xfa\\x51\\xbe\\x8c\\xdb\\x92\\x52\\xe1\\xe8\\x90\\x1d\\x49\\xce\\x22\\x9a\\xc2\\x85\\x55\\x72\\xfa\\xb8\\x52\\xac\\xa0\\x2b\\xa8\\x4a\\x38\\xef\\xcd\\x34\\x6d\\x89\\x10\\x1c\\xb6\\x36\\x1c\\x7e\\x7d\\xbd\\x79\\x52\\x71\\x1d\\xe9\\x17\\x4f\\xda\\x8b\\x5d\\x87\\x4b\\xab\\xe5\\x31\\xb8\\xc3\\x17\\x23\\xc9\\x91\\xc7\\x2f\\x23\\xa6\\x9b\\xac\\x2f\\x4d\\x5f\\x88\\x0a\\x16\\xf9\\x3e\\xb5\\x18\\xb7\\x74\\xb8\\x10\\x17\\x02\\xab\\xfe\\x85\\xe5\\xd5\\x45\\x60\\x01\\x41\\xb9\\x8c\\x5b\\x7e\\x10\\xaf\\x3f\\xfd\\xf0\\xd7\\xb7\\x65\\x60\\xf8\\xfb\\x0d\\x3e\\x07\\xcb\\xe1\\x89\\x90\\xcb\\x34\\xbd\\x1c\\x13\\xbc\\xcb\\x25\\xc3\\x8e\\xbf\\x11\\x10\\xe4\\x70\\x57\\x29\\x14\\x58\\x70\\x9c\\xac\\x61\\x07\\xa9\\xf2\\xca\\xb3\\xa4\\xbe\\x94\\xe5\\x75\\xd2\\x02\\x49\\xac\\x94\\x97\\x5b\\x41\\x3d\\xb5\\x4e\\x90\\x05\\x24\\x57\\xbc\\x13\\x9e\\xe2\\xec\\x3b\\x32\\x22\\x15\\xcf\\x58\\xd9\\x66\\x0e\\x2f\\x84\\x7a\\xea\\xe9\\x8f\\xfc\\x4f\\x9f\\x7e\\xe4\\x7f\\x7a\\x26\\x5e\\xe3\\xf8\\xc8\\x41\\x74\\xe9\\xfb\\x20\\x2a\\x51\\x74\\x39\\x5f\\x9f\\x68\\xc8\\x2c\\x06\\x7d\\x12\\xee\\xd3\\xc2\\xda\\x49\\x91\\x05\\x8a\\x6b\\xd3\\xc6\\x2e\\x6a\\x38\\x01\\xcb\\x39\\xa9\\x94\\xdc\\x66\\xd8\\xc6\\x1b\\xf7\\xda\\xf3\\x4c\\x7b\\x0d\\xe2\\x09\\xa6\\x4c\\x8d\\x3a\\x71\\xc0\\xa8\\xda\\xab\\x58\\xb2\\x27\\x11\\x3e\\xf6\\xbc\\xc8\\xae\\xeb\\x17\\x41\\x94\\xdf\\xa9\\xbe\\xb2\\x48\\xf0\\x89\\xbd\\xcf\\x02\\x85\\x27\\x2a\\x00\\x98\\xd4\\x3a\\xc6\\x5d\\xfa\\x75\\xdc\\xdd\\xf8\\x8e\\x04\\x8e\\xce\\x48\\x1e\\xea\\xcd\\xa1\\x62\\xaf\\xc1\\x55\\x3e\\xc6\\xbd\\x36\\x5d\\x8d\\xfb\\x4a\\x30\\xaa\\x87\\x51\\xb7\\x9e\\x1a\\x47\\x8c\\xed\\xba\\x24\\x34\\xd6\\x53\\x9c\\xb4\\x08\\x1f\\x27\\xb5\\xe5\\x9d\\x8d\\x29\\x61\\x3c\\xf5\\xf4\\xb8\\xff\\xf5\\xa7\\xe3\\x7e\\x3b\\xad\\x90\\xd6\\x5c\\x6a\\x6c\\x22\\xd1\\x94\\x3e\\x5a\\x53\\xb1\\x7a\\x25\\x2e\\xa6\\x63\\x53\\xaf\\xef\\x30\\xf8\\xea\\x1e\\x24\\xd6\\x06\\x5c\\x7a\\x9d\\xbd\\x98\\x0c\\xbc\\x06\\x4c\\xb7\\xe3\\x5d\\x4f\\xf7\\xe8\\xcd\\xa3\\xe0\\x9d\\xe7\\x97\\x7b\\xb5\\x1f\\x6c\\x4f\\x2f\\x77\\xbb\\x90\\x72\\xae\\x1f\\x4c\\x6e\\x48\\x81\\x5f\\x7f\\xda\\xde\\x6d\\x0d\\x0c\\x25\\x02\\xe0\\x78\\x63\\x24\\x48\\xa2\\x9d\\xe1\\x0d\\x53\\x4b\\x25\\x61\\x7f\\x2f\\xe1\\xc9\\x17\\x85\\xd1\\x83\\xd4\\x2c\\xfb\\x45\\x47\\x50\\x61\\xae\\x7b\\x56\\x64\\xd8\\x31\\x31\\x69\\x09\\xc3\\x38\\x44\\x00\\xc4\\xd3\\xf5\\x8f\\xfe\\x3b\\x9d\\x77\\xa4\\x7d\\xa9\\xd7\\x2c\\xae\\x5d\\xd2\\x3a\\xdc\\x59\\xa9\\x93\\x14\\xff\\x2e\\xe9\\x60\\xcc\\x95\\x1b\\xa4\\xeb\\x46\\xa4\\xf0\\xc2\\xe8\\xc0\\x47\\x1c\\xf5\\x63\\xf1\\xb7\\xb8\\x5b\\x84\\x0e\\x62\\xc6\\x8a\\x41\\x29\\x19\\x25\\x35\\x40\\xa2\\x87\\x83\\x60\\xed\\x08\\x29\\x2f\\x72\\x3c\\x18\\xbf\\x17\\x6f\\x2a\\xc8\\xe7\\x45\\xe2\\xb3\\x4f\\x2f\\xe0\\x23\\x7d\\xf3\\xe8\\xed\\x6a\\x25\\x88\\x36\\xc8\\x56\\x30\\x77\\x81\\x47\\xeb\\x6d\\x0c\\x46\\x34\\x45\\x21\\x5e\\x78\\x15\\x0f\\x01\\x83\\xae\\x16\\xc4\\x3a\\x5a\\x10\\x5a\\xbf\\xb3\\x13\\x1c\\x18\\xf8\\x30\\xd8\\x30\\xbc\\x1d\\xc6\\xc6\\x9d\\x5b\\x3f\\x8f\\x3c\\x50\\xc4\\x2d\\x47\\xc8\\xb7\\x8f\\x42\\x44\\x9f\\x21\\x1a\\xb2\\xa6\\x4e\\x88\\xdb\\x88\\xdc\\x4b\\x82\\x85\\x0b\\x2a\\x2c\\x3a\\xda\\xa7\\x2f\\x33\\x18\\xef\\xc3\\x96\\x48\\xb2\\x52\\xd8\\xc0\\xf7\\x56\\xa3\\x79\\xc2\\xe7\\x86\\x63\\x71\\x02\\xf6\\x05\\xf0\\x2d\\x5b\\x22\\x27\\xdd\\xc1\\xe3\\x52\\x0e\\xca\\x4f\\x10\\xd1\\x54\\xad\\x25\\x07\\xe2\\xd5\\x87\\xe6\\x41\\xf9\\xe9\\xa3\\x73\\xd8\\xe0\\xb3\\xdc\\x72\\x74\\x7e\\xf7\\x28\\x95\\xcd\\xed\\x65\\x29\\x25\\xf0\\xc7\\x4e\\xc2\\x4b\\x12\\x45\\xcc\\x90\\x4f\\xae\\xce\\x49\\x2e\\xc3\\x59\\x21\\x20\\xe8\\x04\\x97\\x24\\x1a\\x07\\xfb\\x23\\x3f\\xc0\\x91\\x8f\\x96\\x7a\\xd8\\xee\\x02\\xec\\x2f\\x91\\x66\\xf7\\x62\\x5c\\x2b\\x28\\x1d\\x39\\x8e\\x80\\x0e\\x85\\x6c\\x69\\x3d\\x94\\x11\\x92\\xc1\\xfa\\xbd\\x7d\\xa6\\xd3\\x91\\x0f\\x89\\x1b\\xd7\\xec\\x16\\x05\\xa3\\x49\\x70\\x22\\xb0\\x89\\x9e\\xb2\\x5e\\xcc\\xe2\\xe1\\x9e\\x8d\\xee\\xea\\xe5\\x6c\\x4b\\x20\\xe5\\x40\\x40\\xf1\\x2c\\x1a\\xcd\\x14\\x53\\x31\\x0f\\xcb\\x6d\\x67\\xac\\xec\\x6b\\x88\\x7f\\xee\\x2b\\x8d\\xe1\\x90\\xc6\\xe4\\xb0\\xc7\\xd4\\x53\\xc5\\xe7\\x8f\\x57\\xef\\x75\\xee\\x5a\\x13\\x28\\x10\\x7f\\xeb\\xde\\xe1\\xb2\\xf0\\x7a\\x6d\\x40\\x78\\xd3\\x97\\x24\\xc0\\x47\\x6a\\x4e\\x3d\\x02\\x99\\xab\\xed\\x01\\x21\\xde\\x96\\xe0\\x0c\\x5d\\x0a\\x06\\xe1\\xe9\\x49\\xfa\\xe6\\x51\\xa2\\xad\\xe7\\x5d\\xa6\\x96\\x06\\xc9\\xc7\\x55\\x83\\x24\\x87\\x06\\xc9\\x0e\\x0d\\x12\\x2f\\x0d\\xd2\\xa1\\x83\\x50\\xfa\\xe8\\x31\\x41\\xb9\\x34\\x48\\xc2\\x97\\x93\\x92\\x9f\\x29\\xfd\\xba\\x7a\\xc6\\x26\\x00\\xb6\\xba\\x2f\\x03\\x1a\\x69\\x83\\xd6\\x14\\x13\\x7e\\x08\\x66\\x3b\\x6c\\xd5\\x0b\\xef\\xf0\\x55\\x89\\x64\\x57\\x25\\x12\\x1f\\x4a\\x24\\x1f\\x3f\\x50\\x22\\xe9\\x58\\x4a\\x24\\x1d\\x87\\x12\\xa9\\x1f\\x4a\\x24\\x5e\\x4a\\xa4\\x1a\\xca\\x63\\x49\\x2d\\x25\\x12\\xad\\x85\\x4f\\x10\\x56\\xe0\\x27\\x08\\xa5\\xa4\\x7b\\x1b\\xa3\\x2f\\xa5\\x64\\xe6\\x85\\x5d\\x76\\x44\\x04\\x17\\x0a\\x45\\x6c\\x7e\\xff\\x7e\\x82\\x7d\\xf9\\x8b\\x17\\x80\\x20\\xb4\\xc4\\xbc\\x74\\x24\\xe2\\x63\\xa2\\x47\\xcf\\x69\\x8d\\xfe\\xe6\\x51\\x1c\\xe2\\x33\\xc2\\xc4\\x38\\x84\\x89\\xf1\\x48\\x39\\x21\\x8f\\x84\\x89\\x43\\x27\\xb1\\x32\\xa0\\x2d\\x61\\x42\\x16\\x81\\xce\\x02\\xb5\\x92\\xdb\\x11\\x13\\x0d\\x41\\x27\\xd7\\xdc\\x64\\x47\\x02\\x18\\xa4\\xfa\\xb4\\x65\\x6a\\xa6\\x84\\x60\\xf2\\x29\\x64\\x1f\\x0b\\xb2\\xeb\\x01\\xd9\\xed\\x80\\xec\\xe3\\x26\\x64\\xbf\\x43\\xa6\\x00\\x5f\\xc8\\x99\\xd9\\x26\\x56\\x06\\xf2\\x55\\x7c\\x92\\x21\\x00\\xde\\x25\\x4b\\x75\\xcb\\x4e\\x97\\xd1\\x63\\x1f\\x03\\xf4\\xa7\\x15\\x6d\\x1b\\x63\\xc5\\x9b\\xa5\\xda\\xa1\\x90\\xb0\\x1f\\xee\\x08\\xfa\\xe1\\x8e\\xe8\\x48\\x91\\x32\\x2c\\x0e\\x94\\x2e\\x3f\\x8e\\xd2\\xdf\\x7f\\x3a\\x0d\\xcf\\x84\\xa0\\xf6\\x43\\x54\\x83\\x5b\\x07\\x08\\x6e\\xae\\xcc\\xd6\\x93\\x7a\\xac\\x8c\\x0e\\x25\\xe4\\xd7\\x9e\\xf5\\x1d\\xfa\\xba\\x04\\xd0\\x36\\x80\\xea\\x31\\x8a\\x80\\xdb\\x1e\\x52\\x9c\\x04\\xae\\x62\\x05\\xcc\\x67\\x31\\x5e\\x4f\\xde\\x74\\x48\\xeb\\x67\\xb1\\xbc\\x0a\\xcd\\xba\\xd5\\xa5\\x91\\x7a\\x19\\xc1\\x90\\xe3\\x32\\x4a\\x9a\\x5c\\x69\\xd0\\xe7\\xb5\\x3b\\x4f\\x7f\\xd5\\x87\\x47\\xc1\\xd5\\xb7\\xbf\\x4a\\x41\\xc9\\x6a\\xe3\\xd4\\x84\\xb6\\x64\\x69\\xe2\\x3c\\x87\\x59\\xed\\xfa\\x19\\xa6\\x4d\\xa1\\x33\\x28\\xcc\\x48\\xbb\\x21\\x8b\\x44\\xb4\\xea\\x9b\\xc9\\xd2\\x3d\\x59\\xc6\\x4a\\x35\\x30\\x18\\x09\\x9c\\x6b\\x06\\x71\\x8c\\x68\\x5c\\x32\\x07\\xc2\\x10\\x97\\x5b\\x1a\\x0c\\x0a\\xf5\\x85\\xd3\\xe5\\xaa\\x31\\xe6\\xeb\\x6a\\xc5\\x42\\x1e\\x04\\xd7\\x11\\xea\\x05\\x14\\x0a\\xac\\x24\\x72\\x3f\\x41\\x9a\\xcc\\x73\\x6a\\xc9\\x35\\x79\\x37\\xd6\\xf0\\x41\\x0b\\x39\\x74\\x65\\x9c\\x09\\xc0\\x03\\x5b\\x6f\\xc6\\xea\\x40\\x98\\x08\\x7c\\x4b\\x6a\\xf0\\x13\\xd9\\xc9\\xd3\\x74\\x4a\\x91\\x85\\xb4\\x29\\x5a\\x70\\x80\\x76\\x51\\x47\\x72\\xd2\\x22\\x49\\x81\\x88\\xb1\\x68\\xee\\x63\\x9a\\x14\\x14\\x2c\\x7e\\x09\\x8f\\x3c\\x84\\xb3\\x5a\\x51\\x67\\xe2\\x66\\x96\\xf0\\x01\\xd2\\x15\\x90\\xa7\\x08\\x70\\xa3\\xee\\x48\\x65\\xb7\\xaf\\x13\\xe0\\x4a\\x39\\x5c\\x20\\xc4\\x1a\\xb2\\xfe\\x96\\xd0\\xfe\\x7d\\xe2\\x11\\x3b\\x3c\\x04\\xa2\\x37\\x86\\x9f\\x99\\xdb\\x0a\\xd9\\xf3\\x98\\x34\\xb2\\x49\\x97\\xb3\\xf4\\xdc\\x85\\xec\\x8e\\x25\\x5b\\x75\\xb9\\x44\\x5a\\xa4\\xa7\\xe2\\xea\\x22\\xb5\\xe4\\x6b\\xd6\\x0d\\x78\\x03\\xc0\\xe0\\x51\\x3f\\x1e\\xce\\x5d\\xc8\\xba\\x80\\x38\\xaa\\x35\\xd9\\x4f\\x2f\\x99\\x6f\\x1f\\x65\\x2c\\x7b\\x36\\x0e\\x9f\\x3e\\x2e\\xd4\\x4c\\xb9\\x2c\\x25\\x10\\x5f\\xa4\\xaf\\xfc\\x65\\xac\\xbd\\xd5\\x26\\xa7\\xcc\\xe9\\x88\\xbe\\x64\\x84\\x8b\\xa4\\xcd\\xc1\\xd0\\x4d\\x8e\\xa8\\x03\\xc8\\x34\\xb2\\x97\\x23\\xe5\\xa7\\x6d\\xf0\\xa7\\x20\\xdd\\xb3\\xa4\\x1c\\x41\\xf6\\xa7\\x13\\x11\\x72\\x55\\xd7\\x60\\x21\\x0a\\x9f\\x91\\xb6\\xa4\\x9d\\x04\\x02\\x1a\\xc2\\x19\\xa3\\x60\\x35\\x34\\xc2\\xd2\\x15\\xbd\\x21\\xff\\xb8\\x8f\\xfa\\xa5\\x3a\\x5b\\xfd\\x7b\\xfa\\xbb\\xbf\\x7b\\x64\\x4e\\x7c\\x26\\x06\\xbd\\x66\\x25\\xf7\\xe1\\x86\\x04\\xc5\\x11\\x4d\\xfa\\x34\\xbf\\xea\\x36\\x8e\\x0c\\x32\\x3d\\x5b\\x4e\\x4e\\xa8\\xf6\\x98\\xa5\\xb1\\x10\\xac\\x6d\\x4a\\x57\\x1e\\x48\\x71\\x51\\xd2\\x5d\\x28\\xe1\\x92\\xba\\x3c\\x69\\x62\\xda\\x28\\xb4\\xba\\x07\\x79\\xab\\x25\\x86\\x8c\\xfe\\x06\\x6f\\x4a\\x21\\xd9\\x92\\xfc\\xa3\\x1a\\x28\\x00\\xed\\x6c\\x3b\\x7a\\xf4\\xf4\\x77\\xfd\\xe6\\xd3\\xef\\xfa\\xcd\\x33\\x9e\\x00\\xa3\\x91\\xf3\\x32\\xc1\\x2a\\x6d\\x48\\xab\\xe0\\xbc\\x65\\x1e\\x82\\x2b\\x11\\xf9\\x56\\xf3\\xd8\\xcf\\xe6\\xb2\\x51\\x3f\\x78\\x08\\x0b\\x6f\\xc7\\xc3\\x4f\\x77\\xe1\\xb7\\x9f\\x76\\xe1\\xb7\\xcf\\x38\\x8f\\x6b\\x13\\x23\\xb8\\x77\\x90\\xe5\\x26\\xe9\\xf8\\x7b\\xc9\\x20\\x83\\xcf\\xee\\x82\\x5a\\x0f\\xf5\\x23\\xa2\\x02\\x4d\\xb7\\x64\\xc2\\xdf\\x88\\xa6\\x38\\x3a\\x0a\\x2f\\xee\\x02\\xfb\\x43\\x05\\x0e\\xe6\\xa1\\x7d\\x73\\xae\\x55\\x26\\x9b\\x8d\\x81\\xbf\\x05\\xba\\x4a\\xe9\\xbc\\xc1\\xb6\\x57\\x0f\\x86\\x6c\\x47\\x1f\\x9e\\xfe\\x92\\xdf\\x7d\\xfa\\x25\\xb7\\x53\\x6a\\xc1\\xab\\x4d\\xfb\\x96\\x05\\x25\\x57\\x9f\\xba\\x6d\\x25\\xe4\\x5a\\x75\\x95\\xb8\\x46\\x31\\x23\\x37\\x67\\x6f\\xea\\xb4\\x71\\x1c\\x99\\x16\\x37\\x5b\\x7c\\x7e\\xa3\\x23\\xcb\\xcc\\x99\\x47\\xdd\\x86\\xf7\\x3d\\xdd\\xab\\xdf\\x7f\\xda\\xab\\xdf\\x3f\\xeb\\xec\\xc1\\x5c\\x23\\xc1\\x8d\\xbc\\x86\\x8c\\xe4\\xda\\x3d\\xcd\\xcd\\xb2\\xb7\\x13\\x85\\xec\\x2b\\xf0\\x82\\x19\\xd9\\xca\\x4e\\xec\\x39\\x91\\x45\\x0f\\xf9\\x02\\x43\\xda\\x49\\x49\\xe1\\x8f\\x07\\xe5\\x04\\xb3\\x2f\\xe5\\x44\\xc9\\x99\\x27\\x15\\x99\\x04\\x65\\x23\\xcb\\x46\\xc8\\xb4\\xcc\\xb2\\x17\\x6e\\x3a\\x15\\x5f\\xe1\\xa5\\xe4\\x88\\xb9\\xb4\\x14\\x85\\x12\\x52\\x96\\x46\\x51\\x84\\xda\\x49\\x88\\x01\\x64\\x4e\\xec\\x3e\\x75\\x11\\x45\\x9e\\x3a\\xc6\\xdd\\x89\\x84\\x91\\xe5\\x9c\\xc7\\x16\\xd7\\x91\\x21\\xda\\x8e\\x6f\\x7a\\x7a\\x64\\xfe\\xf3\\xa3\\x34\\xaa\\xcf\\x08\\x5a\\x76\\xe4\\x72\\xcc\\x51\\x62\\x8e\\x8e\\x8d\\x0a\\x78\\x8c\\x6d\\x8c\\x62\\xde\\x79\\xa6\\xa0\\xab\\x6e\\x58\\x7d\\x43\\x30\\x7a\\xa6\\x6c\\xc7\\x83\\x4f\\x37\\xff\\x7f\\xfd\\xa1\\x93\\xc6\\xab\\x67\\x1d\\x50\\xb2\\x28\\x9a\\x76\\x45\\x6a\\xab\\x93\\x8c\\x2c\\x29\\xb5\\x9d\\x44\\x63\\x06\\x14\\x34\\x25\\xd5\\x82\\x1a\\x76\\x85\\xca\\xd3\\xc6\\x85\\xdd\\xf7\\xda\\x7e\\xda\\x1d\\xf3\\xa5\\xb1\\xb2\\x3a\\x9a\\xca\\xc5\\x62\\x05\\xb3\\x59\\xc6\\xc5\\x29\\x91\\x82\\xcf\\x35\\x90\\x14\\xd1\\xad\\xa3\\x7a\\x4d\\x40\\xfb\\x93\\x2d\\x99\\x2f\\x44\\xc2\\x87\\x0a\\x8c\\xbc\\x2d\\xbf\\xa8\\x94\\x95\\x0b\\x06\\x29\\xd1\\xa0\\x83\\x97\\x9c\\x89\\x58\\xf6\\x8c\\x2d\\x93\\xef\\xc8\\x68\\xec\\xd0\\x4f\\x5b\\xd7\\x36\\xa0\\x92\\xf3\\x3c\\x4c\\x4d\\x25\\x8f\\xc3\\x31\\xd6\\x7d\\x42\\xdd\\x56\\xd2\\x40\\xf2\\x92\\xe6\\x8a\\xd5\\xbb\\x27\\xbc\\xd1\\x35\\xad\\x59\\x2a\\x9a\\xaf\\x3d\\xe0\\x25\\x70\\x84\\xe2\\x21\\x76\\xbf\\xd8\\x80\\xf7\\xe6\\xa9\\x64\\x51\\xf5\\x76\\x0a\\x9f\\x51\\xfc\\x81\\x46\\xc2\\x56\\x7b\\x42\\xc2\\x3f\\x68\\xb8\\x58\\xb7\\xeb\\x48\\x3e\\x3d\\x31\\xff\\xf7\\x63\\x37\\x9d\\xdb\\x78\\xef\\xd0\\x78\\xf3\\xd9\\xfc\\xea\\x07\\xec\\x76\\xa9\\x5f\\x9e\\x7e\\xf5\\xff\\xf3\\xc4\\x9c\\x3f\\xef\\x96\\x53\\x8b\\xbf\\xfa\\xbc\\x4b\\x6d\\x20\\xa1\\x8e\\xb2\\x15\\xf8\\x1c\\xf8\\x6e\\x50\\xf6\\x69\\x31\\xf0\\xc5\\x56\\x83\\xb4\\xe6\\xdc\\x8a\\x38\\x8e\\x44\\x86\\xd0\\x9a\\xf3\\xc1\\x89\\xf1\\x0b\\x04\\xde\\x74\\xfc\\x5e\\xe3\\x5a\\x8f\\x7c\\x9c\\x5b\\xe4\\xf3\\xe3\\xce\\xcd\\xc6\\xe1\\x0f\\xbc\\x6a\\x20\\x0d\\x3a\\x62\\x3f\\x10\\xf4\\x5b\\x73\\x4b\\x63\\x13\\x43\\xb2\\xae\\xd8\\xb5\\x26\\xd0\\x0a\\xea\\x51\\xcd\\xb6\\xe4\\x74\\x44\\xf5\\x20\\xf7\\x14\\xf4\\x76\\x3a\\x03\\xe5\\x2a\\xae\\x73\\xbb\\x9c\\x39\\x5a\\x20\\xff\\x72\\xcc\\x4c\\xa9\\x75\\x57\\x6b\\xf0\\x9c\\xa9\\x5b\\xfd\\x6d\\x38\\x6a\\xab\\x35\\x5a\\xe8\\xc1\\x54\\xf6\\x61\\x2b\\xdf\\x47\\x09\\x03\\xf5\\x4d\\xf5\\xd2\\xeb\\xdc\\x43\\x56\\xf7\\x02\\xc9\\xb5\\xfc\\x05\\x8e\\xc3\\x27\\x56\\x9e\\xf0\\xae\\x44\\xe2\\x57\\x90\\xa4\\xae\\xdb\\x75\\x44\\x9f\\x9e\\xa1\\xff\\xf7\\x09\\x27\\xa6\\x6f\\x5f\\xbf\\xf9\\xf2\\x19\\xc7\\x21\\xf2\\x81\\x5c\\xa4\\x44\\xb5\\x71\\x90\\x2d\\x4b\\x47\\xf3\\x92\\x7c\\x7a\\x72\\x33\\x44\\x40\\x76\\x69\\x5a\\xf2\\xf0\\x90\\xa6\\x2c\\xfb\\x90\\x40\\x01\\xa0\\xc8\\x68\\xb5\\x77\\x82\\xb2\\xa9\\x0b\\x5c\\x2d\\xac\\xe7\\xb4\\xd0\\x66\\xf0\\xaf\\x8f\\x56\\x22\\x9b\\x31\\xd0\\xd2\\x54\\xb7\\x1a\\xab\\x59\\xfb\\xd9\\x83\\xe0\\x20\\xe3\\xa3\\x23\\xe1\\x9a\\x8f\\x0e\\x28\\xed\\xce\\xb3\\x48\\x29\\x6a\\x89\\x14\\xfc\\x51\\x99\\x54\\x10\\xdd\\x8a\\x8a\\xdf\\xa9\\xc7\\x8e\\x98\\x78\\x6a\\x25\\xf7\\x8c\\x44\\x35\\x06\\x4f\\x02\\x12\\x09\\x5f\\x2f\\x8d\\x11\\x7b\\x2d\\x20\\x0c\\x76\\x09\\xca\\xb5\\xbe\\x7a\\xd6\\x87\\xce\\x9a\\xec\\xe8\\x1d\\x59\\xf9\\x5d\\x65\\x87\\x3b\\x3a\\x25\\x12\\xb1\\x22\\xf5\\x98\\xaf\\x0c\\x0f\\x83\\xab\\x99\\xa5\\xd7\\x30\\xce\\x3d\\x6b\\x11\\x32\\x2a\\x65\\xac\\xfa\\x26\\x9d\\x05\\x0f\\x40\\x22\\x72\\x54\\x30\\x09\\x69\\x61\\xb6\\x5d\\x07\\xf5\\x46\\x6e\\xa0\\x7f\\xfa\\xbb\\x17\\xf4\\xc7\\x4f\\x95\\xfd\\xfa\\xf2\\xdd\\x6f\\x9f\\xc9\\xd2\\x03\\xe1\\x58\\xcf\\x1e\\xe3\\x72\\x12\\xb7\\xb3\\xd9\\xb8\\xb8\\xe9\\xc3\\x3d\\x52\\x5a\\x76\\xee\\xc8\\x6d\\x99\\xa3\\xc6\\xd6\\x3f\\xaa\\x55\\x52\\x06\\x72\\xc9\\xa5\\x80\\xf7\\xb6\\xfc\\x3e\\xc7\\x67\\x09\\x97\\xa8\\xf8\\x61\\xd0\\x12\\x22\\xdc\\xfc\\xd0\\x48\\xc9\\xca\\x78\\x8b\\xc0\\x2e\\x98\\xeb\\xea\\xd2\\xd1\\xcc\\xed\\xaf\\xe2\\x47\\x5f\\xf5\\x6c\\xa1\\x1f\\x97\\x58\\x78\\x3e\\x16\\x9e\\xa7\\xe5\\x2a\\x32\\x0e\\x57\\x11\\x3f\\x5c\\x45\\xe2\\x70\\x15\\x71\\x5e\\x59\\xd7\\x96\\xc3\\x37\\x0f\\x54\\xe2\\x48\\x4d\\x3c\\x25\\xd6\\xb8\\x68\\x79\\xb4\\x13\\xf9\\xe5\\xc4\\x6a\\x67\\x0b\\xbf\\x9c\\xc8\\x57\\x0e\\x78\\x6b\\x85\\xb7\\x54\\x26\\x17\\x05\\x77\\x9b\\x94\\xdc\\x84\\x73\\x92\\xfb\\x0f\\xfc\\x46\\x7c\\x69\\x1f\\x12\\xdd\\xc1\\xbd\\x25\\x99\\xc9\\x4a\\x88\\x1d\\xd3\\xc2\\xef\\xc0\\x45\\x49\\x68\\x9c\\x3d\\xe3\\x52\\x7f\\xed\\xcb\\x9e\\x79\\x38\\x18\\x2c\\x55\\x8e\\x69\\x49\\xc5\\x13\\xb5\\xa0\\xc6\\x52\\xe5\\xf0\\xe1\\x45\\x12\\x7b\\x89\\x54\\xcb\\x8b\\x24\\x97\\x17\\x89\\xc9\\xe1\\x45\\x12\\x87\\x17\\x89\\x1f\\xc2\\x9d\\xf2\\xd5\\x8b\\xc4\\x0f\\x2f\\x92\\x38\\xbc\\x48\\xfc\\xf0\\x22\\xf1\\x1f\\x78\\x91\\xf8\\xe1\\x45\\x62\\x87\\x17\\x49\\x1c\\x5e\\x24\\x76\\x78\\x91\\xc4\\x4d\\x2f\\x92\\x9a\\x3b\\x79\\x9c\\xad\\xec\\xdb\\x57\\xef\\xdf\\xbc\\x7e\\x7b\\xdb\\x02\\x8c\\xf2\\x24\\x1a\\x5b\\x41\\x19\\xf1\\xd8\\xd5\\xa8\\x71\\x1a\\x8a\\x4e\\x21\\x57\\xd3\\x38\\x70\\x07\\x09\\x3c\\x12\\x65\\x20\\x40\\x9f\\xc5\\x76\\x38\\xb7\\x92\\x34\\x86\\x2f\\xb2\\xc0\\xcc\\xcf\\x48\\xc4\\x88\\xdc\\x73\\x13\\x98\\xc9\\x03\\xa1\\xa5\\xae\\x71\\x26\\xd1\\x4b\\xe8\\x38\\x4b\\x51\\x6e\\xf8\\xbf\\x49\\xee\\x38\\x21\\x61\\x84\\x18\\x10\\x17\\x79\\x59\\x81\\x09\\x1d\\xe5\\xb6\\x96\\xe5\\x86\\x8e\\x34\\xd9\\xa3\\xdb\\x8a\\xf5\\x1b\\x2b\\xec\\x68\\xac\\x68\\x15\\x12\\xaf\\xb3\\xfa\\x8d\\x15\\x29\\x3e\\xd6\\x54\\x9e\\x73\\xac\\x90\\x3e\\x22\\xab\\xa1\\x2f\\x46\\xd0\\x8f\\x50\\x25\\xbe\\xe6\\xbd\\x91\\x92\\x75\\xeb\\x01\\x09\\x5d\\xf5\\xf5\\x90\\xae\\x71\\x79\\xa1\\x8c\\x15\\x36\\xc0\\x11\\x53\\x91\\x1e\\x3e\\xfa\\x44\\xad\\x98\\x2e\\xb9\\xd5\\x3c\\xd5\\xf7\\xc4\\xe0\\x4b\\x7d\\x9f\\xea\\x33\\x13\\xa3\\x8f\\x37\\xd5\\x77\\xef\\xdf\\xbf\\x7a\\xfb\\xf2\\x36\\x14\\x4e\\x43\\x56\\xa3\\x7d\\x20\\x87\\xe2\\x32\\x48\\x05\\x54\\x06\\x2b\\xa5\\xc6\\x21\\xc5\\xd5\\x5d\\x3e\\xa5\\xae\\x92\\x6e\\x84\\x9a\\x09\\x85\\xfe\\xa8\\x79\\xdf\\x58\\xbc\\x71\\x1f\\x7b\\xfd\\x8c\\x59\\xb2\\x6c\\x12\\x3e\\x6b\\xbc\\xcd\\xe5\\xd0\\x6c\\x03\\x6a\\xb7\\x30\\x9f\\xac\\xda\\x12\\x26\\x0e\\x48\\x54\\x81\\xf7\\x11\\x85\\x42\\xe8\\xa0\\xce\\xb4\\xa3\\xde\\x4b\\x8f\\x81\\x64\\x1e\\x84\\x68\\x28\\xd1\\x3b\\x22\\xd5\\x43\\xfb\\xad\\xda\\x06\\xc2\\x96\\x89\\x66\\xc2\\xee\\x42\\xb9\\x21\\xa9\\x06\\x51\\x14\\x51\\x8d\\xeb\\xbb\\x3b\\xd4\\x38\\xb6\\xe3\\x75\\x70\\x81\\xa0\\xda\\x11\\x76\\x04\\x07\\xa2\\x83\\x75\\x82\\x34\\x60\\xd4\\x47\\x93\\xa8\\x3d\\x28\\xd2\\x98\\x78\\xbd\\xc8\\xfb\\x7a\\xf5\\x89\\x63\\x3b\\x06\\xec\\xe1\\x9e\\x8b\\x7f\\xb9\\xec\\x75\\x54\\xd4\\x1b\\x91\\x26\\xa9\\xe0\\xbe\\xc5\\x8e\\x35\\x56\\xb2\\x5e\\x94\\xcb\\xa1\\x3d\\x58\\x5a\\x1e\\xb9\\x91\\x91\\x8a\\xc6\\x57\\x35\\xb4\\xd4\\x26\\x89\\xb2\\x44\\xb4\\xfa\\xd2\\xd7\\x3a\\x6e\\x99\\x7a\\x17\\x42\\x90\\x78\\x47\\xa1\\xc7\\xc2\\x2f\\xd9\\x0f\\x75\\x4e\\x61\\x18\\x7c\\xb6\\x70\\xa1\\xc3\\x96\\xb9\\xca\\x2d\\xd5\\x9d\\x1c\\xda\\x42\\x78\\x1e\\x3d\\xbc\\xbd\\x5a\\xec\\xd1\\x6a\\xf9\\xfd\\x33\\xb9\\x70\\x9d\\xea\\xa5\\x25\\xee\\x4a\\x7c\\x8c\\x1e\\xf0\\x2d\\x90\\xee\\xd7\\x4a\\x60\\xe0\\x8b\\x17\\xa5\\x0b\\xbe\\x28\\xf1\\xfa\\x41\\xd8\\xf1\\x43\\x3f\\x9b\\xad\\xbf\\x6a\\x67\\xd7\\xe5\\xfa\\xbb\\x6e\\xaf\\xbf\\xeb\\x79\\xeb\\xbe\\xd9\\x35\\x24\\x3f\\x69\\x3b\\x9a\\xbb\\xdd\\x77\\xff\\xe3\\xc7\\x00\\xf3\\xdd\\x5f\\xbf\\x7a\\xfb\\x1c\\x82\\x35\\x95\\x9a\\xc1\\x7e\\xb1\\x4e\\x25\\x41\\x5f\\xea\\x8f\\xb3\\xa9\\x3c\\xdc\\xbb\\x0b\\x12\\x6d\\x94\\xac\\x70\\x60\\x5b\\xb9\\x9d\\x47\\xa3\\x9a\\x8f\\x3f\\xc8\\xd7\\xf8\\xf2\\xd9\\xb4\\x79\\x10\\x75\\x15\\x61\\xcf\\x25\\xa7\\x87\\x2f\\x7e\\x89\\xb0\\xc9\\x6e\\x7a\\x24\\x81\\xa5\\x55\\x8b\\xac\\xa8\\x82\\x0d\\x38\\x2c\\x14\\x60\\xc9\\x95\\x4c\\x6c\\x39\\x37\\x20\\xc2\\xce\\x21\\x15\\x2d\\x62\\x74\\x22\\x41\\x08\\x4e\\xa0\\xaa\\x0f\\x68\\x46\\x3b\\x71\\xae\\xaa\\x0b\\xb0\\x9f\\x97\\x00\\x72\\x2a\\x18\\x59\\xe2\\xd1\\x49\\xd3\\x56\\x3e\\xad\\x12\\x34\\x94\\x12\\x35\\x75\\x60\\x6d\\x3a\\x49\\x72\\x09\\xad\\x77\\x27\\x36\\x20\\x95\\x76\\x42\\xfd\\x99\\x3a\\x32\\x54\\x98\\xa7\\x82\\x7b\\xb8\\x95\\xa9\\x03\\x3c\\x9d\\x84\\x04\\xc9\\x32\\x4e\\x72\\x6d\\x40\\x52\\x76\\xaf\\xee\\x48\\xa2\\x0e\\x4c\\x5d\\x0a\\x94\\x20\\x84\\x15\\x3e\\x91\\x18\\xd2\\x68\\xa6\\xe1\\x85\\x04\\xdf\\xa6\\x53\\x04\\xd4\\x5f\\xa7\\x92\\xae\\x4c\\x8a\\xfd\\x42\\x45\\x96\\xf0\\x96\\x21\\xf5\\x1d\\xa5\\x26\\x90\\x48\\x9a\\xe0\\xbc\\xca\\xc5\\xdf\\x23\\x26\\x41\\x67\\x94\\xc8\\x7f\\x00\\xbb\\x00\\x11\\x12\\x69\\xad\\xa8\\xd8\\x9c\\x54\\x38\\x0b\\x92\\xb6\\x22\\xeb\\xab\\x88\\xb6\\xc1\\xb1\\x73\\x6a\\x1b\\xc8\\x28\\x44\\x77\\x23\\xc6\\xe4\\xbe\\x42\\x36\\x09\\xea\\x13\\xe6\\x49\\xd8\\xe9\\xdc\\x77\\x9c\\x70\\x47\\x4c\\xfa\\x2a\\xfd\\x88\\x22\\x1a\\x32\\x7c\\x15\\xde\\x53\\x93\\x43\\x10\\x40\\x64\\x9d\\x1c\\x91\\x75\\xc8\\x10\\xa4\\x01\\xe3\\x1c\\xca\\x53\\x5e\\x23\\xeb\\xc6\\x35\\x1f\\x90\\xda\\x39\\x23\\x61\\xf0\\x42\\x61\\xbb\\x95\\xd8\\xa8\\x06\\x0b\\xa5\\x0b\\x06\\x21\\x2b\\x31\\x89\\x1e\\x82\\x06\\xf2\\x01\\x99\\x5e\\xf3\\x01\\xc1\\x6b\\x2c\\xa7\\x0c\\x24\\x06\\x64\\x94\\x6e\\x5c\\xb5\\x09\\xb0\\xbc\\x98\\xf7\\x95\\x2f\\xc4\\xac\\x2d\\x03\\x6a\\xcd\\x59\\x64\\x4b\\xa1\\xa9\\xe9\\x77\\x23\\x6c\\xba\\x8e\\x36\\x78\\x20\\x4d\\xe3\\x80\\xf5\\xb6\\xf0\\x86\\x22\\x8c\\x3b\\x90\\x76\\x6e\\xa0\\xa2\\xd4\\xbc\\x2e\\xe0\\x87\\x7b\\xcb\\xd1\\x82\\x73\\x47\\xa9\\x35\\x29\\x9c\\x5b\\x0c\\x2a\\x51\\x52\\x27\\xa2\\xef\\x8a\\x2c\\x59\\xda\\x24\\x08\\x75\\x31\\xb8\\xee\\xef\\x36\\x59\\xb3\\xb9\\xf6\\xc9\\x30\\x78\\x0a\\x0a\\x79\\xea\\x60\\x24\\xa9\\x50\\x59\\xda\\x67\\x44\\x0a\\x06\\x7c\\x0a\\xe1\\x97\\xc7\\x46\\x7b\\x6d\\x4e\\x46\\x4e\\xe9\\x95\\xe8\\x22\\xe0\\x72\\xae\\xfb\\xe8\\x8c\\x58\\xc7\\xa1\\x8e\\x24\\xba\\x89\\x3a\\x57\\x2b\\x65\\xc9\\x2a\\xe9\\xd9\\xb9\\x29\\x8f\\x7d\\x89\\x24\\x69\\x77\\x19\\xbd\\x99\\x32\\xc2\\xf0\\x10\\x7b\\x69\\xdc\\x7c\\xd0\\x3c\\xbe\\xe8\\xf6\\x6e\\x1f\\x8f\\x76\\xfb\\x97\\xaf\\x5f\\xbd\\x7f\\xf5\\xe1\\xf5\\x33\\x59\\x49\\x57\\x85\\x2e\\xdf\\x71\\xa2\\x88\\x6d\\xe4\\xb5\\x52\\x24\\x57\\xe5\\x3b\\x64\\x8b\\x5b\\x95\\x28\\xed\\xb8\\x04\\xf8\\x55\\x4f\\xad\\x13\\x3f\\x6c\\x81\\xf5\\x31\\x78\\x4a\\x28\\x76\\x58\\x0e\\x04\\xa1\\x5c\\xf5\\x8b\\xf6\\x79\\x6d\\xeb\\xe1\\x1e\\x31\\xc2\\x92\\xb6\\xe3\\x44\\x6b\\x5e\\x56\\xa4\\x09\\xaf\\xcc\\x84\\x00\\x37\\x50\\x4b\\xd4\\xfa\\xcc\\xe3\\x52\\x92\\xdc\\xe1\\xa9\\x5c\\x29\\x06\\x64\\x05\\x6c\\xd7\\xab\\xf1\\x94\\x90\\xef\\xb1\\x9a\\x3f\\xd2\\x1f\\x88\\xe4\\xbc\\xb6\\x75\\x7b\\xd0\\xf2\\x31\\x16\\x79\\xf7\\xcd\\xef\\x7f\\xa4\\x14\\x58\\x6d\\x7c\\x4d\\xf8\\x06\\x6b\\x67\\x60\\x64\\xf1\\x8e\\xac\\xb5\\x3c\\x6c\\x16\\xb3\\x61\\x59\\xf6\\x6a\\x26\\x83\\x15\\x88\\xc9\\x5a\\xa1\\x27\\xb0\\x5c\\x66\\x24\\x91\\x14\\x94\\xf7\\x1c\\x70\\x8e\\x36\\xd2\\x8b\\x0d\\xda\\x05\\x55\\x53\\x05\\xa4\\xd7\\x87\\xe1\\xde\\x18\\x1d\\xde\\xaa\\x43\\x0f\\x3b\\x75\\xd8\\xee\\xc0\\x7d\\xd6\\x82\\x09\\x96\\xb3\\x48\\xa4\\x7a\\x9e\\xd5\\x97\\x10\\x43\\x12\\x6c\\x57\\x3f\\x47\\xd8\\x1e\\x21\\x77\\xa8\\xd2\\xea\\x86\\x15\\x8e\\x5c\\xa7\\xa6\\x70\\xb8\\x28\\x52\\x83\\x77\\x16\\x36\\x77\\x87\\x02\\xdb\\x44\\xd1\\xa6\\x96\\x0c\\xc3\\xb1\\x52\\x25\\x5b\\xc0\\x27\\xd7\\x06\\x5f\\x8c\\x74\\xaf\\xf3\\x82\\x13\\x8a\\x74\\x20\\x89\\x7b\\xc5\\x63\\x5a\\xf5\\x9d\\x64\\x7d\\x7b\\x76\\x78\\xf8\\x71\\x76\\xd4\\xdc\\x94\\x2e\\x48\\x14\\x21\\x32\\x50\\x57\\xb7\\xc8\\x61\\x14\\x89\\xd0\\x3c\\x0f\\x93\\x87\\x65\\x33\\x2d\\xb9\\xdd\\x96\\xb7\\x32\\x2c\\x29\\x1e\\x30\\x07\\x72\\x5f\\x01\\xb7\\x69\\x70\\x6d\\x31\\xda\\xa3\\x60\\x11\\xaa\\xef\\xb6\\x5c\\xb9\\xb4\\x56\\x34\\xb7\\x39\\x1e\\x2a\\x58\\x75\\x87\\xb7\\xf5\\x11\\xcd\\x91\\x23\\xce\\x96\\x8c\\x81\\x64\\xf2\\x45\\xbf\\x10\\x8c\\x30\\x0e\\x5f\\x19\\xa1\\xfd\\x28\\x11\\x4b\\x08\\xfd\\xcc\\x91\\x48\\x4e\\x54\\x54\\x97\\x90\\xb5\\x94\\xe7\\xd1\\xc3\\x87\\xfb\\x11\\xe8\\x69\\xbd\\x19\\x79\\xb5\\x65\\x89\\x57\\x25\\x4b\\x73\\xae\\x64\\x65\\xdd\\x8e\\xb4\\x49\\xd4\\x75\\x0f\\xcd\\x55\\xbc\\x11\\xd2\\x60\\x47\\x01\\x05\\x64\\x5c\\x3a\\x1c\\x64\\xeb\\x69\\xfa\\xf8\\xfd\\x18\\x00\\x41\\xc9\\x1c\\xc6\\x70\\xad\\x40\\x02\\x73\\xc4\\xd5\\xf3\\xea\\xf1\\x89\\x09\\x45\\x09\\x4f\\xbc\\x52\\xdc\\xd2\\x14\\xb1\\x3b\\x97\\x65\\x88\\xaa\\x16\\x8c\\x11\\xb1\\x8f\\x9a\\x91\\xdd\\xe6\\xea\\xf3\\xed\\x9d\\xf0\\xe2\\xd1\\x4e\\x78\\xf7\\xfe\\xcb\\x5f\\xbd\\xfa\\xfa\\xf5\\xb3\\x29\\xd1\\x47\\x6d\\xb6\\x6e\\x3b\\x72\\x4e\\x08\\xb5\\xa2\\x76\\x61\\x03\\x71\\xf2\\x83\\x6c\\x0f\\x1b\\x2d\\x90\\x1f\\x2c\\xb0\\x96\\xcc\\xa0\\xd9\\xd8\\x0d\\xf5\\x24\\x09\\x90\\xbd\\xd6\\xa4\\xd4\\x5a\\x56\\x47\\x04\\xd3\\x20\\x45\\xbd\\xc9\\xec\\x63\\xc7\\x31\\x7a\\x2b\\x31\\x0a\\x21\\x42\\xa8\\xb5\\xd8\\x87\\x4d\\xeb\\xbe\\xb2\\x98\\xd4\\x76\\x21\\xd2\\x7e\\x8e\\xe4\\x0b\\x71\\xa7\\xe5\\xd3\\xc6\\x83\\x1b\\x46\\x1d\\xd1\\xf3\\x6c\\x77\\x24\\xe3\\x5a\\xfb\\x78\\x74\\xe8\\x0d\\x50\\x3e\\xf6\\xc8\\x4f\\x12\\x8b\\x49\\x4a\\xe7\\xc3\\x48\\x27\\xb1\\x09\\xa1\\xda\\x90\\xec\\xd5\\x2b\\x5a\\x0e\\xe4\\xbe\\x08\\xdd\\xaa\\xa6\\x45\\xd5\\x0d\\xe8\\x4f\\xd1\\xc4\\x51\\xbe\\x68\\x1c\\x19\\xb8\\x02\\x09\\xe2\\x2d\\x56\\xb6\\x2a\\xed\\x8b\\xa2\\x13\\x3c\\x5b\\x20\\x48\\xf5\\x7e\\x19\\xc3\\xf7\\x44\\x02\\xfb\\x12\\x98\\xc1\\x81\\xce\\xa3\\x70\\xbb\\xd5\\x80\\x20\\xa0\\xc9\\xa1\\x97\\xf3\\xda\\xd8\\xe9\\xf0\\x3b\\x1c\\x5c\\xec\\x65\\x2c\\x77\\x93\\xe4\\x96\\x24\\x17\\xea\\x36\\xce\\x2e\\x7a\\x24\\xda\\x86\\x55\\x82\\xef\\xa8\\xdb\\xda\\xc7\\xcb\\x8a\\x2b\\x7d\\xb9\\x8a\\x52\\x6f\\x49\\xbc\\xd7\\x71\\xa0\\x92\\xab\\xc0\\xdf\\x42\\x0d\\x19\\x28\\xa0\\xa2\\x8b\\x94\\x79\\xf4\\xe1\\xf6\\x8a\\xf9\\xe5\\xe3\\x84\\xd0\\xdf\\xbd\\x7e\\xf3\\xe6\\xd5\\xd7\\xef\\x9e\\x8f\\xdb\\x14\\x47\\x1c\\xd0\\x86\\xe8\\x23\\xe1\\xb3\\x49\\x6e\\x05\\x7b\\x8c\\x60\\xf1\\xdf\\x6a\\x51\\x67\\xcf\\xb3\\xab\\x6e\\xc7\\xbd\\x0f\\xf7\\x48\\x22\\xcf\\x7d\\xcb\\x40\\x7a\\x92\\xf3\\x08\\x85\\xa1\\xe9\\xfa\\xd0\\x28\\xe9\\xa2\\x27\\xac\\x34\\xc7\\xbd\\xb7\\xfb\\xfd\\xf2\\x71\\xea\\xee\\x77\\x5f\\xbd\\x7e\\xf9\\xe2\\xcd\\xdb\\x77\\xcf\\x95\\xbc\\x40\\xc6\\x5b\\x3f\\x8f\\xec\\x17\\x8f\\x7e\\xa6\\x1c\\x97\\x08\\x3f\\xd7\\x85\\x8b\\x3c\\x37\\x4a\\x5f\\xfe\\xf1\\xe3\\xd8\\xc7\\xd7\\xbd\\xff\\xe4\\x0f\\x33\\x0d\\xfe\\xad\\x8a\\xf0\\x55\\x03\\xaf\\x1e\\x35\\xf0\\xfe\\xd5\\x57\\xaf\\x3f\\x7c\\xfb\\xea\\xfd\\xab\\xdb\\xb1\\x33\\x43\\x9b\\x49\\xee\\xc8\\xdb\\x04\\xd8\\x88\\xdd\\xc7\\x45\\xf6\\xd8\\x56\\x6e\\x9d\\x8e\\x5c\\xd3\\xa8\\x38\\x3a\\x90\\x67\\x11\\x09\\x63\\x10\\x6f\\xd5\\x91\\x51\\x67\\x2c\\x07\\x43\\x98\\xa5\\x72\\xa5\\x13\\xa2\\x36\\xa8\\x08\\x19\\x4a\\x20\\x14\\xd8\\x45\\xdd\\xe0\\xdc\\x71\\xa2\\x08\\xe5\\xa0\\x3c\\xc4\\x09\\x52\\x18\\x80\\x81\\x8b\\xe2\\x48\\x8f\\x49\\xfb\\xaa\\x91\\x49\\x4d\\xd2\\xe0\\xba\\xc2\\x7e\\x47\\xb6\\x92\\xb6\\x88\\xd0\\x5c\\xfd\\x2e\\x56\\xb1\\x3e\\x00\\x6a\\x54\\xe4\\xd4\\xb3\\x26\\x4e\\xc0\\x94\\xdc\\x15\\x7c\\x33\\x05\\x6f\\x05\\xab\\x20\\xb0\\x8a\\x02\\xaf\\x2b\\x6e\\x84\\xbb\\x1d\\x89\\x9c\\x1c\\x75\\xb8\\x8f\\xb7\\xd5\\x89\\xa3\\x84\\xbb\\xc9\\x52\\x85\\x3b\\xbc\\xbc\\x27\\x1e\\x1d\\x7a\\x0c\\x08\\x3b\\x64\\x13\\x14\\xc3\\x41\\xd5\\xf8\\xa1\\x47\\xb6\\x5f\\x85\\x93\\x4d\\xd0\\x98\\x47\\x0f\\x1f\\xee\\xeb\\x8b\\x34\\xe9\\xc2\\xa2\\x67\\x25\\xbd\\x8c\\x12\\xdc\\x98\\x90\\x92\\xb3\\xd8\\x74\\x8c\\x62\\xbf\\x81\\x02\\x36\\x1e\\xb4\\x0f\\xd5\\x3b\\x27\\x41\\xa6\\x4e\\x0b\\x85\\xfb\\x8c\\x91\\x6f\\x63\\x65\\x63\\x38\\x47\\xf8\\xe6\\xca\\xf5\\xce\\xb3\\xa6\\xae\\x06\\xcc\\xed\\x8c\\x6a\\x6f\\x89\\xfc\\xcd\\x48\\x74\\x6d\\x28\\xe1\\xa6\\xcd\\xa3\\xef\\xe0\\xfd\\x6c\\xa0\\xd1\\x61\\xab\\x28\\x4f\\x0c\\xbc\\xe0\\x62\\xfe\\x0c\\x3c\\xfa\\xd5\\xa3\\xb5\\xf5\\xf5\\x8b\\x97\\xef\\x9f\\x11\\x20\\x91\\x85\\x4b\\x2c\\xcf\\x1c\\x47\\x62\\xbc\\x54\\x24\\x74\\xb8\\x0d\\x5b\\x7f\\xd9\\x1f\\xc3\\xd6\\x57\\x5f\\x3d\\x57\\x77\\x0d\\x1e\\x68\\xcc\\xbe\\x5c\\xd1\\x18\\x65\\x5e\\x40\\x13\\x78\\x2a\\xbc\\x9a\\x3b\\xa1\\x46\\x08\\xa2\\x4a\\x3e\\x26\\xe9\\x41\\xa6\\x71\\x50\\xe5\\xbe\\x42\\xe7\\x67\\x51\\xd5\\x45\\x95\\x91\\xbc\\x8a\\x79\\x45\\x59\\xd5\\x9b\\x57\\x01\\xe7\\xb0\\x86\\x4b\\x24\\x2b\\x49\\x2d\\xea\\x48\\xa3\\xa8\\x6d\\xef\\x1d\\x6f\\xce\\xb1\\x50\\x53\\x61\\x79\\x43\\xa4\\x63\\x5e\\x23\\x97\\x78\\x4a\\x71\\x21\\x5a\\x1e\\xf9\\x77\\xf5\\xda\\x87\\x7b\\xf5\\xa3\\xeb\\xba\\x4a\\x10\\x17\\x86\\xe2\\x95\\xf1\\xc5\\x96\\x9a\\xc8\\xe7\\x0a\\xbd\\x45\\xfc\\x16\\x76\\x1a\\xa1\\x8e\\x06\\xf2\\x59\\x2c\\xb5\\xf5\\x90\\x19\\xbc\\x32\\x36\\xae\\x1a\\x2b\\xf5\\x38\\x12\\x52\\xd7\\x9b\\xd7\\x89\\x15\\xc2\\x43\\xda\\x93\\x31\\x83\\xa1\\xcb\\x19\\x88\\x06\\x06\\xcb\\x5b\\xc9\\x82\\x86\\xed\\x36\\x04\\x27\\xcd\\x50\\xab\\x25\\x64\\x75\\xa3\\x80\\x33\\x3a\\x56\\x8f\\x5f\\xfb\\x7c\\x7b\\xfe\\x1e\\x2b\\xfe\\xbf\\x79\\xf3\\xdd\\x87\\xaf\\x5f\\xbf\\x7d\\xae\\xf4\\xea\\x28\\xdc\\x96\\x67\\xea\\xc1\\x97\\xe0\\x71\\xf6\\x41\\x17\\x1e\\x79\\xb6\\xe8\\xf8\\x9b\\xcc\\x2f\\x75\\x43\\xfd\\x4d\\xec\\x81\\x1b\\x06\\xd7\\xc6\\xef\\x32\\xda\\x89\\xce\\xdc\\xe5\\xb2\\x4c\\xc0\\x32\\x2e\\xa7\\xdb\\xc4\\xf1\\x97\\x8f\\x15\\xf8\\xdf\\xfe\\xf6\\xdd\\x87\\xef\\x50\\xab\\xf4\\x19\\xaf\\x31\\x86\\x93\\xeb\\x59\\x8c\\x2e\\xa1\\xbc\\xc1\\xc5\\xb1\\xb3\\xed\\x8e\\x9c\\xb8\\xb6\\xa4\\x3c\\x38\\x4a\\x23\\x06\\x0a\\x2b\\x04\\x0a\\xe0\\x82\\xff\\x50\\xbd\\x4a\\xae\\x42\\xc8\\x28\\xbc\\x85\\xcc\\xb0\\x59\\x37\\xf3\\xca\\x3e\\xe4\\x00\\x02\\x9e\\xc8\\x9e\\x04\\x67\\x7b\\x54\\xed\\x2f\\xb1\\x57\\xa1\\x6c\\x95\\xe5\\xce\\x44\\x4c\\x71\\x16\\xa1\\x1d\\x62\\x54\\xbd\\xeb\\x10\\xac\\xc6\\x54\\x88\\x41\\x19\\xd3\\x3a\\xdf\\xfd\\x20\\x21\\x95\\xc7\\x0e\\xa7\\xfc\\x82\\x84\\x70\\xd2\\x82\\x5c\\x85\\xe8\\x8a\\x92\\x0f\\x50\\xe2\\x4f\\x02\\x26\\x20\\x62\\x25\\xd8\\xae\\x09\\xe1\\xdb\\xbe\\x12\\xc6\\x5f\\x93\\x6b\\xe6\\x5a\\x54\\x9d\\x3b\\x2c\\xca\\x69\\xbc\\x29\\x22\\xa2\\xf4\\x9c\\xcc\\x97\\x9b\\x91\\xfe\\x35\\xe8\\x8f\\x35\\xef\\xa8\\xa4\\xf8\\xa3\\xc3\\x6e\\x40\\x72\\x7d\\x9c\\x9d\\x08\\x35\\x3e\\xa0\\xe8\\x5c\\x3e\\xd3\\xb5\\xd8\\xb1\\x19\\xb5\\x23\\x5f\\x2e\\xd1\\xa1\\x6c\\x24\\x56\\xde\\xd7\\x09\\xe0\\x8a\\xac\\x72\\xa7\\x4b\\xf0\\x83\\x5b\\xb9\\x1d\\x43\\xcd\\xd7\\x28\\x14\\x24\\xaa\\x88\\x81\\x7c\\xc3\\xa8\\x77\\x68\\x90\\x4d\\xd5\\xd6\\xaa\\x97\\x7e\\xa4\\xd6\\x63\\x45\\xe2\\xf0\\x5d\\x50\\x4d\\x11\\x35\\x46\\xaf\\xbb\\x43\\xec\\x0e\\xe3\\x69\\x7c\\xcd\\x59\\x04\\x8c\\xe7\\x05\\xff\\x30\\xf8\\xde\\x96\\x8a\\xc5\\x96\\xd5\\x8d\\x94\\x56\\xa1\\x51\\xa0\\xc7\\x05\\xff\\x54\\xf7\\x5c\\x41\\x88\\xcb\\x67\\x92\\x48\\x6c\\x25\\x7c\\xea\\x9e\\xfb\\x9a\\x05\\x2b\\x84\\x06\\x6f\\x49\\x3b\\x54\\xac\\xb4\\xe3\\x08\\x57\\xf6\\x62\\x1e\\xab\\x00\\x45\\x90\\x40\\xae\\xf3\\x58\\x05\\x22\\xdc\\x0c\\x26\\x32\\x2f\\x06\\xcc\\xd2\\xdc\\xab\\xd3\\x75\\x1f\\x21\\x27\\x4d\\x3d\\x27\\x52\\xef\\xb3\\xb3\\xaa\\xec\\xaa\\x06\\x35\\x53\\xed\\xf6\\xc1\\x0a\\x4d\\x7f\\x44\\x4e\\xe4\\x32\\x29\\x7e\\x21\\x7c\\x17\\xca\\x48\\x7b\\x1c\\xca\\x0d\\x45\\x97\\x8c\\x00\\x43\\x03\\x79\\xa2\\x02\\x79\\x9f\\x06\\x51\\x1b\\x43\\x11\\x30\\x93\\xc5\\x6f\\x52\\x6b\\xe5\\xcc\\x42\\xe2\\x89\\x22\\x97\\x4b\\x09\\x0e\\x77\\xd2\\xe2\\x9f\\x67\\x13\\xb9\\xd4\\x3c\\xdf\\x5e\\x4c\\x8f\\xad\\x05\\x2f\\x5e\\x7e\\xf7\\xed\\x33\\x41\\xa8\\x2b\\x43\\xf2\\x38\\x47\\xe4\\x86\\xb4\\xd4\\x2c\\x7c\\x56\\xeb\\xdb\\xf5\\xca\\xed\\x96\\x1e\\x6b\\x9a\\xbf\\xbe\\xed\\x57\\xb6\\x6c\\x00\\x83\\x2f\\xaa\\xb9\\x0b\\xa3\\x7c\\x7d\\x13\\xa5\\xc6\\xa9\\xab\\xce\\x40\\x8c\\x15\\xee\\xdc\\x1d\\xca\\xc1\\x41\\x2b\\xb6\\x97\\x90\\x13\\x0c\\xe5\\x90\\x74\\x79\\x64\\xfb\\x61\\x17\\xec\\xd2\\x84\\xf3\\x63\\x48\\x23\\x42\\x01\\x48\\xb7\\xac\\xbd\\xeb\\xbc\\x0f\\x2f\\x96\\x0d\\xb8\\x20\\x7d\\xc5\\x0a\\xc2\\x19\\xde\\x97\\xed\\x03\\x3e\\x78\\x47\\x6e\\xc5\\xbe\\x9c\\x84\\xb9\\x5f\\x9d\\xd7\\x6e\\x19\\xd7\\xeb\\xa3\\x1f\\xab\\xa8\\xbf\\x79\\xf1\\xfe\\xc5\\x57\\xef\\x5f\\x7c\\x73\\x3b\\xf4\\x6d\\x48\\x6f\\xfd\\x62\\xdc\\xcf\\xc1\\xba\\x17\\x56\\xb1\\xc2\\x59\\x25\\x96\\x9b\\x22\\x0c\\xc1\\x35\\x61\\x6b\\x8c\\x8c\\xc9\\x52\\x00\\x69\\x1c\\x71\\x2c\\xc9\\x0d\\x06\\xcb\\x1a\\x1e\\x41\\xfd\\x2a\\xb6\\x63\\x17\\x31\\x2d\\x5e\\x05\\xd4\\x60\\xfd\\xd2\\xcf\\xe3\\x96\\xff\\x6f\\xf5\\xfb\\xb1\\x6e\\x7b\\xd5\\x9f\\x7e\\xf9\\xea\\xed\\xf3\\xc8\\x17\\xda\\x0d\\x8a\\x1d\\xc7\\xe5\\x79\\xdf\\x22\\x56\\x11\\x87\\xd1\\xfb\\xee\\x25\\x04\\xf5\\xde\\x1c\\x71\\x00\\x0e\\x73\\x58\\xdd\\x5f\\xc7\\xda\\xdb\\xb0\\xad\\x5b\\xe2\\x7e\\x17\\x83\\xbb\\xaa\\xc3\\x4b\\x14\\x51\\xe8\\xf3\\x78\\xff\\xed\\x7e\\x3f\\xd6\\xd2\\xbd\\x7c\\xf5\\xe5\\xeb\\x37\\x6f\\x9e\\xa9\\x15\\xce\\xda\\xfa\\xe6\\xc4\\xed\\x84\\xd2\\x47\\xd6\\x4e\\x9e\\xcb\\x9b\\x72\\xd4\\x88\\x45\\x3b\\xd1\\x51\\x72\\x16\\x71\\xa5\\x01\\x1d\\xbb\\xd8\\xbe\\x4e\\x46\\xb4\\x30\\x44\\x9d\\x29\\x8a\\xaf\\x9c\\xa4\\x84\\xe7\\x15\\x90\\x56\\xd2\\xaf\\xb4\\x93\\xca\\x0a\\x00\\x3e\\x89\\xc5\\x52\\xba\\xa3\\x98\\x64\\xb5\\x84\\x72\\x36\\xf0\\xd8\\x10\\x46\\xc1\\x87\\x13\\xa7\\xa1\\x70\\xfd\\x89\\xa5\\x38\\x0d\\x12\\x2f\\x5a\\x43\\x65\\xa5\\xe2\\x7e\\xce\\x7e\\x77\\x22\\xd3\\x69\\x9e\\xed\\x44\\x52\\xfc\\x09\\x15\\xcb\\x63\\x33\\x21\\xd4\\x42\\x7e\\x66\\x2d\\x3e\\x56\\xc6\\xbd\\x7b\\xfb\\xe3\\x5c\\x23\\xb4\\xc8\\x5b\\xc1\\xdf\\x71\\x21\\xe1\\xb1\\x29\\x4c\\x9a\\x36\\x90\\x0f\\x79\\x5b\\x39\\xe4\\xcc\\xce\\xa1\\x72\\xf1\\x67\\xa0\\xee\\x2f\\x9f\\xd0\\x7f\\x7c\\xfd\\xe2\\xc3\\xcb\\xef\\xde\\x3c\\xa7\\x00\\x61\\xb8\\xef\\x2b\\xed\\x38\\x61\\xa2\\x55\\x46\\x81\\x63\\xe9\\xf7\\x56\\xe9\\x9e\\xb8\\x96\\xee\\xb9\\xda\\x6e\\x3d\\xaf\\xa5\\x7b\\xf4\\xb8\\x34\\x56\\xb4\\x63\\xce\\x44\\x72\\x9d\\x60\\x18\\x46\\xea\\xcd\\x17\\xea\\xac\\x7b\\x2e\\x27\\xe8\\x86\\xba\\xbb\\x29\\x30\\x54\\xc4\\x08\\xf0\\x0b\\xf8\\x84\\x91\\x37\\xcf\\xbe\\x9b\\x2e\\x65\\x1b\\xb2\\x8e\\x93\\x4f\\x01\\xc9\\x40\\xad\\x94\\xbb\\x7a\\x0e\\xdd\\xec\\xac\\x97\\x7a\\xf5\\xc3\\xbd\\x2c\\x07\\x08\\x45\\xf9\\xc3\\x0c\\x6d\\x0a\\xff\\x0a\\x9a\\x2b\\x65\\xa9\\xad\\x6a\\x7b\\x7d\\x25\\x98\\x8c\\xb1\\x10\\x50\\x91\\xa0\\x40\\xb1\\x09\\x45\\x58\\x6a\\xdd\\x37\\x10\\xba\\x7e\\xe8\\x62\\xaf\\xef\\xdf\\x51\\x7f\\x81\\xb2\\xc3\\x31\\x0e\\x4a\\x7f\\x14\\x3a\\x93\\x9e\\xc8\\x28\\x88\\xca\\xc4\\x2b\\xb3\\x21\\x90\\x34\\x1d\\xba\\x19\\xd4\\x86\\xf6\\xd5\\x09\\x12\\xea\\x13\\x61\\x41\\x8c\\xb0\\x89\\xfc\\x7e\\x50\\x6e\\x4f\\xe5\\x4d\\xc5\\xc4\\x8f\\xf8\\x76\\x59\\x6f\\xa9\\x0a\\xcd\\x84\\x79\\xbf\\x98\\xd2\\x26\\xc8\\x6e\\xcd\\x67\\x56\\xdd\\x40\\xe6\\xac\\x43\\x5b\\x91\\xaa\\x67\\xb1\\xfe\\x70\\x5f\\x00\\xa3\\x1e\\xca\\x91\\x1f\\x1f\\x02\\xe8\\x70\\x3e\\xdb\\xc8\\x6d\\x38\\x7c\\x51\\x90\\x23\\xba\\x1e\\xf2\\x67\\xb4\\xd1\\xbf\\x7c\\xac\\x99\\x78\\xf7\\xf6\\xd5\\xdf\\x7c\\xf7\\xe2\\xfd\\x73\\x55\\xb6\\xa4\\x58\\xb0\\xd1\\x99\\x5d\\xd7\\x8a\\x47\\x8c\\xf5\\xb0\\x0b\\x89\\xfb\\x26\\x2b\\x9a\\x9e\\xcf\\x62\\xe3\\x12\\x46\\x0f\\xf7\\x70\\x27\\x05\\x6f\\xa4\\xc6\\x1c\\xdb\\x91\\x4d\\x07\\xe6\\x68\\x85\\x14\\x11\\xdb\\x71\\x4f\\xc1\\x6d\\x45\\xaa\\xf6\\x33\\x91\\xe9\\x85\\x7c\\x9c\\xeb\\x97\\xe2\\x4c\\x6a\\xf8\\xd3\\x86\\x6f\\x36\\x18\\xc9\\x12\\x52\\x3b\\x92\\x5f\\xe2\\x16\\xd6\\xf1\\x70\\x5f\\xec\\xbe\\x9e\\xae\\xbb\\x2d\\x65\\x4b\\x8a\\x3b\\x64\\x2a\\x5b\\xbf\\xdf\\x1e\\x87\\xc7\\x3a\\x93\\x77\\x6f\\x5f\\xfd\\xfa\\xc5\\x9b\\x3f\\x4c\\x6b\\xf0\\x91\\xaa\\x17\\x48\\x8c\\xdc\\x34\\xf3\\xf8\\x28\\xa8\\xec\\xf0\\x51\\xb0\\xb2\\x15\\xfd\\x59\\xf7\\x3c\\xdc\\xa3\\x22\\xaf\\xc6\\x99\\x9d\\x6a\\xc4\\x6a\\x5e\\x61\\xc7\\xaa\\x11\\xe3\\x0d\\x45\\x3c\\xd4\\xc6\\x59\\xcc\\x2e\\xa1\\xf1\\x70\\x4f\\xe4\\x5a\\x94\\xcb\\xfa\\xc5\\xc7\\x96\\x84\\xda\\x50\\xa8\\x36\\x22\\x48\\x70\\x1f\\x0d\\x45\\xb3\\x11\\xbe\\x76\\x38\\x51\\x29\\xa2\\xdb\\x44\\x9a\\x91\\xed\\xeb\\x64\\x95\\x6a\\x92\\x66\\x3e\\x66\\xa6\\xdc\\x79\\x5f\\xb1\\x91\\x2e\\xbc\\x6a\\xa1\\xd4\\x7e\\x21\\xab\\x23\\x42\\x80\\xbc\\x33\\xa8\\xbb\\x66\\xd1\\x36\\xde\\xfd\\x78\\x89\\x1b\\x37\\x1b\\xc5\\x98\\x1c\\x6a\\x79\\x78\\xed\\x75\\x81\\x3d\\x36\\xb8\\xef\\x98\\x05\\x68\\xb6\\xb5\\x05\\xec\\xb1\\xde\\x4b\\x9a\\x99\\xb4\\x6c\\x8e\\x08\\xe9\\xcc\\x66\\x14\\x3b\\x4e\\x56\\x79\\x5b\\x32\\x64\\x90\\x82\\xfb\\xc1\\x72\\x2d\\x60\\x45\\x1a\\x1a\\x68\\x4b\\x2c\\xb6\\x88\\xde\\xa2\\xd6\\x81\\xeb\\xad\\xec\\xda\\x35\\x71\\x8f\\x75\\x51\\x40\\xfe\\xc7\\x12\\xbe\\x2d\\x10\\x02\\xbd\\x84\\x6e\\xc5\\x77\\x98\\x79\\x5b\\x96\\xc5\\xe8\\xdb\\xf2\\x53\\x61\\xde\\x8e\\x3b\\x1e\\x56\\x8c\\x1b\\x6b\\x9e\\x4b\\x02\\xb8\\x90\\xe7\\x4a\\xf8\\x4d\\xe7\\x0c\\xc1\\x9f\\x4e\\xba\\x15\\xcb\\x42\\x52\\xf0\\xa2\\x56\\x44\\xeb\\x16\\xd6\\x7c\\xb8\\x0f\\x12\\x3c\\x5d\\x77\\xc3\\xa7\\x51\\xad\\x99\\xe6\\x76\\xfc\\xfe\\x70\\xcf\\xa8\\x62\\xa0\\x7c\\xe6\\xf4\\x1d\\x19\\xe9\\x49\\x19\\x45\\x48\\x89\\x34\\xa7\\x12\\xdd\\xa1\\xba\\x3d\\xb4\\x4e\\xb0\\x4a\\xa0\\x58\\x82\\xf3\\xbe\\x4e\\x92\\x9b\\xda\\xa1\\xe6\\xd5\\x6b\\xd9\\x37\\x81\\x5c\\x11\\xb1\\x7c\\x53\\x50\\x90\\x15\\xe6\\xd0\\xda\\x06\\xab\\xa0\\xc2\\xb2\\xec\\xc2\\x01\\x07\\xb9\\xae\\x04\\x2a\\x24\\xe4\\x64\\xf6\\xb3\\xf3\\xee\\xa0\\x84\\xd2\\xc6\\x51\\x5e\\x85\\x80\\xf7\\x88\\x27\\xaf\\xa4\\x4f\\x87\\x81\\x4d\\x5d\\x77\\x29\\x3a\\x8a\\x22\\x4e\\x2b\\xd3\\x63\\x71\\x79\\xab\\x9b\\x75\\x1a\\x54\\x1d\\x46\\xd3\\xd6\\xab\\x75\\xb7\\x65\\x35\\xf6\\x55\\xa2\\x8e\\x3c\\xa0\\x3a\\x23\\xea\\xb1\\x2b\\xe2\\x8d\\x13\\x9e\\x89\\x77\\xd4\\x35\\xa7\\x05\\x1f\\xce\\x77\\x8c\\x1c\\x62\\x66\\x54\\x52\\x03\\x8a\\xb2\\xc4\\xf0\\x1a\\x9c\\xda\\x58\\xf8\\xca\\x10\\xdd\\xd9\\x57\\xc5\\x12\\xa6\\x80\\x7e\\x91\\x60\\x59\\xb2\\x19\\x8a\\x40\\x55\\x50\\x5b\\x3a\\x93\\xda\\x8e\\x12\\xb2\\xf5\\x01\\x5e\\xf2\\x83\\x23\\xf6\\x62\\xa8\\x23\\x36\\x72\\xf0\\xaa\\x63\\x3d\\x88\\x77\\xd1\\x01\\xef\\x1f\\x14\\x40\\xe3\\xe5\\x7f\\x34\\x4a\\x70\\x5b\\x15\\xf9\\x26\\xdc\\xca\\xb4\\xef\\x38\\x22\\x2b\\x03\\x84\\x27\\x9e\\x8a\\x98\\x33\\xa5\\x79\\x54\\x1c\\xa7\\x65\\x1d\\xef\\x3e\\xce\\xcc\\x5e\\xdc\\xea\\x86\\x87\\x70\\x2d\\xea\\xc7\\x4a\\xb0\\x6b\\xf9\\xc1\\x67\\x9d\\x1b\\x8b\\x07\\xa0\\xc2\\x57\\xae\\xda\\x9a\\x05\\xbe\\x6c\\xf0\\xf4\\x8f\\x05\\xc0\\x46\\xd3\\xc2\\x47\\x96\\x4d\\xdc\\xf6\\x62\\x2e\\x25\\x48\\x14\\x24\\xe3\\xa1\\xa8\\x1f\\x4e\\xe9\\x48\\xe8\\x90\\x2b\\x66\\xeb\\x54\\x23\\x50\\xc7\\x50\\x64\\xc7\\x3a\\x11\\x0b\\xbe\\xec\\xc4\\xfd\\x00\\x5a\\x7c\\x70\\xd4\\x13\\x8f\\x8e\\xca\\x49\\x75\\x82\\x4a\\x7e\\x27\\x86\\xb9\\x00\\x06\\x23\\x86\\x81\\xf0\\x44\\x45\\x7a\\x22\\xee\\x4e\\xec\\xe7\\x4c\\xdf\\xe1\\x8f\\x4d\\x3d\\x50\\xe5\\xff\\x44\\x21\\x2b\\x4d\\x08\\x17\\xce\\xf0\\xd1\\x4e\\xe2\\x0b\\xc3\\x9c\\x64\\x38\\xe2\\x5a\\xeb\\x04\\xa6\\xba\\x13\\x4c\\xfc\\x88\\xf4\\x19\\xba\\xdc\\x34\\x08\\x09\\xa6\\xab\\xd3\\xba\\xd7\\xd1\\xc6\\x5a\\xeb\\x48\\x54\\xb6\\x2c\\xa1\\x92\\x82\\xf2\\x78\\x3a\\xa2\\x95\\x14\\x8a\\x18\\xb5\\xa0\\x66\\x62\\x4d\\x33\\xa6\\x39\\xa3\\xf0\\xa0\\xc5\\xaa\\x14\\x6d\\xb0\\x8a\\x2e\\x16\\x7a\\x6f\\x28\\xb6\\x44\\x63\\x5f\\x27\\x45\\x15\\xa1\\xaf\\x08\\x9f\\xbe\\x0a\\xdc\\xd1\\xaa\\xd2\\x03\\xff\\x2f\\x58\\x45\\x22\\x96\\xe3\\x73\\x3d\\x15\\x64\\x77\\x45\\x22\\x1d\\xb5\\x43\\x3b\\x9e\\x49\\xf1\\xdd\\x92\\xea\\x58\\x64\\x1a\\xbf\\x5f\\x9b\\xb9\\xb9\\x3a\\x5e\\x3e\\xd6\\x5f\\xfe\\xe4\\xf9\\xdc\\x83\\x7f\\x2f\\x25\\xc9\\xee\\x91\\xda\\xca\\xdc\\xce\\x36\\x62\\x13\\x64\\x54\\x12\\x3a\\x1b\\xc9\\x76\\xbd\\x72\\xfb\\x03\\x1e\\x2b\\xf0\\x7e\\xf2\\xbc\\x84\\xfd\\xf7\\xf3\\x01\\x51\\x4c\\x78\\x70\\x9e\\x47\\xc6\\x86\\x08\\x73\\x73\\x39\\x9b\\x8f\\xed\\x7a\\xe5\\xf6\\x07\\x3c\\xd6\\xf1\\xfd\\x64\\x65\\xb9\\xfc\\xd5\\x9b\\x57\\xb7\\x63\\x7e\\xfe\\x7e\\xbe\\x02\\x01\\x9e\\xde\\xc7\\x85\\x2c\\xe9\\x1c\\x39\\xd6\\x3d\\xe1\\xb6\\x81\\x3d\\xd4\\xaf\\xa8\\xeb\\xe4\\x44\\x1b\\x4c\\x75\\xc3\\xfa\\xd9\\x0b\\x56\\x1c\\x4f\\xde\\xfe\\xca\\xc7\\x4a\\xb5\\x9f\\x3c\\xef\\x06\\xff\\xf7\\xf4\\x81\\xb0\\xcb\\x97\\x40\\x52\\x7b\\x39\\x86\\x14\\xb9\\x2d\\xce\\xec\\x28\\xc4\\x42\\x3e\\x68\\x25\\xc7\\x73\\x94\\x49\\xf4\\x82\\xc1\\x7d\\x55\\x25\\x72\\x2e\\xa9\\xda\\xd7\\xa5\\x15\\xd4\\x14\\x36\\x81\\xfa\\x03\\x31\\xb5\\x79\\x47\\x21\\x7d\\x5f\\xac\\xbe\\x90\\x09\\x18\\x42\\x1a\\xdc\\x81\\x30\\x62\\xd2\\x01\\xc6\\x75\\x47\\x7e\\x16\\x47\\x9e\\x00\\x6d\\x14\\x7d\\xb9\\x15\\x52\\xf8\\x62\\x42\\x34\\x4a\\x68\\x18\\xb5\\x0b\\xb8\\x44\\x7d\\xc2\\x49\\xb3\\xe2\\xa2\\x75\\x69\\x4d\\x4a\\xf0\\x0a\\x88\\x08\\xd1\\xd5\\x55\\xc8\\xf9\\x89\\xfe\\x20\\xc4\\xb4\\xba\\xb1\\x0c\\x33\\x14\\x26\\xd0\\xd4\\x50\\x24\\xaf\\x94\\xe2\\x43\\x8e\\x04\\xcd\\xe3\\x19\\x49\\xe4\\xe5\\x63\\xe5\\xd5\\x4f\\x7e\\xd4\\x29\\xe7\\xef\\x67\\xde\\x60\\xc2\\x0e\\xce\\x65\\xcb\\x0e\\x5f\\xa5\\x7c\\x08\\x5c\\xbb\\xaf\\x51\\xd9\\x61\\x3e\\x19\\x74\\xe4\\xab\\xc0\\x25\\x24\\xfb\\xe7\\xdc\\x71\\xe2\\x79\\xa4\\x39\\xf2\\xd0\\x7a\\xea\\x8e\\xdc\\xfa\\x8e\\x4a\\xb6\\xab\\xd0\\xa9\\xd6\\x25\\x99\\xd7\\xb6\\x1e\\xee\\xc3\\x6b\\x6d\\xf0\\xd8\\xd7\\x09\\x34\\x58\\x75\\x6d\\xd8\\x1c\\x68\\xac\\xe7\\x0e\\xac\\x37\\x7a\\x36\\xac\\x9f\\xba\\x84\\xfa\\x17\\xf5\\x14\\x4e\\x3c\\xbd\\x65\\x97\\xf5\\x6a\\x3c\\xe5\\x9a\\x3b\\xb4\\x67\\xae\\xb9\\x5e\\xe8\\xc1\\xf3\\xda\\xd6\\xed\\xb9\\x78\\xac\\xde\\xfb\\xc9\\xfb\\xe7\\x9c\\xc1\\xff\\x7e\\xe6\\x01\\xc1\\x39\\xb5\\xce\\xd6\\x89\\x19\\x82\\xe0\\x29\\x46\\xae\\x90\\xd8\\xa1\\x03\\x4e\\x12\\x34\\xe0\\x98\\x32\\x1a\\x65\\x97\\xdd\\x6b\\x8c\\x6b\\x10\\x10\\xb0\\x30\\x46\\xc2\\xb3\\x9e\\x0a\\x44\\xa1\\xb4\\x41\\x3d\\x3e\\x0a\\x99\\xd6\\x9b\\xb1\\x70\\x3d\\xa0\\x7d\\xab\\x31\\x32\\x68\\x69\\xc9\\xc6\\x40\\xb9\\x63\\x32\\x3d\\x94\\xe1\\x06\\xf5\\x55\\xe2\\xa4\\x01\\x08\\xd6\\x25\\x14\\x1a\\xb5\\x11\\x13\\xd5\\xd5\\xeb\\xf1\\x6b\\x9f\\x1f\\xee\\x0b\\xa3\\xa0\\x0d\\x9c\\x14\\xb2\\xb1\\x7a\\x51\\xad\\x07\\x38\\x54\\xb8\\xe4\\xb4\\x02\\x9b\\x8e\\x8a\\x87\\xc8\\x56\\xeb\\x2b\\xee\\xc2\\x11\\x20\\xd3\\xd7\\x25\\x98\\x93\\xeb\\x66\\xd4\\x25\\xac\\xc7\\x51\\xd8\\x0e\\xfb\\x0f\\x27\\x90\\x61\\x1c\\x4b\\x66\\xdd\\x1c\\x19\\xc8\\x0c\\x43\\x83\\x79\\xbd\\x79\\x08\\xed\\xde\\xed\\xae\\x4e\\x1a\\x1a\\xad\\x4b\\xe8\\x46\\xe4\\x98\\xe8\\x58\\x20\\x32\\x64\\xf5\\xf9\\xf6\\xba\\x78\\xac\\x01\\xfd\\xc9\\xed\\x5a\\x77\\x70\\xb4\\x5e\\x04\\xdb\\x6b\\x0f\\x8d\\x3c\\x0b\\xf7\\x8d\\xc6\\xca\\x55\\xb3\\x79\\x8f\\xef\\xcb\\x42\\x5d\\x50\\xb0\\x21\\x2c\\xb7\\xf0\\x68\\xa3\\x27\\xea\\x10\\x5e\\xa2\\xc7\\x39\\x3c\\x37\\xd8\\x87\\x10\\x4d\\x10\\x74\\xe9\\x0f\\xc8\\xbd\\x6c\\x9d\\xcf\\xee\\xb4\\x39\\xd4\\x41\\xbd\\x6f\\xc7\\x8f\\xb7\\x3b\\xff\\x58\\x0d\\xfa\\x67\\x3f\\xa6\\x4f\\xfc\\x07\\x54\\xb2\\xf2\\xee\\x0f\\x4a\\x56\\xb6\\x7f\\x0c\\x25\\x2b\\xef\\x3e\\x96\\xac\\xbc\\x77\\xa7\\xc6\\xc6\\x5b\\x51\\x3a\\x1a\\x03\\x91\\x5d\\x34\\xa4\\xa1\\xb2\\x49\\x10\\xec\\xfb\\x24\\x39\\x47\\xef\\x0d\\x34\\xa0\\xb6\\x0a\\xaa\\x37\\x9f\\xc4\\x5a\\x64\\x6f\\xa7\\x22\\x8d\\x5c\\x70\\x1e\\x5e\\xfe\\x85\\xc7\\xa3\\x63\\x53\\x9c\\x68\\xc8\\x86\\x24\\xb4\\xd4\\x6d\\x37\\x75\\x9c\\x94\\x8c\\xd2\\x4e\\x99\\xd3\\x35\\xda\\x69\\x74\\x18\\xd0\\x4e\\xba\\xa2\\xfb\\x50\\x53\\xc5\\x9a\\x06\\x0c\\x40\\x1e\\xd3\\x5d\\x90\\x93\\x17\\xce\\x58\\x36\\x51\\xba\\x9b\\x6d\\x2b\\xf0\\xcc\\x86\\xa5\\x7c\\x7b\\xe5\\x3e\\x56\\x84\\xff\\xec\\x47\\x70\\xf3\\xdf\\xba\\xcc\\xe4\\x3d\\xbc\\xff\\x00\\x8e\\x85\\x90\\xc9\\x06\\xe0\\x58\\x2d\\xb6\\xeb\\x95\\xdb\\xbd\\x7c\\xac\\x92\\xfe\\xd9\\x8f\\x80\\xe3\\xbf\\x43\\x2f\\x8b\\x92\\x03\\x01\\x23\\x9e\\x9f\\x0e\\x04\\x4c\\xbc\\x5d\\xaf\\xdc\\xee\\xe5\\x63\\xdd\\xf5\\xcf\\xfe\\x4b\\x10\\xf0\\xdf\\xbe\\xab\\x28\\x66\\xf5\\x3d\\xcc\\x55\\xde\\x4a\\x44\\x5b\\x30\\xb7\\xfb\\x82\\xb9\\x9c\\xe3\\x80\\xb9\\xe2\\x07\\xcc\\x25\\xde\\xae\\x4f\\xde\\xfe\\x94\\xc7\\xba\\xdb\\x9f\\xfd\\x38\\x62\\xfa\\xdb\\x7f\\x08\\xfb\\x01\\x70\\xd6\\x09\\x02\\xd6\\x73\\x61\\x1f\\xc1\\x96\\xa3\\xbe\\xa3\\xe2\\x11\\x60\\x51\\x3f\\x2e\\xc1\\x93\\x09\\xb0\\xa8\\x4e\\x00\\x8b\\x00\\x55\\x43\\xd7\\x53\\x80\\x45\\xe0\\xc2\\x45\\x58\\x47\\x2e\\xec\\xc2\\x1e\\x77\\x07\\x2c\\xea\\x07\\xc0\\x59\\x27\\x0e\\x3f\\xdb\\x85\\x7d\\xe0\\x68\\x02\\x58\\x54\\xd8\\x67\\x20\\x4f\\xe6\\x71\\x69\\xc4\\x01\\xa6\\x70\\xb2\\x4a\\x88\\x8c\\xf5\\x6a\\x3c\\x55\\xb0\\x08\\xf6\\x04\\xc0\\xa2\\x7a\\x21\\x60\\xd1\\xd1\\xd6\\xed\\x01\\x7f\\xac\\x73\\xfe\\xf9\\xf3\\xfb\\xf0\\xef\\x52\\x93\\xf2\\x1e\\x01\\x56\\xb6\\x22\\x3d\\x37\\xd4\\x36\\xc4\\x4e\\x1c\\xba\\x5d\\xaf\\xdc\\xee\\xe7\\x63\\x9d\\xf0\\xcf\\x9f\\xdf\\x89\\x7f\\xa7\\x7e\\xc2\\xc3\\x06\\x7b\\xb1\\x38\\xbd\\x8c\\x63\\x2f\\x4a\\x6e\\xd7\\x2b\\xb7\\xfb\\xf9\\x58\\x05\\xfa\\xf3\\xff\\x82\\xbd\\xf8\\x77\\xea\\x2c\\x10\\xf4\\xf7\\xbb\\xd1\\x13\\x69\\x16\\xd6\\x6e\\x44\\x74\\x78\\x09\\x9d\\x6c\\xc7\\x6e\\x74\\x39\\x76\\xa3\\xe4\\x76\\x7d\\xf2\\xf6\\xc7\\x3c\\x56\\x7d\\xfd\\xfc\\x47\\x77\\xe3\\xdf\\xe9\\x53\\x18\\x55\\xfd\\x6a\\x3f\\xe2\\xa4\\x20\\x16\\xf9\\xb1\\x1f\\x21\\x74\\x95\\x98\\x42\\x7a\\xec\\x47\\x39\\x2e\\x01\\xa9\\x62\\x3f\\x02\\xb2\\x22\\x84\\x3b\\x8e\\xfd\\x18\\x7e\\xec\\x47\\x19\\x87\\x98\\x42\\x7e\\xec\\xc7\\xd4\\xeb\\x7e\\x5c\\xfb\\x79\\xec\\xeb\\x04\\x01\\x80\\x7a\\x6c\\x3a\\x34\\x56\\xfb\\xd1\\xf8\\xd8\\x8f\\x71\\xbd\\x04\\xfe\\x5e\\xfb\\x11\\x38\\x3b\\x97\\x47\\xfe\\x12\\x53\\x48\\x8f\\xfd\\x88\\xe6\\x35\\xd7\\x0b\\xb1\\x1f\\x8f\\xb6\\x6e\\x0e\\xf9\\x97\\x8f\\xf5\\x49\\x3f\\xfb\\xf6\\x0f\\x4d\\xf1\\x76\\x35\\x3f\\xf6\\x68\\xfd\\xe2\\x23\\xcf\\x27\\xb5\\x4b\\x14\\xd9\\xed\\x47\\x05\\x4e\\xb3\\x44\\xf4\\xf4\\xaa\\x3e\\xd8\\xaf\\x55\\xaa\\xf3\\x5a\\xa5\\x9a\\xe8\\x63\\x95\\x6a\\xfb\\x61\\x95\\x6a\\x3b\\xaa\\x54\\xa3\\x3a\\x5f\\xd7\\xf5\\x44\\x3a\\x0a\\x03\\x9a\\x41\\x5d\\x59\\xb4\\xb5\\xa4\\x01\\x84\\xd7\\x17\\x02\\x8e\\x55\\xa8\\xba\\x5a\\x8c\\xa3\\x50\\xf5\\x91\\x73\\x2c\\x69\\x15\\xaa\\x46\\x35\\x89\\x55\\xa9\\x5a\\xe4\\xee\\xfb\\x4a\\xd5\\xb2\\x2a\\x55\\x23\\x0a\\x06\\xa5\\xaa\\x91\\x07\\x1a\\xa5\\xaa\\xfd\\x5a\\xaa\\xda\\xf2\\x5a\\xfa\\x2c\\xf0\\x89\\xe6\\x51\\x9f\\x7c\\x7b\\x04\\x1f\\x2b\\xb4\\xfe\\xe2\\x47\\x12\\x06\\xfc\\xdd\\x2a\\x8d\\xa2\\xd8\\xc7\\xd2\\x89\\x14\\x9a\\x80\\x4e\\x04\\x12\\xb0\\xfa\\x1c\\x43\\x0f\\x9d\\x08\\x44\\x59\\x89\\xe5\\x98\\x04\\x9d\\x08\\x54\\x18\\xdc\\x91\\x3a\\x63\\xe9\\x44\\x20\\x15\\x45\\xc1\\x28\\x39\\x74\\x22\\x05\\x5f\\xa1\\x13\\x81\\x10\\xc3\\xd9\\x24\\xf9\\x6e\\xe9\\x44\\x9c\\x96\\x4e\\x84\\x21\\x00\\xb3\\xee\\xbc\\x8a\\x7b\\x29\\xb2\\x2e\\x2f\\x9d\\x08\\x64\\x29\\xf7\\x55\\x7b\\x13\\x3a\\x91\\x25\\x42\\x05\\x8a\\x0f\\x2c\\x9d\\x88\\xfa\\xa1\\x13\\x01\\xa4\\x0c\\x9e\\x70\\x33\\x84\\x4e\\xa4\\xba\\x0a\\x99\\x0c\\xcc\\x9d\\x02\\x6e\\xea\\x4b\\x27\\x02\\x7e\\x65\\x47\\x29\\x42\\xe8\\x44\\x6c\\x1c\\x3a\\x91\\x63\\x34\\x6e\\x4f\\xcf\\x63\\x75\\xdd\\x2f\\x7e\\x84\\xe1\\xfc\\x43\\xab\\xc5\\x7a\\x77\\xad\\xc5\\xda\\xfe\\xf1\\xd4\\x62\\xbd\\x3b\\x6a\\xb1\\xb6\\xff\\x3a\\xb5\\x58\\xef\\x11\\x45\\x61\\xc3\\xcf\\x36\\x6c\\x83\\xa3\\xd0\\x30\\x3e\\x1b\\xd1\\x76\\xbd\\x72\\x7b\\x7d\\x3d\\x56\\x94\\xfe\\xe2\\x47\\x80\\xc2\\x7f\\x5b\\x5f\\xff\\xf8\\xd6\\x17\\x92\\x8a\\x17\\x0c\\x1a\\x69\\x1b\\x9c\\xc3\\x6d\\xe8\\xd9\\xdc\\xb7\\xeb\\x95\\xdb\\xeb\\xeb\\xb1\\x4e\\xf7\\x17\\xff\\x25\\x00\\xef\\x1f\\xc8\\x22\\xbb\\xfb\\x83\\x82\\xd2\\xff\\x08\\x16\\xd9\\xdd\\xa3\\x82\\xd2\\xff\\xb5\\x16\\xd9\\xe1\\xba\\x99\\x85\\xbc\\xf9\\x1c\\xe9\\x9b\\x2f\\x39\\xcf\\x37\\xb8\\xd5\\xd7\\xaf\\x82\\x52\\x75\\xc2\\xc8\\xe7\\x46\\x23\\xe8\\xec\\xee\\x57\\xa7\\xcf\\x67\\x30\\xce\\x63\\x65\\xf6\\x2f\\x7e\\x2c\\x29\\xd2\\x3f\\x8c\\xf5\\xf7\\xdf\\x88\\xdc\\x7f\\xcd\\xf5\\x67\\x05\\xf2\\xd4\\xf6\\xba\\x8b\\x46\\x5f\\x29\\x93\\x28\\x3c\\x56\\xc9\\x96\\xe8\\x3c\\x51\\xf1\\xc6\\x6d\\x85\\xe4\\x92\\x2b\\xed\\x05\\xf4\\xea\\xa4\\x39\\xc0\\x2b\\xaa\\x78\\x2d\\x85\\xc3\\x82\\xe2\\x05\\x0d\\x97\\x61\\xc8\\x68\\x5f\\x32\\x98\\xf5\\xa6\\x1d\\x60\\xd1\\x97\\xdb\\x63\\x2d\\x68\\x46\\xb5\\x3a\\xb5\\x9d\\x4b\\x0a\\xf1\\x61\\x0d\\xde\\x2f\\xc1\\x8c\\xec\\x23\\x14\\x23\\xa6\\xf6\\x84\\x02\\x7f\\xbd\\x70\\xe8\\xc0\\x3a\\xab\\x93\\x66\\x0e\\x55\\x27\\xcd\\xb5\\x67\\x90\\xd8\\x8e\\x60\\x32\\x59\\x5d\\x0d\\x19\\x7b\\x40\\x59\\x23\\x63\\xc9\\x37\\xa1\\x47\\x61\\xae\\x08\\x9d\\x63\\xd9\\xfa\\x04\\xc5\\xc4\\x69\\x78\\xdf\\xae\\xa3\\x71\\x7b\\x4f\\x3d\\x36\\x04\\xfc\\xe2\\xc7\\x85\\xdd\\xff\\xb6\\xad\\xfe\\xf1\\x6d\\x2b\\x81\\x30\\x66\\x7d\\x5f\\x27\\x43\\x9a\\x2c\\x63\\xe6\\x2a\\x02\\x02\\xcb\\x94\\x1e\\xba\\xad\\x06\\xc3\\x06\\x2e\\x0d\\x5b\\x4f\\xad\\x13\\x3a\\xb2\\x06\\x95\\x2c\\x87\\xa7\\x3c\\x68\\x17\\xec\\xc1\\xa0\\xf5\\x42\\x4f\\x9d\\xd7\\xb6\\x0a\\xb1\\xc0\\x03\\x2e\\xf7\\x75\\x32\\x90\\x18\\xe0\\xff\\x63\\xef\\xeb\\x56\\x25\\x49\\x92\\xf4\\xee\\xf3\\x29\\xfc\\x05\\x0e\\x72\\xfb\\x75\\xf3\\x1b\\x5d\\xe7\\x45\\x1c\\x44\\x40\\x4c\\x82\\xce\\x5d\\x8f\\xba\\x7a\\x54\\x50\\xd3\\x25\\xed\\x4c\\x2d\\xec\\xdb\\x0b\\xfb\\xcc\\xa3\\xb6\\xc9\\x55\\xe6\\xe9\\x5e\\x86\\x66\\x6a\\xbb\\xa0\\x20\\xa3\\x4e\\x64\\xb8\\x47\\x7a\\x98\\x5b\\xd8\\xef\\xf7\\xe5\\xd0\\x8e\\xae\\x7f\\x0a\\xe9\\x40\\xe8\\xcd\\x83\\x0b\\xb6\\x77\\x9e\\x9a\\x2c\\x75\\x55\\x1d\\xd0\\x68\\x68\\x3e\\xc9\\xa1\\x71\\x95\\x8f\\x0e\\x88\\x8a\\x3c\\xa8\\x01\\x7d\\x56\\x77\\x71\\x5e\\xf5\\x78\\xab\\xdc\\xa7\\x9d\\xfe\\xfa\\xe5\\xd3\\xdf\\x3f\\xfe\\x9f\\x4f\\x8f\\x21\\x9c\\x08\\x4e\\xe9\\xdc\\xcc\\xb4\\x99\\xea\\xc6\\x44\\x2d\\xa6\\x6e\\x60\\xfc\\x1a\\x45\\xeb\\xeb\\x80\\x82\\x34\\xfc\\x1f\\x78\\x33\\xf9\\x85\\x41\\x84\\x0b\\xc0\\xdf\\x9c\\x23\\x14\\xc4\\x6d\\xc7\\x15\\xea\\x0a\\xee\\xe5\\xfc\\xff\\x9a\\xe1\\xf1\\x3d\\xdf\\x27\\x1c\\xfe\\xc7\\x73\\xb2\\x57\\xea\\x73\\xed\\x6d\\xa0\\x06\\x62\\x6f\\xc7\\xb9\\xb7\\x75\\xed\\xed\\xb1\\xf6\\x76\\xd4\\xde\\x76\\xec\\xed\\x7e\\x12\\x49\\xeb\\xe2\\x41\\x93\\x56\\xd8\\xfa\\xb3\\x6f\\x4c\\xd2\\x5e\\x42\\xaf\\x44\\x7d\\x63\\x04\\x85\\xfa\\xce\\x14\\xad\\x90\\x5b\\xb8\\xb1\\x1b\\x18\\xd2\\x24\\xe4\\x20\\x96\\x66\\x7d\\x1c\\x44\\xbf\\xd8\\xf7\\xb4\\xf6\\x3d\\xaf\\x7d\\xef\\xe7\\xbe\\xe7\\x79\\x59\\x84\\xea\\xe7\\xbe\\xd7\\x73\\xdf\\xf7\\xd3\\x9c\\x5b\\x76\\x5d\\x43\\xc3\\x94\\x8a\\x80\\x8c\\x9e\\x04\\xa8\\x54\\xf9\\x6d\\xeb\\x56\\xe8\\xb2\\x58\\x64\\x06\\x57\\x97\\xa2\\xbf\\x1e\\xa4\\x21\\xa3\\x50\\xe3\\xb0\\x32\\x5f\\xf5\\x00\\xe7\\x93\\xcb\\x9d\\x88\\x22\\xaf\\xd1\\x18\\x84\\x9a\\xfd\\x60\\xe3\\xa6\\xea\\xb5\\x23\\x4d\\x0f\\xa1\\xd1\\xd8\\x63\\x43\\x94\\x8c\\xc9\\xf6\\xdc\\x1e\\xc4\\x21\\xd5\\x20\\x27\\x6c\\x75\\xa3\\x50\\x0b\\x72\\xaa\\x85\\x71\\xaa\\x85\\x38\\xd5\\x02\\x9d\\x6a\\xc1\\xc7\\xa5\\xd4\\x82\\x2e\\xb5\\x20\\x5f\\xd5\\xc2\\xdb\\x6b\\xca\\x11\\xb4\\xd3\\x48\\x31\\x02\\xd8\\x5c\\x9b\\xb9\\xb3\\x11\\xdb\\x62\\xda\\x64\\x08\\x52\\x6a\\x0a\\x06\\x32\\x5e\\xad\\x98\\x86\\xa7\\x97\\x0a\\x62\\x94\\x82\\x90\\xa5\\x20\\xb8\\x14\\x44\\xcc\\xa5\\x20\\x74\\x29\\x08\\x5f\\x0a\\x62\\xfc\\xbb\\x82\\x78\\x28\\x80\\xf7\\xb9\\xa4\\x3f\\xbd\\x13\\xf8\\xf8\\xd6\\x48\\xcc\\x2f\\x8b\\xc4\\xbc\\x3d\\x26\\x31\\x7f\\x05\\x3a\\xad\\x01\\xdb\\x5b\\xb7\\x8a\\xe9\\xb2\\x5d\\x81\\x07\\xb0\\xce\\x3c\\x5e\\xbf\\xfb\\x2c\\xd7\\x9f\\xde\\x71\\xec\\xff\\x2b\\xae\\xdf\\x00\\x99\\x04\\xcb\\x75\\x76\\xdd\\x3c\\x6d\\x1b\\xb3\\x71\\xb5\\x61\\xdb\\x79\\xe6\\xf1\\xfa\\xdd\\xa7\\xd6\\xfe\\xf4\\x6b\\x1c\\xd7\\x6f\\x65\\x11\\x2f\\x77\\x4c\\xfa\\xcf\\x16\\x11\\xb8\\xec\\xde\\xf9\\x46\\x16\\x76\\x8d\\x6e\\x9b\\x97\\x1d\\x3b\\x37\\x00\\xec\\xe5\\x5f\\xc5\\xe9\\x46\\xde\\x0d\\x2c\\x89\\x14\\xaa\\x57\\xb0\\x4e\\xad\\x2b\\x1f\\x2f\\xf2\\x7d\\x3a\\xed\\x4f\\xef\\x1b\\x91\\xdf\\xca\\x12\\xff\\x16\\x39\\x45\\xe9\\xfc\\x60\\xa9\\x1a\\xfa\\x61\\x80\\x81\\x4f\\xbb\\xa5\\xaf\\x0a\\xbd\\xae\\x3b\\x18\\x20\\xd3\\x2d\\xa9\\x38\\x77\\xac\\x5a\\x89\\xbc\\x0a\\x07\\x40\\x88\\x49\\xb5\\xec\\x1e\\x75\\x95\\xab\\xee\\x50\\xdc\\xae\\x5a\\x03\\xba\\x8f\\xe3\\x9c\\xeb\\xed\\x75\\x54\\x3e\\x97\\xab\\x0f\\x7e\\x98\\xb5\\x72\\x11\\xc6\\x04\\x74\\x0e\\x45\\x97\\x3d\\x2a\\xc5\\x2a\\x55\\x9a\\x92\\xa7\\x66\\xe5\\x64\\x78\\x9f\\x95\\xcf\\xed\\xab\\x16\\xdd\\x47\\x5d\\xe5\\x2a\\x3b\\xca\\xab\\x1c\\x40\\xbc\\xf9\\x17\\xf7\\xe3\\x9c\\xeb\\xb1\\x28\\xdc\\x67\\x2c\\xff\\xe7\\x3b\\xad\\xab\\xff\\x00\\x76\\xff\\x57\\xb4\\x50\\x06\\xf3\\x35\\x7c\\x6e\\x80\\xf0\\x34\\xf3\\xab\\x69\\xdf\\xce\\x33\\x8f\\xef\\xf7\\x3e\\x73\\x79\\xfc\\xef\\xcf\\xff\\xf2\\x84\\xee\\x8a\\x8a\\x1f\\xfe\\x46\\x64\\x0c\\xec\\x99\\xea\\xd0\\x36\\x06\\x3e\\x1b\\x11\\xcb\\x31\\x17\\x6f\\x77\\x31\\xff\\x4c\\xea\\xe5\\x43\\xa4\\xef\\x56\\xae\\x13\\xd0\\x12\\x7c\\x36\\x4b\\x9f\\x34\\x85\\x5f\\xc6\\x11\\x00\\xf5\\x57\\x60\\x48\\x0a\\xeb\\x55\\x40\\x04\\x47\\x73\\xe5\\x62\\x84\\xfa\\x5b\\x4d\\xde\\x8d\\x6e\\xca\\x56\\x73\\x13\\x63\\x13\\x8c\\xe1\\x0d\\x0e\\x4d\\xe4\\x8b\\x59\\x8e\\x69\\x01\\x2e\\xf4\\x19\\x7a\\x19\\xe2\\xe5\\xad\\x74\\x50\\xe1\\x02\\x40\\x27\\x22\\x00\\x44\\x5b\\x6c\\xe4\\x3c\\x16\\x72\\xa5\\x11\\xe6\\x79\\xb8\\x54\\xf7\\x79\\xd1\\xbf\\x7c\\xf8\\x97\\xbf\\xfe\\xf0\\xf3\\x8f\\x7f\\xfe\\xf4\\x0c\\x6d\\x0d\\x45\\x84\\x53\\x6e\\x44\\xe4\\x3b\\xf2\\xa4\\xdc\\x27\\xba\\x23\\x88\\x63\\x00\\xfb\\x96\\x94\\xa5\\xba\\xdc\\xf2\\xe6\\x51\\x09\\x68\\xea\\xbb\\xe7\\x82\\x9a\\x02\\x14\\xac\\x91\\xb1\\x1d\\xc5\\x8e\\xea\\x56\\x8e\\xae\\x78\\xba\\x70\\x54\\xc0\\x03\\x38\\xa0\\x41\\x2d\\x06\\x70\\x22\\xe2\\x28\\x46\\x26\\x9a\\xe0\\xd8\\x9c\\xec\\xe5\\x84\\xb2\\xef\\xf9\\x39\\xc6\\x80\\x3d\\x38\\x24\\x00\\x6a\\xe8\\x9e\\x56\\x52\\x5c\\x80\\xa7\\xd7\\xc1\\x2e\\x27\\x85\\x08\\xad\\x0c\\xa8\\x3d\\x6e\\xd2\\xd3\\x2a\\x46\\xdb\\x97\\x16\\xae\\x16\\xb9\\x1d\\x33\\xf2\\x81\\x96\\xc3\\x7d\\x0c\\x70\\xa5\\xd0\\x5e\\x48\\xf8\\xd4\\xdc\\x7b\\x7b\\x21\\x3f\\x0c\\x60\\x90\\x47\\x81\\xa1\\x1d\\xe9\\x26\\xa5\\xd2\\xc5\\x96\\xee\\x85\\x9e\\xa8\\xda\\x8c\\x8b\\xb5\\x09\\xd5\\x89\\x5d\\xd1\\x79\\x1a\\xe3\\x18\\x9c\\x9e\\xfe\\x9e\\x6e\\x4a\\xfe\\x63\\x69\\xd3\\x8f\\x00\\xdc\\x7d\\x29\\x48\\xce\\x07\\xed\\x82\\xfb\\xc3\\xa7\\x19\\xea\\x93\\x65\\x16\\xe2\\x81\\x0e\\x47\\x71\\x9b\\x69\\xa0\\xe2\\xd0\\xd3\\xe6\\x4c\\x73\\x38\\xed\\x3e\\xe3\\x4b\\x70\\x80\\x2c\\x31\\x80\\x38\\x4d\\x20\\xaf\\x82\\xcd\\xdc\\x85\\x16\\xd8\\x06\\x16\\x0f\\xdd\\x88\\xbc\\xd7\\xc1\\x98\\x0d\\xd5\\x98\\x60\\x48\\xa4\\x6a\\xeb\\x39\\x20\\xd8\\xca\\x71\\x18\\x80\\x47\\x54\\x77\\x10\\x0e\\xab\\x5a\\xa1\\xe5\\x29\\xd3\\x51\\x70\\x02\\xc6\\xa5\\xbf\\x58\\x63\\x41\\xd7\\x92\\x3f\\xe9\\xb0\\xfa\\x70\\x9f\\x1e\\xfe\\xe1\\x9d\\xb2\\x29\\x19\\xad\\x83\\x4b\\x4e\\x80\\xc9\\xdc\\x86\\x54\\x8e\\xd5\\x7c\\x07\\x1e\\x15\\xc5\\xa2\\x91\\x46\\x2f\\xa9\\x50\\xb1\\xcb\\xfb\\xb1\\x22\\x13\\x7b\\xde\\x2e\\xc8\\xa4\\x22\\x5a\\xa1\\xb6\\xba\\xa2\\x3f\\x87\\xbc\\x1f\\x34\\x7a\\xe3\\x18\\x7b\\x7e\\x4a\\xf4\\x96\\x5e\\x9d\\xaa\\xa1\\x04\\xd8\\x80\\x3d\\xa5\\xd8\\x7d\\x3e\\x46\\x73\\x9e\\xd7\\x49\\x74\\x1b\\xc6\\xfb\\x04\\x8d\\x94\\xa0\\x8b\\x28\\x6c\\x22\\x3d\\x3a\\x65\\x1c\\x43\\xe8\\x52\\x5c\\x51\\x48\\x07\\x53\\x01\\x49\\xf6\\x8e\\x22\\x48\\xd4\\x10\\x82\\xaa\\x45\\x05\\xb0\\x9e\\x31\\xac\\x48\\xbf\\x42\\xe0\\xfd\\x8d\\xd0\\x1d\\x50\\x16\\x26\\x8d\\x91\\x59\\x5e\\xde\\x50\\x27\\x2a\\xee\\xd9\\x3e\\xe2\\x70\\x1a\\x8b\\xc3\\xa8\\x7f\\xa5\\xef\\x45\\xdd\\xe0\\xe2\\x67\\xea\\xa4\\xc7\\x9c\\xe9\\x28\\xeb\\x01\\x34\\xb8\\x61\\xfd\\xc6\\xec\\x7b\\xb1\\x02\\x2d\\x8d\\x06\\xf2\\xe8\\xd5\\x3b\\xb9\\x51\\x77\\x6b\\xfd\\x3a\\x65\\xbc\\xbd\\xa6\\x76\\x06\\x70\\x97\\xb5\\xb0\\x42\\x14\\xee\\x84\\xfe\\x19\\x52\\xc3\\x06\\xe3\\x54\\x4b\\x44\\x4d\\x7a\\xbf\\x99\\x8c\\xab\\x4f\\xd9\\x9d\\xf4\\x62\\x70\\x9c\\xa8\\xe5\\xf6\\xd6\\x54\\x67\\x28\\x45\\x94\\x86\\x36\\xaf\\x98\\x8d\\xe7\\xd8\\xf1\\xa9\\xd1\\x24\\x15\\x47\\x9f\\xd5\\xce\\xf4\\x95\\x30\\x9b\\x8e\\x9a\\xfd\\xed\\x15\\xa5\\x9c\\xac\\x7a\\x8d\\x7c\\x75\\xa4\\x13\\x63\\xd4\\xaf\\x63\\xe8\\x76\\x9e\\x79\\x2c\\x61\\xf7\\xe9\\xf3\\x1f\\xde\\x29\\x79\\xfb\\x2e\\x61\\x7f\\x44\\x09\\x83\\xce\\xb3\\x1e\\xd7\\xd9\\x79\\x03\\xb1\\x2c\\x2b\\x5f\\x6d\\xc8\\x76\\x9e\\x79\\x2c\\x61\\xf7\\x15\\x00\\x3f\\xfc\\x9a\\x72\\xc5\\x6f\\x45\\xcc\\x2e\\x4b\\xcc\\xda\\x1f\\x45\\xcc\\x2e\\x77\\x62\\xd6\\xfe\\xa1\\x8a\\x0c\\xad\\xff\\x31\\x6e\\xc4\\xa3\\x5f\\xa3\\xcb\\xc2\\x71\\x51\\xdd\\x80\\x7a\\x99\\x7f\\x05\\xaf\\x19\\xcf\\xbe\\x81\\x17\\xde\\x78\\x5e\\x7d\\xc8\\x76\\x5e\\xf9\\x58\\x0c\\xef\\x0b\\x05\\x7e\\x78\\xa7\\xa3\\xea\\x5b\\x91\\xc0\\xef\\x8a\\xee\\x1f\\x2a\\x81\\x9e\\x6f\\xcf\\x2e\\x7b\\xba\\x12\\xa4\\xce\\x0d\\x50\\xfe\\xca\\x76\\xcc\\x02\\xb1\\xe8\\x55\\x06\\x25\\xa0\\x69\\x27\\xf0\\x29\\xec\\xf0\\xb6\\xd2\\xb3\\x46\\xd6\\x0a\\xa4\\xdd\\x0c\\x2e\\x07\\x3d\\xcc\\xd3\\xba\\x9d\\x5c\\xde\\xae\\xf6\\x09\\x38\\x5d\\xd2\\x1e\\x0d\\xc1\\x48\\x19\\x7a\\x48\\xe0\\xf2\\x5e\\x94\\x55\\xd2\\x65\\x97\\xee\\x45\\x83\\x0e\\x58\\x52\\x89\\x7e\\x88\\x81\\xf8\\x21\\x7f\\xa1\\x5f\\x48\\xd1\\x42\\x04\\x4c\\x21\\xdf\\x51\\x73\\x6d\\xdd\\x9b\\x81\\x43\\x37\\x66\\xb9\\x35\\x40\\xaa\\x2a\\x7b\\x59\\xea\\x56\\x65\\xfa\\x8e\\x16\\x22\\x01\\x09\\x21\\x20\\xf1\\xbc\\xd0\\x48\\x54\\x56\\xff\\x84\\x0e\\x2a\\xe8\\x52\\xa3\\xd8\\xce\\xd5\\x78\\xbc\\xab\\xfe\\x03\\x5e\\xd3\\xfb\\x05\\xdc\\xdf\\x37\\xd6\\x1f\\x71\\x63\\xa1\\xcd\\x46\\x7b\\xec\\x75\\xa0\\xd4\\x50\\x3d\\x9f\\x4e\\x2d\\x4a\\xed\\x35\\x72\\x67\\x0c\\x1c\\x14\\xf1\\x05\\x4e\\x01\\x99\\xbc\\xc7\\x8e\\x03\\x49\\x77\\x1f\\x68\\xdf\\x26\\x75\\x95\\xf0\\xdc\\x05\\xa2\\xcd\\xb3\\x06\\x2c\\x17\\xab\\xe6\\x7a\\x7b\\x45\\xb2\\x41\\xfb\\xd8\\xeb\\x60\\xf1\\x57\\x91\\xa6\\xe7\\x5a\\x93\\xc5\\x1e\\x00\\x4c\\x88\\x68\\xb3\\x8f\\x0b\\x4e\\x81\\xe5\\x20\\xaf\\x2a\\xba\\x83\\x61\\x0d\\x00\\xa8\\x39\\x34\\xae\\x12\\x8e\\x3d\\x6a\\xfa\\x58\\xec\\xb8\\x46\\xc7\\x39\\xd7\\xe3\\xcd\\x72\\x5f\\xc6\\xf1\\xc3\\xf3\\x9e\\xc4\\xef\\x1b\\xe5\\x8f\\xb8\\x51\\x10\\x27\\x05\\xe2\\x3e\\xf6\\x07\\x68\\x60\\xa4\\xe8\\xdf\\x72\\x25\\xc9\\x78\\x00\\xa9\\x8f\\xcc\\x47\\xe1\\x61\\x5b\\xf0\\x8e\\x76\\xc9\\xa2\\x06\\xcb\\xb7\\x82\\x07\\xd2\\x93\\x64\\x1c\\x47\\x74\\xaa\\xcb\\xa1\\xf1\\x73\\xe4\\x3a\\xb0\\x01\\x04\\x6f\\x12\\x56\\x00\\x8a\\x55\\xeb\\x5c\\x01\\xe8\\x44\\x8d\\xcc\\xa4\\x8b\\x97\\x2e\\x0d\\x3d\\xa7\\x3a\\x65\\x5d\\x2e\\x20\\xa8\\x43\\xeb\\xb0\\x20\\xb2\\x33\\x17\\xde\\x3f\\x08\\xd0\\x73\\x8e\\x3a\\x18\\xd2\\x2a\\xbb\\x67\\x72\\xa0\\xe9\\x54\\x28\\x0e\\x14\\x3f\\xf1\\xd4\\x35\\x47\\xd8\\xee\\x85\\x5f\\x6a\\x85\\x7a\\x0a\\xce\\x3a\\x6c\\x2f\\x0a\\xd8\\xd6\\xb8\\x1c\\x08\\xdb\\x78\\x83\\x01\\x6a\\x9b\\x26\\xf0\\x6d\\x73\\x4f\\xd7\\x97\\x75\\x38\\xc2\\x3b\\x64\\x9d\\xd6\\xba\\x50\\x2f\\xc6\\x44\\xa3\\xde\\x30\\x69\\x9e\\xc2\\x6d\\xe8\\x28\\xf8\\x7a\\x5c\\x7e\\xde\\xf3\\xe3\\x8d\\x7b\\x5f\\x2b\\xf2\\xc3\\x13\\x90\\xf4\\x59\\x3c\\x45\\x23\\xb4\\xbd\\xe4\\x4d\\x82\\x27\\xea\\xf0\\x0e\\x7a\\xc6\\x3d\\x1f\\x51\\x6e\\x5c\\x33\\x6b\\x31\\xa0\\xdf\\x84\\x8f\\xb4\\x04\\x5e\\x4a\\x64\\xf2\\x5a\\xb6\\x62\\xd1\\xe5\\xae\\x4d\\x8e\\xfc\\xba\\xc7\\x81\\x5e\\x6c\\x3d\\x74\\x34\\x0e\\xdd\\x75\\x34\\x71\\x6a\\xa3\\x83\\x03\\x9a\\xb4\\x37\\x13\\x43\\x16\\xd6\\xbb\\x17\\x41\\x1d\\xd0\\xb6\\x07\\x4a\\xef\\x53\\x3e\\x43\\xc0\\xfd\\x0d\\xdc\\x62\\x43\\x75\\x50\\xa1\\xfd\\xcf\\x00\\x31\\xd7\\x05\\x94\\x5d\\xb5\\xe7\\x7a\\xaa\\x86\\xea\\xe2\\x04\\xca\\xbd\\x8e\\x83\\x66\\x6e\\xf9\\x38\\x28\\xa8\\x05\\xf1\\xe6\\x96\\x06\\xc4\\xee\\xda\\x52\\x15\\x45\\xea\\x00\\x39\\x00\\x29\\xd5\\x59\\x50\\xb3\\x01\\x9e\\x68\\xf4\\x8b\\xe7\\x8e\\x85\\xf9\\x8e\\xb2\\x19\\x10\\xc2\\x78\\xa1\\x12\\x4f\\x1b\\x60\\x0d\\x00\\xc3\\x10\\x00\\x4c\\xbb\\x17\\x51\\xfb\\xe2\\xf1\\xae\\xab\\x73\\x7f\\x40\\x05\\x50\\x75\\x32\\xcc\\x18\\x07\\x91\\x7b\\x0b\\xf7\\x5c\\x1e\\x6d\\x83\\x6d\\x23\\x8a\\x94\\xb6\\xb8\\xba\\xc9\\x4d\\x7b\\x4a\\x95\\x00\\xc4\\xdd\\xdd\\x1a\\xc7\\x04\\x88\\x12\\x40\\x5b\\x41\\xc9\\xd4\\x53\\x99\\x5e\\x82\\x50\\x2f\\x15\\x39\\xa8\\xb4\\xd9\\x8b\\xbe\\x9e\\x10\\x04\\x2d\\x36\\x8a\\x42\\x50\\xa2\\xa0\\x0d\\x53\\x4e\\xdd\\xc1\\x30\\x88\\x7b\\x64\\x69\\xc6\\x4b\\x97\\x18\\xaa\\x69\\x5e\\xa8\\x1f\\x4b\\x04\\xde\\x5e\\x45\\xa9\\x45\\xc7\\x0b\\x2a\\x7a\\x03\\xea\\x5a\\xaf\\x02\\x1d\\x2a\\x04\\x17\\x32\\x3f\\x4c\\x52\\x1f\\xf0\\x66\\x12\\xcd\\xc4\\xaf\\x78\\x47\\x82\\x00\\xd4\\x40\\x86\\x66\\x64\\x07\\x73\\x34\\xb5\\x89\\xd5\\x97\\x11\\xa8\\x03\\xe0\\xe8\\x3b\\x3e\\x01\\xc9\\x50\\x48\\xd8\\xa8\\x2b\\xd0\\x5e\\xc4\\xf3\\x7e\\xd4\\xfc\\x6f\\xaf\\xb9\\x10\\x2e\\x95\\xac\\x41\\x69\\xc5\\x65\\xa8\\xed\\x88\\xd2\\x83\\x09\\xb4\\x5b\\xb4\\x10\\x29\\x36\\x9f\\x99\\xbf\\xc4\\x0d\\x35\\x40\\x78\\x12\\x29\\x17\\xc0\\x94\\x4d\\xb9\\xc8\\x97\\xdc\\x4c\\x69\\x4c\\x65\\x1d\\x71\\xb8\\x6b\\x1b\\x41\\x07\\xa6\\x18\\xfd\\xe6\\xf2\\x64\\x1b\\xdd\\xd7\\x91\\xfc\\xaf\\x77\\xe1\\x10\\x85\\x8b\\x63\\x8f\\xd1\\x45\\xab\\x5e\\x1c\\x7b\\xb2\\xba\\x4d\\x68\\x71\\xec\\xf1\\xe2\\xd8\\xb3\\xb1\\xa3\\x10\\x8b\\x51\\xbe\\x91\\x2f\\x8b\\xc9\\x28\\x8a\\x89\\x8e\\x60\\xf8\\xa8\\x9e\\x58\\x64\\xd2\\x56\\x97\\x33\\x5b\\x63\\x03\\xe9\\x04\\x1e\\xf5\\x24\\xe0\\x60\\x91\\xd3\\x2f\\x68\\xf5\\xa8\\x01\\xa2\\x24\\x07\\x70\\x45\\x85\\x03\\xf6\\x0e\\x5b\\xb1\\xe5\\xb9\\xd0\\x49\\x93\\x4e\\x97\\x45\\x93\\x0e\\x6c\\x9a\\x32\\x24\\xe6\\xd4\\xa2\\xcf\\x8e\\x81\\x3a\\xab\\xb1\\x88\\xf4\\x78\\x9f\\x32\\x17\\x91\\x9e\\x16\\x91\\x9e\\xc6\\x22\\xd2\\xe3\\x45\\xa4\\x47\\x8b\\x48\\x4f\\xc6\\x49\\xa4\\x47\\x8b\\x48\\x8f\\x17\\x91\\x1e\\x2d\\x22\\x3d\\xfa\\x05\\x91\\x1e\\x2d\\x22\\xbd\\xbe\\x88\\xf4\\x78\\x11\\xe9\\xf5\\x45\\xa4\\x97\\x8b\\xf9\\xf6\\xea\\x63\\x56\\xb7\\x31\\xea\\xed\\xa3\\xca\\xc4\\x42\\x1a\\x98\\x60\\x07\\x1d\\xc0\\x5a\\x90\\xe2\\x8a\\x8b\\x59\\x59\\x85\\xb1\\xe7\\xc7\\x8b\\x58\\x8b\\x1e\\xd5\\x6d\\xac\\x7a\\xa9\\x6e\\x63\\xeb\\xab\\xdb\\x18\\x98\\xcd\\x21\\x80\\x80\\xac\\x6e\\x63\\xe0\\x45\\x76\\x6b\\xde\\x7b\\x75\\x1b\\xbb\\xa1\\xdb\\x38\\x75\\x23\\xba\\x8d\\xa1\\xad\\xc1\\x53\\xa4\\xb9\\x3c\\x13\\xdd\\xc6\\xd8\\x93\\xe0\\x12\\x45\\xb7\\x71\\xfa\\x63\\x6c\\x9b\\x85\\x57\\xb7\\xf1\\x93\\xe2\\x9f\\x0f\\xf7\\xc5\\x3f\\x1f\\x9e\\x87\\xcd\\xdd\\x56\\x7e\\x55\\x79\\xd5\\xf0\\xcc\\x96\\xab\\x3a\\xc1\\xb0\\x77\\x50\\x8c\\x26\\x69\\x52\\xe8\\x6c\\x46\\xfd\\x66\\x26\\x3b\\x59\\x07\\x3d\\x6e\\x9e\\x1b\\x3e\\xf1\\xdd\\xf9\\xf5\\x6d\\x6e\\xb5\\xcc\\x25\\x15\\xb0\\x38\\x3a\\x23\\x85\\x41\\xdd\\x0b\\x93\\x7e\\x5a\\xda\\x20\\xa9\\x47\\xe6\\x3c\\xa8\\x8f\\x99\\x7a\\xfb\\x66\\x22\\x57\\xf6\\x79\\xcb\\x37\\x17\\x8f\\x25\\x9e\\xa0\\xa2\\x08\\x94\\x5a\\x32\\xd1\\x61\\xbd\\x5f\\x52\\x7f\\xa4\\xde\\x0c\\x02\\xd8\\x46\\xf4\\x86\\xca\\x4e\\x8a\\x63\\xe6\\x53\\x05\\x91\\x9d\\xa1\\xf0\\x6c\\xc7\\x9e\\x26\\xb0\\xeb\\x83\\xf0\\x3c\\xa6\\x34\\x11\\x3c\\xdd\\x17\\x3f\\xd6\\x2f\\x7f\\xc3\\x4e\\x2b\\x59\\xb3\\xb9\\x64\\x6d\\x46\\x9b\\xa8\\xa9\\xa3\\x16\\xa9\\x4c\\xc8\\xb0\\xd3\\x61\\x47\\x8a\\x5d\\xa7\\xcd\\x9b\\x6b\\x80\\x2a\\x6b\\x00\\x10\\xd2\\x80\\x0e\\x9c\\x5e\\x64\\xcc\\xb4\\x9b\\x66\\x9b\\xa3\\x1f\\xe7\\xc8\\x6f\\xaf\\x13\\x40\\x00\\xaa\\xd7\\x90\\xb9\\xa5\\xfa\\xaf\\x30\\xb5\\xdb\\x76\\x9e\\x79\\xfc\\x44\\xef\\xab\\x69\\x3e\\xbc\\x93\\x5d\\xfd\\xfe\\x44\\x7f\\x8f\\x27\\x8a\\xa6\\x31\\xeb\\x71\\x8d\\x29\\x9b\\xc3\\x86\\x54\\xd0\\x31\\x6f\\xe7\\x99\\xc7\\x4f\\xf4\\xbe\\xbe\\xe7\\xc3\\xaf\\x08\\x0b\\x7f\\x2b\\x8f\\xf5\\xb2\\x1e\\x6b\\xfb\\x36\\x1f\\xeb\\x84\\x13\\x70\\x86\\x61\\xc7\\xd4\\xad\\x08\\x6f\\x54\\x37\\x00\\xd8\\x54\\x18\\xb6\\xaf\\x30\\x2c\\xa8\\x01\\x79\\x5e\\xdd\\x75\\x9b\\xdd\\x2e\\xcf\\xc3\\xb0\\xf7\\x65\\x49\\x1f\\xde\\x0d\\x18\\x7d\\x2b\\x0f\\xfd\\x1b\\xdf\\xcb\\x42\\xb1\\x02\\x34\\x38\\x40\\x80\\xa6\\x9f\\x01\\x9a\\xbe\\x02\\x34\\x00\\xa2\\x44\\x80\\xe6\\x3c\\x15\\xb2\\x02\\x34\\x21\\x97\\x0a\\xd0\\x38\\x9d\\x01\\x9a\\xbe\\x02\\x34\\xce\\x67\\x80\\xa6\\xaf\\x00\\xcd\\x9a\\xeb\\xed\\x15\\xcc\\x15\\x08\\xd0\\x54\\xdd\\x7a\\x2f\\x97\\x1e\\x01\\x9a\\x9a\\x2c\\x76\\x20\\x70\\x69\\xa4\\x19\\xb2\\x4e\\x4d\\x50\\x7e\\xf4\\xb1\\xe3\\x40\\x86\\xb5\\x98\\x2b\\xf6\\xb3\\x08\\x3e\\x62\\x8f\\x9a\\x3e\\x6a\\x40\\x04\\x68\\xd6\\x5c\\x8f\\x85\\xf3\\xbe\\x9c\\xeb\\xe3\\x73\\xbb\\x81\\x81\\x33\\x19\\x7c\\x1d\\x2c\\xab\\xe7\\x7d\\xd2\\xad\\x5f\\x99\\xab\\x05\\xde\\xbb\\xdc\\xe6\\xb0\\xf5\\xff\\xe0\\xb7\\x57\\xf0\\x69\\xb2\\xe9\\x35\\xc6\\xd8\\x40\\xd6\\x6c\\x5c\\x89\\x8e\\xf3\\xcc\\xe3\\x9b\\xbb\\x2f\\x30\\xfa\\xf8\\xfc\\x15\\xf8\\xdb\\x6f\\x0e\\x7e\\x91\\x51\\x5c\\xa7\\xd0\\x86\\x8e\\x65\\x18\\x5a\\x9d\\xb7\\xf3\\xcc\\xe3\\x9b\\xbb\\xaf\\x26\\xfa\\xf8\\x2b\\xb4\\xf9\\x7f\\x62\\xf9\\x60\\x27\\xcc\\x54\\x4c\\xd1\\xaf\\x21\\x5c\\x2f\\x1d\\x35\\xdd\\x50\\x4d\\x92\\x7f\\x95\\x88\\x1b\\xd0\\x94\\xc0\\xd2\\x60\\x32\\xaf\\xa3\\xf3\\x76\\x5e\\xf9\\xf8\\x17\\xdc\\x17\\xf9\\x7c\\x7c\\x57\\x31\\xfd\\xf6\\xfb\\x17\\x48\\x20\\xa5\\x83\\x07\\xb4\\x56\\x78\\x73\\x8d\\x74\\xd8\\x51\\x5b\\x6b\\x4e\\xa0\\x99\\xe6\\x01\\xb6\\x38\\x4e\\x15\\xc1\\x0d\\xc5\\x5e\\x58\\xd9\\xe1\\x4d\\x21\\xed\\x2e\\x75\\x95\\xc8\\xdc\\x6b\\xb3\\xc9\\xac\\x01\\x25\\x7d\\x83\\x35\\xd7\\xdb\\xeb\\x98\\x7a\\x21\\x05\\xdc\\x1d\\xd2\\x02\\x7d\\xc5\\xfe\\x87\\x16\\xb8\\x9d\\xce\\xd8\\x91\\x3f\\x83\\x52\\x91\\x75\\x6a\\xa2\\x8a\\x90\\xc6\\x8e\\x03\\x81\\x8b\\x3f\\x6a\\x68\\x5c\\x25\\x12\\x7b\\x6d\\x36\\x89\\x1a\\x50\\x9c\\x8e\\x9a\\xe2\\x09\\x00\\xd7\\x4f\\xf7\\x25\\x2d\\x1f\\xfe\\x3f\\x88\\x07\\x5f\\xe1\\xde\\xf1\\x50\\xa7\\xec\\xe9\\xeb\\x11\\x41\\x67\\x21\\xaa\\x98\\xbe\\xaa\\x44\\x73\\x96\\x9b\\x19\\xa0\\x05\\xa2\\x29\\x68\\xff\\xba\\x81\\x72\\x0a\\x35\\x7d\\x56\\xa4\\xe4\\xec\\x40\\x0a\\xab\\x90\\x68\\x55\\x50\\x8a\\xa7\\xfe\\x3d\\x38\\xf5\\x10\\x13\\x18\\xa7\\x38\\xfd\\xdd\\x54\\x5f\\xbe\\x87\\x37\\x40\\xbf\\xa1\\x5f\\xdf\\x81\\xba\\x1b\\xac\\xa0\\x30\\x98\\xab\\xca\\x67\\xba\\x81\\x66\\x28\\x3d\\xe5\\x61\\xc5\\x89\\x35\\x3b\\x5d\\x22\\x7d\\xa4\\xf4\\xe9\\x74\\x56\\x61\\x5c\\x37\\x06\\xf9\\x22\\xb1\\xd8\\x06\\x9e\\xbf\\x3e\\x7d\\x93\\x00\\x2d\\x42\\xdf\\x1c\\xb4\\x73\\x73\\x94\\x66\\x17\\xb5\\xd5\\x1b\\x13\\x04\\xef\\x9d\\x54\\xf3\\xcb\\xf9\\x5b\\xac\\x17\\x85\\x8f\\x9e\\x3e\\x9a\\x58\\xac\\x3a\\xcc\\x90\\x8d\\x3a\\xc0\\xc8\\xa8\\x6f\\xe7\\x9a\\xbd\\xbd\\x4e\\xca\\x15\\xb2\\x1d\\x9f\\xda\\x1b\\x3e\\xcd\\x40\\xf4\\xec\\xa1\\x7b\\x4c\\x6f\\x83\\xb5\\xc5\\x22\\xc1\\x1e\\x63\\xb6\\x20\\x06\\xe2\\x3f\\xa0\\xe9\\xdc\\xf2\\xdc\\xae\\xf9\\x06\\x73\\x6a\\xba\\xfc\\x54\\x78\\x9d\\xea\\x60\\x4d\\x75\\xee\\x07\\xf7\\x71\\xc9\\x65\\xe3\\x5e\\xf4\\x4c\\x2c\\x0c\\x94\\x30\\x30\\xbc\\xce\\xc5\\x5e\\x43\\x8a\\x02\\xb7\\x90\\xdd\\xd5\\x1b\\x50\\xad\\x14\\xf8\\xb0\\xc1\\xa3\\x31\\x3b\\x8a\\xed\\x65\\xe4\\xdd\\x81\\xce\\xee\\xe6\\x4f\\x8a\\xeb\\x7f\\xba\\xaf\\x5a\\xf9\\xf9\\x79\\x32\\xb7\\xb8\\x66\\x83\\x37\\x21\\x6e\\x31\\xf2\\x95\\x34\\x41\\xe4\\x84\\x08\\x66\\xd7\\x7e\\x14\\xf1\\x4c\\xe7\\xbd\\xc8\\x59\\x3a\\x83\\xf9\\x76\\x02\\x75\\x4c\\x47\\xf3\\x09\\x86\\x0e\\x1e\\x37\\x9f\\x84\\x98\\x3c\\x22\\xef\\x36\\xdb\\x4c\\x97\\xda\\xa8\\xcd\\x59\\x64\\x33\\x73\\x06\\x42\\xc1\\xe9\\xc0\\xab\\x5a\\x9b\\x3c\\xc0\\x92\\x11\\x3a\\x0f\\x21\\x50\\x47\\x7e\\x45\\x45\\x09\\xbe\\x4a\\xcf\\x07\\x95\\x2f\\x61\\xeb\\x5c\\xf9\\x06\\x75\\xba\\x4c\\xca\\xa7\\xc9\\xba\\x68\\x64\\x10\\x67\\xef\\x85\\x33\\x3d\\x4a\\x93\\x05\\x4a\\x75\\xc1\\x54\\x03\\x1d\\x98\\xa7\\x6c\\x2e\\x08\\xea\\x82\\x7e\\x9e\\x74\\xa8\\xfb\\x7a\\x3d\\x53\\x25\\x27\\x1a\\x00\\x8e\\x24\\x2d\\x87\\x8a\\xb9\\xce\\x0d\\x1d\\x57\\xd2\\x79\\x67\\xa8\\x0e\\xe5\\x06\\xde\\x00\\x19\\xb3\\x6a\\xd5\\x14\\x0d\\x19\\xf5\\x2e\\xae\\x01\\x2d\\x9d\\x7a\\xc0\\xc6\\x75\\xc3\\x8f\\xc5\\x29\\xef\\x0b\\x9c\\x1a\\xc8\\x7f\\x4a\\x5c\\xb7\\x0a\\xf2\\x57\\x2f\\x66\\xd6\\x0a\\x37\\x81\\x9f\\x12\\x2c\\x20\\xb2\\xf0\\x43\\x75\\xf4\\x23\\x4c\\x2e\\x64\\x34\\xb6\\x73\\x35\\x1e\\x3f\\xfd\\xfb\\x8a\\x92\\xcf\\xef\\xb4\\x56\\x80\\xdd\\x77\\x2c\\xd2\\xf7\\xd1\\x28\\xf7\\x6c\\xee\\xeb\\x7c\\x7c\\x32\\x41\\x91\\x48\\xdd\\x56\\x27\\x74\\x45\\x72\\x56\\xb4\\x12\\x7a\\x2d\\x4f\\x4d\\xcf\\x3d\\xdd\\x8b\\x30\\x79\\x00\\xf0\\x7d\\x8e\\x1c\\xf5\\x66\\xac\\x7b\\xee\\x69\\x6c\\x0f\\x84\\x02\\x41\\xfa\\x88\\x0c\\x16\\x23\\x7a\\xc2\\xfa\\xef\\x15\\xdc\\x9d\\xca\\x86\\x25\\x6e\\x2c\\x07\\xc3\\x8c\\x22\\xc4\\xf3\\xf2\\x2a\\x12\\xba\\x18\\xeb\\xcd\\x6c\\xbc\\xbd\\xa2\\xc9\\x8d\\x75\\xcf\\xcf\\xd4\\xf3\\x3c\\xac\\x89\\xc5\\x91\\x4a\\x82\\x69\\x80\\xc1\\x31\\x8d\\x4a\\x54\\x6e\\x13\\x72\\x22\\xa0\\x31\\xe9\\xf8\\x6b\\x84\\x34\\x26\\x47\\xc5\\x76\\x5e\\x35\\xc7\\x68\\x6b\\x68\\xb0\\x3b\\xbb\\xa6\\x88\\x0b\\xc2\\x47\\xf9\\x5d\\xf0\\x4b\\xe6\\xae\\x70\\xae\\x75\\x80\\xb9\\x89\\x18\\x57\\x9a\\x9b\\x16\\x6d\\xba\\x60\\xee\\x40\\x10\\xcc\\x2a\\xf0\\x54\\xa4\\x2a\\xb9\\x08\\x29\\xc6\\x70\\x00\\xe5\\x1a\\x3c\\x17\\xa6\\x59\\x9f\\xd7\\x61\\xb6\\x9d\\x67\\x1e\\x3f\\xd2\\xfb\\xea\\x8c\\xcf\\xef\\x74\\x7b\\x7c\\x7f\\xa4\\xbf\\xcb\\x23\\x45\\x91\\xb7\\xf5\\x71\\x8d\\x90\\xcd\\xad\\x68\\xc4\\xae\\x66\\xba\\x9d\\x67\\x1e\\x3f\\xd2\\xfb\\xd2\\x80\\xcf\\xbf\\xa6\\x01\\xe5\\xfb\\x73\\xfd\\x5d\\x9e\\x6b\\x00\\x19\\x2a\\xfc\\x46\\xec\\xf3\\x3a\\x42\\x37\\xc7\\x0b\\x42\\x65\\x2b\\xae\\x03\\x9f\\x57\\xd1\\xf4\\xf0\\x63\\x6e\\x36\\xe0\\xe1\\xc7\\xd5\\x4d\\xb7\\x98\\xf0\\xf0\\x1f\\x47\\xf9\\x7f\\xba\\xcf\\x72\\x7f\\x7e\\x07\\xac\\xe0\\xfb\\x23\\xff\\x7d\\xb4\\xb3\\xd2\\x69\\x64\\xa0\\xb8\\x82\\xd2\\x66\\x5d\\x46\\x06\\x68\\x08\\x61\\x64\\xcc\\x65\\x64\\x58\\x91\\x20\\xef\\x03\\x01\\x9d\\x34\\x32\\x8a\\xa8\\xc2\\x0e\\xaf\\x52\\x08\\x39\\x0c\\xa5\\x10\\x69\\x64\\xa0\\x37\\x25\\x8d\\x0c\\x30\\x7a\\xa5\\x91\\x81\\x22\\xa3\\x34\\x32\\xc0\\x86\\x98\\x46\\x46\\xf8\\x32\\x32\\x60\\x7f\\x14\\xfe\\xe9\\x32\\x32\\xe0\\xf9\\xe8\\xc2\\x50\\x85\\x91\\x91\\x03\\xc2\\xc8\\x00\\x13\\x76\\x07\\xa7\\xce\\x32\\x32\\x20\\xa6\\x30\\x32\\xe6\\x32\\x32\\x8c\\x97\\x91\\x01\\x3b\\x26\\x8d\\x0c\\x8c\\x93\\x46\\x06\\x12\\xc4\\x69\\x64\\x80\\xce\\x3e\\x8d\\x0c\\x24\\xc5\\xd3\\xc8\\x58\\xab\\xf1\\x58\\x8c\\xef\\x73\\xbe\\x9f\\xdf\\x6f\\xed\\xfa\\x2e\\xc9\\xbf\\x8b\\x24\\xdb\\x59\\xd4\\x63\\x67\\x51\\x8f\\x9d\\x45\\x3d\\x7e\\x16\\xf5\\xf8\\x59\\xd4\\x03\\xea\\xa9\\x3c\\x35\\xa4\\x5f\\x2a\\xd2\\x74\\x16\\xf5\\x8c\\xb3\\xa8\\xc7\\xcf\\xa2\\x1e\\x3f\\x8b\\x7a\\xec\\x2c\\xea\\x39\\xe7\\x7a\\x7b\\x4d\\xaf\\x13\\x05\\x73\\xfb\\x3a\\x82\\x2f\\x87\\xb8\\xa8\\xa7\\x3b\\x5a\\x13\\x82\\x67\\x07\\x5e\\xda\\x58\\x8d\\xd4\\x38\\x4b\\x28\\x22\\xc9\\x6b\\x71\\x24\\xe9\\xc5\\x12\\xf8\\xc5\\x8d\\xd6\\xb5\\xc2\\x63\\x87\\xaf\\x41\\x28\\x5f\\xc2\\xc8\\x20\\x7f\\x39\\xe7\\x7d\\x2c\\xaa\\xf7\\x79\\xd5\\x1f\\x3f\\xfe\\xeb\\xc7\\xa7\\xf0\\x30\\x24\\xcd\\x55\\xaf\\x44\\x76\\x1b\\xde\\xaf\\xf9\\x87\\x9b\\x6b\\x2e\\x2d\\x7e\\x54\\x0c\\x90\\xcd\\x53\\x3a\\xc0\\xa8\\xfa\\x20\\x55\\xe4\\xeb\\xf3\\xee\\xc1\\x6c\\x88\\x9f\\x01\\x62\\xd3\\x3c\\x55\\x84\\xd1\\x31\\x16\\x73\\xb4\\x19\\x88\\xf3\\xa8\\x4b\\x65\\xf9\\xa9\\xf7\\x28\\xdf\\xb5\\xf7\\xa8\\x01\\xbb\\xd0\\x71\\xce\\x95\\xb3\\x46\\xe3\\xc9\\x7b\\x7e\\x0a\\x83\\x8e\\x0b\\x41\\x55\\x4f\\x4f\\x7d\\xf0\\xee\\x16\\x17\\x19\\x0c\\x76\\xd0\\xfc\\x7b\\x8a\\x60\\x7e\\x1f\\x9f\\x36\\x71\\x23\\x2c\\x8e\\xef\\x33\\x31\\x8a\\x2c\\x98\\x18\\xe3\\xb0\\xd8\\xb1\\xc6\\x7f\\xbc\\x80\\xf7\\xf9\\xc2\\xcf\\xef\\x80\\x05\\xfc\\xe6\\x8d\\xee\\x67\\xf9\\x43\\x51\\x92\\x4c\\x3e\\xa2\\x83\\x91\\xe6\\xa4\\x3f\\x22\\xbd\\xce\\x21\\x1b\\xdc\\xbd\\x8e\\xe6\\x44\\x6a\\x33\\xbc\\x4d\\x34\\x26\\x81\\x5f\\x6a\\xb6\\x60\\x4b\\x61\\xa1\\xe6\\x73\\xfc\\x06\\xc5\\x70\\xf9\\xa5\\x62\\xb0\\x15\\x44\\x9f\\xa3\\xbd\\x0c\\xe0\\x20\\x49\\xba\\xc5\\xbd\\xbd\\x90\\xf6\\x2b\\xd3\\xd8\\xf2\\x09\\x8c\\xd8\\xe1\\x16\\x92\\x35\\x2e\\x14\\xfe\\x83\\x72\\x51\\x47\\x3f\\x48\\xb5\\xa5\\xd6\\xc7\\x22\\x9c\\x3a\\x04\\xbb\\xfe\\xdc\\xf1\\xd4\\xdb\\xf4\\x51\\xad\\x65\\x32\\xdb\\x70\\x42\\x5c\\x3b\\x3d\\xe0\\x7c\\xc1\\x4c\\xa6\\x4d\\x53\\xfd\\x02\\x99\\xd0\\x53\\x99\\xfc\\x66\\xd5\\x72\\xa7\\xb5\\x58\\x1b\\x07\\xaa\\x00\\x0e\\x6c\\xad\\xa0\\x6d\\xd8\\xbc\\x4c\\x1f\\x50\\xb1\\xe8\\x55\\x9b\\xe9\\xa3\\xd3\\x7f\\x52\\xe7\\x3c\\x94\\x9c\\xfb\\xbc\\xe4\\x97\\x77\\x1a\\xb4\\xc0\\x8d\\x31\\xf7\\x70\\x6b\\xd1\\xd1\\x8d\\x27\\xfd\\x30\\x1f\\x15\\x9d\\x02\\x89\\x63\\x61\\x0f\\xcf\\x83\\x27\\x52\\x02\\xcc\\xd2\\x58\\x08\\x85\\x7b\\x4a\\x27\\xc9\\x27\\x8d\\x9b\\x92\\xee\\x42\\x13\\x60\\x28\\x00\\x4c\\xf0\\x71\\x58\\x50\\x0b\\xd9\\x07\\x21\\xc4\\x82\\x10\\xb8\\x16\\x99\\xac\\x90\\x54\\x3f\\x73\\x31\\x8e\\xca\\x40\\x3c\\xc3\\xb6\\x75\\x47\\xab\\x4d\\x9a\\xc5\\xae\\x41\\xbc\\x59\\xd5\\x16\\xd3\\x75\\x48\\xe4\\x65\\x97\\x3c\\xf3\\x78\\x15\\xee\\x73\\x79\\x5f\\xde\\x69\\x22\\xfa\\xe7\\x5d\\x85\\x81\\x58\\xeb\\x9c\\xd7\\x70\\xaf\\x3e\\x71\\x16\\xb9\\x9a\\x8c\\x0d\\xd5\\x1d\\x3a\\x1f\\x57\\x1d\\xfc\\x74\\x9f\\xda\\xfa\\xf2\\x6b\\x1a\\x5d\\xfe\\x79\\x97\\x02\\xf8\\x32\\x3c\\x22\\x7d\\x04\\xba\\x0e\\x1f\\x9b\\xcd\\xb8\\x10\\x08\\x44\\x01\\xe6\\xe1\\x74\\x15\\x96\\xf4\\x11\\x68\\x83\\x56\\x37\\xee\\x57\\x97\\xb1\\x9d\\x57\\x3e\\x5e\\xaa\\xfb\\x44\\xcb\\x97\\xf7\\xcb\\xc6\\xff\\x79\\x17\\xca\\xd0\\x0f\\x30\\xe7\\x8e\\x03\\x15\\xbe\\xd8\\xe8\\x8b\\x92\\x1e\\x01\\xbd\\xe8\\x45\\x26\\xae\\x51\\x7c\\x9d\\x45\\x49\\x5f\\x9c\\xde\\xb3\\x70\\x5a\\x24\\x15\\x26\\xc2\\x6e\\xf9\\xaa\\x85\\x85\\x92\\xda\\x1a\\x55\\xcf\\xf9\\x16\\x46\\xd5\\xb3\\xa6\\xd1\\x5d\\x73\\xbd\\xbd\\x4e\\x58\\xd4\\x33\\x76\\x1c\\x68\\xd5\\x0a\\xa1\\x54\\xd5\\xaa\\x01\\x9b\\x74\\xcc\\x9d\\x08\\x51\\x39\\xd0\\xfe\\xf1\\x79\\x96\\xc0\\x59\\x37\\x63\\x5f\\x47\\x28\\xd2\\x83\\xe9\\xaf\\xb2\\xae\\x15\\x9a\\x3b\\x75\\xdc\\x07\\xcd\\x35\\xb2\\x28\\x1f\\xe7\\xac\\x8f\\x1f\\xed\\x7d\\x9a\\xea\\xdf\\xde\\xef\\x83\\x67\\xee\\xc5\\x42\\xe9\\xb4\\x51\\x27\\x59\\x4b\\x4d\\x3a\\x01\\x94\\xf7\\x42\\x43\\x76\\xf3\\x68\\x2f\\xcc\\xdc\\x50\\x5f\\xc4\\x3e\\x0f\\xcd\\x67\\x5f\\x84\\x7b\\xd2\\x5e\\x94\\xf4\\x60\\xeb\\xed\\x45\\x65\\xec\\xcc\\x8e\\x83\\x46\\xf9\\x9a\\x53\\x94\\x26\\x46\\x7b\\x51\\x96\\x8d\\x9c\\xdb\\x8b\\xb0\\xec\\x34\\x66\\x1e\\x18\\xaa\\x2c\\x5f\\x84\\xc7\\xc1\\x9a\\x03\\x4a\\xdf\\x79\\x0a\\x0e\\x9a\\x08\\xb5\\x17\\x21\\x06\\x5b\\xc4\\x0b\\x4a\\x5e\\xad\\x5f\\x5e\\x80\\x9b\\x80\\x62\\x3f\\xe1\\xcd\\x80\\x23\\xbf\\x8d\\x25\\x20\\x4c\\xb4\\xad\\xdf\\xf4\\xf6\\x0a\\x20\\x68\\x68\\x93\\x39\\x37\\x24\\xa4\\xa1\\x4d\\x46\\xdf\\xce\\x33\\x8f\\xd7\\xf1\\x3f\\x92\\x2b\\x3e\\xeb\\xcf\\xc7\\x53\\x33\\xe9\\x55\\xd5\\x57\\xb5\\x69\\xf9\\xa2\\x66\\x87\\x4b\\x01\\xee\\x69\\xed\\x8d\\xc7\\xf1\\x35\\x9d\\xbe\\x52\\x21\\x0a\\x14\\x0d\\x54\\x63\\x93\\x8c\\x22\\x93\\xa6\\xe9\\x37\\x32\\xf5\\xab\\x90\\xdf\\xa6\\xc8\\x8e\\xb7\\x6a\\x27\\xad\\xc4\\x2f\\x4c\\x1b\\x3b\\x7d\\x18\\xa7\\xe5\\xc3\\xc0\\x9e\\xb3\\x51\\x3e\\x8c\\x58\\x01\\x27\\x0d\\x9b\\x25\\x52\\x66\\x74\\x33\\x41\\x19\\x50\\x5c\\xcc\\x68\\x9f\\x1a\\xcd\\x85\\xdb\\x04\\x55\\x39\\x1f\\xb1\\xd8\\x65\\xc7\\xf0\\x36\\x01\\x44\\xe7\\x15\\x55\\x1f\\x5c\\x51\\x75\\xb6\\x7c\\x93\\x23\\xe7\\x35\\x95\\x2b\\xaa\\x0e\\x8c\\x20\\x6f\\x63\\xfa\\x8d\\xdd\\x76\\x71\\x40\\x61\\x35\\xd8\\x17\\x80\\x93\\x0b\\x18\\x16\\x65\\x66\\x14\\x49\\x3f\\x21\\x7f\\xc5\\xac\\x47\\xce\\x2c\\x1e\\x47\\xde\\x89\\x49\\xbf\\x99\\x3d\\x66\\xb0\\xf8\\xe9\\x3e\\x3f\\xf8\\x6f\\xef\\x17\\x2e\\xfc\\x57\\x16\\x6d\\x00\\xb6\\xa5\\xfa\\xc2\\x81\\x0a\\xa3\\xd4\\x16\\x9a\\xad\\xa8\\x28\\xa3\\x17\\xed\\x91\\x22\\xcd\\x72\\x9e\\x42\\x72\\x6b\\xce\\xbd\\x0e\\x7c\\x34\\x14\\x06\\xa7\\xd2\\xc3\\x55\\xa9\\xf4\\x04\\xfa\\x27\\x4d\\x7f\\xad\\x26\\xa8\\xe3\\x9c\\xeb\\xed\\x15\\x45\\xed\\xa9\\xb9\\x70\\x00\\x92\\xfb\\xd0\\xd2\\x6a\\x81\\xc9\\xc6\\xdc\\x23\\xb8\\x34\\x1e\\x20\\xe9\\xf2\\xd4\\x44\\x33\\x56\\xaa\\x4a\\x1c\\xb8\\x37\\x54\\xb8\\xe4\\xd0\\xa1\\x7a\\x81\\xb2\\x83\\x3d\\x9e\\xba\\x0e\\x03\\xa6\\xaa\\x3b\\xe7\\x7a\\x28\\x12\\xdc\\xe9\\x3e\\x6c\\xfd\\xe1\\xe7\\x1f\\x9f\\x3a\\x0e\\xf9\\x88\\x3c\\xfc\\x3a\\xc6\\x6d\\x04\\x08\\x56\\xf9\\xe6\\x4f\\x82\\x69\\xdc\\xe9\\x3e\\x8c\\xfa\\xe1\\xaf\\xef\\x4c\\x31\\xc0\\xbc\\x76\\x0d\\x5b\\x53\\x8c\\xfe\\xde\\x14\\xf7\\xee\\xcf\\xff\\xfd\\xf2\\xf9\\xef\\x1f\\x3e\\x7d\\xf8\\xe9\\x31\\x79\\xb2\\x31\\xc8\\x83\\xe7\\x5e\\x07\\x23\\x65\\x17\\xeb\\x57\\x3c\\x8e\\xa4\\x5d\\x57\\x3e\\x28\\xfc\\x00\\xa1\\x95\\xd9\\xdc\\x06\\x08\\x58\\x7a\\x2c\\x4a\\x6c\\xd5\\x82\\x43\\x97\\x31\\x0e\\xd7\\x82\\x59\\xb8\\x11\\x75\\xbb\\x1a\\x8f\\x5b\\x0e\\xff\\xec\\xa6\\xef\\x2d\\x6f\\xdc\\xf4\\x73\\xca\\xe7\\xd1\\x41\\x3d\\xcf\\xc0\\xa9\\x20\\x19\\xd1\\x40\\x09\\x97\\x6e\\x03\\xee\\x91\\x75\\x71\\xd5\\x91\\x5b\\xfd\\x8e\\x3e\\x79\\xd3\\x89\\xf4\\xa5\\xc2\\x3d\\x25\\xee\\x03\\x7e\\x25\\xf1\\xd0\\xc3\\x20\\x7c\\xdc\\x4b\\x59\\x8e\\xce\\xb7\\x1c\\xfe\\xd9\\x5d\\xdf\\x5b\\xca\\xb8\\xeb\\xbf\\x7d\\xfc\\xf9\\x2f\\x9f\\xfe\\xfc\\xc3\\xdf\\x9e\\xbc\\x25\\x63\\x34\\x44\\x35\\x46\\x53\\x6b\\x9e\\xf6\\x15\\xb2\\x8e\\x2f\\xb9\\xbc\\x7d\\xb4\\x17\\xf2\\x40\\x40\\xee\\x85\\x95\\x8a\\xdf\\x9d\\x62\\xa2\\x60\\xe0\\x85\\xd8\\x9b\\xa9\\xb6\\x17\\x9b\\xb0\\x97\\xc2\\x6f\\xcc\\x7e\\xf5\\x18\\xb7\\x78\\x2a\\xdc\\xf7\\x46\\x1a\\xee\\xf5\\xc7\\x3f\\x7f\\x7a\\x2a\\x19\\x15\\xf1\\x43\\xd5\\x8f\\x95\\x64\\xe0\\xdd\\x91\\x92\\x51\\x65\\x44\\x5d\\x8f\\xa5\\x17\\x1c\\x7d\\x08\\x90\\x0c\\x30\\xca\\xa4\\x64\\x80\\xc9\\x2b\\xcf\\x1b\\xf6\\xe3\\x18\\x87\\xe6\\x76\\xfe\\x2a\\x19\\xe2\\x56\\x92\\xf1\\x5a\\xad\\x22\\x3c\\xf7\\x3a\\x40\\x78\\x60\\x4d\\x04\\x60\\x8e\\x9c\\xa8\\xde\\xb2\\xe1\\xc5\\xd1\\x90\\x13\\xa5\\x4f\\x89\\x89\\x42\\xd2\\x96\\x55\\x5d\\xa5\\x0b\\x63\\x1c\\x63\\xfe\\x72\\x22\\x1f\\xf6\\xae\\x08\\xde\\x9b\\x3a\\xe7\\x02\\x3d\\x97\\xc2\\x8a\\x4a\\x32\\x17\\x24\\x5e\\x4a\\x21\\x92\\xa1\\x29\\x85\\x40\\xea\\x4b\\x29\\x1c\\xe0\\xbc\\x72\\x2b\\x18\\xd4\\x94\\xc2\\x92\\x4b\\xd5\\x0a\\x25\\xa4\\x14\\x02\\x1b\\x3d\\xa5\\xb0\\x80\\xfe\\x4e\\x29\\x0c\\xa1\\x92\\xc2\\xd7\\x6a\\x6c\\xcb\\x89\\x10\\x5f\\xca\\x89\\xaa\\x70\\x43\\x0b\\xe9\\x28\\x27\\x8a\\x54\\x84\\x39\\xd1\\x50\\x5b\\x13\\x0d\\xaf\\x89\\xe0\\xf0\\xe4\\x44\\x95\\x71\\xce\\x89\\x7c\\xfc\\x72\\xa2\\xb0\\x77\\xc5\\xfd\\xde\\x88\\x39\\x57\\xe8\\xa9\\xb0\\x9b\\x69\\x8b\\x81\\x06\\xb2\\x14\\x04\\xb5\\xd6\\x0f\\xa3\\xd9\\x5e\\x62\\x20\\x34\\xfc\\x42\\xf9\\x8a\\x44\\x40\\x43\\x8b\\xc2\\xfb\\x85\\x66\\xdf\\x25\\x66\\x09\\xbb\\x12\\xb5\\x17\\xef\\x87\\x4a\\x1a\\x14\\x37\\x66\\xbb\\x9a\\xe9\\x2d\\xc6\\xdb\\x6b\\x74\\xc9\\xa1\\xf3\\x43\\xb5\\x8d\\xa9\\xad\\x17\\xdb\\x2d\\x00\\x67\\xb4\\x86\\x76\\xd7\\x1a\\xda\\xf2\\x65\\x99\\x43\\x3b\\x6a\\xda\\xd9\\x0b\\xd8\\xc6\\xfb\\xe1\\xa1\\x97\\x35\\x74\\x74\\xb9\\x3d\\x29\\x78\\xe4\\xce\\xf7\\xe9\\xea\\x3f\\x7f\\xf9\\xf4\\xe9\\xc3\\x63\\xf9\\x50\\x8e\\x36\\xbc\\xef\\xca\\xb3\\x8d\\xa2\\x6f\\x6b\\x21\\xf9\\x5a\\xee\\x2d\\x62\\x22\\x9a\\x35\\xd9\\x11\\xc9\\x98\\x32\\x77\\x37\\xcd\\xcf\\xe6\\x51\\x7f\\x1f\\xea\\xf8\\x5e\\xbe\\xc8\\xf2\\xba\\x1c\\x63\\x78\\xbf\\x15\\xe1\\x65\\x40\\x7b\\x8c\\xb0\\xe6\\x9a\\xdf\\x1d\\xcd\\x66\\xfe\\x9e\\xd9\\xcc\\x04\\x84\\xbf\\xa6\\x7d\\xcf\\xfd\\x68\\x68\\x2a\\xaa\\xbf\\x6b\\x50\\xb3\\x98\\x28\\xa0\\x04\\x4b\\x60\\xde\\x23\\x8d\\xdb\\xf0\\xc7\\xe0\\x35\\xdc\\xe5\\x5e\\x47\\xff\\xe5\\xcb\\xc7\\x4f\\x50\\x76\\xcf\\x5f\\x2e\\x82\\xfe\\xa8\\xad\\x88\\x55\\xc6\\x75\\xf4\\xb9\\x29\\x6e\\xcc\\x6f\\xe6\\xb6\\x8d\\x5e\\xe4\\xfa\\x41\\xba\\xad\\xef\\x3e\\xbb\\x89\\x7b\\x95\\xfb\\xf5\\x26\\x9e\\x6f\\x53\\xe3\\x0e\\xaa\\xff\\x40\\xeb\\x5b\\x51\\xfd\\x17\\x13\\x22\\x5f\\x95\\x74\\xcb\\x77\\x98\\x59\\xc7\\x9d\\xe5\\xdd\\x18\\x9f\\x4b\\xf1\\xdf\\x7e\\xfa\\xfc\\xf3\\xdf\\xf3\\xf3\\xc7\\x0f\\x3f\\xfd\\x2d\\x3f\\xff\\xf6\\xaf\\x7f\\xf9\\xef\\x97\\xff\\x17\\x00\\x00\\xff\\xff\\x80\\x44\\xe7\\x73\\xfe\\x10\\x01\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_svg() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_svg,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.svg\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_ttf = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x9c\\xbc\\x07\\x5c\\x9b\\xd7\\xf5\\x3f\\x7c\\xce\\xb9\\xf7\\x91\\xc4\\x30\\x46\\x80\\x90\\x31\\x18\\x10\\x5a\\x80\\x40\\x0c\\x21\\x89\\x8d\\xd8\\x7b\\x6f\\x03\\x66\\x19\\x0c\\xc6\\x60\\xf0\\x02\\xbc\\x9d\\x78\\xc4\\x89\\x9d\\xc4\\xce\\xb4\\x9d\\x38\\x4e\\xdc\\x34\\xa3\\x76\\x42\\xf6\\x68\\x92\\x26\\xa9\\xb3\\xdb\\x34\\xbb\\x99\\x4d\\xd2\\xcc\\x26\\x4e\\x77\\xfb\\x6b\\x63\\x24\\xde\\xcf\\xf3\\x48\\xb2\\xb1\\xb3\\xfa\\x7f\\x49\\xb0\\x84\\x74\\x9f\\xab\\xe7\\xde\\x7b\\xc6\\xf7\\x9c\\xf3\\x3d\\x02\\x04\\x80\\x40\\x04\\xe0\\x00\\xa5\\x45\\xc5\\x25\\x7e\\x29\\x7e\\xa9\\x00\\xe8\\x0f\\x00\\x8e\\xd2\\xc6\\xe6\\x82\\xcf\\x95\\x1f\\x06\\x03\\x60\\x15\\x00\\x95\\xd5\\x36\\x26\\xa5\\x3e\\x3a\\xf1\\x55\\x23\\x00\\xbb\\x1a\\x00\\x7a\\xfa\\x47\\x7b\\xc7\\x1b\\xbf\\xb8\\x25\\x09\\x80\\xfd\\x13\\x40\\xb1\\xb2\\x7f\\xc3\\xba\\xe8\\x9e\\x2b\\x83\\x19\\xe0\\xaf\\xdf\\x07\\x80\\x1b\\x06\\xc7\\x57\\x8c\\x7e\\x1c\\xf2\\xde\\x5f\\x01\\x4f\\x4d\\x01\\xf8\\x5d\\xb7\\xa2\\x77\\xed\\xb8\\xf8\\x69\\x80\\xbf\\x7e\\x03\\x00\\x14\\x2b\\x56\\x4d\\x0f\\xde\\x7b\\xcd\\xe4\\x69\\x00\\xff\\x1e\\xc0\\xc9\\xb1\\xa1\\x81\\xde\\xe5\\xff\\xb9\\x36\\x30\\x10\\xf0\\xe2\\x57\\x00\\xc0\\x36\\x34\\x34\\xd0\\xeb\\x37\\xc4\\xfe\\x08\\xb8\\x53\\x01\\x00\\xba\\xa1\\xd1\\x75\\x53\\xca\\xf0\\xc9\\x4f\\x00\\x77\\x26\\x00\\x04\\xc6\\xac\\x5a\\xdd\\xdf\\xfb\\x5b\\x8a\\x0f\\x03\\xbc\\xba\\x0e\\x40\\xa1\\x1b\\xed\\x9d\\x1a\\x17\\xde\\x58\\xb0\\x04\\xf0\\x86\\x75\\x00\\x10\\x3d\\xd6\\x3b\\x3a\\x50\\xd7\\xb0\\xf9\\x33\\xc0\\x1b\\xae\\x06\\x60\\xab\\xc6\\x57\\xaf\\x5d\\xf7\\x59\\xc1\\x6d\\x7f\\x02\\x3c\\x06\\x00\\xda\\x57\\xc7\\xd7\\x0c\\x8c\\xdb\\xd7\\x67\\xfd\\x0a\\xf0\\x95\\x40\\x00\\xb8\\x4b\\xda\\x0b\\x71\\xe5\\xe2\\x0f\\x81\\x02\\x7e\\x03\\xbf\\x01\\x44\\x0d\\x1a\\x01\\xb1\\x0d\\xfb\\x01\\x71\\x0a\\xa7\\x00\\x71\\x0b\\x6e\\x05\\xc4\\xed\\xb8\\x1d\\x10\\x0f\\xe2\\xd5\\x80\\xf8\\x1b\\xfc\\x0d\\xa0\\x74\\xbd\\x2f\\x44\\x42\\x02\\x60\\x51\\x49\\x55\\x13\\x28\\xc4\\x5d\\x05\\x98\\x9b\\x93\\xde\\xc1\\xb5\\xa3\\xfd\\xe3\\x20\\xae\\x44\\xfa\\x0b\\xb8\\xe7\\x51\\x01\\x84\\x4f\\xc0\\xfb\\x78\\x23\\x1e\\xc5\\x9b\\xf0\\x18\\xde\\x8c\\xb7\\xe0\\x71\\xfc\\x19\\xde\\x8a\\x3f\\xc7\\xdb\\xf0\\x76\\xbc\\x03\\xef\\xc4\\x5f\\xe0\\xef\\xf1\\x04\\x9e\\xc4\\xbb\\xf0\\x6e\\x9c\\xc1\\x7b\\xf0\\x5e\\xbc\\x0f\\xef\\xc7\\x07\\xfe\\x7f\\x5d\\xf3\\x31\\x1d\\xa6\\x43\\x74\\x98\\x8e\\xd0\\x11\\xba\\x81\\x6e\\xa4\\xa3\\x74\\x13\\x1d\\xa3\\x9b\\xe9\\x16\\x3a\\x4e\\x3f\\xa3\\x5b\\xe9\\xe7\\x74\\x1b\\xdd\\x4e\\x77\\xd0\\x9d\\xf4\\x0b\\x3a\\x41\\x27\\xe9\\x2e\\xba\\x9b\\x66\\xe8\\x1e\\xba\\x97\\xee\\xa3\\xfb\\xe9\\x01\\x7a\\xf0\\xff\\xe7\\x55\\x5f\\xd3\\x43\\xf4\\x10\\x3d\\x4c\\x0f\\xd3\\x23\\xf4\\x08\\x3d\\x4a\\x8f\\xd2\\x2f\\xe9\\x97\\xf4\\x38\\x3d\\x4e\\x4f\\xd0\\x13\\xf4\\x2b\\xfa\\x15\\x3d\\x49\\x4f\\xd2\\x53\\xf4\\x14\\x3d\\x4d\\x4f\\xd3\\xaf\\xe9\\xd7\\x74\\x8a\\x4e\\xd1\\x33\\xf4\\x0c\\x3d\\x47\\xcf\\xd1\\xf3\\xf4\\x3c\\xbd\\x40\\x2f\\xd0\\x8b\\xf4\\x22\\xbd\\x44\\x2f\\xd1\\x6f\\xe8\\x37\\xf4\\x5b\\x7a\\x99\\x5e\\xa6\\xdf\\xd1\\xef\\xe8\\x15\\x7a\\x85\\x5e\\xa5\\x57\\xe9\\x35\\x7a\\x8d\\x5e\\xa7\\xd7\\xe9\\x0d\\x7a\\x83\\xde\\xa4\\x37\\xe9\\x2d\\x7a\\x8b\\x7e\\x4f\\xbf\\xa7\\xb7\\xe9\\x6d\\x7a\\x87\\xde\\xa1\\x77\\xe9\\x5d\\x7a\\x8f\\xde\\xa3\\xf7\\xe9\\x7d\\xfa\\x80\\x3e\\xa0\\x3f\\xd0\\x1f\\xe8\\x43\\xfa\\x90\\x3e\\xa2\\x8f\\x68\\x23\\x6d\\xa4\\x3f\\xd2\\x1f\\xe9\\x13\\xfa\\x84\\x3e\\xa5\\x4f\\xe9\\x33\\xfa\\x8c\\x3e\\xa7\\xcf\\xe9\\x0b\\xfa\\x82\\xbe\\xa4\\x2f\\xe9\\x4f\\xf4\\x27\\xfa\\x8a\\xbe\\xa2\\xaf\\xe9\\x34\\x9d\\xa6\\x6f\\xe8\\x1b\\xfa\\x33\\xfd\\x99\\x0e\\x01\\xc1\\x02\\xd0\\x42\\x36\\x00\\x14\\x42\\x27\\x2c\\x86\\x8b\\xe1\\x62\\x48\\x83\\x5d\\xb0\\x0b\\xac\\xf8\\x19\\x7e\\x0e\\x36\\xfc\\x92\\xe2\\x21\\x9d\\x12\\x29\\x17\\x36\\x51\\x3e\\x75\\xc3\\x7e\\xea\\xa5\\x35\\x70\\x82\\xd6\\xd3\\x06\\x78\\x82\\xa6\\x69\\x1a\\x9e\\xa4\\x4d\\x74\\x35\\x3c\\xc5\\x3e\\x61\\x9f\\xc0\\x7b\\xc0\\xf8\\x4b\\x98\\x00\\x02\\x80\\x70\\x58\\xb0\\x00\\x60\\x94\\xfb\\x91\\xbd\\x0a\\x83\\x04\\xf3\\x7f\\x3e\\x02\\x9a\\x0b\\x84\\xe8\\x0e\\x51\\xda\\xc5\\xbf\\xc7\\xa7\\xd7\\xac\\x95\\x24\\xce\\xa9\\xe8\\x73\\xbe\\x09\\xa0\\xe8\\x23\\x53\\x34\\xe0\\x4d\\xb5\\xa2\\x82\\x67\\x0a\\x33\\xd2\\x38\\x51\\xea\\x98\\xe7\\x37\\x42\\xfa\\x0b\\x64\\x3d\\xc0\\xa4\\x67\\x11\\xc0\\x65\\x45\\xd2\\xc4\\xdb\\x41\\x06\\x3d\\x92\\x1e\\xf8\\xc0\\x02\\xd0\\xc0\\x56\\x38\\x06\\x27\\xe0\\x24\\xfc\\x0a\\x9e\\x85\\xdf\\xc1\\xe7\\xf0\\x17\\x70\\xe1\\x42\\x54\\xa2\\x1e\\x8d\\x98\\x8c\\x8d\\xd8\\x8d\\x2b\\x70\\x2b\\x6e\\xc3\\x83\\x78\\x33\\xce\\xe0\\x5f\\x71\\x8e\\xc2\\xc9\\x4e\\xed\\xf4\\x18\\x3d\\x47\\x2f\\xd0\\x07\\xf4\\x0f\\x86\\x8c\\x31\\x1f\\xb6\\x90\\x69\\xd9\\xa5\\x6c\\x1f\\x3b\\xc8\\x6e\\x66\\x33\\xec\\x11\\xf6\\x02\\x7b\\x99\\xbd\\xc6\\xde\\xe2\\x7a\\x9e\\xc4\\x8b\\x79\\x2d\\xef\\xe3\\xab\\xf9\\x24\\xdf\\xcd\\x5f\\xe6\\xbf\\xe7\\x1f\\xf3\\x7f\\x09\\x28\\x04\\x0a\\xc1\\x91\\x18\\x99\\x17\\xb9\\x2b\\xf2\\x6f\\x91\\xff\\x88\\xfc\\x6f\\x54\\x75\\xb4\\x5f\\xb4\\x2a\\x3a\\x32\\x3a\\x26\\xda\\x10\\x9d\\x1c\\x6d\\x89\\xce\\x8c\\xce\\x8e\\x2e\\x8a\\x5e\\x17\\xbd\\x2d\\xfa\\x67\\xd1\\xb7\\x45\\x9f\\xd0\\x08\\x9a\\x60\\x4d\\xa8\\x26\\x46\\x63\\xd0\\x98\\x35\\xcb\\x62\\x28\\x46\\x16\\xb3\\x30\\x26\\x28\\x66\\x71\\x4c\\x64\\x8c\\x29\\xa6\\x2c\\xa6\\x27\\x66\\x40\\xff\\xe2\\xbf\\x7f\\xed\\x9a\\x9b\\x73\\xce\\xcd\\x79\\x34\\x5d\\x5c\\x61\\x34\\xc4\\xc0\\x31\\xb8\\x19\\x4e\\xc2\\x5d\\xf0\\x24\\x3c\\x07\\xaf\\xc0\\x17\\xf0\\x57\\x98\\xc3\\x40\\x0c\\x42\\x03\\xc6\\x62\\x0a\\x36\\x61\\x0f\\x0e\\x49\\x2b\\x3c\\x86\\x77\\xe3\\x5f\\xf1\\x5b\\x5a\\xe4\\x59\\xe1\\xb3\\xf4\\x02\\xbd\\x4d\\xff\\x60\\x70\\x76\\x85\\x3b\\xd9\\x3e\\x76\\x39\\xbb\\x8a\\x1d\\x67\\xf7\\xb0\\x47\\xd9\\x8b\\xec\\x55\\xf6\\x16\\x07\\x6e\\xe0\\xc9\\xbc\\x84\\xd7\\xf1\\x7e\\x3e\\xce\\xa7\\xf8\\x25\\xfc\\x77\\xfc\\x6d\\xfe\\x47\\xfe\\x6f\\x81\\x04\\x65\\x24\\x44\\xe6\\x46\\x6e\\x8f\\x3c\\x16\\xf9\\xf7\\xc8\\x7f\\x46\\x55\\x47\\x43\\x74\\x70\\xb4\\x3a\\x3a\\x3a\\x5a\\x1f\\x9d\\x1c\\x9d\\x1a\\x9d\\x71\\x76\\x85\\xc7\\xa3\\x6f\\x8b\\xfe\\xc5\\x79\\x2b\\xec\\xf0\\xac\\x50\\x39\\x6f\\x85\\xcb\\x3d\\x2b\\x9c\\x15\\x2d\\x0f\\xf7\\xe7\\xb2\\xb9\\x7f\\x01\\xcc\\xfd\\x11\\x0b\\xe7\\x9e\\x44\\xfb\\xdc\\xaf\\x00\\x30\\x1e\\x00\\xf5\\x00\\xa8\\x11\\xa5\\x0b\\x00\\x97\\x00\\xa0\\x68\\xe7\\x43\\xe7\\x54\\x73\\xcc\\xf5\\x6f\\xd7\\x9f\\xb0\\x4d\\xdc\\x1a\\x57\\xbf\\xab\\x00\\xf6\\x3b\\xdf\\x72\\xde\\xea\\x7c\\xd6\\x79\\x8f\\xf3\\x56\\xe7\\xcf\\x9c\\x37\\x39\\x0f\\x3b\\xf7\\x00\\xcc\\xad\\x98\\x1b\\x14\\x47\\x38\\xe5\\x00\\x73\\xa5\\xb3\\x67\\x66\\xff\\x03\\x30\\xfb\\x20\\xc0\\xec\\x5d\\x00\\xb3\\xc7\\x01\\x66\\x6f\\x02\\x70\\x1d\\x00\\x70\\x5d\\x0e\\x30\\x5b\\x0a\\xf0\\x59\\xd5\\x67\\xfe\\x9f\\x3e\\xfe\\xe9\\xd7\\x9f\\xd6\\x7f\\xfa\\xa7\\x4f\\xf1\\xe3\\x36\\x80\\x8f\\x6b\\x3f\\xae\\xf9\\xb8\\xea\\xe3\\xc2\\x4f\\x82\\x3f\\xce\\xfa\\xc4\\xef\\xe3\\xd4\\x8f\\xd9\\x47\\xff\\x05\\xf8\\xe8\\x75\\x80\\x8f\\x26\\x3f\\x5a\\xf9\\xd1\\xd0\\x47\\x5d\\x1f\\x1e\\xf8\\xa8\\xe1\\x23\\xc3\\x87\\x17\\xff\\xe1\\x8e\\x0f\\x27\\x3f\\xdc\\xf0\\xe1\\xea\\x0f\\x57\\x7d\\xd8\\xf3\\x61\\xd1\\x87\\x89\\x1f\\xc6\\xbf\\xf7\\xac\\xef\\xcb\\x74\\x15\\x5e\\xe7\\x96\\x5e\\xe9\\xe7\\xed\\x79\\x6a\\x21\\x7a\\x8f\\x77\\x01\\x90\\x03\\x60\\xe4\\xbc\\xdf\\x9e\\xf9\\xba\\x83\\x7d\\xb8\\x0a\\x7e\\xe0\\x07\\x97\\x7a\\x46\\x6c\\x05\\xc0\\x6b\\x3d\\xaf\\xdd\\x05\\x80\\xff\\x06\\xa0\\x48\\x00\\x72\\x00\\x90\\xe8\\x13\\xdf\\x02\\xa0\\xcf\\x01\\xe8\\xdb\\x0b\\x67\\xa0\\x3f\\x7f\\xdf\\xbc\\xf4\\x07\\xf7\\xef\\xff\\xc3\\x0f\\xe3\\x81\\xf8\\x15\\x7e\\x8d\\xa7\\xf1\\x1b\\xfc\\x33\\xfe\\x05\\xb6\\xe1\\xe7\\xf8\\x2d\\x9e\\xc1\\x59\\x74\\xa2\\x0b\\xe7\\x60\\x3b\\xec\\x20\\x20\\x24\\x22\\x46\\x1c\\x2e\\x82\\x8b\\x49\\x20\\x19\\xc9\\x49\\x41\\x3e\\xe4\\x0b\\x3b\\x61\\x17\\xa9\\x28\\x94\\xd4\\xb4\\x88\\xc2\\x68\\x31\\xec\\x86\\x3d\\x14\\x4e\\x11\\xb4\\x84\\x22\\x29\\x0a\\x2e\\xc1\\xcf\\xd8\\x27\\xb0\\x17\\xbf\\x80\\x4b\\xe1\\x32\\xd8\\x47\\x35\\x54\\x4b\\x75\\x54\\x0f\\xfb\\xa9\\x81\\x1a\\xa9\\x89\\x9a\\xa9\\x85\\x5a\\xa9\\x8d\\xda\\xe1\\x72\\xb8\\x82\\x96\\x52\\x07\\x75\\x52\\x17\\x2d\\xa3\\x6e\\xea\\x81\\x2b\\xe1\\x00\\xf5\\x52\\x1f\\xf5\\xd3\\x72\\x1a\\xa0\\x41\\x38\\x08\\x57\\x89\\xf6\\x8c\\xa6\\x69\\x13\\x6d\\xa6\\x2d\\xf8\\x25\\xfe\\x09\\xff\\x4a\\x7e\\x74\\x0d\\x5d\\x4b\\xd7\\xd1\\xf5\\xb4\\x96\\xd6\\xd1\\x24\\x4d\\xc1\\x2f\\xe0\\x04\\xfd\\x05\\x4e\\xd2\\x5f\\xe9\\x6f\\xf4\\x77\\xb8\\x0b\\xee\\xa6\\xff\\xd2\\xb7\\x74\\x06\\x66\\x68\\x96\\x9c\\x70\\x0f\\xb9\\x68\\x0e\\xee\\x65\\x00\\xf7\\x31\\x84\\xfb\\x19\\x31\\x06\\x0f\\x30\\x0e\\x0f\\xc2\\x43\\x4c\\x60\\x32\\x26\\x67\\x0a\\xe6\\xc3\\x7c\\x99\\x1f\\xf3\\x87\\xa7\\x58\\x00\\x5b\\x08\\x4f\\xb3\\x05\\xf0\\x6b\\x38\\x05\\xcf\\xc0\\xb3\\xf0\\x1c\\x3c\\x0f\\x2f\\xb0\\x40\\x78\\x11\\x5e\\x62\\xb5\\x2c\\x14\\x7e\\xc7\\xd4\\xf0\\x0a\\x5b\\xc4\\xc2\\xd8\\x62\\x16\\x0e\\xaf\\xc2\\x6b\\xf0\\x3a\\x5b\\xc2\\xea\\x58\\x24\\xbc\\xc1\\xa2\\xe0\\x4d\\x16\\xcd\\x34\\xf0\\x16\\x8b\\x81\\xdf\\xc3\\xdb\\xf0\\x0e\\xd3\\xb2\\x08\\x78\\x97\\xe9\\x98\\x9e\\x19\\x98\\x91\\xc5\\xb2\\x38\\x16\\x0f\\xef\\x31\\x13\\x4b\\x60\\x89\\xf0\\x39\\x7c\\x01\\x5f\\xc2\\x9f\\x98\\x19\\xbe\\x82\\xaf\\xe1\\x34\\x4b\\x82\\x6f\\xe0\\xcf\\xf0\\x17\\xf8\\x2b\\x4b\\x86\\xbf\\xb1\\x14\\x96\\x0a\\x7f\\x67\\x16\\xf8\\x07\\x4b\\x63\\xf5\\xcc\\x0a\\x2e\\x66\\x83\\x39\\x66\\x67\\xe9\\x2c\\x83\\x65\\x22\\x20\\x22\\xb1\\x2c\\xd6\\xc0\\xb2\\x91\\x21\\x47\\x81\\x7d\\xcb\\x1a\\x59\\x13\\x06\\x63\\x08\\xaa\\x30\\x94\\x35\\xb3\\x16\\x34\\xa0\\x91\\xcd\\x71\\x60\\xff\\x65\\xff\\xc1\\x58\\x8c\\xc3\\x78\\x34\\xb1\\x33\\x6c\\x16\\x13\\x30\\x91\\xfd\\x83\\xfd\\x93\\xb5\\xb2\\x36\\xf6\\x19\\xfb\\x1c\\xcd\\x98\\xc4\\x9c\\xcc\\x85\\xc9\\x98\\xc2\\xbe\\x60\\x5f\\x62\\x2a\\x5a\\x30\\x0d\\xad\\x68\\x43\\x3b\\x6b\\x67\\x4b\\xd9\\x9f\\xd8\\x57\\xac\\x83\\x75\\x72\\x39\\x57\\xb0\\xaf\\xd9\\x69\\x4c\\xc7\\x0c\\xf6\\x0d\\xfb\\x33\\x66\\x62\\x16\\x66\\xb3\\xff\\xc3\\x1c\\xcc\\x65\\xff\\x62\\xff\\x66\\x5d\\x6c\\x19\\xeb\\xc6\\x3c\\x74\\x70\\x81\\xcb\\x30\\x1f\\x0b\\x38\\x72\\x62\\x7f\\x61\\x7f\\xe5\\x8c\\x73\\x2c\\x64\\x2b\\xd9\\x30\\x1b\\x61\\xab\\xd8\\x28\\x1b\\x63\\xab\\xb1\\x08\\x8b\\xd9\\xdf\\xd8\\xdf\\xd9\\x4e\\xb6\\x0b\\x4b\\xb0\\x94\\xed\\x66\\x7b\\xb8\\x0f\\xf7\\xc5\\x32\\x76\\x09\\xf7\\x63\\x7b\\xd9\\xa5\\xb8\\x1c\\x07\\xf8\\x02\\xee\\x8f\\xd3\\xec\\x53\\xdc\\x04\\x32\\xf2\\x05\\x37\\xcc\\xc1\\x0b\\x15\\x0b\\xbc\\x0e\\x8c\\x7e\\x42\\xee\\xd1\\x2b\\xfd\\xc0\\x41\\x00\\x19\\xc8\\x41\\x01\\x3e\\xe0\\x0b\\x7e\\xe0\\x0f\\x0b\\x20\\x00\\x16\\x42\\x20\\x28\\x21\\x08\\x82\\x21\\x04\\x54\\x10\\x0a\\x6a\\x58\\x04\\x61\\xb0\\x18\\xc2\\x21\\x02\\x96\\x40\\x24\\x44\\x41\\x34\\x68\\x20\\x06\\xb4\\xa0\\x03\\x3d\\x18\\xc0\\x08\\xb1\\x10\\x07\\xf1\\x60\\x82\\x04\\x48\\x04\\x33\\x24\\x41\\x32\\xa4\\x40\\x2a\\x58\\x20\\x0d\\xac\\x60\\x03\\x3b\\xa4\\x43\\x06\\x64\\x42\\x16\\x64\\x43\\x0e\\xe4\\x42\\x1e\\x38\\x20\\x1f\\x0a\\xa0\\x10\\x8a\\xa0\\x18\\x4a\\xa0\\x14\\xca\\xa0\\x1c\\x2a\\xa0\\x12\\xaa\\xa0\\x1a\\x6a\\xa0\\x16\\xea\\xa0\\x1e\\x1a\\xa0\\x11\\x9a\\xa0\\x19\\x5a\\xa0\\x15\\xda\\xa0\\x1d\\x96\\x42\\x07\\x74\\x42\\x17\\x2c\\x83\\x6e\\xd1\\x7b\\x8a\\x1a\\x8b\\x7f\\xc3\\x7f\\xe0\\xb7\\x38\\x47\\x8c\\x64\\x24\\x90\\x9c\\x7c\\x48\\x41\\xbe\\xe4\\x4f\\x01\\xb4\\x80\\x16\\x52\\x20\\x05\\x91\\x92\\x82\\x29\\x84\\x54\\xa4\\xa6\\x50\\x5a\\x44\\x8b\\x29\\x8c\\x22\\x28\\x5c\\xd4\\x51\\x1c\\x83\\xd5\\xd0\\x07\\xfd\\xb0\\x02\\xc7\\x61\\x3d\\x5c\\x0c\\xa3\\x30\\x8c\\xdb\\x60\\x2d\\x0c\\xe1\\x7e\\xd8\\x06\\x3b\\xf0\\x52\\x18\\xc7\\xcb\\xf1\\x0a\\x18\\x80\\x75\\xb8\\x0b\\xf7\\xe0\\x6e\\xf8\\x35\\x5e\\x06\\x2b\\x61\\x1a\\x1e\\x82\\x9d\\xb0\\x07\\xb6\\x42\\x2f\\xac\\xc2\\xbd\\x70\\x0d\\xee\\x83\\xbb\\x61\\x04\\x36\\xe2\\x1a\\x60\\xf8\\x15\\x7e\\x83\\x2e\\x51\\x63\\xc5\\x73\\xc3\\x11\\x5c\\x85\\x2b\\x70\\x08\\x76\\xe3\\x95\\x14\\x4d\\x97\\xe3\\x06\\xdc\\x84\\xeb\\x70\\xbd\\x74\\x08\\xab\\x61\\x03\\x0e\\xe3\\x28\\xae\\xc5\\xd3\\xf8\\x4f\\xfc\\x1a\\xff\\x85\\x7f\\xc7\\xff\\xc3\\xff\\xe0\\x7f\\xf1\\xdf\\xa2\\x05\\x02\\xc0\\x33\\x92\\xed\\x01\\xb8\\x14\\x6e\\x80\\x5b\\x60\\x0c\\x8e\\xc2\\x4d\\x70\\x0c\\x26\\xe1\\x38\\xdc\\x0c\\x37\\x8a\\xe7\\x8c\\x07\\x79\\x01\\x33\\xcb\\x00\\x04\\xf0\\x83\\xb4\\xca\\x99\\x25\\x75\\x6d\\x8e\\x05\\x24\\xca\\x46\\x3b\\x43\\xc4\\x5c\\xa8\\x0a\\x77\\x04\\x33\\x14\\x5f\\x68\\x16\\x5f\\x80\\x76\\x12\\x91\\x74\\x75\\xfb\\x83\\x41\\x41\\x41\\x4a\\xae\\x58\\x64\\x42\\xa6\\x0d\\x36\\x5a\\x04\\xe9\\x5f\\x74\\x06\\x76\\x70\\x1c\\x46\\x73\\x60\\x87\\x80\\xc3\\xc2\\x45\\xae\\x27\\xd1\\x76\\xc9\\x56\\xe9\\x5f\\x51\\xa6\\x72\\x00\\xf8\\x21\\x61\\x06\\xc2\\x21\\x0a\\xd6\\x55\\xce\\xa8\\xeb\\xda\\x1c\\xc6\\x00\\x3f\\x62\\xfe\\x44\\x80\\x0c\\x7a\\x15\\x28\\x93\\x65\\x57\\x2e\\xf4\\x25\\xce\\x85\\x76\\x1f\\x39\\x09\\x42\\x5e\\xe5\\x02\\x44\\xcc\\xc1\\xaa\\x70\\x87\\x5e\\x7c\\x41\\x7c\\x8f\\x09\\xbc\\xef\\xbb\\x57\\x79\\xc6\\xb5\\x3b\\x16\\x47\\x45\\x2e\\x89\\x08\\x5f\\x1c\\xb6\\x48\\x1d\\xaa\\x0a\\x09\\x0e\\x52\\x7a\\x7e\\x02\\x03\\x15\\x4b\\x4c\\xa8\\x61\\xda\\x60\\xad\\x55\\x13\\xac\\xb1\\x6a\\x82\\x2d\\x4c\\xfc\\xb5\\xa8\\xb4\\x4c\\xa3\\xd2\\x30\\x2d\\xd3\\x04\\x6b\\xe8\\x1d\\xd7\\xb3\\xd5\\xfd\\xd5\\x73\\x18\\xd8\\xe8\\xfa\\x13\\xc6\\xd5\\xf6\\xd7\\x62\\x56\\x6d\\x7f\\xed\\xe7\\xff\\x69\\x44\\x70\\xfd\\xb9\\xba\\xff\\x7d\\xcc\\x6a\\x74\\x3d\\x83\\x87\\x5d\\x83\\x78\\xb8\\x0b\\x1f\\xe9\\xc1\\x63\\x2e\\xe9\\xb7\\xc7\\x55\\xda\\xe5\\x1a\\xc4\\xff\\xc3\\x47\\x24\\xdd\\xb8\\x67\\x2e\\x99\\x67\\xc8\\xf6\\x43\\x21\\x6c\\x72\\xf8\\x05\\x2d\\x24\\x82\\x14\\x64\\x9c\\x2a\\x2a\\x67\\x02\\xea\\xda\\x1c\\xb1\\x80\\x24\\x10\\x0a\\xe3\\x20\\xc8\\x48\\x90\\x8d\\x01\\xe3\\x9c\\xad\\x90\\x0e\\x03\\xa8\\x1f\\x64\\x32\\xde\\x01\\x9c\\x17\\xf3\\xaa\\x70\\x87\\xf1\\xbb\\x43\\xd9\\xda\\xef\\x19\\xd9\\xee\\x50\\x3a\\x72\\x33\\x33\\xac\\x69\\x96\\xd4\\xc8\\x88\\x45\\x6a\\x65\\xa0\\x5c\\x11\\x62\\xc2\\x34\\x33\\x19\\xcd\\xcc\\x9a\\x96\\x4b\\x76\\xab\\x45\\x15\\xc9\\xd4\\x5a\\x33\\xd3\\xc6\\x04\\x90\\x3c\\x24\\x92\\xd4\\x91\\x4c\\x15\\x12\\x40\\x72\\x95\\xd6\\x6a\\x66\\x46\\x4b\\x24\\xb3\\xa7\\xe6\\x12\\x7b\\x2a\\xb5\\x6d\\xb2\\xa8\\xf1\\xaa\\xd5\\xf9\\xe9\\xfd\\x97\\xd4\\x0e\\xb6\\xec\\x59\\x66\\xa1\\x49\\x8c\\xaf\\x59\\x5d\\x92\\x37\\x5a\\x6f\\xc6\\x94\\xd6\\xe9\\xd2\\xa6\\xab\\x46\\x1d\\x59\\x83\\x97\\xd5\\xaf\\x68\\xbe\\x6e\\x4d\\x11\\x4d\\x61\\x66\\xf7\\xa6\\x22\\xc7\\xba\\xd6\\x34\\x5c\\xe1\\xe8\\xad\\x48\\x5f\\x14\\x5e\\xd2\\xb7\\xbb\\xb3\\x79\\x4f\\x4f\\x86\\xfc\\xc5\\x97\\x14\\x45\\x6b\\x8f\\xf6\\x56\\x6e\\x5d\\x6a\\xd1\\x95\\x0c\\x14\\x14\\xf6\\x96\\xdb\\xc3\\x22\\x8a\\xfb\\x76\\x75\\xb4\\xec\\xe9\\x4e\\x97\\x3f\\xf1\\xb8\\x2c\\x63\\xe4\\xa6\\x55\\x6d\\x5b\\x1b\\x0c\\xa8\\x2b\\x19\\x04\\x01\\x12\\xe6\\xbe\\xe6\\x47\\x85\\x67\\x40\\x05\\x26\\xc8\\x87\\x56\\xe8\\x80\\x1c\\x47\\x66\\x07\\x12\\x6b\\x47\\x99\\x9c\\x2a\\x80\\x00\\x39\\x61\\x3f\\x70\\x90\\xcb\\xb8\\xbc\\x1f\\x18\\x03\\x11\\x58\\x17\\x55\\x82\\x4c\\x26\\x74\\x80\\x20\\x14\\x0b\\x55\\x71\\xee\\x1f\\x9d\\x42\\x11\\x61\\x0a\\x4e\\xcb\\x25\\x4b\\x6a\\x24\\xa9\\xc4\\x65\\x6a\\x63\\xcc\\x64\\xb5\\x84\\x44\\x92\\x25\\x35\\x97\\xac\\xd6\\x34\\x33\\x89\\xfb\\xa0\\xc2\\x5c\\x26\\x0e\\x51\\xab\\x02\\x98\\x38\\xc2\\xf8\\xdd\\x11\\x82\\x11\\xd5\\x09\\x9a\\xbc\\xee\\xdc\\xbc\\xee\\x3c\\x8d\\x26\\x6f\\x59\\x6e\\x5e\\xb7\\x43\\xd3\\x13\\x64\\xcc\\x8e\\x8f\\xcf\\x34\\x04\\x05\\x19\\xb2\\xe3\\xe3\\xb3\\x0c\\x41\\xa4\\xc2\\x68\\xc7\\xb2\\xbc\\xbc\\x65\\x0e\\x0d\\x8a\\xcf\\xa4\\x51\\xd8\\x1b\\x64\\xc8\\x36\\xc5\\x67\\xe9\\x83\\x82\\xf4\\xd9\\x26\\x53\\x96\\x41\\xe9\\xea\\xaf\\xa6\\x86\\x6a\\x7e\\xcc\\x3e\\xdc\\x98\\x6a\\x69\\x18\\xb6\\x57\\xdb\\x86\\x1a\\x52\\x53\\xeb\\x87\\x6d\\xba\\xf2\\x4c\\x9d\\x3e\\xb3\\x4c\\x57\\xad\\x2f\\xcf\\xd2\\xeb\\xb3\\x2a\\x74\\xb3\\x8f\\xd9\\x86\\x1b\\x52\\x53\\x1b\\x86\\x6d\\x35\\x76\\x71\\x4c\\xc3\\x90\\x5d\\x5f\\x9e\\xa5\\xd3\\x65\\x95\\xeb\\x6b\\xf4\\xe5\\x99\\x3a\\x5d\\x66\\xb9\\xfe\\x71\\x33\\x77\\x98\\x25\\x2b\\x0c\\x7b\\xe6\\x4e\\xf3\\x63\\xc2\\x33\\x90\\x08\\x59\\x50\\x05\\xcf\\x38\\x02\\xf3\\x2c\\x89\\x2a\\x8e\\x42\\x4a\\xf4\\x92\\x50\\xce\\x51\\x14\\x3c\\xdf\\xba\\x36\\x47\\x0c\\x08\\x82\\x77\\xd3\\x10\\xa9\\x83\\x21\\x51\\x4e\\xa5\\x0c\\x39\\xf7\\x3c\\xa7\\xaa\\xf0\\xca\\x99\\xa0\\xba\\x36\\x47\\xf4\\xf9\\x23\\xdb\\xc1\\x3b\\x90\\x75\\x00\\x63\\xc5\\x4c\\x1c\\x17\\xf2\\x3f\\xce\\xf8\\xd3\\x93\\xb5\\xb7\\xb7\\x3b\\x16\\x26\\x99\\xcb\\x4b\\xcd\\x59\\x49\\x59\\xda\\x90\\xc8\\x38\\xb9\\x68\\x56\\xdc\\x92\\x2b\\x1d\\xa1\\x28\\xa8\\x72\\xb4\\xd9\\xec\\x96\\x10\\x99\\x5c\\xad\\x35\\xca\\x64\\xd2\\x81\\x8a\\x82\\x1d\\x1c\\x6a\\xb3\\xa3\\x51\\x2e\\x93\\xa9\\x43\\x22\\x89\\xc9\\x42\\xd5\\x76\\x9b\\xcd\\xee\\x39\\x3d\\xbc\\x59\\x63\\x8f\\x53\\x27\\x36\\x4d\\x55\\x38\\x86\\x2b\\xe3\\xa2\\xad\\x25\\x86\\x0d\\xb8\\x2e\\x21\\x99\\xc6\\x8a\\x0a\\xee\\xbf\\x62\\xa2\\xfa\\x97\\xa3\\x9d\\x87\\x57\\xe7\\x25\\x54\\xf4\\xa7\\x5f\\xb5\\xec\\x86\\x1c\\xd7\\x6e\\x5f\\xfd\\xd2\\x5e\\x4c\\xac\\x1d\\x5b\\x81\\x05\\x96\\x9d\\xd9\\xf9\\x18\\x96\\x98\\x67\\x4c\\xa9\\xb4\\x84\\x33\\xb5\\xa9\\xa5\\xad\\x23\\xb9\\x7c\\x63\\x6b\\x72\\x62\\xcd\\x50\\x56\\x4a\\x73\\x65\\x61\\xe4\\x72\\x57\\x7c\\xd9\\x89\\xce\\xe9\\x37\\x97\\x7e\\x72\\x79\\x45\\x9b\\x6d\\xf9\\xfe\\xd6\\xc2\\xf5\\x2b\\x3a\\x4d\\xce\\x7c\\xac\\x2a\\xc0\\x0f\\xfd\\xa3\\xab\\x6f\\xad\\xce\\x1b\\x2a\\x8f\\xe3\\x09\\x15\\x57\\x94\\x8c\\x9a\\x57\\xe7\\xe9\\x0b\\x2c\\x91\\xfa\\xdc\\x06\\x00\\x24\\xce\\x0b\\x68\\x9d\\x64\\x6f\\x13\\xdd\\xd6\\xd6\\x4f\\x34\\x19\\xed\\xe0\\xb1\\xb5\\x81\\x92\\x5f\\x6e\\x06\\xd1\\xd2\\x82\\x64\\x68\\xef\\x0f\\x52\\x92\\x22\\x54\\x32\\xb3\\x56\\x0b\\xad\\x0b\\x5a\\x26\\x8c\\x08\\x6b\\x5d\\xbf\\xc3\\x58\\x11\\xf9\\x22\\x6e\\x71\\xc5\\xb3\\x65\\xb2\\x1e\\x50\\x83\\xec\\xbe\\x20\\x01\\x93\\x4d\\x98\\x16\\x14\\x64\\xb3\\xab\\x03\\x48\\x14\\xfd\\xa0\\xd0\\x50\\xb5\\xdc\\x60\\x20\\xb2\\xe2\\x96\\x92\\xe9\\x5b\\x7b\\x96\\x34\\xef\\xee\\x4a\\x49\\xe9\\xda\\xdd\\xbc\\xa4\\xf7\\xd6\\xe9\\x62\\xaa\\x3a\\x81\\x45\\x18\\xf2\\x46\\x76\\x7d\\xce\\xf3\\x4e\\xd7\\xfb\\x87\\x43\\x0e\\xb9\\xde\\x73\\xbe\\x98\\x57\\x9d\\xf3\\x3a\\x06\\x63\\xe1\\x49\\x69\\xfe\\x16\\x57\\x3c\\xb3\\x9f\\x37\\x7f\\x08\\x91\\x4c\\x6e\\xcc\\xa5\\x20\\xab\\x35\\x8d\\x0c\\x06\\xa3\\x3d\\x34\\x34\\x28\\x48\\xc5\\xec\\xc5\\xd3\\xb7\\xf6\\x4a\\xf3\\x5b\\x96\\xed\\x6e\\x58\\xd2\\x73\\xeb\\x74\\x09\\xe5\\x9c\\x74\\x3d\\xee\\xfa\\xe6\\xf5\\x9c\\xea\\x9c\\x17\\x5d\\x68\\x38\\x14\\x72\\x18\\x0d\\xae\\x17\\x72\\xaa\\xb3\\xdf\\x70\\x9d\\x76\\x3d\\x76\\x42\\xb2\\x95\\x0f\\xe3\\x0b\\xbc\\x4a\\xc8\\x85\\x00\\x58\\xec\\x50\\x07\\x2c\\xf0\\xf7\\xf3\\xf5\\x51\\xc8\\x65\\x8c\\xd0\\x1f\\x4a\\x01\\x60\\x38\\x04\\x15\\x2a\\x13\\xea\\xed\\x02\\xb3\\x30\\xbd\\x5a\\x40\\x39\\x63\\x46\\xca\\x74\\x6d\\xd5\\xe1\\x66\\xbf\\x0d\\x41\\xb8\\xde\\xe0\\xda\\x82\\xfe\\x7d\\xff\\xfc\\xba\\x87\\x35\\xaf\\x9e\\xb8\\x1c\\xaf\\x73\\x0d\\x1e\\x5c\\xb3\\xce\\xf5\\x64\\x29\\xb6\\xb8\\x4e\\x16\\x01\\xc2\\x24\\x1c\\xe4\\x5d\\xfc\\x41\\xf0\\x03\\x83\\x43\\x0b\\x02\\x90\\xd0\\xcc\\x11\\x18\\x22\\x01\\xf6\\x82\\x20\\x88\\xf2\\x28\\x50\\xb5\\xdb\\x47\\xc8\\x14\\x8b\\x4d\\xa8\\x51\\x69\\x94\\x5a\\xa5\\xc6\\xaa\\x51\\x5a\\xe8\\x66\\x7c\\xcc\\x55\\x34\\xe5\\xaa\\xc1\\x7b\\xa7\\xe8\\xd3\\xf5\\x2e\\x2d\\x7e\\xb0\\x1e\\x5f\\x93\\xf6\\x65\\x87\\xeb\\x1d\\x6a\\x87\\xc7\\xc0\\x17\\x02\\x1d\\x0b\\x64\\x02\\xb9\\xef\\x36\\x4c\\xbc\\x5b\\xbd\\x28\\xaf\\x46\\x9b\\xd5\\x6a\\xa1\\xf6\\x60\\x6d\\x5a\\x4c\\x55\\xdb\\x76\\x6d\\x42\\x5b\\x4b\\xad\\x26\\x79\\xcb\\xe1\\x1b\\xc4\\x35\\x7f\\x46\\xed\\xec\\x45\\x7a\\x02\\x18\\x2c\\x72\\xa8\\x2e\\x3c\\x70\\x65\\xa0\\x74\\xdc\\x1a\\xab\\x86\\xbd\\xe8\\x0c\\xa7\\xcf\\xa8\\x7d\\x40\\x94\\x9b\\xc8\\xb9\\x7f\\xd2\\xd7\\xf0\\x28\\xf8\\x41\\xb0\\x23\\x50\\xbc\\x83\\x0e\\x40\\x2c\\xc6\\x2a\\x5d\\x8c\\x38\\x5c\\x9f\\x66\\xb3\\xa4\\x86\\xaa\\x42\\x64\\xda\\x18\\x03\\x45\\xda\\x93\\x92\\xed\\xf6\\xe4\\x24\\x7b\\x73\\x7c\\x56\\x56\\x7c\\xbc\\xdd\\x2e\\xde\\xaf\\x7a\\xee\\x62\\xf6\\x85\\x30\\x03\\xcc\\x7d\\x3d\\xc2\\x5a\\x40\\xcc\\xc6\\x2a\\xf7\\xc7\\x09\\x5a\\xb4\\xe0\\x9e\\x71\\xea\\x19\\xdf\\x22\\x4b\\x94\\x6c\\xca\\xd1\\xb9\\xd3\\xdc\\x22\\xd9\\x63\\x2d\\xa4\\x88\\x7b\\x67\\x0c\\x23\\x46\\x58\\x01\\x44\\xd2\\x47\\x17\\x55\\x7a\\x4d\\x70\\x31\\x54\\x25\\x24\\xc4\\xe9\\x24\\x2c\\xe0\\xb1\\xb5\\x46\\xa5\\xdb\\xb2\\xaa\\x30\\x44\\x8d\\x6e\\xa7\\xa3\\xd2\\xa4\\x19\\x31\\x92\\x49\\xe6\\x95\\x5b\\x6c\\xe3\\x27\\x26\\x37\\x9c\\x9c\\xb0\\x23\\xda\\x26\\x4e\\x6c\\x98\\x3c\\x39\\x6e\\x9f\\xfd\\x84\\xd1\\x81\\x80\\xd4\\xda\\x55\\xa5\\x5d\\x3b\\xea\\x74\\x74\\x2b\\x73\\xae\\x59\\x98\\x56\\xb3\\xb2\\xb8\\x6b\\x47\\xad\\x8e\\x1c\\x1b\\xdf\\xb9\\xa5\\xbb\\xfb\\x96\\x77\\x36\\x62\\xd2\\xc6\\x77\\x7e\\xd6\\xdd\\x7d\\xfc\\xdd\\x8d\\xae\\x5f\\xc5\\xe9\\xa9\\xd1\\x31\\x56\\x67\\xae\\xd9\\x79\\x62\\x99\\x26\\xda\\x79\\x57\\xee\\xca\\xea\\x84\\xda\\x9d\\x27\\x96\\xb9\\xf1\\xe9\\x7b\\x62\\xec\\x27\\xcc\\x80\\x0c\\x42\\x1c\\x4a\\x81\\x8b\\xe1\\x57\\x19\\x00\\xe4\\x40\\x55\\xa0\\x78\\x46\\x1a\\xad\\x52\\xb0\\xea\\x2d\\xf4\\xf9\\x94\\x6b\\x14\\xbf\\x55\\x0a\\x61\\x27\\x27\\x5e\\x97\\xae\\xeb\\x03\\xe0\\xc1\\xc2\\x29\\xd0\\x81\\xd9\\x61\\x22\\x04\\x2e\\x2e\\x19\\x39\\x12\\x1f\\x07\\x44\\xc9\\x64\\x15\\x55\\x02\\xe7\\xe2\\x69\\x89\\xb3\\x2d\\xd6\\x85\\x98\\x02\\x05\\x45\\x98\\x49\\xa3\\xb1\\x62\\x2e\\xf3\\x7a\\x0e\\xb9\\xd6\\xb3\\x03\\xa2\\x2c\\xa0\\x86\\x07\\xcf\\xae\\xc6\\x0f\\xac\\xed\\xf9\\xba\\x84\\xfa\\xf1\\xe2\\xea\\xa9\\xc6\\x44\\x9c\\x42\\xc7\\xba\\xe3\\x83\\x3d\\x37\\x8e\\xe7\\x58\\xea\\x57\\x58\\x5c\\xc3\\xe4\\xea\\xa4\\x25\\xd9\\x63\\x23\\xab\\x32\\x0a\\xc6\\x6a\\x13\\xd2\\x96\\x6e\\x2a\\x5f\\x7a\\x6c\\xaa\\x24\\x63\\xf8\\xaa\\xf6\\xb2\\x4b\\x2e\\xda\\x98\\xe9\\xb2\\xba\\xd7\\xd5\\x3b\\x77\\x9a\\xfd\\x5d\\x38\\x05\\xb9\\x50\\xec\\x28\\x88\\x46\\x39\\x48\\xf7\\x07\\x48\\x30\\x0e\\x82\\x5c\\x26\\x17\\x64\\xe3\\x00\\x20\\x17\\x40\\xde\\x3f\\xef\\x7e\\xcf\\x41\\x85\\xdc\\xec\\xb4\\x54\\x73\\x62\\x9c\\x51\\x17\\x12\\x1b\\xad\\x10\\x8f\\xcc\\xf2\\x03\\x37\\x1d\\x1a\\xea\\xf5\\x9c\\x22\\x3c\\x90\\xce\\x4d\\x04\\x14\\x5a\\x3c\\x38\\x5d\\xb2\\xb9\\xcb\\x96\\x50\\x37\\x51\\x5c\\xbc\\xae\\x39\\x05\\xa7\\xa8\\x70\\xdd\\xb1\\xee\\xae\\x1b\\x26\\xf2\\xb4\\x05\\xcb\\x32\\x2f\\xb9\\xb2\\x78\\xfa\\xf8\\xb2\\x9e\\xdb\\xb7\\x56\\xd0\\x24\\xd9\\xba\\xb6\\x94\\x97\\x4e\\xb7\\xa6\\x64\\x2d\\xdf\\x5d\\x39\\xcd\\xc2\\xd0\\x50\\x36\\x54\\x54\\xba\\xba\\x2a\\xd6\\x54\\xb3\\xba\\xa8\\xe5\\xaa\\x55\\x39\\xf6\\x15\\xd7\\xf6\\xd8\\xfa\\x9b\\x0b\\x55\\x86\\x47\\xb6\\xf7\\x1d\\x5e\\x99\\x91\\x31\\x72\\xb8\\xb7\\x6c\\x5d\\x43\\x42\\x6c\\xcd\\xba\\xaa\\xba\\x89\\xb2\\x18\\x31\\x1e\\x69\\x02\\xe0\\x9d\\xc2\\x0c\\xf8\\x42\\x00\\x98\\x1c\\xb1\\x0b\\x10\\xb8\\x02\\x11\\xa8\\x42\\x38\\xa7\\xc5\\x9c\\x67\\x57\\x82\\xe4\\x6d\\x94\\x41\\x67\\xd5\\xd8\\xa2\\xd2\\x4a\\x6a\\x8c\\x16\\xd4\\x28\\xe5\\x6c\\xea\\xd3\\x4f\\x27\\x9d\\x8d\\x74\\xf3\\xc5\\xce\\x55\\xb4\\x24\\x03\\xdf\\x1c\\x70\\x5d\\x89\\xe3\\x45\\x6c\\x76\\x56\\xcf\\x8a\\x06\\x00\\xe1\\xd5\\xb9\\xd3\\xdc\\x21\\xcc\\x40\\x02\\x64\\x3b\\x32\\x04\\x94\\x51\\x02\\x72\\x19\\x55\\x00\\x97\\x09\\x32\\x2e\\x8c\\x03\\x81\\x8c\\x93\\xac\\xdf\\xa3\\xa7\\x90\\x5d\\x09\\x82\\xe0\\x75\\x60\\xb1\\xba\\x90\\x58\\xad\\x52\\x29\\x57\\x84\\x9b\\x30\\x58\\x04\\x93\\x36\\x9b\\x77\\x1b\\x2f\\xdc\\x3f\\x69\\x9b\\x91\\x97\\xd2\\xdb\\xce\\xcb\\x53\\x6d\\xfb\\xea\\xfa\\x8f\\x8d\\x67\\xa7\\x8d\\x1c\\x5f\\xdd\\x71\\x64\\x7d\\xb9\\xef\\x3a\\x9f\\xb4\\xa6\\x35\\xa5\\x75\\x1b\\x6a\\xf4\\x89\\x2d\\x9b\\x6a\\xcc\\xd5\\x85\\x39\\x91\\xf4\\x15\\x3d\\xbb\\xce\\x15\\xa6\\x37\\x15\\x6f\\x39\\x39\\x38\\x30\\x73\\x71\\x95\\x6d\\xe8\\xda\\xee\\xd2\\xf1\\x9a\\xb8\\xcc\\x15\\x97\\xd5\\x57\\xed\\xec\\x4b\\xf7\\x0f\\x37\\x86\\x8b\\xd8\\xfa\\x9a\\xb9\\xd3\\x3c\\x42\\xf8\\x25\\x68\\x21\\x1d\\xec\\x8e\\xb4\\x38\\x39\\x09\\xa2\\xe8\\xa2\\x0c\\xb9\\x80\\xbc\\x5f\\xd4\\x69\\xf1\\x6e\\xa5\\xfb\\xa6\\x0e\\x20\\x2a\\xa6\\x2a\\xbd\\x2e\\xd9\\xac\\x4b\\xd7\\xa7\\x87\\xc7\\xc6\\x6a\\x24\\x9f\\xab\\xd2\\x06\\x30\\xf9\\x39\\x19\\x90\\x6e\\xde\\x9a\\x96\\xcb\\xed\\x4c\\xbc\\x6d\\x55\\x48\\x24\\xd9\\x3d\\xeb\\x60\\xdd\\x41\\x07\\x5f\\xbb\\xb4\\x4c\\x1e\\x51\\xd3\\xb5\\x32\\x7d\\xf8\\xc6\\xe1\\x34\\xfb\\xe8\\xcd\\x2b\\xd7\\xdc\\x3d\\x95\\x8b\\xd1\\x45\\xab\\x0e\\xff\\xe6\\xa2\\x2f\\x32\\x46\\x3b\\x8b\\x95\\x69\\x5d\\x3b\\xaa\\xab\\xd6\\xd7\\xc6\\xc5\\xd5\\x4f\\x0a\\xbf\\x1c\\xc5\\x9e\\x9b\\xdf\\x58\\x1b\\x5b\\x94\\x1c\\x5e\\xbf\\xeb\\x64\\x67\\xcf\\x7d\\x97\\x36\\x75\\x5c\\xf3\\xe4\\xe0\\x8e\\xa1\\x97\\x1e\\xbc\\x61\\x22\\x1f\\x9d\\x87\\x75\\x8e\\x0e\\x7b\\xf7\\xb2\\x9b\\xd6\\x38\\xb0\\x60\\x74\\x7f\\x65\\xe5\\xde\\xe1\\x3c\\x51\\xde\\xb7\\x78\\x72\\xa3\\x32\\x88\\x72\\x44\\x88\\xf8\\x41\\x5c\\x94\\x1b\\x45\\x64\\x57\\xba\\x55\\x50\\xa9\\x54\\x32\\x85\\xda\\x84\\xa8\\x15\\xad\\x26\\xcf\\x74\\x1e\\xdc\\x42\\x2b\\x67\\x4f\\xb1\\xc7\\x85\\x91\\x6f\\xaf\\x11\\x8a\\x47\\x24\\x7b\\x76\\xcf\\xdc\\x69\\x5e\\x2b\\x9c\\x02\\x23\\x64\\x41\\x2d\\x58\\x1d\\xa9\\x61\\x02\\x91\\x80\\x15\\xa2\\x4b\\x60\\x02\\xf5\\x03\\xe7\\xdf\\xb5\\x6b\\x55\\x15\\x05\\x8e\\x74\\x9b\\x39\\x41\\x17\\x63\\x96\\x89\\x6e\\x48\\xd4\\x0b\\x37\\x70\\x3e\\x0b\\x40\\xce\\xc1\\x14\\xe6\\x05\\x8d\\x1e\\x14\\x79\\xe1\\xdf\\x3c\\x5e\\xef\\x68\\xb7\\x66\\xaf\\xa8\\x8c\\xaf\\xd8\\x76\\x7b\\xd7\\xb2\\x3b\\xb6\\x55\\xc4\\x55\\x0c\\x64\\x5b\\x5b\\x1d\\xda\\xfc\\x35\\x87\\x97\\xb6\\xdf\\xb8\\xae\\xb0\\x31\\xbd\\x7b\\x4b\\x51\\xf1\\x96\\x2e\\xbb\\xbd\\x6b\\x4b\\x69\\xf1\\xe6\\x65\\x76\\x7d\\x6a\\xf3\\x78\\x6e\\xde\\x58\\x63\\x52\\x4a\\xe3\\xea\\xdc\\xdc\\xd5\\x4d\\xa9\\x3c\\x23\\x6b\\xa8\\x39\\x5f\\xa5\\x2a\\xea\\x5c\\x53\\xd0\\x7f\\xfd\\xa0\\x35\\x6d\\xc5\\xf5\\xfd\\x05\\x6b\\x3a\\x8a\\x55\\xaa\\xfc\\xe6\\xa1\\xac\\xae\\x83\\x83\\x36\\xdb\\xe0\\xc1\\xd9\\xaf\\xcb\\xd6\\xd5\\x99\\x4c\\x75\\xeb\\xca\\x2a\\xd6\\x54\\x1b\\x63\\xab\\x27\\x18\\xcb\\x5f\\x55\\x1d\\x1f\\x57\\x39\\x5a\\x58\\x38\\x5c\\x6e\\x34\\x96\\xaf\\x04\\x82\\x23\\x73\\xff\\xe2\\x31\\xc2\\x29\\x49\\x5e\\x7e\\xf9\\x60\\x9c\\x40\\x5c\\x40\\x0f\\x4e\\x8c\\x92\\x23\\x07\\xd1\\xf2\\xf5\\x7b\\x65\\xa5\\xa8\\x52\\x86\\x1e\\x01\\xca\\x91\\xc0\\x9f\\xff\\x4f\\x0d\\x73\\x63\\xc4\\x80\\xff\\x65\\xb6\\x9f\\x9c\\x48\\xc4\\x87\\x6a\\xbd\\x0e\\xc1\\x2d\\xad\\x31\\xd1\\xaa\\x60\\x3f\\x1f\\xd0\\xa2\\x56\\xa1\\x08\\x31\\xe9\\x73\\x99\\xdd\\x0d\\xdf\\xa5\\xe3\\xf0\\x20\\x7e\\x2e\\xd7\\xda\\x83\\x53\\xc5\\xc0\\x67\\xde\\x21\\xe0\\xd6\\x43\\xaf\\x5e\\x9c\\xcd\\x16\\x97\\x77\\x8e\\x39\\x86\\x6e\\x18\\xb6\\x66\\xac\\xfe\\xd9\\xaa\\xad\\x77\\xaf\\xb6\\x84\\xe7\\x0e\\x5c\\xfb\\x9b\\x9d\\xe1\\xf8\\x65\\xf6\\xea\\xae\\xe2\\xa0\\x84\\x96\\xed\\x4d\\x35\\x53\\x8d\\xa6\\xd8\\xba\\x0d\\xbd\\xd8\\x75\\xf4\\xb5\\xc9\\x84\\x72\\x5b\\x64\\xf3\\xa5\\x77\\x2f\\xed\\x7b\\xe8\\x8a\\x16\\xec\\xff\\xd9\\xab\\xa3\\xeb\\x96\\x3f\\x7d\\xf7\\x35\\xa3\\xb9\\xb8\\x0a\\x3f\\x31\\x96\\xf6\\x66\\xe6\\xf4\\xde\\xb9\\xad\\xbc\\x78\\xfc\\x40\\x75\\xd9\\xbe\\xb1\\x22\\x80\\xb9\\x39\\x6a\\x9a\\xfb\\x27\\xd3\\x70\\x03\\x19\\x20\\xd0\\x06\\x28\\x87\\x40\\xb0\\xb1\\x55\\xe0\\x73\\x0f\\xe2\\xc3\\x6c\\xd5\\x8c\\xc5\\x24\\x8e\\x09\\x74\\xbd\\xc3\\x96\\x70\\x03\\x19\\x21\\x10\\x52\\xd9\\x2a\\x94\\x43\\x00\\x5c\\x01\\x00\\x3e\\xf7\\x80\\x77\\x94\\x64\\xef\\x7f\\x0e\\x9f\\xb3\\x39\\x9e\\x05\\x32\\x90\\xdd\\x27\\x90\\x88\\xbf\\x50\\x85\\x56\\x54\\xa1\\x99\\x5e\\x9d\\xbd\\x8d\\xb5\\xd3\\x95\\xae\\x37\\xb6\\xe2\\xa6\\x1e\\xdc\\xb8\\x45\\xca\\xdb\\xdc\\x85\\x07\\x78\\x3c\\xbb\\x16\\x18\\xc8\\x21\\xc6\\x11\\x25\\xa2\\x0b\\x86\\xd0\\x0b\\x8c\\x88\\x35\\x03\\x63\\xa2\\xe6\\x30\\x09\\xef\\x04\\x4a\\x1e\\x5b\\xc4\\x39\\xa2\\xd6\\xc4\\xcf\\xee\\x64\\x9b\\xc5\\x5f\\x96\\xb0\\xd2\\x79\\x66\\xa5\\xf4\\xd9\\x0f\\xc1\\x97\\x5c\\xc3\\x73\\xe6\\x7f\\xb6\\xf8\\xc9\\x56\\x76\\xad\\x53\\xc3\\x56\\xce\\x5e\\x4b\\x57\\xa3\\x79\\x93\\x6b\\x77\\x8f\\x6b\\xd7\\x26\\xe9\\xb3\\xdf\\x9f\\xfb\\x0f\\x07\\xe1\\x14\\xc4\\x81\\x15\\xd2\\x1d\\x56\\x40\\x60\\x80\\x6c\\x5c\\x86\\x8c\\x03\\xe3\\x63\\xe2\\x18\\xf7\\xe9\\x02\\xe7\\x52\\xcc\\x96\\x23\\x54\\x01\\xa4\\xa5\\x9a\\x13\\x20\\x0e\\xe2\\x74\\x21\\x66\\xb9\\xa8\\xc6\\xb9\\xcc\\xfe\\x03\\x2e\\x29\\x80\\xa9\\xd8\\x7c\\xa0\\x13\\x81\\x4a\\x5d\\x4e\\xa2\\xb1\\x3c\\x33\\xc6\\x50\\x3a\\xe8\\xc8\\x5a\\x51\\x93\\x44\\x53\\xcc\\x31\\x7a\\x55\\x4b\\xc7\\xc1\\xc1\\x74\\x53\\x49\\x67\\xb2\\x26\\x7e\\xb1\\xef\\x15\\x66\\xa3\\x31\\x39\\xd9\\x68\\x34\\xe3\\xd5\\x79\\x5d\\x35\\xa5\\x71\\xfa\\xea\\xe6\\x9e\\x8c\\x9c\\xe5\\xc5\\x86\\x18\\x47\\x77\\x4e\\xc3\\xae\\x65\\x16\\x6b\\xdf\\xde\\xe6\\xe2\\xe9\\x91\\xae\\xb8\\xc8\\xcc\\xfc\\x32\\x93\\xeb\\x7e\\x6d\\x4a\\x8a\\x36\\xc6\\x6c\\x06\\x82\\xac\\xb9\\x7f\\xf1\\x03\\xc2\\xc3\\xd0\\x09\\x13\\x98\\x50\\x39\\x13\\x5f\\xd7\\xe6\\x50\\xae\\xd4\\xc5\\xf8\\x73\\xe6\\x53\\x84\\x02\\x14\\xa3\\x4c\\x60\\x15\\xe1\\x9e\\xd7\\x14\\xf3\\x5e\\x6b\\x77\\x2b\\x92\\x11\\x08\\x7c\\x18\\xf9\\xf4\\x2b\\x90\\x21\\x82\\xc0\\x40\\x34\\x33\\xf2\\x0e\\x90\\xcb\\x25\\x3b\\x2c\\xeb\\x00\\x99\\x2c\\x47\\xe6\\x55\\xa8\\xff\\x69\\x78\\xb1\\xcc\\xab\\x58\\xff\\x0f\\xb3\\xc7\\xff\\xbf\\xcc\\xee\\x48\\x10\\x47\\x2a\\xc8\\xa7\\x1f\\x14\\x0c\\x14\\xad\\xf0\\xa3\\xc3\\xdb\\x45\\xed\\x0c\\x18\\x5b\\x15\\x9f\\x10\\x17\\x1b\\x1f\\x1f\\x1f\\x6b\\xf0\\x55\\x2c\\x31\\x61\\x80\\x20\\xf9\\x0e\\x49\\x31\\xb9\\xdd\\x13\\x66\\xcb\\x99\\x4c\\xb2\\x84\\xdc\\x6e\\x13\\x0f\\x57\\x26\\x23\\xb9\\xfb\\x05\\xb2\\xab\\xbd\\x23\\x05\\x71\\xa4\\x20\\x0b\\x71\\x7b\\x4c\\x7b\\xb0\\xc1\\x20\\x4a\\x01\\xdf\\x4f\\xfe\\x61\\xc6\\xcc\\x9a\\x54\\x7d\\xba\\x31\\x4c\\x16\\x94\\x60\\xcd\\xd5\\xc6\\x65\\xc7\\x2f\\x0e\\x20\\xa6\\xb0\\x34\\x4f\\x57\\x47\\xa7\\x99\\xb4\\x4a\\x4c\\x26\\x99\\xca\\x10\\xa9\\xb1\\x18\\x17\\x07\\x2a\\x50\\x30\\x0f\\xde\\xb4\\x6a\\xc5\\x23\\x97\\xb7\\x09\\x42\\xfc\\xe8\\xa3\\xfb\\xa2\\x8a\\x0b\\x72\\x16\\x85\\x87\\x17\\x57\\x56\\xc5\\x8c\\xfd\\x62\\x4b\\x73\\x6a\\x30\\x63\\xb1\\x65\\x43\\x7b\\x7e\\xd6\\x73\\xd9\\x13\\xeb\\x92\\x9d\\x51\\x24\\x5f\\x18\\x66\\x58\\xac\\xcd\\x4c\\x36\\x2e\\x4c\\x08\\x4a\\x88\\x2c\\xe8\\xc8\\x8e\\x66\\xf2\\xc4\\x95\\x2b\\xfb\\xaa\\x12\\xc3\\x13\\xb3\\x35\\x9a\\xec\\xc4\\x70\\x6d\\x56\\x4d\\x4b\\x5b\\x6c\\xff\\x5d\\x3b\\x2a\\x03\\xc3\\xa2\\x95\\xe8\\x52\\xc4\\x14\\x58\\xa3\\xf5\\x39\\xf5\\xad\\x6d\\xc6\\x3d\\x1f\\xdc\\xd8\\xdc\\x35\\xe3\\x9a\\x3b\\xbe\\xf1\\xfd\\x9f\\xf7\\xfa\\x05\\x87\\x07\\xd6\\x07\\x47\\xa9\\xfc\\xd2\\xba\\x76\\x1c\\xbe\\xbb\\x73\\xc5\\xa9\\x93\\x07\\x86\\x33\\xc7\\x1e\\x3b\\xf3\\x79\\xb8\\x23\\x3f\\x3b\\x29\\x42\\x9b\\x51\\x69\\xc4\\x87\\x03\\x82\\x8b\\xc6\\x2e\\x73\\xe7\\x59\\x07\\x00\\xf8\\x0e\\x61\\x06\\xe4\\xe0\\x0b\\x7a\\x47\\x8c\\x2f\\x72\\xd1\\xc3\\x71\\xa9\\x3e\\xd2\\x27\\x39\\x39\\xe6\\xce\\x6c\\x49\\x01\\x8a\\x08\\x34\\x51\\xc3\\x44\\xb4\\xae\\x45\\x0d\\x63\\x7b\\x9d\\x6f\\xed\\x98\\xc6\\x77\\x57\\xe1\\x5b\\x53\\xce\\x29\\xfc\\xfc\\xef\\x78\\xad\\x6b\\xa5\\x30\\xf3\\x6d\\x1d\\x21\\xb9\\xdc\\xb9\\x81\\xa7\\x01\\x78\\xa3\\x30\\x03\\xa1\\xa0\\x85\\x64\\xc8\\x75\\x64\\xf9\\x23\\x13\\x81\\x01\\x97\\x23\\x23\\xce\\xfa\\xbd\\xc1\\xb9\\x84\\xa0\\xb0\\x43\\xe6\\xfe\\x30\\xb5\\x1a\\x20\\xd9\\x6c\\xd0\\xa9\\xb5\\xea\\x98\\xc5\\x8b\\x20\\x14\\x54\\x1a\\x85\\x42\\x65\\xb2\\x28\\x35\\x91\\x4c\\xee\\xf1\\x82\\xa1\\x22\\x92\\x51\\x6a\\xdc\\xba\\x6a\\xd4\\x7b\\x9f\\x68\\x9e\\xc6\\xcb\\xdb\\x6e\\xbb\\xa8\\x16\\x0d\\xf9\\x6d\\x96\\xbc\\x91\\x9a\\x44\\xac\\xd8\\x7a\\xeb\\x52\\xd7\\x5d\\xd8\\x5c\\x30\\xd5\\x61\\xb5\\xb4\\xaf\\x77\\xb8\\x6e\\x41\\x7d\\xde\\x86\\x8e\\xf4\\xcc\\x9e\\x8d\\x0e\\xd7\\x17\\xc2\\x0c\\x26\\x76\\x5d\\xd1\\x9f\\xdb\\x5f\\x9d\\x11\\xbc\\x30\\xb7\\x63\\x5d\\x61\\xef\\x75\\xc3\\xe9\\x48\\x8f\\x39\\x4f\\xa0\\xa9\\x66\\x75\\x69\\xf1\\x48\\x45\\x2c\\xad\\xc0\\x98\\xa2\\xc1\\x92\\xf2\\x15\\xf9\\x51\\x52\\xd6\\x7a\\xcb\\xdc\\x69\\x5e\\x29\\x9c\\x02\\x0b\\xd8\\x1c\\x16\\xd1\\x7d\\x33\\x12\\xc6\\x65\\x28\\x70\\x26\\xf0\\x31\\x60\\xcc\\xeb\\xc8\\x39\\xf7\\x3a\\x72\\x00\\xb0\\x80\\x25\\x51\\x17\\x92\\xa8\\x93\\x8b\\x5b\\xe8\\x16\\x37\\xa3\\xd5\\x2d\\x6f\\x9e\\xc4\\x18\\x57\\xa9\\x42\\x22\\xb9\\x24\\x77\\xbc\\xd2\\xbf\\x62\\xe3\\x6d\\x43\\xad\\xfb\\x47\\xeb\\xd2\\xc2\\x10\\xc3\\xd2\\xea\\x46\\xf7\\xb7\\xae\\xbc\\x6d\\x63\\xb9\\xdf\\xa4\\xbf\\xb5\\x6d\\x73\\x63\\xe9\\x58\\x63\\xa6\\x4e\\xa9\\xd4\\x65\\x36\\x8e\\x95\\x36\\x6d\\x69\\xb5\\xfa\\xe1\\xa3\\x7d\\x77\\x6c\\x29\\xb1\\x76\\x6e\\xbe\\xe2\\x70\\xd5\\xeb\\x55\\x87\\xaf\\xd8\\xdc\\x65\\x2d\\xd9\\x72\\xe7\\xf2\\xca\\x9d\\xfd\\x19\\xc9\\x75\\x23\\x53\\x5b\\xb2\\xde\\xcc\\xda\\x3a\\x35\\x52\\x9f\\x6c\\xef\\xdb\\x59\\x25\\x9d\\xfb\\x3d\\x00\\xbc\\x5f\\x98\\x81\\x05\\x10\\x0e\\x09\\x8e\\x38\\x01\\x3d\\xa8\\xc3\\x73\\x0e\\xdc\\x7d\\x0e\\x01\\x01\\x00\\x01\\xe1\\x01\\x8b\\x95\\x0b\\x61\\x01\\xf8\\x6b\\x64\\xde\\x33\\x50\\xab\\x02\\x98\\x9c\\x29\\x2d\\xb9\\xcc\\x6e\\x35\\x33\\xe3\\x3d\\xd8\\xb3\\xef\\xfd\\xeb\\xeb\\x88\\xea\\xae\\x7f\\x7f\\xdf\\x97\\x5f\\xae\\xbf\\x67\\x43\\x0e\\x62\\xce\\x86\\x7b\\xd6\\x0b\\x33\\xb4\\xf2\\xde\\x6f\\x76\\x5f\\xb1\\xfb\\x9b\\x7b\\x87\\x49\\xa8\\x38\\x13\\x4e\\x9d\\x87\\x9e\\x1b\\x3d\\xb8\\xea\\xd9\\xeb\\x3b\\xc9\\xed\\x5f\\x5e\\x00\\xe0\\x3a\\x61\\x06\\xfc\\x20\\xce\\x61\\x00\\x01\\x00\\x05\\x10\\x11\\x35\\x6b\\x77\\xa3\\x45\\x6f\\xc6\\x86\\xaa\\xe6\\x87\\xc8\\x4a\\x31\\x48\\x96\\x7e\\xd9\\xd3\\xce\\xad\\xf4\\xe9\\xec\\xad\\xac\\xd5\\x19\\x4d\\x17\\xd1\\xa3\\xce\\xbb\\x86\\x84\\x99\\x61\\xe7\\x7b\\xe2\\xdc\\xaf\\x01\\xf0\\x24\\x61\\x06\\x7c\\x40\\xeb\\x88\\xf6\\xc8\\x74\\xaf\\xc7\\x07\\x91\\x34\\xf7\\xf9\\x72\\x2d\\xe2\\x75\\x69\\xce\\x97\\x9d\\x9b\\xa7\\x58\\x97\\x33\\x9c\\x76\\xd2\\xed\\xce\\x36\\x71\\xbe\\x17\\xc5\\xf9\\xd6\\xcf\\x9d\\xe6\\xe5\\xc2\\x29\\xb0\\x43\\x86\\xc3\\x66\\x01\\x09\\xb2\\x00\\x31\\x19\\x23\\xd9\\x38\\xc8\\x40\\xe0\\x32\\xa1\\xf7\\x7b\\x8f\\x5f\\xa9\\xf2\\x1c\\x7d\\xb8\\x49\\x1f\\xc0\\xb4\\x66\\xe1\\xc2\\x93\\x97\\xab\\x22\\x05\\x75\\xa8\\x68\\x70\\x44\\x5f\\x58\\x6e\\x1a\\x5a\\xbf\\xbd\\xa0\\xf5\\xc0\\xba\\x96\\x8c\\x48\\xc4\\x70\\x7b\\xc3\\xf8\\xfe\\xd6\\xde\\x5b\\x37\\x57\\xfb\\x6e\\x08\\xc8\\x68\\x9b\\xac\\x2a\\x19\\x6f\\xce\\x31\\x06\\x21\\xaa\\xe2\\x1d\\xed\\x6b\\xca\\x12\\x7b\\x3a\\x6a\\x97\\xa0\\xeb\\x36\\x7c\\xe9\\xa4\\xa5\\x22\\x49\\x85\\xd6\\xae\\x2d\\x57\\xde\\x58\\xf3\\x9b\\xaa\\xc3\\x57\\x6c\\xea\\xb4\\xe6\\x4d\\x1c\\xed\\x29\\x99\\x6a\\x49\\x49\\xaa\\x1d\\x9e\\xdc\\x92\\xf5\\x72\\xce\\xf6\\xe9\\x55\\xf5\\x49\\x88\\x7e\\x4b\\x52\\x0d\\x38\\x35\\x24\\xae\\xe9\\x26\\x00\\x9e\\x28\\xed\\xbf\\xc6\\x11\\x09\\x6e\\x1c\\xd4\\x2b\\x4a\\x43\\x76\\x25\\xa1\\x17\\xde\\x7a\\xf6\\x5d\\xa3\\x55\\x8a\\x7b\\x64\\x51\\x6a\\x94\\x16\\x9e\\x38\\xe1\\x6c\\x9a\\x98\\xa0\\x13\\x13\\xf4\\xa8\\xb3\\x44\\x98\\x71\\xae\\xa1\\xcb\\xc5\\xf9\\x9e\\x02\\xe0\\xfe\\xd2\\x7c\\x5a\\x47\\xb4\\x80\\x67\\xc3\\x15\\x8e\\x44\\xd2\\x99\\xe6\\xb0\\x79\\x33\\x06\\x7b\\xce\\x51\\x04\\x01\\x4f\\xb1\\x4a\\xd7\\x55\\x38\\x3a\\xfb\\x00\\xf6\\xb9\\x8e\\x0a\\x33\\xab\\xce\\x18\\x56\\xae\\xe4\\xef\\x8a\\x73\\xae\\x9e\\x3b\\xcd\\x41\\x98\\x01\\xb5\\x84\\x28\\x08\\x18\\x10\\x1b\\x77\\xcb\\xaa\\x67\\xb7\\x8b\\xb1\\x4a\\x17\\xa2\\x77\\x23\\x0a\\x8b\\xd2\\x9b\\x4e\\xf5\\x18\\x71\\xb6\\x7b\\x23\\x15\\x4d\\xff\\xbc\\xbf\\xff\\xf8\\x86\\x12\\xf9\\x46\\x96\\xda\\x3a\\x55\\x59\\xb5\\xb1\\x35\\x89\\x84\\x99\\x59\\xdf\\xbe\\xdb\\x37\\x97\\xe5\\x4c\\x1c\\xed\\x2b\\x9b\\x6e\\x49\\xca\\xec\\xbb\\xa8\\x4c\\x92\\xc9\\xe7\\x01\\xf8\\x8d\\xc2\\x0c\\xf8\\x8b\\x98\\xdf\\x57\\x86\\x0c\\x10\\x2b\\x08\\x11\\x45\\x63\\x28\\xed\\x49\\x50\\xb0\\x32\\x48\\xfa\\x30\\xb9\\xb4\\x1f\\x76\\xb4\\x88\\xe8\\x7f\\xf6\\x97\\xd3\\xd3\\xf7\\xe1\\xe9\\x6b\\x9c\\x6f\\x53\\xdd\\x41\\x7a\\xf5\\x39\\xe7\\xbf\\x85\\x99\\xd9\\x7f\\xbd\\x4c\\x39\\xce\\xe9\\xd9\\xdf\\x03\\xc2\\xfb\\x00\\x3c\\x43\\x98\\x01\\x01\\xc2\\x1c\\xa1\\xde\\x00\\x42\\xca\\xbd\\x49\\x72\\x18\\x28\\x46\\x11\\x7a\\x71\\x47\\x2c\\xd8\\x44\\x9f\\xcd\\x1e\\x9f\\x1a\\x1a\\x12\\x66\\x00\\xe1\\x36\\x00\\x9e\\x25\\xcc\\x40\\x00\\x98\\x1d\\x26\\x5f\\xd1\\x70\\x4a\\x51\\x37\\x20\\x10\\x8e\\x0b\\x9c\\xc4\\x9d\\xf0\\x58\\x69\\x00\\x08\\x80\\x80\\xe0\\x60\\x65\\x90\\x4c\\xb1\\xc8\\xe4\\x43\\x16\\xa5\\x56\\x19\\x8c\\x5a\\x0c\\x56\\x6a\\x95\\x98\\x8f\\x7a\\x4c\\xbf\\x71\\xbd\\x8f\\xeb\\xf1\\x1a\\xd7\\x1b\\xbe\\xeb\\x85\\x99\\xd9\\xe7\\x59\\xfa\\xb7\\x75\\xb4\\x8b\\x2e\\x9b\\xfd\\x39\\xab\\x72\\x5e\\xec\\xdc\\x24\\x7d\\xde\\xcd\\x00\\x3c\\x41\\xd2\\x9b\\x48\\x47\\xb8\\x9c\\x08\\x08\\x2b\\x18\\x8a\\xf7\\x8b\\x9e\\xe5\\x2b\\x83\\xa4\\xbd\\xd6\\x68\\x91\\x69\\x95\\x16\\x0c\\xb6\\xf0\\x84\\x49\\xe7\\x72\\x9c\\x9c\\xa4\\x1b\\x70\\x92\\xff\\xf6\\x8c\\x45\\x98\\x39\\x63\\xe5\\x2f\\x01\\xc1\\x66\\x4f\\xdc\\xb3\\x04\\xb2\\xa4\\x08\\xea\\xfb\\xd2\\x37\\x89\\x89\\x89\\x06\\x69\\x37\\x25\\xb7\\xed\\x35\\x8b\\x5c\\x6d\\x34\\x0b\\x5e\\xe5\\x90\\xdc\\x36\\xaf\\xc5\\x45\\x96\\x9a\\x91\\x7d\\xad\\x2d\\xfb\\x46\\x6b\\x2d\\xa2\\x5d\\x4c\\xad\\x5d\\x75\\x59\\x6b\\xeb\\xbe\\xd1\\x1a\\xcb\\x22\\xdc\\x80\\x81\\xba\\x8c\\x86\\xb1\\x92\\x92\\xd1\\x86\\x0c\\x5d\\x20\\xa2\\x52\\xfa\\xab\\x74\\xb4\\x21\\x43\\xbb\\x10\\x69\\xb2\\xe2\\xc8\\x81\\x6d\\xdd\\x76\\x7b\\xf7\\xf6\\x03\\x87\\x2b\\x9e\\xac\\x38\\x72\\x60\\x7b\\x8f\\xf4\\xc7\\x91\\x4a\\xca\\xdc\\x3a\\x35\\xda\\x90\\x9c\\xd2\\x30\\x3a\\xb5\\x35\\xe3\\xe9\\xcc\\x2d\\xd3\\xa3\\x0d\\x29\\x29\\x0d\\xa3\\xd3\\x5b\\x32\\x45\\x3b\\xf9\\x36\\x00\\x1f\\x93\\xf6\\x3e\\x5c\\x8c\\xff\\x81\\x09\\x48\\xc0\\xce\\xc5\\x6b\\xde\\x20\\x10\\x20\\x3c\\x4c\\xb9\\x10\\x02\\x60\\x81\\x46\\x29\\x53\\x84\\x9a\\x50\\x34\\x26\\x9e\\x22\\xc7\\x39\\xdf\\x84\\x75\\x53\\xf8\\x62\\xcf\\x6d\\x5b\\xca\\xca\\xb6\\xdc\\xde\\xed\\xba\\x0b\\x1b\\xca\\x36\\x77\\x5a\\xd3\\x3a\\x37\\x97\\xbb\\xee\\xa2\\x36\\xe7\\xed\\xc2\\x0c\\x65\\xaf\\x3e\\xba\\x7c\\xf9\\x8d\\xa3\\x99\\x38\\x80\\xe6\\x86\\x0d\\x95\\x95\\x1b\\x9b\\x93\\x48\\xbc\\x8f\\x95\\x73\\xc4\\x57\\x08\\xa7\\x40\\x03\\x79\\xe2\\x7d\\x28\\x04\\x02\\x86\\x15\\x72\\x19\\x41\\xe9\\x0f\\xed\\x69\\xbc\\x7b\\x4f\\x99\\x5c\\x2d\\x47\\x29\\x65\\xfd\\x23\\x3b\\xbb\\x02\\x23\\x73\\xbb\\xf3\\xbf\\x6d\\x74\\x9d\\xd6\\x94\\xc7\\xb5\\x1f\\x98\\x68\\xb4\\x85\\x23\\x2e\\xb6\\x35\\x4e\\x5c\\xd9\\xde\\x7e\\x60\\xa2\\xc1\\xbe\\x18\\x27\\x51\\x69\\xcc\\x6e\\x5d\\x5b\\x5e\\x3e\\xd1\\x9a\\x2d\\x5a\\x9f\\x20\\x63\\x4e\\xcb\\xda\\xf2\\xf2\\xb5\\xad\\x59\\x06\\x25\\xd2\\xf6\\xc6\\x3b\\x8e\\x5c\\x9c\\xf8\\x75\\x15\\xa2\\x9f\\xbf\\xbd\\x7b\\xc7\\xc1\\xa3\\xd5\\x77\\x55\\x1f\\xbd\\x5a\\xda\\xe3\\x1d\\x57\\xdd\\x54\\x4d\\x39\\x17\\x6d\\x1c\\x6d\\x48\\x4e\\x6e\\x18\\xdb\\xb8\\x23\\x67\\x26\\x67\\xc7\\xa6\\xd1\\x46\\xf1\\x8f\\x4d\\x3b\\x72\\xc4\\xb5\\xfd\\x06\\x80\\x0f\\x0a\\x33\\x10\\x04\\x51\\x90\\xe8\\x88\\x5f\\x88\\xc0\\x02\\xa5\\x1c\\x0b\\x30\\x90\\x4a\\x6c\\xc0\\xb9\\x84\\xdc\\xbd\\x36\\x3b\\x36\\x51\\x33\\xdf\\x66\\x7b\\xb6\\x19\\x55\\x5a\\x3c\\xbb\\xd3\\x74\\xa7\\xeb\\xfa\\x0d\\x78\\xa4\\xe7\\xce\\x6d\\xe5\\xa6\\xaa\\xe1\\x3c\\xac\\xda\\xe2\\x6c\\xc7\\x9c\\xa2\\x0d\\xad\\x29\\xb6\\xae\\x6d\\xe5\\xae\\xf7\\xa9\\xd7\\x79\\x93\\x30\\x43\\x99\\xa3\\x47\\x07\\xcb\\xa7\\x7a\\x2b\\x16\\x3b\\xaf\\x5c\\x40\\xcf\\x52\\x72\\xe3\\xba\\xe2\\xea\\xa9\\xc6\\x04\\x92\\xec\\xc0\\xde\\xb9\\xd3\\x7c\\xa9\\x70\\x0a\\x0a\\x25\\x3f\\x8f\\xc4\\x09\\xf9\\x38\\x70\\x31\\x56\\x1d\\x03\\x22\\x6f\\x51\\xe1\\x5c\\x22\\x46\\x2a\\x82\\x59\\xa2\\x96\\x84\\x2d\\x0a\\x09\\x92\\xb9\\x4b\\x60\\xdc\\x68\\x16\\xbc\\x11\\xba\\xb7\\x00\\xa6\\x92\\x0a\\x60\\xc2\\x85\\xf9\\x19\\xf6\\x87\\x28\\x7b\\x59\\x43\\x4b\\xac\\x65\\xb8\\xbf\\x35\\x5f\\x5f\\x7f\\xd1\\xf1\\xc6\\xae\\xdb\\xb7\\x55\\xb1\\x69\\x85\\x6d\\xe9\\x74\\x79\\xce\\x64\\x77\\x56\\xf1\\xca\\x6d\\x19\\xd6\\x55\\x03\\x6d\\xf9\\xfa\\xc6\\x9d\\xb7\\xb7\\xf4\\xdc\\xbf\\xbf\\x8d\\x4d\\xfb\\xe4\\x0f\\xee\\xae\\x76\\x6c\\xea\\xcb\\xc6\\x41\\x4b\\xbd\\x23\\xc5\\x10\\xb9\\x20\\xd0\\x68\\xc9\\x6f\\x18\\xc8\\xed\\xd8\\xd7\\x93\\x92\\x33\\x76\\x63\\x4f\\xe9\\xfa\\xa6\\x24\\x4d\\xe1\\x40\\x51\\xf9\\x60\\x49\\x92\\x32\\x30\\xce\\x56\\xd8\\x32\\xec\\xe8\\xb9\\xbc\\x3b\\x29\\x7d\\xd5\\x4d\\x83\\x35\\xd3\\xf5\\x71\\xd1\\x85\\x2b\\xc4\\xb5\\x2e\\x03\\xe0\\x6b\\x25\\x1c\\x18\\xee\\x58\\x24\\x5a\\xfe\\x73\\x0e\\xd8\\xed\\x24\\x3d\\xe1\\x9a\\x52\\x2b\\xb9\\xa8\\xb5\\xae\\xe4\\xf5\\xe8\\x4a\\xe2\\x2a\\xa1\\xf4\\xdb\\x47\\x84\\xd2\\x61\\x69\\xbf\\x6e\\x9c\\x3b\\xcd\\x93\\x85\\x19\\x08\\x13\\x7d\\x09\\x67\\x24\\x69\\x87\\x67\\x9f\\xdc\\x20\\x28\\x0c\\xc2\\xf4\\x2a\\xbd\\x20\\x86\\x59\\xc1\\x1e\\x2b\\x1d\\x6c\\x09\\xf6\\x82\\x6d\\x9e\\x84\\x94\\xbf\\xe1\\xf6\\xa1\\xe1\\xdb\\x37\\x14\\x20\\x4d\\x30\\x34\\xb7\\x6c\\xad\\xaf\\xdf\\xd2\\x9c\\x48\\xa2\\xad\\xd6\\xf7\\xdf\\xbb\\xab\\xb6\\x66\\xf7\\xbd\\xfd\\xec\\xbd\\x59\\x7d\\xe5\\x65\\x23\\x0e\\xc7\\xc8\\x65\\x95\\xec\\x3d\\x40\\x68\\x03\\xe0\\xa3\\x52\\x8e\\x46\\xe5\\x08\\x12\\xef\\x7d\\xde\\x6d\\x4b\\x36\\x55\\x82\\xab\\x16\\xea\\xc5\\xfd\\xdb\\x5c\\x89\\xab\\x5d\\x89\\xdb\\x1e\\xe0\\x67\\xbe\\xad\\x93\\x6c\\x5d\\x33\\x00\\x3f\\x2c\\xcc\\x40\\xa0\\x78\\xcf\\xfe\\x32\\xb7\\x6d\\xe5\\xe8\\xb1\\xa9\\xde\\xa4\\x5e\\x48\\xb0\\x24\\x6d\\x6a\\x7b\\xb0\\x25\\x58\\xfc\\x87\\x69\\x19\\xd3\\x32\\x0b\\x76\\x2a\\xfc\\xdf\\x18\\x7a\\xc3\\xdf\\xe7\\x9a\\xf1\\xdf\\x4e\\xfe\\xe1\\xc3\\xc9\\xdf\\x4e\\x60\\xc5\\xe0\\x20\\x1f\\x3c\\x73\\x78\\x78\\x98\\x0f\\x7e\\x5b\\xc7\\x9f\\x38\\x53\\x20\\xf1\\xea\\x10\\x46\\x3c\\x38\\xdb\\x4f\\xb4\\x82\\x3e\\x32\\xc6\\x10\\x44\\xa3\\x2a\\x7e\\x0c\\xb9\\x4d\\xf7\\xd9\\x82\\xb6\\xdb\\x99\\x88\\xff\\x5b\\x68\\x3d\\x4e\\xec\\x77\\x95\\xe3\\x33\\xfb\\x5c\\x17\\xb9\\x76\\xec\\xc7\\x67\\x5c\\xe5\\xfb\\x59\\x01\\x8d\\x39\\x53\\x9d\\x91\\x74\\x91\\x73\\x2b\\xfd\\x91\\x5e\\x76\\xe3\\xa8\\x4a\\x00\\x3e\\x20\\xcc\\x80\\x02\\x22\\x1c\\x61\\x32\\x46\\xe2\\xf4\\xf3\\xb7\\x22\\x28\\xc8\\x93\\xa4\\xb2\\x20\\xd3\\x32\\xb4\\x50\\x1b\\xee\\xba\\xc4\\x95\\x48\\xe3\\xe4\\x4a\\xbc\\x8c\\xae\\x65\\x8b\\x67\\xd7\\x39\\xdf\\x27\\x1d\\xdb\\x07\\x08\\xdb\\x3d\\x98\\xcc\\x47\\xc4\\x64\\x3e\\x48\\x8c\\xbb\\xb5\\xd1\\xe3\\xc1\\xcf\\x77\\x5b\\x41\\x6e\\xc9\\x10\\xfd\\x96\\x51\\x8c\\xe6\\xd5\\xe8\\xcb\\x16\\xcf\\x2e\\x23\\x72\\x3a\\xc3\\xd9\\x38\\x0e\\x0d\\x75\\xf1\\xaf\\x86\\xdb\\xa4\\x9a\\xc5\\x29\\xd7\\xf3\\x2c\\x52\\xb6\\xdd\\x93\\x19\\xf0\\xea\\x36\\x12\\x49\\xf5\\x07\\x11\\x95\\xe1\\xbc\\xcc\\x80\\x56\\x69\\x91\\xc0\\x58\\xe4\\x17\\x5f\\xb8\\x7e\\x8e\\x4b\\x65\\x8b\\xff\\x1b\\x32\\x28\\x7f\\x58\\x9c\\x07\\xe6\\x2e\\x66\\xaf\\x9e\\xad\\x25\\x20\\xe0\\x5a\\x11\\x0c\\x80\\xa7\\x96\\x20\\x1d\\x36\\x4c\\x50\\xcf\\x84\\x30\\xf3\\xdf\\xd7\\xc5\\xf1\\x77\\xb9\\x9e\\x67\\x8a\\xb3\\x9f\\x0b\\xc0\\x08\\x58\\x2f\\x10\\x22\\x35\\x8b\\xb6\\xb3\\x1d\\x90\\x70\\x5e\\x46\\x42\\xa9\\xb1\\x5a\\x94\\x5a\\xbc\\x0b\\x97\\xba\\x7e\\xfe\\xf9\\xe7\\xb2\\xed\\xff\\x29\\x1b\\x94\\x9d\\x16\\xf7\\xf8\\x5f\\x74\\x84\\xfd\\x5e\\xda\\xe3\\x70\\xc7\\x22\\x19\\xba\\x51\\xc1\\xbc\\x52\\x86\\xdb\\x83\\xa3\\x14\\x1d\\x31\\xa3\\x0a\\x87\\xd7\\x61\\x71\\x3b\\x16\\xad\\x73\\x22\\x1d\\x61\\xaa\\xd9\\xaf\\x69\\x0d\\x91\\x38\\xcf\\xc9\\xb9\\x23\\x3c\\x52\\x8a\\x8e\\x7e\\xb0\\xfe\\x22\\x88\\x4a\\x16\\x39\\x7b\\x05\\x9b\\x18\\x18\\x90\\xf6\\xee\\x19\\xfe\\x0a\\x93\\x0b\\xef\\x9e\\x5f\\x3f\\xc9\\xf5\\xd6\\x4f\\x50\\xcb\\x2c\\x4c\\x3e\\xf4\\xee\\x95\\xfc\\x15\\xf4\\x95\\xf0\\xfd\\x9d\\x73\\xa7\\x79\\x1c\\xaf\\x01\\x33\\xe4\\x41\\x91\\x23\\x3f\\x8d\\x91\\x20\\x4b\\x44\\x10\\x44\\xa3\\x4a\\x48\\x0c\\xc7\\x01\\x41\\x26\\xa0\\xac\\x1f\\x88\\xa4\\xe4\\x7c\\x69\\xa5\\x1c\\x3d\\xc1\\x58\\x31\\x54\\x25\\x27\\xd9\\xad\\x49\\x79\\xc9\\x79\\xba\\x10\\x7d\\xac\\x51\\xa1\\x08\\x33\\x69\\x0c\\x06\\xe3\\xb9\\x44\\x97\\xc5\\x62\\xf5\\x14\\xf3\\x8d\\x9e\\xe8\\x5a\\x19\\x12\\xaa\\x56\\xeb\\x45\\x0c\\x6b\\xf5\\xda\\x38\\x76\\x87\\x9f\\x3f\\x45\\x35\\xf4\\x8e\\xe7\\x54\\x5d\\xdc\\x6b\\x6f\\xd8\\xf7\\xf0\\xc0\\x57\\x68\\xae\\x1d\\x75\\x64\\x0e\\xd7\\xa7\\xd2\\x14\\x2b\\x5c\\x73\\x5d\\x4b\\xcb\\x75\\xab\\xf3\\x31\\x38\\x00\\x9d\\xff\\xca\\x5b\\xdb\\x53\\xa1\\x7a\\xb7\\xf6\\xe0\\x78\\x61\\x6c\\x51\\xa7\\xa6\\x3e\\xde\\xe0\\x48\\x0a\\x4f\\xa8\\x9b\\x28\\xe9\\xba\\xa8\\xde\\xb0\\x29\\xa7\\x2b\\x2f\\x3a\\x32\\xbd\\xde\\x82\\xc5\\xeb\\x9a\\x93\\x13\\xda\\x76\\xb6\\x39\\xff\\x69\\x1b\\x4b\\xf5\\x6f\\xc1\\xe8\\x8c\\xda\\xa4\\x6f\\x16\\xd9\\x3b\\x8b\\x53\\x6a\\xec\\x4b\\xc4\\x75\\x3f\\x27\\xda\\x20\\x19\\x48\\x75\\xfc\\x57\\x1c\\x3e\\x9a\\xe8\\x05\\x0a\\x2e\\x70\\x6f\\x6a\\x31\\x1c\\x88\\x72\\x45\\x64\\x2e\\x59\\xec\\xd2\\x4a\\x29\\xfa\\x14\\x41\\x4d\\x31\\x78\\x6b\\xcf\\x51\\x17\\x0e\\x41\\xcc\\xa9\\x84\\x73\\x1b\\xe3\\x29\\x3d\\xff\\xc4\\x4c\\x4b\\xfe\\x97\\x99\\xc4\\x11\\x8c\\xd6\\xfc\\xf0\\x08\\x29\\xb9\\xe1\\x13\\x17\\xa7\\x55\\x06\\xeb\\xa4\\xc0\\x47\\xf2\\x18\\x06\\xa3\\x5c\\x04\\x9d\\x9e\\x24\\xbf\\xd6\\x9b\\xa9\\x52\\x7a\\xab\\x5b\\xc9\\x96\\xe1\\x63\\x63\\x43\\x77\\x64\\x08\\xe3\\x53\\xf6\\x5b\\x87\\x57\\xdf\\x32\\x64\\x99\\x8e\\xa9\\xda\\xd6\\x65\\x5b\\x56\\x9d\\x19\\x1c\\x92\\x53\\xdb\\x65\\xe9\\xd8\\x52\\xad\\xa5\\xa0\\xe1\\xe7\\x0e\\x75\\x35\\xd7\\x1d\\x90\\x81\\xf3\\x78\\xfd\\xd2\\x8e\\x43\\xcf\\xad\\xaa\\x3f\\xb6\\xad\\x36\\x3a\\xbd\\xd6\\xec\\x92\\x27\\x94\\x5b\\x22\\x6a\\xb6\\x1d\\xab\\x17\\xb1\\xe0\\xdc\\x69\\xae\\xe1\\x35\\x60\\x82\\x2c\\x47\\x3a\\x70\\x01\\x05\\x2e\\x89\\x8e\\x80\\x30\\xe6\\xf5\\x7c\\xa5\\x52\\xba\\xd4\\x9b\\xd5\\x47\\x88\\x89\\x8e\\x08\\x57\\xab\\xfc\\x7d\\x65\\x02\\x98\\xd0\\x24\\x57\\x84\\x98\\xf4\\xa2\\x7d\\xb7\\x78\\xc4\\xe7\\x3b\\xee\\x50\\x94\\x15\\x9a\\xca\\x1e\\x6d\\xb2\\xf2\\xb5\\xbc\\x6c\\xdd\\xb5\\x8d\\x93\\x33\\xeb\\xb3\\xb2\\xd6\\xcf\\x6c\\x58\\x7a\\x68\\xa2\\x80\\xaf\\x65\\xa9\\x0d\\xab\\xf3\\x97\\xed\\x6a\\x32\\x1a\\x9b\\x76\\xd5\\x6b\\x0b\\xba\\xb2\\xaa\\x2f\\x5a\\x66\\x5d\\x7a\\xed\\xaf\\x87\\xe3\\x87\\x7f\\x7d\\xed\\xd2\\x8c\\x15\\xfb\\x9b\\x72\\x86\\xaa\\xe2\\xab\\x36\\xdf\\x58\\x1f\\xdf\\x70\\x74\\x53\\x95\\x3b\\xaf\\x21\\xfa\\x22\\x7e\\x81\\x1c\\x9c\\x4b\\x31\\x87\\x8b\\xca\\x73\\x76\\xa7\\x4b\\x2b\\xe1\\xbb\\x1c\\x84\\xa8\\x0b\\x87\\x10\\xe5\\x9c\\x3d\\xcc\\x73\\x14\\x84\\x9f\\x98\\x69\\xc9\\xff\\x32\\x93\\x94\\x26\\xc5\\x35\\x3f\\x3c\\xe2\\x42\\x39\\x70\\x93\\x4b\\x42\\xd5\\x4a\\x8b\\xf2\\x2c\\x1b\\xc1\\x4b\\x1e\\xb1\\x2b\\x3d\\xbb\\x7a\\xa3\\x6d\\xe4\\xe6\\xd1\\x15\\xc7\\xed\\x93\\xe3\\x42\\xc6\\xcf\\x07\\x47\\x6e\\x1e\\xb1\\x4d\\x6b\\x6b\\xb6\\x76\\x58\\x3a\\xaa\\x73\\x54\\x21\\x59\\x55\\x9d\\x69\\x9d\\x5b\\x6b\\xb5\\x64\\x5c\\xf5\\xdc\\xa1\\x8e\\xb6\\x5a\\x6a\\xff\\x16\\xf6\\xd7\\x34\\x76\\x1d\\x7a\\x6e\\xb8\\xfe\\xd8\\xb6\\x9a\\xc5\\x29\\xc5\\x26\\xf2\\x4f\\xac\\xb0\\x45\\xd6\\x8a\\x62\\xe0\\xa9\\xef\\xd8\\x79\\x0d\\x44\\x43\\x02\\x38\\x1c\\x39\\x11\\xe1\\xee\\x6a\\xac\\xbb\\x7a\\xd1\\x2b\\x47\\x0f\\x1c\\x2e\\x75\\x63\\x50\\x99\\x5b\\x11\\x62\\x34\\x08\\x46\\x83\\x26\\x21\\x26\\x21\\x4c\\x1d\\xa4\\xf4\\xf7\\x85\\x68\\x8c\\x56\\x28\\x42\\x4c\\x82\\x54\\xd8\\xf1\\xb2\\x5f\\x34\\xaa\\x48\\x66\\x09\\xb5\\xd9\\xd5\\x01\\x4c\\xaa\\xf3\\x68\\xac\\x66\\x46\\x57\\x4c\\x3c\\xba\\xab\\x1c\\xb1\\xf2\\xa2\\x99\\x81\\x55\\x3f\\x9f\\xc8\\xc2\\xd9\\xb7\\x30\\x7d\\xf0\\xca\\xb6\\xe5\\xb7\\x64\\x54\\x45\\x36\\x0c\\x4c\\x2d\\x2d\\xdf\\xd8\\x99\\xed\\x47\\x27\\x29\\xb1\\x71\\x2a\\xa4\\xe9\\xca\\xa7\\x46\\x4d\\xeb\\x9e\\xbf\\xba\\xb9\\x66\\xcf\\xfd\\x2b\\xca\\xd5\\xcd\\x47\\x36\\x94\\x62\\x55\\x59\\x46\\x7c\\x69\\x6a\\x04\\x9b\\xb5\\xf7\\xed\\xaa\\x5d\\x50\\xb8\\xad\\x2f\\xdb\\xed\\x27\\x1f\\x00\\xe0\\xbd\\xb2\\x28\\x08\\x87\\x14\\x87\\x39\\x10\\x05\\xae\\x44\\x26\\x1a\\x45\\x0e\\x02\\xe3\\x42\\xbf\\x1b\\xf9\\xc8\\x90\\xb1\\x3c\\x8f\\xe3\\x54\\xe9\\xf5\\xa2\\x6b\\x90\\x8a\\x6b\\x9a\\x60\\x09\\xfd\\x48\\x77\\x2e\\x11\\x1b\\x24\\xc5\\x53\\x69\\x38\\x77\\xd5\\xd3\\x66\\x74\\xbd\\x83\\xb1\\x58\\xb8\\xf6\\x50\\x6b\\xc6\\xaa\\xf4\\x85\\xf1\\x7d\\xb6\\xfc\\x89\\x96\\x54\\xc4\\xbb\\xd9\\xdb\\xb3\\xb1\\xec\\xed\\xbe\\x96\\xd5\\xd7\\x77\\xc7\\x05\\x2c\\x18\\xf4\\x0b\\x88\\x28\\x5c\\xd3\\xd2\\x02\\x04\\x37\\xb9\\xea\\xb9\\x8c\\xd7\\x80\\x01\\xb2\\xe1\\x69\\x47\\x40\\x6a\\x4a\\xa4\\x82\\x0b\\xb2\\x50\\x15\\xb9\\xc9\\x5a\\xbe\\x12\\x13\\x46\\x26\\x73\\xdb\\x15\\xc9\\xc4\\xb8\\xab\\xa8\\xe2\\x1e\\x4b\\xda\\x56\\x7e\\x56\\x5a\\x75\\x80\\x98\\x57\\x29\\x0d\\x86\\x1f\\x1b\\x1b\\xf2\\x3f\\xcd\\xf9\\xbf\\x4d\\x27\\x0a\\xa5\\x6f\\x5c\\x9c\\xd1\\xa0\\x0f\\x96\\x52\\x1b\\x5e\\xa9\\xb4\\x9f\\x8d\\xc0\\xed\\xa1\\x92\\x44\\x5a\\x7f\\x48\\x44\\x6f\\x4a\\x1b\\xb9\\x79\\x6c\\xe8\\x56\\xbb\\x30\\x8e\\xd9\\x13\\xc7\\x96\\x27\\x0f\\x2d\\xef\\x88\\x29\\xdc\\x71\\xb2\\x7a\\xaa\\xde\\x84\\x19\\xb7\\x0e\\xac\\xba\\x79\\xa5\\x75\\x4a\\x92\\xd9\\xce\\xea\\x9c\\x90\\x90\\xcc\\xaa\\x4e\\xeb\\x39\\x99\\x6d\\xaf\\xbf\\xf6\\xcc\\x3b\\xfd\\x3f\\x9f\\x2c\\x08\\x35\\x17\\x27\\x97\\xdd\\x90\\xda\\xb1\\xad\\x6a\\x53\\x55\\xbd\\x57\\x80\\xc3\\x53\\x4b\\x13\\x88\\x25\\x56\\xd9\\xa3\\x6a\\xdd\\x76\\xec\\x29\\x00\\xbe\\x58\\x26\\x22\\xd0\\xf2\\x07\\x55\\x22\\xd0\\x10\\x4d\\x81\\xa8\\x9d\\xa1\\xc0\\x79\\xee\\x59\\x98\\x5a\\xea\\x0d\\xa4\\xc3\\xc5\\x37\\x80\\xaf\\xf9\\xce\\x1b\\xed\\x0f\\x29\\x55\\x7a\\x55\\x8c\\x84\\x07\\x6d\\x36\\xa9\\xe0\\xa3\\xd4\\x2a\\xcf\\x1a\\x61\\x31\\x1c\\xce\\xc8\\x78\\x62\\x63\\xfb\\xde\\xae\\x94\\xa9\\x98\\xe2\\xa1\\x92\\x8c\\xa1\\xb6\\xe2\\xd0\\xa9\\x29\\x36\\x3c\\xb4\\x19\\xed\\xc3\\x87\\xfa\\x9c\\xd5\\x74\\x5f\\xd9\\x9a\\xda\\x78\\x9d\\xa3\\x35\\xcd\\xe9\\x23\\x13\\x75\\xeb\\x03\\x00\\x5e\\x28\\x3c\\x0e\\x3e\\xa0\\x12\\xe3\\x1f\\x2f\\xa3\\xec\\x5c\\x9d\\x3f\\x4f\\xfa\\x70\\x6f\\x22\\x4c\\xa7\\x55\\x7a\\x25\\x32\\xf8\\x6c\\xf6\\x04\\xe7\\x15\\x26\\x3e\\xc0\\x7f\\xe3\\xf8\\xec\\x61\\xdc\\xea\\xba\\x08\\x3b\\xe2\\x53\\x92\\x4d\\xa6\\xe4\\x94\\x78\\x9e\\x39\\x9b\\xbc\\x72\\x25\\x1b\\xc0\\xab\\xf4\\x36\\x9b\\x5e\\x6b\\xb5\\xba\\xed\\xe4\\xaf\\x5d\\x95\\xac\\x40\\x78\\x1c\\xd4\\xa0\\x05\\xab\\x23\\xd5\\x0f\\x89\\xf9\\x22\\x12\\x55\\x78\\x8f\\xdc\\x1d\\x55\\xba\\xef\\xc2\\x1b\\x69\\x96\\x63\\x95\\x4e\\xab\\x2a\\xd6\\x7b\\xb3\\x71\\x1e\\xb7\\x64\\xf7\\x78\\xa0\\xf3\\xef\\x06\\x13\\xd1\\x65\\x1f\\xbe\\xbe\\x37\\xa3\\xdb\\xae\\x08\\xb2\\xda\\x53\\x17\\x66\\xaf\\xaa\\x4f\\x76\\x6d\\xc4\\xee\\xb8\\x94\\xe4\\x84\\x84\\xe4\\x94\\x38\\x9e\\x79\\xe6\\xd9\\xc1\\x5b\\x26\\xb2\\xe5\\xbe\\xfd\\x4c\\x60\\x18\\x53\\xbb\\xad\\x8b\\xfd\\x0e\\xaf\\xd6\\x5b\\xad\\xd2\\x6d\\xa2\\x14\\x83\\x37\\xc9\\x00\\xfc\\x21\\xef\\x21\\x29\\x1d\\x73\\xf6\\xf0\\x94\\x6e\\xd3\\x4a\\x94\\xe7\\xcd\\xcc\\x84\\x8b\\xaf\\x11\\xae\\x99\\xff\\x5a\\xfb\\x83\\xdf\\x9f\\xaf\\xf9\\xea\\xd0\\xf4\\xf4\\x0e\\x7c\\xe8\\x90\\x6b\\x09\\xa9\\x0e\\x93\\x76\\xaf\\x6b\\x50\\x06\\xb3\\xba\\x6d\\x78\\x9d\\x2b\\xdd\\x79\\x39\\xa0\\xfb\\x5c\\x64\\x00\\x3e\\x90\\x77\\x4e\\x56\\xa4\\xad\\xc8\\x3d\\xef\\x40\\xc2\\x1d\\x21\\x00\\xc0\\x11\\x78\\xef\\xfc\\x97\\xdb\\x1f\\x3a\\x9b\\x5b\\x3c\\x77\\x4e\\x1f\\xe0\\x7f\\x70\\x6c\\xf6\\x30\\x6e\\x77\\x6d\\x97\\xc1\\xb7\\x2b\\x57\\xae\\x14\\x4c\\x92\\x5d\\x6a\\x07\\xe0\\xeb\\x25\\xbc\\x76\\xc4\\xe1\\x63\\x8a\\xf4\\x41\\x4e\\x0c\\x3d\\x8c\\xcd\\x50\\x77\\x76\\x56\\x21\\x47\\x26\\x0a\\xa2\\x8c\\xd3\\x7c\\x47\\xb5\\x58\\x81\\x72\\x79\\x5e\\xa5\\x7b\\x8c\\x5b\\xab\\xe7\\x8d\\x08\\xff\\x91\\xeb\\x7f\\xec\\x52\\x51\\xb9\\x03\\x01\\xc0\\x0c\\x66\\x95\\x5e\\xa5\\x57\\x19\\xb4\\x3e\\xa2\\xbc\\xa9\\xdd\\x22\\xef\\x79\\x50\\x31\\x2d\\x4b\\x33\\x93\\x3c\\x80\\xc9\\xe7\\x3f\\x53\\x3e\\xc3\\x34\\x6b\\xdb\\xcc\\xa5\\x69\\x3a\\xbf\\x98\\xc9\\xf6\\x92\\x65\\x99\\x61\\x38\\x8e\\x01\\xda\\xbc\\x94\\xd4\\xe2\\xc4\\x30\\x99\\xf4\\x3c\\x37\\x39\\xb9\\x30\\x31\\x5c\\x81\\x13\\x3c\\x73\\x3a\\xaf\\x1a\\x55\\x06\\x6b\\x54\\x4e\\x3d\\x26\\x37\\xac\\xca\\x9e\\x7d\\x9f\\xe9\\xb4\\x25\\xe9\\x31\\x88\\x91\\xc9\\x59\\x91\\xb3\\x4f\\xb3\\xa4\\x98\\x82\\xb4\\x68\\xc4\\x88\\xa4\\x1c\\xcd\\xec\\x29\\x9e\\xe9\\xd1\\x65\\x35\\xaf\\x01\\x15\\xec\\x7d\\x30\\x08\\x3d\\xba\\x2c\\x6e\\x54\\xb0\\xa4\\xad\\x52\\x46\\xec\\x9c\\x22\\xbb\\x77\\x49\\x2d\\x20\\xe7\\x79\\xdf\\xa3\\xe7\\xee\\x2d\\xfa\\xde\\x2b\\x7f\\xf0\\x22\\x71\\x73\\x16\\x80\\x08\\x2e\\x54\\x2a\\x6d\\xb0\\x56\\x26\\x4a\\x96\\xb4\\x25\\xa1\\x6a\\xa5\\x56\\x69\\x30\\xc8\\x3d\\xa6\\x00\\x93\\x7c\\x32\\x9e\\x98\\xbe\\xf7\\x31\\x9c\\xc2\\xdd\\xfb\\x33\\x87\\x5b\\x0b\\x55\\x53\\x3c\\xf3\\xa5\\x81\\x69\\x7c\\xf3\\x94\\xb3\\x92\\xee\\xbb\\xe6\\x26\\x34\\x14\\x2c\\xb5\\x3a\\x95\\x3c\\x53\\xd2\\xc5\\x8b\\xe7\\x4e\\xf3\\x72\\x69\\x5d\\x26\\x29\\x57\\xe6\\xc9\\xe6\\x94\\x9e\\xd5\\xbb\\x62\\xac\\x8a\\x8b\\x73\\x53\\x9d\\x82\\x7f\\x92\\x3b\\x7a\\x31\\x16\\x6c\\xba\\x6f\\x62\\xcd\\x7d\\x9b\\x0b\\x10\\xf3\\x37\\xdf\\xbb\\x46\\x7a\\x36\\x95\\xdc\\xb9\\xa7\\xbd\\x6d\\x4f\\x47\\x72\\x72\\xe7\\x25\\x6d\\xe2\\x23\\x25\\x8e\\x3d\\x7b\\x4d\\x5b\\xdb\\x35\\xcf\\x8e\\x69\\xc6\\x9e\\xbd\\xa6\\xb5\\xf5\\x9a\\x67\\xc7\\x5a\\x8e\\x6d\\xaa\\xa8\\xd8\\x74\\xac\\x45\\xd3\\x7c\\x6c\\x53\\x65\\xe5\\xa6\\x63\\xcd\\xe2\\xbd\\x9d\\x72\\xf5\\xf0\\x04\\xe9\\xde\\xe2\\xe0\\xf6\\xef\\xc1\\xd5\\x5e\\xd8\\x93\\x77\\x0e\\xbf\\x8a\\x0e\\x34\\x1f\\xe7\\xe3\\xea\\xbc\\x0b\\x01\\xf3\\xf9\\xc3\\x42\\x7e\\x6a\\xa6\\x9f\\x9c\\x44\\xc2\\x49\\xc6\\xef\\xe0\\x65\\x51\\xe9\\xd5\\xdf\\xc1\\xcb\\xa1\\xa1\\x6e\\xbc\\x9c\\x20\\xe2\\xe5\\x81\\xdb\\x33\\xa6\\x44\\xa0\\x34\\x24\\xe2\\xe5\\x29\\x5d\\xdd\\xb6\\xce\\xb4\\x8e\\xca\\xac\\x90\\xf8\\x1b\\x06\\x3a\\xb6\\xd5\\xea\\xdc\\x68\\xb9\\xa6\\xc2\\xf9\\xbe\\xf0\\xee\\xd5\\x75\\x6d\\x5e\\xb4\\xbc\\xc4\\x5a\\x9e\\xe0\\xfc\\xb2\\xa9\\xaf\\x6e\\xdb\\xcd\\xf5\\x40\\x70\\xd4\\xd5\\xc3\\x85\\x73\\x7b\\x14\\x15\\x79\\x01\\xe6\\xf4\\x86\\x08\\xa5\\xe7\\xb0\\x9d\\x78\\xb4\\xf9\\xe7\\x61\\xce\\xbc\\xf3\\xc1\\xe4\\x85\\xc3\\x42\\x7e\\x6a\\xa6\\x9f\\x9c\\xe4\\x82\\x3d\\x9a\\xe7\\xb5\\xb5\\xca\\xf3\\x1c\\xb5\\xed\\xac\\x9f\\x3e\\x9a\\x36\\x72\\x7c\\xf5\\xc0\\xf1\\x74\\xd9\\xf8\\x54\\xe6\\xcf\\xfa\\xc6\\x6e\\x59\\x69\\x9d\\xd6\\xd5\\x6e\\xed\\xe8\\x3f\\x92\\xa0\\xca\\xae\\x5c\\x9a\\xda\\x29\\xee\\x90\\xe4\\x94\\x9b\\x6b\\xae\\xf8\\xd6\\x40\\x31\\xe5\\xd5\\x92\\x1f\\xbe\\x79\\x5b\\x5d\\x5f\\x03\\xc5\\xc4\\x97\\x5a\\x96\\x48\\x3b\\x24\\xc6\\xb1\\x2b\\x00\\x78\\x2a\\xaf\\x81\\x20\\xf8\\x8d\\x7b\\x5b\\xfc\\x19\\x22\\x04\\xfa\\x72\\x31\\x2a\\xad\\xf0\\xec\\x83\\xf8\\x1a\\x9b\\xf7\\x5a\\xc8\\x77\\xc6\\x9d\\x3f\\xa4\\xbd\\xdd\\x53\\xf1\\x0e\\x12\\xe3\\xe8\\x0e\\xe6\\x56\\x63\\x98\\x6f\\x25\\x43\\xc1\\x03\\xe9\\xa0\\x83\\xe3\\x79\\xef\\x86\\xfc\\xc0\\x75\\x3f\\x74\\x89\\x44\\x17\\x46\\x08\\x58\\xe0\\xef\\xa7\\x90\\x41\\x10\\x06\\x09\\x8a\\x10\\x13\\x7a\\xf1\\xa0\\x4c\\x1e\\x2c\\x0a\\x9b\\xca\\x66\\x63\\xfb\\x13\\x97\\x46\\x2e\\x8c\\x6f\\x4a\\xb8\\xfe\\x0d\\x13\\x6e\\x5e\\xab\\x28\\x78\\x97\\xd7\\xf8\\xf9\\xae\\xf5\\xf1\\xbd\\xf2\\x1a\\x67\\x15\\xcf\\x7c\\x2c\\x74\\x64\\x13\\x20\\x3c\\x3e\\x77\\x9a\\x9b\\x78\\x0d\\xe4\\x80\\xc5\\x91\\xfc\\x03\\x39\\xc6\\xd2\\xf9\\x39\\xc6\\xcc\\xf4\\x34\\x4b\\x52\\xa2\\x2e\\xc4\\x2c\\x53\\xa8\\xe7\\x73\\xec\\xcf\\x8b\\xa8\\x64\\x67\\x19\\xf6\\xe7\\x25\\x18\\xef\\x4f\\x6d\\x5d\\xe3\\xa8\\x39\\xb8\\xa6\\xa8\\x64\\xcd\\xc1\\xea\\xb6\\x43\\x6b\\x8b\\xd8\\x14\\xa5\\xb5\\x8c\\x66\\xda\\x56\\xd4\\xa7\\x60\\x4a\\xd3\\x84\\xa3\\xe1\\x9a\\x35\\x05\\xe5\\x93\\x87\\xea\\x3b\\x6e\\xde\\x54\\xc1\\xa6\\x64\\xf9\\xdd\\xe3\\x36\\xfb\\x68\\xab\\x1d\\x83\\x53\\x2b\\xac\\xba\\x05\\x81\\x89\\x25\\x03\\x15\\x25\\x63\\x55\\x46\\x53\\xe3\\x54\\x75\\x5a\\x63\\x7a\\xa4\\x3a\\xa9\\x34\\xd9\\x52\\x9c\\x14\\xb5\\x40\\x99\\x52\\xbe\\xb2\\xa2\\x6a\\xa2\\x52\\x9f\\xd0\\x38\\x55\\xe5\\x68\\xb1\\xa8\\xd4\\x49\\xe5\\x6e\\xbc\\x7d\\xc7\\xdc\\x69\\x1e\\x20\\xd4\\x42\\x38\\x64\\x38\\x6c\\x0b\\x90\\x30\\x00\\x19\\x51\\x85\\x1c\\x65\\x20\\x5b\\xc3\\xa5\\xfa\\x90\\x80\\x1e\\x6c\\xe1\\x5d\\x22\\x00\\x84\\x43\\xb8\\x52\\x42\\xde\\x0a\\x51\\x8d\\xa5\\xb2\\x9c\\xb8\\x06\\x9b\\x5d\\xed\\x16\\x51\\xa3\\x44\\x90\\xa5\\x3a\\x3c\\xe0\\x5a\\x8d\\xfa\\xbc\\xe6\\xd4\\xd4\\x61\\x7d\\x90\\x69\\xb3\\xa3\\x6c\\xe3\\xd2\\x34\\x74\\xbd\\x8e\\x89\\x42\\xad\\xeb\\xeb\\x3e\\x67\\x6b\\x5e\\xa3\\x25\\x34\\x40\\xde\\xa1\\x54\\x6a\\xab\\x37\\xb5\\xd3\\xed\\x7d\\xa8\\x02\\x84\\x67\\xe7\\x4e\\xf3\\x05\\x3c\\x13\\x54\\xb0\\xed\\x41\\xa5\\x68\\x5b\\xbd\\x2a\\x1a\\x24\\xda\\x77\\x8f\\xbd\\xe7\\xe7\\x65\\x05\\x42\\x3d\\xef\\x70\\x9e\\x33\\x3f\\xa5\\xe9\\x15\\x9f\\xef\\xb9\\xee\\x87\\x2e\\x69\\x6f\\x6f\\x7f\\x48\\x19\\xac\\x75\\x23\\x48\\xbd\\x47\\xe1\\x94\\x16\\xc9\\x1a\\xd9\\xec\\xcc\\xa2\\xd4\\xb2\\xeb\\x6c\\xf7\\x4c\\x2f\\xdd\\xdb\\x95\\x32\\x49\\xdb\\x77\\xef\\xb9\\x5d\\x83\\xd3\\xe3\\x77\\xb4\\x2f\\xcf\\x1c\\xbf\\x65\\x88\\x0e\\x3b\\x97\\x1f\\xbf\\x7d\\xf3\\x4a\\x86\\x67\\x9e\\xf5\\xe4\\x14\\x3b\\x79\\x26\\x28\\xbc\\x79\\xcf\\xbc\\xb3\\x79\\xcf\\x60\\x29\\xef\\xa9\\xb6\\x7b\\x32\\x9f\\x3d\\x82\\x0c\\xd7\\x6d\\x71\\x65\\xf4\\xb9\\xd2\\xb7\\xdc\\xa2\\x52\\xb1\\xeb\\xcf\\x3c\\x2b\\xf9\\x1c\\x84\\x5c\\x00\\x7e\\x03\\xcf\\x84\\x20\\xd0\\x38\\x22\\x17\\xcc\\xcf\\x7f\\xe6\\x9d\\xcd\\x7f\\x86\\x7c\\x5f\\xfe\\xd3\\x28\\x97\\x32\\xa0\\x45\\xd1\\xb1\\x0f\\x35\\x3d\\x14\\xab\\xbd\\x7a\\xf5\\x5f\\x7b\\x7f\\x15\\x1d\\xfd\\x78\\xef\\x5f\\x57\\x63\\xf7\\x93\\x4f\\xd2\\x7b\\x4e\\xfd\\x33\\xcf\\xd0\\x7b\\x67\\x9e\\xa5\\x4f\\x4f\\x9e\\x74\\x46\\x48\\x7e\\xfb\\x22\\x31\\xf6\\xe2\\x99\\xdf\\xcd\\x81\\xe6\\xfd\\x68\\x0e\\x74\\x1c\\xeb\\x0e\\xb8\\x96\\xe3\\x89\\xcb\\x5d\\x37\\xb9\\x6e\\xba\\x02\\x4f\\xb8\\x96\\x5f\\x41\\xdb\\xf1\\x51\\xe7\\x37\\xce\\x77\\xf0\\xb7\\x2e\\x0b\\x19\\x29\\xd8\\x2d\\x6b\\x55\\xae\\x4a\\xbe\\x85\\x67\\xc2\\x22\\x30\\x3a\\x74\\xa1\\x0b\\xc4\\xb5\\xf8\\x4b\\x58\\x96\\xe1\\x05\\xe8\\x35\\x54\\xaf\\x97\\xf0\\xa0\\x5e\\x8d\\x16\\xa9\\x18\\x2f\\xd1\\xc8\\xa5\\xd8\\xc4\\x8e\\x16\\x6a\\x0b\\xc5\\x3d\\x97\\x38\\x5f\\x0d\\xcd\\x6e\\x18\\x29\\x5e\\x94\\x19\\x12\\xa0\\xb4\\x28\\xcd\\x55\\x59\\x89\\x0b\\x2b\\x5c\\x8b\\xf7\\xbc\\x9f\\xc5\\x0e\\x9d\\x09\\x4b\\x59\\x56\\x69\\xf6\\x11\\x96\\x93\\xa0\\xcb\\x28\\x8d\\x39\\x26\\x65\\xf3\\x10\\xae\\x06\\xe0\\x15\\x3c\\xf3\\x87\\xf2\\xa6\\x79\\x3f\\x94\\x37\\xb5\\xa3\\xc6\\xaa\\x91\\x63\\x0a\\x0b\\x9b\\xad\\x40\\xfa\\xc8\\x69\\x63\\x23\\x38\\x30\\xd0\\xc6\\x36\\xad\\x68\\x97\\x6c\\x66\\x85\\x6b\\x15\\xfb\\xa3\\x2c\\x07\\xe2\\xc1\\xe0\\xd0\\x6a\\xa4\\xbc\\xa3\\x1a\\xb1\\x2c\\x1e\\xa1\\x54\\xca\\x1e\\xb6\\x4a\\x36\\x4a\\xbc\\x83\\x5a\\xd5\\x22\\x29\\x1d\\x68\\x66\\x46\\xab\\xc1\\x60\\xb4\\x6a\\xad\\x56\\xbb\\xcd\\x66\\xb7\\xe6\\x32\\x31\\xba\\x96\\xab\\x64\\x32\\x79\\x68\\xa8\\x5a\\x15\\xc9\\xd4\\xec\\xe5\\x8e\\x4b\\x3a\\xcc\\x88\\xfb\\xf6\\x22\\x5e\\xb2\\x1f\\x31\\xa1\\x7d\\x6f\\x57\\x70\\xc5\\xf2\\x9c\\x70\\xa4\\xf5\\x6b\\xd7\\xae\\x27\\x8c\\x2e\\xe8\\x2f\\x74\\xad\\x5a\\xd8\\xbc\\xe9\\x48\\xd3\\x2b\\xfb\\x76\\xb3\\xf0\\xf0\\xd0\\x08\\xb6\\xeb\\xb2\\xd7\\x9a\\x8e\\x6c\\x69\\x59\\x58\\x1b\\x50\\xba\\x62\\x7b\\xc9\\x6b\\x9b\\x6f\\xd7\\xe9\\xee\\xd8\\xf4\\x4a\\xe9\\xd6\\x81\\x92\\x00\\x00\\xa4\\x34\\xd7\\xfd\\x74\\xe8\\x07\\x39\\xde\\xa8\\x55\\x5a\\xe8\\xd0\\xc0\\x80\\xeb\\x7e\\xd9\\x2c\\x9c\\xb7\\x2e\\x13\\xc4\\x3a\\xf4\\x3e\\x28\\x4a\\x43\\x30\\x42\\x99\\x09\\xb1\\x54\\x4a\\xf3\\xb6\\x7a\\x78\\xe6\\x80\\xb5\\xda\\x98\\x88\\x70\\x12\\xed\\x6c\\x2e\\xb3\\x5b\\x6d\\x36\\xbb\\xb8\\x38\\x33\\x13\\x23\\x0e\\x95\\x4a\\x5c\\x91\\x45\\xae\\xd6\\x8a\\xab\\x73\\x17\\x82\\x2a\\x0a\\xfb\\x0b\\xa2\\x11\\x37\\xac\\x5d\\xbb\\x01\\x31\\x3c\\x67\\x79\\x79\\x50\\xd7\\xde\\xa5\\x09\\xb8\\xff\\x12\\x44\\x69\\xb5\\xe6\\x8e\\xbd\\x1d\\xae\\xc7\\x02\\x4a\\x06\\xb6\\x95\\xbc\\xb2\\xe9\\x0e\\x9d\\xee\\xf6\\xcd\\xaf\\x95\\x6c\\x5f\\x51\\x1a\\x50\\xbb\\xb0\\x65\\xcb\\x91\\xa6\\xd7\\x2e\\xdb\\xc5\\x22\\xc2\\x16\\x85\\xb3\\x3d\\x97\\xbd\\xd2\\x74\\x64\\x53\\xf3\\x42\\x71\\x29\\x59\\x78\\x1b\\xbf\\x92\\x05\\x43\\x1c\\x98\\x1d\\xa6\\x38\\x31\\x80\\x54\\x85\\x10\\x30\\x77\\x67\\x10\\x23\\xec\\x07\\x06\\xc0\\x5a\\x3d\\x98\\x8d\\x41\\x6d\\x6c\\x5c\\xac\\xce\\x53\\x80\\x93\\x0c\\xd6\\x05\\xe9\\x52\\x4f\\xcd\\x83\\x5f\\x89\\xc6\\xf2\\xe1\\x42\\x73\\x7d\\x65\\xa9\\x2e\\xdc\\x96\\x91\\xad\\x31\\x97\\x24\\x85\\x61\\x37\\x1a\\xcb\\x86\\x8a\\xcc\\x0d\\x55\\xa5\\xba\\x08\\x6b\\x7a\\x96\\xc6\\x5c\\x92\\x1c\\x86\\xf4\\x55\\xde\\xfa\\xa5\\x56\\x95\\xd1\\x1a\\xad\\x8e\\x8b\\x52\\xea\\x72\\xea\\x12\\x14\\x8e\\x75\\x6d\\x69\\xa1\\x46\\x6b\\xe4\\xa2\\xf8\\xc8\\x20\\x43\\x6e\\x43\\x02\\x10\\x2d\\x74\\x5d\\x45\\xbf\\xe4\\xb5\\xc0\\x60\\x21\\x44\\x38\\xc2\\x24\\xb9\\xc4\\x2e\\xaf\\x71\\x2d\\x95\\xa2\\x47\\x6f\\x9d\\x5c\\x1b\\x2c\\x05\\x68\\x56\\x29\\x58\\x23\\xf3\\xd4\\xd4\\xfe\\x24\\xa3\\x31\\x29\\xc9\\x68\\x48\\xa6\\xcb\\x67\\x05\\x61\\x38\\x26\\x39\\x49\\xab\\x4d\\x4e\\x76\\xf3\\x00\\xe7\\xfc\\xb8\\x41\\x30\\x40\\x0a\\x54\\x3a\\xca\\x22\\xc2\\x48\\x60\\x01\\x7e\\x44\\xa2\\x74\\x5f\\x90\\x13\\x64\\x20\\x70\\x26\\xf4\\xcb\\x50\\xb4\\x79\\xad\\x52\\x62\\xb0\\x1d\\x08\\xa8\\x1a\\x21\\xd6\\x10\\xa3\\x09\\x5f\\xbc\\xc0\\x5f\\x26\\x40\\x0a\\xa6\\xcc\\xcf\\x0b\\xba\\xfb\\xc0\\xac\\xdf\\xed\\x15\\x73\\xe7\\x06\\xb7\\x78\\x72\\x83\\xd9\\x7d\\x17\\x95\\x4f\\xaf\\x38\\x3c\\x68\\xb1\\x0c\\x1e\\x5e\\x31\\x5d\\x73\\x71\\x4f\\x06\\xfb\\x6e\\x76\\xb0\\x64\\xaa\\x33\\xcb\\xe7\\xb3\\xcf\\xfc\\x7a\\x0f\\x3e\\xd4\\x1f\\xdf\\xfb\\xf0\\xc1\\x5e\\xff\\xf7\\xdf\\xf7\\x71\\x2c\\xdf\\x59\\x75\\x41\\x96\\x10\\x61\\xb7\\x54\\x37\\x3a\\x05\\x26\\xc8\\x75\\x64\\x81\\x4c\\xce\\xe5\\x32\\x3e\\xae\\x40\\xee\\xeb\\x43\\x0c\\x38\\xeb\\x05\\xb9\\xdc\\x13\\x88\\xbb\\x3b\\x12\\xc1\\x5b\\x62\\x37\\x81\\x49\\xa5\\x0b\\xd1\\x2b\\x43\\x95\\xca\\x10\\x3f\\xc5\\x12\\x13\\x06\\x87\\xca\\xe4\\x62\\x80\\x67\\xc9\\x65\\x46\\xa6\\xb5\\x5a\\xd8\\x85\\x0e\\x39\\x58\\xa3\\xc2\\x47\\x7c\\x30\\xc2\\x40\\xa7\\x67\\x97\\xf4\\x46\\x19\\x43\\x64\\xe8\\xf3\\xcb\\x87\\x7d\\xd2\\x87\\xaf\\x5d\\xd6\\x71\\x60\\xb9\\x0d\\xa7\\x30\\xbe\\x7c\\x30\\xb7\\x60\\x45\\xa9\\xce\\x07\\xdb\\x68\\x8f\\xeb\\xcb\\xb2\\xfd\\xd6\\x81\\x01\\xff\\x9c\\x9a\\x06\\x0d\\x2e\\x1a\\x40\\x6d\\xd7\\x4d\\x1b\\x0a\\x33\\x56\\x5c\\xde\\x5c\\x38\\x52\\x6e\\x48\\xeb\\xd8\\x58\\xe2\\xfa\\x60\\xc0\\xc3\\xdf\\x9a\\xfb\\x8c\\x5f\\xc5\\xaf\\x03\\x2d\\xd8\\xa1\\xcf\\x11\\xbd\\x38\\x90\\x18\\x6a\\xc2\\x17\\x05\\x2d\\xf4\\x91\\xc9\\x89\\xc5\\x28\\x08\\x88\\x55\\x84\\x29\\x09\\xcb\\xb4\\x72\\x82\\x52\\x77\\xd7\\xa3\\xca\\xcb\\x9b\\x28\\x3d\\xcf\\x99\\x39\\x82\\x01\\x81\\x11\\xb2\\xfe\\xf9\\xfe\\xca\\xe1\\x9b\\x96\\x1a\\x1f\\x1b\\x1a\\x12\\xc3\\x15\\x2a\\xb7\\xc3\\x32\\x18\\xe5\\x46\\xbb\\x41\\x94\\x1b\\xbb\\xd1\\x2e\\xe1\\xea\\x50\\xb5\\x5d\\x2d\\x31\\xf6\\x65\\x72\\xb5\\x1c\\xbd\\xa1\\x88\\x07\\x69\\xb3\\xc7\\xf2\\x6e\\xe9\\xed\\xbd\\x25\\x6f\\x5b\\xd3\\x1e\\x8b\\x35\\xd3\\x76\\x45\\xd3\\x65\\xb9\\x47\\xba\\xba\\x6e\\xc8\\xdd\\xdf\\x7c\\xd0\\x9a\\x9e\\x96\\x72\\x69\\xf3\\xec\\xc3\\xb6\\x81\\x2b\\xdb\\xdb\\xaf\\x18\\xb0\\xd9\\x06\\xae\\x10\\x1f\\xed\\xeb\\xf2\\xca\\xcb\\x72\\xf7\\xb5\\x5c\\x5d\\xfd\\x60\\x4f\\xff\\x63\\x35\\x37\\xb5\\x1e\\xca\\x28\\x28\\xcc\\xbc\\xa1\\xed\\x96\\x9a\\x47\\xfb\\x96\\x3d\\x50\\x75\\x7d\\x2b\\xd5\\x34\\xdf\\xb1\\xbb\\xa9\\x69\\xf7\\x1d\\xcd\\x4d\\xb7\\xef\\x6e\\x6c\\xdc\\x7d\\x9b\\x24\\xa3\\x56\\x00\\x7e\\xbd\\xc4\\x35\\xb3\\x38\\x92\\x7d\\x10\\x15\\x48\\x0c\\xa9\\x4f\\x8e\\x4c\\x86\\x5c\\x60\\xbc\\xd7\\x17\\x3d\\xcc\\xf9\\x1c\\xa1\\x2a\\x54\\x15\\x12\\xec\\x6d\\xce\\x54\\x4a\\x87\\x88\\x16\\xd4\\xa8\\xa4\\xff\\xdc\\xfd\\x37\\xe2\\x7f\\x68\\xa1\\x41\\xbc\\xed\\x32\\x57\\x26\\xae\\x71\\x75\\xe2\\xcf\\x5c\\x9d\\x53\\xae\\x3e\\x3c\\xea\\xea\\xc3\\x71\\x57\\xd6\\xa5\\xf4\\x01\\xbd\\xee\\x54\\xb6\\xbe\\xdc\\xe2\\x7a\\x14\\x4b\\x5a\\x5e\\x6e\\xa5\\xbf\\x48\\x67\\x42\\x51\\xae\\xbf\\xd3\\x75\\x92\\x1d\\x94\\x83\\xce\\xa1\\x01\\x10\\xfd\\x80\\x5b\\x09\\xa5\\xfa\\x19\\x55\\x01\\xc8\\x65\\x02\\x07\\x06\\x4c\\x29\\x28\\x54\\x26\\x54\\x5a\\x94\\x62\\x8c\\x42\\x51\\x53\\x53\\x53\\xae\\xbf\\x33\\x36\\xeb\\x64\\xcf\\xd3\\xbf\\xc5\\xf3\\x1d\\x76\\x29\\x79\\xaf\\x70\\x0a\\xea\\x61\\x44\\x44\\x50\\x7d\\xcd\\x66\\x81\\xa3\\x44\\xa0\\xf3\\xaa\\x1d\\x09\\x48\\x63\\x20\\x91\\x04\\xba\\xbd\\x38\\xb1\\x48\\xa8\\x2a\\x2a\\xc8\\xcd\\xc9\\xb0\\x7b\\x71\\xe2\\xf9\\xcc\\xf1\\xb3\\x99\\x9a\\x79\\x2d\\x9a\\xdf\\x83\\x22\\xdd\\x7d\\x9a\\x7a\\xa9\\xf0\\x23\\x41\\xca\\xd0\\x50\\x75\\x2e\\xb3\\xdb\\xcc\\xc4\\x7b\\x75\\xb9\\xcd\\xa9\\xf1\\x25\\xa9\\xe1\\x55\\xdb\\x7f\\xb1\\xac\\xff\\x81\\x4b\\x9b\\x70\\x8a\\x1c\\xc3\\x7b\\x2b\\x8b\\xb7\\xf6\\x64\\xda\\xfb\\x2f\\xa9\\xeb\\xf8\\xc5\\xee\\x3a\\x4d\\x56\\x43\\x4a\\x6c\\x81\\x79\\x71\\xd5\\x8e\\x3b\\xbb\\x47\\xee\\xda\\x54\\x48\\x53\\x64\\xe9\\xdc\\x51\\x5b\\xb6\\xad\\x3b\\xdd\\xd6\\xb7\\xb7\\xb1\\xe3\\x17\\x3b\\x6b\\x9d\\xff\\xd2\\x15\\x47\\x27\\x37\\xe5\\xea\\x30\\x6f\\xf4\\x60\\x53\\x54\\xce\\x92\\x94\\xf6\\xe2\\x38\\xc4\\x82\\xf1\\xab\\xf0\\x6e\\x7b\\x5b\\x51\\xd2\\x42\\x75\\x46\\x59\\x7b\\xfa\\xd2\\xdd\\x6d\\x09\\xa9\\x2b\\x6f\\x99\\xa0\\x96\\xcd\\x0d\\xc6\\xe8\\xbc\\x65\\x79\\x8e\\xb6\\xfc\\x24\\xf5\\xa2\\x9c\\xce\\x9d\\x3d\\xb6\\xb6\\xe2\\xd4\\x85\\xea\\xf4\\xb2\\x36\\x5b\\xdb\\xae\\xa5\\x89\\x99\\x63\\xc7\\x56\\x94\\x4d\\xb7\\xa6\\x44\\xe5\\x75\\xe7\\x15\\x76\\x14\\x24\\xa9\\xc3\\xb2\\xda\\x77\\xbc\\xe4\\x1b\\xe2\\x27\\xd3\\x58\\xab\\x52\\x4a\\x97\\x15\\x24\\xab\\x7d\\x82\\x7c\\x65\\xd1\\x69\\x15\\xa9\\x85\\xcb\\x0a\\x53\\x01\\x08\\x6d\\x82\\x8e\\x1d\\x10\\x9e\\x01\\x3f\\x50\\x83\\xda\\x11\\x22\\xf5\\x18\\x77\\x88\\xea\\x5e\\x84\\x55\\x3a\\x9d\\x2e\\x46\\x32\\x95\\xf3\\xb2\\x59\\xf3\\x3b\\x9d\\xd0\\x96\\x60\\x30\\x24\\x26\\x1a\\x0c\\x09\\xf8\\xa0\\xf7\\x99\\xb0\\x4e\\x93\\x9c\\xac\\x89\\x4e\\x4a\\x8a\\xf2\\x3c\\x02\\x83\\xd6\\xb9\\xaf\\xf9\\x6e\\x5e\\x07\\x26\\xc8\\x83\\x66\\xa8\\x71\\x54\\x7a\\x39\\x83\\xbe\\x5e\\xce\\xa0\\x57\\xed\\x38\\x80\\x8c\\x43\\x3f\\xc8\\xe5\\x8a\\x0e\\x50\\x28\\x4a\\x2b\\x41\\x26\\xf3\\xe9\\x00\\x1f\\x9f\\x62\\x9f\\x2a\\x80\\xba\\x9a\\x92\\xa2\\xec\\xcc\\xd4\\x64\\xd1\\xfe\\xc4\\xe9\\x42\\xe2\\x74\\x7e\\x22\\x28\\x0b\\xf5\\x74\\x03\\x78\\x8f\\x4f\\x3e\\xdf\\x74\\xaa\\x45\\x03\\xab\\xbf\\x40\\x21\\xe5\\xf3\\x1a\\x1b\\xb5\\x31\\x66\\xce\\x9a\\x31\\x22\\xab\\x23\\xa7\\xb0\\x3b\\x77\\xc9\\x92\\xdc\\xee\\xc2\\x9c\\x8e\\xac\\x25\\x58\\x4b\\x81\\xfa\\xec\\xc4\\x94\\xfc\\xd8\\xa0\\xa0\\xd8\\xfc\\x94\\xc4\\x6c\\x5d\\x20\\x39\\xaf\\xcf\\x9d\\x3c\\xb9\\x7a\\xf5\\x89\\xc9\\xdc\\xdc\\xc9\\x93\\x63\\xab\\x4f\\x4e\\xe6\\x96\\x96\\x5f\\xfa\\xdc\\xd6\\xad\\xcf\\xed\\x2d\\x2f\\xdf\\xfb\\xdc\\xd6\\xa6\\x03\\x93\\x9d\\x79\\x1a\\x7c\\x2a\\xa9\\x39\\x5f\\x6f\\x6b\\x19\\x49\\x2b\\x4c\\x1b\\x6e\\xb2\\xea\\x72\\x9b\\x92\\xa2\\xd2\\xe3\\xc3\\xe2\\x1c\\xd5\\xba\\x22\\x5d\\x6d\\xbe\\x09\\x17\\x27\\x64\\x46\\xf5\\x76\\xdc\\xb3\\xaf\\xb5\\x75\\xdf\\xbd\\x4b\\xdb\\xef\\xda\\xdb\\xdc\\xbc\\xf7\\xae\\xf6\\xe1\\xe7\\x6f\\xec\\xe9\\xb9\\xf1\\xf9\\xe1\\x91\\x97\\x8e\\xf5\\x26\\xd6\\x8e\\x6c\\xbd\\x4c\\x6a\\x32\\x36\\xd3\\x7d\\xec\\x98\\x70\\x0a\\x62\\x21\\x03\\x4e\\x3e\\x68\\x66\\x24\\x93\\x8b\\x48\\x3d\\x5c\\x62\\x13\\x7b\\xaa\\x98\\x3e\\x28\\x53\\x08\\x04\\x32\\xe8\\xf6\\xd6\\x31\\x8b\\x2a\\x41\\x2e\\x77\\x5b\\x37\\xb9\\x08\\xd0\\xb5\\x75\\x6d\\x0e\\xfd\\xbc\\xa2\\xa7\\x5c\\x86\\xf2\\xfe\\xef\\xb9\\x8c\\x24\\xea\\xb1\\x67\\x9c\\x02\\x05\\x19\\xc8\\x04\\x98\\x7f\\x01\\x5c\\x30\\xbc\\xbd\\xdd\\x11\\x1a\\x1f\\x07\\x90\\x92\\x14\\x97\\x11\\x9f\\x01\\xb1\\x10\\xab\\x0b\\xd1\\xc6\\xea\\x7d\\xc5\\x43\\x31\\x18\\x8c\\x32\\x99\\xfc\\x5c\\xb1\\xd4\\x60\\x30\\x9e\\x5f\\x2c\\x55\\x4b\\xae\\xef\\x5c\\xa9\\x34\\x59\\xe1\\x4f\\xba\\x8d\\xf5\\xd6\\xae\\x22\\xa3\\xb5\\x63\\xaa\\xf0\\x26\\x6a\\x68\\x34\\x96\\x5a\\x35\\xb4\\x8a\\xa5\\x34\\x8e\\xe6\\x3a\\x06\\xca\\x0c\\x18\\xee\\xba\\x29\\xaa\\x28\\x27\\xc9\\xf7\\x68\\x7c\\x5d\\x9e\\x71\\x71\\x42\\x36\\x3d\\xb5\\xd8\\xbe\\xc4\\x5a\\x82\\x11\\xf6\\x7a\\x6b\\x6e\\x9b\\x3d\\x3c\\xa7\\xbe\\x17\\x03\\xb5\\x36\\x83\\xcc\\xde\\x9a\\x1d\\x65\\x28\\x1b\\x74\\xb8\\x9e\\xed\\x6a\\xab\\x0f\\x89\\x31\\x87\\x1f\\x08\\xd4\\xda\\x63\\x35\\xc9\\x51\\x01\\xee\\xef\\x9b\\xfa\\x27\\xec\\x64\\xaf\\xb3\\xfd\\x64\\xc4\\x75\\x73\\x2d\\x73\\x1f\\xa0\\x1c\\xd7\\xc1\\xad\\x73\\x1f\\x40\\xd0\\x3d\\x80\\x0f\\xcf\\x7d\\x30\\x63\\x31\\xdd\\x83\\x9e\\x27\\x92\\x5d\\x7d\\x16\\x2f\\x62\\x7f\\x63\\x0a\\x10\\x20\\xd2\\x11\\xee\\xc6\\x75\\xdf\\x29\\x9e\\x7b\\x4a\\xdf\\xa2\\xdd\\x64\\x7f\\x9b\\x74\\x56\\x31\\x13\\x5e\\x84\\x11\\x2b\\x01\\x80\\x43\\xd3\\xdc\\xd7\\xfc\\x62\\x5e\\x21\\xe5\\x45\\xec\\xe0\\x80\\x2a\\x47\\x79\\x1a\\xca\\x15\\x58\\x21\\x43\\x2e\\x27\\x39\\xa7\\x71\\x10\\xc0\\x47\\x21\\xf8\\xf4\\x83\\xc2\\x17\\xe5\\x5c\\x21\\xef\\xfd\\xde\\xdc\\x57\\x7c\\xbc\\x23\\x37\\x33\\x3d\\xde\\x1e\\x6f\\x0f\\xd5\\xa8\\x62\\x63\\xe3\\x75\\x7e\\x67\\xab\\x0e\\x91\\xdc\\x6b\\xdb\\xec\\x17\\x08\\xbb\\x20\\x1a\\xd6\\xd0\\x50\\x11\\x1c\\x06\\x6b\\x99\\xd1\\x62\\xb3\\x59\\x6d\\x06\\xa3\\xb6\\x49\\x14\\xdd\\xa6\\x03\\x1b\\xba\\x72\\x35\\xa2\\xf0\\x6e\\x7d\\xee\\xd2\\xf2\\x92\\xdc\\xa9\\xf9\\xe2\\x3d\\x95\\x8b\\x4d\\x75\\xbf\\x1b\\x9e\\xc4\\xd2\\xfc\\xeb\\x9b\\x76\\x5f\\x7d\\x59\\x5e\\x11\\x16\\x57\\x6e\\xa3\\xf0\\x91\\x17\\x6e\\xe8\\x36\\x55\\x0f\\x6f\\xb9\\xb4\\x74\\xe4\\x85\\x1b\\xbb\\xbb\\x6f\\x7c\\x61\\xa4\\xe3\\xee\\x4b\\x9b\\x9a\\x2f\\xbd\\x7b\\x69\\xc7\\xdd\\x7b\\x9b\\x9a\\xf6\\xde\\x7d\\x99\\x6b\\x8e\\xc6\\xa8\\xbb\\x2d\\xb3\\x26\\xd8\\xf5\\x39\\x62\\x05\\x65\\x26\\xda\\x6d\\x04\\x88\\x6a\\xa1\\x96\\x3d\\x70\\x0e\\x1f\\xbb\\x11\\xc5\\x39\\xde\\x82\\xb8\\x75\\x0f\\x38\\xfb\\xe8\\xa8\\x50\\xdb\\x2b\\xc9\\xff\\x1a\\xf6\\x06\\x6b\\x17\\x4e\\x41\\x30\\x18\\xe7\\xe7\\x03\\x3d\\xcd\\xce\\x40\\x94\\x87\\x55\\xb1\\xb1\\x1e\\x98\\x79\\xbe\\x4e\\x7f\\x67\\x1b\\x70\\x8d\\xb1\\x70\\x69\\x6a\\x4a\\x5b\\x81\\xc1\\x90\\xdf\\x96\\x9a\\xba\\xb4\\xd0\\xb8\\x74\\x51\\x7c\\x86\\x26\\xda\\x1e\\xa7\\x56\\xc7\\xda\\x35\\x9a\\x8c\\xf8\\x45\\xfc\\x45\\xcb\\xd2\\xe2\\xd8\\xd8\\xe2\\x8e\\x54\\x4b\\x7b\\xa1\\xd1\\x58\\xb0\\xd4\\xa2\\x49\\x8f\\x5f\\xb4\\x28\\x3e\\x5d\\xa3\\xc9\\x34\\x85\\x85\\x99\\x24\\x3e\\xdc\\x0d\\x73\\x73\\x3c\\x99\\xff\\x03\\xfc\\x60\\x21\\x98\\x1c\\xb1\\xf3\\x7b\\x59\\x81\\xe4\\x02\\x89\\xa0\\x49\\xd6\\xee\\x66\\xfe\\x7b\\xbf\\xfa\\x40\\xa1\\x88\\x38\\xaf\\xad\\x55\\x5c\\x29\\xdd\\x81\\x7b\\x5c\\xd3\\xab\\x45\\x6f\\xba\\x1a\\x07\\x66\\x1f\\x67\\x85\\x2c\\x67\\xc0\\x55\\x8e\\x0f\\x0d\\xe0\\x83\\x67\\xfc\\x07\\xa5\\xf8\\xa0\\x92\\x8e\\xb0\\xc3\\xc2\\x2f\\x21\\x06\\xae\\x7d\\xc0\\xdd\\x0a\\xe9\\x0e\\xd3\\x17\\x9f\\xed\\x88\\xe4\\xa2\\x78\\x75\\x79\\x1b\\x0d\\xb3\\xd1\\xdb\\xca\\xf0\\x43\\x23\\x8a\\xd0\\xdb\\xbd\\xf0\\x63\\x73\\xfc\\xd8\\xe5\\x62\\xf8\\xbe\\x58\\x17\\x64\\xf2\\xd0\\xcf\\xce\\xf5\\x5c\\xca\\xce\\x6b\\x15\\x91\\x6b\\xd8\\x61\\xe7\\x33\\xa8\\x89\\x48\\xd5\\x87\\x2e\\x32\\x65\\xc6\\x34\\x76\\xb3\\x95\\x98\\x50\\xb9\\x22\\x37\\xa3\\xaf\\x2c\\x36\\x2a\\xad\\x40\\xf7\\x26\\x3e\\x40\\x47\\x2a\\x31\\x3c\\xdc\\x6a\\xb5\\x85\\x6b\\xd2\\x74\\xc1\\xad\\x95\\xf6\\xce\\x02\\x7d\\x64\\x66\\x93\\x2d\\xbe\\xb2\\xb4\\x30\\xe6\\x59\\x40\\xac\\xa7\\x2b\\xd8\\x35\\xc2\\xa3\\x90\\x0d\\x0e\\x47\\x4e\\xe4\\xf7\\xf7\\x5a\\xca\\x80\\xcb\\x78\\xf7\\xd9\\xbb\\x17\\x6d\\x9f\\x5b\\x71\\xe4\\x55\\xb1\\xba\\x10\\xb3\\xbb\\xcd\\x32\\xc2\\x84\\xe7\\xd9\\x7f\\xef\\x9d\\x4a\\xe1\\xe0\\xf7\\xb6\\x09\\x6a\\x49\\x55\\xa3\\x2b\\xb0\\x44\\x85\\x25\\xe6\\xe8\\xb4\\xd9\\x49\\x11\\x34\\x4c\\x89\\x95\\x7d\\xf6\\x8c\\xe5\\x95\\x26\\x6c\\xca\\xaf\\xec\\x48\\xaa\\x1d\\xce\\xb0\\xaf\\xa8\\xb7\\xd0\\x4a\\x8a\\xb2\\x14\\x1a\\xf4\\xf9\\x29\\x11\\x31\\xe9\\x65\\x86\\x1a\\xde\\x14\\xa8\\x49\\xd5\\x6a\\x2c\\x31\\x41\\x4a\\x4d\\x6a\\x74\\x5a\\x43\\x7a\\x64\\x44\\x7a\\xa3\\x3d\\xbf\\x2d\\x34\\xb8\\xa3\\x26\\xbd\\x29\\x63\\x49\\x44\\x46\\x4b\\x96\\xd6\\xaa\\x0b\\x0e\\xd2\\x59\\xb5\\x71\\xf6\\xe8\\x00\\xe9\\x9c\\x9f\\xe6\\xaf\\x30\\xbf\\xb3\\xdc\\x16\\x0f\\x9f\\x27\\xf7\\x1c\\x9f\\x87\\x69\\x69\\xe3\\x81\\xcf\\xfb\\x85\\x77\\x5d\\xff\\x96\\xec\\xd1\\xcb\\xae\\x1e\\x36\\xc7\\x33\\x21\\x0c\\x6e\\x7a\\x28\\x34\\xd0\\x4f\\xa2\\xe7\\xba\\x25\\x63\\x91\\x4c\\x20\\x29\\xe9\\x02\\xe0\\xfd\\x36\\x00\\xe0\\x3c\\x9f\\x7b\\xd3\\x38\\x11\\xde\\xf7\\xa5\\x77\\xbc\\x2d\\x5e\\xe7\\xc6\\x84\\xfc\\xe8\\x1c\\x3f\\x7e\\xb9\\xd4\\x88\\xe2\\xe6\\xb8\\x05\\x6b\\x95\\x2a\\xbd\\x44\\xf4\\xf7\\x90\\x32\\xec\\x9e\\x4a\\xbd\\xdc\\x9d\\x8c\\xc6\\x22\\x8c\\x76\\xf4\\x15\\x95\\x8d\\x54\\x25\\x2f\\x98\\x1a\\x95\\x9b\\xaf\\x9f\\x58\\xba\\x37\\x71\\x03\\xcf\\x74\\xee\\x69\\xdd\\xbb\\x2c\\x55\\x57\\xd0\\x61\\xa7\\xbf\\x9d\\x79\\xf6\\x96\\xa6\\x5e\\x2c\\xce\\x71\\xfe\\x5d\\x78\\x17\\x10\\xfe\\x04\\xc0\\x1e\\x94\\x78\\xa8\\xa2\\x25\\xf0\\xf4\\x5f\\x9f\\xa5\\xa8\\xb9\\x69\\xbf\\xb1\\x1a\\xae\\x08\\x35\\x69\\x94\\x67\\xbb\\xd1\\x2c\\x4a\\x96\\xbb\\x72\\xf5\\x03\\x3b\\x4a\\x4a\\x76\\x3c\\xb0\\xfa\\x8f\\xa4\\x28\\xda\\x74\\x62\\x78\\xe8\\xc4\\xa6\\x22\\xfc\\xb6\\x4e\\x8c\\xd7\\x43\\x69\\x13\\x3d\\xc5\\xa2\\xc1\\x4f\\xe2\\x21\\x5d\\x10\\x71\\xbb\\x1b\\xbb\\xe7\\x43\\x1f\\x0a\\x35\\x4b\\xe1\\xa1\\xd1\\x4c\\xbf\\x8d\\x49\\x49\\x89\\x89\\x91\\x42\\x43\\x40\\x7c\\xdf\\x55\\xcd\\x7c\\x00\\x40\\x0d\\x06\\x87\\x36\\xd4\\x5d\\x90\\x61\\xe2\\xc3\\x1a\\x71\\xce\\x4e\\x00\\x28\\x97\\xd8\\x7f\\x6a\\x50\\x2b\\x17\\x4b\\xb7\\xe8\\xc1\\xa2\\x72\\xa3\\x17\\x84\\xda\\x69\\xdc\\x5f\\x93\\x65\\x0e\\x4f\\xae\\x1f\\xc9\\x94\\x6b\\xca\\x32\\x8d\\x11\\x29\\x8e\\x98\\x08\\x87\\xb0\\x28\\x36\\x3b\\x3e\\xad\\x22\\x65\\x11\\xd6\\xf8\\x87\\x9b\\xb5\\xd1\\xb1\\x6a\\x3f\\xbe\\x4d\\xfa\\xcc\\x6b\\xe9\\x10\\x7d\\x21\\xdc\\x0d\\x32\\x08\\x72\\x2c\\x3c\\xd7\\x5f\\x3d\\x2c\\x75\\x57\\xa3\\x56\\x29\\xb7\\xea\\x2d\\xf4\\xc5\\xf0\\x97\\x58\\xb4\\x80\\x0e\\xd1\\x75\\x25\\x4b\\x47\\x24\\x6c\\x8e\\x5a\\xba\\x97\\xdd\\x21\\x9c\\x92\\x6a\\x2c\\x62\\x7c\\x4c\\xa2\\xff\\xea\\x3e\\x6b\\x5a\\xd9\\xd9\\x02\\x0b\\x7e\\xf7\\x0b\\x3c\\x3c\\x67\\xe9\\x65\\x3e\\xa1\\x36\\xb1\\x71\\xaa\\xb2\\x6a\\xb2\\x31\\x31\\xb1\\x61\\xb2\\xb2\\x6a\\xaa\\x29\\x71\\x15\\x86\\xdb\\xea\\x6d\\x69\\x75\\xb6\\x70\\xc4\\x08\\x5b\\x9d\\xd5\\x2a\\x3e\\xe3\\xeb\\x4b\\x36\\x76\\xa4\\x89\\x41\\xdb\\xfa\\x92\\x8d\\x4b\\xd3\\xd2\\x96\\x6e\\x2c\\x49\\x6d\\xcd\\xd7\\x1b\\x1c\\xad\\xa9\\xeb\\x53\\x5a\\xf3\\x0d\\x86\\xfc\\xd6\\x14\\xaf\\x5f\\xbe\\x85\\x7d\\xc0\\x66\\xc8\\x88\\xeb\\xe7\\x5a\\x00\\x40\\x8e\\xeb\\xe1\\x6e\\x70\\xbf\\x67\\x03\\xe0\\x17\\x09\\x0f\\x42\\x12\\x3e\\xe5\\xfa\\x3b\\xfd\\x25\\xe3\\x30\\x18\\x70\\xc3\\x9f\\x14\\xb8\\x10\\x4f\\x61\\x36\\x40\\xc6\\x61\\x50\\x8a\\xde\\x9b\\xfe\\xe2\\xf6\\xde\\x33\\x0a\\x77\\x9f\\x1f\\x58\\x00\\xf8\\x3e\\xe1\\x5e\\x32\\xe0\\x86\\x5f\\x29\\xa4\\xab\\xff\\x42\\x5f\\x67\\x1c\\xc6\\x85\\x78\\x2d\\x36\\x9f\\xbd\\x4e\\x1a\\x2e\\x3a\\x7d\\xfa\\xda\\x73\\x5d\\x0a\\x20\\x3f\\x2a\\x3c\\x2c\\x5e\\x97\\xc2\\x20\\x09\\x4f\\x61\\x1b\\xa0\\x74\\xdd\\xaf\\xe7\\x02\\xe8\\xcb\\x8c\\xc3\\x10\\x26\\x5e\\xc7\\xa4\\xeb\\x68\\x06\\xc5\\x47\\x86\\x0f\\xd3\\x97\\x12\\x68\\x20\\xf8\\xd2\\xb5\\x95\\x7d\\xca\\xab\\xa5\\x5e\\xbc\\x01\\x0f\\x08\\x93\\x21\\x13\\x50\\x60\\xf3\\xf9\\x43\\x1e\\xe6\\x99\\xb7\\x35\\x4f\\x2a\\x60\\xc4\\x7c\\x67\\x9c\\x38\\x21\\x75\\x9f\\x1d\\x2e\\x54\\x49\\xb5\\xc9\\x0b\\x1b\\xf7\\x02\\x98\\x3c\\x80\\x79\\xbb\\x5d\\xcf\\xb2\\x8d\\x44\\x3d\\xc8\\x65\\xd6\\xf3\\x1a\\xf7\\x1e\\x42\\xdf\\xc8\\x34\\x93\\xb1\\x32\\x53\\xab\\x2d\\xea\\xcd\\x4d\\xef\\x2e\\x8e\\xa3\\x49\\xca\\x58\\x7e\\x59\\x53\\xfb\\xfe\\x7e\\xab\\xa9\\xac\\x33\\x39\\x52\\x17\\x24\\x44\\x8b\\x92\\x2e\\x4a\\x3c\\x9d\\xc8\\x6e\\x2e\\x71\\xc4\\xc6\\x36\\x76\\x0e\\x66\\xe7\\xf6\\x17\\x1b\\xb4\\x05\\xcb\\xb2\\xea\\x77\\x2d\\x4b\\xb3\\xf5\\xee\\x6d\\x2a\\xdb\\x3e\\xb1\\x3c\\x21\\xc2\\x9a\\xee\\x88\\xc5\\x9a\\x79\\x3a\\x41\\x60\\x07\\xe0\\x57\\x09\\x33\\xb0\\x10\\x82\\x20\\xcb\\x91\\x1e\\x84\\x52\\x3b\\xb4\\x00\\x32\\x85\\x20\\xeb\\x05\\x05\\x88\\xf8\\x67\\x7e\\x9f\\x8b\\x5c\\x2e\\x7d\\xb5\\xd1\\xd9\\x86\\x0b\\xd1\\x6f\\xfa\\x28\\x96\\x98\\x34\\x1a\\xa6\\x61\\x5a\\xd1\\x7b\\x06\\x4b\\xbf\\xa8\\x61\\xfc\\x2a\\x97\\x8f\\xcc\\x75\\xe7\\xbe\\x2d\\x14\\x4b\\xa1\\xae\\x8b\\x14\\x58\\xe5\\x7a\\x50\\x81\\x97\\xce\\xbe\\x85\\x09\\x7e\\xb8\\xcb\\xb5\\x49\\x98\\x19\\x74\\x7e\\x38\\xe8\\xbc\\x05\\x0f\\x30\\x77\\x5e\\xf2\\x14\\x2c\\xe7\\x66\\xf6\\x32\\xf8\\x81\\xec\\x3e\\x1f\\x86\\xc9\\x26\\x3b\\xa2\\x1d\\x51\\x8d\\x28\\x47\\x3c\\x85\\x83\\xae\\x3b\\x6a\\xb1\\x05\\x5b\\x6b\\x5d\\x77\\xe0\\x8a\\x5a\\xd7\\x21\\xd7\\x91\\xfb\\x70\\x14\\x97\\xd5\\xb9\\x6e\\x91\\xfe\\x71\\x5d\\x55\\x8b\\xab\\x5c\\x57\\x03\\x83\\xb1\\xb9\\x13\\x7c\\x8b\\xf0\\x31\\x68\\x21\\x0d\\x0a\\x21\\xdd\\x61\\xcd\\x48\\x8f\\x8f\\x8b\\x5e\\xb2\\xc0\\x57\\xe1\\xee\\xf5\\x16\\x0d\\x37\\x63\\xb9\\x95\\x5e\\xba\\x76\\xd1\\x7c\\x2e\\x5b\\x62\\x62\\x70\\x62\\xb0\\x41\\xaa\\xca\\x05\\x08\\x6e\\x12\\x9b\\x18\\x73\\x4a\\x8c\\xf4\\x50\\xb5\\xdd\\xc2\\x42\\x43\\xd5\\x82\\x18\\xb1\\xa0\\x44\\xab\\xe1\\x72\\x8d\\xc1\\x60\\x44\\x29\\x29\\xcb\\xed\\xbc\\xd8\\xc3\\xfc\\xef\\xb8\\xc2\\xbe\\x62\\xc5\\x95\\xba\\x34\\xad\\xd2\\x43\\xfe\\x1f\\xfb\\x59\\xd6\\xd8\\x8a\\xa3\\x69\\xc9\\x34\\x7b\\xdc\\x57\\x15\\xa5\\x26\\x73\\xc2\\xae\\x6e\\x4f\\x07\\x00\\x7d\\x81\\x8b\\x22\\x9c\\xef\\xc5\\xaf\\xad\\xbc\\xa0\\x09\\x20\\xcb\\x72\\xd7\\x3f\\x93\\xd7\\x6c\\xdc\\x9a\\xe3\\xe9\\x03\\x68\\x29\\x7d\\xd4\\xf5\\xaf\\xae\\xb7\\x57\\x3e\\x99\\xb0\\x6c\\x59\\x47\\x2c\\xbb\\xaf\\xa8\\xd9\\xdd\\x0c\\x50\\x7a\\xa8\\x6c\\xb6\\xc3\\x6c\\xf7\\x34\\x03\\x10\\xfc\\x0a\\x80\\xd7\\x4a\\x5c\\xe1\\x25\\x70\\xa2\\x72\\xc6\\x47\\xaa\\xd8\\x71\\x40\\xe2\\xd8\\x2f\\x93\\x5a\\x66\\xce\\x32\\x28\\xe7\\xd5\\x97\\x44\\xbf\\xb4\\x44\\x54\\x66\\x81\\x83\\xd0\\x7f\\xfe\\xf8\\xf3\\x8a\\x50\\x3f\\x39\\xd7\\x4f\\x4c\\x23\\x3a\\xa0\\x10\\xa5\\x12\\x40\\xb9\\x44\\x19\\x11\\x12\\x04\\x81\\x10\\xa8\\x8c\\xd5\\x28\\x44\\xd5\\x50\\x6a\\xbc\\xd0\\x50\\x04\\x61\\xc1\\x67\\xbb\\xe6\\xd0\\x86\\x45\\x43\\x27\\x36\\x17\\x17\\x6f\\x3e\\x31\\xe4\\x7a\\x6c\\x72\\x12\\x8b\\x6a\\xb6\\x77\\x59\\x52\\x3b\\x77\\xd4\\x0a\\x33\\xae\\x57\\xb2\\x46\\x0e\\x75\\x77\\x1f\\x1a\\xc9\\x72\\x3d\\x26\\xcc\\xb8\\x46\\x9c\\x97\\xa3\\xb9\\x61\\xa2\\xb8\\x78\\x5d\\xa3\\x19\\xdd\\xf9\\xf6\\xa7\\xe6\\xbe\\xe6\\x99\\x32\\x5f\\x28\\x84\\x56\\x87\\xaf\\x16\\x19\\x8f\\x11\\xe3\\xd8\\x0a\\x77\\x8e\\x69\\xb1\\xb7\\x43\\x22\\x57\\xea\\x90\\x38\\x4b\\x1c\\x2a\\x16\\x17\\xb2\\x08\\x10\\x38\\x73\\x7f\\x2f\\xc0\\x79\\x6f\\xb5\\x3b\\xfc\\xf2\\x72\\xe2\\x8c\\x91\\x11\\xfa\\x40\\x41\\x74\\x14\\x5a\\xe5\\x3c\\x5c\\xab\\x0e\\x39\\x07\\xf3\\xe7\\xa5\\x30\\xb8\\xa8\\xe3\\x12\\x6a\\x31\\x88\\x56\\x39\\x7d\\x32\\xb9\\x63\\x4f\\x5b\\xf1\\xc6\\x0e\\x9b\\x3e\\xd1\\x80\\x49\\xc5\\x75\\x45\\x66\\x6b\\xd7\\xe6\\x52\\x63\\x73\\x7d\\x69\\x98\\x46\\x9d\\x5d\\x58\\xa2\\x4d\\x6b\\xcd\\x8d\\x31\\x17\\xd7\\x15\\x27\\x19\\xcc\\x06\\x6d\\x66\\x55\\x6c\\xfe\\xb2\\xdc\\x28\\xe4\\x9d\\x5d\\x37\\xae\\xcd\\x8f\\xaf\\x59\\x53\\x5e\\xb4\\xb2\\xab\\xd3\\x96\\x52\\x5b\\x56\\xda\\xb4\\xa2\\xb0\\x7a\\xb2\\xd1\\xe4\\xab\\x5a\\x12\\x32\\x10\\xb8\\x24\\x74\\x41\\x74\\x66\\x7d\\xaa\\xad\\xa9\\xa2\\xb4\\xa1\\xcf\\x91\\xd9\\xb7\\xac\\x37\\x23\\xa9\\x26\\x3d\\x0a\\x53\\xda\\xa6\\x4b\\x81\\x41\\xd2\\xdc\\x69\\x7e\\x8c\\xd7\\x40\\x3e\\x34\\x40\\x37\\xf4\\x39\\xba\\x8d\\xc8\\x59\\x69\\x4e\\x36\\xe3\\x0a\\x39\\x55\\x00\\x67\\xc4\\x38\\x8d\\xfb\\x21\\xf9\\xa2\\x5c\\x41\\xf2\\x7e\\x7f\\x64\\x4c\\xe8\\x90\\xa1\\x20\\x94\\x56\\x06\\xf8\\x90\\x42\\x01\\x1d\\xb8\\x80\\x24\\x4d\\x29\\x2c\\x40\\xe8\\x68\\x6f\\x6a\\xac\\x28\\x2b\\x68\\x28\\x6c\\x48\\xb7\\xa5\\x24\\x9b\\xe2\\xf4\\xda\\xa8\\xc8\\xc5\\x8b\\x82\\x95\\x3e\\x72\\xc8\\xc7\\xfc\\x85\\x8a\\x10\\x93\\x70\\x21\\x1f\\xd7\\x03\\xee\\xd4\\x46\\x83\\xbb\\xa0\\xeb\\xa9\\x77\\xcb\\x35\\x67\\x4d\\xa2\\x3a\\x80\\x49\\x51\\x27\\xd3\\xba\\xed\\x24\\x6a\\x3c\\x59\\x69\\x15\\xdb\\x3a\\x76\\x45\\x6c\\xb0\\xbd\\xa4\\x39\\xa5\\x68\\xb0\\x44\\x97\\xd4\\xb9\\xab\\xf5\\xe2\\x85\\xfa\\x82\\xb4\\x84\\x92\\xe4\\x30\\x5c\\x87\\xa6\\xba\\xd5\\x45\\x03\\x9b\\x23\\x8d\\x9b\\xdb\\x9a\\x36\\x54\\x6a\\xd1\\xf9\\xe7\\x45\\x59\\xcb\\xab\\x8c\\xf9\\xd6\\xf8\\x20\\x7d\\x90\\xa5\\xb0\\xc9\\x79\\x3c\\x32\\x2b\\x2d\\x7e\\x21\\x5e\\x94\\xd9\\x91\\x1b\\x1d\\x6a\\x2a\\xc0\\x01\\xbc\\x05\\x29\\xc4\\x5c\\x69\\xcf\\x6f\\x4a\\x51\\x85\\x60\\x77\\xb5\\x36\\x2f\\x29\\x22\\xa9\\x61\\xb5\\xa3\\x7a\\x7b\\xa7\\xe5\\x4e\\x7d\\xa9\\x5d\\x1b\\x91\\x5a\\x1c\\xc7\\xf3\\x87\\x2b\\xe3\\xea\\xf2\\x1d\\xf5\\x79\\xc3\\x97\\x94\\xff\\x72\\x57\\xd6\\xda\\xae\\x8c\\xa0\\x08\\x5d\\x50\\x6b\\x68\\x5c\\x74\\xf0\\xf2\\x90\\x98\\x84\\x45\\x58\\x83\\x71\\x25\\x9d\\x69\\xb1\\x65\\xe9\\xd1\\x94\\x30\\x6a\\x5a\\x5a\\x91\\xec\\xe8\\x5d\\x9f\\x06\\x04\\x2d\\x73\\xa7\\x79\\x80\\x2c\\x00\\x74\\x90\\x0d\\x29\\x0e\\x73\\x28\\x32\\xc2\\x0a\\x9d\\x36\\x26\\x3a\\x2a\\x22\\x7c\\x71\\x98\\x0f\\x96\\x01\\x02\\x31\\xa4\\xfe\\x79\\xfd\\x30\\xe9\\x36\\x73\\x42\\x6c\\xac\\x08\\x3e\\x30\\x34\\x48\\x3d\\xff\\x2b\\x14\\xc4\\xbd\\x32\\x78\\x52\\x9a\\x46\\x7b\\xa8\\xda\\xae\\x66\\x69\\x06\\xe3\\xb9\\x14\\x98\\x24\\x65\\x2c\\x62\\xed\\x56\\x2c\\xd8\\xf2\\xc0\\xda\\x81\\x3b\\x37\\x97\\x14\\x6d\\xb9\\x67\\x74\\xf9\\x4c\\xb6\\x7a\\x55\\xdd\\x19\\xcb\\x17\\xd9\\xfb\\x6a\\x8c\\x2f\\x1d\\xfc\\x63\\x5a\\x3b\\x62\\x48\\x69\\xe7\\x58\\x66\\xf3\\xae\\xce\\x64\\x4b\\xc7\\xf6\\x9a\\x8e\\x4b\\x96\\x9a\\x85\\x05\\x9b\\x5d\\xf7\\xbd\\x59\\xba\\xfe\\x77\\x37\\x74\\x56\\xee\\xbc\\x77\\x60\\xf4\\xa1\\x5d\\x15\\xb5\\xc5\\x3b\\x5f\\xae\\xbb\\xac\\x62\\x5b\\x72\\x79\\xc4\\x50\\xe1\\x96\\x2d\\xe5\\xb3\\x7f\\x59\\x18\\x19\\x10\\x9b\\x9f\\x14\\x96\\x3b\\x72\\x65\\x43\\xf5\\x65\\xc3\\xb9\\x35\\x17\\xdd\\xd1\\x09\\x0c\\xd6\\xc2\\x1b\\xbc\\x9d\\x5f\\x29\\xe5\\xf1\\xa5\\x0e\\x4d\\x20\\x60\\x48\\xac\\x1f\\x50\\xa2\\x1a\\xf5\\x02\\x17\\x04\\xde\\xea\\xe9\\x64\\xe7\\x42\\xad\\x4e\\xa7\\xd3\\x7a\\xdb\\x23\\xad\\xe7\\x11\\xb0\\xe6\\xbb\\x3e\\xde\\x3e\\xbb\\x98\\x7d\\xee\\x7c\\xfa\\x6c\\xe2\\xca\\xfb\\x84\\x76\\xae\\xc3\\x52\\x4f\\xca\\xca\\x29\\x44\\x27\\x27\\x47\\x6b\\xa4\\xdc\\xd5\\xc5\\x73\\xeb\\x78\\x39\\x7f\\x02\\x34\\x90\\x04\\xd9\\x90\\xeb\\xc8\\xf2\\x53\\x90\\x00\\x69\\x96\\x58\\x23\\xe7\\x42\\x44\\x18\\x11\\x67\\x15\\x6e\\xf6\\x2a\\x23\\xb6\\xf6\\x02\\x1e\\xac\\x5b\\xa7\\x4d\\xe6\\x60\\x93\\x87\\x6b\\xe0\\x26\\x4e\\xda\\x2d\\x72\\x77\\x0b\\xe9\\x39\\x37\\xa0\\x97\\xac\\x91\\x9b\\x90\\xa1\\x09\\x09\\xf5\\x38\\x01\\x2f\\x89\\xc5\\xd6\\x63\\xaa\\xe8\\x5a\\x96\\x56\\x6f\\x5f\\xe2\\xa6\\xb2\\xe4\\x8d\\x25\\x37\\x75\\x8d\\x24\\x95\\xa6\\x2c\\x66\\x35\\x21\\x7a\\xbb\\xce\\xb5\\xb9\\xb2\\xbf\\x6d\\x4f\\x47\\xb2\\x33\\x3e\\x2f\\x1b\\x77\\x44\\x97\\xc7\\x9d\\x63\\xb6\\xa8\\x82\\xaf\\x7f\\x52\\x37\\x30\\x75\\x49\\x99\\x44\\x6f\\x09\\x0f\\x3b\\xf1\\xae\\xbe\\x6f\\xcd\\x8e\\x22\\x8d\\x75\\x68\\x59\\x43\\xd4\\xec\\xe7\\xe6\\x8a\\x4d\\xc7\\x5a\\x96\\xdf\\x9f\\xc7\\x82\\x02\\x95\\x6e\\xaa\\x8b\\x97\\xeb\\x22\\xf3\\x95\\xf2\\x15\\x3d\\xe7\\x71\\x5d\\xd4\\xdf\\x47\\xeb\\xfe\\x3e\\x96\\xca\\xf9\\xb4\\xee\\x0b\\x59\\x2a\\x3f\\xc4\\x51\\xf9\\x2e\\xa7\\xfb\\x2c\\x47\\x25\\x65\\xf0\\xc8\\xc8\\xf0\\x5d\\xd9\\x53\\x53\\x99\\x27\\x46\\x56\\xdd\\x38\\x90\\x32\\xa5\\xad\\xda\\xd4\\x66\\xeb\\xae\\xcd\\x51\\x25\\x1c\\x1f\\x6e\\xdb\\x58\\x15\\xe3\\xa6\\xa8\\xd4\\x57\\x39\\x7f\\x2f\\xbf\\xd3\\x79\\xa4\\xfe\\x2c\\x47\\x25\\xd2\\x5a\\x91\\xe8\\xfc\\xa6\\xb9\\xdf\\xc3\\x51\\xd1\\x01\\xf0\\xfb\\x85\\x19\\x08\\x06\\x35\\x2c\\xaf\\x9c\\x09\\xab\\x6b\\x73\\x68\\xc1\\x17\\x18\\xf9\\xb2\\x5e\\x1f\\x94\\xcb\\xb3\\x2b\\xfd\\xc4\\x18\\x07\\xda\\x15\\x32\\xa9\\x06\\xcc\\xbd\\x5f\\xa3\\xa6\\x11\\x5f\\x10\\xdf\\xf3\\x15\\x83\\xfd\\xf3\\xae\\xf0\\x8c\\x69\\x77\\x04\\x5d\\xf0\\x9d\\x87\\xfe\\x8a\\x25\\x67\\xbf\\x08\\x47\\xa9\\x55\\x6a\\xad\\x16\\x77\\xf3\\xa8\\xf4\\x3d\\x29\\xb1\\xfb\\xf6\\x4d\\x38\\x9b\\x26\\x36\\x6c\\x98\\xa0\\x13\\x13\\xb3\\x9f\\xd0\\x09\\x67\\x13\\xef\\xef\\x3d\\xe3\\xa2\\x47\\x9d\\x25\\x9c\\x7a\\xb1\\xda\\x75\\x1f\\x56\\x3b\\xd7\\x7c\\xe4\\xf6\\x35\\x12\\x17\\x4f\\xaa\\xad\\x4a\\x7d\\xaa\\xdf\\xc7\\x8b\\xfc\\x5e\\xb6\\xdd\\x59\\x26\\xa4\\x97\\xff\\x08\\x04\\x97\\xce\\x7d\\xc3\\x4b\\xa5\\x3c\\x8c\\x1a\\x0e\\x79\\xd3\\x01\\x1c\\x05\\xe4\\xc2\\xb8\\xbb\\xcd\\x53\\x3a\\x31\\x2f\\xa3\\xd0\\x1d\\x3a\\x46\\x5e\\x30\\x42\\x72\\x5c\\xe7\\x68\\x19\\x1e\\x1e\\xd9\\x8f\\xcd\\xf3\\x53\\x53\\x48\\xc4\\x9c\\x98\\x10\\xed\\xb9\\x6e\\x5b\\x8b\\xc6\\xa2\\x0c\\xf1\\x52\\x72\\xdc\\x92\\x80\\x34\\x35\\x45\\xbf\\x9d\\xba\\xe3\\x9e\\xca\\x2d\\xed\\xa9\\x53\\x6b\\x87\\x0a\\xdb\\x2c\\x21\\xc2\\xcc\\x99\\x1b\\x7e\\xfe\\x48\\x5c\\xd3\\xf6\\xd6\\x2d\\x6b\\xf4\\x85\\x9d\\x62\\xa8\\x00\\xc3\\xae\\x6a\\x9e\\x28\\x3c\\x06\\x61\\xa0\\x85\\x24\\xc8\\x82\\x5a\\x47\\xd5\\x02\\x24\\x99\\xbb\\x1e\\xee\\x8f\\xbe\\xbe\\x3e\\x1d\\x7e\\xe8\\xe3\\x53\\x54\\xa9\\x40\\xc6\\xa0\\x9d\\x4b\\x15\\x72\\x11\\x72\\xb8\\x93\\x37\\xf3\\x8b\\xe5\\x99\\xe9\\x22\\xd2\\x8e\\x35\\x48\\x67\\xaa\\x2a\\xb1\\x06\\x2e\\x90\\xbe\\xca\\x52\\x79\\xa1\\x27\\x56\\x6a\\xf5\\x1a\\xa5\\xe5\\xbb\\x74\\xd4\\xf3\\xbe\\x1c\\xec\\x0e\\x1c\\xb5\\x0f\\x5f\\xdf\\xb3\\xc4\\x92\\x9a\\x1a\\xe1\\x13\\x64\\xb5\\xa7\\x2c\\xcc\\x1e\\xad\\x4f\\xfe\\xb7\\xf3\\x69\\x9c\\x7e\\xdb\\x79\\x12\\x99\\x6b\\x8e\\xf9\\x7b\\x89\\xa1\\xce\\xb7\\xe2\\x93\\x93\\x4d\\xa6\\xe4\\xe4\\x78\\x9e\\x79\\xe6\\xd9\\x81\\x9b\\x27\\xb2\\x89\\xcb\\x84\\x01\\x89\\x24\\x5a\\xbd\\xb5\\x93\\xfd\\x6e\\xc4\\x43\\x69\\x3d\\xe8\\xa1\\xb4\\xc6\\x78\\xa9\\xad\\x08\\x6f\\x02\\xf0\\x01\\x9e\\xf9\\xdd\\x1e\\xde\\xbc\\x1f\\xef\\xe1\\xfd\\xf6\\xe4\\xd4\\xd4\\x55\\xf8\\xe4\\x55\\xae\\x30\\x0a\\x3b\\x8c\\xdf\\xde\\xe8\\x3a\\xce\\x33\\x9d\\x77\\x5e\\x8f\\x4f\\xb8\\x94\\xce\\x07\\x00\\x21\\xc3\\x83\\x01\\x17\\x88\\xb1\\xae\\x9f\\xaf\\x8f\\x82\\x91\\xfb\\x4b\\xfa\\x2b\\x2e\\x6c\\xe8\\x55\\x29\\x43\\xa4\\x9c\\xa8\\x5e\\x25\\x48\\xfc\\x15\\xb9\\xd5\\xae\\xb4\\xe0\\x4a\\x34\\xb8\\xde\\xa5\\xcf\\x66\\x8f\\x3f\\xf2\\xc8\\x14\\xb3\\x77\\x8e\\x76\\x3a\\x8f\\x0e\\xd1\\xad\\x99\\xa3\\x99\\x74\\xf4\\x9c\\x9c\\xcb\\x00\\x94\\x50\\xe3\\x58\\xb0\\xc0\\xdf\\xcf\\xd7\\x3d\\x3f\\x3b\\x47\\x57\\x66\\x8c\\xb7\\x4b\\x9c\\xe5\\xf9\\x45\\xc9\\x70\\x47\\x08\\x70\\x90\\xaa\\x96\\xf3\\x5f\\x6e\\x7f\\x48\\xa9\\x52\\x2a\\x43\\xa4\\x5c\\x95\\x5e\\x2e\\x78\\xd4\\x42\\xb0\\xeb\\x95\\x1a\\xab\\x86\\xde\\xc4\\x36\\xee\\x3a\\xe1\\xa1\\xa3\\x5e\\xce\\x70\\xb5\\x6b\\x3b\\xfe\\x87\\xed\\x5a\\x33\\xba\\xc6\\xd9\\xb0\\x72\\x25\\xed\\xde\\x34\\xb6\\x91\\xd2\\x47\\xdc\\xfa\\xf7\\xb0\\xab\\x92\\x87\\x48\\xdf\\x9d\\x6a\\x77\\xa4\\x2d\\x0e\\x09\\x66\\x6e\\x9e\\xb0\\x0f\\x02\\xb2\\x0a\\x81\\x93\\x17\\x86\\x56\\x7a\\xb8\\x08\\x9e\\x90\\x3f\\x1c\\xc2\\x95\\x6a\\xbd\\x5e\\x62\\x48\\x06\\x7b\\x69\\xc2\\x1e\\xa3\\x66\\x45\\x71\\xe3\\x55\\xa8\\xe4\\xc1\\x18\\x5d\\x30\\x54\\x16\\x91\\xbc\\x78\\x41\\x90\\x4d\\x99\\x90\\xa5\\x0b\\x74\\x1e\\xd8\\xb0\\x81\\x56\\x0b\\x33\\xff\\xfd\\xbf\\xa2\\xad\\x3d\\x99\\x7e\\x8a\\x7e\\xb9\\x4f\\x62\\x49\\x9b\\xa9\\x8b\\x3f\\x76\\xc6\\x21\\xcc\\xf0\\xff\\x8f\\xb5\\xf7\\x80\\x6f\\xe3\\xba\\xf2\\x85\\xef\\xb9\\x73\\x67\\x00\\x76\\x82\\x20\\x00\\x76\\x12\\x44\\x23\\x08\\x12\\x24\\x00\\x02\\x20\\xc1\\x06\\xf6\\x02\\xf6\\x2a\\x92\\x92\\x48\\x8a\\x62\\x13\\x25\\x8a\\x45\\x2c\\xea\\xbd\\xd9\\x92\\x2c\\x5b\\x96\\x2c\\xb9\\x77\\x3b\\x91\\x23\\xcb\\xd9\\xb8\\x3f\\xc7\\x49\\xec\\xd8\\xbb\\xa9\\x1b\\x3b\\x75\\x93\\xe7\\x94\\xe7\\xbc\\x38\\x6b\\x25\\xbb\\x29\\xbb\\x59\\x5b\\xc4\\xe8\\xfb\\xcd\\x9d\\x01\\x48\\x4a\\xb2\\xac\\xe4\\x7d\\xfa\\x85\\x31\\x80\\x99\\x7b\\xe7\\xce\\xad\\xa7\\xfc\\xcf\\xff\\x5c\\xad\\x26\\x5f\\x45\\x80\\xbe\\xc3\\xfb\\x08\\x43\\x9a\\x50\\x36\\x7a\\xd9\\x1b\\x95\\x09\\x98\\x30\\x2a\\xc0\\x24\\x16\\x00\\x33\\x92\\x3d\\x48\\xb4\\x99\\x72\\x2c\\x96\\x8e\\xa4\\x55\\xf3\\x3a\\x40\\x36\\x29\\x08\\x61\\xa5\\xbe\\x15\\x16\\xe7\\x1b\\xef\\x8b\\xfd\\xdc\\xba\\x3e\\xbf\\x9a\\x80\\x7d\\x28\\x1b\\x65\\xab\\xcc\\x26\\xb3\\x68\\x1f\\xd2\\x48\\x96\\xb8\\x1b\\x20\\xd4\\x2b\\x00\\xe5\\xe0\\x0e\\x8d\\xaf\\xec\\x1a\\x2f\\x59\\x7f\\x6c\\x4d\\xa6\\xa9\\x61\\xba\\x21\\xad\\x30\\x2d\\x22\\x3c\\x39\\x25\\x29\\x2c\\xb7\\x3a\\x5b\\x9d\\x5c\\x3a\\x52\\x5f\\x36\\xd2\\xe4\\x56\\x2c\\x10\\xcf\\x9b\\xb9\\x8d\\xf9\\x29\\xde\\xb9\\x27\\x86\\xfc\\xb1\\xbe\\xbd\\xeb\\x9c\\xa1\\x21\\xa3\\x0c\\x47\\xb0\\xb1\\xbc\\xdb\\x8e\\x3f\\xae\\xdb\\xdd\\xe7\\xd0\\x97\\x74\\xda\\xfd\\x0c\\xa1\\x76\\xdc\\x86\\x6b\\xff\\x49\\x9e\\x61\\xdf\\x44\\x89\\x28\\x1b\\xce\\xfb\\x2e\\x6b\\x5b\\xd6\\x78\\x43\\xd3\\x80\\xe0\\x54\\x40\\x32\\x8a\\xb9\\xd3\\x2d\\xff\\x22\\x48\\xb0\\x89\\xf4\\x4b\\x88\\xf8\\x25\\x00\\xb7\\x4b\\x17\\x14\\x5a\\x19\\xcb\\x0d\\x86\\x04\\x29\\x37\\x8b\\x7c\\xa1\\x72\\x2c\\x93\\x89\\xf0\\x44\\x71\\xf7\\x0c\\xbf\\xf9\\x9d\\x95\\x37\\xde\\x19\\x79\\xdb\\x75\\x6a\\x6f\\xbb\\x4e\\xe1\\x3d\\x32\\x6f\\x76\\x27\\x55\\xb9\\xe9\\x1e\\x1c\\x0a\\x72\\x79\\xc0\\xc7\\x90\\xe8\\xbb\\x9c\\xd5\\xb2\\xc6\\x9b\\x17\\x28\\x81\\x42\\x42\\x82\\x05\\x3e\\xb7\\xac\\xd7\\xbe\\xaa\\x58\\x80\\x6b\\x68\\xa5\\x8e\\x7f\\x43\\xa1\\x1e\\xfa\\xcf\\xab\\x4c\\x49\\xd2\\x6b\\x93\\xb2\\x53\\xb2\\xe9\\x2e\\x5b\\x90\\x1e\\x1d\\x26\\x4f\\xb2\\x68\\xb5\\x1c\\x67\\xb2\\x32\\x4e\\x41\\x09\\x72\\xbb\\xd4\\x9a\\x20\\xeb\\x05\\xab\\x76\\xb9\\x15\\x46\\xa3\\x20\\xc7\\x2b\\x62\\x53\\x30\\x79\\x86\\x77\\x15\\x6e\\x2f\\x9d\\x7c\\x68\\x63\\x4e\\xce\\xd0\\x83\\x93\\xa5\\x3b\\x0b\\xe1\\x9b\\x7c\\x2d\\xec\\xe6\\x0f\\xc2\\x1b\\xfe\\x0a\\x5d\\x95\\x4e\\x57\\xad\\xeb\\x9a\\xaa\\x4c\\x4a\\xae\\x9c\\xe6\\x42\\x01\\xfa\\x1f\\x7c\\x77\\x0c\\x16\\xc6\\xde\\x7d\\xb0\\x1f\\x40\\x2e\\x1b\\xf1\\xff\\x64\\xc4\\xff\\xc5\\x28\\xc0\\x0c\\xf9\\x94\\xc1\\xd0\\xb8\\xfb\\xf1\\x6e\\xfe\\x68\\xf7\\x13\\x7b\\x1a\\x69\\x84\\x62\\xe2\\xb5\\x2b\\xe4\\x75\\xd2\\x84\\xf2\\x50\\x3d\\xea\\x46\\x95\\xde\\xb2\\x50\\x90\\xcb\\x32\\xd3\\xb5\\x0c\\x83\\x71\\x7d\\x28\\xc8\\x11\\x66\\xe4\\x98\\xca\\x01\\x41\\x04\\x39\\x30\\x0c\\xe9\\x63\\x81\\xd2\\xfd\\x35\\xf8\\xda\\x5b\\x7d\\xdd\\x0d\\xdd\\x66\\xb3\\xd1\\x6c\\x50\\x65\\xe8\\xc3\\x56\\x50\\xe3\\x06\\xe6\\xfe\\x6a\\x0d\\x45\\xb7\\xac\\xd7\\xdc\\x84\\x0f\\x57\\xeb\\x74\\x49\\x1f\\x13\\x8d\\xad\\x7b\\x7b\\xf3\\xba\\xaa\\x9c\\xb1\\xca\\xbc\\xf2\\xa6\\x9c\\xf6\\x6d\\x75\\xe9\\x98\\x0f\\x51\\xdb\\xdb\\x8a\\x8c\\x5e\\x67\\x56\\x8c\\x59\\x95\\x57\\xda\\x98\\x3d\\x7c\\xdc\\x14\\xeb\\xac\\xea\\x74\\xf4\\xed\\x6b\\x35\\x2e\\xc6\\xda\\x3b\\xbc\\xa5\\x6d\\x76\\x95\\xca\\xde\\x51\\x5a\\xda\\x6e\\x53\\xe1\\x1c\\x38\\x08\\x31\\x59\\x75\\xae\\x82\\x06\\x6b\\x2c\\x9e\\xef\\xfa\\xc2\\x91\\xf6\\x24\\x47\\x75\\x66\\x66\\xb5\\x23\\xa9\\x6a\\xf6\\x6c\\xcb\\xe3\\x7d\\x45\\x7b\\x46\\xcb\\xa3\\xe3\\xb5\\xd1\\x6d\\xaa\\x8c\\x94\\x18\\x18\\x6b\\x33\\x57\\xd9\\x13\\xdb\\x8e\\x3c\\xdb\\x5d\\x7a\\x70\\x73\\x65\\xd5\\xc4\\xc1\\xd2\\x7f\\x2a\\x39\\xb8\\xb9\\xaa\\x6a\\xf3\\xc1\\x12\\xdc\\x9e\\x3d\\xd2\\x59\\x50\\x39\\xb1\\xaf\\x88\\xda\\x26\\x7f\\x8f\\x10\\xe3\\xe7\\x52\\x91\\x02\\x99\\xbc\\xfa\\x10\\x00\\x14\\x0a\\x18\\x70\\xbd\\x70\\x0d\\x23\\x18\\x5a\\xb6\\xd9\\x2a\\x90\\xc2\\x60\\xa0\\x06\\xd1\\x00\\x0a\\x57\\x66\\x34\\xea\\x38\\x4e\\xa6\\x80\\xdf\\x83\\x7b\\xf8\\x64\\xb7\\xb1\\xd6\\x10\\x95\\xe8\\x49\\x3b\\x70\\x0f\\x26\\x0f\\xaf\\xbd\\x6b\\x43\\x5e\\x68\\xc8\\x80\\x4c\\x06\\xe7\\x0e\\x5f\\xdd\\x20\\xec\\xc9\\x8f\\xf2\\x3e\\x52\\xcf\\xa5\\x22\\x0b\\x2a\\xf5\\x16\\x69\\x81\\x63\\xd3\\x81\\x70\\xa1\\x80\\x51\\x08\\x00\\x26\\xd4\\xda\\x44\\x58\\x6e\\x48\\x38\\xef\\x48\\x8f\\x2c\\x00\\x65\\x0f\\xec\\x47\\x2a\\xbd\\x41\\xa1\\x32\\x1a\\x24\\xef\\x0c\\x23\\xf4\\x79\\x60\\xfb\\x71\\x0b\\xa2\\x5a\\x30\\xca\\x89\\xee\\x43\\x1a\\x2d\\xf3\\x32\\xff\\x01\\x80\\x6d\\xed\\xfe\\xd6\\xc6\\x9a\\x88\\x08\\xbd\\x51\\x17\\xe1\\xec\\x2c\\x4a\\x83\\xf7\\xde\\x87\\x82\\x91\\x93\\x5d\\x59\\x1d\\x96\\x68\\x6f\\x73\\xe9\\x68\\x6d\\x06\\x00\\xa4\\x33\\x3f\\xbd\\xfa\\xeb\\xee\\x63\\xeb\\x6d\\x49\\x43\\x5c\\x88\\x8c\\xd1\\x57\\x0d\\x96\\x90\\xd4\\x0d\\x7b\\xbb\\x8f\\xf4\\x59\\xa3\\xc2\\x87\\xd4\\x5a\\x6f\\x7f\\xc9\\x5e\\x84\\xd1\\xe2\\xb5\\x2b\\xe4\\xdb\\x1c\\x42\\x66\\x54\\x83\\x5a\\x5f\\x32\\x26\\x62\\x12\\x3c\\xe6\\x12\\x44\\x21\\xfb\\x66\\x64\\x2a\\xa2\\x7b\\x06\\xcf\\xdc\\xf4\\x62\\xcf\\xcb\\xd9\\x39\\xf1\\xd9\\x46\\x7a\\xe0\\xad\\x62\\x93\\x10\\x66\\x9b\\xdb\\x21\\x12\\x4b\\xde\\x48\\x7f\\xe0\\x93\\xcc\\x4b\\xdd\\x77\\xae\\x24\\x96\\x28\\x99\\xe8\\xad\\x4f\\xc9\\x74\\x6b\\x23\\xf1\\x16\\x8d\\xa3\\xd9\\x95\\x61\\xa4\\x1c\\x13\\xf9\\xed\\x7f\\x0f\\xc7\\x44\\x72\\x5e\\x9d\\x45\\x9e\\x5d\\xd9\\x65\\x2f\\x9b\\xea\\x29\\x89\\xea\\x7c\\x73\\xfd\\xad\\xe8\\x26\\x10\\x46\\xdb\\xae\\x5d\\x21\\xcf\\x91\\x8b\\x28\\x15\\x39\\x05\\xad\\x4f\\x21\\xc7\\x8c\\x64\\x5b\\x9b\\x09\\xbc\\x66\\xcd\\x4a\\x83\\x89\\xd9\\x6c\\xd1\\xe8\\xa9\\xd0\\x2b\\x0e\\x97\\xf0\\x96\\x12\\xca\\xef\\x33\\x23\\x03\\xb6\\x51\\xa5\\x6a\\xf4\\xc9\\x62\\x4b\\x91\\x51\\x01\\x5b\\x61\\xe3\\x68\\x56\\xf6\\xe7\\xc7\\x08\\xd4\\x94\\x10\\x5d\\x41\\x8b\\x7d\\xcf\\xc3\\x09\\x55\\xcf\\xac\\xbd\\x45\\xb0\\x00\\xe5\\x01\\x60\\xeb\\xd8\\x25\\x64\\x40\\xad\\x2f\\x85\\x03\\x0d\\x14\\x14\\xf7\\x61\\x0d\\x0d\\x9d\\x61\\x09\\xa6\\xa2\\xd2\\x32\\x77\\x4b\\xa2\\x70\\x05\\xa3\\x99\\x1b\\xaf\\x88\\x71\\x16\\x06\\x64\\x30\\xa8\\x32\\xd5\\x54\\x8a\\x50\\x05\\xc6\\xf1\\xa6\\x04\\x02\\x8e\\x72\\x63\\x34\\x4c\\xa6\\x56\\x4e\\x34\\xdc\\x82\\x4a\\xe0\\x2d\\x59\\x56\\xf5\\xba\\x82\\x96\\x7d\\xeb\\x0a\\x64\\xfe\\xea\\xcf\\x60\\x15\\x40\\x22\\x4e\\x98\\x8d\\x27\\x0f\\xa1\\x54\\xf4\\x98\\x37\\x24\\x41\\xc3\\x31\\x44\\x7c\\x15\\xd1\\xd3\\x04\\x2c\\x66\\x67\\x88\\x18\\xa8\\x10\\x88\\x9f\\x59\\x56\\x17\\x92\\x56\\x5d\\x97\\xac\\x5c\\x2b\\x0e\\x99\\xd8\\x5b\\xd6\\x71\\xeb\\xe2\\x01\\x49\\x22\\x15\\xa5\\x2a\\x75\\x2a\\x5d\\x2c\\x95\\x24\\x84\\x5d\\x23\\x18\\x0c\\xba\\x02\\x4f\\x2c\\xf4\\x17\\x1b\\x8f\\xf7\\xde\\x39\\xc5\\x5d\\x0f\\x2b\\xce\\x2a\\xd2\\x47\\x03\\x79\\xe8\\xfc\\xd3\\x91\\x4b\\xcf\\xdf\\x80\\x30\\xbe\\x53\\xa6\\x2f\\x6c\\x73\\x89\\x31\\x93\\xbc\\x8f\\x49\\xa6\\xfe\\x36\\xb3\\xd7\\x18\\x01\\x98\\x11\\xb5\\x88\\x9b\\xc6\\x85\\x09\\xfa\\x81\\x14\\x46\\x7f\\x83\\x7e\\xa0\\x85\\x10\\x1c\\xbb\\x52\\xfa\\x77\\x49\\xc1\\x60\\x1b\\x03\\x21\\x60\\x82\\x7c\\xbf\\x22\\x08\\x0c\\x61\\xf4\\xf2\\xb5\\x2b\\xa4\\x85\\x34\\xa3\\x14\\x94\\x29\\xc5\\x9d\\x62\\x86\\x92\\xdf\\xb0\\x04\\xb3\\x83\\xc1\\x60\\xd3\\x1a\\x5f\\x30\\x04\\xb5\\x0a\\x1a\\xd2\\x52\\x01\\x19\\xf4\\xa9\\x99\\x69\\x99\\x52\\xdc\\x69\\x0a\\xa4\\xc8\\x29\\x4a\\x3f\\x05\\x2f\\xdb\\x7e\\x9c\\x5a\\xea\\xc9\\xe1\\x64\\x26\\x97\\x8b\\x92\\x35\\x6a\\x55\\x29\\x0c\\x1e\\xde\\xfa\\xe2\\xbe\\x6a\\xa8\\xdd\\x7b\\x69\\x74\\xe2\\xa9\\xe9\\x22\\x26\\x1d\\x1c\\xfd\\xc7\\xd7\\x4c\\x5c\\x2a\\x71\\x94\\x7f\\xf3\\x9e\\xba\\xc5\\xde\\x82\\x30\\x7f\\x1f\\x64\\x75\\x2c\\x92\\xa6\\xce\\xbb\\xbf\\xb6\\xd9\\xbd\\xe5\\xad\\x33\\x5d\\xd5\\x3b\\xbf\\x30\\x34\\x92\\xdc\\xf1\\xc0\\x42\\x4d\\x61\\x49\\x7b\\x99\\x6f\\x09\\x7b\\x36\\x1c\\xac\\x4b\\xae\\x5c\\xec\\x75\\x22\\x00\\x2d\\xf9\\x77\\xa6\\x81\\xfd\\x03\\x92\\xa3\\x14\\x6f\\x22\\xc7\\x60\\x89\\x34\\xa0\\x66\\x45\\x08\\x7f\\x4c\\x2c\\xf5\\xb4\\xa9\\x74\\x26\\x99\\xce\\xe9\\x76\\x30\\x0d\\x5b\\xbf\\xf0\\xcc\\xe6\\x3f\\x36\\x90\\xab\\x8a\\x4b\\x97\\x62\\xff\\x03\\x01\\x34\\x91\\x5f\\x32\\xbb\\xd8\\xdf\\x21\\x39\\x4a\\xf6\\x26\\x70\\x14\\x27\\x2b\\x07\\x54\\xbb\\xc2\\x53\\x2a\\x71\\x74\\xbb\\x1d\\x2a\\x99\\xce\\xe4\\x74\\xe0\\xe1\\x2f\\x6d\\xba\\xd2\\x75\\x65\\x82\\xb5\\xbe\\x1a\\xf5\\xc9\\xff\\x44\\x0b\\x67\\x52\\x15\\x79\\x93\\x39\\xca\\x7e\\x0d\\x29\\x28\\x86\\x43\\x44\\x8b\\x89\\x14\\x1d\\x20\\x9d\\x44\\xe9\\xb1\\x7a\\x56\\x74\\xa3\\x88\\xdb\\x86\\x34\\x81\\x8e\\x62\\x4b\\xc3\\x58\\x69\\xe9\\x78\\xa3\\x05\\x8f\\x30\\x83\\x6b\\x3a\\x07\\x09\\xfb\\xb5\\xc2\\xfe\\x0a\\xbd\\xbe\\xa2\\xbf\\xb0\\xa5\\x6f\\x6d\\x33\\x02\\x1c\\xc5\\x46\\xe3\\xd7\\xd9\\x17\\x25\\x6e\\x68\\x49\\xfe\\x2f\\x0a\\x70\\x43\\xaf\\x72\\x21\\x46\\x65\\x9b\\x33\\xac\\xd6\\x0c\\x73\\x36\\xbb\\x21\\xdd\\x96\\xab\\xd3\\xe5\\xe4\\x20\\x0c\\x97\\xc8\\x29\\x26\\x99\\xe5\\x29\\xce\\xa1\\xc4\\x77\\x39\\x95\\x06\\x64\\xac\\x76\\xcc\\x95\\x30\\xd4\\x6a\\x2c\\x72\\x37\\x0c\\x51\\xf8\\x49\\xb7\\x34\\xeb\\x30\\x34\\xf7\\xbc\\x74\\xdb\\x30\\x88\\x4b\\xc9\\xb6\\x0a\\x93\\xb1\\xc2\\x96\\x9c\\x6c\\xab\\x30\\x9a\\x2a\\x6c\\xc9\\x0d\\x8a\\x64\\x93\\x46\\x63\\x4a\\x8a\\x8e\\x4e\\x32\\x69\\x34\\x19\\xc9\\xd1\\x6c\\xa5\\xb1\\xd2\\x91\\x9c\\xec\\xa8\\x34\\x9a\\xca\\x6d\\x49\\x49\\xb6\\x72\\x93\\x26\\x23\\x25\\x26\\x26\\x25\\x43\\xa3\\xc9\\x4c\\x8d\\x89\\x49\\xcd\\xa4\\x67\\xfc\\xe3\\xfc\\x10\\xfe\\x77\\x64\\x40\\xf1\\x42\\x7f\\x86\\xd3\\x31\\x89\\x0f\\xc3\\xd4\\x07\\x49\\x67\\x61\\x19\\x34\\x18\\x4c\\xc2\\xeb\\x6b\\x23\\x19\\x95\\x5a\\xad\\x51\\x07\\x43\\x17\\xa8\\x47\\x0a\\xbf\\x9b\\x5e\\x91\\xa7\\x85\\x6c\\x4b\\x5a\\xbe\\x4a\\x93\\xec\\x73\\x18\\x4a\\x73\\x12\\x4c\\xa5\\x6d\\x16\\x95\\xdd\\x53\\x6e\\xc8\\xc8\\x06\\x88\\x8d\\xec\\x50\\xc6\\xab\\xb3\\x4a\\xcc\\x99\\x2d\\xb5\\x25\\xf1\\xa2\\x0e\\x76\\x86\\xfc\\x95\\x49\\x67\\x7f\\x8a\\x92\\x91\\xd5\\x6b\\x41\\x00\\x38\\x92\\xda\\xdb\\x93\\x01\\xd7\\x46\\x08\\x53\\x8a\\x11\\x04\\xb6\\xfe\\x00\\x38\\xa4\\x12\\x1a\\x74\\x26\\xdd\\x4a\\x0c\\xb2\\x20\\x59\\x48\\x08\\x24\\x91\\x18\\x2b\\x1d\\x27\\xda\\x2a\\x2d\\x39\\x15\\x45\\x25\\x66\\x47\\x3e\\xd3\\x0c\\x89\\xb6\\x2a\\x4b\\x66\\x45\\x69\\x59\\x46\\x7c\\x46\\x52\\x14\\x66\\xff\\xc5\\x5c\\x9f\\xaf\\x4d\\xcf\\x4c\\x87\\x4a\\x7b\\x44\\x46\\x7d\\xbe\\x56\\x67\\x4e\\x8f\\xd5\\x66\\xc5\\x53\\x3f\\xaa\\x8a\\xfc\\x94\\x79\\x99\\xfd\\x1b\\xc5\\x38\\xe6\\xf9\\x2e\\x67\\xb4\\xac\\xf1\\x46\\x04\\x13\\x74\\xa0\\x12\\x61\\x4f\\x57\\x62\\x10\\x26\\x43\\x67\\x30\\x9d\\x07\\x82\\xc6\\x9e\\x97\\x82\\x3c\\x1b\\x0e\\x4a\\x5a\\xa1\\x63\\x92\\xef\\xe7\\xdf\\xdf\\x6e\\x38\\xf5\\xb7\\x49\\xf6\\x6f\\xfc\\xaf\\x21\\x95\\xff\\x35\\xad\\xff\\x3b\\xfc\\x83\\xf8\\x97\\xd7\\x9e\\x44\\x4a\\x94\\xba\\x82\\xb5\\xe3\\x86\\x91\\xd7\\x1b\\xc5\\x71\\x67\\xaf\\x1f\\x77\\x71\\xf6\\xe6\\x19\\x75\\x46\\x0e\\xbe\\xa3\\x31\\xda\\x93\\x12\\xed\\x06\\xb5\\xda\\x60\\x4f\\x4c\\x74\\x18\\x35\\xb5\\x24\\x3d\\x39\\xc1\\x08\\xa6\\x84\\x64\\xdd\\x6f\\x92\\x6c\\x7a\\x95\\x4a\\x6f\\x4b\\x4a\\xca\\x4d\\x8f\\x55\\xea\\x72\\x92\\x13\\xf4\\xfa\\x84\\x24\\x03\\x18\\x11\\x2c\\xbd\\x42\\xbe\\xe3\\xff\\x21\\x17\\x8a\\x18\\x64\\x14\\x4d\\x7f\\x61\\x2b\\x56\\x6d\\xa2\\x37\\x44\\x3c\\x95\\x11\\x1a\\xef\\xf9\\xca\\x32\\x0d\\x87\\xff\\x87\\x43\\xaf\\x1e\\x20\\xdf\\x81\\x12\\x3a\\x66\\xfe\\x66\\xf2\\x5d\\xbe\\x97\\x0b\\x5b\\x59\\xc7\\xf2\\xb2\\x15\\xea\\x40\\x80\\x66\\x10\\xc0\\x72\\x1d\\x0e\\x46\\xe7\\xff\\xf5\\xf6\\x2f\\xf7\\x70\\x61\\xfc\\x37\\xa8\\xef\\x77\\x69\\x9a\\xfc\\xf5\\x1a\\x62\\x7f\\x8a\\x64\\xe8\\xf1\\xab\\x62\\x7e\\x28\\xf0\\xb7\\x91\\xf7\\xf8\\xbd\\x5c\\x0f\\xd2\\x20\\x8b\\x37\\x43\\x0d\\x18\\xd3\\x50\\x0a\\x8c\\xf0\\xec\\xf5\\x21\\x01\\x2b\\x1d\\xef\\x60\\x92\\xe0\\x2a\\xee\\x40\\xfe\\x0d\\xff\\x1c\\xa4\\x16\\xe5\\x24\\x9b\\x8b\\xaa\\x53\\x64\\xae\\x4d\\xed\\x8e\\x54\\x7b\\x69\\x1a\\x79\\x6f\\x37\\x13\\xa2\\xd4\\x25\\xa5\\x18\\x54\\xb2\\x46\\x50\\x9a\\xcb\\x72\\x32\\xf2\\x0d\\x4a\\x52\\x82\\x10\\xbe\\x3a\\x47\\x3e\\xe4\\xa3\\xd8\\x3f\\xd2\\x71\\xd7\\x78\\x63\\x57\\xa5\\x6a\\x59\\xa6\\x6e\\x11\\x07\\xd7\\x9f\\xb4\\x9d\\x7f\\xef\\x02\\x86\\x2d\\x9f\\x9e\\x22\\x1f\\x42\\x28\\xff\\xdf\\x94\\x9b\\x04\\x96\\xfc\\xfc\\x77\\xfc\\x5f\\xbc\\x36\\x7d\\x2b\\xdc\\x01\\x6b\\x5c\\xde\\x34\\x96\\x78\\xc8\\x91\\x38\\x54\\x7f\\xa3\\xcb\\xcd\\xd5\\x05\\x70\\x07\\xb8\\x9c\\x95\\x33\\x09\\x5c\\x2b\\x62\\x90\\x42\\x38\\x0f\\xa5\\x8e\\x54\\x44\\x63\\x99\\x84\\x1a\\xb9\\xef\\xe0\\x5d\\x75\\x5c\\x2b\\xff\\x32\\x62\\xa0\\x89\\x4d\\x66\\xde\\xe6\\x1e\\x90\\xec\\xe9\\x5a\\x2f\\xf5\\x8c\\x32\\x48\\xe4\\xba\\xc3\\x7d\\xc2\\x41\\x9b\\xcb\\x34\\x48\\x46\\x74\\x59\\x82\\x05\\x1c\\x32\\x1d\\xfb\\x59\\x46\\xac\\x3d\\x27\\x5b\\x06\\xf8\\xbf\\x64\\x51\\xff\\xb0\\x31\\x1b\\xbe\\x17\\xf8\\xc4\\x3d\\xb0\\x94\\x9b\\x6e\\xb3\\xa5\\x6b\\x6d\\x36\\xad\\xf4\\x5f\\x74\\xed\\x1a\\xb6\\xe2\\x9d\\xf8\\x67\\x4c\\x1a\\xe6\\xd0\\x7c\\x9c\\xd0\\xcc\\xaf\\x22\\x44\\x32\\x82\\x3c\\x70\\x22\\x40\\x1e\\x67\\xf8\\x10\\x80\\x59\\x64\\x91\\x91\\x69\\x24\\x66\\x2b\\x92\\xe1\\x8f\\x5c\\x64\\x36\\xb1\\xf5\\x9f\\xbe\\x44\\x79\\x84\\x30\\x8d\\xd7\\xb9\\x48\\x6d\\x97\\x1c\\x32\\x7a\\x75\\x1c\\x60\\x10\\x06\\x1e\\x20\\x83\\x42\\xb9\\x85\\xf3\\xd8\\x8c\\x1a\\x10\\x92\\xd0\\xc5\\x44\\xa6\\xb2\\x00\\x68\\x85\\xff\\xe1\\x17\\xe1\\xbf\\xaf\\x9e\\xc1\\x21\\xfc\\xbd\\x8c\\x83\\xdf\\xca\\x5e\\xfe\\xb4\\x85\\xbd\\xfc\\xe9\\x8b\\xe4\\x4b\\x22\\x4f\\x67\\x80\\xa7\\x8d\\xa1\\x0c\\x63\\x66\\xaf\\x51\\x98\\x46\\x2c\\x88\\x5c\\x8c\\x7d\\x88\\x61\\x72\\x83\\xcc\\xdd\\x36\\xdc\\x90\\x9d\\x9d\\x6d\\x92\\xfa\\x49\\xeb\\xd4\\x6a\\x3e\\x87\\xb7\\x8d\\x69\\xe3\\xe3\\xe0\\x23\\xff\\x3f\\x4e\\xde\\xf6\\xe4\\xf0\\x3d\\xff\\x10\\x7d\\x1b\\x02\\xd4\\x44\\xf1\\x0f\\x12\\x37\\x14\\x12\\xba\\x49\\x98\\xb2\\x66\\x91\\xb5\\x5b\\x26\\xb2\\x76\\x3b\\x40\\x87\\x37\\xf3\\xeb\\x76\\xc2\\xef\\xb6\\xc2\\x47\\x3b\\x59\\xfc\\x29\\x2f\\xf4\\x8e\\xd8\\x2f\\x17\\x24\\x0e\\x49\\x61\\xbe\\x8b\\x1c\\x95\\x22\\xff\\xe0\\x20\\x62\\x59\\x6a\\x87\\xcb\\x08\\xda\\xfc\\xcc\\x10\\x60\\x36\\x94\\x25\\x58\\xdc\\x92\\xc7\\x9e\\xd1\\xaa\\xb4\\x17\\x98\\x73\\x4b\\x9b\\x06\\xf0\\x77\\xfc\\x79\\x9d\\xcc\\xd4\\xd2\\xe9\\xe1\\x61\\x26\\x7a\\x84\\xe1\\x28\\xc6\\x0d\\x5d\\x42\\x88\\xa4\\x04\\x78\\xb7\\x10\\x00\\xb5\\x15\\xac\\x6c\\x64\\x34\\x91\\xc5\\x05\\x98\\x17\\xb5\\x24\\x65\\xde\\xbf\\x6b\\x9e\\x99\\x0a\\x4c\\x08\\x40\\xdb\\x11\\x22\\x63\\x94\\xab\\x30\\xc7\\x9b\\x25\\x03\\x06\\x87\\x73\\xc2\\xc0\\xb3\\x00\\x88\\xa9\\x0f\\x70\\x5d\\xae\\x6e\\x63\\xac\\x42\\x21\\xd4\\x09\\xa0\\x55\\x69\\x9d\\x00\\x4e\\xad\\x4a\\x0b\\xf8\\x13\\x5e\\xcd\\xf4\\x2c\\x29\\x30\\xf1\\x2f\\x31\\xaf\\x2c\\xfd\\x16\\xfe\\x0f\\xfe\\x9d\\x7f\\xef\\xc8\\x3a\\x7c\\x3f\\x5e\\xbb\\x6e\\xc4\\xff\\x75\\xda\\x17\\xcd\\x08\\x91\\x3d\\x94\\xdf\\x4b\\x8f\\x72\\x50\\xae\\x37\\x9b\\x00\\x0a\\x01\\x4e\\x86\\xb8\\x21\\x39\\xc8\\x18\\x00\\x2c\\xa3\\x1c\\xda\\x74\\x2a\\x9a\\x71\\x43\\x96\\x25\\x4e\\xa1\\x52\\xc4\\x29\\x14\\x71\\xd1\\xa1\\xb2\\x64\\x0b\\xac\\xcc\\xf9\\x23\\x85\\x7a\\xd0\\x00\\x46\\x45\\x09\\x63\\x88\\x4d\\xc1\\x1a\\x45\\x24\\x83\\x1f\\x1b\\x7d\\x7e\\x5f\\x4d\\xcd\\xbe\\xe7\\x47\\xe7\\xc7\\x9e\\xdf\\x53\\x53\\xb3\\xe7\\xf9\\xb1\\x79\\x18\\xb1\\xaf\\x3b\\xdc\\xd6\\x76\\x78\\x9d\\x7d\\xe9\\x4d\\xfb\\xda\\x43\\xed\\xed\\x87\\xd6\\xda\\xc9\\xbf\\xb3\\xed\\x77\\xbe\\x31\\xb9\\xf5\\x8d\\x93\\x1d\\xec\\xb7\\xbe\\xc5\\xb6\\x9f\\x78\\x63\\xeb\\xe4\\x1b\\x27\\xdb\\xd9\\x77\\xfc\\x59\\x3d\\xe7\\xa7\\xca\\xd9\\xa5\\x8b\\xa4\\x72\\xe6\\xc2\\x9a\\xde\\xf3\\xd3\\x15\\x84\\xe9\\x60\\x2b\\xa6\\xcf\\x23\\x40\\x3b\\x11\\x22\\xfd\\xec\\x65\\x94\\x8a\\xd2\\xbc\\xc9\\xc9\\xd1\\x11\\x88\\xd0\\x00\\x34\\x8c\\x11\\x0a\\xac\\x3e\\x8d\\x46\\xa3\\xa6\\x9d\\x53\\xc2\\x38\\x95\\x0e\\x65\\x24\\x23\\x53\\xe8\\x14\\x56\\xc6\\xa4\\x70\\x28\\x69\\x0b\\x1d\\xf8\\x19\\xdf\\x7c\\x5b\\x36\\xcc\\x03\\x94\\xcc\\x3c\\x3e\\xbc\\x30\\xfc\\xd8\\x74\\x31\\x2c\\x40\\x56\\xdb\\x5c\\xfd\\x02\\xfc\\x5b\\x48\\xd5\\x96\\x33\\xdd\\xd8\\xe6\\xff\\xfe\\xd4\\xab\\xc7\\xda\\x42\\xf8\\x93\\x30\\x1b\\xd2\\x7e\\xec\\x95\\x29\\xe1\\x97\\xee\\x7b\\xb6\\x54\\x85\\x30\\x3f\\xa2\\x63\\xbe\\x19\\x21\\xb2\\x81\\xf2\\xc7\\x66\\x7a\\x4d\\x6a\\x44\\xf7\\xee\\x00\\x9a\\x2c\\x97\\x7a\\x53\\xa0\\x87\\x05\\x71\\xb0\\x12\\x32\\x15\\x89\\x99\\xc2\\x84\\x32\\x94\\x30\\xcb\\x1a\\x1c\\x85\\x76\\xab\\xb4\\x4e\\xad\\x14\\x34\\x13\\x04\\x2a\\xc9\\xb4\\x2a\\x2d\\x7e\\xa9\\x71\\xaa\\x4e\\x9f\\xdb\\x7f\\x6a\\xa0\\xff\\xe4\\xfa\\x5c\\x83\\x6f\\xa6\\x89\\x6f\\x07\\x5b\\xfd\\x94\\xcf\\x54\\xb6\\xe7\\xd5\\x1d\\x3b\\x5e\\xdb\\x5b\\x66\\xf4\\x6d\\xad\\x83\\x3c\\xbe\\xe3\\x48\\xda\\xb6\\x87\\xde\\xda\\x3a\\xbc\\xe9\\x6b\\x77\\x77\\x76\\xdd\\xfd\\xe6\\xa6\\xe1\\xa9\\xb7\\x1e\\x9a\\x4d\\x3b\\x32\\x9c\\x7b\\xea\\x8b\\x6f\\xf4\\x0f\\xed\\xfa\\xf0\\xf9\\xf1\\xf1\\xe7\\x3f\\xdc\\x35\\xd4\\xff\\xc6\\x17\\x4f\\xe5\\x0e\\x23\\x8c\\x8e\\x5c\\xfb\\x98\\x1c\\x95\\xf8\\x4a\\x9e\\xf3\\x46\\xd8\\x6d\\x86\\x18\\x82\\xb8\\x50\\x1a\\xe4\\x26\\x6a\\x45\\xf1\\x88\\xe3\\x98\\x3e\\x19\\xc1\\x0c\\xe3\\xf0\\xb1\\xc2\\xd9\\xd0\\x87\\x01\\xc0\\x16\\x34\\xb6\\x26\\x0b\\x62\\xba\\xc5\\x47\\x6f\\x43\\x37\\xbb\\x29\\xf6\\xd6\\xb5\\x7c\\x4e\\x05\\x82\\x66\\xa4\\x40\\x28\\xdf\\x95\\x6d\\x41\\x46\\x64\\xb4\\x18\\x8d\\x2a\\xb9\\x30\\x9a\\x0a\\x29\\xa0\\x39\\x10\\x3d\\x2a\\x49\\x62\\xce\\xbc\\x12\\x42\\x1d\\x92\\x70\\x3d\\x33\\x09\\xf3\\x93\\x50\\xb5\\x29\\x25\\x3a\\x39\\x42\\x11\\x97\\x93\\x60\\xf1\\x5a\\x53\\x64\\xf9\\x5f\\xd8\\x3a\\x76\\xdf\\x50\\xae\\xca\\x52\\xd6\\x3b\\x53\\x33\\xf5\\x8c\\x2b\\xcd\\xbf\\x98\\x5a\\xb3\\xad\\xd3\\xbd\\xbe\\xb1\\x28\\x36\\xd6\\xd3\\xb8\\xde\\xdd\\x35\\x57\\x93\\x4a\\x3c\\x4b\\xdf\\x4f\\x2f\\xb3\\xa5\\xb0\\xcc\\xba\\x88\\xd0\\x84\\x9c\\x0a\\x73\\xe7\\x40\\xcf\\xbd\\x5f\\x1b\\x55\\xd5\\x9d\\xdc\\x3b\\xd1\\x94\\x35\\xbc\\xe6\\x0b\\xfe\\x6f\\x36\\xdf\\xbf\\xa3\\x21\\xad\\xa0\\xd1\\x0a\\xbf\\xca\\x69\\x2f\\x36\\x74\\x1c\\x79\\xa6\\x9d\\xee\\xeb\\x5f\\xe3\\xa7\\x49\\x0b\\xfb\\x36\\x4a\\x43\\x5e\\xe4\\xf3\\xd6\\x86\\x02\\xc7\\xe4\\xc4\\x63\\x96\\xc3\\xf5\\x72\\x60\\x10\\xc7\\x32\\xdc\\x10\\xd5\\xff\\x65\\x80\\x10\\xdd\\x8a\\xa9\\x94\\x69\\x13\\x56\\x5a\\x36\\xa6\\x44\\x3b\\xa5\\xc5\\x4e\\x47\\x66\\x86\\xd6\\x9b\\xee\\x4d\\x4c\\x50\\x29\\x51\\x1a\\xa4\\x85\\xc8\\x44\\x95\\x47\\x75\\x5d\\xf4\\x87\\x42\\xa7\\x28\\x61\\x94\\x2e\\x97\\x29\\x30\\x9d\\x14\\x2b\\x13\\x6c\\x38\\xf1\\x40\\xef\\xb9\\x2d\\xc5\\xc9\\xce\\x06\\x6b\\xd9\\x44\\x43\\x66\\xd5\\x8e\\x27\\xd7\\xe7\\xf4\\xf7\\xb4\\xa4\\x2d\\x42\\xe9\\xd6\\xf3\\x9d\\x27\\x1e\\x00\\x4b\\xc3\\x84\\xb7\\x7c\\x73\\x53\\x96\\xa6\\xa6\\x7b\\xc8\\x59\\xbf\\xbb\\xd7\\x6e\\x5b\\xb3\\xbd\\xf6\\x2e\\xf6\\xed\\xfc\\xe1\\x93\\x9d\\xce\\xf5\\xcd\\xa5\\x6a\\x65\\xe5\\xc0\\x8e\\xba\\xe1\\x87\\xb7\\x14\\x44\\xa7\\xd9\\xb4\\x3c\\x61\\x5f\\x6c\\x3b\\x37\\x53\\xe9\\x9f\\xc5\\x27\\x0f\\x16\\x0e\\xfb\\x32\\x1d\\x9d\\xd3\\xa5\\x4b\\xdf\\x36\\x16\\x99\\xd5\\x59\\x6d\\x0b\\xbe\\xda\\xb9\\x8e\\x1c\\x18\\x11\\xe5\\xdb\\x5e\\x7e\\x90\\x1c\\x25\\x1e\\x14\\x2a\\xe8\\x39\\x21\\x2c\\x66\\x02\\x24\\x76\\x16\\x61\\x75\\x66\\x43\\x43\\x4c\\x8c\\x78\\x36\\x3a\\x40\\xa1\\x53\\x80\\x03\\x34\\x6e\\x12\\xb2\\x87\\x37\\xed\\xe0\\x8d\\x7b\\x60\\xb3\\x35\\x87\\x78\\xae\\xfe\\x9a\\xaf\\x86\\x57\\x49\\xda\\xd2\\x77\\x4e\\x9d\\x12\\x71\\x58\\x7b\\xae\\x5d\\x21\\x83\\x5c\\x12\\xb2\\xa1\\x1a\\x94\\xe7\\xb5\\xc9\\x01\\x50\\x56\\x08\\x26\\x80\\xeb\\x11\\x01\\x06\\x08\\x25\\x92\\x05\\x82\\x60\\x28\\x60\\x54\\xb1\\xe1\\x86\\x8a\\xf2\\x7c\\x57\\x7a\\x9a\\x41\\xcf\\x0a\\x82\\x84\\xb0\\xbc\\x5c\\xd4\\x32\\x27\\x5b\\x0e\\xad\\x0e\\x5a\\x57\\x9c\\x25\\x8c\\xdb\\x6d\\x65\\x98\\x65\\x6c\\xa0\\x89\\xa2\\x50\\xe4\\xde\\xb1\\x23\\x35\\x6d\\x8f\\xf8\\x92\\x8b\\xce\\xb4\\x66\\xf5\\xd4\\x5a\\xc1\\xda\\x34\\xe6\\x19\\x79\\x6a\\xbe\\x0c\\xa0\\x6a\\xdf\\xcb\\xb3\\xb3\\xaf\\xec\\xaf\\x06\\x70\\x0d\\x1c\\x69\\xc5\\xd9\\xed\\x5e\\x63\\x0c\\x38\\x06\\x4f\\xf4\\xf6\\xde\\x39\\x60\\x07\\x70\\x6f\\x38\\xd4\\xd4\\x73\\xd7\\x48\\x3e\\xb0\\x21\\x55\\xa3\\x95\\xe9\\x90\\x99\\xb1\\x26\\x21\\x53\\x90\\xc2\\xb2\\xb3\\xca\\xf3\\x4c\\x8a\\xe4\\xa1\\x63\\x17\\x47\\xd2\\x26\\xdf\\x3c\\xd9\\xd6\\x76\\xf2\\xcd\\xc9\\xb4\\xee\\x87\\xf7\\x74\\x47\\x85\\xc5\\x38\\x2a\\xda\\xfd\\xda\\xae\\xfb\\x67\\x2b\\x2b\\xb7\\x5d\\xe8\\x4a\\xab\\x3d\\xb5\\xad\\x39\\x84\\x94\\xcf\\x3d\\xd0\\x41\\xfb\\xf5\\xfe\\x6b\\x57\\x48\\x27\\x69\\x44\\x5e\\xd4\\xe4\\xf5\\xa5\\x02\\x92\\x41\\x3d\\x62\\x39\\x19\\xc7\\xca\\xa6\\x02\\x2c\\xb2\\x48\\x26\\x07\\x84\\x65\\x28\\x98\\xd5\\xcd\\xe1\\x0b\\x60\\x8a\\x6d\\x4c\\x83\\x38\\xb9\\x72\\xac\\x99\\x19\\xea\\xd8\\xe8\\xa8\\xb0\\x10\\xe4\\x05\\x2f\\x9d\\x5c\\x2b\\x20\\x12\\xab\\x00\\x77\\x37\\x0f\\x26\\x72\\x38\\x54\\x78\\xae\\x7c\\xdf\\xc6\\xe2\\x92\\xe1\\xfd\\x15\\xde\\x3d\\x1b\\xbd\\xb0\\x9d\\x74\\x1f\\x79\\xa6\\xa3\\xf7\\xe2\\xd1\\x76\\x43\\x79\\xaf\\x2b\\xb7\\xbd\\x58\\xd7\\xb0\\xef\\xa9\\xde\\x8e\\x47\\xf7\\xb5\\xb0\\xdb\\x71\\xf1\\xc0\\x82\\xa7\\x7c\\xc7\\xba\\xfc\\xfc\\xb5\\x8b\\x65\\x3f\\x86\\xff\\x56\\x58\\x5b\\xbc\\x05\\x6d\\x8e\\xb8\\xe4\\x82\\xae\\x82\\x35\\xbb\\x5b\\x0c\\xfa\\xc6\\xc5\\x0e\\x57\\x67\\xa9\\x25\\x22\\x2a\\xab\\xd0\\x67\\x6d\\x9f\\xab\\x4b\\x37\\x36\\xcd\\x35\\xb9\\x9a\\xf3\\xe2\\x35\\xf6\\x46\\x57\\xbe\\x2f\\x4b\\xb9\\x11\\x01\\x5a\\xe0\\x77\\x53\\x2e\\xdb\\x5c\\x64\\xf0\\xa6\\x03\\x8d\\x9d\\x8d\\xd3\\x88\\xd9\\x92\\xa0\\x47\\xd8\\x35\\x32\\xa8\\x9f\\x2a\\x17\\xe5\\xe6\\x58\\x19\\xe1\\x95\\x54\\x10\\xc9\\xa8\\x52\\x18\\x4d\\x20\\x43\\x9d\\x24\\x31\\x9b\\x4c\\x56\\xc6\\x24\\xbc\\x1a\\x68\\x9d\\x24\\x8b\\x2f\\x2e\\x18\\xaa\\xcf\\x84\\xbc\\xb6\\x61\\xfb\\xa3\\xd6\\x35\\xd5\\x96\\x54\\x7b\\x49\\x5a\\x65\\x62\\x4e\\xba\\x32\\x39\\xa7\\x58\\x7b\\xb2\\xf1\\xce\\x4d\\x25\\x60\\x69\\x9d\\xad\\x86\\x9d\\x4b\\xbf\\x65\\x2f\\x37\\xf1\\xf2\\xc2\\x6d\\x3b\\x0f\\xfb\\x8a\\xda\\xf3\\xb5\\x61\\xfa\\xb0\\xb8\\xac\\x4a\\x57\\x46\\x6b\\x5d\\x71\\x6c\\x81\\x2a\\xd7\\xe1\\x4e\\x4e\\x34\\x26\\x29\\x65\\xc9\\xd1\\xf6\\x96\\x6d\\x6d\\x95\\x27\\xee\\x3a\\x5d\\x03\\x4f\\x8f\\x08\\x63\\xf6\\x1a\\x3f\\x48\\x54\\xa4\\x09\\x69\\xd0\\x85\\x97\\x62\\x03\\x36\\xb4\\x48\\x6a\\x43\\x0b\\x32\\x95\\x38\\x7c\\x88\\x61\\xcc\\xd2\\xda\\x90\\x36\\xd8\\x44\\x56\\xdc\\x1f\\xa5\\x00\\xbe\\xeb\\x6f\\x49\\xbc\\x55\\x0d\\xb7\\x2c\\x1c\\xe0\\x3c\\xd1\\x20\\x8d\\xca\\xa0\\xd4\\x71\\xb2\\x55\\x9c\\x27\\x2b\\xdd\\x55\\x66\\x99\\xf3\\x2b\\x07\\x5f\\xff\\x5f\\x78\\x31\\xbd\\x7a\\xa2\\xae\\x72\\xa2\\xbd\\x30\\x66\\x91\\x78\\xbe\\xb9\\x61\\x1e\\x7e\\xfa\\xdd\\xab\\xaf\\x90\\x1a\\xdf\\x7c\\x7b\\x96\\xbe\\xa4\\xdb\\xe1\\x27\\x34\\x04\\x1d\\x31\\xe8\\xed\\x6b\\x57\\x48\\x04\\xcd\\xf5\\x94\\x8e\\x72\\x50\\xab\\xef\\x72\\x34\\x85\\xcc\\x61\\x4a\\x83\\x10\\x64\\xd4\\xce\\x0d\\xe2\\x28\\x6c\\x88\\x62\\xe1\\xae\\xbb\\x6e\\x5f\\x79\\xbd\\xc7\\x1b\\x62\\x50\\x19\\x54\\x66\\x3d\\x95\\x51\\x03\\x16\\x9f\\x20\\x98\\x8c\\xd5\\xae\\x70\\x29\\x04\\x41\\x3e\\x24\\x22\\x67\\xe3\\xa3\\x53\\x53\\x8f\\x8c\\xd8\\x72\\x87\\x1f\\x99\\x9a\\x7a\\x74\\x24\\xc7\\x6f\\xc5\\x7d\\x29\\xd5\\xb3\\xdd\\x5d\\xdb\\xaa\\x52\\x70\\x9f\\xff\\xa9\\xd4\\xea\\x6d\\x5d\\x5d\\xb3\\x55\\x29\\xd8\\x3b\\xff\\x93\\xa7\\x36\\x6c\\x78\\xea\\x27\\xf3\\x90\\x33\\xff\\xd3\\xa7\\x86\\x86\\x9e\\xfa\\xe9\\xfc\\xc6\\xc5\\xde\\x8b\\x82\\x98\\x72\\xb1\\xf7\\x83\\x85\\x9e\\xe7\\x8e\\xb4\\xb5\\x1d\\x79\\xae\\x47\\xdc\\xd7\\xbe\\x7f\\xed\\x0a\\x31\\x51\\xbe\\x01\\xb3\\xd7\\x18\\x0a\\xc0\\x84\\x89\\xfe\\x00\\xc9\\x7e\\x66\\x09\\xc6\\x73\\xd8\\x70\\x83\\xca\\x60\\xa0\\x12\\x9f\\x52\\xab\\xe4\\x56\\x9f\\x59\\x8c\\xf6\\xfb\\xf0\\xcf\\x00\\xba\\xa2\\xd6\\xec\\xcc\\xa6\\xf4\\xf8\\xbc\\x0d\\x79\\xb5\\xdb\\x3a\\xac\\x80\\xf9\\x7f\\x22\\x9e\\xa5\\x8f\\xbc\\xad\\x39\\x31\\xca\\xb0\\xee\\x04\\x45\\x5a\\xdd\\x62\\x0f\\xfe\\x02\\x7d\\x6e\\xf1\\xb5\\xff\\x22\\x1d\\xec\\x1f\\x51\\x06\\x3c\\x26\\x7a\\xb5\\xa2\\xc2\\x01\\xb0\\x09\\x63\\x06\\x70\\x7d\\x0a\\xa0\\x9a\\x44\\x6f\\xf4\\xea\\x5f\\xa0\\x4e\\xf2\\xec\\xa9\\x03\\x4d\\xca\\x15\\x0d\\x93\\x44\\x94\\x47\\x25\\x6f\\x5e\\xf0\\xaa\\xfd\\xfa\\xab\\x91\\xb7\\x2c\\x1b\\x75\\xcb\\xb2\\xd1\\xb7\\x2c\\x1b\\x73\\xcb\\xb2\\xb1\\xb7\\x2c\\xab\\xbe\\x65\\x59\\xcd\\x2d\\xcb\\xc6\\xdf\\xb2\\xac\\xd0\\xab\\xb1\\xcb\\x21\\xe0\\x2b\\xae\\x79\\xe3\\x82\\x3f\\x23\\x64\\x16\\xca\\xd1\\x7d\\xd5\\x46\\x24\\x8f\\x1f\\xfd\\xf7\\xb2\\x31\\xde\\xa8\\x8e\\x66\\x65\\xf1\\x16\\x87\\x0e\\x4c\\x41\\x6b\\x24\\xdd\\x38\\x61\\x35\\xe1\\x05\\x23\\xfb\\xfa\\x21\\x78\\xaa\\x38\\x42\\x9b\\x55\\x68\\x8a\\x48\\x0b\\x67\\xa3\\x2d\\xb1\\xde\\xf5\\xe5\\xd9\\xd1\\x30\\x13\\x96\\x68\\xc8\\x49\\x8d\\x8c\\x89\\x62\\xc2\\xd3\\x22\\x5d\\x2d\\xc5\\x39\\xca\\x4f\\xa3\\x48\\xca\\xa3\\xba\\x5a\\x8f\\x81\\xe0\\x7e\\x56\\x6e\\x6f\\x5a\\x67\\x59\\x32\\xa4\\x16\\xdb\\x52\\x19\\x66\\x98\\xc8\\xf4\\x65\\x6b\\xf2\\xf0\\xa3\\x2e\\x61\\x7e\\xbc\\xc1\\x1f\\x24\\x71\\xec\\xdb\\xa8\\x16\\x65\\x79\\xcd\\xb5\\x80\\x98\\x42\\x3a\\x2f\\x8d\\x06\\x8c\\x6b\\xe8\\xb1\\x80\\xfb\\x83\\x62\\x29\\x6a\\xa8\\xae\\xd4\\x66\\xa4\\x13\\xe1\\xf8\\x95\\xb0\\x59\\xe2\\x8e\\x1e\\x8c\\x14\\xbd\\xc9\\x86\\xb9\\xea\\x2c\\x50\\x6b\\x08\\x29\\x3d\\x50\\xd1\\x72\\x62\\xb4\\xb0\\x6c\\xeb\\xbd\\xed\\xc7\\x8e\\x0d\\xbf\\x70\\xd0\\x57\\x3d\\x73\\x57\\xfd\\x86\\xac\\xae\\xca\\xcc\\xb4\\xdc\\xa2\\xe4\\xf2\\xb8\\x2c\\xad\\x32\\x39\\xa7\\x30\\xa5\\x66\\xe4\\xd5\\x3b\\xdb\\x9c\\x03\\x07\\x9b\\x8a\\xc6\\x7c\\x96\\x96\\x3b\\x5e\\x1e\\xa9\\x3b\\x5d\\xc8\\x3a\\x63\\x55\\x89\\x05\\x6b\\x8a\\x2a\\xfb\\xf2\\x35\\xa3\\x19\\x5d\\x47\\x07\\xda\\x17\\xda\\xf3\\xa2\\x35\\x61\\x71\\xe6\\xf2\\x3c\\xa3\\xaf\\x3c\\x3f\\xd6\\xa3\\xca\\xc8\\xb2\\xa7\\x26\\xe8\\xe3\\x15\\x32\\x85\\xba\\x7c\\xec\\xfe\\xad\\x6d\\x07\\x37\\x56\\xc7\\x2a\\xf2\\x6a\\x7b\\xf3\\x7b\\xf6\\xb5\\x99\\xe2\\x54\\x74\\x4d\\xac\\xbf\\xf6\\x17\\xf2\\x0c\\xf1\\x20\\x0d\\x9a\\xf0\\x5d\\x36\\xb6\\xac\\xf1\\x86\\x0a\\x22\\x41\\x08\\x88\\xac\\x32\\xd2\\x17\\x41\\x3c\\xe8\\x11\\x2f\\xc7\\xb1\\x0c\\x46\\x88\\x82\\x62\\xa4\\x75\\x2a\\xc8\\xe7\\x36\\xdc\\x90\\xe8\\x4d\\x5a\\x75\\x89\\x10\\xf3\\xca\\x75\\xdc\\xe3\\x0d\\x55\\x28\\x14\\x4a\\x83\\x2e\\x5a\\x26\\x4b\\xb4\\x80\\x4e\\xa1\\x56\\x6b\\x02\\xa3\\x69\\x34\\x49\\x70\\x28\\x2d\\xe9\\x7d\\x1e\\x17\\xd4\\x24\\xd8\\x55\\xf1\\x86\\x6a\\xe3\\xe2\\x26\\xe0\\xcb\\x17\\x1e\\x65\\x96\\x98\\xf7\\xfd\\x9e\\xce\\x75\\x10\\xc6\\xf5\\x2a\\xc3\\xee\\xbd\\x13\\x7f\\x7d\\x29\\x9b\\x79\\x7f\\x14\\x61\\xf4\\x06\\x3f\\x40\\x1c\\xf4\\x4c\\xc8\\x12\\x46\\x4c\\x2f\\xa7\\x0e\\xb3\\x80\\xdc\\xe2\\x08\\xfa\\xc1\\x6c\\xd2\\x96\\x9d\\x61\\x36\\x29\\xf5\\xc2\\xe4\\x5a\\x89\\x31\\x93\\x0c\\x80\\xcb\\x18\\x33\\x87\\x42\\xad\\x76\\x8b\\x69\\xf1\\xec\\x23\\x0f\\x4e\\x6c\\x7e\\xb1\\x64\\x11\\x00\\xca\\xe7\\x9f\\x18\\x9a\\x7d\\x7a\\xc2\\xb1\\xa8\\xf5\\xed\\xe8\\xe9\\xdc\\xd1\\x9c\\x81\\x21\\xfb\\x89\\x6d\\x6b\\x76\\x36\\xe8\\xe0\\xda\\xf8\\xd7\\xce\\x74\\xb7\\x36\\xf9\\x7f\\xc4\\xfc\\x2d\\x64\\xeb\\x4b\\x07\\x6a\\x06\\x1e\\xfe\\xee\\xd6\\xce\\x67\\x0f\\xb7\\xd5\\xcc\\xde\\x5d\\xc7\\xbf\\xb1\\x66\\x1c\\xea\\xb7\\xdf\\xdf\\x2a\\xf4\\xf5\\x21\\x7e\\x8a\\x72\\x87\\x3a\\x29\\x6f\\x45\\x1a\\x86\\x1a\\x04\\x18\\x66\\xe9\\xf1\\xc2\\x00\\x42\\x0e\\xdc\\x00\\x88\\xd2\\x84\\x3a\\xc1\\x49\\x24\\x61\\x35\\x98\\x25\\x56\\x38\\x84\\x53\\x18\\x59\\x24\\x43\\x67\\x94\\x8b\\x46\\x2a\\x0b\\xe2\\x16\\x9e\\x58\\xff\\xf0\\xb6\\x0a\\x66\\x16\\x5b\\x3b\\xe6\\xeb\\xd6\\x1d\\xef\\xcd\\x06\\x28\\xdc\\x7c\\x61\\x9d\\x77\\x6b\\x5b\\x0e\\x80\\xae\\xa0\\x56\\x9f\\x1f\\x67\\x33\\x27\\x42\\x6a\\xbe\\xcf\\x32\\xff\\xd5\\xa3\\xf5\\x00\\x65\\xbb\\xbe\\x42\\x9a\\x9c\\x1b\\xef\\xea\\xf3\\x8e\\xfb\\xcc\\xf5\\x3b\\x1f\\x6e\\xcf\\xec\\xbe\\x6b\\x73\\x5d\\x4c\\x58\\xb2\\xbd\\xd1\\x63\\x6d\\xab\\x70\\xc6\\x34\\x84\\xeb\\xac\\x05\\x3a\\x6d\\x76\\xb2\\x42\\xa6\\xea\\x3e\\xf4\\xc2\\xd6\\xcc\\x89\\xb7\\xcf\\xae\\x41\\x18\\xcd\\x5e\\xbb\\x42\\x0e\\x10\\x0f\\x52\\xa3\\x2c\\xca\\x68\\x1d\\x20\\x39\\xb5\\x04\\x9d\\x31\\x36\\x68\\x30\\x1b\\xcc\\x19\\x74\\x05\\x83\\x76\\x85\\xd3\\xcd\\x59\\xc2\\x38\\xb4\\x81\\x7c\\x83\\xc1\\xb8\\x2b\\x72\\x80\\x7f\\x67\\x6a\\x0e\\x83\\x77\\xfb\\x0b\\x33\\x33\\x2f\\xec\\xf4\\x02\\x94\\xed\\xbc\\xbc\\x15\\x3b\\x96\\xc6\\xc1\\xda\\x7b\\xb8\\x67\\xcd\\xe1\\x5e\\x6b\\x6e\\xdf\\xe1\\xee\\xae\\xc3\\xbd\\x39\\xc0\\xbc\\x5f\\xfd\\xdb\\x93\\xda\\xe1\\xaf\\x9e\\x59\\xd3\\x7d\\xf6\\x9d\\x49\\xed\\xc4\\x57\\x4f\\x77\\xf8\\xdf\\x0b\\x7a\\xdb\\xda\\xcf\\xcf\\x55\\x57\\xcf\\x9d\\x6f\\xa7\\x73\\xfa\\xb5\\x6b\\x1f\\x93\\x0c\\xe2\\x41\\x4a\\xca\\x0c\\x1f\\x9c\\xce\\xa2\\xdf\\x17\\xd1\\x13\\x7d\\x79\\x62\\xd2\\x39\\x29\\xb6\\x97\\x11\\x8d\\xa4\\xc2\\x9c\\x34\\x1a\\x29\\xa3\\x0e\\xc9\\xe0\\x77\\x00\\x0c\\xf6\\x18\\x2a\\x93\\xe3\\xad\\x6b\\xac\\xa7\\x4f\\x60\\xfe\\x6e\\x66\\x92\\xf9\\x81\\x7f\\xed\\xdc\\x70\\x74\\x68\\x4f\\x7c\\x34\\x7e\\xf0\\x59\\xfc\\xe8\\xb8\\xc4\\x5b\\x94\\x4e\\x3c\\x28\\x35\\xc8\\xf5\\x6d\\x09\\x46\\x71\\xd8\\xa8\\x73\\x3b\\x15\\xa5\\x9a\\x35\\x06\\x56\\xd8\\x30\\x14\\x81\\x13\\xd6\\x48\\xa3\\xcc\\x96\\x15\\x11\\x70\\x1a\\x6a\\x37\\x55\\xf5\\x1c\\xec\\x34\\x43\\xb9\\xfb\\x90\\x26\\x23\\x25\\xda\\x39\\x7d\\x69\\x71\\xf8\\xfc\\x68\\x1e\\x10\\x8f\\x7f\\x4b\\xcb\\xde\\x35\\x39\\x2d\\x07\\x9e\\xec\\x3c\\x01\\xd1\\x07\\x0a\\xf7\\x1c\\xb9\\xab\\x69\\xcb\\xb7\\x1f\\x5c\\x5f\\x3c\\xf3\\xd4\\x38\\xbe\\x5b\\x90\\xed\\xef\\xe5\\xd3\\x49\\x2f\\x29\\x44\\x66\\x54\\x88\\xb2\\xbd\\x99\\x61\\x80\\x51\\xa6\\x49\\x85\\x84\\x05\\x5a\\x1f\\x4a\\x1d\\x24\\x81\\xd9\\x26\\x9c\\xb2\\xb8\\xc1\\xed\\x34\\x67\\x24\\x25\\x08\\x52\\x1e\\x2b\\xed\\x4d\\x9a\\x48\\x86\\x66\\x23\\x16\\x01\\x16\\x22\\xba\\x5c\\xa6\\xd0\\x29\\x4b\\x18\\xa7\\x95\\xa5\\x2c\\x6e\\x38\\x6f\\xfa\\xe1\\x8d\\xd9\\x09\\x05\\x3d\\xa5\\xa5\\xf6\\x8a\\x4c\\x25\\xa4\\xd6\\x4c\\xb7\\xc5\\xd9\\xea\\x1d\\x9e\\xc1\\xa6\\x22\\x53\\xac\\x7d\\xfc\\x89\\xe9\\xf9\\xf9\\xb6\\x05\\x9f\\x1e\\xc2\\x34\\x06\\x47\\x85\\x45\\x95\\xac\\x0c\\x81\\x98\\xf0\\x91\\xfb\\xbf\\x3e\\xda\\xf0\\xc0\\xc9\\xed\\x96\\x6e\\xf3\\xc4\\xe2\\x6e\\x4f\\xd3\\xfd\\x7b\\xd6\\x44\\x30\\xe1\\x19\\x8d\\xc5\\x46\\x80\\xec\\xa6\\xf1\\xc5\\x7d\\x25\\x1b\\xbf\\xfe\\xc0\\x58\\x18\\x9f\\x87\\xed\\xe1\\x7d\\xfb\\xee\\xf7\\x59\\x36\\x6c\\xe8\\xad\\x34\\x41\\x6c\\xaa\\x49\\x85\\x00\\x1d\\xe1\\xab\\xc8\\x10\\xf1\\x20\\x1d\\x2a\\xf3\\x86\\xa4\\xab\\x62\\x80\\xda\\x29\\x7c\\x97\\xf5\\x2d\\x6b\\xbc\\x91\\x84\\xc1\\xcc\\xb2\\x46\\x94\\xe8\\x8d\\xa4\\xf6\\x64\\xe9\\x57\\x41\\xf0\\x09\\x47\\x08\\xe9\\x90\\x4e\\x13\\x1f\\x2f\\xf6\\x7d\\x09\\xe3\\x34\\x1a\\x4d\\x0e\\x31\\xd0\\x4f\\x34\\x67\\x38\\x03\\xe6\\x0c\\xfc\\xf8\\xda\\x3d\\x4d\\x5a\\xf0\\xd8\\xf6\\xe7\\xe4\\xe5\\x4c\\x5c\\xdc\\x35\\xbf\\xf9\\x91\\x31\\xc7\\x3c\\x18\\xea\\x67\\x9a\\x88\\x67\\x29\\x21\\x7c\\xfd\\x1d\\x4f\\x77\\x1c\\xf4\\x2f\\x8e\\x2f\\xdd\\xb3\\xe5\\x7b\\x4f\\x4e\\x84\\xf2\\x5d\\x70\\x31\\x6c\\xe3\\xa3\\x3f\\xda\\x0d\\xbf\\xe7\\x55\\xc3\\xcf\\x1f\\xee\\x0c\\x67\\x7e\\x8b\\x80\\xe2\\xb1\\x0f\\x12\\x0f\\xf2\\x0a\\x1a\\x96\\x8d\\xca\\xd8\\x08\\x18\\xc4\\x00\\x9a\\x92\\x71\\x98\\x61\\x2c\\xd4\\x9c\\x25\\x62\\x42\\x6c\\x44\\x98\\x1b\\x5e\\xe4\\xcd\\x30\\xc7\\x1b\\x54\\x66\\xb9\\x20\\x9e\\x71\\x58\\x26\\x25\\xbe\\x71\\x2a\\x69\\xc3\\x1c\\xf6\\x12\\x42\\xe7\\x8a\\x3a\\x46\\x15\\x1b\\x49\\x56\\xe4\\x72\\x72\\xe6\\xc5\\xb8\\xc1\\x63\\x2b\\x04\\x2e\\x32\\xde\\xe4\\x32\\xb8\\xab\\x33\\xa2\\x60\\x01\\xa2\\x32\\xaa\\xdc\\x06\\xb7\\x29\\x3e\\x92\\x83\\xa2\\xdc\\x3d\\x0e\\x47\\x68\\x42\\x66\\xd9\\x1a\\x8f\\xbd\\xb9\\xc8\\x12\\x19\\x99\\x59\\xd4\\x6c\\xf7\\xac\\x29\\xcb\\x4c\\x08\\x75\\x38\\x88\\xe7\\x08\\x7f\\xe5\\x2e\\xeb\\xc8\\x50\\x5f\\x95\\xb9\\x66\\xe6\\x54\\x35\\xe8\\xf9\\x5f\\x54\\x9f\\x9a\\xa9\\x31\\x57\\xf5\\x0d\\x8d\\x58\\xef\\x82\\xd8\\x23\\xb3\\xfc\\xff\\xbd\\xbf\\x70\\xef\\xce\\xc9\\x76\\x9b\\xae\\xb8\\xd3\\x6e\\xef\\x2c\\xd6\\xd9\\xda\\x27\\x77\\xee\\x2d\\xbc\\x1f\\x12\\x68\\xe2\\x6b\\xf4\\xd4\\xb5\\x2b\\xe4\\x2c\\xfb\\xaf\\x28\\x07\\x79\\xe1\\xb4\\x78\\xfe\\x87\\xe5\\x00\\xe6\\x9c\\x49\\x18\\x61\\xe1\\x08\\x89\\xa4\\xdf\\x80\\xc5\\x49\\x80\\xc4\\x54\\x5c\\x82\\xc4\\x94\\xc2\\x02\\xa6\\x2e\\x8c\\xa0\\x82\\x95\\xbb\\x72\\x13\\x91\\xa4\\x9f\\x1b\\xef\\xb2\\x5f\\x77\\x57\\xcc\\x6d\\xd5\\xa5\\xbe\\xad\\xba\\x34\\xb7\\x55\\x57\\xe2\\x6d\\xd5\\x95\\x7c\\x5b\\x75\\x65\\xdd\\x46\\x5d\\x5e\\x03\\xc2\\x1c\\xcb\\x61\\x76\\x0a\\xb1\\x08\\x31\\xec\\x67\\xdc\\x17\\x90\\xa0\\xbc\\xa1\\x59\\xaa\\x1c\\x83\\xca\\x10\\x43\\x8f\\x59\\x8e\\x93\\x05\\x76\\x60\\x85\\x3b\\xb0\\xeb\\x50\\xa5\\xdc\\x19\\x00\\xda\\xb9\\xa8\\xb1\\x47\\x13\\xd0\\x58\\x54\\xe4\\xac\\xa9\\xc3\\x02\\xee\\x4d\\x0f\\x88\\x69\\x37\\x16\\x33\\x1a\\xa7\\x7d\\xbe\\xa9\\x3a\\x03\\x6c\\x7e\\xe5\\x68\\x03\\x40\\x66\\xe3\\xd6\\xaa\\xf6\\x1d\\xcd\\xa6\\xe6\\x46\\xff\\x96\\x82\\x91\\x93\\x1d\\xaa\\x9c\\x26\\x4f\\x56\\x45\\x76\\x1c\\x7e\\x22\\x52\\x89\\x7f\\x38\\xfa\\xf4\\x5c\\x49\\xc5\\xc2\\x93\\x1b\\xa0\\x0e\\xf3\\x2f\\x36\\xec\\xed\\xb3\\x5b\\x7b\\xf6\\xb5\\xfe\\x24\\xb4\\x71\\xcf\\x97\\x26\\x94\\xd5\\xdb\\x7b\\xf3\\xbc\\x5b\\x4e\\xb7\\xf0\\x4f\\x93\\x78\\x18\\x6b\\x3f\\xb2\\xa1\\x38\\x14\\xba\\x3d\\x13\\x2d\\x39\\xba\\xe2\\x76\\x1b\\xdd\\xb7\\x0d\\x08\\x91\\x17\\xd8\\xff\\x85\\x32\\xd1\\x3e\\x6f\\x54\\xaa\\x1c\\x03\\x32\\xa7\\xa8\\x62\\x42\\x58\\x1c\\x4c\\x99\\x1d\\x23\\xf2\\x51\\x08\\x27\\x4f\\xc0\\xa8\\x2a\\x89\\xe0\\x2b\\xae\\xe4\\x2e\\x5f\\x89\\xfc\\x8c\\x32\\x37\\xbb\\x9d\\x8a\\x9f\\x6a\\xb5\\x41\\x94\\x10\\x4a\\x18\\x8d\\x98\\xab\\x59\\x0c\\xa2\\x11\\xf4\\x38\\x2b\\x23\\x13\\xc5\\x51\\xb7\\x2b\\x05\\x6b\\x94\\x1a\\x37\\xe3\\x53\\x3b\\x8a\\x7d\\xd6\\x44\\x47\\xbc\\x3a\\x22\\x35\\x26\\xc5\\x66\\x4a\\x09\\xe7\\x3f\\x5e\\xe0\\x3f\\x0a\\x4f\\x31\\xe5\\xa6\\x28\\x53\\x22\\x34\\x09\\xf6\\x24\\xab\\xaf\\xd8\\xa1\\x7e\\xcd\\x60\\x24\\x3f\\xc9\\xeb\\x2c\\x4a\\x03\\x08\\x8b\\x5c\\x2f\\x93\\x43\\x9c\\x39\\x2f\\xd1\\x7f\\xd6\\xff\\x2c\\xee\\xc5\\xe3\\x09\\x79\\xe6\\x78\\x90\\xcb\\xd6\\x47\\x86\\x01\\xa4\\x15\\x75\\xe6\\xf1\\x5d\\xb3\\xb3\\xa2\\xad\\x26\\xfd\\xda\\x15\\xf2\\x24\\xf1\\xa0\\x74\\x54\\x8d\\x5c\\x5e\\x47\\x34\\x70\\x32\\xa8\\x47\\x32\\xc4\\x21\\x19\\x37\\x45\\x85\\x2d\\xe9\\x38\\x93\\x03\\xc7\\x05\\x6d\\x7e\\x06\\x8d\\x39\\x56\\x11\\x9f\\x61\\x8e\\x0e\\x91\\x25\\x5b\\x40\\x77\\xd3\\x2d\\x43\\xe7\\xd4\\x32\\x46\\x6c\\xd2\\x06\\x77\\x1a\\xb2\\x62\\xa7\\x21\\x4f\\x1e\\x33\\x9a\\x43\\xe3\\xcd\\xa5\\x5d\\xf9\\x8e\\xc0\\x96\\xe1\\xc8\\xef\\x2a\\xc9\\x8c\\x0b\\x33\\x1b\\xb7\\x93\\x03\\x2f\\x40\\xae\\xd9\\x7f\\xd8\\x9c\\x0b\\x6c\\x44\\x9c\\x21\\x4f\\x6f\\x70\\x9b\\x13\\xa2\\x64\\x30\\x0f\\x51\\x19\\xd5\\xf9\\xba\\x3c\\x43\\x5c\\x04\\xcb\\xbc\\x3f\\xcd\\x5f\\x3d\\x9e\\x37\\xb5\\x79\\x43\\x7d\\x56\\x60\\xdf\\xc8\\xaa\\xdf\\xb0\\x79\\x2a\\xef\\x38\\xb0\\xd3\\xa3\\xfe\\xf3\\x07\\x00\\xef\\xde\\xcd\\xf3\\x07\\x8c\\x5d\\x5d\\x4d\\xc5\\x7a\\x6d\\x41\\xe3\\x9a\\xfe\\x1c\\x88\\xe0\\xff\\x22\\x6c\\x3e\\xfa\\xa2\\xe6\\x4e\\xea\\xff\\x42\\xb9\\xd7\\xfe\\x8b\\x6c\\x65\\x2f\\x23\\x1d\\xfa\\xa5\\x37\\x14\\x03\\x81\\x64\\x58\\x66\\x82\\x4e\\x0d\\x84\\x4c\\x71\\x80\\x90\\xac\\x07\\xc9\\x64\\x6a\\x11\\x07\\xc4\\x02\\xc6\\x9a\\xe0\\xbc\\xb8\\xe5\\x6d\\x29\\xc1\\x49\\x72\\x1b\\xb5\\x65\\xdd\\x4e\\x6d\\x5e\\xdd\\xcd\\xee\\x60\\x59\\x4d\\x10\\xa3\\x94\\x82\\x45\\xfa\\xf2\\x30\\x85\\x42\\x99\\xa1\\x88\\xd3\\x45\\xcb\\xb9\\x24\\x0b\\x68\\x15\\xcb\\x39\\x6a\\x03\\x1a\\x83\\xa0\\xfc\\x28\\x24\\x06\\x09\\x3e\\x26\\x77\\xc4\\x35\\xfe\\xe0\\x68\\x9e\\x63\\xf0\\x54\\x1f\\x54\\x0c\\x95\\xa5\\xa6\\xd7\\x4e\\x35\\x15\\x0c\\xda\\xe7\\xf8\\xc7\\x99\\xaf\\xb3\\xf5\\xfe\\x2b\\xb1\\xf1\\xd5\\x3b\\xbf\\x30\\xd4\\x77\\x7e\\xb2\\x14\\x06\\xc1\\xd1\\x3d\\x5b\\x5e\\xbf\\x7f\\x20\\x3f\\x39\\xc6\\xef\\x62\\xeb\\x47\\x10\\xa0\\x33\\xd7\\xae\\x90\\xf5\\xec\\xdb\\x28\\x07\\x95\\x79\\x4b\\x10\\x66\\x08\\x83\\xc9\\x94\\x1c\\x64\\x2c\\xc7\\xca\\xb8\\x29\\x44\\x10\\x2b\\x23\\xcb\\xd9\\xba\\x92\\x83\\x5c\\xd7\\x29\\xd4\\x1c\\x94\\x83\\x72\\x0c\\x0a\\x95\\x3e\\xd6\\xac\\x0f\\xe1\\x12\\x03\\xee\\xf3\\xa0\\xf9\\x60\\x99\\x9c\\x4a\\xab\\x5a\\xc6\\x2e\\x92\\xf5\\x21\\x35\\x3b\\x2e\\x6e\\xd9\\xf1\\xf2\\x8e\\x92\\x92\\x1d\\x2f\\xef\\xd8\\x72\\x71\\x7b\\x6d\\xc8\\x42\\x78\\x5e\\xf7\\xde\\xce\\xc1\\x3b\\x7b\\xb3\\x70\\xb1\\xff\\xad\\xac\\xde\\x3b\\x07\\xbb\\xf6\\x76\\xe7\\x85\\xc1\\x6b\\xc3\\x5f\\xd8\\x59\\x35\\x7a\\xf1\\x83\\x45\\x90\\x2f\\x7e\\x70\\x71\\xb4\\x7c\\xc7\\x73\\xe3\\x6d\\x47\\x06\\xf2\\x7a\\xee\\x7e\\xa5\\xbf\\x7e\\xa4\\x77\\xe0\\x95\\xbb\\x7b\\xed\\xeb\\x8f\\xb4\\x0b\\x6b\\x22\\x0d\\x21\\xf2\\x00\\x7b\\x99\\x5a\\x46\\x3c\\x5e\\x37\\x42\\x21\\x20\\x23\\x48\\x36\\x84\\x30\\x66\\x7b\\xe4\\xc0\\xb2\\x6a\\x9a\\xcb\\x1e\\xfa\\x84\\x05\\xae\\x81\\x06\\x9d\\x0e\\x21\\x5d\\x8e\\xce\\x6a\\xd4\\xa3\\x74\\x94\\xae\\x35\\x29\\x32\\xb4\\xa1\\x5c\\xbc\\x05\\x14\\x92\\xdc\\x25\\xd3\\x2a\\xb4\\x4c\\x24\\xab\\xd3\\x39\\xa9\\x6b\\x4e\\x09\\x0a\\x29\\x01\\xb3\\x09\\xff\\xf8\\x74\\xdb\\x9c\\x4f\\xa7\\xf3\\xcd\\xb5\\xf1\\x7e\\x7e\\x29\\x14\\x42\\xd4\\xa6\\x92\\xee\\xa2\\xe4\\x38\\xbd\\x53\\xaf\\x89\\x60\\x21\\x0a\\x3e\\x3a\\xed\\xae\\xb7\\xc4\\xc4\\x64\\xd5\\xb9\\xd9\\xcb\\xfe\\x87\\xa1\\x6e\\xfe\\x7c\\x73\\xf3\\xf9\\xf9\\x3a\\x60\\xeb\\xfd\\xef\\x77\\xbc\\xf4\\xc2\\xa3\\xdb\\xeb\\x86\\x2b\\xb6\\xdc\\x75\\xff\\x03\\x95\\xf8\\x8c\\xbf\\xc0\\xbf\\x0b\\x8a\\xd6\\xcf\\xba\\x5c\\x53\\xeb\\x8a\\x00\\x61\\x74\\x1c\\x21\\x72\\x4c\\xca\\x03\\xe8\\xf6\\xe6\\x21\\x1c\\x02\\x72\\x82\\xe5\\x82\\x72\\x4c\\x64\\x88\\x0c\\x72\\x00\\xa0\\xf6\\x21\\x99\\x8c\\xe9\\x63\\x81\\x61\\x34\\x4c\\x83\\x46\\xa3\\xd1\\x69\\xd2\\xd3\\x15\\x0a\\x45\\x86\\x56\\x11\\x1d\\xca\\x25\\x59\\x94\\x5a\\x85\\x23\\xf8\\x1e\\x52\\x2e\\xb2\\xe5\\xf6\\x2f\\xc1\\xa6\\xd9\\x75\\x03\\x07\\x9a\\xd2\\xd3\\x9b\\x0e\\x0c\\xfc\\x2b\\x7f\\x6e\\x76\\x16\\xfe\\xf7\\xba\\x9a\\xae\\x9c\\x68\\x45\\x6e\\x57\\x15\\xa3\\xc0\\x8f\\xf8\\x8f\\x41\\xcd\\xb6\\x7b\\x1a\\x1a\\xee\\x9d\\xab\\x05\\xfc\\x9c\\xbf\\x83\\xbd\\xec\\x4f\\xf7\\x9f\\x87\\xc2\\xde\\x2d\\x0e\\xc7\\x44\\x8f\\x07\\xe8\\x1a\\xac\\x40\\x88\\x8c\\x52\\x9c\\xbb\\xcd\\x6b\\xc5\\xc0\\x80\\x0a\\x30\\x83\\xeb\\x03\\x0c\\x3d\\x2c\\x48\\x1a\\x9f\\x9a\\xfa\\x69\\x34\\xb8\\x41\\x50\\xf2\\x54\\xba\\x68\\x99\\x30\\x4f\\x84\\x59\\xad\\x59\\xe6\\x45\\xd6\\x19\\x83\\x13\\xfa\\x43\\x3e\\xd7\\x3e\\xe2\\xd8\\x78\\x66\\x30\\x17\\xe6\\x20\\xa5\\x6c\\xac\\xde\\x35\\x64\\x9f\\xe3\\x9f\\x64\\x1e\\x63\\xeb\\xfd\\xbf\\x88\\x88\\x85\\xa2\\xc9\\x87\\x36\\xf0\\x43\\xf0\\x50\\xdd\\x42\\xa7\\x15\\x62\\x22\\xfd\\xa5\\xc2\\x2c\\xa6\\xfe\\x41\\xfe\\x11\\xea\\x1f\\x0c\\x13\\x73\\xd8\\x31\\x64\\x56\\x90\\xa5\\xd4\\xd4\\x3a\\xdb\\x23\\xf5\\x94\\xe4\\x75\\xe4\\x12\\x2c\\x4a\\x1a\\x5e\\x23\\xfa\\x0a\\x2f\\xcd\\xe3\\x43\\xf3\\xfc\\xd1\\x79\\x7e\\x2f\\x7b\\xf9\\xd3\\x17\\x59\\xdf\\xa7\\x2d\\xfc\\x23\\x30\\x18\\xc8\\xfd\\x97\\x24\\xc5\\xb1\\xe6\\x78\\xb3\\x10\\x70\\xc0\\x12\\x60\\x69\\x92\\xe6\\x1e\\xc4\\x30\\xea\\x60\\xf4\\x16\\x7d\\x3f\\x45\\xb2\\x22\\x29\\x5d\\x91\\xa1\\x8d\\x96\\x71\\x34\\xe3\\x92\\x94\\x6f\\x49\\xa7\\x55\\x68\\x97\\xf3\\x2f\\x92\\x44\\x7f\\x24\\x58\\x46\\x9f\\x5d\\x2c\\x2b\\x5b\\x7c\\x76\\x94\\x5f\\xc7\\x6c\\x12\\xbe\\x37\\xed\\xea\\xce\\xc9\\xe9\\xde\\xdd\\x28\\x2c\\x58\\xc8\\x1f\\xbf\\x6f\\xa0\\xff\\xc2\\x84\\x87\\xbd\\xec\\x4f\\xf3\\x9f\\x85\\xec\\xf6\\xd9\\xea\\xaa\\xa9\\xe6\\x2c\\xa0\\x7b\\xff\\x20\\xff\\x08\\xe9\\xa6\\x6d\\x8a\\x17\\xb4\\x18\\x8a\\x16\\x69\\x45\\x32\\x19\\xdb\\x83\\xe8\\x1c\\x27\\x58\\xf2\\x93\\x0b\\x4d\\x52\\xab\\x45\\x5e\\x11\\x2e\\xc9\\x62\\x70\\x30\\x74\\x26\\x30\\x8e\\x12\\x1c\\xe3\\x56\\x6a\\x21\\x92\\xa1\\x53\\xfc\\xe3\\xcd\\x21\\x9b\\x97\\xfe\\x3a\\x16\\x51\\x92\\xdf\\x60\\x4b\\x60\\xe3\\x71\\x3f\\x8f\\x88\\xd2\\x54\\x92\\x8b\\x5d\\xfc\\xd1\\x61\\xde\\x03\\x83\\xfc\\x23\\xf0\\x8e\\xe1\\xc1\\x9f\\x43\\xc4\\x39\\x1c\\xee\\xff\\xeb\\xc8\\xef\\x7f\\xf3\\x2f\\x55\\xe4\\xb7\\xa2\\xbd\\x2e\\x0b\\x21\\xf2\\x30\\x7b\\x19\\xa9\\x84\\x39\\xa0\\x94\\x63\\xc4\\x42\\xbd\\x0c\\x58\\x0c\\x34\\x39\\xa1\\x9c\\xc3\\x84\\xa8\\x7d\\x21\\x82\\xce\\xa3\\x81\\x06\\x55\\xac\\xd0\\x16\\x9a\\xf7\\x3b\\x94\\x13\\x0e\\x20\\x41\\xb3\\xa7\\xc4\\x95\\xe0\\x10\\xa6\\x2b\\x0d\\x2b\\xc1\\x57\\x7c\\xdb\\x9a\\xf9\\x0f\\x4e\\x43\\x35\\xff\\xb3\\x63\\x00\\x3d\\xdb\\x3a\\x01\\x1d\\xe7\\x7f\\x06\\xd5\\xa7\\xf1\\x25\\x7f\\x1b\\xfd\\xfb\\x37\\xfc\\x63\\xff\\x46\\xfc\\x20\\xfd\\xcb\\xf4\\x1b\\xc5\\x5c\\xeb\\x1f\\x93\\x31\\xf6\\xed\\x80\\xdd\\xfe\\x66\\xfc\\x1f\\x72\\xb8\\x2e\\xd9\\x7a\\x72\\x30\\xd9\\x7a\\x0a\\xb9\\xb9\\xdd\\x9e\\x13\\xf4\\xec\\x9b\\x90\\x81\\x5c\\xe7\\x24\\x5a\\xc5\\x06\\xe2\\xc4\\x03\\xcd\\xc7\\x47\\x0a\\x0b\\x47\\x4e\\xb4\\xd6\\x1c\\x1c\\x2e\\xc6\\x8b\\xb8\\xed\\xf0\\xa5\\xfe\\xd1\\x57\\x8e\\x35\\x9b\\x6b\\x37\\x78\\xbc\\x9b\\x1b\\x2d\\xdd\\xa7\\xbf\\x3a\\x36\\xf0\\x95\\x93\\xdd\\x78\\x11\\x97\\x8c\\xdf\\xd9\\xd4\\x76\\x66\\x6b\\x99\\x77\\xcb\\xdd\\x6d\\xaf\\x30\\x09\\xda\\xca\\x09\\x5f\\xdd\\x56\\x9f\\xd1\\xdc\\xb8\\xb5\\x7a\\xfd\\xd9\\x51\\x77\\xee\\xc6\\xf3\\xa3\\xc5\\xa3\\x6d\\x25\\xb1\\x31\\x85\\x5d\\xb3\\xb5\\x63\\x0f\\x8e\\xe5\\x39\\x37\\x3d\\x32\\x51\\xbf\\xd8\\x61\\x35\\x35\\x6d\\x6b\\xea\\x9c\\xa9\\x4e\\x1d\\x45\\x80\\x2e\\x22\\x44\\xb4\\x81\\x1c\\x74\\x21\\x04\\x07\\xa8\\x42\\xd5\\x94\\x2a\\x54\\x23\\x11\\x68\\x72\\x12\\x8f\\x21\\xe8\\x14\\x0e\\x86\\xb9\\x38\\x3f\\x0f\\xfe\\xb9\\xf9\\x79\\x60\\x2f\\x7f\\xda\\x42\\xbe\\x79\\xb5\\x90\\xbd\\x7c\\xb5\\x08\\x01\\xb2\\x21\\x44\\x8c\\x34\\x7f\\xa0\\x89\\x66\\x36\\x20\\x3d\\x82\\x26\\xa2\\x16\\x6d\\x79\\xc2\\x72\\xd2\\x04\\xe8\\x29\\xb4\\x26\\x85\\x82\\x13\\x2a\\x15\\x16\\xd0\\xca\\x6d\\x92\\x18\\xe7\\x79\\x79\\x34\\x8e\\x48\\xb1\\xd5\\x6f\\xac\\xc8\\xd0\\x5b\\xca\\x73\\xb5\\xb1\\x21\\x10\\x4b\\x51\\x14\\xf5\\xfe\\xa7\\x5b\\x2f\\x3d\\x73\\x6e\\xba\\x62\\xb8\\x64\\xf8\\xf0\\xe9\\x7b\\xca\\xf0\\xd7\\x10\\xa0\\xc4\\x6b\\x1f\\x93\\x37\\xd8\\xcb\\x37\\xe7\\x22\\x55\\x07\\x11\\x93\\x29\\x12\\x17\\xa9\\xf0\\xcc\\x9b\\x73\\x91\\x0e\\xe8\\xe1\\xb9\\x93\\xfe\\x77\\x12\\x4a\\x3b\\xa7\\x7d\\xd9\\xbe\\xb8\\x58\\x8d\\x37\\xd9\\xd1\\x54\\x62\\x8d\\x71\\xf9\\x7f\\x74\\x07\\xee\\xec\\x61\\xbe\\x72\\xb5\\xd6\\x39\\xe8\\xcb\\x8a\\x92\\xf7\\xb3\\xe1\\xe9\\xee\\x6a\\xfd\\x04\\xb1\\x0b\\x73\\xe7\\x1b\\xfc\\x63\\xe4\\x32\\x8d\\x53\\xa2\\xfb\\x06\\x1b\\xd8\\x37\\x84\\x63\\x82\\xae\\x29\\x0d\\x2b\\x2c\\x6d\\xe5\\xf2\\xbe\\x41\\x83\\xf3\\xe8\\x6a\\xfa\\xc6\\x3c\\xde\\x07\\xf3\\xfb\\x43\\xb6\\x2c\\x1d\\x13\\xb6\\x0e\\xcc\\xd6\\x7d\\xfa\\x32\\xef\\x81\\x7e\\x8a\\x89\\x95\\xf2\\x3b\\x2a\\x85\\x9d\\x23\\x06\\x18\\xcc\\x00\\x30\\x34\\x53\\x1b\\x20\\x06\\x86\\x28\\x82\\x57\\xed\\x43\\x81\\x3e\\x55\\x22\\xa5\\x4e\\xa9\\x0b\\xf6\\xa9\\x68\\xfd\\x52\\x3a\\x94\\x6a\\xb5\\x43\\xed\\x72\\x2b\\x48\\xf8\\x7c\\xfd\\xd9\\xb5\\xdf\\xfa\\x17\\x0c\\xf3\\x00\\xc7\\xce\\x76\\x5e\\x68\\xa0\\xd9\\x63\\xcf\\xc5\\xa5\\xfd\\x9f\\x5f\\xc0\\x19\\x7e\\xcb\\x73\\x5f\\x02\\x6d\\x1c\\xfe\\x0a\\x02\\x74\\x14\\x21\\x52\\x4d\\xf7\\x41\\x83\\x37\\x9d\\x63\\x19\\x46\\x38\\x2e\\x70\\xc0\\xc2\\xa1\\xa1\\x5a\\x65\\x18\\x0a\\xa3\\x5b\\xa1\\xb0\\x4f\\x29\\xa5\\x8d\\x50\\xf8\\x5b\\x02\\xdb\\x36\\xb0\\x6d\\x5b\\x2a\\x93\\x36\\x42\\xba\\x19\\x4a\\x79\\xb9\\x8e\\xf3\\x8f\\xd1\\xf3\\x55\\x41\\x33\\x2f\\xb0\\x88\\x6d\\x95\\xcb\\xc4\\xca\\x09\\x0e\\x58\\xf7\\x34\\x9c\\x04\\x91\\x14\\xfe\\xd9\\x14\\x0a\\x41\\x26\\x90\\xea\\x5f\\xee\\x34\\x05\\x2f\\x3c\\x45\\x95\\xb4\\xad\\x3d\\x64\\xd3\\xd2\\x60\\xe0\\x49\\xc0\\xd6\\x7f\\xfa\\x12\\x5f\\x08\\xfd\\xf4\\x71\\x08\\x23\\x2b\\x42\\x64\\xef\\xcd\\xf6\\x5e\\xc9\\x19\\x70\\xab\\xbd\\x57\\x38\\xff\\x56\\xee\\xbd\\x81\\x93\\xcf\\x0a\\x1f\\xfe\\x60\\xe8\\xc2\\xb8\\xdb\\x3d\\x7e\\x61\\x88\\x7f\\x8d\\xbf\\x1b\\x3e\\xfc\\x41\\xfd\\x64\\x9d\\x4e\\x5f\\x37\\x59\\xc7\\x5e\\xf6\\x1f\\x81\\xe2\\xcd\\xe7\\x7a\\x7a\\xee\\x9b\\x2c\\x65\\xeb\\xfd\\x47\\xfc\\x67\\xc1\\xde\\x39\\xe3\\x2d\\xdd\\xda\\x96\\x0b\\x08\\x31\\xe8\\x59\\x84\\x88\\x53\\xca\\x6f\\x98\\x4a\\x5b\\x84\\x64\\x40\\x18\\x24\\x08\\x74\\x74\\x24\\x05\\x09\\x89\\x15\\x97\\x5c\\x54\\x54\\x6a\\x4a\\x72\\x52\\x54\\x62\\x54\\x42\\xba\\x22\\x23\\x4d\\x4e\\x17\\x5f\\x50\\xaa\\x70\\x28\\x82\\xed\\x11\\x56\\x23\\x24\\x5f\\x58\\x7f\\x72\\x9d\\xd5\\xba\\xee\\xe4\\x7a\\xfe\\xcf\\x73\\x17\\xaa\\x06\\x8b\\x12\\x93\\x8a\\x07\\x2a\\xf1\\xde\\xb9\\x39\\xc6\\x05\\xde\\xc9\\x7b\\xbb\\xba\\xce\\x6d\\x2d\\x03\\xe9\\x2c\\xc8\\xeb\\x9e\\x2e\\x2e\\x9a\\xec\\xb0\\x83\\x3f\\x57\\xc2\\x39\\x7d\\x07\\x21\\xe2\\x92\\xda\\x65\\xf6\\x1a\\x11\\x62\\xc5\\x56\\xa1\\x60\\xa3\\x90\\xd4\\xa6\\x40\\x7b\\xe8\\x1c\\x5b\\x3e\\x9b\\x1c\\x8a\\x65\\x96\\x83\\x8a\\x15\\x27\\xd3\\xfa\\x85\\xe5\\x63\\x89\\x71\\xdd\\xe2\\x50\\x02\\xb4\\xff\\xda\\x15\\x52\\x41\\xf3\\xbd\\x0a\\x32\\xa4\\x14\\xc2\\x2f\\x07\\x19\\x20\\x90\\x21\\xea\\x3a\\x95\\x61\\x10\\x64\\x48\\xca\\x12\\x9a\\x2c\\xcc\\x7a\\x9a\\x96\\x3a\\x85\\xce\\x17\\x37\\x72\\x67\\xeb\\x63\\x4d\\x0a\\x0d\\x95\\x21\\x45\\x8c\\x3a\\x71\\x53\\x5a\\x49\\x8a\\x8f\\x0a\\xec\\xbc\\x44\\xa5\\x08\\x28\\x2c\\x7f\\x93\\xd9\\xba\\xf6\\x74\\x78\\x37\\xb5\\x15\\x67\\x28\\xc1\\xff\\x67\\x1c\\x09\\xca\\x8c\\xe2\\xb6\\x4d\\xde\\xf6\\x3d\\xdd\\x36\\xd9\\x3c\\xa9\\x5a\\xfc\\xe2\\x44\\xeb\\xf1\\x2d\\x6d\\xee\\xa4\\x24\\x77\\xdb\\x96\\xe3\\xad\\x13\\x17\\x17\\x2b\\x09\\xbc\\xdb\\x7e\\x7c\\xc8\\x6d\\xae\\x19\\x98\\xde\\x5d\\xda\\x37\\xdc\\x51\\xba\\x7b\\x7a\\xa0\\xc6\\xec\\x1e\\xba\\xa3\\x6d\\xe3\\xa5\\x7d\\x75\\xd6\\xf6\\xd9\\x63\\xe7\\x9b\\xf9\\x3f\\x36\\x9f\\x3f\\x36\\xd3\\x9e\\x53\\xbd\\xe7\\xd2\\x78\\x20\\xcf\\xc0\\x00\\xcd\\x25\\x59\\x8c\\x5e\\x0e\\x68\\x17\\x04\\x81\\x8c\\xc0\\x20\\x05\\x56\\x08\\x72\\x85\\x5a\\xa4\\x92\\x12\\x96\\x58\\x4a\\xd0\\x01\\x63\\x0a\\xde\\x46\\x6f\\x90\\x12\\x95\\x24\\x0b\\xdb\\x99\\x26\\x48\\x3d\\x95\\x82\\x56\\x31\\x5a\\xdc\\xaa\\xd6\\xdb\\xae\\x90\\x6a\\x10\\xd9\\x16\\x93\\x42\\xa1\\x50\\xe9\\xa9\\x06\\x11\\x44\\x71\\xeb\\x68\\xf8\\xa6\\x43\\xc4\\x72\\xa4\\x10\\x95\\x84\\x6a\\x10\\xba\\x55\\x52\\xf5\\xc8\\x80\\xb1\\xf3\\xce\\x91\\xa1\\x63\\xed\\xfa\\xfb\\xe7\\xe6\\xee\\x8f\\x4a\\x77\\x37\\x8d\\x55\\x54\\x4e\\xb4\\xe6\\xeb\\x15\\x8b\\xb1\\xae\\x01\\x9f\\xad\\x36\\x4f\\x1b\\x2b\\x97\\xc7\\xa6\\xe7\\xd5\\xda\\xec\\x0d\\x2e\\x9d\\x4a\\x8e\\xf3\\xc7\\xdf\\x7b\\x76\\x7c\\xfc\\xd9\\xf7\\xc6\\xe7\\xfd\\x6d\\xec\\x65\\xff\\xd0\\xc6\\xea\\x53\\x07\\xa7\\x3b\\x73\\x73\\x3b\\xa7\\x0f\\x9e\\xaa\\xc6\\xed\\x17\\x4f\\xac\\x31\\x57\\xaf\\x9f\\x98\\x75\\xf3\\x6f\\xe6\\xcf\\x6c\\xee\\xaf\\x36\\x9b\\xab\\xfb\\x37\\xcf\\xe4\\xd3\\xb8\\x3a\\x84\\x48\\x28\\xe5\\x7d\\x49\\x42\\x0e\\x6f\\x2e\\x4b\\x69\\xcb\\x82\\xb9\\x87\\x25\\x04\\x9d\\xda\\xc7\\x49\\xd2\\x03\\x42\\xf1\\x1a\\x75\\x2c\\x8a\\x42\\x51\\x19\\xc2\\xbe\\xa5\\xb1\\x08\\x0b\\x5b\\x07\\x46\\x23\\x35\\x4f\\x6a\\x15\\xd4\\x56\\xa1\\x55\\x68\\x23\\x19\\xe6\\x1e\\x7e\\x1b\\xff\\xee\\x7e\\x68\\x3f\\x7e\\xae\\x6a\\xef\\x3f\\x6d\\x86\\x67\\x96\\xfe\\x60\\xed\\xda\\xd9\\x08\\xcd\\xfc\\x0f\\x3a\\x8e\\xae\\x77\\xe0\\x61\\xff\\x03\\xf8\\x48\\xee\\xd7\\xef\\x1c\\x79\\x64\\xd2\\x03\\x9f\\xb6\\x10\\x52\\x39\\xd3\\x96\\x03\\x78\\x0f\\x64\\x75\\x2c\\x22\\x8c\\x0e\\x5f\\xbb\\x42\\xca\\x39\\x05\\xca\\x42\\xe5\\x28\\xdf\\xeb\\xcc\\x04\\x22\\xc2\\xe8\\xf1\\x0c\\x0b\\x48\\xcc\\x90\\x1f\\xcc\\x69\\x9a\\x02\\x0d\\xd6\\x6c\\x40\\x05\\xee\\xec\\x72\\x6b\\x79\\x4a\\x72\\x78\\x28\\xca\\x82\\x2c\\x19\\x27\\x81\\x49\\x82\\x12\\x42\\x31\\xce\\x8b\\x71\\xb9\\xdc\\x25\\x8c\\xdb\\x11\\xc9\\xca\\x22\\x19\\x99\\xcb\\xa5\\xa1\\x86\\xfb\\x60\\xc0\\x89\\x95\\xc1\\xdb\\xc6\\xbf\\xb8\\xbd\\xbc\\x62\\xe7\\x0b\\x93\\x93\\x2f\\xec\\xae\\x80\\xc2\\xc5\\x97\\x76\\xdb\\x06\\x9b\\xec\\x78\\x14\\xa7\\xe4\\x55\\x36\\x76\\x98\\x3b\\x8e\\x0c\\x79\\xa3\\xca\\xdf\\x1a\\x69\\x3f\\xb4\\xce\\x06\\xb6\\xbe\\x23\\x5d\\x9d\\x87\\xd6\\xe6\\x82\\x7d\\xed\\x61\\xe6\\xcf\\xf5\\x07\\x5e\\x18\\xd5\\x6e\\x7e\\xfd\\x8e\\x96\\x96\\x3b\\x5e\\xdf\\xac\\x25\\x55\\xf7\\x81\\xfc\\x3b\\x47\\xd5\\x21\\x2a\\x63\\xb1\\x2d\\xbf\\xd5\\x63\\x4a\\x50\\xc8\\x22\\x7d\\xdb\\xce\\xf7\\x76\\x8d\\x0c\\x17\\x8f\\x9d\\x68\\xd2\\x76\\x9c\\x9d\\x2e\\x2f\\x9f\\x3e\\xd7\\xae\\x6d\\xbe\\x73\\xac\\x58\\xf4\\x2b\\xbf\\x2a\\xc8\\xb9\\xc4\\x83\\x62\\x91\\x16\\x59\\x51\\x89\\xb7\\x30\\xf4\\xe6\\xb9\\xc7\\xe3\\x96\\x73\\x8f\\x0b\\x02\\x9d\\x0a\\x21\\x6b\\x96\\x3e\\x5d\\xa5\\x55\\xa5\\xc5\\xa9\\x51\\x2c\\x52\\x6a\\xe5\\x9c\\x94\\xf7\\x5a\\xc5\\x71\\x01\\x19\\x09\\x14\\xda\\x80\\x78\\x64\\x08\\x7e\\xd2\\xbe\\x0a\\x17\\x3a\\xee\\x9b\\x29\\x87\\xd1\\x1e\\x57\\x57\\x49\\x7a\\xd1\\xf8\\x5d\\xad\\xfc\\xfd\\x30\\x92\\xbf\\xa1\\x2e\\x33\\xab\\x6e\\x83\\x8b\\xbf\\x1f\\xb2\\x0a\\x47\\x1b\\xb3\\x73\\x5b\\x27\\x0a\\xf9\\x5f\\x12\\x0f\\xa4\\x54\\x4e\\xb6\\xac\\x9f\\x49\\x0a\\xb1\\x96\\x77\\xd9\\x9b\\xa7\\xeb\\x74\\xf0\\x67\\x7e\\x46\\x63\\x6b\\x70\\xe5\\xd5\\xe7\\x68\\x36\\xc6\\x66\\xd7\\xb9\\xf2\\xeb\\x2d\\x0a\\x7a\\x4e\\x7d\\x13\\x21\\x92\\x4c\\x3c\\xab\\x31\\xa3\\x71\\x3e\\x71\\x13\\x54\\x28\\xa2\\x19\\x2e\\x88\\x19\\x4d\\xf6\\xeb\\x76\\x32\\x6b\\x98\\xf7\\x97\\xb2\\xa5\\xbc\\x22\\xeb\\xf9\\x6f\\x90\\x6d\\xc4\\x43\\x65\\x6b\\x87\\x37\\x97\\x00\\x06\\xdc\\x1a\\x88\\x46\\x8c\\xf3\\x71\\x72\\x96\\x91\\x80\\x87\\x1a\\x46\\x98\\x91\\x71\\x1a\\x35\\x25\\x8f\\x51\\x28\\x14\\xea\\x10\\x2e\\xde\\x22\\x0c\\xb1\\x70\\xf6\\x48\\x92\\xb6\\x24\\x62\\xbf\\x68\\xab\\xcc\\xd2\\x70\\x31\\x78\\xef\\x54\\xc8\\xe4\\xd2\\xfb\\xe3\\x21\\x70\\x92\\x8b\\xd1\\xe5\\x5b\\x70\\x29\\xbf\\x79\\xd8\\x3c\\x77\\xef\\x57\\xc6\\xe0\\xe8\\x92\\x85\\x5f\\x07\\x25\\xfc\\x37\\xe0\\x09\\xdc\\xb4\\xee\\x8b\\xe7\\xf6\\xd9\\x98\\x61\\xe1\\x5d\\x14\\x08\\x91\\xe7\\xa8\\x3f\\xfc\\x33\\xe5\\xeb\\xb8\\xbf\\x53\\xbe\\xfe\\x43\\xe7\\x5c\\x17\\xff\\xde\\x29\\xe8\\xe3\\xbf\\x7f\\x0c\\xb8\\xde\\xb9\\x3e\\xe0\\x8e\\xf3\\xdf\\x85\\x75\\xa7\\xe1\\xaf\\x7c\\xb8\\xf0\\x87\\xb3\\x70\\x24\\x6f\\x80\\x9f\\x0b\\x7f\\xfe\\x3f\\xfb\\x7f\\x28\\xb4\\xe3\\x81\\x6b\\x7f\\x20\\xf5\\xa4\\x11\\x55\\xfe\\x1d\\xf2\\x75\\xea\\x6a\\xf9\\xba\\xa2\\xac\\xc0\\xed\\xb0\\x67\\x65\\x4a\\xf2\\x75\\x25\\x54\\x7e\\xbe\\x7c\\x4d\\x28\\x58\\xd6\\xb1\\x32\\x32\\x41\\xe7\\xc4\\xbb\\x0a\\x67\\x7b\\xf3\\xf3\\xd7\\xce\\x15\\xe5\\xcf\\x6d\\x28\\x85\\x1d\\x6c\\xdb\\xbe\\x47\\xda\\x3b\\x1e\\xdb\\xed\\xd3\\x15\\xb6\\x58\\xf3\\xd6\\x94\\x19\\x8c\\xe5\\x3d\\x63\\xd3\\xf9\\xee\\xa9\\xd1\\xb5\\x55\\x16\\x66\\x47\\xf9\\xc8\\x9e\\xe2\\xe2\\x9d\\x43\\x25\\xc5\\x1b\\xb6\\x17\\x7f\\x0f\\xaf\\x55\\x64\\xd5\\x17\\xb8\\x9b\\x6c\\xea\\xf8\\xbc\\x66\\x57\\xf3\\x5c\\xa3\\x31\\xad\\x7e\\xae\\xc3\\xea\\x2b\\xcc\\x8a\\x8a\\xc8\\x2c\\xed\\x74\\x17\\xf4\\x56\\x3b\\xb4\\x51\\xd1\\x5a\\x67\\x5d\\x7f\\xa1\\xa7\\xab\\x20\\x49\\xe3\\x68\\x2d\\xf4\\xb6\\x64\\x47\\x8f\\x21\\x40\\x6f\\x20\\x44\\xa2\\x29\\xaf\\xc2\\x6a\\x39\\x3b\\xee\\x66\\x72\\xb6\\x42\\x38\\xd9\\x15\\xcc\\x7d\\xdb\\xb7\\xfb\\x1f\\x5a\\x58\\x20\\x9e\\xab\\xef\\x30\\x7b\\x96\\x0e\\x10\\xcf\\xd2\\x7e\\x3a\\x47\\xbf\\x8b\\x10\\xc5\\x6f\\x85\\x0b\\x32\\x6f\\xa8\\x20\\x0f\\x06\\x33\\xf8\\x0a\\xca\\x72\\x9c\\x4f\\x92\\x23\\x62\\x82\\xfa\\x2a\\x48\\x9b\\xb7\\x38\\x88\\xa1\\x6f\\x6f\\xdf\\xfe\\x0d\\xf8\\xf2\\x05\\x3e\\x0d\\xc7\\x3e\\x0a\\xff\\xc9\\x47\\x13\\x0f\\x9f\\x06\\xbf\\xf2\\xff\\xc5\\xff\\x3e\\xad\\xbf\\x0c\\x21\\x22\\xa3\\xbe\\xdb\\x95\\x72\\x7c\\xdc\\x6d\\xc9\\xf1\\x6e\\xb7\\x28\\xc7\\xcb\\xb6\\xf3\\x39\\x72\\x08\\x4d\\xc8\\xae\\x1d\\xad\\xc9\\xc2\\x46\\x5b\\x95\\x35\\x31\\x8a\\x85\\x30\\xfa\\x2e\\xef\\xf3\\xc7\\xeb\\xcf\\x1c\\x99\\xed\\xb4\\x4d\\x80\\xa5\\x76\\x60\\x72\\xbe\\x00\\x3e\\xa0\\xcf\\x3d\\x87\\x10\\x49\\xa0\\xef\\x95\\xe6\\x4d\\x96\\xd3\\x79\\x5a\\x4f\\x68\\x1f\\x31\\x18\\x4b\\x9d\\x14\\xa3\\x50\\xb0\\x5c\\xbc\\xc5\\x20\\x75\\x13\\x0d\\x6d\\xc7\\x7d\\x90\\x73\\x7a\\x9e\\xff\\x75\\x07\\xff\\x6f\\x73\\xf7\\x3d\\xce\\x9c\\xbf\\xfa\\x0e\\xe3\\x5e\\xfa\\x17\\xa6\\x65\\xe9\\xb2\\xb0\\x30\\x97\\xfb\\xfe\\x86\\xdc\\xeb\\x71\\x3e\\xe9\\x6d\\x96\\x35\\xfb\\x55\\xb9\\xd7\\xa3\\x69\\xff\\xe3\\xa1\\xed\\x52\\x27\\x25\\xc2\\x6f\\x57\\xd6\\xb7\\x0a\\x4b\\xbc\\xb2\\x2e\\x3a\\x90\\x41\\x2c\\x71\\xf4\\x76\\xff\\xc3\\x8b\\x4c\\x7b\\x60\\xa3\\x00\\x34\\x8d\\x10\\xdd\\x27\\x56\\xe7\\x00\\x5e\\xde\\x64\\xa4\\x89\\x20\\xf1\\x78\\x92\\x6d\\xbc\\x63\\x3b\\x5f\\x41\\x18\\xe6\\x87\\x4b\\x59\\xcc\\x0f\\x47\\xc4\\x3d\\xf7\\x20\\x3f\\x40\\xea\\x38\\x84\\x12\\x91\\x09\\x39\\x84\\xfe\\xb2\\x66\\xa7\\x6b\\xd5\\x4a\\x39\\x2b\\x07\\x8a\\x72\\x15\\x41\\xfa\\x09\\xd0\\x90\\xac\\xc6\\x9c\\xda\\xa2\\x2c\\x61\\xdc\\x0a\\x87\\x42\\x04\\xd4\\x49\\x58\\x5b\\x87\\x84\\x05\\x56\\x69\\x25\\x70\\xb0\\xf3\\x20\\x14\\x6c\\x79\\x70\\xe3\\xe2\\xc6\\x07\\xb7\\x14\\x00\\x14\\x6c\\x7e\\x48\\xfa\\xb8\\x98\\xd1\\x30\\x5d\\x5f\\x3f\\xdd\\x90\\x81\\x7f\\x9c\\xd1\\x38\\x5d\\x47\\x3f\\x65\\x8f\\xbc\\x7e\\x4f\\x7f\\x18\\xbc\\xc4\\xd7\\x87\\xf7\\xdf\\xfd\\xda\\xa8\\x76\\xf4\\xb5\\x7b\\xd6\\x87\\xf1\\x53\\x70\\x3a\\x7c\\xfd\\x3d\\xaf\\x8e\\x36\\x9f\\x59\\x68\\x0d\\x67\\x4e\\x86\\xb7\\x2d\\x9c\\x69\\x6a\\x3c\\x33\\xdf\\x16\\xb1\\x34\\x1b\\xde\\xb6\\x70\\x6f\\x93\\xa8\\xf7\\xff\\x8c\\x7f\\x93\\xec\\xa5\\xe3\\x41\\x75\\x26\\x20\\xad\\x58\\x1c\\xe5\\xd5\\x3a\\xd3\\x6a\\x5b\\x0b\\xdd\\x15\\x7f\\xb6\\x88\\x6b\\xb6\\x4f\\x86\\x4c\\x2e\\xfd\\x80\\x78\\x96\\x2c\\xcc\\x8f\\x96\\x2c\\x7c\\x2f\\x94\\xd1\\x18\\x5d\\x69\\x4c\\x28\\xf6\\x47\\x09\\x74\\xc2\\xac\\xd0\\x97\\xc4\\x75\\x21\\xaa\\x4b\\x4a\\x9d\\x4a\\x17\\x2d\\x4c\\x22\\xad\\xa0\\x28\\x51\\xf2\\x60\\x86\\x3a\\xe7\\x5d\\x2e\\xb7\\x30\\xe8\\x8b\\xf5\\x8f\\x75\\x8e\\x3d\\x3e\\x5d\\x04\\x8b\\xf0\\xe4\\x03\\xcd\\xcf\\xd4\\x2f\\xc2\\x3f\\x27\\x24\\x41\\xce\\xd0\\xfd\\x13\\x10\\xc3\\xff\\xf1\\xf1\\xbb\\x19\\xd0\\x24\\xe0\\x68\\x04\\xe8\\x0e\\x89\\x2b\\x65\\x85\\xae\\x14\\x77\\xbb\\xba\\xd2\\x35\\xb0\\xce\\x83\\x65\\x6e\\xa9\\x26\\xf0\\x22\\xcc\\x8f\\x82\\xb9\\x42\\x0e\\xf1\\x6f\\x92\\x73\\xc4\\x73\\x83\\xae\\x14\\x77\\x5b\\xba\\x92\\x63\\x85\\xae\\xf4\\x09\\x58\\xe7\\xfd\\xd6\\xb9\\x9e\\x90\\x89\\xa5\\x0d\\x81\\x07\\x81\\x30\\x8f\\xf8\\x1e\\x28\\x23\\x1e\\x29\\xce\\x61\\x8a\\x9e\\x59\\x37\\xd7\\x93\\xe2\\x6e\\xad\\x27\\xdd\\xcc\\x46\\xa5\\x2b\\x81\\x97\\x00\\x3a\\x4f\\x6c\\x74\\xb9\\x36\\x9e\\xe8\\xe4\\x8f\\xf1\\x5f\\x17\\xbe\\x17\\x0f\\x54\\xe8\\xf4\\x15\\x03\\x45\\xc4\\xc3\\x0f\\x43\\x6e\\xf7\\x4e\\x9f\\x6f\\xd7\\x1a\\x3b\\xf3\\x43\\x7e\\x98\\xcf\\x02\\x5d\\x71\\x97\\xc3\\xde\\x55\\xa2\\x47\\x0c\\x7a\\x12\\x21\\x62\\x21\\x9e\\xcf\\xd0\\x93\\xe2\\xfe\\x71\\x3d\\x29\\xfe\\xcb\\xcd\\x3b\\x3b\\x2c\\x96\\x8e\\x9d\\xcd\\xfc\\xcf\\xe6\\x5e\\x70\\x35\\x3b\\xe2\\xe3\\xf3\\x9a\\x5c\\x78\\x70\\x6e\\x0e\\x3f\\x02\\x79\\xbd\\xdb\\xab\\xab\\x76\\xac\\x75\\x02\\xf1\\xf8\\xaf\\xf1\\x59\\x60\\xf4\\x76\\xe4\\x64\\x77\\x94\\x99\\xc0\\xff\\xae\\x74\\xb6\\xff\\x2f\\x84\\x48\\x96\\xd4\\xae\\xeb\\xf4\\xa4\\xb8\\xbf\\x53\\x4f\\xd2\\x41\\x1e\\xf4\\x77\\x9f\\x9d\\x2c\\x2d\\xdd\\x72\\xae\\x9b\\x37\\x2f\\x42\\x7f\\xf1\\xa6\\xa6\\xac\\xec\\xa6\\xf1\\x62\\xfc\\x08\\x64\\x77\\xee\\x6a\\x6e\\xd9\\xd5\\x6d\\x95\\x1a\\x92\\x5a\\xd4\\x95\\xef\\xee\\x2a\\xd2\\xd2\\x79\\x71\\xd7\\xb5\\x2b\\xc4\\x49\\x79\\x38\\x6a\\xbd\\x55\\x08\\x90\\x0c\\x81\\x6c\\x0a\\x11\\x8e\\xe5\\x08\\x3b\\x85\\x64\\x88\\x23\\x32\\x6e\\x50\\x1e\\x40\\x4f\\xa4\\x06\\x39\\x6f\\x52\\x98\\x06\\x40\\xe6\\x0c\\x93\\x71\\x45\\xc2\\xd8\\x6c\\xc8\\xa6\\x27\\xe8\\xca\\x93\\xf3\\x7a\\x9b\\x94\\x9b\\x02\\xdf\\x71\\x59\\xd1\\xf4\\x1a\\x37\\xcc\\x31\\xf5\\x0b\\xf7\\x77\\xec\\x78\\x6d\\x6f\\x59\\xd9\\x9e\\xd7\\xb7\\xaf\\x7d\\x68\\x5b\\x05\\x33\\x07\\xf6\\xae\\xd9\\xf2\\xf5\\x27\\xd6\\xe5\\x12\\xff\\x9f\\x70\\x14\\x6b\\x5f\\x7f\\x07\\xf3\\x51\\x7a\\x79\\x7f\\x71\\xf3\\xc1\\x7e\\x67\\xf7\\xd9\\xb7\\x37\\x67\\x6e\\x79\\xfb\\xde\\xee\\xfc\\xe1\\x53\\xdd\\x65\\xe3\\xf5\\xe6\\xaa\\xd9\\x73\\xad\\xc3\\x2d\\xf7\\x6c\\x2d\\xa7\\xfd\\xb9\\xfb\\xda\\x15\\xb2\\x9d\\x34\\xa1\\x54\\x54\\xb8\\xac\\x1b\\x21\\xc4\\x70\\x88\\xe6\\x83\\x10\\xc7\\x98\\x0a\\x01\\x22\\x12\\x28\\x05\\x2f\\xeb\\x46\\x81\\xdb\\x58\\x36\\x2e\\xc8\\x41\\x9e\\x2a\\xcc\\x53\\x8d\\x78\\x3f\\x0a\\xdc\\x1e\\x7b\\x3b\\xb5\\xde\\x76\\x85\\xa2\\x6e\\x64\\x50\\x28\\xd4\\x16\\x3d\\xb5\\x89\\x2a\\x1d\\x92\\x62\\x19\\x20\\x78\\x37\\xd1\\x63\\x16\\x02\\x9e\\x75\\x67\\x9e\\x95\\x50\\x0d\\xe9\\xcf\\x6f\\x30\\x96\\xce\\x43\\xeb\\xca\\x46\\x5b\\x0a\\xf4\\x0a\\x53\\xe7\\xd1\\xc1\\x92\\xa1\\xa6\\x02\\x93\\x0a\\xbf\\x31\\x37\\x07\\x79\\x1a\\xd7\\xda\\xea\\x9c\\x9a\\x3c\\xbd\\x2a\\x34\\x54\\xad\\x77\\xd6\\x5a\\xad\\x35\\x4e\\x9d\\x3a\\x14\\x37\\xae\\x7b\\xe5\\x9e\\xde\\xec\\xa6\\xf1\\x1d\\x07\\xbd\\xda\\xc1\\x6f\\x3c\\x38\\x68\\xae\\x19\\x9c\\xda\\x55\\xc2\\xc7\\x13\\x8f\\xff\\xbd\\xba\\x07\\x0f\\x74\\x98\\xca\\xd7\\x0c\\x8d\\xe6\\x6a\\x73\\x47\\x37\\xac\\xa9\\x30\\x99\\x2a\\xd6\\x6c\\x18\\xcd\\x15\\xfa\\x75\\x04\\x21\\xe6\\x3f\\xe8\\xde\\x91\\x22\\xc8\\xa0\\x32\\x10\\x93\\x18\\x88\\x67\\x1e\\x9d\\x10\\xdc\\xca\\x83\\x0f\\xa1\\xc4\\xf8\\x38\\x35\\x52\\x50\\x29\\x54\\xd0\\x8b\\xe8\\x49\\x0e\\x3a\\x90\\x80\\x1b\\x01\\xbd\\x28\\x3d\\x12\\x33\\xff\\xb1\\xc8\\x1f\\xe6\\xff\\xe3\\x30\\x24\\xe4\\xf7\\x78\\xd3\\x4b\\x36\\xdf\\xd3\\xc1\\x7f\\xa4\\x2b\\xeb\\xcd\\x87\\x5d\\xfc\\xd3\\x85\\xa3\\x3e\\x8b\\x70\\xb4\\xc3\\x57\\xf8\\x06\\x78\\x2b\\x2a\\xbf\\x79\\xa8\\xb0\\x61\\xb1\\x2d\\x0b\\xf8\\xd7\\x6d\\x2d\\x05\\x69\\x00\\xaf\\xa5\\x16\\xb4\\xd3\\xbd\\xff\\xda\\x5f\\x79\\x1f\\x49\\xe1\\x10\\xca\\x43\\x75\\xde\\xea\\x4c\\x8c\\x59\\xa2\\x02\\x86\\x8d\\x05\\xcc\\x30\\xf5\\x48\\x2e\\x93\\xcf\\x84\\x80\\x8c\\xa3\\x8a\\xff\\x60\\x40\\x4d\\x4a\\x5d\\xed\\xe8\\xd2\\xe2\\x86\\x3c\\x87\\xa0\\x9f\\x5a\\xf4\\x16\\x9d\\x28\\xab\\x6a\\x15\\x81\\x0c\\xa1\\x62\\x4a\\xd4\\xa0\\x61\\xcf\\xb9\\x0a\\x31\\xab\\x73\\x3a\\x9c\\x0e\\x95\\x16\\xaf\\xe1\\x3f\\x94\\x32\\x87\\x02\\x98\\x9b\\xe7\\x1a\\xca\\x8b\\x23\\x35\\x15\\x1a\\x5b\\x6d\\x6e\\x1c\\xc0\\x72\\x2a\\xd1\\x7f\\xfd\\xd7\\x45\\x48\\x22\\xef\\xf3\\xe7\\xa4\\x84\\xa2\\xfc\\x35\\xff\\x7f\\x35\\xee\\xeb\\xcb\\x53\\x6e\\x90\\xc9\\x8d\\xe5\\xbd\\x79\\x3d\\x2b\\xf3\\x8b\\x92\\xf7\\x47\\xde\\x7d\\x57\\x58\\xa3\\x8f\\x53\\xbc\\x4e\\x60\\x8d\\x12\\x96\\x63\\x09\\x37\\x25\\xbc\\x8e\\x0c\\xd0\\x14\\xe2\\x90\\x0c\\x38\\xd9\\x60\\x60\\x61\\xa6\\xfa\\x82\\xab\\x35\\x05\\x7f\\xe6\\x1a\\xbd\\x65\\x52\\x67\\x99\\x56\\xa5\\x4d\\x61\\xf0\\xf6\\x5b\\x67\\x75\\xee\\xdd\\xdf\\x61\\x61\\xe0\\xbf\\xf8\\x30\\xc6\\xd2\\xb1\\xff\\xb3\\x73\\x3b\\x57\\xcf\\x9c\\x69\\x1c\\x6e\\xba\\x77\\xb6\\x4a\\xb4\\xa1\\xa5\\x22\\x44\\x5e\\xa4\\x7e\\xe2\\xcf\\xf0\\x89\\xc5\\xfd\\xfd\\x3e\\x31\\xa5\\x20\\x97\\xeb\\xdc\\x8e\\x12\\xd6\\xb9\\xd2\\x27\\xf6\\xf3\\x0b\\x8d\\x8b\\x6d\\x99\\x99\\x6d\\x8b\\x8d\\xfc\\x9f\\xf9\\xdf\\x00\\x1b\\xa3\\xf3\\x74\\x16\\x19\\x70\\x8a\\xc1\\x91\\x16\\x23\\x07\\xc0\\xf2\\x0b\\x79\\x3e\\x7b\\x5c\\x9c\\xbd\\xc1\\x41\\x3c\\x7c\\x33\\xd8\\xbb\\xe7\\x2a\\x2b\\xe7\\xd7\\x38\\x40\\x90\\x25\\x2b\\x4e\\x1e\\x59\\xe8\\x75\\x8e\\x42\\x4e\\xd3\\xf0\\xd6\\x69\\x3b\\x7c\\xe0\\xff\\x77\\xde\\x0b\\xc6\\xd2\\xb6\\x2c\\x4b\\x73\\x91\\x01\\x10\\xa6\\xf9\\x67\\x4e\\x53\\x7c\\x99\\x4e\\xf4\\x36\\xa1\\x10\\x39\\x26\\x32\\x7a\\xa6\\x08\\xa7\\xea\\xdf\\xe1\\x0d\\xd3\\x5e\\xef\\x0d\\xbb\\x0a\\xdd\\x73\\xf7\\xd7\\x4f\\x37\\x9a\\x4c\\x8d\\xd3\\xf5\\xfc\\x9f\\xf8\\x2f\\xcc\\xcd\\xc1\\x77\\xee\\xb7\\x55\\x65\\xab\\x54\\xd9\\xd5\\xb9\\xf8\\x04\\x5c\\xe2\\x9b\\xc1\\xb1\\x66\\xae\\xbc\\x7c\\xbe\\x27\\x0f\\xb0\\xc9\\xff\\x33\\xe2\\xa1\\x0d\\x34\\x79\\xdb\\x32\\x33\\x9b\\x8a\\x8d\\x12\\xc7\\x67\\x3a\\x42\\x24\\x86\\x43\\x48\\x8b\\x5c\\x5e\\x87\\x06\\x8b\\xd1\\xf7\\x32\\x4e\\x36\\x23\\x07\\x8e\\x05\\x04\\x1c\\x0a\\x3a\\x51\\x53\\x97\\x5d\\x62\\x0a\\x85\\xca\\xa0\\xd2\\x45\\x87\\xac\\x5e\\x04\\x37\\x9d\\xf4\\x47\\xf8\\x8b\\x37\\xa6\\xcb\\xbd\\xef\\xbe\\x45\\xe8\\x24\\xbf\\xe6\\x8f\\xdd\\x34\\x69\\x2e\\xf9\\xf5\\xc8\\xab\\xaf\\x52\\xfc\\xea\\x23\\x92\\xfc\\x2c\\x9c\\x7c\\x0c\\x66\\x66\\x29\\x3f\\x37\\x95\\xa7\\x70\\x8f\\xd4\\x98\\xeb\\x64\\x1d\\x58\\x76\\x90\\x29\\xc0\\x89\\x37\\x6c\\xe7\\xcf\\x2d\\xf2\\x77\\x89\\x32\\xc8\\xd5\\x77\\xf8\\x47\\x60\\x50\\x94\\x85\\xb7\\x5e\\xbb\\x42\\x76\\xd1\\xb8\\x01\\x8a\\x2c\\x63\\x30\\xd4\\xcb\\x38\\xc2\\x60\\xac\\x5e\\x91\\x2e\\x35\\x25\\x10\\x3b\\x60\\x50\\x19\\x54\\x19\\x06\\xb9\\xa0\\xd1\\x28\\x03\\x87\\x95\\xb4\\x30\\x82\\x38\\x83\\xd5\\x1f\\xc9\\x0e\\xac\\xad\\xdc\\xec\\xb3\\xd6\\x7b\\x2c\\x91\\x91\\x96\\x82\\x7a\\xab\\x6f\\x73\\xa5\\x16\\x6f\\xc3\\xd1\\x86\\xd2\\x5c\\x7b\\x79\\x86\\x02\\x2f\\x82\\x22\\xa3\\xdc\\x9e\\x5b\\x62\\x8c\\xc6\\xec\\xe5\\xab\\xef\\xd6\\x9d\\xda\\x5a\\x95\\x9c\\x57\\x9d\\x99\\x59\\x9d\\x97\\x5c\\xb5\\xf5\\x54\\x1d\\x29\\xb8\\xfa\\x6e\\xce\\x58\\x77\\x7e\\x7e\\xf7\\x58\\xce\\xea\\xcf\\xe2\\xb8\\xb5\\xd1\\x9c\\x23\\x9e\\x1b\\xdb\\x1f\\xf7\\x8f\\xb7\\x5f\\xb1\\xe2\\x23\\x39\\x0c\\xfa\\xda\\x49\\x5f\\x6e\\x63\\x71\\x56\\x54\\x54\\x76\\x51\\x63\\x4e\\xc3\\x64\\xad\\x1e\\xe6\\x21\\xc6\\x5c\\x91\\x6b\\xaf\\xb6\\xc4\\x6e\\x87\\x58\\x4b\\xb5\\x23\\xb7\\xdc\\xac\\x24\\x1e\\xbf\\xdd\\x77\\x62\\x93\\x37\\xc0\\xad\\xe3\\xdd\\x74\\xc2\\x87\\xbf\\xe7\\xb7\\xdb\\x87\\xdb\\x1c\\x8e\\xb6\\x61\\xfb\\xea\\xcf\\xc2\\xfa\\xd6\\x22\\x44\\xd2\\xb8\\xf0\\xa0\\xaf\\x98\\x25\\xec\\x0c\\x07\\x84\\x01\\xd1\\x88\\x06\\x21\\x20\\x97\\x81\\x7c\\x08\\xc9\\x64\\x01\\x01\\x70\\x79\\x75\\x08\\x32\\x60\\xa8\\x88\\x30\\x58\\x96\\x71\\x24\\xe2\\xc1\\x65\\x49\\x10\\x3f\\xc9\\xbf\\x0e\\xae\\xae\\xbb\\xc7\\x0b\\x0b\\xc7\\xef\\xee\\xe2\\xdb\\xde\\x79\\x67\\x11\\xaa\\x84\\x9f\\x8a\\x87\\xeb\\x32\\x32\\xea\\x86\\x8b\\x89\\x9b\\x1f\\x03\\x6b\\xd7\\xce\\xa6\\xa6\\x5d\\xdd\\xb9\\xc4\\x3d\\x0c\\x53\\xfc\\x69\\xff\\x43\\x7c\\x16\\x68\\x8b\\xba\\x5c\\xce\\xae\\xe2\\x74\\x51\\xee\\xf9\\x03\\x39\\xc1\\x7e\\x13\\x95\\x42\\xa4\\x88\\xaa\\x70\\x22\\xcc\\x20\\x06\\xa3\\x29\\x24\\xe1\\x0c\\x68\\x80\\x24\\x2b\\x43\\xec\\x20\\x0a\\x0b\\x5b\\xb6\\x5b\\x53\\x27\\x9d\\xbc\\x2f\\x14\\xe4\\xf2\\x14\\x79\\x40\\x7e\\x28\\xb8\\xfd\\xc2\\xa1\\xa1\\x1a\\xb1\\x06\\x14\\xa8\\x20\\xf1\\x1f\\x7f\\xfa\\xff\\xc3\\x83\\x05\\xc9\\x23\\xa6\\xb4\\xa4\\xb8\\xa8\\xd0\\x23\\x5a\\xba\\x63\\x4d\\xd1\\xe1\\xc2\\x9a\\x0f\\x58\\x63\\x03\\xc7\\x01\\x09\\x40\\x25\\xc8\\x8a\\x50\\x21\\x22\\xd9\\x6e\\x81\\x7c\\x39\\xc6\\xe8\\x69\\x9f\\xa8\\xe8\\xde\\xdf\\x9d\\xc3\\x6e\\x0e\\x49\\xce\\xef\\x2e\\xb7\\x35\\xe4\\x1b\\x34\\xa1\\x50\\xca\\x7f\\x3d\\x54\\x63\\xc8\\x6f\\xb0\\x55\\x74\\xbb\\x93\\x43\\x36\\xb3\\x39\\xdd\\xfb\\xbb\\x2b\\x26\\xda\\x3d\\xc6\\x98\\x2f\\xcf\\xcd\\x31\\x59\\x35\\x35\\xa7\\x0f\\xcd\\x74\\xd8\\x6a\\x76\\x3c\\xd6\\x53\\xbe\\xb3\\xbf\\x20\\xb3\\x76\\x60\\xcb\\x36\\x77\\xdd\\xf0\\xf1\\xfc\\xd9\\xc9\\x81\\x5a\\x8b\\x7b\\xfd\\xce\\xf2\\xce\\x87\\x77\\xd6\\xd9\\x3a\\x66\\x0e\\xde\\x55\\x7b\\xdc\\x5f\\x20\\xfa\\x60\\x00\\x3d\\x7f\\xed\\x0a\\xd9\\x47\\x9a\\x90\\x13\\x38\\x51\\xc2\\xb3\\xa1\\x90\\x50\\x59\\x68\\xc8\\x72\\x38\\x54\\x18\\xc8\\x08\\x8d\\x87\\x1a\\x44\\xa1\\xa1\\x5c\\x9f\\x1c\\x38\\x2e\\x4e\\x0c\\x88\\x12\\x16\\x4f\\x0a\\xb3\\x3c\\x66\\x9f\\x5d\\x90\\x16\\x09\\x0d\\xa5\\x7d\\x15\\x10\\x15\\x24\\x23\\x92\\x58\\x41\\xec\\x3f\\xf6\\xe4\\xff\\x87\\x87\\xd2\\xf1\\x72\\xe6\\xe5\\x5a\\x33\\xcd\\x7a\\x85\\x42\\xa1\\xd7\\xc7\\x1a\\xc4\\xf1\\xd2\\xde\\x10\\xc5\\x15\\x30\\xab\\x07\\xd0\\xe2\\x81\\x53\\x9d\\x79\\x81\\x7f\\x4a\\xed\\xea\\xab\\xc9\\xad\\xb5\\x27\\x93\\x69\\xc8\\xed\\x98\\xad\\x1c\\x3c\\xd6\\x69\\x7a\\x6d\\x7e\\xfe\\x35\\xc8\\xe8\\x3c\\x3a\\x50\\x37\\xd7\\x96\\x35\\xcd\\x24\\xda\\xea\\x1c\\x55\\x7d\\x2e\\x0d\\x40\\x1f\\xfc\\x25\\xa4\\xfa\\xee\\x05\\x9f\\xb1\\xac\\x33\\xa7\\x7c\\xfb\\xba\\xfc\\x9e\\xd3\\x2f\\xaf\\x0f\\xe1\\x23\\x88\\x87\\x4f\\x5d\\xfb\\x95\\x53\\xdd\\xc5\\xc3\\x87\\x6b\\x6d\\x03\\xf5\\xd6\\xfa\\xd9\\x53\\x95\\x41\\xde\\xf4\\x67\\xa8\\x9f\\x2f\\x52\\xd8\\xd5\\x23\\x81\\x13\\xe4\\x44\\x0e\\x4b\\x47\\x0d\\x21\\x6a\\x1f\\x2b\\x59\\x06\\x25\\x92\\x51\\x8a\\xbc\\xa0\\x56\\x41\\x86\\x86\\x72\\x83\\x96\\x61\\x8e\\x7f\\xb8\\xf0\\x93\\x27\\x77\\x61\\x3c\\x05\\xfc\\x4e\\x7f\\x0b\\x7c\\xf4\\x17\\xd1\\xf0\\xc7\\x1b\\xa8\\x7b\\xb1\\x0a\\xbf\\x4d\\x9f\\x35\\x21\\xe9\\x98\\x61\\x28\\x5a\\x78\\x56\\xd4\\x0d\\xcf\\x8a\\xbb\\x8d\\x67\\x99\\x64\\xcc\\xfa\\x2f\\x2f\\xbe\\x7e\\xcf\\x2e\\xf8\\xee\\x38\\x7c\\x7f\\xb7\\xff\\x05\\xb8\\xeb\\xd1\\x8c\\x0c\\xe8\\xe3\\x9f\\x12\\xfe\\xa8\\xf0\\xf9\\x75\\x98\\xdf\\xb5\\x0b\\x61\\x74\\x1a\\x21\\xf2\\x0a\\xf5\\x9d\\xd2\\x0c\\x65\\x6a\\x41\\xa2\\xac\\x0f\\x05\\x99\\xa0\\x3d\\x83\\x0c\\x6d\\x10\\x06\\x5b\\xed\\x0b\\xa1\\x0a\\x3b\\xb5\\x7c\\xae\\xa0\\x52\\x0d\\x0b\\xda\\x3e\\x19\\x9d\\x52\\x1c\\x1b\\xad\\x52\\x7a\\xdb\\xef\\x1d\\xdf\\x70\\x68\\x7e\\x71\\xf7\\xef\\xe7\\xe6\\x80\\xfc\\xef\\x09\\x18\\x5d\\xe4\\x0b\\xa0\\xf8\\x41\\xf8\\x88\\x8f\\x0b\\xfc\\xb1\\x97\\x97\\x1e\\x67\\xd6\\x7f\\xda\\x82\\xdb\\xf0\\x43\\xa2\\x0c\\x75\\x1c\\x21\\xf2\\x2a\\xc5\\x8c\\xc7\\xdd\\xac\\x2d\\x83\\xe2\\xc4\\xfb\\xbb\\xdb\\x62\\x92\\x31\\xdf\\xdf\\x3f\\x76\\x64\\x7e\\xc7\\xe2\\xef\\xe7\\xe7\\x21\\xf2\\xe7\\xa3\\xb0\\x69\\x3b\\x5f\\x09\\x19\\x77\\x61\\x06\\x7a\\xf8\\x67\\x02\\x7f\\xc4\\xe3\\x3f\\x8e\\x17\\xae\\xbe\\x03\\x6f\\xc1\\x8b\\xe1\\xd1\\x42\\x7b\\xb6\\x4b\\xb8\\x9b\\x34\\xa4\\x43\\x76\\x6f\\x0e\\x06\\xc4\\x49\\x8a\\xac\\x5c\\x4e\\x23\\xd7\\xd5\\xbe\\x10\\x19\\xcb\\x48\\x26\\x6a\\x5d\\x3a\\x4a\\x43\\x69\\xda\\x18\\x83\\x52\\xab\\xd0\\x85\\x72\\x89\\x16\\x07\\xe3\\x72\\xb9\\x1d\\xa0\\x05\\x87\\x5a\\xad\\x61\\x74\\x8c\\x95\\x31\\xe9\\xa8\\x94\\x11\\xc9\\xa8\\x18\\x00\\xed\\x0e\\x80\\xa7\\x9f\\x2d\\xe2\\x9f\\x61\\xf6\\xf0\\x2f\\x7a\\xbe\\xf8\\x24\\xc0\\x1c\\x80\\xc6\\xd1\\x56\\x38\\x81\\xe7\\x26\\x0b\\xdb\\x1c\\x1a\\x80\\x03\\x80\\xfd\\x7f\\x84\\xfb\\x9e\\x7f\\x1d\\xe3\\x2f\\xf9\\xdb\\xf1\\xeb\\xcf\\xf3\\xe3\\x70\\x9f\\x77\\xb0\\x3c\\x1d\\x58\\xff\\x18\\x7e\\x08\\xd2\\xcb\\x07\\xbd\\xfc\\x38\\xa3\\xc6\\x79\\xb4\\xff\\x0e\\x23\\x44\\x3c\\xc4\\x83\\x92\\x50\\x1a\\x2a\\xf0\\xba\\xd4\\x4a\\xca\\xd3\\x75\\x63\\xb3\\xe3\\x56\\x36\\x3b\\x2d\\x15\\x25\\xa1\\x24\\x65\\x8c\\x4e\\xa9\\x88\\x51\\xd2\\x66\\x9b\\xa4\\x66\\xab\\xd5\\x1a\\x95\\xce\\x64\\x34\\x8a\\xad\\x36\\xe9\\x38\\x4e\\x26\\x03\\x87\\x52\\x7b\\x04\\xe0\\x9f\\x9e\\x21\\xfc\\x4f\\x99\\x66\\xfe\\xa7\\x4f\\x3f\\x8f\\xe7\\x31\\x6c\\x99\\xf3\\xc8\\x17\\x48\\xf9\\xdc\\x16\\x00\\x18\\x92\\xff\\x9a\\x77\\x7e\\xf0\\xfa\\xcb\\x58\\x18\\x63\\xfc\\xf2\\xeb\\x1f\\x7c\\x70\\x62\\x3f\\x44\\xf2\\xe9\\xf0\\x5b\\x19\\xec\\x3f\\xf1\\x01\\x6e\\x83\\xfd\\x94\\x57\\x0b\\x21\\xb2\\x89\\xbd\\x8c\\xcc\\x28\\x0b\\xe5\\x79\\x6d\\x18\\x90\\x9c\\xc3\\x62\\x2b\\xc3\\xc2\\xa0\\x27\\x14\\x56\\xf5\\x6e\\x96\\x45\\x10\\xf7\\x63\\x55\\xb6\\x18\\x83\\x4a\\xab\\xa0\\xfb\\x83\\x52\\xcb\\x68\\x19\\x41\\xd4\\x14\\x71\\x4d\\x81\\x46\\x46\\x8a\\x3f\\xb8\\xdc\\xe2\\x36\\xae\\xd4\\x7e\\x00\\xdf\\xf8\\x04\\x3f\\xf6\\x3f\\x69\\x55\\xfd\\x85\\x89\\x78\\x23\\x0e\\x4b\\xf5\\x58\\xab\\x60\\x23\\x54\\x5b\\x0b\\xd2\\xc2\\xf0\\x46\\x1c\\x9f\\xf4\\x8b\\xcd\\x9b\\x71\\xc2\\x97\\xf9\\x07\\x18\\x8c\\x2f\\xf9\\xdb\\xc0\\xd1\\x33\\x5f\\xc9\\x57\\xc1\\xeb\\x96\\xd6\\x12\\x23\\x30\\xfe\\x51\\x7c\\x81\\x01\\x63\\x49\\xab\\x45\\xf8\\xad\\x7c\\x26\\xdb\\xbf\\x91\\xbd\\xec\\xbf\\x03\\xd3\\xf9\\xb1\\x20\\xf1\\xb9\\x0a\\xef\\xe0\\xf5\\x16\\x6b\\x93\\xa9\\x15\\x96\\x05\\x26\\x44\\x86\\x11\\x30\\x48\\x78\\x15\\x51\\xe6\\x8b\\xf3\\x85\\x87\\xca\\x39\\x22\\xb9\\xd7\\xb2\\x2c\\x34\\x45\\x84\\x4e\\x69\\x50\\xd1\\xc9\\x1b\\x1b\\xc1\\x25\\x5b\\xb4\\xc2\\x6c\\x91\\x26\\x2e\\xa3\\x65\\x82\\x2f\\xa6\\xd3\\xc9\\x74\\xf4\\xcd\\x68\\x08\\x38\\x28\\xb5\\x70\\x12\\x43\\x42\\xf2\\x07\\x93\\x93\\x70\\xe9\\x57\\xf8\\x9e\\x5f\\x55\\x0c\\x96\\xa4\\xe0\\x8d\\x38\\xca\\xe0\\xb5\\x69\\x43\\xf0\\x30\\x9b\\x69\\x2b\\x35\\x46\\x01\\x84\\x3e\\xc5\\xbf\\x08\\xb2\\xca\\x69\\x8b\\xa0\\x05\\xf3\\x4a\\xf8\\x03\\x1f\\xc3\\xd8\\x3a\\xe7\\xab\\xf9\\x4f\\x40\\x96\\xdb\\x56\\x94\\x1e\\xcb\\x67\\xc3\\x2f\\xc2\\xd2\\x8b\\xda\\x72\\xf9\\x4f\\xf0\\x1a\\xd8\\x27\\xbc\\xcf\\xbf\\xf0\\xa3\\x44\\x27\\x9b\\x44\\x95\\xa8\\x11\\x75\\x7a\\xdb\\x7c\\x20\\xe3\\x34\\xc0\\x22\\x5c\\xdf\\x08\\x5c\\x6d\\x76\\x16\\x66\\x6a\\x10\\x27\\xe3\\x66\\x90\\x0c\\x0b\\xa2\\x36\\xe5\\xf3\\x60\\x87\\x02\\x61\\x1c\\xea\\x20\\xfd\\xb4\\x86\\x69\\x00\\x54\\x5f\\x57\\x53\\x5d\\x51\\x56\\xe0\\xd2\\xa5\\x45\\x86\\xdf\\xc4\\x09\\xa1\\x75\\x6a\\xaf\\xc3\\xf7\\x50\\x9e\\x78\\x41\\x83\\x96\\x59\\x19\\x4a\\x17\\xbf\\xc2\\x11\\xa1\\x0c\\x92\\x48\\x25\\x36\\xdf\\x31\\x52\\x98\\x3f\\x70\\xa0\\x8e\\xff\\x2a\\x94\\xf7\\x3f\\x77\\xb0\\x31\\xb3\\x76\\x63\\x61\\xd9\\x96\\x26\\x4b\\xd7\\xa9\\x17\\xfb\\x2b\\x0c\\xa5\\xd6\\x04\\x48\\x77\\x14\\x26\\x64\\x67\\x76\\x56\\x59\\x00\\xb2\\x9b\\x37\\x15\\x97\\xd6\\xde\\xb1\\xb9\\xdc\\xbb\\xe5\\x9e\\xd6\\x43\\x0f\\x8b\\x04\\x54\\x4c\\x72\\x5a\\xc5\\x26\\x5f\\xf5\\x68\\x95\\x6e\\x24\\xb7\\xff\\xae\\xc1\\x92\\x91\\xb6\\x62\\xa5\\xa2\\xb0\\x7b\\xb6\\x6e\\xf4\\xfc\\x46\\x7b\\x54\\x6a\\x6e\\xba\\xa1\\x28\\x5b\\x1b\\xda\\x1d\\xed\\xa8\\xee\\xce\\x2b\\xea\\x74\\x25\\x18\\xea\\xa6\\x1b\\x3b\\x67\\x6b\\x52\\x47\\x99\\xf3\\x12\\x73\\x95\\xd0\\x57\\x7f\\xe0\\x47\\x99\\xab\\x9c\\xe1\\x1f\\xeb\\xab\\xb8\\xff\\x3f\\xfb\\x2a\\xef\\xb3\\xfa\\xca\\x54\\x3a\\xdf\\xeb\\x76\\x75\\x6d\\x76\\xf3\\xbf\\x00\\x7d\\xd3\\x7d\\x8b\\xf5\\xda\\x82\\x66\\xab\\xa3\\xbb\\x54\\xdf\\xba\\xff\\xb1\\x96\\x6c\\xa9\\xaf\\x8a\\x12\\xb2\\x33\\xbb\\xaa\\x2c\\x42\\x57\\x15\\x99\\x0b\\xe6\\x06\\x8a\\x8b\\x87\\x76\\x97\\x1e\\x7c\\x42\\xec\\x2a\\xdc\\xa3\\xcc\\x6e\\x28\\xb0\\x57\\x59\\x94\\xa3\\xda\\xaa\\x2d\\x8d\\x56\\x5f\\x91\\x35\\x2a\\x22\\xb3\\xb8\\x25\\xaf\\x7d\\xbe\\x41\\x2f\\x74\\x95\\xb1\\xd0\\x9a\\x16\\xda\\x1d\\x9d\\x57\\x25\\x76\\x95\\xda\\xde\\x5c\\x50\\xdc\\x98\\x15\\x3d\\xca\\x28\\xc5\\xae\\x62\\x28\\x9f\\xa2\\x8f\\x7d\\x1b\\x25\\x23\\xab\\xc4\\xe1\\x72\\x5d\\x88\\x6c\\x72\\x30\\x44\\x36\\x05\\x35\\x98\\x34\\x26\\x4d\\xb6\\x91\\x7a\\x61\\xae\\xe3\\x6f\\x61\\x25\\x84\\x02\\x91\\xb1\\xda\\xcf\\xa1\\x48\\x94\\xe8\\x5b\\x96\\x9e\\xc0\\xbf\\x5b\\x4d\\x8d\\x88\\x7f\\xe7\\x8f\\xbf\\x0d\\x7a\\x44\\x91\\xc3\\xc5\\x9a\\xbb\\x92\\xc4\\xe5\\x6c\\xf6\\x2a\\x16\\x17\\x06\\xcd\\x5d\\xbb\\x42\\x0a\\x69\\x5e\\xfd\\x34\\x64\\x11\\x35\\x02\\xc4\\x60\\x96\\x19\\x94\\x81\\x14\\xf1\\x96\\xea\\xe3\\x60\\x19\\x51\\x95\\xae\\xd5\\xa8\\x4d\\x46\\xad\\x25\\xdd\\x92\\x94\\xa8\\x4e\\xd3\\xa4\\x99\\xf5\\x72\\xd1\\xd5\\x40\\x25\\xd2\\x40\\x80\\x00\\x50\\x4b\\x62\\x0a\\xa3\\xa4\\x72\\x8d\\x95\\x99\\xa3\\xac\\x88\\x94\\x01\\x71\\x99\\x0b\\x11\\x3e\\xec\\x38\\xd0\\xe7\\x60\\xfd\\x59\\x24\\xaf\\xef\\x50\\x5b\\xfb\\x81\\xb5\\x0e\\x16\\xff\\x90\\x75\\xf6\\x1d\\x14\\x39\\x11\\xd7\\x9c\\x7d\\x67\\x32\\x48\\x85\\xc8\\x57\\x55\\xcc\\xdc\\xdb\\xda\\x7a\\x76\\xba\\x82\\xb9\\xaf\\x62\\xfa\\x4c\\x4b\\xcb\\x99\\xe9\\x0a\\x2a\\x6f\\xe6\\x21\\x44\\x3e\\x62\\xdf\\x42\\xb1\\x68\\xfb\\x8b\\x00\\x62\\xba\\x71\\x41\\x5d\\x50\\x88\\x59\\xe7\\x01\\x21\\x11\\xf0\\x10\\x34\\x25\\xaa\\x44\\x34\\x84\\xc4\\xa4\\xb6\\xe2\\x62\\xe2\\xcd\\x4b\\x7d\\x46\\x81\\x9e\\x9e\\x9e\\x97\\x14\\x2a\\xad\\x89\\x70\\x71\\x34\\x17\\x78\\x09\\xe3\\x70\\xc8\\xa4\\xd4\\x45\\xe0\\xc0\\xf9\\xa9\\x69\\x60\\x53\\x39\\xab\\x7b\\x3d\\x49\\x10\\x9e\\x51\\x64\\x4d\\x8f\\xe2\\x77\\xcc\\xf1\\x9a\\x23\\xd7\\x26\\x27\\x99\\x97\\xca\\x37\\x56\\xea\\x37\\x27\\xe4\\x56\\x5a\\xae\\x6e\\x60\\x2f\\x23\\x40\\x9d\\x08\\x91\\x5e\\x3a\\x06\\xaf\\x8b\\x8d\\x0f\\x93\\x88\\x4d\\x57\\xa4\\xed\\x17\\x7e\\x62\\x96\\x7f\\x4a\\xbc\\xfe\\xae\\x55\\x37\\xd0\\x9c\\xfd\\xab\\x7b\\x21\\xf5\\xc6\\x5e\\x88\\x0b\\xbe\\x54\\xea\\x67\\xf5\\x42\\xea\\xaa\\x5e\\xb8\\xb1\\x80\\xd8\\x0b\\x7a\\x83\\x88\\xb1\\x73\\x2b\\x5d\\x2e\\x31\\xd2\\x41\\x0c\\x74\\x10\\xc4\\xb8\\x3f\\x99\\x2d\\x3f\\x4c\\x9f\\x6a\\x4e\\xc8\\xd1\\x28\\xe2\\xf4\\x71\\x19\\x69\\xf1\\x21\\xfc\\x9b\\x83\\xfc\\xe6\\xdd\\x10\\x75\\xe2\\x04\\x9e\\x19\\xda\\x04\\x20\\x8f\\xe8\\x0f\\x87\\x58\\xad\\x25\\x6e\\xe9\\x0c\\xb5\\xbb\\x33\\xa8\\x96\\x6f\\x22\\x4f\\x4b\\x79\\xa4\\x2a\\x51\\x99\\xb7\\xa4\\x1c\\x10\\x53\\x00\\x1c\\xca\\x07\\x96\\x63\\xea\\x03\\xf8\\xbe\\x64\\xca\\x4b\\x18\\x17\\xa4\\x85\\x4e\\x09\\x62\\x5c\\xb4\\x6c\\x83\\xda\\xa8\\xd2\\x98\\xcd\\xe6\\xd5\\x78\\x96\\x60\\x8c\\xba\\x29\\x68\\x2c\\x91\\x90\\x98\\xac\\x46\\x79\\x03\\x40\\x90\\x71\\xe0\\xad\\xda\\xaa\\x4d\\xb5\\x35\\x23\\xe5\\x69\\x69\\xe5\\xc3\\x35\\xb5\\x9b\\xaa\\xd2\\x17\\xa2\\x0d\\xa5\\x56\\x6b\\xb1\\x21\\x0a\\x20\\xda\\x50\\x6c\\xb5\\x96\\x18\\xa3\\xe0\\x49\\xb8\\x30\\xc5\\xff\\x29\\x42\\xef\\xaa\\xb3\\xc7\\x58\\xa3\\x20\\xd2\\x14\\x99\\x6a\\x4d\\x8f\\x0f\\x31\\xbc\\xb1\\x15\\x1b\\xf6\\xbf\\x7f\\x6f\\x6b\\xeb\\xbd\\xef\\xef\\x87\\xe1\\xfd\\xef\\x9f\\x6d\\x6d\\x3d\\xfb\\xde\\x81\\xd8\\xbe\\xc7\\x76\\xd4\\xd4\\xec\\x78\\xac\\x8f\\x9f\\xeb\\x7b\\x42\\xf8\\xf4\\x44\\xdf\\xd7\\xa2\\xf1\\xdf\\xae\\xc6\\xe5\\xae\\xab\\xb3\\xca\\xd9\\x41\\x31\\xed\\xf9\\x63\\x34\\xed\\x39\\x62\\x50\\x99\\xd0\\x17\\x74\\x6e\\x58\\x51\\x25\\x7a\\xd7\\x1b\\x99\\x05\\xc0\\xe9\\x80\\x40\\x3a\\x30\\x24\\x40\\xc5\\xad\\xa5\\x80\\x03\\x16\\x63\\xea\\xbb\\xe1\\x38\\x71\\xb1\\x06\\x37\\x67\\x6d\\x50\\xa7\\x32\\xb0\\xa2\\x43\\x45\\x02\\xff\\xa4\\x7e\\xe6\\xcd\\xb1\\xb7\\x57\\xeb\\x6d\\x56\\x48\\xad\\xe8\\x66\\x03\\x1d\\x13\\x3a\\x22\\xca\\x1b\\x12\\x80\\xb1\\xaa\\x9b\\x0d\\x00\\xdc\\xc0\\xaf\\x5a\\xa6\\xad\\xd9\\xda\\xd4\\xbc\\xb5\\x26\\x5d\\x5b\\xb3\\xb5\\xb9\\x69\\xaa\\x3a\\x9d\\xe9\\x7b\\x60\\xab\\xd0\\xfb\\xce\\x3a\\xbb\\x32\\x3b\\x1a\\x47\\x64\\x04\\x7b\\xdf\\xff\\x54\\xb4\\xa9\\xc2\\xe9\\xac\\x30\\x45\\x45\\x99\\x2a\\x9d\\x79\\x15\\xa6\\x68\\x6c\\x9d\\x7e\\xf7\\x4c\\x67\\xe7\\x99\\x77\\x66\\x74\\xd3\\xef\\xd0\\x0f\\xd3\\xaf\\xc4\\xe0\\x4f\\xae\\xeb\\xfb\\x27\\x48\\x92\\xff\\x07\\xad\\x0f\\xef\\x6e\\x6a\\xda\\xfd\\x70\\xab\\xbe\\x45\\xfc\\xd0\\x82\\x08\\xda\\x75\\x6d\\x9a\\x34\\x73\\x1e\\xca\\x57\\x65\\x40\\x15\\x68\\x4e\\x8c\\x06\\xb3\\x22\\x60\\x59\\x18\\x41\\x88\\x63\\x38\\x34\\x86\\x18\\x99\\x8c\\x19\\x41\\x98\\x10\\x3c\\xba\\x02\\x73\\x25\\x93\\x91\\xb5\\x22\\xb0\\x21\\x91\\x16\\x80\\x19\\xf1\\x7e\\x66\\x0a\\x31\\x32\\x8e\\x91\\x4d\\x22\\x4c\\xf0\\xec\\x4d\\x0b\\xf4\\x78\\xc3\\x28\\x27\\x98\\x84\\xca\\xa6\\x38\\x01\\x41\\x26\\xfc\\x1c\\x66\\x30\\xfc\\xd0\\xc2\\xc2\\xc2\\x02\\x7c\\xf9\\x1f\\xa6\\x06\\x23\\xbf\\x82\\xde\\x4f\\xdc\\xd0\\x0f\\xcf\\xfc\\x43\\x04\\x61\\x04\\x1d\\xbc\\xd6\\x43\\xea\\xc8\\x8f\\x68\\x7f\\x25\\x23\\x07\\xfa\\xb5\\x38\\x09\\xad\\x08\\x08\\x11\\xfa\\x4b\\xc6\\xc8\\x84\\xfe\\xe2\\x38\\xa1\\xbf\\x58\\x16\\x8f\\x0a\\x2f\\xdd\\x87\\x08\\xa1\\xd3\\x88\\x5d\\x8b\\x58\\x36\\x85\\x0d\\xcc\\xc6\\xec\\x9b\\x97\\xc2\\xb3\\x9f\\x55\\x48\\x2d\\x15\\x12\\x7a\\x5a\\x28\\x23\\xf4\\xf4\\xe7\\x14\\xa2\\x4d\\x5b\\x75\\xbf\\x8c\\xe1\\x26\\x3f\\xbb\\x80\\x38\\xaf\\xcd\\x66\\xc3\\x0d\\x63\\x73\\xdd\\x79\\x78\\x23\\x4f\\x30\\x7e\\x62\\x71\\x71\\x71\\xd1\\xff\\xab\\x9b\\x1d\\x8c\\x37\\x90\\x04\\x33\\x13\\xb0\\xe9\\xd3\\x43\\x30\\x0b\\x83\\x37\\x1c\\x8c\\x37\\x72\\x04\\x33\\xa8\\xe5\\xda\\xc7\\x64\\x9f\\xcc\\x8e\\x2a\\xd1\\x06\\x34\\x89\\xc6\\xbc\\xc3\\xed\\x10\\x12\\x39\\x09\\x1c\\x89\\x16\\xf7\\xcf\\xc8\\x88\\x90\\x88\\xc8\\x90\\x29\\xc4\\x11\\x96\\x70\\xec\\x14\\x0a\\x47\\xa1\\x11\\xe1\\xa1\\x43\\x51\\x10\\x11\\x06\\x21\\x28\\x22\\x64\\x48\\x4e\\xcf\\x7e\\x11\\x4d\\x2d\\x13\\x26\\x37\\x8d\\x07\\x4b\\x81\\x86\\xaa\\xaa\\xb1\\xd1\\xaa\\x0d\\x55\\x83\\x6b\\x7b\\x3b\\x3b\\x9a\\x1b\\x6b\\xab\\xe3\\x0d\\x2a\\x33\\x8d\\x0f\\x8b\\xe6\\x44\\x0e\\x32\\xc5\\x75\\x16\\x4e\\x85\\x14\\x09\\xac\\x52\\xdc\\xc4\\x50\\xab\\x10\\xf4\\x1d\\xa5\\x4a\\x98\\xc5\\x74\\x33\\x96\\xe9\\x4c\\x52\\xc2\\x59\\x0d\\xb8\\x5c\\x4e\\xb7\\x43\\x23\\xc8\\x8a\\x4c\\x59\\xdb\\xf6\\x26\\xa3\\xae\\x6e\\xaa\\xc9\\xea\\x2b\\xb4\\x44\\x45\\x59\\x0a\\x7d\\xd6\\xa6\\xa9\\x3a\\x9d\\xb1\\x69\\xb1\\x1d\\xf2\\x1b\\x72\\x54\\x31\\xe6\\x4a\\x87\\xa3\\xd2\\x1c\\x03\\xf3\\x10\\x93\\x59\\x69\\x77\\x54\\x66\\xc6\\xa8\\x73\\x1a\\xdc\\xa7\\x52\\x32\\xab\\x4b\\x5c\\xce\\xbc\\xa4\\x54\\x4b\\x62\\x24\\xe0\\x35\\x90\\xe0\\x6c\\xb0\\xa5\\x17\\xba\\x5d\\x9e\\x8a\\x0c\\x7e\\x2c\\x2d\\x11\\xaf\\x07\\x45\\x52\\x86\\x86\\xbd\\x84\\xab\\xb7\\x9d\\x6f\\xf7\\x6f\\x6f\\xbc\\x7b\\xa6\\x2a\\xd9\\x51\\x6d\\x36\\x57\\x3b\\x92\\xab\\x66\\xee\\x6e\\xc4\\x47\\xdb\\xcf\\x6f\\xab\\xc6\\xc3\\xd8\\xd3\\x37\\xed\\xf1\\x6f\\x77\\x4c\\xf4\\x14\\xe4\\x77\\x8d\\xe7\\x82\\x9f\\x67\\x72\\xc7\\xbb\\xf2\\x0b\\x7a\\x26\\x1c\\xf8\\xa8\\x67\\xba\\xcf\\x83\\xa1\\xa6\\x23\\x4e\\x97\\xa1\\xd3\\xc4\\x9b\\x9d\\x49\\x31\\xa9\\x39\\xad\\x45\\xba\\x38\\x5d\\xa6\\x3e\\x0e\\xf8\\xf7\\xd3\\xab\\x4d\\x83\\x23\\x09\\x2e\\xbb\\x39\\x42\\xd8\\xcb\\x7b\\xae\\x7d\\x4c\\x8e\\xb2\\x1f\\x22\\x2f\\x5a\\x8b\\xc6\\xd0\\x97\\xbd\\x31\\x8d\\x10\\x12\\xd1\\x0c\\x28\\x64\\x0c\\x38\\x12\\x09\\x2c\\x47\\xea\\x45\\x86\\xd6\\x22\\x14\\x11\\x1e\\x12\\x1e\\xb1\\x3c\\x44\\x91\\x10\\x8e\\x42\\x50\\x78\\xc8\\x10\\x0a\\x0d\\x0d\\xeb\\x43\\x61\\x61\\xc9\\xbe\\xe5\\x31\\x4a\\x5d\\x3d\\x46\\x89\\x5e\\xcf\\xf5\\xc5\\x51\\x18\\x0a\\x0d\\x0f\\x0b\\x1d\\x0a\\x56\\xf3\\x99\\x85\\x7b\\xbc\\x09\\x65\\x65\\x1b\\x06\\xcb\\xd6\\x96\\xf5\\x75\\x75\\xd4\\xd5\\x54\\x96\\x8b\\x23\\xac\\x37\\x47\\x47\\xad\\x1a\\x61\\x63\\x90\\x0d\\x59\\x18\\x60\\xd5\\x8a\\x01\\x76\\x2b\\x1c\\x8a\\xeb\\x07\\x58\\x32\\x70\\x2d\\x8f\\xaf\\x43\\x1a\\xdf\\x48\\x46\\xc6\\x34\\xb5\\xcc\\x35\\x19\\x75\\xb5\\x93\\x0d\\xeb\\x16\\x52\\x52\\x16\\xd6\\xf9\\xb6\\xd6\\xea\\x8c\\x4d\\x73\\x2d\\xce\\x3a\\xab\\x2a\\xc6\\x5c\\x9e\\x6b\\xaf\\xca\\x52\\xc2\\x42\\xac\\xa5\\xca\\x9e\\x5b\\x91\\xa1\\x54\\xe5\\xd4\\x39\\x2f\\xa4\\x96\\x6d\\xec\\x6e\\xc9\\x4e\\xcb\\x4e\\x89\\x06\\xe8\\x81\\x24\\x77\\xb3\\x5d\\x57\\x52\\x50\\x50\\x5c\\x95\\xc9\\x37\\x69\\x93\\xa1\\x1f\\x40\\x91\\x9c\\xa1\\x21\\x3e\\x5c\\xbc\\xe9\\xae\\x0e\\xfe\\xa9\\xc6\\xe3\\xa3\\x45\\x83\\x4d\\x4d\\x83\\x45\\xa3\\xc7\\x1b\\xa1\\xaf\\xe3\\xae\\x4d\\xc5\\x78\\x04\\xe7\\xb6\\x6c\\xf2\\xf0\\x4f\\x39\\x86\\x9a\\x72\\x73\\x7c\\x03\\x36\\x50\\xf1\\x1f\\xdb\\x06\\x7c\\x39\\xb9\\x4d\\x43\\x0e\\xe8\\xf3\\x6c\\x6a\\xc9\\xc5\\xb0\\xae\\x13\\x6c\\x85\\xb9\\x9a\\x0c\\x67\\x4a\\x4c\\x6a\\x6e\\x5b\\x61\\xba\\x30\\xa4\\xf1\\xfc\\xb7\\xd3\\xab\\x32\\x06\\x47\\x12\\x5d\\x36\\x61\\x44\\x05\\xfd\\x69\\xfe\\xda\\x15\\x72\\x90\\xfb\\x33\\x92\\xa1\\x7c\\xb4\\xed\\x45\\x25\\x35\\xf5\\x88\\xe1\\xbf\\x06\\x84\\x81\\x03\\x3c\\x86\\x02\\x59\\x7c\\xc3\\x42\\xe5\\x0c\\x35\\x42\\x81\\xb0\\x97\\xb0\\x20\\x9d\\x06\\x46\\xf1\\x3e\\x6e\\xea\\xd6\\x37\\xf6\\x78\\x63\\xe5\\x72\\x79\\xbe\\x3c\\xdf\\x61\\x53\\x19\\x54\\x34\\x63\\x8c\\x64\\x5f\\xd4\\x68\\x55\\x3a\\xa7\\x8e\\xbd\\x4d\\xe7\\x08\\xb4\\xe3\\x01\\xe0\\xf9\\x89\\xbf\\x32\\xd6\\xdb\\xf7\\x92\\x70\\x7f\\x6e\\x9d\\x99\\xf9\\xd3\\xdf\\xe7\\x29\\xc1\\xa2\\x9f\\x84\\xf2\\x2f\\xe6\\xa3\\xc5\\x60\\xdf\\xc4\\x52\\x7f\\xbe\\xd8\\x37\\x22\\xab\\x2d\\x85\\xe6\\x8b\\x2f\\x1d\\x77\\x7d\\xef\\x64\\x04\\x7a\\xe7\\xf3\\x6e\\xfd\\x9c\\xfe\\xd1\\xde\\xae\\xf3\\x05\\xb2\\xf1\\x41\\xcc\\x5f\\xd9\\xc2\\x5f\\x65\\x7a\\x6e\\xd7\\x0d\\xc3\\x5e\\x6e\\x3d\\x70\\x80\\xff\\xf9\\xdf\\xe7\\x8b\\x01\\xf4\\x14\\x7f\\x0f\\x59\\xcb\\x7e\\x13\\x65\\xa1\\x07\\x83\\x39\\x98\\x43\\x44\\x7a\\x26\\x31\\xa6\\x72\\x85\\x6e\\x29\\x65\\x65\\x4a\\x40\\x81\\xb4\\x87\\x09\\xc1\\x9b\\xa4\\x3c\\xca\\x81\\x7b\\x83\\xf2\\xdb\\xe7\\x54\\x73\\xab\\x1a\\x7a\\x7a\\x7a\\x5e\\xce\\xd6\\xc7\\xe6\\x50\\xc8\\x14\\xe8\\x14\\x56\\xd6\\x79\\xa3\\xd7\\x21\\x36\\x85\\x68\\x1c\\xf8\\x3f\\x17\\x5a\\x0e\\x8e\\x35\\x3a\\xe2\\x13\\xdd\\xad\\x93\\x77\\xb4\\x6f\\x7a\\x76\\x9b\\x97\\x59\\xe0\\xac\\x6d\\x3b\\xda\\xca\\x27\\xda\\x8b\\x4c\\x4a\\x65\\x46\\x69\\xf7\\x54\\x8d\\x8f\\xbf\\x07\\xd6\\xca\\x4b\\x07\\xf7\\x9c\\x7e\\xa0\\xe9\\xd1\\xd6\\xc7\\xcf\\xec\\x5d\\xe7\\xaa\\xd9\\x7b\\x69\\xb4\\xf9\\xf8\\xc6\\x82\\x9c\\xd6\\x2d\\xbb\\x0f\\x97\\x3d\\x5e\\x76\\x74\\xcf\\x54\\x87\\x5d\\x8c\\x13\\xfc\\x2e\\x7f\\x0f\\xb1\\x91\\x26\\xa4\\xff\\xbc\\x7e\\x49\\xfd\\x3b\\xfa\\x25\\xf5\\xb3\\xfb\\x25\\xf5\\xf6\\xfa\\x25\\x55\\xec\\x17\\xb3\\x3e\\xd6\\x12\\xec\\x17\\xe6\\x06\\xe7\\xbc\\xc8\\x1f\\xe9\\xc0\\xbf\\x5d\\x18\\x79\\x70\\xdc\\x55\\xb4\\xed\\xb9\\xe9\\x9e\\x7b\\x27\\x8a\\xf1\\x2c\\xb6\\x34\\x6e\\xf2\\xf6\\xec\\x6b\\x37\\x67\\x74\\xec\\xef\\xa9\\x17\\xfa\\x23\\xb4\\xff\\x9e\\xd7\\x86\\x33\\xc7\\xde\\x3a\\xd7\\xe7\\x19\\x3b\\xd9\\x51\\x3c\\xde\\x60\\x69\\xdc\\xf5\\x50\\x4b\\x66\\xfb\\x83\\x3b\\x1b\\xb0\\xc8\\x49\\x8d\\x10\\x39\\xc4\\x96\\x20\\x25\\x32\\x79\\xf5\\xca\\x18\\x45\\x74\\x44\\x78\\x58\\x68\\x88\\x5c\\xc6\\x31\\x18\\xa2\\x44\\x26\\x08\\x91\\x24\\x59\\x83\\x1a\\xe2\\x63\\x31\\xa7\\xb6\\x00\\x2b\\x33\\x30\\x3a\\xa5\\xc1\\xcd\\xd2\\x3f\\x07\\xc3\\xca\\x0c\\xb8\\x01\\xb4\\x2e\\xfe\\x7f\\xbf\\x76\\xf4\\xd7\\xfc\\x2f\\x9d\\x60\\xf8\\x05\\xff\\x81\\x1b\\x74\\xdf\\x3e\\xf4\\x27\\x30\\x78\\xf8\\x5f\\xc1\\xe5\\xe7\\xfa\\xbf\\xc8\\xbf\\x00\\xa7\\x2e\\xae\\xbf\\x08\\x77\\x5c\\x1c\\xb8\\x08\\x63\\x7c\\xef\\xc5\\xf5\\x5f\\x14\\xf3\\x12\\x91\\xaf\\x31\\x7a\\xf6\\xbf\\x91\\x0c\\x9d\\x10\\xc5\\xa9\\x38\\x4a\\x11\\x3d\\x82\\x04\\x8d\\x6b\\x94\\x00\\xc3\\x88\\xd6\\x63\\x26\\xc0\\x78\\xa0\\x09\\x5e\\x47\\xb3\\xd7\\x5d\\x4e\\xa4\\x54\\x4f\\x34\\xb7\\xc4\\x0d\\x57\\xbd\\x89\\xcb\\x17\\x90\\x70\\xa1\\x13\\x01\\x30\\xbd\\x04\\x18\\x60\\x9a\\x04\\x19\\x2b\\x1c\\x21\\x24\\x43\\x32\\x85\\x42\\xc1\\x72\\x1a\\x0b\\x08\\xcb\\xd9\\xe9\\x50\\x41\\xc6\\x14\\xf0\\x93\\x6c\\xe1\\xce\\x6f\\x6d\\x7e\\x9d\\xb6\\xf7\\x2f\\xac\\x86\\xf9\\x16\\xa7\\x42\\xf1\\x22\\xaa\\x0d\\x31\\x48\\x8c\\x2a\\xc5\\x18\\x75\\xb3\\x14\\x74\\x41\\x00\\x23\\xdc\\x0c\\x28\\x4e\\xad\\x54\\x44\\x46\\xc8\\x39\\x14\\x0f\\xf1\\x9c\\x68\\xa3\\x12\\x27\\xb7\\x4a\\xe7\\x14\\x19\\x98\\x64\\x3a\\x27\\x44\\xe5\\xb6\\xfb\\xaa\\xab\\xeb\\x33\\xf3\\xba\\x4b\\x74\\xb0\\x16\\xda\\xca\\x9d\\x43\\x9b\\x76\\x34\\xa4\\xb0\\xb3\\xf1\\xfa\\x4c\\x5d\\x5c\\x8a\\xa7\\xdd\\x99\\x12\\x53\\xd5\\x98\\x5b\\x68\\x83\\x4e\\xca\\x5b\\xbe\\x83\\xb5\\xe2\\x72\\x6e\\x10\\xb1\\x52\\xde\\x64\\x44\\x28\\x17\\xde\\xb8\\x02\\x38\\x95\\x05\\x9c\\x0e\\x95\\x46\\x06\\x3b\\xee\\x28\\x29\\x60\\x7f\\x71\\xf8\\xc4\\x76\\xab\\x98\\xdf\\xf9\\x97\\xac\\x15\\x3f\\x43\\xcb\\x28\\xbc\\x91\\x2c\\x06\\x46\\x2c\\xa2\\xa4\\x45\\x4c\\x6e\\xa7\\x43\\x85\\x35\\xf9\\xc5\\x77\\xb2\\x56\\xeb\\xf6\\x13\\x87\\x91\\x9c\\xff\\x1d\\xff\\x36\\x77\\x90\\x7d\\x9e\\xf2\\xb9\\x17\\x20\\x1f\\x5a\\x87\\xa6\\xd1\\x41\\x74\\x1f\\x14\\x8b\\x92\\xc3\\x48\\x1a\\x83\\x01\\x13\\x0c\\x64\\xca\\xa0\\x51\\x69\\x65\\x2c\\xcb\\xc9\\x39\\x56\\x3e\\x65\\x4c\\x8c\\x4f\\x0f\\x63\\x43\\x42\\xc3\\x43\\x43\\xc2\\xa7\\xf4\\x4a\\xac\\x88\\x51\\xcc\\xc6\\x02\\x51\\x03\\xc7\\x12\\x6e\\x28\\x0e\\xe4\\x09\\x10\\x1a\\x22\\x0f\\x1d\\x4a\\x82\\xf0\\x14\\x88\\x8c\\x08\\x8f\\x1c\\x42\\xd1\\x28\\x46\\x11\\x1d\\x33\\x14\\xe0\\x78\\x51\\xfb\\x4c\\xa9\\xc9\\xba\\x28\\x36\\x22\\x42\\x13\\xd1\\x90\\xe8\\x1d\\xbf\\x9d\\x07\\x49\\x25\\x22\\xa3\\x23\\x23\\xa2\\xff\\xc1\\xa7\\xe2\\x86\\x1e\\xef\\xc0\\xa1\\x43\\x33\\x33\\xeb\\xd7\\x37\\x34\\x78\\x3c\\x19\\x19\\xb1\\xb1\\x08\\x1d\\xba\\xef\\xd0\\x7d\\x67\\xcf\\xdc\\x75\\xea\\x8e\\x63\\x33\\x07\\x67\\x0e\\xee\\xdf\\xbb\\x73\\xc7\\xe2\\xfc\\xfa\\xe9\\xf5\\xd3\\x5b\\xb7\\x8c\\x8f\\x6d\\xdc\\xd0\\xb0\\xae\\x61\\x5d\\x5f\\x4f\\x77\\x57\\x5b\\x8b\\xc7\\xe7\\xf1\\xd5\\xd5\\x54\\x94\\x7b\\x4b\\x32\\x0a\\x32\\x0a\\xdc\\x4e\\x5b\\xae\\x35\\x2b\\xd6\\x14\\x6b\\x12\\x33\\x7e\\x22\\x25\\x52\\xea\\x63\\xf5\\x19\\xc2\\x94\\x92\\xe4\\x75\\x9d\\x48\\x13\\x76\\xdd\\x57\\x29\\xfd\\xc7\\xca\\x8b\\xea\\x1b\\x6e\\x15\\xa6\\xcd\\x0d\\x25\\x57\\xdf\\xab\\xbc\\xee\\xe2\\x0f\\x21\\xcd\\xd5\\x90\\x63\\x6d\\x70\\xa7\\xe1\\x29\\x1c\\x1e\\xa7\\x8f\\x77\\x64\\x61\\xf8\\x00\\xd2\\xdc\\x0d\\x56\\x6b\\x43\\x7e\\x1a\\x9e\\xc6\\xe1\\x1a\\x43\\xbc\\x3d\\x0b\\xd7\\xd1\\xdf\\xd6\\xcd\\x90\\x29\\xf1\\x97\\x6c\\xcc\\x7f\\xeb\\x86\\x9f\\xfc\\xcd\\x2b\\xaa\\x63\\xac\\x76\\xe1\\xa7\\x46\\x2c\\x56\\xb6\\xf2\\x09\\xfc\\x07\\x38\\xcd\\xed\\x13\\x8b\\x86\\xc5\\xe9\\x13\\xec\\x59\\x8c\\x93\\xfe\\xb2\\xfa\\x99\\xe4\\x2f\\x96\\x2a\\x5b\\x62\\xa2\\xad\\xca\\xa2\\xd2\\x27\\x45\\x17\\x99\\xf9\\x8f\\x33\\xab\\x57\\x7d\\x0f\\x11\\xbe\\x8f\\x74\\x89\\xdf\\xfc\\x9f\\xac\\xfc\\xc6\\x7f\\x68\\xa9\\xb6\\x25\\x24\\xd8\\xaa\\x2d\\x99\\x85\\x85\\x99\\x6c\\xc2\\x75\\x35\\xdd\\xa4\\xe4\\xf2\\x55\\x24\\x47\\x4d\\xfc\\x90\\xec\\x14\\xfb\\x0e\\x22\\x28\\x04\\x45\\x52\\x2f\\x5a\\x32\\x4a\\x47\\x26\\xb4\\xc5\\x9b\\xaa\\x4d\\x53\\x33\\x0c\\x36\\xa5\\x27\\xc7\\x69\\x94\\x31\\x8a\\xa8\\xc8\\x88\\xf0\\xd0\\x08\\x60\\x8c\\x86\\xa4\\x44\\x82\\x80\\xa9\\xf7\\x5d\\xb6\\x0a\\xdb\\x10\\xe5\\x1d\\xef\\xa1\\xc6\\x7c\\x12\\x10\\x1b\\xe8\\xd6\\xae\\x42\\x98\\x05\\x06\\x30\\x33\\xb8\\xf2\\xf7\\x1e\\x6f\\x0c\\xcb\\x22\\xc4\\x86\\xb0\\x21\\x72\\x19\\x22\\x88\\xc4\\x70\\x9c\\xca\\xc2\\x6a\\x18\\x9d\\x92\\x31\\x29\\x1d\\x0c\\xb8\\x59\\x95\\x81\\x95\\x19\\x9c\\x2c\\xb8\\x0d\\x1a\\x16\\x64\\xac\\xc9\\xc0\\x98\\x18\\xb7\\x12\\x34\\x4a\\x19\\x43\\x5a\\xc3\\x76\\x0c\\x54\\x7b\\xc2\\x77\\x0c\\x54\\xe3\\x94\\x08\\x68\\xe4\\x9f\\xbe\\xba\\x2d\\x82\\xff\\x27\\xe8\\x65\\x1e\\xc4\\x50\\x56\\xc9\\xff\\xdb\\xd2\\x5f\\x30\\xff\\xb5\\x2a\\x30\\x5a\\x14\\xf7\\x96\\xbd\\xc3\\x0c\\x28\\xce\\x96\\x7f\\xb3\\x28\\x92\\xff\\x12\\x0c\\x92\\xc7\\x23\\xa1\\x8d\\x7f\\x94\\x57\\x84\\xef\\xda\\x50\\x53\\x28\\xfc\\x1f\\x5c\\x8a\\xbe\\x50\\xf9\\xcf\\x4b\\xa7\\x14\\x17\\xaa\\xfe\\x19\\x7f\\x88\\xa1\\xba\\x8a\\xff\\xd1\\xd2\\xff\\xc1\\xfc\\xeb\\x35\\x60\\x11\\xed\\x41\\x3f\\x45\\x88\\x4c\\x52\\xce\\xec\\x18\\x94\\x8a\\x5c\\x5e\\x07\\x83\\x31\\x43\\x40\\xd8\\xe4\\xea\\x11\\xc3\\x02\\x46\\x0c\\x0e\\x06\\x1b\\x05\\x82\\x45\\x09\\x49\\x4d\\x56\\x29\\x49\\x0c\\x51\\x68\\x55\\x9c\\x70\\x4c\\xc8\\xc0\\x4d\\x41\\x7f\\x12\\xc2\\xc9\\x10\\x88\\xe6\\xd3\\x12\\xe8\\xe2\\xbf\\xd1\\xc5\\x9f\\x5c\\x84\\x6f\\x0d\\x3c\\xb3\\xbb\\xb6\\x76\\xf7\\xb3\\xfd\\xfc\\x25\\x68\\xab\\xdd\\xb5\\xd6\\x99\\xb7\\x76\\x57\\x1d\\x7f\\x09\\x3e\\xc9\\x83\\xa7\\xf2\\xf8\\xd7\\xfc\\xcf\\xb2\\x97\\x71\\xd1\\xd6\\x87\\x45\\x66\\x97\\x61\\xb0\\xb6\\xcd\\xfb\\x7c\\x3b\\x3a\\x73\\x30\\x62\\xc4\\x1c\\x9f\\xa4\\x09\\x31\\x28\\x1e\\x65\\xa3\\x4b\\xde\\x28\\x83\\x5e\\x11\\xce\\x60\\x8e\\xa5\\x9d\\x1e\\x20\\xdd\\x48\\x0c\\xe6\\xfc\\x8a\\x5b\\x36\\x9d\\xfb\\x44\\x00\\xbb\\x64\\xae\\x4a\\x5d\\xe5\\x63\\x48\\xbd\\xd9\\x6d\\xb1\\x9f\\x57\\xd3\\xe7\\x56\\x42\\x53\\x43\\xd2\\x9c\\xa1\\x19\\x1c\\x97\\x60\\x61\\x65\\xe0\\x36\\xac\\xe0\\x74\\xd3\\x7c\\x56\\xde\\x50\\xe6\\x7f\\x9a\\xf9\\xef\\x37\\xc3\\xb0\\x63\\xfc\\xd1\\xc9\\xe1\\x67\\x0b\\x16\\xa7\\xd8\\x82\\xa7\\xc7\\xb6\\x3e\\x3e\\xe6\\x58\\xd4\\xb7\\xec\\x5d\\x9b\\xd7\\xe7\\x2b\\x8c\\xcd\\x7c\\x70\\xb8\\x6f\\x6f\\xb3\\x3e\\xb5\\x14\\xc6\\x4a\\xbe\\x35\\xfe\\xee\\x85\\x75\\x4d\\xf5\\xfe\\x5f\\xb0\\xff\\x76\\x6f\\x4b\\x30\\x83\\x68\\xb2\\xb3\\x2e\\xcb\\xff\\x51\\xc7\\x06\\x9a\\x41\\x54\\x38\\xc3\\xde\\x42\\x88\\x94\\xc9\\x62\\x90\\x0c\\xa5\\x7a\\x93\\x10\\x83\\x99\\x99\\x40\\x40\\x92\\xfa\\xa6\\xb1\\x02\\x0a\\x07\\x29\\x5b\\xfa\\x74\\x91\\xe1\\x16\\x45\\xde\\x72\\xd8\\x20\\xe2\\x30\\xbe\\x8a\\x10\\xd1\\xb3\\x67\\x90\\x0c\\x95\\x88\\xf9\\x81\\x24\\x33\\xf6\\x75\\xd1\\x4d\\xd4\\xb0\\xbb\\xe2\\x21\\x81\\xdf\\xa5\\x5c\\x12\\x2b\\x1f\\xa3\\xf7\\xab\\x76\\xe2\\x2b\\x3b\\xc4\\x90\\x06\\xe1\\xec\\x46\\x3f\\xe2\\xff\\x40\\xd6\\xb3\\x97\\x51\\x32\\xcd\\xa1\\x0b\\x88\\xb0\\x40\\x86\\x28\\x83\\x3b\\x25\\x37\\x94\\xb8\\x1c\\x02\\xd8\\xfe\\x0c\\x45\\x9c\\x36\\x40\\xe5\\x70\\x03\\x3d\\x09\\x4d\\x63\\x4a\\x4a\\xfd\\x91\\xdf\\x3f\\xf6\\xe3\\xb3\\xcd\\x45\\xdb\\xbe\\xb8\\x15\\xd6\\xec\\x6b\\x37\\x15\\xcf\\x5d\\xdc\\xf2\\x7d\\x4a\\xd2\\xef\\xff\\xb4\\xf9\\xde\\xf7\\x0f\\xcf\\xbc\\x75\\xba\\x83\\xd9\\x80\\x6b\\x17\\x1f\\xe9\\xd9\\xfc\\xdc\\x62\\x99\\xdf\\x48\\xed\\xe7\\xdf\\xe6\\xff\\x42\\xca\\x88\\x07\\x25\\x23\\x8b\\x37\\x23\\x32\\x02\\x33\\x35\\xc1\\x24\\xc5\\x12\\x2e\\x9f\\x1a\\x89\\x35\\x4c\\x43\\x72\\x52\\x62\\x42\\xbc\\x46\\x1b\\xcd\\x0a\\x8b\\x40\\x6c\\x86\\x46\\x6a\\x86\\xdb\\x15\\x6c\\x86\\xce\\xaf\\x7b\\x6f\\xeb\\xbb\\xe7\\x7b\\x21\\x7f\\xec\\xde\\x5e\\x6d\\xf5\\x4c\\x6b\\x36\\x40\\xdd\\xf6\\x87\\xdb\\xde\\xa3\\xa1\\x5f\\xfc\\xc3\\xee\\xa9\\x4b\\x0b\\x75\\x27\\xe7\\x3a\\x63\\xd6\\x45\\x17\\x75\\x6d\\xad\\xec\\x3f\\xd2\\x99\\xe1\\xff\\x44\\xc2\\xf1\\xff\\x06\\x21\\xf2\\x75\\xf6\\x32\\x8a\\x45\\xc5\\x5e\\x0f\\x00\\x70\\x50\\x2f\\x07\\x4e\\x50\\xec\\x38\\x18\\x0c\\x0d\\xc1\\x2c\\x4b\\x03\\xd4\\x29\\x9b\\x4b\\x9c\\x8f\\x04\\x03\\x6b\\x62\\x51\\x6c\\x00\\x03\\x10\\x13\\xc6\\x25\\x5b\\x42\\xb0\\x4e\\x84\\x01\\x88\\x50\\x11\\x1a\\xc8\\x43\\x8e\\xf1\\x7b\\xe0\\xf5\\xb3\\xfc\\xc6\\xfa\\xe1\\x63\\x0b\\x0b\\xc7\\x86\\xdb\\x60\\x90\\xbd\\xec\\x2f\\xf3\\x47\\xe1\\x7f\\xe2\\x7f\\x03\\x29\\xfe\\x46\\xf6\\xb2\\x7f\\x0c\\x12\\xf8\\xff\\x8b\\xcf\\xd3\\xb6\\xbc\\x8f\\x10\\x19\\xa5\\x31\\x7a\\x85\\xde\\xfc\\xeb\\xdb\\x82\\x64\\x08\\x23\\x19\\x16\\xdb\\xf4\\xb9\\x2d\\x11\\x34\\x4c\\x29\\x16\\xd4\\xa1\\x72\\x00\\x71\\xf2\\xcf\\xc2\\x1d\\x0f\\xf1\\x5f\\xf1\\x0d\\x1f\\xd8\\xbe\\xfd\\xc0\\x70\\x23\\xa4\\x12\\x8f\\xff\\xbf\\xfd\\xff\\x0a\\xff\\xf9\\xc7\\x3f\\x8a\\xb1\\x45\\x7f\\xfa\\x13\\xfc\\x4a\\xca\\xe9\\xf9\\x20\\x8d\\x35\\xce\\xf6\\x66\\x86\\xaf\\x8e\\xd8\\xc4\\x58\\xa4\\xd9\\x50\\xfb\\xb8\\x15\\xc1\\x4b\\x2b\\x90\\x20\\x5a\\xa7\\x36\\x10\\xbf\\x74\\x60\\xef\\x1c\\x7f\\x11\\xbe\\x75\\x00\\x26\\x8e\\xf2\\xdb\\xe1\\xb9\\xd3\\xf8\\x4b\\xfe\\x76\\xb6\\x7e\\xc4\\xbf\\x01\\x3f\\xec\\xb7\\xfb\\xc5\\x5c\\xfc\\x6b\\x10\\x22\\x8f\\x51\\xbc\\xfe\\x67\\x3f\\x2b\\xee\\x36\\x9e\\xf5\\xdc\\xd9\\x79\\xfe\\x65\\x78\\xf3\\x1c\\xe4\\xdd\\xcb\\x9f\\x83\\x73\\xf7\\xc3\\x7f\\xf2\\xd1\\xcc\\xfb\\xa3\\x34\\x5e\\xea\\xbf\\xfc\\x3f\\x10\\xf9\\xb4\\x11\\x22\\x4f\\x51\\x0e\\x00\\x93\\x57\\x2f\\x4c\\x33\\x06\\x11\\xe1\\x29\\xd0\\x23\\xb2\\xad\\xac\\xa4\\x0f\\x11\\x9f\\x22\\x66\\xce\\x95\\xd2\\xf5\\x3a\\xbe\\x07\\x3f\\xc6\\xc0\\xcf\\xcc\\xf2\\x99\\xdb\\xb6\\x31\\x4a\\xfc\\xd0\\xc8\\xa7\\x2f\\xd1\\x57\\x12\\xe6\\xf3\\x30\\x42\\xe4\\x51\\xe2\\xf9\\x8c\\xba\\xe3\\x3e\\xb7\\xee\\x5f\\xc0\\x2f\\xe0\\x23\\xfe\\xae\\x05\\x5e\\xbf\\xb0\\x80\\x3b\\xe1\\xb7\\xa3\\x4b\\xd9\\x62\\x30\\x13\\x02\\x34\\xce\\x5f\\xa1\\xe3\\xa1\\xa3\\x79\\x6e\\x10\\x12\\x83\\x53\\xa5\\x84\\x40\\x2c\\x2b\\xb1\\x0c\\x71\\x40\\x63\\x59\\x84\\xfa\\xb3\\x14\\x71\\x69\\xd4\\xb4\\xe9\\x08\\x72\\x90\\xb2\\xce\\x3c\\x09\\xf7\\x4e\\x1f\\x89\\x7f\\xee\\xde\\x72\\x6e\\x5d\\x66\\x7a\\xd3\\xde\\xb5\\x90\\x55\\x9e\\x9b\\x12\\x23\\x0b\\x8b\\x37\\x17\\xb7\\xbb\\xdc\\xdb\\xf8\\xb9\\x59\\x3c\\xc3\\x54\\xc0\\x86\\x47\\xbf\\x3b\\x31\\xf8\\xe6\\x85\\x01\\x66\\x03\\x98\\x2b\\xd6\\x0c\\x0e\\xe7\\xb8\\xa7\\x46\\x7b\\xcb\\x8d\\xe0\\x37\\x49\\xc9\\x16\\x00\\x1d\\xe2\\xff\\x4a\\xf1\\x42\\x34\\xfe\\x23\\x3c\\x0c\\xe3\\x9a\\x40\\x4a\\x3f\\xc4\\x30\\x34\\x40\\x28\\x2e\\x00\\x81\\x4d\\x4d\\xa1\\xcb\\x38\\x4e\\xa3\\x4a\\x13\\xce\\xe9\\x15\\x0d\\x13\\x0f\\xb1\\xe5\\x86\\xbd\\xec\\xea\\x3f\\xbd\\xc1\\x9e\\x56\\x33\\xd5\\x92\\xea\\x69\\xce\\x55\\xa7\\x95\\x0f\\x57\\xb9\\xe6\\xf8\\x97\\xe7\\xb0\\x03\\x4f\\x43\\xcd\\xce\\x67\\x07\\x8b\\x8e\\xef\\xec\\x8f\\x59\\x1b\\x53\\xb5\\x76\\xc2\\x5d\\xbf\\x6f\\xc0\\x0d\\xfe\\x4f\\x82\\xa1\\x9d\\x08\\xa3\\xcd\\xd7\\xfe\\x2f\\xf1\\xb1\\xdf\\x44\\xe5\\x68\\x0d\\x72\\x78\\x73\\xab\\x4b\\x0d\\x0c\\x61\\x18\\x40\\x04\\xd7\\xcb\\x20\\xc0\\xd4\\x94\\x4c\\x3b\\x2b\\x88\\xf9\\xb4\\xa6\\x64\\x5b\\x14\\xc9\\x62\\xac\\x00\\x6b\\x94\\xcc\\x64\\xc4\\xa9\\xc8\\x2b\\x21\\x01\\x3b\\x28\\x71\\xd8\\xdd\\x62\\xe2\\x49\\x12\\x08\\x51\\xc7\\x32\\xb5\\xda\\x01\\xb1\\x6a\\x4d\\x09\\x13\\x48\\x4f\\x4a\\x54\\xc4\\xd7\\x72\\xa2\\xc4\\x36\\x53\\xde\\x76\\x6c\\x53\\xb3\\x23\\x21\\xc6\\xe0\\x6e\\x1c\\x2c\\xc2\\xa5\\x5d\\x2e\\x4d\\x8c\\xde\\xd3\\x32\\x5a\\x56\\xed\\x71\\x77\\x15\\xa5\\x46\\xa5\\xe4\\x54\\x74\\xbb\\xdd\\xdd\\x95\\xb9\\xa9\\x51\\x1a\\x6b\\x65\\xb6\\xa5\\xdf\\xc5\\x2b\\xc6\\x36\\x9a\\x8b\\x33\\x62\\x15\\x99\\x35\\x6e\\x83\\x3b\\x23\\x31\\x4a\\x96\\x00\\xe9\\x69\\x29\\x69\\xee\\x81\\xfd\\x67\\x1f\\x6f\\x01\\x52\\x71\\x74\\xf7\\x96\\xb6\\x1c\\x3c\\x8e\\xbb\\x0e\\x3d\\xde\\xc4\\x7f\\x5a\\x76\\x64\\xcf\\xd6\\xf6\\xdc\\x04\\xeb\\xdc\\x1d\\x0f\\xb6\\x83\\x2b\\x7f\\x61\\x7a\\xb8\\x21\\x2b\\xcb\\xb7\\x71\\x7a\\xb1\\x80\\x7f\\xd3\\x77\\xe6\\xe8\\x62\\x8e\\x42\\x89\\x0b\\x2e\\xfc\\x4f\\x83\\x69\\xd3\\x8e\\x23\\x15\\x50\\x51\\x7a\\x72\\xb1\\xd9\\x58\\xd2\\xd6\\xb3\\x36\\x83\\xf6\\xd1\\xcc\\xb5\\x8f\\xc9\\x2e\\x9a\\xc3\\xb2\\x1a\\xfd\\x8b\\x37\\x3c\\xdf\\x96\\x4a\\x33\\xb9\\xa1\\x20\\xb7\\x56\\xfc\\x72\\x57\\xa5\\xae\\xe8\\x2a\\x4d\\x90\\xf0\\xf8\\x33\\x6e\\x48\\x09\\x72\\x1e\\xdf\\xb2\\x06\\xfb\\xad\\x6b\\xf0\\xea\\x6e\\xbc\\x46\\xcf\\x7e\\x0e\\x96\\x03\\xb2\\x45\\x0e\\xad\\xac\\x84\\x4c\\xb3\\x22\\x5e\\x27\\x8d\\x9c\\x64\\xdf\\x34\\x39\\x03\\xf6\\x4d\\x95\\x94\\xe6\\xc0\\x68\\x0c\\xf2\\xdd\\xa9\\x68\\x32\\x40\\x07\\xa8\\xd5\\x1a\\x97\\xcb\\x1d\\x34\\xed\\x93\\x5d\\x4f\\x1d\\x76\\xef\\xad\\x9d\\xfe\\xf2\\xae\\x72\\xb0\\x74\\xed\\xed\\xf2\\xb4\\xbb\\x12\\x73\\xfb\\x8e\\xae\\x31\\x56\\xa7\\x6d\\xd9\\x05\\xa0\\xab\\x9f\\x69\\x6e\\x99\\xad\\xd3\\x43\\x47\\xa3\\x75\\xa3\\xdb\\xff\\x67\\x98\\xdd\\x58\\xd7\\x08\\x4a\\x4b\\x75\\x9e\\xb3\\x3a\\x33\\x26\\x1c\\xe7\\xa7\\xe9\\xd6\\x3d\\xfc\\xfd\\xe9\\xff\\x8f\\xba\\xf7\\x8e\\x6f\\xab\\xca\\xf6\\xc5\\xf7\\xda\\xa7\\x48\\xae\\xb1\\x2c\\xcb\\x72\\xb7\\x65\\x35\\xcb\\xb2\\x64\\x59\\xd5\\x92\\x65\\x5b\\xee\\xbd\\xc8\\xbd\\xc7\\x8e\\xbb\\x63\\xa7\\x39\\x4e\\x9c\\x38\\x09\\x81\\x84\\xd0\\x62\\x42\\x42\\x0f\\x29\\x0c\\x4c\\x23\\x34\\x43\\x08\\x70\\x61\\x60\\xe0\\x52\\x86\\x69\\x30\\xcc\\x85\\x3b\\xf3\\xa6\\xdd\\x37\\x33\\x4c\\xb9\\x24\\xcc\\x70\\xa7\\x0f\\xb1\\x8e\\x7e\\x9f\\xb3\\xcf\\x91\\x62\\xa7\\xcc\\x7b\\x9f\\xf7\\xdf\\xcf\\x7c\\x1c\\x64\\xed\\x75\\xd6\\x59\\xbb\\xad\\xbd\\xd7\\xde\\x6b\\x7d\\x57\\x53\\xcf\\x13\\x87\\xdb\\xa9\\x69\\x5c\\x31\\x7d\\x8b\\xaf\\x65\\xe0\\x89\\x9b\\x9b\\x62\\xa2\\x1b\\x7e\\x7b\\x62\\xa6\\xf9\\xd4\\xfe\\xe6\\xce\\xc3\\x8f\\x37\\x4f\\xed\\xfb\\x71\\x73\\x6c\\x1c\\x7c\\x78\\xf8\\xed\\xa2\\xd2\\xb7\\xb6\\x6d\\x76\\x2d\\x4d\\x55\\x16\\x8f\\x2c\\xb8\\x88\\x6e\\x2a\\xe5\\xbe\\x24\\xe6\\x21\\x37\\xfa\\x72\\x10\\x4b\\xb1\\x7e\\x21\\x95\\x10\\x1d\\xd6\\x4c\\x64\\x9a\\x2b\\x25\\xa2\\x0a\\xf1\\x8b\\xb8\\x61\\xc4\\xaa\\x26\\x39\\x50\\x43\\xc1\\x64\\xd0\\xc7\\xfd\\x06\\x52\\x17\\x20\\x8d\\xfb\\x04\\xfe\\xb1\\xb0\\x18\\xb1\\x39\\x90\\xc2\\xd4\\x4d\\x00\\x4c\\x5c\\x4e\\x63\\x1a\\x44\\xe0\\x12\\x40\\x65\\xdc\\x37\\xe9\\xbd\\xb4\\x07\\x6d\\xb8\\xce\\xfb\\x92\\xae\\xf3\\x3e\\x59\\xf8\\x7d\\xeb\\xde\\x55\\xc9\\x05\\xf0\\xde\\x20\\x82\\xff\\xbd\\x7b\\x2a\\x62\\x2e\\xe0\\xa3\\x3e\\x9a\\x98\\x58\\x3d\\x7e\\x25\\xde\\x0f\\x87\\xf1\\x51\\x28\\xa4\\x44\\x27\\x7d\\x91\\x89\\xc0\\x80\\x04\\x28\\x06\\x87\\x6f\\x41\\xf9\\xad\\x0c\\x9a\\x42\\x0c\\xa2\\x10\\x43\\x8d\\x49\\x04\\x30\\x21\\xe2\\x28\\x16\\xbe\\xdf\\x4e\\x27\\xc9\\x6d\\x09\\x21\\xde\\xf6\\x2f\\x28\\x7d\\x5a\\x04\\x34\\x43\\x03\\xb3\\xed\\x46\\xc4\\xe2\\x05\\xb8\\x6f\\x03\\xcd\\xeb\\x4a\\xa5\\x5a\\xae\\x8e\\xe7\\x2b\\x46\\x02\\x6f\\x6d\\xd7\\x03\\x64\\xc1\\xfb\\xc6\\xc7\\xe1\\x9e\\xab\\x41\\x59\\x60\\x0c\\x9f\\x87\\x87\\xaf\\x07\\xcc\\x42\\xe6\\xd7\\x6b\\x08\\xd1\\xbc\\x42\\xe2\\xf7\\xd2\\x9b\\x7d\\x91\\x4a\\x60\\x80\\x15\\xeb\\x1c\\x4b\\xf2\\xcb\\xaf\\x93\\x32\\x5c\\x77\\x56\\xb8\\x19\\x17\\xeb\\xa2\\xb9\\x51\\x5d\\xd6\\x92\\xf5\\xfa\\x22\\xe5\\x6a\\x85\\x5a\\x5c\\x51\\xb4\\x7c\\x25\\xae\\x17\\x2b\\x89\\x57\\xa6\\xa6\\x60\\xff\\x35\\xf1\\x92\\xbf\\xc6\\x05\\xab\\x97\\xae\\x1f\\x34\\x49\\xce\\x39\\xa4\\x08\\xd1\\x4d\\x21\\x6c\\x1b\\x0a\\x28\\x88\\x5f\\x87\\xfd\\x45\\x0e\\x18\\x08\\xc0\\x8d\\x10\\x56\\xb0\\x06\\xdb\\x46\\x25\\xe6\\xee\\x4f\\x54\\x52\\x6a\\x99\\x4e\\x47\\x80\\xbf\\x40\\xba\\xab\\xee\\xfe\\x81\\xef\\x7e\\x1b\\x60\\x17\\xdf\\x8a\\x27\\x1b\\x98\\x95\\xc0\\x34\\xdf\\x7e\\xdc\\x16\\x38\\xc1\\xb7\\x5f\\x72\\xa0\\x59\\x68\\xbf\\xdc\\xe0\\x45\\xfa\\x16\\xe6\\x2d\\x64\\x46\\x45\\xa8\\xde\\x57\\x23\\x13\\xdb\\x2f\\xd7\\x80\\x69\\x8a\\xaa\\xe7\\xdb\\x81\\x66\\xa8\\x91\\x50\\xc4\\x57\\xba\\x38\\x06\\x42\\xd9\\x40\\x32\\x50\\x23\\x20\\x97\\xc3\\x92\\xaf\\x55\\x67\\xa4\\x27\\x25\\x46\\x47\\x21\\x33\\x98\\xa5\\x6c\\x82\\x91\\x21\\x7e\\xbc\\x66\\xca\\x61\\xcb\\xa0\\x94\\xe1\\x2c\\x31\\xeb\\xb3\\xed\\x82\\x2a\\x9c\\x04\\x84\\x62\\x97\\x2e\\x2c\\x16\\x95\\x0c\\x96\\x66\\x8e\\x51\\xf1\\x1a\\xa7\\xce\\x3b\\xff\\xf5\\xd9\\xad\\xa7\\x46\\xcd\\x10\\x48\\xce\\xe9\\xbe\\x73\\xd4\\xd6\\xd5\\x54\\x91\\xa9\\x4d\\xab\\xee\\x9a\\xe4\\xba\\xf0\\x0e\\x48\\xaf\\xdc\\xd6\\xd1\\xbd\\xdf\\xaf\\x57\\x6c\\x3c\\xfb\\xd1\\xc2\\xb3\\x91\\x9e\\x9e\\xf9\\xaa\\xfc\\x96\\xd2\\xbc\\xc8\\xd4\\xdd\\xbf\\x78\\x72\\xa2\\xf3\\x81\\xf7\\xf7\\xbc\\xf0\\xe4\\xe0\\x33\\x47\\xfc\\x72\\x95\\x31\\xa9\\x37\\x25\\x5f\\x93\\x48\\xb5\\xec\\x68\\x3f\\xb5\\x58\\xd7\\x79\\xec\\xe5\\xd1\\x30\\xd6\\xe3\\x1c\\xdd\\x4c\\xa2\\x84\\xdb\\x7c\\x2d\\x31\\xc0\\xf2\\x75\\x66\\xd5\\xd9\\x42\\x9d\\x81\\x61\\x19\\x60\\xb7\\x21\\x16\\x51\\x34\\x4b\\x8d\\x48\\x41\\x44\\xce\\xc8\\x5c\\x57\\x6f\\x43\\x0e\\x20\\xb3\\x29\\xc7\\x66\\xb0\\x65\\x65\\x24\\x27\\xc9\\x65\\x91\\x11\\x48\\x0f\\xfa\\x08\\xb1\\xee\\x7a\\x11\\xf7\\x36\\x94\\x67\\x38\\x84\\xd5\\xe7\\xe4\\x2b\\x4e\\x11\\xaf\\x1f\\x87\\x99\\xc2\\x9f\\x6d\\x79\\x6a\\x77\\x29\\xec\\xb9\\x09\\x8f\\xe3\\xc6\\xc6\\xe8\\xba\\xed\\xf7\\xf7\\x4c\\x3c\\x3c\\x61\\x0f\\xe8\\x4d\\xdd\\x37\\x77\\x8c\\xde\\xe3\\x2a\\x4c\\xab\\xe9\\x9d\\xee\\xaa\\x9c\\x6b\\xb1\\x46\\xe0\\x41\\xd0\\xd6\\xce\\x26\\xf4\\xdc\\xf7\\xd6\\x6c\\xa6\\xec\\xcc\\xa1\\x9e\\xb9\\x0d\\x83\\x5f\\x3d\\x50\\xd7\\x78\\xf3\\x53\\xc3\\xfd\\xf2\\xf6\\x33\\x4b\\x0d\\xd5\\xde\\x86\\x6c\\xb7\\x41\\x49\\xad\\x16\\x8d\\x1d\\xaa\\x91\\xfb\\x96\\x86\\x8b\\x04\\x3b\\xe7\\xbf\\xb9\\x6f\\xd3\\x37\\x33\\x2b\\x28\\x03\\xe5\\xfa\\xf4\\x2c\\xac\\xdf\\xd0\\x48\\x08\\x86\\x1f\\x0a\\xef\\x65\\x72\\x64\\x49\\x82\\xea\\xb9\\x6a\\xc7\\xa0\\x0a\\x45\\xca\\xe3\\x3b\\x96\\x5e\\xbb\\xa9\\xcc\\x39\\xf7\\xf8\\x1c\\x74\\x2d\\x36\\xaa\\xed\\x93\\x27\\x27\\xb9\\xff\\xd9\\xb5\\xeb\\xeb\\xf0\\xc3\\x65\\x2a\\x93\\xe9\\xbe\\xff\\xfb\\xfb\\xb6\\xfe\\xfb\\x89\\x6e\\xbc\\x09\\x37\\x2c\\x9d\\xee\\x9c\\x7c\\x72\\x6f\\x25\\x04\\xea\\x99\\x95\\xc0\\x36\\x7c\\x0f\\xd9\\x6f\\x73\\x7f\\xa6\\x33\\x89\\xdf\\xaa\\xc1\\xa7\\x8b\\x8a\\xc4\\x50\\x23\\x86\\xe8\\x87\\x42\\x91\\xc9\\xc6\\x53\\xd8\\xbb\\x24\\x2a\\x12\\xe2\\x19\\x36\\x81\\x17\\x45\\xb0\\x40\\x9c\\xce\\xb0\\x05\\x22\\x88\\xb2\\x65\\xf0\\xcc\\x7c\\x39\\x14\\x0c\\xdd\\xde\\xad\\x3a\\x72\\x0f\\x86\\xd2\\xb9\\x13\\x6d\\xef\\x2f\\x2e\\x3e\\x00\\x5f\\x7e\\x10\\x77\\x46\\x96\\xce\\x9d\\x9e\\xac\\xba\\x63\\x67\\x47\\xfc\\xa0\\xea\\xdc\\xc1\\xbe\\x9b\\xdb\\xf5\\xa1\\x80\\x7e\\x5e\\x8e\\x37\\xb8\\x06\\x7a\\x03\\xc1\\xd9\\x2b\\xf2\\x15\\xc6\\x02\\xc5\\xc4\\x08\\x73\\x0d\\x21\\x9a\\x41\\xf4\\x88\\x84\\xc5\\xe4\\x68\\xe0\\xaa\\x00\\x3b\\x31\\xa3\\xbc\\x42\\xab\\x95\\xc9\\x88\\x1a\\xe3\\x55\\xf3\\xd5\\x79\\xe5\\xe5\\x7c\\x53\\x81\\x13\\x6f\\xda\\x05\\x59\\xe5\\x93\\xb5\\xa9\\x05\\x62\\x5a\\x79\\xf5\\x06\\x08\\x9c\\xd9\\xc5\\xac\\x04\\x3a\\xf0\\x53\\x6b\\x13\\xcb\\xd7\\x74\\x1b\\xf1\\xdf\\x03\\x9b\\x84\\x7c\\x5a\\xdf\\xe6\\x1a\\x68\\x44\\xec\\xb4\\x1b\\xcb\\x95\\x74\\x3d\\xb9\\xd2\\x51\\xba\\x4c\\xa1\\x5f\\x2b\\xd7\\x35\\x39\\xdd\\x89\\x5c\\x65\\xb8\\x66\\x51\\xdf\\xb8\\xa3\\x21\\xc3\\x99\\x16\\x13\\x99\\x92\\x9a\\x12\\x69\\xa9\\x32\\x25\\x06\\xfe\\x6d\\x51\\x08\\xe3\\xbf\\x3c\\x27\\x64\\x6e\\x1f\\xa5\\x59\\x1a\\xe7\\x54\\xf4\\x5a\\x71\\x1d\\xd9\\x14\\x0b\\x38\\x1e\\xc1\\x4b\\xb4\\x9f\\x79\\x1b\\x69\\x90\\x05\\xf9\\x7c\\xc5\\x59\\x99\\xd7\\xcf\\x85\\x9a\\x7e\\x25\\x17\\x6a\\x06\\x34\\xea\\xb4\\x80\\x8c\\xb9\\x5a\\x8b\\xce\\x92\\x9a\\x9c\\x20\\x8f\\x8d\\x46\\x1a\\xd0\\x48\\xd7\\x60\\xb9\\x08\\xc8\\x43\\xae\\x70\\x42\\x0c\\x7e\\xc0\\x09\\xd9\\x50\\x95\\x09\\x19\\x18\\x57\\x1d\\x7e\\xfb\\x50\\x59\\x86\\xa7\\x6b\\xdb\\x1d\\xfe\\x9b\\x5e\\xbb\\xa9\\x14\\x80\\x5a\\x32\\x6d\\x7a\\x78\\xae\\x70\\x63\\x47\\x43\\xb6\\x2e\\xb3\\x69\\x68\\x5b\\xcf\\xd8\\x3d\\x43\\x66\\x58\\xbd\\x0c\\xa6\\x8d\\x27\\x98\\xb7\\xa7\\x9e\\xfd\\xed\\x4d\\x6f\\xb5\\x3f\\x7e\\xdf\\x81\\x41\\xfb\\xd0\\x57\\x7e\\x71\\xe0\\x9e\\xb9\\xc9\\x37\\xef\\xeb\\x93\\xab\\x8c\\xc9\\x3d\\xa9\\x05\\x9a\\xc4\\x2f\\x96\\xc7\\x1e\\x7d\\x77\\xb4\\x75\\xf0\\xe9\\xc3\\x2d\\x7c\\x5b\\x7f\\x2d\\x78\\x91\\x2e\\x61\\x56\\x90\\x06\\x79\\x7d\\x6e\\x1a\\x10\\x68\\x00\\x23\\x5c\\x1f\\x8e\\x1c\\xc6\\x88\\xa5\\x31\\x3b\\x1a\\xca\\x5d\\x96\\xb8\\x36\\x70\\x58\\xa7\\x49\\xc8\\x89\\x17\\x4d\\x23\\x95\\x43\\xa5\\x84\\xeb\\x41\\xd7\\xe9\\xf4\\x6a\\x07\\xf5\\x68\\x40\\x4f\\x6d\\xc2\\x5c\\xe5\\xdc\\xd3\\xbb\\x4b\\xaa\\x97\\x9e\\xd8\\xd4\\xff\\x95\\x03\\x0d\\x78\\x0f\\xd8\\x7b\\x97\\xea\\x1a\\xf7\\xf7\\x59\\x5f\\x78\\x66\\x2f\\x53\\x3f\\x31\\x18\\xf8\\x1f\\xec\\xdd\\xfe\\xf8\\xe4\\xc8\\xc9\\x59\\x77\\xe1\\xec\\x99\\xc9\\xea\\xdd\\x5d\\x05\\x79\\xfe\\xf9\\x9a\\xa7\\x9f\\x05\\x01\\x87\\xf1\\x24\\xb7\\x40\\xdb\\x69\\x0f\\xd2\\xf1\\x2b\\x1c\\x2f\\xab\\x8e\\xc8\\xda\\xb0\\x62\\x21\\xd7\\xa8\\x37\\x10\\x39\\x29\\x2c\\x72\\x0a\\xd5\\x98\\xea\\xcb\\xbe\\x86\\x8e\\x41\\x14\\x43\\x6d\\x0c\\x93\\x23\\x7e\\x85\\xcb\\xf9\\xbf\\xa9\\x1a\\xf1\\x3f\\xa5\\x8e\\x06\\xcc\\xd4\\x38\\xe6\\xea\\xa6\\x9f\\x58\\xf4\\x55\\xef\\x7b\\x62\\xb4\\xff\\x2b\\x07\\x1a\\xf1\\x1e\\x6c\\xeb\\x5b\\xaa\\x6b\\x3c\\xd0\\x67\\xb3\\x0f\\xdf\\xd9\\x35\\x43\\xfd\\xc7\\xe4\\x60\\xe0\\x8f\\x74\\xc9\\xb6\\x47\\x27\\x46\\x4e\\x6e\\xe6\\x6b\\x37\\x51\\xbd\\xab\\xcb\\x62\\xf4\\xef\\xa8\\xe9\\xb9\\xa5\\x3b\\x6f\\x92\\xe4\\x98\\x44\\xf5\\x5c\\x03\\xbd\\x8d\\x59\\xc1\\x3a\\xf4\\x4c\\x2d\\x42\\x7a\\xf8\\x4e\\x30\\x12\\x95\\x82\\x04\\x7e\\xc0\\xfd\\x0a\\x21\\x24\\x7d\\x0e\\x60\\xa5\\x74\\xc5\\x66\\x24\\xb4\\x3d\\x5c\\x03\\xbd\\x9d\\xf6\\x60\\x1d\\xfa\\x7d\\x87\\x40\\x5b\\x16\\x1c\\x23\\xb4\\x9f\\x23\\x84\\x22\\x9e\\x03\\x78\\x39\\x38\\x46\\x88\\x31\\xc9\\xb9\\x26\\x15\\x71\\xbc\\x2c\\x3e\\x13\\x39\\xfc\\xa3\\xb1\\xb8\\x98\\x86\\x37\\xb8\\x24\\x40\\x1d\\xa1\\x0d\\xa9\\x1b\\x52\\xe2\\xe3\\x50\\x2c\\x8a\\x51\\xc9\\x24\\x6c\\xa2\\x11\\x64\\x36\\x99\\x2a\\x94\\x53\\x08\\x64\\xaa\\x58\\x8a\\x5c\\x5c\\x51\\xc7\\x77\\x73\\x95\\x53\\x4f\\x2e\\x55\\x54\\xec\\x7d\\x6a\\x0a\\xaa\\xb8\\x57\\x9b\\x0f\\xf6\\x15\\x58\\xfa\\x0e\\xb6\\x50\\xf5\\x78\\xe2\\x8b\\x56\\xef\\x96\\x53\\x23\\x23\\x27\\xe7\\x3c\\x10\\x48\\xc5\\x37\\x81\\xb9\\x6d\\x67\\x75\\xed\\xae\\xae\\x7c\\x10\\xe6\\xd0\\x04\\x42\\xf4\\x22\\x89\\x33\\x30\\xa1\\x52\\x9f\\x17\\xd1\\xc0\\x00\\xdf\\x21\\x80\\x18\\x0a\\x18\\x01\\x5e\\x4c\\xca\\x62\\x7e\\x2e\\x49\\x84\\x0d\\xbc\\x4a\\x05\\x48\\x65\\x52\\xe5\\x69\\xb2\\x93\\x94\\x71\\xb1\\x31\\xd1\\x51\\x11\\x28\\x0b\\x32\\xf9\\x45\\x46\\x25\\x06\\x23\\xdb\\x64\\x36\\x99\\xab\\x84\\x72\\x39\\xc9\\x72\\x43\\x32\\x16\\x90\\xc0\\x03\\x5e\\x56\\xf8\\x41\\xdf\\x6d\\xfd\\x66\\x73\\xff\\x6d\\x7d\\x2f\\x2f\\x34\\xd9\\x2a\\x73\\xe5\\x80\\x33\\x94\\xdb\\x53\\xb3\\x30\\xce\\x69\\xdc\\x52\\xfb\\xef\\x2f\\x97\\x0e\\x78\\xd2\\xd3\\x8a\\xfa\\x7d\\x50\\x31\\xff\\x70\\x77\\xf7\\x83\\x3b\\xca\\x01\\x4f\\x7c\\x71\\x1e\\xb0\\x67\\x60\\xa7\\x77\\xe0\\xd5\\xfe\\x9e\\xd7\\x07\\xba\\x1f\\x59\\xa8\\x84\\x71\\x7c\\x13\\x38\\xba\\xb7\\x17\\x97\\xec\\xec\\x73\\x01\\x22\\xb9\\x09\\x2e\\xd2\\x77\\xb1\\x49\\xc8\\x8e\\xfc\\xa8\\xd8\\xe7\\x89\\x04\\x8a\\x75\\xe4\\x62\\x71\\xbb\\x02\\x3b\\x10\\xc5\\x62\\x96\\xc2\\xdb\\x42\\xb0\\xb6\\x99\\x0d\\x12\\xc0\\x38\\x7c\\x11\\x6d\\x32\\xea\\xf4\\xc9\\x5a\\xb9\\x4e\\xf4\\x73\\x23\\x49\\xd0\\xae\\x00\\x22\\xf3\\x15\\x71\\x09\\x15\\x09\\x27\\x4b\\xa3\\x1d\\xb0\\xe6\\x4e\\x95\\x6c\\x1f\\x74\\x3a\\xfd\\x7c\\x74\\x9a\\xa9\\xbc\\xc7\\x5d\\x31\\xa9\\x85\\x05\\x88\\x48\\xb1\\xe8\\x74\\xee\\x9c\\x94\\x38\\x16\\x20\\x33\\x71\\x47\\x5a\\x26\\xe0\\xec\\xda\\x79\\x7f\\x6e\\x85\\x5d\\x1b\\xad\\xdb\\xed\\x77\\x77\\x97\\x99\\xd2\\x62\\xe0\\xef\\x31\\x6a\\x93\\x3b\\xdb\\x58\\x92\\x97\\x16\\xc7\\xb2\\x71\\xa9\\x79\\x25\\xb9\\x9a\\x22\\x8b\\x36\\x86\\xa2\\x00\\xe7\\x17\\xdd\\xb4\\x38\\xeb\\xb7\\xf8\\x5c\\xb8\\xec\\x72\\xbe\\xa6\\xbb\\xde\\x6a\\xa8\\xea\\x1b\\x9b\\xc8\\x9f\\xf8\\xd6\\x38\\x8c\\xbc\\x3f\\x36\\xfe\\xf6\\xa9\\x61\\x50\\xe6\\x79\\x35\\x0d\\x3d\\x79\\x8d\\x63\\xdb\\x76\\xb9\\x60\\x2a\\xab\\x30\\x37\\x29\\xb7\\xaa\\x6f\\xd3\\xa6\\xdc\\x06\\x7d\\x5f\\x6f\\x5b\\xa9\\x2e\\xc9\\xe8\\x51\\x29\\x8c\\x89\\x08\\x50\\x61\\xf0\\x53\\x82\\x37\\x5b\\xce\\xeb\\xf1\\x4c\\x01\\x93\\x9e\\xc1\\x80\\x19\\xe0\\xfb\\x1a\\xd1\\x80\\xf8\\xbe\\x26\\x53\\x93\\xac\\xbe\\x21\\xe0\\xb6\\x12\\xaf\\xc3\\x6e\\x34\\xa8\\x72\\x54\\x1a\\x09\\x9b\\x64\\x04\\x21\\x23\\x9a\\x2d\\x74\\x02\\xe8\\x08\\xd9\\xf1\\x19\\x21\\x63\\x4b\\x68\\x2d\\xb1\\xdb\\x59\\x33\\xd6\\xe3\\x9c\\x64\\xbb\\xdf\\x75\\x74\\x77\\xf5\\x64\\x85\\x4a\\x5f\\x37\\x5d\\x16\\x08\\xf4\\xdd\\x37\\xed\\x49\\x75\\xb4\\xd8\\x2d\\x65\\x06\\x79\\xac\\xca\\xa1\\xcf\\x2d\\xb7\\xaa\\x95\\x51\\x80\\xb3\\x93\\x77\\xa6\\xaa\\x31\\xce\\xeb\\xba\\xb9\\xab\\x62\\xb8\\x34\\x13\\xc3\\x7e\\xef\\x4c\\x6b\\x3e\\x9e\\x80\\xdc\\xe6\\x2d\\x95\\x15\\x53\\xd5\\x9a\\x09\\x28\\xd8\\x78\\xf7\\x90\\x73\\xeb\\x48\\x93\\x3c\\xa1\\xbc\\x6b\\xca\\x33\\x92\\x5d\\xe7\\xd5\\xe7\\x54\\xf4\\x8c\\x4d\\x17\\x4c\\xbc\\x37\\x3e\\xf2\\xfd\\xf1\\xa9\\x77\\x4e\\x0e\\x01\\xe4\\x77\\x6c\\x2b\\x23\\x3a\\xaa\\x3d\\xf8\\x3b\\x7a\\x0f\\xed\\x41\\xc5\\xbc\\x3e\\x65\\x80\\xa2\\xa5\\x24\\x3f\\x30\\x02\\x86\\x66\\x80\\x5c\\x15\\x53\\x48\\x80\\xbd\\x22\\xb5\\x4d\\x0a\\x27\\x6c\\xc8\\xc0\\x8d\\xaa\\x1c\\x95\\xde\\xa0\\xcc\\x23\\x4a\\x87\\xd8\\xfa\\x4a\\x89\\x08\\xb6\\xc0\\x57\\x8f\\xe4\\xe1\\x50\\xb3\\x3a\\xbd\\xc3\\x4c\\xe9\\xd5\\xfa\\x50\\x90\\xb1\\x9a\\x2f\\xc1\\xdf\\x4c\\xb3\\xd5\\xe6\\xbd\\x48\\x61\\x2a\\x26\\xdd\\xa2\\x71\\x35\\x59\\x12\\x31\\x56\\x67\\xed\\x89\\x51\\xc6\\x47\\x01\\xce\\x6b\\xdb\\xdd\\xb4\\xb4\\x9b\\x81\\x6c\\x6f\\x87\\xf5\\x3c\\x7e\\xd6\\xd5\\xe7\\xd3\\xe4\\xd4\\x8c\\x78\\x3e\\x61\\x3f\\xed\\xb8\\x7b\\xc2\\x43\\xd1\\x05\\xb5\\x85\\x46\\xb9\\xf5\\xd5\\xb6\\x0c\\x9b\\x26\\xa1\\x68\\x78\\x6f\\x99\\xff\\x4b\\x4d\\xfa\\x96\\x56\\x7f\\xce\\xc0\\xa3\\x8b\\xd5\\x78\\xcf\\x2e\\xbf\\xb9\\xd2\\x94\\x08\\x63\\x90\\x62\\xa9\\x31\\x5b\\x5b\\x5c\\xe9\\x30\\x0a\\x39\\xcd\\xf3\\xfc\\xf8\\x7f\\x81\\x7b\\x90\\x76\\x31\\xcf\\x22\\x13\\x2a\\xe4\\xd7\\xc2\\x64\\xa0\\x51\\x16\\xb1\\x39\\xec\\x36\\x4c\\xd5\\x20\\xc4\\x02\\xbf\\x5e\\xaf\\x8d\\x98\\x60\\x98\\x2b\\x10\\x57\\x85\\x2e\\x64\\x42\\x79\\xd9\\x2a\\x55\\x8e\\x8a\\x80\\x0b\\x84\\x7b\\x78\\x8d\\xff\\x7f\\x62\\xa2\\x52\\x41\\xc2\\x72\\xcc\\x14\\xbf\\x8b\\xd6\\x83\\xb0\\x05\\x72\\x38\\x6c\\x90\\xfa\\xb8\\xff\\xce\\x09\\xb7\\x63\\xf8\\x48\\x2b\\xf7\\x3b\\x48\\x9e\\x7e\\xee\\x60\\xad\\xae\\x72\\xd8\\x7b\\xd3\\x21\\x0c\\xe9\\x39\\x7b\\x15\\xa9\\xb1\\x2c\\xd8\\x7a\\x76\\x55\\xe0\\x1a\\xb9\\xda\\x9e\\xdd\\xd8\\x73\\x10\\xdf\\x3b\\x0e\\xd9\\xb5\\x5b\\x9b\\x1a\\xb7\\xd7\\x69\\xc7\\x2d\\xa3\\x0f\\x4e\\x96\\x6c\\xee\\x2e\\x57\\x64\\x7d\\xfd\\xe8\\x1d\\xde\\xd9\\xdc\\xe4\\x24\\x6f\\x59\\x49\\xca\\xad\\xb5\\xb3\\xb5\\x5a\\x08\\x34\\xe7\\xf5\\x74\\xb5\\xa8\\x2c\\xfb\\x4f\\x9e\\xe2\\xeb\\xf8\\x7b\\xee\\x4e\\x82\\xf9\\x65\\x44\\x4e\\x5e\\x57\\x29\\x81\\x46\\x19\\xa4\\x8e\\xd6\\x82\\xeb\\xd5\\x31\\x69\\x7d\\x1d\\x9d\\x0e\\x64\\x44\\xb9\\x99\\xa4\\x8a\\x49\\x46\\xd0\\x87\\xd7\\x0d\\x95\\x4b\\xa8\\x23\\x4b\\xaa\\x98\\x70\\xfd\\x2a\\x96\\xc0\\x7f\\x15\\x4f\\x37\\x1a\\x8d\\x8d\\xd3\\xc5\\xdc\\xf7\\x30\\x58\\xbb\\xee\\x9b\\x2b\\x99\\xec\\x1f\\x1a\\x81\\x0d\\x29\\x07\\x62\\x62\\x59\\x80\\x9c\\x8a\\x7e\\x3b\\xfc\\x6f\\xb1\\x86\\xf0\\xd1\\x78\\x62\\x7e\\x53\\x61\\x61\\xab\\x35\\x69\\x5c\\xdb\\xb8\\xb3\\xb5\\xef\\x50\\x66\\xca\\xbe\\xf1\\x4d\\xba\\xf6\\xcc\\x84\\x78\\x53\\xbe\\x29\\x7e\\xd8\\xd6\\x60\\x49\\x02\\x0e\\xad\\xa9\\x1e\\x02\\x94\\x14\\xfc\\x94\\x3e\\xcd\\xac\\x20\\x07\\xb2\\xfb\\x0a\\x10\\xc3\\x6f\\x64\\xf0\\xb6\\x35\\x20\\xc4\\xa2\\x0f\\xb5\\x72\\xed\\xfc\\x34\\x24\\x6b\\x95\\x2a\\xbd\\xb8\\x38\\xca\\x13\\x62\\x69\\x09\\x3f\\x3d\\x19\\x87\\x5c\\x75\\x8d\\xf6\\x62\\xd4\\x64\\x3e\\x9e\\xe4\\x7e\\x88\\xd9\\x84\\x9c\\xca\\xb1\\x1a\\x6d\\x5a\\x41\\x85\\x51\\x19\\x85\\x31\\x4e\\xc0\\x6c\\xa2\\x41\\xad\\x71\\xea\\x92\\x62\\x19\\x80\\x94\\xb8\\x1d\\x49\\xc9\\x18\\x36\\x64\\x98\\x7d\\x1d\\xf6\\xd2\\x0e\\xbb\\x12\\x98\\xfa\\xc0\\x8b\\xed\\xcf\\x9f\\x7b\\x78\\xbe\\x12\\xc6\\xa1\\x78\\xf2\\xc8\\x7d\\x0f\\x56\\xe1\\x95\\xcb\\xb7\\x66\\xb4\\x56\\x17\\xe4\\x56\\xf7\\x8f\\x8d\\x9b\\xc6\\xdf\\x23\\x3a\\xa9\\xec\\xf0\\xde\\x99\\x16\\x33\\x78\\x86\\x76\\x7b\\x11\\x20\\x47\\xf0\\x53\\x7a\\x1f\\xed\\x41\\x05\\x04\\x95\\x00\\x28\\x7e\\x45\\xd9\\x86\\x28\\x8a\\xed\\x95\\x08\\x61\\x9c\\x0c\\x43\\xfc\\x33\\x95\\x6b\\x27\\x1e\\xc9\\x57\\x56\\xa0\\xd2\\x2b\\xf4\\xca\\x50\\x00\\xb6\\x68\\x9e\\x5d\\xd1\\xc2\\x7c\\x3d\\xe4\\x62\\x6d\\x5d\\x2e\\xbe\\xb6\\xf8\\x17\\x20\\x4d\\x34\\xaa\\x1d\\xd5\\xb9\\x32\\xc0\\x59\\xca\\x1d\\xa9\\xd9\\x18\\x6b\\xeb\\xb7\\x37\\x95\\x76\\xd9\\x93\\x30\\x70\\x7f\\x00\\x46\\xa6\\x72\\xb5\\xb9\\x73\\x21\\x53\\x63\\xc9\\x94\\x49\\x00\\x68\\x4f\\x80\\x56\\xb5\\xd7\\x5a\\x6b\\xb6\\xde\\x5e\\x36\\xf2\\xda\\x46\\x18\\xf8\\xf7\\xe1\\x8d\\xcf\\xde\\xda\\x0a\\xe0\\x19\\xde\\xeb\\xc3\\xf7\\x73\\x8f\\x94\\x1f\\xbb\\x63\\xff\\x50\\x21\\x6c\\x06\\x28\\x68\\x9d\\xde\\xb1\\xc3\\x06\\xdf\\x23\\x7d\\x74\\x4f\\xf0\\x53\\xfa\\x30\\x89\\x1d\\x23\\x75\\xba\\x62\\x96\\x21\\xde\\x2c\\x93\\xe0\\x90\\xf1\\x72\\x55\\x95\\x0c\\xc8\\x20\\x93\\xc9\\x14\\x86\\x64\\x2d\\x01\\x50\\xbf\\x41\\xdf\\x84\\x20\\xad\\xe4\\x38\\x00\\xac\\x22\\x27\\x5b\\x63\\xd7\\x2a\\x63\\x18\\xc0\\x99\\x09\\xdb\\xd3\\x32\\x30\\xc4\\xa6\\x9b\\x4a\\xdb\\xed\\x25\\xed\\x36\\x25\\x70\\xfb\\x77\\xee\\x84\\x43\\xc0\\xac\\x5c\\x7e\\x50\\xd5\\xd5\\x68\\x37\\x56\\x0f\\x8c\\x8e\\xe7\\xf1\\x9d\\x30\\xfc\\xc1\\x98\\xef\\xd0\\xde\\xcd\\x2d\\xf9\\x50\\x3c\\xba\\xdf\\x07\\x5d\\x81\\x51\\x66\\x25\\xd0\\x8e\\x9f\\x26\\xd8\\xae\\xc1\\x4f\\xc9\\x79\\xad\\x96\\x8c\\x2f\\x16\\x53\\x98\\xa5\\xb6\\xf1\\xe6\\x0e\\x13\\x46\\x24\\x13\\x86\\x17\\xc3\\x48\\xfa\\x91\\x44\\x92\\x21\\x69\\xd4\\x2b\\xb5\\x6b\\x0e\\x7f\\x42\\xa1\\x8d\\x37\\xe8\\x12\\x3c\\xc6\\x9d\\x5c\\x58\\x80\\x09\\x58\\x00\\x69\\x92\\x49\\x6b\\x2b\\xd3\\x6d\\x00\\x48\\x93\\xed\\x50\\xa6\\x61\\x50\\xd7\\xcc\\xd6\\x97\\xf5\\x38\\x93\\x01\\x2e\\x72\\x0a\\xda\\xc3\\x29\\xe0\\x62\\x80\\x56\\xb5\\xd5\\x59\\x6b\\xb7\\xde\\xee\\xe3\\x3b\\xa0\\xff\\xad\\xe1\\xa1\\x67\\x8e\\xf8\\xf9\\x0e\\x58\\x2a\\x15\\xec\\xc4\\x47\\x83\\x17\\xe9\\xcd\\xcc\\x3b\\x28\\x9f\\xd7\\xdf\\x71\\x80\\x41\\x06\\x34\\xe6\\xf7\\xc3\\x98\\xc2\\x34\\xb5\\xed\\x4a\\x4c\\x01\\xd9\\xea\\x33\\x21\\xdb\\x3f\\x47\\x9f\\x95\\xa1\\xe0\\x77\\xf6\\xf9\\x90\\xcf\\x86\\xec\\x7e\\x72\\x98\\x6b\\x15\\x32\\x3a\\x90\\x14\\x9f\\x7c\\x15\\xd6\\xee\\x51\\xf0\\xd9\\x3d\\xaf\\x1d\\xaa\\xce\\xf4\\xf6\\x6c\\xbf\\xd3\\x3f\\xfc\\xa5\\xaa\\x9c\\xf2\\xbb\\xfc\\xc3\\xf7\\x6e\\xb2\\x59\\x47\\x4f\\x8c\\xb4\\xec\\xeb\\xce\\xc7\\x38\\x23\\x61\\x57\\x42\\x26\\xc6\\x35\\x7b\\xbf\\xaa\\x98\\x78\\xf2\\xbf\\xf6\\x02\\xeb\\x3f\\x79\\xc7\\x7c\\x87\\x19\\xb4\\xfa\\xa1\\x2c\\x4d\\xcf\\xb1\\x7f\\xdb\\xc4\\xfd\\x63\\xd3\\x2b\\xc7\\x7b\\xc0\\xda\\x7f\\xa0\\xa9\\xff\\x85\\xbe\\xde\\x0b\\xfd\\x53\\x5f\\x99\\x2f\\xe1\\xeb\\xf1\\x74\\xf0\\x22\\x5d\\x43\\xb0\\x46\\xbc\\x3e\\x77\\x26\\xd0\\x54\\x16\\x00\\xcd\\xaf\\x43\\x34\\xbf\\xee\\x6e\\xbb\\x72\\xcd\\xc9\\xac\\x43\\x19\\xd1\\x64\\xa7\\xa7\\xc6\\xc7\\x45\\x48\\x91\\x09\\x4c\\x7c\\x3d\\xb4\\x6b\\xc5\\x0d\\x27\\xdb\\x5c\\x53\\x27\\x45\\x06\\x85\\x9f\\x2e\\x9d\\x6e\\x34\\x62\\x88\\xda\\xb0\\x10\\x15\\x0f\\xb8\\x72\\xeb\\xbd\\xfe\\x3d\\xaf\\x1d\\xae\\x02\\x28\\xdb\\xff\\xd2\\x42\\xef\\x49\\x77\\xb6\\xfb\\xf6\\xfa\\xc1\\xbb\\x06\\xcc\\x60\\x1d\\x3d\\xd1\\x0a\\xa9\\x85\\x5d\\x45\\xee\\xf9\\x42\\xf7\\x0e\\x77\\xe7\\x7e\\xbf\\xbe\\xf7\\xbe\\xb7\\x67\\x73\\xa7\\xdf\\xba\\xbf\\x0f\\x52\\xb4\\x1b\\xd3\\x53\\x1b\\x97\\x4e\\xb7\\xe5\\x76\\x9c\\x59\\x22\\xb9\\x92\\xd1\\xa0\\xb8\\x7f\\x50\\xf1\\x36\\xbb\\xb8\\x72\\x6e\\x13\\x8e\\x0c\\x05\\x53\\x44\\x44\\x7d\\xcd\\x60\\x84\\x31\\x23\\xc0\\xd9\\x91\\xe3\\xc2\\x1b\\x8c\\x16\\xf8\\x1b\\x37\\x49\\xbd\\xc8\\xf5\\x41\\x9c\\xae\\xcc\\x52\\xb3\\xd1\\x9d\\x0c\\x38\\x3b\\x65\\x67\\xaa\\x16\\x63\\xd3\\xc0\\x1d\\x83\\x0d\\x33\\x55\\xd9\\x14\\x53\\x3f\\x31\\xb1\\xba\\xc1\\x3c\\xd4\\x64\\x69\\xbf\\xf9\\xd1\\xa6\\x89\\xf7\\xc6\\x60\\xd3\\x77\\x27\\x36\\xbf\\xfb\\x70\\x3f\\x80\\x7b\\xf4\\x48\\x93\\xb0\\xc6\\x7f\\x4a\\x0f\\xd1\\x9e\\x1b\\xc8\\x95\\xf4\\xaf\\xe4\\x92\\xdd\\x40\\xae\\xd7\\xb8\\x07\\xa8\\x19\\x6e\\x51\\x6e\\xac\\xb2\\x96\\x0f\\x16\\xa7\\x03\\xd6\\xa6\\x2e\\xa4\\x18\\x30\\xb6\\x6e\\xbc\\xbd\\xbb\\x69\\x6b\\x9d\\x96\\xa2\\x3e\\x1e\\x1f\\x0f\\x1c\\x2e\\xd8\\xd8\\x60\\x2e\\x1e\\x3d\\x58\\xd5\\x73\\xbe\\x1b\\xba\\x9f\\xef\\x1b\\xf9\\xda\\x52\\x35\\x80\\x6b\\xe4\\xb6\\x56\\xd2\\x5e\\xbb\\x82\\x97\\xe8\\x49\\xe6\\x1d\\xe4\\x43\\x65\\xbe\\x12\\x46\\x40\\x17\\x25\\x69\\x2b\\xa9\\x2b\\x1e\\xbe\\x14\\xa2\\x59\\x8a\\x0e\\xfb\\xcd\\xa4\\xaf\\x9d\\x78\\x9a\\x84\\x1c\\x55\\x8e\\x26\\xc1\\x1c\\x8a\\xbc\\x58\\x93\\x42\\x54\\xb1\\x3e\\x85\\xa8\\xfa\\x3a\\x49\\x47\\x77\\x19\\x9a\\x66\\xca\\x3c\\xa3\\xb5\\x39\\x2d\\xb7\\xbf\\x38\\x35\\xf0\\xc4\\x2d\\xcd\\xbb\\x28\\xcf\\xc6\\xfd\\xd5\\xfe\\xa3\\x13\\x1e\\xcf\\xc4\\x1d\\x2d\\xcf\\x3e\\xdb\\x76\\xcf\\x6c\\xa9\\x6f\\xcb\\x89\\xb6\\xa6\\xc3\\xa3\\x45\\xd4\\x2e\\x68\\xbf\\xfd\\xd9\\xc1\\xa9\\xd7\\x8e\\x75\\xc2\\x5d\\xb5\\xf3\\x5d\\x45\\xf1\\x09\\x25\\xed\\x13\\xc5\\x13\\x0f\\x8d\\x17\\x14\\x4e\\xde\\x3f\\x54\\xb5\\xb5\\x39\\x57\\xd7\\xb0\\xad\\xae\\x61\\x73\\xa5\\x6a\\x32\\xb3\\x7a\\xbe\\xa3\\x79\\x67\\xb3\\xce\\xdc\\xb1\\xbb\\x7e\\xe6\\xec\\x8c\\xc3\\x3e\\xf5\\x88\\x60\\x2f\\x35\\xe2\\x67\\xe8\\xbb\\xa8\\x04\\x54\\x03\\xb7\\x07\\xb7\\x23\\xd4\\x6e\\xf3\\x09\\xdf\\x77\\xe0\\x67\\xe8\\x7b\\xc5\\xef\\xf7\\xac\\xf9\\xfe\\x15\\xee\\x14\\xcd\\x1b\\x44\\x7a\\x54\\x86\\x62\\x82\\x00\\x2c\\x2a\\x8b\\xe1\\x6d\\x25\\x04\\x2f\\x07\\x81\\xd8\\x4a\\x80\\x37\\xd0\\x7e\\xfc\\x5f\\xac\\x12\\x45\\xa1\\x38\\x5f\\x0c\\xcb\\x60\\x54\\x8b\\x10\\x9a\\x4e\\x01\\xa9\\x82\\x64\\xa1\\x75\\x29\\x59\\x56\\xa2\\x50\\xe3\\x0d\\xf1\\x6a\\x7b\\x76\\x95\\xc9\\x04\\x0b\\xf4\\xf7\\x8d\\x7d\\x9d\\x2d\\x2a\\x9b\\xef\\x48\\xf3\\x4d\\x08\\xe0\\x33\\xba\\x12\\xbf\\xce\\x46\\xa2\\x28\\x94\\xf9\\x02\\xff\\x78\\x0d\\xf1\\x78\\xbb\\x80\\x10\\x2a\\x41\\x8d\\xa9\\xe7\\x79\\x66\\xbd\\xe7\\x05\\x76\\xa1\\xe3\\x1c\\x87\\x0d\\xbf\\x2e\\x17\\xd9\\xed\\x62\\xee\\xce\\xeb\\xed\\x6c\\x51\\xd9\\x4b\\x8f\\xb4\\x1c\\x40\\x08\\xe0\\x67\\xc1\\x0d\\xf8\\x59\\xf4\\xab\\x2b\\xf2\\xd4\\x84\\xe5\\xd1\\x8a\\x0c\\x1c\\x0e\\x1b\\x7e\\x96\\x67\\x50\\x63\\x32\\x2f\\xf6\\x18\\xc5\\xc7\\x9b\\x8f\\xf2\\x75\\x86\\x3f\\xd2\\x95\\xf8\\x4d\\x36\\x12\\xd5\\xc0\\x14\\xfd\\x34\\x42\\x6f\\x20\\xa1\\x2d\\x60\\x8e\\xf6\\x53\\xf3\\xac\\x12\\xeb\\x61\\x32\\x38\\x84\\x10\\x92\\xc0\\x24\\xba\\x0f\\x09\\x65\\x5b\\xe8\\x4a\\x6a\\x81\\x8d\\xc4\\x3a\\x98\\xba\\x99\\x2f\\x99\\x42\\x2f\\xf1\\x2b\\x0b\\xf4\\x04\\x63\\x29\\x35\\xfa\\x25\\x8a\\x42\\x4a\\x94\\xe0\\x93\\xc5\\xcb\\x58\\x86\\x46\\x35\\x00\\x08\\x4d\\xa7\\xa6\\x60\\x69\\x62\\x58\\x22\\x97\\xc3\\xa6\\x5c\\x53\\xbb\\xdc\\x78\\x22\\x9c\\x09\\x76\\xff\\x33\\xfc\\xa9\\x5b\\x90\\xd3\\x77\\x6b\\xf3\\xd1\\x3b\\xaf\\x7c\\x14\\x74\\xf0\\x6e\\x84\\xe8\\xce\\x2b\\xf9\\x16\\x68\\x6f\\x83\\x00\\x84\\xc8\\x00\\x45\\x95\\xf2\\xcb\\x45\\x71\\x38\\xcb\\xbb\\x34\\x25\\x8c\\x85\\xc8\\x2f\\x13\\x74\\x27\\xd7\\xb2\\xc8\\x35\\xc0\\x85\\x45\\x78\\x8e\\xfa\\x70\\x35\\x9f\\xfa\\x70\\x1a\\x76\\x71\\x77\\x22\\x40\\xfb\\xb9\\x61\\xba\\x8f\\x9c\\x2b\\x93\\x75\\x88\\xf5\\x12\\xc7\\x78\\xa6\\x57\\x02\\x0c\\x53\\xda\\x10\\x01\\x14\\x85\\x7a\\xf9\\xb7\\x14\\xf3\\xfc\\xcb\\xa0\\x71\\x4d\\xa8\\x7d\\xa4\\x34\\xdd\\xa8\\x0a\\xbd\\x44\\x7c\\x91\\x42\\x25\\x53\\xd1\\x7d\\x5c\\xe5\\x22\\xd7\\x0d\\x4f\\xf0\\xbf\\x8b\\xf0\\x0d\\xae\\x12\\xbe\\xc1\\x0d\\xc3\\xa3\\xe3\\xd4\\x96\\x49\\xfe\\xad\\x93\\xab\\x27\\x84\\x33\\xed\\xa7\\x70\\x1a\\x95\\x49\\x3d\\x89\\x14\\x28\\xc9\\xa7\\xe0\\xbf\\x40\\x24\\xd7\\x4c\\x3f\\x6f\\x25\\xb6\\x18\\x34\\x7c\\xcb\\x5d\\x1d\\x08\\x02\\x4f\\x41\\xaa\\xa5\\xd2\\x60\\xa8\\x2c\\x48\\x85\\x2b\\x9f\\xf0\\x3f\\xf4\\xe5\\x96\\x94\\x14\\x4b\\xb9\\xde\\xa8\\x2f\\xcb\\x4f\\x49\\xc9\\x2f\\xd3\\xa3\\x60\\x10\\x97\\x06\\xff\\x42\\x7f\\x0b\\xbd\\x82\\x75\\x28\\x4e\\x85\\x90\\x04\\xc5\\xc1\\xcf\\x48\\x3f\\xd2\\xc1\\xbf\\xd0\\x0f\\xa2\\x57\\xb0\\x1e\\xc5\\x71\\xbf\\x45\\x08\\xe9\\x50\\x5c\\xb3\\x50\\xfe\\x14\\x42\\x88\\x45\\xee\\xe0\\x45\\xfa\\x34\\xf3\\x0e\\x52\\x21\\x17\\x6a\\x42\\xa3\\x68\\x0f\\xda\\x8f\\x1a\\x7c\\xb5\\xfb\\xf7\\xe1\\xc8\\xa8\\xa5\\x64\\x29\\xc5\\x4a\\x70\\x3d\\x8a\\x44\\x0c\\x8a\\x64\\x46\\x49\\x46\\x3b\\x09\\x8b\\x24\\xa3\\x28\\x2a\\x8a\\xec\\xa0\\x2a\\x49\\x0a\\x20\\xc1\\x9f\\xa6\\x0a\\x37\\x2e\\xcc\\xcf\\x4c\\x6d\\x1c\\x34\\xf0\\x3f\\x1a\\x83\\x46\\x13\\x2d\\x4d\\x17\\xd2\\x36\\x5b\\x13\\x43\\x9e\\x31\\x8a\\xf5\\x11\\x01\\x70\\x4d\\x6c\\xd7\\xb5\\x51\\x5c\\xcc\\x35\\xdf\\x5c\\x4b\\x23\\xd7\\x83\\x12\\xce\\x25\\xd9\\x5a\\x0b\\xbd\\xad\\xc9\\x29\\x6d\\x45\\xee\\x56\\x5b\\x92\\x92\\xff\\xab\\x2d\\x25\\xd9\\xef\\x71\\xfb\\x6d\\x49\\xdc\\x31\\xbe\\x94\\xff\\x3e\\xc9\\xca\\xff\\xdf\\x9e\\x44\\xa5\\x44\\xa6\\x98\\x34\\xea\\xbc\\xe4\\xc8\\xc8\\x94\\x3c\\x8d\\xda\\x94\\x1c\\xc9\\xbd\\x1c\\x99\\x62\\x52\\xab\\xf3\\x52\\x22\\x22\\x48\\x49\\x4a\\x04\\x77\\x77\\x54\\x8a\\x49\\x9d\\x9d\\x97\\x1c\\x25\\x94\\x24\\x47\\x95\\x14\\xe2\\x69\\x37\\x74\\x5a\\x46\\xfd\\x76\\x57\\x5e\\x9e\\xcb\\xee\\x1f\\xb5\\xb4\\x59\\xc6\\xfc\\x36\\x97\\xd1\\xe8\\xb2\\xf9\\xc7\\x2c\\xd4\\x13\\x96\\xd1\\x36\\xbb\\xdd\\x3f\\x66\\x69\\xcb\\x1f\\xf5\\xdb\\x6d\\xfe\\x51\\xcb\\xea\\x13\\x19\\x95\\x1e\\x9d\\xce\\x53\\x99\\xd1\\x96\\x51\\x41\\x3e\\xa4\\xb7\\x5d\\xf3\\x0d\\xc5\\xa4\\x93\\x4f\\x15\\xe9\\x6d\\xe9\\x95\\x1e\\xbd\\xde\\x53\\x99\\xbe\\xba\\xdd\\x4e\\xdd\\x64\\x47\\x00\\x67\\xd0\\xd7\\x28\\x33\\xb5\\x82\\x58\\x94\\xe1\\x4b\\xa5\\xc4\\xbc\\x6e\\x08\\x11\\xd7\\x57\\xd4\\xcb\\xcf\\x96\\x26\\xb9\\x8c\\x8c\\x20\\x50\\x83\\x03\\x6c\\x38\\x05\\x12\\xa6\\xb9\\xff\\x05\\xfa\\x69\\x6c\\xe4\\xf6\\xc1\\x92\\x1c\\x96\\xc8\\x18\\x3c\\x83\\x1e\\x13\\xf9\\xe8\\x7c\\x6a\\x06\\x30\\xcf\\x08\\x03\\xe1\\x84\\x21\\xcc\\x8a\\x0c\\x0b\\x56\\x4e\\xf1\\xea\\x09\\x14\\xa0\\x06\\xc0\\x52\\xd0\\x71\\x3f\\x99\\x81\\x04\\xee\\x12\\xb5\\xc2\\x1d\\x94\\x73\\xb7\\xc2\\x61\\xb8\\x53\\x18\\xd7\\x76\\xf4\\x24\\x75\\x82\\xfe\\x33\\xbf\\x0f\\x3d\\x8f\\x11\\x58\\x8c\\x5a\\xbe\\x2b\\x6e\\xf5\\xe3\\xa8\\xf6\\x27\\x2d\\x74\\x92\\x85\\xd7\\x19\\xc9\\x78\\x33\\x2d\\x63\\x5e\\x41\\x91\\x28\\x16\\x35\\xfb\\x22\\x63\\x00\\xd1\\x52\\xd1\\xb9\\x2b\\x46\\x74\\xf5\\x05\\x3c\\xc9\\x80\\x18\\xd3\\xb0\\x89\\x9f\\xee\\xb4\\xe0\\x81\\x07\\x78\\xfe\\xea\\xef\\x7b\\x7d\\x11\\x02\\x0c\\x31\\x99\\xf8\\x36\\x85\\x5a\\xa1\\x76\\xa8\\xf4\\x60\\x03\\x95\\x4c\\x42\\xcd\\x7d\\xf9\\xcb\\x5b\\xb8\\x54\\x80\\x5f\\xec\\xe2\\xf2\\x60\\xc2\\x40\\xdd\\xda\\xfd\\xd6\\x5b\\x25\\xb8\\x39\\xf0\\x5d\\x78\\xbd\\x9a\\xc8\\xdb\\x86\\xef\\xa2\\xde\\x66\\x5e\\x41\\x0a\\xd4\\xf1\\x62\\x3c\\x60\\x20\\xf9\\x9c\\x73\\x05\\x5f\\xf0\\x50\\x36\\x66\\x6f\\x83\\x90\\xa5\\x4b\\xf8\\x03\\x1a\\x53\\xc5\\x54\\xcd\\x28\\x54\\x24\\x00\\xde\\x7a\\xa1\\x51\\x48\\xc5\\xac\\x40\\x0a\\x85\\x5a\\xae\\x66\\xa5\\xeb\\x52\\x31\\x0b\\x79\\xca\\x49\\x26\\xe6\\xaf\\x2b\\xb4\\x7b\\x3b\\x0f\\x1d\\x83\\xad\\x78\\x78\\xc8\\x58\\xe9\\xd0\\x44\\x6d\\x63\\x9e\\x5e\\xae\\xea\\x80\\x33\\xf7\\x73\\x34\\xfc\\x71\\xdb\\x76\\x48\\x31\\x95\\x6a\\x02\\x3f\\xa5\\xb2\\x05\\xdd\\x77\\x13\\x42\\xf4\\x18\\xf3\\x36\\xb2\\xf1\\x33\\x31\\x04\\x32\\x13\\x05\\x92\\x68\\x60\\x19\\x09\\x3b\\x12\\x03\\x0c\\x2d\\x40\\x34\\x87\\x10\\x66\\x2a\\x89\\x54\\xc4\\x29\\xab\\x18\\x37\\xda\\xac\\x05\\x96\\x7c\\xb3\\x41\\xaf\\xce\\xe6\\xf7\\xd0\\x89\\x32\\x59\\x42\\x5c\\xac\\x94\\x04\\x37\\x24\\xb2\\x12\\x95\\x42\\x45\\x8c\\x6c\\xbd\\xda\\x61\\x23\\xbf\\x57\\xbb\\xa4\\x2b\\x55\\x0a\\x95\\x52\\x45\\xc9\\xb9\\xc7\\x68\\x48\\xd3\\xe1\\x4b\\xab\\xe9\\x23\\x99\\xba\\x04\\x09\\xfd\\xcd\\x6f\\x30\\x2f\\xbd\\x20\\x29\\x9c\\x7e\\x60\\xa8\\xff\\xf8\\x98\\x13\\x76\\x63\\x43\\xfd\\x44\\x49\\xf9\\x54\\xb5\\x86\\x85\\x69\\xee\\x24\\x0b\\xc3\\xf0\\xf3\\x2d\\xb5\\xcb\\x8e\\xf1\\xf1\\xe8\\xe2\\xe6\\x36\\xd5\\x96\\x9e\\x73\\xbd\\x3f\\x1a\\x7c\\x74\\xa1\\xc2\\x3d\\x79\\x77\\x67\\xc5\\xe6\\x3a\\x9d\\xbd\\x6f\\xa9\\xfa\\x47\\xbd\\xe7\\xc8\\xd9\\xdf\\x89\\xe0\\x25\\xfa\\x59\\x62\\xcb\\x38\\xa1\\x46\\xb8\\x8f\\x8d\\x8c\\x04\\xa0\\x85\\x74\\xcc\\xa2\\x3f\\x9f\\xf8\\x0d\\x23\\x7c\\x93\\x70\\x15\\xcd\\xda\\x62\\x12\\xc1\\xcc\\x33\\xb1\\x22\\x29\\x1b\\xc5\\x4a\\xa3\\xb6\\xa1\\x48\\x44\\x43\\x24\\x81\\xd5\\x20\\xf6\\x2a\\xdf\\x6b\\x08\\x49\\x7a\\x23\\x40\\x22\\x29\\x15\\x92\\x70\\x32\\x82\\xc6\\x12\\x5f\\xe6\\xfc\\xbf\\x7c\\x92\\x61\\x8a\\xc3\\x39\\x3c\\xab\\xc2\\x10\\x92\\xff\\x2f\\xef\\xfd\\x7f\\x7d\\x25\\x81\\x0e\\x72\\xda\\xf3\\x72\\x0d\\x39\\xb2\\x04\\x95\\x4c\\xa3\\xd0\\x6a\\xe3\\x88\\x9e\\x55\\xcb\\x13\\xd6\\xe5\\xa9\\x76\\xc8\\xd4\\xb1\\x14\\x81\\xd1\\xb0\\x65\\x50\\x4a\\x9b\\x9c\\x5c\\x14\\x85\\xce\\x8b\\xe8\\x07\\x5f\\x86\\xc8\\xe4\\xdc\\x2c\\x85\\x51\\x26\\x53\\xfa\\x54\\xae\\x66\\x6b\\xd2\\x16\\xc6\\x3e\\x70\\xa8\\xe3\\xc8\\xae\\x55\\xff\\xc1\\x7e\\xa7\\x74\\x1b\\xec\\x7a\\x79\\x75\\xfb\\x91\\x92\\x01\\x6f\\x46\\xba\\x77\\xa0\\xf4\\x08\\xf5\\xe3\\x80\\x57\\x57\\xe5\\xc8\\x92\\xd2\\xfd\\x51\\xb1\\x79\\x2d\\x73\\x65\\xf8\\xad\\x8e\\x13\\x9b\\x8b\\x21\\xf0\\x12\\xb3\\x02\\x9e\\xb1\\xdb\\x5b\\x40\\xc1\\x5d\\xe4\\x16\\xc0\\xd5\\xbf\\x58\\x56\\xbe\\x38\\xe8\\x22\\x79\\x1b\\xf6\\x06\\x2f\\xd2\\x0e\\x32\\x8e\\xdb\\x7d\\xad\\x1a\\x90\\xb0\\x5a\\x60\\x24\\xf2\\x48\\x0c\\x88\\xef\\x45\\xba\\x5e\\x01\\x08\\xea\\xa4\\xc0\\x44\\x00\\x4d\\x31\\xf4\\x48\\x24\\x88\\x20\\xd5\\x48\\x22\\x21\\x2d\\x51\\xb9\\xb6\\xe2\\xfc\\xa8\\xd6\\x68\\xb5\\x32\\x99\\x52\\xab\\x8d\\x8b\\x92\\x5e\\x01\\x4b\\xba\\x92\\x9a\\xd9\\xa1\\x76\\xd8\\xc8\\xaf\\xe0\\x49\\x1d\\x36\\x4f\\x54\\xfc\\x7f\\x54\\x27\\x37\\xe8\\x99\\x39\\x39\\xec\\xde\\xe2\\x88\\x70\\xed\\xf0\\xee\\x79\\xe7\\xae\\x46\\x78\\xe3\\x8d\\x37\\xde\\x80\\x86\\xbb\\xde\\xde\\xe3\\xdd\\xee\\x89\\x70\\x6c\\xf5\\x8c\\x3c\\x34\\xe3\\x86\\xc7\\xb9\\x41\\x78\\x1c\\xdb\\x65\\xb3\\x4f\\xef\\x29\\x93\\xc9\\xa6\\x36\\xc4\\x35\\xdf\\xfb\\x1f\\x87\\x65\\x3d\\x5f\\xee\\xa5\\x0e\\xff\\xf0\\xde\\x16\\x59\\xec\\x4c\\x9c\\xbc\\x74\\xf1\\xa9\\x39\\xa6\\xf7\\xcb\\x08\\xd1\\xa8\\x32\\x78\\x91\\x7e\\x90\\x79\\x07\\x19\\x51\\x19\\xea\\x46\\xfd\\x28\\xc6\\x17\\xd9\\xd7\\xe3\\xaf\\x2e\\xb2\\x6c\\xa0\\x69\\x4b\\x38\\x9a\\x3c\\xec\\x06\\xb2\\x36\\xf0\\x83\\x6c\\x9c\\xaf\\x8d\\x6e\\xbe\\x36\\xfe\\x93\\xd1\\x83\\x12\\xe7\\x64\\x97\\x74\\xd9\\xbd\\x03\\x3e\\x15\\x80\\xaa\\x74\\xa0\\xc8\\xd1\\x5d\\xac\\xde\\x88\\x13\\xd4\\x36\\x95\\xce\\xad\\x95\\xcb\\x75\\x6e\\xbd\\xca\\x9a\\x9d\\x80\\x7f\\x99\\x55\\x32\\xe0\\xf5\\x0e\\x94\\x66\\x65\\x95\\xf4\\x7b\\xbd\\x83\\x25\\xaa\\xe1\\x78\\xad\\x3b\\x47\\x5f\\xa8\\x89\\x97\\x69\\x3c\\x39\\x39\\x85\\x9a\\x78\\x8e\\xe8\\x66\\x3a\\xd2\\xd2\\x55\\xaa\\xb5\\x77\\x6e\\x76\\x35\\xb9\\x66\\x3b\\x1d\\xda\\xf2\\x3e\\x87\\xba\\x28\\x57\\xa9\\x2f\\x69\\xd4\\x36\\x69\\x1b\\x8a\\xf5\\x49\\x39\\xce\\xf4\\x40\\x7f\\xe1\\x6c\\x87\\xdd\\xde\\x31\\x5b\\xd8\\x1c\\xfa\\xa0\\x6b\\x2c\\xd6\\xe9\\x4a\\x1a\\x74\\xcd\\xe4\\x43\\x71\\xa3\\xee\\x15\\x51\\xc7\\xa3\\xcf\\x83\\x17\\xa9\\xff\\xcd\\xfc\\x16\\x69\\x90\\x03\\x49\\x2f\\xe4\\x6b\\xe3\\x11\\xb6\\x90\\xf4\\xae\\x0e\\x96\\x95\\x38\\x9c\\x4e\\x57\\x38\\x9e\\x5e\\x11\\x4b\\x49\\x84\\x23\\xf9\\x12\\xea\\x4a\\x1d\\xa9\\xf1\\xf1\\x63\\x03\\x46\\xcf\\xbe\\xca\\xaa\\xfd\\x85\\x19\\xa5\\xe3\\xb5\\xde\\x1e\\x4f\\x06\\xd8\\x47\\x97\\x7b\\x53\\xbc\\xa3\\xf5\\x5c\\xa0\\x74\\xa4\\x42\\x1d\\x95\\x62\\xca\\x36\\xbb\\xb3\\xa2\\x14\\xb8\\x6e\\xef\\xe3\\x03\\xc6\\x04\\x05\\x6c\\x87\\xa4\\x44\\x9c\\x5a\\x75\\xdb\\x6c\\x85\\xab\\x77\\x87\\x47\\xdb\\xff\\xe2\\x57\\x8e\\x5a\\x37\\x55\\xed\\x1f\\xf2\\x60\\x5c\\x64\\xdc\\x7a\\xcb\\xb1\\x7a\\xbd\\xb6\\xc1\\xab\\xb7\\xb5\\x8e\\x98\\x11\\xdf\\x57\\x87\\x89\\x3f\\xf4\\x1b\\x28\\x02\\x65\\x22\\x07\\x72\\xf3\\x7d\\x55\\xe8\\xcc\\xd7\\x24\\xc7\\x32\\x88\\xb6\\x18\\x55\\x6a\\x90\\xab\\x65\\x36\\xa0\\x6c\\xca\\x6b\\xfa\\xc4\\x75\\xed\\x1e\\x44\\xe5\\x50\\xe1\\x57\\xb7\\x70\\x8f\\x53\\x5b\\xe7\\x60\\x88\\xda\\x3a\\x24\\xcb\\x29\\xb3\\x14\\x94\\xe5\\xc8\\x64\\xfa\\x72\\x8b\\xa5\\x3c\\x47\\xd6\\xc4\\xc8\\x75\\x59\\x99\\xda\\x04\\x86\\x49\\xd0\\x66\\x65\\x6a\\xe5\\x2c\\x30\\xdc\\x6b\\x50\\x41\\x4f\\x5f\\x7e\\x90\\x59\\xb9\\x7c\\x86\\xde\\xb4\\x6a\\x18\\x6a\\x75\\x38\\x5a\\x87\\x0c\\x8f\\x1a\\x06\\x5b\\xed\\xf6\\x96\\x21\\x03\\x9d\\x5a\\xe9\\x35\\xe4\\x7a\\x2b\\x53\\x1e\\x4a\\xa9\\xf4\\xe6\\xf2\\x1f\\x02\\xf7\\xd6\\x23\\x8c\\xa6\\xa8\\x07\\x49\\x0e\\x96\\x68\\x94\\x80\\xa4\\x17\\xe4\\x1b\\x58\\xc0\\x16\\x23\\x50\\x6a\\x8a\\x9f\\xdc\\x72\\xb9\\x4d\\x26\\xba\\x7f\\x3a\\x54\\xd4\\x67\\x0f\\xd9\\x1f\\xac\\xeb\\x3f\\xfb\\x68\\x7f\\x1d\\x87\\xcf\\xd6\\x9f\\x81\\xdb\\x18\\x17\\x37\\x0c\\x5f\\xe3\\x7a\\x71\\x32\\xd7\\x06\\xcf\\x04\\x7e\\x07\\x1f\\x71\\x79\\xf0\\x51\\x15\\xd1\\xc3\\x0f\\x07\\x2f\\xd1\\xf7\\x11\\x8c\\xdd\\x1c\\x24\\xbd\\xa0\\xc9\\x8a\\xc3\\xd8\\x62\\xd4\\x8a\\xd7\\x0c\\xa1\\x10\\x2e\\x85\\x4a\\x26\\xf8\\xa4\\x40\\x36\\x2b\\x91\\xa9\\x64\\x3a\\x1d\\xad\\xec\\x7c\\x65\\xb4\\xfe\\xb6\\x85\\xa1\\x0a\\xad\\xbe\\x7a\\x64\\xe1\\x50\\xf5\\xe6\\x0b\\x87\\xeb\\x21\\x80\\xdc\\x77\\x36\\x8f\\xfc\\x5b\\x17\\x77\\x4f\\xf3\\x9d\\x6e\\x9c\\xe6\\xba\\x6d\\xc8\\x5e\\x92\\xdb\\x30\\xb5\\x6f\\xb9\\xa1\\xee\\xe8\\xfe\\xa9\\x46\\x63\\xf7\\x7d\\xef\\xcc\\xe5\\x73\\x2f\\xdb\\x8a\\xa0\\xd4\\x4b\\xe5\\x56\\x3a\\xb9\\x8b\\x90\\x61\\x2b\\x21\\x36\\x99\\x37\\xf8\\x37\\xfa\\x3e\\xe6\\x59\\x94\\x0f\\x6f\\x72\\xff\\xc0\\xbf\\x77\\x9f\\x44\\x3a\\xd8\\xf5\\x63\\x04\\x1b\\xe0\\x3d\\x98\\x40\\xc8\\x7d\\x52\\xb0\\xcf\\xf0\\xef\\x79\\xfb\\x2c\\x18\\x44\\xbe\\xe0\\xdf\\xe8\\x6f\\x32\\xaf\\xa0\\x7c\\x78\\x2b\\x98\\x8e\\x3f\\x15\\xe8\\xb3\\xff\\x4e\\xe8\\x8f\\x13\\xfa\\x78\\x42\\xff\\xe9\\x8a\\xcd\\x48\\x2e\\xc1\\xfe\\xbe\\x62\\x33\\x06\\x83\\xc8\\x1d\\xfc\\x82\\x7e\\x96\\x79\\x1e\\xe5\\xc3\\x3b\\xc1\\x28\\x7c\\x51\\x78\\x6e\\x83\\xf0\\x9e\\x9b\\x11\\xed\\x3e\\x89\\x64\\xe4\\xb9\\x8b\\xfc\\x73\\x98\\x5a\\xa1\\xc5\\xf7\\xb9\\x82\\x7f\\xa3\\x8f\\x91\\xe7\\xbe\\x15\\x4c\\x0b\\x3d\\xf7\\x86\\xf0\\xdc\\xc8\\x1a\\xf9\\x2e\\x8a\\x77\\x6d\\x07\\x82\\x17\\xe9\\x6a\\xe6\\xcf\\x28\\x07\\xf9\\x90\\xf4\\x82\\xcd\\x90\\x2e\\xe3\\xfb\\xcb\\x9a\\xa8\\x34\\x33\\x62\\x62\\x79\\xd7\\x1a\\x54\\x60\\x01\\xb3\\x55\\xb9\\x46\\x2b\\xd0\\x24\\x63\\x47\\xc7\\x8e\\xb7\\x2b\\x98\\x34\\x73\\x45\\xdf\\xf6\\xea\\x8e\\xbb\\x2a\\x94\\xa5\\xa7\\xa6\\xc7\\x4e\\x2f\\xf8\\x6d\\xca\\x92\\xa5\\x97\\x96\\xb6\\x3c\\xb7\\x54\\x51\\xbe\\xf7\\x99\\x85\\xce\\x5b\\x07\\x0a\\x2c\\x03\\x87\\x3b\\xcb\\xa6\\xdb\\xbd\\x7a\\x79\\x9c\\x6f\\xe3\\x1e\\x8a\\x1b\\xef\\xaf\\x59\\x3e\\xb4\\xbd\\xdd\\x92\\x9f\\x37\\x64\\x71\\x42\\xc5\\xc2\\xd9\\x97\\xbf\\x3d\\x56\\xb6\\xf4\\xe9\\x4b\\x5b\\x5b\\xef\\xfa\\xc6\\x66\\xd5\\xd4\\x85\\x23\\x4d\\x13\\xbe\\xd9\\x63\\x2d\\xaa\\xf6\\x07\\xb6\\x57\\x18\\x1b\\x26\\x76\\xdd\\x5c\\xe6\\x2e\\xe8\\xab\\xce\\x45\\x80\\xbe\\x13\\x8c\\xa1\\x31\\x89\\xc1\\x64\\xcf\\xb3\\xfc\\x5e\\x8e\\x09\\x41\\xd4\\xe3\\x5d\\x81\\x17\\x76\\x51\\x85\\x7f\\x66\\x8b\\xff\\xf9\\x16\\xfb\\x38\\xaf\\xdb\\x5d\\xdc\\x9f\\xe9\\x7b\\xc9\\x98\\x64\\xcf\\x4b\\x29\\xb0\\x18\\x01\\xf8\\xad\\x05\\x80\\x43\\xa5\\x50\\x01\\x25\\x0f\\xbc\\x4c\\xbd\\x77\\xf9\\xcb\\xb8\\x2f\\xf0\\x55\\x3a\\x79\\x75\\x2f\\xae\\xc3\\xe5\\x01\\xe5\\xc4\\x00\\x85\\x28\\x7a\\x70\\x22\\x20\\x13\\xf6\\x39\\x4f\\xe0\\x67\\xa8\\x4b\\x54\\x02\\xa2\\x88\\x4d\\x74\\xd5\\x8e\\x56\\x16\\x47\\x76\\xb4\\x2a\\x87\\x8a\\xba\\xb4\\xfa\\x1a\\x55\\x81\\x9f\\x99\\xe0\\xbf\\xdf\\x29\\xda\\x85\\x91\\x88\\x3d\\xcf\\x90\\xf7\\x2a\\x5d\\x60\\x03\\x35\\xa5\\x76\\xd8\\x70\\x94\\x56\\x07\\x87\\x97\\xb8\\xe8\\xe1\\x3f\\x9f\\xfc\\x23\\x64\\x2e\\x2f\\xd3\\xc7\\xbf\\x68\\xc5\\x07\\x49\\x8c\\x59\\x1e\\x1a\\xa5\\x1f\\xa7\\x95\\xa8\\x00\\xb5\\xa0\\x39\\x14\\xf9\\xd2\\x78\\x57\\x5d\\x61\\x26\\x4b\\x11\\x15\\xbd\\x2e\\x4b\\x69\\x78\\xe0\\x8b\\xd8\\xcd\\x6a\\x11\\xa4\\x99\\x60\\x25\\x24\\x96\\xd0\\x0e\\x55\\x42\\x06\\x4d\\x92\\x18\\x88\\xe0\\x3c\\x0a\\xfa\\xf1\\x98\\xd4\\xbc\\x92\\x76\\x87\\x7b\\xa0\\xd6\\x2e\\x8b\\xb7\\xd7\\xf4\\xbb\\x1d\\xed\\xa5\\x79\\xa9\\xd1\\xd1\\xe2\\xb7\\x35\\xf6\\x78\\x99\\xbd\\x76\\xd0\\xed\\x68\\x2f\\x31\\xa6\\xc6\\xf4\\xb2\\xb2\\x54\\x63\\x51\\x8e\\xc6\\xe7\\xc8\\xcd\\x90\\x01\\xc8\\x32\\x72\\x1d\\xa5\\x9a\\x1c\\xaf\\x31\\x55\\xc6\\xae\\x7a\\x24\\x71\\x69\\x46\\x6f\\x8e\\xa6\\xd4\\xbe\\xae\\x2c\\x37\\x2d\\x4e\\x82\\x75\\x79\\x13\\x63\\x03\\x35\\xb9\\x45\\xfd\\xdb\\x9d\\xce\\xed\\xfd\\x45\\xb9\\xd5\\x83\\x63\\xe3\\x26\\x73\\xde\\xf8\\x38\\xff\\xe5\\x00\\xff\\xe5\\x40\\x51\\x6e\\xcd\\xc0\\xf8\\x78\\x5e\\x56\\xab\\xbf\\xa9\\x48\\x93\\x5b\\xd6\\xd6\\x56\\x9f\\xac\\x49\\xae\\x6f\\x6b\\x2b\\x37\\x80\\xa6\\xa8\\xc9\\xdf\\xaa\\x52\\x91\\x12\\x58\\x53\\x54\\x96\\x4b\\x4a\\xb2\\x48\\x7f\\xfc\\x85\\x6b\\xa0\\x7e\\xc4\\x66\\x22\\x2d\\x62\\xcf\\x27\\xd1\\x7c\\xff\\xaf\\xf7\\x9c\\x10\\x75\\x38\\x01\\x6d\\x21\\x67\\x99\\xf8\\x84\\xae\\x71\\x7b\\x63\\xba\\xe8\\x41\\x11\\x61\\xa9\\x32\\x29\\xc0\\xd0\\x3c\\xdf\\xa0\\x2e\\xcf\\x8e\\xb3\\x14\\xda\\x9a\\x6c\\x29\\xbd\\xa2\\x1b\\x05\\xc5\\x32\\xc4\\x8d\\x82\\xd1\\x34\\xee\\xef\\xb5\\x46\\x46\\x0c\\xc7\\x6a\\x7d\\xdd\\xb6\\x2f\\x7e\\x46\\xf4\\xd0\\x51\\xa8\\xa7\\x7d\\xd4\\x25\\xa4\\x42\\x15\\x48\\x7a\\xa1\\xc2\\xaa\\x8a\\xc3\\x16\\xa3\\x5c\\xcc\\x77\\x9b\\x41\\xd9\\x9c\\x64\\x89\\x27\\x77\\xa0\\x66\\x4a\\xc2\\xb2\\x12\\xea\\x5f\\x94\\x3d\\x60\\x5e\\xac\\xd5\\x78\\x5d\\xce\\x8c\\x34\\x9b\\xcd\\x9d\\x5d\\xbb\\xcb\\x14\\x61\\x5e\\xac\\xc9\\x2e\\xb4\\x5b\\xd3\\x32\\x5c\\xae\\x62\\x4d\\xed\\x6e\\x53\\xfc\\xd5\\x14\\x52\\xd3\\x62\\x6d\\x76\\xa1\\xcd\\x96\\x96\\xe1\\x2c\\xf4\\x6a\\x6b\\x77\\x99\\xa8\\xae\\xd2\\x36\\x80\\xa8\\x84\\xb4\\x0d\\xb1\\x29\\x09\\x51\\xd0\\x51\\xba\\x50\\xda\\x06\\x51\\xf2\\xe4\\xd8\\x0d\\x69\\x8a\\x68\\x80\\x8e\\x52\\xee\\x17\\xa5\\x7e\\x0c\\xd1\\x09\\xa9\\x1b\\x36\\xa4\\xc8\\xa3\\xa1\\xf3\\x0a\\x41\\xba\\x22\\x1a\\x70\\x47\\x29\\x69\\xcf\\x15\\xf4\\x55\\x3a\\x8f\\xde\\x8a\\xe4\\x88\\x3d\\x1f\\x8d\\xf9\\xb1\\xaa\\x92\\xe8\\x5d\\x2a\\x87\\x4a\\xae\\x72\\xa8\\x5c\\x4a\\x7e\\x2f\\x4e\\xa9\\xe8\\xbc\\xc0\\x4f\\x0f\\x95\\x6e\\xe1\\x02\\x50\\x72\\x8e\\x4b\\xc2\\xea\\x3d\\xa5\\x63\\xc0\\x70\\x6f\\x9c\\x83\\x4f\\xe1\\xf8\\x45\\xed\\xbb\\x33\\x50\\x30\\xf3\\xbf\\xb4\\x2f\\xcc\\x70\\x1f\\x08\\xe7\\x57\\x1f\\xa2\\x3c\\x3a\\x97\\xbe\\x0b\\x4d\\xa2\\x0c\\x64\\x44\\xdf\\xf0\\x21\\xf7\\x49\\x90\\xc0\\xed\\x28\\x37\\x70\\x80\\x68\\xaf\\x95\\x6f\\x88\\x4a\\x2f\\x70\\x80\\x68\\x23\\xfe\\x99\\x9f\\xa1\\x5c\\xba\\x9e\\x7e\\x14\\x4d\\xa2\\x2c\\x64\\x40\\x1f\\x84\\x9f\\xb1\\x05\\xf6\\x09\\xcf\\x7c\\x10\\x7a\\x66\\x9f\\xf0\\x0c\\xc2\\xe8\\x11\\x84\\x68\\x2b\\xb3\\x82\\x18\\x14\\x83\\xa4\\x17\\xa2\\xa5\\x14\\xbf\\x9e\\x13\\x97\\x77\\x50\\x81\\x5e\\x02\\xa0\\x74\\x61\\xe7\\x30\\x9c\\xe2\\xc6\\x87\\xb9\\x31\\x4a\\xc1\\xbd\\x4c\\x53\\xdc\\x37\\xa0\\x86\\xa2\\x99\\x95\\x80\\x3e\\x60\\xc0\\x3f\\xc2\\x03\\x91\\x91\\x81\\x2f\\x07\\xbe\\x1c\\x19\\x49\\xec\\xae\\xc7\\x83\\x55\\x78\\x08\\xad\\xa0\\x88\\x90\\xbe\\xd0\\xb2\\x6c\\xe8\\x6c\\x68\\x08\\x5c\\xde\\x1a\\xb5\\x06\\xe6\\x27\\x1a\\x4f\\x16\\xd9\\x5d\\xdb\\x2b\\x1a\\x79\\x19\\x12\\xd1\\x00\\x8a\\xa4\\x6f\\xa3\\x59\\x14\\x83\\xd2\\x50\\x2e\\xf2\\x20\\x1f\\xaa\\x46\\x8d\\xa8\\x0d\\xf5\\xa3\\x8d\\x68\\x14\\x4d\\xa2\\xcd\\x68\\x2b\\x9a\\x47\\x4b\\xe8\\x26\\x74\\x08\\xdd\\x86\\xee\\x42\\xc7\\xd0\\xbd\\xa8\\xc0\\x67\\x3e\\x71\\xcf\\xdd\\x47\\xef\\xbc\\xfd\\xc8\\xe1\\x5b\\x0e\\x1e\\xd8\\xb7\\x67\\xe7\\xf6\\x6d\\x73\\xb3\\xd3\\x53\\xe3\\x63\\x23\\xc3\\x83\\x03\\x3d\\xed\\xad\\xcd\\xb5\\x35\\x95\\x65\\xde\\x22\\xb7\\x5d\\x97\\x99\\x1c\\x1b\\x81\\x13\\x2d\\x46\\xb0\\xeb\\xd4\\xd9\\xac\\x42\\x91\\x90\\x68\\xb3\\x3a\\x1d\\x4a\\xab\\xd3\\x61\\xd7\\xe9\\x9d\\xfc\\xbf\\x6a\\xb5\\x4c\\x9f\\xc0\\xaa\\xb3\\x75\\x0e\\x87\\xdd\\x69\\xb3\\x26\\x2a\\x18\\xe1\\x2f\\xb5\\x40\\xea\\x50\\x83\\xc3\\xa6\\xb0\\xf1\\x06\\x95\\xc3\\xa6\\xe0\\x3f\\xab\\x15\\x5a\\xfe\\x5f\\x07\\x58\\x13\\x15\\x09\\xac\\x5a\\xed\\xa0\\x78\\x02\\x07\\x21\\x51\\xc8\\xd7\\x7e\\xe6\\xb9\\x25\\xa8\\xd5\\x8c\\xda\\x61\\x93\\x89\\xbf\\xb0\\xf6\\xf3\\xe7\\xd5\\x6e\\x77\\x75\\x8d\\xdb\\x5d\\x75\\xd6\\xe6\\x4e\\x4b\\x53\\x2a\\x4b\\x5c\\x93\\x3d\\x39\\x6a\\x8d\\xc1\\xa0\\x56\\x1b\\x70\\x6c\\x86\\x32\\x25\\xd3\\xe6\\xb5\\x98\\x3c\\xd6\\xd5\\xe3\\x25\\xb3\\xf8\\x47\\x73\\xc5\\x97\\x3f\\x3e\\x37\\x4b\\x55\\x9c\\x2b\\xe6\\xaa\\xd2\\x53\\x53\\xd3\\xab\\x35\\x0f\\x57\\x3c\\x1c\\x58\\x79\\xa8\\x42\\xf8\\xdf\\xa4\\x4d\\x95\\x55\\x66\\xe3\\xfc\\x25\\xe4\\x87\\xfa\\xac\\x98\\xfc\\x60\\xad\\xb3\\xbc\\xdc\\x59\\xc2\\xff\\xb3\\xdb\\x68\\x54\\xea\\xa5\\x11\\xd9\\x0a\\x63\\x0e\\xf7\\xe1\\x6e\\x9d\\xd1\\xa8\\x2b\\xe1\\xff\\xe9\\x4c\\xca\\x48\\x4a\\x31\\x9b\\xac\\xa6\\x1f\\x04\\x66\\x9e\\xd9\\x5a\\x5a\\xba\\xf5\\x19\\x6a\\xe3\\x69\\xdf\\xe0\\xa0\\xef\\xf4\\x20\\x57\\x90\\x92\\xa8\\x48\\x1a\\x84\\x0f\\x7c\\xe4\\x67\\xb5\\xb2\\x94\\xfc\\xe0\\x89\\x38\\x65\\x5e\\xdb\\x9d\\xdc\\xd7\\xee\\x80\\xc4\\x3b\\xb8\\xaf\\x89\\x1f\\x10\\x62\\xd0\\x86\\xc0\\xc7\\xf4\\xb3\\xd2\\x79\\x44\\x21\\x03\\x32\\xa1\\x02\\xe4\\x40\\x1b\\x7c\\xd1\\x76\\xab\\xc5\\x9c\\x97\\x1b\\x4f\\x63\\xc4\\x58\\x8c\\x11\\x14\\x63\\x2f\\xc1\\xae\\x50\\x0e\\xe2\\x58\\x2c\\xb1\\x11\\x57\\x4e\\x72\\x09\\x1c\\x4b\\x29\\x94\\x6a\\x85\\x8d\\xb2\\x29\\xd4\\xfc\\x2f\\xde\\x84\\x9b\\x02\\xe7\\x03\\x4f\\xe3\\x57\\xd8\\x68\\x59\\x54\\xa2\\x49\\xa3\\xd4\\x56\\x4d\\xf8\\x0a\\x47\\xea\\x8c\\xf0\\x5d\\x6c\\x48\\xd2\\x66\\xc9\\x92\\x52\\x23\\xd3\\xd5\\x0a\\xe9\\x77\\xbe\\xf3\\x9d\\x59\\x9a\\xc6\\x34\\xcd\\xb6\\xad\\x16\\xac\\x16\\x50\\x1f\\x5c\\x4e\\xd6\\x67\\xa6\\xc7\\x65\\xba\\xdc\\x3e\\x83\\x6f\\xb2\\x4e\\x9f\\x51\\x36\\x5e\\xed\\xb2\\xf8\\xec\\x29\\xb6\\x7c\\x7d\\x8c\\x26\\x47\\x67\\xb5\\xf4\\x9f\\x0b\\x74\\xd1\\x91\\x67\\x68\\x84\\xd1\\x7f\\x04\\x3f\\xa7\\x11\\x7d\\x9a\\x60\\x4b\\x49\\x2f\\x68\\x53\\x36\\xd0\\xfc\\x1c\\xb8\\x72\\x07\\x42\\x96\\x09\\xbd\\x08\\x58\\xa1\\x10\\x75\\x24\\x8d\\xc0\\xb4\\xe9\\xe1\\xd9\\xd9\\x93\\x9b\\xf2\\x01\\xcc\\x23\\x27\\xf9\\x4f\\x66\\xd8\\x03\\xe9\\xe5\\x73\\x7e\\xff\\x5c\\x79\\x3a\\x40\\x7a\\xc5\\x16\\xbf\\x7f\\xb6\\x3c\\x0d\\xe0\\xf7\\xc3\\x2f\\x2e\\x77\\x76\\x2e\\xbf\\x38\\xfc\\xfa\\xf0\\x8b\\x47\\x3b\\x3b\\x8f\\x5e\\x18\\xd9\\x50\\x75\\xe7\\x96\\xca\\xaa\\xb9\\x3b\\xab\\x7e\\x5a\\x75\\xd7\\xd6\\xea\\xea\\x6d\\x77\\x56\\x21\\x80\\x0a\\x84\\xa8\\x13\\x54\\x16\\xca\\x46\\x79\\x3e\\x83\\x10\\xe4\\x8e\\x30\\xd0\\x40\\xc2\\xd2\\x11\\x60\\x0a\\x46\\x43\\x41\\xe9\\xc5\\xa8\\x31\\x45\\x13\\x6f\\x8c\\x63\\xa4\\xc9\\x46\\x95\\xca\\x01\\x57\\x32\\x3a\\xaf\\x4d\\x7f\\x24\\x51\\x51\\x27\\x02\\xef\\x80\\x2a\\xcd\\xaa\\x4d\\x4c\\x32\\x7a\\xb2\\xdb\\x37\\x52\\x33\\x90\\xd7\\x30\\x59\\xe2\\xde\\x54\\x9b\\x93\\x69\\x2f\\xd7\\x7c\\x0c\\x17\\x1a\\x20\\x35\\xd5\\xe1\\x70\\xa6\\xaa\\xec\\x1a\\x79\\x77\\x83\\x6b\\xa0\\x5c\\x9b\\xe1\\xe9\\x70\\xe6\\x36\\xd4\\x54\\x64\\xbf\\x8b\\x30\\x14\\xd3\\x9f\\x50\\xdf\\x63\\xbf\\x89\\x58\\xa4\\x43\\xd2\\x0b\\xba\\x44\\x86\\xe8\\x07\\xb5\\x5e\\xa2\\xd6\\xda\\x5c\\x42\\x13\\x49\\x44\\x2f\\x36\\xfe\\xb5\\xa4\\x69\\xa8\\xef\\x1d\\xfc\\xf6\\xb7\\x6e\\x02\\xf9\\xd4\\x0f\\xb0\\x42\\x67\\xcf\\x52\\xdb\\x4c\\xf9\\x99\\xf2\\xf4\\x84\\x28\\xf0\\x81\\x42\\x6b\\x57\\xa9\\xac\\xf9\\x16\\xfe\\xef\\x68\\xa0\\x3f\\xb9\\x70\\xe1\\x4f\\x3f\\xc9\\x74\\x1b\\x53\\xd2\\x54\\x69\\x90\\x90\\xa1\\x91\\xc5\\x64\\x78\\x2d\\x19\\xa9\\xaa\\xb4\\xb8\\x54\\x55\\x3c\\x39\\x87\\xde\\x40\\x7f\\x42\\x2f\\xb3\\xcf\\x21\\x16\\x65\\xf0\\x7b\\x62\\xc9\\xda\\xf7\\x2b\\x1d\\x25\\x94\\xc3\\x4c\\xa9\\x5d\\xa2\\x93\\x88\\x82\\x7a\\xee\\xe6\\x0f\\x3f\\xb8\\x19\\x62\\x6e\\x0f\\x24\\xdb\\x0c\\xc9\\xa0\\xb6\\x15\\x25\\xb3\\xe6\\xc1\\x7a\\x73\\x6a\\x5e\\x61\\x1a\\xfd\\xc9\\x2b\\xaf\\xfc\\x69\\xe7\\x36\\xcc\\xc6\\xa6\\x2a\\x93\\x33\\xe3\\x98\\x7a\\x88\\xcb\\x2e\\x34\\xa8\\x2d\\x59\\x71\\xb4\\x1d\\x61\\xd4\\x46\\x7f\\x42\\xbd\\xce\\x8e\\x20\\x16\\x45\\x22\\xe9\\x85\\x88\\x75\\xef\\x61\\xd4\\x7a\\x1b\\xf5\\xfa\\xd1\\x57\\x5f\\x3d\\x0a\\x31\\x3b\\xb9\\xd7\\x26\\x5e\\xbc\\x83\\xfe\\xe4\\xa9\\xa7\\xfe\\x34\\xf0\\x3b\\x84\\xc1\\x46\\x7f\\x42\\x9f\\x5d\\xf3\\x1c\\x16\\xf4\\x27\\xc3\\x3f\\x09\\x36\\x89\\x1a\\x97\\xcd\\x43\\xec\\xf2\\x2b\\xaf\\x2e\\xe3\\x4f\\x6e\\x7f\\x71\\x82\\xf9\\xcf\\x3f\\x3d\\xf5\\x14\\xec\\xff\\x1d\\xd1\\xbd\\x50\\x4e\\xbf\\x42\\x3d\\xc2\\x9e\\x40\\x32\\xa4\\x40\\xd2\\x0b\\x09\\xf1\\x34\\x5a\\x33\\xee\\x6c\\x89\\xbc\\xf2\\x71\\xe9\\xf9\\x77\\x3f\\x82\\xf3\\x5b\\x67\\x4b\\x4b\\xe7\\xfc\\xf9\\x30\\xce\\xcc\\xf4\\xf6\\x4c\\x33\\xfb\\xe6\\xbf\\xf1\\x30\\xb3\\x52\\xd4\\x5f\\xaa\\x52\\x95\\xf6\\x17\\xb5\\xf8\\xdb\\x9a\\x23\\x7f\\x4c\\x82\\x63\\x32\\xe8\\x17\\xf1\\xf7\\x59\\x03\\x8a\\x42\\xec\\xf9\\x48\\x86\\x5f\\x8b\\xd6\\xdc\\x64\\x64\\xc4\\xa7\\xa9\\xe3\\x1b\\x53\\xd3\\x60\\x37\\xe3\\x54\\x57\\x95\\xb8\\x12\\x0b\\xac\\x03\\xce\\x03\\x64\\x1d\\xa8\\x26\\x78\\x9f\\xcb\\x48\\x82\\x22\\x91\\xd6\\x97\\x1d\\x09\\x34\\xe6\\x47\\x1f\\x8d\\x77\\x88\\xe1\\x52\\x9b\\x28\\x08\\x1f\\xc6\\x93\\x61\\x07\\xaa\\x2b\\xf8\\xbf\\x5b\\x03\\xef\\x2f\\xed\\x83\\x1f\\xef\\x80\\x8f\\x97\\x02\\xfb\\xe0\\x97\\x9f\\x83\\x8b\\xfb\\x36\\xbd\\x7c\\x79\\x1e\\x4e\\x93\\xa8\\x3f\\x44\\xa1\\x9f\\x23\\x44\\x17\\xd0\\xcb\\x04\\x63\\xdc\\x82\\xbc\\x3e\\x77\\xb4\\x90\\x1b\\x2e\\x84\\x1e\\x19\\xce\\x11\\x17\\xca\\x0c\\x57\\x0c\\x8d\\x4a\\x25\\x42\\x16\\xb3\\x4e\\xa3\\x54\\x2b\\xb3\\x53\\x92\\x50\\x22\\x52\\xa8\\xa4\\xd2\\x50\\x66\\x38\\xc1\\x2b\\x88\\x5c\\x3d\\x5c\\xc9\\x8a\\x7c\\x25\\x68\\xf5\\xe7\\xb0\\xa7\\xe1\\xe4\\x52\\x53\\x76\\x51\\x53\\x9e\\x7d\\xa8\\x26\\x17\\x6a\\x17\\xee\\x6f\\xe2\\xde\\x06\\xaf\\x63\\xa6\\xc3\\x56\\xe0\\x9f\\xb4\\x73\\xaf\\x42\\x6a\\xc1\\xb8\\xdf\\xe6\\xee\\x9b\\xb3\\x73\\x41\\x7a\\x19\\x32\\x6a\\x76\\xf5\\x39\\xfc\\xde\\xdc\\x98\\x48\\x73\\xf5\\x46\\x4f\\xf7\\xbe\\x66\\x2d\\x60\\x3d\\x57\\x02\\x49\\xce\\xce\\x12\\x6f\\x87\\x23\\x05\\x86\\x41\\x91\\xdf\\x5c\\xe4\\x6b\\xcd\\x97\\x01\\x02\\x74\\x30\\xf8\\x39\\xad\\xa1\\x4f\\x23\\x3d\\xb9\\x63\\xc0\\x14\\x43\\x61\\x66\\x1b\\x0b\\x0c\\x4d\\x31\\xf4\\x96\\xb0\\x07\\xbb\\x18\\x5a\\x52\\x45\\x82\\xe8\\xf4\\x48\\x6f\\xc8\\x4e\\x30\\x68\\x24\\x7c\\xe3\\x5d\\xa5\\x5d\\xd4\\xe2\\x29\\x22\\xaf\\x5d\\x12\\x9d\\x2e\\x5a\\x13\\xdd\\xbc\\xe7\\xcc\\xc0\\xf6\\x67\\x16\\x4b\\x01\\x7c\\x7b\\x57\\x76\\x0c\\x9c\\xda\\xdd\\x18\\xbd\\xa8\\x3c\\x77\\x77\\xff\\xad\\xbd\\x79\\x00\\xc6\\xae\\xc3\\x7d\\xf7\\x3c\\xa3\\x84\\xad\\x83\\x77\\x6f\\xb2\\x76\\x1f\\x7f\\x63\\xe6\\xb6\\xcd\\x6f\\x1e\\xef\\xb6\\x8f\\x1e\\x1b\\xb8\\xf3\\x04\\xd4\\xee\\x7e\\xa4\\xed\\x76\\xff\\x23\\x8b\\x75\\xb0\\x7c\\x37\\xe9\\xdb\\xef\\x23\\x44\\xb7\\xd2\\xcb\\x28\\x06\\xa5\\x92\\x5b\\x4c\\xc4\\x00\\x85\\x91\\xd8\\xd6\\xb4\\xd0\\xd6\\xb1\\xb1\\x08\\xc5\\xa6\\xc6\\xa6\\xc8\\x36\\xa0\\x18\\x14\\xad\\x62\\x43\\xed\\x4c\\xf2\\x44\\x51\\x32\\x5b\\x09\\xe5\\x72\\x98\\x29\\xfd\\xf7\\x61\\x7c\\xe7\\xbb\\xf7\\xb4\\x03\\x74\\xdc\\xfb\\xde\\xc2\\x6f\\x7f\\x3b\\x7c\\x7a\\x5b\\x29\\x86\\xe2\\xad\\x8f\\x6c\\xa4\\x97\\x71\\xcb\\xf2\\x5b\\x0b\\xa3\\xbb\\xdf\\x3a\\xda\\x04\\xb4\\x6e\\xb5\\x14\\x7c\\xdb\\xcf\\x6c\\x1c\\x1f\\x3a\\xbd\\xbd\\x14\\xf3\\x7b\\xa4\\x0f\\x49\\x4e\\xaf\\x65\\x14\\x45\\xe2\\xd7\\x28\\x44\\x33\\x14\\x3d\\x82\\x18\\x24\\x9c\\x6f\\x5e\\x39\\xd4\\x5c\\x77\\xd7\\x43\\xae\\x5e\\xf8\\x5f\\xea\\x1b\\x81\\x63\\xf8\\x83\\xd5\\x97\\xa8\\xea\\x80\\x1d\\x6f\\xc7\\x06\\xce\\x3b\\x4e\\x2f\\x4f\\x72\\xd3\\x82\\x7d\\xf1\\x23\\x92\\x93\\x67\\x19\\x45\\x90\\xbc\\x5e\\x82\\xc3\\xe3\\x48\\x38\\xca\\xef\\xea\\x51\\xcb\\x1b\\x3a\\x84\\xe7\\xfb\\x81\\xc3\\x4b\\x54\\x67\\x40\\x87\\xf7\\x61\\x45\\xe0\\x22\\xcf\\xaf\\x53\\xe0\\x77\\x6b\\xf0\\x73\\xda\\x40\\x9f\\x46\\xf9\\xc8\\xe5\\xb3\\x1b\\x11\\xa6\\x19\\x7e\\x2a\\x50\\x2c\\x85\\xd9\\x6d\\xe1\\xae\\x65\\x11\\x43\\xb3\\xcc\\xc8\\x9a\\x2e\\x96\\x29\\x0c\\x1a\\xd2\\xbd\\xa9\\x46\\xed\\xd5\\xdd\\x7b\\xd5\\xe2\\x41\\xf2\\x79\\x19\\x74\\x93\\xf3\\x8b\\xee\\x9d\\x2f\\xdd\\x5c\\x0d\\x50\\xb6\\xf4\\xfc\\x7c\\xe7\\x43\\xbb\\x5b\\x62\\x77\\xc5\\x16\\x75\\xce\\x95\\x0e\\xdc\\xd6\\x67\\x02\\x28\\x18\\xbe\\x7b\\x50\\xdf\\xd5\\xde\\x90\\xce\\xbd\\x06\\xaf\\xdc\\x65\\xf6\\xaa\\x63\\x3b\\x8f\\xbf\\xb5\\xf5\\xd0\\xdc\\x9b\\xf7\\x74\\xe4\\xf5\\x1e\\xee\\x2e\\x1d\\x2c\\xc9\\xac\\x5e\\x38\\xd9\\x71\\x6b\\xd7\\xe9\\xc5\\x5a\\x89\\x42\\x9b\\x0e\\xe9\\x9b\\x04\\x8c\\x0e\\x92\\xfb\\x65\\x59\\xc8\\x73\\xc6\\x00\\x45\\x53\\x3b\\x42\\x99\\x5f\\xc8\\xb5\\x17\\x5a\\xd3\\xca\\x6b\\xf3\\x9c\\x51\\x7f\\x9c\\x0f\\x3c\\x3b\\x3f\\x8f\\xfd\\xf3\\x38\\x3a\\xf0\\x17\\x7a\\x39\\xf0\\x1b\\x9c\\xca\\xf3\\xfb\\x04\\x21\\xea\\xef\\xf4\\x51\\x31\\x6f\\x1a\\x62\\x04\\x44\\x22\\x1a\\x30\\x26\\x9e\\x43\\xc5\\xd4\\x1a\\x7e\\x72\\xb1\\xcf\\x1c\\x2a\\x99\\xea\\x13\\x4a\\xce\\x3d\\x0d\\xed\\xab\\x9f\\x41\\x2d\\xf7\\x32\\x7d\\x74\\xf3\\x6a\\xdd\\xcc\\x0c\\xf5\\x92\\xd0\\xc6\\x2f\\x05\\x3f\\xa7\\x7e\\x45\\x2f\\x23\\x25\\x89\\x69\\x26\\xa0\\xc9\\x98\\xc2\\x3b\\x42\\xb8\\x2a\\x55\\xd0\\xa8\\x49\\xd0\\xc6\\xd1\\xd2\\x24\\x23\\xd8\\xa8\\x90\\x4a\\x14\\x5b\\x8f\\x9a\\x5c\\x02\\x5c\\x3a\\x7b\\x77\\x4b\\xe7\\x89\\xad\\x95\\xec\\x12\\xe4\\xb7\\xce\\x14\\xb9\\x37\\xd5\\x19\\x31\\xbd\\xbc\\xfa\\x71\\xf7\\x9d\\x43\\xb6\\xdc\\xde\\xdb\\x06\\x2b\\x37\\x95\\xa6\\xeb\\xaa\\xc6\\x4a\\x10\\xa0\\x9f\\x21\\x44\\xdf\\x44\\x2f\\xa3\\x68\\xfe\\x5d\\x91\\x2c\\x50\\xa1\\x0b\\x11\\xd8\\x41\\x09\\xed\\x11\\x2f\\x97\\xc5\\x93\\x77\\x49\\x48\\x5b\\xb8\\x84\\x0d\\x70\\xf0\\xc9\\xc5\\xc5\\xaf\\xc0\\x3b\\x0f\\x06\\x82\\xd8\\x78\\x1f\\x76\\x9c\\xe5\\x66\\xe8\\xe5\\xc0\\xc9\\xaf\\xc1\\x37\\x03\\xff\\x0c\\xec\\x45\\x80\\x3e\\x45\\x88\\xae\\xa1\\x97\\xc5\\x1c\\x91\\x18\\xe1\\x1d\\x21\\xc7\\xe2\\x62\\x21\\x47\\xa4\\x54\\x69\\xd4\\xf2\\xed\\x61\\x83\\x29\\xfc\\x5f\\xab\\x8f\\x1f\\x18\\xe7\\x35\\x2c\\xa0\\x73\\x24\\x7e\\x87\\x97\\x47\\xe3\\x53\\x49\\x19\\x8c\\x85\\xfc\\x76\\xa4\\x0d\\x00\\xef\\x08\\x29\\x5a\\x92\\xe3\\x8e\\x1f\\xb2\\xeb\\x72\\xdc\\xcd\\x82\\xfa\\xcc\\x3c\\xf7\\x8b\\x4e\\xee\\x27\\xf3\\x5f\\xc2\\x6e\\xdc\\x71\\x79\\x9e\\x8e\\x0b\\xec\\xc5\\x07\\x2e\\xff\\x83\\xf0\\x7e\\x1f\\x21\\xea\\x6f\\x64\\x2e\\x64\\xf8\\x52\\x25\\x18\\x23\\x0c\\xf5\\x14\\xf0\\xb2\\x81\\x58\\x55\\x59\\x3c\\x69\\xd6\\x2b\\xc7\\x60\\xd4\\xdf\\xb6\\x06\\x5e\\xa4\\x76\\x6c\\xc3\\x0d\\xf4\\x76\\xea\\xc3\\xd5\\x7c\\x7a\\x79\\x35\\x9f\\xfa\\x10\\x61\\x74\\x7f\\xf0\\x73\\xda\\x45\\x9f\\x46\\x4a\\x64\\x42\\xe9\\xbe\\x94\\x70\\x00\\xb5\\x88\\xad\\x59\\x85\\x1a\\x0d\\x06\\xa3\\x86\\xb4\\x5b\\xc8\\xa8\\xbe\\xd1\\x66\\xc9\\x05\\x45\\x3b\\x9f\\x9e\\x6f\\x3c\\x38\\xd5\\x6c\\x4f\\x83\\xa2\\x85\\xa7\\xe7\\x77\\x3c\\xb3\\x50\\x04\\xbb\\x20\\xa7\\xe3\\x50\\x7f\\xff\\xa1\\x8e\\x1c\\x80\\x9c\\xce\\x43\\xfd\\x03\\xb7\\x74\\xe8\\x01\\x47\\x4f\\xbf\\xf5\\x40\\x9f\\xa1\\x7e\\x7c\\xf1\\x48\\xf5\\xfc\\xf4\\x5b\\x0f\\xf6\\xf7\\x3d\\xf8\\xf6\\x34\\xf6\\x9f\\x5a\\x6a\\x68\\x5c\\x3a\\xd5\\xba\\xd0\\x7a\\x7a\\x5f\\x63\\xe3\\xbe\\x53\\x7e\\x84\\xd1\\xf6\\xa0\\x8d\\xee\\xa0\\x4f\\xa3\\x54\\x54\\x80\\x0c\\x3e\\x9d\\x94\\xc1\\x88\\x82\\x7a\\x09\\x8b\\x51\\xcd\\x75\\x65\\x35\\xe4\\x8a\\xb2\\x4a\\x94\\x12\\x6d\\xe8\\x2c\\xf9\\x46\\x12\\x77\\x40\\x56\\x49\\xaf\\xe7\\xd7\\x6d\\x1c\\xa7\\xaa\\xd1\\xed\\x7c\\xf9\\x60\\x15\\x40\\xe5\\xc1\\x97\\x16\\x16\\x5e\\x3e\\x58\\x09\\xbb\\xc1\\x32\\x74\\xf7\\xd0\\xd0\\xd1\\x21\\x0b\\x80\\x65\\x68\\x79\\x68\\xe3\\xf2\\x50\\x3e\\xe0\\xe8\\xc6\\xe5\\xa5\\xb1\\xec\\x17\\xeb\\x7e\\x10\\x11\\xd9\\x75\\xef\\x3b\\x5b\\xe6\\xb7\\xbc\\x73\\x5f\\x77\\xd7\\x7d\\xef\\x6c\\xc5\\xdd\\x67\\x76\\xd7\\xd4\\x2e\\x9e\\xee\\x5a\\xe8\\x3a\\xb3\\xa7\\xb6\\x66\\xcf\\x99\\x6e\\x84\\xd1\\xab\\x04\\xcf\\x7c\\x99\\x20\\x36\\x18\\x7d\\x39\\x1b\\x00\\x51\\x71\\xe4\\xae\\x0c\\x61\\x44\\x53\\x98\\xc4\\xcc\\x0b\\x87\\xe4\\x64\\x30\\xe4\\x98\\x54\\x6b\\xf5\\x97\\xb8\\xfe\\x81\\x42\\x0d\\xe1\\x15\\x0f\\xdf\\xcf\\x9d\\x59\\x84\\xd3\\xbc\\xe2\\xcf\\xa9\\x1e\\x74\\x82\\xf3\\x60\\x60\\x0f\\x14\\x39\\x27\\x5b\\xad\\x8e\\xae\\x6d\\x1e\\xee\\xa7\\xf0\\x11\\x97\\x47\\x2f\\x43\\x6e\\xd7\\xe1\\x7e\\xdf\\x58\\xa3\\x2b\\x81\\x4b\\x8a\\xc4\\x1e\\xc8\\xf0\\xf6\\x7a\\xcb\\x87\\x8a\\x33\\xf8\\x35\\x8d\\xef\\x6f\\x1b\\x7d\\x1a\\xd5\\x90\\x35\\x4d\\x44\\x72\\x21\\x88\\xc6\\xcc\\x16\\xb2\\x61\\x41\\x78\\x34\\xe4\\x5f\\x5f\\x45\\x35\\x56\\x96\\x97\\x14\\xbb\\x5d\\xaa\\xcc\\xd4\\x94\\xc4\\x04\\x56\\x9a\\x60\\x04\\xa7\\x99\\xd6\\x9b\\x99\\xab\\x40\\xa1\\x30\\xc1\\x84\\xca\\x60\\xae\\x76\\xa9\\xa7\\x5e\\x85\\x2c\\x47\\x55\\x43\\x63\\x56\\xde\\xa6\\xe1\\xee\\x32\\xbd\\xbe\\xbc\\x7b\\x78\\xdc\\xdc\\xf6\\xc8\\x52\\x33\\xb3\\x07\\x7b\\xfa\\x76\\x14\\xe5\\x6f\\x19\\xf2\\x65\\xbb\\xeb\\x9a\\xea\\x33\\x4c\\x9b\\x86\\x3a\\x4a\\xb5\\x9d\\x87\\x4e\\xd7\\x74\\x7e\\xfd\\xb6\\x5e\\x66\\x91\\xaa\\x98\\xbc\\xa9\\xc4\\xb2\\x7d\\xa4\\x0c\\x54\\xb9\\xe5\\x05\\x9a\\x14\\xb9\\x34\\x2a\\x4d\\x67\\xab\\xea\\x29\\x2c\\xec\\xa9\\xb4\\x64\\xc6\\xe6\\x75\\x1f\\xee\\x29\\x1b\\x2a\\x4e\\x97\\xe7\\x37\\x7b\\x0c\\x25\\xf9\\xea\\x64\\xb9\\x24\\x3a\\x3d\\xc7\\x59\\xdd\\x57\\xd8\\xb5\\x50\\x9b\\xa9\\xef\\x3a\\xb2\\xb1\\x76\\xc4\\x9b\\x2c\\x37\\x0b\\x7e\\x34\\xa3\\x08\\xd1\\x13\\x64\\xdf\\xc3\\xcf\\x61\\x0a\\xc3\\x9a\\x46\\x27\\x70\\x07\\xd2\\x35\\x19\\x18\\x27\\xb8\\xa2\\x3d\\x5c\\x11\\x4d\\xd1\\xba\\xcb\\x3f\\xa1\\x75\\x93\\x24\\xae\\x26\\xf8\\x39\\x9d\\x48\\x2f\\xa3\\x64\\x5e\\x37\\xd2\\x14\\x06\\x0c\\x3b\\x42\\x97\\x88\\xc2\\xb2\\x9f\\x8c\\x92\\xb5\\x0a\\x2d\\x23\\x55\\x1a\\x41\\x26\\x2a\\x32\\x99\\x4d\\x2e\\x0e\\x33\\x39\\x9d\\x08\\x15\\x3b\\x1e\\xe9\\xeb\\x7f\\x64\\x47\\x39\\x2c\\x00\\x98\\xfd\\xdb\\x2b\\x2b\\xb6\\xfb\\xcd\\x00\\xf4\\xf2\\xea\\x1f\\x06\\xee\\x9d\\x70\\x3a\\x27\\x4e\\x0c\\x52\\xf1\\xab\\x7f\\xa8\\x9c\\x6b\\x34\\x18\\x1a\\xe7\\x2a\\xa9\\x78\\x22\\xf7\\x18\\x42\\xf4\\x2e\\x7a\\x19\\x49\\x51\\xaa\\x2f\\x09\\x78\\x5d\\x56\\xcf\\xcb\\x4e\\xb2\\x3d\\x12\\xd1\\xe5\\x44\\xfb\\x08\\x87\\x66\\x60\\xc3\\x6d\\xa9\\x69\\xb0\\xf9\\x16\\xce\\xba\\x9b\\xb3\\xdd\\xf2\\x8b\\x91\\x61\\x6a\\xe5\\xf2\\x3c\\xd1\\x17\\xb9\\x08\\xd1\\x2b\\x64\\x1c\\xaa\\x7c\\x19\\xd1\\x2c\\xbf\\x31\\xe0\\x95\\x11\\xe6\\xb5\\x11\\x05\\xc2\\x92\\x9c\\x20\\x4b\\x90\\x93\\xb1\\xa7\\x74\\xc9\\x6d\\x72\\xfe\\x1f\\x4a\\x4d\\xe9\\x25\\x94\\x9a\\xb2\\x41\\x73\\x74\\xcc\\xc7\\x13\\x3f\\x8c\\x89\\x79\\x7e\\xdb\\x5f\\x67\\x7e\\x41\\x51\\x9f\\x4c\\xff\\x6d\\x3b\\x64\\xb5\\x56\\x53\\xbb\\x57\\x6f\\xab\\xe9\\xa0\\x66\\x2f\\xcf\\x53\\x5f\\x8b\\x8b\\x5b\\xed\\x25\\xef\\x22\\x67\\x7a\\x64\\x5d\\xca\\xf4\\xa5\\x45\\xb0\\x14\\x25\\x26\\x3f\\x05\\xb4\\x03\\x0b\\x3a\\x2f\\x3e\\x3e\\x5e\\x46\\x5a\\x5c\\x50\\xc0\\x24\\xed\\x2c\\xde\\x04\\x1d\\xc7\\xb8\\x09\\x38\\x77\\x37\\x77\\x8a\\x3b\\x7b\\x37\\x7c\\x9d\\x1b\\x3b\\x86\\xcf\\xc1\\xaf\\x03\\x6f\\x06\\x9e\\x87\\xcf\\xb9\\x38\\xdc\\x8c\\x45\\x7f\\xbe\\x1e\\x84\\xe8\\x05\\xd2\\x26\\x69\\xbe\\x64\\x96\\xf4\\xe5\\xba\\x46\\x89\\x8f\\x97\\xf1\\x8d\\xc2\\x33\\xe7\\x15\\xaa\\x0d\\x4f\\xc0\\xe1\\xbb\\xb8\\xbc\\x3d\\x9c\\xe5\\x2e\\x1c\\x8d\\x6f\\x0e\\x24\\x73\\x7d\\xf0\\x14\\xfe\\x25\\xe1\\x75\\x5e\\xd4\\xd1\\x11\\xfc\\x7e\\x25\\x02\\x44\\x3c\\x95\\x7a\\x44\\xf1\\xfb\\x0b\\x3c\\xb2\\x56\\xd1\\xc7\\x0b\\xa3\\x44\\x4b\\xce\\x45\\x55\\x0e\\x95\\x02\\xea\\xf1\\xaf\\x57\\x8f\\xe0\\x6f\\x05\\x9a\\xa9\\x86\\xf1\\xf1\\x0e\\xea\\x87\\x93\\x7e\\x32\\x7d\\x06\\xe8\\x5f\\x51\\xc7\\xd9\\xbf\\x20\\x19\\x32\\x20\\xe9\\x85\\x8c\\xeb\\xee\\xf7\\x79\\x43\\x4a\\x6f\\xa6\\xf4\\xae\\x90\\x0d\\xa7\\xa4\\x8e\\x63\\x53\\xe3\\xb8\\xc7\\x33\\xd1\\x68\\xc2\\xa3\\xf4\\x78\\x4b\\xf3\\x18\\xfd\\x4b\\x2a\\xdd\\x63\\x4e\\x07\\xd0\\x17\\x55\\xa4\\x49\\x6c\\xe3\\x7e\\x5b\\x66\\x81\\x37\\x03\\x33\\x2b\\xb6\\x26\\x7b\\x4a\\x8a\\xbd\\xc9\\x56\\x5d\\x51\\x59\\x05\\x9b\\x41\\x12\\x97\\x91\\x9c\\x92\\x11\\xc7\\x40\\x71\\xac\\xca\\x99\\x93\\x6d\\xce\\x88\\xa3\\x5c\\x08\\x01\\x44\\x23\\x44\\xd1\\xf4\\x3d\\x88\\x45\\xec\\x79\\x06\\x81\\x85\\xdf\\x04\\x30\\x0e\\xad\\x8d\\xa2\\x17\\xb9\\x83\\xf0\\xdb\\x78\\xea\\xf2\\xe2\\xec\\x97\\x10\\xa0\\x7f\\x27\\x7b\\xb6\\xd3\\x48\\x83\\xd8\\xf3\\x4a\\x42\\xb7\\xc6\\xd2\\xbc\\x2a\\xd3\\x2e\\xa8\\xe8\\x94\\xd5\\x77\\xe1\\x29\\x55\\x83\\x2f\\x37\\xb7\\x66\\xd0\\x5e\\x32\\xdd\\x6c\\xa6\\x16\\xa9\\xaa\\xed\\xf7\\xf9\\xeb\\xee\\x98\\x29\\xb5\\x35\\x0d\\x18\\xb8\\x33\\xf8\\xab\\x7d\\x70\\x4e\\xd5\\xd0\\x39\\x64\\x73\\x75\\xb8\\xd3\\xb2\\xca\\x86\\x4b\\x3b\\x8f\\x0c\\x58\\x72\\xdb\\xf6\\xb4\\x96\\x2c\\x6c\\xde\\x98\\xc3\\x3d\\x2f\\xf4\\xe3\\xbb\\xc1\\xcf\\x69\\x96\\x3e\\x8d\\x7c\\x88\\x3d\\x6f\\x50\\xf0\\x36\\x8c\\xed\\x06\\x6f\\xbd\\x7e\\xa4\\x8e\\x5e\\x0d\\x3f\\xdb\\x6a\\x9d\\xee\\x2e\\xcc\\x6b\\x18\\xb1\\xdb\\x47\\x9a\\xac\\xd4\\x22\\x55\\xb3\\xf5\\x68\\x7d\\xc3\\xd1\\xd9\\x32\\x6d\\x49\\x9b\\xc9\\xd6\\x5f\\x95\\x53\\xb3\\xf3\\x44\\x63\\xf3\\xfd\\xbb\\xea\\xe9\\x45\\xda\\xd9\\x39\\xe3\\x72\\x4e\\xfa\\xad\\x45\\x83\\xf3\\x85\\x5b\\xf1\\x21\\x48\\xb4\\xf9\\xbd\\xee\\x76\\x67\\x4a\\x8a\\xb3\\xad\\xb0\\x65\\xd1\\x6f\\xc8\\xf1\\xef\\x6d\\x73\\xb4\\xfb\\x4c\\x1b\\x62\\x4c\\x15\\x83\\xc5\\x1d\\x07\\xda\\x0c\\x86\\xb6\\x03\\x1d\\xde\\x6e\\x77\\x5a\\x6a\\x61\\xb7\\xb7\\xa2\\xc7\\xa6\\x80\\x2b\\x67\\x69\\x25\\xf4\\x32\\xf1\\x7f\\x90\\x5e\\x88\\x89\\x8a\\x20\\xe7\\x08\\x36\\x05\\x01\\x1f\\x08\\x79\\x2e\\x2c\\x7c\\xfb\\xdb\\xf3\\x81\\x93\\x80\\x7b\\x6f\\x0e\\xbc\\x08\\x3f\\x72\\xc1\\xe1\\x09\\xee\\x57\\x90\\x51\\x47\\xe9\\x56\\xff\\x8e\\x6f\\xee\\x27\\xf5\\xff\\x4d\\xf0\\x73\\x9a\\xa2\\x97\\x51\\x2e\\x62\\xcf\\xcb\\x80\\xaf\\x3f\\xbf\\xab\\xa2\\x44\\xd7\\x9a\\xeb\\x85\\x26\\x65\\xb3\\x12\\xa0\\xab\\xf1\\xc9\\xc0\\x77\\xf2\\x0b\\x0f\\x94\\x75\\x1c\\xdf\\x5c\\x5c\\xb4\\xf9\\xfe\\x9e\\x86\\xdb\\x66\\xaa\\x22\\x77\\x46\\x14\\xd4\\x0d\\x39\\xcb\\x67\\xea\\x74\\x16\\xff\\x6c\\x49\\xed\\x92\\x07\\xb7\\xe2\\xe2\\x59\\xee\\xee\\xac\\x0c\\xe7\\xe8\\x5d\\x5d\\x7d\\xc7\\xc6\\x1d\\x79\\xed\\x7b\\x9a\\x9c\\x1d\\xee\\x74\\x43\\xc3\\xe6\\x72\\xdf\\x44\\xb5\\x56\\x67\\x44\\x18\\xfd\\x2e\\xf8\\x39\\x1d\\x4f\\x3f\\x80\\x54\\xc8\\x89\\xa4\\x17\\xf2\\xb2\\x15\\x64\\xac\\x2a\\xd4\\xb1\\x94\\xe4\\x4a\\xfb\\x87\\x9d\\x44\\xa9\\x35\\x4b\\x27\\x2f\\x10\\x35\\x11\\xb7\\xf9\\xb9\\x5b\\x5a\\xa4\\xa9\\x35\\x6d\\xbd\\x79\\x1d\\x77\\x8e\\xba\\x8a\\xa6\\xee\\xe9\\x1c\\x3c\\x39\\x57\\x02\\xd0\\x71\\xe6\\xb7\\xf7\\xfd\\xd0\\xdc\\xdf\\xec\\x8d\\x03\\x43\\xe3\\x96\\xea\\xe2\\x89\\xda\\x1c\\x43\\xfd\\x14\\xfd\\xc0\\x14\\x94\\xcc\\x7f\\x65\\x32\\xdb\\xa9\\x49\\xf0\\x4c\\x2d\\xb7\\x77\\x9c\\x98\\x29\\xa9\\x58\\x38\\xd3\\x3f\\x73\\xcf\\x1f\\x9f\\x1c\\x06\\x8e\\x4a\\x36\\x57\\x1a\\xcb\\xcb\\x16\\x07\\x5c\\x96\\xd6\\x19\\x6f\\xc9\\x74\\xa3\\x91\\x8c\\x13\\x84\\x68\\x03\\xbd\\x2c\\x8c\\x63\\xd2\\x4e\\xbc\\x35\\xca\\xef\\xac\\x03\\x1f\\xed\\xc7\\x39\\x81\\x0c\\x6a\\x94\\xae\\xb9\\xfc\\x6f\\x44\\x53\\xf3\\x36\\xe8\\xfb\\x44\\x57\\x9f\\x46\\x06\\x54\\x8c\\xfc\\x28\\xf2\\xa5\\xc6\\xf2\\x42\\xb3\\x26\\x4e\\xb8\\x1b\\x58\\x93\\x2b\\x5a\\x08\\x7f\\xba\\xe2\\x0f\\x49\\x85\\xee\\x02\\xc5\\xcb\\xc1\\x6b\\xfe\\xfe\\x6b\\xb6\\xa7\\xc9\\x58\\xd0\\x5b\\x91\\x93\\xed\\xf5\\x0f\\x8e\\x5b\\x1b\\x1e\\xd8\\xd3\\xa0\\xaf\\xec\\xb1\\xe6\\x35\\x7a\\x54\\xe5\\xb3\\x77\\xd5\\xd6\\x1e\\x9d\\xab\\xe8\\x76\\x75\\x6f\\xb6\\xdb\\x37\\x77\\x39\\x9d\\xdd\\x9b\\x1d\\xfc\\xff\\x55\\x96\\xa6\\x8d\\x96\\x82\\x8d\\x0d\\xe6\\xfc\\xa6\\x8d\\x16\\xcb\\xc6\\xc6\\x7c\\x6a\\xc8\\xd6\\x51\\x6e\\x89\\x8b\\xb3\\xd5\\xf6\\xbb\\xdd\\x03\\x75\\x8e\\x6c\\x99\\xb6\\x75\\xa9\\xcb\\x3d\\x50\\x63\\x8b\\x8b\\x2b\\x28\\x6f\\xb7\\xb5\\x2e\\xb6\\xe4\\xe4\\xb4\\x2c\\x06\\x8e\\x16\\xf5\\xb8\\xd3\\xd2\\xdc\\xdd\\xde\\xe2\\x6e\\x57\\x4a\\x4a\\x61\\x37\\xde\\xe8\\xf0\\xbb\\xd2\\x52\\x9d\\x6d\\x4e\\xa7\\xdf\\x91\\x92\\xea\\x68\\x15\\xc6\\xe2\\x07\\xc1\\xbf\\x51\\x01\\xfa\\x34\\xca\\x44\\x76\\x24\\xbd\\x90\\x9b\\x45\\xee\\xa6\\xb4\\x25\\x94\\x4b\\xf4\\x1a\\x08\\xb9\\x83\\xf0\\xe6\\x9d\\xda\\x45\\x02\\x10\\x1d\\x57\\xdc\\x3e\\xe1\\xd1\\xcd\\xcf\\x1e\\xa8\\xa3\\x6d\\x5f\\x1d\\x6e\\x3f\\x3a\\xee\\x2e\\x9e\\xbd\\xaf\\x7b\\xe2\\xe1\\x09\\x3b\\x40\\xcb\\xc9\\x5f\\x9e\\x48\\x82\\x8f\\x0b\\x06\\xf9\\xee\\x53\\xd7\\xcc\\x36\\x94\\x4e\\x35\\x18\\x72\\xea\\xc7\\x07\\xc0\\xb3\\xed\\xf1\\xcd\\xf5\\xad\\xc5\\x33\\x77\\xb7\\x75\\x3d\\xb0\\xd5\\xd7\\x70\\xf0\\xdc\\xc6\\xa1\\x63\\xbf\\xfb\\x72\\x1f\\x4c\\xc0\\x2d\\x69\\xf6\\x3a\\x93\\xb3\\x62\\xff\\x26\\x8f\\xad\\x63\\x8b\\xd7\\xbb\\xd9\\x9f\\xcf\\xeb\\xc2\\xc6\\xe0\\x5f\\xa9\\x83\\x54\\xd6\\x55\\x67\\x6e\\x57\\x5f\\xa3\\x87\\x83\\xa5\\xc3\\x39\\xee\\xa9\\x83\\x9a\\xea\\xa9\\xea\\xea\\xe9\\x5a\\x0d\\x80\\xa6\\x7a\\xba\\xba\\x7a\\xba\\x46\\x33\\xad\\xc8\\xad\\xc8\\xcf\\x2f\\xcf\\x55\\x28\\x8c\\x15\\xf9\\xe6\\x8a\\xdc\\x04\\xa8\\xae\\xdf\\xd7\\x6b\\xb5\\xf6\\xee\\xab\\xbf\\xbd\\x7e\\x5f\\x9f\\xd5\\xda\\xb7\\xaf\\x3e\\xd2\\xda\\x5d\\xa6\\xd5\\x96\\x75\\x5b\\x1f\\xb1\\xf5\\xf0\\x1f\\x7a\\x6c\\x82\\x5f\\xd3\\x34\\x42\\xf8\\x15\\x2a\\x71\\x9d\\x2e\\x94\\x38\\xb4\\x36\\xfc\\xca\\xf4\\xef\\xa1\\x32\\x06\\x3f\\x58\\xdd\\xb7\\x99\\x97\\xb7\\x89\\xfe\\x2f\\xea\\x01\\x76\\xf7\\xbf\\x3e\\xab\\xb1\\x49\\xd4\\xd4\\x03\\x38\\xbf\\x65\\xca\\xeb\\x9d\\x6e\\xc9\\xc7\\x93\\xf4\\xb4\\xbf\\x75\\x8a\\xde\\x32\\x77\\xae\\x99\\x59\\xb1\\xb5\\xd8\\x53\\x53\\xed\\x2d\\xb6\\xda\\xca\\xea\\xea\\x6f\\xbd\\x4f\\xde\\x5d\\x19\\xfc\\x2b\\x75\\x3b\\x95\\x85\\xbc\\x88\\x3d\\xaf\\x15\\xf4\\xdc\\xf5\\x12\\x99\\x13\\x44\\x89\\xeb\\x47\\x24\\x62\\x69\\xb3\\xa6\\xdc\\x96\\x99\\x6c\\x2a\\xd6\\xa8\\xbd\\xf9\\x69\\x78\\x1a\\x9b\\x1a\\x36\\xb9\\xdc\\x63\\x0d\\x46\\xe8\\x28\\x6b\\xe8\\xcf\\x6f\\x99\\x76\\xbb\\x26\\xfd\\x36\\x3c\\x83\\x33\\x6d\\x15\\x3a\\x6d\\x59\\x41\\x5a\\x76\\x61\\xad\\xae\\x19\\x5e\\x89\\x53\\x59\\xd5\\x2a\\x5b\\x76\\xbc\\x4c\\x65\\xcd\\xb2\\xb7\\x15\\x66\\xa4\\x15\\xb6\\xbb\\xca\\x7a\\x12\\xe5\\xfd\\xcd\\x85\\x1d\\xee\\xf4\\x34\\x77\\x57\\x91\\xda\\xa1\\x91\\xc7\\x6b\\x1c\\x6a\\x83\\x2b\\x2b\\x16\\x61\\xc8\\x41\\x88\\x7a\\x9c\\x52\\x10\\xdd\\x66\\xf4\\xe5\\x5c\\xf1\\xed\\x0a\\xbb\\x6d\\xf1\\xa6\\x70\\xd8\\x8a\\xbf\\xa1\\xe3\\x96\\xe6\\xa6\\x9b\\xa6\\xb9\\xed\\x34\\x2c\\x6f\\xe5\\x76\\x81\\x2a\\x13\\xe4\\x3d\\xaf\\xbe\\x5a\\x8e\\x93\\x02\\x1c\\x1c\\xb4\\xf2\\x6d\\xd2\\x1a\\xfc\\x2b\\xb5\\x8f\\x52\\x20\\xdd\\x3a\\xdd\\x27\\xb9\\x5a\\xf7\\x91\\xab\\x6a\\x32\\x3a\\x74\\xac\\x04\\xc6\\x0a\\xe0\\x7d\\xee\\x8e\\x8c\\xcc\\x76\\xb3\\x77\\xb4\\x26\\x47\\x5b\\x33\\x5d\\xe1\\xdc\\x58\\x6f\\x61\\xa6\\xa2\\xfa\\xab\\xbb\\xfa\\x20\\xd5\\x5a\\x69\\x70\\xd6\\x67\\xc3\\x32\\xdc\\xde\\xff\\x89\\x4c\\xa1\\x2e\\x1f\\x2a\\x72\\x6f\\xaa\\xce\\xc9\\x74\\xb7\\xdb\\xcb\\xab\\x61\\xd4\\x9f\\x53\\x9a\\x97\\x04\\x69\\x49\\xc2\\x99\\x5c\\x7d\\xf0\\xaf\\xd4\\xcd\\x54\\x3a\\x4a\\x47\\x16\\x24\\xbd\\xa0\\xcb\\x90\\x89\\x7a\\x8f\\x65\\xaf\\x96\\x81\\x1f\\xa3\\x54\\x36\\xbb\\x4e\\xed\\x45\\x44\\xdf\\xfb\\x44\\x74\\xf6\\x66\\x9f\\x77\\xa8\\x5c\\xad\\xaf\\x1d\\x2f\\x29\\x9f\\x6d\\xcc\\x05\\x28\\x9c\\x7b\\x74\\xea\\x58\\xc9\\x58\\x02\\xa4\\x16\\x54\\x1a\\xf4\\xa5\\xa6\\xa4\\x64\\x53\\x19\\x95\\xde\\x8b\\x8f\\xdf\\x9a\\x6b\\xcb\\xa9\\x1e\\x2e\\x2c\\xdc\\x54\\x67\\xcc\\x6b\\x99\\x2b\\xaf\\x1c\\x7d\\x7c\\xa7\\x8f\\xbb\\xbf\\xd8\\x62\\x32\\x37\\x38\\xd3\\xd3\\xad\\xe5\\x5a\\x7d\\x99\\x39\\x45\\x18\\xa7\\x45\\x08\\x51\\xf7\\x50\\x8a\\x6b\\x74\\x1d\\x75\\x0f\\x77\\x7c\\x2b\\x6c\\xe1\\x52\\x71\\x27\\xfe\\x71\\x20\\x07\\x7f\\xa3\\x97\\xe8\\xba\\xf0\\xd8\\x52\\x21\\x07\\xaa\\x43\\x8f\\xbd\\xa8\\xa0\\x30\\x66\\x20\\x0c\\xb3\\x16\\x02\\xe6\\x62\\x10\\xa6\\x98\\x2b\\x66\\x52\\x71\\x18\\x81\\xe5\\x86\\x24\\x55\\x61\\x0c\\x96\\x7f\\xc9\\xe5\\x5f\\x32\\xe8\\xed\\xed\\xf5\\xc5\\x56\\x57\\x7a\\x3d\\x56\\x4b\\x8e\\x2e\\x23\\x2d\\x97\\x95\\x2a\\x8c\\x40\\x86\\xb9\\x32\\x74\\x57\\x6e\\x27\\x01\\x8f\\xff\\xd7\\x2a\\x78\\x07\\x34\\x14\\x55\\xf4\\x82\\xa5\\x75\\xba\\xb0\\x70\\xda\\x5f\\x90\\x94\\xeb\\x51\\x15\\x35\\xe4\\xd6\\x8f\\x38\\x9d\\x23\\xf5\\xc6\\x76\\x95\\xbd\\x3c\\x5b\\x5d\\x6e\\xcb\\xca\\xb2\\x97\\xab\\xb3\\xcb\\xed\\x59\\x89\\x69\\xa6\\xa2\\xcc\\x2c\\x8f\\x29\\x35\\xd5\\xec\\xc9\\xca\\x2c\\x32\\xa5\\xe2\\xea\\xb2\\x5e\\x65\\xd2\\x48\\xad\\xbb\\xc3\\x95\\x9a\\xe2\\xea\\xf0\\x68\\x8a\\x2d\\x9a\\x68\\x65\\x6f\\x99\\xd3\\xef\\x4a\\x4b\\x73\\xf9\\xb9\\x41\\x8d\\x43\\x23\\x93\\x69\\x1c\\x1a\\xad\\x43\\x1d\\x27\\x53\\x3b\\x60\\x39\\xcb\\x9a\\x1d\\x2f\\xcb\\xb6\\xaa\\xb2\\x0a\\x54\\x32\\x99\\xaa\\x00\\x09\\x3a\\xed\\x9f\\xd4\\xcd\\x54\\x56\\x78\\xec\\xa4\\x6e\\xe0\\x75\\xae\\xd3\\x79\\x5d\\x9d\\xeb\\x90\\x5b\\xd7\\xe0\\xc3\\xf0\\x3a\\xf7\\x17\\x27\\xce\\x48\\xb3\\x27\\x4a\\x8b\\x86\\x2b\\x35\\x86\\xfa\\xc9\\xd2\\xaa\\x99\\x1a\\x2d\\x80\\x63\\xea\\xf4\\x54\\xdc\\xfd\\xa5\\x23\\x09\\x4a\\x53\\x85\\x51\\x5f\\x66\\x4e\\x4e\\x32\\xf9\\x5a\\xe0\\xc8\\xa1\\x5c\\x4b\\x4e\\xcd\\x88\\xdb\\x3d\\xde\\x64\\xb2\\x74\\x2e\\x54\\x95\\x8e\\x9e\\xde\\xe2\\x81\\x2e\\xa0\\x4b\\xac\\x16\\x73\\x93\\x3b\\x2b\\xd3\\x51\\xa5\\xd3\\x95\\x59\\xd3\\x84\\xb1\\x53\\x8e\\x9f\\xa1\\xbe\\x4a\\xee\\xdf\\x45\\xdf\\x4d\\x32\\x70\\xbe\\x1a\\x38\\x85\\xc7\\xc8\\x6d\\x3b\\x3f\\x5e\\x3e\\xa7\\x37\\x53\\xf7\\xb1\\x77\\x12\\x1c\\x15\\x3d\\xea\\x14\\xe2\\xac\\xd3\\xc4\\xfc\\xf1\\xbc\\x4d\\x43\\x23\\x8a\\xa6\\x36\\x22\\x11\\x17\\xc2\\xcb\\x90\\xf0\\xea\\x2b\\xc5\\x42\\x50\\xfc\\x28\\xa2\\x29\\x8a\\xee\\x16\\x23\\x4e\\x68\\xaa\\xa5\\xd7\\x17\\x61\\x48\\xcc\\xd1\\x86\\x74\\x81\\x44\\x2d\\x09\\xf9\\xdc\\x88\\x1d\\x1d\\x02\\x11\\x10\\x76\\x31\\x54\\xc4\\x5d\\xdf\\xdd\\xb8\\x37\\xd9\\xe8\\xce\\xca\\x2c\\xcc\\x4d\\x4a\\xca\\x2d\\xcc\\xcc\\x2a\\xcc\\x4b\\xae\\x64\\xcc\\xba\\xf8\\x4c\\x65\\x6c\\xac\\x32\\x33\\x5e\\x6f\\x66\\xef\\x7c\\xf5\\x7d\\x55\\xa1\\x81\\x2f\\xcd\\xca\\x72\\xe5\\x28\\x95\\x39\\xae\\x2c\\xb5\\x8d\\x2f\\x8b\\x57\\x25\\xc7\\x3a\\x10\\x86\\x00\\x7d\\x0b\\xb5\\x8f\\xf9\\x16\\x62\\xd0\\x06\\x24\\xbd\\x10\\x1b\\x41\\x13\\x3f\\x1a\\xb9\\x4d\\x41\\xa9\\xf5\\xe2\\x3d\\xb2\\x44\\x8d\\x4f\\x6f\\xdd\\x76\\xa6\\xec\\x51\\xc6\\xe1\\xb4\\x68\\xb2\\x30\\xf4\\xd0\\xf7\\x81\\x45\\xc1\\x7d\\xb4\\xe8\\x9b\\xcd\\x52\\xea\\x86\\x5c\\xf3\\x08\\xc3\\x6d\\xf4\\x0f\\xa8\\x17\\xd8\\xa7\\x91\\x0c\\x99\\x90\\xf4\\x82\\x29\\xf3\\x7a\\x3a\\x5f\\xbc\\x03\\x21\\xfe\\x1e\\xa1\\x2b\\x10\\xa7\\x8b\\x7a\\x01\\x1b\\xeb\\xc6\\x8b\\x8a\\xc6\\xeb\\x8d\\x78\\x82\\x1a\\xf4\\xb7\\x0c\\xd2\\x9b\\x70\\x52\\xae\\x27\\x5b\\xe3\\xc8\\x2f\\xc8\\xcc\\x2d\\xa0\\xcb\\x71\\x72\\xae\\x5b\\x9d\\x65\\xb7\\xda\\x32\\x0d\\x56\\x8a\\xf9\\x8a\\xad\\xc5\\x99\\x9e\\xee\\x6c\\xb1\\x55\\xd5\\xd5\\x57\\xfe\\x3d\\xbb\\xc8\\x98\\x9c\\x92\\x91\\x62\\x37\\x6c\\x50\\x15\\x19\\x93\\x53\\x33\\x53\\xdc\\x06\\x72\\xb6\\xaf\\xe7\\x4e\\xe3\\x33\\x68\\xfb\\x0d\\xfd\\x28\\xd8\\x44\\x82\\x33\\x83\\xcf\\xec\\xde\\xcd\\x9d\\x86\\x8f\\x48\\xdf\\x2f\\x73\\x37\\xe3\\xdf\\xa0\\x5c\\x94\\x8c\\xd8\\xf3\\x11\\xc4\\x6f\\x37\\x83\\x52\\x84\\x73\\x6a\\xb8\\x9c\\x4e\\x21\\xef\\x6e\\xa9\\xae\\x38\\x4f\\x09\\x69\\x05\\xe5\\x7a\\x67\\x73\\x7a\\x92\\xc2\\xa3\\xb6\\x58\\x95\\x5a\\x73\\x62\\x6e\\xb2\\xb7\\xbc\\x5a\\x9d\\x53\\x6a\\x54\\xa6\\xc4\\xb7\\x47\\x29\\x31\\xce\\xd3\\x67\\x14\\x5a\\xcd\\x0a\\x61\\x5c\\x4d\\x71\\x0d\\x94\\x14\\xed\\x43\\x72\\x64\\xf0\\xe9\\x22\\x01\\x70\\x04\\x20\\xc0\\xf5\\x14\\x10\\xe4\\x5e\\x31\\x2d\\x8c\\x0a\\x89\\xd8\\x2d\\x5a\\x2d\\xcd\\x26\\x1a\\xb5\\x8a\\x75\\x09\\x3d\\x1c\\x0e\\x4a\\x0a\\xba\\x86\\x1d\\x8d\\xe9\\xce\\xf4\\xd8\\x04\\x4f\\x82\\xa5\\xca\\x94\\xb8\\xef\\x63\\xc1\\x99\\x60\\x52\\x22\\xd5\\x95\\x77\\x5b\\x3f\\x26\\x7b\\xb7\\xbb\\xb8\\x7a\\xba\\x8c\\x6e\\x46\\xc5\\xa8\\x03\\xcd\\xa0\\xc8\\x97\\xc6\\x7a\\xeb\\x7c\\xee\\x0c\\x7e\\xef\\xa6\\x4e\\x4c\\x14\\x5c\\xe9\\xf5\\x2c\\x2b\\xe0\\x2c\\xaf\\x19\\x5e\\x6b\\xf4\\x48\\x18\\xa5\\x49\\xa9\\x82\\x6c\\xbd\\x10\\x2e\\x1e\\x1e\\x7a\\x20\\xda\\xe3\\xe2\\x1e\\x48\\x42\\x97\\x3d\\x9d\\x57\\x00\\x50\\xb6\\xe5\\x44\\x5b\\x7d\\x55\\xba\\x29\\x21\\xdb\\x9c\\x7a\\xc1\\x7f\\x6c\\xa6\\xb8\\xe7\\xf8\\x2b\\x23\\xdd\\x67\\x76\\x57\\x65\\xbb\\x1b\\x72\\xb3\\x34\\xb2\\x34\\x5d\\x82\\x7f\\x1c\\x83\\x6f\\xee\\xbe\\x8e\\xfa\\x4a\\xe8\\x0c\\x9c\\x4f\\x4e\\xd4\\x56\\x39\\x55\\xf6\\xee\\x1d\\xc5\\xd5\\xcb\\x3b\\x6a\\x0c\\xb5\\x63\\x1e\\xee\\x56\\xb0\\xb4\\x4e\\x16\\xba\\x26\\x9b\\x2d\\x00\\xe6\\x96\\x49\\x8f\\x67\\xb2\\xd9\\x0c\\xd4\\x8f\\x4c\\x3b\\xab\\x12\\x1b\\xf6\\xf7\\x5a\\x13\\x12\\x4b\\x4c\\x29\\x1a\\x65\\x14\\xa8\\xaa\\xe7\\x1a\\x1b\\xf6\\xf5\\x14\\x68\\x6b\\xa7\\x2b\\x6d\\xdd\\xd5\\x4e\\xb9\\xa2\\xcc\\xa4\\x72\\xe5\\xeb\\x64\\x79\\xf7\\x0e\\x25\\x36\\xdf\\x3c\\x60\\x4d\\x58\\x4d\\xa5\\xa2\\x72\\x3c\\xf5\\x46\\x7b\\x83\\x45\\x99\\xe9\\xed\\x2e\\xb4\\x56\\x9b\\x12\\xf1\\x11\\x7b\\x4f\\xa9\\x5a\\x5d\\xda\\x63\\x4f\\x74\\xf6\\x97\\x6b\\x34\\xe5\\xfd\\x4e\\x62\\x43\\x3c\\xcf\\x5d\\xa2\\x7e\\x46\\x55\\x20\\x25\\x62\\xcf\\x47\\xf1\\xfd\\x2e\\xbf\\x16\\x5f\\xf1\\xf9\\xdf\\x5f\\x03\\xac\\xf8\\x7b\\xaa\\xe2\\x3a\\x98\\x8a\\x08\\xa3\\x9f\\x23\\x84\\xff\\xc0\\xbc\\x86\\x18\\x24\\xe3\\xe7\\x94\\x94\\xdc\\x73\\x11\\xe4\\x0f\\x15\\x08\\x97\\xe6\\xe4\\xce\\xfc\\xe7\\xf0\\xb7\\x45\\xee\\x16\\xe8\\xcf\\x2d\\xb0\\x18\\x8d\\x96\\x82\\x5c\\xda\\x73\\xf9\\x5d\\xea\\x03\\xb8\\x57\\xeb\\x74\\x6a\\xd5\\x0e\\x87\\x30\\x6e\\x9e\\x0f\\x5e\\xa2\\x2e\\xb3\\x49\\x48\\x81\\xd8\\xf3\\xb1\\x44\\x1f\\x85\\x43\\xa5\\xc2\\x4e\\xad\\xd8\\x90\\xec\\xec\\x2a\\x51\\x95\\xb8\\x2c\\x8a\\x84\\xea\\x23\\xd5\\xbd\\xbb\\x6b\\x33\\xd9\\xa4\\xcb\\x9b\\xba\\xb6\\x57\\xa4\\x46\\xc9\\xe2\\x25\\xc3\\x59\\x19\\xf9\\xa3\\x8f\\xcc\\xd2\\xf7\\xa2\\x60\\x10\\xfd\\x14\\x21\\xfc\\x5b\\x66\\x05\\xb3\\x48\\x4e\\xfc\\x20\\xb6\\xf1\\xb6\\x3b\\xf9\\x3b\\xf9\\xcf\\x24\\xae\\x17\\x21\\xda\\x42\\x2f\\x87\\x73\\xf6\\x03\\xa2\\x29\\x82\\x4a\\x19\\x82\\x46\\x25\\x4b\\x16\\x42\\xa9\\xc9\\xb2\\x0d\\x02\\x18\\x02\\x2b\\x4d\\x34\\x5e\\x1f\\x0c\\x15\\x86\\x76\\xc1\\x57\\xdb\\x1e\\xdc\\x59\\x55\\xb5\\xf3\\xc1\\x36\\xee\\x07\\x60\\xf1\\x6c\\x6e\\xb7\\x16\\xb4\\xcf\\x7a\\xb8\\x1f\\xc0\\x07\\x5c\\x01\\xbd\\x0c\\x79\\x3d\\xb7\\xf6\\xf6\\xdf\\xd2\\x99\\x03\\x13\\x90\\x56\\xd4\\xef\\xf3\\x6d\\x2c\\xcd\\x14\\x73\\x3b\\xcf\\x73\\x9d\\xf4\\x4e\\xba\\x0a\\x19\\x11\\x7b\\x5e\\x41\\xfa\\x84\\x5f\\x0d\\xe4\\x60\\x03\\x79\\x06\\xa5\\x5c\\xe3\\xe0\\x4a\\x81\\x1a\\x28\\x01\\x10\\x58\\xef\\x74\\xbe\\x5f\\xdc\\x57\\x6e\\x96\\x3d\\x02\\xae\\x03\\xdc\\xad\\xff\\x15\\x93\\xa1\\xcd\\xcf\\x90\\x25\\xc9\\xa8\\x58\\x5d\\x9c\\xb3\\xb5\\x38\\x5f\\xf1\\x02\\x77\\xee\\x20\\x3c\\xf2\\x4e\\xac\\x2a\\xaf\\x50\\xb7\\x41\\x1b\\xc7\\xc8\\x0b\\xe8\\x2a\\x6b\\x43\\x6f\\x0e\\xf7\\x75\\xdc\\x10\\xb0\\x73\\xf2\\xf4\\x72\\xb7\\x0e\\x68\\x3c\\xc9\\x48\\x4c\\xf5\\x1b\\xad\\x70\\x34\\xb0\\x87\\x92\\xc2\\xf9\\xec\\x4a\\x57\\x36\\x8d\\x47\\x19\\x09\\x89\\xed\\x26\\xbe\\x56\\xcf\\x92\\xfc\\xde\\xd2\\x0b\\x26\\x35\\x45\\xf4\\xe5\\x9a\\xea\\x5f\\x1d\\xb7\\x1c\\x6a\\x0e\\xb5\\x0a\\x72\\x77\\xc1\\xa9\\xa9\\x27\\x16\\x7d\\xea\\xf2\\xc1\\xa2\\x03\\x7b\\x20\\x55\\xb7\\x47\\x91\\x14\\x4b\\x43\\x5e\\xeb\\xd6\\x0a\\xee\\x1b\\x90\\xd4\\x7a\\x4b\\xbf\\xd5\\xdc\\xbd\\xbf\\x85\\xfb\\x09\\x3e\\x11\\xd8\\xc2\\x3c\\x0b\\xb6\\xf1\\x07\\x46\\x3d\\xd3\\x3d\\x55\\x0a\\xd5\\x53\\xb7\\xdf\\xe1\\x9d\\xcd\\x4d\\x52\\x16\\xfb\\x4a\\x52\\x6e\\xad\\xda\\x5c\\xa7\\x87\\x09\\xd0\\xd4\\x6d\\xa9\\xaf\\xdb\\xd6\\xa0\\x17\\xda\\xeb\\x87\\x08\\xd1\\xcf\\x11\\xdf\\x33\\xbd\\x4f\\x13\\xc9\\xef\\x33\\xeb\\x43\\xa7\\xa2\\x34\\x08\\x99\\xa1\\xaf\\xc0\\x36\\x0a\\x81\\x77\\x61\\xa8\\x1c\\x00\\x35\\xa6\\x5e\\xdd\\xb5\\xeb\\x15\\xf8\\xe7\\xd1\\xc0\\xaf\\x70\\xed\\x7d\\x02\\x92\\x22\\xc1\\x86\\xb4\\x07\\xd2\\x88\\x8d\\xb4\\x12\\xbc\\x44\\xbb\\x99\\x97\\x90\\x02\\xa9\\x90\\xf4\\x42\\x46\\x52\\x8c\\x38\\xa6\\xaf\\x72\\x37\\xa6\\xd6\\x8d\\xf0\\x15\\xf8\\x9e\\xd6\\xd7\\x6d\\xb5\\x4e\\x6a\\x65\\xc6\\xa5\\xd2\\xda\\xbd\\x7d\\x76\\xc0\\xdc\\xb3\\xe0\\x32\\xe9\\x74\\x66\\xb3\\x4e\\x67\\xa2\\x3d\\xab\\x7f\\x2d\\xed\\xb4\\x2b\\x65\\xd2\\x1e\\x59\\x82\\xba\\x69\\xa9\\x17\\x9f\\x85\\x07\\x55\\x96\\xfc\\x6c\\x95\\xd9\\xcc\\xd7\\x29\\x78\\x89\\x2e\\x61\\x11\\x4a\\xe4\\xc7\\x3e\\xe6\\xc7\\x80\\xca\\x45\\xb1\\xeb\\x5f\\x28\\x57\\xfd\\x10\\xfc\\x4b\\xe9\\xa0\\x2d\\xeb\\x2e\\xb0\\x4e\\x6b\\x64\\xc6\\x25\\x1f\\x79\\x4f\\x32\\xf7\\x3c\\x13\\x84\\xcb\\xf9\\xeb\\xd8\\xd3\\x63\\xa4\\xad\\x7e\\x80\\x10\\xf5\\x47\\xd1\\x5f\\x2e\\x82\\x01\\x8b\\xd1\\xa5\\x22\\x67\\x3a\\x32\\x95\\x42\\xf5\\x63\\xe8\\xe3\\xce\\xc0\\xb7\\x65\\x50\\xb5\\xfa\\xdf\\x33\\xf4\\xb3\\x87\\xb7\\x9f\\xfb\\xe2\\x95\\x19\\x84\\xd1\\x03\\xc1\\x87\\xe8\\x76\\xfa\\x22\\xaa\\x40\\x1d\\x48\\x7a\\xa1\\xbe\\xb2\\xd0\\xc4\\xf7\\xbb\\x4e\\x17\\xca\\x86\\x40\\xb2\\xef\\x09\\x0a\\x51\\xa9\\x14\\x15\\xa4\\x52\\x5c\\xfe\\x48\\x1a\\x43\\x92\\x65\\x9c\\x1f\\x18\\x24\\x35\\xbd\\x2c\\xb4\\x93\\xa1\\x3e\\x89\\x88\\xc1\\x72\\xab\\xb7\\x5a\\x5f\\x36\\x56\\xa9\\xf6\\x4c\\x1e\\x6d\\x5b\\x64\\xcc\\xcd\\x9b\\xcb\\x27\\x1e\\x99\\xb4\\x61\\xc0\\x95\\xf3\\x8f\\xf4\\x66\\x94\\x78\\x6c\\x09\\xea\\xe4\\xd2\\xaa\\xea\\xac\\xfd\\xff\\x7e\\x5b\\x1d\\x0d\\x54\\xf9\\x91\\x77\\x6f\\x6e\\x3b\\x3e\\x5b\\x12\\x27\\xe3\\xce\\xe8\\x6b\\xdc\\x86\\x88\\xa9\\xf2\\xb9\\x26\\x63\\xa2\\xa9\\x0a\\xd8\\x78\\x4f\\x66\\xa2\\x21\\x4b\\x6e\\x6c\\x9c\\x28\\xf2\\x2f\\x75\\x18\\xab\\xe6\\x1a\\x73\\x5a\\x8e\\x7f\\x70\\xd0\\x7b\\xf4\\xfd\\x23\\x65\\x11\\x71\\xca\\x0d\\x3d\\xf2\\x34\\x79\\x44\\xcf\\xd7\\xfe\\xe7\\xa4\\xeb\\xd8\\xff\\xac\\x6c\\xb2\\x4d\\x3f\\xba\\x85\\x5b\\x36\\x4f\\xe8\\x62\\xbb\\x95\\x5a\\xb3\\x12\\x72\\x53\\x0b\\xbb\\xbd\\x86\\x5a\\x47\\x26\\xe9\\xf3\\xa9\\xe0\\x25\\xfa\\x61\\xe6\\x6d\\x54\\x80\\xca\\x91\\xf4\\x42\\xb1\\x35\\x55\\xc2\\xd7\\x59\\xa9\\x96\\x5d\\xa9\\xf3\\x1a\\xd3\\x5f\\xb9\\x36\\x14\\x52\\x22\\xae\\x19\\x89\\x7c\\x5d\\xe9\\x87\\xe0\\x27\\x39\\x23\\xb3\\x0b\\xc5\\x7d\\x67\\x16\\x2a\\xb2\\x2b\\x46\\xcb\\xac\\x7e\\x77\\x86\\x6f\\xee\\x78\\x6b\\xdf\\x7d\\x33\\x1e\\xbc\\x1b\\x1b\\xea\\xa7\\x7c\\x85\\xe3\\x4d\\x26\\x73\\xcb\\xb4\\x57\\x56\\xb1\\xb3\\xdb\\x6a\\xed\\xd9\\x53\\xa3\\xf7\\x37\\x56\\x26\\x51\\x49\\x13\\x81\\x8f\\xd4\\x6e\\x83\\xc2\\x39\\xf5\\xc0\\xc6\\x8a\\xf9\\xc1\\x4a\\x79\\x62\\x65\\xcf\\xa4\\x7b\\xf0\\xde\\x31\\x47\\xf1\\xec\\xbd\\x5d\\x95\\x5b\\x9b\\x8d\\xba\\xfa\\x99\\xaa\\x9a\\xb9\\x86\\x9c\\x09\\xac\\x6b\\x98\\xf7\\xd7\\x6f\\xa9\\xd7\\xc2\\x86\\x64\\x4d\\x02\\x04\\x85\\x79\\xf1\\x64\\xf0\\x12\\xbd\\x83\\xf8\\xdb\\xb3\\xe7\\xf3\\x33\\xf9\\x35\\x7d\\xcd\\x26\\x4a\\xed\\x80\\x50\\x08\\xb2\\x3a\\xe4\\x8b\\xad\\x84\\xf0\\x92\\xa8\\xd3\\xc3\\x45\\xdd\\x5c\\x79\\xed\\xce\\xb6\\x3c\\xbd\\xff\\x60\\xcf\\x21\\xf0\\x58\\xee\\x1e\\x6a\\xdf\\x56\\x91\\xbe\\x3b\\x6f\\xd3\\xa9\\x6d\\x35\\x7b\\xa7\\x07\\x0c\\xdc\\xcb\\xdb\\xce\\xed\\xf0\\x94\\x6c\\x7f\\x74\\xb4\\x7c\\x5f\\xf9\\xad\\x09\\x59\\xb9\\xed\\x7b\\x5a\\x9a\\xf7\\x75\\x9a\\x26\\xe1\\xd6\\x92\\x36\\xc7\\xf8\\xbd\\x83\\xab\\x79\\xd4\\x47\\x0b\\x2f\\x1f\\xac\\x50\\x97\\x76\\x3b\\xb8\\xad\\xde\\xad\\x67\\x47\\x27\\x1e\\x9d\\x73\\x2b\\x53\\x78\\xd9\\x2e\\x06\\x2f\\xd1\\x5e\\xfa\\x34\\x2a\\x40\\x2b\\xbe\\x68\\x6d\\xdc\\x06\\x8a\\xc1\\x05\\x40\\x85\\x01\\x9e\\xd3\\x10\\x8d\\x30\\x43\\x63\\xde\\x2a\\x00\\xc4\\x00\\xaf\\x7b\\xa9\\x7e\\x16\\xc8\\x2d\\xa2\\x18\\xa4\\x91\\x75\\x0d\\x0d\\x45\\x15\\x37\\x20\\x84\\x48\\xb0\\x40\\x15\\x1b\\x0a\\xc7\\xf8\\xd7\\xbc\\xfe\\xcf\\x6c\\x78\\x2b\\x24\\x52\\xa7\\xd0\\x2a\\x34\\x39\\xd9\\xe4\\xd2\\xf6\\xff\\xd8\\x8a\\x21\\x33\\x5c\\xa7\\x87\\x3f\\x65\\x0f\\x17\\x95\\x4e\\xd6\\xea\\xb5\\xcd\\x7b\\x3b\\xeb\\x20\\x51\\xbb\\xab\\xb9\\x66\\xb4\\x34\\x6d\\x57\\x6e\\xff\\x3d\\x13\\x25\\x33\\x83\\x6d\\x5a\\xee\\xe3\\xd7\\xbf\\x55\\x38\\x75\\x6f\\x9f\\x77\\xde\\x71\\x6b\\x42\\x96\\xba\\x62\\x93\\xcf\\xd9\\xee\\xc9\\x18\\x02\\x8f\\xd1\\x9b\\xd7\\xb1\\xb7\\x39\\xb0\\x01\\xff\\xcf\\xf8\\xd9\\x2d\\x9e\\xd4\\x82\\xaa\\x5c\\xee\\x82\\xf4\\xab\\xc7\\xba\\xef\\x18\\x2c\\x48\\x49\\x15\\x62\\x32\\xab\\xe8\\x6f\\x52\\xb7\\x31\\x6f\\x60\\x16\\x9d\\x21\\xeb\\x99\\xf8\\x83\\x59\\x5e\\xfb\\x05\\x83\\xe8\\x37\\xb8\\x97\\xfa\\x0e\\x7e\\x1d\\xb3\\x68\\x03\\xff\\x75\\xf0\\x3f\\x10\\x22\\x78\\x67\\x32\\x21\\x7f\\xbb\\x04\\x80\\xe6\\x2b\\x8c\\xc2\\x10\\x76\\x5e\\x01\\x16\\x49\\x2a\\x34\\x0d\\x42\\xea\\x6c\\x55\\x66\\x62\\x82\\x3c\\x1e\\xc9\\x50\\x9c\\x4a\\x26\\x8b\\x90\\x2a\\x8d\\x82\\x4b\\x5a\\xe8\\xc2\\x5f\\xae\\x0e\\xdf\\xf8\\xab\\x65\\xb6\\x0f\\x56\\x57\\x61\\xf8\\xe8\\xcf\\x1e\\x6a\\xc5\\xb8\\xf5\\xa1\\x9f\\x1d\\x95\\x7e\\xfe\\xfb\\x85\\xe7\\x76\\x15\\x03\\x14\\xef\\x7a\\x6e\\xe1\\xf7\\x9f\\xe3\\xe7\\x26\\xf0\\xc3\\x78\\xe6\\xf9\\xcf\\x8e\\x1c\\x3b\\xf2\\xd9\\xf3\\xd3\\x18\\x3f\\x17\\x78\\x01\\x0f\\x3c\\xfc\\xad\\xb9\\x13\\xb3\\xef\\x3e\\x34\\x80\\x03\\xdf\\xff\\xff\\x89\\x8c\\x80\\x94\\x08\\xd1\\x85\\x2c\\xbf\\x65\\xdd\\xf4\\xa2\\x12\\x13\\xb0\\x2f\\x01\\x1c\\x32\\x4b\\x0a\\x2c\\x23\\x66\\xa9\\x96\\x48\\x4a\\xc2\\x19\\xda\\x6b\\x08\\xfc\\x6c\\x31\\x26\\xa3\\x4d\\xc2\\x4a\\x76\\xac\\xa1\\xbb\\x9a\\xa4\\xd7\\x17\\xcd\\x2f\\x53\\x0a\\xad\\x42\\x1d\\x17\\x41\\xc2\\x5a\\x64\\xc4\\x3f\\x5c\\x18\\x61\\x21\\x1c\\x71\\x35\\x5f\\x45\\x87\\x4d\\xa1\\xc2\\x4b\\xdc\\xcf\\xdc\\xaf\\xef\\xed\\xbd\\x63\\xb0\\x60\\x31\\xbb\\x6a\\xaa\\xda\\x3d\\xd5\\x53\\x95\\xb8\\xf8\\xde\\x7b\\x8b\\xa0\\xa1\\xff\\x9b\\x3b\\x38\\xb5\\x0f\\x5c\\xd3\\x0f\\x6f\\x0a\\x34\\xe1\\xf3\\xb5\\x3b\\x5a\\x72\\x35\\xbe\\x6e\\x7b\\x20\\x82\\xfe\\xef\\x89\\xe7\\x9e\\x43\\x80\\x86\\x10\\xa2\\xe7\\x99\\x15\\xb4\\x81\\xdf\\xed\\x48\\x20\\x74\\xa9\\xc5\\x92\\x20\\x58\\xc4\\x30\\xde\\xb5\\x71\\xb5\\x32\\x59\\x9c\\x54\\x9a\\x16\\xc6\\x3b\\x96\\x0b\\xa1\\xeb\\x36\\xea\\x9e\\xcf\\x16\\x38\\x0e\\x30\\x70\\xf9\\xb4\\x82\\xb3\\x7c\\x46\\x95\\xaf\\xbe\\x4e\\x95\\x4f\\xc0\\xd9\\xe9\\x69\\x6e\\x04\\x01\\x7a\\x22\\x78\\x89\\x8e\\x65\\x5a\\x90\\x1a\\xd5\\xfa\\xaa\\x64\\x40\\x53\\xf1\\xc0\\xd0\\xb8\\x3e\\x0a\\x22\\x51\\xe4\\x0e\\x09\\x60\\x16\\x88\\x17\\x86\\x94\\xc4\\x1b\\x46\\x00\\x42\\xa5\\x0d\\x88\\xa6\\x49\\xa8\\x7c\\x15\\xc3\\x5b\\x04\\x6a\\xbe\\x87\\x65\\x02\\xb4\\x9c\\x4c\\x46\\x42\\x9b\\xc2\\xfe\\x1e\\xfc\\x5a\\x73\\x65\\x39\\x14\\x7a\\xdd\\xa1\\x92\\xe1\\x56\\x38\\xce\\x6d\\x05\\x86\\xbb\\x0c\\xda\\xd2\\x4e\\xab\\x75\\x5a\\x1b\\x6f\\xdc\\x27\\x2c\\x8d\\xbf\\xf9\\x0d\\xf7\\x1f\\x60\\x62\\x5a\\xb8\\x8b\\x9b\\xb8\\xbf\\x4f\\x70\\xef\\x96\\xb6\\xdb\\x12\\x63\\x25\\xfd\\x32\\x19\\xbf\\x44\\x82\\x7b\\x02\\x22\\x36\\x81\\x82\\x9f\\x3b\\xe3\\xfc\\x38\\x94\\xe8\\xb1\\x0e\\xa9\\x11\\x02\\x09\\x2a\\x0f\\x3e\\x05\\x4d\\x28\\xe2\\x39\\x0c\\x2f\\x43\\x93\\x18\\x07\\x20\\xd0\\x68\\xc3\\x34\\xf3\\x68\\x17\\x34\\x88\\x34\\x0d\\xeb\\x68\\x3c\\x61\\x9a\\x53\\xa8\\xec\\x06\\x7c\\xf2\\xc3\\x34\\x8f\\xa1\\x87\\xa1\\x5b\\xa4\\xe9\\x5e\\x47\\x13\\x1f\\xa6\\x99\\x42\\xd1\\x02\\x1f\\x7c\\x35\\x9f\\xad\\x61\\x9a\\x47\\x51\\x2c\\x6c\\x17\\x69\\xb6\\xaf\\xa3\\xf9\\x4e\\x88\\x06\\xbe\\x1b\\xbc\\x08\\x3e\\x9e\\x86\\x7a\\x19\\x7c\\x22\\xcd\\x7e\\xae\\x8e\\x6e\\x60\\xde\\xc6\\x3a\\xa4\\x45\\xfc\\x20\\xdd\\xad\\x5d\\x15\\xd1\\xc3\\x56\\xc3\\x3e\\xc4\\xdf\\x46\\x88\\xd6\\x90\\xf6\\xd1\\x8b\\xed\\xb3\\x93\\xc8\\x03\\x6b\\xea\\x25\\xd0\\x68\\xc3\\x34\\xf3\\xa8\\x84\\xb4\\x0f\\xac\\x69\\x1f\\x81\\xc6\\x13\\xa6\\x39\\x85\\x22\\x6e\\xc0\\x27\\x3e\\x4c\\x33\\x15\\xfc\\x58\\xa0\\x59\\x53\\xf7\\x37\\x11\\xa2\\xa3\\x89\\x3c\\x46\\x51\\x9e\\x63\\xd7\\xf0\\x11\\x68\\xb4\\x61\\x9a\\x79\\xd4\\x7b\\x8d\\x3c\\x02\\x8d\\x27\\x4c\\x73\\x0a\\x69\\x6e\\xc0\\x27\\x3e\\x4c\\x33\\x15\\xfc\\xfc\\x1a\\x79\\xbe\\x84\\x10\\x9d\\x47\\xfa\\xd4\\x22\\xf6\\xe9\\x6d\\xa4\\x4f\\x61\\x4d\\x9f\\xee\\x0b\\x5e\\xa2\\x5b\\x24\\x5e\\xac\\x43\\x05\\xa2\\xcc\\xe7\\x60\\x93\\xd8\\xef\\x9b\\xd6\\xd1\\x78\\xc2\\x34\\xf3\\x68\\x27\\x0c\\x8b\\x34\\xc3\\xeb\\x68\\x5a\\xc2\\x34\\xa7\\x50\\xe9\\x0d\\xf8\\x54\\x86\\x69\\x1e\\x43\\x0f\\xc2\\xac\\x48\\x33\\xbb\\x8e\\x46\\x1f\\xa6\\x99\\x42\\x91\\x02\\x1f\\x7c\\x85\\xcf\\xe9\\xe0\\x25\\xda\\x22\\x51\\x61\\x1d\\x72\\x89\\x32\\x9f\\x87\\x1a\\xb1\\x5e\\x35\\xeb\\x68\\x32\\xc3\\x34\\xf3\\x68\\x3f\\x54\\x89\\x34\\x55\\xeb\\x68\\xec\\x61\\x9a\\x53\\xa8\\xf6\\x06\\x7c\\xa2\\xc3\\x34\\x53\\x48\\x2e\\xd0\\xe0\\x2b\\x34\\x0d\\x08\\xd1\\xe3\\x92\\x0c\\xac\\x43\\x45\\xe2\\xbb\\xfa\\xa0\\x52\\xe4\\x53\\x29\\xd2\\x9c\\x0b\\x5e\\xa2\\x0d\\xcc\\x6f\\xb1\\x0e\\x55\\x90\\xf1\\x5c\\xfe\\x5c\\x34\\x92\\x3e\\x87\\x61\\x25\\x5a\\x88\\x03\\x12\\xca\\x3f\\x09\\x97\\xcf\\x2f\\x45\\x0a\\xe5\\x91\\x6b\\xcb\\xff\\x19\\x2e\\x3f\\x55\\x7d\\xbd\\xe7\\xff\\x20\\x96\\xf3\\x6d\\x7b\\x06\\x25\\x0a\\x14\\x89\\x21\\x6c\\x3e\\x81\\xe6\\xc3\\x30\\x8f\\x29\\x19\\xe1\\x81\\xd7\\xf1\\x60\\xcd\\xe1\\xf2\\x47\\xe5\\x16\\xa1\\xdc\\xb2\\xb6\\xfc\\x4e\\xa1\\x1c\\xb1\\xf0\\xdd\\xcf\\x85\\x79\\xf8\\x25\\xae\\x8e\\x56\\xd1\\xcd\\x58\\x87\\xaa\\x84\\xb9\\xea\\xba\\x76\\xae\\xde\\x1f\\xbc\\x44\\xbb\\x48\\xfd\\x6b\\x84\\xfa\\x7f\\x7d\\xbd\\xfc\\x42\\xf9\\x27\\xe1\\xf2\\xf9\\x1d\\xeb\\xeb\\x2f\\x94\\xff\\x33\\x5c\\x7e\\xaa\\xf8\\x7a\\xcf\\x7f\\x18\\x2e\\x9f\\x92\\xae\\xaf\\xdb\\xcf\\x11\\xa2\\x2b\\x98\\xcf\\xb1\\x0e\\xdd\\x29\\xbc\\xff\\xfd\\x44\\x01\\xb9\\x30\\x71\\x6d\\xf9\\x1f\\xc4\\x72\\xbe\\x0f\\x1f\\x42\\x09\\x02\\x45\\x42\\xa8\\xfd\\x08\\x0d\\x4b\\x85\\x79\\x9c\\x1a\\xbd\\x1e\\x8f\\x9f\\x86\\xcb\\xa7\\xcc\\xa4\\x1c\\x87\\xca\\xf9\\x39\\xab\\x64\\x3e\\xc3\\x3a\\xd4\\x2a\\xf6\\xd1\\x2d\\x48\\x21\\x70\\x50\\x84\\xde\\x71\\x28\\x78\\x89\\xae\\x63\\x7e\\x83\\x75\\xc8\\x2f\\xc8\\x79\\x26\\x4a\\xa8\\x67\\x94\\xc0\\x43\\x28\\xff\\x75\\xb8\\x7c\\x7e\\x2a\\x42\\x28\\x8f\\x58\\x5b\\xfe\\x8f\\x70\\xf9\\x29\\xdb\\xf5\\x9e\\xff\\x4c\\x2c\\xe7\\x65\\xb8\\x8b\\xc8\\x80\\xaf\\x91\\xe1\\x07\\x61\\x1e\\x53\\xc1\\x28\\xa1\\x2d\\x45\\x1e\\xef\\x06\\x2f\\xd1\\x31\\xcc\\xcf\\xb1\\x0e\\x75\\x0b\\x32\\x2e\\x53\\x42\\x2d\\xa8\\xb5\\xe5\\x3f\\x0d\\x97\\xcf\\x77\\x83\\x50\\x0e\\x6b\\xcb\\x3f\\x0f\\x97\\x9f\\xca\\xbe\\xde\\xf3\\xef\\x85\\xcb\\xa7\\xfe\\x40\\x09\\xed\\x28\\x96\\x37\\x72\\x0d\\xf4\\x7e\\xc2\\xbf\\x5f\\xe0\\xbf\\xb8\\x9e\\xbf\\x50\\xfe\\x5e\\xb8\\x7c\\x2a\\x76\\xfd\\xf3\\x64\\xfd\\x61\\xbf\\x08\\xaf\\x51\\x5b\\x50\\x14\\xd4\\x8b\\x7a\\xa8\\x7e\\xdd\\x7c\\xfd\\xb7\\xf0\\x5c\\xd8\\x12\\xb7\\xbe\\x9d\\x85\\x35\\xcc\\x14\\xe6\\x71\\x06\\xc5\\xc2\\x9c\\xc8\\x63\\x6e\\x1d\\x8f\\x4b\\x61\\x1e\\x67\\xe4\\x79\\x02\\x8f\\x3c\\x9e\\x00\\xa3\\x71\\x6e\\x94\\x3e\\x4a\\xf0\\x26\\xd5\\xa8\\xd2\\x57\\xa6\\x06\\x96\\x49\\x05\\x44\\xc5\\x00\\xa0\\x58\\x12\\x8c\\x2c\\x62\\x69\\x6d\\x92\\x00\\xbf\\x11\\xa2\\x43\\x30\\x20\\x64\\x0f\\x5a\\x86\\x1b\\x11\\xca\\x56\\xa1\\x2c\\x94\\x25\\x4b\\xd1\\xea\\x65\\x52\\xe2\\x7d\\xa7\\x8e\\xa5\\x14\\x89\\x89\\xca\\xc4\\x2b\\x21\\xd7\\xbc\\x91\\x48\\xa9\\x28\\x35\\x50\\x2a\\x0a\\x3f\\x09\\xff\\x99\\x94\\x5d\\x61\\x57\\x81\\xc9\\x98\\x55\\xa8\\x50\\xa6\\x37\\xd8\\xb4\\xa5\\xf9\\x29\\x99\\x8e\\x6a\\xdd\\x52\\xe0\\x3f\\x6f\\xde\\x03\\x3f\\x79\\x1d\\x7e\\xfb\\x27\\x66\\xe5\\x8b\\x56\\x85\\xd5\\x53\\xae\\xcd\\x31\\x01\\x24\\xc4\\x76\\xc8\\x93\\x13\\xf3\\x4a\\x0c\\xba\\xda\\xf2\\xa2\\x24\\xb8\\x8d\\x9b\\x61\\x56\\x56\\xfd\\x98\\xe3\\xed\\xd3\\x73\\xdc\\x28\\x6d\\xa2\\x9b\\x51\\x0d\\xea\\x41\\x7d\\xbe\\xee\\x26\\x0a\\x4b\\xa4\\x26\\x40\\x12\\x0f\\x30\\xa8\\x08\\x58\\x86\\xae\\x47\\x14\\x06\\x4c\\x11\\x58\\x45\\xa9\\x04\\xa4\\xa3\\x08\\x63\\x82\\xd1\\x51\\x43\\x72\\x1f\\x0a\\x57\\x2c\\x0d\\x21\\xcc\\xc1\\x32\\xb6\\xb1\\xae\\xb6\\xb5\\xb9\\xb6\\xa7\\xae\\xa7\\xb4\\xb8\\xd0\\xa9\\x49\\xd0\\xe6\\xe8\\x23\\xa5\\xc9\\x46\\xed\\x55\\x56\\x7e\\xe8\\xdc\\x53\\x3c\\xc3\\x56\\xf2\\x56\\xbd\\xf2\\xba\\x15\\xd7\\xf2\\xe6\\xaf\\x23\\x6c\\xea\\x7f\\x59\\x1a\\x89\\x33\\xdb\\x46\\xb6\\x15\\x37\\x1e\\x1a\\x71\\xb5\\x1d\\x7d\\x79\\xfc\\x53\\x30\\xb7\\xcc\\xf9\\x3c\\xd3\\x7e\\x2b\\x5e\\xa4\\x2a\\x76\\x3c\\xd8\\xd5\\xf5\\xe0\\xd6\\x32\\x90\\xc7\\x42\\xe6\\xf5\\x1a\\xa9\\x8a\\x7b\\xb4\\x74\\x7e\\xb8\\x5e\\xf1\\x93\\x96\\x13\\xdb\\x2a\\x72\\x2a\\x07\\x36\\x64\\xd5\\x6a\\x75\\xbe\\xfc\\xd4\\xbc\\xd6\\xed\\xd5\\x83\\xb7\\xf8\\x75\\x4b\\xc5\\x83\\xa5\\x59\\x19\\x85\\x7e\\x1b\\x54\\xed\\xec\\xb4\\xe4\\xf5\\x1c\\xee\\x09\\xfc\\xc5\\xb9\\xc5\\x1a\\x7d\\xdd\\xb6\\xf4\\x0c\\x43\\x96\\xbb\\x25\\xff\\xb3\\x24\\xd7\\x40\\x55\\x41\\xb3\\x2b\\x9d\\xec\\x79\\x82\\x97\\xe8\\x06\\xb2\\xce\\x6a\\x45\\x1d\\x74\\x0b\\x59\\x67\\x61\\xcd\\x3a\\xfb\\xa5\\xe0\\x25\\x5a\\x45\\xe6\\x7f\\x95\\x48\\x73\\x33\\x8a\\x10\\x46\\x7f\\x44\\x68\\xfe\\x0a\\x7c\\x5a\\xc2\\x7c\\x4e\\xa1\\x26\\xb2\\x86\\xc2\\x9a\\xb5\\x58\\xe0\\xf3\\x8f\\xb0\\xce\\x3e\\xd5\\x18\\x25\\x70\\x11\\xe7\\xb8\\xc0\\x43\\x19\\xe6\\x71\\x16\\xa5\\xdc\\x80\\xc7\\x1b\\x61\\x1e\\x67\\x93\\xaf\\xc7\\xc3\\x1f\\xe6\\x71\\x1a\\xa5\\xc2\\x8c\\xc8\\x63\\x66\\x1d\\x8f\\x2f\\xc2\\x3c\\x4e\\xa7\\xc8\\x05\\x1e\\x72\\x81\\xc7\\x73\\x08\\xd1\\xa3\\x64\\x7f\\xa2\\x13\\x78\\x04\\x3f\\x80\\x4e\\x71\\x9e\\x75\\x5e\\x59\\xa3\\x99\\x63\\x6c\\x04\\xd2\\xa1\\x6a\\xb2\\x9f\\x9c\\xc2\\x1f\\x06\\x83\\x02\\x4d\\x30\\xb8\\x76\\xff\\x46\\xe6\\xbc\\xb0\\x7f\\xdb\\x12\\xfc\\x88\\xcc\\x79\\x58\\x33\\xe7\\x85\\x35\\xe4\\xdf\\xc2\\x6b\\xc8\\x16\\xc9\\xfa\\x39\\x2f\\xec\\x01\\x4d\\x61\\x1e\\x67\\x82\\x3f\\x22\\x73\\x1e\\xd6\\xcc\\x79\\x81\\xc7\\xa5\\x30\\x8f\\x33\\x91\\x6b\\xe6\\x7c\\x98\\x07\\x0e\\xf3\\x38\\x1b\\xfc\\xd1\\x35\\x7b\\x3b\\x81\\xc7\\x9b\\x61\\x1e\\x67\\x23\\xd7\\xac\\x75\\x04\\x87\\x7a\\x94\\xd6\\x30\\x2b\\x48\\x8b\\xca\\x7c\\x25\\x71\\x40\\x61\\xde\\xa6\\xc1\\xf5\\x48\\x8a\\x10\\x48\\x05\\xa8\\x82\\x5e\\x02\\xda\\x40\\x7c\\xd5\\x19\\xde\\xa6\\xe3\\xcd\\x40\\x32\\xf3\\xca\\x08\\x92\\x78\\xb2\\x56\\x2f\\x93\\x85\\x4c\\x3b\\x95\\xe2\\xfa\\x5a\\x23\\xe4\\xcf\\xfe\\xef\\x81\\x03\\xf8\\x93\\xcd\\xd7\\xce\\x88\\x54\\x73\\xb1\\x3a\\x70\\x94\\xea\\x0e\\x64\\xe1\\x5b\\xf0\\x2b\\x81\\x67\\xa6\\xae\\x1d\\xe8\\xea\\x8a\\x92\\xc2\\x24\\x66\\x65\\x3a\\xf0\\x53\\x5e\\x5f\\xdc\\xcf\\xdd\\x4a\\xbb\\xe8\\x66\\x54\\x88\\x2a\\xd1\\x1d\\xbe\\x0d\\x69\\xa9\\x98\\xc2\\xb9\\x40\\x23\\x23\\x30\\x24\\x15\\x7c\\x6a\\x6b\\x8f\\xcf\\x80\\x24\\x08\\x53\\x12\\x3c\\x12\\x01\\x62\\x26\\xf6\\x1a\\x01\\xd2\\x4e\\x0a\\x44\\x57\\x88\\x76\\x59\\x19\\x43\\x32\\xcf\\x8a\\xb4\\x88\\x46\\x0c\\xcd\\x6c\\xbc\\xee\\x23\\xa8\\xb1\\xd7\\x97\\xea\\x71\\x03\\x2a\\x2d\\x71\\x57\\x7a\\x2a\\xf3\\x4d\\x39\\xba\\x64\\x65\\xbc\\x2c\\x3a\\x12\\x15\\x82\\x33\\x52\\x1a\\x82\\x83\\x0f\\xe1\\x1c\\xa9\\xc4\\xa8\\x06\\x25\\xcb\\x4a\\xae\\x6d\\x15\\xa7\\x8b\\x65\\xaf\\xa0\\xc3\\x1f\\xdb\\xfe\\xca\\xad\\x75\\x00\\x0d\\xb7\\xac\\x8c\\xcf\\x7e\\x75\\x7b\\x11\\xac\\xfe\\x27\\x14\\x4e\\xdc\\xd3\\x33\\xf6\\x98\\xbb\\x31\\xab\\xc7\\xa5\\x2a\\xb1\\x66\\xac\\x6f\\x30\\x8f\\x39\\x5a\\xa9\\xae\\xdb\\x3b\\xe0\\x8d\\xc2\\x4f\\x63\\x53\\xfb\\x62\\x42\\xc7\\x3d\\x6f\\xce\\x19\\x77\\xbe\\x77\\x5f\\x67\\xf3\\x6d\\x2f\\x4c\\xd6\\x29\\x3b\\x1f\\xd9\\x55\\x03\\x8d\\xb5\\x6e\\x53\\x5d\\x8a\\xc2\\xe2\\x2e\\xd5\\xac\\x6b\\x4a\\xc7\\x48\\x2e\\x00\\xb5\\xea\\xda\\x74\\x6b\\x4b\\x4c\\xc5\\x4d\\x9b\\xbc\\xe1\\xb1\\xe4\\x0d\\x8f\\xa5\\xd3\\xc1\\x1f\\x93\\xb9\\x01\\x6b\\xe6\\x86\\x30\\x96\\x2e\\x87\\xc7\\xd2\\xe9\\xa8\\x04\\x61\\x2c\\x25\\x08\\xe3\\x71\\x81\\x5f\\xeb\\x89\\xae\\x30\\x88\\xba\\xa2\\xea\\x9a\\x79\\x7e\\x96\\xf3\\xd3\\x2c\\xd1\\x15\\x75\\x82\\xae\\x70\\xaf\\xdf\\x53\\x08\\x3c\\xca\\xc3\\x3c\\xce\\xa0\\x78\\xb8\\x45\\xe4\\x71\\xcb\\x3a\\x1e\\x17\\xc3\\x3c\\xce\\xb0\\x46\\x81\\x87\\x71\\x2d\\x0f\\x65\\x98\\xc7\\x59\\x14\\x7f\\x03\\x39\\xde\\x08\\xf3\\x38\\xcb\\x5e\\x25\\x07\\x57\\x41\\xd7\\x11\\x9b\\x91\\xf0\\x80\\xe3\\xa8\\x87\\xe3\\x04\\x1e\\x1c\\xb7\\x96\\x07\\x3b\\x1a\\xe2\\x01\\xa7\\x1c\\x1e\\x81\\x87\\x47\\xe0\\x71\\x16\\x21\\xda\\x44\\x74\\x70\\xae\\xd8\\x1e\\xa6\\x6b\\xe6\\xe7\\x51\\x84\\xe8\\x14\\x49\\x23\\xd6\\xa1\\x7a\\x81\\x26\\xb8\\x19\\x36\\x8a\\x34\\x1b\\xd7\\xd9\\x67\\xf9\\x61\\xfb\\xec\\x31\\xb4\\xef\\x1a\\xdb\\x4b\\xd8\\x2f\\xfe\\x23\\xbc\\xe7\\x7c\\x0c\\xbd\\x8a\\xb2\\x04\\xed\\x97\\x15\\xd2\\xe5\\x84\\x0f\\xd1\\x5b\\x46\\x51\\x6f\\xfd\\xf1\\x1a\\xbd\\x25\\xf0\\x79\\x2b\\xbc\\xef\\xdc\\x62\\x5a\\xaf\\x43\\x05\\x59\\x4c\\x61\\x1e\\x67\\x82\\x7f\\xba\\x46\\x6f\\x09\\x3c\\xfe\\x16\\xe6\\x71\\xc6\\xe2\\x14\\x78\\x38\\x05\\x9d\\xf3\\x26\\x37\\x4a\\x72\\x97\\x68\\x51\\x91\\xaf\\x30\\x1e\\x68\\x4a\\x4e\\xce\\x50\\xa4\\xa1\\x34\\x84\\x5e\\x02\\x22\\x4d\\xf5\\x92\\x23\\xcd\\xb5\\xd3\\x54\\x54\\x36\\x82\\xb6\\x09\\x45\\x5c\\x5c\\x5f\\xdf\\x38\\x54\\x32\\xd5\\x9b\\x54\\x03\\x77\\x2f\\xcc\\x71\\x3f\\xbd\\xbe\\xbe\\xe1\\xba\\x60\\x13\\x77\\x86\\x59\\x99\\xbd\\xac\\x9b\\xb9\\x81\\xba\\x99\\xa1\\x7f\\x82\\x30\\xfa\\x39\\x37\\x4a\\x57\\x30\\xaf\\x21\\x35\\xca\\x47\\xd5\\xbe\\x8a\\x35\\x5a\\x32\\x22\\x42\\xc4\\x27\\x42\\x12\\x09\\x11\\xbd\\x94\\xa4\\xd4\\xba\\x8e\\xa2\\x34\\xe7\\xa9\\x43\\xaa\\x32\\x92\\x08\\xff\\xaf\\x45\\xbf\\xea\\x6e\\x11\\xb6\\x71\\xf7\\xdc\\xa0\\x12\\x47\\xe0\\xc0\\xfa\\x8b\\xc7\\x55\\xcb\\x0d\\x6b\\x43\\x8d\\x5f\\xb9\\x91\\x0c\\xf7\\x25\\x0e\\xf7\\xe5\\xd9\\xe0\\x9f\\xae\\x19\\x9f\\x5b\\x83\\x97\\xe8\\x1f\\x49\\x34\\x58\\x87\\xf2\\x84\\xf1\\x09\\x77\\x81\\x4b\\xa4\\x71\\x89\\x34\\x17\\xb8\\x06\\xea\\xaf\\xac\\x02\\xeb\\xd0\\x49\\x71\\x9c\\x3f\\x81\\x72\\x84\\x1e\\xcf\\x09\\x8d\\xbd\\xf7\\xb8\\xdb\\xe8\\xd3\\x04\\xf7\\xdd\\x24\\xce\\x27\\x4f\\xb0\\x5c\\xb4\\xec\\xca\\x45\\x3e\\x3f\\xe6\\xee\\xa4\\x3b\\x58\\x84\\x75\\xa8\\x49\\xa0\\x09\\xfe\\x2d\\x28\\xda\\xd9\\xc1\\x90\\x9d\\xfd\\x33\\x84\\x68\\x37\\xfb\\x57\\xac\\x43\\x66\\x61\\xcf\\x12\\x4c\\x85\\x54\\x51\\x9e\\xd4\\xb5\\xe3\\x4f\\xb2\\x19\\xeb\\x50\\x73\\x78\\xef\\x73\\x5c\\xa4\\x39\\x1e\\xe2\\xc3\\xf9\\x69\\x37\\x91\\xc7\\x2c\\xca\\x53\\x18\\x8c\\x16\\xdf\\x15\\x1d\\xe2\\xc3\\xb5\\xd1\\x15\\x44\\x9e\\x66\\x91\\x66\\x5f\\x30\\x46\\xa4\\x89\\x59\\x2b\\xcf\\x1a\\x3e\\x53\\xe8\\x5c\\xf0\\x2b\\x22\\xcd\\x57\\xd6\\xc8\\x73\\x88\\xa5\\x50\\x88\\xcf\\x14\\xbc\\x13\\xfc\\xa7\\x48\\xf3\\xcf\\xeb\\xf3\\x41\\x67\\x91\\x39\\xf0\\x98\\x40\\x13\\x78\\x6c\\x6d\\xbd\\x58\\x14\\xe2\\x83\\xce\\x82\\x3f\\xf0\\x9f\\x22\\xcd\\x7f\\xae\\x3b\\xa7\\xd1\\x86\\xcf\\x69\\xe6\\xd1\\xd8\\x75\\xcf\\x84\\x94\\x64\\xdf\\xd7\\x2a\\xd8\\x3c\\x1b\\xd7\\xec\\xfa\\x88\\x0d\\xee\\xa7\\xf3\\x88\\x2c\\x16\\xb1\\xde\\x95\\xd7\\xb4\\xcd\\x9b\\x9c\\x9f\\x56\\x12\\x3b\\xbd\\x55\\xa4\\x29\\xbb\\x86\\x46\\x90\\xc5\\x1b\\x96\\xe5\\x74\\x90\\xbb\\x66\\x4d\\x11\\x64\\xf9\\x22\\x2c\\xcb\\xe9\\x7f\\xae\\xd7\\x37\\x0c\\x5f\\xce\\x46\\x0a\\xe5\\x48\\x02\\x53\\x5c\\x12\\xba\\x72\\xb6\\xb3\\x21\\x7c\\xb6\\xb3\\x05\\x45\\x10\\xbd\\x89\\xd7\\xe8\\x4d\\xc1\\xf6\\x7c\\x39\\x6c\\x7b\\x6e\\xe1\\xa4\\x82\\x7e\\x96\\x0a\\xbc\\x05\\x1e\\xe5\\x61\\x1e\\x67\\x50\\x34\\x59\\x6b\\xf0\\x9a\\xb5\\x46\\xe0\\x71\\x31\\xcc\\xe3\\x0c\\x5a\\xbf\\xd6\\x08\\x3c\\x7a\\xc3\\x3c\\x1e\\x47\\xfb\\xaf\\x39\\x63\\x22\\x3c\\x58\\x1c\\xe6\\xf1\\xf8\\xf6\\xf5\\x36\\xf0\\xf7\\x10\\xa2\\x27\\xc8\\xf9\\x92\\x5d\\xec\\xb3\\x66\\x72\\xbe\\x84\\xaf\\x9c\\x2f\\xc1\\x24\\xc1\\x2b\\xe0\\xfb\\xac\\x43\\xe8\\xb3\\xda\\xf5\\x7d\\xf6\\x3d\\xce\\x4f\\x4f\\x90\\x3e\\xb3\\x8b\\xfd\\x91\\x4e\\xfa\\x03\\x5f\\xe9\\x0f\\xc8\\xe5\\x3a\\x69\\x2b\\xe9\\xb3\\x0e\\x71\\x7e\\xdd\\x16\\x8c\\x13\\xfb\\x2c\\x4e\\x94\\x55\\x90\\xc5\\x19\\x96\\xe5\\x74\\xf0\\xf7\\xd0\\x22\\xca\\xd2\\x22\\xf2\\xb1\\x10\\x59\\xbe\\x08\\xcb\\x72\\xfa\\x57\\xeb\\xfb\\xec\\x8e\\xe0\\x25\\xba\\x8f\\xac\\x7b\\x0e\\xb1\\x3e\\xbb\\xaf\\xb1\\x3d\\x5e\\x0b\\x5e\\xa2\\x8d\\xa4\\x3e\\x9d\\x22\\xcd\\xc1\\x6b\\x6c\\x0f\\x81\\x4f\\x4b\\x98\\xcf\\x29\\x54\\x7e\\xcd\\x3a\\x2e\\xf0\\xf9\\x87\\xc8\\x87\\x45\\xa7\\x1a\\xd6\\xdb\\x0d\\x77\\x70\\x95\\x74\\x1f\\x59\\xc7\\x1d\\xc2\\x79\\x52\\xf9\\xdf\\xc5\\x1a\\xff\\x3d\\x7c\\x9e\\xf4\\x1a\\x57\\x43\\x1b\\x49\\xbb\\x08\\x3c\\x76\\x3b\\xbe\\x10\\x69\\xbe\\x08\\xd3\\xdc\\xc1\\x15\\xaf\\xe1\\xc3\\xb7\\xef\\x28\\xf7\\x0f\\x71\\x3f\\xf0\\x8f\\x90\\x2c\\x9c\\x6f\\x0d\\x1f\\x9e\\xa6\\x8b\\xbb\\x2c\\xd2\\x5c\\x16\\x69\\x84\\x3a\\xf9\\xc3\\x75\\x3a\\x8d\\xe2\\xae\\xb1\\x63\\x84\\x3a\\x7d\\x11\\x96\\xe7\\x74\\xf2\\xfa\\xf6\\x1d\\xe2\\x6a\\xe8\\x79\\xd2\\xd7\\x4e\\xf1\\x3d\\x4d\\x41\\x2c\\x4a\\x8c\\x45\\x1e\\x4f\\x70\\x35\\x74\\x2c\\xc3\\xb7\\x5d\\x97\\x48\\xf3\\xe3\\x6b\\x68\\x86\\xb8\\xa6\\x2b\\x7c\\x10\\x8b\\x76\\xe7\\x09\\x75\\x1d\\xe5\\x9a\\xe9\\x09\\x7a\\x19\\xeb\\xe0\\x59\\xa1\\x3d\\xd4\\xeb\\xcf\\x44\\x9e\\xe0\\x9a\\xae\\xf0\\x46\\x12\\xb4\\x1b\\xbd\\x44\\x9e\\x23\\xf7\\x2f\\x12\\x6b\\x48\\x2e\\x74\\x1a\\x49\\xaf\\xd1\\x3d\\x4f\\xf0\\x75\\x63\\x47\\x51\\x48\\xae\\x29\\x98\\x43\\xbd\\x02\\xf7\\xde\\x50\\xbf\\x0b\\xe7\\xa4\\x86\\xf0\\x39\\xe9\\x63\\xe8\\x51\\xf0\\x8b\\x7c\\xfc\\x22\\x1f\\xe1\\x5c\\xe7\\x37\\xe1\\x73\\x9d\\xc7\\xf6\\xc6\\x08\\x5c\\x62\\x04\\x19\\x09\\x0f\\xf6\\x2f\\x61\\x1e\\x5b\\x50\\xfc\\x35\\xe7\\xa8\\x02\\x8f\\x15\\x81\\x07\\x62\\xd1\\x96\\xcf\\xd0\\x9a\\xf7\\xeb\\xc3\\xcf\\x9e\\x41\\x0a\\x98\\x14\\x9f\\x9d\\x5c\\xf7\\xec\\xaf\\xc3\\xef\\x3f\\xf3\\xb9\\x5a\\x78\\xbf\\x7a\\xcd\\xfb\\x25\\xd3\\x61\\x1e\\x8f\\x22\\x05\\x6c\\x16\\xcf\\x7a\\x37\\xaf\\xe5\\xc1\\x6a\\xc3\\x3c\\x1e\\xfd\\x5c\\x2f\\x9c\\x2d\\xe9\\xaf\\xf0\\x28\\x96\\x94\\x84\\x79\\x3c\\x8e\\x8e\\x5c\\x73\\x5e\\xcc\\xf3\\x10\\xf4\\xa7\\xc0\\xe3\\xf1\\xe1\\x35\\xe7\\x53\\x08\\xd0\\x69\\xee\\x2e\\xda\\xc2\\xac\\x20\\x1b\\x1a\\xf4\\x45\\xfe\\x7f\\xd4\\xbd\\x79\\x7c\\x54\\x45\\xf6\\x37\\x7c\\x6a\\xe9\\xce\\x0a\\x24\\xec\\xb2\\x76\\x68\\x12\\x20\\xe9\\x84\\xec\\x04\\x08\\x98\\x74\\xa7\\xc3\\x92\\x10\\x02\\x04\\x48\\x10\\x21\\x4d\\xd2\\x21\\x81\\x6c\\x66\\x61\\x13\\x11\\x19\\x45\\x8c\\x82\\x0a\\xc8\\x9a\\xb0\\x2f\\x21\\x6c\\x37\\x61\\x15\\x97\\x61\\x14\\x19\\x17\\x1a\\x97\\x51\\x06\\xd7\\x51\\xc6\\xf1\\xc7\\x20\\x3a\\x8c\\xa3\\x8c\\x83\\xd0\\xfd\\x7e\\x6e\\xd5\\xe9\\x9b\\xee\\x04\\x46\\x9f\\xe7\\xf9\\xfd\\xf3\\xc2\\xa7\\x73\\xea\\xde\\x3a\\xf5\\x3d\\xa7\\x4e\\x55\\x9d\\xaa\\x5b\\x55\\xb7\\x6e\\x30\\x01\\xda\\x19\\x4f\\xa6\\xec\\x91\\x9d\\x9b\\xd2\\x47\\xaf\\xa3\\x8c\\x25\\x67\\x88\\x6f\\x06\\x03\\xa5\\xd6\\x0c\\x3c\\xb3\\x95\\xa4\\x92\\xcc\\xde\\x29\\xf7\\x89\\xd5\\x41\\x32\\xbb\\x2d\\x17\\xcd\\xcc\\x4b\\xe9\\x08\\x00\\x71\\x10\\x17\\xda\\x6d\\x4c\\x68\\xa4\\x78\\xb1\\xbb\\x4b\\x47\\x76\\xd7\\x87\\x9c\\x01\\xb8\\xb7\\xc3\\xe3\\xd5\\xaf\\xa1\\x84\\x0c\\xb4\\xcc\\x4a\\xee\\x3f\\x32\\xb2\\xb7\\xf7\\x80\\x26\\x31\\x5c\\xdf\\xc1\\xa7\\xa4\\x71\\x81\\x99\\xd0\\x87\\x18\\x89\\x9a\\xb6\\x6c\\xd2\\xa4\\x47\\xa6\\x46\\x52\\xaa\\x53\\x6e\\x87\\x8e\\x7b\\xb2\\x7a\\x66\\xbf\\xae\\x43\\x13\\x47\\x0d\\xf0\\x1a\\xd8\\xc4\\x3d\\x38\\x84\\x64\\xad\\x6c\\x29\\x60\\x9f\\xde\\x0e\\xcd\\x78\\x7a\\x7e\\x4a\\xca\\xfc\\xa7\\x33\\xd8\\xa7\\xf8\\x3e\\x8d\\xb3\\x80\\x0f\\xe5\\x23\\x20\\x4a\\x1d\\x67\\x46\\xf4\\xa2\\x9c\\x45\\xdd\\x47\\x29\\x0f\\x20\\x40\\x03\\x09\\x01\\x3e\\x1e\\x0f\\xdb\\xbd\\x5b\\xee\\xbb\\x18\\xbb\\x99\\x42\\x07\\x89\\x37\\x85\\xef\\x3a\\x4a\\x73\\x9f\\xf0\\x1a\\x1c\\x17\\x2c\\x37\\x44\\xb2\\xb8\\x60\\x1e\\xd8\\x7e\\x8c\\xd6\\x37\\xd6\\x3c\\x50\\x97\\xd8\\xbc\\x78\\xc6\\x53\\x0f\\xc6\\x2c\\xa4\\xcb\\x57\\x3e\\xd9\\x18\\x42\\x16\\xb7\\x1f\\x9f\\x0d\\x4c\\x4f\\x1d\\xd1\\x73\\x47\\x5e\\xe1\\x88\\xca\\x5d\\xc5\\x74\\xcb\\x9d\\xc2\\xdd\\x8d\\x4b\\xe7\\x31\\xf2\\xcb\\x79\\x51\\x1f\\xa7\\x02\\xf0\\x2d\\xc2\\x9f\\x0e\\x47\\x3f\\x38\\xba\\xdd\\x38\\x6d\\xb4\\xf8\\xb6\\xec\\x0d\\x1a\\x26\\xb6\\x45\\xea\\xa1\\x7e\\x84\\xf7\\x3c\\xa8\\x5c\\x57\\x88\\xd3\\xd6\\x15\\xea\\x21\\x94\\xa4\\x23\\x46\\x3a\\x62\\xc8\\xb9\\xce\\x1b\\xda\\x5c\\x67\\xbd\\xe5\\x6e\\x18\\x01\\x1a\\x46\\xb1\\xeb\\x9f\\x12\\x83\\xb6\\x62\\x2c\\x17\\xcf\\x91\\x6a\\x5f\\x96\\x8c\\x7e\\xbd\\xb2\\xdd\\x5a\\xc9\\x7a\\x50\\x6d\\xff\\x29\\x0d\\x83\\x99\\xc8\\xf3\\x24\\x78\\x78\\x18\\xd0\\x70\\xf4\\xb7\\x35\\x9c\\xed\\xe0\\xdb\\x6e\\x3d\\x45\\xe2\\x9c\\x46\\x1c\\x3d\\x6c\\xef\\xef\\xad\\xaf\\xd4\\x25\\x51\\xc3\\x68\\x00\\x3f\\xd1\\x97\\x91\\xd6\\xbe\\x0c\\x31\\x7e\\xd0\\x30\\x1a\\x0c\\xde\\xfd\\xc7\\x30\\x00\\xbe\\x4e\\x8c\\xa7\\x1e\\x45\\x5d\\x0f\\xb7\\x5b\\x13\\x1d\\xea\\xba\\xce\\x77\\x88\\xf5\\x86\\xc7\\x65\\xdf\\x5c\\xe9\\x0f\\xbe\\xcd\\x4c\\x5b\\x6f\\x28\\x77\\x1d\\xe2\\x8f\\xf8\\xa8\\xcf\\x89\\x8f\\x21\\xc6\\x13\\xe4\\x29\\xf0\\x6b\\x66\\xe4\\x34\\x79\\x4a\\x1b\\x23\\xd4\\xf0\\x71\\xba\\x2b\\x34\\x0c\\x9e\\x94\\x18\\x93\\x7c\\x25\\x86\\x1c\\xab\\xb8\\x9c\\xf2\\x2c\\x03\\x1a\\x46\\x76\\x08\\xbf\\xf9\\xb6\\xf3\\x65\\x57\\x39\\xf6\\xef\\xe5\\x12\\xe3\\xb7\\xf0\\xb8\\xdf\\xfb\\x74\\xfb\\x76\\xf2\\xf6\\xd5\\x8f\\xb1\\x57\\xf8\\x58\\xeb\\xeb\\xc4\\x99\\x18\\x7a\\x46\\xc3\\x48\\x83\\x9c\\x93\\x5f\\x33\\x44\\x8e\\x79\\x86\\xc8\\xfc\\xc8\\x78\\xa2\\xc5\\x57\\xe7\\x0e\\x92\\xf1\\x83\\x3c\\xe3\\xbb\\x6b\\xf1\\xf5\\xc6\\xbb\\xa5\\x0f\\xd0\\xe2\\x77\\x3d\\x1c\\x27\\xe3\\xe3\\x3c\\xe2\\x75\\xdf\\x6b\\xf1\\xc5\\xff\\x18\\x22\\xc7\\x4b\\x5e\\xe9\\x33\\xb4\\xf8\\x1d\\xff\\x9c\\x20\\xe3\\x27\\x78\\xc6\\xef\\x73\\xc7\\x93\\x77\\x1c\\x7d\\xd4\\x78\\xa6\\xf4\\xc1\\x7a\\xe1\\x1c\\xcb\\x07\\xf2\\x06\\x1a\\x46\\xb6\\xcb\\xfe\\xad\\x07\\xf6\\xd2\\xae\\x5f\\x34\\x1b\\x88\\x73\\x1b\\x84\\x0d\\x76\\x7a\\xd8\\x80\\x68\\x79\\x90\\xf1\\x44\\x8b\\x97\\x36\\x20\\x9a\\x0d\\x64\\x7c\\x77\\x2d\\x5e\\xda\\xa0\\x4d\\x7a\\x91\\xc7\\x9d\\x1e\\x79\\x24\\x5a\\x1e\\xc5\\xd9\\x03\\xaa\\x5f\\x27\\x7b\\x71\\x8d\\xcb\\xe3\\x69\\x5e\\x8b\\xff\\x59\\x8b\\xaf\\xae\\xea\\x27\\xe3\\xfb\\x79\\xc4\\xeb\\x3b\\x68\\xf1\\xf5\\xa3\\xee\\x96\\xfe\\x6f\\x5a\\x7c\\xb1\\xaf\\x41\\xca\\xc7\\x78\\xf1\\x3e\\xbd\\x28\\xa3\\x26\\xec\\x83\\x8f\\x41\\x9c\\x44\\x88\\x73\\xb7\\x51\\xf1\\x9e\\xbc\\xb0\\xd1\\x41\\x5c\\x87\\xf4\\x2e\\x67\\x19\\x4f\\xb4\\xf8\\xea\\x87\\xbd\\xeb\\x89\\x8c\\xef\\xae\\xc5\\xd7\\xa7\\xdf\\x2d\\x7d\\x00\\xc6\\xcb\\x75\\x48\\x8f\\x9a\\xd2\\xaa\\x83\\xb0\\xe3\\x41\\x5c\\x87\\xf4\\xae\\x2b\\xe2\\x3d\\x65\\xa1\\xa3\\x22\\x75\\x3c\\xec\\x5d\\x0e\\x32\\x9e\\x68\\xf1\\xd5\\x0b\\xbd\\xcb\\x51\\xc6\\x77\\xd7\\xe2\\xeb\\xcd\\x77\\x49\\x2f\\xe4\\xcb\\xf8\\xe2\\x0e\\xde\\xe5\\x28\\xde\\xcd\\x15\\xf8\\xc7\\x25\\xfe\\x4c\\x6f\\x7c\\x59\\xd7\\x2f\\x69\\x75\\xb9\\xfc\\xfb\\x30\\x99\\xc3\\x30\\xcf\\xba\\xec\\xa7\\xc5\\x6f\\xfb\\xe7\\x38\\x19\\x3f\\x4e\\xae\\xfb\\xa4\\x3b\\x0b\\x78\\x35\\x5f\\x7d\\xef\\x75\\x1f\\x1f\\xa2\\xd3\\xeb\\xaa\\xdc\\xab\\x3f\\xff\\x0b\\xeb\\x3e\\xcf\\x91\\x8f\\xba\\xb5\\xef\\xe7\\xfa\\xc5\\xa5\\x85\\x2e\\x90\\xa7\\xe1\\x9c\\x26\\x5f\\xdd\\xe0\\xab\\x7f\\xa9\\x6e\\xdf\\xcb\\x85\\x8e\\x49\\x1d\\xd9\\x93\\x44\\x38\\xdf\\xe2\\xab\\xef\\x04\\xd1\\xd9\\xc2\\xcf\\xbb\\x6e\\xf0\\x81\\xc2\\x3e\\xb2\\x2d\\x56\\x4f\\xf1\\xb6\\x8f\\x8c\\xef\\xae\\xc5\\xd7\\xf7\\xf3\\xb6\\xbf\\x88\\xd7\\x7d\\xa1\\xc5\\x6f\\xbf\\x7e\\x97\\x78\\x7d\\x4f\\x2d\\xbe\\xe1\\xbb\\x18\\x19\\x1f\\x23\\xe3\\xc5\\x19\\x31\\x22\\x7e\\x87\\x8c\\x7f\\x27\\x46\\xda\\x37\\xc6\\xb3\\x9d\\x5e\\xd2\\xda\\xa9\\x2c\\x1f\\xa2\\x95\\x8f\\x6c\\xe7\\x7e\\x5a\\xbc\\x2c\\x1f\\x22\\xcb\\x47\\x4b\\xff\\x85\\x16\\xbf\\xfd\\x9f\\x1e\\xfa\\x01\\x81\\xf7\\x9d\\x05\\xe2\\x7c\\x98\\x50\\xb8\\x3f\\x25\\xd9\\x63\\x66\\x49\\x0f\\x3e\\xbe\\x7a\\x1f\\x9b\\x36\\x0f\\xff\\xbf\\x32\\xfb\\x2e\\x4e\\x93\\x79\\xf2\\x1e\\xb3\\xef\\x67\\x3c\\x0e\\x99\\xb9\\xc7\\x04\\x92\\xfb\\xec\\x19\\x2d\\xdf\\x3d\\xb5\\x7c\\x35\\xfc\\xe0\\x6d\\x57\\x71\\x96\\x8c\\x28\\xb7\\xdd\\xb2\\xdc\\x06\\x7a\\x97\\x8b\\x8c\\xf7\\xd3\\xe2\\xb7\\xfd\\xe0\\x6d\\x37\\x11\\x2f\\xec\\x26\\xe3\\xb7\\xff\\xd0\\x26\\xbd\\xd3\\xca\\x87\\x08\\x1f\\xbe\\x1b\\x9f\\x6f\\x92\\x5d\\xee\\x6f\\x02\\x02\\xf6\\x75\\xe2\\x3c\\x18\\xa1\\xc3\\x1e\\xa9\\xc3\\x58\\x6f\\x0c\\xe9\\x23\\x29\\xfa\\x40\\xd5\\xbf\\xbc\\x00\\xe1\\x92\\x23\\xdc\\xed\\x5f\\xa4\\x9f\\x74\\x68\\x7e\\xb2\\xdc\\xa7\\xaf\\xe4\\xe8\\xeb\\x89\\x01\\x5a\\xfc\\x36\\xff\\x14\\x19\\x9f\\x22\\xcb\\xf7\\x6b\\x67\\x81\\x38\\x43\\x26\\x14\\x86\\xa7\\x24\\xb6\\xce\\x75\\x02\\xf8\\xca\\x97\\x07\\xff\\x77\\x66\\x3a\\xf1\\xc4\\x19\\xe7\\x8d\\x7b\\x4c\\x12\\x2e\\x6e\\x3d\\x89\\xe6\\x9e\\x73\\x83\\xa7\\x3c\\xf2\\xfb\\x91\\x96\\x9f\\xed\\xfe\\xde\\xfd\\xc6\\x29\\xd7\\x0d\\xbe\\x5d\\xd8\\x74\\x1f\\xce\\x07\\x4e\\x01\\xcf\\x1a\\x2d\\xe7\\xd6\\x26\\xf0\\x47\\xc5\\x18\\x63\\x3f\\x96\\x4d\\x90\\xcb\\x17\\xcb\\xc6\\xd7\\x63\\x2e\\x6b\\x8c\\x68\\xf7\\x8d\\xee\\x79\\x3c\\xf0\\x68\\xf9\\x02\\xe7\\x9a\\x73\\x22\\x1f\\x23\\x70\\x1a\\xb5\\x39\\x43\\x7f\\xc4\\xf1\\x47\\x1c\\x3c\\x8b\\x46\\xe3\\x29\\x86\\xf1\\x4e\\x5c\\x2f\\x70\\xae\\xb8\\x3b\\x0f\\x6c\\x77\\xbd\\x77\\x27\\x18\\xe7\\xcd\\x82\\x91\\x47\\xf6\\x77\\x44\\xeb\\xef\\xaa\\xe1\\xb9\\x76\\xfa\\x5c\\x74\\x4e\\x60\\x37\\x05\\x4e\\x13\\xea\\x53\\xda\\x2e\\x5f\\x12\\xa7\\x27\\xf2\\xe8\\xa1\\x61\\x88\\x77\\xbb\\x90\\xfd\\xd5\\x25\\xad\\xbf\\x2a\\x0f\\xf2\\xf6\\xf7\\xb2\\xcf\\xf3\\xd3\\xe2\\xb7\\x75\\xf1\\xf0\\xf7\\x18\\x3f\\x52\\x6f\\xd0\\xfa\\xc4\\xdd\\xf0\\x38\\x78\\xf4\\x78\\x42\\x4f\\x71\\xc6\\x8a\\xc8\\xcb\\x61\\xe9\\x53\\xa3\\xbc\\xfb\\xdd\\x97\\x9c\\x13\\xf9\\x08\\x91\\x8f\\xc3\\x38\\x0f\\xe4\\x14\\x76\\xa5\\x1e\\x76\\x95\\x18\\x3d\\x35\\x8c\\x86\\x37\\xbd\\xfd\\xa2\\x38\\x33\\x45\\xc8\\x38\\x22\\x65\\xd8\\xbd\\xfd\\xb6\\x8c\\xef\\xae\\xc5\\xd7\\x47\\x7b\\xb7\\xbd\\x17\\x9c\\x19\\x3c\\x4e\\xb4\\x5f\\x19\\xbf\\x30\\x0a\\x57\\x57\\x5c\\x4e\\x8f\\x7d\\x3e\\x2a\\x46\\x4f\\x8d\\xa7\\xc1\\xe5\\x6d\\xcb\\x02\\xe7\\x58\\x8f\\xb1\\xac\\x9c\\xa7\\x64\\x88\\xc2\\x3c\\xc7\\xbb\\x02\\x43\\xce\\x65\\x34\\xdc\\xf6\\xc6\\x90\\xfd\\x7b\\x00\\xf6\\xdf\\xaa\\x0f\\xd8\\xd2\\x6e\\x9c\\x23\\xfb\\xf8\\x4b\\x5a\\x1f\\x5f\\x1e\\xe8\\xdd\\x07\\x48\\x0c\\x3f\\x2d\\x7e\\x5b\\x27\\x6f\\x5f\\x26\\xe3\\x33\\xb4\\xf8\\x1d\\x9d\\x26\\xc8\\x31\\xc2\\x84\\xd6\\xf8\\x61\\xa2\\x4c\\x15\\x2c\\xd3\\xe5\\xe0\\x31\\x8a\\x00\\xf9\\x1d\\xe3\\x0d\\xe2\\xbc\\x95\\x18\\x88\\x4f\\x89\\xe9\\x44\\x80\\xca\\x53\\x73\\xd4\\x47\\x73\\xce\\xaa\\xf0\\x41\\xdd\\xe3\\x09\\x5d\\x7e\\xee\\x4d\\x7d\\x3c\\x8f\\x10\\x8f\\xe7\\xc1\\xf7\\x5c\\x83\\x6c\\x7f\\x32\\x0b\\xad\\xb1\\xf5\\x1b\\x16\\x71\\x9f\\xb7\\x1f\\x89\\x1d\\x1c\\xd0\\x35\\xe0\\xee\\xc7\\xb5\\x3c\\xd2\\x3c\\xb4\\xeb\\xd0\\xf8\\x91\\x21\\x5e\\x5e\\x25\\xfa\\x81\\xc1\\x84\\xdc\\xe5\\x10\\x17\\x97\\x4b\\x9e\\xbd\\x22\\xea\\x46\\x0b\\x3e\\x8b\\x3e\\xdb\\xce\\x87\\xc8\\x71\\x53\\x77\\x6d\\xdc\\x54\\x3f\\xc8\\xbb\\xfe\\x88\\x78\\x31\\xee\\x92\\xf1\\xc5\\xff\\xf2\\x1e\\x77\\x89\\x73\\x4c\\x44\\xfd\\x3c\\x81\\xed\\x79\\x77\\xbb\\xf6\\x2c\\x78\\x44\\x1f\\x73\\x42\\xfa\\xba\\x91\\xde\\x32\\x24\\x46\\x4f\\x2d\\xbe\\x21\\xd9\\xbb\\xee\\xc8\\xbd\\x3f\\x93\\xe4\\xbe\\x1d\\xf0\\x81\\x83\\xce\\xf7\\x04\\x6e\\x1c\\x00\\x5f\\xa5\\x9f\\x0c\\x61\\x30\\xa8\\x50\\x95\\x7d\\xf0\\xce\\x3f\\xdb\\x3d\\xdf\\x1a\\x00\\xf8\\xf3\\xfa\\x29\\x10\\x06\\xe1\\xc8\\xf3\\x05\\x50\\xc9\\x43\\xdd\\x3c\\x41\\x00\\xbc\\x52\\xf0\\x44\\x20\\xcf\\xc5\\x76\\x3c\\xbd\\x5c\\xd7\\x79\\x81\\x7e\\x12\\x84\\x41\\x4c\\x57\\xa1\\xc3\\x9d\\xcb\\xea\\x7d\\x97\\xda\\x3f\\xbf\\x25\\xee\\x8f\\x2c\\x94\\xf7\\x9f\\x15\\xfc\\xdd\\x00\\xf8\\x02\\x71\\xff\\x14\\xf2\\xff\\x49\\xdc\\x7f\\xd7\\x75\\x9d\\x0f\\xd2\\x97\\xd3\\x30\\x38\\x2b\\xf2\\x7a\\xe8\\xec\\x9f\\xd4\\x96\\xc4\\x4e\\xbb\\xfe\\xa4\\xb5\\x47\\xbb\\xdc\\xcb\\x4e\\xf5\\x6a\\x7e\\x5d\\x2e\\x71\\x4e\\xca\\x14\\x71\\x3d\\xb0\\x75\\x0f\\xad\\xb8\\x1e\\xd4\\xfa\\x0c\\x2f\\xae\\x93\\xc5\\xf5\\x76\\xed\\xfd\\xb4\\xf0\\xd6\\xf5\\x48\\x71\\x8d\\x6b\\x44\\x00\\x62\\x8d\\x48\\x0f\\x91\\xe2\\x7a\\x3f\\x00\\x1f\\x29\\xae\\x87\\x82\\xb6\\x9e\\x20\\xae\\xa3\\x5b\\xd7\\x00\\x74\\xe7\\xa8\\x1e\\x62\\xc4\\xf5\\x65\\x71\\xfe\\xbd\\x1a\\x1f\\xdb\\x3a\\x1f\\x29\\xae\\x13\\xc5\\xb5\\x98\\xbf\\x10\\xd7\\x23\\xc5\\xf5\\x7c\\x2d\\x3f\\x23\\x5a\\xf5\\xf9\\x95\\x7d\\xb0\\xbf\\x65\\x0e\\x64\\xa5\\xeb\\x5b\\xfe\\xa4\\x3e\\x9c\\x86\\xa9\\x23\\x10\\xa2\\x87\\x83\\x3f\\x7c\\x8c\\xde\\xb5\\xf5\\x19\\x7b\\x8b\\xeb\\x3a\\x9f\\xaa\\x1f\\x42\\xc3\\xe0\\x65\\xc9\\xd3\\xe9\\x32\\x7a\\xae\\xcb\\x1a\\xcf\\x19\\xa7\\x8d\\x77\\x13\\x38\\xaf\\x4a\\x1e\\x9f\\xf6\\xcf\\xea\\xb2\\xdc\\xba\\x69\\xe5\\x76\\xf0\\x9f\\xe7\\x90\\xe7\\x5c\\xeb\\xfc\\xb6\\xeb\\x3a\\x1f\\x20\\xca\\xf6\\x4d\\x59\\xb6\\x87\\xdb\\x97\\xed\\x47\\xe2\\x1c\\xcc\\x11\\x54\\x0f\\xab\\x5b\\xf7\\xed\\xf1\\x2c\\xaa\\x87\\x49\\xd8\\xf7\\xe5\\x33\\x97\\x88\\xaf\\xd1\\x6c\\x37\\x53\\x5c\\xe7\\x8a\\xeb\\x15\\x00\\xdc\\x26\\xae\\x67\\xb4\\xea\\xa5\\x7b\\x59\\xd3\\xab\\xf8\\xfb\\x7f\\x4b\\x2b\\x79\\xce\\xbb\\xab\\x7a\\x09\\x1e\\xa9\\x57\\xf1\\xa7\\xed\\x79\\xe4\\xda\\x49\\xb8\\xb6\\x76\\x72\\x90\\xb4\\xb7\\xa5\\xcc\\x5f\\x37\\x0d\\xe7\\xe0\\x17\\xed\\x6d\\x30\\xcd\\x75\\x9d\\xff\\x4e\\xf0\\xbc\\x23\\x79\\x3a\\xb4\\xe7\\xf9\\x2d\\xfb\\xb2\\x5f\\x05\\xe0\\x83\\xc5\\x7c\\xd0\\x11\\xf4\\x2b\\x45\\xde\\x73\\xdc\\xe2\\x7b\\x90\\xd7\\xf9\\x0c\\xdd\\x39\\xb0\\x40\\x62\\x4a\\x5c\\xdb\\xf3\\xc4\\x3c\\x3f\\x4a\\xe7\\xfe\\xc8\\x78\\xca\\xe8\\x11\\xc3\\x13\\xe2\\xfa\\xf7\\xbd\\xaf\\x67\\xd7\\xce\\x7a\\x7d\\xd7\\x08\\x12\\xef\\x3e\\x51\\xac\\xdd\\xdb\\x58\\x77\\x3b\\x51\\xec\\x8b\\xfe\\xc3\\xc6\\x4e\\x9e\\x36\\x38\\xae\\xa4\\x60\\x7a\\x6a\\xe8\\xa4\\x15\\xbb\\xa7\\x3c\\xd8\\xf8\\x68\\x26\\x5b\\xec\\x9b\\x38\\x63\\xf1\\xb8\\x51\\x0b\\x67\\x8f\\xb4\\xce\\x7b\\x74\\x78\\x42\\xa9\\x3d\\x37\\x35\\x74\\xca\\xe3\\x8d\\xd3\\xf2\\x8f\\xaf\\xce\\x65\\x8b\\xfd\\x52\\x8b\\x56\\x4e\\x48\\x79\\x78\\x4e\\x32\\x29\\x8a\\x9b\\x94\\x12\\x13\\xd6\\xaf\\x43\\xd0\\xa0\\xb8\\xd4\\xc9\\xf6\\xd1\\x0f\\x3c\\x93\\x1f\\x33\\xaa\\xbc\\x21\\x7f\\x4c\\x6d\\xce\\xd0\\x10\\x8b\\x3d\\x6d\\x5c\\x51\\xfa\\xd0\\xe0\\xa0\\x21\\x89\\x96\\x69\\x25\\x29\\xf9\\x6b\\x66\\x0f\\x4d\\x2a\\xdd\\x5e\\x94\\xb5\\x78\\xd2\\x10\\x83\\x65\\xee\\xdd\\xda\\xf0\\x6f\\x69\\x43\\x15\\xae\\xeb\\x1c\\x44\\x1a\\x93\\x48\\x83\\xef\\x3b\\x52\\x3d\\xf9\\xa4\\xd5\\x0f\\xe8\\xff\\xe1\\x5e\\x2b\\x86\\x6a\\x98\\x4e\\xba\\xa1\\x8d\\xbb\\x21\\x46\\x6f\\xd7\\xb7\\xfc\\x15\\xb1\\x0f\\xe1\\x53\\x9c\\xa3\\x0f\\x6b\\xb7\\x0f\\xe1\\xd7\\xfc\\x95\\x28\\x4b\\x71\\x7d\\xe4\\xae\\xfe\\xeb\\x20\\x00\\x0f\\x11\\xeb\\x00\\x1f\\xe3\\x5e\\x87\\x9b\\xed\\xd6\\x01\\xda\\xfa\\xa8\\xb6\\x3e\\xae\\xad\\x8f\\x3a\\x02\\xc0\\xfb\\x89\\xf8\\x63\\x77\\xf5\\x59\\x62\\x9f\\x9b\\xe0\\x0f\\xbd\\xab\\x0f\\x9b\\x08\\xc0\\x97\\x89\\xeb\\x13\\x77\\xf5\\x61\\x62\\x9f\\xa8\\x68\\xb7\\x96\\xd6\\xbd\\xd2\\xe2\\x7a\\x8c\\x6c\\x2b\\x00\\x3c\\x48\\x1d\\xcb\\xc0\\x75\\x39\\x56\\x71\\x7a\\xef\\x3b\\x6e\\xdb\\xee\\xcf\\x39\\xf3\\xb9\\x49\\x5c\\x4f\\x16\\x83\\x0c\\xb1\\xc7\\x8e\\x67\\x41\\x04\\x8c\\x4c\\x49\\x02\\xae\\x23\\x3a\\x2e\\xb6\\x64\\xea\\x08\\x94\\xbb\\x6b\\x74\\xff\\x0c\\xbd\\xd7\\x07\\x37\\x07\\x18\\xfa\\xf4\\xee\\xd1\\x2d\\xd0\\x5f\\xaf\\x83\\x08\\x12\\xe1\\xa3\\xef\\x1a\\x11\\xea\\xf1\\x4d\\xc5\\x84\\x76\\xd5\\x5c\\xad\\xe7\\x74\\x51\\x72\\x59\\x4e\\x02\\xaf\\xe6\\x63\\x6b\\x36\\x4c\\x59\\xa8\\xd4\\x8e\\x1c\\x59\\xab\\x2c\\x98\\xb1\\xf9\\x21\\x33\\xaf\\x66\\xb1\\x93\\x2b\\x52\\x67\\x3d\\x91\\x33\\x68\\x50\\xce\\x13\\x93\\x8c\\xe6\\x07\\x47\\x4e\\x58\\x31\\x2b\\x61\\xc6\\x86\\xd7\\x4b\\xc2\\x4b\\x5e\\xdf\\x30\\x63\\xf8\\xdc\\xd5\\x39\\xa3\\x8a\\x33\\xc3\\x33\\x97\\x36\\x4c\\x0a\\x9f\\xbc\\xed\\xe1\\x4c\\xfc\\x8e\\xa2\\x33\\x83\\x3f\\x22\\xfc\\xd3\\x03\\x77\\xf5\\x57\\xbf\\xb6\\xe7\\xfb\\x0d\\x00\\xde\\x57\\xf7\\x2e\\x0d\\x83\\xab\\x72\\xbc\\x1b\\xff\\x13\\xfa\\x8f\\x9f\\xbc\\xfc\\x50\\x84\\xb0\\xd5\\xd4\\xd6\\x3d\\xde\\xba\\x57\\xa8\\x5e\\xed\\x35\\x7e\\xc3\\x9e\\xee\\xd7\\x9d\\x19\\xcc\\x2c\\xf8\\x33\\x05\\xbf\\x03\\x80\\x3f\\xa9\\xbb\\x48\\xc3\\xe0\\x3b\\x29\\x93\\xfe\\x88\\x32\\x7f\\xd4\\x64\\xca\\x39\\xfb\\xbf\\x6a\\x73\\xf6\\xdb\\x82\\xbc\\xd7\\xa1\\xe4\\xda\\xc1\\x20\\x6d\\xed\\xc0\\xec\\x3a\\x70\\x8f\\xb5\\x83\\xcf\\xb5\\xb5\\x03\\xf3\\x5e\\xef\\x79\\x74\\x89\\x11\\xaa\\x61\\x54\\x43\\x75\\xbb\\x75\\x3d\\x89\\xf1\\xa9\\x86\\x51\\x5d\\xe1\\xbd\\x66\\x28\\x31\\x3a\\x6b\\x18\\xc5\\xee\\xf7\\x62\\x68\\x5b\\x3d\\xde\\xd4\\x30\\x8a\\x75\\xde\\x7b\\xad\\x65\\xdf\\x6b\\xd0\\xfa\\x5e\\xb3\\xeb\\xb9\\x7b\\xac\\x61\\x7c\\xae\\xd9\\xc3\\x7c\\xc4\\x2b\\x2f\\x94\\x73\\x33\\xad\\xd1\\x03\\xd5\\x83\\x9f\\x78\\xe7\\x70\\x2d\\x37\\xb3\\x28\\x71\\xcd\\xd5\\x6b\\x4a\\x5d\\x3f\\xfb\\x3c\\xac\\x53\\x20\\x8c\\x07\\xa9\\x63\\x3a\\x1e\\xc4\\x1d\\xc2\\xce\\x27\\x9c\\x19\\xec\\x5f\\xfa\\x1e\\xb8\\xc7\\x45\\x0f\\x0d\\x0b\\xa3\\x25\\xae\\x7c\\x9f\\xc1\\xfd\\x4d\\x4c\\xaa\\x27\\xc5\\xad\\x63\\x17\\x61\\xb3\\xa1\\x68\\xb3\\xb2\\x76\\x36\\xcb\\x13\\x63\\x58\\xb5\\xec\\x26\\x4a\\x9b\\x2d\\xf5\\x5e\\xd3\\xb7\\x3b\\xb7\\x8b\\xb6\\x2d\\xf7\\x85\\xeb\\x61\\x4f\\x10\\x93\\x75\\x12\\xed\\xd1\\xe4\\xdc\\x2e\\xda\\xba\\x7b\\x4f\\xf8\\x9e\\x8b\\x5e\\xf1\\xae\\xfd\\xaa\\xef\\x11\\xfb\\xd3\\xc4\\xde\\x04\\x72\\xe1\\x4e\\x13\\xd4\\x4b\\x8e\\x7a\\xf7\\xf8\\xf1\\xb7\\xbc\\xf7\\x24\\xfd\\x60\\x88\\xe6\\x07\\xcd\\xae\\x75\\xed\\xd6\\x62\\x7e\\xed\\x9d\\x0c\\xe9\\x77\\xde\\xd7\\xfc\\x8e\\x79\\x6b\\xfb\\x75\\xf8\\x87\\x01\\xf8\\x6c\\xe1\\xcb\\x4e\\x8a\\xeb\\x95\\x4e\\x2b\\x2f\\x10\\x6d\\xf4\\x6d\\x71\\x1d\\x0f\\xc0\\xaf\\xfa\\x74\\xa3\\x61\\xa4\\x9b\\xd0\\xe3\\x00\\xbf\\x4e\\x06\\x61\\x1d\\x1a\\x84\\x7a\\x98\\x00\\xf8\\x0c\\xf1\\x5c\\xd0\\x5d\\x8c\\xc9\\x0f\\x70\\x39\\xaf\\x61\\x73\\xa6\\xf2\\x62\\xb1\\x7e\\x7f\\x59\\xac\\x09\\x5c\\xfc\\x79\\x0f\\xca\\xdf\\xa3\\xc9\\xdf\\xea\\x1c\\xc3\\xc7\\xf3\\x09\\x34\\x0c\\xbe\\x95\\x3c\\xc1\\x4d\\xc8\\xd3\\xa4\\xf1\\x3c\\xe2\\x4c\\xf7\\x7c\\x97\\x8c\\x5c\\x84\\x03\\xc8\\x73\\x40\\xe3\\xd9\\xe9\\x4c\\xf7\\x7c\\x87\\x85\\x5c\\xec\\xdc\\x9e\\xa7\\xed\\x58\\x74\\x86\\xd3\\xc6\\x9f\\x14\\x79\\x3d\\x73\\xd7\\xb1\\xb1\\x9a\\xaf\\x6d\\xa2\\xbf\\xfb\\x33\\xf6\\x77\\xac\\x5d\\x7f\\x17\\x0c\\xc0\\x0f\\x09\\xdf\\x7e\\x4d\\xfa\\x82\\xf7\\xbd\\x7d\\x7b\\x5b\\xcc\\xff\\xe7\\xf7\\x0e\\x7e\\xe3\\x7b\\x7c\\xbf\\xf6\\xae\\x90\\x58\\x63\\x13\\x7a\\x3d\\x0a\\xda\\x7a\\x9a\\xf0\\xa3\\x8f\\x7b\\xd4\\xd1\\xff\\xb7\\xbd\\xd2\\xb3\\x5c\\xd7\\xf9\\x24\\xfd\\xd7\\x34\\x8c\\x58\\x50\\x4f\\x20\\xfd\\x51\\xcf\\xfe\\x88\\x71\\xca\\x75\\x9d\\x67\\xf3\\x89\\x54\\x0f\\x5b\\x41\\xbb\\x16\\x7a\\x6f\\x95\\x7a\\x87\\x7b\\xeb\\x2d\\xcb\\xa4\\xb3\\x56\\x26\\xc5\\x40\\xda\\xf9\\x34\\x59\\x26\\x2f\\x6b\\x65\\x52\\xfc\\x6e\\xfb\\x31\\xae\\xcd\\xf5\\x2d\\x2f\\x16\\x6d\\xf0\\x32\\x8e\\x99\\x6e\\xcb\\x7d\\x2e\\x1e\\x7b\\x88\\xb6\\xba\\xbe\\xe3\\xe3\\x45\\xff\\xf3\\xad\\xc4\\xe9\\xe8\\x2f\\x7d\\x23\\xae\\x31\\x8a\\x36\\x2a\\xf6\\x3b\\x7c\\x8c\\x7b\\x3b\\xff\\xd5\\x6e\\xbf\\x83\\x6c\\x83\\x7b\\xb4\\x36\\x58\\xfe\\x4b\\xfb\\xfe\\x44\\xb6\\xf5\\x40\\x0d\\xa7\\xd8\\xf5\\x63\\xbb\\x3d\\x07\\x12\\xe7\\x65\\x0d\\xa7\\xf8\\x76\\xfb\\x3c\\xfd\\x96\\x77\\xef\\x7e\\xed\\xdd\\xa0\\x45\\xee\\xb1\\x10\\x91\\xe7\\x9b\\xd4\\xba\\xae\\xf3\\x91\\x6a\\xbd\\x20\\x5d\\xc5\\xb5\\x88\\xf7\\xe9\\x40\\xc3\\xd4\\x78\\x21\\xc3\\x97\\x8c\\x05\\xbf\\x66\\x46\\x4f\\x93\\xb1\\x28\\x43\\xa4\\x51\\xeb\\x85\\x9a\\x46\\x95\\x71\\x75\\x10\\xf8\\x36\\x33\\x6d\\x8f\\xc5\\x63\\xae\\xeb\\xdc\\xe2\\x33\\x98\\x86\\xc1\\x5f\\x31\\xbf\\x3f\\x91\\x02\\xcc\\x6f\\x01\\x62\\x3c\\xeb\\xba\\xce\\x13\\x84\\x9e\\xbf\\x20\\x46\\x80\\xb4\\x3d\\xea\\x29\\xc6\\xa2\\x62\\x5f\\xed\\xa7\\xb8\\xd7\\xc4\\xd8\\x6e\\x5f\\xad\\xec\\x97\\x14\\xd9\\x2f\\x81\\x1e\\xca\\x3b\\x48\\x3b\\xc9\\x71\\x6c\\x67\\x2d\\x6d\\xb1\\xfb\\xfd\\x4c\\x8f\\x3a\\xf4\\x6b\\xef\\x20\\x49\\x8c\\x34\\x0d\\x63\\x37\\x6c\\xbc\\x07\\xc6\\x2d\\xc4\\x50\\x79\\x1e\\x03\\xcf\\x9d\\x22\\x2a\\xcf\\x79\\x6d\\xec\\xfe\\x39\\xda\\xe2\\x2f\\xed\\x70\\x76\\x68\\x65\\xff\\x93\\xd4\\xc5\\xd2\\xbe\\xec\\x1b\\x01\\x78\\x82\\xc0\\xf9\\x0a\\x71\\xe4\\xbe\\x52\\xe6\\x81\\xb3\\x07\\x80\\x47\\x08\\x9c\\xff\\x48\\x9c\\x87\\xfe\\x2d\\x39\\x3c\\x70\\xe6\\x3b\\x33\\xf8\\x1f\\x85\\xcd\\x46\\x88\\xbd\\x7f\\xef\\x91\\xdf\\xcb\\xb1\\x9b\\x33\\x83\\x2f\\xe5\\x23\\x68\\x98\\x3a\\x76\\x13\\xf7\\x6b\\xb4\\x7d\\x3b\\x5c\\xf4\\xe5\\xe9\\xe2\\x3a\\xc6\\x99\\x81\\x7b\\x4e\\x3f\\x41\\xbe\\x17\\xc4\\xfd\\x54\\x67\\x06\\x5f\\x26\\xd2\\x7f\\x8f\\xf7\\x17\\x48\\x7f\\xe8\\xbc\\xd0\\xda\\xdf\\x82\\x0f\\x34\\xe9\\x42\\xe4\\x98\\xda\\x79\\xa1\\xb5\\x9f\\x55\\xef\\xf3\\x2f\\x3c\\xfc\\xe7\\x29\\xcd\\xf7\\x35\\xf2\\x0f\\xc9\\x2c\\xf4\\x9f\\xb3\\x3c\\x7d\\x9f\\x7e\\x81\\xf6\\x2e\\x65\\x23\\xff\\x18\\xfa\\x4a\\xcf\\xd4\\xd7\\x6d\\x77\\xbb\\xd8\\x63\\x70\\x44\\x7b\\x87\\x79\\x8b\\xeb\\xc7\\xbb\\xfa\\xd0\\x4d\\xfa\\x32\\xb7\\x0f\\x25\\x5b\\xfe\\xe3\\xed\\x8b\\xb2\\x85\\x2e\\xfb\\x34\\x8c\\xcd\\x2e\\xa7\\xdc\\x43\\x48\\x5b\\xf7\\x5d\\xe4\\x08\\x5d\\xec\\x1a\\xc6\\x66\\xca\\x25\\x06\\x6f\\xf5\\xe5\\x5b\\x7c\\x6e\\x6a\\x18\\x9b\\xa0\\x43\\x3b\\x0c\\x55\\x8f\\xed\\xfa\\x13\\x1a\\xc6\\xa6\\xce\\xed\\x31\\x1e\\xf3\\xf9\\x49\\xc3\\xd8\\xe8\\xfa\\x9e\\x24\\x22\\x46\\xa2\\x97\\x4d\\x5a\\x31\\x36\\xfe\\xeb\\xa6\\xe4\\x70\\xdd\\x6c\\x9d\\x6b\\x52\\xcb\\xc2\\xfd\\x9e\\x39\\x0c\\x92\\xef\\x99\\x13\\x2c\\x93\\x36\\xef\\x9b\\x8b\\xf2\\x71\\xbf\\xcf\\x0a\\x61\\x50\\x9f\\x1e\\x48\\xb0\\x94\\xbc\\xc6\\x20\\x52\\xb7\\x77\\x34\\xdd\\x5e\\x73\\xb9\\x48\\x0e\\xea\\x96\\xe3\\xa5\\x5b\\x9d\\xa6\\xdb\\x6b\\xac\\x8b\\xcc\\x5f\\x17\\x0f\\x0c\\xdf\\x40\\x0d\\x63\\x2b\\x10\\xb2\\x04\\x31\\x96\\x78\\x61\\xbc\\xa3\\x61\\x6c\\xd5\\x0f\\x97\\x18\\xc3\\x3d\\x31\\x46\\x69\\x18\\x27\\x5d\\xff\\x22\\xe3\\x10\\x63\\x9c\\x17\\xc6\\x6d\\x0d\\xe3\\xe4\\xcf\\xbe\\x12\\xc3\\xd7\\x33\\x2f\\x4e\\x0d\\xc3\\xe1\\x7a\\x4f\\xec\\x91\\x53\\x31\\x26\\x79\\x61\\xbc\\xa2\\x61\\x38\\x3e\\x0a\\x92\\x18\\x41\\xee\\xf1\\xe5\\x85\\xd6\\xfe\\x1f\\x06\\xc9\\xfe\\xbf\\x8d\\x8d\\xcb\\xbc\\x6c\\x7c\\x5d\\xb3\\xf1\\xb6\\x2e\\x26\\x6f\\x1b\\xbb\\xdf\\x49\\x72\\x5e\\x12\\xcf\\xd0\\xee\\xbe\\xba\\x89\\x5f\\x03\\x7f\\x39\\x0a\\xf1\\xd7\\xd6\\xec\\x9d\\x17\\xc5\\x33\\xa9\\xec\\xab\\x55\\x79\\x91\\x62\\x5e\\x93\\x7a\\xcc\\x6b\\xca\\x3e\\xff\\x94\\x86\\xd3\\xc8\\xeb\\x45\\xdb\\x22\\x1e\\x6d\\x4b\\xf4\\xf9\\xa2\\x6d\\x8d\\x41\\x9e\\xf7\\xda\\xb5\\x2d\\x89\\x33\\x54\\xc3\\xd9\\x05\\xb6\\x76\\xef\\x4e\\xc8\\xb1\\xc3\\xf7\\x1a\\xce\\x2e\\x78\\xa1\\xdd\\xfb\\xce\\x2a\\xce\\x03\\xa2\\x8d\\x0e\\xc2\\x36\\xfa\\x72\\x3b\\xdf\\xa8\\xe2\\x3c\\x2b\\xda\\xe8\\x18\\xd9\\x46\\x6f\\x78\\xb7\\xd1\\x9e\\x42\\x97\\x7d\\x1a\\xc6\\x66\\xd7\\x79\\xb9\\x37\\xca\\xa3\\x7d\\x65\\x8a\\x3c\\xd9\\x35\\x8c\\xcd\\xb7\\xbc\\xdb\\xd7\\x5b\\xe2\\x1d\\xb6\\x9b\\x1a\\xc6\\x26\\xd7\\xa5\\x76\\x18\\xaa\\x1e\\x1b\\x44\\xfb\\x92\\x18\\x9b\\xfc\\xda\\x63\\x0c\\x14\\x6d\\x74\\x10\\xb6\\xd1\\x93\\xa2\\x8d\\x12\\x8f\\x36\\x2a\\x6d\\xdb\\x8a\\xb1\\xf1\\x5a\\xfb\\x36\\x2a\\xca\\xda\\x7d\\xd6\\x81\\x68\\xa3\\x7e\\xb2\\x8d\\x8a\\x32\\x0f\\xd6\\x9e\\x21\\xdc\\xaf\\x5e\\x6b\\x65\\xef\\x7e\\xf7\\x5a\\x6d\\xab\\xa3\\x02\\xb5\\x1a\\x10\\xe4\\x6e\\xab\\xcd\\x4c\\xd6\\x04\\x6d\\x3e\\xe9\\x94\\x36\\x9f\\xd4\\xc8\\x4f\\xb5\\xab\\x07\\x72\\x5f\\xfc\\x72\\xed\\xdd\\x97\\x46\\x7e\\xb3\\xdd\\x5c\\xff\\x1f\\x9c\\x97\\xc4\\xd8\\xd7\\x8d\\xd3\\xa4\\xd3\\xb5\\xab\\x97\\x9f\\x3b\\x2f\\x89\\xe7\\xf5\\x30\\x75\\x74\\x2e\\x78\\xca\\xc0\\xe3\\xcd\\x71\\x39\\xae\\x71\\xbe\\x29\\xe6\\x73\\xdc\\xe3\\x9a\\x26\\x5d\\x5f\\xd7\\x6d\\x9c\\x91\\xbc\\xed\\x1e\\xd7\\x38\\x5f\\x17\\x73\\x28\\xee\\xf7\\xa2\\x9b\\x74\\x5d\\x5d\\xff\\x46\\x9e\\x7f\\x23\\x8f\\x1c\\x1f\\x5d\\xd0\\x70\\x1a\\xf9\\x07\\xa4\\x1a\\xdb\\x5c\\xb5\\xe7\\xf8\\x48\\x5f\\xab\\xe1\\x34\\xf2\\xf3\\xd0\\x47\\xea\\xd3\\x47\\xd3\\xc7\\x75\\x9d\\x3f\\xef\\xf3\\xba\\xf6\\x8c\\xb7\\xc5\\xf5\\xc3\\x5d\\xc7\\x59\\x4f\\xe8\\x4b\\xdd\\xe3\\x2c\\xb2\\xe5\\x1b\\xef\\x71\\x56\\x96\\xd0\\xe5\\x25\\x0d\\x63\\xb3\\xeb\\x36\\x99\\x81\\x18\\x33\\x10\\xc3\\x2c\\x74\\x29\\xd4\\x30\\x36\\xdf\\xf0\\x7e\\x16\\x55\\xf5\\xd8\\xe4\\x1b\\xa0\\x61\\x6c\\x82\\x80\\x76\\x18\\xaa\\x1e\\xab\\xf5\\xc7\\x35\\x8c\\x4d\\xd0\\x1e\\x63\\xa2\\xaf\\xbf\\x86\\xb1\\xd1\\x75\\x5d\\xee\\xb5\\xa3\\xad\\xcf\\xcc\\xd2\\x26\\xad\\x18\\x1b\\xbf\\xfc\\x09\\xeb\\x65\\xeb\\x3c\\x8c\\x28\\x23\\xf7\\xf9\\x11\\xa2\\x5e\\xde\\x4f\\xe6\\x68\\x65\\xd5\\x59\\x3b\\x47\\xa2\\x99\\x61\\xa1\\xb9\\xcb\\xcc\\xfd\\xae\\xbb\\x5a\\x2f\\xe3\\x02\\xb4\\x92\\x0b\\x76\\xbf\\x17\\x26\\x12\\xb4\\x8e\\x4f\\xd4\\xf1\\xe7\\x3b\\x3e\\xe1\\x34\\x0c\\x36\\xe0\\x33\\xfe\\x26\\x92\\x8d\\x65\\x98\\x8d\\xfa\\xd6\\xb8\\xae\\xf3\\x43\\xe2\\x19\\x7f\\x23\\xf2\\xd4\\x81\\xc7\\x9b\\xa0\\x1e\\x38\\x26\\x0d\\xc7\\xec\\xba\\x48\\x26\\x23\\xce\\x64\\x2f\\x9c\\xbf\\x21\\x8e\\x1e\\xcc\\x67\\xbd\\xdf\\x57\\x93\\x18\\x2f\\x6b\\x18\\x8d\\xfc\\xa6\\x18\\xc7\\xaa\\x18\\x05\\x9e\\x18\\xa2\\x3e\\x6d\\x44\\x9e\\xab\\xed\\xea\\x93\\xc4\\x89\\xd7\\x70\\x76\\xc1\\x4b\\x64\\x26\\xe2\\xcc\\xf4\\xd2\\xe5\\x3b\\x0d\\x67\\x17\\x1c\\x6e\\xf7\\xde\\xff\\x22\\xe7\\x05\\xfe\\x8e\\x78\\x77\\x66\\x03\\x8e\\xa5\\xe4\\x1a\\x50\\x8d\\xf3\\x75\\x7e\\x88\\x1f\\xd4\\xd2\\x36\\xe9\\xfc\\xdb\\xb5\\x8d\\x06\\xe7\\x05\\x1e\\x2d\\xda\\xea\\x30\\x4c\\x1b\\x24\\xc7\\xa7\\xce\\x0b\\xbc\\x83\\x18\\xb7\\x4d\\xc7\\x71\\xd8\\xdf\\xb4\\x71\\x5f\\xb4\\x4f\\xb3\\xb6\\x4f\\xba\\x91\\x7f\\x4a\\x72\\xd1\\x47\\xe4\\x2a\\x9e\\x7b\\xad\\xcb\\x70\\x9f\\xb4\\xca\\x73\\xa2\\xdd\\x99\\x0c\\x0d\\xae\\xeb\\xba\\x71\\x62\\xce\\x66\\x13\\x96\\x55\\x6e\\xbb\\x39\\x9b\\xf3\\xae\\xeb\\xba\\xfb\\xc4\\x73\\xd8\\x66\\x39\\x67\\x93\\xd7\\x7e\\x1e\\x50\\xe2\\x0c\\xd2\\x70\\xcc\\xae\\x35\\xed\\xe6\\x54\\x24\\xce\\xfb\\x1a\\x8e\\xf9\\xd9\\xf6\\xf3\\x21\\x12\\xe7\\x94\\x86\\xd3\\xc8\\x4f\\xb6\\xf3\\x7d\\x02\\x47\\x9f\\x8f\\x38\\xc2\\x3f\\x82\\x8f\\xcc\\x97\\x8f\\x77\\xbe\\x86\\x6a\\x38\\xbb\\xe0\\xe1\\x76\\x7d\\xa0\\xd4\\xe7\\xb2\\xc4\\x01\\x3d\\xec\\x5a\\x8a\\x3a\\x38\\xdf\\xd2\\x8d\\xd3\\xdd\\xd6\\xd2\\x36\\xe9\\x3a\\xbb\\xee\\xa0\\xa6\\x77\\xdc\\x69\\x9d\\x17\\x74\\xf7\\xf1\\x06\\x4c\\xab\\x96\\xcb\\x57\\x72\\x8e\\xc3\\x79\\x49\\xcc\\x71\\xb8\\xe7\\xeb\\x9a\\x74\\x3e\\xed\\x7c\\x6e\\xa6\\x73\\xa8\\x98\\x97\\x75\\x3f\\x97\\x34\\xe9\\x3e\\x73\\x15\\x20\\x7e\\x81\\xd7\\x9a\\x5b\\x2b\\x4e\\x23\\x3f\\xdd\\x4e\\x7f\\xf1\\x7c\\x23\\xca\\xf7\\x01\\xe4\\xb9\\xd4\\xae\\x7c\\x25\\xce\\x60\\x0d\\x67\\x17\\x3c\\x22\\xda\\x2b\\xf1\\x68\\xaf\\xf2\\x39\\xe9\\x6f\\x1a\\xce\\x2e\\xd8\\x0a\\x1e\\x6f\\x16\\x88\\xb3\\xf4\\xd4\\xfa\\xf6\\xba\\x1e\\xa0\\x2f\\xc4\\x11\\x9f\\x14\\xbf\\x21\\x83\\xbb\\x71\\xee\\xeb\\xe7\\x3e\\x64\\x3a\\xd4\\x87\\xe8\\x38\\x01\\xa6\\x13\\x67\\x7c\\x8d\\xce\\x00\\x3f\\x3f\\x31\\x2b\\x3e\\x26\\x03\\x7c\\x7d\\xc9\\x03\\xf8\\xc5\\x0f\\x3c\\xf3\\x6d\\xc8\\xbd\\x99\\x09\\x19\\xa5\\xa6\\x68\\xf3\\x2d\\xfe\\xdf\\x8c\\xde\\xf7\\xff\\x0c\\x3d\\x65\\x08\\xe8\\x75\\xfa\\x2a\\x8f\\x04\\xf7\\xe4\\xcd\\x13\\xc7\\x58\\x0f\\x8d\\x0c\\x0d\\x0e\\x0e\\xee\\x32\\xc4\\x28\\x5f\\x68\\x24\\xc6\\x60\\xa3\\x7b\\x4f\\x7c\\x02\\x7e\\x46\\x37\\x38\\x24\\x21\\x24\\x21\\xae\\x5b\\x1c\\x71\\x9f\\x72\\x1a\\x8c\\x13\\xfc\\xfc\\xf5\\xdf\\x57\\xea\\x86\\xef\\x2b\\x9a\\xbf\\x73\\x7e\\x62\\xe2\\xfc\\x9d\\x65\\x73\\x77\\x0f\\x73\\x7e\\x40\\xa2\\x16\\xfe\\xfe\\xf6\\x14\\x63\\xd6\\xb2\\x07\\xe2\\x1e\\x98\\x30\\xaa\\x5b\\xd7\\x91\\x99\\x33\\xe3\\x67\\x2e\\x9b\\x68\\xe4\\x7f\\xff\\xa5\\xc7\\xea\\xac\\x29\\x0f\\x6e\\xfe\\x63\\x49\\xb7\\xd2\\x3f\\x6e\\x7e\\x20\\x77\\x22\\x31\\x17\\x35\\x37\\xdf\\x7e\\x7d\\xd2\\x8e\\x47\\xb3\\x7a\\xc5\\x58\\x23\\x68\\x60\\xe4\\xf8\\xc4\\x7e\\x13\\x1f\\xdd\\x31\\x49\\xd4\\xf5\\x4e\\xa2\\x6c\\xc4\\xfb\\xfb\\x30\\x88\\xbc\\x4d\\xfa\\xd2\\x91\\xc4\\x07\\x52\\x01\\x5c\\x35\\xd2\\xf7\\xd3\\x91\\x6e\\x57\\x5e\\x23\\x7d\\xe7\\x07\\xce\\x1d\\xfc\\xac\\x5a\\x4f\\xc9\\x27\\xa2\\xdf\\xb9\\x48\\x07\\x80\\xc7\\xac\\xb1\\x9c\\x8b\\x77\\xae\\xe3\\x9b\\x44\\x3d\\xfd\\x4e\\xf2\\x90\\x5b\\xae\\x9b\\x58\\x4f\\x6f\\x62\\xdd\\xd9\\xee\\x6c\\xe0\\x0b\\x45\\x7d\\x0f\\x17\\xcf\\x95\\x17\\xc9\\xc7\\x72\\x5d\\xc0\\xd9\\xc0\\xcb\\x44\\xda\\x1b\\x78\\xff\\x5d\\xb9\\xb6\\xe3\\x6c\\xf0\\x7c\\xff\\x86\\x5c\\x9c\\x23\\xdb\\xdc\\x43\\xce\\x06\\x5e\\x23\\xf8\\x7f\\x90\\xf7\\x8b\\xdc\\xcf\\xc3\\x0d\\xfc\\xb0\\xc7\\xf3\\xf0\\x45\\xda\\x09\\x9f\\x87\\x1b\\xf8\\x1c\\x8f\\xe7\\xe1\\x8b\\xe4\\x1c\\xfa\\xcb\\x06\\x5e\\x22\\xf8\\x3f\\xc7\\xfb\\xef\\x88\\xfb\\x3b\\x34\\x7d\\x7e\\xf2\\xd2\\x47\\xe5\\x0f\\xf4\\xe2\\x0f\\xd6\\xf8\\x83\\xbc\\xf8\\x3b\\xcb\\xf5\\x33\\x67\\x83\\x58\\x3f\\x13\\x6b\\xa1\\xea\\x7d\\xe7\\x4d\\x71\\xff\\x0d\\x67\\x03\\xef\\x2b\\xf8\\xaf\\xe2\\xfd\\xff\\x91\\x73\\x98\\xce\\x06\\xfe\\xb9\\xe0\\xff\\x33\\xea\\x7f\\xbf\\xb8\\x1f\\xec\\x6c\\xe0\\xaf\\x0b\\xfe\\x6b\\x78\\x5f\\xae\\x7d\\x85\\x3b\\x33\\xf8\\x0a\\xdd\\xeb\\x34\\x8c\\x8c\\x92\\x36\\x87\\x6d\\xae\\x23\\xd8\\x57\\x1c\\x41\\x9b\\x0f\\x70\\x66\\xf2\\x32\\x75\\xac\\x45\\x46\\x23\\xcf\\x33\\xae\\xa3\\xc8\\x73\\x54\\x69\\x7d\\xc7\\xb0\\x97\\x98\\x17\\x18\\x2f\\xda\\x2f\\x13\\xdf\\xcd\\x1b\\x21\\xbe\\xc9\\x38\\x2c\\x25\\x5e\\x4f\\x38\\x23\\xf8\\xcd\\x3c\\x3f\\x22\\xcf\\x16\\xd1\\xe9\\x7a\\x66\\x80\\x8f\\x8f\\xa8\\xf2\\x3d\\x68\\x66\\x8f\\x1e\\x3d\\x8c\\x3d\\x06\\x0c\\x08\\x0e\\x0e\\x0e\\x1e\\x1c\\x12\\xe4\\xaf\\xef\\x13\\x41\\x42\\xba\\xe1\\x29\\xb1\\xc6\\x10\\xf7\\xd9\\x75\\xda\\xf7\\x18\\x8d\\x74\\xae\\xd3\\x41\\x66\\x4f\\x7f\\xa1\\xfc\\xfe\\xfb\\xcb\\x36\\x4c\\x77\\x0e\\x79\\xf1\\xc5\\x45\\x24\\x4e\\xbd\\x35\\x6a\\x5e\\x96\\x29\\x32\\xab\\x64\\x14\\x4b\\xdd\\x45\\x22\\xa7\\x2e\\x9d\\x98\\xbd\\x74\\x7a\\x14\\x4b\\x2d\\x5a\\xb7\\xce\\xb9\\xd6\\x69\\x22\\xfd\\x93\\xa7\\x25\\x0d\\x9b\\x96\\x1c\\x02\\xd4\\x75\\x07\\x40\\x7c\\x13\\xff\\xbf\\xea\\xd8\\xfd\\xd7\\x74\\x0c\\xbe\\xb7\\x8e\\x83\\xa8\\xcd\\x79\\x85\\x44\\xcc\\x6d\\x5c\\x94\\x9a\\xba\\xa8\\x71\\xae\\x73\\xd6\\xbb\\xef\\x2e\\x24\\xfd\\xd4\\x5b\\x59\\x4b\\xa7\\x0f\\x1d\\x3a\\xfd\\x91\\x09\\x7c\\xae\\xf3\\x5d\\x92\\x54\\xb2\\x31\\x7f\\xf6\\xe6\\xf9\\x23\\xf8\\xdc\\xa2\\xbf\\xfe\\xd5\\xc9\\xee\\xbc\\x40\\x22\\xa7\\x54\\xa7\\x5b\\x2b\\x27\\x9a\\x88\\x38\\xdf\\xf0\\xff\\x1f\\x7a\\x12\\xe8\\x28\\xd7\\x7a\\xa1\\x03\\x0c\\x4a\\x19\\xa8\\xd7\\xce\\x06\\x04\\x9d\\x8e\\xe7\\x01\\xe7\\xdd\\x55\\x2f\\xd7\\xc3\\x7d\\x34\\x60\\x90\\x8f\\xbe\\xb7\\xfc\\xfa\\x95\\x38\\x82\\xaf\\x5b\\x48\\x70\\x08\\xad\\x72\\x9e\\x5b\\xa4\\x28\\x6c\\xde\\x9d\\x8e\\x24\\x99\\xbe\\x7e\\x67\\x14\\x7d\\xbd\\x88\\x3e\\x59\\x74\\xe7\\x2f\\x40\\x5c\\x1f\\x03\\xa8\\xf5\\xfd\\x5e\\xd8\\x3d\\xef\\x82\\x6d\\xf4\\xc0\\x8e\\xa3\\xa3\\xee\\x3c\\x7c\\xfd\\x3a\\xcb\\xbd\\x63\\xbc\\x43\\x6e\\x3a\\xfd\\xc9\\xcd\\x22\\xf2\\xc5\\x5c\\xe7\\x53\\x42\\x6f\\xf5\\x99\\xf1\\x0d\\x9d\\x02\\x5d\\x21\\x31\\x25\\xae\\x33\\x01\\x1f\\x32\\x5e\\x47\\x98\\x9e\\x50\\x1f\\x46\\x6d\\xe0\\x23\\xfa\\x28\\x9b\\x2f\\x51\\x73\\xe0\\x27\\x4f\\x05\\xee\\xda\\x25\\xd8\\x7d\\xc0\\xa1\\xbf\\xbe\\xaf\\x26\\x4a\\x35\\xaa\\xf8\\x24\\x9f\\x38\\x22\\xb8\\xc7\\x4b\\x0b\\x2e\\x5e\\x5c\\x40\\x0c\\xce\\x2f\\xbd\\x0e\\x0a\\xe6\\x33\\x8b\\xbe\\xff\\xbe\\xc8\\x79\\xd2\\x7d\\x58\\x30\\x81\\x48\\x00\\x5e\\xac\\x07\\xe8\\x0a\\x31\\x29\\x51\\x9d\\x3b\\x12\\x06\\x7a\\x32\\x1e\\x18\\x65\\x55\\x9c\\x50\\x1d\\x21\\x7a\\x4a\\xd4\\xbe\\xa5\\x67\\x86\\x0f\\x01\\xe8\\x21\\xbe\\x28\\xa8\\xfe\\xeb\\xec\\xab\\x96\\xab\\x8f\\x97\\x68\\xfc\\xba\\xa0\\x73\\xf3\\xe2\\xdf\\xff\\x7e\\x31\\x31\\x39\\x3f\\x7c\\x8c\\x9c\\xda\\xec\\xec\\x4b\\xbb\\x6d\\xa1\\xc6\\xa7\\x9c\\x45\\xfc\\x72\\xd1\\x6b\\xaf\\x15\\xdd\\xc9\\x7c\\x94\\x6c\\x74\\x26\\xdd\\x59\\xe3\\x72\\xc1\\x41\\xe7\\x19\\xbe\\xd9\\xbd\\xfe\\x0e\\x83\\xe4\\xfa\\x3b\\xf1\\x81\\x8e\\x34\\xc5\\xf5\\x15\\x74\\xd6\\xd6\\xe1\\x45\\x63\\xff\\x0a\\xd7\\x99\\x9c\\x67\\xf8\\x2a\\xf7\\xfa\\x36\\x84\\xc1\\x36\\x67\\x77\\x91\\x62\\xa8\\xeb\\x2b\\xf1\\x44\\x2a\\x9e\\xe8\\xb5\\x04\\xd2\\xaf\\x6e\\x77\\x9e\\xe1\\x6b\\xdd\\x7e\\x5b\\x70\\x0f\\x77\\x7d\\x85\\xbe\\xfd\\x2b\\xf7\\x9c\\xb7\\x8a\\xeb\\xf6\\xe1\\x1a\\xa2\\x37\\xcf\\x7e\\xe7\\x19\\xae\\x08\\x9c\\xa1\\xc8\\x33\\xbd\\x1d\\xcf\\x06\\xe7\\x19\\xbe\\x5e\\xe0\\xfc\\x03\\x79\\x46\\xb6\\xe3\\x89\\x71\\x9e\\xe1\\xdb\\xdc\\xf3\\x96\\x82\\xc7\\xda\\x8e\\x27\\xd5\\x79\\x86\\x3f\\xea\\x9e\\xc3\\x14\\x3c\\x61\\xde\\x3c\\x40\\xdc\\x6b\\x4c\\xd0\\x51\\x9e\\x53\\xcf\\x38\\x19\\xdf\\x5a\\x3b\\x75\\xc4\\xa3\\xd6\\x77\\xf6\\xa8\\x99\\xcc\\xc8\\x42\\x12\\x44\\x35\\x89\\x23\\x71\\xec\\x91\\x6f\\x69\\x25\\x75\\xfe\\xf2\\x27\\xe7\\xec\\xa7\\xc9\\x0a\\xf2\\xc4\\x2a\\xe7\\xec\\x17\\x69\\xff\\x3b\\x5f\\xd1\\xfe\\x45\\x2c\\xe2\\xf6\\x37\\xac\\xd7\\xed\\x8f\\xe4\\xbb\\x76\\xb8\\x7e\\x05\\x41\\x10\\x91\\x32\\x38\\x40\\xc8\\x52\\x25\\xf4\\xcc\\xd0\\x13\\xc6\\x20\\x8f\\xaa\\xb5\\x43\\x95\\xd6\\x8b\\x64\\x06\\x77\\xd5\\xa4\\xe9\\xe4\\xe9\\x9b\\xaa\\x34\\xf1\\xc5\\xb6\\x38\\xb6\\xe9\\xda\\x12\\x17\\x7c\\xe9\\x4c\\x5f\\x46\\x4a\\xa3\\x86\\x92\\xe2\\x65\\xce\\x31\\x6f\\x73\\xa7\\x9d\\x6c\\x2d\\x62\\x97\\x6f\\x5f\\x58\\xb3\\x86\\xc5\\xdf\\x1e\\x2c\\xe4\\xcd\\xd7\\xce\\x55\\x1d\\x9a\\x62\\xea\\x40\\xb8\\x4e\\x7e\\xa7\\xcc\\x47\\xf3\\x3f\\x7a\\xa2\\xfa\\x1d\\x4a\\x5a\\x33\\xd8\\x39\\x38\\x48\\xd4\\x4a\\xa3\\xfc\\xc2\\x9a\\xb1\\x35\\x93\\x9b\\x5f\\x27\\x07\\x9f\\x71\\xae\\x70\\x3e\\xb6\\x9a\\x1c\\xfc\\xea\\x92\\xb3\\x7c\\x35\\xa9\\x20\\x0f\\xad\\x76\\x96\\xbd\\x48\\x4f\\xdf\\x19\\x4b\\x57\\xdc\\x59\\x46\\x4f\\x17\\xd1\\xb5\\x77\\xd6\\xd2\\xf2\\x3b\\xe5\\x40\\xdc\\x7b\\x07\\xfe\\xbb\\xec\\x9e\\xbf\\x51\\xf6\\x73\\xa7\\xc8\\xaa\\x35\\xce\\xed\\xce\\xed\\xcf\\x92\\x27\\x3f\\xff\\xb3\\xf3\\xd9\\x67\\xc9\\x44\\x92\\xfd\\xbc\\x73\\x4d\\x33\\xf9\\xd9\\xe9\\x4b\\x1c\\xce\\x38\\xf2\\x73\\x11\\xf9\\xcc\\x99\\x4e\\xce\\x38\\x07\\xba\\xf7\\x8d\\xf1\\x09\\x54\\x0f\\x2f\\xab\\x75\\xd7\\xf5\\x25\\x00\\x1f\\x2a\\xea\\xca\\x60\\x7c\\xe7\\x6b\\x9b\\xb3\\x1a\\xf7\\x3f\\xbb\\xe7\\x11\\x72\\xe8\\x11\\xbe\\x8e\\x75\\x85\\x31\\x64\\x95\\x6b\\x31\\xc0\\x94\\xb8\\x14\\x71\\xac\\x2e\\xa5\\xae\\x9f\\xe9\\x11\\x9d\\x02\\x0c\\x3a\\xc9\\xaf\\x91\\xca\\x6f\\xbb\\x25\\x67\\x00\\xa5\\x62\\xec\\x37\\x8a\\x65\\x0e\\x34\\xe2\\xb7\\x00\\x8d\\xc1\\x71\\xcc\\xe3\\x50\\x0a\\xba\\x66\\xd1\\xa2\\x67\\xa2\\x06\\x0d\\x1e\\x1a\\x3d\\x68\\x50\\x14\\x39\\xc6\\xee\\xdc\\xda\\x64\\x8c\\x89\\x31\\x0e\\x88\\x8a\\x92\\xf5\\x41\\xed\\x67\\x53\\xff\\xfa\\xd4\\xec\\xb3\\xb3\\x3b\\x25\\xff\\x04\\x01\\xbe\\xe2\\x24\\xdf\\x73\\x37\\x82\\x45\\xf4\\xfb\\x2b\\x8e\\x3d\\xf0\\x4b\\xed\\x9d\\x8f\\x7c\\xd6\\xf8\\x56\\x03\\x80\\x1f\\x50\\x3c\\xea\\x97\\x00\\xf8\\xce\\xb9\\xf3\\x11\\x80\\xdf\\x96\\x5f\\x6a\\x7f\\xae\\xf2\\x59\\x23\\x90\\x3c\\xfe\\x71\\xe0\\x0e\\x0c\\x39\\xdc\\x3f\\xb2\\x96\\x3b\\x60\\x14\\x77\\x40\\x33\\x77\\x80\\x89\\x3b\\xe0\\x49\\xee\\xa0\\x9c\\x3b\\xc8\\x23\\xdc\\x41\\xa6\\x71\\x07\\x9c\\xe6\\x0e\\x58\\xc8\\x1d\\xe4\\x31\\x7e\\x11\\xfe\\xc6\\x1d\\xb4\\x1f\\x77\\x90\\x1e\\xdc\\x01\\xdb\\xb8\\x03\\x3e\\xe5\\x0e\\x98\\xc3\\x1d\\x60\\xe3\\x0e\\xc8\\xe1\\x0e\\x78\\x9f\\x3b\\xe0\\x05\\xee\\x80\\x47\\x10\\x6f\\x2b\\x77\\xd0\\x1c\\xee\\xa0\\x41\\xdc\\x01\\xfb\\xb8\\x03\\x8e\\x70\\x07\\x9c\\xe2\\x0e\\xf8\\x8c\\x3b\\x60\\x24\\x77\\x80\\x9d\\x3b\\xe0\\x35\\x0f\\xfe\\xb7\\xb8\\x03\\x3e\\xe0\\x0e\\xa8\\xe5\\x0e\\xd8\\xce\\x1d\\xf0\\x07\\xee\\x80\\x0a\\xee\\x80\\x37\\x31\\xcd\\x7e\\xee\\x80\\x9d\\xdc\\x01\\x4b\\xb9\\x03\\x2e\\x73\\x07\\xcc\\xe3\\x0e\\xb8\\xc0\\x1d\\xf0\\x14\\x77\\xc0\\x2c\\xee\\x80\\x06\\xee\\x80\\x5c\\xee\\x80\\xa9\\xdc\\x01\\xf3\\xb9\\x03\\x32\\xb8\\x03\\x96\\x73\\x07\\x39\\xc7\\x1d\\x44\\xcd\\xab\\x2a\\xff\\x27\\xee\\x80\\xc3\\xdc\\x41\\xde\\xe0\\x0e\\x68\\xe2\\x0e\\xf8\\x23\\x62\\x36\\x08\\xdd\\x2f\\xc2\\x09\\x0f\\xd9\\x9f\\x73\\x07\\xbc\\x8e\\xb2\\xd4\\x70\\x1e\\xde\\xff\\x1d\\x77\\xc0\\x39\\x69\\x03\\x32\\x97\\x3b\\xe0\\x15\\xee\\x80\\x03\\xdc\\x01\\xe7\\x51\\xee\\x68\\xee\\x80\\x15\\xdc\\x01\\x99\\xdc\\x01\\xeb\\xb9\\x83\\x8c\\xe7\\x0e\\x1a\\x2f\\xa9\\x9a\\x6f\\xda\\x09\\xed\\xb1\\x12\\x6d\\x90\\xc0\\x1d\\xb4\\x3f\\x77\\x40\\x09\\x77\\x90\\x44\\xee\\x80\\xe9\\xdc\\x41\\xa2\\xb8\\x03\\x7e\\x44\\xcc\\x1c\\x69\\x73\\x52\\xc5\\x1d\\x50\\xcf\\x1d\\x24\\x83\\x3b\\xc8\\x24\\xee\\x20\\xaa\\xed\\x2e\\x72\\x07\\xfc\\x9d\\x3b\\x68\\x77\\xee\\x20\\x9f\\x71\\x07\\xd9\\xc0\\x1d\\xc4\\x88\\x69\\x55\\xac\\x38\\xee\\x80\\x18\\xee\\x80\\xab\\xdc\\x01\\xc3\\x50\\xef\\x72\\xee\\x80\\xdf\\x63\\x5e\\x86\\x72\\x07\\xa8\\xe5\\x5c\\xed\\x91\\xaf\\x81\\x98\\xdf\\x3a\\xa9\\x13\\x7c\\xc4\\x1d\\x30\\x1c\\xef\\x9d\\x46\\x9b\\xab\\x79\\xeb\\xcd\\x1d\\xe4\\xef\\xdc\\x01\\x3b\\xb8\\x03\\x16\\x71\\x07\\xd4\\xa0\\x1d\\x55\\x9d\\x4f\\xc8\\xb2\\x26\\x21\\xdc\\x41\\xb2\\xb8\\x83\\x58\\x65\\xbe\\xd5\\x32\\x20\\xbb\\xb8\\x03\\xd6\\x71\\x07\\xe9\\xc6\\x1d\\xe4\\x02\\x1d\\x72\\xfb\\x34\\x1d\\x72\\x67\\x22\\x1d\\x72\\xfb\\x21\\x3a\\xe4\\xce\\x64\\x3a\\xe4\\x97\\x5a\\x3a\\xe4\\xf6\\x1d\\xee\\xa0\\x66\\x99\\x96\\xaa\\xb6\\x78\\x15\\xed\\xaa\\x96\\x7d\\x16\\x77\\xc0\\x66\\xac\\x4f\\x8b\\xb9\\x03\\x26\\x72\\x07\\x3c\\xcc\\x1d\\x50\\x8a\\x36\\x3d\\xcb\\x1d\\x30\\x83\\x3b\\x60\\x19\\x77\\xc0\\x16\\x59\\x7f\\xe1\\x0c\\xe6\\xed\\x5d\\xac\\xef\\xaf\\x60\\x9d\\x51\\xe9\\xe3\\x98\\xff\\x33\\x78\\xbd\\x1e\\x71\\x54\\xbb\\xec\\xe5\\x0e\\x08\\xe5\\x0e\\x18\\xc0\\x1d\\x10\\x2d\\xf5\\x06\\x03\\xd6\\x39\\x0b\\xea\\xd0\\x8c\\x6d\\xc0\\x84\\xf4\\x20\\xda\\xbc\\x37\\xd6\\xef\\xf3\\xb2\\x5d\\x89\\x34\\x6a\\x5e\\x1a\\xd1\\x86\\x8f\\xa1\\xcd\\x55\\x5b\\x3e\\xc1\\x1d\\xf0\\x22\\x77\\xc0\\x1b\\xa8\\x57\\xb0\\x6c\\x3f\\x42\\x1f\\x07\\x77\\x40\\x2a\\x77\\xc0\\x06\\xbc\\x56\\x7f\\x0f\\x61\\xda\\x8f\\xd1\\xfe\\x75\\x98\\x0f\\xd5\\x46\\x7b\\xb8\\x03\\x5e\\xe6\\x0e\\x78\\x16\\xdb\\x56\\x11\\x77\\xb8\\xd4\\xfa\\xa0\\xda\\xbd\\x3f\\xe6\\x6d\\x00\\xe2\\xa8\\xed\\x6b\\x32\\x77\\x40\\x08\\xf2\\x1f\\xc5\\x7a\\xa2\\xd6\\xe3\\xe7\\x50\\xe7\\xc5\\xa8\\x5f\\x15\\xda\\x52\\x6d\\xa7\\xdf\\x61\\x99\\xab\\x6d\\x35\\x1e\\xdb\\xdc\\x58\\xd4\\x73\\x29\\xea\\x96\\x8d\\x6d\\x66\\x01\\xca\\xd8\\x8b\\x79\\x59\\x07\\x00\\xa7\\x01\\xe0\\x5f\\x00\\x64\\x09\\x00\\xf9\\x0b\\x80\\xfa\\x94\\x23\\xca\\xf5\\x32\\x96\\xd3\\xeb\\x58\\xe6\\x6a\\xdd\\x7b\\x87\\x3b\\xe0\\x0a\\x77\\xc0\\x9f\\xb0\\x1e\\xe6\\x62\\xf9\\xda\\xb1\\x7e\\x3e\\x8e\\x65\\xaf\\xea\\x77\\x3f\\xea\\x70\\x5e\\xe6\\x8f\\xf8\\x72\\x07\\x84\\x63\\x7e\\xff\\x8e\\x18\\x67\\x31\\x0f\\xb3\\xd0\\xa7\\xa8\\x75\\x64\\x3c\\xe2\\x3e\\x2c\\xed\\x25\\xea\\x43\\x12\\x77\\xc0\\x14\\xee\\x80\\xe3\\xd8\\x7e\\x7a\\xca\\xb6\\xaa\\xd9\\x65\\x87\\xf4\\x25\\xf0\\x20\\xf2\\x2d\\x68\\xf5\\xab\\xbf\\xf9\\x97\\x89\\xbe\\xf3\\x0c\\xb6\\x8f\\xef\\xb0\\x1d\\xff\\x83\\x3b\\x48\\x19\\x77\\x90\\x72\\xee\\x20\\xb9\\x68\\x77\\xd5\\x27\\x1f\\xe2\\x0e\\x7a\\x3f\\x77\\x10\\x2e\\x6d\\x41\\xb6\\xe1\\x4f\\xf5\\x2f\\xf7\\x71\\x07\\x51\\xed\\xfc\\x28\\x77\\x80\\xea\\xd7\\x97\\x70\\x07\\xa4\\x71\\x07\\xdc\\x40\\x1b\\x15\\x63\\xbb\\x49\\xe6\\x0e\\x48\\x41\\x5b\\x0e\\xc3\\x76\\xf2\\x36\\x86\\x0f\\x60\\x3b\\x36\\xa1\\x0f\\x79\\x86\\x3b\\x40\\x41\\xdf\\xfe\\x99\\xac\\x93\\x64\\x37\\xea\\x3e\\x93\\x3b\\xa0\\x93\\xb4\\x29\\xb1\\x70\\x07\\x19\\xc5\\x1d\\xa4\\x93\\x2c\\x6b\\x12\\xc7\\x1d\\xc4\\x2c\\xfb\\x0b\\x48\\x47\\xdf\\xb1\\x1c\\xcb\\x5f\\xc5\\xfa\\x33\\xd6\\x29\\xd5\\x9f\\x7c\\xed\\xd1\\x2f\\x5c\\x43\\xbf\\x7c\\x11\\xfb\\x12\\xb5\\x9e\\xbf\\x84\\xe1\\x02\\x2c\\xbb\\x42\\x2c\\xd3\\x1a\\x2c\\xb3\\x63\\xdc\\x41\\x66\\x72\\x07\\x09\\xf4\\x68\\x6f\\x6a\\xdb\\xf9\\x1b\\x77\\xc0\\xff\\xe0\\xf5\\x45\\xd9\\xf6\\x49\\x26\\x77\\x10\\xd5\\xcf\\x4e\\xe0\\x0e\\x92\\xc6\\x1d\\x64\\x30\\x77\\x90\\x6c\\xe9\\x9b\\xc9\\x48\\xbc\\x97\\x29\\x75\\x27\\x37\\xb8\\x83\\xdc\\xe1\\x0e\\xa2\\xf6\\x89\\x83\\xb8\\x83\\xac\\xe6\\x0e\\xa2\\xda\\xf0\\x69\\xee\\x80\\x16\\x99\\x27\\xd2\\x82\\xfd\\x60\\x25\\xd6\\x91\\x6a\\xac\\x2f\\x1f\\xa0\\xdd\\x54\\xfa\\x1e\\x7f\\x5d\\xb4\\xdd\\x62\\xf4\\x0d\\xdf\\x4a\\x7f\\x08\\x20\\xfa\\xd4\\x6f\\x5d\\x7f\\x92\\x3f\\xe8\\x81\\x75\\xf2\\x00\\xd6\\xed\\x7b\\xfd\\x1e\\xc1\\xfa\\xeb\\xf9\\xfb\\x43\\x9b\\x9f\\xbb\\x9f\\x6c\\xfb\\x6b\\x68\\xf3\\xcb\\x40\\x7b\\xdf\\xeb\\xb7\\x13\\x6d\\xef\\xf9\\xfb\\xbc\\xcd\\xcf\\xdd\\x27\\xb6\\xfd\\x9d\\x6f\\xf3\\xcb\\xc4\\x9f\\x1d\\xb1\\xdb\\xd2\\x47\\x50\\xde\\xbd\\x68\\xb3\\xae\\x40\\xe8\\xfc\\x16\\xea\\xf1\\x6b\\xd4\\x3d\\x8e\\xb8\\x17\\xdd\\x8e\\xf5\\xfb\\x0f\\x1e\\xf9\\xb8\\x17\\xad\\xc0\\x3e\\xed\\x4d\\xf4\\x51\\x9f\\x61\\x9c\\x46\\x75\\x05\\x48\\x0f\\x08\\xba\\xd3\\xa3\\x1c\\x3c\\xa9\\xce\\xc3\\x3f\\xb6\\xa5\\x17\\x70\\x3c\\xa1\\xd2\\x70\\xa4\\xd1\\xe8\\x6b\\x5e\\xf9\\x0d\\xd4\\x5d\\x77\\x66\\x61\\x5b\\x91\\xe1\\x9f\\x04\\x75\\xf7\\xcb\\xbf\\x95\\x4e\\xc5\\xbe\\x24\\x03\\xcb\\x0c\\xc7\\x52\\xa2\\x6f\\x6c\\x4b\\x87\\xe1\\x38\\xa2\\x5c\\xe6\\xc3\\xe5\\x94\\x3f\\xa1\\x43\\xfa\\x7f\\xf9\\x2d\\x47\\x5f\\xe0\\xf9\\xfb\\xba\\xcd\\xef\\xe2\\x5d\\xea\\xdf\\x0b\\xe8\\x07\\x3c\\x7f\\xb9\\x77\\xc1\\xf6\\xfc\\x39\\xee\\x22\\xeb\\x7d\\xf4\\x41\\x9e\\xbf\\xd3\\x77\\xd1\\xc1\\xd3\\x3f\\x7d\\x8e\\x3e\\xca\\xfd\\xbb\\xe8\\xf1\\xf3\\xd4\\xef\\x25\\x8f\\x5f\\x5b\\xdd\\x0b\\x3c\\x7c\\xd9\\xdd\\x7e\\xe1\\x98\\x1f\\xf4\\x6d\\xda\\xcf\\xae\\x8b\\x81\\x38\\x5d\\x0c\\x18\\x74\\x31\\x10\\xc4\\xbf\\x82\\x5e\\xba\\x18\\xd7\\xfb\\xfc\\x2b\\xe8\\x86\\xe3\\x1a\\xf7\\x78\\xfa\\x2d\\xcc\\xb3\\x7b\\x1c\\xfb\\xe6\\x5d\\xc6\\xce\\xb3\\xb0\\x4c\\xe7\\x23\\x4f\\x06\\x8e\\x0b\\xb6\\xe0\\x38\\xe8\\x5d\\xac\\x53\\x1f\\x61\\xdd\\xbc\\x88\\xbc\\x2b\\x3c\\xe2\\x7e\\x87\\x74\\x1a\\xca\\x7c\\x15\\xeb\\xe2\\x1f\\x3c\\xda\\xcc\\x07\\x28\\xbf\\xb7\\x87\\x7e\\xaf\\x22\\xff\\x41\\xd4\\x6b\\x3b\\xea\\x75\\x04\\x75\\x7b\\x04\\xf5\\x9b\\x88\\x32\\x9b\\xd0\\x6e\\xaf\\x78\\x8c\\x51\\x77\\x62\\xbd\\x5c\\x81\\x71\\x6f\\x60\\xfc\\xe7\\x1e\\xe3\\x76\\x07\\xf2\\xb8\\xeb\\x72\\x5b\\x8a\\x75\\x5b\\x3c\\xef\\xac\\xf5\\xdb\\x42\\xa9\\x6c\\xe3\\x6a\\x1f\\x2c\\xf4\\xca\\x6b\\xf5\\x4d\\xae\\xfd\\x1e\\x3a\\xbb\\x75\\x79\\x18\\x6d\\x16\\xef\\x31\\xf6\\xdb\\xea\\xe1\\xaf\\x32\\x70\\x9c\\xf2\\x07\\x8c\\x0f\\xc6\\x70\\x5b\\xbf\\xe7\\x6e\\x3f\\x6e\\xbf\\x35\\x0b\\xeb\\xdb\\x29\\x8f\\x74\\x6e\\xec\\x83\\x28\\xdb\\x4d\\xdd\\xbe\\xc3\\x3d\\x16\\x73\\xd3\\xc7\\x70\\x3c\\xd7\\xbb\\x75\\xac\\xee\\x45\\xcf\\xe3\\xf8\\xa5\\x11\\xc7\\x8b\\xee\\xb2\\x6d\\xc0\\xb1\\x6b\\xea\\x7f\\xf1\\xd3\\xd9\\x38\\x66\\xb9\\x57\\xfc\\x6f\\xa5\\xbf\\xe6\\xbf\\x7b\\xa2\\xae\\xf7\\x8a\\x6f\\xeb\\xa7\\xef\\xe5\\x57\\xd5\\x71\\xa5\\xf9\\xbf\\xc4\\xbb\\x9f\\x5d\\x7e\\x8d\\xfe\\x9f\\xfa\\x50\\x37\\xf5\\xf4\\xa1\\xad\\xf4\\x5b\\x68\\x10\\x3f\\xd9\\x46\\x1c\\xd8\\x0e\\xdc\\x7e\\xfc\\x21\\x8f\\x32\\x71\\x97\\x95\\x9b\\xbe\\x8a\\xf5\\xdd\\x5d\\x37\\xdc\\xe3\\x5b\\xd5\\x0e\\x8c\\x3b\\x5c\\x77\\xe4\\x0f\\x3a\\x72\\x87\\xeb\\x63\\xfe\\x15\\xf4\\xe4\\x5f\\x41\\xa4\\x5a\\x67\\xe0\\x15\\xd8\\x0e\\xaf\\xc0\\x7e\\xd8\\x00\\x31\\x90\\x0a\\x19\\x30\\x03\\xe6\\xc3\\x0a\\xd8\\xe2\\xfa\\x12\\x72\\xe4\\xb4\\x86\\xd7\\x84\\x41\\x22\\x34\\x91\\x34\\x72\\x85\\x9e\\xa6\\x5f\\xb2\\x20\\x96\\xc2\\x2a\\x59\\x3d\\x3b\\xc3\\x3e\\x64\\x3f\\xf2\\x40\\x5e\\xca\\x57\\xf1\\xcb\\xba\\x6c\\xdd\\xe3\\xba\\xaf\\xf5\\xd9\\xfa\\x1a\\xfd\\x6d\\x9f\\x26\\x9f\\x97\\x7d\\xde\\xf3\\xb9\\xea\\xdb\\xd1\\x37\\xcc\\x77\\x8d\\xdf\\x59\\xbf\\x1b\\xfe\\x33\\xfc\\x5f\\x0e\\x80\\x80\\xa8\\x80\\x69\\x01\\x67\\x03\\xae\\x06\\x76\\x0e\\x1c\\x1f\\xb8\\x20\\x70\\x6d\\xe0\\xdb\\x81\\x37\\x3a\\x64\\x77\\x58\\xdf\\x91\\x76\\xcc\\xea\\x78\\xae\\xe3\\x37\\x9d\\x06\\x74\\x4a\\xe9\\x54\\xd3\\x69\\x4f\\xa7\\xb7\\x3b\\xdd\\x0c\\xea\\x15\\x14\\x1b\\x34\\x2d\\x68\\x49\\xd0\\xfa\\xa0\\x43\\xc1\\x83\\x83\\xdf\\xeb\\x6c\\xea\\xfc\\x61\\x97\\xa4\\x2e\\xcb\\xba\\xc6\\x77\\x5d\\xd1\\xf5\\x6c\\xb7\\xce\\xdd\\xb2\\xba\\x3d\\xde\\xbd\\x57\\xf7\\x95\\xdd\\x3f\\xec\\x51\\xd4\\xe3\\xe7\\x9e\\xcb\\x7b\\xde\\xb8\\x6f\\xc4\\x7d\\xdb\\xee\\x3b\\x7b\\xdf\\xcd\\x5e\\x61\\xbd\\x8a\\x7a\\xad\\xed\\xf5\\x4d\\x2f\\x67\\xef\\x9c\\xde\\x8d\\xbd\\x3f\\xec\\x33\\xba\\xcf\\x8e\\xbe\\x61\\x7d\\xe7\\xf5\\x7d\\xae\\x5f\\x4a\\xbf\\xaa\\xfe\\x1d\\xfb\\x9f\\xe9\\xff\\x41\\xff\\x1f\\x0c\\x0b\\x0c\\x6b\\x0c\\x97\\x43\\x3a\\x86\\xac\\x19\\x40\\x07\\xf4\\x1a\\xb0\\x7e\\xc0\\xab\\x03\\xae\\x18\\xfb\\x18\\x93\\x8c\\x2b\\x8d\\xeb\\x8d\\x8a\\xf1\\x82\\xf1\\xfa\\xc0\\xd2\\x81\\x2d\\x03\\x2f\\x85\\x4e\\x0b\\xfd\\x22\\xac\\x70\\x50\\xaf\\x41\\xcf\\x0c\\x7a\\x6f\\xf0\\xf8\\xc1\\xa7\\x87\\x74\\x1d\\x32\\x62\\xc8\\xa1\\x70\\x53\\x78\\x6e\\xf8\\xaa\\xf0\\x0f\\x23\\xfa\\x45\\xbc\\x6c\\x7a\\x2f\\x72\\x5e\\xe4\\xb6\\x48\\x67\\xd4\\xaa\\xa8\\x6b\\x43\\xb3\\x86\\x7e\\x10\\x1d\\x14\\x5d\\x19\\xbd\\x36\\xfa\\x78\\xf4\\x95\\x18\\x1a\\x33\\x33\\x66\\x43\\xcc\\x67\\xb1\\x81\\xb1\\x59\\xb1\\x95\\xb1\\x6b\\x63\\xeb\\x63\\x2f\\xc7\\xde\\x8a\\xeb\\x17\\x17\\x1f\\x57\\x15\\xb7\\x24\\x6e\\x53\\xdc\\xb9\\xf8\\xe8\\xf8\\xec\\xf8\\xe5\\xf1\\x3b\\xe2\\x2f\\x25\\x24\\x26\\x2c\\x49\\xb8\\x94\\xf8\\xf8\\x30\\xfd\\xb0\\xe8\\x61\\x2d\\x49\\xd1\\x49\\xcf\\x0c\\xa7\\xc3\\xab\\x86\\x1f\\x19\\xf1\\xea\\xc8\\xa4\\x91\\x1b\\x46\\x7e\\x9f\\x9c\\x95\\xbc\\x2b\\xf9\\xb3\\x51\\xfd\\x46\\xd5\\x8d\\xba\\x32\\x3a\\xf7\\xfe\\x65\\x29\\xfa\\x94\\x95\\xa9\\xa6\\xd4\\xe7\\x52\\x7f\\x34\\x8f\\x35\\x3f\\x67\\x3e\\x63\\xe1\\x96\\xf1\\x96\\x35\\x69\\x81\\x69\\xb1\\x69\\xa5\\x69\\x87\\xd2\\x2e\\x5b\\xbb\\x5a\\x53\\xac\\x8b\\xac\\x67\\xd3\\x03\\xd3\\xb3\\xd2\\xcf\\x8c\\x29\\x1e\\x73\\x7c\\x6c\\xd4\\xd8\\xf5\\x63\\x5b\\xc6\\xde\\x1a\\x37\\x7a\\xdc\\xd9\\x71\\xdf\\x8c\\xef\\x3e\\x7e\\xf2\\xf8\\x65\\xe3\\xf7\\x8d\\x3f\\x3f\\xfe\\x6a\\x46\\x7a\\x46\\x65\\x46\\x53\\xc6\\xa5\\xcc\\xc0\\xcc\\x9c\\xcc\\x1d\\x99\\x57\\x26\\x8c\\x9d\\xf0\\x63\\x56\\x5a\\xd6\\xf1\\x89\\xbd\\x26\\x2e\\x9b\\xf8\\x5e\\x76\\xbf\\xec\\xcc\\xec\\x43\\x93\\xfc\\x27\\xcd\\x9a\\x3c\\x62\\x8a\\xef\\x94\\xd1\\x53\\x16\\x4c\\x79\\x39\\x87\\xe7\\xcc\\xcc\\x69\\x99\\xda\\x75\\xea\\xd2\\x69\\x9d\\xa7\\xed\\x9b\\xde\\x79\\x7a\\xd5\\xf4\\x0f\\x73\\x67\\xe6\\x5e\\xc9\\x6b\\x9c\\x91\\x32\\xe3\\xf6\\x03\\x6f\\xce\\x6c\\x79\\x30\\xe5\\xc1\\xf7\\x66\\xcd\\x9c\\xf5\\xe5\\x6c\\xc3\\xec\\x45\\xb3\\x4f\\xcf\\xfe\\x60\\xf6\\x35\\xdb\\x4c\\xdb\\xb5\\x39\\xc9\\x73\\x3e\\x99\\xe3\\x2c\\x88\\x2e\\xa8\\x29\\x38\\x53\\x08\\x85\\xe6\\xc2\\x45\\x85\\x47\\x0a\\x3f\\xb3\\xfb\\xdb\\xa7\\xd9\\x77\\x14\\xc5\\x16\\xdd\\x9e\\x1b\\x3f\\xb7\\x78\\xee\\x95\\xe2\\xf4\\xe2\\x15\\xc5\\xb7\\x4b\\xaa\\x4a\\x4e\\x97\\xdc\\x9e\\x37\\x76\\xde\\x86\\x79\\xce\\xf9\\x39\\xf3\\xcf\\xcd\\xff\\x64\\xfe\\x8d\\xd2\\xa4\\xd2\\xfa\\x32\\x53\\xd9\\xbe\\xf2\\x3e\\xe5\\x6b\\xca\\x9d\\x15\\x45\\x15\\xef\\x55\\x46\\x55\\xae\\xac\\xbc\\xf6\\x50\\xe6\\x43\\x9b\\x1e\\xfa\\xba\\x6a\\xe6\\x3d\\xff\\x17\\x57\\xd5\\x54\\xad\\xac\\xda\\x57\\x75\\xb1\\xea\\xfb\\xaa\\x5b\\xd5\\xbe\\xd5\\x5d\\xab\\xc7\\x56\\x57\\x55\\x2b\\xd5\\x5f\\x56\\x5f\\xaf\\xbe\\x5d\\x73\\xb1\\xe6\\x87\\xda\\x3e\\xb5\\x51\\xb5\\x35\\xb5\\xe7\\x17\\x24\\x2e\\x0c\\x5f\\x58\\xbf\\xc8\\xb0\\xa8\\x6a\\xd1\\xc5\\x45\\xb7\\x16\\x8f\\x5e\\x3c\\x6d\\x71\\xd5\\xe2\\x35\\x8b\\xf7\\x2d\\xa1\\x4b\\x7a\\x2e\\x19\\xb1\\x24\\x67\\x49\\xe5\\xc3\\xf4\\xe1\\xd1\\x0f\\x37\\x3d\\xfc\\xe1\\xc3\\xdf\\x2f\\xf5\\x5d\\x1a\\xbd\\x74\\xfc\\xd2\\xf1\\x8f\\x44\\x3f\\x52\\xf7\\xc8\\xc5\\x65\\x3d\\x97\\xe5\\x2e\\x7b\\x66\\x59\\xe3\\xb2\\xf3\\xcb\\x6e\\x3c\\x1a\\xf8\\x68\\xf2\\xa3\\x7b\\x1e\\xbd\\xb5\\x3c\\x79\\xf9\\xbc\\xe5\\x6b\\x97\\xff\\xf0\\x58\\xaf\\xc7\\xd2\\x1e\\x5b\\xf2\\xd8\\xbe\\xc7\\x5e\\x7b\\xec\\xc6\\x8a\\xee\\x2b\\x8a\\x56\\x9c\\xfb\\x5d\\xc7\\xdf\\xad\\xfa\\x5d\\xe3\\xef\\xbe\\x7e\\xdc\\xf7\\xf1\\xd1\\x8f\\x97\\x3f\\xbe\\xfe\\xf1\\x57\\x9f\\xa0\\x4f\\x74\\x7f\\x62\\xf2\\x13\\x47\\x9e\\xf8\\x60\\x65\\xd7\\x95\\x45\\x2b\\x97\\xad\\xfc\\xf1\\xc9\\xb4\\x27\\x57\\x3d\\x59\\xff\\xe4\\xf9\\x55\\x7d\\x56\\x65\\xaf\\x7a\\x6e\\xd5\\x67\\xab\\x7e\\x7c\\xea\\xc8\\x53\\xb7\\xea\\x02\\xeb\\xaa\\xea\\x36\\xd4\\x7d\\x51\\xf7\\xf3\\xd3\\x61\\x4f\\xcf\\x7c\\xfa\\xc7\\x67\\xfa\\x3c\\x63\\x7e\\x66\\xde\\x33\\x55\\xcf\\x2c\\x79\\xe6\\xd5\\xd5\\xfe\\xab\\xa7\\xad\\x5e\\xb9\\xfa\\xec\\xea\\xeb\\x6b\\xf4\\x6b\\x96\\xaf\\xb9\\xf2\\x6c\\xf4\\xb3\\x1f\\x3c\\xfb\\xc9\\xb3\\x57\\x9e\\xbd\\xf6\\x5c\\xf2\\x73\\x6b\\x9e\\xfb\\xe1\\xf9\\x81\\xcf\\x2f\\x7f\\x7e\\xed\\xf3\\x7b\\x9e\\x3f\\xf9\\xfc\\x9b\\xcf\\x7f\\xf2\\xfc\\xf5\\xe7\\x9d\\x6b\\x83\\xd6\\x0e\\x58\\x1b\\xbf\\x36\\x7d\\x6d\\xee\\xda\\x79\\x6b\\x97\\xae\\x5d\\xb3\\x76\\xc7\\xda\\x96\\xb5\\xe7\\xd6\\x5e\\x5a\\x7b\\x75\\xed\\xad\\x75\\x81\\xeb\\xfa\\xad\\x8b\\x5e\\x67\\x5e\\x97\\xb3\\xae\\x68\\xdd\\x82\\x75\\x2b\\xd7\\x6d\\x58\\xd7\\xb8\\xee\\xf4\\xba\\x37\\xd7\\x7d\\xb8\\xee\\x9b\\x75\\x37\\xd7\\xeb\\xd7\\x77\\x5f\\x1f\\xb6\\x3e\\x71\\xfd\\xd8\\xf5\\xb9\\xeb\\x8b\\xd7\\x2f\\x59\\x5f\\xb7\\x7e\\xcb\\xfa\\xa6\\xf5\\x2f\\xaf\\xbf\\xb0\\xfe\\xb3\\xf5\\xd7\\xd7\\xdf\\x7e\\x21\\xf0\\x85\\x3e\\x2f\\x98\\x5e\\x18\\xfd\\x42\\xd6\\x0b\\xf9\\x2f\\x54\\xbe\\xf0\\xde\\x86\\x45\\x1b\\xea\\x36\\xd4\\x6f\\x38\\xb2\\xe1\\xd5\\x0d\\xef\\x6d\\xf8\\x72\\xc3\\x0f\\x1b\\xe9\\xc6\\xae\\x1b\\xc3\\x36\\x26\\x6d\\x1c\\xbb\\x71\\xc6\\xc6\\x79\\x1b\\x97\\x6e\\x7c\\x66\\xe3\\xd5\\x4d\\xcf\\x6d\\xda\\xb5\\xa9\\x65\\xd3\\xb9\\x4d\\x1f\\x6e\\xfa\\x66\\xd3\\xcd\\xcd\\xbe\\x9b\\x7b\\x6e\\x0e\\xdf\\x3c\\x62\\x73\\xe6\\xe6\\x59\\x9b\\x2b\\x37\\xaf\\xd8\\xbc\\x7e\\xf3\\x9e\\xcd\\x27\\x37\\x9f\\xdf\\xd2\\x6f\\x4b\\xdd\\x96\\xfa\\x2d\\x47\\xb6\\x9c\\xdd\\xf2\\xc1\\x96\\xaf\\xb7\\xdc\\xdc\\xea\\xbb\\xb5\\xd7\\x56\\xd3\\xd6\\xd1\\x5b\\xb3\\xb7\\xce\\xd9\\x5a\\xb3\\x75\\xe5\\xd6\\x0d\\x5b\\x1b\\xb7\\x9e\\xd9\\x7a\\x61\\xeb\\x67\\x5b\\xaf\\x6e\\xbd\\x55\\xef\\x5f\\xdf\\xa7\\xde\\x54\\x3f\\xba\\x3e\\xab\\x3e\\xbf\\xbe\\xb2\\x7e\\x45\\xfd\\xfa\\xfa\\x7d\\xf5\\x27\\xeb\\xdf\\xac\\xff\\xa4\\xfe\\x7a\\xfd\\xed\\x86\\x8e\\x0d\\x86\\x86\\xd8\\x86\\xb4\\x86\\x69\\x0d\\x45\\x0d\\x8b\\x1a\\xea\\x1a\\x36\\x34\\xec\\x6b\\x68\\x69\\x38\\xd7\\x70\\xa9\\xe1\\x6a\\xc3\\xcf\\xdb\\xfc\\xb7\\x75\\xdf\\x36\\x78\\x5b\\xd2\\xb6\\xf1\\xdb\\x66\\x6c\\x2b\\xdd\\xb6\\x74\\xdb\\xad\\xed\\xb3\\xb6\\x57\\x6e\\x5f\\xbe\\x7d\\xed\\xf6\\x5d\\xdb\\x8f\\x6f\\x3f\\xbf\\xfd\\xf2\\xf6\\x6b\\xdb\\x6f\\xed\\x08\\xdc\\xd1\\x67\\x47\\xd4\\x8e\\xd1\\x3b\\xb2\\x77\\xe4\\xef\\xa8\\xda\\xf1\\xf8\\x8e\\x0d\\x3b\\xf6\\xed\\x38\\xb9\\xe3\\xfc\\x8e\\x4b\\x3b\\xbe\\xd9\\x71\\x73\\xa7\\x7e\\x67\\xcf\\x9d\\x83\\x77\\x26\\xed\\x1c\\xbb\\x33\\x77\\x67\\xf1\\xce\\x45\\x3b\\x57\\xed\\xdc\\xb4\\xb3\\x69\\xe7\\x99\\x9d\\x6f\\xef\\xfc\\x64\\xe7\\xf5\\x9d\\xb7\\x77\\x05\\xee\\xea\\xb3\\xcb\\xb4\\x2b\\x79\\x57\\xe6\\xae\\x99\\xbb\\x4a\\x77\\x5d\\xd8\\xf5\\xd9\\xae\\xeb\\xbb\\x6e\\xef\\x0e\\xdc\\xdd\\x67\\xb7\\x69\\x77\\xf2\\xee\\xcc\\xdd\\x8d\\xbb\\x4f\\xef\\x7e\\x73\\xf7\\xe5\\xdd\\x57\\x77\\xdf\\xda\\xe3\\xbf\\xa7\\xcf\\x1e\\xd3\\x9e\\xe4\\x3d\\xeb\\xf7\\xec\\xd9\\x73\\x72\\xcf\\x9b\\x7b\\x3e\\xd9\\x73\\x7d\\x8f\\x73\\x6f\\xd0\\xde\\x01\\x7b\\xe3\\xf7\\xa6\\xed\\xcd\\xd9\\x5b\\xb8\\x77\\xc1\\xde\\x95\\x7b\\x37\\xed\\x6d\\xdc\\x7b\\x7a\\xef\\x9b\\x7b\\x3f\\xd9\\x7b\\x6d\\xef\\xed\\x7d\\x81\\xfb\\xfa\\xed\\x8b\\xda\\x37\\x7a\\x5f\\xd6\\xbe\\xfc\\x7d\\xe7\\xf7\\x5d\\xde\\x77\\x75\\xdf\\xcf\\xfb\\xfd\\xf7\\xf7\\xda\\x1f\\xbe\\x3f\\x71\\xff\\xd8\\xfd\\x33\\xf6\\x97\\xee\\x5f\\xb4\\xff\\xf1\\xfd\\xcf\\xed\\xdf\\xb5\\xbf\\x69\\x7f\\xcb\\xfe\\x33\\xfb\\x5f\\xdb\\xff\\xf6\\xfe\\x0f\\xf6\\x7f\\xb2\\xff\\xca\\xfe\\x6b\\xfb\\x7f\\xd8\\x7f\\xab\\x91\\x36\\xfa\\x37\\x76\\x6e\\x1c\\xd8\\x98\\xd8\\x38\\xb6\\x71\\x46\\x63\\x69\\xe3\\xb2\\xc6\\xe7\\x1a\\x37\\x35\\xee\\x68\\x6c\\x6c\\x54\\x1a\\x4f\\x37\\xbe\\xdd\\xf8\\x59\\xe3\\xf7\\x07\\xe0\\x40\\xe7\\x03\\x03\\x0f\\x24\\x1e\\x38\\x74\\xe0\\xf8\\x81\\xf3\\x07\\x2e\\x1e\\xb8\\x74\\xe0\\xea\\x81\\x5b\\x4d\\xb4\\xc9\\xbf\\xa9\\x73\\x53\\xaf\\x26\\x53\\x53\\x7c\\x53\\x72\\x53\\x5a\\x53\\x66\\x53\\x4e\\xd3\\xcc\\xa6\\xc2\\xa6\\xd2\\xa6\\x9a\\xa6\\xa5\\x4d\\x8f\\x37\\xad\\x6f\\xaa\\x6f\\xda\\x73\\x10\\x0e\\xfa\\x1e\\x0c\\x3a\\x68\\x38\\x18\\x7b\\x70\\xc4\\x41\\xf3\\xc1\\xc9\\x07\\x67\\x1c\\x2c\\x3d\\xb8\\xf4\\xe0\\x9a\\x83\\xdb\\x0e\\x2a\\x07\\xcf\\x1e\\xfc\\xe0\\xe0\\x95\\x83\\x3f\\x1e\\xe2\\x87\\x02\\x0f\\x75\\x3d\\x64\\x38\\x14\\x7d\\x28\\xe9\\xd0\\xf8\\x43\\x33\\x0e\\xcd\\x3b\\xb4\\xe4\\xd0\\x33\\x87\\xb6\\x1d\\x52\\x0e\\x9d\\x3d\\xf4\\xc1\\xa1\\x4f\\x0e\\x5d\\x39\\xf4\\xe3\\x61\\x38\\xdc\\xf9\\xf0\\xc0\\xc3\\x89\\x87\\xc7\\x1e\\xce\\x3e\\x9c\\x7b\\x38\\xff\\x70\\xd5\\xe1\\x15\\x87\\xeb\\x0e\\xd7\\x1f\\x3e\\x74\\xf8\\xd5\\xc3\\x17\\x0f\\x5f\\x3a\\xfc\\xc5\\xe1\\x1b\\x47\\xe0\\x48\\xe7\\x23\\xbd\\x8e\\x84\\x1f\\x49\\x3e\\x92\\x75\\x24\\xff\\x48\\xe5\\x91\\x15\\x47\\xd6\\x1f\\xd9\\x77\\xe4\\xf4\\x91\\xb7\\x8f\\x7c\\x72\\xe4\\xca\\x91\\x6b\\x47\\x6e\\x1f\\x0d\\x3c\\xda\\xef\\x68\\xd4\\xd1\\x94\\xa3\\x99\\x47\\x67\\x1d\\x2d\\x3f\\xba\\xfc\\xe8\\xda\\xa3\\x7b\\x8e\\x9e\\x3c\\xfa\\xe6\\xd1\\x4f\\x8e\\x7e\\x73\\xf4\\x87\\xa3\\xb7\\x14\\xbd\\xd2\\x59\\xe9\\xa7\\x84\\x2b\\xc9\\x4a\\x96\\x92\\xaf\\x54\\x2a\\x2b\\x94\\xb5\\xca\\x1e\\xe5\\xb8\\x72\\x5e\\xb9\\xac\\x7c\\xdf\\x4c\\x9b\\xbb\\x36\\x0f\\x6c\\x4e\\x6c\\x4e\\x6f\\xce\\x6d\\x2e\\x6e\\x5e\\xd2\\x5c\\xd7\\xbc\\xa3\\xf9\\x78\\xf3\\xf9\\xe6\\xcb\\xcd\\xd7\\x9a\\x6f\\xb7\\x74\\x6c\\x31\\xb4\\xc4\\xb6\\x98\\x5b\\x72\\x5a\\x0a\\x5b\\x16\\xb4\\xac\\x6c\\xd9\\xd4\\xd2\\xd4\\x72\\xae\\xe5\\xb3\\x96\\xef\\x8f\\xc1\\xb1\\xce\\xc7\\x06\\x1e\\x4b\\x3c\\x36\\xf6\\xd8\\x8c\\x63\\xa5\\xc7\\x96\\x1d\\x5b\\x73\\x6c\\xc7\\x31\\xe5\\xd8\\x6b\\xc7\\x3e\\x38\\xf6\\xf5\\xb1\\x9b\\xc7\\x83\\x8e\\x87\\x1f\\x4f\\x3e\\x9e\\x75\\x3c\\xff\\x78\\xe5\\xf1\\x15\\xc7\\xd7\\x1f\\xdf\\x77\\xfc\\xf4\\xf1\\x73\\xc7\\x2f\\x1d\\xbf\\x72\\xfc\\xfb\\x13\\x70\\xa2\\xf3\\x89\\x81\\x27\\x12\\x4f\\x8c\\x3d\\x31\\xe3\\x44\\xe9\\x89\\x65\\x27\\x9e\\x3b\\x51\\x7f\\xe2\\xc8\\x89\\x33\\x27\\x2e\\x9c\\xf8\\xe2\\xc4\\x8d\\x93\\xf4\\x64\\xd7\\x93\\x61\\x27\\x7f\\x3c\\xd5\\xf1\\x94\\xe1\\x54\\xec\\xa9\\xd1\\xa7\\xc6\\x9f\\x9a\\x76\\x6a\\xce\\xa9\\xf2\\x53\\x4b\\x4e\\xad\\x3c\\xb5\\xf6\\xd4\\xb6\\x53\\x4d\\xa7\\x4e\\x9e\\x7a\\xed\\xd4\\xc5\\x53\\x9f\\x9c\\xba\\x7e\\xca\\x79\\x5a\\x7f\\x3a\\xf7\\xf4\\xa1\\x17\\xe1\\xc5\\xa8\\x17\\x67\\xbe\\x58\\xff\\xe2\\x27\\x2f\\xfe\\x78\\xa6\\xe3\\x19\\xc3\\x99\\xd8\\x33\\x69\\x67\\xa6\\x9d\\x29\\x3e\\xb3\\xe4\\x8c\\x72\\xe6\\xea\\x4b\\x61\\x2f\\x15\\xbe\\x54\\xfa\\xd2\\xb2\\x97\\xea\\xc4\\xff\\x53\\x40\\x00\\x78\\x30\\x6c\\x82\\xee\\xf0\\x34\\xe8\\x80\\x42\\x36\\xe4\\xc3\\x42\\x00\\xf8\\x3c\\x60\\x23\\x30\\xb1\\xee\\xd0\\x09\\xce\\xa8\\x21\\xee\\x07\\x00\\xb3\\xc4\\xd7\\x98\\xd5\\x30\\x81\\x01\\x30\\x0b\\xc3\\x14\\x3a\\xc2\\x72\\x0c\\x33\\x88\\x82\\x35\\x18\\xe6\\x30\\x00\\x5e\\xc6\\xb0\\x0e\\x72\\xe0\\x0b\\x0c\\xeb\\xc1\\x40\\x62\\x31\\xec\\x03\\xe3\\xc9\\x64\\x0c\\xfb\\x41\\x20\\xa9\\xc7\\x70\\x00\\x74\\x25\\x8d\\x18\\x0e\\x84\\x30\\xe2\\xc6\\xe9\\x00\\x33\\xc9\\x15\\x0c\\x77\\x84\\x1c\\x3a\\x1a\\xc3\\x41\\xd0\\x9d\\xae\\xc5\\x70\\x30\\xf8\\xd3\\x46\\xb0\\x40\\x05\\x54\\xc2\\x62\\xa8\\x82\\x12\\x98\\x0b\\xc5\\x50\\x03\\x06\\x88\\x85\\x68\\x88\\x81\\x04\\x30\\xc0\\x18\\xa8\\x80\\x0a\\x98\\x0b\\xa5\\x60\\x07\\x03\\x8c\\x83\\x72\\x28\\x80\\x28\\x30\\x40\\x2a\\x94\\x42\\x29\\x18\\x60\\xb2\\x96\\xaa\\x5a\\x5c\\xd9\\xa1\\x1a\\xec\\x50\\x05\\x0b\\xc0\\x0e\\x85\\x10\\x05\\x93\\xa1\\x02\\xe6\\x40\\x05\\xd4\\x40\\x05\\x18\\x60\\x02\\x54\\x40\\xb9\\x08\\x65\\x6a\\xe9\\xd4\\x34\\x73\\xa1\\x16\\x4a\\xc1\\x06\\x55\\x5e\\xf2\\x46\\xdc\\x23\\xf5\\x08\\x4d\\xbf\\x5f\\x47\\x9f\\x26\\xb4\\xa9\\x86\\x12\\x11\\xa7\\xe6\\x2c\\x0a\\xa2\\xc5\\xff\\xe1\\x90\\x04\\x09\\x30\\xd2\\x23\\xb7\\x6a\\xb8\\x06\\x6a\\xa0\\x08\\x6c\\x50\\x2b\\x30\\x8b\\xa1\\x04\\xca\\x85\\x45\\x06\\xc3\\x02\\x88\\x81\\x28\\x88\\x83\\x21\\x5e\\x52\\xdd\\x32\\x23\\xbd\\x72\\x74\\x77\\xad\\x4a\\x84\\x8d\\x6c\\x42\\x4a\\x15\\xd8\\xa0\\x10\\xec\\x50\\x26\\x72\\x3d\\x1f\\x0c\\x50\\x01\\x45\\x6d\\xec\\x1d\\xe5\\x75\\xe5\\x1d\\x53\\x00\\x15\\x50\\x06\\x16\\x28\\x16\\xe5\\x56\\x0d\\x35\\x50\\x02\\x36\\x91\\x43\\x29\\x5d\\xcd\\xb5\\x5a\\x26\\xaa\\x6c\\x55\\xb3\\x02\\xb0\\x43\\xb9\\x28\\x9b\\x42\\x30\\x40\\x2d\\x94\\x0b\\xe9\\x55\\x42\\x97\\x62\\x51\\xb6\\xa9\\x50\\x09\\x36\\x28\\xc0\\x2b\\xef\\x34\\x26\\x30\\xdc\\xc3\\x92\\xc5\\xc2\\x62\\x95\\x30\\x02\\x86\\xc2\\x50\\x58\\x28\\xfe\\x47\\x81\\xcd\\x03\\x2b\\x0a\\x2a\\xa0\\x0a\\xe6\\xc2\\x50\\x28\\xf5\\xc2\\xac\\x86\\xa1\\x90\\x09\\xe3\\xc0\\x02\\x56\\xc8\\x82\\x29\\x60\\x85\\x48\\xc4\\xbc\\xbb\\xfd\\x5a\\xed\\x8b\\x63\\x76\\xd7\\x3c\\x28\\x84\\xbb\\xfc\\xe3\\xc1\\x00\\x84\\x8a\\x9d\\x3b\\x3a\\xd0\\x83\\x0f\\xf8\\x82\\x1f\\xf8\\x43\\x00\\x04\\x42\\x07\\xe8\\x08\\x9d\\x20\\x08\\x82\\xa1\\x33\\x74\\x81\\xae\\xd0\\x0d\\xba\\x43\\x0f\\xe8\\x09\\xf7\\x41\\x2f\\xe8\\x0d\\x7d\\xa0\\x2f\\xf4\\x83\\xfe\\x60\\x80\\x10\\x18\\x00\\x46\\x18\\x08\\xa1\\x10\\x06\\x83\\x60\\x30\\x0c\\x81\\x70\\x88\\x00\\x13\\x44\\x42\\x14\\x0c\\x15\\xb5\\x25\\x16\\xe2\\x20\\x1e\\x12\\x20\\x11\\x86\\x41\\x12\\x0c\\x87\\x11\\x30\\x12\\x92\\x61\\x14\\x8c\\x86\\xfb\\x21\\x05\\x52\\xc1\\x0c\\x16\\x48\\x03\\x2b\\xa4\\xc3\\x18\\x18\\x0b\\xe3\\x60\\x3c\\x64\\x40\\x26\\x4c\\x80\\x2c\\x98\\x08\\xd9\\x30\\x09\\x26\\xc3\\x14\\xc8\\x81\\xa9\\x30\\x0d\\xa6\\x43\\x2e\\xe4\\xc1\\x0c\\x78\\x00\\x66\\xc2\\x83\\x30\\x0b\\x66\\x43\\x3e\\xd8\\xc4\\x49\\x4d\\x4f\\xc0\\x2b\\xb0\\x01\\xae\\xc2\\x4a\\x58\\x03\\x4f\\x43\\x03\\x1c\\x80\\x3d\\x50\\x47\\x18\\xfc\\x0e\\xd6\\xc1\\x0f\\xf0\\x2f\\x58\\x0d\\x1b\\x61\\x15\\xe1\\xf0\\x05\\xfc\\x13\\xb6\\x41\\x13\\xfc\\x04\\x3f\\xc2\\x4d\\xd8\\x05\\xcf\\xc1\\x0d\\x78\\x1e\\xbe\\x83\\xa7\\x60\\x07\\x5c\\x83\\xd3\\xb0\\x13\\xbe\\x27\\x3a\\xf8\\x33\\xd1\\x13\\x1f\\xe2\\x0b\\x57\\xe0\\xaf\\xc4\\x8f\\xf8\\x83\\x02\\xcd\\x24\\x00\\xf6\\x91\\x40\\xd2\\x81\\x74\\x24\\x9d\\x48\\x10\\x09\\x86\\xcb\\xf0\\x15\\x7c\\x0a\\x9f\\xc1\\xe7\\xf0\\x25\\x7c\\x0c\\x7f\\x21\\x9d\\x49\\x17\\xd2\\x95\\x74\\x23\\xdd\\x49\\x0f\\xd2\\x93\\xdc\\x47\\x7a\\x91\\xde\\xa4\\x0f\\xe9\\x4b\\xfa\\x91\\xfe\\xc4\\x40\\x42\\xc8\\x00\\x62\\x24\\x03\\x61\\x3b\\x09\\x25\\x61\\x64\\x10\\x19\\x4c\\x86\\x90\\x70\\x12\\x41\\x4c\\x24\\x92\\x44\\x91\\xa1\\xb0\\x95\\x44\\x93\\x18\\x12\\x4b\\xe2\\x48\\x3c\\x49\\x20\\x89\\x64\\x18\\x49\\x22\\xc3\\xc9\\x08\\x32\\x92\\x24\\x93\\x51\\x64\\x34\\xb9\\x9f\\xa4\\x90\\x54\\x62\\x26\\x16\\x92\\x46\\xac\\x24\\x9d\\x8c\\x21\\x63\\xc9\\x38\\x32\\x9e\\x64\\x90\\x4c\\x32\\x81\\x64\\x91\\x89\\x24\\x9b\\x4c\\x22\\x93\\xc9\\x14\\x92\\x43\\xa6\\x92\\x69\\x64\\x3a\\xc9\\x25\\x79\\x64\\x06\\x79\\x80\\xcc\\x24\\x0f\\x92\\x59\\x64\\x36\\xc9\\x27\\x36\\x32\\x87\\x14\\x90\\x42\\x62\\x27\\x45\\x64\\x2e\\x29\\x26\\x25\\x64\\x1e\\x99\\x4f\\x4a\\x49\\x19\\x29\\x27\\x15\\xa4\\x92\\x3c\\x44\\xaa\\x48\\x35\\xa9\\x21\\xb5\\x64\\x01\\x59\\x48\\x16\\x91\\xc5\\x64\\x09\\x79\\x98\\x2c\\x25\\x8f\\x90\\x65\\xe4\\x51\\xb2\\x9c\\x3c\\x46\\x56\\x90\\xdf\\x91\\xc7\\xc9\\x13\\x64\\x25\\x79\\x92\\xac\\x22\\x4f\\x91\\x3a\\xf2\\x34\\x79\\x86\\xac\\x26\\x6b\\xc8\\xb3\\xe4\\x39\\xf2\\x3c\\x59\\x4b\\xd6\\x91\\xf5\\xe4\\x05\\xb2\\x81\\x6c\\x24\\x9b\\xc8\\x66\\xb2\\x85\\x6c\\x25\\xf5\\xa4\\x81\\x6c\\x23\\xdb\\xc9\\x0e\\xb2\\x93\\xec\\x22\\xbb\\xc9\\x1e\\xb2\\x97\\xec\\x23\\xfb\\x49\\x23\\x39\\x40\\x9a\\xc8\\x41\\x72\\x88\\x1c\\x26\\x47\\xc8\\x51\\xa2\\x90\\x66\\xd2\\x42\\x8e\\x91\\xe3\\xe4\\x04\\x39\\x49\\x4e\\x91\\xd3\\xe4\\x45\\x72\\x86\\xbc\\x44\\x5e\\x26\\xaf\\x90\\x57\\xc9\\xef\\xc9\\x59\\xf2\\x07\\xf2\\x1a\\x79\\x9d\\x9c\\x23\\x6f\\x90\\xf3\\xe4\\x8f\\xe4\\x4d\\xf2\\x16\\x79\\x9b\\xbc\\x43\\x2e\\x10\\x87\\xd8\\x67\\xd7\\x02\\xc7\\xc8\\x7b\\x70\\x12\\x4e\\xc1\\x39\\xf2\\x3e\\x1c\\x87\\x13\\xf0\\x06\\xac\\x80\\xd7\\xe0\\x49\\xf2\\x01\\x1c\\x84\\xf3\\xf0\\x2a\\xfc\\x1e\\x5e\\x26\\x7f\\x22\\x1f\\x92\\x8f\\xc8\\x25\\xf2\\x67\\x72\\x99\\x7c\\x4c\\x3e\\x81\\x67\\xc8\\xa7\\xe4\\x33\\xf2\\x39\\xf9\\x82\\xfc\\x05\\x36\\xc1\\x16\\xd8\\x0c\\xff\\x80\\xbd\\xb0\\x16\\xea\\x61\\x3f\\x3c\\x0b\\xeb\\xe1\\x05\\x78\\x91\\x7c\\x49\\xbe\\x22\\x57\\xc8\\x5f\\xc9\\xd7\\xe4\\x6f\\xe4\\x1b\\xf2\\x3f\\xe4\\x2a\\xf9\\x3b\\xb9\\x46\\xbe\\x25\\xd7\\xc9\\x77\\xe4\\x7b\\xf2\\x0f\\x72\\x83\\xfc\\x93\\xfc\\x40\\xfe\\x45\\x7e\\x24\\x3f\\x91\\x9b\\xe4\\xdf\\xe4\\x67\\xf2\\x1f\\x72\\x8b\\xfc\\x42\\x6e\\x93\\x3b\\xc4\\x49\\x5c\\x14\\x28\\xa1\\x94\\x32\\xca\\xa9\\x8e\\xea\\xa9\\x0f\\xf5\\xa5\\x7e\\xd4\\x9f\\x06\\xd0\\x40\\xda\\x81\\x76\\xa4\\x9d\\x68\\x10\\x0d\\xa6\\x9d\\x69\\x17\\xda\\x95\\x76\\xa3\\xdd\\x69\\x0f\\xda\\x93\\xde\\x47\\x7b\\xd1\\xde\\xb4\\x0f\\xed\\x4b\\xfb\\xd1\\xfe\\xd4\\x40\\x43\\xe8\\x00\\x6a\\xa4\\x03\\x69\\x28\\x0d\\xa3\\x83\\xe8\\x60\\x3a\\x84\\x86\\xd3\\x08\\x6a\\xa2\\x91\\x34\\x8a\\x0e\\xa5\\xd1\\x34\\x06\\x0e\\xd1\\x58\\x1a\\x07\\x7f\\xa7\\xf1\\x34\\x81\\x26\\xc2\\x61\\x78\\x0b\\xfe\\x08\\x47\\x60\\x0e\\x14\\xd0\\x61\\x50\\x08\\xef\\x80\\x1d\\xde\\x84\\xb7\\xe1\\x5d\\xb8\\x00\\x0e\\xb8\\x08\\x45\\xf0\\x27\\x78\\x0f\\xde\\x87\\xa3\\x30\\x17\\x2e\\xc1\\x87\\xf0\\x11\\x14\\xc3\\xb7\\x30\\x0f\\x4a\\x60\\x3e\\x94\\x41\\x29\\x94\\xd3\\x24\\xa8\\x80\\x87\\xa0\\x52\\x78\\x31\\xd5\\xbf\\x2f\\x80\\x85\\xb0\\x08\\x96\\xc0\\x62\\x78\\x18\\x1e\\x81\\xa5\\xf0\\x28\\x2c\\x83\\xe5\\xf0\\x18\\x5c\\x87\\x33\\x74\\x38\\x1d\\x41\\x47\\xd2\\x64\\x3a\\x8a\\x8e\\x86\\x3b\\xe0\\xa4\\xf7\\xd3\\x14\\x9a\\x4a\\xcd\\xe0\\x22\\x40\\x2d\\x34\\x8d\\x5a\\x69\\x3a\\x1d\\x43\\xc7\\xd2\\x71\\x74\\x3c\\xcd\\xa0\\x99\\x74\\x02\\xcd\\xa2\\x13\\x69\\x36\\xfc\\x0c\\xff\\xa1\\x93\\xe8\\x64\\x3a\\x85\\xe6\\xd0\\xa9\\x74\\x1a\\x9d\\x4e\\x73\\x69\\x1e\\x9d\\x41\\x1f\\xa0\\x33\\xe9\\x83\\x74\\x16\\x9d\\x4d\\xf3\\xa9\\x8d\\xce\\xa1\\x05\\xb4\\x90\\xda\\x69\\x11\\x9d\\x4b\\x8b\\x69\\x09\\x9d\\x47\\xe7\\xd3\\x52\\x5a\\x46\\xcb\\x69\\x05\\xad\\xa4\\x0f\\xd1\\x2a\\x5a\\x4d\\x6b\\x68\\x2d\\x5d\\x40\\x17\\xd2\\x45\\x74\\x31\\x5d\\x42\\x1f\\xa6\\x4b\\xe9\\x23\\x74\\x19\\x7d\\x94\\x2e\\xa7\\x8f\\xd1\\x15\\xf0\\x0b\\xdc\\xa6\\xbf\\xa3\\x8f\\xc3\\xd7\\xf0\\x37\\xfa\\x04\\x5d\\x49\\x9f\\xa4\\xab\\xe8\\x53\\xb4\\x8e\\x3e\\x4d\\x9f\\xa1\\xab\\xe9\\x1a\\xfa\\x2c\\x7d\\x8e\\x3e\\x4f\\xd7\\xd2\\x75\\x74\\x3d\\x7d\\x81\\x6e\\xa0\\x1b\\xe9\\x26\\xba\\x99\\x6e\\xa1\\x5b\\xe1\\x25\\x5a\\x4f\\x1b\\xe8\\x36\\xba\\x1d\\xbe\\x81\\xff\\xa1\\x3b\\xe8\\x4e\\xba\\x8b\\xee\\xa6\\x7b\\xe8\\x5e\\xba\\x8f\\xee\\xa7\\x8d\\xf4\\x00\\x6d\\xa2\\x07\\xe9\\x21\\x7a\\x98\\x1e\\xa1\\x47\\xa9\\x42\\x9b\\x69\\x0b\\x3d\\x46\\x8f\\xd3\\x13\\xf4\\x24\\x3d\\x45\\x4f\\xd3\\x17\\xe9\\x19\\xfa\\x12\\x7d\\x99\\xbe\\x42\\x5f\\xa5\\xbf\\xa7\\x67\\xe9\\x1f\\xe8\\x6b\\xf4\\x75\\x7a\\x8e\\xbe\\x41\\xcf\\xd3\\x3f\\xd2\\x37\\xe9\\x5b\\xf4\\x6d\\xfa\\x0e\\xbd\\x40\\x1d\\xf4\\x22\\x7d\\x97\\xbe\\x47\\xdf\\xa7\\x1f\\xd0\\x3f\\xd1\\x0f\\xe9\\x47\\xf4\\x12\\xfd\\x33\\xbd\\x4c\\x3f\\xa6\\x9f\\xd0\\x4f\\xe9\\x67\\xf4\\x73\\xfa\\x05\\xfd\\x0b\\xfd\\x92\\x7e\\x45\\xaf\\xd0\\xbf\\xd2\\xaf\\xe9\\xdf\\xe8\\x37\\xf4\\x7f\\xe8\\x55\\xfa\\x77\\x7a\\x8d\\x7e\\x4b\\xaf\\xd3\\xef\\xe8\\xf7\\xf4\\x1f\\xf4\\x06\\xfd\\x27\\xfd\\x81\\xfe\\x8b\\xfe\\x48\\x7f\\xa2\\x37\\xe9\\xbf\\xe9\\xcf\\xf4\\x3f\\xf4\\x16\\xfd\\x85\\xde\\xa6\\x77\\xa8\\x93\\xba\\x18\\x30\\xc2\\x28\\x63\\x8c\\x33\\x1d\\xd3\\x33\\x1f\\xe6\\xcb\\xfc\\x98\\x3f\\x0b\\x60\\x81\\xac\\x03\\xeb\\xc8\\x3a\\xb1\\x20\\x16\\xcc\\x3a\\xb3\\x2e\\xac\\x2b\\xeb\\xc6\\xba\\xb3\\x1e\\xac\\x27\\xbb\\x8f\\xf5\\x62\\xbd\\x59\\x1f\\xd6\\x97\\xf5\\x63\\xfd\\x99\\x81\\x85\\xb0\\x01\\xcc\\xc8\\x06\\xb2\\x50\\x16\\xc6\\x06\\xb1\\xc1\\x6c\\x08\\x0b\\x67\\x11\\xcc\\xc4\\x22\\x59\\x14\\x1b\\xca\\xa2\\x59\\x0c\\x8b\\x65\\x71\\x2c\\x9e\\x25\\xb0\\x44\\x36\\x8c\\x25\\xb1\\xe1\\x6c\\x04\\x1b\\xc9\\x92\\xd9\\x28\\x36\\x9a\\xdd\\xcf\\x52\\x58\\x2a\\x33\\x33\\x0b\\x4b\\x63\\x56\\x96\\xce\\xc6\\xb0\\xb1\\x6c\\x1c\\x1b\\xcf\\x32\\x58\\x26\\x9b\\xc0\\xb2\\xd8\\x44\\x96\\xcd\\x26\\xb1\\xc9\\x6c\\x0a\\xcb\\x61\\x53\\xd9\\x34\\x36\\x9d\\xe5\\xb2\\x3c\\x36\\x83\\x3d\\xc0\\x66\\xb2\\x07\\xd9\\x2c\\x36\\x9b\\xe5\\x33\\x1b\\x9b\\xc3\\x0a\\x58\\x21\\xb3\\xb3\\x22\\x36\\x97\\x15\\xb3\\x12\\x36\\x8f\\xcd\\x67\\xa5\\xac\\x8c\\x95\\xb3\\x0a\\x56\\xc9\\x1e\\x62\\x55\\xac\\x9a\\xd5\\xb0\\x5a\\xb6\\x80\\x2d\\x64\\x8b\\xd8\\x62\\xb6\\x84\\x3d\\xcc\\x96\\xb2\\x47\\xd8\\x32\\xf6\\x28\\x5b\\xce\\x1e\\x63\\x2b\\xd8\\xef\\xd8\\xe3\\xec\\x09\\xb6\\x92\\x3d\\xc9\\x56\\xb1\\xa7\\x58\\x1d\\x7b\\x9a\\x3d\\xc3\\x56\\xb3\\x35\\xec\\x59\\xf6\\x1c\\x7b\\x9e\\xad\\x65\\xeb\\xd8\\x7a\\xf6\\x02\\xdb\\xc0\\x36\\xb2\\x4d\\x6c\\x33\\xdb\\xc2\\xb6\\xb2\\x7a\\xd6\\xc0\\xb6\\xb1\\xed\\x6c\\x07\\xdb\\xc9\\x76\\xb1\\xdd\\x6c\\x0f\\xdb\\xcb\\xf6\\xb1\\xfd\\xac\\x91\\x1d\\x60\\x4d\\xec\\x20\\x3b\\xc4\\x0e\\xb3\\x23\\xec\\x28\\x53\\x58\\x33\\x6b\\x61\\xc7\\xd8\\x71\\x76\\x82\\x9d\\x64\\xa7\\xd8\\x69\\xf6\\x22\\x3b\\xc3\\x5e\\x62\\x2f\\xb3\\x57\\xd8\\xab\\xec\\xf7\\xec\\x2c\\xfb\\x03\\x7b\\x8d\\xbd\\xce\\xce\\xb1\\x37\\xd8\\x79\\xf6\\x47\\xf6\\x26\\x7b\\x8b\\xbd\\xcd\\xde\\x61\\x17\\x98\\x83\\x5d\\x64\\xef\\xb2\\xf7\\xd8\\xfb\\xec\\x03\\xf6\\x27\\xf6\\x21\\xfb\\x88\\x5d\\x62\\x7f\\x66\\x97\\xd9\\xc7\\xec\\x13\\xf6\\x29\\xfb\\x8c\\x7d\\xce\\xbe\\x60\\x7f\\x61\\x5f\\xb2\\xaf\\xd8\\x15\\xf6\\x57\\xf6\\x35\\xfb\\x1b\\xfb\\x86\\xfd\\x0f\\xbb\\xca\\xfe\\xce\\xae\\xb1\\x6f\\xd9\\x75\\xf6\\x1d\\xfb\\x9e\\xfd\\x83\\xdd\\x60\\xff\\x64\\x3f\\xb0\\x7f\\xb1\\x1f\\xd9\\x4f\\xec\\x26\\xfb\\x37\\xfb\\x99\\xfd\\x87\\xdd\\x62\\xbf\\xb0\\xdb\\xec\\x0e\\x73\\x32\\x17\\x07\\x4e\\x38\\xe5\\x8c\\x73\\xae\\xe3\\x7a\\xee\\xc3\\x7d\\xb9\\x1f\\xf7\\xe7\\x01\\x3c\\x90\\x77\\xe0\\x1d\\x79\\x27\\x1e\\xc4\\x83\\x79\\x67\\xde\\x85\\x77\\xe5\\xdd\\x78\\x77\\xf8\\x37\\xef\\xc1\\x7b\\xf2\\xfb\\x80\\xf3\\xac\\xa9\\x99\\x99\\xfa\\x32\\x5b\\x41\\x55\\x45\\x79\\xc7\\x4a\\x7b\\x55\\x49\\x45\\x61\\x81\\xbd\\xbc\\xc6\\x5e\\x65\\x2f\\xe4\\x63\\xe7\\xd8\\xaa\\xe8\\xb8\\xf1\\xb4\\x64\\x5e\\xe0\\xfc\\xb9\\x55\\x76\\x7b\\x79\\xa9\\xad\\xbc\\xb0\\xa4\\x80\\x59\\xcb\\xe7\\x32\\x7b\\xf9\\x5c\\x5d\\x69\\x45\\xf9\\xdc\\x6a\\xdd\\xc4\\xe2\\x8a\\xaa\\x72\\x5d\\x85\\xf8\\x3b\\x55\\xfc\\xad\\x55\\xff\\xfa\\xd4\\x96\\x97\\x44\\xc7\\xc6\\x0d\\xd3\\x55\\x17\\x14\\x2f\\xb4\\xc9\\xab\\xf4\\x38\\xbf\\xb9\\x55\\xb6\\x05\\xf6\\x82\\x8a\\xb2\\x39\\x7e\\xb6\\x82\\xda\\x1a\\x19\\xaa\\x29\\x29\\x2d\\x14\\x21\\x5e\\x5c\\x51\\x31\\x5f\\xb0\\xc6\\x45\\xa7\\xfb\\x16\\x56\\xd4\\xcc\\xb1\\x97\\x56\\x2c\\xd4\\xd5\\x54\\x94\\x57\\x54\\x77\\x28\\x2c\\xb1\\x57\\xd9\\xab\\x4b\\xaa\\xc5\\x95\\x9f\\xad\\xbc\\xa2\\xc6\\x5e\\x6a\\x2f\\xb1\\xe9\\xc6\\xd8\\xca\\xca\\x6c\\xba\\x34\\x7b\\x69\\x8d\\x4d\\x97\\x53\\x6c\\xaf\\xb1\\xe9\\x33\\x6d\\x65\\x73\\x0a\\x6d\\x34\\xb7\\x84\\x66\\x97\\xe8\\xa6\\x94\\xcc\\x2d\\xb3\\xb1\\xec\\xe2\\x12\\x96\\x5d\\x5d\\xa2\\xb3\\x95\\x56\\x16\\xdb\\xf8\\x1c\\x7b\\x8d\\x4d\\x37\\x57\\xa4\\x2b\\x54\\xd3\\xf9\\xd8\\x2b\\xab\\x4b\\x4a\\x2b\\xca\\xf9\\x12\\x7b\\x8d\\x8d\\xa9\\x91\\x35\\x2a\\x10\\x2f\\xa9\\xa8\\xb1\\xe9\\x4b\\x25\\xda\\xa2\\x12\\x56\\x55\\x5c\\xa1\\xaf\\x56\\xe1\\x62\\x74\\x82\\xb0\\x1a\\x5b\\xad\\x4f\\xad\\x4c\\xca\\x2a\\x8b\\x4b\\x58\\x65\\x75\\x89\\xae\\xa2\\xcc\\x3e\\x57\\x66\\x37\\x2e\\x2d\\x06\\x69\\x2c\\xd2\\x44\\x41\\xe3\\xa3\\x63\\x91\\xc6\\x23\\x1d\\x8e\\x34\\x15\\xa9\\x19\\x69\\xba\\xa4\\x31\\x31\\x48\\x91\\x3f\\x06\\x71\\x62\\x86\\x21\\x4d\\x42\\x8a\\xe9\\x62\\xe3\\x90\\x22\\x5f\\x2c\\xf2\\xc5\\x22\\x5f\\x2c\\xca\\x8b\\x45\\x79\\xb1\\xee\\x74\\x16\\xa4\\x69\\x48\\xad\\x48\\x51\\x8f\\x38\\xd4\\x23\\x0e\\xf5\\x8f\\x43\\x39\\x71\\xa8\\x57\\x1c\\xca\\x8b\\x43\\x79\\x71\\x28\\x2f\\x0e\\xe5\\xc4\\xa1\\x9c\\x38\\x94\\x13\\x87\\x72\\xe2\\x10\\x3f\\x1e\\x71\\xe3\\x11\\x2f\\x1e\\xf1\\xe2\\x11\\x2f\\x1e\\xf1\\xe2\\x51\\xff\\x78\\xc4\\x8d\\x47\\xdc\\x78\\xc4\\x8d\\x47\\xdc\\x78\\xd4\\x3f\\x1e\\xf1\\x13\\x10\\x3f\\x01\\xf1\\x13\\x10\\x27\\x01\\x71\\x12\\x10\\x27\\x01\\xf9\\x13\\xa3\\x91\\x62\\xbe\\x13\\x31\\xbf\\x89\\x98\\x3e\\x31\\x01\\x29\\xea\\x99\\x88\\x7a\\x26\\xa2\\x9e\\x89\\x88\\x9f\\x88\\xf8\\x89\\x88\\x9f\\x88\\x7a\\x26\\xa2\\x9e\\x89\\xa8\\x67\\x22\\xca\\x1d\\x86\\x7a\\x0e\\x43\\x79\\xc3\\x50\\xde\\x30\\x94\\x37\\x0c\\xf1\\x87\\x21\\xfe\\x30\\xc4\\x1f\\x86\\xf8\\xc3\\x10\\x7f\\x18\\xe2\\x0f\\x43\\xfc\\x61\\x88\\x9f\\x84\\xf9\\x4a\\xc2\\x7c\\x25\\xa1\\xbc\\x24\\x94\\x97\\x84\\xf2\\x92\\x50\\x5e\\x12\\xe6\\x2f\\x09\\xe5\\x26\\xa1\\xdc\\x24\\xc4\\x4d\\x42\\xdc\\xe1\\x88\\x3b\\x1c\\x71\\x87\\x23\\xce\\x70\\xc4\\x19\\x8e\\x7a\\x0d\\x47\\xbd\\x52\\x91\\x3f\\x15\\xf9\\x53\\x91\\x3f\\x15\\xf9\\x53\\x51\\x6e\\x2a\\xda\\x35\\x15\\xe5\\xa7\\xa2\\x7c\\x33\\xf2\\x9b\\x91\\xdf\\x8c\\xf1\\x66\\x77\\x3c\\xda\\xc5\\x8c\\x72\\xcd\\x28\\xd7\\x82\\xf9\\xb4\\x60\\x7a\\x0b\\xe2\\x5b\\x30\\x7d\\x1a\\x52\\x2b\\xea\\x67\\x45\\xfd\\xd2\\x11\\x2f\\x5d\\xda\\x39\\x21\\x3a\\x1a\\x69\\x2c\\xd2\\x38\\xa4\\xf1\\x48\\x13\\x90\\x26\\x22\\x1d\\x86\\x34\\x09\\xe9\\x70\\xa4\\xa9\\x48\\xdd\\xb8\\x16\\xa4\\x69\\x48\\xad\\x48\\xa5\\x9d\\x13\\x62\\x84\\xdc\\xd8\\xe8\\x68\\x37\\x8d\\x41\\x1a\\x8b\\x34\\x0e\\x69\\x3c\\xd2\\x04\\xa4\\x89\\x48\\x87\\x21\\x4d\\x42\\x3a\\x1c\\x69\\x2a\\x52\\x73\\x87\\xda\\xf2\\x42\\x7b\\x55\\x75\\x41\\x45\\x95\\xbd\\x70\\x4e\\x69\\x87\\x87\\x6a\\x2b\\xd4\\x1e\\x61\\x81\\xbd\\xaa\\xda\\x5e\\x28\\x79\\x62\\x11\\x73\\x58\\xbc\\x5f\\x79\\x75\\xad\\xe8\\x38\\xaa\\x78\\x69\\x49\\x95\\x4d\\x5f\\x69\\xaf\\x56\\x7d\\xa7\\xb5\\xb6\\xaa\\x42\\xb0\\xc4\\xa0\\xf8\\x98\\x98\\x38\\xa4\\x89\\x7e\\xf6\\xea\\x9a\\x92\\x32\\x5b\\x8d\\xbd\\xd0\\xaf\\xa2\\xdc\\x6e\\x2f\\x99\\x5b\\x5c\\x53\\x1c\\x58\\x53\\x5c\\x65\\xc7\\x70\\x75\\x40\\x51\\xc9\\x02\\x77\\x38\\xb0\\xda\\xbe\\xc0\\x5e\\xee\\x8e\\x28\\xa8\\x28\\x2b\\xb3\\xd9\\x0a\\xd4\\x3e\\x4a\\x45\\x4b\\xb7\\xa6\\x0b\\xa3\\xa4\\xa7\\xa7\\x5b\\x90\\xa6\\xf9\\x2d\\xb1\\x57\\x55\\x44\\x55\\x97\\x15\\x54\\xfa\\xd4\\x2c\\xac\\x88\\xaa\\xae\\xad\\xec\\x52\\x50\\x52\\x55\\x50\\x5b\\x56\\x54\\x6a\\x5f\\xa4\\xf5\\x35\\x9d\\x5b\\xef\\xa9\\xbd\\x8e\\x7a\\xcb\\x83\\x4d\\xeb\\xa6\\x3c\\xee\\x69\\x1d\\x56\\xc7\\x39\\xaa\\x2d\\x34\\x96\\x60\\x0f\\x9d\\xaa\\x2a\\x6a\\x6c\\x35\\x76\\x7d\\xaa\\x10\\xaf\\x37\\x4b\\x62\\x91\\x24\\x4d\\x12\\xab\\x24\\xe9\\x92\\x8c\\x91\\x64\\xac\\x24\\xe3\\x24\\x19\\x2f\\x49\\x86\\x24\\x99\\x92\\x4c\\x90\\x24\\x4b\\x92\\x89\\x92\\x4c\\x92\\x64\\xb2\\x24\\x53\\x24\\xc9\\x91\\x64\\xaa\\x24\\xd3\\x24\\x99\\x2e\\x49\\xae\\x24\\x79\\x92\\xcc\\x10\\xa4\\x83\\xc8\\x8f\\xdb\\x0a\\xbe\\x15\\xe5\\x76\\x71\\xdb\\x57\\x58\\xaf\\xac\\xa0\\xd2\\x5f\\x14\\x8d\\x08\\xfa\\x15\\x55\\xd4\\x56\\x61\\xa8\\x64\\x01\\xf2\\x55\\x97\\x2c\\x92\\x7c\\xa2\\xa4\\x64\\x50\\x94\\x97\\x64\\x2c\\x2f\\x71\\x03\\xca\\x82\\xa9\\xad\\xf4\\x11\\x22\\x6a\\x2b\\xa5\\x21\\x3d\\x06\\x02\\x52\\x4e\\x6d\\xa5\\xaf\\x14\\xa3\\x06\\x84\\x94\\xda\\x4a\\x1f\\x21\\xa4\\xb6\\xd2\\x0f\\x65\\xd4\\x56\\xfa\\xa1\\x88\\xda\\x4a\\x5f\\x29\\xa1\\xb6\\xd2\\xb7\\xa0\\xaa\\xa2\\xba\\x7a\\x8e\\xad\\xca\\xaf\\xaa\\xa4\\x7c\\xae\\xc0\\xf5\\x2b\\xb4\\x55\\x97\\xd8\\x2a\\x16\\x95\\xd8\\xa4\\x30\\xad\\xfc\\x03\\x0a\\x16\\x57\\x95\\x94\\x96\\x96\\x14\\xd4\\x94\\x14\\x04\\xb9\\xc3\\xaa\\x0d\\x4a\\xed\\x45\\x35\\x81\\x9e\\x37\\x74\\x73\\xa3\\x6c\\xa5\\x35\\x1d\\x4b\\x6d\\x55\\x73\\xed\\x55\\xa2\\x1a\\xaa\\x37\\x4b\\xd4\\x9b\\xba\\x52\\xf5\\xaf\\xb0\\x58\\x69\\x79\\x6d\\x19\\x1a\\x40\\x0d\\xea\\xb3\\x65\\x0d\\x2c\\x28\\x96\\x8c\\x93\\xc5\\xdf\\x0c\\xf5\\x2f\\x2f\\x89\\x2a\\xa9\\xe1\\xa5\\x51\\x25\\x35\\xc2\\x0e\\xb6\\xd2\\x1a\\xbd\\xad\\x46\\x25\\x1d\\x6c\\x65\\x95\\xf6\\xaa\\x6a\\x5b\\x79\\xa1\\x7a\\xe5\\x3f\\xc6\\x5e\\x55\\x66\\x2b\\x2f\\x9c\\x53\\x5a\\xdd\\xa9\\x35\\x28\\x0b\\xcc\\xad\\x9e\\xc8\\x92\\x70\\x0a\\xd1\\xa9\\x69\\xfa\\xb4\\x82\\xaa\\x0a\\x5b\\x0d\\x2f\\x9e\\x63\\xab\\xe2\\x39\\xea\\x9f\\x9a\\x39\\xb6\\x2a\\xff\\x54\\xcd\\x16\\xfe\\x36\\x2d\\xe8\\x93\\x2a\\x87\\x7c\\x3e\\x36\\x49\\xf5\\xa9\\x02\\x4a\\x6f\\x93\\x88\\xa9\\x15\\x73\\x2b\\xca\\xed\\xf3\\x7d\\x6c\\x92\\x06\\x58\\x5a\\x5b\\x41\\x40\\x41\\x6b\\x58\\x48\\x8e\\x41\\xf7\\x15\\x13\\x6d\\xd6\\xa7\\x15\\xd8\\x54\\xb0\\x42\\x41\\x7c\\xac\\x28\\xc3\\x8e\\x32\\xac\\x52\\x86\\x5d\\x10\\x7f\\x6b\\x61\\x45\\x8d\\x6c\\x34\\xfe\\x76\\x2d\\xe8\\x63\\x45\\xc9\\x76\\x49\\xf5\\x56\\x89\\x68\\x17\\x24\\x60\\x8c\\x87\\x1e\\x73\\xdb\\xea\\x11\\x1b\\x8d\\x34\\x26\\x70\\x8c\\x47\\x93\\x0c\\x9c\\xeb\\x71\\x11\\x30\\xd6\\x03\\xa1\\xb8\\x35\\xac\\x1f\\x27\\x2a\\x86\\xbe\\x44\\x10\\x9f\\x71\\xa8\\x79\\x09\\x6a\\x3e\\x4e\\x6a\\x5e\\x22\\xad\\x33\\x0e\\x75\\x2c\\x91\\xd4\\x7f\\x9c\\xa6\\x7e\\xc0\\x78\\x0f\\xf8\\x79\\xad\\xe1\\xc0\\x0c\\x4f\\x85\\xe6\\x7b\\x5c\\xe8\\x33\\x45\\x79\\xe8\\x4b\\x05\\x09\\xcc\\xf4\\xe4\\x2b\\xf5\\xe2\\x93\\x86\\x28\\x15\\x84\\x67\\x16\\x56\\xd4\\xf0\\xd2\\xc2\\x8a\\x1a\\x7d\\x96\\x4c\\x5f\\x2e\\xd3\\x67\\x79\\xa6\\x2f\\xf7\\x4c\\x9f\\x25\\xd3\\x97\\x4b\\x43\\x96\\xdb\\x2a\\x2b\\xaa\\x6b\\xaa\\x2a\\x2a\\x8b\\xed\\x3e\\x13\\x31\\xb3\\x15\\x98\\xd9\\x89\\x32\\xb3\\x15\\x82\\x74\\x98\\x58\\x5c\\x5b\\x3e\\xd7\\x56\\x55\\x5b\\x56\\x6a\\xab\\xad\\xe9\\x50\\xe1\\x79\\xa5\\x9f\\x2c\\x65\\x57\\x49\\xd9\\x93\\x3d\\x65\\x57\\x79\\xca\\x9e\\x2c\\x65\\x57\\x49\\x32\\x45\\xa6\\xaa\\x16\\x24\\x60\\x8a\\x87\\xc5\\xaa\\xdb\\x14\\x69\\x2c\\x8e\\x6c\\x63\\x63\\x86\\x23\\x4d\\x45\\x2a\\x7b\\xca\\x98\\xc4\\xd8\\x40\\xa4\\xb2\\xb5\\xc9\\x8b\\x38\\x7d\\x8e\\x94\\x54\\x23\\xc9\\x54\\x59\\xb6\\xb5\\xb2\\x6c\\xa7\\x62\\x76\\x6b\\x31\\xbb\\x53\\x65\\x76\\x6b\\x05\\xd1\\x4d\\x55\\x9b\\x88\\xae\\x56\\xfd\\xdb\\x61\\xaa\\x57\\xd6\\x6b\\x3d\\xaf\\x7c\\xa6\\x62\\x1d\\xa8\\xc5\\x16\\x32\\xdd\\x23\\x1b\\x0b\\x3d\\xc2\\x79\\x1e\\xe1\\xc5\\x1e\\xf5\\x6d\\x86\\x34\\xc2\\x12\\xd9\\x30\\x67\\xb4\\xb6\\x85\\x25\\xad\\x6d\\x21\\xd5\\x2a\\xdb\\xaa\\x4d\\xba\\xc8\\x80\\x89\\xd5\\xa5\\xb6\\xea\\x62\\x19\\xae\\xf0\\x08\\xcb\\x76\\x2f\\x5d\\xac\\xb5\\xa6\\x58\\x7a\\x5d\\xd5\\x01\\x88\\x50\\x40\\xaa\\xe8\\xa9\\x30\\x2c\\x52\\x88\\x70\\x50\\x6a\\xab\\x3a\\x18\\x29\\x0c\\x24\\xc2\\x1d\\x53\\xdd\\x8f\\x5b\\xd2\\x9d\\x0b\\x27\\x22\\x82\\x9d\\x5a\\xfd\\x89\\xf4\\x45\\x96\\x02\\x7b\\x61\\x49\\x69\\xa9\\x4d\\x62\\x58\\x3d\\x84\\x59\\x3d\\x84\\x59\\xdb\\x08\\xeb\\x68\\xf5\\x12\\x10\\x30\\xce\\x23\\xdd\\x38\\x8f\\x74\\xe3\\xda\\xa6\\x1b\\xe7\\x9d\\x2e\\xab\\x55\\xe7\\x80\\x89\\x1e\\x18\\x13\\x3d\\x30\\x26\\xb6\\xcd\\xe8\\x44\\x8f\\x8c\\x4e\\xf4\\xc6\\x9b\\xea\\x81\\x31\\xd5\\x03\\x63\\x6a\\x5b\\x3d\\xa6\\x7a\\xa7\\xcb\\x6b\\xe5\\x0d\\x44\\xdf\\x8a\\x46\\x15\\xf5\\x0a\\x23\\x64\\x65\\x91\\x11\\x16\\x0f\\x74\\x4b\\x1b\\xf4\\x40\\x74\\xac\\xc8\\x29\\xaa\\xb1\\x0c\\xa7\\xb5\\x86\\x03\\xad\\x9e\\x72\\xac\\xad\\x72\\x3a\\xb5\\xba\\x56\\x64\\xf4\\x94\\x6b\\x6d\\x45\\x08\\x1a\\xd3\\xd6\\x32\\x63\\x3c\\xb4\\x45\\xa7\\x2a\\x2e\\x82\\x3d\\x3d\\xaa\\x4c\\x3b\\xb6\\x6d\\xda\\x71\\xad\\x56\\x0d\\x1c\\xe7\\xa9\\xda\\x38\\x0f\\xd0\\x71\\x1e\\xaa\\x74\\x1a\\xe7\\xad\\x67\\xd0\\xf8\\x36\\x90\\xc1\\x19\\x6d\\xa5\\x06\\x64\\xb6\\x5a\\x2d\\x38\\xb3\\x7d\\x6c\\x6b\\xde\\xfc\\x54\\x17\\x89\\x75\\xc4\\x23\\x4d\\x56\\xbb\\x34\\x59\\x1e\\x16\\x9d\\xe8\\xa9\\xf6\\xc4\\x56\\xb5\\x3b\\x7b\\x79\\x41\\x19\\x3d\\xd9\\x03\\x75\\x72\\x3b\\xd4\\xc9\\x1e\\x65\\x36\\xc5\\xa3\\xa4\\xa7\\xb4\\xc9\\x62\\x87\\x29\\x5e\\xcd\\x67\\x4a\\x6b\\xb2\\xe0\\x9c\\x76\\xa0\\x39\\x1e\\xa0\\x53\\x3d\\xac\\x3d\\xd5\\x53\\xed\\xa9\\xad\\x6a\\xfb\\x4f\\xd5\\x9a\\x6d\\xe7\\xa9\\xed\\x72\\x10\\x38\\xd5\\xa3\\x2c\\x82\\xa6\\xb7\\x51\\x2c\\x28\\xaf\\x6d\\x8d\\xcf\\xf3\\xae\\xf1\\x33\\x5a\\x73\\xd5\\x69\\x86\\x77\\x41\\x06\\xcc\\x68\\x55\\xd4\\x3f\\xb5\\xb4\\xb2\\xd8\\x26\\x26\\x6d\\x02\\xad\\x72\\xae\\x44\\x5c\\xf8\\x5a\\x6b\\xe4\\x5d\\xbf\\x71\\x15\\x18\\x0a\\x9c\\x58\\x56\\xa2\\xe6\\x43\\x5e\\x4c\\xf5\\x60\\xf6\\x9f\\x58\\x66\\x9f\\x2b\\x99\\x82\\x4b\\x2a\\x6a\\x6c\\x5e\\x73\\x41\\x3a\\x21\\x81\\x9b\\xed\\x35\\x36\\x1f\\x94\\xc0\\x67\\xd8\\x6b\\x6c\\xcc\\x5a\\x63\\xe3\\x2a\\xb8\\x2e\\xc3\\x56\\x59\\x69\\xa3\\x13\\x6a\\x69\\x56\\xad\\x0f\\xca\\x60\\x93\\x8b\\x2b\\x58\\x8e\\xad\\xd6\\x07\\xc5\\x30\\x4b\\x71\\x49\\xe0\\x38\\x0f\\xe8\\x4e\\x18\\xe1\\xbe\\xf6\\xb7\\xb5\\xe6\\xc3\\xee\\x99\\x0f\\xbb\\x3b\\x1f\\x25\\xee\\x7c\\x74\\xad\\xf5\\x4e\\x2a\\xb5\\x9c\\xaf\\x2a\\xe1\\x53\\x21\\xc5\\x8b\\x9e\\x2a\\xce\\x6c\\xa1\\xe5\\xb5\\xac\\xa0\\xb8\\x24\\xd0\\x33\\x53\\x9d\\xda\\x24\\x0f\\xac\\xf0\\x34\\x4b\\xad\\xa7\\x59\\x2a\\x34\\xb3\\xc8\\x27\\xd3\\x68\\x7c\\x52\\xc5\\x27\\xd1\\x78\\x7c\\x02\\x8d\\x8f\\x76\\xcf\\x3c\\xe1\\x93\\x6e\\xb4\\x7b\\xc6\\xc8\\x3d\\xe3\\x84\\x4f\\xc8\\xf8\\xa4\\x19\\x1f\\x83\\x4f\\xbe\\x31\\x38\\x33\\x10\\x83\\x78\\x31\\x88\\x87\\xfd\\x71\\x7c\\x0c\\xa6\\x8b\\xc1\\x27\\xeb\\x18\\x77\\x7a\\x9c\\x11\\xc0\\x21\\x59\\x7c\\x2c\\xea\\x15\\x8b\\x78\\xb1\\xf8\\xe4\\x1d\\x8b\\x78\\x71\\xc8\\x17\\xe7\\xbe\\x46\\xfc\\x38\\xf7\\x0c\\x0e\\xc6\\xc7\\x23\\x4e\\x3c\\xea\\x13\\x8f\\xfc\\x09\\x78\\x3f\\x01\\xef\\x27\\xb8\\xef\\x63\\xbe\\x13\\x30\\xdf\\x09\\x98\\xef\\x04\\xd4\\x3b\\xc1\\xaa\\x9f\\x2e\\x1c\\xbe\\x7e\\xa1\\x24\\xd3\\x65\\xb7\\xbc\\x50\\x3e\\x3b\\x4c\\x77\\x17\\x81\\xdf\\x42\\x77\\x48\\x9f\\x27\\x19\\x17\\x4b\\x52\\x56\\x52\\x2e\\xc6\\x32\\xf6\\x82\\x8a\\xf2\\x42\\x3f\\xfb\\xa2\\x82\\x52\\x5b\\x59\\xe1\\x9c\\x52\\x39\\x10\\x49\\x97\\x5a\\xc7\\xca\\xf9\\x87\\x18\\xab\\xcc\\x4d\\x8c\\x55\\xce\\x77\\xc5\\x58\\xe5\\xf3\\x7b\\x8c\\x55\\x96\\x5a\\x4c\\xba\\x7b\\xde\\x0a\\xe7\\x15\\xe2\\xf1\\xf9\\x3f\\x3e\\x01\\xaf\\x13\\xdc\\xf3\\x39\\x78\\x3d\\x0c\\x73\\x3d\\x0c\\x73\\x39\\x0c\\x73\\x39\\x1c\\x73\\x39\\x1c\\xad\\x98\\x8a\\xa5\\x9c\\x8a\\xf3\\x43\\xa9\\x68\\xd5\\x54\\x2c\\x25\\x0b\\xe2\\x59\\x10\\xcf\\x82\\xa5\\x64\\xc1\\xf8\\x34\\x8c\\xc7\\xf9\\xcc\\x78\\x9c\\xcf\\x8c\\x4f\\x43\\x6b\\xa7\\x61\\x69\\xa6\\xa1\\xd5\\xdd\\xf3\\x9c\\x69\\xa8\\x4f\\x1a\\xca\\x4f\\x43\\x7d\\xd2\\x50\\x8f\\x34\\x2c\\x85\\x34\\xcc\\x57\\x1a\\xea\\x95\\x86\\x72\\xad\\x28\\xc7\\x8a\\x72\\xac\\x28\\xc7\\x8a\\x72\\xac\\x28\\xc7\\x8a\\x72\\xac\\xee\\x79\\x1b\\x94\\x63\\x45\\xb9\\x56\\x94\\x67\\x45\\x79\\x56\\x94\\x67\\x45\\x79\\x56\\x94\\x87\\xe5\\x15\\x9f\\xee\\x9e\\xef\\x41\\xf9\\xe9\\x28\\x3f\\x1d\\xe5\\xa7\\xa3\\xfc\\x74\\x94\\x97\\x8e\\xf2\\xd2\\x11\\x3f\\xdd\\x3d\\x6f\\x23\\x71\\x12\\xb0\\x15\\x25\\xc8\\x56\\x14\\x63\\x4d\\xc5\\x72\\x97\\xf3\\x5e\\x31\\xd6\\xd4\\x58\\xa4\\xee\\xf8\\x78\\xa4\\x09\\x48\\x13\\x91\\x0e\\x43\\x9a\\x84\\x74\\x38\\xd2\\x54\\xa4\\x66\\xa4\\x58\\xdf\\x52\\xd3\\x90\\x62\\xbd\\x4b\\xc5\\x7a\\x67\\x46\\xf9\\x66\\x94\\x6f\\x46\\xf9\\x66\\x94\\x6f\\x46\\xf9\\x66\\x94\\x6f\\x46\\xf9\\x66\\x94\\x6f\\x46\\xf9\\x66\\x94\\x6f\\x46\\xf9\\x66\\x94\\xef\\xae\\xef\\x66\\x94\\x6f\\x46\\xf9\\x66\\x94\\x6f\\x41\\xf9\\x16\\x94\\x6f\\x41\\xf9\\x16\\x94\\x6f\\x41\\xf9\\x16\\x94\\x6f\\x41\\xf9\\x16\\x94\\x6f\\x41\\xf9\\x16\\x94\\x6f\\x41\\xf9\\x16\\x94\\x6f\\x41\\xf9\\x16\\x94\\x6f\\x41\\xf9\\x16\\x94\\x9f\\x86\\xf2\\xd3\\x50\\x7e\\x1a\\xca\\x4f\\x43\\xf9\\x69\\x28\\x3f\\x0d\\xe5\\xa7\\xa1\\xfc\\x34\\x94\\x9f\\x86\\xf2\\xd3\\x50\\x7e\\x1a\\xca\\x4f\\x43\\xf9\\x69\\x28\\x3f\\x0d\\xe5\\xa7\\xa1\\xfc\\x34\\x94\\x6f\\x45\\xf9\\x56\\x94\\x6f\\x45\\xf9\\x56\\x94\\x6f\\x45\\xf9\\x56\\x94\\x6f\\x45\\xf9\\x56\\x94\\x6f\\x45\\xf9\\x56\\x94\\x6f\\x45\\xf9\\x56\\x94\\x6f\\x45\\xf9\\x56\\x94\\x6f\\x45\\xf9\\x56\\x94\\x9f\\x8e\\xf2\\xd3\\x51\\x7e\\x3a\\xca\\x4b\\x47\\x79\\xe9\\x28\\x2f\\x1d\\xe5\\xa5\\xa3\\xbc\\xf4\\xe1\\xfa\\x42\\xf1\\xa8\\xe1\\x23\\xa6\\xfe\\xdc\\xee\\x64\\x38\\x36\\xb3\\xe1\\x6e\\xf7\\x82\\xcd\\x26\\x15\\x9b\\x4d\\x2a\\x36\\x8b\\x54\\x6c\\x76\\x66\\x8c\\x37\\x63\\xbc\\x19\\x9b\\xb1\\xd9\\x3d\\x0d\\x8b\\x38\\x16\\x77\\x73\\xc2\\xf8\\x74\\xb7\\x7b\\xc3\\xeb\\xe1\\x78\\x6d\\xc6\\x66\\x6c\\xc6\\x66\\x6c\\xc6\\xf4\\x49\\x28\\x2f\\xc9\\x3d\\xdd\\x8e\\x72\\x87\\xbb\\x29\\xca\\x1f\\x8e\\xe9\\x87\\xbb\\xa7\\xc7\\x31\\x3f\\x49\\x6e\\x3d\\xb0\\x79\\x5b\\xf0\\xbe\\xc5\\x3d\\x8d\\x8c\\xe9\\x2c\\xe8\\x0e\\x2c\\xee\\x7c\\xa0\\x1b\\x31\\xbb\\xdd\\x08\\xf2\\xa5\\xbb\\xa7\\x6f\\x71\\xba\\x16\\x3b\\x53\\x9c\\xb6\\x8d\\x8e\\x8e\\x1e\\x2e\\xdf\\xe5\\x27\\x2e\\x17\\x74\\xba\\xdb\\x7e\\x9e\\x76\\xff\\x16\\xc2\\x42\\xb0\\x83\\x5d\\xa7\\x00\\xf0\\x11\\x00\\xce\\x7c\\xdf\\x39\\x77\\x3e\\xd2\\x9d\\x73\\x5d\\xe7\\x59\\xae\\xeb\\xce\\x0c\\x71\\x26\\x80\\x07\\x8f\\x4e\\xe1\\x23\\x5c\\xd7\\x9d\\x36\\x37\\x97\\xee\\x0d\\xc1\\x67\\x6b\\xc7\\xf7\\x85\\x37\\x9a\\xee\\x0b\\x0f\\xbc\\x58\\x88\\x55\\xc0\\x64\\x50\\x60\\x6a\\xae\\x35\\xcf\\x60\\xc8\\x38\\x0d\\x1d\\x27\\x65\\x28\\xfa\\x29\\x33\\x72\\x95\\xf8\\xde\\xca\\xe0\\xbc\\xfc\\x22\\x43\\xdd\\xd4\\x5c\\x85\\x86\\xda\\x5e\\xf4\\x05\\x5f\\x28\\x28\\x30\\xce\\xe9\\x1d\\x12\\xa2\\x40\\x9e\\x02\\x16\\x63\\x5a\\x0b\\x10\\xb0\\xe4\\x9b\\x23\\x15\\x62\\x52\\x0c\\xf9\\x45\\x91\\x0a\\x35\\x19\\x0a\\x0d\\xca\\xd9\\x6c\\x85\\x87\\xcd\\x68\\x19\\x4c\\xfc\\x2d\\xd6\\x02\\xeb\\xe4\\x07\\x72\\x43\\x8c\\x21\\xbd\\xeb\\x72\\x0d\\x4a\\x76\\x76\\x6e\\x88\\x92\\x92\\xd7\\xdb\\xa0\\x24\\xa9\\xa1\\xa4\\xbc\\x3c\\x43\\xb3\\x64\\xb2\\x15\\x2a\\x83\\xb3\\x73\\x43\\xf0\\xca\\xa0\\x44\\xab\\xf1\\xd1\\x2a\\xe7\\xd9\\xec\\x5c\\x43\\x91\\xa1\\xae\\xce\\x66\\x50\\xfc\\xb3\\x73\\xf3\\x7b\\x1b\\x14\\x83\\x1a\\xe7\\xaf\\x86\\x12\\xd5\\x50\\x62\\x7e\\xef\\xfc\\xbc\\xbc\\xbc\\xde\\x0a\\x89\\xc8\\xcb\\x33\\x2a\\x90\\x9d\\x6b\\xcf\\xcb\\x8b\\x54\\x98\\xc9\\x60\\x35\\x28\\x3c\\xd4\\x56\\x68\\x50\\x74\\x96\\xec\\x5c\\x45\\x67\\x34\\x2b\\x7a\\xa3\\xb9\\x77\\x48\\x48\\x9e\\x42\\xf2\\x23\\x15\\x6e\\x32\\x86\\x18\\x43\\x0c\\x85\\xcd\\xba\\x39\\x66\\x83\\x1a\\x23\\x85\\xab\\x7f\\x15\\x9e\\x6f\\x2d\\x50\\x58\\x78\\x88\\x41\\xd1\\x5b\\x0c\\x75\\x86\\x3a\\x85\\x44\\x34\\x47\\xeb\\x42\\x15\\x1e\\x36\\x29\\x37\\x3f\\xbb\\xb7\\x6d\\x72\\x5e\\xae\\x31\\x2f\\xc4\\xa0\\xa4\\x4c\\xc9\\x55\\x48\\x44\\x6f\\x35\\x53\\x28\\x39\\x52\\xd1\\x99\\x14\\x1f\\x4b\\x44\\x0b\\x50\\x69\\x1a\\xbd\\x49\\xf1\\x31\\x9a\\x8d\\x06\\x05\\x8c\\x66\\x9b\\x42\\xe7\\x14\\x29\\xa4\\x40\\x21\\xf9\\x8a\\x2e\\x3c\\x52\\xf1\\x31\\x19\\x54\\x25\\x03\\x2c\\x05\\xa7\\x39\\xcc\\x31\\xa8\\x08\\x4a\\x4a\\x7e\\x9e\\xca\\x92\\x9f\\x26\\x94\\xf4\\x35\\xb5\\xf8\\x04\\x80\\xc5\\x6a\\x0e\\x0f\\xd1\\x8c\\xed\\x67\\xf2\\x36\\xbe\\xbf\\x44\\x21\\x11\\x46\\x05\\x2c\\x0a\\x0f\\xcd\\x37\\x58\\xeb\\x8c\\x36\\xb5\\x20\\x84\\xa5\\xa0\\xb7\\x6a\\x4d\\xc5\\xd0\\x5b\\x49\\xd1\\xec\\xa3\\xb0\\x50\\xa3\\x2d\\x4d\\x8a\\x08\\xb8\\x47\\x72\\x65\\x60\\x76\\xae\\x9a\\x38\\xe5\\x6e\\x89\\x02\\x4d\\x22\\x43\\x2d\\x01\\xfe\\xcc\\x9a\\x1b\\xd2\\xdb\\x18\\x92\\x17\\x1e\\x12\\xa9\\x74\\x30\\x35\\x53\\x6a\\x55\\x0a\\x6d\\x69\\x91\\x4a\\x47\\x93\\x42\\xf2\\x0d\\x06\\x25\\xd0\\x32\\x5e\\x4d\\x6e\\x50\\x02\\x8d\\xe6\\x3c\\xa5\\x83\\x7a\\x35\\x39\\xd7\\xa0\\x74\\x30\\x9a\\xf3\\x22\\x95\\x4e\\x26\\x83\\x12\\x24\\x4c\\x62\\x38\\xcd\\xa1\\xa0\\xce\\x68\\x53\\x3a\\x5a\\xf2\\x0d\\x75\\xf9\\x06\\xa5\\xa3\\xd1\\x6c\\x8c\\x54\\x82\\x4c\\x19\\x39\\xb9\\xcd\\xbc\\x30\\x2d\\x6f\\xa0\\xd2\\xc1\\x6e\\x5c\\x14\\xa9\\x04\\x9b\\x32\\x26\\xe5\\x66\\x4c\\x91\\x37\\x7b\\x87\\xe4\\x0d\\x54\\xba\\x88\\xfb\\x9d\\x4d\\xcd\\xd0\\xc9\\x32\\x35\\xb7\\xb9\\x53\\x27\\x8b\\x42\\x6c\\x66\\xa5\\x53\\x84\\x5a\\x49\\x15\\x1a\\x6a\\x6e\\x0e\\x54\\xff\\x74\\xa0\\xa1\\x66\\x85\\x74\\x37\\x1a\\x14\\x16\\x9a\\x9d\\xdb\\xac\\x1a\\x4f\\xe1\\xa1\\xe6\\xba\\x3a\\x83\\x10\\x1b\\x1e\\x62\\x54\\x88\\xcd\\x1d\\xee\\x2d\\xe3\\xd5\\x24\\x34\\x54\\xdc\\xc9\\x53\\x02\\x2d\\x63\\x94\\x0e\\x96\\x31\\xf9\\x0a\\xf5\\x2e\\xaa\\x7b\\x14\\x60\\x33\\x40\\x17\\x63\\x9a\\x42\\x2c\\x0a\\x8c\\x6e\\x21\\x84\\x88\\xb2\\xea\\x62\\x82\\x66\\xa0\\xd6\\x9c\\x5c\\xa5\\x93\\xd1\\x6c\\xb0\\x2a\\x01\\x46\\xb3\\xe2\\x6f\\x54\\x78\\xbe\\xd9\\x90\\xaf\\x10\\xdb\\x89\\xa0\\x20\\x02\\x1d\\xc1\\x6c\\xae\\xcb\\x6f\\xee\\xac\\x8f\\x50\\x6a\\x23\\x7a\\x0f\\xc8\\x8b\\x54\\xba\\x9a\\x9a\\xa1\\x4b\\x44\\xa4\\xd2\\xcd\\xd4\\x4c\\x54\\xda\\xdd\\xd4\\x4c\\x55\\xda\\xc3\\xd4\\xcc\\x54\\xda\\xd3\\xd4\\xcc\\x55\\x7a\\x9f\\xa9\\x59\\xa7\\xd2\\x5e\\xa6\\x66\\xbd\\x4a\\x7b\\x9b\\x9a\\x7d\\x54\\xda\\xc7\\xd4\\xec\\xab\\xd2\\xbe\\xa6\\x66\\x3f\\x95\\x0e\\x31\\x19\\xa2\\x14\\xf2\\x60\\xa4\\x12\\x2e\\x02\\x0f\\x45\\x2a\\x11\\x22\\x50\\x15\\xa9\\xf4\\x33\\x81\\xd2\\x21\\xe2\\xff\\x42\\xc7\\xfe\\xa6\\x66\\xe8\\x17\\x11\\xa9\\x18\\x4c\\xcd\\x44\\xa5\\x21\\xa6\\x66\\xaa\\xd2\\x01\\xa6\\x66\\xa6\\x52\\xa3\\xa9\\x99\\xab\\x74\\xa0\\xa9\\x59\\xa7\\xd2\\x50\\x53\\xb3\\x5e\\xa5\\x61\\xa6\\x66\\x1f\\x95\\x0e\\x32\\x35\\xfb\\xaa\\x74\\xb0\\xa9\\xd9\\x4f\\xa5\\x26\\x93\\x21\\x59\\x54\\xb5\\x48\\x93\\x21\\x5f\\x09\\xca\\x37\\x58\\x8c\\x0a\\xc9\\xb7\\x88\\xe2\\x20\\xf9\\x8a\\x49\\xad\\x6f\\x51\\x26\\x25\\x32\\x42\\x89\\x0c\\x8f\\x54\\x86\\x9a\\x0c\\x86\\x31\\x86\\x7b\\x94\\x84\\xd1\\x96\\x64\\x54\\xdd\\xd8\\x7f\\xe5\\xe8\\x1d\\x92\\x17\\xa9\\x44\\x6b\\xc5\\x43\\xba\\x2b\\x43\\xc3\\x9b\\x75\\xa4\\x9b\\x35\\x37\\x3a\\x4f\\x64\\x30\\xc6\\xd3\\x32\\xed\\xa3\\x63\\x4d\\x86\\x04\\xa1\\x6f\\x9c\\x09\\x14\\x62\\x6d\\x2f\\x44\\x21\\x11\\x77\\x15\\xae\\xde\\x87\\xee\\xc7\\x45\\x17\\x90\\x36\\xda\\x98\\xd4\\x1c\\x4b\\xba\\x85\\x47\\x2a\\xf1\\x26\\x43\\xb2\\x61\\xcc\\x3d\\xf4\\x55\\xc0\\x62\\x4b\\x8a\\x54\\x12\\x4c\\x51\\x3d\\x92\\x23\\x95\\xc4\\x5f\\x63\\x55\\x88\\xa5\\x20\\x29\\x52\\x19\\x66\\x6a\\xa6\\xd0\\x3d\\xd4\\x10\\x65\\x18\\xa3\\x36\\x5e\\x85\\x86\\x8e\\xab\\xab\\x1b\\x63\\x1c\\x63\\xb4\\x19\\x72\\xe7\\xf4\\x56\\xdd\\xa2\\xd1\\xdc\\x92\\x48\\x48\\xb7\\xae\\xe1\\x91\\x4a\\x92\\x49\\x81\\xee\\x0a\\x0f\\x55\\x78\\xa8\\x60\\x51\\xfc\\x2c\\x11\\xf6\\xba\\x28\\xa3\\xc1\\x90\\x5c\\x97\\x14\\xa9\\x0c\\x6f\\x8d\\x36\\x44\\x49\\x0c\\x85\\x1b\\xcd\\x2a\\x97\\x41\\xc9\\x57\\xdb\\x7b\\xca\\xa4\\xdc\\x63\\xd4\\xc0\\x0c\\xbd\\x8f\\xd1\\x30\\xd6\\x2b\\xcf\\xac\\xfa\\x40\\x5f\\x8b\\xa1\\xce\\x28\\xb8\\x8d\\xe9\\xf9\\x0a\\xb7\\xb4\\x6d\\x4a\\xf9\\xaa\\x1f\\x92\\xce\\x9e\\x5a\\xf2\\x0b\\x8d\\x0a\\xb3\\xd8\\x0a\\xb3\\x73\\x15\\x6a\\xb1\\xf5\\x56\\x98\\x25\\x5f\\xf5\\x41\\x6d\\xd3\\xd8\\x8c\\x06\\x83\\xc2\\xc3\\x8c\\xe9\\xb6\\xa4\\xde\\x46\\xc5\\xd7\\x92\\xae\\xd0\\x50\\xc5\\xd7\\x22\\xa4\\xe4\\x1b\\xee\\x26\\xc4\\x28\\xbd\\x1d\\xb7\\xe4\\xab\\xb6\\xd7\\x85\\xda\\x14\\x5d\\x3b\\x54\\x85\\x87\\xa9\\x39\\x0a\\x15\\x4a\\x84\\xe6\\x17\\x66\\x4b\\x2f\\xd7\\x2a\\x2b\\x2f\\x52\\x19\\xa1\\xda\\xc0\\x60\\x30\\x28\\xba\\x30\\xb4\\x81\\x31\\x39\\x29\\x52\\x19\\x29\\x6e\\x2b\\xbe\\x46\\xb3\\xc1\\x60\\x48\\x37\\x8e\\x51\\x85\\xa9\\xa5\\x95\\x2c\\x4c\\xa6\\x66\\x00\\x2d\\x0a\\x39\\xb9\\x51\\x86\\x64\\x63\\x48\\x6f\\x55\\x63\\xbc\\x69\\x50\\x75\\x71\\x9b\\x5c\\x1f\\xaa\\xe8\\x42\\xc7\\x79\\xf6\\xbe\\xb2\\xa0\\xee\\x56\\x83\\xb1\\x64\\x8c\\x6a\\x35\\x1e\\x85\\x1a\\x58\\xdc\\x45\\x93\\xaf\\x76\\xcf\\x6d\\xb3\\xe8\\x2e\\xca\\xd1\\x26\\xa3\\x21\\x4a\\xb5\\x5a\\xfa\\xe4\\x5c\\x43\\x72\\x5e\\x54\\x73\\x14\\xe9\\x1a\\x11\\xa9\\xdc\\xaf\\xdd\\xce\\xf6\\xbc\\x9d\\xe2\\xcd\\x7d\\x57\\x9e\\x54\\x93\\x92\\x14\\x71\\x57\\x50\\xb3\\x49\\x19\\x1e\\x51\\x67\\x30\\x24\\xab\\x95\\xa5\\x2e\\xe9\\x2e\\x3c\\x0a\\xb7\\x44\\x29\\x51\\x11\\x91\\x8a\\x45\\xab\\x61\\x6e\\xeb\\xaa\\x95\\xcb\\x68\\x48\\x36\\x44\\x19\\x93\\x10\\x2e\\xcd\\xd4\\xec\\xcb\\x43\\xcd\\xff\\x17\\x55\\x71\\xcc\\xff\\x56\\xed\\x53\\xd5\\x57\\xfd\\x4b\\xb2\\x31\\xa9\\x77\\x88\\x47\\x79\\x87\\xe4\\xa1\\x8e\\x56\\xd5\\x18\\xee\\xfc\\xa7\\xab\\xf9\\x0f\\x31\\xa2\\x01\\x30\\x1f\\x5a\\x96\\xc7\\x98\\x14\\xe8\\x26\\x1b\\x67\\x0b\\xa8\\xed\\xb0\\x4b\\x94\\x12\\x1f\\x1e\\xa9\\x8c\\xbd\\xc7\\xfd\\x71\\xa6\\x66\\x20\\x5d\\xbb\\x28\\x09\\xe1\\x91\\xca\\x78\\x93\\x32\\x2c\\x3c\\x52\\xc9\\x50\\xad\\x66\\x35\\x1a\\xa2\\x0c\\xe9\\x75\\x46\\x9b\\xdb\\x4e\\x99\\x26\\xb5\\x3a\\x2a\\x19\\x11\\x91\\xca\\x04\\x53\\x0b\\x40\\x5a\\x44\\xa4\\x92\\x65\\x6a\\x01\\xa2\\x06\\x26\\x9a\\x5a\\x88\\xb8\\x93\\x6d\\x6a\\x21\\xe2\\xce\\x24\\x95\\xc7\\x1a\\x11\\xa9\\x4c\\x56\\x79\\xd4\\xc0\\x14\\x95\\x47\\x0d\\xe4\\xa8\\x3c\\x6a\\x60\\xaa\\xca\\x93\\x1a\\x11\\xa9\\x4c\\x53\\x79\\xd4\\xc0\\x74\\x95\\x47\\x0d\\xe4\\xaa\\x3c\\x6a\\x20\\x4f\\xe5\\xb1\\x44\\x44\\x2a\\x33\\x54\\x1e\\x35\\xf0\\x80\\xca\\xa3\\x06\\x66\\xaa\\x3c\\x6a\\xe0\\x41\\x95\\x27\\x3d\\x22\\x52\\x99\\xa5\\xf2\\xa8\\x81\\xd9\\x2a\\x8f\\x1a\\xc8\\x57\\x79\\xd4\\x80\\x4d\\xe5\\x31\\x47\\x44\\x2a\\x73\\x54\\x1e\\x35\\x50\\xa0\\xf2\\xa8\\x81\\x42\\x95\\x47\\x0d\\xd8\\x4d\\xca\\x08\\xcd\\xcc\\x45\\xea\\x85\\x32\\x3a\\x22\\x52\\x99\\x2b\\x42\\xf7\\x47\\x44\\x2a\\xc5\\xa2\\x3e\\x8d\\x88\\x50\\x52\\x22\\x22\\x95\\x12\\x93\\x32\\x52\\xe3\\x9e\\xa7\\x5e\\x08\\xee\\xf9\\x22\\xa4\\x72\\x97\\x8a\\x90\\xca\\x5a\\x66\\x52\\x92\\x35\\xd6\\x72\\xf5\\x42\\xb0\\x56\\x88\\x90\\xca\\x5a\\x29\\x42\\x2a\\xeb\\x43\\x26\\x65\\x94\\xc6\\x5a\\xa5\\x5e\\x08\\xd6\\x6a\\x11\\x52\\x59\\x6b\\x44\\x48\\x65\\xad\\x35\\x1d\\xf3\\xe3\\xd4\\x3d\\x78\\x32\\x47\\x28\\xbe\\x76\\x85\\x0d\\xcc\\x5e\\xe4\\xee\\x53\\x22\\x01\\x32\\x4e\\xc3\\x9b\\x93\\x73\\x9b\\x09\\x59\\x93\\xa7\\x10\\xe9\\x00\\x2a\\x9b\\x41\\x6f\\x3e\\x01\\x63\\xe2\\xfa\\x73\\x08\\x57\\xc3\\x29\\xfe\\x13\\xc8\\x08\\xdf\\x30\\xdf\\xae\\x3e\\xdc\\x17\\x6f\\x64\\x41\\x9a\\x3e\\x5a\\xdf\\x57\\x27\\x6e\\xf8\\x9b\\x5f\\xe9\\xb2\\xbc\\xe3\\x59\\xbf\\xb3\\xba\\x14\\xe0\\xe0\\x17\\xde\\x0c\\x1d\\xcd\\xaf\\x00\\x40\\x8a\\xf8\\x2f\\xee\\x30\\x48\\x6b\\x1e\\x48\\x56\\x4d\\xca\\x55\\x52\\x56\\xe5\\x36\\xb3\\xc2\\xb4\\xe6\\x30\\xf5\\xea\\x8c\\xef\\x72\\x20\\x3c\\x65\\x55\\x41\\x4e\\xae\\xca\\x22\\xce\\xbb\\xf5\\xcf\\x82\\x64\\xdf\\xc1\\xbe\\xdd\\x7d\\x78\\x60\\xf8\\x69\\xe2\\x7a\\x42\\xe1\\xab\\x9b\\x29\\xa4\\x35\\xeb\\x0a\\xd3\\x00\\xfe\\xbf\\x00\\x00\\x00\\xff\\xff\\xdf\\x44\\x7e\\x43\\xc0\\xd0\\x01\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_ttf() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_ttf,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.ttf\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x64\\x97\\x53\\x6c\\xe0\\x8f\\xd3\\xf5\\xbf\\xb5\\xdd\\x6e\\xdb\\xad\\xdb\\xad\\x6d\\x5b\\x5b\\x5b\\x5b\\xdb\\xb6\\x6d\\xdb\\xb6\\xb7\\xb6\\x6d\\xdb\\xb6\\x8d\\x6d\\xdf\\xfc\\x9e\\xfc\\xef\\xde\\xc9\\x7c\\x32\\xc9\\x24\\x73\\x33\\xe7\\xe2\\xe4\\xb8\\xca\\x89\\x89\\x01\\x20\\x00\\x00\\x80\\x80\\x6b\\x01\\xc8\\xff\\xcd\\xd9\\x5e\\x00\\xe4\\xff\\x36\\xff\\x5f\\x89\\x8b\\x88\\x8a\\x01\\x00\\x88\\x15\\x00\\x00\\x9c\\x00\\x00\\x08\\xc0\\x31\\xc2\\x31\\x89\\x2b\\xa9\\x08\\x01\\x00\\x48\\x19\\x00\\x80\\x70\\x01\\x00\\xe8\\xef\\x63\\x94\\x1d\\x34\\x39\\x25\\x7a\\x26\\x00\\x00\\x3d\\x04\\x00\\x40\\x01\\x00\\x00\\xbd\\x76\\xfb\\x73\\x25\\x43\\x6b\\x7d\\x3b\\x00\\x00\\xe3\\x00\\x00\\x88\\x03\\x00\\x80\\xb6\\x50\\x3a\\x29\\xa0\\x37\\x74\\x71\\x22\\x04\\x00\\x18\\x5c\\x00\\x00\\x7e\\x03\\x00\\x90\\xa5\\x17\\x87\\x06\\x66\\x62\\x67\\x6a\\x0d\\x00\\x30\\x46\\x00\\x00\\x11\\x05\\x00\\x70\\xa9\\x7b\\xe8\\x1b\\xb7\\xa6\\xfa\\x8e\\x76\\x00\\x80\\x78\\x0b\\x00\\x00\\xf4\\xff\\x40\\x36\\xb5\\x72\\x37\\x01\\x00\\xc4\\x57\\x00\\x58\\x79\\x07\\x40\\x5c\\x6d\\xea\\x93\\x5d\\x2f\\xcd\\x8c\\xf5\\x8d\\x00\\xe0\\xf8\\x11\\x00\\x00\\xb6\\xff\\x78\\x4d\\x41\\x46\\x36\\x33\\x33\\xd6\\x07\\x80\\x13\\x1a\\x00\\x00\\x08\\x01\\x00\\xf8\\x05\\x67\\x06\\xb6\\x6f\\x66\\xed\\xe4\\x06\\x00\\x27\\xd2\\x00\\x00\\x41\\x09\\x00\\xc8\\xc4\\x28\\x38\\xae\\x07\\x56\\xb6\\x86\\xfa\\x00\\x70\\xe9\\x06\\x00\\x50\\xd3\\x00\\x00\\xfd\\x6b\\x0a\\x94\\x0a\\xdb\\x5a\\xdf\\xcd\\x0e\\x00\\x1e\\x7f\\xff\\xef\\x96\\x10\\x62\\x11\\x01\\xcf\\x46\\xdf\\xda\\x18\\x00\\x1e\\xcd\\x00\\x00\\xc4\\x03\\x00\\xc0\\xac\\xe4\\x15\\xbd\\x8e\\xec\\x6c\\x1d\\x9d\\x00\\xe0\\xe9\\x10\\x00\\x10\\x56\\x00\\x80\\x64\\xee\\x48\\xa8\\xf4\\xcc\\xce\\xc1\\xd8\\x0e\\x00\\x01\\xeb\\x04\\x00\\x20\\x1b\\x00\\x80\\x1a\\x76\\x67\\xee\\x1e\\x37\\x10\\x43\\x3d\\x23\\x3d\\xbd\\x5d\\x7d\\x3f\\x80\\x0c\\x12\\x31\\x84\\x59\\x60\\x74\\xb4\\x6c\\xb4\\x0c\\xf1\\x17\\x09\\x56\\xa2\\xbf\\x11\\x84\\x21\\x44\\x5c\\x95\\x71\\x15\\x58\\x02\\x42\\x14\\x82\\x80\\x03\\xea\\x01\\x3a\\xa1\\x7b\\x08\\x4a\\x19\\x2a\\x30\\x4c\\x02\\xed\\x00\\x00\\x80\\x1b\\x48\\xf6\\x04\\x18\\x3c\\xba\\x1e\\x2e\\xc4\\xed\\x8b\\xce\\x72\\x55\\x15\\xa5\\xcc\\x9a\\x8d\\x85\\xcd\\x24\\x2b\\x3d\\x8e\\x61\\x5a\\x26\\xd3\\x34\\x5b\\x83\\xf5\\x06\\x9b\\xc9\\x81\\xc7\\xc6\\xd4\\xb6\\x77\\x8f\\x9c\\xaf\\x3f\\xc0\\x55\\x88\\x14\\x12\\xc0\\x6c\\x32\\x95\\x13\\x18\\x63\\x06\\x57\\x2b\\x06\\xf6\\x38\\xd0\\x34\\x91\\x5a\\xe3\\x80\\x38\\x35\\xda\\x74\\xbc\\x81\\xb2\\xcf\\xd9\\xa9\\xef\\x27\\x18\\x82\\x65\\x12\\xa4\\x30\\x8c\\x65\\x1a\\x20\\x51\\x92\\x66\\x12\\xa2\\x71\\xfc\\x9a\\xe5\\xfe\\x43\\xdd\\x28\\xdc\\x58\\x55\\xdd\\x38\\xda\\x19\\xdf\\xda\\xfc\\xb8\\x10\\xf1\\x2c\\x6f\\x46\\x9f\\xbb\\xc0\\x2f\\x00\\x96\\xb2\\x2a\\xac\\x20\\x82\\xb2\\x26\\x28\\x41\\x92\\xb2\\x3a\\xaa\\x7e\\x9c\\xb2\\x36\\x20\\x82\\xaa\\xbc\\x2a\\xa2\\xa2\\xa2\\xbc\\xa6\\x90\\x6b\\x79\\x7f\\xd1\\x16\\xaf\\x05\\xcd\\x65\\x5e\\x76\\xcd\\x9c\\xdb\\xf2\\xe4\\xb2\\x53\\xfb\\x6f\\xa4\\xcb\\x18\\xdd\\x06\\x46\\x87\\xc5\\xca\\x55\\xc8\\x56\\xa3\\xa6\\xcb\\xc6\\xf5\\xaa\\xf6\\x56\\xc3\\xc7\\x73\\x2f\\xfe\\x3a\\x89\\xa7\\x95\\xdc\\x65\\x39\\x6f\\xc3\\xc9\\x73\\xbf\\xce\\x3a\\xb5\\xa7\\xb5\\xed\\x65\\x75\\x57\\xc3\\xcb\\x73\\x5f\\xf3\\x2a\\xf9\\x87\\x95\\xee\\x65\\xa5\\x77\\xc3\\xcd\\xf3\\x80\\xcf\\x3a\\xfd\\x47\\x35\\xff\\xf3\\xca\\xd7\\x9a\\x20\\xf4\\x16\\x03\\x32\\x1a\\x20\\x3d\\xc2\\xf3\\xd8\\xeb\\x82\\xe3\\x9f\\xcd\\x96\\xa0\\xfb\\x86\\x50\\xf8\\x2a\\x1c\\xc8\\x28\\x36\\xc0\\x02\\xa3\\xc9\\xaa\\x02\\x57\\x27\\x15\\xd9\\x04\\xe9\\x5e\\xbd\\x02\\x99\\xb5\\x60\\x62\\x3d\\x0c\\x61\\xbd\\x84\\xaf\\x65\\xf5\\xd0\\x36\\x65\\xda\\xf9\\x85\\xb4\\x95\\xd5\\xc5\\xf0\\xdf\\xef\\x0c\\xf5\\x4c\\x38\\xa7\\xca\\x06\\x7a\\xc7\\x7b\\x7b\\xb9\\x22\\x97\\xd2\\xfc\\xfd\\x15\\xf0\\x85\\x98\\x75\\x8d\\x7e\\x1b\\x1a\\x08\\x40\\x22\\x61\\xa5\\x7d\\xc1\\x31\\x50\\x88\\x80\\xa5\\xc3\\x12\\xfa\\x08\\x1a\\x2b\\x30\\x86\\x7d\\x7d\\xa7\\x92\\x9c\\xdd\\xa8\\x40\\x42\\xc6\\xfc\\x22\\xb3\\x86\\x80\\x1c\\x7e\\xfb\\x8a\\x82\\x87\\xa7\\x51\\xad\\xc2\\xe9\\x3d\\xc7\\x02\\xc9\\xbf\\x42\\xd2\\xfa\\x3f\\x3d\\x92\\x12\\xc1\\xfe\\x92\\x68\\xa2\\x8b\\xbe\\x70\\x7e\\x90\\xcd\\x34\\xbf\\x3b\\x33\\x35\\x5b\\x6f\\x3c\\xb7\\x58\\x6f\\x34\\xff\\xd7\\xe4\\xd8\\x33\\x0d\\xd9\\x8f\\x3d\\x3b\\xc3\\x97\\x15\\x18\\x85\\x6a\\x4b\\xda\\xc0\\x2b\\xf3\\x10\\x32\\x70\\x7b\\x03\\x08\\xf9\\x78\\xd9\\x7c\\x26\\x82\\x04\\xd9\\x83\\x7e\\xae\\x82\\xf8\\x11\\x83\\x50\\x42\\xef\\x72\\x6c\\xfa\\x79\\xda\\xd1\\xe7\\x8c\\x58\\xba\\x11\\x64\\x2a\\x44\\xa7\\x15\\x49\\x84\\x38\\xc5\\xdb\\xcc\\xeb\\xfe\\x18\\xe3\\x5a\\xd3\\x8e\\x49\\x3c\\x38\\x22\\x6e\\x53\\xc0\\x8f\\xfb\\x79\\xd7\\xf8\\x3b\\xf4\\x0c\\xd6\\x5b\\x4c\\x77\\x85\\xfd\\x49\\xb3\\xba\\x34\\x4e\\x5a\\xef\\x27\\xf7\\x1d\\x4d\\xce\\x40\\xa4\\x1b\\x09\\xc1\\x6e\\xa2\\x57\\xe2\\xcd\\x1d\\x89\\x8f\\x49\\x7b\\x9a\\x8f\\x49\\x44\\xba\\xa9\\x0b\\xd3\\x47\\xe6\\xc0\\x94\\xf9\\x31\\xef\\x43\\x5b\\x78\\x9a\\x58\\xee\\xeb\\xbc\\xb7\\x46\\x0c\\xc7\\x41\\x96\\x52\\xf6\\x9f\\xd2\\x6d\\x73\\xda\\xec\\x03\\xb2\\x36\\xce\\x9a\\x03\\xc8\\xad\\x1a\\x1b\\x5f\\xd7\\x38\\xee\\x79\\xbc\\x2b\\x59\\x17\\x24\\xfb\\x58\\x57\\x5b\\x7b\\x5b\\xd7\\x1b\\x98\\x57\\x50\\x0d\\xff\\x4d\\x01\\x86\\x59\\xd6\\x59\\xf6\\xbf\\x6c\\x65\\x82\\xbe\\x0c\\xb4\\x69\\xd8\\x34\\xf0\\x5c\\x7d\\x3a\\x7d\\x67\\x7d\\x78\\x01\\x1d\\x2e\\xee\\x95\\x67\\x47\\x69\\x27\\xa2\\xbc\\x48\\xaf\\x4b\\xb3\\xa2\\xb3\\x3f\\xb7\\xcd\\x10\\x6e\\x06\\xe0\\xdc\\xf0\\x08\\xf4\\xe0\\x2c\\x76\\x25\\xda\\x8d\\x24\\xd5\\xce\\xe8\\xc0\\x8c\\xea\\x2e\\x09\\x3d\\x3f\\xcd\\xdc\\x02\\x37\\x6d\\x11\\x36\\x58\\xbe\\x4d\\x07\\x56\\xaa\\xf6\\x30\\x97\\x91\\x7b\\x7e\\xe6\\x18\\x20\\xcc\\x1c\\x0c\\x75\\xa6\\x23\\xdd\\x53\\x76\\x0f\\x21\\x55\\x13\\x49\\xab\\x2d\\xec\\x48\\xb3\\x3e\\x4c\\x4d\\x1f\\x03\\x8e\\x41\\x9c\\x03\\x9d\\xb6\\xdd\\x0c\\x17\\x32\\x89\\x72\\xde\\xd8\\x88\\x59\\x75\\xd3\\x30\\xd3\\x08\\xb2\\xd9\\x0b\\x7a\\x08\\x7b\\x26\\x6d\\xee\\x35\\x17\\x2e\\x75\\x21\\x60\\x5b\\x28\\x3d\\x3f\\xb7\\xad\\x10\\x6e\\xbe\\x02\\xf7\\x2a\\x72\\x11\\x98\\x7d\\x4c\\x5b\\x27\\x66\\x42\\xf0\\x96\\xe5\\xa5\\xeb\\xef\\x3c\\xa3\\xfd\\x5a\\x74\\xc8\\xdc\\xe9\\x47\\x19\\x6e\\xdc\\x05\\x3c\\xfe\\xb4\\xab\\x83\\xa6\\x28\\x4a\\x85\\x93\\x4e\\x24\\x5c\\x1c\\xb9\\x45\\xb1\\x0e\\x35\\x8f\\x39\\x00\\x61\\x57\\xb8\\x99\\x61\\x8e\\x85\\xb9\\xa2\\xb6\\xd1\\xdd\\x3f\\xbc\\x67\\xb7\\xb7\\x51\\xbb\\xf8\\x3c\\x54\\x1e\\x9d\\x7a\\x37\\xb6\\x36\\x10\\x80\\x02\\x7b\\x3f\\xf6\\xea\\xc2\\xae\\x42\\x88\\x53\\xb7\\x49\\x87\\xdc\\x23\\x93\\x89\\x27\\x81\\x4b\\xa1\\x09\\xf7\\xe7\\x3b\\x16\\xbd\\x85\\x4b\\x99\\x31\\x9c\\xdc\\x2d\\xf5\\x6e\\xfb\\xbe\\x61\\x6b\\x1c\\xd2\\x7a\\xdc\\xb0\\xc9\\xc8\\xc9\\xe8\\xc9\\x18\\xe9\\xf5\\x38\\x0c\\xec\\x26\\x22\\x4a\\x26\\x86\\x7e\\x3b\\x6a\\xe4\\xaf\\x55\\x07\\x37\\xb7\\xda\\x5b\\xfc\\x3d\\xd6\\x7c\\xb8\\x01\\xb8\\x01\\x6d\\x61\\x72\\x5f\\x57\\xd3\\xd3\\xdb\\x59\\xfd\\xfc\\x7f\\xc2\\x1f\\x41\\x2e\\xd0\\x32\\x88\\x4f\\x30\\x4f\\x9f\\xef\\x4d\\x83\\x2f\\x8f\\x06\\x6d\\xb8\\x01\\xba\\xcf\\x10\\x3e\\x1b\\x50\\x40\\x37\\xe8\\xa0\\x7a\\xd6\\x4e\\x1d\\x98\\x0f\\xfb\\x9a\\xc4\\x73\\x1f\\xbf\\xb4\\xea\\xd7\\x67\\xf8\\x01\\xd0\\x06\\xcf\\x2f\\x5b\\x95\\xce\\x02\\x72\\xae\\x3e\\xac\\x69\\xa2\\xc9\\xd7\\x60\\xd5\\xdc\\xb8\\x27\\xb7\\x40\\xf5\\x39\\xf5\\xd8\\x41\\xb0\\x96\\x33\\x57\\x24\\x95\\x9e\\x24\\x15\\xac\\x2c\\x99\\xac\\x7c\\xe0\\xb6\\x46\\x63\\x3d\\x4f\\x87\\x87\\x9a\\x9c\\xe6\\xc6\\x01\\x42\\x4e\\xa5\\xac\\x9c\\x6c\\x61\\x87\\x2a\\xab\\x9a\\xfb\\xce\\x2a\\x7b\\xc0\\x2a\\x88\\x66\\x0f\\x2b\\xbb\\x84\\x3b\\xb5\\xc4\\xe3\\xa9\\x0a\\xd7\\x88\\x5c\\xba\\xe7\\xb4\\x61\\x5c\\x97\\x52\\x56\\x58\\xcc\\x21\\xcc\\x66\\x0f\\x36\\x9d\\x44\\xcb\\x01\\x67\\x7a\\x80\\x9b\\x5d\\xf9\\xe0\\xd4\\x4d\\xd7\\xdb\\xd6\\x2e\\x8f\\x79\\x66\\xa0\\x5d\\x20\\xe5\\x9c\\x4e\\xb7\\x82\\xc1\\x81\\x74\\x72\\x21\\xa9\\x5d\\x5c\\xe9\\x1c\\x5d\\xb3\\xe4\\xdc\\x0e\\x46\\xd7\\x1b\\xdc\\x5e\\x78\\x5d\\xc4\\x7d\\x41\\xd7\\x5e\\x79\\x1d\\x12\\x69\\x57\\x87\\x5f\\x11\\x7a\\x16\\xef\\xd1\\x88\\x5f\\x38\\x32\\xae\\xba\\x46\\xc6\\x9a\\x51\\x94\\x7a\\x6e\\xec\\xd1\\xa6\\x93\\x0f\\x75\\x41\\xe4\\xd1\\x8a\\xef\\xdf\\x61\\x1f\\xab\\x7a\\xa0\\x53\\x3d\\xf7\\xa7\\x7a\\xc0\\xbb\\x55\\x57\\xb3\\x49\\x66\\xe3\\xce\\xcf\\xc5\\x0c\\x1d\\xc9\\x42\\x9a\\x97\\x47\\x64\\x57\\x1f\\x16\\x3f\\x3f\\xc1\\x2d\\x09\\x32\\x76\\xcf\\xfe\\xfd\\xd4\\x14\\xf7\\xc0\\x5a\\x3f\\x5c\\xda\\x80\\x49\\xc7\\x88\\x6a\\xe1\\x16\\x55\\xe9\\x96\\x49\\xa7\\xaf\\xd2\\x0d\\xa1\\xf6\\x00\\xa1\\x73\\xcc\\xa9\\x33\\xb8\\x85\\x33\\xb6\\xcd\\x2d\\xd7\\xfd\\xd5\\xef\\x8d\\x46\\x8f\\x28\\xf2\\x96\\x88\\xaf\\x7f\\x84\\x66\\xcf\\x8b\\xeb\\x35\\xa8\\xf8\\x35\\x89\\x0e\\xec\\x35\\x4a\\xd0\\x2b\\x86\\xfe\\xb6\\xb8\\xba\\x19\\x4b\\xb7\\x8e\\xb9\\xe3\\x2f\\x75\\x47\\x1d\\xb7\\xe7\\x5f\\xf2\\x6e\\x13\\xfa\\x67\\x13\\x02\\xab\\xe1\\x1f\\x56\\x43\\x6c\\xcf\\xa2\\xd8\\xe3\\x0a\\x7d\\x3e\\x65\\x22\\x18\\x15\\x0a\\x03\\x5f\\x65\\x47\\x00\\xa2\\x08\\x1e\\x54\\x7e\\x4e\\x60\\x9b\\x9f\\x30\\xf2\\x81\\xbc\\x1b\\xee\\xf0\\x1e\\x6e\\x5f\\x3c\\x28\\x8a\\x42\\xcc\\xbe\\x50\\xcc\\x8f\\x08\\x14\\x82\\x8d\\xd6\\xb0\\x48\\x52\\xa9\\x7a\\x52\\x71\\x87\\xb6\\x20\\xa9\\xe2\\x4a\\xa7\\x42\\xd3\\x5e\\xd5\\xe6\\xdf\\xae\\x67\\x44\\xbc\\xc5\\x98\\x1b\\x6b\\x44\\x5d\\xc5\\x48\\x17\\x6b\\xbd\\xc6\\x5a\\xd3\\x32\\x9b\\x34\\xde\\xc5\\x04\\x85\\x51\\x12\\xbe\\xd8\\xbd\\xb4\\x9b\\x54\\x60\\xc6\\x71\\xf0\\x29\\x44\\x4c\\xca\\x21\\xf6\\x10\\x6a\\x0e\\x38\\x13\\xad\\x11\\x95\\x32\\x59\\xe1\\xa6\\x9c\\xd4\\x46\\xad\\x51\\x7a\\xa4\\x95\\x46\\x45\\x51\\x09\\x73\\x56\\x29\\x8c\\x4c\\x29\\xd1\\x56\\xfb\\x3f\\x6b\\x8e\\xb8\\xb0\\xc9\\x0f\\xa2\\x67\\x5e\\x8d\\x03\\xa4\\x59\\x0c\\x92\\x96\\xaa\\x18\\x59\\xc4\\xc8\\xec\\xe9\\xaf\\xc7\\xba\\xda\\x90\\x5e\\x8e\\x7c\\x36\\x75\\xc9\\x26\\xd0\\x97\\xeb\\x63\\x4a\\x6f\\x95\\xd3\\xa9\\x16\\xdc\\x7e\\xca\\xb1\\xc3\\x90\\x29\\x94\\x3c\\xc0\\x27\\x0e\\x32\\xbb\\xa7\\x5c\\x12\\x77\\x64\\xa0\\x27\\xd2\\x88\\x3b\\x14\\xe2\\x22\\xf4\\x90\\x81\\xfa\\x01\\x01\\xfc\\xb2\\x79\\x3d\\x45\\x7e\\xbe\\xb9\\x9f\\x0e\\xef\\xfa\\xbb\\x81\\x04\\xf6\\x61\\xe2\\xa0\\xa8\\xf1\\x41\\x46\\x45\\x84\\x18\\xe6\\xbf\\xc5\\x21\\x99\\xe2\\x83\\xad\\x0e\\x09\\x31\\xdd\\x47\\xc5\\x41\\x60\\x15\\x82\\x0c\\x92\\x7a\\x05\\x29\\xb5\\xc0\\x91\\x45\\xc8\\x9d\\xc4\\x30\\x9d\\x44\\xd9\\x9d\\xc4\\x91\\x1e\\x45\\xe8\\x1f\\xc5\\x08\\x1e\\x45\\xf9\\x1f\\x47\\x00\\xf8\\x41\\x42\\xf8\\x61\\x64\\xf8\\x21\\x06\\xf8\\x11\\xe8\\xa8\\x41\\x8a\\xa8\\x61\\xac\\xa8\\x21\\x8e\\xa8\\x11\\x70\\xe9\\xc1\\x5f\\xd2\\xc3\\xe8\\xd2\\x43\\x2c\\xd2\\x23\\xf0\\x93\\x83\\x34\\x93\\xc3\\xb8\\x93\\x43\\x3c\\x93\\x23\\xa0\\x34\\x83\\xc4\\x34\\xc3\\xa8\\x34\\x43\\x4c\\x34\\x23\\xb0\\x55\\x83\\x54\\x55\\xc3\\x3f\\xab\\x86\\xb8\\x2e\\x81\\x30\\x5a\\x55\\x8b\\x62\\x9d\\xf5\\x41\\xa5\\x75\\x3a\\xef\\xe6\\x49\\xf0\\x0d\\x93\\x02\\x32\\xcb\\x8a\\x12\\xb3\\x8c\\x12\\xcb\\x12\\x13\\xb3\\x14\\x13\\xcb\\x98\\x6a\\x96\\x15\\x97\\x3f\\x66\\x52\\xb4\\xcd\\xc9\\xeb\\x62\\x3d\\x37\\x79\\x34\\xb0\\x38\\xb0\\x00\\x45\\xca\\x27\\x76\\x7a\\x23\\x23\\x33\\x33\\xf3\\x81\\x35\\x0f\\x08\\xaf\\xaa\\xc0\\x52\\x52\\x7a\\x5b\\xd3\\xad\\x0e\\x2a\\xa6\\xba\\x51\\x90\\x02\\x99\\xb6\\x41\\xb6\\xd2\\x71\\xfa\\x73\\x9c\\x4a\\x49\\xe7\\x49\\x9c\\xa1\\xad\\xfa\\x7d\\x9f\\xf8\\xb0\\xc6\\xc3\\xa6\\x14\\x7d\\x98\\xdb\\x04\\xfc\\x46\\x10\\xe7\\x41\\x02\\x58\\x48\\xfa\\x43\\x86\\xeb\\x0d\\x34\\xe3\\x44\\x0c\\x35\\x3c\\x16\\xb3\\x79\\xa5\\xa9\\xd5\\x0d\\xbb\\x69\\xb6\\xe3\\x3c\\x25\\x9d\\x17\\x2c\\x64\\x20\\x14\\xfb\\xa6\\xf3\\x94\\x33\\x80\\xb9\\x66\\xb7\\xee\\xae\\x26\\xa3\\xce\\x60\\x33\\x97\\x65\\x4c\\xad\\x4a\\xfb\\x04\\x0b\\xbe\\xfc\\x71\\xe5\\x8f\\xc3\\xf7\\x6a\\xe8\\x4f\\xdf\\xfd\\xa6\\x9f\\xe8\\xeb\\xf3\\x76\\x09\\x30\\x25\\x2d\\xba\\xfc\\xe7\\x1b\\x84\\x90\\x49\\x60\\xfa\\x54\\xc2\\x54\\x17\\x90\\x90\\x90\\x3f\\xa8\\x21\\x43\\x7c\\x61\\x70\\x25\\x7c\\x6b\\xeb\\xf1\\xdf\\xbe\\x43\\x86\\x6e\\xbe\\x33\\x7d\\xb7\\x09\\xf1\\xeb\\x7f\\x2e\\x23\\xd0\\xa8\\x0a\\xdc\\x89\\xa4\\x51\\x2d\\x17\\xea\\x39\\x87\\x63\\x9d\\x5f\\xe7\\x67\\x40\\x1e\\x92\\x4c\\x32\\x1b\\x30\\x80\\x02\\x6c\\x8b\\x8c\\x5b\\x6e\\x20\\x55\\x2a\\x47\\x19\\x07\\xa3\\x88\\xb4\\xa1\\x19\\xfa\\x58\\x5e\\x82\\x39\\x19\\x8f\\x57\\x99\\x49\\xbc\\x93\\x56\\x23\\x63\\xb7\\x2c\\x3e\\xb9\\x96\\x73\\x36\\xef\\x5d\\x9d\\x1f\\xf0\\x3e\\x3f\\x39\\x27\\xbe\\x9f\\xe7\\x9e\\x47\\x25\\x1c\\x5f\\x1c\\x84\\x95\\x8b\\x15\\x25\\xc4\\xc5\\x15\\x83\\x93\\x89\\x54\\x2b\\x25\\xac\\xc2\\x75\\xfe\\x15\\x95\\x60\\xea\\xda\\x1b\\xbe\\x75\\x05\\xd9\\xb6\\xf3\\xd8\\x2e\\xd0\\x8e\\xab\\xa1\\xd5\\xb0\\x34\\xe4\\x8a\\x2f\\x95\\xfd\\xd1\\x5d\\xb1\\xac\\x39\\xa9\\xab\\xaf\\x22\\xde\\x3a\\xa3\\x16\\x17\\x35\\x3f\\x6d\\x30\\x4c\\x9b\\xa7\\xcd\\xa5\\x0e\\x61\\x0b\\xf3\\xd5\\xd8\\x5d\\xdf\\xf4\\xfc\\xe7\\x6e\\xca\\x13\\xb1\\x72\\x50\\xfc\\x82\\x26\\xe7\\x69\\x93\\x83\\x4c\\x4f\\xf3\\x0b\\x9f\\xbf\\x89\\xee\\x4e\\x5b\\x63\\xab\\x29\\x25\\xc2\\x5f\\xa1\\xb9\\xef\\x41\\x1e\\xc1\\x75\\x50\\xed\\xe8\\x93\\x8a\\x66\\x8f\\x86\\xc8\\x6f\\x94\\x79\\xff\\x2e\\xf8\\x57\\x70\\xc8\\xa1\\x95\\x96\\x6a\\x8b\\xb1\\x33\\xb7\\xb3\\x92\\x65\\xf5\\x84\\xec\\xc6\\x9f\\x29\\x0b\\xa2\\xb5\\xc6\\xe5\\x93\\x0a\\xa2\\xd7\\x72\\x56\\x66\\xa0\\x42\\x1c\\x0e\\x66\\xc5\\x79\\x14\\x01\\x0f\\xb4\\xdb\\x98\\xfc\\xa9\\xcd\\x84\\xc5\\x6e\\x4e\\x4c\\x41\\x17\\x4e\\x42\\x16\\xb2\\xef\\x28\\xd1\\xd2\\xbc\\x73\\x7a\\x29\\x05\\xca\\x5b\\x84\\xf3\\xe8\\x56\\x5b\\xab\\x9a\\x3d\\x7e\\xd9\\x20\\x81\\xae\\x75\\x2d\\x41\\xa6\\x71\\xe8\\x6c\\xe1\\x08\\x5c\\x9c\\x2e\\x61\\x3d\\xe6\\xd2\\x71\\xeb\\xf6\\xf7\\xe2\\x75\\xe5\\xb8\\x5f\\x06\\x64\\x33\\xd7\\xe2\\xa0\\x64\\x28\\xb6\\xda\\x72\\xf3\\xaa\\x86\\xb8\\x57\\x4d\\x8b\\x17\\x3e\\xe3\\x2f\\x42\\xf2\\x82\\xa7\\x5c\\x0b\\x8b\\xe8\\x41\\x30\\x7e\\x99\\xea\\xb4\\xa2\\x6c\\xd4\\xc3\\xb2\\xb3\\x58\\xe9\\x32\\x0a\\x44\\xcd\\x6d\\xc4\\x35\\x43\\x13\\xfe\\xb7\\x83\\x62\\xcc\\xdd\\xd9\\x59\\x92\\x83\\xa4\\x7d\\x2d\\xd3\\x46\\x46\\x23\\xc9\\xb6\\x7e\\xb2\\x44\\xb8\\xb8\\x0d\\x8a\\xb6\\xf5\\x45\\x0d\\x53\\x64\\x83\\xfd\\xb4\\x0b\\x2f\\xec\\x16\\x74\\x1b\\x3c\\x67\\xf3\\xf9\\x24\\x98\\x27\\xf2\\xe1\\x4a\\xfb\\xfd\\xb6\\xf5\\x06\\xda\\x99\\x13\\x4a\\x25\\x65\\x2a\\x46\\x5b\\x23\\xbc\\xdc\\x52\\x04\\xf8\\x70\\x37\\x26\\x0f\\xca\\x95\\xba\\xd9\\xfc\\x23\\xca\\x35\\x5a\\x7d\\xf6\\xe0\\xec\\x19\\x66\\x3b\\x66\\x4d\\x45\\x21\\x3d\\x3d\\x3c\\x7b\\x77\\x2e\\x49\\x4a\\xb9\\xf0\\x52\\xc1\\x8c\\x99\\x86\\xe3\\x25\\x49\\xc5\\x45\\x36\\xae\\x67\\x26\\x39\\xeb\\x73\\x5b\\x2f\\x3e\\x7d\\x1d\\x5a\\xb2\\xda\\x14\\x28\\xc9\\x95\\xc0\\x2f\\xe5\\x72\\x7e\\x73\\x58\\x56\\xb4\\x6a\\xb2\\xa1\\x49\\xe9\\x41\\xd9\\x1f\\xf7\\xd2\\x9a\\x19\\xe8\\xd5\\x38\\x3f\\x12\\xef\\x19\\x83\\x91\\x5c\\xa6\\x2d\\x84\\xf0\\xe1\\x24\\x88\\x0e\\x89\\x36\\x18\\x66\\xca\\xe1\\x37\\xee\\x59\\x6a\\xac\\x6b\\xb7\\xfa\\x38\\x6b\\x76\\x7b\\x16\\xd5\\x8d\\xe6\\xc1\\xbe\\xf0\\x1b\\x3f\\xa4\\x9c\\xa5\\x41\\xe0\\x8a\\x65\\xcd\\xff\\x62\\xd4\\x79\\x6c\\xba\\xe2\\x96\\x56\\x2d\\x51\\x16\\xc2\\xaa\\x84\\xab\\xa1\\xe6\\xcc\\x11\\x0d\\xf1\\xe4\\x0b\\xe3\\xaf\\x9c\\xb6\\xc4\\x29\\x06\\x7d\\xfb\\xb8\\x2c\\x2b\\x2c\\x50\\xc1\\x3f\\x34\\x72\\xac\\x99\\x3d\\xa4\\x5a\\xbf\\xa0\\x9a\\x71\\x45\\x6f\\xca\\x36\\x79\\xf3\\x19\\xc2\\x8a\\x1f\\x6a\\xdc\\xd2\\xdc\\x67\\x51\\x56\\x10\\xcf\\x64\\x16\\x90\\xdd\\x07\\x50\\x9e\\x13\\xd3\\x67\\x14\\x10\\xcd\\xb3\\x0e\\x85\\x8d\\xfa\\xa6\\x1b\\x28\\x1f\\xf6\\xc8\\x30\\x92\\xdd\\x7f\\x87\\x80\\xba\\xf0\\x3d\\xb6\\xa9\\xd0\\xf1\\x3d\\xb5\\x69\\xd3\\xf1\\x3d\\xbc\\xf1\\x8b\\xdd\\x29\\x7f\\xd0\\xeb\\x7d\\xd2\\x33\\x7c\\x41\\x75\\xc3\\x60\\x89\\x7a\\xf4\\x52\\xdc\\xa3\\x32\\x44\\x2c\\xf6\\x52\\xdc\\x33\\x31\\x44\\x58\\x81\\x16\\x8e\\x72\\xea\\xa1\\xbf\\xf1\\xeb\\xa1\\x73\\x22\\x45\\x11\\x47\\xe7\\x87\\x1a\\x57\\xbe\\x41\\xea\\x9b\\x2a\\x45\\xb0\\x34\\xc7\\x27\\x81\\x25\\x44\\x3f\\x6a\\xea\\xad\\xda\\x36\\xc4\\x4a\\xb4\\x1b\\x84\\x79\\x38\\x49\\x93\\x3a\\xb9\\xa8\\x4d\\x30\\x3f\\x67\\xfe\\x30\\x23\\xcd\\xad\\xbd\\x4e\\x1a\\xe1\\x9c\\x50\\xfb\\x23\\xba\\xc5\\x89\\x46\\xae\\x66\\x9d\\xbe\\xdb\\x94\\x90\\x6e\\x18\\x5b\\x8b\\xd3\\xae\\xb2\\xdf\\x05\\xc2\\x4d\\xce\\x87\\x0b\\x8e\\x16\\xb2\\x2b\\x7e\\xb1\\xb4\\x76\\x93\\xf4\\xe9\\x84\\x7f\\xd1\\x31\\xe4\\x7c\\x02\\xcf\\xd4\\x1e\\xfe\\x59\\xee\\x0a\\xaf\\xa3\\xaa\\xe0\\xb2\\x72\\xa2\\x49\\xc6\\xf1\\x32\\x7b\\xb2\\xd1\\x63\\x3a\\x2e\\xdb\\x88\\xf8\\xc0\\x4d\\x11\\xce\\xb5\\x51\\xe4\\xe7\\x51\\xd5\\xe8\\xf4\\x1c\\xc9\\x73\\x73\\x96\\x33\\x4d\\xa1\\x21\\xfc\\x75\\xa9\\x57\\x60\\xcb\\x3d\\x9d\\xbe\\x10\\xe6\\xbb\\x02\\x60\\x40\\x82\\xfb\\x16\\xc3\\xc4\\x8a\\x5e\\x4d\\xf1\\xcc\\x8a\\x20\\x39\\xbe\\xb6\\xb7\\x78\\x4a\\xf7\\xf5\\x42\\xad\\x38\\x51\\xa8\\x0e\\x96\\x4f\\x7e\\x2c\\x0c\\x1d\\x6e\\xc0\\xaa\\x8c\\xfd\\x6b\\x66\\x52\\xeb\\x32\\x13\\x76\\x07\\x13\\x27\\x19\\x77\\x36\\xaf\\xee\\x48\\xe3\\x53\\x7e\\x00\\xfe\\x80\\xe2\\x04\\x8e\\x74\\xa3\\x16\\xe3\\x64\\x54\\x2a\\x34\\xd7\\xc5\\xe9\\x25\\xb6\\xa9\\x97\\xde\\x43\\xe2\\x75\\x26\\x9a\\x0b\\x9d\\x72\\x6e\\x89\\x22\\xb0\\x12\\x3b\\xc5\\x63\\x8a\\x60\\x93\\x16\\x17\\x06\\x98\\x85\\x17\\xd8\\x27\\x08\\x39\\xe0\\x21\\xa8\\xf0\\x1f\\x62\\xe0\\x93\\x16\\x9a\\xc0\\x80\\xe6\\xc2\\x05\\xaa\\xd9\\xb0\\xff\\x90\\xf4\\xd1\\xe5\\x20\\x34\\x3b\\x77\\x14\\x46\\x7c\\x14\\x96\\x7f\\x10\\x58\\x1c\\x55\\x09\\xe5\\xb8\\x38\\xcf\\x01\\x4f\\xb4\\xe0\\x45\\xf7\\x4e\\xef\\x8d\\x53\\x68\\x4a\\x00\\x7f\\x94\\xf7\\xa4\\x63\\xd9\\x90\\xe4\\xd8\\x28\\xee\\x9c\\x1b\\xbc\\x1e\\xda\\xb6\\xdd\\x11\\xcc\\x8f\\x39\\xdf\\xd5\\x37\\x6e\\x6c\\xbc\\x2b\\x24\\x0a\\x30\\xeb\\x60\\x29\\xf7\\xe2\\x25\\x90\\xb6\\xef\\x48\\x8a\\x8d\\x2e\\x11\\x50\\xbf\\xd8\\xd7\\xf7\\x31\\x0b\\x24\\xb6\\x93\\x35\\x04\\x72\\x2f\\xcb\\x30\\x9f\\x2b\\x72\\xaf\\x5b\\xf8\\xe6\\x8f\\xd3\\xf7\\x3a\\xae\\x48\\xb2\\x43\\x42\\x6e\\x9a\\x1c\\xc1\\x53\\x4c\\x40\\xd6\\x07\\xd8\\x28\\xa4\\x7a\\x41\\xa4\\x0b\\xb3\\x11\\xc1\\x3a\\xb8\\x69\\xcb\\xe6\\xce\\xfd\\xbb\\xb9\\x9d\\x56\\xfa\\x0a\\xfd\\xd9\\x3f\\xe9\\x1b\\x0d\\x6e\\x72\\xcf\\xf9\\xfc\\x73\\xb7\\x20\\x68\\xa2\\xc9\\x8d\\xe4\\xba\\x78\\xb9\\x07\\xb1\\xe0\\xb0\\x37\\xde\\x5c\\x49\\x7d\\xe5\\x90\\x60\\x66\\x5d\\x5f\\x4a\\x37\\x85\\xc7\\x4d\\x21\\x07\\xd6\\xd4\\x98\\x42\\x4b\\x41\\xbb\\xc3\\x35\\xbc\\x7c\\xa2\\xbe\\x82\\x29\\x93\\x1c\\xdf\\xd1\\x77\\xfa\\xdf\\x8b\\xf7\\xb8\\x91\\x6b\\x83\\x9a\\xb0\\x3a\\x15\\xd9\\xa1\\x22\\x74\\x3d\\xab\\xa0\\x0e\\xa1\\x41\\x09\\xfd\\x0a\\x18\\xaf\\xe3\\x0d\\xb8\\x30\\xc3\\xae\\x9a\\xa6\\x34\\x36\\x46\\x7e\\x6a\\xd9\\x7d\\xc4\\x46\\xd4\\x56\\x7e\\xa5\\x7d\\x99\\x7c\\x07\\x6f\\xcc\\x7d\\x2a\\x89\\x0d\\x2e\\xbf\\x44\\x11\\x57\\x70\\x80\\x33\\xd6\\x21\\x21\\x09\\x68\\xd9\\x43\\xa3\\xb2\\x10\\x44\\xfc\\x42\\xf8\\x3d\\xe7\\xc7\\x82\\x30\\x3a\\xdb\\x49\\x51\\xcf\\x42\\x28\\x0e\\x76\\xcf\\x92\\x27\\xf0\\x50\\x42\\x31\\xef\\x87\\x8a\\x40\\xb1\\xe0\\x07\\x3b\\x55\\x5a\\x20\\x09\\x66\\xc1\\x92\\x27\\x0b\\xf6\\x93\\xa5\\x36\\x82\\x0c\\xc1\\x6c\\xce\\x8f\\x0d\\x81\\x61\\xb0\\x13\\x41\\xce\\x31\\xb4\\xcf\\x4b\\xd9\\x59\\x9b\\xb7\\xdc\\x23\\x0b\\x3b\\xc4\\x14\\xef\\xdd\\x60\\x3b\\xf8\\xc9\\xaf\\xaf\\x3a\\x74\\xb4\\x5a\\x7c\\x54\\x66\\xc4\\x60\\x3b\\xf4\\x2c\\xa8\\x4f\\xa6\\x74\\x54\\xc6\\x74\\x54\\xe6\\xc4\\x80\\x2f\\xe8\\x2c\\xa0\\x4f\\x26\\x75\\x54\\x46\\x6d\\x54\\x66\\x65\\x5f\\x2b\\x07\\x17\\x82\\x5f\\xae\\x76\\xe5\\x38\\x58\\x1f\\x5f\\x77\\xc8\\xb5\\x8f\\xfd\\xc8\\x04\\xc9\\xdd\\x4f\\xc6\\xea\\xbf\\x6c\\xfb\\xfd\\x0d\\x20\\xb9\\x81\\x24\\x79\\x42\\x09\\x28\\xad\\x35\\x3f\\xeb\\x78\\xe6\\x3a\\x0a\\xa1\\xc1\\x20\\x13\\x8b\\xf9\\xc7\\x89\\x91\\x23\\x27\\xcc\\x0a\\x09\\xd9\\xe6\\xbb\\x0a\\x8b\\x7b\\xa0\\x20\\x93\\x86\\xad\\x9a\\x2c\\xda\\x5f\\xca\\x36\\xb5\\x50\\x4e\\x77\\x1d\\x44\\x2d\\x7c\\x6c\\x72\\x1d\\x3d\\x6f\\x67\\x7f\\x7f\\xef\\x78\\xb6\\xa4\\xae\\x5c\\xfc\\x8e\\xf9\\xde\\x26\\x0f\\x2f\\xd0\\xb9\\x99\\x54\\x22\\xb4\\xce\\x76\\x7e\\xd6\\x79\\xd2\\xb4\\xbc\\x22\\x84\\x27\\x6f\\x25\\x4e\\x20\\x23\\x1c\\x2c\\xd4\\x4b\\x52\\xf1\\xb6\\xf6\\xf6\\xee\\x30\\xc4\\x80\\x0c\\xca\\x0b\\x04\\x04\\x40\\x1c\\x2a\\x70\\x51\\xc0\\x57\\x71\\x68\\x2f\\x11\\x16\\xfd\\x41\\x40\\x2a\\xce\\xdc\\x78\\x79\\x78\\xb4\\xa6\\x21\\xaa\\x24\\x20\\x0b\\xc2\\x19\\xd2\\xdc\\xce\\xe8\\xdd\\xfa\\xb5\\x70\\xa3\\x84\\xfe\\xa4\\x45\\x86\\x2a\\xf8\\xc4\\xbe\\x1a\\xff\\xe5\\x69\\x14\\x7e\\x8f\\x44\\x16\\x63\\x0b\\x6a\\x4d\\xfc\\x64\\x2d\\x12\\xaa\\x33\\xab\\x79\\xcf\\x48\\xd8\\x9e\\x40\\xfe\\x19\\x25\\x01\\x3d\\x0c\\x0d\\x7d\\x0e\\x07\\x08\\x8e\\xd6\\xea\\xe0\\x05\\x71\\xc6\\xdc\\x40\\x27\\xe9\\xe7\\xb4\\xa8\\xd5\\x82\\x02\\x38\\xb3\\x2a\\xa7\\xab\\x38\\x97\\xcc\\xfd\\x8e\\xff\\x5e\\xb4\\x8e\\x4a\\x2f\\xec\\xaa\\xa2\\xa3\\x35\\x7a\\x64\\x9b\\xd8\\x3c\\xa2\\x99\\x24\\x51\\xb0\\x51\\xe8\\x5e\\xfe\\xc1\\xc1\\xc1\\xa9\\xe7\\xc2\\x5b\\xb4\\x4b\\x47\\x6b\\xe0\\xe5\\x97\\xf4\\x90\\xf5\\xfb\\xc8\\xc0\\x22\\x28\\x50\\x9f\\x7e\\x04\\x75\\x47\\xfa\\x12\\xf9\\xa8\\x33\\xcb\\x3b\\xa2\\xf5\\x67\\x0c\\xf2\\x0b\\x18\\x6c\\x09\\xe0\\x1d\\xce\\xf1\\xf7\\xfc\\xbb\\x21\\x13\\xd8\\xe7\\x5f\\x86\\xd7\\x0a\\xed\\x24\\xbb\\x03\\xe3\\x20\\x45\\xec\\x2b\\xa7\\x73\\xab\\xc4\\xa4\\x0b\\x9b\\xb7\\xad\\x55\\xdf\\x16\\xdd\\xf9\\xa0\\x77\\x83\\x23\\x02\\x3f\\x2d\\xce\\x14\\xa3\\x13\\xe7\\x88\\x8a\\x98\\x2b\\x20\\xe1\\xf0\\x62\\x1d\\xa6\\x00\\x83\\x0e\\xad\\xac\\xa8\\x0d\\x9e\\xa7\\x25\\x27\\xec\\xe5\\x81\\xf4\\xf9\\x79\\x07\\x7a\\x1c\\x4c\\x29\\xc2\\x11\\x03\\x4f\\x12\\xc4\\x40\\xc8\\xe3\\x07\\xee\\xef\\x48\\x14\\x43\\x7d\\x74\\x9a\\x83\\xf0\\x92\\x90\\x30\\xf5\\xa2\\x38\\xaf\\x3d\\x81\\x07\\xd1\\xc6\\x79\\x4c\\xa3\\x64\\x32\\xd9\\xce\\x2a\\xe9\\x9e\\x46\\x43\\xc8\\x84\\x5d\\x3f\\xff\\x97\\x28\\x3a\\xad\\x01\\xf6\\xef\\x92\\x95\\xe2\\x20\\x72\\x31\\x59\\xb4\\xd9\\xbe\\x70\\x1d\\x0d\\x13\\x24\\xb5\\x61\\x18\\x71\\x02\\x9f\\x8a\\xd9\\xa4\\xf9\\xa0\\x5e\\x04\\xd1\\xf2\\x24\\xa8\\x74\\x77\\xc2\\x1a\\x9f\\xee\\xfc\\xe3\\x68\\x49\\xff\\xa5\\x7f\\xe8\\x79\\xc8\\x9f\\x17\\xd7\\xcc\\x5b\\x9e\\x5f\\x4b\\x36\\x54\\x0d\\x72\\x6c\\x45\\x82\\x62\\x1b\\x42\\xee\\x0f\\x24\\x89\\x31\\x9d\\xf9\\x81\\x08\\x03\\xb4\\x72\\x93\\x29\\x7a\\xec\\x87\\xcf\\x34\\x29\\x1c\\xc7\\xeb\\xf5\\x7a\\xab\\x73\\x6a\\xc9\\x5d\\x62\\x2a\\xcb\\x3d\\xb5\\x0d\\xc6\\xbe\\xb6\\x31\\x97\\x99\\x3b\\xb0\\x14\\x6b\\x5e\\x35\\xb5\\x1e\\x23\\x90\\x89\\xcd\\x56\\x7f\\xcb\\x5a\\x6b\\xe7\\x7f\\x76\\xd5\\x34\\xfa\\xd6\\x56\\x3a\\xfb\\xca\\x35\\x5f\\xfe\\x7b\\x09\\xca\\xba\\x7b\\x40\\xbb\\xe2\\xfe\\xf9\\x94\\x47\\x8b\\x23\\xc4\\x23\\xd9\\xf6\\x46\\x7e\\x8d\\xfb\\x0d\\xa2\\x98\\x67\\xa4\\x1c\\xb6\\x1e\\x07\\xb7\\x86\\xdb\\x46\\xd7\\x5b\\x04\\x06\\x8e\\x5d\\x23\\x84\\x05\\x12\\xaa\\x0f\\xd8\\xff\\x26\\xb3\\xab\\x07\\x11\\x81\\x26\\x15\\x2c\\x2b\\xca\\x88\\xf0\\x77\\x25\\xca\\xa1\\x3f\\xca\\x0e\\xdf\\xf6\\x5d\\xf7\\xf3\\x73\\x1e\\x43\\x71\\xda\\x50\\xfe\\xa9\\xde\\xd7\\x5c\\x1e\\x2e\\x37\\x60\\x82\\xb6\\xd5\\x1c\\x7e\\x3d\\x6f\\x55\\x12\\xa0\\xef\\x20\\x2f\\x00\\xa2\\xff\\x4b\\x52\\x94\\x42\\x1f\\x3d\\xc4\\x93\\xd2\\x0d\\x8c\\x42\\x69\\xf1\\x39\\x07\\xd4\\x33\\x56\\xbb\\xba\\xd9\\x75\\x41\\x3c\\xb4\\x9d\\x7d\\x33\\x2e\\x37\\x29\\xa9\\x12\\x09\\x69\\x65\\x61\\x84\\xc7\\x9b\\xe3\\x08\\xfd\\xe4\\xb4\\x79\\xa3\\x03\\xcf\\x42\\x6f\\xe6\\x17\\xd5\\x69\\x21\\x01\\x39\\xf9\\xd1\\x59\\xff\\x80\\xf3\\xdb\\xd8\\x98\\xbb\\x47\\x1b\\x87\\x7c\\x20\\x8e\\x65\\x2b\\xdc\\xf2\\x5c\\x89\\xb4\\xd2\\x41\\x59\\xd3\\x30\\xd3\\x7c\\x5a\\xfa\\x1a\\x83\\xc5\\x9c\\xea\\xb1\\x85\\x73\\x1b\\xc6\\xfa\\x4f\\x6d\\xe3\\x1c\\xd9\\x54\\xb5\\x62\\x6d\\x9f\\x15\\x26\\x49\\x7e\\x0b\\xdc\\xa6\\xc5\\x3f\\xd8\\x32\\x07\\x61\\xc9\\x3e\\x45\\x4b\\xc7\\x2a\\xe7\\x16\\xce\\x49\\xea\\x99\\x9a\\xe5\\x9e\\xf4\\xd1\\x8e\\x45\\x44\\xef\\xb1\\x79\\xff\\xd8\\xbf\\x27\\xb5\\xf3\\xea\\xa5\\x44\\xdd\\x47\\xc3\\xf9\\xec\\x82\\xd6\\x64\\xca\\x61\\x11\\x5f\\xa3\\x5a\\x9f\\x14\\x70\\xa1\\x26\\x6f\\x03\\xca\\xf6\\x86\\x94\\x28\\xdf\\x82\\x21\\xfd\\xb4\\xc1\\x19\\x9a\\x55\\xe0\\x7a\\xed\\xbb\\x4f\\x56\\xcb\\x2b\\xba\\x7f\\xc8\\x52\\x1e\\x5c\\x17\\x5d\\x0a\\xf8\\x08\\xed\\x0b\\x05\\x25\\xa1\\x8a\\x61\\xbe\\x71\\x72\\xfa\\xb0\\x35\\xc4\\xc4\\x20\\x8e\\x9c\\x3f\\x36\\x8e\\xdf\\x37\\x76\\x3e\\xf2\\xc8\\x18\\x49\\x17\\x44\\x05\\x63\\x58\\xb4\\xf9\\x60\\x30\\x09\\x27\\xfb\\x0f\\x19\\xb0\\x8a\\xc2\\x32\\x15\\x0f\\x13\\x42\\x4b\\x6b\\x27\\xe8\\x8b\\x8b\\x68\\x54\\xe9\\xc5\\xc1\\x04\\x24\\x9c\\xc7\\x40\\x2b\\x48\\x52\\x93\\x3e\\x98\\x23\\xd1\\x55\\x54\\x87\\x8f\\x2f\\x9a\\xb8\\x26\\x1b\\x36\\x72\\x31\\x4e\\x6b\\x95\\xec\\xc0\\x3a\\x52\\x8a\\xf1\\xa8\\x28\\x3e\\x9e\\xcf\\xa5\\x67\\xb8\\x92\\x71\\xcb\\x59\\xd7\\x97\\x2a\\x23\\x18\\xf1\\xcf\\x7b\\x0f\\x93\\x5d\\xc3\\xcd\\x5b\\x9f\\x06\\x2e\\xb6\\x97\\xeb\\x53\\x30\\xf1\\xa6\\xe9\\x42\\xcf\\x95\\xbb\\x08\\x8b\\x35\\x49\\x88\\x26\\x8d\\x55\\x5f\\xd1\\x19\\x1e\\x35\\xb3\\x19\\x5a\\x5c\\xfd\\xd6\\x11\\x93\\x72\\xb6\\x9f\\x14\\x63\\x2c\\xdf\\x7f\\x9b\\x0e\\xce\\xb5\\x7a\\x0d\\x25\\x51\\xb9\\x4a\\x89\\x0e\\xdd\\x88\\x68\\x81\\x77\\x25\\xf3\\x84\\xed\\xd3\\x00\\xff\\x66\\xff\\x55\\x73\\x7c\\xf6\\xf3\\xe3\\xb7\\x31\\x71\\xaa\\xa2\\x73\\xa3\\x15\\x93\\x75\\xa2\\xb6\\x9a\\x51\\xc4\\x1c\\x06\\x0b\\x31\\x78\\xda\\x41\\xc4\\x6d\\x16\\xba\\xad\\x52\\xd7\\x1c\\x1b\\x56\\x9d\\x5e\\xa4\\x57\\x1d\\x1b\\xbc\\x44\\xfe\\x8f\\xba\\xdf\\x91\\x45\\x02\\x1f\\x16\\xad\\xb8\\x50\\x22\\x12\\xfa\\xcb\\x56\\xfd\\x8e\\x7b\\x5b\\x9f\\x1c\\x3d\\x1a\\x9f\\xf8\\xbf\\x78\\xa6\\xe9\\x82\\x48\\x19\\xc3\\x9d\\xe0\\xba\\x7e\\x87\\x07\\xa9\\xf5\\xbb\\x33\\x28\\xb6\\x20\\x21\\xb5\\xa8\\x27\\xe7\\xa7\\xa5\\xfb\\xb8\\x29\\x27\\x29\\x96\\xac\\x18\\x5a\\x85\\x14\\xd7\\x07\\x97\\x7a\\xae\\xb4\\x5c\\x5e\\x8c\\x8f\\x9e\\xae\\xaf\\xd4\\x77\\xdf\\x9c\\x05\\x2b\\x5e\\x7a\\xe1\\x4b\\x12\\xde\\x8f\\xbc\\x21\\x34\\xc7\\xf2\\xee\\x3f\\x29\\xc5\\x93\\x0f\\xe9\\xba\\x77\\x9b\\xd7\\xd6\\xfd\\x83\\x26\\xce\\x7b\\xad\\x18\\xec\\x49\\xbe\\x6f\\xd9\\xee\\xe3\\x47\\x35\\x14\\x34\\xa1\\xe8\\xdd\\x5b\\x94\\xf9\\xab\\x63\\xfb\\x57\\x4c\\x34\\x38\\x94\\x3a\\xac\\xc9\\x69\\xef\\x8c\\x2f\\xbc\\xa7\\xdc\\x53\\xf7\\xe0\\x7d\\xbb\\x14\\x73\\xfc\\xef\\x55\\xc5\\x6b\\xce\\x6b\\x2a\\xc1\\x9a\\x85\\xd5\\x0e\\xba\\xa0\\x2f\\xd3\\x3d\\xfa\\xe9\\x90\\xed\\xaa\\xc5\\xbd\\x2f\\xcd\\x97\\x86\\xd7\\x8b\\x3b\\xa5\\x6a\\x37\\xcc\\xce\\x6e\\x96\\x17\\x08\\xac\\xa8\\x25\\xde\\xf8\\xac\\x0a\\x51\\x9f\\xa0\\x3f\\x08\\x93\\xbf\\x1e\\xb4\\xe0\\x51\\x92\\x1e\\x0b\\x2a\\x28\\xfa\\x58\\x5e\\xc3\\xfd\\xa0\\x88\\x93\\x24\\xbe\\x51\\x10\\x96\\x5d\\x4d\\xab\\x30\\xdc\\x46\\x60\\x4b\\xc8\\xc0\\x8f\\xae\\x56\\x70\\xa2\\x7f\\xdf\\x5f\\xa5\\x3a\\xf3\\xf5\\xe6\\xc7\\xd0\\x3c\\x44\\x88\\xd9\\x69\\xd9\\x68\\x3d\\x5a\\xb2\\x98\\x3e\\x4d\\xe0\\x20\\x19\\xe2\\xe4\\xad\\x74\\xd7\\xce\\x19\\x5b\\x8f\\x88\\x08\\xfb\\x28\\xc7\\x9a\\x1c\\x02\\xe0\\x00\\xc9\\x69\\x61\\xca\\xd8\\x65\\xfc\\x08\\xeb\\x36\\x2e\\x11\\x78\\x95\\x0c\\x64\\x06\\xc2\\xe1\\x4f\\xce\\x29\\x64\\x07\\xb4\\x6e\\xe8\\x9b\\x08\\x52\\x9b\\xba\\x1f\\x3a\\x2e\\x07\\xba\\xb6\\x28\\xac\\xb7\\x63\\x3f\\x5e\\xf3\\x7f\\xa5\\x6e\\xed\\xd3\\x9f\\x16\\xdf\\x14\\x10\\xa2\\x1f\\xab\\x93\\xde\\xae\\x76\\xac\\x9b\\x35\\xff\\xc1\\x6b\\x50\\x0b\\x1c\\x92\\x5e\\x5a\\x42\\xc9\\x1f\\x8b\\x70\\x6d\\xbe\\x99\\x2f\\x6a\\x6c\\x59\\x2e\\x8f\\x96\\x2a\\x9d\\xfe\\xcb\\xfb\\x0d\\xe9\\x1a\\x67\\xbb\\xff\\x82\\x22\\x68\\x89\\x1b\\xd1\\x81\\x41\\x87\\x94\\xb8\\x28\\x73\\x23\\xd7\\x7d\\xa6\\xa0\\x2f\\xc9\\x3d\\x7a\\x49\\x76\\x7c\\xdc\\x73\\xc0\\x9f\\xdf\\x72\\xc6\\x47\\x5c\\x16\\x4f\\x08\\x4e\\x07\\x2e\\x0f\\x2b\\x6b\\xcd\\x43\\xb2\\x62\\xac\\x21\\x9d\\xce\\xb2\\xa3\\x30\\x32\\x7b\\x80\\x65\\xd9\\x3e\\x67\\xc1\\x5a\\xa2\\xa9\\x99\\x70\\x7f\\x9f\\x90\\x50\\xa5\\xda\\xac\\x73\\x34\\x05\\x35\\x7a\\x63\\x76\\x4d\\xba\\x7d\\x01\\x62\\x2d\\x06\\xbc\\xed\\x3e\\x6e\\xc7\\xac\\xf8\\xc1\\x3c\\xcb\\x1d\\x6c\\x9f\\x91\\x12\\xa9\\x44\\x50\\x9e\\x98\\x49\\x33\\x4a\\xdc\\xa9\\x07\\x32\\xa5\\x5d\\xc2\\xcf\\xa5\\xe9\\x95\\x09\\x61\\x49\\xb5\\xd0\\x95\\x3f\\x87\\xee\\x2a\\x1e\\x4a\\x4b\\x48\\x2c\\x4a\\xaa\\xf7\\x62\\x5a\\x22\\x38\\xd8\\x1a\\xa9\\x08\\x14\\xa1\\x76\\x4a\\x88\\xe7\\x4f\\x33\\x09\\xc0\\xc7\\xf7\\x53\\x9b\\xd6\\x4b\\xf3\\xf3\\xf7\\x3c\\x9d\\x47\\x61\\xf4\\x32\\x3d\\x7c\\x2e\\xbf\\x55\\x2e\\x2c\\x1f\\xf9\\x12\\xbe\\xba\\x99\\x99\\x6c\\x89\\xb8\\xaf\\x5c\\x7b\\xd0\\xfa\\x64\\xb8\\x99\\xa8\\x99\\x2e\\xc5\\x24\\xbb\\x5c\\xd5\\x2c\\x18\\x8c\\x34\\xeb\\x6a\\x9d\\x9f\\xb5\\x3d\\x46\\x5a\\xc7\\x75\\x5f\\x61\\xca\\x3d\\x3d\\x6a\\x7d\\x1d\\xb1\\xdd\\x49\\x85\\x73\\x6d\\x1e\\xa6\\x55\\xc8\\x55\\x7a\\xdf\\xbe\\xd9\\x38\\x67\\x9d\\x04\\x07\\xd4\\x65\\x24\\x71\\xbd\\xe3\\x4a\\xb8\\x3c\\x51\\x07\\xdd\\xda\\x9e\\xf9\\x40\\xa0\\x9f\\xc5\\x3d\\xe0\\xf6\\xe1\\x56\\x08\\x40\\xaf\\xc5\\x31\\x47\\x9d\\xfd\\xae\\x8e\\x7f\\x30\\xc9\\x86\\xf9\\x5e\\xa6\\x95\\xed\\x2f\\x75\\xe0\\x7b\\x3f\\x9f\\x8c\\x2d\\xba\\x78\\x47\\xd9\\x27\\x7e\\xad\\x25\\xa1\\x95\\x74\\xfc\\x65\\x28\\x80\\xbb\\xc1\\x64\\xe7\\xd7\\x66\\x0e\\x4e\\x18\\x4c\\xd3\\xee\\x1c\\x23\\x8c\\xa7\\x63\\x63\\xd9\\x14\\x3f\\xa6\\xef\\x25\\xe0\\x54\\xff\\xc7\\x3a\\x04\\x74\\x7f\\x06\\x97\\x49\\x06\\xa4\\x0d\\xa3\\x43\\x60\\x4a\\x94\\xc6\\x36\\x40\\x6e\\x12\\x2f\\x78\\x3d\\x29\\xe4\\x6c\\xfe\\xa7\\xab\\x12\\x55\\x6b\\x1f\\xa3\\xab\\x7b\\xd9\\xcb\\x65\\xe3\\xd4\\x22\\x83\\x15\\xaa\\x78\\xdd\\x6a\\xf8\\xca\\x89\\x5c\\xb4\\xdc\\x21\\xba\\xcc\\x52\\xb1\\x91\\xb5\\x7a\\xd5\\xa6\\x5d\\x9f\\x76\\x0a\\xf3\\xfb\\x6f\\xf1\\x21\\x61\\xcf\\xe6\\xa3\\x08\\x93\\x9b\\xee\\x77\\x9b\\xaf\\xf4\\x4f\\x6a\\x6d\\x5d\\x10\\x2a\\x67\\xf4\\x21\\x7f\\x78\\x89\\x0b\\x61\\x3f\\x14\\x08\\x18\\x26\\xc1\\x61\\xb8\\x85\\x24\\xd9\\x61\\x92\\xb5\\xde\\xab\\xa7\\x1a\\x3f\\x58\\x88\\x37\\x8d\\x74\\xf3\\xf2\\x70\\x48\\x6b\\x23\\x21\\x2d\\x40\\x29\\xfd\\x8c\\x2f\\x32\\x26\\x42\\xf1\\xb5\\xc9\\xfc\\xfe\\x2c\\x1a\\x04\\x16\\x21\\x4b\\x9d\\x62\\x63\\xdb\\x58\\xa2\\x3c\\x97\\x92\\x36\\xdb\\x72\\x0c\\x60\\xa7\\xcb\\xe9\\x98\\x5d\\x70\\x36\\x19\\xae\\xa1\\x3c\\x9f\\xf6\\x3e\\x55\\x3f\\xeb\\x3f\\xba\\xde\\xa6\\xe6\\xae\\xb8\\xe5\\x69\\x76\\xa2\\x55\\x49\\xa1\\x6f\\x34\\x3e\\xb4\\xde\\x54\\xeb\\x12\\x28\\x10\\xd4\\x65\\x54\\x54\\xec\\x1e\\x4b\\x8f\\xd3\\xea\\x28\\x2f\\x7a\\x8a\\x87\\xc9\\x74\\x7e\\xbd\\xd3\\x99\\x10\\x90\\xaa\\x13\\xfa\\x5e\\xae\\xf9\\x52\\x32\\xe4\\xe4\\x3c\\x28\\x7d\\xa7\\x3a\\xfe\\xa9\\x84\\x6a\\x71\\x92\\xf5\\xc4\\x8c\\x71\\xe7\\xc7\\x60\\x21\\x16\\x76\\x51\\xe4\\x01\\x2f\\x94\\x4f\\xb1\\x16\\xff\\x17\\x16\\x19\\x13\\xf0\\xb3\\xc3\\xf0\\xdd\\x88\\xe4\\xa4\\xeb\\xf9\\x29\\xb1\\x26\\x86\\xef\\x33\\x11\\x4d\\xf9\\x37\\x71\\x13\\x4b\\x3a\\x2f\\x65\\x22\\xec\\x63\\xa5\\x27\\xe7\\x85\\x65\\x2f\\x12\\xc9\\x8d\\xec\\xf6\\x1d\\xf7\\x75\\x2c\\xcf\\x0d\\xbe\\x44\\x6a\\xf4\\xbe\\x3e\\x26\\x09\\x9e\\x58\\x80\\x3f\\xef\\xf9\\x3a\\xef\\x45\\x42\\xf0\\x2d\\x06\\x17\\x1f\\x3c\\x0b\\x34\\xcb\\xaf\\x12\\x99\\xfc\\x16\\x54\\x1c\\x04\\x4b\\x0c\\x34\\x34\\x18\\x24\\x37\\x97\\xd8\\x43\\x38\\xe7\\x85\\xfc\\x2f\\x38\\x95\\x74\\xb4\\x16\\x1d\\x9c\\x3c\\xa9\\x30\\x38\\x58\\xe2\\x0f\\x38\\xb4\\x03\\xde\\xfb\\x87\\x48\\xec\\x56\\x87\\x4f\\xc7\\x99\\x78\\xe9\\x89\\xfc\\x77\\x7f\\xb8\\x85\\x37\\x8d\\x83\\x54\\xf6\\x36\\x59\\xdb\\x72\\xf8\\x0c\\xb8\\x49\\x8b\\x1c\\xda\\xda\\x9d\\x3f\\x95\\x52\\xd6\\xda\\x55\\x32\\x95\\x94\\xcd\\x43\\xbb\\xfc\\xfb\\x48\\x27\\x83\\x66\\xda\\x0e\\x67\\xf3\\x4b\\xf9\\x7d\\x96\\x48\\x1c\\xb4\\x24\\xb1\\x2f\\x49\\x72\\x2b\\x64\\xc7\\x88\\x04\\x56\\x76\\x7c\\xab\\xb9\\x78\\x05\\x4c\\x65\\x58\\xcd\\x3e\\x51\\x35\\xbe\\x78\\xdf\\x88\\xf3\\x79\\x56\\x46\\xce\\x46\\xa4\\xe3\\x0c\\x33\\xd2\\x98\\xe0\\xbb\\x6e\\xbb\\x90\\xc8\\x42\\xf3\\x16\\xc5\\xce\\x86\\x98\\xfd\\x69\\x62\\xbe\\xd9\\xcb\\x69\\x25\\x53\\xcb\\xc6\\x95\\xa8\\xa8\\x8b\\x8a\\xd3\\x2a\\x66\\x42\\xe1\\x55\\x7e\\x9b\\x75\\x6e\\x19\\x26\\x9c\\xd4\\xfa\\x13\\xaa\\xb3\\xe8\\x96\\x4f\\x57\\x81\\x8f\\x41\\xb9\\xaf\\x7b\\x03\\x18\\xf5\\xce\\x4d\\xda\\x86\\x6b\\x85\\xa6\\xe2\\x0d\\x55\\x89\\x98\\x23\\x26\\xba\\x4e\\x98\\x02\\x5a\\x63\\x83\\xe5\\xb6\\x37\\x6f\\xda\\xd3\\x46\\xa6\\xe5\\x3c\\x95\\x96\\xae\\xd1\\x8e\\x52\\xda\\x06\\x06\\x03\\x3c\\xdf\\xd3\\xbf\\x1e\\x75\\x3e\\xef\\x8e\\x83\\x50\\x0b\\x2b\\xf4\\x6f\\x96\\xa6\\xb7\\xd5\\xf0\\x6d\\x5c\\x78\\x9f\\x8f\\xf2\\xb7\\x48\\x76\\x3c\\xfe\\x4d\\x4a\\x13\\xb9\\xc9\\x9a\\xe3\\xd1\\x59\\xca\\xbd\\xbc\\x69\\x40\\xa1\\xcb\\xe0\\xd7\\xd4\\xf0\\x31\\x58\\x98\\x3e\\x77\\x07\\x21\\xa7\\x52\\xbf\\xd9\\x57\\x19\\xe2\\x81\\xf6\\xca\\x1f\\x89\\xa3\\x38\\xd1\\x27\\xc0\\x29\\x26\\x27\\x02\\xc6\\x4c\\x7e\\x21\\xa2\\x32\\x74\\x2b\\x8e\\x06\\x30\\xb1\\xb4\\xbe\\xd9\\x9d\\x23\\xb1\\xbe\\xef\\x58\\xba\\x5c\\x74\\x43\\x0d\\xa9\\x65\\x5e\\xe7\\x65\\x3b\\x58\\xf2\\xf8\\x15\\xc2\\x26\\xe2\\x26\\x2c\\xb1\\x8c\\x72\\xe9\\x77\\xd0\\x68\\xf8\\x48\\x84\\x31\\x1d\\xec\\x35\\x9c\\x95\\x11\\xb8\\x6b\\x29\\x8d\\xe8\\xd6\\x5e\\x19\\xbd\\xf3\\xc8\\x0f\\x70\\xf4\\x76\\xdd\\x10\\x02\\x36\\x03\\xe8\\xfb\\x50\\xd1\\x7c\\xe8\\xee\\x2f\\x96\\x74\\x12\\x27\\xa7\\x0c\\x27\\x48\\x6a\\xe4\\x2a\\x57\\x9d\\xf3\\x4b\\xff\\x36\\xa7\\x2b\\x06\\x2b\\xfa\\xbc\\x1c\\x33\\x85\\x95\\x38\\x3c\\x2d\\x84\\x47\\xd6\\xda\\xf6\\x4b\\x2e\\x73\\x8a\\x13\\xe6\\x8b\\xe9\\x2a\\x9b\\x2c\\xcb\\x3b\\x9d\\x3c\\x5b\\x54\\x52\\xd7\\x98\\xb4\\xf5\\x72\\x2d\\x24\\x67\\xcc\\xd6\\x95\\xe5\\xff\\x96\\x73\\x26\\x4e\\x8c\\xe1\\x98\\x53\\x2a\\x53\\x48\\x72\\x99\\x46\\x42\\xe6\\xe0\\x32\\x99\\x22\\xf0\\x73\\xca\\xb3\\x5c\\x50\\xa9\\x50\\xc0\\x6a\\x8a\\xdd\\xb7\\xcb\\xc2\\x6b\\xd0\\x08\\x93\\xa7\\x7c\\x2b\\x33\\xaa\\xe5\\x66\\x69\\xf1\\xab\\x29\\xb0\\x6a\\x1a\\xfe\\x2e\\x4b\\x27\\x2a\\xb2\\x2b\\x20\\xa3\\xac\\xf3\\xa8\\x6f\\x75\\x6b\\x9c\\xd7\\x2b\\xc3\\x15\\xc6\\xca\\xee\\x7e\\x23\\xd0\\xe2\\x49\\x86\\x6a\\x48\\x75\\xd5\\x91\\x3b\\x64\\x1c\\x09\\x44\\x22\\x1f\\x56\\x04\\x13\\xa5\\xb9\\x47\\x78\\xb5\\x2e\\x2e\\xfa\\x03\\xe4\\x82\\xac\\xfd\\xba\\xc5\\xbc\\xc7\\x36\\xe2\\x8b\\xc2\\x7a\\x77\\x6f\\xf5\\x26\\x23\\x09\\x41\\x4a\\xe6\\xa2\\x25\\xac\\x6d\\x1a\\x1e\\xa1\\x24\\x0e\\x00\\x8b\\x87\\x64\\x01\\x69\\x1c\\x9f\\xc3\\x40\\xb6\\xa4\\x68\\x2b\\x46\\x24\\xd8\\x3f\\x31\\xfa\\x69\\x29\\x42\\x46\\xed\\xa5\\x4a\\x01\\xe2\\x92\\xf5\\xd9\\x07\\xf6\\x66\\x64\\x6d\\x7c\\x92\\x64\\x78\\x38\\x59\\xc6\\x69\\xba\\xa0\\x84\\xc6\\xad\\xb3\\x69\\xa4\\x88\\x01\\xcf\\xf7\\x75\\x05\\xa5\\x72\\xfb\\xf1\\x29\\xa3\\x5d\\xbc\\x47\\x59\\xdd\\x91\\x61\\xb9\\x25\\x33\\x06\\xf3\\xa4\\xf9\\x91\\x77\\xb1\\x89\\x74\\xa2\\x44\\x45\\xcb\\x48\\x8b\\xd4\\xd3\\x9a\\xff\\x1d\\x5d\\x58\\xcd\\x70\\xbb\\x88\\x44\\x76\\xc2\\xe6\\xf3\\x34\\x34\\x42\\x06\\xa7\\x07\\xfa\\xd5\\x27\\xbf\\x9d\\x6a\\x79\\xf1\\xd1\\x3f\\x3d\\x3e\\x7f\\x76\\xc0\\x8a\\x11\\x5a\\x22\\x89\\xdc\\xee\\x8e\\xc6\\xbe\\xf3\\xe9\\x5a\\x70\\xfc\\xa8\\x1e\\xdb\\x4f\\x03\\x6d\\x44\\x01\\xaf\\x31\\x0a\\x0e\\xeb\\x05\\xb3\\x2b\\xc3\\x64\\x3f\\x95\\x34\\x69\\xd6\\x3f\\xa8\\x1b\\xf7\\x94\\x34\\x2c\\xc0\\x3f\\xf5\\x0b\\x2d\\x89\\x0a\\x1d\\x4f\\x34\\x4c\\x91\\x88\\x3f\\x19\\xfd\\x26\\x57\\xb0\\x87\\x94\\xbd\\x8d\\xe7\\x97\\xfc\\xe7\\x90\\x61\\x48\\x8f\\x00\\x88\\xc9\\x7b\\x66\\x88\\xef\\xdf\\x4f\\x9a\\xb3\\xde\\x91\\x41\\x82\\x1b\\xbf\\x21\\x9d\\xd5\\xe6\\x20\\x75\\x5c\\x37\\x90\\x18\\x47\\x89\\x43\\x7b\\x91\\x38\\xf8\\x21\\x6e\\x03\\x94\\x44\\x92\\x3c\\x3e\\x11\\x06\\x32\\xda\\x30\\xe4\\x63\\x4e\\x91\\x7e\\x6e\\x7d\\xc5\\x61\\x13\\x8e\\x50\\x77\\x99\\xf9\\xfb\\x40\\x23\\xee\\x0f\\x52\\x4a\\xc3\\x1c\\x1c\\xc3\\xf9\\xae\\x1d\\x81\\x9e\\x93\\xc5\\x2c\\xeb\\xa3\\xae\\xb5\\xec\\xa9\\x43\\xfb\\xd8\\x8c\\x28\\x5a\\xfe\\x18\\x82\\xe0\\x46\\x51\\x7b\\xdd\\xda\\x56\\x57\\x85\\xf6\\x97\\xa7\\xcc\\xef\\x29\\x22\\x0b\\xa5\\xf0\\xd1\\xa8\\x7a\\x3c\\x13\\xf0\\x30\\x42\\xc2\\x05\\x50\\x64\\x44\\x14\\x9b\\x88\\xf9\\xd7\\xc6\\x48\\x0e\\xd9\\x8a\\x35\\xab\\x4e\\x34\\xa2\\x8c\\x58\\xc5\\x53\\xd2\\xf0\\xf5\\x51\\x16\\x6c\\x47\\xc3\\x8a\\xd9\\x8f\\xa2\\x22\\xf9\\x02\\x42\\x6a\\xff\\x69\\xae\\x38\\x4b\\xeb\\xf2\\x90\\xf1\\x4d\\x37\\xef\\xb7\\x38\\x12\\xdb\\x56\\x36\\xbc\\x8e\\x70\\xc3\\xfb\\x78\\xd5\\x95\\xf0\\xfc\\xcb\\xc3\\x7a\\xd9\\x42\\x2e\\x73\\xeb\\xd9\\x39\\x96\\xc0\\x3e\\x33\\x16\\xac\\xf9\\x5d\\x05\\x4f\\x35\\x6b\\xf7\\x82\\x9a\\x92\\x62\\xf6\\x91\\xe6\\x3a\\x65\\x82\\x9b\\xd3\\x3a\\xd6\\xeb\\x2b\\xb6\\xf4\\x0f\\xa4\\xc6\\x24\\xba\\x28\\x57\\xd2\\xe1\\xc3\\x1f\\xaa\\xbf\\x22\\x6b\\x2d\\x98\\x98\\xca\\x38\\x8b\\x89\\xa2\\xee\\xcb\\x62\\x71\\x4f\\x76\\x44\\xb2\\xcd\\x20\\x15\\x2b\\x6a\\x49\\x15\\x2c\\x53\\x62\\xcd\\x0f\\x84\\x39\\x50\\xd5\\x41\\x79\\xa8\\x20\\xfc\\xc9\\x55\\xa8\\x76\\x3c\\x41\\xa8\\xb7\\x2f\\x6e\\xb9\\x12\\xfc\\xef\\xa1\\x7f\\x71\\xd8\\x11\\x02\\xd0\\xc0\\x3e\\x8c\\x81\\xbe\\xd8\\xb1\\x10\\x53\\x3a\\x7a\\x28\\x04\\x26\\x2a\\x78\\x26\\x21\\xe7\\xe2\\x09\\x29\\x7d\\xf2\\xa8\\xf0\\xb7\\xeb\\x66\\xe2\\x17\\xfb\\x26\\x1e\\x65\\x14\\x93\\x9f\\x62\\x01\\x10\\x00\\xba\\x3e\\xbb\\xf3\\xeb\\x46\\x6f\\x1b\\x9b\\x8b\\x35\\x3e\\x29\\x21\\x2d\\x2e\\x29\\x29\\x29\\x0f\\xc9\\xc0\\x3b\\x45\\x5e\\x67\\x1c\\x2f\\xc1\\xd0\\x41\\x55\\x37\\x9d\\x96\\x24\\x00\\x1d\\x86\\xb3\\x32\\x98\\x52\\x0d\\xf9\\xef\\xe4\\x07\\x64\\x33\\xd5\\xbf\\x24\\x9e\\xc2\\xc3\\xe0\\xdf\\xb6\\xc3\\x8d\\x62\\xa7\\x4f\\x93\\xb0\\xad\\x03\\x1c\\xbf\\xd6\\xe3\\x34\\x33\\xcb\\x27\\xd8\\x44\\xe0\\xf6\\x28\\x8f\\x41\\x65\\x0c\\x7c\\xe6\\xd7\\xe5\\xa5\\x41\\xa5\\x69\\xe1\\x58\\xed\\x35\\xc6\\x7e\\x72\\x62\\xd5\\xe5\\xcd\\x8e\\x94\\xc9\\x84\\x34\\xe9\\x83\\xf4\\x96\\x22\\x64\\xe7\\x62\\xf9\\x5c\\xfc\\xe6\\x9e\\x21\\x97\\xe9\\xf6\\xa6\\x68\\x6e\\x1c\\x6d\\x16\\x2b\\xa6\\xaa\\x76\\x19\\x96\\xf3\\xb6\\x2f\\x27\\x65\\x0e\\x88\\x0b\\x8a\\x88\\xff\\x27\\xf7\\x84\\xef\\xe5\\x3b\\x7d\\x1a\\x3e\\x54\\xbf\\x34\\xf7\\xde\\x94\\xa1\\x55\\xa8\\xef\\x2c\\xe9\\x26\\x29\\x1d\\x4f\\xcd\\x1f\\x33\\xaa\\x38\\x32\\xfc\\x9e\\x5d\\x5e\\xb1\\xe8\\xd5\\xc4\\xc5\\xaf\\x52\\x3c\\x56\\x69\\x6d\\x2d\\x87\\xe5\\xa6\\xef\\xea\\xac\\xee\\x94\\x85\\x3b\\xe8\\xf7\\x4a\\xec\\x98\\x35\\xbd\\x3c\\xbb\\x6c\\xb3\\xfa\\x3d\\xb6\\x96\\x52\\x63\\xb9\\x3f\\x35\\xb1\\x51\\xc3\\xbf\\x80\\x89\\x9b\\x0f\\x6b\\x19\\x16\\xa6\\x02\\xbe\\xb0\\xe9\\x7a\\x3e\\x34\\xbd\\x57\\xab\\xcb\\xcb\\x97\\xc1\\xfd\\x74\\x1d\\xbd\\x53\\x81\\x1b\\xfc\\x76\\x76\\xc1\\xc2\\xb9\\x04\\xe9\\xc6\\xcc\\x52\\x60\\x74\\x4e\\x98\\xe0\\x65\\x82\\x4c\\x64\\xc3\\x3e\\x65\\xcb\\x84\\x1e\\xe4\\x14\\xf3\\x4a\\xb8\\xab\\x1e\\x72\\x80\\x0c\\x8a\\xf8\\x24\\x25\\x11\\xe3\\xc6\\xad\\xa9\\xe8\\xdf\\xef\\x47\\x66\\x69\\xe0\\x1f\\x4e\\xca\\x2d\\x84\\xe8\\xe6\\xd3\\xee\\x09\\xe2\\xc3\\x09\\xc2\\xef\\xec\\xb9\\x79\\xbb\\xe1\\x1b\\x3c\\x32\\xc4\\xf8\\xb5\\x5e\\xfa\\x84\\xf5\\xf7\\xf4\\x0a\\xc1\\x2b\\xf9\\xde\\xb6\\xe0\\xb3\\x30\\x0e\\x12\\x5b\\xc1\\x9f\\x84\\x1e\\x1c\\x7a\\xe4\\x9a\\x10\\x2c\\x80\\x93\\x69\\x97\\x7e\\x9a\\x14\\x1c\\x82\\xae\\xcf\\x93\\xb9\\x18\\x75\\xce\\xac\\x72\\x85\\x8a\\x75\\xfc\\xb5\\xc9\\xf2\\x74\\x08\\xd6\\x19\\x90\\xf1\\x23\\x6b\\xe3\\x0a\\x19\\xf5\\xd2\\x60\\x88\\xe0\\xf3\\xd3\\xba\\x7a\\x52\\x09\\x9c\\xfe\\x16\\xf9\\xa7\\xc2\\x31\\xff\\x75\\x99\\xc3\\x35\\x8b\\xd9\\x9c\\x79\\x79\\xd0\\x54\\x2e\\xdf\\x74\\x70\\x86\\xb0\\x0f\\x37\\xab\\x78\\xe8\\x92\\x2e\\x83\\xa7\\x89\\xbb\\x4f\\x3a\\xbb\\xd6\\xd2\\x5e\\xef\\xe8\\xd9\\xc2\\x29\\xf2\\x27\\x51\\xc0\\x62\\x65\\xce\\x3f\\xc0\\x3f\\x23\\x2b\\x6c\\x09\\xa2\\xa6\\x6d\\xbf\\x9b\\x5c\\xac\\x01\\xa4\\xe7\\xc2\\x1d\\x9f\\x42\\x96\\x86\\x1e\\xaf\\x56\\xb2\\x77\\x00\\x59\\x97\\x49\\x59\\x95\\x53\\x0b\\x0b\\x0e\\x95\\x2c\\xaf\\xad\\x33\\x63\\x18\\x1b\\xad\\x9e\\x43\\x9a\\xc6\\x1b\\x6d\\x72\\x81\\x62\\xa0\\x61\\x79\\x17\\x9d\\x78\\x30\\x77\\x94\\x73\\x3a\\x77\\x14\\xa5\\x60\\xb0\\x44\\xd9\\xda\\xa8\\x42\\x75\\x58\\xe4\\x94\\x95\\x3d\\x70\\xcd\\xd2\\xb6\\x7b\\x18\\xab\\x34\\x4f\\x23\\x20\\xf1\\x32\\xa6\\x12\\xb1\\x7c\\xfd\\xf9\\xf2\\xf7\\xc6\\xde\\xd8\\x7b\\x95\\x99\\xdf\\x69\\xd5\\xfb\\xd8\\x80\\xb5\\xe1\\x8c\\x4d\\x25\\x7c\\x0e\\x12\\x63\\x8b\\xad\\x2d\\x55\\xae\\xc5\\xf8\\xd2\\xf8\\xd1\\xfa\\x66\\x49\\xf9\\xfd\\x71\\x31\\x9b\\x23\\x43\\xe7\\xd6\\xf7\\xa6\\x62\\x7a\\x9b\\xe3\\xc7\\x9c\\xd2\\x34\\x01\\xa7\\x1c\\xde\\xd6\\xb6\\x31\\x9d\\xe6\\x7b\\xff\\xf0\\x39\\x14\\x94\\x43\\xd4\\xd3\\xc1\\x75\\x71\\x67\\xee\\xe1\\x95\\x5d\\x2c\\x3b\\x56\\xf5\\x3f\\x24\\x2e\\xd2\\xae\\x9e\\x20\\x64\\x76\\x81\\xa7\\x7a\\xd8\\x72\\xf9\\x08\\x92\\x78\\x28\\x21\\xd5\\x73\\xff\\x87\\x73\\x22\\x16\\xf4\\x7c\\x79\\x95\\xd3\\x3f\\x6f\\x16\\x92\\x58\\x05\\x3f\\x3e\\xb9\\xf4\\x68\\xa9\\xb1\\xe3\\x33\\xcd\\xaa\\x8c\\xfe\\x75\\xa4\\xe6\\xbd\\xcc\\x3e\\x91\\x5f\\x30\\xd6\\xf8\\xde\\xbf\\xe7\\xef\\x7c\\xfb\\x4c\\x48\\x69\\x5a\\x3f\\xde\\x57\\xd3\\x5b\\xef\\xd5\\xee\\xd5\\xa5\\x7e\\xd7\\xdf\\x9c\\x76\\xf7\\x74\\xf2\\x44\\xbc\\x55\\xe0\\x50\\x6d\\xba\\xdf\\x17\\x8e\\xa1\\xa1\\x11\\xf0\\xad\\x85\\x77\\xbd\\x1d\\xe1\\x40\\xdb\\xff\\x69\\x8f\\xd1\\x4b\\x3a\\x9d\\x25\\xc1\\x27\\xda\\x45\\x11\\x5e\\x2c\\x1a\\x88\\xfc\\xf1\\x0f\\x0f\\xe7\\x52\\x4b\\x83\\x78\\x62\\x09\\x76\\x87\\xfe\\xad\\xc2\\x14\\xea\\xeb\\xe9\\x7e\\xa1\\x68\\x0a\\x2d\\xf4\\x65\\xb7\\x85\\x97\\x3e\\xea\\x76\\x45\\x8c\\xb7\\xc7\\xa0\\xd3\\xf7\\xb7\\x7b\\xa9\\xd2\\x36\\x8b\\x06\\xf7\\xbe\\x17\\xdb\\x96\\xf8\\xda\\xfb\\xdc\\xc6\\x96\\x0b\\xed\\xca\\xab\\x9b\\xcf\\x4a\\xc3\\x96\\x4c\\xbb\\xd9\\xd3\\x07\\x61\\xf7\\xbe\\xb9\\xe9\\x67\\xf7\\xd8\\xab\\x75\\xbe\\x47\\x6d\\x91\\x47\\x4b\\x01\\x6e\\xe8\\x50\\xd0\\xaf\\xd1\\x00\\x06\\x14\\xe8\\x1f\\x25\\xf1\\x7e\\x6e\\xb2\\xbb\\x1f\\x5f\\x15\\xef\\x47\\xb0\\xb9\\xe7\\x2a\\x63\\x5c\\x15\\xef\\x2c\\x5f\\x36\\x53\\x13\\xe8\\x8c\\x9d\\x4c\\x11\\x10\\xb8\\x29\\x70\\xd4\\x89\\xe2\\xcd\\x97\\x54\\x16\\xdc\\x7c\\x2b\\x19\\x68\\x60\\x79\\xf5\\x6c\\xb2\\x04\\x36\\x17\\x9e\\x1e\\x9e\\x32\\xb3\\xcb\\xb3\\x59\\xcf\\xee\\xa6\\x6b\\x4e\\x91\\x53\\xc8\\x88\\x79\\xbf\\x1d\\x9c\\x26\\x55\\x8b\\x9e\\xdb\\xcf\\x97\\x03\\x5f\\x69\\xbc\\x2e\\x2a\\xca\\xa9\\xb2\\x4d\\x46\\x6a\\x8a\\x0d\\x4d\\x2d\\x7b\\x64\\xac\\xf5\\xea\\x16\\xac\\x72\\x39\\x57\\x34\\x8f\\x6d\\xa6\\x7e\\xd7\\xe2\\x64\\xeb\\x8e\\x7f\\xd4\\x58\\xaf\\xf4\\x8b\\x08\\x73\\x09\\xdc\\xbe\\x4b\\xf3\\xb6\\x8a\\xaf\\xe6\\x4c\\x93\\x0c\\x16\\x4b\\xde\\xab\\x71\\x1b\\xc4\\x61\\x42\\x3d\\xdd\\xf5\\x1a\\xc5\\xf6\\x21\\xd9\\x7a\\x3b\\x94\\x8a\\x52\\x27\\xc6\\x87\\x7f\\xb1\\xda\\x97\\x33\\xe7\\x1c\\xa7\\x63\\x7f\\x7e\\xc2\\x27\\xbb\\x63\\xfb\\x4e\\x31\\x47\\xc6\\x32\\xf8\\xe8\\xe6\\x7f\\x0a\\x61\\xf1\\x93\\x39\\xe2\\xdb\\x24\\x53\\xe3\\xea\\xd1\\x9c\\x2d\\x8a\\xa9\\xda\\x45\\xdd\\x9e\\xc5\\xfb\\xfb\\xd5\\xc6\\x59\\xdc\\xa1\\xa4\\x69\\xf9\\x20\\xbc\\x0f\\x39\\x7e\\x36\\x85\\xe3\\xbc\\xd7\\x31\\x5e\\xa7\\x46\\x9d\\x90\\x51\\xb9\\x8a\\xb8\\x53\\x91\\x8a\\xf8\\xa3\\x08\\xa6\\x49\\x4b\\x69\\xa5\\x37\\xfe\\x8b\\x0e\\xfb\\x9d\\x8d\\xa9\\x90\\x76\\xf8\\xe5\\x52\\x41\\x1f\\x96\\xe8\\xbd\\x61\\x37\\xd6\\xcf\\x0c\\x06\\x96\\xda\\x92\\x32\\xd6\\x1c\\x3f\\xc9\\xe6\\xda\\xe4\\xa8\\xa9\\xc9\\x75\\x5c\\x4b\\x0b\\xf5\\xa4\\xbb\\xa6\\xa3\\x9f\\xc9\\xb9\\xa2\\x5b\\x37\\x9b\\x91\\xb3\\xd1\\x53\\x2a\\x54\\x3f\\x16\\x8b\\xb2\\x3f\\x3d\\xff\\x11\\xcc\\x30\\x49\\xf0\\x0b\\x10\\x04\\x54\\xb0\\x00\\x75\\x86\\x24\\x23\\x54\\x7c\\x22\\xa4\\x54\\x1b\\xb2\\xc4\\x43\\x7d\\x08\\x34\\xe1\\xef\\x89\\x1b\\x1a\\x9a\\x4e\\x50\\x5f\\x9f\\xc9\\x07\\x47\\x2d\\x5f\\xd0\\xef\\x5d\\x92\\x19\\xdf\\x79\\xcd\\xcf\\x11\\xd7\\xba\\xa9\\x86\\xbf\\x9f\\xcc\\xe0\\xa7\\x5c\\x47\\x99\\xc2\\x6f\\xf7\\x14\\xeb\\x28\\x47\\xf4\\x84\\x79\\x03\\xb6\\xa1\\xfa\\x55\\x11\\xb3\\x8c\\xe1\\x69\\x79\\xd8\\xdf\\x26\\x6f\\xf5\\x9e\\x46\\x41\\x8a\\x60\\x1e\\x29\\x3a\\xa9\\xe2\\xb9\\xc1\\xf5\\x39\\x02\\xc8\\x70\\x59\\x8a\\x4b\\xd1\\x80\\x7e\\xda\\x31\\x67\\xd4\\x6c\\x35\\x45\\x34\\x72\\x31\\x6c\\x74\\xde\\x04\\xda\\xe9\\x3d\\x68\\x5d\\x78\\x0d\\x7d\\x00\\x1d\\x6d\\x00\\x9f\\x10\\xd1\\x29\\xe1\\xc7\\x65\\x8a\\xc0\\x5d\\xd7\\x9f\\xbb\\x11\\x41\\xcd\\xd3\\x7d\\x3e\\xb2\\x35\\x16\\xf5\\x9b\\x21\\xa8\\xd4\\x5c\\x22\\xd9\\x19\\xb0\\x1c\\xd1\\x33\\x1f\\x4c\\x94\\x7d\\xc5\\x5f\\x3d\\xe1\\xf6\\x65\\x46\\x58\\x24\\xf0\\x2a\\xe0\\xab\\x1e\\x7d\\x2d\\xde\\xee\\xad\\xbf\\x2c\\x9b\\x20\\xa1\\xb7\\xf8\\x45\\xd2\\x5a\\x93\\xdc\\x67\\xc4\\xd2\\x72\\x47\\x4c\\xf5\\x72\\x3e\\xa6\\x11\\xd0\\x7c\\xaf\\x42\\xd2\\x3f\\x7e\\xf4\\x9b\\x75\\xd4\\x5e\\x6b\\xc4\\xde\\xa7\\xb1\\x7c\\x5b\\x7c\\x90\\xb1\\xb2\\xaa\\xd0\\x4b\\x30\\x27\\xe9\\xa2\\xfc\\xe0\\x2c\\x26\\x8a\\x7e\\xe1\\x0e\\x4d\\x6a\\x6e\\xe3\\x52\\x37\\xac\\xc0\\xe3\\x5f\\x5c\\xf6\\x30\\xab\\x9f\\x1e\\xdc\\x27\\xbe\\x5a\\xc1\\xb5\\xb2\\xe4\\x66\\xd1\\xb0\\xfc\\x03\\xa6\\x49\\x24\\x9d\\xb9\\xc0\\xa1\\xa2\\xca\\xb6\\x96\\x56\\x88\\x00\\x16\\x27\\x55\\x3b\\x7e\\x46\\x3d\\x65\\xd1\\xfb\\xa0\\x52\\x1a\\x7b\\x73\\x59\\xf7\\xc7\\xd3\\x05\\x8f\\x5f\\xe5\\xc9\\xf8\\xdd\\x40\\xad\\xf6\\x71\\xdf\\x89\\x75\\x7a\\x6b\\x2f\\xc7\\x8a\\xc5\\x84\\x45\\xb6\\xdd\\xf5\\xd0\\x8b\\xd5\\xd5\\x5c\\xbf\\x9e\\x31\\xb0\\x5b\\x5d\\x7d\\xdc\\xd8\\xfe\\xfe\\x04\\xda\\x5e\\x29\\xe1\\x52\\xa5\\xea\\x4b\\x3c\\x08\\x2a\\x6a\\xf4\\xca\\x63\\x4a\\x17\\x9c\\xb8\\x28\\x22\\xa5\\xb6\\xc4\\xa8\\x72\\xd1\\xc1\\x9f\\x75\\x56\\x9d\\xe1\\x0e\\x81\\xd3\\xe6\\x84\\xac\\xcc\\x75\\x80\\xdd\\x33\\x57\\xbb\\xa2\\x4c\\xbd\\x7d\\x5e\\xd8\\x51\\xd1\\x70\\xe8\\x59\\xd6\\x51\\xf5\\xe4\\x59\\xf2\\x0e\\x62\\xf3\\xba\\x4d\\x68\\xc0\\xf8\\xab\\xc4\\x11\\x87\\x3d\\x27\\x7b\\x32\\x58\\xf0\\xb7\\xe5\\xe6\\x1f\\xed\\xae\\x6a\\x52\\xbc\\x06\\xe7\\xa8\\xad\\xc1\\x4d\\x86\\xe4\\xc2\\x9f\\x6b\\x6b\\x5c\\xa0\\x6e\\x51\\xd0\\xca\\x63\\xe0\\x51\\xe3\\x37\\xe4\\x0b\\xbf\\x6a\\xa5\\xc3\\xa5\\x29\\xc1\\x04\\x5f\\x37\\x12\\xf0\\x42\\xd2\\x02\\x72\\xfa\\xe5\\x32\\x07\\xf9\\x2b\\xa9\\xd1\\xb8\\x63\\x66\\x58\\x34\\x94\\x01\\x4b\\x5a\\x19\\xe6\\x11\\xae\\xd3\\x4a\\xb1\\x8b\\x3f\\x69\\x50\\x6d\\x44\\x3d\\xd6\\x8e\\xc6\\x47\\xd2\\x9a\\x7c\\x91\\x7c\\x7b\\x90\\x9a\\xd4\\xde\\x4d\\x6d\\xd1\\xb2\\x3f\\x80\\x1b\\x0b\\x8f\\xeb\\x47\\xb0\\x72\\x5f\\x07\\x50\\xf0\\x50\\x75\\x4f\\x97\\x5c\\x0e\\xb5\\x07\\xa1\\xa9\\x36\\x71\\x52\\xec\\x1b\\x9f\\x43\\x2f\\x84\\xe6\\xab\\x35\\x31\\x63\\x2b\\xab\\xac\\xf5\\xe6\\x0d\\x97\\xa9\\x66\\x4f\\xfb\\xfa\\xf0\\x2e\\xf5\\x4d\\x6b\\x43\\xcf\\x0f\\x36\\xa1\\x4d\\xe4\\x64\\x7b\\x8e\\x08\\xd1\\xf2\\x98\\xa2\\x25\\xbf\\xdf\\x69\\x8b\\x86\\x82\\xe0\\x44\\x84\\x8a\\x7c\\xbd\\x35\\x18\\x8c\\xdc\\x44\\x2a\\x5d\\xc4\\x26\\x1f\\x43\\xf0\\xb0\\x08\\x9b\\x09\\x2c\\x5f\\x01\\xaf\\x87\\xaa\\x1c\\x5b\\x52\\x96\\x85\\x46\\x27\\x65\\x78\\x59\\x52\\x39\\x88\\x7f\\x93\\xad\\xac\\x27\\xfe\\x3a\\x5d\\x55\\xa1\\xd7\\x1e\\xf0\\xcd\\xb8\\x53\\x5d\\x6f\\x8e\\x39\\x0a\\x27\\x5f\\x77\\x57\\x34\\xe5\\x18\\x56\\xde\\x86\\xae\\xae\\xb2\\x8c\\xb4\\x1b\\x52\\xaa\\x47\\x80\\x41\\x95\\x5d\\xd9\\xe4\\x31\\xd1\\xa7\\xdc\\xf3\\xe8\\x21\\x82\\xb1\\x47\\x73\\xa8\\x56\\xca\\x12\\x45\\x79\\x0b\\x07\\x63\\x44\\x63\\x99\\x43\\x9b\\x44\\x68\\x13\\x74\\x91\\x31\\x69\\xdd\\xc6\\xf4\\x72\\x50\\x59\\xf8\\x06\\x5f\\x13\\xf8\\x51\\x16\\x81\\x60\\xf9\\xba\\xfa\\x86\\x7c\\xe6\\xaa\\x5b\\x8a\\x1a\\x5a\\x06\\x98\\x3b\\xe5\\x55\\xcb\\xaf\\xfc\\x3d\\x71\\x50\\x5a\\x49\\xce\\x96\\xad\\x47\\xd6\\x5b\\xfb\\x2b\\x6f\\x9e\\x79\\x33\\x46\\x8d\\xb7\\x91\\x6e\\x98\\x83\\x65\\x45\\xbf\\xc8\\xca\\xeb\\x56\\xdc\\xf4\\xb2\\x34\\x70\\x65\\x44\\xf4\\xd7\\xce\\x4c\\x37\\xda\\xb0\\x8e\\x9f\\x20\\x44\\x1a\\x21\\x06\\xde\\x7b\\xb2\\x82\\x21\\xb0\\xfc\\xaf\\xfd\\xdf\\x5e\\xe7\\x32\\xf6\\x01\\x36\\xe7\\xe6\\x16\\x2f\\x29\\xc7\\xf6\\x76\\xb7\\xbf\\x45\\x0e\\x65\\x34\\xda\\xf8\\x29\\x66\\x94\\x36\\x78\\xce\\x8f\\xf8\\x67\\x12\\x33\\x39\\x1c\\xfc\\xca\\x1d\\xb3\\x71\\x58\\x6a\\x3c\\x93\\xcf\\xeb\\xd1\\xc8\\x2d\\x1a\\xfd\\xfe\\x54\\x23\\x3f\\x7f\\xbc\\x15\\xeb\\x5d\\x61\\xb6\\xf6\\x68\\x19\\xde\\xa7\\x28\\x2e\\x9a\\xcc\\xb5\\x42\\x0c\\x3a\\xc9\\xf6\\xa5\\xfa\\xbe\\xff\\xd0\\xe5\\xa3\\x1a\\xbb\\xa0\\x49\\x4e\\x8d\\xbf\\x0f\\x33\\x69\\x0b\\x22\\xc1\\x12\\x10\\x42\\xa3\\x16\\x90\\x67\\x89\\x58\\xa6\\x74\\xe2\\xa1\\x6e\\x20\\xf6\\x52\\xe0\\xea\\x47\\xdf\\x83\\xda\\xd0\\xe2\\xda\\xed\\xaf\\x56\\x13\\x13\\xab\\xb5\\xa2\\x05\\xe5\\x11\\x26\\xac\\x76\\x16\\x17\\x1e\\x50\\x94\\xa2\\x32\\xa9\\xfb\\xc3\\x7e\\x7b\\xbf\\xdd\\xbe\\xee\\x4d\\x8f\\x14\\xa7\\x4b\\x7b\\x51\\x81\\x14\\xc3\\x8d\\x7b\\x00\\x55\\x39\\x56\\x8b\\x9c\\xe7\\x12\\xd4\\x2a\\x51\\x2e\\x5e\\x68\\x17\\xd4\\xd0\\x54\\xab\\xde\\x8c\\xae\\x44\\xda\\x6a\\xd1\\xef\\x6d\\xe7\\x56\\x9a\\xd6\\x2e\\x21\\xbd\\xf5\\xf6\\xd3\\xf5\\x60\\xc1\\x83\\x72\\xb9\\x69\\xd6\\x52\\x6e\\xce\\x54\\xdf\\x6a\\x8a\\x28\\x80\\xbd\\xd9\\x61\\x37\\xb2\\xfc\\xab\\x44\\xc7\\x28\\xc8\\xc8\\x5a\\x92\\x5a\\x9b\\xf6\\x43\\x98\\x25\\xe8\\x2b\\x2d\\x8f\\x99\\xf0\\x70\\x84\\x84\\x1f\\x11\\xc6\\xcb\\xea\\x9d\\xfb\\xe1\\xfb\\xe4\\x7b\\xda\\xd7\\x14\\xb2\\x22\\x24\\xa4\\x35\\x1f\\xa7\\x54\\x4c\\xbc\\x2d\\x5f\\xee\\xa2\\xed\\xc5\\x16\\x5d\\x61\\x5b\\x9a\\xed\\x80\\x2f\\x0b\\x6f\\xb2\\x40\\x2f\\x4f\\x00\\x7a\\xf6\\x03\\xd9\\xbc\\x7a\\x15\\xa7\\xdd\\x16\\xa1\\xb1\\xd8\\x88\\xf8\\x5f\\xda\\xed\\x8f\\x34\\x4e\\x1a\\xd5\\x7e\\xa8\\xd0\\x41\\xde\\xfd\\xeb\\x81\\x5b\\x7f\\x75\\xf7\\x34\\xf4\\x3d\\x4a\\xb9\\x12\\x72\\xc8\\x9b\\xfc\\xd1\\x93\\x9b\\x3b\\xd7\\xf8\\xc1\\x9e\\x8c\\x7b\\x82\\xa2\\x4f\\xb0\\x59\\x2e\\xf1\\x46\\x01\\x06\\xc3\\x1e\\x45\\xf4\\x24\\x4e\\x34\\x08\\x43\\x59\\x35\\x59\\xce\\x96\\x81\\xed\\xd0\\x41\\x65\\x9e\\xe8\\xa1\\xc5\\xc0\\x57\\xfb\\x7a\\x17\\xf7\\x69\\x47\\x3c\\xcb\\x31\\x22\\x70\\xb3\\x54\\xa4\\x44\\x08\\x26\\xe9\\x1f\\xd0\\x69\\x76\\x3a\\xb6\\x8f\\xc6\\xb7\\xdc\\x0b\\xaa\\xad\\x46\\xd8\\x8a\\xdb\\x4c\\x7f\\x2d\\x74\\x60\\x04\\x93\\x34\\xd8\\x87\\xf1\\x63\\x23\\xa4\\x07\\x46\\x7f\\x63\\xbe\\x8c\\xcc\\xb9\\xb8\\x40\\x78\\x69\\x7f\\xa6\\x0d\\x42\\x77\\x78\\x65\\x83\\xf4\\xd8\\x82\\x0d\\xcf\\xee\\x0f\\xb8\\xff\\x2d\\x60\\x16\\x40\\x8b\\x04\\x1f\\x36\\xf0\\x79\\xe1\\xbe\\xc3\\x5e\\x25\\xac\\xfa\\x97\\x3b\\x4a\\xb4\\x96\\x19\\x85\\x54\\xd0\\x10\\x44\\xb0\\x99\\x41\\x0a\\x04\\x4c\\xc1\\xc3\\x13\\xee\\xd0\\x08\\x2a\\xb2\\x65\\xf4\\x75\\x31\\x7f\\x36\\x7d\\xbf\\xa1\\x14\\xfa\\xfa\\x6f\\xb3\\xef\\x2e\\x7b\\xa3\\x10\\x63\\xc5\\xf3\\x05\\x81\\xd8\\xc1\\xf5\\xa7\\x5d\\x81\\x0f\\x5c\\x7d\\xd4\\xfb\\x80\\xcb\\x64\\xde\\x82\\x5a\\x21\\xe7\\xbe\\x5d\\xd9\\x06\\x6b\\x7f\\x6b\\x33\\xfe\\xfa\\x4c\\x1f\\x7b\\xe5\\xbf\\x35\\xbf\\x67\\x26\\x33\\x3c\\x26\\x01\\x75\\x53\\xe8\\xab\\x56\\x08\\xe1\\x0f\\x0c\\x54\\xc6\\x43\\x09\\x04\\x15\\x3b\\xc9\\x6b\\x04\\x93\\x3c\\xe6\\x11\\xa0\\x57\\xa6\\xf9\\x86\\x99\\x31\\x98\\x7c\\xd5\\xea\\x72\\xcf\\x88\\x14\\x3c\\xb5\\x9d\\xd2\\x75\\x3b\\x36\\x62\\x9c\\x10\\x1f\\x9b\\xdc\\xcd\\xfb\\xd5\\x81\\xd4\\x7a\\x83\\x86\\xfd\\x3d\\xc1\\x7d\\x42\\x0e\\xb1\\xbb\\xc3\\xcc\\x2a\\x46\\x8c\\xf3\\x76\\xc4\\x78\\xfd\\x81\\xfc\\x6b\\xef\\x83\\x5e\\x5e\\x57\\xfa\\xd0\\x42\\xe1\\x67\\x7d\\x21\\xaa\\xb8\\xfe\\x8f\\xbe\\xce\\x38\\xd8\\x30\\x53\\x41\\x0c\\x30\\x32\\x86\\x68\\x00\\x86\\x07\\x1a\\x0c\\xda\\xb0\\x9c\\x53\\x57\\x87\\x16\\x2c\\xe7\\x85\\x9b\\x1a\\x6f\\x27\\x6d\\xe1\\x4a\\x8c\\x3b\\x58\\x05\\x26\\x04\\x60\\xd3\\xcd\\x2b\\x6c\\xde\\x88\\xa6\\x4b\\x1c\\xbb\\xc4\\x39\\xc6\\xf1\\x5a\\x6a\\xe2\\x61\\x92\\x2c\\x5f\\x64\\x84\\xb7\\x7c\\x1e\\xe1\\xb8\\xd7\\xb2\\x83\\x8e\\xb1\\xbe\\xcc\\x6c\\xe6\\x24\\x38\\x6d\\x60\\xc3\\xf7\\x70\\xbc\\x8d\\x8d\\x53\\x65\\x3f\\x1b\\xc5\\xb3\\x1e\\x1d\\xb4\\x51\\xe4\\xf9\\x10\\xb1\\xbc\\x40\\xcb\\x84\\x35\\xa7\\x00\\x66\\x7c\\x57\\xd9\\x5f\\x54\\x29\\x7d\\x34\\x5c\\x0d\\xda\\x39\\xf2\\x8b\\x94\\xb6\\xe2\\x8a\\x5c\\x8b\\x2a\\xcd\\x12\\x7b\\xaa\\x2c\\xe5\\x02\\x7d\\xe6\\x96\\x8d\\x63\\x23\\xc7\\x6c\\x18\\x40\\xac\\xdf\\x70\\x94\\xd6\\x09\\xac\\x5e\\x3e\\x3b\\x8c\\xa9\\x98\\x8b\\x30\\xf6\\x1d\\xce\\xe7\\xbf\\xeb\\x87\\xd7\\x35\\x32\\x14\\x2c\\xb5\\x67\\x9e\\xff\\xa1\\x44\\x0a\\x82\\x26\\x1c\\xbf\\xee\\xb8\\x82\\x57\\x1c\\xa8\\x42\\xd8\\xf1\\x9c\\xd8\\xd2\\x56\\x20\\x0f\\x43\\x2c\\x8d\\xb2\\x7f\\xd0\\xd6\\xa6\\x54\\xc8\\x01\\xcd\\x86\\xdf\\x97\\x9c\\xcf\\x36\\xa8\\x40\\x66\\x2a\\xe2\\xdb\\x18\\x31\\x7f\\xe6\\xc2\\xfb\\xcc\\x40\\xb8\\x02\\x32\\x8f\\xa7\\x2f\\x6c\\x79\\x1b\\x4a\\x5a\\xda\\x6f\\xc6\\x2c\\x55\\x2a\\xaf\\xa2\\xa8\\x7c\\xf6\\x51\\xac\\xd3\\x47\\xd6\\x37\\xd6\\x2f\\xd9\\xe4\\x4d\\xfe\\x2d\\xa6\\x0c\\x31\\x7a\\xe9\\x68\\x9e\\xd4\\x01\\xb9\\x8e\\x6a\\xb9\\x58\\x9b\\x76\\x16\\x83\\x3f\\x61\\xae\\xd7\\x97\\xf5\\x4e\\x2b\\x87\\x62\\x22\\xeb\\xe7\\xed\\xd2\\x35\\xc5\\x3f\\x11\\x10\\x09\\xfe\\x9d\\x1a\\xa9\\x49\\xfd\\xb3\\x07\\x71\\xa7\\x63\\xb7\\xb2\\xcb\\xfe\\x34\\x2b\\xd8\\xeb\\x9f\\x6e\\x6f\\xbd\\x6c\\x67\\x51\\x48\\x51\\x34\\xff\\xa3\\xd6\\xf1\\x20\\x04\\x36\\x10\\xa0\\x9c\\x63\\x61\\x21\\x3e\\x46\\x31\\x13\\x1f\\xcd\\x81\\xef\\x26\\xcb\\x84\\x87\\x3f\\x9b\\xc4\\xff\\x90\\x2c\\x75\\xa5\\xe8\\xab\\x46\\x20\\xef\\xb5\\xc9\\x95\\xac\\x88\\x82\\xfa\\xeb\\x96\\x02\\x3b\\xc1\\xb8\\x4a\\x6a\\x7c\\xbf\\x63\\xcc\\x94\\xef\\xa5\\x48\\xd8\\x84\\x7a\\x35\\x9b\\x7f\\xcd\\xea\\x98\\xcd\\x11\\xc3\\x31\\x96\\x7d\\x4a\\x77\\x23\\x21\\xb5\\xe5\\x68\\x7d\\x19\\x81\\xdc\\x34\\xa2\\x75\\xea\\x57\\x83\\xbd\\x92\\xfe\\xcb\\xb6\\x49\\x60\\xbe\\xbb\\x6d\\x60\\x49\\x19\\x75\\xad\\x89\\x5c\\x8b\\xfb\\xc0\\x81\\x2e\\x8e\\xcc\\xcf\\x7f\\xeb\\x07\\x38\\x0e\\x21\\x48\\xec\\x1b\\x62\\x59\\x12\\xd3\\x57\\xa6\\x38\\x09\\x3f\\x67\\x68\\xb9\\x8a\\xbb\\x43\\x92\\x22\\x5b\\x3b\\x2e\\x77\\x5d\\x22\\x35\\x86\\xb2\\x4e\\x52\\x8a\\xca\\x77\\x6f\\x78\\x03\\x91\\x3d\\xd9\\x61\\x86\\x95\\xd9\\x5d\\xf1\\x04\\x5f\\xa5\\x65\\x2f\\xf8\\x91\\xc8\\xc5\\xfc\\xf5\\x9e\\xbb\\xd1\\x5d\\x37\\xfc\\x6f\\xec\\x24\\x92\\x12\\xfe\\xf8\\x3b\\xfd\\xd4\\x3f\\xba\\x43\\xad\\xdc\\x24\\x5f\\x6a\\x48\\xb9\\x8b\\x4c\\x1c\\x48\\xad\\x7e\\x58\\xf0\\x9a\\x66\\x16\\x3e\\xc0\\x1c\\xa1\\x85\\xcb\\x58\\xc7\\xa3\\x4b\\xac\\x1c\\x2e\\x09\\x9b\\x74\\x74\\x31\\x71\\xbe\\x2e\\x5b\\xd0\\x1b\\x18\\x14\\x27\\xd7\\xbe\\x72\\x6e\\x3d\\x50\\x72\\x6a\\x6d\\x2e\\xbf\\x38\\x14\\x2f\\x5c\\x84\\xb7\\x58\\x31\\x49\\x22\\x3b\\x88\\x5b\\xa4\\x92\\x92\\xc6\\x63\\x05\\xfb\\xf6\\x1a\\x91\\xbc\\x22\\x44\\x2c\\x26\\x0c\\x1d\\x68\\x96\\x0d\\x86\\xe9\\x66\\xed\\x3a\\x4d\\xf4\\x47\\x42\\x4c\\xf5\\x64\\x2c\\xdb\\x75\\x0e\\x72\\x63\\x25\\x0c\\xd4\\xc9\\x46\\xcd\\x45\\xad\\x86\\x4f\\x0d\\x05\\xcf\\xe7\\x08\\x33\\x94\\x71\\xd4\\xf9\\x79\\xf9\\x2a\\xd7\\x53\\x86\\xb1\\xe8\\x50\\x48\\x53\\x05\\x43\\x3e\\xe5\\xbe\\xc8\\xd2\\xb8\\x5b\\xc8\\x6c\\x7b\\x53\\x0d\\x5e\\xb6\\xed\\x68\\x6d\\xb7\\x9f\\x9e\\xce\\xa3\\xfe\\x45\\x69\\x84\\x84\\x67\\xb9\\xe3\\x46\\x39\\x82\\xbd\\xc0\\x71\\xba\\x2d\\xdf\\x56\\xcd\\xcc\\x8f\\xa5\\x3b\\x54\\x2e\\x73\\x3d\\x7a\\x6c\\xa8\\x9b\\x2e\\x9d\\xf3\\xf1\\x3a\\x97\\xb2\\xfe\\xaf\\x16\\x51\\x8d\\x4a\\x53\\xd6\\x96\\x16\\xca\\x54\\x54\\x56\\xd1\\xfd\\x98\\xab\\xde\\xea\\x6a\\x47\\xb3\\xa5\\xc2\\xcd\\xd4\\xb7\\x9b\\x5d\\xae\\x3b\\x04\\x79\\x85\\x7c\\x90\\x18\\x63\\xdc\\xae\\x28\\x18\\x64\\x66\\xcc\\xff\\x6f\\xde\\x28\\x51\\x8e\\xdd\\xa7\\x1f\\xe6\\x1b\\xb4\\x40\\xd8\\x56\\x2a\\x07\\x06\\x17\\x9e\\x14\\xc2\\xbc\\x9d\\x0c\\x1e\\x51\\x3e\\x81\\xf9\\xd1\\x7c\\x1f\\xe4\\xd8\\x1d\\xba\\x45\\x0c\\x1a\\xce\\xad\\x0b\\xb2\\x2f\\x08\\x8c\\x7c\\xe7\\x9b\\x91\\xe6\\xb4\\xc8\\xf3\\x79\\x91\\x8f\\xd4\\x9e\\xb4\\x25\\x59\\x6f\\xe4\\xe1\\xc9\\x04\\xcc\\xe1\\xc9\\xbf\\xea\\xcc\\x9c\\x4b\\x09\\x78\\x6d\\x56\\x74\\xdc\\xf6\\x1a\\xb7\\xe6\\x26\\x0c\\x7d\\x27\\x1d\\xab\\x5d\\x70\\x2a\\x25\\xde\\x71\\x71\\x5d\\xe7\\x20\\x13\\x93\\xc1\\x59\\x75\\x52\\x11\\x4a\\x86\\xbd\\x4f\\x53\\x93\\xfd\\x38\\x42\\xb7\\x83\\x08\\x74\\x83\\x4e\\x25\\x65\\x32\\xc3\\xb1\\x0d\\x2a\\x5b\\x8d\\xca\\x1f\\x20\\xb3\\x18\\xcc\\x06\\x8f\\x2d\\x66\\x24\\xfc\\x98\\x33\\x33\\x23\\x31\\xd8\\xc6\\xf2\\x06\\x05\\x82\\xb5\\x91\\x71\\x7f\\x70\\x7c\\x2a\\x1b\\xb7\\x2b\\x7a\\xab\\x15\\x12\\x44\\x33\\x6e\\x4c\\x0b\\x4e\\x1a\\x86\\xe9\\x65\\xa3\\x79\\xac\\x8f\\x4a\\x89\\x7c\\x8f\\xfb\\xc5\\x0e\\x46\\xc5\\xd4\\xbc\\xee\\xae\\x2b\\x59\\xaf\\x43\\x8c\\x46\\xdd\\x3d\\xec\\xf6\\xf7\\xd3\\xd6\\x68\\xd7\\xac\\x4c\\xa3\\x69\\x99\\x98\\x56\\xd6\\xcc\\xbb\\xad\\x1b\\xf0\\x10\\x62\\x77\\x5e\\x87\\x7a\\x99\\x1f\\x44\\x15\\xcc\\x8b\\x87\\x23\\x98\\xd3\\x6b\\xb2\\xa7\\x45\\x4d\\x03\\x77\\xfc\\x54\\xd2\\x8f\\x28\\xd3\\x8a\\xb8\\xaa\\xeb\\x26\\xfd\\xbc\\xbd\\xc3\\x9b\\x40\\x85\\xf3\\x92\\x6b\\xa9\\x91\\x4d\\x1c\\x79\\x6a\\x5d\\xc5\\xe6\\xac\\x31\\x36\\x03\\xca\\x8f\\xbe\\x84\\xfe\\x0c\\xf1\\x09\\x6c\\x5e\\xf2\\x12\\x38\\x75\\x12\\xa9\\x9d\\xa2\\xdf\\xa1\\xe2\\x37\\xaa\\x17\\xf9\\x23\\x55\\x0b\\xda\\x40\\xe8\\xab\\x22\\x9e\\x1c\\x76\\xf6\\x54\\x1f\\x08\\xa8\\x85\\x70\\x77\\x3b\\x15\\xd1\\x98\\x16\\x75\\xb1\\x8c\\x5f\\x91\\x15\\x92\\x6c\\xf4\\x71\\x79\\xd4\\xef\\x28\\x05\\xea\\x96\\xa7\\x55\\x4b\\xcd\\x73\\xad\\xd7\\xf3\\xf8\\x83\\x3e\\x54\\xcb\\x21\\xef\\x47\\xbc\\xbd\\xc8\\x13\\x2a\\xfe\\x7d\\x1f\\xf1\\x2d\\xb8\\x7c\\xce\\xda\\xa1\\xdb\\xda\\xdc\\x81\\x5e\\xb0\\x38\\xf4\\x89\\x8c\\x6a\\x5d\\xe2\\xf5\\xc7\\x08\\x0c\\x97\\xdb\\xe5\\xd7\\xf7\\x78\\x43\\xbf\\x44\\x7e\\xf1\\xa3\\xa6\\x1c\\x48\\xcb\\xb2\\x9a\\xfc\\xbd\\xef\\x90\\x1a\\x6d\\x68\\x68\\x84\\x8c\\x3f\\xa7\\x41\\xc3\\x15\\xbd\\x76\\x19\\x9d\\xa8\\x8b\\x56\\x29\\x81\\xd2\\xd5\\x82\\x6a\\xbe\\xaa\\xcc\\x84\\xc5\\x00\\x03\\xda\\xdb\\x3a\\x5e\\xeb\\x50\\x5e\\xf1\\x58\\xdd\\xaf\\x6b\\xae\\x0a\\xaa\\x1d\\x54\\xa0\\x7c\\x72\\x33\\xfc\\x36\\x9f\\xb0\\x94\\xea\\x7f\\xad\\x85\\x50\\x14\\x60\\x86\\xe7\\x5d\\x4f\\x5f\\x3a\\xf2\\x13\\xd9\\xa6\\xd9\\xa4\\x66\\x3a\\xd7\\x8c\\x21\\x62\\x23\\x8f\\x9c\\x71\\x20\\x2d\\xc1\\x60\\xf2\\xf7\\xa1\\x83\\xad\\x17\\x87\\x93\\x39\\x99\\xee\\x0f\\x16\\x01\\x37\\xd0\\x3b\\x67\\xee\\x8e\\xd1\\x97\\x5d\\x85\\xec\\x35\\x1a\\x5a\\xb4\\xa2\\x9f\\x9d\\xe9\\x92\\x54\\xe0\\x6b\\x3b\\x71\\xeb\\x8c\\x2d\\x49\\xe4\\x2f\\x21\\xaa\\x51\\x57\\x5f\\xd3\\x51\\x11\\x5d\\xa1\\xfa\\x2e\\x47\\x9e\\x78\\xb5\\xdf\\x4f\\x3e\\x53\\x04\\x72\\x74\\x34\\x97\\x21\\xec\\xb2\\x11\\x17\\x75\\xfb\\xe8\\xcb\\xb8\\xc8\\xa1\\xe0\\x8d\\x55\\x5b\\x30\\x72\\x61\\x6b\\x39\\x24\\xd0\\x9d\\x1e\\x28\\xc8\\x4b\\x91\\x5b\\xa6\\xd4\\x3e\\xc1\\xe8\\x9b\\xf9\\xc8\\xc9\\x24\\xa8\\x0a\\x8a\\x79\\xf1\\xc6\\x43\\x1b\\x8b\\x8a\\x9f\\x5d\\x43\\x18\\x1e\\xef\\xe0\\x5f\\x38\\x25\\x65\\x36\\x2e\\xe1\\x1d\\xe0\\x8f\\x67\\xab\\xab\\x58\\x33\\x90\\xd6\\xbd\\xad\\x0e\\x9a\\xbf\\x3a\\x5d\\xd6\\x51\\xd2\\x70\\xd1\\xa0\\x71\\xc9\\x76\\xb9\\xeb\\xb0\\x8f\\xae\\xa6\\x21\\x47\\xfd\\x18\\x84\\xd1\\x39\\x3a\\x99\\x14\\xaa\\x11\\x80\\xf4\\x49\\x9d\\xab\\x62\\x90\\xd6\\x48\\xa1\\x27\\xf6\\x9a\\x9e\\xef\\xe2\\x04\\x47\\xe6\\x2c\\x89\\x95\\xc4\\x92\\xd9\\xb9\\x6f\\x0f\\x19\\xc2\\x06\\xf6\\xe2\\x95\\x43\\x6f\\x24\\xd8\\x02\\x7d\\x25\\x13\\xec\\x2b\\xc6\\x2a\\x2f\\xb2\\x6f\\xbf\\x32\\xf6\\x96\\xd2\\x64\\x53\\xf3\\xc0\\x83\\x13\\xee\\xf1\\x76\\xc7\\x42\\xfd\\x9f\\x42\\xac\\xcf\\x51\\x93\\xf3\\x8b\\x66\\x82\\x1e\\x3a\\x7a\\x2c\\x3f\\x4a\\x2b\\x40\\xf5\\x42\\x26\\xb4\\xff\\xae\\xf8\\x09\\xd9\\xc6\\x34\\xb1\\xfa\\xd5\\xd9\\x13\\xfb\\xbe\\x71\\xcd\\x59\\x8c\\xd7\\x1f\\x80\\x18\\x44\\xb9\\x33\\x4e\\xe8\\x92\\x9e\\xdd\\x89\\x6a\\xd8\\x03\\x17\\xf3\\xd6\\xe7\\x47\\xb5\\x8e\\x6d\\x7c\\xba\\xaa\\x8a\\x1a\\x94\\xb3\\xfe\\x2b\\x03\\x20\\x60\\xcf\\x70\\x54\\x42\\xf7\\xaa\\x39\\x03\\xd4\\x9f\\x4b\\xe4\\xa4\\xa4\\x48\\xb8\\xa6\\x3d\\x2b\\x33\\xe9\\x61\\xd7\\xae\\x47\\xde\\xf4\\x06\\xfd\\x1a\\xc1\\x58\\xad\\xf2\\x14\\xa7\\xfe\\x3a\\xfe\\x1a\\x29\\xbf\\x12\\x28\\x48\\x9b\\xe8\\xbb\\x74\\x8e\\xe1\\x20\\xe2\\xf0\\xd3\\x1e\\xbe\\xfa\\x27\\x6e\\x02\\x70\\x9e\\xf1\\xa6\\xf1\\xac\\xa9\\x55\\x5b\\xdb\\x36\\x6d\\x11\\xe8\\x7a\\xe5\\xba\\xaf\\xcb\\x87\\x6b\\x79\\x5c\\xf0\\x1f\\x45\\x71\\x26\\xf1\\x39\\x53\\xa9\\xdf\\xf6\\xc1\\xaa\\x7a\\x68\\xae\\xa8\\x35\\xce\\x93\\x51\\x1c\\x70\\x90\\x5e\\x37\\xb2\\x2e\\xbd\\x28\\x1b\\x0e\\xc3\\x66\\x78\\xb8\\xdf\\x01\\x74\\xda\\x6e\\x26\\xe6\\x8f\\xf1\\x67\\x62\\xbf\\xfe\\x2b\\xfa\\x19\\xc9\\x99\\xcd\\xe1\\xe9\\x7f\\x78\\x57\\x1f\\xda\\x62\\x86\\x27\\xc2\\x57\\x97\\x28\\xa5\\xb2\\xde\\xaf\\xea\\x9e\\x1f\\x86\\x04\\xb2\\xe5\\x67\\x89\\xcd\\x6c\\xef\\x45\\x4f\\xfd\\x06\\x2a\\x4b\\xfb\\xc1\\xaa\\xce\\x13\\xc1\\x43\\xe7\\xe7\\x43\\x70\\xb4\\x56\\xd6\\xba\\x98\\x9e\\x6d\\xe8\\xe6\\xd6\\xe1\\xa7\\xe3\\x5d\\xad\\xef\\x3f\\x2e\\xeb\\x76\\x86\\x6b\\x69\\xfc\\x7f\\xf4\\x4b\\x6a\\x59\\xeb\\x86\\x87\\xdc\\x90\\x46\\x7e\\xd2\\xc8\\xe6\\x8e\\x89\\xf4\\x4b\\x84\\x78\\xde\\x32\\x39\\x7a\\x1c\\xf1\\xba\\x71\\x52\\x8d\\x47\\xa6\\x2a\\x61\\xe9\\xe0\\x77\\x26\\x1c\\x98\\x08\\x98\\x07\\xed\\x19\\xb7\\x34\\xfb\\x98\\x9a\\xa6\\x54\\x72\\xd1\\x33\\x9d\\x4d\\xe6\\x59\\x9a\\x66\\x2f\\x47\\xa6\\x58\\x56\\xf2\\xac\\xbc\\xe9\\xf2\\xfd\\xd9\\xb9\\x16\\x9f\\xb8\\x98\\x4a\\xa6\\xcc\\xd9\\x61\\x7f\\x59\\xb9\\xe9\\x5c\\xf5\\x63\\xe0\\x12\\x37\\x1e\\xdc\\x49\\x51\\xb0\\x9a\\xd4\\x4e\\x5b\\xd0\\x25\\x4e\\xda\\x19\\x76\\x91\\x6e\\x0a\\x76\\xd5\\x93\\xfd\\x6e\\xbe\\x11\\xfe\\xf1\\xa6\\x91\\xc5\\x17\\x39\\xb6\\xc5\\xf4\\x27\\xbe\\x89\\xf5\\x9e\\x1b\\xb5\\xe9\\x48\\x35\\x87\\x6f\\x24\\x06\\x1a\\x41\\x67\\xfa\\x47\\xc9\\x56\\x9b\\xdc\\x93\\x9c\\xf6\\x4f\\x66\\x7a\\xb3\\x0b\\x97\\x56\\x48\\xd9\\x52\\x8a\\xfb\\x4a\\x76\\x23\\x17\\x26\\x18\\x09\\x89\\xb6\\xe2\\xe7\\xd3\\x52\\x0f\\x5c\\x5d\\x0d\\x92\\xa3\\xbd\\x48\\xee\\x8b\\x0f\\x1c\\x7b\\x2f\\xc5\\x36\\xf3\\xae\\x5f\\x44\\x41\\x40\\x08\\xca\\x3e\\x53\\x79\\x54\\xff\\x5c\\x4b\\x97\\x01\\x0c\\x11\\x40\\x41\\x13\\xd6\\x14\\x69\\x97\\x2c\\x87\\x78\\xc9\\x5b\\xbf\\xdf\\x35\\xea\\x79\\x7a\\xfd\\x2b\\x5f\\xf3\\x9e\\x09\\x4e\\x3c\\x69\\x54\\xb4\\xd3\\x26\\x4a\\x55\\x6c\\x8c\\xe2\\x30\\xd0\\x69\\x74\\xa8\\x0f\\x2f\\x57\\x6c\\xfb\\xa4\\xfd\\x43\\x9b\\x18\\x0f\\x13\\x72\\x70\\x3a\\x02\\x12\\x9a\\x02\\xb7\\xdf\\x7d\\xf9\\xec\\xe1\\x40\\x50\\xf0\\x47\\x5f\\x94\\x8c\\x7e\\x5d\\xdc\\x40\\x39\\x8e\\x81\\x2a\\x39\\x6b\\x29\\xcf\\xdb\\x81\\xd1\\x6a\\x37\\x67\\xde\\x69\\xaa\\x96\\xb5\\xdd\\xec\\x71\\x6f\\x9e\\x61\\xac\\x7b\\x96\\xd6\\x75\\x87\\xc2\\x41\\x24\\xf4\\xac\\xe7\\xe2\\x49\\x62\\x39\\x8f\\xd5\\xe8\\x21\\xc3\\x76\\xe9\\x88\\x7a\\x77\\xfd\\x48\\x5a\\x66\\xb6\\xb1\\x64\\xe9\\x41\\x11\\x0b\\x91\\xc0\\x19\\xbf\\xa1\\xaf\\x9c\\x28\\xe9\\x6f\\xf2\\xcb\\x1b\\x73\\x86\\xee\\x8c\\x35\\xb6\\x8b\\x32\\x5e\\x46\\x4d\\x45\\x36\\xcf\\x82\\x92\\x7f\\x87\\xc7\\xa8\\xfb\\xc3\\x1a\\xd5\\x89\\x6d\\x29\\x7b\\x21\\xf0\\xa3\\x66\\x39\\xf6\\x2c\\x7c\\x6c\\x9a\\xca\\x9c\\xbe\\xf5\\x7d\\xce\\xf6\\x75\\x11\\xad\\xc1\\xfd\\x39\\xe6\\x91\\xce\\xf5\\x53\\xb0\\x28\\xe9\\x2a\\x26\\x57\\x15\\x7f\\x17\\xeb\\xfb\\x2a\\xea\\x29\\x4b\\x89\\xda\\xc6\\xb4\\x13\\x97\\x92\\xf0\\x0a\\xa5\\xe9\\xd9\\x33\\x24\\x17\\x0c\\xd5\\xc6\\x98\\xa9\\x46\\x2a\\xb2\\x98\\x97\\xda\\x93\\xc8\\x5a\\x16\\xe6\\x2c\\x14\\x29\\x16\\xa8\\xbb\\xdc\\x3e\\x38\\xdb\\x7b\\xe4\\xbb\\x11\\xcb\\x57\\x27\\xad\\x30\\xf4\\xa0\\x21\\x02\\xec\\x93\\xe1\\xc1\\x7f\\x4d\\x3a\\xcc\\x7b\\x85\\x41\\x11\\x34\\xdf\\xda\\xa2\\x10\\x49\\xd6\\x24\\x48\\x8d\\x72\\xfb\\xb5\\xd5\\xb1\\xa4\\x18\\x7a\\xe6\\x89\\x06\\xac\\x88\\x20\\xcc\\x83\\x68\\x68\\x21\\x8d\\x0c\\xc9\\xe4\\x35\\xb4\\x18\\x99\\xc4\\x9c\\xf7\\x27\\xb6\\x70\\x53\\x35\\x5b\\x8f\\x82\\xde\\x89\\xc7\\x8d\\xaf\\x84\\xfb\\x9e\\xbf\\x34\\xae\\x65\\x4a\\x2b\\xe4\\x33\\xa5\\x6a\\xd5\\x94\\x6b\\x5c\\xf6\\xaa\\xbd\\xfb\\x3f\\x69\\xf2\\x15\\x59\\xfe\\x11\\x35\\xac\\x01\\xbd\\xf2\\xd2\\x9e\\x36\\xa8\\xdc\\x11\\x1d\\x80\\x01\\x5e\\xf7\\x79\\x5d\\xc5\\xd5\\x08\\xc7\\x5f\\x60\\x46\\xd6\\x56\\x47\\xa8\\x33\\x41\\x5e\\xda\\xae\\x7d\\x52\\x9d\\x9c\\xe4\\xb5\\x90\\xf3\\xef\\x88\\x7f\\x67\\xcf\\xec\\x1d\\x92\\x51\\xfe\\xd4\\xa8\\x0a\\xf2\\x20\\x72\\xef\\xbf\\x9f\\xef\\x87\\x8c\\x20\\x38\\xb9\\xab\\xf1\\xfe\\xa8\\x2d\\xd3\\xd7\\x7f\\x6f\\x8b\\x89\\x6e\\x5b\\x48\\x15\\xbb\\xa5\\x9c\\x19\\x9e\\x50\\x6b\\x8e\\x45\\x69\\xbd\\xcb\\xaf\\x2d\\x5d\\x95\\x78\\x41\\xd9\\xbd\\xf1\\x5c\\xb7\\x7d\\xe2\\x25\\x29\\xea\\x2e\\x9d\\x3f\\xbf\\xf0\\x7a\\xbe\\x07\\x9d\\xa4\\x0d\\xe7\\xfc\\x67\\xf0\\x3c\\x4f\\x1a\\x1c\\xc0\\xe3\\x7e\\x20\\x4c\\x79\\x02\\x50\\xe5\\xf1\\x4c\\xcf\\x9e\\xec\\x55\\x7d\\xb7\\x59\\x18\\x7f\\x2f\\xf8\\x54\\x7e\\x63\\xbf\\xad\\xbc\\xe7\\x42\\xa6\\x2f\\x82\\xd0\\x86\\x4b\\xb9\\x15\\xbe\\x45\\x83\\x4f\\x15\\x66\\x7e\\xb5\\xdd\\x48\\xd9\\xdb\\xdf\\x3c\\xfd\\x7b\\x20\\x3b\\x7d\\xbb\\x4f\\xbd\\xab\\xe5\\x69\\x47\\xe2\\xeb\\xed\\x69\\xbf\\x23\\xfa\\x7a\\x5a\\xaa\\xcc\\x71\\x56\\xdc\\xde\\x1e\\xb0\\xa0\\x7f\\xbf\\xcc\\xc1\\x2f\\xfb\\x67\\xfb\\x2c\\x50\\x9a\\xff\\xd5\\xda\\x8a\\x92\\xc3\\x4f\\x9c\\x83\\x39\\x43\\x10\\x7c\\x32\\x14\\x2d\\x7e\\x47\\xe7\\xb6\\xf1\\x80\\x39\\x43\\xbf\\xcb\\x5d\\x00\\x83\\x63\\x17\\xb4\\xb2\\x9c\\x65\\xc0\\xda\\x22\\xf2\\x56\\x2b\\x08\\x19\\xca\\x66\\x81\\xb1\\x21\\x15\\x16\\x64\\x0c\\xb3\\x19\\xac\\x53\\xe8\\xc4\\x05\\x83\\x74\\x9e\\xa4\\x17\\x20\\x4f\\xec\\xaf\\x66\\xcb\\xf5\\xf7\\x8f\\x86\\x2d\\x0b\\xec\\x33\\xff\\xe1\\x9b\\xa0\\xb2\\xcf\\x81\\xdb\\x59\\xc6\\xe6\\xa8\\x7c\\x45\\x0e\\x8b\\xa9\\xce\\xf9\\x39\\x95\\xfd\\xd5\\xd7\\x85\\xfb\\xe1\\x61\\xf4\\x69\\xd4\\xf5\\x79\\xa3\\x80\\x0f\\xc9\\x71\\x13\\xe7\\xd1\\x1d\\x66\\x91\\x0d\\x7e\\x9e\\x38\\xca\\x7e\\x45\\xeb\\xe6\\xc7\\x93\\xcc\\xd5\\xcb\\x45\\xe6\\x1f\\x8d\\x1d\\x65\\x48\\xec\\x5f\\x1e\\x6d\\xb0\\xb7\\xdf\\x0f\\xea\\xa3\\x1c\\xf0\\x88\\xcd\\x89\\x43\\x7b\\x88\\x94\\x26\\xaa\\xe1\\x68\\x87\\x37\\x10\\x38\\x92\\x06\\x27\\x79\\x4b\\xbd\\xdb\\x0a\\xa0\\xca\\xbf\\x40\\xa8\\x52\\xdb\\x43\\xad\\x15\\xa3\\x0c\\xa8\\xcb\\x94\\xaa\\xe2\\xd7\\xfd\\xcd\\x07\\xf5\\x4a\\xfe\\x71\\x31\\x0f\\xcd\\x5c\\xc2\\xc1\\x34\\xea\\x19\\x2f\\x35\\x49\\x13\\x41\\x33\\x79\\x10\\xe7\\x7a\\x63\\x86\\x7a\\xad\\x3c\\xc5\\x51\\x23\\xec\\xce\\x82\\xf8\\x85\\x22\\x82\\x15\\xcd\\x06\\x90\\x16\\x58\\x14\\xca\\x40\\xb8\\x4d\\x1c\\x4f\\x69\\x32\\x0c\\x62\\x20\\xa0\\x47\\xa2\\x55\\x6a\\xfe\\x90\\x63\\xf7\\xfd\\x9e\\xe5\\x2b\\x50\\x14\\xad\\x26\\xf1\\x44\\xfa\\xfa\\xfb\\xf6\\xa8\\x78\\x71\\xde\\x3e\\x7b\\xbf\\xa7\\x6d\\xcc\\xbf\\xe9\\x23\\x5a\\xe9\\x6d\\x73\\xf7\\x71\\xc4\\x0d\\x39\\x21\\x84\\x02\\x9a\\x45\\xda\\x1d\\x21\\xb7\\xfd\\x12\\xc5\\x6e\\x79\\xba\\x9f\\x18\\x18\\xb8\\x5f\\xd9\\xcf\\xd4\\x6e\\xa8\\x3b\\x46\\xd1\\x97\\x0f\\x07\\x6e\\x82\\x80\\xe2\\x47\\x95\\x00\\x32\\xbe\\x36\\x52\\x36\\xe5\\x3a\\x8d\\x2b\\x98\\x4d\\x96\\xe3\\x82\\xab\\x9e\\x65\\x4c\\x8e\\x78\\x1a\\xb3\\x7a\\x3c\\x0f\\x5d\\xc9\\x81\\x0e\\xdb\\x4c\\x92\\x28\\x5d\\xae\\xdf\\xf1\\x80\\x18\\x50\\x11\\x01\\x15\\xb1\\x0f\\x34\\xdb\\x6c\\x77\\x62\\x08\\x18\\x6f\\xa8\\x63\\x6f\\x3b\\xeb\\x09\\xc3\\xe2\\xfa\\x40\\x0b\\xac\\x5b\\x67\\x5c\\xf8\\x49\\x79\\xb1\\x37\\x5a\\xd9\\x99\\xae\\xbd\\x60\\xe6\\x2e\\x58\\xd4\\x5a\\x7d\\xeb\\xaf\\xd5\\xec\\xdd\\xcf\\xb6\\x2f\\x55\\x4b\\x95\\x66\\xfa\\xba\\xd9\\xd1\\x6b\\x60\\x76\\x89\\x89\\x3e\\x13\\x7c\\xfa\\x3c\\x9c\\x0d\\xa5\\x2c\\x59\\x51\\xbb\\xdf\\xd2\\xb8\\x46\\x89\\xe4\\x89\\xb0\\x05\\xca\\x88\\x60\\x99\\x85\\xa2\\x91\\xf4\\x37\\x46\\xfa\\xe9\\x61\\x09\\x80\\x13\\xcd\\x1f\\x0f\\x58\\x81\\x2f\\x91\\xfe\\x22\\xfb\\x2d\\x80\\xe0\\x05\\x5c\\xd5\\xb8\\x94\\xdb\\x1e\\xf7\\xe1\\x81\\x09\\x1f\\x99\\xd9\\xff\\x11\\x76\\x6e\\x53\\x35\\x1e\\x1b\\x53\\x2b\\x4d\\x2e\\x16\\x17\\x46\\xc2\\x3a\\x55\\x38\\x6a\\x14\\x33\\x6d\\x73\\xc9\\xe6\\xe4\\x8e\\xed\\x36\\x8f\\x82\\xfc\\x14\\xff\\x48\\x41\\x30\\x09\\xee\\xc3\\x2d\\x95\\x8e\\x4a\\xb6\\xb4\\x7e\\xa2\\x04\\x89\\x69\\x7b\\xae\\xa2\\x08\\xe4\\x34\\x91\\x51\\x94\\x6e\\xed\\xce\\x63\\x84\\xd0\\xef\\xfc\\xe3\\x05\\xde\\x33\\xb0\\x44\\x14\\xa0\\xda\\x20\\xe1\\x67\\x94\\x3a\\x7b\\x84\\x54\\x73\\xa4\\xf8\\x74\\x9a\\x9b\\x68\\x49\\x5c\\x04\\x3a\\x45\\x83\\x61\\xc9\\x31\\x75\\xc5\\x97\\x65\\xc3\\x50\\x54\\x8a\\xf3\\x28\\xe6\\x65\\x94\\x7e\\x22\\x7e\\x10\\x7d\\xf6\\x33\\x7a\\xee\\x94\\x17\\xca\\x8d\\x39\\x6d\\xe1\\xc1\\x23\\xc9\\xbf\\x02\\x0f\\xe3\\xa2\\x80\\x51\\x4e\\x28\\x90\\xb1\\x64\\xd9\\xdb\\x55\\x2e\\x8e\\xd0\\x05\\xd1\\x44\\x00\\xf8\\xf1\\xb0\\x5e\\x34\\xac\\x07\\x55\\x10\\xc4\\xea\\x87\\xfa\\x78\\x67\\xb1\\xb4\\xae\\x42\\x04\\x1a\\x6b\\xd6\\xae\\xb1\\x86\\xf9\\xe8\\x83\\x34\\xe9\\xf5\\xe2\\x3a\\xf4\\xd9\\xd5\\x47\\xaa\\x6b\\xcb\\xd0\\xe3\\x2b\\x77\\xd4\\x7f\\x5b\\x4e\\x94\\x68\\x7e\\xba\\x78\\x2b\\x74\\x05\\xd6\\xc5\\x79\\xb8\\x7d\\xad\\x97\\xde\\xc1\\x4c\\x7f\\xcb\\xde\\x03\\x73\\xcd\\x7d\\x37\\x2c\\xa0\\xb8\\x93\\x49\\xfe\\x2e\\x54\\xa3\\x8b\\xe4\\x64\\xe5\\x35\\xeb\\xae\\x96\\x8a\\x3c\\xcb\\x67\\x6e\\xf3\\xe8\\x9c\\x34\\x39\\x4d\\x4a\\x24\\x38\\x3c\\x06\\x6e\\xc3\\x05\\xb4\\xe6\\x09\\x48\\x23\\x8b\\xbf\\xc7\\x49\\x1f\\x53\\x0f\\x32\\x6e\\x3e\\x6b\\x05\\x9d\\x42\\x8c\\xc1\\xae\\x63\\xa5\\x8a\\x8f\\x1d\\xc5\\xf7\\x5d\\x76\\x6a\\x88\\x24\\x11\\x1a\\x42\\xe4\\x94\\xfb\\x61\\x85\\x0d\\x5b\\x11\\xbb\\x92\\x1b\\x79\\xcc\\x82\\x6c\\xc3\\x06\\x39\\x7b\\x7c\\x9e\\x1c\\x3d\\x79\\xd7\\x85\\xfc\\x06\\x01\\xdd\\x71\\x67\\x66\\xf0\\x7c\\xbc\\xb3\\x59\\xb9\\x8b\\xfe\\x61\\x27\\xac\\x78\\x24\\x2f\\x38\\x67\\xd7\\xc6\\x86\\xbc\\x7e\\xe7\\x73\\xf7\\x82\\x11\\x3a\\x15\\x18\\x48\\xd4\\xbc\\x2e\\xc6\\x5a\\x85\\x0d\\x2e\\xb3\\xf2\\x56\\x3d\\xc4\\x39\\x20\\xfe\\x27\\x62\\x84\\xfa\\x49\\xa3\\xc6\\xda\\x78\\x9f\\x3c\\xb0\\xfb\\x41\\x93\\xdd\\x77\\x80\\xb7\\x9f\\xd7\\x9f\\x65\\x34\\xe2\\x1d\\xcf\\xde\\x72\\x80\\x01\\xa4\\xc9\\x42\\xe6\\xf5\\x5c\\x40\\x30\\x44\\xc2\\x0b\\x10\\x4b\\x53\\x16\\x9d\\x60\\x54\\x36\\x33\\xc2\\x4a\\xf6\\xec\\x79\\x2a\\xbb\\xcd\\xcd\\xa4\\xe8\\x21\\x49\\xe7\\x24\\x46\\x26\\x0c\\xf0\\x87\\xaf\\x9a\\x54\\x8b\\xc9\\xab\\x9a\\x2c\\x0a\\x2a\\x1b\\x75\\xa3\\x13\\x20\\x22\\xa5\\x59\\xf6\\x63\\x53\\x7f\\x9a\\xb4\\xa9\\x82\\xa4\\x1e\\x58\\x82\\xe7\\xa3\\x2a\\x46\\xfb\\x00\\xc5\\x61\\xfb\\x90\\x42\\x21\\x98\\x27\\xbb\\x59\\xa7\\x7f\\x7a\\xd2\\xae\\xbf\\xb1\\xda\\xb6\\x65\\x3a\\xf9\\x13\\xc3\\x46\\x40\\xc3\\xb1\\xb5\\xe4\\x5c\\xb2\\x6b\\x37\\x01\\xe3\\xe8\\xa2\\x3a\\x3c\\x40\\x3b\\x61\\xfb\\x07\\xf2\\x2c\\xeb\\xed\\x34\\x6f\\x88\\xc9\\x2d\\x89\\xf7\\xcf\\xc9\\x65\\x32\\x06\\x44\\xe8\\x1f\\x82\\x6a\\xf7\\x2e\\xd7\\xdd\\xad\\xf5\\x07\\x6b\\x72\\xc7\\x88\\x08\\xc7\\x99\\x46\\xdd\\x0a\\xef\\x8e\\x9e\\x0f\\xd6\\x93\\x44\\xeb\\xd6\\xe6\\xa3\\x36\\xef\\xa9\\xa9\\x8f\\x1c\\x4b\\xf3\\xee\\xfa\\xda\\x72\\xf3\\x9d\\x86\\x84\\xe8\\x0c\\x94\\xfd\\x1c\\x23\\xd3\\x29\\xac\\x14\\x58\\x70\\x68\\x40\\x1a\\x78\\x99\\xf0\\xfb\\xab\\x74\\x1a\\x74\\x01\\x97\\x00\\x69\\xb0\\x1d\\x98\\xeb\\x54\\x87\\xe2\\xf0\\xcd\\x2f\\x11\\xae\\x07\\x5a\\x21\\x1c\\xfc\\xfd\\xc1\\x3e\\xef\\xcb\\xb0\\x47\\xe4\\xf6\\x9c\\x97\\x06\\xd7\\x60\\x40\\xce\\x43\\xea\\xd2\\x3e\\xe4\\xc3\\x21\\xee\\x5b\\x3a\\xd4\\x19\\x7a\\x47\\xfe\\x2a\\x8e\\xef\\xbe\\xe1\\xaa\\x39\\xd4\\x92\\x5f\\xf5\\xd4\\x61\\xfd\\x9a\\xfb\\x2b\\x7b\\x57\\xfd\\x4e\\xf7\\x0e\\x4d\\x11\\x37\\x89\\xa8\\x5a\\x38\\x1a\\x19\\x2a\\x01\\xed\\xfd\\xc4\\x34\\x6d\\x3d\\x4e\\x7a\\x97\\x53\\x52\\xe0\\x90\\x27\\x99\\x6a\\x16\\x7c\\xc0\\x02\\x1d\\xf7\\xc2\\xa5\\x63\\xc8\\x97\\xd4\\x68\\x4d\\x98\\x6f\\xf8\\x7b\\xec\\x91\\x9b\\x6a\\xbc\\x8d\\xcf\\xa2\\x10\\xc1\\x2c\\x8b\\xa8\\xec\\x2b\\x85\\x25\\x07\\x0c\\x51\\xb5\\x15\\xef\\x18\\x44\\x8e\\x68\\x32\\xcc\\xf3\\x93\\xa3\\x2e\\xc8\\x35\\x05\\x1d\\x63\\xd5\\xa1\\x8a\\x2f\\xcb\\x6d\\x65\\xec\\x4e\\x33\\x3b\\x03\\x43\\x77\\x4e\\x9a\\xc4\\xd7\\x5b\\x5a\\xc6\\x69\\x7e\\x57\\x3c\\x20\\x89\\x65\\xfe\\x07\\xb2\\x8b\\x47\\xc2\\xc5\\xc2\\x8f\\x46\\x23\\xb2\\x64\\xe3\\x8a\\xac\\x8e\\xee\\x55\\xde\\xdb\\xf5\\x81\\xa9\\xdd\\xe1\\x98\\x39\\xb0\\xa5\\x62\\x6e\\x0f\\xc7\\x6a\\x30\\xa4\\xa5\\x8e\\xee\\xd6\\x5a\\x9d\\xec\\x95\\xb4\\x78\\xf9\\xa4\\xe6\\xe5\\xb6\\x0f\\x38\\xde\\x03\\x7a\\x9a\\x1f\\x86\\xec\\x6c\\xce\\xd7\\x35\\x95\\xab\\x6b\\x89\\xd6\\x67\\xfc\\xb3\\x87\\xef\\xfb\\x81\\xce\\x39\\xdf\\xb3\\x29\\xc3\\xd8\\x99\\x70\\x8d\\x7a\\xb9\\x3c\\x73\\xb8\\x96\\x9a\\xb9\\x73\\x0a\\x19\\xd0\\xf2\\x2c\\xff\\xa0\\x3b\\xcd\\xac\\xe9\\x25\\x74\\xab\\x27\\xcb\\x4f\\x47\\xb7\\xff\\xd6\\xf2\\x92\\x3a\\x5e\\xce\\xc3\\xdb\\x6c\\x6d\\x9b\\x85\\x35\\xb8\\x6e\\xe0\\x5d\\x05\\x9f\\x8d\\xb3\\x36\\x4f\\x43\\x79\\xd2\\x5e\\x15\\xa7\\x57\\x26\\xaf\\x61\\x5c\\xa5\\x3c\\x77\\xe1\\x28\\x3a\\x96\\xd2\\xc1\\xab\\xcd\\xd2\\x7b\\x0d\\xae\\x7b\\x5e\\x0e\\xd5\\x14\\x38\\x19\\x3b\\xe9\\x8c\\x5c\\xdb\\x42\\x88\\x42\\xc2\\x59\\x34\\x30\\x17\\x76\\x76\\x8c\\x96\\xc1\\xc3\\x23\\xa1\\xee\\xd7\\x57\\x30\\x45\\x76\\x44\\x32\\xa3\\xf4\\xeb\\xed\\x35\\x1d\\x72\\x7c\\x83\\xc0\\x8a\\x49\\x16\\x39\\x89\\xa0\\xea\\x95\\x27\\xb5\\x79\\xc2\\x70\\x34\\xfd\\xb1\\xe6\\x81\\x4b\\xa6\\xee\\xd0\\x68\\xc7\\x98\\xe9\\x4b\\x28\\x58\\x59\\x68\\xa0\\x7e\\x47\\x77\\xdb\\xfa\\x8e\\xca\\x55\\xc2\\x89\\x3e\\x6f\\x7d\\x7c\\x54\\xdf\\x21\\x21\\x2e\\x8b\\xf6\\x69\\x71\\x22\\x50\\x8b\\x4d\\x88\\xc7\\x6b\\xca\\xfb\\x23\\xde\\xf4\\x3d\\xa9\\x17\\xf7\\x3d\\x99\\xb7\\x73\\xc5\\x11\\x04\\x8e\\x88\\x30\\xdb\\x8b\\xb6\\x2b\\x04\\x02\\x72\\x54\\x05\\x81\\x73\\x2a\\xe4\\xef\\x5f\\xec\\xbf\\x68\\x72\\x6e\\x39\\x21\\x79\\xef\\xc8\\x1c\\x4d\\xf3\\x35\\x7b\\x30\\x1e\\xbe\\xae\\x07\\x39\\x5e\\x20\\x74\\x87\\x67\\x88\\xb1\\x36\\x3e\\x5b\\x6e\\x04\\xa2\\xea\\x9a\\x2a\\x3c\\xee\\x95\\xc4\\xe7\\xb8\\xfb\\x1b\\xae\\x6a\\xc2\\x71\\x2d\\xc2\\x13\\x76\\xb9\\x96\\xfe\\x94\\xb2\\xb9\\xed\\x7e\\x59\\x18\\x0f\\x71\\xe1\\xa8\\xd4\\x04\\x9d\\x2c\\x28\\x94\\x1c\\xdd\\xa4\\xe8\\xd8\\x72\\xe0\\xef\\xc9\\x58\\xc0\\x5b\\x65\\x26\\x1b\\x2f\\xbf\\xae\\x00\\x41\\x29\\x9b\\x76\\x36\\x3d\\x45\\xad\\xd7\\x6b\\x21\\x1e\\x37\\x1f\\x97\\xbc\\x86\\xfb\\x6e\\x21\\xde\\xd4\\xc8\\x09\\xf7\\x95\\xc5\\xab\\xa4\\x87\\x54\\xfe\\xf4\\x3c\\x57\\x8e\\x4a\\x16\\xeb\\xba\\xd5\\xf2\\x0f\\x96\\xd2\\x11\\x13\\x72\\x51\\x72\\x2e\\x8b\\x46\\xd2\\xf5\\xf6\\x7e\\x23\\xf5\\xcc\\x04\\x9c\\x8d\\x13\\x8f\\x33\\x64\\xde\\xe6\\x87\\xfb\\x90\\x18\\x4c\\xc4\\xc6\\x46\\x5c\\xb7\\x7c\\xc3\\xc7\\x83\\x86\\xae\\x2e\\x53\\x7e\\x7c\\xbc\\xef\\xe5\\xe0\\xee\\xc5\\xf6\\x3b\\x3c\\x28\\x94\\x05\\x99\\x9f\\x3e\\xc1\\x5a\\x79\\xcd\\xb9\\x7e\\x0e\\xb3\\x4b\\x2b\\x0b\\xd0\\x3f\\xcc\\x2c\\x5e\\x9e\\x2d\\xe1\\xbf\\x28\\x4d\\x08\\xa1\\x2f\\x69\\xa2\\x04\\xac\\x09\\x0c\\x7d\\x07\\x14\\xc9\\x1e\\xc4\\xd8\\xb1\\xc1\\x4e\\x7f\\x4a\\xd6\\x68\\x32\\x3e\\x26\\xc1\\x10\\xe2\\xbc\\x52\\xa7\\xea\\xbb\\x3c\\xae\\xca\\x61\\x02\\x9d\\x7e\\xe0\\xf8\\xd5\\x9d\\xc0\\x96\\xa8\\xec\\x45\\x6f\\x59\\x91\\x48\\x10\\xd3\\x3c\\x9a\\x63\\x82\\xc3\\x29\\x15\\x5a\\x63\\x7c\\x06\\xb8\\x36\\xb2\\x12\\xec\\x13\\x76\\x84\\x98\\x0d\\x92\\xd4\\xd9\\x05\\x77\\x68\\xb1\\xa4\\xf6\\x31\\x5e\\xa1\\xa2\\xa1\\x00\\xf4\\xb2\\x8d\\x25\\x83\\x6b\\x32\\xd6\\x24\\x9d\\xeb\\x9d\\xfb\\xe6\\xaa\\x11\\x05\\x7b\\xe5\\x1d\\xf8\\x98\\x59\\x06\\x8d\\x1d\\xbc\\xea\\xa9\\x20\\x69\\x4e\\x2c\\x6d\\x5d\\x31\\x54\\xb6\\x54\\x45\\x0b\\xce\\x72\\xc9\\xe1\\x41\\x6d\\x55\\x53\\x0d\\x7b\\x6a\\x1f\\x97\\x65\\x60\\x5b\\xde\\x56\\x45\\x3d\\xeb\\xa3\\x60\\xda\\x70\\x01\\x66\\xd5\\x77\\x6e\\x53\\x8b\\x9f\\xed\\xc5\\xe8\\xf3\\xc8\\xc9\\x64\\x97\\x1a\\xd3\\x06\\xd3\\x98\\xd5\\x84\\x90\\x66\\x33\\x0d\\x1c\\x4d\\x83\\x31\\x64\\x7a\\x3a\\xd1\\xf1\\x6a\\x0c\\xa5\\x0b\\xae\\x89\\x19\\x8e\\x45\\x82\\x62\\x46\\xd1\\x16\\x93\\x75\\x7a\\xf3\\x16\\x5d\\xd3\\xc4\\xec\\x50\\xcb\\xc7\\xc6\\xd6\\x4a\\xf0\\xca\\xd6\\x95\\xa6\\x49\\x85\\xf3\\x43\\x6e\\x3a\\x35\\x25\\x22\\xcb\\xd5\\xc6\\xcc\\x4e\\xb5\\xe1\\x59\\xff\\x66\\xbe\\xe7\\xf1\\x24\\xe7\\xce\\x03\\xaf\\x76\\xf0\\x58\\x7b\\x06\\x4c\\xe9\\x6b\\xb0\\xff\\x75\\xca\\xa8\\xb2\\xd2\\xe7\\x95\\xbe\\x45\\xa8\\xa0\\xb1\\x2c\\xa2\\x20\\x0b\\x1f\\xf0\\x0f\\x03\\x6f\\xbf\\x7b\\x20\\xbb\\xd7\\x63\\xd5\\xa3\\xed\\xe1\\xde\\x37\\x10\\xb7\\xb9\\x20\\x94\\xfe\\x9b\\x1d\\xb6\\x74\\xf5\\x7b\\xe2\\x5b\\xe6\\xef\\xf7\\x8c\\xff\\x09\\x58\\x62\\xa5\\xae\\x1f\\xd8\\x66\\x2e\\x07\\xff\\x2f\\x79\\x1e\\xac\\x85\\x8b\\x1a\\xd7\\x1c\\x4f\\xad\\x1d\\x65\\x1b\\x07\\xdf\\xf5\\xe3\\x9a\\x93\\x28\\x3b\\x00\\x95\\x22\\x26\\x57\\xfc\\xca\\xe8\\x8b\\xe0\\xf0\\x22\\x4d\\x7b\\xd0\\x3f\\xab\\x6c\\x5b\\xc3\\x12\\xac\\x8d\\x60\\x71\\xcc\\x2f\\xd5\\x90\\x33\\x16\\xf3\\xf7\\xdc\\x97\\x0f\\xa8\\xa8\\x17\\x94\\x5f\\xd6\\x4b\\x62\\xec\\xe6\\xec\\x73\\x72\\x8e\\x2c\\xc0\\xd6\\x76\\x16\\xe3\\x24\\xde\\x48\\x35\\xae\\xf7\\x7b\\x05\\xfc\\xbd\\x13\\x51\\xa2\\x53\\xad\\x99\\xb3\\x26\\xfd\\x12\\x14\\xa3\\xca\\xc8\\x3c\\x61\\x2e\\x9b\\xb3\\xb4\\xe5\\xf8\\x70\\xd5\\xd1\\xc9\\xc3\\x99\\x3b\\xbb\\xfd\\xaa\\xa5\\x16\\x11\\xbd\\xd2\\xc2\\x36\\x3f\\xf1\\x75\\x79\\xbd\\x62\\xbf\\x29\\x7a\\xc1\\xb3\\x1a\\x6b\\x3d\\x73\\x27\\x67\\x1b\\x72\\xa9\\xd8\\xb5\\x85\\x80\\xd3\\x55\\x53\\x02\\x42\\xb9\\xfd\\x79\\xff\\x35\\x9d\\x5e\\x17\\x8b\\x89\\x4d\\xfa\\xa6\\xbb\\xc9\\xe3\\x78\\x02\\x33\\x34\\x84\\xce\\xc7\\xbd\\xe4\\x26\\x5d\\x73\\xc3\\x3c\\x48\\x6c\\x87\\xb9\\xa5\\xb1\\x65\\xe7\\x7e\\xd2\\x7a\\xdf\\xb8\\x13\\x02\\xc9\\xf9\\x84\\x5d\\x2c\\xac\\xa7\\x08\\xcb\\xff\\x53\\x5a\\x1c\\xb1\\x84\\x31\\x4e\\x08\\xed\\x25\\x41\\x8e\\xff\\xd9\\x0c\\x5d\\xcd\\x0e\\xae\\xf1\\x42\\xc7\\xc1\\xb6\\x3f\\x35\\xa8\\x04\\x85\\xed\\x3b\\xb5\\xf5\\xc6\\x81\\xd7\\xe8\\x4b\\x9c\\xf0\\x9f\\x98\\x67\\x1e\\xf9\\x6a\\x7a\\x46\\x7f\\xde\\xb6\\xde\\x6d\\x59\\x7a\\xb7\\xeb\\xfb\\xf0\\x16\\x20\\xf5\\x7e\\xaf\\x23\\xe5\\xe2\\x9a\\x1e\\xb3\\x5b\\x40\\x9b\\xb2\\xed\\xe0\\x6d\\x2b\\xed\\x91\\x43\\x15\\x2c\\x42\\x41\\x8d\\x80\\x98\\x4c\\x45\\xcf\\x1b\\xf2\\x1d\\xd1\\xd4\\x32\\xaf\\x57\\x76\\xd9\\xa0\\xee\\x39\\xfe\\xf4\\x5e\\xaf\\x53\\x49\\xc5\\xce\\x4b\\x46\\xc6\\xab\\x56\\x3c\\xce\\x3e\\x3c\\xfc\\x13\\x1b\\xff\\xba\\xff\\x68\\xa2\\x33\\xfd\\x1b\\x2e\\x3e\\x35\\x1f\\x3d\\xb4\\x99\\x31\\x05\\x43\\xbf\\xcd\\xaf\\x7c\\xfe\\xd7\\x45\\x7c\\xdc\\xb7\\xce\\x39\\xd8\\x4f\\xa4\\x1e\\xc6\\xaa\\xe4\\x66\\x74\\x7e\\x44\\xf1\\xa1\\xab\\x07\\x27\\xd6\\xec\\xd0\\xbb\\x27\\xf6\\x56\\x87\\x1a\\x33\\xad\\xaa\\x60\\xb5\\xe1\\xbd\\xa3\\x97\\x40\\xb2\\xd5\\xaf\\x5e\\x51\\x3d\\xb4\\x13\\x09\\x69\\x0d\\xaa\\xf6\\x07\\x52\\xf8\\x51\\x53\\xeb\\xa8\\x07\\x51\\x91\\x7b\\x27\\x0f\\x04\\x37\\x30\\x04\\x38\\xff\\x60\\xa6\\xcd\\xc3\\x08\\x58\\x17\\xd1\\xd1\\xd0\\x24\\xfb\\x86\\x8d\\xb3\\x67\\x5e\\x59\\x34\\xba\\x21\\xad\\xfe\\x90\\x34\\xa9\\x35\\x95\\x7c\\x62\\x07\\x0c\\xd7\\xed\\x7f\\xee\\xf2\\xa4\\xea\\x8d\\x73\\x8c\\xc3\\x9f\\x8b\\xcd\\x44\\x36\\xcc\\x46\\xad\\x64\\x91\\x0f\\x6c\\x4b\\x58\\x09\\xd6\\xc6\\x19\\x37\\x7d\\x52\\xaf\\x3a\\x98\\x83\\x23\\x1b\\x57\\x9c\\x77\\x54\\x99\\x64\\x05\\x13\\x47\\xa7\\xf4\\x0b\\x64\\x47\\x2d\\x27\\x45\\x1d\\x15\\x13\\x4a\\x63\\x5f\\xf8\\x7f\\x6e\\x29\\xaf\\x11\\xf7\\x58\\x95\\x7f\\xf3\\xd6\\x48\\xb0\\xc7\\x34\\x25\\x11\\xe9\\x0c\\x23\\xbd\\x59\\xc8\\x19\\xe7\\x3e\\xee\\x8f\\x9a\\xab\\xe7\\x85\\x07\\x6b\\xcc\\x5f\\xef\\x70\\x60\\x7a\\xb1\\x1a\\x6f\\xf4\\xe1\\x84\\xc0\\x54\\xd8\\x2b\\x17\\x96\\x4c\\x66\\xe0\\x66\\x6a\\x14\\x29\\x24\\xb6\\x82\\xf0\\x44\\x33\\x6b\\x67\\xe2\\xba\\x1b\\xd2\\x91\\x34\\xa6\\xb6\\xbf\\x43\\xe7\\x71\\xcc\\x30\\xae\\x19\\x0c\\x65\\xda\\xd7\\x37\\x69\\x95\\xd2\\x4e\\xc9\\xfe\\x9e\\xaa\\x9e\\x63\\xbd\\xbf\\xd2\\xa7\\x8a\\xfc\\x63\\x2c\\x83\\xa0\\x56\\x46\\x43\\xd9\\xbc\\xbc\\x59\\x14\\xb4\\xc9\\x26\\x6e\\xee\\xea\\x24\\xa2\\x6b\\x68\\xe3\\xa9\\x63\\x20\\xa4\\x63\\xea\\xbf\\x5e\\x13\\x0e\\xbd\\xb2\\xba\\x64\\x1e\\x93\\x84\\xcc\\x36\\x9d\\x4b\\xb2\\x9a\\x22\\xb0\\x17\\xaa\\x76\\xe0\\x1e\\x51\\xbb\\xeb\\xce\\xc1\\xba\\x6d\\xff\\x41\\x2f\\x1e\\x4c\\x10\\xe1\\x6b\\x7a\\x7f\\x8a\\xb3\\xcf\\x10\\x2e\\x31\\x2e\\x5e\\x77\\xda\\xad\\x56\\x30\\x00\\xca\\x79\\xc8\\xbc\\x3b\\x38\\x0a\\x0e\\xdf\\xcb\\xb6\\xae\\xc3\\x06\\x0c\\x3e\\x14\\x77\\xae\\x44\\x25\\xee\\xf2\\xce\\x4c\\xbb\\x09\\x77\\xd6\\x68\\xa1\\xb9\\x2f\\x30\\xd9\\xf8\\x70\\xc3\\x89\\xc4\\x33\\xd8\\xa0\\x58\\x18\\x74\\x1a\\x08\\xf8\\x06\\x9b\\xe6\\x9e\\xdc\\x2d\\x4e\\x90\\x1a\\xb2\\x28\\x0b\\x44\\x38\\x2a\\x89\\x4e\\x49\\x77\\x71\\xba\\x59\\xcb\\xda\\xb4\\x7b\\xd6\\xbd\\xa4\\x4c\\xaa\\xf0\\xed\\x78\\x37\\x5e\\xa4\\x08\\x46\\x96\\x54\\xcd\\xf8\\x7f\\x3f\\x7e\\x61\\xe2\\x9b\\x11\\xf8\\x8f\\x13\\xbf\\xe4\\x4a\\xcc\\x00\\xef\\xba\\xf7\\x8d\\xa9\\x94\\x88\\xc9\\x92\\xa0\\xb6\\x9f\\x4d\\x48\\x05\\x64\\x7d\\x3e\\x08\\x54\\x39\\x8f\\xa9\\x92\\x7b\\x91\\x62\\x0d\\x54\\xad\\xfb\\x53\\x0f\\xf4\\x57\\xb5\\x15\\xeb\\xdf\\xf3\\x9f\\x33\\x75\\xba\\x43\\xd3\\xa5\\x25\\xa5\\x39\\xeb\\x1a\\x20\\xdf\\x36\\x25\\x1f\\x4f\\x66\\x9d\\x68\\xbe\\x29\\x52\\x82\\xfe\\xe8\\xa1\\x4e\\x57\\x31\\x99\\x10\\x2e\\xba\\xc5\\xef\\xbb\\x66\\x68\\x1b\\xf8\\xe7\\x32\\xaf\\x17\\xe5\\x6b\\x6b\\xe5\\xe5\\x4e\\x96\\xbf\\x6d\\x3f\\xea\\x56\\x7b\\xdf\\x12\\xe5\\x24\\x2d\\x72\\xc3\\x52\\x70\\x99\\x70\\xff\\x35\\x88\\x4c\\x5c\\x92\\x9b\\x5a\\x28\\xf0\\x72\\xd7\\x2a\\x0f\\xd6\\x51\\x79\\x38\\x29\\xb4\\x6d\\x57\\x06\\x71\\xdd\\x0a\\xc5\\x55\\xf4\\xa2\\xdb\\xda\\xa4\\x8f\\xa5\\x56\\x5a\\xdc\\x3f\\xc1\\xac\\x4d\\x2f\\x82\\x97\\x22\\x1b\\x52\\x48\\xb7\\x2c\\x19\\x8f\\x08\\x18\\xca\\x77\\x4a\\x64\\x1b\\xc8\\x43\\xde\\x7b\\xae\\x31\\xdf\\x0c\\xbe\\xec\\xea\\xc2\\xcc\\x10\\x1a\\xf8\\x3b\\x87\\xe8\\x84\\xd7\\xe6\\x94\\xcc\\x2d\\x39\\xe1\\x25\\x2c\\x9c\\x9e\\xeb\\xca\\xf4\\x40\\x61\\xf4\\x1d\\x8e\\x77\\x54\\x78\\x98\\x22\\x27\\x96\\x5b\\x7c\\xf2\\xbc\\xb4\\xde\\xfe\\x78\\xaa\\xfb\\xfb\\x8f\\xb1\\xe4\\x62\\x25\\x4e\\xae\\xd1\\x81\\x0f\\x0a\\x4e\\x4b\\x6e\\x77\\x0f\\x5b\\x8a\\xfe\\x1e\\x66\\x11\\xdc\\x6b\\xb7\\x62\\x67\\x39\\x25\\x7d\\xad\\x7d\\x4a\\xa5\\x67\\x39\\x87\\x13\\xee\\x8e\\x93\\x96\\xb3\\xd9\\x04\\x36\\x47\\x66\\xd4\\xbc\\x79\\xe3\\x8c\\xdc\\xa7\\xd8\\x42\\x3c\\x37\\xda\\x66\\x7d\\x34\\x54\\x27\\xb3\\xda\\x55\\x3c\\x39\\x78\\x97\\xdb\\x79\\x9a\\x6e\\x42\\xd2\\x45\\x8d\\x32\\x7e\\x44\\x7b\\x6d\\xdb\\xf9\\x0d\\xe4\\xba\\xa7\\xcd\\xb4\\x0e\\x5f\\x95\\xce\\x75\\x9e\\xc2\\x42\\x5d\\x70\\x86\\xf0\\x4c\\x0b\\x51\\xe8\\x13\\x64\\xcf\\x38\\x09\\x22\\x97\\xb4\\x23\\x92\\xff\\x30\\x5b\\x9c\\x4b\\xfd\\x9f\\x2e\\x3f\\x74\\x70\\x4b\\x1e\\x32\\xd1\\xbd\\xb6\\xa0\\x9a\\xed\\x27\\x94\\xf9\\x93\\xcf\\xb2\\x5c\\xc4\\x83\\xb0\\xaa\\xc3\\x8e\\xfd\\x9e\\xbb\\x74\\xcd\\x57\\x23\\x41\\xc7\\x07\\xd2\\x2b\\xbb\\xfb\\xc9\\x98\\xb7\\xab\\x50\\xe8\\x0d\\x9f\\x07\\xa7\\xe6\\xe3\\x9d\\x2d\\xcf\\x8b\\x31\\x09\\xa1\\x17\\x45\\xed\\xfc\\x47\\x3d\\x67\\x92\\x68\\xce\\x7c\\xb4\\xdf\\xd6\\xcb\\xf1\\x11\\xf2\\x27\\x7e\\x1b\\x7d\\xca\\xf6\\x48\\xdd\\xc7\\x6d\\x83\\xc0\\xb7\\xc3\\xe1\\xd7\\xcb\\xe9\\x3f\\xe8\\xc2\\x97\\x41\\xde\\xcd\\x0e\\x2f\\xb0\\xc8\\x21\\x9c\\x17\\x0a\\x7d\\xa6\\x5d\\x70\\xe4\\xd6\\xe8\\x57\\x22\\xa4\\xfb\\xa8\\x2e\\x4b\\x1d\\x28\\xb1\\x73\\xe7\\x95\\x39\\xd0\\xbb\\xb8\\x1b\\x07\\x7f\\x2b\\xc9\\x81\\x1a\\xa4\\x4d\\xb8\\x3d\\xb3\\xa0\\x1c\\x4c\\x43\\xbd\\x2d\\xe4\\x64\\x09\\xa3\\x47\\x15\\x7f\\xcf\\x5a\\x01\\x81\\x84\\xa9\\x32\\xd7\\xa3\\xca\\x25\\x0c\\x92\\xa1\\x36\\xe1\\x64\\x73\\x37\\x9c\\x69\\x9c\\x8e\\xea\\xae\\x93\\xc1\\xb2\\x2d\\xf5\\x05\\x5b\\xd9\\xf9\\x20\\x38\\x4a\\xa7\\x92\\x05\\xec\\xd8\\x5c\\xaa\\xcb\\x32\\x87\\x9f\\xf0\\xd6\\xff\\xd0\\x82\\x87\\x0a\\x93\\xb9\\x50\\x4d\\x75\\x66\\x1d\\xdc\\x66\\x53\\x98\\x1d\\xa4\\x3c\\xa7\\xba\\x87\\xea\\xe0\\x0d\\x0a\\xed\\x7f\\xe6\\xd9\\x0f\\x70\\xfb\\xc7\\x07\\x3e\\x7e\\x68\\xdc\\x77\\x87\\x14\\xd8\\x45\\x64\\xc1\\x42\\xfd\\x40\\xa4\\x25\\x2c\\x70\\x19\\x17\\x8b\\x23\\x28\\x78\\x8f\\xa5\\x9f\\x16\\x45\\xdd\\xe0\\xc5\\x01\\xa3\\x3b\\x6d\\x3f\\x93\\x73\\x29\\xa6\\xc2\\x28\\xdd\\x5f\\x74\\x7a\\x8a\\xd2\\xeb\\xc9\\xdb\\x7f\\x6d\\x28\\xe8\\x91\\xf6\\xda\\x7f\\xb5\\xb1\\xea\\x9d\\xdb\\x07\\xe1\\x2f\\xc3\\xd4\\x7d\\x0e\\xd4\\x84\\x11\\x22\\x23\\x41\\x46\\x8c\\x04\\x1f\\xe0\\xdf\\xfb\\x1a\\x0b\\xfa\\x00\\x69\\xcd\\x4e\\xbc\\x4c\\xb0\\xcd\\x67\\xdc\\x1e\\xf4\\x06\\x83\\x48\\xe0\\x90\\xf4\\x45\\x9c\\x14\\x83\\x02\\xde\\x74\\x61\\x08\\xa1\\x98\\xfe\\xa2\\xed\\x1f\\xc8\\xcc\\xc2\\x68\\xcb\\xec\\x1f\\x30\\xac\\xfd\\xda\\x26\\xd9\\xfe\\x00\\x9d\\xec\\xd3\\x6b\\x78\\x05\\x3e\\xc4\\x79\\x36\\xc0\\x1b\\xf6\\x39\\x07\\xf3\\x69\\x53\\x73\\xf7\\x5d\\xe1\\xf8\\x85\\x2d\\x8c\\x84\\x8f\\x58\\xfa\\x99\\xe8\\xd9\\x79\\x69\\x49\\x19\\x39\\x7a\\x63\\x59\\x63\\x60\\x6c\\x62\\x0c\\xe3\\xd8\\x6d\\xf3\\x8a\\x09\\xb5\\x40\\x8a\\xc4\\x8d\\xc4\\x4e\\xd3\\xd4\\xe8\\x44\\xe2\\x04\\xac\\x9c\\x66\\x24\\x50\\xce\\x26\\x3f\\x06\\xe3\\xa7\\x8a\\x05\\x5c\\x69\\x7a\\xf5\\x58\\x3b\\xb3\\x40\\x11\\x89\\xb8\\xfe\\xf4\\x97\\xaa\\x79\\xc4\\x7d\\x7b\\x97\\xe2\\x26\\x26\\x96\\xb2\\xb2\\x35\\xf5\\x83\\x7d\\xed\\xdc\\xcb\\xf7\\xa5\\x8c\\x49\\xb1\\x31\\xeb\\xf8\\x32\\x10\\x52\\x69\\x84\\xcb\\x60\\x87\\x86\\xf2\\xa0\\x00\\xaf\\x6a\\xc8\\x89\\xbb\\x5f\\x0a\\xef\\xf5\\x17\\x19\\x84\\x7e\\xa0\\x17\\x0b\\xbe\\xac\\xf4\\x57\\xab\\x4a\\x87\\xe1\\x60\\xa7\\x55\\x3e\\x32\\x9f\\x1b\\xbd\\x48\\x6c\\xbe\\x64\\x86\\x76\\x7f\\x67\\x7a\\xbb\\xe4\\xe7\\x88\\x20\\xc0\\x94\\x77\\x94\\x1a\\xb6\\x4d\\x1d\\xdc\\x02\\x40\\x18\\xde\\x59\\x84\\xbc\\xd0\\x06\\x60\\xc9\\x0b\\x4a\\xb5\\x66\\xde\\x99\\xff\\x1f\\x00\\x06\\x40\\xf9\\xbf\\x8f\\x1d\\x4f\\x9d\\x36\\x30\\x2a\\xa3\\x21\\x33\\x3e\\x04\\xe5\\x46\\xff\\x12\\x5d\\x97\\x12\\xe9\\xcb\\x2c\\xf0\\x48\\x18\\xbd\\xfa\\xfa\\x8d\\x4e\\xa8\\x0f\\x2f\\xeb\\xe6\\xc5\\xb0\\x05\\x28\\x52\\xa1\\x40\\x48\\x91\\xa8\\x48\\x88\\x0c\\x27\\xd5\\x0c\\x53\\x18\\x54\\x7e\\xf4\\xd5\\x50\\xa8\\xbc\\xaa\\x21\\x55\\xc2\\x22\\x7c\\x51\\x73\\x90\\x03\\x15\\x53\\x4f\\xed\\xaa\\xac\\xdc\\xf5\\xd4\\x94\\xf8\\xc9\\x6d\\xdb\\xa0\\xa2\\x71\\xdf\\x80\\xd5\\xd2\\xbf\\x9f\\x34\\x53\\xfc\\x66\\xc1\\xcc\\x3d\\x43\\x43\\xf7\\xcc\\x14\\x88\\x9f\\x24\\xdf\\x66\\xdc\\x27\\xc1\\xd4\\x4a\\x49\\x17\\xda\\x4c\\x80\\x10\\x8b\\xf5\\x21\\x7a\\x7d\\xbe\\x2c\\x80\\xcc\\x85\\x2e\\x67\\x80\\x1a\\x38\\x3e\\x15\\xa8\\x45\\x54\\xb2\\x31\\xc5\\x79\\x23\\x24\\x8a\\x59\\x84\\x84\\x0f\\x38\\x54\\x49\\x1b\\x12\\x43\\xee\\xe6\\x39\\xe0\\x47\\xaf\\x3d\\xd5\\xe3\\x0c\\x2c\\x29\\x4a\\xd3\\x27\\x25\\x68\\xc3\\x04\\xba\\x50\\xa8\\x15\\x1b\\xf4\\x5a\\xc2\\xb1\\xc3\\xdf\\xc0\\x84\\xc1\\xdb\\x6d\\x1e\\xad\\x45\\x47\\xa5\\x72\\xee\\x36\\x73\\xdf\\xd1\\xee\\xca\\x1d\\x7d\\x39\\xda\\x4c\\x1d\\x64\\x55\\x36\\x57\\x98\\xec\\x03\\xbb\\xaa\\xf5\\x1d\\x2d\\xd5\\xb1\\x2a\\x65\\x61\\x79\\x95\\xda\\xd6\\x55\\x9c\\x6a\\xaa\\x6c\\xae\\xcc\\xd2\\x99\\x74\\xea\\xfc\\x7a\\x43\\xe9\\x60\\x71\\x32\\xf0\\xfd\\x03\\x17\\x97\\x4b\\xd3\\x1b\\x97\\x6a\\x2b\\x36\\x0f\\xf4\\xe7\\x64\\x37\\xd5\\x54\\xb7\\x4f\\x96\\x37\\x6c\\x6b\\x33\\x06\\x44\\x25\\x46\\x8e\\x87\\x25\\x46\\x07\\xa7\\xe4\\xb7\\x58\\x72\\xda\\xeb\\xaa\\x5b\\x37\\x39\\xf3\\x37\\x0d\\x8e\\xe4\\x65\\x35\\xe6\\x26\\x43\\x76\\xf7\\xf6\\x6a\\x44\\x24\\x24\\xe5\\x40\\xe2\\x1b\\x51\\x29\\x6a\\x45\\x43\\xc4\\x12\\x37\\xa4\\x07\\x9e\\xab\\x2e\\x2a\\xe4\\xc8\\x6e\\x86\\x1a\\x49\\x39\\x0a\\xea\\x5a\\x08\\x04\\x1c\\x40\\xde\\x7c\\x2c\\x1f\\x0d\\x02\\x8e\\x13\\xfa\\x64\\x20\\x08\\xd5\\xae\\x10\\x7f\\xec\\xe7\\x87\\xfa\\x20\\x18\\xb3\\x37\\xa5\\xbc\\x0c\\x50\\x5f\\x4f\\x7b\\x5b\\x5d\\x4d\\x59\\x6b\\x79\\x6b\\x6e\\x0e\\x01\\xf0\\xa4\\x69\\xd5\\xc9\\x49\\x71\\x31\\x11\\x0a\\x7f\\x39\\x2a\\x85\\xd2\\x50\\x8a\\xa1\\xbb\\x16\\x8f\\xeb\\x51\\xee\\x94\\x7a\\x1d\\x73\\xe8\\x7a\\xfd\\xdd\\xc4\\x2e\\x19\\x79\\x25\\xca\\x95\\xed\\x3a\\x39\\xb5\\x24\\x27\\x41\\xa5\\xf7\\x98\\x0a\\xb8\\x3d\\x5b\\x4e\\x19\\x22\\x1c\\x55\\x1d\\xd9\\x24\\xce\\x51\\x93\\xd5\\x7f\\xb8\\xeb\\x60\\xa8\\xb6\\xcc\\x96\\x41\\xed\\xce\\x5b\\xc1\\xd8\\x3c\\x5f\\x31\\xbe\\x2b\\x49\\xbf\\xab\\xbb\\x7d\\xd5\\xa5\\x06\\xf7\\xef\\x63\\x0a\\xc6\\xea\\xf5\\xa5\\xf6\\xf4\\x70\\x6d\\xb8\\xb5\\xbc\\xdd\\xfd\\x60\\x52\\x81\\x2d\\x3d\\x14\\x0e\\xe4\\xf7\\x15\\xa7\\x44\\x1b\\xcb\\x60\\x1c\\x1e\\x00\\x1c\\x69\\x72\\x39\\x4a\\xdb\\xb3\\xa3\\x22\\x61\\xa8\\x41\\x5d\\x92\\x95\\x90\\xd5\\x3a\\xef\\x6c\\xd8\\xd7\\x6f\\x7d\\x42\\x5b\\xed\\x50\\x27\\x58\\x2a\\xd3\\xf8\\x52\\xc2\\x8a\\xd4\\x5c\\xea\\x6c\\x29\\x99\\x3e\\x56\\xfb\\xfa\\xe1\\x82\\xe5\\x81\\xbc\\xf0\\x04\\x4d\\x78\\x57\\x74\\x5a\\x4a\\xc4\\x58\\x64\\x6a\\x06\\x59\\xf3\\x21\\xad\\xaa\\xdf\\x66\\xa8\\xc9\\x4d\\xc1\\x19\\x73\\xc6\\xde\\x3a\\xb3\\x73\\x64\\xc5\\x86\\x30\\xea\\xa4\\x3e\\x45\\x59\\x08\\xd2\\xa0\\x42\\x8a\\xe2\\x8b\\x06\\x0a\\x45\\xd4\\xa8\\x53\\x53\\x92\\x29\\xf1\\x9a\\x3f\\xd4\\x20\\x40\\xd4\\xf2\\x37\\xba\\x21\\x1e\\x86\\xd2\\x28\\x18\\x0c\\x54\\xf9\\x80\\xe8\\x70\\xe5\\x46\\x0a\\x05\\xda\\x57\\x3a\\x8f\\x49\\x53\\xef\\xa0\\x96\\x4c\\xce\\xa6\\xf3\\x76\\x8c\\x77\\x17\\xc5\\x25\\x2c\\xef\\x81\\xb2\\xdd\\x2f\\x2d\\x8f\\x3f\\xb1\\xab\\xaa\\x62\\xf7\\x73\\x73\\x63\\xcf\\x16\\x2a\\x67\\x9b\\xdf\\xb7\\xfe\\xaa\\xf0\\x78\\xa3\\xfe\\xab\\x67\\x7e\\x6e\\xeb\\x01\\x88\\xac\\xee\\xdf\\x92\\xdf\\x71\\xb8\\xdf\\x6c\\xed\\xdb\\xd7\\xd8\\x77\\xac\\xd7\\x24\\x04\\xef\\x12\\x5f\\xf8\\x5e\\xf5\\xca\\xdb\\x17\\xfa\\x5d\\x87\\x9e\\x1f\\x9f\\x7b\\xe5\\x70\\x5d\\x53\\xe5\\xa1\\x6f\\x34\\xdf\\x56\\xb7\\xd7\\x5c\\x9b\\x30\\x55\\xbe\\x7b\\x77\\xed\\xfa\\x1f\\x42\\x93\\x42\\x0c\\xa5\\x59\\xb1\\xc5\\x33\\xa7\\x5b\\x1b\\x6e\\x9b\\x2e\\x6e\\x3c\\xf0\\x78\\x3f\\xe2\\xd0\\x32\\xfa\\x2e\\xdf\\xc3\\x9f\\x66\\x76\\x7c\\x16\\xa1\\x49\\xe3\\xde\\x00\\x73\\xa3\\x08\\x18\\xd4\\x88\\xac\\x1d\\x82\\xc0\\x77\\x79\\x22\\xd9\\x79\\xa1\\x89\\x18\\xab\\xd4\\xde\\xf0\\x48\\xfb\\x55\\x00\\xac\\x8d\\x4b\\x1f\\xdf\\xb3\\x1e\\xc7\\xfd\\xd2\\xfd\\x39\\x9f\\xe1\\xca\\xfb\\x01\\x1f\\xda\\x0a\\xd5\\x1e\\x93\\x95\\x5b\\x48\\x31\\x9b\\x53\\x54\\xcc\\x76\\x75\\xf0\\xf2\\x56\\xbe\\x96\\xff\\x14\\x52\\xa1\\x2c\\x54\\x48\\xed\\xe4\\x81\\x7e\\x58\\x40\\x36\\xab\\x41\\x4f\\x9e\\x4c\\xfc\\x00\\x98\\xe7\\xea\\x24\\xf4\\x2a\\x87\\xb9\\xe5\\x6b\\x70\\xb0\\xd2\\x3b\\x6d\\x34\\x45\\x18\\x3d\\x58\\x83\\x62\\x4e\\x12\\xf6\\x72\\x29\\x84\\xf4\\xca\\x32\\xa0\\x65\\xd2\\x48\\x02\\x64\\xa8\\x22\\xa3\\xa5\\x45\\xc0\\x07\\x62\\xc9\\x19\\x36\\xd6\\x0d\\x0c\\xda\\x5a\\x1c\\x89\\x12\\x94\\xa5\\x64\\x8b\\xb9\\x7d\\x60\\x26\\xab\\x3a\\x3b\\x8e\\x6b\\x8c\\xd4\\x3a\\x34\\xe2\\x2e\\xd7\\x28\\x05\\xb3\\xb8\\xd3\\x4b\\x0a\\x61\\x7f\\x4a\\x6d\\xda\\x15\\x64\\x4b\\x54\\xc4\\xdd\\x9f\\xd1\\x8c\\xaf\\x1d\\xab\\x61\\xf0\\x96\\xf8\\xd8\\xa7\\x7e\\xa8\\xdd\\xb4\\xb4\\xbf\\x42\\x65\\x9f\\x1a\\x6c\\x4d\\x5e\\xff\\xa5\\x89\\x02\\x5d\\xc6\\x5e\\x2c\\xe1\\xc2\\xc3\\x14\\x0c\\xea\\xe2\\xc3\\xba\\xc8\\x02\\x98\\xbd\\x62\\xf8\\x2a\\xac\\x8b\\xf2\\x7a\\x58\\xf7\\x8d\\x51\\x2a\\x1c\\x5e\\xfa\\xe0\\x2b\\x3e\\x10\\xa3\\xa2\\xf8\\x60\\x8c\\x4a\\xf6\\xc4\\xbd\\x33\\xd3\\x4f\\x17\\xae\\xad\\xe5\\x3f\\x35\\x33\\x7b\\x71\\x3c\\x7b\\x4d\\x5d\\xbf\\xb3\\x3b\\x67\\xa8\\xa9\\x28\\x2a\\xe3\\xc1\\xe9\\xee\\x1d\\xf5\\xa9\\x12\\x44\\xa5\\xa5\\xde\\xfd\\x7d\\xf9\\x13\\xee\\x7b\\x5b\\x7c\\x18\\x95\\x24\\x7b\\x5d\\xa6\\xfb\\x77\\x1d\\xa3\\x1e\\x8c\\x8a\\x06\\x21\\xfe\\x45\\xb2\\x86\\x45\\x20\\x25\\x1a\\x73\\x3d\\x1b\\x4b\\x1a\\xa4\\x46\\x01\\x88\\xc3\\x01\\xdc\\x88\\x3f\\xd0\\xe0\\xfa\\x40\\x01\\x53\\xaf\\xbc\\x9f\\x8c\\xf9\\x80\\x79\\x2f\\x8d\\x9a\\x8a\\x1e\\xa0\\xe7\\x02\\x10\\x8c\\x5c\\x7d\\x87\\xe7\\x9a\\x1e\\x67\\xf8\\x35\\x9c\\x87\\x41\\x7e\\x89\\x3e\\x22\\x1c\\xf2\\x4b\\x1c\\x23\\xa4\\x8d\\x1e\\x03\\x00\\x6f\\x38\\x7e\\x9c\\x86\\x90\\xae\\xae\\xd2\\x20\\xd2\\xf5\\xff\\xc1\\x4f\\xb9\\xdb\\xf9\\xd1\\x91\\xf7\\x45\\x1a\\x4f\\xca\\xe3\\x11\\x68\\x10\\x5f\\x80\\x06\\xf7\\xd2\\x4f\\x11\\x42\\x5e\\x2c\\x1e\\xf5\\xad\\x52\\x3f\\xf5\\x8d\\x71\\x91\\x37\\x44\\xdb\\xf9\\x90\\x90\\x5e\\xfc\\x23\\xc2\\xe8\\xd6\\xcb\\xbf\\xe3\\xab\\x99\\x1d\\x46\\x89\\xee\\xf1\\x9a\\x03\\x78\\x10\\x80\\x17\\x16\\xa4\\x30\\x4f\\x36\\x62\\x0c\\x3d\\xe8\\x43\\x00\\x24\\x5d\\x73\\x05\\x39\\xb7\\x11\\x96\\xc1\\x70\\x64\\x37\\x2f\\xe7\\xc3\\x8a\\x60\\xc0\\x9c\\xd4\\x48\\xf5\\x95\\x68\\x5b\\xab\\xca\\xaa\\x88\\xf4\\x42\\x72\\xa4\\x99\\x00\\x78\\x6d\\x0d\\x7f\\x7d\\xed\\xf1\\xe7\\x5c\\xbb\\x7b\\x2c\\x6b\\xcb\\x53\\xe5\\xdd\\xd6\\x48\\x12\\x6c\\x79\\xe1\\x91\\x4f\\xa4\\xb5\\xef\\xeb\\xda\\xbd\\xa4\\x2d\\xef\\xa7\\x5b\\x05\\x34\\x2d\\x36\\xf0\\x99\\xc2\\x27\\x51\\x2c\\x52\\xa3\\x2c\\xca\\x39\\xe3\\xac\\x0f\\x06\\x2c\\x93\\xfc\\xe1\\x41\\x10\\x10\\xe0\\xdf\\x17\\x08\\xfe\\xfe\\x15\\x2e\\x3f\\xa0\\xf0\\x4e\\x1e\\x68\\x6f\\x52\\x95\\x43\\x32\\xde\\x6c\\x74\\x96\\xe7\\xe7\\x52\\x4d\\xdb\\xa0\\x63\\x63\\x1a\\x55\\x65\\x0f\\x0b\\x66\\x54\\x96\\x8a\\x6b\\x57\\x62\\x85\\x5a\\x4b\\xc6\\x56\\xea\\xf8\\x0f\\x32\\x99\\xe3\\xc7\\x61\\x8e\\x80\\x41\\x87\\x13\\xad\\x16\\x4b\\x82\\x3f\\x81\\x83\\x66\\x87\\x16\\xce\\xb5\\x98\\xff\\xee\\xfe\\x1c\\x6c\\xff\\x81\\xfb\\xe3\\xc0\\x89\\x97\\xb9\\x20\\x2f\\x30\\xd4\\xfd\\x5f\\xe9\\x66\\x0a\\x5e\\x35\\xa7\\x53\\x88\\xe8\\xf8\\xc7\\x16\\x0b\\x31\\x2f\\x13\\xc6\\x19\\x48\\xb4\\x61\\x4f\\x3f\\xf7\\xf6\\x8c\\x07\\xd2\\x7a\\xc6\\x03\\x69\\x4d\\xf5\\xfc\\x45\\x80\\xbe\\x47\\xe3\\xa1\\xf8\\xfc\\xeb\\x63\\x78\\x4b\\x6e\\x1e\\xc3\\xfb\\xef\\x8f\\xaf\\xad\\x9d\\x85\\xcf\\x9c\\x15\\x63\\x71\\xec\\x79\\xf8\\xf7\\x45\\xf1\\x41\\xb2\\x2d\\x7f\\xe2\\x6e\\xf8\\x94\\xa8\\x70\\xbf\\x84\\x00\\xe5\\x79\\x74\\xc0\\x60\\xba\\xd7\\xa5\\x64\\x71\\x34\\xd4\\xca\\x8f\\x22\\x52\\xaf\\x0d\\xe8\\x8d\\x52\\x44\\x32\\x9b\\xa8\\x36\\x4a\\x60\\xf8\\x15\\xb9\\x9d\\x58\\x01\\x60\\x33\\xe8\\xc4\\x1f\\xd2\\xe0\\xde\\x4f\\x7c\\x62\\x8d\\x73\\xf4\\xcf\\xf5\\xbb\\x2f\\x4d\\xe1\\x87\\xf3\\xe7\\xf2\\xf1\\x25\\x84\\x36\\x60\\x4e\\x15\\xc4\\x4f\\x10\\x4c\\xe9\\xe8\\xa4\\xf2\\xb9\\x2b\\x70\\x65\\x8e\\xe3\\x7b\\x18\\x66\\x79\\xa3\\x53\\x92\\x42\\x50\\x79\\xc4\\xbc\\x96\\x1b\\x0f\\x53\\xb0\\x32\\xf1\\x51\\x32\\x5b\\x95\\x56\\x2e\\x78\\x5e\\x0b\\xc1\\xa1\\xa5\\x86\\x38\\xfc\\x3d\\xe8\\xe6\\xc5\\xa7\\x3c\\x70\\xd4\\x93\\x1c\\xcc\\x8b\\xfb\\xe0\\x9f\\xdc\\xe1\\xa5\\xb9\\x25\\x77\\xeb\\xe6\\xcd\\xf8\\xc8\\xce\\x2d\\x3b\\x70\\xee\\x0c\\x92\\x78\\xf2\\x44\\x17\\x1f\\x49\\xb9\\x53\\x29\\xbb\\x53\\x5c\\x64\\x04\\x27\\xe1\\x84\\xfd\\x01\\x01\\x57\\x27\\xf0\\xd8\\xab\\x86\\x4a\\x78\\x29\\xdf\\x96\\x9f\\xe2\\x78\\x94\\x5a\\x2d\\x43\\x48\\x46\\x78\\x61\\xc2\\x1e\\xa1\\x66\\x07\\xda\\xf1\\x51\\xa0\\xe0\\x23\\x20\\xa5\\x6c\\xaa\\x26\\xc1\\x1c\\x17\\x1c\\x9e\\xa3\\xc8\\x28\\xd0\\x84\\xb9\\x6f\\x5f\\x5d\\xc5\\xf3\\x24\\x7e\\xeb\\x1f\\x15\\xc4\\xa1\\x14\\xe8\\x37\\x2a\\xf7\\xcf\\xac\\xea\\x36\\x0e\\xf0\\x9f\\x7c\\x9f\\x90\\x64\\xf1\\xef\\x57\\x91\\x15\\x09\\xd0\\xd7\\x48\\x9d\\x38\\xbe\\x11\\x65\\xa2\\x57\\x9c\\xa1\\xe9\\x80\\x79\\x2e\\x8a\\xfc\\x13\\x09\\x80\\x39\\xc9\\x1e\\xe4\\xb1\\x99\\xca\\x04\\xec\\x59\\x92\\x36\\xce\\x6b\\x1f\\xd9\\x24\\x55\\xc2\\x4a\\x7c\\xb1\\xb3\\x37\\xbc\\x2e\\xf2\\x43\\xcb\\xfa\\xd0\\x62\\x7c\\xf6\\xa1\\x4c\\x94\\x19\\x95\\xa6\\x4f\\x93\\xec\\x43\\x4a\\x8f\\x25\\xee\\x5a\\x08\\xf5\\x46\\x40\\x39\\x38\\x02\\x62\\x2b\\x3a\\xa7\\x8b\\x07\\x8f\\x75\\xa7\\xeb\\xeb\\x17\\xeb\\x53\\x0a\\x52\\x82\\x83\\x12\\x93\\x12\\x02\\xcd\\x55\\x99\\xd1\\x89\\x25\\x13\\x75\\xa5\\x13\\x8d\\x0e\\xc5\\x36\\x3e\\xff\\xd3\\xe6\\x86\\xdc\\x24\\xe7\\xca\\x83\\xa3\\xee\\x48\\xd7\\xde\\x01\\x7b\\x80\\xff\\x24\\x27\\xe3\\xb1\\xae\\xac\\xcb\\x82\\x7f\\x53\\xbb\\xbb\\xcf\\x4a\\x7d\\x76\\x6e\\x8e\\x67\\x76\\xdc\\xfa\\xcb\\x7f\\xe4\\x1f\\x15\\x3e\\x4d\\x06\\x28\\x13\\xee\\x76\\x3d\\xab\\x22\\x0d\\x0c\\x48\\x01\\x1e\\x27\\x03\\x92\\x33\\xcc\\x9d\\xfa\\xca\\x11\\x3f\\x7a\\x84\\x7d\\xf1\\x97\\xbe\\xf4\\xf4\\xf8\\x18\\x3d\\x11\\x35\\x43\\x8e\\xf8\\xfb\\x28\\x37\\x0b\\x5d\\x01\\x7e\\x98\\xda\\x20\\xc1\\x27\\x3d\\x83\\x6e\\x7c\\x65\\xc5\\xf5\\x57\\x86\\x7c\\xe4\\x32\\x55\\x1f\\xb9\\x4c\\xda\\x8e\\xf4\\x1b\\x5d\\xc9\\xb6\\xdc\\x4c\\x06\\x07\\x80\\x9f\\x9f\\xc7\\xc7\\x40\\xef\\xc8\\x20\\x77\\xd8\\xbc\\x77\\x10\\xdf\\x9b\\xef\\x86\\x0f\\xbd\\xd7\\x69\\xb9\\xea\\x36\\xc4\\x2e\\xf5\\xed\\xf1\\x6f\\x7c\\x53\\x0f\\xfb\\x71\\x46\\x24\\x25\\x68\\x54\\x09\\x99\\x49\\x99\\x4c\\xca\\xe6\\xa5\\x86\\x05\\x12\\xab\\xad\\x4a\\x25\\x93\\x51\\xff\\x2c\\xdd\\x04\\x39\\x72\\xa2\\x95\\x3e\\xd6\\x0b\\x81\\x84\\xcb\\x10\\x9c\\x31\\xd5\\xe3\\x15\\x44\\x45\\xe5\\x1f\\x15\\x73\\x0a\\xb6\\x97\\x6c\\xb9\\x38\\x96\\x95\\x35\\x7a\\x61\\x4b\\xc9\\xce\\x02\\x12\\x29\\x5a\\x03\\xbb\\xc5\\x83\\xf0\\x86\\xbb\\x5c\\x5d\\xa9\\x56\\x57\\xa9\\x3b\\x17\\x2a\\x12\\x12\\x2b\\x16\\x65\\x01\\x00\\x43\\x17\\xbe\\x38\\x05\\xdb\\xa6\\xbe\\x78\\x61\\x08\\xc8\\x70\\x4e\\xb8\\xbf\\x3f\\xe1\\x7e\\x22\\x94\\xc2\\x95\\xfe\\xcd\\x61\\x68\\xd8\\xfd\\x40\\x97\\x78\\xb4\\xeb\\xc1\\x3d\\x0d\\x2c\\x42\\x31\\x9e\\xe8\\xda\\xaf\\x93\\x77\\xcc\\x86\\xea\\x50\\x17\\x8d\\x24\\x0c\\x20\\xb7\\xa4\\xa7\\xaa\\x38\\x8a\\xe2\\x23\\x9f\\x11\\xe6\\xfc\\x30\\xd3\\x03\\x7c\\x08\\x72\\xe0\\x38\\xbe\\x4f\\x00\\x46\\xf7\\x57\\xef\\x6a\\x6b\\x71\\x75\\xd5\\x77\\xa5\\xa5\\xe9\\xd2\\xb4\\x51\\x06\\x4d\\xe0\\x06\\x6a\\x5c\\x3a\\xf7\\xaf\\xdf\\xa1\\xa8\\xaf\\xec\\x6b\\x6e\\xc0\\x87\\xab\\xb2\\xe7\\x78\\x3e\\xc6\\xeb\\x5a\\xf6\\xf6\\xda\\x3a\\x2b\\xed\\x91\\x11\\xb6\\xb2\\xc6\\xac\\xb6\\xad\\xb5\\xa9\\x58\\xf4\\x8f\\xb6\\xb4\\x16\\xea\\x9c\\xf6\\x8c\\xf0\\xb4\\x28\\x5b\\x49\\x43\\xe6\\xf8\\x2d\\xfa\\x48\\x7b\\x65\\x07\\xd1\\xc7\\x5b\\x74\\x6b\\x91\\x96\\x76\\x67\\x49\\xab\\x25\\x2a\\xca\\xd2\\x5e\\x52\\xd2\\x96\\x1d\\x85\\xb3\\xe0\\x20\\x84\\x13\\x7a\\xad\\xbc\\x7a\\x53\\x24\\x5e\\xed\\x7c\\xfc\\x48\\x5b\\x82\\xb5\\x2a\\x3d\\xbd\\xca\\x9a\\x50\\xb9\\x7c\\x47\\xf3\\x03\\x7d\\x85\\x7b\\x26\\xcb\\xc2\\x62\\x55\\x61\\xad\\x51\\x86\\xa4\\x70\\x98\\x6a\\x4d\\xab\\xb4\\xc4\\xb7\\x1e\\x79\\xac\\xab\\xe4\\xe0\\x6c\\x45\\xe5\\xcc\\xc1\\x92\\x17\\x8a\\x0f\\xce\\x56\\x56\\xce\\x1e\\x2c\\xc6\\x6d\\x99\\x13\\x1d\\x79\\x15\\x33\\xfb\\x0a\\x99\\x6d\\x92\\xda\\x6a\\xdd\\xb2\\x64\\xa4\\xa0\\x38\\x34\\x8a\\x6b\\x0a\\x00\\x8a\\x52\\xa5\\xe7\\x30\\x82\\x51\\x9f\\xcd\\x96\\x5c\\xa0\\xd0\\x6a\\x99\\x41\\x94\\xf5\\x89\\x07\\x43\\x4a\\xcc\\xc4\\x0a\\xf8\\x5f\\x70\\x8c\\x9f\\xe8\\xd2\\xd5\\x68\\x43\\xe3\\xf3\\x53\\x0e\\x9c\\xc1\\xfc\\xa5\\xfe\\x53\\x9b\\x6c\\x01\\xfe\\xc3\\x72\\x39\\xdc\\x79\\xf8\\xfd\\x4d\\x54\\x26\\xdf\\x4f\\xe4\\x5f\\x9d\\x2c\\x99\\xfa\\x95\\x9d\\x85\\x2a\\x90\\x09\\xa9\\xc0\\x93\\xf1\\xc5\\x88\\x3c\\x13\\xf3\\xcc\\xda\\xc4\\x0b\\x32\\xf2\\x3c\\x84\\xf8\\x1e\\x1a\\xa2\\x75\\x15\\x06\\x2e\\x4a\\xa3\\x55\\x44\\xe9\\xb4\\x1e\\xef\\x0c\\x47\\xfb\\xdc\\x2b\\x7e\\x1c\\x54\\x55\\xf3\\x45\\x39\\x31\\x39\\xa4\\x54\\x71\\xaf\\x88\\xef\\x00\\x64\\xf7\\xef\\x6f\\x69\\xa8\\x0e\\x0e\\xd6\\xe8\\xd4\\xc1\\xf6\\x8e\\xc2\\x14\\xf8\\xf6\\x77\\x20\\x6f\\xe2\\x44\\x67\\x46\\xbb\\x31\\xcc\\xd9\\x54\\x32\\x59\\x63\\x00\\x80\\x54\\xee\\x07\\xef\\xff\\xac\\xeb\\xd8\\x60\\x76\\xc2\\xa8\\xcc\\x5f\\xce\\x69\\x2a\\x47\\x8a\\xf9\\xe4\\x4d\\x7b\\xbb\\x8e\\xf4\\x99\\x42\\x83\\x46\\xa3\\x55\\xce\\xa1\\xe2\\xbd\\x08\\xa3\\x35\\x32\\xb7\\xbe\\x2a\\x43\\x28\\x0d\\x55\\xa3\\x96\\x97\\x75\\xf1\\x98\\xf7\\x2d\\x73\\x71\\x4c\\xc9\\xbe\\x21\\x99\\x8a\\xe4\\x9e\\xc1\\x4b\\x37\\x3c\\xd9\\xf3\\x4a\\x66\\x56\\x6c\\xa6\\x8e\\x2e\\x78\\x57\\xb3\\x49\\xd0\\xd9\\xe6\\xb0\\x4a\\xc4\\x92\\xd7\\xd3\\x1f\\xb8\\x3c\\xe6\\xa5\\xae\\xdb\\x36\\x12\\x4b\\x14\\xcf\\xf4\\xd6\\x25\\xa5\\x3b\\x54\\x21\\x78\\x4e\\x69\\x6d\\xca\\x31\\xe8\\x18\\xc7\\x44\\x6e\\xdb\\xff\\x85\\x63\\x22\\xd1\\x56\\x6b\\xf4\\xcb\\xac\\xe8\\xb4\\x94\\x2e\\xf4\\x14\\x87\\x76\\x7c\\x7a\\xf0\\x66\\x74\\x13\\x08\\xa3\\xad\\xa4\\x4f\\x9e\\xe2\\x9f\\x44\\xc9\\xc8\\x4e\\x77\\x7d\\x0a\\x3f\\xcc\\x79\\x6c\\x6b\\x4b\\xde\\x66\\x56\\x6f\\x34\\x98\\xa4\\xa5\\x19\\x95\\x1a\\xda\\x5c\\xcf\\xde\\x8a\\xb6\\x92\\xb9\\x75\\x6e\\x12\\x19\\xb0\\x95\\x6d\\xaa\\x26\\x1f\\x2a\\x32\\x16\\xea\\x14\\x30\\x0f\\x63\\x93\\x19\\x99\\x1f\\x1e\\x23\\x50\\x5d\\xcc\\xab\\xf3\\x9a\\x2d\\x7b\\x2e\\xc5\\x55\\x3e\\xda\\x7f\\x93\\x60\\x01\\xc6\\x03\\x20\\xd4\\x0a\\xeb\\x48\\x4b\\x46\\x35\\x08\\x58\\xa0\\xa0\\x24\\x87\\x95\\x2c\\x74\\x46\\xa0\\x21\\x26\\x57\\x71\\xb7\\xc4\\xd3\\x33\\x18\\x2d\\x5d\\x7f\\x46\\x8a\\xb3\\xd0\\x22\\xad\\x36\\x2a\\x3d\\x9a\\x69\\x11\\x51\\xde\\x71\\xbc\\x21\\x81\\x80\\xb5\\x4c\\x17\\x06\\x5b\\x92\\x2b\\x66\\xea\\x6f\\x42\\x25\\xf0\\xa6\\x3c\\xa3\\x6a\\x20\\xaf\\x79\\xdf\\x40\\x9e\\xdc\\x5d\\xf5\\x01\\xac\\x02\\x48\\xc2\\x09\\x0b\\xb1\\xfc\\x45\\x32\\x16\\x1f\\x73\\xfa\\xc7\\x29\\x65\\x1c\\xcf\\xe1\\x2b\\x9e\\x26\\x10\\xb0\\xb0\\x44\\xb7\\x3e\\x9e\\x45\\x1f\\xae\\xda\\x2e\\x24\\x6c\\x38\\xef\\x33\\x80\\x6d\\x58\\x64\\x22\\x6f\\x5a\\xc6\\x4d\\x6f\\xf7\\x69\\x12\\xc9\\x28\\x99\\x00\\x89\\xd5\\x91\\x4c\\x93\\xa0\\x52\\x43\\xad\\xbf\\x1e\\x4f\\x4c\\xfb\\x4b\\x88\\xc5\\x7b\\x6f\\x5b\\x90\\x5d\\x0b\\x2b\\xce\\x20\\xa8\\x0e\\xe0\\x2f\\xde\\xfd\\x48\\xc8\\xfa\\x33\\xd7\\x21\\x8c\\x6f\\x93\\x6b\\x0a\\x5a\\x73\\xa4\\x98\\x49\\xd1\\xc5\\x25\\x52\\x7f\\x1b\\xc5\\xb5\\x06\\x03\\xe6\\xa4\\x5d\\xc4\\x0d\\xe3\\xc2\\xe8\\xfe\\x80\\x6a\\xd5\\x37\\xda\\x1f\\xa8\\xc0\\x1f\\x47\\x6e\\xd4\\xfe\\x73\\x3c\\xc1\\x60\\x63\\xde\\x10\\x30\\xaa\\xdf\\x6f\\x08\\x02\\x43\\x18\\xbd\\x42\\xde\\x87\\x66\\xbe\\x09\\x25\\xa1\\x74\\x4f\\xdc\\x29\\xe6\\x18\\xf9\\x8d\\xc0\\x63\\x61\\xc4\\x17\\x6c\\x4a\\x83\\xd7\\x79\\xde\\xdb\\x41\\x29\\xc9\\x80\\xb4\\x9a\\xe4\\xf4\\x94\\x74\\x4f\\xdc\\x69\\x12\\x24\\xd1\\xb8\\x53\\xa0\\x72\\xc0\\x67\\xfb\\xb1\\xd3\\x40\\x53\\xea\\xb8\\xd5\\xe7\\xe4\\x30\\xb2\\x46\\x1a\\x88\\x8a\\xc7\\xe7\\x5f\\xda\\x57\\x05\\x35\\x7b\\x9f\\x9e\\x9c\\x79\\x78\\xb1\\x90\\x4b\\x05\\xeb\\xd0\\x2d\\xdd\\x33\\x4f\\x17\\x5b\\xcb\\x3e\\x7f\\xa6\\x76\\xad\\x37\\x2f\\xd0\\xdd\\x07\\x19\\xed\\x6b\\x7c\\x63\\xc7\\xed\\x9f\\x99\\x75\\xcc\\xbd\\x79\\xb6\\xb3\\x6a\\xe7\\xe3\\xa3\\x13\\x89\\xed\\xf7\\x6e\\xab\\x2e\\x28\\x6e\\x2b\\x75\\xad\\xe3\\xfc\\x4d\\x07\\x6b\\x13\\x2b\\xd6\\x7a\\xed\\x08\\x40\\xc5\\xff\\x9a\\xab\\x17\\x7e\\x87\\xfc\\x28\\x76\\x42\\xc6\\x61\\x0f\\x69\\x40\\xf5\\x86\\x10\\xfe\\xf0\\x48\\xe6\\x69\\x8b\\x52\\x13\\x5b\\x88\\xdd\\x61\\xe5\\xea\\xe7\\x1f\\x7f\\x74\\xf6\\xf7\\xf5\\xfc\\xfb\\x8a\\xa7\\x9f\\x8e\\xfc\\x03\\x02\\x68\\xe4\\x7f\\xc2\\xed\\x12\\x7e\\x45\\xca\\x48\\x74\\xc6\\xc9\\x18\\x4e\\xd6\\x0f\\x50\\xcd\\x06\\x4f\\xa9\\x87\\xa3\\xdb\\x61\\x8d\\x92\\xab\\xf5\\x76\\x2b\\x1e\\xff\\xf8\\xe6\\xdf\\x76\\xfe\\x76\\x46\\x30\\x7d\\x22\\xf4\\x5f\\xff\\x0c\\x43\\xb4\\x57\\xf8\\x4f\\x73\\x47\\x85\\xcf\\x20\\x05\\xad\\x87\\x07\\x2d\\x26\\x51\\x74\\x80\\x67\\x25\\x4a\\x8d\\xd4\\x30\\x62\\x0e\\xaf\\xd8\\xf0\\x4c\\xa0\\xa3\\xd8\\x58\\x3f\\x55\\x52\\x32\\xdd\\x60\\xc4\\x13\\xdc\\x48\\x77\\xc7\\x08\\x2f\\x7c\\xa6\\x60\\xa8\\x5c\\xa3\\x29\\x1f\\x2a\\x68\\xee\\xeb\\x6f\\x42\\x80\\x43\\x85\\x30\\xfc\\xba\\xf0\\x92\\x87\\x1b\\xda\\xa3\\xff\\x93\\x72\\x6f\\xe0\\x42\\x0c\\xcd\\x4c\\x33\\x98\\x4c\\x86\\xb4\\x4c\\x61\\x53\\x6a\\xb6\\x59\\xad\\x26\\x36\\x26\\x0c\\x4f\\xf3\\x27\\xb9\\x44\\x41\\x64\\x38\\x87\\x62\\xd7\\xb3\\xc9\\x14\\x51\\x7f\\x8d\\x63\\xae\\x98\\xa3\\x56\\x63\\x0f\\x77\\xc3\\x28\\x83\\x9f\\x74\\x79\\x66\\x1d\\x86\\xa6\\x9e\\x97\\x3f\\x32\\x0c\\xe2\\xe9\\xc4\\xec\\x72\\xbd\\xae\\x3c\\x3b\\x91\\xfc\\xd5\\xe9\\xc9\\xdf\\x7a\\x45\\xa2\\x5e\\xa9\\xd4\\x27\\x84\\x85\\x25\\x90\\xbf\\x86\\xc4\\x30\\xa1\\x42\\x57\\x61\\x4d\\x4c\\xb4\\x56\\xe8\\xf4\\x65\\xd9\\x09\\x09\\xd9\\x65\\x7a\\x25\\x59\\xfe\\xc3\\x93\\x0c\\x4a\\x65\\x7a\\x72\\x78\\x78\\x72\\x3a\\x5b\\xe3\\x1f\\x10\\x47\\xf1\\xaf\\x91\\x16\\xc5\\xd2\\xfe\\x0c\\x62\\x63\\x12\\x1b\\x88\\x99\\x0f\\x12\\xfa\\x24\\x33\\x8f\\x56\\x4f\\x9b\\xaf\\x0a\\xe1\\x28\\x42\\x99\\xc6\\x37\\x6f\\xe0\\x8d\\xc7\\x5f\\x4c\\x2d\\xb7\\xa9\\x20\\xd3\\x98\\x92\\x1b\\xa5\\x4c\\x74\\x59\\xb5\\x25\\x59\\x71\\xfa\\x92\\x56\\x63\\x94\\x25\\xbf\\x4c\\x6b\\xc8\\x04\\x62\\x15\\x6a\\x8f\\x88\\x8d\\xce\\x28\\x4e\\x4b\\x6f\\xae\\x29\\x8e\\x95\\xf6\\x60\\x67\\xf9\\xbf\\x72\\xa9\\xc2\\x0f\\x50\\x22\\xc5\\x20\\x23\\x00\\x1c\\xc2\\xec\\xed\\x89\\x80\\x6b\\x82\\xe9\\x94\\xe2\\xa8\\xc2\\x36\\xe4\\x05\\x87\\x54\\x40\\xbd\\x5a\\xaf\\xde\\x88\\x41\\xa6\\x9a\\x85\\x07\\x81\\x24\\x11\\x63\\xa5\\xe2\\xf8\\xec\\x0a\\x63\\x56\\x79\\x61\\x71\\x9a\\x35\\x97\\x6b\\x82\\x78\\x12\\xf6\\x9d\\x5e\\x5e\\x52\\x6a\\x88\\x35\\x24\\x84\\x62\\xe1\\xcb\\x69\\x75\\xb9\\xaa\\xd4\\xf4\\x54\\xa8\\xb0\\x04\\x1b\\xc8\\x47\\x75\\x5a\\x6a\\xa4\\x2a\\x83\\x56\\x06\\x43\\x14\\xff\\x03\\xee\\x15\\xe1\\x1f\\x14\\xe3\\x48\\xf3\\x76\\x18\\x68\\xde\\x0e\\x5f\\x82\\x0e\\x54\\x0c\\x14\\x4d\\x8a\\x81\\x4e\\x86\\x0e\\x5f\\x3a\\x0f\\x04\\x24\\x6f\\x87\\x8f\\x67\\xc3\\xca\\x48\\x2b\\xd4\\x5c\\xe2\\x79\\xf1\\x3b\\xdb\\xb5\\x27\\xff\\xb1\\x45\\xf8\\x87\\xf8\\x33\\x48\\x16\\x7f\\xc6\\xca\\xff\\x9a\\x78\\x01\\xff\\xe4\\xf2\\x43\\x64\\x4e\\x24\\x53\\xd6\\x8e\\x0f\\x1a\\x79\\x8d\\x4e\\x1a\\x77\\xe1\\xda\\x71\\x97\\x66\\xaf\\x4d\\xa7\\xd6\\xc9\\xe0\\x6b\\x4a\\x9d\\x25\\x21\\x9e\\x20\\x31\\xa2\\xb5\\x96\\xf8\\x78\\xab\\x4e\\x59\\xc3\\xa7\\x26\\xc6\\xe9\\x40\\x1f\\x97\\xa8\\xfe\\x79\\x42\\xb6\\x26\\x2a\\x4a\\x43\\x06\\xda\\x9c\\x1a\\x19\\xa1\\xce\\x4a\\x8c\\xd3\\x68\\xe2\\x12\\xb4\\xa0\\x43\\xb0\\xfe\\x2a\\xff\\x35\\xf7\\x77\\x65\\x01\\xa4\\x8d\\x3a\\xc9\\xf4\\x17\\xe8\\x7b\\x6b\\x69\\xfb\\xfc\\xd9\\xaa\\x4c\\x9d\\xce\\x3d\\x2f\\x5e\\xa1\\xe1\\x70\\x7f\\x77\\xf4\\x13\\x07\\xf8\\xaf\\x41\\x31\\x1b\\x33\\x77\\x13\\xff\\x75\\xb1\\x57\\x16\\xb8\\xb1\\x0c\\xdf\\x6b\\xcb\\xca\\x20\\x5f\\xa9\\x9b\\xfc\\x4a\\x19\\xa4\\x4f\\xdc\\x3f\\xdb\\xfe\\x7c\\x8f\\x2c\\x50\\xfc\\x1c\\xf3\\xfd\\xae\\x2f\\xf2\\x7f\\xbd\\x8c\\xc8\\xb8\\xcb\\xd1\\x03\\xef\\xbf\\x83\\xa4\\x72\\x5b\\xf9\\x6f\\x8b\\x7b\\x89\\xad\\x46\\x49\\x51\\x38\\xd1\\x80\\x31\\x62\\x3e\\x77\\x84\\x97\\xaf\\x0d\\x09\\xd8\\xe8\\x78\\x07\\xbd\\x07\\xae\\xe2\\xf0\\xe6\\xdf\\x70\\xaf\\x40\\x72\\x61\\x56\\x62\\x5a\\x61\\x55\\x92\\x3c\\x67\\x73\\x9b\\x35\\xd9\\x52\\x92\\xc2\\x7f\\x7b\\x37\\xe7\\x1f\\xa1\\x4e\\x48\\xd2\\x46\\xc9\\x1b\\x20\\x22\\xad\\x34\\xcb\\x90\\xab\\x8d\\xe0\\x49\\x8b\\xf0\\xfb\\x2b\\xfc\\xbb\\x62\\xa8\\xf0\\x7b\\x3a\\xee\\x14\\x2f\\x79\\x55\\xaa\\x96\\x2b\\xd4\\x2d\\xd2\\xe0\\xba\\x13\\xb6\\x8b\\xdf\\xbe\\x07\\xc3\\xdc\\xbf\\x4f\\xf2\\xef\\x42\\x80\\xf8\\x77\\xc6\\x4d\\x02\\xeb\\x6e\\xf1\\x6b\\xee\\x27\\x2e\\x2f\\xde\\x0c\\x77\\x20\\xe8\\xae\\x08\\x8d\\x75\\x11\\xb2\\x3c\\x1c\\xaa\\x3f\\x27\\x70\\x74\\xb5\\x17\\x77\\x80\\xcb\\x04\\x3f\\x2e\\x4e\\xd6\\x42\\xea\\xa2\\x70\\x86\\xf8\\x3a\\x92\\x74\\xa3\\xdc\\x83\\x1a\\xb9\\xeb\\xe0\\xa9\\x5a\\x59\\x8b\\xf8\\x0a\\xe2\\xa0\\x51\\x48\\xe4\\xde\\x92\\xdd\\xeb\\xb1\\xa7\\x53\\x1b\\x22\\xa3\\x9f\\x91\\xb8\\xee\\x70\\x1f\\x5d\\x68\\xcd\\x5c\\xbd\\xc7\\x88\\x2e\\xa7\\xfc\\xdd\\x72\\xb5\\xf0\\x41\\x46\\xac\\x3d\\x27\\x9a\\x87\\xc5\\xbf\\x64\\x30\\xff\\xb0\\x2e\\x13\\xbe\\xe1\\xfd\\x24\\xbb\\x77\\xdd\\x4c\\xbd\\xc0\\xaa\\xec\\x6c\\x95\\xe7\\x2f\\xe5\\xda\\x35\\xe1\\x9d\\xf8\\xff\\x71\\x29\\x58\\x86\\x56\\x63\\x68\\x35\\x3f\\x85\\x10\\x6f\\xf0\\xf1\\xc0\\x49\\x00\\x79\\x6c\\xa0\\x96\\x93\\x34\\x89\\x45\\x46\\xae\\xf4\\x30\\x5b\\xf1\\x06\\x77\\xc8\\x1a\\xb7\\x59\\xa8\\xfb\\x37\\xc5\\x7e\\x90\\x2b\\x59\\xbc\\xce\\x93\\xcc\\x76\\x29\\xa3\\x16\\x28\\x19\\x60\\xa0\\x03\\x0f\\x40\\xee\\xc7\\x98\\xad\\xc7\\x69\\xd4\\xf2\\xe2\\x41\\x17\\x13\\x1d\\xd7\\x08\\xa0\\xa2\\xff\\xe3\\x97\\xe0\\xef\\xef\\x9f\\xc5\\xfe\\xe2\\x39\\xce\\x2a\\xce\\x53\\x96\\x4e\\xf2\\xfb\\x12\\xff\\x71\\xc6\\xd3\\xe9\\xe3\\x69\\xe3\\x28\\xc3\\x18\\xe3\\x62\\x04\\x52\\x08\\xa0\\x11\\xaf\\x19\\xdb\\xec\\x63\\xee\\xce\\xc6\\x94\\x5d\\x4c\\xef\\xe9\\x27\\x4a\\xf9\\xf3\\x21\\xbc\\x6d\\x5c\\xab\\x18\\x03\\xef\\xb9\\xff\\x73\\xf2\\xb6\\x87\\xc6\\xcf\\xfc\\x47\\xf4\\x6d\\x08\\x50\\x23\\xc5\\x3f\\x78\\xb9\\xa1\\x10\\xed\\x26\\x3a\\x65\\xd3\\xd8\\x64\\x65\\xfd\\x2c\\x4d\\x56\\x3c\\x2b\\x0e\\xec\\x84\\x5f\\xcd\\xc3\\x7b\\x3b\\x05\\xfc\\x6f\\x91\\xf6\\x8e\\xd4\\x2f\\xf7\\x78\\x38\\x24\\xe9\\x7c\\x67\\x1c\\x95\\x1e\\xfe\\x41\\x9a\\xbb\\x81\\xd9\\xe1\\x0c\\x3e\\x9b\\x1f\\x1d\\x3c\\xfa\\xc3\\xfa\\xc5\\xe1\\xf1\\xd8\\x73\\xe4\\xf7\\x1e\\xee\\xce\\xf5\\xcd\\xc3\\xf8\\x6b\\x6e\\x5b\\x07\\xb7\\xb0\\x7e\\x7a\\x7c\\x9c\\x0b\\x9b\\xe0\\x64\\x13\\xac\\x7e\\x4f\\x93\\xf2\\x93\\xbc\\xbc\\x5b\\x08\\x80\\xd9\\x0a\\x36\\x56\\x32\\x8c\\x97\\xc7\\x78\\x99\\x17\\x55\\x7c\\xd2\\xaa\\x7b\\xd7\\x2a\\xb7\\xe0\\x9d\\x10\\x80\\xb6\\x93\\xfb\\xa7\\x18\\x57\\x61\\x96\\x33\\x83\\x52\\x03\\x06\\xc9\\xe8\\xc0\\x0b\\x00\\x88\\xab\\xf3\\x72\\x5d\\x5e\\x5d\\x47\\xe2\\x23\\xa6\\x65\\x02\\x50\\x6b\\x20\\x80\\x9d\\xfc\\x01\\xfc\\x2f\\x31\\x9a\\xeb\\x59\\x57\\x60\\xde\\xbd\\xce\\xbd\\xba\\xfe\\x0b\\xf8\\x1f\\xfc\\x2b\\xf7\\xde\\x89\\x01\\x7c\\x1e\\xf7\\x0f\\x4c\\xb8\\x3f\\x4b\\xfb\\x82\\x8a\\x12\\x7e\\x0f\\xe3\\xf7\\xd2\\xa0\\x2c\\x64\\x76\\x66\\xf2\\x80\\xfc\\x41\\x26\\x47\\xb2\\x51\\x3f\\x90\\x73\\x00\\x58\\xce\\x38\\xb4\\xd9\\x54\\x4c\\xc3\\xf5\\x19\\xc6\\x18\\x62\\x7e\\x8c\\x51\\x28\\x62\\xc2\\x02\\xe4\\x89\\x46\\xd8\\x98\\xf3\\xc7\\x13\\xea\\x01\\x36\\x29\\x5b\\x83\\x96\\x7a\\xfe\\x15\\x21\\x1c\\xfe\\xd8\\xe4\\x33\\xfb\\xaa\\xab\\xf7\\x3d\\x33\\xb9\\x3a\\xf5\\xcc\\x9e\\xea\\xea\\x3d\\xcf\\x4c\\xad\\xc2\\x84\\x65\\xe0\\x70\\x6b\\xeb\\xe1\\x01\\xcb\\xfa\\xa7\\x2d\\xfd\\x87\\xda\\xda\\x0e\\xf5\\x5b\\xf8\\x5f\\x0b\\x6d\\xb7\\xbd\\xb1\\x65\\xfe\\x8d\\x13\\xed\\xc2\\x57\\xbe\\x22\\xb4\\x1d\\x7f\\x63\\x7e\\xcb\\x1b\\x27\\xda\\x84\\x2f\\xb8\\x33\\x7a\\xee\\x5e\\x28\\x13\\xd6\\x9f\\xe4\\x2b\\x96\\xee\\xe9\\xee\\xbd\\x7b\\xb1\\x9c\\xe7\\xda\\x85\\xf2\\xc5\\xbb\\x11\\xa0\\x9d\\xa4\\xfe\\x43\\xa4\\xfe\\xc9\\x28\\xc5\\x99\\x98\\x18\\x16\\x8c\\x78\\x16\\x80\\x46\\x49\\x99\\xbc\\x6f\\x9f\\x52\\xa9\\x8c\\x66\\x9d\\x43\\xe4\\x24\\xd9\\x58\\x84\\x70\\xd4\\x00\\x67\\xe2\\xf4\\x0a\\x6b\\x04\\xab\\xa1\\x15\\x3f\\xea\\x5a\\x6d\\xcd\\x84\\x55\\x80\\xe2\\xa5\\x07\\xc6\\xb7\\x11\\xa3\\x74\\x11\\x6c\\x83\\x8c\\xd6\\x95\\xba\\x6d\\xf0\\x43\\xff\\xca\\xb9\\xb3\\x5d\\x38\\xdb\\xfd\\xf6\\xc2\\x27\\x8e\\xb5\\xfa\\x8b\\x27\\x60\\xd9\\xbf\\xed\\xd8\\xab\\x0b\\xf4\\x48\\xd7\\x99\\xb9\\x4a\\x7f\\xee\\x7b\\x6c\\xcc\\x67\\x49\\x3d\\x36\\x31\\xfe\\xd8\\x74\\xa7\\x3e\\x1a\\x31\\xd9\\xed\\x45\\x93\\x99\\x99\\x37\\x05\\x7a\\x04\\x90\\x06\\x2b\\x2e\\x5d\\x11\\x9f\\x4e\\x27\\x94\\xb6\\x98\\xf3\\xed\\xe0\\x24\\x68\\x37\\xb5\\xe5\\x52\\x04\\xc5\\x46\\xa0\\x12\\x8d\\x42\\xc1\\x2f\\x37\\x2c\\xd4\\x6a\\xcc\\x43\\x27\\x87\\x87\\x4e\\x0c\\x9a\\xb5\\xae\\xa5\\x46\\xb1\\x0d\\xb2\\xeb\\x16\\x5c\\xfa\\xd2\\x3d\\x9f\\xd8\\xb1\\xe3\\xb5\\xbd\\xa5\\x3a\\xd7\\x7c\\x2d\\xd8\\xc4\\xf6\\x23\\x29\\x5b\\x2f\\xbe\\x39\\x3f\\xbe\\xf9\\x33\\xb7\\x77\\x74\\xde\\xfe\\xe9\\xcd\\xe3\\x0b\\x6f\\x5e\\x5c\\x4e\\x39\\x32\\x6e\\x3e\\xf9\\xc4\\x1b\\x43\\xa3\\xbb\\xde\\x7d\\x66\\x7a\\xfa\\x99\\x77\\x77\\x8d\\x0e\\xbd\\xf1\\xc4\\x49\\x33\\xf5\\x9b\\x1c\\x21\\xfe\\xfe\\xa3\\x1e\\xbe\\x92\\xa7\\x9c\\xc1\\x96\\x6c\\x12\\x44\\x87\\xa8\\x41\\x09\\x79\\xe9\\x4a\\x62\\x91\\x4c\\xc6\\xf5\\xc9\\xa9\\x39\\xd8\\xea\\x12\\x80\\x0a\\x75\\x0c\\x00\\xd9\\x3e\\x63\\x6b\\x22\\x55\\xd3\\x8d\\x2e\\x76\\x19\\xba\\xd1\\x45\\x91\\x37\\x2f\\xe5\\xe6\\x05\\xb0\\x9d\\x91\\x02\\xa1\\xdc\\x9c\\x4c\\x23\\xa9\\xa5\\xce\\xa8\\xd3\\x45\\xf9\\xd1\\xd1\\xa4\\x46\\xb2\\x8d\\xd1\\xa3\\xd2\\x1f\\xda\\x75\\x3c\\x73\\x48\\xc2\\xb5\\xcc\\x24\\xdc\\xf7\\x03\\xa2\\xf5\\x49\\x61\\x89\\xc1\\x8a\\x98\\xac\\x38\\xa3\\xd3\\x94\\x24\\xcf\\x7d\\x7c\\x7e\\xea\\xae\\x51\\x73\\x94\\xb1\\xb4\\x77\\xa9\\x7a\\xe1\\xd1\\x9c\\x14\\xf7\\x5a\\x72\\xf5\\xd6\\x0e\\xc7\\x60\\x43\\x21\\xa1\\x26\\x69\\x18\\x74\\x74\\xae\\x54\\x27\\x13\\x27\\xd3\\xdb\\xa9\\xa5\\xd9\\x49\\x02\\x37\\x10\\x1c\\x10\\x97\\x55\\x9e\\xd6\\x31\\xdc\\x73\\xee\\x33\\x93\\x51\\xb5\\x27\\xf6\\xce\\x34\\x66\\x8c\\x77\\x3f\\xee\\xfe\\x7c\\xd3\\xf9\\x1d\\xf5\\x29\\x79\\x0d\\x26\\xf8\\x69\\x56\\x5b\\x91\\xb6\\xfd\\xc8\\xa3\\x6d\\x4c\\xae\\x7f\\x46\\x5c\\xe4\\x9b\\xc9\\x9c\\x48\\x41\\x4e\\x1a\\x61\\x15\\x00\\x32\\x2e\\x2b\\x16\\x0b\\x32\\x4c\\x54\\x7d\\x0e\\xc9\\x04\\x4e\\x36\\xca\\xf6\\xff\\x72\\x40\\x88\\x89\\x62\\xa6\\x65\\x66\\xd3\\x37\\x2d\\x13\\x33\\xa2\\x9d\\x92\\x22\\xbb\\x35\\xdd\\xa0\\x72\\xa6\\x3a\\xe3\\xe3\\xa2\\x22\\x28\\xd5\\x8e\\xbf\\x5c\\xda\\xf2\\x44\\x5d\\x13\\xfd\\x41\\xa6\\x74\\x31\\x17\\x91\\x93\\xa3\\xf7\\x4e\\x27\\xc5\\xc6\\x04\\x1b\\x76\\x3c\\xdc\\x7b\\xe7\\x5c\\x51\\xa2\\xbd\\xde\\x54\\x3a\\x53\\x9f\\x5e\\xb9\\xe3\\xa1\\xc1\\xac\\xa1\\x9e\\xe6\\x94\\x35\\x28\\x99\\xbf\\xbb\\xe3\\xf8\\xbd\\x60\\xac\\x9f\\x71\\x96\\xcd\\x36\\x66\\x28\\xab\\xbb\\x46\\xed\\x75\\xbb\\x29\\xaa\\x78\\x7b\\xcd\\x29\\xe1\\xad\\xdc\\xf1\\x13\\x1d\\xf6\\xc1\\xa6\\x92\\xe8\\x88\\x8a\\xe1\\x1d\\xb5\\xe3\\x97\\xe6\\xf2\\xc2\\x52\\xb2\\x55\\x22\\x2f\\xbc\\xd4\\x7a\\xe7\\x52\\x85\\x7b\\x19\\x9f\\x38\\x58\\x30\\xee\\x4a\\xb7\\x76\\x2c\\x96\\xac\\x7f\\x55\\x57\\x98\\x16\\x9d\\x41\\x60\\x73\\x35\\x84\\x9e\\x10\\x26\\x24\\xfd\\xb6\\x57\\x1c\\x21\\xf3\\x2b\\x1f\\x05\\xd0\\x7d\\x8e\\xbf\\x80\\x39\\x2f\\x89\\x1d\\x19\\x6f\\x80\\x4c\\x1a\\x1e\\x2a\\xad\\x8d\\x56\\xea\\x39\\x20\\xff\\x2a\\x1d\\xbc\\xff\\x1e\\x51\\xbf\\x43\\xd4\\xed\\x81\\x59\\x53\\x16\\xd9\\x45\\xfe\\x4c\\xac\\x82\\x4f\\xf0\\x29\\xeb\\x5f\\x3b\\x79\\x52\\xc2\\x61\\xed\\x21\\xeb\\xda\\x88\\x2c\\x01\\x65\\xa3\\x6a\\x64\\x73\\x66\\xfb\\x01\\xa0\\x0c\\x7f\\xcc\\x03\\xc5\\x64\\x00\\x07\\x3c\\x23\\x92\\x05\\x1e\\x01\\x05\\x0b\\x78\\x97\\xb7\\xf2\\xb2\\xdc\\x9c\\xd4\\x14\\xad\\x46\\x90\\x47\\x4b\\x3b\\x8a\\x1c\\x66\\x99\\x93\\x5f\\x09\\xad\\xf6\\x59\\x57\\x68\\x68\\x25\\x71\\x60\\x73\\x57\\xb0\\x81\\x7a\\x86\\x42\\xf1\\x73\\x4e\\x1d\\xa9\\x6e\\xbd\\xcf\\x95\\x58\\x78\\xb6\\x25\\xa3\\xa7\\xc6\\x04\\xa6\\xc6\\xa9\\xfc\\x89\\x87\\x57\\x4b\\x01\\x2a\\xf7\\xbd\\xb2\\xbc\\xfc\\xea\\xfe\\x2a\\x80\\x9c\\xe1\\x23\\x2d\\x38\\xb3\\xcd\\xa9\\x0b\\x07\\xeb\\xc8\\xf1\\xde\\xde\\xdb\\x86\\x2d\\x00\\x84\\xa2\\xb9\\xb1\\xe7\\xd4\\x44\\x2e\\x08\\xfe\\x95\\x93\\x15\\xa9\\x90\\x6e\\xe8\\x8e\\x4b\\xa7\\x5a\\x58\\x66\\x46\\x99\\x4d\\xaf\\x48\\x1c\\x3d\\xf6\\xe4\\x44\\xca\\x96\\x4f\\x9f\\x68\\x6d\\x3d\\xf1\\xe9\\x2d\\x29\\x5d\\x97\\xf6\\x74\\x85\\x06\\x12\\x18\\x46\\x9b\\x5b\\xd5\\x79\\x7e\\xb9\\xa2\\x62\\xeb\\x3d\\x9d\\x29\\x35\\x27\\xb7\\x36\\xf9\\xf3\\x65\\x2b\\xf7\\xb6\\xb3\\x7e\\x3d\\x4f\\xfa\\xa0\\x83\\x6f\\x40\\x4e\\x1a\\x7b\\x42\\x0d\\xfc\\x14\\x89\\x26\\x23\\x11\\x48\\xf2\\x05\\x2f\\x8b\\x2c\\x92\\xfb\\x91\\xbf\\x72\\xe4\\xcb\\xea\\x66\\x75\\x79\\x31\\xc5\\xd9\\x5c\\xbd\\x34\\xb9\\xb2\\x4c\\x34\\x0c\\x2c\\x2c\\x34\\xd0\\x1f\\x39\\xc1\\xc9\\x26\\x17\\xed\\x90\\x6b\\x00\\x77\\x37\\x09\\x26\\xb2\\x5a\\xa3\\xf0\\x4a\\xd9\\xbe\\xb1\\xa2\\xe2\\xf1\\xfd\\xe5\\xce\\x3d\\x63\\x4e\\xd8\\xce\\x77\\x1d\\x79\\xb4\\xbd\\xf7\\xc9\\xa3\\x6d\\xda\\xb2\\xde\\x1c\\x73\\x5b\\x91\\xba\\x7e\\xdf\\xc3\\xbd\\xed\\xf7\\xef\\x6b\\x16\\xb6\\xe3\\xa2\\xe1\\x6d\\xf9\\x65\\x3b\\x06\\x72\\x73\\xfb\\xd7\\x4a\\xff\\x0b\\xfe\\xae\\x30\\x35\\x3b\\xf3\\x5a\\xad\\x31\\x89\\x79\\x9d\\x79\\xdd\\xbb\\x9b\\xb5\\x9a\\x86\\xb5\\xf6\\x9c\\x8e\\x12\\x63\\x70\\x68\\x46\\x81\\xcb\\xd4\\xb6\\x52\\x9b\\xaa\\x6b\\x5c\\x69\\xcc\\x69\\xb2\\xc5\\x2a\\x2d\\x0d\\x39\\xb9\\xae\\x8c\\x88\\x31\\x9a\\x7f\\x49\\xdc\\xcd\\xb8\\x6c\\xcd\\x94\\xdd\\x1c\\x58\\xec\\x6c\\x8c\\x52\\xca\\x96\\x04\\x3d\\x98\\xea\\x4d\\x54\\x5b\\x22\\xa7\\xcd\\x59\\x26\\x8e\\x36\\x29\\x0a\\x42\\x38\\x1a\\x80\\xa8\\xf4\\x42\\x54\\x3d\\x50\\x29\\x3d\\x19\\x59\\xda\\x34\\x50\\x11\\x6f\\xbc\\x58\\x94\\x37\\x5a\\x97\\x0e\\xb6\\xd6\\x71\\xcb\\xfd\\xa6\\xee\\x2a\\x63\\xb2\\xa5\\x38\\xa5\\x22\\x3e\\x2b\\x35\\x22\\x91\\xb0\\x94\\x9c\\x68\\xb8\\x6d\\x73\\x31\\x18\\x5b\\x96\\xab\\x60\\xe7\\xfa\\x2f\\x84\\x67\\x1b\\x45\\xbf\\x82\\xad\\x3b\\x0f\\xbb\\x0a\\xdb\\x72\\x55\\x81\\x9a\\xc0\\x98\\x8c\\x8a\\x1c\\x43\\x4b\\x6d\\x51\\x64\\x5e\\x94\\xd9\\xea\\x48\\x8c\\xd7\\x25\\x44\\xc8\\x13\\xc3\\x2c\\xcd\\x5b\\x5b\\x2b\\x8e\\x9f\\x3a\\x5d\\x0d\\x8f\\x4c\\xd0\\x31\\x7b\\x8d\\xbc\\x0b\\x51\\x7c\\x23\\xf5\\x50\\xbf\\x1c\\x09\\x98\\xf3\\x71\\x9c\\x28\\xaf\\x30\\x95\\x58\\xa9\\x51\\x28\\x8d\\xbd\\x1b\\x3e\\x01\\x1b\\x2f\\x30\\xf9\\xc8\\x2e\\x42\\xd7\\x5f\\x12\\x7f\\xb3\\x12\\x6e\\x7a\\xb3\\x87\\xf3\\x84\\xee\\x25\\xa2\\xb4\\x84\\xf3\\x44\\x7e\\x15\\xe7\\xc9\\x46\\x77\\x55\\x9a\\xdc\\xfe\\xe2\\xc1\\xd7\\x3f\\x89\\xd7\\x52\\xab\\x66\\x6a\\x2b\\x66\\xda\\x0a\\xc2\\xd7\\xf8\\xfc\\xcf\\x6f\\x5a\\x85\\x1f\\x7c\\xfd\\xfd\\x57\\x09\\xd8\\x73\\xb5\\x2d\\x43\\x53\\xdc\\x65\\x75\\xf3\\x7c\\xbe\\xa4\\x63\\xbd\\x45\\xe3\\xf1\\x59\\xae\\xa7\\x54\\x94\\x85\\x5a\\x5c\\xcf\\x86\\x31\\xc8\\x1c\\x66\\x34\\x08\\x3e\\x46\\x6d\\xb3\\x0f\\x47\\x91\\x4d\\x77\\x4e\\xd7\\x9d\\xb7\\x6c\\x38\\x4f\\x21\\x16\\x94\\xb5\\x26\\x4d\\xc3\\x74\\x54\\xaf\\xc5\\xc7\\x07\\x26\\x13\\x54\\x1b\\x5c\\x0a\\x3e\\x90\\x0f\\x1f\\x9c\\x35\\x76\\xff\\xc2\\xc2\\x7d\\x13\\xd9\\xe6\\xf1\\xfb\\x16\\x16\\xee\\x9f\\xc8\\x72\\x9b\\x70\\x5f\\x52\\xd5\\x72\\x57\\xe7\\xd6\\xca\\x24\\xdc\\xe7\\x7e\\x38\\xb9\\x6a\\x6b\\x67\\xe7\\x32\\xf9\\xec\\x5c\\xfd\\xfe\\xc3\\x9b\\x36\\x3d\\xfc\\xfd\\x55\\xc8\\x5a\\xfd\\xc1\\xc3\\xa3\\xa3\\x0f\\xff\\x60\\x75\\x6c\\xad\\xf7\\x49\\xaa\\xa6\\x3c\\xd9\\xfb\\xce\\xb6\\x9e\\xa7\\x8e\\xb4\\xb6\\x1e\\x79\\xaa\\x47\\x92\\x6b\\x6f\\x93\\xf6\\xe9\\x29\\xdf\\x00\\xd5\\x1f\\x03\\x00\\xb8\\x40\\xc0\\xe0\\xb3\\x9f\\x49\\xd2\\xcd\\x23\\x7a\\x28\\xdd\\x18\\xd3\\xf8\\x22\\x54\\x11\\xb2\\xab\\xd7\\x2c\\x4e\\xf5\\x36\\x7c\\x09\\x40\\x5d\\xd8\\x92\\x99\\xde\\x98\\x1a\\x6b\\xdb\\x64\\xab\\xd9\\xda\\x6e\\x02\\x2c\\xbe\\x40\\x56\\x9d\\xf7\\x9c\\x2d\\x59\\xe1\\x11\\x81\\x5d\\x71\\x8a\\x94\\xda\\xb5\\x1e\\xfc\\x38\\x7b\\x6e\\x11\\xc9\\x1f\\xd1\\x4e\\xf6\\x6a\\x06\\xf8\\x98\\xe4\\xd5\\x0a\\xa5\\x86\\x3b\\x3d\\xc6\\x1c\\x79\\x7a\\x12\\xa0\\x6a\\x92\\xef\\xed\\xea\\x23\\x50\\xeb\\xf1\\xec\\x45\\x7b\\xab\\x64\\x96\\x0c\\x93\\x3c\\xd5\\x47\\x7d\\xde\\x3c\\xdf\\x59\\xcb\\xb5\\x67\\x43\\x6e\\x7a\\x6f\\xe8\\x4d\\xef\\x0d\\xbb\\xe9\\xbd\\xe1\\x37\\xbd\\x37\\xf2\\xa6\\xf7\\x46\\xdf\\xf4\\x5e\\xe5\\x4d\\xef\\x8d\\xbd\\xe9\\xbd\\xb4\\x57\\x23\\x7d\\x21\\xe0\\x1b\\xcf\\x39\\x63\\x7c\\x87\\xc9\\x01\\x7a\\x1f\\x93\\xab\\xd9\\x34\\x50\\xc0\\xf7\\xf3\\x8a\\x2e\\x56\\x17\\x1d\\x26\\xc8\\x63\\x8d\\x56\\x35\\xe8\\x7d\\xd6\\x48\\x26\\x38\\xe1\\x6a\\xc2\\x0b\\x4e\\xfe\\xd9\\x43\\xf0\\x70\\x51\\xb0\\x2a\\xa3\\x40\\x1f\\x9c\\x12\\x24\\x84\\x19\\x23\\x9d\\x83\\x65\\x99\\x61\\xb0\\x14\\x18\\xaf\\xcd\\x4a\\x0e\\x09\\x0f\\xe5\\x82\\x52\\x42\\x72\\x9a\\x8b\\xb2\\x22\\xfe\\x1d\\xca\\x27\\xdd\\xaf\\xae\\xc9\\xd7\\xf2\\x78\\x48\\xf0\\xb3\\x34\\x0e\\x18\\xd7\\xb5\\xc9\\x45\\xd9\\xc9\\x1c\\x37\\xce\\xcb\\x35\\xa5\\xdd\\x36\\x7c\\x7f\\x0e\\xa2\\xdc\\x23\\xe2\\x41\\x3e\\x86\\xe8\\x1c\\x35\\xd4\\xd3\\x50\\x03\\x88\\x2b\\x60\\xf3\\x52\\xa7\\xc5\\xb8\\x9a\\x2d\\x0b\\x78\\xc8\\xa7\\x96\\xa2\\xfa\\xaa\\x0a\\x95\\x21\\x95\\xa7\\xcb\\xaf\\x4e\\xb7\\x41\\xa2\\x7b\\x3f\\xde\\x48\\x60\\x5e\\xb5\\x16\\x44\\x2b\\x79\\xbe\\xe4\\x40\\x79\\xf3\\xf1\\xc9\\x82\\xd2\\xf9\\x73\\x6d\\xc7\\x8e\\x8d\\x3f\\x77\\xd0\\x55\\xb5\\x74\\xaa\\x6e\\x53\\x46\\x67\\x45\\x7a\\x8a\\xb9\\x30\\xb1\\x2c\\x26\\x43\\x45\\x24\\x68\\x41\\x52\\xf5\\xc4\\x27\\x6e\\x6b\\xb5\\x0f\\x1f\\x6c\\x2c\\x9c\\x72\\x19\\x9b\\x6f\\x7d\\x65\\xa2\\xf6\\x74\\x81\\x60\\x8f\\x8c\\x8a\\xcf\\xeb\\x2e\\xac\\xe8\\xcb\\x55\\x4e\\x1a\\x3a\\x8f\\x0e\\xb7\\x6d\\x6b\\xb3\\x85\\x29\\x03\\x63\\xd2\\xca\\x6c\\x3a\\x57\\x59\\x6e\\x64\\x7e\\x94\\x21\\xc3\\x92\\x1c\\xa7\\x89\\x55\\x10\\xd8\\x54\\xd9\\xd4\\xf9\\xf9\\xd6\\x83\\x63\\x55\\x91\\x0a\\x5b\\x4d\\x6f\\x6e\\xcf\\xbe\\x56\\x7d\\x4c\\x14\\x7b\\x27\\x06\\x2f\\xff\\x85\\x7f\\x94\\xbc\\x8b\\x4a\\x34\\xe3\\x7a\\x56\\x47\\x7d\\xdc\\x54\\x25\\xf0\\x67\\x0d\\x8f\\xf7\\x7e\\xe1\\x29\\xa7\\x8c\\x74\\x3a\\x46\\xe0\\x30\\x42\\x0c\\x14\\xe3\\x79\\x4f\\x79\\xa0\\x2f\\x2a\\xb5\\xd1\\x5f\\x75\\x8a\\xe7\\xd3\\x36\\xbc\\xc7\\x34\\x6c\\x9a\\x6c\\xde\\x22\\xb4\\xea\\x30\\xb9\\x3c\\x9e\\x06\\x24\\x10\\x1b\\xa0\\x77\\x34\\x75\\x7a\\x0f\\x1c\\x4a\\xc5\\xf7\\x3e\\x83\\xf3\\xaa\\xe3\\x2c\\x51\\xb1\\xda\\x2a\\xdd\\xda\\x66\\x10\\xcb\\xb6\\xdd\\xcf\\xad\\x73\\xdf\\x71\\xe7\\x77\\x0c\\x40\\xa0\\xac\\x37\\x22\\xf0\\xdc\\x6d\\xf8\\xb3\\xeb\\x99\\xdc\\x77\\x26\\x11\\x26\\xe3\\x35\\xcc\\x5b\\xd9\\x9a\\x90\\x41\\x47\\x4c\\xe3\\xc7\\x1c\\x66\\x5e\\xbd\\xc5\\xea\\xf3\\x83\\x65\\x7b\\x44\\xb6\\x21\\x4d\\x1f\\xa1\\xa1\\x93\\x6b\\x23\\xc6\\x8c\\x0c\\xcf\\xd5\\x18\\x33\\xea\\x2a\\x70\\x48\\x69\\xf1\\x2c\\x13\\x17\\x66\\x66\\x5f\\x2a\\x5e\\x03\\x80\\xb2\\xd5\\x07\\x47\\x97\\x1f\\x99\\xb1\\xae\\xa9\\x5c\\x3b\\x7a\\x3a\\x76\\x34\\x19\\x30\\x64\\x3e\\xb8\\xb5\\x7b\\x67\\xbd\\x1a\\x2e\\x4f\\x7f\\xe6\\x6c\\x57\\x4b\\xa3\\xfb\\x7b\\xdc\\x3f\\xfc\\xe7\\x5f\\x3e\\x50\\x3d\\x7c\\xe9\\xeb\\xf3\\x1d\\x8f\\x1d\\x6e\\xad\\x5e\\xbe\\xbd\\x56\\x7c\\xa3\\x7b\\x1a\\xea\\xb6\\x9f\\x6f\\xa1\\x7d\\x7d\\x48\\x5c\\x60\\xdc\\xa1\\x76\\xc6\\x5b\\x91\\x82\\xa1\\x1a\\x01\\x86\\x65\\x84\\xb1\\x04\\x8a\\xb2\\x52\\xb2\\x50\\x46\\x13\\x6a\\x07\\x3b\\xef\\x51\\x56\\x7d\\x59\\x62\\xe9\\x22\\x9c\\x44\\x21\\xfd\\x6c\\x46\\xe5\\xb0\\x48\\x65\\xaa\\x6e\\xe1\\x99\\xc1\\x4b\\x5b\\xcb\\xb9\\x65\\x6c\\x6a\\x5f\\xad\\x25\\xbc\\x0e\\x99\\x00\\x05\\xb3\\xf7\\x0c\\x38\\xe7\\x5b\\xb3\\x00\\xd4\\x79\\x35\\x9a\\xdc\\x98\\xec\\xb4\\x78\\x48\\xce\\x75\\x19\\x57\\x3f\\x75\\xb4\\x8e\\x3a\\xb6\\x5e\\xe4\\x1b\\xed\\x63\\xa7\\xfa\\x68\\x1a\\xce\\xba\\x9d\\x97\\xda\\xd2\\xbb\\x4e\\xcd\\xd6\\x86\\x93\\x24\\x08\\x0d\\xf9\\xa6\\xd6\\x72\\x7b\\x78\\x7d\\x90\\xda\\x94\\xa7\\x56\\x65\\x26\\x2a\\xe4\\x51\\x5d\\x87\\x9e\\x9b\\x4f\\x9f\\x79\\xeb\\x8e\\x6e\\x84\\xd1\\x32\\x91\\xdb\\x04\\x37\\x86\\xa2\\x51\\x06\\x63\\xb4\\xf6\\x92\\x9c\\x1a\\x7d\\xce\\x18\\xb2\\xe5\\x48\\xd3\\xa6\\x19\\xd8\\x1b\\x0c\\xaa\\x0d\\x4e\\x37\\xea\\x3c\\x55\\x79\\xf3\\x0d\\xfa\\xe2\\xae\\xf8\\x03\\xe2\\x17\\x16\\x56\\x30\\x38\\xb7\\x3f\\xb7\\xb4\\xf4\\xdc\\x4e\\x27\\xa9\\xdb\\xce\\x67\\xe7\\xb1\\x75\\x7d\\x1a\\x4c\\xbd\\x87\\x7b\\x48\\x08\\xb3\\xc9\\xdc\\x77\\xb8\\xab\\xf3\\x70\\x6f\\x16\\x70\\xdf\\xa9\\xfa\\xc5\\x09\\xd5\\xf8\\xa7\\xce\\x76\\x53\\x37\\x9b\\x6a\\xe6\\x53\\xa7\\xdb\\xdd\\xdf\\xf6\\x79\\xdb\\xda\\xee\\x5e\\xa9\\xaa\\x5a\\xb9\\xbb\\x0d\\x31\\x5d\\x81\\xec\\xcb\\x0c\\xa4\\x9e\\x11\\xd4\\x16\\x78\\x65\\x3a\\xd3\\x2e\\x66\\x26\\x8a\\xab\\x16\\x18\\x3a\\x27\\x3d\\xf5\\x25\\x90\\x7b\\xaf\\x84\\xd1\\xd1\\x39\\x49\\x41\\x79\\xe2\\x0e\\x80\\x91\\x1e\\x6d\\x45\\x62\\xac\\xa9\\xdb\\x74\\xfa\\x38\\x16\\x6f\\xe7\\xb6\\x70\\xdf\\x72\\xf7\\xaf\\x8c\\x87\\x05\\xf4\\xc4\\x86\\xe1\\x0b\\x8f\\xe1\\xfb\\xa7\\x3d\\xbc\\x45\\xa9\\xe4\\x99\\xc9\\x3e\\xae\\x6f\\xf2\\x14\\x84\\xbc\\x4f\\x91\\xbc\\x53\\x69\\x4a\\xad\\x40\\x05\\x86\\xc2\\xbb\\xc2\\xea\\xb0\\xde\\xba\\x71\\x23\\x02\\x76\\x6d\\xcd\\xe6\\xca\\x9e\\x83\\x1d\\x69\\x50\\xe6\\x38\\x44\\xec\\xec\\x61\\xf6\\xc5\\xa7\\xd7\\xc6\\xef\\x9e\\xb4\\x01\\x81\\x5d\\xcd\\x35\\xef\\xed\\xce\\x6a\\x3e\\xf0\\x50\\xc7\\x71\\x08\\x3b\\x50\\xb0\\xe7\\xc8\\xa9\\xc6\\xb9\\xaf\\x5e\\x18\\x2c\\x5a\\x7a\\x78\\x1a\\xdf\\x4e\\x75\\xfb\\x73\\x62\\x2a\\xdf\\xcb\\x17\\x10\\x71\\x5b\\x40\\x79\\x13\\x03\\x01\\xa3\\x74\\x7d\\x14\\xe2\\x81\\x41\\x13\\x50\\xcd\\x95\\xd9\\x46\\x57\\x59\\x5c\\xef\\xb0\\xa7\\x19\\x12\\xe2\\xa8\\x96\\x27\\x78\\x64\\x13\\x25\\x45\\xa1\\xb2\\x4b\\x02\\x58\\x30\\x74\\x39\\xd5\\x61\\x22\\xc8\\x84\\x33\\x09\\x8c\\xc5\\x0d\\xdb\\x16\\x2f\\x8d\\x65\\xc6\\xe5\\xf5\\x94\\x94\\x58\\xca\\xd3\\x23\\x20\\xb9\\x7a\\xb1\\x35\\x26\\xbb\\xce\\x9a\\x3f\\xd2\\x58\\xa8\\x8f\\xb4\\x4c\\x3f\\x48\\x00\\x8c\\x64\\x1b\\xa3\\x81\\x40\\xa5\\xd6\\x5a\\x6e\\x8c\\x4a\\x8c\\xf0\\x87\\xf0\\xa0\\x89\\xf3\\x9f\\x9d\\xac\\xbf\\xf7\\xc4\\x76\\x63\\x57\\x1a\\x49\\xbe\\x92\\xdf\\x78\\x7e\\x4f\\x77\\x30\\x17\\x64\\x68\\x28\\xd2\\x01\\x64\\x36\\x4e\\xaf\\xed\\x2b\\x1e\\xfb\\xec\\xbd\\x53\\x81\\xa2\\x0d\\x5b\\x82\\xfa\\xf6\\x9d\\x77\\x19\\x37\\x6d\\xea\\xad\\xd0\\x43\\x64\\x32\\xa9\\x3e\\xa0\\x23\\x62\\x25\\x3f\\x4a\\xfa\\x56\\x8d\\x4a\\x09\\x20\\x30\\x2a\\x1c\\x78\\x40\\x54\\xfd\\xd3\\x10\\x79\\x14\\x42\\x91\\xe4\\xa4\\x35\\x3e\\x9d\\x2d\\x84\\xd9\\x93\\x3d\\x47\\xa9\\xe2\\x13\\x84\\x10\\xb9\\x53\\xad\\x8c\\x8d\\x95\\xfa\\x9e\\xb4\\x85\\x8c\\xae\\x55\\x0a\\xf4\\x93\\xcc\\x19\\x76\\xaf\\x39\\x03\\x3f\\xd0\\xbf\\xa7\\x51\\x05\\xf9\\xd9\\xfb\\xb3\\x6c\\x59\\x33\\x4f\\xee\\x5a\\x9d\\xbd\\x6f\\xca\\xba\\x0a\\xda\\xba\\xa5\\x46\\xa2\\x54\\xc4\\x05\\x0d\\xde\\xfa\\x48\\xfb\\x41\\xf7\\xda\\xf4\\xfa\\x99\\xb9\\x6f\\x3c\\x34\\x13\\x20\\x76\\xc2\\x93\\x81\\x63\\xf7\\x7f\\x6f\\x37\\xfc\\xaf\\x18\\x35\\xfe\\xcc\\xe1\\x8e\\x20\\xee\\x17\\x08\\x18\\x1e\\xfb\\x20\\xa9\\xaf\\x93\\xee\\xb0\\xb2\\x99\\x8e\\x4d\\x6d\\xab\\x1c\\xa0\\x05\\xb9\\x0c\\x73\\x9c\\x91\\x99\\xb3\\x18\\x26\\x84\\xae\\x7f\\x08\\x91\\x2b\\x9d\\x86\\xb4\\x58\\xa2\\x9f\\xf9\\x51\\xf5\\x4c\\x86\\xe5\\x9e\\xc4\\x37\\xd4\\xe6\\x22\\xcd\\x15\\x9e\\xcd\\x95\\xe8\\x70\\x9a\\x4c\\x6d\\x43\\x2e\\x27\\xbb\\x2d\\xdc\\x41\\xaa\\x5b\\x00\\xb2\\x90\\x58\\x7d\\x8e\\xd6\\x51\\x65\\x08\\x85\\x6d\\x10\\x6a\\xa8\\x74\\x68\\x1d\\xfa\\xd8\\x10\\x19\\x14\\x9a\\xf7\\x58\\xad\\x01\\x71\\xe9\\xa5\\xdd\\xf9\\x96\\xa6\\x42\\x63\\x48\\x48\\x7a\\x61\\x93\\x25\\xbf\\xbb\\x94\\x64\\xe2\\xb2\\x5a\\xf9\\xfc\\x23\\xe2\\x6f\\x4f\\x99\\x26\\x46\\xfb\\x2a\\xd3\\xaa\\x97\\x4e\\x56\\x81\\x46\\xfc\\x71\\xd5\\xc9\\xa5\\xea\\xb4\\xca\\xbe\\xd1\\x09\\xd3\\x29\\x88\\x3c\\xb2\\x2c\\xfe\\xf2\\x7c\\xc1\\xde\\x9d\\x5b\\xda\\xb2\\xd5\\x45\\x84\\x54\\xaa\\xa3\\x48\\x9d\\xdd\\xb6\\x65\\xe7\\xde\\x82\\xf3\\x10\\xc7\\x12\\x5f\\xa3\\x87\\x49\\x5b\\xef\\x10\\xbe\\x89\\xb2\\x90\\x13\\x4e\\x4b\\xeb\\x7f\\x60\\x16\\x60\\x99\\x3d\\x01\\x23\\x4c\\x97\\x90\\x10\\xf6\\x0d\\x04\\x9c\\x00\\x88\\xa5\\xe2\\x62\\x1a\\x53\\x92\\x00\\x98\\xb9\\x30\\x7c\\x1b\\x2c\\xf3\\x46\\x21\\x42\\xb5\\x9f\\x1b\\x5e\\x65\\xb9\\xe6\\xaa\\xf0\\x8f\\x54\\x56\\xf4\\x47\\x2a\\x4b\\xf9\\x91\\xca\\x8a\\xff\\x48\\x65\\x25\\x7e\\xa4\\xb2\\x32\\x3e\\x42\\x59\\x4e\\x2d\\xc2\\x32\\x9a\\x6e\\x9c\\x06\\x85\\x23\\x4e\\xb8\\xf1\\x75\\x3e\\x25\\xca\\x19\\x90\\x11\\x95\\x45\\x54\\xfd\\x70\\xba\\xcc\\x52\\x27\\xb8\\x57\\x02\\x2b\\x1c\\x54\\xea\\xf8\\x36\\xe5\\x76\\x2f\\xd0\\x2e\\xc7\\x01\\x6c\\xea\\x7b\\xf5\\x7f\\xfe\\x0e\\x7d\\xbb\\x11\\x1c\\x9b\\xef\\x95\\xd2\\x6e\\xac\\x91\\x7c\\x85\\x2e\\xd7\\x42\\xad\\x16\\x66\\x5f\\x3d\\x5a\\x0f\\x90\\xde\\x30\\x5f\\xd9\\xb6\\xa3\\x49\\xdf\\xd4\\xe0\\x9e\\x23\\x38\\x97\\xf6\\xa8\\xac\\xc6\\xfc\\x8c\\xf2\\xcc\\x18\\xfc\\x60\\x48\\x04\\xfe\\xee\\xe4\\x23\\x2b\\xc5\\xe5\\xdb\\x1e\\xda\\x04\\xb5\\x58\\x7c\\xa9\\x7e\\x6f\\x9f\\xc5\\xd4\\xb3\\xaf\\xe5\\xfb\\x01\\x0d\\x7b\\x3e\\x3e\\x13\\x51\\xb5\\xbd\\xd7\\xe6\\x9c\\x3b\\xdd\\x2c\\x3e\\xc2\\xc7\\xc2\\x54\\xdb\\x91\\x4d\\x45\\x01\\xd0\\x95\\x3f\\xd3\\x9c\\xa5\\x2e\\x6a\\xcb\\x66\\x72\\x5b\\x8b\\x10\\xff\\x1c\\xc1\\xe8\\xa6\\xa3\\x7d\\xce\\xd0\\x64\\x3f\\x0c\\x28\\x2d\\x29\\x2a\\xdc\\x5f\\xc0\\x80\\x37\\x12\\x92\\x49\\x3a\\xa5\\xd7\\xa8\\x4a\\x55\\xf0\\xab\\xcf\\x98\\xaf\\x9c\\x09\\xf9\\x80\\x7b\\x6e\\x74\\x39\\x53\\x3f\\x89\\x4b\\x4c\\xd2\\x10\\x8a\\x39\\xa5\\x94\\xab\\x59\\x0a\\xa2\\xa1\\xfb\\x38\\xb2\\x1f\\x96\\xd4\\x51\\x22\\x19\\xb1\\x92\\xf0\\x7e\\x71\\xae\\x68\\x6b\\x91\\xcb\\x14\\x6f\\x8d\\x8d\\x0e\\x4e\\x0e\\x4f\\xca\\xd6\\x27\\x05\\x89\\xbf\\xd9\\x26\\xbe\\x17\\x94\\xa4\\x37\\x27\\x45\\x24\\x05\\x2b\\xe3\\x2c\\x09\\x26\\x57\\x91\\x35\\xfa\\x35\\xad\\x8e\\xff\\xbe\\x8d\\xa2\\x83\\x20\\x30\\x64\\x50\\xee\\x07\\x31\\x69\\xb6\\x78\\xf7\\x1d\\xee\\xc7\\x70\\x2f\\x9e\\x8e\\xb3\\xa5\\xc5\\x82\\x9f\\x7c\\x30\\x24\\x10\\x20\\xa5\\xb0\\xc3\\x26\\x76\\x2e\\x2f\\x4b\\xb6\\x9a\\x54\\xf2\\x6e\\x3d\\x44\\xe4\\x48\\x2a\\xaa\\xa2\\x19\\x37\\xc2\\x80\\xf2\\x3d\\x20\\x39\\x92\\x21\\xb9\\x6c\\x41\\xe0\\xb0\\x6f\\x39\\xa3\\x29\\xf7\\x7d\\x36\\x3f\\xad\\x32\\x2d\\x52\\x11\\x6b\\x48\\x0b\\xf3\\xa7\\x36\\x66\\xf5\\x0d\\x45\\x06\\x51\\xb5\\x38\\x22\\x4f\\x54\\x3e\\x49\\xc3\\x6f\\x90\\x34\\xfc\\x43\\xc7\\x74\\x69\\x01\\xb1\\x69\\x25\\x9d\\xb9\\x56\\xaf\\xc8\\xb0\\xe6\\x76\\x16\\xa7\\xc7\\x04\\xa6\\xe9\\xb6\\xf3\\x07\\x9e\\x03\\x73\\x9a\\xfb\\x70\\x9a\\x19\\x84\\xe0\\x18\\xad\\x4d\\xa3\\x75\\xa4\\xc5\\x85\\xca\\x61\\x95\\x48\\x9d\\xaa\\x5c\\xb5\\x4d\\x1b\\x13\\x2c\\x70\\xdf\\x59\\x14\\xdf\\xbf\\xc5\\xb6\\x30\\xbb\\xa9\\x2e\\xc3\\x2b\\x37\\x32\\xea\\x36\\xcd\\x2e\\xd8\\x6e\\x01\\x61\\x71\\xd2\\x7d\\xf7\\x01\\xc0\\xbb\\x77\\x8b\\xe2\\x01\\x5d\\x67\\x67\\x63\\x91\\x46\\x95\\xd7\\xd0\\x3d\\x94\\x05\\xc1\\xe2\\x5f\\xa8\\xf0\\xd1\\x14\\x36\\x75\\x74\\xb1\\xf9\\x60\\x26\\xfb\\x35\\xe2\\x98\\x41\\x6a\\xf4\\x13\\x67\\x00\\x06\\x1e\\x12\\xe1\\x0a\\x13\\x74\\xb2\\x37\\x64\\x8a\\xc2\\x1d\\xe4\\x3d\\x48\\x2e\\x8f\\x96\\x70\\x40\\x02\\x60\\xac\\xf4\\xcd\\x8b\\x9b\\x5e\\x96\\x24\\x4d\\x92\\x8f\\x56\\x5a\\xc6\\x47\\x29\\xcd\\xa9\\xbe\\xd1\\x15\\x82\\xa0\\x94\\x2e\\x43\\xec\\x2a\\xf6\\x9e\\x06\\x12\\x6d\\xd8\\xa0\\x88\\x51\\x87\\xf9\\xc9\\x28\\xde\\xcc\\x13\\xea\\xb0\\x71\\xc7\\x40\\x37\\x3f\\x0a\\x0f\\x83\\x84\\x18\\x6e\\x9e\\xc8\\x99\\xbe\\x30\\x69\\xb3\\x8e\\x9c\\xec\\x83\\xf2\\xd1\\xd2\\xe4\\xd4\\x9a\\x85\\xc6\\xbc\\x11\\xcb\\x8a\\xf8\\x00\\xf7\\x59\\xa1\\xce\\xfd\\xdb\\xc8\\x58\\x8a\\xbb\\xe8\\xbb\\x7b\\x4b\\x09\\x8c\\x80\\xb5\\x6b\\xb9\\xac\\x6e\\xff\\x70\\x6e\\x62\\xb8\\x3b\\x47\\xa8\\x9b\\xa0\\xbe\\x72\\x32\\x97\\x06\\xc9\\xde\\x26\\x8b\\xac\\xa1\\xc5\\x08\\x53\\xe8\\x0e\\xe5\\x76\\x22\\xd8\\x4c\\x81\\x4c\\x26\\x4a\\xf7\\x2d\\xe7\\xaf\\x64\\xeb\\x4a\\xf4\\x71\\x5d\\x27\\x31\\x73\\x50\\x16\\xca\\x22\\xe0\\x38\\x4a\\xb1\\xe2\\x2f\\x8b\\xf7\\xba\\xcf\\xed\\x8a\\xeb\\x88\\xeb\\x55\\x51\\x57\\xb0\\x8b\\xfc\\xa0\\x7f\\xf5\\x8e\\x27\\xe7\\x76\\xbc\\xb2\\xa3\\xb8\\x98\\xfc\\x33\\xf7\\xe4\\xf6\\x1a\\xff\\x6d\\x41\\xb6\\xae\\xbd\\x1d\\x23\\xb7\\xf5\\x66\\xe0\\x22\\xf7\\x9b\\x19\\xbd\\xb7\\x8d\\x74\\xee\\xed\\xb2\\x91\\x6c\\x6d\\xe3\\x8f\\xef\\xac\\x9c\\x7c\\xf2\\x9d\\x35\\xf0\\x5b\\x7b\\xe7\\xc9\\xc9\\xb2\\x1d\\x4f\\x4d\\xb7\\x1e\\x19\\xb6\\xf5\\xdc\\xfe\\xea\\x50\\xdd\\x44\\xef\\xf0\\xab\\xb7\\xf7\\x5a\\x06\\x8f\\xb4\\xd1\\x77\\x22\\x05\\x21\\xfe\\x5e\\xe1\\x59\\x66\\x19\\xc9\\x77\\x3a\\x10\\xf2\\x07\\x39\\x4f\\x93\\x2b\\x63\\x2c\\xf4\\xf8\\x81\\x20\\x44\\xb3\\x5c\\xf6\\xd0\\x47\\x5f\\x70\\x25\\xd4\\xab\\xd5\\x08\\xa9\\xb3\\xd4\\x24\\x77\\x1e\\xb9\\x25\\x55\\xa5\\x27\\x11\\x80\\x01\\x32\\x1a\\x88\\x6e\\xf5\\x6c\\xcf\\x68\\x4a\\x0d\\xe2\\xaf\\x53\\xdb\\x99\\x6b\\x2e\\x82\\x9c\\xf0\\xec\\xd7\\xf0\\x7f\\x9d\\x6e\\x5d\\x71\\xa9\\xd5\\xae\\x95\\x56\\xd1\\x2d\\xae\\x07\\x80\\x7f\\xb4\\xbe\\xb8\\xab\\x30\\x31\\x46\\x63\\xd7\\x28\\x83\\x05\\x08\\x85\\xf7\\x4e\\x3b\\xea\\x8c\\xe1\\x04\\x31\\xe9\\x20\\xf9\\xbe\\x2e\\x41\\xed\\xea\\xdd\\x4d\\x4d\\x77\\xaf\\xd6\\x02\\x19\\x8e\\xef\\xb4\\xbf\\xfc\\xdc\\xfd\\xdb\\x6b\\xc7\\xcb\\xe7\\x4e\\x9d\\xbf\\xb7\\x02\\x9f\\x75\\xe7\\xb9\\x77\\x41\\xe1\\xe0\\x72\\x4e\\xce\\xc2\\x40\\x21\\x90\\x76\\xdc\\x42\\xda\\x71\\x4c\\xca\\x03\\x48\\x11\\xe4\\x08\\xfb\\x83\\x1f\\x8f\\xfd\\xe8\\xe6\\x98\\x97\\x53\\x4a\\x76\\x00\\x88\\xa6\\x10\\x59\\xae\\x8f\\x7a\\x64\\x95\\x1c\\x71\\xc5\\xd0\\xec\\x7f\\xa9\\x0a\\x05\\x69\\x82\\x22\\x2c\\x40\\x96\\x40\\xe3\\x3a\\xac\\xbe\\x76\\x78\\x72\\x91\\x5d\\xa9\\xff\\x3a\\x6c\\x5e\\x1e\\x18\\x3e\\xd0\\x98\\x9a\\xda\\x78\\x60\\xf8\\x9b\\xe2\\x9d\\xcb\\xcb\\xf0\\xdf\\x03\\xd5\\x9d\\x59\\x61\\x0a\\x73\\x67\\x25\\xa7\\xc0\\xf7\\xb9\\x8f\\x41\\xf5\\xd6\\x33\\xf5\\xf5\\xe7\\x56\\x6a\\x80\\x46\\x9b\\x90\\x46\\xa4\\xba\\xef\\x86\\x82\\xde\\x39\\xab\\x75\\xa6\\x27\\x1f\\xd8\\x3b\\x58\\x4e\\xea\\x33\\x49\\xea\\xc9\\xf8\\xe1\\x31\\x70\\x10\\x45\\x8d\\x6f\\x75\\x5e\\x86\\x1e\\x01\\x3c\\x3b\\xbe\\x68\\x17\\x2f\\xbd\\x29\\x74\\x93\\x17\\x45\\x76\\x79\\xb2\\x78\\x69\\x56\\x2b\\xaf\\xf0\\x22\\xab\\x75\\xbe\\x09\\xfd\\xae\\x68\\xb6\\x4c\\x58\\xc7\\xce\\x8e\\x98\\x61\\x05\\x92\\x4a\\xa7\\xea\\x72\\x46\\xc9\\x54\\x7e\\x88\\xfb\\x18\\xe9\\xbb\\x1f\\x07\\x47\\x42\\xe1\\x96\\x8b\\x9b\\xc4\\x51\\xb8\\x58\\xbb\\xad\\xc3\\x04\\xe1\\x21\\xee\\x12\\xa1\\xce\\xe3\\x1f\\x14\\xef\\xe3\\x93\\xbc\\xf9\\xd4\\x10\\xcf\\xf1\\xcb\\x54\\x97\\x8a\\x76\\x31\\x57\\xa1\\xa7\\xa7\\x3c\\x5e\\x47\\x19\\x09\\xb0\\x62\\xe1\\x35\\x92\\xaf\\xf0\\xe9\\x55\\x7c\\x68\\x55\\x3c\\xba\\x2a\\xee\\xa5\\x7e\\x5e\\xc1\\xf5\\xef\\x66\\xf1\\x3e\\x18\\xf1\\xe6\\xfe\\x4b\\x90\\xe2\\x58\\xa9\\xd7\\x10\\x01\\xcd\\x5d\\x08\\xc2\\x28\\xf2\\x64\\xfd\\x89\\xf6\\x45\\x6f\\xb1\\xf6\\xd1\\x70\\xd2\\x54\\x32\\x08\\xa4\\x8d\\x74\\xd7\\xe0\\xcd\\xb7\\xa4\\x26\\x9f\\xae\\xe4\\x5f\\xe4\\xe3\\xdd\\x21\\x60\\x9c\\x7c\\x6c\\xad\\xb4\\x74\\xed\\xb1\\x49\\x71\\x80\\xdb\\x4c\\xbf\\x37\\xee\\xea\\xca\\xca\\xea\\xda\\xdd\\x40\\x5f\\x58\\xc8\\x9d\\xbe\\x6b\\x98\\x84\\x93\\xe6\\x93\\x7e\\x4f\\x71\\xdf\\x01\\x99\\x6d\\xcb\\x55\\x95\\x0b\\x4d\\x19\\xc0\\x64\\xff\\x08\\x69\\x67\\x17\\xab\\x53\\x2c\\xdd\\xc5\\x30\\xb4\\x48\\x0b\\x25\\x60\\xeb\\x41\\x6c\\x8e\\xf3\\xd8\\xe3\\x27\\xa7\\x55\\x8a\\x8e\\x66\\x2d\\xa6\\x92\\x44\\x6b\\xe5\\xd8\\x4c\\xe0\\xac\\xc5\\x38\\xdc\\x11\\xa1\\x82\\x10\\x8e\\x4d\\xf1\\xdf\\xcc\\xfa\\xcf\\xae\\xff\\x75\\x2a\\xb8\\x38\\xb7\\x3e\\x3b\\x4e\\x88\\xc5\\x43\\x22\\xe2\\x23\\xf4\\xc5\\x66\\x9c\\x23\\x1e\\x1d\\x17\\xf3\\x81\\x3c\\x0f\\xbe\\xa0\\xbd\\xf0\\x23\\x08\\xbe\\x13\\x07\\xb9\\xff\\x3a\\xf1\\xbf\\x3f\\xff\\x72\\x25\\xff\\x0b\\xc9\\x5e\\x97\\x41\\xfa\\xe7\\x12\\xa9\\x4b\\x14\\x9d\\x03\\x11\\x7e\\x18\\x09\\x50\\x27\\x07\\x01\\x03\\x4b\\x4e\\xe8\\x27\\xc3\\x3c\\x1f\\xed\\xf2\\xe7\\x30\\x7b\\xe1\\xa2\\x22\\x69\\x5d\\x58\\xde\\xef\\x00\\x19\\x5d\\x80\\xe8\\xce\\x9e\\x11\\x57\\x82\\x95\\x4e\\x57\\x16\\x56\\x82\\x7f\\xeb\\xda\\xda\\x24\\xbe\\x73\\x1a\\xaa\\xc4\\xff\\x77\\x0c\\xa0\\x67\\x6b\\x07\\xa0\\x5b\\x48\\xba\\x80\\xaa\\xd3\\xf8\\x69\\x77\\x2b\\xfb\\xfd\\x21\\xfe\\x2f\\xf7\\x18\\xbe\\xc0\\x7e\\xd3\\xdd\\x3a\\x29\\xd7\\xfa\\x6f\\x88\\x6f\\xf7\\x2d\\x8f\\xdd\\xfe\\x86\\xfc\\x1f\\x7e\\x70\\x4d\\xb2\\xf5\\x44\\x5f\\xb2\\xf5\\x24\\xfe\\xc6\\x76\\x7b\\x19\\xdd\\x67\\x5f\\x4f\\x06\\xe2\\x71\\x12\\xdd\\x90\\x0d\\x84\\xfa\\x84\\x9a\\x6e\\x99\\x28\\x28\\x98\\x38\\xde\\x52\\x7d\\x70\\xbc\\x08\\xaf\\xe1\\xd6\\xc3\\x4f\\x0f\\x4d\\xbe\\x7a\\xac\\x29\\xad\\x66\\x53\\xbe\\x73\\xb6\\xc1\\xd8\\x75\\xfa\\x53\\x53\\x24\\x23\\x55\\x17\\x39\\x55\\x3c\\x7d\\x5b\\x63\\xeb\\xd9\\xf9\\x52\\xe7\\xdc\\xed\\xad\\xaf\\x72\\x71\\xaa\\x8a\\x19\\x57\\xed\\xbc\\x4b\\x97\\xd6\\x30\\x5f\\x35\\x78\\xc7\\xa4\\xc3\\x3c\\x76\\xf7\\x64\\xd1\\x64\\x6b\\x71\\x64\\x78\\x41\\xe7\\x72\\xcd\\xd4\\x85\\x29\\x9b\\x7d\\xf3\\x7d\\x33\\x75\\x6b\\xed\\x26\\x7d\\xe3\\xd6\\xc6\\x8e\\xa5\\xaa\\xe4\\x49\\x04\\xe8\\x49\\x84\\x78\\x95\\x37\\x07\\x9d\\x3f\\x8f\\xbd\\x54\\xa1\\xd1\\x8c\\x2a\\x54\\xe9\\x21\\xd0\\x94\\x79\\x78\\x0c\\x29\\xb7\\x24\\xc7\\x3d\\xb9\\xba\\x0a\\xee\\x15\\xf2\\x0f\\x75\\xdf\\xf3\\x9f\\x7f\\xbf\\x80\\x04\\x46\\x15\\x22\\x40\\xd9\\xa4\\x2c\\x1d\\xcb\\x1f\\xa8\\x67\\x99\\x0d\\xf8\\x1e\\xba\\x13\\x61\\x2b\\x99\\xc4\\xf5\\xa5\\xf4\\xd2\\x53\\x10\\x79\\xa9\\x90\\xd1\\x42\\x15\\xea\\xab\\xc5\\x24\\xaf\\x5b\\x15\\xfd\\xc2\\x70\\x70\\x52\\x76\\xdd\\x58\\xb9\\x41\\x63\\x2c\\x33\\xab\\x22\\xfd\\x21\\x92\\x3e\\x88\\xcc\\xed\\x47\\x5a\\x9e\\x7e\\xf4\\xce\\xc5\\xf2\\xf1\\xe2\\xf1\\xc3\\xa7\\xcf\\x94\\xe2\\xcf\\x20\\x40\\xf1\\x64\\xec\\xde\\x20\\xcf\\xbc\\x21\\x17\\x69\\xb4\\x0f\\x31\\x99\\xe4\\xe1\\x22\\xa5\\xcf\\xbc\\x31\\x17\\xe9\\xb0\\x06\\x9e\\x3a\\xe1\\xfe\\x42\\x5c\\x49\\xc7\\xa2\\x2b\\xd3\\x15\\x13\\xa9\\x74\\x26\\x5a\\x1b\\x8b\\x4d\\xe1\\x39\\xee\\xef\\xdd\\x8a\\x3b\\x7a\\xb8\\x17\\xdf\\xaf\\xb1\\x8f\\xb8\\x32\\x42\\xfd\\x86\\x84\\xa0\\x54\\x47\\x95\\x66\\x86\\xb7\\xd0\\xb9\\xf3\\x39\\xf1\\x63\\xfc\\xb3\\x2c\\x4e\\x89\\xc9\\x0d\\xc1\\x2b\\x37\\x38\\x00\\x60\\xef\\x94\\x52\\xa0\\xaf\\x76\\xc4\\x15\\xb9\\xc1\\x82\\xf3\\xd8\\xdb\\xf4\\xb9\\x55\\xbc\\x0f\\x56\\xf7\\xfb\\xcf\\xad\\x1f\\xa3\\xa2\\x03\\x0b\\xb5\\xff\\x7e\\x45\\xcc\\x87\\x21\\x86\\x89\\xf5\\xe4\\x77\\x8c\\xa0\\x92\\x23\\x1c\\x38\\xcc\\x01\\x50\\xf9\\xc8\\x51\\x09\\x09\\xa3\\x0c\\xc1\\x4b\\x9a\\xe7\\xed\\xd3\\x08\\x44\\x52\\x66\\xa8\\x7d\\x7d\\xca\\xac\\x5f\\x14\\xb1\\x4b\\x1a\\x48\\x43\\x18\\xf8\\xa0\\xd5\\xba\\x3b\\xfa\\xbf\\xf2\\x65\\x4c\\x1d\\xea\\xc7\\xee\\xe8\\xb8\\xa7\\x9e\\xf6\\x28\\xbe\\x33\\x26\\xe5\\x7f\\x7e\\x0c\\x67\\xc5\\xb9\\xa7\\x3e\\x0e\\xaa\\x18\\xfc\\x22\\x02\\x74\\x94\\x3c\\xb7\\x8a\\xca\\x41\\xea\\xc7\\x91\\x09\\x1c\\x47\\x97\\x0b\\xec\\xb5\\x70\\x28\\xe9\\xae\\x92\\x9c\\x0b\\x64\\xa2\\x90\\xca\\xa9\\x08\\x2a\\x08\\x3d\\xbf\\xeb\\x90\\xbd\\x95\\xfc\\xbf\\x5e\\xea\\x11\\x84\\x4c\\x18\\x7a\\xf2\\x72\\xdd\\x42\\xfa\\x89\\xae\\xaf\\x0a\\x96\\x79\\x41\\x40\\x42\\x8b\\x9f\\x5c\\x2a\\x9c\\xc7\\x5e\\xeb\\x9e\\x52\\xe6\\x81\\x48\\xd2\\x9f\\x6c\\x85\\x82\\xea\\x04\\xac\\xfc\\x8d\\x9d\\xa6\\x10\\xe9\\x53\\xa2\\x12\\xb6\\xb6\\xf9\\x6f\\x5e\\x1f\\xf1\\x3e\\x09\\x28\\x52\\x43\\x2c\\x00\\x0a\\x3b\\x60\\x72\\xce\\x44\\x6a\\xbc\\xf7\\x46\\xb2\\xd7\\xe3\\x0c\\xb8\\x99\\xec\\xa5\\xeb\\xdf\\x06\\xd9\\xeb\\x5b\\xf9\\x4c\\xf0\\xee\\xb7\\x46\\xef\\x99\\x76\\x90\\xf4\\x12\\xa3\\xe2\\x6b\\xe2\\xed\\xe4\\x6b\\xdd\\x96\\x5a\\xb5\\xa6\\x76\\x4b\\x2d\\x91\\xb5\\x47\\xa0\\x68\\xf6\\xce\\x9e\\x9e\\xbb\\xb6\\x94\\x90\\x99\\x7a\\x84\\x08\\x5e\\x4b\\xc7\\x92\\xb3\\x64\\xbe\\xd5\\x0c\\xd4\\xf7\\xf2\\x18\\xa9\\x8f\\xdd\\x93\\xdf\\x30\\x99\\xd5\\x08\\xc9\\x81\\xe7\\x10\\x55\\xe8\\xd8\\x48\\x52\\x0d\\x49\\x90\\x5e\\xb9\\xd0\\xd0\\xe4\\xa4\\xc4\\x84\\xd0\\xf8\\xd0\\x38\\x52\\xa5\\x14\\x3f\\x3a\\xa6\\x57\\xb4\\x0a\\xab\\xc2\\x57\\x1f\\xfa\\x36\\x42\\xe2\\x3d\\x83\\x27\\x06\\x4c\\xa6\\x81\\x13\\x83\\xe2\\x9f\\x57\\xee\\xa9\\x1c\\x29\\x8c\\x4f\\x28\\x1a\\xae\\xc0\\x7b\\x57\\x56\\xb8\\x1c\\x70\\x6e\\x39\\xd7\\xd9\\x79\\xe7\\x7c\\x29\\x78\\xd6\\x02\\x5b\\xd7\\x62\\x51\\xe1\\x96\\x76\\x0b\\xb8\\x69\\xfe\\x38\\x6f\\x4e\\xc0\\x1c\\x4f\\xbd\\x28\\xea\\x06\\x09\\x52\\xad\\x90\\xaf\\x52\\xc8\\x53\\x27\\x6f\\x7d\\xd8\\x1c\\xf3\\xad\\x4d\\xb4\\x3e\\x3e\\x96\\x83\\xf2\\x0d\\x2b\\xd3\\xe0\\xb6\\x2b\\xcb\\x12\\x97\\x73\\x93\\x45\\x09\\xd0\\x7e\\xa2\\x43\\x96\\xd3\\x7c\\xaf\\x54\\x87\\xf4\\x84\\xf0\\x53\\x1d\\x12\\x68\\x52\\x75\\xe6\\x3a\\x95\\x63\\xa0\\x3a\\x24\\x63\\x09\\x4d\\xa4\\xb3\\x9e\\xa5\\xa5\\x4e\\x62\\xf3\\xc5\\x81\\x1c\\x84\\xa6\\x5b\\xaf\\x50\\x32\\x1d\\x52\\xc2\\xa8\\xf3\\x0e\\x46\\x2b\\x69\\x12\\x36\\x48\\x5e\\x3e\\x4a\\xe1\\xdd\\xb0\\xfc\\x43\\x9e\\xdd\\xb9\\xa7\\xdd\\xb9\\xb9\\xb5\\xc8\\x10\\x01\\xee\\x3f\\xe3\\x10\\x88\\x30\\x14\\xb5\\x6e\\x76\\xb6\\xed\\xe9\\xca\\x96\\xaf\\xf2\\x95\\x6b\\x4f\\xcc\\xb4\\xdc\\x32\\xd7\\xea\\x48\\x48\\x70\\xb4\\xce\\xdd\\xd2\\x32\\xf3\\xe4\\x5a\\x05\\x0f\\x5f\\x6c\\xbb\\x65\\xd4\\x91\\x56\\x3d\\xbc\\xb8\\xbb\\xa4\\x6f\\xbc\\xbd\\x64\\xf7\\xe2\\x70\\x75\\x9a\\x63\\xf4\\xd6\\xd6\\xb1\\xa7\\xf7\\xd5\\x9a\\xda\\x96\\x8f\\xdd\\xdd\\x24\\xfe\\xbe\\xe9\\xee\\x63\\x4b\\x6d\\x59\\x55\\x7b\\x9e\\x9e\\xf6\\xe6\\x19\\x18\\x66\\xb9\\x24\\x8b\\xd0\\x2b\\xde\\xdd\\x05\\x4f\\x5a\\xc3\\xc3\\x08\\xa9\\xbe\\xa4\\x81\\x31\\x65\\x4c\\x12\\x8f\\x49\\x3e\\x07\\x8c\\xde\\x77\\x19\\xbd\\x80\\x5c\\xeb\\x69\\x39\\x9d\\xae\\xd2\\xf5\\xc8\\x7b\\x79\\xe4\\x47\\x29\\xf5\\x23\\x17\\xc8\\x76\\x10\\x99\\x46\\x3d\\x8d\\x40\\xd5\\xb0\\x1d\\x84\\x0f\\xc5\\xad\\x66\\xe1\\x9b\\x56\\x8a\\xe5\\x60\\xbd\\xe9\\x41\\x35\\xd0\\x6e\\xf5\\x6c\\xf5\\xf8\\x61\\x5d\\xc7\\x6d\\x13\\xa3\\xc7\\xda\\x34\\xe7\\x57\\x56\\xce\\x87\\xa6\\x3a\\x1a\\xa7\\xca\\x2b\\x66\\x5a\\x72\\x35\\x8a\\xb5\\xc8\\x9c\\x61\\x57\\x76\\x8d\\x4d\\x15\\x49\\xe0\\xe1\\xa9\\xb6\\x9a\\x6c\\x4b\\x7d\\x8e\\x3a\\xca\\x0f\\xe7\\x4e\\x7f\\xfb\\xb1\\xe9\\xe9\\xc7\\xbe\\x3d\\xbd\\xea\\x6e\\x25\\x33\\x63\\x74\\xac\\xea\\xe4\\xc1\\xc5\\x0e\\xb3\\xb9\\x63\\xf1\\xe0\\xc9\\x2a\\xdc\\xf6\\xe4\\xf1\\xee\\xb4\\xaa\\xc1\\x99\\x65\\x87\\xf8\\xe9\\xdc\\xa5\\xd9\\xa1\\xaa\\xb4\\xb4\\xaa\\xa1\\xd9\\xa5\\x5c\\x16\\x57\\x87\\x10\\x1f\\xc0\\x78\\x5f\\x12\\x28\\x0b\\xa9\\xc0\\x68\\xcb\\x7c\\xb9\\x87\\x3d\\x08\\x3a\\xa2\\xcf\\x78\\xb4\\x07\\x84\\x62\\x95\\xd1\\x91\\xe4\\xea\\x50\\x03\\x95\\x5b\\x4a\\x23\\x7d\\xb1\\xd5\\x40\\xc9\\x55\\x29\\x20\\x5d\\xc1\\x6c\\x15\\xe4\\x58\\x08\\xc7\\x9d\\x11\\xb7\\x8a\\x5f\\xdc\\x0f\\x6d\\xb7\\xdc\\x59\\xb9\\xf7\\x85\\x59\\x78\\x74\\xfd\\x77\\xa6\\xce\\x9d\\x0d\\xd0\\x24\\x7e\\xab\\xfd\\xe8\\xa0\\x15\\x8f\\xbb\\xef\\xc5\\x47\\xcc\\x9f\\xbd\\x6d\\xe2\\xbe\\x2d\\xf9\\x40\\x96\\x3f\\x82\\x7f\\x6a\\xcd\\x02\\xbc\\x87\\x82\\xd5\\x49\\xbd\\x0e\\x93\\x31\\x2f\\x93\\x29\\x50\\x06\\x2a\\xa3\\xcc\\x2d\\xe9\\xc0\\x4b\\x30\\x7a\\xbc\\x44\\xaa\\x28\\x65\\xc8\\xa7\\x00\\x13\\xef\\xa2\\x64\\xca\\x04\\x94\\xe7\\xc8\\x2c\\x33\\x95\\x25\\x25\\x12\\xfc\\x7c\\x06\\x64\\xc8\\x65\\x1e\\x30\\x89\\x4f\\x43\\x28\\xc2\\xb6\\x70\\x62\\x1c\\xa0\\xf1\\x18\\x21\\x02\\xb5\\xd3\\x13\\xe5\\x97\\x4e\\x6b\\x9f\\x3f\\x95\\xe6\\x71\\xda\\x3a\\xfd\\xc4\\xf6\\xb2\\xf2\\x9d\\xcf\\x6d\\xd9\\xf2\\xdc\\xee\\x72\\x28\\x58\\x7b\\x79\\x77\\xf6\\x48\\xa3\\x05\\x4f\\xe2\\x24\\x5b\\x45\\x43\\x7b\\x5a\\xfb\\x91\\x51\\x67\\x68\\xd9\\x9b\\x13\\x6d\\x87\\x06\\xb2\\x21\\xbb\\xef\\x48\\x67\\xc7\\xa1\\x7e\\x33\\x58\\xfa\\x0f\\x73\\x7f\\xae\\x3b\\xf0\\xdc\\xa4\\x6a\\xf6\\xf5\\x5b\\x9b\\x9b\\x6f\\x7d\\x7d\\x56\\xc5\\x57\\xde\\x05\\x7e\\x5f\\x3b\\x1a\\xed\\x1f\\xa5\\x2b\\xca\\xce\\x6d\\xc9\\xd7\\xc7\\x29\\xe4\\x21\\xae\\xad\\x77\\xf7\\x76\\x4e\\x8c\\x17\\x4d\\x1d\\x6f\\x54\\xb5\\xdf\\xb1\\x58\\x56\\xb6\\x78\\x67\\x9b\\xaa\\xe9\\xb6\\xa9\\x22\\xc9\\xaf\\xfc\\x09\\x84\\x78\\xca\\x3c\\x1e\\x49\\x66\\xba\\x89\\x72\\x17\\x04\\xdc\\x38\\xf7\\x78\\x8c\\x2f\\xf7\\x38\\x53\\xe8\\xa2\\x10\\x32\\x65\\x68\\x52\\xc9\\xd6\\x2e\\x25\\x26\\x9a\\xdc\\x1c\\x41\\x42\\xdf\\x3d\\x79\\xaf\\x29\\x63\\x9a\\x47\\xc2\\x80\\x42\\xe5\\x55\\x8f\\xb4\\xbe\\x4f\\xaa\\x4f\\xc0\\x3d\\xed\\x77\\x2d\\x95\\xc1\\x64\\x4f\\x4e\\x67\\x71\\x6a\\xe1\\xf4\\xa9\\x16\\xf1\\x3c\\x4c\\xe4\\x6e\\xaa\\x4d\\xcf\\xa8\\xdd\\x94\\x43\\x3e\\x67\\x14\\x4c\\x36\\x64\\x12\\x96\\xab\\x02\\xf1\\x27\\x7c\\x3e\\x24\\x55\\x6c\\x69\\x1e\\x5c\\x4a\\xf0\\x37\\x95\\x75\\x5a\\x9a\\x16\\x6b\\xd5\\xf0\\x67\\x71\\x49\\x99\\x5d\\x9f\\x63\\xab\\xcb\\x52\\x8e\\x45\\x66\\xd6\\xe6\\xe4\\xd6\\x19\\x15\\x6c\\x9d\\xfa\\x3c\\x69\\x0b\\x8d\\xc1\\xb8\\x0a\\x33\\x4a\\x2a\\xce\\xaa\\x4c\\x31\\xa3\\x32\\x1f\\x66\\x34\\xd1\\xad\\xde\\xc9\\x75\\x73\\xdf\\x59\\xcf\\xf4\\xe4\\x15\\x19\\x14\\x3f\\xc7\\x6f\\xe5\\xf3\\xa9\\x6e\\x4d\\xe7\\x24\\x0f\\x18\\x70\\x0b\\x8b\\x46\\x64\\x8d\\x97\\xf9\\x09\\x9c\\x07\\x78\\xa8\\xe4\\xe8\\x8c\\x8c\\x51\\x46\\x33\\xf2\\x18\\xf2\\x13\\xed\\x4f\\xd6\\x1d\\x3a\\xc4\\x74\\xed\\xf1\\x68\\xda\\x1e\\x15\\xfb\\xa5\\xec\\x8a\\x0c\\xa5\\x2c\\x1c\\xef\\x5d\\xf0\\xdf\\xb2\\xfe\\x9d\\x69\\x7f\\x38\\x21\\x0b\\x57\\xe7\\x1a\\x71\\x89\\x38\\x3b\\x9e\\xb6\\x72\\xee\\xc5\\x29\\x38\\xba\\x6e\\x14\\x07\\xa0\\x58\\xfc\\x1c\\x3c\\x88\\x1b\\x07\\x9e\\xb8\\x73\\x5f\\x36\\x37\\x4e\\xdb\\x42\\x5a\\x44\\x62\\x9c\\xf2\\x6f\\xa6\\x5f\\xc7\\xfc\\x1f\\xf5\\xeb\\xdf\\x75\\xac\\x74\\x8a\\xdf\\x3e\\x09\\x7d\\xe2\\xdb\\xc7\\x40\\xd6\\xbb\\xd2\\x07\\xb2\\x5b\\xc4\\xaf\\xc3\\xc0\\x69\\xf8\\xab\\x18\\x44\\x7f\\x71\\x06\\x0e\\x11\\xb5\\xf0\\x23\\xfa\\xeb\\xfe\\xb3\\xfb\\xbb\\xb4\\x1e\\xf7\\x12\\x1e\\x80\\x3a\\xbe\\x01\\x55\\xfc\\x1f\\xf4\\xeb\\xe4\\xab\\xf5\\xeb\\xf2\\xd2\\x3c\\x87\\xd5\\x92\\x91\\xee\\xd1\\xaf\\x2b\\xa0\\xe2\\xc3\\xf5\\x6b\\x2a\\xeb\\x79\\x5f\\x58\\x96\\x57\\xc1\\xde\\x55\\xb0\\xdc\\x4b\\xa0\\x2e\\x2b\\x85\\xb9\\x2b\\x9b\\x4a\\x60\\x87\\xd0\\xba\\xef\\xbe\\xb6\\xf6\\x8f\\xed\\x76\\xa9\\x0b\\x9a\\x4d\\x36\\x92\\xf2\\x55\\x57\\xd6\\x33\\xb5\\x98\\xeb\\x58\\x98\\xec\\xaf\\x34\\x72\\x3b\\xca\\x26\\xf6\\x14\\x15\\xed\\x1c\\x2d\\x2e\\xda\\xb4\\xbd\\xe8\\x1b\\xb8\\x5f\\x91\\x51\\x97\\xe7\\x68\\xcc\\x8e\\x8e\\xb5\\x35\\xe5\\x34\\xad\\x34\\xe8\\x52\\xea\\x56\\xda\\x4d\\xae\\x82\\x8c\\xd0\\xe0\\xf4\\x92\\x0e\\x47\\x5e\\x6f\\x95\\x55\\x15\\x1a\\xa6\\xb2\\xd7\\x0e\\x15\\xe4\\x77\\xe6\\x25\\x28\\xad\\x2d\\x05\\xce\\xe6\\xcc\\xb0\\x29\\xea\\xc7\\x41\\x88\\x0f\\xe3\\xf3\\xaf\\xd3\\xb3\\x63\\x6e\\xa4\\x67\\x2b\\x80\\x8a\\x5a\\xee\\xae\\xed\\xdb\\xdd\\x17\\xb7\\x6d\\xa3\\x41\\x3b\\xdc\\x9e\\x75\\xca\\xac\\xb0\\x9f\\xcd\\xd1\\xaf\\x23\\xc4\\xf0\\x5b\\x41\\x54\\xe7\\x0d\\xa0\\xfa\\xa0\\x2f\\x83\\x2f\\x0f\\x74\\xb6\\x7a\\xf4\\x88\\x70\\xdf\\x7e\\x95\\x8d\\xa6\\x6f\\x10\\x03\\xde\\xda\\xbe\\xfd\\x73\\xf0\\xfc\\x3d\\x62\\x0a\\x8e\\xbc\\x1f\\xfe\\x28\\x92\\x7a\\x89\\x29\\xf0\\x53\\xf7\\x5f\\xdc\\xdf\\x61\\xe5\\x97\\x52\\x5b\\x01\\x9f\\x7f\\x8d\\x1e\\x1f\\xf3\\x91\\xf4\\x78\\x87\\x43\\xd2\\xe3\\xe5\\xdb\\xc5\\x2c\\x3f\\x08\\x88\\xcb\\xac\\x99\\xac\\xce\\xc0\\xba\\xec\\x4a\\x53\\x7c\\xa8\\x00\\x81\\xac\\x2d\\xdf\\x11\\x6f\\xa9\\x3b\\x7b\\x64\\xb9\\x23\\x7b\\x06\\x8c\\x35\\xc3\\x5b\\x56\\xf3\\xe0\\x1d\\xf6\\xdc\\x3b\\x69\\xee\\x30\\xda\\x2e\\x8a\\x1b\\xf5\\x13\\x58\\x1f\\xf1\\xac\\x8f\\x38\\x8c\\x3d\\x9d\\x44\\xda\\x24\\x90\\x57\\x45\\xeb\\xe9\\x26\\xa0\\xed\\xc2\\x7d\\x90\\x75\\x7a\\x55\\xfc\\x59\\xbb\\xf8\\xc3\\x95\\xbb\\x1e\\xa0\\x49\\x17\\x38\\xc7\\xfa\\x97\\xb9\\xe6\\xf5\\x67\\x49\\x61\\x57\\xfa\\xfe\\xfa\\xdc\\xeb\\xb4\\xf3\\x69\\x3b\\x7c\\x3b\\xfb\\x6b\\x72\\xaf\\x87\\xb1\\xfe\\xc7\\xa3\\xdb\\x3d\\x9d\\x14\\x0f\\xbf\\xd8\\x58\\xde\\x46\\x2c\\xf1\\xc6\\xb2\\xd8\\x40\\xfa\\xb0\\xc4\\xb4\\x94\\x4b\\x6b\\x5c\\x9b\\x57\\x50\\x00\\x5a\\x44\\x88\\xca\\x89\\x6b\\x72\\x00\\xfb\\x84\\x8c\\xe7\\x7e\\xf0\\xf0\\x78\\xf2\\x5b\\x45\\xeb\\x76\\xb1\\x9c\\xe7\\xb8\\xef\\xae\\x67\\x70\\xdf\\x9d\\x90\\x64\\xee\\x41\\xe2\\xa3\\xae\\x95\\xd1\\xc0\\x7f\\x3d\\xb2\\xd2\\xfe\\x32\\x65\\xa6\\xaa\\xa2\\x23\\xfc\\x04\\x3f\\xda\\x6b\\x5e\\x90\\x7e\\x1c\\xd4\\x27\\x46\\x63\\x59\\x34\\x8d\\x5a\\xa4\\xdc\\x88\\x14\\x50\\xe7\\xc3\\xda\\x5a\\x3d\\x58\\xe0\\x28\\x95\\x07\\x1c\\x6c\\x3f\\x08\\x79\\x73\\x17\\xc6\\xd6\\xc6\\x2e\\xcc\\xe5\\x01\\xe4\\xcd\\x5e\\xf4\\x7c\\x5c\\x33\\xd4\\x2f\\xd6\\xd5\\x2d\\xd6\\x1b\\xf0\\x7f\\x11\\xab\\x7d\\x2d\\xfb\\x94\\x39\\xf1\\xfa\\x99\\xa1\\x40\\x78\\x59\\xac\\x0b\\x1a\\xba\\xfd\\xb5\\x49\\xd5\\xe4\\x6b\\x67\\x06\\x03\\xc5\\x05\\x38\\x1d\\x34\\x78\\xe6\\x13\\x93\\x4d\\x67\\xb7\\xb5\\x04\\x71\\x27\\x82\\x5a\\xb7\\x9d\\x6d\\x6c\\x38\\xbb\\xda\\x1a\\xbc\\xbe\\x4c\\x3e\\x9f\\x6b\\x94\\xf6\\xfd\\xff\\x4f\\xfc\\x34\\xbf\\x97\\xcf\\xf7\\xda\\x5a\\x80\\x6f\\xc1\\x74\\x94\\x37\\xee\\x99\\xae\\xb7\\xb5\\x30\\xa9\\xf8\\xff\\xd6\\x70\\xf5\\xf6\\x2d\\x44\\x0e\\x7e\\x8b\\xbc\\x0c\\x46\\xee\\x7b\\x44\\xf0\\xf5\\x42\\x29\\x8b\\xd1\\xa5\\x63\\xe2\\xc5\\xfe\\x44\\x00\\x87\\xf1\\x55\\xfb\\x25\\xf6\\x5e\\x78\\xb6\\x4b\\x34\\x96\\x2f\\x8c\\x4e\\x22\\x32\\x42\\x1e\\xf2\\x60\\x8e\\x39\\xe7\\xc9\\x22\\x4b\\x07\\x7d\\xad\\xee\\x63\\x1d\\x53\\x24\\x48\\x0e\\xd6\\xe0\\xa1\\x7b\\x9b\\x1e\\xad\\x5b\\x83\\x2f\\xc5\\x25\\x40\\xd6\\xe8\\xf9\\x19\\x08\\x17\\x7f\\xff\\xc0\\xed\\x1c\\x28\\xe3\\x30\\xe5\\xcf\\xbc\\x55\\xe2\\x4a\\xd9\\xb8\\x57\\x8a\\xf9\\xa8\\x7b\\xa5\\xcb\\x60\\x5a\\x05\\xe3\\xca\\x7a\\xb5\\xd4\\x10\\xfa\\xeb\\xcb\\x15\\x72\\x88\\xf4\\xcf\\x9d\\x7c\\xfe\\x75\\x7b\\xa5\\x98\\x8f\\xb4\\x57\\xb2\\x6e\\xd8\\x2b\\xfd\\x8b\\x3c\\xc5\\x6d\\x5a\\xe9\\xf1\\x9f\\x59\\xdf\\xe4\\x7d\\x10\\xd0\\x79\\x24\\xf6\\x40\\x29\\x9f\\xef\\x89\\x73\\x58\\xe0\\xf3\\x3f\\x70\\x9f\\x14\\x73\\xf3\\x7d\\xd2\\x8d\\x6c\\x54\\xea\\x62\\x78\\x19\\xa0\\xe3\\xf8\\x58\\x4e\\xce\\xd8\\xf1\\x0e\\xf1\\x98\\xf8\\x59\\xfa\\xbd\\x68\\xb8\\x5c\\xad\\x29\\x1f\\x2e\\x24\\xaf\\xd1\\x38\\x98\\xbb\\x48\\x10\\xeb\\xae\\x6e\\x0b\\xf7\\x5d\\x71\\x5c\\xcc\\x00\\x75\\x51\\xa7\\xd5\\xd2\\x59\\xac\\x41\\x1c\\x7a\\x88\\xd4\\xc7\\xc8\\xe7\\x7f\\xc0\\x3e\\x29\\xe6\\x3f\\xdf\\x27\\xc5\\x3e\\xdf\\xb4\\xb3\\xdd\\x68\\x6c\\xdf\\xd9\\x24\\xfe\\xbf\\x95\\xe7\\x72\\x48\\x68\\x44\\xac\\xad\\x31\\x07\\x8f\\xac\\xac\\xe0\\xfb\\xc0\\xd6\\xbb\\xbd\\xaa\\x72\\x47\\xbf\\x9d\\x7a\\xc3\\x2f\\x93\\x0a\\xe9\\x9c\\xed\\x59\\x99\\xed\\xa5\\x7a\\x70\\x7f\\xd1\\xb3\\xb6\\x7f\\x92\\xe6\\xea\\xe7\\xf3\\x6f\\xb4\\x4f\\x8a\\xf9\\x3f\\xee\\x93\\xd4\\x60\\x83\\xa1\\xae\\x3b\\xb6\\x94\\x94\\xcc\\xdd\\xd9\\x25\\xa6\\xad\\xc1\\x50\\xd1\\xe6\\xc6\\x0c\\xe2\\xae\\x2e\\x22\\x35\\xc9\\xec\\xd8\\xd5\\xd4\\xbc\\xab\\xcb\\xe4\\xa9\\x48\\x72\\x61\\x67\\xae\\xa3\\xb3\\x50\\xc5\\xe6\\xc5\\x29\\xa2\\x5b\\xda\\x19\\x0f\\x47\\x8d\\xb3\\x92\\x12\\x66\\x23\\x20\\xc8\\x52\\x9e\\x78\\xf1\\x78\\x61\\x81\\xfa\\x6f\\x78\\xb9\\x6c\\xc4\\xcf\\x8b\\x9e\\x48\\xf6\\x71\\xde\\x24\\x51\\x64\\x69\\x9a\\x41\\xaf\\xdb\\x90\\x30\\x36\\x13\\x32\\xd9\\x0a\\xba\\x71\\xe5\\xbc\\xd6\\x26\\xe5\\x60\\xc0\\x77\\x5c\\x5a\\xb8\\xd8\\xed\\x80\\x15\\xae\\x6e\\xdb\\xf9\\x76\\x8a\\x6a\\x2f\\xdd\\xf3\\xfa\\xf6\\xfe\\x8b\\x04\\x1a\\xb2\\x02\\x96\\xce\\xe5\\xb2\\xc1\\xe3\\x03\\x66\\xde\\xfd\\x27\\x1c\\x2a\\x58\\x06\\x6f\\xe5\\xde\\x4b\\x2d\\x1b\\x2a\\x6a\\x3a\\x38\\x64\\xef\\xba\\xe3\\xad\\xd9\\xf4\\xb9\\xb7\\xce\\x75\\xe5\\x8e\\x9f\\xec\\x2a\\x9d\\xae\\x4b\\xab\\x5c\\xbe\\xb3\\x65\\xbc\\xf9\\xcc\\x7c\\x19\\xeb\\xcf\\xdd\\xa4\\x2d\\xdb\\x49\\x5b\\x92\\x51\\x81\\x6f\\x6f\\x44\\x05\\x9b\\x0c\\xb1\\x7c\\x10\\xd2\\x18\\x33\\x25\\x40\\x42\\x02\\x25\\x61\\xdf\\xde\\xc8\\x77\\x99\\x20\\xc4\\x78\\x38\\xc8\\xe9\\xa5\\xf4\\x95\\x93\\xae\\x47\\xde\\xcb\\x23\\x3f\\x4a\\xa9\\x1f\\xb9\\x40\\x69\\x6f\\xa4\\x25\\xca\\x9a\\x51\\xc3\\x6c\\xa2\\x11\\x56\\xcf\\xc6\\xd2\\x4b\\xf0\\xae\\x67\\xcb\\x2c\\x78\\x3d\\xeb\\x94\\x33\\x8f\\xed\\x90\\xfe\\xfc\\x06\\x67\\xec\\x38\\x34\\x50\\x3a\\xd9\\x9c\\xa7\\x51\\xe8\\x3b\\x8e\\x8e\\x14\\x8f\\x36\\xe6\\xe9\\xa3\\xf0\\x1b\\x2b\\x2b\\x60\\x53\\xe6\\xf4\\x57\\x65\\x91\\x1c\\x7e\\x51\\x01\\x01\\xd1\\x1a\\x7b\\x8d\\xc9\\x54\\x6d\\x57\\x47\\x07\\xe0\\x86\\x81\\x57\\xcf\\xf4\\x92\\x49\\xb1\\xe3\\xa0\\x53\\x35\\xf2\\xb9\\x0b\\x23\\x69\\xd5\\x23\\x0b\\xbb\\x8a\\xc5\\x58\\x32\\x31\\xbe\\x5d\\x7b\\xe1\\x40\\xbb\\xbe\\xac\\x7b\\x74\\xd2\\xac\\x32\\x4f\\x6e\\xea\\x26\\x24\\xd2\\xe5\\xdd\\x9b\\x26\\xcd\\xb4\\x5f\\x27\\x48\\x5b\\xfe\\xc0\\x64\\x47\\x12\\xd5\\x41\\xe5\\x40\\x93\\x18\\x78\\xd7\\x3c\\x36\\x21\\x64\\x1b\\x17\\x3e\\x84\\xe2\\x63\\x63\\xa2\\xc9\\xd5\\x61\\x4c\\x46\\x29\\xa5\\x95\\x1c\\xd4\\xe0\\x01\\x6e\\x78\\xf7\\x45\\x34\\xbd\\xc4\\x1f\\xd6\\xc4\\xc3\\xe2\\x1f\\x0e\\x43\\x5c\\x6e\\x8f\\x33\\xb5\\x78\\xf6\\x4c\\xbb\\xf8\\x9e\\xba\\xb4\\x37\\x17\\x76\\x89\\x8f\\x14\\x4c\\xba\\x8c\\x74\\x69\\x87\\x17\\xc5\\x7a\\x78\\x33\\x34\\xb7\\x69\\xb4\\xa0\\x7e\\xad\\x35\\x03\\xc4\\xd7\\xb3\\x9b\\xf3\\x52\\x00\\x5e\\x4b\\xce\\x6b\\x63\\xb2\\xff\\xf2\\x5f\\x45\\x17\\x9f\\x24\\x43\\xc8\\x86\\x6a\\x9d\\x55\\xe9\\x18\\x0b\\x7c\\x14\\x70\\x02\\x45\\xde\\x72\\x75\\xc8\\x4f\\xee\\xb7\\xe4\\x0f\\x72\\x19\\xdb\\xf8\\x8f\\x78\\xb7\\x49\\xc9\\x57\\x3b\\xba\\x54\\xb8\\xde\\x66\\xa5\\xfb\\x53\\xa3\\xc6\\xa8\\x96\\x74\\x55\\x95\\xc2\\x9b\\x21\\x54\\x4a\\x89\\xea\\x33\\xec\\xd9\\x37\\x22\\x66\\x19\\xd9\\x02\\xe1\\x4d\\xc2\\xdd\\xe2\\xbb\\x9e\\xcc\\xa1\\x00\\x69\\x4d\\x2b\\xf5\\x65\\x45\\x21\\xca\\x72\\x65\\x76\\x8d\\x39\\x06\\xe0\\x4a\\x2a\\xd1\\x6f\\x7e\\x73\\x0d\\x12\\xf8\\xef\\x88\\x77\\x7a\\x12\\x8a\\x8a\\x97\\xdd\\x7f\\x6b\\xd8\\xd7\\x67\\x8b\\xd8\\x24\\xf7\\x23\\xe9\\x04\\x6d\\x3d\\x1b\\xf3\\x8b\\xf2\\xdf\\x99\\xf8\\xe2\\x17\\xe9\\x3b\\xfa\\x00\\xc5\\xeb\\xf8\\xde\\x51\\x5e\\x90\\x09\\xbc\\x6c\\x81\\x36\\x47\\x0e\\x68\\x81\\x7a\\x58\\x41\\x26\\xa7\\xe3\\xe0\\x51\\x72\\x7d\\x6f\\x6b\\x12\\xfe\\xc0\\x77\\xf4\\xa6\\x49\\x9d\\x69\\x20\\x4a\\x12\\x87\\xb7\\xdf\\x3c\\xab\\x73\\xef\\xfe\\x76\\x23\\x07\\x7f\\x13\\x03\\x39\\x63\\xfb\\xfe\\x0f\\xce\\xed\\x5c\\xb5\\x74\\xb6\\x61\\xbc\\xf1\\xdc\\x72\\xa5\\x64\\x43\\x23\\xaf\\x0e\\xff\\x12\\x9f\\xff\\xc1\\x3e\\xb1\\x98\\xff\\xbb\\x4f\\x2c\\x82\\xea\\xe5\\x6a\\x87\\xb5\\x58\\xb0\\x6f\\xf4\\x89\\xfd\\xe8\\x9e\\x86\\xb5\\xd6\\xf4\\xf4\\xd6\\xb5\\x06\\xf1\\xcf\\xe2\\xcf\\x41\\x08\\x57\\xe7\\x77\\x14\\x6a\\x71\\x92\\xd6\\x9a\\x12\\xee\\x07\\x80\\xfd\\xee\\xb1\\xb9\\x2c\\x31\\x31\\x96\\x7a\\x2b\\x59\\x3f\\x9a\\xc0\\xd2\\xb5\\x52\\x51\\xb1\\xda\\x6d\\x05\\xaa\\x4b\\x96\\x9f\\x38\\xb2\\xad\\xd7\\x3e\\x09\\x59\\x8d\\xe3\\xf3\\x8b\\x16\\x78\\xc7\\xfd\\x6b\\xd1\\x09\\xba\\x92\\xd6\\x0c\\x63\\x53\\xa1\\x16\\x10\\x66\\xf9\\x67\\x4e\\x33\\x7c\\x99\\x5a\\xf2\\x36\\x21\\x7f\\x3f\\xcc\\xcb\\xd9\\x9a\\x02\\x10\\xf3\\x7f\\xf1\\x86\\xa9\\xae\\xf5\\x86\\xbd\\x0f\\x5d\\x2b\\xe7\\xeb\\x16\\x1b\\xf4\\xfa\\x86\\xc5\\x3a\\xf1\\x4f\\xe2\\xe3\\xe4\\x95\\xfe\\xda\\xf9\\xec\\xca\\xcc\\xa8\\xa8\\xcc\\x2a\\x33\\x3e\\x0e\\x4f\\x93\\xea\\x5a\\xbb\\x57\\xca\\xca\\x56\\x7b\\x6c\\x80\\xf5\\xee\\xff\\xc7\\xe7\\xb3\\x0a\\xea\\x9d\\xa4\\xbd\\x8d\\x45\\x3a\\x0f\\xc7\\x67\\x2a\\xa9\\x63\\xb8\\x0c\\x21\\x15\\xf5\\xc8\\x2b\\xb1\\x14\\x7d\\x4f\\xf6\\x46\\x4b\\x7e\\x20\\x13\\x00\\x81\\x0c\\xf9\\x9c\\xa8\\xc9\\x3e\\x97\\x18\\x7d\\x0b\\xa8\\x53\\xcc\\xff\\xea\\x97\\xe0\\x86\\x93\\xfe\\x88\\xf8\\xe4\\xf5\\xe9\\x72\\xef\\xba\\x6b\\x0d\\x3a\\xf8\\x9f\\x89\\xc7\\x6e\\x98\\x34\\x97\\xff\\xd9\\xc4\\x27\\x3e\\xc1\\xf0\\xab\\xf7\\x79\\xf4\\x67\\xba\\xf2\\x51\\xfe\\x41\\xc6\\xcf\\xcd\\xf4\\x29\\xdc\\x23\\x55\\xe6\\x5a\\x5d\\x07\\xae\\x38\\xc8\\x14\\x60\\xc7\\x9b\\xb6\\x8b\\x77\\xae\\x89\\xa7\\xf8\\x7c\\x49\\xd1\\xa1\\x1e\\x32\\x49\\x17\\x9e\\x27\\xef\\xcb\\x2e\\x16\\x37\\xc0\\x90\\x65\\x14\\x7f\\x2f\\x97\\xf1\\x1c\\xc6\\xd1\\x1b\\xd2\\xa5\\x26\\x79\\x63\\x07\\x28\\xd6\\xdc\\xa0\\xf5\\x93\\xc5\\x79\\x58\\xae\\x7c\\xe8\\x83\\x0d\\x88\\xa6\\xab\\x3f\\xf2\\x3b\\xb0\\xaa\\x62\\xd6\\x65\\xaa\\xcb\\x27\\x80\\x03\\x63\\x5e\\x9d\\xc9\\x35\\x5b\\xa1\\xc2\\x5b\\x71\\x98\\xb6\\xc4\\x6c\\x29\\x33\\x28\\xf0\\x1a\\x28\\x0c\\x65\\x16\\x73\\xb1\\x2e\\x0c\\x13\\x37\\xc6\\x17\\x6b\\x4f\\xce\\x57\\x26\\xda\\x28\\x3b\\x8d\\x2d\\xb1\\x72\\xfe\\x64\\x2d\\x9f\\xf7\\xfe\\x17\\xb3\\xa6\\xba\\x72\\x73\\xbb\\xa6\\xb2\\xae\\xfe\\x2c\\x8d\\x5b\\x2b\\xcb\\x39\\x92\\x7f\\x7d\\xfd\\x63\\xfe\\xf3\\xfa\\x2b\\x36\\x7c\\xe4\\x0f\\x83\\xa6\\x66\\x8b\\xcb\\xdc\\x50\\x94\\x11\\x1a\\x9a\\x59\\xd8\\x90\\x55\\xbf\\xa5\\x46\\x03\\xab\\x10\\x9e\\x56\\x6e\\xb6\\x54\\x19\\x23\\xb7\\x43\\xa4\\xb1\\xca\\x6a\\x2e\\x4b\\x8b\\x20\\xf3\\xca\\xe2\\x3a\\xbe\\xd9\\xe9\\xe5\\xd6\\x71\\x6e\\x3e\\xee\\xc2\\xdf\\x70\\x5b\\x2c\\xe3\\xad\\x56\\x2b\\x09\\xa0\\xb8\\xfa\\x33\\x7d\\xbf\\x69\\xc6\\x9c\\x14\\x59\\x90\\xcf\\x57\\x2c\\xf0\\xc2\\x92\\x8c\\x1a\\xac\\x24\\x23\\x1a\\xf8\\x83\\x9f\\x1c\\xfc\\x68\\x96\\x14\\xaf\\x02\\xe8\\x7b\\x3b\\xe8\\xeb\\x41\\xdf\\x8e\\xab\\xfd\\x94\\x8c\\x78\\x70\\xa3\\x26\\x88\\x1f\\x12\\x5f\\x87\\x9c\\xce\\xdb\\xa7\\x0b\\x0a\\xa6\\x6f\\xef\\x14\\x5b\\xbf\\xf0\\x85\\x35\\xa8\\xa4\\x87\\x8a\\xc6\\x6b\\x0d\\x86\\xda\\xf1\\x22\\xde\\x21\\x4e\\x01\\xb1\\xaf\\x35\\x12\\x53\\xb1\\x99\\x77\\x8c\\xc3\\x82\\x78\\xda\\x7d\\x51\\xcc\\x00\\x55\\x61\\x67\\x8e\\xbd\\xb3\\x28\\x55\\xd2\\x7b\\x7e\\xc7\\x1f\\x27\\x71\\x0b\\x25\\x10\\x22\\xa1\\x2a\\xec\\x08\\x73\\x88\\xa3\\xe6\\x03\\x0f\\xce\\x80\\x05\\x48\\x0a\\x72\\x24\\x8c\\xa0\\xc0\\xc0\\x68\\xd7\\x55\\x70\\x03\\xbf\\x3e\\x4a\\x03\\x95\\xe4\\xe7\\xd5\\x1f\\xf2\\x3e\\xfa\\xcd\\x01\\x01\\x4a\\xa9\\x04\\xe4\\x2d\\x20\\xfe\\x3f\\x7f\\xfa\\x7f\\xfe\\x60\\xa6\\x79\\x84\\x97\\x14\\x17\\x15\\x16\\xe4\\x33\\x4b\\x37\\xf9\\x27\\x2c\\x88\\xbe\\xf3\\x1e\\x6b\\xac\\x6f\\x39\\xe0\\xbd\\x50\\x09\\x7e\\x43\\xa8\\x10\\xef\\xb1\\xdd\\x02\\xff\\x7c\\xb8\\x2e\\xbf\\x6d\\xa6\\xbc\\x6b\\x7f\\x57\\x96\\x30\\xeb\\x9f\\x98\\xdb\\x55\\x96\\x5d\\x9f\\xab\\x55\\x06\\x40\\x89\\xf8\\xd9\\x00\\xa5\\x96\\xb8\\x70\\xcb\\xbb\\x1c\\x89\\xfe\\xb3\\x42\\x16\\xb9\\xa4\\x7c\\xa6\\x2d\\x5f\\x17\\xfe\\x3c\\xf1\\x23\\x64\\x54\\x57\\x9f\\x3e\\xb4\\xd4\\x9e\\x5d\\xbd\\xe3\\x63\\x3d\\x65\\x3b\\x87\\xf2\\xd2\\x6b\\x86\\xe7\\xb6\\x3a\\x6a\\xc7\\x6f\\xc9\\x5d\\xde\\x32\\x5c\\x63\\x74\\x0c\\xee\\x2c\\xeb\\xb8\\xb4\\xb3\\x36\\xbb\\x7d\\xe9\\xe0\\xa9\\x9a\\x5b\\xdc\\x79\\x92\\x0f\\x06\\xd0\\x33\\xe4\\xdd\\xde\\x47\\x71\\xc9\\x20\\x93\\x34\\xbc\\x6c\\xe4\\x1f\\x20\\x0f\\xf0\\xbf\\x12\\x0e\\x15\\x08\\x72\\x9e\\xc5\\x43\\x8d\\x90\\x26\\xcb\\xfa\\x28\\xde\\x88\\x6d\\x83\\x25\\x71\\x9c\\xc4\\xf9\\xc6\\xec\\x26\\x37\\xd2\\x5b\\xc8\\xdd\\xac\\xaf\\xbc\\xaa\\x02\\x2d\\x01\\x79\\x0b\\x88\\xfc\\xcf\\x9e\\xfc\\x9f\\x3f\\x54\\x1a\\x2f\\xbb\\xcd\\x6c\\x4a\\x4f\\xd3\\x90\\x57\\x45\\x43\\x72\\x98\\x49\\xe3\\xa5\\xba\\x36\\x8a\\xcb\\x67\\x56\\xf7\\xa8\\xe0\\xbe\\x55\\x9d\\x7b\\x4e\\x7c\\x38\\x3a\\xa7\\xaf\\xda\\x5c\\x63\\x49\\xe4\\x17\\xc1\\xdc\\xbe\\x5c\\x31\\x72\\xac\\x43\\xff\\xda\\xea\\xea\\x6b\\x60\\xe8\\x38\\x3a\\x5c\\xbb\\xd2\\x9a\\xb1\\xc8\\xc5\\x67\\xd7\\x5a\\x2b\\xfb\\x72\\x94\\x00\\x7d\\xf0\\x17\\xff\\xaa\\xdb\\xb7\\xb9\\x74\\xa5\\x1d\\x59\\x65\\xdb\\x07\\x72\\x7b\\x4e\\xbf\\x32\\xe8\\x2f\\x06\\x93\\xd5\\x32\\xb9\\xff\\xc5\\x93\\x5d\\x45\\xe3\\x87\\x6b\\xb2\\x87\\xeb\\x4c\\x75\\xcb\\x27\\x2b\\x7c\\xbc\\xe9\\x8f\\x32\\x3f\\x5f\\x08\\x95\\xea\\x21\\x20\\xa3\\x7a\\xa2\\x0c\\x7b\\x96\\x1a\\xea\\xb6\\x15\\x38\\x8f\\xd1\\x85\\xfd\\x50\\xe4\\x85\\xc7\\x2a\\xc8\\xb1\\x50\\x6e\\x50\\x71\\xdc\\x2d\\xef\\x6e\\xfb\\xfe\\x43\\xbb\\x30\\x5e\\x00\\x71\\xa7\\xbb\\x19\\xde\\xfb\\x0b\\x35\\xfc\\xd1\\x5f\\xe6\\x5e\\xac\\xc4\\x6f\\xb1\\x67\\xcd\\x78\\xf6\\x98\\x81\\x28\\x8c\\x3e\\x2b\\xf4\\xba\\x67\\xc5\\x7c\\x84\\x67\\xe9\\xe5\\xdc\\xe0\\xf3\\x6b\\xaf\\x9f\\xd9\\x05\\x5f\\x9f\\x86\\xb7\\x77\\xbb\\x9f\\x83\\x53\\xf7\\x1b\\x0c\\xd0\\x27\\x3e\\x4c\\x7f\\x99\\xf2\\xf9\\x59\\x58\\xdd\\xb5\\x8b\\x3c\\xef\\x34\\x79\\xde\\xab\\xcc\\x77\\xca\\x32\\x94\\x45\\x53\\x8d\\xb2\\x8e\\x26\\xbc\\xc1\\x98\\x6a\\x62\\x9b\\xe8\\x60\\x13\\x60\\x81\\xc0\\x71\\xec\\x99\\x57\\x51\\xa9\\x06\\xca\\x12\\x7d\\x4f\\x8e\\x90\\xc6\\x46\\x15\\xe1\\x69\\xed\\x37\\x6e\\xd9\\x74\\x68\\x75\\x6d\\xf7\\xff\\x92\\x25\\x9e\\xff\\xef\\x19\\x98\\x5c\\x13\\xf3\\xa0\\xe8\\x02\\xbc\\x27\\xc6\\x78\\x7f\\x85\\x67\\xd7\\x1f\\xe0\\x06\\x49\\xd3\\x5b\\xf1\\x45\\xd2\\x74\\x0f\\x1e\\xe7\\x13\\x0c\\x33\\x1e\\x73\\xa3\\xba\\x8c\\xb0\\x89\\xf7\\x7f\\xae\\x0b\\xed\\x8d\\xb7\\xf7\\x4f\\x1d\\x59\\xdd\\xb1\\xf6\\xbf\\xc4\\x0f\\x1f\\xf2\\xa3\\x49\\xd8\\xbc\\x5d\\xac\\x00\\xc3\\x29\\xcc\\x41\\x8f\\xf8\\xa8\\xf7\\x97\\xac\\x09\\xb7\\xe0\\x6d\\xa4\\x6b\\xde\\x84\\x97\\x82\\xc2\\x68\\x7d\\xb6\\x7b\\x70\\x37\\x29\\x48\\x8d\\x2c\\xce\\x2c\\x0c\\x48\\xe6\\xd9\\xc8\\xfa\\xf9\\xb1\\xc8\\x75\\xd2\\x31\\x72\\x81\\xf3\\x98\\xa8\\xd5\\xa9\\xe4\\xc2\\x14\\x55\\xb8\\x36\\x82\\x08\\xf7\\x00\\x32\\x28\\x56\\x8e\\x28\\x19\\x56\\x50\\x81\\x95\\xa0\\x18\\x39\\x35\\x47\\xcc\\x48\\x6a\\xa6\\x65\\x10\\x33\\x12\\x07\\xa0\\xda\\x01\\xf0\\xc8\\x63\\x85\\xe2\\xa3\\xdc\\x1e\\xf1\\xa5\\xfc\\x27\\x1e\\x02\\x58\\x01\\x50\\x5a\\x5b\\x0b\\x66\\xf0\\xca\\x96\\x82\\x56\\xab\\x12\\xe0\\x00\\x60\\xf7\\xef\\xe1\\xae\\x67\\x5e\\xc7\\xf8\\xe3\\xee\\x36\\xfc\\xfa\\x33\\xe2\\x34\\xdc\\xe5\\x1c\\x29\\x4b\\x05\\xc1\\x3d\\x85\\x2f\\x42\\x6a\\xd9\\x88\\x53\\x9c\\xe6\\xa2\\xb1\\x8d\\xf5\\xdf\\x61\\x52\\xdf\\x7c\\xd2\\x7f\\x09\\x28\\x85\\xe6\\x65\\x8b\\x8e\\x60\\x3c\\x5d\\xd7\\x57\\x3b\\x66\\x63\\xb5\\x53\\x92\\xc9\\xf5\\x09\\x11\\xe1\\x6a\\x42\\x3d\\x1a\\xc1\\xaa\\xad\\xf7\\x54\\x9b\\x86\\x0e\\xa8\\xf5\\x3a\\x9d\\x54\\x6b\\x3d\\x65\\x6a\\x91\\x83\\x35\\x42\\x75\\x04\\xe0\\x85\\x47\\x79\\xf1\\x07\\x5c\\x93\\xf8\\x83\\x47\\x9e\\xc1\\xab\\x18\\xe6\\x56\\xf2\\xfd\\xb6\\x91\\xd8\\xce\\x39\\x00\\x18\\xf5\\xfb\\x99\\x68\\x7f\\xe7\\xf5\\x57\\x30\\x1d\\x63\\xfc\\xca\\xeb\\xef\\xbc\\x73\\x7c\\x3f\\x84\\x88\\xa9\\xf0\\x0b\\x39\\xec\\x3f\\xfe\\x0e\\x6e\\x85\\xfd\\x8c\\x57\\x8b\\xd4\\x75\\x33\\xe9\\xdb\\x34\\x94\\x41\\x11\\xda\\x94\\x50\\x54\\x86\\xa5\\x5a\\x06\\x06\\x42\\x4f\\x00\\x5c\\xd5\\xbb\\x19\\x46\\xaa\\xee\\x47\\x46\\x65\\x87\\x6b\\x09\\xd5\\x20\\x93\\x0f\\x11\\x34\\x09\\x01\\x55\\x35\\x25\\x5c\\x93\\xb7\\x92\\x21\\xd2\\x81\\x1c\\x87\\x24\\xc6\\x23\\x54\\xef\\xc0\\xe7\\xfe\\x85\\x3f\\xf6\\xcf\\x94\\xca\\xa1\\x82\\x78\\x3c\\x86\\x03\\x93\\xf3\\x4d\\x95\\x30\\x06\\x55\\xa6\\xbc\\x94\\x40\\xf2\\x3d\\x36\\xe1\\xc7\\xb3\\xb3\\x38\\xee\\x79\\xf1\\x5e\\x0e\\x53\\xcc\\x0b\\x58\\x7b\\x56\\x2b\\xc4\\x4a\\x78\\xdd\\xd8\\x52\\xac\\x03\\xce\\x3d\\x89\\xef\\xe1\\x40\\x57\\xdc\\x62\\xa4\\xc7\\xca\\x96\\x32\\xdd\\x63\\xc4\\xf7\\x76\\x2b\\x66\\xf3\\x63\\x9b\\xc4\\xe7\\x4a\\xdb\\x40\\x79\\xa0\\x54\\x89\\xcc\\x0a\\x2b\\x00\\xe7\\x2f\\xc7\\xd4\\xc2\\x4c\\x9b\\x82\\x7b\\x24\\x73\\x5a\\x50\\x80\\x9f\\x8c\\xf7\\xb8\\xd7\\x32\\x8c\\x2c\\x45\\x84\\x9a\\x80\\xb4\\xd8\\xe4\\x8d\\x0c\\x26\\xed\\x51\\xd1\\xd9\\x22\\x4d\\x5c\\xda\\x32\\x5f\\xc3\\xd4\\x6a\\x39\\x3d\\xaa\\x97\\x42\\xc0\\x49\\x83\\xe0\\x04\\x86\\xb8\\xc4\\x77\\xb6\\x6c\\x81\\xa7\\x7f\\x8a\\xcf\\xfc\\xb4\\x7c\\xa4\\x38\\x89\\xb4\\x23\\x54\\xeb\\xcc\\x56\\xf9\\xe3\\x71\\x21\\x3d\\xbb\\x84\\x48\\x0d\\x08\\x78\\x58\\x7c\\x09\\xe4\\x15\\x8b\\x46\\xba\\x0b\\x16\\x23\\xe0\\x77\\x62\\x38\\x97\\xdd\\xb1\\x5a\\x25\\xfe\\x0b\\xe4\\xe6\\xd6\\xc2\\xd4\\x48\\x31\\x13\\x7e\\x1c\\x98\\x5a\\xd8\\x6a\\x16\\xff\\x85\\xbb\\x61\\x1f\\x6d\\xcf\\x97\\xc5\\x49\\x5e\\x2d\\xdf\\x82\\x2a\\x50\\x03\\xea\\x70\\xb6\\xba\\x80\\x6c\\x72\\x41\\x40\\xb8\\xae\\x01\\x64\\x35\\x99\\x19\\x98\\xab\\x46\\x24\\x42\\x77\\x09\\xc9\\x31\\x55\\xb5\\x11\\x62\\xac\\xff\\xde\\x30\\x8e\\x68\\x2f\\xfd\\x34\\x1d\\x2f\\x40\\x75\\xb5\\xd5\\x55\\xc4\\x11\\x91\\xa3\\x4e\\x09\\x09\\xba\\x81\\x13\\x82\\x58\\x4b\\xae\\xc1\\xf7\\x30\\x9e\\x78\\xba\\x83\\x96\\x9b\\x38\\x46\\x17\\xbf\\xc1\\x11\\x11\\xe1\\x23\\x91\\x8a\\x6f\\xba\\x75\\xa2\\x20\\x77\\xf8\\x40\\xad\\xf8\\x29\\x28\\x1b\\x7a\\xea\\x60\\x43\\x7a\\xcd\\x58\\x41\\xe9\\x5c\\xa3\\xb1\\xf3\\xe4\\x4b\\x43\\xe5\\xda\\x12\\x53\\x1c\\xa4\\x5a\\x0b\\xe2\\x32\\xd3\\x3b\\x2a\\x8d\\x00\\x99\\x4d\\x9b\\x8b\\x4a\\x6a\\x6e\\x9d\\x2d\\x73\\xce\\x9d\\x69\\x39\\x74\\x49\\x22\\xa0\\xe2\\x12\\x53\\xca\\x37\\xbb\\xaa\\x26\\x2b\\xd5\\x13\\xe6\\xa1\\x53\\x23\\xc5\\x13\\xad\\x45\\x11\\x8a\\x82\\xae\\xe5\\xda\\xc9\\xbb\\xc7\\x2c\\xa1\\xc9\\xe6\\x54\\x92\\x63\\x4e\\x15\\xd0\\x15\\x66\\xad\\xea\\xb2\\x15\\x76\\xe4\\xc4\\x69\\x6b\\x17\\x1b\\x3a\\x96\\xab\\x93\\x27\\xb9\\xbb\\x3d\\xcc\\x55\\xb4\\xaf\\x7e\\x27\\x4e\\x72\\xef\\xcb\\xb4\\xff\\x59\\x5f\\xc5\\xfc\\xff\\xd9\\x57\\xb6\\x0f\\xea\\x2b\\x7d\\xc9\\x6a\\xaf\\x23\\xa7\\x73\\xd6\\x21\\xfe\\x18\\x34\\x8d\\x77\\xad\\xd5\\xa9\\xf2\\x9a\\x4c\\xd6\\xae\\x12\\x4d\\xcb\\xfe\\x8f\\x35\\x67\\x7a\\xfa\\xaa\\x90\\xf4\\x55\\x67\\xa5\\x91\\x76\\x55\\x61\\x5a\\xde\\xca\\x70\\x51\\xd1\\xe8\\xee\\x92\\x83\\x0f\\x4a\\x5d\\x85\\x7b\\x22\\x32\\xeb\\xf3\\x2c\\x95\\xc6\\x88\\x49\\x55\\xe5\\x5c\\x83\\xc9\\x55\\x68\\x22\\xde\\x9b\\xa2\\x66\\x5b\\xdb\\x6a\\xbd\\x86\\x76\\x95\\xae\\xc0\\x94\\x42\\xba\\xca\\x56\\x29\\x75\\x55\\xb4\\xa5\\x29\\xaf\\xa8\\x21\\x23\\x6c\\x92\\x8b\\x90\\xba\\x8a\\x63\\x7c\\x8a\\x2e\\xe1\\x2d\\xca\\x0f\\x25\\x71\\xb8\\x5c\\x1b\\x22\\x9b\\x48\\x35\\x02\\xaf\\x4b\\x5d\\xaf\\xd4\\x2b\\x33\\x75\\xcc\\x0b\\x73\\x0d\\x7f\\x8b\\xe0\\x41\\x28\\xf0\\x72\\x41\\x75\\x53\\x8a\\x44\\x1f\\x7d\\xcb\\xfa\\x83\\xf8\\x57\\x57\\x53\\x23\\x12\\xfa\\x90\\xd8\\x0f\\xa7\\x47\\xf4\\x70\\xb8\\x98\\xcc\\x1b\\x49\\x5c\\xee\\xc8\\xbc\\x8a\\xc5\\x85\\x43\\x2b\\xa4\\x5d\\x05\\x2c\\xaf\\x7e\\x0a\\x32\\x4a\\x3b\\x02\\xc4\\x61\\x81\\x1b\\x91\\x83\\x27\\xe2\\x2d\\xd9\\x25\\x83\\x2b\\x88\\xaa\\x54\\x95\\x32\\x5a\\xaf\\x53\\x19\\x53\\x8d\\x09\\xf1\\xd1\\x29\\xca\\x14\\x12\\x29\\xc7\\x5c\\x0d\\x4c\\x95\\xf1\\x85\\x68\\x01\\xb3\\x24\\x26\\x71\\x11\\x4c\\xaf\\x31\\x71\\x2b\\x8c\\x15\\x91\\x32\\x20\\x6e\\xe0\\x42\\x84\\x77\\xdb\\x0f\\xf4\\x59\\x05\\x77\\x06\\x6f\\xeb\\x3b\\xd4\\xda\\x76\\xa0\\xdf\\x2a\\xe0\\xef\\x0a\\xf6\\xbe\\x83\\x12\\x27\\x62\\x37\\x09\\xcd\\xf2\\x51\\x21\\x8a\\x95\\xe5\\x4b\\xe7\\x5a\\x5a\\xee\\x58\\x2c\\xe7\\xee\\x2a\\x5f\\x3c\\xdb\\xdc\\x7c\\x76\\xb1\\x9c\\xe9\\x9b\\x36\\x84\\xf8\\xf7\\x84\\x37\\x51\\x24\\xda\\xfe\\x12\\x00\\x06\\x6f\\x28\\xb7\\x02\\x01\\x48\\x91\\x70\\x12\\xe0\\xc1\\x67\\x4a\\x8c\\x62\\x68\\x08\\x76\\x16\\x5d\\x75\\x32\\xfe\\xc6\\x77\\xdd\\xf8\\x06\\xaa\\xee\\xbd\\xac\\x88\\x52\\xe9\\xa9\\xd7\\x86\\xe6\\x02\\x27\\x1d\\x60\\x95\\x7b\\x52\\x17\\x81\\x15\\xe7\\x26\\xa7\\x40\\x76\\x94\\xbd\\xaa\\x37\\x3f\\x01\\x82\\x0c\\x85\\xa6\\xd4\\x50\\x71\\xc7\\x8a\\xa8\\x3c\\x72\\x79\\xcb\\x16\\xee\\xe5\\xb2\\xb1\\x0a\\xcd\\x6c\\x9c\\xb9\\xc2\\xf8\\xfe\\x26\\xb2\\x72\\x00\\xea\\x20\\x6d\\xe8\\x65\\x63\\xf0\\xba\\x54\\xf9\\x40\\x0f\\xb1\\xa9\\x2f\\x6d\\xbf\\x74\\x88\\xbb\\x72\\x28\\xfe\\xda\\xab\\xae\\xba\\x80\\x54\\xee\\xda\\x5e\\x48\\xbe\\xbe\\x17\\x62\\x7c\\x8d\\xda\\x70\\x32\\xfe\\xc6\\x77\\xdd\\xf8\\x06\\x4f\\x2f\\x68\\xb4\\x12\\xc6\\xce\\x41\\x78\\x2f\\xa4\\x48\\x07\\xb5\\xce\\xd3\\x11\\xf0\\xa7\\x34\\xe3\\x77\\x53\\x17\\x9a\\xe2\\xb2\\x94\\x8a\\x18\\x4d\\x8c\\x21\\x25\\xd6\\x5f\\xfc\\xf4\\x88\\x38\\xbb\\x1b\\x42\\x8f\\x1f\\xc7\\x4b\\xa3\\x9b\\x01\\xfc\\x82\\x87\\x82\\x20\\x52\\x65\\x8c\\x59\\x3f\\xcb\\xec\\xee\\x1c\\xaa\\x11\\x1b\\xf9\\x47\\x3c\\x79\\xa4\\x2a\\x28\\x3e\\xa8\\x0c\\x10\\x97\\x07\\x32\\x94\\x0b\\x82\\x8c\\xa3\\x64\\xe0\\x9e\\x37\\x4e\\xee\\x73\\x51\\xb2\\xf7\\xce\\x87\\x71\\x51\\x91\\x14\\xb4\\xba\\x28\\x65\\x5a\\x1a\\x9d\\x9d\\x09\\x37\\x88\\x51\\xd7\\xfb\\x8c\\x25\\x1e\\x24\\xa6\\xa0\\x8c\\xb8\\x0e\\x20\\xc8\\x59\\xf1\\xbc\\xaa\\x72\\x73\\x4d\\xf5\\x44\\x59\\x4a\\x4a\\xd9\\x78\\x35\\x89\\xa6\\x4b\\xdd\\x16\\x46\\xe4\\x8d\\xa9\\x48\\x1b\\x0a\\x10\\xa6\\x2d\\x32\\x99\\x8a\\xc9\\x1a\\xf5\\x10\\xdc\\xb3\\x20\\xfe\\x29\\x58\\x93\\x53\\x6b\\x09\\x37\\x85\\x42\\x88\\x3e\\x24\\xd9\\x94\\x1a\\xeb\\xaf\\x7d\\x63\\x1e\\x6b\\xf7\\x7f\\x87\\xcc\\xda\\x73\\xdf\\xd9\\x0f\\xe3\\xfb\\xbf\\x73\\x07\\x99\\xbf\\xdf\\x3e\\x10\\xd9\\xf7\\xb1\\x1d\\xd5\\x64\\x57\\xd5\\x27\\xae\\xf4\\x3d\\x48\\x3f\\x3d\\xd8\\xf7\\x99\\x30\\xfc\\x8f\\xf7\\x63\\xcc\\x03\\xb5\\x26\\x3f\\x61\\x44\\x4a\\x7b\\xfe\\x31\\x3e\\x49\\xf2\\xf9\\x95\\xd2\\xbe\\x60\\x73\\xc3\\x44\\xfa\\xe2\\x8b\\xce\\x90\\x0c\\x00\\x99\\x1a\\x78\\x48\\x05\\x8e\\xf7\\x52\\x71\\xab\\x18\\xe0\\x40\\xa0\\x8e\\xa2\\x18\\xda\\x09\\xd2\\xcb\\xea\\x13\\xce\\x2a\\xdf\\x9e\\x4a\\x2b\\xd0\\x45\\xdc\\x07\\xfe\\x49\\xfe\\xc0\\x8b\\x23\\x3f\\x5a\\xa9\\x1f\\xb1\\x40\\x66\\x45\\x4f\\xd3\\xb2\\x31\\x61\\x23\\x12\\x71\\x5d\\x02\\x30\\x21\\xea\\x46\\x03\\x00\\xd7\\xf1\\xab\\x96\\xaa\\xaa\\xe7\\x1b\\x9b\\xe6\\xab\\x53\\xc9\\xdf\\xa6\\xc6\\x85\\xaa\\x54\\xae\\xef\\xde\\x79\\xda\\xfb\\xf6\\x5a\\x4b\\x44\\x26\\x41\\x91\\x1a\\x7c\\xbd\\xef\\x7e\\x38\\x4c\\x5f\\x6e\\xb7\\x97\\xeb\\x43\\x43\\xf5\\x15\\x76\\x5b\\xb9\\x3e\\x0c\\x9b\\x16\\xbf\\x78\\xb6\\xa3\\xe3\\xec\\x17\\x96\\xd4\\x8b\\x5f\\x60\\x1f\\x16\\x5f\\x0d\\xc7\\xff\\xba\\xa6\\xef\\x1f\\xe4\\x13\\xdc\\xdf\\x6a\\xb9\\xb4\\xbb\\xb1\\x71\\xf7\\xa5\\x16\\x4d\\xb3\\xf4\\xa1\\x19\\xf1\\x84\\xc7\\x6b\\x91\\x6f\\x92\\xe5\\x33\\xbe\\x2a\\x2d\\x2a\\x47\\x2b\\x52\\x34\\x98\\x09\\x81\\x20\\x50\\x9e\\x15\\x19\\x27\\x43\\x53\\x88\\x23\\x96\\xc5\\x09\\x84\\x79\\x1e\\x4f\\xfa\\x30\\x57\\xb4\\x83\\xf8\\x7e\\x09\\xd8\\x10\\xcf\\x6e\\x80\\x25\\xe9\\x7a\\x6e\\x81\\xdc\\x20\\xe3\\xe4\\x5b\\xc8\\x1d\\x78\\xf9\\x86\\x37\\x90\\xbe\\xa3\\x9c\\x60\\x5e\\x54\\x36\\xc3\\x09\\x90\\x5f\\xf8\\x10\\x66\\x30\\x7c\\x71\\x1b\\xf9\\x81\\xe7\\xff\\x63\\x6a\\x30\\xfe\\xa7\\xd0\\xfb\\x2f\\x07\\x0c\\xc1\\xa3\\xff\\x11\\x41\\x18\\x4f\\xb0\\x70\\x3d\\x7c\\x2d\\xff\\x3d\\xd6\\x5f\\x89\\xc8\\x8a\\x7e\\xc6\\x26\\x21\\x6d\\x3e\\xcf\\xd3\\xfe\\x92\\x73\\x72\\xda\\x5f\\x32\\x19\\xed\\x2f\\x41\\xc0\\x93\\xb4\\xd1\\x14\\xfe\\xc1\\xa6\\x91\\xd0\\x4f\\x3a\\x22\\x49\\xf0\\xce\\xc6\\xcc\\x1b\\xdf\\x85\\x97\\x3f\\xe8\\xa6\\x68\\xcf\\x4d\\xb0\\x24\\xdd\\xc3\\x2d\\x7c\\xe8\\x4d\\x4e\\xd3\\xb5\\xd7\\xcb\\x39\\xd9\\x96\\x0f\\xbe\\x41\\x9a\\xd7\\x69\\x69\\xda\\xeb\\xc6\\x46\\x5a\\x0f\\x6f\\xc2\\x13\\x8c\\x1f\\x5c\\x23\\x3f\\xee\\x9f\\xfa\\x16\\xc6\\x9b\\x91\\x04\\x73\\x33\\xb0\\xf9\\xdf\\x87\\x60\\x19\\x46\\xbc\\x0b\\xe3\\x4d\\x38\\x82\\x39\\xd4\\x4c\\xec\\x93\\xfb\\xe4\\x16\\x22\\x2f\\x36\\xa1\\x2d\\x68\\xca\\x39\\xde\\x06\\xfe\\x21\\x5b\\x40\\xc6\\x87\\x49\\xf2\\x33\\x24\\xd8\\x3f\\x38\\xc4\\x7f\\x81\\x32\\x58\\xf3\\x32\\x61\\x01\\x05\\xa1\\x80\\xe0\\xa0\\x80\\xd1\\x50\\x08\\x0e\\x04\\x7f\\x14\\xec\\x3f\\xea\\xc7\\xd6\\x7e\\x86\\xa6\\x66\\x79\\x2b\\x58\\x3c\\x18\\x5d\\xfd\\x2b\\x2b\\xa7\\x26\\x2b\\x37\\x55\\x8e\\xf4\\xf7\\x76\\xb4\\x37\\x35\\xd4\\x54\\xd1\\x30\\x53\\x16\\x1f\\x16\\x26\\x93\\x38\\xc8\\x14\\xd7\\x58\\x38\\x15\\x52\\x24\\x30\\x3d\\x71\\xbd\\xa1\\x56\\x41\\xf7\\x3b\\x11\\x51\\x74\\x16\\x33\\x61\\x4c\\xd4\\x3d\\x4f\\xc2\\x59\\x25\\x90\\x54\\xb2\\x0e\\xab\\x92\\xea\\x8a\\x5c\\x69\\xeb\\xf6\\x46\\x9d\\xba\\x76\\xa1\\x91\\xa0\\x6e\\x8c\\xa1\\xa1\\x46\\xc2\\x48\\xd3\\xb8\\x50\\xab\\xd6\\x35\\xae\\xb5\\x41\\x6e\\x7d\\x56\\x54\\x78\\x5a\\x85\\xd5\\x5a\\x91\\x16\\x4e\\x2d\\xa4\\xe9\\x15\\x16\\x6b\\x45\\x7a\\x78\\x74\\x56\\xbd\\xe3\\x64\\x52\\x7a\\x55\\x71\\x8e\\xdd\\x96\\x90\\x6c\\x8c\\x0f\\x01\\xdc\\x0d\\x71\\x24\\x4f\\x75\\x6a\\x81\\x23\\x27\\xbf\\xdc\\x20\\x4e\\xa5\\xc4\\xe3\\x41\\x50\\x24\\x18\\x94\\xc2\\xd3\\xb8\\x6a\\xeb\\xdd\\x6d\\xee\\xed\\x0d\\xb7\\x2f\\x55\\x26\\x5a\\x29\\xde\\xd0\\x9a\\x58\\xb9\\x74\\x7b\\x03\\x3e\\xda\\x76\\xf7\\xd6\\x2a\\x3c\\x8e\\xf3\\xfb\\x16\\xf3\\xdd\\xdb\\x49\\x18\\x4b\\x5e\\x6e\\xe7\\xb4\\x19\\xdc\\x22\\x67\\x9e\\xee\\xcc\\xcd\\xeb\\x99\\xb1\\xe2\\xa3\\xf9\\x8b\\x7d\\xf9\\x18\\xaa\\xdb\\x63\\xd4\\x06\\x12\\x15\\x9c\\x66\\x4f\\x08\\x4f\\xce\\x6a\\x29\\x54\\xc7\\xa8\\xd3\\x35\\x31\\x20\\x7e\\x27\\xb5\\x4a\\x3f\\x32\\x11\\x97\\x63\\x49\\x0b\\xa6\\xb2\\xbc\\x87\\x72\\x7c\\x09\\xef\\x22\\x27\\xea\\x27\\x33\\xf8\\x79\\x67\\x78\\x03\\xf8\\x07\\x37\\x01\\xf2\\x9f\\x22\\x63\\x13\\x42\\xc6\\x86\\xaf\\x93\\x18\\x5a\\x0b\\x51\\x70\\x90\\x7f\\x50\\xf0\\x95\\x21\\x0a\\x81\\x20\\xe4\\x8f\\x82\\xfc\\x47\\x89\\xfd\\x29\\xb0\\x8f\\x6c\\xc7\\x12\\x5d\\x57\\xc6\\x28\\xf9\\xea\\x31\\x8a\\x77\\xe6\\x5f\\x7b\\x3b\\x0a\\x44\\x01\\x24\\xdd\\xc5\\xa8\\xaf\\x98\\x0f\\xbc\\xb9\\xc7\\x19\\x57\\x5a\\xba\\x69\\xa4\\xb4\\xbf\\xb4\\xaf\\xb3\\xbd\\xb6\\xba\\xa2\\x4c\\x1a\\x61\\x4d\\x5a\\x58\\xe8\\x55\\x23\\x4c\\x53\\x30\\x5f\\x19\\xe0\\xa8\\x0d\\x03\\x4c\\x21\\x27\\x00\\x0d\\x40\\xf2\\xbf\\xd7\\x0e\\xb0\\x89\\xbb\\x66\\x7c\\xad\\x9e\\xf1\\x25\\xb8\\x14\\xae\\xb1\\x79\\x85\\x0c\\x6f\\xcd\\x96\\xfa\\x81\\x6d\\x49\\x49\\xdb\\x06\\x5c\\xf3\\x35\\x64\\x68\\x57\\x9a\\xed\\xb5\\x26\\x32\\xb2\\x65\\x66\\x4b\\x65\\x46\\x04\\x6c\\x8b\\x34\\x56\\x5a\\xcc\\xe5\\x86\\x88\\xa8\\xac\\x5a\\xfb\\x3d\\xc9\\xa5\\x63\\x5d\\xcd\\x99\\x29\\x99\\x49\\x61\\x00\\x3d\\x90\\xe0\\x68\\xb2\\xa8\\x8b\\xf3\\xf2\\x8a\\x2a\\xd3\\xc5\\x46\\x55\\x22\\x0c\\x01\\x28\\x12\\x0d\\x4a\\xde\\x85\\x8b\\x36\\x9f\\x6a\\x17\\x1f\\x6e\\xb8\\x65\\xb2\\x70\\xa4\\xb1\\x71\\xa4\\x70\\xf2\\x96\\x06\\xe8\\x6b\\x3f\\xb5\\xb9\\x08\\x4f\\x60\\x73\\xf3\\xe6\\x7c\\xf1\\x61\\xeb\\x68\\xa3\\x39\\xcb\\x35\\x9c\\x0d\\x51\\xe2\\x6f\\xb2\\x87\\x5d\\x59\\xe6\\xc6\\x51\\x2b\\xf4\\xe5\\x6f\\x6e\\x36\\x63\\x18\\xe8\\x80\\xec\\x02\\xb3\\xd2\\x60\\x4f\\x0a\\x4f\\x36\\xb7\\x16\\xa4\\xd2\\x21\\x8d\\x15\\xbf\\x9a\\x5a\\x69\\x18\\x99\\x88\\xcf\\xc9\\xa6\\x23\\x4a\\xf7\\x4f\\xab\\x34\\x3e\\x5b\\xf6\\x67\\x24\\x47\\xb9\\x68\\xeb\\x4b\\x11\\x20\\x97\\x79\\x73\\x19\\x69\\x11\\x06\\x19\\xe0\\x29\\xe4\\xcd\\xe2\\x1b\\x18\\xe0\\xc7\\x31\\x23\\x14\\x50\\x59\\x22\\x80\\x67\\x35\\xd0\\x49\\xd7\\xc9\\x16\\x6e\\x7e\\x61\\x8f\\x93\\xe0\\x68\\xfd\\x72\\xfd\\x72\\xad\\xd9\\xd4\\xa1\\x40\\x33\\xc6\\x78\\xec\\x8b\\x4a\\x15\\x61\\xfd\\x53\\x0b\\x1f\\xd1\\x39\\x02\\x6d\\x78\\x18\\x44\\x71\\xe6\\xaf\\x9c\\xe9\\xa3\\x7b\\x49\\x64\\x7f\\x6e\\x59\\x5a\\xfa\\xd3\\xff\\xcd\\x53\\x82\\x25\\x3f\\x89\\xf0\\x2c\\xeb\\x9b\\x35\\x5f\\xdf\\x50\\x61\\xae\\xf7\\xf4\\x0d\\x07\\x00\\x1e\\x68\\xbe\\xd4\\xe8\\x98\\x6b\\x7b\\xc7\\xe0\\xed\\x9d\\x1b\\x5f\\xfa\\x91\\xfb\\x47\\xf5\\x51\\x9d\\x2f\\x90\\x89\\x0f\\x62\\xf1\\xb7\\x73\\xe2\\xfb\\x5c\\xcf\\x47\\x75\\xc3\\x08\\xcf\\xb6\\x1c\\x38\\x20\\xfe\\xe8\\xff\\xe6\\x8b\\x01\\xf4\\xb0\\x78\\x86\\xef\\x27\\x3e\\x8e\\x0c\\x74\\xc1\\x97\\x83\\xd9\\x9f\\xd2\\x33\\x79\\x63\\x2a\\x37\\xec\\x2d\\x3d\\x59\\x99\\xe2\\x90\\x37\\xed\\x61\\x9c\\xef\\x22\\x29\\x8f\\xb2\\xef\\x5a\\x49\\x7f\\xfb\\xf0\\x62\\x6e\\x56\\x02\\x8d\\x5f\\x26\\x00\\xfb\\x2c\\x06\\x99\\x02\\x82\\x1c\\x13\\xec\\xd7\\x7b\\x1d\\x22\\x89\\x9c\\xb6\\xe2\\x3f\\x6e\\x6b\\x3e\\x38\\xd5\\x60\\x8d\\x8d\\x77\\xb4\\x6c\\xb9\\xb5\\x6d\\xf3\\x63\\x5b\\x9d\\xdc\\x36\\x99\\xa9\\x75\\x47\\x6b\\xd9\\x4c\\x5b\\xa1\\x3e\\x22\\xc2\\x50\\xd2\\xb5\\x50\\xed\\x12\\xcf\\x40\\xbf\\x5f\\xc9\\xc8\\x9e\\xd3\\xf7\\x36\\xde\\xdf\\xf2\\xc0\\xd9\\xbd\\x03\\x39\\xd5\\x84\\x05\\xbc\\xe9\\x96\\xb1\\xbc\\xac\\x96\\xb9\\xdd\\x87\\x4b\\x1f\\x28\\x3d\\xba\\x67\\xa1\\xdd\\x02\\x12\\xd6\\x91\\xf4\\x4b\\x36\\xdf\\x88\\x34\\x1f\\xd6\\x2f\\xc9\\xff\\x87\\x7e\\x49\\x96\\xfa\\xe5\\xc3\\x8b\\xb9\\x59\\x09\\xb4\\x5f\\x48\\x4e\\x54\\xa3\\xaf\\x5f\\xb8\\xeb\\x9c\\xf3\\x12\\x7f\\xa4\\x15\\xff\\x62\\xdb\\xc4\\x85\\xe9\\x9c\\xc2\\xad\\x4f\\x2d\\xf6\\x9c\\x9b\\x29\\xc2\\xcb\\xd8\\xd8\\xb0\\xd9\\xd9\\xb3\\xaf\\x2d\\xcd\\xd0\\xbe\\xbf\\xa7\\x8e\\xf6\\x47\\xc0\\xd0\\x99\\xd7\\xc6\\xd3\\xa7\\xde\\xbc\\xb3\\x2f\\x7f\\x8a\\xf8\\xe2\\xa7\\xeb\\x8d\\x0d\\xbb\\x2e\\x36\\xa7\\xb7\\x5d\\xd8\\x59\\x8f\\x25\\x4e\\x6a\\xf2\\xf8\\x43\\x42\\x31\\x8a\\xa0\\x98\\xcc\\x08\\x82\\x15\\xa5\\x39\\x8b\\xfc\\xfd\\xe4\\x14\\xe0\\x1e\\x8a\\xc0\\x9b\\xba\\x80\\x81\\x3a\\x62\\x23\\x29\\xe4\\x0f\\x04\\xb9\\x96\\x23\\xf6\\x38\\x87\\xc0\\x7e\\xad\\x1c\\xf9\\x8e\\xeb\\x41\\x95\\x23\\xfe\\xf7\\x6b\\x47\\x7f\\x26\\xfe\\xc4\\x0e\\xda\\x1f\\x8b\\xef\\x38\\x40\\xfd\\xd5\\x43\\x7f\\x02\\x6d\\xbe\\xf8\\x53\\x78\\xf6\\xa9\\xa1\\x27\\xc4\\xe7\\xe0\\xe4\\x93\\x83\\x4f\\xc2\\xad\\x4f\\x0e\\x3f\\x09\\x53\\x62\\xef\\x93\\x83\\x4f\\x48\\x79\\x89\\xf8\\xcf\\x70\\x1a\\xe1\\xef\\x48\\x8e\\x8e\\x4b\\xea\\x54\\x0c\\xa3\\x88\\xa6\\x70\\x13\\x0e\\x4d\\xf2\\xc0\\x71\\x92\\xf5\\x98\\xf3\\x32\\x1e\\x28\\x7d\\xe7\\xd1\\xf2\\x35\\xa7\\xe9\\xbe\\x32\\x9a\\xe5\\x96\\xb8\\xfe\\xac\\x33\\xfe\\xca\\x09\\x44\\x4f\\x74\\x20\\x00\\xae\\x97\\x5c\\x03\\x5c\\x23\\xe9\\x72\\x46\\xbb\\x21\\x47\\x72\\xf2\\x4a\\x0b\\x14\\xae\\x42\\x5f\\x67\\xe2\\xdf\\x06\\xc3\\x02\\x88\\x5b\\x84\\x82\\x9d\\x5f\\x99\\x7d\\x9d\\xd5\\xf7\\x2f\\x82\\x92\\xfb\\x8a\\x2c\\x0a\\xc5\\x4a\\xa8\\x36\\x52\\x9c\\x14\\x55\\x8a\\x31\\xea\\x22\\x7f\\x10\\xc3\\xff\\x20\\xdc\\x04\\x28\\x26\\x3a\\x42\\x11\\x12\\xec\\x27\\x43\\xb1\\x10\\x2b\\x63\\x36\\x2a\\xcf\\xe4\\x26\\x45\\xeb\\x74\\x12\\xb4\\xd8\\x0e\\xa1\\xe6\\x36\\x57\\x55\\x55\\x5d\\x3a\\xc9\\x69\\xa9\\x86\\x7e\\x68\\x2d\\xb3\\x8f\\x6e\\xde\\x51\\x9f\\x24\\x2c\\xc7\\x6a\\xd2\\xd5\\x31\\x49\\xf9\\x6d\\x64\\x6d\\xa8\\x6c\\x30\\x17\\x64\\x43\\x07\\x7d\\x3e\\xec\\x10\\x4c\\xb8\\x4c\\x36\\x82\\x04\\x4f\\xde\\x64\\xc4\\x33\\x2e\\xbc\\x69\\x05\\x10\\x8c\\x3b\\x90\\x1a\\x2b\\xe5\\xb0\\xe3\\xd6\\xe2\\x3c\\xe1\\xc7\\x87\\x8f\\x6f\\x37\\x21\\x76\\xcf\\x4f\\xc8\\x3d\\x8f\\xd2\\x7b\\x28\\xcf\\xb2\\x80\\x81\\x93\\x6e\\x89\\x60\\xb7\\xe8\\x1d\\xe4\\x26\\xac\\xcc\\x2d\\xba\\x4d\\x30\\x99\\xb6\\x1f\\x3f\\x8c\\xfc\\xc4\\x5f\\x89\\x6f\\xc9\\x0e\\x0a\\xcf\\x30\\x3e\\xf7\\x3c\\xe4\\x22\\xb3\\x73\\x11\\x1d\\x44\\x77\\x41\\x91\\xa4\\x39\\x4c\\xa4\\x70\\x18\\x30\\x8f\\x81\\x5f\\xd0\\x12\\x12\\x53\\xb9\\x20\\xc8\\xfc\\x64\\x82\\xdf\\x82\\x2e\\x3e\\x36\\x35\\x50\\xf0\\x0f\\x08\\x0a\\xf0\\x0f\\x5a\\xd0\\x44\\x60\\x82\\x3c\\x5e\\x8e\\x04\\x3e\\x1a\\x28\\x56\\x65\\x34\\x06\\xfc\\xe2\\x80\\xcc\\xac\\x80\\x51\\x62\\xad\\x48\\x82\\x90\\xe0\\xa0\\x90\\x51\\x14\\x86\\xc8\\x8c\\x0b\\x1f\\xf5\\x72\\xbc\\x44\\xbb\\xf4\\xc9\\x89\\xea\\x50\\x21\\x38\\x58\\x19\\x4c\\x86\\x6c\\xfa\\xa3\\x3c\\xc8\\x73\\x47\\x48\\x58\\x48\\x70\\xd8\\x7f\\xf8\\x54\\xca\\xf6\\x34\\x7c\\xe8\\xd0\\xd2\\xd2\\xe0\\x60\\x7d\\x7d\\x7e\\xbe\\xc1\\x10\\x19\\x89\\xd0\\xa1\\xbb\\x0e\\xdd\\x75\\xc7\\xd9\\x53\\x27\\x6f\\x3d\\xb6\\x74\\x70\\xe9\\xe0\\xfe\\xbd\\x3b\\x77\\xac\\xad\\x0e\\x2e\\x0e\\x2e\\xce\\xcf\\x4d\\x4f\\x8d\\x6d\\xaa\\x1f\\xa8\\x1f\\xe8\\xeb\\xe9\\xea\\x6c\\x6d\\xce\\x77\\xe5\\xbb\\x6a\\xab\\xcb\\xcb\\x9c\\xc5\\x86\\x3c\\x43\\x9e\\xc3\\x9e\\x6d\\x36\\x65\\x44\\xea\\x23\\xf5\\x52\\xc6\\x4f\\x1a\\x40\\xa7\\x89\\xd4\\x18\\xe8\\x94\\x2a\\xe6\\xae\\xbc\\xc3\\x32\\xf9\\x35\\x5f\\x3d\\xe9\\x3f\\x36\\x9e\\x8c\\xbe\\xee\\x52\\x9d\\x6e\\xc3\\xd7\\x1b\\x5f\\x1b\\x71\\xcd\\xc9\\xef\\x42\\x4a\\x4e\\x7d\\x96\\xa9\\xde\\x91\\x82\\x17\\x70\\x50\\x8c\\x26\\xd6\\x9a\\x81\\xe1\\x1d\\x48\\x71\\xd4\\x9b\\x4c\\xf5\\xb9\\x29\\x78\\x11\\x07\\x29\\xb5\\xb1\\x96\\x0c\\x5c\\xcb\\x8e\\x0d\\x2c\\xf1\\x0b\\xd2\\x91\\x4c\\x2c\\x7e\\xe5\\xba\\x43\\xee\\xa6\\x0d\\xc5\\x71\\x26\\x0b\\x3d\\xd4\\x80\\xe9\\x55\\x57\\x3f\\x41\\x7c\\x87\\x1c\\x74\\x49\\xb7\\x06\\xc6\\x68\\xe2\\x2c\\x19\\x9c\\x9d\\x1e\\xb9\\xe6\\x99\\xfc\\x5f\\x8c\\x95\\xd9\\xf1\\x94\\xb5\\x3e\\x4a\\x93\\x10\\x56\\x98\\x26\\xfe\\x26\\xbd\\xea\\xaa\\xef\\xfe\\xf4\\xfb\\x44\\xa7\\xf4\\xcd\\xfd\\xaf\\x8d\\xdf\\xc4\\x77\\x8d\\x55\\xd9\\x71\\x71\\xd9\\x55\\xc6\\xf4\\x82\\x82\\x74\\x21\\x8e\\x96\\x74\\xf3\\x3b\\xaf\\x9c\\x45\\x7e\\xa8\\x51\\x1c\\x95\\x9f\\x14\\xbe\\x80\\x78\\xe4\\x8f\\x42\\x98\\x17\\x2d\\x11\\xa5\\x92\\xf9\\x3e\\xe7\\x4c\\x56\\xa5\\x44\\x73\\x1c\\xd6\\xa7\\x26\\xc6\\x28\\x89\\x40\\x0c\\x25\\x73\\x26\\x20\\x18\\x38\\x9d\\x36\\x21\\x9e\\x47\\x40\\xcd\\x21\\x26\\x2a\\x86\\x04\\xf0\\x90\\x33\\xd3\\x48\\x72\\x80\\x2b\\xa2\\x3d\\x0a\\x61\\x72\\x0e\\x30\\x37\\xb2\\xf1\\x38\\x71\\xdc\\x0a\\x02\\x42\\x82\\xbf\\x40\\x84\\x2b\\xe2\\x29\\x28\\x87\\xbc\\x7d\\x82\\x92\\x48\\x52\\x4e\\x4f\\x84\\x28\\x38\\x84\\x28\\x2d\\x91\\xa4\\x76\\x01\\x1c\\x5a\\x52\\xb8\\x5c\\xd0\\x6b\\x39\\x3d\\xe7\\x88\\x00\\x65\\x84\\x9c\\xe3\\x5b\\x02\\x77\\x0c\\x57\\xe5\\x07\\x91\\x7f\\x70\\x52\\x30\\x34\\x88\\x8f\\xbc\\xbf\\x35\\x58\\x7c\\x01\\x7a\\xb9\\x0b\\x18\\x4a\\x2b\\xc4\\x1f\\xae\\xff\\x05\\x8b\\x9f\\xa9\\x04\\x9d\\x51\\x71\\xae\\xf4\\x0b\\xdc\\xb0\\xe2\\x8e\\xb2\\xcf\\x17\\x86\\x88\\x1f\\x87\\x11\\xfe\\x81\\x10\\x68\\x15\\xef\\x17\\x15\\x41\\xbb\\x36\\x55\\x17\\xd0\\x7f\\xe0\\xe9\\xb0\\x7b\\x2a\\xbe\\xb4\\x7e\\x52\\x71\\x4f\\xe5\\x97\\xf0\\xbb\\x18\\xaa\\x2a\\xc5\\xef\\x91\\xf4\\x8d\\xe2\\xeb\\xd5\\x60\\x94\\xec\\x41\\x3f\\x40\\x88\\xdf\\xc2\\x38\\xb3\\xc3\\x51\\x32\\xc5\\x0d\\x71\\x98\\x7a\\xc7\\x00\\xb1\\xa4\\x21\\x02\\x60\\xc4\\x61\\x5f\\xb0\\x91\\x37\\x58\\x94\\xe7\\x93\\x13\\xa3\\x22\\xf8\\x70\\x9e\\x64\\xb8\\x92\\xd1\\x65\\x42\\x0e\\x0e\\x06\\xfa\\xf3\\x20\\x9c\\xb4\\xde\\x68\\x3e\\x15\\x0f\\x9d\\xe2\\xe7\\x3a\\xc5\\x13\\x6b\\xf0\\x95\\xe1\\x47\\x77\\xd7\\xd4\\xec\\x7e\\x6c\\x48\\x7c\\x1a\\x5a\\x6b\\x76\\xf5\\xdb\\x6d\\xfd\\xbb\\x6a\\xc9\\xe7\\x7f\\xd9\\xe0\\x61\\x9b\\xf8\\x9a\\xfb\\x31\\xe1\\x59\\x5c\\x38\\x7f\\x49\\x62\\x76\\x19\\x07\\x53\\xeb\\xaa\\xcb\\xb5\\xa3\\x23\\x8b\\x3c\\x5f\\xca\\xf1\\xc9\\x37\\x92\\x4f\\xb1\\x28\\x13\\x3d\\xed\\x0c\\xd5\\x6a\\x14\\x41\\x1c\\x26\\x2f\\x3d\\x6c\\xe0\\x33\\x8e\\xf7\\xe5\\xfc\\x8a\\xb9\\x62\\x3a\\x77\\x31\\x00\\xbb\\xd7\\x5c\\x95\\x7c\\x95\\x8f\\x21\\xf9\\x46\\x97\\x45\\x7e\\x58\\x49\\x1f\\x5a\\x48\\x4f\\x8f\\x37\\x67\\xa8\\x81\\x1a\\xec\\x05\\xd2\\x37\\xda\\x0d\\x9c\\x6e\\xca\\x0f\\xca\\x1b\\xca\\xfd\\xb3\\x49\\x7c\\xbb\\x09\\xc6\\xad\\xd3\\xf7\\x6f\\x19\\x7f\\x2c\\x6f\\x6d\\x41\\xc8\\x7b\\x64\\x6a\\xfe\\x81\\x29\\xeb\\x9a\\xa6\\x79\\x6f\\xbf\\xad\\xcf\\x55\\x10\\x99\\x7e\\x61\\xbc\\x6f\\x6f\\x93\\x26\\xb9\\x04\\xa6\\x8a\\xbf\\x42\\x53\\x88\\x36\\x12\\x46\\x02\\xe1\\x87\\xe7\\x9a\\x7d\\x19\\x44\\x13\\xed\\xb5\\x19\\xee\\xf7\\xda\\x37\\xd1\\x0c\\xa2\\x6c\\x0d\\x7b\\x13\\x21\\xbe\\x54\\x1e\\x8e\\xe4\\x34\\xb7\\x22\\xc5\\x5d\\xd1\\xf5\\x5d\\x9a\\xcb\\x37\\x8c\\x15\\x50\\x58\\xf9\\xd2\\xf5\\x7f\\xaf\\x71\\xb2\\x35\\x89\\xb7\\x1c\\x36\\x21\\xe4\\xe5\\xc1\\xd7\\x08\\x67\\x91\\x9c\\x66\\xfd\\x50\\xfb\\xec\\xde\\xd7\\x46\\x37\\xd1\\x57\\x82\\x3e\\xe4\\xda\\xe3\\x3d\\x2f\\x5f\\xf7\\x18\\x8d\\x3b\\x6a\\x27\\xfe\\xed\\x0e\\x29\\xa4\\x01\\x7a\\x68\\x1e\\x48\\xf1\\x77\\xfc\\x20\\x99\\x8b\\x89\\x2c\\x87\\x2e\\x20\\x5e\\x00\\x7e\\x94\\x31\\xb8\\xe3\\x21\\xe4\\xe3\\x72\\xf0\\x62\\xfb\\x09\\x41\\x89\\xca\\x4b\\xe5\\x70\\x1d\\x3d\\x89\\x9a\\x45\\x4d\\x94\\xb8\\x43\\xde\\x3e\\xf6\\x5f\\x77\\x34\\x15\\x6e\\x7d\\x62\\x1e\\xba\\xf7\\xb5\\xe9\\x8b\\x56\\x9e\\x9c\\x7b\\x9b\\x91\\xf4\\xbb\\xff\\xdd\\x74\\xee\\x3b\\x87\\x97\\xde\\x3c\\xdd\\xce\\x6d\\xc2\\x35\\x6b\\xf7\\xf5\\xcc\\x3e\\xb5\\x56\\xea\\xd6\\x31\\xfb\\xf9\\x57\\xc5\\xbf\\xf0\\x14\\xd9\\x9e\\x48\\xd9\\x0d\\x42\\x82\\x31\\x57\\xed\\x4b\\x52\\xec\\xc1\\xe5\\x93\\x66\\x31\\x1f\\x55\\x22\\x4d\\x62\\xac\\x54\\x11\\xf5\\x2d\\xda\\x5b\\x0d\\xa5\\xa7\\x1a\\x8e\\x1c\\x5f\\x35\\xd4\\x6e\\xf5\\xb7\\xe7\\xbf\\x78\\x77\\x2f\\xe4\\x4e\\x9d\\xeb\\x55\\x55\\x2d\\xb5\\x64\\x02\\xd4\\x6e\\xbf\\xd4\\xfa\\x6d\\x16\\xfa\\x25\\x5e\\x72\\x2c\\x3c\\xbd\\xad\\xf6\\xc4\\x4a\\x47\\xf8\\x40\\x58\\x61\\xe7\\x7c\\xc5\\xd0\\x91\\x0e\\x83\\xfb\\x5f\\x1e\\x1c\\xff\\xcf\\xc9\\x13\\x3f\\x4b\\x6a\\x15\\x89\\x8a\\x9c\\xf9\\x00\\x20\\xa3\\xf9\\x64\\x64\\x74\\x63\\x27\\x83\\x91\\x00\\x7f\\x2c\\x08\\x2c\\x40\\x9d\\xb1\\xb9\\x10\\x6c\\xbf\\x2f\\xb0\\x26\\x12\\x45\\x2a\\x3c\\x3f\\xe1\\x14\\x03\\xe0\\x8f\\xd5\\x12\\x0c\\x80\\xce\\x41\\xe9\\x3f\\xe0\\x8f\\x89\\x7b\\xe0\\xf5\\x3b\\xc4\\xb1\\xba\\xf1\\x63\\xdb\\xb6\\x1d\\x1b\\x6f\\x05\\x12\\x0b\\xed\\x2e\\x75\\x87\\xe2\\x17\\x08\\x7e\\x32\\xc9\\xdd\\x40\\xbe\\x4d\\x41\\x9c\\xf8\\x4b\\x7c\\x37\\xab\\xcb\\x77\\xa8\\xdf\\x9f\\xc6\\xe8\\xd1\\x2c\\xf9\\xd7\\xd6\\x85\\xcc\\x0c\\x8c\\xe4\\x58\\xaa\\xd3\\x87\\xd6\\x24\\x4a\\xed\\x8b\\x05\\xb5\\x46\\x91\\x9a\\xd8\\xc5\\xc7\\xe0\\xd6\\x8b\\xe2\\x8b\\xae\\xf1\\x03\\xdb\\xb7\\x1f\\x18\\x6f\\x80\\x64\\x02\\x3b\\xf8\\xbb\\xfb\\x9b\\xf0\\xc7\\xdf\\xff\\x5e\\x8a\\x2d\\xfa\\xd3\\x9f\\xe0\\xa7\\x9e\\x9c\\x9e\\x17\\x68\\xac\\x31\\xc5\\xca\\x05\\x5d\\x1d\\xb1\\x89\\x31\\xd7\\x23\\x05\\xae\\xca\\x7c\\xc1\\x4b\\x1b\\x91\\x20\\x34\\x12\\xc6\\x1b\\xbf\\x74\\x60\\xef\\x8a\\xf8\\x24\\x7c\\xe5\\x00\\xcc\\x1c\\x15\\xb7\\xc3\\x53\\xa7\\x29\\x90\\x80\\xf0\\x78\\xb8\\x37\\xe1\\x4b\\x6e\\x8b\\x5b\\xca\\xc5\\xdf\\x4d\\x9e\\xf5\\x31\\x3e\\xff\\xa6\\xcf\\x8a\\xf9\\x08\\xcf\\x7a\\xea\\x8e\\x55\\xf1\\x15\\xf8\\xf4\\x9d\\x60\\x3b\\x27\\xde\\x09\\x77\\x9e\\xa7\\x91\\x40\\x84\\x25\\x92\\xc5\\x4b\\xfd\\xcd\\xfd\\x2d\\x89\\x4f\\x9b\\x3c\\xeb\\x61\\xc6\\x01\\x40\\xe3\\xa5\\x10\\xa2\\xda\\x1e\\x7d\\x0a\\xf4\\x48\\x6c\\x2b\\x3e\\xfa\\x10\\xdf\\x53\\xa4\\xcc\\xb9\\x0a\\x4f\\xac\\xd1\\x37\\xe0\\xbf\\x30\\x88\\x4b\\xcb\\x62\\xfa\\xd6\\xad\\x5c\\x04\\xbe\\x38\\xf1\\xef\\x97\\x69\\x93\\xd8\\x7c\\x1e\\x27\\xc5\\xdd\\xcf\\xe7\\x7f\\x40\\xd9\\x31\\x1f\\x5a\\xf6\\x8f\\xe1\\xc7\\x04\\xb4\\x70\\x6a\\x9b\\xa8\\x21\\x81\\x4c\\x1d\\xf0\\x8b\\xc9\\xf5\\x4c\\x29\\x98\\x09\\x01\\x9a\\x16\\x7f\\xcb\\xc6\\x43\\xcd\\xf2\\xdc\\x20\\xc4\\x82\\x53\\xbd\\x09\\x81\\x04\\x81\\xcd\\x4b\\x89\\xf6\\x46\\xc9\\xb3\\x27\\x64\\x28\\x62\\x52\\x98\\x69\\xd3\\xea\\xe3\\x20\\x15\\xec\\x36\\x0f\\xee\\x9d\\x3d\\x12\\xff\\xc8\\x31\\x77\\xe7\\x40\\x7a\\x6a\\xe3\\xde\\x7e\\xc8\\x28\\x33\\x27\\x85\\xcb\\x03\\x63\\xd3\\x8a\\xda\\x72\\x1c\\x5b\\xc5\\x95\\x65\\xbc\\xc4\\x95\\xc3\\xa6\\xfb\\xbf\\x3e\\x33\\xf2\\xe9\\x7b\\x86\\xb9\\x4d\\x90\\x56\\xde\\x3d\\x32\\x9e\\x45\\x42\\xed\\x7a\\xcb\\x74\\xe0\\xd6\\x4b\\x42\\x8b\\xc5\\xbf\\xfc\\x95\\xe1\\x85\\x58\\xfc\\x47\\x50\\x20\\xc6\\xd5\\xde\\x94\\x7e\\x88\\xe3\\x58\\x80\\x50\\x8c\\x17\\x02\\x9b\\x9c\\xc4\\x5e\\xe3\\x18\\x65\\x54\\x0a\\x5d\\xa7\\xc1\\x7a\\x35\\x39\\xea\\x86\\x8a\\xbd\\x92\\x33\\x74\\x7a\\x93\\x25\\xa5\\x7a\\xa1\\x39\\x39\\xbf\\xc9\\x1c\\x4d\\x9c\\x38\\x95\\x39\\x2b\\xe2\\x2b\\x2b\\xd8\\x8a\\x17\\xa1\\x7a\\xe7\\x63\\x23\\x85\\xb7\\xec\\x1c\\x0a\\xef\\x0f\\xaf\\xec\\x9f\\x71\\xd4\\x11\\xa3\\x36\\xb8\\xff\\xe5\\x0b\\xed\\x44\\x18\\xcd\\x5e\\xfe\\x25\\xef\\x22\\xfb\\xf3\\x32\\xd4\\x4d\\x71\\x3c\\x55\\x25\\x5a\\x8e\\xe7\\x38\\x40\\x3c\\xae\\x93\\x83\\x97\\xa9\\x29\\x91\\x75\\x96\\x0f\\xf3\\x69\\x4a\\xca\\x34\\x2a\\x12\\xa5\\x58\\x01\\x41\\xe7\\x31\\x93\\xf1\\xd4\\x4c\\xc6\\x7b\\xed\\xa0\\x64\\xa7\\xe1\\x30\\x71\\xec\\x90\\x37\\x44\\x9d\\x66\\xce\\xb3\\x02\\xc9\\xcd\\x5d\\x4c\\x8f\\x7b\\x62\\xac\\x79\\x57\\xf3\\xf1\\xe2\\xec\\xa5\\xb2\\xd6\\x63\\x9b\\x9b\\xac\\x71\\xe1\\x5a\\x47\\xc3\\x48\\x21\\x2e\\xe9\\xcc\\x51\\x86\\x6b\\xf2\\x9b\\x27\\x4b\\xab\\xf2\\x49\\x90\\x48\\x72\\x68\\x52\\x16\\xc1\\xef\\x39\\xba\\x2a\\xcc\\xc9\\xa1\\x4a\\x53\\x45\\xa6\\x71\\x28\\x47\\x54\\x4c\\x8d\\xa5\\x15\\x19\\x22\\x15\\xe9\\xd5\\x84\\xb9\\xcf\\x10\\x1f\\x2a\\x8f\\x83\\xd4\\x94\\xa4\\x14\\xc7\\xf0\\xfe\\x3b\\x1e\\x68\\x06\\xbe\\xfc\\xe8\\xee\\xb9\\xd6\\x2c\\x3c\\x8d\\x3b\\x0f\\x3d\\xd0\\x28\\xfe\\xbb\\xf4\\xc8\\x9e\\xf9\\x36\\x73\\x9c\\x69\\xe5\\xd6\\x0b\\x6d\\x90\\x93\\xbb\\x6d\\x71\\xbc\\x3e\\x23\\xc3\\x35\\xb6\\xb8\\x96\\x27\\x7e\\xda\\x75\\xf6\\xe8\\x5a\\x96\\x22\\x02\\xe7\\xdd\\xf3\\xcf\\x7a\\xfd\\xe6\\x1d\\x47\\xca\\xa1\\xbc\\xe4\\xc4\\x5a\\x93\\xae\\xb8\\xb5\\xa7\\xdf\\xc0\\xfa\\x68\\x89\\xd8\\x78\\x76\\xb1\\x1c\\x96\\x55\\xe8\\xcb\\xce\\xa0\\xdc\\xec\\x64\\x96\\xc9\\x0d\\xf1\\xbe\\xb4\\x05\\x57\\xba\\x2a\\x79\\x43\\x57\\x29\\x7d\\x84\\xc7\\x37\\xbe\\xc0\\x13\\xe9\\x1e\\xf2\\x61\\x25\\x58\\x6e\\x5e\\x82\\x53\\x7d\\xfd\\x39\\xb6\\xf6\\xcb\\xc0\\x17\\x90\\xed\\xe1\\xd0\\xca\\x88\\x4b\\x27\\x96\\x4e\\xb5\\x67\\xe4\\x3c\\xf6\\x4d\\xbd\\xdd\\x6b\\xdf\\x8c\\xf2\\xa4\\x39\\xd0\\xe9\\x7c\\x7c\\x77\\x44\\x97\\x62\\xe3\\x16\\x1d\\x4d\\xc9\\xba\\x7d\\xa6\\x7d\\x7e\\xd7\\xc3\\x87\\x1d\\x7b\\x6b\\x16\\x9f\\x27\\xa6\\x7c\\x63\\xe7\\xde\\xce\\xfc\\xb6\\x9c\\x78\\x73\\xdf\\xd1\\x6e\\x5d\\x55\\xca\\xdc\\x2e\\x00\\x75\\xdd\\x52\\x53\\xf3\\x72\\xad\\x06\\xda\\x1b\\x4c\\x63\\x0e\\xf7\\x9f\\x61\\x79\\xac\\xb6\\x01\\x22\\x8c\\x55\\x36\\x7b\\x55\\x7a\\x78\\x10\\xce\\x4d\\x51\\x0f\\x5c\\x7a\\x7b\\xb1\\xa1\\xfb\\xf1\\x43\\x6d\\xdc\\x34\\x2e\\x9f\\x3e\\xe0\\x6c\\xea\\x7f\\x7c\\x7f\\x43\\x70\\x90\\xeb\\x97\\x67\\x36\\x37\\x5e\\xd8\\xdd\\xd8\\x71\\xe8\\xc1\\xc6\\xa9\\x5d\\x3f\\x68\\x0c\\x09\\x83\\x6f\\x1d\\x7a\\xab\\xa0\\xe4\\xcd\\x85\\x19\\xc7\\xce\\xa9\\x8a\\xa2\\x91\\x15\\x07\\x93\\x4d\\x25\\xe2\\xc7\\xa4\\x3c\\xe4\\x74\\x3d\\xa4\\x5e\\xa6\\x16\\x29\\x95\\x10\\xef\\x93\\x4c\\xec\\x35\\x57\\xca\\x3d\\x22\\xa4\\xc5\\xc3\\x1b\\xc6\\x76\\xd5\\x54\\x8e\\xf8\\x62\\xef\\xa0\\x57\\xfc\\x05\\xc4\\xaf\\x40\\x82\\xf8\\x2e\\xfc\\x73\\x65\\xcd\\x7f\\xc6\\x1d\\x27\\xd4\\x4e\\x00\\x4c\\xbc\\x9f\\x20\\xb8\\x3c\\xc4\\x25\\x80\\x4a\\x49\\xec\\xda\\x0e\\xf2\\xd2\\x84\\xde\\xe0\\x79\\x31\\x37\\x78\\x9e\\xc2\\xf7\\xbc\\xab\\x9e\\x55\\x21\\xba\\xf1\\x8e\\xcb\\x08\\x7e\\xba\\x6d\\xca\\x7f\\xce\\xed\\x24\\x61\\x8f\\x13\\xeb\\xb7\\x5f\\x89\\xf7\\xc3\\x3e\\x7e\\x14\\x9a\\x5b\\xfc\\xbc\\x33\\x20\\x1a\\x04\\x20\\xa3\\x2b\\x60\\x9f\\x17\\x94\\xaa\\x32\\x68\\x8a\\x22\\x18\\x90\\xc0\\x8d\\xc9\\x25\\x32\\x21\\x0a\\x14\\xf3\\xf9\\xb7\\x19\\x99\\x62\\xaa\\x74\\x21\\x5e\\xb8\\xc9\\x95\\xc4\\x7c\\x0b\\x3c\\x8d\\x8a\\x5b\\xb8\\xf1\\xc5\\x3e\\x07\\xb8\\x33\\x94\\xa7\\xb2\\x52\\x49\\xd0\\x7a\\xe1\\xb4\\x61\\x2c\\xf0\\xd6\\x7a\\x23\\x42\\x16\\xbc\\x6b\\x7c\\x1c\\x4e\\x5f\\x4b\\xca\\x02\\x63\\xf8\\x05\\xb8\\xe7\\x46\\xc4\\x2c\\xec\\xfd\\xa2\\x71\\xa7\\x54\\x20\\x51\\x5d\\x7a\\xc6\\x19\\xa0\\x04\\x01\\x64\\x9e\\x36\\xd3\\x77\\x43\\xed\\xab\\xe5\\xd5\\x6d\\xa7\\xd3\\xfb\\x4a\\x5b\\x34\\xd7\\xb5\\xe5\\xfa\\xcb\\x28\\xab\\x32\\x8d\\x92\\xf4\\xac\\x28\\x5a\\xda\\x88\\x1b\\xc5\\x4a\\xe2\\x67\\xa7\\xa6\\x60\\xf7\\x75\\xf1\\x92\\xff\\x83\\xb3\\xd7\\x7f\\x7b\\xe3\\xa0\\x49\\x66\\xe7\\xf0\\x23\\xed\\x68\\xf0\\x72\\xdb\\x70\\xc0\\x41\\xf8\\x55\\xdc\\x5f\\xcc\\xc0\\x20\\xf0\\x98\\xd6\\xe4\\x1a\\x6e\\x1b\\x95\\x27\\x77\\x3f\\xc5\\x1e\\xd2\\xbc\\xbc\\x94\\xf8\\x0b\\xfc\\x56\\x6b\\xef\\xe8\\xff\\xea\\x97\\x01\\x56\\x69\\x2f\\x9e\\x77\\x11\\xcd\\x67\\x9a\\xf6\\x9f\\xb8\\x05\\xce\\xd0\\xfe\\x8b\\x75\\x37\\x4a\\xfd\\x97\\x4e\\xe4\\xd3\\x01\\x82\\x0f\\x31\\xa1\\x02\\x54\\xe7\\xac\\x56\\x78\\xfa\\x2f\\x3d\\x0d\\xf3\\x1c\\x57\\x47\\xfb\\x81\\x17\\xb8\\x11\\x6f\\xc4\\x57\\xa2\\x67\\x0e\\x78\\xb2\\x81\\x50\\x11\\x02\\xc8\\x61\\x37\\x67\\x69\\xd5\\x49\\x89\\x31\\xd1\\x41\\x81\\xc8\\x04\\x26\\x3f\\x62\\x30\\x12\\x68\\xaf\\xd0\\x54\\x3b\\x64\\xf1\\x51\\x52\\x19\\x71\\x83\\x6c\\xbb\\xa0\\xf2\\x25\\x01\\xe1\\x64\\x3b\\x5f\\x5a\\x2b\\x28\\x1e\\x28\\x49\\x1e\\xe3\\xc2\\x35\\x39\\xba\\xc2\\xe5\\xc7\\x66\\xe7\\x2f\\x8c\\x9a\\xc0\\x1d\\x6b\\xe8\\xba\\x75\\xd4\\xda\\xd9\\x50\\x9e\\xac\\x4d\\xa8\\xea\\x9c\\x14\\x3b\\xf1\\x12\\x24\\x56\\x2c\\xb4\\x77\\xed\\x6e\\xd1\\x47\\x0d\\xdd\\xf7\\xdd\\x95\\x67\\x02\\xf2\\xbb\\x97\\x2b\\xb3\\x9a\\x4a\\x32\\x02\\xe2\\xb7\\xbd\\xf3\\xe4\\x44\\xc7\\x9d\\xdf\\xd8\\xfe\\xe2\\x93\\x03\\x4f\\x1f\\x69\\x89\\x20\\x98\\x89\\x9e\\xb8\\x2c\\x4d\\x34\\xd7\\xb4\\xd4\\x76\\x61\\xad\\xb6\\xe3\\xd4\\xab\\xa3\\x3e\\xae\\xc7\\x39\\xbe\\x91\\x45\\x09\\xb7\\x3a\\x9b\\x82\\x41\\x46\\xdb\\x4c\\x66\\xa3\\xd4\\x66\\x10\\x64\\xa4\\x13\\x68\\x60\\x12\\xc7\\xcb\\xb8\\x11\\x1a\\xd4\\xe3\\x09\\x1e\\xdc\\xd8\\xee\\x34\\x03\\x20\\x53\\xa6\\xc1\\x9a\\x66\\x4d\\x49\\x8a\\x8d\\x89\\x50\\x04\\xf8\\x23\\x3d\\xe8\\xfd\\x3d\\x6d\\xd7\\x7b\\x78\\x6f\\x95\\x5e\\x51\\xe8\\x69\\x79\\x0e\\x6d\\x38\\xc7\\x50\\x3f\\x94\\xa1\\xe2\\x77\\x5b\\x9e\\xda\\x56\\x02\\xdb\\xf7\\xe2\\x71\\x5c\\x5f\\x1f\\x54\\xbb\\x78\\x47\\xf7\\xc4\\x3d\\x13\\x36\\xb7\\x3e\\xb3\\x6b\\x7f\\xfb\\xe8\\x69\\x47\\x6e\\x42\\x75\\xcf\\x74\\x67\\xc5\\x5c\\x93\\xc5\\x1f\\x0f\\x80\\xb6\\x66\\x36\\xb2\\xfb\\xdc\\x9b\\xb3\\xc9\\x8a\\x4b\\x07\\xbb\\xe7\\x42\\x07\\x1e\\xd9\\x53\\x5b\\xbf\\xff\\xa9\\xe1\\xbe\\x88\\xb6\\x4b\\x3b\\x5d\\x55\\x85\\xae\\xd4\\xbc\\x34\\x25\\xb7\\x5e\\x30\\x76\\xb0\\x3a\\xc2\\xb9\\x73\\xb8\\x40\\xda\\xe7\\xfc\\xaf\\xf8\\x65\\x7e\\x3f\\x99\\x57\\x49\\x34\\xdf\\x8f\\x0c\\xae\\x56\\x68\\xe4\\xc0\\xd4\\x6d\\x9f\\x2e\\x43\\xb6\\x20\\x92\\xe8\\xb9\\x46\\x63\\x50\\x79\\x23\\xe5\\xf1\\x2d\\x3b\\xdf\\xd8\\x5b\\x9a\\x33\\xf7\\xe0\\x1c\\x74\\xae\\xd5\\xab\\x6d\\x93\\xe7\\x27\\xc5\\x3f\\xad\\xae\\x3e\\x06\\xdf\\x3e\\xc1\\x25\\x0b\\x5d\\x77\\x7c\\x7d\\xd7\\xfc\\xe7\\xce\\x74\\xe1\\x4d\\xd8\\xb5\\xf3\\x62\\xc7\\xe4\\x93\\x3b\\x2a\\xc0\\x5d\\x47\\xa6\\xde\\x02\\x3e\\xcd\\xf4\\x6d\\xb2\\x0f\\x49\\xa6\\xb8\\x55\\x8a\\x0f\\x0b\\x0c\\xc0\\x50\\xed\\x09\\xd1\\x1f\\xe5\\xe1\\xca\\xd6\\x4a\\xd2\\x5d\\x08\\x63\\x70\\xb8\\x20\\x8b\\xa4\\x55\\x91\\x76\\x20\\x39\\x39\\xd2\\x0e\\xc4\\x57\\x95\\x2d\\x03\\x97\\x96\\xcb\\x20\\x7b\\xf0\\x58\\x97\\xea\\xc8\\x69\\x0c\\x25\\x73\\x67\\x5a\\xbf\\xb1\\xb6\\x76\\x27\\x3c\\x74\\x17\\xee\\x08\\x28\\x99\\xbb\\x38\\x59\\x79\\xcb\\xd6\\xf6\\xf0\\x01\\xd5\\x13\\xfb\\x7a\\xf7\\xb7\\xe9\\xbd\\x01\\xfd\\xb4\\x1e\\x9f\\x11\\x5d\\x7c\\x28\\xe5\\xd9\\xa3\\x7a\\x7f\\x08\\x70\\x42\\xb0\\xf4\\xae\\x21\\xc4\\x0b\\x88\\x1f\\x21\\x02\\x0c\\x20\\xfa\\xba\\x00\\x3b\\x4f\\x46\\xf9\\x28\\x2d\\xf1\\x66\\x33\\x31\\x46\\x45\\xf3\\xb5\\x79\\xe5\\x23\\x68\\x57\\x41\\x0e\\xde\\xb4\\x0a\\x29\\x65\\x93\\x35\\xf1\\xd9\\x9e\\xb4\\xf2\\xea\\x50\\x70\\x5f\\x5a\\x25\\x5d\\xd1\\x8e\\x9f\\xda\\x98\\x58\\xbe\\xba\\xcb\\x88\\xff\\xe1\\xde\\x24\\xe5\\xd3\\xfa\\x32\\xa9\\x17\\xa2\\xfb\\xb4\\x9b\\xd4\\x2b\\xe6\\x46\\xf5\\x4a\\x44\\x89\\x8a\\x28\\xfd\\xc6\\x7a\\x5d\\x97\\xd3\\x9d\\xd5\\xab\\x14\\x57\\xaf\\xe9\\xeb\\x97\\x5c\\x49\\x39\\x09\\x24\\x45\\x50\\x7c\\x5c\\x80\\xb9\\x32\\x33\\xda\\xfd\\x89\\x35\\x29\\x8c\\xff\\xfd\\x39\\x29\\x73\\xfb\\x28\\x2f\\xe3\\xb1\\xa1\\xbc\\xc7\\x82\\x6b\\x99\\x52\\x2c\\xf1\\x78\\x90\\x77\\xa6\\x85\\x60\\x8e\\x34\\xc8\\x4c\\x31\\xb0\\x29\\xc9\\x37\\xce\\x85\\xca\\x30\\x47\\x3e\\xc5\\x41\\xa7\\x05\\x64\\x4c\\xd7\\x9a\\x75\\xe6\\xf8\\xd8\\xc8\\x88\\x90\\x20\\xa4\\x01\\x8d\\x9f\\x97\\xcb\\xc5\\x47\\x95\\xea\\xf0\\x25\\xc4\\xa0\\x13\\x4e\\xca\\x86\\x4a\\x51\\x8f\\xb8\\xf2\\xd0\\x5b\\x07\\x4b\\x93\\xf2\\x3b\\x17\\x6e\\x69\\xd9\\xfb\\xc6\\xde\\x12\\x00\\x6e\\x67\\xe6\\xa6\\x7b\\xe6\\x72\\x87\\xda\\x5d\\xa9\\xba\\xe4\\x86\\xc1\\x85\\xee\\xb1\\xd3\\x83\\x26\\x58\\x7f\\x1f\\x32\\x87\\xce\\x08\\x6f\\x4d\\x3d\\xf3\\xcb\\xbd\\x6f\\xb6\\x3d\\x78\\x6e\\xcf\\x80\\x6d\\xf0\\xe1\\x77\\xf6\\x9c\\x9e\\x9b\\xfc\\xec\\xb9\\x5e\\x22\\x04\\x62\\xbb\\xe3\\xb3\\x35\\xd1\\xff\\x3e\\x31\\x76\\xff\\x17\\x46\\x9b\\x07\\x3e\\x7e\\xa8\\x89\\xf6\\xf5\\xa3\\x44\\xee\\x15\\x93\\x6e\\xd7\\xa0\\x42\\x67\\x1e\\x0f\\x08\\x34\\xd4\\xf4\\x5d\\xe7\\x8b\\x1c\\xc6\\x88\\x74\\x82\\x8c\\xca\\x0b\\xc9\\x0c\\xbf\\x31\\x70\\x58\\xa7\\x89\\x34\\x84\\xb3\\x65\\x40\\x4a\\x41\\x07\\x37\\xa2\\xae\\x23\\x70\\x6a\\x3b\\x77\\xbf\\x5b\\xcf\\x6d\\xc2\\x62\\xc5\\xdc\\xc7\\xb7\\x15\\x13\\xca\\xd0\\x4d\\x7d\\x0f\\xef\\x71\\xe1\\xed\\x60\\xeb\\xd9\\x59\\x5b\\x4f\\x92\\x17\\xbd\\xf8\\xf4\\x0e\\xb2\\x47\\x1b\\x20\\x81\\xc2\\x85\\x8b\\x0f\\x4e\\x8e\\x9c\\x9f\\xcd\\xcb\\x9d\\xbd\\x34\\x59\\xb5\\xad\\x33\\x3b\\xa3\\x65\\xb9\\xfa\\xe3\\xcf\\xc0\\x84\\x94\\x43\\x47\\x5c\\xe1\\x6d\\x64\\x20\\x74\\x74\\x85\\xa3\\x75\\xd5\\x01\\x66\\x66\\x22\\x33\\x75\\xa3\\x7e\\x50\\x95\\x63\\x7c\\x55\\x8e\\xa3\\x3e\\x84\\xd4\\xeb\\xae\\x13\\x10\\x27\\x70\\x43\\xbe\\xcb\\x11\\x5d\\xe1\\x0c\\x1f\\xa5\\x69\\x0c\\x7f\\xca\\x1d\\x77\\x9b\\xb8\\x71\\x2c\\xd6\\x4e\\x3f\\xbe\\xe6\\xac\\xda\\xf5\\xf8\\x28\\x69\\x5b\\x3d\\xde\\x8e\\xad\\xbd\\xa4\\x6d\\x7b\\x7a\\xad\\xb6\\xe1\\x5b\\x3b\\x37\\x93\\x5d\\xe1\\x80\\xfb\\x0f\\x7c\\x31\\xc9\\x67\\x32\\x72\\x7e\\x86\\xb6\\x6e\\xa2\\x6a\\xb5\\xd3\\x6c\\x6c\\x59\\xaa\\xee\\x3e\\xd0\\x95\\x31\\xc9\\x72\\x4c\\xa2\\x3a\\x32\\xef\\x17\\x88\\xb9\\x4c\\x87\\x9e\\xae\\x41\\x48\\x0f\\x5f\\xb9\\x1c\\x80\\x4a\\x40\\x0e\\xdf\\x14\\x89\\xb5\\x00\\xf9\\x3d\\x07\\xf0\\x6c\\xc9\\xb3\\x56\\x23\\xbb\\xb6\\x9b\\x5c\\xbb\\xc8\\xe7\\x93\\x6b\\xdf\\x6b\\x97\\xae\\x2d\\xbd\\x3c\\xc6\\xae\\xfd\\x23\\xb9\\xd6\\x9f\\x5c\\xfb\\xea\\xe5\\x31\\x76\\x31\\x66\\x39\\xd7\\xfc\\x24\\x1e\\x2f\\x9a\\x31\\x8e\\x19\\xff\\x78\\xec\\x59\\x4c\\x7d\\x0a\\x2e\\x0b\\x50\\x47\\x88\\x86\\xa8\\x87\\x87\\x91\\x6b\\x83\\x55\\x0a\\x39\\x35\\x7f\\x50\\x80\\xb6\\x37\\xa7\\x10\\x50\\x16\\x24\\xe6\\xb8\\xe2\\x6e\\xdf\\x26\\x56\\x4c\\x3d\\xb9\\xb3\\xbc\\x7c\\xc7\\x53\\x53\\x34\\x6e\\xab\\x71\\x5f\\x6f\\xb6\\xb9\\x77\\x5f\\x13\\x57\\x87\\x27\\xfe\\xdd\\x5c\\xb8\\xe5\\xc2\\xc8\\xc8\\x79\\x62\\xf1\\x73\\xc7\\xe3\\xbd\\x60\\x6a\\xdd\\x5a\\x55\\xb3\\xda\\x99\\x05\\x08\\x79\\xe2\\x90\\xf9\\x35\\x16\\x67\\x90\\x49\\xb3\\xa6\\x23\\x1e\\x04\\xa0\\x03\\x42\\xc9\\xba\\x41\\x90\\xe8\\xc5\\xfc\\x64\\x98\\xbe\\x4b\\x72\\x49\\x81\\x57\\xa9\\x00\\xa9\\x32\\x55\\x84\\x11\\x28\\x46\\x49\\x9c\\x04\\x14\\x35\\x9c\\x02\\xc9\\x74\\x91\\x51\\x79\\x82\\x91\\xa9\\xe5\\xc3\\x41\\xad\\x33\\x6c\\xb9\\x61\\x19\\x0b\\x14\\x6a\\x4f\\x5d\\xe1\\x9b\\xbd\\x47\\xfb\\x4c\\xa6\\xbe\\xa3\\xbd\\xaf\\xae\\x34\\x10\\xd8\\x47\\x04\\xe0\\x24\\xe5\\x62\\x7c\\x0a\\xc6\\x06\\xe2\\xaa\\xfd\\xdc\\xab\\x25\\xfd\\xf9\\x89\\x09\\x05\\x7d\\x4e\\x28\\x5f\\xbe\\xa7\\xab\\x8b\\x52\\x07\\x91\\x26\\xbc\\x00\\x38\\xbf\\x7f\\x6b\\x61\\xff\\xeb\\x7d\\xdd\\x9f\\xea\\xef\\xba\\x77\\xa5\\x02\\xc6\\x49\\x4b\\xec\\x84\\x24\\xad\\x78\\x6b\\xaf\\x03\\x68\\x3b\\x96\\xc9\\xbb\\x73\\x9b\\x2c\\x06\\xd9\\x50\\x0b\\xb5\\xe2\\x04\\x00\\x27\\xb3\\xa7\\x63\\xcc\\x61\\x8f\\xc3\\x8d\\x93\\x61\\x19\\x87\\x17\\xbc\\xb4\\xb6\\x14\\x42\\x81\\xb1\\xcf\\x11\\x9d\\x69\\xd4\\xe9\\x63\\xb5\\x11\\x3a\\x86\\x73\\xf3\\x24\\x41\\xbb\\x42\\x88\\x4c\\x1b\\xe2\\x90\\x1a\\xe2\\x4b\\x96\\xc6\\xdb\\x61\\x83\\x4f\\x95\\xce\\x41\\xba\\xcb\\x58\\x0e\\x4a\\xc8\\x2c\\xeb\\xce\\x2b\\x9f\\xd4\\xc2\\x0a\\xf8\\xc7\\x99\\x75\\xba\\x3c\\x43\\x5c\\x98\\x0c\\x20\\x39\\x7a\\x29\\x21\\x19\\x70\\x6a\\xcd\\x72\\x4b\\x7a\\xb9\\x4d\\x1b\\xa4\\xdb\\xd6\\x92\\xd7\\x55\\x9a\\x99\\x10\\x0c\\xff\\x08\\x56\\x67\\xe6\\xa5\\x1a\\x8b\\x33\\x12\\x08\\x8b\\x46\\x58\\x7c\\x46\\x71\\xba\\xa6\\xc0\\xac\\x0d\\xe6\\x38\\xc0\\x59\\x05\\x7b\\xd7\\x48\\x3a\\x68\\xa7\\x03\\x97\\xbe\\x9f\\xa5\\xe9\\xaa\\xb3\\xa4\\x55\\xf6\\x8e\\x4d\\x64\\x4d\\x7c\\x71\\x1c\\x46\\xbe\\x31\\x36\\xfe\\xd6\\x85\\x61\\x50\\x92\\x9c\\xd5\\xae\\xee\\x8c\\xfa\\xb1\\x85\\x55\\x07\\x4c\\xa5\\xe4\\xa6\\xc7\\xa4\\x57\\xf6\\x6e\\xda\\x94\\xee\\xd2\\xf7\\xf6\\xb4\\x96\\xe8\\x62\\x8c\\xf9\\xaa\\x28\\x63\\x34\\x02\\x94\\x7b\\xf9\\xd7\\x8c\\x6f\\xb6\\x8c\\xca\\xf1\\x64\\x89\\x93\\x5e\\xc0\\x80\\x05\\xa0\\x63\\x8d\\x78\\x40\\x74\\xac\\xb9\\x3e\\x2f\\xdd\\xa9\\x97\\xb8\\xad\\xb8\\xd0\\x6e\\x33\\xa6\\xa9\\x0c\\x2a\\x8d\\x9c\\x1a\\x16\\xa5\\x8c\\x68\\x56\\xaf\\x05\\x90\\xaa\\x52\\x5e\\x70\\x78\\x94\\xaf\\xb7\\x7c\\xc3\\x2e\\x23\\x57\\x63\\x43\\xac\\xad\\xc5\\x71\\x7c\\x5b\\xd5\\x64\\xb9\\x4a\\x5f\\x3b\\x5d\\xea\\x76\\xf7\\x9e\\x9b\\xce\\x8f\\xb7\\x37\\xd9\\xcc\\xa5\\x69\\x11\\x21\\x2a\\xbb\\x3e\\xbd\\xcc\\xa2\\x56\\x06\\x92\\xce\\x89\\xdd\\x1a\\xaf\\xc6\\x38\\xa3\\x73\\x7f\\x67\\xf9\\x70\\x49\\x32\\x86\\xdd\\x85\\x9b\\x9b\\xb3\\xf0\\x04\\xa4\\x37\\x6e\\xa9\\x28\\x9f\\xaa\\xd2\\x4c\\x40\\xf6\\xd0\\xc9\\xc1\\x9c\\xf9\\x91\\x86\\x88\\xc8\\xb2\\xce\\xa9\\xfc\\x91\\xd4\\xda\\x42\\xbd\\xa1\\xbc\\x7b\\x6c\\x3a\\x7b\\xe2\\x4b\\xe3\\x23\\x5f\\x1f\\x9f\\xfa\\xfc\\xf9\\x41\\x80\\xac\\xf6\\x85\\x52\\x26\\xa3\\xda\\x2e\\xff\\x8a\\xdf\\x4e\\x64\\x54\\x11\\x95\\xa7\\x02\\x70\\xbc\\x1f\\x20\\x36\\x21\\x04\\x5e\\x00\\xe6\\x2a\\xe6\\x90\\x44\\x7b\\xc5\\x5a\\x4b\\x84\\xd3\\x95\\x20\\x6f\\xd2\\x62\\x7d\\x9a\\x32\\x83\\x09\\x1d\\xb6\\xd7\\x57\\xca\\x25\\x51\\xc3\\x9a\\xc7\\xf2\\x70\\xa8\\x65\\x64\\x5b\\x49\\x03\\x6b\\xf4\\x56\\xaf\\x15\\x83\\x9e\\xc1\\x9f\\x4e\\xb0\\xd6\\x64\\xbc\\xcc\\x61\\x2e\\x38\\xd1\\xac\\x71\\x34\\x98\\xa3\\x31\\x56\\xa7\\x6c\\x0f\\x56\\x86\\x93\\x36\\x92\\x14\\x6f\\x0d\\x3b\\xb7\\x09\\x90\\x5a\\xd8\\x6e\\x79\\x01\\x3f\\xe3\\xe8\\x75\\x6a\\x0c\\xd5\\x23\\xf9\\xef\\xca\\x7e\\xdd\\x7e\\x72\\x22\\x9f\\xe3\\xb3\\x6b\\x72\\x8d\\x11\\x96\\xd7\\x5b\\x93\\xac\\x9a\\xc8\\x82\\xe1\\x1d\\xa5\\x2d\\x1f\\x6b\\xd0\\x37\\x35\\xb7\\x18\\xfa\\xef\\x5f\\xab\\xc2\\xdb\\x57\\x5b\\x88\\xb5\\x20\\x1a\\xc6\\x20\\xce\\x5c\\x6d\\xb2\\x34\\x39\\x12\\x61\\x14\\x0c\\x8d\\xcb\\x74\\xfe\\xbf\\x28\\xde\\xc5\\x3b\\x88\\x8f\\x31\\x13\\xe5\\xd2\\xb5\\x30\\x16\\x78\\x94\\xc2\\xf6\\x1c\\x36\\x2b\\xb5\\xad\\x22\\x19\\xd0\\xf5\\x7a\\x63\\xc4\\x84\\x20\\x5c\\xa1\\xb8\\xca\\x75\\x90\\x1b\\x33\\x52\\x55\\xa4\\xd5\\x8c\\x5c\\x80\\x8e\\xf0\\xb5\\xf8\\x7f\\x1a\\x92\\x43\\x7f\\xd5\\xe4\\x2d\\xa7\\xcd\\x06\\x49\\x05\\xb2\\xdb\\xad\\x10\\xff\\x60\\xcb\\xad\\x13\\x79\\xf6\\xe1\\x23\\xcd\\xe2\\xaf\\x20\\x76\\xfa\\xb9\\x7d\\x35\\xba\\x8a\\xe1\\xc2\\xbd\\x07\\x31\\x24\\x1a\\x76\\x44\\xc5\\x87\\xc8\\xc0\\xda\\xbd\\x5a\\x8e\\xab\\x23\\xd4\\xb6\\xd4\\xfa\\xee\\x7d\\xf8\\xec\\x38\\xa4\\xd6\\xcc\\x37\\xd4\\x2f\\xd6\\x6a\\xc7\\xcd\\xa3\\x77\\x4d\\x16\\xcf\\x74\\x95\\x45\\xa5\\x3c\\x76\\xfc\\x96\\xc2\\xd9\\xf4\\xd8\\x98\\xc2\\xd2\\xe2\\xb8\\xc3\\x35\\xb3\\x35\\x5a\\x70\\x37\\x66\\x74\\x77\\x36\\xa9\\xcc\\xbb\\xcf\\x5f\\xa0\\x6d\\x7c\\x4f\\xbc\\x95\\x71\\x7e\\x19\\x51\\x0e\\x95\\x55\\x4a\\xe0\\x51\\x12\\x6b\\xa3\\x25\\xfb\\x46\\x6d\\x8c\\xb9\\xba\\x8d\\x39\\x76\\x72\\x63\\x7a\\x32\\x6d\\x22\\x9d\\xc9\\x7a\\xdf\\xba\\xa1\\x72\\x48\\x6d\\x94\\xb1\\x26\\x46\\xde\\xb8\\x89\\xc5\\xf0\\x13\\xea\\xed\\x37\\xd6\\x4f\\x17\\x89\\x5f\\xc3\\x60\\xe9\\x3c\\x37\\x57\\x3c\\xd9\\x37\\x38\\x02\\xa1\\x71\\x7b\\x82\\x49\\x03\\xc1\\x50\\xde\\x67\\x83\\x9f\\x7a\\x5a\\x08\\xdf\\x1d\\x8f\\xce\\x6a\\xc8\\xcd\\x6d\\xb6\\xc4\\x8c\\x6b\\xeb\\xb7\\x36\\xf7\\x1e\\x4c\\x8e\\xdb\\x35\\xbe\\x49\\xd7\\x96\\x1c\\x19\\x9e\\x99\\x95\\x19\\x3e\\x6c\\x75\\x99\\x63\\x40\\x44\\x1b\\x9a\\x87\\x00\\xc5\\x90\\x77\\xf4\\x22\\x79\\x47\\xed\\x34\\x2a\\x09\\x09\\x54\\x91\\xc1\\x0b\\x3e\\x12\\x62\\x1f\\x47\\xaa\\x72\\xe3\\xfb\\x49\\xb2\\x46\\x10\\x76\\x27\\xcf\\xe2\\x48\\x83\\xf6\\x89\\x13\\x9c\\x05\\xed\\xab\\xae\\x93\\x5e\\x82\\x9a\\xbd\\x8f\\xe7\\xc5\\x6f\\x63\\x59\\xa4\\xa1\\x62\\xac\\x5a\\x9b\\x90\\x5d\\x6e\\x54\\x06\\x62\\x8c\\x29\\x10\\x21\\x4d\\x4d\\x36\\x39\\x31\\x21\\x02\\x40\\x5c\\xd8\\x52\\x4c\\x2c\\x86\\xd0\\x24\\x93\\xb3\\xdd\\x56\\xd2\\x6e\\x53\\x52\\x46\\xeb\\x97\\xdb\\x9e\\x7f\\xe2\\x9e\\x65\\x22\\x79\\xa1\\x68\\xf2\\xc8\\xb9\\xbb\\x2a\\xf1\\xb3\\xef\\x1f\\x4e\\x6a\\xae\\xca\\x4e\\xaf\\xea\\x1b\\x1b\\xcf\\x1c\\xff\\x12\\x93\\x49\\xa5\\x87\\x76\\x6c\\x6e\\x32\\x41\\xfe\\xe0\\x36\\xca\\x33\\x6b\\x27\\xed\\xd9\\x45\\xc6\\x2b\\x9b\\xb1\\x12\\x00\\x47\\x57\\x14\\x0a\\xe0\\x90\\xf5\\xc8\\xa5\\x30\\x4e\\x41\\x60\\xf8\\x4c\\xe5\\xc6\\x17\\x8f\\xe5\\x2b\\xcb\\x56\\xe9\\xa3\\xf4\\x4a\\x6f\\x00\\xb6\\x67\\x7b\\xc6\\xda\\xe1\\x93\\x2b\\x11\\x9e\\xd6\\x3a\\x1c\\xb4\\xb5\\xf8\\x1d\\x20\\x59\\x92\\xd5\\xc4\\x1a\\xa3\\x00\\x9c\\xa2\\x5c\\x8a\\x4f\\xc5\\x58\\x4b\\xc2\\xfd\\x4b\\x3a\\x6d\\x31\\x18\\xc4\\xdf\\x83\\xa0\\x50\\x39\\x5a\\xf3\\xd2\\x21\\x59\\x63\\x4e\\x56\\xc8\\x81\\x12\\xc8\\xf0\\xaa\\xb6\\x1a\\x4b\\xf5\\xfc\\xb1\\xd2\\x91\\x37\\x86\\xa0\\xff\\x73\\xc3\\x43\\xcf\\x1c\\x6e\\x06\\xc8\\x1f\\xde\\xe1\\xc4\\x77\\x88\\xf7\\x96\\x9d\\xba\\x65\\xf7\\x60\\x2e\\xcc\\x00\\x64\\x37\\x4f\\x2f\\x2d\\x59\\xe1\\x6b\\x6c\\x8c\\x4e\\x93\\x36\\x1d\\xa2\\xb1\\x63\\xb4\\x4d\\x1b\\xb7\\x65\\x88\\x6e\\xcb\\xe4\\xcc\\x57\\x70\\x7d\\x93\\x68\\xcc\\x15\\x25\\x01\\x20\\xa3\\xc5\\x08\\xd4\\x3f\\x60\\x6c\\xbc\\x94\\x56\\x11\\xd8\\x0d\\xb2\\x28\\x43\\xaa\\xc6\\xa6\\xa5\\x4c\\xe3\\x38\\x39\\x72\\x31\\x21\\x09\\x43\\x48\\x62\\x66\\x49\\x9b\\xad\\xb8\\xcd\\xaa\\x04\\x71\\xf7\\xd6\\xad\\x70\\x10\\x48\\x24\\xfc\\x5d\\xaa\\xce\\x7a\\x9b\\xb1\\xaa\\x7f\\x74\\x3c\\x83\\x0e\\xc2\\xf0\\xdb\\x63\\xce\\x83\\x3b\\x66\\x9a\\xb2\\x80\\x04\\xd3\\x38\\xa1\\xd3\\x3d\\x4a\\x14\\xfc\\x36\\xfc\\x71\\xc6\\xed\\x4a\\xea\\x4e\\xed\\xb5\\x5a\\x36\\xbf\\x64\\x98\\xc3\\x32\\x0a\\x98\\x45\\x48\\xf0\\x31\\x92\\xb1\\xe9\\x45\\x6d\\xca\\x7d\\xc4\\xf8\\x93\\x24\\xaf\\x27\\x83\\xb0\\xc1\\xf8\\xe3\\x0d\\x6d\\xfc\\x80\\x21\\xc1\\x63\\x22\\x21\\x94\\x84\\x09\\x58\\x01\\xbf\\x98\\x4c\\xad\\xb5\\x94\\x06\\x83\\x25\\x28\\x96\\x94\\x09\\x18\\xd4\\xd5\\xb3\\x75\\xa5\\xdd\\x39\\xb1\\x00\\xbf\\x11\\xa3\\x88\\x6e\\x1f\\x05\\xbf\\x21\\x03\\xd0\\x5a\\x6b\\xa9\\x99\\x3f\\xe6\\xa4\\x03\\xd0\\xf7\\xe6\\xf0\\x20\\xd9\\x20\\xd3\\x01\\xd8\\x59\\x22\\xed\\x13\\xef\\x27\\x6b\\xfa\\x0c\\xb1\\xe5\\x66\\x51\\xf9\\x1d\\x06\\x18\\x14\\xc0\\x63\\xaa\\x0f\\x63\\x4a\\x57\\xb8\\x70\\x25\\xa6\\x80\\xa9\\xfa\\x82\\x77\\xef\\x6f\\xd0\\xa7\\x24\\x45\\x51\\xcd\\x3e\\x0b\\xb2\\x64\\xde\\x7d\\x3f\\x33\\xe6\\x5a\\xa4\\x8c\\x0e\\x2c\\xc5\\x27\\x6d\\xc2\\x46\\x1d\\x05\\xdf\\xb7\\xfd\\x8d\\x83\\x55\\xc9\\x85\\xdd\\x8b\\xb7\\xb6\\x0c\\x7f\\xac\\xd2\\x50\\x76\\x5b\\xcb\\xf0\\xd9\\x4d\\x56\\xcb\\xe8\\x99\\x91\\x26\\x42\\x8f\\x4a\\x06\\x32\\x72\\x35\\x32\\x19\\xe3\\xea\\x1d\\x8f\\x44\\x4d\\x3c\\xf9\\x93\\x1d\\x20\\x6b\\x39\\x7f\\xcb\\x72\\xbb\\x09\\xb4\\xfa\\xc1\\x14\\x4d\\xf7\\xa9\\x4f\\x6c\\x12\\xff\\xb9\\xe9\\xb5\\xdb\\xbb\\xc1\\xd2\\xb7\\xa7\\xa1\\xef\\xc5\\xde\\x9e\\x97\\xfa\\xa6\\x1e\\x5e\\x2e\\xa6\\xed\\xf8\\x38\\x69\\x47\\x35\\xe5\\x1a\\xa1\\xed\\x48\\x06\\x9e\\x4b\\x01\\xe0\\xe9\\x3a\\xc4\\xd3\\x75\\x77\\xe1\\x8a\\x9b\\x53\\xb8\\x8a\\x65\\x44\\x93\\x9a\\x18\\x1f\\x1e\\xe6\\xef\\x47\\xf9\\x45\\x68\\x3b\\xb4\\x1b\\xaa\\xeb\\xcb\\xaa\\xb4\\xb1\\x4d\\x51\\x49\\x1c\\xfe\\x78\\x09\\x91\\x52\\x18\\x02\\x43\\x57\\x02\\xc3\\x01\\x57\\xcc\\x9f\\x6d\\xd9\\xfe\\xc6\\xa1\\x4a\\x80\\xd2\\xdd\\xaf\\xac\\xf4\\x9c\\xcf\\x4b\\xcd\\x3b\\x56\\x37\\x70\\x5b\\xbf\\x09\\x48\\xbb\\x9a\\x21\\x3e\\xb7\\xb3\\x20\\x6f\\x39\\x37\\x6f\\x29\\xaf\\x83\\x98\\x2e\\x7a\\xce\\x11\\x26\\xa0\\xe9\\x37\\xef\\xe8\\x85\\x38\\xed\\x50\\x62\\x7c\\xfd\\xce\\x8b\\xad\\xe9\\xed\\x64\\x1b\\xcf\\xc6\\x62\\xc0\\xa3\\x3f\\xa8\\xe8\\x9e\\xdd\\xb3\\x72\\x2e\\x60\\xf0\\x6d\\x45\\xbc\\xac\\xaf\\x49\\x02\\x9d\\x33\\x5e\\x3a\\x3b\\x66\\x2e\\xfc\\x80\\xd9\\x02\\x7f\\x17\\x27\\xb9\\x97\\xc5\\x5e\\x08\\xd3\\x95\\x9a\\xab\\x87\\xf2\\x62\\x01\\xa7\\xc6\\x6d\\x8d\\xd7\\x62\\x9c\\xd9\\x7f\\xcb\\x80\\x8b\\x04\\x6e\\x70\\x42\\x1d\\x31\\x27\\x86\\x9a\\x06\\x1b\\xcc\\x6d\\xfb\\xef\\x6f\\x98\\xf8\\xd2\\x18\\x6c\\xfa\\xea\\xc4\\xcc\\x17\\xee\\xe9\\x03\\xc8\\x1b\\x3d\\xd2\\xc0\\xd6\\x78\\x52\\xaf\\x41\\x3e\\xff\\x03\\xea\\x15\\x73\\xb3\\x7a\\x29\\x3e\\xa0\\x5e\\x6f\\x88\\x77\\x72\\x9b\\xc5\\xb5\\x08\\x02\\x5f\\x2d\\x1b\\x28\\x4a\\x04\\xac\\x8d\\x5f\\x89\\x4b\\xc3\\xd8\\x32\\x74\\xac\\xab\\x61\\xbe\\x56\\xcb\\x71\\xdf\\x1b\\x1f\\x77\\x1f\\xca\\x1e\\x72\\x99\\x8a\\x46\\xf7\\x55\\x76\\xbf\\xd0\\x05\\x5d\\xcf\\xf7\\x8e\\x3c\\xba\\xb3\\x0a\\xc0\\x31\\x72\\xb4\\x99\\xf5\\x17\\xc5\\x98\\x4e\\x92\\xb9\\xeb\\xa4\\xb1\\x30\\x82\\xc4\\x2e\\xca\\xd2\\x56\\x72\\x3e\\x84\\x2f\\xad\\xab\\x8c\\xe3\\x7d\\xb8\\x99\\xc4\\x8d\\x2f\\x1e\\xd9\\xf3\\xa8\\xc8\\xc6\\xc7\\xc4\\x34\\xd2\\xab\\x53\\x88\\x46\\x5d\\x9d\\x42\\x54\\x7d\\x83\\xa4\\xa3\\xab\\x69\\x0d\\x9b\\x4b\\xf3\\x47\\x6b\\x0c\\x4d\\xc7\\x5e\\x9e\\xea\\x7f\\xfc\\x40\\xe3\\x2a\\x97\\x3f\\xb4\\xbb\\xaa\\xe5\\xf8\\x44\\x7e\\xfe\\xc4\\x2d\\x4d\\xcf\\x3c\\xd3\\x7a\\x7a\\xb6\\xc4\\xb9\\xe5\\x4c\\x6b\\xc3\\xa1\\xd1\\x02\\x6e\\x15\\xda\\x8e\\x3d\\x33\\x30\\xf5\\xc6\\xa9\\x0e\\xb8\\xad\\x66\\xb9\\xb3\\x20\\x3c\\xb2\\xb8\\x6d\\xa2\\x68\\xe2\\xee\\xf1\\xec\\xdc\\xc9\\x3b\\x06\\x2b\\xe7\\x1b\\xd3\\x75\\x24\\x03\\x8c\\x6b\\xa6\\x42\\x35\\x99\\x5c\\xb5\\xdc\\x4e\\x58\\xc9\\x75\\xa6\\xf6\\x6d\\x75\\x9b\\xef\\xdb\\x6c\\xb7\\x4d\\xdd\\x2b\\xed\\x97\\xea\\xf1\\xd3\\xfc\\x6d\\x5c\\x24\\xaa\\x86\\x63\\x24\\x93\\x3d\\x6a\\xb3\\x3a\\xa5\\xe3\\xed\\xe4\\xf8\\x59\\xcf\\xf1\\xed\\x1b\\x8e\\xbf\\x26\\x5e\\xe0\\xe9\\x86\\x48\\x8f\\x4a\\x51\\xf0\\x65\\x00\\x19\\x2a\\x0d\\xa6\\x7b\\x25\\x44\\xf6\\x4a\\xc0\\xf6\\x4a\\x80\\x43\\xf9\\x16\\xfc\\x13\\x99\\x92\\xc6\\xa3\\x3b\\x83\\x65\\x02\\x46\\x35\\x14\\x66\\x15\\x07\\x7e\\x51\\x46\\x60\\x18\\x75\\x9a\\xde\\x46\\x8d\\x43\\xc3\\xc9\\xa2\\x5b\\x99\\x99\\x09\\x2b\\xfc\\xd7\\x8d\\xbd\\x1d\\x4d\\x2a\\xab\\xf3\\x48\\xe3\\x5e\\x04\\xf0\\x3b\\xbe\\x02\\x7f\\x4a\\x16\\x40\\xee\\x4f\\x7e\\x91\\xde\\x5e\\xcd\\x10\\x6f\\x2f\\x91\\x42\\x8a\\x89\\x9b\\xe1\\x05\\x5a\\x58\\xcf\\x0b\\x52\\x71\\x5e\\x73\\x8e\\xdd\\x8a\\x3f\\x15\\xe1\\x29\\x6e\\x55\\x38\\x99\\xd1\\x43\\x8a\\xb3\\x95\\x1c\\x69\\xda\\x83\\x10\\xc0\\x8f\\x2f\\x87\\xe2\\x67\\xd0\\xcf\\xaf\\xd4\\xa7\\xda\\x57\\x1f\\xad\\xa7\\x00\\x3b\\x29\\xe0\\x19\\x5a\\x40\\x75\\xa6\\x69\\xad\\xdb\\xe8\\xb9\\xbd\\xf1\\x38\\x6d\\x33\\xfc\\x81\\xd4\\xe7\\xb3\\xa4\\x3e\\xd5\\x30\\x45\\xd3\\xcc\\x7f\\x06\\x49\\x7d\\x01\\x73\\x7c\\x0b\\xb7\\x2c\\x53\\x62\\x3d\\x4c\\x5e\\x1e\\xa4\\xb0\\x39\\x98\\x44\\xe7\\x90\\x74\\x6e\\x0b\\x5f\\xc1\\xad\\xc8\\x02\\xb0\\x0e\\xa6\\xf6\\xd3\\x33\\x53\\xe8\\x15\\xba\\xb2\\x40\\xf7\\x65\\x32\\xd2\\xe8\\x67\\xa4\\x2e\\x4a\\x14\\xe9\\x24\\x20\\x2d\\x99\\xc0\\x93\\x82\\x81\\x54\\x28\\x3e\\x0e\\x93\\xb5\\x50\\x7b\\xa5\\x49\\xca\\x0d\\xad\\x4b\\x0f\\x67\\x95\\xcb\\x84\\x6d\\xff\\xf2\\x7d\\xea\\x92\\xea\\xe9\\x3c\\xdc\\x78\\xfc\\xd6\\x2b\\x1f\\x99\\x0c\\x66\\x71\\xc6\\x1d\\x57\\xf2\\x2d\\xf0\\x85\\x8c\\x91\\x4a\\xf2\\xcb\\x96\\xd0\\xe5\\xa2\\xc8\\x97\\xe5\\xdd\\x2f\\xce\\xc7\\x85\\x48\\x97\\x09\\xbe\\x43\\x6c\\x5a\\x13\\x5d\\xf0\\xd2\\x1a\\x3c\\xc7\\x7d\\x6b\\x3d\\x8b\\xfb\\xd6\\x34\\xac\\x8a\\xb7\\x22\\x40\\xbb\\x09\\xd6\\xa4\\x97\\xd9\\x95\\xd9\\x3a\\x24\\x2b\\x64\\xc0\\x78\\xa1\\x87\\x9a\\xfe\\x4a\\x5c\\xfe\\x40\\x29\\xed\\xe8\\x53\\x8a\\x68\\xf9\\xa5\\x50\\xbf\\x21\\xd4\\x3e\\xc0\\x8f\\x44\\x2b\\x7b\\x1e\\xe2\\x7d\\x10\\x75\\x48\\xf0\\xbd\\x62\\xc5\\x9a\\xd8\\x05\\x8f\\xd3\\xdf\\x35\\xf8\\xa4\\x58\\x41\\x7e\\x87\\xe1\\xfe\\x71\\x6e\\xcb\\x24\\x7d\\xea\\xe4\\xfa\\x19\\xd6\\x1e\\x78\\x0a\\x27\\x70\\xc9\\xdc\\x93\\x28\\x0a\\xc5\\x38\\xa3\\xe8\\x01\\xd4\\x45\\x8f\\xf7\\x21\\x40\\xd0\\x94\\xa6\\xa1\\x3d\\x77\\x6d\\x20\\x08\\x3c\\x05\\xf1\\xe6\\x8a\\xb4\\xb4\\x8a\\xec\\x78\\xb8\\xf2\\x09\\xff\\x53\\x5f\\x66\\x8e\\x8b\\x33\\x97\\xe9\\x8d\\xfa\\xd2\\xac\\xb8\\xb8\\xac\\x52\\x3d\\x19\\x2f\\x5c\\x72\\xf9\\xaf\\xfc\\x17\\xd1\\x6b\\x58\\x87\\xc2\\x54\\x14\\x00\\x19\\x06\\x3f\\x66\\xe3\\xc8\\x93\\xe3\\x77\\x91\\xe3\\x7a\\x14\\x26\\xfe\\x92\\x3c\\x91\\x9c\\x6f\\x94\\xce\\x3f\\x45\\x61\\x17\\x28\\x8f\\xac\\x11\\x17\\x89\\xbc\\x50\\x21\\x07\\x6a\\x40\\xa3\\x68\\x3b\\xda\\x4d\\xf3\\x5e\\xef\\xde\\x85\\x03\\x02\\x77\\xc6\\x12\\xec\\xb4\\x1c\\xd7\\xa1\\x00\\x24\\xa0\\x00\\x61\\x14\\x00\\x51\\xf6\\x2d\\x24\\xa7\\x41\\xde\\x4c\\x83\\xaa\\x60\\x29\\x80\\x24\\x3c\\x4d\\x25\\xae\\x5f\\x59\\xde\\x3c\\x35\\x34\\x90\\x46\\x7f\\x34\\x69\\x1a\\x4d\\x10\\xe9\\x34\\xf0\\xe4\\x9c\\xf4\\x20\\x63\\xa2\\xae\\x8e\\x08\\x80\\xeb\\x62\\xbb\\xae\\x8f\\xe2\\x12\\xae\\x3b\\x72\\xfd\\x35\\x11\\x7a\\x50\\xc2\\x13\\x31\\xd6\\xe6\\xdc\\xc2\\xe6\\xd8\\xb8\\xd6\\x82\\xbc\\x66\\x6b\\x8c\\x92\\x7e\\x6b\\x8d\\x8b\\x6d\\xc9\\xcf\\x6b\\xb1\\xc6\\x88\\xa7\\xe8\\x59\\x7a\\x3c\\xc6\\x42\\xff\\xda\\x62\\xb8\\x38\\xc2\\x3e\\xaa\\x51\\x67\\xc4\\x06\\x04\\xc4\\x65\\x68\\xd4\\x99\\xb1\\x01\\xe2\\xab\\xe4\\x88\\x5a\\x9d\\x11\\xe7\\xef\\x4f\\xce\\xd0\\xbf\\xe2\\xc9\\x40\\x72\\x24\\x35\\x23\\x36\\x90\\x9d\\x21\\x7f\\x8b\\x73\\xf1\\x74\\x1e\\x74\\x98\\x47\\x5b\\x6c\\x8e\\x8c\\x0c\\x87\\xad\\x65\\xd4\\xdc\\x6a\\x1e\\x6b\\xb1\\x3a\\x8c\\x46\\x87\\xb5\\x65\\xcc\\xcc\\x3d\\x6e\\x1e\\x6d\\xb5\\xd9\\xc8\\xa7\\xd6\\x2c\\x72\\x8d\\x95\\x9c\\x5f\\x7f\\x3c\\xa9\\x22\\x5f\\xa7\\xcb\\xaf\\x48\\x6a\\x4d\\x2a\\x67\\x1f\\x12\\x5b\\xaf\\x3b\\xc2\\x09\\x89\\xec\\x53\\x79\\x62\\x6b\\x62\\x45\\xbe\\x5e\\x4f\\x0e\\xad\\x2f\\xda\\xb8\\xbd\\x36\\x04\\x70\\x09\\x3d\\xca\\x99\\xb8\\x67\\x91\\x8c\\x72\\xc3\\x72\\xe0\\x41\\xf3\\x22\\xe8\\x40\\x12\\x2e\\x0d\\x50\\x43\\x84\\x82\\xcd\\x20\\x50\\x83\\x1d\\xac\\x38\\x0e\\x22\\xa7\\x49\\x56\\x0b\\xfd\\x34\\x36\\x8a\\xbb\\x60\\x67\\x04\\xec\\x44\\x88\\x95\\xf3\\x80\\x54\\x0e\\xcd\\x03\\x29\\x00\\xa6\\x05\\x61\\x60\\x25\\x61\\xf0\\x15\\xc5\\xa6\\x85\\x2c\\x82\\xa3\\xe2\\x09\\xa2\\x40\\x4d\\xd9\\xb5\\x40\\x27\\xfe\\x70\\x33\\x44\\x8a\\xbf\\xe5\\x9e\\x15\\xf7\\x45\\x88\\x87\\xe1\\x10\\xdc\\x2a\\xcd\\x6b\\x1b\\x7a\\x92\\x3b\\xc3\\xff\\x85\\xea\\xa1\\x2f\\x60\\x04\\x66\\xa3\\x96\\x0e\\xc5\\xe1\\x16\\x1c\\xd8\\xf6\\xa4\\x99\\x8f\\x31\\x53\\x99\\x11\\x8b\\x67\\x78\\x85\\xf0\\x1a\\x99\\x46\\x21\\xa8\\xd1\\x49\\x40\\x78\\x88\\xf7\\xf3\\x80\\xbb\\x82\\x3d\\x50\\x5f\\xc0\\x93\\x02\\x78\\x62\\x1a\\x36\\xd1\\xd7\\x9d\\x97\\x10\\x78\\x80\\x97\\xaf\\x3d\\x4e\\x10\\x58\\x8a\\x70\\xdf\\x8b\\x4f\\xd6\\x21\\x0a\\xf1\\xd5\\x83\\x15\\x88\\xad\\x8a\\x9b\\x7b\\xe8\\xa1\\x2d\\x62\\x3c\\xc0\\x3b\\xab\\x62\\x06\\x4c\\xa4\\x71\\x87\\xbb\\xde\\x7c\\xb3\\x18\\x37\\xba\\xbf\\x0a\\x9f\\xaa\\x62\\xf5\\x6d\\xc5\\xb7\\x71\\x6f\\x91\\xba\\x44\\xa1\\xf6\\x97\\xc3\\x01\\x03\\xcb\\xe7\\x9c\\xce\\xb0\\xe0\\xbe\\x6c\\xcc\\x85\\x8c\\x69\\xd4\\xfb\\x85\\x02\\x9f\\x94\\xde\\xb5\\x92\\x9e\\xf2\\x12\\xde\\x92\\x33\\x52\\x2a\\xe6\\x28\\x14\\x15\\x45\\x3c\\x50\\x32\\xbf\\xab\\x52\\x31\\xd3\\x3c\\xe5\\x9e\\x4c\\xcc\\x8f\\x45\\x69\\x77\\x74\\x1c\\x3c\\x05\\xf3\\x78\\x78\\xd0\\x58\\x61\\xd7\\x04\\x2e\\x08\\x1f\\x3f\\x51\\xd9\\x0e\\x97\\xee\\x10\\x79\\xf8\\xc3\\xc2\\x22\\xc4\\x65\\x96\\x68\\xdc\\x3f\\xe2\\x52\\x25\\xd9\\xb7\\x17\\x21\\x7e\\x8c\\xd8\\x97\\xad\\xf4\\x4d\\xf4\\x92\\xcc\\x04\\x82\\x3c\\x08\\x28\\x2d\\xd0\\x48\\x30\\x08\\xbc\\x44\\xd1\\xec\\x65\\x98\\xa9\\x60\\xb5\\x62\\xa0\\xac\\x22\\x5c\\x6f\\xb5\\x64\\x93\\x24\\xda\\x69\\x84\\x3d\\x81\\xea\\xd0\\xd1\\x84\\x6b\\x21\\x2c\\xc4\\x8f\\x05\\x37\\x44\\xcb\\x28\\x1d\\x1c\\xdb\\x64\\x53\\x6b\\x0a\\xfb\\xbd\\x16\\x92\\xae\\x24\\x57\\x28\\x55\\x5c\\x84\\xf8\\x00\\x0f\\x09\\x3a\\xfc\\xdb\\xf5\\xc4\\x91\\x64\\x5d\\xa4\\x9c\\xff\\xf4\\x27\\x85\\x57\\x5e\\x94\\xe7\\x4e\\xdf\\x39\\xd8\\x77\\xfb\\x58\\x0e\\x6c\\xc3\\x69\\x75\\x13\\xc5\\x65\\xc4\\x3a\\x22\\x83\\x69\\xf1\\xbc\\x0c\\x86\\xe1\\xbf\\xb7\\xd4\\x9c\\xb0\\x8f\\x8f\\x07\\x15\\x35\\xb6\\xaa\\xb6\\x74\\x3f\\xd1\\xf3\\xfd\\x81\\xfb\\x57\\xca\\xf3\\x26\\x4f\\x76\\x94\\xcf\\xd4\\xea\\x6c\\xbd\\x3b\\xab\\xbe\\xdf\\xf3\\x04\\xb3\\xfd\\x9d\\x21\\x3a\\xca\\x33\\x6c\\x2f\\x93\\x03\\xd5\\x92\\x3f\\x36\\x20\\x00\\x80\\x0f\\x04\\x5f\\x10\\xb3\\xef\\x88\\x20\\x1d\\x89\\xbc\\xe6\\x1a\\xdf\\x69\\x6f\\x04\\x33\\x2d\\xc4\\x82\\xfc\\x64\\x81\\x32\\xbf\\xc0\\x05\\x32\\xd3\\x78\\x08\\x60\\xb4\\x1a\\x6c\\xbf\\x4a\\x47\\x8d\\x66\\xc5\\xa2\\x41\\x20\\x6c\\xf1\\x90\\x9c\\xfc\\x95\\xbe\\x10\\xe7\\x9c\\x8f\\x78\\xa7\\x20\\x14\\x49\\xb7\\x23\\xef\\xdd\\x91\\xff\\xe1\\x73\\xff\\xd3\\x47\\x32\\xea\\xa0\\x1c\\x5b\\x46\\x7a\\x9a\\x41\\x11\\xa9\\x52\\x68\\x68\\x9e\\x6a\\x26\\x67\\xd5\\x11\\x91\\x57\\xe5\\xa9\\xb6\\x53\\xd3\\x27\\xa3\\xd1\\xa0\\x6e\\x47\\x6b\\x04\\x75\\x14\\xf9\\xec\\x45\\xfc\\x5d\\xaf\\x42\\x40\\x6c\\x7a\\x4a\\x94\\x51\\xa1\\x50\\x3a\\x55\\x8e\\x46\\x4b\\xcc\\x16\\xc1\\xd6\\x7f\\xb0\\xfd\\xc8\\xea\\x7a\\xcb\\xbe\\xbe\\x1c\\xbf\\x05\\x58\\x7d\\x75\\x7d\\xf1\\x48\\x71\\x7f\\x61\\x52\\x62\\x61\\x7f\\xc9\\x11\\xee\\x07\\xee\\x42\\x5d\\xa5\\x3d\\xc5\\x8f\\xef\\x0b\\x0c\\xc9\\x68\\x9a\\x2b\\xc5\\x6f\\xb6\\x9f\\x99\\x29\\x02\\xf7\\x2b\\xc2\\xb3\\x90\\x3f\\x76\\xac\\x89\\x86\\x45\\x89\\x2b\\xe0\\xe8\\x5b\\x2b\\x2d\\x5b\\x1b\\x70\\x00\\x9d\\xc7\\x3b\\xc8\\xda\\x62\\x67\\xf3\\xb8\\xcd\\xd9\\xac\\x01\\xb9\\x4c\\x0b\\x82\\x3c\\x22\\x00\\x03\\xa2\\xa3\\xc8\\xd7\\x45\\xd1\\x44\\xd7\\x7e\\x20\\xf8\\x03\\xcf\\x09\\xfc\\x48\\x00\\x78\\x48\\xaa\\x89\\x26\\xca\\x7a\\xa2\\x62\\x63\\xc3\\xe9\\xac\\xd6\\x50\\x7f\\x93\\x92\\xb4\\x38\\x90\\xcd\\xe7\\xa8\\xab\\x5b\\xac\\xb7\\x93\\xf9\\xcc\\x7e\\xe9\\x42\\xba\\x61\\x7b\\xa2\\xa2\\xff\\x71\\x1d\\xe2\\x40\\xfe\\xe6\\xf3\\xc3\\x79\\x5b\\xec\\xfe\\x8e\\xa5\\xc2\\xed\\x9f\\xbf\\xad\\x1e\\x3e\\x43\\x7e\\xc0\\x75\\xdb\\x5b\\xdb\\x0b\\x17\\xf3\\xfd\\xed\\xf3\\xf9\\x23\\x77\\x6f\\xce\\x83\\x07\\xc5\\x01\\x78\\x10\\xdb\\x14\\xb3\\x1f\\xdf\\x5e\\xaa\\x50\\x4c\\x85\\x86\\x35\\x9e\\xfd\\xce\\x21\\x45\\xf7\\x43\\x3d\\xdc\\xa1\\x6f\\x9f\\x6d\\x52\\x84\\x6c\\x0e\\x8b\\x28\\x59\\x7b\\x6a\\x4e\\xe8\\xa1\\x54\\xb4\\xa8\\x82\\xb4\\xf1\\x2e\\xb2\\x7e\\x1a\\x51\\x29\\xea\\x22\\x22\\x22\\xd8\\x19\\xd0\\xdb\\xdd\\x52\\x55\\x60\\x0e\\xe5\\x79\\xb3\\x2f\\x9a\\xdc\\x07\\x03\\xf1\\xbe\\x65\\x3e\\xc5\\xf9\\xfa\\xe8\\x66\\xeb\\xf5\\x2b\\x20\\x11\\xa9\\xd8\\x90\\x5a\\xdc\\x69\\x2b\\xec\\x77\\xaa\\x00\\x54\\x25\\xfd\\x05\\xf6\\xae\\x22\\xf5\\x10\\x8e\\x54\\x5b\\x55\\xba\\x3c\\x6d\\x44\\x84\\x2e\\x4f\\xaf\\xb2\\xa4\\x46\\xe2\\x9f\\xa5\\x90\\x21\\x23\\x03\\x96\\x92\\x52\\xdc\\x57\\x58\\x38\\x50\\xac\\x1a\\x0e\\xd7\\xe6\\x19\\xf4\\xb9\\x9a\\x70\\x85\\x86\\x00\\xe2\\xc9\\x5f\\x91\\xc9\\x66\\x3e\\xc0\\xdc\\x59\\xa2\\xb5\\x75\\xcc\\x38\\x1a\\x1c\\xb3\\x1d\\x76\\x92\\xf5\\xdf\\xae\\x2e\\x48\\x57\\xea\\x8b\\xeb\\xb5\\x0d\\x5a\\x57\\x91\\x3e\\xc6\\x90\\x93\\xe8\\xee\\xcb\\x9d\\x6d\\xb7\\xd9\\xda\\x67\\x73\\x1b\\xbd\\x1f\\x74\\xf5\\x45\\x3a\\x5d\\xb1\\x4b\\xd7\\xc8\\x3e\\x14\\xd5\\xeb\\x5e\\xf3\\xc8\\x78\\xf4\\xc7\\xcb\\xbf\\xe1\\x7e\\x2a\\xfc\\x12\\x69\\x90\\x1d\\xf9\\xbd\\x94\\xa5\\x0d\\x47\\xd8\\xcc\\xd2\\xbb\\xda\\x89\\xb2\\x6c\\xa7\\x68\\x00\\x5f\\x43\\xc9\\xb4\\x94\\x4c\\xf2\\xc5\\xdc\\x95\\x36\\x72\\xe3\\xe3\\xa7\\xfa\\x8d\\xf9\\xbb\\x2a\\x2a\\x77\\xe7\\x26\\x95\\x8c\\xd7\\x14\\x76\\xe7\\x27\\x81\\x6d\\xf4\\x44\\x4f\\x5c\\xe1\\x68\\x9d\\xe8\\x2e\\x19\\x29\\x57\\x93\\xa5\\x38\\x95\\x32\\xd8\\x44\\xe1\\xda\\x1d\\x0f\\xf6\\x1b\\x23\\xa3\\x60\\x11\\x62\\xa2\\x71\\x7c\\xe5\\xd1\\xd9\\x72\\x47\\xcf\\x52\\xbe\\xb6\\xef\\xe5\\x87\\x8f\\x5b\\x36\\x55\\xee\\x1e\\xcc\\xc7\\xb8\\xc0\\x38\\x7f\\xe0\\x54\\x9d\\x5e\\xeb\\x2a\\xd4\\x5b\\x9b\\x47\\x4c\\x88\\x8e\\xd5\\x21\\x86\\x87\\xfe\\x0c\\xf2\\x47\\xc9\\xa4\\x96\\x79\\x74\\xac\\x72\\x73\\xb2\\x34\\xb1\\x21\\x02\\x22\\x63\\xa5\\x52\\x43\\x04\\x05\\x32\\x70\\x56\\xe5\\x75\\x63\\xe2\\xb8\\x6e\\x4c\\xe8\\x56\\x0e\\xbf\\xbe\\x45\\x7c\\x90\\x9b\\x9f\\x83\\x41\\x6e\\x7e\\x50\\x61\\x28\\x35\\x67\\x97\\x92\\xec\\x11\\x44\\x3d\\x33\\x93\\x90\\xb8\\x06\\x21\\x42\\x97\\x92\\xac\\x8d\\x14\\x84\\x48\\x2d\\xf9\\x1b\\x21\\x03\\x41\\x7c\\x03\\xca\\xf9\\xe9\\xf7\\xef\\x22\\xd6\\x93\\x4b\\xfc\\xa6\\xf5\\xb4\\xc1\\x66\\xbb\\xbd\\x79\\x30\\xed\\xfe\\xb4\\x81\\x66\\x9b\\xad\\x69\\x30\\x8d\\x8f\\xaf\\x28\\x4c\\x4b\\x2f\\xac\\x88\\xbb\\x3b\\xae\\xa2\\x30\\x9d\\x7e\\x70\\x9f\\xa5\\x6e\\xc5\\x29\\xee\\x2e\\x96\\x83\\x25\\x08\\x45\\x92\\xbe\\x8d\\x08\\x95\\x01\\xe9\\x5b\\xe0\\xd4\\x1c\\x7d\\xb9\\x23\\xc8\\x9b\\xed\\x81\\x7f\\xda\\x55\\xdc\\xef\\xee\\xb6\\xdd\\x55\\xdb\\x77\\xdf\\xfd\\x7d\\xb5\\x22\\xbe\\xaf\\xee\\x12\\x1c\\x15\\x1c\\xe2\\x30\\x3c\\x2a\\xf6\\xe0\\x58\\xb1\\x15\\x9e\\x76\\xff\\x0a\\xbe\\x2b\\x66\\xc0\\x77\\x2b\\x99\\x1c\\xbe\\x87\\xc8\\xe1\\x73\\x8c\\x63\\xd7\\x40\\xca\\xd5\\xa4\\x84\\x61\\x52\\xae\\x56\\x72\\x33\\xf8\\x42\\xb8\\x88\\x96\\x2b\\x61\\x52\\x80\\xa6\\x05\\x54\\x91\\x65\\x8d\\x57\\x76\\xbc\\x36\\x5a\\x77\\x74\\x65\\xb0\\x5c\\xab\\xaf\\x1a\\x59\\x39\\x58\\x35\\xf3\\xd2\\xa1\\x3a\\x70\\xa3\\xbc\\x5b\\x1b\\x47\\x3e\\xd1\\x29\\x9e\\x6e\\xbc\\x35\\x0f\\x27\\x38\\x8e\\x0e\\xda\\x8a\\xd3\\x5d\\x53\\xbb\\x4e\\xb8\\x6a\\x8f\\xef\\x9e\\xaa\\x37\\x76\\x9d\\xfb\\xfc\\x5c\\x96\\xf8\\xaa\\xb5\\x00\\x4a\\x0a\\xb9\\xf4\\x8a\\x1c\\xf1\\x37\\x90\\x64\\x2d\\x66\\x7b\\xb2\\xc2\\xcb\\x7f\\xe7\\xcf\\x11\\x1b\\x72\\x16\\x7c\\x56\\xfc\\x27\\x7e\\x2f\\xef\\x3c\\xd2\\xc1\\xea\\x0f\\x10\\x84\\xc2\\x97\\xa8\\xd7\\x8f\\x7c\\x67\\xfb\\x33\\xfc\\x1e\\xdd\\x9f\\x91\\xeb\\x9d\\xe4\\xfa\\x4f\\x0b\\xaf\\x91\\xeb\\xdf\\xbc\\x9c\\x88\\x7f\\x2d\\x5d\\x9f\\xfa\\x0f\\x76\\xfd\\xed\\xec\\xfa\\x70\\x76\\xfd\\xaf\\xc9\\xf5\\xcc\\x09\\xf6\\x0f\\xf2\\x81\\xdc\\x97\\x77\\xf9\\xdf\\x64\\xdd\\x79\\x9e\\xdc\\xf7\\xf9\\xcb\\x81\\xf8\\x37\\xd2\\x7d\\xa1\\xd2\\x73\\xf6\\x23\\x9e\\x7c\\x57\\xb0\\xfb\\x7e\\x43\\xef\\xc3\\xdc\\xb3\\xbc\\xe7\\x79\\x0e\\xf2\\xbc\\x53\\xec\\xbe\\x2f\\x5e\\x4e\\xf0\\xde\\xf7\\x19\\xe9\\xbe\\x11\\xa9\\x7e\\xbe\\xfb\\x68\\xbf\\xee\\x21\\x32\\xa1\\x4a\\xf8\\x0b\\xe9\\x55\\x27\\xe9\\x57\\x6b\\x5a\\xa2\\x82\\x8e\\x17\\x91\\x48\\x34\\xea\\x5e\\xca\\xe4\\xe9\\x65\\x05\\xf6\\x71\\xb6\\x2a\\x37\\x48\\x05\\x9e\\x65\\xec\\x68\\x5f\\x7a\\xab\\x5c\\x48\\x30\\x95\\xf7\\x2e\\x56\\xb5\\xdf\\x56\\xae\\x2c\\xb9\\x30\\x3d\\x76\\x71\\xa5\\xc5\\xaa\\x2c\\xde\\xf9\\xca\\xce\\x2d\\xcf\\xed\\x2c\\x2f\\xdb\\xf1\\xf4\\x4a\\xc7\\xe1\\xfe\\x6c\\x73\\xff\\xa1\\x8e\\xd2\\x69\\x1a\\x3f\\x17\\xe6\\x1c\\xda\\xce\\x89\\xe3\\x7d\\xd5\\x27\\x0e\\x2e\\xb6\\x99\\xb3\\x32\\x06\\xcd\\x39\\x50\\xbe\\x72\\xdf\\xab\\x5f\\x1e\\x2b\\xdd\\xf9\\xeb\\x57\\xe6\\x9b\\x6f\\xfb\\xe4\\x8c\\x6a\\xea\\xa5\\x23\\x0d\\x13\\xce\\xd9\\x53\\x4d\\xaa\\x36\\x92\\x29\\xcb\\xe8\\x9a\\x58\\xdd\\x5f\\x9a\\x97\\xdd\\x5b\\x95\\x8e\\x00\\x7d\\xe5\\x72\\x30\\x8f\\x59\\x0c\\xa6\\xec\\x05\\x19\\xd5\\xe5\\x04\\x2f\\x45\\x3d\\x5e\\x75\\xbf\\xb8\\xca\\xe5\\xfe\\x45\\x56\\xf4\\xaf\\x37\\x65\\x0f\\x52\\xd9\\xee\\x20\\xf8\\x85\\xb3\\x74\\x4e\\x92\\x6b\\xfd\\x38\\x72\\x2d\\x00\\x55\\x2d\\x00\\xa8\\x85\\x03\\xb8\\x08\\xf7\\xab\\xdc\\x97\\xde\\x7f\\x08\\xf7\\xba\\x49\\xd6\\xd5\\xf5\\x1d\\xb8\\x16\\x97\\xb9\\x95\\x13\\xfd\\x1c\\xe2\\xf8\\x81\\x09\\xb7\\x42\\xd2\\x73\\x1e\\xc7\\x4f\\x73\\xbf\\xe5\\x22\\x11\\x47\\xf7\\x44\\xd7\\x6a\\xb4\\x8a\\x30\\xa6\\xd1\\xd2\\xa4\\x7d\\xbf\\x5d\\x7f\\x83\\x2b\\xc7\\x4f\\x4f\\xd0\\xe3\\x5b\\x3d\\xfb\\xc2\\x00\\xf2\\x5c\\x81\\x3d\\x57\\xe9\\xa0\\x0c\\x70\\x1c\\x91\\xfb\\x38\\x50\\xab\\x83\\x43\\x3b\\xc5\\xa0\\xe1\\xbf\\x9c\\xff\\x03\\x24\\x9f\\x38\\xc1\\xdf\\x4e\\xb0\\x52\\xfb\\x58\\x8c\\x59\\x06\\x1a\\xe5\\x1f\\xe4\\x95\\x28\\x1b\\x35\\xa1\\x39\\x14\\xf0\\xca\\x78\\x67\\x6d\\x6e\\xb2\\x8c\\x23\\xf7\\x5f\\x93\\xa5\\xd4\\x37\\xf1\\x25\\xee\\x66\\x8a\\xe5\\xe7\\x7d\\x5c\\x09\\xd1\\x64\\x6c\\x54\\xc4\\xef\\xc6\\x92\\x18\\x78\\xc8\\x79\\xa2\\xf8\\x07\\x83\\x89\\xfb\\xac\\xcd\\x9e\\xd7\\x5f\\x63\\x53\\x84\\xdb\\xaa\\xfb\\xf2\\xec\\x6d\\x25\\x19\\xf1\\x41\\x41\\x9e\\xa3\\xd5\\xb6\\x70\\x92\\xfd\\x7e\\x80\\x1c\\x2d\\x36\\xc6\\x07\\xf7\\xc8\\x14\\xf1\\xc6\\x02\\x83\\x86\\xe4\\x7e\\x49\\x52\\x00\\x28\\x92\\xd2\\xed\\x25\\x1a\\x43\\xa1\\x31\\x5e\\x21\\x5b\\xcf\\x97\\x87\\x25\\x18\\x0b\\x0d\\x9a\\x12\\xdb\\x55\\xe7\\xd2\\x13\\xc2\\xe4\\x58\\x97\\x31\\x31\\xd6\\x5f\\x9d\\x5e\\xd0\\xb7\\x98\\x93\\xb3\\xd8\\x57\\x90\\x5e\\x35\\x40\\xcc\\xdf\\xa6\\x8c\\xf1\\x71\\x7a\\xb0\\x9f\\x1e\\xec\\x2f\\x48\\xaf\\xee\\x1f\\x1f\\xcf\\x48\\x69\\x6e\\x69\\x28\\xd0\\xa4\\x97\\xb6\\xb6\\xd6\\xc5\\x6a\\x62\\xeb\\x5a\\x5b\\xcb\\xd2\\x40\\x53\\xd0\\xd0\\xd2\\xac\\x52\\xb1\\x33\\xb0\\xe1\\x54\\x69\\x3a\\x3b\\x93\\xc2\\xc6\\x83\\x70\\x2f\\x73\\xdf\\x97\\x25\\x23\\x2d\\xe9\\xdb\\x18\\x9e\\x8e\\xff\\xd5\\xc8\\x09\\x26\\xc3\\xd9\\xca\\xea\\xb1\\x65\\xe2\\x33\\xba\\xfa\\xc5\\xfa\\x44\\x0f\\x82\\xc2\\x9f\\x20\\x28\\xa2\\x20\\xad\\x71\\xd9\\xa5\\x2e\\x4b\\x0d\\x33\\xe7\\x5a\\x1b\\xac\\x71\\x3d\\x1e\\x18\\x05\\x27\\x13\\x18\\x8c\\x42\\xd0\\xd4\\xef\\xee\\xb1\\x04\\xf8\\x0f\\x87\\x68\\x9d\\x5d\\xd6\\x7f\\xff\\x98\\xc9\\xa1\\xe3\\x50\\xc7\\x3b\\xb9\\xdf\\x22\\x15\\x2a\\x27\\xef\\x4b\\xb9\\x45\\x15\\x46\\xde\\x97\\x08\\x4f\\xbe\\x5b\\xf2\\xe8\\x1c\\xb6\\xc4\\x33\\x1f\\xa8\\x89\\x93\\x93\\x4f\\xdc\\x4d\\xce\\xdd\\x69\\x5a\\xab\\xd1\\x14\\x92\\xd3\\x09\\x56\\x6b\\x5e\\x6a\\xcd\\x6a\\xa6\\xbf\\x69\\xad\\x3a\\x35\\xd7\\x66\\x49\\x48\\x72\\x38\\x8a\\x34\\x35\\xdb\\x32\\xc3\\xaf\\xbd\\xc2\\x2f\\x73\\xad\\x26\\x35\\xd7\\x6a\\x4d\\x48\\xca\\xc9\\x2d\\xd4\\x92\\x03\\x5c\\x67\\x49\\x2b\\x40\\x60\\x64\\x42\\x68\\x48\\x5c\\x64\\x20\\xb4\\x97\\xac\\x90\\xef\\x81\\x11\\xb1\\x21\\xa1\\x09\\x51\\x41\\x40\\xbe\\x8b\\xef\\x94\\xb4\\x60\\x08\\x8a\\x8c\\x0f\\x0d\\x8d\\x8b\\x08\\x82\\x8e\\x2b\\x17\\x24\\x92\\x0b\\x70\\x7b\\x09\\xeb\\xcf\\x67\\xd1\\x23\\x7c\\x06\\x3f\\x8f\\x22\\x48\\x7f\\x06\\x61\\x3a\\x57\\x55\\x72\\x8a\\xf0\\x50\\x45\\x90\\x5f\\x87\\x92\\xea\\xe2\\x9c\\x8a\\xcf\\x70\\xff\\xe8\\x60\\xc9\\x16\\xd1\\x0d\\xc5\\x4f\\x88\\x31\\x58\\xbd\\xbd\\x64\\x0c\\x04\\xf1\\x33\\x4f\\xc0\\xaf\\xe1\\xf6\\xdf\\x68\\xbf\\xb0\\x19\\xb2\\x37\\xff\\x3f\\xed\\x8b\\x9b\\xc5\\xb7\\x25\\xfb\\xd5\\xb7\\x50\\x06\\x9f\\xce\\xdf\\x86\\x26\\x51\\x12\\x32\\xa2\\x4f\\x3a\\x89\\xf4\\x01\\x39\\x1c\\x43\\xe9\\xee\\x3d\\x4c\\x7a\\x3d\\xfb\\x49\\x8f\\xd0\\x73\\xef\\x21\\x1f\\xa4\\x7b\\x7e\\x8c\\xd2\\xf9\\x3a\\xfe\\x7e\\x72\\x4f\\x0a\\x4a\\x43\\x6f\\xfb\\xee\\xb1\\xba\\x77\\x49\\xf7\\xbc\\xed\\xbd\\x67\\x17\\xbb\\x87\\x8e\\x09\\x31\\xaf\\xf1\\x16\\xf2\\x9e\\x09\\x28\\x98\\x8c\\x49\\x90\\x1f\\x47\\xd7\\x73\\x06\\x79\\x07\\x15\\xe8\\xe5\\x40\\x5e\\x3b\\x9c\\x33\\x0c\\x17\\xc4\\xf1\\x61\\x71\\x8c\\x8b\\x12\\x5f\\xe5\\x39\\xf1\\x93\\x50\\xcd\\xf1\\xc4\\xec\\xaf\\x77\\xa7\\xe1\\xef\\xe3\\xfe\\x80\\x00\\xf7\\x43\\xee\\x87\\x02\\x02\\xd8\\xbe\\xeb\\xc1\\xcb\\x95\\x78\\x90\\xf4\\x88\\xbf\\x47\\x5e\\xd0\\x75\\xc6\\x6b\\x1b\\x1a\\x04\\x47\\x61\\xb5\\x5a\\x03\\xcb\\x13\\xf5\\xe7\\x0b\\x6c\\x8e\\xc5\\xf2\\x7a\\x5a\\x87\\x68\\xd4\\x8f\\x02\\xf8\\xa3\\xbc\\x8c\\xd4\\x20\\x01\\xa5\\x23\\x9a\\xd7\\xbc\\x0a\\xd5\\xa3\\x56\\xd4\\x87\\x86\\xd0\\x28\\x69\\xcd\\x0c\\x9a\\x47\\xcb\\x68\\x27\\xd9\\x2f\\x1d\\x44\\x47\\xd1\\x6d\\xe8\\x14\\x3a\\x4b\\xf9\\x9b\\xcf\\x9c\\x3e\\x79\\xfc\\xd6\\x63\\x47\\x0e\\x1d\\xd8\\xb7\\x67\\xd7\\xf6\\xad\\x8b\\x0b\\x73\\xb3\\xd3\\x53\\xe3\\x63\\x23\\xc3\\x03\\xfd\\xdd\\x6d\\xcd\\x8d\\x35\\xd5\\x15\\xa5\\x85\\x05\\x79\\x36\\x5d\\x72\\x6c\\x88\\x3f\\x8e\\x26\\x8d\\xb2\\xd1\\x68\\x3c\\x22\\x7b\\x69\\x12\\x7e\\xbb\\x92\\xfc\\x12\\xbc\\x4a\\x0e\\xfd\\x97\\x00\\xac\\xf4\\x91\\x14\\x98\\x49\\x84\\x02\\x05\\x15\\x46\\x09\\xd2\\x37\\xb5\\x74\\xa9\\x5d\\x0d\\x34\\xc0\\x81\\x6e\\xa8\\xc8\\x5f\\xfa\\x59\\x1d\\xa5\\xa5\\xff\\xda\\x81\\x5c\\x4b\\x2e\\x55\\xdb\\x39\\x7a\\x81\\x9d\\x5d\\x12\\x15\\xb1\\xf1\\xb3\\x95\\x5e\\xa1\\x56\\x0b\\x94\\x11\\xd7\\xf3\\x0b\\x1b\\x3f\\xff\\xb1\\x2a\\x2f\\xaf\\xaa\\x3a\\x2f\\xaf\\xf2\\x3e\\x6b\\x5e\\x42\\x82\\x52\\x59\\xec\\x98\\xec\\x36\\xa8\\x35\\x69\\x69\\x6a\\x75\\x1a\\x0e\\x49\\x52\\xc6\\x25\\x5b\\x0b\\xcd\\x99\\xf9\\x96\\xf5\\xdb\\x8b\\x67\\xf1\\xf7\\xe7\\x8a\\xde\\xff\\xde\\x13\\xb3\\x5c\\xf9\\x13\\x45\\x62\\x65\\x62\\x7c\\x7c\\x62\\x95\\xe6\\x9e\\xf2\\x7b\\xdc\\xcf\\xde\\x5d\\x2e\\xfd\\x99\\xb4\\xaa\\x52\\x4a\\xad\\x62\\x4b\\x31\\xfb\\xe1\\x7e\\x57\\xc4\\x7e\\xb0\\x36\\xa7\\xac\\x2c\\xa7\\x98\\xfe\\xb3\\xcd\\x68\\x54\\xea\\xfd\\x48\\x8a\\x7b\\xa3\\x41\\xfc\\xd6\\x36\\x9d\\xd1\\xa8\\x2b\\xa6\\xff\\x74\\xc4\\x24\\xc5\\xc4\\x99\\x32\\x2d\\x99\\xdf\\x74\\x6f\\x7e\\x7a\\xbe\\xa4\\x64\\xfe\\x69\\x6e\\xe8\\xa2\\x73\\x60\\xc0\\x79\\x71\\x40\\xcc\\x8e\\x8b\\x8e\\x8a\\x19\\x80\\xb7\\x9d\\xec\\x67\\xbd\\xa2\\x84\\xfd\\xe0\\x89\\x30\\x65\\x46\\xeb\\xad\\xe2\\xa3\\xb7\\x40\\xf4\\x2d\\xe2\\xa3\\x9e\\x0f\\x08\\x09\\x28\\xd4\\xfd\\x3d\\xfe\\x19\\xbf\\x65\\xc4\\x91\\x19\\x98\\x49\\xa4\\xb0\\x1d\\x85\\x3a\\x83\\x6c\\x16\\x12\\x64\\x99\\x1e\\xce\\x63\\x24\\x98\\x8d\\xfe\\x9c\\x40\\x8d\\xab\\xc5\\x9c\\x0f\\x01\\x65\\x65\\x50\\x4e\\xe6\\x04\\x26\\x28\\x0e\\xa5\\x3a\\xca\\xca\\x91\\xde\\xa5\\xbf\\x78\\x13\\x6e\\x70\\xbf\\xe0\\xfe\\x38\\x7e\\x4d\\x16\\xa4\\x08\\x8c\\xce\\xd4\\x28\\xb5\\x95\\x13\\xce\\xdc\\x91\\x5a\\x23\\x7c\\x15\\xa7\\xc5\\x68\\x53\\x14\\x31\\xf1\\x01\\x89\\x24\\x83\\xd8\\x57\\xbe\\xf2\\x95\\x59\\x9e\\xc7\\x3c\\x2f\\x6b\\x5d\\xcf\\x5e\\xcf\\xe6\\xde\\x7e\\x3f\\x96\\x04\\x9a\\x86\\x25\\x3b\\xf2\\x9c\\x69\\xce\\xc9\\x5a\\x7d\\x52\\xe9\\x78\\x95\\xc3\\xec\\xb4\\xc5\\x59\\xb3\\xf4\\xc1\\x1a\\x83\\xce\\x62\\xee\\x7b\\xc2\\xdd\\xc9\\x07\\x5c\\xe2\\x11\\x46\\xdf\\xb9\\xfc\\x47\\x1e\\xf1\\x17\\x19\\xb7\\x94\\xdf\\x4b\\xda\\xb8\\x50\\x9e\\xbe\\x03\\x57\\x7c\\x20\\x6c\\x99\\xd0\\x7b\\x08\\x2b\\xa2\\x3c\\x32\\x92\\x47\\x40\\x80\\x59\\xb3\\xb3\\xe7\\x37\\x65\\x01\\x98\\x46\\xce\\xd3\\x4f\\x26\\xd8\\x0e\\x89\\x65\\x73\\x2d\\x2d\\x73\\x65\\x89\\x00\\x89\\xe5\\x5b\\x5a\\x5a\\x66\\xcb\\x12\\x00\\xde\\x1b\\x7e\\xf9\\x44\\x47\\xc7\\x89\\x97\\x87\\x3f\\x35\\xfc\\xf2\\xf1\\x8e\\x8e\\xe3\\x2f\\x8d\\x84\\x56\\xde\\xba\\xa5\\xa2\\x72\\xee\\xd6\\xca\\x1f\\x55\\xde\\x36\\x5f\\x55\\xb5\\x70\\x6b\\x25\\x02\\x28\\x47\\x88\\x3b\\xc3\\xa5\\xa0\\x54\\x1a\\x3b\\x85\\xa5\\x58\\x15\\x0c\\x3c\\xb0\\xb0\\x74\\x6a\\xdd\\x87\\x51\\x6f\\x50\\x7a\\x11\\xaa\\x8f\\xd3\\x84\\x93\\x98\\x73\\xbf\\x58\\x62\\xaf\\xb4\\x83\\x2f\\xa3\\xf3\\x55\\xe9\\x8f\\xe4\\x2a\\xee\\x8c\\xfb\\xf3\\xa0\\x4a\\xb0\\x68\\xa3\\x09\\x54\\x23\\xb5\\x6d\\x88\\xdb\\x0c\\x19\\xae\\xc9\\xe2\\xbc\\x4d\\x35\\x86\\x64\\x5b\\x99\\xe6\\x7b\\xf0\\x92\\x0b\\xe2\\xe3\\xed\\xf6\\x9c\\x78\\x95\\x4d\\x13\\xd1\\xe5\\x72\\xf4\\x97\\x69\\x93\\xf2\\xdb\\x73\\xd2\\x5d\\xd5\\xe5\\xa9\\x5f\\x40\\x18\\x8a\\xf8\\x77\\xb9\\xaf\\xc9\\x3e\\x4d\\x6d\\x49\\xa4\\x6f\\x74\\xd1\\x02\\x93\\x0f\\x6a\\xbd\\x5c\\xad\\xb5\\x3a\\xa4\\x2e\\x92\\x7b\\x50\\x6c\\xf4\\xb1\\xac\\x6b\\xb8\\xaf\\xed\\xfb\\xf2\\x17\\xf7\\x42\\xc4\\xd4\\x37\\x71\\x94\\xce\\x96\\xa2\\xb6\\x66\\x66\\x25\\x47\\x24\\x12\\x01\\xeb\\x84\\x28\\xad\\x4d\\xa5\\xb2\\x64\\x99\\xe9\\xf7\\x20\\xe0\\xdf\\x7d\\xe9\\xa5\\x3f\\xff\\x30\\x39\\xcf\\x18\\x97\\xa0\\x4a\\x80\\xc8\\x24\\x8d\\x22\\x38\\xa9\\xd0\\x9c\\x14\\xaf\\x4a\\x08\\x8b\\x57\\x85\\x33\\x3b\\x74\\x28\\xff\\x2e\\x7f\\x42\\xf6\\x1c\\xb5\\x89\\x51\\x9d\\x58\\xbe\\xf1\\xf9\\x4a\\x3b\\x69\\x36\\x19\\x16\\x87\\x07\\x24\\x12\\xc5\\x3d\\xb7\\xff\\x5b\\x6f\\xef\\x87\\xe0\\x63\\xee\\x58\\x6b\\x5a\\x2c\\xa8\\xad\\x05\\xb1\\x32\\xd3\\x40\\x9d\\x29\\x3e\\x23\\x37\\x81\\x7f\\xf7\\xb5\\xd7\\xfe\\xbc\\x75\\x01\\xcb\\x42\\xe2\\x95\\xb1\\xc9\\x61\\x42\\x1d\\x84\\xa5\\xe6\\xa6\\xa9\\xcd\\x29\\x61\\xbc\\x8d\\xf2\\x52\\x90\\x76\\x7e\\x4a\\x36\\x42\\x9e\\x13\\x40\\x9e\\xe3\\x7f\\xd5\\x73\\x04\\x82\\xbb\\xe0\\x3e\\x75\\xfc\\xf5\\xd7\\x8f\\x43\\xf0\\x56\\xf1\\x8d\\x89\\x97\\x6f\\xe1\\xdf\\x7d\\xea\\xa9\\x3f\\xf7\\xff\\x0a\\x61\\xb0\\x92\\xfa\\xdd\\xb7\\xe1\\x3e\\x2c\\xc9\\x4f\\x81\\xde\\x09\\x56\\xb9\\x1a\\x97\\x2e\\x43\\xc8\\x89\\xd7\\x5e\\x3f\\x81\\xdf\\x3d\\xf6\\xf2\\x84\\xf0\\x5f\\x7f\\x7e\\xea\\x29\\xd8\\xfd\\x2b\\xc4\\xda\\x56\\xc6\\xbf\\xc6\\xdd\\x2b\\x3b\\x83\\x14\\x28\\x8a\\xdc\\x1b\\x19\\xce\\xa3\\x2b\\xf3\\x8e\\xba\\xe1\\xe8\\x9e\\x57\\x4f\\x9f\\x7d\\x2f\\xce\\x6a\\x9e\\x25\\x69\\x42\\x5a\\xb2\\x60\\x5c\\xd8\\xdc\\xd3\\x3d\\x2d\\xec\\x5a\\xfe\\xe4\\x3d\\xc2\\xb3\\x05\\x7d\\x25\\x2a\\x55\\x49\\x5f\\x41\\x53\\x4b\\x6b\\x63\\xc0\\x0f\\x58\\x70\\x4c\\x12\\xff\\x32\\xfe\\xba\\x2c\\x0d\\x05\\x12\\xf9\\x1b\\x20\\x80\\xf9\\x2a\\x4f\\x46\\x52\\x78\\x82\\x3a\\xbc\\x3e\\x3e\\x01\\xb6\\x09\\x39\\xea\\xca\\x62\\x47\\x74\\xb6\\xa5\\x3f\\x67\\x0f\\x5b\\x07\\xaa\\x18\\xdf\\xe7\\x09\\x24\\x47\\x01\\x34\\x8b\\x4d\\x00\\xf0\\x98\\xce\\x3e\\x1e\\x2f\\x79\\xc2\\xa5\\x36\\x71\\xe0\\x33\\xc6\\xb3\\x69\\x07\\xaa\\x2b\\xfc\\xbf\\xf3\\xee\\x6f\\xec\\xdc\\x05\\x3f\\x58\\x82\\xef\\xed\\x74\\xef\\x82\\x9f\\xfd\\x11\\x1c\\x04\\x82\\x7b\\xe2\\xfd\\x65\\xb8\\x88\\x87\\xa4\\x18\\xd5\\xff\\x26\\xe5\\x67\\x93\\xf2\\x29\\xc7\\xb8\\x99\\xfa\\x29\\x83\\xa4\\xdc\\x70\\x5e\\xf6\\x48\\x5f\\x8e\\x38\\x4f\\x66\\x38\\xfa\\x28\\xa5\\x12\\x21\\x33\\xc9\\x22\\x40\\xb9\\xc6\\xe3\\x62\\xc8\\xad\\x51\\x2a\\x3f\\x3f\\x6f\\x66\\x38\\x3a\\xe0\\x1e\\x9c\\xec\\x95\\xac\\xc8\\x57\\x82\\x56\\xff\\x1b\\xb6\\xbb\\xce\\xef\\x6c\\x48\\x2d\\x68\\xc8\\xb0\\x0d\\x56\\xa7\\x43\\xcd\\xca\\x1d\\x0d\\xe2\\x5b\\x50\\x68\\xdf\\xdc\\x6e\\xcd\\x6e\\x99\\xb4\\x89\\xaf\\x43\\x7c\\xf6\\x78\\x8b\\x35\\xaf\\x77\\xce\\x26\\x5e\\xe6\\x4f\\x40\\x52\\xf5\\x6a\\xaf\\xbd\\xa5\\x30\\x3d\\x38\\xc0\\x54\\x35\\x94\\xdf\\xb5\\xab\\x51\\x0b\\x58\\x2f\\x16\\x43\\x4c\\x4e\\x47\\x71\\x61\\xbb\\x3d\\x0e\\x86\\x21\\x2a\\xab\\x91\\xe4\\xf1\\xca\\x52\\x00\\x02\\xb4\\x8f\\xc8\\x0c\\x0d\\x91\\x19\\x7a\\xe6\\x63\\xc0\\x9c\\xc0\\x61\\x61\\x41\\x06\\x02\\xb5\\x70\\x6c\\xf1\\x21\\xd8\\x3d\\xa1\\x25\\x95\\x2c\\x88\\x4e\\x8f\\xf4\\x69\\xa9\\x24\\xc5\\xb9\\xdc\\x2f\\xf6\\x3a\\xe9\\xa2\\x66\\x56\\x44\\x26\\x5d\\xe8\\x1e\\x8c\\xd7\\x04\\x35\\x6e\\xbf\\xd4\\xbf\\xf8\\xf4\\x5a\\x09\\x80\\x73\\xc7\\xb3\\x4b\\xfd\\x17\\xb6\\xd5\\x07\\xad\\x29\\x9f\\x38\\xd9\\x77\\xb8\\x27\\x03\\xc0\\xd8\\x79\\xa8\\xf7\\xf4\\xd3\\x4a\\x98\\x1f\\x38\\xb9\\xc9\\xd2\\x75\\xfb\\x67\\x36\\x1f\\x9d\\xf9\\xec\\xed\\x5d\\xb6\\xd1\\x53\\xfd\\xb7\\x9e\\x81\\x9a\\x6d\\xf7\\xb6\\x1e\\x6b\\xb9\\x77\\xad\\x16\\x4e\\x9c\\xa4\\x63\\xcb\\xf2\\x84\\x35\\x93\\xbe\\x0f\\x46\\xf1\\xcc\\x8b\\x89\\x04\\xe0\\x30\\xf2\\xf4\\x35\\x2f\\xf5\\x75\\x48\\x08\\x42\\x21\\xf1\\x21\\x71\\x8a\\x50\\x72\\x59\\x90\\x4a\\xe6\\xed\\x67\\x96\\x27\\x8a\\x53\\x50\\x57\\x36\\x45\\xac\\x7c\\x1d\\xc6\\xb7\\x7e\\xe1\\x74\\x1b\\x40\\xfb\\xd9\\x2f\\xad\\xfc\\xf2\\x97\\xc3\\x17\\x17\\x4a\\x30\\x14\\xcd\\xdf\\x3b\\xc4\\x9f\\xc0\\x4d\\x27\\xde\\x5c\\x19\\xdd\\xf6\\xe6\\xf1\\x06\\xe0\\x75\\xeb\\x25\\xe0\\x5c\\xbc\\x34\\x34\\x3e\\x78\\x71\\xb1\\x04\\x53\\x1d\\xe9\\x5b\\x2c\\xa7\\xd7\\x09\\x14\\xc8\\xe2\\xd7\\x38\\xc4\\x0b\\x1c\\x4f\\x19\\x0e\\x24\\xfb\\xa6\\xcf\\xa8\\x79\\xb5\\xaf\\x47\\x15\\xe5\\xf9\\xe5\\x3e\\xe9\\x3e\\x85\\xdf\\x5e\\x7f\\x85\\xab\\x72\\xdb\\xf0\\x22\\x4e\\x13\\x0b\\xc9\\x5c\\x9d\\x14\\xa7\\xa5\\xfd\\xc5\\xf7\\x59\\x4e\\x9e\\x13\\xc8\\x9f\\xe5\\xf5\\x92\\x00\\x8f\\x23\\xbe\\x28\\xbf\\x6b\\x67\\xad\\x42\\xed\\x29\\xf3\\x1b\\xee\\x43\\x3b\\xb9\\x0e\\xb7\\x0e\\xef\\xc2\\x51\\xee\\xdf\\xd0\\xf2\\x3a\\xa4\\xf2\\x0e\\x93\\xb1\\x4d\\x23\\x63\\x9b\\x45\\xb9\\x2f\\x8d\\x08\\xf3\\x02\\x7d\\x15\\x38\\x19\\x87\\x65\\x0b\\xbe\\xa1\\x95\\x21\\xea\\x64\\x1d\\xd9\\x30\\xc4\\x04\\x7e\\xa1\\x61\\xc3\\x4b\\x22\\x25\\xae\\x1d\\xde\\x6b\\x16\\x0f\\x96\\xcf\\x2b\\x4d\\x37\\xb9\\xbc\\x96\\xb7\\xf5\\x95\\xfd\\x55\\x00\\xa5\\x3b\\x9f\\x5f\\xee\\xb8\\x7b\\x5b\\x53\\xc8\\x6a\\x48\\x41\\xc7\\x5c\\x49\\xff\\xd1\\xde\\x4c\\x80\\xec\\xe1\\x93\\x03\\xfa\\xce\\x36\\x57\\x22\\x31\\x28\\xbc\\x76\\x9b\\xa9\\x50\\x1d\\xd2\\x71\\xfb\\x9b\\xf3\\x07\\xe7\\x3e\\x7b\\xba\\x3d\\xa3\\xe7\\x50\\x57\\xc9\\x40\\x71\\x72\\xd5\\xca\\xf9\\xf6\\xc3\\x9d\\x17\\xd7\\x6a\\xe4\\x51\\xda\\x44\\x48\\xdc\\x24\\x71\\x74\\xd0\\xdc\\x2f\\xb4\\xaf\\x69\\x7f\\x50\\x5c\\x1a\\xb7\\xe4\\xcd\\xfc\\xc2\\xdc\\x5e\\xc8\\xd7\\xcb\\x57\\xe7\\x39\\xe3\\xfe\\xb0\\xec\\x7e\\x66\\x79\\x19\\xb7\\x2c\\xd3\\x14\\xdd\\xfc\\x09\\xf7\\x2f\\x70\\x3c\\x2d\\xef\\x5d\\x52\\xde\\x3f\\xf8\\xe3\\x52\\x79\\x74\\xf6\\x00\\x46\\xc0\\x00\\x1d\\x0c\\x39\\x54\\xc4\\x6d\\x28\\x2f\\xc2\\x33\\x66\\xd4\\x7d\\xf6\\x2e\\x17\\x41\\x42\\xda\\xdb\\xd6\\x7f\\x07\\x35\\x44\\x6f\\x3c\\x3e\\xb3\\x5e\\xbb\\x79\\x33\\xf7\\x8a\\xd4\\xc7\\xaf\\x5c\\xfe\\x23\\xf7\\x73\\x52\\x47\\x25\\x8b\\x69\\x66\\xa4\\xc9\\x98\\xc3\\x4b\\x5e\\x5e\\x95\\x4a\\xa8\\xa7\\x64\\xe9\\x3c\\x35\\xb5\\x5b\\x39\\xaf\\x48\\xf4\\xf4\\x1e\\x37\\xb9\\x13\\x70\\xc9\\xec\\xc9\\xa6\\x8e\\x33\\xf3\\x15\\xb2\\x9d\\x90\\xd5\\xbc\\xb9\\x20\\x6f\\x53\\xad\\x11\\xf3\\x27\\xd6\\xbf\\xd7\\x75\\xeb\\xa0\\x35\\xbd\\xe7\\xe8\\x40\\xc5\\xa6\\x92\\x44\\x5d\\xe5\\x58\\x31\\x02\\xf4\\x63\\x9a\\x03\\x98\\x3c\\x2b\\x88\\x3e\\x2b\\x40\\x06\\x9c\\xd7\\x21\\x02\\x4b\\x9c\\xd4\\x1f\\xe1\\x84\\x20\\x9a\\x3d\\x4b\\xce\\xfa\\xc2\\x21\\x29\\xc0\\x97\\x9f\\x5c\\x5b\\x7b\\x18\\x3e\\x7f\\x97\\xfb\\x32\\x36\\x9e\\xc3\\xf6\\xfb\\xc4\\xcd\\xa4\\x4f\\xce\\x3f\\x0a\\x9f\\x76\\xff\\xcb\\xbd\\x03\\x01\\xfa\\x35\\x29\\xb7\\x9a\\x3f\\xe1\\xc9\\x11\\x49\\x73\\x7b\\x7a\\x81\\xc5\\x45\\x52\\x8e\\x48\\x3f\\xa5\\x51\\x4b\\xfb\\xc3\\x0a\\x53\\xf8\\x27\\xeb\\x0f\\xee\\x19\\xa7\\x12\\x16\\xd0\\x13\\x2c\\x7e\\x87\\xd6\\x47\\xe3\\x54\\xf9\\x09\\x18\\xb3\\xfc\\x76\\x52\\x1f\\x00\\x5e\\xf2\\x0a\\x5a\\x9a\\xe3\\x8e\\x4d\\xd9\\xab\\x72\\xdc\\xcd\\x82\\xfa\\xd2\\xb2\\xf8\\x4e\\x87\\xf8\\xc3\\xe5\\x8f\\xe1\\x3c\\xdc\\xfe\\xfe\\x32\\x1f\\xe6\\xde\\x81\\xf7\\xbc\\xff\\x4f\\x56\\x36\\x21\\x11\\xe2\\xfe\\x4e\\x3e\\xb1\\xfc\\x82\\x72\\x52\\x34\\xa6\\xf9\\x05\\x69\\xdd\\xc0\\xd3\\x54\\x45\\x38\\xed\\xd6\\x0d\\x66\\x30\\xee\\xef\\xf3\\xee\\x97\\xb9\\xa5\\x05\\x4c\\x50\\xc6\\xd4\\x91\\xca\\x9f\\xa0\\xce\\x54\\x52\\x9d\\x3b\\xc8\\x7b\\xe0\\x20\\xef\\x81\\x12\\x65\\xa2\\x44\\x67\\x9c\\x2f\\x80\\x9a\\xe3\\xbc\\x53\\x3e\\x2d\\xcd\\xa8\\x61\\xfd\\xe6\\xd9\\x54\\x7f\\xa0\\xb2\\xe4\\x80\\x82\\xad\\x1f\\x5f\\xae\\xdf\\x37\\xd5\\x68\\x4b\\x80\\x82\\x95\\x8f\\x2f\\x2f\\x3d\\xbd\\x52\\x00\\xab\\x60\\x68\\x3f\\xd8\\xd7\\x77\\xb0\\xdd\\x00\\x60\\xe8\\x38\\xd8\\xd7\\x4f\\xd2\\x19\\x01\\x0e\\xa2\\xa9\\x68\\xd2\\xea\\xc6\\xd7\\x8e\\x54\\x2d\\x4f\\xbf\\x79\\x57\\x5f\\xef\\x5d\\x6f\\x4d\\xe3\\x96\\x0b\\x3b\\x5d\\xf5\\x3b\\x2f\\x34\\xaf\\x34\\x5f\\xdc\\x55\\x5f\\xbf\\xeb\\x42\\x0b\\xa9\\xdf\\xe2\\x65\\x2b\\xdf\\x4e\\xea\\x17\\x8f\\xb2\\x69\\x74\\x05\\xe9\\x49\\xc4\\xd1\\xb4\\x1b\\x18\\x55\\xdf\\xb0\\xae\\x69\\xe9\\x9e\\xba\\x92\\xb0\\x33\\xb2\\x2d\\xb9\\xb9\\x7a\\xd7\\x0e\\x29\\xc5\\x3d\\xf9\\xff\\xd3\\x2a\\x8a\\xaa\\x6a\\xdd\\xd6\\x57\\xf7\\x55\\x02\\x54\\xec\\x7b\\x65\\x65\\xe5\\xd5\\x7d\\x15\\xb0\\x0d\\xcc\\x83\\x27\\x07\\x07\\x8f\\x0f\\x9a\\x81\\x7c\\x3a\\x31\\x38\\x74\\x62\\x30\\x8b\\xd4\\xbb\\xfe\\xc4\\xce\\xb1\\xd4\\x97\\x6b\\xbf\\xe9\\x1f\\xd0\\x79\\xf6\\xf3\\x5b\\x96\\xb7\\x7c\\xfe\\x5c\\x57\\xe7\\xb9\\xcf\\xcf\\xe3\\xae\\x4b\\xdb\\xaa\\x6b\\xd6\\x2e\\x76\\xae\\x74\\x5e\\xda\\x5e\\x53\\xbd\\xfd\\x52\\x17\\xa9\\xfb\\xeb\\x8c\\xcf\\xfc\\x04\\x65\\x6c\\xa0\\x11\\x72\\xa1\\x80\\xb8\\x30\\xe6\\x2b\\x23\\xe7\\x28\\xd1\\xd0\\xa8\\x27\\x4c\\xc4\\x23\\xbf\\x0c\\x99\\xaa\\x8d\\xf2\\xcb\\xb3\\xfe\\x41\\x94\\x1a\\x7c\\x2b\\x1e\\x01\\x95\\x5d\\x5a\\x83\\x8b\\x54\\xf0\\x1b\\xaa\\x06\\x72\\x20\\x67\\x9f\\x7b\\x3b\\x14\\xe4\\x4c\\x36\\x5b\\xec\\x9d\\x0b\\xf9\\xe2\\x8f\\xa8\\x45\\x90\\xac\\x73\\xe9\\x9d\\x87\\xfa\\x9c\\x63\\xf5\\x8e\\x48\\x31\\x26\\x00\\xe7\\x43\\x52\\x61\\x4f\\x61\\xd9\\x60\\x51\\x12\\x20\\x60\\xe3\\x6d\\x25\\xfd\\x59\\xcd\\xd6\\x34\\x0f\\x93\\x0b\\x63\\x34\\x16\\xb6\\x30\\x85\\x05\\xe1\\x51\\x2f\\xbe\\xbe\\x92\\xab\\xaf\\x28\\x2b\\x2e\\xca\\x73\\xa8\\x92\\xe3\\xe3\\xa2\\x23\\x65\\x7e\\x91\\x46\\xc8\\x31\\xf1\\x7a\\x93\\x70\\x0d\\x29\\x14\\x66\\x9c\\x50\\x49\\xc2\\xb5\\x90\\x7a\\xee\\x75\\x48\\xb1\\x57\\xba\\xea\\x53\\x32\\x36\\x0d\\x77\\x95\\xea\\xf5\\x65\\x5d\\xc3\\xe3\\xa6\\xd6\\x7b\\x77\\x36\\x0a\\xdb\\x71\\x7e\\xef\\x52\\x41\\xd6\\x96\\x41\\x67\\x6a\\x5e\\x6d\\x43\\x5d\\x52\\xe6\\xa6\\xc1\\xf6\\x12\\x6d\\xc7\\xc1\\x8b\\xd5\\x1d\\x8f\\x1d\\xed\\x11\\xd6\\xb8\\xf2\\xc9\\xbd\\xc5\\xe6\\xc5\\x91\\x52\\x50\\xa5\\x97\\x65\\x6b\\xe2\\x22\\xfc\\x02\\x13\\x74\\xd6\\xca\\xee\\xdc\\xdc\\x6e\\x12\\xf1\\x1a\\x92\\xd1\\x75\\xa8\\xbb\\x74\\xb0\\x28\\x31\\x22\\xab\\x31\\x3f\\xad\\x38\\x4b\\x1d\\x1b\\x21\\x0f\\x4a\\x34\\xe4\\x54\\xf5\\xe6\\x76\\xae\\xd4\\x24\\xeb\\x3b\\x8f\\x0c\\xd5\\x8c\\x14\\xc6\\x46\\x98\\x24\\x1c\\xcd\\x28\\x42\\xfc\\x04\\xd5\\x7b\\xd8\\x3b\\xcc\\x61\\xf0\\x75\\xba\\x87\\x55\\xc1\\x6f\\x43\\x06\\xc6\\x09\\xb1\\x60\\xbb\\x58\\xc0\\x73\\xbc\\xee\\xfd\\x1f\\xf2\\xba\\x49\\x16\\x57\\x43\\xfa\\x2c\\x9a\\xdc\\x1f\\x4b\\x65\\x23\\x4f\\xee\\xc7\\x40\\xde\\x62\\xbc\\x61\\xd9\\x8f\\x45\\x84\\x2f\\x4f\\x2b\\xf8\\xd1\\x9c\\x5a\\x1e\\x41\\x46\\xac\\xb9\\x9e\\x69\\x16\\xc1\\x47\\x43\\xf9\\xd2\\xbd\\xbd\\x7d\\xf7\\x12\\x24\\xfa\\x0a\\x80\\xa9\\x65\\xb1\\xa2\\x7c\\xb1\\xc5\\x04\\x40\\xde\\xc2\\xdf\\xf7\\x9f\\x9d\\xc8\\xc9\\x99\\x38\\x33\\xc0\\x85\\xaf\\xff\\xbe\\x62\\x8e\\xcc\\xe0\\xfa\\xb9\\x0a\\x2e\\x9c\\xd5\\x7b\\x8c\\xd4\\x7b\\x95\\x3c\\xd7\\x8f\\xe6\\x8e\\x04\\x00\\x44\\x25\\x1a\\xcd\\xf6\\xe8\\xad\\x7a\\x04\\x93\\x3e\\x92\\xd1\\x0c\\xac\\xb8\\x95\\x68\\x7d\\x33\\x07\\x44\\xcb\\x36\\xd1\\x7a\\xe0\\x9d\\x91\\x61\\xee\\x59\\x22\\x37\\xa8\\xbc\\x48\\x27\\xe5\\x3c\\x4b\\xe7\\x21\\xad\\x7f\\x90\\x0c\\x38\\x49\\x18\\x61\\x2a\\x8d\\x38\\x90\\x96\\xe4\\x48\\x45\\x64\\x04\\x9b\\x7b\\x4a\\x07\\xc1\\xe6\\xd1\\x7f\\x38\\x35\\xcd\\x3c\\x40\\xb6\\x68\\xd0\\x18\\x14\\xfc\\xbd\\x89\\x6f\\x07\\x07\\x3f\\xbf\\xf0\\xb7\\xcd\\xef\\x70\\xdc\\xbb\\xd3\\x7f\\x5f\\x84\\x94\\xe6\\x2a\\x6e\\xdb\\xfa\\xd1\\xea\\x76\\x6e\\xf6\\xfd\\x65\\xee\\xd1\\xb0\\xb0\\xf5\\x1e\\xf6\\x2c\\x66\\xd3\\xa3\\xeb\\x12\\x95\\xc3\\xfe\\x32\\x8e\\xa3\\xb5\\xe6\\x58\\xad\\xb1\\x24\\xf3\\xc2\\x89\\xcc\\x63\\x3d\\xce\\x04\\x30\\xfb\\xdf\\x8a\\x37\\x41\\xfb\\x29\\x71\\x02\\x9e\\x38\\x29\\x5e\\x10\\xef\\x3b\\x09\\x8f\\x89\\x63\\xa7\\xf0\\x13\\xf0\\x3f\\xee\\xcf\\xba\\x9f\\xa7\\x21\\xec\\xb8\\x11\\x97\\x20\\x5f\\xac\\xff\\x0a\\xeb\\x93\\x04\\x67\\xac\\x8c\\xc3\\xd7\\x76\\x0a\\x29\\x9c\\x76\\x0a\\x00\\x0b\\xc5\\x24\\x25\\x4f\\xc0\\xa1\\xdb\\xc4\\x8c\\xed\\xa2\\xf9\\x36\\x1c\\x84\\xf7\\xbb\\x63\\xc5\\x5e\\x78\\x0a\\xff\\x8c\\x95\\xf5\\x82\\x47\\x46\\xfb\\x53\\x7d\\xc5\\x1f\\x3c\\x7c\\x2a\\x34\\x8f\\x24\\x65\\x53\\x19\\xd9\\x28\\xe8\\xc3\\xd9\\x2c\\x61\\x92\\xde\\xce\\x90\\x5f\\xe4\\xa9\\xff\\xb3\\x7e\\x04\\x7f\\xd1\\xdd\\xc8\\xb9\\xc6\\xc7\\xdb\\xb9\\x6f\\x4f\\xb6\\xb0\\xd7\\xa7\\x9f\\xff\\x39\\x77\\xbb\\xec\\xaf\\x48\\x81\\xd2\\x88\\xbe\\x9f\\x74\\x43\\x7d\\x9f\\x6e\\xa4\\x88\\x2c\\xd2\\x3b\\xbc\\x7b\\x38\\x12\\x7d\\x81\\x33\\xeb\\xc7\\x09\\xae\\xaa\\x3e\\x13\\x8f\\xf2\\xe3\\x4d\\x8d\\x63\\xfc\\xcf\\xb8\\xc4\\x7c\\x53\\x22\\x80\\xbe\\xa0\\x3c\\x41\\x6e\\x25\\x5a\\x6c\\x72\\x76\\x61\\x12\\xb1\\xe8\\x5a\\x1b\\x6c\\x71\\x71\\xb6\\x06\\x6b\\x55\\x79\\x45\\x25\\xcc\\x80\\x3c\\x2c\\x29\\x36\\x2e\\x29\\x4c\\x80\\xa2\\x10\\x55\\x8e\\x21\\xd5\\x94\\x14\\xc6\\x39\\x10\\x02\\x08\\xa2\\x11\\x71\\xfc\\x69\\x24\\xa3\\xb6\\x55\\x04\\x66\\xaa\\x04\\x08\\x76\\xad\\x95\\xe3\\xd7\\xc4\\x7d\\xf0\\xcb\\x70\\xee\\xfd\\xb5\\xd9\\x8f\\x21\\x40\\x9f\\x63\\x3a\\xdb\\x45\\xa4\\x21\\xd7\\x29\\xd9\\x75\\x6c\\xa7\\x79\\xc3\\x4c\\xbb\\xa0\\xe2\\xe3\\xd6\\xbf\\x00\\x4f\\xa9\\x5c\\xce\\xf4\\xf4\\xea\\x01\\x5b\\xf1\\x74\\xa3\\x89\\x5b\\xe3\\x2a\\x17\\xcf\\xb5\\xd4\\xde\\xb2\\xb9\\xc4\\xda\\xd0\\x9f\\x26\\x5e\\xc2\\x8f\\xf4\\xc2\\x13\\x2a\\x57\\xc7\\xa0\\xd5\\xd1\\x9e\\x97\\x90\\x52\\x3a\\x5c\\xd2\\x71\\xa4\\xdf\\x9c\\xde\\xba\\xbd\\xb9\\x78\\x65\\x66\\xc8\\x20\\x3e\\x2f\\x8d\\xe3\\x17\\xc8\\x3b\\x25\\x23\\xcf\\x75\\x92\\xe7\\xa6\\x45\\x01\\xdd\\x4f\\x7d\\xc0\\x53\\x6f\\x1c\\xa9\\xa3\\x57\\xc3\\x8f\\xe7\\x2d\\xd3\\x5d\\xb9\\x19\\xae\\x11\\x9b\\x6d\\xa4\\xc1\\x42\\x2a\\x52\\x3d\\x7f\\xbc\\xce\\x75\\x7c\\xb6\\x54\\x5b\\xdc\\x9a\\x69\\xed\\xab\\x34\\x54\\x6f\\x3d\\x53\\xdf\\x78\\xc7\\x6a\\x1d\\xbf\\xc6\\xe7\\x74\\x6c\\x76\\xe4\\x4c\\xb6\\x58\\x0a\\x06\\x96\\x73\\xe7\\xf1\\x41\\x88\\xb6\\xb6\\x14\\xe6\\xb5\\xe5\\xc4\\xc5\\xe5\\xb4\\xe6\\x36\\xad\\xb5\\xa4\\x19\\x5a\\x76\\xb4\\xda\\xdb\\x9c\\x99\\xa1\\xc1\\x99\\xe5\\x03\\x45\\xed\\x7b\\x5a\\xd3\\xd2\\x5a\\xf7\\xb4\\x17\\x76\\xe5\\x25\\xc4\\xe7\\x76\\x15\\x96\\x77\\x5b\\xa3\\xe0\\x8a\\x2d\\xad\\x98\\x3f\\x41\\xf1\\x0f\\x64\\x7c\\x83\\x03\\xfd\\x79\\xb6\\x17\\x8c\\xa2\\x4e\\x1b\\x1f\\x72\\x61\\xe5\\xcb\\x5f\\x5e\\x76\\x9f\\x07\\xdc\\xb3\\xdf\\xfd\\x32\\x7c\\xdf\\x01\\x87\\x26\\x28\\x4f\\x47\\x2d\\xa7\\x5b\\xff\\x07\\xde\\xdf\\xc7\\xda\\xff\\x0b\\xd2\\x7e\\x8e\\x94\\x93\\x4e\\xda\\xaf\\x00\\xda\\x7e\\xaa\\x55\\x71\\x12\\xb4\\xe6\\x46\\x0d\\x66\\xcc\\x51\\x7c\\x15\\x3e\\xef\\xfe\\x4a\\x56\\xee\\x9e\\xd2\\xf6\\xdb\\x67\\x8a\\x0a\\x66\\xee\\xe8\\x76\\x1d\\xdd\\x5c\\x19\\xb0\\xd5\\x3f\\xbb\\x76\\x30\\xa7\\x6c\\x73\\xad\\xce\\xdc\\x32\\x5b\\x5c\\xb3\\x33\\x1f\\x37\\xe3\\xa2\\x59\\xf1\\x64\\x4a\\x52\\xce\\xe8\\x6d\\x9d\\xbd\\xa7\\xc6\\xed\\x19\\x6d\\xdb\\x1b\\x72\\xda\\xf3\\x12\\xd3\\x5c\\x33\\x65\\xce\\x89\\x2a\\xad\\xce\\x48\\xda\\xf2\\x2b\\x52\\x87\\x70\\xfe\\x4e\\x9a\\x87\\x8c\\xb4\\x25\\x23\\x35\\x8a\\xcd\\xd5\\x28\\xea\\x6b\\xbe\\xd2\\xff\\x3e\\x90\\x28\\x27\\x2d\\x9d\\xbe\\x0a\\x71\\x13\\x61\\x33\\xcf\\x1d\\x68\\xf2\\x8b\\xaf\\x6e\\xed\\xc9\\x68\\xbf\\x75\\xd4\\x51\\x30\\x75\\xba\\x63\\xe0\\xfc\\x5c\\x31\\x40\\xfb\\xa5\\x5f\\x9e\\xfb\\xb6\\xa9\\xaf\\xb1\\x30\\x0c\\xd2\\xea\\xb7\\x54\\x15\\x4d\\xd4\\x18\\xd2\\xea\\xa6\\xf8\\x3b\\xa7\\xa0\\x78\\xf9\\xe1\\xc9\\xd4\\x1c\\x4d\\x24\\x61\\xbe\\x6b\\x6b\\x3f\\xb3\\xb9\\xb8\\x7c\\xe5\\x52\\xdf\\xe6\\xd3\\x7f\\x78\\x72\\x18\\x44\\x2e\\xd6\\x54\\x61\\x2c\\x2b\\x5d\\xeb\\x77\\x10\\x92\\xce\\xc2\\x62\\x02\\x41\\x65\\xf3\\x84\\xf4\\x77\\x1a\\x7f\\x42\\x9a\\xc7\\xac\\x9f\\x40\\x0d\\x4c\\xb3\\x76\\x7f\\x77\\x37\\x36\\xb8\\x93\\xb8\\x51\\xbe\\xfa\\xfd\\x4f\\x30\\x49\\x4d\\xf7\\xa0\\xdf\\x60\\xb2\\xfa\\x22\\x4a\\x43\\x45\\xa8\\x85\\xf8\\x06\\xea\\xcb\\x72\\x4d\\x9a\\x30\\xe6\\x1b\\xd8\\x98\\x2b\\x1a\\xdb\\xaf\\xc6\\x43\\x72\\xac\\x87\\x7d\\x20\\xc8\\xeb\\xbf\\xff\\x2d\\x35\\xbf\\xc1\\x98\\xdd\\x53\\x6e\\x48\\x2d\\x6c\\x19\\x18\\xb7\\xb8\\xee\\xdc\\xee\\xd2\\x57\\x74\\x5b\\x32\\xea\\xf3\\x55\\x65\\xb3\\xb7\\xd5\\xd4\\x1c\\x9f\\x23\\x74\\x0c\\x5d\\x33\\x36\\xdb\\x4c\\x67\\x4e\\x4e\\xd7\\x8c\\x9d\\xfe\\x55\\x99\\x1b\\x86\\xcc\\x14\\xe2\\x99\\x45\\xfe\\x9a\\x87\\xea\\xb3\\xb8\\x41\\x6b\\x7b\\x99\\x39\\x2c\\xcc\\x5a\\xd3\\x97\\x97\\xd7\\x5f\\x6b\\x4f\\x55\\x68\\x9b\\x77\\x76\\x12\\xaf\\x82\\x35\\x2c\\x2c\\xbb\\xac\\xcd\\xda\\xbc\\xd6\\x64\\x30\\x34\\xad\\xb9\\x8f\\x17\\x74\\x13\\x4b\\x61\\x5e\\x57\\x61\\x51\\x97\\x23\\x2e\\x2e\\xb7\\x0b\\x0f\\xd9\\x5b\\x1c\\x09\\xf1\\x39\\xad\\x39\\x39\\x2d\\xf6\\xb8\\x78\\x7b\\xb3\\x34\\x17\\xdf\\xbe\\xfc\\x77\\xce\\x4d\\xda\\x9a\\x8c\\x6c\\x64\\xfc\\xd2\\x53\\xa8\\x6f\\x8a\\x21\\x7c\\x25\\xbd\\xc7\\xdb\\x36\\xb6\\xbd\\x53\\x3b\\x58\\x00\\xa2\\xfd\\x0a\\xec\\x13\\xee\\x9f\\x79\\x66\\x4f\\x2d\\x6f\\x7d\\x64\\xb8\\xed\\xf8\\x78\\x5e\\xd1\\xec\\xb9\\x2e\\x1a\\xa3\\x0b\\xd0\\x74\\xfe\\x67\\x67\\x62\\xe0\\x7b\\xd9\\x03\\x74\\xf8\\x08\\xe4\\xda\\x55\\x32\\xe5\\x4a\\x33\\xd4\\x8d\\xf7\\x43\\xfe\\xc2\\x83\\x33\\x75\\xcd\\x45\\x9b\\x4f\\xb6\\x76\\xde\\x39\\xef\\x74\\xed\\x7b\\x62\\x68\\xf0\\xd4\\xaf\\x1e\\xea\\x85\\x09\\x38\\x90\\x60\\xab\\xcd\\xcc\\x29\\xdf\\xbd\\x29\\xdf\\xda\\xbe\\xa5\\xb0\\x70\\xa6\\x25\\x8b\\xca\\xc2\\xfa\\xcb\\x7f\\xe3\\xf6\\x71\\x29\\x1b\\x6d\\x6e\\x37\\x70\\xa3\\xfb\\x82\\xa5\\x7d\\x39\\xee\\xb9\\x7d\\x9a\\xaa\\xa9\\xaa\\xaa\\xe9\\x1a\\x0d\\x80\\xa6\\x6a\\x9a\\x7c\\xaa\\xd6\\x4c\\x47\\xa5\\x97\\x67\\x65\\x95\\xa5\\x47\\x45\\x19\\xcb\\xb3\\x4c\\xe5\\xe9\\x91\\x50\\x55\\xb7\\xab\\xc7\\x62\\xe9\\xd9\\x55\\x77\\xac\\x6e\\x57\\xaf\\xc5\\xd2\\xbb\\xab\\x2e\\xc0\\xd2\\x55\\xaa\\xd5\\x96\\x76\\x59\\xee\\xb5\\x76\\xd3\\x0f\\xdd\\x56\\x09\\xd7\\x34\\x4d\\x2a\\xf3\\x1a\\x17\\x7d\\x95\\x2c\\x94\\x13\\x59\\x88\\x5f\\x9b\\x7e\\x0f\\x2a\\x82\\xf1\\x5d\\x55\\xbd\\x33\\xb4\\xbe\\x0d\\xfc\\x4f\\xb8\\x3b\\x65\\xdb\\x6e\\x6e\\xab\\x21\\xf6\\x1e\\xee\\x4e\\x9c\\xd5\\x34\\x55\\x58\\x38\\xdd\\x94\\x85\\x27\\xf9\\xe9\\x96\\xe6\\x29\\x7e\\xcb\\xdc\\x13\\x8d\\x44\\x36\\x37\\xd9\\xe2\\xe3\\x6d\\x4d\\xd6\\x9a\\x8a\\xaa\\xaa\\x2f\\x7e\\x83\\x3d\\xbb\\x82\\xf4\\xc1\\x31\\xd2\\x07\\x85\\xe4\\xd9\\x5a\\x49\\xce\\xdd\\x28\\x91\\x39\\x63\\x94\\xb8\\x71\\x44\\x22\\xf6\\x6b\\xd4\\x94\\x59\\x93\\x63\\x33\\x8b\\x34\\xea\\xc2\\xac\\x04\\x3c\\x8d\\x33\\x5d\\x9b\\x1c\\x79\\x63\\x2e\\x23\\xb4\\x97\\xba\\xfa\\xb2\\x9a\\xa6\\xf3\\x1c\\x93\\x2d\\x56\\xbc\\x19\\x27\\x5b\\xcb\\x75\\xda\\xd2\\xec\\x84\\xd4\\xdc\\x1a\\x5d\\x23\\xbc\\x16\\xa6\\xb2\\xa8\\x55\\xd6\\xd4\\x70\\x92\\x54\\x3f\\xc5\\xd6\\x9a\\x9b\\x94\\x90\\xdb\\xe6\\x28\\xed\\x8e\\x8e\\xe8\\x6b\\xcc\\x25\\x92\\x20\\x21\\xaf\\xb3\\x40\\x6d\\x27\\xf4\\x92\\x1a\\xbb\\x3a\\xcd\\x91\\x12\\x82\\x30\\x18\\x10\\xe2\\x1e\\xe4\\xa2\\xa8\\x6c\\xa3\\xfa\\xea\\x15\\x6c\\x97\\x0f\\xb6\\x45\\xb7\\xc2\\xbe\\x5d\\xfc\\x07\\x02\\xb7\\x34\\x7b\\xf7\\x4e\\x8b\\x8b\\x3c\\x9c\\x98\\x17\\x57\\x41\\x95\\x0c\\x11\\xdd\\xaf\\xbf\\x5e\\x86\\x63\\xdc\\x22\\xec\\xb3\\xd0\\x3e\\x69\\x26\\x7d\\xb2\\x8b\\x3c\\x47\\x77\\x95\\xec\\x93\\x5f\\x2b\\xfb\\x98\\xab\\x9a\\xce\\x0e\\x1a\\xfa\\x0f\\x63\\xd9\\xf0\\x0d\\xf1\\x96\\xa4\\xe4\\x36\\x53\\xe1\\x68\\xb5\\x41\\x5b\\x3d\\x5d\\x9e\\x33\\x54\\x67\\x16\\xa6\\x02\\xfb\\xaa\\x3a\\x7b\\x21\\xde\\x52\\x91\\x96\\x53\\x97\\x0a\\x27\\xe0\\x58\\xdf\\xbb\\x8a\\x28\\x75\\xd9\\x20\\xd9\\x2d\\x56\\x19\\x48\\x2a\\x52\\x5b\\x59\\x15\\x8c\\xb6\\x18\\x4a\\x32\\x62\\x20\\x21\\x46\\xb2\\xc9\\xd5\\x91\\xe7\\xef\\xe7\\x48\\x70\\x31\\x32\\x53\\x7b\\x67\\x92\\xc2\\x23\\xf7\\x64\\xb2\\x6b\\xeb\\x40\\xe7\\x28\\x97\\x2a\\xbb\\x4a\\xec\\xf9\\x07\\x9d\\x7d\\x3c\\x28\\x75\\xc6\\x59\\x38\\x58\\xa6\\xd6\\xd7\\x8c\\x17\\x97\\xcd\\xd6\\xa7\\x03\\xe4\\xce\\xdd\\x3f\\x75\\xaa\\x78\\x2c\\x12\\xe2\\xb3\\x2b\\xd2\\xf4\\x25\\x99\\x31\\xb1\\x99\\xa5\\x5c\\x62\\x0f\\xbe\\xfd\\x70\\xba\\xd5\\x50\\x35\\x9c\\x9b\\x4b\\xf6\\xae\\x04\\x6b\\x53\\x56\\x31\\xfa\\xe0\\x56\\xa7\\x78\\x47\\x91\\x39\\xd3\\xe4\\xca\\x49\\x4c\\xb4\\x94\\x69\\xf5\\xa5\\xa6\\x38\\x69\\x9e\\x16\\x20\\xc4\\x9d\\xe6\\xa2\\xae\\x93\\x75\\xdc\\x69\\xf1\\xf6\\x79\\x20\\x58\\x38\\xdc\\x81\\x7f\\xe0\\x36\\xe0\\x4f\\xf6\\x30\\x59\\xe7\\x9b\\x5b\\x2a\\x64\\x47\\xb5\\xe8\\x81\\x97\\xa3\\x38\\x8c\\x05\\xf0\\xd1\\xac\\x79\\x89\\xb9\\x04\\x6a\\xba\\xba\\xb2\\x4d\\x2a\\x92\\x18\\x58\\x6e\\x76\\x49\\xa5\\x8f\\x83\\xe5\\xa6\\xa5\\xdc\\xb4\\x00\\x0a\\x6e\\x0a\\xa9\\xaa\\x28\\xcc\\xb7\\x98\\x0d\\xba\\xa4\\x84\\x74\\x6a\\x6d\\x02\\x36\\xcd\\xa9\\x3d\\xcf\\x27\\x82\\x75\\xba\\x8f\\x2c\\x82\\x97\\xc0\\x55\\x50\\xde\\x03\\xe6\\xe6\\xe9\\xdc\\xdc\\xe9\\x96\\xec\\x98\\xf4\\x7c\\x55\\x81\\x2b\\xbd\\x6e\\x24\\x27\\x67\\xa4\\xce\\xd8\\xa6\\xb2\\x95\\xa5\\xaa\\xcb\\xac\\x29\\x29\\xb6\\x32\\x75\\x6a\\x99\\x2d\\x25\\x3a\\x21\\xb3\\x20\\x39\\x25\\x3f\\x33\\x3e\\xde\\x94\\x9f\\x92\\x5c\\x90\\x19\\x8f\\xab\\x4a\\x7b\\x94\\x31\\x23\\x35\\x79\\xed\\x8e\\xf8\\x38\\x47\\x7b\\xbe\\xa6\\xc8\\xac\\x09\\x52\\xf6\\x94\\xe6\\x10\\xd1\\x9a\\xe0\\x68\\x11\\x07\\x34\\x76\\x92\\xc0\\x8d\\xfc\\xa3\\xb5\\xab\\xc3\\x88\\xe3\\x06\\x4e\\xa4\\x58\\xc8\\xcb\\x93\\x6a\\x51\\xa5\\x64\\xab\\x48\\x42\\xe7\\x6c\\x24\\xc9\\xb4\\x7f\\x91\\xb9\\x93\\xe2\\x9b\\x3b\\xf1\\xa1\\x54\\xe6\\xe6\\xe4\\xdc\\x50\\xe6\\xda\\x23\\x88\\xc4\\xb0\\x6f\\x68\\x07\\xbc\\x73\\xe6\\x92\\x5f\\xea\\x44\\x49\\xc1\\x70\\x85\\x26\\xad\\x6e\\xb2\\xa4\\x72\\x73\\xb5\\x16\\xc0\\x3e\\x75\\x71\\x2a\\xec\\x8e\\x92\\x91\\x48\\x65\\x66\\xb9\\x91\\x4c\\x87\\xd8\\x98\\x4c\\x67\\x13\\x1c\\x39\\x98\\x6e\\x26\\x71\\x7d\\x79\\x79\\xe3\\x0d\\x99\\xe6\\x8e\\x95\\xca\\x92\\xd1\\x8b\\x5b\\xf2\\xa1\\x13\\xf8\\x62\\xe2\\x69\\x69\\xc8\\x4b\\x49\\xb6\\x57\\xea\\x74\\xa5\\x96\\x04\\x69\\xee\\x94\\x11\\xff\\xfb\\x23\\x5c\\xe4\\x15\\xec\\x26\\x9b\\x38\\x8f\\xb8\\x2f\\xe0\\x31\\xe6\\x6d\\xa7\\xf3\\xe5\\x8f\\xfc\\x0c\\x77\\x4e\\x76\\x2b\\xe3\\x51\\xd1\\xa3\\x0e\\x29\\xce\\x3a\\xc1\\x93\\x3f\\x1e\\x03\\x35\\x20\\x71\\x3c\\x37\\x84\\x3c\\xbc\\x10\\x85\\x02\\x0b\\xaf\\xf6\\x9d\\xf6\\x04\\xc5\\x8f\\x22\\x9e\\xe3\\xf8\\x2e\\x4f\\xc4\\x09\\xcf\\x35\\x11\\x10\\x67\\x5a\\xb4\\x41\\xeb\\x95\\x05\\x72\\xb5\\x5c\\xea\\x04\\xdf\\x6b\\xc4\\x48\\x04\\x7c\\x5a\\x0c\\xe7\\x7f\\xdb\\x57\\x87\\x76\\xc4\\x1a\\x49\\x0b\\x48\\xa8\\x69\\x4c\\x3a\\x49\\x99\\x92\\x9b\\x11\\x5b\\x21\\x98\\x74\\xe1\\xc9\\xca\\x90\\x10\\x65\\x72\\xb8\\xde\\x24\\xbb\\xf5\\xf5\\x6f\\xa8\\x72\\xd3\\xe8\\xd9\\x94\\x14\\x87\\x41\\xa9\\x34\\x38\\x88\\x8b\\x81\\x9e\\x0b\\x57\\xc5\\x86\\xd8\\x11\\x06\\x37\\x7f\\x80\\xdb\\x25\\x7c\\x91\\x7a\\xa3\\xc8\\x38\\x84\\xf8\\xf3\\x80\\xa9\\x1c\\xb1\\x46\\x71\\x6a\\xbd\\xc7\\x8f\\x2c\\x57\\xe3\\x8b\\xf3\\x0b\\x97\\x4a\\xef\\x17\\xec\\x39\\x66\\x4d\\x0a\\x86\\x6e\\xfe\\x1c\\x98\\xa3\\xc4\\xef\\xae\\x39\\x67\\x53\\x94\\xba\\x41\\xc7\\x32\\xc2\\x70\\x94\\xff\\x26\\xf7\\xa2\\xec\\xe3\\x34\\xff\\x3a\\x29\\x27\\x33\\xf9\\x46\\x32\\x9f\\xf9\\x40\\x58\\xdd\\xbd\\x2e\\x10\\x7a\\x94\\x7b\\x11\\x1b\\x6b\\xc7\\x0b\\x0a\\xc6\\xeb\\x8c\\x78\\x82\\x1b\\x68\\x69\\x1a\\xe0\\x37\\x61\\x32\\x29\\x53\\x35\\xf6\\xac\\xec\\xe4\\xf4\\x6c\\xbe\\x0c\\xc7\\xa6\\xe7\\xa9\\x53\\x6c\\x16\\x6b\\x72\\x9a\\x85\\x13\\x1e\\xb6\\x36\\x91\\x17\\x9e\\x24\\x23\\xaf\\xac\\xad\\xab\\xf8\\x47\\x6a\\x81\\x91\\xe8\\xed\\x71\\xb6\\xb4\\x50\\x15\\xf9\\x14\\x9f\\x1c\\x97\\x97\\xc6\\x6c\\xfb\\x7a\\xf1\\x22\\xbe\\x84\\x16\\x3f\\x10\\x47\\x41\\x23\\xb8\\xa9\\x89\\xe8\\xd2\\xb6\\x6d\\xe2\\x45\\xf8\\x2e\\x1b\\xfb\\x13\\xe2\\x7e\\xfc\\x0b\\x94\\x8e\\x62\\xc9\\xd8\\xfb\\x33\\xdc\\x2e\\xd1\\x73\\x7c\\x39\\x35\\x08\\x7d\\x8b\\x94\\x77\\xb7\\x44\\x57\\x94\\xa1\\x84\\x84\\xec\\x32\\x7d\\x4e\\x63\\x62\\x4c\\x54\\xbe\\xda\\x6c\\x51\\x6a\\x4d\\xd1\\xe9\\xb1\\x85\\x65\\x55\\x6a\\x43\\x89\\x51\\x19\\x17\\xde\\x16\\xa8\\xc4\\x38\\x43\\x9f\\x94\\x6b\\x31\\x45\\x49\\xf3\\x6a\\x4a\\x74\\x71\\x7e\\x68\\x17\\x8a\\xa0\\xd6\\x97\\x00\\x00\\xec\\x0f\\x08\\x30\\x35\\x37\\x01\\x5e\\xf2\\xa6\\x85\\x51\\x21\\x0f\\x77\\x8b\\x56\\xcb\\x93\\x0a\\x6a\\xaf\\x3c\\x5c\\x02\\x5a\\x71\\x7e\\xa0\\x73\\x2d\\x11\\x70\\x41\\x62\\x48\\x64\\x7e\\x24\\x25\\x67\\xd8\\xf5\\x3d\\x09\\x4c\\x30\\x49\\xf3\\x2b\\x77\\x59\\xbe\\xc7\\x74\\xb7\\xdb\\xc4\\x3a\\xbe\\x94\\x6f\\x24\\xb2\\xa5\\x1d\\x6d\\x26\\xba\\xdb\\x58\\x4f\\xad\\x33\\x2f\\x89\\xa3\\x3e\\x1a\\x22\\x35\\x58\\xa1\\x04\\x6c\\xce\\xf0\\x66\\x6c\\x7a\\x5d\\x2f\\x47\\x7c\\x2c\\x4d\\x4a\\x15\\xa4\\xea\\xa5\\x70\\x71\\xdf\\xd4\\x03\\x26\\xc4\\x7d\\x3a\\x90\\x9c\\x2f\\xfd\\x78\\x46\\x36\\x40\\x29\\x09\\x61\\xa9\\xab\\x4c\\xcc\\x8c\\x4c\\x35\\xc5\\xbf\\xd4\\x42\\x68\\xe2\\xbb\\x6f\\x7f\\x6d\\x84\\x98\\x73\\x2a\\x53\\xf3\\x5c\\xe9\\x29\\x1a\\x45\\x82\\x2e\\xb2\\x65\\x1c\\x83\\x73\\xee\\x5c\\x7b\\x5d\\x05\\x74\\xb8\\x5f\\x88\\x8d\\xd6\\x56\\xe6\\xa8\\x6c\\x5d\\x4b\\x45\\x55\\x27\\x96\\xaa\\xd3\\x6a\\xc6\\xf2\\xc5\\xc3\\x44\\x2a\\x4d\\xe6\\x3a\\x26\\x1b\\xcd\\x00\\xa6\\xa6\\xc9\\xfc\\xfc\\xc9\\x46\\x13\\x70\\xdf\\xcf\\xdc\\x5a\\x19\\xed\\x22\\x18\\x89\\xc8\\xe8\\xe2\\xcc\\x38\\x8d\\x32\\x10\\x54\\x55\\x73\\xf5\\x24\\x17\\x7e\\xb6\\xb6\\x66\\xba\\xc2\\xda\\x55\\x95\\x13\\x11\\x55\\x9a\\xa9\\x72\\x64\\xe9\\x14\\x19\\x67\\x07\\xa3\\x1b\\xf7\\xf7\\x5b\\x22\\xd7\\xe3\\xb9\\x40\\x43\\x7e\\x9d\\xd1\\xe6\\x32\\x2b\\x93\\x0b\\xbb\\x72\\x2d\\x55\\x99\\xd1\\xf8\\x88\\xad\\xbb\\x44\\xad\\x2e\\xe9\\xb6\\x91\\x2c\\x91\\x65\\x1a\\x4d\\x59\\x5f\\x0e\\xdb\\x43\\x3c\\x4f\\x30\\xdc\\x3f\\xe6\\xca\\x91\\x92\\x8c\\x7b\\x20\\x1d\\xf7\\x88\\xeb\\xf9\\x15\\x9f\\x7f\\xef\\x3a\\x62\\xc5\\xf7\\xb8\\xf2\\x1b\\x70\\x2a\\x22\\x4c\\xfd\\x37\\xf8\\xf7\\xc2\\x1b\\x94\\x93\\x98\\xbe\\x53\\x7e\\xcc\\xcf\\x15\\xc1\\x0c\\x23\\x20\\x39\\xcd\\x99\\xcf\\xfc\\xbf\\xe1\\xef\\x6b\\xe2\\x01\\xe8\\x4b\\xcf\\x36\\x1b\\x8d\\xe6\\xec\\x74\\x9a\\x8f\\x91\\x7b\\x1b\\xce\\x12\\x29\\xa8\\x55\\xdb\\xed\\xd2\\xbc\\x79\\xfe\\xf2\\x6f\\x49\\x7e\\xb1\\x18\\x14\\x45\\xea\\x16\\xc2\\xe4\\x91\\x2f\\x54\\xca\\x07\\x6a\\xc5\\x69\\xb1\\x39\\x9d\\xc5\\xaa\\x62\\x87\\x39\\x2a\\xb2\\xea\\x48\\x55\\xcf\\xb6\\x9a\\x64\\x59\\xcc\\xfb\\x9b\\x3a\\x17\\xcb\\xe3\\x03\\x15\\xe1\\xf2\\xe1\\x94\\xa4\\xac\\xd1\\x7b\\x67\\xf9\\xb3\\x14\\xf7\\xf0\\x23\\x52\\xb7\\x5f\\x0a\\xcf\\x62\\x19\\x99\\x66\\xf4\\xfb\\x02\\xdd\\xbb\\xb3\\xef\\xb1\\x7f\\x61\\x71\\xbd\\xe4\\xbb\\x99\\x3f\\xe1\\xcb\\xd9\\x0f\\x88\\xe7\\xe8\\xc2\\xe4\\xa3\\x46\\xa5\\x4b\\x16\\x4b\\x81\\xae\\x08\\x95\\xc8\\x10\\x64\\x14\\x92\\x74\\x43\\x32\\x54\\x18\\x5c\\x85\\x47\\x5a\\xef\\xda\\x5a\\x59\\xb9\\xf5\\xae\\x56\\xf1\\x9b\\x60\\xce\\x9f\\x69\\xb3\\x64\\xb7\\xcd\\xe6\\x93\\xcf\\x6f\\x8b\\xc4\\xc3\\x05\\x19\\xdd\\x87\\x7b\\xfa\\x0e\\x74\\x18\\x60\\x02\\x28\\xd1\\x80\\x73\\xa8\\x24\\xd9\\x93\\xdb\\x79\\x59\\xec\\xe0\\xb7\\xf2\\x95\\xc8\\x48\\xda\\x1d\\xc5\\xc6\\x84\\xae\\x06\\x11\\x60\\x05\\x62\\x0e\\x52\\x6e\\x00\\xb8\\x72\\xa0\\x06\\xce\\xc4\\x79\\x40\\x64\\xdf\\x28\\xea\\x2d\\x33\\x29\\xee\\x05\\xc7\\x1e\\xf1\\xf0\\x4f\\x82\\x93\\xb4\\x59\\x49\\x8a\\x18\\x05\\x17\\xa2\\x0b\\xcb\\x69\\x2e\\xca\\x8a\\x7a\\x51\\x7c\\x62\\x1f\\xdc\\xfb\\xf9\\x10\\x55\\x46\\xae\\x2e\\x54\\x1b\\x26\\x44\\x64\\xf3\\x95\\x16\\x57\\x8f\\x41\\x7c\\x0c\\xbb\\xdc\\x36\\x31\\x22\\xb1\\x2c\\x4f\\x07\\x3c\\x9e\\x14\\xe4\\x99\\x75\\x43\\x16\\x38\\xee\\xde\\xce\\xf9\\xc1\\x0b\\xa9\\x15\\x8e\\x54\\x1e\\x8f\\x0a\\x72\\x16\\xdb\\xcd\\xb0\\x56\\xcf\\xd0\\xfc\\xde\\x54\\xce\\xa9\\x39\\xc0\\xe6\\x8d\\xcd\\xbf\\x2e\\x6e\\xd9\\xdb\\x1d\\x6a\\x15\\xa4\\xaf\\xc2\\x85\\x29\\xc2\\x86\\x41\\x73\\x89\\xef\\xd9\\x0e\\xf1\\xba\\xed\\x51\\x31\\x21\\x3c\\x64\\x34\\xcf\\x97\\x13\\x9c\\x48\\x4c\\xf3\\x81\\x3e\\x8b\\xa9\\x6b\\x77\\x93\\xf8\\x43\\x7c\\xc6\\xbd\\x45\\x78\\x06\\xac\\xe3\\x77\\x8e\\xe6\\x4f\\x77\\x57\\x46\\xa9\\x9e\\x3a\\x46\\xc3\\xb1\\x63\\x94\\x45\\x4e\\x12\\x8e\\x5d\\x39\\x53\\xab\\x87\\x09\\xd0\\xd4\\x6e\\xa9\\xab\\x5d\\x70\\xe9\\xa5\\xfe\\xfa\\x36\\xa9\\xd7\\x73\\x14\\x7b\\x46\\x6d\\x30\\x01\\x40\\x8d\\xbb\\x5e\\xab\\x28\\x0f\\x2c\\x33\\xb4\\x8f\\xb6\\xd1\\x1b\\x78\\xe7\\xa3\\xca\\x01\\x50\\x13\\x13\\x23\\xcd\\x92\\xfa\\xaf\\xe3\\xee\\x9f\\xe3\\x9a\\x73\\x12\\x93\\x22\\xe3\\x86\\xb4\\xb9\\x13\\xd8\\x1e\\xe9\\x59\\x82\\x8b\\xcc\\x13\\x5e\\x21\\xf3\\x50\\x45\\xed\\x31\\x31\\xc1\\x9e\\x39\\x7d\\x0d\\xdc\\x98\\xbb\\x6a\\x86\\x3f\\x0b\\x5f\\x23\\x90\\x26\\x8b\\x65\\x52\\xab\\x30\\xee\\x2c\\xa9\\xd9\\xd1\\x6b\\x03\\x2c\\x3e\\xcc\\xf7\\x53\\x70\\x65\\xff\\x13\\x37\\x8c\\xee\\x78\\x62\\x4e\\x6c\\x67\\x62\\x67\\x27\\x99\\x60\\x62\\x6b\\xe2\\x89\\x6d\\xdb\\x13\\x4f\\x6c\\xdb\\xb6\\x9d\\xec\\x38\\xd9\\xb1\\x6d\\xdb\\x3e\\xf5\\xfb\\x3f\\xcf\\xb9\\x38\\x75\\x6e\\xdf\\x8b\\xb7\\x6b\\x55\\x75\\xad\\x5a\\xdd\\xbd\\x3e\\xdf\\xf6\\x17\\x2a\\x5a\\x36\\x0b\\x6c\\x3c\\x7b\\xc2\\x26\\x65\\x79\\xd6\\x93\\xe4\\xbc\\x9c\\x88\\xd0\\x63\\x2b\\x56\\xd8\\x6e\\x60\\x86\\xda\\x8d\\x7a\\xa9\\x9c\\xd6\\xa0\\xac\\x4a\\x8d\\x69\\x83\\xe9\\x61\\x5a\\x87\\x94\\x67\\xce\\xfb\\xc4\\x3a\\x7d\\x04\\xe4\\x59\\x59\\x40\\x8d\\x54\\xf4\\x21\\xd0\\x72\\xa5\\x86\\x5c\\xa9\\x36\\xd6\\x2e\\xe6\\xdc\\x07\\xca\\x3f\\x66\\x6a\\xdc\\x78\\xec\\xb0\\x75\\xe6\\xb8\\xa8\\xde\\xbc\\xe3\\x9e\\x55\\xd8\\x29\\xe7\\xc4\\xc0\\x31\\x1f\\x29\\x7c\\x74\\xa3\\x7c\\x6f\\x38\\x51\\xd4\\x9b\\x40\\xcd\\x55\\xef\\x84\\xd6\\x53\\x13\\x3a\\x78\\xfd\\xb2\\x3d\\xcc\\x01\\x36\\x3e\\x83\\x7a\\xf4\\xd6\\x64\\x57\\xfd\\x8e\\x0e\\x3a\\x5e\\xb8\\x3e\\xb9\\x4b\\x09\\x9b\\x12\\x1e\\x97\\x54\\xf7\\x4d\\x67\\x1d\\x68\\x0c\\xd9\\x82\\xee\\x4e\\xe8\\xd5\\xa4\\x48\\x7f\\x24\\x11\\x43\\x94\\xdd\\x33\\xf8\\x79\\x66\\x99\\x11\\xa9\\x4f\\x87\\xe7\\x99\\xc8\\x33\\xd6\\x50\\x0f\\x74\\x9d\\x91\\x44\\x52\\x30\\x04\\xab\\xbe\\xce\\xd6\\x21\\xb8\\x7c\\xee\\xdf\\x2c\\x72\\xf6\\xcd\\xf3\\xa8\\x70\\x39\\x5c\\x15\\x7e\\x87\\xaa\\xd6\\xe8\\x6e\\xa1\\x29\\xe3\\xd9\\xc2\\x2f\\x8b\\x66\\x2c\\xab\\x94\\x5e\\xf9\\x68\\x2b\\x68\\xe2\\xb7\\x37\\x91\\xe8\\xae\\xed\\x79\\x78\\x5c\\xd9\\x65\\x09\\x76\\x97\\xd2\\xcb\\x4a\\x39\\x14\\x54\\xe5\\x5a\\xd2\\x8f\\x04\\x57\\x42\\x6b\\xba\\xfb\\x3a\\x3a\\x6b\\x49\\x07\\xd5\\xf9\\xe6\\xe7\\x9a\\x98\\x75\\xd4\\x39\\x56\\x6f\\x4e\\x3b\\xbf\\xad\\xbd\\x21\\xc4\\xf8\\xed\\x49\\x96\\xf9\\xa5\\xb2\\x35\\xf2\\x91\\x93\\xf5\\xf7\\xbc\\xcd\\x08\\x66\\xb9\\x65\\xbe\\xce\\x35\\x64\\xd0\\x3e\\x55\\xbb\\xf7\\x73\\xe4\\x21\\x9e\\x90\\xcb\\xa4\\x62\\xcc\\x96\\x25\\x51\\x57\\x0d\\x65\\x4f\\x0c\\x79\\xff\\xbb\\xff\\xfa\\x09\\x5d\\x91\\x1d\\x35\\x26\\x99\\x11\\xc1\\x70\\xe3\\xb8\\x6a\\x5a\\x94\\x9e\\x6e\\x5a\\xb3\\xf5\\x4a\\xcf\\x1d\\xf2\\x6b\\xec\\xa7\\x95\\x38\\x87\\x0d\\xbd\\x1f\\xf7\\xfb\\x34\\x0b\\x5b\\x87\\xf2\\xbc\\x97\\x45\\x11\\x7f\\x93\\x77\\xe3\\xfc\\x6c\\x7c\\xca\\x7e\\x66\\x47\\x57\\xdb\\xd3\\xfa\\xa1\\xb7\\x6c\\x01\\x75\\x71\\x66\\x9b\\x28\\x1f\\x3b\\xa7\\x1c\\xce\\x8f\\xb1\\x96\\x78\\xf8\\xb9\\xae\\x2e\\xad\\x2d\\x65\\x3d\\xf4\\x81\\x41\\xd9\\xd6\\x9e\\x0a\\xb0\\x4c\\xc4\\x58\\x5a\\xbb\\x53\\xa9\\xb7\\x47\\x2e\\x39\\x79\\x7b\\xbe\\x17\\x9b\\xdd\\xf6\\x79\\x6a\\x97\\xf9\\xa3\\xb5\\xd9\\xa0\\x77\\x81\\x92\\x7a\\x4b\\x5b\\xbd\\x27\\xd8\\x24\\xb5\\x97\\x77\\xc9\\x51\\x66\\x23\\x99\\x97\\x31\\x68\\xc8\\x92\\x7c\\xa7\\xfe\\x5e\\x97\\x5f\\x6a\\xb5\\x56\\xf4\\xe6\\xd1\\xb8\\xb2\\x21\\xfe\\x24\\xbd\\x5b\\x38\\x5c\\x79\\xad\\x8f\\xe0\\x6f\\xa5\\x9a\\x7b\\x06\\x44\\x37\\x95\\x52\\x49\\xe8\\xd6\\xf1\\xe1\\x98\\x65\\x73\\xb3\\xe9\\xb1\\xf6\\xa3\\x0b\\x49\\x90\\xf7\\xdd\\x68\\x5f\\x73\\xf0\\x2d\\xc8\\x06\\x2f\\x83\\x89\\xe1\\xf7\\x55\\x2a\\xb5\\x6b\\xbb\\x3a\\x4e\\xb6\\xc6\\x18\\xb3\\x6e\\xa7\\x5f\\xa3\\xb5\\xfa\\xca\\xce\\x48\\xe2\\x7d\\xf3\\x85\\x5c\\x54\\x07\\x2f\\x1b\\xcd\\x8e\\xbd\\x43\\x85\\xcf\\xfb\\x79\\xaf\\x27\\xec\\x93\\xce\\x2e\\x1c\\x9d\\x7a\\x8a\\xf3\\xca\\xe0\\x4b\\xff\\xcb\\x9b\\x38\\xcd\\x65\\xce\\xb8\\xca\\xd0\\x4c\\xfb\\x47\\xc8\\x7c\\x55\\x6c\\x8f\\xe4\\xeb\\x93\\xa6\\x59\\x2c\\x17\\x43\\x22\\xa6\\x3d\\x97\\xbd\\xc0\\xdf\\x23\\x68\\x10\\x05\\xc3\\x75\\xea\\x25\\x02\\x00\\x5e\\xc8\\x84\\x79\\x89\\x06\\xea\\x54\\xec\\x1e\\xd6\\xa2\\xf0\\x8f\\x1b\\x32\\x50\\xa6\\x20\\x48\\xb3\\x56\\xa8\\x28\\x32\\xd8\\xc8\\xdb\\x5c\\x93\\x44\\x17\\x69\\x23\\x18\\xfa\\x58\\xd2\\x10\\x2d\\x8a\\x2c\\x89\\xd7\\x46\\xb0\\x13\\xa7\\xa0\\xc0\\x27\\xeb\\xf9\\x68\\x7e\\xe7\\x6f\\xfc\\x28\\x7e\\x57\\xb3\\x83\\x84\\x04\\xa3\\xa8\\x95\\x3a\\x41\\x85\\x84\\x0c\\x86\\xda\\xdc\\x9b\\xbc\\x02\\x96\\x1d\\xb1\\xf9\\xc2\\xbf\\xad\\xb7\\x79\\x1c\\xa7\\x12\\xf0\\x23\\x36\\xd3\\x9a\\x14\\x4e\\xf9\\x38\\x37\\xd0\\x69\\xf5\\x36\\x01\\x96\\x6c\\x4b\\x23\\x75\\xa6\\xbb\\x60\\x86\\xe8\\xdf\\x17\\x87\\xef\\x56\\xb2\\x77\\xbf\\x43\\x36\\x53\\xf7\\xfe\\xd3\\x48\\x19\\x53\\x7c\\xac\\x20\\x93\\xee\\xbf\\xd1\\xca\\x7d\\xc1\\x49\\xa2\\xef\\x02\\x81\\x26\\xc7\\x18\\x1f\\xd1\\xfc\\x82\\xfb\\x7c\\xc3\\xdd\\x5f\\x90\\x4f\\xf6\\x7a\\x7d\\x39\\xe4\\x5b\\x22\\x27\\x3b\\xe3\\x89\\x73\\x29\\xb7\\x59\\x74\\x85\\xef\\x17\\x89\\x3e\\xfe\\x5c\\xb8\\x2f\\xb4\\xe7\\x08\\x54\\x5a\\x94\\x82\\x8b\\x9c\\x0c\\x59\\x35\\x3f\\x80\\xe9\\xc6\\xb8\\xd4\\x6e\\x41\\x71\\x17\\x11\\x82\\xac\\xff\\xd8\\x79\\xd2\\xa7\\x76\\x48\\xf2\\x1e\\x3d\\xde\\x47\\x4b\\x5a\\x96\\x96\\x0c\\x9e\\x9f\\x63\\xae\\x6c\\x87\\x5a\\x5f\\x2e\\x49\\x48\\x9e\\xde\\xf6\\xbc\\xe8\\xa7\\xaa\\xb0\\x21\\xb0\\xaa\\x04\\x9e\\xbe\\x54\\x9f\\x88\\x00\\xaa\\x7f\\x34\\xbf\\x9e\\xc0\\x13\\x19\\x4f\\x42\\xbf\\x85\\xd0\\xbc\\x44\\x44\\x8b\\x7e\\x20\\xcc\\x26\\x1a\\x8a\\x40\\x83\\x36\\x09\\xd0\\x73\\x60\\x18\\x96\\xad\\x7e\\x79\\xda\\x65\\xd0\\xc6\\x19\\x72\\x64\\x34\\x51\\x56\\x17\\x3f\\x99\\x72\\x9d\\x0d\\xcd\\x33\\x16\\x3f\\xe9\\x72\\x98\\x18\\x85\\xa6\\x7d\\x65\\x39\\x5d\\xf2\\x75\\x66\\xc0\\x65\\x7c\\x2d\\xf5\\x4c\\x8d\\x4d\\xbc\\x6c\\x6c\\x65\\xae\\x81\\x2f\\x8e\\xaa\\x3f\\x5e\\x25\\x2e\\x24\\xdb\\xd4\\x0a\\x18\\x7d\\xb6\\xf7\\x55\\xb9\\xf5\\x5c\\x6e\\x03\\xa8\\xd2\\x5d\\x0b\\x4f\\xc8\\x6c\\x5c\\x27\\x73\\xe8\\x6d\\xb5\\x3f\\x67\\xc1\\x2b\\x5a\\x73\\x15\\x5f\\x12\\xce\\xfb\\x0c\\xd2\\xc7\\x3c\\x13\\xce\\xed\\x95\\x88\\x24\\xe1\\xb3\\xbd\\x2b\\x38\\xbc\\xa1\\xe7\\x07\\x3b\\xc5\\x32\\x9b\\xca\\x17\\xae\\xa8\\x25\\x04\\xab\\xc3\\x58\\xf8\\xb5\\xa2\\x90\\x45\\x93\\x36\\xed\\xea\\xdc\\x7b\\x90\\xa4\\xbb\\x43\\x08\\x25\\x69\\x18\\x83\\x8c\\xbc\\x1c\\xdf\\xa2\\x9b\\x82\\xfa\\x3e\\xed\\x19\\x0c\\x1c\\xc7\\xe0\\x5c\\x9f\\x06\\x0e\\x85\\x6d\\x1a\\x1e\\x7c\\x5f\\xd9\\x33\\x4c\\xc3\\x0c\\xeb\\xf2\\xa6\\x68\\xaf\\x8e\\x9d\\xaf\\xee\\x95\\x88\\xb8\\x09\\xf9\\x9a\\x03\\x9e\\x38\\xbb\\xeb\\x98\\x1e\\x6c\\x77\\x2c\\x64\\x2c\\xb1\\xb9\\xbe\\x5b\\xa0\\x46\\xeb\\xe8\\xb0\\xd5\\xda\\x81\\x1b\\xc9\\xe4\\x84\\x87\\xb8\\x0f\\x24\\xa2\\x59\\xc0\\x87\\xff\\xdc\\x7f\\x87\\x37\\xda\\x5e\\xdd\\xbb\\xae\\xaf\\xb7\\x94\\x9a\\xf4\\x93\\x69\\xc4\\x8d\\x69\\x3a\\x57\\xab\\x79\\x6e\\xde\\x3b\\x0f\\x24\\x63\\xb6\\x54\\xf6\\xff\\x6b\\xf2\\x1d\\x1f\\x6d\\x4a\\x1e\\xe4\\xb4\\xa5\\xc2\\x8b\\x53\\xbb\\x95\\xfa\\x59\\x73\\x83\\xf7\\xb3\\x26\\x93\\x9b\\x41\\xd3\\x90\\xd1\\xfe\\xd1\\x39\\xc2\\x73\\x13\\xac\\x4a\\xee\\xe8\\x64\\x0d\\x2e\\x65\\xb1\\x3d\\xde\\xf9\\x33\\xdf\\xe4\\x60\\xe3\\xce\\x82\\xa8\\x7b\\x71\\x98\\x3e\\x6a\\x80\\x13\\x02\\x07\\x26\\x80\\x75\\x18\\x12\\xe7\\xb1\\xa5\\xdf\\x2e\\x7d\\xa7\\x4d\\x61\\x27\\x0f\\x73\\x75\\x5c\\x96\\x42\\xb5\\x07\\x40\\x48\\x64\\x98\\xf7\\x48\\xa0\\x6e\\xf4\\x00\\x41\\x7f\\x70\\x08\\x10\\x1a\\xe1\\xdf\\xd5\\xac\\x60\\xdc\\x34\\x71\\x3c\\x26\\xc2\\xe8\\x02\\xe1\\x98\\xc3\\xe1\\x63\\xd6\\xfe\\xca\\xed\\xe1\\xe8\\x69\\xf8\\xed\\xc1\\x57\\x63\\x9c\\x75\\x04\\x2f\\xae\\x38\\x9e\\x15\\xa1\\x27\\x28\\xf3\\x36\\x3b\\x4d\\x21\\x20\\x3a\\xa5\\x4b\\x66\\xeb\\x82\\x03\\xb1\\x6f\\x25\\x4b\\x2e\\x19\\x1c\\xc7\\xf2\\xf8\\xd4\\xce\\x68\\xb0\\xf4\\xd7\\x27\\x6f\\xcf\\xdf\\xdc\\xe3\\x96\\x97\\x6a\\x6e\\x86\\xdd\\xd1\\xb3\\xa1\\x62\\x53\\x71\\xfb\\x7f\\xd7\\xb9\\x74\\x2a\\x1a\\x22\\x7c\\x97\\x85\\x35\\xb0\\xd4\\xb4\\xa5\\xe7\\x97\\x0a\\x5a\\x19\\xb0\\x7c\\xe6\\x08\\x4f\\x2b\\xd6\\xef\\x87\\xdf\\x33\\x21\\x1b\\x29\\xf8\\x48\\x37\\x83\\x31\\x70\\x6d\\x70\\xf5\\x4e\\x02\\x55\\x2a\\xb3\\x30\\xbf\\xb1\\xbc\\xb7\\x7e\\x10\\x4d\\x39\\xb0\\xbc\\x1a\\xf1\\x4b\\x18\\x36\\x6b\\xc1\\x80\\x7d\\x9a\\x20\\x31\\x29\\x58\\xa8\\xb5\\x49\\xe6\\x68\\xbb\\x42\\x39\\x67\\x89\\x77\\x7b\\xbe\\x65\\x77\\xc7\\x0a\\xd4\\xb1\\xf9\\x2c\\xfa\\x0b\\xac\\xe3\\x30\\xf7\\x83\\xd0\\x8a\\xff\\x21\\x1f\\x05\\x63\\xa8\\x94\\xea\\xb3\\x7d\\x53\\x19\\xff\\xab\\xb5\\x03\\x4f\\x13\\xb9\\xf4\\x09\\x67\\xf8\\xbe\\xfb\\xd9\\xd9\\x1b\\xe4\\x2f\\xe0\\xa0\\x9c\\x93\\x11\\x2e\\x31\\xf8\\x9f\\xdc\\xa4\\xe2\\x03\\xd9\\xff\\xb0\\x6c\\xa9\\xb9\\xf7\\xc3\\xef\\x35\\xf9\\x21\\x4d\\x1f\\xd9\\x06\\x84\\x87\\xf2\\xcb\\x25\\x7b\\x78\\x72\\xee\\xd3\\x3d\\x8d\\xcf\\x31\\xe6\\xdb\\x26\\xb6\\x36\\x40\\x9b\\xc6\\xce\\xbf\\x00\\xf4\\x68\\xef\\x7c\\xf2\\xfe\\x8e\\x92\\xca\\x7e\\xd7\\x1e\\x38\\x92\\x99\\xf0\\x86\\x51\\xf9\\x95\\xaa\\xc5\\x95\\xff\\x3d\\x3b\\x2e\\x68\\x65\\xc0\\xf5\\xfa\\x00\\xa3\\xe1\\x4f\\x1f\\x08\\x63\\x68\\xfc\\x6f\\x9c\\x84\\xd5\\x61\\x19\\x66\\xaa\\xb1\\x9b\\x5d\\x80\\x54\\x02\\xaf\\xe0\\xc8\\xf0\\x88\\x7b\\x94\\x12\\xcb\\x4f\\x78\\x95\\xc1\\xe6\\x5b\\x25\\x0c\\x76\\xe9\\x3e\\x24\\x32\\x59\\x46\\x82\\x35\\x04\\x85\\x6f\\x06\\x9d\\x95\\x50\\x86\\x8d\\xa6\\xb2\\x79\\x0d\\x24\\x33\\x1b\\x22\\xfa\\x6c\\x07\\x2d\\xa6\\xb7\\x71\\xf1\\x66\\x85\\x20\\x42\\x34\\x7e\\xa8\\x3f\\x7a\\x08\\xb2\\x02\\x89\\x47\\x9d\\x14\\x64\\x13\\x14\\x86\\xbe\\x3c\\xa2\\x00\\xc9\\x4f\\xe0\\x68\\x05\\x17\\x5c\\x01\\xff\\xb2\\x9e\\x6f\\xf6\\x7e\\x53\\x81\\x36\\x82\\x1f\\xc2\\x41\\x6c\\xf3\\x43\\x25\\x05\\x39\\xef\\xaf\\x60\\xb2\\x89\\x0c\\xd0\\x0e\\x32\\x14\\x8a\\xdc\\x0e\\x0b\\xa6\\x54\\x77\\x87\\x08\\xdb\\x58\\xc2\\xc7\\xc1\\x52\\x5e\\x66\\xda\\xfb\\x73\\x0c\\x92\\xfb\\x15\\xb6\\x4b\\x53\\x8b\\x12\\xc3\\x66\\x4c\\x7f\\x7b\\x3a\\xb6\\x86\\xfa\\x15\\x9a\\xc1\\x1c\\xe9\\xa7\\x11\\xcb\\xe7\\xdb\\xef\\x0f\\xa5\\xff\\xcc\\xaa\\x55\\xdc\\x48\\xbc\\x78\\xc4\\x2f\\x99\\xb6\\x60\\x7d\\xca\\xc5\\x7b\\xfd\\x94\\x5e\\xd7\\x57\\x30\\xeb\\x3e\\x93\\x20\\xeb\\x41\\xe9\\xf9\\x4a\\x4f\\xe0\\x25\\x54\\x09\\xdd\\x2f\\x51\\x44\\xf1\\x68\\x4d\\x10\\x23\\x25\\x87\\x9c\\x53\\x30\\x94\\xcd\\xe2\\xb1\\x1c\\xd7\\xda\\x75\\x8f\\xd9\\xdf\\x14\\x8d\\xb5\\xa2\\x1d\\xe6\\x25\\x38\\xe0\\xa5\\xdb\\xc7\\x34\\x26\\x56\\x6d\\x90\\x34\\x0e\\xbb\\xf7\\xd9\\x73\\x44\\x8f\\x81\\x5c\\xc2\\x81\\x54\\xf9\\xe7\\xb9\\xd8\\xd2\\xe7\\xde\\x2c\\x8c\\x92\\xe8\\x27\\x7e\\xfb\\xc3\\x0e\\x6d\\x2c\\xf0\\xfd\\xe0\\x48\\x52\\x37\\x63\\x56\\xf9\\x39\\x81\\x54\\x82\\xa8\\x1a\\x8e\\xa8\\x11\\x40\\xb4\\x49\\x8a\\x52\\x83\\x4c\\x98\\x1e\\xb3\\x47\\x45\\x66\\x77\\xf6\\x2a\\x34\\x52\\x92\\x17\\xcd\\x7d\\x8a\\x8b\\xb8\\xa1\\xf7\\x49\\x3c\\x5a\\x51\\xec\\x90\\xe8\\xe4\\xf7\\x12\\x43\\x59\\x73\\x31\\xa7\\xfc\\x6c\\x44\\xf9\\x94\\x0d\\xd9\\x76\\x98\\x10\\xd3\\x82\\x10\\x55\\xd5\\x2b\\x88\\xf8\\xc2\\x5d\\xfa\\x4e\\x2b\\x28\\xee\\x68\\xc7\\xc7\\xc9\\xdf\\x28\\x78\\x08\\x63\\x59\\xf0\\x43\\x93\\x40\\x40\\x7e\\x35\\xcf\\x41\\xda\\xc7\\x27\\xf3\\xf4\\x97\\x49\\x69\\x3a\\x78\\x39\\x84\\x0a\\x4d\\xe2\\xa7\\xd5\\x30\\x3d\\xa5\\x44\\x70\\xff\\xcd\\x4f\\x87\\x79\\xb7\\x30\\x89\\x68\\x77\\xb8\\xdc\\x3a\\x31\\xb5\\x34\\x07\\xa8\\xe7\\x8c\\x48\\x53\\x0a\\x27\\xc7\\x82\\xb6\\x93\\xd3\\xb1\\xb4\\xcd\\x64\\xa7\\x45\\x14\\x14\\x0a\\x19\\x3d\\x2d\\xc4\\x8d\\xf5\\x93\\x6f\\x78\\x99\\x75\\x87\\x4e\\x4b\\x6d\\xd1\\xcc\\x55\\x02\\x5d\\x62\\xdb\\xba\\x06\\x3a\\x86\\x86\\x03\\xfc\\xb5\\x6f\\x60\\x07\\x46\\x3a\\x53\\x21\\x5e\\xe5\\x18\\x68\\xd8\\xf0\\xf6\\x86\\x0f\\xcd\\xf7\\x02\\xa2\\x7d\\x1a\\xde\\x87\\x51\\x92\\xd9\\x0c\\x1a\\xd0\\x03\\x3e\\x36\\xde\\x42\\x17\\x0b\\x95\\xa9\\xa8\\x72\\x4a\\xb6\\x88\\xc4\\xd3\\xda\\xba\\xf3\\x6e\\x7d\\xd4\\xfb\\x86\\xd9\\x73\\x8a\\x60\\x07\\x8a\\x5e\\x2a\\x1a\\x90\\x87\\x82\\xb9\\xd8\\x0f\\x12\\xa7\\x22\\x33\\x81\\xcf\\xf9\\x12\\x57\\xd0\\x5b\\xa8\\xa7\\xce\\x23\\x2d\\xeb\\x79\\x61\\x51\\x79\\x69\\x67\\x48\\x79\\xd2\\xf0\\xd7\\x17\\xd4\\xaf\\x2f\\xe8\\x02\\x8d\\xf9\\xd6\\x13\\x6b\\x53\\x70\\x23\\xb9\\x8e\\x93\\x17\\x06\\x8f\\x93\\x99\\x3d\\xce\\x38\\x56\\x1c\\x3a\\xba\\x3d\\x17\\xde\\xc9\\xb6\\xda\\xcc\\xde\\x21\\xb1\\x19\\x0e\\xf3\\xf3\\x31\\x2e\\x94\\x1b\\xc9\\x2e\\x86\\x4c\\xde\\xd4\\x91\\x7e\\x35\\xb0\\x5b\\xbf\\x92\\x07\\x89\\xbd\\x4b\\xff\\x35\\xec\\xdc\\xc0\\xd0\\xe1\\x67\\xb1\\x9f\\x75\\x6d\\x98\\xea\\x44\\x8d\\xf8\\x0b\\xcf\\x95\\xd4\\xda\\x73\\x41\\xa6\\x92\\xcf\\xef\\x08\\xf4\\x18\\x87\\x90\\x1e\\x11\\x8b\\x52\\xbf\\x18\\x1a\\x8d\\x33\\xa0\\x43\\xdf\\xd8\\xf9\\x4d\\x0a\\xb3\\x64\\x86\\xfb\\x80\\x51\\x44\\xf7\\xf7\\x84\\xcc\\xef\\x40\\x3c\\x19\\x69\\x38\\x2b\\xc3\\x92\\xc5\\x53\\x22\\x95\\x92\\x4b\\x8d\\xb8\\x71\\xbe\\xc6\\xbd\\x9f\\xda\\xd2\\x85\\x4a\\x8b\\x97\\xe8\\xaa\\x77\\xc3\\x62\\xdd\\xda\\x8e\\x6b\\x63\\xef\\x9f\\x14\\x66\\x2d\\x57\\x9c\\x5c\\xc5\\x7a\\xf2\\xca\\x4b\\xcf\\xf0\\x15\\xe2\\x53\\x65\\x4c\\x17\\x2d\\x40\\x2f\\x70\\x98\\xee\\xcf\\x90\\xa4\\xe2\\x6b\\x25\\xab\\x62\\xca\\x61\\x85\\x1e\\x43\\xcf\\x39\\xe6\\xb2\\xa4\\x40\\x11\\x2d\\xd9\\xf1\\xc8\\x97\\x4e\\x75\\x4f\\xa9\\xd9\\x51\\x79\\x8b\\x06\\x09\\xe4\\x1f\\xf2\\x67\\x28\\x3e\\xc4\\x47\\xd1\\xbe\\xe6\\x66\\x46\\x85\\xc8\\xe5\\x21\\xae\\xc9\\x6f\\x4d\\x0d\\x6e\\x88\\xb2\\x76\\xa5\\x5f\\x05\\x94\\x87\\x6c\\x87\\x89\\xb2\\xd1\\x54\\x09\\x9c\\x77\\x89\\x68\\x0a\\x8c\\xf4\\xbb\\x88\\x54\\x53\\xbf\\x82\\x8f\\x08\\x57\\xce\\x57\\x6f\\x6c\\xfc\\x61\\x4e\\x79\\x1c\\x44\\xd1\\x25\\xa0\\xce\\x66\\x11\\x86\\x9d\\x40\\x33\\xd3\\x6d\\x54\\xd1\\xca\\xbb\\x68\\x1d\\x24\\x2f\\xca\\xa3\\x75\\xbf\\x77\\x5a\\x85\\x08\\x5d\\x74\\x78\\x49\\x25\\xe0\\xf6\\x79\\xfa\\x53\\x95\\x60\\x3f\\x12\\x7c\\x47\\x0c\\x7a\\xc0\\x25\\x23\\x9e\\x5c\\x45\\x6d\\x51\\xae\\x1b\\xd6\\xb0\\xf0\\x20\\x73\\xb8\\x81\\xae\\xd5\\x8c\\xe6\\x28\\xdc\\xb5\\xc7\\xab\\x1e\\xe1\\xac\\x98\\x41\\x5e\\xbb\\x2f\\xa2\\x53\\xfe\\xa7\\x05\\x0f\\x4b\\x11\\xe2\\x12\\xae\\xc2\\xd9\\xaa\\x45\\x8f\\x6d\\x7b\\x1a\\x34\\x89\\xae\\x0f\\xec\\x9a\\x58\\xc2\\xef\\x08\\xc3\\x4f\\x20\\x25\\x92\\x73\\xf5\\xa3\\x70\\x11\\x8a\\x68\\xd8\\x3e\\x61\\x1f\\xbe\\xe0\\x3d\\x8f\\x5d\\xf3\\x6f\\x8f\\x56\\x67\\xbd\\xa8\\x2e\\x69\\x33\\xea\\xcb\\x51\\xb8\\xc3\\x39\\x6a\\xb4\\x4b\\x9c\\x66\\xb2\\x05\\x51\\x46\\xc4\\x01\\x8f\\xb9\\x15\\x7f\\xf1\\xb6\\x1b\\x21\\x1e\\xcb\\x3b\\x32\\x59\\xb3\\xd8\\x91\\x82\\xd2\\x53\\x10\\xb3\\x41\\x7c\\x88\\x81\\xe8\\x87\\x04\\xab\\x0f\\xd1\\xd6\\x2b\\x96\\xcf\\x8f\\x0d\\x3d\\xd3\\x8d\\x72\\x6f\\xde\\x9a\\xfa\\x51\\xc7\\xe9\\xa9\\x44\\x1b\\xce\\x81\\x02\\x55\\x65\\x29\\x6a\\x55\\x3f\\x67\\x9c\\x47\\x08\\x34\\xa6\\x0b\\xee\\x42\\x51\\xcf\\xf6\\x79\\x3b\\x0b\\x47\\xd3\\x1e\\x4d\\xdd\\x34\\xd4\\xf1\\x2d\\xfa\\x75\\x91\\x8c\\x28\\x56\\x9a\\x80\\x17\\x1d\\x2e\\x0b\\xce\\x36\\xa4\\xdc\\x1a\\x99\\x4e\\x58\\x06\\x84\\x9b\\x75\\x3c\\xfe\\x6d\\x69\\xc5\\x1d\\x4d\\x30\\xc2\\xeb\\x1c\\x07\\xa5\\x58\\x6a\\x46\\x3f\\x09\\xad\\x83\\x09\\x53\\x0e\\xda\\xb7\\x0f\\x35\\xc3\\x4d\\x60\\x9d\\xf0\\xaa\\x3d\\x18\\x61\\x1d\\xd6\\xa9\\xdd\\x26\\x25\\x8f\\xac\\x41\\xd7\\xf7\\x71\\x78\\x14\\x09\\x18\\xaf\\x4f\\x67\\x84\\xdf\\x89\\xb1\\x31\\x26\\x42\\x6e\\xe6\\xf5\\x63\\xa6\\x88\\x3a\\xa7\\xa6\\x94\\xec\\x78\\x16\\xfc\\x11\\xed\\x02\\xca\\x76\\x19\\x62\\xb8\\xbc\\x42\\x7b\\x3c\\x16\\x30\\xd5\\xb1\\xed\\x75\\x35\\x7c\\xdc\\x67\\x6e\\xbd\\xd4\\x4d\\x6e\\x87\\x30\\xbd\\x35\\x5e\\x18\\xe7\\x98\\x57\\x12\\x04\\xba\\x97\\xee\\x1b\\x37\\x07\\xe0\\x9e\\x14\\x31\\x19\\x28\\x58\\x29\\x7f\\xb4\\xeb\\xcf\\x9d\\x57\\x72\\xad\\x7e\\x68\\xf5\\x17\\x22\\xa3\\x27\\xd8\\x79\\x74\\x93\\xdb\\x4e\\xd6\\x6d\\xc9\\xd1\\x75\\xbf\\xe6\\x0d\\xc2\\x28\\xa9\\xb8\\x56\\x11\\x0c\\x0c\\xc7\\xc8\\x29\\xd0\\x1e\\x63\\xa4\\x65\\x0a\\xe4\\xd7\\xc4\\x27\\x8a\\xe0\\x20\\xed\\xff\\xb1\\x93\\xd5\\x76\\x37\\x91\\x5a\\x7b\\xbf\\x40\\x6c\\x28\\x65\\x30\\x51\\xd2\\x2c\\x6f\\xd8\\x0a\\x69\\xef\\xf3\\x71\\x09\\x1c\\x9b\\x15\\xfb\\x21\\xe3\\x62\\x43\\x5e\\xcb\\x20\\xa6\\xef\\xf1\\xe7\\xac\\xf1\\x41\\x9f\\x1e\\x56\\x52\\x9b\\xf5\\x47\\x6e\\x36\\xb7\\x46\\x51\\x08\\x7c\\x73\\x3e\\xc0\\x46\\xac\\x7d\\xb5\\x44\\x28\\x9a\\x7f\\xb7\\xd4\\x6c\\xa7\\x53\\xcb\\xf1\\x37\\x3d\\xe1\\x16\\xba\\x44\\x17\\x5e\\x28\\xa1\\xc3\\x27\\xa1\\x12\\x68\\x86\\x94\\x47\\x6b\\x71\\x0f\\xb8\\x6b\\xce\\xe2\\x57\\x14\\x9a\\xc4\\xfc\\xca\\xc8\\xfc\\xca\\xf3\\x5c\\x65\\xdd\\x6e\\x42\\x16\\x6a\\xf2\\xe2\\x94\\x6a\\x22\\x80\\xa2\\xcb\\xc7\\x01\\x05\\x64\\x8b\\x2d\\xe8\\xd3\\x8c\\x81\\x20\\xe0\\x57\\x2c\\x96\\xf8\\x25\\xf4\\xd1\\x29\\xac\\xdf\\xde\\x3a\\x8c\\x38\\xc1\\x03\\x5a\\x1e\\x7f\\xe6\\x0f\\x4f\\x2b\\x89\\x9c\\x8a\\x37\\xf7\\x6e\\x0e\\xb5\\x51\\x1a\\xd2\\x9d\\xcf\\x09\\x72\\xee\\x92\\x37\\xcc\\x36\\xee\\x9a\\x7e\\x7d\\x70\\x24\\x05\\x19\\xe9\\x92\\x66\\x4b\\xbf\\xc1\\x2d\\xd8\\xa2\\x4f\\x29\\x9d\\xba\\xa9\\x51\\x97\\x72\\x61\\xb9\\x48\\x91\\x46\\x7b\\xbe\\x99\\x2d\\xd8\\xa2\\x0f\\xe3\\xed\\x96\\x2a\\xc8\\x8b\\x45\\xff\\x6e\\x04\\x4e\\x21\\x66\\x60\\x42\\x72\\x49\\x3c\\xcb\\xa2\\x1c\\x85\\x6c\\x42\\x1c\\x2a\\xda\\x83\\xa1\\x33\\xd1\\xda\\x76\\x22\\x61\\x64\\x2d\\x5e\\xd5\\x55\\x38\\xb8\\xcc\\x6d\\x8e\\x41\\x62\\xe3\\x8f\\xa6\\xa5\\xb1\\x3f\\x6b\\x70\\xb4\\x5a\\xee\\x10\\xce\\xba\\x92\\x2f\\xa2\\x38\\x93\\x98\\x1b\\x4f\\x75\\x42\\x53\\xf4\\xce\\x5b\\x1a\\xbf\\x3b\\x35\\xcc\\xbb\\x2f\\x69\\x42\\x61\\xbd\\x1e\\x46\\x70\\xf6\\x9a\\x27\\x83\\xc4\\x8f\\xf6\\xdf\\x34\\x47\\x73\\x49\\x4f\\x72\\x24\\x97\\xa5\\x14\\x7d\\x44\\xf3\\x46\\xb5\\x39\\x12\\xc3\\x6f\\x66\\x04\\x54\\xf0\\x90\\xc6\\xbe\\xe8\\x17\\xa0\\x16\\xb1\\x5f\\xa4\\xcf\\x92\\xd5\\xc8\\x1d\\xbe\\x6f\\x15\\x33\\xf1\\x73\\x51\\xb7\\xe0\\x13\\xf8\\x28\\xdd\\xfd\\xa3\\x3c\\x28\\x12\\xf7\\x58\\xd1\\xff\\x22\\x54\\x14\\x50\\x0f\\x6b\\xbf\\x4f\\xee\\xa8\\xe9\\x05\\x19\\xbd\\xec\\x2f\\xdd\\x71\\x84\\x4b\\x25\\xa4\\x86\\x56\\xfd\\xfa\\x68\\xc4\\xa3\\x63\\x71\\x23\\x0b\\xb9\\x30\\xfb\\x60\\x1d\\x7e\\x7b\\x1b\\xdb\\x64\\x3d\\xb3\\x1c\\x86\\xab\\xe9\\xa5\\x1c\\x79\\x4d\\x34\\x38\\x22\\x8b\\xc9\\xa2\\xf1\\xd8\\xc4\\xf6\\x0d\\xa3\\xc9\\x90\\xd5\\xff\\x87\\x66\\x94\\x53\\x27\\x21\\x35\\x41\\x0b\\xea\\x4d\\x4b\\x76\\xbe\\x6b\\xec\\xa5\\x34\\xcc\\x19\\xbc\\x1c\\xeb\\x90\\xf6\\x69\\x7f\\x4d\\x11\\x7c\\x62\\x0b\\xa0\\x2b\\xee\\x9e\\xaa\\xc2\\x70\\xaa\\x88\\x91\\x98\\xdf\\x70\\x9e\\xa6\\x51\\x3a\\x65\\x9f\\x40\\x89\\xdb\\x42\\xb8\\xb9\\xd1\\xc0\\x1c\\xc4\\x8d\\x22\\x43\\xd5\\x6f\\x5e\\xb6\\xa1\\x2a\\xb6\\x69\\x10\\x40\\x88\\x51\\xbf\\x9f\\xf7\\x63\\x66\\xed\\x79\\x9a\\x3b\\x72\\x54\\x31\\x13\\x20\\x66\\xfe\\x4a\\xf0\\xd1\\x35\\x04\\xc3\\xdd\\x4a\\x66\\x24\\x2d\\x37\\xc2\\xb1\\xca\\x79\\xbd\\xef\\x99\\xb0\\x6d\\x43\\x20\\x31\\xdb\\xf0\\x92\\xb1\\xd2\\x24\\x7a\\xa4\\xe3\\xa6\\x97\\x94\\x19\\xa6\\x34\\xf2\\xd0\\x60\\xc1\\x7c\\x74\\xc3\\xf3\\x1c\\xa6\\x1d\\x2d\\x9d\\x39\\xf1\\x88\\xae\\x82\\x02\\x99\\x46\\xd9\\x36\\x29\\xa0\\x66\\x0f\\x3d\\x02\\xc2\\xd9\\xfe\\xc5\\x41\\xb1\\xb4\\xfd\\x08\\x71\\x1e\\x25\\xd7\\x39\\xb5\\x96\\xb1\\x51\\x91\\x4c\\x41\\x2c\\x94\\xd9\\xf0\\x58\\xd8\\x6c\\x25\\x6c\\xc3\\x43\\x72\\xbc\\x9e\\x33\\x77\\x31\\x9c\\x74\\xe2\\xbb\\xb0\\xb0\\x2d\\x89\\x87\\x09\\xd8\\x98\\xf7\\x76\\x4d\\x18\\xca\\x8e\\x99\\x59\\x6e\\x98\\xbd\\xcd\\xf5\\x79\\x24\\xe5\\x76\\xdc\\x47\\x97\\xf8\\x89\\xb8\\xb3\\x10\\x5f\\xa0\\xb5\\xf3\\x1c\\xcd\\x73\\x9a\\xb6\\xba\\x48\\x3a\\x8c\\xb4\\xbb\\x3c\\xde\\xfc\\xc3\\x49\\x16\\x64\\x60\\x09\\xaa\\x73\\x4b\\xe2\\x85\\xf5\\x1d\\x04\\x46\\x40\\xdc\\xc9\\x88\\x18\\x67\\x7f\\xbf\\x53\\x52\\x46\\xd5\\xbc\\x7c\\x31\\x0c\\xc0\\x43\\xf2\\xe0\\xc2\\xbb\\xb3\\x66\\x38\\xc0\\x73\\x0c\\x7b\\xa7\\x0d\\xe5\\x27\\x20\\xbf\\x2b\\xe0\\xdb\\x0f\\x5d\\xcc\\x24\\xf1\\xce\\xd5\\x08\\x25\\x41\\xf2\\xe0\\xd2\\x5c\\xac\\xa9\\xb8\\x50\\x4c\\x33\\xcb\\x0b\\x8b\\x6b\\x2f\\x84\\x44\\x3d\\x5c\\x59\\xea\\x14\\x3d\\x55\\x26\\xf7\\x88\\x17\\xfe\\x1f\\xc8\\x12\\xcb\\x6c\\x1d\\xfa\\x5d\\x3e\\xcc\\xd5\\xae\\x3c\\x36\\x81\\x33\\xa8\\x21\\x62\\x05\\x44\\x59\\x42\\x90\\xd9\\x3f\\xd0\\x9f\\xf2\\xe8\\x9f\\x61\\x25\\x41\\xee\\x96\\x9a\\xd9\\xab\\xd1\\x98\\x53\\xc0\\xed\\x80\\x4f\\xd1\\x3c\\x5e\\xdb\\xd6\\x45\\x7c\\x8b\\x89\\x20\\x57\\x6f\\x5a\\x30\\xcd\\x41\\x56\\x12\\xab\\x00\\x62\\x0e\\x04\\x8a\\x55\\x24\\xba\\x19\\x16\\xe6\\xf0\\x6b\\x1e\\x0e\\xe5\\x21\\xa4\\xa1\\x3f\\x4d\\x86\\x3b\\x8b\\xcf\\x78\\xa5\\x53\\x58\\x3d\\xf8\\xc5\\xb9\\xce\\x31\\x0c\\x8e\\x55\\xa5\\x2a\\x02\\xc3\\x49\\xc9\\x90\\x45\\xbe\\x08\\xab\\x84\\x17\\xbb\\x3c\\xda\\x88\\x56\\x1e\\x47\\x32\\xa7\\x1d\\x6c\\xf9\\x0a\\xfe\\xfe\\xaa\\x26\\xac\\x5b\\x32\\x76\\x85\\xb5\\x92\\x3e\\xaf\\x91\\x40\\xf8\\x06\\x23\\x5e\\xa9\\xf2\\x6d\\xe2\\x77\\xb8\\x87\\xf6\\x20\\x40\\x41\\x89\\x1d\\x15\\xf3\\x26\\x7a\\xb8\\x35\\x59\\x73\\x10\\xbc\\x42\\x5a\\x45\\xf2\\x45\\x51\\x2c\\xd1\\xc8\\x4b\\x53\\xaf\\x17\\x44\\x61\\x7b\\x68\\x7a\\xb6\\x52\\x80\\x86\\xb2\\xa8\\xb7\\x1e\\x18\\x80\\xba\\x77\\x08\\x5f\\xfb\\xf3\\x2d\\xab\\x35\\xcd\\x64\\xa2\\x24\\x25\\x45\\xbd\\x16\\x6f\\x44\\x00\\x0a\\x23\\xe3\\x50\\x0a\\x6e\\x9a\\xff\\x84\\xb8\\x39\\x23\\x45\\x3a\\x5b\\x79\\x34\\xf0\\x8e\\x57\\x6f\\xba\\x13\\x9c\\x2d\\x67\\x13\\x37\\xc8\\x3a\\x21\\x80\\x72\\x87\\xb3\\x5b\\x6a\\xbc\\x73\\xca\\xff\\xc3\\x81\\x50\\x1c\\x85\\xfa\\x7c\\x40\\xea\\xf0\\xe9\\x43\\x03\\x41\\x7b\\x8a\\xfc\\xc5\\x10\\xcf\\xb5\\x0e\\xe3\\x91\\xfd\\xd5\\xf7\\x23\\x66\\xe6\\xf9\\xc3\\x1c\\x82\\x34\\x9a\\x0a\\x54\\xa7\\x6d\\xcf\\x90\\xe0\\xd4\\x35\\xfe\\x0e\\x9c\\xc0\\xdd\\x5d\\xfe\\x30\\x62\\x00\\x33\\x0e\\x72\\x39\\x19\\x77\\x84\\x62\\x0e\\xeb\\xba\\x26\\xf1\\xea\\x45\\x12\\xce\\xfa\\x92\\x0f\\x6f\\xbe\\xf8\\xde\\xa9\\x44\\x36\\xf0\\x9e\\x79\\x52\\x68\\xde\\x37\\x29\\x2f\\x67\\x66\\x6e\\xb3\\x80\\x1b\\xed\\x4f\\xd2\\xd8\\xc6\\x34\\xa5\\xb8\\x74\\xd2\\xab\\xcd\\x80\\x3a\\x0c\\xce\\x22\\xea\\xb4\\x3e\\xcd\\xb7\\x7f\\x86\\xe9\\x8d\\xcd\\x8e\\xc2\\x6f\\x3c\\x7a\\xc4\\x81\\x11\\x9e\\x17\\xb8\\x98\\x99\\x74\\xac\\x71\\x46\\x86\\x18\\xdb\\xfa\\x6e\\xa1\\xae\\x9e\\x11\\x81\\x99\\x02\\x8e\\x76\\xa1\\x5b\\x33\\x35\\x94\\xe0\\xb7\\xc3\\xa9\\x49\\x47\\xae\\xdc\\x72\\xa2\\xf4\\xf9\\x00\\x53\\xed\\xa7\\x78\\x9f\\xb3\\xdb\\xd6\\x66\\xe9\\xa3\\x70\\x95\\x96\\xa4\\x64\\xdb\\xac\\xf8\\x5c\\x0b\\xc3\\x74\\xda\\xe2\\xed\\xd3\\xf2\\x95\\x9f\\xe4\\xf1\\xca\\x0d\\x6f\\xb4\\x44\\x19\\x89\\x40\\x28\\xf7\\x1b\\x55\\xd4\\xc4\\x93\\x2b\\xce\\x21\\x2c\\xdd\\x1e\\x06\\x1a\\xb3\\x95\\x87\\xe0\\x57\\xaf\\x5b\\xfe\\xa8\\xe3\\x16\\x2a\\x3c\\x3c\\x86\\x99\\x13\\xb3\\x21\\x97\\x19\\xa4\\x9f\\x75\\x0d\\xc5\\x78\\x36\\x3c\\x73\\xbf\\x78\\xcc\\x86\\x78\\xec\\x9b\\xd7\\x1c\\xcf\\x07\\x1f\\xec\\x6e\\x58\\xeb\\xec\\x95\\x5b\\x07\\x75\\xd3\\xa7\\x06\\x2a\\x96\\x5d\\x02\\x09\\xc8\\x1f\\x12\\x59\\x28\\x28\\x6b\\x63\\xa8\\x5d\\xd9\\x9f\\x5c\\x8a\\x88\\x57\\x78\\x54\\x18\\xcc\\xab\\x97\\x98\\xba\\x4e\\x4f\\x7d\\xba\\x5e\\x86\\x7a\\x3f\\x35\\xb7\\x66\\xda\\xf0\\xb2\\x5c\\xa7\\x5a\\x29\\x8d\\x0e\\x88\\x6b\\x78\\xc0\\x8e\\xa3\\x9b\\x3e\\xda\\xc9\\xa7\\xef\\xbb\\x32\\x8a\\xc4\\xc1\\xdf\\x59\\x2e\\x21\\xbd\\xd2\\x99\\x2e\\xb6\\xaf\\xfd\\x7d\\x57\\xed\\x03\\xca\\x82\\x3d\\xa6\\xf1\\xcc\\xe1\\xd8\\xe7\\x3d\\x14\\xff\\xa8\\x4b\\xf6\\xb9\\xc0\\x6c\\x87\\xed\\x14\\x50\\x0d\\x9b\\xef\\xf7\\xb6\\xc9\\x6f\\xa7\\x06\\x13\\xbe\\x30\\x3a\\x34\\x92\\xa1\\xd4\\x7c\\x60\\x3a\\x9a\\x4f\\x12\\xa6\\x20\\xc8\\xea\\x99\\x8f\\xd7\\x17\\xea\\xe8\\xe1\\xd5\\xaa\\xdd\\xf2\\x05\\xe0\\xc1\\x39\\x55\\x37\\x50\\x1d\\x5a\\x1e\\x9a\\x19\\xe0\\xde\\xa4\\x46\\x81\\xe6\\x7a\\xf9\\x4f\\x3d\\x11\\x6e\\xf8\\x61\\xf9\\x59\\x42\\xce\\xca\\x4e\\x23\\xda\\x0b\\x31\\x24\\x88\\x10\\x77\\xa9\\xe2\\x0b\\x44\\x77\\x9e\\xd3\\x78\\x4e\\x3d\\xcb\\x2e\\x24\\xd2\\x63\\xb7\\x50\\x3e\\xca\\x2e\\x94\\x97\\xde\\xa0\\x16\\x45\\x13\\x44\\x89\\xd6\\x91\\xcf\\x90\\xd5\\xf5\\xd7\\x3a\\xd9\\x34\\xec\\x8f\\x1b\\x37\\x15\\x2d\\xb6\\xcc\\xac\\x5d\\x52\\xe0\\x5f\\x4c\\xe2\\xf7\\xa4\\x7d\\xab\\xb6\\xa7\\x61\\x86\\x9b\\xe6\\x25\\x34\\x28\\x5e\\xf1\\x72\\x10\\x26\\x16\\x46\\x94\\x4e\\x85\\x51\\xce\\x2b\\x96\\xb1\\x5f\\xd9\\xd0\\xb8\\x3c\\xb8\\x97\\x27\\x53\\xaa\\x4a\\xce\\xa5\\x57\\xba\\xd5\\x21\\x87\\xbf\\x70\\xc4\\xb3\\xdf\\x28\\xd7\\xc0\\x7a\\x9f\\xaf\\x44\\x2b\\x3f\\x3a\\x45\\x6c\\x88\\x9e\\x41\\x2c\\x2e\\x01\\x65\\x03\\xc0\\x97\\x0c\\x58\\xfd\\x1c\\x33\\x7f\\xff\\xd8\\xcc\\x84\\x4e\\x4b\\x4f\\x86\\x31\\xa3\\x8f\\x03\\x22\\x29\\x5d\\x82\\x0d\\xe5\\x67\\x2e\\xca\\xad\\x06\\x20\\xcc\\x01\\x9d\\xaf\\xe3\\x12\\x5d\\xbc\\x97\\x9f\\xff\\x75\\x3a\\x7e\\x77\\xec\\x7e\\x87\\xdf\\x8f\\x5f\\x1e\\x71\\x3d\\xef\\xba\\x39\\x99\\x24\\x7e\\x4d\\x19\\x14\\x4b\\xa8\\x6e\\x09\\x07\\xfd\\xf8\\x67\\xcf\\xb5\\x68\\xb7\\xb0\\xd6\\x5b\\xf9\\xc6\\xf4\\x36\\x7a\\x85\\x1c\\x80\\x1e\\xe4\\x58\\x58\\xb7\\xb7\\x22\\x88\\x61\\x9e\\xd8\\xcc\\x04\\xc2\\x39\\x7f\\x15\\xfc\\xdc\\x4e\\x8a\\x31\\x56\\x64\\xc8\\x01\\x11\\x42\\xa5\\x68\\x87\\x7d\\x2c\\x89\\xeb\\x9f\\xdb\\xcb\\x2e\\x9f\\x5e\\x6d\\x43\\x62\\x05\\x1e\\x82\\x2f\\xc0\\x78\\xf5\\xaa\\xcb\\x80\\x5b\\x62\\x5f\\xc7\\x06\\xc6\\x51\\xab\\x06\\x6d\\x84\\x2f\\x98\\xd1\\x2e\\xe2\\x58\\x2b\\xe5\\xe8\\xa3\\x13\\xb2\\x18\\x94\\x11\\xae\\x67\\xe1\\xe4\\xbf\\x48\\x74\\xf5\\xd1\\xbb\\x40\\x0f\\xc9\\x82\\x40\\x47\\x22\\xe5\\x49\\xb3\\x44\\xa7\\x78\\x75\\x1b\\xb5\\x71\\xf8\\x31\\xbe\\xf8\\x4e\\x57\\x67\\x99\\x9d\\xb5\\xdc\\x3f\\xd5\\x22\\x63\\xf1\\xf9\\xa7\\x80\\x93\\x30\\xc2\\x4d\\x96\\xa6\\xca\\x5e\\xa0\\xc9\\xf4\\x0d\\xcb\\xa9\\x7b\\x4f\\x3a\\x2a\\xed\\x11\\x65\\x8d\\x56\\xcd\\x21\\xc5\\x7f\\xb2\\x5c\\x35\\xc1\\xd7\\xd7\\x3e\\x89\\x5e\\x6b\\xe5\\x2f\\xdf\\xcc\\x9c\\x02\\xbe\\xc8\\xf6\\x73\\xaa\\x6e\\x8d\\x34\\x05\\x85\\x4d\\xda\\x6e\\x7f\\x0b\\x46\\x1a\\x08\\x7e\\xd5\\x13\\x8a\\xde\\xbe\\xe6\\x20\\x28\\xea\\xfa\\x9f\\x09\\x14\\x88\\x11\\xd0\\xc8\\x73\\xb4\\x74\\x5f\\xee\\xb9\\x5e\\x2a\\x6b\\x5e\\x68\\x7f\\xbc\\x28\\x68\\x3c\\xb5\\x05\\x7f\\x51\\xb0\\xd5\\x66\\x9d\\xc5\\xb1\\xb1\\x99\\x12\\x79\\x0e\\x78\\xc8\\xf2\\xf4\\x3b\\x64\\x6e\\x43\\x37\\x3b\\xb2\\x1a\\x39\\x0e\\xb6\\x2b\\x64\\xee\\x51\\x94\\xd0\\xfd\\xce\\xa0\\xb9\\x45\\xfd\\x18\\x4d\\xcd\\x3c\\x35\\x5c\\xa0\\xe4\\xf4\\x51\\xdc\\x8c\\xdb\\x6f\\xfa\\x39\\x7f\\x0f\\xd7\\x76\\x26\\x12\\xcf\\xed\\xbd\\xf5\\x77\\xfd\\x5c\\xf4\\xb6\\x3d\\x21\\x50\\x51\\xe0\\xdb\\xfe\\x31\\x05\\xec\\x7e\\x87\\x92\\xef\\x7a\\x9c\\x15\\xe5\\xb0\\xa7\\xe7\\xdf\\x53\\xba\\x43\\xd4\\x92\\xf7\\x3e\\x4f\\x62\\x51\\xc7\\x09\\x92\\xe8\\x17\\x91\\x1d\\x41\\x4a\\x8f\\x01\\x05\\xdf\\x57\\xe0\\xa7\\x41\\x25\\xdb\\x35\\x2a\\xe6\\xde\\x7a\\xe7\\x3e\\x77\\x83\\x31\\x5b\\xcb\\xb0\\x33\\x73\\xae\\xc7\\xf3\\x57\\xe2\\x8a\\xdb\\x35\\xb5\\x93\\x0b\\x7d\\xc3\\x95\\xc2\\x33\\x30\\xcd\\xc2\\x04\\x72\\xf4\\xc8\\x2b\\x64\\x77\\x23\\x7c\\x57\\xf5\\xa9\\x21\\xbd\\x7a\\x5b\\x06\\xf6\\xd6\\x86\\xf9\\x50\\x5b\\x8f\\x53\\x4f\\x91\\xf8\\xbf\\x73\\x2d\\x38\\x43\\x01\\x0b\\x09\\xc6\\x08\\x7c\\x3f\\x55\\xdd\\xad\\x12\\xf7\\x2a\\x60\\xf7\\x79\\xba\\x47\\xeb\\xd3\\x1a\\x77\\x91\\xd6\\x78\\xef\\xe1\\xa0\\x78\\xd7\\x03\\x79\\x23\\x55\\x81\\xd3\\xe2\\x96\\xe6\\x50\\x7d\\xdd\\xeb\\x7d\\xb0\\xe4\\x86\\xa4\\xcb\\x38\\xf5\\x09\\x35\\x90\\xb0\\x4b\\x0e\\xed\\x14\\xf9\\x1d\\x82\\x70\\x14\\x1e\\x3e\\xf6\\x28\\x63\\x4e\\x2c\\x7e\\x82\\x2d\\x63\\xbd\\xa1\\xb2\\x48\\x32\\x53\\x52\\x36\\xd9\\x67\\xc6\\x13\\x81\\xa1\\x70\\x5f\\xec\\xa6\\xbc\\xa3\\x7b\\x91\\x0f\\x46\\xf4\\x09\\x41\\x04\\xa3\\x98\\x72\\x67\\x4e\\x81\\x31\\xaf\\x83\\x4f\\x24\\x58\\x39\\x21\\xfa\\x4d\\x1b\\xee\\xbf\\xf7\\x65\\xa0\\x0a\\x4f\\xba\\x1c\\x05\\xec\\x31\\xee\\x98\\x67\\x78\\x5a\\xd4\\x8c\\xad\\x43\\x05\\x86\\x48\\x8c\\x37\\x83\\x56\\x89\\xd3\\xb8\\x89\\x7b\\xda\\x2a\\x59\\x15\\xaf\\x9e\\x5e\\x0e\\x6f\\x70\\x17\\xbc\\x47\\xef\\xaa\\x54\\x77\\x9f\\xd3\\xe2\\x70\\x33\\xd9\\x91\\x92\\xf9\\xfb\\xe2\\x8f\\xb4\\x87\\xb0\\x22\\x53\\xa2\\x1a\\xca\\xd1\\x8d\\x54\\xe1\\x0c\\xf7\\xf9\\x8f\\x08\\xe4\\x0c\\xc2\\x2c\\x10\\x44\\x22\\xad\\xaf\\x78\\x9a\\xdc\\x54\\xcf\\x93\\x01\\x3e\\xba\\x0d\\xff\\x08\\x49\\xd8\\xfd\\x85\\x7d\\x92\\x2b\\x6e\\xc8\\xb3\\xe5\\xfd\\x03\\x3c\\x59\\x85\\xaa\\x70\\x96\\x75\\xb3\\x72\\x1f\\xcb\\xd9\\x7e\\x37\\x3d\\x91\\x72\\x07\\x4a\\xea\\x6e\\x05\\x9c\\xff\\x1c\\x65\\x9f\\xd4\\xa5\\x0d\\x65\\xdd\\xf9\\x1e\\xa9\\xc5\\x3f\\x8f\\xe9\\x53\\x29\\xf4\\xe7\\x52\\x22\\x23\\xbd\\xb4\\xb9\\x43\\x41\\x8b\\x2a\\x1a\\x15\\x3b\\x71\\x80\\x3f\\x16\\xe6\\xa4\\x5c\\xa9\\xfd\\x95\\x87\\x17\\x5d\\x62\\x83\\xb5\\x3e\\xa2\\x50\\x02\\xc1\\x7b\\x0f\\xcd\\xd7\\x28\\xce\\xb2\\x45\\xe9\\xbf\\x48\\x8e\\xfe\\x96\\x56\\xb4\\xfd\\xce\\x2b\\xa0\\x2e\\xd9\\x2d\\x30\\x13\\x4f\\x67\\xa1\\x44\\x82\\x04\\xe4\\x45\\x2f\\x06\\xab\\xcd\\xd5\\x4f\\xe0\\xcb\\xf8\\x68\\x6e\\xf1\\x17\\x31\\x69\\x3a\\x7f\\x7d\\x32\\xd9\\xbf\\xa3\\x03\\xf1\\x55\\x51\\xac\\xb7\\xd6\\xf4\\xdf\\x90\\xb9\\xb6\\xab\\xfd\\x7d\\x51\\xf4\\x49\\xa7\\x50\\x8c\\xb2\\x83\\x4b\\x6d\\x00\\x8e\\xd0\\x71\\x9d\\xdd\\x5d\\x96\\xe3\\x8a\\xba\\x92\\xb7\\x1b\\x17\\x11\\xb5\\x31\\x8a\\x94\\x07\\xb1\\x47\\x5d\\x8a\\x28\\x1e\\x9e\\x74\\x77\\x67\\x62\\x2c\\x9d\\xc3\\xcf\\xf2\\xd7\\x2d\\x6c\\x23\\x37\\x4a\\x73\\xd9\\xec\\xc8\\x5d\\x87\\xa9\\x4c\\xc8\\xeb\\x7f\\x76\\x84\\xb2\\xc4\\xeb\\xbb\\xcf\\x36\\x33\\x77\\x3c\\x08\\x91\\xa6\\x06\\xb4\\x74\\x02\\x91\\xee\\x27\\xf2\\xab\\x34\\xa7\\x29\\x18\\xab\\x1b\\x2c\\x25\\x60\\x9f\\xec\\x30\\x67\\x8a\\x4d\\xdc\\x18\\xb5\\x63\\x28\\xc5\\x28\\x91\\x47\\xcf\\xab\\x34\\x92\\xf6\\x35\\x3f\\x80\\x76\\x7d\\xe1\\x11\\x36\\x05\\x57\\xdf\\x69\\x09\\x50\\x47\\xea\\x8e\\x27\\xcb\\x91\\xf3\\x7c\\x55\\x24\\x4e\\xb9\\x17\\x86\\x5e\\xc9\\xbc\\xff\\x57\\xe2\\x5f\\x65\\x8f\\x1d\\xbd\\x31\\xf0\\x89\\x53\\xa1\\x26\\x3e\\x9b\\x04\\x8a\\x39\\x10\\x7b\\xaf\\x68\\x2c\\xfa\\x67\\x6c\\x0b\\x76\\xa4\\x12\\x34\\xf1\\x4b\\x26\\x65\\x26\\x70\\x4f\\x9f\\x89\\xbb\\xdd\\x44\\x87\\xa6\\x70\\x55\\xdc\\xfe\\xdc\\x62\\x9d\\x3d\\x43\\x99\\x23\\x20\\xad\\x53\\xaa\\xc8\\x88\\x27\\x39\\x41\\x98\\x48\\x3b\\x2f\\xf8\\x89\\xaa\\x43\\xca\\x00\\x3c\\x5a\\x56\\x12\\x36\\x64\\xd6\\x74\\x54\\xcc\\x1f\\x2c\\xf4\\x10\\x98\\x34\\xac\\x35\\x30\\xfa\\xed\\x61\\x75\\x66\\x69\\x9a\\x3f\\x58\\x02\\xc9\\x85\\x42\\x8b\\x5b\\xb2\\x9e\\x9a\\xe7\\x04\\xbe\\x60\\x36\\xcd\\x74\\xff\\x5e\\xd9\\xc1\\x7a\\x17\\xee\\x09\\xc2\\x6d\\x0a\\xfe\\xb8\\xf1\\x0b\\x7c\\xaa\\x41\\xcc\\xd6\\x68\\x50\\x06\\x1d\\x00\\xc3\\xce\\x7c\\xa6\\x3e\\x26\\xcb\\xa4\\x5e\\x8d\\x1e\\xb7\\x4a\\x05\\x7e\\x79\\xef\\x78\\x6b\\x36\\xde\\x21\\xf9\\x2a\\x53\\xf7\\x39\\x6d\\x1d\\xfe\\x6c\\xbc\\x26\\x94\\x31\\x72\\xf7\\x06\\xff\\x3d\\x82\\xe5\\xcd\\xe1\\xaa\\xf5\\xf8\\x89\\x91\\x7d\\x80\\x1f\\xe7\\x5e\\x1d\\x78\\x04\\xed\\xfe\\x19\\xe8\\x0e\\x0e\\x3a\\xa2\\x14\\x3f\\x83\\xbf\\xce\\x5c\\xef\\x84\\xdd\\xf6\\x54\\xe2\\x47\\xfd\\x7b\\xd4\\x12\\xdc\\x89\\xb1\\x1f\\x98\\x71\\x44\\xb1\\x03\\x4c\\x9a\\xd9\\x94\\xfe\\x4f\\xc4\\x04\\x2b\\x07\\xe9\\xf1\\xab\\x09\\xf5\\xf1\\xcb\\x09\\x65\\xff\\xc7\\x0e\\xc9\\x87\\xa5\\x53\\x6e\\x2f\\x3f\\xac\\x85\\xc7\\xb5\\x99\\x59\\x64\\x15\\x9d\\xd1\\x79\\x47\\xd0\\xa5\\xca\\x04\\x04\\xe4\\x1d\\x96\\xe1\\x6a\\x0f\\x23\\xe3\\xd2\\x5a\\x90\\x47\\xbf\\x96\\xbe\\x28\\xe4\\x14\\x7b\\x98\\x03\\x5c\\xf4\\x02\\xeb\\x16\\x39\\xdd\\x16\\xca\\xe7\\x7d\\x3e\\xa8\\x93\\x96\\x95\\x27\\x67\\x1d\\xee\\xf6\\x11\\xf7\\xf0\\xe2\\x23\\xc0\\xe3\\x0d\\xf5\\x3a\\x30\\x8d\\x6c\\x76\\x77\\xe8\\xd0\\xc7\\x4b\\xbc\\xce\\x9d\\x29\\xc9\\x66\\xcb\\x7b\\x03\\xf6\\x05\\x5f\\xba\\x63\\xe5\\x9a\\x9f\\x28\\xbb\\x62\\xf0\\x0e\\xd2\\x3d\\x7b\\xa5\\x32\\xe5\\x8c\\x6e\\x76\\xdc\\xeb\\x94\\xa1\\x38\\xde\\x47\\x6d\\x01\\x91\\x65\\x18\\xed\\x2e\\xfb\\x1f\\xd9\\x4f\\x52\\x64\\x69\\x56\\x5f\\x7e\\x16\\x46\\x56\\xdf\\x38\\x90\\xd3\\xf5\\x40\\x2f\\x47\\xea\\x0f\\x96\\x14\\xa8\\x43\\x1e\\xc3\\xd5\\xf2\\xd4\\xaf\\x2d\\x9f\\x95\\xa9\\x6f\\xb2\\x7e\\xa9\\xa8\\xbc\\x94\\x17\\xd2\\x6d\\xbc\\xc3\\x93\\x3c\\xe0\\x9b\\x0e\\x5d\\xe3\\x17\\x06\\x4e\\x9a\\xe0\\xb2\\x4f\\xd0\\x3b\\x73\\x51\\x81\\xcc\\x90\\x53\\x88\\x59\\x21\\xaa\\xdc\\xc9\\x4a\\x97\\x53\\x49\\x98\\xfd\\x91\\xf8\\x2f\\x01\\x51\\x4f\\x2c\\x44\\xfe\\xa8\\x85\\x78\\x89\\x3a\\x54\\xaf\\xe2\\xa8\\x2c\\x9e\\x26\\xbf\\xb1\\x78\\xb6\\x9d\\xb3\\x82\\x46\\xcf\\xab\\x42\\xe0\\x5b\\x73\\xcc\\x12\\xb7\\xa7\\xb2\\x99\\x2d\\xc3\\x88\\xae\\x20\\xb3\\xd3\\xfc\\xec\\xc5\\x89\\x48\\x0a\\x33\\xc6\\xa7\\x20\\xb5\\x4e\\x9d\\xdd\\xe9\\x7b\\xa8\\x6d\\x66\\xb5\\x1d\\xd2\\x18\\x63\\x4f\\x39\\xad\\xd9\\x5d\\x3f\\x83\\x6e\\xb6\\x72\\x3a\\x7b\\xa9\\x5e\\x4c\\x73\\x5e\\x1d\\x5d\\x1b\\x26\\x0e\\x72\\x8e\\xcb\\xc0\\xbb\\xf0\\x4a\\x92\\xcb\\xdd\\x70\\x65\\x56\\xe6\\x3c\\x9f\\xdf\\xcc\\xc8\\xdf\\xdb\\x19\\x29\\x83\\x3c\\x28\\xe5\\xbb\\x12\\xa6\\xd1\\x34\\xbf\\xb9\\xce\\x42\\x83\\x71\\x82\\xb1\\x08\\xee\\x64\\x94\\xe3\\xa4\\x1e\\x9e\\x5c\\x94\\x2f\\x57\\xa2\\x7c\\x4e\\x13\\x58\\x83\\x5d\\x32\\xa4\\x6c\\x37\\xac\\xa9\\xf7\\x0d\\x53\\x3e\\xfd\\x4f\\x80\\xd5\\x60\\xea\\xd0\\x9c\\x7b\\xa1\\xec\\x9e\\xe4\\xe8\\x8c\\xea\\x7c\\x5d\\x89\\x01\\x49\\xbf\\x97\\x63\\x74\\x77\\x4e\\x3b\\xea\\x4e\\xcb\\xc5\\xf7\\x43\\x2a\\x7e\\x12\\xcb\\x19\\x5f\\x22\\xac\\xa9\\x2e\\x03\\xa2\\x6d\\xa2\\xf7\\x10\\x1f\\x71\\x4d\\xb8\\x6f\\xb5\\x4a\\x10\\x5c\\x4c\\xd3\\xe2\\x44\\x18\\xb7\\xc4\\xa4\\x7e\\x2c\\xbd\\xa6\\x33\\xbe\\x7c\\xbd\\xc3\\x8d\\xe6\\x03\\xd2\\xa0\\x3b\\x2e\\x77\\x5f\\x9e\\xde\\x90\\x19\\x01\\xa5\\xd2\\x96\\x97\\x49\\xaf\\xa2\\x1d\\x0f\\xa4\\xc5\\xef\\x01\\xa8\\x2e\\xaf\\x6c\\xe7\\x5e\\xe7\\x15\\x1a\\x63\\xdd\\x7b\\xfe\\x9e\\x5f\\xf9\\x9c\\x5b\\x61\\xa1\\x47\\xe1\\xd3\\xa3\\xfe\\x3f\\x5d\\xc5\\x59\\x23\\x9c\\x0e\\xe7\\xc5\\xd2\\x0e\\x99\\x02\\x07\\xaa\\x0e\\x33\\x55\\x5f\\xa5\\x9d\\xa7\\x7e\\xa9\\xb4\\xd9\\x37\\x28\\xd4\\xd8\\xea\\x14\\x90\\x8b\\xfc\\x95\\xc3\\x89\\xd8\\x73\\xb0\\x3d\\x1a\\x93\\xeb\\xe1\\xfb\\x1e\\x0a\\x8b\\xe5\\x54\\x92\\x69\\x45\\x50\\xff\\x83\\x1a\\x95\\xb3\\x3c\\xb2\\xce\\xea\\x32\\xb3\\xf1\\xf3\\x7a\\x75\\x62\\xa2\\x29\\x74\\x69\\xb2\\x52\\x33\\xc9\\xec\\xf7\\x49\\x20\\x4d\\xf5\\x48\\x96\\xd7\\xc1\\xfe\\xf2\\xf2\\xa8\\x7a\\x32\\xef\\x91\\x5d\\x44\\xf9\\x11\\x4a\\x96\\xc7\\xd1\\x0c\\x15\\x14\\x11\\xdc\\xbf\\x93\\x08\\xbb\\xcc\\xcc\\x0b\\x22\\x41\\xfb\\xf7\\xe4\\xf6\\xd9\\x00\\xcc\\x33\\xee\\x18\\xb3\\xc8\\xc3\\xe6\\x3e\\x81\\x49\\x84\\x46\\xf5\\x2f\\x12\\xaf\\xee\\x2f\\xca\\xeb\\x0d\\x9d\\x1a\\xc4\\x97\\x25\\xd2\\x1a\\x7c\\x47\\xad\\xd5\\x98\\xb9\\x7f\\x44\\xff\\x02\\x1b\\xd3\\xfb\\xd3\\x9f\\xfa\\xf8\\x19\\xb3\\x11\\xf1\\xde\\xbe\\x96\\xe7\\x7c\\xe6\\x7f\\xcc\\xdf\\x01\\x98\\x13\\x93\\x9d\\x30\\xd5\\x3b\\x74\\x31\\x9f\\x13\\x9e\\xe5\\x2e\\x70\\x5e\\x26\\xf5\\x8e\\x33\\x78\\xcc\\xbe\\xf0\\x26\\x57\\x96\\x42\\xcb\\xcf\\x14\\x5b\\x5d\\xd1\\x64\\xac\\xe0\\x3c\\x1e\\x3f\\xd5\\x16\\x51\\x04\\x72\\x9b\\x02\\x3b\\xb7\\x2a\\xee\\x8e\\x47\\xd0\\x45\\x08\\x55\\x2b\\xa5\\x9b\\x3c\\x40\\x37\\xc4\\x0e\\xbf\\xab\\x14\\x97\\x90\\xe2\\x28\\x32\\x79\\x3a\\x19\\x24\\x9b\\x10\\x41\\x0e\\x91\\x3c\\x9d\\x4c\\x2e\\x35\\x9c\\xcd\\x5d\\x5d\\xa5\\x17\\x93\\x0d\\x76\\x16\\x26\\xc8\\x7b\\x50\\xd2\\x31\\x9d\\x22\\xd2\\x7f\\x38\\x06\\x46\\xe6\\x16\\x53\\x65\\x0b\\x1d\\xd0\\x32\\x81\\x9d\\x93\\x23\\x73\\x98\\x3b\\x2b\\xf6\\xd9\\x9c\\x93\\x02\\x47\\x9b\\x0c\\x8b\\xe3\\xaf\\x78\\x79\\xf2\\x39\\xe0\\x6f\\x9c\\xa2\\x4c\\x23\\x3f\\x99\\xbe\\x38\\x0a\\xf4\\x63\\x10\\xef\\x61\\x96\\x68\\x28\\xec\\xd8\\xae\\x5f\\x2f\\x41\\xf3\\xb2\\x97\\x26\\xc6\\x38\\xa4\\x93\\xf1\\xc6\\xe9\\xaa\\xd0\\x85\\x2b\\x48\\xc7\\x03\\xbc\\x1e\\xea\\x7f\\x2d\\x9a\\xc5\\x74\\xe6\\xf4\\x8c\\x39\\x85\\x36\\x42\\x3e\\x8b\\x62\\xb7\\x30\\x4f\\x41\\x62\\x05\\xf7\\x3c\\xa4\\xfb\\x50\\xfa\\x5d\\x40\\x92\\x83\\x1a\\x3a\\xc7\\x37\\xd4\\xe8\\x0b\\xd6\\x71\\x6f\\x2f\\xcc\\x67\\x7a\\x39\\x38\\x0d\\x46\\x72\\x4b\\x98\\xdd\\xaf\\xb7\\x75\\xcc\\xd5\\xbe\\x4d\\x7d\\x38\\x74\\xa7\\x8e\\x76\\xec\\x3b\\x6d\\x33\\xb6\\x91\\xcb\\x4e\\x29\\x57\\x1a\\x3b\\xf5\\x6d\\xde\\x77\\xd3\\x80\\x34\\xb8\\xe6\\x73\\x74\\xf7\\xee\\x31\\x7c\\x93\\x44\\x61\\x22\\x1f\\xbc\\xec\\xd0\\x6f\\x2f\\x4b\\xb6\\x33\\x21\\x77\\x92\\xd3\\x46\\x3d\\x37\\x3f\\x63\\x92\\x4c\\x68\\xd5\\x4e\\xd1\\x99\\x59\\xd8\\x0d\\xfe\\x4c\\x2b\\xc5\\xf2\\xe2\\x66\\x2e\\x69\\xe8\\x1f\\xe0\\xeb\\x6a\\xf4\\xf8\\x11\\x2c\\x42\\xeb\\xf2\\xb9\\xc5\\xbc\\x7f\\xfe\\xbc\\xff\\xd0\\x31\\x9c\\xf4\\xce\\x54\\xa2\\x64\\xd9\\x22\\xa3\\x3e\\xf7\\x07\\x11\\x92\\x4e\\xa8\\x59\\x71\\x64\\x51\\x41\\x21\\xad\\x31\\xb3\\xbe\\xc1\\x3b\\xb5\\xf4\\x8e\\xb0\\x33\\x84\\xc1\\xa3\\xf6\\x42\\xdf\\x8b\\x99\\xfd\\xeb\\xde\\x5c\\x40\\x5b\\xa2\\x81\\x7c\\x1b\\x62\\xd3\\x7d\\x98\\xde\\xec\\xa2\\x5a\\xe3\\xfb\\x99\\xdb\\x85\\x88\\x99\\xfa\\xd6\\xdb\\xec\\x17\\xd1\\xbc\\x2d\\xb7\\xd0\\x5c\\x91\\xf9\\x05\\x7f\\x84\\xf2\\x29\\x38\\x75\\xf3\\xb1\\xa8\\x49\\xa6\\x61\\x04\\xd5\\xd5\\xcc\\xae\\xa5\\x00\\xc5\\xe7\\x09\\x63\\xf4\\x25\\xe5\\x55\\x74\\x84\\xe0\\x51\\x46\\xb7\\x78\\xec\\xde\\x3d\\x9f\\x70\\x93\\xad\\x3c\\x95\\x1d\\xbf\\xa7\\x14\\x90\\xa6\\x9f\\x18\\x76\\x75\\x69\\x78\\x8f\\xe4\\x79\\xf5\\xab\\x0b\\xae\\xdc\\xd3\\x28\\x3b\\xc8\\x28\\x1b\\x40\\xa3\\x6e\\x83\\x7f\\x30\\xaa\\x92\\x48\\xb3\\xb9\\x04\\xf5\\xd6\\x8a\\x28\\xaa\\x37\\x84\\xe8\\x72\\x6d\\xb3\\x5f\\x47\\xe0\\x90\\x13\\xb1\\x45\\x9c\\xaf\\xf3\\x28\\x65\\x44\\xd8\\x28\\xb8\\x45\\xa6\\xd0\\xa1\\xdf\\x18\\xd5\\x3a\\x14\\xe6\\x32\\xff\\x1e\\x7c\\x6a\\x5e\\xf4\\xa1\\xe0\\xd2\\x03\\xb5\\xd0\\xe7\\x55\\x8a\\xa2\\xa6\\x8b\\x64\\xad\\x50\\x5b\\x1d\\x8a\\x16\\xb3\\xf4\\x29\\xb6\\xe1\\x24\\xc4\\xaf\\x80\\x1e\\xd3\\xa2\\x14\\x35\\xf7\\x75\\xb5\\xd2\\xb1\\xc5\\x4b\\xd0\\xd8\\xb7\\x84\\xb3\\x4b\\x84\\x9b\\xf0\\xe6\\xc9\\x9e\\xe5\\xd8\\x47\\xb1\\x8d\\xb7\\x6f\\x6b\\x16\\x55\\x11\\xf8\\x1e\\x12\\x1a\\xe3\\xb2\\xa8\\x3a\\xc8\\x3d\\x84\\x80\\x80\\xb0\\x97\\x88\\x48\\x1c\\xb0\\xf5\\xbc\\x9a\\x06\\x33\\x6d\\x11\\x33\\x68\\xf2\\x2b\\xfb\\xea\\x92\\xd9\\xf9\\x59\\x76\\xe8\\x89\\x83\\x39\\xe1\\x86\\x31\\x81\\x90\\x1b\\x71\\x42\\x71\\xfa\\x2e\\x7f\\xdf\\x9f\\xd3\\x70\\x16\\xf3\\x35\\xff\\x10\\xe6\\x34\\x42\\xad\\xde\\xdc\\x44\\x8f\\xb1\\x49\\x46\\x7f\\xdc\\x6c\\x47\\x37\\xa1\\x39\\x92\\xf3\\xc9\\x68\\x80\\xae\\x32\\xe5\\x41\\x75\\x7c\\xda\\x2e\\x4b\\x98\\x3c\\x3a\\x0e\\x54\\x97\\x72\\x61\\x1e\\xbc\\x07\\x69\\x4f\\x7a\\xc8\\x76\\x38\\x0c\\xd9\\xde\\x29\\xea\\xf3\\x84\\x6a\\xac\\xe5\\x8d\\xd5\\xdb\\x90\\x71\\xfb\\xc9\\x71\\x1a\\x4f\\x92\\xfa\\xf4\\x06\\x6d\\x4a\\x7b\\xed\\xfd\\x97\\xdf\\x51\\xaf\\xec\\x72\\xd8\\x29\\xa6\\x17\\x04\\x31\\xe5\\xb1\\xaf\\x79\\x70\\x7d\\x8c\\x30\\xc5\\x96\\x77\\x97\\x43\\x36\\xc9\\xa6\\x7f\\xb5\\x45\\xf0\\xae\\x79\\xde\\x11\\xfe\\xa4\\x1d\\x89\\x74\\xe3\\x5b\\xec\\xdd\\x13\\xf2\\x78\\x81\\x3b\\x9d\\x1c\\x13\\x72\\x24\\x0c\\x19\\xea\\x25\\xbf\\x95\\xd4\\xca\\xb7\\xed\\x53\\xed\\xde\\x83\\xdc\\x9f\\x13\\x7f\\xb5\\x94\\xf7\\xb3\\x51\\x37\\xef\\x51\\xad\\xd3\\x0c\\xee\\x4f\\x57\\x9d\\x02\\xe3\\xe6\\xb8\\x2b\\xf6\\x16\\x01\\xc9\\xeb\\xca\\x94\\xc4\\xe8\\xe3\\x05\\xfb\\x27\\xf8\\x48\\xfa\\x0d\\xb8\\xb4\\xf5\\x98\\x76\\x46\\xca\\x60\\xb8\\x69\\xb0\\xd1\\xc7\\xd6\\x87\\x00\\x79\\xb3\\x7e\\x29\\xb0\\xbf\\xb7\\xe3\\xb6\\xd2\\xd3\\x68\\x2e\\xe2\\x96\\xfe\\x3d\\x7e\\x78\\xdf\\x2d\\x4b\\xdd\\x66\\x06\\x7a\\xfa\\x40\\x77\\xb7\\xb4\\x8e\\x51\\x00\\x01\\x68\\xbe\\x35\\x68\\x3c\\x6d\\x82\\xee\\x30\\x6f\\x0e\\xeb\\x88\\x3b\\x9b\\x2c\\x42\\x72\\x81\\xe4\\x70\\x6e\\x6c\\xa3\\x8a\\x52\\x26\\x11\\xf8\\xc2\\xe2\\x70\\x8e\\xa4\\x0e\\x64\\x91\\x93\\xc7\\x1c\\x46\\x79\\xc3\\x52\\x48\\x22\\x2c\\x93\\x4e\\xe7\\x70\\x3a\\x7f\\x3e\\xc2\\x13\\x5d\\x36\\x23\\x84\\x3e\\x80\\xc9\\x62\\x37\\xab\\x73\\x07\\x67\\x8e\\xf3\\x2b\\x4d\\x65\\x88\\x7c\\x4e\\x7b\\xa8\\x2d\\x4e\\x01\\xa7\\xc6\\x4c\\x98\\xe8\\x7c\\xd0\\xe6\\x2f\\x78\\x4e\\x1e\\xff\\xda\\xdc\\x8d\\x2a\\xb7\\x8c\\xfe\\xb3\\x5d\\x8a\\xb3\\x65\\x3e\\x26\\x62\\xf1\\x25\\x7a\\xe7\\xe1\\x27\\x03\\xd5\\x45\\x38\\x74\\x4b\\x39\\x5a\\x2b\\xf3\\x44\\x63\\x0e\\x33\\xb1\\x13\\x01\\x67\\x3f\\x80\\xf5\\xe1\\x7b\\xe8\\x06\\x15\\x88\\x94\\x12\\x01\\xfd\\x33\\x92\\x84\\x31\\x99\\x77\\xa4\\xa1\\xc3\\x82\\x4c\\xd8\\x0e\\x9d\\x96\\x3d\\x7d\\x32\\x54\\x12\\x65\\xfd\\x37\\x1c\\x0e\\x9d\\xaf\\x31\\x8a\\xfb\\xdf\\xc4\\x50\\x64\\xf7\\xa0\\xa5\\x8d\\xcc\\xbf\\xda\\xd2\\x87\\xbe\\x4b\\xe3\\xfb\\x29\\x58\\x30\\xbc\\x42\\x24\\x0e\\x8d\\xa5\\x51\\x9e\\x41\\x47\\xe6\\xe5\\x55\\xc1\\x82\\x5a\\x18\\x70\\xbd\\xc8\\xfa\\x1a\\x4d\\xed\\xba\\x60\\x8d\\x94\\xcd\\x2b\\x76\\xbc\\xe0\\x65\\x45\\xb0\\xe5\\x2e\\x52\\x04\\xa4\\xf9\\xdf\\x22\\xb5\\x4a\\xb5\\xff\\x2c\\x32\\x5a\\xde\\xe5\\xd9\\x46\\xc5\\xa5\\x72\\xcf\\xb7\\x8b\\xf1\\x4b\\x81\\x1a\\x42\\x19\\x15\\xc1\\xf2\\x68\\x31\\x67\\x58\\xb7\\x23\\x2e\\x42\\x0f\\x9d\\xec\\xb7\\x13\\x7f\\x79\\xf1\\xe9\\xcf\\x8e\\x55\\xca\\x6d\\x12\\xf9\\xb9\\x45\\x88\\x88\\x02\\x5d\\xee\\x25\\x9a\\xa2\\x5d\\x21\\x75\\x2e\\xa9\\xa2\\xf1\\xdf\\xa8\\xd6\\x09\\x0e\\xd4\\x7b\\x86\\x44\\x32\\xb1\\xd1\\x25\\x26\\x61\\x8a\\x7c\\x03\\x88\\x4d\\x2e\\xd9\\x41\\x75\\x73\\x02\\x79\\x8e\\x92\\x3f\\x2f\\x83\\x5e\\x83\\x09\\xf9\\x02\\x21\\x81\\xaf\\xbf\\x88\\xa2\\x92\\x5c\\xee\\xd1\\xb3\\x7f\\x00\\x95\\x93\\x1a\\x6d\\x0e\\x97\\x6f\\x6c\\x84\\x88\\x82\\x3b\\xa9\\xf5\\xe0\\x18\\xb0\\x7d\\x88\\x14\\xb3\\x43\\x67\\x70\\xfb\\xdd\\xee\\xd3\\x6f\\x89\\xa7\\x74\\x8d\\x74\\x26\\x51\\xf2\\x30\\xd0\\x4e\\x2b\\x2a\\xc0\\xdd\\x34\\x93\\x35\\x53\\x08\\x07\\xa4\\xf2\\x87\\x37\\x05\\x96\\xc0\\x5c\\x9f\\x9b\\x94\\xfe\\x56\\x7c\\x56\\x33\\xc8\\xc3\\xd7\\x9c\\x16\\x79\\xa1\\x2d\\x1c\\xf7\\xed\\x88\\x6a\\x7f\\xc7\\x97\\x80\\xde\\xb0\\x9b\\xf6\\x5e\\x2c\\x69\\x59\\x18\\x7d\\x0e\\xc1\\x09\\xec\\x33\\xdc\\x89\\x23\\xa1\\x1e\\x58\\x96\\x8d\\x0b\\x71\\x20\\xc5\\xca\\xf1\\xd9\\x92\\x86\\x84\\x01\\x0a\\xcc\\x2b\\xa7\\x7f\\x78\\xed\\x94\\xf4\\x84\\xe6\\x20\\x77\\x1f\\x7d\\x6f\\x20\\xef\\x57\\x92\\x3a\\x59\\x88\\x3a\\xdd\\xdb\\xd0\\x12\\x24\\xaa\\xa1\\xae\\xe1\\x86\\x62\\x8e\\x6d\\x29\\xea\\xed\\xfa\\xa9\\x00\\x02\\xbf\\x06\\x93\\x9f\\x6d\\x5d\\x8e\\x4b\\x51\\x1b\\xa1\\x7b\\xee\\x1f\\xdf\\xb2\\xc7\\x86\\x7f\\xc2\\x29\\x34\\xe1\\x05\\x43\\xb6\\xfb\\xec\\x54\\xc3\\xb2\\xa3\\x71\\x70\\xed\\x7f\\x7e\\x11\\x72\\x0a\\xfe\\x30\\x92\\x9b\\x36\\x2a\\x29\\x41\\xfe\\x2f\\x47\\x7e\\xa3\\x94\\x0d\\x47\\x1d\\x8a\\x80\\xea\\x12\\x60\\x1c\\x13\\xdd\\xff\\x86\\x1b\\x85\\x7e\\xfc\\x64\\x4e\\x24\\x0c\\xfe\\x3f\\x39\\xf2\\xcc\\x41\\x6e\\x4f\\x1c\\x72\\x1b\\xf6\\x2e\\x51\\xab\\x71\\x4f\\x22\\xec\\xf1\\x5d\\xde\\x97\\x32\\xfa\\x98\\x6d\\x8e\\x65\\xea\\xb8\\x92\\x2f\\x71\\x3c\\x91\\x2b\\xd1\\xc9\\xc0\\x9d\\x09\\x09\\x4a\\x1f\\x45\\xf9\\xeb\\xae\\x75\\x2d\\x2d\\xa3\\x7b\\xce\\x0d\\x9c\\xa3\\x10\\xeb\\xc1\\x23\\x7c\\xda\\x21\\xae\\x7f\\x19\\xc8\\xfa\\x89\\x12\\xde\\x16\\xfd\\x92\\x05\\xfd\\xb0\\x17\\x4e\\x93\\xcd\\xff\\xc6\\x29\\xa0\\x74\\x2b\\xfb\\xdb\\xbd\\x1b\\x40\\x8c\\x2b\\x28\\x58\\x92\\xad\\x2e\\x12\\x5d\\x12\\x0b\\x75\\x06\\x60\\x4e\\x20\\x34\\xf9\\x24\\x54\\xcc\\x76\\x95\\x9c\\x58\\xb2\\xf4\\x20\\xcf\\x26\\x1b\\x09\\x3c\\x1a\\x79\\xb6\\x1e\\x65\\xd7\\x9e\\x39\\xa0\\xbc\\x26\\x3d\\xf4\\xe5\\x7d\\x52\\xe0\\xcf\\xef\\xe2\\xb1\\x65\\xdb\\xee\\xeb\\xfe\\x8d\\x1d\\x58\\x4b\\x9e\\x75\\xc5\\x8e\\x32\\x56\\x0b\\x7e\\xdb\\xf6\\x6f\\x57\\xa2\\xe9\\xa7\\x16\\xd1\\x91\\x4b\\x30\\x10\\xa9\\xf3\\xfb\\xb1\\xd9\\x12\\xec\\xbb\\xc6\\xe1\\x6d\\xe7\\xbd\\xd3\\xa2\\xf7\\xf6\\x6d\\x9b\\x55\\xf7\\xea\\xe6\\x64\\x56\\x5c\\x56\\xfd\\x51\\x4b\\x5d\\x48\\x03\\xc4\\x5f\\xf9\\x6a\\x2c\\x44\\xac\\x0e\\x31\\xb1\\x72\\x9e\\xe8\\xc1\\xa9\\x93\\xd5\\x20\\x4c\\xac\\x6e\\x86\\x1b\\xba\\xb0\\x9d\\x39\\x19\\xd9\\xeb\\x21\\xb4\\x1f\\x4e\\x95\\xcd\\xff\\x46\\xed\\x22\\x1f\\xec\\xbe\\x49\\x99\\xdd\\x99\\x01\\x75\\x24\\x12\\x7b\\xa4\\xb4\\x2d\\x9c\\x45\\xa2\\x64\\x4d\\x72\\x93\\x7a\\x17\\x07\\x77\\x41\\xe1\\x64\\xd4\\xb9\\x6e\\xd9\\x19\\x1f\\x66\\x86\\xba\\x56\\xd9\\x1c\\x50\\x38\\xb5\\x36\\x32\\x20\\xdb\\x6c\\x16\\x31\\xdf\\xf7\\x1a\\x51\\xd1\\xbb\\xf0\\xcd\\x80\\xb5\\xa7\\xff\\x82\\xba\\xcc\\x02\\x33\\x28\\xd8\\xdb\\xc1\\x85\\xeb\\x94\\x94\\xe1\\x70\\x9c\\x86\\x67\\x98\\xec\\xfc\\x84\\x7c\\x64\\x58\\x16\\x6f\\x91\\x48\\xdf\\x69\\x58\\x5b\\x8a\\x85\\x19\\x71\\x0f\\xa3\\xb7\\xd3\\x2e\\x45\\xea\\x93\\xcd\\x64\\x12\\xd9\\x83\\x25\\x3a\\x86\\xee\\x75\\xee\\x19\\xf6\\xd6\\x2d\\x19\\x94\\xa9\\x78\\x97\\xe2\\xfe\\x8a\\x39\\x45\\xdc\\x9c\\xa4\\x10\\xcb\\x8f\\xf9\\xee\\x91\\x9b\\x3d\\x19\\x9f\\xaa\\x13\\x29\\x8f\\x2d\\x34\\x64\\xae\\xb8\\x19\\x9d\\x1e\\xe9\\x62\\x46\\xb7\\xce\\x48\\xf8\\xf1\\x18\\xc3\\x81\\xa4\\x10\\x3b\\x35\\xea\\x1c\\xb9\\x96\\x86\\x69\\xd6\\x8e\\xe8\\xed\\x8d\\x8c\\x03\\x43\\xfb\\xcd\\x74\\x70\\x18\\x8b\\x2d\\x26\\x74\\x2a\\x9e\\xdb\\x57\\x32\\xc7\\x0e\\x4a\\x0b\\x0e\\x31\\x15\\xf3\\x57\\x57\\xc4\\xd7\\x57\\x4e\\xd7\\x5b\\x4f\\xd4\\x4f\\x33\\x00\\xbb\\xce\\xa1\\x65\\x0f\\xa0\\xca\\xd0\\xcc\\x9f\\xe0\\xac\\x10\\x7a\\x38\\x40\\x35\\x14\\x62\\xc6\\x3e\\x17\\xfd\\xdd\\xfc\\xe5\\x11\\x84\\x9a\\xb4\\x74\\xcc\\x0b\\xae\\xc8\\x94\\x11\\x6e\\x9b\\x1a\\xb7\\x48\\xcd\\xdc\\xe6\\x8e\\x16\\xe8\\x98\\x4d\\xf2\\xb5\\x7b\\xa9\\xef\\x48\\x29\\x2a\\x66\\xea\\xe8\\x30\\xbc\\xd9\\xe4\\x38\\xab\\xe1\\x77\\xf8\\x68\\x88\\x4a\\xc8\\x8f\\x68\\x99\\x94\\x4e\\x53\\x4d\\x24\\xc2\\x8b\\x03\\xfa\\x3e\\xc6\\xae\\xac\\x49\\xe7\\x47\\xd9\\x31\\x89\\x6f\\x68\\xf0\\x5b\\xc8\\x4f\\xe6\\xa4\\x88\\x32\\x7d\\x39\\x4d\\x56\\x9e\\x50\\xf1\\x2b\\x3c\\xbf\\x59\\xf2\\x6b\\xb5\\x7b\\x79\\x39\\xa4\\x08\\x17\\xec\\x36\\xc6\\x06\\x39\\x94\\xfd\\x94\\x6e\\xbe\\x62\\x0a\\xae\\xdf\\x24\\xbe\\x85\\x05\\x5f\\x35\\x68\\x7c\\xb2\\x5d\\x55\\x9b\\x38\\x72\\x8f\\x9b\\x4c\\xe8\\x06\\x36\\xeb\\x8d\\xdf\\xa7\\xdd\\x72\\x9a\\xf3\\x7d\\x59\\x5e\\x70\\x65\\x3b\\x8d\\xd1\\xf9\\xe1\\xac\\x66\\x2d\\x35\\x0a\\x4c\\xd8\\x2d\\xe2\\x1e\\xed\\x56\\xad\\x45\\x65\\x29\\xca\\x2b\\x90\\x87\\xe8\\xd5\\x4e\\x8d\\x38\\x7a\\x86\\x80\\xa1\\x96\\xf0\\xce\\x60\\x50\\x33\\x9f\\x4c\\x50\\x0e\\x89\\xfe\\xe0\\xa0\\x5d\\xd1\\x93\\x9e\\xc7\\xdc\\x7e\\x9c\\xb5\\x36\\x53\\x6c\\xbe\\x65\\xf5\\xec\\xd4\\x30\\x82\\x78\\x5b\\xa4\\x3b\\xf5\\xa0\\x9e\\x73\\x6e\\x7c\\xda\\x08\\x51\\x23\\x9e\\x9e\\xe6\\xdc\\x97\\x67\\x1a\\x7e\\x46\\x87\\x0e\\xbe\\x05\\x3b\\xf2\\x47\\xbe\\x33\\xe7\\x77\\x61\\x5d\\xa5\\x00\\x3e\\xa1\\x5e\\x3e\\x79\\x3a\\xb7\\xe4\\x5e\\x33\\x1f\\x4f\\x44\\x9e\\xd1\\x60\\x48\\xc4\\x9f\\x15\\x61\\x48\\xa2\\xcf\\xcc\\x76\\x7d\\xfc\\x7a\\x49\\xfa\\x9f\\x16\\xf1\\xdc\\xbf\\x68\\x6e\\xba\\xf9\\xb6\\x7b\\x92\\xaf\\x7a\\xfa\\x81\\xb2\\x37\\x9f\\x50\\xbd\\x3d\\x54\\x0f\\x24\\x10\\x57\\x03\\xa0\\xb7\\x02\\xff\\x2f\\xb5\\xee\\xe1\\xa6\\x9a\\x80\\x7c\\x26\\x35\\x3e\\xb3\\x38\\x0f\\xae\\x62\\x60\\x45\\x0b\\xea\\x68\\xf3\\x6e\\xac\\xec\\x9d\\xc0\\xa2\\x3b\\x7a\\x8a\\x61\\x00\\x1e\\x13\\x2b\\xf7\\xb2\\x5f\\x62\\xaa\\xe0\\x6b\\x16\\xeb\\x39\\xe4\\x1d\\xe4\\x5e\\xee\\xe7\\xa9\\xbd\\x9d\\x2e\\xec\\x59\\x98\\xc0\\x8b\\xac\\xed\\xf1\\x9f\\xcd\\x34\\x1c\\xd0\\x4c\\x4b\\xd8\\xf8\\xc2\\x28\\x70\\x0e\\x51\\x4c\\x40\\x1a\\x93\\x9b\\x8d\\xd7\\x8d\\xf5\\xd1\\x81\\xbf\\xf9\\xe1\\x8a\\x08\\xdf\\xda\\x35\\xc2\\xc9\\x16\\x2a\\xa5\\xa5\\xf6\\xfe\\xf1\\xa5\\xba\\xe0\\x0d\\xb7\\xa0\\x69\\x70\\xb1\\xc2\\x7b\\xb3\\x91\\xef\\xc7\\xe0\\x41\\x92\\x9b\\x7c\\x03\\x2c\\xff\\xe7\\x33\\x6c\\xf6\\x6e\\xe7\\x98\\xae\\x16\\x61\\x8e\\x62\\x27\\xa5\\xf6\\xd4\\xc6\\x00\\x66\\xb1\\x35\\x5d\\x5a\\xad\\x89\\x56\\x7e\\xb6\\xb6\\xef\\xdb\\xc5\\xa2\\x8d\\x1a\\xff\\x55\\x1a\\xa7\\x8b\\xc6\\xea\\x7c\\xe5\\xa6\\x2c\\x26\\x57\\x72\\x5f\\xd6\\xf3\\x97\\xf2\\x70\\x74\\x4f\\x91\\x91\\xc6\\x19\\xef\\x90\\x25\\x62\\xa5\\x82\\xc7\\xfa\\xae\\x0f\\x81\\xa3\\x13\\xf7\\xb9\\xb6\\xf5\\xa4\\xcf\\xc7\\xc3\\x43\\x67\\xe8\\x5d\\xb9\\xfb\\x78\\x63\\x61\\xa1\\x85\\x76\\x44\\xe4\\xe0\\xe2\\x99\\xf7\\x72\\x3c\\xd1\\xdd\\xd1\\x02\\xc3\\x38\\x0b\\x76\\x8a\\xdf\\x63\\x5a\\x11\\xf7\\x46\\x1f\\x26\\xb5\\x6a\\x14\\x71\\x53\\x3d\\x65\\x36\\xfb\\xa3\\x9f\\xb8\\x02\\x78\\x75\\x47\\x8b\\xd9\\xea\\xec\\x79\\x9e\\x73\\x94\\x3b\\x57\\x11\\x9c\\xda\\x87\\x24\\x62\\xfe\\x8d\\xc9\\xa5\\xc8\\x4c\\xa8\\x65\\x45\\xd5\\x3c\\x58\\x17\\xde\\xe1\\xaa\\xb2\\x79\\xd5\\xd3\\x61\\x60\\x67\\xe0\\x75\\xb6\\xd8\\x95\\x5f\\x86\\x6f\\x35\\xb1\\x8a\\x88\\x71\\xa9\\x9a\\xc9\\xee\\x35\\xcc\\x41\\x7b\\xde\\xb1\\xa4\\xb3\\x65\\x68\\xa3\\x0c\\xe6\\xd2\\x5c\\xf0\\x12\\x8b\\xb1\\xc3\\xe2\\xee\\x69\\xeb\\x6c\\x2e\\x23\\x3f\\xe3\\x19\\x8f\\x3e\\x35\\x87\\xee\\x88\\x84\\xa9\\xb9\\xda\\xe5\\x3e\\x84\\x75\\x2f\\x27\\x68\\x13\\x1d\\xac\\xfb\\xd7\\x1e\\xbc\\xbe\\x0e\\x6c\\x32\\x76\\x9c\\xbc\\x58\\x1f\\xda\\x0f\\xe1\\xb2\\x0c\\x08\\xe5\\x63\\xfd\\xb6\\x7b\\x9d\\x16\\x86\\x62\\x70\\x9b\\x22\\xf9\\x87\\x63\\x82\\x4d\\x69\\xc7\\xe8\\x98\\x9c\\xe7\\x74\\xd4\\xa5\\xa6\\xab\\x39\\xfa\\xa9\\x5e\\x40\\x8d\\x10\\x86\\xa0\\x61\\x5c\\x21\\xeb\\x47\\x0b\\xf1\\x0d\\x10\\xf1\\x10\\x8c\\xd0\\xb9\\xc3\\x89\\x17\\x61\\x6f\\x9b\\x8d\\x62\\x47\\xb3\\x6b\\xe2\\x38\\xfc\\x3d\\xa6\\x7b\\x75\\x3b\\x3d\\xc2\\x49\\x65\\x4f\\x7e\\x6d\\xb6\\x6c\\x7a\\x12\\x2f\\xc2\\x70\\x6f\\xe0\\xe6\\x6c\\x87\\x98\\x46\\x6f\\x63\\xac\\xe4\\xe0\\xe2\\xaf\\xda\\xe4\\x90\\x59\\xce\\xc6\\xc8\\x5e\\x55\\x8f\\xde\\x10\\x49\\x55\\x5d\\xbb\\x55\\x9c\\x9b\\xc5\\xcc\\x92\\xd6\\xc1\\xd0\\xda\\x01\\x73\\xa7\\xe2\\x26\\x87\\x2f\\xdf\\x96\\x01\\xb2\\x55\\xfb\\x68\\x5a\\x44\\x73\\x36\\x8b\\xa5\\xf7\\xd9\\x15\\x03\\xf6\\xd2\\x96\\x98\\xf7\\x9a\\x05\\xf0\\x91\\x86\\x21\\x73\\x71\\x27\\xaf\\xde\\x8f\\x7c\\x29\\x4d\\x34\\xd5\\xca\\xde\\x87\\xe0\\x88\\xae\\x32\\x1a\\x8d\\x5c\\x2a\\xe8\\x5b\\x60\\x13\\x1a\\x82\\xd0\\x47\\x25\\x2c\\xfa\\x21\\x57\\xce\\x06\\xac\\x73\\xbb\\x50\\xa0\\x8d\\x44\\x62\\xcc\\x92\\xd9\\x40\\xb8\\xd2\\xe0\\xbb\\xb0\\x3e\\x0a\\x94\\x42\\x3c\\x48\\x16\\xb1\\x77\\x9d\\x8e\\xa5\\x07\\x2a\\x9b\\x84\\x92\\x9a\\x1d\\xc0\\x2e\\xa9\\x7f\\xea\\xb0\\xa9\\x6c\\x28\\x0e\\xa3\\xef\\x08\\x63\\xca\\x07\\x36\\x90\\x96\\x15\\xfc\\x3e\\xd0\\x6a\\x17\\x15\\xde\\x04\\x25\\xf8\\x60\\x7f\\x65\\xed\\x74\\xe2\\xec\\xd0\\xa3\\x4c\\x72\\xa9\\xce\\xf6\\x60\\xde\\xf5\\xa4\\x48\\x4b\\xbd\\x4b\\xe2\\x73\\xe6\\xb6\\x2a\\x3d\\xd9\\xfe\\xcc\\x6d\\xb5\\xf9\\xd0\\x99\\xae\\xe7\\x11\\xc5\\x79\\xe5\\x50\\x65\\x36\\x47\\xa3\\x35\\xe5\\xf8\\xb3\\xfa\\x46\\xa6\\x4b\\x66\\x4f\\xf0\\xba\\x32\\xeb\\x4f\\x8f\\x61\\x1e\\x98\\x91\\xce\\x66\\x5b\\x9b\\xe9\\x32\\xd1\\xe7\\x46\\x2c\\x6b\\x72\\x3a\\x73\\x76\\xc7\\xbb\\x2a\\xe2\\x59\\x0b\\xda\\x67\\xf2\\x00\\x4b\\xfe\\x5d\\xeb\\x37\\xbe\\xb7\\xdd\\x51\\x4b\\x86\\xf5\\x63\\x1d\\xa7\\x27\\x81\\x5e\\x76\\x2a\\xa8\\x6b\\xad\\x92\\x95\\x99\\x60\\x91\\xbc\\xbb\\xe2\\x8f\\x5f\\xc7\\x4d\\x52\\x86\\xed\\x6c\\x28\\xc7\\x63\\xe8\\x15\\x23\\x45\\x4f\\xb9\\x14\\xf0\\xc6\\xa6\\x6d\\xa7\\xdf\\x6b\\x6c\\xdd\\xd8\\x4f\\xf6\\x72\\x99\\x28\\x4a\\x05\\x7a\\x70\\x4b\\x91\\x36\\x69\\xc6\\x7d\\x40\\xcb\\xd9\\x89\\xd2\\x2a\\xfa\\x36\\x90\\x5b\\x63\\x61\\xd1\\x84\\xfb\\x36\\x30\\x27\\xb3\\xf6\\x87\\xdd\\x3e\\xfd\\x73\\x39\\x41\\xd5\\xbf\\xe1\\xa6\\xe1\\xf4\\x21\\xcb\\x85\\x7e\\xb3\\x49\\xa3\\x83\\xfe\\x98\\x27\\x1b\\x2d\\x13\\x15\\xaa\\xbd\\xee\\x2e\\xa8\\xaf\\xd7\\xb5\\xac\\x4f\\xc1\\x1e\\x9f\\xf1\\x82\\xf7\\xf4\\x8c\\x4a\\xd8\\x8a\\x1d\\x53\\xdf\\x07\\x38\\x3b\\x4d\\xee\\xad\\x09\\x99\\xe7\\x20\\xed\\xaa\\x8c\\xe8\\x6b\\xa7\\xe4\\xd0\\x1e\\xcb\\xa2\\x6b\\xa7\\x83\\x77\\x1f\\x2b\\x0e\\xbf\\xfe\\xd3\\xb3\\x35\\x6e\\xea\\x45\\x5a\\xb9\\x47\\xac\\xf3\\xbb\\x37\\x8d\\xe3\\x78\\x68\\x93\\xa2\\x1e\\xfe\\x3b\\x55\\x3b\\xd5\\xd1\\x8f\\x29\\xd5\\x6e\\x0f\\xbd\\x8b\\x58\\x87\\x0e\\xe2\\xbe\\xa1\\x6b\\xab\\xf3\\xa8\\x48\\x39\\xe9\\x51\\x88\\x96\\x76\\xb0\\x56\\x8b\\xab\\x64\\x61\\x1e\\x78\\x75\\xcf\\xa6\\xd0\\xbd\\x45\\x5b\\x2d\\x2f\\xf6\\xa4\\xe1\\x3a\\x64\\xae\\x7b\\xc6\\x7e\\x9c\\xe0\\x4f\\x6d\\xee\\x1b\\xb0\\x68\\xda\\x76\\xb5\\x76\\x27\\x04\\xb4\\xfc\\x29\\x35\\x5a\\x57\\x17\\xfe\\x2e\\xdc\\x75\\xd2\\x0f\\x3e\\x16\\x0e\\x14\\x7d\\x62\\x8e\\xfb\\x10\\x0c\\xb0\\x54\\x80\\x07\\x00\\x00\\x10\\x00\\x00\\x00\\x12\\x20\\xbc\\x17\\xae\\xd7\\xab\\x87\\xca\\xff\\x00\\x40\\xfc\\x06\\xf8\\x8f\\x40\\xd7\\xe8\\x4c\\xff\\xf1\\x99\\xbf\\x0d\\xda\\x6f\\x2e\\x1f\\x0b\\x70\\xd1\\xdf\\x9c\\x00\\x00\\x00\\x3c\\x00\\xf2\\x7f\\x9f\\x01\\xee\\x10\\x46\\xfa\\xc6\\xfa\\xdb\\x92\\xaf\\x5e\\x49\\x01\\x01\\x4e\\x8b\\x57\\xb3\\x24\\x62\\xe7\\x3e\\x42\\xe8\\x58\\xbd\\xfd\\x00\\x40\\x36\\x08\\x56\\xd5\\x1d\\x22\\x69\\x09\\xc6\\x9a\\x50\\x1d\\xd2\\x7f\\x47\\x5d\\x2f\\xed\\x7f\\xd4\\x69\\xe0\\x98\\xaf\\x9b\\x9a\\x96\\x86\\x6c\\x72\\x59\\x8c\\xcb\\x00\\x4d\\x68\\xaa\\x95\\xf3\\xf2\\xcb\\xb5\\xf4\\x4f\\x4a\\x9a\\xa6\\xe2\\xad\\xcf\\x45\\x54\\xf9\\x8c\\xa4\\x0e\\x5d\\xb2\\xc0\\xc7\\xd5\\xc5\\x35\\x83\\xe7\\x51\\xfa\\xf5\\x52\\x8e\\xb8\\xab\\xa7\\x6c\\x8d\\x01\\xba\\x99\\xd3\\x13\\x98\\x13\\xc8\\xe7\\xe5\\x8d\\xc4\\x38\\xa9\\xce\\x36\\xe1\\xde\\x0f\\x6e\\xda\\x31\\x1a\\x8f\\xe6\\x14\\x98\\x30\\x52\\x71\\x8f\\x88\\x76\\xce\\x05\\x6a\\x4b\\xb1\\x87\\x88\\xf1\\x5b\\x7d\\x1c\\x9e\\xdb\\xbd\\x63\\xdc\\x69\\x0a\\x13\\xa9\\xcf\\x04\\xdf\\x2e\\xbf\\x9e\\xad\\x0c\\xa1\\x15\\x2b\\x8b\\x0b\\x2e\\x2a\\x0d\\xcb\\x16\\xb3\\xa7\\x2f\\x9d\\x8c\\x52\\x5f\\x16\\x31\\x26\\x8c\\x16\\xc0\\x74\\x8d\\x98\\x74\\xde\\x55\\x51\\xb2\\x6c\\xbd\\x9b\\x1d\\xe2\\xa9\\x9f\\x10\\x7e\\x8e\\x3b\\x53\\x27\\xb8\\x46\\x8d\\x1b\\x0e\\xfb\\x66\\x20\\xe8\\x1e\\xd9\\x68\\xa9\\x88\\x0b\\x24\\xc9\\xd6\\xe5\\xd8\\xa6\\x1b\\x70\\x2d\\xdc\\xef\\x6a\\x51\\xc7\\xef\\xc2\\x9f\\xad\\x9f\\x10\\xff\\xa9\\xc4\\xaf\\x66\\xdb\\x54\\xd0\\xcb\\x0f\\x63\\xfa\\xb3\\x5b\\xb7\\xd7\\x18\\xea\\xc2\\xb4\\xa0\\xe6\\x59\\xfd\\x29\\xca\\x39\\x39\\x89\\x6a\\x94\\x7b\\xe3\\x94\\x2e\\x83\\x39\\x36\\x69\\xf5\\xb2\\xfe\\x18\\x9a\\xbe\\xc4\\x1a\\x9e\\x90\\x6f\\xc3\\x7c\\x40\\xce\\xb4\\xcd\\xce\\x54\\x10\\xdf\\xfd\\x1e\\xca\\x06\\x2e\\xa0\\x0a\\x34\\x5c\\x72\\x61\\xb3\\x73\\x22\\xf9\\xe9\\x1e\\x4c\\xef\\x9e\\x91\\x64\\x4d\\x3e\\xa8\\x14\\xfd\\xd0\\x26\\x6f\\xc4\\x13\\x98\\x26\\xcb\\x39\\xae\\x61\\xf0\\x02\\xcf\\xb1\\x9f\\x2c\\x58\\xa3\\x7d\\xc4\\x3e\\x50\\x3f\\xfc\\x80\\xc6\\x75\\x90\\x79\\xb3\\x36\\x96\\xc9\\xee\\x6b\\x57\\x08\\xd5\\x68\\x01\\xc6\\xeb\\x41\\x61\\xfd\\xdc\\x78\\xe5\\xd6\\xda\\x54\\xdc\\x88\\x50\\xec\\x6f\\x8a\\x2c\\x26\\x53\\x60\\xcf\\x41\\xe7\\x30\\xc4\\xea\\xa2\\xcb\\x4f\\xe4\\x8a\\x3c\\xc0\\x0b\\xa9\\x4b\\x97\\xe6\\x72\\x42\\xc6\\x5b\\x15\\x67\\xd4\\x47\\xab\\x18\\xbd\\x86\\x16\\x6b\\xdc\\x17\\x93\\xdf\\x11\\x05\\x1f\\x39\\x44\\x1f\\xe9\\xda\\x1a\\x0a\\x44\\x1c\\xf7\\xae\\x28\\x45\\xb4\\xf9\\x17\\xd0\\x96\\xa4\\x77\\xb4\\xa5\\x38\\xa5\\x0d\\x52\\x53\\xc7\\x2a\\xfc\\xfb\\xa5\\xa6\\x24\\xa6\\x8d\\xb2\\xad\\xc9\\x36\\x6f\\x0f\\x95\\x30\\x22\\x0a\\x1b\\x3b\\x45\\x20\\xbb\\x27\\x80\\xd0\\x9a\\x8c\\xa3\\x31\\x3e\\x10\\x99\\x77\\x06\\xe6\\x7c\\x10\\x3c\\x41\\x8a\\x2e\\x08\\xc3\\x1c\\x9d\\x8e\\x29\\xce\\xec\\x1d\\x60\\xd8\\x66\\xf3\\xbc\\xf9\\xf6\\xc4\\xf6\\xf7\\x17\\x2c\\x5b\\xe4\\x83\\xf7\\xa4\\x7d\\x88\\x3d\\x2b\\x63\\x6b\\x16\\x01\\xae\\x9c\\x40\\x94\\xc5\\xa4\\x62\\xfa\\x2d\\x39\\x27\\x3f\\xf1\\x2f\\x8d\\xd1\\x18\\xb2\\x73\\x8e\\x78\\x37\\x91\\xe7\\x3d\\x95\\xbb\\x90\\x19\\xaf\\xaa\\x78\\x04\\x69\\xf7\\xe0\\x28\\xef\\x5e\\xd7\\x6a\\xd2\\x18\\x2e\\xe7\\x3c\\x38\\x98\\x7b\\x53\\xd2\\x25\\x07\\xa8\\x05\\xe3\\x4e\\x5f\\xd7\\x25\\x76\\x60\\xdc\\xd4\\x8a\\x3c\\xdd\\x99\\xc5\\xb8\\x6c\\xf6\\x8e\\xfc\\x2d\\xae\\x98\\x3a\\xac\\x03\\x70\\x52\\x63\\xcc\\x8c\\x10\\x4c\\x55\\xf7\\xc6\\x16\\xe5\\xf1\\x9e\\x61\\x8a\\x44\\x75\\x9e\\x8b\\x35\\xa9\\x49\\xd4\\x25\\xd8\\x5d\\x1c\\x6d\\x77\\x22\\xa2\\x77\\x9b\\xff\\x26\\x30\\xe4\\x5e\\xfd\\x50\\x3d\\x97\\x35\\x59\\x33\\x4d\\x17\\x17\\x01\\x84\\x7c\\x02\\x46\\xee\\xb1\\x8a\\x3b\\xb2\\x6f\\x29\\x09\\xb9\\x65\\x1f\\x5a\\x56\\x1f\\x21\\x30\\x19\\x31\\x10\\xb4\\x46\\xae\\x20\\x1d\\x5a\\xfb\\xee\\x42\\x60\\xd7\\x27\\xf1\\x66\\xbb\\x44\\x1e\\x71\\xda\\xe3\\xbc\\xd5\\x6d\\x18\\x71\\x3b\\x20\\x1f\\xe6\\x95\\xe9\\x82\\xa2\\xbe\\xbe\\xba\\xbf\\xb5\\xdc\\x72\\xed\\x95\\x19\\xd0\\xd7\\x28\\x8d\\x48\\x0b\\x18\\xc2\\xb8\\x78\\xf7\\x11\\x5a\\x4a\\xb1\\xfb\\x73\\x16\\x9e\\x88\\xd2\\x65\\x01\\x13\\xfa\\xf6\\xeb\\x40\\x75\\x97\\x86\\x57\\xcb\\x6f\\x17\\x9a\\x02\\x87\\x2a\\xe5\\x65\\x26\\x0d\\x2e\\xca\\xf7\\xb9\\x10\\xdc\\x4e\\xbc\\x51\\x6d\\x09\\x15\\xad\\x69\\x58\\xdc\\xb7\\x44\\x3d\\x7b\\x5d\\x19\\x4e\\xe9\\x02\\x61\\x5e\\xb8\\x97\\x66\\xac\\x76\\x19\\x56\\xee\\x11\\x9f\\xde\\x43\\xa4\\xc9\\xf5\\x51\\xc1\\x4a\\x2d\\xe7\\x7f\\xd0\\xa9\\xc5\\x9e\\x7a\\x52\\x99\\x6d\\xdc\\x22\\x42\\x7a\\xba\\x55\\x7a\\x2a\\xb7\\x50\\x76\\x6a\\x8f\\x39\\x81\\x19\\x4c\\x9a\\x91\\x06\\x3e\\xbf\\x34\\xfb\\x9d\\xc5\\x69\\x58\\x81\\x64\\x29\\x40\\x4d\\x59\\x9a\\xac\\x6b\\xd7\\x5f\\x78\\x2f\\x52\\xbf\\x69\\x0a\\xc9\\x75\\x52\\x13\\x18\\x8c\\x52\\xb3\\x8b\\x22\\x5c\\x4f\\xb0\\xa8\\xcf\\x3c\\x67\\x8d\\x19\\x45\\x52\\xd3\\x8b\\x82\\xe0\\x68\\xf7\\x2e\\xac\\x8b\\x48\\xc6\\x35\\x86\\xcf\\xe6\\x6f\\x5c\\x3b\\x3b\\x9c\\xff\\xf1\\x6a\\x67\\x31\\x9b\\x8c\\xd6\\x23\\x16\\x8c\\x2a\\x24\\xcb\\xcd\\x5c\\x85\\x0b\\x7a\\x99\\xce\\xdf\\x3d\\xe8\\xb2\\x19\\x33\\xda\\xa4\\x11\\x35\\xcd\\x6d\\xed\\xe5\\x70\\xbe\\xea\\x6e\\x06\\x34\\x6f\\x6b\\x39\\x4a\\x89\\x11\\x4d\\x61\\x8e\\x3a\\xe2\\x1d\\xcd\\xe0\\x2c\\x29\\x7d\\xc1\\x05\\xc9\\xaf\\xa7\\x0f\\xba\\x37\\x53\\x7b\\x27\\x2a\\xca\\xf0\\x86\\xcf\\x06\\x75\\xee\\x77\\x63\\x5a\\x2e\\xa7\\x8b\\x1a\\xf4\\x4b\\x0b\\xfc\\x93\\xf1\\x16\\xe8\\x9a\\xc4\\x61\\x6d\\x62\\x3d\\x49\\xe5\\x64\\x3d\\x09\\x92\\x8f\\x9b\\xf5\\xb3\\xa7\\xf6\\x88\\xa3\\x62\\xd5\\x71\\x6d\\x23\\xfd\\x03\\xba\\x39\\xef\\xb9\\x7b\\xdb\\x19\\xd1\\x61\\x2a\\xdd\\x2a\\x0f\\xd5\\x68\\x4e\\x63\\x4a\\x6c\\xc8\\xbe\\x91\\x2d\\x8a\\x74\\x19\\xdd\\x02\\x37\\x52\\xa5\\xe8\\x26\\xc6\\xc9\\xa0\\x4f\\xd5\\xa6\\x4f\\x1a\\xbb\\x07\\x7b\\x5b\\x9e\\x0c\\x82\\x96\\xeb\\xdf\\x4b\\x19\\x35\\x15\\xe0\\x9f\\x94\\xb1\\x4f\\x86\\xb9\\x16\\x1d\\x7e\\x9f\\xbf\\x4b\\x6b\\x28\\xb0\\xb2\\xa7\\x8d\\x99\\x1f\\xde\\xf1\\x1a\\x99\\xcb\\x50\\x78\\xb2\\x86\\x3a\\x9f\\xa7\\x26\\xc9\\xd2\\x0c\\x8a\\xce\\xfe\\x8e\\xdb\\xb9\\x90\\x84\\xe1\\x2c\\x34\\xac\\x39\\x30\\x76\\x92\\x12\\xfb\\xba\\xe2\\x6f\\x1e\\x66\\x07\\x02\\x0f\\xc7\\x23\\x7b\\x16\\xd3\\x1a\\xa9\\x5f\\xad\\xcb\\x73\\xf0\\xf8\\x8e\\x38\\xf0\\xc4\\x95\\x40\\x83\\x99\\x72\\x70\\xd9\\x26\\x48\\x73\\xa3\\x45\\xc8\\x26\\x99\\x93\\x10\\x89\\x54\\x82\\x4f\\x86\\x57\\x39\\x0f\\x85\\x16\\xe3\\x08\\x61\\xcd\\x11\\x8f\\x72\\xac\\x69\\x1a\\x12\\x09\\x53\\xf6\\x21\\x20\\xde\\x80\\x50\\xe0\\x3f\\xac\\x51\\x35\\xf6\\x28\\xcd\\x4e\\x21\\x66\\x6a\\xb6\\x34\\xc4\\x56\\xb2\\xf1\\x23\\x67\\xa3\\x74\\x1a\\x92\\xad\\x1b\\xd3\\xaf\\xf7\\x43\\x7b\\x65\\xcd\\x64\\x1a\\xc1\\x92\\xaf\\x13\\xa7\\x26\\x32\\x6e\\x53\\x4d\\x81\\xcc\\x3e\\x63\\xc6\\x84\\xb2\\xcd\\x1b\\xf1\\x9a\\x06\\xe3\\x9e\\x46\\xc2\\x3d\\x9b\\x79\\x96\\x24\\x24\\x1b\\x3c\\x21\\x66\\x6a\\xe5\\xc9\\x46\\x0d\\x99\\xd2\\x7f\\x5d\\x5c\\xe0\\x7d\\xd1\\xb1\\xe7\\x94\\xa5\\xd3\\x2b\\xb4\\xc7\\x05\\x6e\\x6f\\x01\\x42\\x30\\xf0\\x70\\x90\\x0c\\xb3\\x98\\x8d\\x5d\\x16\\x01\\x27\\x88\\xe0\\x97\\xad\\x39\\xa6\\x67\\x70\\xf8\\x4e\\xda\\xeb\\xd3\\xaf\\xbb\\x6d\\x66\\x9a\\x23\\xbf\\xd9\\x24\\x0f\\x8b\\xff\\xf5\\x52\\xd1\\x3e\\x28\\x67\\x02\\x08\\x00\\x60\\x9a\\x6b\\x88\\xca\\xcd\\x85\\x60\\xad\\x19\\x67\\x2d\\xdb\\x66\\xad\\xf9\\xff\\x3e\\x02\\x57\\x5f\\x7f\\xbf\\x9c\\x61\\xe8\\x11\\x36\\x82\\x51\\xf5\\xd7\\xf4\\x9f\\xb6\\xd1\\xd6\\x51\\xec\\xe0\\x72\\x60\\xb6\\x20\\x7a\\xa0\\xbf\\x82\\x00\\x68\\x55\\x68\\x03\\x68\\x4b\\xb1\\x0e\\xfb\\xa4\\xfb\\x14\\xbf\\x09\\x17\\xe0\\x1f\\x10\\xbb\\x20\\xbb\\x10\\x7d\\x50\\x3e\\x90\\x44\\x40\\xd7\\x2c\\x46\\xb5\\x6f\\xb5\\x57\\xf6\\x9c\\xf6\\x1d\\xd7\\x30\\xee\\x78\\x02\\x11\\x5b\\xa1\\x7e\\xb0\\x58\\x50\\xc2\\xb9\\x88\\x2c\\x10\\x3c\\x10\\x9d\\x14\\x20\\xf8\\x84\\x30\\x16\\xc3\\x44\\xf7\\xb0\\x67\\x68\\xe3\\x00\\xd7\\x5a\\xcc\\xd6\\x6f\\xfc\\x10\\xbe\\x01\\x92\\xb1\\x08\\x63\\xbf\\x7e\\xe6\\x4a\\x4d\\x97\\x93\\x0b\\xcf\\xb4\\x19\\x4a\\xdd\\x14\\x61\\x88\\x48\\xe5\\x28\\xcb\\x9d\\xf8\\xcf\\xfa\\x98\\x0c\\x9a\\xcc\\xd4\\x0b\\x1f\\x14\\xde\\x92\\x1d\\xa4\\xfc\\x48\\xff\\xed\\x5d\\x71\\xae\\xfe\\x52\\x3d\\xf6\\x9b\\xb3\\xc4\\x52\\x6f\\x01\\x07\\x23\\x66\\x3e\\x88\\x23\\xe0\\x3e\\xe8\\x3e\\x34\\x93\\x9a\\x99\\x42\\x2f\\x7f\\x99\\xf6\\xae\\x94\\xdf\\x12\\xf1\\x94\\x27\\x3d\\x6b\\x31\\x40\\xbe\\xf0\\x2a\\x57\\x2f\\xd7\\x4f\\xdf\\xd9\\x20\\xd2\\xe0\\x8f\\x11\\x46\\x9a\\x91\\x06\\x0b\\x76\\x38\\x67\\x78\\x53\\xe8\\x83\\xbf\\x9c\\x01\\xc1\\xb2\\xc8\\x72\\xc2\\xf2\\xd9\\x72\\xc9\\x72\\x0d\\x4f\\x15\\x0f\\x01\\x8f\\x7a\\xab\\xe6\\x25\\x91\\x2e\\x85\\x40\\xb8\\xe0\\x3f\\x3f\\x79\\x34\\x2c\\x6b\\xcc\\x64\\x04\\xb9\\x7e\\x55\\xf2\\x70\\x5a\\x66\\x7c\\xea\\x76\\xca\\xe2\\x70\\x37\\x29\\xb0\\x94\\xb6\\xe4\\x91\\xe4\\xd7\\x48\\xc8\\xa8\\xee\\x48\\xc1\\x2d\\x22\\x82\\xe4\\x8c\\x3c\\xab\\x70\\x9d\\xd4\\x8d\\x10\\xbc\\xca\\xa2\\xb2\\xbc\\xd2\\xa6\\x32\\x44\\x79\\x69\\x79\\x96\\xe5\\x5f\\xcb\\xe4\\xd3\\xf4\\xd3\\xd0\\xf4\\xe2\\xc5\\x52\\xbe\\x52\\xaf\\xd2\\x92\\x32\\x54\\x0b\\xac\\xf4\\xd6\\xe2\\x1c\\xd3\\xec\\xc3\\x7f\\x6a\\x25\\x17\\x79\\x5d\\xf9\\x04\\x85\\x12\\x27\\xdf\\x5f\\x91\\x61\\x83\\x0d\\x12\\xd1\\x4d\\xcf\\xf5\\xff\\x18\\xad\\x1a\\x71\\xa5\\x96\\xa4\\x6e\\x69\\xe4\\x27\\xc3\\x24\\x6b\\xab\\xa5\\xbb\\x04\\x3d\\x04\\x30\\xea\\x55\\xc5\\x10\\x99\\x90\\xec\\xc6\\xf2\\x0c\\x01\\x05\\x80\\x1f\\x60\\x07\\x30\\x11\\x53\\x10\\xfd\\x31\\xfe\\x1e\\xec\\xfa\\x0f\\x37\\xfa\\xa7\\x1f\\x4f\\x9c\\x0a\\x65\\xc3\\x97\\x27\\x87\\x2b\\x47\\x30\\x9d\\x4a\\x57\\x28\\x7a\\xec\\x5b\\xd4\\x3d\\x13\\x82\\xa3\\x3d\\x7d\\x5f\\x14\\xfa\\x88\\xe7\\x88\\xfc\\xf0\\xc9\\x70\\x09\\x7d\\x02\\x7d\\x54\\x7d\\x14\\x7d\\x66\\x64\\x76\\xa5\\x3a\\xe6\\x62\\xc7\\xd2\\xb8\\xdf\\x4a\\x06\\xee\\xfa\\x51\\xc9\\x3f\\x47\\x4a\\x4a\\xf9\\xda\\xe9\\xc4\\xff\\x3d\\x84\\x67\\x45\\xcc\\xed\\xee\\x3c\\x97\\x43\\x33\\x29\\xd1\\x58\\x48\\x1b\\x28\\x37\\xff\\x4e\\x99\\xaf\\xe6\\x20\\xd7\\xa1\\xef\\x22\\x53\\x49\\x3f\\x49\\x62\\x04\\x33\\x8d\\x7e\\x3f\\xe2\\xdd\\x67\\x3a\\xb0\\x3a\\x20\\xf9\\xad\\xa7\\x36\\xa0\\xbb\\xa7\\x3e\\x69\\xd4\\xc4\\x35\\xdf\\xbc\\x24\\xa0\\x5e\\xa2\\x96\\xe5\\xe5\\x82\\xe7\\xd2\\xb1\\xb0\\xa1\\xf6\\xf4\\x6b\\x03\\xe7\\xc1\\x6a\\xc1\\x6f\\xa6\\x77\\x76\\x7b\\x48\\xb0\\x7d\\x1b\\xe2\\xdc\\x96\\x08\\x00\\x38\\x1e\\xb0\\xfe\\x5f\\x3a\\xb9\\x4d\\x3e\\xae\\x72\\xcd\\x25\\x8e\\xfe\\xef\\xed\\xf1\\xf1\\xad\\xc1\\x0d\\x9c\\x99\\xd9\\x56\\x75\\x78\\x7a\\x78\\x99\\xf5\\x34\\xd5\\x29\\x70\\x27\\x7b\\xc7\\x05\\xee\\x10\\xec\\x19\\x79\\x87\\xbf\\xc3\\x89\\x58\\x0d\\xab\\x07\\x5d\\x80\\x30\\x6e\\x54\\x46\\x01\\xe1\\x12\\xf1\\x54\\x54\\x85\\x1d\\x45\\x9a\\xf5\\xc2\\x6c\\xe2\\xc9\\x14\\x24\\x34\\x82\\x4c\\x3d\\xf4\\x5f\\x95\\xc7\\x85\\xbd\\x63\\xa6\\x63\\x49\\xe5\\x96\\xe5\\x41\\x3f\\x24\\x18\\x95\\xf5\\x16\\x1b\\xa7\\xa1\\x39\\xec\\x9a\\x06\\x1a\\x33\\x1f\\x81\\xac\\x17\\x35\\x54\\x41\\xd1\\xdf\\xd0\\xe8\\xc3\\x23\\x40\\x12\\xe4\\x81\\x0c\\xa2\\xc9\\x14\\x70\\x71\\xd0\\x6d\\x69\\xde\\xb2\\xdd\\x34\\x0d\\xce\\x38\\x2e\\x7a\\x0f\\x0b\\xf7\\x8c\\xf7\\xbc\\x1f\\x52\\x22\\x70\\x46\\x98\\x14\\x5c\\x0b\\x6c\\xe8\\xc5\\x11\\xc5\\x48\\x4e\\xa8\\x77\\xd0\\xec\\x06\\xf2\\xa9\\xea\\x5a\\x9f\\x0d\\xbf\\xeb\\x9d\\xeb\\x22\\x1b\\xcc\\x2b\\xbf\\x34\\xbd\\x34\\x96\\xb4\\x6a\\xb4\\x05\\x57\\x11\\x56\\xb4\\x56\\x42\\x96\\x43\\x96\\xb5\\x57\\x28\\x1e\\x23\\xa2\\xa5\\xa3\\xa5\\xa2\\x53\\x8d\\x9a\\xf6\\x0a\\xf7\\x1a\\x1a\\x52\\x1b\\x32\\x9c\\xda\\xd8\\x07\\x16\\x26\\xa9\\x9c\\x20\\x96\\xd4\\xdd\\xbe\\xbb\\x09\\xb6\\x0c\\x76\\xcd\\xfa\\xcc\\x7f\\xac\\xa8\\xf4\\x51\\xdc\\x12\\x3e\\x25\\x5f\\x87\\x74\\x56\\x74\\x4d\\xf9\\x04\\x7b\\xff\\xf4\\xfe\\x41\\x72\\x4f\\x74\\xff\\x75\\x54\\xb3\\x4d\\xb2\\xb7\\x75\\xdc\\x83\\x4f\\x8b\\x83\\x06\\x43\\x18\\x70\\xd5\\xe7\\xdb\\xa7\\x88\\x06\\xa7\\x10\\x52\\x1e\\x2c\\x1e\\xac\\x9c\\xf7\\x96\\x77\\xb5\\x13\\xb5\\x13\\x29\\x59\\xf7\\x0d\\xdd\\x80\\x1c\\x95\\xa2\\xa7\\x00\\x39\\x7f\\x2e\\x7f\\xcb\\x68\\xc1\\xd0\\xc7\\xb0\\x1e\\x17\\xbd\\x01\\x84\\x32\\x14\\x01\\xa2\\x01\\x41\\xdd\\x0c\\xdc\\x3c\\x85\\x43\\xc2\\xab\\xef\\x5a\\xd4\\xab\\xde\\x5a\\xde\\xda\\xde\\x5a\\xdc\\xda\\x94\\x6b\\xff\\x88\\x7b\\x4d\\xaf\\x4e\\x71\\x2d\\x12\\xf6\\xf4\\xf0\\x34\\x7b\\x75\\x7e\\xb5\\x7d\\xf5\\xe1\\x85\\x4b\\x84\\x74\\x11\\xe2\\x63\\x01\\xc8\\x42\\xb2\\xe9\\x43\\xc1\\xd7\\xe2\\x5a\\xc3\\x0c\\xf7\\xc9\\x5d\\xe3\\x1b\\x2b\\x0e\\x96\\xe2\\xff\\xa6\\x2f\\x47\\xe5\\x8c\\xc6\\x50\\x82\\xfd\\x21\\xc4\\x3a\\x6f\\x69\\xc9\\xed\\x92\\xde\\x2e\\xdf\\x55\\xe8\\xdb\\x0f\\x59\\x0b\\x69\\x0d\\xe0\\xeb\\x15\\xb6\\xc7\\x48\\x14\\x42\\x8c\\x14\\x82\\xa8\\x0e\\x7e\\xdb\\xf1\\x70\\x27\\xe9\\x0e\\xd5\\x74\\x66\\x6d\\xc7\\xdf\\x88\\xbc\\x14\\x8e\\xc9\\x35\\x9b\\xc1\\x7f\\x65\\x33\\x32\\x24\\x47\\x32\\xe5\\x62\\x83\\x4b\\x1b\\x9f\\x30\\x3a\\xa4\\x7f\\x23\\xd1\\x8e\\xb6\\xe9\\x75\\x35\\x84\\xab\\x53\\xd1\\xc0\\xb3\\x32\\x32\\x3a\\xb7\\x62\\x1a\\x64\\x3c\\x68\\x76\\x1c\\x6e\\x3b\\x5b\\x97\\xb9\\xa4\\xd1\\x0b\\xab\\x01\\x71\\xef\\x74\\x5c\\x0f\\x3c\\xe3\\x75\\x86\\x3c\\x5d\\xc7\\xea\\x81\\xaf\\xf6\\x15\\x10\\x38\\x83\\xc2\\xfc\\x83\\xa3\\xfa\\x0d\\x76\\xca\\xaf\\xff\\x3c\\x87\\x23\\xe4\\xfd\\x28\\xc5\\x3b\\x0d\\x10\\xcf\\x03\\x4a\\x86\\x42\\x86\\x09\\x57\\xcc\\xe8\\x3a\\x13\\x6f\\x48\\xd4\\x28\\xc1\\x32\\xfd\\xad\\xd8\\x31\\x6d\\x85\\x23\\x0e\\x30\\x33\\x40\\x7e\\xd4\\x0f\\x53\\xdf\\xcd\\x7a\\xe6\\xe8\\x8e\\xd8\\xda\\xab\\x84\\xa1\\xba\\xfd\\xf6\\x17\\x8e\\x94\\xcc\\x9f\\x16\\x90\\xbb\\xd2\\x6c\\xb3\\xc6\\x39\\xd2\\x6c\\xb3\\xc6\\x05\\xb7\\x52\\x75\\xf3\\x65\\x6a\\x95\\xba\\xb1\\xc2\\xcd\\xb3\\xf6\\xd8\\x25\\xb1\\x1a\\xeb\\x6b\\x8c\\x94\\x26\\xb1\\x18\\x07\\xb5\\x8f\\xd1\\x26\\xc6\\xe0\\x21\\xd5\\x8d\\xe1\\x87\\x21\\xe3\\x68\\xc1\\xb9\\x1a\\xe6\\x9a\\x27\\x72\\x4c\\xd9\\x1e\\x66\\x9b\\x27\\x61\\x2e\\xa0\\x3d\\xe4\\x5a\\x8b\\x79\\x8e\\x9f\\x70\\xce\\xf9\\x06\\x86\\xd4\\xe4\\x1f\\x3f\\xe2\\x74\\x47\\xdc\\x8c\\x88\\xd9\\x65\\x7f\\x46\\xe8\\x8e\\xc8\\xd9\\x69\\x69\\x3d\\xb0\\x7b\\x71\\xbb\\x9c\\x2a\\xf0\\x68\\x2e\\xa5\\x4c\\x0f\\x63\\x32\\x0c\\x4b\\x25\\xc5\\x0e\\x43\\xde\\xf5\\x6f\\x25\\xbd\\x0c\\x0b\\xdd\\x2d\\x78\\x66\\xfc\\x2b\\x96\\x4f\\x9b\\xc8\\x69\\x8c\\xb8\\x22\\x12\\x1d\\xab\\xf2\\xdf\\xaf\\x3e\\x93\\xf2\\xd8\\x94\\xb0\\xcb\\xf1\\xcb\\x83\\x4f\\xf3\\xc4\\x4b\\xe9\\x10\\x16\\xbc\\x1e\\x54\\x60\\xca\\x35\\x92\\x6a\\x2a\\x4e\\xb0\\xdb\\x43\\x89\\xf3\\xec\\xcc\\xab\\xb6\\x4e\\x73\\x78\\x35\\x68\\x4e\\x0d\\x55\\x86\\x1b\\xd9\\xa1\\x26\\x70\\xd9\\x87\\x2b\\x59\\xdf\\x26\\x80\\x4e\\xc3\\xb9\\x1e\\x76\\xbe\\xe9\\xfa\\x98\\x76\\x08\\x36\\xc8\\x6b\\x63\\x8f\\xf5\\x05\\xe7\\x1c\\x1d\\xfd\\xbe\\x2d\\x01\\x5c\\x8b\\x87\\xbf\\x38\\xcd\\x61\\x37\\xf4\\xd1\\x64\\xfd\\xc5\\x6a\\x61\\x50\\x7a\\xf1\\x5a\\x21\\x31\\x88\\xfb\\x65\\x9e\\xbf\\xe5\\xec\\x70\\xbb\\x8b\\xb0\\x04\\x89\\xf0\\x17\\x8a\\x08\\x24\\x0f\\x58\\x6a\\xa0\\xf2\\x6d\\x93\\x66\\xfa\\x47\\xd8\\x23\\x12\\x0f\\xd0\\xbb\\xc3\\x01\\xc9\\x05\\x86\\x9f\\x9e\\x09\\x44\\x58\\x57\\x92\\x1c\\x1e\\xfe\\xc0\\x71\\x8f\\xfc\\x74\\xad\\xd9\\x70\\x7b\\xda\\x7a\\xe9\\xd0\\x48\\xd1\\x5b\\x45\\xe7\\x07\\xac\\x21\\x8b\\x41\\x00\\xbc\\x9b\\x92\\x5e\\x02\\x57\\xff\\xbf\\x53\\x40\\x8f\\x9d\\xa6\\xf4\\x3f\\x7e\\x99\\x7f\\x4c\\x2b\\xe0\\xa8\\x88\\x90\\x88\\xf8\\xfd\\x57\\x91\\x22\\xd5\\x6f\\x44\\xce\\x5f\\x55\\x8a\\x34\\xf3\\x88\\xc8\\xbf\\x0a\\xa6\\x29\\x1b\\xbf\\x55\\xfd\\xca\\xb0\\x87\\x1e\\x1e\\x94\\x72\\xe0\\xfd\\x03\\x48\\xe9\\xfd\\x6e\\x0f\\xb5\\x0e\\xf9\\xd4\\x5f\\x70\\x4d\\xd8\\x09\\x8b\\xd8\\x09\\x97\\x33\\xf0\\x74\\x0d\\x87\\x91\\x40\\x49\\xa9\\x44\\x49\\x34\\x2a\\xf1\\x2f\\x0e\\xbf\\x10\\xe6\\x44\\x58\\x3c\\x56\\xd3\\x18\\x19\\xdd\\x18\\x15\\x28\\x51\\x1d\\xe7\\xb5\\x0f\\x15\\xa5\\x18\\x6a\\x9a\\x2f\\x66\\xce\\xa9\\x15\\xc3\\x55\\x70\\x71\\x0c\\xe0\\x0d\\x00\\xe7\\x56\\xd0\\xe6\\x75\\x1c\\xd3\\x79\\x86\\x6f\\xe6\\xdb\\x69\\x04\\x01\\x19\\x60\\xc6\\xfb\\xa4\\xeb\\x78\\x2b\\x89\\xce\\x86\\xa9\\x6b\\xc5\\xac\\x11\\xef\\x96\\x59\\x5d\\xa3\\x36\\x8c\\xa6\\x96\\x51\\xb3\\x63\\x4b\\x76\\x3c\\xdc\\x81\\xba\\x11\\x2d\\x3b\\x3e\\xcf\\x3c\\xdd\\xfe\\x76\\xbb\\x4c\\x82\\xfd\\x35\\x37\\x12\\xef\\x44\\x5f\\xd4\\x86\\x88\\x12\\x85\\xe8\\x40\\x51\\x3a\\x25\\x89\\x46\\xcc\\x0f\\x10\\x74\\x9d\\x90\\x35\\x86\\x38\\x21\\x86\\x3a\\x88\\x1e\\x4f\\x47\\x7c\\x54\\xb6\\x3e\\xac\\x92\\x3c\\x63\\xd4\\xd6\\x31\\x28\\x93\\x6c\\x49\\x8a\\x02\\x75\\x94\\xfe\\x36\\xed\\x3d\\x0f\\xa3\\xc2\\xb9\\xdc\\xbf\\x3c\\x17\\xbf\\x4c\\xde\\x32\\x2c\\x3d\\x3f\\x99\\xae\\x10\\xa5\\x94\\xe0\\x34\\x29\\xda\\x5c\\xc2\\x6c\\x56\\xcc\\x99\\x73\\xe3\\xd7\\xd3\\xac\\xd1\\x3d\\x61\\x97\\x3c\\x62\\x97\\x42\\xce\\x1c\\xea\\x3d\\x4d\\xc2\\xfc\\x3e\\x4b\\x91\\x2c\\xd1\\x1c\\xf8\\x9e\\x1d\\x73\\x82\\xbc\\x61\\xd0\\xfd\\xd0\\xbf\\xcd\\xf8\\x32\\x4d\\x9d\\xcb\\x90\\x28\\x63\\x14\\xbb\\x6e\\xc1\\x1a\\x71\\x6d\\x3c\\xba\\xee\\xee\\xfc\\xc7\\xb8\\xb5\\xbe\\xc2\\xb2\\xf6\\x63\\x14\\xc1\\x46\\x94\\x63\\x43\\x2b\\x09\\x29\\x6b\\x61\\x20\\xa4\\x22\\xac\\xa5\\x10\\xe6\\x31\\xc0\\x47\\x1f\\x5a\\x36\\x00\\xa6\\x16\\x16\\xad\\xb5\\x16\\x55\\xbe\\x8f\\xd3\\x1d\\xa2\\xa7\\x73\\x59\\x97\\x3d\\xe6\\x19\\x5d\\x30\\x66\\x6b\\x4c\\xef\\x40\\xef\\x4e\\x10\\x3a\\x3c\\xd0\\x59\\x38\\x20\\x57\\x79\\x9a\\xf2\\x18\\x3b\\xf2\\x9b\\xe8\\x35\\xe5\\x04\\x86\\x2b\\x82\\x57\\xb0\\x51\\x3f\\xde\\xd7\\x00\\x89\\x1d\\xe0\\x83\\xff\\xff\\xdc\\xa9\\xa0\\xd1\\x01\\xa9\\x00\\x6c\\x40\\x04\\x00\\x06\\x00\\x09\\x50\\x04\\xe8\\x03\\xdc\\x00\\x00\\xc0\\x06\\x62\\x0a\\x00\\x0a\\x00\\xe1\\x0e\\xc1\\x30\\x54\\x94\\xf7\\x0b\\x02\\x10\\x32\\x73\\xf5\\xea\\xd4\\xf7\\x43\\x5e\\x84\\x6f\\xd3\\x5c\\x52\\xc4\\xd4\\x00\\x82\\x83\\xbd\\x57\\x07\\x42\\x13\\x46\\x07\\xfa\\x43\\x81\\xb7\\x97\\x99\\x80\\x01\\xe9\\x8d\\x08\\x37\\xc0\\x36\\x56\\xbf\\x30\\xe3\\x9d\\x65\\x91\\xd1\\x51\\xd6\\x25\\x03\\x9a\\x6f\\x23\\x6f\\x58\\xd8\\x2d\\x1c\\x8f\\x6a\\xa3\\xc0\\xc4\\xf9\\xde\\xad\\x3b\\x32\\xe9\\x53\\x6a\\xe4\\xfa\\x81\\x99\\x6d\\x48\\xfe\\xcb\\x54\\xff\\xcf\\x3d\\x89\\xa7\\xa9\\xd8\\x17\\x85\\x21\\xd3\\x83\\x9f\\x80\\x6c\\x0e\\x75\\x4b\\xff\\x08\\x79\\x5b\\x1f\\x6d\\x48\\x1f\\xef\\x58\\x0f\\x3d\\x7b\\x4b\\x06\\x1b\\x7b\\xd5\\xc0\\x44\\xe6\\xda\\x11\\x41\\xb0\\x07\\x31\\xde\\x50\\xfc\\x81\\xfa\\x6f\\x29\\x1b\\xd5\\x44\\x35\\x65\\xba\\x05\\x2c\\x73\\xbd\\x8e\\xd5\\x39\\xf4\\x45\\xa8\\x15\\xf2\\x9b\\xcc\\x5d\\x77\\x85\\x1f\\xb4\\xe5\\x36\\x95\\xf4\\xe4\\xc0\\xcd\\x2b\\x61\\xd5\\x05\\xdd\\x4c\\x6e\\x14\\xb5\\x40\\xbe\\x62\\x1b\\x72\\x31\\x31\\x1e\\x4e\\xf9\\x5c\\xee\\xcb\\xbf\\x55\\x4b\\xc2\\x44\\x9c\\x1a\\x2e\\xd3\\xfd\\xe5\\x91\\x37\\x59\\x53\\x65\\x02\\x24\\xf7\\x2d\\x84\\x1f\\x5b\\x1b\\xbf\\x6f\\x46\\x35\\x57\\x9a\\x5d\\xbb\\xc0\\xce\\x08\\xfd\\x83\\x8a\\x55\\x17\\xf8\\xf4\\x79\\xb5\\xa7\\x43\\xb2\\x4a\\xea\\xd7\\xa2\\x6a\\x4a\\x8d\\x12\\x17\\x01\\x8b\\x43\\x1a\\x6f\\x99\\xda\\x46\\xff\\x4c\\xdd\\x92\\x1e\\x23\\xfb\\x4d\\xcb\\xae\\x87\\xb0\\xd4\\x37\\xcb\\x1b\\x40\\xff\\xae\\xa3\\xa7\\xbc\\xbc\\x26\\x08\\xa6\\x44\\xeb\\xee\\xda\\x03\\x6a\\x0c\\xd7\\xf1\\xdd\\x96\\x11\\x26\\x6d\\x17\\x38\\x77\\xed\\x3b\\x1a\\x4a\\x77\\x35\\x54\\xbf\\xa4\\xfd\\xdb\\xff\\xae\\xd0\\x5f\\x52\\x15\\xb5\\xfa\\x35\\x42\\xff\\x6a\\x3c\\x8a\\x5a\\xb2\\xc6\\x48\\x03\\x4a\\x9d\\x55\\x29\\x79\\x54\\x13\\xa9\\xcd\\x59\\x11\\x64\\x42\\x60\\xeb\\xc6\\xb5\\x53\\xae\\xac\\xe3\\x9a\\x26\\x8d\\x54\\x64\\x4f\\xdb\\x97\\xb8\\x7d\\xd8\\xdb\\x3d\\xb0\\x98\\x4d\\xd9\\xb1\\x6c\\xa1\\x04\\x55\\x04\\xfb\\xff\\xb7\\x6b\\x59\\xf7\\x05\\xba\\x88\\x40\\x00\\x00\\xbd\\x67\\x35\\x1b\\x7a\\xff\\x95\\xd6\\xbf\\x97\\xc4\\x26\\x36\\xf3\\x7a\\xa1\\x4b\\x68\\xa1\\x32\\xd2\\x9a\\xbf\\xe9\\xb1\\xe5\\x42\\xb9\\x5a\\x55\\xbc\\x0f\\xf8\\x1c\\x96\\xb3\\x95\\x62\\x15\\x5c\\x17\\xbc\\x41\\xbc\\x2e\\x27\\x8b\\x05\\xea\\x39\\xbe\\x50\\xb0\\xc8\\x78\\x5c\\x86\\xf3\\xa9\\x0e\\x98\\xd4\\x72\\x69\\x5c\\x46\\x8b\\x99\\x1e\\x88\\xd8\\x8c\\x9a\\xcd\\x86\\x0b\\xe9\\x2e\\x04\\x5c\\x36\\x2b\\xcd\\x46\\x4b\\xd9\\x3e\\x70\\x28\\x44\\x40\\xd7\\xdd\\xf9\\x34\\x27\\x1c\\x26\\x9d\\x36\\xd7\\xbd\\xc5\\x2c\\x2f\\x54\\xe2\\x9f\\x1e\\x8f\\xbb\\x0b\\x19\\x6e\\x24\\x02\\x3e\\x2f\\x8f\\x7b\\x4b\\x39\\x7e\\xe8\\x4a\\xac\\x0e\\xf0\\x52\\x74\\x16\\x78\\x62\\x26\\x7f\\xb7\\xc9\\x18\\x71\\x01\\x00\\xff\\xe3\\x89\\x27\\x8a\\xb5\\x66\\x8f\\x21\\xeb\\xb5\\xc5\\x72\\xb5\\x17\\xfc\\x95\\x66\\xab\\x0d\\x2f\\xce\\xf9\\x7a\\x39\\x12\\xb7\\xf9\\x19\\x71\\xf6\\x02\\x06\\x36\\x91\\x04\\xbf\\xd2\\xe2\\x0c\\x54\\x01\\x8b\\xa2\\x1c\\xd8\\x2f\\xc7\\x7e\\x3e\\x23\\x86\\x9b\\x49\\x1c\\x41\\xd9\\x99\\x3e\\x82\\x2c\\xfe\\xb9\\x11\\x68\\xd4\\x4a\\xd6\\xd1\\x88\\xaf\\xe5\\x87\\x1e\\x08\\x58\\xc7\\xbe\\x22\\x61\\xd8\\x86\\x89\\x7f\\x64\\x13\\x78\\x96\\xa9\\x3b\\xe2\\xb8\\x16\\x58\\x5e\\x99\\x4e\\x23\\xe8\\xc3\\x99\\x75\\x53\\x65\\x33\\x43\\xb8\\x56\\x99\\x37\\xd4\\xa9\\xe6\\xf1\\xa3\\xc5\\xa9\\x96\\xe9\\x27\\xa6\\xa9\\x16\\xc9\\x2b\\x87\\xa9\\xe3\\xad\\x1e\\x87\\xda\\xfa\\x79\\x62\\xd8\\xda\\x86\\x65\\x26\\xc9\\xda\\x7d\\xb5\\x49\\x3d\\xd0\\x7d\\x81\\x71\\x50\\x00\\x00\\xa0\\x76\\x5c\\xd2\\x6e\\x8d\\xcb\\x72\\xad\\x19\\xc7\\xce\\x70\\xa0\\x98\\x71\\xcd\\xf5\\x7c\\xb5\\xe1\\xaa\\x37\\x8f\\x62\\x58\\x3e\\x93\\xd7\\xe9\\xb2\\xbf\\x88\\x7e\\xc9\\x76\\xbd\\xdd\\xe9\\xaa\\xaf\\x80\\x66\\x4a\\xb7\\xd3\\xf3\\xee\\x72\\xa0\\x84\\x79\\xcb\\xf7\\xfd\\xf5\\x8e\\x99\\x94\\x96\\x92\\x81\\xfc\\x07\\x35\\x13\\x19\\x1d\\x15\\x23\\x05\\x3d\\x4d\\x4d\\x6e\\x69\\x61\\x65\\x7e\\x79\\x71\\x75\\x5e\\x59\\x51\\x55\\x41\\x45\\x89\\x9d\\xbe\\xb9\\xb1\\xb5\\xa1\\xa5\\xa9\\xad\\x81\\x45\\x13\\xf5\\x37\\x62\\x34\\x0a\\x08\\x7f\\x80\\xbf\\x5c\\xb6\\x6f\\xb3\\xcd\\xfc\\x7f\\xfd\\xae\\xae\\x29\\xc9\\xfd\\x38\\x6e\\x38\\xdb\\xfd\\x34\\xed\\x48\\xd7\\xfd\\x24\\x69\\x69\\xd3\\xfd\\x2c\\xeb\\x49\\xe0\\xf9\\x38\\x61\\xaa\\xfb\\xf9\\x34\\xe3\\xca\\xf7\\xf9\\x24\\x65\\xeb\\xf3\\xf9\\x2c\\xe7\\x2b\\x9e\\x52\\x26\\xee\\x87\\x5c\\x3b\\x52\\x5a\\xbd\\xf1\\x78\\x1c\\xbd\\x42\\x37\\x64\\xf0\\x3f\\x2c\\x7a\\xa5\\x72\\xd9\\x36\\x84\\xa4\\xf2\\xdf\\x15\\x4a\\x15\\xf2\\x5d\\xb0\\x51\\xe9\\x1c\\x56\\x33\\xe5\\x72\\x1d\\x28\\x59\\xed\\xce\\x67\\x33\\x15\\xcc\\x08\\x05\\x92\\x7e\\x89\\xe2\\x9a\\x1c\\x04\\x61\\xbb\\xb4\\xe1\\xc9\\xad\\x24\\x51\\x37\\x20\\x7d\\x63\\x31\\xab\\x79\\x71\\x9d\\xdf\\x04\\x6c\\xd6\\xa0\\x52\\xd6\\x3d\\x6a\\xd9\\x21\\x19\\x95\\xe2\\xc9\\x54\\x4e\\x1c\\xbd\\x3d\\x2f\\xef\\x08\\xd1\\x42\\xd0\\xdb\\x33\\x9e\\xc5\\x0d\\xb5\\xc0\\x50\\x49\\x29\\x8b\\x5d\\x5f\\x3e\\xd5\\xb8\\x5a\\xa5\\x56\\x83\\xed\\xff\\x71\\x88\\xf4\\xf2\\xff\\x9f\\x47\\x36\\xd1\\xa1\\x15\\xe0\\x56\\x00\\x00\\x80\\xd8\\x95\\x9b\\x9f\\xf1\\x5a\\xb3\\x4d\\x74\\xbc\\x4d\\x87\\xc7\\xac\\x17\\xa2\\xb1\\x51\\x08\\xc7\\x2f\\x5e\\x09\\xa4\\x52\\xbf\\xf7\\x33\\xc1\\x2f\\x02\\xe3\\x5a\\xb2\\x10\\x7c\\xd3\\x56\\x74\\x71\\x7c\\x93\\x46\\xd6\\x21\\x7c\\xb3\\x4e\\x78\\xea\\x74\\xe3\\x7a\\xba\\xe2\\x74\\xd3\\x76\\x3c\\xd3\\x74\\x93\\x66\\xe0\\x61\\xba\\x59\\x37\\x0c\\xb6\\x96\\x71\\x1d\\x55\\xb2\\x96\\x69\\xdb\\x77\\x35\\x2d\\x93\\x26\\xce\\x73\\x6d\\x2b\\xa2\\x9a\\xc5\\x35\\x7d\\x0a\\xb8\\x4c\\x87\\x7e\\x32\\x9f\\xfb\\x35\\x10\\x00\\x07\\xc9\\x71\\x0c\\xc8\\xfd\\xc7\\x71\\x90\\x53\\x84\\xdf\\x7e\\x9c\\x48\\x02\\xe9\\x6e\\x82\\x42\\x21\\xf2\\x1a\\x8c\\x5b\\x10\\xc9\\x3e\\x0a\\xad\\xc2\\xc5\\x3e\\xc9\\xc0\\x3e\\xc1\\x3a\\x45\\x8e\\xc8\\x50\\x37\\x81\\x60\\x55\\x59\\x0f\\xa6\\x26\\xb0\\x6e\\x18\\x44\\xe9\\xf0\\xb6\\xb7\\x8e\\xa8\\x6a\\x5e\\xb1\\x0d\\xcd\\xf2\\xbe\\xb1\\x49\\xd9\\x78\\x5c\\x1e\\x57\\xf0\\xd7\\xfb\\xbb\\xdd\\x17\\x16\\x00\\x00\\x00\\x96\\xf5\\xd4\\x2a\\x6c\\xd6\\x9a\\x9b\\xdc\\xbc\\xac\\xc9\\xff\\x7f\\x62\\x49\\xe2\\x1d\\x98\\xf3\\x37\\x3f\\xbe\\xfe\\x5f\\x79\\x7a\\x7b\\x48\\x71\\x72\\x73\\x74\\x75\\x76\\x77\\x40\\x5e\\x5c\\x5d\\x78\\x59\\x5a\\x5b\\x70\\x51\\x52\\x53\\x54\\x55\\x56\\x57\\x60\\x41\\x42\\x43\\x44\\x45\\x46\\x47\\x68\\x49\\x4a\\xcb\\x54\\x0e\\xa9\\x7b\\x6f\\x34\\x03\\x00\\x00\\x78\\xd4\\x43\\xe9\\x6e\\xee\\x6a\\xb2\\xb1\\xb2\\x5c\\x73\\xe5\\x2b\\xb7\\xa1\\xc9\\xf6\\xb8\\x0c\\x4e\\xd1\\x85\\x69\\xe9\\xcb\\x5a\\xda\\x84\\x8e\\x23\\x3d\\xad\\x72\\xdb\\x7c\\xdb\\x2e\\x50\\x10\\x78\\xdb\\xad\\xb0\\xeb\\x7e\\xdb\\x29\\xd1\\xf3\\x7d\\xdb\\xab\\xf1\\xfb\\x94\\x89\\xa5\\x95\\x72\\x44\\x8b\\x27\\x57\\x4d\\xbf\\x27\\xc5\\x06\\x99\\x8c\\x24\\x52\\x69\\x47\\xff\\xf1\\xb8\\xfd\\x4e\\xfb\\xbb\\x50\\x23\\x5c\\xd9\\x64\\x4c\\xb5\\xf4\\x77\\x91\\x56\\x94\\x96\\xcb\\x29\\xa7\\xf9\\x3c\\x65\\xa1\\x66\\x84\\x9a\\xcd\\xaa\\xcb\\xf1\\x7c\\x91\\x76\\x8c\\xae\\xcf\\x2b\\x32\\x2e\\x87\\xf1\\x72\\x98\\x92\\xd1\\x90\\x5c\\x2a\\x87\\xc9\\x6a\\xa4\\xa6\\xd3\\x21\\xa3\\x46\\xa3\\xf1\\xca\\x3f\\x55\\xab\\x45\\x9b\\x65\\x2c\\x6c\\xf4\\xef\\x98\\x2d\\x26\\x6b\\xd1\\x3a\\x5e\\x8f\\x44\\x3c\\xce\\xfb\\xcb\\xe1\\x2a\\x66\\x60\\x9d\\x56\\xe7\\x83\\xd5\\x28\\x6d\\xb7\\xcb\\x9f\\xe8\\xd0\\xa8\\xdf\\xd0\\x01\\x00\\x40\\xef\\x69\\xf2\\xff\\x1d\\xc3\\xdd\\x3f\\xad\\x7b\\x02\\x04\\x85\\xff\\xc2\\xa0\\x91\\xff\\x4e\\xb5\\x47\\x27\\x17\\x0b\\xc7\\xa6\\x50\\xcb\\x74\\x87\\xc7\\xa0\\x92\\x4a\\x26\\x57\\x4d\\x77\\xc6\\x63\\x33\\x19\\x4d\\xa6\\x50\\xcf\\xf6\\x86\\x41\\xf8\\x4e\\xa7\\x96\\xff\\x3b\\xcd\\xf1\\xfb\\x0f\\xd5\\x32\\xb5\\x02\\xb5\\x2c\\x4f\\x64\\x7c\\x4e\\x8b\\xc5\\x7c\\xd5\\x0c\\x57\\xa2\\xff\\x07\\xfb\\xc9\\x27\\xcd\\xb7\\x6c\\x8c\\x5f\\x10\\x00\\x80\\xbf\\xcf\\xf9\\xea\\xd4\\xc8\\xff\\xdd\\x16\\xac\\xee\\x26\\xdd\\x04\\xdf\\xef\\xc7\\xed\\xfc\\xde\\x1f\\xa6\\xfc\\x20\\x20\\x61\\xe0\\xb1\\xff\\xdf\\x00\\xb7\\xe7\\xdb\\xdf\\x08\\x28\\xc0\\x2f\\x00\\x40\\x08\\xe7\\x4f\\x49\\xdb\\x57\\xb2\\x2f\\x4c\\xe0\\x8c\\xf1\\x90\\x61\\xd3\\x0a\\x91\\x7c\\xca\\xda\\xde\\xc3\\x0b\\x8c\\x52\\xfc\\x77\\x17\\x73\\xde\\x51\\x91\\x24\\x1d\\xbe\\x6f\\xde\\x34\\xbd\\x93\\x15\\xbe\\x6a\\x6a\\x4a\\x76\\x38\\x8a\\x6e\\x29\\x5b\\x52\\xa9\\x50\\x73\\x88\\xb2\\x28\\xb1\\xab\\x87\\x35\\xb1\\x0e\\x29\\x2e\\x6d\\x64\\xdc\\x5f\\x52\\x1e\\x4f\\x9e\\x4e\\xec\\xb7\\xd3\\xe2\\x28\\x15\\x44\\xe2\\x86\\x1b\\x86\\x23\\xb8\\x4a\\xe3\\x11\\xb0\\x86\\x2e\\x1e\\xaa\\x33\\x47\\xb7\\xcb\\xa2\\xa0\\x6d\\x52\\x73\\xcb\\x41\\x0b\\x16\\xc8\\x40\\xa5\\xe8\\x40\\xa9\\xd3\\x4d\\x47\\xa4\\x7f\\x11\\xde\\x8c\\xf5\\x39\\xe3\\xed\\xa8\\x8d\\x5d\\x1d\\x6e\\x85\\xca\\x56\\x3d\\x06\\xd7\\xe0\\x47\\x6c\\xd9\\x20\\x66\\xeb\\x15\\x6e\\xc4\\xe9\\x47\\x8f\\x5a\\x36\\xa0\\x0e\\x83\\x45\\xda\\x70\\x91\\xb3\\xdd\\xdb\\x79\\xcf\\xe1\\x7a\\xee\\x9e\\x5d\\x12\\xd0\\x5e\\x6b\\x26\\x08\\x1d\\xb3\\x68\\x97\\x51\\x68\\x3b\\x12\\x05\\x7e\\x1e\\xe8\\x8e\\x7a\\x0a\\xad\\x03\\xfb\\x60\\xc8\\x3a\\x70\\x0c\\xeb\\x5d\\x90\\xf7\\x9a\\x7b\\x1a\\x30\\xcf\\x8e\\x87\\xba\\xdb\\x17\\xef\\x2e\\x59\\xd8\\xeb\\x82\\x6d\\x1c\\x88\\x97\\x48\\xe7\\xe3\\xb9\\xa9\\x6e\\x94\\x32\\xe2\\x10\\xeb\\x97\\x2a\\x3c\\x91\\xe0\\x21\\x20\\x89\\x31\\x55\\xdc\\x66\\xb0\\x8a\\x1a\\x6e\\xee\\x91\\x78\\xb8\\xe7\\xfa\\x5b\\x89\\x5c\\x44\\xef\\x49\\xa4\\xe2\\x98\\x21\\x3c\\xad\\x6c\\xb9\\x00\\x6f\\x33\\xab\\x9e\\x67\\x09\\x16\\xbb\\x57\\x11\\xa9\\x57\\x0d\\x41\\x04\\xef\\xf5\\xcd\\xce\\xb9\\x54\\x5a\\x58\\xf0\\x88\\x20\\x6d\\xf9\\x93\\x81\\xac\\xce\\xde\\xd1\\xe1\\xee\\xce\\x2e\\x92\\xc1\\xfa\\x9c\\xf0\\x9e\\xd9\\x84\\xcb\\x15\\x45\\x9e\\xc9\\x96\\x58\\x57\\xe0\\x34\\x8e\\x02\\x93\\x1d\\x91\\x80\\x0f\\x0e\\x87\\x1b\\x95\\xf9\\x20\\x05\\xd4\\x3f\\x04\\xee\\x1b\\x1d\\x9c\\x1c\\x18\\x97\\x78\\xe1\\xfc\\x4f\\x67\\xee\\x0d\\x1b\\x37\\x4d\\x53\\x63\\x65\\x19\\xc8\\xd3\\xd6\\xea\\xe1\\xfe\\x62\\x6e\\xab\\x30\\xc1\\x50\\x49\\x98\\xf9\\x67\\x9d\\xbf\\xd3\\x3b\\x51\\x10\\xf2\\x3f\\x6d\\x7a\\x02\\x38\\x1a\\x92\\x03\\x70\\xef\\x48\\xff\\x98\\x48\\x97\\x9a\\xbe\\xb1\\x81\\x89\\xd1\\x51\\xee\\x4b\\x47\\xad\\xa3\\xbd\\xe3\\xcd\\xf4\\x7a\\x82\\xe6\\xf2\\xc9\\xd7\\x01\\xe2\\xfc\\x55\\x43\\xeb\\x57\\x25\\x19\\x0b\\x6b\\x43\\x6d\\x7d\\x9d\\xd3\\x7f\\x68\\xae\\x6f\\x6f\\xee\\xec\\x90\\x7a\\x8a\\xd1\\x70\\xc9\\xff\\x67\\x84\\x0f\\x8e\\x06\\xe7\\x89\\x5b\\x46\\xd5\\xc5\\x9f\\x05\\x0b\\x64\\x6f\\x86\\x93\\x09\\xbf\\x5c\\x90\\xbc\\x7a\\x87\\xb9\\x28\\xf1\\xe6\\xe4\\x3b\\xaa\\x57\\xaf\\xae\\x17\\xd0\\x8a\\x14\\x54\\x5e\\xfb\\x56\\x28\\x2c\\xe4\\xfe\\x17\\x77\\xe1\\xeb\\x90\\x43\\x7f\\x93\\xd9\\x6a\\xea\\x95\\x1d\\x25\\x7d\\x25\\xfa\\x56\\x0c\\xda\\xaf\\xe9\\x2e\\x0f\\xcb\\x97\\x66\\x38\\xe0\\xd3\\x9d\\x1f\\xf5\\xa5\\x19\\x56\\xe6\\xc8\\x51\\xb8\\x09\\x85\\xf8\\x38\\x5d\\x6d\\x35\\xab\\x31\\x88\\x1b\\xef\\x30\\x2f\\x93\\x0b\\x13\\x74\\x93\\x86\\x4b\\x69\\xf9\\xea\\x64\\x4c\\x5b\\x36\\x67\\x82\\x06\\xcd\\xdd\\x46\\x67\\x73\\x2a\\x96\\xbc\\x23\\x80\\x08\\x2a\\x6d\\xfd\\xf9\\xe1\\xe6\\xf6\\xf5\\xbd\\x85\\x5c\\xe5\\x7e\\xcd\\x4a\\xdb\\x45\\x86\\x0c\\x78\\xb5\\x39\\xf6\\x26\\x7d\\x79\\x30\\x76\\x5d\\xac\\x15\\xa6\\xbc\\xd0\\x24\\x56\\x28\\x58\\xd0\\xd8\\x9c\\x26\\x98\\x81\\x07\\x36\\xc5\\xdc\\x6d\\xfc\\x20\\x34\\x3b\\x09\\xf5\\x26\\xb2\\xd9\\xd8\\x15\\x86\\x3f\\x78\\xd4\\xa1\\x6c\\x28\\xfd\\xb3\\x45\\x7d\\xb3\\x77\\xd9\\x70\\x58\\x95\\x35\\x97\\xc3\\xeb\\xf9\\xcf\\x66\\x60\\xf8\\xb7\\x8f\\xed\\x53\\xc0\\xc3\\x6d\\x0d\\x78\\xd0\\x76\\x9c\\xe0\\x50\\x25\\x19\\xfb\\x07\\xc3\\x30\\xfb\\x61\\x96\\x88\\x3e\\xa4\\x2c\\x04\\x49\\x2a\\x84\\xd3\\x36\\x5f\\x2d\\x20\\xda\\xdf\\x68\\x1b\\x9a\\x07\\x06\\xec\\x0f\\x68\\x05\\x30\\x05\\xd0\\x6f\\xe3\\x7f\\x0b\\x20\\xe9\\x55\\xd8\\xc6\\xb9\\x26\\x78\\x36\\x9a\\xe6\\xbe\\xf9\\xad\\x69\\x5e\\x16\\x9f\\x7a\\x92\\x0c\\xce\\xc6\\xe6\\x2d\\xe6\\x10\\xb7\\xde\\x2a\\x36\\x81\\x95\\x4a\\xf9\\xf6\\xe6\\xf8\\x12\\xe6\\x53\\xac\\x8c\\x26\\xd7\\x55\\xeb\\x40\\x41\\x1f\\x4c\\x2b\\xdb\\xe6\\x92\\x04\\x2f\\x47\\x39\\xeb\\x8b\\xee\\x4f\\xd4\\x34\\xfd\\x17\\x8f\\xaa\\xf7\\x1f\\x6f\\x7e\\xa4\\x79\\xb3\\x81\\x88\\x0c\\x4b\\x1e\\x77\\xdf\\x5f\\x8c\\x7c\\x86\\xc9\\xbb\\x1e\\x72\\x2b\\x33\\xc7\\x06\\x0e\\xcf\\x35\\x6e\\xf2\\x14\\x72\\x9f\\x44\\xc8\\x21\\xd7\\x87\\x2b\\x71\\x85\\x34\\x59\\x0c\\xbc\\xef\\x6c\\x9e\\x3a\\xa3\\xbc\\x70\\x52\\xde\\xda\\xf7\\xcf\\xa2\\x4e\\x2f\\xc2\\x94\\x83\\xe3\\xa2\\xc6\\xe3\\x3c\\x73\\x5c\\x93\\x85\\xf3\\x09\\x93\\xa2\\x82\\x72\\x43\\xf1\\x72\\x6d\\xe2\\x90\\x91\\xc7\\x99\\x7b\\xc8\\x91\\x6a\\xcb\\xee\\x16\\xd9\\xc3\\xaf\\x2b\\xb1\\x24\\xc6\\x33\\x92\\xf3\\x22\\x47\\xc2\\x53\\x3c\\xf9\\xd3\\xc7\\x11\\x4d\\xed\\x92\\x6d\\xcb\\xeb\\xc7\\x4a\\x66\\xc4\\x66\\x56\\x54\\x5f\\x72\\xb7\\xea\\x6a\\xa2\\x7d\\x3f\\x9e\\x64\\x25\\x8b\\xe9\\x90\\x3a\\xcb\\xd8\\x55\\x77\\x22\\xf2\\xeb\\x94\\xe1\\xcd\\xff\\x9c\\x49\\xe4\\x11\\x13\\xd9\\xa5\\x44\\x44\\x2f\\x87\\x57\\x87\\xd6\\x78\\x57\\x03\\x88\\xa6\\x4a\\x1d\\xa1\\x39\\x3c\\x4f\\x94\\xdb\\x5c\\x8f\\x10\\x6a\\xf9\\xea\\x5a\\x72\\x09\\x34\\x57\\x34\\x88\\x51\\xf8\\x77\\xf3\\x6e\\x85\\xcc\\x4d\\xb8\\x61\\xab\\x15\\xb8\\x0c\\xa7\\x6f\\x0c\\x28\\xb8\\x8e\\x9f\\xb9\\x2d\\x02\\x64\\xe6\\xc2\\xdd\\xf2\\xcf\\x12\\x0e\\x70\\x9d\\xbd\\xcd\\x23\\x91\\xdb\\x9d\\x0e\\x87\\x1d\\xb7\\x62\\x66\\xfc\\x79\\xce\\x27\\x57\\x92\\xce\\x19\\x57\\x72\\xdf\\xb2\\x2c\\x34\\x34\\x57\\x34\\x53\\x71\\x06\\xe2\\x60\\x2f\\xff\\xf2\\xa7\\xe4\\x36\\xf8\\x1f\\x29\\x8b\\x54\\xc5\\xc7\\x60\\x9c\\x33\\xb8\\x5e\\xba\\xc5\\xa4\\xbe\\x7e\\x55\\xae\\xf3\\x1d\\xa2\\x6c\\xd4\\x05\\x38\\x19\\x9e\\xee\\x50\\xc2\\x76\\x61\\x76\\x33\\x97\\x5d\\x88\\x90\\x63\\x04\\x0e\\x85\\xb3\\xad\\x48\\xce\\x0f\\x00\\x07\\x5e\\x90\\xc1\\x39\\x37\\x77\\x04\\xbe\\x9f\\x48\\x47\\xdc\\x92\\xfb\\xe2\\xd6\\x73\\x7f\\x5c\\x2a\\x2e\\x7e\\xb8\\x42\\x21\\x70\\xc1\\x64\\x01\\xfa\\x8a\\x61\\x3f\\xf4\\x55\\xcb\\xdd\\xa8\\xe9\\x97\\xc2\\x69\\x23\\x7c\\xc7\\x24\\xc0\\x54\\xd6\\x66\\xb5\\x3e\\xa3\\x36\\x66\\xeb\\x8f\\x54\\xd6\\x66\\xbd\\xdf\\xe5\\x0f\\x60\\x37\\xe8\\x93\\xeb\\xbc\\x6b\\x0a\\x0b\\x76\\xd4\\x77\\xb9\\xf3\\x25\\xf8\\x45\\xcb\\x04\\x63\\x3c\\x45\\xd7\\xb9\\x90\\x86\\xc0\\x9c\\x0c\\xdf\\x85\\xc2\\x56\\x93\\x4b\\x6d\\x24\\x77\\x92\\x73\\x31\\xc9\\xd7\\x67\\x73\\xf1\\x4e\\xe9\\x67\\x19\\x1e\\x1a\\x48\\x16\\x7f\\x31\\xbf\\x8c\\x20\\x9f\\x10\\xd1\\xf6\\x5d\\x2a\\x60\\x0f\\x41\\x25\\xf8\\xb1\\xbf\\x8c\\x8e\\x81\\x49\\x28\\x77\\x56\\x72\\xef\\x86\\x37\\x83\\xcd\\xbc\\x70\\xf8\\x49\\xdc\\x54\\x41\\x92\\xaa\\xb1\\x34\\xe4\\x7a\\xc2\\xf2\\x69\\x91\\x5e\\x31\\xd8\\x67\\x38\\xf4\\xce\\x3a\\x1b\\x80\\xc8\\xf9\\x87\\x09\\x9a\\xef\\xa3\\xaf\\xd0\\xfb\\x4b\\xd9\\x2e\\xa1\\xd8\\x2e\\x7f\\x6b\\x9f\\x67\\x2b\\x7c\\x6d\\xd3\\xc8\\xd2\\xc3\\xd0\\xf5\\xf0\\x66\\xca\\x4f\\x14\\xf2\\x9f\\xc5\\xa9\\xc3\\xfd\\x51\\x72\\xf0\\xee\\xd2\\x58\\xfd\\xa6\\x96\\x65\\x7a\\x4c\\x73\\x3b\\xf4\\x8f\\xb0\\xcf\\xd7\\x0d\\xbf\\xd6\\xf3\\x7d\\x2f\\x27\\x5e\\xd7\\x91\\x53\\xa3\\xfd\\x4f\\xbe\\x3d\\x42\\x21\\x6b\\xe4\\x0a\\xeb\\xe8\\x8d\\x38\\x07\\xc9\\x4a\\xb4\\x5e\\x49\\x68\\x08\\x3e\\xad\\x5d\\x5e\\x28\\xd9\\x0d\\x42\\xe2\\xd3\\x63\\x97\\x56\\x19\\x1a\\xf4\\x37\\x36\\x7c\\xfe\\xcb\\x9a\\xd7\\xb0\\x30\\xa3\\x74\\x3d\\x2d\\x56\\xbb\\x7c\\x59\\x8f\\xb6\\xbb\\xe8\\xac\\xaf\\x4a\\xe2\\x72\\xec\\x38\\x2e\\xad\\xe5\\xdb\\x9a\\x9a\\xc8\\xf4\\x90\\x91\\x5b\\x40\\xda\\xbc\\x8e\\xfe\\xd7\\xb0\\xf5\\x34\\x95\\x1f\\xbc\\xcb\\xc0\\xa9\\xa8\\xa5\\x2f\\x5d\\xe6\\xd6\\xaf\\xc0\\x21\\x5f\\x11\\xef\\xa2\\xa0\\x71\\x60\\x83\\xd9\\x3e\\xcd\\x54\\xe7\\x79\\x7b\\x55\\x1e\\x55\\x55\\xa5\\x4d\\xd9\\x45\\x71\\x8e\\x64\\x17\\xdb\\x38\\xc6\\x86\\x6f\\xdf\\x02\\x75\\xf6\\xa8\\xbd\\x09\\x73\\xb2\\x4e\\x35\\x37\\xa6\\x4d\\x52\\x55\\x9f\\xae\\x53\\x27\\xad\\x77\\x11\\xbc\\xdc\\x53\\xae\\x93\\x43\\xef\\x75\\x3e\\xf9\\x20\\x28\\x5d\\x93\\x36\\x1b\\x6b\\x92\\xa1\\x85\\xcf\\xa8\\xd1\\xc2\\x57\\x9c\\x41\\xf6\\x57\\x8b\\xbd\\xc0\\xa8\\x12\\xbb\\x46\\x13\\x6a\\x00\\x74\\xf5\\xc1\\xfd\\xe9\\xf6\\x11\\x25\\x01\\x27\\x42\\x66\\xf3\\x95\\xcf\\x79\\x66\\x3e\\x3c\\xe7\\xd7\\x96\\x2a\\x68\\xe3\\x29\\xf0\\x49\\xcf\\x0a\\xb5\\x50\\xc6\\xb2\\xa6\\x5b\\x48\\x59\\x76\\x2f\\x43\\x04\\x07\\x4b\\xb6\\xb6\\x0e\\xff\\xff\\x01\\xab\\x02\\x54\\xfd\\xd6\\xf1\\x12\\x9b\\xde\\x48\\xb5\\xbd\\xf6\\x5f\\x50\\xd3\\x58\\x68\\x1c\\xc6\\x85\\x70\\xc9\\x42\\xe3\\x8f\\x1a\\x1c\\x28\\x0b\\x0d\\xad\\xbc\\x79\\x2c\\xb6\\x5b\\xf1\\xe2\\xb4\\x7c\\x71\\x56\\xba\\x64\\xe3\\xe0\\x72\\x95\\x1e\\x5c\\x8b\\xd2\\x25\\x33\\x07\\x93\\x95\\xec\\x2d\\x98\\xea\\x57\\xb4\\x50\\x8d\\x3b\\xc2\\xc6\\x11\\xf3\\x38\\xe2\\x2a\\x0e\\x99\\x92\\xf4\\xbe\\xc4\\x7a\\xdd\\xcb\\x3b\\xed\\x84\\x9b\\xc2\\x3c\\xfe\\x10\\x3a\\x9c\\xbc\\xd8\\x94\\x07\\x91\\xb2\\x2c\\xb9\\xe5\\xbd\\xe3\\xbd\\x94\\xa7\\xa5\\xe4\\x69\\x49\\x77\\x69\\xa1\\x7f\\x8c\\x86\\xc4\\x31\\xf1\\x13\\xf1\\x33\\xf1\\x0b\\xf1\\x2b\\x38\\xf4\\x68\\x3c\\x21\\xfa\\x34\\x3f\\x20\\x8e\\x88\\x63\\xe2\\x27\\xe2\\x37\\xe2\\x84\\x38\\x25\\xfa\\xc4\\x19\\x38\\x1a\\x10\\x87\\xc4\\x11\\xf1\\x23\\x91\\xf4\\x8d\\x07\\xc4\\x6a\\xfc\\x8d\\xe8\\x83\\x1f\\x07\\xc4\\x21\\x71\\x4c\\xa4\\xfd\\x9f\\x86\\xc4\\x31\\xb1\\x9a\\xff\\x4c\\xfc\\x42\\xfc\\x4a\\x9c\\x10\\x7d\\xe7\\xa7\\x69\\xf8\\xce\\x03\\xf0\\x13\\x1f\\xcb\\x0f\\x06\\xed\\x9f\\x55\\x09\\xda\\x0f\\x95\\xe4\\xfc\\xc6\\xc6\\x27\\x60\\x2d\\x37\\x7a\\x7f\\x1e\\x47\\xaa\\x5e\\xed\\xf8\\x31\\x4a\\xc4\\x5a\\x7d\\x4d\\xff\\xbf\\x05\\xbb\\xb6\\x16\\x2c\\x86\\xa1\\x00\\x98\\x6d\\x3d\\x86\\x47\\x0e\\x8d\\x95\\x6c\\xff\\x2d\\x2c\\x7c\\x4d\\x34\\xe7\\xa6\\x46\\x49\\x51\\x88\\x9c\\xf4\\x63\\x19\\xf3\\xbf\\x79\\xd7\\xcd\\x13\\xa6\\xc4\\xfc\\xe3\\xb9\\x96\\x5d\\x48\\x94\\xef\\x44\\xf9\\x4d\\xcc\\x7c\\xf8\\x86\\xed\\x63\\x0b\\x7b\\xe7\\xe0\\xe6\\x09\\x67\\x62\\x66\\xe1\\x09\\x57\\x62\\x66\\x61\\xe5\\xc5\\x9b\\x0f\\x5f\\x76\\x36\\x0e\\x4e\\x2e\\x6e\\x9e\\x70\\x17\\x56\\x5e\\xbc\\xf9\\xf0\\xe5\\xc7\\xc6\\xce\\xc1\\xc9\\xc5\\xcd\\x13\\x9e\\xc4\\xcc\\xc2\\xca\\x8b\\x37\\x3f\\x36\\x4e\\x9a\\xdb\\xa4\\x1c\\xe6\\xc2\\x1a\\xfb\\xdd\\x13\\x33\\x0b\\x2b\\x2f\\xde\\x7c\\xf8\\xf2\\x63\\x63\\xe7\\xe0\\xe4\\xe2\\xe6\\x09\\x47\\x62\\x66\\x61\\xe5\\xc5\\x9b\\x0f\\x5f\\x7e\\x6c\\xec\\x1c\\x9c\\x5c\\xdc\\x3c\\xe1\\x4c\\xcc\\x2c\\xac\\xbc\\x78\\xf3\\xe1\\xcb\\x8f\\x8d\\x9d\\x83\\x93\\x8b\\x9b\\x27\\x5c\\x89\\x99\\x85\\x95\\x17\\x6f\\x3e\\x7c\\xf9\\xb1\\xb1\\x73\\x70\\x72\\x71\\xf3\\x84\\x3b\\x31\\xb3\\xb0\\xf2\\xe2\\xcd\\x87\\x2f\\x3f\\x36\\x76\\x0e\\x4e\\x2e\\x6e\\x9e\\xf0\\x24\\x66\\x5e\\xbc\\xf9\\xf0\\xe5\\xc7\\xf6\\xeb\\xf7\\x4f\\xab\\x11\\xa3\\xbf\\xee\\x5a\\xb5\\x4e\\xb9\\x17\\x56\\x4e\\xae\\x70\\x14\\x56\\x3e\\x7c\\xc3\\x39\\x38\\xc3\\xf3\\xf0\\x0d\\xdb\\x43\\x79\\x6c\\x1e\\x8e\\xf0\\x5b\\x9c\\xe1\\x53\\xc2\\xc6\\x56\\xb9\\x79\\xc2\\xaf\\x73\\x84\\xb3\\xb1\\x73\\x71\\xf3\\xe6\\x13\\x8e\\xc4\\x1c\\x9e\\xcd\\xe3\\x19\\x30\\xae\\xf5\\x99\\xa6\\x54\\xd8\\xfe\\x02\\x4e\\xba\\xdd\\xc4\\x00\\x78\\x01\\x63\\xf0\\xde\\xc1\\x70\\x22\\x28\\x62\\x23\\x23\\x63\\x5f\\xe4\\x06\\xc6\\x9d\\x1c\\x0c\\x1c\\x0c\\xc9\\x05\\x1b\\x19\\xd8\\x9c\\xb6\\x32\\xb8\\x1b\\xcb\\xb3\\x30\\x68\\x81\\xd8\\x0e\\x5c\\xbe\\x8c\\x56\\x1c\\x6a\\x1c\\x22\\xec\\x2c\\x1c\\x50\\x01\\x3f\\x06\\x17\\x36\\x03\\x36\\x59\\x56\\xb0\\x00\\x97\\xd3\\x5e\\xe1\\x06\\xbe\\x03\\x9c\\x07\\x58\\x1d\\x18\\x58\\x18\\x38\\x81\\x22\\x7c\\x4e\\x7b\\x19\\x18\\x18\\x1c\\x80\\x10\\x2a\\xc2\\xcc\\xe0\\xb2\\x51\\x85\\xb1\\x23\\x30\\x62\\x83\\x43\\x47\\xc4\\x46\\xe6\\x14\\x97\\x8d\\x6a\\x20\\xde\\x2e\\x8e\\x06\\x06\\x46\\x16\\x87\\x8e\\xe4\\x90\\x08\\x90\\x92\\x48\\x20\\x00\\x99\\x6d\\xc3\\xa1\\xc1\\x21\\xc6\\xce\\xc2\\xa3\\xb5\\x83\\xf1\\x7f\\xeb\\x06\\x96\\xde\\x8d\\x4c\\x40\\xed\\xac\\x29\\x2e\\x00\\x85\\xad\\x29\\x86\\x00\\x00\\x00\\x01\\x00\\x00\\xff\\xff\\x6e\\x4c\\x2a\\x3c\\x5c\\x04\\x01\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.woff\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff2 = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x00\\x15\\x40\\xea\\xbf\\x77\\x4f\\x46\\x32\\x00\\x01\\x00\\x00\\x00\\x00\\xcf\\x84\\x00\\x10\\x00\\x00\\x00\\x01\\xd0\\xc0\\x00\\x00\\xcf\\x23\\x00\\x02\\x00\\x41\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x40\\x1c\\x84\\x48\\x06\\x60\\x00\\x90\\x6a\\x08\\x81\\x1c\\x09\\x97\\x17\\x11\\x08\\x0a\\x85\\xee\\x70\\x85\\xb0\\x32\\x01\\x36\\x02\\x24\\x03\\xa0\\x22\\x0b\\x90\\x24\\x00\\x04\\x20\\x05\\x86\\x6c\\x07\\xc7\\x51\\x0c\\x81\\x2e\\x5b\\x45\\xa8\\x91\\x05\\xd5\\x8e\\x66\\xb6\\x8e\\x2a\\x04\\xdf\\xeb\\x36\\x04\\xa8\\x0c\\x5d\\xba\\x6a\\xff\\xb9\\xcb\\x01\\xdc\\xf9\\xb4\\x80\\xdb\\x16\\x60\\x14\\xe5\\xec\\xc7\\x37\\x57\\xb0\\x9b\\xe0\\xf5\\x66\\x45\\x6a\\x59\\x98\\x3b\\x3e\\xfb\\xff\\xff\\xff\\xff\\xff\\x25\\xc9\\x44\\xc6\\xec\\x12\\xca\\x25\\xa1\\x05\\x00\\x00\\xd8\\x94\\xa9\\x9b\\xea\\x3f\\x68\\x4e\\x11\\x01\\x73\\xca\\x06\\xd9\\xe9\\xf0\\x40\\x69\\xa3\\xeb\\x73\\xe6\\x90\\x3b\\x94\\xdc\\x64\\x8f\\xae\\x0d\\xb4\\x79\\x2c\\xa2\\xc3\\x34\\xbb\\x74\\x62\\x51\\xd7\\x4d\\x4e\\x69\\x5c\\x75\\xd6\\xa3\\xa4\\x65\\xb2\\x3d\\x57\\x5d\\x8f\\xed\\x2b\\x47\\xf9\\x46\\x9b\\x6d\\xf3\\x68\\x1b\\x27\\xba\\x85\\x81\\x58\\x17\\x94\\xc6\\x8b\\x71\\x16\\x6d\\xeb\\xbb\\x95\\x0c\\x8a\\x26\\x2b\\x19\\x3c\\x28\\xd9\\x19\\x2c\\x0c\\x34\\x49\\x43\\x8e\\x70\\x86\\x09\\x67\\x85\\x08\\x0b\\x2a\\x0c\\xce\\xf2\\x12\\x2e\\x66\\x11\\xd7\\x40\\x2f\\x4f\\x3d\\xaa\\xff\\xe8\\xa6\\x1f\\xea\\xf7\\x2d\\xa3\\x10\\x1d\\xae\\x4d\\x6f\\x77\\xd9\\xeb\\x0f\\x95\\x75\\x28\\xda\\xb5\\xd9\\xfa\\x65\\xb7\\x0e\\xad\\xfe\\x5b\\x99\\x7a\\x6f\\x2a\\x4f\\xf5\\x6c\\xa6\\x8b\\x72\\xb8\\x7a\\xd4\\xf1\\x32\\x55\\xd9\\x84\\x27\\xbc\\xa5\\xeb\\x4f\\x6d\\xba\\x8f\\xca\\x82\\xa8\\xcf\\xa1\\xfe\\x3d\\x4e\\xcc\\x2e\\x1c\\x4f\\xf0\\x26\\x1a\\xf9\\x92\\x94\\x4e\\x71\\x9b\\xdb\\xf7\\xac\\x3f\\xc5\\x55\\xfb\\x24\\xe1\\x56\\xdb\\xf1\\x9d\\xf4\\x43\\x61\\xf2\\x25\\xdf\\x26\\xda\\x34\\xf7\\x7e\\xf8\\x52\\x0c\\x06\\x93\\x6e\\x87\\x51\\x12\\xb3\\x1a\\x3e\\x26\\x7c\\xc9\\x28\\x13\\x5d\\x52\\xb8\\x18\\x90\\x8d\\xd4\\x3c\\x3f\\x70\\xc8\\x08\\x96\\x82\\xc0\\x8a\\x45\\x75\\x84\\xf2\\x11\\xd4\\x06\\x84\\xd6\\xff\\xfb\\x3c\\xe5\\x43\\xff\\x53\\xdf\\x4c\\x3f\\x34\\xe8\\x99\\x71\\xac\\xeb\\xb9\\xec\\x78\\xe1\\x5d\\x9b\\x31\\xc1\\xbe\\x6d\\x45\\xf9\\xd4\\x9a\\x53\\x1a\\xab\\xcf\\x3c\\xe8\\x2f\\x6a\\xff\\xeb\\x48\\xd5\\xd4\\x5f\\xd6\\x65\\x8d\\xb1\\x6b\\x40\\xa8\\x26\\x43\\x7a\\xed\\x91\\x27\\xc4\\xff\\xe7\\xfd\\xf7\\x55\\x3b\\xe7\\x25\\x0d\\x31\\xf7\\x03\\xf0\\x48\\x6e\\xaf\\xfe\\x53\\x62\\x4a\\x22\\xfb\\xcc\\x46\\xdb\\x9d\\x79\\x71\\x47\\x54\\x2a\\x97\\x6a\\xaa\\x6d\\x86\\x70\\x25\\xda\\x12\\x6a\\xf2\\x23\\x97\\x3b\\x44\\xac\\x28\\x09\\xed\\x77\\xd8\\xcf\\xf3\\x73\\xfb\\xf3\\xc6\\x18\\x51\\x03\\x29\\x83\\xc8\\x91\\x39\\x30\\x18\\xf5\\x89\\x32\\xfa\\x07\\x8e\\x0e\\x8b\\x88\\x32\\x50\\x62\\x58\\x94\\x38\\x93\\x68\\x41\\x04\\xf5\\x82\\x36\\x7c\\x98\\x49\\x95\\xb8\\x11\\x39\\x3c\\x3f\\xb7\\xde\\x10\\x90\\x94\\x4a\\x81\\x31\\x18\\x12\\x25\\x8a\\xb4\\x8c\\x6d\\xc4\\x36\\xd6\\xfd\\xd7\\x45\\x49\\x1b\\xa4\\x60\\x00\\x36\\x56\\x60\\x14\\xe6\\x59\\x57\\x7a\\x67\\x17\\xc6\\xb5\\x17\\xe9\\xdd\\xfd\\xa4\\xd3\\xfa\\x19\\x81\\x6d\\xbd\\x37\\x23\\xd9\\x8b\\x87\\xd0\\xfe\\x5f\\x41\\xd1\\xfc\\x0a\\x68\\x46\\xb2\\xe5\\x38\\x4e\\x62\\xa0\\xdb\\xcb\\xb2\\x25\\xbd\\x46\\x6a\\xa5\\xf6\\x30\\x0b\\x74\\x48\\xd9\\x1c\\x10\\x58\\x16\\xcf\\x47\\x6b\\xe5\\xfb\\xd5\\x3d\\xbb\\x21\\x74\\x2c\\x2c\\xca\\x9c\\x70\\x61\\x16\\x42\\xb1\\x8a\\x8b\\xb0\\x51\\x0a\\x78\\xae\\x86\\xa7\\x4d\\xfd\\x77\\xb1\\x46\\x14\\x0b\\xa2\\x7a\\x10\\xe0\\x70\\x0d\\x10\\x08\\x41\\xa3\\xde\\xce\\x6a\\x36\\xd1\\x76\\xd2\\xce\\x3c\\x13\\xf3\\x74\\x9d\\x49\\x3b\\xb1\\x2f\\x3a\\xd1\\x5a\\x35\\xdd\\xa5\\x28\\x9a\\x23\\xfa\\x27\\xc7\\x3d\\xe5\\x57\\x28\\x24\\x3b\\xf1\\xd4\\x92\\x3a\\x1e\\xb4\\x02\\x69\\xf8\\xff\\x75\\xbe\\xde\\xfb\\x4c\\x92\\x0c\\x2c\\x03\\xe9\\x5b\\xb6\\x64\\xe6\\xff\\x3e\\x11\\x07\\x79\\x2b\\xe0\\x9a\\x2e\\x83\\x53\\xe2\\x61\\xeb\\xb2\\x26\\xe9\\xdc\\xd3\\x29\\xdf\\xc7\\x6c\\x55\\x70\\x21\\x04\\xc9\\xc9\\x78\\xaf\\xa8\\x8d\\x9c\\x78\\x41\\xbd\\xa8\\x93\\x45\\xff\\x41\\xa4\\x32\\xb6\\x3a\\xa2\\x45\\xb1\\x02\\x09\\x2d\\x72\\xb3\\xf7\\x93\\xe4\\xab\\x35\\xc6\\x08\\x50\\x08\\x54\\x35\\x94\\xae\\xff\\x7d\\xa9\\x7e\\x9e\\x73\\x6e\\x78\\xdd\\x48\\xca\\x00\\x14\\x08\\x2a\\x26\\x4e\\x88\\x0c\\x3f\\x90\\x05\\xaa\\x27\\x68\\xc6\\xb6\\x4a\\x05\\xe3\\x4f\\xd1\\xad\\xfe\\x69\\xa5\\xea\\x02\\x97\\x5e\\x6c\\x66\\xe5\\xf2\\x6a\\x09\\x67\\x3a\\x0d\\xf0\\x73\\xeb\\xdf\\x28\\xd1\\x46\\xee\\x4c\\xa4\\x16\\xc5\\x2a\\x8b\\x0d\\x58\\x31\\x36\\x56\\xc0\\xc6\\x48\\xc9\\x14\\x89\\x52\\xc4\\x42\\xb1\\x2f\\x43\\x7f\\x7b\\xf7\\xbf\\x5e\\xfe\\xf2\\xc7\\xdd\\xff\\xf7\\x3b\\x07\\x4e\\x57\\x3c\\x0b\\x40\\xb3\\x38\\xf4\\x27\\xb6\\xf7\\x5f\\xe7\\xfa\\xf1\\xf7\\xa3\\x3f\\x35\\x77\\x5e\\x6d\\x98\\x67\\x13\\x2e\\xc8\\x02\\x2e\\x90\\xc5\\x2f\\xaa\\xa0\\x02\\xce\\xbc\\x1d\\xc9\\x07\\xce\\x01\\x2b\\x62\\xb1\\xa2\\x8d\\x80\\xc3\\x35\\xcd\\xd9\\x7c\\xcb\\x03\\x00\\x3d\\xa5\\xd9\\xd5\\xb8\\xbd\\x52\\x0c\\x25\\x02\\x3d\\x3d\\x9e\\xa7\\xbf\\x17\\xbb\\xff\\xe7\\xa4\\x59\\x84\\xc2\\x55\\x03\\xd6\\x38\\x42\\xc1\\x4e\\x01\\xc9\\x78\\x38\\x54\\x96\\x17\\x2b\\x57\\x2e\\xdd\\x1b\\xee\\xe6\\x3e\\x42\\xdb\\xcc\\xa5\\xaf\\xa4\\x1f\\x62\\x85\\x00\\x80\\xff\\x7f\\xd5\\x5a\\x2a\\x4a\\xc8\\x6e\\x9e\\xf8\\x84\\xf4\\xdd\\x91\\x4d\\xd2\\x24\\xc8\\xbb\\x59\\x22\\xca\\x33\\xbb\\x5b\\xd4\\x5b\\xd4\\xee\\x0a\\xce\\x95\\xc9\\x03\\xe7\\x44\\x9f\\xcd\\x31\\xab\\x1e\\x9b\\x4d\\xa9\\x9d\\x89\\xe8\\xb2\\x89\\x1d\\x21\\x1c\\x62\\x0c\\x3d\\x8d\\x94\\xba\\xb5\\x7f\\xf7\\xda\\xeb\\x0a\\x40\\x20\\x07\\x02\\x00\\xf4\\x63\\xaf\\x2b\\x16\\x21\\x97\\x34\\xa0\\x7f\\x71\\x96\\x43\\x68\\x54\\xe7\\x98\\xc9\\x4b\\x07\\x3c\\xff\\x39\\xfd\\xbc\\x6f\\x98\\x00\\x28\\xa2\\x00\\x92\\x90\\x32\\x48\\xe2\\xe7\\xc8\\x86\\x88\\x53\\x69\\x8e\\x3b\\x77\\xbb\\xeb\\xd6\\x6d\\x9f\\x62\\x20\\x07\\x02\\x08\\x1e\\x8d\\x61\\x49\\xac\\x2d\\x15\\x44\\x23\\x07\\x5c\\xe9\\x93\\xb8\\xfd\\xff\\xbf\\x9c\\xff\\xff\\x10\\xaf\\xb3\\x03\\x44\\xaa\\x21\\x40\\x02\\x49\\x45\\xaf\\x28\\x4f\\xb4\\xa3\\x37\\x1a\\xff\\xf1\\xe8\\xac\\xfe\\xf6\\x10\\xd8\\xee\\x06\\xc5\\xf9\\x30\\xdb\\x1e\\x65\\x56\\xf0\\x84\\xfb\\xfd\\xe7\\x9c\\xa1\\xe4\\xdd\\x07\\xf4\\x99\\xb3\\xbb\\x65\\x74\\x89\\x50\\x55\\xa8\\xab\\x44\\x0f\\xdd\\x6c\\xd2\\x6d\\x13\\x5d\\x53\\xb8\\x87\\x2b\\x34\\x29\\x72\\xb5\\x2d\\x78\\xb0\\x60\\x79\\xf1\\x81\\xed\\xf6\\x8e\\xc4\\x36\\xb5\\x9a\\x59\\xd2\\xda\\xb0\\xf1\\xbf\\xa9\\x73\\x51\\x86\\xdc\\xfe\\xf4\\x32\\xd6\\x19\\xfd\\x01\\xf2\\x08\\xb8\\x00\\x0f\\xfc\\xe5\\xf8\\xd5\\xc6\\x36\\x47\\x56\\x8a\\x73\\xe9\\x58\\xba\\x97\\x4a\\x60\\xff\\xac\\x41\\x73\\x82\\x5d\\x2c\\x05\\xa0\\xcd\\xbf\\xa9\\x5a\\xed\\x0c\\x48\\x30\\x38\\xa5\\x67\\x5d\\xb4\\xdf\\x9e\\x2e\\x44\\xed\\xa5\\x9a\\x22\\x29\\x5d\\x8a\\x45\\x97\\x8b\\x12\\x3f\\x0e\\x27\\xfc\\x19\\x21\\x52\\x48\\xa4\\x00\\x90\\xb4\\x49\\x50\\x01\\x41\\xa4\\x40\\x2a\\xfc\\x19\\x0c\\xa8\\xc1\\x00\\xd4\\x82\\xc1\\xfb\\x28\\xda\\xf7\\x9e\\x64\\xfb\\xee\\x39\\xbd\\x5d\\x7a\\x53\\x14\\x21\\x2a\\xc4\\xb5\\x24\\x7b\\x43\\xca\\xd5\\x45\\x87\\x0b\\x21\\x56\\x7d\\x0a\\x6d\\xb9\\x75\\x79\\x45\\x51\\x9e\\x55\\x37\\xdd\\xbb\\xa0\\x99\\xec\\xc0\\xb0\\x5b\\xda\\x5f\\x68\\x4a\\xa4\\x09\\x93\\xdc\\x93\\x04\\xf3\\xbf\\xa6\\x29\\x3d\\xdd\\xfe\\x37\\xa3\\xf3\\xdd\\xa6\\x29\\x9d\\x75\\x5e\\x87\\x07\\xb0\\x10\\x1a\\xc0\\xb4\\xab\\x7f\\xb6\\xbf\\xa5\\x75\\xd7\\xc4\\x3a\\x45\\x29\\x5d\\x69\\xdd\\xee\\xd0\\xc1\\x41\\x61\\xcc\\x72\\x4a\\xad\\x08\\xe5\\xff\\x5f\\xeb\\xd5\\xbe\\xf0\\x04\\x51\\x21\\x08\\x1d\\xa3\\xc2\\x46\\x45\\xdd\\x17\\xdc\\xfd\\xa1\\x99\\xe0\\xee\\x0f\\xed\\x86\\x70\\x67\\xc3\\x28\\xb1\\xa8\\x98\\x65\\xcf\\x79\\x2f\\xf8\\xc2\\xef\\xed\\xff\\xa7\\x67\\xa6\\xf8\\xa6\\x38\\x53\\x7c\\x53\\x9c\\x69\\x5c\\x01\\x50\\x01\\xc9\\xda\\xd6\\xab\\xd9\\xaf\\x36\\xba\\xd6\\xc4\\x56\\xd6\\xd5\\xc8\\x1e\\x5f\\x55\\xd5\\x2b\\x35\\xd7\\xf2\\xac\\x44\\xc8\\x72\\x3a\\xbe\\x73\\x44\\x90\\x2b\\xfa\\x2f\\xbf\\xfc\\x92\\xaa\\xbc\\x3b\\x2d\\xf1\\xb4\\x0e\\x67\\x5b\\x37\\x66\\xfd\\x2c\\x29\\x6b\\x98\\x14\\xdf\\x4f\\xd2\\x50\\xdd\\x50\\x79\\x68\\x4a\\x8a\\x2a\\x42\\xfc\\xb7\\x6c\\x59\\x8a\\x3c\\x1a\\xa1\\x46\\x22\\xc7\\xbb\\x9d\\x4f\\x6c\\xf6\\x17\\xb9\\x89\\x0a\\xbf\\xed\\x08\\xd1\\xa3\\x30\\xfa\\xe4\\xc9\\xb3\\x21\\x3e\\x7f\\xea\\x88\\xff\\xdc\\xfb\\x1b\\x4f\\x96\\x1e\\x89\\x50\\xfe\\xb5\\x13\\x6a\\xdc\\xbf\\x94\\xe6\\x10\\x4a\\xe0\\xfb\\x0e\\x9b\\xe5\\x91\\xd4\\x48\\x94\\x4f\\x6b\\xdd\\x75\\xb0\\x56\\xdb\\xbb\\x2d\\xdc\\x49\\x1c\\xdb\\xe5\\x50\\xbf\\x61\\x4a\\x81\\x45\\x0b\\x9c\\x88\\xa2\\x60\\xf7\\xfc\\x45\\xe0\\xd7\\x48\\xfb\\x47\\x6c\\x8b\\x98\\xa5\\xde\\x03\\x4f\\x3c\\xb4\\x01\\xc1\\x25\\x85\\x25\\x44\\xaa\\xcc\\x8f\\x26\\xc2\\x39\\xe4\\x70\\x58\\xfe\\x41\\xa2\\x43\\xbb\\x35\\xe9\\xfc\\x98\\xeb\\x1f\\xa5\\x0d\\xeb\\xc6\\x4a\\xaf\\x3a\\x2b\\x13\\x95\\xa5\\x4c\\x05\\x95\\xf3\\xcf\\xe1\\xbb\\x7d\\xf5\\x5f\\x9f\\xf8\\xb6\\x59\\x7a\\xb6\\xe6\\xe2\\x3c\\x0a\\x69\\x42\\x21\\x22\\x12\\x24\\x48\\x90\\x20\\x52\\x14\\xf3\\xbb\\x1e\\xa6\\x6a\\x2d\\x55\\x9d\\x44\\xbe\\xf8\\x4a\\xb5\\x36\\xb1\\x44\\xb0\\x15\\x50\\x2c\\x00\\xd1\\x66\\x50\\x44\\xfb\\x79\\x06\\xe1\\xe9\\x7e\\x60\\x32\\xa8\\x52\\xe2\\x52\\x51\\xfb\\xb8\\xdb\\xcc\\x13\\xfe\\x8e\\xfd\\xed\\x14\\x41\\x11\\x04\\x4d\\x14\\x8a\\x20\\x4b\\xb6\\xdb\\xeb\\x46\\x02\\x83\\x90\\x4a\\x41\\x0d\\x3f\\x97\\xf3\\x30\\xa7\\x87\\x04\\x73\\x0f\\x65\\xc0\\x3c\\x03\\x02\\x60\\x9e\\x6b\\x2b\\x30\\x2f\\x80\\x00\\xe6\\xb5\\x29\\x84\\xf9\\x1c\\xf4\\x60\\xdb\\x06\\x06\\x30\\x44\\x0d\\xb6\\xc9\\x66\\xe3\\xf3\\xe0\\x47\\x05\\x01\\xf2\\x6f\\x38\\xed\\xc9\\xc7\\xee\\xdd\\x00\\x3f\\x82\\xca\\x35\\xf7\\x6e\\xbf\\xf9\\x35\\x08\\xa7\\xba\\xdf\\xfa\\xf8\\x84\\xc4\\xa4\\xe4\\x94\\xd4\\xb4\\xf4\\x8c\\xcc\\xac\\xec\\x9c\\x76\\xed\\x2d\\x52\\xb4\\x58\\xf1\\x12\\x25\\x4b\\x95\\x2e\\x63\\xbd\\xf4\\x67\\x1c\\x25\\x87\\x98\\xe5\\x6f\\x82\\xc5\\xe1\\x09\\x44\\x12\\x99\\x42\\xa5\\xd1\\x19\\x4c\\x16\\x9b\\x23\\x2c\\x22\\x2a\\x26\\x2e\\x21\\x29\\x25\\x2d\\x23\\xeb\\x20\\xf5\\xef\\x38\\x90\\xa7\\x40\\x91\\x12\\x15\\xaa\\xd4\\xa8\\x63\\x37\\x08\\x04\\x0c\\x02\\x0a\\x0e\\x01\\x09\\x05\\x0d\\x63\\x60\\x71\\xf0\\x08\\x88\\x48\\xc8\\x28\\xa8\\x68\\xe8\\x18\\x98\\x58\\xd8\\x38\\xb8\\x78\\xf8\\x84\\xe8\\x77\\x2e\\xf2\\x92\\x5f\\x8c\\x32\\xc6\\x38\\x13\\x4c\\x32\\xc5\\xb4\\x61\\x26\\x66\\x99\\x63\\x7e\\x9d\\xeb\\x70\\x34\\x32\\xce\\x14\\xb0\\x31\\x7c\\xe2\\x25\\x50\\x06\\x3d\\x49\\xaf\\xd2\\xcf\\x98\\xe3\\x18\\x64\\x32\\x54\\x18\\x95\\x7a\\x1d\\x70\\x29\\x50\\x21\\xa2\\x3f\\x5c\\xc3\\xc2\\xde\\x08\\x0f\\x07\\x67\\xe3\\x02\\x04\\x9c\\xaf\\x4b\\x31\\xaa\\x73\\xfc\\xc2\\x4e\\x0c\\x63\\x2b\\xcf\\xaa\\x86\\x9d\\xd0\\xb7\\x60\\xd1\\x05\\x4e\\xdd\\xce\\xa8\\x5e\\xc6\\x23\\x80\\x74\\xf2\\x47\\x70\\xb9\\x4f\\xfa\\xb1\\x00\\xa6\\x01\\x38\\xe1\\xcc\\x5b\\xb7\\x01\\x40\\x7e\\x99\\x73\\xff\\x7f\\x02\\xe6\\x8a\\xc8\\x3e\\x07\\xb0\\x1b\\xaf\\x63\\x20\\x94\\xb5\\x16\\xba\\x95\\x1a\\x46\\xa0\\x92\\x23\\x93\\x54\\x06\\xea\\x03\\x22\\x91\\xcf\\xe0\\xeb\\x4d\\x5c\\x95\\x65\\x2c\\x04\\x2e\\x01\\x08\\x6a\\x69\\x64\\x54\\x34\\x9b\\xa8\\xe5\\x3e\\xed\\xf4\\x18\\x30\\x6e\\xc1\\x36\\x05\\x1c\\x1e\\x85\\x90\\xa2\\x95\\x23\\x8a\\x54\\xda\\x6a\\x9b\\x2b\\x43\\x0b\\x3d\\x8b\\xd9\\xd1\\xde\\x32\\xac\\x53\\x71\\xba\\x5e\\x46\\x5f\\x30\\xe2\\xcf\\xc0\\xaa\\xeb\\xbf\\xf4\\xaf\\x86\\x56\\x33\\x47\\xfa\\xc8\\x1c\\xf9\\x83\\x36\\xe8\\xa3\\x71\\xf4\\x55\\xfd\\xd5\\xfb\\xea\\x73\\xb5\\x4f\\x05\\x35\\xb5\\xd4\\xc9\\x73\\x06\\x1a\\x69\\xb2\\xfd\\xf3\\xcb\\xfc\\x31\\x59\\xd0\\x5b\\xb0\\xbe\\x61\\xcb\\xae\\x33\\x90\\xe4\\x0e\\x75\\xd7\\xe2\\x3f\\xe5\\x7f\\xca\\xd7\\x2a\\x1c\\x5c\\xa0\\xf4\\x49\\x3a\\x95\\xce\\xa4\\x73\\xe9\\x72\\xba\\x8a\\x0e\\xd3\\x4d\\x74\\x87\\xb3\\xb9\\x36\\xb7\\xf5\\xee\\xcd\\x77\\xef\\xb8\\xd7\\x2c\\x73\\x9c\\x81\\x63\\x30\\x19\\x5c\\x86\\x94\\x51\\xc8\\xbd\\x64\\x37\\xb2\\x87\\x65\\x8f\\x31\\x89\\x4c\\x2a\\x53\\xc4\\xf4\\xe4\\xe2\\x1c\\xb2\\x2f\\x96\\xbb\\xba\\x9d\\xce\\x96\\x7c\\x85\\xdc\\x1d\\x39\\xc3\\x08\\x59\\x68\\xd7\\xd5\\xd1\\xe1\\xa5\\xb7\\x26\\x2c\\x62\\x67\\x4b\\x8c\\x50\\x14\\xa3\\x14\\xed\\x1c\\x55\\xac\\x8a\\x32\\x94\\xe7\\x81\\x65\\xbd\\xc4\\xe9\\x61\\x50\\x0b\\x24\\x4a\\x67\\x8f\\x82\\x71\\x6b\\x3c\\x1c\\x4d\\xe3\\x55\\xf5\\x8e\\x7a\\x1f\\x54\\xb4\\x53\\x6b\\x5a\\x15\\x72\\x91\\x15\\x53\\x71\\x95\\xa5\\x73\\xa0\\x0c\\x96\\x9f\\x65\\x79\\xc1\\xf5\\x0d\\x3f\\x03\\x24\\xaf\\x52\\xcf\\x5d\\x1c\\x5f\\xfc\\xb7\\x9c\\x49\\x35\\x01\\xe9\\xe3\\xf4\\x7e\\x7a\\x0f\\x71\\xc0\\xa6\\xa4\\x1b\\x98\\x74\\xbe\\x5d\\x9d\\x73\\x3c\\xaa\\x96\\xb3\\xf9\\x49\\xbc\\x0c\\x2a\\x75\\x7e\\x05\\xc8\\x48\\xf3\\xec\\xd0\\xb0\\xdb\\x01\\x97\\x02\\xce\\x06\\x4e\\x07\\x4e\\x05\\x4e\\x06\\x8e\\x04\\x8e\\x69\\x91\\x66\\xdb\\xfe\\x79\\xfd\\xce\\x93\\x00\\xe8\\xba\\x6f\\x0a\\x78\\x65\\x3d\\xde\\x5d\\x2f\\xef\\x95\\xf5\\xee\\xfa\\xdc\\xad\\xbb\\x71\\xc7\\xb7\\x37\\x30\\xde\\xbe\\x1e\\x40\\xf2\\xc8\\x01\\x30\\xf2\\x5f\\xff\\xfc\\x27\\xf0\\xff\\x99\\x4c\\x1d\\xb7\\xec\\x65\\x81\\xe6\\x85\\xb2\\x8f\\x12\\xfc\\xbe\\xb5\\x0e\\xfc\\xdc\\x4b\\x75\\xa3\\x9f\\x47\\xeb\\x51\\x97\\xe4\\xdd\\x28\\xf6\\xe3\\xc1\\x06\\xbe\\x1e\\x86\\x93\\xe1\\x78\\xd8\\x17\\x5b\\xc3\\x7a\\xac\\xfd\\x71\\x21\\xd4\\x36\\xeb\\xf9\\x5f\\x80\\x67\\xb7\\xe0\\x83\\xe7\\x7c\\xae\\x79\\xae\\x7a\\x2e\\x78\\x36\\xfc\\x9c\\xfa\\x1c\\xf9\\xac\\xf3\\xe9\\xae\\x67\\xce\\x67\\x8e\\x67\\xc6\\x67\\xba\\x67\\xe2\\x67\\x98\\x67\\xb9\\xcf\\xb2\\x1e\\x5d\\x09\\xf8\\x2a\\x18\\x51\\x90\\xab\\x19\\x17\\x41\\xc3\\x5b\\xa4\\xa7\\xff\\x12\\xe0\\x1d\\x60\\x21\\x38\\x05\\x1a\\x0f\\x00\\x7e\\x3a\\x1e\\xa4\\x8e\\xb0\\x7b\\x61\\xb7\\xb7\\x02\\x9c\\x73\\x7a\\xe9\\x77\\x00\\xff\\x00\\x31\\x05\\xc4\\x06\\x80\\xd8\\x06\\x10\\x6f\\x00\\xf1\\x05\\x35\\xdf\\x3f\\xd0\\x4f\\x14\\x3f\\x10\\x8a\\x0f\\xe4\\x99\\x82\\xf7\\x5a\\x55\\x86\\x65\\xda\\x19\\x67\\x9d\\x73\\xde\\x05\\x62\\x7c\\xe3\\x7a\\x36\\xb2\\x99\\xad\\x6c\\x67\\x07\\x29\\x71\\x01\\x60\\xe0\\x97\\x7f\\x15\\x85\\x5b\\x24\\x04\\x7b\\xd4\\x3d\\x8f\\xc3\\xe9\\x72\\x0f\\xdd\\xa0\\xa8\\x3c\\x6f\\x2e\\x17\\x7a\\x36\\x2c\\xa1\\x5d\\x76\\x2b\\x4b\\x9b\\x11\\x37\\xda\\xdb\\xc6\\x36\\xbe\\x09\\x44\\x24\\x64\\x94\\x4d\\xa2\\xa2\\xa1\\x63\\x60\\x62\\x61\\xe3\\x6c\\x6a\\xd3\\xb8\\x78\\xf8\\x04\\x84\\x44\\xc4\\x9b\\xd9\\x2c\\x09\\x29\\x19\\x39\\x88\\x62\\x73\\x9b\\xaf\\xca\\x00\\xf7\\xff\\xcb\\x36\\x69\\xd6\\xd2\\xbb\\xcb\\x87\\x80\\xd7\\x6a\\x6b\\xac\\x65\\x65\\xe3\\xe4\\xda\\x8d\\xdd\\xf4\\x63\\xbb\\x7e\\x3a\\x9e\\xfc\\xd8\\x6d\\x7f\\x7d\\x7d\\xc3\\xc7\\x5f\\xd5\\x7f\\xff\\xfa\\x8e\\xe0\\x4a\\x21\\x6a\\x64\\xa3\\x2e\\x68\\x74\\x5c\\x79\\xb8\\x3d\\x79\\xf6\\xe2\\xd5\\x1b\\xc6\\xda\\xde\\xc3\\x44\\x0b\\xd3\\x90\\xd0\\xb0\\xf0\\x88\\x48\\xdd\\xa8\\x68\\xbf\\x72\\xbc\\x24\\xc1\\xc8\\xb1\\x13\\xa7\\x89\\x49\\xc9\\xdc\\xb2\\x84\\x88\\xa4\\x14\\x52\\xa9\\xa4\\x31\\xd2\\xc8\\xa6\\x67\\x64\\x92\\x43\\xce\\x22\\x8f\\x83\\x8b\\x87\\x4f\\x40\\x98\\x4d\\x95\\x98\\xa4\\xac\\xbc\\xa2\\x92\\x46\\x55\\x75\\x0d\\xcd\\xda\\xba\\xfa\\x86\\x82\\xc6\\x42\\xca\\xa6\\xa2\\xe6\\x05\\xa2\\x16\\xf6\\x2b\\xee\\x7f\\x4b\\xcf\\x00\\x1e\\x2c\\xe5\\x03\\x31\\x15\\x37\\x32\\x2c\\xff\\x42\\x43\\x2f\\x62\\xcc\\xd8\\x71\\x92\\x98\\x21\\xe7\\x39\\x03\\x7f\\xfb\\xb3\\x79\\x0b\\x16\\x2e\\xf2\\xbb\\x8f\\xe5\\x2c\\xf1\\x3f\\xbf\\x62\\x61\\x9b\\x31\\xbe\\xc6\\x32\\x7f\\xfa\\xaf\\x82\\x15\\xbe\\x35\\xb9\\xce\\xaa\\xd5\\x6b\\xd6\\xae\\x93\\xc1\\xf5\\xde\\xb4\\x33\\xf8\\xcf\\xce\\xe4\\x0f\\x66\\x37\\xda\\xe0\\x1f\\xe6\\x27\\x6f\\xdc\\xe4\\xe7\\x2a\\x37\\xfb\\xd1\\xef\\x04\\x84\\x44\\x2d\\xde\\xba\\x4f\\x06\\xcf\\xaa\\x19\\x16\\xf9\\x8b\\xc5\\x67\\x25\\xbc\\xa0\\xa1\\xa6\\xa5\\xa3\\x67\\x60\\x0c\\x13\\xd6\\x07\\x3f\\xeb\\x32\\x98\\xb4\\x3a\\x3d\\x86\\xdf\\x9b\\x85\\xb7\\x96\\xbe\\xdf\\x2f\\xc6\\xf2\\x07\\x1d\\x9c\\x8d\\xcf\\x5e\\x7f\\x49\\xff\\x0e\\x81\\x20\\xb9\\x4a\\x57\\x7b\\xdd\\x83\\x22\\xe9\\xc9\\xf8\\x5f\\xd2\\x81\\x61\\x39\\xbe\\x40\\xa8\\xa1\\xa9\\xa5\\xad\\xa3\\xab\\xf4\\x82\\x32\\xce\\xcd\\xb2\\x58\\xd9\\xd2\\x55\\x75\\xd3\\x76\\xfd\\x30\\xae\\x37\\xdb\\xdd\\x5e\\x80\\x44\\x32\\x95\\xce\\x64\\x73\\xf9\\x42\\xb1\\x54\\xae\\x54\\x6b\\xf5\\x46\\xb3\\xd5\\x4d\\x05\\x42\\x91\\x58\\x22\\x95\\xc9\\x15\\x4a\\x95\\x5a\\xa3\\xd5\\xe9\\x0d\\x46\\x93\\xd9\\x62\\xb5\\xd9\\x1d\\x4e\\x97\\xdb\\x53\\xeb\\xf5\\x01\\x85\\x75\\xdd\\x38\\xbf\\xaf\\xfe\\x8e\\x8b\\x52\\xa1\\xa2\\x5a\\x95\\x06\\x1a\\x69\\xa2\\xb1\\x2e\\xe9\\x72\\x75\\x55\\x17\\xa5\\x66\\xcd\\xcb\\x45\\x54\\x2e\\x78\\xd9\\x8a\\x80\\xfb\\xbc\\x4e\\xba\\x04\\x60\\x44\\x8a\\x0c\\xa5\\x26\\xec\\x74\\xe2\\x8f\\xda\\x36\\xac\\xa8\\xec\\x17\\x43\\xbb\\xe9\\x82\\x1c\\x48\\x0e\\x77\\x6c\\x76\\x27\\x25\\xc9\\xba\\x92\\xc1\\x07\\x37\\xc7\\x49\\x24\\x85\\x68\\x24\\xe8\\x5c\\xa6\\xc8\\x4c\\x0f\\xf0\\xc5\\xa3\\x85\\x59\\x7e\\xe3\\x9c\\xdb\\x85\\x15\\xa6\\xd9\\x65\\xab\\x55\\xa7\\x52\\x15\\x3d\\xe6\\x96\\x74\\x65\\x27\\xc2\\x26\\x6d\\xda\\xa9\\xb7\\xcb\\xe3\\x71\\xa8\\x56\\xaf\\xd5\\xef\\x64\\x66\\x46\\x56\\x96\\xb2\\x92\\xd5\\xac\\x65\\xb9\\xf2\\xc9\\x00\\xff\\xad\\x76\\xfe\\xca\\x26\\x5c\\xca\\x4d\\x2a\\x08\\x60\\x03\\x65\\x94\\x13\\xc9\\x24\\x34\\x4a\\x90\\xe4\\xd3\\x97\\x02\\xd4\\xa4\\x6f\\x0a\\x94\\xb5\\x40\\xf7\\x0f\\xdd\\x96\\x5d\\xfa\\xba\\x73\\xb6\\x38\\x3a\\xd0\\x4d\\x81\\xf5\\x54\\x26\\x7c\\xea\\xe1\\x6b\\x69\\xa4\\xcb\\x79\\x30\\x73\\xbe\\x7b\\xe9\\xf2\\xf7\\x08\\xa8\\xb9\\x79\\x1f\\xc5\\x7b\\x11\\x48\\x08\\x58\\x48\\xb3\\x2c\\xbd\\xfd\\x27\\x86\\xcd\\x5b\\x72\\xf7\\x29\\xf1\\x79\\x12\\x99\\x72\\xa2\\x61\\xe1\\x8c\\x5a\\xff\\xbf\\x0a\\x3e\\x8f\\x9a\\x95\\x2d\\x9b\\x10\\x80\\x15\\xa4\\xcf\\xa6\\xa3\\xa0\\xb0\\x44\\x07\\x81\\xf0\\x4e\\x1c\\x02\\x1d\\x89\\xbf\\x1f\\xe1\\xfe\\xd3\\xf8\\x12\\x43\\xce\\x56\\xb3\\x9d\\xcf\\x29\\x58\\x68\\x86\\x65\\xc7\\xf4\\x3a\\x05\\xe8\\xa5\\x11\\x15\\x50\\xaf\\xe3\\x95\\xc9\\xaa\\x39\\x52\\xfd\\x11\\x2f\\x69\\xf2\\x26\\x2a\\x32\\x41\\x80\\x0c\\x94\\xf0\\xb7\\x2c\\x0a\\x4a\\x3e\\x6e\\x1d\\xdc\\x3a\\x95\\x13\\x45\\xb8\\xac\\x70\\xaf\\x9e\\x92\\x50\\xda\\x52\\x72\\x2e\\xa5\\x01\\x43\\xce\\x06\\x4c\\xa7\\xe3\\x9c\\x1d\\x05\\x84\\x22\\xaa\\xb4\\x9e\\x9a\\x55\\x55\\xdc\\x4a\\x84\\x46\\x52\\x23\\xed\\xa5\\x19\\x4a\\x47\\x09\\x63\\x29\\x5f\\x47\\x35\\xea\\xa8\\x8b\\x18\\x33\\x7c\\x29\\xc5\\xcb\\xd9\\x0a\\x5b\\x84\\x4b\\x5b\\xa9\\xa1\\xbb\\xb6\\x19\\x6a\\x66\\x69\\xab\\xfa\\xed\\x54\\xb6\\x9a\\x7e\\x27\\x27\\xcb\\x57\\xa2\\x74\\x97\\x56\\x4a\\x53\\x23\\x42\\x74\\x2d\\x47\\x05\\x34\\xbc\\x33\\x02\\xe1\\x8b\\xac\\x3e\\x7e\\x7b\\x34\\x9a\\x00\\x31\\xf6\\x68\\x7d\\x02\\x0d\\x94\\xc4\\xc2\\xd1\\x40\\x14\\x4e\\xd1\\x72\\xf5\\xcf\\xa5\\x56\\xe9\\x34\\x3f\\x97\\x39\\x3b\\x58\\xa6\\xb3\\x53\\x31\\x18\\x35\\x7d\\xe1\\x2c\\xde\\x0e\\x9c\\x9e\\x87\\x05\\xe7\\x35\\x0e\\xc1\\xd9\\x30\\x18\\xd0\\x87\\x5b\\xd1\\x6c\\xb8\\xff\\x52\\x40\\x42\\x0a\\x80\\x47\\x90\\x51\\x6e\\x92\\x42\\x1a\\x16\\x61\\x66\\xfd\\xb4\\xfa\\x7a\\xb4\\x45\\xfd\\x3c\\x94\\x68\\x10\\x4f\\xbd\\x4c\\x91\\xa0\\x83\\xb5\\x79\\x3f\\x8d\\xf3\\x5e\\x52\\xa4\\xd0\\x58\\xc8\\xb7\\x83\\xa3\\x47\\x25\\x71\\xc1\\xbf\\xd5\\xd4\\x31\\x00\\x2c\\x25\\x74\\x7c\\x53\\x14\\x24\\x63\\x1a\\x33\\xcb\\x37\\xe2\\xac\\xa8\\x2f\\x74\\x8c\\x10\\x26\\x7e\\x8c\\xea\\x9f\\x52\\x1a\\x92\\x1f\\x34\\x56\\x2c\\x1a\\xb6\\x1d\\x06\\x8d\\xe6\\x98\\xbc\\xdd\\x4b\\xd5\\xdb\\x69\\xbe\\x8a\\xbe\\xb3\\x53\\xc7\\xec\\xed\\x76\\x7a\\xbb\\x7b\\xc6\\xdf\\x84\\x75\\x8b\\xf5\\xeb\\x5b\\x54\\x30\\x72\\xbf\\x6f\\x7d\\xce\\x0e\\x55\\x64\\x1d\\x32\\xd2\\x87\\x5a\\xac\\x8b\\x67\\x71\\xd9\\x0c\\x32\\x13\\x0a\\xdb\\x4a\\x95\\x73\\xa3\\xb8\\xc5\\x41\\xb6\\x10\\xe7\\x84\\x45\\x30\\xb0\\x3a\\x68\\xcd\\x35\\x98\\x3f\\xa8\\xb6\\x95\\x73\\x23\\xe4\\x05\\xeb\\xf2\\xe2\\x82\\x85\\x9c\\xec\\x48\\xef\\x34\\x55\\xe0\\xc3\\xa6\\x40\\xa4\\x35\\x62\\x90\\x9a\\x3e\\x0f\\xac\\xd6\\x2a\\xa4\\xd8\\x4b\\xac\\x35\\x6a\\xc6\\x5c\\x23\\x93\\xa2\\x2c\\xa3\\x0a\\x54\\xbf\\x37\\x67\\x1d\\x8d\\x64\\x15\\x87\\x3f\\x7f\\xbb\\xdd\\x73\\x37\\x34\\x57\\xb2\\x63\\x53\\xc1\\x7a\\xc7\\xb1\\xab\\x18\\x0b\\xbc\\x87\\x08\\x0e\\x8f\\x42\\x70\\x7a\\x94\\x82\\xcb\\xa3\\x12\\xdc\\x1e\\xb5\\xe0\\xf1\\x68\\x04\\xaf\\x87\\x11\\x7c\\x1e\\xf6\\x38\\x51\\x6a\\xc1\\x87\\x13\\x0b\\x85\\x77\\x4b\\x5c\\xf8\\xbc\\x42\\xfb\\xad\\x31\\x38\\xe0\\x92\\x27\\x06\\x44\\xbf\\x28\\x40\\x92\\xbb\\x00\\x21\\x07\\x01\\x21\\x8b\\x80\\x90\\x43\\x80\\x90\\xc3\\x80\\x90\\x25\\x40\\xc8\\x32\\x20\\xe4\\x08\\x20\\xfa\\x12\\xd4\\x4e\\x24\\x7a\\x26\\x24\\x73\\x0b\\x9b\\xa7\\x89\\x1d\\xab\\x13\\x59\\xa4\\x29\\x79\\x67\\x6a\\x7f\\x68\\x52\\x48\\x36\\xc9\\x72\\xd2\\xa4\\x85\\x94\\x90\\xb6\\xfe\\xa1\\xd9\\x30\\xfb\\x57\\x81\\x1e\\x0d\\x3a\\x19\\xd9\\xac\\x46\\x46\\xba\\xaa\\x2a\\x1a\\xcf\\x92\\x0d\\x82\\xb5\\xab\\xca\\x0a\\xa5\\x4c\\x56\\x26\\x47\\xf7\\x58\\x7d\\x29\\xf2\\xd6\\xb0\\xc0\\x70\\xef\\x10\\x30\\xc3\\x4b\\x69\\xe0\\x7f\\xc1\\xfd\\x1f\\x9e\\x79\\x66\\x0f\\x6b\\x2e\\xf8\\x6d\\xa7\\x40\\x9d\\x16\\xac\\xfe\\x51\\x42\\xfa\\xfa\\x87\\x4e\\x51\\x7b\\xa1\\x73\\x4a\\xf9\\x52\\xc0\\x55\\xde\\xb3\\x94\\x55\\x22\\xd9\\x35\\xb5\\x5a\\x20\\xa2\\x51\\xdf\\xfd\\x7a\\xf8\\x7f\\xa9\\x8d\\xf6\\x4a\\x36\\xfd\\x12\\x33\\x68\\x1c\\xbf\\x0c\\x3c\\x3e\\x7b\\xdb\\xa9\\x00\\x78\\x94\\xf6\\x88\\xb2\\x57\\x65\\xc6\\x3b\\xc7\\xc3\\x87\\x2b\\x75\\x03\\x1a\\x47\\x35\\x2b\\xa8\\x76\\x39\\x26\\x94\\x1a\\x21\\x62\\x62\\xbb\\xab\\xef\\x49\\x37\\xe9\\xa7\\xba\\xcd\\xaa\\x39\\xe7\\xf0\\x9b\\xf3\\x1c\\xa3\\x09\\x86\\x1a\\x44\\xc8\\x97\\xd0\\xe6\\x05\\x67\\x3b\\x1a\\x2f\\x02\\x83\\xa5\\x5f\\x85\\xb0\\x1c\\x19\\x0a\\xf6\\x47\\x59\\x29\\x65\\xdf\\x1c\\x94\\xe2\\x7e\\x2c\\xe1\\x4b\\x7b\\x93\\x50\\x7a\\x9b\\xab\\x4f\\x36\\xe4\\xa9\\x39\\x6a\\x3b\\x44\\x60\\xc1\\xa2\\x40\\x33\\x47\\x17\\x55\\xb2\\xc4\\x29\\x54\\xd6\\x3f\\x59\\xe6\\x00\\xc8\\x60\\x63\\x54\\xa3\\x00\\xbc\\x68\\x5b\\x0e\\x8e\\x23\\x93\\xce\\x4e\\xad\\xf9\\x7d\\x4a\\x12\\x95\\x07\\x05\\xd6\\x3d\\x74\\xea\\xe7\\x52\\x30\\x1a\\x2f\\xf7\\xcd\\x41\\x4c\\x50\\x51\\x6a\\x83\\x5f\\x90\\x7a\\x22\\xcc\\x52\\x99\\x4f\\xad\\x3a\\x0b\\xcd\\x09\\x5d\\x2b\\x62\\x83\\xf2\\xdb\\x9f\\xf6\\xa6\\xea\\xf5\\xc0\\x8b\\xa5\\x54\\xd6\\x78\\x89\\x52\\x00\\x7b\\x49\\xa7\\x49\\x5c\\xa7\\x5c\\x94\\xd2\\x37\\x5b\\xd6\\x8f\\xca\\x71\\xac\\xc5\\xd4\\x0a\\xec\\x4d\\xcd\\x77\\x92\\xba\\xdc\\xd6\\x54\\xb0\\x3b\\x4e\\xf7\\xb9\\x8d\\xb6\\x5c\\x28\\x64\\xf9\\xeb\\x8f\\xde\\x03\\x2a\\x5d\\x61\\x4e\\x2f\\xa8\\xf6\\x80\\x15\\x6a\\x0a\\x60\\xb4\\xcc\\xec\\x14\\x28\\xd9\\x92\\x6a\\xa7\\xcf\\xb8\\xa8\\x60\\xa1\\x66\\x8d\\x9a\\x3a\\xb5\\x2d\\x04\\x57\\xf5\\x8a\\xdd\\x8f\\xca\\xa4\\x16\\xf5\\xf0\\xbf\\xc5\\xc2\\xf0\\x20\\xed\\xd0\\xb5\\xf8\\x3b\\xb3\\x1f\\xbc\\xaa\\xc3\\x21\\xb3\\xa7\\x0c\\x70\\x82\\x36\\xdd\\x33\\x18\\x0e\\x16\\x92\\x26\\x48\\xf5\\x15\\x87\\x34\\x7b\\xcb\\x0c\\x8c\\xd2\\x05\\x5f\\x27\\x67\\x5a\\x0a\\xe5\\x0c\\x5f\\xba\\x7b\\x04\\x15\\xf0\\xc3\\x4f\\x31\\x48\\x8d\\x82\\xf2\\x4e\\x18\\x2b\\x05\\x7e\\x66\\x6a\\x35\\x1f\\x18\\x20\\x8b\\xc0\\x38\\x74\\xd1\\x4f\\xdf\\xaa\\xea\\x36\\x81\\x11\\x60\\x92\\x98\\x4c\\xc4\\xd4\\x82\\x12\\xd3\\x74\\xcd\\x13\\xcc\\x14\\xc0\\x6a\\x16\\x12\\x31\\x67\\x04\\xcd\\x03\\x01\\x0b\\x05\\x50\\x5a\\x84\\x44\\x2c\\x19\\x41\\xcb\\x40\\xc0\\x4a\\x01\\xb4\\x56\\x21\\x11\\x6b\\x46\\xd0\\x3a\\x10\\xb0\\x51\\x00\\x57\\x9b\\x90\\x88\\x2d\\x23\\x68\\x1b\\x08\\xd8\\x29\\x80\\xa3\\x5d\\x48\\xc4\\x9e\\x11\\xb4\\x0f\\x84\\xf3\\x00\\xd4\\xe2\\x78\\x1c\\x2a\\x76\\x5a\\xfb\\xe9\\x28\\xba\\x7d\\x9c\\x95\\x56\\x14\\x14\\x27\\x5b\\xdd\\xe2\\x38\\x05\\x82\\xcf\\xf6\\x0d\\x3e\\x87\\xfe\\xc6\\xc5\\xdc\\x18\\x97\\x0b\\x82\\xaf\\xe8\\x06\\xdf\\x80\\x06\\xdc\\x9c\\x9b\\xe3\\xd6\\x82\\xe0\\xdb\\x74\\x83\\xef\\x40\\xc3\\xe3\\x2e\\x7e\\xb2\\x69\\xdc\\x72\\xfa\\x88\\x77\\x60\\x3a\\x6c\\xb2\\x75\\xda\\x9c\\xbc\\x38\\x31\\x00\\x23\\xe6\\x7f\\xf0\\x90\\x8e\\x32\\x7c\\xfd\\xa7\\xdf\\x0c\\x10\\xdf\\x03\\xeb\\xdf\\x16\\x70\\xd8\\x34\\x00\\x13\\xef\\x08\\x18\\xfe\\x05\\xe0\\xac\\x53\\x00\\x14\\xcb\\x2b\\x52\\x09\\x22\\x3a\\x2c\\x81\\x9e\\x32\\x90\\x27\\x23\\x90\\xff\\x77\\x76\\x44\\x48\\x33\\x54\\x95\\x01\\x2f\\xf4\\x36\\x1a\\xe0\\x89\\x33\\xee\\x4d\\x4e\\x6d\\x3b\\x73\\x8b\\x44\\x24\\x21\\xff\\xdf\\x19\\x28\\xeb\\x28\\x0c\\x29\\x11\\x8c\\x81\\xeb\\x16\\xc4\\x9e\\x54\\x57\\x78\\xee\\x44\\x02\\xab\\x63\\x24\\xab\\xc0\\x50\\x4a\\x8e\\x64\\x04\\x8f\\x06\\x26\\x9d\\xc9\\xb9\\x1b\\x24\\x2a\\xc7\\x5b\\x44\\xc5\\xe4\\xa3\\x8d\\x04\\x60\\x40\\x7a\\x05\\x29\\x50\\x1b\\xad\\x5a\\x7a\\x58\\x0d\\x69\\x65\\x5a\\x1a\\x48\\xbe\\x8f\\x62\\x05\\x97\\x48\\x26\\x10\\x6b\\x6a\\x63\\xe6\\xa9\\x15\\x23\\x61\\xed\\xab\\x94\\x1e\\xb6\\xa3\\x6a\\x47\\x22\\xa9\\x89\\x90\\x94\\xb2\\x92\\x6a\\x7e\\xa8\\x65\\x13\\xb5\\x22\\x7d\\xab\\x21\\x23\\x98\\x12\\xca\\x00\\x52\\x56\\x8e\\x04\\xc6\\x60\\x4f\\x60\\x4a\\x7a\\x45\\xd9\\xdd\\x46\\x26\\x35\\x17\\x21\\x3e\\xb3\\xbb\\xc5\\x8c\\x58\\x0f\\x10\\x62\\x9d\\x29\\xcc\\x19\\x59\\x52\\xff\\x8b\\x92\\x4c\\xc9\\x68\\x0f\\xbf\\x89\\x7c\\xc6\\xac\\xfc\\x33\\x83\\x7f\\xe6\\x49\\x57\\x26\\x52\\x65\\x7d\\x3b\\x28\\x04\\xfc\\xf3\\x26\\xfc\\x7f\\x19\\x4e\\xce\\xbf\\xf1\\xa4\\x19\\x2a\\x28\\x16\\x95\\x92\\x35\\xc6\\x6c\\xa4\\x80\\xf4\\x0d\\x63\\x5d\\xab\\xfa\\x16\\xbe\\xf1\\xdb\\x04\\x47\\xa9\\x7c\\x63\\x52\\x4c\\x00\\x81\\xa5\\x0c\\x86\\x8f\\x09\\x1c\\xfa\\x2c\\xd8\\x10\\xad\\x3f\\x2a\\x00\\xc1\\x0e\\xff\\xcf\\xc2\\x59\\x2e\\xc4\\x5d\\x4a\\x8c\\x5f\\x21\\x1a\\xe1\\xa7\\xb1\\x73\\xa9\\x68\\xdd\\x42\\x7c\\x0b\\x8b\\x40\\x61\\x14\\x87\\x10\\x46\\x00\\x27\\xc5\\x3c\\xa9\\x79\\x83\\x76\\xcd\\x45\\x8c\\x06\\x45\\x7c\\xf2\\xa1\\x8f\\xe2\\xa3\\xba\\xf8\\x60\\x39\\x5a\\xe0\\x32\\xde\\xc3\\xb4\\x03\\xbc\\x4e\\x3d\\xe5\\x00\\x7f\\x0a\\xc4\\x89\\x78\\xab\\x7c\\x26\\x19\\x01\\x11\\x42\\xf7\\x1e\\x8a\\x14\\x4d\\xc0\\xbc\\xc3\\xf9\\x0c\\x7b\\x95\\x2a\\xf6\\x7d\\xf1\\x99\\x06\\x03\\x88\\xad\\x14\\x4c\\x04\\x31\\x90\\xdb\\x85\\x9c\\x8d\\x42\\x6a\\x7b\\xb4\\xfa\\xc1\\x42\\x4f\\x3b\\x57\\xf3\\x58\\x17\\x15\\x46\\x91\\x46\\xa2\\xc2\\x01\\xb8\\x94\\x04\\x23\\xd7\\x7a\\x04\\xd1\\x87\\x19\\x38\\x17\\x15\\x39\\x40\\x28\\x8a\\x24\\xa9\\xef\\x6b\\x6e\\xea\\xe4\\xca\\x9f\\x2f\\x86\\x85\\xe0\\xed\\x6f\\x63\\xb2\\x67\\xce\\x54\\xef\\x74\\xff\\xf9\\xac\\xf6\\x5d\\xdf\\x9f\\x3b\\x91\\x0b\\x8b\\x4a\\xa8\\x88\\x3f\\xc7\\x66\\x29\\x09\\xb5\\x12\\xa9\\x80\\x26\\xf5\\xaa\\xb5\\x73\\x71\\xe0\\x4c\\x08\\xff\\x8c\\xe0\\x7b\\x2c\\x8c\\xc0\\x30\\xb4\\x78\\x25\\x18\\xdf\\x7e\\xac\\xad\\x16\\x8f\\xa3\\x0b\\xc5\\x16\\x2f\\x97\\x39\\xf7\\xd3\\x13\\x67\\xe8\\xd1\\x8c\\xbc\\x66\\x56\\xc2\\x6e\\x16\\xba\\xef\\x51\\xab\\x53\\x8a\\x93\\x24\\x8b\\xa1\\xd0\\x12\\x42\\x10\\x40\\x21\\x00\\xf3\\x77\\x87\\x9f\\x2d\\x86\\x17\\x0a\\x0e\\x03\\x85\\x85\\xef\\x13\\xe9\\x2b\\x48\\x4c\\xd0\\x79\\x60\\x5c\\x7f\\x5d\\x60\\x0a\\x43\\xe7\\xb2\\x2c\\x4d\\xa5\\xec\\xeb\\xaf\\xfc\\xd0\\x34\\x07\\xd2\\xfb\\x0b\\x27\\xb1\\xc1\\xaa\\xb4\\x6e\\xc0\\x61\\x9d\\x8a\\x46\\x3c\\xca\\xaf\\x1f\\x8e\\xc9\\x94\\x3c\\xaf\\xbb\\xf1\\x7c\\x6c\\xdb\\xcf\\x88\\x72\\xe2\\xf6\\xfa\\x57\\x05\\x01\\x24\\xc0\\xf7\\x9d\\xb8\\x4f\\xaa\\x6c\\x50\\xf1\\xfa\\xf5\\x45\\x58\\x47\\x5b\\x13\\x0a\\x48\\xae\\xce\\x8d\\x6d\\x4b\\x7e\\x18\\xcb\\x54\\xce\\x7d\\xda\\x5c\\x65\\x0b\\xad\\x10\\x64\\xa4\\x6f\\x66\\xee\\x82\\x3a\\x30\\x01\\x44\\xae\\x01\\x6f\\x95\\xfa\\x46\\x9d\\xab\\x44\\x6c\\xd8\\xf2\\x42\\xfc\\x0a\\x8b\\xeb\\xff\\xf8\\x28\\xd6\\x26\\x18\\x3e\\x27\\xb0\\x6f\\xb3\\x60\\x47\\x54\\x87\\x7c\\xe1\\x40\\xc3\\xfb\\x04\\xd6\\x6e\\x11\\xb4\\x44\\xd3\\xa4\\xdb\\xeb\\xcc\\xfd\\x58\\x5b\\x28\\xe8\\x43\\xce\\xc6\\x47\\x4e\\xc5\\xd4\\xa5\\x51\\x05\\xe6\\xc9\\x37\\x75\\x55\\xf7\\xab\\x96\\x1e\\xd5\\xce\\xfb\\x66\\xf6\\x4b\\x8d\\xaf\\x71\\xec\\xf1\\x7e\\xca\\x89\\xe3\\x78\\xfd\\x36\\x39\\xce\\xc5\\x72\\x48\\xca\\x44\\x19\\x52\\x3a\\x28\\x57\\xfa\\xa6\\x95\\xda\\xd0\\xf5\\x71\\x7b\\x3d\\x74\\x46\\xb0\\x25\\x70\\xd9\\x15\\x72\\x17\\xb6\\x2f\\x41\\x06\\x6d\\xc9\\x8c\\x24\\xe4\\xc6\\x28\\xb3\\x4b\\x2c\\x7d\\x88\\x65\\x26\\x6e\\x40\\x8e\\xac\\x5c\\x6e\\x60\\xbd\\x4c\\xe5\\x18\\x86\\x54\\x6d\\x75\\x86\\x45\\xfa\\xd5\\x61\\xc0\\x8d\\x87\\x2d\\x6a\\xc7\\xb0\\x10\\x62\\xd2\\xe7\\x4a\\xf9\\x89\\xe3\\xd7\\xc5\\x42\\x15\\xd9\\x7e\\x95\\x2f\\xde\\x7c\\x89\\x29\\xcb\\x4d\\x5d\\x1c\\xab\\x41\\xf2\\xcc\\x2a\\x2d\\x95\\xef\\x4a\\x24\\xe2\\x1b\\x70\\xb7\\xa5\\xd9\\xd5\\x5e\\x64\\x26\\x6c\\xf9\\xa4\\xe9\\x63\\xba\\x70\\xe5\\x30\\xf8\\x7a\\x2b\\x6a\\x54\\x09\\x77\\x00\\x34\\xf8\\xb8\\x60\\xf6\\x06\\x0f\\x7b\\xa5\\x70\\x7c\\xec\\xaf\\x8a\\xa1\\xb8\\xe4\\xbb\\x15\\x4d\\xf0\\x8b\\x22\\x64\\x42\\x2d\\x86\\x0e\\x71\\xe5\\x18\\x1c\\x17\\xd9\\xf3\\x2a\\xa0\\x5e\\x45\\x3e\\x67\\xf5\\x8e\\xbb\\xf7\\x46\\x1d\\xeb\\xf2\\x52\\x52\\x7a\\x3b\\x27\\xf0\\x2b\\xf2\\xd5\\xcd\\xfb\\xe9\\xc1\\x6c\\x83\\x92\\x17\\x17\\x82\\x76\\x82\\xed\\x10\\xdb\\x03\\xbd\\x35\\x52\\x61\\xdb\\x5f\\x4a\\x26\\x0c\\x30\\x05\\x97\\x26\\xee\\xd2\\xf2\\x9e\\x6c\\xf8\\xd5\\x0b\\x47\\x72\\xb9\\xb7\\x9b\\x5d\\x75\\x71\\x16\\xe9\\x49\\xe5\\x97\\x57\\x81\\x90\\x04\\x31\\x68\\xcd\\x8a\\xfe\\x1d\\x51\\xfa\\xb9\\xbc\\x2e\\xd8\\x6f\\x20\\xbc\\xec\\xed\\xec\\x35\\xbf\\x2e\\xb6\\xcd\\xa5\\x07\\xb4\\xc5\\x07\\x78\\xb8\\xc9\\x17\\x7f\\xbc\\x35\\x32\\x05\\xcc\\x85\\xaa\\xf9\\x2f\\xf3\\x47\\x43\\x8f\\xb0\\xca\\x66\\x85\\x18\\x63\\x47\\xb2\\xc2\\x18\\x90\\xbc\\x47\\x81\\x90\\x41\\x13\\x7e\\xb7\\x2e\\x27\\x8c\\xbc\\xba\\x5a\\xf4\\x3d\\xe6\\xb6\\x7f\\x29\\x5b\\xbe\\x0c\\x24\\x92\\xd3\\x18\\x21\\x06\\xab\\xfb\\xb9\\xf0\\x3a\\x36\\x9c\\x1b\\x29\\x21\\x1d\\x02\\x6e\\xb0\\x33\\x30\\xc3\\x52\\x03\\x41\\x45\\xa7\\xb8\\x08\\xa8\\xc9\\x5b\\xb4\\x99\\x5b\\xf8\\xae\\x10\\x0a\\xe6\\xde\\xfd\\x5e\\xd6\\xc6\\x37\\x35\\x43\\x28\\x3c\\xba\\xd6\\x77\\xa7\\xea\\xeb\\xc4\\xaa\\x5f\\xa9\\xc6\\x81\\xda\\x08\\xc5\\x12\\x08\\xba\\xb9\\xe6\\x99\\xe7\\x25\\xf3\\xdf\\x3f\\xc5\\x12\\x4e\\x8c\\x1d\\xd9\\x7a\\x9a\\x42\\xa7\\x79\\xcc\\x22\\x7e\\x46\\x43\\xe7\\x6e\\x7f\\x22\\xd8\\xee\\x52\\x97\\xb7\\xf1\\xee\\x88\\x48\\xb4\\xb3\\xa9\\x2e\\xc6\\x22\\xed\\xe1\\x7c\\x40\\x0a\\xee\\x4f\\xa7\\xf2\\xcd\\xff\\xc9\\x8b\\x57\\x46\\x8d\\x53\\x95\\x1f\\x2a\\x3c\\xb4\\x64\\xa1\\xe3\\xcc\\xff\\x2a\\x3c\\x1f\\x69\\x5f\\xe4\\x4f\\x05\\x2d\\x1f\\x0e\\x21\\x59\\xa1\\x4d\\x9e\\xc3\\xaa\\x16\\x23\\xf5\\x61\\xfd\\x42\\x0d\\x76\\x32\\x63\\x25\\x72\\x45\\x1f\\x3c\\xf5\\xbb\\xf9\\x3e\\x52\\x2c\\x9d\\xec\\x3e\\xd7\\x59\\x9d\\x91\\x9c\\xdb\\x06\\xc2\\x18\\xce\\xcb\\x4d\\x24\\x59\\xde\\xab\\xc0\\x55\\xcf\\x57\\x62\\x79\\x17\\xcc\\x2d\\xa9\\x21\\x77\\xe5\\x76\\xe4\\x37\\x87\\x25\\x82\\x56\\x58\\x1a\\x2d\\x0f\\xf9\\x76\\x9f\\x26\\x12\\x6c\\x4d\\x04\\xcc\\x10\\x43\\xa7\\x61\\x79\\x04\\x49\\x03\\xab\\x1b\\x6c\\x0b\\x4a\\xc9\\xb5\\x3c\\xd6\\xa4\\x16\\x8b\\xc1\\x81\\xc1\\x6b\\xe6\\x53\\x10\\x55\\x66\\x9b\\xc0\\xcd\\x29\\x76\\xad\\xd3\\xec\\x2b\\xd3\\x76\\x2a\\x76\\x18\\xec\\xf2\\xa3\\x68\\x79\\x36\\x22\\x79\\xee\\x44\\x43\\xb2\\x26\\x97\\x8e\\x20\\xac\\xad\\xf4\\x32\\x86\\x0b\\x05\\x39\\xa5\\x16\\x2c\\xf0\\x6c\\x0c\\x03\\x2a\\x62\\x48\\x31\\x5f\\x72\\xec\\x7e\\x04\\x49\\x2f\\x23\\x7d\\x18\\x92\\x88\\x53\\xe0\\xec\\xa2\\x56\\x68\\x36\\x58\\xde\\x9b\\x7f\\xdd\\x98\\x42\\x37\\xa9\\x10\\xa2\\x05\\x12\\x87\\x74\\x83\\x8e\\x1d\\xc1\\x6a\\x56\\x98\\x2f\\x06\\xd0\\x6a\\xfc\\x0e\\xda\\xb9\\x4b\\x11\\x46\\x0b\\x33\\x26\\x55\\xd3\\xdd\\x33\\xcc\\xac\\xc7\\xcc\\x4b\\x5f\\x1b\\xb7\\x10\\x9e\\x8f\\x68\\xf3\\xa0\\x6e\\x7f\\x45\\xdf\\x7d\\x9f\\x86\\x13\\x31\\x90\\xe0\\x87\\x29\\xe6\\xe1\\x12\\xc2\\x78\\xb9\\x85\\x76\\x01\\x61\\xa5\\x70\\xa2\\x83\\x4b\\xf0\\x19\\xbc\\x81\\xeb\\xd5\\x69\\x81\\xd3\\x19\\xcc\\xa7\\xb0\\x98\\xe3\\xf2\\x42\\xe9\\x06\\x6c\\x26\\x38\\x68\\xb1\\xa6\\xd2\\x9b\\xf1\\x96\\x26\\x88\\x91\\x09\\x92\\xe2\\x6e\\x42\\x32\\x16\\x1c\\x09\\x16\\xf0\\x26\\xbd\\x79\\x8c\\xc5\\xed\\xea\\x25\\x81\\x10\\x5b\\x97\\x2d\\xd1\\x42\\x07\\x35\\x72\\x3b\\xd8\\x90\\xf2\\x0d\\x23\\xdf\\x4a\\x99\\x3e\\xfa\\xe8\\x57\\xba\\xe0\\xe0\\x8d\\xa2\\xae\\x34\\x60\\x95\\x5e\\x50\\x10\\x81\\x6c\\x35\\x38\\x61\\xbc\\xba\\x52\\x76\\x67\\x83\\x11\\xae\\x70\\x99\\xb8\\xd5\\x7e\\x1d\\x85\\xec\\xe5\\xf3\\x47\\x18\\x1b\\xe3\\xc1\\xc4\\x40\\xdb\\x32\\x38\\x6d\\xbf\\x96\\xbb\\xff\\x44\\x2e\\x55\\xb4\\x88\\x1b\\xd6\\x1c\\x2c\\xc7\\x74\\x29\\xd4\\x35\\x53\\xbf\\xbb\\x53\\xbd\\x0e\\x41\\x78\\xad\\xcb\\xbc\\xc9\\xac\\xba\\xe9\\xa6\\xfb\\x99\\xc4\\x38\\x18\\x60\\x83\\xc1\\xd0\\x56\\x70\\x7b\\x0f\\x90\\x33\\xa0\\x93\\x6b\\x1b\\xb4\\xc0\\xae\\xbb\\x32\\x63\\xfe\\x32\\x8d\\x3d\\x60\\x37\\x49\\xd6\\xc5\\xc4\\x2d\\x09\\xa3\\xe1\\x89\\x93\\x0d\\xb1\\x6d\\xcb\\x05\\xcf\\xce\\x83\\xc5\\x63\\x71\\x3d\\xfe\\xbe\\x32\\xba\\x4f\\x7a\\x82\\xc3\\x73\\xea\\x43\\x55\\x8c\\x91\\x20\\xfd\\x05\\x99\\x78\\xb3\\x7c\\x23\\x8e\\x7a\\x2f\\x74\\x01\\xf6\\xd0\\x45\\x07\\x5f\\xe2\\xdf\\xf8\\xd1\\xd1\\x8d\\xb5\\x85\\x77\\x84\\xb3\\xb8\\x43\\x9a\\x2e\\xd9\\x2c\\x92\\x6b\\x83\\x45\\xa3\\xd3\\x17\\x15\\xdf\\x7a\\xdb\\x52\\xa7\\x74\\xc9\\x92\\x82\\x61\\x5d\\x6a\\x69\\xa0\\x5b\\x0b\\x9e\\x7f\\xa0\\x93\\x5b\\x0a\\xab\\x0a\\x17\\x89\\x82\\x83\\x62\\xff\\xfa\\xd0\\x03\\x07\\x35\\x53\\x9d\\x0b\\xb4\\x6c\\x47\\x9c\\x51\\xc8\\x57\\x81\\x6b\\x76\\xd1\\x7e\\x6d\\x8a\\x21\\x99\\xb0\\xae\\xb1\\x7b\\x9c\\x5c\\xd6\\xef\\xde\\x29\\xf6\\x98\\x40\\x27\\x26\\x6e\\xb1\\xd1\\x9a\\x9c\\x60\\x03\\x76\\x6f\\xbd\\xbd\\x5d\\xc5\\xfa\\xd8\\x7b\\xf6\\x49\\x6d\\xfa\\x6a\\x63\\x79\\xd5\\x72\\x72\\xd5\\x78\\xe8\\xdf\\xfd\\x73\\xa8\\xbe\\x81\\xcf\\xbf\\x18\\x92\\x14\\x58\\x0c\\xf5\\x43\\x32\\x68\\x69\\x9e\\x20\\xa4\\x62\\xcb\\x02\\x9f\\x0a\\x81\\xf3\\xdb\\x2b\\xa1\\x76\\x21\\x7f\\x26\\x4a\\xc0\\x66\\x60\\x83\\x7d\\xb8\\xec\\x29\\x20\\x1c\\x65\\xc8\\x7c\\x8e\\x4b\\x60\\xaf\\x26\\xed\\xbd\\x60\\x79\\xd2\\x78\\xcb\\xad\\x90\\x1f\\x3b\\x33\\x83\\x46\\x64\\xa7\\x5c\\x7b\\xe9\\x50\\xab\\xa9\\x1c\\x25\\x8a\\xf9\\x23\\xb6\\x92\\xd5\\x17\\xf7\\x67\\x67\\xba\\x50\\x0f\\x94\\x5d\\x62\\x0d\\xa8\\xd7\\x5b\\x11\\xb2\\x21\\x51\\xf4\\x5b\\x1b\\xf5\\x0f\\xdd\\xa4\\x3f\\x69\\xd5\\xe6\\x46\\xdf\\xef\\x94\\xd8\\x71\\xd3\\xcf\\x39\\xc7\\xe7\\xa7\\x21\\x24\\x42\\xe0\\x18\\x3a\\xb4\\xe3\\x77\\x24\\xa3\\x5f\\xa1\\x72\\x7b\\xa2\\xfc\\x40\\x55\\x63\\xe8\\x07\\xfa\\x8f\\x5c\\x99\\xc7\\x81\\x56\\xf2\\x79\\x64\\xd0\\x2a\\x49\\xc7\\x29\\x7e\\xfa\\xda\\x66\\xa9\\xf2\\xcb\\x84\\xc8\\x88\\x4d\\xe6\\x4f\\x7b\\xcf\\xf1\\x54\\x1d\\x6b\\x75\\xb0\\xbd\\xb3\\x79\\x0e\\xde\\x53\\xb0\\x5b\\x30\\x4e\\x92\\xcc\\x63\\xf1\\xf9\\xf7\\xad\\xae\\x62\\x66\\x4d\\x3e\\xba\\x69\\x43\\xef\\xa0\\x43\\x62\\x75\\x92\\x7e\\x76\\x3d\\xf8\\x0d\\x4f\\xb2\\x95\\x31\\x3b\\x1e\\x61\\x3f\\xc1\\x19\\x3a\\xcc\\x4f\\xaa\\x7b\\x2a\\xee\\xfa\\x18\\xec\\x45\\xaa\\xbc\\xc7\\xe0\\xa5\\xcb\\x16\\xdb\\xa2\\x72\\xfa\\x68\\xfd\\x16\\x80\\xcc\\x03\\x7b\\x75\\xcc\\x6e\\x2f\\x72\\xf2\\x29\\xc0\\xc9\\xae\\xbc\\x36\\x9b\\xa3\\x51\\x92\\x65\\xd3\\xb4\\x91\\x3a\\x57\\x0a\\xb5\\x8b\\xa7\\x1c\\xce\\xe7\\x89\\x34\\x5f\\xe8\\xb8\\x11\\xa1\\xde\\xea\\x56\\x16\\xc6\\x5f\\x0b\\x49\\x8f\\xbe\\x6a\\x80\\x8d\\xab\\xb3\\x5d\\x05\\x74\\x20\\xf4\\xf1\\x1b\\xc9\\x1b\\x66\\x61\\x34\\x5c\\x8b\\xe8\\xca\\xc1\\xb4\\x5c\\x19\\xe8\\x86\\xa4\\x53\\x90\\x55\\xea\\x77\\xe4\\xea\\xdf\\x38\\xe9\\x4f\\xa3\\x9e\\x62\\x82\\xcb\\x27\\x2f\\x5f\\xab\\x57\\x8f\\x06\\xc0\\x8d\\x4a\\x46\\x37\\x94\\x24\\x64\\x99\\x2f\\xee\\x3c\\xca\\x46\\xda\\xcf\\x11\\xdb\\x2d\\x83\\x97\\xca\\x13\\x0f\\x7b\\xaa\\x49\\x8d\\x15\\x10\\xb6\\x81\\x2c\\x19\\xe7\\x47\\x36\\x36\\xc0\\x5f\\x09\\x4a\\xd9\\xf3\\x5a\\x9c\\xb6\\x07\\xb9\\x14\\xe3\\xa5\\x7f\\x57\\xe0\\xbd\\x67\\x7f\\xfd\\x5f\\xa2\\xda\\xbf\\x54\\x0e\\xfc\\x42\\xf5\\x22\\x64\\x85\\xe1\\xf1\\x52\\xb0\\x04\\x5b\\xf1\\x01\\x4e\\x82\\x88\\xc3\\x58\\xda\\x0f\\xd1\\x40\\xf7\\xf8\\xcb\\xab\\xa0\\xce\\xc6\\x87\\x3e\\xac\\x69\\xa8\\x82\\xc1\\xca\\xdb\\x2f\\x4f\\x7f\\x51\\x20\\xc4\\x9e\\x0a\\x8a\\x50\\xb0\\x3d\\xe6\\x31\\xd1\\x93\\x4f\\x7d\\x49\\x9f\\x56\\x30\\x19\\x07\\xa3\\x89\\x1e\\x8e\\xd4\\x78\\xe8\\xd7\\x64\\x9e\\x28\\x08\\xa6\\x4d\\x9c\\xff\\x91\\x32\\x01\\xb6\\x97\\x4a\\x84\\xab\\x61\\x92\\x6e\\xbe\\x8d\\xb7\\x36\\x1b\\x7d\\xb4\\x84\\x0c\\xa9\\x2c\\x20\\x93\\x46\\xea\\x8c\\x20\\xef\\xc7\\x4a\\x70\\x24\\x3a\\x5f\\x3a\\x35\\x8f\\xe1\\xb1\\xe0\\xd9\\x75\\x53\\xd1\\x86\\x34\\x03\\x1c\\x52\\x3d\\x56\\xeb\\x39\\x74\\x5d\\xcb\\xd9\\x57\\x4e\\x3e\\xc0\\x4d\\x99\\x55\\xbe\\xa6\\x44\\x71\\x7f\\x1d\\x36\\x5f\\xe0\\x88\\x28\\x97\\x3f\\x5f\\xaf\\x5e\\x7c\\xd5\\x2f\\xec\\xa2\\x1f\\x15\\x5b\\x8d\\x4d\\x84\\xf0\\x25\\xef\\x56\\x28\\xfb\\xf7\\xa5\\x7f\\xd9\\xd1\\x2f\\x57\\xde\\xcd\\xce\\xa4\\x56\\x01\\xf3\\xfa\\x8b\\xb0\\x36\\xab\\xfc\\xe0\\x67\\xb3\\x41\\xe9\\x04\\x3a\\xca\\x3c\\x07\\xaf\\xe9\\x11\\x8a\\x34\\x03\\x9c\\xa7\\xe7\\xa6\\xf3\\xe7\\x9d\\xae\\x61\\x0f\\x5b\\x0d\\x50\\xfd\\xb4\\x92\\xe9\\x6b\\x94\\x46\\x02\\x25\\xbc\\x16\\x15\\xf3\\x52\\xba\\x29\\x1f\\xd3\\x73\\x22\\xad\\xd7\\x56\\x96\\x90\\x41\\x43\\xf9\\xdd\\xc3\\x01\\x8e\\x26\\x1a\\xde\\x3e\\x22\\xf2\\xb8\\x2b\\xd6\\x5f\\x85\\x04\\x42\\x0f\\x1b\\xe9\\x7a\\x47\\x32\\x51\\x11\\x1f\\x5c\\x1c\\xaf\\x1c\\xd2\\x6b\\x3e\\x3c\\x2a\\x6b\\xc8\\xdc\\x6c\\x4e\\x12\\xf7\\xce\\x8f\\xde\\x77\\x7f\\x5b\\x19\\xe0\\xa0\\x25\\xfa\\x63\\x03\\xb6\\x25\\xcd\\xef\\x69\\x2b\\x1e\\xd8\\x48\\x03\\xf5\\x85\\xca\\x4d\\xdb\\x5b\\xc1\\x60\\x85\\x0b\\x51\\x5c\\x85\\xd6\\x58\\x9f\\x7e\\x37\\xc7\\x10\\x24\\x4f\\x1a\\x40\\xc8\\x62\\x87\\xb4\\x49\\x18\\xb1\\x52\\x21\\xb6\\xe5\\xf1\\x78\\x70\\x4d\\xcc\\xca\\x0a\\x18\\x1d\\x09\\x7d\\x89\\x35\\x58\\x31\\x8f\\x69\\xfc\\x86\\xd9\\x75\\x15\\xfd\\xbd\\xf4\\x91\\x7d\\x2d\\x3b\\x37\\x4d\\xad\\xa4\\x39\\xc2\\x90\\xd3\\x96\\x78\\x3f\\x59\\x42\\x42\\x09\\xf6\\x23\\xb5\\xac\\x17\\x1f\\xb3\\x46\\xec\\x94\\xd4\\xe4\\xaa\\x01\\xf5\\xc9\\xa4\\x62\\xdc\\x75\\x42\\xf2\\x2b\\x57\\xba\\x9c\\xb7\\x77\\x2c\\xaa\\xe7\\x16\\x6a\\x1c\\x1a\\x24\\xa2\\x81\\xdd\\xe6\\x3e\\xf9\\x78\\x3d\\x78\\x69\\xc2\\x47\\x41\\x25\\xb9\\xf8\\xa2\\xfa\\xfe\\x70\\x5f\\x53\\x5a\\xea\\x13\\xd1\\xc9\\x83\\xa3\\x13\\x15\\xb9\\x45\\x65\\xf2\\x3f\\x9d\\x5a\\x99\\xc7\\x07\\xc7\\x2a\\x23\\x98\\x3d\\x48\\x4b\\x2a\\x13\\x2f\\xa8\\xf8\\x45\\x41\\x4f\\xaa\\x97\\xe9\\x8c\\xa3\\xa6\\xd8\\xf2\\x6a\\x89\\xca\\x2a\\x5a\\x0c\\x79\\xe3\\x26\\x24\\x48\\x65\\xe3\\x66\\x53\\x92\\xb7\\x78\\x0b\\xb2\\x8f\\xfc\\x4a\\xdf\\x16\\xed\\x77\\xd9\\xe2\\x58\\xde\\x31\\xf0\\x15\\xf0\\x00\\x69\\xad\\xcc\\x14\\xf8\\x1c\\x09\\xe1\\xc1\\xa5\\xa1\\xa9\\x47\\xc5\\x5e\\xe2\\xa6\\xfa\\xab\\x5d\\x5c\\xa4\\x58\\xdf\\x2f\\xb9\\xc7\\x98\\xe6\\xad\\x02\\x51\\x74\\x1d\\x01\\xb2\\x80\\x5d\\xc4\\x79\\xcb\\x64\\xbd\\xef\\x62\\xb2\\xe2\\x52\\xff\\xed\\x59\\xfd\\x18\\x99\\xd7\\x68\\x49\\x27\\xd6\\xe9\\x62\\x96\\xbd\\x5a\\x2d\\xf5\\x25\\x52\\xfe\\x95\\xa2\\x20\\xab\\x2f\\xed\\xc6\\x84\\x53\\xc2\\x21\\x84\\x5c\\xe1\\x76\\x56\\xad\\x8d\\x74\\xc1\\xb7\\x63\\xb9\\x72\\x3f\\xeb\\x19\\xa2\\xef\\xf7\\xfb\\x44\\x31\\x3c\\xcd\\x06\\xf8\\xb9\\xde\\xaf\\x05\\x39\\xe1\\xb7\\x25\\xfe\\xf3\\xcb\\x7f\\x0a\\x21\\x1b\\x0c\\x59\\x05\\x3a\\xf4\\x6a\\x69\\x69\\x7c\\x3a\\xc0\\x12\\x18\\xe3\\x29\\x7c\\x63\\x74\\x59\\x64\\x03\\xab\\x0f\\x25\\x54\\xb0\\xb5\\x7c\\x9c\\xaf\\xbf\\x37\\x77\\x6e\\x0c\\xd4\\xa2\\xf8\\x10\\x45\\xad\\xc4\\x00\\x78\\x41\\x69\\xad\\x53\\x25\\xcd\\x75\\x15\\x08\\x5a\\xac\\x49\\x1e\\x73\\x93\\x6d\\xe8\\x30\\x14\\xee\\x5f\\x4e\\x15\\x29\\xbe\\x3c\\xcf\\x37\\xf3\\xcf\\x08\\xa4\\xa3\\xea\\x97\\x3a\\x63\\xdd\\x72\\xed\\x17\\x35\\x48\\x49\\x7e\\x53\\x17\\xa2\\xf4\\x79\\x25\\xc9\\xb2\\x2b\\x0a\\xaf\\x32\\x60\\x80\\x59\\xaf\\x84\\x8d\\xbd\\xfb\\xcb\\xe1\\x6e\\x35\\xd2\\x54\\xf6\\xa1\\xcc\\xc2\\xe2\\xb2\\x36\\xa8\\x34\\x51\\x61\\x81\\x64\\x82\\x6a\\x29\\xc2\\x31\\x96\\x3c\\xd4\\xcf\\xd4\\xfa\\x79\\xee\\x36\\x21\\xdd\\x90\\x95\\xc8\\x71\\xd6\\xa8\\xe9\\x6a\\x72\\x10\\x9f\\xc5\\x9a\\x92\\x9a\\x32\\x80\\xbe\\x1f\\x12\\x5e\\xac\\x64\\xeb\\x32\\x5f\\xed\\x55\\x48\\x6b\\x1d\\x27\\x8c\\xd4\\x44\\x73\\x45\\x35\\x1b\\xaf\\x68\\xd4\\xf7\\x7a\\x48\\x40\\x5c\\x34\\x8d\\xdd\\x4a\\x1d\\x04\\x4b\\xce\\x2b\\x1c\\x7f\\xdf\\x98\\x5f\\x98\\x2d\\x58\\x4a\\x7e\\xd9\\xaf\\x41\\x04\\x67\\x72\\x01\\xfd\\x60\\xf2\\x37\\xad\\xa7\\x41\\xa0\\xe4\\x79\\xc8\\x88\\x0d\\x7f\\xbd\\x86\\x8f\\x33\\x99\\xd5\\xfb\\x5d\\x1a\\xeb\\x8c\\xf8\\x2f\\x0f\\x25\\x9c\\x6c\\xa1\\x38\\x5c\\xf2\\xcb\\x42\\x8f\\x69\\x60\\xd2\\xe4\\x06\\xd4\\xe1\\x0d\\x70\\x18\\xa5\\x83\\x66\\xa0\\xc3\\xa4\\xfa\\x9c\\x47\\x3c\\x96\\x56\\xe5\\xae\\x64\\x71\\x19\\x5f\\x9d\\x09\\xc3\\x5a\\xd6\\xdf\\xb6\\xb5\\x70\\x53\\x20\\x90\\x7f\\x19\\x62\\xcd\\xc6\\xf6\\xfc\\x27\\x9b\\x39\\x8c\\xc7\\xe3\\xa7\\xcb\\x8d\\x01\\x0b\\x3e\\x16\\x23\\x7a\\x84\\xb9\\xcd\\x7b\\xe8\\xfb\\x2e\\x70\\x57\\x2e\\xe6\\xd2\\x5a\\x73\\x0e\\xa1\\xc8\\x26\\x14\\x6f\\x8d\\xdb\\x04\\x56\\x49\\x53\\x2c\\x87\\x8d\\x24\\xc0\\x0d\\xd7\\xa0\\x0e\\x20\\x20\\x16\\x87\\x8f\\x52\\xc7\\x63\\x95\\xce\\x03\\x80\\x06\\x78\\xe8\\x46\\x94\\xd5\\x40\\xa7\\xc8\\xfb\\x8a\\xde\\xa7\\x2e\\x8e\\x96\\xa8\\xff\\xfc\\x31\\x10\\x0f\\xb9\\x52\\x18\\xf2\\xd2\\xe2\\x5a\\xc8\\x89\\x07\\xfd\\x40\\xda\\x8b\\x4a\\x36\\x9a\\x01\\x12\\x1b\\x37\\x50\\x13\\x3d\\x6b\\x40\\x9e\\xc3\\xa2\\xe5\\x23\\xac\\x1f\\x16\\xdf\\x34\\x14\\xfa\\xed\\x13\\xdd\\x2d\\x7e\\xa8\\x7f\\x04\\x51\\x6a\\xde\\x40\\xae\\xb6\\x24\\xff\\x0d\\x97\\x62\\xd0\\x00\\xd6\\x1e\\x93\\x97\\xed\\xad\\x70\\x21\\x4f\\x99\\xec\\x11\\xed\\x34\\x89\\xcf\\x50\\x12\\xcd\\x14\\x84\\x21\\xec\\xe4\\x92\\xa6\\xd5\\x0d\\xfe\\x1b\\xf2\\xcd\\xea\\xb5\\xee\\x87\\x68\\xc5\\x25\\xf5\\x09\\x96\\xf7\\x13\\x8a\\x86\\x7a\\x9c\\xb9\\xca\\x0e\\x71\\x93\\x56\\x7c\\x22\\xbd\\x83\\x85\\xd6\\xdf\\x9f\\x19\\x18\\xe9\\x04\\x77\\x70\\xaa\\x67\\x8c\\xea\\xe7\\x74\\x95\\xcc\\xa4\\xc8\\xd9\\x4b\\x24\\xe8\\x6d\\xf5\\xc3\\xe2\\xb3\\xf3\\x41\\xf5\\x44\\x02\\x3f\\x27\\x69\\x37\\x99\\x5a\\x60\\xcf\\xf7\\x2a\\xd5\\xe2\\xdd\\xf8\\xf9\\xad\\xf1\\xfc\\x72\\xf8\\x80\\x5d\\x3f\\xdb\\xd1\\x01\\x41\\x33\\x52\\xc0\\x0f\\x6f\\x10\\xcb\\xdc\\xee\\x10\\xc4\\xdf\\xfc\\x0a\\xaf\\x8f\\x74\\xc2\\xfa\\x40\\xbd\\x44\\x88\\xbc\\xa4\\x6f\\xa4\\x0b\\x16\\xd0\\x23\\xa9\\xb5\\x5a\\x06\\x26\\x73\\x4c\\x66\\xa5\\x24\\xb7\\x3b\\x02\\xc9\\xc2\\x81\\x90\\x45\\x2a\\x13\\x56\\x1c\\x06\\xce\\x60\\x1f\\x82\\xfd\\x99\\x85\\xf0\\xe8\\x51\\x24\\x6d\\x24\\x8f\\x82\\x2d\\x2e\\x2a\\x23\\xbe\\xad\\x92\\x2d\\x89\\x37\\x7f\\xa3\\x6c\\xbc\\x0d\\x61\\xd3\\x6e\\xfd\\x1a\\x07\\x51\\x8c\\x3d\\x19\\x69\\x35\\x4b\\xc8\\xb5\\x50\\xbd\\x15\\x95\\xa0\\xd6\\x59\\xeb\\x08\\x85\\xc8\\x99\\xcc\\xa6\\x01\\x21\\xfe\\xa2\\x70\\x85\\x7d\\x6f\\xba\\x92\\x72\\xc0\\x73\\xc4\\x12\\x62\\x59\\x05\\xc0\\x2d\\x30\\xc3\\xba\\x28\\x7d\\x90\\xe0\\x1e\\x50\\x01\\xfa\\x2f\\xfa\\x3b\\x9e\\xe3\\x0a\\x38\\x42\\x07\\x85\\x89\\x3f\\xa2\\x5d\\x59\\x2a\\xf4\\x2f\\x35\\x02\\xd1\\x6e\\xe2\\x34\\xec\\x90\\xc2\\xff\\x89\\x9a\\xab\\x13\\xe6\\x22\\xdb\\xb4\\xc3\\x00\\x58\\xca\\xa6\\x58\\x9e\\x83\\x7f\\xf7\\x21\\xef\\x3c\\x71\\x23\\x49\\x7a\\xca\\xea\\x1a\\x58\\xd0\\xd2\\x3c\\x3c\\x73\\xd0\\xba\\xad\\x9e\\x43\\xb6\\x4c\\xd9\\x00\\xae\\x8b\\xac\\xea\\x8a\\xca\\x87\\x72\\x97\\x7b\\x5c\\x98\\xf2\\xf4\\x01\\xbc\\x61\\x4c\\x4e\\x58\\x1d\\x2f\\xd5\\xa8\\xa0\\x96\\x3b\\x70\\x8d\\x82\\x6f\\x0e\\x21\\x6a\\xa8\\x0c\\x2a\\x95\\x92\\x92\\x2d\\x5b\\x5c\\x1b\\xca\\xf0\\x42\\x32\\x16\\xab\\x31\\x69\\x8b\\xb3\\x9b\\xd3\\x03\\xa3\\x96\\xf3\\x1c\\x30\\x35\\x04\\xfc\\x46\\xa1\\x1f\\xe1\\xb2\\x88\\x13\\x2d\\x0c\\x74\\xa2\\x92\\xe1\\x67\\xbc\\x7c\\x07\\x98\\x04\\x6b\\xa7\\xbd\\x40\\xdf\\xf8\\xaa\\xdd\\x4b\\xc6\\x86\\x1c\\x4a\\xe7\\xce\\x3b\\xb8\\xc9\\x4e\\x5e\\x03\\xa7\\x15\\xfc\\xa2\\x10\\xb0\\xeb\\xd5\\x46\\x95\\x7f\\xb1\\x92\\x8e\\xb3\\xe3\\xd5\\xc5\\x19\\x30\\xc0\\x04\\x90\\xa9\\x60\\x84\\x26\\x1a\\x88\\x3a\\x2d\\x76\\x59\\xb8\\x39\\x06\\x3b\\xb4\\x50\\xa9\\xa4\\xb8\\xdc\\x4b\\x06\\xd3\\x11\\x75\\x43\\x03\\xea\\x31\\x07\\x6b\\x25\\x68\\x4e\\xb1\\xe0\\x8a\\x01\\x83\\x88\\x68\\x4f\\xae\\x6b\\x82\\xbf\\x24\\xa3\\xee\\x6e\\x52\\x39\\x09\\x6c\\x16\\x0f\\x83\\xe9\\x26\\xf7\\x7b\\xe6\\x51\\xad\\xb7\\x40\\x21\\xf1\\x10\\x17\\xfc\\x30\\xc7\\x94\\x91\\x4c\\xde\\xed\\x40\\xa5\\x14\\x07\\x2a\\x31\\x0d\\xc2\\x93\\x6e\\x8a\\x25\\x61\\xcd\\xab\\x63\\xdb\\x81\\xb7\\x6c\\x05\\x82\\xa8\\xe1\\x4a\\x12\\xa8\\xa4\\xcf\\xf8\\x6b\\xf2\\x2c\\x90\\x13\\x8d\\xa6\\xf3\\x3e\\x80\\x1c\\xc9\\x8f\\x72\\x48\\x1a\\x93\\xec\\x88\\xba\\x18\\x19\\x96\\x93\\x39\\x6a\\x31\\x41\\x05\\x67\\xc0\\xc0\\x6f\\x34\\xdd\\xbe\\x9c\\x1f\\xe3\\xe0\\x02\\xc6\\xf1\\xd9\\x5c\\xa9\\x77\\xcb\\xcf\\x52\\x19\\x6f\\x5d\\x78\\x9a\\xf3\\x32\\x4e\\x41\\x13\\xb6\\xa3\\x66\\xe8\\xdb\\x38\\x4b\\xc7\\x21\\x31\\xb4\\xe9\\x28\\x05\\xb1\\x3e\\xc9\\x14\\x43\\x98\\x7c\\xbd\\x1e\\x2b\\xc3\\x84\\xe9\\xac\\x34\\x45\\xec\\x80\\x13\\x06\\x80\\x9c\\x30\\xd0\\x1a\\xd6\\xc4\\xd7\\xc9\\x67\\x0b\\x5a\\x26\\xe2\\x60\\xa0\\xbd\\x22\\x00\\x47\\x8e\\x4c\\x22\\xea\\x50\\x02\\x04\\xc2\\x61\\xde\\x19\\xbd\\x34\\x52\\x17\\x9d\\x74\\x02\\x28\\x68\\x10\\xed\\x0c\\x41\\x76\\xcf\\xd1\\x4d\\xe8\\x05\\xfa\\x72\\x32\\xf2\\xe4\\x90\\xdb\\x82\\x10\\xc2\\x78\\x4f\\x75\\x69\\x85\\x97\\xea\\x5c\\x87\\xd5\\x3c\\x85\\x86\\x5d\\x6d\\xb0\\x5c\\xdd\\xd1\\x51\\x81\\xc7\\x2c\\xa1\\x25\\x04\\x98\\x59\\xdf\\x48\\x4a\\xdf\\xd5\\xb4\\xe1\\x95\\xe0\\x3d\\xd7\\x05\\xa9\\x47\\xac\\xf5\\x55\\x61\\x1c\\x55\\xdb\\x7b\\x40\\x8a\\xf9\\x41\\x63\\x6d\\x7d\\xae\\x9c\\x3e\\x6e\\x33\\x33\\xb1\\xb2\\xae\\x41\\x64\\xd2\\x6c\\x61\\xe3\\x17\\x18\\x61\\x46\\x0d\\x24\\x38\\x42\\x55\\xb2\\xe7\\xc9\\x12\\xe3\\x55\\x26\\x9e\\xfe\\x2a\\xcd\\x73\\xc9\\x39\\x68\\xba\\xde\\x71\\x5a\\x86\\xbe\\x3a\\xcb\\xdd\\x6d\\x9a\\xb0\\x26\\x3f\\x74\\xcc\\x93\\xc0\\xcb\\x9d\\x0e\\x5a\\xb2\\x9f\\x3f\\x96\\xe1\\xb1\\x23\\x18\\x36\\xac\\xc9\\xbc\\x35\\xc5\\x92\\xa6\\x0d\\x61\\x39\\xb1\\x1c\\x1c\\x59\\x9d\\x10\\x04\\x93\\xd7\\xa6\\x85\\x8b\\x7e\\x7c\\x74\\xdc\\x1a\\x32\\x25\\x0c\\xfc\\xb5\\x59\\x38\\xe2\\xd6\\xf9\\x8e\\xc1\\x0a\\xa0\\x16\\xd8\\x15\\x24\\x37\\xbd\\x8d\\xe1\\x45\\xab\\x65\\xfc\\xe7\\xe9\\x52\\xfa\\x82\\x63\\xf0\\xce\\xee\\xc7\\xf5\\xef\\x41\\x4d\\xb7\\x38\\xe7\\x5c\\x5f\\xc8\\xb0\\x52\\xa0\\xee\\x1d\\x21\\x43\\xaf\\x9d\\x01\\xb4\\x5b\\xe3\\x70\\x0b\\xe4\\x8a\\x82\\x04\\xfc\\xed\\x85\\xc0\\x73\\xc0\\x39\\x5c\\x3a\\xc0\\xe9\\xb9\\x09\\xe4\\xb3\\x3f\\xc3\\xe7\\xe9\\xb8\\xd9\\x74\\x03\\xbc\\x06\\xcc\\x99\\xeb\\x0a\\x41\\xf3\\x2f\\xaa\\xb3\\xd6\\x5c\\x16\\x84\\xb8\\xa0\\x6b\\x37\\xf2\\x9e\\xf5\\x32\\xab\\xc0\\xde\\x58\\x1d\\x09\\x29\\x30\\x07\\xed\\x77\\x1b\\x98\\x80\\x85\\x12\\xab\\x8d\\xb8\\x04\\xfc\\xae\\x39\\x8b\\x13\\x3c\\x64\\x3e\\xd6\\x01\\x91\\x06\\x50\\x81\\xa2\\x91\\x75\\xcc\\xdd\\x90\\x5b\\xc9\\x3c\\x5b\\xbf\\x57\\x9d\\xb7\\xb1\\x56\\x38\\x7c\\x14\\xfd\\x2c\\x6f\\x48\\x18\\xfe\\x69\\x10\\x8c\\xf2\\x54\\xb0\\x7d\\xb4\\x8f\\xd1\\xc5\\xa4\\xfe\\xc6\\xc1\\x64\\x48\\x86\\x28\\x86\\x2d\\x9b\\x44\\xed\\x3e\\xde\\xb9\\x98\\x98\\x91\\xd6\\x71\\x16\\xbe\\x48\\x81\\x89\\xb1\\xfc\\x02\\x9b\\xe8\\xc7\\x24\\xfb\\x21\\x3b\\xed\\x66\\x72\\x96\\x00\\x95\\xc5\\x72\\x57\\x6d\\x76\\xa9\\xea\\x71\\xcd\\x2b\\xff\\x92\\x8a\\x2a\\xa1\\x58\\xf1\\x5c\\x97\\x61\\x0f\\x6b\\xb5\\x6a\\x2a\\x6f\\x85\\xc5\\xa3\\x5b\\xe0\\x36\\x44\\x63\\xcb\\xba\\x99\\xdf\\x8d\\x5f\\x1c\\xbe\\x2e\\x19\\xa0\\x4e\\x4b\\xf1\\xf2\\x1d\\x29\\x1e\\x80\\xab\\xb6\\x3d\\x3f\\x88\\xec\\x4b\\xd9\\x02\\x9d\\x96\\x44\\x26\\x5e\\x01\\x3c\\x29\\x07\\x77\\xbe\\xcc\\xe5\\x66\\x3d\\xfc\\xa4\\xe5\\xa9\\x37\\x58\\x4f\\x0b\\x06\\x1c\\x62\\xde\\x87\\x53\\xbd\\x50\\x45\\xcc\\x03\\xb5\\x53\\xc2\\xd8\\x6c\\xde\\xdb\\xf1\\x24\\x08\\x1b\\x24\\xb4\\xed\\x8e\\x2d\\x35\\x78\\x66\\x5b\\xed\\xb4\\xa1\\xfb\\xe2\\x0d\\xfa\\xbb\\x1f\\xdb\\xea\\x93\\x10\\x03\\x2e\\x39\\x32\\x2a\\x8a\\x8f\\x76\\x7d\\xfa\\x94\\x44\\x29\\x00\\x4e\\x98\\x31\\xfd\\x0f\\xfa\\x57\\x90\\x80\\x20\\x41\\xcf\\x5d\\xd7\\xc7\\x61\\x2f\\x60\\x67\\x71\\x3e\\x8a\\x8d\\x7e\\xf7\\x76\\x0c\\xb3\\x73\\x9f\\x5e\\x9c\\x27\\xb3\\x04\\x2e\\x4f\\xa2\\x5a\\x49\\x21\\xdd\\x0f\\x6b\\xf5\\x12\\xf8\\xe3\\xa3\\x51\\xf2\\x27\\xc7\\xc2\\xb3\\xea\\xa9\\xe3\\xdb\\x6c\\x27\\x3a\\xb2\\xc3\\xb7\\xe9\\xf8\\xd3\\x45\\x7f\\xa9\\x46\\xb7\\x6c\\xf9\\x83\\xcd\\x87\\xc2\\xa0\\x13\\x3f\\xd8\\x51\\x21\\xa9\\x71\\x30\\x0c\\x36\\x90\\x63\\xdc\\xa1\\x19\\x38\\x4a\\x03\\xd4\\x44\\x8a\\x82\\x26\\xca\\x87\\x8a\\xf7\\xef\\x3a\\x2c\\xe3\\x4a\\x06\\x0e\\xdc\\x7f\\xd1\\x8c\\x41\\xe1\\x62\\xae\\xc5\\x4a\\x70\\x60\\x18\\x00\\x5a\\x25\\xb0\\xb4\\x0c\\x45\\xb6\\xb2\\xf8\\x60\\x64\\x0c\\x0c\\xd6\\xa4\\x3c\\x8e\\x0c\\x27\\xcb\\xd8\\xac\\xe0\\xd2\\x42\\xef\\x01\\x28\\x17\\xca\\x75\\x25\\x7a\\xf5\\xd9\\x9d\\xa4\\xed\\x31\\x11\\xeb\\x55\\xa0\\xe9\\xcf\\x97\\x4c\\xd4\\xc0\\x14\\xa9\\x4d\\x66\\xc0\\xa0\\x7f\\xa0\\x97\\x38\\x73\\xae\\xb8\\x87\\xc5\\x40\\xde\\x32\\x5e\\xff\\xe1\\x24\\x5b\\x2e\\x50\\x17\\x1d\\xdc\\x19\\xaf\\xed\\xce\\xb7\\x82\\x14\\x2d\\xb1\\x23\\x42\\xc8\\xeb\\x33\\x3c\\x37\\x7e\\xff\\xba\\x63\\xd6\\x0f\\x0e\\xdc\\x78\\x8f\\x7a\\x9e\\xd2\\x7c\\xb2\\xf8\\x90\\xa8\\x79\\x3c\\x22\\x11\\xaf\\xdd\\xdf\\x7a\\x3b\\x91\\x85\\xeb\\x65\\x2e\\xc3\\x1a\\x75\\x09\\xc3\\x17\\xf6\\xa9\\x4f\\xf3\\x87\\x55\\x42\\xde\\xa3\\x8a\\xb1\\xac\\xc8\\xe0\\x16\\xa2\\x1f\\xc9\\xee\\xa9\\xec\\x25\\x00\\x93\\x92\\xe8\\x4b\\xe5\\x9e\\x01\\x1b\\x27\\x26\\x96\\xbc\\x6b\\x54\\x3b\\x56\\x6b\\x75\\xe9\\x5a\\x90\\x8d\\x53\\x20\\x66\\xd7\\x00\\x2b\\x26\\x50\\xb9\\x24\\xb8\\x22\\x5e\\x62\\xb9\\xb9\\x08\\xdb\\x71\\xd6\\x95\\xce\\x10\\x00\\x6a\\xfc\\xce\\x03\\xd8\\x48\\xb8\\x03\\x56\\x4e\\x9d\\xa6\\x4d\\x52\\x9a\\xea\\xa7\\x7e\\x0f\\x9e\\xeb\\xb5\\xca\\x71\\x15\\xb2\\x62\\xac\\x1c\\xb5\\xc0\\x65\\xf9\\x83\\x9c\\xa8\\xc1\\xa0\\x90\\xcf\\x8f\\x11\\x3b\\x0d\\xa8\\x75\\x41\\xe9\\xfb\\x03\\x29\\xa4\\x1f\\xd4\\x6c\\x38\\x14\\xa0\\xf6\\xc0\\x6b\\x5b\\xf4\\xdc\\x10\\xb4\\x68\\x3d\\xb2\\xe2\\xbf\\x2c\\xb0\\x5a\\x6d\\x86\\x07\\x22\\xcf\\x95\\xc5\\x4e\\x4b\\x6d\\x59\\xb6\\x5c\\x65\\x04\\x78\\xad\\x07\\x01\\x76\\x08\\xa7\\xa1\\x36\\x33\\xff\\x30\\x27\\xeb\\x97\\xeb\\x5b\\x32\\x9a\\x61\\x81\\x43\\x18\\x16\\x10\\x84\\x15\\x05\\x88\\x02\\x05\\x13\\xf6\\x67\\xfb\\xd3\\x30\\xb8\\xdb\\x67\\xcd\\xac\\x8c\\xf4\\x04\\x93\\x95\\x6d\\x1a\\x93\\x3f\\x24\\xb7\\x56\\x25\\xa1\\x26\\xc6\\x26\\x7b\\x13\\x37\\xa8\\x63\\xc7\\x66\\x21\\xb2\\x32\\x6d\\x5b\\x6c\\x25\\xf7\\x02\\x27\\x67\\xd6\\x8e\\x23\\x81\\x63\\x55\\x5b\\x6e\\xe6\\x84\\x0a\\xef\\xd1\\x0c\\x91\\xe3\\xb5\\xd4\\x54\\x33\\xb6\\x32\\x91\\x0b\\x3b\\xb4\\x52\\x3a\\xea\\x69\\x2f\\x34\\xcc\\x0c\\x4a\\x2c\\x5e\\xa2\\xf7\\xb1\\x95\\x54\\xa2\\x56\\x66\\xf9\\x65\\x6b\\x5d\\x02\\x5a\\x80\\xb5\\x76\\x04\\xaf\\x60\\x54\\xf5\\x7e\\xb9\\x56\\xd2\\xd9\\x5a\\x86\\x5d\\xe3\\x26\\x83\\x97\\x2a\\xdb\\x1f\\x34\\xde\\x06\\x7b\\xce\\xab\\xb2\\x71\\xe2\\xf7\\x70\\x44\\x04\\xa9\\x14\\x38\\xa5\\x52\\x8e\\xb2\\x0a\\xd5\\x17\\x15\\xa6\\x5b\\x43\\x6e\\xb4\\x1f\\x20\\xd1\\xf3\\xfb\\x53\\x39\\xa0\\x03\\xf8\\x45\\xf5\\x3d\\x3a\\xae\\x41\\xa4\\xbe\\x34\\xe6\\x0c\\xf5\\xee\\x92\\x96\\xd1\\x8b\\x0a\\x27\\xbd\\xaf\\xbd\\x08\\x07\\xb7\\x3c\\x7c\\x30\\xad\\x49\\xf9\\x75\\xbd\\xaa\\x99\\xd3\\x7d\\x48\\xf6\\xcf\\x08\\x25\\xb6\\xa1\\x8b\\x25\\x6c\\x14\\x79\\x56\\x8d\\x27\\x72\\x46\\x24\\x60\\xc4\\xa8\\x05\\x88\\x25\\x01\\xbd\\xa2\\x39\\xc9\\xa0\\x7e\\x3c\\x89\\x5e\\xd2\\x1b\\x96\\xc1\\x6b\\x4c\\xe1\\xd9\\x23\\x05\\xef\\x2b\\xf8\\x16\\xbb\\x66\\x56\\x10\\xbc\\xc5\\x44\\x0c\\x88\\x59\\x56\\xad\\xd9\\xd8\\xde\\x5a\\xee\\x5d\\x68\\x77\\x39\\xef\\x85\\x1f\\x84\\x19\\x27\\xb6\\x34\\x69\\x10\\x24\\xbf\\xd7\\xb6\\xfe\\x14\\xc0\\x80\\x1e\\xd6\\xc8\\x17\\x42\\x1e\\x48\\xab\\x7c\\x71\\x74\\xee\\xde\\x72\\xea\\x77\\x02\\x08\\x40\\x2d\\x31\\x2c\\x0f\\x87\\x0b\\xd0\\x3f\\x43\\x86\\x39\\xb4\\xb8\\xa2\\xa2\\xf5\\x67\\x2c\\xce\\x2e\\xe2\\xdf\\xcb\\x70\\x8b\\x13\\x93\\x5a\\x82\\xc7\\x85\\x16\\x4a\\x6a\\x78\\xea\\x15\\xa5\\xa6\\x8e\\x44\\x81\\x8d\\xa5\\xfc\\xc9\\x42\\xa4\\xa6\\x24\\xc6\\x8e\\x9f\\xab\\x1d\\xbd\\x78\\xed\\xad\\x1b\\x3d\\x27\\x67\\x88\\xff\\x47\\xff\\x5d\\x8e\\x60\\xcc\\x27\\x48\\x23\\x36\\x10\\x3f\\xcb\\x78\\xe0\\x93\\x26\\x64\\xc0\\x80\\x8b\\xfb\\x02\\x53\\x22\\xa6\\x42\\xfa\\x11\\xa2\\xa1\\x42\\x78\\x06\\xa8\\xbd\\x0e\\x23\\xa1\\x43\\x63\\x3a\\xa5\\x8f\\xfe\\x5e\\x1e\\xe8\\x94\\x75\\xd8\\x7d\\x33\\x41\\xd0\\x73\\xbb\\x74\\x34\\x1f\\xd9\\x4c\\x8a\\xd5\\x60\\x0e\\xc0\\x31\\x88\\x65\\xaf\\x87\\x76\\xd1\\xc0\\x08\\xe5\\x74\\x80\\x76\\x39\\x70\\x57\\x7f\\x39\\x79\\x8e\\x04\\x8e\\xdc\\xd6\\x39\\x90\\x55\\x5f\\x4f\\x22\\xe4\\x4d\\x13\\xa1\\x54\\x26\\x6c\\xc8\\x70\\xbf\\x8b\\x38\\x5c\\xae\\x30\\xa0\\x48\\x89\\x38\\x09\\x78\\xca\\xe3\\x85\\x75\\xda\\x0b\\x0e\\x87\\x01\\xdf\\x57\\xc5\\xeb\\x57\\xcd\\xbf\\x05\\xf0\\x4a\\x77\\xed\\x8c\\x06\\xf0\\xb1\\xb8\\x99\\xff\\x72\\xc4\\x74\\xee\\x38\\xd1\\x73\\xed\\x41\\x12\\x03\\x61\\x9c\\xa0\\xae\\xaa\\x76\\xf0\\x70\\x94\\x99\\x23\\x1b\\x0c\\x28\\x9b\\x18\\x60\\x63\\xa7\\x8b\\x16\\x8c\\xbf\\xc9\\xa0\\xc3\\xb1\\x55\\x93\\x32\\xbb\\x3a\\x6b\\x1a\\xbf\\x51\\x97\\xc2\\x24\\xc7\\xa3\\x9a\\x28\\xfe\\xbb\\xb9\\xb0\\x02\\x32\\x0c\\x09\\xf0\\x7f\\x81\\x26\\x2c\\xaa\\x45\\xe9\\xe7\\x98\\x5c\\x3d\\x80\\x6f\\x98\\x67\\xb1\\x6f\\x9d\\x78\\x1d\\x74\\x56\\x38\\x74\\x43\\xc2\\x0f\\x2b\\xe7\\x42\\x10\\xb4\\x33\\xde\\x97\\x89\\x4d\\xe0\\x41\\x4a\\xa4\\xa0\\x39\\x73\\x6f\\xc0\\x03\\x7c\\xcd\\x1a\\x67\\xdf\\x56\\x5e\\x90\\xfa\\x87\\x28\\x0a\\x16\\x43\\x74\\x9d\\x3d\\xed\\x3e\\xd0\\xf6\\xb1\\x76\\xad\\xb9\\x3a\\x68\\xcb\\x4c\\x2b\\x7a\\x8b\\xef\\x7d\\x69\\xdc\\xff\\x50\\xd8\\x97\\x59\\x5d\\x1d\\x91\\x73\\x5c\\xbd\\x19\\x48\\x7f\\x4c\\x11\\xd3\\x17\\xc2\\x83\\xf9\\xd9\\xd9\\xe0\\xb3\\x7b\\xec\\x48\\x57\\xda\\x5f\\xce\\xbb\\xe4\\x8b\\x5a\\x6d\\xe8\\x39\\x2f\\xb7\\xe3\\x85\\x15\\x76\\xda\\xb1\\x05\\xe4\\xaa\\x7f\\x05\\xe2\\xe9\\x84\\x98\\x17\\xfc\\x13\\x35\\x7a\\x52\\x6d\\x49\\x38\\x9b\\xc2\\xbc\\x35\\x3f\\x76\\x64\\x3a\\x3b\\x7a\\x7c\\x77\\x85\\x47\\x33\\x3f\\xbb\\xc8\\x4c\\xe5\\xbd\\x07\\xb8\\x94\\xd4\\xc5\\xf1\\x8e\\xd3\\x1a\\x0f\\xcf\\x17\\x21\\x3b\\x28\\x30\\xfc\\x30\\x34\\x7c\\x04\\x81\\xbf\\xb2\\x14\\xce\\x33\\x00\\xe9\\x5e\\x17\\x57\\xc9\\x21\\xe2\\xc8\\x90\\x79\\xe8\\x90\\x9c\\xc8\\x31\\x60\\xf4\\xcf\\x51\\x3e\\x2c\\xd2\\xc8\\x5c\\x0c\\x78\\x78\\x17\\xd0\\xa2\\xeb\\x8c\\xdf\\x57\\xef\\x63\\x11\\x47\\xe9\\x2b\\x6c\\x01\\x47\\x03\\x44\\xd3\\x19\\x47\\x4d\\x29\\x8e\\x92\\x13\\x59\\x90\\x71\\x0e\\x5f\\x9e\\xba\\xf1\\x38\\x97\\x95\\x7c\\x23\\x10\\x97\\x56\\x46\\x69\\x29\\x1c\\xde\\x7b\\xa5\\x17\\x16\\x91\\x06\\x86\\x1b\\xc8\\x20\\x91\\x5d\\xc9\\x15\\x85\\xc6\\xd5\\x3c\\xfe\\xda\\xae\\x85\\x99\\xe6\\x6c\\x5b\\x9e\\x50\\x7b\\x83\\xaf\\x60\\x80\\xc1\\x53\\x25\\xb7\\x36\\xb8\\x27\\x03\\x1d\\x4b\\xe1\\xbf\\x5f\\x70\\x78\\x43\\x97\\x9e\\xec\\x3c\\x08\\xc7\\x24\\x4f\\x59\\xf3\\xe7\\x97\\x7f\\x38\\xb0\\xd7\\xe9\\x1e\\xab\\x60\\x9f\\xbe\\x2c\\xd2\\x5c\\xbe\\x3d\\xc0\\xee\\xe5\\x6f\\x81\\x8f\\x84\\xdb\\x57\\x0f\\x70\\x06\\x15\\x58\\xef\\x15\\xff\\xee\\xc9\\x32\\xfd\\xd2\\x1a\\xd7\\x6f\\x20\\xc5\\xc0\\x07\\x5d\\x3c\\x4d\\x90\\x6a\\x09\\x31\\x0e\\xa6\\xd3\\x1d\\x8f\\x84\\xd9\\x8a\\x4c\\xbd\\xc0\\xc0\\x6f\\x94\\x5c\\x92\\xa5\\x30\\x57\\xea\\x77\\xde\\x4d\\x4d\\x34\\x44\\xa7\\xc5\\x20\\xff\\xad\\xfd\\x61\\xa1\\xb5\\xae\\xf7\\xaf\\x32\\x2e\\x40\\xb4\\x96\\xb7\\x8d\\xe4\\x6f\\x4e\\xfd\\x6c\\x7c\\x7a\\x8c\\xfa\\xa3\\x85\\xaf\\x4c\\xf0\\xec\\xb9\\xa8\\xc4\\xc1\\xe5\\x02\\x1b\\xe0\\xdc\\xb6\\x60\\x1d\\xc0\\x16\\x27\\xf2\\x38\\xd5\\x84\\xe6\\x55\\x34\\xd4\\x28\\xe1\\x8b\\xe4\\x9e\\x56\\x3b\\xef\\x8c\\x0e\\x24\\x55\\xf0\\x5e\\xe3\\x9e\\x91\\x89\\xbe\\xea\\x95\\x68\\x81\\xa1\\x9b\\x8c\\xcc\\xf4\\xea\\x1f\\x37\\xf9\\x1f\\xf4\\xe0\\x3e\\x88\\x12\\x8c\\xba\\xd4\\xba\\xa9\\x13\\x6f\\x71\\x8b\\xd7\\xe5\\x8e\\x1d\\x89\\xc2\\x5b\\x61\\x40\\xe6\\x98\\x01\\xe6\\x1c\\x69\\x86\\x64\\xeb\\x1a\\x6c\\x8c\\x05\\x94\\x3f\\x46\\xc5\\x93\\xdb\\x79\\xe8\\xfe\\x42\\xec\\x0a\\xfd\\xe1\\x7b\\x5b\\x50\\xdf\\x1e\\x33\\x9b\\xc9\\xf3\\x19\\x3e\\x8e\\x85\\x80\\xab\\xc4\\xa9\\x61\\xe9\\xdd\\x4b\\x85\\x22\\xd9\\x20\\x23\\xfa\\xd7\\x4a\\xbb\\x87\\x1f\\xba\\xbd\\x56\\xff\\xbd\\x13\\x3a\\x79\\xda\\x87\\xc7\\x58\\x99\\x0e\\x46\\x5e\\xd7\\xda\\xe5\\x42\\x7d\\x0d\\xba\\x72\\xad\\x17\\xb6\\xc2\\xd4\\xf7\\xd2\\xf6\\x18\\xab\\x70\\x38\\x69\\x31\\x91\\xad\\x31\\x3f\\x36\\xc9\\xd7\\x0b\\xb9\\x74\\x06\\xf1\\xe8\\x20\\xbf\\x92\\x85\\xa5\\x17\\xfe\\x58\\x86\\x57\\x28\\xc8\\x45\\x0e\\x9e\\xaf\\x26\\x96\\x95\\x5a\\xfc\\xd7\\xf0\\x4f\\x93\\xae\\x64\\x42\\xbd\\x4c\\x51\\x54\\xd6\\xf1\\x4a\\xd9\\xac\\x32\\x65\\xf5\\x35\\x56\\x7a\\x7f\\x11\\xf0\\x49\\xcf\\x8b\\x3a\\x3e\\xc1\\x2e\\x85\\x6e\\x07\\xb6\\xd5\\x8b\\xf0\\xff\\xd6\\x29\\x2c\\x84\\x3c\\x32\\x47\\xf8\\xd0\\xc1\\x87\\x56\\x6b\\xb3\\xe5\\xef\\xe9\\x15\\x7d\\x26\\x9b\\xb8\\x3f\\x21\\x47\\xe3\\x47\\x94\\xd6\\xd3\\xf8\\x6a\\x97\\x81\\xbc\\x5b\\x1f\\x53\\x68\\x41\\xf8\\x61\\x6f\\x8b\\xdc\\x31\\x1f\\xf0\\x08\\xc4\\x60\\xf9\\x2c\\x5c\\xf6\\x48\\x54\\xa0\\x7c\\x95\\x5a\\x4b\\xe9\\xe4\\xbb\\x8e\\x39\\xb8\\xc2\\x78\\x44\\x09\\xfa\\x1f\\xe4\\xc8\\x75\\x91\\xb5\\xc1\\xbf\\xa1\\xbb\\x7f\\xfb\\x10\\x29\\x1e\\x1d\\x0a\\x2e\\x66\\xdb\\xeb\\xef\\xa1\\xca\\x4f\\x31\\xff\\x4a\\x71\\xbe\\xa4\\x74\\x71\\x4d\\x4e\\xbe\\x35\\xc1\\xdd\\xf7\\xce\\xde\\x8b\\x8b\\xa5\\x71\\x1a\\x18\\xb0\\x19\\x5d\\x3e\\x38\\xa6\\xce\\x70\\xf3\\xff\\x17\\x02\\x4d\\xa9\\xf7\\xf9\\xe4\\x10\\x24\\x27\\xf8\\x08\\x4c\\x0d\\xba\\x9f\\xf8\\x09\\xcf\\x97\\xb9\\xa7\\x2b\\xea\\x60\\x60\\xfd\\xa5\\xfe\\x5a\\x12\\xab\\xbd\\x8e\\x98\\x21\\xa7\\x31\\xca\\x03\\xa2\\xad\\x1c\\x86\\xc6\\x7c\\xc9\\x98\\xfc\\x62\\xeb\\x21\\x4c\\x2a\\x40\\xd2\\x8d\\x68\\xde\\xd2\\xa0\\x37\\xbc\\xfe\\x84\\x7f\\x68\\x0d\\xe6\\x3a\\x13\\x5e\\xe8\\x02\\xab\\x0d\\xcc\\xd7\\x3f\\xd9\\xc9\\x44\\xc7\\xed\\x3c\\xcd\\xf2\\x7f\\xf7\\x45\\xf2\\x51\\x3f\\x56\\x4b\\x55\\x34\\x17\\x4e\\x81\\x42\\xaf\\x18\\xa5\\x16\\xd0\\x60\\xb1\\xd1\\x07\\x69\\xa9\\xad\\x69\\x9b\\xcc\\x63\\x71\\xaa\\x72\\xd4\\x63\\x68\\x03\\xd4\\x07\\xf7\\x4b\\xb2\\x96\\x3e\\x1b\\x20\\x6f\\x06\\x9c\\xf7\\x1e\\xcb\\x34\\x06\\xd1\\xd5\\x57\\xfe\\xfe\\x18\\x89\\x40\\x3a\\xbc\\x0d\\x6e\\xbd\\x80\\x1e\\xdc\\xc8\\x97\\x91\\x7f\\x95\\x66\\x67\\xc2\\xdc\\x5b\\x76\\x5b\\x39\\x09\\x87\\x63\\xab\\xd7\\x41\\x7b\\xdf\\x7a\\x56\\x8d\\x1b\\x29\\x27\\x59\\x68\\xb7\\x6e\\x2e\\x67\\xa1\\x7c\\xb4\\x06\\xeb\\xc3\\x87\\x65\\xa5\\xc9\\x75\\x6b\\xfa\\xd5\\xea\\xa4\\xee\\xaf\\x95\\xf3\\x0c\\xde\\x43\\x3d\\xc2\\x93\\xcf\\x49\\x07\\x6b\\x50\\xcf\\x63\\xce\\xee\\x70\\x64\\xb8\\xdb\\xe4\\xde\\x8f\\xa1\\x0d\\x8f\\x46\\x0d\\x9b\\xc3\\xd3\\xe3\\xdd\\x41\\x1b\\x38\\xda\\x22\\xff\\xb0\\x3e\\x58\\x47\\xa0\\xaa\\x38\\xbe\\x52\\x7b\\xa1\\x06\\x06\\xa5\\xdc\\x6d\\xd8\\xfa\\x18\\x15\\x37\\x76\\xa0\\xbf\\x5b\\x6f\\xee\\x80\\xea\\x1e\\xf2\\x52\\xbf\\x6f\\x14\\x83\\x47\\xa2\\x12\\x2a\\x43\\x2f\\xba\\x48\\x6e\\xd2\\xde\\xd3\\x4e\\xf6\\x72\\x73\\x7f\\x6d\\x13\\x14\\xdc\\x68\\x67\\x87\\x74\\xa8\\xda\\x5f\\x77\\x37\\xde\\x55\\xb2\\x4d\\xe9\\x51\\x0a\\xef\\xee\\x3a\\x3f\\x66\\x3d\\x7c\\xfb\\xb1\\xd8\\xf6\\x25\\xfc\\xec\\x5d\\x7d\\xa2\\x24\\x55\\x3c\\x95\\x07\\xfd\\x92\\xed\\xc7\\x5b\\xcd\\x5a\\xf4\\xf4\\xd9\\x03\\x16\\x5e\\xd8\\x95\\x2a\\x5f\\x30\\xff\\x0f\\x5e\\xad\\xef\\x30\\xad\\xcb\\x06\\xb4\\xce\\xae\\x31\\x38\\xe2\\x06\\x94\\x1b\\xed\\xd2\\x90\\xc8\\x91\\x58\\x16\\xac\\xa4\\x6d\\x50\\x26\\xaa\\x07\\x5a\\x43\\xfc\\xe9\\xac\\x64\\xa5\\x83\\xbe\\x99\\x6f\\xc6\\xb6\\xb8\\x2d\\x71\\xd0\\xf0\\xfe\\xa5\\x49\\x42\\xc6\\xc4\\x9f\\x17\\x81\\xd1\\x26\\xb3\\xb9\\x82\\x05\\x41\\x90\\xc5\\x52\\x3d\\x74\\x6d\\x97\\x71\\x7f\\xa3\\x78\\x73\\x78\\x53\\xa5\\x11\\xdc\\xfc\\x88\\x96\\x32\\x9c\\xb8\\x9a\\xf4\\x53\\x01\\x05\\x0d\\xd2\\x5f\\x41\\xbe\\x4a\\x53\\xc0\\xf9\\x89\\xf8\\x2b\\x52\\xbf\\xa5\\x0f\\xa8\\xdf\\xfa\\xdd\\xb0\\x01\\x9b\\xc2\\x6f\\x8b\\x4a\\xf2\\xa6\\x67\\x5f\\x34\\xa0\\x1b\\x58\\x89\\xba\\xa2\\x09\\x24\\xf8\\x84\\x11\\x38\\x89\\xce\\x71\\x56\\x0b\\x80\\x13\\x65\\xd4\\x2a\\x95\\x27\\x10\\x1d\\xe3\\xc8\\x85\\x1e\\xea\\x9b\\xc4\\x33\\x50\\xc7\\xe8\\x9d\\x0b\\xfa\\x65\\xf9\\xe7\\x6d\\xff\\x0a\\x04\\xc0\\x62\\x5e\\xe3\\x42\\xd0\\x3b\\x96\\xdb\\xb5\\x2f\\xdf\\x94\\xb9\\xe0\\xd3\\xb1\\x32\\xc2\\x91\\x06\\x91\\xfe\\xef\\x31\\x19\\x1f\\x3e\\x2e\\x16\\x68\\x8f\\x35\\x60\\x28\\x6b\\xbd\\xd2\\x97\\xe2\\x3f\\xa9\\x0d\\x80\\x00\\x85\\x4b\\x3c\\xfa\\xbd\\xfc\\x8e\\x12\\x96\\xcd\\x54\\x52\\xb7\\x12\\x7c\\x69\\x45\\x1b\\x4d\\xd4\\x6f\\x24\\xce\\x39\\x0d\\x75\\xfc\\x41\\x37\\x83\\x36\\x54\\x12\\x0d\\xd3\\x89\\x2d\\x5f\\x28\\xbe\\x64\\xcc\\xee\\x41\\x0b\\x52\\xc4\\x75\\x48\\xbc\\x02\\xe0\\x04\\x5d\\x41\\x47\\x33\\x51\\x6a\\x89\\xb2\\xf4\\x4e\\x8c\\x1f\\xa0\\xec\\x78\\x5f\\x4a\\x9e\\xa5\\x4a\\xf1\\x26\\xd2\\x9c\\x43\\x57\\xc7\\x1b\\xc8\\x31\\x99\\x43\\x55\\xe1\\x18\\x8d\\xdc\\x72\\x56\\x79\\xc6\\xec\\xb3\\xba\\xc4\\x3c\\x2e\\xda\\x00\\x69\\x57\\x01\\x96\\xa1\\xab\\x60\\xc8\\x41\\x45\\xa0\\x7a\\x01\\x6c\\x75\\x92\\x02\\x5b\\xf3\\x2e\\x6d\\x5a\\x94\\x32\\x6a\\x36\\x16\\x08\\x5c\\x4b\\x41\\xc9\\x8d\\x3e\\xce\\xd6\\x69\\xb4\\x95\\xf5\\x53\\x94\\xd7\\xd4\\x51\\xf0\\x22\\x4c\\xad\\x8f\\x5d\\xe2\\x19\\xbb\\x8f\\xca\\xba\\x24\\x13\\x26\\x63\\x6b\\x38\\x45\\xcb\\x3e\\xa0\\xde\\x90\\x0d\\x53\\xb0\\xab\\xe2\\x8e\\xc2\\x64\\x95\\xc5\\xa4\\xc1\\xb3\\xc8\\xd8\\x61\\x57\\xcd\\xc4\\x96\\x64\\xa5\\x65\\x6e\\x94\\x1e\\x6a\\x91\\x98\\x9e\\x7d\\x1f\\x9d\\x75\\xbd\\x6f\\x1b\\x1c\\x2d\\x8a\\x79\\x4b\\x93\\xec\\xeb\\x33\\xa1\\x99\\x6b\\x8f\\x13\\x72\\xa1\\x6c\\xeb\\x88\\x4c\\x0e\\x11\\xdd\\xdf\\x5e\\xcc\\xe0\\xdb\\x70\\x4e\\xb9\\x42\\xdc\\x1e\\xb7\\x66\\x70\\x4a\\x6b\\xb8\\x46\\x19\\x44\\x84\\x8c\\x04\\x5a\\x42\\xad\\x74\\x0a\\x3d\\xad\\x0d\\xe9\\x8f\\xb2\\xeb\\x64\\x37\\x20\\xde\\x74\\xbb\\xe8\\x29\\x8a\\x73\\xff\\xa7\\x83\\xa6\\x7e\\x75\\xc3\\xab\\x36\\xbd\\x7b\\x99\\x62\\x28\\x73\\x27\\xd2\\x68\\x74\\x8b\\x37\\x58\\xef\\xca\\xcd\\xbd\\x29\\x00\\x13\\xfe\\x0a\\xc1\\xda\\x8f\\x26\\x48\\x1c\\xb5\\x6f\\x1b\\x20\\x58\\x6a\\xea\\x21\\x79\\x0c\\x51\\x64\\x13\\x03\\x0d\\xc8\\x14\\x11\\xbb\\x23\\x7a\\x86\\x6f\\x38\\x94\\x1e\\x8b\\x3c\\xfb\\x7d\\x46\\xa1\\x8f\\x8d\\x21\\x46\\x5f\\xc8\\xc0\\x2e\\x94\\xe0\\x0b\\x4d\\x19\\xab\\x27\\x72\\x3b\\xfd\\x37\\x25\\xe8\\x6c\\xe9\\xf6\\x49\\x51\\x79\\x59\\x24\\xc1\\x1e\\x7c\\x89\\xff\\xb1\\x00\\x7c\\x14\\x33\\x26\\x4f\\x3b\\x5c\\xdd\\x9f\\xd3\\xab\\xca\\x02\\x45\\xf6\\xf6\\xdb\\xae\\x70\\xb1\\x6d\\xb7\\xa8\\xc8\\x32\\xb0\\xfb\\x00\\x3f\\xe0\\xe7\\xb4\\xb8\\xa2\\x2c\\x60\\xf2\\x48\\xaf\\xf0\\xff\\x2d\\x80\\x1e\\xc1\\x8c\\x2b\\xd3\\xf3\\x7f\\x76\\x7f\\x46\\xd1\\x09\\xf2\\x30\\x6b\\xfb\\xa4\\x2b\\x42\\x62\\xbf\\x59\\x84\\x98\\x4c\\xb6\\x37\\x23\\x12\\x5b\\x27\\xf7\\xad\\x76\\x84\\x2d\\x2f\\x0e\\x43\\xcd\\xdb\\xd3\\x81\\x8b\\x25\\xae\\x3f\\x33\\xa6\\xa9\\x22\\xd1\\xa9\\x0b\\x5f\\x9e\\xb6\\x9f\\xfe\\xa1\\xeb\\xc9\\x21\\xfb\\xa1\\xef\\xb9\\x90\\x76\\x66\\x0d\\x2a\\xcd\\xb4\\xa8\\xb4\\xbd\\x2a\\x99\\x6d\\xdb\\xca\\xda\\x92\\xd0\\x8a\\xeb\\x32\\x33\\xd0\\x4c\\xec\\xdc\\x84\\x30\\x22\\xc3\\x8f\\x0b\\x51\\x35\\x39\\xae\\x86\\x1e\\xda\\x66\\x82\\x15\\xe5\\x9a\\xd0\\x22\\x25\\x7f\\x9d\\xf2\\xa9\\x71\\xf3\\x0d\\xa1\\xb3\\xed\\x66\\xad\\xe9\\x22\\xf5\\x3e\\x70\\xcb\\xe4\\x86\\xe6\\x53\\xd3\\xe4\\x0d\\xa1\\x23\\x73\\xb3\\xd6\\xb8\\x45\\x7d\\xe0\\x29\\xfc\\x2e\\x2a\\x13\\x72\\x41\\xec\\x59\\xa1\\x3e\\xa4\\x6b\\xc2\\xc8\\xf2\\xbd\\x1a\\x52\\x3f\\x78\\x4f\\x61\\x5b\\x55\\xfe\\xa1\\xe8\\xf7\\x45\\xea\\xa0\\xba\\x11\\x2d\\x61\\x35\\x2d\\x31\\x3f\\x21\\xbf\\x74\\x01\\x9f\\xb8\\x95\\x77\\x98\\xff\\xba\\x19\\x16\\x89\\xbe\\x70\\xe8\\x71\\x22\\x7e\\x30\\xc6\\x8f\\x80\\x9b\\x0c\\x42\\x51\\x2c\\xa2\\x8d\\xa3\\x25\\xc1\\x0c\\xc9\\x98\\xa9\\xc9\\x81\\xfa\\x55\\x80\\x63\\xd9\\x5c\\x70\\x6e\\x49\\x14\\xbe\\x35\\xba\\x71\\x94\\x3d\\x97\\xa9\\x27\\x0e\\x47\\xda\\x83\\x6e\\xe4\\xf9\\x57\\xff\\xcb\\x3b\\xc9\\x22\\xac\\x39\\x81\\x26\\x8e\\xdb\\x4d\\x09\\x39\\x64\\xe8\\xe6\\xb0\\x2a\\x01\\x97\\x38\\xd3\\x28\\x73\\x10\\xdf\\x0c\\xd0\\xab\\x20\\x86\\x6d\\x2e\\xad\\xdd\\x64\\x8b\\xf2\\xab\\x54\\x53\\x8d\\xbb\\x50\\x2c\\xae\\x2e\\x21\\x66\\x8f\\xf0\\xdc\\x70\\xfa\\xe0\\xc3\\x4b\\xa4\\x98\\xe5\\xac\\x7a\\x8b\\x2e\\x2c\\x5e\\xa5\\xb7\\x8c\\x2b\\x96\\x6f\\xfd\\x88\\x03\\xd5\\x69\\xd2\\x43\\x86\\x4e\\xb4\\xc2\\x9d\\x85\\x5b\\x83\\xf8\\x74\\x40\\xcf\\x4c\\x94\\x65\\x83\\x55\\x38\\xe0\\x76\\xd2\\xce\\xbe\\xfb\\x1a\\x7a\\x6d\\x72\\x26\\x76\\xc5\\x59\\xa5\\x7f\\xec\\xc8\\x44\\x7f\\x3c\\x17\\xa3\\xf7\\x8b\\xf2\\xdf\\xd7\\x5e\\xbe\\x6f\\xb3\\x10\\xbe\\xa4\\xaf\\x40\\x91\\xcb\\x9b\\x62\\x63\\x27\\xeb\\x66\\x0d\\x22\\xdd\\x1e\\xef\\xd8\\xc2\\x1b\\x5d\\x2b\\x14\\x5b\\x5d\\xbe\\xb0\\x57\\xb8\\x58\\x5c\\xab\\x8a\\xc7\\x35\\x49\\x84\\x2c\\xd2\\xca\\xd0\\xd4\\x20\\x63\\x51\\x42\\x4d\\x7f\\x52\\x92\\xa3\\x69\\xa5\\xea\\x8e\\x1a\\xe2\\xa3\\x87\\x15\\x0b\\x7f\\x7c\\x4c\\x1f\\x3e\\x0b\\x6e\\x88\\x96\\x5d\\xa8\\xbb\\xe5\\x6b\\x79\\x48\\x83\\x76\\xe3\\x1a\\x89\\xf4\\xb1\\xab\\xf4\\xaa\\x01\\xd2\\xde\\x21\\x31\\xf5\\xde\\xe4\\x5f\\x83\\x44\\xd3\\xa4\\x6e\\x39\\x9d\\xe7\\x38\\xe7\\x00\\x74\\x5e\\x38\\xf9\\x9b\\xe8\\xa3\\x4d\\x13\\xcb\\xa6\\x2f\\xab\\xdb\\x81\\x37\\x50\\x69\\x94\\xe5\\xb2\\x88\\xb3\\x45\\xa2\\x02\\x69\\x63\\xc8\\xdc\\xcb\\x23\\x00\\xc2\\xa2\\x40\\x1b\\x45\\x4c\\xf8\\xf1\\x88\\x91\\x88\\xaa\\x8d\\x4b\\xb3\\xdf\\xd8\\x84\\xfc\\x42\\xdb\\x02\\xbb\\xec\\xac\\x68\\x7a\\xa2\\xa2\\xe6\\x06\\x46\\x39\\xbb\\x6e\\x31\\x0f\\xf2\\xc5\\x0f\\x82\\x68\\xa5\\x0b\\x99\\xb4\\x35\\x28\\x16\\xbb\\xa1\\xab\\x64\\x41\\xe1\\x1a\\xa9\\xb5\\x96\\x99\\x0d\\x35\\x88\\xa4\\xd7\\xe9\\xff\\x97\\x0c\\x31\\x93\\xcf\\x33\\x33\\x43\\x46\\x8f\\x75\\x36\\x09\\x2d\\x53\\xb8\\x99\\x35\\x8a\\xb5\\x2a\\x9c\\x2d\\x2c\\x8a\\xf2\\xe8\\xd2\\x05\\x5d\\x27\\x4a\\xec\\xb4\\x74\\x77\\x98\\x9a\\xf6\\x28\\xa9\\xc9\\x21\\x75\\x27\\x4c\\xe6\\xec\\x80\\x7b\\x02\\xd4\\x44\\x03\\xad\\x11\\xa5\\x68\\x4a\\xa8\\xe3\\x48\\xae\\x65\\x8a\\x6f\\xf4\\x61\\xa3\\x76\\x11\\x3e\\x1c\\x93\\x37\\xc3\\xb8\\x66\\x04\\xcf\\xe4\\x21\\x34\\x6a\\xba\\x8a\\x4b\\xc0\\x75\\x7e\\xc7\\x7a\\xf9\\x0d\\x2f\\xc7\\x95\\xf2\\x7a\\x17\\x25\\x46\\xe1\\x8f\\xae\\x9a\\x55\\xa3\\xe4\\xfd\\x59\\x29\\xfd\\xc5\\xe9\\x81\\x4b\\x0c\\x2d\\xd0\\x7a\\x57\\xbd\\xe1\\x12\\xf1\\xba\\xde\\xe6\\x3f\\xf5\\x4e\\xe5\\xfe\\xca\\xe8\\x82\\xee\\xcb\\xca\\x4e\\x90\\x00\\xb4\\xdf\\xbe\\xac\\x30\\x70\\xdd\\x2e\\xb1\\xef\\x24\\x67\\x44\\x74\\x3d\\xd9\\xda\\x23\\x37\\x6b\\x33\\x62\\x63\\x1c\\x35\\x13\\xac\\x87\\x8f\\x87\\xf5\\xad\\xa2\\xd7\\xf6\\xfa\\x4b\\x06\\x37\\xb3\\x5b\\x35\\xb3\\x5b\\xc5\\xa0\\xac\\xb7\\x14\\xd5\\x5c\\x5f\\xd3\\x3c\\xde\\x59\\x48\\x91\\xaa\\x19\\xa5\\x4b\\x7e\\x94\\xdb\\xa4\\xbd\\xb8\\x2e\\x86\\x72\\x5b\\x9b\\x8a\\x12\\x46\\xba\\x43\\xf9\\x2c\\x8d\\x49\\xfa\\xb2\\xbc\\x5e\\xcd\\x30\\x33\\xbc\\x06\\x0e\\xa7\\xec\\x12\\x07\\xa0\\x7c\\x63\\x90\\xa1\\xb1\\x60\\x0b\\xe4\\x6c\\x03\\xc5\\x32\\x30\\x29\\x98\\x23\\x32\\x73\\xb3\\x64\\x68\\x84\\x36\\x92\\xc4\\xa2\\xb2\\xce\\x88\\xcb\\xfd\\x8f\\xe0\\x23\\x71\\xd5\\x6d\\x75\\xa2\\x29\\x3f\\xe2\\xc3\\x8c\\x8c\\x7f\\xb3\\xaa\\xff\\x9c\\x85\\xf8\\xa7\\x25\\xf5\\x27\\x67\\x27\\x06\\xaa\\xf1\\x8d\\xdc\\x3a\\x83\\x2a\\x58\\x43\\xe4\\xac\\x4f\\x8e\\xeb\\x43\\x5f\\x0b\\x3c\\x44\\x64\\xde\\x7b\\x34\\xae\\xb1\\x8b\\x01\\xb1\\x78\\x7b\\xa4\\xca\\xdd\\xc4\\x92\\x2c\\x4e\\x53\\xc9\\xbb\\x45\\x06\\x00\\xee\\x8f\\xbe\\x42\\x94\\xc3\\x5b\\x5e\\xc5\\x9e\\x24\\xe8\\x7b\\x98\\x5b\\x58\\x2d\\xde\\xbb\\x73\\x1f\\x43\\xeb\\x36\\xe8\\xba\\xd0\\xcb\\xee\\xfe\\xdb\\x2c\\xe0\\xbd\\xc5\\xdb\\x2d\\xf8\\xbe\\x6e\\xdb\\x2b\\xe2\\xbe\\x0a\\x4c\\x3b\\x0a\\xf5\\xcd\\xb6\\x78\\xfd\\x75\\xe2\\x24\\x25\\x46\\xd5\\x9e\\x6a\\xb8\\x8d\\xd4\\x3c\\x64\\xee\\x25\\x8c\\xa1\\xf6\\x37\\xf0\\x1a\\x14\\xbc\\xf7\\xea\\xf6\\x86\\x86\\x86\\x54\\x93\\x0c\\xf1\\x81\\x37\\xf4\\xd6\\xd7\\x70\\x7f\\x9f\\x9a\\x89\\xaf\\x6e\\xa9\\xfe\\xdb\\x00\\x2f\\x1e\\x7c\\xd1\\x2f\\x30\\xe5\\x37\\xd9\\xc7\\x29\\x87\\xa8\\x35\\x59\\x11\\x2b\\x46\\x1b\\x3b\\x83\\xd3\\x5f\\x78\\x59\\xd6\\x92\\x4b\\xdd\\x73\\x2f\\x6f\\xe8\\xe6\\x06\\x36\\xb2\\xbd\\xc0\\x9b\\x0f\\xff\\xa6\\xbf\\x0b\\x7c\\xa6\\x06\\x58\\x60\\xbb\\xb8\\x7d\\x88\\x38\\x05\\x48\\xcd\\xd0\\x92\\x55\\x6d\\xa3\\x57\\xff\\x53\\x53\\xa9\\xc9\\xd6\\xa4\\xed\\x80\\xd8\\x7b\\xbe\\x4b\\xb5\\x4d\\xe3\\x00\\xca\\x63\\x66\\x86\\x00\\x70\\x0a\\x9d\\x41\\x72\\xb3\\x5b\\x42\\x8c\\x0c\\x2a\\x5a\\xe0\\x7f\\xcc\\x7b\\x40\\x9f\\xd9\\xe1\\x4e\\x3b\\x2d\\xe0\\x52\\x30\\x82\\xc3\\xfc\\xf6\\xf2\\x3f\\x10\\xb8\\x8e\\x7b\\x5e\\x0d\\x94\\x78\\xaf\\xb5\\x37\\x5f\\x91\\xa8\\x6c\\x13\\x64\\x5d\\x4e\\xd7\\x41\\x9a\\xc2\\x8f\\x01\\xfc\\x49\\xc1\\x82\\x1b\\xaa\\xa7\\x51\\xf7\\x04\\x99\\x35\\x7e\\x45\\xe2\\xee\\x94\\x5f\\xdf\\x27\\x5b\\xd9\\x8f\\x53\\xf7\\xa7\\xa5\\x1d\\x74\\x93\\x3b\\x86\\x33\\x86\\x19\\x11\\x56\\xa6\\xb7\\xd3\\xf8\\x51\\x79\\xe8\\x59\\xac\\x8c\\x21\\x12\\xd3\\xc7\\x70\\xb2\\x44\\x27\\xd5\\x3a\\x42\\xee\\x6f\\xc7\\x6b\\xef\\x92\\x4a\\x14\\xaf\\x00\\x3d\\x52\\xaf\\xb9\\x4b\\xfa\\x0e\\xd6\\x3d\\x28\\x58\\x70\\x3b\\xf5\\x48\\xb5\\x02\\x34\\x67\\x17\\x6e\\xe6\\x9d\\x0d\\x36\\xc5\\xb3\\x2f\\xb1\\xaf\\x00\\xdd\\x45\\x80\\xd6\\xf4\\xd0\\xbe\\xe6\\x0e\\xcf\\x06\\xca\\xa9\\x60\\x3e\\xba\\x9d\\xfa\\x5a\\xc5\\x73\\x46\\x65\\xa9\\x9f\\xa5\\x77\\x08\\x2a\\xbe\\xd8\\xd9\\xb5\\xd3\\xa5\\x74\\x50\\xa0\\xfe\\xa2\\xb8\\x8b\\x85\\xb9\\x60\\x77\\x8b\\xb2\\xa1\\x05\\xdb\\x83\\x11\\xa6\\x80\\x21\\xb5\\x75\\xc8\\xd2\\x49\\x9f\\xa6\\xac\\x03\\x8d\\xaf\\x03\\x3c\\x71\\x59\\x3b\\x10\\xf5\\xc4\\x5d\\xc4\\x7a\\x3f\\xb2\\xcd\\x6d\\x9a\\x55\\xaf\\xef\\x15\\x2d\\x1f\\xc4\\xea\\x33\\x69\\x4b\\x1b\\x5e\\xed\\x8a\\x63\\xcd\\x21\\x76\\x98\\xdb\\xd6\\xd7\\xd9\\xfe\\x55\\x50\\x64\\x9b\\x20\\x6b\\x69\\x1a\\xd4\\x27\\xb1\\x32\\x70\\x5e\\x14\\xc0\\x25\\x6b\\x15\\x0f\\x81\\x33\\x13\\xfe\\x56\\x69\\xee\\xdc\\xa3\\x37\\xa7\\xcd\\x17\\xf3\\x89\\x79\\xe0\\xe6\\x80\\x19\\x7e\\x20\\x6a\\xca\\xaf\\x8b\\x7d\\xae\\xd7\\xa8\\x22\\xf5\\x9f\\x4b\\x11\\xf4\\xea\\x46\\xee\\x77\\xd8\\x88\\xfd\\x6a\\xb6\\xe9\\xb2\\x4c\\xd6\\xb0\\xc5\\xb6\\xcf\\x4a\\xd6\\x8b\\x24\\xeb\\x79\\x75\\x8a\\x6c\\xca\\x92\\xc1\\xaa\\x02\\xed\\x0c\\xeb\\x08\\xf6\\x2c\\x54\\xc7\\xfc\\xf7\\xe6\\xf4\\x95\\x00\\xb7\\x2b\\x22\\xee\\xc0\\x43\\xd7\\xbe\\xad\\x58\\xc5\\xeb\\xe1\\xcc\\xca\\x5c\\x49\\xa3\\xd5\\xbf\\x50\\x09\\x0c\\xa8\\xae\\xb8\\xe7\\xb0\\x1b\\x28\\x9a\\xbe\\x74\\x87\\x7e\\xbd\\xf2\\x48\\xf6\\xee\\xe2\\xe5\\x91\\x45\\xd9\\xd0\\xd1\\xf7\\x08\\xfe\\xcd\\xbb\\x5a\\x67\\x94\\xbc\\x9c\\x15\\xc1\\xfb\\xd7\\x40\\xe4\\x35\\xa7\\x88\\x39\\xf4\\x25\\xd7\\x97\\xce\\x24\\xf1\\x7f\\x9d\\xd0\\xd0\\xbf\\xa2\\x1c\\x0a\\xb6\\x46\\x6a\\xc7\\xa9\\xac\\x94\\x4d\\xba\\x82\\xb6\\x87\\x38\\x73\\xcd\\xf4\\x86\\xa7\\x95\\xc2\\xaf\\x28\\x86\\x6a\\x56\\x93\\x77\\x8c\\xca\\x4a\\xeb\\x97\\xd3\\xac\\xd4\\x3f\\x0e\\x70\\x4b\\x20\\xff\\x9e\\x14\\x6a\\xa2\\x8f\\x46\\x0d\\x25\\x91\\xba\\xa2\\x78\\x43\\x94\\x1e\\x65\\x65\\x7a\\x5a\\x5a\\x2f\\xf8\\x87\\x36\\xb3\\xb2\\x62\\x03\\xbc\\xd4\\xbd\\x2a\\x33\\xdb\\xdd\\xdc\\x96\\x4c\\x4a\\xdb\\x13\\x5d\\xb5\\x2f\\x44\\xb0\\xed\\xe5\\xcd\\xd3\\xb2\\x75\\xbf\\x5c\\xb6\\xd6\\xa9\\xbb\\xca\\x10\\x02\\x4a\\xc5\\x28\\x03\\x9a\\x24\\xae\\x28\\xb9\\xd5\\xaf\\x22\\xb5\\xe7\\xcc\\x1d\\x58\\x39\\x44\\x15\\x49\\xe7\\x7b\\x01\\x2a\\xe5\\xda\\xc0\\x78\\xa1\\x83\\x9f\\xf3\\xcf\\x1f\\xa8\\xf8\\x52\\x20\\xa0\\xbe\\x23\\x93\\x73\\x01\\xd5\\x54\\x30\\xf6\\x52\\x86\\x89\\xeb\\x01\\xe1\\x2e\\xed\\x8f\\xb0\\xae\\x19\\x89\\xb5\\x25\\xbc\\xd3\\x54\\x8e\\x7e\\x7b\\x86\\x5e\\xea\\x4a\\xc2\\x06\\x4b\\xcb\\xa0\\xa0\\xde\\x76\\xae\\xdb\\x18\\x4d\\x19\\x52\\x38\\x85\\x37\\x81\\xb3\\x46\\x59\\x31\\x6e\\x7b\\x5f\\x6f\\xe7\\x54\\xd0\\xc8\\xe2\\x7a\\x4c\\xd1\\xa4\\x51\\x2c\\x97\\x6a\\xce\\x8c\\x71\\x72\\xbd\\xa6\\xec\\x5d\\x45\\x55\\x5d\\x5b\\x00\\xd1\\x44\\x34\\xed\\x2a\\x6d\\x9d\\x94\\xaf\\x07\\x1b\\x50\\x19\\xbf\\x2f\\xac\\xf8\\x0a\\x6f\\x3c\\xd8\\x72\\xd3\\xc3\\x4a\\x34\\x64\\x97\\x59\\x63\\xf8\\xb4\\x53\\x43\\xc9\\x0c\\x19\\xbb\\xd1\\x72\\x28\\x2d\\x77\\xe0\\xb4\\xa2\\xa8\\x3c\\x32\\x23\\xc3\\x1b\\x38\\x16\\x4a\\xa7\\x2c\\xcc\\xad\\x57\\x5a\\xad\\x7c\\x03\\xc4\\x6f\\x76\\x45\\xc6\\xcf\\x8a\\xb6\\xe0\\x69\\xf9\\xab\\xec\\xd6\\x29\\xd5\\x5a\\x9e\\x68\\x6d\\x4f\\xad\\xa6\\x25\\x63\\xca\\x62\\x15\\x03\\x6d\\xf4\\x5a\\x1b\\xd3\\xef\\x50\\x88\\x03\\x8d\\x92\\x6e\\x6c\\x6f\\x58\\x8b\\xf0\\x6b\\x6c\\x36\\xbe\\x05\\x12\\xb6\\xfa\\x8c\\x93\\xfd\\xc2\\x1d\\x58\\x66\\xf1\\x3e\\xad\\x6f\\x82\\xb5\\x91\\x07\\xad\\x15\\x37\\x5a\\xb3\\x01\\xfd\\x20\\x62\\xf9\\x25\\x57\\x51\\x67\\x63\\x05\\xb5\\x32\\x8d\\x6c\\x13\\xf8\\xd4\\x2d\\x01\\x51\\x75\\x27\\xd4\\x51\\xa7\\x6d\\x3f\\x4e\\x81\\x88\\x47\\x30\\xa9\\xf5\\x6e\\x6b\\xd7\\x55\\xa2\\xaa\\xf1\\xaa\\xc6\\x3e\\x28\\x38\\x08\\x48\\x01\\xe2\\x91\\x19\\x14\\x3d\\x02\\x38\\xc9\\x58\\x52\\xd3\\xc5\\x33\\x44\\x3b\\x79\\xe6\\xf1\\x9a\\x31\\x08\\x87\\x68\\x70\\xf1\\xfd\\x27\\x6e\\xff\\xd3\\x26\\x41\\xd9\\x98\\x91\\xa9\\xe7\\x44\\xb9\\xbc\\x7b\\xa0\\x0e\\xa8\\x0b\\x53\\x0b\\x53\\x22\\xfb\\x55\\xad\\xaa\\x36\\x7a\\x2d\\x71\\xe0\\xce\\x94\\x33\\xf8\\xf5\\xd9\\xe0\\x5f\\xdb\\x9c\\x07\\x0e\\x33\\x1c\\x1e\\xb7\\x25\\x62\\x93\\x2f\\x5e\\xbb\\xf4\\xa2\\xaf\\xa5\\xbd\\xbb\\x7d\\x72\\xc3\\x3b\\xa3\\x3f\\x99\\x75\\xe9\\x09\\x1a\\x71\\x84\\x52\\x74\\x10\\x42\\x98\\x84\\x91\\x03\\x07\\x12\\xfd\\x95\\xc4\\xf0\\x75\\x20\\xbe\\xec\\xe9\\x37\\x33\\x6a\\x13\\xc0\\x12\\x10\\xbe\\x89\\x7f\\x0b\\x7c\\xbf\\x7b\\xab\\xe0\\x02\\xb3\\x4f\\x70\\x53\\x8f\\x14\\x06\\xdc\\xfd\\x98\\x67\\x46\\x9f\\xfa\\x66\\xc9\\x89\\xa1\\xf8\\x12\\xc3\\xf9\\x26\\x55\\x75\\xb4\\x25\\xd2\\x84\\x75\\x60\\x44\\xd8\\x96\\x3f\\xcc\\x98\\x17\\x09\\x75\\x0a\\x32\\x47\\xe4\\x9c\\xc0\\x2f\\x6e\\xaa\\x1e\\xf8\\x0f\\x45\\xec\\x3a\\x1e\\x48\\x26\\x7c\\x41\\x59\\xec\\x93\\xc6\\x89\\x9c\\xc0\\x76\\xb4\\x38\\x4c\\x4d\\xb8\\x3c\\x86\\xb3\\xe3\\xe4\\xe3\\x50\\xe8\\x87\\xa6\\xa0\\x5c\\x7e\\x88\\x1b\\xa5\\xf1\\xe1\\x30\\x45\\xaf\\x23\\x44\\x50\\x19\\xe0\\x85\\xb1\\xa5\\x93\\xe6\\xf3\\x38\\x66\\xea\\x3c\\xda\\x90\\xe6\\xf7\\x03\\xac\\xce\\xe2\\xf0\\xa9\\x13\\x81\\x01\\xc9\\x53\\x96\\x64\\xaf\\x5e\\x11\\xd2\\xfe\\xf6\\x21\\x69\\xf8\\xb8\\x51\\x2b\\xcc\\x49\\x08\\xf0\\xa0\\x9d\\xea\\x22\\x8b\\xed\\x79\\xe1\\x6a\\xe5\\x23\\xd5\\xda\\x4d\\xbe\\x21\\x7c\\xcd\\x5c\\xa2\\x6b\\x1a\\x32\\x01\\x5f\\xe0\\xca\\x53\\xf5\\x37\\x38\\xd4\\xf1\\x8b\\x4e\\xe5\\x12\\x15\\xd0\\xb9\\x0d\\x55\\x9b\\xfe\\xd6\\x6e\\xad\\x87\\xea\\xa1\\xa9\\x75\\x8c\\x90\\xe4\\x9f\\x46\\xb6\\x27\\x44\\x74\\x93\\x48\\xb9\\x6d\\x1a\\x75\\x77\\xf5\\x66\\xf4\\xba\\x93\\xcc\\x8e\\x32\\x4d\\x08\\xd9\\x0d\\xa7\\x1b\\x09\\xee\\xb3\\x69\\xc1\\x02\\x99\\xb6\\x72\\xdb\\x61\\x5b\\x60\\x5e\\x50\\x67\\x35\\x0e\\x38\\x50\\xac\\x3b\\x9c\\x4b\\x74\\x53\\x4d\\x30\\x91\\x4f\\x5b\\xa8\\x21\\xd4\\xa3\\xaa\\x66\\xa4\\xa0\\x30\\xa0\\xa2\\x75\\xc0\\xd6\\xa2\\x59\\x46\\xee\\x7a\\xdc\\x03\\x81\\xf2\\x35\\xae\\x4e\\xf3\\x48\\xb3\\xf6\\x02\\x57\\x1f\\xda\\xb2\\x15\\x6b\\x33\\x19\\x42\\x1e\\x64\\x53\\x53\\x5f\\x49\\xe3\\x8d\\x46\\x45\\xd3\\x05\\xb7\\x66\\x89\\x72\\x45\\xed\\x36\\x54\\x6f\\x06\\x5b\\xbb\\x34\\x2e\\x92\\x93\\xa0\\x96\\xb3\\x1d\\xbe\\x03\\x15\\x65\\x5e\\x3f\\xc5\\x45\\x21\\x0f\\x9d\\xa5\\xd5\\xb2\\xf6\\x06\\x22\\xcc\\x8f\\x98\\xba\\xa6\\xeb\\xcf\\x03\\x9d\\x08\\xb0\\xfa\\xbe\\xd6\\x3e\\x72\\x80\\x0e\\x45\\x2f\\x6b\\x4c\\x43\\xcc\\xc3\\x20\\x8b\\x33\\x8f\\x03\\xba\\x6e\\xa5\\x6a\\x9f\\x96\\xb2\\x1b\\x80\\xcd\\xfe\\x12\\x99\\x9e\\x75\\x9f\\x51\\x6a\\xfd\\x84\\x0c\\xa9\\x70\\xf2\\xa3\\xe2\\x02\\xd5\\x35\\xc2\\x1a\\x68\\x27\\xde\\x79\\x10\\x66\\x13\\x77\\xc7\\xea\\x32\\x2c\\xbe\\x55\\xf4\\xe9\\x01\\x80\\xb8\\xdf\\x0c\\x22\\xee\\x67\\x48\\xf9\\x56\\x60\\xb0\\x2d\\xa6\\x84\\x4b\\x08\\x96\\xa1\\xa9\\xab\\xb9\\x1b\\x3a\\x5a\\x17\\x5c\\x8c\\x9a\\x3d\\x6d\\xb1\\x11\\x92\\x80\\x91\\xba\\x4d\\xd8\\xc0\\xd5\\xa9\\x42\\xf0\\xb4\\x19\\xc2\\xdb\\xf6\\x62\\x7d\\xd3\\x2a\\x53\\x06\\x20\\x35\\x5e\\x9e\\x75\\x6c\\x0a\\xe4\\xf8\\x10\\xb6\\x41\\xe2\\x74\\x54\\x08\\xdd\\xbd\\xab\\xfb\\x1a\\x9d\\x04\\x7d\\x16\\xd5\\x0d\\xf0\\x5b\\xe9\\xaa\\x1b\\xf4\\x50\\xf4\\x82\\x5b\\xbd\\x44\\xbe\\xa2\\x76\\x85\\xee\\xa4\\x2e\\xa2\\x5a\\xc1\\x76\\x19\\xf3\\x2b\\x4a\\xfd\\x7e\\xaa\\x8b\\x4a\\xa1\\x1e\\xa8\\x0b\\x11\\x23\\x63\\x25\\xa1\\x27\\x3a\\xdc\\x00\\x67\\x2f\\x95\\x3f\\x8a\\x5f\\x2a\\x1d\\xce\\x1e\\x96\\xc3\\x93\\x0e\\x6d\\x08\\x29\\x35\\x84\\x58\\x36\\x8b\\x38\\x65\\xfa\\xbb\\xeb\\x3a\\xfa\\xcf\\x7b\\xf0\\x76\\xd9\\xef\\x9b\\x26\\x4d\\x30\\xd2\\x1d\\xe8\\x76\\xce\\x41\\x57\\x29\\x0a\\x6e\\xe4\\x20\\x6e\\x90\\x17\\x5e\\x22\\x09\\x7f\\xa7\\xec\\x3f\\x38\\xa8\\xbd\\x38\\x6a\\x5a\\x64\\x49\\x0c\\xb5\\x2d\\xea\\x2d\\x52\\x94\\xb8\\x74\\xe4\\x70\\x85\\x96\\xa1\\x0f\\xe1\\xba\\xf3\\x1f\\xf4\\x08\\x47\\xa0\\x5d\\x8a\\x82\\xfb\\x39\\x88\\xfb\\xe5\\x85\\x3b\\x35\\xef\\x53\\xd7\\xee\\x1d\\x77\\xbb\\x28\\xe6\\xfe\\x64\\x49\\xeb\\xb1\\xf3\\x63\\x2f\\x3f\\x8d\\x34\\x1f\\xe5\\x05\\xdf\\x05\\x7f\\x82\\xac\\x36\\x78\\xee\\x54\\x2f\\xe0\\x93\\xbd\\xc4\\x12\\x44\\x87\\xf3\\x5c\\xdd\\x96\\x80\\x0d\\xc8\\xab\\xc5\\x50\\xd4\\x77\\x91\\x1d\\x11\\x3b\\x50\\x9b\\xc7\\x31\\xa2\\xf8\\x26\\x13\\x10\\x91\\x36\\x2b\\x1f\\x89\\xd5\\x85\\xe5\\xfd\\x04\\x84\\x62\\x28\\x1f\\x2c\\x17\\x80\\x88\\x2a\\x2d\\x35\\x9f\\xd9\\x85\\x62\\xfd\\xf8\\xa7\\x9f\\x6a\\xf6\\x3e\\xde\\xab\\x74\\xa7\\x62\\x0e\\x5e\\x45\\xfd\\x0a\\x17\\x7f\\x51\\x22\\x7f\\x22\\xeb\\x02\\x0e\\x3d\\x76\\x1b\\x5c\\x3c\\xea\\x3a\\x0c\\x8c\\xee\\xda\\xd0\\x07\\xca\\x54\\x1c\\x2b\\x22\\x74\\x88\\x7f\\xef\\x2a\\x1b\\xdd\\x9e\\x03\\xf4\\xc8\\x43\\xcf\\xe8\\x3d\\x96\\x39\\xd5\\xf4\\xa6\\x73\\x5f\\x09\\xa0\\x67\\x48\\xb7\\x3e\\x7c\\x4b\\xdc\\x65\\x5a\\x7e\\xad\\x68\\x25\\xac\\x5a\\x71\\x9b\\x39\\xcf\\x90\\x82\\x63\\xb7\\xce\\xcd\\x65\\x71\\x0a\\x6e\\xd1\\xd4\\x19\\x56\\xb2\\xcb\\x2b\\x67\\x25\\x93\\x85\\xcf\\x16\\x83\\x3b\\x11\\xb8\\xaa\\x29\\x51\\xb0\\xb3\\xc0\\xe7\\xa1\\xc9\\x7b\\xa4\\x84\\x74\\xa3\\x4d\\x45\\xb5\\x70\\x19\\xc0\\x9b\\xe1\\xd2\\xbb\\xc9\\x4e\\xb2\\x52\\xcd\\xf4\\x18\\x4f\\x08\\xe2\\x57\\xd6\\x41\\xae\\x6e\\x9d\\xb6\\x1b\\x7c\\x21\\xba\\x73\\x3d\\xdd\\x69\\x5b\\x5c\\x63\\x60\\xcb\\xbc\\x48\\xd3\\x3c\\x60\\x72\\x61\\x4d\\x57\\x2a\\xc3\\x73\\xbd\\x5a\\xda\\x7c\\x31\\x6d\\x9b\\xbb\\x0d\\xe0\\x0b\\xa1\\x93\\xeb\\x5c\\x0d\\x2b\\x75\\xd9\\x06\\xa6\\xc2\\x28\\xf5\\x11\\x1d\\x64\\xe2\\xd0\\x57\\x81\\x45\\xbf\\x4d\\xcc\\x75\\xb4\\x3f\\x98\\x63\\xb9\\xc2\\xe4\\x9f\\xb3\\xf6\\xe4\\x60\\xd6\\x28\\x38\\xbc\\xad\\x2c\\xbd\\xe5\\x54\\x34\\x6a\\xfc\\x33\\xcf\\xd5\\x72\\x14\\x9a\\xa8\\xf0\\xa6\\xc8\\x49\\xd6\\x7f\\x82\\x02\\xc3\\x39\\x66\\xa7\\xc8\\xaf\\x94\\x4a\\x62\\x49\\xd5\\x2c\\xac\\x71\\x70\\x09\\x65\\x89\\x89\\x32\\x79\\x84\\xd5\\x52\\x52\\x2c\\x49\\x8b\\x52\\x98\\xda\\x1a\\x4e\\x2f\\xc5\\xbb\\xe4\\x79\\x05\\x98\\x38\\x36\\x41\\xfd\\x4f\\x94\\x78\\x4e\\x6e\\xf6\\x08\\x1a\\x95\\x6a\\x79\\xa2\\x4d\\xb9\\x04\\xa1\\xe4\\x2e\\xa0\\x3d\\x31\\x45\\x26\\x0f\\xbf\\xea\\xe5\\x5b\\x6a\\x89\\x71\\x0c\\x55\\x37\\x89\\xb3\\x4a\\xa9\\x1e\\x15\\xb4\\x99\\x84\\x9d\\x2d\\x0d\\x5f\\x9f\\x93\\x46\\xfd\\x82\\x1e\\x45\\x54\\x8e\\x76\\xd5\\xf6\\x39\\x8f\\x77\\x84\\xf2\\x3d\\xed\\xd5\\x8e\\x00\\x29\\x07\\xd8\\xb7\\x60\\xa4\\x92\\xe7\\x0d\\x86\\xd9\\x5b\\x29\\xec\\x8d\\x06\\xb7\\x73\\x84\\xc1\\x9f\\xc1\\x5f\\x1c\\x1d\\xcf\\xac\\x03\\x6d\\x69\\xdb\\x31\\xd4\\xbb\\xa3\\x29\\xa5\\x11\\x44\\xc0\\xdc\\x70\\xe2\\x1c\\xef\\x45\\x31\\xfd\\xb8\\xe8\\x8a\\xae\\xc4\\x16\\xb8\\x9e\\x3c\\x00\\xb7\\x60\\x45\\x85\\x8a\\xb7\\x78\\xe7\\x1e\\x7c\\x48\\x17\\x2b\\xe3\\x52\\xea\\xa5\\x91\\x87\\xc6\\x10\\x6f\\x58\\xf2\\xe4\\xcf\\x92\\xf7\\x46\\xf2\\xf1\\x57\\x12\\x05\\xc3\\xc8\\x88\\x9f\\xa3\\x7b\\x65\\x76\\x22\\x7c\\x0f\\x77\\xa0\\x78\\x95\\xb1\\xc1\\x0d\\x19\\xd4\\x41\\x1a\\xeb\\x63\\x6e\\x6c\\xfa\\xc8\\x48\\xea\\xaf\\xdf\\x92\\xcb\\x3d\\x51\\x65\\x04\\x23\\xc1\\x2f\\xa9\\x83\\x65\\x50\\x5a\\x98\\xd4\\xcf\\xba\\x26\\xae\\x3d\\xdd\\xb0\\xb1\\x5c\\x4e\\x1d\\xe6\\x15\\x54\\x08\\x81\\x07\\x01\\x96\\x34\\xbf\\xe9\\x55\\xa5\\x16\\x60\\x0b\\xd8\\xa7\\x47\\xb9\\x73\\x7a\\xe9\\xdc\\x1c\\x66\\x05\\xd0\\x36\\xc1\\x8a\\x03\\xdd\\x4b\\xbd\\x12\\x60\\x09\\xd1\\x1d\\xbd\\x5e\\x7d\\x5d\\x60\\xf9\\xdb\\x80\\x26\\x5a\\x19\\x6c\\x1e\\xb1\\xf0\\x0f\\x85\\x13\\xbd\\x07\\x65\\x2e\\x76\\x90\\xd8\\x03\\xb0\\x6f\\xc3\\x9a\\x16\\xaf\\xa6\\x10\\xed\\x81\\x6b\\xb9\\x05\\xe4\\xd9\\x04\\xb5\\xb4\\x2e\\xc4\\x5f\\x2f\\x11\\x1e\\x44\\xae\\xf5\\x43\\x80\\xef\\x47\\xf7\\x5d\\x0a\\xbb\\xf0\\xa0\\xd4\\x29\\xf0\\x57\\x74\\x03\\xec\\x26\\xf0\\x2c\\x5d\\x33\\xe9\\x54\\xeb\\xcd\\x40\\xd3\\xdb\\x00\\x4b\\xec\\x31\\x05\\xcb\\x52\\xf9\\xc1\\x30\\xe2\\xd0\\xa1\\xa5\\x0c\\x4e\\x27\\x7a\\x25\\x71\\x13\\x2c\\x3f\\xd8\\xd5\\xeb\\x95\\x08\\xf3\\xdb\\x02\\x91\\x7c\\x45\\x3d\\x9e\\x6d\\xd2\\x73\\x57\\xb2\\x9e\\x11\\x33\\xf7\\xd0\\xbc\\x86\\x86\\x6f\\xe6\\x20\\x6d\\x1e\\x47\\x98\\x2c\\x92\\xea\\x31\\x4a\\xae\\x54\\xcd\\xbb\\x69\\x70\\xe0\\x0e\\x3c\\xcf\\xc9\\xfa\\x4d\\x2c\\xa9\\x43\\xb8\\x25\\x84\\x6b\\x75\\xdb\\x42\\x24\\xb1\\xd4\\x80\\x55\\x61\\x5a\\x70\\x1e\\xf2\\xb6\\x5c\\xe4\\xe3\\xfc\\x17\\x6f\\xe8\\xc8\\xcb\\x3d\\xb4\\xfa\\x8f\\x8b\\xf3\\x8e\\x3a\\xf5\\xf7\\x19\\x19\\xff\\x44\\x20\\xe6\\x45\\x91\\x67\\xca\\xb6\\x95\\xca\\xfc\\x58\\x63\\x66\\xc4\\x75\\x96\\x59\\xdf\\x3a\\xe3\\x9e\\x51\\x04\\x8c\\x89\\xa1\\x59\\xe2\\xb1\\x72\\x56\\x9d\\xf2\\xa5\\x03\\xe5\\xdd\\xa6\\xd8\\xff\\xd8\\xfd\\xb8\\xd1\\xaf\\x63\\xb1\\xa8\\x4c\\xef\\x6f\\xc0\\x97\\xcf\\x91\\x83\\x7f\\x79\\xc8\\x2f\\x06\\xd4\\x91\\x26\\x12\\xdf\\x41\\xaf\\x20\\xc9\\xaf\\x75\\x11\\x9a\\x66\\x0a\\xf0\\x8b\\x39\\x55\\x3d\\x51\\x9c\\x2a\\xd0\\x6d\\x8c\\xda\\x17\\x84\\x42\\xd7\\x0c\\x5d\\x56\\xa3\\x4c\\x02\\xfa\\x2a\\x50\\x23\\x88\\x78\\xe4\\x01\\x28\\xd7\\x56\\x23\\x49\\xb3\\xe0\\x76\\x57\\x71\\x2a\\xbb\\xca\\x65\\x3d\\x6d\\xfb\\x61\\x73\\xbd\\xa4\\xee\\xa2\\xec\\xfb\\xd6\\x15\\x26\\xc6\\xd0\\xfc\\x7c\\x82\\xfa\\x85\\xa2\\x8c\\xf1\\x9a\\xa6\\xf1\\xf0\\x06\\x8d\\x39\\xb6\\x74\\x7f\\x1c\\x25\\xf0\\xac\\x0a\\x1f\\xf4\\x4d\\xd0\\x59\\xb3\\x17\\x17\\x34\\xea\\x5e\\x29\\x09\\x49\\x0f\\xe4\\xf8\\x7d\\x8b\\x74\\x26\\xb9\\x2f\\xc4\\xa0\\x5c\\xab\\x74\\x4f\\xd3\\x38\\x8e\\x29\\xd3\\x86\\x4c\\x25\\xe9\\x94\\xab\\x34\\xa6\\xa8\\x6a\\x64\\x2c\\xa8\\xa8\\xdb\\x4b\\xd0\\x0f\\xb6\\xdf\\x5c\\x71\\xf9\\x07\\x0b\\x6b\\xfb\\xf1\\x56\\xe6\\x56\\xa9\\x4b\\xba\\x61\\xdd\\xf0\\x78\\x03\\xcb\\xf4\\xfe\\x0f\\xcb\\x8b\\x92\\xba\\x66\\xad\\x36\\x7e\\xe6\\xfa\\xdd\\x25\\x2f\\xed\\xbb\\xad\\x43\\xa4\\x07\\x44\\x09\\x6c\\xf9\\x65\\xce\\x12\\x82\\x9b\\x68\\xd7\\x3b\\xfd\\x83\\x3d\\xac\\x1d\\xb4\\xb0\\xfc\\x80\\xb0\\x6c\\x8c\\x76\\x11\\x30\\xad\\x80\\x60\\x49\\x4b\\xc7\\xa8\\x61\\x04\\x86\\x77\\x76\\x55\\x78\\xcd\\x8c\\xbc\\x85\\xaf\\xb5\\x95\\xf8\\xc3\\x58\\x12\\xce\\xd9\\xbf\\x63\\xea\\xce\\x91\\xfa\\x7d\\xc5\\x95\\x69\\x58\\x1c\\x25\\x1c\\x72\\x20\\x34\\x8c\\x9b\\x60\\xd3\\xda\\xfd\\x03\\xbd\\x9c\\x5d\\x35\\xa2\\x89\\x5d\\x86\\x67\\x4a\\xb8\\x09\\x52\\xac\\x82\\xea\\x94\\xd9\\x9c\\xb5\\x17\\x4f\\xf2\\x74\\x97\\xd7\\x9a\\x69\\x05\\x8b\\x48\\xe3\\x1c\\x11\\x8c\\x60\\xa9\\x38\\x27\\x7e\\x07\\xee\\x1c\\x24\\xf6\\xee\\xfb\\xa2\\x14\\x83\\xfe\\xd7\\x8f\\x34\\xe9\\xa7\\x08\\xbc\\x02\\xa8\\x35\\x7b\\x26\\x05\\xb3\\x38\\x1a\\xee\\x97\\x9f\\x7c\\xee\\xc3\\xa6\\x89\\x55\\x08\\x2f\\x04\\x6a\\x10\\x4f\\x5c\\x38\\x47\\x28\\x45\\x57\\x17\\xab\\xde\\xe2\\x22\\xdf\\x82\\xa7\\xbc\\x39\\xcf\\xff\\xe4\\x03\\x49\\xdf\\x4a\\xf5\\x2f\\x8c\\x3e\\x33\\x27\\x81\\x0e\\xf3\\xb3\\x10\\x8e\\xbd\\x40\\xe1\\x24\\xc9\\x11\\xb5\\x48\\x5d\\x36\\x3a\\x60\\x2a\\x90\\x45\\x03\\x4e\\xd6\\x2e\\x99\\xd6\\x4d\\xa2\\xfe\\xdd\\xdb\\x80\\x29\\xb4\\xf2\\x7b\\xfa\\xd4\\x6c\\x31\\xbb\\x24\\xc4\\xe3\\x5b\\x51\\x40\\xee\\x49\\xe3\\x5f\\xd4\\x50\\xd1\\xc5\\xb9\\xb3\\xbc\\xe2\\x26\\xd3\\x18\\xbf\\x61\\xed\\x44\\xce\\xc1\\x2c\\x87\\xb3\\xbb\\xbc\\xf4\\x26\\xdd\\x10\\x37\\x10\\x92\\xe4\\x62\\x37\\xca\\xbf\\xb6\\x6c\\xdd\\x15\\x51\\x6b\\x77\\xd3\\x97\\xae\\x31\\xd4\\x6a\\xad\\xfc\\x9b\\x4b\\x37\\x5e\\x11\\xb7\\x9a\\x67\\x6a\\x1c\\x21\\x57\\x84\\xdb\\x45\\x1f\\x0b\\x15\\xe5\\x7d\\xe2\\x3e\\x56\\xb6\\x60\\xcd\\xa9\\x07\\x16\\xf2\\x49\\x22\\x2d\\x2c\\xa2\\xe1\\xaa\\xd3\\x59\\x6a\\x86\\x28\\x3a\\xc6\\x81\\x91\\xa3\\x3e\\x23\\x90\\x51\\xdb\\x53\\xd3\\x1c\\xa5\\x6d\\x46\\x16\\xa4\\x62\\xac\\x28\\x95\\x6b\\xad\\x40\\x65\\x6e\\x68\\xa0\\xa7\\x4c\\x40\\xb4\\x15\\xf5\\x15\\x22\\xf4\\x3b\\xdf\\x8f\\x0f\\x6f\\xc8\\x22\\xf5\\xbc\\x54\\xcc\\xab\\x3a\\xf6\\xe4\\x99\\x7d\\xe1\\x8b\\xfb\\xb6\\xaf\\x24\\x3e\\x18\\xcf\\x2e\\x8f\\x00\\x00\\x40\\xff\\xbf\\x13\\x9b\\x3c\\x5f\\x5f\\x36\\x71\\x45\\xe8\\x1f\\x05\\x65\\x0f\\xb8\\xc3\\x9c\\x4e\\xfa\\xa8\\xfb\\xb4\\xea\\xd2\\x75\\xb1\\xee\\xae\\x2f\\x5b\\xeb\\x2b\\x63\\x35\\x2e\\xce\\xad\\x95\\x65\\x37\\x69\\x91\\x48\\x98\\x1d\\xa3\\x8c\\x67\\xd5\\x18\\x95\\xa3\\x25\\x4c\\xce\\x11\\x2a\\x1d\\x5f\\x0e\\x22\\x4f\\x7f\\xa0\\x82\\x39\\x0a\\xf6\\xbd\\xb5\\x41\\xfe\\xd1\\x45\\x02\\x7d\\x17\\x30\\xe2\\x5d\\xf1\\x13\\x74\\x29\\xa6\\x05\\xa3\\x51\\x42\\x6d\\x01\\x96\\x25\\xbc\\x51\\xb7\\xa1\\x34\\x86\\xfd\\x6a\\x11\\x32\\x63\\x13\\x3b\\xe0\\x44\\x45\\x9a\\x27\\x70\\x40\\x9d\\x4a\\x12\\x67\\xd0\\x2a\\xb4\\xc1\\x88\\xca\\x0c\\x57\\x88\\xc0\\x1c\\x19\\x62\\xd5\\xca\\x91\\x61\\x78\\x4a\\x7d\\x5f\\x08\\x5e\\x35\\xb6\\x1e\\x1e\\xb8\\x89\\x0c\\x74\\x32\\xea\\xe2\\x81\\xde\\x6a\\xef\\x4b\\xc6\\xe3\\x1b\\xd0\\x86\\x17\\x8d\\xd1\\xe6\\xff\\xa3\\x3d\\x44\\x68\\xc6\\x75\\x57\\x96\\xe3\\xe9\\xa7\\x1e\\xc5\\x60\\x92\\xa7\\xab\\x16\\xae\\x9f\\x4b\\xa5\\x15\\xac\\x79\\xb8\\xf1\\xa2\\x6c\\x9e\\x4f\\x10\\x84\\x70\\x0d\\x23\\x14\\x99\\x01\\x1e\\xd7\\xa2\\xa8\\x3e\\x95\\x14\\x11\\x12\\x9e\\x5e\\x3e\\xba\\x1a\\x4e\\x4f\\x68\\x21\\x82\\x9e\\x94\\x17\\x08\\xf8\\xf6\\x67\\x3e\\x49\\x43\\x6c\\x9c\\x3a\\x98\\xac\\x46\\xd7\\x44\\x7d\\xb4\\x3a\\x0a\\xcd\\x50\\x26\\x29\\x75\\xa8\\x98\\x0e\\xa8\\x8e\\xdb\\xf8\\xcf\\x2b\\x51\\xce\\xac\\x96\\x8e\\x8d\\xdb\\x6f\\x61\\x32\\x43\\x57\\x23\\xe9\\xf5\\xc4\\x24\\x31\\x82\\xfa\\x39\\xa2\\x06\\x05\\xe3\\x58\\xfb\\xf2\\x8f\\x20\\x32\\x71\\xe7\\xb8\\x0f\\x22\\x89\\x56\\xf8\\xe5\\x8f\\x86\\x67\\xfc\\x65\\xe8\\xe7\\x1c\\x70\\x3b\\x60\\xd2\\x46\\x2c\\x82\\x11\\x82\\xd8\\x13\\x01\\xab\\x10\\x9c\\xf3\\xc5\\x0f\\x2e\\x72\\xac\\x65\\x73\\x2e\\xed\\x72\\x9f\\x09\\xe0\\xee\\x15\\x5f\\x9d\\xe3\\xa8\\xc1\\xc8\\x1b\\xab\\xfc\\x34\\x33\\x0f\\x44\\x4b\\x72\\xd8\\x1b\\x8d\\x2a\\xc2\\x86\\x4c\\x1a\\x80\\x97\\xbd\\x87\\x74\\x72\\xd4\\xeb\\xa9\\x93\\x05\\xa3\\x4e\\xa5\\x56\\x39\\xae\\x7e\\x1e\\x6b\\x7a\\xaa\\x60\\xc7\\xbd\\x3d\\x59\\x0b\\x64\\xde\\x08\\x3e\\xd2\\x3f\\xd3\\xd2\\xc8\\x90\\x75\\x8c\\xeb\\x11\\x95\\x0f\\xb5\\xfc\\xbd\\xeb\\xf4\\xd9\\xdc\\x2f\\xd7\\xaa\\xd7\\xfc\\x02\\xcb\\x15\\x45\\x0e\\x86\\x87\\xab\\x97\\x5c\\x35\\xed\\x31\\x67\\x86\\xa4\\x0a\\xb4\\x91\\x8c\\xd9\\x5e\\xe4\\xd2\\xd4\\x8d\\x3a\\xda\\x9a\\x66\\x48\\xa6\\x8c\\x48\\x14\\x14\\xcf\\xd4\\xf0\\x23\\x10\\xaa\\x3a\\xcc\\xf1\\x12\\xad\\x90\\x1d\\x24\\x30\\xe9\\x30\\x94\\xa2\\x91\\x15\\xb4\\x12\\xad\\x20\\x31\\xac\\x8f\\xf0\\xe0\\xed\\x81\\xfe\\x09\\x8a\\xc4\\x72\\xb5\\x8e\\x33\\x32\\x5c\\xcc\\x80\\x89\\xcb\\x2c\\xd9\\xc5\\x3e\\x28\\x57\\x5f\\x60\\x8a\\x11\\x84\\x87\\x98\\x81\\xc8\\xfa\\x81\\xb2\\x60\\x8c\\x44\\xcf\\x4c\\x50\\xa4\\x45\\xf2\\x48\\xa2\\x1e\\xd5\\xe3\\x4e\\xb8\\x1a\\xfe\\xfd\\x68\\x41\\x4c\\x98\\x5f\\x11\\x64\\x3e\\xcb\\xc8\\xd8\\x4c\\x4d\\xfd\\x7c\\x3e\\x80\\xff\\x82\\x46\\xfe\\x5e\\xb8\\x93\\xb9\\x62\\xa0\\x25\\x75\\x70\\x23\\x5a\\x71\\xf6\\x9e\\x14\\x42\\x4d\\xb9\\x47\\xb0\\x9f\\xb8\\xf9\\xc2\\x1c\\x70\\x98\\x5a\\xfe\\xdc\\x21\\x48\\x67\\xf5\\x68\\x75\\x16\\x0f\\x05\\x7c\\x39\\x82\\x51\\xad\\x36\\xd8\\xe4\\x6f\\x2a\\xc2\\xc4\\x86\\x96\\x6f\\x4f\\x6e\\x8a\\x29\\xad\\xed\\x86\\x06\\xff\\xcc\\x23\\xcd\\x31\\xdb\\x7b\\xbb\\x06\\x86\\x97\\xdf\\x86\\xe9\\x4b\\x96\\x32\\xe9\\xd4\\x2b\\xa1\\xf5\\xfb\\x8a\\xf8\\xb2\\x4f\\x60\\x6a\\xcd\\x87\\xe7\\x73\\xfc\\x05\\x18\\x0f\\xd5\\x59\\xaf\\xfe\\xd9\\xe1\\x6c\\xf4\\x4e\\xb3\\x68\\x98\\xf9\\x16\\xde\\x82\\xda\\xfe\\x25\\x52\\x1d\\xd3\\x74\\xe3\\xba\\xa5\\x58\\xc5\\xb2\\x4a\\x22\\xaa\\x1b\\x78\\xcc\\xe8\\x0d\\x66\\xd3\\xb8\\x78\\xc9\\x2b\\xb2\\xde\\xa1\\xc9\\x62\\x95\\x43\\xdc\\xf3\\xfd\\xff\\xa8\\x63\\x34\\x85\\xd1\\x00\\x6d\\x12\\x77\\x94\\x98\\x70\\x4a\\x08\\xe9\\x9c\\xb1\\x17\\x43\\x04\\x7b\\xf5\\xce\\x21\\x0f\\x6e\\x2d\\x6b\\x19\\xe2\\xb3\\x25\\xed\\x48\\x67\\x90\\x92\\xf4\\x8a\\x21\\x8d\\x62\\x37\\xc7\\xd5\\x5c\\x98\\x17\\x72\\xc8\\x74\\x52\\x91\\x09\\x13\\xb4\\x6b\\xc8\\x6d\\x43\\xc6\\x0e\\x94\\x8c\\x67\\x6e\\x23\\x63\\xa4\\xe4\\x7e\\xba\\x7c\\xe6\\x75\\x61\\x94\\xa4\\x13\\xb1\\x20\\x45\\xfb\\x0c\\x4e\\x56\\x52\\x25\\x71\\x87\\x42\\x27\\x15\\x1b\\xb0\\x75\\x56\\x26\\x74\\x44\\xe2\\xe1\\xf8\\x0c\\x38\\x66\\xf0\\x72\\x55\\x12\\xc2\\x0a\\x04\\x72\\x4e\\x9a\\x9a\\x05\\xb5\\x69\\xda\\xb3\\x48\\x3d\\x18\\x28\\x64\\xa8\\x99\\xcd\\x4e\\xac\\x99\\x44\\x70\\x54\\xb1\\x92\\x28\\xb8\\xd9\\xaa\\xc1\\xf6\\xe4\\x5c\\x03\\x44\\xd6\\x8e\\x9d\\xf4\\x39\\xb5\\x2e\\x41\\x35\\x59\\xec\\x24\\xfd\\x11\\x2f\\x6e\\xb5\\x36\\x82\\x6a\\x61\\x38\\xac\\x6c\\x46\\x88\\xab\\x1d\\xba\\x33\\xfc\\x99\\x0e\\xbd\\xdd\\xdc\\xca\\x55\\x8e\\x56\\x0f\\x7b\\xc1\\x34\\xaa\\xdb\\x18\\x33\\x0f\\xbb\\xcb\\x74\\x35\\x8f\\xdf\\xa7\\xba\\xb8\\x24\\x2d\\x85\\x45\\xd8\\x68\\x26\\x94\\xbb\\x5c\\x7e\\x49\\x31\\xf1\\x2d\\x68\\xdc\\x3e\\xc3\\x9d\\xc7\\x71\\xd2\\x5c\\x6a\\x04\\xd6\\x7d\\xb3\\x20\\xd9\\x2f\\xda\\x02\\x3a\\x62\\x69\\x46\\xa2\\xf0\\xe1\\x68\\x48\\x9c\\x87\\x2f\\x62\\x5a\\xd4\\xf5\\x8a\\x87\\xc1\\x96\\xad\\x5d\\x6a\\xe0\\x76\\x9d\\x5d\\xf0\\xb8\\x79\\xe2\\x01\\xcf\\x1a\\xb8\\xae\\x6c\\xea\\x97\\x1c\\x0c\\xe8\\x45\\x2f\\x76\\x76\\xdd\\x69\\xd0\\xfb\\x6f\\x6b\\xcb\\xc5\\xb8\\xfe\\x89\\x6b\\x24\\xd2\\xbf\\x96\\xcf\\x6f\\xf8\\xa6\\xf5\\xdc\\x78\\x7d\\xe3\\x69\\x58\\xfd\\xd5\\x9a\\xe1\\xce\\x17\\xcd\\x45\\xf2\\xe6\\x91\\xb0\\x90\\xe0\\x2e\\x5d\\xad\\xd5\\x85\\x8d\\xe1\\x99\\xc9\\x9d\\x1c\\xde\\x38\\x6e\\x3a\\xd6\\x48\\x1c\\xcb\\xaa\\x7a\\x38\\xda\\xdc\\xb0\\x86\\x73\\x16\\xb3\\x73\\xa8\\x50\\x72\\xd1\\xc0\\x1b\\xdb\\x9b\\xca\\xda\\xf2\\xb9\\x18\\xfc\\x9d\\xa2\\xa8\\x96\\x02\\xdf\\x51\\xdc\\x76\\xfd\\x10\\xa8\\x5e\\xcc\\x96\\x77\\x8d\\x47\\xf0\\x16\\x89\\x5c\\xa1\\x66\\xc8\\xc3\\xa0\\xae\\x0b\\xfb\\x08\\xf0\\x62\\xc4\\x7f\\xc4\\x6b\\x3c\\x9a\\xcf\\x5e\\xd7\\x4a\\xf0\\x49\\x42\\xaf\\x63\\xc1\\x33\\xf8\\x42\\x74\\x9d\\xed\\xd1\\x1a\\xcc\\x27\\xec\\x44\\xa5\\xa4\\xa1\\x4b\\x7b\\xc8\\xbb\\xf2\\xaa\\xfb\\x4f\\xc6\\x46\\xa0\\xce\\xc8\\x4d\\xc8\\x59\\xf9\\x2a\\xb2\\xfc\\x11\\xb4\\x76\\x85\\xaf\\x6d\\xdc\\xd5\\x97\\xab\\x04\\x38\\xda\\xec\\xdd\\x2e\\x88\\xa1\\xbf\\xdd\\xa6\\x8d\\xae\\x39\\xe5\\x4b\\x78\\x26\\x5e\\x3d\\xc0\\xe3\\xcd\\x69\\xed\\xd4\\x5a\\x8a\\x56\\xcd\\xf6\\x06\\x4a\\xd1\\x89\\xeb\\xea\\xd5\\xf6\\x76\\x9d\\xaa\\xbb\\x8a\\xab\\x89\\x85\\x03\\x0d\\x7d\\x75\\x7d\\x79\\x23\\x3c\\x2b\\x78\\x39\\x46\\xda\\x34\\x49\\xcd\\x4d\\xdf\\x1c\\xe1\\x7b\\x03\\x7b\\x9f\\xef\\x95\\xf7\\x30\\x46\\x55\\xe5\\x4d\\x7b\\x3c\\x40\\xae\\x6b\\x2e\\xf9\\x95\\x6b\\x27\\x0e\\xe2\\x9b\\x11\\xf6\\x38\\xa1\\x27\\x9d\\xed\\x4a\\x25\\xc3\\x22\\x1b\\x84\\x68\\x43\\xbb\\xb4\\xcb\\xc2\\x51\\x58\\x0f\\x07\\xb4\\x17\\xfa\\x1d\\x2b\\x89\\x29\\x55\\x68\\xec\\xfd\\xad\\x72\\x16\\x01\\x48\\x57\\xfa\\x00\\xae\\x6b\\xe8\\x83\\xdf\\x2b\\x23\\x6b\\x1f\\xde\\xd7\\xd0\\x22\\xf9\\x10\\x54\\xf0\\xc9\\xca\\xf4\\x6e\\x45\\xc1\\x03\\x43\\x90\\xf9\\x02\\x38\\xe7\\x52\\x79\\x0f\\xc6\\x5a\\xc1\\x25\\xe1\\xbf\\xfe\\xda\\xbb\\x4e\\xe0\\x62\\x66\\x53\\x73\\x8b\\xe7\\xce\\x8c\\xbc\\xf9\\x21\\x16\\x77\\xb4\\x22\\xfa\\x7a\\x5d\\x7a\\x6e\\x4a\\xf1\\xd2\\x68\\x51\\xea\\xf2\\xcb\\xa5\\x7a\\xee\\x7f\\xc3\\x2a\\x12\\x13\\xdf\\x65\\x33\\xe7\\xeb\\xe2\\xc9\\x5b\\xfd\\x14\\x91\\x21\\xb3\\x27\\x4f\\x3f\\xdd\\x4e\\xef\\x9d\\xf8\\x93\\x68\\x46\\xb9\\x03\\xa2\\xfd\\x31\\xdd\\xba\\xdc\\xbd\\x21\\x86\\x9c\\xfc\\xaf\\xcb\\x83\\xa4\\x38\\x7b\\x5f\\xcd\\x1d\\x2c\\x6c\\x0f\\x4b\\xe4\\xe1\\xfe\\xe5\\xf1\\xf3\\x8e\\x9c\\x14\\xf3\\xfe\\x56\\xf7\\xd1\\xb3\\x8b\\x22\\x16\\xe1\\xbd\\x67\\x07\\xd1\\x04\\x0b\\x2d\\x4c\\xe1\\x16\\xf6\\xf0\\x58\\x8b\\xc8\\xad\\xf2\\x77\\x78\\x64\\xb7\\xdf\\x9d\\x20\\xab\\xe9\\xd7\\x7f\\x39\\x50\\xbb\\xf7\\xe1\\xad\\x83\\x81\\x05\\x58\\x4e\\x0d\\x82\\xb5\\x2a\\x7f\\xdd\\x90\\xd8\\x69\\x76\\x56\\x89\\x4a\\x24\\x00\\xd6\\x0c\\x50\\x13\\xd0\\xbf\\x91\\xe4\\x97\\x6e\\xfe\\x62\\x9b\\xcb\\xff\\xb9\\x1e\\xac\\x2b\\xc8\\x56\\xb1\\x57\\x54\\xce\\xf0\\x28\\xa3\\xa4\\x13\\xab\\x42\\x3d\\xf0\\xdc\\x33\\x7b\\xfb\\x65\\xc5\\x09\\x64\\x4b\\xad\\xcb\\xfa\\xc6\\xeb\\x73\\x52\\x30\\x50\\xea\\xdf\\x4c\\x09\\x84\\x60\\x00\\x63\\x40\\xd4\\x79\\xfa\\x62\\xda\\x6d\\x2b\\xdb\\xb2\\xb7\\x24\\xd4\\xff\\x7f\\xed\\xb6\\xa7\\xa0\\xd7\\x22\\xdd\\xdd\\x54\\x27\\xd9\\x42\\x12\\x2b\\xc9\\x4e\\x03\\x52\\xe5\\x44\\x88\\x1a\\x12\\x2e\\xbe\\x20\\x96\\xa7\\xaa\\xce\\x45\\x60\\x9b\\xff\\x70\\x99\\x3e\\x7f\\x96\\x22\\x18\\x15\\xb0\\x61\\x67\\xe4\\xed\\x8a\\x79\\x51\\x07\\xed\\xb7\\x84\\x30\\x4c\\x05\\x2c\\xad\\x23\\x0d\\x7a\\xb2\\xc3\\x41\\x30\\x13\\x49\\xb9\\x73\\x0c\\xfa\\x41\\xe8\\x8e\\xb4\\x8b\\x57\\xba\\x5d\\xa1\\x8d\\x8b\\xf8\\x3c\\x83\\x83\\x10\\xc1\\xf4\\x59\\x0e\\x9b\\x23\\x35\\xed\\x8b\\x79\\xbc\\x98\\x03\\xdf\\xf4\\xfb\\xc5\\x9c\\x07\\x75\\xd2\\x82\\xc2\\x20\\x91\\xd9\\x43\\xa7\\x1a\\xfc\\x76\\x4c\\x04\\xdd\\x63\\x12\\x7f\\x0f\\x22\\x37\\x0c\\x15\\x4f\\x55\\x24\\x13\\x24\\x16\\x57\\xd6\\x56\\xdf\\x2d\\xba\\xe9\\x7c\\x4a\\x3b\\x18\\xbe\\x14\\xd6\\xb5\\x21\\xa3\\x7c\\xe1\\x83\\x54\\x10\\x99\\x0c\\x98\\xf2\\xe1\\x9c\\xa0\\x17\\x4f\\x09\\x4a\\x4f\\x1f\\x90\\xbe\\x50\\xc2\\x64\\x1e\\x5c\\x48\\x67\\xb1\\x1c\\x34\\x5f\\x57\\xf2\\x4d\\xe9\\xad\\x36\\xc0\\xd4\\x0f\\x56\\xb9\\x13\\x18\\xa6\\xd8\\xd4\\xbd\\x27\\x44\\xfa\\x23\\xe9\\x60\\x90\\x2e\\xb3\\xc0\\x0b\\x5d\\xa0\\x95\\xc9\\x73\\xdc\\x5b\\xa9\\xee\\x5d\\x7a\\x6c\\xd2\\xee\\x5e\\x9a\\x23\\x64\\x87\\x4a\\xe1\\xf9\\x7c\\x8d\\x2e\\x45\\xd4\\xc5\\xe8\\x8b\\x21\\xc7\\xe2\\x4a\\x7b\\x88\\x53\\xcb\\x33\\x73\\xde\\x04\\x82\\x71\\xbc\\xee\\xa3\\x8b\\xc6\\x76\\xa2\\x2c\\xe4\\xce\\xcf\\xfb\\xa1\\x4b\\xd2\\x6b\\x93\\x87\\xd8\\xa1\\x3a\\xc8\\x08\\x5a\\xca\\xeb\\xc1\\x38\\xb4\\x43\\x7c\\x05\\xf0\\x06\\x9a\\xf1\\x9c\\x31\\xac\\xcf\\x87\\x17\\x91\\x28\\x11\\xd4\\xd9\\xc3\\x6f\\x35\\x44\\xca\\x7b\\xec\\xee\\x08\\x5d\\xd5\\x02\\x4e\\x8e\\x6a\\xbd\\x07\\x28\\x94\\x73\\xeb\\xb0\\x35\\xad\\xdb\\xc6\\x82\\x29\\xb3\\x85\\x3b\\x07\\x60\\x87\\x3c\\xf0\\xe2\\xe1\\xb2\\x10\\x4a\\xf3\\xe6\\xd0\\x51\\x38\\xb2\\xcf\\x3f\\xa8\\xd8\\x61\\xa1\\xdb\\x58\\x80\\xd7\\x65\\x22\\x13\\xa1\\xf8\\x03\\x73\\xdb\\x8c\\xe4\\x1c\\xa0\\xd5\\xc5\\xdc\\xef\\xb6\\xae\\xdc\\x65\\x28\\x9b\\xb6\\x25\\xa6\\x1c\\xeb\\x5a\\x59\\x51\\x7d\\x06\\xd0\\x94\\x2b\\x05\\xc7\\x88\\x94\\xdd\\xb4\\xcb\\x7c\\x32\\x9f\\x8a\\xf0\\xdf\\xc7\\xf9\\x23\\xfe\\xf3\\x46\\x32\\x1c\\x23\\xf4\\xbe\\xf6\\xfa\\x1b\\xcf\\x00\\xb4\\x28\\x13\\x77\\x64\\xc8\\x7c\\xf5\\xfb\\xff\\x84\\xc5\\x6f\\xd9\\xdd\\xbe\\x4f\\x17\\xf9\\xdb\\x1f\\x08\\x49\\xb0\\xa4\\xf4\\xe6\\xc3\\x9a\\x90\\x6f\\xff\\x64\\xce\\xfc\\x11\\xda\\x44\\xa1\\x2f\\x3d\\x1d\\x9f\\x55\\xf0\\x0b\\x43\\x60\\x9e\\x65\\x94\\xa5\\xb6\\xa5\\x2c\\x62\\xb0\\x81\\x54\\x74\\xda\\x2d\\x3e\\x57\\x3e\\x91\\x5a\\xf9\\x63\\x49\\xf6\\xed\\xcc\\x79\\x9f\\x23\\x10\\x9f\\xcd\\xcb\\x7c\\x33\\x22\\xfe\\x6b\\x0c\\xb2\\xcc\\xde\\x50\\x43\\x86\\x73\\x4d\\xc8\\x4b\\x44\\x73\\xe1\\x64\\x04\\xd4\\x90\\x16\\x90\\x01\\x24\\xa2\\xfc\\xb0\\xe3\\x5b\\xae\\x49\\x62\\x8e\\x8f\\x3c\\xf1\\xf7\\x61\\xfc\\xfa\\xe4\\xde\\xdb\\xb9\\x37\\xff\\xaa\\xfa\\x5a\\x64\\x8d\\x82\\x41\\x47\\x38\\x7b\\xae\\x6e\\xfa\\x29\\xed\\x70\\xcc\\xf4\\x2c\\x2e\\x96\\xc4\\xf9\\xfa\\xdb\\xf5\\x99\\x59\\xdc\\xb0\\x59\\x16\\xe5\\x5c\\xa3\\xce\\xe7\\xbc\\x12\\x1b\\xef\\xdd\\x82\\xa6\\xa3\\x65\\x36\\xc6\\x2b\\x27\\x32\\x53\\x74\\x76\\x86\\xb6\\x73\\xb6\\x16\\x61\\xc2\\x2f\\xb4\\x31\\x7f\\x59\\x0d\\x47\\x10\\x16\\x36\\x7e\\x1d\\x9b\\xa7\\x78\\xf7\\x8f\\xf1\\x9c\\xa4\\x35\\x76\\xf9\\xe1\\x9f\\xca\\x9b\\xd5\\xdf\\x7a\\x91\\x28\\x8e\\x3f\\x57\\x46\\xc2\\xd8\\x23\\x65\\x65\\xc3\\x48\\xe9\\x69\\x12\\x33\\x36\\x2d\\x2b\\x63\\xa0\\x29\\xc4\\x78\\x5b\\xa2\\x9c\\xf8\\x76\\x7a\\x2a\\xf3\\xf9\\xab\\xb2\\x13\\x9c\\x0e\\x2e\\xfc\\xa7\\x8e\\xb5\\x7b\\x38\\x1c\\x2e\\xe2\\xfe\\xb7\\x41\\xf3\\x17\\x27\\x5e\\x5e\\x48\\x4c\\xda\\x79\\x3f\\xd6\\x37\\xc9\\x97\\x10\\x69\\x3c\\x6a\\xe4\\x13\\xad\\x32\\xc4\\xb7\\x91\\x2f\\x7f\\xa9\\x42\\x4b\\x1d\\x5f\\xb9\\x73\\xf7\\x8e\\x01\\x7f\\xfd\\xaf\\xfe\\x87\\x63\\x0a\\xe8\\x5f\\x78\\x75\\xa7\\xa6\\x9e\\x01\\x33\\xcf\\x74\\xaa\\x72\\xc9\\x5c\\x8e\\xf6\\x4f\\xd5\\x37\\x94\\xc0\\xbf\\x99\\xe8\\x27\\xfd\\x23\\xe6\\xcd\\x4f\\xdd\\xe8\\xb0\\xdc\\x34\\x7c\\x33\\x03\\xf9\\xf4\\xb5\\x14\\xc5\\x2a\\xf0\\x9a\\x5d\\xca\\x9f\\x41\\x70\\x55\\xf0\\x5f\\x12\\x9a\\x38\\x74\\x72\\xa3\\x02\\xda\\x88\\xa5\\x2c\\x6c\\x44\\x5f\\xc6\\x17\\x9d\\xc4\\xdc\\xc9\\x5d\\xc8\\xbc\\xe1\\x3b\\xe8\\xdd\\xc7\\xe1\\xa9\\x70\\x67\\x32\\x91\\x2f\\x78\\xc5\\x2f\\x6c\\x68\\xa2\\xb6\\x6e\\xc4\\x93\\x06\\x37\\x9a\\xa2\\x96\\x2a\\xab\\x03\\xab\\x8b\\x66\\xf5\\x5e\\x55\\x5c\\xf5\\xa1\\xb5\\x98\\x6a\\x09\\x64\\xf9\\x32\\xa9\\xf1\\x9d\\x32\\xde\\xca\\x98\\x32\\x25\\xfc\\xe3\\x9b\\xf7\\x4b\\x38\\x8a\\xdf\\x0b\\x66\\x8d\\xcd\\xe2\\xe5\\x5f\\x0e\\x26\\xfc\\xb4\\x2a\\x5f\\x88\\xf9\\x41\\xe1\\xbd\\x9f\\xda\\x36\\x26\\x3d\\xdd\\x6c\\x24\\xa5\\xa7\\xef\\x16\\x4d\\x51\\xf0\\x85\\xe3\\x0b\\xa5\\x8e\\xd6\\x32\\xae\\xc5\\x0d\\xa8\\xcb\\x1a\\x55\\x59\\x70\\xc5\\x01\\x3d\\xe1\\x14\\x2e\\x0e\\x19\\x07\\x04\\x94\\x02\\x46\\x34\\xbf\\x0b\\xcd\\x4f\\x12\\x96\\xd4\\xa1\\x83\\x59\\xac\\x98\\x33\\xf5\\x0b\\xa9\\xf9\\xf4\\x58\\xc1\\xd2\\x79\\x89\\xca\\x92\\x6f\\xff\\x10\\xe7\\x67\\x77\\x18\\xa2\\x35\\x73\\x69\\x50\\xe0\\x10\\x19\\x18\\x07\\x5e\\x9e\\xeb\\xbd\\x48\\x91\\x17\\x5b\\x57\\xd2\\x43\\xdd\\x4d\\x54\\xd3\\x30\\xfb\\x38\\x30\\x2a\\x32\\xa0\\x80\\x25\\x9a\\x8d\\xea\\x5a\\xc4\\x8a\\xe2\\x3b\\xce\\x94\\x17\\x76\\x11\\x92\\xe3\\x0b\\xf2\\x35\\xf0\\x05\\x23\\x14\\xc1\\xbd\\x55\\x18\\x9a\\xa4\\x8b\\xbd\\x13\\x16\\xc1\\x0c\\xee\\xec\\x38\\x94\\x80\\xbc\\x8b\\x5b\\x97\\xb4\\x68\\x2a\\x86\\xee\\x84\\x0a\\x15\\xb2\\xf8\\x21\\xe5\\x2e\\xd8\\xe9\\x61\\x59\\x27\\xff\\x67\\x2d\\xfb\\x5f\\x56\\x79\\x72\\xaf\\x84\\x5b\\x6f\\xa5\\x1f\\x9a\\x65\\x5e\\xe8\\xeb\\xbe\\x5d\\xcd\\xfd\\xf2\\x7c\\x72\\xf5\\x0e\\x54\\xe5\\x22\\x4c\\x60\\xb6\\x55\\x47\\x62\\xe5\\x47\\x9e\\xbf\\x10\\xca\\xdf\\xf6\\x55\\x7c\\xf6\\xaf\\x9f\\xcd\\xad\\x19\\xa5\\x99\\x6f\\xf1\\x1a\\xc3\\xe7\\xed\\xd2\\x79\\xdc\\xb9\\x7a\\x94\\x02\\x33\\x21\\x6c\\xb5\\x46\\x1c\\x9a\\x24\\x5a\\x36\\x7b\\x65\\x02\\x9d\\x4e\\xbb\\xb6\\xa7\\x8c\\x44\\x5d\\x76\\xb9\\xd3\\x2a\\x0b\\x6d\\x6c\\xd6\\x0f\\x7a\\x56\\x60\\xe0\\x59\\x55\\x69\\x2c\\xc0\\xf6\\xb0\\x69\\xa9\\x45\\x93\\x74\\xb0\\x7c\\x7b\\x7c\\x2f\\xcc\\xe7\\x12\\x77\\x15\\x4d\\x57\\x61\\x4f\\x24\\x17\\x96\\xe5\\xd5\\x5a\\x3f\\xf7\\xa3\\xea\\xf0\\x88\\x5d\\xe5\\x45\\xb6\\x7b\\x03\\xe2\\xf5\\x76\\xdd\\x25\\xba\\x50\\x56\\xdb\\xc3\\xa6\\xe9\\xe4\\x7f\\xf8\\x23\\xc3\\x14\\x82\\x47\\x01\\xc5\\xbc\\x30\\x6d\\x5e\\x14\\xd1\\x27\\xc6\\x61\\xe3\\x7d\\xa0\\xc3\\x98\\x55\\xf1\\x2b\\x23\\x48\\xbe\\xad\\x89\\xa8\\x49\\xa0\\x13\\x16\\x4a\\xd5\\xc5\\xb2\\xf2\\xeb\\xb1\\x14\\xdf\\x36\\xb4\\x23\\x4a\\x68\\xf3\\xcb\\xf1\\x2d\\x69\\x53\\x16\\x2b\\x03\\x83\\x35\\x3c\\xff\\x1c\\xb3\\x95\\x72\\x8e\\x36\\xbd\\x7e\\xf2\\xcc\\x56\\x7a\\x2b\\xee\\xbd\\x05\\xb9\\x87\\xa4\\xfd\\x94\\xd0\\x5d\\x6d\\x58\\x4b\\xb0\\x2e\\x1a\\xac\\xaa\\x8b\\x02\\x1b\\x04\\x38\\x5e\\x59\\xfa\\x91\\xb9\\x4c\\x32\\xc8\\x61\\xa3\\x64\\x7c\\x8c\\x55\\xb2\\x3f\\x17\\x15\\x24\\x85\\xb8\\x33\\xd5\\xc4\\xed\\x92\\x7d\\x98\\xbf\\x1b\\x80\\xe8\\x80\\xde\\xf1\\x66\\x4f\\xdf\\x8b\\x14\\x6b\\xfa\\x25\\xc3\\x92\\x09\\xec\\x59\\x40\\x4f\\x07\\x98\\x9a\\xf5\\xe1\\x96\\x41\\x2b\\xf9\\x50\\xfc\\x27\\xd4\\xf9\\x3c\\x1b\\xc7\\xd8\\xf7\\x23\\xc0\\x50\\x2e\\x17\\x2d\\xe3\\x22\\xae\\x73\\x4c\\x24\\x4a\\x13\\x96\\x00\\x83\\x0e\\xd4\\x69\\x27\\x47\\xac\\xfd\\xda\\xc6\\x62\\x76\\xe3\\x00\\x0a\\x6a\\xa1\\xad\\x00\\x9a\\xba\\xe5\\xc7\\x9a\\x98\\x23\\x0d\\x12\\x76\\xd8\\xca\\xe0\\x44\\x2b\\xc4\\xde\\x7e\\xb4\\xb5\\xab\\xac\\x41\\xcf\\x4b\\xb6\\xba\\x1b\\x59\\xa9\\xce\\x41\\xdd\\x76\\x08\\x3d\\xbb\\x03\\xee\\x09\\x50\\x33\\x66\\xea\\x1d\\xfd\\x08\\xd7\\x21\\x74\\xff\\x45\\x55\\xfd\\x66\\x2a\\x4e\\x6a\\xf2\\xb7\\xf4\\xc8\\xb7\\xab\\xb8\\x89\\x4d\\x68\\x5b\\x50\\xd7\\x52\\xd0\\xb8\\xf6\\x3c\\x3b\\x34\\x4c\\x6a\\xc3\\x33\\x6d\\x6b\\xc7\\xdc\\x0a\\x5a\\x40\\x4b\\xd7\\xf9\\x72\\xe8\\x0c\\x4a\\xf0\\x9e\\x9c\\x28\\x7c\\x38\\x45\\xbc\\xf0\\xc7\\x72\\xa9\\x55\\x91\\x43\\x0e\\xf8\\x03\\x8b\\xa8\\x51\\x9a\\x9f\\x7e\\xea\\x18\\xeb\\x21\\x2b\\x46\\x22\\x42\\xd9\\xb5\\x08\\x6a\\x44\\x21\\xff\\xe4\\x17\\xb4\\xd1\\xf6\\xbf\\xc2\\x91\\x14\\xd2\\x0b\\xdf\\x5e\\xf0\\xed\\x4b\\x24\\xf4\\x2c\\x2f\\x54\\x87\\x39\\x69\\x40\\x71\\xa0\\xc6\\x23\\x03\\xa9\\x41\\x49\\x6d\\xee\\xf2\\x69\\x05\\xe7\\xe8\\x25\\xb0\\xef\\xa5\\x05\\x92\\xfb\\x5a\\x3b\\x80\\x53\\x8f\\xdd\\x83\\x5d\\xad\\x77\\xc9\\x54\\x55\\xad\\x4e\\x63\\x04\\xad\\x70\\x44\\xc0\\xc6\\x01\\x66\\x0a\\xf5\\x9f\\x55\\xf2\\xb2\\xf5\\x66\\xb5\\x03\\xfb\\xb1\\x6c\\xeb\\xa6\\xc4\\x94\\xd8\\xa8\\x83\\xb6\\xf1\\x77\\x1d\\xf9\\x61\\xf5\\x13\\xf9\\xd6\\x0d\\xa9\\x29\\xb1\\x59\\x0f\\x6d\\x63\\xef\\x39\\x6e\\xc8\\x78\\x59\\xe7\\x99\\x1d\\x67\\x57\\x8a\\x62\\xb3\\xa6\\x0d\\xe2\\x81\\xf7\\x10\\x67\\xb9\\x3f\\xe4\\x39\\x1d\\xe5\\x37\\x9c\\xdd\\x69\\x8a\\xd5\\x9a\\x32\\x88\\x07\\xcf\\xec\\xc9\\x50\\x0e\\xfc\\x4a\\xfe\\x3a\\x88\\x88\\xed\\x49\\x25\\x3f\\xa9\\x0f\\xc3\\x08\\x83\\xa8\\x53\\xf8\\x94\\xa1\\xae\\x97\\xec\\x59\\xa8\\x30\\x79\\x30\\x19\\xc0\\x86\\x76\\x36\\x66\\xbe\\xd3\\x15\\x4f\\xa7\\xb2\\x8f\\x3d\\x9b\\x52\\xf7\\xc8\\x76\\x46\\xf0\\x2f\\x0f\\xbd\\x85\\xff\\xdf\\x11\\x59\\x9d\\x27\\x08\\x82\\x35\\xee\\xdf\\x62\\xc0\\x1f\\xef\\xdf\\x5b\\xfd\\x43\\xf2\\x9c\\xf0\\x97\\x5e\\xf2\\xfb\\xfe\\x76\\x48\\x4b\\x62\\xb1\\xad\\x52\\x1b\\xeb\\x9f\\xc7\\x66\\xfe\\xff\\x50\\x2c\\xe5\\x67\\xed\\x15\\xe6\\x1f\\x06\\xe3\\xa7\\x14\\x7a\\x66\\xda\\x24\\xb6\\x3a\\x9b\\x69\\xf3\\x38\\xda\\xde\\xd0\\xd2\\xc0\\x14\\xbc\\x23\\x89\\x1b\\xf2\\xd1\\x24\\x6d\\x49\\xe3\\x14\\xa9\\xa1\\x47\\x82\\x7b\\x35\\x19\\x23\\xe2\\x23\\x11\\x35\\x8c\\xe6\\x93\\x09\\x1e\\x7a\\x0f\\x55\\xda\\xf2\\xd0\\x7e\\x78\\x32\\xf1\\xb9\\x77\\x9b\\xee\\xd6\\x86\\x06\\xb0\\x2f\\x23\\xcb\\x43\\x94\\xe5\\x38\\x95\\xdc\\x37\\x2c\\xeb\\x93\\x34\\x96\\xde\\xa9\\x17\\x29\\xdd\\x28\\x87\\xde\\x11\\xee\\x19\\x35\\x1c\\x83\\x29\\xbc\\xd3\\xc7\\xb7\\x8a\\xb1\\xd7\\x3f\\x39\\x70\\x05\\x46\\xd7\\xbb\\x5d\\x40\\x7c\\xbc\\x13\\xef\\xb0\\x49\\xf6\\x21\\x5d\\x63\\xf3\\xc0\\xf2\\x67\\xce\\xde\\x72\\xde\\xda\\xa4\\xfc\\xa8\\x35\\x27\\xfc\\xbf\\x31\\xfb\\x56\\x75\\xe5\\x2a\\x53\\x1b\\x7d\\xa0\\xaf\\xd4\\x88\\xb2\\x3f\\xc3\\x5a\\x81\\x01\\x79\\xa1\\xb5\\x7d\\xab\\x56\\x96\\xbe\\xec\\xd5\\xac\\x13\\xaf\\x1a\\x5d\\x96\\xca\\xab\\xbe\\xae\\x76\\x8a\\xc3\\xd2\\x2e\\xd5\\xa6\\xe0\\x33\\x50\\x3d\\x84\\x16\\xdb\\xae\\x0b\\x5b\\x01\\xf6\\xba\\x42\\x95\\xad\\x5e\\x8e\\xe6\\xc0\\xee\\x0f\\x09\\xd7\\xc9\\xd6\\xb2\\x70\\x2a\\x8f\\xbb\\x50\\x81\\x19\\x8d\\x2b\\x5b\\x11\\x8a\\xfc\\x88\\x82\\x93\\xab\\x59\\x07\\x54\\x21\\xc0\\x84\\xa7\\x26\\xb4\\x4b\\x72\\x7e\\xc9\\xbf\\xa6\\xf7\\x19\\x14\\xd8\\x40\\x5b\\x30\\x93\\xa2\\x17\\xba\\xc9\\x04\\x9d\\x7f\\x6b\\x5e\\xff\\x4e\\x04\\xf8\\xae\\x19\\x77\\xe4\\xca\\x52\\xe4\\x1b\\xa9\\x9e\\xfe\\x86\\x29\\xc0\\x20\\x04\\x34\\xd6\\xf7\\x9a\\x46\\xef\\xb3\\x90\\x72\\xd6\\x93\\x32\\xa3\\xb3\\xe5\\xe7\\xb0\\x3e\\x38\\x90\\x5b\\xde\\x58\\x5d\\x79\\x87\\x65\\x49\\xdd\\xb1\\x7a\\xce\\xf1\\x26\\xbb\\x45\\x34\\xd6\\x37\\x72\\x83\\xb7\\x69\\x46\\x12\\x63\\x5e\\x0a\\x30\\x24\\x9b\\x19\\xcf\\x40\\xdb\\x03\\xcb\\x46\\x0e\\x03\\x2b\\x9a\\x64\\x8b\\x59\\xdb\\x80\\x84\\x65\\x65\\x98\\x39\\x2d\\xd8\\x45\\x40\\x65\\x08\\x77\\x7c\\xb7\\x07\\x4c\\x02\\x5b\\xd1\\xef\\x80\\x8a\\x7a\\x3e\\x8f\\x65\\x7f\\xc0\\x0a\\xc9\\x1b\\x84\\x56\\x4c\\xc0\\x76\\x6c\\x32\\xaa\\x9b\\xd1\\xa5\\x09\\x78\\x3e\\x92\\xd6\\xed\\xb6\\x35\\x62\\x25\\x99\\x3e\\x1d\\xfd\\x2c\\x62\\x32\\x09\\x56\\x20\\x21\\xc5\\xed\\x3b\\x35\\x19\\x5d\\x94\\xc1\\x9e\\x01\\xa2\\x9e\\xfc\\x4d\\xd3\\xc4\\xae\\xc0\\x15\\x58\\x64\\x2b\\xe6\\x48\\xdb\\x40\\x75\\x61\\x55\\x51\\xdf\\x6c\\xc7\\x7a\\x48\\xb6\\x5c\\x73\\x5e\\x49\\x38\\xb9\\xa2\\xef\\x1b\\x74\\xfd\\xaa\\x8a\\x89\\x17\\x8e\\x23\\x33\\xa8\\xce\\x36\\x62\\x15\\x15\\x6d\\x2d\\x09\\x9b\\xe1\\x40\\x10\\x3f\\x26\\xd0\\xd9\\xc0\\xa9\\xbc\\xa0\\x98\\xa3\\x09\\xb2\\xc2\\xdc\\x0c\\xba\\xc7\\xec\\x57\\xbc\\xad\\x1a\\xdf\\x52\\x9a\\xf6\\x5d\\x75\\xd8\\x09\\x86\\x0e\\x47\\x56\\xd9\\x03\\x5e\\xf6\\x07\\x04\\x8c\\xe0\\xea\\xd8\\x0e\\xa5\\xc8\\x06\\xbb\\x80\\xbd\\x98\\xd7\\xd3\\x94\\x9b\\xc5\\x86\\xbf\\xe1\\x05\\xb6\\xe4\\x35\\xa3\\x95\\xdb\\x12\\xa0\\xc3\\xf0\\x51\\x9e\\x39\\x0f\\xab\\x52\\xfd\\xfb\\x22\\x7d\\xde\\x77\\x34\\x93\\x3b\\x9a\\xa6\\xbd\\xbb\\x1d\\x7b\\x9a\\x02\\x36\\xc8\\x94\\x9b\\xc4\\xdb\\x2d\\xef\\x1d\\xe0\\x1b\\x28\\xed\\x96\\xb7\\x2b\\x49\\xd7\\xec\\x9f\\x41\\x45\\x6c\\xc3\\x05\\xbb\\xe0\\x08\\x30\\x20\\xf5\\x81\\xba\\xa4\\x78\\x27\\x57\\x3c\\x08\\xa5\\x39\\x5d\\xf0\\x64\\x77\\x7f\\x2d\\x40\\x38\\x15\\xab\\x3d\\x50\\xf2\\x98\\x43\\x4a\\x83\\x8e\\x72\\xc5\\x78\\x67\\x97\\xb4\\x19\\x92\\x02\\x03\\xc6\\x08\\xd9\\xae\\xb3\\xe7\\xa7\\x94\\x27\\x8f\\x1a\\xfd\\x5b\\x09\\x39\\x41\\xcc\\x6a\\xb4\\xe1\\x99\\xca\\x10\\xf3\\x75\\x21\\xfd\\xc4\\x8d\\x4c\\xfa\\xe3\\xda\\x54\\x22\\x9c\\x96\\xf3\\x63\\xc8\\x18\\x21\\xd7\\xd6\\x6a\\x5c\\x51\\xc6\\x29\\xe7\\xd5\\x8a\\xd8\\xa5\\x18\\xed\\xe8\\xc5\\x77\\x80\\x42\\x7b\\x79\\xcc\\xb6\\xc2\\x91\\x57\\xd6\\x84\\xba\\x36\\xc6\\x25\\x20\\xf1\\x66\\x40\\xf8\\x00\\xbc\\x3b\\xe0\\x4c\\x10\\x54\\xfe\\x38\\x46\\x3e\\x08\\xe9\\x01\\xe4\\xf7\\xb5\\xfe\\xc7\\x09\\x3d\\x5d\\xf8\\x9b\\x80\\x06\\x0d\\x60\\x05\\xd9\\x80\\xa3\\x99\\x24\\x89\\xb7\\xf3\\xb4\\x93\\xb0\\xe9\\x08\\x57\\x9b\\x4f\\xc0\\xcf\\xd5\\x69\\x2d\\xe4\\xdf\\x08\\xc9\\x04\\x9b\\xd6\\xc6\\x82\\x9f\\x1b\\x97\\xea\\x82\\x58\\xa6\\xd8\\xc6\\xfc\\x76\\x0c\\x55\\xf1\\xff\\xf9\\xc2\\x91\\xf7\\x69\\xf3\\xcd\\xaf\\xe1\\x92\\x3f\\xdc\\x94\\xd5\\x8f\\x15\\xbc\\xf8\\x36\\xfc\\xfa\\x6c\\xd5\\xc9\\xe9\\x48\\xcd\\x60\\xc6\\x79\\x3c\\xfc\\xc8\\x13\\xd5\\x9f\\xd7\\x23\\xee\\x5d\\x89\\x16\\x5c\\x7d\\x6a\\x6a\\x13\\x97\\xfc\\xad\\xf9\\xf4\\xf8\\x2b\\xd7\\xd3\\x2c\\x9c\\xd4\\xb9\\x4a\\xf4\\x93\\xa5\\xe9\\x26\\x7e\\xc1\\xb2\\x05\\xfe\\x46\\x7c\\x13\\xbf\\xce\\xac\\x48\\xa2\\xe9\\xaa\\x68\\x59\\x24\\xe9\\x93\\x22\\x8e\\x57\\x50\\xd7\\xdf\\xd4\\x6e\\x54\\x8f\\xf2\\xbd\\xd3\\x4d\\x6b\\xa1\\xbe\\x3b\\x4a\\xd0\\x2e\\x83\\xcd\\x6b\\xde\\x2a\\x58\\xfc\\xa0\\x9d\\xeb\\xcd\\xe8\\x64\\xf4\\x6b\\x02\\x24\\x08\\xa7\\xb8\\xf7\\x24\\xa1\\x9b\\xd5\\x22\\x94\\x01\\x41\\x0e\\x0e\\x88\\x4d\\xb5\\x9d\\x52\\x3a\\x58\\xe5\\xef\\xd7\\x76\\xd2\\x9b\\x98\\x5a\\x1e\\xd6\\xf7\\xcf\\xc8\\x5f\\xaa\\xe2\\xd4\\xb1\\x2b\\x25\\x8a\\x1c\\xe9\\x5a\\x99\\x47\\x5c\\x2c\\xea\\x27\\xb9\\x5c\\x00\\x7c\\x36\\x40\\xaa\\xe4\\xa7\\xca\\x53\\x36\\x65\\x55\\xaf\\x5b\\x14\\xa7\\x69\\x0d\\x3e\\x72\\xc9\\xab\\x76\\xe0\\x83\\x2b\\x04\\xdf\\x79\\x86\\x7d\\x31\\xed\\x27\\x77\\x5d\\x6b\\xf7\\xec\\x88\\xf5\\xb9\\x17\\x83\\xee\\x1d\\xce\\x13\\x97\\x9f\\x6b\\xc0\\x81\\x22\\xc1\\x13\\xdb\\x11\\xb8\\xda\\x65\\x37\\x8a\\x55\\x2b\\xfb\\x29\\xaa\\xc1\\x94\\xa8\\x9b\\x64\\x19\\x19\\xb3\\x73\\x66\\xd0\\xc7\\x87\\x71\\x9c\\xe0\\x80\\xb3\\x48\\xa0\\xa5\\x31\\x8e\\xc4\\xda\\x4d\\xb0\\xe6\\x49\\x83\\xed\\x54\\x04\\x13\\xd8\\xa8\\x1f\\x32\\x00\\x9b\\x47\\xd9\\x5a\\xbd\\x18\\x26\\xd9\\xec\\xb3\\xb7\\xc8\\x0d\\xc0\\x2c\\x9f\\xa2\\xa1\\xc9\\x5f\\x0c\\x68\\xad\\x47\\xa3\\xa6\\xb8\\x1b\\x07\\x5c\\x29\\x39\\xfb\\x4c\\x15\\x0f\\x51\\xdb\\x58\\x51\\xdc\\x54\\xe7\\x98\\xf7\\x38\\x40\\x77\\xaf\\x7c\\x7b\\xa5\\x6b\\x48\\xdc\\xc0\\x42\\xe5\\xfb\\x52\\x5a\\x6a\\xdf\\x8c\\xc8\\xed\\x61\\xf9\\xe0\\xc3\\x17\\xc3\\x34\\xc7\\xd2\\x2e\\x8f\\x17\\x68\\x77\\x35\\xa6\\xab\\x66\\x03\\x84\\xaa\\xf9\\xa0\\xed\\xac\\x4c\\x04\\x5c\\xdf\\xab\\xd9\\x9b\\x06\\x3e\\x53\\xd6\\xc7\\x4f\\x54\\x02\\x29\\xc0\\x80\\xb1\\x99\\x1e\\x9d\\x8a\\xd4\\x3b\\x2e\\xb3\\x27\\x19\\x62\\xb0\\xa8\\xca\\xe9\\xfb\\x30\\x2d\\xb1\\x8a\\xae\\xac\\x5c\\xc4\\x12\\x4f\\xe1\\xd6\\x4a\\x60\\xdd\\x92\\xf6\\xed\\x9d\\xdb\\x66\\x35\\x87\\x30\\xca\\x48\\x7d\\xc9\\x99\\x67\\x12\\x80\\x3a\\x14\\xbc\\x48\\x08\\x98\\x99\\x72\\x00\\x1f\\xfc\\x4e\\x1a\\x6f\\xed\\x4e\\xb9\\x25\\x6d\\x75\\x67\\xc1\\xa8\\x07\\x94\\x3f\\x47\\xa2\\x6b\\x60\\x87\\xce\\x39\\xca\\x3f\\xef\\x13\\xf1\\x97\\x32\\x9a\\xab\\x0c\\xe5\\xf5\\x67\\x55\\xd6\\x7c\\x78\\xa6\\xcd\\xd6\\x80\\x26\\xb1\\x35\\x86\\x4d\\xb9\\x24\\xd8\\x78\\x4a\\xdb\\x89\\x56\\x83\\xfc\\xaa\\x8d\\xaa\\xae\\xf8\\xb2\\x4e\\x72\\x40\\x32\\x7a\\xe0\\x72\\x95\\xcd\\xbf\\x8a\\x7f\\x18\\x17\\xe4\\x7d\\x69\\x6c\\xa0\\xe8\\x8c\\x56\\x51\\x45\\xfd\\x12\\xf9\\xa2\\xf2\\xb3\\x7c\\x8c\\xf6\\x0b\\x77\\xf6\\xaf\\xf7\\xe1\\xf7\\xb7\\xec\\xd7\\xc1\\x77\\x2f\\xc0\\x3e\\x40\\xde\\x59\\x0a\\x26\\x32\\xeb\\x5a\\xd6\\x59\\xfe\\x7f\\xfd\\x51\\x81\\x5f\\x5e\\x72\\x43\\x85\\xc8\\xc6\\x78\\xd2\\xde\\x4a\\xc8\\xce\\x8c\\xf8\\x15\\xcc\\xe6\\xaa\\x72\\x1c\\x4a\\x71\\xf7\\x21\\xe4\\x01\\x76\\x33\\x84\\x5d\\x05\\x09\\xa2\\xe7\\x06\\x14\\xfb\\xa8\\xa2\\xfa\\x4b\\xb8\\xde\\x32\\x71\\x31\\x54\\x89\\xa8\\xb9\\x0d\\x75\\x9c\\xf9\\xff\\x34\\x91\\xd5\\x49\\x54\\xca\\x13\\xb6\\xae\\x4e\\x2b\\xcf\\x90\\x54\\xc5\\xfb\\xe4\\xbe\\x31\\xe6\\x06\\x48\\xb3\\x0a\\x6a\\x18\\xc8\\x8c\\x9a\\xc6\\x30\\xc4\\xd8\\x1c\\xcc\\x10\\xe4\\xa7\\xb5\\x16\\x5e\\x72\\x52\\x32\\x53\\x4e\\x7d\\x38\\x44\\x64\\xbe\\x10\\x72\\x2c\\x2f\\x88\\xbc\\x3c\\xef\\xc8\\x0b\\x87\\x56\\x97\\x92\\x6a\\xaa\\x77\\x9e\\x7d\\x3e\\xb8\\x5f\\x42\\x32\\x10\\xb9\\x73\\xdf\\xdc\\xed\\xf2\\x55\\x5e\\x53\\x83\\x50\\x84\\x08\\xb0\\xd1\\xc8\\x00\\xae\\x42\\x1f\\x40\\x0f\\xb6\\x0e\\x83\\x6a\\xf4\\x5b\\x3c\\x51\\x02\\x6c\\x27\\xbe\\x77\\xa4\\x1f\\xb1\\xf5\\xe1\\xd1\\x2a\\x71\\x42\\x99\\x40\\xab\\x24\\xca\\x6e\\x27\\xba\\xb6\\xf2\\xef\\xb9\\xa4\\x20\\xe3\\xe3\\x5c\\x2c\\x9a\\x32\\xce\\x7c\\xa0\\x5c\\xce\\x0b\\x4a\\x8f\\x67\\xd3\\xb9\\x79\\x30\\xe0\\xd3\\xc0\\xef\\xa7\\xe1\\xbc\\xe2\\xcb\\x7a\\x51\\x16\\xcc\\x7f\\xe1\\x52\\x8c\\xd5\\x8a\\x98\\x73\\x34\\xfe\\xab\\x9f\\xbd\\x84\\x3d\\x02\\x2b\\x97\\x75\\x14\\xb0\\x67\\xcf\\xde\\x55\\x74\\xb0\\x96\\x8e\\xef\\x7f\\x20\\x0b\\xc1\\x1b\\x78\\x85\\xbc\\xc3\\xe2\\xd6\\x98\\x3a\\x07\\x17\\x48\\x0f\\x99\\xd1\\x4f\\x62\\x41\\x89\\x24\\xe3\\xb9\\x19\\x17\\x2f\\xbe\\xa4\\x11\\x6d\\x62\\xb5\\x5c\\x2f\\xb1\\xd7\\x9e\\x1b\\x52\\xb0\\xd6\\xa4\\x9a\\xa0\\x2e\\x64\\x38\\xd4\\xf3\\xa3\\xfa\\x25\\xae\\xcc\\x35\\x73\\x7a\\xe6\\x67\\x6e\\xed\\x77\\x1b\\x80\\x5e\\x21\\x4f\\x54\\x27\\xad\\x3c\\xf0\\xb4\\xc7\\x10\\xc3\\xc9\\x41\\x7e\\xd8\\xc9\\xe2\\xb1\\x3c\\xe8\\xb3\\xf0\\xa7\\x30\\xf3\\x29\\x26\\x66\\x61\\xc8\\x30\\xc1\\x17\\x00\\x73\\x3c\\xca\\xdd\\xfe\\x5c\\x3b\\x26\\x06\\x62\\x15\\x2b\\x45\\x4c\\x0c\\xb0\\x49\\x53\\x26\\xd3\\x30\\x41\\x04\\x5a\\xdf\\xb2\\x1b\\x5f\\x4a\\xfe\\x73\\x2a\\x6d\\x96\\x29\\x77\\xdd\\x1e\\x9d\\xcf\\x19\\x8b\\x99\\xbf\\xbf\\xe8\\x4b\\x95\\x8f\\x24\\xa5\\x5d\\x54\\xb3\\xb5\\x11\\x61\\x70\\xb1\\xbd\\xbc\\x04\\xaa\\xb3\\x9b\\xd7\\x0d\\x75\\xd3\\xbb\\x8f\\x5d\\x5e\\xc2\\xe4\\x8d\\x4a\\x1b\\x11\\xfc\\x78\\x17\\xd5\\x5a\\xc2\\x8f\\xb6\\x50\\x96\\xf3\\x65\\x8e\\xdd\\x4c\\xdb\\x75\\xb9\\xd6\\x30\\x82\\x19\\x74\\xaf\\x90\\xa2\\x0e\\x93\\xd6\\x84\\xc3\\x75\\x03\\xda\\x83\\x15\\x35\\x47\\x8d\\x23\\x58\\xca\\xc4\\x8e\\xc4\\xd9\\x25\\xda\\xcd\\x57\\x21\\xd2\\xbc\\x12\\x35\\xe7\\xbb\\xf4\\x1d\\x63\\x2a\\x45\\xc3\\x70\\x98\\x7a\\x15\\x7c\\x43\\xed\\x58\\xb9\\x45\\x64\\x72\\xfd\\x8a\\xbc\\x24\\xf1\\x35\\xbc\\x43\\x6b\\x0a\\x9a\\x43\\x38\\x91\\x23\\x82\\xd3\\x27\\x68\\x09\\x56\\x5f\\x6f\\xbf\\xcb\\x09\\xa2\\xa1\\x77\\x34\\x2b\\x86\\x59\\x2a\\x82\\x8c\\x4f\\x72\\xd2\\x3d\\xe8\\xc8\\x16\\x8b\\x4e\\xa0\\xdf\\x63\\x46\\x37\\x31\\x6a\\x55\\x12\\x37\\x82\\xa0\\xf4\\xf3\\x29\\x4e\\x66\\x2d\\xa6\\x69\\x8b\\x59\\xff\\xd2\\x45\\x50\\x1f\\x5d\\x7e\\x9e\\xb1\\x7b\\x24\\x7f\\xd5\\xd3\\x2b\\x14\\x98\\x8d\\x6e\\xfd\\x3d\\x86\\x16\\xec\\xf0\\x41\\x6e\\xe1\\x82\\x26\\x8c\\x24\\x99\\x34\\xe4\\xb0\\x6a\\x40\\x3a\\x1b\\x67\\x02\\x3d\\x22\\x41\\x9c\\x98\\x51\\xc1\\xed\\xff\\x55\\x57\\x29\\x5c\\x67\\x05\\x53\\x21\\x78\\xd4\\xf6\\x6a\\x6e\\xd9\\x1d\\x92\\xa1\\xd9\\x7a\\xf3\\x68\\x46\\x06\\xa0\\x65\\x14\\x60\\x2f\\x67\\xce\\x76\\xbe\\x76\\xb4\\xa7\\x39\\xaa\\x58\\x8c\\xd1\\x70\\xca\\x7a\\xeb\\xfd\\x67\\x22\\x06\\x11\\x57\\x4d\\x30\\xf5\\x0e\\xc5\\x83\\xbb\\x71\\xd2\\x34\\x6f\\xb1\\x9b\\x83\\x58\\xde\\x85\\x20\\xbf\\xa9\\x9f\\xcd\\xaf\\xe3\\xc7\\x41\\x23\\xc3\\x2c\\x3f\\x97\\x35\\x0d\\x0a\\x98\\x96\\x7e\\x01\\x2f\\x81\\x5b\\x88\\xc3\\x01\\xa2\\x62\\x2c\\xa7\\x1c\\x60\\x97\\x3c\\x02\\x8f\\xc5\\xc1\\x6a\\x8a\\xd9\\x2e\\x88\\xe9\\x01\\x41\\x2d\\x69\\x3f\\x6d\\x4f\\x62\\x38\\x08\\xc3\\xa2\\xd4\\x19\\x13\\xa3\\xf2\\xa9\\x6a\\x4a\\xf5\\x8f\\x03\\x8a\\x92\\x3a\\x9c\\x5c\\x8e\\xf4\\x6b\\xc9\\x22\\xaf\\x07\\x0b\\x97\\xa8\\xd5\\x72\\x0d\\xab\\x86\\x56\\x8b\\x6b\\x3c\\x5a\\xba\\xcc\\x1b\\x41\\x45\\x7a\\x59\\x0c\\x33\\x72\\xf2\\xd6\\x93\\x5b\\x4d\\x65\\x76\\xc2\\x83\\x8a\\x1f\\x7a\\x11\\x3d\\x8f\\x3b\\xdc\\xac\\xec\\x1b\\x3a\\xe7\\x8e\\xc9\\x6f\\x8b\\xa1\\x0a\\x63\\x1e\\x5b\\x72\\xfa\\x1a\\x7d\\xf8\\x7d\\xd7\\x99\\xab\\x74\\x6d\\xc7\\x79\\xd0\\x25\\xa4\\xef\\x7e\\x61\\x30\\xed\\x4c\\xa6\\xfa\\x9f\\x0f\\x73\\xb3\\xf1\\x5d\\x4b\\x7d\\x1e\\x72\\x1f\\xd9\\x1f\\xf1\\x10\\xe0\\x65\\xf3\\x83\\xf9\\xa2\\x19\\x45\\x53\\x8e\\x95\\xea\\x75\\x88\\x68\\x5e\\x03\\x4d\\x17\\xcc\\xe1\\x5b\\xb0\\x6c\\xfd\\x22\\xbe\\x4e\\xc5\\x0d\\x35\\x7b\\x9a\\x88\\xd1\\x96\\x1e\\xf5\\x06\\x94\\x96\\xb8\\x50\\xd1\\xec\\x55\\xb6\\x98\\xb1\\xd5\\xbe\\xdb\\x74\\xd9\\x3f\\xaa\\x60\\x09\\xf8\\x66\\x48\\x42\\xc7\\xe0\\x64\\x10\\x89\\x9d\\x18\\xa2\\x27\\xba\\x4b\\x16\\xcd\\xf4\\x28\\xe8\\x2e\\xb5\\xd8\\x83\\xaa\\x15\\xe6\\x60\\x41\\x32\\x40\\xef\\x22\\x71\\x06\\xd6\\x71\\xf5\\x4a\\x4e\\xc4\\xc8\\x37\\xe9\\x46\\x6a\\xb2\\x3d\\x95\\x5f\\xa9\\x88\\x8c\\x16\\xb8\\x3d\\xe8\\x67\\xc3\\x48\\x67\\xaf\\x30\\x33\\xe7\\x94\\xef\\xfd\\xf1\\xd2\\x4f\\x6a\\xc6\\xa9\\x0b\\x07\\x9f\\x8d\\x3d\\x0b\\x8a\\xc8\\x39\\xce\\xab\\x5e\\x64\\xc2\\xe3\\x93\\x37\\x66\\x3b\\x40\\x43\\xdb\\xca\\xb8\\x6e\\xb1\\xc5\\x6d\\x0e\\xe2\\x65\\x62\\x90\\x26\\x42\\x10\\x0b\\x31\\x6e\\xa2\\xb7\\x5b\\xdf\\x64\\x6f\\x0d\\xf8\\x34\\x83\\x7b\\xed\\xd1\\x5f\\xae\\x18\\x2a\\x73\\xe8\\x4a\\xfe\\xa7\\x33\\xa3\\x1a\\x22\\xfa\\x56\\xe6\\x22\\x3d\\x74\\xed\\xdf\\xb2\\x45\\x4f\\x67\\x7f\\x2d\\x9b\\x71\\xc3\\xbf\\x64\\x9c\\x94\\xde\\x72\\x95\\x99\\x48\\x32\\xfb\\xd3\\x6b\\xb7\\xdd\\xb7\\xcf\\x28\\x66\\x25\\x74\\x88\\x01\\xa4\\x7f\\x75\\x72\\x78\\x55\\x28\\xdb\\x77\\xcc\\x75\\xac\\x21\\xf0\\x64\\xea\\x66\\xe8\\x27\\x81\\x82\\x21\\x58\\x2b\\x4f\\x0c\\xaf\\x09\\x64\\xfb\\x86\\x5c\\x43\\x46\\xcd\\x05\\xba\\x59\\xfa\\x09\\xd2\\xaa\\x0e\\x3e\\xe7\\x77\\x24\\xf4\\x8a\\xfd\\xfd\\x2d\\x65\\x8a\\xaa\\xda\\x6a\\x22\\x74\\xb7\\x71\\x2c\\x13\\xb0\\x27\\x0c\\xf2\\x03\\xa7\\xcf\\x99\\xf9\\x50\\xca\\xc1\\xd1\\x32\\xd7\\xbb\\x75\\x77\\xdc\\x77\\x0c\\x7e\\xdb\\x0c\\x28\\x1c\\xb8\\x77\\xf5\\xe5\\x86\\xb8\\x0b\\x24\\x3a\\x50\\x5d\\x8b\\x35\\x95\\x58\\xcb\\x13\\x20\\xcc\\x85\\x02\\x36\\x5f\\x3f\\x34\\xee\\x45\\x04\\xdb\\x71\\x0d\\x84\\x23\\xab\\x82\\xc3\\xbf\\x92\\x3f\\xca\\xbb\\xe3\\xb8\\x93\\x7d\\xc7\\x5e\\xf6\\x0a\\x9c\\xde\\x33\\x8a\\x94\\xff\\x17\\x26\\xbd\\x6d\\xbf\\xcd\\xf1\\xdb\\xae\\x45\\x6d\\x30\\x73\\x1b\\x5f\\x97\\x1d\\xbb\\x12\\x46\\x07\\x2b\\x64\\xb2\\x14\\x25\\xe7\\x57\\x51\\x3a\\xca\\xb6\\x71\\x02\\x63\\xf5\\xe9\\xe2\\xa3\\x47\\x6f\\xc3\\xce\\x8b\\x52\\x85\\xa6\\xea\\xa4\\x8a\\xc8\\x4a\\xda\\x38\\x5e\\x16\\x5b\\x86\\xbf\\xe6\\x5e\\x22\\xf0\\xa8\\x4c\\x19\\x54\\xd6\\x25\\x41\\xb5\\xc7\\x5d\\x39\\xb2\\x16\\x64\\x94\\x2d\\x41\\xb7\\x0f\\x92\\x89\\x50\\x1c\\x3e\\x2e\\xc3\\x98\\x5b\\xc5\\x0f\\xc2\\xf4\\x45\\x7a\\x2b\\xdc\\x2a\\x23\\x5d\\x33\\xcc\\x04\\x46\\xc5\\xfa\\x04\\xb7\\x23\\xac\\x87\\xe0\\xa4\\x75\\x01\\xc3\\x7a\\xbf\\xcc\\x05\\xdd\\x16\\x9d\\x57\\x27\\x69\\x8c\\xe8\\xa4\\x9e\\x26\\x4e\\xb6\\xe9\\x24\\xd0\\x39\\x02\\x36\\xfa\\xbb\\x0a\\x13\\xc3\\x86\\x50\\x6b\\x3b\\xed\\x0d\\x44\\x6f\\x5f\\x9b\\x70\\x99\\x4c\\x5f\\x7f\\xc5\\xda\\x7a\\x8e\\x7f\\x51\\x97\\x15\\x1b\\xbe\\x6e\\x19\\x79\\x95\\xe9\\x76\\xaf\\xd1\\xac\\x15\\xe1\\x64\\x1e\\x73\\x09\\xa8\\x56\\x84\\x93\\x8a\\x14\\x42\\x58\\x18\\x17\\xf3\\x53\\xb8\\x85\\x46\\x72\\x0f\\xd4\\xe3\\x1d\\x56\\xcc\\xe6\\x0d\\xa3\\x82\\xfa\\x3f\\x12\\x5a\\xf3\\xf8\\xc2\\x97\\x12\\xc3\\xfd\\x1c\\x81\\x20\\x58\\xa3\\x0b\\xd2\\xc3\\xac\\xf6\\xde\\x3e\\x2b\\xbc\\x8e\\xfb\\x0e\\x7d\\x62\\x48\\x2c\\xe1\\xd6\\xf3\\x35\\x2e\\xba\\x8f\\x1b\\xc7\\x74\\x50\\xde\\xf8\\x96\\x4c\\x6e\\x15\\xc6\\x8b\\x5b\\xd5\\xb4\\xe7\\x68\\x52\\x9c\\x94\\x4b\\x42\\x58\\x36\\x4c\\x7d\\x9b\\x42\\x5e\\x25\\x27\\x11\\x5b\\xc7\\xb2\\xa9\\x85\\x6e\\x18\\x56\\xea\\xe2\\xee\\x34\\xd3\\x86\\xad\\xd3\\x15\\x7a\\xc9\\xfc\\x2b\\xcc\\x5c\\xbd\\xbf\\x23\\xf4\\xfe\\xae\\xb8\\x0b\\xad\\x6c\\x1a\\x2f\\xc4\\xa8\\x1f\\x4a\\x7f\\x7d\\x32\\x13\\x86\\x59\\x34\\x0d\\xc4\\x60\\x14\\xd5\\x61\\x2b\\xdd\\x41\\x4b\\x6c\\x7b\\xd5\\x59\\x1e\\xa4\\x2a\\xf5\\xa8\\x98\\x0a\\xba\\xf3\\x64\\xa2\\xe6\\x39\\x9c\\x6f\\x18\\x0c\\xd6\\x01\\x08\\xfc\\x9e\\x90\\xb3\\x85\\xa4\\xb6\\xbd\\x1b\\x2c\\xa9\\x09\\xf7\\xc4\\x14\\xba\\x39\\x38\\xa4\\xdf\\xd1\\xc8\\x81\\x9e\\xd1\\x79\\x03\\xf8\\x70\\x5d\\x71\\xfd\\x53\\xd7\\xa7\\x89\\x0d\\xab\\x2f\\x50\\x85\\x27\\xdb\\x2b\\xa1\\x25\\x51\\x73\\x0d\\x84\\x1f\\x21\\x96\\x57\\x50\\x38\\x1f\\xb7\\xf4\\x8a\\xeb\\x31\\x0f\\xe0\\x83\\x47\\x08\\xc0\\xa9\\x30\\xa4\\x90\\x2d\\x0e\\x31\\xb2\\x35\\x6a\\xcb\\x10\\xd5\\x60\\xce\\xad\\x24\\xe0\\xb0\\x17\\xf4\\x85\\x75\\x33\\x1d\\x06\\x47\\x82\\xcc\\xe6\\x40\\x0a\\x2a\\x5f\\x5a\\x11\\xec\\xf3\\x6f\\x31\\x00\\x93\\x12\\x78\\x32\\x3b\\xea\\xfc\\x58\\x01\\x8e\\x53\\xde\\x1f\\x15\\xa3\\xfb\\x43\\x24\\x15\\xbb\\x12\\xfe\\xed\\x00\\x6b\\x7f\\xeb\\xc1\\x95\\x06\\x9c\\x80\\x3a\\x0d\\x6b\\xb1\\x09\\x61\\xad\\x01\\x7b\\x82\\xa4\\x00\\x21\\x19\\x2c\\x5e\\x1c\\x7f\\xe6\\xbe\\x16\\x75\\x7e\\x1c\\x60\\xb8\\x1f\\x44\\x52\\x84\\x28\\x4c\\xf0\\x75\\x6c\\xfa\\x1f\\x14\\x88\\xca\\x69\\x86\\xeb\\xf9\\x24\\xc9\\x3f\\xd6\\x28\\xd6\\xbc\\xe2\\x3a\\x69\\x29\\x2e\\x4d\\xc0\\x1f\\x49\\xef\\xb8\\xcb\\x22\\x23\\xd9\\xba\\x24\\x13\\xe9\\xbe\\xf1\\x0e\\x48\\x2b\\xf5\\xd2\\x27\\xed\\x86\\x26\\xb1\\x0a\\xab\\x20\\xcf\\x0b\\xb1\\x1f\\x3e\\x30\\x75\\x87\\x22\\x11\\xeb\\x9f\\x10\\x8b\\x9a\\x2b\\x27\\xbd\\x67\\xe3\\x8b\\x70\\x24\\x59\\x8f\\x92\\x6d\\xfd\\xb6\\x60\\x3e\\xa2\\x83\\xa7\\x7a\\x43\\xb2\\x93\\xd9\\xab\\x20\\xb2\\x54\\x76\\xef\\x87\\x67\\x45\\x68\\x44\\xf9\\xfb\\xe9\\xcc\\x1e\\x03\\x7e\\x89\\x27\\xc1\\x04\\xae\\xe1\\x11\\xe3\\x6e\\x75\\x8c\\xa7\\x92\\xab\\x49\\xef\\x66\\x63\\xbf\\x7f\\x9f\\x83\\xbd\\xf7\\x3b\\x85\\x0b\\x4c\\xf1\\x98\\x01\\x1e\\xf7\\x83\\x6b\\x0e\\x09\\xcc\\x0f\\xab\\xf0\\x0d\\x36\\x22\\x5e\\xe9\\x54\\xa2\\xa2\\x68\\xbf\\xf2\\xb1\\x5b\\x84\\x4d\\x13\\x1a\\x9c\\x44\\x92\\x1c\\x51\\x22\\xa2\\x28\\x90\\x9c\\x9b\\xe5\\xd0\\x49\\xae\\xa0\\x32\\xc0\\x90\\x44\\x95\\x64\\xe6\\x42\\x5a\\x66\\xc7\\xa8\\x75\\x06\\xc7\\xbc\\x8b\\x76\\x05\\xba\\x62\\x72\\x25\\x24\\xe2\\xfa\\xa7\\xc5\\xe7\\xe5\\x29\\x72\\x23\\x3c\\xa9\\xa5\\xf8\\xf4\\xf1\\xb0\\xfd\\x0c\\x8e\\xae\\xd7\\x2e\\xbe\\xe7\\xae\\x2b\\x99\\xe6\\x74\\x1a\\xcc\\x31\\x53\\x04\\x2f\\x4a\\xf7\\x4a\\x99\\xed\\xd8\\x0b\\x4d\\xec\\xc9\\x62\\x14\\x39\\xa7\\xab\\x4d\\xd1\\x85\\x0a\\x95\\x80\\xe6\\x66\\x7b\\x71\\xd1\\x36\\xab\\x4e\\x61\\x09\\x58\\x46\\xf5\\xfe\\x16\\x5c\\x8c\\xed\\xd5\\xc9\\xfc\\x28\\x82\\x3d\\x45\\xa5\\xe6\\xc9\\xb9\\x56\\xd4\\x64\\x01\\x5d\\xba\\x9e\\xf2\\xf4\\xca\\x59\\xa2\\x08\\xde\\x18\\x67\\x24\\x39\\x7d\\x7d\\x03\\x9e\\x65\\xf7\\x3e\\xad\\x29\\x69\\xff\\x9b\\x8d\\x7d\\xff\\xcb\\x71\\xd5\\x62\\x67\\x34\\x83\\xa8\\x40\\xcb\\xf0\\x32\\x0e\\xc1\\x4a\\x36\\x9b\\x93\\x00\\x25\\xcb\\xc6\\xdd\\x29\\x9a\\x78\\x64\\xd8\\x4e\\x9f\\x86\\x1d\\x2b\\xf8\\x4f\\xff\\xd2\\x46\\x6e\\x3b\\x3d\\x0d\\x78\\xbc\\xfb\\x89\\xfe\\x21\\xa6\\x58\\xd1\\xc2\\x36\\x54\\xd0\\x03\\x1e\\x73\\xe5\\xa9\\x61\\xb9\\xc2\\x83\\x21\\x39\\xb3\\x0a\\x4a\\x0a\\x37\\x09\\xd0\\xb9\\xff\\xb3\\x95\\xe1\\x8f\\x5f\\x3f\\x72\\x3e\\xba\\x37\\xf9\\xb0\\x39\\x05\\xba\\x31\\x9b\\xfc\\xc5\\x54\\xd3\\x01\\xf1\\xbb\\x9f\\x2f\\x66\\x2e\\x3c\\xcd\\x3b\\xe4\\x72\\xb9\\x5e\\x9b\\xe5\\x36\\x97\\x3d\\x2d\\x53\\x93\\xff\\x02\\x77\\x85\\xde\\x1e\\xdc\\x68\\xcf\\xe8\\x08\\xfc\\xd2\\xcd\\xfe\\xdf\\x2d\\x7b\\x27\\x7d\\xd7\\x65\\x7f\\xeb\\x6a\\xfe\\xc5\\xfb\\x77\\x81\\xb3\\x2b\\x2c\\x08\\x3e\\x29\\xd4\\x1e\\x6b\\xdd\\xc8\\x5e\\xa1\\x54\\xae\\x5e\\x55\\x54\\xf1\\x9f\\x4c\\x9c\\x43\\xe5\\x18\\x6a\\x65\\xe7\\x32\\xf6\\xaf\\x38\\xe4\\x48\\x5c\\x39\\xf4\\xd0\\xa1\\x3c\\xb6\\x0d\\xbb\\x1f\\x7b\\x77\\xde\\xc0\\xfd\\x09\\xf9\\xaa\\x75\\xb0\\x1a\\xec\\xbf\\x71\\x7a\\x07\\xac\\x82\\x7d\\x47\\x37\\xee\\x26\\x73\\x17\\x34\\x39\\x0d\\xf6\\x83\\xd5\\x4b\\x92\\xda\\x13\\x2d\\x56\\x0a\\xa2\\x55\\x17\\x26\\x22\\x97\\x96\\xd6\\x37\\x6f\\x32\\xc0\\x89\\x08\\xce\\x67\\x05\\x56\\xe3\\x11\\x38\\xa8\\x28\\x5c\\xb9\\x1b\\x3c\\x01\\xd3\\xf7\\x1e\\xdb\\x0e\\xf3\\xe6\\xbd\\x25\\x81\\x7f\\x1b\\x6c\\xff\\x31\\xd8\\xf4\\x53\\x07\\xec\\x09\\x58\\x31\\xb9\\xa4\\x05\\x94\\xb5\\x7c\\xe6\\x9c\\x29\\xae\\x59\\x04\\x8a\\x75\\x60\\x05\\x78\\x22\\xa5\\x14\\x3f\\x5f\\xf2\\x65\\x69\\xf0\\x2b\\xaf\\x0b\\x7f\\xee\\xdb\\xfc\\xc7\\x6e\\x0a\\x06\\x08\\x95\\xcc\\x41\\x62\\xab\\x03\\x34\\x2d\\x27\\x33\\x3b\\x80\\xfc\\x8f\\x55\\xd7\\xb1\\x5e\\x63\\xf2\\xb1\\xbc\\xda\\xcd\\xee\\x7f\\x3f\\x87\\x8a\\x8c\\xcc\\x35\\xb1\\xc9\\xc7\\x7f\\xb0\\x4e\\x17\\x32\\x59\\xba\\xb8\\xd6\\x7b\\x0e\\x43\\xea\\x49\\xc8\\x17\\xa0\\x09\\x89\\x57\\x9f\\xbe\\x35\\x94\\x35\\xff\\x63\\xff\\xb3\\xef\\x56\\x3e\\xfb\\xbe\\xc6\\x4b\\x2c\\xe7\\x24\\x28\\xad\\x2e\\x90\\x6f\\xa5\\xfb\\x4d\\x3e\\x87\\xe2\\xff\\x63\\x61\\xd5\\x8e\\x86\\x5b\\xd0\\x63\\x5c\\x16\\xe1\\x34\\x6f\\x0e\\x45\\x0e\\xf8\\xfa\\xa7\\x6f\\xe8\\xc1\\xf3\\xab\\xee\\x53\\x48\\xfb\\x2a\\x20\\x1b\\xb3\\xd1\\x2f\\xa5\\x05\\x87\\xc5\\x67\\xab\\x1b\\x6c\\x41\\xa1\\xf7\\x06\\xae\\xa3\\x40\\x98\\xaa\\xab\\x42\\x56\\xdd\\x86\\x06\\xf6\\x96\\x35\\x34\\x0a\\x6b\\x52\\xa8\\x94\\x37\\x64\\x59\\x9c\\x7c\\x62\\xe5\\x17\\x29\\xb2\\x43\\x7f\\xf7\\x74\\x23\\x2c\\x3d\\x41\\x7c\\xfc\\x48\\x0e\\xf3\\x98\\x79\\xbe\\xd8\\x89\\xb2\\x36\\x06\\x8a\\xe9\\x21\\x4a\\x23\\x81\\x63\\xf1\\xec\\x83\\x68\\x3d\\x82\\x84\\xc6\\xc2\\x4b\\x4d\\x4a\\x67\\xcb\\x29\\x3b\\x43\\xfe\\xaf\\xd6\\x4e\\xc5\\x3f\\x3e\\x49\\x98\\xdd\\xd2\\x8a\\x72\\x88\\xa9\\x7e\\x03\\x51\\xe3\\x48\\xa2\\x9a\\x50\\x34\\x76\\x9d\\xad\\xbd\\xac\\xd2\\xe9\\x50\\x44\\x35\\xd8\\x4a\\xdf\\x01\\x6d\\xee\\x8f\\x72\\x98\\x82\\xdf\\x20\\x48\\x6a\\x53\\xa4\\xb5\\x57\\xb5\\x09\\x4c\\x96\\xf8\\xd6\\x0c\\x19\\x2f\\x79\\xaa\\xa9\\xa5\\x48\\xec\\xa8\\x58\\xf1\\x51\\xb1\\x05\\x86\\x45\\xac\\x57\\xc1\\x0e\\x19\\x38\\xa6\\x40\\x09\\xdd\\xd9\\xb3\\xb8\\xb3\\x1e\\x50\\x14\\x41\\x6d\\xab\\x3b\\x3b\\x1b\\x8f\\x41\\x5f\\x27\\xcd\\x87\\x79\\x6f\\x0b\\xee\\xe5\\x5c\\xa6\\x37\\xa3\\x6f\\x73\\x67\\xe7\\x42\\xa6\\xed\\x65\\xc1\\x23\\x7d\\x39\\x4d\\x6f\\x17\\x72\\x93\\xc4\\xf9\\x26\\xf2\\x3b\\xb3\\xc8\\xaa\\x4e\\x1a\\xab\\x5f\\xe8\\x83\\x58\\x13\\x6f\\x17\\xf2\\x12\\xc4\\xb9\\x26\\xd2\\x3b\\x0a\\x82\\x7a\\x2e\\x6b\\xea\\x13\\x2e\\xa2\\xfd\\x45\\x8d\\xd1\\x62\\xe8\\xd2\\x07\\x31\\x28\\x75\\x83\\x53\\xe4\\x00\\x33\\xc9\\x40\\xdb\\x39\\xef\\xe4\\xe7\\x70\\xf4\\x0f\\xb1\\xf2\\x6b\\x5a\\x93\\x16\\x36\\x7a\\xdc\\x3f\\xcd\\xe1\\xaf\\x10\\xae\\x38\\x69\\x86\\xd7\\xcf\\x34\\x6a\\x81\\xa1\\x6f\\x75\\xa1\\xb5\\x5b\\x21\\x89\\x85\\x3f\\x2c\\xef\\x8d\\x8c\\x98\\x1a\\x39\\x29\\x86\\xbb\\x1e\\x6b\\x4e\\x3b\\x4b\\xbf\\x89\\x19\\x69\\x24\\xcb\\x65\\x01\\xbd\\x60\\xbe\\xe2\\x66\\x3b\\xd4\\x3e\\xac\\xa3\\x46\\xfd\\x64\\x99\\xbc\\x51\\x2f\\x3e\\x57\\x75\\xa3\\xc3\\x11\\xe1\\xea\\xd9\\x94\\xe6\\x36\\x4b\\xa5\\x58\\x93\\x8b\\xdd\\xde\\xbd\\x09\\x70\\x0f\\x70\\x4e\\xcf\\x96\\x34\\xb7\\x49\\x5b\\x67\\xc0\\xc5\\x71\\x63\\x0b\\x6f\\xf2\\xad\\x90\\xb5\\xbf\\x27\\x88\\x7f\\xf9\\xee\\x6b\\x04\\x5f\\x23\\xf7\\x60\\x88\\xa8\\xf7\\x5f\\x03\\xf1\\x09\\xf9\\x9c\\xe4\\x5b\\xb1\\xb1\\xae\\xf3\\x20\\x9b\\x3a\\x6e\\x27\\x19\\x11\\x3e\\x26\\x49\\x7f\\x54\\xbb\\xb2\\x99\\xae\\xd5\\x19\\x76\\x76\\xd5\\x65\\x0b\\x22\\x49\\x7f\\xa8\\x69\\xa1\\xd3\\xc6\\xcd\\x92\\x35\\xcc\\x0b\\xef\\x3c\\x1c\\x3e\\xfe\\x4b\\xdc\\x93\\xf2\\xea\\xae\\xd1\\x2f\\xfd\\x0a\\x2b\\x3e\\x63\\x43\\x5b\\xc8\\x89\\xc6\\x2c\\xd6\\xd0\\xb3\\x1e\\xd9\\x6c\\xd3\\x50\\x28\\x1d\\xba\\xa9\\x7b\\x3d\\x25\\x4d\\xdf\\x4d\\x23\\x7b\\x79\\xf2\\x9f\\x10\\x3d\\xeb\\xc9\\x9f\\x66\\xde\\x7e\\xee\\xe4\\x66\\x00\\xdf\\xcf\\x9d\\xa2\\xcc\\xdd\\x2b\\x8f\\x1c\\xce\\x16\\xec\\x42\\xd2\\xc4\\x6a\\x24\\x0b\\xf8\\x34\\xaf\\xa6\\xb3\\x15\\xbe\\xa7\\x44\\x2d\\xbe\\x58\\x10\\x75\\x57\\x14\\xe6\\x72\\x6a\\xd2\\xd0\\xc5\\x78\\xaf\\x26\\x75\\xc6\\x63\\x8e\\x8b\\xb5\\x58\\x25\\x79\\x4b\\x88\\xfd\\xee\\x9d\\x5d\\xb9\\x4e\\x99\\x88\\x0d\\xcd\\x88\\xe5\\xc9\\xea\\x99\\x60\\xaf\\x29\\x7d\\x31\\x68\\xcd\\x48\\x8c\\x20\\x20\\x9f\\x53\\x31\\xb0\\x59\\x4c\\x02\\x1e\\x56\\x85\\x8d\\xf3\\xed\\x76\\x3a\\x49\\x65\\xd7\\x21\\x92\\x7d\\x61\\x39\\xf0\\xd1\\xa1\\x58\\xc1\\x09\\x84\\xc0\\x62\\xa7\\x11\\x55\\x76\\x3d\\x72\\xb0\\x2f\\xa2\\x1a\\x86\\xa3\\x66\\xa5\\x4e\\x3f\\xa3\\xee\\x90\\x94\\x5e\\x8e\\x72\\xf6\\x7f\\x8f\\x55\\x43\\x2d\\xa3\\xdd\\x72\\xcb\\xed\\xc0\\x30\\x76\\x77\\x7e\\x5c\\xc4\\xaf\\xaa\\x26\\x30\\x6f\\x2e\\x71\\xe6\\x85\\x31\\x89\\xcb\\x6b\\x3e\\x10\\x25\\x3c\\x90\\xb8\\x00\\x40\\xc4\\xc2\\x83\\x2e\\x5d\\x98\\xfc\\x73\\x3c\\x09\\x64\\x33\\x69\\xc6\\xa0\\x53\\x09\\x9e\\xa6\\x7a\\xc4\\xad\\x88\\xb1\\xd4\\xf9\\x36\\xdf\\x19\\x4d\\xc0\\xb4\\xeb\\x51\\x35\\xb3\\x64\\xb5\\xea\\x91\\x20\\xcf\\x0c\\x9d\\x0a\\xaa\\x5b\\xd8\\x3a\\x48\\x81\\xc8\\x71\\x98\\x30\\xa6\\x11\\x76\\xa9\\x4a\\x5a\\x50\\xff\\x20\\x85\\xe0\\xf0\\x4a\\x87\\x14\\xed\\x43\\x79\\x41\\x94\\x13\\x4b\\x40\\x0f\\x0b\\x95\\x0e\\x2c\\x51\\x6e\\x93\\xc1\\x83\\xa8\\x7a\\x95\\x0b\\x7e\\x6e\\x4c\\xaa\\xf3\\xe0\\x04\\x57\\xb8\\x19\\x15\\x7c\\x20\\x93\\x5b\\x61\\x9d\\x0c\\x43\\x7f\\xf1\\xde\\xaf\\xc1\\x50\\xa6\\xbb\\x20\\x21\\x3a\\xae\\xad\\x22\\xb2\\xde\\xef\\x58\\x76\\x11\\x13\\x8b\\xba\\x47\\x0d\\x4b\\xc4\\xf0\\x01\\xf1\\x30\\x00\\xb5\\xfb\\x3c\\xed\\xd2\\xdd\\x7b\\xbe\\xf8\\xbf\\x45\\x20\\x37\\x58\\x26\\x52\\x7f\\x99\\xff\\xec\\x43\\x0d\\x7f\\x36\\xb2\\x88\\xfa\\x68\\xaa\\x13\\x46\\xc6\\xf4\\x4d\\x75\\x14\\x2e\\x1c\\xe6\\x34\\xf5\\x7e\\x73\\xfd\\xa8\\x77\\xba\\x75\\x7b\\x3a\\xaa\\x94\\x45\\x75\\x17\\x71\\x1a\\x3f\\x1e\\xda\\x64\\x88\\xbf\\xa8\\x5d\\x19\\x69\\x8d\\xb9\\x47\\x29\\xb4\\xf1\\xab\\x52\\x6b\\x37\\x6f\\xb7\\x41\\xb1\\x52\\x48\\x94\\x8c\\x44\\x65\\xed\\x74\\xa3\\x2d\\x82\\x35\\x46\\x58\\x51\\x6e\\x27\\x6a\\x00\\xd9\\x22\\x08\\x1f\\xe2\\xb5\\x98\\xe3\\x29\\x53\\x9c\\x20\\x05\\xf8\\xab\\x7e\\xee\\x92\\xb2\\x81\\xbd\\x13\\x42\\xd5\\x2c\\xe5\\x64\\x35\\x2b\\x6c\\x7c\\xd7\\xba\\xea\\x06\\xd7\\xec\\x98\\x67\\x68\\xea\\xec\\x09\\x88\\xb6\\x50\\x86\\x1a\\x0d\\xa8\\x1a\\x51\\xfc\\x4c\\x8f\\xda\\xd8\\x81\\x58\\x8b\\x64\\x99\\x78\\xab\\x71\\x4f\\xaf\\x8a\\x0d\\xc2\\x5d\\xa5\\x3a\\x50\\xb9\\x47\\x23\\x64\\x5e\\x7f\\x84\\xd8\\xfb\\xac\\x3f\\x65\\xb7\\x5a\\xc0\\xde\\xf9\\x78\\x19\\x7c\\xb7\\x56\\xc4\\xdc\\x79\\x55\\xd9\\xf5\\x87\\xcb\\x75\\x8e\\x41\\x40\\xbb\\xce\\x7b\\x49\\x46\\xbd\\xa6\\xd9\\x6f\\xfe\\xa7\\x0b\\x78\\x6d\\x22\\xf4\\xb7\\x05\\x2d\\x23\\x5e\\xc9\\x92\\x08\\x24\\x4c\\x45\\x3f\\x4a\\x9d\\xa2\\x7c\\x96\\x4a\\x6d\\x4a\\xe2\\xa3\\x00\\x4c\\x54\\x2d\\xa4\\xd4\\xcb\\x1a\\xe1\\x76\\xb9\\x0a\\x24\\x31\\x64\\xc7\\x6f\\xfc\\xa4\\x7b\\x79\\x5f\\xa5\\xeb\\xd0\\x51\\xf8\\x92\\xb4\\xcb\\x94\\x3d\\x38\\xde\\x1d\\x36\\xd7\\xf1\\xbf\\x00\\x1a\\x26\\xa2\\x3a\\x85\\x93\\x5a\\xd0\\x47\\x13\\x13\\x13\\x98\\xfb\\x5b\\x17\\x9f\\x54\\x3d\\x86\\x7f\\x12\\xe9\\x9f\\x8c\\x2d\\xaa\\x4e\\x61\\x75\\xcb\\x25\\x50\\xb2\\xc9\\x04\\xe9\\x24\\xb1\\x66\\xfd\\x4f\\x4b\\xe4\\xe7\\x02\\xf9\\x8c\\x59\\xae\\xcf\\xaf\\xc5\\x2e\\x6c\\xa9\\x33\\x45\\x0a\\x48\\x46\\x54\\x27\\xbd\\x46\\x04\\x24\\x39\\xa8\\xe0\\xf3\\xf9\\xf3\\x5f\\x8d\\xcb\\xd6\\x10\\x89\\x34\\x07\\xb3\\xb1\\x9f\\x75\\xe1\\x3f\\x11\\x46\\x2a\\x61\\xed\\x4b\\x5b\\x17\\x9f\\x52\\x3e\\xc6\\x5f\\xd0\\xa2\\xb7\\xc9\\xa0\\xdc\\xd3\\xff\\xf9\\x03\\x47\\xd8\\x77\\xae\\x51\\x7d\\x12\\x5f\\xfe\\xd6\\x2d\\x67\\xdc\\x14\\x9f\\xc4\\x7b\\xe6\\x77\\x5f\\x12\\x9a\\xea\\x1d\\x52\\xf9\\xdb\\xe5\\x3b\\x0e\\xc6\\x3b\\xfb\\x93\\xab\\xaf\\x10\\xa1\\xa1\\x5f\\x2b\\xb8\\x65\\x09\\xe5\\x5d\\xe1\\xc0\\x3c\\x0a\\x64\\xbd\\x82\\x8d\\x60\\xab\\xc5\\x0f\\xb3\\x8a\\x1b\\xe7\\xc2\\x46\\x31\\x28\\xe9\\xfb\\x3d\\x96\\x8c\\x92\\x7f\\x26\\x75\\x39\\x37\\xf8\\x5c\\x4c\\x39\\xdf\\xf0\\x79\\xc3\\xd5\\xf2\\xce\\xa5\\x11\\xcd\\xf8\\x7a\\x88\\xe3\\x7f\\xe5\\x29\\xf3\\x05\\xfb\\xc5\\x51\\xca\\x96\\xfb\\xbb\\x2b\\xf9\\x4a\\x57\\x2b\\x84\\xf6\\x27\\xdf\\x0e\\xf0\\x45\\x7e\\xc3\\xf1\\x70\\x45\\x3f\\xe2\\x96\\x7c\\xdf\\x5a\\x7a\\x87\\x38\\x3a\\x4f\\xbc\\xd9\\x6d\\xc9\\x56\\x77\\x61\\xf0\\x3a\\xcd\\x90\\x07\\x24\\x69\\x50\\x9b\\xdb\\x98\\x81\\x6d\\x64\\x74\\xec\\x1b\\x8b\\xce\\x1d\\xbe\\xfe\\x83\\x87\\x76\\xdd\\xd1\\xe4\\x08\\x55\\x4f\\x9e\\x48\\x6f\\x1a\\xaf\\x14\\xaf\\x99\\xe1\\xec\\x02\\x0e\\x2f\\x6d\\xa2\\x6e\\x9b\\x37\\x73\\x4a\\x2a\\x87\\x9c\\x87\\xcd\\x46\\x7d\\xb2\\xa6\\x19\\xa0\\x81\\xd0\\x33\\x98\\xa5\\xaf\\xc3\\xa9\\x6f\\xcf\\x6e\\x82\\xed\\xa2\\x72\\x8c\\x3b\\xed\\x67\\xa7\\x7f\\x5a\\x98\\x38\\x84\\x4b\\x0a\\x50\\x47\\xee\\x7b\\xcf\\xaa\\xc4\\x6b\\x47\\xe2\\x21\\xa2\\xb1\\xb8\\xc8\\x41\\x27\\x98\\xb6\\xb6\\x65\\xf9\\xeb\\xfd\\x3f\\xe2\\x7f\\x80\\x7e\\xe8\\x18\\xac\\xef\\xb3\\xe3\\x43\\xe0\\x77\\xa3\\xe4\\x8f\\xcb\\xdb\\xef\\x68\\xdb\\x37\\x8d\\xe9\\x60\\x32\\xf8\\xcd\\x0d\\x1d\\x9a\\xf5\\xc3\\x3d\\xd7\\xf6\\xbc\\x18\\xca\\xdd\\xf3\\xaf\\x55\\x3f\\xb5\\x7d\\x68\\x50\\xbe\\xf5\\x6c\\x75\\xd1\\xb3\\x51\\x75\\xc0\\xaa\\xbc\\x71\\x49\\xd0\\xab\\x88\\xbb\\xeb\\x61\\x8a\\xc3\\x26\\xe7\\x2c\\xec\\x7e\\xbc\\xcf\\x26\\xec\\xdb\\x96\\xf1\\x7d\\xfa\\xe3\\x99\\x77\\x4a\\xf3\\x13\\xe7\\x4f\\x8f\\x87\\xec\\x82\\x3c\\xcc\\x7d\\xf6\\x45\\x51\\xb0\\x6a\\x84\\xbf\\x89\\xbc\\xaa\\x95\\x54\\xbd\\x19\\x5c\\xdb\\x2d\\x72\\x85\\xd4\\xc6\\x86\\x60\\x1e\\xce\\x46\\xb1\\xf5\\xf9\\x5a\\xe4\\x32\\x5a\\xbb\\x11\\x1f\\xe4\\x3b\\x4c\\x82\\x18\\x54\\xaf\\xfb\\xcc\\x8b\\x51\\xb8\\x03\\xde\\x61\\xaf\\x22\\xc3\\x92\\xf7\\xe2\\x6c\\x71\\x2d\\x18\\x74\\x49\\x72\\x84\\xab\\x23\\x15\\x15\\x7b\\x5d\\x9e\\x78\\xad\\xae\\xa4\\x3c\\x77\\xa1\\x16\\x83\\x73\\x61\\x23\\x3a\\x25\\xad\\x07\\xf1\\xfa\\xa9\\x62\\x50\\x3c\\xdb\\x7e\\xb2\\xe1\\x96\\xbd\\x8c\\x24\\x73\\x6c\\x9c\\x22\\x81\\x15\\x8c\\x67\\xc1\\x66\\x9a\\x30\\x36\\x4c\\x55\\x0f\\x6b\\x7b\\x89\\xa3\\x84\\xcd\\x11\\x6f\\x74\\xdf\\x10\\xbb\\x59\\x1b\\x0d\\x18\\x7c\\xd8\\xbb\\x90\\xea\\x34\\x83\\x41\\xe9\\xc7\\x6d\\x0e\\xf9\\xa2\\xfa\\x06\\x59\\x2d\\x86\\xe6\\xb0\\x31\\x88\\x13\\xb8\\x96\\x63\\x8c\\x16\\xd6\\x28\\x75\\x22\\x5e\\x4c\\xef\\x76\\x50\\x12\\x52\\xbf\\x4d\\x65\\x45\\xd3\\x74\\x2e\\x00\\x44\\x3e\\x5c\\x03\\x35\\xd1\\xed\\x34\\x08\\xfc\\xc7\\xe6\\x24\\x3d\\x76\\xe7\\xe3\\x4d\\xc2\\x70\\xea\\x3f\\x4b\\xc6\\xea\\x7f\\xc8\\xec\\x86\\xd8\\x6a\\x5e\\x3b\\x7a\\xd0\\x8e\\xe6\\x1d\\x39\\x28\\x70\\xba\\xb4\\x34\\x68\\xf5\\xac\\x53\\x86\\x6e\\x76\\x0b\\x8f\\x4f\\x72\\x3f\\x1d\\xb4\\x15\\xd6\\xb5\\xc8\\x78\\x76\\xb5\\x7c\\xee\\xae\\xbb\\x69\\x5d\\xf0\\x15\\x30\\x05\\xed\\xa8\\x6b\\xc9\\xce\\x6e\\xaa\\x25\\x4f\\x7d\\xa1\\xb1\\x86\\x12\\x26\\x9e\\xb5\\x92\\xdc\\xb8\\x6b\\xd9\\x25\\x43\\x04\\x36\\x4c\\xd2\\xf9\\x8f\\x9f\\x6d\\xc7\\x17\\x60\\x78\\x1c\\x34\\x32\\x57\\xbd\\xcd\\x49\\x8d\\x4e\\x9f\\x32\\xcb\\xfb\\xc1\\x5b\\x42\\x2a\\xa0\\x29\\xfe\\x09\\xa1\\xf1\\x87\\xb2\\x90\\x45\\xc1\\xd7\\x41\\xe7\\xfc\\x45\\x59\\x99\\xdc\\xac\\x7e\\x16\\x18\\x27\\x68\\x47\\xd7\\x85\\x21\\xa7\\x88\\x4c\\x71\\x9a\\x90\\xc5\\xbe\\x16\\xdd\\x37\\xa2\\xb6\\x79\\x13\\x82\\x24\\x90\\x1d\\x4a\\x54\\x90\\x7f\\xfe\\x27\\x08\\x7e\\x09\\x3f\\x86\\x1a\\x56\\x8b\\x2f\\x6b\\x45\\x5f\\x66\\x47\\xda\\xdf\\x99\\xa5\\x58\\x0f\\x02\\xc6\\x53\\x77\\x9c\\x77\\x54\\x7e\\xdb\\xf4\\xa8\\xb7\\xb3\\x9b\\xca\\x81\\xfb\\x81\\xc1\\xa5\\x29\\xd3\\x3b\\xf2\\xe8\\x81\\x97\\xaa\\xc2\\x70\\xff\\x93\\xc8\\x91\\x90\\x51\\x13\\xc5\\x2e\\x55\\x5b\\x23\\x47\\xaf\\x21\\x30\\x6e\\x78\\x99\\x29\\x9b\\xc6\\xe8\\x38\\xfc\\x3d\\x59\\x41\\x11\\xdb\\x71\\x7f\\xad\\x73\\x83\\x79\\xcb\\x7e\\xe0\\x33\\x7e\\x29\\x37\\x4d\\x4d\\x39\\xfd\\xd8\\x92\\x90\\xd9\\x95\\x39\\x9d\\x31\\xfe\\xd0\\xb2\\xfb\\x2a\\xa4\\x8b\\xaf\\x9a\\xa5\\x0b\\x98\\x6b\\x6e\\x70\\xf8\\xdb\\x3d\\x82\\x8c\\xdd\\x54\\xf7\\x28\\x59\\x46\\xb2\\xa0\\xd4\\x74\\xa1\\xf0\\x17\\x69\\xec\\x47\\x24\\x79\\x16\\x56\\x10\\x7b\\xea\\xfa\\xb0\\x05\\x30\\xc7\\xcb\\x56\\xed\\xce\\xb8\\xdc\\x6c\\xeb\\x34\\xeb\\xa7\\x60\\xc7\\xcb\\xb8\\xdf\\x44\\x18\\x6e\\xb7\\x39\\xe6\\xb9\\x17\\x80\\x96\\x96\\xed\\xed\\xbe\\x1a\\xd4\\x01\\xc1\\x58\\xfe\\xa8\\xea\\x50\\xe0\\x90\\xe7\\x72\\xa2\\xe5\\x9c\\x9c\\x1d\\x5c\\x52\\x41\\xbd\\xa4\\x3d\\x45\\xde\\x67\\x11\\x34\\x71\\x5f\\xed\\x81\\x54\\xd2\\x1b\\xa6\\x25\\x5a\\x9a\\xf2\\x1e\\x69\\x89\\x9d\\x1f\\xc6\\x15\\xca\\xfe\\xc0\\xf8\\x31\\xb5\\x65\\x42\\x5f\\x6b\\x6d\\xbe\\xf4\\x70\\x9a\\xc7\\xed\\x6d\\x62\\x1a\\xf9\\xf3\\x34\\x4f\\xd3\\xe9\\x09\\x92\\xbb\\x7f\\xb5\\xd9\\x48\\x79\\x47\\x37\\xbc\\xc5\\xd4\\x81\\x80\\x24\\x09\\x72\\xfa\\x54\\xb9\\xea\\xb5\\xa4\\x92\\xb4\\x53\\x73\\x2f\\x8b\\x14\\x40\\xc8\\xb1\\xf1\\x6f\\x1b\\x43\\xd7\\x6e\\x0c\\xf6\\x67\\xe9\\x13\\xee\\xbd\\xeb\\xab\\x2c\\x93\\x82\\x35\\x40\\xe1\\xc4\\x8f\\xe4\\xad\\xc3\\x26\\x66\\xfe\\xbd\\xef\\xbb\\x2a\\x07\\x6f\\x85\\xb5\\x01\\x8e\\xb9\\x77\\x92\\x3a\\x0b\\xa3\\xbe\\xf9\\x93\\x8b\\x9c\\x3d\\xb5\\x7a\\xf2\\xd9\\x9a\\xcc\\x88\\xea\\xc6\\x4d\\xe9\\xde\\xb6\\xe7\\xde\\x50\\xb0\\x16\\x69\\xdf\\xaa\\xcc\\xda\\x6e\\xa6\\x08\\xf8\\x5d\\x5a\\xca\\xac\\x5e\\x1e\\x89\\x81\\xbf\\xae\\x9b\\x71\\x8d\\xbc\\xe0\\x26\\x9a\\x24\\xab\\xa8\\x8e\\x87\\x0f\\x48\\x2f\\x5e\\x98\\x1c\\x0e\\x28\\xc0\\xf0\\x6a\\x6c\\x58\\xbb\\x52\\xe1\\xf6\\x32\\xac\\x2c\\x76\\xf2\\xf9\\xae\\x8b\\xca\\x8e\\x5b\\xd5\\x33\\x6d\\x17\\x69\\x73\\xb7\\x0c\\x23\\xc9\\x96\\xb8\\x7b\\x84\\x44\\x39\\xe7\\x75\\x4f\\xeb\\x36\\xf7\\x09\\x68\\x01\\x83\\x5b\\xf5\\xa1\\x9a\\xb7\\x25\\x23\\x4b\\x1c\\x3d\\xbd\\x16\\x65\\xa2\\x2b\\x85\\x27\\x38\\xe9\\x1f\\x08\\x05\\x1e\\x56\\x1c\\x5b\\xd8\\x6d\\x95\\x4f\\x37\\x08\\x36\\x31\\x97\\x81\\xb4\\x19\\x90\\xf2\\x35\\x37\\x0b\\x9d\\xb3\\xc4\\x6a\\x66\\x21\\xee\\x43\\x85\\x14\\xc4\\x7f\\xec\\x90\\x0e\\xda\\x5b\\xee\\x98\\xe5\\x6c\\xd5\\x25\\x92\\xe5\\x9c\\xf6\\x1a\\x5d\\x9a\\xdb\\xa6\\xb5\\x4c\\x28\\xab\\x07\\x67\\xd7\\x00\\xac\\xaa\\x6d\\xd0\\x92\\xc3\\x2b\\x02\\x9d\\x68\\x47\\x84\\x90\\x72\\xef\\xde\\xdf\\xbf\\x0f\\x78\\x6a\\x6c\\xfa\\x73\\xb7\\x6e\\x2a\\x21\\x10\\xff\\xc1\\x23\\xaa\\xc6\\x9d\\x95\\xce\\x19\\xde\\x66\\xcd\\xa1\\xd6\\xa1\\xa9\\x20\\x43\\xaa\\xf6\\xa1\\x35\\x10\\x56\\xd9\\x9a\\x41\\x38\\xad\\x0b\\x95\\x13\\x31\\xe9\\xb6\\x93\\xce\\x0e\\x33\\x47\\xd1\\xcc\\xf1\\x50\\x53\\xb1\\xbf\\x21\\xc2\\x57\\xab\\xda\\x72\\x3c\\xad\\xda\\xcd\\xf2\\x4c\\x09\\x57\\xeb\\x24\\xc2\\xe5\\x76\\xdd\\x0d\\x86\\x12\\x60\\xbe\\x6a\\xc3\\xbe\\x5a\\x6b\\x76\\x44\\xf1\\x69\\x97\\x1c\\xe7\\x5c\\xef\\xc1\\x52\\xb0\\xe0\\x3a\\x07\\xf4\\xd8\\xb8\\x29\\xcc\\x52\\x9a\\x85\\x39\\x9f\\x35\\x0f\\x09\\x38\\xc0\\x89\\x5a\\xd1\\x88\\xc6\\xc6\\x00\\x00\\x47\\x1b\\x90\\x39\\x54\\xba\\x03\\x96\\xa3\\xbc\\x8a\\xe3\\xce\\x9d\\xb2\\xd1\\xde\\x80\\x78\\x10\\x93\\xb7\\xe2\\xb7\\xc5\\x44\\x32\\xe0\\x13\\x79\\xdb\\xcb\\xcf\\x78\\x0b\\x18\\x29\\x72\\x62\\x80\\x4b\\x5a\\x80\\x1d\\x59\\xea\\x1f\\x2c\\x29\\x29\\xab\\xa3\\x95\\x94\\x11\\x37\\x21\\x7a\\x1b\\x8e\\x61\\xaf\\xf1\\xa4\\xa0\\x7a\\x09\\x88\\xbc\\x91\\xe6\\xc7\\x24\\x28\\xfe\\x83\\x84\\xed\\xe5\\x61\\x08\\x8e\\x1e\\x59\\x33\\xd4\\x0d\\x20\\xea\\xa3\\x28\\xf9\\x1c\\x90\\x20\\xa6\\x7e\\x07\\xc8\\x20\\x39\\xe3\\xbd\\xba\\x89\\x94\\x48\\x0f\\x64\\xd5\\xe0\\x58\\xfe\\xfb\\xa0\\xb8\\x65\\x9b\\x81\\x61\\x15\\xf1\\xfd\\x35\\x0d\\xa4\\x78\\xa7\\x5d\\xf7\\xb7\\xfa\\x40\\xc6\\xe7\\xbd\\xa9\\xd9\\x1f\\x66\\x63\\x48\\x8e\\x1e\\x49\\xb3\\x44\\xa8\\xe2\\x15\\x9e\\xff\\xd0\\xb1\\x89\\x86\\x27\\x3f\\xca\\x4a\\xbb\\xf9\\x37\\x45\\x47\\x5a\\x56\\x73\\x65\\xc6\\x36\\xd3\\x89\\x31\\x95\\x2e\\x82\\xad\\x3b\\x18\\x74\\x4a\\x00\\x85\\x40\\x18\\xac\\x8c\\x39\\x44\\xb0\\x90\\x47\\x12\\x06\\x0b\\xfe\\x54\\x6c\\x71\\x60\\x44\\xae\\x2a\\x30\\x26\\x0b\\xc5\\xa7\\xa6\\xd5\\xbe\\x90\\x9a\\xf8\\x67\\xab\\x19\\xc2\\x82\\x0a\\xc1\\x75\\xcc\\x83\\xf5\\x1d\\xb5\\x3c\\x14\\xc2\\x23\\xd8\\x98\\x36\\x5c\\x43\\xbb\\x0a\\xc0\\x20\\xc6\\xd7\\x62\\xe5\\x8b\\xa7\\x7c\\xcc\\x6f\\xc3\\xe4\\x90\\x52\\xf4\\x3e\\x63\\xac\\x57\\xc0\\x00\\x6a\\x80\\x48\\xca\\x8d\\x53\\xe3\\x50\\xb5\\x11\\xfd\\xbf\\x26\\x45\\x82\\x9b\\x27\\x13\\xde\\x7b\\xa0\\xd0\\x6b\\x1a\\x46\\x91\\xbc\\x7b\\xf1\\x97\\x34\\x5a\\x00\\xc6\\x0d\\x63\\xdb\\xa1\\x6a\\x88\\xcc\\xbc\\x40\\x23\\xac\\x3d\\x8a\\x26\\xf6\\xe9\\xda\\xc9\\x5b\\x60\\x39\\xd1\\x66\\xd4\\xd9\\x26\\xd1\\xe4\\x40\\x8e\\xd5\\x02\\x7b\\xf4\\x20\\x1c\\xfd\\xb8\\x29\\xea\\xc8\\x7d\\x90\\xec\\x6e\\x1f\\xe7\\xe4\\xff\\xc1\\x2e\\x29\\x91\\x17\\x72\\x51\\x7d\\xe4\\x99\\xaf\\x7c\\xa4\\x3f\\xd0\\x40\\x3f\\x0f\\x0a\\x32\\x52\\xa6\\x53\\x17\\x55\\x27\\xf5\\x60\\x19\\x03\\x72\\xd3\\x9b\\x83\\x6a\\x72\\x62\\x58\\x3e\\x08\\x21\\x13\\x02\\x84\\xc6\\x0d\\x5c\\x5b\\x49\\x76\\x3e\\x54\\x05\\x1d\\xb7\\x5b\\xbd\\x82\\x07\\xdd\\xc9\\x7d\\x37\\xc3\\x56\\x2c\\x0b\\x4c\\xd4\\xae\\x9d\\xcc\\xb9\\x6f\\x1c\\xac\\xce\\x9f\\x1a\\x04\\x75\\xca\\xa6\\xb4\\xac\\x15\\x22\\x04\\xb5\\xf7\\xfc\\xfa\\x13\\x02\\xd5\\x95\\x4f\\x80\\xfc\\xf3\\x4a\\x15\\x56\\x25\\x45\\x05\\xf4\\x74\\x61\\xd8\\x5f\\x8e\\x7d\\xd7\\x71\\xd4\\x90\\x5c\\x69\\xbd\\x18\\xa2\\xf3\\x73\\xd2\\x11\\x67\\xb0\\xcf\\x99\\xe4\\x21\\xf8\\xb6\\x02\\xf2\\x12\\xec\\x10\\xf5\\x9a\\xe7\\x5a\\x9f\\x79\\x2c\\x0c\\x0a\\x17\\x37\\x64\\xe0\\x6c\\x38\\x67\\x3f\\xfe\\xf3\\xff\\xdd\\xf3\\x7c\\x71\\xe6\\x8d\\xbe\\x3c\\x50\\x43\\xbc\\xf0\\x60\\xc4\\x2e\\xde\\x5a\\xbb\\xa5\\x41\\x24\\x05\\xd2\\x21\\x32\\x50\\x63\\x42\\xd5\\x70\\x83\\xed\\x23\\xb0\\xd5\\x58\\xd8\\x81\\x48\\x90\\xd6\\x44\\x2d\\x24\\x61\\x25\\xe7\\x82\\xd3\\x32\\x1c\\x49\\xbf\\xb3\\x4b\\xd6\\x24\\xef\\x04\\x72\\xc2\\xd7\\x42\\x6e\\x84\\xc7\\x3e\\x46\\x8c\\xff\\x0e\\x4c\\x06\\xaa\\xbb\\x3b\\xe7\\xba\\x25\\x8d\\x16\\x6d\\x1c\\x43\\x3e\\x45\\x2b\\x25\\xe5\\x71\\x6d\\x1d\\x0b\\x72\\xbf\\x2a\\x03\\xff\\xc0\\xf7\\x50\\xb1\\xb2\\x6b\\xc1\\x0b\\x9d\\x2e\\x64\\x73\\xef\\x30\\xa8\\x86\\xc4\\xb4\\xd7\\x71\\xc2\\x39\\x20\\x9e\\xc7\\x78\\x07\\x26\\x82\\x84\\x8f\\xce\\x4f\\xab\\x04\\x49\\x0d\\x3c\\x67\\x94\\x92\\x86\\xfb\\xdb\\x69\\xc0\\x28\\x0a\\xc8\\x6d\\x05\\x03\\xa1\\x4b\\xe9\\xcd\\x5a\\x4f\\x94\\xd6\\x2b\\x04\\x9a\\x53\\x05\\x3f\\x51\\x75\\xbd\\xe1\\x16\\x33\\x30\\xab\\x80\\x2f\\xcb\\xf2\\xdf\\x9d\\x02\\x91\\x6a\\x46\\x21\\x03\\xa3\\x5a\\xa8\\x86\\xc0\\x6c\\x27\\xce\\xd5\\x29\\x6d\\x92\\x77\\xc0\\x2a\\xd4\\xaf\\x45\\xc8\\x67\\x81\\x04\\x11\\xe5\\x31\\x4c\\xd6\\x13\\xbc\\x3d\\xd1\\x2d\\x8e\\x98\\xb5\\x31\\x2c\\x79\\x93\\x5a\\x41\\x2c\\xe1\\x3a\\x7b\\x98\\x3b\\xd6\\x6b\\xf9\\xa3\\xef\\xeb\\x07\\x7b\\x61\\xd9\\x0f\\x8a\\x6f\\xed\\x65\\xad\\x7f\\x53\\x80\\x6f\\xec\\x24\\x0a\\x50\\xfa\\xe5\\xcf\\xa4\\x17\\x59\\xdd\\xd0\\xe6\\xee\\xde\\x10\\x20\\x26\\xbd\\xde\\xcb\\x34\\x89\\xe6\\x92\\xde\\x55\\x05\\x08\\x98\\xbb\\xae\\xee\\x26\\xb2\\x02\\xa8\\x06\\x2c\\x03\\x65\\x18\\x9f\\xeb\\x5e\\xb0\\x01\\xe3\\x7e\\x3c\\xd0\\xb1\\x83\\x7d\\xea\\xf1\\xa5\\x50\\x97\\x8d\\x4b\\xd3\\x96\\x84\\x69\\x14\\x43\\x06\\xe2\\xe3\\x10\\x0c\\x17\\x9e\\x47\\x2a\\xc6\\x58\\x94\\xe2\\x9c\\x4d\\x32\\x45\\x3c\\x51\\xf2\\x93\\x2a\\x5e\\x29\\x0d\\xcd\\x96\\x32\\x43\\x0b\\x34\\x29\\xac\\x59\\x6c\\x17\\x44\\x80\\xb8\\x94\\xfb\\x68\\xce\\x72\\xa9\\x9d\\xfa\\x00\\xe2\\x42\\x4a\\xd7\\x76\\xbb\\xe5\\x32\\xa7\\xe2\\x8e\\xf0\\x73\\x55\\xbc\\x4a\\x87\\x4a\\x12\\x8b\\x03\\xe6\\xbf\\xb5\\xef\\x2c\\x31\\xb7\\xc2\\x12\\xf6\\xce\\x66\\xfd\\x1c\\x8c\\xb2\\xf6\\xba\\xbd\\x73\\x1e\\x73\\x11\\x68\\x85\\x80\\xca\\xfa\\x6e\\xf3\\xe8\\x8b\\x1c\\x1b\\xc0\\x39\\x72\\xb2\\x8b\\x21\\x3c\\x38\\x1c\\x8f\\xcb\\x8f\\xa9\\x78\\x39\\xcc\\x5a\\x2c\\x0b\\xa0\\x29\\xd6\\x4b\\x9e\\x59\\x65\\x45\\x45\\xd5\\xb7\\x1c\\x3c\\x16\\xdc\\x0e\\x44\\x7c\\x90\\x1e\\x16\\x70\\xd4\\x56\\x1c\\xde\\x5d\\x30\\xd2\\x7b\\xf1\\x1b\\x01\\xa1\\x90\\x48\\x89\\x93\\x2d\\x00\\xf1\\x12\\xf6\\x37\\x61\\x10\\xa4\\x11\\x3f\\xe4\\xad\\x1d\\xe1\\xf2\\x01\\x1c\\x50\\xeb\\xc5\\xa5\\xaa\\xc1\\x06\\x82\\xf0\\xf4\\xc9\\x3b\\x1a\\x28\\xe6\\x8c\\x74\\x16\\x1e\\x2d\\x0c\\xce\\xf2\\x20\\x86\\x68\\x1b\\x62\\xb3\\x4b\\xe4\\x1e\\x80\\x81\\x58\\xec\\x7b\\x44\\xe6\\x22\\x10\\xc7\\xe4\\xdf\\x85\\x38\\x90\\x58\\x71\\xa5\\xe0\\x19\\x96\\x30\\x01\\x02\\x30\\x68\\xe5\\x45\\xc8\\x50\\x03\\x49\\xd8\\xba\\x5f\\x3e\\x2f\\x15\\xb0\\x34\\x32\\xf9\\x7d\\xf3\\xa5\\x4a\\x59\\x0c\\x1e\\x18\\x08\\x86\\x16\\x87\\xe5\\x47\\xf1\\xaa\\xa1\\x6b\\xb4\\xf6\\x5a\\xe3\\xb9\\x5a\\x47\\x1e\\xc6\\xd0\\x5c\\xd0\\x74\\x22\\xa5\\xd1\\x71\\x28\\xe4\\x63\\xc4\\xbd\\x2a\\x46\\xa4\\x2a\\x1a\\xa9\\x24\\xdd\\x1d\\x3a\\x60\\x1c\\x2c\\xd7\\x3a\\xb9\\xa9\\x84\\x96\\x97\\x9e\\xd2\\xcc\\x42\\xa9\\xc1\\x7e\\x8c\\x34\\xce\\x6c\\x6b\\x68\\x58\\x06\\xd4\\xb1\\x8d\\x61\\xf5\\x7e\\xb2\\x60\\xf4\\x75\\xd2\\x40\\x9d\\xbe\\x22\\xf0\\x4f\\xf9\\xf5\\x8d\\xec\\xb0\\x0c\\xd3\\x9c\\xa5\\x8f\\x2b\\x56\\x7e\\x90\\xd3\\x0d\\x1a\\xcf\\x69\\x3d\\x82\\xfe\\x7a\\x20\\x27\\x7c\\x50\\xa7\\xaa\\xea\\xf1\\xd2\\xc4\\xb3\\xdb\\x2a\\x6e\\xa5\\xb3\\x19\\x24\\x3d\\x44\\x6e\\x77\\xa8\\x2f\\x1b\\x8a\\x4c\\x89\\x4a\\x98\\x7e\\xff\\x20\\xa7\\x0b\\x34\\x1e\\xcc\\xfc\\xb9\\xcc\\x56\\xa4\\x24\\xfe\\xdd\\x83\\x37\\x5c\\x37\\x8e\\xaa\\x8f\\xb6\\xb9\\xda\\xee\\x82\\xb9\\x8f\\x5f\\x70\\x6d\\xba\\x0e\\xed\\x6a\\xde\\x15\\xda\\xc5\\x31\\x5f\\x0f\\x9d\\x6e\\x3e\\x4d\\xde\\xf3\\x73\\x11\\x11\\x75\\xa6\\xcf\\x85\\x14\\x78\\xcd\\xc3\\xf1\\xa8\\x96\\x6c\\xdf\\xf8\\xea\\xbf\\x44\\x27\\x0e\\xc5\\x57\\xb7\\xc4\\xee\\x4a\\x14\\x1c\\x2f\\x29\\xf5\\x61\\x12\\xdd\\x14\\xd6\\x8e\\x5f\\x49\\x29\\x66\\x19\\xc2\\x2a\\x62\\xa4\\xbf\\x5e\\x6e\\x94\\x1f\\x2b\\xeb\\x22\\x22\\x25\\xaa\\x5d\\xd9\\x4f\\x2e\\x66\\x1a\\x22\\x4a\\x6a\\x6e\\x83\\xfc\\x38\\xfa\\x56\\xeb\\xe5\\x0c\\x03\\xad\\xa1\\x86\\x79\\xb2\\xe3\\x25\\x85\\x5e\\x33\\x4a\\x49\\xb2\\xc9\\x24\\x5c\\x9f\\x4e\\xda\\x8b\\x3e\\xf2\\x30\\x0d\\xf1\\xc0\\x3e\\x7f\\x34\\xd5\\x58\\xea\\xd4\\x1c\\x79\\xa1\\xdc\\x0b\\x13\\x28\\xb2\\xa8\\x3e\\x42\\x54\\x3b\\xe2\\x37\\xba\\xb8\\xc6\\x0a\\x46\\x26\\xca\\x71\\x56\\xf3\\xdc\\x00\\x7e\\x65\\x44\\xea\\x03\\xfb\\x02\\x6a\\x28\\x46\\x8a\\x29\\xf4\\x28\\xf6\\x60\\xe3\\x41\\x53\\xf2\\x5f\\x0d\\x5a\\x91\\xf3\\xe7\\x74\\xaa\\xe2\\x50\\xe8\\x1d\\x63\\xc8\\x1c\\x5a\\xbf\\xda\\x63\\xe5\\x95\\x3b\\x36\\xd2\\xdb\\xd0\\xd0\\xf5\\xf1\\xd2\\x7e\\xf4\\x32\\x6e\\xd7\\x6d\\xe4\\xfc\\xca\\xfb\\xf1\\x54\\x59\\x51\\xf1\\xad\\xee\\xad\\xac\\xad\\xef\\x19\\x2e\\xce\\x04\\x3f\\x69\\x74\\x3c\\x59\\xa0\\x78\\x12\\x81\\x0d\\x9d\\x1a\\xbc\\x33\\xb2\\x8f\\x8d\\x59\\x33\\x99\\x81\\xce\\xc3\\xeb\\xc1\\xe8\\x1f\\xf1\\x05\\x98\\x71\\x38\\xe1\\x01\\xb2\\xd1\\x04\\xb5\\xf9\\x12\\xc7\\xc4\\x34\\x2b\\x08\\x9f\\x0a\\x67\\xe9\\xdf\\xf4\\x43\\xfc\\x8f\\xa4\\x85\\xc2\\xc8\\xd7\\x3f\\x65\\x3f\\x5d\\xb0\\xeb\\x38\\xe7\\x48\\xd1\\x5d\\xc1\\xa2\\xcd\\x51\\xdb\\xc7\\x7e\\x9d\\xac\\x80\\x6a\\xf8\\x11\\xef\\x63\\x58\\x27\\x49\\x32\\xe0\\x9c\\xab\\xf0\\xae\\x9a\\x13\\x2c\\xdc\\x25\\xc6\\x2b\\xd2\\x9f\\x9e\\x00\\x17\\x91\\xfe\\x98\\x9d\\x9b\\x29\\x51\\x37\\x37\\x86\\x72\\xc7\\xff\\x0b\\xa7\\x05\\x45\\x84\\x50\\x7f\\x14\\x79\\xcf\\xe0\\x4d\\x53\\xcd\\xe6\\x34\\x7d\\x6c\\x1a\\xe8\\xf1\\xb6\\x38\\xf2\\xf6\\x47\\x3d\\xb4\\x19\\x9c\\x65\\xca\\xf0\\x16\\xe2\\x2c\\x10\\xe9\\xc0\\xbe\\xac\\xff\\x70\\xa0\\xe7\\x3a\\xaf\\x98\\x95\\xa5\\x64\\x10\\x61\\x59\\xc6\\xe8\\xce\\x51\\x9f\\xf5\\xfc\\xaf\\x2c\\x1a\\xd5\\x97\\xfa\\x74\\x86\\x9b\\x63\\xae\\x65\\xbe\\x98\\x11\\xeb\\xe5\\xb7\\x2a\\xa7\\x93\\x87\\x2b\\xdc\\xcf\\x37\\x2e\\x9f\\xc3\\xdf\\x04\\x9d\\x7d\\xe7\\xd9\\xe7\\xb7\\x9e\\xe7\\x9c\\x9f\\x05\\x3a\\x7d\\x37\\x96\\xaf\\xbc\\x48\\x74\\xb3\\x13\\xbd\\xeb\\xad\\xea\\x70\\xf3\\x51\\xe6\\xc8\\xe5\\x5c\\xf5\\x0a\\xfd\\xc6\\x94\\xcf\\x24\\x67\\x72\\x7b\\x92\\x96\\x3a\\xd0\\x5e\\x00\\x4f\\x7e\\xc6\\x48\\x23\\x9b\\x72\\x2a\\x5e\\x82\\x1e\\x69\\x69\\x6c\\x49\\xd1\\x9a\\xcd\\x39\\x32\\x4b\\x93\\x62\\xb3\\x11\\xa6\\x43\\xe3\\x45\\x31\\x05\\x5c\\x06\\x77\\x77\\x30\\x5c\\xc5\\xd1\\x70\\x8e\\xfa\\x86\\x86\\xe0\\xf0\\xfe\\x7e\\x0d\\xf9\\xd4\\xd6\\x92\\xe4\\x89\\x01\\x53\\x8e\\xc4\\xb6\\xa7\\x73\\xe3\\x39\\x5a\\xaf\\xd5\\x94\\xcb\\x36\\x1f\\x52\\x71\\xe2\\xf4\\x7b\\xe5\\xe3\\x96\\xf8\\x03\\x83\\x88\\x8c\\xa5\\x81\\x12\\x1f\\x57\\xcb\\x3d\\xe2\\x37\\x2d\\xf0\\xe7\\x2d\\x99\\x4a\\xfc\\xdc\\xdc\\x23\\xa9\\xe4\\xff\\x83\\xc5\\x64\\xac\\x1f\\x1a\\xa8\\xe7\\xb5\\xa3\\xb6\\x86\\xb2\\xe7\\xb7\\x46\\x8a\\x80\\xd9\\x01\\x34\\xf7\\xb7\\x92\\x24\\x94\\x21\\xb3\\xb6\\x22\\x94\\xb3\\x6d\\x5a\\xc6\\x20\\x25\\x09\\x43\\x01\\x57\\xf5\\x42\\x69\\xeb\\xc4\\x0a\\x76\\x61\\xbd\\xf3\\x64\\xa7\\xd1\\x53\\x62\\x28\\x20\\x2f\\xf8\\x1b\\xb1\\x41\\x78\\xb6\\x7a\\xc0\\x97\\x01\\x6d\\xc7\\x5d\\xf9\\x28\\x35\\x6f\\x3b\\x8d\\xd4\\x2e\\x96\\x16\\x9f\\x32\\x44\\x3d\\x55\\x83\\x05\\xea\\x99\\x24\\xe5\\xd1\\x47\\xfd\\x5c\\x0a\\x16\\x48\\x67\\x3c\\xff\\xce\\x3c\\x92\\xe7\\xe9\\xac\\x64\\xbc\\xc2\\x2c\\x78\\xb8\\xd7\\x23\\xb8\\x20\\x08\\x1d\\xe2\\xea\\x10\\x12\\x5e\\x0e\\x03\\x1e\\xa2\\x99\\xea\\xc6\\x04\\x6f\\xb4\\xc8\\x4e\\xaf\\xf0\\x1a\\x0b\\xd0\\xc4\\x25\\xe2\\x30\\x8c\\x0a\\x85\\x26\\x2a\\xcc\\x7f\\x05\\x3a\\xbb\\x52\\x74\\xb0\\xea\\xce\\xa2\\x35\\xc7\\x16\\xac\\xbe\\x69\\x47\\x43\\x9c\\xeb\\x9a\\xdd\\x8d\\xfb\\x78\\x71\\x8a\\x3f\\x6f\\x6d\\xbc\\x8d\\xbb\\xbd\\x01\\xdb\\x5b\\x8c\\x9a\\xad\\x35\\x93\\x5e\\x19\\x90\\xf9\\x86\\x90\\x36\\x9f\\x27\\x24\\xec\\x80\\x4c\\xf8\\x1b\\x60\\xe3\\xce\\x66\\x5f\\xa8\\x45\\xd5\\x87\\xaa\\x9d\\x78\\x60\\xed\\x9c\\x6f\\xb8\\x04\\x74\\x32\\xa0\\x7e\\xfb\\x68\\x19\\xb1\\x08\\x9c\\x30\\x33\\x8c\\xc7\\x1b\\xb3\\x88\\xfb\\x44\\xdd\\xcf\\x27\\x52\\x4b\\xbb\\x39\\x7e\\xfe\\xa8\\xb0\\xb6\\x74\\xf4\\x5f\\x96\\x2e\\x79\\x8d\\xb3\\xa0\\x96\\x34\\x21\\xe9\\xb0\\x99\\x1c\\xc6\\x04\\x4e\\x9a\\x18\\xc3\\xd6\\x88\\x8e\\xe5\\xff\\x35\\xb1\\x50\\x05\\xe4\\x57\\x09\\x6d\\x2d\\xfa\\x0d\\xe2\\x71\\xdc\\x67\\x72\\x54\\x07\\xe7\\x2b\\xcf\\xb1\\x17\\x0d\\x4d\\x0f\\xe6\\xef\\x8a\\x67\\x4c\\x78\\xaa\\x09\\x1e\\x46\\x1e\\xb4\\x77\\xef\\x12\\x6c\\x01\\xcb\\x00\\x8f\\x37\\x81\\x9f\\x0a\\xc3\\x4d\\xb2\\x85\\x67\\x80\\xf9\\x19\\x82\\x30\\xca\\xe8\\x63\\x05\\xb8\\xad\\xa8\\x5e\\xa4\\xf4\\x0f\\x16\\x47\\x41\\x92\\x45\\x16\\x57\\xd3\\xff\\x8c\\xa4\\x6f\\x25\\x41\\xc6\\x5b\\x95\\x26\\x4b\\x7c\\x0b\\xe7\\xdb\\xdc\\xbf\\xfc\\x4c\\xc1\\x77\\x3b\\xfe\\x1f\\xbe\\xbe\\x49\\x40\\x08\\xee\\x96\\xff\\xe0\\x5b\\x75\\x61\\x3f\\x5a\\x21\\x3a\\xb1\\x2f\\x29\\xed\\x20\\xa7\\x0f\\x8f\\xb9\\xb0\\x23\\x59\\xb2\\xe1\\xfb\\xb9\\xad\\x38\\xf8\\xa3\\x2f\\x4e\\x09\\x13\\x77\\x42\\xc4\\x06\\x91\\x6b\\x40\\x1a\\x43\\x52\\x0c\\x39\\x58\\x96\\x25\\x25\\x9a\\xa3\\xc8\\xe3\\x72\\x3a\\x99\\x0c\\x4d\\x4c\\xc0\\x75\\x8a\\xdc\\xc4\\x86\\x0e\\xb9\\x04\\x2b\\x1e\\x3b\\x11\\xfd\\xa6\\x34\\x69\\x4e\\xc3\\x16\\xd6\\x77\\xbb\\xdc\\xd6\\x39\\x2e\\xa1\\x8b\\xe8\\xef\\x94\\x8b\\x1d\\xf4\\x42\\x52\\xaf\\x9e\\xa8\\xbe\\xed\\xd2\\xbc\\xb4\\x5f\\xd5\\x7c\\x81\\x81\\x62\\xe8\\x55\\xb4\\xa6\\xf9\\xf1\\x6b\\x4f\\x31\\x08\\x0c\\x6a\\xc1\\x77\\x69\\xa6\\xfb\\x76\\xe2\\x09\\xbd\\xfa\\x66\\x12\\xe3\\x11\\xdc\\x97\\xd4\\x43\\x26\\xa9\\x6f\\xbb\\x6f\\x4a\\xfb\\xaa\\x68\\x51\\x0a\\xfe\\xf7\\x69\\xf3\\xee\\x3b\\x9a\\x40\\xe8\\x21\\xb7\\x90\\xe8\\xfb\\x86\\xd9\\x78\\xe8\\x5b\\x2b\\x45\\x94\\xf6\\x7c\\xab\\x8b\\x16\\xb6\\x0e\\xfb\\xdb\\xc3\\xd8\\x21\\xe0\\x93\\x46\\xe0\\x77\\x06\\xed\\x29\\x82\\x8a\\x25\\x68\\x8b\\x0d\\x11\\xfd\\x59\\x42\\x0a\\xb0\\x71\\x84\\x94\\xca\\xd0\\x86\\xaf\\x7f\\x39\\xf5\\x23\\x27\\x45\\x06\\x14\\x4c\\x97\\x79\\x3f\\x3a\\x93\\x89\\xd8\\xcf\\xac\\x03\\xf6\\xf8\\x63\\x3f\\x9b\\x01\\x51\\x0a\\xa4\\x7a\\x94\\x27\\x9e\\xf8\\x4c\\x2b\\xff\\x56\\x01\\x90\\x43\\x0b\\x83\\xef\\x93\\x2c\\x03\\x15\\x9c\\x2a\\x73\\x7f\\x74\\x36\\x33\\xf5\\x80\\xb5\\xb9\\x89\\xc7\\xb3\\x6d\\x6f\\x3a\\x06\\x6a\\x4c\\x44\\x16\\xdf\\xf6\\x1a\\xbf\\x0e\\x04\\xfc\\x35\\xcf\\x0c\\xa7\\x77\\xfc\\xf0\\x5a\\x7f\\x79\\x96\\xc6\\x7c\\x5d\\xfe\\x4e\\x83\\xc8\\x7e\\xf0\\x5a\\x76\\xb8\\x50\\x63\\x2d\\xc4\\x6f\\x7c\\xc3\\xc2\\x58\\xd5\\x0d\\xdf\\xc4\\xa7\\xe3\\x77\\x87\\x9c\\x8f\\xa3\\xea\\x72\\x0c\\xa4\\x3d\\x27\\x75\\x21\\x19\\xad\\x82\\x2a\\x80\\xd7\\x2e\\x3f\\x5a\\x5b\\x04\\x63\\xcd\\x82\\x9a\\x40\\xba\\xe8\\xc7\\xb4\\x62\\x27\\xc2\\x60\\x38\\x4d\\xe5\\x6a\\x5d\\x3b\\xe4\\xb0\\xb6\\xb1\\x5c\\x34\\x26\\x8a\\x79\\xf0\\x21\\x95\\xe4\\x79\\xf4\\xfb\\x8b\\x94\\x32\\xdb\\x32\\x2c\\xc7\\x82\\xec\\xe7\\x56\\x71\\xf7\\xb3\\x10\\xcb\\xeb\\x60\\x3a\\xfe\\x87\\x31\\xf1\\xdf\\xc6\\x17\\x49\\x1f\\x97\\xe7\\x5e\\x28\\xb9\\x3e\\xbf\\xf8\\xbf\\x97\\xed\\xaf\\x32\\x4e\\xf2\\x3e\\x59\\xac\\x9f\\xe1\\xdc\\xb2\\x1d\\xf6\\xae\\xdf\\xa9\\xd6\\x79\\xc8\\xf8\\xbc\\x75\\x67\\xbd\\x52\\xf0\\xe8\\xe3\\xb9\\xbb\\x70\\x51\\x37\\x53\\x6a\\xf3\\xe0\\xc7\\xd5\\x63\\x7c\\x34\\xa2\\x91\\xf9\\x4b\\x7c\\xef\\xa2\\xd3\\x96\\x31\\x0b\\x9a\\x12\\x25\\x5b\\x96\\x2c\\x8a\\x2a\\xa9\\xea\\xcc\\x71\\x31\\xa2\\xba\\x15\\xad\\x1a\\x33\\x73\\xcc\\xa3\\xe6\\x68\\xaa\\xbd\\xaa\\x13\\x9c\\xca\\xb1\\x81\\xba\\xa3\\x03\\xd1\\xe6\\x42\\x2e\\x37\\xc6\\x7e\\xf2\\xf5\\x8f\\x7b\\xe9\\x45\\x6f\\x9d\\xfc\\xfb\\xa4\\xf5\\xc9\\x03\\x07\\x84\\x57\\x4a\\x8c\\x02\\x3e\\x3b\\xe8\\x90\\x07\\x60\\x7c\\xbd\\x8f\\x22\\xb7\\xa2\\xfc\\x00\\xfb\\x5a\\xf4\\x20\\x3e\\xfd\\x0c\\x99\\xd8\\xd0\\x7a\\xd3\\xda\\xc5\\x0c\\xec\\x1c\\xfe\\x1b\\xdc\\x2f\\x76\\x7f\\xa1\\xdd\\x55\\x70\\x25\\x41\\xd6\\x86\\x35\\xb3\\xc7\\x0a\\xbd\\x03\\x22\\xf1\\x0b\\x23\\x7d\\x4b\\x74\\x5d\\x74\\xd9\\xbc\\x67\\x63\\x8f\\x02\\xd1\\x93\\x7d\\xbe\\xe4\\x85\\xe2\\x8a\\x65\\x2d\\xdf\\x38\\xe6\\x08\\x10\\xaf\\x1e\\x02\\x18\\xf2\\x28\\xa2\\x8f\\x8a\\x0c\\x86\\xa8\\x58\\x10\\xcd\\x24\\xc0\\x7c\\x0c\\xcd\\xc7\\x6c\\x86\\x98\\xa4\\x45\\x93\\x44\\x10\\x3f\\x7d\\x6e\\xb6\\xae\\xfc\\x50\\x55\\xf1\\x9c\\x8a\\xe7\\x5f\\x2f\\xf9\\xec\\xc8\\x95\\x23\\x6d\\xe1\\x7f\\x1c\\x1d\\x78\\x90\\x54\\x9f\\x65\\x54\\xb2\\x44\\x4f\\x7f\\xfb\\x3c\\xe2\\x62\\xe5\\x24\\xf8\\x18\\xec\\x0f\\x73\\xaa\\x18\\xc4\\x53\\xff\\x24\\x97\\xbe\\x55\\x36\\x05\\xf9\\x19\\x23\\xbf\\x6a\\xbf\\x7e\\xf2\\xab\\x93\\xed\\x41\\x1f\\x52\\x3f\\xa6\\x83\\xce\\x42\\xfb\\xf7\\xc7\\xf8\\xe5\\xe5\\xdf\\x40\\xf0\\x69\\xd8\\xe4\\x87\\x34\\x30\\x3e\\xc9\\x44\\xdc\\xfd\\x54\\xdb\\x61\\xb2\\x5f\\xf9\\xeb\\xd7\\x7d\\xd3\\x7b\\x42\\xa4\\x2f\\xe8\\x43\\x18\\xc5\\x15\\x7c\\xe1\\xcb\\x65\\x7e\\x69\\x51\\xef\\x59\\x83\\x3f\\x64\\x9d\\x34\\x48\\xf5\\xbf\\x6a\\x5e\\xda\\xcf\\xc0\\x14\\x7e\\xa5\\x47\\x37\\xe2\\xf3\\xb2\\x61\\x6e\\x13\\x9d\\x67\\x99\\xa4\\xeb\\xcd\\xd8\\x6c\\x3b\\xd4\\x44\\x1c\\xd3\\x3b\\xec\\x61\\x43\\x41\\xe3\\xd6\\xbd\\xd6\\xc7\\x3e\\x19\\xf3\\x83\\xcf\\x14\\x23\\xfa\\x1c\\x4f\\xc0\\xa2\\xfc\\xf2\\x8b\\x24\\x5e\\x73\\xeb\\x4a\\x51\\xf1\\x07\\x1d\\x71\\x5d\\xdb\\x49\\x19\\x38\\x64\\x99\\x6b\\x3e\\xd4\\xd1\\xb9\\xf6\\xe2\\x47\\x61\\xfa\\x0f\\xfb\\xdd\\x38\\x60\\x8c\\xe2\\x71\\xa9\\x5b\\x9d\\x94\\xaa\\xc8\\xed\\xea\\xcc\\xd7\\x0d\\x02\\x89\\xd4\\x89\\xac\\x6d\\x63\\xb9\\x3b\\x5a\\x34\\xe7\\x20\\x04\\x50\\x8e\\x7c\\xb6\\xa2\\x7a\\xec\\xb8\\x49\\x43\\x4c\\x98\\xd9\\xf2\\x78\\x84\\x1c\\x24\\xe0\\x1d\\xc3\\xa7\\x01\\x39\\x46\\x2f\\x25\\x06\\x8d\\x7c\\xbd\\x2e\\x83\\x8d\\xf6\\xe2\\xa1\\x8a\\x1a\\x24\\xbe\\x9f\\x1f\\x9c\\xcc\\x4a\\xd6\\x09\\xfc\\xb9\\x5d\\xab\\x73\\x86\\x7b\\x0e\\xa8\\xf7\\x00\\x1a\\xcb\\xdb\\xee\\xa1\\xdb\\x4c\\x8b\\x7b\\x95\\xe4\\x28\\xa9\\xa6\\xf6\\xf3\\x56\\x8f\\x8d\\xde\\x3a\\xdc\\x0f\\x78\\x3b\\x65\\xec\\x36\\xf4\\x0a\\xa0\\xec\\x05\\xc8\\xc2\\x95\\xa4\\xb3\\x5f\\xce\\x9d\\x06\\xf6\\x1d\\x8c\\xee\\x57\\x5f\\xeb\\x87\\xac\\xa0\\xcb\\xc4\\xc1\\x09\\xea\\x05\\x60\\x2b\\x17\\xab\\x33\\xdb\\x77\\x57\\xae\\xf8\\x94\\x60\\x03\\xe6\\xc8\\xb9\\xef\\xbc\\x11\\x81\\x75\\x16\\xe3\\x2c\\x77\\x1d\\x12\\x56\\x01\\x81\\x69\\x6d\\xda\\xb4\\xc2\\x15\\x42\\x59\\xe5\\xcf\\x66\\x9a\\x9f\\xff\\x1a\\x6a\\x98\\x94\\x2a\\xbf\\xbd\\xc6\\x9c\\xc1\\xfe\\x22\\xaa\\x19\\xdb\\x71\\xc8\\xa2\\xfc\\x7c\\x4f\\x33\\x5c\\x78\\xc1\\xb8\\x40\\xc1\\x4a\\x31\\x33\\x5d\\xa5\\xb6\\x07\\xcd\\x4b\\x66\\xb0\\x17\\x80\\x61\\x07\\xa0\\xb3\\xbe\\xed\\x19\\xbc\\x4b\\xb3\\x5a\\x16\\xd1\\x8e\\x41\\x6d\\xff\\x41\\xe6\\xf2\\x8f\\xca\\xf8\\x09\\x4e\\x94\\xca\\x1b\\xda\\x2d\\xe1\\xb4\\xd4\\x2c\\x03\\xda\\x2e\\x80\\x21\\x5f\\x1b\\x76\\x4e\\xca\\x04\\x70\\x4b\\x0b\\x15\\xa3\\x64\\x7f\\x7b\\x2e\\xba\\xf4\\x2a\\xed\\x47\\x6b\\x10\\xa5\\xd3\\x7a\\x28\\x9d\\x60\\x20\\xa5\\x19\\x87\\x30\\x07\\x4b\\xb5\\xf1\\x97\\x4c\\x9a\\xd2\\x88\\xe7\\x25\\x39\\x9c\\xba\\x78\\xa8\\x03\\x44\\x64\\x43\\x4c\\xf3\\xe8\\x84\\x60\\x92\\x48\\x4a\\xce\\x22\\x0d\\x83\\xa2\\xa1\\x42\\xfe\\x56\\x00\\x2d\\xad\\x0b\\x73\\x1b\\xc9\\x2c\\xc3\\x08\\x47\\xee\\x40\\x35\\x50\\x2a\\xfe\\x52\\xef\\x5c\\xb3\\xda\\xd5\\x9f\\x55\\x6c\\x5f\\xb9\\x74\\x76\\x0d\\xf0\\xcd\\xea\\xbe\\x24\\x59\\x59\\xf9\\x31\\x24\\x98\\xec\\x8e\\x6b\\xd2\\x57\\xc7\\xaf\\x99\\xb4\\x86\\x56\\xed\\x4a\\xa6\\x77\\xb5\\x5a\\x0f\\x5d\\x4c\\xfb\\x7d\\x46\\xfe\\xd2\\x09\\x50\\x74\\xc3\\xd2\\x9f\\x48\\xbb\\x7f\\x02\\xa0\\x4f\\x98\\x93\\x44\\xf3\\x07\\x80\\x0a\\x1e\\x53\\x3f\\xea\\x4d\\x8e\\x55\\xdd\\x83\\x08\\x79\\x35\\x7e\\x52\\x86\\x34\\xe8\\xb2\\xd2\\x2b\\xd8\\x56\\xdf\\xe4\\x5a\\x53\\xbb\\x8e\\xbd\\x0a\\xf3\\x22\\x50\\x2d\\x81\\x00\\x79\\x62\\x3d\\xa3\\x4f\\xc9\\x73\\xf5\\xa9\\x08\\x99\\x00\\xa4\\x25\\xa5\\x78\\x6b\\x89\\xa6\\x1f\\xc5\\x3c\\xf7\\xd9\\xdf\\xfa\\x40\\xca\\x2a\\x20\\x53\\x24\\xb6\\x03\\x00\\x4f\\x9b\\x18\\xf0\\x0c\\x36\\xcc\\xfe\\xf4\\x28\\xa5\\x1e\\xf4\\xb5\\x5f\\x6d\\x1b\\xd2\\xf6\\x90\\xa5\\x6d\\x4e\\x7c\\x09\\xe8\\x17\\xda\\x4a\\xf6\\xf7\\xdb\\x46\\x5e\\x64\\xda\\x5b\\xb5\\xda\\xbc\\x88\\xd3\\xb0\\x0c\\x02\\x4c\\xd9\\x7a\\xde\\x31\\x29\\x15\\xd6\\x8e\\xcb\\x04\\x19\\xdc\\x1a\\x60\\x2c\\x11\\x83\\xc2\\xae\\x09\\x99\\xd0\\x3b\\x21\\x15\\x64\\xb1\\xeb\\x80\\x29\\x38\\x77\\x52\\x7a\\xdb\\xd5\\xbf\\x4e\\x06\\xe3\\x02\\x67\\x52\\xde\\xef\\xaa\\x86\\x37\\x38\\x55\\x6e\\xaa\\x49\\xf3\\x8b\\x80\\x25\\x3d\\xa5\\xe5\\x91\\xda\\x19\\x9d\\x91\\x30\\x68\\x12\\xaa\\x3d\\x49\\x76\\x9c\\x32\\xc3\\xc9\\x36\\xde\\xc3\\xf0\\x4f\\x46\\x59\\xc5\\x60\\x25\\x41\\x85\\xfa\\xfb\\xa3\\x92\\x04\\x2f\\xc7\\xaa\\xe4\\x3b\\x60\\x36\\x3d\\xdd\\x02\\x88\\xc8\\x8a\\xf3\\x52\\xfd\\x5d\\x79\\xd4\\xa3\\x68\\x4f\\x4a\\xd3\\x5f\\xc0\\x1a\\x32\\x2b\\x66\\xf0\\x64\\xd8\\x49\\x32\\x4b\\x36\\x85\\xf2\\x48\\x79\\x41\\x18\\x49\\x39\\xec\\x49\\x55\\xe3\\x15\\xa8\\x8f\\xbf\\x94\\x24\\x7a\\x78\\x26\\x0d\\xd7\\xc9\\x76\\xe8\\xad\\x89\\x96\\x3e\\xd9\\xba\\xf2\\xba\\xe4\\x55\\x58\\x4f\\x92\\x3d\\x58\\x20\\x5c\\xcd\\xab\\xb3\\xf9\\x82\\xac\\x6e\\x3c\\x57\\x3e\\x8b\\xf2\\x49\\xf8\\x61\\xb2\\xb4\\x02\\x7b\\x88\\x74\\x93\\xad\\x9c\\x15\\x87\\xaa\\x4c\\x1e\\x05\\x3c\\xdb\\x5c\\x12\\x5a\\xa1\\x70\\x73\\x80\\xcd\\x23\\x98\\x05\\xf8\\xa8\\x56\\x10\\x11\\x0e\\xd0\\x92\\x68\\x44\\x95\\x40\\x88\\xed\\x04\\xa6\\x31\\x51\\x80\\xd6\\x09\\x30\\x23\\xfa\\x69\\xbc\\x98\\xe4\\xc5\\xdd\\xdf\\xe8\\x48\\x7c\\xdd\\xef\\x4c\\x7c\\xda\\xdf\\x91\\xd0\\x48\\xdb\\x4f\\xea\\xc4\\x76\\xd1\\x56\\x82\\x07\\x11\\xee\\xce\\xda\\x4e\\x5a\\x07\\x42\\x37\\x7b\\x98\\x7e\\x28\\x12\\xfc\\x6a\\x47\\x7e\\x7e\\x37\\xfa\\xe6\\xc6\\x10\\xf9\\xa1\\x24\\xbc\\xee\\x56\\xd3\\xcb\\xc1\\xb1\\xaa\\x5d\\xc1\\x81\\x86\\x1f\\xc5\\x3f\\x0e\\xec\\x68\\x9c\\xe0\\x0e\\xd2\\xa0\\x8e\\xce\\x25\\x2b\\x6e\\xbd\\xd9\\xee\\xde\\xfb\\xc1\\xf3\\x15\\x89\\x0d\\x95\\x9f\\x41\\x1e\\x73\\x4d\\xfa\\xed\\x43\\x4a\\xbc\\x01\\xce\\xc0\\x6e\\xa0\\x72\\x02\\x7e\\x92\\x9f\\xc0\\x84\\xab\\x04\\x46\\x43\\x4d\\x00\\xd5\\xd0\\x88\\xad\\x08\\x75\\xda\\x06\\x51\\x3e\\xe6\\x14\\xf0\\xd2\\x3c\\xbd\\xfa\\xd9\\x35\\x3f\\xff\\xa9\\xbb\\x85\\xde\\x53\\xba\\x22\\x7f\\x17\\x99\\x0e\\xe5\\x33\\xff\\x11\\x7c\\xee\\x66\\xb4\\x9f\\xf7\\xea\\xef\\x6d\\x91\\xd1\\x2f\\x36\\x85\\xfb\\xc6\\x97\\x65\\x6f\\xbf\\x0e\\x70\\x3e\\x9e\\x59\\xe0\\x51\\xd1\\x04\\x71\\x17\\xdd\\x4d\\x22\\x9b\\x47\\x69\\x1a\\x2b\\xc6\\x2b\\xcd\\x36\\xd0\\x1d\\x83\\x09\\xde\\x3c\\x8e\\xe2\\x1d\\x41\\xaa\\xa3\\xdc\\x6c\\x84\\x4b\\x5c\\x0c\\x44\\x5c\\xb5\\xc3\\x75\\x8d\\x57\\x8a\\x1e\\x75\\x18\\x43\\xc3\\x58\\xab\\x92\\x16\\x31\\x31\\x44\\x31\\x1f\\xc5\\x47\\x20\\xab\\xbb\\x67\\x6a\\x0d\\x21\\xca\\xcb\\x36\\x10\\x5d\\x99\\x66\\xfd\\x38\\x02\\xe7\\x1f\\x87\\x6b\\x23\\xfc\\x76\\x23\\x05\\x12\\xfb\\x9c\\x92\\xf3\\x38\\x87\\x2b\\x16\\xdb\\xe0\\xee\\x01\\xb3\\xab\\x2b\\x6d\\x98\\x45\\x10\\x42\\xe7\\x10\\xf6\\xa8\\xa2\\x2b\\x9f\\xb6\\xda\\xf6\\x2c\\xbc\\x13\\xf4\\x46\\x12\\x4d\\x5b\\x23\\xea\\x75\\x84\\x94\\x49\\x04\\xdb\\x86\\x88\\x29\\x4c\\x62\\xa6\\x68\\x11\\x65\\xe7\\x37\\x14\\x9f\\x27\\x59\\xa9\\x41\\x50\\xcf\\x99\\xe7\\xb6\\xb3\\x27\\xdb\\xee\\xb5\\x17\\x73\\x5b\\x67\\x85\\x9d\\xec\\x95\\xc9\\x62\\xec\\xdc\\x39\\x5d\\x67\\x04\\x89\\x19\\x8a\\xa6\\xc4\\x1e\\x4b\\x71\\x99\\x53\\xe3\\xf2\\x73\\x64\\xb6\\x7f\\x08\\xad\\x8e\\x89\\xb3\\x7b\\x09\\x8b\\x83\\x78\\x9a\\x87\\xee\\x21\\x53\\x6d\\x63\\x08\\xb9\\x0f\\x1a\\xb1\\xf1\\x71\\x81\\x88\\xa4\\x09\\xc2\\xf5\\xac\\x43\\x57\\x5a\\x8a\\xe5\\x97\\x85\\x43\\x23\\x60\\x6a\\xa0\\x7d\\x9e\\xb8\\xbd\\x47\\x71\\xad\\x74\\xa1\\x81\\x65\\x47\\xd7\\x24\\xf6\\x31\\xa4\\x75\\xea\\x44\\x9c\\xce\\x9c\\xad\\xab\\xa7\\x39\\x8c\\xfc\\xb2\\x50\\xd7\\xc2\\x59\\x07\\xdc\\x71\\x60\\x30\\xfe\\xc3\\xfa\\xdd\\x33\\xa2\\x11\\xe0\\xc6\\xc7\\x3c\\x27\\x5e\\x23\\x61\\xd9\\x7f\\xab\\x81\\x6a\\x7e\\xc6\\xef\\x8a\\x51\\xa5\\x03\\x01\\x99\\x2c\\x0c\\x6f\\x34\\x71\\xf9\\xa3\\x5e\\x55\\x08\\x55\\x5c\\x73\\x89\\x2c\\xf5\\xfd\\xba\\x96\\xea\\x01\\xee\\x4b\\xa5\\xac\\x68\\x31\\xad\\x40\\xaa\\x8a\\x1b\\x04\\x01\\xdc\\xed\\x1e\\xb6\\x52\\xe8\\x86\\x3b\\x0d\\x0c\\x46\\xce\\x28\\x8f\\x90\\xdd\\x0c\\x7f\\x2f\\xd1\\x7f\\x29\\xc4\\x15\\x56\\xe6\\xac\\x0c\\x58\\xce\\x2e\\xb5\\x11\\x2b\\x9e\\xf2\\x17\\x30\\x10\\xba\\x51\\xa5\\x47\\x32\\x4d\\xda\\x31\\x78\\xbd\\x67\\x1c\\xae\\x0b\\x09\\x33\\xd6\\x34\\x8b\\x9a\\x4e\\xd1\\x23\\x24\\xb2\\x9a\\xed\\x59\\xf4\\x94\\x94\\x89\\xd3\\x5e\\x8a\\x1a\\x21\\x50\\xd4\\x11\\x64\\xd1\\x51\\x52\\xf4\\x5a\\x0d\\x2e\\x12\\xa0\\xd6\\x92\\xf0\\x8a\\x02\\x51\\xa9\\xc1\\x44\\xb5\\x54\\x69\\x24\\x40\\xae\\x25\\xe0\\xe5\\x05\\xa2\\x4a\\x8d\\x0d\\xb7\\x6f\\xe4\\x69\\x80\\xfd\\x86\\x96\\x19\\xf9\\x56\\xbe\\x46\\xa9\\xb8\\x51\\x27\\x36\\x8d\\xb3\\xe5\\x63\\xf4\\xc9\\x18\\x93\\xbd\\x30\\x61\\x98\\xe7\\xb1\\x6a\\x4b\\x4a\\xa8\\x87\\x74\\x1d\\x08\\x0b\\xc0\\x40\\xe8\\xcd\\xd8\\xe4\\x73\\xce\\x30\\x10\\x0b\\xa0\\x77\\xda\\x0b\\xf9\\x24\\x8d\\x8a\\xe5\\xf9\\xa3\\x18\\xa8\\x61\\x76\\xba\\xea\\x9a\\x18\\x2a\\x4b\\x48\\xa9\\x8c\\x23\\x62\\x26\\x36\\x6f\\xdc\\xab\\xf7\\x63\\x8b\\x4b\\x60\\xb5\\x3e\\x70\\x87\\xd3\\x1e\\x22\\x48\\x5d\\x61\\x82\\x6c\\x30\\x13\\xa0\\x61\\xaf\\xb0\\xb6\\xba\\x23\\xac\\x49\\x33\\x4c\\x5f\\x78\\xef\\xfc\\xc8\\x94\\x80\\x6f\\x83\\xe0\\x64\\x08\\x1b\\x69\\x6d\\x59\\xca\\x55\\x55\\x64\\x5a\\x28\\x56\\x95\\xda\\x16\\xa2\\x6d\\xaa\\xe2\\xe9\\xdf\\x40\\xe1\\x6f\\x5b\\xbe\\x06\\x68\\xe3\\x68\\x5e\\x28\\x44\\x0a\\x11\\xd9\\xa6\\x51\\xa2\\x56\\x85\\x0d\\xa1\\x42\\x8d\\x75\\xa3\\x22\\x83\\x3e\\x24\\xc9\\xc7\\x4e\\x3d\\xd2\\xef\\xfa\\x0e\\xd1\\x6f\\xf6\\x23\\xbf\\x7e\\x44\\x68\\x5a\\xe6\\xa3\\xd0\\x3d\\x83\\x3d\\xaf\\x35\\x9e\\x9a\\x9e\\x85\\x3a\\x78\\xdc\\xb8\\x0f\\x04\\x5f\\x72\\x3a\\x5b\\x76\\x10\\xdf\\xfb\\x26\\xcf\\x79\\xe6\\x67\\xcf\\xa9\\x91\\x58\\x53\\x89\\x29\\x45\\xe0\\x1e\\x23\\x83\\x3d\\xe2\\x92\\x84\\xe1\\x22\\x6d\\x2d\\x55\\xa1\\xc7\\xc5\\xec\\xe1\\x7d\\xa8\\xac\\x44\\x6a\\x01\\x38\\x25\\x80\\xcc\\xbf\\x45\\x42\\xf7\\x23\\x23\\xde\\xd3\\xc7\\x5b\\x0a\\x46\\x28\\x9c\\xce\\x95\\xb0\\x9d\\x43\\x81\\x5d\\x71\\x1a\\x25\\xdf\\xe4\\xe1\\x09\\x9c\\xd5\\xde\\xf2\\x2c\\x34\\x23\\x6e\\xb9\\x1f\\xc5\\xb5\\x4d\\xa0\\x55\\x21\\x64\\x14\\xa0\\x1c\\x80\\x54\\xb7\\x35\\x69\\xdd\\xe4\\xa9\\x0e\\x47\\xaa\\x1a\\x4c\\x3c\\x49\\x57\\x3c\\xae\\x19\\x4d\\x46\\xf2\\xfe\\xfe\\x49\\x0c\\x8a\\x03\\xc7\\x5b\\xdf\\xa8\\x8e\\x2b\\x2e\\xf5\\xba\\x6f\\xb8\\x67\\xd4\\xbf\\xf6\\x05\\x87\\x51\\xb4\\x28\\xd5\\x05\\xaa\\x7d\\xf6\\x2b\\xc2\\x18\\x7b\\x11\\xa8\\x33\\xe0\\xe2\\x61\\x6a\\x98\\x48\\xd7\\x8f\\x12\\xf4\\x5a\\x7c\\x1c\\x86\\x6c\\x3b\\x36\\x1f\\xb8\\x1d\\xc7\\x16\\x50\\x83\\x90\\xa6\\xfa\\x48\\x54\\x99\\xac\\xd0\\xa2\\x22\\xb1\\x2d\\x88\\x77\\x11\\xaa\\xb7\\x9a\\x05\\x5e\\xf0\\xff\\xd9\\xd0\\xff\\x2b\\x05\\x3d\\x88\\x54\\xa4\\x97\\xf8\\x7f\\xec\\x04\\xfd\\xe0\\x33\\x9b\\x93\\x53\\x2e\\x18\\xce\\xc1\\x53\\x8e\\x6f\\x0e\\xa5\\x24\\x1f\\x7f\\x7a\\xd3\\x96\\x27\\xc4\\x61\\x60\\xfd\\xae\\xd9\\x1d\\x71\\x90\\x8c\\x67\\x1c\\xe6\\x89\\x5c\\x60\\x9f\\x81\\xc1\\xaf\\x78\\xd5\\xc1\\x1a\\x9e\\x73\\x6c\\xb0\\xa2\\x12\\xa4\\x05\\x60\\x2c\\x80\\x54\\xbd\\x56\\xd7\\xaf\\x31\\x94\\x20\\x94\\x79\\x49\\xfe\\x62\\xf1\\x00\\x41\\x2e\\xc5\\x05\\x5e\\xae\\x49\\x46\\xf3\\xac\\xd4\\xa7\\xb1\\x18\\x2e\\xac\\xdf\\xfa\\xcc\\x3f\\x7e\\xb0\\xf4\\x2e\\xbf\\xc2\\x5f\\x54\\xb0\\x7a\\xff\\x8a\\x2f\\xa6\\x45\\xee\\xef\\xc0\\x7b\\x6f\\xe9\\x4d\\x49\\x5e\\x39\\x92\\x49\\xa9\\x5c\\xbe\\xbc\\x2d\\x99\\xee\\x3d\\x34\\x84\\x4e\\x16\\xbe\\x8d\\x0c\\xff\\x87\\xe2\\x69\\x78\\xf8\\xa6\\xea\\xfb\\xf0\\x8c\\x77\\x18\\x99\\x4f\\x47\\x0d\\xf9\\x09\\xec\\xba\\x08\\x75\\x2c\\x43\\x22\\x37\\x0d\\xff\\x6d\\x61\\x45\\x1e\\x07\\x58\\x06\\x8b\\xcb\\xb1\\x37\\x1e\\xcd\\x0a\\x79\\x28\\x7e\\x32\\xcb\\xd8\\xdd\\x57\\x68\\x50\\x21\\x54\\xb0\\x01\\x33\\x24\\x37\\xe8\\xdc\\x8a\\x7c\\xf4\\xc8\\xdf\\xc2\\x72\\x47\\x97\\x52\\xd3\\xbc\\xff\\xf0\\x4f\\xce\\x6a\\x2c\\x41\\x75\\x87\\x2e\\x3f\\xba\\x14\\x91\\x02\\x53\\x05\\x34\\x01\\x9e\\xdf\\xba\\x5e\\xea\\x7c\\xea\\x8c\\xe5\\x0a\\x06\\x5f\\xcb\\x46\\xe1\\x24\\xac\\x3d\\x67\\x03\\x96\\x2d\\xb8\\x36\\x48\\x78\\x27\\x86\\xea\\x3b\\x5f\\xf5\\x81\\x04\\xa7\\xd6\\x91\\x1f\\xd2\\x7d\\x0b\\x96\\x6c\\xbb\\x03\\x70\\x9c\\x6e\\xdf\\xa3\\x01\\xdc\\x93\\x58\\xe3\\xe5\\x60\\x85\\x76\\x11\\x53\\xe0\\x38\\x3e\\xf3\\x77\\xbf\\x7d\\x94\\x89\\x41\\x7f\\xb2\\xef\\x74\\x81\\x15\\x60\\x70\\x00\\xce\\xda\\x19\\xb3\\xcf\\x12\\xa8\\x3e\\x71\\xe9\\xc3\\x6b\\xb9\\xf1\\x2a\\xdc\\x47\\x9b\\x8e\\x52\\x06\\x2a\\xd5\\x4e\\x76\\x34\\xa0\\xb2\\x75\\xcc\\xd8\\x4e\\xe2\\x25\\xe9\\x75\\x88\\xc3\\x2d\\x0e\\x8b\\x49\\x55\\x29\\xbd\\xc4\\x47\\x99\\xfb\\x3f\\x98\\x2f\\xa9\\x6a\\x39\\xcb\\x28\\xd0\\x8b\\xfc\\x17\\x81\\x46\\xe8\\x88\\x8d\\x96\\xde\\x49\\xde\\x3c\\x81\\xee\\x13\\x95\\x5a\\xd8\\x4f\\x66\\xe2\\x42\\x92\\x06\\x77\\xd0\\x15\\x22\\xb2\\xca\\x97\\xc2\\x25\\x71\\x1c\\xd7\\xc1\\x72\\xb3\\x51\\x9a\\xa2\\x13\\xf9\\x4e\\x77\\x4d\\x03\\x96\\xb9\\xbe\\x2b\\x3f\\x9f\\x15\\xe6\\x06\\x99\\x74\\x9d\\x59\\x1a\\x33\\x2e\\xdd\\x18\\xed\\x93\\xcb\\x0d\\x09\\x82\\x60\\x26\\x0c\\x5d\\x83\\xe4\\xed\\xdc\\x1c\\xd0\\xc1\\x42\\x7f\\x77\\xc8\\x74\\xd4\\x2f\\x7d\\x51\\x07\\x17\\x02\\x67\\xdf\\x62\\xa9\\xe5\\xa7\\xd6\\xd4\\xd5\\xf8\\x0d\\xa9\\xd8\\x84\\x46\\x98\\x3c\\xc5\\x65\\x7c\\x24\\xfe\\x50\\xbb\\xcb\\xeb\\xac\\x18\\xa4\\xd4\\x66\\xda\\xb0\\xb2\\x52\\xf9\\xca\\xe4\\x48\\x91\\xe0\\xcd\\xaf\\x1d\\xfd\\x57\\x28\\x60\\xb5\\xc8\\x9a\\x16\\x0f\\x38\\x78\\xe2\\xb3\\x69\\xfa\\x79\\x38\\x05\\xe4\\x43\\xf2\\x99\\xf1\\x04\\x23\\x4c\\xc8\\x5a\\xf9\\xf8\\xda\\x18\\xb7\\x89\\x3a\\x23\\xcf\\xec\\x7c\\x8d\\xad\\x74\\x28\\x04\\x3e\\x8c\\x7d\\xcb\\x38\\xab\\x58\\x79\\x76\\xee\\x5b\\x4f\\xbf\\xbb\\x3a\\x17\\xe5\\xf9\\xe2\\x7a\\x98\\x15\\xf2\\xaa\\xbd\\xc3\\x0c\\xa5\\x86\\xc5\\x6c\\xaf\\xb4\\x16\\xb9\\x3f\\xce\\xe8\\xe9\\x8d\\x3b\\xdc\\x7a\\xe9\\xd0\\x8d\\x14\\xf4\\x83\\x49\\xe4\\x61\\xf4\\x7f\\xbc\\x4b\\xec\\x22\\x5f\\xc1\\xf0\\x45\\x85\\x28\\xcf\\xa2\\x03\\xeb\\x94\\x60\\xa7\\xd2\\x59\\xe1\\x2d\\x94\\xcb\\xaa\\x47\\x11\\x9b\\x5b\\xbc\\xdd\\x95\\x92\\xbd\\x1d\\xe8\\xdd\\x57\\x11\\x3f\\x91\\x39\\xd1\\xee\\xea\\xfc\\x71\\x65\\xfc\\x2e\\x80\\x11\\x45\\xc2\\xf2\\x66\\x98\\x10\\xa0\\xab\\x27\\x74\\xa0\\x9d\\xc5\\xf5\\x10\\x62\\x3e\\x05\\x26\\x9e\\x52\\x76\\xc2\\x74\\xdc\\x62\\xaf\\x3b\\x4e\\xed\\x3b\\xd0\\x74\\xff\\x37\\xbc\\xfa\\xe7\\x7a\\xdf\\xdc\\x2f\\xeb\\x5e\\x8d\\x66\\x04\\x7a\\xc3\\x57\\x03\\x17\\xa7\\x25\\xfe\\xc7\\x14\\x25\\x2a\\x6b\\xbd\\xb2\\x5e\\xdb\\xf1\\x5c\\x04\\x8f\\x0c\\x46\\x86\\x36\\x50\\x8a\\xcf\\x33\\xbe\\x46\\x22\\x3f\\x4b\\x85\\x7f\\x3a\\x4b\\xfa\\x86\\x5f\\x30\\xe7\\x7f\\xc3\\x23\\x00\\x76\\xfb\\xc6\\x9c\\x34\\xba\\x95\\x64\\xc5\\x11\\x94\\xa3\\xbd\\x34\\x0f\\xdd\\xf0\\x3d\\x18\\x95\\x13\\x8b\\xee\\xa9\\xb9\\xb7\\xeb\\x3a\\x93\\x9f\\xed\\x0a\\x03\\x3e\\xb5\\xce\\xc8\\xf1\\xa2\\x2a\\x54\\x4b\\xfb\\xe7\\x49\\xe9\\xf8\\xa7\\x9c\\xe1\\x70\\xa4\\x8c\\x12\\xf9\\xab\\x03\\x46\\x83\\x21\\x57\\x33\\x8d\\xa3\\xa8\\xab\\xf2\\xfa\\x61\\x88\\x06\\x55\\x11\\xb8\\xb0\\xb6\\xa2\\x55\\xcc\\x10\\xbf\\x82\\xb5\\x75\\xc0\\x0e\\xa0\\xaf\\x59\\xba\\x57\\xaa\\x39\\xe5\\x9f\\x6e\\x44\\x56\\x31\\xd3\\xdb\\x7f\\x8d\\x09\\x97\\xb4\\xa6\\xb4\\x3c\\xc3\\xea\\xb9\\x52\\xff\\xd3\\xac\\x23\\xbe\\x5e\\x87\\x51\\x3f\\x75\\x1f\\xb8\\x2c\\x69\\x37\\x0e\\x11\\xb5\\xa3\\x9c\\xcd\\x69\\x2b\\xf6\\x30\\xd4\\x3c\\x67\\x24\\x05\\x97\\xe2\\x06\\x0e\\xf5\\x64\\xa9\\x6c\\xd1\\x53\\x6a\\x1d\\x2a\\x65\\x42\\x62\\xdd\\xcf\\x63\\x92\\x8a\\x1b\\x76\\xac\\xdf\\xd5\\xfd\\x28\\xc7\\x52\\xa4\\x37\\xf1\\x5b\\x30\\x9c\\xec\\xd5\\x14\\x5b\\x5d\\xb8\\xe0\\x45\\x57\\xa5\\x6c\\xee\\x7a\\x11\\xff\\xe8\\xf3\\x11\\x3b\\xdd\\x46\\x09\\x1a\\x3c\\x96\\xb9\\x49\\xd9\\x0c\\x99\\x9c\\x9d\\x67\\xab\\x27\\x18\\x73\\x10\\x63\\x05\\x84\\xe6\\x37\\x7b\\x35\\x21\\x14\\x5f\\xef\\xe7\\xa8\\xbd\\x35\\x8d\\x4e\\x19\\x26\\x1a\\x52\\x86\\xe1\\xec\\xde\\xaa\\x0d\\x64\\xe5\\x58\\x7d\\x84\\x54\\xd4\\xff\\xca\\x88\\xa5\\x15\\x59\\x88\\xac\\xa8\\x3f\\x84\\xc7\\x8b\\x58\\xe9\\x33\\xcc\\xfb\\x2e\\x9a\\xae\\x42\\xe8\\x49\\x23\\x0d\\x31\\x74\\x36\\xac\\x85\\x75\\x44\\xcc\\x3d\\x35\\xf6\\x1d\\xa1\\xd2\\x81\\x3f\\x27\\x29\\x42\\x53\\x9c\\x2c\\xac\\x94\\xcd\\xe5\\x6f\\x3b\\x6f\\xdb\\xb3\\x5f\\x1a\\x69\\x5b\\x15\\x9a\\x64\\xed\\xd5\\x61\\xb3\\x2b\\x35\\x20\\x1b\\x4a\\xec\\x62\\x99\\xa7\\x19\\x1b\\x65\\x05\\x67\\x73\\x56\\xb7\\x49\\x97\\xd9\\x3a\\x8e\\x09\\x08\\x45\\x1f\\x12\\x23\\x44\\x34\\x96\\xa5\\xc6\\x94\\xd9\\x60\\x75\\x56\\x2a\\x24\\x16\\x64\\xb4\\x53\\x2c\\xde\\xda\\xe7\\x19\\xbe\\x25\\x96\\xd6\\x5d\\x8f\\xe6\\xc6\\x49\\xed\\xa1\\x3f\\x3a\\x7e\\x43\\xca\\x1b\\x59\\xfd\\x34\\x43\\x61\\x6e\\x24\\xba\\xe5\\x06\\x87\\x02\\xa5\\x7c\\x62\\xcf\\x95\\x6d\\x83\\xac\\x45\\x23\\x75\\xfe\\x1c\\x9e\\x6b\\x4a\\x11\\x94\\x1b\\x1f\\x1c\\xfc\\x18\\xdc\\x1c\\xe3\\xd3\\xf6\\xc5\\xec\\x8d\\x9f\\xd4\\x57\\xd2\\xbb\\xa2\\x9f\\x74\\xbe\\xae\\x2f\\xfc\\xfe\\xef\\xd3\\x96\\x28\\x13\\x8b\\x4d\\x7d\\xa6\\xf8\\xec\\xa0\\xeb\\x20\\x44\\x6a\\xc8\\xaf\\xf9\\x47\\x8d\\x5d\\x98\\xa7\\x68\\x00\\x1b\\xa0\\xa1\\x0b\\x1a\\x37\\x37\\x7e\\x9f\\x89\\xb3\\xbb\\x8e\\x7b\\x7d\\x6a\\xcd\\x65\\x48\\xbb\\xb9\\x86\\x2f\\x14\\x33\\xfe\\x58\\xbb\\xbd\\xf4\\xb4\\x3d\\x56\\x68\\x85\\x93\\xbc\\x5b\\x08\\xb9\\xed\\xe9\\x65\\x25\\x3c\\xba\\x31\\x17\\xda\\x38\\x41\\x1e\\x38\\x01\\x92\\xea\\x56\\x0b\\x9c\\x4c\\xdb\\xfa\\x10\\xab\\x38\\x1a\\xf8\\xea\\x00\\xa7\\xf8\\x8d\\x1c\\x43\\xe6\\xf7\\xb4\\xb5\\xd5\\x61\\x98\\x9f\\xf5\\x27\\xc7\\xfb\\xe0\\x1c\\x0c\\xef\\x30\\x13\\x34\\xe9\\x6c\\xf3\\x7b\\xd2\\xda\\x4a\\x84\\x2c\\x5c\\x97\\x36\\xb8\\x89\\x08\\xa2\\xed\\xd3\\x4f\\x33\\x6c\\xe0\\xe1\\x43\\x8c\\xc0\\x37\\x5f\\xf3\\xff\\xa4\\xff\\x6a\\x2c\\x78\\x16\\xfb\\x34\\x2d\\xdc\\xd7\\x72\\xa1\\xa1\\xf8\\xe1\\x94\\xd8\\xab\\x88\\xca\\x69\\x8c\\xf6\\xa5\\x74\\x25\\x31\\x87\\x67\\x01\\xb5\\x95\\xdd\\x48\\x62\\x56\\x0e\\xad\\x99\\x45\\xc2\\x9d\\xbb\\x07\\x9c\\x19\\x74\\xf9\\xc7\\x46\\x1f\\xa5\\x98\\x4d\\x03\\x41\\x3b\\x92\\x3a\\x64\\x63\\x72\\xed\\xef\\x33\\xa8\\x67\\x0d\\xd9\\x2c\\x1e\\xd7\\x1b\\x3f\\xdb\\x7f\\x79\\x6f\\x6a\\x84\\x2f\\xff\\x22\\xcd\\xd0\\x15\\x45\\xe7\\x67\\xd3\\x3f\\x16\\x25\\x08\\xea\\xef\\xdf\\x22\\x69\\x64\\xa7\\x82\\x8f\\x30\\x68\\x4d\\x1b\\xc9\\x8c\\x4e\\xd6\\xa0\\xd1\\x41\\xb7\\xbb\\x60\\xa7\\x5a\\x05\\xde\\xfd\\x79\\x24\\x75\\x3d\\x7f\\x7f\\x82\\x74\\x8a\\x4b\\xc9\\xb7\\x33\\x65\\x4b\\xa8\\x1c\\x15\\xff\\xf1\\x1f\\x8b\\x52\\x74\\x8c\\x4f\\x92\\x17\\x00\\x00\\x40\\xff\\xbf\\x31\\x8b\\xde\\x89\\xad\\xd5\\x16\\x54\\x18\\x8b\\x07\\x40\\xca\\x49\\x98\\xc5\\x11\\x4f\\x4a\\x6f\\x31\\x43\\x7f\\x69\\xf1\\x34\\xa0\\x9e\\x69\\x4d\\x69\\x4d\\xb3\\x3e\\xdb\\xb0\\xe6\\x85\\x3b\\xbe\\xbc\\x27\\x86\\xc9\\x31\\x78\\x10\\x2f\\xdf\\x02\\x45\\x76\\xe5\\x02\\x3e\\x30\\x35\\xeb\\x50\\x2f\\xed\\x16\\x8f\\xff\\xe2\\x08\\xc9\\x68\\x31\\xfb\\x67\\x81\\xe0\\x6d\\x2c\\xf6\\x7f\\xc2\\x63\\x8d\\x5b\\xd4\\x2d\\x16\\xf1\\xb9\\x6d\\x6d\\x73\\xb7\\xa9\\x6b\\x75\\x5b\\x08\\xa6\\xf0\\xbe\\xbc\\xad\\x2f\\xb4\\x8d\\x6b\\x01\\xb9\\xfc\\x52\\x8d\\x5f\\x69\\xe0\\xc5\\x23\\x06\\xd4\\x5f\\x9d\\x7b\\x4f\\x00\\xae\\x8e\\x82\\x04\\xff\\x56\\xb3\\x61\\x83\\xd2\\xbb\\x2b\\x07\\xdf\\x2a\\xbb\\x55\\x49\\x06\\x8e\\xfd\\xcf\\x59\\x02\\x7f\\x34\\xae\\x15\\x21\\x6d\\x19\\x31\\x3d\\x07\\xa8\\x93\\xc1\\x93\\xf3\\xae\\x11\\xd2\\xfc\\x29\\x6d\\xa6\\x97\\x4a\\xc7\\xc5\\xd4\\xa9\\x04\\x53\\xc9\\xe7\\x30\\xf4\\xb5\\xe2\\xeb\\x57\\xce\\x57\\x49\\x73\\xff\\xd0\\x98\\x3c\\x28\\x5e\\xde\\x7e\\xf3\\xb3\\x15\\x17\\x5d\\x17\\xa7\\x14\\x53\\xc3\\x1a\\xc5\\x9f\\xe0\\x6c\\x9e\\xe9\\xc7\\x3f\\x7f\\x6f\\x5a\\xfe\\x4e\\xf1\\xdd\\x53\\xb6\\xf2\\x87\\xce\\x7f\\x33\\x8e\\x25\\xc7\\x4e\\xc5\\x7f\\xac\\xf8\\xea\\x07\\xc7\\x0f\\x29\\x0a\\xba\\x32\\x51\\x16\\x2c\\xfe\\x17\\xd3\\xfb\\x74\\xee\\x9f\\x53\\x9c\\x7b\\xd7\\x7d\\x21\\x47\\x21\\x7e\\x00\\xeb\\x95\\x09\\x13\\x19\\x3d\\xee\\xaa\\xbb\\x99\\xfc\\x2d\\x2c\\xc9\\xa4\\x26\\x3e\\x8a\\x93\\xf1\\x11\\xa2\\x03\\x78\\x04\\x11\\x6b\\x0d\\xaa\\x17\\x7b\\x44\\x50\\x7a\\x6e\\xd3\\x37\\x13\\x9e\\x09\\x40\\x71\\x2a\\x61\\xf2\\x03\\x7c\\xc7\\xf9\\x70\\x9d\\xea\\x56\\xd2\\xfc\\x07\\x5f\\x64\\x97\\x46\\xe0\\x2f\\xba\\xb8\\x78\\xdb\\x71\\x22\\xb6\\x6f\\x97\\xbc\\xa8\\xf1\\xf0\\x70\\xbf\\xc1\\x1f\\x94\\xbd\\xc6\\xd7\\xc3\\x27\\xf3\\x0d\\xd0\\xea\\xa7\\x94\\x3f\\x68\\xad\\xab\\xf4\\xfc\\xc1\\x38\\x2c\\x98\\xae\\x06\\x89\\x8d\\x10\\xd7\\x27\\x61\\x1e\\x3e\\x98\\xdf\\x96\\xf5\\xd6\\xb5\\x75\\xfe\\x7d\\xf9\\x88\\xe8\\x3a\\x49\\xe9\\xd4\\xe7\\x0b\\x9c\\x59\\x0a\\xa7\\x88\\x78\\x05\\x60\\x0d\\x2d\\x0c\\x86\\x5f\\x64\\x94\\x04\\x9d\\x27\\xe0\\x6c\\x9a\\xb8\\x07\\x44\\x2f\\x61\\x79\\xbc\\x19\\x72\\xa0\\x83\\x6d\\xa0\\x07\\x29\\x15\\xc2\\xb7\\x01\\x34\\x3a\\x39\\xf0\\x44\\x97\\x4f\\x67\\xb7\\x44\\x16\\xd6\\x2c\\x86\\x62\\x22\\xbe\\xf6\\xc3\\x86\\xfa\\x98\\xa6\\x80\\xa8\\xe0\\x83\\xcc\\xd9\\x0d\\x0b\\x31\\x03\\xd8\\xdb\\xe6\\xe4\\x58\\xe7\\x8a\\xb3\\x9e\\xd7\\xed\\x49\\x60\\x77\\x3c\\x9a\\xfc\\xb8\\xaf\\xde\\x07\\xe0\\xa0\\xf8\\xf7\\x2b\\x10\\x35\\xd7\\xc6\\x01\\x5c\\xab\\x6e\\x0b\\x00\\xbd\\xbc\\x4a\\x6e\\xd8\\x16\\x0e\\x5f\\xea\\x7e\\x7e\\x1d\\x6a\\x4d\\xde\\x61\\x6e\\x36\\x6b\\xb7\\xf3\\x2c\\x02\\xb0\\xb9\\x4b\\x3b\\x18\\xd8\\x79\\xe5\\xea\\xa3\\xf5\\x42\\x73\\xaf\\x1e\\x33\\x82\\x93\\x58\\xcd\\x8e\\xc1\\xe1\\x1b\\xab\\xca\\x3e\\xf0\\x90\\x4c\\x3c\\xf3\\x9f\\x2e\\x9a\\x1c\\xce\\x28\\x10\\x6d\\xbc\\x2e\\x4c\\x6e\\x3a\\x82\\xe3\\x37\\x22\\x9e\\x5f\\x47\\x4b\\x46\\x84\\x5e\\xb0\\x72\\xf7\\x4b\\x00\\x86\\xae\\xb9\\xda\\xbe\\xe3\\x55\\xc9\\x06\\x8d\\xb7\\xc0\\x8a\\xa7\\xf4\\x30\\xec\\xe6\\xae\\x94\\xa8\\xe9\\xe6\\x8c\\x3f\\x90\\xd7\\x79\\x91\\x3c\\x5a\\x58\\x34\\x87\\x82\\x20\\x0e\\x7e\\xf5\\xcb\\xdc\\x47\\x0f\\xc5\\xae\\xf9\\xe3\\x3c\\x49\\xa2\\xaa\\x65\\x83\\x63\\x1c\\x39\\xbc\\x98\\xca\\xda\\xfd\\x3e\\xe3\\x9c\\xa7\\x50\\x36\\xf0\\xb4\\xee\\xda\\xf9\\xf8\\xd2\\xae\\x9b\\xef\\xfd\\xf6\\xe1\\x2c\\x38\\x84\\x6b\\xee\\xe6\\xa0\\x1c\\xb0\\xde\\x99\\xb5\\xc7\\x21\\xc9\\x19\\x87\\xf8\\xcd\\x82\\x19\\x9f\\x17\\x5c\\xf7\\x44\\x2f\\x11\\x74\\x28\\x87\\xdf\\x13\\x8f\\xf0\\xd9\\x9c\\xf1\\x50\\x4b\\xe1\\x5e\\x4d\\x36\\xfb\\xe3\\x17\\x22\\x35\\x82\\xb0\\x94\\x04\\x55\\x29\\xa9\\xc9\\x45\\x4c\\xf9\\x29\\x21\\xd5\\x92\\x66\\x0e\\x34\\xe0\\xa4\\xaa\\x4d\\x79\\x5e\\x83\\x45\\xd2\\x92\\x0b\\x29\\xa4\\x5d\\x41\\xaa\\xcf\\xb9\\x44\\x13\\x9b\\x62\\x68\\xcd\\x83\\x7c\\x5e\\x70\\x55\\xbf\\x51\\x22\\x80\\x0c\\x21\\x8f\\x8f\\x75\\xd0\\xa4\\x45\\x2c\\xb4\\xe6\\x5f\\x3c\\x13\\x11\\x44\\x26\\x59\\x19\\x57\\x8c\\x33\\x57\\xc4\\xfe\\x4d\\xe6\\xcf\\x1d\\x8a\\xcf\\xe6\\x2a\\xd9\\x8c\\xb3\\x02\\xa4\\x14\\xd1\\x67\\x44\\xc3\\xb3\\xc7\\xf2\\x91\\xf2\\x23\\xa8\\x7d\\xf6\\x27\\x70\\x96\\xc1\\x67\\xab\\xeb\\x5c\\x5a\\x57\\x0f\\x37\\xe9\\x0e\\xc5\\x27\\x71\\x91\\xac\\x1b\\x3c\\xf5\\x03\\xa4\\x8f\\xef\\x7c\\x21\\xfa\\xe5\\x06\\x66\\x2d\\xc2\\xcf\\x7d\\x72\\xb0\\xc9\\xbe\\xb4\\x1c\\x91\\xb3\\xb4\\x2c\\x1e\\x11\\x70\\x91\\x9d\\x8b\\xb5\\x50\\x7c\\x04\\x5b\\xc9\\xca\\x9c\\xcd\\xee\\xcc\\xd8\\x45\\x09\\x27\\x64\\xe7\\x15\\x0a\\x52\\xbc\\x3b\\x46\\x32\\x83\\x3c\\xfd\\x00\\x38\\xa3\\xf8\\x0c\\x14\\x1a\\x32\\xcb\\x84\\x75\\x22\\xd0\\xad\\x34\\x92\\x34\\xcc\\x9f\\xcd\\x0d\\x7e\\x8f\\xed\\xdb\\x48\\xb1\\x39\\x1f\\x34\\x30\\x1d\\x26\\x20\\xcb\\x44\\xda\\xe1\\xe2\\x59\\x70\\x18\\x3b\\x6a\\x2b\\xb2\\x0d\\x0f\\xdb\\xeb\\xec\\xe9\\xf2\\xf1\\xb9\\xb2\\x37\\x3e\\x99\\x4e\\x40\\x27\\x8a\\x6f\\xe4\\x80\\xc7\\x40\\xb2\\x4a\\x5e\\xf2\\x88\\xb8\\x91\\x3b\\x66\\xe7\\x94\\x1f\\x45\\x27\\xd6\\xa1\\xf1\\x0f\\x6c\\xf9\\x05\\x08\\x65\\x03\\xd4\\x5a\\xbe\\xdd\\x41\\xf9\\x00\\xde\\x5c\\x73\\xd0\\x63\\x5e\\x07\\x0e\\x92\\x94\\xbb\\x01\\xcb\\xc4\\x26\\xac\\xd9\\x41\\xb9\\x21\\x94\\x78\\x65\\xb5\\x6a\\xcb\\x07\\xf2\\xf7\\x7b\\x7d\\x92\\xd7\\x38\\xd9\\x6d\\xb7\\x5d\\x74\\x19\\x26\\x95\\x16\\x4e\\x5d\\x56\\x69\\x9b\\xdc\\x49\\xdf\\x88\\x26\\x94\\x0b\\x2e\\xcf\\x24\\xa5\\x43\\x9a\\x91\\xe6\\x39\\xe5\\x82\\x06\\x49\\x7a\\x58\\x36\\xe2\\x67\\x0d\\x96\\x10\\xca\\x56\\xd0\\xb6\\xdc\\xa2\\x54\\x6b\\xd3\\x36\\x23\\x86\\x54\\x2c\\x21\\xab\\x42\\x89\\xd4\\xa5\\x66\\xe4\\xa6\\x94\\x0e\\x49\\xbb\\x97\\x3b\\x03\\x4e\\x83\\xa6\\x38\\xf7\\x66\\xef\\x82\\xa3\\x21\\xe6\\xf3\\xf8\\x93\\xbc\\x86\\x51\\xf3\\x9a\\x20\\x97\\x93\\x0f\\x27\\x1d\\xc1\\xee\\xbc\\xc3\\xa1\\x23\\xbc\\x9c\\x6b\\x27\\xe1\\x68\\xac\\x5b\\xda\\x1d\\x5d\\xfe\\xff\\xec\\x4c\\xcc\\xc8\\x3d\\xac\\x74\\x36\\x73\\xb5\\x3f\\xcb\\xde\\xf0\\x1a\\x16\\x8d\\x52\\x67\\x67\\x96\\x60\\x01\\x6b\\x6e\\x0f\\x15\\xb1\\xae\\x7f\\xef\\x3a\\x3e\\xa2\\xf1\\x88\\x4e\\x1c\\xc0\\xb1\\x38\\xe1\\xaf\\x36\\xce\\x99\\xa4\\x8e\\x93\\x65\\x83\\x77\\xc4\\x08\\x65\\xa8\\x72\\x49\\x14\\x10\\xbe\\x3c\\x11\\xa4\\x27\\xd3\\x11\\x3d\\xae\\x3c\\x8a\\x6a\\x0b\\x96\\x35\\x00\\x89\\xe4\\xe8\\x9d\\x4e\\xb9\\xc4\\x02\\x4d\\x26\\x75\\x82\\xd7\\x4f\\x40\\xfa\\xb5\\x9c\\x73\\xde\\xd2\\x63\\xb0\\x24\\xd5\\x07\\x4a\\x72\\x6c\\x75\\x6b\\x9e\\x50\\xd7\\x64\\x1b\\xfd\\xcf\\x8d\\x67\\xab\\xfe\\x6d\\xdb\\x5f\\xa4\\xae\\xdd\\xb3\\x95\\x4c\\x22\\xc7\\xbb\\x0d\\xb0\\x42\\x9c\\x44\\x84\\xd7\\xf1\\x20\\x83\\x9c\\xcc\\x21\\x71\\x74\\x3c\\x81\\x41\\xc3\\xff\\x87\\x9a\\x6c\\x19\\x80\\x6b\\xf3\\xa0\\xc9\\xca\\x4c\\x58\\xc6\\x2d\\x1a\\xb2\\x5d\\xa0\\x28\\x3e\\x19\\x85\\xd3\\xad\\xa9\\x8f\\x50\\x0f\\xc7\\xf9\\xeb\\x82\\x72\\x5d\\x7c\\x4b\\x8a\\xb3\\xf8\\x58\\x4e\\x84\\x2f\\x01\\x83\\x53\\xa8\\x49\\xdf\\x83\\xda\\x10\\x89\\x67\\xbe\\xb2\\x9f\\xe4\\x2e\\xe6\\xd8\\xee\\xab\\xf2\\x9f\\x48\\x5c\\x92\\xbc\\x60\\x10\\x59\\x79\\x00\\x1b\\x19\\x6b\\xe8\\x0e\\x4c\\x44\\x79\\x0a\\x61\\xad\\xc6\\x35\\x54\\x0b\\x0a\\xb1\\xf2\\xce\\x48\\x36\\x66\\x47\\x29\\x7f\\x93\\xe9\\x48\\x9c\\x69\\xe0\\x74\\x36\\x91\\x5e\\x30\\x9e\\x1d\\xce\\x96\\x16\\x75\\x8d\\x4f\\x6d\\xfc\\xc2\\x0a\\xd7\\xc0\\x11\\x99\\x4e\\xeb\\xa0\\x18\\xb8\\x7d\\x66\\x4f\\x12\\x77\\x9e\\xc0\\x51\\x1c\\x65\\xdd\\xa6\\x25\\x29\\x3b\\x76\\x64\\x76\\xa5\\xfc\\x97\\x7d\\xa6\\x6b\\xd9\\x09\\x48\\x8a\\xa1\\x68\\x4b\\x5f\\x5d\\x04\\x57\\x92\\x2f\\x3b\\xaf\\x8c\\x1e\\x8a\\xf7\\x90\\x23\\x99\\xc9\\xa9\\xe2\\x6c\\xdd\\x2e\\xfa\\x71\\x22\\xff\\xd9\\xa1\\xed\\xb3\\xcf\\xc7\\xa0\\x2c\\xcb\\xc6\\xfe\\xd3\\xa4\\xd5\\xee\\xa4\\x75\\xd2\\x9a\\xb4\\x7a\\x70\\x47\\x76\\xde\\x24\\x04\\xc5\\x27\\xf9\\x23\\x59\\x37\\x78\\xea\\x07\\xaa\\xb6\\x8a\\x7f\\x8c\\x30\\xa8\\x91\\x9d\\x77\\x47\\x49\\xf1\\xd9\\x72\\x25\\x9b\\x71\\xb8\\x1b\\x0c\\x64\\x6b\\x16\\x40\\x8f\\x76\\xde\\x7e\\x28\\x3e\\x5d\\x8e\\x64\\x23\\xce\\xd3\\x60\\xc0\\x93\\x88\\xf7\\xd1\\x4a\\xa5\\x1f\\x90\\x62\\x3f\\xdb\\xe8\\x20\\xbc\\xb3\\x4c\\x4a\\xa6\\x08\\xba\\xfc\\xbb\\xbe\\x7e\\xaf\\x18\\x92\\x41\\x78\\x56\\xa1\\x09\\xd6\\xeb\\xa4\\x21\\x29\\xff\\x59\\xd9\\xeb\\x2f\\xb9\\x70\\x4b\\x64\\x96\\x00\\xca\\x7e\\xb1\\xa9\\xfc\\x17\\xee\\xc9\\xc6\\x6b\\x98\\x36\\x7c\\x85\\xdb\\x95\\x6c\\xa1\\xfa\\xcb\\x0d\\x05\\x45\\xa8\\x7c\\x55\\xa9\\x99\\xab\\x6c\\xc0\\xa1\\x5d\\x3e\\x00\\xee\\x5e\\x17\\x8f\\x50\\x4a\\xf7\\xaa\\x7a\\x62\\x5b\\x6f\\xbe\\x72\\x21\\x54\\x48\\x49\\xb1\\x3a\\x16\\xb8\\x71\\xe8\\x08\\x70\\x5d\\xfc\\x4b\\x78\\xbe\\xfd\\x5f\\x70\\x94\\xcc\\x0c\\x95\\xa4\\xd5\\xce\\xaf\\x9e\\x0d\\x75\\x8d\\x2e\\xa9\\x18\\x99\\xa4\\x61\\xc8\\x9f\\xc5\\x46\\x7a\\x07\\xcb\\x25\\x89\\x72\\xdc\\x7d\\xf4\\x79\\xb9\\x8c\\x60\\xfd\\xd5\\x6d\\xb7\\x47\\xd6\\xeb\\x53\\x75\\xa0\\x4e\\xf8\\x50\\xf9\\x50\\xb2\\x82\\x40\\x65\\xcb\\xfd\\xd7\\xd7\\xd4\\x9e\\x1d\\x5c\\x31\\x0b\\x6c\\x1e\\xe7\\xf5\\x3f\\x96\\xe8\\xfa\\xb9\\x62\\x5b\\x95\\x74\\x84\\x41\\x48\\x28\\x1b\\x6a\\x23\\xf9\\x50\\x87\\x6c\\x2e\\x89\\x25\\x7a\\xe4\\x2e\\x51\\x0e\\xd6\\x8a\\xa4\\x77\\xec\\xa2\\x5f\\xe9\\xa9\\x3e\\x30\\x69\\x9f\\x75\\x8d\\xaf\\x2d\\xa0\\x75\\x5d\\x47\\xb1\\xb5\\x6d\\xe1\\x8f\\xcf\\xbb\\xb7\\x00\\x2d\\xd2\\x1b\\x81\\xd1\\x69\\xff\\xff\\x06\\x8c\\x29\\x2a\\x27\\x7e\\x05\\xc7\\x14\\x55\\xe8\\x5f\\xd6\\x3e\\x51\\xb2\\xfb\\xff\\xc1\\x15\\x93\\x37\\x80\\x1c\\xaa\\xe7\\x9f\\xfe\\x00\\x44\\xab\\xa3\\xd1\\xf4\\x8b\\x87\\x4e\\x5e\\x23\\xdc\\x88\\x9a\\x89\\x0f\\x98\\x86\\xcd\\x30\\x07\\x8b\\x60\\x09\\x2c\\x83\\xe5\\xb0\\x02\\x56\\xc2\\x5a\\xd8\\xe4\\x36\\xd6\\x1e\\x72\\x21\\x19\\xe2\\xaf\\xae\\xa1\\xed\\xda\\xf3\\x5f\\x86\\x7e\\x2e\\x5b\\x8e\\x9d\\x43\\x07\\x93\\xb6\\xd0\\x0c\\x49\\x5b\\x7b\\xfe\\x73\\x37\\xa0\\xd7\\xbf\\xb8\\x5d\\x26\\xdc\\x85\\xc3\\x70\\x15\\x4e\\x35\\xcf\\x74\\x24\\xf4\\xc3\\x1f\\x05\\x9e\\xde\\x0d\\xe0\\x22\\xcf\\x1d\\xe2\\xfc\\xf3\\x0f\\xaa\\x96\\xaf\\xf1\\xe3\\xc1\\xdd\\x57\\x2f\\xaa\\x1b\\x51\\x5f\\x21\\xbe\\xff\\x21\\xfd\\x5c\\xf6\\x65\\xf1\\x73\\xd9\\x77\\x58\\x52\\xcf\\x7c\\x9e\\x65\\x54\\x29\\x1a\\x5e\\x67\\x3f\\x53\\x8c\\xbf\\xb2\\x0b\\xaf\\xf4\\x5d\\x6f\\x0d\\x65\\xdc\\xc9\\x65\\xf4\\x54\\xb5\\x73\\xae\\xf9\\x5e\\xdb\\xe6\\xa4\\xc2\\xdb\\x3f\\x72\\xc1\\x12\\xc0\\xfc\\xc3\\x59\\xd7\\x2a\\x67\\x0d\\x1a\\x1a\\xad\\x0d\\x1c\\xee\\x3c\\xb3\\xe1\\xe2\\x03\\x93\\x4f\\x87\\xee\\xfc\\xbd\\x08\\x70\\xec\\x1c\\xec\\x06\\xae\\x3a\\x4c\\x00\\xfb\\x37\\x98\\x93\\xd0\\x99\\xb9\\x34\\xa5\\x74\\x4d\\x17\\x6d\\x2f\\x65\\x54\\x45\\x94\\xdb\\x15\\xcc\\xa1\\x09\\x5d\\x78\\x08\\x09\\x3d\\x96\\x25\\xaf\\xeb\\x2e\\x22\\xf2\\x5a\\x0c\\x9b\\x29\\x23\\x77\\x39\\xef\\xa0\\x3c\\x61\\x02\\x70\\x09\\xfb\\x1d\\x1e\\x20\\xeb\\x88\\x40\\x96\\xcf\\x2d\\x11\\xd8\\x72\\xdf\\x26\\x40\\xc9\\xc9\\x06\\x02\\xe6\\xf5\\x46\\x9a\\x4d\\xc1\\x3f\\x71\\x9a\\xbf\\xbc\\x08\\xd5\\x04\\xb8\\xbd\\x96\\x7c\\xf1\\xb7\\x5f\\x1f\\x97\\xb4\\xf1\\xcb\\xd8\\x9b\\x75\\x27\\x37\\xaf\\xea\\x34\\x94\\xb8\\x82\\x65\\xbf\\xe1\\x6a\\x59\\xce\\x1e\\x4f\\xdd\\xac\\x78\\x11\\xe0\\x99\\xb4\\xa7\\x5f\\x05\\x66\\xc5\\x23\\x92\\x3d\\x59\\x65\\x36\\xa4\\xfb\\x47\\x14\\x48\\x82\\x7b\\xd3\\xeb\\x83\\x81\\x89\\x80\\xf5\\xff\\xde\\xfe\\x39\\x99\\xa9\\x8e\\x5e\\xef\\x0a\\xb4\\x4a\\xd5\\xb5\\x49\\x0b\\xc7\\x2e\\xb3\\xb4\\xd0\\x34\\x81\\x7d\\xf2\\xb4\\xbe\\x98\\xaa\\xc5\\xb6\\x8e\\x34\\x3d\\x86\\xf0\\x32\\xee\\xec\\x33\\x2f\\x7b\\x43\\x6e\\x2e\\x06\\x2e\\xd5\\x5c\\x73\\xbd\\x36\\xdc\\xf9\\xbc\\x2b\\xd7\\x6a\\xcc\\x4b\\x9f\\x06\\x4e\\x2d\\x02\\xf3\\x99\\xe6\\xc3\\x56\\x08\\x4b\\x05\\x89\\x62\\x02\\x56\\x1b\\xd1\\xa7\\x17\\xff\\xe8\\xd8\\xb0\\xcb\\xb9\\xb9\\xd7\\x96\\x33\\x08\\x43\\x02\\x94\\xe5\\x94\\x7f\\x36\\x42\\x54\\x53\\xd2\\xbf\\xcc\\xc0\\x94\\x4c\\xcd\\x11\\x3f\\xa7\\xff\\x56\\x6e\\x25\\x06\\xae\\xd2\\xf7\\x6a\\x47\\x82\\x8f\\xfb\\xa3\\x40\\xb4\\x47\\x91\\xb1\\xe6\\xe7\\x16\\xcf\\x52\\x18\\xcf\\x7d\\x95\\x81\\x53\\xf4\\xab\\x6a\\xc6\\x42\\x2a\\x6d\\xb0\\x0b\\x81\\x13\\xcb\\x09\\xc4\\x05\\xac\\x7d\\x06\\x40\\x18\\x0c\\x88\\xe8\\xae\\x65\\xc3\\xb5\\x1b\\x49\\x95\\x5c\\xb5\\x89\\x8f\\xe3\\x49\\x8c\\x26\\xee\\x1b\\x4a\\x16\\x2e\\x6d\\x2c\\x9f\\x7e\\xb0\\xb0\\x94\\xac\\x6d\\x3d\\xf1\\x0f\\x64\\x40\\xe3\\x4b\\xb6\\x7b\\xae\\x3a\\x9d\\xa0\\xc7\\xb9\\xbd\\xef\\xe9\\xff\\xae\\x88\\xd2\\xf9\\xf9\\x88\\xc1\\x3f\\x45\\xc3\\xb3\\x3e\\x19\\x24\\xe6\\x71\\xf9\\x6a\\x8a\\xb9\\x27\\xe5\\xa3\\xff\\x58\\x5c\\x19\\x42\\xe2\\x79\\x86\\x0b\\x9a\\xa9\\x85\\x3f\\xbc\\x2c\\xcf\\xef\\xed\\x4d\\x18\\xa1\\xe6\\x17\\xbe\\x77\\x1e\\xbe\\xae\\x79\\xc7\\xf2\\xb9\\x3d\\xaf\\xc1\\xd8\\xdc\\x6f\\xcb\\x2b\\xf4\\x6e\\xd6\\xbe\\xa3\\xc4\\x4b\\xed\\xdd\\xcf\\xf7\\x60\\x42\\x5f\\xf2\\x91\\xdc\\xc1\\x8e\\x96\\xcb\\x23\\xd5\\xae\\x9f\\xf3\\x85\\x30\\xcf\\x52\\x0b\\x37\\xc6\\xf9\\x03\\xfd\\x07\\x6d\\xd4\\x03\\xbf\\x39\\x99\\x84\\xa8\\x85\\x2b\\x09\\x42\\xd0\\x57\\xa2\\x98\\x62\\x56\\x86\\xc3\\xcc\\xcc\\x20\\x70\\x2a\\xe6\\xaa\\x4d\\xe3\\xb6\\xb9\\xa2\\x0e\\x8e\\xe7\\x4a\\x37\\x75\\x4d\\xad\\xe1\\x2d\\x82\\x2b\\xe2\\x7a\\xe5\\x4f\\xad\\x5d\\xd1\\xdd\\x56\\x41\\x46\\xf3\\x46\\xcb\\x3d\\x86\\xb6\\xf0\\x09\\x03\\xe8\\x49\\xac\\xc3\\x5f\\x6f\\xb6\\xf7\\xda\\xfd\\xdc\\x75\\xed\\x43\\x83\\x67\\x88\\xb1\\xab\\x7f\\x6e\\x05\\x12\\xae\\x01\\xf9\\x16\\xf1\\xee\\xa0\\x8b\\x54\\x15\\xea\\xd3\\x74\\x59\\x86\\xc4\\x73\\xf5\\x22\\x7b\\x21\\xd9\\x25\\xe0\\x9f\\x6a\\x8b\\xc4\\xfd\\xdc\\x77\\x69\\x91\\xf0\\x9d\\xd6\\xba\\xd2\\xfb\\x84\\xf2\\x87\\x2a\\xf5\\xd8\\xb7\\x84\\x15\\x4f\\xc1\\xf9\\x49\\xbe\\x83\\x15\\xff\\x06\\xd8\\xfc\\xfa\\xdd\\x3c\\xa7\\xd5\\xf5\\xcf\\x59\\xbd\\xd7\\xe0\\xe9\\xba\\x06\\x5f\\xbd\\xb3\\xbe\\x8f\\x18\\xbb\\xfa\\x6b\\x2d\\xba\\x37\\xf7\\x9c\\x43\\x24\\x5a\\x8a\\xb7\\xfb\\x42\\xe1\\xca\\x54\\x68\\xae\\x4d\\xce\\x74\\x35\\xb8\\xf4\\x0b\\x3a\\xf2\\x73\\x94\\xd1\\x7f\\x0e\\xd7\\x04\\xa0\\x3c\\xd3\\x7e\\x31\\x2a\\x15\\x8e\\x42\\x57\\x13\\x37\\xd9\\x1f\\xf2\\xe6\\x9e\\x27\\x4c\\x67\\xc1\\x15\\xb9\\x7f\\x17\\x68\\x50\\x4c\\x2b\\x98\\x22\\xb8\\x7a\\x91\\x5b\\x04\\x19\\x02\\x88\\xe5\\x89\\x64\\x93\\x31\\x17\\xe6\\xb9\\x4a\\xc3\\x39\\x69\\xe1\\x9e\\xde\\x5b\\xd2\\x35\\xb9\\xee\\xa4\\x02\\x3b\\xaf\\xe7\\x0e\\x84\\x1e\\xfd\\xce\\x32\\x65\\x64\\x5b\\x0d\\xa1\\x28\\xd7\\x2b\\x5c\\xe9\\xd9\\xc8\\xd3\\xeb\\x52\\x0f\\xc7\\x93\\x2b\\x72\\xc9\\xbc\\x06\\x8b\\x59\\x12\\x2e\\xf3\\xf3\\x5c\\xf5\\xa2\\xd0\\xfd\\x9a\\xe4\\x8e\\x1f\\x60\\x91\\x73\\xf5\\x22\\x87\\x35\\xd2\\x33\\x32\\xd2\\x7b\\x9e\\x2b\\x35\\x54\\x43\\x70\\xa5\\xcf\\xc2\\x11\\x5c\\x91\\x28\\xed\\x11\\x0f\\x2b\\x72\\x83\\x5a\\xf0\\xdd\\x1c\\xda\\xbf\\xec\\xe0\\xac\\x6b\\x95\\x28\\x93\\xb7\\x60\\x07\\x20\\x8f\\x85\\xcc\\xff\\x80\\x8d\\x2f\\x84\\xec\\xf8\\x93\\xb9\\xa4\\xe3\\x7a\\x9b\\xfe\\x88\\x0a\\x00\\xf1\\x90\\x1c\\xb7\\x88\\xfe\\x81\\x5b\\x8c\\x41\\x6a\\x7d\\x07\\x7d\\xa1\\xa5\\x7d\\x87\\x09\\xff\\xdd\\xf3\\x85\\x10\\xc8\\x5f\\xb0\\x9b\\xc0\\x50\\xaf\\x6f\\x65\\xd5\\xea\\xe6\\x77\\x17\\x54\\x42\\x54\\xd7\\xec\\x96\\xdd\\x24\\xf5\\x4f\\xac\\x73\\x8b\\x66\\x1c\\xc4\\x74\\x5d\\x61\\x34\\xfb\\x3b\\x39\\x4c\\x69\\xd6\\x01\\x07\\xae\\xcf\\xcc\\x07\\x0f\\x81\\x83\\x1b\\x64\\x8b\\xde\\x14\\x67\\xd3\\x14\\x1b\\xe4\\x8f\\x65\\x39\\x4c\\xbb\\x07\\x46\\xef\\x6a\\x79\\xbe\\x99\\xcc\\x9b\\x62\\xcd\\x04\\x8b\\xcc\\x43\\x53\\xed\\x8e\\x05\\xb5\\x36\\xfe\\x57\\x9b\\x62\\xde\\x6b\\x73\\x02\\x3f\\xda\\x3b\\xa5\\xdb\\x89\\x3b\\x4a\\xb7\\x43\\xff\\xc2\\x69\\x1e\\xf8\\x17\\x38\\xfe\\x77\\x18\\xc6\\x14\\x80\\x85\\xdf\\x26\\x56\\x04\\x86\\xac\\xf1\\x42\\x5c\\x7f\\x46\\xd8\\x54\\xb3\\x7e\\xe7\\xcc\\x55\\x6b\\x9d\\xeb\\xe7\\x77\\xe2\\xd7\\x64\\xe7\\x3d\\x6b\\xff\\xf9\\x33\\x54\\x8c\\xf9\\xb8\\xed\\xb7\\xfc\\xad\\x77\\xc1\\xe7\\x61\\xdb\\xa7\\x00\\x62\\x97\\x64\\x2a\\x64\\xa6\\x62\\x11\\x77\\x3f\\xab\\x24\\xa6\\x22\\x26\\x12\\xab\\x0f\\x55\\x56\\x7c\\x5c\\x45\\xc5\\xa8\\xe8\\x0c\\x40\\xb9\\x68\\x79\\x46\\xf7\\xf1\\x7b\\x2e\\x5f\\x1e\\xd1\\x86\\x95\\xc5\\x4b\\xc3\\xff\\x60\\x7f\\x6d\\xb0\\xdf\\x0a\\x8d\\xba\\x14\\x0f\\x2a\\x69\\x3c\\x67\\xd8\\x16\\x2f\\x28\\x74\\x4e\\x3e\\xaa\\x83\\x25\\x63\\x3f\\xd7\\x99\\xf1\\x12\\xe6\\xe8\\xc3\\x2b\\xf8\\x7d\\x4d\\x5d\\x47\\x15\\x98\\x16\\xa6\\xc5\\xd3\\xb9\\xe1\\xc6\\xfc\\x75\\x79\\x85\\x56\\xec\\x04\\x68\\xf1\\x0a\\x2f\\x37\\xee\\xe0\\x5d\\x7c\\xa9\\x69\\xc2\\x3f\\x6a\\x57\\x2b\\x62\\xfa\\x6e\\x16\\xe6\\x01\\x87\\x1e\\xe3\\xdb\\xd3\\x84\\xf1\\x7b\\xf9\\xa0\\xb5\\x18\\xa6\\x92\\x43\\x0b\\xbc\\x8b\\x1a\\x15\\x33\\x18\\xc9\\x19\\x6f\\x6b\\x39\\xc3\\x81\\x79\\x3c\\xbc\\x30\\x28\\x40\\x3d\\xf4\\x63\\x69\\xfb\\x2b\\x25\\x1d\\x7e\\x7b\\xde\\xcf\\xf9\\xd4\\xeb\\x55\\xb5\\xe1\\x1e\\x10\\x37\\x52\\x80\\x02\\xc8\\xd0\\x84\\x10\\x02\\x9f\\xff\\x4a\\x54\\x1b\\xd8\\xa5\\x5b\\x5f\\x80\\xfc\\x48\\x0f\\x28\\x80\\xbc\\x5c\\x88\\x4e\\xe1\\x3d\\x63\\x40\\x01\\xe4\\x90\\x47\\x13\\xb5\\x16\\xd7\\x5e\\x1e\\xb3\\x3a\\xcd\\x94\\x40\\x86\\x13\\x2c\\x42\\x52\\x82\\x55\\x5a\\x93\\x81\\x14\\xf4\\xaa\\x78\\xc1\\x2e\\xc0\\x7d\\x92\\x54\\xa7\\x85\\x72\\xc6\\x81\\x51\\xac\\x61\\x9e\\xde\\xe9\\x6a\\x64\\xe9\\xd0\\x7a\\x2a\\x65\\x74\\xa4\\x88\\xc4\\xb0\\x94\\x03\\x46\\xb1\\xb6\\xeb\\x3b\\x8c\\x00\\xf3\\x2c\\xd2\\x7c\\x5a\\x36\\x8a\\x87\\x7b\\x2b\\xc5\\x32\\x27\\x21\\x14\\x36\\x19\\x0b\\xf8\\x85\\xd5\\xee\\xb3\\xe5\\x6f\\xf5\\x14\\x7c\\xec\\x0c\\x60\\x18\\x8b\\x97\\xf6\\xb2\\x2f\\x5e\\x14\\xc7\\x48\\x7a\\x47\\x90\\x76\\xbd\\x07\\xd7\\x38\\x12\\xa7\\x9e\\x66\\xb3\\xa2\\xe2\\x06\\xbb\\x91\\xa1\\x89\\x4c\\x4b\\x26\\x38\\x61\\x15\\x62\\xe8\\x80\\xcb\\xc4\\x75\\x1e\\x06\\x50\\x67\\xaa\\xe9\\xb1\\xe4\\x94\\x6b\\x94\\xa6\\x15\\xf7\\x1e\\xe2\\xd1\\x3a\\xf5\\x14\\xb3\\xc0\\xa1\\x13\\xa6\\x9d\\x0d\\xc2\\xc3\\x36\\x73\\xa2\\xac\\x14\\x04\\x06\\x28\\x98\\x81\\x58\\xad\\xc3\\x2f\\xba\\x95\\xee\\xf7\\x20\\x50\\x29\\x0b\\x50\\x1f\\x99\\xcc\\x80\\x3d\\xb3\\xb7\\x8e\\xd3\\xd4\\x3a\\x59\\x25\\x4d\\x58\\xa7\\x2e\\xcd\\xa1\\x8e\\xe5\\x0c\\x07\\x81\\xf8\\x17\\x5f\\xb6\\xf2\\x3c\\x2d\\x7e\\x58\\x15\\xa1\\xb7\\xc3\\x4a\\x42\\x67\\xb0\\x63\\x8e\\x16\\xe0\\x43\\x80\\x71\\x59\\x25\\x87\\xe7\\xcb\\x48\\xeb\\x99\\xc6\\xa1\\xc3\\xa8\\x91\\xf9\\x99\\x4d\\xf7\\x1a\\x90\\x50\\x36\\x0b\\xb6\\xb2\\x53\\x18\\x7d\\xf6\\x0b\\xad\\xd4\\x53\\x93\\xce\\x58\\x88\\xe9\\x78\\x06\\xd3\\xce\\x3a\\xec\\x48\\xcb\\x6d\\x6d\\x27\\x60\\x05\\xd7\\x90\\x82\\x82\\x19\\x3a\\xf5\\xd8\\xe2\\xe0\\x4d\\x80\\xc7\\xa4\\x8e\\x27\\x40\\xa7\\x85\\xf7\\xa6\\xe6\\x71\\xe8\\xa8\\x7c\\x33\\x18\\xf0\\x59\\x60\\x70\\xb4\\x42\\xdb\\xa6\\x8d\\x59\\x4f\\x8f\\x4c\\xab\\xa8\\xe6\\x72\\x0a\\xa7\\xda\\xaa\\x5f\\x8c\\x9f\\x6e\\xbf\\x75\\x0d\\x1d\\x51\\x49\\xd5\\x11\\xe0\\x92\\xad\\xf3\\x4f\\x4e\\x19\\x1a\\x3a\\x55\\xc8\\xf8\\xd9\\x9d\\x82\\x6a\\xbc\\x94\\x5a\\x22\\x0f\\xb3\\x38\\x6a\\xf4\\x03\\x83\\xd3\\x61\\x4b\\xd2\\x52\\x67\\xd4\\x29\\x5b\\x3a\\x19\\x0b\\xba\\x4c\\xa2\\xeb\\x91\\xf0\\x8b\\xbc\\x9b\\x04\\x85\\x60\\xff\\x0e\\x58\\xed\\x9e\\x77\\x2c\\xa0\\x78\\x64\\x0e\\x04\\xdc\\xcc\\xe2\\xec\\x3b\\xdd\\x19\\xe9\\x0e\\x39\\x0f\\xc4\\x5a\\x71\\xaa\\x14\\x85\\x01\\xb6\\x19\\x86\\xee\\x26\\x35\\xe8\\x19\\x54\\x2d\\x61\\x18\\x50\\x30\\x05\\x34\\xc3\\x8f\\x94\\x67\\x54\\xc0\\xa8\\x15\\x35\\x2a\\x09\\x23\\x4c\\x9b\\xfc\\xec\\x1f\\xc0\\xd9\\xac\\x78\\x14\\x6a\\xa0\\xe7\\x6b\\xad\\x02\\xdc\\xcb\\x06\\x60\\x10\\x25\\x9e\\x34\\xf3\\xa9\\xb3\\xc3\\xf3\\xef\\x12\\xdb\\x7a\\xf2\\x96\\xf0\\x2e\\x60\\x4f\\xd9\\x1e\\xc0\\x48\\xd4\\x94\\x5c\\x3b\\x1a\\x58\\x58\\xc9\\x3a\\x68\\x35\\x2d\\x5f\\x58\\x3e\\xa6\\x5f\\x96\\x5b\\x5c\\x5b\\x34\\x16\\x35\\x2c\\x1b\\x01\\x83\\x68\\xfb\\xcc\\xd4\\x92\\x0e\\x88\\x68\\x0e\\x47\\x60\\x24\\x6a\\xe8\\xfc\\xc9\\x80\\xf0\\x1e\\x74\\x3e\\x67\\x5c\\x10\\x0b\\x91\\xe7\\x38\\x92\\x68\\x9a\\xaf\\xb8\\x54\\x1c\\x14\\xe0\\x0c\\x96\\x9c\\x7c\\x86\\x29\\xe1\\x14\\x5f\\x33\\x71\\x92\\x50\\x28\\x57\\x34\\x10\\x97\\x39\\x1b\\x4b\\x2a\\xd6\\x38\\x4b\\x68\\x08\\x2c\\x2c\\x80\\x7b\\x04\\xce\\xa1\\x14\\x90\\x7d\\x52\\x0f\\x29\\xcb\\xb9\\x72\\xa4\\x1a\\x31\\x66\\xcd\\xe2\\x78\\xeb\\x62\\x30\\x5d\\x1d\\xeb\\x50\\x9f\\x9e\\x1b\\x59\\xa3\\x5e\\x8c\\x5f\\x4d\\x4f\\x48\\xc4\\x49\\xe7\\xb3\\xe2\\x1a\\x6f\\x52\\x69\\x9a\\x03\\xc8\\xb9\\xd2\\x5c\\xcb\\x23\\x73\\x60\\x72\\xba\\xda\\xd6\\x75\\xaf\\x29\\x9e\\xae\\x25\\x94\\x89\\x43\\x1d\\x69\\xbf\\x87\\x35\\x0c\\xb1\\xb6\\xe0\\x71\\x9f\\xe1\\xb8\\xa2\\xb2\\x13\\xc3\\x56\\xd7\\xaa\\x04\\xd0\\x2b\\xaa\\x7d\\x9b\\xd6\\x65\\xde\\x63\\x51\\xa7\\x08\\x69\\xbe\\xa6\\x4e\\x7c\\x15\\xc4\\x2e\\x3b\\xc9\\xe3\\x53\\x7b\\x18\\xe9\\x80\\xbc\\x1e\\x81\\x18\\x10\\x14\\x64\\x0f\\xdd\\x4c\\xad\\xcb\\x7d\\x07\\xe8\\xd3\\x40\\xc4\\x8b\\x90\\x01\\xec\\x27\\x35\\xa0\\x74\\x5d\\xe8\\x3c\\x97\\x23\\x14\\x79\\xb7\\x01\\x62\\x23\\xef\\x35\\x88\\x3c\\xd4\\xa0\\x6c\\x7a\\x29\\xe1\\x1e\\x26\\xa2\\x41\\x9e\\x06\\x80\\x3c\\x6a\\x8d\\x74\\x1b\\x0c\\x08\\x08\\x7d\\xf6\\x01\\xa1\\x19\\x04\\x60\\xbe\\x2d\\xe8\\xea\\xa7\\xb3\\x59\\x9a\\x3c\\x66\\x4c\\xa9\\x0a\\xc5\\x28\\x3d\\x56\\x65\\x9a\\x2a\\x21\\x92\\x62\\x69\\xaa\\x88\\xe7\\xc8\\xb2\\x12\\xc5\\x4f\\x09\\x77\\xc9\\x1e\\x78\\x1c\\x1d\\xe9\\xaf\\x6f\\x76\\x2c\\x6b\\xca\\x67\\xa3\\x18\\x2f\\xba\\xa2\\x92\\x6b\\xd2\\x02\\x80\\x72\\x41\\x2d\\x5c\\xc3\\x47\\x3c\\x2e\\x27\\x44\\xba\\xa3\\x88\\x6d\\xba\\xd2\\x6e\\xc2\\x4b\\x83\\xab\\x62\\x7f\\x60\\xa7\\xf3\\x3e\\xe0\\x61\\xcf\\xa9\\x2e\\xd8\\x2b\\x75\\xf9\\xd6\\xa9\\x6b\\x86\\x6a\\xf0\\xda\\x89\\x35\\x83\\x32\\x23\\x69\\x44\\x35\\xa4\\x10\\xeb\\x44\\x49\\xaa\\x15\\x5a\\xc1\\x80\\xa3\\x9a\\x89\\x4e\\x5d\\xa3\\xd1\\x6a\\xa7\\xbb\\x09\\x88\\x93\\x5b\\x03\\x88\\xf9\\xac\\x85\\xd0\\xed\\xa7\\x06\\xe4\\x7d\\x3c\\xd1\\x9d\\x45\\x7c\\x91\\x90\\xc8\\x80\\x87\\x87\\x74\\xc4\\xf5\\x69\\x1d\\xed\\xaa\\x6a\\x28\\xa9\\x88\\x92\\x29\\xe9\\xf7\\x50\\xf6\\xcb\\x63\\xbd\\x24\\xc6\\x20\\xaf\\x82\\x77\\xd8\\x2b\\xc4\\x7a\\x47\\xca\\xa4\\x4b\\xaf\\x9c\\x51\\x78\\x3c\\xe5\\x09\\x2b\\x60\\xf9\\x52\\x5e\\x1a\\x05\\x1c\\x6e\\xe7\\xec\\x52\\xe8\\x2b\\x78\\xad\\x3f\\x15\\x3b\\x73\\xd3\\xe2\\x69\\x2b\\xb7\\x46\\xa0\\xa6\\x7a\\xca\\xea\\xe3\\xbf\\xb8\\x77\\x63\\xcf\\x20\\x02\\x74\\xde\\x7b\\x83\\x4e\\xa5\\xee\\x9c\\x58\\x5b\\x43\\x66\\x57\\xc3\\x5a\\xbc\\x2d\\xef\\x5c\\x0a\\xf8\\x37\\x74\\x92\\x8b\\x45\\x95\\x8c\\x5e\\xc0\\xe4\\x56\\x04\\xb5\\x87\\x7c\\x1a\\x57\\xe2\\x5a\\x14\\xaf\\x74\\xbb\\xd1\\x3a\\xb6\\x3a\\x10\\xd5\\x5a\\xcd\\x65\\x5a\\x84\\xbb\\x1f\\xb5\\xea\\xe4\\xd3\\x95\\x48\\x91\\x6c\\x09\\x58\\x7a\\xaa\\xd2\\xa9\\x23\\x18\\x50\\x9b\\xcf\\x9c\\xe5\\xee\\x45\\x77\\x66\\xba\\x63\\xa2\\x55\\x72\\x4d\\xe8\\xf3\\xeb\\xb8\\x3b\\xc9\\xff\\x50\\x87\\x4b\\xc5\\xfa\\x84\\xb3\\x4e\\x11\\x00\\xb7\\xf2\\x0a\\x9d\\xbf\\x05\\xd7\\x31\\xa3\\xd7\\x48\\xdc\\x18\\x73\\xda\\x66\\xa0\\xf7\\x70\\x99\\x3d\\xb3\\xdb\\x5a\\x30\\xde\\xd4\\x68\\xd9\\x99\\xe9\\x8e\\xc9\\xce\\x5b\\x0b\\xee\\x5a\\x09\\x13\\x1d\\xd3\\xd0\\xb5\\xc6\\xb7\\x2e\\xb3\\xe2\\x36\\x98\\x4f\\x89\\x1c\\xd1\\xcf\\x8d\\x2c\\x9e\\x76\\x7d\\x84\\x09\\x3d\\xe8\\x09\\xa1\\x17\\x16\\xc5\\x3a\\x3d\\x33\\xe3\\xca\\x5b\\x97\\x95\\x01\\xfa\\xe4\\xdd\\xf6\\x54\\xc5\\x37\\xa7\\x7c\\xb9\\xd0\\x89\\x8f\\xf9\\x65\\xc9\\xab\\xbc\\xc4\\x13\\x00\\x36\\x83\\x94\\x70\\x9e\\x99\\x17\\x5d\\xb8\\xf7\\xea\\xc8\\xeb\\x57\\xdb\\x5a\\x52\\xfd\\x48\\x23\\x42\\x50\\xb0\\xba\\x33\\xd7\\xea\\x8f\\xf3\\x59\\x70\\x97\\xa3\\xca\\x3d\\x28\\xde\\x72\\x51\\xd6\\xa7\\xa5\\x60\\x25\\x4f\\x6b\\xb7\\x46\\xd6\\x59\\xc3\\xeb\\x24\\x3d\\xe8\\x37\\x2f\\x5e\\x63\\x3f\\x6d\\xea\\x6d\\xbb\\xd6\\x5a\\x50\\x3f\\x33\\xab\\xaf\\x1f\\xcf\\x7e\\x5e\\xd4\\xaf\\x66\\x94\\x47\\x4d\\xf5\\x46\\x3a\\xa7\\xa4\\xd9\\xcc\\xbc\\x9c\\xe9\\xc5\\x42\\x72\\x10\\x8b\\x9f\\x85\\x62\\xfb\\x5c\\xe5\\x2e\\x54\\x58\\xc8\\x15\\x70\\x29\\xb1\\x6c\\x6a\\x5b\\x99\\x10\\xc1\\x80\\xbd\\xcb\\xd5\\xef\\xa4\\x59\\x2c\\x9d\\x67\\x31\\xef\\x0e\\x1b\\x7f\\x3c\\xeb\\xf9\\xe5\\x7e\\xe6\\x3d\\x79\\x42\\x2f\\x7a\\x06\\x5b\\x84\\xde\\x8c\\x34\\x3c\\x0d\\xf2\\xd6\\x75\\x26\\xa9\\x7e\\x38\\x9e\\x05\\xcd\\x50\\x94\\x5b\\x70\\xed\\xcd\\x93\\x67\\xf5\\x09\\x0a\\xa7\\x37\\x77\\x69\\xf2\\xa4\\x76\\x6b\\x4e\\x23\\x59\\xb5\\xd8\\x86\\xd7\\x5b\\x15\\xc2\\x8a\\xda\\xfc\\x0a\\x50\\xc3\\x18\\xb5\\x98\\xd6\\x0c\\xd2\\xf3\\x33\\xe7\\xf7\\xaa\\xbf\\x01\\x53\\xab\\xac\\xb5\\x86\\x12\\x94\\x5a\\xa1\\xd3\\x13\\x1d\\x9f\\x85\\x0a\\xad\\x3d\\xdc\\x11\\xeb\\xfe\\xeb\\x63\\x33\\x85\\xe3\\xd9\\x9d\\x81\\x00\\x12\\xde\\x51\\xbd\\xee\\x7f\\xa4\\xe9\\x67\\xd0\\xef\\xe7\\xc3\\xd9\\xac\\x1d\\x3a\\x6c\\x09\\x76\\x9a\\x5d\\xe9\\x1e\\x3a\\xf6\\xcd\\xf7\\x54\\xf6\\x36\\xa2\\x9b\\x56\\x9c\\x92\\x52\\xb4\\xd3\\x6e\\xe4\\x6b\\x02\\x69\\xd7\\x06\\xe0\\x7d\\x2f\\xe8\\x78\\x7c\\x1d\\x75\\xde\\x35\\xc9\\x94\\x75\\xbd\\x48\\x94\\xd6\\x58\\xfc\\xc1\\x3f\\xe1\\xf1\\x25\\x18\\x84\\xe1\\x3b\\xbd\\x3f\\x1b\\x13\\x9c\\xa3\\x07\\x6f\\xcb\\x73\\x03\\x4b\\xbc\\x10\\x69\\x8b\\x55\\x53\\x5e\\x00\\x09\\xd4\\x60\\x20\\x48\\xd7\\xd7\\x54\\x2e\\x5e\\x7c\\xba\\xc8\\x5e\\x42\\xe9\\xd4\\xd1\\x12\\x5f\\xdf\\x53\\x80\\xbb\\x4e\\xbb\\x3e\\x12\\xad\\xf1\\x32\\x35\\x9f\\x25\\x4d\\x4c\\xf3\\x31\\xa6\\x23\\xca\\x3d\\x40\\xe7\\x0a\\x85\\x68\\x4f\\x4b\\x67\\x73\\x82\\x18\\x7f\\xf2\\xa0\\x15\\x5d\\xa2\\xc3\\xfd\\x0e\\xd0\\xe4\\x48\\x84\\x7d\\x4c\\xa3\\xf4\\x07\\x12\\xeb\\xb4\\x3f\\xf5\\xa1\\x7a\\xe5\\x7a\\xeb\\xca\\x23\\x39\\x87\\x32\\xd2\\xd2\\xfa\\x9a\\x06\\xe4\\x43\\xea\\x58\\x58\\x29\\x40\\xfc\\xa1\\xfe\\x51\\xcf\\x12\\x08\\xea\\xbc\\xdd\\xdb\\x39\\xfc\\x7b\\x43\\x6e\\xcf\\x65\\x23\\x09\\x34\\xb4\\x3e\\x99\\xfb\\xdd\\x38\\xc9\\x3d\\x56\\x41\\x51\\xc4\\x51\\xd7\\xc3\\x7f\\x00\\x22\\x25\\x9c\\x82\\x97\\x1f\\xc0\\xc2\\x3f\\x95\\x20\\x30\\xab\\xd7\\xd4\\xbd\\x58\\xaf\\x96\\x8b\\x79\\x59\\xe4\\xd9\\x7f\\x0f\\x18\\x4e\\xe1\\xbe\\x94\\x90\\xe4\\xb2\\x39\\xed\\x6e\\x3d\\x2f\\xdd\\x13\\x73\\x35\\x55\\x5b\\x62\\x7f\\x9f\\x45\\x40\\x21\\x46\\x4f\\xa5\\x22\\x3f\\x63\\x77\\xfb\\x01\\xa0\\x08\\x75\\x8c\\xf4\\x35\\xf1\\x13\\x1d\\xd6\\x90\\xf3\\x2d\\x64\\xe7\\xc1\\x68\\x4d\\xcd\\x65\\xeb\\x47\\xe2\\x7c\\xb2\\xaf\\x97\\xf3\\x7a\\x59\\xe4\\x40\\xe2\\x7a\\xbd\\xb9\\xda\\x1f\\xa8\\xb6\\x92\\x2c\\x6a\\x10\\xe8\\x62\\x47\\x50\\xd2\\x4b\\x87\\x0d\\x6b\\xc0\\xfb\\x0a\\x46\\xc6\\x9a\\x8a\\x13\\x33\\x8a\\xfb\\xcb\\x53\\x49\\xbd\\xd3\\x9c\\xe9\\xf5\\xb2\\xe3\\x01\\xb1\\x77\\xb3\\xca\\x02\\x27\\xe5\\x62\\x3c\\x12\\x24\\xa2\\xd4\\x05\\x48\\xad\\x3d\\xa4\\x83\\xae\\xc6\\xfd\\x90\\xa3\\x23\\xad\\xda\\x1a\\xaa\\x1b\\x21\\xb2\\x22\\xc8\\xb7\\x35\\xb6\\x13\\x2f\\x38\\x14\\x84\\xac\\xc2\\x8a\\xfa\\xea\\x9c\\x8b\\x1a\\x3f\\xfa\\xf0\\xcf\\x50\\xea\\xf1\\xf0\\x55\\xb2\\xb5\\x8d\\xa5\\x0d\\x35\\x24\\xa0\\x95\\x80\\x11\\x04\\x4d\\x04\\x0a\\x81\\x4a\\x70\\xc2\\xef\\x35\\x78\\x75\\xda\\x1e\\x69\\xc8\\xdb\\x97\\x73\\x39\\x47\\x7b\\x39\\x1a\\x0e\\xea\\xaa\\xa4\\x89\\xa3\\x4f\\x47\\xbc\\x3d\\xdf\\x06\\x52\\x6f\\x34\\x27\\x12\\x50\\x7c\\xd0\\xc0\\x48\\x81\\x2d\\x15\\xac\\x24\\x42\\x7f\\x50\\xf8\\x0d\\x51\\xbd\\x35\\xa4\\xcf\\x50\\x89\\x96\\xb1\\xab\\x9d\\x60\\x20\\xea\\x2e\\x2e\\xe6\\x4c\\x08\\xb2\\x86\\x3c\\x91\\x91\\xad\\xd3\\x37\\x0a\\xce\\x85\\x7d\\x02\\x71\\x3c\\x71\\x57\\x7a\\x26\\x36\\x48\\x39\\x23\\xc7\\x95\\xea\\xf2\\x3f\\xf0\\x78\\x74\\x64\\x95\\x61\\x9f\\xd3\\x99\\x8d\\x9b\\x1c\\xa7\\x80\\x67\\x46\\x97\\xe4\\x58\\x5c\\x01\\x2f\\x94\\x43\\xa7\\xbc\\x5f\\x23\\x6e\\x81\\xc2\\x43\\x71\\xac\\xa0\\xce\\x35\\xc9\\x58\\x4f\\xc2\\x7a\\xb3\\xb9\\x5e\\x41\\x0a\\x20\\x05\\x08\\xf8\\xdd\\x56\\xc9\\x12\\xd9\\x03\\x5c\\xa0\\x74\\x25\\x39\\xbd\\x6b\\xfe\\xf2\\x74\\x3d\\xef\\x77\\xb6\\x55\\xcc\\x54\\x09\\x0d\\x4f\\x2b\\xd2\\x02\\x5e\\x91\\x50\\x63\\x38\\x94\\x8d\\xef\\x77\\x90\\x64\\x7f\\xd4\\xdb\\xbc\\x2b\\x55\\x43\\xea\\x25\\x9e\\x6a\\x48\\x46\\x7a\\xf4\\x08\\xe9\\xca\\x4e\\x48\\x32\\x25\\x22\\x15\\x12\\x96\\xf7\\x18\\x9a\\x4b\\x80\\xb8\\xde\\x6e\\xae\\x50\\xc4\\x1a\\xf5\\x3a\\x1e\\x93\\x1e\\xf4\\x0e\\x10\\x22\\x68\\x41\\x67\\x97\\x4e\\xd4\\xc8\\xb3\\xe3\\x5e\\x7d\\xd2\\x9f\\x16\\xc6\\x08\\x63\\xc8\\x73\\x5e\\xa0\\x4a\\x60\\x0d\\x02\\x39\\x51\\xf3\\x01\\x3d\\xab\\xf9\\x75\\xd6\\x5c\\x6e\\x1c\\xaa\\x22\\x7a\\x0e\\x0a\\xb2\\x50\\x47\\x5c\\xd8\\xab\\xfe\\x34\\xda\\x4b\\x2b\\x37\\xfb\\xad\\xaa\\xf7\\x11\\x87\\x77\\x7f\\xd9\\x50\\x3d\\xd8\\x3a\\x4e\\x12\\x70\\x38\\x08\\x67\\x47\\x83\\x7c\\xbc\\x25\\x6c\\x05\\x0e\\x2c\\x9a\\x15\\xe6\\xc1\\xd1\\xac\\x25\\xa2\\xca\\x2a\\x81\\xad\\x62\\xdc\\x91\\x2b\\x2c\\x5c\\x78\\x82\\x75\\xc5\\xe9\\x68\\x86\\x07\\x72\\x5f\\xeb\\xf5\\xf6\\x86\\x79\\xe1\\xa7\\x7f\\x6e\\xaf\\x17\\xc5\\x1e\\xa1\\x4c\\xff\\x18\\x01\\x00\\x3c\\xa2\\x65\\xec\\x29\\xfb\\x80\\x4d\\x2b\\x20\\xf3\\x56\\x88\\xa1\\x11\\x18\\xb1\\x78\\x41\\x03\\xad\\xb7\\x98\\xc3\\xfc\\x33\\x80\\x82\\x38\\xc4\\xad\\x8a\\x70\\xe0\\x07\\xe6\\x51\\xba\\x45\\xaf\\xbc\\x66\\x6c\\x1f\\x8b\\x38\\x7a\\x6f\\xef\\x6a\\xf6\\x54\\xcc\\xdf\\x43\\xeb\\xb1\\x5b\\x7d\\x2c\\x81\\x13\\xc9\\xb0\\x26\\x3d\\xed\\x5a\\x69\\xb5\\x48\\x2f\\x43\\x46\\x51\\x9b\\xea\\xce\\xc7\\x48\\x84\\x41\\x32\\x42\\x09\\x76\\x51\\xb6\\x90\\x23\\x23\\x0f\\x52\\xb4\\x95\\xe7\\x8d\\x9c\\x58\\x11\\xcf\\x14\\xe2\\xcd\\xb6\\x0b\\x94\\x09\\x28\\xb1\\x7a\\xd9\\x33\\x19\\xaa\\x8f\\xcc\\xe5\\xfa\\x7e\\x43\\x6a\\xf8\\xef\\xaf\\xd8\\x91\\x35\\x5d\\xcc\\x34\\xc3\\xc1\\xe3\\x5c\\xc1\\x10\\x17\\x1b\\x02\\x88\\xe3\\x93\\xc1\\x6a\\x8a\\x61\\x07\\x6c\\x34\\x68\\xb7\\x77\\xd6\\x9b\\x98\\xef\\x97\\x42\\x93\\x5b\\xe7\\x2a\\x51\\x87\\x4b\\x70\\x6d\\x61\\xa3\\x49\\x82\\x4c\\xe0\\x2c\\x8d\\xca\\x65\\x5e\\xcf\\x0b\\x74\\xc4\\xe1\\x2a\\xb1\\x11\\x67\\xce\\xa3\\x16\\xa6\\xe8\\x2d\\xe1\\x16\\xfe\\x79\\x45\\x4d\\xfe\\xba\\xf8\\x36\\xc0\\x65\\xb7\\x1e\\x2b\\xb6\\x94\\x98\\x5c\\x47\\xd4\\x54\\x19\\x81\\x56\\x7d\\xd6\\xf6\\x0a\\x68\\xdf\\x5e\\x9d\\x6d\\x67\\x32\\xc6\\xe8\\x5e\\x22\\x3f\\x8f\\x44\\x00\\x12\\x68\\x89\\xdb\\xaa\\x8d\\x52\\x2b\\xde\\xa8\\xc3\\x69\\x32\\xa1\\x89\\xac\\x35\\x37\\x55\\xb9\\xcc\\xcd\\x8c\\x97\\x2e\\x51\\x6b\\xfb\\x03\\x47\\x96\\xa6\\xec\\x19\\x08\\xcf\\x68\\x29\\x0e\\x47\\x43\\x6a\\x85\\xdb\\x21\\x3f\\xed\\x24\\xd6\\x1a\\xb0\\x47\\x08\\xdd\\x5e\\xc2\\xdc\\x6f\\x70\\x39\\x19\\x25\\x12\\x93\\x73\\x0e\\x2c\\x7b\\x7a\\x00\\x85\\x41\\xd6\\x2f\\x29\\x3e\\x68\\xbb\\x83\\x03\\xdd\\x29\\x72\\x9c\\x37\\x4c\\xda\\x66\\xac\\x51\\x90\\x72\\x42\\x04\\x32\\xbd\\x3e\\xa4\\x59\\x3a\\x6f\\x73\\xd0\\x70\\x84\\x6a\\xa5\\x12\\xb7\\x93\\x1f\\x0f\\x0b\\x4d\\x88\\xa6\\x82\\x10\\x7b\\xe3\\x42\\x4f\\xd4\\xbc\\x0d\\xd0\\xae\\x7c\\xad\\x0a\\x4f\\xd4\\xe1\\x71\\x79\\x10\\x1b\\x8f\\xaa\\x18\\x62\\x08\\x47\\x29\\xf9\\xf2\\xfd\\x44\\xdf\\x71\\xd4\\x06\\xbc\\x8a\\x08\\x16\\x14\\xcc\\xba\\x51\\x2b\\x98\\x02\\xe9\\x58\\x65\\x79\\x13\\x8c\\xef\\x6d\\xa3\\x61\\xe7\\xeb\\x45\\xfc\\x10\\xec\\x31\\xb9\\x14\\x96\\x08\\x5b\\xba\\x73\\xc7\\x3a\\xc0\\x2e\\x03\\xd4\\x60\\x40\\x4c\\xd1\\xc8\\x16\\x50\\x09\\xde\\xba\\x3f\\x16\\x37\\xe4\\xe1\\x22\\xa2\\xf7\\x24\\xe4\\xf1\\x19\\xa9\\x77\\xe7\\xac\\x3d\\x1a\\xd1\\xe4\\x5c\\x36\\xab\\xb2\\x60\\x0d\\x06\\xdb\\x87\\x38\\x15\\x80\\xe9\\x60\\x9d\\xc0\\xf5\\xbd\\xc1\\xaf\\x0d\\x36\\x81\\x54\\x82\\xb5\\xb5\\x6f\\xdc\\x74\\xce\\x75\\x28\\xda\\xb8\\x45\\x21\\x2f\\x5a\\x04\\x71\\xfc\\x16\\x7f\\x33\\xc3\\x1a\\x4e\\xd3\\x1e\\x2a\\xc8\\x28\\x8b\\xc7\\xf1\\x06\\x69\\x46\\xb0\\xf1\\x4a\\x06\\x09\\x21\\x1d\\x4f\\xe6\\x38\\x97\\x35\\x11\\x98\\xd0\\x82\\xcb\\x08\\x14\\x49\\x01\\x32\\x17\\x05\\x31\\x23\\x0b\\xa9\\xb3\\x1e\\xdd\\x46\\x80\\x57\\x71\\x4a\\x1e\\x82\\xa0\\x06\\xd1\\xd1\\x82\\x9b\\xfd\\x01\\xcf\\x01\\x4f\\x8c\\x08\\x6e\\x0f\\x20\\xdc\\x0e\\x6b\\x79\\x5a\\xd4\\x07\\x24\\xae\\xa0\\x58\\xa0\\xd3\\x69\\x11\\x5d\\xdc\\x68\\x82\\x98\\x99\\x5d\\x5f\\x04\\xc3\\x45\\x0e\\x21\\xf1\\x8e\\xf6\\x14\\x3c\\x8d\\x7c\\x85\\x84\\x1a\\x2c\\xca\\xd8\\x43\\x64\\x30\\x3b\\x24\\x1f\\x60\\x78\\x59\\x69\\xb0\\x36\\xab\\x7d\\xe0\\xf1\\xec\\xf4\\xe3\\xed\\xf0\\xf3\\xf8\\xb3\\x33\\xc4\\x4c\\x9b\\x70\\x70\\x3f\\xf6\\xf6\\x66\\x52\\x3d\\xbc\\x87\\xdc\\xdd\\x83\\xea\\xb0\\xc3\\xd8\\x2d\\xb6\\xac\\xa0\\x60\\x50\\x08\\xc9\\xd8\\xd1\\x35\\x90\\xbd\\x85\\xe4\\x00\\x0c\\x24\\xaa\\x04\\xc9\\x26\\x97\\xf0\\xea\\x4f\\xd2\\xb4\\x41\\x2e\\xb9\\x90\\x7d\\x7d\\x95\\x40\\x95\\x05\\xd8\\xa0\\x82\\x07\\xc3\\x39\\x81\\x08\\xe2\\xb3\\xbe\\xaa\\xcb\\x7e\\x97\\x8e\\x3c\\xce\\x29\\x72\\x7f\\xb9\\x5c\\xe4\\x7c\\x3c\\x65\\xe0\\x85\\xb4\\x11\\x39\\xe6\\x03\\xe7\\x2b\\xf8\\x0c\\xc2\\x43\\x4c\\x00\\x94\\xf1\\xa2\\x5d\\x03\\xd9\\x10\\xb8\\x43\\x50\\x09\\x92\\x4d\\x2e\\xe1\\xd5\\x9f\\x24\\xb8\\xb1\\xe6\\x43\\xa2\\x39\\x5d\\xf8\\xa5\\xd8\\x5b\\x4a\\xb6\\x8e\\xb0\\x75\\x19\\xb4\\x84\\x97\\xb7\\x5e\\x61\\x79\\xb2\\x15\\xdb\\x7a\\x5b\\xe6\\x29\\x8c\\x27\\xdc\\x95\\x9b\\x2a\\x8a\\x27\\x93\\xea\\xe2\\xf0\\x2b\\x58\\xa8\\x21\\x08\\xf3\\xe8\\xba\\xf7\\x76\\x8b\\xd9\\x51\\x18\\x1b\\xe6\\x7a\\x8d\\x2c\\xf8\\x5a\\x86\\x4f\\x3f\\x59\\x27\\x1e\\x39\\x3d\\xf4\\xa6\\x53\\x50\\x80\\x43\\x02\\x99\\x2a\\x47\\xf2\\xc7\\x23\\xd3\\x4c\\x05\\x36\\x35\\x18\\xef\\xf8\\x28\\x86\\x82\\x47\\x3d\\x67\\xdd\\x04\\xb3\\x27\\x74\\x33\\x50\\x15\\x14\\x96\\xc0\\x65\\xda\\x46\\xd3\\x3e\\x68\\xf4\\xc5\\x91\\x12\\x60\\x79\\xac\\xe3\\x71\\x27\\x16\\xcb\\x47\\x57\\x4c\\x3c\\xc1\\xd9\\x1f\\x1f\\xbe\\x29\\xac\\x7f\\x52\\x5c\\xf3\\xda\\x2d\\xe9\\xb1\\x77\\x6e\\x9c\\x2f\\xaf\\xbe\\xc2\\xd0\\x21\\x75\\x30\\xdb\\x80\\xc8\\x4e\\x96\\x6b\\x20\\x1b\\x90\\x52\\x43\\x23\\xb6\\xe1\\xb8\\x08\\xb5\\xeb\\xfe\\x77\\x12\\xc5\\xf9\\x1f\\xe1\\x81\\x4e\\x7d\\xef\\xc7\\x24\\x36\\x35\\xb3\\xee\\x0c\\x48\\x47\\x03\\x9a\\x92\\x9e\\xfe\\x18\\x71\\x03\\xde\\x6d\\x93\\x61\\x8e\\x6b\\x1c\\xc2\\x50\\xfd\\xc2\\xd6\\x33\\x49\\x4b\\x1b\\x82\\x26\\xbc\\x3d\\x07\\x9a\\x26\\xf5\\xf2\\xfb\\xb2\\xed\\x6a\\x80\\xcb\\x38\\x69\\xd6\\xf8\\xd1\\xc6\\x33\\xf1\\x0b\\x0d\\xf8\\x54\\xa9\\x5d\\x6d\\xa4\\xd8\\xed\\x53\\xca\\x51\\xbf\\x8e\\x65\\xc6\\x6f\\xeb\\x5d\\x95\\xb5\\x5d\\x0c\\x2a\\xee\\x6e\\x13\\xc2\\x49\\x81\\xc8\\x7d\\x62\\x8d\\x1c\\xa8\\xef\\xda\\x14\\x43\\x96\\x54\\xab\\x82\\x50\\x5f\\x2d\\xdd\\x10\\x8a\\x5e\\x2a\\x87\\xc1\\xfd\\x48\\xb5\\xf8\\xb6\\x7c\\x29\\x7b\\x05\\x20\\x1b\\xa2\\x7e\\xaf\\x21\\x87\\x43\\x49\\x65\\xb4\\xaf\\x85\\x90\\x27\\x42\\xd8\\xf8\\x34\\x7c\\x81\\x13\\xd1\\xe3\\x55\\xb5\\x2f\\xc3\\x75\\x29\\x47\\x70\\x1c\\x71\\x37\\xb9\\x12\\xe6\\x7c\\x29\\x7b\\xd7\\x23\\x76\\x6a\\x41\\x32\\x2b\\x2a\\xa4\\xb2\\x1c\\x00\\xbd\\x84\\xb2\\xcf\\x87\\xe5\\xd8\\xeb\\x2b\\x96\\x48\\x99\\xb8\\xe3\\x13\\xeb\\x91\\x2b\\xa1\\xfa\\xcb\\xfd\\x46\\x47\\x65\\x48\\x66\\x45\\x85\\x54\\x96\\x83\\x55\\x13\\x71\\xcd\\x4e\\xac\\x33\\x12\\x97\\x43\\x37\\x51\\x4d\\x43\\xe0\\xef\\x5d\\xcd\\x9d\\x92\\x58\\xdc\\x07\\xae\\xe2\\x9c\\x3a\\x2d\\x84\\xd6\\xde\\xf0\\x57\\xc1\\x68\\x0e\\xf3\\x70\\xbf\\xa3\\xb1\\xd6\\xc4\\xd4\\x43\\x59\\x6c\\x91\\xc3\\x0e\\xc4\\x8c\\x00\\xd0\\xc8\\xaf\\x12\\x57\\x65\\x17\\x6c\\xb7\\x9e\\x8c\\xfc\\xb5\\xd1\\xa7\\xd1\\x87\\xbb\\xeb\\xe5\\xd0\\x7e\\x0e\\xec\\x23\\x95\\xe1\\xa9\\x97\\x5a\\x88\\x13\\x9a\\xd4\\x38\\x12\\xb9\\xd1\\x90\\x58\\x19\\xd8\\x07\\xcd\\x50\\x08\\x48\\x39\\x8f\\x78\\xb6\\x9c\\x24\\xd9\\x84\\x17\\x20\\x15\\x07\\x36\\x6e\\xf1\\xa0\\x78\\x48\\xaa\\x23\\x27\\xf0\\x19\\x7f\\xf3\\xb0\\xf8\\x81\\x14\\x47\\xdb\\x5b\\x2e\\x8b\\x2d\\x72\\x80\\x86\\x7f\\x52\\x54\\x72\\x49\\xa4\\xf6\\xb5\\xbf\\xb6\\xd2\\x8d\\x5a\\xed\\xaf\\x3d\\x0f\\xba\\x7f\\x3d\\x61\\x28\\x9e\\x60\\xc2\\x88\\x94\\xee\\xf3\\x1c\\x34\\x11\\xe7\\x5a\\xda\\x2f\\x27\\x03\\xf6\\x7c\\xf4\\x8f\\x97\\xb8\\xc2\\x42\\x36\\x89\\x70\\x7a\\x20\\xb2\\x84\\x80\\x7c\\x84\\xc4\\x1a\\x08\\xde\\x0f\\x47\\xd8\\xd0\\x19\\xc3\\x01\\x04\\x9b\\xbe\\xc8\\xe9\\xa1\\xb0\\x64\\x16\\xc6\\x47\\x54\\x69\\x0a\\xf8\\x7e\\xb3\\x5e\\x2e\\xbc\\xc1\\x5e\\x2b\\x5e\\x20\\xa5\\x6e\\x1c\\x78\\x62\\x70\\xa0\\xc7\\xb6\\x1b\\xf0\\x3e\\x9e\\x8a\\x3c\\xbc\\xdf\\x17\\x86\\x6d\\xec\\xe7\\x42\\x10\\xf0\\x2f\\x43\\xaa\\x2e\\x45\\x09\\xae\\xe7\\x6a\\xc3\\xde\\xb1\\x17\\x36\\x19\\x4a\\xf8\\xb2\\x92\\x84\\x72\\x8d\\x70\\x8b\\x8e\\x4b\\x49\\xf8\\xb8\\xb9\\x62\\xa8\\x15\\x82\\xfe\\x20\\xf2\\x74\\x5b\\x8b\\xc5\\x7c\\xb2\\xc8\\xc0\\x9e\\x7c\\x22\\x0d\\x3d\\xd5\\x3a\\x59\\xbc\\xa4\\xf7\\x3e\\x3e\\xa8\\x65\\x70\\x6b\\xe9\\x22\\xd2\\x30\\xb8\\x8b\\x7b\\x29\\x17\\x70\\x48\\x1b\\xb6\\x29\\xf3\\x20\\x03\\x60\\x23\\xcd\\xf8\\x9d\\x17\\x26\\xc4\\x33\\xde\\x3b\\x2f\\xd2\\xd9\\x2c\\x8b\\xec\\x7e\\x55\\xc8\\x9a\\x71\\xe4\\x71\\xba\\x71\\x8a\\x25\\xe0\\xab\\xdb\\xb5\\xb4\\xea\\xe5\\x98\\x7a\\x9a\\xa5\\x15\\x60\\xa2\\x75\\x37\\x9a\\xd5\\x94\\xfb\\xfc\\xd3\\xce\\x64\\xac\\x0e\\x8c\\xd6\\xa7\\x9a\\x09\\x60\\x45\\x19\\xf5\\xc9\\x61\\x49\\x0f\\xf3\\x36\\x04\\x96\\x8a\\x1d\\xc4\\x00\\x7c\\xe9\\x41\\x85\\x1a\\xed\\xe8\\x42\\x34\\xfb\\x0d\\xc9\\xfc\\x3e\\x4d\\x81\\xcb\\x70\\x18\\xec\\x4a\\xe4\\x59\\x58\\xfa\\x73\\x21\\x65\\x9c\\xe6\\x3a\\xed\\x3b\\x41\\x82\\x26\\x08\\x50\\x38\\x9b\\x7f\\xdf\\xfd\\xd8\\x8c\\xf7\\xbd\\xad\\xe7\\xcf\\x1f\\x4f\\x67\\xf3\\x20\\xb1\\x56\\x00\\xef\\x65\\x64\\x51\\xeb\\x87\\xa1\\x8f\\xe9\\xef\\x6d\\x21\\xed\\xd4\\x7b\\x37\\x80\\x75\\x74\\x74\\xa9\\xd6\\x4c\\xd5\\xb2\\x82\\x91\\xf5\\x9a\\xb9\\x3e\\x09\\x06\\xf8\\xed\\x97\\xc1\\xfe\\xc6\\xc3\\xf9\\x88\\x1a\\xad\\x50\\x6c\\xc9\\xa3\\x4c\\x9f\\xf7\\xda\\xfb\\x9a\\x65\\xae\\xc2\\x15\\x4a\\x97\\x65\\xfe\\x93\\x04\\x64\\x15\\x42\\xe2\\xec\\x3c\\x7e\\x5c\\x41\\x97\\x5e\\x55\\xdc\\x02\\x15\\x3b\\x67\\xd8\\x40\\x78\\xb4\\x92\\x2c\\x5d\\x1a\\x55\\xc1\\x22\\x24\\xc9\\xab\\xf1\\x89\\x44\\x06\\x88\\xdd\\x70\\xba\\xe4\\x7a\\x85\\xf2\\x07\\x16\\xc9\\xf9\\xa9\\xfd\\xdc\\x7d\\x46\\x2f\\xbc\\x64\\x4c\\x1a\\x3d\\x0c\\x28\\xc4\\xad\\x3a\\xff\\x33\\x20\\x92\\x85\\xfe\\x13\\x72\\x9e\\xe5\\x61\\xad\\x15\\x61\\xcd\\xe7\\x32\\x47\\x0a\\x52\\x2a\\x36\\x16\\x2f\\x2a\\xae\\x9e\\x42\\x5d\\x05\\x3c\\xf3\\xd2\\x0f\\x58\\xbc\\x2a\\xed\\x7a\\xea\\x3f\\x38\\x18\\x88\\x6e\\xfd\\xd4\\x7d\\x6c\\x4e\\x26\\xb8\\x31\\x5d\\x2c\\xb1\\xdb\\xe0\\xad\\xb8\\xe2\\xb4\\x32\\xa7\\x17\\x58\\x07\\x82\\xcf\\xee\\xd2\\x11\\x63\\xbf\\x9f\\x53\\x55\\x11\\xd8\\x78\\x0c\\x2a\\xa1\\xb1\\x1e\\xca\\x15\\xb8\\x44\\xdd\\x06\\x10\\x7f\\xd7\\x9e\\xc0\\x2d\\xe6\\x97\\x86\\x1b\\xbf\\xf5\\x07\\x3f\\xfa\\x5f\\x80\\xd8\\xc8\\x3e\\x70\\x97\\xad\\xd8\\xc8\\xb1\\x20\\x5c\\xb6\\xb3\\xdb\\x4e\\x0b\\xf9\\x68\\xb2\\x50\\x29\\x42\\xfc\\x83\\x68\\xce\\x27\\x0c\\x78\\xfa\\xd9\\x41\\xd8\\x0f\\x75\\xa1\\xa0\\xe2\\x40\\x5b\\x6d\\x0f\\x0e\\x3b\\xef\\x98\\xb1\\x6d\\x2f\\x93\\xde\\x33\\x32\\x32\\xac\\x0d\\x19\\xa7\\x0d\\x1d\\x23\\xc0\\x16\\xb0\\x03\\xe2\\x5f\\xea\\x15\\x42\\xf7\\xc6\\xa1\\x9b\\x14\\xe6\\xe4\\xe2\\xeb\\xa7\\xec\\x15\\xa4\\x45\\xe8\\x1b\\xc6\\x0c\\xfc\\x7d\\xd9\\x74\\xa9\\xb1\\x08\\xa0\\x08\\xbd\\x84\\x0d\\x60\\x20\\x26\\xf6\\xf4\\x36\\x18\\x6c\\x57\\x3b\\xb3\\x25\\x28\\x7e\\x48\\x8c\\x25\\x44\\xc5\\xfb\\xd7\\x69\\x37\\x90\\xf8\\x06\\xf0\\x85\\x47\\x40\\xd2\\x60\\x34\\xcf\\xe8\\x30\\x42\\xf6\\xda\\xb7\\xd3\\x01\\x2e\\x14\\x14\\xcf\\xa6\\x90\\xe1\\xa9\\x72\\x70\\x9a\\x5f\\xa3\\x2f\\xa1\\xed\\x04\\xda\\xe2\\x7f\\xcb\\x58\\x97\\x7d\\xf8\\xa5\\xc5\\x31\\x6d\\x19\\x89\\xbe\\xf8\\x4a\\x66\\xe6\\xe3\\x59\\x2c\\x18\\xa6\\xb7\\x12\\xfd\\x9d\\xc1\\x77\\xa4\\x12\\xb9\\x07\\x93\\x4c\\x02\\x0a\\x3a\\x23\\x0d\\x9a\\xa1\\x12\\x5b\\x81\\xba\\x19\\x57\\xe9\\x61\\x44\\xfe\\xf7\\x50\\xc8\\x2a\\xb2\\x65\\x02\\x4b\\x45\\xc4\\xef\\xa8\\x2e\\x58\\xa1\\x6e\\xf0\\x5b\\xe1\\xa0\\xee\\xb4\\xc7\\xc0\\x68\\xf2\\xf4\\xfb\\x4f\\x9d\\xad\\x56\\x93\\xa9\\x2a\\x02\\x8d\\x93\\xa0\\xcd\\x74\\xa7\\xa0\\x32\\xa7\\x95\\x6f\\x3d\\x3e\\xa6\\xd5\\x1a\\xa9\\x4c\\x8d\\xe4\\xc1\\xa9\\x0e\\xca\\xd9\\x59\\xaa\\x91\\x00\\x09\\x5e\\x6e\\x82\\xa3\\x2b\\xea\\x43\\xf4\\xef\\xc7\\x11\\x5d\\x52\\xb3\\x6a\\x55\\x59\\x31\\x95\\xe4\\x01\\x27\\xd1\\xe5\\xd8\\x22\\x40\\x12\\xcd\\x60\\xc9\\x52\\xb4\\x61\\x13\\x19\\x91\\xf4\\xd0\\x54\\xee\\x1e\\xf3\\xfb\\x88\\xe9\\xae\\x6a\\x3e\\x2b\\x89\\xc6\\x0c\\xa2\\x38\\x08\\x9e\\x0d\\x47\\xe5\\xa4\\x8c\\x22\\x27\\xc0\\xcd\\xb9\\x61\\xfe\\xb8\\x69\\x4d\\xb5\\x3f\\xfd\\x60\\xdb\\xf5\\x52\\x93\\x70\\x12\\x7d\\x82\\xb6\\x64\\x71\\x5b\\x3e\\x3f\\xf9\\x5e\\x15\\x35\\xc4\\x64\\xae\\xbe\\x81\\x06\\x2c\\x95\\x4a\\xd7\\xc4\\x2c\\xd6\\x96\\x88\\x65\\x65\\x98\\xa9\\xaa\\xb0\\x96\\xa5\\x7a\\xf1\\x03\\xf1\\xae\\x17\\x65\\x5d\\xcf\\xcf\\x8d\\x0e\\xf7\\xce\\xf6\\xcd\\x56\\x6e\\x4e\\xc7\\xde\\x6a\\xb9\\x59\\xcf\\x0b\\x0a\\x83\\x82\\x2f\\xe5\\x97\\x8e\\xa6\\xde\\x2c\\xc6\\x26\\x36\\xd9\\xa6\\xae\\x36\\xce\\xce\\xa7\\x3b\\xe0\\x14\\x42\\x46\\x75\\x60\\x20\\x74\\x8b\\x04\\x8d\\x19\\xd9\\x67\\x8b\\xa2\\x30\\xca\\x3a\\x08\\x68\\xee\\x86\\x23\\xfc\\xa3\\x5b\\x20\\xea\\xf1\\xbe\\xe9\\x62\\x12\\x55\\x5d\\xa5\\xde\\xa8\\x0a\\xfc\\xec\\xd2\\xb4\\x98\\x82\\x3b\\xa7\\x9e\\xba\\x3d\\x7a\\x61\\xb3\\x9c\\xec\\x1c\\xd3\\xc0\\x9d\\x1f\\x39\\x3c\\xa1\\xbd\\xf6\\xc0\\x6b\\x39\\x35\\x73\\xc4\\xa7\\xac\\x7e\\x62\\x11\\x59\\x46\\xa6\\x53\\xf4\\xde\\x5e\\xba\\xd8\\x4c\\x64\\x82\\x69\\x60\\x6d\\x00\\x6c\\x3f\\x5d\\x1b\\x22\\xb1\\xf2\\x53\\x76\\x6c\\x55\\xc6\\xd2\\xb2\\xeb\\x17\\x78\\xfb\\x7e\\x06\\x60\\x9b\\x98\\xc4\\x2f\\x57\\x53\\x8b\\x9b\\xd8\\x33\\xae\\xc3\\x6f\\xc0\\x4b\\xda\\x30\\xe5\\xe0\\xc5\\xce\\xa0\\x47\\x8f\\x2d\\xa3\\x3a\\x53\\x5d\\x1c\\x33\\x47\\x37\\x7f\\x2c\\x9a\\x32\\x9c\\x3c\\x4f\\xcc\\x4e\\xdb\\x45\\x54\\x94\\x1e\\xe9\\x44\\x03\\x77\\x07\\x12\\x11\\x1f\\x1f\\xd7\\xa3\\x94\\x82\\xaf\\xa4\\xc9\\x60\\x50\\xaf\\x1b\\xd4\\xf5\\x71\\xc5\\x60\\x86\\x95\\x96\\x8b\\xe1\\xec\\xc1\\x02\\xce\\xa4\\x20\\x83\\xbe\\x05\\xa8\\x3c\\x62\\xa6\\x81\\xb7\\x31\\xfe\\x67\\xb1\\x3b\\xe9\\x05\\x33\\x7c\\xde\\xfd\\x91\\x22\\xda\\x65\\x01\\x97\\x40\\x05\\x87\\xa8\\x19\\x52\\x8d\\x0f\\x23\\xb6\\xc6\\x2b\\x7a\\xfb\\x2d\\x4e\\xe0\\x30\\xa4\\x25\\x63\\xe6\\x2b\\xb8\\xc5\\xa4\\x54\\x46\\xd3\\xd2\\x86\\x90\\xdc\\x69\\xfa\\x08\\xe2\\x2c\\x37\\x03\\xb0\\xf1\\xc2\\x84\\x51\\x1f\\x3c\\xd9\\xbf\\x26\\x68\\x8d\\x71\\xcd\\x74\\xac\\x6d\\x49\\x7c\\xbd\\x30\\xe5\\x3c\\xca\\xb5\\xd6\\xcd\\x73\\x8d\\x6f\\xa8\\xdb\\x8d\\x55\\xc7\\x75\\x98\\x09\\x37\\x2c\\x1f\\x24\\x6d\\x68\\x2a\\x9b\\xfb\\x83\\xba\\xce\\xe1\\x2c\\x6d\\x3c\\xea\\x6a\\x48\\x99\\x24\\xb3\\xa3\\x62\\x2a\\xcc\\x83\\x0a\\xbb\\xbe\\xe3\\x66\\x86\\xb6\\xb5\\x51\\xf4\\xde\\x6e\\x3c\\x9d\\xce\\xdd\\xe0\\xda\\x45\\x8a\\x36\\xeb\\xe8\\x7e\\xf3\\x54\\x74\\xd5\\x5a\\x53\\x33\\x36\\x1d\\x24\\x20\\x09\\xf4\\xb7\\x81\\xed\\x7e\\x6c\\xbf\\x73\\x55\\x7f\\x31\\x64\\x7c\\xd6\\x81\\x89\\x7a\\x38\\x3e\\x34\\xb2\\xb8\\xcd\\xd3\\xc0\\x2e\\xd4\\x8c\\xed\\x90\\x50\\x42\\xa3\\x7c\\x84\\xa3\\xaa\\x64\\x3e\\x60\\x59\\x9c\\xda\\x0a\\x83\\xcc\\xf5\\xa1\\xb2\\x6c\\x73\\xcb\\x5c\\x1a\\xc6\\xc1\\xb4\\x0e\\x5a\\x7f\\x57\\xeb\\xb7\\x66\\xd4\\x3a\\x5f\\x2a\\xb1\\xdc\\xad\\x77\\xf0\\x47\\xfa\\x73\\x4d\\x46\\x6a\\x93\\xdc\\x63\\xa9\\xb4\\x3c\\xbf\\x13\\xbe\\x49\\xcd\\x31\\x0b\\x59\\x25\\xbe\\x22\\x61\\x56\\x85\\x98\\xf9\\xda\\x60\\x99\\x3f\\xe7\\x4f\\x63\\x73\\x33\\x63\\x4b\\xe3\\x4b\\xd1\\xa2\\xb1\\x9a\\x1b\\x95\\xfd\\x2c\\xa1\\x00\\x62\\x40\\x51\\x0d\\xe0\\xd5\\xd1\\x29\\x34\\xcf\\x8b\\xd8\\xe6\\x3a\\xa7\\xb1\\xc2\\x19\\xf7\\xe9\\xe9\\x03\\x0a\\x35\\x29\\x17\\xe8\\x5b\\x3c\\x4c\\xf4\\x00\\xf4\\xca\\x01\\x54\\x74\\x12\\x15\\x0e\\x33\\x0d\\xbc\\xd1\\x6a\\xeb\\xce\\x57\\xb3\\xf0\\x7c\\xce\\x01\\xe1\\xde\\x75\\xd8\\x5d\\x73\\x58\\xea\\x5c\\x58\\x9b\\x3b\\x85\\xf5\\x4f\\x87\\x43\\xb9\\x6b\\x2e\\xdb\\xa3\\x51\\xa2\\x26\\x0f\\xe8\\x9b\\xf8\\xaa\\x4f\\xa2\\x70\\xac\\x28\\xfa\\x5c\\x25\\xcb\\x7b\\x8d\\x29\\x53\\xc9\\x70\\xa0\\xb7\\x39\\x10\\xc4\\x55\\x2e\\x1e\\xc1\\x59\\xeb\\x94\\xf4\\xe6\\x4f\\xa0\\xb0\\xc1\\x08\\xdb\\x37\\xcd\\x79\\xcc\\x79\\x97\\x15\\xb1\\x67\\xc7\\x91\\x79\\x71\\x58\\x3e\\x2d\\x22\\x14\\x1b\\x8d\\x7c\\x51\\xc4\\x90\\xe3\\xbe\\xd5\\xde\\x38\\x22\\xb2\\xf9\\xf1\\x54\\x3f\\x65\\xaf\\x20\\x2d\\x9d\\xad\\x7d\\x8b\\x82\\xa9\\x8d\\x80\\x64\\xbb\\x22\\x27\\xb5\\x90\\x31\\xdf\\xf2\\x78\\x2e\\x64\\xab\\x88\\x6f\\x42\\xac\\xbe\\x53\\x6d\\xb2\\x10\\xae\\x68\\x01\\x7a\\x1f\\x09\\xb6\\x07\\x17\\x38\\xc1\\x72\\x81\\xe5\\x51\\xb6\\xe9\\xaa\\x6e\\x77\\xf3\\x42\\xae\\x86\\x3d\\xd6\\xe4\\x50\\x72\\x2e\\x2d\\x45\\x57\\xf7\\x06\\x4f\\xd7\\x6d\\x21\\xd8\\xf8\\xe0\\x54\\xc1\\xc7\\xde\\x35\\x61\\xe7\\xd1\\x6b\\xb1\\x95\\x8e\\x31\\xd6\\xe2\\x6b\\xa6\\x6c\\x73\\xba\\x89\\x81\\xea\\x4f\\x7e\\x30\\xf1\\x7b\\xbb\\xc2\\xb8\\x2c\\x14\\xe1\\xe0\\x8b\\xa7\\x0e\\x61\\xcb\\x97\\x0f\\x8c\\xd8\\xc7\\x56\\xee\\x14\\xdf\\xd7\\x3f\\x6a\\x59\\x41\\x4f\\xb3\\x19\\xd1\\x71\\x43\\x59\\x22\\xbd\\x67\\xbf\\x94\\x91\\xef\\xa2\\x4b\\x8c\\x03\\x35\\x21\\x4c\\xcd\\x4c\\xf4\\xb4\\x05\\x96\\x18\\x3f\\xfa\\x99\\xc6\\x26\\x1c\\xdf\\xbc\\xd9\\xc9\\xd8\\xbd\\xbd\\x09\\x34\\x93\\x7c\\xca\\x64\\x44\\x16\\xa0\\xc9\\x0a\\x90\\xf8\\xe0\\x81\\xe6\\x07\\x41\\xb2\\xbd\\xd5\\x15\\x68\\x5e\\x28\\xdb\\x9e\\xb0\\x94\\xe2\\xd4\\x52\\x30\\x91\\x96\\xec\\xd8\\x1e\\x07\\xdf\\xea\\xef\\x35\\x23\\x9a\\x80\\xeb\\x4b\\x18\\xdd\\x00\\xc1\\xf5\\x64\\xa1\\x8b\\xc4\\x58\\x05\\x4d\\x63\\x59\\xe8\\x1c\\x37\\x32\\x1b\\x1b\\xd5\\xb6\\x80\\x39\\xa9\\xa9\\xb6\\x74\\x18\\xc3\\x50\\x12\\xe0\\xc4\\x52\\xec\\x47\\x10\\x83\\x0d\\x7d\\x5f\\xad\\x35\\xd2\\x5b\\x1b\\x4a\\x9c\\x58\\x42\\x3c\\x70\\x4f\\xb1\\x9e\\x76\\x20\\x9f\\xd9\\x1c\\xc5\\x32\\x26\\x5a\\xc4\\xe6\\xf9\\x49\\xfd\\xa0\\x34\\x45\\xb7\\x17\\x0c\\x00\\x8b\\x74\\x7a\\x29\\x96\\x00\\x30\\x0c\\x13\\x10\\xd7\\xc6\\x5b\\x7f\\x9e\\xc0\\x9e\\xda\\x9a\\x59\\x5b\\x45\\xc0\\x42\\x11\\x41\\x42\\x76\\x10\\x05\\x54\\x3c\\x93\\xac\\xf3\\x99\\x96\\x8a\\x75\\xde\\x78\\x2a\\x19\\xa0\\x46\\x00\\x09\\x67\\x14\\x9d\\x88\\x0b\\x9b\\xd2\\x47\\x49\\x50\\xe2\\xe1\\xe2\\x09\\x87\\x69\\x94\\x30\\x58\\x90\\xb0\\xc6\\x13\\xc1\\xa2\\x18\\x61\\x80\\x48\\xaf\\x24\\xa9\\x41\\xcd\\x2c\\xc8\\xce\\xa7\\x18\\xa9\\xe2\\x8b\\x83\\xba\\xb7\\xe7\\x33\\x1d\\x47\\x87\\x05\\x70\\xd8\\xbe\\xf5\\xe6\\x91\\x61\\xd9\\x69\\xce\\x37\\x23\\x13\\x71\\x82\\x8d\\xa7\\x02\\x28\\xd4\\x97\\x44\\xcd\\x8a\\x8a\\xcb\\x31\\x7a\\x8c\\x54\\x33\\x55\\xdf\\xaa\\x8c\\x43\\x5c\\x19\\xaa\\xcc\\x4e\\x3a\\x58\\x74\\xcd\\xdf\\x45\\xff\\xe9\\x27\\x3a\\x0d\\x8c\\x0c\\x48\\xb8\\xc1\\x44\\xd7\\x5b\\x64\\x6b\\xe7\\x32\\xfb\\x69\\x57\\x01\\xc8\\x5a\\x41\\xee\\x29\\x15\\x85\\x3e\\x87\\xfb\\x8b\\x4e\\x52\\x93\\xd3\\x2c\\xa8\\x80\\x4a\\x52\\x43\\xde\\xb4\\xa7\\x19\\xb9\\xbb\\xd9\\xf5\\xe8\\xa9\\x63\\x87\\x4d\\xc3\\x93\\x0e\\x5d\\xd9\\x30\\x47\\xda\\x9b\\x53\\x2f\\x52\\x8d\\x8f\\x21\\xc3\\xb2\\x63\\xe2\\x19\\x07\\xf0\\x78\\x05\\x4e\\x27\\xf7\\x3a\\x48\\xaf\\xd4\\x5e\\x78\\x96\\xa3\\xe7\\xdb\\xa5\\x33\\xc2\\x05\\x4b\\xcf\\x84\\xd3\\x73\\xe7\\xac\\xec\\x70\\x07\\x21\\xb3\\xb9\\x7b\\x0e\\x3d\\xaf\\xf0\\x08\\x5b\\x25\\xeb\\x43\\xbc\\x0c\\xd4\\x29\\x64\\x43\\xa3\\x7b\\x6a\\xec\\x10\\x07\\x3b\\x41\\xe1\\xdf\\xd3\\xfe\\x4e\\x7e\\xe5\\xa6\\xae\\xb4\\x0a\\xc7\\xf3\\xc5\\xc6\\x02\\x22\\x85\\x0d\\x95\\x25\\xa3\\xf4\\xc1\\x17\\x07\\xd0\\x15\\xa1\\x82\\x30\\xcb\\xc8\\x4f\\x3b\\xb6\\x91\\xd8\\xb3\\x51\\xb7\\xc0\\x61\\x8f\\x13\\x4e\\x23\\xb3\\x79\\x8d\\x2f\\xe4\\xe7\\x68\\xef\\xa0\\x00\\xb2\\x19\\x25\\xe1\\x7f\\xc7\\x96\\x95\\x82\\x7c\\x2a\\x03\\x70\\x56\\xdf\\xcf\\xb2\\x6f\\x22\\xf2\\x62\\xe2\\xa9\\x45\\x4a\\x2e\\x20\\xe0\\x7e\\xd2\\xf6\\xac\\x3b\\xe4\\x61\\x5d\\xe3\\x31\\x04\\xa0\\xb4\\xbc\\x5f\\xf7\\x2a\\xb3\\xfd\\x94\\xd4\\x99\\x74\\x67\\xc2\\xf1\\x50\\x0b\\x25\\x7e\\x6f\\xcf\\xf5\\xe3\\x49\\x0a\\x0f\\xb9\\x47\\x8d\\xf1\\xd6\\x34\\x0a\\x9e\\x63\\xf6\\x5a\\xc5\\x6d\\xf4\\x93\\x58\\x4d\\x59\\x37\\x59\\xd0\\xaa\\x11\\x5a\\x24\\x85\\xd0\\x86\\xd2\\x06\\x11\\x4b\\xc6\\x21\\x2c\\x16\\xd8\\x53\\xc7\\x2e\\x9a\\x73\\x58\\xc9\\xfa\\xf3\\x60\\x5c\\x90\\x7a\\xa2\\x6a\\x54\\x33\\x17\\x59\\xa6\\xa5\\xe9\\xb7\\x30\\xdf\\x29\\x9a\\x3a\\x9f\\x5d\\x7b\\xbb\\x76\\x6a\\x7a\\x01\\x13\\xe5\\x52\\x8a\\xe9\\xf6\\x27\\xf5\\xcb\\x6c\\xbd\\x4f\\x7b\\x3f\\xef\\xbd\\xee\\x3d\\xf5\\x9e\\x7b\\x9f\\xf7\\x7e\\x09\\x29\\xea\\xb0\\x41\\xfd\\xfc\\xed\\xfe\\xd2\\xf9\\x51\\x0c\\x14\\x59\\xd0\\x04\\x0f\\xef\\xb9\\x02\\x8a\\xde\\xa6\\xfc\\x34\\x96\\x4d\\x46\\xc2\\xa2\\x7e\\x65\\x3f\\xa3\\xd8\\x6f\\x1f\\xe2\\x29\\xb7\\xb9\\xa7\\x4b\\x08\\x51\\x67\\x3c\\x6a\\x15\\x19\\x1f\\xfb\\xbb\\xf6\\x75\\x50\\x66\\x0b\\x71\\x2c\\xe0\\x2a\\x89\\x9a\\x58\\x4f\\xaf\\x44\\xd7\\xea\\x7b\\x05\\x4e\\x63\\x02\\x0c\\x42\\x32\\x19\\x82\\x9a\\xe3\\xe1\\x69\\xe9\\xfd\\xf8\\xb0\\xf8\\xb3\\xc9\\xb2\\xad\\xa6\\xdc\\x36\\xb9\\x54\\x4b\\x12\\x97\\xdb\\x41\\x9a\\x98\\x25\\xea\\xc6\\x66\\x61\\x1b\\x3f\\x55\\x1f\\xd9\\xf9\\x14\\xcf\\xee\\x8b\\x96\\xaa\\xfa\\xe7\\x8a\\xab\\xca\\x63\\x09\\x3b\\x74\\x8e\\x64\\xec\\x66\\x2f\\xd5\\x10\\x09\\xd0\\xb8\\xf3\\xe7\\xf2\\x85\\x97\\x88\\x5f\\x87\\x70\\x18\\x2f\\xe4\\x2e\\x61\\x6f\\xa8\\xc8\\xad\\xa1\\x82\\x23\\xd2\\x2a\\xac\\x08\\xab\\x2c\\x2f\\xae\\x7e\\xa8\\x61\\x88\\x0c\\x7b\\x25\\x81\\x33\\xa4\\x30\\x00\\x58\\x71\\x4b\\x17\\xb9\\x0e\\x99\\x55\\x93\\x58\\x03\\xe1\\xf9\\x8e\\x23\\xff\\xa1\\x86\\x6a\\x13\\xad\\x5b\\x73\\xc0\\xa1\\x1a\\xb7\\xd7\\xd6\\x2c\\xe7\\x7e\\xa3\\x46\\xd9\\xbb\\xc3\\x14\\x7f\\x41\\xae\\x21\\xf6\\x0f\\x31\\xb8\\xc9\\x18\\xe0\\x3e\\x69\\x69\\x10\\x82\\xe7\\x37\\xf6\\x64\\xd4\\x54\\x27\\x60\\xd3\\x78\\x52\\x96\\x15\\xbd\\x13\\xd9\\x73\\x2c\\x64\\x03\\x0d\\x46\\xf4\\x2e\\x65\\xf6\\xa2\\x13\\x00\\x9d\\x41\\xd8\\x2b\\x05\\x94\\x9c\\xee\\x8b\\x32\\xff\\xca\\x09\\x83\\xc7\\x4f\\x13\\xed\\x47\\x68\\xfe\\xfc\\xc2\\x13\\x0d\\xa4\\x6a\\xf8\\x53\\x11\\xa1\\x3b\\x48\\x80\\x26\\x9c\\x71\\xaf\\xc2\\x6f\\x10\\xe0\\x89\\x5b\\x56\\xbd\\xa5\\x1d\\x99\\x3d\\x65\\x12\\x74\\xf7\\x93\\xd9\\xeb\\x62\\x36\\x9d\\x37\\x3d\\xdf\\xf4\\xd5\\xa6\\x97\\x9b\\x3a\\xad\\x5a\\x86\\xd1\\x8c\\x54\\xf4\\x14\\x5f\\x4f\\x24\\x61\\xf5\\xdb\\x28\\xe5\\xde\\x1d\\x1e\\xaa\\x53\\x35\\x1d\\xed\\x1d\\xc6\\xeb\\x03\\x89\\x67\\x73\\x9e\\x0e\\x42\\x61\\xf9\\xc8\\x36\\x8a\\x67\\x36\\x55\\x3a\\x08\\x1f\\xe4\\x6f\\x76\\x39\\xab\\x47\\x26\\x2f\\x4b\\x8a\\x78\\xc0\\x97\\x67\\x99\\x56\\xe7\\xca\\x77\\x71\\x16\\x36\\x34\\x12\\x25\\xfb\\x79\\x4a\\xc6\\xff\\x5d\\x0c\\x99\\x72\\x40\\x93\\x3c\\xb1\\x0c\\x4a\\x63\\xc9\\x40\\xe6\\x59\\x89\\x53\\x3a\\x77\\x08\\xd8\\xd1\\x03\\xa8\\xe6\\x1a\\x16\\xc0\\xad\\xe8\\x32\\xbd\\xec\\x34\\x48\\xb3\\x86\\xdb\\x27\\x31\\x16\\xed\\xa8\\xb4\\xa0\\x4d\\x9e\\x16\\x2c\\xc5\\xd8\\xc1\\x8a\\x99\\x99\\xa9\\x2e\\x68\\x71\\xb9\\x2b\\x54\\xbb\\xdd\\x52\\x03\\x85\\x24\\x49\\xde\\x69\\xae\\x85\\x9a\\x9b\\xac\\x98\\xa9\\x12\\x19\\x49\\xb2\\x02\\x41\\x14\\xf7\\x4a\\x35\\x76\\xfc\\x84\\xfa\\xe6\\xb6\\x01\\x4e\\x1b\\xcb\\x81\\x5b\\xdc\\xde\\xc7\\x83\\xbc\\xdd\\x5c\\x19\\x09\\x58\\x1c\\xa5\\x43\\x8a\\x95\\x4f\\xc4\\xb4\\xab\\x71\\xe7\\xda\\x83\\x9c\\x31\\x36\\x1b\\x24\\x9b\\x53\\xf9\\xf2\\xee\\x16\\x74\\x37\\xf3\\x57\\x2d\\x18\\x31\\x4c\\x60\\xea\\x09\\xa2\\x35\\x2b\\x57\\xd5\\x01\\x74\\x81\\xb7\\x16\\x72\\x3a\\x9a\\x74\\xb1\\xb5\\xc1\\x6c\\x66\\x8a\\x65\\x8e\\xcc\\xeb\\x1a\\xc0\\x46\\x0c\\xc8\\xb0\\xb1\\x27\\x4b\\x29\\x8c\\x37\\x50\\x53\\xe3\\x28\\x0c\\x1b\\x18\\xae\\x3a\\x55\\x37\\x63\\x33\\x1d\\x3c\\x56\\xe6\\x2c\\x6c\\xdc\\x85\\x05\\xdc\\xfc\\x5c\\x01\\xc4\\x15\\x90\\xb6\\x2a\\x96\\x28\\xd4\\x62\\x9e\\x28\\x01\\xc9\\x70\\x46\\x47\\x90\\xa6\\x31\\x45\\x6b\\x51\\x41\\x10\\x0a\\x97\\x6b\\xff\\x81\\x67\\x90\\x87\\x8a\\xde\\x34\\xfe\\x99\\x2e\\xb1\\xa2\\xab\\x61\\x97\\xe6\\x00\\x13\\x06\\xe3\\xac\\x50\\x44\\xdb\\x27\\x96\\xea\\x27\\x8a\\x60\\xe3\\x08\\x11\\x0c\\xb4\\x7e\\x4a\\x76\\xda\\x59\\x13\\x65\\x02\\xc3\\x01\\x21\\x7a\\xb6\\x20\\x3e\\xcc\\x1d\\x89\\xae\\xac\\x95\\x0a\\x88\\x16\\x5b\\x19\\xda\\x77\\x16\\xb1\\xf0\\xbd\\x98\\x23\\x9e\\xc0\\x15\\x06\\xd0\\x12\\xb3\\x99\\xdb\\x5e\\xc9\\x28\\x1f\\xe8\\x2b\\x43\\x53\\x12\\x60\\x73\\xcd\\xea\\x89\\x9d\\x07\\xa4\\xd2\\xbd\\x42\\x94\\xfe\\x02\\xed\\xb1\\x77\\x01\\x49\\x46\\x04\\x3c\\x68\\x9c\\x51\\x40\\xd2\\x25\\x30\\x8b\\xa8\\x8d\\xe6\\xf4\\xb0\\xc9\\xb8\\x9a\\xde\\x60\\x10\\xc6\\x0e\\xc4\\x10\\xa6\\xb4\\xd4\\xbe\\x7e\\x85\\x0d\\x8e\\xf2\\x83\\x36\\xcc\\xc8\\x5a\\x93\\x79\\xaa\\xce\\x78\\x7c\\x5f\\xa3\\xca\\x95\\x37\\x34\\x10\\x7b\\xc5\\x08\\xc4\\x9f\\xfd\\x92\\x28\\xa2\\xd4\\xd5\\x37\\x3c\\x4b\\x33\\x1d\\xee\\xe2\\x27\\x80\\x89\\xca\\x0f\\x32\\x91\\xe8\\xec\\x47\\x53\\x12\\x88\\xa3\\x1b\\x16\\x14\\x6a\\xe0\\xb8\\x8d\\x6b\\x43\\xc1\\x40\\x67\\xbd\\x79\\x2a\\x35\\x3b\\x5f\\x9f\\x59\\x0d\\x54\\x49\\x53\\x87\\x24\\xc4\\x7c\\x37\\x38\\x30\\x0e\\x94\\xc8\\x13\\xe9\\x2d\\x17\\xc7\\x34\\x9f\\x42\\xb0\\x40\\x72\\x17\\xca\\x15\\xb5\\xd8\\x62\\x4d\\xc5\\x4e\\x07\\x60\\xd7\\x8c\\x5c\\x74\\xa1\\xef\\xb6\\xe0\\x55\\x96\\x78\\x0b\\xf9\\x82\\xa3\\x5c\\xa8\\xd0\\xc1\\xe2\\x6c\\xcd\\x99\\xa0\\x61\\xc2\\x86\\xba\\x0c\\xa1\\x31\\x57\\xeb\\x0c\\x99\\x04\\xdd\\x25\\x81\\x77\\xc0\\xf5\\x41\\x69\\xe6\\xea\\x9c\\x3b\\xc7\\x7e\\x64\\xbb\\xc0\\x99\\xc9\\x0d\\x71\\x9a\\xd1\\xf7\\xad\\x05\\xa8\\x2a\\x50\\x14\\xca\\x98\\x4d\\x3d\\x34\\x50\\x9e\\x68\\xc7\\xc9\\x69\\x57\\x2f\\x84\\x3d\\xc0\\x38\\xc9\\x18\\x5a\\x57\\x79\\x3a\\xb4\\xc2\\x2c\\x5e\\x3c\\xc0\\x0a\\x52\\xb1\\xa0\\x8d\\x01\\xcf\\x6b\\x48\\xc1\\xdf\\x97\\xb9\\x60\\x9c\\x1c\\x63\\xf9\\xf5\\xed\\xee\\xd7\\xd4\\x5b\\xff\\x6c\\x3c\\xe1\\xa5\\xbc\\x2b\\x93\\x7e\\x11\\xf5\\x70\\x5b\\x41\\x97\\x11\\x5c\\x78\\xb1\\x21\\x92\\xed\\x30\\xbf\\x4b\\x2e\\x78\\x55\\x64\\xe8\\x80\\xfd\\x2a\\xc9\\x1b\\x40\\x00\\x30\\x8b\\x97\\x0b\\x40\\xb0\\x2e\\xfe\\x8c\\x86\\x88\\xfe\\x8c\\x80\\xee\\x36\\xaa\\xd4\\x35\\x4c\\x1f\\x0f\\xcc\\xac\\xe9\\xf1\\x51\\x9e\\xd9\\xcc\\x80\\x14\\xc8\\x06\\x23\\xc8\\xce\\xfc\\xff\\x9e\\x9d\\x77\\xb3\\x2b\\x7f\\xfd\\xfb\\x42\\x0d\\x5f\\xce\\xdb\\x2e\\xfa\\xf1\\x8f\\xe5\\xf7\\x1e\\x46\\xf1\\x10\\x48\\xa0\\x38\\x8c\\x5b\\xd4\\xe1\\x79\\x9f\\xdc\\x8e\\x1e\\x73\\xe4\\xb8\\x44\\xaf\\xe7\\x71\\x9f\\x1f\\xd5\\xb4\\xe8\\xa4\\x42\\x75\\x04\\x9e\\x28\\x61\\x3f\\x98\\xb7\\x31\\xb4\\xcc\\xe7\\x24\\x30\\x61\\x09\\xda\\x30\\xdd\\xc1\\x8d\\xe4\\x02\\xe8\\xb9\\xc7\\x41\\x3e\\x6e\\xe2\\x3b\\xd9\\xd5\\x22\\xa3\\x49\\x54\\x25\\x53\\xd4\\x27\\xf7\\x16\\x63\\x16\\x7b\\xc9\\x17\\x0b\\x38\\xfd\\xcf\\xaa\\x46\\x16\\x5c\\xc9\\x0b\\x9d\\x52\\x7f\\x63\\x61\\x3a\\xe0\\xef\\x10\\xaf\\x54\\x49\\xfd\\x09\\x3f\\xda\\x3c\\xf3\\xcd\\x3c\\xdf\\x4c\\xa3\\xcd\\x37\\xef\\xed\\xfc\\xc0\\x01\\x20\\x0a\\x58\\xfa\\x0d\\x6d\\x62\\x8f\\x94\\x6c\\x7d\\x83\\xc2\\xd8\\xfd\\x21\\x2c\\xb6\\x88\\x68\\x6c\\x9b\\x30\\xf1\\xd8\\x2b\\x79\\x3f\\xd5\\x28\\x5b\\xfa\\x7a\\x82\\x97\\xb0\\x50\\x97\\x86\\xa1\\x91\\x8a\\xf5\\xa4\\x86\\x85\\xee\\x29\\xc9\\x60\\xc5\\x3c\\x20\\x07\\x98\\x4b\\xc4\\x67\\x49\\x75\\x0e\\xb3\\xa6\\x02\\x67\\x26\\x37\\xcc\\x96\\xbe\\xf9\\x23\\x40\\xd6\\x2b\\x72\\x8b\\x83\\x68\\x74\\xa2\\x4e\\x56\\xd9\\x09\\x3a\\x0d\\xa4\\xe3\\x22\\x43\\xdb\\x79\\x8d\\xd8\\xd2\\x3b\\x36\\x18\\x53\\x1a\\x7e\\x03\\x8b\\xeb\\xa8\\x59\\xc3\\x54\\xaa\\x4d\\x40\\x49\\x82\\x05\\x04\\xa4\\x15\\x9b\\x54\\x30\\xe1\\x5e\\xe0\\xea\\x92\\x1d\\x0e\\xf5\\xaa\\x97\\xb3\\xfd\\x4c\\x03\\x90\\xc8\\xf0\\xec\\x61\\x41\\x21\\x2f\\x8f\\xcd\\x40\\x96\\x96\\xd6\\xfd\\xbb\\x7d\\x00\\x40\\xc0\\x6d\\xf5\\x7b\\x59\\x35\\x6c\\x33\\xcc\\xa7\\xa7\\x14\\xa8\\x2b\\x79\\x19\\x53\\xbf\\x20\\x72\\xae\\x80\\x25\\xf2\\x89\\x87\\xc6\\xe7\\x76\\x96\\x8d\\x4f\\x7e\\x0f\\x32\\x21\\x31\\x3a\\x76\\xa5\\x30\\x05\\xfc\\xbe\\x63\\x92\\x0c\\x5a\\x19\\x90\\x70\\x88\\xc7\\x6d\\xa8\\xf0\\x61\\xa0\\x56\\x24\\xd6\\xb3\\xe7\\xe9\\x37\\x30\\xb1\\x71\\xe9\\x26\\x4d\\xc3\\x9b\\xf5\\x39\\x18\\x05\\x61\\x9a\\x47\\x32\\x3a\\xc9\\x5b\\x84\\x9b\\x32\\x5f\\xab\\x40\\x78\\x6c\\x2c\\x6e\\x14\\x3f\\x27\\x63\\xcd\\xaa\\xb0\\xea\\xe8\\x32\\xdf\\xb8\\xae\\xc2\\x9f\\x30\\xc2\\x92\\xfa\\x09\\x8a\\xa8\\xc1\\x84\\x1e\\x35\\x19\\xc1\\xa7\\x42\\x80\\x79\\xc3\\x3a\\x5c\\xed\\x91\\x5a\\xb6\\x5f\\xb5\\x0e\\xa9\\xaa\\x45\\x9d\\xe6\\x87\\xa8\\x9a\\x32\\xb1\\x0c\\x66\\x99\\x75\\x0e\\x2f\\xa0\\x55\\xc5\\x07\\xab\\x54\\xb8\\x40\\x8a\\x2d\\xaf\\x3f\\xbe\\x7f\\xfb\\xfa\\x45\\xed\\xf0\\xdd\\x7e\\x32\\x4e\\x43\\xbc\\xbc\\x57\\xca\\x32\\x1b\\x94\\x41\\x0d\\x3a\\x66\\x1a\\x14\\x3f\\xca\\xad\\x2b\\xc5\\xb9\\xf6\\xc9\\x9c\\xff\\x08\\x1a\\xf8\\x85\\x44\\x05\\x9b\\xa9\\x10\\x79\\x70\\x19\\x54\\x4e\\x67\\x0d\\x59\\xeb\\x8c\\xc5\\x13\\x23\\x33\\x5d\\xe9\\xc1\\x2a\\x11\\x51\\x60\\x8f\\xeb\\xeb\\x71\\xdf\\x59\\x05\\xe9\\x53\\x5a\\xf4\\x89\\x9c\\xd4\\x26\\x9d\\x0d\\x43\\x23\\x7f\\x7b\\x7c\\xda\\x55\\x2b\\xba\\x1a\\xed\\xb1\\xf1\\x31\\xbf\\xd4\\x21\\xea\\x79\\x7e\\x47\\x26\\xc6\\x25\\x9b\\x85\\x14\\x97\\xc0\\x82\\x4f\\xed\\x88\\x4f\\x3b\\x2b\\x6e\\x90\\x9c\\xc0\\xfb\\x5e\\x28\\xa3\\x57\\x6b\\x72\\xad\\xed\\xb8\\xdd\\x68\\x7b\\x5a\\x81\\x14\\x07\\xb9\\x53\\xc5\\x15\\xa4\\xfb\\x72\\x61\\xb1\\xfc\\xb2\\x6d\\xb3\\x46\\x37\\x9d\\xb2\\x4a\\x35\\x15\\x20\\x87\\x4d\\x2a\\x28\\xc5\\xd4\\x33\\x47\\xad\\xad\\x52\\x6d\\x34\\xdf\\xb6\\x5c\\xa0\\x8b\\xab\\xb0\\x9f\\x4a\\x0a\\x29\\x8d\\x8a\\xb3\\x0a\\x54\\x29\\xf2\\x8e\\x75\\x38\\x37\\xa4\\xa4\\xc0\\xd1\\x21\\x1b\\xdb\\xca\\xf8\\x89\\xc0\\x71\\x9f\\xee\\xd2\\x5c\\xad\\x3c\\xa0\\x89\\xc1\\xea\\x22\\xd0\\x90\\x0e\\xb3\\x89\\xdd\\xe7\\x5d\\x37\\x55\\xe9\\x6a\\x62\\xf0\\xe8\\x30\\x80\\x4b\\x96\\xc3\\x3c\\x05\\xde\\x02\\x6c\\x92\\xf5\\xed\\x9a\\x1d\\xc3\\x92\\x33\\x02\\x6a\\x7e\\xc6\\x3c\\x3d\\x3e\\xf2\\x6c\\xc9\\x28\\xb9\\xa1\\xc5\\xa7\\x42\\x80\\xef\\x13\\x81\\xbc\\x8c\\x69\\xa8\\x4d\\xe9\\xcc\\x86\\x48\\xf3\\x65\\x68\\xb0\\x13\\xf5\\xd0\\x1b\\x59\\x4d\\x17\\x0a\\xd4\\x4c\\xe6\\xb8\\xe9\\x73\\x57\\x09\\x8b\\x6e\\xdf\\x11\\xe6\\x5b\\x76\\x49\\x93\\xbb\\x26\\x62\\x58\\x59\\x98\\xc2\\x9e\\x52\\x42\\x71\\x47\\x2c\\x2a\\x35\\xe6\\x57\\x6a\\xbd\\xca\\x33\\xf4\\x24\\xfa\\xba\\x5f\\x2e\\xb2\\x2a\\xaf\\xac\\x4a\\x72\\xda\\x9e\\x98\\xbe\\xeb\\x90\\x6f\\x0d\\x99\\x81\\xa0\\x21\\x96\\xd2\\x25\\xf1\\xab\\xd9\\x15\\x78\\xe2\\xc2\\xe4\\xef\\xd4\\xb1\\xca\\x60\\x87\\x18\\x14\\x90\\xb1\\x1f\\x15\\x17\\xad\\x34\\x86\\x2b\\x63\\x5a\\x7b\\x3d\\xbf\\xd5\\x00\\xfe\\xda\\xc5\\x5c\\x57\\x09\\xcc\\x77\\xd1\\x93\\x06\\x16\\xf5\\xee\\x61\\xd1\\x3e\\xef\\xd5\\x62\\xe3\\x45\\x19\\x62\\x1c\\x5d\\xa5\\xf4\\x9b\\x72\\xad\\xb7\\x28\\xf6\\x6b\\x12\\xbf\\x92\\x48\\xfb\\xe2\\x02\\x75\\xc7\\xca\\x4c\\x24\\xdf\\xbb\\x00\\x73\\x93\\xa7\\xf0\\x5e\\x8c\\x78\\xcb\\xf3\\xaf\\x9f\\x10\\xf3\\x02\\x86\\x77\\x90\\x0f\\x70\\xde\\xc7\\xdc\\x4e\\x6a\\x97\\xb6\\x10\\x33\\xaa\\x73\\x02\\x46\\x0e\\x9a\\x34\\x42\\x8c\\x7b\\x7c\\x31\\x14\\x36\\x12\\x1d\\x31\\xa0\\xea\\x5b\\x10\\x1e\\x02\\x2a\\x70\\x26\\x72\\x43\\xaa\\x50\\xf0\\xf5\\xb1\\x15\\xe8\\x84\\x31\\xca\\xbf\\xc5\\x14\\x44\\xf0\\x7b\\x60\\x2d\\xf1\\x23\\x2e\\xc5\\xbe\\x47\\xee\\xfa\\xc1\\xe0\\x1b\\xea\\xe2\\xdf\\x98\\x1f\\x6a\\x4a\\x1c\\xe2\\xe6\\xe0\\xb7\\x1e\\x52\\x69\\xe5\\x33\\xbb\\xb0\\xce\\x23\\x28\\x81\\xf9\\xa2\\xb7\\x48\\x09\\x6e\\x3f\\x70\\x1e\\x70\\x2f\\xf1\\x26\\x67\\xe5\\xaa\\xcc\\xce\\x08\\xe0\\xc8\\xc7\\x07\\xb5\\x60\\x62\\x7c\\x43\\xc5\\x22\\xe8\\x50\\x47\\x32\\x03\\xb8\\xa8\\x9d\\xef\\x5e\\x86\\x75\\x85\\xdf\\x61\\x54\\xc9\\x1e\\xd5\\xcb\\x9c\\xf4\\x41\\x16\\xcb\\xcf\\x47\\x4c\\x51\\x5f\\x74\\xdd\\xba\\xb5\\xdc\\xc1\\x1c\\xce\\x26\\x9f\\x25\\xfd\\xf2\\xc4\\xfa\\x00\\xec\\x8e\\xeb\\xf1\\xa4\\xee\\x19\\x1e\\x9e\\xd1\\xb3\\x61\\x30\\x1e\\x0d\\xba\\x0e\\xe3\\x21\\x6b\\x8c\\xeb\\xce\\x9f\\xed\\x18\\x70\\x19\\xd2\\x10\\x81\\x50\\x82\\xf9\\x59\\x3f\\x0c\\x1c\\x1f\\x0d\\xec\\x0e\\xec\\xac\\xaf\\x2e\\xcc\\x4f\\x4d\\x0c\\x0f\\x42\\xde\\x08\\xb1\\xec\\x24\\xd1\\x93\\xb1\\xfc\\x8c\\xb3\\xf1\\x7b\\x91\\xfa\\x47\\x49\\x9f\\x30\\xd2\\x1b\\xaf\\x84\\x95\\x1a\\x2c\\x47\\xf5\\x68\\x5c\\xde\\x9f\\x46\\x9b\\x11\\x6a\\x8c\\xea\\x8e\\x65\\x30\\x5c\\xb3\\x0e\\x77\\xfa\\xb1\\x9b\\xc5\\xb2\\x69\\x59\\x4b\\x7b\\x00\\x2b\\x06\\xa3\\xe1\\xa0\\xcb\\xc3\\xde\\xe5\\xfc\\x35\\x75\\xbf\\xe9\\xd9\\xdd\\xe9\\x59\\xef\\x59\\x5b\\x9c\\x1f\\x19\\xea\\xef\\x6d\\xac\\xa0\\xc4\\x59\\xf0\\x49\\xd7\\x30\\x0c\\x7a\\xef\\x1f\\x46\\x99\\xd4\\x8f\\x84\\x9b\\x67\\x1a\\x53\\x65\\x22\\x50\\xa1\\x8f\\xc3\\x86\\x89\\xa6\\x49\\x49\\xee\\x41\\xf6\\xc7\\x6d\\x35\\xb5\\xf9\\xe9\\xfb\\x55\\x03\\x9f\\x9d\\x54\\x40\\xa5\\x79\\x10\\x55\\xe3\\xea\\xe0\\xd4\\x61\\x72\\x04\\x38\\x46\\x50\\x08\\xe7\\xe4\\x3a\\xaf\\xb0\\x2d\\x52\\x11\\x99\\xbd\\x57\\xea\\x1f\\xaf\\x45\\xee\\x4a\\x0c\\xbe\\xf2\\xfc\\x9f\\x78\\x53\\x46\\x26\\x84\\xfd\\x1a\\x6e\\x02\\xe2\\xe3\\x4e\\x93\\x49\\x6c\\xa0\\x92\\x3c\\x6c\\x67\\x86\\x08\\x39\\x98\\x56\\x52\\x0f\\xa6\\x6d\\x05\\xcd\\xda\\x5c\\xbb\\xbd\\xdc\\xdd\\x0c\\xbb\\xad\\xbb\\xea\\xf6\\x73\\x5e\\x00\\xf8\\x5d\\xa8\\x13\\xe3\\x24\\x5f\\x6f\\xa3\\x5d\\x72\\x07\\xe1\\xb0\\x93\\xb1\\x84\\x31\\x1e\\xe8\\xfa\\x78\\x5e\\x9f\\xdf\\x89\\x92\\xfa\\x1e\\x78\\x86\\x1f\\x34\\x66\\x2a\\x8e\\x6e\\x96\\x15\\xc3\\x11\\x37\\x1f\\xce\\x0f\\xe2\\x4a\\xe4\\x17\\xd0\\xe6\\xd0\\x50\\x7a\\x3e\\xf4\\x20\\x7e\\x98\\x62\\x7f\\xaf\\x31\\xda\\x1f\\x97\\x7a\\xae\\x4e\\x80\\x43\\xe1\\x95\\xd0\\x3c\\x64\\x89\\xaf\\x19\\x09\\x75\\xe6\\xa9\\x22\\xb0\\x01\\xe8\\xf2\\x34\\x82\\xde\\x8b\\xcc\\x63\\x0a\\xd3\\x65\\x95\\xb8\\x29\\xa7\\xa9\\x0c\\x14\\x19\\xc3\\x0d\\xfe\\x09\\x3c\\x37\\x46\\x92\\xe3\\x86\\x10\\xed\\x17\\x4f\\x1f\\xcf\\xe1\\xe1\\x43\\xc1\\xd3\\x2d\\x70\\xef\\xf3\\x3c\\xe1\\x22\\x8e\\xc8\\x2a\\xa3\\xea\\xb7\\x69\\x59\\x8f\\xa2\\x1e\\x8c\\x06\\xf5\\xa8\\xcf\\xfa\\xde\\x76\\x07\\xff\\xb3\\x89\\x4f\\xc9\\xf0\\xec\\x46\\x52\\x6f\\x11\\x73\\x67\\x1a\\x74\\x53\\x59\\x2c\\x58\\x8d\\x47\\x93\\x8e\\x7d\\x62\\xd4\\x48\\xb7\\x11\\xad\\x1a\\x57\\xf2\\x62\\x25\\x67\\x31\\x1e\\xcf\\x96\\x61\\x9d\\xf5\\x49\\x29\\x24\\xf1\\x8b\\x63\\x72\\x79\\xb5\\xbc\\x5c\\xe1\\x13\\x55\\xa3\\xa6\\x6d\\xb6\\x6f\\x60\\xc0\\x62\\xa9\\xad\\x55\\xab\\x99\\x4c\\x3e\\x1f\\x83\\x01\\x60\\xe0\\xf2\\x6e\\xb0\\x6a\\x64\\x70\\x60\\xf9\\x52\\x4b\\xe7\\x06\\x67\\xdb\\x9a\\x72\\xd9\\xb6\\xda\\xe4\\x06\\xf1\\x58\\x63\\xd8\\x5f\\xaf\\xf6\\x6c\\xe0\\x72\\xd8\\xac\\x46\\x3d\\x53\\xb5\\x81\\x57\\x26\\x12\\xf2\\xb9\\x08\\x83\\x5f\\xa7\\xf9\\xf3\\x57\\x6c\\x15\\x23\\x8b\\xac\\x85\\x3d\\xc1\\xb7\\xa0\\xbd\\x74\\xc6\\x94\\x19\\x8a\\x55\\x03\\xab\\x2a\\xf3\\x4d\\x4f\\xee\\x56\\x45\\x7e\\x23\\xc9\\xb3\\x80\\x34\\x1b\\x8c\\x69\\x8f\\x1f\\x97\\x8b\\x40\\x28\\xa8\\xb5\\xe3\\xd6\\x57\\xe2\\x37\\x33\\x30\\xed\\xca\\x19\\x8e\\xc6\\xa9\\x60\\x7f\\xbc\\xa0\\x51\\xd6\\xde\\xda\\xb3\\xa6\\x16\\x13\\x80\\xa9\\x7b\\x7b\\x55\\xe0\\x81\\xab\\x39\\x6c\\xc9\\xbc\\xa7\\xdb\\xe7\\x00\\x6b\\xf9\\xb5\\x15\\x14\\xee\\x3e\\x83\\xf6\\xdd\\x4b\\x4e\\x83\\x9d\\x6f\\x6f\\x79\\x94\\x30\\xdd\\xf8\\xf8\\x00\\x63\\x53\\x46\\xe1\\xee\\x7a\\xfe\\xb5\\x7d\\xee\\x99\\x6f\\x7c\\xab\\x7d\\x5e\\x73\\x97\\x64\\x56\\x54\\x48\\x65\\x39\\x70\\x7b\\xd5\\x28\\xa5\\xb2\\x97\\x8b\\xd8\\x06\\x29\\x75\\x9b\\xa2\\x72\\x38\\x8c\\x91\\x48\\x8b\\x56\\x68\\x2a\\x52\\xc4\\xf8\\x6c\\xf4\\x16\\xf1\\x44\\x13\\x73\\x28\\x0a\\xf8\\x8c\\xa4\\x8c\\x21\\xb3\\xd7\\x13\\x1b\\x0f\\xc5\\xee\\x86\\x0c\\x14\\xe2\\xfb\\xa4\\x48\\x7b\\x29\\x5b\\x7a\\xf5\\x13\\x5c\\x0e\\xd0\\x48\\xfe\\x46\\x9f\\x73\\x96\\xce\\x05\\x09\\xa9\\x7b\\xac\\x9a\\xc0\\x64\\xe3\\x93\\x36\\xa6\\x2b\\xd9\\x86\\x33\\x45\\x58\\x34\\x90\\xd5\\x6c\\x70\\xde\\x95\\xc8\\xe6\\xf0\\x80\\x83\\xe8\\x4d\\x4d\\x35\\x27\\xd7\\x4a\\xca\\x62\\x1a\\x42\\x51\\x0e\\xf6\\x2f\\xf3\\xc4\\x9a\\xc8\\x77\\x48\\x72\\x43\\x01\\x81\\x07\\x5b\\x89\\x1e\\x68\\x8b\\xb0\\xc7\\xf9\\x0d\\x21\\x24\\x66\\x70\\x92\\x10\\x57\\x36\\x34\\x93\\x83\\xcb\\xde\\xae\\xc7\\xb9\\x18\\xc7\\x08\\x3b\\xf1\\x60\\x0c\\x57\\x58\\x13\\x83\\x6a\\xa0\\x4e\\x48\\x96\\xd9\\x42\\x51\\xc9\\x33\\x13\\x12\\xcd\\xb9\\xb4\\xf4\\xc8\\x8d\\x63\\x43\\x56\\xf5\\x39\\xf8\\x23\\x7d\\xc6\\x5c\\x90\\x57\\x33\\xe2\\xf6\\xcc\\xc7\\xee\\x7c\\x7f\\x33\\xc2\\xd5\\x38\\xdc\\x97\\xea\\x4e\\xb1\\x12\\x64\\xb3\\xdb\\xc9\\x7c\\xd7\\xc3\\x0a\\x96\\x9b\\xa6\\xfb\\xfa\\x93\\x8d\\xef\\x26\\x72\\xe2\\x2b\\xc6\\x65\\xea\\xba\\x6b\\x24\\x5e\\x34\\x76\\xee\\x1a\\xf3\\x9f\\xf6\\x33\\x6f\\xc2\\x75\\x81\\x52\\xbc\\x8d\\x96\\x47\\x83\\x1a\\x97\\x04\\xb6\\xb4\\x7e\\x8b\\x77\\x67\\x9d\\x85\\x32\\x1b\\x21\\x2d\\x31\\xe8\\x41\\x59\\xe9\\x01\\x42\\x74\\x0d\\xcf\\x4a\\xff\\xd7\\xf1\\x1f\\x59\\x4f\\xf3\\x56\\x38\\x05\\x77\\x44\\xb0\\xd0\\x42\\x9a\\xc6\\xf9\\xc4\\x93\\xe1\\x47\\x0a\\x86\\xb0\\x6f\\x9d\\xb3\\x51\\x81\\x02\\x24\\xfd\\x48\\x2c\\xb5\\x20\\xd1\\x62\\xd5\\x1f\\x7f\\x13\\x95\\x61\\xf0\\x70\\x46\\xff\\x0d\\x5d\\xe0\\x36\\xed\\x3e\\x4f\\xdf\\xac\\xe0\\xc1\\x9d\\x92\\x36\\x4a\\xbc\\x25\\x1e\\x7b\\x13\\xf6\\xb8\\x8b\\x58\\x8c\\xd4\\x38\\xcd\\x9a\\x55\\xa4\\xb2\\x5e\\x85\\x4c\\x24\\xb1\\x9a\\x72\\x80\\x3c\\x9d\\xae\\x8f\\x9b\\xf0\\x30\\x5e\\x75\\x08\\xa3\\x95\\x6c\\x40\\xe5\\x02\\x17\\x4d\\x4e\\xc5\\xf0\\x90\\xb9\\x51\\xc7\\x7a\\xfe\\xea\\xb9\\x59\\x43\\xc1\\x46\\xc4\\x5a\\x78\\x98\\xed\\x74\\x9f\\x7a\\xf9\\x5d\\xe6\\x9c\\x21\\xf2\\xcb\\xeb\\xe3\\x41\\xcb\\xf5\\xaa\\xc8\\xc6\\x73\\xbc\\x96\\x0f\\x55\\x58\\xa7\\xa6\\xf4\\xe4\\x72\\xc8\\xf2\\xc1\\x5d\\x21\\x59\\x46\\x06\\x37\\x15\\xee\\x6e\\x9e\\xd6\\xfa\\x58\\xb8\\xaa\\x77\\x0b\\xba\\xc2\\x62\\x8f\\xe5\\xf5\\xb1\\xb9\\xd8\\x4b\\xb5\\x2e\\x0b\\x0a\\xc3\\x19\\x9e\\xc8\\x33\\x22\\xb0\\x8c\\x6c\\x59\\x7a\\xaa\\x73\\xa7\\x1b\\x30\\xef\\x04\\xd3\\x42\\xee\\x90\\x1a\\x93\\x88\\xdd\\x36\\xd4\\x55\\x81\\xbe\\x4b\\x5f\\xea\\x18\\x48\\xc3\\xfc\\x8a\\x2a\\x6d\\x2c\\xc6\\x94\\x39\\x0e\\xd0\\x01\\x6f\\x5d\\x6a\\x05\\xb2\\x82\\xa5\\xcd\\xdb\\xdf\\xe1\\xe3\\xb3\\x95\\xae\\xc7\\x79\\xdf\\xac\\x3e\\x6d\\xed\\x7d\\x68\\x2e\\x37\\x01\\xdb\\x5d\\x66\\xc2\\xe2\\x8a\\xb6\\x39\\x96\\x17\\x07\\xfa\\xd8\\x1c\\x17\\x25\\xa3\\xd3\\x05\\x1e\\xca\\x43\\xbf\\x16\\x57\\x35\\xe0\\x43\\x36\\x6a\\x5b\\x7d\\xc9\\x1e\\xf1\\x66\\xad\\x9a\\xda\\x23\\xe4\\x2d\\x62\\xe9\\x54\\x28\\xe0\\x9c\\xe0\\xe3\\x6c\\x4a\\xf5\\x7f\\xbb\\x6e\\x51\\x34\\x9c\\xbe\\x7d\\x1e\\xb8\\x65\\xdb\\x07\\xad\\x93\\x4c\\x2a\\x58\\xd8\\x19\\xa9\\x2c\\xa8\\x81\\x7b\\x29\\x67\\xc7\\x1b\\xe6\\xf6\\xe4\\x29\\x5e\\x8f\\xdb\\x3e\\x49\\x83\\x60\\xae\\xf1\\x27\\x31\\x04\\xe4\\x6e\\x09\\x00\\xe7\\xd0\\x8e\\x7c\\x51\\x55\\x67\\x9c\\x7a\\xe3\\x99\\xa5\\x62\\x88\\x30\\x86\\xe3\\x78\\x9c\\x49\\x99\\x4d\\x15\\x21\\xc9\\x5d\\xad\\xb0\\xdc\\x3b\\x16\\xf7\\x29\\x63\\x45\\x4e\\x3e\\x0f\\x21\\x5b\\xe3\\xae\\x5c\\xef\\xf6\\xa9\\x85\\x58\\xfe\\xfc\\xcd\\x9b\\xf6\\x27\\xe1\\x06\\xa7\\xd2\\xd4\\x87\\x6c\\x40\\x2d\\xac\\x5f\\xd2\\x49\\xa6\\x1d\\x1f\\x36\\x6d\\xa9\\x69\\x33\\x7e\\x42\\x95\\x85\\x57\\xd5\\xee\\x25\\x2a\\xd8\\x6f\\x76\\xd3\\xbb\\x67\\xe7\\xd1\\x98\\xa3\\x36\\xe8\\x66\\x2f\\x4f\\xb7\\x6b\\x6f\\x85\\x11\\x2a\\x5e\\x3e\\xd3\\xaa\\x06\\xf3\\x8a\\x28\\x33\\x13\\x1e\\x94\\xde\\x43\\x06\\x4b\\x2b\\x4a\\x61\\xcc\\x43\\xc7\\x84\\x05\\xb0\\x95\\x69\\x6d\\xbe\\x1d\\x9a\\x82\\xe6\\x18\\x3b\\xee\\x72\\x85\\xe7\\xbb\\xba\\xf4\\x6c\\x09\\xec\\x1c\\x38\\x22\\xd7\\x50\\xe1\\x50\\x2d\\xb9\\xbb\\x45\\xef\\x79\\xb7\\x16\\xce\\x91\\xdd\\xa5\\xa0\\x91\\x60\\xc7\\x22\\xeb\\x0f\\x78\\x71\\xde\\xcd\\xbc\\xf0\\xe6\\x1a\\x35\\xde\\x16\\x07\\x10\\xec\\x57\\x9d\\x25\\x20\\x84\\x7a\\x5f\\x0f\\x02\\xf2\\x54\\xcd\\x3a\\x5b\\x54\\x8c\\x75\\x2e\\xda\\xc9\\x74\\xce\\x32\\x58\\x18\\xa3\\xc7\\x96\\x2b\\x47\\xc7\\xc8\\x53\\xa5\\x55\\xb3\\x2e\\x6e\\x03\\x9c\\x77\\x7c\\xd5\\xf2\\x36\\xb7\\x37\\x54\\x95\\xf9\\x81\\x07\\x91\\xa2\\xc5\\x6c\\x95\\x2a\\x56\\xf0\\x6a\\x2d\\x01\\x7e\\x22\\xbb\\xe0\\x9b\\xc8\\x92\\x32\\xa5\\xf5\\x18\\x30\\xae\\x59\\x5c\\xc7\\x60\\xc5\\x27\\xf1\\x45\\x17\\x65\\x5c\\x84\\x5b\\x0b\\x36\\xac\\x76\\xb1\\xf2\\x0a\\xae\\x1c\\x22\\x93\\x3b\\x94\\x00\\x2c\\x34\\xff\\x74\\xc3\\xcc\\xc6\\x9e\\xee\\xaa\\x35\\x5f\\x6c\\x5f\\xfe\\x46\\x3e\\xca\\xe7\\x5b\\x60\\xb7\\xbb\\xe0\\x2b\\xd1\\xe1\\x44\\x2f\\x07\\x56\\xab\\xec\\x4f\\x53\\x1e\\xae\\x57\\x8b\\x94\\x0c\\xaa\\xe5\\x09\\x65\\x63\\xf2\\xc0\\x1b\\xfd\\x93\\x68\\xc8\\xae\\x80\\x00\\x9f\\xd0\\x22\\x9a\\x87\\xdd\\xac\\x65\\x12\\xf5\\x66\\x1e\\x6a\\x19\\xcb\\xff\\x0a\\x94\\x89\\x06\\x38\\x4c\\x32\\x3c\\xcd\\x0d\\x87\\xaa\\x59\\x4f\\x80\\x42\\xa9\\x88\\xe7\\xb6\\xe1\\x0e\\xa1\\xcc\\xc0\\x5e\\xc4\\x30\\xd7\\xd4\\x73\\xea\\x99\\x28\\xff\\xaf\\xc7\\x88\\x05\\xf6\\x83\\x69\\x82\\xf2\\x7f\\x97\\x60\\xfd\\xdd\\x15\\x8f\\x41\\xc5\\x8d\\x25\\xe6\\x1e\\x44\\xe1\\x58\\x8a\\x0c\\xbe\\xa5\\x13\\xfd\\x02\\x55\\x60\\x83\\xe2\\x23\\xd2\\x4e\\xc3\\x7c\\xe2\\x99\\x7b\\xd9\\x2c\\x99\\xfb\\x45\\x29\\xf1\\x58\\x39\\x7d\\x36\\x3f\\xcb\\x05\\xd6\\x23\\x26\\xc6\\x9a\\x7c\\xc1\\x3c\\xa2\\x26\\x5a\\x1b\\x33\\x5c\\x5d\\x64\\xc7\\x19\\x7e\\xfa\\x84\\x4c\\xc3\\x7f\\x1c\\xfb\\xc6\\xc5\\x3d\\xd3\\x82\\xc0\\x20\\x3a\\x01\\x35\\x4b\\xe2\\x2a\\xbc\\x0e\\xc9\\x06\\x43\\x0c\\x99\\x89\\xfb\\x26\\x27\\x6a\\xfc\\x7d\\xfb\\xf4\\x78\\x6b\\x23\\xfa\\xd8\\xa7\\x42\\x55\\xfa\\x9a\\x61\\x8f\\xa7\\x48\\x69\\x81\\x52\\xbb\\xba\\x1f\\x25\\x45\\x83\\xa6\\x0c\\xea\\xd5\\xaf\\xb8\\x28\\x01\\x58\\xe4\\x35\\x9b\\x18\\xf2\\xc3\\x3e\\xe2\\x6d\\x73\\x1c\\x33\\x35\\x59\\xb5\\x45\\x96\\x79\\x90\\xfa\\x01\\xa0\\xea\\xf9\\xa4\\x79\\xa6\\x69\\x59\\xea\\xbc\\x93\\x8f\\x0e\\x16\\xab\\xca\\xb1\\x89\\xd8\\x4e\\xf7\\x8a\\x88\\x96\\x27\\x5a\\x87\\x35\\xa0\\xc8\\x74\\xc7\\xed\\xb1\\x5c\\x82\\xbe\\x7f\\x66\\xc2\\x0c\\xe9\\xc3\\xc7\\x7c\\x56\\x6f\\x50\\x46\\xcc\\x28\\xd9\\xb6\\x88\\xab\\x4e\\x06\\xb9\\xaf\\x3e\\xd6\\x5b\\x8d\\x5e\\x5e\\x9c\\x54\\xdd\\xd3\\xb6\\x95\\xf5\\x32\\x05\\x89\\x1d\\x03\\x64\\x5a\\x8f\\x78\\x8d\\x73\\x13\\xe9\\x2a\\xe1\\x24\\xcb\\x45\\x5a\\x1c\\x81\\xcf\\x31\\xf5\\x36\\x75\\x93\\xd0\\x39\\xe7\\xca\\x51\\x73\\x98\\xd5\\xb0\\x67\\x81\\x73\\x70\\x5c\\x04\\x6d\\x6e\\x30\\x75\\x31\\xee\\x56\\x01\\xd6\\x29\\x01\\xe4\\x1e\\xa6\\x71\\x92\\xdf\\x7d\\x28\\x4a\\xbe\\x06\\x2b\\x0e\\xa4\\x7a\\x8d\\x93\\x83\\xe7\\x33\\x1e\\xe7\\x41\\x89\\x0e\\x1d\\x32\\xdb\\xf0\\xe6\\xba\\xed\\xac\\x01\\x26\\xa0\\xb4\\x3c\\x5a\\xf0\\x3e\\x3c\\xd3\\x21\\x29\\xf9\\x88\\x28\\xd7\\x26\\x25\\x86\\x14\\xbd\\x19\\x8a\\xf0\\x9d\\x4f\\xd4\\x74\\x0b\\x6f\\x43\\xb8\\x82\\xc1\\x2e\\xd1\\x54\\x1d\\x87\\x0a\\x67\\x8d\\xa2\\xf6\\x4e\\xe4\\x3c\\x38\\xcf\\xe8\\x32\\xb8\\x3f\\x7e\\x9f\\x19\\xac\\x9f\\xcd\\xdc\\xdf\\xb6\\xe7\\x41\\xa7\\x48\\x17\\xcb\\x29\\x5f\\x7f\\x79\\x50\\xe5\\x34\\xd0\\x66\\x1d\\x9d\\x25\\x47\\xd5\\xcb\\xe7\\x43\\x81\\x78\\x25\\x84\\x23\\xf0\\xbc\\x85\\x65\\xfd\\xfd\\xb6\\x5b\\x5f\\x69\\xf1\\xfc\\x7b\\x94\\x14\\x5b\\xe5\\xf9\\xe8\\xf3\\xa7\\xd1\\x15\\x78\\x4c\\x3d\\x12\\xf8\\xd6\\x59\\x29\\x6c\\x01\\x09\\x03\\x8f\\xe8\\x51\\xf2\\xfe\\x9d\\x55\\x41\\x0f\\x44\\xe6\\xb2\\x73\\xae\\x1c\\x7b\\x7e\\x4d\\xec\\x22\\xbe\\x3b\\x47\\x64\\xfb\\x1b\\xb0\\xed\\xef\\xd1\\x5e\\xf3\\x21\\x3a\\xb2\\xfd\\xa7\\x49\\xbc\\x3c\\xe9\\x39\\x62\\x0c\\x8a\\xe7\\x7d\\x74\\xfc\\xfa\\x9f\\xb3\\x33\\xd3\\x53\\x93\\x13\\xe3\\x63\\xa3\\x3b\\xdb\\x5b\\x92\\x89\\x58\\xb4\\x31\\x1c\\xf0\\xd7\\xf9\\x3c\\x6e\\xbb\\x49\\xaf\\x95\\xcb\\xc4\\x02\\x76\\xfd\\xf3\\xaf\\x6a\\x19\\x2d\\xa7\\xb5\\xa6\\x8e\\xa3\\x58\\xc8\\xe5\\x83\\xe4\\x74\\x69\\x20\\x44\\xcc\\xeb\\x1e\\xb9\\x67\\x3e\\x9f\\xdb\\xc2\\x95\\x1f\\xdf\\x40\\x19\\xbb\\xcb\\xd6\\x34\\xef\\xf9\\x98\\x0f\\xa1\\xb1\\xa7\\x69\\x4a\\xed\\x75\\x8b\\x6e\\xba\\x6e\\x09\\x62\\x8f\\x81\\x6a\\xe0\\x28\\xf2\\x75\\x44\\xae\\x0d\\xf7\\xd5\\x5a\\x78\\x5f\\xd3\\xe3\\x65\\x92\\x7c\\x56\\xa5\\xc0\\xd7\\xee\\x2f\\x12\\x2d\\xc6\\x64\\xf5\\xc9\\x31\\x64\\x6b\\x66\\x45\\x74\\x0d\\xe1\\x0a\\x6b\\xb4\\x55\\x00\\x7b\\xdd\\xa0\\x07\\x84\\x87\\x39\\x85\\xbe\\x96\\xb7\\x42\\x0e\\x92\\x76\\x3e\\xd2\\x8c\\xb9\\x95\\xf5\\xfd\\xdd\\xe3\\xb4\\x0f\\x29\\xf0\\xd5\\x84\\x79\\x45\\xf0\\x1a\\x2c\\x26\\xa8\\x68\\x6e\\x1b\\xf5\\x93\\x32\\x22\\xea\\x20\\x5c\\x3d\\x18\\x81\\xad\\xe5\\xb7\\x70\\x21\\x6e\\x38\\xb3\\x54\\x5b\\x84\\xd7\\x9f\\x08\\xdc\\xc8\\xf0\\x54\\x46\\xa4\\x1b\\x26\\x74\\x1e\\x72\\x0c\\x5a\\x20\\x9d\\xa1\\x48\\xad\\x0b\\x0a\\x9e\\xeb\\xfa\\xe3\\x42\\x9b\\x5a\\x05\\x6e\\x21\\x13\\x8d\\xf6\\xca\\xaa\\x1e\\x51\\xad\\x65\\x1d\\x69\\xd6\\xea\\xba\\xc9\\x11\\xdc\\xe4\\x16\\x25\\x90\\x5a\\x60\\x5a\\xbb\\xbd\\x50\\xf8\\x3c\\x67\\x61\\x3c\\x51\\x81\\xd8\\x2c\\xe6\\x19\\x13\\x51\\x06\\xbc\\xe2\\x42\\xb2\\x40\\xb4\\x62\\x5a\\xa0\\x0d\\x91\\x34\\x48\\xa3\\x2e\\xac\\x76\\x66\\x82\\x75\\x75\\xd5\\xfd\\xe4\\x85\\xcd\\x7d\\x25\\x36\\xa0\\x56\\x29\\x5c\\x2a\\xba\\xf6\\xb2\\xdd\\xdd\\x9b\\xa9\\xb5\\xc2\\xcf\\xc5\\xea\\x19\\x0d\\xe0\\x5b\\xcb\\xac\\xf3\\x99\\x7d\\xec\\x39\\xd6\\xd6\\xde\\x31\\x70\\x05\\x1b\\x12\\x2f\\x83\\xdc\\x0d\\x14\\x25\\xef\\xbf\\x17\\xd2\\x53\\x8a\\xf8\\x56\\xf0\\xb9\\xb0\\xc9\\xa3\\x9b\\x0e\\x1c\\x86\\xb4\\xd2\\x2b\\x8f\\x6c\\x7b\\xf4\\x74\\x69\\xd9\\x91\\x04\\x89\\xe8\\x47\\x3d\\xf6\\xc3\\xc3\\x5e\\x37\\x14\\x12\\x5a\\x94\\x14\\xf9\\x51\\x9a\\x39\\x59\\x0c\\x38\\x3d\\x7c\\x7b\\xdd\\x8d\\x81\\xc2\\x1d\\xfb\\x21\\xd8\\xf7\\x8c\\x34\\x95\\x31\\x5d\\x6a\\xcc\\x34\\xeb\\x65\\xb7\\x59\\x00\\x83\\x7a\\xd5\\x62\\x86\\xf6\\x7a\\x70\\x76\\x32\\x54\\x06\\xd3\\xe3\\x24\\xe2\\x06\\x0e\\x73\\x3b\\x53\\x66\\x0d\\xee\\xab\\xd2\\x91\\x5c\\x37\\x9c\\xfe\\xcd\\x76\\x70\\x33\\x8a\\x88\\x60\\xc0\\xad\\xf2\\x1e\\x49\\x9a\\xe0\\x8d\\x1e\\x2b\\x99\\xe7\\x84\\xf5\\x2d\\x54\\xec\\x55\\x20\\xb0\\xcb\\xef\\x56\\xc4\\xec\\xac\\x01\\x19\\xa7\\xad\\x53\\x4d\\x70\\xa0\\x1e\\x71\\xad\\x77\\x49\\x51\\x47\\xb5\\x0e\\x9c\\xe6\\xbf\\x7f\\xeb\\x50\\xf0\\x19\\xfe\\x2d\\xd0\\x55\\x43\\xf8\\xb2\\x09\\x23\\x68\\x93\\x20\\x24\\x4a\\x8b\\x94\\x3f\\x5d\\x1e\\xa8\\x1c\\x7c\\xdc\\xf0\\xb8\\xee\\x95\\xe8\\xb3\\xac\\xd4\\x68\\x0f\\xd3\\xa1\\xe7\\xc2\\x39\\x89\\xc7\\x4f\\xf8\\xd6\\x59\\xab\\x72\\x9e\\x8d\\x98\\x9e\\xf4\\x4a\\xe9\\x83\\xdc\\x22\\xee\\xdc\\xf9\\x26\\x70\\x2a\\x87\\x61\\xd3\\xcc\\x42\\x7b\\x68\\x39\\xde\\x42\\x59\\x1a\\x0a\\x5f\\x62\\xc7\\x41\\x04\\x51\\xf9\\x91\\x44\\x1e\\x3d\\xfe\\xb4\\x06\\xcb\\xde\\xa0\\x87\\x24\\x39\\x8d\\x41\\xe9\\xb3\\xb3\\x85\\x53\\x61\\x10\\x48\\x97\\x45\\x96\\x8e\\xe1\\x25\\x94\\xa9\\x39\\xfe\\xe3\\x1a\\xd2\\xa9\\xef\\x4b\\x0a\\x8c\\x08\\xf3\\x5f\\xab\\x02\\xcc\\x05\\xc4\\x5a\\x6c\\x32\\xd9\\x9b\\x3b\\x50\\x2b\\x6a\\x11\\xca\\x60\\x79\\x3d\\x08\\x5e\\xd8\\x4b\\xd6\\x0e\\x17\\xd9\\x39\\x2b\\xed\\x86\\x52\\xf8\\x04\\x8e\\x25\\xca\\xa5\\x9e\\x5a\\x2a\\xcf\\xb1\\xbc\\x75\\x1c\\x78\\xf0\\x54\\x11\\x0d\\x37\\x7c\\xaa\\x3a\\xb5\\x72\\x18\\x22\\x10\\xe6\\x14\\xee\\x75\\xa5\\xee\\x7b\\x09\\xba\\x5d\\xc5\\x70\\x35\\x43\\x1c\\x60\\xb0\\x29\\xa8\\xe4\\xae\\xb0\\xb8\\x42\\x12\\x2b\\x96\\x28\\x48\\x30\\xfa\\x9e\\x93\\x00\\x88\\x23\\xa4\\x41\\x91\\x92\\xef\\x82\\x49\\xc0\\x82\\x37\\xe1\\x05\\x4e\\x24\\xb1\\x46\\xf0\\x02\\xc7\\xca\\x52\\x4b\\xcb\\x52\\x1b\\x01\\xa2\\xe5\\xa6\\xa0\\xd0\\x69\\x52\\x8d\\x6d\\x0a\\xdc\\x5b\\x67\\x18\\x5c\\x8b\\x93\\xb4\\xaf\\xf8\\x0c\\x47\\x08\\x84\\xbe\\x5b\\x76\\xdf\\x6e\\xd1\\xcf\\x07\\x05\\x09\\x91\\xfa\\xd0\\x99\\xcb\\x80\\x70\\x92\\xf6\\x5a\\xbf\\xd7\\xf0\\x56\\x57\\x72\\xe3\\x1a\\x5b\\x78\\x2f\\x39\\x9c\\x6c\\x33\\xa3\\x67\\xcf\\x13\\x71\\xcc\\xe8\\xf9\\x68\\xe2\\xd6\\xd6\\x68\\x90\\x4e\\xcc\\xee\\x87\\x69\\x4b\\x6e\\xec\\x19\\xee\\xd5\\x4a\\x74\\xb2\\xb8\\x5a\\x51\\x3a\\x75\\x23\\x9d\\x88\\x78\\x04\\xe1\\x05\\x8e\\x06\\x9a\\xbc\\xc0\\x8b\\x0b\\x31\\xf1\\x94\\xdc\\x67\\x30\\x66\\xdc\\x46\\xd8\\x98\\xc4\\x84\\xa2\\x37\\x79\\x21\\xb1\\x4f\\x05\\x17\\x32\\x1d\\xb2\\xc3\\x94\\xe5\\xb5\\x0b\\x10\\x14\\x68\\x24\\xb2\\x30\\xd7\\x2d\\xd0\\xb8\\xff\\x2c\\xfe\\xd3\\xe4\\x93\\x52\\xbd\\x42\\x94\\xdf\\x60\\xe0\\xb7\\x38\\xc3\\xc9\\xde\\x58\\x86\\x53\\x12\\x18\\x2e\\x02\\x85\\xf4\\x51\\x05\\xc2\\x97\\xfe\\x77\\xf2\\xbd\\xe4\\x42\\xbb\\xc2\\xce\\x6b\\x7e\\xfa\\xc0\\xf9\\x16\\x87\\x28\\x83\\x2b\\x07\\x29\\x99\\x91\\xf5\\x7e\\xa2\\x6a\\xa9\\x30\\xca\\xa5\\xbc\\xa7\\xba\\xb5\\xbe\\x6c\\x21\\x89\\x74\\x76\\xb2\\xcd\\x02\\xe9\\x8e\\x9c\\x01\\x12\\x69\\xbe\\x25\\xee\\x83\\x09\\x9b\\xae\\xa0\\x9b\\x1a\\x54\\x00\\x56\\xf8\\x21\\x7b\\xe4\\x17\\x0f\\x68\\xf1\\x33\\xe1\\xc8\\x77\\xbc\\xaa\\x5f\\x7e\\x38\\x58\\x2e\\x85\\xa3\\x41\\x1b\\x56\\xd3\\x1f\\x6b\\x5d\\xf8\\x1c\\x1d\\x2f\\x70\\x7c\\xed\\x91\\xe8\\x11\\x90\\xfb\\x40\\x56\\xd4\\xd6\\xb8\\x22\\x3f\\xe5\\xda\\xc3\\x48\\xdd\\x34\\xf8\\x65\\x7c\\x45\\x05\\x81\\x7b\\xe9\\xe1\\x08\\x8f\\xb3\\xfc\\x32\\xcc\\x2e\\x74\\xba\\xf6\\x19\\xe3\\xe8\\xc7\\xe7\\xdf\\xdf\\xf4\\x9f\\x92\\xa6\\xf9\\x79\\x1b\\xc3\\xbf\\xc2\\xbf\\xe0\\x7e\\x43\\x07\\xe5\\x05\\x35\\x47\\xa9\\x05\\x71\\xc2\\x63\\xaf\\x52\\x75\\xc5\\xaf\\x5e\\x7b\\xbd\\xed\\x5e\\xeb\\xc2\\xd5\\x5b\\x1d\\xf6\\x68\\xe2\\x56\\xe0\\x38\\x55\\x89\\x04\\xd6\\x11\\xb7\\x25\\xf8\\xa3\\xde\\xe2\\x6e\\xd7\\xac\\x97\\xa3\\xfa\\xb5\\x09\\x2d\\x01\\xea\\x0d\\x4c\\xa2\\x20\\x9c\\x25\\xa1\\xf3\\xab\\x6c\\xc2\\x75\\xfd\\x71\\x03\\xfa\\x8d\\x20\\x42\\x77\\x6d\\x54\\xce\\xc0\\xeb\\x84\\x5c\\x8a\\x43\\x8b\\x06\\xb4\\x96\\xc3\\xdb\\x48\\x2a\\xd2\\xa1\\x24\\x92\\x23\\xd1\\x3d\\x40\\xff\\xea\\xbc\\xce\\x0b\\xda\\xf8\\xda\\xee\\x78\\xd7\\xae\\xfb\\x50\\xe1\\xf6\\xd9\\xea\\x49\\x66\\xc8\\x55\\x41\\xe7\\x58\\x59\\x26\\x63\\x66\\x5b\\x40\\x67\\x52\\x66\\x20\\xd9\\x40\\x6a\\x35\\x1c\\x8a\\x24\\x2b\\xc0\\xe1\\xd0\\x89\\xd9\\xae\\x53\\xd2\\xa9\\xac\\xe5\\xe1\\x69\\x39\\x4c\\xbc\\xeb\\xd7\\x5d\\xaf\\xd6\\xde\\xe8\\x8a\\x10\\xce\\x0d\\x37\\xa3\\x8e\\x8c\\x13\\x83\\xbe\\x92\\xf2\\xce\\x54\\xeb\\x9d\\x35\\x4c\\xd8\\xd1\\x45\\x5d\\xb4\\xe8\\xda\\xd9\\x6c\\x9e\\xad\\xec\\xe0\\xb1\\x1b\\xdc\\xdd\\xc5\\x66\\x84\\xae\\x7e\\x3c\\x8c\\x39\\x7e\\xec\\x23\\xfa\\xb1\\x49\\xf4\\xe7\\xbf\\x39\\x7f\\xf7\\x53\\x5d\\xf4\\xdb\\x3f\\xae\\xd6\\xf5\\x0c\\x02\\x0e\\xcf\\xf2\\xa1\\xcb\\xd3\\xf2\\x68\\x95\\xe6\\x7f\\x0d\\xc9\\x69\\xec\\x53\\x7b\\x15\\x9f\\x7b\\x6e\\xaf\\x5d\\x9e\\x7c\\x48\\x68\\x44\\xc2\\x9b\\x8f\\x3c\\x96\\xad\\x1a\\x7c\\x7e\\x2c\\xb6\\xd5\\xad\\x67\\x69\\x32\\x38\\x6a\\xc1\\x0f\\xbf\\xc0\\xc1\\x54\\x3b\\xe1\\x14\\xe8\\x86\\x03\\x1c\\x57\\xae\\x6a\\x4a\\x3e\\x52\\x0f\\xce\\xac\\x7f\\x92\\x2d\\x62\\x1f\\xa5\\xa8\\xe6\\xcc\\xed\\x04\\x24\\x22\\xb5\\xa1\\x93\\xf0\\x36\\x1a\\xbb\\xc9\\x5b\\x96\\x37\\x2c\\x0c\\x6e\\x26\\xdb\\x89\\x01\\xc5\\xd6\\x5b\\x98\\x48\\x1e\\x03\\x2f\\xa5\\xb9\\x41\\x2e\\x79\\x85\\x6a\\x3f\\x30\\x08\\x38\\x64\\x79\\x2a\\x2a\\x25\\x45\\xcb\\x7a\\xa5\\x7a\\x46\\x06\\x40\\xa5\\x7c\\x62\\x80\\x6d\\x16\\xb3\\xfc\\x34\\x2b\\x43\\x8e\\x8b\\x59\\x16\\x20\\xc0\\x48\\xb6\\x95\\x14\\xa6\\xd1\\xbd\\x73\\x5f\\xe9\\x44\\xa9\\xbe\\xc7\\x84\\xf6\\x33\\x15\\xf6\\x2e\\x12\\x0e\\x1e\\xa7\\xa9\\x6a\\xa4\\x8e\\xee\\xc0\\x1b\\x63\\xbe\\x58\\xa4\\x0d\\xee\\x69\\x83\\xfd\\xc0\\xf2\\x17\\x2d\\xb0\\xdd\\x9a\\x24\\x29\\x11\\x73\\xe1\\x54\\x44\\xf2\\xa2\\xc3\\x9d\\x5c\\x7b\\x1d\\x3f\\xef\\x07\\xc1\\x6c\\x37\\x4e\\x81\\x99\\x94\\xc4\\xe9\\x9b\\xa4\\x44\\x82\\x8e\\xe7\\xad\\xab\\xcc\\x40\\xd5\\x36\\x32\\x08\\x5c\\xd8\\x52\\x58\\x83\\xac\\xa5\\x42\\x0c\\x9a\\x68\\x4e\\x91\\xbb\\x18\\x09\\x7d\\x84\\x03\\xba\\x03\\xf8\\xd1\\x20\\xec\\x1c\\x78\\xbb\\x80\\x3f\\xc1\\x04\\x6f\\x3d\\xf1\\x32\\x9a\\x50\\x0f\\xd1\\x4e\\x8e\\x0d\\x2f\\x56\\x93\\xf8\\x7e\\x14\\x17\\x9d\\x0f\\x63\\x62\\x6a\\x11\\x74\\x75\\x54\\x99\\x49\\xf5\\x60\\xd7\\x85\\xc0\\xb5\\xbb\\x28\\x71\\xd6\\x74\\x56\\x43\\x39\\x25\\xe0\\x46\\x3c\\x73\\x7b\\xbf\\x64\\xa7\\xca\\xf7\\xb9\\x5e\\x33\\x98\\x2f\\xaf\\xa3\\x70\\xb3\\x0f\\xfb\\x9c\\x0b\\xbf\\x8f\\x7c\\xfb\\xa7\\xbf\\x09\\xa5\\xcb\\x6e\\x4f\\x0b\\x88\\x83\\x1b\\x71\\x2f\\x73\\xd1\\x61\\x79\\xd8\\x87\\x5f\\x74\\x98\\x3d\\x45\\x59\\x7b\\xeb\\x32\\x36\\x7a\\x96\\x78\\x6c\\xcb\\x22\\x1b\\x38\\x0d\\xb0\\xe8\\xbd\\x99\\xa0\\xf9\\xd8\\xfd\\x1b\\xff\\xa8\\x6a\\x68\\xa2\\xc0\\xf5\\xa1\\x83\\xe4\\x02\\xdb\\x80\\x7e\\x3b\\x69\\xab\\xee\\xb6\\x4a\\xf2\\x9d\\x6a\\xf2\\x7e\\xbd\\x69\\x82\\x26\\x61\\x29\\x73\\x75\\xe3\\x00\\xaf\\x5b\\x1c\\x3b\\xb8\\xc7\\x5f\\x96\\x6c\\xb9\\xe1\\x97\\xf0\\x94\\xeb\\x67\\xa9\\x46\\x59\\xfa\\x1e\\x1d\\x46\\xb4\\xe1\\x84\\xeb\\x9b\\xbd\\x7b\\x2e\\x5a\\xdf\\xd0\\x9a\\xef\\x76\\x53\\x84\\x94\\x6e\\x1b\\xa7\\xe9\\x74\\x18\\x37\\xeb\\x59\\xdb\\xc7\\x09\\x98\\xf2\\x0e\\xf4\\x4e\\xc9\\x4a\\x49\\xa4\\xb3\\x8c\\xd0\\x34\\x25\\x40\\xc0\\x3b\\xdf\\x66\\xf5\\x3e\\x6a\\xab\\x52\\xa7\\xa5\\x33\\x80\\xcd\\xa4\\x6a\\x9b\\x54\\xe6\\xe0\\x44\\x52\\x27\\x91\\xb9\\x19\\xfc\\xfb\\x61\\x3a\\x95\\xb4\\x54\\xb2\\xe5\\xbc\\x7c\\xca\\xa2\\x66\\x5d\\x69\\x9e\\xc8\\xba\\x1a\\x0b\\xbc\\xe3\\x72\\xe1\\x72\\x4b\\x53\\x62\\x5e\\x06\\xde\\xdb\\xb5\\xbd\\x46\\x01\\x81\\xcb\\x6a\\x57\\x29\\x97\\xd2\\xc7\\x66\\x6d\\x2c\\x54\\x81\\xc3\\xb0\\x11\\x13\\x33\\x61\\xf5\\x4e\\x4b\\x93\\xde\\xaa\\xd9\\x7c\\x30\\x55\\xbd\\x47\\x17\\x00\\xde\\xf5\\x6a\\x7b\\x03\\x44\\xb2\\xe5\\xda\\xba\\xd9\\x5a\\x3c\\x75\\x33\\x7c\\xc7\\xe6\\x0a\\x50\\x41\\x55\\x6b\\x14\\x06\\x67\\x55\\x5b\\xa2\\x83\\x91\\x1b\\x35\\x9b\\xc3\\xc2\\xa6\\x53\\x50\\xe8\\xc4\\x2f\\x28\\x92\\x9c\\x10\\xe1\\x81\\x57\\x75\\x71\\xec\\x74\\xa8\\x86\\xe1\\x84\\x45\\x91\\xd5\\x8e\\xc3\\xb1\\x17\\x75\\x8d\\x1f\\x0e\\x55\\x95\\x84\\x3f\\xf7\\xe1\\x31\\x75\\x22\\x1d\\xa2\\x4f\\xa8\\x9a\\xaf\\xaa\\x0e\\x4a\\xce\\x4c\\xc8\\x9b\\xd1\\xf7\\xf3\\xd3\\x2d\\x54\\x45\\x6e\\xec\\xb9\\xc3\\x9f\\x61\\xa8\\xa4\\x35\\x82\\x87\\x81\\x5a\\x99\\x4e\\x13\\x14\\x21\\xf5\\xa9\\xed\\x16\\xb6\\x1e\\x97\\x56\\xd3\\x48\\xa7\\xae\\x2c\\x3e\\x58\\xd0\\xdd\\x75\\x4b\\x89\\x36\\xb2\\x4d\\xf3\\x52\\x5b\\x5e\\xfe\\x1b\\x4e\\x4f\\xfa\\x7b\\x75\\x51\\x1f\\x05\\x0e\\xf2\\xb2\\xbb\\x9c\\xba\\x68\\x19\\x27\\x3d\\xcd\\xb3\\x37\\x0b\\x46\\x31\\xd7\\x3b\\x41\\x52\\xc5\\xd4\\xa2\\xc0\\x10\\x11\\x86\\x19\\x8c\\xf0\\x82\\xfb\\xbc\\x09\\xac\\xf5\\x1c\\x3d\\x5a\\xa6\\xa7\\xf1\\x64\\xa3\\x04\\xbc\\xb7\\xa3\\x82\\x4c\\xd1\\x18\\x93\\x28\\x3d\\x69\\x16\\xf7\\x6a\\xaa\\xca\\x21\\x6d\\xc3\\xe1\\x64\\x76\\xfb\\xb1\\x45\\xa2\\x4d\\x33\\x5d\\x86\\x39\\xe9\\x47\\x98\\xb3\\x19\\x52\\x42\\x44\\xa1\\xa4\\x04\\x69\\x28\\x83\\x1b\\xad\\x23\\xd8\\x0d\\xca\\xe1\\x52\\x45\\x0e\\xe6\\x50\\x8d\\x6e\\xb8\\x62\\x73\\x36\\x3e\\xe9\\xe9\\x71\\x64\\xc6\\x28\\xd3\\x27\\xa0\\xc6\\xe9\\xc2\\x21\\x18\\x92\\x00\\xa9\\xd4\\x8e\\x3d\\xa7\\x3d\\xce\\x51\\xb2\\x16\\x6e\\xec\\x30\\xe4\\xbf\\x65\\x45\\x65\\xb6\\x40\\x1e\\x32\\xfd\\xc4\\x93\\xcb\\x42\\x11\\x00\\x82\\x2f\\x4f\\x7f\\x6a\\xdb\\xba\\xd4\\xf8\\xef\\x7c\\x2a\\x3c\\xde\\x59\\x22\\xf1\\xea\\x57\\x49\\x7b\\xc1\\x77\\x57\\x8f\\x5d\\xff\\xec\\x7b\\x67\\x9b\\xfd\\x0e\\x05\\xb2\\xfa\\xf7\\x33\\x27\\x26\\x80\\x3f\\x4a\\x7b\\xcb\\x6a\\xf1\\x7f\\x3a\\x8e\\xc5\\xf2\\x3f\\x5a\\x1d\\x06\\x78\\x54\\xd1\\xd1\\x0b\\x72\\xd6\\x25\\x5f\\x64\\x3f\\x0f\\x51\\x1b\\xa6\\x40\\x85\\xc7\\xa3\\x44\\xf5\\xc7\\x45\\x1a\\x4a\\xa4\\x3d\\x8c\\xb3\\xdf\\x18\\x54\\x92\\x5f\\x17\\x13\\x29\\x85\\x0c\\x43\\xce\\x9d\\xe0\\xca\\x51\\xde\\x51\\x34\\x76\\x5f\\x65\\x1b\\xb5\\x6e\\x6e\\x40\\xc5\\x75\\x45\\xe4\\x2e\\x75\\xd4\\x0f\\x47\\x20\\x26\\x10\\xf7\\xf7\\xcf\\x73\\x87\\x7d\\x90\\xf7\\x90\\x70\\xca\\xe8\\x24\\xd0\\xde\\x7c\\xee\\x41\\xe3\\x32\\x83\\xf8\\xf0\\x86\\x34\\xfe\\xa1\\x84\\x93\\x1c\\xc3\\x17\\xbb\\x6f\\xc6\\x42\\xe9\\x9e\\x28\\x80\\x47\\x69\\x0d\\xab\\xbf\\x0f\\xe5\\x05\\xd5\\xbe\\xac\\x17\\x65\\x9f\\x16\\xe9\\xf7\\xb4\\x2d\\x0c\\xbb\\xda\\xc4\\xe1\\x29\\x8e\\x84\\xec\\xee\\xbf\\x8b\\x27\\xad\\x54\\xd9\\xd3\\x92\\x03\\xc3\\x78\\x88\\x3d\\xa4\\xb0\\xd8\\x22\\xf5\\x62\\xf4\\x5c\\x4b\\x40\\x0b\\x93\\x43\\xaf\\x0f\\x95\\x54\\xef\\x0d\\xc5\\xa0\\x9c\\x08\\x68\\xc8\\xac\\x97\\x47\\xf5\\xee\\x12\\x52\\x6e\\x52\\xb1\\xa3\\xe2\\x82\\xd0\\x8d\\xfe\\x32\\x45\\x4f\\x45\\x45\\x19\\x99\\x28\\x57\\x48\\xb9\\xb2\\xa8\\xd3\\xeb\\x42\\xb4\\x99\\xd4\\x50\\x72\\x0b\\x80\\xb4\\xf7\\x81\\x66\\x8c\\xf8\\x7d\\x68\\x4f\\xca\\xf7\\x9a\\xe9\\x72\\x3a\\x9f\\x34\\x7e\\xb7\\x41\\x6f\\xec\\xcb\\x5e\\x1a\\xdb\\xfe\\x44\\x39\\xe4\\x3c\\x24\\x4c\\xc3\\xb5\\x1e\\xa8\\xd4\\x13\\x32\\x38\\xa6\\x65\\xcf\\xa1\\x7f\\x97\\x0a\\x0a\\x1e\\x8b\\x88\\xf2\\xa6\\x94\\xbf\\x4e\\xec\\xa3\\xff\\xa4\\x88\\x79\\x8e\\x7a\\xf4\\xcf\\x7e\\xcc\\xfe\\x85\\x8a\\x52\\x76\\xa7\\x34\\x44\\xda\\x34\\xe5\\xf2\\xf8\\x5e\\x5d\\xb7\\x12\\x17\\x70\\xe2\\x92\\x7e\\x7a\\xd2\\xd1\\x9f\\x86\\x44\\x67\\xb1\\x75\\xab\\xa6\\xbe\\x1c\\xb0\\xba\\xad\\x76\\x89\\x68\\x62\\xef\\x36\\xa5\\x16\\xd6\\x08\\x4d\\xb8\\x83\\x02\\xb2\\xa9\\x25\\xb9\\x92\\xb6\\x9b\\xe6\\xed\\x7d\\x68\\x7f\\xd5\\xa2\\x35\\x7a\\xbb\\xd7\\xda\\xd9\\x33\\x53\\x1b\\xf9\\xd1\\x87\\x95\\xfa\\x19\\xa7\\x37\\xf6\\x24\\xd1\\xe8\\x0b\\x49\\x29\\x38\\x3b\\x1b\\x52\\x40\\x98\\x79\\x25\\x8d\\x97\\xc1\\x65\\x0e\\x69\\x6f\\x7a\\x0f\\x3f\\x3f\\x00\\xb9\\x0d\\x69\\x81\\xe4\\xcc\\xd5\\x33\\x0f\\xa8\\x17\\x11\\xcd\\x95\\xea\\x4b\\xd9\\x1a\\x6f\\x03\\x21\\x87\\x21\\x32\\xb9\\x3e\\xb0\\x48\\xf3\\x85\\xe4\\xca\\xf5\\x82\\x34\\x43\\x74\\x6c\\x7d\\x90\\xb9\\x71\\xb7\\x70\\x88\\xde\\xbc\\xf9\\x97\\x44\\x2f\\xcb\\xd2\\x79\\x5e\\x8c\\xa8\\x1f\\x3a\\xfe\\x0f\\x82\\x14\\x04\\xf2\\x34\\x90\\xbf\\x00\\xd3\\x45\\x60\\xfa\\x06\\x3a\\x01\\x46\\xea\\xe0\\x88\\x00\\x6f\\x0f\\x90\\xf0\\xec\\x1a\\xf7\\xcf\\x3f\\x41\\x5e\\x43\\x7e\\x42\\x3e\\x58\\xd0\\x93\\xa3\\xd5\\xdd\\x9a\\x26\\x8e\\x3d\\xa4\\x79\\xb0\\x7d\\xf6\\xf4\\x76\\x27\\x9c\\x78\\x44\\xa5\\x57\\xa7\\xca\\xed\\x90\\xef\\x3f\\x7e\\xd2\\x8a\\x21\\xb6\\x35\\xf3\\x92\\x56\\x1b\\x56\\x78\\x6b\\x04\\x39\\x02\\x79\\x32\\x3b\\x29\\x3e\\xa7\\x3b\\x9a\\x64\\xb9\\x8f\\x54\\x7f\\xe7\\x44\\x8f\\x1f\\x09\\xaf\\xb4\\x9f\\xed\\xaa\\x69\\x36\\x9c\\x9b\\x61\\x16\\x8a\\x3f\\x5a\\x80\\x28\\x27\\x35\\xff\\x71\\x14\\x94\\x5a\\x51\\x1d\\x14\\x05\\xaf\\x43\\x4d\\xe9\\x0b\\x3d\\x76\\xff\\xdb\\x61\\x91\\x18\\x48\\x3e\\xe4\\x22\\xc4\\x02\\xb2\\xa8\\x8f\\x5e\\x33\\xd3\\x4c\\x21\\x87\\x74\\xd4\\x70\\x46\\x7c\\x75\\x58\\x35\\xc3\\xaa\\xf9\\xc7\\xad\\x4c\\x08\\x9d\\xaf\\xe7\\x88\\x1d\\x6b\\x6e\\xc9\\x9e\\x9d\\x85\\x08\\xe8\\x79\\x14\\x73\\xb0\\x3f\\x52\\x0e\\xa3\\x9b\\x94\\x55\\x51\\x59\\xf9\\x86\\xb1\\xa3\\x6f\\xef\\x20\\x5f\\xec\\xf4\\x99\\x06\\xc8\\xa8\\x95\\x70\\x3a\\xcd\\x93\\x4f\\xfb\\xad\\x91\\x16\\x0c\\x69\\x3e\\xa4\\x8e\\x4d\\xb7\\x71\\x1a\\x36\\xae\\x2f\\x3f\\x86\\x72\\x56\\x14\\xde\\x59\\x7b\\x7b\\x03\\x32\\x06\\x99\\x48\\xb3\\x7f\\xee\\xff\\x12\\x7b\\x51\\xbc\\x45\\x71\\x10\\xc5\\x02\\x28\\xa5\\xb3\\x2f\\xd7\\x98\\xbc\\xa7\\xbd\\xec\\xa3\\x2c\\x82\\xad\\x58\\x87\\x90\\xc8\\x7a\\xed\\x25\\x92\\x01\\x79\\xd4\\xcf\\x5e\\x62\\x1b\\x86\\x04\\xd9\\xc3\\x50\\xab\\xf8\\x5e\\xb3\\x08\\xd7\\x6f\\x75\\xcd\\x6d\\x94\\xcd\\x6a\\x20\\x33\\x5e\\xc8\\x35\\x05\\xc1\\x3a\\x4d\\xcc\\xb4\\xfc\\x0a\\x13\\xb3\\x23\\xab\\xb2\\xb5\\x2d\\x62\\x51\\xd6\\x35\\xa1\\xbb\\x4e\\xba\\x22\\x2d\\xd1\\x5d\\x09\\xb3\\xd3\\xda\\x16\\x18\\x4d\\x77\\x13\\xba\\x63\\xd0\\x75\\x68\\x89\\xee\\x7a\\xbc\\xf6\\xcc\\xbd\\xae\\x65\\x64\\x51\\xad\\x6c\\x21\\xfe\\x70\\x91\\x2a\\x97\\xf5\\x49\\xa8\\x88\\xe8\\x0e\\x61\\x0b\\xf0\\xd5\\x90\\x69\\xcd\\xdb\\xa6\\x50\\xa0\\x75\\xc6\\x7a\\xfd\\x89\\x8d\\xf0\\x52\\x00\\xb2\\x30\\x5a\\xaa\\x9c\\xb4\\x11\\x98\\xc0\\xd8\\x51\\x2b\\x01\\xec\\xcd\\x2e\\x01\\xe1\\x55\\x61\\x5a\\x3e\\x33\\xdb\\x56\\x50\\xdb\\x40\\x18\\xd4\\x43\\x65\\x81\\xae\\xe4\\x19\\x41\\xe8\\x98\\x35\\xc2\\xec\\xc6\\x45\\xf6\\x28\\xb4\\x16\\x2d\\x63\\xc8\\xd0\\x0e\\xa1\\x05\\xf4\\x10\\xea\\xdf\\x0b\\xb5\\xaf\\xd7\\x0a\\x2c\\xd6\\x07\\x4c\\xe8\\x6e\\xb4\\x56\\xbf\\xf5\\x20\\xba\\xeb\\xa8\\x75\\xb2\\xae\\x09\\xb5\\x50\\x1b\\x88\\xee\\x92\\x6a\\x35\\xb4\\x37\\x79\\x53\\x88\\xc1\\x9f\\x68\\xe8\\xda\\x6f\\x92\\xe6\\x6c\\x86\\xa5\\x6c\\x46\\x45\\x6f\\x3a\\x98\\x4a\\x2f\\xc4\\xd7\\x24\\xba\\xd3\\x7d\\x51\\x1b\\x5d\\x51\\xfa\\x6e\\xa2\\x1f\\xf6\\x3c\\x9d\\x57\\xd4\\x44\\x48\\xda\\xa5\\x59\\x5f\\xbf\\x74\\x87\\x5d\\xa0\\xd7\\xde\\xcc\\xfe\\x19\\x27\\xf3\\x3d\\x87\\x47\\x28\\xd9\\x1a\\x64\\x4d\\xb5\\x42\\xad\\x56\\x2f\\x4b\\xe8\\x0d\\xe6\\x39\\xe3\\x79\\x96\\x10\\xd9\\xf1\\x76\\xac\\xcd\\x86\\xce\\xce\\x79\\xf1\\xbe\\x77\\xee\\x95\\xc6\\xda\\x72\\x59\\x8d\\x24\\x6f\\x19\\xab\\x93\\xc5\\xa2\\x82\\xd7\\x89\\x55\\x6b\\x46\\xdb\\xb1\\xee\\x3e\\x98\\xbd\\x14\\xc8\\xb3\\x17\\x67\\xd4\\x8f\\x58\\xd7\\xb8\\x9d\\xf6\\x36\\xb6\\x8c\\xc4\\xd6\\x6b\\x14\\x1e\\x8f\\x92\\xff\\x51\\xfc\\xe0\\xe6\\x1b\\xae\\x5f\\x24\\xa9\\xff\\x14\\x5f\\x6a\\xec\\x93\\x5c\\x2a\\x83\\x5d\\xd2\\xab\\x41\\xcf\\xde\\xd7\\x70\\x83\\x57\\x85\\xec\\xec\\x28\\xac\\xf3\\x8c\\x09\\x1e\\x96\\x9e\\x47\\x67\\x87\\x7a\\x16\\xfb\\xc7\\x6a\\xce\\xfa\\x12\\x5a\\x97\\xd5\\xb4\\xa5\\x91\\xfa\\x06\\xdd\\xc3\\x28\\x85\\xe2\\xec\\x72\\xfd\\x7b\\xed\\xe9\\x66\\x0a\\xf5\\xd8\\x5d\\x42\\x95\\x76\\x45\\x3a\\xd6\\x50\\x89\\xbd\\x75\\x91\\x66\\x3c\\x5a\\x74\\xae\\xf7\\xe8\\xd9\\x8c\\xc4\\x8a\\xbc\\x9b\\x89\\xcb\\xb4\\x15\\x2c\\x3d\\xda\\x96\\xa7\\x3e\\x56\\x47\\x08\\x85\\xe8\\xb5\\xa5\\xa2\\x38\\xa3\\xfe\\x49\\x61\\x02\\x87\\xf8\\x8c\\x92\\x17\\x9e\\x0f\\x86\\x66\\x80\\x7a\\xb8\\x33\\x78\\x1c\\x74\\x4c\\x34\\xb2\\x36\\xab\\x53\\x5b\\xd0\\xdd\\x56\\xec\\x1c\\x67\\xc3\\xa3\\xfe\\xbe\\xfc\\x39\\x64\\xf8\\xe3\\xe8\\x50\\xf9\\x81\\x38\\x9e\\x5f\\x7d\\x22\\x6a\\x68\\xa5\\xec\\x53\\x75\\x8f\\x2b\\x68\\x33\\x03\\x0f\\x17\\x2d\\x1d\\x14\\xe7\\x77\\x8e\\x02\\x20\\x82\\x48\\x28\\xc3\\x5d\\x43\\x54\\x06\\xec\\x00\\x87\\x10\\xe3\\x04\\xf0\\xfe\\xfe\\xab\\xff\\xaf\\xfa\\xb1\\xa1\\x7c\\xfb\\xbe\\x4f\\xe9\\x4f\\x60\\x3f\\xc0\\xd7\\x68\\x64\\xec\\x2b\\xc6\\x7a\\xa0\\x89\\x1b\\xeb\\x91\\xa5\\xb2\\xd7\\x57\\x30\\xa6\\x65\\x7d\\x25\\xc7\\x78\\xba\\xbe\\x8a\\x91\\xe8\\xac\\xaf\\xe6\\xa0\\x54\\x9f\\x64\\x83\\x8b\\xb0\\xbe\\x9e\\x8e\\x54\\x8e\\x34\\x30\\x95\\x1a\\xeb\\x1b\\x39\\xe7\\xcb\\xf5\\x4d\\x1c\\x8b\\xaa\\xf5\\x2d\\x44\\x2b\\xff\\x6d\\x6f\\xc5\\x1d\\x37\\x31\\xc7\\x88\\x09\\x37\\x16\\xd4\\x28\\x51\\x61\\x23\\x85\\x0e\\x2d\\xda\\xf4\\xbf\\x47\\xad\\x31\\xfe\\x7e\\x26\\x25\\x3a\\x20\\x52\\xd8\\x60\\x40\\x46\\x1e\\xa2\\x66\\xe8\\x30\\x98\\xe2\\x70\\x81\\x6a\\x4d\\x64\\x28\\x8e\\x42\\x58\\x70\\x7c\\x94\\xca\\xc9\\x73\\x18\\x23\\xd2\\x97\\x68\\x8b\\xa6\\x70\\x80\\x6a\\xf8\\x6e\\xd8\\x97\\xc0\\xfc\\x5c\\x25\\x76\\x74\\x48\\x60\\x6a\\x55\\x4f\\x59\\xa1\\x51\\x26\\xad\\xc2\\xca\\x2a\\x53\\x48\\xdc\\x8a\\x9a\\x87\\x5d\\xc9\\x1a\\x5f\\xe1\\xef\\x2b\\x1b\\x33\\xa2\\xcf\\xa4\\x53\\x78\\xc8\\x61\\x94\\x55\\x20\\xc1\\x5e\\x2f\\xaa\\x42\\xfd\\x05\\xaa\\x71\\xa3\\x92\\x88\\x87\\x6b\\xd0\\xa5\\xdc\\x90\\x7e\\xa9\\xce\\xed\\xc6\\x86\\x20\\xd5\\x5b\\x1f\\xd5\\xb5\\x81\\x6c\\xf9\\x22\\xcb\\x49\\xd5\\x77\\x7c\\xa3\\x96\\x14\\x37\\x85\\xd6\\xd5\\x79\\x89\\x05\\x2b\\x52\\xb3\\x7a\\xd0\\xa8\\x46\\x26\\x5b\\xbf\\xc4\\xd5\\x48\\xba\\xc3\\x8d\\x61\\xc7\\x70\\x1c\\x10\\x50\\x54\\x54\\x06\\xf4\\x1d\\x8e\\x65\\x54\\x4e\\x8a\\xf0\\x27\\x6c\\xac\\x5a\\x64\\xa8\\xaa\\xb1\\x46\\xcd\\x30\\x81\\xc9\\x12\\x8b\\x7c\\x31\\xc7\\x86\\x8a\\xb0\\xd7\\x5c\\x1b\\x26\\xca\\x68\\xfe\\xde\\x12\\xb9\\x34\\x8f\\x6b\\x9d\\xdc\\x3c\\x81\\x58\\x50\\x9e\\x54\\xfb\\xd5\\x93\\xad\\x6f\\xab\\xd9\\xd3\\x00\\x1a\\x2c\\x44\\x68\\x1f\\x2c\\x97\\x6c\\x68\\xc7\\x69\\x1b\\xf4\\xe2\\x53\\xb6\\x9f\\x2a\\x0f\\xe4\\xfc\\x1f\\x73\\x19\\x0e\\x0c\\x00\\xac\\x4a\\xaf\\x4a\\x7e\\xba\\xfb\\x2b\\x27\\x89\\x56\\xae\\x30\\x29\\x99\\x6c\\x32\\x28\\xa1\\x8a\\xdb\\xa4\\xcb\\xc6\\x6d\\x0a\\x58\\xc2\\x1f\\x64\\x71\\x95\\x54\\xf1\\xfc\\xf6\\x1b\\xa5\\x54\\xc3\\x02\\x13\\xcb\\xa8\\x20\\x97\\x45\\xe4\\x31\\x27\\x8d\\x72\\xa6\\x35\\x40\\x63\\x3e\\xec\\x2c\\x84\\x60\\x63\\x3f\\xfe\\xfb\\x15\\x2e\\x07\\xf0\\x86\\x87\\xf2\\xf0\\x48\\x5e\\x07\\x17\\x75\\x7c\\xf3\\x86\\x45\\xd0\\xa0\\x1f\\x86\\x8d\\x60\\xf8\\x6e\\xc8\\xb7\\xcb\\x6b\\x57\\x30\\xff\\xed\\x3e\\xdf\\xbc\\xbc\\x78\\xb5\\xbd\\xdc\\x5d\\x5d\\xdf\\xdc\\xde\\xdd\\xe7\\x49\\xaf\\x9b\\x4f\\xab\\xe6\\xff\\x1e\\x9e\\x3e\\x7c\\xfc\\xd4\\x7c\\x0a\\xbe\\xf4\\xcb\\x1f\\xfa\\xd5\\xaf\\x3b\\xe5\\xc3\\xc0\\x36\\xf9\\x9f\\x27\\x00\\x08\\xc1\\x08\\x8a\\xe1\\x04\\x49\\xd1\\x0c\\xcb\\xf1\\x82\\x28\\xc9\\x8a\\xaa\\xe9\\x86\\x69\\xd9\\x8e\\xeb\\xf9\\x41\\x18\\x4d\\xc7\\x49\\xb3\\xbc\\x28\\x6b\\xd7\\x37\\x6f\\xda\\xae\\x1f\\xc6\\x29\\x67\\x59\\xb7\\xfd\\x38\\xaf\\xdb\\xbb\\xd0\\xf9\\x5d\\x7e\\x7b\\x47\\x67\\x57\\x77\\x4f\\xef\\xd2\\x65\\xcb\\x57\\xf4\\xf5\\x37\\xb7\\xff\\x27\\x64\\x68\\x78\\xe5\\xc8\\xe8\\xaa\\xd5\\x6b\\xd6\\x8e\\x8d\\x4f\\xac\\xa3\\x2c\\x94\\xcd\\x07\\xfa\\xd8\\xf1\\x13\\x27\\xa7\\x4f\\x9d\\x3e\\x73\\xf6\\xdc\\x79\\x10\\x82\\x11\\x14\\xc3\\x09\\x92\\xa2\\x19\\xf6\\xef\\x90\\xbf\\x1c\\x92\\x52\\xb9\\x4e\\x3c\\xcf\\xa8\\xa7\\x3b\\xef\\x78\\xc2\\x53\\x5e\\x88\\xe7\\xb9\\x14\\xdf\\x53\\x43\\x8f\\x36\\xda\\x69\\xf1\\x83\\x1f\\xfd\\xe4\\x67\\xbf\\x38\\xe8\\x90\\xff\\x93\\xe9\\xb0\\x23\\x32\\xfc\\xea\\x37\\xae\\x51\\xcc\\x75\\x16\\xdc\\x21\\x9f\\x9b\\xdc\\x23\\x87\\x42\\x8a\\x68\\xf4\\xbb\\x3f\\xfc\\xe9\\x2f\\x47\\x7d\\x09\\x1d\\x4e\\xcc\\x71\\x4a\\x10\\x70\\x01\\x17\\xf3\\x3b\\x4b\\xf9\\x13\\x66\\x58\\x59\\xee\\x81\\xcf\\x4b\\x02\\x38\\x47\\x80\\x49\\x11\\x30\\xed\\xd1\\xd7\\x50\\x23\\x8d\\x35\\x69\\x9e\\x2f\\x9b\\x17\\x3c\\x4b\\x9a\\x00\\xce\\x12\\xf0\\xb9\\x56\\xd8\\x35\\x58\\x1c\\x1a\\x2e\\x95\\x47\\x46\\xc7\\xc6\\x27\\x26\\xa7\\xa6\\x67\\x66\\xed\\x0d\\xcc\\x7b\\x9f\\xbc\\xb8\\x64\\x9f\\x3e\\x9f\\xda\\xef\\x1c\\xd9\\x27\\x72\\x5f\\x82\\x7c\\xe6\\x0b\\x5f\\xbb\\xea\\x0d\\xfe\\x01\\xa4\\x70\\xcb\\x75\\x37\\x1c\\xe0\\xe9\\xae\\xdb\\xee\\x50\\xf9\\x96\\x86\\x9a\\x96\\x9e\\x8e\\xe1\\x33\\x23\\x33\\xd3\\x03\\xf6\\xc5\\x67\\x67\\xe3\\xe0\\xe4\\xe2\\xe1\\xd6\\xa4\\x45\\xb3\\x36\\xad\\x96\\x88\\x33\\x6b\\x3a\\xb8\\xb6\\xbe\\xb1\\xb9\\xe5\\x5f\\xbf\\xbc\\x34\\xbb\\xf2\\xbf\\x77\\xed\\xf0\\xa5\\xd3\\x8d\\xd7\\xbd\\xfe\\x0d\\x56\\xe0\\x25\\xf4\\xa7\\x67\\xc3\\x62\\xb1\\x9a\\xa4\\x02\\x57\\xbc\\x5c\\x55\\xeb\\xcd\\x76\\xb7\\xaf\\x0f\\xc7\\x93\\x52\\x60\\x2d\\xf3\\xf5\\xdb\\xf7\\x1f\\x3f\\xe1\\x02\\xc7\\xfe\\xfb\\xef\\x7f\\x28\\x6c\\x03\\x3f\\x52\\xfd\\x51\\xa3\\x66\\x0e\\xc6\\x13\\xc9\\x54\\x3a\\x93\\xcd\\xe5\\x0b\\xc5\\x52\\xb9\\x12\\x5b\\xa1\\x67\\x00\\x41\\x20\\xae\\xd3\\xfc\\x4b\\x69\\xdc\\x84\\xf7\\x41\\xad\\xc7\\x3e\\x40\\xea\\x83\\xda\\x12\\xb5\\x9d\\xf9\\xa0\\x3e\\x37\\x3e\\x44\\x5f\\x44\\x4f\\xd4\\x5e\\xdf\\x03\\x7b\\x8d\\x7b\\x50\\x07\\x64\\x0f\\xea\\x7b\\xd6\\x83\\xfa\\xc9\\xf4\\xa0\\x0e\\x82\\x1e\\xd4\\x61\\xcd\\x83\\xfa\\x95\\xf2\\xa0\\xfe\\x70\\x3c\\xa8\\xa3\\x88\\x07\\x75\\x42\\xf0\\x80\\xfd\\x0e\\x50\\xef\\xa0\\x2d\\x08\\x09\\xd6\\xac\\x3f\\xc5\\x2c\\x56\\x2d\\xd7\\x4a\\xad\\x2a\\x09\\x60\\x60\\x9e\\x45\\x03\\x5a\\xc5\\x57\\x17\\x11\\x2b\\x74\\x04\\x57\\x61\\xe3\\x45\\xb1\\x45\\xe9\\x05\\x65\\x9c\\xa3\\x08\\x7e\\x5f\\x6c\\xe9\\xaa\\xba\\x69\\x3b\\x09\\x01\\xce\\x9b\\x71\\x3c\\x9d\\x2f\\xd7\\xdb\\xfd\\xf1\\x74\\x0f\\x7c\\xc2\\xde\\xbe\\x7b\\xff\\xe1\\xe3\\x27\\x00\\x84\\x60\\x04\\xc5\\x70\\x82\\xa4\\x68\\x86\\xe5\\x78\\x41\\x94\\x64\\x45\\x15\\x0f\\x40\\xe1\\x40\\xc2\\xb2\\x3d\\x03\\x7f\\x4a\\x7e\\x10\\x46\\x71\\x92\\x66\\x79\\x51\\x5a\\x06\\xde\\x6f\\xfd\\x30\\x4e\\xf3\\xb2\\x6e\\xfb\\x71\\x5e\\xf7\\xf3\\x7e\\x3f\\x04\\x23\\xb6\\x01\\x28\\x1b\\x08\\x90\\xaa\\x81\\x2f\\xc9\\x0c\\xcb\\xf1\\x82\\x28\\xc9\\x8a\\xaa\\xe9\\x86\\x69\\xd9\\x8e\\xeb\\xf9\\x41\\x18\\xc5\\x49\\x2a\\x74\\x96\\x17\\x65\\x55\\x37\\x6d\\xd7\\x0f\\xe3\\x34\\x2f\\xeb\\xb6\\x1f\\xe7\\x75\\x3f\\xef\\xe7\\xfb\\xfb\\x83\\x10\\x8c\\xa0\\x18\\x4e\\x90\\x14\\xcd\\xb0\\x1c\\x2f\\x88\\x92\\xac\\xa8\\x9a\\x6e\\x98\\x96\\xed\\xb8\\x9e\\x1f\\x84\\x51\\x9c\\xe8\\x0b\\xa0\\xbb\\x00\\x79\\x0b\\x62\\x75\\x23\\x2d\\x80\\xac\\x02\\x44\\x29\\x80\\x1e\\x03\\x38\\xf2\\xef\\x8f\\xe7\\xcb\\x66\\x00\\x45\\x06\\x4d\\xff\\xc3\\x90\\xe4\\x72\\x73\\xff\\x4a\\x0f\\x25\\x06\\x90\\x56\\xa0\\x78\\x01\\xec\\x5f\\x21\\x63\\x9f\\xf8\\x25\\xbf\\x4c\\xd1\\x16\\x48\\x86\\xf3\\xc9\\x19\\xcb\\xf8\\xaf\\x4b\\xfc\\xf7\\xf7\\xaf\\xed\\x20\\x0a\\xd7\\xf3\\x80\\x42\\xbc\\x46\\xac\\x1d\\x05\\x57\\xed\\x2e\\x20\\x07\\xfc\\x7d\\x50\\xff\\x43\\xb3\\x09\\x62\\xcd\\x50\\x57\\x8a\\x0a\\xea\\xa6\\xf2\\xba\\x99\\x96\\xeb\\xd6\\x8c\\x48\\x2c\\xd5\\xe8\\xbd\\x85\\x3c\\xe6\\x3c\\xce\\x54\\xfa\\x70\\xcb\\xfe\\x30\\xc7\\xf4\\x0c\\xa7\\xf3\\xdf\\xcf\\x57\\xa5\\xc0\\x13\\x46\\x2e\\xcb\\x24\\xe3\\xe8\\xc7\\x97\\x2f\\x94\\xd7\\xac\\xae\\x98\\x1f\\xaf\\x5d\\xda\\x1d\\xdc\\x63\\xc6\\x7d\\xc1\\xcc\\xcf\\x66\\xe1\\xca\\xed\\x94\\xd1\\x8d\\xe2\\x8d\\xda\\x38\\xdd\\x24\\x2b\\x77\\xcc\\x48\\x60\\x1c\\x28\\x65\\xde\\x6e\\x63\\xee\\x37\\xc4\\x09\\x9f\\xa8\\xf5\\xa1\\x2c\\x2b\\x1c\\x0e\\x74\\xd8\\x92\\x89\\x68\\x2b\\xa0\\xb6\\x89\\xbc\\x5a\\x23\\x23\\xf3\\x9e\\x40\\x27\\x18\\x03\\x4e\\x2d\\xcb\\x78\\xb2\\x51\\x97\\xef\\x8d\\x1a\\xe2\\xd7\\x9f\\x67\\x15\\x95\\xa1\\x2c\\x95\\x44\\xb5\\x62\\x44\\xad\\xed\\x94\\x77\\x52\\x53\\x62\\x3b\\x87\\xc1\\x8f\\x67\\xbb\\x22\\xb5\\xc0\\x70\\xa6\\x98\\x5f\\x0d\\xc8\\xc5\\x61\\x48\\x17\\xdc\\xea\\x7a\\xcb\\xfc\\xb8\\x18\\x0f\\xc6\\xe8\\xcc\\xee\\x04\\x88\\x48\\xe5\\xb4\\xdb\\x11\\x09\\xe3\\x22\\xc4\\x4a\\x8a\\x18\\x8c\\x0b\\xa9\\x06\\xb4\\xb1\\x91\\x80\\x8b\\x89\\x30\\x61\\x5c\\x28\\x47\\x9b\\xd4\\x2e\\x21\\x10\\xc6\\x85\\x54\\x8e\\x36\\x36\\xa0\\xb4\\x34\\xa1\\x9c\\xe4\\x96\\x01\\x20\\x26\\x94\\x71\\x91\\xc0\\x58\\xb7\\x36\\x36\\x2d\\xcb\\x89\\x30\\xa1\\x21\\xce\\x39\\xe7\\x9c\\x57\\x00\\x20\\xc2\\x84\\xb2\\x04\\x51\\xb1\\x48\\x4d\\x29\\x2b\\x05\\x54\\x47\\x52\\x15\\x00\\x12\\xca\\xb8\\x48\\xeb\\x3a\\x02\\x2a\\xc6\\x99\\xd2\\x69\\x59\\xcd\\x44\\x78\\x4a\\xe7\\xa0\\x2f\\x44\\x5a\\xdd\\xc2\\xa1\\xf1\\x8f\\x02\\x00\\x61\\x42\\x19\\x17\\x52\\x8d\\x9a\\xda\\xd8\\x83\\x6e\\x14\\x7f\\x09\\x80\\x20\\xc2\\x84\\x32\\x2e\\xa4\\x4a\\xa6\\x7f\\xb8\\xcd\\xa7\\xd7\\x5a\\x51\\x5a\\x64\\xc1\\x75\\xc9\\xa7\\x71\\x70\\x47\\xc1\\x27\\x75\\x4d\\x8f\\xe2\\x7a\\xdd\\x11\\xba\\x2b\\x5c\\x5e\\xfa\\x36\\x7a\\x8d\\x45\\x44\\xb7\\x24\\x60\\x07\\x6c\\x6e\\xf3\\x28\\x0c\\xe1\\x6c\\x77\\x83\\xbb\\xb8\\x41\\x8e\\x5f\\xd1\\x5e\\xf2\\xd6\\xa9\\x40\\xc7\\x75\\xd2\\x15\\x91\\xb6\\xd4\\x53\\x58\\xa9\\xe0\\x61\\x6b\\xf3\\x05\\x3d\\x2d\\x0b\\x33\\xf6\\xd7\\xb3\\x8b\\xa5\\x5c\\x0a\\x40\\x8c\\x58\\x3b\\xa2\\xa3\\xdf\\xbf\\x7d\\xff\\x1e\\x87\\x71\\x5f\\xc0\\x63\\xbe\\x4e\\x9f\\x28\\xfc\\x6e\\x2e\\x71\\x77\\xcb\\x73\\xf8\\xf0\\xb1\\xbf\\x49\\x49\\xe2\\x28\\x0f\\x19\\x5f\\x86\\x99\\x79\\xf7\\x53\\x3b\\xe0\\xd8\\x68\\x6e\\x9e\\x9e\\x3e\\x6a\\xee\\x69\\x4f\\x6f\\x35\\x7c\\x4e\\xc4\\xd0\\x93\\x3d\\xff\\xc6\\xce\\x24\\xe1\\x0e\\x1d\\x2d\\xc3\\x3d\\x6a\\x57\\x3b\\xb2\\xc8\\x26\\xa0\\x17\\x72\\xc8\\x25\\xa4\\x35\\x79\\xe4\\xd3\\x86\\x38\\x09\\x0a\\x28\\xa4\\x88\\x62\\x22\\xda\\xd1\\x9e\\x0e\\x74\\x54\\xa7\\xf8\\xd4\\x94\\x6e\\x01\\x1c\\x3d\\xea\\x8a\\xe7\\x9c\\xaa\\x1e\\x05\\x07\\x12\\x75\\x96\\x0b\\xda\\x6f\\x9f\\x0a\\x1e\\x12\\x84\\xe9\\x09\\xe6\\x96\\x99\\x5e\\x90\\x92\\xf0\\x1c\\xa9\\x0a\\xe7\\xba\\xb5\\xa7\\x8a\\xa5\\x12\\x1f\\xbb\\xab\\x3e\\x34\\x76\\x2e\\xf2\\xa3\\x00\\x4c\\x22\\x31\\xf6\\x63\\x00\\x13\\x14\\xf9\\xa8\\x2e\\x4a\\x8e\\x7d\\x0a\\xc0\\x2b\\x89\\x40\\x0e\\x1c\\x81\\xe4\\xf8\\xa9\\x70\\x6b\\x0b\\xc8\\x34\\x51\\xdd\\x50\\xae\\x31\\x65\\xd0\\x08\\xf8\\x85\\x00\\x93\\xa4\\xfa\\x93\\xfb\\xf4\\x55\\x28\\x67\\x8a\\x9d\\xe2\\xf5\\x00\\x9b\\xff\\xb0\\x8c\\x0f\\x3d\\xa4\\x8e\\x6f\\xca\\x77\\x32\\xf7\\x73\\x0b\\xb2\\xa1\\xe8\\x20\\x3c\\xe3\\x51\\x01\\xd3\\xbe\\x20\\x61\\x0d\\xb7\\x75\\x94\\xda\\xc3\\x7d\\xc8\\x6e\\x8d\\x2f\\x94\\xa6\\x5c\\x6a\\xf8\\xe2\\xf1\\xb6\\x69\\xf5\\x4e\\xdd\\x62\\x8b\\x44\\x00\\x4e\\x62\\x56\\xf6\\x5d\\x93\\x93\\x2c\\x3b\\x4a\\x83\\xba\\xde\\x8d\\xce\\x0e\\x4a\\x39\\x1c\\xb1\\xe4\\x76\\x09\\xb0\\xb4\\x28\\x6d\\xa8\\x3e\\xc8\\x22\\x9c\\xfd\\xba\\xbe\\x5a\\x3b\\x0a\\x43\\xd7\\xd5\\x02\\xa2\\xe3\\x67\\x71\\xf9\\xfd\\x66\\x33\\x13\\xc3\\x6c\\x96\\xfb\\xe6\\xd8\\x78\\xaf\\x39\\x19\\x57\\xcb\\xaa\\xa9\\x56\\xee\\x7e\\x71\\x8c\\x37\\xae\\xf8\\xe8\\xe4\\x0c\\xbc\\xd5\\x01\\xc0\\xa7\\x87\\x44\\xf4\\xe2\\xc6\\x76\\xed\\xdd\\x4c\\x88\\x9f\\x42\\x45\\x67\\xd9\\xae\\x3b\\x40\\xef\\x72\\x06\\xca\\xb7\\x33\\xac\\xdc\\x5b\\xcc\\x6c\\xce\\xf7\\xdd\\x01\\x51\\xce\\x9b\\x05\\x64\\x94\\x83\\x77\\x6e\\x4c\\x5f\\xb2\\xd0\\x09\\xe2\\x9f\\xf8\\xee\\xb4\\x47\\x0c\\xe5\\x11\\x7a\\xb7\\xb4\\xa8\\xaa\\x45\\xad\\xa8\\x56\\xed\\xba\\x43\\xa6\\x9d\\x62\\x24\\xd5\\x1d\\xb2\\xc7\\x6a\\x36\\x23\\xed\\xe8\\xd7\\xb7\\xa2\\x1e\\x82\\x47\\x8d\\x6c\\xaa\\xf5\\x55\\x51\\x6d\\xbb\\x1b\\x82\\x0f\\xe3\\xb7\\x99\\x0b\\xd4\\xde\\x68\\x1f\\xdf\\x8d\\x6e\\x9f\\x9b\\xe5\\x65\\xb9\\xf7\\xb8\\xd7\\x33\\xa7\\xfe\\x0f\\xdf\\xc3\\xce\\xad\\x0b\\xef\\x09\\x9d\\xa8\\xa9\\xd3\\x2c\\x48\\xff\\xeb\\x24\\xd2\\xa8\\x1b\\xc8\\x28\\x19\\x46\\x3f\\xe9\\x37\\xcd\\x86\\x64\\x79\\xf2\\x42\\x6f\\xe2\\xf0\\x7c\\xda\\x9d\\x47\\x25\\x68\\x46\\x1f\\x09\\xeb\\xad\\x59\\x9e\\x17\\xb7\\x5e\\xed\\xe6\\x16\\x33\\x76\\x45\\xe7\\xe0\\xc6\\xe8\\x3d\\x77\\xb4\\x7c\\xb4\\xe6\\xc7\\x98\\xc8\\xf9\\xb2\\x3b\\x27\\xb5\\xb2\\x71\\xe4\\x0c\\x13\\x99\\x5b\\x43\\xed\\xe3\\xd6\\x98\\x97\\xf1\\x44\\xf5\\xf6\\x4c\\x77\\xa4\\x7e\\x36\\xe8\\xf7\\x75\\xd0\\x6f\\x1b\\x7d\\x3c\\x88\\x8f\\x66\\x4f\\x1c\\xa0\\x4f\\x98\\x4f\\xdd\\x40\\x7c\\x56\\xf6\\xed\\xca\\xca\\x49\\x8c\\xef\\x7a\\xd1\\x32\\xb4\\x74\\x90\\x3a\\x77\\xf9\\x6c\\x5f\\x57\\xd0\\x53\\x72\\x3a\\xb5\\xfe\\xf4\\x5a\\x3d\\x1b\\xa4\\xca\\x4d\\x82\\x4e\\x00\\xae\\x8c\\x96\\x92\\x91\\xb8\\x93\\xc0\\xf4\\xcc\\xde\\x6b\\xa5\\x6d\\xb6\\x20\\x29\\x9a\\x5d\\x18\\x48\\xf3\\xfb\\x27\\x2b\\xe2\\x4a\\x39\\xc3\\x1a\\x3d\\x60\\x92\\x10\\x82\\xf1\\x0c\\x95\\xa3\\xc7\\x32\\x12\\x83\\x18\\x40\\xc5\\xd9\\x45\\x2f\\xca\\x4b\\x11\\x12\\xe8\\x45\\x2d\\x7d\\x81\\x9e\\x80\\xa4\\x10\\x19\\x67\\x2a\\xa3\\x8e\\x70\\x17\\xc1\\xad\\x16\\x8e\\xa6\\xdb\\x72\\x36\\x6f\\x33\\xd0\\x16\\xe2\\x90\\x75\\x11\\xac\\x6a\\x81\\x4a\\xb7\\xf9\\x20\\xec\\x21\\x00\\x09\\x01\\xea\\x62\\x57\\x4b\\xae\\x57\\x24\\x15\\x94\\xb6\\xae\\x0e\\x40\\xef\\x30\\x5a\\x2c\\x6a\\x02\\x3b\\xb7\\xdb\\x5c\\x2e\\xe8\\x2a\\x14\\xe8\\x10\\x90\\x2e\\x81\\x18\\x90\\x0e\\xe3\\x82\\x2c\\x5a\\xd7\\x75\\x75\\xe6\\xcd\\x23\\x08\\xde\\x17\\xd8\\x3b\\x37\\xff\\xca\\x8b\\x66\\x9d\\x4e\\xf6\\x31\\x5f\\xd0\\x1c\\x3e\\xcc\\x05\\x1f\\x82\\xa0\\x59\\x88\\xdd\\xbb\\x03\\xcc\\x59\\x3a\\x44\\x18\\x0e\\x45\\x88\\x3e\\x52\\x72\\x28\\x1a\\x4f\\x51\\xdb\\x51\\xd1\\xc6\\xbe\\xc5\\x15\\xca\\x58\\x93\\xa0\\x3d\\x12\\x34\\x9b\\xa9\\xcd\\xda\\x77\\x62\\x1e\\x03\\xa9\\xc1\\xba\\xee\\xa9\\xb2\\xae\\xc7\\x8d\\x71\\x3e\\x1a\\xbb\\x38\\x19\\x97\\x93\\x14\\xc1\\x9f\\xa8\\xbc\\x9d\\x99\\x69\\xc7\\x5b\\xd2\\x88\\x4d\\x0b\\x30\\x4d\\x92\\x14\\x93\\x4a\\x2a\\x1b\\x6c\\x26\\xe4\\xfd\\x24\\xee\\xf7\\x29\\x2f\\x34\\x99\\xdc\\xce\\xa2\\xe0\\xc6\\xe3\\xea\\xbc\\x29\\xf3\\x34\\x90\\x6a\\x3c\\xff\\x16\\x7a\\x85\\x1d\\x9c\\x5f\\x9f\\x14\\xb2\\x02\\x45\\xbb\\x7c\\x62\\xe3\\xc1\\xbe\\xc3\\x61\\x33\\x0e\\x7c\\xb8\\xf9\\xbe\\x2a\\x4c\\xac\\x62\\x18\\x6e\\xb6\\xa2\\xb2\\x12\\x05\\x74\\x97\\x5d\\x74\\xa9\\xba\\x61\\x96\\x51\\xd8\\x28\\x6f\\xcb\\xdb\\xd4\\x3c\\x6f\\x8d\\x3d\\x4c\\xa0\\xd2\\x04\\x20\\xe4\\xf4\\xa5\\xf1\\x68\\x50\\xee\\xf9\\x72\\xe8\\x87\\x4a\\x7d\\xdd\\x48\\x59\\xd9\\x9d\\x13\\x74\\x9c\\x6c\\x64\\xda\\xf5\\xe9\\xc9\\x64\\xd1\\x94\\x0d\\x6e\\x31\\x0d\\x80\\x73\\x98\\xa5\\x9e\\x8d\\xe6\\x1a\\x4d\\x00\\x84\\xa9\\xd4\\x66\\x38\\x6d\\xb7\\x08\\x00\\x22\\x12\\xaf\\x8a\\x01\\x86\\x5a\\x06\\x95\\x00\\x82\\x38\\x56\\x4b\\x11\\xf0\\x30\\x62\\x5c\\xe8\\xaf\\x7d\\xdc\\x97\\xf6\\xa7\\xc7\\xb7\\xcd\\xf3\\x7e\\xbe\\xfc\\xb4\\xa3\\xd7\\x97\\x7d\\xfc\\xbf\\xbe\\xbc\\xed\\x4f\\x8f\\x47\\x53\\x2f\\x1f\\xf4\\x67\\x37\\xfb\\x67\\xf5\\xff\\x79\\xf4\\xfd\\xff\\xdf\\xcf\\x4b\\x1e\\x7d\\xff\\x7e\\xfe\\xb5\\xd1\\x77\\x8f\\x4f\\x78\\x09\\x7e\\xa1\\xa9\\x87\\x13\\x6e\\x44\\xd6\\x6d\\xbb\\xc7\\xd0\\x7d\\x85\\x1d\\x5e\\xf1\\x4e\\x59\\x1d\\x46\\x2b\\x3d\\x07\\x81\\xa8\\x79\\x77\\x64\\x89\\xa0\\xbc\\xcd\\xac\\x2a\\xda\\xb1\\xed\\xf6\\x06\\x88\\x82\\x33\\xc6\\xf4\\x61\\x42\\x19\\x57\\xd2\\xd1\\xc6\\xc6\\xcf\\x5a\\x42\\x98\\x50\\xc6\\x85\\x0c\\xd4\\x1e\\xd0\\xc6\\xc6\\xaf\\xa4\\xd5\\x8f\\x5c\\x44\\x08\\x13\\x1a\\xe4\\xd6\\x6d\\x18\\x53\\x36\\x0d\\x53\\x80\\x9a\\xfe\\xe1\\x16\\x20\\x88\\x06\\x8e\\x50\\xc6\\x85\\x54\\x8e\\x36\\xb6\\xdd\\x3a\\x00\\x10\\x61\\x42\\x19\\x17\\x52\\x39\\xda\\xd8\\xf8\\xad\\xb5\\xd6\\x5a\\x6b\\xad\\xb5\\xd6\\x5a\\x6b\\x6d\\x8c\\x31\\xc6\\x18\\x63\\x8c\\x31\\xc6\\x18\\x63\\xad\\xb5\\xd6\\x5a\\x6b\\xad\\xb5\\xd6\\x5a\\xeb\\xba\\x75\\x05\\x28\\xe3\\xe2\\x31\\x07\\xf5\\x5b\\x3f\\xe3\\x18\\xf7\\x1b\\x65\\x49\\x65\\x6d\\xa3\\x3e\\x6e\\xe5\\x15\\x61\\xdd\\xa6\\x1f\\xc2\\x6c\\x8c\\xc1\\xce\\x03\\x23\\x2f\\x4d\\x83\\xe0\\x2a\\x0d\\xa2\\x3e\\x6e\\xad\\x15\\xb9\\x71\\x5a\\x31\\x10\\x2f\\xca\\x08\\x0d\\x84\\x6d\\xa0\\x47\\x85\\x3e\\x6e\\xb1\\x95\\x56\\xc6\\xd2\\x11\\x85\\x09\\x30\\xca\\x10\\x3b\\xc6\\x6e\\x1b\\xbe\\x20\\x64\\xcc\\x16\\x48\\x00\\x7f\\x9e\\x48\\xf4\\x7f\\x73\\x13\\xed\\xdd\\x49\\x9f\\x00\\x0e\\xfd\\xd3\\xca\\x1d\\xfc\\xff\\x40\\x39\\xc6\\x8d\\xbb\\x40\\xf8\\xea\\x3f\\xc0\\x3a\\x1f\\x80\\xf2\\xfc\\x78\\xc2\\x2f\\xf6\\x4d\\xb0\\xc6\\x3c\\x66\\xae\\x6b\\xbc\\xd2\\x7c\\x87\\x49\\x1c\\xab\\x33\\xea\\x1d\\xd5\\x99\\xb8\\xbf\\xfa\\x7f\\xeb\\x8b\\xc9\\xdf\\x1f\\x7f\\x87\\xc2\\x51\\xb3\\x02\\x3f\\xfe\\x4b\\x34\\x30\\x80\\x63\\x1b\\x1c\\xbf\\x09\\xe1\\x5f\\x67\\xec\\x77\\xe8\\xc8\\xf2\\x4f\\xc2\\xbe\\x47\\x5a\\xe5\\x55\\xe6\\x05\\x60\\xfe\\xc5\\x5f\\xf7\\xcc\\x8b\\x10\\x1c\\xff\\x59\\x0f\\x2e\\x69\\x12\\xfb\\xc9\\x53\\x66\\xaa\\xf1\\xd1\\xf3\\x9f\\xd9\\xc1\\xc0\\x7f\\xf6\\x06\\x67\\x37\\xa6\\xda\\x3f\\x06\\x00\\x00\\x01\\x00\\x00\\xff\\xff\\x99\\x58\\x85\\x30\\x84\\xcf\\x00\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff2() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff2,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.woff2\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_eot = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x94\\x8f\\x55\\x50\\x1b\\x00\\xb3\\xa8\\x93\\xe0\\x1e\\xdc\\xdd\\x82\\x07\\x08\\x6e\\xc1\\xdd\\xb5\\x2d\\xee\\x14\\x77\\x2d\\x45\\x82\\x43\\x71\\x29\\xee\\x5a\\xdc\\xa5\\xc5\\x29\\xee\\xa5\\x50\\xa4\\x78\\x71\\x28\\x0e\\x45\\xee\\xdc\\x7f\\xfe\\x87\\x3b\\xf7\\x3c\\x9d\\x6f\\x1f\\xf6\\x9b\\xdd\\xd9\\xd9\\xdd\\xca\\x2d\\x00\\x20\\x72\\x13\\x00\\x00\\x01\\x40\\x00\\x64\\xc0\\xff\\x0b\\x10\\x70\\x0d\\xfc\\xbf\\x59\\x4d\\xeb\\x15\\x04\\xd8\\x7c\\x47\\x07\\x00\\xd3\\xfd\\xb7\\x53\\x00\\x04\\xd0\\x01\\x00\\x40\\x4d\\xad\\x03\\x22\\x4c\\xc0\\xff\\x80\\x09\\xa0\\x03\\x70\\x05\\x58\\x02\\x5c\\x01\\x5e\\x00\\x57\\x00\\x1d\\x40\\x1d\\xe0\\x0a\\x70\\xf9\\xaf\\xd9\\x00\\xac\\x01\\x0e\\x00\\x6f\\x80\\x33\\x00\\x00\\xc0\\x05\\xe8\\x00\\x6c\\x00\\x76\\x00\\x6f\\x80\\x13\\xc0\\x02\\xe0\\x01\\x00\\x00\\xf4\\x00\\x06\\x00\\x1b\\x80\\x07\\xc0\\x13\\xe0\\xf0\\x9f\\x19\\x3a\\x00\\x1f\\x80\\x1b\\x00\\xfd\\x4f\\x88\\x00\\x84\\x01\\x02\\x00\\xb1\\xff\\xd4\\xa0\\x00\\xde\\xff\\xba\\x17\\xc0\\x0b\\x60\\x0b\\xb0\\x00\\x78\\xff\\x67\\x97\\x3d\\xc0\\x01\\xe0\\x02\\xf0\\x02\\xd0\\x01\\x20\\x00\\x1f\\x00\\x2f\\x80\\x1b\\xc0\\x0f\\x60\\xfb\\x5f\\x5c\\x04\\x00\\xc8\\xe8\\x2a\\x6a\\xfd\\xff\\xff\\x20\\x01\\xe1\\xc6\\x80\\xfa\\x3e\\xc0\\x54\\x34\\x20\\x85\\x9b\\x68\\xea\\x30\\x7e\\xe6\\x47\\x34\\x79\\x53\\x76\\xd8\\xf5\\xd9\\xc5\\xa5\\x1a\\x55\\x36\\x95\\x3d\\x0c\\x76\\x66\\x9f\\x34\\x87\\x5b\\x0a\\x42\\xfa\\x27\\x3c\\x72\\x87\\x9c\\x15\\x20\\x58\\x91\\x14\\x9f\\x75\\x9a\\x96\\xdb\\x8a\\x5c\\x46\\xa9\\x2d\\xe3\\x8b\\xb1\\xe1\\xed\\x52\\x9e\\xab\\xd1\\x33\\xcc\\xe6\\x60\\x17\\xc3\\xd7\\x0f\\xeb\\x24\\xd3\\xde\\xe3\\xb3\\xd5\\x55\\x39\\x85\\xc1\\x75\\x25\\x9e\\x56\\x89\\x52\\xbf\\x5a\\xc9\\x8e\\xd7\\xf4\\x86\\x56\\xa9\\xef\\x8f\\xa9\\x0a\\xa9\\x46\\x7d\\xdd\\x0f\\x9f\\x99\\xd2\\x58\\x91\\x0e\\xd2\\x3e\\x6b\\xb5\\xd5\\xcf\\x1b\\x43\\x5b\\xc9\\x8f\\x1f\\xbb\\x63\\xbe\\x51\\xed\\xa1\\xd2\\x10\\xc7\\x00\\xc9\\x22\\xeb\\x70\\x0a\\xb4\\xe1\\x06\\x48\\xad\\xa3\\x73\\x8d\\x2f\\x79\\xa8\\x0a\\xae\\x18\\x45\\xc2\\xbf\\x41\\x1a\\x98\\x6e\\xa6\\xbb\\x66\\x4b\\x17\\xe0\\xaf\\x5b\\x4c\\x4e\\xcd\\x75\\x0e\\x40\\x85\\x67\\x97\\xbb\\x9b\\x5e\\x71\\xee\\x6e\\x2e\\xf8\\xb1\\xdb\\x38\\x52\\xc8\\xc3\\xab\\x2a\\x12\\xd7\\x86\\xf3\\xe9\\x31\\xc5\\x00\\x30\\xcf\\xbf\\xf5\\xbb\\xd1\\x5d\\x00\\x19\\xc8\\xc4\\x05\\x82\\x4f\\x67\\x7f\\x04\\x9e\\x02\\x8f\\x0a\\x14\\x17\\x94\\x55\\xc1\\x69\\x43\\x07\\xe3\\x87\\x70\\xe5\\xc8\\xb1\\x60\\xd7\\x9a\\x9b\\x53\\x25\\xc9\\xc3\\xfc\\xd8\\xd3\\x30\\xb7\\xb9\\x6d\\x2d\\x14\\x19\\x64\\x30\\xd8\\xbc\\x16\\xd4\\x86\\x0c\\x00\\x4b\\xb6\\x09\\x74\\x96\\xe3\\x22\\x7b\\xdb\\x1d\\x88\\x0e\\x06\\x53\\x5e\\xff\\x8a\\xfc\\x01\\x2b\\x2a\\x53\\x4f\\xbf\\xb4\\x8d\\xf2\\x3a\\xf6\\x17\\x1b\\x91\\x77\\x73\\x4b\\xdf\\xdb\\x80\\x83\\x00\\x49\\xe8\\x70\\x4b\\x64\\x30\\x24\\x14\\x81\\x4b\\x17\\x8a\\x1c\\x0d\\x91\\xb6\\xc4\\x06\\xdb\\xe7\\x40\\x03\\x85\\x2c\\x50\\xf1\\x2d\\x58\\x08\\x2d\\x14\\x88\\x2d\\xec\\x8e\\xb1\\x7a\\x96\\x13\\x86\\x91\\x9c\\x04\\xa2\\x83\\x47\\xd1\\x4e\\x43\\xfc\\x0f\\xd0\\x0c\\x42\\x3e\\x34\\xe0\\x36\\xe2\\x2c\\x19\\xf6\\xd2\\xb7\\xef\\x09\\x5e\\xa2\\x2e\\x17\\x2e\\x90\\x61\\x41\\x37\\x9b\\x71\\x55\\x79\\xb5\\x9a\\xb9\\xde\\xdb\\xe8\\x4d\\x53\\xd8\\xbd\\x98\\x3d\\x64\\x06\\xe8\\xff\\x4e\\xc7\\xd8\\x83\\x63\\xd7\\x5c\\xea\\x01\\xc7\\x43\\x94\\xc1\\x58\\x0c\\x68\\x4a\\x88\\x26\\x3a\\x06\\x39\\xe4\\xd1\\x90\\x72\\x52\\x4f\\x74\\x6c\\x0b\\xe0\\x17\\x3a\\x11\\x04\\x5a\\x43\\xdd\\x17\\x3a\\x79\\x04\\x06\\x34\\x54\\x10\\x0c\\x19\\x40\\x31\\x82\\x37\\xa3\\x93\\x5a\\x20\\x61\\xd3\\xd9\\x84\\xc6\\xe1\\xed\\x20\\xf0\\x2c\\x90\\xee\\xe5\\xd8\\xc5\\xe0\\xa5\\xf8\\xf4\\x94\\x5a\\x03\\xe3\\xb6\\x85\\x63\\x04\\x44\\x84\\x09\\x28\\x64\\x10\\xa4\\x12\\xd7\\x5c\\xca\\x88\\x1a\\xa2\\xb5\\x9d\\x86\\x2e\\xc9\\xe4\\x9a\\xcf\\x45\\x41\\xbd\\xb7\\x32\\x06\\xc8\\x36\\xcf\\x66\\x91\\x9b\\x5c\\x56\\x0c\\x11\\xfa\\x58\\xd8\\x3a\\x6e\\x5c\\x2f\\xbc\\x51\\x6e\\x21\\xdf\\x71\\xe4\\xa1\\xdf\\x9e\\x0d\\xb6\\x59\\x3e\\x98\\x5e\\x97\\x54\\x69\\x08\\xc3\\x11\\x58\\x59\\xc5\\x7e\\x9a\\x19\\x2b\\xf3\\xcc\\x56\\xfd\\x0d\\x8c\\xc2\\x26\\xd1\\x87\\xa3\\xee\\xbc\\x93\\x55\\x59\\xd7\\x1e\\x0a\\x9c\\xb9\\xd6\\x33\\x9c\\x4e\\x02\\xb3\\xd8\\x4f\\x5b\\xb6\\xa6\\x26\\xff\\xa8\\xdb\\x3f\\xbd\\x27\\xd2\\xc0\\x68\\x6e\\xe2\\x0d\\x82\\x1c\\xb7\\x2b\\x9c\\x2a\\xcc\\xb2\\x81\\x74\\x20\\xdc\\xff\\xca\\x9d\\x5c\\x30\\xda\\xd8\\x5d\\xd1\\x5a\\xb9\\x5d\\x02\\xa5\\x5d\\x1c\\x10\\xac\\xf3\\x18\\xeb\\xde\\xb6\\x2e\\x39\\xb6\\xbb\\x2f\\xc2\\x28\\x70\\x5d\\xc2\\x7c\\xe7\\x41\\x38\\xc5\\x4b\\x9a\\xd6\\xcf\\xc8\\x34\\xd9\\xb0\\x30\\x01\\x04\\x44\\x31\\xd1\\xfc\\x27\\xfa\\xf1\\x37\\x7d\\x3e\\x02\\x7c\\x0e\\x49\\x9b\\xf9\\xb3\\x4f\\x56\\xe5\\x3f\\xa6\\x4e\\xd9\\xd1\\x8d\\x2f\\x95\\x5d\\xb6\\x4c\\x88\\x46\\xaa\\x8a\\x96\\x61\\x0c\\xdc\\x52\\xa1\\xe8\\xc4\\xa8\\xe6\\xf4\\x11\\x6e\\x46\\x11\\x45\\x62\\x0f\\xb0\\xb5\\xbc\\x07\\xc2\\x34\\x55\\x05\\xa5\\x90\\x81\\x58\\x0c\\x59\\x71\\x28\\x32\\x4e\\xc2\\x3f\\xe7\\xa4\\xbb\\xd7\\xaa\\x1f\\x41\\xb4\\x20\\x10\\x71\\x23\\x8a\\x82\\x11\\x36\\x0e\\x74\\x26\\xf6\\x5e\\x6c\\x70\\x8d\\x3d\\x0c\\xca\\x22\\xd6\\x6d\\xb0\\xdd\\x55\\x27\\x3c\\xd6\\x31\\x3f\\xa4\\xb9\\xde\\x59\\xc1\\xbd\\x89\\xdb\\x76\\xd3\\x07\\xde\\xe0\\x19\\xcd\\x15\\xe9\\x71\\x43\\xca\\x72\\x3a\\xf3\\xf4\\xa9\\x68\\x32\\x69\\x63\\x5e\\x18\\x1d\\x9c\\x50\\x24\\xf0\\xd5\\x38\\xfd\\x19\\xda\\x4c\\x11\\xd5\\xf8\\x65\\x85\\xd3\\xd3\\x15\\xf7\\x38\\x27\\xae\\xc6\\x69\\x8b\\x5b\\xba\\x41\\xcd\\x09\\xb5\\x7f\\xff\\xa7\\xef\\x61\\xce\\x3f\\xdc\\xb5\\xa1\\x7e\\xbf\\x19\\x61\\x42\\x0f\\xcd\\xca\\xe4\\x6f\\x65\\xec\\x82\\x88\\x45\\x3e\\x25\\xb2\\x76\\x3a\\xc3\\xc2\\x10\\x14\\xcd\\xab\\x17\\xc9\\xa1\\x67\\x3c\\x91\\xbf\\x45\\x70\\x82\\xe3\\x4c\\xe9\\xcc\\xdc\\xb8\\x31\\xad\\xe5\\x11\\xd6\\xf1\\xbf\\xf5\\x8a\\x88\\x7b\\x17\\x4c\\xc0\\x94\\xd7\\x2e\\x23\\x83\\xf9\\x19\\xdf\\x6c\\x40\\xbb\\xa4\\x14\\x52\\xc9\\xbe\\x4b\\xd0\\xea\\x1f\\x96\\xc2\\x80\\x69\\xe4\\x39\\x26\\x74\\xee\\x5c\\x5c\\xa9\\x89\\x8b\\xef\\x25\\x94\\x70\\x0c\\xd8\\x0a\\x65\\x22\\x22\\x04\\x24\\xf2\\x37\\xd9\\x29\\x48\\x1c\\x3b\\xd0\\x9d\\x6a\\xa5\\x54\\xfe\\x3b\\x09\\x4a\\xad\\xa1\\x36\\x01\\xef\\xcf\\x82\\x46\\xf4\\xcc\\xf8\\x1a\\xf9\\x74\\x87\\x7e\\x25\\x19\\x35\\x14\\x3c\\xb3\\xfb\\xc5\\xa1\\x0c\\x54\\x65\\x9f\\xc2\\xa2\\x65\\xa4\\xe5\\x0e\\x3d\\x55\\xe4\\x4a\\x98\\x46\\xec\\x20\\x72\\x08\\x9e\\x50\\x09\\xef\\x40\\x46\\x38\\x8f\\x38\\x13\\xca\\xc7\\x3a\\xd2\\x79\\x26\\x5d\\x19\\xaf\\x2f\\xc4\\x01\\x16\\xfc\\xfe\\x1c\\xa1\\x9c\\x29\\x1b\\xc8\\x29\\x5a\\x2d\\x03\\x29\\x25\\x14\\xf3\\x64\\x23\\x23\\x0c\\xb6\\xf1\\x56\\xef\\x37\\xbc\\x8a\\xbc\\x50\\x4e\\xfe\\x0d\\x32\\x1c\\xde\\x70\\x74\\x0e\\x92\\xfd\\xe8\\xac\\xaa\\xdd\\x3e\\xfb\\x27\\x8f\\x67\\x41\\xf4\\xeb\\x2f\\x56\\xe0\\x77\\x00\\xf6\\x38\\x5f\\xdd\\x00\\x1a\\x90\\x4e\\x99\\xc6\\x4a\\x53\\xd9\\x27\\x9b\\x50\\x77\\xf1\\xc6\\xb6\\x4a\\x05\\x6f\\x48\\xcc\\x1a\\xd8\\x6a\\x38\\xab\\xbf\\x61\\x7c\\xc5\\x0d\\x16\\x7b\\xc9\\x64\\x03\\x17\\x55\\x57\\x8f\\xef\\xa2\\xa5\\x17\\x07\\x6c\\x21\\x6b\\x5c\\x29\\x72\\x7f\\x46\\xec\\x12\\xfd\\xc1\\x05\\x9b\\xa3\\xbc\\x8b\\x23\\x99\\x13\\xe4\\x28\\xc9\\x3a\\xc0\\x36\\x94\\xe6\\x68\\x6e\\x57\\x6c\\x53\\x5b\\x92\\xd1\\xd2\\xbf\\xf6\\x7a\\x0b\\xca\\x6f\\x2c\\x5f\\xc8\\x00\\xe4\\x87\\x65\\xcd\\x4d\\xaf\\xd9\\x6d\\x50\\x5d\\x0a\\xb6\\x7e\\x97\\xb8\\x89\\xb7\\xac\\x2d\\xa9\\x6f\\x37\\x90\\xf5\\x16\\x43\\x15\\x1f\\x39\\x2d\\xa3\\x8f\\x61\\x84\\xfd\\x73\\xc1\\x66\\xb8\\x1d\\xcb\\x11\\xf3\\x00\\x11\\x67\\x1f\\x41\\xf9\\xc9\\xe9\\xe3\\xc9\\x91\\xbd\\xc5\\x87\\x67\\x06\\x0f\\xd0\\x93\\xf9\\xec\\xd0\\x8b\\x75\\x69\\x1c\\xac\\xa2\\xcc\\x86\\xd4\\x3d\\x8b\\x4e\\xb0\\x03\\xdf\\xee\\x62\\xbe\\xf1\\x6b\\x8a\\xa0\\xac\\xe0\\x67\\x66\\x5c\\xe5\\xac\\x0e\\x47\\x0d\\xf2\\x25\\x32\\xcf\\xc5\\x8e\\x4f\\x68\\xe7\\xd9\\x54\\xaa\\x46\\x16\\xe2\\x55\\x4f\\xd2\\x12\\xf6\\x90\\x14\\x4a\\x61\\xe4\\xe5\\xc8\\x09\\xf4\\xa5\\x26\\x13\\xca\\x9c\\xf0\\x13\\x00\\x77\\x6b\\xa8\\xdc\\x88\\x5f\\x42\\xdf\\x41\\xf8\\x4d\\xf8\\x6c\\xdb\\x52\\x60\\xcd\\xf9\\x8f\\x44\\xdb\\xfc\\xfb\\x2d\\xc2\\x98\\x50\\x5a\\x02\\x52\\x1c\\x75\\xba\\x2d\\x24\\x28\\x07\\x44\\xb9\\x78\\x9c\\x6d\\x97\\xa1\\x21\\x49\\x82\\x5e\\x46\\xa9\\x99\\x16\\xdd\\xd2\\xbe\\x70\\x30\\xb9\\x3d\\x6c\\x9e\\xb1\\xdd\\x6b\\xc8\\x2b\\x69\\xfb\\xb3\\x77\\xb1\\x49\\x8f\\xd6\\x44\\xb6\\xae\\x46\\xc6\\x20\\x00\\x74\\x10\\xa7\\x35\\x10\\xce\\x90\\x4b\\x85\\xbd\\xf1\\x46\\xa2\\xa3\\x0c\\x43\\x92\\x8a\\x0a\\x31\\x47\\xa8\\xb8\\xf2\\x29\\x2e\\x60\\xb0\\x05\\x4f\\x38\\x5f\\xe4\\x80\\xe5\\x6d\\xfc\\x82\\x4c\\x17\\x03\\xf9\\x70\\x83\\x43\\xc8\\xb4\\x82\\x5b\\xeb\\x89\\xfb\\xec\\xa7\\xa1\\x5a\\xb5\\x4c\\xad\\xbf\\xe5\\x6e\\x76\\x20\\x6f\\x42\\xe1\\x35\\x8b\\x26\\x47\\x1d\\x97\\x34\\x8e\\x3d\\x06\\x81\\x71\\x13\\x13\\x6f\\xfc\\xa6\\x2c\\xa4\\x09\\xd1\\xfa\\x0c\\xef\\x0f\\x03\\xe1\\x74\\xe5\\xe0\\xc6\\x18\\x06\\x9c\\xb4\\x29\\x41\\x51\\x81\\x8e\\x54\\x40\\x8b\\xbe\\x03\\xba\\x85\\x13\\x80\\x8c\\x67\\x00\\x99\\x07\\xa3\\xc5\\x08\\x4e\\x54\\x67\\xe9\\x2b\\xb0\\x09\\xa0\\xc0\\x82\\x08\\x11\\x28\\x21\\x81\\xeb\\xae\\xdd\\xcf\\xd1\\x63\\x08\\x5d\\x48\\x37\\x51\\x79\\x2a\\xce\\xa1\\x70\\xe0\\xb7\\xd0\\x51\\x39\\xbc\\x13\\xa3\\xaf\\x22\\x4d\\x4b\\x9c\\x5d\\x4a\\xbc\\xf3\\x74\\xa7\\xf9\\x72\\x90\\x17\\x9f\\x0c\\x7f\\xe2\\x0f\\x4f\\x7d\\x35\\xa4\\xa8\\x2f\\xf4\\x39\\x92\\xb2\\x9c\\x0e\\x09\\xa1\\xaf\\x54\\x12\\x42\\x83\\x2f\\x5c\\xf5\\xd0\\xf1\\xb2\\xbb\\xfd\\x9e\\xfe\\xed\\x77\\xc4\\x59\\x0e\\x62\\x86\\x0f\\x48\\x41\\xb3\\xe2\\x49\\xae\\x63\\xd8\\x75\\x02\\xa3\\xe2\\x7b\\xf9\\x8e\\x13\\x48\\xfb\\x1f\\x00\\xdf\\xd9\\xff\\x1a\\x84\\xcd\\x7e\\x52\\x13\\x01\\x1e\\xb8\\x93\\x04\\x08\\x3d\\xbc\\x89\\xfc\\xce\\x3f\\xb0\\x9a\\x9f\\xd0\\x91\\x81\\x9b\\xc7\\x14\\x6b\\x10\\x4a\\x65\\xfb\\xe5\\xa1\\x96\\x56\\x46\\xc1\\x5d\\xa4\\xe6\\x73\\x31\\x02\\xd9\\xf7\\x91\\xc7\\x43\\x5f\\x44\\x64\\xe5\\xf2\\x4c\\xfd\\xbc\\x8c\\x03\\xfa\\xc6\\x6e\\x39\\x82\\xf3\\x91\\x4e\\xd8\\x4e\\xc0\\xf9\\xb7\\xcc\\x68\\xcc\\x6f\\x99\\x48\\x09\\xcc\\xa6\\xb3\\x47\\x22\\xe4\\x47\\xee\\x22\\xec\\x7d\\xd5\\x30\\x49\\x65\\x8e\\x3f\\x15\\x72\\x07\\xb9\\x7f\\xa0\\xf7\\xf2\\xc2\\xb2\\x9c\\xf6\\x79\\xa9\\x47\\x5a\\xd6\\xf9\\x62\\xb6\\xa7\\x5f\\x3f\\xec\\x01\\xec\\x9c\\x3e\\x58\\x22\\x79\\x97\\xde\\x51\\x81\\x0b\\xd3\\xe7\\x77\\x76\\x2e\\x1c\\xf6\\x9e\\xfb\\xdb\\x0f\\xf4\\x6a\\x2b\\x75\\x5d\\xf9\\x6e\\x76\\xb7\\xd1\\x5f\\xb2\\x7d\\x75\\x96\\xb9\\xcc\\x13\\x54\\x1f\\x3f\\xab\\xd8\\xba\\xa3\\x5e\\x70\\x6e\\x2a\\xe9\\x8b\\x5a\\xe6\\xcf\\x26\\x88\\x89\\x7d\\xf3\\xa5\\x52\\x3d\\x48\\xd1\\x20\\x7a\\x86\\xa0\\x08\\x1c\\x1f\\xc5\\x5c\\xef\\x6f\\xd8\\x1e\\xb8\\xbd\\x24\\xcc\\xe7\\xea\\x02\\x65\\x50\\xab\\x66\\xd8\\xfa\\x86\\x6d\\x24\\x58\\x96\\x4c\\x57\\x27\\x51\\xa7\\x97\\xe9\\x09\\x43\\xf7\\xe9\\xa0\\x52\\x34\\x6e\\x74\\xb4\\x42\\x9a\\x6d\\xee\\xa6\\xab\\xa1\\x8f\\x9c\\xed\\x61\\x3a\\x5c\\xd2\\xd7\\x87\\x9a\\x54\\x32\\xcd\\x3a\\x4b\\x44\\x1e\\xfe\\xa4\\x48\\xc4\\xda\\x85\\xb3\\x5f\\x2b\\x70\\x9c\\x13\\x93\\x38\\x95\\x25\\x92\\x96\\x0c\\xae\\x2c\\xd4\\xe5\\x43\\xb0\\xac\\x1a\\xfa\\xcb\\x33\\x78\\x45\\xae\\xb4\\x4d\\xd5\\xc9\\x7d\\xb8\\x94\\x87\\xc5\\x40\\xc6\\xa3\\x2d\\x56\\xe3\\x27\\xfa\\x44\\x96\\xe8\\x3b\\x16\\x43\\xfe\\x6b\\x86\\x74\\xff\\x70\\x01\\x19\\x3d\\xa1\\x60\\x1e\\xce\\x9e\\xa2\\x7c\\xba\\x42\\x46\\xa2\\xed\\x2d\\x54\\xb1\\xa3\\xde\\xf4\\xc5\\xb8\\x94\\xf0\\x3c\\x12\\xbd\\x5c\\x02\\x79\\x15\\xf6\\x8e\\x42\\xdc\\xca\\x43\\x24\\xdc\\x0e\\x9d\\xc2\\x1d\\xe2\\xef\\x6a\\xc9\\x06\\xc5\\x2e\\x28\\xbf\\xc9\\x26\\x4b\\xc8\\x2a\\xe4\\x46\\xc2\\xa7\\xdd\\x72\\x8c\\x39\\x8c\\xd0\\x62\\xc8\\x17\\x2a\\x33\\x9a\\xd4\\xe6\\x47\\x0b\\x64\\xa4\\x54\\x24\\xf5\\x4d\\x09\\xfe\\x98\\x3b\\x83\\xfb\\x7c\\x27\\x5c\\xd5\\x0e\\x80\\x1c\\xf4\\x9c\\x7b\\x38\\x04\\x83\\x1e\\x21\\x89\\xa0\\x85\\xa9\\x84\\x7e\\x2c\\x3e\\xa7\\x8f\\xcc\\x4b\\x7b\\x00\\x56\\x6d\\x00\\xb5\\x41\\xb3\\x3c\\xbd\\xe6\\xc2\\xe5\\xdb\\xd2\\x1f\\x41\\x97\\xd6\\x35\\x62\\xc6\\x4b\\x5c\\xdf\\xb8\\x32\\x91\\x69\\x80\\x1a\\x58\\xac\\x8f\\xe6\\xfd\\x39\\x4c\\x17\\xd7\\x31\\x08\\x16\\x6e\\x3d\\xce\\xdd\\xe9\\xdb\\x6e\\x45\\xd5\\x5a\\xd0\\xba\\x97\\xce\\x0b\\xee\\x5a\\x4d\\x3b\\xa1\\x46\\xbc\\x33\\x3a\\x6f\\xf0\\x75\\x1d\\x17\\x83\\x57\\xb4\\xf0\\x4a\\x8e\\x9f\\xd9\\xf6\\xf4\\xc4\\xb5\\x0c\\x19\\xfa\\x99\\xf2\\xb2\\xf2\\x88\\xbb\\x08\\xa2\\x4d\\x98\\x5c\\x24\\xa2\\xaa\\x5b\\xe9\\x49\\x1c\\x4d\\x1a\\x29\\x28\\xbe\\x51\\x41\\x49\\x40\\xe2\\x4e\\xd1\\xb9\\xa4\\xbd\\xf0\\xa7\\x0c\\x96\\x25\\xb0\\x62\\x69\\x23\\xb1\\x63\\xd3\\x31\\xf6\\xd6\\x09\\x67\\xdb\\xf8\\xc5\\xeb\\x52\\xe0\\xa5\\x1c\\x75\\xde\\x33\\x41\\xb8\\x3e\\x53\\xcc\\x7c\\x7a\\xec\\xc3\\x62\\x3a\\xdd\\x7d\\x8e\\xce\\xaa\\x88\\xf4\\x9b\\xaa\\xc4\\x6b\\xb6\\xaf\\x67\\x3b\\xed\\xff\\xbe\\x14\\xb4\\x19\\x60\\xf6\\x57\\xfd\\xfd\\x75\\x23\\xce\\xb2\\x3f\\x9b\\x30\\x4c\\x15\\xe4\\x95\\x83\\xda\\x39\\x75\\x2f\\x91\\x40\\x26\\x0c\\xf2\\x9f\\xfd\\x8a\\x8c\\xe0\\xe6\\x4f\\x56\\xac\\x22\\x2b\\xc9\\xed\\xfc\\xd3\\x60\\x2b\\x6d\\xdb\\x57\\x0d\\x56\\x11\\x35\\x24\\x3a\\xfe\\x9c\\x36\\x57\\xe0\\x29\\xc5\\xe1\\x5e\\x00\\xbd\\x67\\xc5\\xff\\xb6\\x75\\xd8\\xe1\\x8b\\x81\\x63\\xa9\\xdc\\x91\\xb9\\x27\\x96\\xcb\\x4d\\x18\\x7c\\xf6\\xf1\\x66\\x36\\xbc\\x62\\x11\\x59\\x21\\x86\\x8b\\x71\\x35\\x58\\xb5\\x84\\xb5\\xa8\\x1f\\x8f\\xd7\\xe7\\x2c\\xa2\\x40\\xbe\\x5b\\xb5\\x63\\x22\\xdb\\xf1\\x05\\x26\\xbf\\xb0\\x33\\xf2\\xc9\\x7e\\xa8\\x1e\\xdb\\x22\\x7a\\x35\\xf6\\xea\\x7d\\xa4\\xbb\\xab\\x71\\x40\\xbb\\xbf\\x48\\xd0\\xfb\\xb4\\x0a\\x62\\xf6\\x92\\xed\\x8f\\x96\\x73\\xeb\\x45\\xa5\\x1f\\x87\\x5e\\x5f\\x76\\x65\\x28\\x9e\\x89\\xb0\\xea\\x0d\\xd5\\xdf\\x05\\x68\\x73\\xf5\\x13\\xc9\\x5b\\x5a\\xc2\\x22\\x4c\\x83\\x93\\x1e\\xb9\\xb1\\x9f\\xfd\\xe0\\x62\\xde\\x62\\x6f\\x06\\xe9\\x33\\x7f\\x6d\\x5b\\xf5\\x32\\x3c\\x7d\\x36\\xb6\\x46\\xf3\\x78\\x47\\x4d\\x17\\xc3\\x54\\x67\\xd4\\x40\\x22\\xa1\\xac\\xae\\xa0\\x5e\\x6b\\x36\\x05\\x37\\x7a\\x8a\\x91\\x85\\x61\\x3a\\xee\\xb5\\xcb\\xa6\\x3c\\xc8\\x88\\x37\\x19\\x72\\x3d\\xd4\\x1f\\x37\\x6f\\x5a\\x59\\x19\\x54\\x53\\xb1\\x2b\\x36\\x2e\\xcf\\x18\\xb1\\xed\\x9d\\x71\\x42\\x70\\xef\\x1c\\x0d\\x35\\xde\\xa0\\xfd\\x20\\x27\\x95\\xdf\\xe1\\x31\\xcc\\xe4\\x3c\\x36\\x0c\\x25\\xc1\\xfe\\x13\\xea\\x05\\xad\\x83\\xc4\\x33\\xd0\\xef\\x84\\x0a\\xe3\\x9d\\x66\\x11\\x5c\\x86\\xbe\\x06\\xe3\\x5e\\x74\\x6a\\xea\\x66\\xe4\\x0e\\xb6\\x71\\x99\\x58\\x60\\xdc\\x80\\x24\\xb9\\x0a\\x19\\xad\\xea\\xce\\xa6\\xcb\\xcc\\xa8\\x0f\\x88\\x20\\xd6\\x81\\x1c\\x19\\xfe\\x9a\\x16\\x37\\x8b\\xaa\\x91\\xe7\\xeb\\xa6\\xeb\\xfc\\x26\\xf1\\xd5\\x77\\x62\\xc7\\xef\\xf7\\xd0\\xa0\\x8c\\x45\\xdb\\x17\\xf0\\x60\\x43\\xa0\\x98\\xe7\\xa6\\xf9\\x62\\xb8\\x7e\\xdd\\x77\\x6d\\x41\\x12\\x1d\\xea\\x77\\xb2\\xed\\x3e\\x30\\x84\\xf0\\x6a\\x51\\x7c\\x51\\x08\\x3c\\x36\\x2c\\x92\\xc6\\x8e\\x46\\x1f\\x07\\x94\\xc4\\x3e\\x4e\\xd1\\xa2\\x26\\x8d\\x3a\\x07\\x0d\\xdd\\xc1\\x49\\x2d\\x94\\x6d\\xc4\\x21\\x9c\\x1c\\xdc\\x6b\\x7a\\x1c\\x78\\xbb\\x3f\\x09\\xed\\xbb\\x8f\\xda\\x41\\xe7\\xb8\\x0a\\x4d\\x89\\x26\\xed\\xb4\\xff\\x98\\xcb\\x41\\xb5\\x9b\\x56\\xfe\\xc5\\xda\\x3a\\xcf\\x81\\x46\\x50\\x5a\\x29\\x8e\\x12\\x10\\x5f\\x38\\xd2\\xc3\\x9b\\x3f\\x92\\x26\\x51\\xe1\\x5e\\x82\\xbd\\xea\\x37\\x23\\xcf\\xb7\\xc1\\x1f\\x7a\\xc1\\x1a\\x5f\\x18\\x18\\xb3\\x03\\xa1\\x12\\x86\\xfd\\x6d\\xbc\\x55\\x06\\xd3\\xdb\\x88\\xab\\x0b\\x48\\x61\\xe0\\x96\\xa5\\x35\\x32\\xcd\\x1b\\x1e\\xca\\xa1\\xc9\\x18\\x65\\x34\\x6a\\x8c\\x0f\\x78\\x9d\\x98\\x8e\\x08\\x90\\xe9\\xf1\\x5c\\x9e\\x6f\\xb0\\xee\\x25\\xab\\x52\\x74\\xeb\\x7a\\x66\\x7a\\x38\\xaa\\xd3\\xda\\x8e\\xe1\\xb6\\x3f\\xce\\xbe\\x9e\\x26\\x0b\\x7c\\xb4\\x84\\x28\\xfa\\xdd\\x41\\xcd\\xd5\\x76\\xc5\\xb2\\xb2\\x85\\x23\\x7e\\xe5\\x93\\x85\\x1a\\x7e\\x62\\x94\\xb0\\xd6\\x46\\xc8\\x7f\\x88\\xb0\\x10\\xe1\\x4f\\x43\\xcb\\x54\\xa4\\xe5\\x6f\\x3f\\xed\\x88\\xe4\\xf9\\x43\\x66\\x12\\x1e\\x5d\\x55\\xe1\\xba\\x34\\x1d\\xe4\\x35\\x86\\x34\\x4a\\xa6\\x8f\\xfa\\x38\\xff\\x0d\\xc3\\x64\\x98\\xb4\\xf8\\x43\\x6f\\xa1\\x3c\\x9a\\xdb\\xd0\\x3a\\x50\\x79\\x6d\\x4b\\x29\\x45\\xf5\\xd6\\x72\\xa6\\x39\\x0d\\x2d\\xf2\\x53\\xcc\\xd6\\x64\\xee\\x93\\x9b\\x14\\x36\\x5e\\x24\\xc1\\x3f\\x26\\x99\\x8f\\xba\\x41\\xc3\\xcb\\x2c\\xfe\\x42\\x25\\xfc\\x0d\\x69\\xd1\\xa8\\xb3\\x6f\\x3c\\x08\\xdc\\xc5\\xf2\\xb5\\x1a\\x47\\x6b\\x52\\x6e\\xde\\x2e\\x92\\x52\\x62\\x5a\\x16\\x73\\xa3\\x22\\xcb\\x92\\x89\\x12\\x23\\x51\\x9e\\x58\\x6e\\x07\\x14\\x1e\\xdf\\x87\\xcc\\xc2\\x31\\xf9\\x54\\xc8\\xc3\\x6d\\x09\\x5a\\x63\\x06\\xd9\\x17\\xde\\xeb\\x15\\x7b\\x49\\xcb\\x81\\x94\\x8e\\x4f\\x40\\xf1\\x70\\x4d\\xa3\\x04\\x88\\x51\\xc8\\xf6\\x32\\x69\\x13\\xca\\x48\\xcf\\xbf\\xf2\\xb5\\x0f\\xbd\\x0b\\x00\\x6d\\x9e\\x95\\x00\\x7b\\x48\\xbe\\x56\\x47\\x32\\x3e\\x8d\\xdb\\xf7\\x37\\xf0\\x60\\xf4\\xf7\\x06\\x6b\\x3d\\x3e\\x78\\x1c\\xde\\x71\\x6c\\x06\\x82\\x3a\\x47\\xca\\xa1\\xd3\\xef\\x05\\xd0\\x99\\xc6\\xb0\\x25\\xda\\xd9\\x36\\x67\\x76\\xa9\\x30\\xc3\\xef\\x4b\\xdc\\x7a\\x80\\x5d\\x01\\x88\\x27\\x99\\x49\\x86\\xca\\xf3\\xeb\\x51\\xb3\\xa8\\xa7\\xa1\\x61\\xb8\\x70\\xf5\\x1b\\x33\\x93\\x18\\x47\\x22\\xe3\\x8f\\x7b\\x36\\xe9\\xc3\\x6f\\x30\\x28\\xae\\x2c\\x7a\\x60\\xff\\x88\\xe0\\xab\\x03\\xaa\\xca\\x8f\\x2b\\x29\\xcc\\x5a\\x73\\x3d\\x16\\x23\\xd6\\x90\\x6e\\x0c\\x78\\xfc\\x99\\xa2\\x6d\\xc4\\xcc\\x45\\x36\\xf3\\xfa\\x88\\x92\\xba\\x8c\\xbf\\xc7\\x8c\\xbf\\x8e\\x97\\xf0\\x6e\\x06\\x89\\xfb\\x27\\xf6\\x19\\xf5\\x2f\\xa4\\x45\\x14\\x87\\x95\\x8c\\x0e\\xc3\\x42\\xb8\\xc9\\x4b\\xaa\\xca\\x9d\\x30\\xcf\\x2e\\x06\\xf4\\x6f\\xa8\\x9a\\x1d\\xf2\\xa9\\x31\\xa8\\x23\\x21\\x5d\\x39\\x24\\x6e\\x27\\xc6\\x96\\x18\\x0f\\x84\\xc6\\x4b\\x2f\\xa5\\xb4\\xbd\\x87\\x88\\x56\\xd2\\x3f\\xd3\\x99\\x02\\x64\\xb8\\x26\\xdc\\x73\\x08\\x02\\xec\\xf6\\x18\\x80\\x39\\x7b\\x96\\xcc\\x2f\\x0b\\xcb\\xad\\xab\\x45\\xb3\\x55\\x93\\x8b\\x6c\\x46\\x03\\x96\\x3f\\xe0\\x56\\x2a\\x3c\\x41\\x73\\x64\\xa2\\x27\\x6c\\x60\\xba\\x88\\x10\\xe6\\x5e\\x54\\x53\\x6c\\x74\\x68\\x5f\\x9d\\x8c\\x14\\xbd\\xcf\\x68\\xfd\\xe0\\x7c\\xfc\\x29\\x55\\x2a\\x58\\x29\\x05\\x3b\\xc1\\xa3\\xe2\\x40\\x24\\xbc\\x8b\\x72\\x34\\x4b\\x27\\xf1\\x46\\x79\\xac\\xd1\\x97\\x72\\x4a\\x96\\x8b\\x9a\\xb2\\x02\\x47\\x9e\\x72\\x65\\x46\\x17\\x52\\x87\\xb7\\x9e\\x8b\\xdc\\xa1\\x7c\\x24\\x44\\x5a\\x7a\\xce\\xe7\\xe3\\xa3\\xba\\x86\\x25\\x2a\\xdb\\xc0\\x18\\xf3\\x53\\xd8\\x42\\x1b\\x8b\\x6b\\x12\\xdd\\x2c\\xed\\x5e\\x10\\xbb\\xd3\\x2b\\x01\\x23\\x5c\\xa3\\x0a\\x50\\x68\\x4f\\x22\\x76\\x4f\\x7e\\xb5\\x78\\x8f\\xa6\\xc4\\x2d\\x4f\\x18\\x4f\\xbe\\x43\\xec\\xb8\\x39\\x49\\x66\\x52\\x68\\x15\\x8f\\x9b\\x25\\x12\\x87\\x2f\\x86\\x4e\\xd6\\xcc\\xb1\\x19\\x8e\\x6d\\x43\\xf0\\x85\\xcc\\x2a\\x7b\\x31\\x1c\\x83\\x53\\xee\\x10\\x1d\\xca\\xca\\x40\\x8f\\xf6\\x50\\x22\\x88\\xd7\\xdc\\x60\\x4f\\x96\\x32\\x5c\\x2c\\x4e\\xab\\xc0\\x04\\xa5\\xb1\\x13\\x67\\xa2\\x91\\x37\\x70\\xf6\\x10\\x62\\x52\\x1a\\x0c\\x83\\xf8\\xbf\\x2d\\xce\\x83\\xa9\\x98\\x28\\xa9\\x68\\x67\\x67\\xf8\\xe0\\x4d\\x3f\\xd6\\xec\\x41\\xb0\\xe0\\x6f\\x83\\x4e\\xf4\\xd4\\xe2\\x86\\x06\\x6c\\x48\\xdd\\xa1\\x5a\\x34\\xf3\\xaf\\x85\\x44\\xe1\\x1b\\x16\\xfe\\x4b\\x09\\x86\\xf9\\x46\\x64\\xec\\xcd\\x38\\x1d\\xb3\\xb5\\x97\\xb1\\xf8\\x68\\xc2\\x18\\xd2\\x86\\x68\\x1c\\x52\\x42\\x04\\xc7\\x5c\\xbe\\x2e\\x38\\x33\\x3d\\x5b\\xd8\\xe0\\x5f\\x35\\x1d\\x12\\x82\\x11\\xe9\\x6e\\xe0\\x8d\\xf9\\xea\\xfb\\xb0\\x42\\x83\\x78\\x2e\\xd7\\x5f\\xdc\\x84\\x64\\x7a\\x7d\\x3a\\x01\\x4c\\x7d\\x8a\\x3f\\x0c\\x75\\x94\\xe6\\x4b\\xb3\\xa7\\x62\\x2c\\xa2\\x5d\\xd9\\x0f\\xdb\\x68\\xce\\xbb\\x0e\\x92\\xd1\\x99\\x9e\\x9c\\x33\\x69\\x2d\\xea\\xd8\\x92\\x7f\\x3b\\x0d\\xeb\\x88\\x57\\x12\\x36\\x4c\\x8f\\x2b\\xa3\\x8c\\x3f\\x9a\\x0f\\x16\\xf5\\xff\\xd0\\x29\\x8c\\xa9\\x60\\x3a\\xee\\x30\\xc8\\xa7\\xf3\\xb9\\x8e\\x4d\\xaa\\x91\\x7f\\x92\\xb3\\x2a\\x2e\\xe9\\x1a\\xd7\\x68\\xa8\\x8d\\xb3\\x3a\\xa4\\xa9\\xe0\\xd7\\x44\\x7a\\xfe\\x1c\\x65\\xcd\\x83\\xec\\x0d\\xe2\\x3e\\xfc\\x53\\xc2\\x6f\\x4c\\x47\\xff\\x93\\x50\\x30\\x04\\x81\\xbd\\x42\\x2d\\x7c\\x11\\x62\\xe3\\x55\\x76\\xce\\x1d\\x0f\\xac\\x08\\xd0\\x38\\x77\\x68\\x7e\\xe3\\xad\\x4a\\x7d\\xe4\\x15\\xa2\\x69\\x46\\xa2\\xb3\\x18\\xf5\\x57\\xfe\\xf2\\xf8\\xdf\\xcc\\xb6\\x44\\x77\\x96\\xc9\\x8b\\xd6\\xf0\\xb5\\xdd\\x72\\x46\\xe4\\x35\\x27\\x74\\xc1\\xcb\\x58\\x48\\xb8\\x4f\\x6d\\xb7\\x76\\x42\\xec\\xf9\\x5b\\x6a\\xec\\x4d\\x73\\x0e\\x44\\x0f\\x87\\x34\\xef\\xef\\x4d\\x28\\x16\\xcc\\xb3\\x53\\x24\\x18\\x95\\x3b\\xf3\\x55\\xaa\\xfb\\x4a\\x31\\xcd\\x21\\xdb\\x4a\\x48\\xba\\xa3\\x54\\xf1\\xb6\\xd4\\x69\\x56\\xc1\\x5e\\x79\\x44\\xb2\\x0e\\x48\\xe3\\xa6\\x2b\\xd5\\xec\\x1d\\xe9\\xf5\\x75\\x1a\\xd7\\x8e\\xd8\\x1c\\xeb\\xca\\x1b\\xf7\\x53\\x85\\x6a\\xe7\\x6e\\xe9\\x01\\x35\\x0e\\x80\\x5b\\x91\\xbb\\x72\\x21\\xd1\\xaa\\x63\\x29\\x6f\\x86\\xd2\\xeb\\x0d\\x6a\\xd6\\x97\\x19\\xdf\\xa8\\xbc\\x22\\x2c\\x4f\\x17\\x74\\x7f\\xd7\\x6f\\xf9\\x3f\\xc4\\x6e\\xdc\\xec\\xcf\\x2d\\xe8\\xe3\\x71\\x21\\xa0\\x35\\x0b\\x9f\\x82\\xd3\\xf9\\x38\\xe2\\xbe\\x6b\\xb1\\x64\\x8e\\x6e\\x88\\x64\\x4c\\x96\\xa0\\xb6\\x23\\x3b\\x20\\xcb\\xb9\\x12\\xa5\\xaf\\x9d\\x97\\x73\\xe9\\xc3\\xdd\\x3a\\xbe\\x87\\xc1\\x41\\x25\\x3e\\xbc\\xa5\\xcf\\x2b\\x10\\x9c\\xbe\\x16\\x2f\\x78\\x6b\\x26\\xdc\\xc4\\x30\\xa5\\xf8\\x1b\\x8b\\xdf\\xe0\\x90\\xcb\\x71\\xba\\x60\\xc7\\x56\\xa5\\x8f\\x98\\xf1\\x9a\\xd1\\x68\\xd7\\xf2\\xee\\x2a\\x14\\x17\\x60\\x98\\x14\\x0f\\x63\\x21\\x0e\\x3c\\xa7\\xb4\\xe4\\xe6\\x7a\\x14\\x94\\x3e\\x13\\x10\\xf4\\x90\\xf0\\x2b\\x68\\xd8\\x62\\x4e\\x8c\\xe1\\x3a\\x68\\x03\\xbf\\x70\\x85\\x60\\xe1\\x01\\xe8\\x67\\xa2\\x28\\x64\\x21\\x6f\\x2e\\x93\\x38\\x87\\x2b\\x9a\\x65\\x57\\xbc\\x2c\\x8d\\xf3\\x7b\\x67\\x4b\\x8e\\x42\\xbd\\xa4\\xc3\\xe3\\x0e\\xcf\\x8c\\xfb\\x96\\x5b\\x84\\x3d\\xa7\\xe1\\xf5\\x72\\x3f\\xa0\\xbb\\x00\\x3c\\xc0\\x76\\x5e\\x2c\\xda\\xab\\x6b\\x12\\xaa\\x41\\x69\\xbc\\xed\\x5b\\xaf\\x34\\x16\\xcc\\x13\\xad\\x3f\\xb2\\x55\\xc3\\xd7\\x38\\xee\\xad\\x47\\xea\\xc5\\xe5\\x0d\\xab\\x92\\xe1\\xc2\\x41\\xbe\\x51\\x23\\x39\\xd4\\x61\\x78\\x37\\x71\\xc4\\xda\\xc6\\x5f\\x0d\\x40\\x08\\xc6\\x2c\\x05\\xab\\x78\\x3b\\x29\\xf9\\x50\\xfb\\xd9\\x99\\xe3\\x98\\xb2\\xaa\\x52\\xc1\\x31\\xd0\\xfa\\xf5\\x53\\x45\\xe9\\xb7\\x3c\\x37\\x9f\\xd4\\xaa\\x17\\x53\\xc3\\xc1\\x09\\x03\\x02\\x4c\\xda\\xb0\\x59\\xfc\\xee\\x1f\\x5b\\xcf\\x2f\\xea\\x4f\\x62\\x80\\xf8\\xf0\\xe3\\xdc\\xdb\\xfe\\x86\\x2f\\xee\\x05\\xe4\\xe0\\xba\\x3e\\xcb\\x38\\xb1\\xeb\\xfe\\x01\\x4f\\xef\\x77\\x68\\xfd\\x7e\\x17\\xa5\\x29\\x26\\x7e\\x38\\xa8\\xf4\\x7e\\xc9\\xc0\\x24\\xe8\\xc0\\x8a\\x91\\x0e\\x9f\\xd1\\xd3\\x6f\\xb9\\xb1\\x98\\xc0\\x8a\\xf3\\x61\\x13\\xfa\\x0d\\x5e\\x36\\xce\\x54\\xff\\xd3\\x36\\x12\\x7e\\xac\\x1a\\x3d\\x34\\xd1\\xda\\x60\\x87\\x7a\\xa2\\xb0\\xaf\\x0d\\xef\\x50\\x3e\\x74\\x21\\xe1\\xbe\\xaf\\x5e\\x79\\x28\\xe5\\x28\\xce\\x0b\\xe1\\x97\\x5d\\x14\\xc3\\x48\\xbd\\xb9\\x11\\x68\\xb4\\x97\\x61\\x4d\\x31\\x3b\\x20\\xd0\\xdc\\xb9\\x79\\xad\\xd7\\x6b\\xc2\\x2e\\x30\\xb2\\xa0\\x36\\x4e\\xc5\\x9b\\xae\\xc9\\x65\\x50\\x70\\x0b\\x09\\x09\\x0d\\x09\\x39\\xa8\\x4d\\x56\\x90\\x06\\xe3\\x54\\xdb\\xf0\\x32\\x25\\xb5\\x1b\\xc1\\x21\\x0d\\x14\\xbf\\xde\\xcb\\xde\\xe5\\x5a\\x0f\\x5a\\xd6\\x15\\x0c\\x30\\xd9\\xfa\\x8d\\x91\\x0b\\xb8\\xe5\\x00\\x74\\xe7\\xfc\\x1e\\xe8\\x25\\x23\\xbd\\x84\\x52\\x0b\\xc7\\xb5\\x8b\\x93\\xbb\\x87\\x8b\\x9d\\x2b\\xb5\\x7b\\xbb\\xbb\\x71\\x35\\x51\\x86\\x56\\xf6\\x1a\\xd8\\x48\\x64\\x4e\\xdc\\x7d\\x90\\xa2\\xf0\\x4a\\x3e\\x3d\\x5a\\x41\\x1b\\xad\\xd5\\xa5\\xed\\x4b\\x33\\x07\\x75\\x5d\\xdd\\x5a\\x9a\\x25\\x95\\x6e\\xc3\\xc0\\x70\\x78\\xaf\\x23\\x1a\\x15\\x4b\\x30\\x45\\xd4\\x58\\xab\\x42\\x19\\xbb\\x93\\xd1\\x15\\xd5\\x49\\xab\\x93\\xa4\\x68\\x04\\xda\\x07\\x83\\x0d\\x5b\\x55\\xcb\\x14\\xc9\\xe8\\xb3\\x05\\xc3\\x79\\x05\\x21\\xe2\\xd8\\x3c\\x20\\x80\\x75\\xa9\\xcb\\xad\\x9d\\x28\\x82\\x53\\x4b\\xc1\\x9b\\x01\\xdd\\x25\\xa1\\xb2\\x27\\x53\\x41\\x60\\x3d\\xa2\\x9f\\x55\\xce\\x22\\xcc\\x0d\\x39\\x27\\x58\\x9f\\x3d\\x90\\x1d\\x48\\xc9\\xb8\\x9d\\x56\\xe5\\x1e\\x6c\\xc1\\x81\\xe5\\x92\\x4c\\x8e\\x1c\\xea\\x3a\\xbf\\x45\\x6b\\xfa\\xd0\\xcf\\x19\\xbd\\xeb\\x1b\\xd4\\xf0\\xe6\\x95\\xfe\\xf6\\xd3\\x81\\x8a\\xb2\\x81\\x67\\xe3\\xf7\\xa3\\xaf\\xf8\\x7f\\xd1\\xac\\x3c\\x5e\\x04\\x71\\x3a\\x05\\x4a\\x11\\x67\\x10\\x7c\\xb4\\xcf\\x0f\\x3f\\xa5\\xa9\\xe0\\x7a\\x5e\\x1a\\x1c\\x7f\\x78\\x57\\xf7\\x77\\x41\\x7e\\xf5\\x5b\\x75\\x53\\x14\\xad\\x49\\xab\\x57\\xe6\\x84\\x5a\\x3a\\x66\\x29\\xc9\\xcc\\x73\\x51\\xe3\\x64\\x02\\x91\\x5a\\x3b\\x81\\x98\\x7c\\x80\\x12\\x74\\xe6\\x7d\\xdd\\x8e\\x2e\\x2f\\x3b\\x77\\x55\\x86\\x35\\x0e\\x39\\xd4\\x28\\x5f\\x5f\\x5a\\xfd\\x21\\x67\\x02\\x4b\\x46\\x82\\x18\\x11\\xda\\x76\\x62\\xb4\\x5a\\x58\\x65\\xdd\\x9d\\xf5\\xe3\\x5a\\x90\\x5b\\x0a\\x4e\\x9c\\x6d\\x0e\\xda\\x18\\x09\\x1a\\x64\\x1c\\x20\\x58\\xcb\\x5a\\xe9\\x71\\xa0\\x6e\\x91\\xd0\\xab\\x06\\xf3\\xbd\\x71\\x7d\\x1d\\x91\\x52\\xc5\\x97\\x36\\x27\\xfa\\x96\\x9a\\xf0\\x91\\x93\\xee\\xd4\\x08\\xaa\\x5d\\x9e\\xe8\\x5b\\x89\\x55\\xa4\\xd2\\x54\\x8e\\x1e\\xc2\\x43\\xaf\\x71\\x1f\\x98\\xd5\\x38\\x5c\\xcd\\xb3\\xd4\\x87\\xfe\\x97\\xc9\\xcf\\xee\\x39\\xe9\\xa3\\x32\\x27\\x33\\xed\\x46\\x12\\x6f\\x5e\\xb2\\x97\\xc7\\xaf\\x56\\x25\\x5d\\x33\\x18\\xf9\\x50\\x2a\\x47\\xb1\\x1e\\x55\\x3a\\x48\\xb0\\xc8\\xe9\\x6d\\x93\\x0e\\x77\\x61\\x84\\xdf\\xc5\\xd6\\x62\\x58\\x69\\x01\\x07\\xe1\\x0e\\xa2\\x4f\\x44\\x04\\xef\\x44\\x1d\\x32\\x7b\\xd1\\xbc\\x38\\xb7\\xea\\x20\\xcc\\x9d\\x4a\\xd0\\xc5\\x06\\x86\\x46\\xfd\\x18\\x9e\\x56\\xb5\\x40\\xa7\\x6e\\x4e\\x79\\x54\\x34\\x0e\\xd5\\x3c\\x6e\\x14\\x20\\x7b\\x0c\\x5b\\x84\\x33\\xee\\xf4\\x93\\x31\\x26\\xb2\\xa8\\x94\\x9e\\xec\\x0c\\x70\\x78\\x65\\x30\\xae\\x82\\xd7\\xc9\\xdd\\x98\\x24\\x7f\\x58\\x48\\x13\\x3e\\x6f\\x8f\\xe2\\x5f\\x50\\x25\\x99\\x54\\x0b\\x61\\x67\\xa5\\x5d\\xd2\\x5b\\x97\\x14\\x6b\\x29\\xa5\\xf2\\x11\\x2a\\xfa\\x11\\xa5\\xc8\\x62\\xb1\\xe1\\x10\\xac\\x72\\xcf\\xd1\\x97\\x38\\x15\\xe3\\xd0\\xaf\\xd8\\x7c\\xfa\\x7e\\xd8\\x94\\x22\\x4d\\xd8\\x61\\xab\\x78\\xe1\\xd1\\x64\\xc7\\x1e\\xac\\x29\\xea\\xcd\\x49\\xd1\\xa3\\x26\\xab\\x9f\\xbe\\x4b\\xa3\\xd9\\x29\\x6b\\x80\\x42\\xbb\\x2d\\xd3\\x90\\x94\\x90\\xa3\\xaa\\x60\\x97\\x49\\x85\\x74\\x71\\xe1\\xa0\\x92\\x95\\xd5\\x94\\x18\\x62\\xcd\\x25\\x2a\\xc7\\x24\\xb8\\x92\\xf2\\x9a\\x85\\x48\\xb0\\x79\\x33\\xea\\x02\\x99\\x1c\\x63\\x66\\x33\\x38\\x0b\\x52\\x1a\\x57\\x76\\x5b\\xb4\\x27\\x20\\x4d\\x41\\x63\\xd0\\x76\\xa7\\x7b\\x58\\x63\\x43\\x62\\x46\\x2d\\xcd\\x0a\\xc1\\x95\\x28\\x49\\x79\\xef\\xbc\\xb9\\xc4\\xa6\\xaa\\xcb\\xad\\x70\\x9b\\xad\\xe6\\x81\\x59\\x8c\\x58\\xa9\\x61\\xbe\\xe5\\xd3\\x45\\xd4\\xc0\\xd7\\xf8\\x77\\x62\\x59\\xe5\\x12\\x9c\\x0b\\x9f\\x74\\x72\\x83\\x55\\xf4\\x55\\x09\\x31\\xaf\\x04\\xe8\\xb4\\x14\\x8c\\x8d\\x48\\xde\\xc4\\xb0\\xf1\\x66\\x11\\x66\\xaf\\x10\\xfd\\x3b\\x45\\x6f\\xd3\\x4a\\x00\\xa2\\x4a\\x25\\x16\\xe2\\x4c\\xf4\\xf8\\xf0\\xc8\\x48\\x1b\\xec\\x3a\\x21\\x61\\x9a\\x1c\\xa2\\xd4\\x0a\\x34\\x29\\xe9\\x68\\x95\\x17\\xe2\\x19\\xc3\\x8d\\xd2\\x47\\x54\\x51\\xbe\\x4e\\x74\\xc2\\x75\\x29\\x5b\\xe1\\xf4\\x95\\x99\\x8b\\x9c\\xcc\\x7d\\xc4\\x4e\\x04\\xf1\\x70\\x4b\\xb2\\x28\\x19\\xd4\\xda\\xba\\x00\\xbc\\xb9\\xf2\\x09\\x22\\x3e\\x76\\x80\\x3c\\x81\\x62\\xf8\\xa1\\xe0\\x26\\xdd\\x11\\x35\\x46\\x52\\xc8\\x3d\\xaa\\x38\\x2b\\xe7\\xfb\\x83\\xcb\\x45\\x2d\\xfa\\x39\\xd1\\x39\\x55\\x3a\\xa3\\x26\\xd4\\x51\\x2e\\x0c\\x32\\xe6\\xbd\\x5a\\xaf\\xfe\\xc3\\x7d\\xf7\\xb7\\x81\\x0c\\xe9\\x0f\\x67\\x29\\xcb\\x57\\xa5\\x95\\xc2\\x61\\x53\\x84\\x0e\\xaa\\x7c\\xb1\\xf6\\x0e\\xca\\x07\\xb1\\xce\\x04\\x3a\\x41\\x31\\x16\\x9d\\x2d\\x24\\xd5\\x5b\\x07\\x0a\\x44\\xba\\xf9\\x10\\xfc\\x22\\x7b\\xe3\\x2b\\x13\\x76\\x9b\\x26\\x92\\x96\\x62\\x8a\\x14\\x52\\x92\\xfc\\xbc\\x94\\x21\\x08\\xcb\\x2c\\xf9\\x99\\x9c\\xf8\\x51\\x42\\xde\\x91\\x0a\\x75\\x37\\xeb\\x8f\\xc6\\x6f\\x04\\x6d\\xc5\\xf2\\x4d\\x40\\x1b\\x32\\xbf\\xdd\\x49\\x2f\\xd1\\xef\\x83\\xc5\\xaf\\xab\\x10\\x26\\xba\\x09\\x32\\x94\\x0f\\xf3\\x98\\x7a\\xd5\\xa8\\xf9\\xef\\x65\\x4a\\x54\\xf3\\xec\\x2c\\x59\\x63\\xd5\\xb2\\xc8\\x82\\xb2\\x2e\\x57\\x41\\x43\\x29\\xd1\\x28\\xb1\\x9d\\x3d\\x36\\xf5\\x55\\x79\\x73\\x37\\xf1\\x63\\x1f\\x02\\x73\\x7d\\xad\\xd4\\xa6\\x92\\x7e\\x8b\\xe3\\x31\\xd8\\xe6\\x27\\xc6\\xfd\\x63\\x62\\x3d\\xe0\\x15\\x5f\\x6c\\xcc\\xbc\\x5a\\xda\\xb4\\xa1\\xc2\\xc3\\x41\\x67\\xaf\\xb7\\xa9\\x4a\\xee\\x1d\\xce\\xfb\\x86\\x89\\x6f\\xee\\x45\\xa1\\xf8\\x72\\xa2\\x44\\xf8\\xee\\x76\\x90\\x68\\xc2\\xe6\\x77\\x5b\\x56\\xc7\\x76\\xb2\\x81\\xc3\\xb7\\x6f\\x36\\xfc\\x0c\\xbf\\x3f\\xdc\\x51\\x76\\x51\\xe4\\xcd\\x9b\\xee\\xdd\\xf0\\x65\\x4c\\x76\\xf3\\x3f\\x0f\\x91\\x91\\x1f\\x93\\x5e\\xc4\\x5d\\xd7\\xe1\\xc9\\x1d\\x36\\x91\\x82\\xe4\\x63\\x96\\x08\\xd4\\xf0\\xb2\\x2b\\x00\\xd9\\x86\\xe6\\x5a\\xad\\x25\\xfb\\x2f\\xad\\xdc\\xb3\\xda\\x18\\x27\\x1b\\x3b\\xfb\\xce\\x7c\\xcc\\x07\\xb8\\x9d\\x0f\\xf7\\x7e\\x0a\\x38\\xc7\\xdc\\x58\\x97\\x1e\\xe5\\x6b\\x8a\\xf9\\x18\\x01\\xf2\\x32\\xfc\\x89\\x7f\\x9b\\x7e\\x8c\\xc6\\x02\\xf5\\xea\\x36\\x24\\x73\\x84\\x83\\x91\\xa0\\x28\\xed\\x58\\x30\\x94\\x95\\x20\\xc6\\xf6\\xb2\\x03\\x0d\\x5e\\x6e\\xef\\x03\\x4d\\x89\\x7b\\x5b\\xf0\\x62\\xb6\\xcd\\x20\\x23\\x0a\\x63\\x06\\xfb\\xec\\xaa\\xd8\\xbb\\x5f\\x41\\xea\\x19\\x7c\\x20\\xe3\\x19\\x0d\\xcf\\xe5\\x02\\x7c\\x2a\\xff\\xb3\\xd7\\x95\\xc2\\xb4\\x9e\\x73\\xee\\xfc\\x77\\xeb\\x99\\x9b\\x87\\x96\\xfb\\x95\\x56\\x77\\x90\\x7a\\xa6\\x56\\x90\\x7b\\x32\\x2d\\xbb\\x07\\x53\\x4a\\x1e\\xa3\\x74\\x50\\xc5\\xe3\\x11\\xd3\\x0c\\x15\\x16\\xf1\\x5c\\xe6\\x03\\xf8\\x3b\\x0f\\x1d\\x55\\xd6\\x02\\x6e\\x69\\x88\\x28\\x8a\\xa8\\x88\\x23\\xfa\\x75\\xdb\\x04\\x5b\\xeb\\x1a\\x94\\x60\\x7c\\x92\\x99\\xf7\\xac\\x5b\\xf7\\xe1\\xd4\\xd8\\xf1\\x8d\\x0e\\xff\\xcf\\xb2\\x69\\x0e\\x16\\xe7\\xf8\\xbc\\x72\\xd1\\xcc\\xf1\\x1f\\x76\\x9d\\x78\\x78\\xf1\\x44\\x3b\\x66\\x34\\x35\\xac\\xdc\\x1c\\xa4\\x6d\\x34\\xe9\\x25\\x9c\\x2a\\xcb\\xaf\\x94\\xfc\\x26\\x44\\x5a\\xcc\\x63\\x4d\\x8b\\xf4\\x73\\x31\\x3e\\x47\\x19\\x96\\x2b\\xd9\\x61\\xa4\\xc0\\x71\\x6e\\xef\\xb2\\xe1\\xb3\\x60\\x05\\x9a\\xe6\\xf5\\x00\\x4e\\x61\\x96\\xd5\\x6d\\x92\\x88\\xde\\x61\\x1d\\x31\\x2c\\xfc\\xf7\\x9a\\x3a\\xc5\\x41\\x07\\x6b\\x5a\\x33\\x56\\xea\\x59\\xf4\\xfc\\xb5\\xa3\\xfa\\xfa\\x74\\x30\\x2f\\xea\\x2e\\x51\\x5e\\xe8\\x18\\x8b\\xe9\\xe7\\x8c\\x82\\x99\\xa6\\xfe\\x8d\\xdd\\xfa\\x0b\\x01\\x1e\\x08\\x5e\\x4e\\x77\\xea\\x76\\x9e\\xf8\\x81\\x46\\xb5\\x9c\\xfe\\x9b\\x6b\\x21\\x82\\x52\\xcd\\x9c\\x8e\\xbc\\x88\\xf2\\x9d\\xe0\\x38\\x9f\\x3e\\x04\\x9b\\xfa\\x0a\\x13\\x71\\xfe\\xea\\x8b\\x95\\xaa\\x76\\x9c\\x61\\xfc\\x87\\xa6\\x9f\\x73\\x7d\\x6b\\x3f\\xcd\\x7b\\xd6\\x37\\x8e\\xc9\\x59\\x95\\xe8\\xa1\\x46\\x62\\x9d\\x86\\xe3\\xe6\\x67\\x6b\\x58\\x23\\xd1\\x1e\\xf6\\x54\\x63\\xe3\\xd8\\xd7\\xb6\\x3f\\x05\\x93\\x84\\x75\\x26\\x5d\\x3d\\xf9\\x40\\x6e\\x42\\x07\\xb7\\x31\\x99\\x89\\x80\\x3f\\xb1\\x9e\\xb9\\x37\\xf6\\x10\\x9e\\xb6\\x89\\x6c\\xdc\\xfe\\x5a\\x5f\\x3a\\x5a\\x71\\xf9\\x57\\xd6\\x20\\x3c\\x48\\xa4\\x63\\x7e\\xe1\\x28\\x9c\\xf2\\x5d\\xaf\\x14\\xb8\\x96\\x6b\\x93\\x64\\x89\\x24\\x90\\x59\\x3b\\x1c\\x87\\x9a\\xf2\\x21\\x69\\x51\\x18\\xbc\\x20\\x22\\x40\\x1d\\xea\\x31\\x94\\x43\\x56\\xd3\\x1a\\xf5\\x65\\x2a\\xb6\\x1c\\xd9\\xf1\\x00\\x0e\\x0a\\x62\\x2d\\xc6\\xb1\\xa4\\x5a\\x93\\xf4\\x5f\\x6b\\xcf\\x5e\\x10\\x2d\\x9a\\x4e\\x0a\\xf9\\x82\\x49\\x0f\\x7f\\xbf\\xc2\\x6b\\x74\\x7d\\xb7\\xad\\x0f\\xf1\\xd8\\x9f\\x8a\\x88\\xff\\x56\\xc2\\xe5\\xf9\\x8b\\xf9\\x77\\x7f\\xac\\x15\\xd6\\xd4\\xdc\\x0d\\x44\\x9c\\x2e\\x23\\x79\\x6c\\xe8\\xd5\\x0c\\x3b\\x97\\xc1\\xaa\\x9e\\x34\\x40\\x9c\\xf9\\x8c\\x0c\\x1c\\x6f\\x6c\\xb3\\x5f\\x9a\\x26\\xcd\\xf2\\x67\\x7e\\x6d\\xfe\\x9d\\xdd\\xfe\\xf7\\x74\\xf6\\x19\\xf9\\x18\\x44\\x4c\\x66\\x24\\xb0\\x3e\\x85\\xf6\\x83\\xa9\\x28\\x67\\xe6\\x9a\\xa1\\x08\\x08\\x03\\xcd\\x0c\\x39\\x5d\\x93\\x7d\\x47\\x1d\\xbf\\x92\\x47\\xb7\\xd4\\xfa\\x67\\xa9\\xd4\\x51\\x9d\\x05\\x0d\\xb8\\xf8\\xa4\\x35\\xed\\x04\\x3f\\x52\\xf3\\x1d\\x3a\\x93\\x56\\x67\\x3b\\x22\\x0a\\x53\\x4e\\x98\\x97\\x2b\\xbf\\x42\\x88\\xcf\\x65\\x74\\xa2\\xc4\\x39\\x5f\\x27\\x1d\\x1d\\x8a\\x34\\xf9\\x52\\xcc\\x4f\\xee\\xd4\\xc4\\xfa\\x9d\\xb0\\xac\\xfc\\xd2\\x95\\xa7\\x25\\x7e\\x35\\x9a\\xa2\\xa0\\xd3\\x42\\xd1\\x15\\x07\\xdd\\xfc\\xf9\\x83\\x97\\xd7\\x5f\\x7d\\x14\\x51\\x23\\x00\\xb1\\xaa\\xea\\x32\\xb3\\x85\\xb7\\xe7\\x6b\\x0b\\x17\\x80\\x13\\x49\\x11\\xb2\\x34\\x36\\xaa\\x84\\x1b\\x2c\\xab\\xb2\\x3c\\xc4\\x73\\x30\\xab\\x80\\xd0\\xd7\\x0f\\x01\\x1f\\xa4\\x58\\xec\\xd7\\x78\\x06\\x36\\xcc\\x22\\x07\\xe3\\xeb\\x51\\x52\\x17\\x4f\\x24\\x30\\xc5\\x41\\xe8\\x0d\\x6d\\x48\\x7d\\x05\\xd5\\x9b\\xdb\\x58\\x92\\x2d\\xb3\\xdf\\x17\\x50\\x65\\x7e\\x39\\x62\\x80\\x5d\\xe3\\xd4\\x0b\\x21\\x07\\x10\\x6b\\xb6\\xf8\\x13\\x64\\x6a\\x7e\\x1e\\xf4\\xe6\\xdb\\x07\\xc3\\xa6\\x8a\\xb4\\x74\\x9f\\x1e\\xef\\xf3\\x3c\\x9e\\xdc\\x85\\x3e\\xb7\\xd0\\x4c\\x89\\x93\\x18\\xe4\\xf1\\xb2\\xd1\\x94\\x45\\x8a\\x7f\\xd3\\xe6\\x04\\x15\\x11\\x89\\x56\\x41\\xc4\\x10\\x20\\x2c\\xd2\\xc1\\xf4\\x2f\\x89\\xeb\\x46\\x81\\x44\\x84\\x03\\x0f\\xd8\\x68\\x25\\x10\\x4a\\x22\\xae\\xac\\x2e\\x39\\xa6\\x7a\\xd2\\xa0\\xfe\\x60\\x54\\x21\\x9a\\x97\\x6a\\x70\\xaa\\x5e\\x9f\\xf3\\x28\\x33\\x15\\x8c\\xe6\\x79\\x41\\xfb\\x91\\xa2\\x6e\\xe7\\x85\\x05\\x85\\x57\\x13\\x5a\\x91\\xa1\\x79\\xdd\\x60\\x49\\x92\\x15\\x39\\xe0\\x98\\x3e\\xb9\\xe8\\xea\\x5b\\xc6\\xd9\\x2c\\xcb\\xd7\\x56\\xb8\\xa9\\x1d\\xfb\\x3b\\x5f\\xb7\\xd0\\xcc\\x28\\x9f\\x5c\\x69\\x48\\xf0\\xe7\\x46\\x83\\x45\\x44\\x62\\x41\\x6d\\x45\\x65\\xc9\\x4e\\x04\\x57\\x8a\\xb9\\x5f\\xac\\x69\\x8a\\xcc\\x59\\x97\\x05\\x12\\x41\\x92\\x88\\xbc\\x45\\x4d\\xb8\\x00\\x4d\\x72\\xde\\x33\\xc7\\x72\\x9f\\x5e\\xe5\\xf8\\xe6\\xab\\xec\\x64\\xaa\\x63\\x7e\\x15\\x6a\\x36\\xfe\\x41\\x5f\\xe6\\x63\\xf9\\xc3\\x29\\xcc\\x42\\x6c\\x98\\xe8\\x1f\\xf3\\x03\\xd2\\x2c\\x18\\x15\\x24\\x35\\x14\\x31\\x3e\\x57\\x76\\x0a\\x9b\\x4f\\xf2\\x2e\\xba\\xb8\\x8e\\xb8\\xa9\\x17\\x9c\\x89\\xb9\\xa1\\x73\\x56\\xd9\\xa8\\x4b\\xac\\x46\\x49\\xf4\\xe2\\xef\\xb2\\xb6\\x3c\\x9a\\x64\\xbc\\x14\\x93\\x81\\x59\\x83\\xc4\\xda\\x26\\x91\\xf8\\x93\\xa8\\x6e\\xd9\\x40\\x42\\x9a\\xf1\\x36\\xb8\\x8d\\x5c\\x4a\\x27\\x1e\\xb4\\x31\\xa1\\xe4\\x70\\x8b\\xd1\\x3c\\xa3\\x9a\\xd3\\x69\\x67\\x80\\x80\\x85\\x4a\\x77\\x30\\x5f\\xbd\\x09\\x59\\xf7\\x01\\x0e\\x32\\x53\\x5f\\x1f\\x1a\\xbe\\xe8\\x7a\\x42\\xaa\\xe4\\x75\\xa2\\xf0\\xf9\\x4f\\xea\\x49\\x8e\\xc7\\xfd\\x78\\x85\\xa9\\x16\\x52\\xc9\\xc7\\x22\\x03\\xfb\\x1e\\x81\\x61\\x07\\x0f\\x02\\x1f\\xb2\\x12\\x53\\xca\\xac\\x86\\x8d\\x4e\\xb4\\x61\\x50\\xc6\\xf0\\x4f\\x4c\\xd1\\x4f\\x56\\xb4\\xd0\\x0c\\x65\\x99\\xcd\\xcb\\x89\\xa2\\x64\\x41\\xc7\\x46\\xd6\\x5a\\x6b\\xc1\\x84\\x9d\\x9d\\x0d\\x90\\xfb\\xd0\\x84\\xd2\\x4e\\xea\\x68\\x71\\x7a\\xcf\\xe3\\x5f\\x32\\x87\\x0e\\x25\\x20\\xa4\\x07\\xe6\\x00\\x38\\x69\\xa8\\xef\\x02\\x68\\x25\\xa6\\x20\\x5b\\x84\\x38\\xc9\\x91\\x53\\xf0\\x38\\xb8\\x79\\x22\\x27\\x55\\x65\\x8a\\xe9\\x7f\\x78\\x63\\xa4\\x51\\xc5\\x2c\\xf6\\x6e\\xf7\\x95\\xa8\\x5a\\xff\\x1b\\x24\\x95\\x93\\xda\\x54\\xff\\x0b\\x1e\\x0f\\xbb\\x14\\x6a\\x16\\xa8\\x8c\\x64\\xad\\x8f\\x14\\xe0\\x87\\x40\\x2f\\x7a\\xb1\\x92\\xec\\x92\\x21\\x07\\xab\\x57\\xd7\\x49\\x7e\\x53\\x54\\xeb\\x78\\x96\\x7f\\x30\\xeb\\x34\\xac\\x66\\x61\\x14\\xf1\\x42\\x61\\xfa\\xb4\\x79\\xd2\\x08\\x1f\\x81\\xc9\\x69\\x66\\x62\\x33\\xc1\\x57\\x62\\xba\\x94\\x60\\x42\\x58\\x36\\xfe\\x75\\x9b\\xf5\\x7a\\x69\\x7a\\x0f\\x18\\xed\\xa8\\x52\\x5d\\x0a\\x33\\xfc\\xe5\\x6e\\x46\\x88\\xdf\\x12\\x0b\\xd4\\xd5\\x29\\xcf\\xba\\x17\\xd4\\x34\\x8a\\xc7\\xe7\\xdb\\x85\\x29\\x5d\\xb3\\xd1\\xf2\\x95\\x4b\\x10\\x66\\xea\\x0f\\x01\\xce\\xf6\\x59\\x3f\\x19\\xc5\\xd6\\x0a\\x21\\x32\\xc5\\xd6\\x3b\\x20\\x03\\xd8\\xe3\\xcc\\xee\\x54\\xf6\\xd5\\xb1\\x74\\x07\\xdb\\x44\\x4c\\xf6\\x4f\\x34\\x28\\x93\\xfc\\xce\\x90\\xd6\\x18\\x30\\x90\\xff\\x3b\\x86\\x96\\x5b\\x37\\x7a\\xe8\\x5c\\xc4\\xae\\x97\\x6b\\xe8\\x49\\x09\\xb1\\x2f\\x15\\x83\\x4b\\x11\\xae\\xe0\\xe3\\xb6\\xf6\\x8e\\x38\\xf8\\x1b\\x17\\xe8\\x7d\\xb4\\x6a\\x19\\x83\\xf4\\x41\\x3d\\x14\\xa7\\xb5\\x00\\x18\\xc3\\x12\\x8d\\xf8\\xed\\x8c\\x48\\x39\\xdc\\x64\\x5f\\x70\\xe0\\x85\\x05\\x3c\\xeb\\x61\\x5b\\x55\\x64\\x71\\x0c\\x7a\\x68\\xa3\\x27\\x37\\xea\\x8c\\x8f\\xf8\\x02\\xea\\x27\\x5b\\x1c\\x82\\x9f\\xe6\\x72\\xe0\\x11\\x20\\x4b\\x47\\xe9\\xb4\\x82\\x3c\\xf9\\xee\\x7a\\xf7\\x12\\x5e\\x10\\x07\\x29\\x57\\x42\\x44\\xbd\\x79\\x92\\x25\\xd0\\xb0\\x93\\x9b\\x07\\x87\\xbc\\x2a\\xf7\\x23\\xf2\\x0d\\xe9\\x9c\\x97\\xf3\\x1b\\x0a\\xa5\\x72\\x39\\xdf\\x2c\\x72\\xb1\\xc2\\x87\\xf0\\x81\\xec\\xe7\\x12\\x6a\\x37\\xaf\\x76\\xdf\\x48\\x2d\\xc8\\x0a\\xbe\\xc1\\x58\\x11\\xaa\\x7f\\xd8\\x26\\x95\\x88\\x25\\x25\\xda\\x9f\\x01\\xfb\\x20\\xce\\xc6\\x01\\x78\\x1f\\xec\\x9d\\xa5\\x3d\\x6d\\xef\\x93\\x1b\\xa5\\xb4\\xc6\\x44\\xe9\\xc7\\x05\\xca\\x0f\\x63\\x13\\x23\\x48\\x4d\\x3f\\xb1\\xab\\x42\\x8c\\x72\\x4e\\x9c\\xde\\x57\\x6e\\x02\\xa2\\x43\\xe6\\xc9\\xbb\\x32\\xc5\\x82\\xdc\\xcc\\xd6\\x3b\\xd2\\xc2\\xa9\\xca\\x1a\\x6f\\x37\\x79\\x7d\\xbb\\x70\\x0e\\x7f\\x8d\\xdd\\xca\\x81\\x74\\x1e\\xcc\\x73\\xf6\\x2a\\xa1\\x2c\\xfc\\x1c\\xf2\\xd2\\xa0\\xbc\\x5c\\xff\\x1a\\x1a\\xd1\\x0d\\x50\\xc3\\x17\\xfb\\x28\\xa6\\x75\\x52\\xc8\\x2f\\x9d\\x04\\x5b\\x1e\\xb5\\x4e\\x1e\\x2e\\xb4\\xb0\\x38\\x06\\xe4\\x57\\x27\\xee\\x6f\\x76\\xea\\xc9\\xd0\\xcf\\x4b\\xc0\\x76\\x6f\\xb3\\x2c\\x8e\\x81\\xd1\\x16\\x9f\\xbd\\xcf\\xe7\\xd5\\x20\\xcc\\xef\\xfd\\xff\\xe6\\xdf\\xd6\\xdb\\x96\\x0b\\x08\\x22\\xcf\\xf5\\x98\\x32\\xbe\\xed\\xc1\\x36\\x04\\xd4\\x78\\xdd\\xd5\\x97\\x4e\\x4c\\x72\\x53\\xfc\\xc1\\xc9\\x7d\\x07\\x47\\x79\\x82\\xb3\\xad\\x44\\x18\\x55\\x76\\x3e\\xff\\x85\\x56\\xfb\\x03\\xb5\\x0e\\xe9\\x0e\\xef\\xb1\\xa8\\xe5\\xf0\\x7b\\xd5\\x2a\\xfc\\x41\\x04\\x7e\\x22\\x87\\x31\\x66\\x22\\xde\\xb7\\x6e\\x3f\\x5c\\xc3\\x25\\xa9\\x1a\\x6c\\xef\\x17\\x17\\xfa\\x62\\x46\\xd6\\x39\\xbd\\x54\\xef\\xa1\\xe2\\x50\\x95\\x9d\\x84\\x63\\x8e\\xe1\\x7d\\xdf\\xbe\\xe0\\x78\\xd4\\x1f\\xb3\\x0e\\x32\\x49\\x83\\x1d\\x74\\x9a\\xfb\\xab\\x54\\xce\\x2f\\x13\\x01\\x7f\\xe7\\xc7\\xc1\\x77\\xda\\x22\\x98\\x8b\\x28\\xfa\\x04\\x74\\x33\\xc0\\x68\\x24\\x21\\x80\\x76\\xe1\\xa1\\x26\\x95\\x62\\xec\\xab\\x1c\\xc0\\x4d\\x04\\xb7\\x09\\xf2\\x89\\xee\\x28\\x2a\\x27\\xe5\\xa7\\xdb\\x8f\\x1d\\x83\\xee\\x01\\xab\\xef\\xe4\\xe3\\x95\\x36\\x51\\x78\\xfd\\xc4\\x12\\x06\\x42\\x47\\xa1\\x6b\\xc8\\xb5\\x76\\xf3\\x52\\x14\\x53\\x90\\x42\\xdd\\x36\\x8b\\xab\\x0b\\xac\\x42\\xf3\\xad\\x22\\xbf\\xd5\\x2b\\xbd\\xf4\\xf0\\xb4\\x50\\x4c\\xab\\xfa\\x1d\\x53\\x5c\\x46\\x58\\x6a\\xf8\\xb9\\xee\\xca\\x5f\\x36\\xa6\\xa6\\xbc\\xfa\\x17\\x91\\xa1\\xd8\\x60\\xb9\\x90\\x98\\x42\\x79\\x4b\\x88\\x8f\\x14\\x11\\xb8\\x75\\xe4\\x93\\x71\\xd8\\xdd\\x5b\\xe7\\xaa\\xcc\\x58\\xfa\\xcd\\x59\\x36\\xa5\\x17\\x83\\x74\\xb6\\x94\\x52\\x53\\xfa\\x98\\x23\\x19\\xd2\\xd8\\xfc\\xaa\\x1d\\x9f\\x00\\xf5\\xcd\\xa6\\x66\\x4c\\x3a\\xe9\\x59\\x5d\\xac\\xae\\x9e\\x07\\x78\\x43\\x9f\\x40\\x96\\xee\\x1c\\xfa\\x26\\x33\\x84\\x58\\xf4\\x25\\x87\\x55\\x63\\x3e\\x47\\x1f\\x35\\xdb\\xd9\\x20\\x3d\\x0a\\x8c\\x6d\\xd9\\xb7\\x3c\\xa6\\xd6\\xeb\\x04\\x22\\x8a\\xe8\\x37\\xca\\x5c\\x40\\x83\\xbe\\x61\\xfe\\xa5\\xe0\\xfa\\xc3\\x39\\xd9\\x6c\\x87\\x26\\xb6\\xbe\\xa5\\xeb\\xba\\x8f\\x59\\x7b\\xd7\\xca\\x2d\\x6e\\x89\\x91\\x9c\\xbc\\x0e\\x63\\x28\\xca\\x2a\\x36\\x0c\\x06\\x3f\\x25\\xab\\xbb\\x23\\xdb\\xa2\\x56\\x3a\\x91\\xc2\\xee\\x45\\xd4\\x44\\xbf\\x23\\x88\\x25\\x3f\\xed\\x74\\x18\\xaf\\xad\\xbb\\xf0\\xb5\\x82\\x26\\x71\\xd0\\x9f\\xab\\xec\\xbc\\x4d\\xc4\\x12\\x50\\x95\\x55\\x28\\xfe\\x3e\\x9a\\xf6\\x66\\x6c\\x47\\x69\\xc6\\x90\\x91\\x92\\xd3\\x57\\x8d\\xf2\\xb6\\x0c\\x9c\\x8b\\xb4\\xfb\\x5c\\x99\\xaf\\xd1\\xf7\\x6f\\xbc\\x98\\x00\\x3f\\x26\\xc6\\x9d\\x2f\\xb7\\xad\\x6f\\x95\\xaf\\x2e\\xde\\x79\\x00\\xd7\\x49\\x82\\xf8\\x25\\xd7\\xf7\\x21\\x34\\x36\\x79\\x94\\x6d\\x71\\xd8\\x39\\x54\\x30\\xae\\x66\\x85\\x58\\xcc\\x93\\x3f\\xbd\\xe8\\xb3\\x44\\xb4\\xe1\\x43\\x0b\\x5a\\xbf\\x4f\\x6b\\xe7\\xe4\\x9d\\x67\\x4b\\x0b\\x9e\\xa2\\x81\\x01\\x11\\x46\\xf9\\x18\\xea\\x57\\x87\\xbe\\x8b\\x0f\\xe9\\xcd\\x8f\\x6b\\x99\\x56\\xb0\\x69\\xc9\\x39\\x63\\x23\\x09\\xfb\\x24\\x06\\xf1\\x0b\\xa2\\x11\\x39\\xde\\x7c\\x43\\x73\\x2e\\xd3\\x29\\x44\\xa3\\x13\\x90\\x83\\x1c\\xdd\\xdd\\x69\\x86\\xff\\x70\\x04\\x58\\xe4\\x79\\x5b\\x9d\\x15\\xee\\xbf\\xa4\\x73\\x56\\x63\\x2a\\xfe\\x8e\\x61\\xfd\\x67\\x52\\x63\\xb6\\x51\\x39\\xaa\\xe1\\x67\\x07\\x06\\x1f\\x05\\x85\\x21\\x20\\xdf\\x5e\\xe8\\xc5\\x88\\xb4\\x08\\xde\\xfd\\xf6\\xbc\\xda\\x64\\xa6\\x03\\x38\\x3a\\x32\\x9c\\xde\\xc3\\xfa\\xbe\\x8a\\x3e\\x51\\x3e\\xd9\\x96\\xa9\\x43\\x9a\\xe4\\xe1\\x2c\\x29\\x65\\x4c\\x65\\x87\\xb3\\x58\\x07\\x5b\\x60\\xd3\\x9c\\x24\\xda\\x23\\x7f\\x4e\\x21\\xc1\\x38\\x3a\\x94\\x31\\xec\\xc1\\x4c\\x60\\x28\\x84\\x90\\x20\\xb0\\x58\\x2e\\xb2\\x57\\xb2\\xe4\\xbb\\xcf\\x3d\\x12\\xcf\\xad\\x22\\x52\\x90\\x76\\x9d\\xd1\\x79\\x6e\\x3e\\x36\\x34\\xce\\x6b\\x1a\\xdb\\x33\\x8d\\xb9\\xcc\\x29\\xcb\\x08\\x39\\x73\\x44\\xd6\\x64\\x50\\xb1\\x86\\x3f\\x7f\\x6b\\x3d\\x01\\xd3\\x7a\\x02\\xc5\\x1f\\x7f\\x0b\\x69\\xc8\\xc5\\xc0\\x03\\xcd\\x59\\x0a\\x8b\\xef\\x4d\\xea\\x42\\x12\\xde\\xce\\x2d\\xdd\\xa3\\x22\\xd5\\x95\\xd5\\x55\\x80\\xe5\\x26\\x17\\x5a\\xdc\\x0e\\x46\\x4d\\xae\\xd3\\xab\\x7b\\xe2\\xf9\\x46\\x5e\\x32\\xfe\\x6b\\x88\\x18\\xf5\\xea\\xec\\x21\\xa3\\x7f\\xbd\\x27\\x94\\x4f\\x32\\x1c\\x39\\x4c\\x82\\xfc\\xc9\\x1f\\xf5\\x8b\\x89\\x40\\xaa\\xd9\\xca\\x31\\xa7\\x83\\x21\\xea\\x61\\x26\\x62\\x23\\x66\\x9b\\xf1\\x90\\x22\\x93\\x6b\\xbe\\x90\\x96\\x75\\x78\\x77\\x70\\x39\\xa9\\xdd\\xf1\\x15\\x2a\\x1a\\xa0\\x51\\x6d\\x93\\x46\\x98\\x62\\x99\\x67\\x51\\x9d\\xf4\\x13\\x69\\x20\\x2b\\x50\\x42\\x73\\xd0\\x42\\x28\\x96\\xa9\\x35\\x7b\\x77\\x51\\xf0\\xb9\\x49\\xa8\\x2c\\xfc\\x08\\xa9\\x4d\\xd6\\xf0\\x27\\x0e\\x45\\x30\\x6b\\x92\\xed\\x98\\x20\\x50\\x79\\xcb\\xea\\x31\\x73\\xe7\\x49\\xa5\\x3c\\x81\\x73\\xa6\\x14\\x48\\x67\\xba\\xc4\\x84\\x0e\\xca\\x9c\\x5d\\x34\\xe1\\x8d\\x7d\\x1f\\x6f\\x0f\\x13\\xfc\\x41\\x43\\x66\\x56\\x11\\x42\\x72\\xb7\\xfc\\xc8\\x32\\xe1\\x8d\\x50\\x3f\\xcf\\x9b\\x0b\\xf2\\x04\\xaf\\x46\\x6b\\x59\\xc5\\x10\\x0d\\x49\\x2b\\xa3\\xc5\\xa5\\x6b\\x84\\x0d\\xe0\\xe0\\xaf\\x2c\\x0f\\xcf\\x14\\x73\\x09\\x5f\\xf3\\x4e\\x63\\x14\\xa7\\xdc\\x31\\xd3\\x94\\x43\\xb8\\x0c\\x8b\\xc9\\xdc\\x45\\xe6\\x94\\x8e\\x9b\\x2e\\xc3\\x96\\x5e\\x71\\xb2\\x9b\\x15\\xa6\\x3f\\x9e\\xfc\\x13\\x9c\\x06\\xa4\\x30\\x86\\x92\\xb8\\x62\\xe8\\xd0\\x5f\\xc9\\x60\\x25\\x3b\\x51\\x60\\x27\\x7b\\x0b\\xdf\\xb0\\x7e\\x54\\xd4\\x4f\\x7b\\xc7\\xc4\\xab\\xe9\\xd1\\xb5\\x83\\x85\\xd5\\xd8\\x30\\x12\\x15\\xde\\x1f\\x46\\xb3\\x2d\\xb0\\x0f\\xf2\\x42\\xd1\\x5a\\xab\\x6f\\x06\\x89\\x40\\x99\\x20\\xf3\\x84\\x92\\x4c\\x59\\xb1\\x71\\xd8\\xa8\\x7f\\x30\\xa7\\xbe\\xa1\\xf1\\xf1\\x50\\x17\\x5d\\x06\\xfc\\x58\\xd1\\x79\\x49\\x2e\\x34\\x50\\x8b\\x3b\\xe7\\xa4\\xf5\\xe1\\x9d\\xa3\\xb8\\x88\\xfe\\x87\\xc6\\x54\\x3c\\xa4\\xa8\\x15\\x51\\xbc\\xd2\\x38\\xe2\\x67\\x41\\xb5\\xb7\\x8a\\x67\\x30\\xc8\\xd9\\x9d\\x82\\xc5\\x77\\x33\\x48\\xc0\\x9b\\x99\\x28\\x8c\\x90\\x0e\\x61\\x8d\\xd5\\x1f\\xee\\x26\\xb7\\x45\\xd5\\xb6\\x4b\\xa8\\x72\\x34\\x6e\\xc3\\x44\\x93\\x16\\xa2\\xc5\\x26\\x54\\xb4\\xd8\\xf4\\x86\\xf8\\xab\\xe7\\xae\\x2d\\xf6\\x4b\\x24\\xea\\x15\\xae\\x84\\x29\\x58\\xc8\\x79\\x7a\\xf8\\xcf\\xac\\x77\\x75\\xb3\\x44\\x01\\x67\\x01\\xda\\xe9\\xb7\\xd4\\xe6\\xc8\\xf3\\x3f\\x1d\\xee\\x4f\\xd1\\xc1\\xa7\\xd9\\x3d\\x0d\\xe3\\xba\\x5c\\xc2\\xbf\\x5c\\xee\\x79\\x8c\\xb3\\xd8\\x98\\x58\\xcf\\xdb\\x02\\xdc\\xc2\\xae\\xfe\\xf5\\x51\\x71\\xc7\\xf6\\xab\\xa6\\x17\\x1c\\xda\\x4f\\x8c\\x3e\\x7e\\x5e\\x16\\x0d\\xea\\x62\\x5d\\x50\\x86\\x51\\x3d\\x86\\x57\\xe3\\x0c\\xd5\\x15\\xe7\\x7f\\xe9\\x67\\xd6\\x1e\\xb2\\x85\\xb3\\x2e\\xff\\x61\\x83\\x10\\xc0\\xdc\\x8b\\x3f\\xbf\\xa7\\xe1\\x2b\\x17\\x77\\x96\\x77\\xdf\\x7a\\x6b\\x6a\\x2a\\x67\\x33\\x4a\\xca\\x14\\xec\\x1e\\xa2\\x31\\xf7\\xe6\\x7b\\x30\\x42\\x0c\\x3d\\x81\\xbe\\x03\\x51\\x5f\\x90\\x9c\\xaa\\x1d\\xc3\\xac\\x84\\xfa\\xe9\\x8d\\x70\\x46\\x8f\\xf6\\x11\\x40\\x8f\\xd5\\x83\\xd0\\xfa\\x1d\\x0f\\x9a\\x10\\x9c\\xd0\\x08\\x38\\x67\\xc4\\x35\\x57\\xcc\\x42\\x13\\x85\\xe2\\xdd\\x7e\\xd8\\xf5\\x48\\xd8\\x98\\x01\\x6a\\xf9\\x8d\\x6c\\x8b\\xfe\\x5d\\x72\\x67\\x9a\\x50\\x2e\\xfe\\x5b\\x53\\xff\\xf0\\x16\\x46\\xa9\\x4d\\x99\\x77\\xdf\\x57\\xaf\\x80\\x43\\x3a\\x55\\x81\\x49\\xfc\\xf8\\xbc\\x8e\\xe7\\xbe\\x57\\xe2\\x3d\\x53\\xf7\\xd3\\x75\\x60\\x68\\x8f\\xcc\\x6f\\xc3\\x70\\xcc\\x7c\\xa9\\x35\\xa4\\xf8\\xd8\\x5c\\xfc\\x87\\xc8\\x19\\x7c\\x58\\x89\\x32\\x5c\\xa8\\x30\\xda\\x64\\x36\\x11\\xfb\\xfd\\x91\\xb6\\x64\\xaf\\xa0\\x8e\\x2a\\xae\\x3e\\x3e\\xd5\\x45\\xe4\\x63\\xcd\\x1d\\x7f\\x8d\\x36\\xca\\xf3\\x81\\x33\\x56\\x9e\\xf4\\xb4\\x4a\\xd2\\xb3\\x16\\xb9\\xa5\\xdf\\x6e\\x47\\x0b\\x59\\x83\\x51\\xc0\\x6d\\xdc\\x45\\x51\\xf9\\x53\\xd0\\x75\\xd5\\x23\\xe6\\xd1\\xa1\\x0e\\x7e\\x73\\x90\\x94\\x7c\\xad\\xea\\x6a\\xab\\x23\\x16\\x74\\xa8\\x89\\x59\\x54\\xe1\\x93\\x10\\x71\\x55\\xcd\\x93\\x3c\\x30\\x94\\xf4\\x8e\\x93\\xde\\x00\\x2c\\x2a\\x37\\x51\\x7f\\x08\\xa5\\x3b\\xf0\\x00\\x0e\\x8d\\xf6\\x03\\x3e\\xaf\\x46\\xe0\\xa3\\x8d\\x3a\\x31\\x6b\\xb5\\xea\\x92\\xb9\\xce\\xf6\\x7e\\xbd\\xfa\\x71\\x84\\xff\\x84\\x8d\\xc5\\x46\\x5a\\x80\\xe2\\x12\\xad\\xe0\\x30\\x78\\xb0\\x8d\\x5f\\x6e\\x7f\\x5a\\x88\\xde\\xad\\x33\\x89\\xcf\\x33\\x62\\x7c\\x97\\x85\\xee\\x3c\\xa8\\xab\\xbc\\xe9\\xc5\\x60\\xad\\xa4\\x87\\x84\\x9f\\x38\\x9f\\x19\\xb0\\x00\\x9b\\xb8\\xda\\xf5\\x54\\x2e\\xe2\\x0d\\x64\\x79\\x73\\x0d\\x09\\xa7\\xa2\\xfc\\x5a\\xb3\\x35\\xfa\\xb9\\xd4\\x9f\\xe9\\x78\\x2e\\xf6\\x3e\\x0d\\xa1\\x4a\\xde\\x14\\x41\\x9c\\x2c\\x2d\\x98\\x1d\\x88\\x28\\xc3\\x2e\\xa9\\xfb\\x33\\x73\\x00\\x8d\\x24\\xe4\\x79\\xd2\\x27\\x22\\xe7\\x45\\xed\\x7a\\x8f\\x6f\\xb9\\xbc\\x94\\xec\\xa6\\xb5\\x07\\xd1\\xc6\\x87\\xc2\\x69\\x04\\x98\\x40\\x53\\x0a\\x1f\\x8b\\x52\\xf9\\x32\\xc7\\xb3\\x11\\x14\\x13\\xa8\\x7e\\x42\\xec\\x6c\\x04\\xee\\x2e\\x74\\x94\\x61\\xa8\\xc9\\x58\\xdc\\x58\\xba\\x3b\\x7a\\x93\\xb6\\x6a\\x1d\\x17\\xca\\x2c\\xe2\\x17\\x02\\xad\\xec\\x25\\xfc\\x18\\xae\\x8b\\x99\\x81\\x84\\xaf\\x74\\xef\\xfd\\x78\\x19\\x8c\\xfe\\xb5\\x16\\x29\\xe9\\xe4\\x28\\x0e\\x24\\x08\\x73\\xd2\\x04\\xb1\\xf3\\x33\\xf9\\xd1\\xdf\\x51\\x3b\\x60\\x74\\xd2\\x21\\x87\\x26\\x5f\\x92\\xcf\\x2c\\xa1\\x64\\xbf\\x19\\x7d\\x4c\\x91\\x06\\xa6\\x11\\xe3\\x14\\x13\\x76\\xf1\\xd5\\x4f\\x0b\\x55\\x50\\x1f\\x54\\x03\\xc4\\x29\\xf6\\xcd\\xed\\x92\\xbe\\xfc\\x55\\x9b\\x54\\x71\\xc4\\x36\\xaa\\x8a\\x7d\\x4b\\x7e\\x8f\\xb7\\x2c\\x24\\xea\\x5a\\x87\\x07\\x34\\xe6\\x52\\x80\\x16\\xb5\\x52\\x90\\x09\\x5a\\xf3\\x87\\xd6\\xbc\\x7c\\xf8\\xad\\xf5\\x5a\\x79\\x7b\\x54\\x3d\\xeb\\x64\\x36\\x7e\\x1d\\xdf\\x57\\x81\\x99\\x8e\\xae\\x81\\x26\\x5d\\x82\\x6d\\xb4\\x8c\\x96\\xc9\\xf0\\x05\\xaf\\x31\\x2b\\xd2\\x3a\\x4e\\x39\\xaf\\xe8\\x37\\x08\\x6c\\x41\\x6f\\xf3\\xd8\\xc4\\x4b\\x61\\xfe\\x21\\x8d\\x53\\xd8\\xfb\\x65\\x2a\\xd5\\xcd\\x8d\\xd8\\x79\\xef\\x17\\x9c\\xba\\x61\\x9c\\x43\\x7c\\xfb\\x75\\x57\\xea\\x51\\xd8\\xa2\\xce\\xbe\\xd7\\x94\\x81\\x33\\xef\\x0a\\x09\\xf1\\xf1\\xc8\\x3c\\x4b\\x79\\x68\\x78\\xa4\\x71\\x4d\\xd5\\x03\\x23\\x36\\xb5\\x39\\x44\\x4d\\xfb\\x31\\xa8\\xf9\\x59\\xbc\\xe6\\x87\\xe8\\xbf\\x50\\x23\\xc0\\x50\\x0c\\x7d\\x66\\xc3\\x28\\x21\\x43\\x98\\x70\\xcb\\x26\\x32\\xeb\\x62\\xa3\\xd0\\x89\\xa3\\xf6\\xdb\\x22\\x73\\x2c\\x8e\\x2a\\x7d\\xa2\\x73\\x4f\\xca\\xe2\\x92\\x94\\x51\\xbb\\x23\\xd5\\xcd\\x4c\\xaf\\x2e\\xf5\\xd7\\xa0\\xae\\xcb\\xc3\\xb5\\x41\\xca\\x70\\x9c\\xa0\\x0f\\xa1\\x9f\\x18\\xbc\\x57\\x48\\x66\\x6f\\xda\\xf5\\x67\\x37\\x35\\x8b\\x37\\xf5\\x9d\\x64\\x1f\\x54\\xaa\\x41\\xd0\\x73\\x49\\x37\\x79\\xfe\\x34\\xb9\\xc4\\x4e\\x3b\\x06\\xba\\xdf\\x69\\xbf\\x7c\\xf2\\xde\\xb7\\x81\\x06\\xfc\\xbf\\xc3\\x68\\xa6\\xbc\\x6c\\xdc\\x71\\x66\\xf7\\x74\\x6c\\x88\\x98\\x60\\x30\\xb2\\x0b\\xf9\\xfe\\x7b\\x69\\xcd\\xcc\\xdc\\x38\\xaf\\xe1\\xca\\xdd\\x23\\xd1\\x27\\x3d\\x02\\x2f\\x85\\x07\\xfd\\x4b\\xf9\\xda\\x7e\\x32\\x6b\\x9d\\x59\\x60\\xe3\\x40\\xbe\\xe7\\x37\\x32\\xdb\\x99\\xd5\\x3e\\x46\\x7d\\x15\\xbb\\x0f\\x64\\x85\\x19\\xcd\\x3a\\xf3\\x16\\xc6\\x3a\\x3f\\x82\\x1c\\xfa\\x72\\x88\\x85\\x80\\x4f\\xa3\\x6f\\xf1\\xc4\\xa9\\x57\\x33\\xdf\\x26\\x10\\xcb\\xd4\\xac\\x92\\x50\\x69\\x5c\\x3d\\x7e\\x60\\xfa\\xe9\\x7d\\x8b\\x1d\\xb6\\x08\\x3a\\xe2\\x5a\\x4f\\x15\\x17\\x8e\\x76\\x8b\\xd3\\x7d\\x07\\x0a\\xb1\\x4e\\x37\\xd9\\xcc\\x46\\xf4\\xc9\\xc0\\xd3\\xdf\\x53\\x73\\xf8\\x82\\x2f\\x63\\xab\\x3e\\x55\\xaa\\x12\\x8d\\x59\\x73\\xcf\\xf6\\xb4\\xb3\\xdd\\x8a\\xa3\\x0d\\x0b\\x20\\x38\\x76\\x3d\\x88\\xd9\\x86\\xbe\\xc4\\xe2\\xe5\\x40\\xd8\\xfa\\x0b\\x6f\\x7a\\x69\\x4e\\x6b\\x2c\\x51\\x9d\\x9b\\x88\\x69\\x41\\x6e\\x77\\xef\\xd3\\x51\\x4c\\xae\\x2a\\x92\\x70\\xe5\\xfa\\x90\\xf4\\x9c\\xb8\\xa6\\x2c\\x34\\x4e\\x1d\\x84\\xb3\\x90\\xf4\\x2e\\x59\\x7f\\x82\\x6c\\xc7\\xdf\\xd3\\x85\\xaa\\x54\\x66\\xb4\\xbd\\x4d\\xfb\\x2b\\x4c\\x5a\\xab\\x8a\\x72\\xa8\\x31\\x5e\\xc6\\xc8\\x74\\x3b\\x23\\x42\\x15\\xfb\\xa9\\xdf\\x5f\\xee\\x2a\\x4f\\xbf\\xf5\\xd8\\xa4\\x42\\xeb\\x65\\x81\\x5e\\xac\\x87\\x20\\xe7\\x0b\\x9b\\xb7\\x8b\\x2e\\x32\\xdb\\x3b\\xac\\xa0\\x30\\x1e\\x2f\\x2c\\x4c\\x5c\\x8c\\x8c\\xa6\\x7a\\x12\\xe2\\x5f\\x87\\x03\\x56\\x6b\\x64\\xe5\\xc1\\x48\\xc4\\x6b\\xb9\\x21\\x5c\\x2c\\x2e\\xe8\\xaa\\xf3\\xab\\xeb\\xdb\\x15\\x97\\xdf\\xb7\\xe6\\xd3\\x58\\x2d\\x5a\\x6a\\x25\\x2a\\x67\\xa1\\x0a\\xde\\x1b\\x30\\x46\\xf7\\xe4\\x10\\xa4\\xf4\\x30\\xd8\\xaf\\x0f\\x61\\x44\\x54\\xf2\\xc1\\xe2\\x2e\\x2f\\x1a\\xa4\\xb8\\x52\\x67\\x81\\x58\\x9d\\x8b\\xa2\\x87\\xb7\\x72\\x8b\\x02\\xbb\\x65\\xce\\x98\\x0b\\xad\\x09\\x9d\\x6b\\x67\\x5d\\xa3\\xef\\x13\\xbe\\xaa\\xb2\\x34\\x5a\\xa3\\x32\\x6a\\x68\\x81\\x18\\x15\\x8a\\x1f\\xbe\\x95\\x6a\\x32\\x6f\\xd3\\x48\\x5b\\x05\\x16\\x52\\xa6\\x0f\\xe7\\xaa\\xa7\\x08\\xf1\\x25\\xf0\\x63\\xdd\\xf5\\x61\\xa2\\x9f\\xe2\\x32\\xa9\\xf4\\x1a\\x97\\x32\\xd4\\x59\\xca\\xea\\x8b\\x35\\xeb\\xf9\\x8e\\xdd\\x67\\x25\\x07\\x49\\xba\\xe2\\xa6\\x3b\\xb8\\x90\\xa3\\xc2\\xc1\\x18\\xdc\\xb1\\x36\\x89\\x9f\\x58\\x69\\xee\\xdf\\xca\\xc2\\x1b\\x04\\xe0\\xec\\x2d\\x70\\x21\\xed\\x7b\\x35\\x4f\\x30\\xa0\\x0b\\x48\\x42\\x6c\\xfb\\xca\\xac\\x14\\x20\\x44\\xdf\\xa9\\x18\\x7c\\xa5\\x52\\x77\\x21\\xdf\\xd3\\xee\\x81\\x6c\\xe9\\xc9\\x34\\x04\\x8a\\x35\\x8a\\xd6\\x27\\x79\\x0a\\x67\\x8e\\x3e\\xe1\\xd5\\xa4\\x99\\x37\\x8a\\xe6\\xc4\\x55\\x63\\x90\\x33\\x3f\\x99\\x9a\\x4e\\xd7\\x97\\x5b\\xd0\\x65\\x46\\x22\\x15\\x07\\x49\\x61\\x2f\\x58\\xdf\\xde\\x2b\\x71\\x08\\xb7\\x6e\\x73\\x6f\\xe4\\xe2\\xd0\\x82\\xbe\\xe6\\x92\\x4a\\xbd\\x60\\x83\\x18\\x92\\xa4\\x64\\x37\\xfd\\x74\\xb7\\x8e\\xde\\xca\\x39\\x2f\\xef\\xad\\x33\\x6e\\x53\\xa4\\xe3\\x7b\\xa2\\x49\\x26\\xc9\\x65\\xce\\x41\\x9e\\x05\\xb1\\x93\\x1b\\xbe\\x14\\x91\\xda\\x33\\x14\\x9d\\xe1\\x77\\x13\\x3a\\x31\\x83\\x76\\xea\\xf1\\x9d\\xf4\\x3f\\x1f\\xff\\x50\\x9a\\xae\\x18\\xcc\\x24\\xfc\\x9c\\xc8\\x5b\\xb1\\x02\\x60\\x38\\x63\\x10\\xf1\\xea\\x73\\x3c\\x17\\x87\\x47\\x8b\\x48\\xa9\\x05\\xe7\\x7e\\xf1\\x64\\x68\\x69\\x2b\\xd0\\xa8\\x25\\xc8\\xb6\\x99\\x3a\\x77\\x43\\xc7\\x46\\x77\\x5c\\xef\\x31\\x93\\x48\\x4b\\xda\\xb1\\xa3\\x77\\x14\\x66\\x72\\x33\\x3d\\x4c\\x23\\xbf\\xef\\x2b\\x20\\x14\\x4b\\x89\\x6e\\x28\\x45\\xa3\\xce\\xe1\\x94\\x4e\\xe1\\xbe\\xa5\\x9b\\x6c\\x02\\x1a\\xdd\\x6b\\x4f\\xf3\\x0e\\xcb\\xa1\\x2a\\x0a\\x81\\x3c\\xc2\\xe8\\x01\\xcb\\x97\\x7e\\xcd\\x86\\x4f\\x79\\x07\\xd6\\x5a\\x67\\x23\\xb9\\x81\\x3f\\xce\\x2f\\x22\\x77\\x5b\\xd4\\x4d\\x6c\\x6b\\xde\\xbd\\x59\\x25\\xe9\\x0d\\x79\\xad\\x1c\\x4e\\x4f\\x7b\\x47\\x78\\x5e\\x92\\x07\\x45\\x87\\xd3\\x66\\x6c\\xe2\\x61\\x32\\x0f\\xee\\x07\\xa2\\x9f\\x7d\\x08\\x25\\x9e\\x1f\\x7d\\x69\\xdd\\x2e\\xaa\\xa4\\x3f\\xff\\xa2\\x6b\\x63\\x89\\xe1\\xf5\\x8d\\x8a\\x5a\\x37\\x57\\x2c\\x92\\x21\\x2a\\x27\\x11\\x8b\\x44\\xd6\\x41\\xfd\\xa3\\xda\\x13\\x81\\xd8\\x8a\\xbd\\xf8\\xf5\\xf2\\xad\\x35\\x02\\x6b\\xc0\\x77\\x15\\x12\\x2d\\x0c\\x3f\\x6c\\x75\\x3e\\xd4\\xa3\\xc3\\xcc\\x3d\\x29\\xeb\\x41\\xc2\\x4f\\x27\\x73\\x3b\\x13\\x40\\x34\\xbc\\xb4\\x95\\xf7\\xca\\x11\\xf7\\x59\\x8e\\x3e\\x33\\xa5\\x11\\x01\\xfe\\x32\\xde\\xea\\x6c\\x53\\x4c\\xd5\\x7c\\xeb\\x43\\x77\\x28\\xac\\x3f\\x9f\\x9d\\xcc\\xa1\\x48\\x12\\x19\\xb3\\x76\\x35\\x27\\xf0\\x29\\x4c\\x5b\\xeb\\x68\\x2a\\x62\\xff\\x98\\x42\\xef\\x26\\xab\\xaa\\xcc\\x13\\xc1\\xe9\\xa6\\xc8\\xcb\\xa7\\xad\\x89\\xb4\\xc5\\xdc\\xfc\\xed\\x56\\x94\\xc1\\xd5\\x56\\xc6\\x32\\x7d\\xd7\\x97\\x1a\\x99\\x1e\\x53\\xdb\\x5d\\x1f\\xfd\\x93\\xe6\\xa3\\xdb\\xd7\\xc5\\x6e\\x7e\\xca\\x10\\xb6\\x00\\x64\\x2b\\xb5\\x57\\xcc\\xb1\\x3e\\xf9\\x10\\x31\\x86\\x0b\\x04\\x72\\x9b\\xb4\\x93\\xda\\xb2\\x97\\xc4\\x7c\\xf1\\x4d\\xe9\\xb3\\x99\\xc5\\x5f\\x0b\\x0f\\xfc\\x15\\x72\\xb7\\xd3\\x58\\xcb\\xe7\\x25\\x77\\x4d\\x64\\xea\\x00\\x92\\x20\\x2e\\xe6\\xca\\xf0\\x5c\\xc5\\x9f\\x5a\\x4a\\xc6\\x77\\xe7\\x73\\x01\\x81\\xba\\xe1\\x2a\\xfd\\x62\\xe5\\xfd\\xaa\\xe0\\x5b\\x41\\xbe\\x0f\\x2b\\x3a\\x86\\xfe\\x33\\xc8\\x40\\x39\\x4e\\x59\\x13\\xd1\\x3a\\xdf\\x13\\x86\\xbc\\x33\\xfb\\xb0\\xaf\\xe2\\xd6\\x88\\x7b\\x77\\xd0\\x06\\x21\\xf9\\x47\\xa2\\x9c\\x56\\x9c\\x78\\x9e\\xa1\\xd1\\xbe\\x4c\\x4a\\x3d\\xc2\\x5b\\x08\\x17\\x17\\x5d\\x15\\x99\\x3e\\x78\\x01\\x5b\\x5d\\x37\\x52\\x9e\\x2e\\x33\\x85\\x9b\\x88\\x8d\\xe0\\xaf\\x68\\x18\\xcb\\x8d\\xdf\\x09\\xc1\\x03\\x53\\x11\\xd5\\xde\\x5a\\x33\\x61\\x9c\\xca\\x47\\xfa\\x22\\x79\\xb7\\xa1\\x12\\xb0\\xab\\x93\\xe2\\xcd\\xef\\x40\\xe3\\x47\\x7d\\x79\\xf3\\x58\\x21\\x01\\x19\\x7c\\x6a\\x2c\\xb2\\xfa\\xde\\xbc\\xb1\\x49\\x2d\\x59\\xad\\x8f\\x1c\\x46\\x04\\x35\\x49\\x32\\xf2\\xb6\\x6a\\x0d\\xa8\\xf4\\x11\\xd2\\x51\\x32\\xeb\\x91\\xfd\\x6b\\x17\\x40\\xe2\\xb9\\x11\\x88\\x98\\x75\\xf9\\xae\\xa0\\xc1\\x92\\x6b\\xb0\\xb9\\x39\\xe1\\x57\\x5d\\xc2\\xa7\\x1e\\x37\\x31\\xd4\\xe0\\x46\\xe1\\x41\\x7b\\xed\\xe3\\xbe\\x46\\xff\\x4d\\xad\\xde\\x0f\\xc7\\x3f\\xbe\\xaa\\x5b\\x25\\x5f\\xfb\\xc5\\x2a\\xbe\\x13\\x7f\\x07\\x9b\\x34\\x17\\x9e\\x51\\x33\\xd8\\xbf\\x02\\x73\\x58\\x09\\x91\\x47\\xef\\x08\\xe1\\x51\\x6a\\x68\\x32\\x28\\x44\\x14\\x21\\x78\\xa2\\xed\\xe9\\xed\\xed\\x3e\\xf5\\x0f\\x94\\xa7\\xfb\\xee\\x0b\\x93\\x09\\x99\\x2b\\xb8\\x12\\x34\\x1b\\xa6\\xf8\\x5b\\x0d\\x75\\x7c\\x79\\x8b\\x41\\x49\\xfd\\x06\\x6b\\xd1\\xf3\\xae\\x48\\x12\\x67\\xcb\\x94\\xd5\\xea\\xac\\xf8\\xe8\\xf7\\xc8\\x08\\xdd\\xd0\\x43\\xbc\\x96\\xbe\\x9c\\x07\\x8a\\x75\\x22\\xf6\\x52\\x9e\\x74\\xdf\\x40\\xf6\\xc4\\x9a\\x01\\xca\\xd4\\x62\\x6e\\x2a\\x29\\x24\\x17\\x05\\x95\\x66\\xae\\x9e\\x78\\xdb\\xdd\\xfa\\x57\\x31\\x54\\x5d\\x73\\xee\\xdf\\xef\\x2f\\x91\\x2e\\x5d\\x79\\x66\\x4d\\x7a\\x73\\x79\\xa9\\xff\\x8c\\x57\\xfe\\xfe\\x63\\xa0\\x96\\x7e\\xf6\\xd2\\xf6\\x3b\\x88\\xfa\\x1d\\x29\\x76\\x08\\x99\\x54\\x3e\\xc7\\x67\\xcb\\x9e\\xef\\x12\\xd8\\x29\\xac\\x1d\\xa1\\xa3\\xd2\\xfa\\x34\\x50\\x2d\\x08\\x16\\x78\\x59\\x2b\\x61\\xc6\\x14\\xe5\\xf3\\x92\\x97\\xa0\\x4e\\x42\\xe9\\x15\\x44\\x53\\x70\\x7f\\xf5\\xbd\\xbf\\x58\\xab\\x17\\xd7\\xe0\\x88\\x09\\x51\\x5c\\x82\\x46\\x12\\xf6\\x19\\x18\\xca\\xe0\\x8f\\xbd\\x21\\x49\\x89\\x9e\\xaf\\x24\\xa1\\x40\\x96\\x72\\x20\\xec\\x9a\\x5a\\xcb\\xdb\\xca\\x29\\x5d\\xae\\xad\\xfc\\x7e\\x76\\x31\\x2f\\x39\\x1f\\xa9\\x46\\x36\\x40\\x56\\x8e\\x2a\\xb9\\x26\\x28\\x97\\x2f\\xba\\x63\\xab\\x14\\xeb\\x96\\xa8\\x96\\x7f\\x5e\\xa8\\x80\\x41\\x0e\\xa8\\x0e\\xeb\\xe8\\x69\\x98\\xe0\\x1d\\x40\\xd5\\xc5\\x83\\x83\\x4a\\x77\\xfb\\x99\\x0c\\x8b\\xf5\\x69\\xfb\\x2c\\xfc\\xc2\\xb3\\x61\\xe2\\x6a\\x25\\xa2\\x55\\x44\\xb6\\x79\\x0f\\x99\\x64\\x96\\x8f\\x3d\\xb0\\x56\\x7a\\xa2\\xfa\\xef\\x49\\xc5\\x0d\\x16\\x2b\\xc8\\xfc\\x62\\xef\\xf9\\xdd\\x71\\xef\\x22\\x17\\xb6\\x9a\\x28\\x3f\\xbe\\xc4\\x68\\x09\\x62\\xcb\\x87\\x46\\xcb\\x49\\xd5\\x13\\xf2\\x85\\x50\\xdd\\x45\\xd3\\x43\\x35\\xf4\\x7e\\xeb\\x91\\x2a\\xfe\\x45\\x5d\\xb8\\x29\\xf2\\xc0\\x4e\\xe1\\xa3\\xba\\x5d\\x49\\xa1\\x92\\x93\\xfb\\x2b\\x69\\xc7\\xbe\\x43\\x46\\x45\\x67\\xfb\\xc0\\xbb\\x52\\x21\\xff\\x10\\x12\\xcc\\xed\\x80\\x5f\\xaa\\xb4\\x8c\\xe8\\x1c\\x27\\x25\\x0f\\xb5\\xb6\\x13\\xab\\xfb\\x8a\\xfb\\xa0\\x6a\\x4b\\x77\\xc7\\xfe\\xf5\\x53\\xc3\\x7a\\x89\\xf7\\xd1\\x94\\xe2\\xcf\\x66\\xf5\\x02\\x23\\x08\\x1d\\x3e\\xd5\\x8f\\xf9\\x6b\\x78\\x4a\\x0f\\xa9\\xdb\\x83\\xf8\\xa2\\x70\\x5d\\x6c\\x02\\x0f\\xa6\\xb2\\x5c\\x7a\\x33\\x26\\xc7\\x0a\\x05\\x67\\x3b\\xb1\\x82\\x5f\\x68\\x61\\x47\\x73\\x89\\x2a\\x85\\x88\\x62\\x74\\xaa\\xbd\\x23\\x9a\\xd8\\xbc\\xc4\\x36\\xb4\\xdd\\x29\\x30\\x9e\\x01\\x3a\\xd9\\x7f\\x02\\x61\\x78\\xc2\\xf5\\xf0\\x56\\x1f\\x06\\xf8\\xfc\\xe2\\xfc\\x74\\x82\\x9c\\xac\\x3a\\x3d\\x9c\\xca\\x28\\x62\\xdc\\x4d\\x8c\\x97\\x38\\xaf\\x20\\xe8\\x39\\x7a\\xde\\xd1\\xb2\\xb8\\xa8\\xc5\\xff\\x75\\x0a\\xe8\\x0a\\xb0\\x5a\\xd6\\x9c\\x85\\xcf\\xce\\x7f\\xc2\\x2d\\x39\\x51\\xce\\xa3\\xa2\\x2b\\x2f\\xc6\\x65\\x12\\xce\\x9d\\x14\\xe0\\x1a\\xfe\\x36\\x3c\\xe4\\x50\\xe5\\xe9\\x70\\x19\\x85\\x88\\x3b\\x89\\x91\\x62\\xea\\x52\\x4b\\xe0\\xf9\\x84\\x31\\xbb\\x60\\x01\\x23\\x66\\x9e\\x3e\\x7a\\x77\\xc9\\xb9\\x4a\\x26\\xd7\\xb1\\xf2\\x7c\\x7c\\xae\\x48\\x81\\xea\\xe2\\x32\\x60\\x92\\xee\\xcd\\xbb\\x60\\xe4\\x36\\xd3\\x08\\x76\\x43\\x99\\xf7\\x71\\x7f\\xf8\\x4e\\xb6\\x6d\\xcc\\xf0\\x6f\\x6b\\x3d\\xf9\\x56\\x2b\\x02\\x8a\\xa7\\xcc\\xf8\\x51\\x51\\x13\\x75\\x3f\\x3a\\xae\\x90\\x26\\x1e\\xc1\\x19\\xcf\\xca\\xb7\\xcd\\x80\\x1a\\x80\\x47\\xe8\\xd5\\x23\\x1a\\x9b\\x43\\x4c\\x83\\xea\\xba\\x58\\x36\\xc5\\xf0\\x53\\xc8\\x3f\\xe6\\x17\\x07\\x62\\xb2\\xf5\\x68\\x6d\\x60\\x8f\\x48\\xe3\\x22\\x8d\\x7d\\xa5\\x5f\\x4e\\xfd\\x6a\\x4f\\x8d\\xa5\\x35\\xef\\x4a\\x69\\xb2\\x5e\\x66\\xc8\\xea\\xa9\\x99\\x31\\x8d\\xcd\\x99\\x4d\\xaf\\xee\\x61\\x0d\\x8c\\xe2\\xc3\\x8e\\xb6\\x5e\\x50\\xf0\\x26\\x4b\\x04\\x30\\xf6\\x0f\\x03\\x5b\\xb3\\x73\\x6f\\x38\\x0c\\x30\\x5b\\xfc\\x80\\xff\\x3e\\x3e\\xce\\x58\\xc0\\xfd\\xa7\\xf6\\xd1\\x3b\\xd0\\xca\\x97\\xaf\\xdf\\xe2\\x47\\xe5\\x13\\x1d\\x09\\xbd\\x6b\\x48\\x5d\\xc7\\x2b\\x72\\xab\\x13\\x59\\x24\\xbe\\xff\\x8e\\x84\\x3e\\x38\\xe7\\x61\\x69\\x95\\xec\\xc5\\x5f\\x69\\x12\\xd9\\x4b\\x9f\\x5f\\x10\\xc7\\x6b\\x31\\x5b\\x74\\x1b\\xc5\\xc5\\xfc\\xea\\x89\\x3e\\x7c\\x67\\x8a\\xb4\\xc9\\x74\\x1c\\x91\\xc8\\x32\\x62\\x93\\x8c\\x4e\\x3b\\x29\\x92\\x9d\\x51\\x98\\x01\\x7a\\x51\\x5d\\x7f\\x50\\x53\\x64\\x05\\xfa\\x3f\\x4f\\x59\\x34\\xb3\\xfe\\x49\\x45\\x7f\\x1f\\x14\\x43\\x86\\xfa\\xbc\\x04\\x92\\x71\\xee\\x8c\\x34\\x5d\\x20\\x72\\x74\\xf0\\xb8\\xc6\\xd0\\x20\\xb2\\x71\\x37\\xee\\xf9\\x06\\x72\\x90\\x69\\x28\\x6b\\x0d\\xfa\\x63\\x6e\\x88\\x9d\\x4c\\xb6\\xee\\xc9\\x1d\\x75\\x45\\x74\\x55\\x61\\x36\\xca\\xcc\\x48\\x80\\x4e\\x07\\x2f\\xc2\\xa7\\xe2\\x59\\xe6\\x62\\x11\\x3a\\x9b\\x7e\\xcb\\x77\\x9d\\x93\\x05\\x40\\xef\\xb7\\xc7\\x40\\xcd\\x50\\x03\\x6e\\x80\\x7b\\x10\\x9a\\xce\\x91\\x33\\xee\\x8d\\x03\\x0c\\xd9\\x45\\xe8\\x1a\\x24\\x68\\xd6\\x89\\x84\\xae\\x49\\x55\\x8f\\x66\\x1d\\xa5\\xde\\x85\\xda\\x89\\xf2\\x94\\x4a\\x7e\\x81\\x9f\\x34\\xa2\\x74\\x0a\\x98\\xb6\\xea\\x2e\\xa6\\x7c\\xac\\xd9\\x01\\xd2\\x8c\\xd1\\x8a\\xb8\\xec\\xbb\\xa2\\x03\\x30\\x7e\\x11\\xf3\\xf4\\x68\\xd6\\x04\\x12\\x94\\xb5\\x3f\\x76\\xaf\\x5f\\x8f\\xa8\\x72\\xb3\\x46\\xa1\\xd9\\x07\\x91\\x2b\\xbc\\x9d\\x0d\\xf0\\x30\\x38\\x9d\\x00\\xf5\\xe6\\x47\\xeb\\x90\\xdd\\xfd\\x7c\\x7e\\x36\\x25\\xe9\\x43\\xf8\\xd3\\x90\\xa0\\xbf\\xfb\\x3b\\x5b\\x7f\\xb8\\x46\\x15\\x6e\\xcc\\xa7\\xd3\\xde\\x0f\\xbf\\xd8\\xc7\\xdc\\x14\\xfe\\x30\\xda\\xe8\\x99\\xf7\\x95\\x8a\\x0c\\xf7\\x01\\xbf\\xb2\\x1e\\x4d\\x27\\xb0\\xed\\xa2\\x30\\x44\\xda\\x9d\\x53\\x2f\\xcb\\xc5\\xb6\\x7c\\x75\\xd7\\xdb\\x8f\\x31\\x5c\\xc7\\x60\\x66\\x40\\xe8\\x90\\x86\\x3e\\x1e\\x21\\x2b\\xc3\\x08\\xdc\\xdc\\xf6\\xc4\\xc9\\x0e\\x4a\\xb9\\x14\\x7f\\x78\\xf7\\x29\\xb6\\xb8\\xab\\xd7\\xcd\\xe9\\xd9\\x15\\xc5\\xd3\\xe7\\x28\\xd0\\xe0\\xea\\x0e\\x89\\xb6\\x38\\xca\\xa8\\x73\\x88\\xc4\\xa2\\x55\\x44\\xec\\xc5\\x3f\\x99\\x84\\xb1\\x20\\x7a\\xc7\\xec\\xd0\\x59\\xfc\\x5f\\x74\\xd5\\x7a\\x40\\x2b\\x51\\xa8\\xdf\\x68\\x90\\x08\\x48\\x38\\x99\\x31\\xcc\\x3f\\x4c\\xc9\\x94\\x0a\\x7e\\x05\\x96\\xaf\\x88\\x41\\xd1\\x89\\x73\\x7d\\x7f\\x2d\\x7f\\xa3\\x63\\x7f\\xef\\xcd\\x54\\xa7\\xe8\\x60\\x50\\xde\\x6c\\x8b\\xca\\x65\\x41\\xda\\x2f\\x96\\x0e\\xde\\xfd\\x99\\x11\\x71\\xc3\\x77\\x84\\x5e\\x3c\\x69\\xc2\\x96\\xe1\\x73\\xb3\\xa8\\x13\\xa0\\x78\\xa1\\xc7\\xe4\\xe8\\x1f\\x3b\\xf3\\x4b\\x96\\x0a\\xf2\\x7a\\xc6\\xbc\\x61\\xd5\\x16\\x2c\\x0c\\xc5\\xa0\\x11\\x24\\x4b\\x5c\\x27\\xed\\xb3\\x4a\\x52\\xfe\\x14\\xad\\xd9\\x35\\xdd\\xa1\\xf7\\x44\\x36\\x45\\xcb\\x18\\xf3\\x49\\xb0\\x88\\xfc\\xae\\xac\\x14\\x38\\x6b\\x8e\\xc0\\x33\\x88\\xc0\\x3b\\xc1\\x0e\\x22\\xcf\\x4d\\x51\\xd4\\x2a\\xdf\\x89\\x57\\x46\\x5f\\x30\\xd9\\x28\\x93\\x62\\x4b\\xc5\\x3d\\x7d\\x3d\\x23\\x69\\xb0\\x13\\x6b\\x27\\x78\\x15\\xdc\\xfa\\x7b\\x14\\xc5\\x5b\\xf6\\xee\\xf3\\xf8\\x44\\x2c\\x23\\x37\\xfe\\xca\\xa8\\x46\\xf2\\x2c\\xea\\xd8\\xa6\\x32\\x0b\\x81\\xeb\\x87\\x36\\xf1\\xf1\\x71\\x60\\x54\\xa8\\xd0\\x17\\x34\\xab\\x80\\x24\\xba\\xca\\x60\\xeb\\x46\\xb7\\x27\\x91\\x2e\\xf1\\xf6\\xc9\\x42\\xc7\\x72\\x88\\x0c\\x2e\\xba\\xd6\\xf7\\x57\\xb7\\x1d\\x49\\x18\\x0e\\x30\\x9b\\x48\\x5f\\x86\\x35\\xd4\\x23\\xba\\xb1\\x0f\\x88\\x92\\x9e\\x67\\x78\\x60\\x45\\xff\\x93\\xd1\\xf2\\x0b\\x9b\\xf9\\x39\\x58\\x93\\x1e\\xf0\\xd9\\xa0\\x5c\\x5f\\xf5\\x0e\\x37\\x27\\x9d\\x61\\x77\\xf3\\x27\\x90\\x98\\xbf\\xa0\\x97\\x39\\xd7\\x92\\x36\\x8e\\x74\\xc8\\x6a\\x38\\x3d\\x30\\x2b\\xca\\x00\\x1d\\xbd\\x57\\x6c\\x69\\x22\\x7d\\xf4\\xdf\\x60\\x98\\x3c\\xd0\\xe8\\x77\\x1c\\x60\\x78\\xbd\\x9f\\x2b\\xb7\\x97\\xb9\\xa3\\x8c\\x19\\x21\\xf5\\xd4\\xcd\\x34\\x2a\\xf9\\xa4\\xf7\\xf3\\x38\\x4e\\xef\\x70\\x5c\\xc1\\x49\\x35\\x66\\x70\\x75\\xa4\\x10\\xeb\\x1f\\x35\\x64\\xdf\\x37\\x2b\\x16\\xe0\\xca\\x09\\xbc\\xfe\\xe5\\xbc\\xb3\\x7e\\xec\\xe5\\x58\\x25\\x99\\x58\\x68\\x5c\\x3d\\xfa\\x37\\xb9\\x9c\\xc9\\xe5\\x0b\\x27\\xdf\\x91\\x84\\x79\\xa4\\x78\\x91\\x8f\\xdf\\x5b\\xad\\x10\\xc2\\x2f\\x67\\x08\\xf7\\xc5\\x1b\\x22\\x5a\\x5d\\x3c\\xc4\\x14\\xe3\\xca\\xb9\\x65\\x9b\\xdd\\x58\\x35\\x2c\\xf1\\x6a\\xd2\\x22\\x23\\xf9\\xd8\\xcc\\x7f\\x1d\\xd3\\x1e\\x86\\xaa\\xfb\\x69\\xf7\\x59\\x09\\xa4\\x51\\x19\\x9a\\x5f\\x47\\x56\\xf5\\x92\\xfa\\x07\\xc5\\x48\\x36\\xc7\\x7a\\x22\\x52\\x07\\x6c\\x43\\xa2\\x57\\x48\\xdb\\x4f\\x67\\xc7\\xbb\\x8d\\xfa\\x31\\x5c\\x5a\\xaf\\x9f\\x28\\x0b\\x73\\x21\\x04\\x26\\xe7\\x84\\xf7\\xb3\\xcb\\x6b\\xeb\\xbd\\xdb\\x0d\\x1d\\x07\\x81\\x97\\x73\\x34\\xca\\x17\\x07\\xf5\\xcf\\xcf\\x3f\\xa4\\xf8\\x9d\\xd0\\x1d\\x90\\x29\\x99\\xe4\\x59\\xd0\\x48\\x6b\\xe9\\xa5\\xaa\\x79\\x90\\x62\\xf0\\x46\\xb0\\x42\\xfa\\x70\\x07\\x0b\\xd0\\xc8\\x69\\xa5\\xa9\\xfe\\x42\\xdd\\x4d\\x62\\x7e\\xc9\\xf0\\x4d\\xeb\\x1a\\xa0\\x45\\x62\\x1c\\xf2\\x8d\\x91\\x61\\x2b\\x03\\xc1\\x7b\\xb3\\xcd\\xad\\x36\\x07\\xf0\\x2e\\x64\\x13\\x8c\\xb1\\xfe\\xf5\\xd2\\xd9\\x14\\x9a\\xc2\\xcf\\x3d\\x12\\xa3\\x7c\\x1a\\x1e\\x61\\xf4\\xed\\x84\\x9c\\x03\\x37\\xf4\\xd5\\x5a\\x63\\xda\\xf3\\x2d\\x2d\\x63\\xdc\\x5e\\x91\\xa8\\xc9\\x64\\xf2\\x26\\xad\\x5e\\x93\\x0b\\xc5\\xea\\x41\\xbe\\x31\\xf8\\xb1\\xd8\\x20\\x4c\\x9c\\xb9\\x11\\x37\\xe8\\x1f\\xbb\\xc1\\x81\\x50\\xc2\\x3f\\xe6\\xcc\\x44\\xa2\\x78\\xf6\\xd6\\xf2\\xfd\\x32\\xa1\\x8d\\xa7\\x73\\xb5\\x32\\xe1\\x7a\\xde\\xde\\x6e\\x72\\x94\\x9b\\xd7\\x5a\\xa7\\xa7\\xe5\\x05\\x81\\xfc\\xfb\\x7b\\x3b\\x56\\x69\\x53\\x31\\x32\\xd4\\xd6\\xf6\\x3a\\x03\\x08\\x21\\xc2\\x55\\x84\\x89\\x0c\\x5a\\x36\\x61\\xec\\x42\\x61\\x64\\x11\\xdc\\x85\\x22\\x02\\xfb\\xad\\xcb\\x5f\\x43\\x75\\xbf\\x0d\\x4b\\xe8\\x85\\x7e\\xb1\\xc1\\xe5\\x86\\x2c\\xab\\xa3\\x41\\xac\\xb4\\x06\\xcc\\x38\\x09\\x47\\x20\\x94\\x8b\\x51\\x0b\\xb8\\xcf\\xb2\\x98\\x44\\xf1\\xb7\\x95\\xe7\\x95\\x95\\x1c\\xcb\\x4d\\x4f\\x5b\\x5c\\xca\\xf7\\xf4\\xed\\x1b\\x19\\x67\\x5d\\xc2\\x58\\x9b\\xf7\\x81\\xec\\x3d\\xba\\xec\\xfd\\x41\\x7f\\x1f\\x83\\x9a\\x13\\x81\\xd0\\x21\\x2b\\x4f\\x27\\x70\\x98\\x01\\x4e\\x4c\\x02\\xed\\xd9\\xf7\\x9c\\x77\\x0a\\x91\\x80\\x6d\\x02\\xf8\\xa8\\xb0\\xe3\\xd8\\xcb\\x2a\\xf5\\xc6\\xd2\\x22\\x60\\x5d\\x46\\x6e\\x8e\\x59\\x9f\\x5d\\x19\\x6a\\xf2\\x1e\\x16\\x70\\xe9\\x79\\x3b\\xa8\\x9b\\x6c\\x6d\\xaa\\x2d\\x1d\\xa2\\xcd\\xc4\\xff\\xb1\\x5e\\x3e\\x96\\x28\\xaa\\x57\\x22\\xeb\\xd8\\xb0\\xd8\\xe0\\xe3\\xc0\\x7d\\x5b\\xe8\\x45\\x0b\\xa9\\xdb\\xb4\\x8f\\x2e\\x26\\x03\\x26\\xc0\\x77\\xe7\\xa8\\xd3\\xb9\\xe5\\x6b\\xd6\\x10\\xc5\\x28\\xae\\x4e\\x31\\xa1\\xf6\\x6e\\xd7\\x29\\x6e\\x1a\\x55\\xa7\\x82\\x44\\xa1\\xd1\\x43\\x74\\x9d\\x65\\xb9\\x42\\x36\\xa5\\x60\\x30\\x52\\xe3\\xbb\\xd7\\xf0\\xb9\\xd8\\x93\\xee\\x8e\\xca\\xae\\x86\\xa0\\x99\\x64\\x43\\x6a\\x6d\\xc6\\x42\\xec\\x95\\x75\\xdf\\x44\\x3c\\x10\\x5a\\xb2\\x54\\x8f\\xe8\\xe3\\xe8\\x17\\x62\\x92\\x95\\xa9\\x6b\\xe8\\x41\\xf7\\x4e\\xa1\\xbc\\x7b\\x20\\xc4\\xc6\\xc1\\x4a\\x5a\\x4e\\x72\\x1f\\x61\\x22\\xc1\\x0e\\x74\\x22\\x74\\x03\\x53\\x7a\\x69\\x07\\xd9\\xc1\\x0c\\x35\\x14\\x32\\xa3\\x13\\xea\\x4e\\xc1\\x28\\x54\\xfb\\x91\\x18\\xa8\\x7b\\x3a\\x15\\xb3\\x7e\\x7e\\x05\\xdf\\x2b\\xa3\\x08\\x80\\xb5\\x04\\x83\\x64\\xbc\\x64\\xfa\\x8b\\x02\\xb6\\xac\\xfc\\x10\\xa2\\x92\\xad\\x8b\\xcf\\xf8\\x93\\x72\\xf9\\x3e\\xe3\\xd4\\x2c\\xf7\\x05\\x1f\\x85\\xff\\x1e\\x98\\x44\\x7f\\xaf\\x54\\x18\\x32\\x21\\x34\\xca\\x1d\\xa6\\x92\\x52\\x6e\\x9e\\xa6\\xd5\\x7b\\x4e\\xe8\\x85\\x8e\\xc0\\xd2\\xc9\\x3c\\x36\\x2a\\xb3\\xa5\\x5d\\xdf\\xf7\\xd4\\x14\\xff\\x8c\\xfc\\xf8\\x6e\\x84\\x1a\\x92\\xea\\x43\\xbe\\x2b\\x32\\x8c\\xe7\\x5d\\xe3\\x3c\\x52\\xe2\\x2f\\x91\\x61\\x0e\\xc6\\xea\\x0a\\x30\\xcf\\xa3\\x62\\x56\\xa7\\xfe\\x02\\x19\\xed\\x9f\\xb1\\xe7\\x28\\x67\\xba\\x1d\\xfd\\xa2\\x0e\\xbe\\x49\\x8e\\x13\\xa4\\x70\\xdc\\x65\\xe1\\x76\\x1a\\x75\\x71\\x85\\x2d\\x0e\\xb3\\x8c\\xb2\\x3b\\x23\\x53\\x58\\xea\\x5b\\x2b\\xd9\\x72\\x7f\\x64\\x5e\\x45\\xc5\\x50\\x47\\x6f\\x51\\xd6\\x74\\x1b\\x8a\\x04\\x8e\\xc7\\xa0\\x5b\\x60\\xa9\\x4b\\x8e\\x1e\\x09\\x4b\\x14\\x1f\\x58\\x44\\x68\\x8e\\x92\\x2c\\xce\\x22\\x08\\x6a\\x85\\x9f\\xed\\xcd\\xb8\\xc4\\xd5\\xad\\x7d\\xfd\\x5b\\xa6\\xe9\\x64\\xb9\\xe4\\x18\\xa9\\x42\\xe6\\xf1\\x71\\xe2\\xc7\\x93\\x38\\x83\\x49\\x1d\\x8c\\x31\\xac\\x17\\x57\\x82\\xd7\\x6c\\x45\\xff\\xc2\\xeb\\xf8\\xd1\\x8b\\x31\\x82\\xe8\\x67\\x19\\x8e\\x7c\\x40\\x91\\xb8\\xc1\\x63\\x1b\\x37\\x1c\\x50\\x57\\x3c\\x7c\\xbc\\x9c\\x97\\x87\\x28\\x55\\xf9\\x8b\\xd4\\x45\\xec\\xfe\\x84\\x4b\\xb6\\x2b\\xac\\x24\\xe4\\x0d\\x24\\x4a\\x2f\\xa5\\xc2\\x50\\xea\\xd7\\x3f\\xf2\\x24\\x18\\xfb\\xbd\\x7f\\xd0\\xd4\\x34\\x8c\\x88\\x23\\xfe\\x0d\\x80\\x8b\\x29\\xd0\\xf0\\x42\\x7f\\xbf\\xaf\\xfb\\x07\\x28\\x96\\xfc\\x04\\x8b\\xb6\\x86\\xb4\\x4f\\x04\\x94\\xb9\\xa5\\xd2\\x03\\x5e\\x49\\x85\\xda\\xe6\\x2d\\xeb\\xec\\xd2\\x54\\xe5\\x49\\x92\\xaa\\x54\\xee\\x2d\\x92\\xfa\\x13\\x46\\x9b\\x77\\xc4\\xfd\\x4c\\xc3\\x42\\xce\\x46\\x11\\x85\\x60\\xba\\x4f\\x56\\x02\\xc3\\x20\\x37\\xd1\\xfc\\x50\\x26\\x42\\x34\\xe6\\x0a\\x7d\\x8a\\x0e\\xdb\\x23\\xe1\\xd0\\xad\\x55\\x46\\x11\\x2a\\x20\\x3b\\x8b\\xa2\\x24\\x8b\\x0d\\xba\\xf9\\xa5\\xfa\\x09\\x9a\\x8b\\xe8\\x73\\xfd\\xd4\\x49\\x0e\\x7f\\x2c\\x92\\x92\\xe4\\x1f\\x1f\\xfc\\x95\\x88\\x4b\\xf8\\x31\\xb9\\x63\\xcb\\x29\\xf2\\x05\\x49\\xba\\x1a\\xac\\x8e\\x10\\x9d\\xeb\\x6f\\xc6\\x84\\x27\\x2e\\x26\\x26\\x13\\x46\\x58\\x07\\x83\\x6e\\xc0\\xaa\\x1a\\xf0\\x67\\x58\\xc3\\x58\\xd7\\xfb\\xd3\\x58\\xce\\x8e\\x0e\\x33\\xc7\\x0f\\x6a\\xdc\\xf3\\x49\\x84\\xd9\\x91\\x82\\x77\\x47\\xf7\\x8c\\x25\\x72\\x7d\\x1f\\x98\\x2e\\xfd\\x4e\\x35\\x5b\\x9b\\xc3\\x53\\x3f\\xa7\\xd8\\x58\\xa2\\xf6\\xe9\\x49\\x2f\\xf8\\x54\\x7e\\x7b\\xfb\\xe5\\x2a\\x3e\\x3c\\xc3\\xab\\xd2\\x79\\xb0\\x4d\\x53\\xf9\\x3a\\xc6\\x23\\x68\\xa9\\x67\\x72\\x9b\\x4f\\xff\\xaa\\x40\\xa9\\xb5\\x6b\\xbd\\x96\\x41\\x8b\\x4f\\xe1\\xde\\x72\\xcc\\xd3\\x28\\xb0\\x3c\\x58\\x22\\x4b\\x75\\xa8\\x24\\xaf\\xbd\\xcc\\x47\\xea\\xa8\\x6d\\x8c\\x41\\x4d\\x23\\x59\\xc9\\xc2\\xa8\\x3c\\x63\\xf2\\xe2\\xe8\\xdd\\xb2\\x25\\xd7\\x2e\\x07\\x2f\\xa9\\x3b\\xf9\\xdb\\x41\\xe4\\xde\\x4b\\xdd\\x29\\x5f\\x74\\xb1\\x2c\\x96\\x04\\xec\\x1e\\x36\\xd1\\x5e\\xc5\\x2c\\x4b\\xd2\\xc5\\xb9\\x34\\x6d\\xfa\\x46\\xd6\\x64\\xb5\\xea\\xaa\\x05\\x5e\\xa6\\xbc\\x69\\xc9\\xc4\\x4e\\x33\\xb4\\x90\\x75\\xd6\\xd8\\x41\\xbc\\x1a\\x22\\xdf\\xd5\\x7f\\xef\\x71\\x1c\\x04\\xe9\\x45\\x75\\x78\\x34\\x4e\\x18\\xfe\\xed\\x35\\x4f\\x67\\x01\\x78\\x06\\xe0\\x2f\\xff\\x60\\xb0\\x09\\x62\\x5f\\x02\\xe2\\x3e\\x81\\xe0\\x80\\xa9\\x96\\x2c\\x2c\\x53\\xfc\\xe6\\xc1\\xa0\\x1c\\x86\\x3e\\xe7\\xdd\\xe0\\x2c\\x64\\x96\\x02\\xa6\\x3e\\x80\\xb7\\x82\\x90\\x03\\x7e\\x32\\xa6\\xbf\\x00\\x71\\x79\\x79\\xb2\\x49\\x03\\x69\\x3a\\x85\\x12\\x0c\\x31\\xe6\\x29\\x04\\xd6\\xc2\\x81\\xe1\\x58\\x56\\x29\\xce\\x13\\xfc\\x56\\xe0\\xd9\\x58\\xcc\\x77\\x8d\\xe9\\xce\\x98\\x38\\x89\\x89\\xf6\\x89\\x83\\x6a\\x3b\\x5d\\x52\\xa1\\x5b\\x77\\x35\\x3c\\xed\\x95\\xc2\\x9b\\xfe\\x28\\x33\\x8b\\x5b\\x7c\\x87\\x68\\xe9\\x7d\\x65\\xd1\\x37\\xc7\\x25\\x5f\\x5d\\x72\\xf8\\x0e\\x70\\xb2\\x74\\xec\\x66\\xf2\\x6b\\xfa\\xe5\\xcf\\x23\\x14\\xfe\\xf6\\x91\\xbc\\x6c\\x5f\\xa5\\x56\\xd5\\xa0\\x4c\\xe7\\x07\\x69\\x5a\\x54\\x7d\\xdd\\x1b\\xa5\\xed\\xd8\\xeb\\x45\\x91\\x25\\x2b\\x1a\\x06\\x2d\\x81\\xe4\\xb9\\xf7\\x5a\\x1d\\x16\\x18\\x9d\\xf1\\xfc\\x54\\xa8\\x64\\xcb\\x24\\xa2\\x21\\x37\\x48\\xd3\\x63\\x05\\xb7\\x74\\xb0\\xfe\\x6d\\xfe\\x2a\\x9c\\xf1\\x0b\\x80\\xba\\x2f\\x71\\x04\\xa2\\x5d\\x2b\\x5c\\x5b\\xf7\\x97\\xe5\\x9a\\x5a\\x91\\x0d\\x86\\x16\\x62\\xa1\\x96\\x9f\\x51\\x2d\\xe2\\xa2\\x29\\xa3\\x01\\x22\\x38\\x27\\xae\\xc7\\xd5\\x23\\x47\\x55\\x82\\x45\\xed\\x50\\xaa\\x67\\x40\\x94\\x56\\x54\\xc8\\x98\\xfb\\x70\\x15\\x3b\\xa6\\x0f\\xb6\\x36\\x4c\\x22\\xe6\\xc9\\xec\\xb7\\xed\\x7a\\x23\\x18\\x01\\x38\\xb0\\x64\\x37\\x46\\x14\\xb1\\x4a\\xcb\\xba\\xc9\\x48\\x75\\x50\\x04\\x83\\xe9\\x79\\xf2\\x88\\xe1\\x0c\\xab\\x8d\\x58\\x5c\\x6c\\xc9\\x76\\xcb\\x7d\\x88\\x1a\\x6c\\xe1\\xc6\\x76\\xc8\\xd2\\xae\\x05\\x65\\x80\\x4f\\x9b\\x46\\xdd\\xf8\\x5b\\x30\\xdd\\x2a\\x1d\\x36\\x24\\x65\\x5b\\x25\\xde\\x88\\x8e\\x97\\x4f\\x71\\x25\\x57\\x26\\x51\\x3c\\xcc\\x0c\\x9d\\x11\\x07\\xdd\\xab\\xf4\\x60\\x55\\x8d\\x50\\xef\\x8f\\xca\\xa7\\x2e\\x0d\\x74\\xee\\xb1\\x36\\x37\\xa5\\x33\\x16\\x52\\xb5\\x53\\x4a\\x01\\x44\\x14\\x83\\x1d\\xd5\\x3e\\x39\\x9d\\xb5\\xe6\\xa3\\x8c\\x8e\\x52\\xad\\x8b\\x26\\xbe\\x70\\xc8\\x76\\x13\\xae\\x18\\x8a\\x59\\x1f\\xb1\\xef\\x17\\x44\\xf8\\x0a\\xd4\\x70\\x9f\\xc8\\x77\\x55\\x8b\\x12\\x87\\x6b\\xab\\xc6\\x1e\\x6b\\x34\\xe4\\xd3\\xea\\x75\\x1f\\xd1\\xac\\x4e\\xf5\\x03\\x90\\x7f\\x5d\\x45\\x50\\x97\\x64\\x3d\\x2c\\xa9\\xd8\\x46\\xde\\x08\\xb4\\x54\\x75\\x49\\xeb\\x15\\x16\\x5b\\x98\\x0e\\xf6\\x08\\xe4\\x67\\xe6\\x5b\\x05\\xa8\\xc4\\x7f\\x0b\\x35\\x64\\x49\\xf6\\xc3\\x14\\xcb\\x56\\x07\\x8e\\x35\\x04\\x45\\x50\\x12\\xea\\xc9\\x37\\x5b\\x7c\\xb7\\x7e\\x93\\x5c\\xf8\\x8f\\xee\\x50\\x48\\x08\\xa8\\x65\\x66\\xba\\xe6\\x27\\x65\\x34\\xca\\x17\\xc6\\x3e\\x30\\xdd\\x02\\x68\\x8f\\x12\\xd7\\xf9\\xf9\\xb0\\x87\\xc3\\x6b\\x1a\\xae\\xae\\x68\\x81\\x42\\xd2\\x31\\x28\\x5c\\xfb\\x4e\\x96\\x57\\x5a\\x54\\xdc\\x81\\xa7\\x16\\x39\\x09\\x6c\\x2c\\x8e\\x61\\x4c\\x1f\\xdd\\x2f\\xea\\x1a\\x36\\x19\\xe4\\x82\\xd5\\xf8\\x3d\\x7d\\xb3\\x6d\\x57\\x4f\\x40\\x0e\\x8c\\x54\\xb9\\x15\\xf9\\x98\\xe2\\x18\\xe1\\x55\\x46\\x26\\xdb\\x53\\xcb\\x14\\x73\\x91\\x9b\\xa9\\xda\\x92\\x3f\\x96\\xb1\\xc6\\x84\\xef\\xec\\x9f\\xeb\\x4f\\xa3\\x81\\x0e\\x7d\\x51\\xf7\\x3c\\x8e\\x3e\\x8f\\x82\\x56\\xc5\\x60\\x79\\x55\\x42\\xc7\\x6e\\x24\\xfc\\xdf\\x45\\xf6\\xfb\\x2f\\x3a\\xaf\\xb0\\x04\\x29\\x73\\x53\\x69\\x92\\x0a\\x63\\xe2\\x03\\xff\\x61\\xa0\\xe0\\xff\\x4e\\xc4\\x8c\\x73\\x72\\x0f\\xb2\\x4d\\x59\\x39\\x5a\\x08\\x07\\x7f\\x27\\x09\\x95\\x4f\\xd2\\xad\\xea\\xc1\\xca\\x5f\\x77\\x3e\\x0c\\xb9\\x14\\x67\\x99\\x69\\xdc\\xe8\\x86\\x6e\\xc8\\x64\\xae\\x25\\x92\\x58\\xf2\\xdb\\x61\\x0e\\x94\\xd0\\xc4\\x3b\\x96\\x61\\xf8\\x5f\\x96\\x25\\xb5\\xb8\\xc0\\x1f\\x41\\xe2\\xd2\\xaf\\x08\\x86\\xd5\\x5f\\x8d\\xdb\\x21\\x6f\\xef\\x2d\\x22\\x08\\x58\\x7f\\x7f\\xf3\\x05\\x29\\x65\\x5c\\x2e\\x91\\xcf\\x92\\xf3\\x56\\xb4\\x91\\xeb\\x20\\xcd\\xc7\\x5f\\x0b\\x1d\\x2b\\xb1\\x08\\xc6\\x04\\x47\\xc9\\xed\\xc2\\xd3\\xb7\\x2e\\x69\\xc5\\xd4\\xc6\\xf1\\x29\\x98\\x18\\xe4\\x9c\\x1e\\x19\\x87\\x6a\\x55\\x8a\\x7c\\x9a\\x01\\x0b\\x16\\x3b\\x5d\\x41\\xfa\\x38\\xce\\xb6\\xf3\\x8a\\xd4\\x43\\x33\\x0a\\x3d\\x9d\\xfa\\xe1\\x98\\x71\\x9b\\xac\\x57\\xed\\x6c\\x26\\xa2\\xd3\\xa6\\x63\\xc4\\x11\\x05\\xff\\x1e\\xc2\\x72\\x10\\xc4\\x42\\x59\\x1d\\x62\\xd0\\x75\\xb5\\x24\\x4d\\x5e\\xdb\\x9a\\x74\\x2f\\x41\\x07\\x21\\xd2\\xf8\\xab\\x61\\xbd\\xf9\\x2b\\xf2\\x48\\xe2\\xc3\\xb6\\x32\\x80\\xb5\\x7f\\xb4\\x0f\\x9e\\xf0\\xcc\\x10\\xd9\\xd0\\xaf\\x63\\x91\\x56\\x47\\x9c\\xd6\\xe1\\xd0\\xde\\x7e\\xda\\x3a\\x77\\xec\\x99\\x66\\x8d\\x53\\x41\\x58\\x8f\\x72\\xd4\\x4f\\x86\\x3a\\x99\\x14\\x1c\\x21\\x8b\\xcf\\xcb\\xe3\\x48\\x56\\x63\\xe6\\x1d\\xc2\\xa1\\xb7\\x04\\xd3\\xce\\x14\\x48\\x04\\xb9\\x75\\x35\\xd7\\x91\\xcc\\x03\\x63\\x8a\\x2e\\xd7\\x1d\\x2f\\x04\\xc5\\xd0\\x75\\x46\\x1c\\xec\\x88\\x13\\x7a\\xa2\\xf6\\xbf\\x71\\x8f\\xe5\\x83\\x3d\\x0a\\xb8\\x04\\x57\\x18\\x41\\x5d\\xdd\\x63\\x84\\xed\\x80\\x7d\\x13\\x1f\\x75\\xab\\x91\\x9f\\x7f\\xb9\\xa2\\x9c\\x85\\xee\\xf8\\xbf\\x71\\x33\\xa6\\x9e\\x6c\\x7c\\xc1\\xf3\\x3e\\xe1\\x90\\x6b\\x4e\\x33\\x0e\\x1d\\x80\\x31\\xa5\\x17\\x37\\x8e\\x2f\\xb8\\x88\\x7f\\xf5\\xb4\\xd1\\x5f\\xfb\\xd6\\x93\\x6c\\xe1\\xf6\\x35\\xc5\\xfd\\xa0\\x66\\xa0\\x74\\x84\\x7b\\xab\\xe3\\xc5\\x98\\x5f\\x23\\xea\\x22\\x01\\x89\\x7e\\x51\\x87\\x41\\x80\\x76\\x59\\x65\\x8e\\x47\\x32\\xd7\\x71\\x32\\x3c\\xdd\\x11\\x27\\x8e\\xd3\\xa1\\x55\\x65\\xaf\\xb4\\x0f\\x43\\x9f\\x65\\xd6\\x9e\\xe3\\x31\\xc7\\xff\\xd1\\x7c\\xaa\\xef\\x6a\\x04\\xe3\\x97\\xdd\\xaf\\x57\\x19\\xe9\\x80\\xa1\\x41\\x5c\\x9e\\xe1\\x1f\\x7b\\x87\\x95\\xf8\\x6a\\xbe\\x41\\x3c\\xc8\\xa1\\x8d\\x74\\x43\\xab\\x56\\xdb\\x0d\\x1f\\x8d\\x6e\\xa1\\x66\\xbd\\xb0\\x7b\\x9d\\xb1\\x2f\\x2e\\x22\\x3e\\x8f\\xa1\\x48\\x4a\\xd8\\xcb\\xaa\\x11\\x42\\xc9\\xb3\\xc4\\x0e\\x0e\\xfb\\x8b\\xa3\\xad\\xf4\\x74\\x17\\x4a\\x9b\\x8c\\x96\\xbf\\xf1\\xd9\\xa0\\x7c\\x74\\xb5\\xf2\\x57\\xe5\\xd8\\x73\\x17\\x6c\\x43\\x8a\\x30\\xe6\\x3f\\x8d\\xcb\\x22\\x11\\x76\\xd2\\x73\\xa9\\xd4\\xb2\\x84\\xb6\\x9d\\xb7\\x2f\\x21\\x4d\\x3f\\xbe\\xaa\\xa9\\xaa\\x15\\x46\\xd0\\xed\\x13\\xaa\\x82\\x92\\x36\\x5c\\x16\\x79\\x97\\x07\\xac\\x7f\\x68\\xd2\\x02\\xe1\\x31\\x17\\x95\\x3f\\x05\\x5c\\x13\\xb2\\x74\\xb0\\xa4\\x26\\x20\\xc3\\x5c\\x97\\xe6\\xcf\\x72\\x3f\\x39\\xdf\\x5d\\x13\\x75\\xfe\\x6b\\x86\\xf0\\xfb\\xb1\\x4d\\x8b\\x5f\\x5f\\xe1\\x39\\x2d\\xb7\\x5f\\x40\\x89\\x67\\x77\\x9b\\x29\\xe7\\xf8\\xce\\x1d\\xdf\\x46\\x3a\\x28\\xfe\\xc2\\x98\\xa3\\xfc\\x8d\\xc7\\x85\\xa6\\xa4\\xfe\\x9b\\x12\\x69\\xd6\\xd5\\x14\\xee\\x44\\xf6\\x2e\\x4d\\x42\\xb3\\xc4\\xe3\\x44\\xc1\\x21\\x37\\xe5\\x82\\x30\\x9e\\xe7\\x61\\x88\\xda\\x76\\x33\\xd6\\x4e\\xb7\\x6f\\x73\\xb2\\xfc\\x64\\x8c\\x4b\\x26\\x8a\\x52\\xc0\\xb0\\x88\\xf2\\xdf\\x6e\\x5d\\xf9\\x67\\x31\\xd6\\x65\\x17\\x0c\\x41\\x66\\x77\\xaf\\x00\\x11\\xaf\\x09\\xd8\\x4f\\xf2\\x4d\\x9a\\x0d\\xa2\\x46\\x2b\\x1c\\x95\\x9c\\x10\\x01\\x9f\\xaf\\x03\\x46\\x4b\\x9e\\x23\\xc8\\x14\\xa7\\x7b\\xe2\\xa5\\x23\\x1a\\xb8\\xca\\xa6\\xd4\\x50\\x1c\\xc9\\x37\\x9f\\x05\\xb8\\xf0\\xd5\\x9c\\xc3\\x2a\\x65\\x29\\x2f\\xf4\\x1f\\x30\\x5a\\x0b\\xa7\\xa1\\x70\\xeb\\x29\\xfd\\xd7\\x01\\xdf\\xd6\\x2a\\xaa\\x28\\xcc\\xba\\x31\\x65\\x8c\\x9c\\x4b\\xad\\xea\\xc7\\xf4\\x09\\x4d\\x89\\xb2\\x6f\\xb4\\x93\\xaa\\xe9\\xcb\\xa6\\x47\\xf7\\x4b\\x05\\x5c\\x11\\xa9\\xc6\\x02\\xaa\\x85\\x8e\\xcb\\x5a\\x8e\\xf1\\xa8\\xd5\\x73\\x17\\x57\\x44\\x8b\\xa7\\x29\\x23\\x57\\x62\\x41\\x02\\x7f\\xfa\\x29\\x0b\\x7d\\x24\\x54\\x07\\xac\\x8e\\x78\\x7f\\xf1\\x7e\\xfd\\x97\\x86\\x6a\\x0c\\x38\\xdd\\x0c\\xde\\x61\\xdd\\x32\\xe4\\xf3\\x85\\xd4\\x31\\xe8\\xb9\\xc8\\x75\\x18\\x9d\\x9f\\x4b\\x14\\x8d\\x2f\\x2f\\xd8\\x16\\x6f\\x55\\xa5\\xb5\\xe0\\xed\\xf5\\xc1\\x2c\\x17\\x1c\\xf5\\xf1\\x9d\\x84\\x3f\\x3e\\xa4\\x97\\x45\\x1f\\x10\\x45\\xb1\\xa7\\x4f\\x18\\xcf\\x61\\xf3\\x02\\x85\\x4d\\x0b\\x03\\xc0\\xe0\\x1b\\x2f\\x87\\x57\\x2d\\xd6\\xe8\\xcf\\xd6\\xa5\\x65\\x47\\xe6\\x35\\x5f\\xd8\\xc4\\x39\\xd2\\xba\\xfc\\x41\\x61\\x04\\x18\\x06\\x03\\x39\\x9c\\xbb\\xf3\\x75\\x0c\\xe5\\x1b\\xdd\\x74\\x5c\\xcd\\x02\\xf2\\x2b\\xd7\\x77\\xdc\\xdd\\x34\\xd4\\x69\\x14\\x39\\x5a\\xae\\xb5\\x81\\xe8\\xb3\\x47\\x02\\x71\\xd5\\xcf\\x1d\\xd5\\x38\\x0d\\xa3\\xad\\xbf\\x3c\\x67\\xa7\\xf8\\x7f\\xd8\\x1a\\xa4\\x3c\\xf4\\x35\\xd1\\x8b\\x18\\x7d\\x17\\xce\\x97\\xfd\\xa2\\xda\\xa1\\x6c\\x4c\\x6a\\x5e\\xc8\\x30\\xe6\\x3d\\x29\\x40\\x1c\\x5d\\xf0\\x92\\x7b\\xc9\\xce\\x4d\\x0e\\x93\\x49\\xc4\\xe7\\x23\\x24\\xd2\\xf8\\x0c\\x0c\\x53\\xef\\x65\\x84\\xf4\\xc4\\xae\\x75\\x69\\x9b\\x70\\xd2\\xfc\\x01\\xf1\\x48\\x7c\\xd0\\x7e\\x97\\xa4\\xb5\\x18\\xee\\xd2\\x13\\x72\\x2d\\x20\\x88\\x1b\\xcf\\xc6\\x5e\\xe6\\xe6\\x0f\\x1a\\xe9\\x3e\\x71\\xde\\x1c\\x92\\xa5\\x9b\\x4f\\x2f\\x18\\xfe\\x48\\x70\\x21\\xbd\\x94\\xdd\\x6a\\xf5\\x8c\\x2d\\xc1\\xb5\\x1d\\x38\\x46\\xd7\\x40\\x58\\x6c\\xc7\\xbb\\xd9\\x87\\x56\\x28\\xa5\\x94\\xd6\\x40\\xdd\\xc8\\x09\\xd7\\x32\\x6a\\xd7\\x25\\xb1\\x55\\xf8\\x5c\\x87\\x83\\xaf\\x77\\x16\\x25\\xd8\\x2d\\xf8\\x4b\\x7c\\xe7\\xe6\\x2b\\xa2\\x4b\\x28\\xd2\\xf4\\x10\\x8b\\xe3\\x2e\\x0e\\x5f\\xae\\x3e\\xe1\\x47\\x4c\\x67\\xd6\\x80\\x20\\x2f\\x1a\\x10\\x40\\x89\\xc8\\x0f\\x95\\x0f\\xb9\\x0f\\xc3\\x33\\x4c\\xe1\\x2f\\xa0\\x91\\x29\\xf6\\x29\\x0c\\x02\\x60\\x7b\\x5a\\x94\\xd9\\x30\\x53\\x72\\xf5\\xf7\\x6d\\xcb\\x82\\xfb\\x69\\x3e\\xac\\x2f\\x2c\\xe6\\x5e\\x0e\\x89\\x26\\xeb\\xe3\\xf3\\xef\\xcd\\x87\\xee\\x2a\\x4c\\x89\\xa6\\x74\\xd9\\xe3\\x58\\x7c\\x89\\x98\\xb7\\x16\\x14\\xfa\\x4c\\x96\\x60\\x9a\\xcd\\xaa\\x73\\xd2\\xe8\\x59\\x07\\xab\\x1c\\xe6\\x3a\\xc5\\x64\\x81\\x54\\x92\\x1c\\xed\\x39\\xf1\\x60\\xa2\\xab\\xf1\\xa1\\x8d\\xdf\\xa9\\xae\\x50\\x8b\\xf3\\x44\\x94\\x13\\x2e\\xec\\x7c\\xb7\\xb2\\x26\\x70\\x59\\xf1\\xce\\x1d\\x67\\x71\\xa9\\x3d\\x76\\xe8\\x68\\x2b\\x83\\xf4\\x44\\x2d\\x43\\xb1\\x04\\x3a\\x17\\x57\\x34\\x31\\xe7\\x60\\x5a\\xf1\\x1f\\x55\\x4a\\xfd\\x45\\x53\\xe6\\x54\\x03\\xd1\\x3f\\xf8\\xc2\\x91\\x13\\xb3\\xd0\\x11\\xa5\\x82\\xea\\xa6\\x63\\x35\\x80\\xac\\x36\\x9a\\x54\\xcd\\x8f\\xaa\\x15\\x43\\x32\\x06\\xf4\\xd3\\xc1\\x65\\x4f\\x5c\\xab\\xaa\\x9c\\x96\\xb5\\x07\\xde\\x7e\\x0e\\x7e\\x43\\x5f\\x64\\x73\\xab\\x81\\x41\\x8a\\xae\\x08\\xea\\x1f\\x9a\\xb2\\x98\\x29\\x0f\\xe9\\xd7\\x66\\xca\\xd4\\x3e\\x33\\x2d\\x4c\\x6f\\xf9\\x8c\\x02\\xd5\\x9b\\x86\\x1c\\xa1\\x4a\\x21\\x29\\x0a\\x1b\\xce\\x17\\xc6\\x01\\x14\\x8a\\xe0\\xca\\xea\\xfb\\xdf\\xd2\\xe7\\xeb\\x55\\x8f\\xbf\\xda\\x8c\\x7a\\x8c\\x86\\xd2\\x0c\\xf0\\x4c\\x3f\\xbb\\x8d\\x5a\\xf2\\xa4\\x45\\xdb\\x79\\xd4\\x5a\\xf3\\x84\\x1c\\x1c\\xf7\\x97\\x9d\\x34\\xd3\\x16\\xf2\\x0a\\x46\\x97\\xee\\x0b\\xeb\\xc3\\xcc\\xd7\\x7e\\x54\\xc9\\x2c\\xea\\x60\\x8b\\xe1\\x45\\xd5\\xe3\\x13\\xed\\x98\\x22\\x59\\x4e\\xb6\\xcd\\x56\\x74\\x6f\\xe9\\x84\\x5e\\xe5\\xa8\\x8d\\xde\\x0f\\x1f\\x8a\\x97\\x8e\\xa0\\x72\\xbf\\x69\\x8f\\xab\\x4b\\x70\\xf8\\xad\\x65\\x70\\x9b\\x32\\x1d\\xe7\\x7e\\x26\\x17\\x42\\x3e\\xb1\\x3c\\xb4\\xe4\\x66\\x73\\x1b\\xbc\\x31\\x78\\xe1\\xdd\\xbc\\x40\\x49\\x2a\\x9d\\xa5\\x91\\x3d\\x49\\x46\\x48\\x14\\x43\\x8f\\x3f\\x55\\x53\\x14\\x53\\x81\\x3d\\x63\\x82\\x57\\xa8\\xa7\\xca\\xdc\\xef\\x55\\x63\\x16\\xab\\xc4\\x31\\x52\\x34\\x72\\x75\\xd3\\xc0\\x7f\\xf4\\x0b\\x86\\xd7\\xc3\\xf4\\x16\\xf9\\x49\\x07\\xd7\\x71\\xc0\\xe8\\x58\\x0d\\x2b\\x01\\xe7\\x6d\\x2c\\xde\\x8e\\x69\\xbf\\x86\\xe6\\x85\\xcb\\xea\\xfd\\xe7\\x8f\\xba\\x35\\x35\\xd7\\x94\\xa8\\xc0\\xf5\\x4d\\xa1\\x38\\xdb\\x78\\x2c\\x22\\xc8\\x5c\\x08\\x92\\x8b\\xea\\xcc\\x84\\xfc\\xab\\x37\\x3c\\x06\\x99\\x7e\\xda\\x5d\\x7c\\xa9\\xd6\\xd4\\x6d\\xfb\\xae\\x10\\xf9\\x8c\\xc5\\xe7\\x06\\x77\\x78\\x04\\xca\\x36\\x73\\x6b\\x2d\\xcb\\x86\\xbe\\xa9\\x28\\x2b\\x5b\\x3f\\xfd\\xca\\x76\\xc7\\x45\\x28\\x7c\\xce\\x5d\\xce\\xa1\\x32\\xfa\\xe1\\xb7\\x61\\x3a\\xfd\\x15\\x08\\x97\\x8b\\x4e\\x27\\xc9\\xeb\\x97\\x3c\\x03\\x9a\\x8e\\x8f\\xd4\\xb5\\x5c\\xee\\x40\\x7c\\x5d\\xe9\\x8b\\xf1\\x58\\x44\\x1b\\x13\\x8e\\xef\\xf4\\x0f\\x2c\\xda\\x9e\\x40\\xb7\\xa8\\x17\\xe4\\x3b\\x9e\\xce\\xb2\\xd5\\xe6\\x30\\x8e\\x58\\x98\\x9c\\xa7\\xfe\\xc0\\xf9\\x00\\xa7\\x79\\x28\\x43\\x2d\\x5d\\x8f\\x33\\x5e\\x89\\xbd\\xcd\\xc7\\xcb\\x0f\\x6f\\xc5\\x8e\\x57\\x46\\xce\\x4e\\xa8\\x25\\x93\\x5b\\x61\\x85\\x70\\xee\\xd7\\x35\\x32\\x46\\x7a\\x09\\xa4\\xe9\\x9f\\xe8\\x55\\x41\\x54\\x7b\\x9e\\x9c\\x24\\x53\\x0a\\x41\\x8f\\x1c\\xc5\\xba\\x55\\x55\\xb9\\x54\\x36\\xa3\\x9e\\x01\\x3c\\xc8\\xbe\\x9b\\x92\\x71\\x53\\xbd\\x59\\x6a\\x9b\\x3e\\x3d\\xa3\\x77\\x9a\\x71\\xfe\\xcd\\x7d\\x5a\\xdf\\x33\\x73\\x44\\xd1\\x54\\x88\\x74\\x45\\x93\\xce\\x04\\xe7\\x4a\\x8b\\x7a\\x2d\\x72\\xb1\\xf5\\x2f\\x36\\x35\\x44\\x1c\\x73\\xeb\\x68\\x11\\x71\\x52\\x6a\\xae\\x7a\\x54\\x85\\xd8\\xd2\\xab\\x92\\x6c\\x5b\\xa4\\x7a\\x6a\\xa7\\x0b\\x90\\xb9\\xef\\x61\\x04\\x33\\xdc\\x38\\xa2\\x31\\x65\\xcd\\xb4\\xd8\\x22\\x7d\\x5f\\xed\\xee\\x6f\\x40\\xf5\\x40\\x1f\\x19\\xfd\\x4c\\x96\\x7b\\x5d\\x8c\\x51\\xcb\\x99\\x10\\x3a\\x34\\xe0\\x33\\xd8\\xfb\\xb3\\xa1\\xe1\\x55\\x3c\\xea\\xeb\\x9f\\xd3\\x37\\xba\\x8f\\x31\\xdf\\x66\\xcb\\x6f\\xf2\\x62\\xe2\\x4f\\xa9\\x58\\xbc\\xbb\\x72\\x16\\x74\\x5c\\x7d\\x84\\xc5\\x6c\\xea\\x93\\xed\\x56\\xcf\\xf2\\x01\\xdc\\x9a\\x16\\x2a\\x0d\\x14\\xdf\\x1e\\xfb\\x97\\x83\\xea\\x1a\\xb7\\x1c\\x14\\x6c\\xa8\\x67\\xa9\\x49\\x10\\xf8\\x7a\\x57\\x82\\x8c\\x24\\x95\\x86\\xb1\\x15\\x1c\\xba\\xad\\xc0\\xd3\\x77\\xf6\\x7f\\x8f\\x86\\xa6\\xfd\\xb4\\xc7\\xad\\x43\\x5b\\x19\\x22\\x1a\\x28\\xe4\\x3c\\x15\\xa6\\xe6\\x35\\xa6\\x87\\xf9\\x04\\x3c\\xc4\\x98\\x77\\x9d\\xa3\\xe5\\x72\\x5b\\x1c\\x69\\x65\\x72\\xe0\\xfa\\x2a\\xb3\\x11\\xc2\\x05\\x68\\x3b\\x32\\x21\\x9a\\x93\\xdd\\x9f\\x2a\\xd2\\xdc\\xf1\\x95\\x8d\\x18\\xec\\x8a\\x37\\xf9\\x44\\xf8\\x87\\x11\\x5f\\x91\\xf3\\x0d\\xce\\xef\\x1a\\x5d\\x30\\xdf\\xcb\\xe2\\xe7\\x3e\\x89\\x76\\xa2\\x8a\\x47\\xc3\\x89\\xa3\\x27\\xbf\\xe6\\xf4\\xb1\\x9d\\x88\\xb6\\xed\\x67\\xd2\\x3a\\x14\\xa7\\x9e\\x7a\\x65\\x5f\\x84\\x96\\x5d\\xc0\\x96\\x0d\\x6f\\x72\\x9d\\x3a\\x50\\x2a\\x45\\xe3\\x6b\\xee\\x46\\x30\\x15\\x6d\\x02\\x71\\xde\\xff\\x85\\x61\\xb6\\x95\\x90\\xcf\\x2b\\x67\\x6c\\x3d\\x9d\\x53\\x62\\x2c\\x66\\x3b\\xee\\x31\\x69\\xd3\\x20\\x1a\\xae\\x28\\x14\\x3e\\x92\\xac\\xa9\\x3a\\x11\\xf9\\x95\\x1f\\xca\\x06\\x6f\\x58\\xc4\\x94\\x14\\x5b\\xe3\\x2c\\xc2\\xab\\x53\\x1f\\x37\\xac\\x8b\\x7b\\x92\\x69\\x8a\\xe9\\x52\\xea\\x7f\\x78\\x90\\xc5\\x0e\\x36\\x06\\x38\\x09\\x78\\x4c\\xe2\\x9f\\x91\\x5c\\xb5\\x91\\x73\\x77\\x44\\x3c\\x01\\x74\\xb2\\xc4\\xa9\\xcc\\xe0\\x75\\xe5\\x7e\\x6b\\xee\\x53\\xa2\\x41\\xac\\x33\\xc8\\xb1\\xf5\\xfa\\xcc\\x6f\\xde\\x61\\x9b\\x8e\\x41\\x48\\x50\\x44\\xcc\\xfa\\x69\\x6c\\xb7\\x31\\x24\\xf9\\x76\\x22\\x62\\x0e\\x00\\x31\\x83\\xc7\\x39\\x3a\\x2e\\x24\\x91\\x1a\\x6f\\xf2\\xdc\\x45\\xe6\\x04\\xfa\\xfb\\x5e\\xcc\\x35\\x3d\\x89\\x31\\xf5\\x52\\x9e\\xf2\\x44\\xd9\\x36\\x06\\xc6\\x8a\\xc3\\xf9\\x9c\\xc9\\x39\\x4b\\x7d\\x0e\\xa3\\x2b\\x45\\x21\\x6a\\xda\\x1a\\x18\\x26\\x8b\\x57\\x7e\\x55\\x26\\xfd\\xba\\x11\\x24\\xe8\\x72\\xb8\\xab\\xfd\\x77\\x23\\x81\\xf1\\x5f\\x17\\x82\\xd2\\xf0\\x0f\\xa1\\x73\\xf9\\xda\\xc0\\xdf\\xf0\\x9a\\xfe\\x0d\\xe5\\xca\\x28\\xe5\\x94\\xa1\\x4f\\x88\\xaa\\x20\\x69\\xff\\x62\\x81\\xe3\\x63\\x45\\xce\\xb2\\x86\\x28\\x92\\xfb\\x5c\\x68\\x19\\xb5\\xfa\\xed\\xc8\\x27\\x37\\x79\\x64\\x51\\x4f\\x5e\\x79\\x06\\x9f\\x2e\\x94\\x6d\\xdc\\xdf\\x54\\x6e\\x98\\x53\\x05\\x1f\\xe4\\xb3\\x75\\x5c\\x91\\x78\\x07\\x2b\\x4e\\x6a\\x6f\\xe2\\x9f\\x64\\x09\\x08\\xeb\\xe8\\xe1\\x11\\xa5\\xd8\\xb4\\x9c\\x7b\\x5c\\xf0\\x4c\\xb7\\x67\\x5e\\xe7\\xf2\\xc1\\xb0\\x9a\\x83\\x8a\\x7e\\xcf\\xa8\\xe4\\x13\\x5c\\x24\\x43\\xaa\\x7f\\x18\\x60\\x03\\xbc\\xca\\x88\\x39\\xb7\\xc4\\xef\\x47\\x12\\xf7\\x49\\x36\\x5d\\xf3\\xfd\\xa8\\xc0\\xe9\\xcd\\xae\\x60\\x42\\x8d\\x32\\x4c\\x9f\\x3e\\x81\\x2a\\x36\\x71\\x62\\x9b\\x7b\\xc8\\x27\\x68\\xbf\\xa5\\x76\\xc0\\x00\\x5f\\xee\\xa4\\x88\\x09\\xe9\\xc7\\x70\\xbb\\x96\\xb5\\x98\\x6e\\xa3\\x3f\\x14\\x29\\x58\\x89\\x1e\\x36\\xd6\\x4d\\xef\\x8d\\xf2\\xb3\\x62\\xaa\\x9d\\xce\\x40\\x4b\\x11\\x34\\x32\\x7d\\xd7\\xb9\\xcc\\xb9\\x9f\\x38\\xf9\\x51\\xb3\\xc9\\x4a\\x6f\\x35\\xe8\\x57\\xeb\\x10\\x5e\\xc5\\x97\\x87\\xba\\xa6\\xd5\\x5f\\x97\\x02\\xcc\\x4a\\x92\\x2d\\x70\\x12\\xae\\x3e\\xe7\\xdb\\x45\\xba\\x35\\xd5\\x7a\\x96\\x8d\\x6f\\x17\\x78\\xa5\\x85\\xe6\\xd3\\x84\\x9e\\x8f\\x20\\x1f\\x98\\x94\\xfe\\x1f\\x00\\x00\\x40\\xff\\xbf\\x6c\\x36\\x7c\\x63\\x13\\x08\\x14\\x20\\x24\\x93\\xe9\\x52\\x47\\xa1\\x4b\\x8a\\xbb\\x93\\x20\\xba\\xca\\x8a\\x58\\x46\\x80\\x5d\\xb6\\x8a\\x8d\\xed\\x46\\x71\\xe1\\x9c\\x6d\\x2e\\x73\\x75\\x17\\xf6\\x0b\\x0f\\x93\\x01\\x48\\x77\\xc5\\xd1\\x26\\x09\\x91\\x44\\x32\\x0d\\xc9\\x00\\x1a\\x37\\xec\\x10\\xed\\x77\\x05\\x18\\xfe\\x6b\\xb0\\x0a\\x26\\x87\\x15\\xc9\\xb6\\x92\\xc2\\x42\\x75\\x28\\x08\\x7d\\x27\\x6f\\xc1\\x10\\x16\\x5e\\x8f\\x61\\x85\\xc5\\xa5\\x4b\\x01\\xf7\\x3e\\x2c\\x8f\\x9d\\xfa\\x17\\xf7\\xe7\\x54\\xf7\\x41\\x4b\\xb6\\x52\\x2f\\xe0\\xf1\\x1c\\x90\\x98\\x94\\x06\\x9f\\x14\\x26\\x30\\x11\\x4c\\xdf\\x42\\x22\\x83\\x4e\\x2f\\x50\\x2e\\x44\\x45\\x21\\x6d\\xb0\\x85\\x3e\\x39\\x75\\x02\\x8f\\x7e\\x20\\xc0\\x63\\x06\\xed\\x0a\\x07\\x5d\\x96\\x23\\x01\\x1d\\x52\\x20\\x08\\x95\\xed\\xe2\\x37\\xbe\\xa4\\x13\\xb8\\x79\\xe1\\xa0\\x67\\x2f\\x58\\x9b\\x53\\x95\\x33\\x97\\xca\\x70\\x24\\x73\\x46\\xfa\\x85\\x74\\xfb\\xe8\\x53\\xef\\x3d\\xbd\\x53\\x69\\x4d\\xb6\\x98\\xcc\\x74\\xc3\\xa8\\x1e\\xee\\x63\\x72\\x1b\\x30\\xd1\\x95\\xd9\\xdc\\xbf\\x19\\x77\\x9a\\x7a\\x24\\xa5\\x4a\\x2e\\x04\\x43\\xd2\\xa8\\x63\\x3c\\x08\\xd3\\xc5\\x0e\\xef\\x91\\x11\\xea\\x5c\\xdd\\xc8\\x85\\xce\\xd9\\x1b\\x64\\xe7\\x7f\\xc6\\x89\\xdf\\x19\\xab\\x5d\\x6b\\x44\\x88\\xe9\\xae\\xd4\\x87\\xf2\\x72\\xc0\\xe1\\x28\\xd5\\xa0\\x23\\x92\\x3d\\x18\\x69\\x0f\\xb7\\xec\\xf2\\xd8\\x47\\x90\\xf5\\x8d\\x42\\xa6\\xd3\\xda\\x8a\\x09\\xa1\\x2f\\xf3\\xa4\\x40\\x52\\x08\\x0d\\x2c\\x6b\\x9a\\xe5\\xd1\\x46\\xc3\\x8e\\x33\\x38\\xc7\\x08\\x31\\x55\\xc7\\xc0\\xa2\\xd0\\xbb\\x0f\\xc6\\xc7\\x72\\xaf\\xdf\\x87\\xf3\\xc4\\x5b\\x8e\\x97\\x65\\xc6\\xa0\\x82\\x56\\x40\\x82\\x38\\x35\\x07\\x4a\\xb5\\xbc\\x73\\x79\\x88\\x3d\\x29\\x66\\xae\\x70\\x9e\\x04\\x43\\xc6\\x63\\x05\\xe8\\x28\\x05\\x87\\xd1\\xd0\\x38\\xd8\\xa2\\xf6\\x9e\\x4b\\x34\\x4c\\x46\\x37\\x0d\\x52\\x04\\x81\\x68\\x0b\\x1a\\x81\\x14\\x45\\xdb\\x2d\\xda\\x81\\x2e\\x21\\x87\\x24\\x00\\x2c\\xc8\\xc4\\x85\\x6f\\x2a\\xdf\\xe9\\x0d\\x98\\x25\\xc5\\xac\\xfe\\x58\\x06\\x69\\xe3\\x38\\xf8\\xb3\\x6b\\x16\\x7b\\xcc\\xc1\\x36\\xd3\\x49\\x0c\\xd7\\x09\\xe8\\xd2\\xee\\xe8\\x86\\x7c\\x07\\xf3\\xf0\\xb5\\xb1\\x66\\x0c\\x4c\\x93\\xf1\\x0b\\x21\\xdd\\xb5\\x36\\x68\\x57\\x9f\\xd5\\xea\\x94\\xaa\\xcd\\xb8\\xd2\\x39\\x6e\\xa8\\xf9\\x90\\xb0\\x91\\xed\\xe8\\x2a\\x44\\x4f\\x82\\x6c\\x38\\x8c\\x2d\\xb5\\xba\\x36\\x66\\x1e\\xee\\x85\\x6c\\x29\\xe3\\x81\\x33\\x96\\x00\\xd2\\x20\\x54\\x28\\x65\\xe4\\x25\\x18\\x61\\x68\\xed\\x1a\\x98\\xe3\\x20\\xe7\\x99\\x64\\x63\\xbc\\x0d\\x1a\\x22\\xba\\x6f\\xe3\\x4a\\xa6\\xa9\\x8a\\xf0\\x2c\\x8e\\x25\\x8c\\x99\\x3b\\xdb\\x13\\x29\\x8c\\x09\\xfc\\x45\\x03\\x79\\x5f\\xc1\\x00\\xf3\\xb6\\xc2\\xb3\\x4c\\x98\\xd1\\x33\\x8d\\x19\\xf6\\x36\\x6f\\xe5\\x56\\x23\\x2a\\x9a\\xcc\\x00\\x43\\x48\\xfe\\x0c\\xb0\\xb6\\x60\\xe1\\x24\\xd6\\x9f\\x0e\\x7f\\xb0\\x11\\x4e\\x26\\xa9\\x45\\x9f\\x7e\\xb2\\x33\\x13\\xc2\\x42\\xec\\x5d\\x23\\xfb\\xff\\xa7\\x98\\x21\\x70\\xe1\\x1b\\xde\\x24\\xbd\\x07\\x5d\\x81\\x5c\\x8b\\x44\\x79\\x99\\x49\\x5c\\xfe\\xfa\\xfe\\xac\\xf0\\x2f\\x64\\xa4\\x8a\\x51\\xef\\xa7\\x85\\xe4\\xf5\\x58\\x70\\x40\\x61\\x8e\\x3b\\xfb\\xbb\\x65\\xfe\\x54\\x41\\xa8\\x80\\xe5\\x84\\xb6\\xff\\x16\\xaf\\x71\\xaf\\xb1\\x8b\\x0a\\x41\\xbd\\x0b\\x9e\\x6c\\x46\\x0a\\x86\\x73\\xcb\\xfd\\xd6\\x58\\xe0\\xd1\\x15\\x03\\x9b\\xd8\\xa0\\xf1\\x37\\xe0\\xdc\\x20\\x6e\\x08\\xc8\\xef\\xa6\\x1f\\x60\\xb4\\x38\\xfd\\xd8\\x51\\x65\\x4b\\x95\\x6c\\xe0\\xa2\\xfe\\xea\\xea\\x2b\\xec\\x34\\x7e\\x29\\xb6\\xfa\\xe0\\x93\\x9b\\xfa\\x3f\\x70\\xee\\x82\\x38\\x37\\x69\\x88\\xb2\\x39\\xac\\x80\\x61\\x15\\xc2\\x67\\x98\\xc8\\x7f\\x55\\xc6\\xce\\xf1\\x50\\xfc\\xd1\\xd2\\xea\\x73\\x50\\x5f\\xa8\\xd7\\x9f\\xce\\x8c\\xdc\\x6e\\x47\\x9b\\x46\\xd3\\xf2\\xaf\\x20\\x12\\x1c\\x35\\x47\\x92\\x65\\xbe\\x22\\xa7\\x1c\\x14\\x8f\\x5a\\xa8\\x43\\xcc\\x61\\x14\\xf8\\xb2\\x48\\x04\\x85\\x6f\\x0c\\xf0\\xcd\\xf4\\xb0\\xfa\\x5e\\xd1\\xa5\\x5f\\xb4\\xcd\\x3e\\x24\\xe0\\x66\\xdc\\x65\\x72\\xa5\\xc3\\xde\\x3b\\xdf\\xa7\\x83\\x40\\x08\\x63\\x0f\\x5b\\xad\\xb9\\x00\\x12\\x5a\\x74\\xfd\\xf6\\xda\\xec\\x10\\x5f\\xc0\\x1d\\x58\\x2c\\xf7\\x82\\xc1\\x6d\\x74\\x47\\xb0\\x91\\xfc\\x56\\x40\\x3c\\xed\\xc9\\x0d\\xb0\\x11\\x9e\\x69\\x52\\x7f\\x7a\\x45\\x16\\x36\\x6a\\x4c\\x8d\\xb2\\xb3\\xd7\\x0f\\x51\\x70\\x69\\x22\\xa0\\xa3\\x32\\xbe\\x14\\x01\\x74\\x10\\xad\\xd7\\xa8\\x35\\x5c\\xf1\\x66\\xa5\\xd3\\x90\\xa9\\x4a\\x32\\x4a\\xe5\\x33\\xf3\\xa6\\xc6\\xfe\\x56\\x94\\x0a\\x30\\x06\\x6b\\xd2\\xe1\\x27\\x05\\x43\\x21\\xdd\\xc4\\x4e\\x06\\x5d\\x94\\x4a\\xd8\\x71\\x38\\x1e\\x83\\x73\\xcf\\x94\\xf1\\xb4\\xd1\\xa1\\x38\\xa4\\x1d\\xe3\\x8a\\x41\\x21\\xda\\x15\\x6b\\x8b\\xc0\\x89\\x91\\xa5\\x4e\\x29\\xd3\\xe9\\xa8\\x09\\x16\\x04\\x15\\x89\\x70\\x85\\x0f\\x49\\x23\\x98\\xcd\\x73\\x04\\x7d\\x7c\\xd1\\xe2\\x53\\x7a\\x17\\x1e\\x21\\xb1\\x7d\\x97\\xcc\\x43\\x82\\x21\\x73\\xf6\\x42\\xa6\\xdd\\x6e\\xb4\\x69\\x23\\xf3\\x0c\\x9e\\x01\\xf6\\xd0\\x9a\\x90\\x64\\x8b\\xe2\\x56\\x23\\xf2\\x2c\\x14\\xe6\\x2b\\x69\\x4a\\xcc\\x44\\x13\\xc6\\x77\\x70\\x2b\\x00\\x96\\x66\\x2e\\x70\\x38\\x62\\x8c\\x89\\xab\\x8e\\x73\\xe6\\xc2\\xbd\\xc0\\xa1\\x3b\\xcd\\x6f\\x94\\x1c\\x2a\\x15\\xd6\\xdf\\x91\\x5f\\xee\\xc2\\x26\\x0f\\xac\\x0a\\x57\\xbc\\x8f\\xd3\\xce\\xce\\xe5\\xe3\\x20\\x46\\x9d\\x44\\x4c\\x40\\x7c\\x89\\x81\\xa4\\xc9\\xbf\\xfb\\x88\\x68\\x88\\x59\\x61\\x3f\\xee\\x96\\x2d\\xc0\\xc5\\x04\\x40\\x5b\\xad\\x12\\x1f\\x20\\x4e\\xc7\\xb6\\x61\\x88\\x96\\x1b\\xc6\\x22\\xc6\\x25\\xd6\\xc7\\x8c\\xdf\\x13\\xfa\\x63\\xee\\x65\\xfe\\xac\\xaa\\x06\\x28\\x62\\xf5\\x88\\x83\\x70\\x07\\x38\\xd7\\x24\\xae\\x22\\x80\\xfb\\x51\\xb0\\x22\\x01\\x86\\x95\\x45\\xa1\\x24\\xf6\\x45\\x84\\x38\\x64\\x8c\\x19\\x79\\xfa\\x9c\\xb0\\x56\\x18\\x00\\x64\\x56\\x88\\x24\\x22\\xe3\\x10\\x9f\\x29\\x0c\\x50\\x16\\x59\\xe7\\xa9\\xe8\\xb1\\x15\\x6b\\xc9\\xab\\x58\\xc8\\xed\\xb0\\x20\\x2c\\x21\\x52\\x7a\\xcd\\x72\\x2a\\xd0\\x22\\x4a\\x81\\x04\\xa5\\x7b\\x95\\xdd\\xa6\\x5f\\x95\\x34\\x3f\\xaa\\xd9\\x1d\\x45\\x49\\x2a\\xbe\\x36\\xf9\\x03\\xf6\\x68\\x92\\x3d\\xa9\\x23\\x3a\\x8f\\x21\\x11\\xa1\\xe4\\x4a\\x43\\xb5\\xdb\\x90\\x35\\xb2\\x6e\\x33\\x6b\\x6f\\x29\\x94\\xa4\\xaa\\x50\\xbd\\x82\\x73\\xfc\\x27\\x47\\xd9\\x2d\\xfb\\x1a\\x8a\\xae\\x85\\x08\\xa4\\x95\\x2b\\x92\\x58\\x26\\x06\\x5c\\x06\\xcf\\x60\\x87\\x8a\\xc0\\xd0\\x3a\\xce\\x16\\xe9\\x9e\\x9e\\x43\\x9f\\x99\\x5e\\x53\\x00\\x0d\\x4a\\x64\\xaa\\xf6\\xad\\x10\\xa2\\xaf\\x39\\xf0\\x75\\x8d\\x69\\xa0\\xc1\\xb9\\x77\\x94\\x9b\\x77\\x0c\\xa7\\x2c\\xea\\xd3\\x53\\xe8\\x09\\xb9\\xfd\\x54\\x31\\x6e\\x88\\x14\\x0d\\xa8\\x8e\\x1d\\x71\\x3c\\x7c\\xb2\\x99\\xb2\\x88\\xe7\\x44\\xe6\\x4d\\x95\\x4f\\xc5\\xcd\\xc3\\x64\\xa0\\x2e\\xb8\\x40\\x00\\x36\\x67\\xb4\\xc4\\xfc\\x44\\x2a\\x7f\\xf1\\x06\\xbb\\xf7\\xd8\\x03\\x2d\\x25\\xc5\\xb3\\xbc\\xd7\\x89\\xae\\x9f\\x1a\\x27\\xec\\x53\\x0f\\x92\\xe1\\xc3\\xa9\\xc4\\x41\\x69\\x2d\\xd2\\xe7\\x1e\\xaf\\x5c\\x56\\x2b\\x16\\x3d\\x83\\x73\\xc5\\x01\\x80\\x97\\x2b\\x96\\x31\\x55\\x81\\x08\\x56\\xea\\x6b\\x3d\\xb9\\x8f\\x6a\\xcd\\xa2\\x31\\x97\\x5a\\xaa\\x34\\x51\\xdc\\xc4\\xdb\\xdb\\x10\\x28\\xe0\\x04\\xf0\\x30\\x0c\\x1a\\x03\\xf6\\x54\\x07\\x9c\\xbd\\xab\\x58\\x7e\\x30\\x31\\xe5\\x13\\x48\\x60\\x70\\x65\\x1a\\x24\\x15\\xfc\\x87\\x41\\xcf\\xfe\\x2d\\x16\\xe6\\x54\\xf4\\xca\\x60\\x05\\x16\\xe7\\x72\\x16\\xb1\\x0b\\x11\\x6a\\xe6\\xed\\xd1\\x81\\x24\\xd6\\x01\\x66\\x46\\x88\\x00\\x14\\x5a\\xc3\\x13\\x89\\x15\\x06\\x67\\xa1\\x12\\xf1\\xcf\\xf0\\xa4\\xd6\\x75\\xc1\\xc0\\xd6\\x03\\x5a\\x50\\x7d\\x4a\\x78\\xf0\\x12\\x3f\\x31\\x08\\xba\\xcd\\x5a\\xf8\\x0b\\xe7\\x79\\x50\\x8b\\x4d\\xc9\\xda\\x7f\\x37\\x89\\xe0\\x79\\x5c\\xc7\\x53\\xd6\\x88\\x0a\\xbb\\xb7\\x28\\x1a\\x62\\x88\\x2e\\x52\\x87\\x5a\\xb7\\x05\\xfc\\x98\\x4c\\x87\\x62\\x7b\\xb1\\x14\\xbc\\x30\\x67\\x8d\\x23\\x13\\xb8\\xdb\\xa8\\x56\\x95\\x23\\xe9\\x70\\x32\\x50\\xe0\\xb0\\x9e\\xba\\x84\\x8e\\x38\\x5b\\x8a\\xc1\\x70\\x5d\\xe9\\x6b\\x5d\\x24\\x24\\xb2\\xf0\\x93\\x90\\xfb\\xbf\\xde\\x6c\\x6b\\x95\\x85\\x8a\\x27\\xe1\\xcf\\xe8\\xc4\\x5e\\xce\\xa4\\x49\\x5b\\x12\\xce\\x78\\x2b\\x4e\\xa3\\x35\\x25\\x8c\\x04\\x65\\x78\\x64\\x4c\\x6e\\x76\\x14\\x81\\x9e\\xce\\x4a\\x27\\x53\\xa6\\x1a\\xe6\\x42\\x20\\xec\\x74\\x71\\xf1\\x7d\\x6b\\x61\\x7f\\xc1\\x7c\\x07\\x1e\\xbc\\xe7\\xe8\\x54\\xb3\\x76\\x9f\\x06\\x40\\xb0\\x3e\\x6a\\x32\\x07\\xae\\xc6\\x09\\x5c\\x9d\\x79\\xe2\\x39\\x4c\\x12\\x55\\xe3\\x8c\\x40\\xdf\\xb0\\x09\\xd2\\x76\\x3c\\x2a\\xc5\\xe9\\x4a\\xa3\\x08\\x1a\\xa0\\xdd\\x1c\\x55\\x31\\xe1\\xea\\x3f\\x90\\xc0\\x85\\xa2\\x6d\\x22\\x58\\xa7\\xc1\\x96\\x46\\xa2\\x94\\x6a\\xe0\\x4c\\xb1\\x9b\\xb9\\x4a\\x9c\\x7d\\xd8\\x2f\\x68\\x04\\x48\\x0b\\x4f\\xe9\\xd9\\xcf\\x55\\x3c\\x4a\\x21\\xc0\\xf8\\xb9\\x89\\xd0\\x3c\\xb6\\x17\\x4f\\x42\\xf6\\xce\\xc6\\x99\\xb9\\x57\\x72\\xa9\\x5e\\x1b\\xc8\\x58\\x45\\x11\\x02\\x5a\\x46\\x2d\\x4f\\xf2\\x05\\xd9\\x40\\x87\\x38\\xbc\\x7d\\x7e\\x63\\x80\\xda\\x95\\x73\\xec\\xbc\\x38\\x40\\xbf\\x1a\\x41\\x3f\\x57\\xe5\\x0b\\x24\\x34\\x81\\x2e\\xad\\xe4\\x3d\\xc4\\xe3\\xa5\\x69\\xfd\\x1c\\x0b\\x2b\\x18\\xda\\x86\\x80\\x61\\x80\\x5c\\xd2\\x02\\x57\\xfe\\x9a\\x81\\x2d\\x5b\\x9f\\x05\\x38\\x08\\x0b\\x04\\xaa\\xaa\\x30\\x22\\xc9\\x72\\x8a\\x37\\x27\\x54\\x96\\x19\\x1c\\xa1\\xa5\\xde\\xfd\\x7f\\x2b\\x36\\x59\\xb8\\xe3\\x8e\\xaa\\xe1\\x5a\\xe6\\x4b\\xc6\\x19\\x03\\x11\\xfc\\xfb\\x25\\x38\\xa2\\x4f\\x90\\x36\\x92\\xb0\\x70\\x08\\x42\\x39\\xf5\\x2c\\x69\\x7e\\x57\\x9b\\x71\\x0a\\x39\\x81\\x69\\x79\\xa4\\x0a\\x06\\x51\\xf6\\x80\\x43\\x92\\xb5\\xd1\\x6f\\xa6\\x0f\\xdb\\xda\\x47\\x12\\x66\\x2b\\x34\\x99\\x16\\xf5\\x74\\xa8\\x6c\\xec\\xf5\\xe1\\x9a\\x9b\\x70\\xbb\\xb4\\x2c\\x00\\xdc\\xd3\\x82\\x4e\\x28\\xd0\\x99\\xee\\x3c\\x0f\\xdf\\x03\\xc4\\xbe\\x75\\x00\\x81\\x60\\xe1\\x38\\x10\\x68\\x1b\\x6f\\xf0\\x31\\x5a\\x1d\\xe9\\x8c\\x0c\\xd0\\xe1\\x9c\\xc5\\x81\\x39\\xc4\\x5e\\x10\\xb5\\xf5\\x4a\\x6a\\xb6\\xb4\\xb8\\x0e\\xe1\\x9c\\xeb\\xc7\\x43\\x69\\xab\\x33\\xe9\\x3a\\xc9\\xd5\\xf4\\x2c\\xb7\\x09\\x01\\x04\\x1d\\x39\\xa1\\x65\\x6f\\x7f\\x60\\x2e\\xff\\xf9\\x52\\xaf\\x5f\\x51\\x9d\\xb6\\xdf\\xaf\\xa5\\x41\\xe5\\x95\\xa4\\xc7\\xda\\xb2\\xe7\\x8b\\xf1\\x00\\xb9\\x7d\\x00\\xc1\\xc1\\x7f\\x3b\\x98\\xf9\\x93\\xae\\x60\\x90\\xd8\\x52\\xbd\\xbe\\xea\\x8c\\xa9\\x16\\x1a\\x02\\x10\\x88\\xab\\x3c\\x45\\xc6\\x3c\\x65\\xf8\\x2e\\x16\\x10\\x05\\x96\\x2e\\xb6\\x11\\x42\\x95\\xad\\x88\\x49\\x25\\x2d\\x96\\x3d\\xe3\\xe2\\x78\\x62\\x02\\x0e\\xa4\\xc6\\xb8\\xda\\xcc\\x83\\x88\\x3d\\x18\\xc3\\x54\\x60\\xbd\\x21\\x6b\\x48\\xc0\\x2e\\xe7\\xaf\\x47\\x7f\\x6a\\x62\\x15\\x14\\xe1\\x7e\\xca\\x0d\\x00\\x1a\\x95\\x94\\x7d\\x6c\\x23\\x4c\\x43\\x83\\xbd\\xd1\\x10\\x71\\x52\\xb9\\x9d\\x9f\\x93\\x85\\xaf\\x30\\x86\\x0c\\x4d\\x52\\xb7\\x20\\x90\\x25\\x29\\xf8\\x6e\\xcc\\x3e\\x52\\xed\\x61\\xaa\\x2c\\x0b\\x61\\x90\\xf8\\x7c\\x70\\x88\\x63\\x17\\x49\\xcc\\xc3\\x01\\x95\\x7a\\xdd\\xe4\\x0e\\x5e\\xc3\\x92\\xe1\\xd4\\xee\\xb4\\x1d\\xa5\\xbb\\x6c\\xa6\\x83\\x15\\xf6\\x44\\xa6\\xbf\\xf5\\x6c\\x01\\x66\\x87\\x2f\\x8e\\x8f\\x19\\x9e\\x5a\\x25\\x19\\x8b\\x87\\x2e\\x17\\xab\\x48\\xcb\\x20\\x79\\x31\\x2d\\x1e\\x98\\xe0\\x9a\\xa4\\xcc\\x2c\\xcc\\xa4\\x6f\\xc8\\x78\\x3e\\xdf\\x23\\xcb\\x40\\x40\\x6e\\xb2\\x3f\\xce\\x01\\xfc\\x21\\x74\\x20\\xf5\\x82\\xa0\\x75\\xa0\\xfa\\x83\\x10\\x26\\x5c\\x83\\x9e\\x61\\xf4\\xe0\\xfe\\xd4\\x9c\\x62\\x67\\x49\\x4b\\x4b\\xcf\\x0e\\x97\\x61\\xbc\\xd2\\x78\\xae\\x8c\\x50\\x91\\x65\\x86\\x04\\x4c\\xd1\\x68\\xd4\\x62\\x32\\x51\\x20\\xe6\\x2e\\xcb\\x46\\xbc\\x0c\\x74\\x46\\xde\\x7b\\x65\\xb6\\x6a\\x0b\\x2a\\xe8\\xd7\\x49\\x2d\\xe7\\x05\\xc6\\x94\\xd0\\x86\\x4a\\x1e\\x7d\\xc5\\x5c\\x43\\x47\\x37\\xeb\\xa9\\x43\\x31\\x1b\\xe5\\x28\\x87\\x51\\x01\\xb1\\x21\\x7e\\xe9\\xc7\\xc2\\xf6\\x2d\\xf5\\x01\\xf1\\x5c\\xba\\xc0\\x74\\xa6\\xc0\\x8a\\xc6\\x53\\xa2\\xb7\\x32\\x0d\\xd7\\x44\\x27\\x51\\xa0\\x88\\x1b\\x6f\\x9b\\xd4\\x80\\x61\\xb8\\x2c\\x4b\\x42\\x80\\x62\\xb4\\xe1\\x6a\\x3d\\xd3\\xc1\\x30\\xc4\\x48\\x00\\x0d\\x36\\x30\\x15\\xfb\\x47\\x15\\x3b\\x9b\\x9c\\x07\\x34\\xdd\\xa6\\x0b\\x58\\x8c\\xa8\\xd6\\x2a\\xc5\\x37\\xe9\\x85\\x36\\xb8\\xb2\\xef\\xf2\\x7d\\x9a\\x2a\\x2a\\x2e\\xb7\\x0e\\x1e\\xdd\\x42\\xd5\\x29\\xfb\\xfe\\x3c\\xa8\\x4b\\x2b\\x3d\\x87\\xbe\\x96\\x46\\x24\\xcd\\x55\\xdb\\x59\\x4b\\xd5\\x42\\x99\\x29\\xfd\\x88\\xa8\\x21\\xc3\\x44\\x24\\xc0\\x61\\xef\\x4e\\x2b\\xab\\xf1\\x65\\x2a\\xda\\x2f\\x88\\x41\\xb7\\x2a\\x10\\x48\\x9d\\xbb\\x0c\\x9a\\xab\\xa1\\x96\\x7f\\x46\\x06\\x2f\\x0e\\xbc\\xe0\\x0d\\x8a\\x9a\\x21\\x35\\xf3\\x0e\\x6f\\x91\\x8e\\xac\\xd8\\xde\\x5d\\xe0\\xf7\\xc1\\xd9\\x4b\\x56\\xf9\\xd6\\xd7\\x0c\\xba\\x2d\\x2b\\xce\\x32\\x37\\x83\\xa3\\xad\\x47\\xb7\\x9c\\x09\\x69\\x24\\xc4\\x8e\\x69\\x8d\\x93\\xb3\\x5d\\x86\\x4d\\x4e\\x25\\x0b\\xb8\\x58\\xf5\\xde\\xec\\x32\\x22\\x09\\xba\\x78\\x8b\\x1b\\x49\\xec\\xb3\\x9b\\xeb\\x4a\\xca\\x7a\\x3e\\x95\\x03\\x5a\\x56\\x81\\x5e\\xa4\\x50\\x5e\\xfc\\x1f\\xc5\\x82\\x7b\\x93\\x5c\\xff\\xc8\\x49\\x71\\xd4\\x3b\\xe3\\x8d\\x0c\\xd3\\x91\\xf7\\x95\\x0c\\xd2\\x15\\x0a\\x2d\\xf0\\xe9\\x04\\x37\\xba\\xed\\xa8\\x41\\xd8\\x0e\\xb8\\x00\\xe8\\x24\\x03\\xf1\\x24\\xbc\\xa1\\x6f\\xa1\\x15\\x4e\\x63\\xc4\\x34\\xa2\\x5b\\x79\\xac\\x58\\xf4\\x12\\x13\\x5b\\x5c\\x31\\xb2\\x84\\x77\\x3e\\x68\\x54\\xc7\\xcc\\x43\\x52\\x95\\xd5\\x27\\xa1\\x13\\x8e\\x21\\x62\\x57\\x9c\\x7f\\x80\\x20\\x10\\xf9\\x1b\\x24\\xfe\\x50\\x99\\xa5\\x24\\xb0\\x88\\x7f\\xaa\\x7a\\x03\\x62\\x1e\\x27\\x26\\xe9\\x2c\\x5a\\x75\\x03\\x4f\\x94\\x9f\\x7a\\x87\\x87\\x9d\\x40\\x8f\\xfd\\xa3\\x35\\xcc\\xf4\\x92\\x99\\xa6\\x00\\x1d\\x2e\\x47\\x35\\xaa\\x0d\\x00\\x06\\x35\\x02\\x54\\xa3\\x87\\x6f\\xf9\\xb9\\x3f\\xf0\\x2a\\x36\\x61\\x0e\\x28\\x4d\\xe7\\x62\\x72\\x16\\xf8\\xff\\xe0\\x43\\x34\\xbb\\x8c\\x14\\x0c\\x92\\xb8\\x80\\x06\\xd4\\x14\\xbf\\x27\\x93\\xc1\\x90\\xa1\\xdc\\x48\\xb7\\x0d\\x85\\xc1\\xbb\\x88\\x19\\x62\\x51\\x0f\\x04\\xe4\\x2a\\x65\\x90\\x06\\xac\\xe1\\xb1\\x8d\\xf8\\xaa\\x06\\x37\\x07\\xfb\\x14\\xf7\\xdd\\xd0\\xb9\\x86\\x7a\\xbf\\xb0\\xfa\\x7f\\x5d\\x49\\x8b\\x8a\\xef\\xea\\x51\\xd2\\xce\\x2e\\x3c\\xb1\\x30\\xe9\\x5a\\x59\\x85\\x77\\x52\\x1d\\xbb\\xc0\\x04\\xa3\\x64\\xdb\\x17\\x42\\x5a\\x3a\\x14\\x80\\x3c\\x8d\\x99\\x13\\xda\\x2b\\xc7\\x11\\x9e\\x53\\xc7\\x8e\\xdd\\x56\\xa6\\x66\\x0b\\xa2\\xd5\\x87\\xb1\\xf6\\xc0\\xb4\\x24\\xf6\\x40\\x67\\x9d\\x48\\xad\\xb2\\xd5\\x17\\x70\\xe4\\xe2\\x1e\\xa7\\xeb\\x15\\xab\\xe3\\xe5\\x6e\\x8b\\xee\\xc7\\x00\\x83\\x4a\\x03\\xed\\x92\\x6e\\xdf\\x64\\xf9\\xa4\\x48\\x25\\x6d\\x64\\x3e\\xe1\\x60\\x28\\x14\\x19\\x16\\x37\\xd2\\x71\\x0e\\x65\\x13\\x2e\\x65\\x6e\\x4f\\x99\\x31\\xd7\\xe3\\x2d\\x3c\\x95\\x64\\xcf\\x1a\\x56\\x6f\\x03\\x33\\xfc\\x06\\x1e\\x68\\x90\\x7a\\xe0\\x15\\xd8\\xee\\x4e\\xb2\\xe7\\x75\\xa2\\x70\\x88\\x7e\\xb6\\x99\\x10\\x24\\xf4\\xa4\\xc8\\x8c\\x11\\x6c\\xc4\\x8a\\xbf\\x0c\\x2d\\x27\\x88\\x07\\x1f\\x46\\x87\\xc7\\xaf\\x20\\xa1\\xa4\\x77\\x5c\\x32\\xae\\x23\\x46\\x77\\x68\\xee\\x44\\x90\\xb1\\x05\\xf5\\xfe\\xc8\\x5a\\xc6\\xbc\\x07\\x4b\\xcd\\x2c\\xa6\\xce\\x24\\x54\\x60\\x95\\xb9\\x90\\x56\\x25\\xe1\\xd3\\x42\\x4d\\xa1\\x90\\x5f\\x35\\x3f\\x2c\\xdb\\x2b\\x21\\xef\\x24\\x9a\\x52\\xfa\\x07\\xb4\\x1f\\x49\\xad\\x7f\\xe5\\x19\\x86\\xdc\\x5b\\x26\\xc0\\x7e\\x15\\x6f\\xae\\xf9\\x3e\\xaa\\x02\\x34\\x30\\x69\\x58\\xe6\\x8c\\x73\\x49\\xe9\\x67\\x26\\xb0\\xc8\\x4f\\x6d\\xfb\\x8b\\x9f\\x05\\x74\\xbb\\x9b\\x0c\\xe0\\x21\\x07\\x5b\\x75\\x5b\\x73\\x82\\x61\\x32\\x6a\\x7a\\x06\\x66\\x8c\\xf5\\x58\\x80\\xdc\\x87\\xe5\\x2c\\x4e\\x63\\x90\\x34\\xde\\xcc\\x5e\\xe2\\x00\\x90\\x1b\\x6c\\x7c\\x06\\x68\\x75\\x91\\x27\\x61\\x85\\xbe\\x78\\xf8\\x7f\\xa9\\x9e\\x73\\xf3\\x73\\x56\\xab\\xc2\\x37\\x67\\x04\\xb8\\x2e\\xfb\\x30\\x69\\x72\\xb4\\xc9\\x0a\\x34\\x9f\\x0b\\x6b\\x0e\\x29\\x5e\\xe6\\x6c\\x2e\\xee\\x42\\xa6\\xa0\\x60\\xdf\\x55\\x9b\\x4f\\x65\\xd0\\x05\\x6b\\x80\\x1b\\x69\\x03\\xf2\\xa8\\xb9\\xa3\\x2d\\x2f\\x88\\xf5\\xc2\\xb0\\x09\\x14\\x1c\\x9a\\x8b\\x8c\\x37\\xd4\\xee\\x53\\x0a\\x25\\xd6\\xf6\\x6d\\xd0\\x31\\x8a\\xbf\\xc6\\x30\\x04\\xe2\\xb2\\x92\\x75\\xf0\\xc0\\xd2\\xb5\\xe0\\xc1\\x10\\x3d\\x8d\\xca\\xa9\\xce\\x1e\\xf5\\x15\\x38\\xbb\\x9e\\x93\\x94\\x3b\\x51\\xc5\\xd3\\x32\\xb0\\xd5\\xb1\\x53\\xb7\\x8a\\x16\\x04\\xad\\x05\\x07\\xfb\\x74\\x31\\x55\\x98\\xd8\\x4a\\x6e\\x64\\x09\\x17\\x32\\x1c\\xe3\\xea\\x89\\x31\\xd9\\x89\\xc4\\x41\\x74\\xe5\\x34\\x66\\xc9\\x63\\x1e\\x27\\x64\\x89\\x68\\xdd\\x79\\x65\\x50\\x8d\\xda\\x3b\\xec\\x39\\xe4\\x5d\\x9f\\x9c\\x50\\x12\\x74\\xf0\\xa6\\x3c\\xc1\\x3d\\x26\\x71\\x88\\x3a\\xdb\\xfc\\x44\\x56\\x72\\x8c\\x01\\xa9\\xa3\\x0d\\xcb\\x4d\\x05\\x08\\xcf\\x4b\\x49\\x58\\x4c\\x3c\\x39\\x18\\x11\\x1c\\xba\\x3b\\xa0\\xa3\\x29\\xeb\\xc3\\x53\\x19\\xf4\\x78\\x9d\\x71\\xfb\\x0a\\x02\\x06\\xfe\\x23\\x04\\x9c\\x6b\\x44\\x7e\\x01\\x36\\x4e\\x5e\\xc9\\xf4\\x18\\xff\\x08\\xfc\\x46\\xd1\\x44\\x68\\xf2\\x10\\x6e\\x6d\\x38\\x75\\x3d\\x1a\\x1b\\x61\\x3e\\xb4\\x4d\\xf4\\xd1\\xca\\x21\\x74\\x58\\x27\\x78\\x15\\x94\\x9b\\x87\\x6d\\xdd\\x78\\x4e\\x80\\x5a\\x07\\xeb\\x84\\xdc\\xec\\x51\\xa7\\x9a\\x40\\xe0\\x01\\x4b\\xf5\\xe7\\x0b\\x09\\x52\\xd5\\x2a\\x96\\x79\\x42\\x59\\x14\\xec\\xe9\\x8a\\x00\\x2c\\x22\\x19\\xb3\\x87\\x5a\\x93\\x21\\x51\\x48\\x50\\x15\\x3f\\xc3\\xba\\xa5\\x2c\\x49\\x74\\x63\\xe6\\xa4\\x66\\x43\\x58\\x7b\\x22\\x27\\x6e\\xa0\\x87\\x36\\xfb\\x33\\x86\\xd2\\x1f\\xf2\\x1a\\x03\\x86\\xbe\\x92\\xc4\\x9f\\xa5\\xef\\xd6\\x31\\x53\\x32\\x16\\xd4\\xb2\\x09\\xb7\\xff\\xa8\\x61\\xad\\xb4\\xf9\\x62\\x45\\x28\\x56\\x62\\x1b\\xbc\\x61\\x80\\xc4\\xf1\\x41\\xd9\\xc6\\x08\\x82\\x3b\\xd0\\x59\\x11\\x21\\xb7\\x62\\x07\\x3d\\x06\\xde\\x84\\xf2\\x49\\xd2\\x23\\x1c\\xae\\x0e\\xaa\\x38\\x7a\\xf9\\x9c\\x3c\\xbd\\x98\\xcc\\x4a\\x0f\\x4e\\x7e\\x09\\xd0\\x5e\\x24\\x89\\x30\\xc5\\x9e\\xf5\\xd5\\x15\\x51\\xac\\x18\\x2a\\x25\\x4f\\xee\\x1c\\xcf\\xd0\\x90\\x8d\\x0c\\xd6\\x2e\\x48\\xee\\x10\\x81\\xc5\\xc8\\x5f\\x38\\x83\\x9f\\xd6\\x86\\x32\\x34\\x78\\x17\\x70\\x4f\\xe8\\x58\\xc9\\x0c\\x84\\x0c\\x6a\\x77\\x49\\x7a\\x9b\\xea\\x5c\\x5e\\xf9\\x99\\x88\\x3e\\xf0\\x81\\x05\\xed\\x93\\x70\\x40\\xad\\xe1\\x67\\x05\\x63\\x21\\x7f\\x00\\xbd\\x4d\\x33\\xa9\\x93\\x4c\\xc6\\xdb\\x79\\x8b\\x30\\xe4\\x30\\xf8\\x51\\xa8\\xb3\\x47\\xe8\\x5a\\x06\\x98\\xcb\\xa5\\xd8\\x6f\\xb6\\x1c\\xd9\\x83\\x81\\x72\\x60\\x8d\\x03\\x3c\\x49\\x80\\xbf\\xbc\\x2d\\xc9\\xe1\\xcd\\x77\\x1b\\x5f\\xa8\\xf5\\x03\\x4a\\x95\\x8f\\x0d\\xe6\\x1a\\x02\\x6b\\x70\\xb4\\x9c\\xb0\\x70\\xd1\\xce\\x51\\x51\\x57\\xaf\\xf1\\xa9\\xe9\\x16\\x44\\xc5\\x6b\\xaa\\xb1\\x86\\x6e\\x3d\\x87\\x80\\xb2\\x20\\x33\\x46\\x92\\xc5\\x75\\x25\\x72\\xca\\x21\\x2a\\xd8\\xfa\\x7b\\x9b\\x2e\\x85\\x4f\\xa1\\x2a\\xc2\\x9c\\x66\\xae\\xb5\\x81\\xc0\\x4d\\x3e\\x65\\xc0\\x68\\xf1\\xd2\\x4e\\x30\\x17\\x4f\\xa4\\x50\\x3e\\x8c\\x76\\x50\\x45\\x41\\x6a\\x80\\x65\\x09\\x92\\x3a\\x8c\\xcb\\x69\\x2d\\x22\\x1c\\xff\\x26\\xe4\\xd0\\xeb\\xaa\\x83\\xc0\\xaa\\x79\\xda\\xb0\\x30\\x38\\xa7\\x6e\\x1e\\x36\\x5c\\xf1\\x2a\\xfa\\x21\\x60\\x4f\\x94\\xfc\\xc6\\x61\\x27\\x21\\x62\\x5d\\xb6\\x50\\xb9\\x11\\x30\\x11\\x48\\xd0\\x1d\\xc6\\x88\\xdc\\x3f\\x73\\x0a\\xe6\\x50\\xc0\\x86\\x77\\x77\\x79\\x21\\xe3\\x18\\x50\\x4c\\xa1\\x39\\x84\\x85\\x6d\\xca\\x65\\xd4\\x0e\\x8c\\xba\\xbf\\x14\\x37\\x66\\x5a\\x23\\x0b\\x5c\\xc3\\xc8\\x96\\x57\\x7f\\x22\\xd8\\x1e\\x44\\x0b\\x39\\xdb\\xf8\\x72\\xef\\x2a\\x1d\\x31\\xac\\x15\\x1d\\x88\\x83\\xed\\x3d\\xf5\\x24\\x5a\\x63\\xd4\\xdb\\xd7\\x19\\x65\\xe2\\xc2\\x68\\x6a\\x5d\\x71\\x33\\x2c\\x3c\\x29\\x12\\x4a\\x3d\\x0a\\x22\\xa4\\x6b\\xa3\\xb5\\xf3\\x94\\x71\\x4e\\x61\\x96\\xc2\\xd0\\x6c\\xd5\\x69\\x61\\x44\\x03\\x22\\x14\\x35\\x25\\xd5\\x35\\x72\\xc8\\x29\\x9c\\x47\\x7b\\x83\\xa1\\xa7\\x02\\xa4\\xb1\\x15\\x52\\x86\\xab\\x42\\xff\\x58\\x42\\x32\\xff\\x78\\x34\\xd3\\x83\\xa7\\x4d\\x59\\xca\\x29\\x84\\x4c\\x83\\x27\\x9d\\xa4\\xd1\\x4c\\x33\\x00\\x80\\x76\\xa9\\xef\\xc0\\x4d\\x91\\x11\\xef\\x93\\x37\\x3e\\x36\\xb9\\x0f\\x64\\x1d\\x1c\\xe4\\x6a\\x6f\\xb7\\xd8\\xfc\\x5f\\x2c\\x18\\x29\\x87\\xf4\\x83\\x1e\\x47\\x2e\\x64\\x92\\x44\\xbe\\x38\\x3b\\x52\\x25\\x6c\\x56\\x85\\x1d\\x65\\xa0\\x87\\xc6\\xb3\\x17\\x37\\x5c\\x7f\\x4a\\xc8\\xc2\\xa0\\xc8\\x40\\xe3\\xce\\xb6\\x94\\xf0\\xba\\x44\\x1c\\x08\\x5e\\xca\\x7c\\x49\\xc6\\x49\\x91\\x4a\\x31\\x71\\x14\\x7a\\x16\\xdf\\xc8\\x72\\xbe\\x5d\\xc1\\x68\\x17\\x55\\xdb\\x34\\x89\\x93\\x42\\x76\\xb5\\xef\\xea\\x8b\\x1b\\x48\\x7b\\x68\\xa1\\x77\\x16\\xba\\xeb\\x7f\\xa1\\x3d\\xbd\\x27\\xca\\x8f\\x9c\\x15\\x2b\\x4e\\x87\\xd0\\x83\\x35\\x85\\x8b\\xe2\\x4d\\x7a\\x3a\\x81\\x2c\\x79\\x5e\\xbe\\xd4\\x0f\\xcf\\x7c\\xc2\\x1b\\x42\\x8c\\x21\\x53\\x0b\\x1c\\x11\\x4d\\x00\\xcd\\x7d\\x35\\x45\\x00\\x92\\x5a\\xaf\\xf4\\x80\\x2d\\x03\\xe0\\xf3\\xd9\\x21\\x99\\x90\\x47\\x83\\x27\\xb8\\xa7\\x60\\x3f\\x94\\x4d\\x24\\xdf\\x85\\xb4\\x96\\x19\\xf1\\x8f\\xcd\\xec\\xbf\\x31\\x89\\x35\\x93\\x02\\xaf\\x00\\x39\\xd7\\xe8\\x8f\\x05\\xa3\\x53\\x61\\x8f\\x03\\x38\\xbd\\x8f\\xd7\\x00\\xb2\\xaa\\xd1\\x8f\\x7c\\xaa\\x1d\\x29\\xf5\\x3c\\x58\\x44\\x74\\xd1\\x35\\xe6\\x4c\\x90\\x4f\\x06\\x86\\xb9\\xd9\\x53\\x70\\xf8\\xc7\\xc5\\xc3\\xc2\\xd9\\xa6\\x6c\\x08\\x32\\x59\\xf2\\x11\\x1f\\x11\\x21\\xac\\x34\\xc6\\x88\\xbc\\x32\\x9a\\x8d\\xca\\x89\\x0f\\x11\\x7a\\x8d\\x01\\x2a\\x3e\\x08\\x4f\\xb2\\x31\\x0f\\xfd\\x5e\\x42\\xa3\\x05\\xb8\\x37\\x55\\x32\\xc9\\x18\\x9b\\x5a\\x83\\xcf\\xe8\\xd7\\xcf\\xbd\\x7c\\xd7\\x66\\x6f\\x6c\\xc9\\x19\\x1b\\xb8\\xb8\\x7e\\xc7\\x32\\xc7\\xfd\\x5e\\x90\\xf2\\x61\\xbe\\x54\\xe7\\x32\\xfd\\x0e\\x15\\x62\\x5b\\x95\\x18\\x25\\xd6\\x01\\xa1\\x4a\\x4e\\x4c\\x1d\\xca\\x1e\\x07\\x5d\\x61\\xa0\\x15\\x93\\xaf\\x8c\\xc8\\x83\\xd5\\x83\\x6d\\xc5\\x2a\\xee\\x84\\xf6\\xae\\xfb\\x29\\x2f\\x72\\x52\\x54\\x1b\\x72\\x21\\x3a\\xf4\\x85\\x46\\xe9\\x19\\x29\\x56\\x48\\x58\\x77\\x01\\x5f\\x07\\xa7\\xd5\\x70\\x12\\xae\\x5f\\x61\\x69\\x77\\xe7\\x4e\\xd1\\x15\\xbb\\x1e\\x42\\x18\\xd8\\x2b\\xc6\\x68\\x21\\xc6\\x95\\x44\\x96\\xb8\\xa2\\xf4\\x45\\xed\\x7c\\xd0\\x11\\x48\\x96\\x41\\xd9\\xc5\\xa0\\xc9\\x73\\xf2\\xa4\\xd0\\x8f\\xae\\x28\\x89\\x05\\xf7\\xc6\\x03\\xfd\\x19\\x92\\x16\\x08\\x10\\x3e\\xc4\\xa3\\x5b\\xae\\x3d\\x09\\xb2\\xa3\\x2e\\xa2\\x37\\x14\\x27\\x52\\x16\\xc7\\xa6\\x23\\xb9\\x2d\\x42\\x15\\xb6\\x04\\xd1\\x61\\xa0\\xb4\\x20\\x46\\x92\\x05\\x07\\x8a\\xeb\\xdd\\x09\\xf6\\xe5\\xf8\\x3a\\x4d\\x94\\xb3\\x29\\x84\\x32\\x37\\x18\\x91\\xe5\\xad\\x42\\xfc\\xe5\\x0d\\x08\\x32\\x0d\\xed\\x53\\x3c\\x15\\xe2\\x89\\x43\\x68\\x45\\x7f\\x2d\\x6c\\x9d\\x5d\\x39\\x10\\x06\\x20\\xda\\x67\\x92\\x94\\x81\\x08\\x79\\xed\\x6e\\x22\\x60\\x1c\\x40\\x14\\x92\\x28\\xd6\\x5d\\x75\\x1d\\x96\\x1d\\x3a\\x22\\xb8\\x9e\\x00\\xdd\\xdb\\x48\\xc5\\xac\\xb1\\xf3\\xc4\\xbf\\xbf\\x09\\x12\\xcd\\x66\\x26\\xb9\\x18\\xe1\\x72\\x8e\\xf9\\x5c\\xe6\\x74\\x47\\x52\\x74\\xaf\\x95\\x9b\\x5f\\xa2\\xcd\\x6c\\xa4\\xa7\\x51\\x67\\x10\\x9b\\x9d\\x2c\\xd1\\x20\\x52\\x3f\\x97\\x99\\x7c\\xe9\\xb3\\xa6\\x40\\x57\\x0c\\x7f\\x40\\x3d\\x01\\xcc\\xd6\\x09\\x24\\x13\\xe7\\x12\\x06\\x8d\\xba\\x89\\x39\\xac\\xa7\\xbf\\x60\\x8a\\xa7\\x2c\\x95\\x16\\x71\\x34\\x9c\\x09\\x7f\\xe1\\x2a\\x85\\xb9\\x11\\x24\\x08\\xf6\\x6e\\x16\\x20\\x3f\\xd4\\x70\\xd3\\x60\\x8c\\xd0\\x16\\x64\\x23\\x12\\x71\\xdc\\x2c\\x60\\x36\\x99\\xe0\\x43\\x24\\x39\\xf3\\x1d\\xcd\\x0d\\x4d\\xab\\xc7\\xfd\\xff\\x58\\x78\\x27\\x10\\x3a\\x4f\\x42\\x31\\x66\\xb2\\xb7\\x70\\xf4\\x87\\x7a\\x7f\\xb0\\x21\\x71\\x1e\\x89\\xd5\\x07\\x34\\x3f\\x0e\\x15\\xf0\\x75\\x47\\x2d\\x7b\\xc6\\x22\\xc7\\x3b\\x57\\x4e\\x6c\\xe5\\x0e\\x71\\x5a\\x58\\xe0\\x8e\\x3e\\xe9\\xc1\\xad\\xec\\x78\\xff\\x54\\x46\\xb0\\xcf\\x28\\xc9\\xf3\\x25\\x2a\\x9d\\x8c\\xfc\\x99\\xc9\\x8b\\x34\\x1a\\x82\\xa7\\x4b\\xab\\x52\\x71\\x03\\x3b\\x57\\x79\\x28\\x1c\\x7c\\xe0\\x16\\xfa\\x35\\x80\\x59\\xd4\\x09\\x0d\\xd0\\x90\\xb2\\x9d\\x1f\\x41\\xc2\\x4b\\xb1\\x1d\\x2a\\xaa\\x27\\xb3\\xf1\\x13\\xe5\\xb6\\xbd\\x1f\\x96\\xb7\\xe4\\x8b\\x8a\\x1b\\x4e\\x86\\x9d\\x83\\x8a\\x33\\x3d\\x8e\\x65\\x9a\\xb6\\x86\\x92\\x88\\xdd\\xc8\\x70\\x14\\x4b\\xdf\\x24\\xfa\\xaa\\x05\\x9e\\xab\\xd3\\x1b\\x27\\x37\\x53\\xe6\\xc3\\x3a\\x8c\\xfd\\x14\\x36\\x5c\\xcf\\x5f\\x6b\\x06\\xd6\\x6a\\xfc\\x78\\xfc\\xc2\\x7b\\xd2\\x92\\x31\\xfc\\xc8\\xd3\\x96\\xbf\\x72\\x29\\x3e\\xa0\\x1e\\xe0\\x1f\\x51\\x93\\x8b\\x63\\x0a\\x0d\\xca\\xbd\\x18\\xda\\xbc\\x81\\x9e\\x1a\\x1a\\x09\\x29\\x89\\x12\\xe2\\x21\\x9a\\x0b\\xe4\\xc6\\x38\\x9e\\xd8\\x19\\x12\\x2c\\x08\\xb1\\x11\\xb8\\x20\\xe2\\xf0\\x47\\xa9\\x43\\x9a\\x24\\x68\\xf0\\x90\\xaa\\x20\\xb0\\x13\\x3b\\x2d\\xda\\x7b\\x5d\\x2a\\xe8\\x49\\x2d\\xc8\\xa7\\x7e\\x96\\x5a\\x70\\x98\\xc8\\x83\\x59\\x27\\x6a\\xe6\\x9f\\x6c\\xc9\\x51\\xc9\\x90\\xa0\\xcf\\x07\\x00\\x35\\x62\\x25\\x84\\xda\\x4c\\x41\\xf0\\x75\\x1d\\xe1\\x6d\\xe2\\x26\\xc4\\x70\\x78\\x42\\xc0\\x2b\\x4f\\x20\\x05\\xf0\\xd4\\x6a\\x09\\x02\\x0f\\x02\\xdf\\xe0\\xd8\\x8f\\xe0\\xbc\\x09\\x30\\xe8\\x35\\x52\\xfc\\x63\\x8c\\x3d\\xc1\\xdc\\x1f\\x31\\xf2\\x9c\\x62\\x36\\x2a\\x41\\xc8\\xb4\\x7a\\x41\\xc8\\x45\\x63\\xd8\\x1b\\x73\\x6b\\xab\\x6f\\x59\\x16\\x53\\x81\\x65\\x10\\xd7\\x26\\xce\\xc3\\x16\\x5a\\x06\\x95\\xde\\x21\\x91\\xba\\x00\\x09\\x16\\x6e\\x08\\x88\\xb3\\xd2\\x39\\x78\\x53\\x25\\x88\\xaa\\x61\\x2d\\x5b\\x0c\\x8b\\x05\\x6f\\xd3\\x28\\xc1\\xec\\xa8\\x00\\x30\\xa4\\xe8\\xfc\\xf6\\x0a\\x60\\x18\\x5a\\x88\\x3c\\xf5\\x20\\x88\\x94\\x0c\\x2b\\xac\\xd5\\x12\\xf2\\xb2\\xb0\\xac\\x44\\x00\\x40\\x3b\\x89\\x7d\\x40\\x74\\x99\\x65\\xf1\\xf7\\xe0\\x01\\xd8\\x13\\x88\\xb8\\x41\\x10\\x1a\\x52\\x57\\x4e\\xf4\\x38\\x29\\x82\\xc8\\x16\\xd2\\x05\\xea\\x00\\x10\\x07\\x02\\xc3\\x3c\\x97\\x92\\x69\\x71\\x11\\xea\\x2f\\xa2\\xc3\\x0d\\x88\\x9d\\xb8\\x55\\xf9\\xa4\\x5c\\x63\\xdc\\x6a\\x9c\\x22\\xa0\\x8d\\xa0\\x2e\\xe5\\xff\\x88\\xb6\\x29\\xaa\\x17\\x40\\x69\\x81\\x6b\\x49\\x0f\\x81\\x1a\\xb0\\x10\\x13\\x63\\x56\\x0b\\x2b\\xad\\x0b\\x6c\\x9b\\xde\\x52\\xc7\\x6b\\xe3\\x55\\x5b\\x96\\x11\\xdd\\x57\\xc1\\xa8\\x14\\x18\\x3a\\x00\\x65\\xb9\\xd5\\x93\\xfe\\x86\\xeb\\x3e\\xa4\\x44\\x49\\x98\\x3d\\xb6\\x26\\x42\\x85\\xa5\\x90\\xe0\\x97\\xd2\\x6e\\x37\\xfc\\x0d\\x05\\x0e\\x9a\\x0c\\xc2\\x60\\x8f\\xec\\x89\\x80\\x4c\\x93\\x08\\xa4\\x47\\x4d\\x7d\\x44\\x7d\\x7c\\x58\\x34\\xd0\\x60\\x46\\xbe\\x9d\\xe1\\xb6\\xda\\x91\\xe6\\x19\\x5d\\x3e\\x4c\\x8b\\x96\\xc4\\x40\\x7e\\x7c\\x27\\x40\\x32\\xd9\\x81\\x61\\x63\\x85\\xa0\\xf4\\x93\\x8d\\xc2\\x63\\xd5\\x83\\xd0\\x46\\x42\\xf9\\x5d\\x2f\\x5b\\xc4\\x82\\x41\\xf5\\x5a\\x65\\x0d\\xcb\\x8c\\x7b\\x12\\xf5\\xe6\\x42\\x9a\\x18\\x14\\x46\\xc5\\x16\\x97\\x25\\xd8\\xc4\\x77\\x66\\xf3\\xda\\x75\\xe4\\x3d\\x8b\\x49\\x6e\\xc7\\x80\\x82\\xeb\\xd8\\x6d\\x84\\x3f\\xed\\x79\\x21\\x5e\\xbc\\xae\\x91\\x1d\\xdb\\x56\\x93\\xf6\\xd0\\xc0\\x48\\xc9\\x8a\\xe1\\xe0\\x1a\\x78\\x89\\xaa\\x04\\xe9\\x79\\xc9\\xf2\\xd0\\x85\\x78\\xe2\\x16\\x5a\\x80\\x7b\\x27\\x88\\x9a\\xbe\\x8e\\x3a\\x67\\x46\\x7c\\xc4\\x48\\x2b\\x02\\x7f\\xa8\\x1d\\x92\\x10\\xd1\\x58\\x6d\\x3d\\xfe\\x40\\xa8\\x96\\xf9\\x0a\\x72\\xe0\\x88\\xd1\\xd7\\x07\\x1a\\x42\\xe8\\x8d\\xf1\\x21\\xdd\\x1e\\x9c\\x63\\x64\\x4d\\x91\\xf1\\x00\\xf3\\x15\\x45\\xae\\x7e\\xd7\\xb9\\x97\\x9b\\x27\\xbe\\x42\\xad\\x08\\x33\\x82\\xd1\\x50\\xdf\\x04\\xc2\\x87\\x90\\x10\\x4f\\x73\\xb0\\x7f\\x8d\\x90\\x86\\xaf\\x4f\\x0c\\xa0\\xec\\x29\\xa3\\x7e\\x5b\\x8b\\xf5\\x74\\xb3\\x48\\x9b\\x98\\x7e\\x3d\\x2d\\xa4\\x7c\\x88\\x6a\\xa6\\xd2\\xbd\\xb3\\xbe\\x7f\\x57\\x5c\\xa7\\xb9\\x23\\xe0\\x22\\xf2\\xfc\\x5b\\xa5\\xc2\\x0a\\xd9\\x5f\\x3c\\xee\\x49\\x0b\\x91\\xb7\\x15\\x32\\xc5\\x94\\xc3\\x8d\\xdf\\xb9\\x52\\xdb\\x44\\xb3\\x4b\\x16\\x8a\\x76\\x09\\x2b\\x15\\xe9\\x04\\x81\\xcc\\x20\\x23\\x74\\x66\\xa3\\x78\\xd1\\xd2\\x19\\x53\\xa2\\xa4\\x3c\\x5c\\x15\\x98\\x95\\x23\\x25\\x2d\\x25\\xd3\\xdf\\xc1\\xec\\xfe\\x05\\x7a\\xac\\x88\\xa3\\xdc\\xfe\\xf7\\x26\\x2c\\xd6\\x58\\x52\\x53\\xaa\\x7f\\xff\\xb0\\x0a\\x95\\x47\\x80\\x7e\\xcf\\x50\\x9e\\x2c\\x0c\\xa1\\xe8\\xa2\\x11\\x86\\x03\\x72\\x01\\x6f\\x26\\x09\\x41\\x1c\\xfe\\x7f\\x66\\x0f\\xec\\x10\\x8c\\x7c\\xc2\\x11\\x67\\x24\\x42\\x48\\x9c\\xc8\\x5d\\x0f\\x48\\x96\\x24\\x82\\x11\\x1b\\x76\\x42\\x56\\x64\\xa9\\xee\\xca\\xe2\\x79\\x8d\\x17\\x23\\xad\\x9b\\x0e\\xfa\\x2d\\xd4\\x8b\\x14\\x8a\\x8a\\x58\\xb8\\xa0\\x3a\\x71\\x5e\\xc0\\x7f\\x3d\\x24\\x41\\xd4\\x18\\xa9\\x79\\xf0\\x05\\x55\\x93\\x67\\xfc\\xac\\xe9\\xdc\\x77\\xad\\xc0\\xbf\\x40\\x9c\\xc0\\x02\\xed\\x1d\\x46\\xc2\\xac\\xcd\\x1c\\x6c\\x01\\x3e\\x84\\xca\\xfe\\xb3\\x40\\x71\\xce\\xf6\\x82\\xaa\\xe6\\x54\\x00\\x67\\xc8\\xca\\xd1\\x3a\\x87\\x03\\x8e\\xf2\\xdc\\x14\\xcb\\x4c\\x92\\x26\\x04\\xa0\\xe0\\xbd\\xde\\x69\\xb8\\x68\\xce\\x69\\x08\\x03\\xa8\\x2b\\x22\\xd7\\x6a\\x02\\xd5\\x41\\x13\\xf9\\xc2\\x2d\\x00\\xba\\xe3\\x00\\xf7\\x06\\x54\\x5b\\x1b\\xb6\\x5f\\x2e\\xde\\x5c\\x28\\x31\\xd1\\xd6\\x3f\\x2d\\x98\\x00\\x06\\x70\\x07\\x9a\\xcc\\x2c\\x91\\x74\\x9c\\x48\\x2f\\x66\\x57\\xba\\x19\\xa5\\x65\\x9e\\xb8\\x6d\\x71\\x57\\xa4\\xf8\\x3a\\x8d\\xaa\\x83\\x97\\x55\\xab\\x34\\xd4\\xc8\\xd5\\x40\\x3d\\xd7\\xe2\\xd3\\x16\\x2f\\xa2\\x79\\xb3\\x54\\x91\\x00\\xc1\\xef\\x4d\\xdd\\xd7\\xa8\\x97\\x4a\\x57\\x77\\xb7\\x7a\\x2e\\xb9\\xa8\\x50\\xaa\\xc1\\x4d\\x55\\x65\\x0a\\x46\\xdb\\x59\\x21\\x32\\x32\\x32\\x3b\\xc6\\x6d\\x61\\x70\\x49\\x1e\\x09\\xbb\\x47\\xa4\\x1a\\x66\\x26\\x4c\\x4c\\xc1\\x38\\xd9\\x28\\xcc\\x04\\x81\\x25\\xeb\\x20\\x9a\\x07\\x9b\\xc5\\xd6\\x01\\x14\\x99\\xde\\xbf\\xa3\\x0f\\x25\\xe4\\x78\\xe1\\xbc\\xc7\\x55\\xc9\\x44\\xa1\\xc8\\xb8\\x19\\x70\\x40\\x1e\\x80\\x90\\x12\\x53\\x10\\xff\\x08\\x81\\x54\\xa6\\xe3\\x2e\\x38\\x4b\\x75\\xec\\x82\\xa7\\x08\\x52\\x45\\x70\\xbd\\x1d\\x86\\x9c\\x2a\\x79\\x6a\\xc3\\xf8\\x70\\x11\\xc7\\x10\\xe4\\x7d\\x95\\x79\\x04\\x67\\x39\\x88\\x86\\xc0\\x2e\\x4b\\xad\\xe3\\x05\\xcd\\x61\\x17\\x18\\xde\\x07\\x5c\\x06\\xe1\\x22\\x63\\xa9\\xea\\x1e\\x80\\xc9\\x4e\\xd8\\x1c\\x2e\\xd4\\x1b\\x10\\x17\\x47\\xc9\\xcc\\x3f\\x2a\\xa1\\xf4\\xcc\\x72\\x98\\x50\\x20\\xba\\x89\\x80\\xf2\\xc1\\xb8\\x77\\xd8\\x83\\xcf\\x3b\\x90\\x35\\xea\\xd4\\x1e\\x72\\x14\\x29\\xc6\\xec\\xc3\\xa4\\xae\\x5f\\x55\\x46\\xb9\\x8f\\x7a\\xa0\\x21\\x6f\\x67\\x5c\\x32\\xee\\x03\\x4c\\x66\\xd9\\x70\\x30\\xde\\x70\\x26\\xf0\\x6c\\xaf\\x9a\\xa6\\x5d\\x46\\x76\\x62\\x89\\xb4\\x15\\x83\\xaa\\x9a\\x96\\x98\\xf2\\x2a\\x12\\xef\\x23\\x70\\xdb\\x1a\\x33\\x3e\\x27\\x4e\\x91\\xb9\\xa1\\x15\\xd3\\x06\\x41\\x48\\x76\\xe2\\x73\\xaa\\x26\\x8a\\xe7\\xb1\\x86\\xe0\\x9e\\x85\\x4d\\x87\\x2c\\x92\\x73\\x45\\xf4\\xed\\xde\\x30\\x60\\xb1\\x31\\x69\\x90\\x63\\x74\\xc8\\x39\\x90\\x6e\\xfc\\x16\\x77\\x0b\\x83\\xd7\\x29\\x23\\x1a\\x62\\x14\\xab\\x47\\x21\\xda\\x45\\x53\\x88\\x4b\\xba\\x98\\x67\\xd3\\x59\\x86\\x80\\xc9\\x0a\\xc0\\x6d\\xef\\xd8\\x89\\xa8\\x50\\x68\\x91\\x75\\x04\\xdb\\x99\\x92\\xb6\\x37\\x46\\x70\\xbb\\x04\\x48\\xaf\\x7b\\x80\\x44\\xc5\\x2f\\x89\\x26\\x57\\x30\\xd9\\x24\\xd0\\x24\\xfa\\xcb\\xa6\\xda\\x59\\x99\\xd1\\xcd\\x19\\x6a\\xea\\xef\\xd9\\x52\\x4b\\x56\\x52\\x14\\x56\\x02\\x51\\x81\\x34\\x31\\x64\\x37\\x1d\\x11\\x0c\\xd7\\x49\\x87\\x8f\\x82\\xc8\\x55\\xe2\\x9d\\x53\\x3d\\x4a\\x03\\x3f\\x32\\xfc\\x30\\xae\\xc1\\x89\\x51\\xc9\\x85\\x8c\\xe1\\xf8\\xf6\\x72\\x0c\\x90\\xae\\x47\\x3f\\xda\\x6f\\x50\\x19\\xa7\\x25\\x71\\xc6\\x10\\x97\\x20\\xb0\\x34\\xf7\\x87\\x0b\\xe0\\x0e\\x86\\xb3\\xbf\\xa0\\xbc\\xbe\\xb0\\x1e\\xed\\x4d\\x2a\\xee\\x11\\xfb\\x03\\xb6\\x8b\\x50\\x64\\x0d\\x89\\x38\\xa4\\x9d\\xe6\\xe3\\x25\\x7c\\x57\\x10\\xc3\\xb5\\x75\\x5d\\x9c\\xba\\x0d\\x44\\xc5\\x43\\x88\\x06\\xad\\x90\\xfa\\xdf\\xa2\\xc0\\x78\\x12\\x35\\xf4\\x4a\\x6d\\x1e\\xac\\x3a\\xf8\\xab\\x61\\x4d\\x8e\\x80\\xe8\\x13\\xbe\\x88\\xd5\\x64\\xdf\\xc6\\x6a\\xbe\\x71\\xe9\\x93\\x8e\\x5a\\x3c\\x88\\x93\\x15\\x5b\\xff\\x94\\x2e\\xfd\\x22\\x90\\x6c\\x97\\x66\\xc8\\xae\\x91\\x85\\x31\\xe4\\xb5\\xbb\\x5a\\x55\\x71\\x5c\\x01\\x9f\\xd7\\x10\\xdf\\x6b\\x3b\\x17\\x84\\x29\\x4d\\xdf\\x78\\xdd\\xdc\\xca\\x85\\x7e\\x19\\xce\\x8e\\xb2\\xc0\\x1a\\xf3\\x4c\\x1f\\xd1\\xdc\\xbd\\x4d\\xdb\\x0e\\x7c\\x65\\x82\\xad\\x24\\xfe\\xea\\x9b\\xe1\\x20\\x05\\xbe\\x5a\\x8c\\x34\\xd6\\x03\\x05\\xa0\\x09\\xb6\\x96\\x69\\x5e\\x67\\xcb\\x04\\xf6\\x9e\\xfc\\x35\\x9c\\xaf\\xb6\\xdc\\x43\\xb6\\xd9\\xf9\\xb0\\x89\\xf7\\xe5\\xe4\\xd4\\xf2\\x84\\xe0\\x9a\\xcd\\x2b\\xc2\\x46\\x13\\xcb\\xab\\x46\\x28\\x48\\x77\\x30\\x46\\xfa\\x34\\x55\\x24\\x2c\\x6f\\x86\\x88\\x74\\x18\\x02\\x6a\\xd7\\xc1\\x02\\x54\\xb2\\xd4\\x61\\xbb\\x1c\\x60\\x96\\x2b\\xc6\\xf6\\x76\\x42\\xd8\\x78\\xb6\\xae\\xa0\\xf7\\x45\\xf4\\xd5\\x54\\x61\\xb6\\x8c\\x16\\xe8\\xb7\\x26\\x3f\\x4d\\xf7\\x6c\\x2d\\x2d\\x45\\xc0\\x3d\\xa2\\xdb\\xf5\\x69\\x0a\\xda\\x73\\x3c\\xd3\\xad\\x10\\x38\\x5c\\x9c\\x24\\xb7\\x1f\\xa9\\xef\\xa0\\x4c\\x07\\x07\\x1f\\x50\\x64\\x41\\x02\\xf1\\xdc\\x42\\x3c\\x63\\x00\\xbe\\x36\\xc5\\xaa\\x32\\x12\\x62\\x59\\xff\\x33\\x65\\xe0\\xc7\\xf8\\xfb\\x12\\xf5\\x95\\x7b\\x11\\xd8\\x31\\x5b\\x90\\xab\\xf8\\x36\\xc5\\xe3\\x30\\x26\\xca\\x70\\x42\\x70\\xc1\\x1a\\xf8\\x42\\xbc\\xdd\\x43\\xe3\\x31\\x7c\\x42\\x76\\xe8\\xd5\\x25\\xca\\xa0\\x80\\x30\\x7b\\xee\\xab\\xf1\\xa8\\x40\\xe3\\x41\\xb0\\x5a\\x64\\x82\\xf0\\x90\\xc7\\x5a\\x31\\x89\\x41\\x5e\\x98\\x0e\\x01\\x57\\x6b\\x7f\\x34\\xf9\\x0c\\x42\\xea\\x6d\\x0b\\x05\\xc5\\xef\\x25\\xe2\\x44\\x2d\\x58\\x25\\x80\\x7d\\x4b\\x2d\\xab\\x18\\x36\\x6d\\xf4\\x94\\x25\\x9d\\xdc\\x22\\x8c\\x5f\\x93\\xb6\\x2c\\xf6\\x10\\x80\\x73\\x60\\x57\\xe9\\xf0\\x44\\x5f\\xc8\\x97\\xef\\xa8\\x18\\x41\\x94\\x9c\\xb1\\xd3\\x56\\x21\\xad\\x08\\xba\\x8f\\xd6\\xd9\\xe6\\x9f\\x72\\x26\\xaa\\x44\\xcc\\x3d\\xd7\\x34\\x09\\xe6\\x38\\x3f\\xb6\\xf2\\x20\\x00\\xd5\\x5b\\x16\\x33\\xca\\x27\\x22\\x9f\\xb0\\x05\\xf5\\xe2\\x56\\x7c\\x87\\xb1\\x6d\\x41\\x98\\x47\\xfc\\x45\\xf4\\xcd\\x3d\\x07\\x8a\\x9e\\xc8\\x84\\xcb\\x8e\\x24\\x50\\x58\\xe4\\x41\\x53\\x7c\\x88\\x06\\xf2\\x7b\\x6c\\x47\\x6c\\x3e\\x20\\x83\\x12\\x3d\\x19\\x60\\xb7\\xce\\x91\\x66\\xcf\\x7c\\xf5\\x87\\x11\\x30\\x46\\x38\\x1f\\xbf\\x96\\x30\\x26\\xa7\\x4c\\xf7\\x5e\\x29\\x9a\\x13\\xc2\\x59\\xf2\\xd0\\x81\\xd3\\xda\\xd8\\x2a\\x23\\xf1\\x42\\x7e\\xd9\\xbb\\x44\\xa9\\x62\\xc1\\xac\\x16\\x3f\\xd4\\x1a\\xdd\\xa4\\x22\\x5c\\xbd\\x53\\x04\\xef\\x13\\xf8\\x2e\\xca\\x16\\xe2\\xc2\\x0f\\x74\\x94\\xea\\x93\\x63\\x67\\x76\\x7f\\x7a\\x9b\\x60\\xa9\\xd3\\x58\\x97\\x71\\x7f\\x0a\\x64\\x44\\x8b\\x20\\xc7\\xb3\\x50\\x93\\x30\\xcb\\x4c\\x8a\\x7c\\x15\\xfd\\x10\\x05\\x81\\x24\\x87\\xae\\x39\\x1c\\xcc\\x37\\xec\\x58\\xbc\\x78\\x44\\x06\\x05\\x64\\x67\\xd3\\x8d\\x77\\x1b\\x33\\x05\\xce\\x20\\xbf\\xd8\\x47\\xc6\\x9e\\xf4\\xd2\\x53\\x69\\x34\\x21\\xa0\\xa0\\x5a\\x52\\x4a\\x82\\xb1\\x50\\x30\\x23\\x26\\x64\\x13\\xd6\\x15\\x3f\\x0d\\xfa\\xa0\\x6e\\xf3\\x34\\x8b\\x23\\x55\\x1e\\x09\\x0a\\x31\\x15\\x5b\\x56\\xf0\\x8e\\xe4\\x67\\x7a\\x54\\x75\\x98\\x41\\xee\\x76\\xc7\\x74\\x1c\\x2a\\x14\\x67\\x51\\x6e\\x29\\x04\\x86\\x8e\\xd0\\xe5\\x9b\\x3f\\x73\\x1d\\x65\\xd7\\x33\\x2d\\xd2\\xfb\\x67\\xa4\\xee\\xa8\\x7c\\x1e\\x2a\\x49\\x99\\x75\\x1d\\x22\\x19\\x9d\\x31\\x43\\x27\\x97\\xab\\x4d\\x08\\x7c\\xef\\x7f\\x33\\x8c\\x11\\xbf\\x82\\x91\\x71\\x08\\xde\\x38\\x2a\\x54\\x14\\x5e\\xb0\\x99\\xf4\\xae\\x27\\xad\\xfc\\xd6\\xc6\\xae\\xd6\\xac\\x46\\x10\\xe0\\x49\\xd3\\x19\\xa8\\xde\\xf8\\x67\\x58\\x37\\x52\\x76\\xe9\\x00\\xb1\\x38\\x16\\xe5\\x2e\\x50\\x2d\\x91\\x60\\xa5\\xd8\\x44\\x34\\x81\\x2c\\xb1\\xb6\\xd1\\x9a\\x20\\x26\\xd8\\xc0\\xb5\\xa4\\x98\\xb8\\xb9\\x14\\x3e\\xe6\\x77\\x8a\\xbd\\x9c\\x2b\\x92\\x25\\xd7\\x74\\x77\\x71\\xae\\x64\\x46\\x7d\\x89\\xab\\x45\\x67\\x64\\xe1\\xc8\\xbf\\x3a\\xf8\\x39\\x8b\\x21\\x44\\x6f\\x3c\\x03\\xe6\\x2f\\x25\\xa5\\x59\\x4f\\x82\\xc7\\xb7\\x6d\\xb3\\x20\\x35\\x59\\x2f\\x10\\x7f\\xb6\\xa0\\xfb\\x06\\xd5\\x21\\x4e\\x20\\x85\\xc5\\xc9\\xe2\\x6a\\x5f\\x4e\\x30\\x24\\xf1\\x32\\xbd\\x30\\x84\\x18\\x00\\xf7\\x70\\x62\\x75\\xfc\\x20\\xdc\\xa4\\xad\\x01\\xc5\\x27\\x87\\xf6\\x9f\\x66\\xa4\\x9d\\x47\\xdf\\x58\\x99\\xc6\\x32\\x0f\\x4f\\x09\\xc0\\x5c\\x87\\x70\\x39\\x8d\\x9e\\x2c\\x5d\\xf0\\xfe\\x04\\x0b\\x6d\\xa3\\xe7\\xb5\\xe0\\xd2\\xe8\\x14\\xce\\x01\\x7a\\x27\\xf9\\x80\\x30\\x8e\\x64\\xf7\\xb4\\x35\\xc1\\x30\\xd1\\xfb\\xc3\\x51\\x8b\\x11\\xde\\x1f\\x35\\x87\\xc3\\xf9\\xb7\\x0c\\xbf\\x16\\x01\\x2a\\xb7\\x27\\x5f\\x68\\xb5\\xe2\\xde\\x18\\x62\\x40\\x70\\x01\\x86\\xa4\\xc1\\x00\\x10\\x2e\\x6c\\x53\\x44\\x8b\\x2e\\x49\\x91\\x02\\xe2\\x42\\x24\\x5e\\x24\\x46\\x3b\\x9f\\xed\\x70\\x29\\x44\\x39\\x8b\\x14\\xee\\x40\\xbf\\x7e\\xda\\x42\\x28\\x25\\xd4\\x38\\xe4\\x84\\x3c\\xa2\\x9e\\x20\\x4d\\x54\\xd8\\xc4\\xa5\\x61\\x72\\x42\\x23\\x4a\\x86\\x90\\x92\\x31\\xe4\\xd3\\x86\\x59\\xc5\\xfe\\x30\\x0b\\x5e\\xe3\\x44\\xf1\\xb6\\xa1\\xc9\\x73\\x5a\\x1d\\x48\\xe7\\xe0\\x1a\\x6f\\x5b\\x9d\\x15\\xff\\xad\\x28\\x3b\\x84\\x6a\\x96\\x4d\\x52\\xea\\x16\\x8d\\x1b\\xe9\\x14\\xb8\\xf3\\x50\\xce\\x66\\xce\\x24\\xcf\\xfc\\x23\\x87\\x51\\x6e\\xd1\\x2b\\xf9\\x57\\x7e\\xe3\\x37\\x8e\\x78\\x39\\x7c\\xb0\\xa4\\x78\\xda\\x0c\\x1e\\xf5\\xfc\\xbc\\x40\\xe5\\x31\\x14\\xed\\x81\\x9a\\x7c\\xad\\xcc\\x03\\x20\\xa2\\x1e\\xc3\\x6d\\x7c\\x46\\x4c\\x05\\x50\\x8b\\xc7\\x7f\\x18\\xd2\\x5e\\x21\\x1e\\x09\\x13\\x07\\x4c\\x68\\x3a\\x4a\\x40\\x8a\\x3f\\x23\\xbc\\x73\\xb1\\x1f\\x9a\\x12\\x1e\\x8e\\x83\\x89\\xc5\\xb8\\x64\\x6e\\xa7\\x3e\\xa4\\x8f\\x90\\xb7\\x7d\\x55\\x4c\\x10\\xf4\\x86\\xab\\x54\\xff\\xc3\\xe2\\x30\\x49\\x3f\\xda\\xf8\\x5c\\x88\\x28\\xb8\\x26\\x21\\x0a\\xa3\\x2a\\x41\\xf6\\x81\\x21\\x31\\xda\\xf1\\x7c\\xe3\\x61\\x81\\x9f\\x3c\\xc7\\x25\\x63\\x73\\xc6\\x04\\x32\\x31\\xb0\\xe6\\x2c\\x69\\xb0\\x1c\\xdd\\x2d\\x5e\\x36\\x96\\xb6\\x4f\\x82\\x43\\x97\\x4e\\x9a\\x03\\x58\\xcf\\x19\\x22\\x60\\xed\\x16\\x2d\\x9d\\x43\\x21\\x9f\\xe4\\x12\\xbd\\x59\\x7b\\xac\\x66\\xd4\\xfc\\x9a\\xd6\\x12\\xc9\\x7c\\x72\\xde\\xf4\\xdf\\x16\\xe3\\x75\\x0d\\x26\\x8c\\xcd\\x2f\\xa5\\x4e\\x3a\\xdc\\x02\\x05\\x97\\x71\\x62\\xbe\\x36\\xca\\xcd\\x4e\\xda\\xa8\\xce\\x85\\x0f\\xa9\\x6a\\xa8\\x54\\x33\\x9e\\x11\\x01\\x93\\xc4\\x29\\x00\\x0f\\x4c\\xf5\\x79\\x4e\\xea\\x2f\\x1f\\x05\\x0d\\x74\\x57\\x35\\x85\\x32\\x36\\x9a\\xcf\\x0d\\x12\\x92\\xec\\x1d\\x3d\\x39\\x83\\x7c\\x4c\\xe9\\x79\\x54\\xa4\\x0c\\xa0\\xd8\\x4c\\xec\\xbe\\xdb\\x36\\x78\\x3e\\x77\\x87\\xfd\\x42\\x0e\\x89\\x74\\xc2\\x8d\\x63\\x33\\x50\\x47\\x69\\xb0\\x78\\xa6\\xa5\\x32\\x23\\x83\\x17\\x2e\\x1a\\x5a\\x29\\x26\\xe9\\xea\\x45\\x09\\xbc\\x41\\x05\\xea\\xf4\\xa7\\xe8\\x29\\x1b\\x28\\xc0\\xcc\\xe1\\x44\\xda\\x0e\\x50\\x04\\x4d\\xcb\\xb2\\x00\\x71\\x8a\\x23\\x2d\\x31\\x88\\x01\\xdb\\x75\\xac\\x90\\xe6\\x4e\\xba\\xbb\\xcf\\xcf\\x16\\x1a\\x39\\x19\\x37\\x6a\\x1d\\xcf\\x38\\xd7\\x87\\x90\\x46\\x9e\\x57\\xf9\\x5a\\xfe\\xf7\\xf5\\xf7\\xc6\\xf0\\xeb\\x5b\\x18\\x87\\x82\\x46\\x83\\xbd\\x6a\\x31\\xa3\\x8d\\x83\\x68\\xad\\xee\\x4d\\xa1\\xc8\\xc4\\x32\\x90\\x10\\x6c\\x35\\xde\\x2b\\x0d\\x6f\\x5b\\x12\\x53\\x45\\x02\\xab\\x8d\\xb4\\x84\\x26\\x27\\x4a\\xe4\\x94\\xe3\\x34\\x03\\x49\\x0c\\xa4\\xa2\\x0c\\xbe\\x5e\\x58\\x73\\x68\\x84\\xd3\\x14\\x01\\xd0\\x00\\xa0\\xfe\\x94\\x06\\x29\\xa4\\x5b\\xbf\\xe1\\x6f\\x28\\x6a\\xae\\x70\\x28\\x1a\\xec\\x7a\\x43\\x40\\xbc\\x8a\\xa0\\x46\\x6d\\xc8\\x35\\xda\\x69\\x2e\\x14\\xb6\\xb2\\xca\\x45\\x55\\x6c\\x84\\x4f\\xee\\xd5\\xad\\xa9\\x06\\x5d\\xc1\\xe0\\xa2\\x7b\\x8a\\x31\\x09\\x2e\\x54\\x90\\x72\\x24\\xb3\\xdc\\xb0\\x47\\x21\\x7d\\x63\\xdb\\xd3\\x45\\x58\\x59\\xc9\\xd2\\xc9\\xa8\\x86\\xdd\\xbb\\x69\\xab\\x3d\\xcc\\x77\\x7f\\x1c\\xaa\\x05\\xd5\\x44\\x83\\x87\\xae\\x07\\x71\\xc6\\x1c\\xea\\x6d\\xc3\\x84\\x51\\x61\\xa5\\x50\\xdc\\x78\\x17\\x9d\\xe5\\x8d\\xfd\\x5e\\x6c\\x41\\xc0\\xff\\x31\\xff\\xec\\x68\\xb2\\xa6\\x00\\x2f\\x12\\x07\\x80\\x40\\xdd\\xac\\x62\\x60\\x17\\x4c\\xc1\\xa3\\x0e\\x7d\\xf4\\x0a\\x29\\xcb\\x0a\\x5e\\x8c\\x54\\xd8\\x25\\x7a\\x54\\x23\\x52\\x91\\x95\\x31\\x71\\xa1\\x7a\\x2d\\xf5\\xf5\\x40\\x43\\x04\\xa9\\x0a\\x5a\\x4f\\x88\\xb9\\xab\\xa0\\xa9\\xc3\\x2e\\x72\\xf5\\x56\\xf4\\x03\\x23\\x59\\x93\\x7b\\x46\\xe6\\x98\\x6b\\x71\\xad\\xd5\\x9b\\x16\\xd5\\x18\\xb3\\x64\\x60\\xfc\\x1d\\xcc\\x98\\x60\\x1e\\xa8\\x73\\x3b\\x1d\\x59\\xb2\\x40\\x1e\\x9e\\xa8\\xb6\\xfb\\xfb\\x34\\x90\\x22\\xba\\x65\\xd9\\xa0\\x45\\x1a\\x30\\xd5\\x36\\xa1\\xff\\x94\\xb9\\x8f\\x85\\xca\\x4f\\xa0\\x24\\xf9\\x50\\xcc\\x30\\x96\\x19\\x03\\x43\\x98\\x5e\\xdb\\xb2\\xca\\x95\\xbc\\xc7\\xdc\\x6f\\x1e\\x81\\xae\\x98\\xbc\\x7e\\x34\\x9c\\x4f\\x78\\x15\\x90\\xd8\\xa1\\x26\\xad\\x47\\x1c\\xee\\x55\\x50\\xb4\\x8a\\x00\\xde\\xa8\\x38\\xa8\\xd5\\xa6\\xfd\\x92\\x25\\x16\\x73\\x11\\x35\\x02\\x6b\\x2a\\x7e\\x4a\\x52\\xb6\\x71\\x72\\x6e\\xca\\xc1\\x3f\\xa6\\x20\\x52\\x8a\\xf6\\x7a\\x4e\\x5a\\xd2\\x7d\\x1b\\x25\\x9e\\x2b\\x3a\\xc4\\x84\\x88\\x19\\x7b\\x48\\xa0\\x0f\\x9c\\xc7\\x31\\xc9\\xf2\\xa9\\x14\\x4b\\xa8\\x4e\\x5f\\x32\\x81\\xbc\\xcb\\xd0\\x55\\x17\\x0c\\x8f\\xf3\\xa6\\x13\\x15\\xc3\\x3e\\x38\\x4f\\xf3\\xdd\\x1c\\x2e\\x00\\x49\\xc7\\x37\\x95\\xf1\\x48\\xe3\\x83\\x21\\xc5\\xc5\\x81\\x96\\x27\\x99\\x4d\\xc7\\x89\\x1a\\x68\\x40\\xef\\xc4\\xbb\\x21\\xd7\\xcd\\xe8\\x9a\\x0d\\x94\\x60\\xc6\\xb7\\x07\\xd4\\xd1\\x35\\x11\\x85\\x98\\x49\\x8f\\x12\\x7b\\xa6\\x5e\\x8d\\xf9\\x47\\x32\\xe2\\x66\\x79\\x7d\\xe3\\x70\\xad\\x4c\\xb8\\xe3\\xa1\\xcf\\x32\\x40\\xf4\\xac\\xfe\\x0e\\x45\\xb3\\x1a\\xab\\x6d\\xaa\\x17\\x0c\\x81\\xa4\\xa8\\xc1\\xd9\\x56\\xac\\xf2\\x08\\xe6\\xa0\\x30\\xff\\x91\\x70\\xb7\\xeb\\xda\\x4b\\xa4\\x6f\\x28\\xba\\x14\\xdb\\x5c\\xac\\xf2\\xd5\\xb7\\xb9\\x1b\\x4b\\x92\\xee\\x46\\xa5\\x39\\x14\\x36\\xc7\\x07\\xdb\\xf8\\x2c\\xc2\\x55\\xa0\\xa0\\x7c\\x53\\x9c\\xb4\\x7d\\xe7\\xe3\\x73\\x50\\x1a\\x11\\x9d\\x44\\x9e\\x35\\x6c\\x34\\x5e\\xe7\\xab\\x96\\x42\\xa3\\xc9\\x7f\\x32\\x4b\\x11\\xe1\\x13\\xbf\\xa4\\x39\\x86\\x12\\xba\\x80\\x14\\x25\\xf8\\x21\\xef\\xbc\\xb8\\x04\\xfe\\x1f\\xea\\x2d\\x89\\x25\\xfc\\xb2\\x12\\x88\\xb7\\xea\\x1c\\xcd\\xe1\\xb3\\x02\\xa4\\xe6\\xe5\\x0e\\x56\\x38\\x27\\x15\\x92\\x4d\\xaf\\xc8\\xd8\\x4d\\x9c\\x81\\x71\\x10\\x68\\xda\\x91\\x92\\x86\\xea\\xc2\\xab\\x01\\x11\\x10\\x11\\x38\\xc4\\xad\\xac\\x0c\\xfa\\xfc\\x86\\xbe\\xa3\\x3b\\x2b\\x7b\\xc1\\x96\\x61\\x8f\\x1b\\x38\\x5d\\x65\\xd5\\xb2\\x4a\\x3c\\x29\\x82\\x43\\x17\\x66\\x96\\x32\\x76\\x64\\xf7\\xbe\\xf7\\x22\\x9b\\xcf\\x05\\xf1\\xe6\\x22\\x45\\x83\\x44\\xc7\\x02\\x64\\x17\\x0c\\xba\\x59\\x9f\\x17\\xb0\\xb5\\x55\\x11\\x4e\\x07\\x53\\x70\\x5e\\xe6\\x0d\\x8f\\x8f\\xb9\\x89\\xa7\\xa7\\xa3\\x01\\x35\\x5e\\xd4\\xe4\\x8c\\x34\\xcc\\xb9\\x88\\xbe\\x2f\\x1e\\x9c\\x9e\\xd0\\x72\\x87\\xed\\x13\\xf4\\x6b\\x85\\x36\\x2d\\x97\\xe9\\x8a\\x0c\\x7d\\x58\\x7a\\xe9\\x22\\x3f\\x8a\\x9f\\x91\\x32\\xd4\\xca\\x75\\x40\\xb3\\xad\\x11\\x53\\x69\\xbb\\xfb\\x6b\\xe0\\x2d\\xbb\\xa4\\x9e\\x9d\\x2f\\x50\\x74\\x88\\xb4\\xa8\\x00\\x8b\\xae\\xd3\\xc2\\x4a\\xe0\\xc5\\x49\\xb1\\x2b\\x77\\xb3\\x35\\xfe\\x78\\xe5\\x99\\xfb\\xe2\\x37\\x64\\xe5\\x02\\xf4\\x99\\x23\\x7e\\xc0\\xda\\x35\\x24\\x0e\\x62\\x0f\\x61\\x5f\\xcf\\x36\\x2c\\x7e\\x0c\\x5e\\x46\\x59\\xea\\x63\\xc0\\xd8\\xde\\xa2\\x3f\\xf4\\xa0\\x4a\\x3d\\xef\\x57\\x83\\x44\\x64\\x7c\\x06\\xfb\\x13\\x06\\x57\\x13\\xf9\\x7b\\x6c\\xe4\\x43\\x08\\x73\\xf7\\x96\\x0c\\xaa\\x3f\\x42\\x34\\xd9\\x5e\\xa7\\xeb\\x47\\x21\\x1b\\xda\\xe4\\x49\\xa8\\x44\\xe2\\xb5\\x4c\\x1c\\x6a\\x7e\\x40\\x84\\x67\\xb2\\xf4\\xb9\\x09\\xf3\\xd8\\xf3\\x6c\\x96\\x7e\\x44\\x73\\xc8\\x82\\x07\\x01\\xf1\\x78\\x3a\\xc4\\xbb\\x62\\x10\\x4c\\x0e\\xb6\\x53\\x94\\x00\\x07\\x39\\x07\\x7c\\xc9\\x39\\xbd\\xce\\xfa\\xd8\\x34\\x57\\x55\\x92\\xc8\\x43\\x49\\xd1\\xd9\\xc4\\x31\\x9c\\xb9\\x02\\x35\\xd7\\xa1\\xa5\\x9d\\x10\\x2f\\x6b\\x3b\\xf7\\x8d\\x60\\x79\\xdb\\x49\\x12\\xa4\\xa5\\xc8\\x43\\x48\\x2c\\x2a\\x84\\xd2\\xd3\\x02\\xad\\x43\\x46\\x44\\x9b\\x1c\\x97\\xd6\\xa3\\xb3\\x38\\xd6\\xf3\\xc4\\x3e\\x19\\x96\\x24\\x5c\\xa8\\x78\\x41\\x26\\x07\\x23\\x22\\x64\\x56\\xc2\\xdc\\x3c\\x09\\x8c\\x73\\x12\\xb9\\x16\\x40\\xf9\\x32\\x31\\x93\\x71\\xb5\\xd9\\xd4\\xa2\\x46\\xc9\\xbe\\x6d\\xcc\\x6b\\xb6\\xc4\\xcb\\xb3\\x95\\x53\\x04\\xf7\\x34\\x68\\x5a\\xfa\\x13\\x9c\\x65\\xfe\\xba\\x2b\\x46\\xb8\\x01\\x38\\x34\\x65\\x6c\\xe6\\xda\\x58\\xaa\\x67\\x50\\x19\\x45\\xec\\x35\\x9f\\x50\\x9e\\x95\\x2b\\xaf\\x44\\xa2\\xea\\x88\\x5c\\xf1\\x58\\xa8\\x72\\x96\\x01\\x04\\xdc\\xe7\\x58\\x30\\x3e\\x2e\\xce\\x40\\x24\\x7a\\xab\\x71\\x81\\x9b\\xc4\\x29\\x23\\x61\\x2e\\x60\\x99\\x9e\\x0d\\x34\\xc5\\x47\\xbc\\x16\\xad\\xe9\\xec\\xe8\\x9c\\xdd\\x50\\xa8\\x92\\xaf\\x36\\xbf\\x9d\\xf2\\xa2\\x98\\x62\\x17\\x98\\x63\\xb8\\x20\\x0a\\x45\\x23\\x4b\\x47\\xdf\\x62\\x00\\x6e\\x7b\\xca\\xb8\\x14\\x5a\\xed\\x18\\xd6\\x69\\x0d\\x9f\\x2d\\x41\\x2b\\xfa\\xdc\\x20\\x14\\x52\\x06\\xad\\x5b\\xf0\\xc9\\x44\\xdb\\xde\\xb1\\x83\\xff\\xa6\\x3a\\x4b\\x0c\\x26\\xe8\\x7e\\x28\\x00\\x28\\xae\\x30\\x74\\x97\\x3f\\xc9\\xe7\\x27\\x93\\x49\\xff\\xf1\\x4e\\x8b\\xf2\\x47\\xc7\\x9c\\x88\\xc5\\xbb\\x23\\xd4\\x27\\xec\\xef\\x30\\xe7\\x4b\\x35\\x8a\\x2a\\xb6\\x8b\\xc3\\xc7\\x18\\xa6\\xc9\\xb4\\x6d\\x6c\\x23\\xdb\\x9b\\x12\\x2f\\x09\\xa2\\x1b\\x21\\x4e\\x9d\\x8f\\x4d\\x08\\x29\\xe6\\x33\\xaf\\x92\\x8d\\x7d\\xa1\\xba\\xf9\\x34\\x5d\\xa4\\x78\\x42\\x16\\x00\\xf5\\x3b\\x40\\x43\\x5f\\x54\\xd8\\xa6\\x06\\x13\\x03\\x1d\\x33\\x28\\xac\\xbe\\xb6\\xee\\x13\\x0c\\x67\\x83\\x29\\x7e\\xab\\x35\\x78\\xa2\\x5b\\x4e\\x02\\x0b\\x49\\x2c\\x26\\x30\\xe3\\x01\\xc4\\x1c\\x12\\x11\\x57\\x68\\x9a\\x4a\\xb1\\x3d\\xe0\\xe3\\xd8\\x5a\\x8b\\x67\\x4e\\x46\\x0a\\x5d\\x35\\x97\\x83\\xdd\\xa1\\x71\\x6e\\x8c\\x89\\xd6\\xf5\\x09\\x99\\x5d\\xa9\\x67\\x52\\xdb\\x84\\xc0\\x8e\\x56\\xb8\\xea\\xd0\\x64\\x56\\xc7\\x24\\x09\\x0f\\x4d\\x00\\x9d\\x11\\x4e\\xf5\\x94\\xb1\\xff\\x93\\x66\\x80\\x82\\x14\\xdc\\x0c\\x69\\x8d\\xa7\\x77\\x0f\\xd8\\x48\\x5d\\x9b\\x82\\x10\\x35\\xcd\\xf4\\x6b\\x1b\\x34\\x99\\xcb\\xbf\\x40\\xa7\\xad\\x7f\\xcd\\x72\\xe8\\xca\\xbe\\x61\\xfc\\x08\\x0f\\x48\\xd8\\x11\\x1b\\x7b\\xf5\\x99\\xf1\\x41\\x96\\x10\\x82\\x1b\\x96\\xd6\\x3b\\x81\\x0b\\xc4\\xfa\\x11\\xc1\\x76\\x56\\xad\\x03\\x14\\x7d\\x35\\xd2\\x3a\\x03\\x4c\\x83\\x56\\xbd\\xf9\\x9f\\x64\\x95\\xa7\\x0e\\x6c\\xc2\\xb1\\x28\\x39\\xdc\\x3b\\x57\\x9e\\x5c\\x04\\xa2\\x99\\xcc\\x3e\\x80\\xc9\\x00\\x03\\x34\\x88\\x32\\x5b\\x1b\\x9c\\x62\\x37\\x77\\xb0\\xef\\x40\\x6c\\xbc\\x34\\x46\\x4e\\x9d\\xc1\\xb6\\xe2\\x20\\x96\\x9f\\x90\\xc5\\x7b\\x41\\xda\\x44\\xec\\xa0\\xd9\\xbb\\x84\\xab\\x6f\\xd6\\x66\\xf0\\x1a\\x1e\\xb1\\x9a\\xa4\\x0f\\xd8\\x03\\x21\\x7a\\x57\\x70\\x03\\x12\\x20\\x08\\x3b\\x36\\xa9\\xdc\\x1f\\xc3\\x98\\x2e\\x0c\\x1c\\xc3\\x1e\\x24\\xda\\x33\\xd0\\x0b\\x32\\x24\\xc3\\x8a\\xf3\\xf9\\xfc\\x6a\\x93\\xcd\\x04\\x82\\x03\\x07\\xd3\\x95\\xb4\\x85\\x88\\x07\\xd4\\xe0\\x03\\x50\\xee\\xa0\\x31\\x48\\x7e\\xc8\\x54\\xdd\\xe4\\x01\\x7a\\x66\\xdc\\x96\\x1c\\xbc\\xd8\\xca\\xcb\\xdf\\x7b\\x91\\xf2\\xee\\xde\\xeb\\x72\\x8d\\xf3\\xb2\\xe4\\x97\\x6f\\x0f\\x5d\\x81\\xa5\\xb8\\xef\\xed\\xb7\\x68\\x60\\x91\\xed\\x94\\x30\\x41\\x4f\\xda\\x11\\x4c\\xf1\\xbc\\xec\\x20\\x33\\x20\\xc5\\x77\\x95\\x09\\x55\\x61\\x62\\xa6\\x93\\x4a\\xb8\\x2a\\x3f\\xed\\xc4\\x6c\\x10\\x5b\\xa0\\x20\\xc8\\x64\\x63\\x22\\xe6\\x2d\\xd6\\x18\\xd9\\x6a\\x82\\xb0\\x84\\x86\\xd2\\x9a\\x54\\x2c\\x4e\\x4e\\x41\\x63\\x7a\\x3d\\xb4\\xa6\\x84\\x7d\\x9e\\x12\\x37\\x93\\xac\\x46\\x87\\x3f\\x1a\\x4e\\x93\\x60\\x24\\x33\\x22\\x38\\x17\\x93\\x77\\x0a\\x6d\\x4e\\xea\\xd0\\xc6\\xba\\x28\\x03\\x40\\x88\\xa1\\x1c\\x81\\x96\\xc6\\x12\\xaf\\x06\\x2d\\xb9\\x82\\x53\\xc2\\x97\\xc9\\xd1\\x66\\xb0\\x8b\\x14\\xbc\\x76\\xc2\\xc1\\x4b\\x6e\\x7a\\x13\\xb0\\x3e\\xb5\\x0f\\x10\\x53\\x2b\\x8f\\x29\\xa0\\x04\\xb8\\xe2\\x64\\x5d\\xa8\\x5b\\x64\\x00\\x20\\x24\\x2d\\x33\\x24\\x20\\x16\\x50\\x85\\xde\\x96\\x55\\x14\\x4f\\x53\\x99\\x69\\xb9\\xf7\\x54\\x87\\xbb\\x1a\\xa3\\xa4\\xe5\\x1f\\x02\\x58\\x48\\x37\\x89\\xc9\\x35\\xab\\x35\\xdd\\x0a\\x6f\\x32\\x67\\x20\\x78\\xd2\\x4c\\x16\\x20\\x20\\xb1\\x40\\x02\\x6a\\x2f\\x25\\x09\\xcb\\xd0\\x0a\\x9f\\x0f\\x9b\\x86\\xab\\x40\\xf2\\x7d\\xee\\xe5\\xc8\\x0a\\x48\\xac\\x1d\\x5a\\xe2\\xaa\\xc8\\x93\\xcc\\x36\\xb0\\x45\\x3a\\xc7\\xee\\x49\\x8f\\x31\\xfb\\x64\\x89\\x04\\x3d\\x86\\xe0\\x42\\x6d\\x58\\x75\\xf1\\x37\\x1f\\x43\\x6d\\x8a\\x5e\\x19\\x01\\x57\\x8c\\xd7\\x22\\x46\\xd2\\x93\\x1b\\x40\\x30\\x5b\\x2f\\x58\\x31\\xa0\\xbc\\x03\\xfc\\xb5\\x1d\\x36\\x62\\x26\\x77\\x33\\xa8\\x24\\xf4\\x09\\x72\\x76\\x2d\\xaa\\x1c\\xba\\xe6\\xd6\\xa0\\xec\\x71\\xa0\\xcc\\xb8\\x38\\x1d\\xab\\xc0\\x70\\xae\\x28\\x4f\\x6a\\xa0\\xe5\\x17\\x16\\x96\\xd5\\x01\\x1c\\x14\\x74\\x2b\\x11\\xb2\\x09\\x1f\\xbb\\x3f\\xd6\\x50\\xa3\\xf4\\xd6\\xe5\\xea\\x97\\x10\\x38\\x60\\xe6\\x85\\xdf\\x54\\xa2\\x2a\\xa6\\x45\\x5f\\x99\\x25\\x20\\x1c\\x07\\x6b\\x8c\\xd0\\xae\\x88\\x00\\x64\\x3d\\x41\\xc6\\x99\\x82\\xeb\\x5a\\x4c\\xa5\\xb5\\x5d\\x0b\\xd4\\x82\\x93\\x98\\xd5\\xe5\\x8d\\x04\\xcc\\xc9\\xe7\\xfa\\x02\\x7f\\x8c\\x62\\x12\\x1f\\x86\\xbe\\x52\\x00\\xf1\\x62\\x42\\x86\\x54\\xb3\\xec\\x50\\xe8\\x12\\xd1\\x9f\\xe1\\xb6\\x42\\xc6\\x08\\xda\\x98\\xea\\x9c\\x0c\\xb3\\xb3\\x95\\x66\\x2b\\xca\\xad\\xf0\\x5c\\x68\\x24\\x32\\x35\\x47\\x0b\\x48\\x52\\x8e\\xcc\\x10\\x38\\x68\\x08\\x06\\x90\\xab\\xb3\\x7b\\x6c\\x38\\xf2\\x10\\x13\\x33\\x7a\\x21\\xac\\xb3\\xa5\\x34\\xf1\\x92\\xc0\\x23\\x8d\\xe7\\xd3\\x9c\\x19\\x4e\\x40\\x45\\x77\\x72\\xb4\\x3f\\x4a\\x30\\xff\\x3c\\x6f\\x61\\x32\\x78\\xde\\x3b\\x89\\xe3\\x78\\xf0\\x45\\x40\\x94\\x8e\\xaf\\x8e\\xa6\\xe1\\xe3\\x11\\x11\\x6e\\x46\\x89\\xb7\\xa0\\xa0\\xd7\\x6b\\xe2\\x36\\x57\\x95\\x3c\\x7b\\xe0\\xb5\\x5f\\x0f\\xe0\\xf7\\x52\\xbb\\x6b\\x4a\\xdf\\xf4\\xf6\\x93\\x78\\xed\\x2e\\xf9\\xa8\\x1b\\xa6\\x32\\xfe\\x86\\x03\\x24\\x28\\x4e\\xe3\\xca\\xd1\\x1e\\x8f\\xcd\\xcd\\xb8\\x33\\xb3\\x64\\x75\\x5d\\x4e\\x6d\\x8f\\xf5\\x1f\\x84\\xf6\\x99\\xd1\\x5e\\x28\\xe1\\xaf\\x4a\\x8e\\x72\\x2a\\x8d\\x8f\\xc2\\x7d\\xcd\\xfd\\xe8\\x96\\x99\\x3a\\x22\\xa3\\x69\\x90\\x4d\\x25\\xac\\xb8\\xba\\x6c\\xc0\\x82\\x3e\\x65\\xb6\\x32\\x79\\x90\\x62\\x4b\\x18\\xa0\\x38\\xb2\\x4b\\x4e\\x5e\\x2f\\x0f\\x42\\xcd\\x40\\x1d\\x46\\x50\\xe9\\xd5\\x74\\xad\\xfa\\xa2\\x7b\\x6c\\x64\\x97\\x69\\x7a\\xa2\\xf4\\x1e\\xf0\\x02\\x13\\x7b\\xb0\\x13\\x3d\\xc6\\xd6\\x0c\\x5a\\x2c\\x3c\\x3d\\xb5\\x9d\\xd4\\x3f\\x27\\xea\\x9d\\xfb\\xa5\\x9b\\x2b\\xc4\\xe8\\x51\\x6c\\x96\\xa7\\x6a\\x0d\\xb4\\x62\\x7a\\xe1\\xbd\\x00\\x40\\xbe\\xfd\\x57\\x13\\x8f\\x14\\x4b\\x55\\xf1\\xb1\\x1e\\x9e\\x33\\x5a\\x8e\\x8f\\xef\\x99\\x01\\x3d\\x69\\x0c\\x67\\xf0\\xac\\x1f\\xdf\\xd3\\x29\\x96\\x24\\x4d\\xe2\\x90\\x78\\x3b\\xeb\\xc9\\x10\\xb7\\xc3\\x98\\x23\\x9d\\x6d\\x1d\\x9e\\x0a\\xa8\\xe1\\x5c\\x13\\x06\\xda\\x2a\\x67\\x3c\\x0a\\x99\\xcc\\x3a\\x6c\\x86\\xb0\\xd8\\x74\\x22\\xee\\xf6\\xb4\\xa4\\xf2\\x1a\\x81\\x44\\xf2\\x3d\\x7a\\x85\\xba\\x5b\\x49\\x14\\xaf\\xa3\\x7c\\x44\\xc5\\x50\\x60\\x27\\x74\\xbf\\x04\\x6d\\xa0\\x94\\xd2\\xb4\\xa6\\x16\\x9b\\x7b\\x33\\x67\\x55\\x3e\\x6a\\x14\\x56\\x25\\x3c\\x43\\x29\\x94\\x34\\xce\\x9b\\xb1\\xba\\x15\\x66\\xca\\x85\\xf3\\xc2\\x92\\x93\\xd2\\x25\\x9b\\x4f\\x53\\x20\\xfa\\xe7\\x0e\\xd0\\x92\\xeb\\xb2\\x10\\xb6\\xee\\x1c\\x59\\xf5\\xaa\\x17\\xcd\\xf1\\xba\\x81\\x72\\xc8\\x94\\xe4\\x09\\xca\\xc2\\x6f\\xa8\\x84\\x57\\x97\\xf5\\xfd\\x08\\x7e\\x51\\x48\\x8e\\xf6\\xd6\\x21\\xce\\x58\\x85\\x99\\xa3\\x4a\\xcd\\x86\\x0d\\x70\\xff\\xa7\\x27\\x02\\x10\\xb8\\x48\\xc9\\xa8\\x5b\\x59\\x3a\\xc9\\x27\\xce\\x63\\xd1\\x49\\xfa\\xd6\\xce\\x2c\\x4c\\x63\\x78\\x7a\\xf5\\x3f\\x38\\x38\\xcd\\xb1\\x2b\\xbf\\x06\\x93\\x06\\xc4\\xb1\\x3d\\xf0\\xca\\x9a\\x0c\\x46\\x50\\xed\\xa4\\x3c\\x80\\x44\\x06\\x88\\xad\\x1d\\x8d\\x95\\x4f\\x00\\xb8\\xf9\\xef\\xd0\\xc4\\x48\\x39\\xd2\\x05\\x33\\x06\\xf4\\x1d\\x11\\x04\\x04\\x52\\xcb\\xe6\\x42\\x31\\x8e\\x6c\\xeb\\xda\\x38\\xc4\\x38\\x18\\x9e\\x44\\xd0\\xe7\\xc1\\xf8\\x2b\\x21\\x7b\\xd4\\xc2\\x16\\x05\\x6e\\x13\\xc2\\x3e\\xd6\\xd1\\x46\\x82\\x65\\x85\\x89\\xb5\\xb4\\x50\\x09\\xf5\\x19\\xd1\\xbf\\xbe\\xf7\\x71\\x16\\x31\\x4b\\xe8\\x3c\\xe4\\x38\\x03\\x09\\x4d\\xd1\\xb9\\x01\\xf4\\xbc\\xbc\\x6b\\xf6\\x37\\x6c\\x07\\xe7\\xb0\\xb3\\xcb\\x25\\x65\\xdc\\xe3\\x07\\xf3\\x7b\\xcb\\xd8\\xb7\\x20\\xa3\\x8b\\x7d\\x2c\\x25\\x77\\x47\\x87\\x1a\\xfc\\xc6\\x41\\x41\\xc5\\x9e\\x84\\xf5\\xb7\\x6b\\x62\\x00\\x98\\x60\\x8c\\xd2\\x50\\xf8\\xb0\\x34\\xab\\x41\\x12\\xdc\\x50\\x08\\xd6\\xd5\\x23\\xf4\\xd6\\x00\\x7e\\x80\\x62\\xa6\\x80\\x24\\x4b\\xc6\\x1a\\x3a\\xa4\\x63\\xb9\\xf5\\xf5\\xd4\\x95\\xf4\\xd0\\xb4\\xcd\\x74\\x9c\\x9b\\x6e\\x10\\xbc\\x99\\x58\\x4e\\x4a\\x46\\x5c\\x19\\xe9\\x62\\x3d\\x2d\\xfc\\xae\\x65\\x3b\\x08\\x34\\x7c\\xca\\x5c\\x21\\xe2\\x85\\x93\\x7b\\xcb\\x32\\xbd\\x00\\xd0\\x5c\\x4a\\x99\\xda\\x87\\x38\\xf7\\x1c\\x01\\x09\\x44\\x35\\xf3\\x56\\x0f\\x45\\xbe\\x13\\x85\\x0e\\x26\\x62\\x5a\\x94\\x2d\\x14\\x9c\\x2d\\x6e\\x2d\\x3a\\xb9\\x4f\\x29\\xc0\\x4a\\x44\\x28\\xf4\\x36\\x24\\x89\\xc0\\x12\\xee\\x54\\x46\\xba\\x5c\\xa2\\xd7\\x8c\\xd9\\x70\\x1f\\x07\\xf7\\x35\\x4f\\xf1\\xa8\\x90\\x79\\xa9\\xf9\\xa1\\x21\\xef\\xc9\\x07\\x73\\x1e\\xfb\\x38\\xf6\\x4e\\x9b\\x54\\x46\\x6c\\xea\\x1c\\x08\\x60\\xac\\x4b\\xaf\\x49\\xe9\\x56\\xbd\\x87\\x4f\\xcf\\xcd\\x3d\\x93\\xa9\\x38\\xb9\\xcb\\x66\\xad\\x57\\x84\\x7a\\x41\\x2e\\xf7\\x2c\\xcd\\x40\\x11\\x0d\\x36\\x66\\x87\\x56\\x1b\\x7f\\x7f\\xd0\\x54\\xcb\\x60\\x1f\\xe3\\x76\\x13\\xd6\\x7b\\x22\\xa5\\xc0\\xd2\\xb6\\x0c\\x18\\xc0\\xd4\\x3e\\xb1\\xab\\xee\\xbe\\x08\\x99\\x75\\xef\\xa2\\x0a\\x5b\\x8c\\x48\\x43\\x03\\x41\\xb8\\x12\\x4d\\xd6\\xa5\\x13\\x78\\xaf\\x67\\xb0\\x16\\x64\\x73\\x7d\\xcc\\x86\\x3f\\x13\\x23\\x1e\\xa6\\xb4\\xab\\x81\\x53\\xdc\\x9b\\xb2\\x82\\x9d\\x14\\xda\\x12\\x5d\\xe7\\xe5\\xf3\\x0e\\xd0\\x7c\\xc2\\xa1\\x0a\\x18\\x61\\xa7\\x80\\xb5\\x94\\x10\\x83\\xef\\xdc\\x9d\\x23\\x40\\xaf\\x2f\\x61\\xbd\\xfa\\x88\\x1c\\xd0\\xcb\\x49\\x06\\xb5\\x51\\xa3\\x13\\x7c\\xdf\\x28\\x66\\x9c\\x9c\\x0f\\xbf\\x33\\x21\\xe0\\x8d\\xa1\\x85\\x49\\x08\\xfb\\x3a\\x36\\x5b\\x97\\x89\\x3c\\xf5\\x2a\\x6a\\x05\\x15\\x71\\x70\\xaf\\xb0\\xf3\\xdd\\x63\\x13\\x36\\x08\\x3d\\x1e\\xa1\\xe7\\xe0\\xf1\\x60\\x80\\x6b\\x0c\\xd5\\xe8\\xb2\\xb3\\x8d\\x2a\\xc8\\x65\\x09\\x81\\x50\\xed\\x7f\\x09\\x99\\x34\\x84\\x52\\x64\\x3d\\x1c\\x25\\x0a\\x08\\x56\\x28\\x93\\x8d\\x15\\xef\\x38\\x29\\x0d\\x5b\\xda\\x58\\x59\\xd0\\xf9\\xa8\\xe0\\xe7\\x32\\x6b\\x3b\\x30\\x46\\x1d\\x83\\x2b\\xb4\\x08\\x6a\\x8b\\xae\\x80\\x1c\\xd2\\x78\\x9d\\x36\\x8f\\x9e\\x0d\\xb4\\x57\\x7c\\xf9\\xa2\\x90\\x51\\x94\\x3e\\x9e\\x39\\x8e\\xad\\xf2\\x0d\\xcf\\x2d\\x80\\xcb\\x63\\x14\\xbd\\xc8\\x2a\\x4c\\xbf\\x55\\x32\\x68\\xda\\x67\\x5b\\x72\\x77\\xfd\\xc0\\x4c\\xda\\x72\\xcd\\xf8\\xd8\\x13\\x81\\x81\\x50\\x57\\x08\\xd4\\x3b\\xd8\\x7e\\x3d\\xbd\\x88\\x8f\\x7b\\x7a\\xa0\\xb0\\x99\\x2b\\x7f\\x64\\x20\\xeb\\x66\\x0c\\xa8\\x82\\xd9\\x59\\x59\\x1e\\x05\\x03\\xfd\\x3e\\xbe\\x0c\\x09\\xb3\\xe0\\x2d\\x4f\\xb4\\xcd\\xd6\\x88\\x04\\x8e\\xf0\\x4e\\x03\\xb1\\x61\\x1f\\x03\\xcc\\x13\\xe3\\x2f\\x72\\x99\\xc6\\x59\\x98\\x74\\x90\\x19\\x10\\x24\\x53\\xa8\\x24\\x38\\x13\\xc6\\x5e\\xf7\\xd2\\x38\\x30\\x69\\x8a\\x5b\\x7f\\x1f\\x43\\x07\\x07\\xcf\\xcc\\x2e\\x04\\xe5\\x38\\x47\\xa2\\x7f\\x87\\xeb\\x3b\\x85\\x3f\\x70\\x0b\\xef\\x7b\\x8d\\x40\\x56\\x4b\\xfd\\x08\\x75\\x1f\\x3d\\x0c\\x0c\\xcb\\xb3\\xd7\\xfb\\x53\\xdd\\xff\\xdd\\x40\\x15\\x3b\\x94\\x20\\x85\\x68\\x17\\xb3\\x6d\\xd1\\xb6\\x0f\\xa2\\x9a\\xf6\\x28\\x6d\\x71\\x10\\x28\\x60\\x82\\xdf\\x3d\\x71\\xd0\\x0d\\xa8\\x36\\x9f\\x61\\x20\\x80\\xcb\\xab\\x3c\\x6c\\x98\\xe3\\x1b\\xf6\\xa9\\xc3\\xf8\\x18\\x7f\\x90\\x90\\x62\\xf9\\x8f\\xc9\\x2f\\xdb\\x5a\\xba\\xd8\\xc5\\x6f\\x8c\\xf3\\x5c\\x42\\xd1\\xdf\\xb8\\x8f\\xaf\\xb1\\x84\\x5f\\xa4\\xd8\\xec\\xa2\\x2f\\x9f\\x89\\xd2\\x11\\x18\\x21\\xe0\\x66\\x6e\\x84\\x20\\x42\\xcc\\x32\\x82\\x97\\x94\\x14\\x95\\x38\\x12\\x9c\\x36\\x82\\x1f\\xf0\\xba\\x61\\x8e\\xde\\x70\\x00\\xd1\\x2a\\xa8\\x4e\\xb1\\x4d\\xbc\\x65\\xd7\\xab\\x50\\x53\\xa2\\x4a\\x29\\x2a\\xef\\x79\\xb8\\x9a\\x4b\\x59\\xf8\\xdd\\xf5\\x9b\\xcb\\x53\\xec\\xf6\\x55\\x91\\x3e\\x7e\\xe0\\xfb\\xa1\\x6e\\x1c\\x1a\\xa7\\x1a\\x2c\\xc0\\xa4\\xba\\xcd\\x67\\xa8\\x0c\\x25\\x94\\xea\\xb3\\x39\\x6c\\xcb\\x9e\\xa0\\xa2\\x5f\\xc3\\x36\\xfd\\xee\\x58\\x80\\xec\\xb6\\xff\\x76\\xb8\\xa2\\x4f\\xcf\\x95\\xa5\\x46\\x61\\x73\\x32\\xcb\\xf4\\x6d\\x69\\x1c\\x00\\xcb\\xba\\xb2\\xd3\\xc9\\xaf\\x0f\\x7a\\xfb\\x59\\xcd\\x7b\\x86\\xaa\\x2d\\x1d\\x39\\xf6\\xa8\\x85\\x1e\\x87\\xa0\\x6f\\x7b\\x44\\x84\\x1a\\xc6\\x23\\x58\\x2d\\x78\\x30\\x07\\x41\\x65\\xbe\\xcf\\xe2\\xbe\\xfb\\x48\\x57\\x13\\xe6\\x95\\x1a\\x3a\\x46\\x94\\xba\\x6f\\xbe\\x54\\x4c\\x90\\xe8\\x76\\x27\\x1c\\x7a\\x59\\xc8\\x85\\x18\\x6f\\x5e\\x3f\\x42\\x71\\xd1\\x05\\x88\\x48\\x79\\x11\\x4c\\xe8\\x63\\x20\\x59\\xe8\\xc5\\xd7\\x80\\x18\\x28\\xbd\\x04\\x8d\\x5a\\x67\\x72\\x8f\\xf0\\x9c\\x10\\xb9\\x99\\x8a\\x86\\x38\\xc6\\xce\\xba\\x3d\\x80\\x5d\\xa9\\xca\\x10\\xe7\\x1a\\xc7\\x40\\x7c\\x1e\\x6d\\x10\\x1f\\x42\\x9c\\x31\\x92\\x44\\xa9\\x83\\x69\\x45\\x51\\x08\\x7b\\x2d\\xfe\\x93\\xc2\\x5b\\xc9\\xd7\\x96\\x49\\xcd\\x2f\\x6b\\xd6\\xc8\\x5b\\xe1\\xf2\\xb7\\x84\\xb6\\x4d\\xec\\x96\\x80\\xb3\\x33\\x04\\x3d\\xb0\\x6e\\xa2\\x24\\xa6\\x94\\xa9\\x4b\\xcf\\x0d\\x21\\x40\\xe5\\x46\\xd9\\x07\\x8b\\xa6\\xf8\\x98\\x19\\x5e\\x8c\\x7c\\xf9\\x23\\xd5\\x7a\\x8e\\x89\\x91\\x60\\x20\\x1e\\x64\\x58\\xd9\\x88\\xcd\\x23\\xf8\\x5b\\x23\\x0b\\xfe\\x1a\\xbc\\xae\\x6c\\xbe\\xf3\\x4b\\x17\\x07\\x9d\\xd9\\x82\\x57\\xee\\xd3\\xad\\x1f\\x52\\x83\\x9c\\xf7\\x85\\x5e\\xa4\\x0a\\x69\\x19\\x32\\xb0\\xf2\\x6f\\x23\\x8a\\xcb\\xb5\\xf9\\x58\\x6d\\xe2\\x10\\xb9\\x60\\x28\\xd9\\x23\\x6d\\x8c\\xdb\\x6d\\xbd\\x85\\x94\\x42\\x5a\\xaa\\x40\\x5d\\x61\\xda\\xa6\\x58\\x89\\x14\\xda\\x3b\\x7b\\x92\\xb6\\x73\\x09\\xc6\\x33\\xf0\\x40\\x9d\\xdb\\x2e\\xd0\\x83\\x76\\xef\\xff\\xa9\\xe0\\x3a\\x49\\xce\\x21\\xb4\\xe8\\xbc\\x40\\x21\\xae\\x46\\x3f\\x1c\\x7c\\xc1\\x81\\xb4\\x01\\x63\\x11\\x77\\xcc\\x20\\xf6\\x1a\\x67\\x4a\\x91\\xe5\\x02\\x15\\xa6\\x7b\\x58\\xf0\\xb5\\x9b\\x33\\x0a\\x6d\\x82\\x2b\\xbc\\x2a\\x45\\xac\\x54\\x44\\x3b\\x03\\xf8\\x15\\x6e\\xb8\\xe6\\xed\\x08\\xec\\x3d\\x85\\x5c\\x8c\\x1e\\xa3\\x98\\xb8\\x26\\x0e\\x98\\xd4\\xf8\\x89\\x64\\xce\\x24\\x0e\\xad\\x91\\x67\\xa4\\xe1\\xb7\\xdc\\x26\\x4f\\x67\\x47\\x1c\\x41\\xe3\\xe1\\x71\\xe3\\xcd\\x97\\x84\\x90\\xd2\\xe0\\x00\\xd4\\xe7\\x9d\\xaa\\x29\\xb5\\x21\\xa3\\x01\\xc0\\x07\\x11\\xa5\\x94\\x67\\x24\\x06\\x05\\x4c\\x36\\x37\\x58\\x3f\\x8a\\x6c\\xa3\\x35\\x1f\\xb0\\x11\\x62\\x08\\x91\\xaa\\xdc\\x8b\\x24\\x6f\\x59\\xc8\\x22\\x79\\x5f\\x0b\\x0a\\x58\\x8f\\x63\\xac\\xbc\\x4f\\x37\\x28\\x90\\xdb\\x66\\x1a\\x39\\x8e\\x12\\x74\\x29\\xed\\x21\\x80\\x53\\x49\\x9c\\xa8\\xb8\\x43\\x35\\xc4\\xc5\\x8b\\xb7\\x13\\x1c\\x55\\x8e\\x46\\x6d\\x8b\\x78\\xc4\\x11\\x00\\x0c\\x89\\xb1\\xb2\\x89\\xf0\\x96\\x8b\\x53\\x4b\\x4c\\x81\\x42\\x35\\xec\\x7a\\x00\\x3c\\x12\\x6d\\xb4\\x48\\xc9\\xa9\\x1a\\x8a\\xc0\\xc6\\x46\\x40\\x99\\x4c\\x4d\\xe4\\x66\\xda\\xdf\\x0f\\xc1\\x97\\x2a\\x56\\xad\\xa6\\x6a\\x5f\\x8a\\xb2\\x05\\x8e\\x22\\x48\\xfb\\xda\\x41\\x69\\xf8\\x6e\\x6b\\x51\\xd0\\x46\\x9a\\xda\\xf5\\xae\\x64\\x8e\\xa0\\x6c\\x7e\\x2d\\x09\\xdd\\x42\\xb8\\x11\\x1e\\x31\\x76\\xc9\\x2c\\xd9\\x98\\xc4\\x8c\\xe1\\x08\\x07\\x46\\xa7\\x4c\\x5a\\x19\\x3d\\x5e\\xbc\\x8c\\x5b\\x75\\x98\\xc2\\x03\\xe8\\x80\\x94\\x03\\xac\\x91\\x9e\\x87\\x8d\\x94\\x5c\\x03\\x9f\\x83\\xab\\x24\\x46\\x70\\xc1\\xbd\\x5e\\x96\\xcb\\xbc\\x21\\xae\\x78\\xb7\\xcf\\x21\\x56\\x80\\x10\\x22\\xb9\\xe9\\xe6\\xbe\\xb3\\x07\\xe7\\x87\\x86\\xa3\\x71\\xa3\\x58\\x63\\x6e\\xbc\\xdc\\x73\\x6f\\x0f\\x2e\\x16\\x72\\xf5\\x5e\\x08\\xaa\\xf0\\x3c\\xa3\\x85\\x43\\xda\\xa1\\x08\\x7c\\xdf\\x26\\x03\\x01\\x62\\x27\\xa8\\x3a\\x60\\x29\\x4a\\x90\\x44\\x08\\xfb\\x68\\xe5\\x62\\x01\\x84\\x7f\\xb4\\x6b\\xcd\\xab\\x2c\\x88\\xd5\\x23\\x5d\\x53\\xde\\xd9\\x8f\\x06\\x73\\x24\\x0d\\x46\\x5e\\xa9\\x46\\x18\\xf9\\x3d\\xcb\\xc4\\x11\\x3a\\xf6\\x27\\x79\\x0a\\xd4\\xb4\\xa0\\x37\\xe8\\x0a\\xb3\\x5c\\x30\\xcb\\x28\\x20\\x3f\\x0a\\xf4\\x9c\\x4f\\x16\\x84\\x66\\x6a\\x55\\xca\\x9d\\x46\\xee\\xde\\x34\\xf8\\x24\\xee\\xe3\\x98\\xcf\\x62\\xae\\xbf\\x2b\\x2c\\x21\\x29\\x63\\x8d\\xb6\\x21\\xdf\\xc4\\xce\\x3e\\x29\\x76\\x1a\\xdd\\xa7\\xfd\\xc4\\xee\\xe7\\x71\\x30\\xd9\\x2f\\x6e\\x20\\x93\\x3f\\x91\\xff\\x9e\\x74\\xf5\\x1d\\x5d\\xa7\\xd2\\x6a\\x22\\xf7\\x1c\\x13\\x4d\\xcd\\x6a\\x17\\x92\\x12\\x87\\xf8\\x4c\\x49\\xe9\\x13\\x34\\xfc\\x45\\x02\\xac\\x48\\xae\\xd9\\x1d\\x8a\\xb5\\x15\\x15\\x5c\\x2c\\x58\\x28\\x4b\\x2f\\x48\\x72\\x17\\x0c\\xb7\\x11\\x60\\xfc\\x53\\xfe\\x27\\x3c\\xeb\\xcd\\x35\\x55\\x09\\x3a\\xd6\\xec\\x54\\xc5\\xe8\\xba\\x32\\x61\\x1e\\xb8\\x4a\\x9a\\xb9\\x1d\\x93\\xcc\\xa9\\xc8\\x49\\xdf\\xfc\\xbb\\x62\\x61\\x64\\x65\\x21\\x11\\x9e\\xc5\\x93\\xc7\\xd2\\x98\\x7f\\x84\\x06\\xe0\\xf8\\x0d\\xa1\\xa9\\xdc\\x9c\\x9c\\x8b\\xa0\\x0f\\xe6\\xc7\\xe3\\x04\\x91\\x93\\x0b\\x99\\x4a\\x1b\\x90\\xd8\\xb1\\x21\\x3c\\x10\\x51\\x92\\x19\\x31\\x14\\xcb\\x10\\x06\\x6f\\x80\\x0a\\x20\\x61\\x38\\xdf\\x6d\\xe0\\x46\\xd7\\xa6\\x4f\\xd4\\x1d\\xe2\\x88\\xc7\\xe7\\x9f\\x5b\\xa0\\xb8\\x68\\xfe\\x0c\\x57\\xcd\\x3c\\xa2\\xb1\\x30\\x9f\\x2e\\x27\\x8a\\x81\\x80\\x59\\x26\\x3b\\x9d\\x53\\x19\\xf3\\x95\\x15\\x58\\xaa\\x3a\\xb2\\xe3\\xf4\\x8a\\x97\\x2f\\x06\\xf9\\x45\\x63\\x63\\x78\\x46\\x78\\x84\\x75\\xda\\x38\\x40\\xb6\\xfa\\xc4\\x00\\x41\\x53\\x68\\x44\\x6b\\xca\\x14\\x98\\x2f\\xab\\xc3\\x7d\\x08\\xa0\\x42\\xdd\\x34\\x0f\\xa6\\x91\\x9c\\x07\\xdf\\xd2\\x49\\xc4\\xe9\\x04\\x29\\x41\\x64\\x46\\x0c\\x5b\\x8b\\xbe\\x30\\x43\\x68\\x7a\\xf1\\x8e\\x32\\x45\\x4c\\x31\\x0c\\xd9\\x19\\x01\\xa9\\xf2\\x49\\x8b\\x35\\x25\\xa4\\x14\\x5f\\xe0\\x90\\x22\\x68\\xd7\\x13\\x4c\\xa0\\xfc\\xb6\\xf2\\x24\\x18\\xdd\\x6a\\xe0\\xf3\\xeb\\x4a\\x62\\x43\\x99\\x90\\xad\\x7e\\x91\\xb3\\x03\\x0c\\xb1\\xb6\\x97\\xcc\\x13\\xa2\\x5c\\x02\\x96\\xa5\\x71\\x40\\xd0\\x26\\x7a\\x28\\x28\\xa2\\x1e\\x20\\xd2\\x65\\x11\\xa6\\xa8\\xe1\\x11\\x2a\\x8d\\xb8\\x21\\xea\\x04\\x49\\x93\\xe5\\xcc\\x13\\x16\\x37\\x65\\x17\\x56\\xc1\\x03\\x3d\\x48\\x0c\\x61\\xe9\\xd5\\x1d\\xd3\\x9c\\x74\\xb1\\xbd\\xa0\\x9e\\xe6\\xac\\x2e\\x76\\xa6\\xcb\\x95\\x5a\\xcc\\x27\\x56\\x8e\\x42\\x13\\x7d\\xf7\\x8b\\xb2\\x98\\xf2\\x45\\x66\\x28\\x5c\\xa1\\x58\\x15\\x79\\xb0\\xf3\\x32\\x45\\x00\\x3e\\x5a\\x6d\\x9e\\x16\\x00\\xba\\x00\\xae\\x7c\\xfa\\x39\\xbc\\xdf\\x22\\x11\\x4f\\x4f\\x83\\xae\\x7b\\xcf\\x2d\\x84\\xb4\\xc8\\x3b\\x3c\\x98\\x54\\xce\\xed\\x0d\\x59\\xb8\\x71\\x8d\\xcd\\xb8\\xbb\\x23\\xe1\\x8b\\x8c\\xe5\\x07\\xc8\\x0a\\xcf\\xb2\\xa6\\x15\\xe5\\x26\\x9c\\xae\\x1b\\x8f\\xbf\\xdf\\xcd\\x86\\xa7\\x40\\x90\\xfe\\xc4\\xdd\\x0d\\xfe\\x2b\\x37\\x9f\\x20\\x00\\x9c\\x50\\xf5\\x00\\xbf\\x16\\x63\\x8a\\x5e\\x2e\\x09\\x0c\\x45\\x05\\x1f\\x73\\xa5\\x8f\\x54\\x8a\\xdb\\xee\\x52\\x0c\\xdf\\x80\\xf7\\x6d\\x06\\x0a\\xba\\x84\\x44\\xb2\\x9b\\xe1\\x94\\x15\\x34\\xc9\\xc0\\x28\\x9a\\xda\\x82\\x58\\x43\\x97\\xbf\\x01\\xae\\x57\\x44\\xd9\\x3c\\x8c\\xac\\x4f\\xdb\\x60\\x3b\\xa4\\x46\\x4e\\xa9\\x11\\x85\\x94\\xfc\\x8a\\x3f\\x7e\\xd5\\x46\\x04\\x05\\x96\\x04\\x53\\x6c\\x3a\\x86\\x2e\\xac\\x05\\x62\\x8a\\xb8\\x6b\\xbc\\x50\\xd3\\x5a\\x66\\xc8\\xa2\\x04\\xb2\\xae\\x38\\x32\\x81\\xa7\\x46\\xc6\\xfb\\x14\\xc0\\x87\\x02\\x60\\x25\\x0b\\x58\\xb1\\x1d\\x8d\\xa1\\xd6\\x2d\\xcb\\x15\\xa3\\x7b\\x1b\\x08\\x3c\\x06\\xfd\\x1b\\xb9\\x5f\\xf5\\x46\\xf8\\xb1\\x6c\\x9a\\x01\\xd6\\x4e\\x25\\x77\\x4b\\xeb\\xbe\\xaa\\x00\\x7c\\x58\\xd3\\x40\\x1b\\x03\\x20\\x54\\x87\\xa5\\x06\\x31\\x86\\x08\\x86\\xb7\\x6e\\x91\\xef\\x4d\\x5d\\x81\\x84\\x50\\xb6\\xca\\x42\\x02\\xc1\\x97\\xe0\\xb3\\x20\\xf9\\xa6\\xa0\\x6d\\x4e\\x61\\x27\\x59\\x60\\xce\\x2f\\xa7\\x84\\x4f\\x0c\\xdb\\x26\\xf0\\x15\\xbf\\xdc\\x6e\\xf0\\xa5\\x7a\\x00\\x87\\xee\\xc7\\x0c\\x88\\xea\\x3d\\xe9\\x8b\\x26\\x87\\x19\\x8d\\x60\\x0a\\x9e\\xdc\\x56\\x9f\\x6d\\x0e\\x40\\x42\\x83\\xd5\\x66\\x2d\\x09\\x5c\\x26\\xc1\\x45\\x20\\x79\\xcc\\xbf\\xce\\x68\\x67\\x11\\xae\\x08\\xbc\\xc3\\xe8\\x8e\\x23\\xa1\\x45\\x52\\x27\\xa7\\x2a\\x4c\\x60\\xf6\\xba\\x3b\\x10\\x88\\x8f\\x1c\\x4c\\xd9\\x91\\x5e\\xf3\\xa7\\xad\\x53\\x9f\\x25\\x43\\x1b\\x8f\\xeb\\xd8\\xd6\\xbb\\xf7\\x08\\x9b\\xb6\\x6f\\x5f\\x31\\x2d\\xf8\\x98\\x92\\x7b\\x36\\xd0\\x11\\xd0\\x1e\\x35\\x21\\xbc\\x44\\x14\\x88\\x30\\xf5\\x46\\x62\\xa5\\x2f\\x2c\\x26\\xca\\x83\\x2e\\x5d\\x49\\xdd\\xc1\\x08\\x6f\\x40\\x27\\x4f\\xee\\x71\\x4f\\x57\\x59\\xd5\\xef\\x1a\\xa0\\xe7\\xdd\\x16\\x1b\\x68\\x16\\x07\\x4f\\x85\\xbe\\x05\\x86\\xe5\\x95\\x03\\x40\\x2c\\x6e\\x96\\x66\\x4a\\x48\\x10\\x8e\\x2c\\x34\\x2f\\xbd\\x64\\x0f\\xd4\\xb7\\x6c\\xe7\\x79\\xdf\\x9a\\x04\\x55\\x88\\x27\\xa9\\xa3\\xa5\\x18\\x29\\xa5\\xe4\\x98\\xd6\\x20\\xa4\\x3a\\x05\\x52\\x41\\xc1\\x6f\\x40\\xc9\\x0c\\x1d\\xa6\\xe5\\x52\\xd3\\xcf\\x03\\x02\\x07\\x6c\\x50\\xbb\\x1c\\xec\\xfb\\xe4\\x08\\xc6\\x6c\\x2f\\x94\\x18\\x02\\x37\\x3e\\x9d\\x94\\x11\\x53\\x9d\\xf0\\xe1\\xf5\\xc8\\x5f\\xdf\\x68\\x31\\x56\\xa2\\x45\\x1a\\x64\\x21\\x26\\x4e\\xef\\x2e\\xaa\\x92\\x97\\x77\\x2a\\xce\\x14\\x72\\x12\\xd6\\x8c\\xec\\x07\\xb1\\x0e\\x03\\x1c\\x6a\\xb5\\x53\\x8a\\x23\\x1a\\x79\\x32\\xeb\\x21\\x44\\x70\\x8e\\x23\\x72\\xe6\\x24\\xe5\\xa0\\xcd\\xca\\xec\\x42\\xf5\\x1d\\x0c\\x40\\xbc\\xae\\x04\\xe8\\x87\\xef\\x14\\x47\\xd1\\xc6\\x18\\x56\\x74\\xd0\\x88\\x27\\x12\\xd1\\x97\\x1d\\x0c\\x94\\x3e\\x5a\\x46\\xbc\\x7c\\x6c\\x40\\x6a\\x32\\x85\\x42\\xa6\\xc3\\x28\\x94\\x1d\\x0a\\xcb\\xfa\\xb3\\x9a\\xdc\\xdb\\xa0\\x90\\xa2\\x1c\\x00\\x17\\xe3\\x53\\x2b\\x3b\\x32\\x58\\x6d\\x3a\\x8a\\x53\\xcc\\xc4\\x94\\x01\\xbb\\x1a\\x06\\x46\\x1f\\x53\\xc0\\x62\\x1b\\xa9\\x0b\\x84\\x3c\\xa1\\xc4\\x04\\x0d\\x05\\x60\\x5c\\x10\\xf1\\x21\\x17\\x7a\\x87\\x72\\x6c\\xe2\\x20\\x7c\\xc6\\x60\\x87\\x81\\x80\\x91\\x71\\xbb\\x33\\x79\\xcc\\x4b\\x1e\\x1e\\xcc\\x98\\xee\\x08\\x4b\\x04\\x7d\\x1e\\x6d\\x9d\\x15\\xdc\\x8c\\x4c\\xd1\\xb4\\xc5\\x69\\xa7\\x93\\x2f\\xee\\x0d\\x48\\xf5\\xdd\\x19\\xc9\\x5b\\x17\\xea\\x6e\\x55\\x6a\\xec\\x98\\x87\\x3f\\xf9\\x05\\x4e\\x6c\\x4c\\x4d\\x12\\x4c\\x04\\x24\\x9c\\x04\\x83\\x26\\x81\\x10\\xa4\\x43\\x3c\\x08\\x47\\x6e\\x57\\xcc\\x15\\xf4\\xb5\\xa2\\x30\\xd4\\x8a\\x0b\\x2d\\xe2\\x0a\\xf8\\x69\\x82\\x63\\x04\\xb0\\x0a\\xfd\\x8a\\xd5\\x2c\\xf3\\xf3\\x51\\xe4\\x7c\\x5e\\x8f\\x9c\\xf8\\x30\\x4f\\xab\\x1c\\x03\\xf4\\x91\\x18\\x70\\x10\\xd4\\x5a\\x7c\\x1c\\x16\\x23\\x0f\\xa4\\x64\\x15\\x44\\x8e\\xa0\\x4d\\x70\\xb1\\x36\\x37\\x1c\\xd8\\x38\\x3c\\xd2\\xd7\\xe1\\x30\\x41\\x20\\x49\\xe5\\x41\\x00\\x1d\\x92\\xe7\\x91\\xba\\xcb\\x5a\\x4e\\xfb\\x41\\x0a\\x40\\xf2\\x06\\x7e\\xac\\xa2\\xb0\\xe6\\xdb\\x3b\\x23\\xa3\\x00\\x3a\\x71\\xcc\\x80\\x6b\\xa8\\x92\\x25\\x1b\\xb3\\x02\\xa7\\x7b\\xd4\\x70\\x04\\xa7\\x4c\\x3b\\x9d\\xac\\x8e\\xcc\\x05\\x39\\x2a\\x2b\\x2f\\x31\\x01\\xa2\\x41\\x6e\\x1e\\x83\\xdf\\x91\\xa2\\xe0\\x14\\x51\\xb6\\x81\\xef\\x58\\x3e\\x1c\\xc6\\xd4\\x9a\\x2e\\xd8\\xbd\\xde\\x27\\x59\\x7f\\x2a\\x8b\\x09\\xae\\x87\\x7a\\x28\\xa2\\x2c\\x31\\x52\\x7d\\x32\\xb3\\x4c\\x3e\\xe1\\x6c\\x0f\\x01\\xe6\\xfe\\xe0\\xd3\\x72\\xbe\\xb7\\xbf\\x14\\x44\\x8e\\xde\\x87\\x87\\x0d\\x30\\x03\\x8c\\xde\\x0a\\xa2\\x53\\x13\\x03\\xc2\\xbf\\xa5\\x09\\xe1\\x7e\\x80\\xa8\\x63\\xc9\\x41\\x46\\xa9\\xf6\\xd4\\x07\\xb1\\x07\\x23\\xed\\xcf\\x4a\\x15\\x38\\x14\\xd4\\x4d\\xb1\\xef\\xc8\\x5a\\xb2\\xe9\\x99\\xc9\\x63\\x48\\x0c\\x29\\x9d\\xda\\xb4\\x7d\\x32\\x90\\xd1\\xfe\\x5e\\x6c\\x6f\\x57\\x0a\\x3c\\x72\\xfa\\x16\\x62\\x4c\\x42\\x0b\\x15\\x7b\\x99\\xcd\\x5b\\x83\\x75\\x50\\xb0\\x22\\xbf\\x6f\\x46\\xfc\\x26\\x20\\x2c\\x26\\xe7\\xe8\\x87\\x5b\\xc6\\xb7\\xc1\\xe7\\x29\\x0c\\x6e\\xed\\x69\\x6a\\x5b\\x3e\\xd7\\x10\\x39\\xd9\\x2f\\x21\\x59\\xef\\xc2\\x48\\x22\\xe8\\x8d\\x4b\\xd9\\xde\\x4f\\x56\\x4c\\xd5\\x58\\x2a\\xf2\\x00\\x5b\\x22\\x0a\\x6d\\x4e\\x83\\x76\\xe1\\x1d\\x83\\x00\\x2c\\xd4\\x32\\xa8\\xf1\\x36\\x54\\x84\\x08\\x1e\\x15\\x1e\\x5a\\x20\\x64\\xa0\\x99\\x37\\xce\\xa5\\x82\\xe1\\x20\\x9c\\x04\\x47\\x94\\x92\\xf8\\x79\\x42\\x00\\x55\\x8c\\x38\\x32\\x4a\\x0d\\x10\\xdd\\x21\\xee\\x94\\x05\\x1f\\x33\\x3b\\x3d\\x07\\x50\\x23\\x70\\x42\\xe2\\xcf\\x24\\x25\\xee\\x4b\\x37\\x0b\\x6c\\x25\\x1e\\xe0\\xfb\\x76\\xd4\\x8b\\x95\\xc6\\xa0\\x01\\x9c\\x8d\\x47\\x3a\\xc5\\xca\\xee\\xe5\\x08\\x40\\x22\\x4b\\xad\\xf2\\xb0\\xd9\\x79\\xad\\xd0\\xc7\\xc4\\x81\\x6c\\xf2\\x14\\x31\\x19\\x88\\xee\\xb9\\xa8\\x8c\\x31\\xeb\\x52\\x27\\xef\\x80\\xa3\\x5a\\xb1\\x30\\x9b\\x7d\\xda\\xb4\\xba\\xa5\\x57\\x68\\x2b\\xcc\\x33\\xc2\\x06\\xf8\\x46\\x67\\x0a\\x8c\\x41\\x07\\xaf\\x8a\\x12\\xdc\\xcf\\x43\\x5d\\x7c\\x49\\x81\\x09\\x06\\xdc\\x94\\xa4\\xa6\\xf1\\x22\\x8c\\x8b\\x12\\x32\\xc4\\x4b\\x7f\\x42\\x65\\x87\\xb1\\x45\\x4a\\x84\\x20\\xda\\x25\\x75\\x8d\\x82\\x4e\\x0f\\x9f\\xec\\x81\\x77\\x73\\x7d\\xf0\\xf7\\xe8\\x28\\x7f\\xef\\x7c\\x92\\x71\\x09\\xda\\x78\\xfc\\x9a\\x4f\\x97\\x48\\x5c\\x54\\x0e\\x29\\x62\\x7a\\x1c\\xa1\\x18\\x8f\\x63\\x2b\\xa1\\xa0\\x4d\\x04\\x09\\xe3\\x19\\x8e\\xc5\\x2f\\xdb\\x9c\\xa4\\x56\\x08\\xf0\\x3e\\xff\\xdd\\xca\\x5f\\xda\\x42\\x7b\\x89\\x46\\x7f\\xeb\\xbf\\x02\\xfa\\x62\\x41\\x07\\x52\\x94\\x25\\x9f\\x72\\x2c\\x76\\xdb\\x79\\xab\\xbe\\x0a\\xe1\\x52\\x0a\\xde\\x81\\x17\\x45\\x86\\x87\\x49\\x41\\x11\\xe4\\xbd\\x0a\\x10\\x83\\x7c\\x78\\xeb\\xcc\\x07\\x5d\\xd5\\x0d\\xe3\\x26\\x6e\\x43\\x47\\xc3\\x7f\\x52\\xf1\\x61\\xa0\\x25\\x49\\xba\\x18\\xcf\\x50\\xac\\x0c\\x03\\xac\\xde\\xae\\xd9\\xa5\\xe2\\x50\\x4c\\xbc\\xeb\\xf5\\xe2\\xb6\\xc4\\xd5\\xf9\\xfc\\x61\\xa5\\x0c\\xc0\\x89\\x4a\\x62\\xfe\\x25\\x33\\xe4\\x02\\xed\\xaf\\x39\\x5c\\x91\\xa6\\xe2\\xcb\\xf0\\xbc\\x8d\\xf6\\x0a\\x0e\\xc4\\x41\\x03\\x27\\xd6\\x9b\\xe7\\xf2\\x74\\xbe\\x0d\\x89\\x18\\x77\\x51\\xbf\\xee\\x89\\xe1\\xdc\\x86\\xa7\\x4f\\x0d\\x62\\x03\\xae\\x95\\xd9\\x37\\x04\\xc9\\x38\\x42\\xe5\\x97\\xec\\xee\\x2a\\x3a\\xb1\\x7d\\x62\\x0c\\x5d\\x93\\x4d\\x28\\x1a\\x52\\x92\\x72\\x34\\x1c\\x28\\x28\\x18\\x30\\xd8\\xcc\\x69\\xb9\\x34\\x45\\x04\\xb1\\xaa\\xa0\\xf1\\xf1\\xce\\xdf\\x57\\xa9\\x59\\x04\\x3f\\x28\\x17\\x84\\xd3\\x83\\x9d\\x03\\x6c\\x7d\\x8f\\xb6\\x6a\\x5e\\x9c\\x3a\\x78\\xd0\\x45\\x90\\x43\\xef\\xe0\\xba\\x7e\\x29\\x67\\xbb\\x12\\x13\\x19\\xd3\\xbb\\x8a\\x17\\x27\\xcd\\x23\\x12\\xa5\\xc0\\x5c\\xf1\\x2c\\xc1\\x4a\\x23\\x1c\\xf5\\x85\\x72\\x24\\xde\\x59\\xb1\\x0d\\x46\\xbf\\x0c\\x4f\\xd3\\x02\\xe1\\xb9\\x1b\\xb4\\x35\\xc6\\xfd\\x64\\xc3\\x7f\\xbf\\x7d\\xc2\\xbe\\x61\\xb1\\x99\\xdc\\x3d\\xff\\x58\\x18\\xa2\\x9c\\x46\\x43\\x0b\\x0b\\xf2\\xd2\\x2b\\x1d\\x6c\\xf2\\x89\\x64\\x69\\x34\\x8a\\x7c\\xf8\\xf2\\xed\\x0a\\x83\\xaf\\x29\\x03\\x44\\xc4\\x36\\x2d\\xf9\\x00\\x7a\\xfb\\x25\\xc8\\xde\\xae\\xd6\\x60\\x81\\xe7\\x2c\\xfc\\x8c\\x25\\xe2\\x1c\\x68\\x94\\x8a\\x4b\\x18\\x19\\x62\\x05\\x40\\xe3\\xa3\\x1d\\x22\\x70\\xc0\\xac\\x99\\x98\\x99\\xe6\\xc5\\x1b\\x14\\xb1\\x51\\x13\\x98\\x2a\\xc4\\xd6\\x31\\x4a\\x57\\x17\\x3b\\xd7\\x79\\x23\\xe6\\x23\\xd9\\x9e\\xd8\\x4c\\xd4\\x5d\\x2e\\x23\\x87\\x73\\x4a\\x6c\\x30\\xff\\xb1\\x9e\\xad\\xa3\\xbf\\x34\\xb4\\xbb\\x07\\x8d\\x06\\xda\\x7e\\x8f\\x94\\x09\\x22\\x0e\\xca\\x0f\\x37\\x2f\\x39\\xfb\\xd9\\xa4\\x49\\xaa\\x6c\\x3a\\xa7\\xb4\\x4c\\x98\\x78\\x5f\\x87\\xc7\\x09\\x6d\\x66\\x6e\\x7b\\x44\\x39\\x5e\\x09\\x43\\x2f\\xcb\\x3d\\x61\\x13\\x25\\xfd\\x55\\xf5\\xfc\\x21\\x37\\x6b\\x67\\x5c\\x81\\x70\\xe2\\x4d\\xec\\xc1\\xc1\\xcb\\x85\\x77\\x4d\\x4a\\x02\\x23\\x85\\xf8\\x1e\\x1f\\x48\\xe2\\xac\\x24\\x42\\xf9\\x70\\x45\\x70\\xae\\x8e\\x41\\x67\\x6a\\x65\\x4a\\xd9\\xe5\\x85\\x3d\\x5d\\xc9\\x20\\x11\\x58\\xa3\\x0a\\x9b\\x9d\\xc6\\xa5\\x38\\xe5\\x89\\xe9\\xba\\xb0\\x0d\\x31\\x39\\x39\\x0d\\xbb\\x2c\\x84\\xd2\\xc4\\xd2\\x46\\x71\\xe4\\x39\\xd0\\x59\\x95\\xe0\\x4b\\x96\\x55\\x03\\x98\\x51\\x3b\\x50\\x73\\xd1\\x0d\\x8a\\x34\\xd9\\x9f\\xc0\\x7e\\x80\\x30\\x44\\xc7\\x80\\xc6\\x86\\x49\\x2a\\x7d\\xa0\\x79\\xec\\xcb\\x3f\\x20\\xea\\xc6\\x98\\x2e\\x52\\xac\\x14\\xa4\\xa4\\x65\\xb4\\x14\\x56\\xe4\\xa4\\x16\\x7e\\xa6\\x02\\xd0\\x4c\\x35\\x9b\\x2c\\x27\\xaa\\x63\\x70\\x62\\x1a\\x21\\x39\\xb4\\x89\\x06\\x28\\x3b\\xb4\\x84\\x00\\x1b\\xca\\x83\\x52\\x57\\x9b\\x95\\xde\\xc6\\x62\\x0d\\x1c\\x8e\\x0d\\x10\\xc7\\x78\\xc0\\x32\\xb7\\xd0\\x8b\\xf8\\xa7\\xbf\\x31\\xe2\\x6f\\xb4\\xc0\\x57\\xa4\\x12\\xff\\xfc\\x8c\\xcf\\x04\\x22\\xed\\xe4\\xbd\\xe1\\x70\\xa5\\xa7\\x24\\x46\\xe0\\xcd\\xb9\\x0c\\x3e\\x15\\x20\\x1a\\x26\\x62\\x9c\\x45\\x4d\\xff\\x1b\\x15\\x34\\xd4\\x8c\\x54\\x04\\x07\\x8b\\x15\\x10\\x83\\x86\\x4c\\xcb\\xac\\x45\\xdf\\x3d\\xa8\\x44\\x53\\xac\\x6d\\x6a\\x77\\x4c\\x2e\\x4e\\x21\\x21\\x0b\\xca\\xce\\xdd\\x96\\x4a\\x54\\xb4\\x6b\\xdc\\xd7\\xcc\\x95\\xc4\\x10\\x01\\x4b\\x08\\x39\\x44\\xbc\\x38\\xbf\\x65\\x8e\\x42\\x25\\x91\\xf8\\x36\\xe9\\x3a\\xa7\\x31\\x2e\\x48\\x00\\xb2\\x10\\x21\\x28\\x4e\\x55\\xbd\\xcb\\xc5\\xd1\\x75\\x3f\\x90\\x0d\\x53\\x87\\xe6\\xc8\\xfe\\xe4\\x07\\x9c\\x47\\x44\\x54\\x11\\x1d\\xfd\\x2e\\x8c\\x9f\\x6a\\xe5\\x8b\\xac\\x1b\\x0a\\xb4\\xf5\\x81\\x04\\xc9\\xd1\\xcc\\x86\\xe3\\x33\\xc4\\x82\\x94\\x84\\x15\\xa0\\x26\\x1f\\xda\\x1d\\xe1\\x2c\\x2e\\xac\\x23\\x16\\x4d\\xed\\xbf\\xfb\\xac\\xc7\\x07\\x73\\xc0\\xa3\\x3c\\x09\\xe8\\x02\\x8e\\xf3\\x8f\\x2e\\x9f\\x24\\x0b\\x67\\x81\\x3f\\xa9\\x7b\\x74\\x90\\x3b\\x44\\xc4\\xc1\\xaa\\x0d\\x4f\\x12\\x78\\x82\\x45\\xb6\\xf2\\x7d\\x25\\x1a\\x48\\x82\\xc5\\x73\\x56\\xc9\\xb1\\x22\\xcd\\x07\\xbd\\x5e\\x24\\x89\\x13\\x06\\x7d\\xbe\\x62\\xb9\\x12\\x5a\\x02\\x53\\xf3\\xb7\\x0e\\xd9\\x26\\x5e\\x90\\x26\\xd9\\xb3\\x81\\x64\\x75\\x7e\\xad\\xbb\\x2f\\x5f\\x4b\\x21\\x86\\xb8\\xd0\\x49\\x29\\x34\\x55\\x24\\xae\\xd2\\x39\\x1c\\x0a\\xb6\\x61\\xd5\\xbd\\x40\\x2f\\xdb\\x06\\x48\\x8e\\xac\\x0f\\x8d\\xee\\x35\\xcc\\xf3\\xd0\\xe1\\xa2\\x47\\x06\\x5f\\x85\\x57\\x59\\x86\\x0f\\xbb\\x83\\x9a\\x5d\\x80\\x2d\\x8c\\xa8\\xcc\\x89\\x8d\\xa5\\x16\\xd8\\x6d\\xaa\\x50\\xb3\\x9d\\xe4\\xb6\\xc1\\xb5\\x22\\x66\\xb3\\x13\\xbf\\x20\\x98\\x6d\\x6d\\x44\\x5e\\xf3\\xc1\\xba\\x1d\\x1b\\x59\\x29\\x13\\x5d\\x10\\xf8\\x24\\x16\\x23\\x18\\x9e\\x17\\x15\\xce\\x1e\\xf7\\xc5\\x2a\\xd1\\x8f\\x81\\xac\\x24\\x2a\\x80\\x47\\x39\\xe7\\x80\\x1d\\x73\\x99\\x89\\x61\\x29\\x7d\\x14\\x4d\\xfd\\x91\\x71\\xb8\\xa2\\x0e\\xd5\\xaf\\x49\\xd1\\x19\\x91\\x39\\x5e\\xd3\\x25\\x01\\x1b\\x44\\xe8\\x90\\x00\\x71\\x71\\x7c\\x4f\\xe8\\x51\\xba\\x11\\xc8\\x3a\\x28\\x96\\x98\\x59\\x73\\xa5\\xad\\x9a\\xcc\\x76\\xb4\\xe9\\x0b\\xd8\\x2c\\x18\\xc5\\xa0\\x60\\xb3\\x6a\\x11\\x05\\x8c\\x0c\\x8d\\x0b\\xb7\\x91\\x32\\x4e\\x82\\x83\\x8b\\x58\\xe2\\x21\\x6d\\x15\\x9f\\x73\\xc5\\x1d\\x86\\x54\\x4c\\xcb\\x79\\xf5\\x11\\xe3\\xbd\\x27\\xcc\\xd5\\x87\\x98\\xe8\\xac\\x35\\x7f\\x2e\\x68\\x68\\xe6\\xe2\\xfa\\xb3\\xcc\\x1c\\x02\\xe5\\x8f\\x70\\x64\\x23\\x22\\x4b\\x4d\\xe7\\xbe\\x26\\x97\\x78\\x87\\xa0\\x2c\\x11\\x8a\\xef\\x78\\x14\\x04\\x88\\xa6\\xb2\\xb9\\xe4\\x33\\xdb\\x3a\\x01\\x4a\\x4d\\x0b\\x97\\xdc\\xe5\\x17\\x39\\x88\\x36\\x13\\x21\\x02\\x68\\x57\\x05\\x07\\xa1\\x6d\\x88\\xcc\\x84\\x68\\xdb\\x77\\x52\\x36\\x42\\x40\\x6d\\xf7\\xb9\\x33\\x13\\x84\\x5c\\x94\\x6c\\x3c\\x11\\x88\\xa1\\x1e\\x7f\\xc5\\x2f\\x23\\x43\\x3c\\xf4\\x3f\\x02\\xa7\\xcc\\x52\\x96\\xe8\\x06\\x16\\xbd\\xf9\\xf8\\x62\\x11\\xab\\x6e\\x68\\x7c\\x2b\\xaa\\xd0\\x50\\x07\\x4a\\x5e\\x8a\\xb2\\xec\\x79\\xd2\\x83\\x41\\x90\\x4f\\x4c\\xa2\\xeb\\x41\\x53\\xee\\xc8\\x6f\\x4b\\xde\\xd7\\x07\\xf2\\x6b\\x03\\x73\\xba\\xe4\\x59\\xb5\\x7b\\x04\\x6d\\x87\\x9d\\x7a\\xd8\\xc7\\xa3\\x9e\\x83\\xea\\xf1\\x35\\xb2\\x58\\x41\\x34\\xb0\\x83\\x79\\x2e\\x80\\xec\\x5e\\x8a\\x6d\\x1a\\x3b\\x18\\x47\\x40\\x87\\x4e\\x6a\\x0a\\x38\\x5b\\xaa\\xca\\xb9\\x8e\\x89\\xc9\\x7a\\x63\\x0f\\xd0\\xd2\\x0d\\x16\\x8c\\xac\\x9e\\x00\\xa2\\x74\\xae\\x80\\xd9\\xb8\\xaf\\x9f\\x48\\x7d\\x6b\\x4c\\x17\\xc9\\xdc\\x08\\x3d\\x80\\x0d\\x89\\xa0\\xfb\\xb8\\x4e\\x7c\\x59\\x13\\xa3\\x12\\x8f\\xe7\\xb2\\x1d\\xc2\\x2a\\x43\\xfb\\x84\\x78\\xf1\\xc3\\x35\\x0d\\x7b\\xe9\\x71\\x23\\x47\\xb8\\x02\\x30\\x71\\xc2\\x4f\\x71\\x72\\x2c\\x5e\\x5f\\x03\\x96\\x08\\xb0\\x5b\\x60\\x93\\xdd\\xd4\\x65\\x0c\\xc1\\xd0\\xe4\\x12\\xac\\x9a\\x0d\\x91\\xda\\xf9\\x09\\xeb\\x39\\x33\\xd2\\x22\\xcd\\x14\\x42\\xaa\\xa8\\x40\\x38\\xe8\\x84\\xe5\\xbb\\x48\\x63\\x82\\x66\\x9a\\x96\\x33\\xbc\\x4c\\x70\\x9d\\xf4\\x5b\\x9e\\x4f\\x6b\\x2b\\x8d\\x37\\xcf\\x17\\xb7\\x16\\x54\\x67\\x6b\\x68\\xec\\x9a\\x98\\x6d\\xc5\\x4c\\x9b\\xa3\\xa0\\x3e\\xff\\xb8\\x73\\xbd\\xdb\\x50\\xd4\\x1a\\x23\\x54\\xdc\\x08\\x9d\\x65\\x8a\\x38\\x15\\x8c\\x8d\\xc9\\x39\\x30\\xc0\\xbb\\x65\\x16\\x7c\\xd3\\x9d\\x61\\x51\\xd2\\xae\\x1f\\x18\\x68\\x2c\\x36\\xb6\\x4a\\x69\\x24\\xdc\\x57\\x98\\x48\\x66\\x1c\\x08\\x5a\\x2d\\x44\\x46\\x56\\x71\\x19\\x5b\\xc9\\x4e\\x72\\xc3\\x8f\\x8a\\xdb\\xfd\\x45\\xb2\\x56\\x7c\\x4c\\xf1\\x76\\x2c\\xae\\x00\\x63\\xa3\\x97\\x5d\\xe2\\x7b\\xc6\\xe6\\xa4\\x16\\xaa\\xfd\\xa3\\x87\\x2c\\x43\\x0a\\xaf\\xb0\\x38\\xb5\\xb5\\xa1\\x90\\x9f\\xb8\\xc3\\x8f\\xab\\x80\\x4f\\x3c\\x2f\\xb8\\x89\\xaf\\x03\\x86\\xa7\\xb8\\xb4\\x50\\xb7\\xc3\\x38\\xc1\\x2d\\xc6\\xc8\\xa3\\x60\\x52\\x3f\\x2d\\x3e\\x54\\xfb\\x65\\x07\\x57\\x10\\x23\\x37\\xec\\xe2\\xb7\\xe0\\x40\\x8c\\x90\\x1c\\x23\\x57\\x89\\xc0\\xa3\\xa1\\x50\\x35\\x4a\\x9d\\x9d\\xda\\x59\\x66\\x42\\x54\\xce\\x60\\xb4\\x43\\x3f\\xa1\\x62\\xf2\\x0b\\x06\\xbe\\x8c\\x24\\x04\\x1f\\xd8\\x4a\\x59\\x5a\\xb0\\x49\\x20\\x4c\\xd9\\x00\\x5f\\xc2\\xf7\\x80\\x57\\x76\\xb6\\xc7\\xf4\\xfc\\x84\\x99\\x8f\\x6d\\x28\\xeb\\x23\\xb7\\x4c\\x92\\x84\\xb3\\x68\\xc4\\x60\\x54\\xb0\\xf7\\x1d\\xd1\\xed\\xe0\\x20\\x63\\x9c\\x34\\x67\\xb5\\xd1\\x74\\x1b\\x21\\x39\\xe4\\x77\\x59\\xcd\\x29\\x45\\xc7\\xe8\\xb4\\x4b\\x91\\x78\\xe1\\x64\\xb4\\x30\\x9e\\xe0\\x6a\\xbf\\x92\\xca\\x39\\x7a\\x0d\\x29\\xd2\\x15\\x4e\\x25\\xe9\\xcd\\x87\\xea\\x5e\\x35\\x61\\xd5\\xc2\\x80\\x86\\xe3\\x64\\xd4\\xbc\\x62\\xdd\\xe7\\x14\\x33\\xea\\x5b\\x2d\\xfe\\x4e\\x4c\\xc8\\xf2\\x83\\x49\\x09\\xe3\\x78\\x56\\x16\\x59\\x85\\xf3\\x0b\\xd8\\x4b\\x63\\xe2\\x71\\x76\\xb1\\x3d\\xcf\\xdb\\x03\\x26\\xa4\\xb1\\x9c\\x65\\x14\\x32\\x82\\xe9\\x65\\x55\\x91\\x01\\xb2\\x0b\\x0a\\x50\\xb6\\x86\\x3c\\x6d\\x1f\\xf2\\x92\\x71\\x48\\xbd\\x30\\x7d\\x34\\x8b\\x02\\x8f\\x10\\x88\\xd1\\xf5\\x7d\\x59\\x02\\x0f\\x81\\xb4\\x81\\x32\\x02\\x21\\xf3\\x72\\xb8\\x77\\x0b\\xcf\\x82\\xa2\\x93\\xae\\x80\\xa1\\x90\\x88\\x4b\\xf4\\x17\\x52\\xca\\x12\\xa3\\x10\\x54\\xc4\\x9a\\x9d\\xb8\\x53\\x23\\xe3\\xd1\\x36\\xf2\\x9a\\xc1\\x89\\x74\\x39\\xf4\\x76\\x91\\x32\\x3d\\x9e\\x91\\x06\\xbb\\x48\\x10\\x9a\\x8a\\xd8\\x28\\x06\\xc0\\xf0\\x75\\x4d\\xec\\xc3\\xc6\\x71\\xf2\\xf4\\x41\\x85\\xda\\x70\\xd0\\xd8\\xcf\\x4c\\x69\\x9d\\xd6\\x2a\\xfa\\x76\\x42\\xfd\\xb0\\xa8\\x5a\\xe3\\x19\\x8a\\x2d\\xa2\\xb3\\xcf\\x48\\x2e\\x3c\\xd4\\x48\\xd8\\x0a\\x25\\xc5\\x95\\x41\\x6b\\x88\\x12\\x86\\xf8\\xe9\\x50\\x01\\x99\\x0a\\xe3\\x67\\xc5\\x08\\x04\\xc8\\xe0\\xf5\\xde\\xdc\\x9a\\x15\\x13\\xfb\\x22\\x5f\\x8a\\x3f\\xd0\\x04\\x93\\x3a\\x82\\x82\\x86\\xe6\\x4d\\x6c\\xa0\\x0a\\x12\\x7f\\x7e\\x40\\x88\\x33\\x22\\xb5\\x92\\x27\\x0b\\xdb\\xe2\\xc2\\xd9\\x83\\xd6\\x72\\xfe\\xb2\\xa5\\x9c\\x69\\xdb\\xbe\\x4a\\xec\\xb9\\xe5\\x90\\xdc\\xff\\x1d\\x4b\\x21\\x8a\\xca\\xa2\\x54\\xca\\xd8\\x59\\xdc\\x55\\x2a\\x5a\\xd2\\xb2\\xb5\\xf8\\xf1\\x61\\xa4\\x02\\x58\\x8b\\xb9\\xb0\\x74\\xd0\\x09\\x6b\\x24\\x4d\\x20\\xae\\x3b\\x6d\\x8b\\x23\\x45\\x12\\xf7\\xeb\\xb3\\x91\\x4b\\x90\\x3e\\xfa\\x7a\\x56\\x0e\\xd9\\x3d\\xa2\\x06\\xdd\\x8a\\xe3\\xf9\\x46\\x4a\\xf2\\x03\\xf0\\x22\\xb3\\x23\\x83\\x9a\\xa9\\x31\\x41\\x57\\x31\\x1d\\x77\\xb7\\xdb\\xbd\\xf8\\x24\\x11\\x0d\\x79\\xd8\\xb9\\x55\\xf2\\x2c\\x31\\x4b\\x8c\\x60\\x07\\x45\\xeb\\x29\\xe9\\x1b\\xc2\\xd3\\xe2\\xb6\\xe3\\xb3\\x6b\\x46\\x5a\\x58\\x64\\xd1\\xa2\\xcc\\x8f\\x9e\\xab\\x1f\\xac\\x9a\\x1d\\xe8\\x85\\xbb\\x5d\\x1b\\xfb\\xa6\\x87\\x7a\\x9a\\x9b\\x6f\\x62\\x9e\\x44\\xc5\\x30\\x3d\\x91\\xc1\\xfe\\xdc\\x3a\\x4e\\x0f\\xf7\\x69\\x91\\xc6\\xf2\\x4d\\xf5\\xdc\\x1e\\x33\\xbe\\x69\\xfe\\xd4\\x03\\xc3\\x9a\\x62\\x02\\xd6\\x0e\\x5a\\x3d\\xc7\\x4b\\xa5\\x20\\x8a\\xe6\\xe3\\x22\\xc7\\xac\\x6c\\x7b\\x81\\x2b\\x53\\x0c\\x11\\x18\\x38\\xb2\\xe5\\x7b\\x4a\\x2b\\x39\\xa8\\xec\\x46\\x65\\xa0\\x40\\x93\\x66\\x80\\x06\\x3f\\xe8\\x11\\xb2\\x89\\xe7\\x6c\\x08\\xa7\\x58\\xd3\\x07\\xa8\\xe0\\xab\\x4c\\x07\\x82\\x40\\x9b\\x74\\x20\\xa4\\xab\\x5a\\xd5\\xeb\\x7b\\x95\\xe1\\x28\\xd8\\xb0\\xca\\xda\\xb7\\x0a\\x79\\x8c\\x59\\xca\\xf8\\xe1\\x24\\x1b\\x15\\xef\\x7d\\xfd\\xa2\\x5c\\x8d\\x94\\x47\\x1b\\x2a\\x3f\\x3b\\xec\\xa9\\x30\\xa1\\xce\\x17\\x1a\\x15\\x3d\\x89\\x87\\x3f\\x66\\x09\\x43\\xe8\\x18\\x41\\x7a\\x6a\\x0c\\xa7\\xff\\x26\\x65\\x19\\x60\\x69\\x18\\x6f\\x2b\\x99\\xe0\\xe8\\x9b\\xa3\\x14\\x21\\x0c\\x60\\x08\\x65\\x99\\xc4\\x23\\x2a\\x49\\x4a\\x80\\xa8\\x88\\x82\\x45\\xf2\\x6b\\x17\\x21\\x4c\\x06\\x43\\x36\\x2d\\x62\\xfb\\xda\\x76\\xaf\\x53\\x05\\x0a\\x0d\\x9a\\x8f\\x14\\x60\\xbb\\x56\\xc9\\x2e\\x0a\\x9a\\x43\\x28\\x3e\\x65\\x9b\\xd2\\xd8\\x8e\\xa9\\xb8\\xdf\\x09\\x8c\\x17\\x2f\\x08\\x28\\x98\\x0a\\xe9\\x9f\\x45\\x09\\xb4\\x25\\xeb\\x96\\x0d\\x8e\\x0e\\x0c\\xc0\\x7e\\xcd\\x49\\xd8\\xda\\xd9\\x8a\\x22\\x1d\\x05\\x78\\xe0\\x54\\x27\\x4e\\x74\\x18\\xc2\\x72\\x84\\x70\\xa9\\x56\\x2a\\x6d\\xf7\\xf5\\xae\\x8b\\xec\\x58\\x9a\\x6f\\xcf\\x69\\x6c\\x11\\x89\\x4d\\xfd\\xd0\\xb5\\x0d\\x42\\x8d\\x43\\x96\\x12\\x89\\xe7\\xeb\\x92\\x74\\xa8\\x7d\\x4f\\xe5\\xb6\\x44\\x12\\x43\\xcc\\xc7\\x21\\x61\\x02\\xcf\\xf9\\x19\\x5b\\xd4\\x5b\\xff\\xa4\\xd4\\x68\\xd3\\x59\\xb3\\xa4\\x49\\x97\\xc1\\xc3\\x0a\\xf0\\xaf\\x4f\\xbb\\xe9\\x11\\x88\\x44\\x27\\x03\\xb4\\x7b\\x67\\x3a\\x10\\xd7\\xf2\\x64\\x88\\x93\\x14\\xc4\\xfa\\xd4\\x62\\x23\\xc7\\x21\\x18\\x0e\\x46\\x49\\x27\\xe8\\x67\\x74\\x62\\x8a\\x07\\xb8\\xe4\\xd3\\x9c\\x40\\xc4\\x4d\\xc3\\x33\\xbb\\xab\\x67\\xb9\\x01\\xb1\\xb4\\x57\\x9a\\x65\\x01\\x4d\\xd2\\xe6\\xb4\\xac\\x52\\x8a\\x4b\\xa9\\xea\\x6d\\x08\\x6f\\x0a\\x84\\x94\\xae\\x7f\\x1a\\x97\\x15\\xb0\\x4b\\xd0\\x09\\x3e\\x48\\x54\\x44\\x03\\x8c\\xcd\\x04\\x2a\\x33\\x4a\\xa4\\xed\\xa0\\x34\\x71\\x4c\\x3e\\x1a\\x5a\\x14\\x02\\x1e\\x1b\\xfb\\xc8\\xc8\\xde\\x14\\xed\\x92\\x79\\x75\\xb7\\xb3\\x10\\x13\\x91\\x24\\x9a\\x8d\\x4d\\x60\\x2e\\xf4\\x92\\x18\\x64\\xf5\\x3a\\x64\\x47\\xdf\\xc8\\xcd\\xff\\xce\\xa6\\xfc\\xd1\\x92\\x22\\xf7\\x22\\xbf\\x15\\x66\\x2f\\x61\\xa1\\xf0\\xbe\\x31\\x8a\\x00\\xb2\\x18\\xc1\\x1b\\x8f\\xf1\\x18\\xa1\\xb8\\x47\\x1f\\x93\\xac\\x9c\\xfe\\x91\\x66\\x66\\xb9\\x8a\\x06\\xe6\\xcf\\xa0\\x06\\x2c\\xeb\\x11\\xb4\\xf7\\xca\\x45\\xfe\\x66\\x43\\x1d\\x80\\xd7\\x97\\x11\\xb4\\x41\\xde\\x05\\x4d\\x4b\\x91\\xc0\\xc4\\x6f\\x14\\x9b\\x99\\x52\\x80\\xa5\\xbb\\x10\\x22\\x9e\\x05\\xb8\\x93\\x67\\x5d\\x40\\x65\\xcc\\x26\\xdd\\x75\\x71\\x82\\xba\\x0e\\x94\\x70\\xf4\\x22\\x96\\xd5\\x1a\\x4d\\x86\\x0e\\x1e\\x86\\x3c\\xd2\\x44\\xd0\\xc3\\x41\\xfd\\x82\\x32\\x77\\xe8\\x5f\\xc0\\x96\\x54\\x40\\x45\\xad\\x4d\\xaf\\x80\\x99\\x1d\\xe3\\x0e\\x0c\\xd2\\x9a\\x04\\x59\\x89\\xe1\\xa6\\x22\\x72\\x0e\\x41\\xec\\x73\\x33\\x00\\x0c\\xa8\\x8b\\x06\\x27\\x94\\xd2\\xd0\\x54\\x64\\x16\\x11\\x6e\\x37\\xa5\\x88\\x38\\x08\\x18\\xc4\\x58\\x8a\\x4d\\xfc\\x4e\\x31\\x4a\\x78\\x37\\x43\\x08\\x19\\xbe\\x82\\xd0\\x2d\\x45\\xb6\\x70\\x4f\\xe8\\x91\\xb6\\x61\\x5c\\x84\\xee\\x91\\x03\\x67\\xa0\\x9f\\x11\\x46\\x61\\x36\\x18\\x4a\\x02\\xa7\\x9c\\xaf\\x1f\\xa2\\x23\\x8a\\x4c\\x29\\x01\\x03\\xd2\\x57\\xba\\x11\\x06\\x42\\x06\\x19\\x50\\x41\\xe3\\xcd\\x53\\x54\\x2c\\x63\\x40\\x13\\xc9\\xc7\\xee\\x21\\xce\\x06\\x1b\\x2a\\x91\\xc0\\x0f\\xef\\xa4\\xcd\\xc6\\x36\\x4b\\x0e\\x95\\x34\\x0b\\xd5\\x8f\\x6c\\xe2\\x63\\x5b\\xf1\\x5c\\xdf\\x8a\\x03\\x2e\\xc4\\x40\\x40\\x06\\xa3\\x69\\xaa\\x23\\xe3\\xa4\\xdb\\x9a\\x50\\x22\\x88\\x4b\\x08\\x6e\\x81\\xb6\\x1c\\x4f\\xc3\\xd0\\x0f\\x87\\xa1\\x01\\xfd\\xd8\\x41\\xfe\\x4f\\x37\\xde\\x59\\x3e\\x67\\xf1\\xb0\\x94\\x7c\\x8e\\x3b\\x79\\xef\\x93\\xae\\x86\\xdc\\x67\\xdd\\x18\\x46\\x20\\x8c\\xe7\\x70\\x35\\x98\\xf8\\xdb\\x44\\xec\\x1c\\xec\\xf0\\x10\\x25\\x98\\xf4\\x5b\\x27\\xe6\\x1c\\xda\\x7b\\x40\\x12\\x85\\x7c\\x33\\x70\\x78\\xf0\\x5b\\x3a\\x98\\x59\\x37\\x5d\\x04\\x76\\xe3\\x4d\\xb8\\xe4\\x1a\\x04\\x9d\\x48\\x80\\x27\\x4d\\x05\\xb4\\xcc\\x51\\xf8\\x63\\x35\\xe3\\x17\\xfd\\x85\\x30\\x9f\\xa3\\xf2\\x18\\x50\\xf5\\xc7\\x38\\xbe\\x90\\xf7\\x27\\x1c\\xc2\\x83\\xac\\x39\\xa4\\xf5\\x69\\xef\\x1b\\x9d\\x85\\xbf\\x38\\x74\\x4d\\xea\\xd3\\x93\\xf5\\xfb\\x08\\xde\\x70\\xe3\\x89\\x62\\x59\\x90\\x99\\x81\\x75\\x62\\x4e\\xd6\\x71\\x46\\x7d\\x61\\x40\\x3f\\xa9\\x4b\\x06\\xdc\\xe5\\xe0\\xe6\\xc7\\xa7\\x4d\\xa1\\x4c\\x6c\\x38\\xad\\x07\\x2e\\x1f\\xe3\\x35\\x72\\x5b\\x61\\x38\\xb0\\x1c\\x66\\xff\\x9a\\xb7\\x43\\x29\\x87\\x89\\x2d\\x45\\x13\\x7f\\xd5\\x55\\x9f\\xa9\\x48\\x4f\\xa8\\x6c\\x31\\x1a\\xf6\\xac\\x29\\xfc\\x60\\x49\\x4c\\xe0\\x47\\xcc\\x03\\x45\\x43\\xa3\\xbf\\x87\\xeb\\x99\\x72\\xe8\\x4e\\x6a\\x29\\x44\\x0a\\x58\\x31\\x86\\xad\\x89\\x1a\\x78\\x41\\x0a\\x00\\x1c\\x40\\xe3\\xbf\\x5b\\x6e\\xe0\\x36\\x02\\xfc\\xd0\\x80\\xbe\\x27\\x56\\x76\\xc9\\x7d\\x08\\x64\\xe4\\x78\\xfb\\x61\\xc8\\x90\\xb0\\x1c\\x53\\x59\\x6f\\xa1\\x33\\x35\\xde\\x5d\\x50\\x0a\\xb2\\x0e\\xcf\\x3c\\xd5\\x90\\x37\\x7d\\x93\\xcb\\xdf\\x64\\xd6\\x33\\x91\\x19\\x43\\x47\\xf9\\xb2\\x10\\xf4\\x30\\x43\\x08\\xc3\\x04\\x1f\\x2f\\x6d\\xa7\\x00\\xab\\x31\\x68\\x4d\\xf7\\x65\\xc4\\x09\\xe8\\x24\\x52\\x91\\x64\\xac\\xc9\\x88\\x0a\\xdc\\xe9\\x0b\\xdc\\x82\\xa7\\xc5\\x70\\x94\\x2c\\xb9\\x78\\x61\\xdb\\x21\\x7d\\xf6\\xa1\\xa8\\xe1\\x11\\x8f\\xa7\\xdd\\x96\\xf8\\x39\\x65\\x34\\x23\\x4c\\xc7\\x3d\\x1a\\x39\\x30\\xf2\\xe6\\xc4\\x32\\x30\\x23\\x10\\xee\\x93\\xb9\\x2e\\x42\\xdf\\xce\\xc7\\x97\\x05\\xd6\\x11\\x17\\x99\\x81\\xcf\\x79\\x98\\x1c\\x83\\x09\\xb9\\xfb\\x62\\xd8\\xa4\\x85\\xe1\\x59\\x76\\x77\\x45\\x50\\x96\\xc5\\x07\\x47\\x49\\xd2\\xa0\\x66\\x42\\x5a\\x15\\x81\\x49\\xc6\\x26\\x8d\\x7c\\xff\\x59\\xc6\\xe2\\xe9\\x15\\xb4\\x73\\x99\\xf4\\x8f\\xde\\x72\\xc5\\x1e\\x82\\x34\\x54\\xb3\\xb5\\xc4\\xc8\\xf8\\xf2\\x8b\\x82\\x9b\\x62\\xca\\xff\\x34\\xb5\\x2e\\xc3\\xb0\\x24\\xc0\\xe5\\x5f\\x74\\x9e\\x05\\x64\\x10\\x0c\\x62\\x97\\xae\\x02\\x90\\x6f\\x00\\x3c\\xcb\\xf0\\xc0\\x06\\xac\\x82\\x8a\\x50\\x55\\x5b\\xdc\\x4b\\x2f\\x9a\\x35\\x4e\\x32\\x5f\\xe4\\xb0\\x07\\x63\\xc1\\x3d\\x8c\\x00\\x6a\\x83\\xa4\\xde\\xae\\x30\\x7c\\x35\\x65\\xe7\\x39\\xe7\\xb5\\x71\\x3f\\x70\\xd0\\x50\\xa6\\xa7\\x4c\\xce\\xbb\\xd6\\xf9\\x42\\x7e\\x21\\xb2\\xad\\x4a\\x00\\xa5\\x5b\\xea\\x0d\\x0b\\x83\\x95\\x38\\xb9\\x3c\\x14\\xa4\\x54\\xc8\\x30\\x75\\x24\\x41\\x7b\\x0e\\xb7\\x14\\xd9\\x4a\\x11\\x42\\x57\\xca\\xf0\\x03\\x2b\\x87\\x01\\x4d\\x84\\x73\\x06\\xa2\\xda\\x9a\\xc8\\x74\\x45\\x03\\xc1\\x48\\x8b\\x3c\\x38\\x5d\\x3e\\x6a\\xaa\\xa0\\x71\\xe8\\xb2\\xa0\\xed\\x79\\xe3\\x32\\x6b\\x11\\xb9\\x2a\\xea\\x05\\xfc\\xff\\x1e\\x8c\\x7d\\xf2\\x21\\x13\\xe8\\x9d\\xe1\\x18\\xa3\\xd1\\x27\\x48\\xa3\\x29\\xdc\\xff\\x08\\x46\\x3a\\x43\\x5c\\x4f\\xed\\xc7\\x32\\x03\\xb2\\xbe\\x7c\\xbd\\x88\\xc5\\x25\\x6f\\x9b\\x7b\\x46\\x4f\\x2c\\xc2\\xf9\\x34\\xba\\x6d\\x7f\\x6f\\x4c\\x10\\x73\\x42\\x8f\\x0e\\x1e\\x02\\x77\\x20\\x73\\x25\\x1e\\x2f\\xe4\\xb9\\xa5\\x44\\x20\\x49\\x00\\x91\\xad\\xec\\xd3\\x01\\x7d\\xa8\\xbc\\x76\\x46\\x90\\x91\\x7c\\x8c\\xc9\\xbf\\x6c\\x78\\x33\\x86\\xd1\\xc1\\x21\\x53\\xfb\\x98\\x8f\\xd3\\x32\\x2f\\xc1\\x6f\\x00\\x10\\x67\\x3c\\x5f\\x81\\x0b\\x99\\x6f\\x21\\xe0\\x42\\xe2\\xaf\\x91\\x80\\xec\\xce\\xd5\\x42\\x61\\xa9\\x40\\x5a\\xc6\\x7a\\x2c\\x4e\\x30\\x21\\x2c\\x97\\x95\\x66\\x17\\xb2\\x8f\\xef\\xa9\\xc3\\x90\\x59\\xff\\x03\\x28\\x46\\xb7\\x18\\x52\\xd3\\x49\\xe4\\xd9\\x52\\x9d\\x3d\\x70\\x98\\xef\\xf3\\x04\\xae\\x0b\\x86\\x4f\\xf5\\x70\\x12\\xee\\x61\\x09\\x38\\x2a\\x20\\x02\\x91\\xaf\\xfe\\x5e\\xbc\\x0a\\xb8\\x2e\\x63\\xe0\\x52\\x35\\x3a\\x4b\\xea\\x2c\\x20\\x8e\\x81\\x41\\x87\\xe7\\x68\\x2c\\xbd\\xac\\x8a\\x54\\x69\\x94\\x0f\\x70\\x4b\\x71\\x0a\\xd1\\xf3\\x3c\\x06\\x26\\x46\\x5d\\xa3\\xf6\\x3d\\x00\\xad\\x0e\\xd1\\xb4\\xe0\\x16\\x81\\x52\\x77\\x93\\x4d\\x71\\x85\\x35\\xbc\\xaf\\x31\\x6d\\xb4\\x0f\\xd6\\x2c\\x29\\x00\\xb6\\x90\\x8c\\xe3\\xba\\xab\\xd2\\x86\\x77\\x8c\\x45\\x1d\\x70\\xa6\\x28\\xc4\\x7e\\xc2\\x75\\xea\\x1f\\x67\\x78\\xf9\\x0b\\x51\\xc4\\x94\\x70\\xd1\\xf0\\x3f\\xac\\x45\\x31\\x02\\x9c\\x54\\x05\\xa9\\x2a\\x85\\x34\\xda\\x31\\x17\\x1c\\x15\\x8a\\x7c\\x46\\x22\\xc8\\x90\\x74\\x97\\x34\\xc9\\x4c\\x4b\\x36\\x1c\\x2f\\x09\\xae\\x92\\x4c\\xdc\\x12\\x6c\\xc1\\x93\\x38\\x2a\\xcc\\x65\\xc7\\x2a\\x2d\\x04\\x37\\x59\\xb2\\x50\\x7f\\xd0\\xe5\\x0c\\x14\\x97\\x94\\x65\\xa5\\xda\\xc3\\x1c\\x45\\x85\\x39\\x88\\x28\\xde\\xfa\\x93\\x1c\\x4d\\x72\\xc0\\x7c\\xbc\\x14\\x68\\x76\\x88\\xb4\\x6b\\x01\\xc2\\xc0\\x50\\x2d\\xe8\\x58\\xf6\\x24\\x55\\x13\\xc5\\x62\\x04\\xc9\\x20\\x4b\\x81\\x85\\x62\\x4d\\x81\\xb0\\xc7\\xc2\\x60\\x75\\x1b\\x54\\xf9\\xea\\x53\\x1f\\x90\\xa0\\x31\\xa2\\x65\\x48\\x48\\x41\\x6f\\x34\\x9c\\x56\\xb4\\x66\\xa1\\x55\\xbb\\x0a\\x88\\x49\\xb3\\x52\\x8e\\x9f\\xd2\\xa1\\x5d\\x60\\x13\\x45\\xb8\\x6f\\xe2\\x48\\x3c\\xe9\\xa0\\xbb\\x90\\x13\\x36\\x1a\\x50\\xc8\\x6d\\x6e\\x27\\xb5\\x59\\x56\\xab\\xd7\\x08\\xf0\\x28\\xce\\xb6\\x1f\\x23\\x76\\x3c\\xcf\\x23\\x17\\x8b\\x26\\x23\\xa9\\x16\\x7c\\x0e\\xa4\\x2d\\x64\\xdd\\x5a\\x71\\x73\\x84\\x74\\x8c\\xf3\\x46\\x92\\x8c\\xc3\\x25\\xa8\\x74\\x14\\x53\\x75\\xc2\\xaa\\xb2\\x64\\x36\\x92\\x56\\xc6\\x81\\x44\\x71\\x8a\\x9f\\xb6\\x3e\\xf6\\xa9\\x23\\x36\\x43\\x8b\\xb2\\x64\\x36\\x61\\xd2\\x59\\xa7\\x06\\x99\\xdb\\x75\\x73\\xb4\\x41\\xa7\\xad\\xdc\\x9b\\x59\\x03\\x50\\x11\\x9e\\x2e\\x70\\x15\\x05\\x2e\\x30\\xc4\\x6f\\x89\\x18\\x00\\x30\\xa5\\xc9\\x71\\x82\\xdd\\x4b\\xd4\\x50\\xa2\\x69\\x08\\xa0\\x43\\x77\\x20\\x2c\\x34\\xa6\\xc2\\x0b\\x34\\x8c\\x84\\x79\\xbf\\x34\\x66\\x31\\x3f\\xa5\\x33\\x98\\x0c\\x98\\x80\\xb9\\x45\\x24\\x3a\\xe7\\xba\\x0f\\xaf\\xe9\\x44\\x29\\x75\\xb1\\x20\\xeb\\x64\\x60\\x06\\x12\\x0c\\xdc\\x8d\\x48\\x85\\x43\\x61\\x94\\x66\\x50\\x30\\x21\\xd6\\xa3\\x51\\x97\\xf3\\xdc\\xc0\\x82\\x3d\\xb5\\xec\\x21\\x03\\xdd\\x2b\\x7d\\x4d\\x74\\xda\\x8a\\x49\\xc6\\xa9\\x79\\x62\\x44\\x1c\\x0c\\xf8\\xce\\x59\\xab\\x96\\x3f\\xb0\\xc4\\x5f\\x28\\xd5\\xcc\\x0e\\x03\\xad\\xbe\\x43\\xa1\\x13\\x02\\x77\\x54\\xe7\\xe1\\xd2\\xe6\\xa0\\x33\\xb3\\xbd\\xfa\\x1e\\xa0\\xd8\\x87\\x72\\x26\\x2a\\x39\\x6c\\x1b\\x93\\xb5\\x8c\\x15\\xae\\x51\\x56\\x69\\x03\\x91\\x48\\x28\\x12\\x30\\x79\\x65\\x60\\x13\\x94\\x48\\x43\\xf1\\xe7\\x02\\x80\\xf9\\x32\\xf0\\x5f\\xb6\\xd0\\x5c\\xd2\\xb2\\xf3\\x3c\\x13\\xb5\\x1e\\x40\\x95\\xc6\\x3d\\x02\\x07\\x19\\x07\\xc9\\xfc\\x8d\\x8a\\x4e\\x41\\x1b\\x84\\x82\\x02\\xbd\\x0b\\x2c\\x4b\\x13\\x90\\x85\\xcf\\x16\\x54\\xd3\\x6e\\xf1\\x53\\x39\\x86\\xdc\\xe5\\x97\\x28\\xa4\\x41\\xcc\\xca\\xa7\\xc0\\x69\\x33\\x84\\x70\\x2f\\x26\\xe6\\x16\\xc2\\x0d\\x13\\x4e\\x99\\x73\\xbe\\x46\\x17\\x24\\x8b\\x5b\\x0d\\x5d\\xd5\\x3a\\xe5\\x33\\x22\\xb6\\x24\\x4a\\xa5\\x23\\x98\\x11\\x04\\x60\\x91\\x3b\\xc1\\x7f\\x66\\x99\\xaa\\xae\\x7a\\x5b\\xb7\\xc8\\x79\\x1a\\x9d\\xb2\\x23\\x45\\x53\\x3f\\x27\\xed\\x02\\x60\\x39\\xf9\\x08\\xc2\\x3f\\x0d\\xe2\\x65\\x17\\xc1\\xc3\\x2e\\xe9\\x7c\\x12\\x4c\\x1d\\x7e\\x67\\x17\\x59\\x96\\x24\\x60\\xc0\\xa2\\x03\\xc1\\x49\\xc9\\x40\\xd3\\x04\\xc7\\x01\\x81\\x43\\xb3\\x38\\x8c\\x1b\\x28\\x07\\xbe\\x26\\x09\\x94\\x56\\x79\\x04\\x1e\\x08\\x1e\\xa1\\x00\\x73\\xa3\\x45\\x24\\x01\\x3a\\x17\\x03\\xc4\\x87\\xfe\\xa6\\x4e\\x59\\x6f\\x28\\x5a\\xc5\\x06\\xc2\\x23\\x28\\x13\\x83\\xd2\\xc0\\x9a\\x68\\xe2\\xc2\\xf4\\x52\\x32\\x04\\xaf\\x11\\xbe\\xb5\\xe2\\x37\\xfa\\x4c\\xc8\\x95\\xa8\\x40\\x49\\x02\\xba\\xca\\x59\\x53\\x99\\x6b\\xb1\\x5a\\xc4\\xb5\\x04\\x8c\\x80\\xc0\\xad\\xa7\\x4c\\xfa\\x29\\x1a\\x3b\\x9d\\x7a\\x4d\\xd1\\x64\\x2a\\x24\\x97\\xe8\\x1e\\x93\\x96\\xb8\\x89\\xf7\\xb2\\xfa\\x0c\\x85\\x27\\xfd\\xa1\\x7e\\x2c\\x2e\\x34\\x8a\\xdc\\xb3\\x21\\x44\\x05\\x03\\x1f\\x22\\x04\\x91\\x79\\x2a\\xa1\\xa3\\x7f\\x58\\x27\\xdf\\xa8\\x4d\\xd6\\xd6\\x29\\x80\\x19\\x57\\x46\\x43\\xd9\\x4a\\x88\\xcd\\xa4\\x3f\\xe2\\x65\\xf8\\x49\\xcc\\x8a\\xcf\\x0b\\xf0\\x1e\\xde\\x5d\\x9a\\x41\\xf6\\x10\\x98\\x02\\x08\\xe8\\x93\\xb5\\x90\\xc1\\x92\\x35\\xfe\\x2e\\x09\\xdb\\xfd\\xfe\\x90\\x4c\\xd0\\x96\\x56\\xe7\\x05\\x2e\\xc8\\x22\\xfe\\x92\\x96\\x9a\\x2c\\x72\\xb0\\x68\\x7e\\xb7\\xd2\\x79\\x95\\xb5\\x08\\x4e\\x3d\\x99\\xa3\\xbe\\xd3\\xaf\\x36\\x51\\x76\\xc4\\xb8\\x60\\x49\\x16\\x4d\\x64\\x21\\xa0\\x95\\xb4\\x11\\x34\\xd3\\x03\\x1e\\x6d\\xe9\\x6b\\x1e\\xbf\\x9d\\x58\\x27\\xb0\\xef\\x89\\x16\\xb9\\x42\\x55\\xb1\\x06\\x31\\x64\\xcd\\x1c\\x4b\\xca\\x4a\\x40\\x6f\\x06\\x7b\\x82\\xe5\\x77\\xcb\\xd9\\x76\\x66\\x31\\xac\\xb4\\x4a\\x33\\x7e\\xc7\\xb8\\x3d\\x25\\xb4\\xf1\\xd7\\x92\\x84\\x89\\xda\\xe2\\x60\\x05\\x73\\x10\\x72\\x14\\x12\\x13\\x58\\x45\\x2e\\x4a\\x64\\x37\\x04\\xde\\x58\\x81\\x95\\xbe\\xf5\\xb8\\x84\\x03\\x0d\\x7d\\x40\\x80\\xd3\\x64\\x8b\\xd1\\xa3\\x80\\x1c\\x85\\xda\\x8f\\x17\\x8f\\xcb\\xa0\\x83\\xf8\\x63\\xd1\\x63\\x3a\\xae\\xf9\\x2b\\xc7\\x35\\x12\\x1e\\x01\\x40\\x7b\\x52\\x00\\x02\\x11\\x77\\x12\\x7b\\x9a\\x23\\x25\\xd3\\xbe\\x50\\xe9\\xd7\\x04\\x9f\\x70\\xd5\\x8e\\x63\\xbe\\x50\\xce\\x56\\xd9\\x01\\x58\\xa2\\xfb\\x65\\x28\\xdd\\x58\\x4a\\x19\\x3a\\x78\\x91\\x3b\\x65\\x27\\x8a\\x58\\x3a\\xe5\\x08\\xad\\x30\\x31\\xea\\x92\\x23\\x39\\xb9\\x2d\\x40\\x30\\xff\\x9b\\x1b\\x0e\\xd9\\x7a\\x3b\\xd4\\x6a\\xdb\\x21\\x85\\x87\\x45\\xf0\\x4c\\x39\\xa9\\x04\\x63\\xab\\x5d\\x63\\xc3\\x4e\\x08\\x3e\\x5d\\x31\\x27\\x4a\\xbc\\xde\\x15\\x9f\\x6a\\x37\\xe3\\x9b\\xb8\\xee\\x1b\\xe0\\x01\\x4b\\x5e\\x12\\xc3\\x2d\\x22\\xeb\\xe2\\x87\\xf0\\x2e\\xb9\\x2e\\xf3\\x5a\\x8c\\x44\\x88\\x2c\\x68\\xdb\\xae\\x19\\x51\\x00\\x20\\xb0\\xb5\\x16\\x24\\x06\\x35\\x3f\\xcf\\x90\\x0e\\x84\\x39\\x12\\x59\\x23\\x55\\xe8\\x30\\x09\\x07\\x78\\x50\\x83\\x48\\xec\\x56\\xec\\x9a\\x1b\\xa1\\xbf\\x85\\xff\\x2f\\x6d\\xaf\\xb6\\xf3\\x37\\xb5\\x8a\\xdf\\x34\\xa1\\x48\\x11\\x11\\x34\\xc0\\xcd\\x55\\x1d\\xa2\\x9c\\xe2\\x3b\\x21\\x40\\x21\\x74\\x49\\x44\\x00\\xe1\\x14\\xfa\\x80\\xee\\xd6\\x2f\\x67\\x3d\\xd2\\xac\\x04\\x6f\\x92\\x44\\x56\\x79\\x31\\x78\\xa4\\x4f\\x16\\x71\\x51\\x61\\x8d\\x01\\x1f\\xf3\\xe8\\xd1\\x28\\xc5\\x7c\\x6f\\xe4\\x8c\\x42\\xd5\\xc1\\xd0\\x6e\\x18\\x4d\\xbe\\x09\\x10\\xb6\\xdc\\x90\\x29\\xda\\x92\\x98\\x16\\xd8\\x84\\x58\\xda\\x91\\x09\\x26\\x30\\xd8\\x01\\xba\\xb0\\xcb\\xb3\\x28\\xf0\\x26\\x88\\x6f\\xb5\\x96\\x11\\x3d\\x79\\x47\\x45\\x02\\xfc\\x8a\\xb0\\xde\\x48\\x74\\x5d\\xaf\\x83\\x52\\x5f\\xa4\\xaf\\x92\\xe1\\x13\\x11\\x58\\x42\\xb0\\xc7\\x3c\\x44\\x4d\\xe9\\xb6\\x0a\\x72\\x1e\\x39\\xf1\\xec\\xb1\\x88\\x10\\x18\\x38\\xb3\\xad\\xd2\\xea\\x7f\\xcd\\x2c\\xe5\\x19\\x9e\\x0e\\x8f\\x79\\x25\\x4c\\x62\\xb0\\x9a\\x75\\xd4\\xe5\\xda\\x90\\x51\\x12\\x4d\\x18\\x5d\\x43\\x02\\x52\\xd7\\x35\\xda\\x63\\x32\\xb3\\x8a\\x83\\xd8\\x64\\x70\\x19\\x9d\\x4f\\x10\\x15\\x08\\x3f\\x47\\x89\\x27\\xd2\\x31\\x60\\xb4\\xab\\x31\\x05\\xe6\\x4c\\xf5\\xfd\\x68\\xc9\\xda\\xe1\\x83\\x5d\\xa1\\xd2\\x48\\x14\\x64\\xaa\\xb6\\x84\\x63\\x4f\\x47\\x01\\x04\\x28\\x22\\xa5\\x62\\x1d\\x91\\xc7\\x31\\x8e\\x47\\x74\\x44\\xb5\\x94\\xe2\\xe7\\xca\\x29\\x85\\xa8\\x43\\x16\\x3c\\xb9\\x48\\xae\\x97\\x5a\\x2e\\xcf\\x54\\x13\\x10\\x2d\\xf3\\xe0\\x2e\\xe7\\x03\\x49\\x91\\x6d\\x83\\xfb\\x5e\\x62\\xa5\\x90\\x11\\xf7\\x1e\\x45\\x7a\\x45\\x94\\x0d\\x27\\xc2\\x05\\xa8\\xe5\\xcc\\x77\\x00\\xed\\x1d\\xc0\\x31\\x5b\\xcc\\xe0\\x74\\x8d\\x1a\\x26\\x95\\x41\\xd0\\x96\\x23\\xaf\\x5e\\x40\\x70\\x0b\\x3a\\xcc\\x4a\\xf6\\x17\\xaf\\x23\\x01\\x6e\\xde\\x54\\xd2\\xca\\x75\\xae\\x7c\\xa3\\x91\\x97\\x57\\xac\\xea\\x5d\\x23\\x3b\\x10\\xd3\\x6d\\xe4\\x1c\\x7e\\xda\\xcc\\x96\\x75\\x34\\x21\\x6d\\xd5\\x39\\x6f\\x48\\xb4\\x95\\x3e\\x46\\xe3\\x44\\x39\\x2d\\x5e\\xaa\\xa1\\x94\\xe1\\x2b\\x02\\x4c\\x78\\x04\\x4b\\x8d\\x30\\x6e\\xac\\xde\\x8f\\x1f\\x34\\x82\\xd4\\x30\\x76\\x46\\x52\\x88\\x0c\\xca\\x14\\x18\\x0e\\xab\\x1f\\x39\\xbc\\xca\\xf7\\x41\\xed\\x98\\xba\\x75\\x5f\\x86\\xa1\\xe6\\xa5\\x91\\xbb\\x02\\x1d\\x4f\\x98\\x4f\\x06\\x3d\\x12\\x46\\xc6\\xa2\\x15\\x1d\\x23\\xf0\\xa4\\x92\\x56\\x50\\xca\\x1b\\x45\\xa0\\xe8\\xb2\\x03\\x04\\xad\\x0b\\x58\\x8a\\x9a\\x37\\xb7\\xc2\\x7c\\x4a\\x37\\x46\\xd8\\xaa\\x55\\x1f\\x8e\\x5c\\x00\\xf8\\x61\\x23\\x03\\x1c\\x4e\\x34\\x42\\x00\\xa3\\x7e\\x64\\x6f\\x5f\\x82\\x31\\x65\\x23\\x6c\\xa2\\xff\\xc0\\x35\\x32\\xc3\\x2c\\xcf\\xc5\\x45\\x5e\\x11\\x37\\x9f\\xf5\\x32\\x98\\x9f\\xc0\\x16\\x97\\xee\\x34\\x99\\xc6\\x40\\x7d\\xb0\\xe1\\xa9\\xb0\\x10\\xd4\\x71\\xc0\\x0c\\x6f\\x0e\\x01\\x8e\\xe7\\x74\\x25\\xc8\\xda\\x1c\\x74\\x3c\\xc2\\x86\\x9b\\x0c\\x8a\\x92\\x37\\x35\\x86\\x43\\xb2\\xba\\x88\\x11\\x35\\x6d\\x23\\x16\\x2d\\x74\\x44\\xe4\\x32\\x44\\x2d\\x4f\\xbc\\x7c\\x5a\\x9d\\x78\\xb3\\x19\\x64\\x2e\\xc3\\xc5\\x37\\x80\\x9a\\x81\\xe6\\x69\\x69\\x15\\x44\\x69\\x90\\xe1\\x15\\x38\\x3e\\xae\\xe1\\x3a\\x4c\\xbe\\x33\\xea\\xd9\\x94\\xc7\\xb8\\xba\\xb3\\xbe\\xee\\x7b\\xf6\\x06\\x3a\\x81\\x4b\\xbc\\x27\\x13\\x56\\x05\\x18\\x46\\x25\\xf0\\x00\\xe3\\x64\\x4e\\xe6\\x80\\x07\\x58\\x0c\\x23\\x32\\xff\\x63\\x01\\x28\\xda\\x8f\\x58\\x4c\\x51\\x79\\x93\\x32\\x89\\x2e\\xa4\\x3b\\x11\\xc6\\x0d\\x7e\\x62\\x34\\xe2\\x24\\xe8\\x17\\x64\\xb0\\x13\\x60\\xb3\\x94\\xea\\x98\\xe4\\xe7\\xc1\\xcc\\x3c\\x32\\x38\\x00\\x46\\x6f\\x32\\x2f\\x0c\\x49\\x81\\x85\\x4c\\x02\\xe3\\x23\\x2a\\x6c\\x7c\\x46\\xe7\\x12\\x6b\\xe8\\xf7\\x1f\\xc8\\x32\\xc7\\x61\\x42\\x64\\x2a\\xe7\\xfa\\x51\\x33\\x13\\x22\\xe2\\x22\\xb5\\x7a\\x11\\x47\\x5d\\xe1\\x44\\xf7\\x7f\\x11\\x10\\x3a\\xae\\x71\\x80\\x5a\\xc1\\x76\\x47\\x00\\x4b\\x65\\xb3\\x88\\x08\\x47\\x89\\x90\\x1d\\x56\\xb8\\x6e\\xfd\\x08\\xcd\\xa3\\xef\\x83\\x04\\x60\\x5b\\x07\\x83\\xa7\\xec\\xa0\\x33\\x60\\x0b\\x66\\xf1\\x55\\x6e\\x44\\x2f\\x20\\x90\\x49\\x96\\x86\\x23\\x07\\x72\\xa6\\x86\\xcd\\x51\\x1d\\x26\\xcb\\x0c\\x27\\x66\\x1a\\x7c\\x20\\x95\\xbb\\x50\\x32\\xae\\xe8\\xb2\\x3a\\x41\\x72\\x8a\\xe4\\x17\\x43\\x05\\x3e\\xe8\\x82\\x63\\x8e\\x94\\xfb\\xec\\x13\\xe0\\xd4\\x71\\xc8\\xe3\\xdb\\xa0\\x51\\xf4\\x03\\x43\\x1e\\xde\\x28\\x9b\\xe0\\x11\\xbe\\x22\\x27\\x52\\xdc\\x83\\x03\\xb0\\x45\\xc9\\x1a\\xab\\x98\\xe3\\xe9\\x7d\\xdf\\xc3\\x4a\\x1c\\x76\\xdf\\xc6\\xa4\\x8e\\x7c\\xa4\\x5b\\x6b\\xf1\\xff\\x91\\xc7\\x4d\\xc3\\xb6\\x7b\\x53\\x6c\\xba\\x99\\x78\\x5a\\x3b\\x46\\x1d\\xba\\x52\\xb0\\xb0\\xbd\\x7f\\x23\\xc1\\x23\\x2f\\x55\\xc9\\x54\\x6b\\x10\\xea\\xfe\\xe9\\xa3\\xdc\\x2b\\xc1\\xe1\\xf3\\xb0\\xb8\\x1b\\xa1\\xdf\\x75\\x0f\\x68\\x90\\xf5\\xd6\\x9b\\xe2\\x02\\x9e\\xf4\\x85\\x4b\\xc2\\x16\\x26\\x48\\x6e\\x91\\x1a\\x0d\\xe7\\x90\\x47\\xc2\\x7c\\x15\\x57\\x4f\\x12\\xdb\\x99\\x08\\xc0\\x89\\xd1\\xfc\\xdd\\xa4\\x89\\x10\\x46\\x2f\\x99\\x70\\xef\\xc8\\xb3\\xd0\\x65\\x33\\x73\\x46\\xef\\x40\\x01\\xa8\\x67\\x24\\x7e\\x1e\\xcc\\x72\\xde\\xbd\\xbb\\x25\\x86\\x59\\x92\\x2c\\xd5\\xfb\\xb8\\x9c\\x2f\\x93\\x13\\xb2\\x50\\x1c\\x90\\x46\\x4e\\xa2\\xce\\x95\\x52\\x7a\\x74\\x44\\xc4\\x38\\x0b\\x0a\\x62\\x17\\x36\\x8a\\x10\\xf6\\xd2\\xe1\\x0a\\x88\\xc5\\x50\\x5f\\x6d\\xb4\\xbc\\xe3\\x72\\xfa\\x24\\x50\\x3d\\x07\\xa2\\xc4\\x60\\x2b\\x10\\xd9\\x05\\x3b\\x13\\x78\\x11\\x60\\x76\\xe7\\x80\\x1d\\x5f\\x78\\x02\\xc2\\x44\\xe7\\x8e\\x0e\\x2c\\xf7\\xd3\\x5c\\x7c\\x0a\\x0c\\x58\\x6d\\xf0\\x71\\x43\\xd0\\xc9\\x9f\\xb4\\x95\\x83\\x0d\\x20\\x6c\\x47\\x87\\x0b\\xa7\\x61\\xb9\\x90\\x2d\\x15\\xcd\\xa7\\x0b\\x4a\\x24\\xd3\\x84\\xa9\\x0d\\xd9\\x8a\\xa7\\x32\\x54\\x4a\\x58\\x09\\xe8\\x92\\xf0\\x6b\\xcf\\x70\\xc8\\x25\\x63\\x75\\x50\\x87\\xb9\\x8a\\x43\\xd0\\x68\\xa7\\x28\\xa6\\xb2\\x2b\\xc0\\x66\\xac\\x8e\\xb1\\x78\\xaa\\x23\\xa1\\x42\\x87\\xeb\\x0c\\xf7\\x53\\x67\\x88\\x98\\x46\\x77\\xa5\\xa6\\x43\\x61\\x3e\\xdd\\xcb\\xc1\\x5a\\x25\\x22\\xa5\\xa0\\x65\\x6e\\x5b\\x73\\xc4\\xc8\\x37\\x28\\x02\\x85\\xf2\\xc3\\x96\\xc3\\x80\\x75\\x94\\x3e\\x43\\xa6\\x99\\x93\\xb6\\x2f\\x44\\xe9\\xfa\\xcf\\x76\\x25\\x4f\\x67\\x13\\xc9\\xe1\\x1a\\x58\\xc8\\x43\\xc1\\x04\\xfd\\xc9\\x61\\xd2\\x6f\\x6d\\xc1\\x03\\x47\\xca\\xd3\\x21\\x4f\\x41\\xc9\\xb7\\x15\\x8d\\x2c\\x20\\x9d\\x31\\x42\\x2c\\x4c\\x5a\\xca\\x23\\xf2\\xa1\\x8d\\xd0\\xd0\\x7d\\x0c\\x50\\xd8\\x22\\xbf\\x14\\x47\\x30\\x7c\\xcc\\x39\\x2a\\x3c\\xd7\\x84\\x65\\x69\\x17\\xc2\\xd6\\x75\\x01\\x12\\xb7\\x6d\\x6b\\x56\\x8f\\xa8\\x67\\x0c\\x6b\\x74\\xeb\\x50\\x91\\xcf\\xa3\\xb2\\xbd\\x2e\\x97\\xa3\\x49\\x2f\\xf6\\xdc\\x0c\\x39\\x7a\\x99\\x0b\\x03\\x9c\\xc6\\x08\\x87\\x3a\\x28\\x5f\\x2b\\x69\\x5d\\x86\\xcd\\xea\\x01\\xf8\\xf3\\x4d\\x49\\xf0\\x8d\\x2d\\x67\\x35\\x95\\x69\\x6d\\xc5\\x67\\x3c\\x16\\xfe\\xf2\\x23\\x56\\x13\\x9a\\x2d\\x59\\x9b\\x32\\x71\\x49\\x41\\x55\\xcc\\x95\\x58\\x70\\x89\\x21\\xbb\\x64\\x57\\x9f\\x0b\\x95\\x9f\\x21\\xc6\\x44\\xa3\\xd3\\xa1\\x3a\\x59\\xca\\x45\\x59\\x26\\x38\\xc9\\x4a\\x49\\x0c\\x25\\xa4\\xc3\\x12\\x59\\x9b\\xc1\\x04\\xe0\\x8f\\xdc\\xe8\\x4d\\xe0\\x83\\x10\\xca\\xa5\\x35\\xbb\\xd8\\x42\\xd1\\x92\\x2d\\xa8\\x9a\\x71\\x18\\xd4\\xd3\\xbf\\x17\\x53\\xa0\\x62\\x99\\x04\\xfc\\xfb\\x2f\\x2e\\x3c\\xc7\\x19\\x71\\x11\\x05\\xb3\\xe4\\x69\\x59\\x9b\\x61\\x00\\xc2\\x61\\xf2\\xf1\\xd6\\x07\\x36\\x2b\\xf2\\xf7\\xfe\\x31\\x17\\x30\\xf8\\x48\\x26\\x5e\\x10\\x65\\xf7\\x91\\x65\\x35\\xea\\x1c\\x8d\\x34\\x20\\x24\\x31\\x02\\x87\\x2f\\xbd\\xb5\\xd0\\x6d\\x20\\x02\\x98\\x69\\x80\\x25\\xf1\\x34\\x07\\x96\\xb4\\x05\\x95\\x84\\x60\\x43\\x22\\x4e\\x0e\\x46\\x71\\x19\\x1e\\x02\\x62\\x76\\xb7\\xc6\\xd5\\x4a\\x5f\\xe4\\xd2\\xa0\\x10\\x52\\xc5\\x7a\\x31\\x08\\xdc\\x72\\x81\\xae\\x40\\x5d\\x26\\x03\\xe2\\x24\\x84\\x72\\x18\\x92\\x95\\x18\\xee\\x41\\x06\\x5d\\x54\\x52\\x4e\\x6e\\x6a\\x93\\x01\\xa4\\x50\\x89\\x8d\\x24\\x79\\x22\\x84\\x3b\\x70\\x37\\x32\\x61\\x87\\x86\\xa6\\xe3\\x94\\x44\\xbf\\xef\\x65\\xc4\\x23\\xc3\\xa9\\x5e\\x3e\\x8d\\xf1\\x28\\xde\\x1a\\xac\\x55\\xbb\\x3f\\xe1\\xce\\xc0\\x5a\\xb7\\x62\\x9f\\xb2\\xaa\\xa2\\x2d\\x12\\x98\\x70\\x73\\xc1\\x43\\xf1\\xb0\\x9d\\x32\\x52\\x90\\x18\\x4d\\xa1\\x28\\xcf\\x31\\xb1\\x2c\\x5e\\x87\\x44\\x99\\xb6\\xa0\\x5e\\x28\\xb5\\x0e\\x84\\xa4\\x99\\x18\\x68\\xb6\\xdf\\x6c\\xa9\\x63\\x6c\\xe2\\xba\\xcd\\x91\\x10\\xca\\x10\\x81\\x80\\x70\\x81\\x85\\x9b\\x89\\x84\\xa8\\x66\\xd2\\xe8\\xb5\\xcd\\x6a\\xf4\\x1a\\x1e\\x60\\xb8\\x5e\\x47\\xa0\\xfe\\x30\\xcc\\x14\\x28\\x15\\x78\\xe7\\x3a\\xf8\\x28\\xd1\\xaf\\xf7\\xa9\\x88\\x76\\x8d\\xa2\\x53\\x08\\x1b\\x0b\\xca\\x77\\x60\\x84\\x44\\xab\\xdc\\x39\\x5e\\xa3\\xcb\\xd8\\x9f\\x8c\\x2b\\x65\\xb6\\x30\\xa0\\x04\\x2a\\xc0\\x4b\\x31\\x78\\x88\\x61\\xfe\\x5d\\x8b\\xe6\\x8b\\xef\\x13\\xe9\\xcd\\x62\\xfa\\xc5\\x44\\x85\\x4e\\x02\\x06\\x1c\\x3d\\x82\\x87\\x14\\x5d\\x52\\x62\\x02\\x9b\\x93\\x6e\\xe0\\x9c\\xb9\\x35\\x48\\x44\\x00\\xa1\\x9d\\x9c\\xa4\\xce\\xc0\\x12\\x92\\x74\\xca\\x81\\x92\\x1e\\x61\\xc4\\x28\\x32\\xc9\\x00\\xf0\\xca\\x24\\xa5\\x51\\xc9\\xfd\\x5e\\x46\\xf9\\xa9\\x92\\x12\\x06\\x98\\xa3\\xe0\\x3c\\xad\\xdf\\x15\\x94\\x98\\x30\\xde\\xdf\\x36\\x4b\\x82\\x3c\\x5c\\xa4\\x48\\x5a\\xea\\x13\\x13\\x3b\\x87\\x19\\x9a\\x61\\x87\\xf1\\x89\\x05\\xf0\\x66\\x2e\\x0b\\x05\\x49\\xc4\\xef\\x6e\\x77\\xb2\\x88\\x5f\\x5e\\xeb\\x8b\\x05\\xb6\\x23\\x04\\xc5\\x9f\\x44\\x48\\x10\\xdf\\x73\\xce\\x83\\x7f\\xe6\\x7c\\xd5\\x1c\\x90\\x86\\x84\\xc0\\xad\\x41\\x80\\x9a\\x85\\xc3\\x60\\x71\\xfd\\x69\\x8b\\x5b\\x4b\\xae\\xd4\\xb9\\xa3\\x00\\xf5\\x96\\x44\\x2c\\x08\\x0d\\xb1\\xba\\x7b\\x76\\x68\\xc7\\xdd\\x6c\\x08\\xc7\\x3d\\x05\\x9a\\x12\\x27\\xee\\xad\\x46\\x3f\\x32\\xad\\x46\\x3f\\x39\\x96\\x38\\xf2\\x11\\x72\\xe4\\x01\\x49\\x76\\x08\\xdc\\x78\\x95\\x5b\\xf1\\xd6\\xc0\\x4c\\xba\\xa2\\x8c\\xdc\\x03\\xa8\\x7f\\xa2\\xc6\\x91\\x6e\\x10\\xd9\\x3f\\x59\\x68\\x28\\xcb\\x01\\x95\\xe1\\x0d\\x6b\\x2b\\xda\\x32\\x4e\\x95\\x47\\x7b\\x37\\x9c\\xf5\\xcf\\xcb\\xa4\\x6e\\x54\\xbb\\x47\\x67\\x4d\\x85\\x7c\\xd0\\xf4\\x19\\x30\\x87\\xfb\\xbe\\x81\\xbe\\xae\\x49\\x75\\x36\\x6c\\x62\\xa0\\xa3\\x15\\x7e\\xb2\\x14\\xf5\\x95\\x9d\\xb8\\xb6\\x42\\xbd\\x70\\x63\\x84\\xd1\\x2f\\x59\\x68\\x5f\\xd3\\x7a\\x61\\x1f\\x52\\xb1\\x30\\x2c\\x72\\x9b\\x30\\x02\\x94\\xcf\\xc8\\x62\\xc1\\x54\\x82\\xf3\\x4c\\xa8\\x1c\\xe0\\x5b\\xd0\\xd0\\xa4\\x2f\\x53\\x48\\x0e\\x21\\x17\\x26\\x09\\x85\\x22\\xa8\\x56\\x28\\x06\\x46\\x42\\xee\\x52\\xaa\\xbc\\x75\\x4e\\x86\\x34\\xe8\\x52\\x24\\x02\\xd8\\x12\\x36\\x15\\x0c\\x3c\\x64\\x08\\xdb\\x0e\\xd9\\x64\\xec\\x8a\\x56\\x2d\\xc7\\x9c\\x74\\x86\\x7d\\xaf\\x25\\xe0\\xe8\\xa7\\xc7\\xe4\\x4a\\x60\\x81\\x14\\x59\\x98\\x6f\\x0b\\x52\\x13\\x51\\xc9\\xd4\\xf2\\x3e\\x89\\x0f\\x00\\x68\\xf0\\x8b\\xf4\\xa8\\xc2\\x3c\\x3c\\x56\\x0a\\x98\\xd1\\x36\\xe4\\xda\\x34\\x0c\\xb5\\x88\\x70\\x32\\xef\\xc1\\xc9\\xb4\\x24\\xf2\\xc2\\x87\\x8e\\xd2\\x33\\xe5\\x79\\x07\\x6a\\xc7\\x26\\xb8\\x89\\x1c\\xa2\\x65\\xac\\x57\\x6c\\x8b\\xb1\\x84\\x71\\x38\\xce\\x41\\x83\\xbb\\x6e\\x72\\x0d\\x18\\x86\\xea\\x17\\xa1\\x28\\xf9\\xcd\\x94\\x0c\\x72\\x0e\\x2d\\x0a\\x9d\\x21\\x37\\x99\\x5d\\x44\\x66\\x4d\\x88\\x4d\\x27\\x9c\\x5e\\xf0\\x75\\xc0\\xa1\\x32\\x84\\x83\\xb5\\x5d\\xa6\\x66\\x49\\x20\\x88\\x48\\xc1\\xc4\\xf5\\x8d\\x7f\\xf2\\x3f\\x6c\\x6f\\x9f\\x4e\\x41\\x8a\\x6e\\xb6\\xd4\\x2f\\xec\\xb2\\x53\\x3c\\xba\\xb4\\x77\\x85\\x65\\xc2\\xff\\xb2\\x12\\x55\\x5f\\xb5\\x2c\\xc0\\x92\\x48\\x4b\\x02\\x0b\\x90\\x6c\\xa1\\x16\\x99\\x07\\x8d\\x74\\xee\\x01\\x12\\x23\\x29\\x5b\\x69\\x59\\x50\\x75\\x2b\\x2a\\xce\\x8a\\xc7\\x28\\x4f\\x38\\x19\\x40\\x9b\\xcb\\x53\\xa0\\xfa\\x44\\xa3\\xfa\\xa3\\x6e\\x38\\x94\\xe1\\x4f\\x27\\x45\\x84\\xf3\\xbe\\x88\\x11\\xee\\x46\\x0a\\xb8\\x2e\\x0a\\xb9\\x16\\xe8\\xa1\\x82\\xea\\x03\\x8d\\x1d\\x8d\\xd3\\x98\\x33\\x35\\xdf\\xb6\\x09\\x87\\xbd\\x58\\xe6\\xe6\\x78\\x28\\x06\\xda\\x88\\xe0\\xc0\\x60\\x5e\\x53\\x28\\x2d\\x8f\\x18\\x12\\xc7\\x66\\x51\\x7c\\x5b\\xa8\\x00\\xf8\\x7b\\x4e\\xfc\\x75\\x33\\x26\\x82\\xa7\\x65\\x58\\xd6\\x49\\x05\\xea\\xb0\\x1f\\x62\\x7d\\x94\\x2f\\x90\\x3a\\x7c\\x77\\xe5\\xfa\\x09\\xe1\\xa4\\xa7\\x02\\x44\\xe4\\x07\\xdb\\x3a\\xcc\\x5e\\xff\\xbc\\x22\\xbd\\x3d\\x01\\x08\\xc5\\xe7\\x01\\xfa\\xd4\\x39\\x46\\x08\\xba\\x4f\\x12\\xaa\\xb3\\x10\\x11\\xc7\\xfc\\x75\\x80\\x09\\xe7\\x04\\x69\\x55\\xc9\\xa4\\xd4\\xce\\x43\\xa1\\xe9\\xed\\x44\\x0c\\x50\\x87\\x1e\\x95\\x43\\xf6\\x58\\xf8\\x54\\x61\\x0a\\x51\\x85\\xf3\\x78\\x0b\\xe6\\x90\\xd0\\x07\\x34\\xef\\xa4\\x3e\\x7f\\xb8\\x03\\x02\\x85\\x9a\\xdf\\xe2\\xa6\\xb7\\x0c\\x0d\\x62\\xaf\\x6c\\xea\\xf5\\xe5\\xae\\x94\\x4f\\x02\\x9c\\x4f\\xf0\\xa5\\xdb\\xf3\\x32\\xce\\x53\\x56\\x2b\\x54\\x6b\\x5c\\x6a\\x52\\xd4\\xc0\\x13\\x81\\x82\\x1f\\xaf\\x3c\\x3f\\xcf\\x07\\xaa\\x6a\\xe7\\xa5\\x5e\\xaa\\xda\\x63\\xb7\\xe4\\x22\\x23\\xa8\\x81\\xbf\\xe4\\x93\\x76\\x62\\x48\\x5d\\x32\\x35\\x71\\xf5\\x10\\x4e\\x95\\x74\\xdb\\xc6\\xf8\\xfe\\x6c\\x44\\xcb\\x79\\xd4\\x74\\x64\\xcb\\xdc\\x47\\xec\\x81\\x26\\x81\\x89\\xc3\\x31\\x2a\\x41\\x4a\\x3b\\xec\\xa4\\xd0\\x31\\x94\\xd8\\x44\\xc8\\x13\\xfe\\x36\\x04\\xbc\\x96\\x44\\x53\\x4c\\x46\\x30\\x4d\\x01\\x44\\x4b\\xc6\\x7d\\x4e\\x15\\xe5\\xd5\\xdb\\xa4\\x68\\x04\\x47\\x16\\x3f\\xe8\\x05\\x17\\x29\\x69\\x9d\\x5a\\x48\\x07\\xc9\\x67\\x80\\x93\\xbc\\xe9\\xb3\\x46\\x82\\x46\\x24\\x53\\xae\\x39\\x96\\x24\\x1e\\x3d\\x11\\x49\\x2f\\xea\\x51\\xdf\\xb1\\x8d\\xd0\\xd6\\x93\\x5f\\x61\\x1b\\xd7\\x4e\\x18\\x4d\\x08\\xa0\\xfd\\x93\\x24\\x04\\xcb\\x7a\\x9b\\x9d\\x80\\x78\\x21\\xa3\\xbe\\xb5\\xa7\\x30\\xc3\\x19\\x60\\x38\\x75\\xbd\\x1c\\x86\\x74\\xa4\\x92\\xc0\\x41\\xcc\\xb1\\x56\\xc2\\x34\\x6d\\xc6\\xf2\\x0f\\x5f\\x83\\x7e\\x58\\xac\\x42\\x24\\x60\\x0c\\xae\\x14\\xc6\\xa2\\xae\\x3b\\x22\\xaf\\x1c\\x50\\x07\\x61\\x24\\x53\\xbc\\x86\\x2e\\x5c\\xca\\xf2\\x27\\x93\\x80\\x19\\xca\\x6b\\x50\\xf6\\xec\\xe4\\x58\\x25\\x98\\x67\\xc8\\xa9\\xa6\\xfd\\x9c\\x8a\\xa2\\xc1\\x7e\\x8f\\x7c\\xe1\\x44\\x20\\x1a\\xa9\\x7d\\xaa\\xee\\x78\\x03\\x86\\x20\\x7a\\xfe\\x2a\\x49\\xbc\\x10\\x1f\\x78\\x22\\x7e\\x53\\xc7\\xfe\\x8e\\x74\\x71\\x9a\\x50\\x98\\x3a\\xce\\x15\\xcf\\x61\\x7b\\xc7\\x42\\x03\\x63\\xf7\\xf8\\x4d\\xba\\xce\\xbe\\x1d\\xc2\\xf3\\xa0\\x43\\x08\\xfe\\x10\\x9a\\xc9\\x02\\x3b\\x84\\x20\\x19\\xc0\\x40\\x98\\x51\\xf2\\x47\\xe0\\x4e\\x29\\xcc\\x20\\xb9\\x49\\xf3\\x49\\xfd\\xbb\\xa4\\xd3\\x78\\x4f\\xe1\\x6d\\xc1\\xb9\\x77\\x63\\x88\\xf7\\x8d\\x61\\x3f\\x09\\xf6\\x7c\\xa9\\x26\\x51\\x0c\\x1c\\x87\\x2c\\x80\\x3f\\xc2\\x77\\x96\\x26\\x8f\\x60\\x3c\\x68\\xd6\\x54\\x71\\x81\\xa7\\x0f\\x19\\x9c\\x0d\\xe8\\xb6\\x41\\xc2\\x83\\x64\\x16\\x13\\xfc\\x08\\x1a\\x2a\\x0b\\xdb\\x3e\\x73\\x30\\x5f\\x47\\xb8\\x10\\x36\\x26\\x03\\xb5\\x9d\\x2d\\x06\\xb0\\x9e\\x78\\x19\\xc3\\xb6\\x03\\x76\\x05\\x19\\xa4\\x17\\x01\\x12\\x52\\xed\\x58\\xf1\\x33\\x85\\x88\\x10\\x80\\x4d\\xe1\\x62\\xb2\\x84\\x26\\x30\\xae\\xf7\\x76\\x9d\\x6b\\x17\\x93\\x18\\x45\\xf0\\x7b\\x62\\xba\\x03\\x1b\\x5c\\x5b\\x08\\xac\\xd2\\x57\\xab\\x14\\x23\\xb8\\xf6\\xce\\x39\\xdd\\xb3\\xa4\\xa2\\x10\\x13\\xbb\\x38\\x3a\\x37\\x27\\xf4\\x20\\xd4\\x14\\x1f\\x9d\\x80\\xbe\\x4b\\x8f\\xaf\\xc4\\xca\\x0e\\xa4\\x49\\x82\\xda\\xba\\x06\\x59\\x38\\x5f\\x09\\xcc\\xbb\\xfb\\x72\\x33\\x88\\x05\\xb0\\x95\\x9f\\xe4\\x53\\x5e\\xdc\\x8c\\xe8\\xcc\\x80\\x84\\x41\\xd5\\x11\\x5d\\x6c\\xce\\xa4\\xd2\\xd8\\x2f\\xe2\\x73\\x47\\xb3\\xd4\\x56\\x02\\xbd\\x8c\\x03\\x20\\x63\\x3e\\xad\\x14\\x01\\xa9\\xed\\xd7\\x27\\xa5\\x00\\x61\\xac\\x26\\x24\\x8d\\xe6\\x7d\\xa7\\x75\\x00\\x09\\xa4\\x80\\x61\\xac\\x21\\x66\\x6d\\x1b\\x55\\xdb\\xd5\\x88\\x96\\x17\\x2c\\x3c\\x2a\\xb7\\xea\\x30\\xb6\\x90\\x40\\x36\\x04\\xb0\\xb9\\x23\\x78\\x59\\xcf\\x80\\x97\\x59\\xc8\\x23\\x84\\x0c\\x85\\x44\\x4d\\xa5\\x9c\\xe4\\x8d\\x7f\\x5e\\xa4\\x70\\x81\\x64\\xd1\\x4f\\x8b\\xb7\\xf7\\x12\\x04\\x30\\x9c\\xa1\\xa6\\x22\\x84\\x93\\x51\\x4f\\x42\\x18\\x4d\\x72\\x64\\x65\\x8f\\x58\\x26\\x69\\x8f\\xe3\\xf3\\x8b\\x03\\xaf\\x8f\\x89\\xbc\\x10\\xef\\x9b\\x41\\xd1\\x9d\\x1b\\x64\\x96\\xc9\\x62\\xe5\\x23\\x31\\x8a\\x18\\xbb\\x33\\x27\\x10\\xb2\\x8d\\x47\\xd2\\x80\\x2f\\x32\\x49\\x1e\\x71\\x6f\\x65\\x59\\x11\\x01\\x37\\x73\\x87\\x64\\x1d\\x67\\x21\\x01\\x18\\x89\\x55\\xf3\\x1e\\x1f\\x01\\x27\\xbf\\x2c\\xda\\x30\\xd6\\x97\\xe2\\xe0\\x04\\x35\\x47\\x00\\x21\\xdb\\x61\\xc2\\x39\\xd3\\xb8\\x89\\x9e\\xe4\\x44\\xe8\\xb2\\xdc\\xca\\x0b\\x07\\x0f\\x44\\x9d\\x40\\x75\\xfa\\xe4\\x4f\\x51\\x2c\\xc5\\x4b\\xf1\\x09\\x81\\x84\\x7e\\x6c\\x97\\x0a\\x43\\x70\\x49\\x70\\xb6\\x09\\x55\\x98\\xba\\x5e\\xcb\\xcf\\x1a\\x80\\x7e\\x8c\\x3b\\x12\\xe1\\x15\\xe5\\x29\\x19\\xe4\\xb7\\xc0\\x22\\xad\\x80\\xa5\\x0c\\x57\\x8a\\x2a\\xcc\\x04\\x38\\xcb\\xcf\\x1c\\x4e\\xff\\x47\\x2c\\x0b\\xf9\\x9f\\x67\\x9c\\xec\\x40\\xcc\\x2d\\xc0\\x08\\x53\\x6d\\x1a\\xc7\\x01\\xbb\\x9c\\xea\\xf8\\xcc\\x2d\\x6b\\x14\\x6c\\xd7\\xc3\\x3a\\xb5\\xda\\x19\\x84\\x00\\x97\\x26\\x12\\x86\\x79\\x22\\x6b\\x2f\\x3c\\x62\\x0b\\xf8\\x78\\x6e\\x51\\xd2\\x33\\xb4\\xde\\x2f\\x09\\x96\\x18\\x52\\x59\\xb0\\x9c\\x98\\xf9\\xe2\\xd0\\x4c\\x1b\\x65\\x32\\x31\\xb6\\x2f\\xc6\\x24\\x7f\\x31\\xc0\\xce\\x25\\x19\\x7d\\x80\\xe9\\x2e\\xb2\\x9f\\x8c\\x99\\xf5\\xc8\\x2e\\x60\\x50\\x5f\\x64\\x33\\x28\\x8e\\xcc\\x44\\x81\\x66\\x72\\x70\\xce\\x9e\\xc0\\x34\\x22\\x7b\\x65\\x27\\x03\\x0e\\x93\\x07\\x3d\\x9a\\x5a\\x0c\\x92\\x5d\\x45\\x5d\\x6e\\x85\\xc0\\xde\\x85\\x61\\x67\\xff\\x9e\\x2e\\xb5\\xd8\\xb1\\xb5\\x45\\x20\\xa6\\x32\\xb3\\x7d\\x44\\x71\\x09\\x80\\xa4\\xe2\\x70\\x48\\xf0\\x8b\\x59\\x68\\xee\\xc8\\x3e\\x24\\xea\\x90\\x15\\xf8\\xf6\\x0a\\xa4\\x84\\xad\\x3c\\xf4\\xa7\\xf2\\xf6\\x11\\xe7\\xd6\\x00\\xfa\\x10\\x13\\x8c\\x84\\xf2\\x97\\xb5\\x59\\xaa\\x6c\\x4c\\x0c\\x34\\x8c\\x00\\xe3\\x7d\\x02\\x53\\x37\\x96\\x61\\x66\\x19\\x93\\xa6\\x83\\x0d\\x87\\xf6\\xa5\\x27\\xc9\\x7f\\x7c\\xa7\\x95\\x70\\x54\\x25\\xdd\\x08\\x3b\\x63\\x6f\\x7d\\x66\\xe5\\xfb\\x7b\\x9f\\xd1\\x45\\x1b\\xca\\x26\\x2a\\xa9\\x64\\x4d\\x86\\xd2\\x6c\\x61\\x67\\xc6\\x31\\x14\\x23\\xf8\\x3a\\x27\\x09\\x02\\x10\\xd5\\x3a\\x9f\\x08\\x7f\\x8e\\x30\\x18\\x98\\x1c\\xfe\\x00\\xc7\\xb6\\x94\\x83\\x6c\\x65\\x15\\xf3\\x09\\x05\\x76\\x89\\xe0\\x92\\x73\\xa4\\x59\\xea\\x17\\xd6\\x61\\x18\\x0c\\xfe\\xc3\\x80\\x21\\x91\\x11\\xe4\\x58\\xbc\\x09\\xc2\\x2e\\x0e\\x24\\x94\\x22\\x60\\x72\\x51\\x08\\x29\\x5c\\x98\\x46\\x07\\x6c\\x40\\x00\\xc3\\x11\\x82\\x2c\\x0e\\x73\\x22\\xae\\x13\\xb7\\xf8\\x4e\\x80\\xaf\\xc6\\x48\\x80\\xf8\\x16\\x48\\xff\\x15\\x07\\x3b\\xb6\\xe4\\x22\\x02\\xaa\\x21\\xfc\\x9e\\x0f\\xef\\xb7\\x99\\xd3\\x43\\xe2\\x38\\x44\\x82\\x30\\x92\\x21\\x16\\x92\\x00\\x18\\x1b\\x02\\x38\\x1f\\x88\\xc1\\xee\\xc2\\x20\\x7b\\x80\\x6c\\xbd\\xc0\\x31\\x20\\x36\\x3c\\xb8\\x58\\x26\\xa0\\xac\\xbe\\xc8\\x94\\xee\\xcc\\xf2\\x95\\x04\\xd5\\x9a\\xc7\\x69\\xa8\\xc1\\x34\\x52\\x70\\x53\\xde\\x76\\x96\\xcd\\xfb\\x00\\x3e\\x08\\xa8\\x50\\xf9\\x19\\x0b\\xb2\\xfd\\x60\\xe7\\xb0\\xa6\\xad\\x23\\x84\\x60\\x16\\x02\\x58\\x0b\\x82\\x35\\xc5\\x21\\xc2\\x30\\x0b\\x01\\x55\\x05\\xc1\\x59\\x81\\x91\\x94\\x52\\x70\\x4e\\xf3\\xbb\\x1e\\x9b\\x49\\x81\\xc9\\x89\\x83\\xb0\\x2b\\x15\\x56\\xce\\x91\\x12\\x86\\x78\\x53\\x72\\x4f\\x5a\\x26\\xe5\\x63\\x06\\x02\\x99\\x64\\xc4\\xd5\\xc0\\xa7\\x12\\x62\\xc7\\x14\\xc0\\x3d\\xc0\\xdb\\x8b\\x05\\xad\\x11\\x3d\\x81\\xe4\\x5f\\x93\\x18\\x46\\x65\\x3f\\xc6\\x6b\\x57\\x9e\\xf6\\x74\\x23\\x58\\xc8\\x11\\x57\\x2e\\x74\\x33\\x04\\xb3\\x86\\x95\\xf3\\x39\\x89\\x2c\\xc5\\xbb\\xe8\\x10\\x22\\x0e\\x21\\xb1\\xbc\\x4c\\xd0\\x01\\x2c\\x0c\\x6c\\x4b\\xdd\\xbb\\x87\\x37\\xe8\\x0a\\xba\\x96\\x37\\xa9\\x96\\x95\\xb1\\x62\\xa5\\xf8\\xe2\\x8a\\xde\\x1f\\x64\\x0f\\x6d\\xd2\\x0d\\xc7\\x85\\x7e\\x00\\x74\\xe6\\xa4\\xab\\xb0\\x5a\\x66\\x81\\x60\\x85\\x3a\\xfe\\x5f\\x4d\\x6b\\xb0\\x6d\\x3c\\x27\\x27\\xb7\\x0d\\x8d\\x10\\x91\\x7d\\x92\\x92\\x54\\x17\\x40\\x29\\xc2\\x2a\\x2a\\x66\\x5b\\x81\\x0f\\x9a\\x87\\x7e\\xa1\\x2d\\x21\\x36\\x2f\\xcc\\xd4\\x3b\\xf5\\x56\\x8b\\x29\\x88\\x36\\x0b\\x70\\x64\\xf4\\x72\\x14\\x42\\x01\\x37\\x1d\\xe8\\x6c\\xf9\\xf9\\x0d\\xa1\\x0e\\x1a\\x09\\xb1\\x1e\\xe3\\x8d\\xd6\\x80\\x1b\\x08\\x04\\x4b\\xc1\\x1b\\x70\\x7e\\x53\\x49\\x05\\x78\\x1c\\xe7\\xe5\\x3f\\x06\\xff\\x5c\\xb8\\x3c\\x46\\x73\\x3f\\x24\\xac\\x11\\xd5\\x12\\x3a\\xb4\\x28\\xc8\\x18\\xb2\\xf2\\xb1\\x0e\\x3a\\x45\\x8f\\xd6\\x62\\xbc\\x2a\\x32\\x72\\x02\\x81\\x1c\\x2f\\x27\\xb8\\x21\\x40\\x24\\x80\\x71\\x12\\x48\\x77\\x36\\xde\\xe8\\x72\\x02\\xc3\\xcf\\xc1\\xaa\\xb5\\x39\\xc0\\x03\\xe0\\x29\\x5d\\x82\\xe4\\xdc\\xcc\\x11\\xa1\\x17\\x58\\x7a\\x2b\\x03\\x5c\\xa1\\x35\\x40\\x23\\x67\\x64\\xea\\x34\\x11\\x6c\\x4b\\x89\\x91\\x1c\\x59\\xd2\\x36\\x52\\x17\\xc7\\x88\\x91\\x1c\\x59\\x27\\x0d\\x2f\\x0b\\x0b\\xb1\\x9f\\x1c\\x5a\\x5c\\xb7\\x38\\x43\\x33\\x92\\x02\\xc9\\x83\\x66\\xf7\\xe3\\x89\\x12\\x1b\\x5c\\x56\\xf4\\x97\\xe9\\x02\\x20\\x40\\xc2\\xc0\\x5f\\x35\\x31\\x6c\\x71\\x5c\\x5b\\x8f\\x25\\x51\\xb5\\x1f\\xe3\\x08\\xd0\\xf0\\x38\\xdb\\x00\\xb5\\xf2\\x07\\x68\\x9e\\xaf\\xff\\xf8\\xc2\\x8e\\x60\\xbd\\x92\\x8f\\x95\\x01\\x4a\\x68\\x83\\x8b\\xd3\\x06\\xa9\\xc2\\x5a\\x2c\\x0c\\x1a\\x4b\\xe1\\x4b\\xd4\\x07\\xcd\\x50\\x18\\x95\\x83\\x4d\\x83\\x49\\x35\\x1e\\x49\\x14\\x40\\x64\\x1c\\x68\\x21\\xc5\\x48\\x60\\x58\\xe3\\x62\\x21\\xc5\\xde\\x48\\x5e\\x8b\\xd0\\x0a\\x95\\x40\\xa0\\xff\\xc2\\x02\\x45\\x15\\x59\\x71\\x0b\\x50\\xe3\\x8a\\x1e\\x83\\x0c\\xa2\\x24\\x88\\xa9\\x22\\x24\\x16\\x8a\\x99\\x6a\\x0b\\x40\\x3c\\x46\\x8c\\x5b\\x44\\x44\\x89\\x3a\\x38\\x04\\xad\\x93\\x44\\x0b\\x0c\\x0d\\x47\\xf5\\xa3\\x2c\\x29\\x47\\xcc\\x81\\x90\\x6f\\x3a\\x64\\xa8\\x0b\\xcb\\x41\\xf7\\x2b\\x0d\\x48\\xbb\\x90\\x32\\x24\\x02\\x99\\x5a\\xf1\\xac\\x48\\xd0\\xd4\\x94\\x1a\\xf0\\x4b\\xa3\\x28\\x08\\x3f\\x28\\x1e\\x20\\x5d\\xd6\\xdd\\xa8\\x44\\xf9\\x0a\\x94\\x3b\\xec\\xcb\\x13\\xd7\\x82\\x5b\\x48\\x82\\xfe\\x93\\x00\\x21\\x41\\xa5\\x28\\x06\\x9b\\x11\\x40\\xff\\x82\\x92\\x8c\\x5a\\x82\\x85\\xb6\\x22\\x84\\x16\\x08\\x74\\x80\\xa6\\xdf\\x00\\x4a\\x81\\x34\\x6f\\x02\\x68\\xda\\xa3\\x1c\\x47\\x80\\x1e\\x10\\x26\\xaa\\xc0\\x1a\\x4b\\x4d\\x8f\\x5b\\x60\\x84\\x3c\\x35\\x0c\\x00\\x34\\x2a\\x3b\\x90\\xd8\\xcf\\x92\\x4f\\xda\\xb6\\x2a\\x2d\\x3d\\xd0\\x04\\x46\\x82\\x33\\xc5\\x03\\x25\\x58\\x88\\x44\\xbe\\xa3\\x93\\x44\\x37\\x68\\x6d\\x7d\\x86\\xa4\\x41\\x2c\\xe6\\x10\\x07\\x32\\xaa\\xdf\\x8c\\xe0\\x1a\\x32\\xa2\\xd6\\x53\\x07\\xf9\\x3a\\x38\\x28\\x8f\\xa8\\x50\\x11\\x9e\\x50\\x89\\xe8\\x2a\\x16\\x82\\x89\\xa4\\xd9\\x2a\\x98\\xf7\\x51\\x80\\x4a\\x78\\x1c\\x22\\x80\\x8e\\x81\\x21\\x1b\\x71\\x7d\\x18\\x6f\\x8c\\xea\\x12\\x91\\xed\\x64\\xd1\\x82\\x4c\\xcc\\x8c\\x8e\\xb4\\x8d\\x51\\xed\\x96\\x71\\x8c\\x43\\xcf\\xd3\\x32\\xbf\\x89\\xde\\x3a\\x11\\x48\\x64\\x64\\xb6\\xdf\\x51\\xc0\\xc0\\x97\\x12\\x30\\x2a\\x02\\x00\\x38\\x37\\x90\\x90\\x35\\x23\\x25\\xfc\\x60\\xa2\\x79\\x22\\x70\\x3c\\xb3\\x2a\\x6d\\x6e\\xb3\\x6a\\xac\\xec\\x9a\\x24\\x8d\\x6a\\x33\\x8d\\x83\\x0a\\x5a\\xad\\xd5\\x3e\\xcd\\xb4\\x34\\x7c\\x52\\xc2\\xac\\xe4\\x09\\x46\\xe8\\x30\\x04\\xa1\\x02\\x44\\x96\\x00\\x8f\\xcc\\x17\\x7e\\x16\\x35\\x3a\\x84\\x45\\xde\\xfc\\x1b\\xd8\\x37\\xe1\\x63\\x33\\xa8\\x8c\\x4e\\xf9\\xae\\x89\\xa1\\xa3\\x18\\xa2\\x32\\x53\\xd5\\x76\\x2e\\x38\\xbb\\x02\\x26\\xf6\\x20\\x1f\\x72\\xbc\\xb6\\xcd\\x01\\x72\\x92\\xdb\\xb4\\xf1\\xc0\\x29\\xa7\\x3c\\xfb\\x24\\x5c\\xc8\\xda\\x30\\x09\\xbb\\x08\\xc3\\xa6\\x8a\\xa3\\x31\\x11\\x7e\\xd9\\x3c\\x61\\xec\\x1a\\xcb\\x04\\x6d\\x53\\x7d\\xad\\x28\\xd7\\x7a\\xa0\\xd4\\x41\\xf0\\xeb\\x07\\xa8\\x96\\x0a\\x75\\x55\\x94\\x52\\x49\\xeb\\x8f\\xe9\\x11\\x81\\x24\\x63\\x8f\\x1a\\x26\\x6f\\xd7\\xb0\\x7c\\x88\\x41\\x45\\xfc\\x8b\\xbe\\x3a\\x57\\x20\\x5f\\x8c\\x79\\x8f\\x05\\xcc\\x1c\\xd7\\x1c\\x1c\\x71\\x5f\\x12\\x97\\x14\\xec\\xdc\\x9e\\x36\\xa4\\x94\\x7c\\x53\\xea\\xcf\\x3a\\x52\\x62\\x2e\\xab\\x66\\x56\\x28\\x69\\x85\\x0d\\x0b\\x07\\xfa\\xc2\\x7f\\x98\\x3c\\x58\\x9f\\x85\\x06\\xf7\\xf4\\x95\\xcc\\xb7\\x71\\x6b\\xb7\\xa5\\x36\\x94\\x75\\x9c\\x9c\\x38\\xa8\\xf5\\x34\\x55\\xac\\x29\\x99\\xea\\x29\\xd6\\x46\\x7a\\x7b\\x8b\\x45\\x17\\x87\\x10\\x02\\x1c\\xfc\\xc4\\x9b\\x9e\\xe6\\xa5\\xe4\\xbc\\xa2\\x97\\x8f\\xf2\\xb3\\xc4\\x94\\x1a\\x8f\\xb9\\x91\\xb1\\x0b\\xfc\\x5d\\x00\\x00\\x45\\x9f\\x60\\xc8\\x00\\x2a\\xb0\\xe7\\x64\\xee\\x1d\\xea\\x34\\x72\\x9e\\xbf\\x00\\x2c\\x1c\\x22\\xd6\\xea\\x41\\x6c\\x99\\xaa\\x8f\\x22\\xaa\\x80\\x39\\xc0\\x9a\\x44\\x4e\\xf0\\xc2\\x35\\xde\\xce\\x30\\x99\\x49\\x92\\x09\\x31\\xd7\\x0b\\xb6\\x31\\xa6\\x20\\xf6\\x5b\\x8d\\x2a\\xd5\\xcd\\x56\\xa7\\xa9\\xca\\xd2\\x7c\\x3d\\x4c\\xa7\\x28\\xf0\\x97\\xe7\\x59\\x7e\\x40\\x75\\x83\\x3a\\xd1\\x8e\\xbc\\x1e\\x89\\x7f\\x88\\x12\\x11\\x24\\x64\\x1a\\x5c\\xfa\\x92\\x9d\\x71\\xe8\\x08\\xc6\\x9e\\x01\\x4f\\xee\\x2c\\x84\\xe1\\x83\\x29\\xa8\\xe6\\x44\\x38\\xb2\\x4e\\xf5\\xf7\\xe8\\x8b\\x2d\\x83\\xbc\\x9e\\x6a\\x15\\x46\\x40\\xa3\\x2f\\x83\\x81\\x80\\xc1\\x4c\\x5d\\x46\\x1d\\xae\\x69\\xda\\x73\\x29\\x94\\x89\\xe9\\x0c\\x0d\\x0e\\x49\\x79\\x3f\\x4b\\x74\\x26\\x41\\x21\\xc7\\xe0\\x61\\x80\\xa0\\x98\\x1f\\x99\\x87\\xa7\\xd1\\xc9\\x5a\\x35\\x3f\\x8b\\x18\\xd5\\x83\\x35\\xe8\\x59\\x84\\x2a\\x33\\x1e\\x8b\\x54\\x22\\xf5\\x14\\x50\\xa1\\x04\\x4b\\x18\\x94\\xc5\\x02\\x01\\x12\\xcf\\x9c\\x2d\\x31\\x45\\x25\\xaf\\xe7\\x1c\\x29\\x95\\x58\\x76\\x34\\x38\\x11\\xa6\\xf1\\x48\\x43\\x81\\xca\\x3e\\x06\\x35\\x14\\x03\\x0d\\x81\\x4a\\x70\\x52\\x0e\\x83\\xe6\\x00\\x75\\x08\\xc0\\xcf\\xe1\\xb6\\x1c\\x6e\\x9f\\x7e\\xe7\\x93\\xeb\\xdc\\xff\\x23\\x14\\x60\\x90\\xc3\\x40\\x00\\x28\\x00\\xe1\\x40\\xbb\\xee\\x28\\x80\\x6c\\x20\\x40\\x80\\x34\\x51\\xcd\\xa4\\xc7\\x6d\\x68\\xa2\\x80\\x54\\x09\\x39\\x10\\xa3\\x1b\\x58\\x45\\x8a\\x25\\x63\\xbb\\x8a\\x20\\xd4\\xb6\\x0f\\x67\\x08\\x3a\\x61\\x06\\x9f\\xa0\\xb3\\xc5\\xa8\\x62\\x04\\x01\\x05\\x8b\\x64\\x01\\x9a\\x20\\x34\\x18\\x83\\x29\\xf4\\x8c\\x22\\xdd\\xb2\\xb3\\x80\\x23\\xa0\\xe3\\x73\\x39\\xd3\\x87\\x21\\xab\\x03\\x81\\x40\\x01\\x7a\\x44\\xff\\x27\\x03\\x0e\\x35\\x58\\x07\\x33\\x98\\x5b\\x69\\xc0\\x16\\x0f\\xca\\xef\\x30\\x28\\x30\\xc4\\xe5\\x10\\xc7\\xcf\\x22\\x65\\x03\\x76\\xb7\\x41\\xbc\\xd3\\xa1\\x59\\x8b\\xe3\\x27\\xf5\\x38\\xe2\\x1b\\xbb\\x85\\x05\\x71\\x1b\\xb8\\x11\\xb3\\xe6\\xdf\\x22\\x61\\x49\\xef\\xf8\\xa0\\xdf\\x98\\x41\\xf1\\x03\\x8f\\x7a\\x5c\\x29\\x8d\\x6f\\xda\\xca\\x0a\\x8b\\x1e\\xc5\\x49\\xbb\\x24\\x0b\\xa1\\x4c\\x43\\x37\\xa8\\x8d\\xd4\\xc8\\x5b\\xd3\\x93\\x3a\\xc1\\x50\\x86\\x32\\x28\\x45\\xae\\xeb\\x44\\x74\\x10\\x8e\\xb3\\x08\\x83\\x1b\\x8c\\x49\\x7d\\x4c\\x15\\xb3\\x0b\\x0e\\xfe\\xb6\\x8e\\x91\\x83\\x56\\x28\\x1f\\xc2\\x03\\xc6\\xa1\\x01\\x81\\x70\\x19\\x20\\x5f\\x60\\xee\\xdd\\x2b\\x08\\xfb\\xdd\\xd9\\xd2\\x3c\\x7e\\xfa\\x92\\x5f\\xb8\\xf7\\x7d\\x12\\xae\\x1f\\xb3\\x68\\xd5\\xa3\\x6a\\x1f\\xb4\\x63\\x10\\x57\\x82\\x08\\x65\\x9b\\x59\\x34\\x66\\x01\\x7f\\xca\\x5f\\x02\\x48\\x15\\xc0\\xbb\\xed\\x92\\x4f\\x53\\x39\\xa6\\x8c\\x82\\xb4\\x02\\x22\\x88\\x03\\x56\\x23\\xce\\x7f\\xf2\\x09\\xf6\\x6c\\xd8\\x25\\xc0\\x94\\x01\\x60\\x28\\xb1\\xb6\\x29\\x16\\xc0\\x98\\xc8\\x40\\x1d\\xf6\\xd3\\x26\\x41\\x98\\x4b\\xb5\\x45\\x70\\xe5\\x56\\x78\\x5a\\x60\\x12\\xfb\\x4d\\xa4\\xdf\\xd0\\x5d\\x92\\x34\\x43\\xba\\xdd\\xf8\\xeb\\x49\\xc3\\x80\\xae\\x1c\\x0d\\x72\\xb0\\x12\\xb0\\x11\\x32\\x7c\\xd9\\x9b\\x5b\\x61\\xa3\\x6c\\x0b\\xd9\\x56\\x76\\x5b\\xb5\\xd0\\x42\\xf1\\x31\\x53\\xcd\\x92\\xee\\x07\\x7a\\xd5\\x3a\\xb6\\xf4\\xda\\xa0\\x31\\x78\\x88\\x54\\x22\\x02\\x0f\\xd3\\x0c\\x65\\x81\\xd8\\xb4\\xac\\xb9\\x28\\x5f\\xca\\x17\\xa1\\xc2\\x71\\xc2\\xbb\\x23\\x6b\\x31\\x66\\xe4\\x29\\xd7\\x64\\x57\\xff\\xa2\\x03\\x59\\x1a\\x0b\\x7e\\x2c\\x03\\x18\\xea\\x76\\x2d\\x1d\\x7a\\xfc\\x00\\x07\\x3c\\xd3\\x62\\x73\\x2d\\x64\\xa6\\xb3\\xd1\\xd4\\x52\\x51\\xc7\\x5d\\xe2\\xb8\\xc6\\xba\\xb3\\xd7\\xd6\\x42\\x0f\\x98\\x82\\xc2\\x1b\\x18\\x29\\x3c\\x11\\xf6\\xc5\\x98\\xcb\\x0f\\xd1\\x43\\x4c\\x92\\x6e\\x8d\\xcd\\x6f\\xdb\\x3f\\x8c\\xa1\\xa2\\xf4\\xba\\xf8\\x1c\\x2d\\xec\\x18\\xdc\\xf8\\xbd\\x42\\xfc\\x0c\\x01\\x8b\\xd1\\xdb\\xc0\\x06\\x3f\\xf8\\xa8\\x68\\x92\\x24\\x7f\\x06\\x50\\xd8\\x97\\xc4\\x37\\x83\\xae\\xec\\x6c\\xec\\xd8\\x38\\x3b\\x1a\\x05\\x92\\xf6\\xc2\\x52\\x7a\\xdb\\x29\\x8b\\x93\\x15\\xc8\\xf6\\xdc\\x57\\x6e\\x3c\\xb3\\x20\\x76\\x65\\x4a\\xfa\\x2a\\x5b\\xd3\\x0b\\x6d\\x98\\xce\\xb1\\x40\\x57\\x9b\\x16\\x63\\x95\\xa4\\x5e\\xd6\\x5d\\x1a\\x2a\\x31\\xae\\x15\\x61\\x26\\x26\\x68\\xa3\\xb1\\x72\\x1a\\xe6\\xdd\\x7e\\xa9\\x2e\\x56\\xb1\\x55\\x41\\x6b\\x0a\\x05\\x55\\xba\\x2a\\x51\\x3b\\xca\\xb7\\x3e\\xd2\\x2c\\x47\\x78\\xbf\\xe2\\x11\\xe9\\x54\\xaf\\xdc\\x8d\\x73\\xcd\\x08\\x3c\\xb5\\xba\\x75\\xaf\\x86\\x3b\\x63\\xb5\\x44\\xe9\\x36\\x4e\\xb1\\x70\\xfa\\x40\\x85\\x68\\x6a\\x7c\\x35\\x82\\x6c\\xde\\x59\\x3a\\x04\\xaf\\x47\\x34\\xea\\x70\\x53\\xc1\\x52\\x6c\\xd2\\x7d\\x13\\xa7\\xf4\\x3a\\x69\\x95\\xec\\xfa\\x41\\x5c\\x66\\xf1\\x25\\x5c\\xdd\\x12\\x65\\x0c\\x3e\\x84\\xc1\\x60\\x8c\\x8d\\xde\\xe8\\x44\\x44\\x11\\x90\\x30\\xd5\\xb0\\x53\\x9d\\x2a\\xe8\\x59\\x0d\\xe5\\xec\\x8e\\x86\\x95\\xe8\\xb7\\x0c\\x6e\\xf0\\xd9\\xc2\\x69\\x8b\\x6a\\xa5\\xb9\\xe8\\x14\\x80\\xb1\\x0c\\x64\\x85\\xc9\\x26\\xf8\\xad\\x8b\\x00\\xf2\\x1d\\xf7\\x14\\xd4\\x4a\\xf9\\xd2\\xc3\\x9a\\xa4\\x19\\x15\\xc2\\xd5\\x0b\\xc2\\x88\\xd4\\xb4\\x60\\x29\\xf4\\x8f\\xe9\\x16\\xfc\\x10\\x00\\x70\\xcb\\x04\\xb5\\x00\\x4f\\xb6\\x79\\x90\\x6f\\xa1\\xf7\\xba\\x1f\\x85\\x6f\\x42\\x3a\\x55\\xcd\\x69\\x73\\xcb\\x91\\x96\\x21\\x16\\xcd\\x6f\\x1f\\x4f\\x8d\\xa1\\x21\\x34\\x71\\xd1\\x15\\x99\\x87\\x70\\xc5\\xe7\\x0a\\x76\\x32\\x03\\xe3\\x51\\xec\\xf2\\x00\\x0d\\xee\\xf9\\xcc\\x4c\\x48\\x98\\x18\\x70\\x69\\x0f\\xca\\x20\\x2b\\x4c\\xc4\\x51\\x4f\\x49\\x0e\\x98\\x60\\x6d\\x01\\x72\\xbf\\x15\\xe3\\x25\\x0e\\xd8\\xd4\\xfa\\xbb\\x95\\x5e\\xdd\\x88\\xf4\\x7c\\x31\\x0b\\x79\\x13\\x96\\x38\\x6f\\x50\\x4b\\xe9\\x19\\x80\\x24\\x51\\x75\\xc3\\x21\\x69\\x1b\\x9d\\x53\\xc9\\x1c\\x84\\x45\\xca\\x54\\x3f\\x0a\\x40\\x22\\x73\\x30\\x9c\\x92\\x75\\xef\\xdd\\xe9\\x39\\x2d\\x29\\xe0\\x29\\xb2\\x0e\\x29\\x96\\x6c\\x7a\\xe5\\x93\\x92\\x16\\x83\\xe6\\x1e\\x8f\\x10\\xa1\\x7d\\x47\\xf1\\xc3\\x6f\\x2a\\x1c\\x35\\xe6\\x69\\x39\\xc5\\x1e\\x01\\x82\\x29\\xc0\\xc8\\xf0\\x42\\x37\\xc4\\x3e\\x07\\xcd\\xf1\\x4e\\x5b\\x97\\x57\\x7c\\x2a\\xd0\\x9a\\xdc\\xf9\\xac\\xe8\\x89\\x75\\x5b\\x21\\xe9\\xd2\\x6e\\x6c\\x01\\x03\\xbd\\x6d\\xd0\\xe6\\x81\\x66\\x68\\x26\\x1c\\x0a\\x90\\xa0\\x15\\x33\\x6a\\x43\\x74\\x62\\x99\\x82\\x2f\\xcb\\xb8\\x60\\x18\\x37\\x8d\\xc1\\x81\\xe7\\xb1\\x01\\x9a\\x4e\\xd0\\xb3\\xe8\\xa4\\x84\\x6d\\xb0\\x94\\xbb\\x62\\x81\\xbc\\x11\\x32\\x61\\x79\\x32\\x47\\x41\\xd6\\xec\\xa2\\x35\\xdc\\x78\\x2b\\xd0\\x37\\x07\\x0f\\x35\\x98\\x57\\x1d\\xc8\\x6c\\x24\\x29\\xe0\\xa6\\xed\\x0d\\x93\\xce\\x57\\xa0\\xf6\\xe7\\xd0\\x0d\\xcf\\x07\\xed\\xdd\\x72\\x90\\xa7\\x7d\\x8e\\x08\\x7e\\xc5\\x1f\\x03\\x4e\\xe8\\x4e\\xfe\\x57\\x23\\x0a\\x4c\\x1e\\xe5\\x4d\\x4f\\x0f\\xb1\\x52\\x0b\\xb0\\x8e\\x99\\xc9\\x64\\x72\\xf0\\xb8\\x22\\x53\\x3b\\x24\\x09\\xcf\\x76\\x82\\xd9\\x71\\x93\\x35\\xb1\\x48\\x8e\\x93\\xea\\x42\\x04\\x79\\xfc\\x35\\x48\\xd0\\x6e\\x1e\\xde\\x6b\\x1a\\x55\\xad\\x2a\\x00\\x6c\\x61\\x63\\x76\\x60\\x79\\xf0\\xa4\\x49\\x2f\\xea\\x3a\\xb5\\x93\\x66\\x2c\\x40\\xce\\x9d\\x04\\x76\\x4c\\x84\\xe3\\xaa\\x91\\x68\\x70\\x39\\x3e\\x44\\x0b\\x5e\\xd4\\x07\\x41\\xb9\\x42\\x47\\x27\\x1a\\x36\\x32\\x36\\x9c\\x23\\xc5\\xca\\xf7\\x44\\x0b\\x84\\xda\\x45\\x12\\x1b\\x16\\x56\\x60\\x15\\xb5\\x26\\x9b\\xcd\\x07\\xc2\\x1c\\x74\\x49\\x95\\xb3\\x3a\\x35\\x77\\x2e\\xd3\\x75\\x21\\xd3\\xc4\\x05\\xf1\\xee\\xf1\\x9f\\x74\\xc4\\x62\\xd7\\x27\\x67\\xba\\x99\\xb3\\xfb\\xbf\\x0e\\x3c\\x64\\x8c\\xc5\\xdc\\x0e\\xc8\\x00\\xa1\\xc2\\x51\\xc6\\xc4\\x8b\\xc1\\xc5\\x16\\xe1\\x88\\xa9\\x75\\xc5\\x45\\x9b\\xd9\\x70\\x53\\x65\\x68\\x61\\xd0\\x5d\\x71\\x62\\xbb\\x28\\x90\\x43\\x96\\x70\\x13\\x00\\xa1\\x42\\x73\\x42\\x96\\xc0\\xe1\\x5a\\x7b\\x89\\x51\\x89\\x60\\x08\\xd8\\xc5\\xe7\\x05\\xbc\\xb1\\x04\\x8b\\xe9\\x84\\xb1\\x53\\x28\\x02\\x47\\x0a\\x35\\x8c\\x62\\x09\\xc4\\x18\\x5e\\x78\\x50\\x63\\x20\\x56\\x68\\x04\\x27\\xf0\\x84\\x96\\x59\\x9f\\xde\\xa0\\xe3\\xeb\\xe1\\x25\\x84\\x77\\x91\\x40\\xbf\\x17\\x08\\xa4\\x44\\xae\\x7e\\x9c\\x7b\\xcc\\xe3\\x84\\x65\\xa2\\xeb\\xe8\\x1f\\x65\\xb2\\xc8\\xc8\\x46\\xda\\x29\\x91\\x16\\x8a\\x4c\\x4e\\xeb\\x67\\x47\\x11\\x04\\x25\\x70\\x08\\x58\\x9d\\xd7\\xc7\\xfc\\xe4\\xf8\\x81\\x76\\xcc\\x53\\x0b\\xd8\\x82\\x8b\\x71\\x51\\x31\\x2e\\x5f\\x16\\x27\\x44\\x17\\xe4\\xef\\x9c\\xcc\\x61\\x7c\\x9c\\x08\\x5d\\xd3\\xde\\x4e\\x4c\\x88\\xc4\\x43\\xce\\x4e\\x0c\\x8c\\x3b\\x34\\x2e\\x4e\\xaa\\x8a\\x5b\\x35\\x2e\\x4e\\xf8\\xce\\x59\\xa7\\x78\\x38\\x26\\x36\\x07\\x91\\xd3\\xe1\\xf3\\x78\\xb0\\xb2\\x05\\xf0\\x70\\xcc\\x60\\x98\\x91\\xfc\\x1c\\x11\\x88\\xc0\\x9f\\x3e\\x0e\\x00\\x46\\x40\\x4f\\xa7\\xc1\\xc7\\x95\\xcc\\x44\\x09\\x7c\\x09\\xa8\\x9c\\xe3\\x47\\x10\\xb4\\x43\\xf1\\x26\\x3d\\xd6\\x17\\x71\\x11\\x8b\\xb5\\xc3\\x39\\xa8\\x97\\x9e\\x11\\x69\\x74\\xbe\\x30\\x38\\xed\\xc0\\xf8\\xbc\\x93\\x8e\\xf1\\xf2\\xd1\\x2c\\x48\\x0c\\x7e\\xcb\\x45\\x07\\x61\\xa7\\xbe\\x01\\x22\\xe7\\x47\\xce\\xc3\\xec\\x2b\\x0b\\xd7\\x4a\\x50\\xa3\\x2d\\x22\\x84\\x9a\\x1c\\xd7\\x6d\\xa1\\x18\\x50\\x35\\x56\\x03\\xc1\\x14\\x40\\x4c\\x6c\\xf8\\x5a\\xba\\x14\\x50\\xd4\\x76\\x89\\x81\\x20\\x6a\\x03\\x98\\x04\\xef\\x70\\x20\\x8c\\xbd\\x5d\\x15\\x05\\x84\\xc4\\xe0\\x91\\x25\\x22\\x49\\x44\\x4a\\x98\\x22\\x2a\\x0d\\x29\\xe2\\x62\\xc5\\x72\\x13\\x07\\xe1\\x31\\x78\\x8e\\xe0\\x9d\\x28\\xb2\\x5d\\x67\\x44\\xb8\\x78\\x81\\x05\\x84\\x47\\xd6\\x04\\x56\\xaa\\x08\\x0c\\xaf\\x0b\\x93\\x2f\\xcb\\x29\\xc4\\x5f\\x9d\\xaa\\x3c\\xae\\x66\\x83\\xef\\x9b\\x04\\x67\\xb3\\x40\\x86\\x81\\x28\\x40\\xab\\x57\\xa8\\x82\\x20\\x7f\\x5a\\x11\\x88\\x73\\x14\\x00\\xe5\\xda\\x2f\\x00\\x69\\x9a\\xc8\\xfa\\x02\\x3f\\x02\\x3b\\x80\\x4f\\x2d\\x5b\\x33\\x48\\xce\\xd2\\x17\\x5a\\x4d\\xd1\\x22\\x05\\x8b\\x77\\xd3\\x43\\xd4\\xac\\x3e\\x1a\\xa6\\xc4\\x82\\x48\\x73\\xb1\\xc7\\x54\\x8b\\x7a\\x16\\x5e\\x32\\x26\\xa2\\x83\\xd8\\xa8\\xe9\\x10\\x73\\x06\\xda\\xb3\\x11\\x80\\xe0\\xd8\\x72\\xad\\x90\\xb5\\x11\\x5f\\x1b\\xa9\\x02\\xc2\\x8b\\xe3\\x15\\x3c\\x20\\xce\\x96\\x20\\xbb\\x2e\\x34\\x36\\x56\\x44\\x3a\\x27\\x1a\\x96\\x89\\x83\\x85\\x7d\\xd1\\x10\\x9a\\x4e\\x1e\\x8e\\x37\\x82\\x84\\x31\\xd9\\xa2\\xfc\\x8a\\x0c\\xab\\x60\\x8a\\x78\\xc9\\xf3\\x42\\x83\\x2f\\x54\\x6c\\x37\\x12\\x86\\x3d\\xdf\\x15\\x10\\x03\\x8c\\x44\\x46\\xb4\\x4f\\x66\\x6d\\xbc\\x87\\xd8\\x21\\xc0\\x8f\\x04\\x54\\x0f\\xc7\\x01\\x4e\\x9c\\x40\\x99\\x15\\xf0\\x98\\x60\\x2c\\x39\\xef\\x5b\\x48\\x2e\\xa0\\x15\\x62\\x4e\\x6d\\xd4\\x8c\\xb0\\xae\\x5e\\x00\\x16\\x82\\xda\\x11\\xa5\\xe0\\x8e\\x32\\x70\\xbf\\x1a\\xe3\\x90\\xe8\\xcf\\xba\\x2f\\x20\\x4c\\x99\\xd8\\xf4\\x46\\x18\\x50\\x8d\\xbd\\x74\\x7a\\xed\\xe8\\xb7\\x83\\x46\\x51\\xed\\x31\\x5f\\x7a\\x5e\\x90\\xe5\\xc3\\xf6\\xb8\\x8c\\x48\\x57\\x34\\xdf\\x1d\\xd7\\x7e\\xc1\\x3a\\xe4\\xf9\\x99\\x0f\\x90\\x27\\x69\\xc5\\x1e\\x63\\x41\\x4d\\xf9\\x6c\\x6a\\x20\\x0b\\x40\\x7b\\xad\\x4a\\xe9\\x15\\x3b\\x49\\x9a\\xf8\\x8c\\x4c\\xab\\x82\\x5f\\x9d\\x4e\\x2a\\x40\\x2d\\xbe\\x1d\\xed\\x38\\x8c\\xf7\\x9e\\xbd\\x05\\xed\\x8f\\x53\\x4f\\x64\\x38\\xb1\\x8b\\x79\\x29\\x46\\x75\\x07\\xdf\\xa5\\xcd\\x70\\xe2\\x55\\x8b\\xe9\\xdf\\x58\\xf7\\x47\\xe9\\x3b\\xf9\\xd2\\x0e\\xb4\\x76\\x1b\\xaf\\x1d\\x36\\xea\\x77\\x51\\xba\\x51\\xda\\x9c\\x56\\x74\\x97\\x88\\x61\\x21\\x82\\xf1\\xdb\\x6e\\x0a\\xb8\\x3a\\xe4\\x4b\\x8e\\x0e\\x2d\\xb6\\x20\\xd8\\xa3\\x57\\x2d\\x08\\x34\\x58\\xd8\\x09\\x49\\xc3\\x19\\x5b\\x01\\x6c\\x19\\xb1\\x56\\xc1\\x9a\\x66\\x6b\\x05\\xb7\\xf6\\xcd\\x1a\\xa8\\x67\\x39\\x99\\x86\\x4f\\xd9\\x6a\\x61\\x3f\\x89\\xb5\\xcc\\xf2\\x5a\\x5d\\x19\\x9f\\x1d\\xad\\x8b\\x96\\x71\\x19\\xcd\\x60\\xb2\\xcf\\x0b\\x25\\xac\\x16\\x99\\x3a\\x61\\xf9\\x81\\xf6\\x34\\x98\\x0b\\x61\\x55\\x89\\xa5\\xcf\\xd7\\x54\\x5d\\x11\\x6c\\x85\\xce\\x8a\\x45\\xa7\\x32\\x58\\xbc\\xb2\\x64\\xa4\\x57\\xca\\xc0\\x22\\xd6\\x04\\x70\\xf0\\xa6\\x0c\\xa5\\x5a\\xc0\\xb3\\xe6\\xbd\\x55\\x26\\x8e\\xd4\\xf4\\x52\\xca\\x05\\xae\\x0e\\xcc\\x17\\x24\\x93\\x1e\\x9c\\x49\\x54\\x26\\xb5\\xc9\\x99\\xfe\\x57\\x15\\x5d\\xc1\\x74\\xe5\\xd6\\xd7\\xf1\\x59\\x62\\x4a\\x24\\x7b\\xe9\\xe3\\x4d\\x64\\x02\\xc3\\xd5\\x2e\\xea\\x8c\\x48\\xc2\\xb5\\x3c\\x23\\x0f\\x5d\\xea\\x3f\\x29\\xfa\\x47\\x3f\\xaa\\xea\\x7c\\x91\\x46\\x75\\x7d\\x56\\xbd\\x9d\\x3a\\xa7\\x55\\x41\\x72\\x9a\\x25\\x22\\x2a\\x4f\\x15\\x3b\\x28\\x80\\xbe\\x48\\x41\\x43\\x0b\\x18\\x40\\x8e\\x56\\x02\\xaf\\x2a\\xea\\xaa\\x64\\xa2\\xb1\\x44\\x02\\x88\\x7c\\x2d\\x85\\x3e\\x7f\\x8c\\x20\\x5d\\x83\\x59\\x47\\x10\\x09\\x80\\x33\\x3d\\x06\\x96\\x03\\xae\\xa5\\xea\\xf1\\x0a\\xc0\\x5e\\xd3\\x34\\x1e\\xd4\\xeb\\x00\\xa5\\x69\\x64\\x46\\xd0\\x4e\\x75\\x2f\\x13\\xd4\\xbc\\x4e\\x94\\x7e\\x2b\\x85\\xb4\\x92\\x89\\xf0\\x89\\xd8\\x87\\x88\\x7a\\x6f\\x7b\\xe1\\xc9\\xcd\\x93\\xa6\\x8c\\x98\\x52\\x6c\\x42\\x75\\x45\\x62\\x74\\x04\\x71\\x28\\x81\\x1b\\x0b\\x3d\\x34\\xc2\\x4f\\xa2\\x3a\\xb4\\x44\\x7a\\x95\\x68\\xda\\xac\\x59\\xde\\x87\\xf0\\x54\\xc9\\x94\\x0c\\x99\\xda\\x93\\x26\\x0c\\xcc\\xd1\\x0d\\x25\\x64\\xde\\xa7\\x6c\\x76\\xc7\\x85\\x03\\x9e\\x70\\x98\\x90\\x03\\x49\\x20\\x0b\\x18\\xe1\\x8c\\xbf\\xc5\\x1d\\x0a\\xba\\xd2\\xc7\\x84\\xc8\\x7f\\x46\\x46\\x86\\x12\\x99\\x6c\\x9c\\x26\\x32\\x4f\\x4d\\xa1\\x09\\x59\\xa4\\x99\\x24\\x89\\x0e\\xa7\\x39\\x30\\xc9\\xcf\\x4d\\x72\\x69\\x53\\x58\\x97\\x74\\xe8\\x20\\x04\\xff\\x30\\x95\\x0e\\x12\\x2e\\xd1\\x3a\\x8a\\x64\\x53\\x22\\x52\\xb5\\x61\\x28\\x9a\\x0a\\x48\\x21\\x22\\xf1\\x1b\\x08\\x08\\xfe\\x2a\\xa0\\x83\\x3a\\x20\\x42\\x48\\xe9\\xb6\\x84\\x8c\\xe1\\xa5\\x05\\xd4\\x3f\\x91\\x0a\\x42\\xf1\\x00\\x94\\x0a\\x90\\xd9\\x40\\x5d\\x05\\xd4\\x3b\\x50\\xf6\\x44\\x29\\x0e\\x34\\x17\\x50\\xcb\\x95\\xc8\\x4b\\x66\\xd4\\xd9\\xcf\\x7f\\xf5\\x23\\x63\\x39\\xff\\xf1\\xba\\x05\\xd2\\x5d\\x67\\x9d\\x8e\\xb7\\xc7\\x39\\x33\\x21\\xbc\\xe4\\x97\\x3d\\x11\\x51\\x7e\\xce\\x58\\x98\\x45\\x3b\\x39\\x70\\x0c\\x46\\x33\\x94\\xa6\\x68\\xa3\\x2b\\x09\\xce\\x51\\x83\\x6b\\x9c\\x8d\\xd3\\xbc\\xec\\x44\\x78\\xa0\\xb9\\xd8\\xa1\\x1a\\x78\\xe7\\x64\\x1d\\x79\\xa1\\x9d\\x80\\xcf\\x53\\xae\\x76\\x11\\x5e\\x7a\\x73\\xb6\\x85\\xf3\\x53\\x9d\\xa0\\x04\\x57\\x3b\\x5b\\x52\\x4d\\xb3\\xbd\\x1a\\xa3\\xdb\\x3b\\x80\\x52\\x01\\x39\\xd9\\x8f\\x6b\\x9d\\x9a\\xe8\\xf3\\xa1\\x1e\\xc1\\xee\\x84\\x80\\xc9\\x13\\x04\\x13\\x68\\x16\\x50\\x3d\\x23\\xa6\\x74\\xe8\\x61\\xa1\\x20\\x8b\\x90\\xe1\\x20\\x8b\\x56\\x61\\x20\\x98\\xb4\\xb6\\x93\\x85\\x36\\x74\\x43\\xa4\\x9d\\xd0\\xeb\\x27\\x8f\\x3a\\x39\\xe2\\xce\\x4e\\x72\\x53\\x86\\x4f\\x8e\\xf6\\xf0\\x97\\x91\\xdd\\xcf\\x9a\\x70\\x09\\xe3\\xcf\\x5e\\x7c\\x23\\xdb\\x9e\\x70\\xf4\\xa7\\xa6\\x3c\\x89\\xb5\\x98\\xa8\\x68\\xd1\\x89\\x86\\x1e\\x9a\\xe0\\xda\\x86\\x06\\x18\\x35\\x80\\xb0\\x96\\x2e\\xfc\\x61\\x2c\\x4c\\xd0\\x18\\x19\\x84\\xb2\\x33\\x0a\\x0c\\xe6\\x30\\x4c\\xc5\\x93\\x39\\x8c\\xe7\\x34\\x08\\xcd\\xc3\\x16\\x8c\\xc0\\x35\\xc8\\xd3\\x23\\x2c\\x0d\\xd1\\x35\\xfc\\xd3\\xa3\\x56\\x8c\\x51\\x31\\x68\\xc2\\x23\\x0a\\x0c\\x9a\\x33\\x48\\xcb\\x43\\x14\\x4c\\xc7\\x32\\x28\\xc4\\x23\\x54\\x4a\\x9c\\x2e\\x84\\xa3\\xb2\\xc0\\x4a\\x72\\x2d\\xd4\\xb5\\x22\\xc6\\x4a\\x7a\\x55\\xa1\\x53\\x85\\x87\\x16\\xb4\\x5e\\x89\\x6b\\x65\\x5a\\x17\\x4c\\x5d\\x29\\x42\\x92\\xf2\\x0b\\x0d\\x28\\xa4\\x59\\xd1\\x4d\\xa5\\x12\\x15\\xa4\\x50\\x41\\x4d\\x25\\x51\\x16\\x66\\x5a\\x01\\x67\\xe5\\x59\\x96\\x62\\x5c\\xa1\\x25\\x44\\x16\\x88\\x2d\\x93\\xa6\\x49\\x29\\x01\\xe2\\x6a\\x88\\x07\\x93\\x96\\x48\\x11\\x2a\\x64\\x9c\\x92\\xac\\x4e\\xd9\\x0b\\xa2\\x5f\\x24\\x39\\x88\\x2a\\x10\\x36\\x22\\x66\\x49\\xa0\\x93\\x49\\x17\\x62\\x03\\xc4\\x5d\\x88\\x6b\\xb3\\x64\\x22\\x66\\x61\\x0f\\x09\\x09\\x3d\\x3e\\x12\\x16\\x8b\\xb2\\x3d\\xc0\\x6b\\x09\\x0a\\x3f\\x59\\x09\\x11\\x7a\\x1c\\x24\\x4a\\xb0\\x30\\x89\\xb7\\x48\\x61\\x21\\x47\\xd2\\x21\\xc6\\x41\\x50\\x94\\x8c\\x9b\\x84\\x4c\\x5a\\xe7\\x84\\x4c\\x0d\\x5a\\xc2\\x36\\xc7\\xeb\\xd0\\xf9\\xe3\\x7f\\xcc\\xf2\\xbe\\x69\\x9f\\xc0\\x81\\xae\\xf8\\x9f\\x9f\\x12\\xae\\x49\\x57\\xf4\\xab\\xa7\\x0b\\xba\\x23\\x1f\\x0b\\xd5\\xc7\\x2a\\x9f\\xa5\\xaf\\xfc\\x47\\x1a\\x0f\\xed\\xc9\\x23\\xcc\\x51\\x61\\x68\\x50\\x25\\x88\\x8d\\x08\\x5e\\x0a\\x10\\x58\\x64\\x23\\xd1\\x44\\x83\\x54\\x0d\\x11\\x8f\\x96\\xbe\\x87\\xfe\\xa3\\x8f\\x55\\xfa\\x8f\\x3f\\xb6\\x5b\\x4d\\xe3\\x40\\x7d\\xf4\\xa5\\xbc\\x20\\xcd\\x82\\x40\\xed\\x4f\\x50\\x01\\xd0\\xe1\\x97\\xec\\x94\\x63\\x94\\x0b\\x27\\x11\\x78\\x63\\x38\\x5e\\xda\\x2b\\xee\\x43\\xb3\\x43\\x4d\\xa3\\xac\\x70\\xd9\\x41\\x3b\\x81\\x5a\\x5b\\x5d\\x68\\x17\\x16\\x1d\\xe6\\x10\\x70\\x44\\x27\\x60\\xdd\\x99\\x2f\\x0c\\xe2\\xf2\\x16\\x86\\xad\\xb5\\x0b\\x0a\\x86\\x71\\x46\\x9d\\xf9\\xe1\\xc5\\x11\\x85\\x8c\\x5f\\xf8\\x80\\x18\\xdb\\xe8\\x10\\xbf\\x90\\x21\\x78\\x23\\x00\\x1e\\xa7\\x1f\\x9c\\xd6\\x56\\x7a\\xfa\\x81\\x95\\x27\\xac\\x90\\xa4\\xfb\\xd6\\x25\\x3c\\x07\\x36\\xb8\\x37\\xc4\\xd7\\xfe\\x04\\x56\\xbe\\x13\\x72\\x0e\\x95\\x01\\x40\\x68\\xb4\\x4d\\xdf\\xef\\x0c\\x06\\x67\\x38\\x0d\\xe4\\x6f\\x83\\xb2\\x94\\x69\\x2c\\x9d\\xb8\\x94\\x04\\x49\\x3b\\x13\\xc6\\xf0\\x2b\\x2e\\xa4\\x0d\\x20\\x53\\x23\\x18\\x95\\x51\\x11\\xb8\\x40\\xdd\\xb3\\xe5\\xe9\\x5e\\xe6\\xd1\\xd2\\x81\\x11\\xeb\\x19\\x9f\\x10\\x84\\x74\\xa5\\x5e\\x92\\x85\\x19\\x88\\x17\\x5f\\xd7\\x13\\x84\\x80\\xc1\\xb4\\xbc\\x84\\xa4\\x69\\x13\\x75\\x07\\x85\\x19\\xa8\\x25\\xbe\\xd5\\xe5\\xf2\\x86\\xe0\\xa5\\x16\\xc9\\x2a\\x93\\x86\\xfd\\x22\\x6e\\x55\\x3e\\xe5\\x01\\xee\\x57\\x4d\\xca\\x37\\xdd\\xba\\xfa\\xd2\\xa9\\x6e\\x05\\x53\\x99\\x1d\\x51\\x65\\xb1\\x50\\x9b\\x15\\xb0\\x54\\x2a\\xc8\\xe8\\xb5\\x1c\\xff\\xa8\\xe7\\x8d\\x47\\x39\\xe6\\x41\\x38\\x64\\x41\\x37\\x6b\\x08\\xf9\\x68\\x57\\x6d\\x0a\\x46\\xd0\\xac\\x8c\\xe5\\x4c\\x8c\\xe5\\x2c\\x8c\\x65\\x0c\\x89\\xc9\\xd8\\x9f\\x26\\x62\\x7c\\x95\\x89\\xf2\\x4e\\x27\\xc9\\x18\\x93\\x91\\x71\\x27\\x21\\xe2\\x4e\\x40\\xc4\\x9c\\x7b\\x81\\x29\\x4f\\x02\\xe5\\x3c\\x0a\\x94\\x70\\x2a\\x4f\\xc0\\xa9\\x37\\x02\\xa4\\xbc\\x0c\\x64\\xac\\x0b\\x92\\x70\\x2e\\x46\\xc0\\xb9\\x12\\xf2\\xe4\\x1b\\xcc\\x63\\xeb\\xc9\\x4d\\x77\\x92\\x9a\\x6e\\x25\\x31\\xdc\\x47\\x30\\x5c\\x6a\\x5f\\xb4\\xd4\\xb9\\xa0\\x12\\x8a\\x28\\xbc\\xad\\x11\\x4a\\x16\\x81\\xc9\\xd9\\x83\\x26\\x2e\\x66\\x55\\xa6\\xe4\\xbb\\x4d\\xc9\\x56\\x9b\\x91\\xec\\x25\\x23\\x58\\x4a\\x42\\xb0\\x94\\x7f\\x61\\xb8\\xf6\\xc3\\x71\\xd5\\x86\\xe3\\x6b\\x0d\\xd6\\x96\\x1b\\xad\\x2c\\x20\\xab\\xac\\x1d\\x55\\x56\\x41\\x54\\xd6\\x4a\\xa4\\xac\\x95\\x47\\x59\\x2a\\x82\\xb2\\x55\\x05\\x64\\xa9\\xca\\x89\\x53\\x35\\x12\\xa5\\x2a\\x25\\x3f\\x54\\x2e\\x79\\xa4\\x5c\\xe9\\x48\\xf9\\xc6\\x92\\x09\\xbe\\x92\\x09\\xb2\\x92\\x09\\x92\\x91\\x29\\x86\\x91\\x73\\x05\\x22\\xe5\\xda\\x4b\\x96\\xe8\\x2e\\xab\\xa0\\xba\\xa6\\x82\\xea\\x8a\\x08\\xea\\x5a\\x08\\xea\\x5a\\x0f\\xa7\\x68\\x3e\\x03\\xcc\\x08\\x03\\x30\\x2f\\xb9\\x81\\x7d\\xc8\\x0b\\xe5\\x04\\x57\\x99\\xc0\\xef\\x33\\x90\\xde\\x27\\x21\\xba\\x64\\x05\\xcf\\x20\\x2e\\x79\\x0a\\xe7\\x94\\x47\\x38\\xfb\\x84\\xe3\\xae\\x13\\x0e\\xb9\\x4c\\x27\\x71\\xc8\\x1b\\x8c\\xa4\\xae\\x19\\x03\\x76\\x17\\x92\\x3c\\xa6\\xa4\\x79\\x4d\\x46\\xd2\\x95\\x1b\\x4a\\x83\\xd5\\x49\\x92\\xb5\\x44\\x4c\\x35\\xe9\\x4a\\xde\\xa4\\x89\\x87\\xbd\\x29\\x1f\\xfd\\x23\\x5c\\x4a\\x96\\xc4\\xa5\\x6c\\x4a\\x9e\\xc4\\xa9\\x1b\\xd4\\x49\\x24\\xb3\\xdf\\x89\\x5d\\x71\\x29\\x0f\\x12\\x88\\x2f\\xd3\\xea\\x5e\\xfa\\x68\\x3f\\x23\\x0e\\xe4\\x2a\\x71\\x29\\x97\\x12\\x8e\\xf1\\x28\\xf3\\x02\\x93\\x70\\x28\\xd3\\x02\\xa5\\x30\\x29\\x56\\xf2\\xa6\\x6f\\x2b\\xbd\\xe5\\x70\\x2e\\xf4\\x9d\\xce\\x7b\\x5f\\x54\\x27\\x04\\xa3\\x36\\xcb\\x88\\x57\\x9f\\x8d\\x34\\xb9\\x1c\\x56\\xe4\\xf3\\x03\\x15\\xca\\x22\\x48\\x50\\x45\\x9e\\x6c\\x52\\xbe\\x62\\xa7\\xa3\\x27\\xd6\\x0b\\x7d\\xd9\\x01\\xe0\\x78\\x1b\\x76\\x5d\\xb1\\x34\\x0b\\xfe\\x89\\x87\\xb5\\xd3\\x46\\x42\\x74\\xd4\\x71\\xbf\\x7a\\x46\\x5a\\xbf\\xba\\xa7\\xb2\\xa8\\xe6\\x03\\x97\\x5d\\x19\\x5a\\x23\\x83\\xfd\\x23\\x83\\x34\\xe4\\x49\\xf6\\xe4\\x35\\x17\\x00\\xe4\\x1f\\x29\\xcb\\x6a\\x2b\\x8d\\x20\\x85\\xa2\\x2a\\x0b\\xe7\\x09\\x46\\xdf\\xe4\\x26\\xe7\\xd6\\x2d\\x9b\\xb5\\x66\\xa8\\x04\\x7a\\xf3\\xf1\\x8f\\x68\\xa0\\xba\\xe7\\xca\\x19\\xf1\\x48\\x52\\x38\\x55\\x28\\x33\\x5a\\x53\\xd0\\xba\\x2b\\x96\\x69\\x34\\xfe\\x3d\\xb4\\xdb\\x6a\\xa8\\xdb\\x83\\x2a\\xb4\\x51\\x4d\\x02\\x7b\\x5b\\x56\\xa2\\xe1\\xe1\\xed\\x13\\x43\\x16\\x8b\\xb0\\xa4\\x31\\x60\\x61\\x11\\xbb\\x38\\xef\\xd7\\xd8\\x7c\\x3a\\xd6\\x10\\x8c\\x07\\xf6\\x83\\x3b\\xbc\\x87\\x0a\\xe0\\x24\\x6d\\x81\\x56\\xea\\x11\\x63\\xf0\\x73\\x1a\\x03\\x19\\x10\\x12\\xc0\\x00\\x36\\x5b\\xfb\\x65\\xbf\\x96\\x76\\xf8\\x6a\\x7f\\x46\\xaf\\xf4\\x66\\x0f\\x06\\xe5\\xed\\x68\\x5e\\x86\\xe2\\xe5\\x6d\\x0e\\x06\\x24\\xd7\\x6f\\x3a\\x6c\\x1f\\xa2\\xdf\\x73\\x19\\x87\\x29\\x9c\\x32\\x59\\xa5\\xa6\\x8a\\xde\\x29\\x49\\x10\\x96\\x19\\x62\\xcd\\xa3\\xf0\\x9d\\xb1\\x9d\\x17\\x67\\x65\\x93\\xba\\xb2\\xe3\\x22\\xed\\xb4\\xb1\\xc4\\x58\\x99\\xdc\\xbd\\xaf\\x72\\xae\\xe5\\xee\\x49\\x86\\x32\\x0e\\x07\\x3b\\x96\\xa6\\xf6\\xa4\\x95\\x48\\x96\\xad\\x19\\x2c\\xdb\\x48\\xbd\\x28\\xd0\\x34\\x83\\x42\\x23\\x19\\x3b\\xfc\\x6f\\xa3\\x67\\x0b\\xc1\\xac\\xe2\\x64\\x6d\\x66\\x7e\\x96\\x5c\\x64\\x81\\xd0\\xc6\\x49\\x92\\x7c\\x4c\\x9b\\xa2\\x10\\xd1\\xa6\\x96\\x81\\x0f\\x25\\x94\\x3f\\xf3\\x22\\x67\\x6b\\x21\\xdc\\xdb\\xf1\\x33\\x58\\xda\\xbf\\x78\\x99\\x8c\\x58\\x90\\x86\\xa5\\xd7\\x7e\\xd5\\xbd\\xbe\\xa2\\x4d\\x2f\\x90\\x27\\x06\\x37\\x56\\x67\\x6a\\x63\\x19\\x44\\x91\\x36\\xe0\\x25\\x11\\x52\\x1a\\x59\\x4e\\x04\\x2b\\xcc\\xb4\\x86\\x83\\xc9\\xb0\\xd7\\xcc\\xb9\\xe9\\xc3\\x71\\xea\\xc1\\x6e\\xcd\\x80\\x56\\x41\\x61\\x51\\x10\\x87\\x16\\x08\\x4a\\xc0\\xd5\\x0b\\x49\\x1a\\xb9\\x6b\\x74\\xd9\\x27\\x61\\x4e\\x0b\\xfe\\x64\\xf1\\x55\\x39\\xd9\\xb3\\x43\\xa1\\x09\\x7e\\x68\\x46\\x8a\\x9f\\xa8\\x62\\x0d\\x03\\x30\\xcc\\x1f\\x0b\\x7d\\x50\\xff\\xba\\x71\\xd4\\xd1\\x52\\xc7\\x99\\x2c\\x9a\\x24\\x81\\x45\\x3c\\x59\\x28\\x93\\xba\\x34\\x9e\\xfd\\x82\\x48\\x59\\x0b\\x2f\\x97\\x05\\x1a\\x2c\\x84\\x81\\x46\\xc3\\x94\\xa3\\x8f\\xa7\\x78\\xb6\\x6b\\x99\\xeb\\xff\\xb1\\xee\\x32\\xc4\\x02\\xc4\\xf5\\xeb\\x84\\x77\\x62\\xd4\\x10\\x5d\\x13\\x4f\\xbc\\x58\\xd1\\x55\\xd1\\x7f\\xa7\\x78\\xe1\\xbb\\x50\\x73\\xcc\\x2d\\x1e\\x44\\x3a\\x77\\xdc\\xf8\\xcf\\x8c\\xd8\\x37\\x94\\x84\\x4b\\x5b\\xea\\x77\\x30\\x4e\\xb4\\xf6\\x22\\x40\\x5f\\x11\\x20\\x39\\x85\\x91\\x13\\xd4\\x7c\\xcd\\xdc\\xc3\\x4c\\x24\\xc9\\x91\\xf1\\x7e\\xdb\\xfe\\x2e\\x12\\x24\\x5f\\x66\\xff\\x17\\x03\\x4c\\xbb\\x3d\\x61\\x68\\x67\\x82\\x10\\x1a\\xf5\\x24\\x26\\xd0\\x91\\x64\\x44\\x46\\x42\\xe2\\x62\\x8d\\x18\\x61\\xe3\\x18\\x50\\x07\\x40\\x42\\x34\\x3c\\xdc\\x1d\\x65\\x2e\\x3d\\x83\\x67\\x64\\xce\\xb5\\x5e\\x03\\x25\\x9b\\x01\\x92\\x54\\x7d\\xc9\\xe5\\xbe\\xb4\\x6a\\x4f\\x1a\\x0c\\xaa\\xe7\\xe0\\xa2\\xf6\\x8e\\x09\\x5a\\x37\\x96\\xf4\\x47\\x8b\\xa2\\x39\\x1a\\xa6\\x61\\x16\\x2a\\xcc\\x30\\x61\\xac\\xed\\x06\\x09\\xa0\\xb2\\x41\\xa6\\xe8\\x89\\xd4\\x71\\xe9\\x3c\\xb3\\x54\\xce\\x17\\x05\\xa5\\x28\\xc7\\x04\\x9e\\x6d\\x83\\x2f\\x5c\\x8f\\x33\\x72\\x3a\\xf6\\xec\\x27\\x31\\xab\\x09\\xae\\x5c\\x8e\\x47\\x90\\x34\\x43\\xab\\x8b\\xa6\\xc3\\xe8\\xce\\x8c\\x95\\xd5\\xf2\\x3c\\x26\\x51\\x4f\\x09\\x97\\x23\\xc9\\x3a\\x1d\\x54\\xe5\\x7c\\x03\\x16\\x01\\xa3\\x2b\\x3a\\xbe\\x92\\x6c\\xae\\x09\\x22\\x87\\xd1\\x33\\x30\\x6d\\x97\\x98\\x8b\\x39\\xe6\\x22\\xd7\\x30\\xc8\\x8f\\x30\\xbb\\x22\\x3d\\x57\\x98\\x8a\\x0a\\xe6\\xd5\\xb9\\x23\\x62\\x49\\x78\\x4e\\x96\\xe3\\x59\\xaf\\xdf\\x8d\\x4d\\xa0\\x64\\x16\\xda\\x84\\xd5\\x61\\x77\\xab\\x21\\x94\\xdb\\x9d\\x34\\x63\\x3f\\xa9\\x21\\x7c\\x43\\xa7\\x45\\x04\\x18\\x71\\xd6\\x6e\\x3a\\x85\\xbd\\xba\\x8e\\x55\\xee\\xa3\\x97\\xb7\\x41\\xc2\\xb5\\xd0\\x70\\xf2\\xe2\\x82\\xac\\x44\\xfa\\x5f\\x95\\x93\\x0c\\xe5\\x50\\x53\\x1d\\xf2\\x37\\xd0\\x15\\x40\\x5c\\x9d\\x67\\x94\\x2d\\xba\\x8a\\x75\\xc2\\x3f\\x8d\\xcc\\x5d\\x3f\\x5a\\x4e\\xdc\\xa9\\x59\\x6c\\x34\\xc1\\xa5\\xc4\\x8a\\x94\\x16\\x8b\\x4d\\x28\\x79\\x9f\\x27\\x37\\xf5\\x7d\\xcd\\x99\\x95\\x52\\x70\\x57\\x68\\x02\\x36\\x17\\x65\\xca\\x57\\x05\\xe5\\x92\\x7d\\xd9\\x48\\x52\\x12\\xc4\\xb0\\x40\\x6d\\x1a\\x2e\\x1f\\x92\\x95\\xc2\\x20\\xc9\\x10\\x3f\\x64\\xa5\\xb0\\x94\\x01\\x84\\x65\\xed\\x03\\x3a\\x8d\\x9f\\xae\\x1e\\xc5\\xa6\\xba\\xd8\\x4f\\xa2\\x10\\x81\\x88\\x76\\x34\\x95\\xc6\\x6b\\x2e\\xce\\x41\\xf1\\x90\\x77\\x99\\x6d\\x80\\xa5\\xcc\\x37\\xd8\\xf5\\xc8\\x91\\xa0\\xc4\\x9e\\x62\\x2f\\x27\\x98\\xe8\\x44\\x88\\x24\\x5a\\x27\\xed\\x83\\xa8\\x6a\\x00\\x09\\xfa\\x60\\x02\\x6e\\x24\\xc0\\x34\\xcb\\x1c\\x43\\x5b\\x0f\\xb8\\x60\\xfa\\xfa\\x20\\xda\\x99\\xc0\\xda\\x58\\x9c\\x4a\\xcf\\x0f\\x09\\x16\\x6d\\xf4\\xc7\\xf8\\xcc\\x06\\xf1\\x94\\x0d\\xe2\\xf4\\x90\\x9f\\x8b\\x0c\\x43\\x76\\xc3\\x5e\\x78\\x7d\\xc3\\x07\\x00\\x89\\x1e\\xb5\\x71\\xe1\\xd8\\x55\\xce\\xb6\\x85\\x4b\\x5b\\x6b\\x83\\xd0\\x5c\\xb3\\x27\\x3b\\x86\\x91\\x65\\x52\\x09\\x78\\xd0\\xdc\\xe8\\xb4\\x29\\x24\\xcb\\x02\\x2c\\x8b\\x3c\\xff\\x87\\x5c\\x3c\\x17\\x20\\x65\\x58\\x08\\x98\\x09\\x02\\xaa\\x8e\\xd0\\x00\\x26\\xd1\\xe7\\x08\\x94\\xf7\\xd7\\xac\\x60\\x65\\x6a\\x44\\x02\\x13\\x70\\x1a\\x60\\x05\\x09\\x9d\\x25\\xfe\\xce\\x14\\x8f\\xc2\\xb4\\x6f\\x33\\x33\\xce\\x46\\x8f\\x5d\\x60\\x05\\xb7\\xe8\\x8d\\xf5\\xba\\xb7\\x32\\x64\\x09\\x3e\\x7b\\xab\\xe8\\x9f\\xb6\\xd9\\xf9\\xab\\xf1\\xd5\\xed\\x0d\\xae\\x6b\\x57\\xe0\\x4a\\xc1\\x23\\xb4\\xa7\\xe6\\x01\\x8e\\x4f\\x94\\xc1\\x62\\xf6\\x2c\\xf0\\x8e\\xac\\xd0\\xd6\\xaa\\xd5\\xe9\\x29\\x6a\\x32\\x9c\\x36\\x8f\\x10\\x41\\x69\\x69\\xb6\\x76\\x92\\x96\\x2d\\x8e\\xe8\\x69\\xc9\\x97\\x99\\x7c\\x80\\x6f\\x8e\\xa8\\x1e\\xb1\\xdd\\xc2\\xbe\\xfb\\x40\\x35\\xdf\\x5a\\x60\\xbb\\x6a\\xb8\\x07\\x0e\\xa7\\xa4\\x40\\x41\\x0e\\xa9\\xc7\\x94\\x6f\\xcb\\x50\\x23\\xbf\\x80\\x0f\\x93\\xbf\\x96\\xdb\\x08\\x93\\xda\\xb4\\x79\\x36\\xd3\\xa4\\xa9\\xe5\\xb3\\xe6\\xf4\\xd7\\xeb\\xce\\x42\\xf8\\x73\\xcb\\x18\\x00\\xa7\\xc6\\x44\\x66\\xa3\\xe5\\x68\\xc1\\xca\\x71\\x86\\xf6\\x36\\xb9\\xe2\\x21\\xc1\\x1c\\x22\\xc0\\x2f\\x31\\x53\\xea\\x35\\x1e\\x37\\x83\\xf7\\xe0\\xe5\\x8c\\x3d\\x4f\\x5b\\xb8\\xa3\\x2e\\xd0\\x91\\x88\\x8a\\x63\\x19\\x00\\x17\\x50\\xc5\\x12\\xa4\\x70\\x92\\x02\\x64\\x29\\x66\\xa5\\xa4\\x20\\x4e\\xd2\\x93\\x1b\\xc7\\xd9\\xd9\\x4f\\x0a\\x59\\xcf\\x0a\\x29\\xce\\xd0\\xb8\\x48\\x0c\\xf4\\x05\\x9f\\x60\\x1c\\x1f\\xfe\\x27\\x09\\x99\\x96\\xd2\\xe8\\xc6\\x68\\x39\\x25\\x9e\\x3d\\xa7\\xdb\\x23\\xde\\x3b\\x8a\\xe2\\x45\\x58\\x33\\x16\\x54\\xdc\\x46\\x79\\x8d\\xc4\\x67\\x9d\\x31\\x71\\x81\\x36\\x68\\x61\\x9d\\x33\\x83\\x20\\x7b\\x18\\x72\\x95\\x1c\\xba\\x6d\\x10\\x98\\x95\\x30\\x48\\x2d\\x10\\xdf\\xc5\\x58\\xdf\\x74\\x23\\x33\\x7a\\xbd\\x8e\\x56\\x99\\x36\\xbe\\x77\\x6b\\x71\\x4d\\x6a\\x94\\xfc\\x41\\x21\\x42\\x12\\x83\\xf1\\x1a\\xbf\\x14\\x93\\xc9\\x4d\\x28\\xc3\\xe7\\x69\\x5b\\x1e\\x08\\x7a\\xd3\\x92\\x1d\\x89\\x95\\xc4\\x9a\\x29\\x9f\\x68\\x54\\xe3\\x09\\x7d\\x2b\\x42\\x66\\xfc\\x36\\x0d\\x90\\x4c\\xdd\\x99\\xd8\\x5a\\x13\\x57\\x9a\\x3d\\x5c\\x68\\x55\\x5c\\x8c\\x82\\xd0\\xaa\\x15\\x85\\x50\\x2c\\x89\\xb4\\x31\\x3d\\x64\\x55\\x0e\\xc2\\x28\\x6c\\x89\\xa8\\x2c\\x9a\\x9f\\x58\\x02\\xa1\\x61\\xa9\\xb6\\x1a\\x9b\\x64\\xcd\\x82\\x12\\x9a\\xc1\\x09\\x4a\\x60\\x84\\xa4\\xb0\\x64\\xa3\\x8f\\x02\\x80\\x22\\xcb\\x10\\x5a\\x35\\xf5\\xfa\\x17\\x0b\\x68\\x90\\x47\\x8d\\xf5\\x88\\x4c\\xc3\\xa0\\x5d\\x98\\x1b\\x65\\x8d\\x96\\xab\\x0b\\x47\\x8f\\x2c\\x8b\\x61\\x88\\x62\\x73\\x93\\x76\\xc0\\x3d\\x5c\\x92\\x5d\\xcc\\x20\\x60\\x2b\\x42\\xc3\\x61\\xbb\\x0c\\xcd\\x53\\x93\\x34\\x19\\x71\\xc6\\x71\\x42\\xd4\\xd9\\x55\\xc2\\x84\\x87\\x74\\x0c\\xa6\\xfe\\x01\\x30\\x5c\\x8e\\xc7\\xdd\\x05\\x82\\xa2\\xd6\\x2a\\x2d\\x62\\xc9\\x56\\x2c\\x8c\\xa2\\xa8\\x9b\\x29\\x8b\\x04\\x83\\x3a\\xb2\\xa2\\x2b\\x94\\x47\\x9f\\x24\\xe1\\xe2\\x9c\\x23\\x49\\xc2\\xb8\\x50\\x75\\xae\\x2b\\xad\\x71\\x5d\\x6a\\x89\\x63\\x59\\x1f\\x15\\x91\\xef\\x59\\x1e\\xd5\\x91\\xec\\x70\\x94\\x24\\x49\\x14\\x24\\x61\\x58\\xd7\\xaa\\xc6\\xbd\\x16\\x11\\x79\\xac\\x6b\\xc9\\x63\\x37\\x7e\\xb4\\x61\\x58\\x9b\\xb9\\x63\\xdd\\xaa\\x9e\\x8c\\xaa\\x35\\x18\\x54\\x6a\\x30\\xa8\\xd4\\x59\\x51\\xa8\\xaa\\xa3\\x51\\x15\\x46\\xa2\\x2a\\x90\\x91\\x05\\x46\\xa1\\xea\\x09\\x21\\xca\\x08\\x21\\xca\\x08\\x21\\xca\\x08\\x21\\x6a\\x08\\x21\\x6a\\x08\\x2a\\x04\\x0f\\xa4\\xa1\\x2a\\x68\\xa0\\x8a\\x62\\xa0\\x8a\\x62\\xa0\\x8a\\x5c\\x98\\x8a\\x5c\\x98\\x82\\x52\\x99\\x34\\xa5\\x31\\x88\\xfc\\xc1\\x32\\x23\\x4d\\x4f\\x3f\\x3a\\xb4\\x44\\xf8\\x2d\\x03\\x33\\xc1\\x5c\\x12\\x90\\xc6\\x49\\x00\\x56\\x0f\\xc6\\xb9\\x0c\\xec\\xe8\\x4e\\x4d\\xc4\\xd4\\xd8\\x63\\x8c\\xc5\\x74\\xc8\\x67\\x49\\xc7\\x81\\x38\\xf1\\x22\\x1d\\x44\\x43\\xb0\\x80\\x4a\\x3c\\x27\\xd5\\x27\\x8a\\x62\\x2f\\x04\\xc4\\x5d\\xc9\\x88\\xbb\\x53\\x38\\xed\\x4c\\x45\\xd8\\x98\\x8b\\xb1\\x31\\x17\\x5a\\x62\\x2e\\xb4\\x84\\x5d\\x29\\x08\\xba\\x52\\x11\\x74\\x24\\x22\\x9e\\x18\\x07\\x9d\\x21\\x17\\x3a\\x42\\x2e\\x44\\x84\\x5d\\x49\\x08\\xba\\x91\\x11\\x75\\x22\\x22\\xe9\\x44\\x45\\xd0\\x88\\x8b\\xa1\\x11\\x17\\x2a\\x22\\x2e\\x54\\x44\\x5c\\x68\\x08\\xb8\\x90\\x11\\x70\\xa0\\x22\\xe0\\x40\\x45\\xc0\\x80\\x8b\\x7d\\x01\\x16\\xea\\x02\\x28\\x5b\\x1f\\xd2\\x0a\\x63\\xb9\\x04\\x04\\x50\\x86\\x3b\\x70\\x40\\x45\\x06\\x63\\xb6\\x03\\xc4\\x50\\x46\\x3b\\x60\\x3c\\x45\\xda\\x78\\x8a\\x08\\xc7\\x6c\\x07\\x08\\xa0\\x4c\\xf6\\xa0\\x70\\x8a\\x02\\xcf\\x68\\x07\\x08\\xa0\\x2c\\xff\\x48\\x1c\\xe1\\x14\\x1c\\xe1\\x14\\x1c\\xe1\\x14\\x14\\xd1\\x14\\x14\\xd1\\x14\\x0c\\xd1\\x14\\x08\\xd1\\x14\\x08\\xd1\\x14\\x04\\xd1\\x14\\x00\\xd1\\x14\\x00\\xd1\\x17\\xe1\\x82\\x2f\\xc3\\x04\\x5f\\x86\\x08\\xbf\\x0c\\x11\\x7d\\x18\\x22\\x80\\xff\\xb3\\x03\\x04\\x5f\\xec\\xf6\\x60\\x60\\x82\\x3a\\x60\\x82\\x38\\x60\\x83\\xfd\\x97\\x62\\x13\\x41\\x84\\x71\\x5c\\x4d\\x12\\x33\\xaa\\x80\\xd3\\x19\\x5d\\xe3\\x63\\x58\\xbe\\xd8\\xac\\x40\\xf4\\x6c\\x6e\\x8c\\x8e\\xd1\\x97\\xc9\\x51\\x1c\\x95\\x63\\xed\\x62\\xbc\\x26\\x5c\\x04\\x49\\xbb\\x76\\x99\\x24\\xba\\xaf\\x03\\xfe\\x63\\x4d\\x64\\xe9\\xaf\\xb5\\x8a\\xf0\\x1a\\x17\\xb4\\xc5\\x5e\\x26\\x82\\xb8\\x4d\\x34\\xdc\\x9f\\xb2\\x02\\xc0\\x64\\xf8\\xc5\\x53\\x16\\x16\\x98\\xab\\x24\\xe2\\xab\\xe3\\x23\\xab\\xf8\\x95\\xa7\\xb7\\x08\\xbb\\x6e\\x99\\x3e\\xde\\xab\\x40\\x8f\\xbe\\xd0\\x8a\\xd0\\x3f\\xcc\\x46\\x8d\\x47\\xef\\xda\\x1b\\x36\\xc7\\x90\\xd1\\xe2\\xe8\\x4b\\x1d\\x39\\x12\\x17\\xaf\\xf9\\x74\\x55\\xcf\\xad\\x03\\x5f\\x51\\xc5\\xae\\xf5\\xea\\x51\\xb5\\x46\\x00\\x2d\\xd9\\xc5\\xa5\\xad\\x00\\x2e\\x2f\\x3c\\x08\\xe7\\xf1\\xc0\\x61\\x2e\\x22\\x93\\x15\\xe3\\x72\\xf4\\x5b\\x16\\x20\\xb9\\xa6\\x90\\x1b\\x68\\xba\\xc2\\x1d\\xa0\\x89\\xc5\\xe8\\x4f\\x59\\x6f\\x1c\\x22\\xac\\xee\\x78\\x5c\\x63\\x80\\x54\\xf1\\x30\\x80\\x09\\xbc\\x32\\x88\\x58\\x06\\x66\\x58\\x80\\x69\\x4b\\x45\\x86\\xc1\\x36\\x40\\xee\\xf2\\x49\\x20\\xe0\\xa0\\x27\\x1a\\x80\\x03\\x5d\\x3f\\x6c\\x44\\x3b\\x87\\xf8\\xb9\\xa6\\xb9\\x71\\xff\\x53\\x07\\xcc\\x7f\\xf5\\x3f\\x7f\\x27\\xb9\\x30\\xdf\\xb0\\x74\\x0b\\x55\\x3c\\x06\\x75\\x71\\xc9\\x79\\xca\\xa2\\x50\\x03\\x10\\xb0\\x44\\xcc\\x0d\\x4f\\xf8\\xa2\\x10\\x80\\x00\\x1d\\xc2\\x22\\x9a\\x8a\\x68\\xa2\\xb5\\xf5\\xc3\\xca\\x85\\xa4\\xae\\xa7\\x42\\xc3\\xce\\x69\\x5a\\x3c\\xda\\x82\\xaa\\x21\\x5f\\x57\\x32\\x91\\x75\\x21\\x46\\x58\\x63\\x92\\xd3\\x20\\xba\\x72\\x09\\x3c\\x7a\\xc2\\x30\\xd8\\x51\\xe1\\x3e\\x9d\\x34\\x9a\\x0b\\xc5\\xd2\\xb9\\x5c\\xd2\\x9d\\x99\\x2a\\x94\\xce\\x66\\x43\\x31\\x96\\x28\\x16\\xae\\xc2\\x6b\\x15\\x8d\\x06\\x79\\x4e\\x1c\\xc6\\xb3\\x0a\\x2d\\x39\\x44\\x95\\x88\\x34\\xf3\\x42\\xdc\\x26\\x78\\xb3\\xa6\\xa9\\xf5\\x72\\x4b\\x99\\x2e\\x4b\\x47\\x89\\xa6\\x44\\xf0\\x64\\xe3\\x65\\x96\\x66\\xb3\\x3c\\xd3\\x5d\\x28\\x9c\\x4c\\xf1\\x41\\x3d\\xd6\\xc7\\x8e\\xbb\\x64\\xc8\\xad\\xaf\\xe9\\x67\\x0b\\x45\\x2c\\x2c\\x36\\xbc\\xca\\x85\\x49\\xdc\\x5b\\xef\\x53\\x59\\x0b\\x72\\x20\\x36\\xb6\\x00\\xb7\\x2d\\x5c\\x17\\x78\\x26\\x66\\x00\\xda\\x17\\xbd\\xe0\\xb8\\xda\\x08\\x2f\\xf7\\xe4\\x60\\xe1\\x5e\\x69\\x03\\xfa\\xad\\x0a\\xbb\\xb1\\xd6\\xd4\\xde\\x63\\x29\\x7e\\xd8\\x46\\x57\\x22\\x91\\x5d\\xd2\\xce\\x10\\x2b\\xcd\\x5a\\xfd\\xad\\xe1\\xc1\\xc5\\x17\\x04\\x78\\x64\\x20\\x92\\x78\\xe0\\xff\\x7d\\x65\\xfd\\xc4\\x40\\x32\\x40\\x71\\x48\\xca\\xd1\\xbf\\x88\\xe7\\x86\\xbc\\x28\\x5b\\x84\\xd6\\x92\\x02\\x7b\\x38\\xaa\\xb0\\x51\\xcd\\x00\\x67\\xfa\\x24\\x48\\x21\\x9c\\xcd\\x20\\x41\\x90\\x5f\\xc1\\x9f\\xbc\\x99\\x94\\x52\\x8b\\xe5\\x09\\x20\\x2b\\xb7\\x88\\xf6\\x04\\x75\\x11\\x17\\xca\\x27\\x67\\x82\\x43\\xa8\\x4e\\x3a\\x61\\x5c\\x09\\xf0\\x0c\\x12\\x30\\xe3\\xb2\\x79\\x89\\x75\\xa5\\x48\\x2c\\x00\\x89\\x30\\xd1\\xed\\x7c\\x87\\xff\\x28\\x37\\x86\\xbb\\x30\\x3b\\x3f\\xfa\\x10\\x8e\\x95\\xd5\\xbd\\x44\\x26\\x86\\x8c\\x1c\\x03\\x2c\\x59\\x0e\\x5b\\xaa\\x1c\\x03\\x95\\x07\\x9c\\x10\\xdb\\x53\\x21\\x72\\xa9\\x46\\x0b\\x3a\\xca\\x91\\x9f\\x50\\x2d\\xee\\x24\\x4c\\x42\\xd6\\xc2\\x36\\x9d\\x1c\\x50\\x75\\x2b\\x7a\\xbb\\xf2\\xc1\\xf6\\x6e\\x62\\x43\\x2f\\x99\\x7b\\x8c\\xc6\\x33\\x58\\x88\\xc4\\x3a\\xb2\\xd2\\x21\\x80\\xa3\\xd1\\x05\\x32\\x73\\x16\\xbf\\x11\\x4a\\x6c\\xc3\\x87\\xc5\\x06\\x4a\\x6a\\x06\\x93\\x04\\x4b\\xb2\\x86\\x94\\xc4\\xa0\\x30\\xa9\\x10\\x19\\x37\\x59\\xd9\\xec\\xbc\\x5d\\x64\\x49\\x9a\\x67\\x93\\xca\\x4e\\xa5\\x6c\\x91\\x58\\xa9\\x24\\x50\\x99\\x61\\x2d\\xc5\\x71\\xb3\\x17\\x41\\xd8\\x96\\x31\\xc8\\xdd\\x36\\xcd\\x25\\x7b\\x1a\\xd6\\x89\\xe8\\x14\\xdd\\x0e\\x6a\\xd7\\x30\\xcb\\xfa\\x84\\x60\\x09\\x25\\x03\\xd4\\x19\\x3a\\x1d\\x00\\x51\\xa4\\xdb\\x7e\\x18\\x63\\x97\\xbd\\x32\\xad\\x73\\xbc\\x69\\xd4\\xd4\\x29\\xf3\\x47\\x8a\\x8a\\x81\\x89\\x6b\\x2e\\xf2\\x5a\\xf6\\xa4\\x42\\xa4\\xe0\\x40\\x75\\x52\\xcd\\x2a\\x2a\\x3d\\x1f\\x81\\x02\\x16\\xcb\\x33\\x5e\\xe2\\x61\\xd4\\xcd\\x02\\x03\\x0b\\xd3\\x4f\\x58\\xa9\\x57\\xd9\\x01\\x92\\x55\\xce\\xed\\x7f\\xa0\\xcc\\x0a\\xe3\\x0f\\x3a\\x04\\x7c\\xb4\\x22\\x76\\x1f\\x44\\x62\\x8c\\xb9\\xbc\\x97\\x86\\xb8\\x60\\x08\\x50\\x4f\\xe4\\x82\\x01\\xbd\\x14\\xc3\\x85\\x62\\x01\\x5f\\xbb\\xa2\\xec\\x44\\xd4\\x06\\x6c\\x7c\\x6e\\x04\\xa8\\xa2\\x8d\\x1d\\x94\\x14\\xd0\\x3e\\x0d\\x3f\\x2e\\x43\\xf2\\x26\\xc0\\x8e\\xfa\\x2e\\x29\\xd0\\x4e\\x4e\\x04\\xae\\x0d\\x5b\\x3c\\xfe\\x7f\\x79\\x01\\x52\\x66\\xae\\x3c\\xab\\x61\\x47\\x18\\xc8\\x80\\x08\\xe9\\x88\\x58\\x7e\\x34\\x38\\x2b\\xd2\\xec\\x10\\xf9\\xd3\\x4d\\x01\\x66\\xa4\\x82\\x87\\xab\\x98\\x99\\x9e\\x07\\x5f\\x41\\xe0\\x00\\xef\\xfe\\x72\\x07\\x22\\x06\\x77\\x65\\xca\\xa5\\xe0\\x0a\\x80\\x21\\xf6\\x56\\xce\\x7a\\x6b\\xe0\\x63\\xf6\\xc2\\xbe\\x94\\x7f\\x64\\xc4\\x15\\x69\\xd8\\x8b\\xa3\\x71\\x9d\\x16\\x9f\\xe9\\xa5\\x1e\\x2e\\x21\\xe9\\x50\\x18\\x41\\x58\\x33\\x4e\\x5e\\x5f\\x1b\\x6c\\xa3\\x5b\\xda\\x21\\x54\\x29\\x28\\x05\\xc3\\x41\\xd0\\x05\\x42\\x8d\\x23\\x84\\x00\\x7e\\x75\\x85\\x3e\\x8b\\x71\\x99\\x1b\\x62\\x58\\x7f\\xf7\\xb7\\xd6\\x1d\\xb1\\x42\\x30\\x04\\x98\\xb2\\x71\\x65\\xcf\\x8d\\xdc\\xf7\\x6b\\x45\\xe5\\x6d\\xff\\xfc\\x89\\xf5\\xc0\\xac\\x9a\\x22\\x50\\x88\\x0f\\x09\\xe4\\x91\\x63\\xf1\\xe2\\x3d\\x4a\\xb6\\xe1\\x00\\x26\\x19\\x47\\x7f\\x83\\x59\\x3c\\x86\\x3c\\xe0\\x9a\\x39\\xfb\\x03\\x6e\\x05\\x99\\x6f\\x86\\xa1\\xfe\\xd5\\xc4\\x58\\xd3\\xb6\\x6e\\x64\\x30\\x2a\\x4f\\x5c\\x7f\\x0a\\xa2\\x5b\\xfa\\x27\\x12\\x4d\\x06\\xc5\\x07\\xe6\\xc9\\xdc\\x8d\\x21\\xe8\\xd3\\x85\\xa0\\x37\\xf1\\xf8\\x86\\x3e\\x80\\xdb\\xdf\\xa0\\xb2\\x6f\\x71\\x66\\xe3\\x33\\x0d\\xb5\\x0e\\x73\\x86\\x8e\\x8a\\x83\\x55\\x61\\x64\\x8b\\xb2\\xcd\\xa3\\x4c\\x00\\x49\\xe0\\xe4\\xd0\\xbc\\x75\\xc9\\x27\\xfb\\xb6\\x3a\\x75\\x20\\xc4\\x81\\xc4\\x84\\x4f\\x9c\\x51\\x5c\\xab\\xe0\\xec\\x50\\x7d\\x80\\x0c\\xc0\\x70\\xef\\x23\\x1e\\xb8\\xe1\\xca\\x2c\\x57\\x24\\x1c\\x87\\x68\\x84\\xd4\\x13\\x26\\x52\\xe7\\xe8\\xce\\xb8\\x0a\\x68\\x12\\x31\\xe0\\xce\\x60\\x3f\\x04\\x81\\x19\\x39\\x39\\x6e\\x0a\\x95\\x8c\\xf8\\x62\\xd9\\x7e\\xb7\\x75\\xd0\\x26\\x33\\x4f\\xac\\x84\\xd9\\xc1\\x44\\x39\\x6a\\x4f\\xe9\\x4d\\x02\\x21\\x42\\xa9\\xcf\\xb0\\xaf\\x75\\x80\\x5a\\x52\\x81\\x04\\x18\\xfb\\x20\\x43\\x3e\\x8c\\x17\\x8d\\x17\\xcd\\x57\\xe4\\x7a\\x72\\x62\\x80\\xb4\\x43\\x20\\x75\\x7d\\x45\\x30\\x09\\x6d\\xc4\\x5b\\x0f\\x43\\x85\\x62\\x68\\x05\\x40\\x44\\x83\\xda\\x4d\\x5a\\x8e\\x6f\\xa5\\xf4\\x81\\x05\\x71\\xf7\\x90\\xc1\\x01\\x97\\xf8\\xa2\\x1e\\x82\\x87\\xa5\\xc5\\x91\\x02\\xac\\x13\\x11\\x79\\x8b\\x70\\x24\\xa5\\xc9\\x0d\\xd7\\x98\\xab\\x53\\x75\\x43\\xce\\xe8\\x95\\x64\\x61\\x8f\\x61\\xa0\\xf1\\xa8\\xd2\\x07\\x3e\\x24\\xca\\x1d\\x92\\x2b\\x03\\x3a\\xc5\\x0f\\xfe\\x70\\x49\\x12\\x4e\\x0b\\xb0\\xa1\\xd7\\x34\\x98\\x6a\\xba\\x68\\x8c\\x39\\x51\\xc1\\xd4\\x06\\x2c\\xfb\\x59\\xe6\\xc0\\xa5\\x0b\\x6d\\x7e\\xbb\\xb1\\xd5\\x3f\\x62\\x54\\x51\\x4a\\x60\\xd0\\x31\\x04\\x75\\x09\\xcb\\x66\\x8c\\x58\\xc4\\xe2\\x43\\x0b\\x1a\\x2c\\x58\\x5f\\x4f\\x09\\x3b\\x89\\x27\\x85\\x8e\\x03\\xca\\x89\\xdd\\xd0\\x6a\\x88\\x4e\\xb1\\x12\\x58\\xf0\\x9a\\x5c\\xc6\\x62\\xe8\\x16\\xeb\\x2e\\xaf\\x82\\x10\\xc6\\xbc\\x23\\x80\\x44\\x06\\xd2\\x47\\x95\\xc1\\x3d\\x62\\x29\\xaa\\x23\\x22\\x2a\\xb1\\x0d\\xb3\\x9a\\xe7\\xcb\\x1a\\x80\\x62\\x0c\\x63\\xe0\\x21\\xe5\\xac\\xa9\\x62\\xd5\\x1c\\x96\\x07\\x09\\xc4\\xe0\\x02\\x24\\xb0\\xcd\\xd6\\x6a\\x79\\xe8\\xf3\\x0a\\x31\\x78\\x2b\\xd2\\x0e\\x6e\\x8e\\x83\\xe2\\x96\\xda\\xb4\\xcd\\x04\\xf8\\x97\\x51\\x23\\x8d\\x51\\xc7\\x21\\xab\\x33\\x38\\x5a\\xf8\\x40\\x9a\\x6c\\xcb\\x36\\x06\\x38\\x91\\xea\\x56\\x7d\\xaa\\x94\\x6c\\x56\\xa2\\x45\\x8b\\x50\\x51\\x5f\\x74\\x40\\xe9\\xe9\\xb8\\x5e\\x4d\\x1b\\xf5\\x04\\x25\\xd5\\x8f\\x0b\\x79\\xef\\xc5\\xdc\\xe5\\x8a\\x39\\xcf\\x54\\x82\\x03\\xba\\xb9\\x09\\x61\\x8d\\x2a\\xa1\\x9b\\xa3\\x0d\\x29\\x9e\\x35\\x2c\\xf4\\x98\\x6d\\x7d\\x73\\xaf\\x05\\x8b\\x6e\\xea\\x86\\xd9\\x26\\x59\\xc7\\x50\\x32\\x88\\x8e\\xf7\\x71\\x34\\x27\\x19\\x6f\\x31\\xbc\\x28\\x7b\\xa6\\x9f\\xd2\\xc1\\x10\\xab\\x74\\x9c\\xea\\xe0\\x57\\x19\\x0c\\xe4\\x45\\xa6\\xe4\\x61\\x0f\\xd6\\x98\\x56\\x7a\\x53\\x54\\x7d\\x25\\xca\\x96\\x53\\xfc\\x3c\\x6a\\x1b\\x98\\xc1\\x07\\x36\\x24\\x10\\x4b\\x0e\\x36\\xba\\x57\\x10\\x0c\\x31\\x7f\\xcd\\x13\\x79\\x59\\xa1\\x15\\x01\\xc8\\xd9\\x8a\\xe6\\x2e\\x80\\xad\\xb7\\x80\\x7c\\xe1\\xd4\\x63\\x47\\x43\\xc3\\xe2\\x36\\x94\\x59\\xde\\x07\\x01\\xb3\\x34\\x32\\x2e\\x48\\xe7\\xe7\\x56\\x7f\\x20\\x58\\x3e\\x5e\\xfd\\x0d\\xe2\\xa2\\x2f\\x1f\\x16\\xdc\\x5b\\xc9\\x40\\xc5\\x67\\x65\\x2e\\xfa\\x38\\x05\\xf8\\x55\\xa8\\x20\\x29\\x09\\x26\\x07\\xd3\\xf8\\xde\\xb6\\x8c\\xb5\\x17\\x2b\\xa3\\x72\\xea\\x6f\\xa8\\x73\\xae\\x82\\x5c\\x04\\x63\\x83\\x75\\x0b\\x7e\\x4d\\x89\\x74\\x92\\x83\\x43\\xdb\\x62\\x6e\\xb5\\x21\\x53\\x8e\\xa5\\x2f\\xa7\\x1e\\x00\\x02\\x70\\xae\\x6f\\x24\\x8a\\x14\\x14\\x0b\\xab\\x97\\xd5\\x1d\\x97\\x61\\x2b\\x20\\xec\\x64\\xce\\xf4\\xc5\\x7b\\x26\\xe0\\x7d\\xe8\\xdb\\xeb\\xf8\\x37\\xac\\x42\\xfa\\xfb\\x04\\x56\\x34\\xe8\\x85\\x92\\xe8\\xe7\\x49\\xa4\\x53\\xd9\\xfd\\x81\\x7d\\xac\\x03\\xa4\\xc7\\xd9\\x5f\\x78\\x0c\\x91\\x45\\xc5\\x62\\xf5\\xd8\\xfa\\x58\\xbc\\x5b\\x2c\\x8c\\xb6\\x0c\\x84\\x14\\xdb\\x2c\\x3c\\x1c\\x69\\x62\\xdf\\x74\\x66\\x70\\x8e\\x2e\\x71\\x44\\x3e\\xde\\x1e\\x00\\x47\\x80\\xb1\\x55\\xbd\\xc6\\x50\\xfb\\x96\\xea\\xdc\\x8f\\xf4\\xc9\\x62\\x7d\\xf6\\xb6\\x3b\\xc2\\xee\\x9d\\x17\\xad\\xbb\\xb5\\x04\\x64\\x3e\\x62\\x56\\xbf\\x20\\xbe\\x30\\x63\\x73\\x73\\xc9\\x22\\x70\\x39\\xd5\\xd8\\x98\\x00\\x41\\x33\\x86\\x40\\x4d\\x7a\\x62\\xe8\\x2f\\x29\\x0c\\x02\\x0f\\x0a\\xec\\x4b\\xfb\\x08\\xb7\\xb8\\x77\\x55\\x12\\x61\\x85\\xfb\\x2f\\xea\\xc0\\x9b\\x77\\x52\\xaa\\x41\\xb7\\x28\\xa2\\x15\\xec\\x9e\\x46\\x10\\xc5\\xe9\\x00\\xd4\\x27\\x6d\\xa0\\x22\\x94\\x70\\x47\\x43\\x83\\x80\\x8e\\x16\\x1c\\xae\\x32\\x06\\xc5\\xf0\\x2b\\x3a\\x10\\xa9\\x76\\xf0\\x5f\\xc5\\x41\\x26\\xe1\\x7e\\xae\\x85\\x12\\x02\\xe8\\x32\\xc1\\x47\\xa8\\xca\\x65\\x25\\xd8\\x58\\x68\\x7e\\x6a\\x4d\\xd8\\x44\\xdf\\xf9\\x71\\xb5\\x1d\\x91\\x35\\x1f\\xaa\\xee\\x6c\\xb3\\x42\\xc0\\x41\\xb1\\xd0\\x88\\x5d\\x64\\x68\\x25\\xf3\\x81\\xd3\\xc2\\x07\\x89\\x00\\xff\\x83\\x5e\\x08\\x22\\xde\\xc8\\x72\\xca\\x9d\\x76\\xc1\\x50\\x81\\x21\\x1e\\xdd\\xb4\\x70\\x88\\x0e\\x0a\\xac\\xf2\\xf0\\x6c\\x07\\x01\\xc5\\x56\\xd0\\xf8\\x61\\x3e\\x96\\x58\\x81\\x8f\\x9d\\x33\\x7c\\x62\\x40\\x6b\\xdf\\xaf\\x24\\x74\\x15\\x40\\xa5\\x1d\\x80\\xe2\\x54\\xed\\x94\\x2d\\xa4\\x43\\xe1\\x97\\x6f\\x26\\x0a\\x2e\\x93\\x0d\\xd1\\x01\\x62\\x00\\xa3\\x00\\x10\\x72\\xc1\\x05\\x77\\x47\\x7d\\x9f\\xe6\\xe5\\x75\\xd4\\x4a\\xf9\\x01\\x02\\x22\\x06\\x2c\\xc8\\x62\\x09\\x67\\x1a\\xb2\\x69\\x9e\\xa6\\x15\\x27\\x35\\x66\\xda\\xc0\\xdb\\x56\\x97\\x8d\\x2f\\xcb\\xe0\\x63\\xff\\x04\\x59\\x50\\x0a\\x18\\xc3\\xf9\\xda\\x1e\\x8c\\x97\\xc7\\xc0\\xdc\\x59\\x05\\x17\\xac\\x00\\xfc\\x99\\x1b\\xd7\\xa6\\x27\\xf0\\x53\\x16\\x6e\\x13\\x37\\xf4\\x1e\\x82\\x60\\x19\\x7e\\xcc\\x28\\x8c\\x88\\x16\\x0c\\xf2\\x9a\\xfb\\x29\\x77\\x3b\\x5f\\xfd\\xf3\\xf6\\x6c\\x07\\x66\\x8a\\x75\\xc7\\x22\\x40\\x3d\\x38\\x5e\\x3c\\xe2\\xe2\\xb8\\x96\\xfb\\xb4\\x01\\x1d\\x49\\xa1\\x2a\\x0e\\xe6\\xa4\\xe0\\x01\\xce\\x6c\\x2f\\xd0\\x56\\x81\\x28\\xf2\\x60\\xc1\\x1f\\xce\\x57\\xa8\\x31\\x02\\xaf\\xbe\\x44\\x77\\x00\\xf5\\x5f\\xc3\\xb6\\x8a\\x5b\\xe9\\x46\\xc0\\x53\\x63\\x01\\xb2\\xd4\\x92\\xea\\xe3\\xd8\\x0f\\xa1\\x38\\x3a\\x53\\x4a\\xc6\\xde\\x03\\xa0\\x86\\x14\\xb4\\x22\\x12\\x8f\\xdf\\x6b\\x58\\x0a\\x1f\\x89\\x74\\x53\\xd3\\xb0\\xcb\\x25\\xd6\\xde\\xd1\\x80\\x42\\xc7\\x4b\\x5d\\x52\\x1a\\xf1\\xd2\\x90\\x63\\x06\\x44\\x39\\xca\\x0d\\xbd\\xf6\\x64\\x17\\x30\\x0b\\xb4\\xcf\\x08\\x04\\xc7\\x42\\x5e\\x11\\x8c\\xf9\\xb6\\x06\\x8a\\x4a\\x6d\\x22\\x76\\x07\\x41\\xa6\\x23\\x01\\x85\\xa3\\xb5\\xae\\x07\\x47\\xb1\\xa9\\x33\\x8a\\x3c\\x96\\x98\\x3f\\xc0\\xb5\\x87\\xe3\\x75\\x46\\xc0\\xd3\\x43\\x47\\xba\\x34\\x29\\x45\\xa2\\x14\\x06\\xf5\\xcb\\xb9\\x59\\xe4\\x0b\\x76\\x9e\\xbd\\x5f\\xa7\\x30\\x69\\x53\\xfa\\x4e\\x20\\x20\\x19\\x05\\x44\\x66\\x73\\xb7\\x49\\x60\\x81\\x70\\x4f\\xf0\\x26\\xac\\x9b\\x26\\xc4\\x64\\x6d\\xe5\\xb9\\xe2\\x45\\xa4\\x17\\xb3\\x3f\\x1c\\xf9\\xe7\\x81\\x6f\\xa5\\xa5\\x48\\x2c\\x2c\\x83\\x17\\xe4\\xca\\xf4\\xe8\\xea\\xa8\\x90\\x07\\xb5\\x0f\\xe1\\x7b\\x1e\\x05\\x87\\x9b\\x15\\x2a\\x38\\x0d\\x73\\x69\\xe4\\x96\\xb2\\x76\\x71\\x92\\x7b\\x40\\x8c\\xb4\\x63\\xa7\\x9e\\x8d\\x06\\x82\\x90\\x8a\\x12\\xe5\\xa1\\x6d\\x2e\\x37\\x3c\\xda\\xb5\\x33\\x30\\xbe\\x7a\\xcb\\x9b\\x50\\x01\\x5a\\x27\\x52\\xfc\\x4d\\x24\\x65\\x2f\\xf5\\xa6\\xd7\\x08\\xe3\\x27\\x0c\\x0a\\xc8\\xaf\\x35\\x35\\x52\\xa4\\xea\\x58\\x19\\x1a\\x04\\x8c\\x8b\\x85\\x4b\\x14\\xe0\\xaf\\xee\\x92\\xf5\\x11\\xe2\\x71\\x71\\xc2\\xe6\\xf0\\x5e\\xc9\\x51\\x91\\xd1\\x16\\x3b\\x24\\x49\\xed\\xd2\\xc5\\x17\\x52\\x3d\\x40\\x1d\\x71\\x1c\\xe6\\xf1\\x06\\xa8\\x16\\x9f\\xa6\\xca\\xec\\xc6\\xb0\\xe9\\xb7\\xc9\\x15\\x00\\x85\\xbe\\x8f\\x0b\\x95\\x1d\\xd4\\xd4\\xaa\\xab\\xe6\\xab\\xdc\\x2d\\x98\\xb3\\xb0\\x19\\x97\\x33\\xac\\xce\\xaf\\x3a\\x30\\xa4\\xdf\\xeb\\x72\\x63\\x18\\xe5\\x0f\\x06\\x1a\\x21\\xdb\\xf4\\x99\\x63\\x85\\xae\\x34\\xca\\x80\\xa5\\xc9\\x8e\\xee\\x3c\\x23\\xb5\\x2a\\x50\\xc2\\x31\\x20\\x64\\x7e\\xea\\xe9\\x0f\\x26\\xd7\\xeb\\xca\\xab\\xec\\xd0\\x73\\x07\\x4e\\x0a\\x3d\\x01\\x98\\xe0\\x5b\\x88\\x36\\x65\\x1e\\x36\\x20\\x05\\xf5\\x92\\x7b\\x29\\x70\\x46\\x12\\x5a\\x0d\\x58\\xe5\\x5c\\x2b\\xa8\\x4b\\x38\\x1f\\x28\\x87\\xb1\\x60\\x81\\x33\\x2b\\xf4\\x88\\xd7\\x32\\x34\\x1b\\x28\\x29\\xd1\\x95\\x64\\xc2\\x01\\x42\\xd5\\x84\\x3c\\xc4\\x91\\xc8\\x5c\\x1f\\x06\\x34\\x5e\\x88\\x3d\\x62\\xba\\xf5\\xa8\\xaf\\x51\\x28\\x24\\x36\\xc0\\x3c\\x8c\\xb1\\x14\\xca\\x2a\\x0b\\x88\\x48\\x84\\x7c\\x3b\\xad\\xa2\\x2c\\x76\\x39\\x17\\x0e\\x4d\\xa2\\x1b\\x4d\\xd5\\x9a\\x99\\x0c\\x00\\x92\\xe7\\x09\\x38\\xbe\\x66\\xf2\\xd7\\xca\\x96\\x42\\x32\\x13\\xcc\\x94\\xa4\\xf8\\xfa\\xad\\x88\\xa5\\x56\\xb2\\xb6\\xd0\\xf9\\x35\\xdd\\xc8\\xdb\\x7a\\x27\\x60\\x91\\xca\\x77\\x96\\xa8\\xa8\\xdb\\xc0\\xc8\\x97\\x63\\x52\\x0e\\x50\\xb7\\xb6\\xd2\\x4f\\x81\\xa5\\x36\\x23\\x30\\x18\\x8c\\x2a\\x16\\x40\\x79\\xb1\\x71\\x3b\\xee\\xb5\\x40\\x33\\xa0\\x71\\x94\\x7f\\x84\\x35\\x44\\x28\\x24\\x49\\xb2\\x81\\xcb\\x89\\xd3\\xe5\\x49\\x50\\xc4\\x6e\\xee\\xb0\\xa9\\xec\\xa0\\x08\\x70\\xfa\\xf8\\x38\\xb8\\xee\\xbc\\xcd\\x1a\\x29\\xc5\\x57\\x25\\x72\\x93\\x49\\xfb\\x4f\\xc0\\x84\\xc2\\x96\\x19\\x8c\\xef\\xdf\\x68\\x12\\x92\\xd8\\x09\\x1a\\xaf\\x89\\x44\\x18\\x48\\x02\\x93\\x4a\\xad\\x1e\\xe6\\x32\\x92\\x9b\\x1f\\xc6\\x8b\\xc1\\x08\\xa8\\x34\\xb2\\x85\\x63\\x64\\x13\\xcd\\x37\\x59\\x1e\\x93\\x66\\x6c\\x47\\x80\\xa4\\xc5\\xd8\\x31\\xed\\xa0\\x84\\x10\\x36\\xca\\xdd\\xef\\x2c\\x4d\\x60\\x9d\\xab\\x46\\x59\\x21\\x60\\x04\\x4c\\x3d\\x44\\xba\\x46\\x3d\\x12\\xc1\\x93\\x00\\x30\\x1b\\x45\\x2f\\xda\\x50\\xc3\\x69\\x35\\x90\\x85\\xc4\\xbc\\x7f\\x86\\x84\\x76\\xc2\\xa2\\xe6\\xa8\\xc2\\x0c\\xb0\\xcb\\x42\\x97\\xc0\\x9a\\xd5\\x7a\\xdc\\x61\\xe1\\xb6\\x3f\\x8f\\x4c\\x21\\x24\\x7c\\x23\\xac\\xc7\\xcd\\x8f\\x76\\x35\\x60\\x51\\xc7\\x27\\xbc\\x80\\x6c\\x3d\\x02\\x89\\xe5\\xdc\\x6f\\x48\\xbd\\x01\\x0a\\xa5\\x07\\x1c\\x3f\\x28\\xb0\\x3f\\x3a\\xe7\\x17\\xfd\\xf2\\xcc\\xa6\\x00\\xea\\x40\\x30\\xf1\\xd5\\x52\\xd8\\xb1\\xf8\\x6f\\x02\\x20\\x84\\xdb\\x61\\x83\\x44\\x5f\\x40\\xc5\\xf1\\x44\\x2c\\x28\\xb9\\x05\\x35\\xc4\\x76\\x68\\x55\\xcc\\xa3\\x2e\\x83\\x5e\\x91\\x35\\xd1\\x61\\x7c\\x25\\xd1\\x81\\x17\\x4f\\x3d\\x93\\x3f\\x12\\x89\\x7f\\x17\\x43\\xd0\\x3c\\xf0\\xbc\\x6d\\x52\\xea\\xb0\\xba\\x29\\x33\\x16\\x43\\x95\\xb2\\x72\\x62\\xcb\\xe1\\x80\\xde\\x26\\x29\\xd1\\xc8\\x47\\xa6\\xdf\\x81\\x96\\x76\\xb2\\xf3\\x66\\x6d\\x8a\\x75\\xf1\\x13\\xa7\\x77\\x2a\\x89\\xa8\\x96\\x67\\x38\\xa1\\x01\\x89\\x80\\x2a\\x20\\xae\\x05\\x7d\\x82\\x86\\xe1\\x6c\\x17\\x72\\x53\\x04\\xa1\\xe1\\x51\\x21\\x39\\xb6\\x08\\x9d\\xef\\xc4\\x45\\x1a\\x93\\x67\\x53\\xcd\\xb0\\xa8\\xd8\\xc0\\x29\\x49\\xb4\\x3c\\xf9\\x79\\xf2\\xa3\\xd2\\xbe\\xe8\\x65\\x97\\x14\\xdf\\xcc\\x30\\xe0\\x1e\\xb6\\x44\\x8a\\xbd\\x4a\\xe1\\xe7\\x6c\\x6a\\x6a\\xa4\\x07\\x93\\xb3\\x4c\\xb2\\xb5\\xe5\\x9d\\xe7\\xb9\\x43\\xa1\\x74\\xf2\\xed\\x31\\x06\\x27\\x00\\xa1\\x85\\x90\\x7c\\xb2\\xff\\x09\\x15\\xe7\\x6a\\x99\\x90\\x39\\x2a\\x24\\x09\\x00\\xe0\\x78\\x70\\x04\\xfe\\xed\\x43\\xf2\\x08\\x84\\x41\\xf0\\x7c\\xcb\\x95\\xa9\\x7d\\xce\\xd8\\x55\\x33\\x7f\\x37\\x14\\x88\\xcb\\x30\\x8f\\x9e\\xbb\\x8c\\x08\\x06\\x75\\x09\\x03\\xfd\\x76\\x25\\x44\\xf7\\x31\\xf2\\xdb\\x72\\xcc\\xec\\x56\\x38\\x3e\\xaa\\xa5\\x2c\\x92\\x91\\x5a\\x05\\xcd\\xf1\\x8d\\xe6\\xe3\\xf7\\x2b\\x3f\\x0d\\x21\\xbf\\x6e\\x34\\x36\\x64\\xf3\\xe6\\x54\\xa2\\x68\\xe9\\xd6\\xf8\\x2d\\x38\\x24\\x3b\\xbc\\xd2\\xa0\\x18\\xc9\\xff\\xe3\\x50\\xa1\\xf6\\x0c\\x4a\\xd5\\x08\\x3c\\x6d\\x9a\\x87\\x4d\\x41\\x2d\\x9e\\x64\\xab\\x55\\x29\\x42\\xac\\xc0\\xdd\\x6d\\x55\\xba\\x8a\\xa9\\x16\\x22\\x15\\xeb\\xd0\\x54\\xf4\\xc9\\x86\\x15\\x22\\x98\\x20\\xb5\\xdc\\x71\\x59\\x30\\x07\\xb7\\xb8\\x7f\\x95\\x1e\\xc5\\x0e\\x51\\x48\\x77\\xd5\\xd5\\x6c\\x01\\xc1\\x93\\x03\\x6c\\x3d\\xec\\xe2\\x2f\\x0e\\x46\\x50\\x25\\x07\\x30\\x25\\x5c\\x7f\\x45\\x1f\\xae\\x12\\x39\\xa5\\x0f\\x76\\xf0\\xb2\\x18\\x35\\xc5\\x30\\x37\\x98\\x06\\x1e\\xe4\\x80\\x25\\x4e\\x04\\x53\\xab\\x69\\x46\\xd7\\xcf\\x0d\\xe5\\xe8\\x5d\\x75\\x88\\x11\\x51\\x6e\\x95\\xee\\x40\\xbc\\x8a\\x0c\\xac\\x57\\x08\\xe0\\x34\\xe5\\x3d\\x46\\x3f\\x97\\x80\\xf6\\x07\\xca\\x90\\x03\\x77\\x62\\xc4\\x43\\x7b\\xd3\\x71\\xcf\\xd9\\x8e\\x63\\x2f\\x52\\x97\\xe2\\xd9\\xa9\\x80\\x4c\\xc9\\xc5\\x60\\x5f\\xb4\\xff\\xeb\\x04\\x24\\x95\\xa8\\x65\\x74\\xc0\\x02\\x1d\\x39\\x6b\\xf7\\x02\\x10\\x07\\x7b\\xb1\\x1e\\xaa\\x38\\xfe\\x42\\x05\\x1d\\x3e\\x4f\\x9e\\x69\\x56\\xa1\\xd6\\xaf\\x50\\x18\\x40\\x39\\x04\\xc4\\x77\\xee\\xe1\\x26\\xe2\\xa6\\x47\\x5e\\x96\\xf2\\x77\\xf3\\xd3\\xdf\\x28\\x72\\xae\\xf3\\x5a\\x98\\xbf\\xbf\\x1d\\xf5\\x02\\x36\\xaa\\x4d\\xf3\\x4b\\xa5\\xc5\\xf6\\xf7\\x19\\x0e\\xa0\\xf0\\x9c\\x2b\\x57\\x29\\x3c\\xb0\\xef\\x6e\\x4f\\x92\\x48\\x74\\x96\\x56\\xaa\\x91\\x42\\xee\\xab\\xd7\\xb6\\xcb\\x41\\x38\\x9e\\xc0\\x20\\x88\\xe2\\x70\\xac\\x5c\\x50\\xf5\\x6b\\x3e\\xd6\\x1d\\xa8\\x82\\x54\\x40\\xb3\\x92\\x9d\\xd0\\x99\\xb0\\x08\\x18\\x3e\\x9d\\xdc\\x5a\\x0f\\x28\\x82\\x80\\xac\\x91\\xd8\\xc5\\x52\\x24\\xa0\\x68\\xee\\x95\\xf8\\xae\\x02\\x11\\x14\\x73\\x17\\x92\\xb5\\xf9\\xa5\\x88\\x1b\\x5c\\xb6\\x1a\\x56\\x24\\x60\\x3e\\x6d\\x08\\x11\\xfd\\xda\\x7b\\x9f\\x81\\x89\\x8a\\xdb\\x6c\\x95\\x99\\x32\\xb8\\xb6\\xe0\\xd1\\x23\\xab\\x00\\x9a\\x41\\x21\\xf0\\xc2\\x97\\xc2\\xf2\\x40\\xe9\\x3c\\x56\\x05\\x30\\xd0\\x02\\x06\\x18\\xb2\\xee\\xb4\\x77\\x1c\\x08\\x14\\x01\\x9a\\x2b\\x9a\\x86\\x21\\x9c\\xa2\\x4b\\xbd\\x61\\x03\\x1a\\x68\\xee\\xf1\\xe5\\xd5\\x58\\x81\\x6c\\x1c\\xfd\\xd1\\xaa\\x4a\\xe1\\xc3\\x23\\xfe\\x5b\\x16\\x7e\\x0c\\xc3\\x62\\x71\\xbb\\xa9\\x2b\\x1b\\xa4\\x70\\x20\\xdb\\x5b\\x00\\x72\\x7c\\x2d\\x9f\\xec\\xfa\\x95\\xd3\\xef\\x49\\x6b\\x27\\x99\\xa2\\xdb\\xab\\xe9\\x60\\x38\\x9f\\x95\\x5e\\x6e\\x83\\x94\\xc2\\x4f\\x50\\x75\\x25\\x28\\x77\\x6a\\x7b\\x5f\\x2e\\x98\\xdf\\xc3\\x13\\x49\\x6e\\x0e\\xb3\\xc8\\x7f\\x34\\xda\\x9f\\xac\\x5c\\xac\\x21\\xaa\\x9b\\x0f\\x8a\\x78\\x85\\x8a\\xb6\\x86\\x9b\\xb2\\x86\\x3f\\x0e\\x90\\x6c\\x49\\x61\\x5e\\x39\\xb6\\x41\\x81\\x63\\x5e\\x7d\\x4e\\xd1\\x53\\x76\\xe3\\x57\\x02\\x6e\\xeb\\x4d\\x84\\xeb\\x68\\x41\\x98\\x45\\xc6\\x04\\x18\\x55\\xde\\x4a\\xee\\x01\\xe6\\xfe\\x43\\x24\\x22\\xed\\xd8\\x48\\xa1\\x2b\\x69\\xd0\\x7d\\xea\\x0a\\x3b\\xb3\\xa8\\x28\\xe8\\x0b\\x7a\\x8c\\xaf\\x10\\x19\\xd1\\xff\\x96\\x17\\x2a\\x52\\x9d\\x21\\xa4\\xb4\\x61\\xf8\\x68\\x0c\\xd9\\x8d\\x3e\\x0f\\x40\\xeb\\x60\\x23\\x1a\\x41\\x18\\xa6\\x71\\x69\\x40\\xb6\\x65\\x5e\\x5c\\x57\\xd0\\x15\\x80\\xe3\\xe6\\x38\\xf6\\x91\\x03\\xcf\\x37\\x2e\\x30\\xb2\\x49\\x0e\\xec\\x09\\x3c\\xaa\\x36\\xde\\x12\\xee\\xcc\\x21\\xce\\xe6\\x60\\x75\\xf0\\x6b\\x2b\\x9f\\x05\\x38\\xb3\\xa3\\x94\\xf9\\xca\\x98\\x96\\xc9\\x3d\\xb1\\x21\\x30\\x09\\x04\\xc3\\x90\\x96\\x4a\\x27\\xb7\\x47\\xd2\\xb2\\x2f\\x62\\x91\\xe6\\x03\\xa2\\x59\\x06\\x09\\xa0\\xce\\x76\\x6b\\x90\\x6b\\x6a\\x0e\\xdc\\xf1\\xb6\\xce\\x9e\\x24\\x34\\x04\\xf7\\x6f\\xe1\\x82\\xbb\\x38\\x1c\\xd9\\x10\\x4a\\x3a\\x78\\x64\\x11\\xae\\x0c\\x7e\\x14\\x60\\x08\\x48\\x38\\xb9\\xaf\\x88\\x43\\x27\\xa0\\x91\\xe7\\x21\\x07\\x58\\x60\\xbd\\x7a\\x35\\xe0\\xb7\\x94\\x78\\xb0\\x37\\x05\\xfc\\x3b\\xa1\\x96\\xc3\\x46\\xa1\\x85\\x05\\x7a\\x0c\\x20\\x72\\x4f\\x0d\\x27\\x20\\x0c\\x46\\xdd\\xdb\\xc8\\x91\\xf5\\xdc\\x5b\\xc2\\x15\\x45\\xa1\\x0e\\x44\\xea\\xef\\x4e\\x50\\x18\\x5a\\xa9\\x78\\x88\\xc3\\x72\\x08\\xd4\\xa2\\x15\\x19\\x34\\x3b\\x92\\x7c\\x0d\\x83\\x0d\\x7b\\x5d\\x34\\x8f\\x14\\x8a\\x2d\\x6e\\x11\\x40\\x39\\x32\\x90\\x4c\\x5e\\x54\\xbe\\xcd\\x63\\x69\\x98\\x30\\xf1\\xd8\\x18\\x35\\xf6\\x55\\xe7\\xa3\\x85\\x61\\x16\\xfa\\x32\\x4d\\xdf\\x21\\x1e\\x1c\\x21\\xcc\\xd0\\x27\\x30\\xa3\\x99\\xc7\\xc2\\xfc\\xc2\\xac\\xc7\\xb1\\xe3\\x5e\\xf0\\xa0\\xe5\\x01\\xb0\\x7a\\x66\\x9e\\x67\\x9e\\x0a\\x29\\x56\\xcc\\x49\\x3b\\xee\\xb3\\x66\\xcf\\x16\\xc5\\x5f\\x5f\\xe5\\x12\\x56\\x0b\\x77\\xd2\\xd2\\x79\\x9a\\x71\\xfc\\x89\\xa1\\xc8\\x18\\xc6\\x59\\x18\\x90\\x7b\\x51\\x3d\\xa0\\xc2\\x74\\xbe\\xfc\\xaa\\x54\\xc3\\xcf\\x99\\xe3\\xd4\\xae\\x3e\\xc1\\x36\\xdc\\x6e\\xee\\xe4\\x10\\xd9\\x7a\\xe8\\x38\\x22\\xfe\\xa9\\x2e\\x30\\x1a\\xf1\\x4a\\x78\\x35\\x28\\xce\\xd3\\xa0\\x35\\x93\\x37\\x74\\x08\\xd7\\xad\\xe4\\xd6\\x68\\x09\\x2a\\x93\\x95\\x2f\\x45\\x36\\x41\\xa6\\x75\\x0c\\x0f\\x6c\\x83\\x0a\\x42\\x5b\\x94\\xc8\\x22\\x5c\\x87\\x9b\\x05\\xc6\\x0a\\x62\\x3d\\x4d\\x8d\\x57\\xc0\\x81\\xc9\\xf3\\x4e\\x10\\xa2\\x4e\\xe6\\x9e\\xe1\\x85\\x58\\x64\\x66\\x67\\xa8\\x48\\x18\\x81\\x45\\x1f\\x38\\x14\\x95\\x3b\\xca\\xbc\\xd5\\x9d\\xc9\\x0d\\x43\\xa7\\xc8\\x78\\x06\\xed\\x60\\x0a\\x68\\x14\\x42\\x64\\x9e\\x86\\x2c\\x82\\xad\\xbb\\x08\\x8f\\xe4\\x95\\xe9\\x19\\xd4\\xb8\\x10\\xe0\\x22\\x44\\x7c\\xd7\\xdd\\x1d\\x7a\\xc8\\x00\\x13\\x21\\xec\\xde\\x63\\xa6\\x60\\x18\\xa3\\xfc\\xad\\x74\\x89\\xe0\\x95\\xac\\x0f\\x2e\\xd0\\x18\\x12\\x90\\xb8\\x5e\\x87\\x3a\\x5b\\xf1\\xe3\\xc4\\x6f\\x15\\x17\\x9b\\x9b\\x26\\xb3\\x30\\x5c\\xca\\x03\\xc8\\x4f\\x7f\\xe5\\xa3\\x40\\x8a\\xbc\\x8c\\x0e\\x20\\x3a\\xd6\\x64\\xa8\\x72\\x01\\xa3\\x6c\\xaa\\x4e\\x2a\\x14\\x2a\\x48\\xd3\\xfb\\x73\\x2e\\x42\\x61\\xdb\\x01\\x8f\\x57\\x03\\x4d\\x59\\xc6\\xe2\\xd9\\x32\\xb9\\x3d\\x60\\x4f\\xf4\\xda\\x85\\xfc\\x16\\x7e\\xb7\\x44\\x19\\x01\\x84\\x04\\x98\\x44\\xcb\\x2d\\x06\\x1d\\xc5\\x0b\\x96\\xe8\\x5d\\xc6\\x7a\\x4c\\x1b\\x27\\x9d\\x8a\\x62\\xe0\\x4e\\xc1\\xbc\\x3c\\x11\\x7b\\xce\\x2e\\x13\\x27\\x75\\x80\\x74\\x64\\x1e\\xe3\\x2d\\x82\\x64\\xe4\\x72\\xdc\\xc8\\xd0\\x1d\\xe4\\x1f\\x3c\\x0a\\x4e\\x69\\x80\\x03\\xbd\\x60\\x09\\x11\\x73\\x11\\x9c\\x82\\x42\\x0d\\x0c\\xcf\\x23\\xb8\\x86\\xfb\\xba\\x2b\\xb9\\x1f\\x41\\x2d\\x42\\x8e\\xe0\\x2e\\xc3\\x61\\x4e\\xd7\\xe6\\xb4\\xcd\\xb1\\xab\\x68\\x02\\x54\\x33\\x16\\x35\\x9a\\xcc\\x94\\x97\\xbd\\xe2\\x4a\\x67\\x9f\\x6f\\x72\\xef\\xe2\\xcd\\x4a\\x0e\\xc7\\xfe\\x65\\x0c\\xde\\x17\\x4c\\x07\\x4c\\x5a\\x4a\\x59\\xcd\\x3a\\x52\\x24\\xd0\\x0b\\x4c\\x01\\xc0\\xd8\\x86\\x2a\\x88\\x97\\x48\\x20\\xa0\\x08\\xeb\\x13\\x79\\xcd\\xb2\\x4d\\xbf\\x2f\\x3d\\x31\\x0a\\x92\\x24\\x27\\x7d\\x81\\x78\\x8a\\x94\\xa4\\x98\\x26\\x71\\xf9\\x35\\x3a\\xa6\\x26\\x23\\xd3\\xa6\\x9a\\xf8\\x1d\\x65\\x9d\\x3c\\x39\\xea\\x4e\\xbf\\xc4\\xe7\\xa4\\xe1\\x8a\\xcf\\x0e\\x7d\\xcb\\x92\\x5c\\x1a\\xb7\\x89\\xcb\\x4d\\xfa\\x0d\\x13\\x90\\xa8\\xb4\\x92\\x3b\\xc7\\xca\\x69\\x80\\xdd\\x04\\x24\\xd2\\x92\\x36\\xbe\\x17\\xd9\\x0d\\xf8\\x6c\\xfd\\x1e\\xc0\\x87\\xf9\\xe1\\x3c\\x46\\xc5\\x9c\\x7e\\xfb\\x4a\\x34\\xdd\\x62\\xc3\\x89\\x30\\x45\\x1c\\x3a\\x56\\xea\\x09\\x32\\xf5\\xca\\xf1\\x50\\x7d\\x34\\x74\\x43\\xac\\x68\\x24\\x72\\x83\\x82\\x30\\x8a\\xb1\\x34\\x19\\x46\\xac\\x76\\x90\\x61\\xd4\\xb1\\x97\\x32\\xa9\\x80\\x10\\x2c\\xeb\\x9a\\x06\\x6a\\xbe\\x67\\x63\\x0f\\x80\\x13\\xc6\\x54\\x03\\xf9\\x9c\\xec\\x9c\\x78\\x51\\x7e\\x34\\x5a\\xc0\\x1a\\x96\\x7d\\xba\\x37\\xdb\\xc5\\x81\\x96\\x6d\\xb0\\x88\\x34\\xfa\\x53\\x60\\xd6\\x3c\\x4b\\x39\\xb1\\xfb\\x73\\x5a\\x50\\xa9\\x86\\x95\\x1b\\x95\\x56\\x1c\\x2a\\x8a\\x4e\\x67\\xc2\\xdb\\x29\\xd0\\xa0\\x63\\x10\\x3c\\x15\\x74\\x00\\x64\\x79\\x80\\x73\\x95\\x06\\xd1\\x46\\x93\\x6c\\x57\\x19\\x1f\\x55\\xbe\\xea\\xa1\\x31\\x84\\x28\\xae\\x99\\x17\\x64\\x93\\xab\\x7a\\xb0\\xbe\\xc2\\x6b\\x19\\xb5\\x83\\x38\\x67\\x3a\\x85\\x33\\xcf\\xc9\\x46\\x4b\\x88\\x67\\x81\\x30\\x02\\x9b\\x97\\x5f\\x1c\\xc0\\x63\\xdc\\xb9\\x92\\x0f\\x78\\x0e\\x2f\\x58\\xe9\\x4b\\x9c\\xf9\\x40\\x0f\\xc4\\xb6\\xb2\\x80\\xc9\\x07\\x87\\xda\\x4b\\x03\\xa3\\x2a\\xa9\\x38\\x9c\\x30\\xdc\\x55\\x61\\x02\\xaa\\x20\\xc1\\xa8\\x5f\\xb0\\x03\\xde\\x37\\x00\\x1b\\xfc\\xa1\\x99\\x84\\xb9\\xb7\\x23\\xad\\xd4\\xbf\\xe5\\x81\\x1e\\x12\\x03\\x8a\\x16\\x4f\\x81\\x48\\x73\\x67\\xd5\\x58\\xd3\\x0a\\xf0\\xde\\x97\\xc9\\x1a\\xc2\\x78\\xd8\\xb4\\xd1\\xf2\\x48\\xce\\x89\\xf9\\xf6\\x9c\\xbb\\x2d\\xed\\xd7\\xc9\\x64\\x3b\\xe4\\x22\\x9c\\x20\\x7c\\x42\\x07\\x59\\xae\\x72\\x16\\x4f\\x00\\x4a\\x8a\\x69\\x9a\\xc8\\x70\\x2a\\xd0\\x39\\xa0\\x66\\xc0\\xdf\\x18\\x26\\x79\\x20\\x41\\x12\\x2d\\x62\\xc2\\xb6\\xdd\\xcb\\xfd\\xc7\\x3a\\x06\\x95\\x17\\xbb\\x38\\x27\\x6d\\xad\\x4e\\x0c\\x80\\x5b\\xb4\\xe2\\x45\\x85\\x62\\x51\\x0c\\x55\\x03\\x5b\\x30\\xcf\\x06\\x2d\\x6f\\x17\\x0c\\x04\\xcb\\x82\\x88\\xdd\\xa8\\x6a\\xdb\\x42\\x69\\x4b\\x75\\x01\\x9f\\x76\\xdc\\x13\\xda\\xff\\xea\\x38\\xe1\\x5e\\x58\\x1e\\x7e\\x3b\\x08\\x26\\x29\\x63\\x89\\xce\\xb9\\x71\\x5c\\xd2\\x3f\\x0e\\x7b\\x4a\\xc6\\x54\\x15\\x1a\\xc8\\x76\\x66\\x14\\x54\\xa9\\x81\\x68\\x84\\x63\\xed\\xc3\\xaa\\xc7\\x48\\x22\\x48\\x29\\xa5\\x23\\x96\\x04\\x28\\x97\\xb4\\xea\\xf7\\x0c\\x98\\xd0\\xf2\\x02\\xe1\\x93\\x88\\x10\\x48\\xca\\x53\\x79\\xb0\\xd7\\x38\\x47\\x50\\x69\\xc8\\x53\\x0c\\xe4\\x31\\x69\\xc2\\x65\\xe2\\xd0\\xb8\\x3c\\x8f\\x8b\\x5c\\x9a\\xce\\x92\\x1e\\xaf\\x4e\\xc0\\x1e\\xa7\\x55\\xbf\\x25\\x6d\\x1a\\xa8\\xfa\\x21\\xeb\\xb9\\xd4\\x82\\xaa\\x67\\x94\\xd0\\xe7\\x7d\\x6d\\x6a\\xdc\\xf8\\xe3\\x91\\x43\\x18\\xa4\\xec\\x13\\xaf\\xb6\\x00\\x9f\\xa4\\x33\\x2e\\xb6\\x16\\x0f\\x8c\\x41\\x5e\\xa5\\x7a\\x38\\x78\\xcb\\xc5\\xd5\\xaf\\x12\\xab\\x4d\\x6a\\x8e\\xe1\\xe0\\x16\\x34\\xe1\\x34\\x77\\x86\\x20\\x76\\x26\\xd5\\xaa\\xa4\\x52\\x7e\\x8d\\x10\\xd6\\x12\\x0e\\x95\\x54\\xd6\\x17\\x76\\x24\\x00\\x74\\xd0\\xe2\\x98\\x45\\x4d\\x47\\x18\\xc2\\x22\\x94\\x60\\x95\\xc9\\x36\\x32\\x9c\\x4e\\xc6\\x6b\\x40\\x62\\x28\\x10\\x1b\\xc0\\x67\\x8e\\xec\\x14\\x11\\x8d\\xd3\\x05\\x1d\\xf5\\x6c\\x14\\xf3\\x98\\xb2\\x85\\x4c\\x5b\\xd0\\x02\\x16\\x60\\xa5\\x3d\\x8f\\x92\\xc1\\x29\\x68\\x1c\\xb6\\x6c\\xca\\x09\\x02\\x61\\x5f\\x3e\\x51\\x05\\x06\\x7b\\x80\\x37\\x20\\x21\\x5d\\x5f\\xae\\x42\\xd2\\xa8\\x96\\xd0\\xdc\\x3c\\xb1\\x38\\x31\\xed\\x59\\xc4\\xc3\\x98\\x7f\\x56\\x86\\x46\\xb3\\x49\\x00\\xff\\xe1\\x01\\xb9\\x1b\\x11\\x00\\x09\\x4b\\xe1\\x1a\\x1b\\x6b\\xc3\\x53\\x8a\\xba\\x42\\x86\\xff\\x56\\xbb\\xd8\\xcc\\x9c\\x96\\x9e\\x40\\x65\\x4f\\x0d\\x77\\x9f\\xba\\x49\\xb4\\x27\\x24\\x8c\\x64\\x18\\x7c\\x0e\\xee\\x36\\x02\\xbc\\x8b\\x0f\\x80\\xa1\\x95\\xcd\\x80\\x40\\x8b\\x7e\\x4c\\xd7\\x24\\x39\\x0f\\x4f\\xf3\\x89\\x09\\xc7\\x92\\xa0\\xa1\\xc2\\x84\\x5b\\xc3\\x04\\x14\\xc9\\xa8\\xaa\\x3d\\x4b\\x8b\\xcd\\x5b\\x8e\\xa5\\x92\\x68\\x4c\\xfd\\x04\\x79\\x6b\\xbf\\x68\\x8c\\xac\\xba\\x97\\x76\\x09\\x6a\\x2a\\xfc\\xac\\x00\\x46\\xc7\\x28\\x10\\x39\\xf9\\x6a\\x32\\x14\\xcd\\x80\\x1e\\x4a\\xff\\xee\\x33\\xe9\\xab\\x92\\xb5\\xba\\x89\\x68\\x12\\xb5\\xe4\\xde\\xde\\x8c\\x5c\\xb4\\x07\\x45\\xcd\\x4a\\xa8\\x31\\x0c\\x0c\\xf0\\x35\\x52\\x46\\x9b\\xa7\\xcb\\x65\\x13\\x2e\\x0d\\x9f\\x2e\\x4f\\x27\\x19\\x15\\x9c\\x1d\\x39\\x00\\xa4\\xda\\x22\\x52\\xaa\\x09\\x08\\x38\\xd4\\xf2\\xb3\\x18\\x36\\x7e\\x0a\\x58\\xfa\\xb5\\x24\\xe9\\xa9\\xbc\\x9b\\x2e\\x44\\x4f\\x04\\xc3\\xd7\\xb5\\x62\\x0b\\xc2\\x6e\\x4d\\xa2\\xc6\\xd6\\xa9\\xfc\\x8f\\x97\\x42\\xce\\x69\\x1b\\xb9\\xc3\\x96\\xda\\x50\\x8b\\xdd\\xb1\\x12\\x01\\xe9\\x50\\x79\\xc7\\xbb\\x95\\x7d\\x29\\x13\\x30\\x6d\\xce\\x60\\xb1\\xee\\x8e\\xf0\\xf2\\x25\\x8c\\xe3\\xe0\\x91\\xc7\\xdb\\xf0\\x4d\\xbb\\x9a\\x70\\x4d\\xae\\xdb\\x92\\x01\\x1b\\xd6\\x15\\x22\\x65\\xad\\x2c\\x21\\x52\\xa0\\x05\\x71\\x43\\x47\\xc6\\xf4\\x22\\xba\\xf0\\xb7\\xac\\xe8\\x08\\xdb\\xb8\\xb6\\x12\\x50\\x26\\xc4\\x11\\x2f\\x49\\x71\\x89\\xba\\xdb\\x93\\x32\\xee\\x35\\x9d\\x66\\x21\\x1a\\x9a\\x94\\x0f\\xed\\x78\\x13\\xc1\\x6b\\xfa\\x34\\x98\\x99\\x72\\x14\\x70\\x3b\\x4f\\xb9\\x91\\xde\\x36\\x3e\\xcf\\x4d\\x50\\x16\\x35\\xa0\\x50\\x6d\\x2a\\x15\\x0b\\x37\\x10\\x26\\x58\\xb3\\xe8\\xe6\\x19\\x04\\x22\\x30\\xea\\xc4\\x3f\\xd2\\xb7\\x1e\\xa3\\x41\\x45\\xaa\\xf8\\x33\\x57\\x7f\\x34\\x06\\xda\\x35\\x21\\xc7\\x31\\x1e\\x1b\\x3b\\x08\\x70\\xc5\\x2c\\x22\\xc2\\x71\\x4c\\xe9\\xab\\x4e\\x10\\xd4\\xc2\\x89\\xf4\\x0b\\xa6\\x8a\\x40\\x83\\x93\\xc4\\xeb\\x67\\xab\\x6e\\x6a\\xa8\\x86\\x82\\x66\\xb7\\x0c\\x23\\xe9\\x07\\x54\\x86\\x2f\\xfd\\x76\\x55\\xa7\\xe3\\xbc\\xd0\\xee\\x29\\xec\\x5e\\x8a\\x13\\x80\\xb3\\x43\\x7d\\x46\\x97\\x9c\\x91\\x2b\\x44\\xac\\xcc\\xaa\\xf9\\xf9\\x37\\x65\\x28\\xfd\\x0f\\x68\\xbc\\x58\\x2e\\x4e\\xe0\\xa4\\xe2\\x31\\xce\\x8d\\x4f\\x6e\\x11\\x4d\\xb7\\x79\\xde\\x3f\\x35\\x6b\\xdd\\xa8\\x49\\x9c\\xed\\x06\\xf5\\x19\\x22\\x4c\\x8e\\x9a\\x1a\\xa0\\x20\\xaa\\x59\\xf5\\xb4\\x7a\\x2e\\x22\\x96\\xf5\\xe3\\x92\\x95\\x0d\\x1a\\x6b\\x7b\\x39\\x16\\x2e\\x6d\\x14\\x8b\\x6b\\x95\\xd3\\x79\\x8a\\xea\\xe3\\xcb\\x3b\\x4d\\x9e\\xde\\x35\\x92\\x4e\\x8c\\xd6\\x8e\\xb3\\x45\\x23\\x11\\x8a\\xf7\\x4b\\x1c\\xee\\xa0\\x6e\\xf0\\x16\\x75\\x39\\xc2\\x60\\x98\\x2e\\xf7\\x51\\x8a\\x44\\x6e\\x8e\\x0b\\xd7\\x6d\\x58\\x09\\xb9\\xf5\\x1c\\x64\\xc9\\x3b\\x97\\xbe\\x0e\\x06\\x38\\x1b\\xd4\\x11\\xcc\\x5e\\xb1\\x1a\\xf1\\x25\\x52\\xc6\\x40\\xf2\\x57\\x2f\\x82\\xc8\\xe4\\xd1\\xd3\\x05\\x77\\x90\\xb4\\x7b\\x7d\\x68\\x39\\x28\\x49\\x13\\xa9\\x2c\\xa6\\xcf\\x6e\\x54\\xdb\\xd2\\xad\\x7a\\x54\\x75\\xc0\\x09\\x52\\x32\\x0a\\x88\\x57\\xd0\\x89\\xd7\\x3d\\x53\\xd5\\x2d\\xff\\xe1\\x0d\\xab\\xc3\\xdc\\x3e\\xde\\xac\\x3c\\xde\\x9d\\x62\\xe0\\xfb\\x85\\xb8\\x66\\xbc\\x2d\\xcd\\x5e\\xad\\xb6\\xda\\x4d\\xf9\\x58\\xe1\\x3d\\xd0\\x36\\x31\\x27\\x09\\xba\\xb8\\x4b\\x03\\x80\\xe1\\x1b\\x86\\xc8\\xe7\\x55\\x80\\x65\\x78\\x7c\\xb4\\x3d\\xa8\\x5c\\x07\\x74\\x73\\x80\\xd5\\x70\\xe1\\x12\\xcd\\x0d\\x18\\xd9\\x08\\xb1\\xda\\x65\\xfb\\x0b\\xf6\\xc2\\xe1\\x02\\x43\\xe1\\xac\\xbf\\x01\\xe2\\xe5\\xde\\xa5\\xcc\\xb7\\xcc\\x48\\x66\\xb0\\xb1\\x28\\xf6\\x28\\x8f\\x5f\\x67\\xca\\x98\\x88\\xe2\\x1a\\xe3\\x1e\\x44\\x82\\x8f\\x8a\\xb3\\x1d\\x80\\xe2\\x88\\x20\\x4f\\x94\\x37\\x36\\xbb\\xa0\\x0c\\x00\\xbe\\xc6\\xe2\\x85\\x7a\\x21\\xb2\\x74\\x73\\x31\\xb1\\x55\\xc5\\x12\\x0d\\x8d\\x17\\xf9\\x00\\xca\\xe5\\xbe\\x08\\x66\\x48\\x37\\x3a\\x40\\xfc\\x2c\\xca\\x2b\\x43\\xc0\\x67\\x92\\x6e\\x65\\x19\\xa3\\xa8\\x51\\x68\\x69\\xca\\x23\\x1b\\xb6\\x30\\xef\\x94\\x5e\\x7f\\x82\\x96\\xbf\\x0f\\x95\\x1b\\x28\\xd9\\xa4\\x46\\x89\\x94\\x64\\x80\\xca\\x35\\x69\\x13\\x41\\xa8\\xa3\\x43\\xbc\\x6b\\xee\\x4c\\x3b\\x88\\x59\\x6e\\x92\\x8c\\xe5\\x72\\x8a\\xc1\\x68\\x2f\\x2b\\x62\\xac\\x35\\xcb\\x28\\xbc\\x51\\x74\\x65\\x15\\x83\\x9b\\xdb\\x14\\x58\\xb7\\xce\\x67\\x72\\x8b\\xe0\\x9b\\x6f\\x61\\x45\\xca\\xb9\\x84\\x72\\xad\\x5c\\x84\\x3a\\x26\\x4d\\x0d\\x0a\\x2f\\x87\\x34\\x30\\x28\\xa6\\x6d\\x11\\xae\\x11\\x40\\xbb\\xc3\\xc0\\x2e\\x90\\xa1\\xbf\\xc4\\x5d\\x51\\x00\\x70\\x8a\\x16\\x8a\\x56\\xd3\\xac\\xb8\\x2b\\x86\\xc2\\x82\\xc1\\x61\\x19\\x91\\x5f\\x94\\x2b\\x86\\xc1\\x1e\\x4e\\x75\\x51\\x42\\xd5\\xac\\x89\\xaa\\x26\\xec\\xea\\x8a\\x11\\x5b\\xc1\\xd9\\xe1\\x42\\xf1\\x5f\\x64\\x65\\x33\\x45\\xa3\\x89\\x13\\xda\\x41\\x11\\x22\\x43\\x8a\\x38\\xa1\\x4d\\x2b\\xa1\\x03\\x11\\x41\\xb8\\x71\\x00\\x27\\x5e\\x28\\x43\\x5e\\x3e\\x72\\xe5\\x09\\x23\\xf3\\x62\\x04\\x14\\xaa\\x24\\x04\\x20\\x30\\x92\\xc9\\x45\\x50\\xa3\\xf8\\x82\\x22\\x85\\x78\\xf8\\x7d\\x9b\\xad\\xca\\x44\\xb3\\x7f\\x9b\\xd1\\x73\\x8e\\x98\\xe8\\x55\\xd4\\x7b\\x18\\x22\\xc0\\xad\\xfb\\xf6\\xed\\xd3\\xa9\\xec\\x0b\\x3f\\x0b\\xc5\\x06\\xd5\\x5d\\xc5\\x18\\x96\\x8b\\x22\\xde\\x78\\x01\\xd3\\x70\\x74\\x1a\\x17\\x7f\\x49\\x5c\\x7a\\xc1\\x5a\\x00\\xc9\\x14\\x17\\x3f\\x29\\xc8\\x55\\x15\\xa9\\xb8\\x2d\\x6f\\x42\\xb0\\x8e\\xa5\\x8a\\x45\\x53\\x1b\\x11\\xba\\xf4\\xc8\\xb8\\x34\\xd7\\x08\\xd7\\x08\\xc6\\x40\\xc8\\xb8\\x6b\\x9d\\xdc\\x09\\x54\\xe9\\x41\\x60\\xd6\\xa9\\x6b\\x35\\x24\\xe7\\x6e\\x42\\xd8\\x43\\xdb\\xd9\\x93\\x0b\\x3e\\x58\\x91\\x13\\xd7\\x10\\x34\\x98\\x75\\xcf\\x47\\x4a\\x28\\xa4\\xed\\x1b\\xcb\\x91\\x7c\\x90\\x9c\\x11\\xa6\\x78\\x37\\xd9\\x51\\x58\\xf2\\x31\\x40\\xb4\\xd0\\x84\\x20\\x5a\\xdb\\x12\\x2e\\x5b\\x74\\x25\\x50\\xda\\x4c\\xc3\\x68\\xa6\\x5a\\x03\\x75\\xdf\\x38\\x1f\\xa5\\x3b\\x0a\\xc5\\x56\\xc9\\x28\\xc8\\xef\\xcb\\xe0\\x7f\\x56\\xca\\x7f\\x02\\x5d\\xfa\\x24\\xa4\\xb1\\xbc\\x03\\x86\\x08\\x0d\\x21\\x61\\xaa\\x21\\x23\\x07\\xe5\\xd0\\x22\\x93\\x08\\x5b\\x82\\xc4\\x85\\x6e\\x34\\xd1\\xfd\\x3c\\xff\\x13\\x80\\xc8\\xb9\\x47\\x8b\\x04\\x4c\\x16\\xa7\\x2f\\x48\\x13\\x35\\x5a\\x12\\x27\\xf7\\x24\\xb5\\x8a\\x25\\x52\\xad\\x94\\x0d\\x7c\\xe7\\x23\\x8c\\x2e\\x64\\xa3\\x54\\x1e\\x85\\x63\\xc5\\x26\\xb5\\xca\\x93\\x5e\\x91\\x35\\x17\\x3f\\xd5\\xf9\\xe5\\x23\\x42\\x80\\x72\\xb1\\xdb\\x50\\x80\\xc9\\x87\\xc3\\x4d\\x35\\xdc\\x38\\xcc\\xae\\x33\\x27\\x64\\xc9\\xcf\\x09\\x20\\x72\\x9a\\xf0\\x8e\\x41\\xda\\x55\\x03\\xe5\\xcb\\xc3\\xe5\\x96\\x02\\xf3\\x6c\\xfe\\x08\\xd8\\x0c\\x31\\x3c\\xf7\\x60\\xc4\\x12\\x03\\x6d\\x81\\xf8\\x60\\xb2\\x84\\x75\\x79\\xa9\\x66\\x9f\\x22\\x99\\x8f\\x9e\\x30\\x32\\xc1\\x10\\x89\\xfc\\x21\\x3c\\x5c\\xc9\\x09\\x2f\\xb0\\x4f\\x0c\\xcb\\x5f\\x03\\xce\\x52\\x7d\\xb2\\x12\\xd8\\xc6\\x3c\\xbd\\x5a\\x5d\\x1e\\xe4\\xab\\x10\\xd9\\x3b\\x1b\\x6c\\x3f\\x9c\\x67\\x20\\x29\\x2e\\xe9\\xcd\\x47\\xa4\\x51\\x2b\\x4c\\xd2\\xc9\\x6a\\x12\\x2c\\x81\\x8e\\x42\\x8d\\x66\\x9d\\x87\\x65\\xe4\\x63\\x18\\xdd\\x4e\\xbb\\xf9\\x9c\\xae\\x9e\\xd2\\x71\\x3f\\xc1\\xf7\\x2e\\x12\\x71\\xd0\\x9d\\x84\\x53\\x6c\\x2e\\x70\\xb7\\xb0\\x4a\\x8a\\x84\\x9c\\x54\\xbd\\xab\\xb9\\x3c\\x5c\\xc3\\xfa\\x81\\xf0\\xb5\\xa5\\xd2\\xf6\\xc3\\x00\\xd2\\x74\\x0f\\x3c\\x1c\\xae\\x1d\\x3a\\x0f\\x58\\x2e\\x3e\\xcb\\xea\\x61\\xa2\\x8f\\x59\\xb0\\xb3\\xd7\\x1e\\x3f\\xa1\\x75\\x75\\xc9\\x85\\x8b\\x52\\xd7\\xf5\\x8c\\xe3\\xd8\\xa9\\xfa\\xb6\\x62\\xc2\\x16\\x9a\\xf3\\xb5\\xf3\\x7a\\x8a\\x01\\x83\\x9c\\x99\\xcc\\xb2\\x9e\\xad\\x23\\xf3\\x94\\x28\\xfc\\x1b\\x13\\x83\\xc9\\x45\\x4c\\x5a\\x88\\x9c\\x5e\\x16\\xcc\\x08\\x89\\x33\\xfe\\x57\\x23\\xd0\\xca\\xb5\\x66\\x5a\\xb2\\x3a\\x31\\x90\\x4e\\xa7\\x95\\x94\\x83\\x99\\x5d\\x83\\x87\\x19\\xdc\\xb2\\x47\\xf1\\xcc\\x8d\\x5c\\xbb\\x1b\\x5b\\x5c\\x34\\x29\\x6a\\x98\\x95\\x0c\\xda\\x70\\xa6\\x61\\x33\\x92\\x8d\\x0e\\x05\\x42\\xd4\\xa7\\x67\\x88\\x2a\\x0d\\x3f\\xc1\\x71\\x03\\xa5\\xd5\\x3a\\xb4\\x2b\\xdd\\x80\\xd9\\x88\\x63\\x19\\x2d\\x8d\\x2c\\x30\\x71\\xde\\x62\\x6f\\x04\\xc6\\xdd\\x05\\xe7\\xcb\\xc1\\x72\\x40\\x47\\xb5\\xea\\x3d\\xe8\\x84\\x29\\xc3\\x6c\\x1a\\xa7\\x00\\x25\\x34\\x1c\\xbd\\x05\\xd4\\xd6\\x28\\x1b\\x8d\\x2a\\x18\\x94\\x81\\xdc\\x42\\x5e\\xd4\\xe8\\x4e\\x23\\xc0\\xa0\\xe8\\x4d\\x90\\x76\\x04\\xb9\\x3a\\xc2\\xa2\\xee\\x6c\\x2d\\x1e\\x67\\x18\\xa5\\x20\\x71\\xa4\\x84\\x78\\x8f\\xfb\\x54\\x71\\x22\\x0e\\x2b\\x7f\\xc0\\x4e\\x51\\x9d\\x17\\x25\\xd1\\x95\\xfd\\xcc\\x47\\x5f\\x97\\x79\\x48\\x74\\x4f\\x65\\xc6\\xc1\\x87\\x3a\\x07\\x45\\x79\\x51\\xd9\\x68\\x82\\x1d\\x82\\xaf\\x49\\x3a\\x8d\\x91\\x4a\\x01\\x24\\x35\\x50\\x40\\x84\\x3f\\x78\\xfc\\x25\\xbc\\x07\\xec\\xae\\x3e\\xe3\\xa9\\xd0\\xac\\x09\\x85\\xbd\\xec\\xa2\\xa7\\x14\\x5d\\x98\\xaa\\x99\\x20\\x63\\x24\\x88\\x6c\\x0d\\x1d\\xc2\\xf2\\xc0\\x28\\x9c\\x0a\\x2a\\xe5\\x57\\xc6\\x1b\\xfe\\x0e\\xa9\\x0b\\xe7\\x5d\\x48\\x46\\x78\\xd0\\x7d\\xe6\\xc3\\xca\\x1a\\x94\\xe0\\x7f\\xd9\\x2e\\xf5\\x64\\x20\\xa4\\x3a\\xbb\\x2a\\x8c\\x6a\\xae\\x36\\x2b\\x09\\x58\\xb0\\x45\\x76\\x1b\\x2a\\x38\\x3e\\x97\\x8a\\x46\\xf5\\x6a\\x34\\x37\\x31\\x67\\x0b\\x9a\\x9d\\x83\\xd8\\x51\\x81\\x24\\x5f\\x25\\x83\\x78\\xec\\xa5\\x40\\xc4\\xdd\\x70\\xd0\\xc2\\x26\\xf1\\x25\\x4a\\x97\\x3b\\x7f\\xc0\\x13\\xc7\\xc0\\x16\\x51\\xc9\\x0c\\xc7\\xaa\\x32\\x3e\\x7c\\x82\\xa0\\xf1\\x0b\\x55\\x05\\x42\\x2c\\x39\\x92\\xa4\\x99\\x23\\x22\\xf8\\x18\\x0f\\xd1\\x23\\x5d\\x46\\x20\\xc5\\x2f\\x5c\\xfc\\x05\\x78\\xdc\\xfb\\x05\\x6e\\x21\\x07\\xac\\x68\\x68\\x5d\\xae\\x24\\x74\\x28\\x64\\xf9\\x62\\x27\\xe3\\xf5\\x71\\x57\\x18\\x28\\xcc\\xba\\xe8\\x35\\x2a\\xe1\\x4d\\x40\\x05\\x00\\x74\\x45\\x38\\x13\\xf5\\x1c\\x20\\xa3\\x0f\\x68\\x61\\x80\\x4b\\x56\\x91\\x2c\\xee\\xeb\\xc2\\x17\\x98\\x2c\\x7c\\x1d\\x0b\\xca\\xbe\\x1d\\x50\\xec\\x1e\\x9a\\xe9\\xce\\x02\\xb6\\x1c\\x3d\\xf1\\x1f\\xcf\\x3c\\xcc\\x08\\x28\\x55\\x17\\xcd\\xfa\\xc9\\x53\\x85\\x19\\x17\\xc2\\x1f\\x7a\\x1f\\xb1\\xb0\\x72\\x60\\x2b\\x92\\x95\\xcf\\x44\\xc3\\xdc\\x17\\xf0\\xcb\\x74\\xaa\\x6c\\x0e\\x21\\x11\\xc1\\x01\\xa0\\xa5\\x38\\x9f\\x0d\\xc4\\xdb\\x81\\x82\\x20\\x15\\xd2\\x94\\x91\\x49\\xbc\\xfe\\xc0\\xa9\\x18\\xdd\\xa0\\xca\\x28\\x38\\xf7\\x78\\xe1\\x4e\\x0d\\x54\\x0d\\xb0\\x81\\x1a\\x2d\\x88\\xe9\\x67\\x67\\xa7\\xe3\\x66\\x26\\x14\\x58\\x5b\\x3b\\x38\\x23\\x28\\x63\\xe4\\x54\\xaa\\xc1\\x63\\xd6\\xab\\x65\\xf1\\x3b\\xb5\\x91\\xc7\\x1a\\x46\\xed\\x02\\x82\\xe6\\x37\\x0e\\x18\\x62\\xb7\\x88\\x31\\x3c\\xb9\\xfc\\xa3\\xae\\x85\\xe1\\x07\\x6e\\x62\\xc3\\xec\\x94\\x51\\x9d\\x95\\x96\\xd9\\x15\\x4d\\xd0\\xd7\\x49\\xa9\\xfb\\xe2\\xb5\\xc9\\x11\\x1e\\x71\\xc0\\xd1\\x01\\x02\\xd9\\xed\\x23\\x00\\x80\\x36\\xda\\x15\\xc4\\xa8\\x4d\\x7a\\xd0\\x31\\x81\\x8b\\x4c\\xeb\\x2d\\x00\\x05\\xdf\\x53\\xcd\\x88\\xe9\\x44\\xfe\\x41\\x90\\x64\\x9c\\x8d\\xc7\\xed\\x29\\xd5\\x01\\x69\\x68\\x2c\\x47\\x87\\xe9\\x73\\x7d\\xc7\\x81\\x05\\x6e\\xc5\\xf1\\x76\\x31\\x23\\xa0\\x5a\\x47\\xa9\\x40\\x90\\xba\\xef\\xe8\\x49\\xf5\\xd1\\xb8\\xff\\x04\\x00\\x24\\xe7\\xa1\\x44\\xbd\\xd6\\x7a\\xaf\\xa5\\xfa\\x96\\xd8\\x0e\\x3c\\x06\\x27\\x69\\x8d\\x90\\x22\\x17\\x74\\x5a\\x52\\xe8\\xdc\\x6c\\x12\\xe8\\x11\\x1b\\xb9\\xc2\\x4e\\x2c\\x7c\\x41\\x40\\x35\\x93\\x8d\\x9d\\x96\\xb2\\x09\\xa7\\x60\\x8f\\x9d\\x82\\x8a\\x81\\x8d\\xcd\\xac\\x46\\xf6\\x91\\x1b\\xa0\\x7e\\x2c\\xed\\x25\\xc0\\xd4\\xe3\\xf5\\xed\\x1f\\x7d\\x23\\xd4\\x23\\x34\\x74\\x9c\\x68\\x56\\x90\\x80\\x9e\\x72\\x43\\xe0\\x8d\\x54\\x05\\x05\\x17\\xd2\\x86\\x28\\x28\\xa5\\x9e\\xca\\x5e\\x74\\xdf\\x43\\xc4\\x87\\x5f\\xad\\x00\\x1f\\x44\\xb3\\x86\\x2c\\x73\\x6d\\xc9\\x78\\x90\\x2a\\x53\\x4c\\x84\\xce\\x0f\\x74\\x43\\x80\\x47\\xe4\\x46\\x0c\\x2c\\x34\\x0e\\xc5\\x56\\x34\\x1a\\x0e\\xd2\\x42\\x19\\xad\\xc5\\xa8\\x32\\xce\\x84\\x16\\x09\\xa2\\xb3\\x3d\\x55\\xa1\\xa4\\x91\\x86\\x7c\\x11\\x4a\\x35\\x86\\xbe\\x00\\x77\\x61\\xb9\\x05\\xf8\\x97\\xe6\\x80\\x1b\\x8c\\x42\\x94\\x9e\\x07\\x6a\\x4d\\xb2\\x20\\x4c\\xed\\x86\\x5b\\x11\\x88\\x12\\x0d\\xa2\\x0d\\x05\\x48\\x3b\\xb7\\xa0\\x89\\x51\\x84\\x14\\xf7\\xa4\\xc0\\x6d\\x88\\xf8\\x29\\x53\\xc0\\xb3\\x52\\xb5\\xd2\\x00\\x5d\\xfb\\xa8\\x92\\xbd\\x12\\x29\\x02\\xb4\\x12\\x86\\x3b\\x5e\\xc3\\xa1\\x17\\xf2\\x5e\\x1c\\xe7\\x25\\x40\\x8e\\x83\\x55\\x83\\x39\\xde\\xc6\\xb9\\xbd\\x24\\x0b\\xe5\\xa4\\x43\\x90\\x47\\xe5\\xa9\\xc2\\x24\\xfc\\x00\\xf6\\xd4\\x2a\\x1d\\xb5\\xf8\\x5c\\x69\\xc0\\xa2\\x1e\\xc7\\x35\\xcf\\x78\\x1c\\xff\\x2a\\xa2\\x8c\\x63\\xc2\\xe3\\xc2\\x3a\\xc7\\xe4\\x36\\x35\\x46\\xc4\\x23\\x43\\x3d\\xa4\\xb7\\x13\\xdd\\x14\\xa4\\xce\\xfb\\xba\\x6f\\x90\\xe5\\x96\\x04\\x71\\x1a\\x1c\\x77\\x84\\x0f\\x8e\\x04\\xc0\\x70\\x38\\x60\\xa2\\xa0\\x9e\\x03\\x81\\x54\\x70\\xa2\\x64\\x1b\\x60\\x4a\\x7e\\x37\\xdb\\xc7\\x80\\x0d\\xb7\\x80\\xc5\\x76\\x7f\\x0b\\xf3\\x94\\xc1\\x0c\\x5b\\x5c\\xaa\\xc5\\x3f\\x6c\\xea\\x53\\xc7\\x1c\\xbd\\x9b\\xf1\\x61\\x40\\x8d\\x19\\x24\\xa3\\x81\\x46\\x06\\xc0\\xdf\\xcb\\x9e\\x19\\x0d\\x00\\x55\\x47\\x2c\\xcf\\x87\\xb4\\x03\\x5b\\xe2\\xf1\\xa2\\x43\\x10\\xe0\\xea\\x15\\x67\\x26\\x8e\\xd8\\x0d\\x6d\\xb8\\xed\\xa2\\x22\\x8b\\xf8\\x45\\xd7\\xbd\\x9f\\xab\\x53\\x70\\xb6\\x6f\\x93\\x90\\x36\\x0e\\x90\\x99\\x47\\x4e\\xbe\\x8c\\x20\\xdf\\xe1\\x33\\x87\\xc3\\x05\\x56\\x80\\xe2\\x98\\xa4\\x0b\\x63\\x90\\x3f\\x8e\\x79\\x9e\\x22\\xe7\\xc0\\xef\\x3c\\x27\\xbd\\x41\\x2b\\x7e\\x43\\x36\\x17\\x5b\\xef\\x04\\x53\\x7b\\x84\\x01\\x17\\x28\\xb0\\x4f\\x62\\x0c\\x6d\\x4a\\x8c\\x6c\\x94\\x24\\x3b\\x21\\x4a\\x33\\xa1\\x63\\x9b\\x36\\xcc\\x4f\\x7a\\xea\\x14\\x5e\\xa0\\x81\\xc1\\x31\\xe5\\x10\\xdb\\x5b\\x19\\x00\\x00\\x17\\x80\\xbb\\x6d\\xab\\xbd\\xc1\\xb5\\x96\\x8a\\x62\\xc2\\x1a\\x46\\x42\\x15\\x11\\x08\\x19\\xa4\\x56\\xee\\x5e\\x3c\\x3c\\x16\\x71\\xa0\\xb8\\x01\\xad\\x14\\x44\\x14\\xc1\\x25\\x61\\xe1\\x87\\x0a\\xd9\\x85\\x15\\xbb\\x41\\xbc\\x1b\\x06\\x74\\x8d\\x5b\\x3a\\x90\\x84\\x29\\x9f\\x21\\x0b\\x1c\\xb4\\xac\\x89\\x55\\xc4\\x62\\x99\\xf9\\xb5\\xf9\\x5a\\x6e\\x54\\x21\\xaf\\x4e\\xba\\x69\\x94\\xe6\\xb8\\xb6\\xd9\\x94\\xd0\\x4f\\x56\\x54\\x82\\x70\\xf2\\x42\\x2a\\xa5\\x3b\\x2c\\x04\\x38\\xea\\x46\\x91\\xd3\\xf4\\x70\\xb8\\xa6\\x50\\xac\\x66\\xa7\\x3c\\x25\\x51\\x9e\\x70\\xaa\\x2b\\xa0\\x06\\x86\\xc4\\x77\\x37\\x14\\x66\\x89\\xa2\\xbe\\x56\\xb4\\x1e\\x06\\xdc\\x80\\xcb\\xd4\\x8c\\x9b\\xaf\\xe4\\x5a\\x96\\x32\\x48\\xb8\\xb9\\x27\\x2e\\x9c\\x77\\x15\\x52\\xe5\\xa5\\xfc\\x6b\\xd6\\x18\\x39\\xd6\\x54\\x83\\x57\\xc4\\x6d\\xd8\\x3e\\x92\\x3f\\x6f\\x5f\\x66\\x0d\\xff\\x4d\\x34\\xd4\\x72\\xaa\\x56\\x37\\x71\\x4a\\xd9\\xe5\\x38\\xc8\\x2e\\x0d\\xa3\\xe0\\x58\\xf4\\x76\\xb8\\x0a\\x2d\\x38\\x85\\x30\\xc7\\xf9\\x65\\x72\\x3a\\xf1\\x05\\x97\\xc4\\x9f\\x86\\x4b\\xea\\x3f\\xe7\\x8f\\x0d\\x24\\x4b\\x73\\xdf\\x48\\xb1\\x67\\x0c\\x3f\\xc8\\x65\\xde\\xe4\\xb3\\xb2\\x97\\x6d\\x7f\\x27\\x52\\xa3\\x85\\xa8\\x86\\xd6\\x55\\x2c\\xc5\\x07\\xa6\\x25\\xf2\\x79\\x8d\\x3b\\xf9\\x83\\xf6\\x17\\x00\\x74\\x6b\\xf7\\xec\\x6b\\x61\\x92\\x40\\xa5\\x98\\x69\\x40\\xb8\\x19\\x9a\\x2e\\x6a\\x19\\x81\\xe8\\xa0\\x37\\x3d\\xcb\\x83\\x44\\x3f\\xb4\\x0c\\xde\\x2e\\xab\\xbd\\xf7\\xc1\\x2d\\xa1\\x43\\x1f\\x64\\x31\\xc3\\x82\\xdb\\x0b\\x04\\x11\\xa4\\x38\\xe3\\x9f\\xce\\x4c\\xa1\\xed\\xa0\\x35\\x20\\xd4\\xa9\\x39\\x50\\x87\\x11\\x62\\xa1\\x43\\x32\\x2d\\x08\\x4a\\x15\\x0c\\x12\\x6f\\xb5\\x53\\x97\\x93\\xb7\\x7f\\x6d\\xd2\\x9e\\x22\\x99\\x26\\x46\\x58\\x79\\x27\\xa4\\x62\\x4a\\x68\\xae\\xc3\\xe5\\x5f\\x33\\x9b\\xa6\\xcb\\x75\\x6f\\xae\\xc9\\x99\\x52\\x4f\\x89\\x54\\x11\\x0a\\x14\\x7a\\x82\\x15\\x27\\x1f\\xe8\\x59\\x4b\\x42\\xce\\xb9\\x44\\x94\\x59\\x1e\\x24\\x41\\x0f\\x9a\\xe8\\x36\\xbd\\x48\\x96\\x9d\\xa0\\x21\\xc5\\xc1\\x91\\xcb\\x96\\x2c\\xca\\xf1\\x95\\xd4\\x22\\xa5\\xf1\\x38\\xb4\\x20\\xa2\\xfb\\x50\\x76\\xeb\\xc4\\xd5\\x6a\\xc6\\xa5\\x52\\xd7\\x02\\x10\\xec\\x48\\x89\\x12\\x14\\x7d\\x89\\x59\\x32\\x43\\x4a\\x40\\xe2\\x70\\xb0\\x40\\xe5\\x3e\\x98\\xb8\\x29\\x2e\\x31\\xd8\\x22\\x65\\x8c\\xfa\\x6c\\x8b\\x8e\\xbe\\xb0\\x00\\xfb\\x6e\\xb9\\x54\\x6e\\xc2\\x54\\x21\\xc2\\x80\\x63\\xa4\\x1d\\x59\\xe7\\x80\\xae\\x14\\xbe\\x5d\\x8a\\x07\\xda\\xa0\\x05\\xd2\\x9d\\x80\\x4b\\x78\\x2a\\xb3\\xe3\\xa8\\xd5\\x56\\x40\\x14\\x02\\x93\\x63\\x6b\\x58\\x82\\x77\\x16\\x37\\xb9\\xa7\\x36\\x03\\xaf\\x19\\x65\\xa6\\x9d\\x55\\xac\\xb0\\x15\\xd5\\x32\\xc7\\x4e\\x82\\xf3\\xbb\\x07\\x80\\x75\\x77\\xed\\x86\\x80\\x27\\xf9\\x33\\xd2\\xd4\\x5f\\x43\\xa7\\xc6\\xa6\\x43\\xbc\\x72\\x3d\\xbf\\x41\\x65\\xf6\\x26\\xcc\\x06\\x04\\xe7\\x2c\\x5f\\x79\\x32\\xa5\\xea\\x3a\\x0f\\x7e\\x14\\x71\\xe2\\xeb\\x8b\\x87\\x1d\\x9f\\x7a\\x57\\x94\\x9e\\x2e\\xa4\\x67\\xa8\\xab\\xd5\\x4c\\x3a\\x6a\\x03\\xe0\\x94\\x10\\x82\\x8e\\x51\\xd2\\x89\\x2e\\x22\\xba\\x08\\x56\\x0d\\xd4\\xc2\\x41\\x22\\x32\\x2b\\x95\\x18\\xe6\\x5d\\x7a\\xe9\\xe3\\x41\\x34\\x34\\xe8\\x2e\\x2b\\x43\\x12\\xb6\\x62\\x7e\\x08\\x85\\x64\\x0d\\xab\\x2f\\xe6\\x76\\x8f\\xba\\x0e\\x7a\\xac\\x9a\\x03\\x17\\x45\\xa4\\xac\\x21\\x9e\\xe7\\x8f\\x62\\x30\\xb7\\x02\\xd5\\x3b\\x98\\xe2\\xd2\\x42\\xa1\\x38\\xbb\\xbe\\xf3\\x48\\xc8\\x39\\x0a\\x77\\x07\\xf2\\x9c\\x4a\\x1b\\xf1\\xda\\x4e\\x56\\x09\\x81\\x5a\\x49\\xfa\\x88\\x32\\x17\\x6d\\x60\\x22\\x91\\x39\\x77\\x0f\\xe1\\x9e\\xd4\\x77\\xc4\\x25\\x07\\x87\\x49\\xbe\\x6d\\x24\\x14\\x07\\x3f\\xc7\\x48\\xfd\\xbf\\x34\\xc1\\xf2\\xec\\x0a\\x22\\xf8\\x0c\\x81\\x00\\x30\\x00\\xf9\\x15\\xdc\\x7f\\xa5\\x60\\x0c\\x44\\x8b\\xae\\x70\\x60\\x87\\xcb\\xcf\\x18\\xce\\x88\\x4a\\x18\\x23\\x9b\\x27\\xbb\\x31\\x70\\xa3\\x84\\x4e\\x3d\\x3e\\x0d\\x00\\x01\\x8b\\xcd\\xed\\x6c\\xad\\xde\\xf7\\x9e\\x11\\xf4\\xb4\\x43\\x54\\x58\\x7c\\xc4\\x9d\\x3a\\xc2\\x6b\\x1f\\x70\\x6c\\xd1\\x3f\\x55\\x65\\x0c\\xf9\\x92\\xb7\\xee\\xa7\\x0e\\xb0\\x36\\x42\\x98\\x01\\xe9\\x4b\\x7b\\x3e\\x45\\x89\\x81\\xf4\\x38\\xa4\\x78\\x1a\\x82\\x24\\x96\\xa2\\xe4\\xed\\xe1\\x68\\xc7\\x96\\x42\\xc8\\xf4\\x09\\xbf\\x56\\xd8\\x46\\x00\\x98\\x66\\x98\\x10\\x2b\\xab\\x98\\x6c\\x7d\\xfa\\x7f\\xe6\\x28\\x00\\x7d\\x42\\x05\\x05\\xf1\\xb5\\x8c\\x7c\\x19\\x06\\x35\\xa0\\xe5\\x68\\x24\\x86\\xa7\\xe4\\x01\\xa4\\x9c\\xc0\\x94\\xc4\\xe4\\x8b\\xe8\\x04\\x54\\x0a\\xf8\\x27\\x3b\\xeb\\x4d\\x32\\x71\\x76\\x95\\x90\\x07\\x5a\\x08\\x8d\\x32\\x2c\\xb5\\xba\\x22\\xa6\\x16\\x4d\\xbe\\x18\\xe4\\x12\\x5d\\xe1\\x55\\xf3\\x87\\x67\\x06\\x22\\x1d\\x1c\\x1b\\xe7\\x00\\x88\\xb9\\xf4\\x2a\\xbb\\xc3\\xde\\x4e\\x73\\x50\\xa7\\x91\\x39\\xcc\\x11\\x4f\\x5f\\x7e\\xa6\\x83\\x29\\x41\\xd9\\x75\\x8d\\x24\\x46\\xe9\\x2d\\xb0\\xbd\\x65\\xe6\\x63\\x09\\xd1\\xf5\\xe7\\x0b\\x23\\x1b\\x35\\x3a\\xde\\x07\\x1c\\x91\\xb8\\x9e\\x00\\xb7\\x54\\x6b\\x24\\x24\\x73\\xf2\\xc7\\x18\\x26\\x1d\\x35\\x72\\xad\\x61\\x0b\\xfa\\x64\\x57\\x27\\x08\\x92\\xa6\\xfc\\x82\\x46\\x03\\x00\\x08\\xcd\\xc7\\x16\\xd3\\x18\\x77\\x44\\xbd\\xed\\x2d\\x51\\x6c\\x14\\x1f\\xdc\\x46\\x99\\xab\\x0d\\x6a\\x2d\\x88\\x29\\x50\\xd2\\x95\\x51\\xc5\\x98\\x88\\xe5\\xc4\\xe5\\x37\\x05\\xc9\\x84\\xa0\\x62\\x15\\xaf\\x15\\x03\\x20\\x44\\x99\\xc8\\x66\\xa0\\x17\\x46\\x54\\x0d\\xa5\\xa1\\xf5\\xca\\xa0\\xb0\\x4c\\xc5\\x39\\xa6\\xda\\xf7\\x1b\\x56\\xc0\\x88\\x0f\\x39\\x71\\x0d\\x00\\x20\\x09\\x66\\x7a\\x20\\x06\\x1c\\x0e\\xe5\\x19\\x76\\xfa\\xa9\\x94\\x5b\\x34\\xf5\\x94\\x77\\x72\\xca\\x2b\\x42\\x26\\xe9\\xa6\\xf7\\x21\\x90\\x91\\xb7\\xd1\\x6b\\xa5\\x11\\x9f\\x4a\\x00\\xf8\\x0d\\x78\\xd2\\x72\\xc8\\x1f\\x93\\x29\\x64\\x75\\x31\\x48\\x13\\x6b\\x93\\xf0\\x58\\x28\\x92\\x12\\xee\\x09\\xe2\\x53\\x3c\\x2d\\x8a\\x51\\x7b\\xf1\\x77\\x11\\xd0\\x6e\\x69\\x41\\xe2\\x08\\x7e\\x31\\xb9\\x0a\\x07\\x8c\\x30\\x0f\\x51\\x15\\x7c\\x73\\x88\\xb1\\xd7\\x47\\x49\\xf9\\x2a\\x1d\\x05\\x21\\x0d\\x42\\x0e\\x2a\\x13\\x26\\x81\\x51\\xf2\\x23\\xb7\\xb2\\x8c\\x73\\x39\\x1c\\x50\\x02\\xb9\\xc4\\x9a\\x08\\x7f\\x08\\x4b\\x66\\x52\\x81\\x08\\xac\\xcb\\xe4\\xe7\\x5c\\x85\\xfd\\x4a\\x36\\xba\\xd4\\xf8\\x5a\\x70\\x1d\\x33\\xdd\\x34\\x6b\\x45\\xdb\\xba\\xc6\\x57\\x8d\\x19\\xfc\\xf2\\x2c\\x65\\xc6\\x8f\\x06\\x8c\\x32\\xdd\\x39\\x92\\x67\\xc5\\xd2\\x6d\\xbb\\xb4\\x33\\xd0\\x93\\x2c\\x25\\x4a\\xa3\\x33\\xc0\\x78\\xec\\xd1\\xe2\\x1a\\x48\\x62\\x09\\x12\\x86\\xe1\\x8b\\x2d\\x7b\\x6c\\x5b\\x8f\\x2f\\x01\\x0a\\x04\\x4d\\x1f\\x40\\xb5\\xa0\\xce\\x9c\\x29\\x4d\\x0e\\x19\\xcd\\xc1\\x40\\x85\\xd4\\x40\\xa0\\x29\\x88\\x54\\x5d\\xa6\\x10\\x2e\\xb8\\x16\\xdb\\x59\\x89\\x3e\\xc9\\x2b\\xc0\\xad\\xc5\\x44\\x18\\xf7\\x65\\xc5\\x68\\x91\\xd0\\xac\\xa4\\x08\\x3c\\x67\\x63\\xab\\x5f\\x74\\xd1\\xc5\\xd7\\x47\\x36\\x20\\x89\\xcd\\xd3\\x69\\xc5\\x70\\xf6\\x37\\xb5\\x27\\x2c\\xb3\\x3c\\x72\\x33\\xb6\\x68\\xf9\\xc0\\x39\\xf0\\xf0\\x6d\\x31\\x7d\\x1e\\x51\\x97\\x52\\x42\\xc4\\xa7\\x31\\xbb\\x77\\x85\\x2a\\xd7\\x44\\xed\\xd5\\xa2\\x7c\\x14\\xe2\\x2d\\x0e\\x86\\x73\\x26\\x32\\x2f\\xe1\\x70\\x58\\x22\\x6c\\x41\\x4e\\x43\\xae\\x35\\x38\\x28\\x4a\\x44\\xa7\\x76\\x8a\\x8a\\x85\\x7c\\xed\\xde\\x91\\x95\\xa5\\x7e\\x6a\\xb0\\x72\\x37\\x59\\xa5\\x00\\x32\\x1b\\x66\\xa3\\xfb\\x5c\\x5d\\x05\\x58\\x8a\\xe7\\x42\\xd3\\x98\\xa7\\x76\\x4d\\x03\\x90\\x8a\\x4e\\x77\\x36\\x46\\xa0\\x72\\x85\\x39\\x0d\\x1c\\x34\\xe8\\x4b\\x9e\\xbe\\x75\\x8a\\x86\\x86\\xeb\\x53\\xcf\\x05\\xc6\\xe4\\x1b\\x1b\\xb3\\x2c\\x86\\xaa\\xc0\\x24\\xd8\\x32\\x5f\\x8c\\x86\\x2a\\x53\\x68\\x64\\x9b\\x3e\\x02\\x1c\\x8c\\xa9\\x62\\xf6\\xc3\\x99\\x17\\xe9\\x18\\x3c\\x2e\\xeb\\xed\\x00\\xf0\\x49\\x04\\xe1\\x34\\x78\\x0d\\x18\\x8a\\x58\\x01\\xcc\\x2f\\xc1\\xb0\\x47\\x4c\\x34\\x79\\x65\\x56\\xf5\\x64\\xa8\\x25\\xc3\\x72\\x1b\\x56\\x31\\x55\\x48\\x51\\xd4\\x21\\x72\\xa1\\xcf\\x7c\\x1b\\x0b\\xcc\\x14\\xff\\x07\\x5a\\xe4\\x03\\x1d\\x42\\x61\\xa7\\x5e\\x92\\x7f\\xf8\\x61\\x5b\\x1b\\x4d\\xf4\\xae\\x29\\x7f\\x7b\\x17\\x6e\\x3e\\x2d\\xad\\x06\\x90\\x33\\xad\\x3d\\x1a\\x35\\x97\\x7d\\xc7\\x0a\\x26\\xef\\x82\\x22\\x06\\x36\\x75\\x1a\\xe5\\xc9\\xb4\\x70\\x98\\x12\\x6d\\x08\\x91\\x7a\\x2d\\x0b\\x95\\x6a\\x8e\\x2a\\xa1\\x00\\x48\\x37\\xc8\\x04\\x43\\x4d\\x05\\xa6\\x70\\x32\\xaa\\xd0\\x08\\x01\\xa0\\x36\\x1c\\x46\\x27\\x07\\x29\\x08\\x9d\\x86\\xd9\\xa5\\xd1\\x62\\xb8\\x36\\xdc\\xa8\\x80\\x41\\x96\\x82\\x1d\\x9c\\xcd\\x0b\\x27\\xee\\xbe\\x9f\\x48\\x86\\x00\\x14\\x8e\\x61\\x1f\\x88\\xb2\\xd4\\xfe\\xeb\\xf8\\x7a\\x9a\\x6b\\x7d\\xbd\\x38\\x2f\\xeb\\xf3\\xeb\\x6e\\xc8\\xcb\\x4d\\x13\\x23\\xfd\\x07\\x22\\x26\\xc7\\x96\\xec\\xf5\\x11\\x34\\x6e\\x49\\x24\\xb3\\x38\\x5e\\x1e\\x21\\x20\\x9f\\x9b\\xec\\x8a\\x7e\\x35\\xea\\x16\\xf5\\xeb\\xc6\\xe0\\xdb\\xfa\\xd2\\xe3\\xa0\\xe9\\xa0\\x21\\x8a\\x01\\x75\\xaf\\xd0\\x63\\x3d\\x59\\x6c\\x15\\xfb\\xa5\\x82\\x3c\\x47\\x63\\xab\\x12\\xa4\\x20\\xe2\\xf5\\x6a\\x41\\x51\\xbc\\x2d\\xb0\\x3d\\xd4\\x5b\\x63\\xd1\\xa8\\xbc\\x08\\xf7\\xcc\\x50\\x60\\x1b\\x48\\x0c\\x4a\\x7c\\xe0\\x9d\\x6b\\xdf\\x87\\x40\\x11\\xda\\x0e\\x2f\\xc0\\x3c\\xd9\\x25\\x3e\\x81\\x9f\\x00\\x0c\\xe9\\x1e\\xf7\\xe8\\x25\\x23\\x06\\x06\\x73\\x74\\x11\\x04\\x42\\xc1\\xc0\\x5d\\x9e\\x39\\x55\\x73\\x15\\x65\\x5a\\xbf\\xc9\\x59\\xc0\\x6d\\x5e\\x47\\x2c\\x4c\\x7a\\xb2\\x5a\\xc8\\x20\\x88\\x59\\x5d\\x96\\x5d\\x51\\x0a\\x98\\x9d\\xd5\\xce\\x68\\x88\\x33\\x73\\x04\\x5b\\xdf\\x2f\\xd0\\x5c\\x5f\\x18\\xeb\\xb1\\x01\\xa3\\x3f\\xde\\xef\\x40\\x6f\\x30\\xab\\x07\\xed\\xee\\xa2\\x57\\x98\\x8a\\xdf\\x6e\\x8c\\x2a\\x56\\x78\\xc0\\x0b\\x5b\\xc1\\x21\\x85\\xf1\\x4a\\xc2\\xb7\\x23\\x56\\xd5\\x12\\x34\\xa4\\x98\\xe5\\x66\\x05\\xeb\\x10\\x2e\\xf3\\xdd\\x9f\\x81\\x3b\\x07\\x17\\x40\\x1f\\xc0\\x97\\xed\\x43\\x5a\\x2c\\x7d\\xce\\x31\\x10\\xda\\x28\\x79\\x04\\x25\\x77\\x85\\xbd\\x0f\\x29\\xc3\\x1d\\x7b\\x11\\xad\\x9b\\x43\\xcc\\x12\\x74\\x2e\\x55\\xd7\\xe9\\xc4\\x6d\\xdc\\xce\\x1e\\x09\\x18\\xa9\\xf5\\xd2\\xa8\\x71\\xd0\\xef\\xdd\\x2e\\x5e\\x8c\\xd5\\xa4\\xae\\x68\\xea\\xbc\\xb1\\x44\\xef\\x99\\x10\\x69\\x8d\\xdb\\x75\\xca\\x45\\xe1\\x8f\\x40\\xdb\\x61\\x06\\xc6\\x43\\x85\\x3c\\xe1\\x71\\x6b\\x64\\x38\\x48\\x3f\\x1e\\xb3\\x77\\x0d\\xad\\x9a\\x57\\xa6\\x00\\xc2\\xb0\\x1c\\x51\\x0c\\x08\\x82\\x77\\x70\\xdf\\x10\\x49\\x3e\\xbd\\x71\\x05\\xb6\\x38\\x27\\xbe\\x60\\x86\\xb4\\x1f\\x5d\\x5b\\x34\\xc2\\xc5\\xe6\\xd6\\x3c\\x04\\xd1\\xf5\\x4c\\x34\\xd1\\x7c\\x94\\x72\\xb9\\x5e\\x37\\xb1\\x05\\xd5\\x12\\xa9\\x44\\x39\\x1c\\xe4\\xea\\x4f\\xa2\\x10\\xc3\\x32\\x15\\xef\\x7f\\x1e\\x29\\xc5\\x1a\\x81\\x15\\x0f\\x14\\xe0\\x8c\\x59\\xc3\\x16\\x4a\\x49\\x29\\x63\\xaa\\x50\\x22\\x2c\\x71\\x97\\x86\\x5c\\x58\\xf3\\x58\\xc1\\x2e\\xc3\\x18\\xb1\\x20\\x6a\\x14\\x50\\xcd\\xd7\\x2a\\x04\\x13\\xff\\xaf\\xeb\\x5a\\xc9\\x22\\xcc\\x8d\\xde\\x00\\xe7\\x41\\x7b\\x25\\xdc\\x94\\x70\\xd3\\x15\\x1c\\xc3\\x03\\x84\\x6c\\x74\\xe3\\xd2\\xcb\\x30\\xe2\\xb2\\xc1\\x78\\xc2\\x84\\x5d\\xe3\\x89\\xf0\\x8e\\x78\\xe3\\xef\\x8b\\x94\\x92\\xdc\\x13\\xe8\\x32\\x16\\x64\\x56\\x93\\xa0\\x93\\xc1\\xaa\\x02\\x69\\xf4\\x48\\x38\\x66\\xfb\\xcd\\xbc\\x1c\\x93\\xcd\\xd8\\x22\\x09\\x6d\\x04\\x28\\x3d\\x83\\x3e\\x00\\x17\\x59\\x58\\xa2\\x4c\\x9f\\x4f\\xd4\\x95\\xd3\\xbb\\x88\\x4b\\xcd\\x84\\x3e\\x61\\x01\\xc3\\x6c\\x79\\x49\\x49\\xe7\\x35\\x88\\xc7\\xe4\\x43\\xcc\\xc0\\xe2\\xc1\\x3a\\x42\\xe3\\xaf\\x36\\xf1\\x94\\x4c\\xba\\xf8\\xa2\\x06\\x8a\\x1f\\x6f\\xf4\\x2a\\xdb\\xa8\\x87\\x95\\xcd\\xef\\x32\\x3a\\x77\\x25\\x88\\x77\\x00\\xa0\\x0f\\x94\\xb0\\xba\\xe9\\xf3\\x1b\\xfc\\xca\\x84\\x95\\x9a\\x21\\x65\\x5f\\x78\\x14\\x34\\x64\\x8a\\x35\\x42\\x09\\xca\\x08\\x10\\x0d\\xf9\\x0e\\xde\\xfd\\x49\\xd0\\x07\\x22\\xd1\\x0b\\x37\\x0d\\x99\\x47\\x8f\\xf2\\xf5\\xab\\x3d\\x58\\x2b\\x67\\x67\\x18\\x10\\xa5\\xa2\\xb0\\x36\\xea\\xc0\\x6f\\x81\\xda\\x7e\\x01\\x5a\\xf2\\x0a\\x92\\xa6\\x52\\x0c\\x5f\\x90\\xcf\\x89\\xf5\\xb5\\xab\\x93\\x67\\x24\\xa9\\x84\\xc9\\xf6\\x12\\x23\\x04\\x1c\\xaa\\x8f\\xe7\\x13\\x81\\x61\\x52\\xe3\\x1b\\xa0\\x3e\\xb0\\x71\\x9a\\x77\\x3a\\xde\\x08\\x7f\\x87\\x85\\xa3\\xa9\\xb0\\x0a\\xe9\\x99\\x02\\xf4\\x44\\x19\\x86\\x04\\x3e\\x71\\xdd\\xec\\x7d\\x61\\x81\\x03\\xbe\\x46\\x17\\x25\\x8e\\xca\\x33\\x75\\x18\\x90\\xaf\\x43\\xaf\\xc9\\xa2\\x99\\xa4\\xa0\\xdb\\x3a\\x16\\xa8\\xce\\x49\\x63\\x95\\x59\\x7a\\x7e\\x4f\\x43\\x13\\xb7\\x63\\xc5\\x52\\xfa\\xe3\\x9e\\x18\\x58\\x18\\x04\\xc8\\x86\\x4d\\x83\\x32\\xb1\\xae\\xc8\\xed\\x74\\x4d\\xaf\\xac\\x00\\x35\\x88\\x61\\x60\\x48\\x9c\\xdc\\xbc\\x6a\\xb5\\x52\\xa6\\x18\\xc9\\xe0\\xdb\\xab\\xe9\\xa9\\xf5\\xd6\\x11\\xf7\\x48\\x4c\\x4b\\x3f\\x71\\xe3\\x21\\xac\\xc5\\xd0\\x40\\x4b\\x50\\x49\\xc4\\x80\\x8f\\x14\\x65\\x07\\x51\\xf8\\x2e\\xa7\\xc8\\x04\\x9f\\x9e\\xc1\\xc0\\x14\\x2a\\xba\\x66\\xb6\\x04\\xfe\\xde\\xc0\\xf8\\x9e\\x3d\\x22\\x6d\\xe9\\x31\\x94\\xf0\\x0f\\x61\\x79\\xe1\\xa8\\x88\\xd6\\xea\\x1d\\xaa\\x91\\xc8\\x9d\\x3a\\x87\\xe3\\x06\\xc8\\x2c\\xed\\x5f\\x1c\\x81\\x6c\\xc3\\x03\\xde\\xa4\\x78\\xe0\\x10\\x27\\x57\\x9d\\x09\\x60\\x3c\\x2b\\x46\\x57\\x04\\x93\\x1e\\x1b\\xc5\\x1f\\x26\\x04\\x20\\x39\\x11\\x66\\x0a\\x57\\x7a\\x6e\\xc3\\x32\\x89\\x72\\x3e\\x2b\\x66\\xbc\\xa8\\xf8\\x15\\x9e\\x26\\x91\\xa5\\x27\\xb2\\xda\\x45\\x35\\xd9\\xc0\\x57\\x1e\\x99\\xce\\x7c\\x8e\\xf5\\xfc\\x2a\\x7b\\x84\\x6f\\x1b\\xb6\\xb9\\x01\\x49\\x7d\\x29\\xe8\\x30\\x5b\\x31\\x9d\\x58\\x0e\\xe3\\x6b\\x75\\xe9\\x03\\x9d\\x4d\\xb6\\x17\\x1e\\xa9\\x8a\\x56\\xb2\\x7d\\x18\\xce\\xa9\\xff\\xb8\\xa5\\xe9\\xda\\x1a\\xf4\\xb7\\xc3\\xdb\\xf9\\x41\\x94\\xdf\\xa1\\x9d\\x42\\xa3\\x5a\\xd3\\x76\\x26\\xbd\\xcd\\x80\\x16\\x85\\x20\\x69\\x48\\x81\\x97\\x70\\xed\\x09\\x99\\x79\\x8e\\x2a\\xd8\\x73\\xcd\\x11\\x40\\x37\\xc4\\xd1\\xcc\\xd3\\xd6\\xfd\\x49\\x0a\\xd6\\x8e\\x10\\xd3\\x3e\\xa2\\x49\\x0c\\xc9\\xc2\\x8d\\xa7\\x63\\x0a\\x58\\xc7\\xf8\\x96\\x96\\x3d\\xc9\\x48\\x03\\x0f\\x59\\x70\\x83\\x3d\\xb7\\x8c\\x0e\\x58\\xac\\x8e\\x5a\\x2e\\xf7\\x4a\\xb1\\xd4\\xd1\\xbc\\x8a\\xe0\\x71\\xe3\\x41\\x03\\x03\\x0a\\x28\\x21\\x18\\x84\\x07\\xeb\\xd0\\x9c\\xe9\\xb7\\x0c\\x67\\x26\\xa7\\xf6\\x7d\\x08\\x0e\\x32\\xe8\\x23\\x31\\x26\\x32\\x41\\x90\\x43\\xa1\\x51\\x64\\x56\\x19\\x05\\x89\\x31\\xa5\\xd9\\xc6\\x40\\x2f\\xfb\\xa0\\xe4\\x1c\\xcc\\xe9\\x92\\x00\\x54\\x25\\xa2\\x8a\\xef\\x73\\x6b\\x7a\\x02\\xac\\x2c\\xfa\\x0a\\x84\\x11\\xb9\\xb2\\xa7\\x9f\\xa2\\x4c\\x45\\x6f\\x94\\x23\\x8e\\x1c\\xb0\\x0b\\x50\\x54\\xa4\\x39\\x3c\\x89\\xcf\\x7a\\xd3\\xa5\\x13\\xc6\\x1f\\x78\\x18\\xa6\\xdb\\xa3\\xb2\\x20\\x4e\\xe5\\x44\\x38\\xc2\\xb2\\x20\\x75\\x36\\xc5\\x1e\\xfb\\x04\\x53\\x18\\x76\\x9e\\x86\\x9b\\x7c\\xbb\\x87\\xbc\\x04\\x4a\\x04\\x6d\\x70\\x79\\x59\\x7c\\x36\\xc8\\x1f\\x78\\x04\\xc4\\x2d\\x1d\\x98\\xa3\\xd4\\x11\\xc7\\xee\\xcd\\x07\\x5f\\x47\\x23\\x79\\xce\\xe2\\x63\\x4f\\xd8\\x28\\xa0\\x8e\\x81\\x8e\\xf1\\xee\\xc7\\xcf\\x42\\x75\\x8d\\x8e\\x32\\xf3\\x62\\xcb\\x9c\\xc4\\xa1\\x98\\xc0\\x15\\x84\\xfe\\x45\\xb3\\x76\\xd8\\x14\\x09\\x05\\xad\\x62\\xf5\\x36\\xa7\\x78\\x43\\x56\\x9d\\xad\\x73\\x02\\x32\\x40\\x19\\xa7\\x88\\x18\\x74\\xd8\\xe0\\x5b\\x9d\\xf4\\x23\\x4c\\xe0\\x45\\x46\\xce\\x30\\x7f\\x2d\\xdc\\x11\\xd3\\xb4\\x43\\x4d\\x16\\xb5\\x3a\\xb5\\xe5\\x03\\x56\\xc1\\xc4\\x89\\xba\\x91\\x7a\\xa0\\x78\\xc1\\xe1\\x31\\x2b\\xe8\\xe1\\xed\\x11\\x8d\\xb9\\x00\\x2d\\xc2\\x0c\\xc6\\x40\\x78\\x2c\\xf7\\x77\\x48\\x90\\xc7\\x88\\x9c\\x1c\\x05\\x97\\xe6\\x3d\\x4a\\x90\\x25\\x33\\x28\\x8d\\x8d\\x3d\\x2c\\x78\\x28\\x11\\xcc\\x92\\x39\\x5d\\x03\\xd1\\xfc\\xbf\\x90\\x07\\x43\\x30\\xa8\\x2a\\x65\\x9c\\x82\\x96\\xa3\\xe7\\x1a\\xa8\\xd5\\x86\\x2e\\xc1\\x6a\\x91\\x18\\x42\\x1e\\xc3\\xaf\\x54\\x08\\x44\\x08\\x27\\xb5\\xf4\\x70\\x86\\x8c\\xae\\xe2\\x26\\xfb\\x4b\\xab\\xab\\x82\\x9f\\x11\\x0c\\x1d\\xa4\\xac\\xbb\\x42\\x61\\x58\\x81\\x17\\xc2\\xf6\\x10\\xc5\\x02\\x02\\xfe\\xd5\\x73\\x8e\\xd9\\x20\\x35\\x28\\xf1\\xa7\\x43\\x86\\x6c\\xa9\\xbb\\xc1\\x11\\x98\\x9c\\x81\\xa2\\x56\\x4b\\x13\\x90\\x24\\x11\\xf0\\x72\\x6b\\x68\\x73\\x70\\x27\\xcb\\xd1\\x01\\x97\\x8e\\x41\\xf6\\x8f\\x58\\x1c\\xb9\\x62\\xa0\\xe1\\x90\\x54\\xeb\\x6e\\xfc\\x20\\x40\\x74\\x84\\x6a\\x68\\x78\\x69\\x5b\\x6e\\x7d\\x11\\x26\\x48\\x85\\x59\\x88\\x42\\xcf\\xf6\\x1c\\xc8\\x4a\\xb1\\xd4\\x4c\\x96\\x8a\\xc3\\xcf\\x6d\\x07\\xb1\\x86\\x2c\\x56\\x47\\x39\\x71\\x11\\xf9\\x04\\x1c\\xfc\\x28\\x5e\\x20\\xe9\\x0c\\x19\\xd2\\x3c\\x71\\x0a\\x44\\x0b\\x5b\\xde\\x81\\x51\\x13\\x23\\xe8\\x60\\xd8\\x52\\x71\\xf1\\x4a\\x58\\xb8\\x59\\x4a\\xa2\\x6f\\xa6\\x81\\x50\\x35\\x2b\\x0c\\x4f\\x66\\x00\\x34\\xce\\x96\\x30\\xba\\x6c\\x6f\\x85\\x40\\xe6\\x38\\xf0\\xdb\\xd8\\x32\\x7d\\x53\\x8f\\x0d\\xac\\x7e\\x30\\xf9\\x77\\x7a\\x4c\\x60\\xd0\\x88\\x4c\\x60\\x30\\xc9\\x0c\\x3b\\xd3\\x9b\\xc9\\x9c\\xb4\\xe7\\xad\\x67\\xca\\x19\\xc0\\x63\\x68\\x39\\xbe\\x94\\x99\\x02\\xa0\\x6f\\x9c\\x69\\x50\\x15\\x87\\x52\\x18\\x31\\xb6\\x66\\xa4\\xb0\\xb9\\x29\\x80\\xa3\\x39\\x3a\\x55\\xe6\\x4a\\xc8\\x14\\x97\\x39\\x21\\x92\\xc8\\x1c\\xa5\\xcc\\x94\\xb6\\x61\\x9f\\x93\\xcc\\x47\\x1e\\x80\\xe1\\x21\\x40\\x98\\xe2\\x03\\xd9\\x0a\\x8f\\x70\\x64\\x8b\\xe4\\x10\\x53\\x84\\x8a\\x9f\\x69\\xc6\\xad\\x0d\\x7c\\xfb\\x41\\x5b\\x08\\x01\\xeb\\x10\\xb9\\xa0\\x81\\x43\\x8b\\xf1\\x7c\\x51\\x58\\xf4\\xd4\\x58\\x2b\\xeb\\x10\\x52\\x33\\x48\\x25\\xba\\xed\\x03\\x98\\x4a\\x20\\xa4\\x00\\xbe\\x5e\\x10\\xa4\\x10\\xd9\\x95\\xbf\\x52\\x8c\\x14\\x57\\x07\\xec\\x78\\x09\\x7c\\x11\\x75\\x83\\x03\\x44\\xb5\\x3b\\x19\\xa7\\xf7\\x42\\xa3\\xc2\\x65\\xee\\x2c\\x24\\x21\\xf3\\x01\\x94\\xf9\\x8f\\x43\\x85\\x3c\\x0e\\x24\\x98\\x2d\\xc5\\xa8\\x97\\xb1\\x4f\\x64\\x51\\x29\\x83\\x85\\x55\\x98\\xb3\\x46\\x8f\\x89\\xf5\\x97\\xa7\\x73\\x60\\x0b\\x47\\x60\\x3f\\x21\\x74\\x85\\x17\\x47\\x43\\xc1\\xac\\x26\\x9d\\x0d\\x44\\x25\\x23\\xe3\\xf1\\x75\\x9c\\x14\\xba\\x34\\x1c\\x90\\x28\\x63\\x01\\x83\\x1c\\x2b\\x46\\xa5\\x50\\x02\\x39\\x8f\\xef\\x25\\xfc\\x65\\x45\\xff\\xe7\\x1d\\xcd\\x6f\\x29\\x72\\xe6\\x06\\xb2\\x52\\x84\\x14\\xcd\\x81\\x91\\x6b\\xd3\\xeb\\x90\\xea\\x42\\x74\\xbe\\xb4\\x3b\\xd7\\xe8\\x1e\\x00\\x09\\x1e\\x82\\xbe\\x80\\x99\\xa2\\x93\\x03\\x31\\x03\\xf2\\x05\\xc6\\x8e\\xbc\\x9d\\x03\\x68\\xfb\\x55\\x39\\x12\\x61\\xa0\\x6a\\x93\\xe0\\x09\\x6e\\x23\\x93\\x30\\xc9\\x11\\xc3\\x9a\\xfc\\x62\\x4f\\x31\\x67\\x32\\x72\\x63\\x14\\xa2\\x98\\x53\\x8d\\x2c\\x80\\xac\\xc6\\xc7\\x69\\x4e\\x86\\xd7\\x42\\x63\\x63\\xa7\\x6c\\x5d\\x40\\x14\\x4c\\x4e\\x8f\\xff\\x4c\\x31\\x69\\x79\\x74\\xd7\\xda\\xef\\x02\\x98\\xda\\x9b\\xb1\\xf8\\x09\\xf4\\x30\\xb3\\x27\\x67\\xc4\\x9b\\x4d\\xbb\\x7d\\xe9\\xf0\\xcd\\x26\\x49\\x45\\xe6\\xd7\\x70\\x2d\\x6c\\x16\\xde\\xfc\\x9a\\xf3\\x73\\x8e\\xc1\\x39\\x69\\x6f\\x29\\xa0\\x58\\x49\\x0e\\xcf\\x8d\\xc6\\xb0\\xa4\\x7c\\x9f\\x79\\x6b\\x2a\\x0a\\xd2\\xb1\\x2d\\xdb\\x06\\x81\\x84\\x1d\\xff\\x65\\xcb\\x3a\\x0a\\xa7\\xea\\x5a\\x30\\xf6\\x2d\\x5f\\xf3\\xcd\\xc9\\xeb\\x42\\xc8\\x53\\xc4\\x0a\\xb1\\x65\\xcd\\x83\\xb2\\x4f\\xe4\\xd0\\x41\\x95\\x43\\x8e\\x0f\\x64\\xef\\xdd\\x42\\x67\\xbe\\x85\\x1e\\x85\\xb9\\x04\\x10\\xa2\\x18\\x0c\\x38\\xa7\\xf0\\xda\\x18\\x82\\x15\\xe4\\x28\\x29\\x43\\x48\\x39\\xe2\\x9e\\x4f\\xc5\\x81\\x8e\\x53\\x8c\\xd0\\xb9\\x8f\\x40\\xc6\\x8e\\x17\\x84\\xb2\\x1c\\x05\\x3d\\x1c\\x43\\x92\\x8f\\x92\\x17\\xa0\\xb0\\xb4\\x9a\\x5c\\x96\\x52\\x74\\x81\\x00\\xb7\\x20\\x78\\xed\\x68\\xfa\\x72\\x19\\x46\\xd2\\x0f\\x66\\xa9\\x2d\\xa3\\xef\\xa4\\x58\\x99\\x5a\\xb2\\x2f\\x22\\x3d\\x76\\x7c\\x6a\\x72\\x90\\xd0\\x6a\\xf0\\xdd\\x15\\x97\\xa8\\x40\\x6d\\x3f\\x64\\x82\\xe3\\x87\\x1e\\xac\\x01\\x45\\x03\\x82\\x2b\\x83\\x38\\x39\\xd1\\xfb\\x9b\\x83\\xf8\\x65\\x0f\\x0b\\xaf\\xe9\\xbe\\xc0\\x61\\xd5\\xb6\\x4b\\x50\\xb7\\xdd\\x78\\x50\\x1c\\x60\\x62\\xd0\\x16\\xa2\\xc1\\x16\\x8f\\x9e\\x0e\\x02\\x69\\x65\\x64\\x4b\\x2c\\x07\\x77\\x10\\x41\\x0d\\xd9\\x5b\\x5a\\x40\\xab\\x91\\x65\\x43\\x9f\\xe8\\xa2\\xe9\\xfc\\x1d\\x21\\x80\\xcd\\x05\\xe9\\x0c\\xb4\\xa9\\x19\\xf7\\x4d\\x08\\xe8\\x6c\\x4c\\xd7\\x84\\xa9\\xc7\\xc6\\xb6\\x93\\x42\\x19\\xc7\\xba\\x64\\x94\\xe7\\x50\\x9e\\xa4\\xb4\\x9f\\x95\\x05\\x07\\x05\\x19\\x0c\\x1e\\x31\\x56\\xbb\\x18\\xad\\x87\\x5b\\x13\\xd9\\x00\\x0d\\x8d\\xfd\\x85\\x40\\xe8\\x3b\\x64\\x6a\\xdd\\x50\\xa0\\xbd\\xc5\\x56\\x46\\x01\\x0b\\x56\\x18\\x04\\x2d\\x90\\x58\\x21\\x1b\\x90\\x40\\x70\\xbf\\x7e\\xf5\\xc4\\x77\\x83\\x93\\x88\\x08\\x8c\\xcc\\xb8\\x6e\\x24\\x8c\\x88\\x6e\\x82\\x06\\x72\\x62\\x52\\xd6\\xa3\\x5b\\xa1\\xfd\\x73\\x12\\x56\\x1a\\x03\\x39\\xc9\\xc2\\x49\\xe8\\xea\\x80\\xd9\\x1c\\xd5\\x5c\\x04\\x42\\x81\\x68\\x71\\x73\\xb4\\xc2\\x71\\x07\\x32\\xba\\xd0\\x24\\x13\\x0f\\x4c\\x7a\\x0c\\x38\\x85\\x6e\\xa8\\xb6\\x2f\\x06\\x4f\\xcc\\xe4\\x87\\x54\\x2a\\x1e\\xd6\\x7c\\x8c\\xab\\x5d\\x04\\x25\\xc3\\x45\\x99\\xf6\\xac\\xe7\\xdb\\xa8\\x87\\x96\\x5e\\x17\\x15\\x40\\xf4\\xb4\\x7b\\xdb\\x32\\xca\\x8c\\x07\\x94\\xd4\\x46\\x90\\xff\\x51\\xbd\\x33\\x2e\\x36\\xc9\\xae\\x81\\x82\\xe4\\x22\\x19\\x30\\x03\\x38\\x9f\\xe1\\xc5\\x3c\\x88\\x6a\\x8a\\x85\\x7d\\x10\\xc1\\x9c\\xe5\\x72\\xed\\x8d\\xdd\\x92\\x34\\x2a\\x63\\x06\\xa1\\x86\\x7b\\x84\\x7c\\xe7\\x87\\x76\\xd9\\x77\\x0e\\x18\\x0f\\x3e\\x71\\x20\\xa2\\xe5\\x9c\\x0e\\x54\\xa7\\x1f\\xdb\\x73\\x24\\xed\\x2a\\x25\\x79\\x44\\x2e\\x28\\x82\\x67\\x5e\\x13\\x9a\\xce\\x03\\x00\\x4e\\xda\\xbc\\x2b\\xf6\\x2b\\xcd\\xd9\\xc7\\x32\\xb0\\x72\\x83\\x63\\xa1\\x7f\\x1b\\x45\\x14\\x71\\x92\\x25\\xf2\\xd8\\xac\\x06\\x99\\x2b\\xf8\\x8f\\x2b\\xc3\\xa5\\x38\\xad\\xda\\xdf\\x55\\x02\\xb6\\x4f\\x4b\\x21\\x53\\x1c\\x2d\\xe1\\xf3\\xdd\\xc6\\xe6\\xf7\\x0d\\xf2\\x4a\\xee\\xeb\\x94\\x60\\xd7\\x47\\x60\\x23\\xa5\\x70\\x34\\xf1\\x2c\\x3c\\xfc\\xe6\\x63\\x98\\xf5\\x1a\\x1d\\x1c\\x61\\xb8\\xb7\\x3a\\x01\\xb3\\x92\\x41\\xce\\x7c\\x96\\xc0\\x3a\\x3b\\xfd\\x0b\\x36\\x14\\x3c\\x53\\x71\\x98\\xbc\\x83\\x14\\x40\\xd5\\x36\\x27\\x67\\x9f\\x37\\x7f\\xb5\\xd3\\xaf\\x3d\\xd1\\x61\\x26\\x80\\x0e\\x70\\xe6\\x0b\\xd1\\x90\\x65\\x4b\\x76\\x41\\x86\\x0e\\x52\\xfe\\x03\\x29\\x61\\xa4\\x41\\x1c\\x22\\x36\\xc8\\xcf\\x1e\\x2e\\x2a\\x0c\\x1f\\x11\\x72\\xf1\\x05\\xe8\\xe3\\xf8\\x55\\x67\\x7a\\xf5\\xca\\x24\\x53\\x95\\x67\\x00\\x57\\x4b\\x52\\x0a\\x35\\xeb\\xbd\\x69\\xfd\\xa7\\x3f\\xd0\\xb2\\x8e\\x30\\xea\\x5e\\x07\\x52\\x6a\\xe0\\x2d\\x64\\x4f\\x6d\\x05\\xa8\\x56\\x1c\\x82\\x70\\x4b\\x85\\xf8\\xa0\\x61\\x39\\x8e\\x7d\\x43\\x6f\\xc3\\xa4\\x18\\xe3\\x22\\x91\\x4d\\x84\\x90\\x71\\xe6\\x08\\x5c\\x18\\x41\\x6a\\x88\\x8c\\x0a\\xe7\\xc3\\x24\\xad\\xec\\x53\\x30\\x25\\x28\\xd1\\x02\\xc5\\x48\\xab\\x70\\x8c\\x18\\x11\\xb6\\x9d\\xe0\\x04\\xf6\\xd2\\x69\\xc2\\xb4\\x1c\\xa0\\x10\\x42\\x45\\xed\\x61\\x61\\xd7\\x21\\x37\\xc3\\x01\\x42\\x59\\x45\\x6a\\xd1\\x58\\x77\\xde\\xe0\\xe7\\xbc\\xaa\\xe1\\x59\\x88\\x34\\x09\\x5e\\xc1\\x56\\xc9\\xdc\\x5d\\x94\\xca\\x07\\xd1\\xd3\\x7c\\x70\\xbd\\x0a\\xdc\\xea\\xa5\\xde\\xfb\\xa2\\x18\\x1d\\x71\\x4f\\x4a\\x3d\\xb0\\x08\\x73\\x9f\\xb0\\x56\\xb9\\x32\\x30\\xef\\x06\\x7c\\x52\\x8e\\xc7\\x16\\x88\\x05\\xb2\\x06\\x05\\x54\\xc3\\x46\\xdc\\xc8\\x28\\xc6\\x62\\x68\\xa3\\x5a\\xcf\\x85\\x5c\\x5f\\xb0\\x8b\\x5e\\x7d\\xde\\xe1\\x0a\\x8c\\x46\\x02\\x28\\x66\\x07\\x88\\xf2\\x7a\\x59\\xd7\\x8f\\x17\\xfe\\xa6\\x41\\x8b\\x4d\\x0a\\x1c\\x0d\\x1e\\x9e\\x8a\\xb6\\x42\\x2d\\x3e\\x21\\xa7\\x52\\xc4\\xf8\\xa1\\x47\\x19\\x42\\x14\\x72\\x0b\\x8b\\xa0\\x61\\xbb\\x2e\\x51\\x5f\\x1b\\x10\\x36\\xc7\\xeb\\xd8\\x56\\xfb\\x3c\\x37\\xd1\\xa0\\xb8\\x15\\xac\\x1e\\xaa\\xe1\\xb3\\x98\\x06\\x89\\x81\\x3a\\xe9\\xb2\\xfd\\x08\\xb2\\x7a\\xca\\xd6\\x51\\x88\\x43\\x48\\x18\\x77\\xbc\\x43\\xb6\\x0b\\x8a\\x21\\x16\\xe0\\xf9\\xf5\\x03\\xbf\\x60\\xae\\xc2\\x2b\\x16\\xf0\\x6e\\xc1\\x1a\\x94\\x8c\\x99\\xc1\\x0b\\x1b\\xb3\\x1c\\xce\\x50\\x0d\\x00\\xdf\\xfa\\x58\\x18\\x38\\x8b\\x3c\\xfa\\x9b\\xbe\\xcf\\xa0\\xbb\\x96\\x98\\x9b\\x5e\\x3c\\xd0\\x5d\\x4a\\xec\\x65\\xae\\x23\\x4a\\xf1\\x9f\\x05\\x0a\\xf3\\x26\\x27\\x08\\x56\\x4d\\x4c\\xe6\\x00\\xab\\xe0\\x99\\x38\\xfa\\x35\\xd4\\xd4\\xca\\xd8\\x06\\x2b\\x34\\xba\\xe8\\x2b\\x08\\x2c\\x0f\\x98\\x59\\xee\\x67\\x33\\xc9\\xe8\\x89\\xf7\\x1c\\xe7\\x42\\x53\\xcf\\xf9\\x4e\\x6f\\x13\\x34\\x3a\\x46\\x42\\x12\\xd1\\x9c\\xd8\\xcf\\xcf\\xd7\\xc4\\x78\\x50\\x2a\\x3b\\xc3\\x00\\xd4\\xa2\\x04\\x18\\x50\\x08\\x00\\x32\\xdb\\x05\\xd0\\xa7\\xc4\\x58\\xd1\\x4a\\xe3\\xdb\\x14\\xb3\\x44\\x39\\x4e\\xc1\\xb8\\x25\\xff\\x8a\\x58\\xd3\\x14\\xc4\\x12\\x9c\\xcb\\xe4\\xe3\\x24\\x27\\xb0\\xf4\\x26\\x71\\x58\\xb8\\x92\\xba\\xa1\\x90\\x69\\x1c\\x4e\\x93\\x45\\xf8\\x9f\\x46\\x1c\\xa8\\x4a\\xf0\\xfc\\xa2\\xbb\\x56\\x3f\\xd4\\x09\\x00\\xc6\\x10\\x40\\x8d\\x61\\xe1\\x7e\\xf2\\x4e\\x65\\x81\\x10\\xc6\\xca\\x47\\x82\\xf9\\x4f\\x00\\x38\\x0f\\xd3\\x40\\x1c\\x22\\x6a\\x4c\\x63\\xef\\x52\\x44\\x64\\x60\\x05\\xb6\\x08\\x98\\x11\\x02\\x4b\\x64\\x11\\xb0\\x63\\x99\\xba\\xc9\\xe3\\xc9\\x03\\xe7\\x08\\x81\\x1d\\x3a\\x39\\x19\\x1d\\x1e\\x2a\\x80\\x11\\x99\\x4d\\xb4\\x62\\x58\\xfe\\x80\\x65\\x28\\xd9\\x7c\\xa2\\xa1\\x52\\x08\\x67\\xd0\\xa9\\x84\\x10\\x84\\xc1\\x41\\xed\\x98\\x83\\x43\\x7a\\xdc\\x19\\xa3\\xd0\\xca\\x04\\xc9\\xbd\\x0d\\x2c\\x0e\\x71\\x17\\xef\\x35\\x35\\xcf\\x9d\\x0a\\xd4\\x8f\\xe8\\x9d\\x8a\\x01\\x00\\x00\\xff\\xff\\x92\\xd4\\xfb\\x24\\xa8\\xe1\\x00\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_eot() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_eot,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.eot\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_svg = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xec\\xbd\\x79\\x93\\x64\\xc9\\x71\\x1f\\xf8\\x7f\\x7d\\x8a\\xd0\\x68\\x57\\xb6\\x57\\x72\\xc2\\x6f\\x0f\\x91\\x43\\x2d\\x44\\x40\\x4c\\x48\\xaf\\x08\\x3e\\x31\\x90\\x92\\x6a\\xcf\\xc6\\x4c\\x63\\xd0\\x62\\x4f\\xf7\\xb0\\x7b\\x06\\x87\\xf6\\xf8\\xec\\x6b\\xfe\\x8b\\x97\\x03\\x54\\xa1\\xb2\\x86\\x6b\\x58\\x1a\\x97\\x34\\x5a\\x5b\\xdb\\x8b\\xca\\x77\\xc5\\x8b\\x08\\x77\\xff\\xb9\\x87\\x1f\\x7f\\xf2\\xaf\\x7e\\xfd\\xd5\\xdb\\xf6\\xcb\\xd7\\x1f\\x3e\\xbe\\x79\\xff\\xee\\xb3\\x4f\\xe8\\x8f\\xfa\\x27\\xed\\xe3\\x37\\xaf\\xde\\x7d\\xf1\\xea\\xed\\xfb\\x77\\xaf\\x3f\\xfb\\xe4\\xdd\\xfb\\x4f\\xfe\\xd5\\x9f\\xde\\xfd\\xc9\\x3f\\xfb\\xe1\\x4f\\xfe\\x6c\\xfe\\xa7\\xbf\\xfc\\x51\\xfb\\xf8\\xcb\\x2f\\xdb\\x5f\\xfe\\xf4\\x5f\\x6f\\x3f\\xfe\\xb3\\xf6\\xc9\\xe9\\xd3\\x4f\\xff\\x83\\xfc\\xd9\\xa7\\x9f\\xfe\\x70\\xfe\\xb0\\xfd\\xd5\\xe5\\xcf\\x1b\\xfd\\x11\\x7d\\xfa\\xe9\\x8f\\xfe\\xe2\\x93\\xf6\\xc9\\x2f\\xbe\\xf9\\xe6\\xeb\\x7f\\xf9\\xe9\\xa7\\xbf\\xfa\\xd5\\xaf\\xfe\\xe8\\x57\\xf2\\x47\\xef\\x3f\\x7c\\xf9\\xe9\\x9f\\x7f\\x78\\xf5\\xf5\\x2f\\xde\\x7c\\xfe\\xf1\\xd3\\xbf\\xba\\xfc\\xf9\\xa7\\x75\\xe1\\x0f\\xe7\\x0f\\x3f\\xfd\\xf8\\xcb\\x2f\\x89\\xfe\\xe8\\x8b\\x6f\\xbe\\xf8\\xe4\\x4f\\xef\\xfe\\xa4\\x9e\\xfc\\xeb\\xaf\\xde\\xbe\\xfb\\xf8\\xd9\\x33\\xb7\\x73\\xef\\xbd\\x2e\\xaf\\x0b\\xbf\\x78\\xfd\\xf3\\x8f\\xed\\x4f\\xef\\xfe\\xe4\\xe7\\xef\\xdf\\x7d\\xd3\\xde\\x7c\\xf1\\xd9\\x27\\xff\\xfe\\xfd\\xcf\\xde\\x7f\\xf3\\xfe\\xfe\\xfd\\xbb\\xf7\\x9f\\xb4\\x5f\\xbc\\xff\\xf0\\xe6\\xbf\\x9c\\x5e\\x7d\\xf1\\xcb\\xd3\\xaf\\x3f\\xfb\\x84\\x58\\xe8\\x93\\xf6\\xa7\\xb8\\xf2\\xf4\\xf3\\x57\\x9f\\xbf\\xbe\\x6b\\xad\\xb5\\xe3\\xaf\\xaf\\xde\\xbc\\xfd\\xcd\\xf5\\xde\\x56\\x37\\xb7\\xfb\\xd7\\x5f\\xbc\\xf9\\xf6\\xab\\x4f\\x70\\xd1\\xb7\\xef\\xde\\x7c\\xf3\\xf1\\xf4\\xf5\\xeb\\x0f\\xa7\\xd7\\x5f\\x7d\\xf6\\x09\\x77\\xcd\\xf5\\xfb\\xd7\\xaf\\xde\\xbd\\xff\\xf8\\xfa\\x44\\x9f\\x7d\\xd2\\xdb\\xef\\xfd\\x5b\\x97\\xbc\\xfa\\xf8\\xf9\\xeb\\x77\\xdf\\x7c\\xf6\\x09\\x93\\xfa\\xfa\\xe5\\x8b\\xd7\\xc7\\x4f\\x27\\x33\\x3b\\x2e\\x7a\\xfb\\xf5\\x2f\\x5e\\xfd\\xec\\xf5\\x37\\x6f\\x3e\\xff\\xec\\x93\\xfe\\x49\\xfb\\xf4\\x4f\\xef\\xfe\\xe4\\xcb\\xb7\\xbf\\xf9\\xfa\\x17\\xf5\\xe2\\xcf\\xdf\\x7f\\xf1\\xfa\\xb3\\x4f\\xda\\x27\\x0d\\xbf\\x9c\\xde\\xbd\\xfa\\xea\\xf5\\x67\\x9f\\x7c\\xfc\\xfa\\xd5\\xe7\\xaf\\x7f\\xef\\xfb\\x78\\x3c\\x7b\\xef\\x3f\\x7b\\x7c\\xef\\xeb\\x5f\\x7f\\xfe\\xf6\\xd5\\x57\\xcf\\xde\\xfc\\xc5\\x67\\x9f\\xdc\\x07\\x79\\xd3\\x21\\x67\\x1d\\x7d\\xd3\\xe4\\x46\\x6a\\x7e\\x0e\\xd6\\xed\\x38\\xf1\\x70\\xaf\\x2e\\x8d\\x68\\xec\\x38\\x46\\x34\\x1d\\xa3\\x31\\xd9\\xf4\\xae\\x8d\\x4d\\x77\\x0f\\xae\\x63\\x8b\\x5e\\xbf\\xfb\\x0c\\x75\\x5c\\x5f\\x47\\xe7\\xf5\\xf3\\xba\\xfa\\x44\\xb2\\x9b\\x78\\x1d\\x9b\\xf5\\xde\\x58\\xe7\\xf1\\xf0\\x87\\x67\\xbf\\xe4\\x5f\\xfc\\xcd\\xb7\\xef\\xbf\\xf9\\xe3\\xc7\\x9f\\x53\\x3f\\xbd\\xfe\\xe2\\x67\\x6f\\x6f\\x7e\\x90\\x0e\\x6b\\xa4\\x3c\\x36\\x8d\\xde\\xa8\\x4b\\x3f\\x0b\\xf1\\x85\\x4c\\xfc\\xac\\xc3\\x2e\\x75\\xea\\xe1\\x3e\\xd3\\xd7\\x45\\xe9\\xb4\\x2e\\x8a\\x2e\\xeb\\xa2\\x4c\\x5f\\x17\\x3d\\xdb\\xa5\\x7f\\xfe\\xb8\\x37\\xef\\xbe\\xfd\\xea\\x67\\x45\\x3e\\x5f\\xbe\\xbb\\xd9\\x1f\\x0f\\x6b\\x4a\\xfd\\xac\\x9a\\x9b\\x04\\xb7\\x7e\\xe6\\xee\\x1b\\xa7\\xe0\\x57\\xa3\\x8b\\x79\\x54\\x17\\x37\\x09\\x6a\\x99\\x74\\x26\\xf6\\x0b\\x75\\xed\\x67\\xed\\xb4\\x69\\x8c\\x35\\x25\\xae\\xba\\x99\\x7b\\xc3\\x99\\x18\\xb2\\x65\\xd0\\x3a\\x43\\x5d\\x72\\x1b\\xde\\xd7\\x29\\x22\\x8f\\x4b\\x3d\\x66\\x48\\xc7\\x35\\xf5\\x78\\xea\\x83\\x2e\\xf5\\xba\\x54\\xde\\xc2\\xad\\xf5\\xb3\\x8d\\xb1\\x1d\\x5d\\x7b\\xb8\\xd7\\x48\\x5c\\x17\\xdd\\xb6\\x70\\xb9\\xab\\xfb\\x4d\\x7c\\x3b\\x7e\\x7f\\x7e\\x28\\xfe\\xab\\xc7\\x43\\xf1\\xc5\\xfb\\xb7\\x6f\\x5f\\x7d\\xb8\\x39\\x0c\\x19\\xa3\\x49\\xf6\\xbd\\x8e\\xca\\xdc\\xd2\\xbd\\xa9\\xc5\\x4c\\xe6\\x66\\x4c\\x33\\x54\\x9b\\x85\\x4f\\xe7\\x68\\xce\\xb6\\x1b\\x8f\\xe6\\x16\\x4d\\xad\\x37\\x1f\\x3e\\x85\\xac\\x45\\xe6\\x64\\x1e\\x6d\\x50\\x9f\\x34\\x46\\xa3\\x1e\\xb2\\xa3\\x41\\x16\\x8d\\xd9\\x1b\\x31\\xfb\\x94\\xce\\x8d\\x44\\x63\\xd6\\x7b\\x48\\x85\\xa6\\x65\\x6f\\xa4\\x21\\x17\\xf2\\x41\\xe7\\xd0\\x7e\\x21\\x0d\\xda\\x93\\xa3\\x86\\x70\\xb4\\x5c\\x6b\\x46\\x26\\x75\\xaa\\x7b\\x39\\x26\\xf5\\xb4\\x3b\\xa2\\x8c\\x49\\x44\\xb5\\x46\\xba\\x9d\\x33\\x78\\xcf\\xe0\\x46\\xdd\\xb3\\xa5\\x45\\x23\\xa2\\x9c\\x49\\xda\\x88\\xbb\\xae\\x85\\xcf\\x36\\xa6\\x9b\\x34\\xe2\\xc8\\xdd\\x46\\xa0\\xd1\\xac\\x2e\\x66\\x97\\xa9\\xa3\\x57\\x27\\x79\\xaa\\x51\\x75\\x3b\\xa7\\x4a\\xd6\\x87\\xd8\\xbe\\x1a\\xc2\\xf8\\xe4\\x31\\x72\\xea\\x90\\x36\\xc4\\xa6\\x05\\xd7\\xc2\\x98\\x3e\\xb4\\xa5\\xf4\\x3d\\x86\\xb4\\x18\\xde\\x6a\\x76\\xc3\\xaa\\xab\\xdd\\x9a\\xbb\\x55\\x9f\\x47\\x33\\x95\\xea\\x72\\x36\\x49\\xde\\xd1\\xe0\\xa1\\x8d\\xfa\\xe8\\x8d\\xb9\\xae\\xa1\\x5a\\x29\\x36\\x33\\xb5\\x08\\x30\\x68\\xb4\\x13\\xf9\\xe5\\xc4\\xb5\\x1a\\xbd\\x5f\\x4e\\x14\\xbb\\xc6\\xb8\\x3b\\x8d\\xa6\\x45\\xe1\\x7d\\x72\\x80\\x46\\x26\\x45\\x36\\x56\\x9a\\xa4\\xd2\\x54\\xf9\\x5c\\x2f\\x90\\xe4\\x26\\xae\\xb8\\x54\\x48\\x40\\xcf\\x2c\\x3c\\x4d\\xb5\\x51\\x8e\\xe9\\x62\\x8d\\xc2\\xf7\\xa8\\x21\\x09\\x6f\\x49\\xde\\x58\\x68\\x1e\\xcb\\xe1\\xf9\\x95\\xf5\\x5f\\x3f\\x5e\\x59\\x5f\\xbf\\xfe\\x50\\x1c\\xf4\\xe6\\xd2\\x92\\x5a\\x00\\xc3\\xf7\\x3a\\x16\\x23\\x32\\x6f\\x24\\xbd\\x3e\\x75\\x34\\x92\\xa1\\x93\\x46\\x51\\xbb\\xe9\\x14\\xaa\\x09\\x8f\\xd8\\x05\\xf4\\x5f\\xcc\\xac\\x06\\x5d\\xcd\\xa6\\xb1\\xad\\x8b\\x2d\\x62\\xdd\\x6e\\xb5\\x28\\x68\\xf8\\x85\\x8a\\x9b\\xe1\\xaf\\xee\\xdc\\x2c\\x6a\\x9a\\x88\\xa7\\xb1\\xb7\\xc1\\x32\\x55\\x46\\x4b\\xe7\\x29\\x34\\x5a\\x6a\\xdf\\xd9\\x7a\\x1d\\x1b\\x8d\\xc4\\xef\\x44\\xbd\\x0d\\xe6\\x59\\x4b\\xa0\\x13\\x4d\\x19\\x77\\xf5\\xc4\\x4b\\x3d\\xfb\\xe1\\x9e\\x3b\\x96\\xd1\\xd8\\xd1\\xe8\\x83\\x1b\\x93\\x60\\x85\\x4d\\x96\\x5a\\x6a\\x6c\\x93\\x3d\\xda\\x18\\x86\\x37\\x8c\\x94\\x5d\\x14\\xc7\\x26\\x51\\x0b\\x45\\xa7\\xf6\\xba\\xa3\\xb8\\x29\\x63\\x71\\xd6\\xca\\xcf\\xf6\\xdd\\x4b\\x76\\xfc\\xc5\\x2c\\x20\\x3c\\xe2\\xa2\\x8c\\xba\\x83\\x47\\x9f\\xe2\\x35\\x46\\xdc\\xd7\\xd0\\x88\\xf0\\xce\\xb9\\x1a\\x8d\\x8b\\xdb\\x08\\xd3\\xea\\x07\\x0f\\x9a\\xe8\\x19\\x6b\\xce\\xd5\\xe9\\x63\\x68\\x1e\\xee\\x5d\\xa8\\x89\\xc4\\x8e\\xe3\\xd0\\xe6\\x9a\\x4d\\xd5\\x66\\x74\\x6a\\x26\\x3a\\x23\\xf3\\xce\\x86\\xcd\\xd1\\x47\\x73\\x8a\\x7d\\x44\\xd6\\x11\\x8c\\xb7\\xd5\\x09\\x22\\x8a\\x66\\x52\\x0d\\x1f\\xb8\\xb5\\x28\\xaf\\x9e\\x79\\x61\\x1b\\x3b\\xfe\\xe0\\xa2\\x6a\\x2a\\x9e\\x6e\\xb4\\x16\\x78\\x8d\\x6d\\xd1\\x0b\\xcf\\x41\\xd4\\x4e\\xdc\\xf7\\x54\\xae\\x63\\x8b\\x5a\\xec\\x33\\x3a\\xd7\\x35\\xae\\x03\\xf7\\x54\\xef\\xd8\\xc6\\x45\\x24\\x1e\\xee\\xa3\\x84\\x98\\x8d\\x1d\\x47\\xe1\\x96\\xdd\\x1a\\xf7\\x9c\\xc9\\xda\\xc8\\x6d\\xa6\\xd5\\xb8\\x18\\x9e\\x4c\\x2c\\xfb\\xd0\\xfa\\x74\\x69\\xc3\\xb5\\x78\\xcb\\x1c\\x45\\xd9\\xae\\x45\\x4e\\x45\\x23\\x45\\x84\\x34\\xae\\x8f\\xdf\\xeb\\x8f\\x3b\\x29\\xd1\\xd6\\x49\\x9a\\x64\\xcc\\x31\\xb4\\xa9\\xf4\\x59\\x7c\\x5a\\xbd\\x63\\x28\\x14\\xec\\x24\\xeb\\x08\\x6e\\xa2\\x4e\\x33\\x6b\\x96\\x8a\\x3e\\xba\\x35\\xc9\\x9c\\xd5\\xbf\\x63\\x18\\x1e\\xee\\xb5\\x3a\\x33\\x4a\\x78\\x68\\x63\\xef\\x5b\\xaa\\x35\\xe2\\xcc\\x6d\\x14\\x53\\x62\\xd6\\xed\\xb8\\xe2\\x86\\x38\\x7d\\xf5\\xd5\\xd7\\x4f\\xa4\\xe9\\xab\\xaf\\xbe\\x7e\\xfd\\xe1\\xe3\\xab\\x77\\x5f\\xdc\\xe6\\xdb\\xd9\\x24\\x64\\xcf\\x9a\\xd1\\x62\\x1c\\x25\\xff\\x6d\\x92\\xd7\\xc4\\x8d\\xc9\\xaa\\xcd\\x6b\\x19\\x99\\xb4\\x08\\xdb\\x79\\xf4\\x96\\x6e\\x8d\\xcd\\xda\\x50\\x9b\\x4c\\x45\\x9b\\x44\\xfb\\x6a\\x8c\\x62\\x20\\xd5\\x67\\xf7\\x29\\x4c\\x8d\\x24\\x69\\xaa\\x42\\x90\\xf1\\x04\\xb7\\x2c\\xea\\x74\\x88\\xb6\\x88\\x16\\x82\\x53\\x34\\x53\\x6a\\xd8\\xb3\\xc6\\xad\\xf8\\x67\\xf8\\x1c\\x5c\\xc0\\xc1\\x78\\x5f\\x8d\\xde\\xdb\\xe8\\x71\\x47\\xdd\\x7c\\xa6\\x4b\\x1b\\xc1\\x33\\x46\\xb4\\x1c\\x63\\x06\\x59\\x4b\\xe1\\xcd\\xa5\\xb7\\x70\\xda\\x46\\xa7\\xa6\\x7d\\xec\\x43\\xa4\\xa9\\x8f\\x36\\x8c\\x9a\\x69\\x9f\\x23\\x4a\\xd4\\xf0\\x99\\x28\\x6a\\xcd\\xc5\\x68\\x66\\x45\\x46\\x60\\x77\\xc5\\x4e\\x6a\\x01\\x69\\xdf\\x88\\xc9\\x5b\\x3f\\x0f\\x89\\x2d\\x8b\\x32\\x79\\x8f\\xc1\\x4d\\xa2\\x45\\xcf\\x96\\xd3\\x58\\xda\\x89\\x69\\x2f\\x62\\x3b\\x31\\x35\\x51\\x6e\\x45\\x32\\xd6\\x46\\x9f\\xe0\\xc7\\x54\\xdc\\xb7\\x86\\xf5\\xe1\\xbe\\xc4\\x1c\\x45\\xdf\\x2d\\x71\\x6c\\x5e\\x32\\x24\\xc7\\x0c\\x2b\\xee\\x2c\\x9b\\x7a\\x81\\x28\\xdd\\x20\\x06\\x89\\x76\\xed\\xa3\\xc4\\x64\\x93\\x34\\x70\\x7a\\xd1\\xbc\\xd3\\x18\\x53\\x84\\x9a\\xb2\\x4e\\xe1\\x68\\x92\\xb4\\xe3\\x28\\xd1\\x44\\x7b\\xe3\\x31\\xa6\\x04\\xd6\\xf9\\x54\\xe5\\x56\\x42\\xed\\x78\\xef\\xc3\\xbd\\xd6\\x7c\\x10\\xf1\\x8e\\x46\\xf7\\x1a\\x12\\xbf\\x32\\xb8\\xea\\xb2\\x6e\\xce\\xd9\\x46\\xea\\xee\\x45\\x13\\x90\\x35\\x51\\x57\\xb0\\x83\\xc2\\xa8\\x7b\\x0d\\x71\\x11\\x67\\xaf\\x86\\xd6\\x88\\xe9\\xbe\\x1a\\xd1\\x5b\\x74\\xc0\\x41\\x9b\\x9e\\xe0\\x1e\\x7d\\xe2\\x1b\\x39\\x8e\\x09\\xe7\\xd4\\xdd\\xea\\xc9\\xb5\\xaa\\xad\\x26\\x9c\\xa3\\x4f\\xc5\\xc5\\x22\\x53\\xad\\xfa\\x17\\x39\\xaf\\x1d\\x7d\\xf8\\xe4\\xee\\xd9\\xb5\\xfd\\xf5\\xfb\\x8f\\xcf\\x41\\xc5\\x8f\\x6f\\xde\\x7d\\xf9\\xf6\\x79\\xec\\x0c\\x74\\xe6\\x25\\xf9\\x89\\x37\\xc7\\xea\\x66\\x3e\\x03\\x26\\x14\\x10\\x74\\x2f\\xb4\\x58\\x2f\\x7c\\x8e\\x98\\xfe\\x9b\\x27\\x32\\xea\\xd5\\x87\\xd7\\xef\\xde\\xbe\\xfe\\xf9\\x0b\\x52\\x4a\\xb3\\xd9\\xe0\\xbd\\x8e\\x51\\x33\\x53\\x70\\xaf\\x10\\x01\\xb8\\xfc\\xf0\\x69\\xdc\\x17\\x4f\\xf6\\x02\\x32\\xe0\\x9f\\x25\\x9c\\xcc\\xc6\\xcc\\x1a\\x31\\x17\\xde\\xb2\\x44\\xb9\\x0e\\xda\\x53\\x8a\\x56\\x34\\x5a\\x14\\x40\\x94\\xe0\\xe9\\x51\\x03\\x5e\\x53\\x3b\\xb2\\x0d\\xe9\\xd3\\xbc\\x5e\\xa8\\x17\\x0b\\xdd\\xab\\x5d\\x32\\xaf\\x46\\x9c\\x65\\xe0\\xe2\\x13\\xf7\\x59\\x77\\x9f\\x8a\\x7d\\xd5\\x83\\x4f\\x52\\x80\\x58\\xbd\\x9d\\xd4\\x65\\x8f\\x61\\x77\\xa7\\x12\\x8f\\x21\\xa3\\x9d\\x64\\x10\\xa0\\xd9\\x89\\xa3\\x16\\x0f\\xb5\\x13\\x15\\x88\\x11\\x6e\\xc1\\xb3\\x3e\\xa5\\x24\\x26\\x3e\\x31\\xfc\\x62\\xe3\\xc6\\xa0\\xfd\\xb7\\xcf\\x0c\\xda\\x87\\x37\\x5f\\xfe\\xe2\\xf6\\xa8\\xa5\\xe3\\x91\\x7b\\x1d\\x55\\xa4\\x15\\xcb\\x93\\x9e\\x33\\x52\\x5a\\xa1\\xc5\\x21\\xed\\x44\\x34\\xa6\\xa5\\x57\\xdf\\x6c\\x16\\x33\\x3d\\x09\\x24\\x9b\\xe0\\x43\\x36\\x21\\xc7\\xa7\\xed\\x85\\xbe\\x4f\\x9c\\x5e\\x8c\\xb8\\x28\\xb3\\x4f\\x13\\x6b\\x27\\x96\\xe9\\xc4\\x8d\\x25\\xa6\\x6b\\xc9\\x77\\xbd\\xd8\\xd0\\xbd\\xda\\x91\\x5c\\x54\\xb7\\x86\\xb3\\x96\\x26\\x0d\\x9a\\x5a\\xd3\\x23\\x45\\x73\\x54\\xf3\\x34\\x72\\x03\\xa7\\x77\\xe1\\x5d\\x49\\xef\\xc8\\xbb\\x37\\x2d\\x0e\\x56\\x33\\x67\\x59\\xeb\\x4b\\x15\\x3d\\x2d\\x5e\\x8d\\x9e\\x97\\x9c\\x9f\\xf5\\x29\\xe9\\x7d\\xe2\\x13\\x07\\x5f\\x2c\\x6e\\xf0\\xed\\xff\\xee\\x09\\xcf\\xfe\\xf8\\xcd\\xeb\\x0f\\x6f\\x3e\\xfe\\xf5\\xcd\\x31\\x33\\xc9\\xe6\\x6a\\x1b\\x95\\x52\\xa6\\x7d\\x2b\\x76\\x35\\xc4\\xb7\\xea\\x4b\\x84\\x6f\\x06\\x78\\xda\\xe5\\x1c\\x96\\x5b\\x70\\x71\\xee\\xbe\\x01\\x3b\\x0e\\xf6\\x8d\\xc8\\xa8\\x05\\xc7\\x16\\x4e\\xcd\\x25\\xb6\\xa2\\x8a\\xc2\\x76\\x5b\\x16\\x29\\x8e\\xbe\\xb9\\x5a\\x33\\x1b\\x9b\\x4a\\x49\\x65\\xda\\xb8\\x16\\x17\\xe5\\x76\\xbc\\xf7\\xf9\\x8f\\xf8\\xef\\x9f\\x4c\\xfd\\xdb\\x6f\\x3f\\xde\\xd6\\x49\\xd9\\x5a\\xf6\\xd2\\x65\\x7a\\x5c\\x2c\\xec\\x1c\\x5c\\xa4\\x58\\x0a\\x1c\\xe3\\x6f\\xea\\xe3\\x52\\x17\\xd4\\xdf\\xc4\\xdd\\x71\\x41\\xf6\\x1b\\x70\\xf2\\x7f\\x78\\xfc\\xea\\xcf\\xdf\\x7f\\xf5\\xd5\\xab\\xdb\\x0c\\x21\\x0b\\xcb\\xec\\x75\\x28\\x24\\xe1\\x9e\\xed\\x04\\xb5\\xa4\\x60\\x72\\x3a\\xa8\\xea\\x54\\xf3\\xa8\\x59\\x64\\x11\\xb6\\x89\\x15\\xe9\\x74\\xdd\\x65\\x14\\x7d\\x14\\x80\\xe7\\xde\\x4e\\x64\\x32\\x55\\xa5\\xb1\\x5d\\x58\\xf4\\xec\\xc9\\xdb\\x7a\\xf6\\xf3\\x9d\\x3c\\x3d\\xee\\xe4\\x2f\\x7e\\xf3\\xf5\\x2f\\x5e\\xdf\\x56\\x2a\\xa9\\x5b\\x6f\\xa6\\x7c\\x66\\x1d\\x97\\x90\\x1a\\x11\\xeb\\x17\\xd3\\x1b\\x74\\xf7\\x47\\xbf\\x07\\xa8\\xdf\\xbc\\xbf\\x2d\\xf2\\xd5\\x8a\\xc9\\xc8\\x8e\\x63\\xe1\\x93\\x12\\xe8\\x7d\\x4c\\x28\\xfe\\xce\\xb3\\xd6\\x0f\\x8f\\x9c\\x25\\x17\\x84\\x68\\xf7\\xe8\\x75\\x6c\\x25\\x0d\\xea\\xf7\\x28\\x65\\xcc\\x65\\xc6\\x20\\xdc\\x97\\x05\\x36\\x55\\x76\\x1c\\x7b\\xb6\\x92\\x96\\x51\\x22\\x2e\\x1b\\xc7\\x8c\\x2e\\xed\\x14\\x78\\x58\\x41\\xb8\\x45\\xc8\\xbd\\x59\\x8d\\x6a\\xae\\x77\\xc6\\x2c\\x99\\x54\\x32\\x60\\xf5\\xec\\xf9\\x8f\\xfc\\xf4\\x89\\xcd\\xe4\\xed\\xab\\x8f\\xbf\\x78\\xe1\\x1b\\xc1\\xc2\\xec\\xcc\\x22\\x5b\\xf6\\x71\\x55\\xa5\\x39\\xb6\\xeb\\xa9\\xe7\\xdf\\xd2\\x1f\\xbf\\xe5\\xbf\\xbc\\xfe\\xf0\\xfb\\x86\\xa7\\xdf\\xce\\xd2\\xc0\\x87\\xec\\x68\\x28\\x70\\xbd\\x65\\x93\\xee\\x13\\x38\\x92\\x7d\\x26\\x59\\x23\\x9f\\x85\\x86\\x0b\\x33\\x58\\x4f\\x60\\x86\\x5a\\x41\\xe4\\x4b\\xf3\\x2a\\xa5\\xad\\x24\\x7e\\x69\\x34\\xc5\\x9f\\x4c\\x2f\\xa3\\xf3\\x5e\\x6d\\xea\\x05\\x4b\\xa3\\x04\\xa3\\xf5\\xc9\\xc0\\xf2\\xd2\\xa7\\x52\\x29\\x35\\x25\\x69\\xeb\\xe9\\x85\\xa8\\x8a\\xa2\\x80\\xa8\\xb2\\x3a\\x51\\xa7\\x86\\x97\\xa2\\x2b\\x34\\xa9\\x43\\x91\\x2d\\x50\\x5d\\xbd\\x1c\\x9d\\x2f\\x66\\xfa\\x70\\x2f\\xc9\\x77\\xc5\\x45\\x52\\xb3\\x8d\\xc1\\x3b\\x54\\x1a\\x52\\x6a\\x60\\x60\\x4c\\xbc\\x9e\\x5e\\xe2\\x5b\\x47\\x2e\\xf1\\x0d\\x88\\xc8\\x9d\\x66\\xa9\\x85\\x43\\xfd\\x52\\xec\\xe0\\x3e\\x4b\\x21\\xea\\xba\\x49\\x5d\\x61\\xb1\\x6b\\xa1\\x86\\xa0\\xa5\\x02\\x94\\x1a\\x6e\\x1d\\x7f\\xd7\\xd1\\x88\\x2f\\xd9\\xf5\\xf9\\xb1\\xa7\\xc7\\x63\\xff\\xfe\\xdd\\x6d\\xb9\\x9e\\x9d\\x5b\\xe9\\xb3\\x74\\x21\\x72\\xda\\xa8\\xe0\\x55\\x2f\\x2e\\xc2\\x62\\x5b\\x64\\xac\\xf9\\xce\\xce\\x97\\x1b\\x4c\\x83\\x1f\\xbf\\xeb\\x9b\\x5f\\xbd\\x34\\xcd\\x29\\xad\\x17\\x09\\x5e\\xc8\\x6d\\xb3\\x18\\xcd\\x93\\x77\\x97\\xd1\\x42\\x47\\xf3\\x18\\xc5\\xcd\\x60\\xe1\\xc8\\x61\\x33\\x22\\xdb\\x08\\x2b\\xad\\xa8\\xd6\\x43\\xdf\\xd1\\x28\\x04\\x1b\\x51\\x50\\x56\\x79\\x46\\xa1\\x33\\xd8\\xd8\\xbc\\x2f\\xbb\\x81\\x39\\x10\\x52\\xdf\\x55\\x56\\xa3\\x49\\xe9\\xa1\\x45\\x5e\\x10\\x43\\x9d\\xe4\\x5c\\x6a\\x76\\x61\\xad\\x8e\\xc7\\x95\\xb0\\xe2\\xc9\\xd0\\x81\\xb5\\xc4\\x61\\x09\\x2b\\x19\\xd3\\xea\\x25\\x1a\\x5e\\x2c\\xee\\xae\\x1a\\x2d\\x80\\x81\\xb4\\xf4\\xb3\\x52\\xfd\\x6c\\xcc\\x51\\xca\\x2e\\xc3\\x0a\\xc2\\x40\\x85\\x7d\\x47\\x6b\\x8c\\x5a\\x73\\x5d\\xda\\xe0\\x31\\x47\\xe1\\xda\\x5e\\x72\\xac\\xbe\\xd1\\x67\\x08\\x37\\x53\\xdb\\x30\\xbd\\x83\\xce\\x35\\x2c\\xb7\\x46\\x57\\x9e\\x8c\\xee\\x2f\\x3e\\xbc\\xbe\\x3d\\x97\\xda\\xb5\\xa5\\xf8\\xd9\\x34\\x76\\xa7\\x5e\\x6d\\x98\\x86\\xd2\\x78\\x86\\xd8\\xc2\\xf8\\x49\\x6d\\x44\\x07\\xe6\\x2f\\x35\\x7d\\x47\\x83\\x3c\\x5b\\x28\\x74\\x23\\x9b\\x56\\x00\\x89\\x53\\x76\\xa8\\xfa\\x30\\xc0\\x25\\x88\\x70\\x4c\\x25\\x5e\\xdf\\x2b\\x45\\x96\\x54\\xca\\xbc\\xd6\\x73\\xa2\\x58\\x42\\xee\\x6b\\x44\\x8b\\x60\\xf0\\x2c\\xb1\\xc9\\x85\\xcc\\xc4\\x6b\\xa1\\x1f\\x63\\x67\\x4b\\x67\\xf1\\x1d\\x38\\x4c\\xc3\\xef\\xa2\\xe6\\x4e\\xad\\x1f\\xc3\\x1a\\x45\\x60\\x1d\\xfa\\x37\\xf4\\x56\\x5f\\xfd\\x3c\\x5a\\x84\\xf5\\x59\\x7a\\x8b\\xce\\x91\\xda\\xb2\\x74\\x46\\x8a\\x96\\xc5\\x3f\\x99\\x5a\\x68\\xec\\x99\\xd1\\x82\\xb5\\x0d\\xe1\\xe6\\x99\\x87\\xdd\\xa7\\x57\\xa3\\x24\\x32\\xf1\\xa2\\x65\\x45\\x8f\\x2d\\x8a\\xcf\\xd4\\x43\\x7b\\x63\\xf6\\x39\\x28\\xdb\\xe0\\x19\\xa5\\x1b\\xa1\\xb3\\xc5\\x6c\\x6b\\xf6\\x8b\\xd9\\xca\\xe8\\xcd\\x27\\xcb\\x68\\x29\\x93\\x44\\x1b\\x13\\xcd\\x51\\x1a\\xe8\\x38\\x8b\\xe8\\x2e\\xa2\\x4d\\x94\\x9a\\x58\\x01\\x3d\\x9a\\x32\\x0e\\x6d\\xa2\\x58\\x4f\\x41\\xce\\xfa\\xe6\\xa0\\xdd\\x33\\xef\\x08\\x56\\x29\\x59\\x56\\x1e\\x1a\\x4d\\x7b\\xec\\x38\\x46\\x71\\x81\\xa2\\x70\\x83\\xa5\\xcc\\x0a\\xe9\\x7a\\x6f\\x2e\\x3a\\x4d\\xa3\\xb9\\xe6\\x59\\xbb\\x5e\\x52\\x6e\\xc0\\x20\\x7d\\xbc\\x66\\x7e\\xfe\\xfe\\xdb\\xdb\\xd6\\xc6\\x52\\xd7\\x8d\\xe2\\x4c\\xc4\\x7e\\x11\\xd6\\xf3\\x50\\xb9\\xf4\\x73\\x74\\xc5\\x5f\\xc1\\x9b\\x7b\\xe9\\x7e\\x9b\\x2f\\xd3\\x90\\xe3\\x02\\xa3\\x78\\xb8\\x17\\x62\\xdc\\x5a\\xd7\\x12\\x49\\x6c\\x0e\\x83\\xcf\\xe8\\xdb\\x71\\xe6\\xf9\\xde\\xd9\\x93\\xde\\xbd\\xf9\\xe5\\xed\\x05\\x4d\\xc3\\x5a\\x30\\x6f\\x8c\\xa5\\x02\\xb9\\x63\\x72\\xa9\\x85\\x71\\xd6\\xe0\\x4d\\xb1\\xa6\\x63\\xaf\\x11\\xab\\x35\\x60\\xa5\\x7f\\x89\\x4f\\x77\\x6e\\xc3\\x6c\\x2f\\x7a\\x1d\\x66\\xad\\xa0\\xfa\\x60\\x5a\\xeb\\x85\\x75\\x52\\x2f\\x05\\x32\\x4a\\xc9\\xec\\xbd\\xa4\\xf6\\x8e\\x06\\xd6\\x74\\x0f\\x6e\\x50\\x9b\\x13\\x94\\x3d\\xa1\\x3f\\xe4\\x01\\xe9\\xfb\\xb2\\xca\\x73\\x6f\\x6a\\xd2\\x7c\\x4a\\x11\\x9c\\x4e\\xa8\\xeb\\x24\\x93\\xac\\x56\\x08\\x9f\\xa1\\x57\\x0e\\xbb\\x03\\xa7\\xf7\\x5a\\x56\\xeb\\x01\\x6b\\xe6\\x1d\\x3c\\x3c\\xa4\\x37\\x1a\\x02\\x99\\xcf\\xa6\\xd0\\x5c\\x44\\xc7\\x4c\\xa7\\x06\\x93\\xab\\xc3\\x24\\x04\\x1c\\x6f\\x19\\x33\\x46\\xa9\\x93\\x39\\x83\\xa4\\x14\\x8d\\xe9\\x1d\\x3a\\xfa\\x6e\\x16\\x75\\x6c\\xc6\\xde\\xc2\\x0a\\xd6\\xd7\\xb3\\x03\\xe0\\x3b\\x8a\\xe9\\xa5\\x37\\x0f\\xdb\\x8e\\xa1\\x7c\\x7e\\x4e\\xfc\\x09\\x22\\x78\\xf3\\xeb\\x17\\xf4\\x8c\\x12\\x09\\x5e\\x70\\xd2\\xf2\\x9c\\x46\\x7b\\xc0\\x68\\x66\\x05\\x69\\x61\\xb2\\x55\\xd8\\x63\\x89\\x4a\\xbe\\x76\\x6d\\x63\\xc8\\x14\\xb7\\x96\\x6c\\xbb\\xe4\\x28\\x66\\x04\\xa9\\x9d\\xe1\\x80\\x86\\x83\\x3b\\xc8\\x6c\\x18\\xcd\\x52\\x32\\x47\\xa9\\x54\\xc1\\x75\\x84\\xa0\\x1b\\xcc\\x73\\x64\\x6f\\x49\\x35\\x71\\x56\\x1c\\x6d\\x4c\\xea\\x59\\xc3\\x14\\x3b\\x1a\\x02\\x53\\xb3\\xf5\\xc6\\xc9\\x73\\x58\\x75\\x47\\x67\\x16\\x67\\x1f\\xb3\\xf8\\x20\\x28\\x78\\xd0\\x1d\\x26\\xae\\xf7\\xc2\\x49\\xac\\xa5\\x31\\xf2\\x2c\\xe8\\x2f\\xa2\\x93\\xb8\\x00\\x43\\xbf\\xb8\\xca\\x5e\\xed\\x28\\x51\\x2b\\x09\\xd6\\xb9\\x64\\xa2\\xfa\\xe4\\x2c\\x94\\x41\\x32\\x15\\x36\\x40\\xb5\\xe9\\xfd\\x30\\x9c\\x43\\xe8\\xab\\xf3\\x39\\x3d\\x1e\\xee\\xbd\\xc0\\x5b\\xf4\\xdd\\xbc\\xf4\\xce\\xde\\x8c\\x47\\x0b\\x2b\\x58\\x36\\x5a\\xb0\\xcc\\xe2\\xfc\\xee\\x39\\xc5\\xb9\\xd9\\xc8\\x8b\\x49\\xdf\\xab\\xad\\xc5\\x3a\\xf0\\x41\\x36\\x6b\\x71\\x43\\xa0\\x15\\x10\\x19\\x3e\\xbd\\x98\\x63\\xc8\\xee\\xd8\\x5d\\x92\\x16\\xf5\\x77\\x49\\xc9\\xa4\\xc6\\xe6\\x33\\x0b\\x64\\x5a\\x9f\\xa9\\x5a\\x2c\\x64\\x4f\\xd5\\xbb\\x52\\xc5\\x92\\x47\\xb3\\xac\\xeb\\xb4\\x79\\xd2\\x0c\\xea\\x2d\\xb4\\x9e\\x87\\x3e\\x3e\\xbf\\x20\\xe2\\xc9\\x82\\x78\\xfd\\xcb\\x17\\x31\\xf6\\x80\\x01\\x54\\xb6\\xea\\x6b\\x3f\\xb3\\xd3\\x56\\xbd\\x20\\xb6\\x38\\xe7\\xb8\\x1c\\x94\\x3b\\xfc\\x52\\x17\\x3d\\xff\\xc2\\x7c\\xb2\\x17\\xf7\\xa2\\xae\\x0b\\xeb\\x4b\\x51\\xea\\x8e\\xd6\\x28\\xb1\\xdc\\x7b\\xb6\\x4c\\x9e\\x69\\x59\\x93\\xb7\\x0f\\x2a\\x8d\\x7b\\xd1\\xbf\\x67\\xad\\x18\\xe9\\x87\\x0c\\x88\\x68\\x46\\xbd\\x50\\x9c\\x36\\x19\\xbe\\xa3\\xc1\\x30\\x5b\\x17\\x20\\xa7\\x98\\xc3\\xbc\\x65\\xcc\\xec\\xde\\x0a\\x70\\xaf\\x15\\x64\\x34\\x16\\xe9\\x97\\x2e\\x3f\\x0b\\x59\\xa4\\x4f\\xca\\x8e\\x3b\\x48\\x65\\x3d\\x4b\\xa5\\xa9\\x79\\x23\\x1b\\x78\\x09\\x77\\x6f\\xde\\x47\\x5d\\x7e\\x07\\xfb\\x5f\\xac\\xee\\x15\\x6b\\x88\\x62\\x1b\\xd2\\xb1\\x65\\x41\\xb0\\x14\\xd5\\x17\\x01\\x99\\xf8\\x68\\x00\\x24\\xac\\x3a\\xa5\\xf7\\x25\\x15\\x01\\x1a\\x55\\x07\\x40\\x30\\x44\\x68\\xd0\\x82\\x28\\x2d\\x60\\xee\\x28\\x11\\x2a\\xbe\\xac\\x1c\\xd4\\x01\\x8d\\x60\\x8e\\x3b\\x46\\xab\\x00\\xa6\\x41\\xea\\xe1\\x58\\xf4\\x25\\xd9\\xac\\xe7\\x8c\\x82\\xdf\\xb5\\x46\\xc8\\x21\\x66\\x9c\\xb2\\xb9\\xf1\\x6e\\xae\\x75\\x6c\\xc6\\xa5\\xe1\\xda\\x54\\x0d\\x5c\\x57\\x44\\x54\\xf7\\x49\\x61\\x83\\x9e\\x7b\\x1d\\x79\\x78\\x53\\xf5\\xc6\\x75\\x3f\\xf7\\xc5\\xec\\x82\\x97\\x98\\xa3\\x25\\xfe\\x60\\x6e\\x16\\x9d\\xf5\\x5e\\xe9\\x39\\x8f\\xfe\\x3c\\xdc\\xc3\\x9a\\xdc\\x5d\\x77\\x34\\x88\\x0a\\x30\\x61\\xb7\\xaa\\x04\\x71\\xac\\x8d\\x20\\xd8\\xd0\\xd8\\x63\\x7d\\x3e\\xf0\\x49\\xf4\\x85\\x4f\\x4c\\x0a\\x69\\x7b\\x4e\\x05\\xfa\\x63\\x9b\\xca\\xb8\\xdd\\xa7\\x92\\xad\\x27\\xaf\\x06\\x69\\xab\\x53\\x85\\x1e\\x20\\x35\\xba\\xc1\\xb6\\x91\\xde\\xd1\\xe9\\x54\\xdd\\xdd\\xbd\\x8e\\x2d\\x8a\\xb9\\x7b\\x9f\\xe1\\xd9\\x46\\xd7\\x59\\x3d\\x1a\\x21\\xf3\\xda\\xd7\\xe7\\x17\\xf2\\x78\\xb2\\xef\\xf9\\xe6\\x05\\xec\\x5d\\x28\\x81\\x46\\xee\\x9a\\x38\\xb6\\xc2\\xae\\x25\\x2b\\x6a\\x5a\\x85\\x4a\\x2f\\x84\\xa6\\x00\\xd2\\xf6\\xde\\xf7\\x5a\\x8f\\x16\\xd6\\x02\\x1b\\x65\\x0a\\x1b\\xa2\\x95\\x52\\x24\\xde\\x74\\xf4\\x69\\xca\\x4d\\x01\\x7d\\xad\\x8e\\x4d\\xcc\\x9b\\x71\\x9f\\xcc\\xd6\\x9c\\x73\\x92\\x66\\x8b\\x5c\\xcc\\x6e\\x78\\x82\\xd1\\x51\\x2f\\x98\\x6b\\xc5\\xb0\\xdd\\x60\\xa6\\xc6\\xae\\x9e\\x8c\\x42\\x69\\xe2\\xd3\\x06\\x5d\\xd7\\x1a\\x2f\\xb8\\x96\\xbd\\x7e\\xe1\\x9c\\xc3\\x60\\x87\\x03\\x6d\\x2d\\xeb\\x75\\xad\\xb5\\xd1\\x32\\xf5\\x92\\xbd\\xe8\\xca\\x47\\x5b\\x96\\xcf\\x62\\xdb\\x9d\\xd7\\x9e\\x9a\\x16\\x64\\x62\\x6d\\xb5\\xb6\\x4b\\xf3\\x25\\x92\\xe9\\x25\\x05\\x7d\\x8a\\x71\\x3b\\xf9\\x59\\x44\\x2e\\x34\\xf2\\x2c\\x46\\x0f\\xf7\\xd5\\x01\\xf7\\xb1\\x7b\\x81\\x39\\x1f\\xeb\\x7f\\x32\\x6c\\x7e\\x41\\xb5\\x76\\xa5\\xf4\\x81\\x99\\xc5\\xeb\\x54\\x2e\\x83\\x79\\xaf\\x36\\xde\\x95\\x84\\x2f\\x8c\\x19\\x06\\xb3\\x7a\\x3f\\x8c\\xab\\x36\\xd6\\x87\\x71\\xf2\\x5e\\xf3\\x5f\\x8d\\xa6\\x05\\xda\\xb9\\xd8\\x34\\x43\\x29\\x90\\x29\\x05\\xdb\\xfa\\xb0\\x29\\x36\\xee\\x46\\xd8\\x2e\\x36\\xda\\x20\\x6b\\x12\\x82\\xb5\\x51\\x8b\\x2a\\x5c\\xa6\\x66\\x36\\x1f\\x36\\x8f\\xce\\x3e\\xbf\\x34\\xfe\\xe5\\x53\\xf3\\xca\\xdb\\xf7\\xb7\\x99\\xaa\\x02\\x2f\\xcb\\x8e\\x63\\x64\\xd3\\xe1\\xb0\\x11\\x98\\xf4\\x65\\x5b\\x48\\x5d\\xb6\\x05\\x1b\\xb0\\x2d\\x44\\xa7\\x65\\x5b\\x90\\x65\\x73\\x28\\x5d\\xa9\\xc4\\x47\\x32\\x2f\\xdb\\x82\\x2c\\x5b\\x05\\x8e\\xc5\\x2b\\x59\\x60\\x5b\\x48\\x98\\x0d\\x42\\x14\\xb6\\x05\\x03\\x8b\\xdb\\x97\\x96\\x0d\\x9e\\xd0\\x4e\\xb9\\xde\\x19\\x53\\x47\\xc0\\xb6\\xb0\\x7a\\xf6\\x80\\x2e\\x8e\\xa1\\xab\\x8b\\x9d\\xc7\\x5d\\xf5\\xb1\\x74\\x20\\xdc\\x40\\x35\\xaf\\xd5\\x4b\\xa2\\x62\\x59\\x18\\xff\\x52\\x37\\x6a\\xf5\\x94\\x8a\\x50\\x1d\\xc5\\xa9\\xa5\\xd5\\x91\\xa2\\xab\\xb8\\xbd\\xfa\\x58\\x0f\\xc6\\xd1\\x06\\xfa\\x3a\\xa4\\xa3\\xb3\\x59\\x18\\x08\\xb8\\x48\\xf1\\xd0\\x14\\x42\\x77\\x6b\\xca\\xab\\xbb\\xa9\\x82\\xd7\\xd7\\x75\\xd5\\xe1\\x52\\xc0\\x8e\\x8e\\x3e\\x3f\\x2b\\x7f\\xfc\\x54\\xd4\\x7d\\xf5\\xe6\\xe5\\x99\\xb1\\x8e\\xcd\\xc4\\xbd\\x8e\\xe0\\xb2\\x86\\x6d\\xef\\xfa\\xec\\x65\\x79\\x97\\x69\\xd8\\x6a\\xd7\\x71\\xd8\\x9a\\xeb\\xb3\\xc9\\x8f\\xcf\\xd6\\x5c\\xa7\\x60\\xe4\\xc1\\x67\\x4b\\x1c\\x9f\\xad\\x63\\x7d\\x76\\x1d\\xf1\\x69\\xcb\\x3e\\x9d\\xc5\\x88\\xea\\xb3\\x75\\xac\\xcf\\x0e\\x5d\\x9f\\x2d\\x8c\\xcf\\x2e\\x28\\x88\\xcf\\x56\\xc3\\x75\\x46\\x8c\\xcf\\x3e\\x3a\\xfa\\x70\\x1f\\xa9\\x77\\x22\\x7b\\x21\\x00\\x6c\\xfa\\x95\\x52\\x73\\xe8\\xa1\\x30\\xd5\\x39\\xb4\\x9c\\xcc\\x69\\x83\\x97\\xa9\\x4e\\x2d\\x96\\xa9\\xae\\x9e\\x01\\x53\\x1d\\x36\\x6b\\xc8\\xea\\x2d\\x7e\\x35\\xd5\\x45\\xda\\x56\\x0f\\xbd\\x65\\xaa\\xfb\\x17\\x6f\\x9f\\x3a\\xa5\\xbc\\x7d\\xfd\\xf1\\xb6\\x35\\x53\\x9d\\x9a\\x9b\\x6f\\x32\\x4a\\x0a\\xc9\\x86\\xbf\\x89\\x36\\x0c\\xb2\\xf6\\xb8\\x90\\xc7\\x46\\x2e\\xcd\\xb4\\x5f\\x42\\xfa\\x3a\\x41\\xd4\\xf9\\x92\\x7e\\x5c\\x6e\\x37\\x74\\xa2\\xcf\\x9e\\xe0\\x8b\\xbf\\xf9\\xf6\\xd5\\x6d\\xcf\\x18\\xea\\x69\\x85\\x91\\xce\\xe4\\x76\\x19\\x6a\\xa5\\xdb\\xda\\x25\\xd4\\x1f\\xd6\\x29\\x61\\xc6\\x29\\x63\\x5a\\xa7\\xe4\\x16\\xb0\\xfe\\x17\\x5f\\x3e\\x1d\\x81\\x2f\\x3f\\xbc\\x7e\\xf5\\xcd\\xeb\\xdb\\x0a\\x59\\x89\\xfe\\xf4\\xb8\\x10\\x75\\xd9\\xb0\\x8f\\x1e\\x42\\x17\\xd3\\xbe\\xd5\\x19\\xf2\\xb8\\x68\\xd7\\x2d\\x1c\\x1b\\xc4\\x5b\\x51\\x88\\x4b\\xac\\xbf\\x2d\\xb7\\xe3\\xee\\xe7\\x3b\\xf3\\xaf\\x9e\\xee\\xfa\\xbc\\xfe\\xf8\\xcd\\x9b\\x17\\x17\\x7a\\x21\\x75\\xdf\\x71\\x1c\\xd1\\xac\\xc4\\x4f\\x69\\xf0\\x5c\\x2f\\xed\\xd3\\xdc\\x9b\\x8f\\x31\\x5d\\x8b\\x03\\xeb\\xee\\xe1\\x2d\\x7b\\xb4\\xa0\\xe2\\xc4\\x3c\\x23\\xb4\\x0d\\x72\\xa8\\xe5\\x63\\xf8\\xc2\\xc8\\x3d\\xe9\\xb0\\x90\\x65\\x6f\\xb1\\x94\\xac\\x5c\\x3b\\x39\\x1c\\x01\\xab\\x66\\x35\\x9a\\x15\\x9d\\x94\\xb4\\x87\\x63\\x4f\\x81\\x06\\xc5\\xbe\\x42\\x91\\x35\\x98\\xfa\\xb0\\x33\\x01\\x2f\\x15\\x19\\x15\\xb3\\xeb\\x79\\x07\\xc6\\x2e\\xdd\\xd6\\xb6\\x83\\x6a\\xae\\xfd\\xd2\\xb5\\x4f\\x14\\xb1\\x07\\x98\\x20\\xac\\x7b\\xc7\\x29\\xb8\\x03\\x49\\xc4\\xa4\\xae\\xf0\\x8a\\xf0\\xd2\\x2d\\xaa\\x9f\\x83\\xf6\\xa3\\xc5\\x7d\\x49\\xb0\\x01\\x83\\x0f\\x83\\xd6\\x46\\x97\\x16\\xca\\x80\\x88\\x85\\x94\\x22\\xbc\\x79\\xe9\\x0d\\xd8\\xef\\x2d\\x16\\x55\\x9f\\x30\\x66\\x29\\x47\\x5a\\x28\\x9d\\xa3\\xc6\\xf2\\x6c\\x9d\\x1f\\xee\\xb1\\xe9\\x01\\xab\\x02\\x35\\xec\\x9e\\xf6\\x05\\x3b\\xb1\\xbb\\x62\\xbe\\x7b\\x81\\x4a\\xf3\\x16\\x54\\xbf\\xe7\\x0c\\x33\\x5c\\x5f\\x47\\x97\\x92\\x7a\\x25\\x2c\\x9d\\xf8\\xee\\x44\\xbc\\x9b\\x6a\\x3b\\x95\\xc6\\xdd\\xb3\\xf1\\x52\\x00\\x89\\x6f\\xe0\\xfa\\xff\\xf1\\xc9\\x0e\\xc9\\x0b\\x18\\x9b\\x5c\\x6b\\x36\\x77\\x22\\x2f\\x00\\x07\\x86\\x56\\xf3\\x0e\\xf3\\xa7\\x34\\x0d\\x59\\x76\\x15\\xb1\\x31\\x33\\xbc\\x09\\xd9\\x5e\\x33\\xbd\\xfc\\x8f\\x7a\\x93\\x5a\\x01\\x94\\x4d\\xb9\\x94\\x5e\\x81\\x92\\xe6\\xd8\\x68\\xd5\\x59\\x5a\\xb4\\x90\\xef\\x5a\\xbf\\x53\\xe1\\x46\\x69\\xa2\\x34\\x25\\xa2\\x29\\xd9\\x14\\x2d\\xe5\\xb7\\x4f\\x91\\x84\\x85\\x10\\x5b\\x81\\xa3\\xb7\\x3a\\x0f\\xbd\\xb1\\x80\\x53\\x67\\x9e\\x56\\x50\\xbb\\x98\\xa8\\x43\\x88\\x68\\xec\\xe1\\x74\\x57\\x8d\\x96\\xb0\\x45\\x95\\x06\\x8f\\x7d\\x24\\xd7\\xad\\x96\\x9d\\xe9\\xc0\\x96\\xa0\\x51\\x89\\x10\\x6a\\x3a\\x74\\xa6\\x95\\x9a\\x2e\\x33\\x43\\x5b\\x61\\xe8\\x1c\\xd1\\x54\\x63\\x1f\\x8c\\x23\\xb6\\xbd\\x35\\x74\\x8e\\x51\\xac\\xa7\\x34\\x08\\xec\\x77\\xd0\\xd2\\x29\\xb2\\xeb\\x4e\\xbd\\x24\\x15\\xc3\\xdf\\xe5\\xe8\\xd9\\x90\\x7a\\x7d\\x8c\\x89\\xa5\\xc6\\x61\\xd3\\x6b\\x16\\xa5\\xc7\\x6e\\xa6\\x68\\xd4\\x18\\xd6\\x1a\\xa7\\x29\\x90\\x85\\x42\\x93\\x95\\xe1\\xc9\\xc4\\xbd\\xb4\\x16\\xdf\\xa9\\x10\\x20\\x95\\xa4\\x2f\\x31\\x6d\\x4b\\x09\\x14\\xdf\\x1d\\x16\\x6c\\x5f\\xfb\\xfe\\xc6\\x33\\x65\\xdc\\xd1\\x70\\xf8\\xb1\\x79\\xec\\xa9\\x05\\x00\\x61\\xc3\\x16\\x9d\\x01\\xb1\\xb4\\xb6\\x32\\x65\\xf9\\x17\\xe6\\xae\\xde\\xdb\\xa9\\x34\\x46\\x6b\\x4a\\x93\\x92\\x1b\\x25\\x4d\\xe0\\xf9\\xa2\\x6c\\xbc\\xdd\\x81\\xa8\\xe0\\xcb\\x30\\x92\\x0f\\xf7\\x16\\x80\\x6b\\x78\\x24\\x8c\\xe9\\x0e\\xb7\\x83\\xbe\\xc7\\xf2\\xbe\\x2b\\xb1\\x5b\\x14\\x06\\x9f\\x22\\xc0\\xaa\\xb0\\x49\\x24\\xcb\\xae\\x32\\xaf\\x6b\\xea\\xe1\\x5e\\x47\\xc7\\xc4\\x96\\x64\\xb6\\x58\\x6b\\xd7\\x68\\xc0\\xa7\\x48\\xdd\\x60\\xbd\\x54\\xb7\\xe6\\x40\\xb4\\xb4\\x1c\\x64\\x54\\x2f\\xa6\\x63\\x0b\\xb0\\x91\\xde\\xf7\\xe0\\x7e\\x47\\xbd\\x83\\x09\\xd5\\x2f\\xbe\\x7b\\x87\\x26\\xe8\\xad\\xd6\\xc5\\x60\\x9e\\xc7\\x7b\\x9e\\x27\\x86\\x1f\\x3c\\x26\\x86\\x1f\\xdc\\xb6\\x79\\x98\\x35\\x91\\x3c\\x6b\\xef\\x5b\\x69\\x63\\xfd\\x6c\\xbc\\xc1\\x38\\x0a\\x1f\\x50\\xf1\\x8d\\x18\\x3f\\x0f\\x5b\\x9b\\x7f\\x22\\xf9\\x00\\x71\\x66\\x2a\\xe7\\x18\\x06\\x8f\\x8a\\x5a\\xa7\\xdb\\xf1\\xe3\\xf3\\x1d\\xfa\\xd7\\x8f\\x3b\\xf4\\xaf\\x6f\\x13\\xa7\\x66\\xeb\\x4b\\xaf\\x76\\x92\\x3d\\x16\\x37\\xb3\\xa5\\x34\\xa9\\x14\\x5b\\x1b\\xcb\\xec\\x0a\\x6d\\x97\\x58\\xc6\\x24\\x5a\\x9a\\x10\\x7c\\xdd\\x0a\\x57\\xd5\\xa4\\xd8\\x42\\x0c\\x39\\xbc\\x85\\x8d\\x7d\\x58\\x2c\\x33\\x70\\xef\\x5a\\x6c\\xbc\\x78\\xa1\\x42\\xf3\\x23\\x92\\x52\\xb3\\x72\\x12\\x59\\x6f\\xca\\xba\\xa3\\x21\\x40\\xca\\xc5\\xb6\\x14\\x56\\x5b\\x78\\x66\\xcd\\xd4\\x68\\x5c\\x72\\x21\\x5a\\x3f\\x93\\xe6\\xc3\\xbd\\x64\\x01\\xf7\\x7e\\xa1\\xe1\\x67\\xb7\\x42\\xab\\x79\\x47\\x05\\x27\\xcd\\x60\\x39\\x4b\\x29\\x50\\x31\\x66\\xe6\\x68\\x22\\x87\\xd7\\x0f\\xeb\\xbe\\xbc\\x7f\\x46\\xcb\\x51\\x08\\x84\\x67\\x2d\\x47\\x1b\\x3e\\x63\\xad\\x0d\\x58\\xfa\\xdc\\xfb\\x59\\x72\\xac\\x97\\xa4\\xca\\xd9\\x69\\xec\\x5e\\x00\\xbd\\x94\\x38\\x1a\\x2d\\xad\\x54\\xf9\\xde\\x72\\x04\\x68\\x7d\\x38\\x83\\xd6\\xa9\\x1b\\xed\\x68\\x50\\xf7\\x86\\x4d\\x5b\\x52\\x9b\\x09\\x3d\\xb3\\x17\\xef\\xee\\x4b\\x83\\x5e\\x0a\\xa7\\x65\\xbd\\xe6\\x92\\xb7\\x66\\xef\\xcf\\x1e\\xcf\\xde\\x9f\\xbd\\xc0\\x5a\\x85\\xc1\\x60\\x8a\\x3d\\xc1\\xeb\\x85\\x7a\\x82\\xf3\\xcf\\x01\\x33\\x40\\x42\\x64\\x96\\x5a\\xc4\\xb4\\x3c\\x64\\x72\\xed\\x76\\xd5\\x17\\x4a\\xe9\\x73\\xda\\x28\\xfa\\x24\\x2e\\x4d\\xc4\\x67\\x29\\x1d\\x9c\\x97\\xe4\\xe2\\x59\\x6d\\xac\\xad\\x90\\x22\\xb9\\x9c\\xcb\\xd7\\x33\\x6d\\xca\\x80\\x55\\xde\\xa6\\xc3\\xd7\\x13\\xc2\\x30\\x0e\\x61\\x08\\xef\\xce\\x12\\x6a\\xa5\\x87\\x8a\\xc2\\xa7\\x13\\xde\\xc6\\x3e\\xd1\\xd7\\x31\\xf2\\x9c\\x83\\xf7\\x4c\\xbf\\x03\\x24\\x49\\xbf\\x42\\x76\\x8c\\x4c\\x57\\xc8\\x3b\\x2a\\xbd\\x04\\x8f\\x87\\x5a\\xa5\\x74\\xa8\\x55\\x10\\xe9\\x5a\\x5d\\x88\\x1a\\x61\\x9f\\xa2\\xa0\\xd7\\xe2\\x7b\\xda\\x92\\xc7\\xc5\\x39\\x61\\x3a\\x37\\x98\\xcf\\xb3\\x95\\x64\\x2e\\x14\\x28\\x3d\\xa6\\x96\\xa2\\xd3\\x07\\xc6\\x82\\x42\\xf6\\x50\\xd8\\xc1\\xc0\\xdc\\x4a\\x85\\xcc\\x41\\x35\\x98\\xe7\\xea\\xe9\\xf3\\x13\\xf3\\xc3\\xc7\\x13\\xf3\\xc3\\xdb\\x13\\x23\\x71\\x25\\x2b\\x1d\\xb2\\x17\\xae\\x01\\x59\\x05\\x76\\x34\\xb0\\x19\\x69\\xcb\\xce\\x00\\x93\\x11\\x7c\\xa8\\x88\\xb4\\x70\\x0c\\x5f\\xbc\\xc0\\x08\\xc9\\xa8\\x75\\xda\\x0e\\xdb\\xd2\\x98\\xc3\\x7d\\x59\\x3e\\xdc\\x9a\\x2e\\x48\\xde\\xcf\\x24\\x51\\xab\\x95\\x30\\x62\\x17\\x1a\\x72\\xb6\\xde\\x77\\x28\\x0d\\x43\\x5b\\x2d\\x5d\\x58\\x01\\x6a\\x00\\xd8\\x66\\x46\\x6f\\x1a\\x0e\\x22\\xf5\\xe0\\x4b\\xa4\\xee\\x39\\xac\\x25\\xb4\\x21\\x6a\\xa3\\xa0\\xfc\\xf0\\x3b\\x22\\x5e\\x50\\x7e\\xf1\\x68\\xb8\\x51\\x38\\x8c\\xd1\\xcf\\x0f\\xcb\\x8f\\x1e\\x0f\\xcb\\x8f\\x5e\\x80\\xc3\\x9d\\x9b\\x9b\\x9c\\xb5\\x0b\\x28\\x98\\xa8\\xeb\\xa5\\x9f\\xa9\\x3a\\x7f\\xd8\\xf6\\x62\\xd9\\x83\\xeb\\x8a\\xac\\xc9\\xe8\\x9d\\x2f\\x6e\\x37\\x28\\xe5\\xdf\\x3c\\x7e\\xf3\\xbf\\x79\\xe1\\xcd\\x5c\\x4b\\xbb\\x9f\\x95\\x3a\\x5e\\x98\\xc7\\x0b\\x89\\xe8\\x78\\x21\\xf5\\x4b\\x52\\xbd\\x90\\xe9\\xe2\\xb7\\x60\\xcf\\x9f\\x3f\\x7e\\xe1\\x9f\\xbf\\x40\\x9a\\x45\\x2f\\xc9\\x3b\\xbc\\x3c\\x68\\x39\\x1a\\xd7\\x62\\xa5\\x59\\x68\\x40\\x02\\xe6\\x86\\x93\\x4d\\x97\\x63\\x17\\xbe\\x2f\\x4d\\x59\\x7b\\x21\\x9a\\xc9\\xe2\\x8b\\x32\\xa5\\xc0\\xca\\x98\\x03\\x98\\xa7\\x7a\\x08\\xca\\x04\\x8e\\x5b\\x5e\\xcc\\x93\\xe1\\xc1\\x95\\xba\\xc8\\x42\\x59\\xd7\\x0a\\x87\\xa9\\x65\\xc1\\x54\\x87\\xe2\\xbb\\x36\\x1c\\x8b\\x2f\\x08\\xc0\\x29\\xf8\\x39\\xc9\\x24\\xc2\\x8e\\x23\\xdb\\x39\\x73\\xec\\x99\\x25\\x0b\\x53\\x1b\\xfc\\xf4\\x09\\x5b\\x4a\\xc5\\x06\\x88\\x66\\xc8\\x81\\x32\\x1c\\xdb\\x79\\x31\\x76\\x03\\xd4\\x8d\\xd1\\x10\\x02\\xc0\\xca\\x30\\xd4\\x13\\x15\\x02\\x33\\x82\\xa7\\x6c\\x21\\x92\\xa4\\x71\\x71\\x89\\x45\\x99\\xea\\xd8\\xd4\\x2a\\x9c\\xb4\\xbe\\x35\\xa6\\x75\\x59\\xf1\\x0d\\xba\\x5c\\x97\\xbd\\x40\\x40\\xf8\\x61\\xed\\xeb\\xcb\\x81\\x67\\x18\\x98\\x36\\x73\\x9f\\x99\\x51\\x4c\\x7e\\xab\\x85\\x6b\\xd6\\xcf\\xce\\x7e\\x09\\xc1\\xde\\x93\\x6e\\xd7\\x91\\x7f\\x7e\\x02\\xcf\\x8f\\x27\\xf0\\xfc\\x92\\x2d\\x9a\\x5b\\x3f\\xa7\\xe5\\xc5\\xad\\x9f\\xc5\\xa5\\xd6\\x8d\\x1c\\x54\\x5d\\x7f\\xd6\\xf2\\xac\\xd3\\xd7\\x95\\x7b\\x73\\x63\\xfb\\xc7\\x8f\\xdf\\xf9\\xe3\\xdb\\xef\\xcc\\xef\\x02\\x0c\\x14\\x74\\x10\\xe7\\x10\\x86\\x05\\x0b\\xbf\\xf4\\x33\\x25\\xe1\\x4f\\xcd\\xb1\\xce\\xe3\\x07\\xbd\\xa5\\xac\\xfe\\xdb\\xc7\\x6f\\xfe\\xb7\\xb7\\x81\\x89\\xf0\\xf5\\xcd\\x61\\x1b\\xf5\\x28\\x28\\x6d\\x3b\\xf5\\x28\\x3e\\x5a\\xc8\\x4d\\x6a\\xc8\\x73\\x0e\\x81\\x59\\x75\\x16\\x30\\x27\\x9b\\x96\\xcb\\xce\\xa3\\xc9\\xc7\\xb6\\xa6\\xb5\\x31\\x59\\xad\\x0d\\x9b\\xa4\\xd6\\x58\\x80\\xe0\\x9a\\xb2\\x9d\\x45\\x6d\\x97\\x92\\xf5\\x85\\x58\\x89\\x5a\\xad\\x97\\xe5\\x85\\xe9\\xbb\\xab\\x62\\xca\\xbd\\xfe\\x1e\\x8b\\xcd\\xb1\\x19\\x5c\\xfd\\x45\\xfb\\x4c\\x48\\x3a\\x7b\\xe1\\x5b\\xff\\xdd\\xe3\\x6f\\xfd\\x77\\xb7\\xb5\\x51\\x5d\\x56\\x01\\x19\\xbd\\xa9\\x65\\x8d\\x6a\\x8d\\x36\\xa6\\x75\\xf4\\x4b\\x84\\x6e\\xc6\\xd2\\x86\\xc6\\x36\\xfa\\xb1\\x57\\x49\\x34\\xc6\\x06\\x3b\\x2e\\xc5\\x46\\x25\\x36\\xfb\\x19\\x0e\\x5e\\xeb\\x59\\xcf\\xf7\\x68\\x7b\\xdc\\xa3\\xed\\xb6\\xbd\\xa2\\xf4\\xd0\\xc5\\x0e\\xbd\\xba\\x13\\x07\\x3b\\x54\\xaa\\xc9\\xbf\\xf1\\xbd\\xf7\\x8f\\x9f\\x7e\\x7f\\xfb\\xe9\\x02\\xe9\\xe3\\x9b\\x97\\xaa\\xc2\\xb1\\x21\\x7c\\xe2\\xe0\\x7e\\x7c\\xe9\\x88\\xbf\\xb1\\xde\\x37\\x78\\xfa\\x92\\xe4\\xe6\\x98\\xfe\\x7e\\x36\\xeb\\x1b\\xb6\\xe5\\x0b\\x70\\x4a\\x01\\xce\\x0e\\xee\\x29\\x76\\xf4\\xef\\xd6\\x97\\xff\\xc5\\xe3\\xbe\\xfd\\xc5\\x4b\\x54\\x46\\x45\\x65\\x3a\\xb6\\x65\\x22\\xed\\xbc\\x49\\x28\\x44\\x1b\\x1d\\x73\\x12\\x0a\\x17\\x49\\xb5\\x80\\x67\\xcc\\x95\\xdc\\xe8\\x16\\xb9\\xfd\\xe4\\xf1\\xcb\\x7f\\xf2\\x12\\x7c\\xc2\\x2e\\xc5\\x8e\\x86\\x15\\xe4\\xaf\\xa5\\x2a\\x79\\x04\\x78\\x50\\x01\\x5a\\xa5\\x86\\x7d\\x8c\\x63\\xf3\\x6f\\x79\\x6f\\x36\\x04\\x61\\xe8\\x64\\x40\\x89\\x9c\\xc4\\xba\\x7c\\xce\\xa9\\x9e\\x77\\x49\\xee\\xfb\\xa0\\x86\\xd5\\xd3\\xad\\x8d\\x5c\\x16\\x73\\x38\\x9a\\xc0\\x2d\\x9b\\xc3\\x11\\x5a\\x40\\x92\\x3c\\x55\\xc7\\x72\\xb9\\x76\\x80\\xee\\x62\\xdb\\x4a\\x07\\xdb\\x2e\\x91\\xa1\\xcc\\x13\\x38\\x9a\\xb8\\x5e\\x45\\x5d\\xee\\x10\\xac\\x80\\x5e\\x27\\xf7\\x8b\\x8b\\x3e\\xdc\\x43\\x90\\x33\\xef\\x39\\xb4\\x8d\\x5a\\xa8\\xd9\\xdb\\x48\\x9b\\x09\\x8d\\x90\\xc7\\x11\\x2b\\x23\\xbc\\x5e\\xc3\\xc1\\xbb\\x61\\xbf\\x35\\xb8\\xc1\\xa9\\x80\\x45\\x66\\x91\\x04\\x2e\\x16\\x75\\xdc\\x2d\\xc2\\xf5\\xd4\\x7a\\xc5\\x5e\\x9c\\xdc\\xac\\xbe\\xdb\\x9b\\x06\\xe3\\x62\\xe1\\x80\\x4b\\x02\\x33\\x63\\x8c\\x4a\\xe2\\x79\\x01\\xc4\\xe4\\x56\\x2f\\x64\\x6c\\x7c\\x6b\\x13\\xf6\\x59\\x3d\\xd2\\xa0\\x59\\x3d\\x5d\\xa3\\x74\\x83\\x47\\xff\\xe5\\xe3\\x09\\xfc\\xcb\\x17\\xdc\\x54\\xa2\\xd9\\xa2\\x60\\x3f\\x28\\xd8\\x4d\\xf7\\xf0\\x03\\x6e\\x01\\x89\\x2b\\xf6\\xe9\\x4b\\x92\\x60\\x7b\\x96\\x96\\x5b\\x7c\\xe9\\x90\\x08\\x0f\\xe9\\xb2\\xa3\\x35\\x60\\x4e\\xe6\\x5e\\xc2\\x6a\\x5d\\xef\\xa5\\x73\\xdb\\xe1\\x36\\x61\\x5a\\x6f\\x3a\\x2b\\x74\\xce\\x5e\\xfa\\x06\\xaf\\x77\\x91\\x55\\xbb\\xd5\\x3b\\x23\\xfa\\x72\\x31\\xad\\x8f\\x1e\\x78\\xe4\\x1c\\xd0\\x95\\x3a\\xed\\xab\\x61\\x59\\xca\\xc3\\x5d\\x11\\x3a\\x2e\\x25\\xca\\x84\\x87\\x08\\x84\\x67\\xbd\\x05\\x50\\x4b\\x7b\\x5c\\xc2\\x6e\\x0c\\xcf\\xfe\\x78\\x78\\xf6\\x17\\xd6\\x37\\xe2\\x01\\x0b\\x4d\\xaa\\x2f\\x3b\\x58\\x29\\x5f\\x05\\x01\\xb1\\xd3\\x2a\\x52\\x0b\\x1d\\xbe\\x27\\x3c\\xc7\\x72\\xbf\\xd9\\x88\\x86\\xb5\\x13\\x75\\xdf\\xe0\\x27\\x73\\x62\\xa3\\xad\\x3e\\xf0\\xc4\\xa5\\x26\\xd7\\x99\\xd2\\xe8\\xdb\\xa9\\xc4\\x35\\xc9\\xc1\\xfc\\xfb\\x6f\\x89\\xc2\\x26\\x97\\x12\\x99\\x34\\x09\\x7a\\x46\\xcc\\xcc\\xea\\xc4\\x25\\x7b\\xee\\x79\\x04\\x7e\\x75\\x69\\xa3\\xd6\\x32\\xe2\\x16\\xc5\\xd7\\x2d\\x1c\\x72\\x25\\x8a\\x3e\\xd5\\xfa\\xdd\\x22\\x8a\\x63\\x67\\x72\\xc1\\x75\\x10\\x05\\x1a\\x5c\\x6a\\x22\\xa2\\x63\\x02\\xb3\\x7a\\x58\\xfc\\xf1\\xa9\\xd9\\xf3\\xe2\\xcc\\x0f\\xf7\\x20\\x04\\xea\\x3b\\x8e\\x45\\x20\\x45\\x95\\xa0\\xea\\x92\\x62\\xec\\x87\\x41\\x4c\\x8e\\xd7\\x3c\\x21\\x0a\\x5d\\xf4\\x22\\x19\\xeb\\xe2\\x12\\x84\\x23\\x62\\x8a\\xd4\\x2a\\xe9\\xf5\\x8a\\xbd\\xda\\x35\\xb2\\xa5\\x7c\\xd5\\xe2\\xae\\x8b\\x85\\xc7\\x54\\x60\\x6f\\x59\\xcf\\x05\\x51\\x8c\\x45\\x14\\xa5\\xa7\\xb2\\xa0\\x07\\xc2\\xa5\\x30\\x17\\x51\\x94\\x9e\\xaa\\x6b\\x94\\xa8\\x3f\\xef\\x6e\\xff\\xef\\x1f\\xcf\\xfa\\xbf\\xbf\\xed\\x4e\\x2b\\xd1\\xcc\\xf3\\x2c\\x03\\x88\\xc5\\xe4\\x77\\xd4\\xfb\\x65\\x69\\xb0\\x5a\\xe3\\xc7\\xce\\x5b\\x21\\x2b\\x51\\x5f\\x9e\\x88\\x50\\x56\\x69\\x01\\x4b\\x82\\x56\\x99\\x0d\\x61\\x38\\xd4\\x47\\xcb\\x94\\x49\\xdd\\x14\\x7b\\x64\\x08\\xdc\\xa8\\xb9\\x2d\\xb5\\x19\\xa0\\x0b\\x3b\\xa8\\x97\\x7e\\x1e\\xa4\\xdb\\xd1\\x85\\x87\\x7b\\x19\\x52\\x3a\\xcf\\xd9\\x49\\xe1\\xa5\\x55\\xfa\\x4f\\x70\\x3d\\x62\\x00\\x56\\x26\\xd7\\x23\\x62\\xed\\x8a\\x66\\xdc\\x51\\xef\\x03\\x4e\\x57\\x70\\xac\\x39\\x94\\xc3\\x58\\xf1\\x7e\\xa5\\x44\\x46\\x29\\x98\\xa5\\xab\\xad\\xe9\\x2a\\xa5\\x64\\xc8\\x25\\xfc\\x06\\xa5\\xfc\\xd5\\xe3\\x31\\xfb\\xab\\xdb\\xce\\x4b\\xbd\\xf4\\x5f\\xdb\\xeb\\xa8\\x1c\\x2d\\xe1\\x6f\\xe3\\x88\\x0d\\x32\\x71\\x78\\x07\\x5a\\x26\\x58\\x9c\\x4b\\xdf\\x61\\xb8\\x36\\x83\\x9b\\x85\\x0f\\x9e\\x3c\\xe0\\xb9\\x3e\\x29\\xbd\\x8d\\x1e\\x40\\x3e\\x2b\\x54\\x12\\x34\\xee\\xd1\\x08\\x06\\x6a\\xa5\\x89\\xd0\\x40\\xf1\\x9c\\x6a\\x05\\xb9\\x34\\x27\\xbc\\x5d\\xd6\\x0a\\xb7\\x2b\\xdb\\xf7\\xe5\\xc2\\x3e\\xe0\\x0f\\x61\\x85\\xd1\\x4b\\x1e\\x2d\\xb4\\x5e\\x44\\xd3\\x85\\xcf\\xa3\\xfb\\x3e\\x3a\\x15\\x5a\\xaf\\x1e\\xc3\\xf0\\xc7\\xd8\\xbd\\x5c\\x68\\x1d\\xd8\\xbc\\x14\\x69\\xc9\\xe5\\xc8\\x88\\x3d\\x34\\xce\\xde\\x0c\\xbf\\xb8\\xc3\\x8d\\x64\\x29\\x79\\x08\\x19\\xf1\\xbe\\x16\\x7b\\x0f\\xdd\\x57\\x83\\x05\\x4e\\xb4\\x23\\x7d\\x6a\\xd2\\xe1\\x62\\x13\\x2d\\x83\\xa7\\x0f\\x6a\\x29\\xba\\x47\\x32\\x8c\\xf5\\xe9\\xa5\\xdf\\x96\\x46\\x4b\\x54\\xaa\\xe7\\x8a\\xe2\\x34\\x2d\\xea\\x2c\\x02\\x89\\x5a\\x50\\x9a\\xad\\x3a\\x40\\xd4\\xa3\\x71\\xe9\\xc1\\x23\\x5a\\x2e\\xdf\\xa8\\x80\\x99\\xe7\\x44\\x63\\xb7\\xe2\\x27\\x34\\x60\\x5a\\x3d\\xf9\\x94\\xcc\\x26\\x32\\x39\\xac\\x8d\\x98\\x94\\x76\\x47\\xe9\\x10\\xb9\\x6b\\xcb\\x98\\x9a\\x4a\\x9c\\x45\\x79\\x2f\\xac\\x82\\xc8\\x88\\xfa\\x8f\\x60\\x09\\x83\\x3d\\x09\\x34\\x3d\\x18\\x2f\\xa0\\xb0\\xb5\\x75\\x18\\xb6\\xb6\\xd0\\x32\\x67\\xca\\xf2\\xd8\\xcb\\xb4\\xc6\\x39\\xe6\\xb1\\x1c\\x9e\\x5f\\x54\\xf3\\xf1\\xa2\\x9a\\x2f\\xb0\\xdf\\xfa\\xd2\\xd2\\x2d\\x43\\x8a\\x14\\x75\\xe8\\x52\\x35\\xad\\x5f\\x95\\xcf\\xec\\xf8\\xe5\\xf9\\x17\\xfd\\xf4\\xf1\\x8b\\x7e\\xfa\\x3d\\x6e\\x33\\x85\\xf0\\xa8\\x8f\\x6c\\x9a\\xb4\\x97\\x22\\xdd\\x10\\x69\\xd8\\x9d\\x1b\\x47\\x2c\\xf7\\x67\\xc4\\xce\\xf2\\x72\\x7f\\xa6\\x43\\xed\\x94\\xa5\\x76\\x2e\\xaf\\x68\\xc6\\x55\\x31\\xc9\\x1d\\x66\\xe2\\x52\\x3f\\x35\\x69\\xa3\\xab\\x7e\\x20\\x9e\\x9b\\x04\\x7e\\xdc\\x6b\\x98\\x95\\x80\\x7c\\x9a\\x20\\xae\\x56\\xd6\\x8e\\x32\\x1c\\x8a\\x06\\xde\\xb1\\xd4\\x39\\x3a\\xd4\\xb9\\xfa\\x3d\\xe1\\x8d\\x50\\x6a\\x64\\x2a\\xdd\\xd5\\x7d\\x69\\xe8\\xf4\\x96\\xcb\\x7d\\x73\\xb9\\xf8\\x3c\\x3f\\x26\\x97\\xc7\\x63\\x72\\xb9\\xcd\\x05\\x89\\x9b\\xb8\\x6d\\x10\\xbb\\x6b\\xb0\\x23\\xb6\\xe2\\x1f\\x35\\x11\\xb9\\xe9\\xe1\\x7f\\x2e\\x44\\xdb\\x71\\xed\\xf3\\x6f\\xfc\\x0f\\x8f\\xdf\\xf8\\x1f\\x5e\\xf4\\x67\\xb3\\x4e\\xdb\\xf8\\x2e\\x4a\\x9c\\x46\\xa9\\x52\\x7d\\xb4\\x7e\\x8e\\x18\\x9b\\x73\\x6f\\xc3\\x73\\x53\\x87\\x6f\\x93\\xe8\\x76\\x45\\xb3\\x1c\\x85\\x7a\\x0b\\x82\\xfa\\xef\\x58\\x83\\x49\\xb6\\xe3\\x99\\xcf\\xf7\\xec\\x3f\\x3e\\xee\\xd9\\x7f\\xbc\\x3d\\x16\\xac\\xad\\xd8\\x72\\xc9\\x98\\xeb\\xc2\\x8b\\x2d\\x82\\x5b\\x48\\xb1\\xee\\x51\\x83\\x32\\xc8\\x11\\x76\\x66\\x46\\x9b\\x28\\x4c\\xd3\\xbe\\x15\\xcd\\xd7\\x35\\x7e\\x78\\x6f\\x8b\\xe6\\x76\\x3c\\xed\\xf9\\x3e\\xfd\\xa7\\xc7\\x7d\\xfa\\x4f\\x2f\\xcc\\x8f\\xb7\\xf0\\xbe\\x0d\\x1a\\xbf\\xdb\\xa7\\x82\\x98\\x2c\\x5b\\x08\\x7d\\x37\\x4f\\xde\\x8c\\xc7\\xa6\\x76\\x9d\\x2f\\xd9\\x8e\\x7b\\x9f\\xef\\xc1\\xc3\\xe3\\x1e\\x3c\\xdc\\xf6\\x99\\x81\\x51\\x01\\x4a\\x10\\x10\\x64\\xa7\\x9a\\xac\\x46\\xce\\x1b\\x68\\xa4\\x28\\xb5\\xf4\\xb1\\xeb\\x8a\\xac\\xb9\\x2c\\x3a\\xe3\\x91\\xdb\\x71\\xef\\xf3\\x3d\\xf8\\x9f\\x1e\\xf7\\xe0\\x67\\x1f\\x5e\\x7d\\xfe\\xd7\\xaf\\xbf\\x79\\x31\\x52\\x6d\\xc5\\x96\\xe5\\x38\\xbb\\xca\\xe5\\x44\\xe2\\xe7\\x94\\xb8\\x9c\\x84\\x05\\x76\\x29\\xf2\\x08\\xfc\\x52\\xd7\\x3c\\xff\\xd2\\xff\\xf9\\xc9\\x4b\\x5f\\x7d\\xfe\\xd7\\x2f\\x87\\x63\\xf0\\xa1\\x15\\x9e\\xd5\\x78\\xed\\x7f\\x23\\x38\\x23\\xfb\\xd8\\xae\\xa7\\x9e\\x7f\\xd3\\xff\\xf2\\xec\\xe7\\xbd\\x1c\\x53\\xa6\\x18\\xd8\\xfa\\x08\\xce\\xe3\\xb3\\x7a\\x5f\\x1f\\x6a\\xc8\\x10\\x91\\x03\\xbf\\xd4\\x35\\xcf\\xbf\\xf5\\x7f\\x7d\\x1a\\x91\\xf5\\xf9\\x9b\\x37\\x9f\\xbf\\xf9\\xf0\\xf9\\xb7\\xb7\\xf3\\x6c\\x28\\x5b\\xf3\\x94\\x33\\x73\\xdf\\x4c\\x8e\\x65\\x16\\x3d\\xeb\\x6b\\x1d\\x67\\x92\\x79\\x73\\x65\\x18\\xac\\xb6\\x65\\x6f\\x66\\xdb\\xe0\\x8a\\x59\\xbf\\x1c\\x0f\\x78\\xbe\\x43\\xff\\xdb\\xe3\\x0e\\x7d\\xfb\\xee\\x8b\\xd7\\x1f\\x3e\\x7e\\xfe\\xfe\\xc3\\x0b\\x3e\\xc8\\xdd\\xb3\\x9d\\x28\\xf3\\x4c\\x06\\x35\\xba\\x7b\\x5e\\xea\\xef\\xe7\\x5f\\xf0\\xbf\\x3f\\xdd\\xee\\x7f\\xf5\\x82\\x7f\\x73\\xc2\\x57\\xb5\\xdb\\xd9\\x8b\\xc1\\x2c\\x3d\\x32\\x11\\x01\\x75\\x3d\\xf3\\xfc\\x4b\\x5e\\x3d\\x19\\xd6\\xdb\\x2f\\x50\\x6b\\x7d\\xcf\\x12\\xa8\\x1d\\x9e\\xa0\\x1a\\xcb\\x66\\xdf\\x6d\\x5f\\xd1\\x45\\xcb\\x79\\x38\\x80\\x0b\\x28\\xe0\\x15\\x7a\\xa2\\x0e\\x1f\\x12\\x28\\x09\\x7c\\x38\\xbe\\x5b\\x34\\x85\\x37\\x7f\\xf0\\x24\\x87\\x20\\x86\\x03\\xbc\\x94\\x26\\x26\\xda\\x34\\x10\\xcb\\xd4\\xcc\\x57\\x2e\\x03\\x77\\x3a\\x17\\xda\\x0e\\xe1\\x1d\\x98\\x91\\x12\\x1a\\x57\\x7a\\x4e\\xcb\\x6c\\xa3\\x10\\x83\\xf6\\x3a\\x36\\xeb\\xa5\\xfc\\xe6\\x54\\xd5\\xb5\\xbd\\xdb\\xf3\\x2e\\x4b\\x9d\\x1d\\xde\\x22\\xe8\\x4c\\x16\\x7b\\x29\\x7b\\xf0\\x5d\\x4a\\x6f\\x39\\x0a\\x57\\x48\\x1b\\xe3\\x88\\x48\\xe8\\xa1\\xd3\\xa1\\x09\\xf6\\xc2\\xec\\x81\\xc6\\x8a\\xf8\\xec\\xb0\\xc2\\x22\\x2f\\xc5\\xa1\\x20\\xd6\\xdd\\xd8\\xed\\x0f\\xe9\\x17\\xd6\\xdc\\xd7\\xd6\\x7f\\x60\\x54\\xa0\\x65\\x1e\\xb0\\x3a\\x2e\\xfd\\x9c\\x6a\\x0f\\xf7\\x48\\x4a\\x11\\xb2\\x7b\\x5f\\xae\\xb7\\xd8\\x18\\x48\\x85\\xbb\\x24\\x93\\xce\\x40\\x62\\x97\\x00\\x36\\x96\\xee\\x17\\xeb\\xe3\\xec\\x96\\xbb\\x61\\x57\\x7e\\x60\\x7b\\x5b\\x9d\\xa7\\x84\\x94\\xf6\\xb0\\xd7\\x91\\x11\\x35\\x50\\x12\\x35\\xe0\\x4e\\xcc\\x94\\x53\\x43\\xef\\x28\\x6d\\x1e\\xef\\x7b\\x7e\\xee\\x7f\\xf6\\x84\\x90\\x5f\\x00\\x32\\x1d\\x4c\\x78\\x47\\x03\\xab\\xab\\xc7\\x68\\xd2\\xc7\\x0a\\xca\\x17\\x9b\\xe9\\xa5\\x45\\x4e\\x5f\\x66\\xc0\\xdd\\x72\\xa1\\x0a\\x38\\x34\\x19\\x5c\\xc7\\x89\\x1c\\x26\\x9e\\x52\\x49\\x72\\x85\\xfb\\xca\\x88\\xcb\\x88\\xb1\\xc3\\xbd\\xa2\\x4b\\x36\\xa3\\x85\\xfc\\xa7\\x2f\\x8c\\xc8\\xf0\\x34\\xc2\\x14\\x24\\x5c\\x4f\\x9d\\xf1\\xc6\\x81\\xbd\\xf3\\xc8\\x16\\xd0\\xfd\\xb0\\x4d\\xdb\\x2f\\x86\\x34\\x33\\x25\\x31\\xad\\xef\\xe9\\x71\\x57\\x14\\x9d\\xf0\\xda\\x75\\xa8\\x10\\x08\\x09\\x92\\x42\\xaf\\x31\\x9d\\x46\\x2b\\x00\\x6d\\xa2\\xb0\\xd3\\x28\\xbc\\x70\\x03\\x36\\xf4\\x70\\xbb\\x08\\x25\\x96\\x2c\\xdb\\xf2\\x80\\x84\\x79\\x1a\\xd6\\x1e\\xdb\\x61\\xa3\\x2c\\xf8\\x28\\xde\\xb8\\x33\\x20\\x15\\x97\\x56\\x69\\xda\\x64\\x74\\x68\\x34\\xc6\\xe3\\x62\\x76\\x43\\x46\\x7d\\xfe\\xc4\\x7f\\xef\\x05\\xc9\\x9d\\x88\\x55\\xf7\\x60\\xc4\\xaa\\xc3\\x4d\\xb7\\xd6\\x4b\\xc6\\xd2\\x22\\x25\\xe0\\xaa\\x8e\\xad\\x62\\x88\\x29\\x60\\xbf\\x44\\x7f\\xe0\\x6a\\xde\\x98\\x3a\\x74\\xfb\\xea\\x57\\xe7\\x56\\x34\\xd5\\x8f\\xc0\\x37\\x5b\\x81\\x6f\\x44\\x8d\\x79\\x32\\x7c\\x09\\x06\\xf2\\x0c\\x08\\xf1\\x2c\\xdd\\xcf\\x98\\x2f\\x66\\xb9\\x57\\x1b\\x8e\\x02\\x36\\x00\\xf1\\xeb\\xda\\xa1\\x34\\x91\\xfb\\xa0\\x5b\\x22\\x56\\x73\\xcd\\x17\\x2f\\x92\\xb9\\xc3\\xa6\\x41\\x0f\\x9e\\xa3\\xae\\x45\\xe8\\x8c\\x66\\xcb\\xab\\xc7\\xbd\\x0f\\x3b\\xa7\\xd9\\x9e\\xe6\\x88\\x76\\x4e\\xed\\x2d\\xa2\\xa0\\x21\\xb7\\x54\\x47\\x8e\\x94\\x2c\\xc4\\xce\\xd5\\xf3\\xb1\\x9b\\x71\\x1d\\x9b\\xd5\\x52\\x88\\x81\\xb4\\x1b\\x31\\xc6\\x94\\x84\\x39\\x62\\x8a\\x2f\\x4b\\x90\\x95\\x4a\\xee\\x01\\xcf\\x69\\xa9\\x35\\x3a\\x04\\xd7\\x72\\xd2\\xac\\x7b\\xb9\\xd3\\x3c\\x06\\xf5\\xf9\\xa9\\xf9\\xe2\\x49\\x8a\\x9d\\xdb\\x44\\x51\\xaa\\xa1\\x8e\\xbd\\x8e\\x98\\x1e\\xe4\\x63\\x50\\x84\\xf4\\x0c\\x1d\\x53\\xb0\\x2f\\x7c\\xc4\\x6e\\x2e\\x76\\x02\\x49\\x53\\xec\\xe4\\x3a\\x36\\xc5\\x47\\x47\\xea\\xa2\\x06\\xea\\x3e\\x8a\\x4f\\x18\\x6f\\xcb\\xad\\xa9\\xef\\x91\\xc5\\x67\\xdb\\xda\\x95\\x9f\\x66\\x47\\x08\\x91\\x2d\\xe2\\xaa\\x37\\x30\\x4d\\xae\\x8b\\xc5\\x57\\x00\\x42\\xb1\\xa6\\xea\\x18\\xe7\\xc5\\x74\\x3c\\xdc\\x23\\x2e\\xa0\\x18\\x85\\x73\\x2b\\xc5\\x5f\\xc2\\xef\\x04\\x11\\xd5\\xbd\\x71\\x8d\\xe3\\xc8\\xc6\\x5d\\xe1\\x30\\x04\\xa8\\x3e\\x96\\x19\\x1e\\xb6\\x3b\\x22\\xf4\\x50\\x7a\\x5c\\x22\\x62\\x8f\\x91\\xd0\\x4c\\xeb\\x5c\\x06\\x4d\\x27\\x5d\\x24\\x84\\xd5\\xe5\\xc8\\x2f\\x05\\x67\\xc9\\x22\\xbb\\xbe\\x7c\\x70\\x3c\\x63\\xc5\\x26\\xe8\\xb8\\x18\\xdf\\x90\\x74\\xaf\\x9f\\xb8\\xd4\\xdd\\x26\\x87\\xc3\\xab\\xb4\\xa4\\x39\\x94\\x16\\xed\\xdf\\x65\\xcb\\x91\\x0e\\x69\\xc2\\xc3\\x56\\x08\\x46\\xe7\\x8b\\x1d\\x21\\x18\\x98\\x1e\\xd8\\xe7\\x6c\\x72\\x28\\x02\\x44\\x74\\x45\\x83\\x09\\x72\\x94\\xac\\xa5\\xab\\xe3\\x60\\x35\\xd8\\xa7\\x73\\x99\\x23\\x47\\x1b\\xc6\\x6b\\xc5\\x42\\xbd\\xa7\\xe2\\xc3\\x1e\\x17\\xf5\\xd2\\x84\\x6a\\xa9\\x65\\xd3\\x2e\\xb5\\xcc\\x10\\x73\\xa3\\x96\\xd8\\x7d\\xc7\\x9c\\x0f\\x9d\\x1e\\x02\\xf7\\xf5\\x70\\x85\\xfb\\x7a\\xa2\\xc3\\x81\\xed\\x5f\\x81\\x89\\x6d\\x58\\x11\\xf4\\xf2\\x70\\x5e\\x56\\x03\\x58\\x5f\\xc6\\x1c\\xd8\\xf0\\x80\\xaf\\xf8\\x89\\xaf\\xfe\\xb4\\x0f\\xf7\\x45\\xbd\\x20\\x88\\xec\\x8b\\x20\\x8a\\x9f\\xd5\\x84\\x7a\\xaf\\x8e\\x23\\xcd\\x4c\\x98\\x21\\xcb\\x8c\\x2b\\x9f\\x33\\xfc\\xe2\\xde\\xf7\\x44\\xa0\\x47\\x51\\x20\\xa4\\x27\\x78\\x56\\x0a\\x2f\\x7e\\x98\\x39\\x8f\\xe7\\x3e\\x3f\\x41\\x3f\\x7f\\x12\\x69\\xf5\\x02\\xe4\\x8a\\xd6\\x2f\\xa3\\xeb\\x99\\xc4\\x2f\\xc5\\x88\\xce\\xca\\x71\\x21\\xd2\\xb1\\x2b\\x6c\\x37\\xa6\\xad\\x06\\x09\\xb6\\x58\\xec\\x1e\\x6a\\x89\\xf9\\x21\\x8d\\xac\\x7a\\x95\\x45\\x48\\x49\\xfb\\x30\\x42\\x63\\xa5\\x73\\x21\\x0b\\x9a\\xf0\\x1a\\x23\\x53\\xdf\\xa8\\x96\\x38\\x89\\xf9\\x8e\\x8d\\x4a\\x2a\\x82\\x47\\x5a\\x1a\\x92\\xb0\\x65\\x71\\x95\\xd4\\x3d\\x4a\\xea\\x94\\x64\\x04\\x53\\x12\\x96\\xe9\\x0e\\xbf\\x81\\xb1\\x7a\\x06\\x82\\xab\\xbe\\xba\\x97\\x80\\x56\\xbe\\x01\\x3d\\xbf\\x7c\\x02\\xc4\\x5e\\x60\\x09\\x7a\\xb0\\x04\\x3d\\x58\\x82\\x2e\\x96\\xa0\\x7c\\xb0\\x84\\x71\\xb0\\x04\\x3f\\xc4\\x9b\\xdb\\x15\\x61\\x60\\xd6\\x7d\\x4c\\x04\\x2a\\x85\\x2e\\x5d\\x78\\xf5\\x32\\xe2\\x52\\xb2\\xb7\\x47\\xb4\\x13\\xdc\\x08\\x95\\xda\\x89\\x5c\\xe7\\xa8\\x86\\xf4\\x98\\xf5\\xa5\\x27\\x19\\x06\\x3c\\x74\\x82\\xa7\\xa5\\x2a\\x1a\\x0d\\x31\\xf3\\x4a\\x01\\x6a\\x3c\\x49\\xfa\\xe4\\xe8\\xed\\x24\\x45\\x2e\\x10\\xd2\\xea\\x1b\\x8f\\xb8\\x3b\\x51\\x97\\x5d\\xac\\x30\\x5b\\x58\\xd3\\x15\\x1a\\xee\\x08\\x33\\x3c\\x31\\x12\\x0d\\xad\\x46\\x01\\xe2\\x76\\x62\\xee\\x33\\xdc\\xeb\\xe2\\x0e\\xbf\\xb4\\x53\\x8e\\x25\\x8c\\xe4\\x32\\x1c\\x23\\x5f\\x0c\\xbd\\xf8\\x56\\x9f\\x66\\x79\\xf0\\xad\\x63\\xef\\x24\\xc6\\xe2\\x5b\\x7c\\xf0\\x2d\\x3b\\xf8\\x96\\xfe\\x2e\\xdf\\xd2\\x83\\x6f\\xe9\\xc1\\xb7\\x8a\\x97\\x17\\xdf\\x32\\xf0\\x2d\\x43\\x9e\\x2c\\x85\\x18\\x47\\xb2\\x2b\\x04\\x38\\x7b\\x43\\x12\\x17\\xea\\xe8\\x8b\\x74\\xb9\\x44\\xd2\\x9e\\xdd\\xe0\\x01\\x1d\\x26\\xcb\\x70\\xc5\\xb4\\xf8\\x96\\xd9\\xdd\\xe2\\x5b\\x71\\xf0\\xad\\x58\\x7c\\x2b\\xfb\\xc1\\xb7\\xf4\\x65\\xbe\\xf5\\x8b\\x27\\x09\\x04\\x5e\\x48\\x97\\x85\\x10\\xd2\\x5d\\xad\\x23\\xcf\\x4b\\x83\\x5b\\x7b\\xb7\\x40\\x0c\\xd5\\xe2\\x3e\\xe3\\x3b\\xa0\\xa3\\x2b\\xd0\\x00\\x71\\x83\\xbd\\xf7\\x15\\x76\\x93\\x48\\x36\\x86\\xa0\\x80\\x58\\x52\\xe2\\xe2\\x3e\\xf6\\x34\\xb8\\xf5\\x36\\x18\\xd0\\xc2\\xe0\\x54\\x90\\xf0\\x16\\x95\\x25\\x3f\\x41\\xd6\\x7e\\xc8\\x4f\\x47\\x64\\x42\\x86\\xce\\xea\\x51\\x24\\x36\\x1b\\xcd\\xae\\x68\\x4c\\x2f\\xe3\\x96\\xe7\\xcb\\x9b\\xc7\\x9f\\xfa\\xe6\\xb6\\x5a\\x09\\xcf\\xad\\xe4\\x73\\x94\\x5c\\x1b\\x79\\x26\\xea\\x76\\xe9\\x67\\xee\\x81\\x3f\\x4d\\xe5\\x92\\xa5\\x94\\xd5\\xdf\\x3d\\xf9\\xe1\\xde\\x40\\xcc\\xce\\x3b\\x1a\\x4a\\xd9\\x90\\x9b\\x46\\x4d\\x57\\x2c\\xb6\\x0e\\xda\\x03\\x7e\\xb7\\x83\\x0e\\x07\\x1a\\x33\\x64\\x69\\xc2\\x5d\\xab\\xd1\\xbd\\xad\\x5d\\x94\\xe8\\x47\\x04\\xb7\\xc8\\x4a\\x20\\xc6\\xd8\\xb5\\x1a\\x2b\\xea\\xf8\\xfa\\xae\\xe7\\x3f\\xf2\\x3f\\x3f\\xfe\\xc8\\xff\\x7c\\x7b\\x3e\\x57\\x5a\\x05\\x3e\\xa7\\x05\\xb2\\xb7\\xa5\\x45\\xa9\\xcf\\x02\\x0f\\xa8\\x53\\x81\\x8c\\x00\\x6d\\x62\\xb7\\x8d\\x8b\\x00\\x0b\\x2c\\x15\\x49\\x4a\\xec\\x2b\\x4d\\x4a\\x2d\\x50\\xb2\\x6a\\x28\\xf6\\x04\\x4f\\xca\\x1d\\x9a\\xf7\\x89\\xd9\\x77\\xd6\\x7a\\x0e\\x8f\\x06\\x6a\\x65\\xa1\\x29\\x45\\x65\\x2c\\x86\\x10\\xc8\\xa2\\x44\\xc4\\x4e\\x9d\\x58\\x12\\x79\\x84\\xaa\\x81\\xe8\\xea\\x13\\x73\\x40\\xfe\\x9c\\x68\\x10\\xe2\\x07\\xaa\\x63\\xd3\\x09\\xd4\\x8a\\xb1\\x2f\\xc2\\x38\\xc6\\x7e\\xd8\\xdd\\x1a\\x7b\\xa4\\xe3\\xa3\\x6c\\xbe\\xf2\\x3f\\x29\\x7c\\xfa\\xd7\\xd8\\x8f\\x5c\\x63\\xbf\\x02\\x3f\\xcc\\x26\\xf2\\x20\\xd6\\x5d\\xab\\xd1\\xbd\\xe5\\x72\\xd1\\xec\\xeb\\xae\\x1a\\x7b\\xb0\\xda\\xfa\\x1c\\x3c\\x10\\x63\\x5f\\xaf\\xb8\\x39\\xf6\\x7f\\xfd\\x78\\xec\\x5f\\x48\\xb5\\xc2\\xd6\\x34\\x64\\x93\\x52\\x7b\\x74\\x60\\x05\\xfb\\x75\\x05\\xdb\\xc5\\x85\\x60\\x33\\x0a\\xd5\\xb5\\xcf\\x0d\\x1e\\x4a\\x9d\\x37\\x87\\x03\\x22\\x6f\\x44\\xee\\xad\\x9f\\xd3\\x73\\x3b\\x9e\\xf5\\x7c\\x8f\\xde\\x3e\\x09\\x38\\x78\\x21\\xb6\\xb8\\x90\\xb1\\xf8\\xef\\x2c\\x79\\x82\\x57\\xd3\\x18\\xdf\\x2d\\x79\\x12\\x89\\xf5\\x83\\xdd\\x0a\\xb6\\xfe\\xea\\xf1\\xfb\\x6e\\xdb\\x35\\x78\\xac\\xd5\\xb7\\xf1\\x18\\x88\\xbe\\x12\\x04\\x29\\x09\\x21\\x45\\x15\\x75\\xf7\\x69\\x64\\x8b\\xad\\xd8\\x55\\x7f\\x02\\x42\\xef\\x61\\xd3\\x47\\xb6\\x91\\x63\\x47\\xd8\\x70\\x47\\x72\\x09\\xa0\\x51\\x9a\\xe3\\xaa\\xf7\\xc2\\xa3\\xb3\\x6e\\x1a\\x35\\xf5\\x3d\\x8b\\xf3\\x00\\xcd\\x32\\x76\\x87\\xa4\\x78\\xd9\\x5c\\x89\\x29\\x46\\xc7\\x96\\xcf\\xb8\\xc4\\xe0\\x7d\\x2c\\x17\\x49\\xf8\\x58\\x66\\xd2\\x72\\xd7\\xef\\x25\\x0e\\xc0\\x84\\xee\\xc2\\x1c\\x51\\xf6\\xc1\\xb5\\x98\\x8a\\x2b\\x58\\x57\\xdc\\x59\\xec\\x1c\\x21\\x7c\\x31\\x5a\\x66\\x9f\\xa5\\x63\\xd6\\x9d\\xe2\\x0b\\x5a\\x8a\\x0a\\x50\\xca\\x5a\\x6b\\x80\\xc9\\xba\\x84\\x38\\x8f\\x1b\\xd3\\xf7\\xee\\x49\\xf8\\xdc\\x6d\\x62\\x46\\xae\\xc5\\xe4\\xad\\xb4\\x54\\x70\\x69\\xc0\\x30\\x02\\x8a\\xbe\\x72\\x69\\xbd\\x72\\xe9\\xb8\\x72\\x69\\x5b\\x6e\\x91\\xd8\\x40\\xeb\\x5d\\x8a\\x4b\\x77\\xc0\\x62\\xea\\x99\\xcd\\xc3\\xd1\\xc9\\x01\\x6f\\xbe\\x84\\x8d\\x60\\x80\\x82\\xa2\\xd4\\xb7\\xd1\\x5b\\x9a\\xc3\\x2f\\x34\\x0b\\x26\\x42\\xcb\\x29\\xa9\\x9d\\x07\\x97\\x5e\\x8f\\xaa\\x35\\x1e\\xf1\\x1d\\x97\\xae\\xef\\x95\\xb8\\x61\\x0d\\x7e\\xff\\x24\\x53\\xc7\\x0b\\xda\\x3c\\x35\\x33\\xda\\xeb\\xe8\\x0e\\x0b\\x74\\x0b\\x5f\\x89\\xe5\\x86\\x2a\\x42\\x8a\\xb1\\x95\\x8a\\x3d\\x36\\x7c\\xb5\\x1c\\x8a\\x4b\\x1e\\xa9\\x29\\xf0\\xd5\\x75\\x2d\\x54\\xcd\\xba\\x99\\x88\\x4a\\x09\\x27\\x04\\x20\\xe3\\x8f\\x65\\x4e\\x49\\x6e\\x42\\x2b\\x5e\\x9e\\x24\\x66\\x96\\x46\\x4d\\x48\\x63\\x02\\x6f\\xd4\\xe1\\x4b\\x05\\x85\\xff\\x17\\xdc\\x86\\x80\\x08\\xd4\\x71\\x17\\x7a\\x2a\\xfd\\x62\\x46\\x0f\\xf7\\x62\\xfd\\x0e\\xd1\\xcd\\xd6\\x97\\x76\\x57\\x10\\xba\\x10\\x01\\x09\\xf6\\x37\\x10\\x32\\x86\\x4d\\x07\\x5b\\x2a\\x73\\x1e\\x2a\\xb3\\x20\\x24\\x72\\xc2\\xcb\\x33\\x1c\\x61\\xf1\\x75\\x5f\\x46\\x5c\\x1f\\xbe\\x57\\xdb\\x8b\\x7b\\xfb\\x4a\\xf3\\xb0\\x8c\\x05\\x0c\\x6e\\x56\\xcb\\xb1\\x46\\x02\\xa0\\x5b\\x0d\\xa0\\x5b\\xe1\\x34\\xd9\\xf1\\xee\\xba\\x4e\\xdc\\x71\\x5f\\xf5\\xed\\x18\\x84\\xe7\\x27\\xe9\\xeb\\x27\\x59\\x81\\x5e\\x32\\xb9\\x00\\x25\\xec\\x68\\x5c\\x4d\\x53\\x6b\\x2c\\x07\\xaf\\xb1\\x44\\x3e\\x80\\xe9\\x71\\xe8\\x44\\x79\\x44\\xda\\xc1\\x86\\x82\\xa5\\x33\\xfc\\x72\\x52\\xf2\\xc5\\x20\\xd7\\xe2\\xf1\\xb5\\xca\\x43\\xae\\xb9\\x4f\\x0d\\x76\\x25\\xf8\\x93\\xf8\\x4a\\x65\\xc2\\xcb\\x07\\x1f\\xf3\\x6d\\x79\\x35\\xba\\x70\\x1b\\xd6\\x17\\x1f\\x88\\xf0\\xb9\\xfa\\x77\\x7c\\xea\\x7d\\xba\\x60\\x49\\xa5\\xcb\\x9d\\xb3\\xb6\\xd4\\x5c\\xe3\\xd8\\x97\\x26\\x08\\x34\\x12\\x09\\xcf\\x13\\xac\\x73\\x1e\\x6b\\x9d\\x1f\\x5b\\x89\\x58\\xe7\\x49\\x17\\x1e\\xb1\\x03\\xe1\\x29\\x35\\x0d\\xc7\\x0e\\xe1\\xda\\x44\\xa2\\xdd\\x23\\x56\\xba\\x83\\x3a\\xdf\\xfb\\x4a\\x77\\x80\\xad\\xfc\\x6c\\x32\\x18\\x29\\x08\\xaf\\x8b\\xe5\\xd9\\xb1\\xff\\x9b\\x27\\x41\\x4b\\x2f\\xc3\\x78\\xeb\\x07\\x8c\\x97\\x43\\xb3\\xb7\\x59\\xe8\\x77\\xc1\\x78\\xb9\\x6a\\xf6\\x71\\x85\\xf1\\x74\\x85\\xf1\\xb4\\x0c\\x58\\xb9\\x5c\\x05\\x56\\x02\\xaf\\xef\\x94\\x0d\\xcc\\x46\\x4a\\xbf\\x94\\x58\\x2d\\x44\\xbb\\x42\\x9c\\xc6\\x34\\xb3\\x03\\x22\\xeb\\x23\\xd5\\x5e\\xc6\\x6f\\x55\\x7b\\xea\\x07\\x44\\x5e\\x86\\xa5\\xfb\\x82\\x11\\xc6\\x03\\x70\\x62\\x99\\x3b\\xe2\\x50\\xed\\x17\\x41\\x2c\\x73\\x47\\x87\\xe4\\xc7\\x00\\x8e\\x23\\x5f\\x84\\x06\\xa0\\x33\\x36\\x3d\\x87\\x5d\\xe2\\x90\\xf1\\x59\\x7c\\x40\\xaf\\xd6\\xb1\\x3c\\xcc\\x2e\\x74\\x98\\x5d\\x04\\x1c\\x5d\\x6b\\x72\\xbb\\x20\\xf8\\xdc\\x73\\x20\\xe3\\xdb\\xd5\\xf4\\xf6\\xec\\xa0\\x7f\\x78\\x3c\\xe8\\x2f\\x24\\x2b\\x1e\\x79\\x08\\x9f\\xc3\\x82\\xd4\\x06\\x22\\x72\\x80\\x7f\\x61\\x66\\x1a\\xba\\x78\\x2c\\xf5\\x84\\xbb\\x02\\x4c\\x85\\xb6\\x2d\\x74\\xac\\x7d\\x1f\\x06\\x94\\x8c\\x1c\\x1d\\xe9\\x06\\xcc\\x58\\x7f\\x7b\\xfd\\x4e\\x86\\xfc\\xb8\\x8b\\x2d\\x4b\\x3f\\x98\\xa9\\xf1\\xd8\\x96\\xe9\\x58\\x76\\x87\\xb3\\x56\\xa7\\x86\\x71\\xea\\x46\\xf3\\xda\\xa5\\xe7\\xbf\\xec\\xe3\\x93\\x68\\xcf\\x17\\xf6\\x05\\x6b\\x9c\\x65\\xaf\\xa3\\x20\\x32\\x7c\\x20\\xa4\\x09\\x36\\xde\\x14\\x30\\x19\\xa5\\x22\\x0e\\x6b\\xaa\\x63\\x87\\x9d\\xd7\\x07\\xb2\\x03\\xe8\\x88\\x59\\x52\\xde\\x5c\\x91\\x0a\\xd6\\x4d\\xa1\\xb6\\x45\\xe8\\x5e\\x47\\xd8\\x13\\x8a\\x59\\x8d\\xb1\\x72\\x30\\xf7\\xae\\x2b\\xe1\\x24\\x44\\xfd\\x31\\x94\\x7b\\x88\\x5d\\x19\\x78\\x5f\\xa7\\x8e\\x4c\\x07\\xc8\\x5f\\x63\\xd0\\x14\\xe0\\x45\\x10\\x16\\xe7\\xd4\\xdc\\x53\\xf3\\x0e\\x31\\xb2\\xa2\\x2d\\xe9\\x30\\xcb\\xc5\\x22\\xe4\\xd1\\x63\\x09\\x2c\\xa6\\xdd\\x42\\xea\\x08\\x77\\xfb\\x41\\x7d\\xaa\\xe7\\x62\\x8c\\x82\\x9c\\x41\\xb0\\x47\\x47\\xea\\x8e\\xa3\\x21\\x70\\xad\\x85\\xd8\\xd4\\x62\\xb4\\xa5\\xaf\\x8a\\x36\\x77\\x41\\xfa\\x66\\x17\\x5b\\x71\\x69\\x88\\xc1\\x5d\\x6e\\x57\\x23\\xac\\x19\\xfc\\xb7\\x4a\\x0f\\x2c\\xd4\\xd1\\x07\\x2c\\x27\\x3b\\x1a\\x2c\\xcb\\xc6\\xd6\\x28\\x74\\x0e\\xcf\\x16\\x84\\xd8\\x5f\\xf9\\xad\\x91\\x93\\xf8\\xc8\\xee\\x55\\x63\\x02\\x4b\\xd1\\x90\\x49\\x81\\xac\\x08\\x93\\x34\\x9a\\x28\\x9d\\x25\\xc6\\x2e\\xc9\\x77\\x3c\\x4a\\x16\\x19\\x4c\\x38\\xea\\x0a\\xf2\\x41\\x5a\\x65\\x6c\\x45\\x14\\x27\\x18\\x7b\\xc0\\x0a\\x31\\x1a\\x82\\x3b\\x86\\xcf\\x63\\x7a\\x9f\\x5f\\x24\\xdf\\x3c\\x49\\xba\\xf4\\x82\\xd3\\x0e\\x92\\xdc\\xea\\xd5\\x32\\xa1\\xb2\\x2c\\x13\\xa2\\x17\\x49\\x83\\xf6\\x2d\\xbc\\xd2\\xfc\\x72\\xea\\xf4\\x1c\\x70\\x84\\x46\\x72\\x91\\x2c\\xb9\\x5a\\xcc\\xb1\\xf4\\x90\\xc4\\xfe\\x43\\x0e\\x82\\xe3\\x34\\x68\\x08\\xc6\\xd7\\x42\\x30\\xa3\\x1a\\x86\\x4f\\xdf\\x8a\\x8a\\x9a\\xc2\\xf0\\x54\\xfd\\x47\\x32\\xe3\\x46\\x31\\x07\\x0c\\x07\\x30\\x28\\x9f\\xc8\\xe1\\x9a\\x76\\x42\\xdc\\xdd\\x1a\\x47\\x48\\x57\\xa4\\x88\\x0b\\x70\\x9a\\x3b\\x04\\xb7\\xd7\\x9c\\x04\\x1f\\x76\\x1f\\x3a\\x64\\xcd\\xb0\\x4b\\x7d\\x51\\x7d\\xc3\\xf3\\x83\\xf3\\xed\\x93\\x1d\\xb4\\x17\\xf6\\x9e\\x4a\\x1f\\x4c\\xe8\\xc8\\x98\\x64\\x6f\\xac\\xb3\\x08\\x17\\x20\\xc2\\xfc\\x08\\x69\\x89\\x66\\x93\\x6b\\x05\\xc6\\xa4\\x41\\x48\\x87\\x44\\x8e\\xc4\\xd9\\x87\\x29\\xaa\\xf3\\x45\\xb5\\x23\\x1b\\x1a\\x0c\\xa2\\xc8\\x8e\\x40\\x70\\xc0\\x64\\xe9\\x13\\x92\\x10\\xc1\\xcb\\xb6\\xec\\xfc\\xe3\\x70\\x13\\xb1\\x0e\\x17\\xb9\\x94\\xd1\\x84\\xbe\\x9b\\xa3\\x00\\x0e\\x75\\xd9\\x8e\\xfe\\x3d\\xff\\x95\\xbf\\x7c\\xfc\\x95\\xbf\\xbc\\xad\\xd8\\x8c\\x6c\\x52\\x7a\\x0a\\xc1\\x9d\\x72\\xab\\x05\\x27\\x9d\\xb6\\xe5\\x30\\x07\\x2d\\x46\\x79\\x0b\\xca\\xd6\\xcf\\x46\\xbc\\xe5\\xa1\\xdc\\x88\\xd0\\x76\\xdc\\xfb\\x7c\\x0f\\x7e\\xf5\\xb8\\x07\\xbf\\xba\\x8d\\x84\\x1d\\x99\\x1e\\xb6\\x42\\xdd\\x9c\\xb1\\x15\\x97\\xaf\\xbf\\x91\\x14\\xa3\\x5e\\xe5\\xa3\\x6f\\x09\\x9a\\x49\\xec\\x2b\\x72\\x38\\x5c\\x14\\xc4\\x6c\\x25\\x44\\x5e\\xdd\\x44\\x7a\\xe4\\x80\\xd7\\x83\\xc3\\xb9\\x22\\x58\\x37\\xa7\\xc2\\x62\\xb1\\x21\\x5b\\x0c\\xdb\\xa6\\x88\\xe9\\x62\\x8d\\x0d\\x96\\xd8\\x82\\xf2\\x46\\xdb\\xd1\\x85\\xe7\\x3f\\xe4\\xd7\\x8f\\x3f\\xe4\\x76\\x6a\\x21\\x67\\xac\\x92\\x0d\\x35\\x07\\x56\\x9f\\x8c\\x37\\xe4\\xcf\\xd1\\xb1\\x21\\x78\\xb0\\x9f\\x73\\x8c\\x0d\\xe9\\xb3\\x63\\x6c\\x82\\x5f\\x46\\x6c\\xa5\\xe7\\xe2\\x1a\\x80\\x22\\x40\\xa6\\x95\\x8d\\x37\\xe8\\x46\\xa7\\x7e\\xf3\\xb8\\x53\\xbf\\xb9\\x3d\\xbf\\x59\\x2c\\x4c\\x36\\xe7\\xe2\\x60\\xb2\\x0d\\x1e\\xd7\\xce\\x0d\\xdd\\x5c\\x1d\\x46\\xbd\\xfd\\xc8\\xca\\x68\\x0d\\xaa\\x3b\\x1b\\xc3\\x7b\\xe9\\x24\\xba\\xd2\\xa0\\x9e\\x14\\x39\\x60\\x72\\x99\\x12\\xd8\\x6c\\x99\\x12\\x98\\xb9\\x1a\\x3c\\xc9\\x61\\x6e\\x18\\x1b\\x01\\x5b\\x8b\\xec\\x0c\\x0f\\x1f\\x41\\x84\\x05\\x1a\\xd8\\x31\\x80\\x29\\x81\\x1d\\x46\\x3d\\x9f\\x0c\\xa3\\x9e\\xc4\\x7e\\x58\\x19\\x6a\\x8a\\x01\\xd1\\x63\\xca\\xd0\\x3b\\x98\\xf9\\x60\\x13\\x24\\x4a\\x44\\x43\\x9f\\x52\\x36\\x83\\x8b\\xd6\\x66\\xd7\\x91\\x62\\xd9\\x8e\\x6f\\x7c\\x7e\\xa4\\xfe\\xcb\\x93\\x3c\\x8e\\x2f\\x64\\x8a\\xb4\\x95\\xce\\x8e\\x3a\\xf4\\x7b\\xed\\x17\\xb2\\xdc\\xc2\\x4a\\xb8\\xac\\xdd\\xf3\\x83\\x04\\xb3\\x5f\\x06\\x9c\\x43\\x70\\xc3\\xf3\\xaf\\xfd\\x3f\\x7e\\xdf\\x5f\\xe1\\xf5\\x8b\\xce\\x18\\xc3\\x7b\\x3b\\x89\\xf7\\x7d\\x65\\xe8\\xf5\\x95\\x5b\\xfe\\x24\\xba\\x12\\x0a\\x9e\\xf8\\xbb\\x44\\x07\\x05\\x4f\\x97\\x4f\\x6c\\x31\\x8d\\x1a\\xd4\\x55\\xf7\\xa0\\xfb\\x85\\x7d\\xd9\\xe8\\x15\\xf1\\xa8\\x56\\x12\\x1d\\x05\\x15\\x0a\\xa2\\x46\\xf7\\xbd\\x78\\x4e\\x74\\x87\\x8f\\x5b\\x78\\xe0\\xbe\\xe1\\xe3\\x42\\x24\\x8c\\x1b\\x89\\x52\\x9b\\x65\\xae\\x98\\x4b\\x80\\x38\\x51\\x9f\\xee\\xba\\x42\\xec\\xa2\\xc8\\xc6\\xb0\\x07\\xa8\\x77\\x64\\xf0\\xf0\\xea\\x25\\x99\\x62\\x1b\\x2b\\xd9\\x62\\xee\\xd8\\xae\\x46\\xb5\\x85\\x44\\xce\\x8e\\x0e\\xd0\\x07\\x87\\xc2\\x15\\xd4\\xa3\\x89\\xb8\\xf3\\x7a\\xe9\\x65\\xf8\\x40\\x5e\\x98\\xb4\\x8e\\x24\\x8a\\x61\\x89\\x3a\\x08\\x4e\\xb9\\xfb\\x90\\x66\\xb1\\x7e\\xd7\\x18\\xb8\\x89\\xab\\xb7\\xdd\\x71\\x8f\\x0e\\x44\\xd1\\x9d\\x06\\xfc\\xe5\\x4f\\x44\\x06\\x07\\x68\\x98\\xa0\\x06\\x14\\x13\\xee\\xdb\\x75\\x5c\\x9f\\x9f\\xa6\\xff\\xf3\\xa9\\x03\\xcb\\x6d\\xac\\x18\\x9d\\x6a\\x8d\\xf7\\xb3\\x89\\x5e\\x0e\\xaf\\x0e\\x2a\\x70\\x7d\\xe3\\xd1\\xff\\xd7\\x33\\x2b\\xe0\\x65\\x7f\\x15\\xe1\\xd5\\x67\\x14\\x5b\\x38\\x31\\x76\\x49\\xf1\\x39\\xbc\\xb2\\x1d\\xd7\\x07\\x22\\xa1\\x05\\x95\\xd4\\xc8\\xdf\\xce\\x78\\x3f\\x92\\x3e\\x97\\xd8\\x89\\x40\\xae\\x44\\x8c\\x1f\\x65\\x73\\x0f\\xfc\\x1e\\x36\\x70\\xcf\\x6f\\x67\\x1b\\xf1\\xe5\\x39\\x56\\x04\\x02\\x6a\\x05\\x40\\x5d\\x36\\x01\\x8e\\x22\\xe5\\x81\\x24\\xe3\\x35\\xa5\\x48\\x7d\\x5b\\x93\\xbc\\x17\\x14\\xaf\\x46\\xcd\\xc7\\x9a\\x7f\\x94\\x51\\xa8\\x15\\x81\\xf4\\xfb\\x2b\\x03\\x72\\xae\\x55\\x03\\xc7\\xdf\\x5a\\x47\\x08\\x08\\xbb\\xce\\x76\\xac\\xa0\\xc9\\x16\\x63\\x6d\\xeb\\x8e\\x81\\x35\\x09\\x1d\\x3e\\x5d\\x61\\xa5\\xae\\x73\\xb5\\x76\\xeb\\xda\\xeb\\x8c\\x07\\xc2\\xb8\\xa0\\x89\\x9d\\x68\\xfa\\xf2\\x17\\xcf\\xe9\\x20\\x0e\\x6c\\x1a\\xd0\\xa2\\x12\\x45\\xa0\\xb8\\xf6\\xb9\\x12\\xf6\\x7a\\xdf\\xae\\x03\\xfb\\xfc\\x44\\xfd\\xdf\\xcf\\x38\\xf9\\x7c\\xf3\\xe6\\xed\\x17\\x2f\\xf8\\xd4\\x60\\x5f\\x4f\\x7d\\x47\\x03\\x9b\\x2e\\xa4\\xd4\\x1c\\xe5\\x01\\x90\\xec\\x66\\x05\\xa3\\x2a\\xf9\\x4c\\x8b\\x26\\x99\\x7b\\x12\\xd7\\xb1\\x45\\x70\\x93\\xe1\\xf8\\x00\\x2d\\x4d\\x9a\\x7b\\x53\\x2f\\x60\\x51\\x8a\\x95\\xed\\x90\\x05\\x1e\\x4d\\x55\\x01\\x46\\x45\\xa3\\x39\\xe9\\x2e\\x84\\x63\\xe3\\xd1\\x9b\\xf7\\x3e\\xb9\\xae\\x77\\x99\\x4c\\x7d\\xa5\\x03\\x43\\xd4\\xbf\\x95\\x5c\\x53\\xb7\\xbd\\xa0\\xac\\x8c\\x66\\xd9\\xbc\\xcb\\x24\\xee\\x77\\x41\\x85\\xe6\\x0b\\x19\\x07\\x12\\x14\\x24\\xe9\\xae\\x82\\x23\\xd6\\x40\\xc4\\x98\\x6e\\xde\\x3c\\xc6\\x1e\\xf0\\x38\\xd6\\xb6\\x90\\x31\\x63\\x7f\\xc8\\x56\\x98\\x5e\\x1d\\x0b\\x8d\\xe3\\xb9\\xc3\\x14\\x71\\xcc\\x23\\x57\\x2a\\x8d\\x31\\xb2\\x85\\xdb\\x76\\x1d\\xa0\\x1b\\x59\\x45\\xfe\\xf9\\xaf\\x5f\\xd1\\x1f\\x3f\\x57\\xbd\\xe8\\x8b\\xf7\\xbf\\x7a\\x21\\x9f\\x47\\x75\\x34\\xf5\\x1c\\xda\\xb7\\x28\\x69\\x20\\x11\\x67\\xeb\\xb6\\x1d\\x27\\x1e\\xee\\xa3\\x80\\xb6\\xfb\\x8e\\x63\\x1f\\x0d\\x4b\\x0d\\x7b\\x2f\\x09\\xa7\\x61\\xc3\\x76\\x65\\x69\\xb3\\x0a\\xc5\\x42\\x33\\x70\\xbd\\x2e\\xaf\\x63\\x45\\x96\\x98\\xb5\\x3f\\x8b\\xba\\x1a\\x5d\\x96\\xfe\\x4a\\x5d\\x56\\xbe\\x9f\\xee\\x3a\\x8f\\x97\\xdc\\xfe\\x34\\x7e\\xf2\\x69\\x2f\\xd6\\x34\\xc1\\xf6\\x3c\\x0c\\x47\\xbe\\x0c\\x47\\x45\\x72\\xa9\\x33\\x3b\\x2d\\x5f\\x0b\\xa3\\xe5\\x6b\\xe1\\xe3\\xf0\\xb5\\x18\\xb6\\xc3\\x25\\x90\\x91\\x56\\xd6\\xb3\\x31\\xc7\\x1c\\x08\\xa1\\x89\\x99\\x61\\x48\\x99\\x20\\xd2\\x4e\\x24\\x97\\x13\\xab\\x9d\\x4d\\xe4\\x72\\x22\\x42\\x5a\\xad\\x00\\x04\\x35\\x5f\\xfb\\xf7\\xe1\\x93\\x0a\\x48\\xc9\\x91\\x71\\xf8\\xea\\x78\\xa1\\xdc\\x6a\\x25\\x90\\xc3\\xa2\\x8d\\x6b\\x47\\xd7\\x29\\xce\\x77\\xa8\\x53\\xb2\\xa0\\xd9\\xe0\\x0b\\x09\\x2d\\x3f\\x63\\x74\\xeb\\x6a\\xf9\\x46\\x14\\x10\\x75\\x4d\\xe4\\x97\\x1d\\x7e\\xcd\\xab\\xa5\\x87\\x26\\x05\\x37\\x8c\\xe2\\xfb\\x30\\x94\\x8d\\x96\\xd8\\xb1\\x5c\\x42\\x01\\x6e\\x18\\x72\\x6c\\x23\\x29\\x2d\\x7b\\x80\\xfb\\xb2\\x07\\x90\\x2f\\x37\\x0c\\xf1\\xe5\\x86\\x01\\x64\\xee\\x53\\x92\\x7e\\xeb\\x86\\x51\\x64\\x67\\xbe\\xf6\\xc6\\x87\\xe0\\x5a\\xb8\\x61\\x14\\x7c\\xef\\x34\\x8f\\xf1\\xbe\\x3d\\x7b\\xf2\\x34\\xa1\\xd2\\x37\\xaf\\x3f\\xbc\\x7d\\xf3\\xee\\xf6\\xfe\\x6b\\xad\\x3e\\xef\\xba\\x19\\xf8\\x75\\xee\\x75\\x14\\x63\\xa4\\x9b\\xe1\\x61\\xd8\\x9d\\xa7\\x21\\x67\\x22\\xe7\\xc2\\x15\\x64\\x08\\x99\\xa6\\x61\\x3b\\x97\\x62\\x8c\\x14\\xab\\x2b\\x66\\x89\\x0f\\xaf\\x69\\xc6\\x2c\\xda\\x44\\x8c\\x2b\\xf1\\xc6\\x21\\xf5\\x8a\\x33\\x11\\x5f\\x62\\xe8\\x99\\x3d\\x36\\x06\\x02\\x42\\x19\\x9a\\xb1\\x6a\\x57\\xc0\\x42\\xcf\\xac\\xcb\\x9b\\x5e\\x9c\\x56\\x1e\\x2b\\x85\\x63\\xcb\\x4a\\x7e\\x56\\x53\\xb4\\x72\\x01\\xaf\\x02\\x03\\x2b\\x1b\\x08\\x52\\xdc\\xc6\\x11\\xce\\x82\\x4c\\x08\\xc5\\xcd\\xa8\\x47\\x1c\\xde\\xfe\\xbe\\x42\\x78\\x32\\xeb\\x4d\\xc1\\x2b\\x90\\xa5\\x10\\x5c\\xc4\\x0a\\x5b\\x99\\xd1\\x57\\x2a\\xbb\\xdd\\xe1\\xf8\\x97\\xd2\\x96\\x63\\x63\\x61\\x0c\\xfc\\xc2\\x74\\x6c\\x0f\\xa8\\x41\\x91\\xab\\xae\\x6f\\xd6\\xa3\\xd5\\xf7\\x20\\x52\\xb7\\xeb\\xd9\\x6e\\x39\\xf8\\xd6\\xc4\\xe8\\x53\\xb2\\xfa\\xf6\\xc3\\x87\\xd7\\xef\\x3e\\xbf\\x0d\\x7d\\x47\\x81\\x9c\\xdc\\xd3\\x4a\\xa3\\x81\\x37\\x9d\\x4d\\x67\\x5d\\x76\\x4b\\x3d\\x1c\\xd0\\x0b\\x9d\\x23\\x8e\\x3f\\x7c\\x63\\xec\\x36\\xfb\\x86\\xf4\\x9f\\xb9\\x31\\x48\\x30\\x77\\x78\\xa5\\x17\\xb1\\x95\\x0e\\x62\\x63\\xf9\\x28\\xf5\\xe5\\x9f\\xb4\\xd2\\xcb\\x0d\\x54\\x65\\xe2\\x5e\\xfa\\x39\\xd5\\xed\\x03\\xbb\\x6a\\x2b\\xcf\\xde\\x26\\x9a\\x6d\\x68\\xec\\x05\\xca\\x06\\x7c\\x6b\\x8e\\x02\\x41\\x8e\\x4c\\x7c\\xa2\\x7b\\x20\\x9e\\xa2\\x3a\\x81\\x5d\\x01\\x5a\\xbb\\x22\\x43\\x7d\\xa3\\x0e\\xc3\\x2a\\x58\\xaa\\x21\\xd9\\xe8\\x86\\x88\\xee\\x18\\xb1\\xf6\\xe6\\x61\\x64\\xe9\\x23\\x9a\\xa3\\x02\\x11\\x1d\\x5d\\xab\\x06\\xc4\\xf8\\x4a\\x0c\\x5b\\x14\\xa8\\x51\\xba\\xe9\\x7a\\x4e\\x7d\\x1e\\x1e\\x7d\\xe2\\xd8\\xd6\\x38\\x3d\\xdc\\x0b\\x04\\x41\\xee\\x75\\x2c\\xb2\\x11\\xc9\\x26\\xa1\\x08\\xae\\x66\\x37\\x98\\xf6\\x10\\xcf\\xb0\\x4a\\xe7\\xec\\xc8\\x59\\xe3\\xd6\\x60\\x9b\\x18\\xb4\\xe2\\xa4\\x5d\\x91\\xfc\\x42\\x42\\xe6\\x10\\xc1\\xf3\\x70\\x3c\\x1c\\x47\\x4a\\x58\\xd4\\x75\\xa1\\x63\\x86\\xda\\x5d\\xf2\\x1a\\x86\\xd4\\x44\\x71\\x90\\xd4\\x5c\\x66\\x3f\\x5e\\x41\\xdd\\x61\\x47\\x16\\x1d\\xe5\\x79\\xf4\\xef\\xf6\\x0a\\xb1\\x27\\x2b\\xe4\\x37\\x2f\\x24\\xfd\\x74\\x2a\\xf0\\xa8\\xdb\\xd0\\xc3\\x21\\x99\\xb8\\xb4\\xdb\\x1a\\x0a\\xe5\\x15\\x57\\x6d\\xc3\\xce\\x21\\x76\\x51\\x3b\\x7e\\x90\\xee\\xf8\\xa1\\xa3\\xc0\\x5c\\xfd\\x45\\x12\\x38\\x5d\\x7f\\xd7\\xe5\\xf5\\x77\\xdd\\xaf\\xac\\xdb\\xd5\\xa3\\x9e\\x4b\\xcf\\x5a\\x6f\\xbb\\xdd\\x75\\xff\\xe3\\xa7\\x68\\xf1\\xfd\\x5f\\xbf\\x7e\\xf7\\x12\\x1c\\x5d\\xbb\\x18\\xd1\\x2f\\xc6\\x76\\x0e\\xe6\\x4b\\xfd\\x71\\xd6\\xe1\\x0f\\xf7\\xc1\\xdc\\x7c\\x64\\xfd\\x71\\x00\\x55\\xe6\\x8b\\x8f\\x17\\x46\\x2e\\x7e\\x2f\\x8b\\xdc\\xe7\\x2f\\xa6\\xd6\\x42\\xec\\xa2\\xda\\x11\\xc4\\x28\\x58\\x51\\x54\\x1c\\x68\\x01\\x6f\\xca\\xbe\\x53\\x37\\x6e\\x24\\xcb\\x72\\x8a\\x12\\x4e\\x84\\x6a\\x22\\xdd\\xf6\\xa3\\x85\\x14\\x14\\xa8\\x02\\x00\\xaf\\xa7\\xc2\\x6a\\x05\\xf2\\x0b\\xdf\\xad\\x10\\xbc\\x52\\x37\\x63\\x79\\x11\\x54\\xa3\\x95\\x98\\x3e\\xa9\\xc7\\x51\\xf2\\x43\\x72\\x72\\x9d\\x92\\xb4\\x59\\xca\\xf5\\x69\\xd5\\x02\\x2b\\x5c\\x88\\xa8\\xfd\\x76\\x2a\\xd5\\x9e\\xe5\\xee\\xa4\\x63\\x17\\xe4\\x7f\\xa3\\x52\\x31\\x51\\x07\\x8d\\x91\\x3c\\xff\\xc4\\xa2\\x87\\xaf\\x70\\xc1\\x04\\xfc\\x52\\x4c\\x0c\\xf8\\x3b\\x05\\xdb\\x38\\x35\\xae\\xd8\\xc7\\xc1\\xc5\\x85\\x50\\x4f\\x08\\xd1\\xad\\x6b\\xa8\\xc7\\x8e\\x86\\x47\\x4b\\x87\\xab\\xcb\\x0a\\x1b\\x5b\\xbb\\x77\\xee\\xd3\\x16\\xb5\\x2d\\x6f\\x53\\xcd\\xa2\\xc5\\x46\\x59\\xb0\\x6d\\xf9\\xce\\xae\\x70\\x45\\x99\\xab\\xa0\\xdb\\x9e\\xa3\\xa1\\x92\\x9a\\x48\\x8b\\xae\\x93\\x4b\\xf9\\x24\\xdf\\x69\\x08\\x0a\\xe9\\x81\\x07\\x20\\xdd\\xef\\xb1\\xd3\\xba\\x1a\\x35\\xe4\\x70\\x3f\\x28\\xc1\\x5e\\x42\\x1a\\x64\\x0b\\x35\\x4c\\x97\\xeb\\xe5\\x11\\xe9\\x95\\xd7\\x58\\x46\\xba\\x32\\x7f\\x24\\x67\\x75\\x6c\\xad\\xd0\\x8a\\x49\\x44\\x80\\x6f\\xb1\\x8b\\x73\\x8e\\xd8\\x13\\x16\\xef\\xe1\\x4b\\xa6\\x93\\x0c\\x38\\xe7\\x11\\xdc\\x86\\x57\\x85\\x27\\x5b\\x2f\\x40\\x79\\x1f\\xa7\\xa3\\xbc\\x0f\\x5d\\xcb\\xfb\\xe0\\x62\\x21\\xc8\\x68\\xa2\\x50\\x38\\x12\\x10\\x75\\xdd\\xd1\\xe8\\x7e\\x24\\xb8\\xef\\xb2\\x74\\xfd\\x11\\x7a\\x14\\x5c\\x8b\\xe9\\x89\\xf4\\x3e\\xc7\\x3e\\x41\\xa9\\xe1\\xde\\x12\\xd9\\xcf\\x05\\xee\\x55\\x2b\\x87\\x44\\xe1\\xd3\\x5a\\x86\\x77\\x6a\\xf2\\x70\\x6f\\xc8\\x32\\xa2\\xbb\\x99\\xb4\\xba\\x1f\\xd2\\x79\\x04\\xaa\\xef\\x05\\x0b\\xf0\\x41\\x74\\x6e\\xa5\\x1b\\xb8\\x2d\\x15\\xc7\\x2c\\x50\\x47\\xa9\\x16\\x82\\x68\\x6f\\x9a\\x1d\\x61\\xc6\\x05\\xcf\\x75\\x15\\x70\\x42\\x10\\x97\\x30\\xed\\x3e\\x7a\\x93\\x82\\x96\\x3c\\x1a\\x8f\\x40\\x72\\x43\\x0e\\x46\\xbe\\x6b\\x3e\\x62\\x3d\\x45\\x12\\x3e\\xdb\\x2a\\x4b\\x19\\xd6\\x28\\xc4\\x6c\\x80\\xe9\\x59\\xc8\\xa0\\x34\\x1b\\xe3\\xe6\\x25\\x14\\x57\\x7f\\x6f\\x93\\x66\\x3e\\x21\\xcd\\x2f\\xde\\xbc\\xfe\\xf0\\xfa\\xe3\\x9b\\xdb\\x96\\xff\\x02\\x0b\\x35\\xa5\\x3b\\x1a\\x4a\\xbe\\xf2\\xc3\\x6b\\x71\\xd2\\x01\\x93\\xa1\\xee\\xc0\\x24\\xa5\\xef\\xe9\\x58\\x19\\xb0\\x8e\\xb2\\x78\\xee\\x2b\\x69\\x3e\\x92\\x9a\\x21\\x9d\\x68\\xca\\xba\\x8b\\x8b\\x86\\x90\\x20\\x5b\\xe1\\x9b\\x89\\xdc\\x38\\xf3\\xfa\\xae\\xe2\\x39\\x40\\x11\\xb6\\xd2\\x69\\xaf\\xbc\\xa2\\xc7\\x22\\x2b\\x01\\x4c\\x9a\\x8c\\x9c\\xc6\\xd5\\x68\\x03\\x71\\x35\\x3a\\xe6\\x28\\x2d\\xb2\\xee\\x1a\\xa8\\x6e\\x44\\x56\\x42\\xaf\\x1e\\x4d\\xeb\\x2e\\xd6\\x58\\x3e\\x4a\\xac\\x2b\\x4d\\x38\\x4e\\x5d\\xdf\\x75\\x7b\\xd0\\xc6\\x53\\xac\\xf0\\xfe\\xeb\\xdf\\x7c\\x5f\\xfd\\x21\\x98\\x6c\\xf7\\x3a\\x0a\\xaf\\xba\\x8b\\x58\\xdb\\xc4\\x8d\\x91\\xf4\\x0c\\x47\\xf8\\xfa\\x33\\x27\\xa8\\x8b\\xe1\\xae\\x55\\xc2\\x2e\\x91\\x78\\xa4\\xf8\\xad\\xa5\\xef\\xd5\\x76\\xeb\\x88\\x84\\x8b\\x2e\\xb8\\x36\\x86\\x21\\xe1\\x48\\xda\\x7a\\x66\\xa2\\x58\\xc7\\xa8\\xe3\\xaa\\xf1\\x48\\x09\\xde\\xe2\\xda\\xcf\\x51\\x5f\\x0d\\x0f\\x5c\\x86\\xef\\x75\\xe8\\xaa\\x5c\\x14\\x61\\xbb\\x85\\xdf\\x45\\x58\\x33\\x45\\xe8\\x03\\x9e\\x19\\xb5\\x4e\\xc3\\xb1\\xa7\\xa1\\xee\\xcd\\x32\\x2e\\x3a\\x7c\\x57\\x94\\xde\\x54\\x04\\xda\\x2b\\x77\\x5c\\x0b\\x58\\x58\\x7c\\x08\\xa1\\xf3\\xdc\\xa4\\x27\\x12\\x9f\\x48\\x4f\\xbc\\xaf\\xd6\\x6e\\xa8\\xa3\\xee\\x63\\xba\\x3c\\x20\\x3b\\x88\\x29\\xef\\x75\\x44\\x99\\x1b\\xb2\\x26\\x16\\x53\\xa8\\xa3\\x90\\xde\\xf2\\x2e\\xcb\\xe9\\x35\\x68\\x8c\\x72\\x60\\xc1\\x2b\\xa1\\x73\\x5f\\x89\\x3b\\x56\\xd5\\x3c\\xa4\\xf7\\x8e\\xe5\\x56\\x86\\xe7\\x55\\xc3\\x81\\x33\\xb9\\xc8\\xc9\\x71\\x6d\\x86\\x22\\x50\\x6f\\x40\\x6b\\x83\\x93\\x43\\xee\\x26\\x05\\x8f\\x7a\\x36\\x35\\x42\\x0a\\xe3\\x7a\\x77\\x5d\\xc9\\xe4\\xb8\\xf3\\xe8\\xe3\\xc3\\xfd\\x40\\xb1\\x9c\\xbd\\x54\\x64\\x24\\x46\\xe4\\x16\\xce\\x93\\xd5\\xdb\\xd0\\x3e\\x15\\x05\\x34\\x6c\\xac\\x27\\xaf\\x2d\\x2a\\xb9\\x6e\\x51\\x8d\\x75\\xaa\\x34\\xd8\\x01\\x08\\x4c\\x08\\xaf\\x2f\\xd6\\xa2\\xab\\xc3\\xd5\\x50\\xdc\\x59\\xe3\\xc4\\x84\\x6b\\xa9\\x00\\x8d\\xf4\\xc6\\x82\\xa7\\xae\\x44\\xdb\\xd7\\xe0\\x46\\xaf\\x9f\\x79\\x05\\x8e\\xcf\\xea\\x8d\\x70\\x9f\\xab\\x8f\\xb7\\xd7\\xee\\xab\\x27\\x6b\\xf7\\xfd\\x87\\x2f\\x7e\\xfe\\xfa\\xab\\x37\\x2f\\x66\\x62\\x0e\\xcf\\x16\\xdd\\x50\\x7d\\xb3\\xb8\\x3c\\x56\\xcf\\x18\\xf8\\xbe\\xc2\\xe8\\x58\\x45\\xf5\\xe1\\x05\\xd7\\x58\\xe1\\x1e\\x16\\x7d\\x51\\xbd\\x0f\\xda\\x91\\xab\\x6e\\x94\\xfe\\x52\\x2b\\x76\\xd9\\x07\\xc2\\x64\\x96\\x4a\\x91\\x5c\\x8a\\x88\\x23\\xe2\\x85\\x91\\xdf\\x4b\\xfa\\x12\\xf9\\x7d\\xf4\\x95\\xd1\\x8f\\xac\\x16\\xad\\x5e\\x88\\x3b\\xad\\xad\\x2a\\x46\\x9e\\x47\\xc4\\xad\\xd9\\x52\\xa6\\x85\\x73\\x37\\x97\\xbb\\x6a\\x34\\x83\\x6f\\x6c\\xff\\xae\\x4c\\xea\\xd8\\x50\\x96\\x92\\x55\\xf6\\xd5\\x18\\xda\\x04\\xdb\\xd0\\xe2\\xcb\\x35\\x44\\x61\\xf3\\x42\\xa4\\xe6\\x2a\\x48\\xb4\\x6a\\x70\\x8c\\x23\\xd3\\xd0\\x0a\\xd3\\xb7\\x31\\x57\\xee\\x0a\\x14\\x3a\\xcb\\x55\\xd5\\x12\\xb1\\x7e\\xdc\\xfb\\x25\\xd3\\x97\\xb3\\x90\\x44\\x1b\\x6c\\x2d\\x86\\xcc\\xe2\\x44\\xd1\\xed\\x1c\\x9e\\x0f\\xf7\\xe6\\xd9\\x52\\x6c\\x37\\xd4\\x5f\\xb5\\xe2\\xcf\\x48\\x96\\x89\\x64\\x6c\\xbe\\xe2\\x65\\x72\\x28\\xec\\xb1\\x83\\xf3\\x42\\x5d\\xe4\\xec\\xb5\\x40\\x11\\xf2\\x2a\\xc8\\xec\\x7a\\x14\\xe8\\x1c\\xb4\\xdc\\x28\\xd5\\xe9\\x6e\\xb8\\x21\\xe5\\xe3\\x60\\xd9\\xeb\\x98\\xb9\\x64\\x42\\x5a\\xce\\xe3\\x9d\\xb7\\x97\\xc3\\xcf\\x9e\\x26\\x60\\xfd\\xf6\\xcd\\xdb\\xb7\\xaf\\xbf\\x7a\\xff\\x72\\x68\\x5f\\x8d\\x99\\x75\\xd9\\x1c\\xd4\\xa9\\x67\\x4d\\x85\\x6d\\x5e\\x87\\x5e\\x8c\\x64\\x2b\\xde\\x3f\\xba\\x9c\\xdd\\xfa\\x76\\x5c\\xfb\\x70\\x1f\\x86\\x3d\\xf7\\xed\\x48\\x84\\xa7\\xe7\\x54\\x42\\x11\\xb1\\xeb\\x5d\\x09\\x85\\x5c\\xce\\x75\\xc1\\x76\\x5c\\x7d\\xbb\\xe7\\x9f\\x3f\\x4d\\x9e\\xfb\\xfe\\xcb\\x37\\x9f\\xbf\\x7a\\xfb\\xee\\xfd\\x4b\\x99\\xf1\\x0b\\x0e\\x85\\x9e\\x93\\xe9\\xe2\\xa2\\x67\\x4a\\xbf\\x64\\xb7\\x95\\x1f\\x4b\\x5e\\x92\\x93\\x5f\\xfc\\xf1\\xd3\\xd0\\xb8\\x37\\xbd\\xff\\xe0\\x85\\x64\\x69\\xff\\xef\\x2a\\x6b\\xd5\\x2b\\x5e\\x3f\\x79\\xc5\\x87\\xd7\\x5f\\xbe\\xf9\\xf8\\xcd\\xeb\\x0f\\xaf\\x5f\\xac\\xaa\\x69\\x4a\\x7b\\xe6\\xc1\\x90\\xfa\\xc1\\x90\\xf4\\x60\\x48\\x72\\x65\\x48\\x57\\x87\\xdc\\xa5\\xb3\\xf1\\x4a\\x6a\\xb7\\x18\\x92\\x5f\\x19\\x52\\xbf\\x32\\x24\\xc6\\x43\\xd1\\xc0\\x16\\x73\\x9d\\x02\\x6b\\x41\\x44\\x36\\x61\\x63\\xf6\\x30\\x2d\\xae\\xed\\xe8\\x7e\\xc4\\xdc\\x08\\x62\\x6e\\x8a\\x40\\xeb\\x89\\x45\\xc7\\x34\\xe6\\xea\\xe3\\xc3\\x3d\\xc5\\xb8\\xc3\\x73\\x63\\x14\\xfb\\x47\\x7d\\x5a\\x70\\xfa\\x9e\\x8b\\xd3\\xeb\\x8a\\x11\\xa8\\xc7\\x86\\xec\\x81\\x6c\\xdd\\x0d\\x29\\xd0\\x8f\\xc8\\x01\\x46\\x7d\\x02\\xf6\\xb6\\x52\\x7d\\x21\\x57\\x24\\xed\\x68\\x1c\\x65\\x17\\xa3\\x05\\x1b\\xae\\x5d\\x9c\\x9e\\x0f\\x4e\\xdf\\x0f\\x4e\\x0f\\x36\\x5c\\x9c\\x5e\\x57\\xb2\\xfa\\x7a\\xf7\\xe2\\xf4\\xba\\x38\\x7d\\x69\\xf1\\xd5\\xd9\\xc2\\x6a\\x9a\\x7a\\x61\\xe1\\xb3\\x8c\\x71\\x49\\x1f\\x67\\xa7\\xbe\\xc3\\xcb\\xaf\\xe4\\x6e\\x46\\x2b\\xe5\\x32\\x0d\\xfe\\x17\\x3b\\x8e\\x2b\\xcf\\x4a\\x33\\x94\\x91\\x40\\xc6\\xce\\x2d\\x5d\\xef\\xea\\x19\\xa1\\x89\\x7d\\x39\\x4d\\x3d\\x1b\\xf1\\x7a\\x81\\xa5\\x9d\\x9d\\x7d\\xf7\\xd2\\x4a\\xd3\\x10\\x8d\\x64\\x83\\x66\\xa0\\x2a\\x42\\xce\\x52\\x0f\\x5c\\x0c\\x6e\\xb7\\x5e\\xc2\\x4f\\x51\\x51\\x6f\\x09\\x6e\\x5d\\x89\\x1b\\xc2\\x47\\x3d\\xf0\\x62\\xf9\\x02\\x91\\xff\\xfc\\xc9\\xca\\xfa\\xea\\xd5\\xe7\\x1f\\x5e\\x50\\xbf\\x46\\x0e\\x64\\xae\\x3f\\xb3\\x1f\\x79\\x36\\x06\\x32\\x73\\x8d\\x5b\\xf5\\xd5\\xff\\xf9\\xaf\\x7f\\xd6\\x9f\\xe2\\xc8\\xd7\\x5f\\xbe\\x54\\x8b\\x49\\x56\\x00\\x67\\xee\\xab\\x51\\xa8\\x68\\x41\\xb4\\x23\\x88\\x45\\xae\\x85\\x2c\\xe1\\x31\\xcd\\x7c\\xad\\x89\\x74\\xe4\\x92\\x08\\x3e\\x3c\\xa6\\x0b\\x1f\\x93\\x8c\\xe5\\x38\\x46\\x42\\x3c\\x13\\x89\\x03\\x7b\\xee\\x68\\x10\\xfc\\x67\\xe0\\xc8\\x64\\x28\\x86\\x5b\\x94\\x3e\\x03\\x19\\xfe\\x57\\xb2\\xc7\\xa1\\xab\\xac\\xe5\\x50\\x6d\\x86\\x60\\x76\\x3d\\xe2\\x68\\x98\\x56\\x70\\x43\\xdd\\x2a\\x96\\x77\\xf5\\xd4\\x07\\x28\\xc6\\x78\\x3e\\x1a\\x80\\x06\\x30\\x60\\xd9\\x58\\x76\\x4b\\x42\\x36\\x09\\x59\\xbe\\x3d\\xe8\\x79\\x4f\\xdd\\x91\\xa4\\x01\\xd9\\x42\\xc1\\xcb\\x87\\xcc\\xe8\\xab\\xb4\\xf2\\x4a\\x40\\x47\\x56\\xb8\\x48\\xd6\\x93\\x57\\x43\\x0c\\x06\\x66\\xa4\\xdc\\xc7\\xc5\\x3c\\xc6\\xf4\\x00\\xee\\xf0\\xf5\\x64\\x11\\xdf\\x0d\\xd9\\x34\\xc4\\x1b\\x8a\\x27\\x09\\x07\\xfc\\x4f\\x48\\x4a\\xfc\\xf6\\xa3\\x90\\xf8\\xb5\\xcf\\xb7\\xa7\\xef\\xa9\\xbd\\xfc\\xeb\\xb7\\xdf\\x7e\\xfc\\xea\\xcd\\xbb\\x17\\x8b\\x2b\\x4a\\xcb\\xe1\\x2b\\xe0\\x37\\x7a\\x3f\\x07\\xcb\\x45\\x50\\x8a\\x9e\\xf0\\x37\\x19\\x5f\\xea\\x02\\x43\\x32\\x42\\x54\\x5f\\x94\\xfa\\xe1\\xe1\\x7e\\x25\\x26\\x3f\\x53\\xf2\\x85\\x86\\x16\\xf3\\x1d\\x97\\x1b\\xfb\\x9c\\xd5\\xb7\\xa7\\x06\\xef\\x6f\\x7e\\xf5\\xfe\\xe3\\xb7\\xa8\\x3d\\xf8\\x42\\xe1\\x26\\xc4\\xd8\\xc6\\x59\\x58\\x2f\\x31\\x68\\xf3\\x15\\xd4\\x67\\xc8\\x7c\\x0a\\x86\\x86\\x6d\\x24\\x54\\xd0\\x60\\xd8\\x35\\x65\\x5f\\x0d\\x40\\x15\\x20\\x0b\\x3e\\x36\\x28\\x91\\xbc\\x43\\xd1\\x68\\x50\\x41\\xa5\\xc0\\xc2\\x4a\\xe4\\xa9\\xcb\\xda\\xc8\\xea\\x4b\\x26\\xd3\\x18\\x67\\xe9\\xbe\\xcb\\x1a\\x7a\\x6d\\xb2\\xa0\\xc8\\x91\\x70\\x47\\x32\\x66\\x69\\x28\\xc8\\x5a\\x88\\xd4\\x52\\xea\\xb1\\x87\\xf1\\x5d\\x35\\x1a\\x36\\x32\\xb5\\x0b\\x6c\\x5c\\xc4\\x47\\x86\\x57\\xa2\\xe4\\x1a\\x6a\\x64\\x70\\x46\\xf2\\xa6\\x55\\xb3\\x61\\x15\\x51\\xf3\\x19\\xdd\\xda\\xe0\\xb1\\x99\\x4b\\x4b\\xd2\\xf3\\x10\\xbb\\xf8\\xad\\x2c\\xe7\\x35\\xa0\\x4f\\x6d\\xd0\\x28\\x9b\\xf6\\xbd\\x43\\x0a\\x72\\x24\\xa1\\xb3\\xf7\\xa3\\xb4\\x32\\xc9\\x52\\x76\\xd7\\xea\\x45\\x1e\\x45\\x5e\\xa0\\x70\\x29\\x54\\x7c\\x14\\xab\\x47\\xe9\\x5e\\x1e\\x74\\xac\\x5e\\xea\\x2b\\x65\\xac\\x50\\x82\\xf2\\xaa\\xd1\\x4c\\x56\\x16\\x02\\x68\\x11\\x85\\xd4\\xce\\x75\\x5a\\x90\\x42\\x69\\x38\\xaa\\x86\\x91\\x20\\x3e\\xc0\\x16\\x00\\x43\\xb1\\xc0\\x65\\xc8\\xa9\\xf1\\xf4\\x95\\x17\\xbc\\x1a\\x77\\xd8\\x45\\x56\\xe4\\x7d\\x2e\\xd5\\xb0\\x0f\\x24\\x07\\x25\\xe8\\xcd\\x78\\xa0\\xf6\\x1d\\x0d\\x0c\\xec\\xca\\x31\\x73\\x2d\\xa8\\x1a\\x7d\\x5f\\x23\\x6c\\x7d\\x19\\xb1\\x7b\\x3f\\x04\\x4a\\xc6\\x3e\\x8e\\x92\\x02\\xa3\\xb4\\x99\\x4c\\xa4\\x6c\\x0f\\xf2\\x19\\x32\\x9a\\xc7\\xea\\x8a\\x9b\\xed\\x86\\x3a\\x4c\\xd6\\xac\\xc3\\x1b\\x79\\xc5\\xaf\\x51\\x5f\\x86\\xe0\\xd4\\x59\\x0a\\x6e\\x0e\\x3d\\xeb\\xe0\\x1d\\xc1\\x2b\\xa8\\x44\\xe2\\xa5\\x26\\x20\\x90\\x27\\x3b\\xef\\xb0\\x4e\\x20\\xae\\xd2\\x6a\\x5d\\x40\\x6b\\x1a\\xbd\\xef\\x38\\x5a\\x20\\xde\\x72\\x24\\x10\\x72\\x69\\x2f\\x72\\x36\\xee\\x97\\x9a\\x92\\xdb\\xf3\\xfe\\xd4\\xc4\\xfd\\xea\\xf3\\x6f\\xbf\\xb9\\xcd\\xa2\\xb1\\xf3\\xaa\\x81\\x2a\\x56\\xdb\\x2a\\x7a\\xd7\\xed\\x2c\\x83\\xb7\\xeb\\x99\\xdb\\x6f\\x7a\\x6a\\x2a\\xfd\\xea\\xb6\\x1f\\x14\\x8a\\x45\\xf5\\xe4\\x8b\\x3a\\xc3\\xa5\\x0e\\x09\\x58\\x4a\\x99\\x21\\x3b\\x12\\x4e\\x05\\x32\\xa2\\x53\\xea\\xe1\\x07\\xcd\\x3b\\x56\\x54\\xac\\x7c\\xf2\\x70\\xfb\\x54\\x94\\x28\\xfa\\xce\\x83\\x42\\xe0\\xc4\\xa4\\x1b\\x1c\\xf7\\x73\\x47\\xa6\\xef\\x15\\x47\\x95\\x2b\\x68\\x04\\x7e\\xda\\x7a\\xc0\\x96\\x68\\x62\\x87\\x53\\x71\\xe4\\xe1\\x55\\x75\\xab\\x3e\\x5b\\x7d\\xdd\\x53\\x6b\\xea\\xd7\\xaf\\x3e\\xbc\\xfa\\xf2\\xc3\\xab\\xaf\\x6f\\xc7\\x4a\\x45\\x7a\\xeb\\x17\\xe3\\x7e\\x8e\\x2e\\xe0\\x26\\x45\\x4d\\x35\\xf5\\x66\\xb6\\x2c\\xd0\\xc6\\xd8\\x73\\xcd\\x4e\\x93\\x89\\xda\\xc8\\xdc\\x19\\x4c\\x2b\\xb3\\x31\\xd2\\x55\\x85\\x4e\\x11\\x04\\xfd\\xf1\\xd4\\x95\\xaf\\xb8\\xa3\\xec\\xe9\\x12\\xd1\\x43\\x2f\\xfd\\x1c\\x79\\x7b\\xe7\\xf0\\x67\\x4f\\xcd\\xb0\\xab\\x7e\\xeb\\xe7\\xaf\\xdf\\xbd\\x0c\\x32\\x11\\x79\\x42\\xbe\\x1f\\x11\\x28\\x6b\\x37\\xd7\\x73\\x5a\\x51\\x03\\xd1\\xb4\\x95\\xd3\\x0f\\x79\\x0d\\x52\\xc7\\xee\\xa5\\x73\\xe8\\x68\\x0e\\x3d\\x67\\xa0\\x14\\x4d\\x5d\\x17\\xbe\\x7c\\xf2\\x23\\x0c\\xcf\\xab\\xa3\\x67\\xb6\\x70\\x6f\\x5e\\xfa\\x8f\\x20\\xa7\\xda\\xac\\xfb\\xac\\x84\\xa7\\x58\\xb3\\x92\\x9d\\xa5\\x40\\xd4\\x90\\x85\\xe3\\xf7\\x12\\xb3\\x75\\x5d\\x89\\xb7\\xba\\xef\\xe8\\xdf\\xed\\xef\\x7e\\x6a\\xe3\\xfa\\xfc\\xf5\\x17\\x6f\\xde\\xbe\\x7d\\xa1\\x76\\xaf\\x69\\x5b\\x39\\x34\\x4e\\xb6\\xca\\xd2\\x9e\\x8a\\xa0\\x47\\xb4\\x93\\x07\\xec\\x92\\xa7\\x31\\x56\\xcd\\x6b\\xb2\\x0e\\x46\\x7c\\x2a\\x66\\xbd\\x1a\\x70\\x26\\xe7\\x76\\xaa\\xf5\\x5b\\x44\\x0a\\x03\\xb2\\xf7\\xd1\\x4e\\x2a\\xcb\\x99\\xf4\\xa4\\xea\\x48\\x75\\x7e\\x12\\x42\\xe9\\x35\\x34\\xb0\\xff\\x08\\x23\\xb3\\x21\\xa6\\x70\\xf4\\x15\\xf9\\x88\\xe4\\x43\\x70\\x9b\\x2a\\xac\\x8d\\xd0\\xa7\\x1a\\x08\\x18\\x8a\\x0d\\x65\\x1c\\xee\\x4e\\x24\\xbe\\x95\\xca\\x87\\xf4\\x7d\\xb7\\x07\\xe2\\xa9\\xdd\\xea\\xfd\\xbb\\xef\\x67\\xfb\\x11\\xd2\\xdc\\xf9\\x6c\\x80\\x80\\xa2\\x9b\\xa0\\x96\\x40\\xda\\x85\\x44\\xfa\\x16\\x28\\xa5\\xab\\xe3\\x1c\\x21\\x17\\xbf\\x15\\x08\\x55\\x2f\\x7f\\xc6\\xf0\\xf0\\xd5\\xab\\x8f\\x9f\\x7f\\xfb\\xf6\\x25\\xcb\\x03\\xaf\\xe0\\x56\\xda\\xd1\\x80\\x55\\x1b\\x85\\x89\\xc2\\xa6\\x00\\xf1\\x25\\xad\\xaa\\x56\\x8f\\xb2\\xea\\xfd\\x56\\x6f\\xb7\\x43\\x48\\xa0\\x2e\\x9f\\x24\\xaf\\x0a\\x60\\xa8\\x60\\xe8\\xab\\x0e\\xed\\xa5\\x14\\xea\\xbd\\xfe\\x1a\\xa5\\x43\\x4b\\xe9\\xe0\\xab\\x98\\x36\\x82\\x5a\\x6c\\x14\\x07\\x06\\xe3\\xf1\\xd1\\x51\\x0d\\xc9\\x91\\xdd\\x0e\\x65\\xbb\\xa6\\x38\\xe1\\x3a\\x1e\\x7c\\x97\\x39\\x26\\xba\\xd9\\x59\\x2f\\xf5\\xe8\\x87\\xfb\\xe5\\xb5\\xcc\\xba\\x57\\x63\\xa4\\x34\\xb5\\x15\\x35\\x5b\\x0a\\x72\\xbd\\xc7\\x50\\x44\\x6f\\x55\\xd8\\x4d\\x71\\xec\\x6f\\xa2\\x2e\\x29\\x82\\x69\\x3a\\x30\\x61\\x3d\\x17\\xc5\\x42\\x50\\x0d\\xc8\\x7e\\xfb\\xfc\\x1d\\x7f\\x15\\x04\\x0d\\xe4\\xba\\x44\\x45\\xcc\\x23\\x79\\x20\\xd2\\x39\\x08\\x1d\\xb9\\xfa\\x60\\x1d\\x59\\xd0\\x31\\x57\\xa2\\x34\\x21\\x5d\\xa5\\x8a\\xea\\x62\\x85\\x31\\xb4\\xf8\\xed\\x91\\x37\\x06\\x83\\x72\\x7b\\x2a\\x6f\\x1a\\x0d\\xbe\\xc7\\x01\\x69\\x8c\\x36\\x24\\x37\\x87\\x4a\\x98\\x17\\xe3\\xb1\\xc1\\xfa\\x2b\\x03\\xf5\\x93\\xb5\\xc0\\xb4\\x24\\x02\\x06\\x87\\x64\\x29\\x5e\\x0f\\xf7\\xc5\\xe2\\xeb\\x26\\xa4\\x21\\xb9\\xde\\x85\\x9a\\xa8\\x32\\xce\\x36\\x74\\x4b\\x65\\xdc\\x65\\x88\\x47\\xcd\\xf3\\xcd\\x24\\x4a\\xd5\\xf3\\xa7\\x46\\x83\\xf7\\xef\\x5e\\xff\\xcd\\xb7\\xaf\\x3e\\xbc\\x54\\x72\\x66\\xed\\x13\\xd2\\x99\\x25\\x2f\\xc4\\xee\\x9b\\xad\\x8a\\x6b\\x17\\x12\\x5b\\xf1\\x55\\xa4\\x36\\x50\\x73\\x34\\xac\\xe6\\x9c\\xa2\\xb1\\xf0\\x56\\x0b\\x55\\x7a\\xdf\\x56\\xc2\\x7c\\xc9\\x0d\\x15\\x30\\x28\\xfa\\x76\\x5c\\x81\\x72\\x39\\xdc\\x18\\xde\\x92\\x3e\\x2e\\x84\\xcc\\xe0\\x79\\xe4\\x1b\\xc4\\x9f\\x36\\x04\\xe5\\xd6\\xd9\\x6c\\x1b\\x04\\x10\\xb1\\x2e\\xe1\\xe4\\x87\\x7b\\x04\\x3d\\x24\\xe3\\x6a\\x1d\\x63\\x1b\\x5d\\xef\\x34\\x79\\x3b\\x7e\\xbf\\x3d\\x0a\\x4f\\x8d\\x19\\xef\\xdf\\xbd\\xfe\\xc5\\xab\\xb7\\xb7\\x23\\xe0\\xbd\\xaf\\x4f\\xaa\\x09\\xaa\\x4f\\x42\\xb4\\x4e\\x7d\\x12\\x36\\x82\\xf1\\x4d\\xc7\\x25\\x0f\\xf7\\x82\\x14\\x74\\xe3\\xcc\\xbd\\xf8\\x85\\xeb\\x86\\xd4\\x93\\x85\\x4d\\xc4\\xfa\\x26\\x06\\x43\\x5a\\x9c\\x25\\xec\\x12\\x3a\\x1e\\xee\\x89\\x90\\x2c\\xd7\\x6b\\xd1\\x11\\x6f\\x39\\x46\\x13\\x1d\\xfb\\x30\\x6b\\x58\\x2f\\x11\\x4d\\x91\\xd2\\x13\\x45\\xf5\\xfa\\xbe\\x1a\\x82\\xda\\xc7\\xcd\\x9c\\x91\\x64\\xd2\\x32\\xf6\\x0c\\x94\\x02\\xbd\\x2b\\x55\\xdc\\x90\\x8a\\x71\\x40\\xba\\xc6\\xc8\\x66\\xa5\\xf4\\x0d\\x98\\xc5\\xce\\xce\\xb6\\x3b\\x1b\\x02\\xe1\\x5c\\xa5\\x19\\xd2\\xfe\\xa1\\x70\\x2c\\x30\\x60\\xf4\\x0e\\xeb\\x5e\\x30\\xaa\\x15\\x97\\xb2\\xd9\\xd7\\x1e\\xd5\\xda\\x03\\x5f\\xd9\\xcb\\x76\\x34\\x14\\x99\\xe5\\xcc\\x96\\x1b\\x3f\\x31\\x8c\\xf2\\x13\\xde\\xfb\\xa8\\xce\\x9d\\xda\\x58\\x7c\\x03\\xa2\\x14\\x38\\xc5\\xde\\x4c\\xf0\\x5b\\xf3\\xf2\\xd4\\x02\\x04\\x60\\x7e\\xac\\xcf\\x17\\x0a\\x43\\x0d\\xc1\\xec\\x88\\xc7\\x5a\\x70\\xf0\\x9a\\x00\\xc9\\x20\\x6f\\x79\\xad\\xb8\\x75\\x49\\x8d\\x36\\x1f\\x2b\\x0e\\xf3\\x83\\xc2\\x00\\x8c\\x15\\x67\\x6b\\xc5\\xf9\\xe1\\xcc\\x8b\\x15\\x67\\xc7\\x8a\\xab\\x4b\\xd6\\x8a\\xcb\\x63\\xc5\\xd9\\xb1\\xe2\\x54\\x1b\\x56\\xdc\\xfa\\xfd\\xe1\\x1e\\x05\\x15\\xc8\\xe5\\x2c\\xdd\\x90\\x9f\\x03\\xae\\x5a\\x2b\\x03\\x6f\\xe9\\x3e\\x84\\x2a\\x44\\xb4\\xa3\\xb4\\x78\\x31\\xcb\\x55\\x32\\x39\\x09\\xde\\x36\\x54\\x83\\x86\\xbb\\x84\\x15\\x1b\\xf2\\x24\\x42\\x3b\\x83\\x73\\x09\\x21\\x84\\x0a\\x4c\\x0d\\xc8\\x88\\x5d\\xce\\x6a\\x3b\\xe2\\xeb\\x10\\xf6\\xd7\\x48\\x34\\x91\\x2a\\x84\\x94\\x68\\x22\\x6a\\x1b\\xfb\\x52\\x48\\x1d\\xe5\\xba\\x4b\\x40\\x43\\xd0\\xb6\\x36\\x2f\\x8d\\x96\\x9f\\xa3\\x92\\x4c\\xf3\\x7a\\x8c\\x8e\\x69\\x60\\x8a\\x4e\\xfb\\x6a\\xf4\\x6c\\x2b\\xd7\\x89\\x8f\\xa9\\x0e\\x73\\xfe\\xd5\\x8e\\x34\\x3a\\x5c\\x1f\\x4b\\x55\\x98\\x86\\x04\\x3e\\xb2\\xd7\\x31\\xe1\\x57\\x6a\\x2d\\x4d\\xa7\\x91\\xdd\\x45\\x0e\\xc4\\x2f\\x85\\x26\\xba\\x12\\xa2\\xf0\\xaa\\x81\\xf7\\xe1\\x51\\x6e\\x94\\x78\\xc9\\x11\\x1b\\x2d\\x8d\\xa6\\x58\\x71\\xfb\\x33\\x77\\xda\\xb9\\x13\\x6a\\xea\\x71\\xa1\\xad\\x41\\x53\\x28\\x5a\\xba\\xef\\x45\\x67\\xe9\\xde\\xb4\\xaf\\xdf\\x55\\x3a\\xaa\\xfa\\xc2\\x2d\\xa3\\x77\\x6f\\x48\\x9c\\xdf\\xd9\\x57\\xc5\\xa7\\xae\\x71\\x66\\xf6\\x4b\\xcd\\xc7\\xed\\x05\\xf8\\xd4\\x50\\x74\\x2d\\x82\\xf5\\xa2\\xe3\\x5c\\xa0\\xb2\\x98\\xed\\x28\\xee\\x94\\x8a\\x98\\x18\\x93\\x02\\x4a\\x28\\x04\\x0c\\x87\\x4d\\xc9\\x55\\xae\\x43\\xfa\\xd8\\x6d\\x50\\xe3\\x22\\x56\\x1b\\x8d\\x65\\x55\\x7d\\x20\\xd8\\xb0\\xbd\\x95\\x42\\x2d\\x05\\x95\\x50\\xa0\\xfc\\x84\\xc4\\x8f\\xd9\\x4e\\xa4\\xbe\\x2a\\xfb\\xd3\\xd0\\xdd\\xdd\\xd6\\xf6\\x7e\\xc0\\x59\\xb5\\xa4\\xb4\\xa3\\xfa\\x1a\\xcf\\xec\\xd1\\x4e\\xc3\\x51\\x84\\xf2\\x44\\x7a\\x46\\x69\\x4b\\x90\\xe3\\x89\\xa0\\x27\\x21\\x23\\x5c\\xe4\\x1c\\x12\\x05\\xb1\\x56\\xe5\\x93\\x93\\xf8\\x91\\x41\\x48\\x86\\xec\\xcb\\x33\\x7d\\x08\\x8c\\x84\\x27\\xf1\\xc4\\x42\\x3c\\xf1\\x90\\xc9\\xeb\\x76\\x9e\\x5c\\x77\\xc5\\x5e\\x07\\x47\\x4a\\x5c\\xd4\\xd4\\xe5\\x22\\x77\\xd4\\x48\\x0f\\x04\\x43\\xa9\\x8d\\xa6\\x22\\xbb\\xe6\\x68\\xea\\x8c\\xcd\\x3d\\x4d\\x9b\\xc6\\x35\\x40\\x82\\xd2\\x9a\\x96\\x4b\\xbb\\x71\\xb3\\x73\\x38\\x3d\\xdc\\x2f\\x1b\\x54\\x75\\xa3\\xc3\\x9d\\x07\\x7b\\x19\\x9d\\x78\\x25\\x16\\xe9\\xc6\\x40\\x85\\x08\\xd3\\x75\\x24\\x4d\\xcd\\x5c\\x9a\\x6f\\x29\\x0a\\xd1\\x75\\xe5\\xf4\\xc2\\x2e\\x49\\x5f\\xf5\\x41\\xef\\x70\\x7b\\x41\\x84\\x55\\x3c\\xd8\\x4a\\x4c\\x36\\xd4\\xed\\x2c\\xdd\\xf5\\x28\\x8b\\x17\\xbd\\x56\\xac\\xe0\\xa1\\xa9\\xb2\\x63\\x17\\xb1\\xd8\\x63\\xae\\x32\\xbf\\xf5\\x7a\\x94\\xcf\\xe3\\xc0\\x7d\\x47\\x3f\\x6f\\xae\\xa5\\xcf\\x9f\\x5a\\x04\\x7f\\xf0\\x7d\\xc9\\xde\\xfe\\x3f\\xaf\\x22\\x74\\x0f\\x73\\xb7\\x99\\x9c\\x4d\\xfb\\x86\\xf2\\xc4\\xc9\\x7e\\x36\\xd3\\xed\\x7a\\xe6\\x76\\xf7\\x9f\\x5a\\xc4\\x7e\\xf0\\xb2\\xb6\\xfc\\x77\\xd2\\x7d\\x42\\xce\\x71\\x39\\x8f\\xf4\\x2d\\x8a\\x89\\x99\\xd5\\x73\\x63\\xbb\\x9e\\xb9\\xdd\\xfd\\xa7\\x46\\xb3\\x1f\\xac\\xbc\\x82\\x3f\\x7f\\xfb\\xfa\\x85\\xe2\\xd5\\x7f\\x07\\xdf\\x30\\x42\\x1a\\x79\\x01\\x56\\x1b\\x71\\x8e\\x24\\x98\\xc1\\x29\\x90\\x28\\x94\\xe1\\xec\\x7d\\xe6\\xc1\\x17\\x72\\xf6\\x0d\\xd6\\xb5\\x74\\xb8\\xbe\\x6f\\xd7\\x3b\\x6f\\x7f\\xe3\\x53\\x3b\\xd6\\x0f\\x5e\\x76\\xab\\xfe\\x3b\\xf9\\x3c\\xb8\\x23\\x99\\xee\\x87\\x5f\\x52\\xc1\\x12\\x24\\x6d\\xf1\\x09\\xb8\\xe7\\xd0\\x25\\xa8\\x91\\x4b\\x02\\xc4\\x93\\x53\\xee\\xc1\\xab\\x01\\x98\\x4f\\x2e\\xbc\\x8a\\x8f\\xb8\\x1f\\x72\\xc8\\x47\\x69\\xb5\\x7a\\x47\\xd1\\x73\\x47\\x1e\\xfb\\xc0\\xf6\\x34\\x52\\x7c\\x11\\x1c\\x59\\xc8\\x63\\x4c\\x2d\\xe9\\xe5\\xea\\x73\\xa5\\xa2\\xec\\xba\\x15\\x5f\\xad\\x07\\xee\\xab\\x11\\x01\\x87\\x6e\\x0a\\xee\\xab\\x8a\\x5a\\x8c\\x95\\x62\\x83\\x4a\\xca\\xc0\\x2f\\x39\\xaf\\xe9\\xc1\\x33\\xb8\\xf0\\x54\\x9d\\x3a\\x72\\x9f\\x25\\x07\\xfc\\xc8\\x29\\x50\\x53\\x2a\\x1a\\x45\\xf2\\xca\\x40\\xb4\\xf2\\x23\\xd7\\x03\\xf3\\x28\\x9e\\x9a\\xf0\\x3e\\xa9\\x86\\x0a\\x32\\x68\\x53\\xa6\\x6f\\xd7\\xf1\\xb9\\x3d\\x89\\x4f\\x8d\\x52\\x3f\\xf8\\x5e\\x0f\\x94\\xbf\\x8b\\x79\\x44\\x09\\xfd\\x20\\xdb\\x57\\x03\\x99\\xac\\xea\\x7b\\xc7\\x38\\x86\\xab\\xd8\\xb8\\x0d\\x34\\x96\\xeb\\x4a\\x9d\\x32\\xf6\\x75\\x17\\x1a\\x8e\\x22\\x46\\xb2\\x26\\x14\\x77\\xd9\\xc8\\x5d\\x94\\xee\\x68\\x85\\xb2\\xd5\\x64\\x09\\xcd\\xeb\\xbb\\x1e\\xee\\xa3\\x46\\x39\\x48\\xf7\\xd5\\xf0\\x95\\x4b\\x1c\\x93\\xb4\\x86\\x52\\x68\\x1f\\xc8\\x8e\\x27\\xb4\\x5c\\x57\\x62\\x24\\xca\\xbd\\xe3\\x2e\\x34\\xdc\\x4b\\x33\\x8c\\x7a\\xf4\\x31\\x01\\x36\\x7c\\x8f\\x9a\\x36\\x1b\\xbe\\x1e\\x58\\xa7\\xae\\xef\\xba\\x3d\\x13\\x4f\\x8d\\x76\\x3f\\xf8\\xf0\\x92\\x5f\\xf2\\xdf\\xc5\\x2c\\xa0\\xb2\\x70\\xc1\\xa3\\xd5\\x58\\xd0\\xbf\\x96\\x96\\x2c\\xab\\x79\\x86\\x2d\\x31\\x38\\x28\\xa6\\x0b\\x37\\x1a\\xc2\\x6b\\x57\\x68\\xc8\\x72\\x66\\xc1\\x29\\xc4\\xfa\\x67\\xac\\x54\\xe7\\xb8\\x1d\\x15\\x00\\xeb\\xc9\\xd8\\xc0\\x87\\x76\\x5d\\xa7\\xbc\\xf4\\x83\\x40\\x0e\\x40\\x41\\x5d\\xe9\\x92\\x09\\xeb\\xc9\\x26\\x63\\x87\\xa4\\x45\\x9c\\x83\\x2d\\x71\\x31\\x35\\x65\\x5d\\x8c\\x8e\\xb9\\xe9\\xbc\\xf6\\xb9\\x24\\xf7\\x58\\xbd\\x5f\\x0d\\x64\\x44\\x8a\\x45\\xcc\\x70\\xd3\\x73\\x18\\x72\\x6a\\x3a\\xb4\\xaf\\x77\\x38\\x7a\\xaf\\x68\\x2c\\x4b\\xba\\x7b\\x9f\\x90\\x4d\\xf5\\x9c\\xd5\\xc8\\xbe\\x4e\\x65\\x1f\\xeb\\xae\\x94\\xdc\\xb1\\x9f\\x81\\xfa\\xe4\\x63\\x2d\\x8f\\x95\\x7e\\x2b\\x51\\x02\\x19\\x61\\xb3\\x25\\xa1\\xd7\\x37\\xdf\\x9e\\xf1\\xa7\\x86\\xcc\\x1f\\xbc\\x50\\xe5\\x8a\\x72\\x94\\x9a\\x66\\x7c\\x11\\xed\\x30\\x03\\x73\\x7a\\xeb\\x67\\x89\\xcd\\xec\\x5a\\xc0\\x04\\x15\\x2b\\xd8\\xf9\\x9c\\xd9\\x2f\\x69\\xa5\\x3a\\x88\\x5f\\xdc\\x1c\\x3f\\x2c\\x37\\xf5\\x1c\\x97\\xfe\\x70\\x8f\\xba\\xe9\\x26\\x85\\x47\\x63\\x2b\\xca\\x2a\\x31\\xed\\xb7\\xaa\\x43\\x54\\x67\\x9f\\x5a\\x2f\\xff\\xec\\xfb\\xcc\\x78\\xff\\xd0\\x0a\\xc9\\xdd\\xfd\\x4e\\x21\\xb9\\xf6\\xff\\xef\\x42\\x72\\xf7\\x90\\x47\\x9b\\x0f\\x6f\\x27\\x1d\\x90\\x67\\x27\\x83\\x99\\xa4\\x9d\\x7c\\xe5\\xb1\\x3a\\x15\\x13\\x43\\x9c\\x88\\xe6\\x4c\\xf5\\x76\\x62\\xe6\\x7d\\x35\\x82\\x5b\\xb2\\xb7\\x13\\xaa\\xb8\\xbb\\xde\\x9d\\xa0\\x1e\\xc0\\xeb\\x96\\x13\\x5b\\x6b\\x27\\x55\\xdd\\x8c\\xac\\x9d\\xa4\\xf4\\x2d\\x5d\\x0d\\x84\\xeb\\x9d\\xa4\\xcb\\x51\\xa5\\x23\\x13\\x01\\x17\\x27\\xf6\\x8e\\x68\\xfb\\x13\\xd3\\xd8\\xd1\\xa0\\xd0\\x06\\x7f\\x5b\\xb2\\x95\\x34\\xe2\\x44\\xa2\\x88\\xf9\\xd5\\x73\\xbc\\xb0\\x11\\xfa\\xf9\\x53\\x5b\\xf1\\x8f\\x5e\\x46\\xad\\x7f\\x48\\xf1\\xb7\\x7b\\x38\\xd7\\x9b\\xe6\\xd9\\xd4\\x40\\x4d\\x94\\x4c\\x67\\xb3\\xb1\\x5d\\xcf\\xdc\\xee\\xe7\\x53\\x53\\xee\\x8f\\x5e\\x86\\xa7\\x7f\\x58\\x3f\\x09\\x4c\\x38\\xcf\\x63\\xd0\\x86\\xb4\\x41\\x86\\xb8\\x1f\\xde\\xae\\x67\\x6e\\xf7\\xf3\\xa9\\xd5\\xf7\\x47\\x7f\\x0b\\x1c\\xfa\\x07\\x75\\x76\\x44\\x89\\x59\\x1a\\x05\\x38\\xf9\\x1c\\xe9\\x9b\\xa3\\xea\\x1c\\x8f\\x0d\\x78\\xa7\\x7e\\xe5\\xba\\xdd\\x99\\x36\\x43\\xfd\\x41\\xa7\\x73\\x74\\xdf\\xae\\x77\\xde\\xfe\\x98\\xa7\\x76\\xcf\\x1f\\x7d\\x2f\\x56\\xf9\\x83\\x3e\\x85\\x51\\x31\\x8e\\xfa\\xbe\\x1a\\x2b\\x87\\x6d\\x61\\x00\\x5d\\xdb\\xa0\\xc9\\xb9\\xc3\\x02\\x95\\x28\\xa3\\x1c\\xeb\\x94\\x01\\x5f\\x53\\xdf\\xd1\\x70\\xef\\x0d\\x5b\\xa5\\xce\\xc7\\xe6\\xa9\\x0d\\xd9\\x45\\xe1\\xec\\x2d\\x4d\\x08\\x20\\xdb\\x27\\x47\\x09\\x0b\\xea\\xb5\\x2a\\xc1\\xf5\\x56\\x24\\x25\\xc1\\x00\\x0e\\xe8\\x37\\x78\\x26\\x10\\x10\\xfb\\xda\\x3d\\x2d\\x12\\x46\\x4a\\x4b\\x78\\xba\\xa1\\x10\\x7f\\x1f\\x3b\\x1a\\x6e\\x48\\x32\\x5a\\x8f\\xb6\\x75\\x97\\x0d\\xda\\x73\\x61\\x22\\x5a\\x0f\\xac\\x53\\xd7\\x77\\xdd\\x1e\\xf2\\xa7\\x06\\xdb\\x1f\\x7f\\x0f\\x3d\\xfe\\x01\\xc5\\xe6\\xee\\x51\\xa1\\xaf\\xe4\\x90\\xe6\\xd8\\x58\\xfa\\xa1\\x2e\\x76\\xd9\\xae\\x67\\x6e\\xf7\\xf3\\xa9\\x49\\xf5\\xc7\\xdf\\x43\\x8f\\x7f\\x50\\x3f\\xa1\\x26\\x95\\x5e\\x28\\xb6\\x21\\x22\\xaa\\xf4\\x42\\x0d\\xdf\\xae\\x67\\x6e\\xf7\\xf3\\xa9\\x89\\xf1\\xc7\\x7f\\x1b\\x7a\\xfc\\x43\\x3a\\x3b\\x98\\x7f\\x57\\x01\\x94\\xbe\\x21\\x10\\x1c\\x0a\\x20\\xca\\x33\\x97\\x02\\xa8\\x74\\x28\\x80\\xa8\\xb6\\xe5\\x0e\\xc7\\xc1\\xeb\\x9d\\xb7\\x3f\\xe6\\xa9\\xb9\\xea\\xc7\\xdf\\x4f\\x8f\\x7f\\xc8\\xa7\\x2c\\x3c\\x50\\x4a\\x02\\x1f\\x4a\\x02\\xdb\\xa1\\x24\\x88\\x5d\\x95\\x84\\x7e\\x55\\x12\\xf4\\x50\\x12\\x34\\x0e\\x25\\x01\\x0d\\x28\\x09\\x7a\\x28\\x09\\xb8\\xab\\x94\\x04\\x6c\\x6a\\x95\\x92\\xc0\\x76\\x55\\x12\\x18\\xc9\\x75\\xed\\x58\\x95\\x81\\x5a\\x43\\x57\\x25\\x81\\xae\\x4a\\x42\\x3f\\x94\\x04\\x24\\x12\\x2f\\x25\\x01\\x8e\\x0e\\x50\\x12\\xe4\\xaa\\x24\\xc8\\xa1\\x24\\x20\\xd4\\x02\\x4a\\x42\\xbf\\x2a\\x09\\x7a\\x55\\x12\\xe8\\x50\\x12\\xae\\xef\\xba\\x39\\xe4\\x5f\\x3c\\xb5\\xea\\xfc\\xe8\\x9b\\xdf\\xdf\\xf5\\xb6\\xef\\x8a\\xf5\\x47\\xeb\\x17\\x37\\x3a\\x9f\\xc4\\x2e\\x25\\xdb\\xbe\\xab\\x68\\x66\\x2c\\xcb\\x15\\x07\\x05\\x64\\xc7\\xb5\\x80\\xec\\xb8\\x16\\x90\\x25\\xfe\\xae\\x80\\x6c\\xfc\\x6e\\x01\\x59\\x3f\\x0a\\xc8\\xa2\\x36\\xdd\\x58\\xee\\x8b\\x28\\x20\\x3b\\x56\\x01\\x59\\x41\\x01\\x59\\x8f\\x87\\xfb\\x82\\xca\\xf5\\x6a\\x25\\x5a\\x35\\x64\\xa5\\xef\\xd0\\x6a\\x61\\x38\\x5c\\x35\\x64\\x8b\\x83\\x09\\xdb\\x1c\\x7d\\xd5\\x90\\x1d\\xec\\x77\\xd7\\x1a\\xb2\\x83\\x57\\x0d\\x59\\x84\\xca\\x41\\x95\\xf0\\xa3\\xba\\x56\\x3f\\x6a\\xc8\\x1a\\x1f\\xe5\\x9a\\xea\\x15\\xf5\\x75\\x2e\\xc5\\xb8\\x6f\\x3b\\x60\\x7c\\xf1\\xd4\\xa6\\xf4\\x17\\xdf\\x13\\x07\\xfe\\x87\\xd5\\x11\\xbc\\x47\\x41\\x55\\x18\\x27\\xd0\\xe8\\xd9\\xc6\\x0a\\xcb\\x5d\\xd5\\x72\\x97\\x71\\xa2\\x86\\x04\\xc6\\x89\\x5a\\xaf\\x2b\\x2d\\x02\\x1f\\xc6\\x89\\xb5\\x16\\x4b\\x69\\x91\\xc3\\x38\\x21\\x72\\x18\\x27\\xa0\\xa6\\xf6\\xdc\\xb1\\x94\\x01\\x06\\xd9\\xef\\x60\\x9c\\x10\\x3c\\x39\\xc6\\x14\\x2c\\xf7\\x82\\xa1\\x85\\x62\\x61\\x9c\\x38\\xd6\\xfd\\xbe\\x1a\\x11\\x6b\\xb9\\xc3\\x38\\x81\\xe2\\x45\\x23\\xd6\\xc5\\x30\\x4e\\xa0\\xcf\\xc1\\xcb\\xcf\\x0e\\xc6\\x09\\x70\\x64\\x4b\\x18\\xdb\\x97\\x71\\xc2\\xe5\\x30\\x4e\\x88\\x1d\\xc6\\x89\\x52\\x80\\x23\\x79\\x85\\x3a\\xc2\\x38\\x01\\xdd\\x89\\x3a\\x72\\x28\\x2d\\xe3\\x04\\x9e\\x93\\xbe\\x5d\\xc7\\xe7\\xf6\\x84\\x3d\\xb5\\xa2\\xfd\\xe4\\x7b\\xa4\\xcf\\x3f\\xac\\xda\\x8b\\x77\\xdf\\xd5\\x5e\\x6c\\xff\\x68\\x6a\\x2f\\xde\\xc3\\xb6\\x66\\xa1\\x67\\x93\\xc3\\x1c\\x56\\xa0\\xca\\x34\\xb7\\x60\\xe4\\x14\\x79\\x61\\xba\\x9f\\x1a\\x14\\x7f\\xf2\\x3d\\x42\\xfc\\x9f\\xa6\\xfb\\xef\\x7f\\xba\\x3b\\x3c\\xc3\\xf4\\x3c\\xb2\\x6f\\x70\\x86\\xb2\\xa0\\xb3\\x31\\x6d\\xd1\\xfd\\xae\\xce\\xdc\\x9e\\xee\\xa7\\xa6\\xc7\\x9f\\xfc\\x6d\\xb0\\xd0\\x3f\\xcd\\xf9\\xdf\\xfb\\x9c\\x0f\\xa8\\x0f\\x6a\\x97\\x12\\x53\\xe7\\x08\\xc3\\x8e\\x35\\x85\\xd9\\xa6\\xe1\\x77\\xf8\\x95\\xd3\\x2f\\xe4\\x1a\\x9b\\x81\\xc9\\x67\\x9c\\x7d\\xd8\\x76\\xbd\\xf3\\xf6\\x9a\\x78\\x6a\\x04\\xfd\\xc9\\xf7\\xa5\\x6a\\xf9\\xa7\\xe5\\xf0\\xf7\\xbe\\x1c\\xb0\\xb1\\x17\\xb6\\xaf\\x06\\x8f\\x36\\x1c\\x5b\\x14\\x31\\x07\\x73\\xa1\\x68\\x42\\xea\\xbf\\xd2\\x4a\\x67\\x00\\x8c\\xc8\\xd8\\x91\\xc7\\xdf\\x65\\x34\\x4f\\xe4\\x1b\\x90\\x95\\x76\\xdf\\xf3\\xb0\\xd6\\x06\\x19\\xa2\\x73\\x29\\x78\\xec\\x70\\x31\\x0b\\x1e\\xf0\\xdf\\x22\\x04\\x44\\x32\\x10\\x50\\x5f\\xe1\\x63\\x8e\\x22\\x3b\\x0a\\xa5\\x76\\xe3\\xba\\xd8\\x4d\\xf6\\xd5\\x18\\xc8\\x6e\\xd8\\x28\\x94\\x56\\xc6\\xa3\\xa4\\x5c\\x17\\x67\\x30\\x0a\\x50\\x52\\x62\\xdb\\x99\\xd1\\x68\\x86\\xf4\\x86\\x71\\x84\\x11\\xa6\\xe6\\xf2\\xe5\\x4a\\x8a\\x89\\x10\\xd5\\xec\\x82\\xe4\\xd3\\xd5\\x68\\xc8\\xdd\\xbc\\xd0\\x4d\\x2e\\x3b\\x70\\x6a\\xde\\x51\\xba\\x2e\\x47\\xf1\\xd1\\x63\\xbb\\x8e\\xcf\\xed\\x45\\xff\\xd4\\x0e\\xfc\\x93\\xef\\xd7\\xa3\\xfe\\x69\\xdd\\xff\\xbd\\xaf\\x7b\\x2c\\xaf\\x10\\x5f\\xeb\\x2c\\xd2\\x1b\\xb2\\xa5\\x26\\x23\\x51\\xf2\\x1d\\x90\\xbf\\x62\\x1b\\xc9\\xb4\\xad\\xbd\\x3e\\xee\\xd3\\x96\\x7d\\xd7\\x91\\x48\\x86\\x3c\\x1d\\x1e\\x16\\x20\\x00\\x29\\xf5\\xcb\\x69\\xec\\x22\\x8e\\x46\\x43\\x4d\\x00\\xb8\\x26\\x1f\\xef\\x3a\\xf0\\x55\\x88\\xad\\x4d\\xcc\\x48\\x83\\xbf\\x07\\x16\\x35\\x52\\x46\\xa6\\xf1\\x3e\\x3a\\x40\\x3c\\xb7\\x51\\xb3\\x91\\x34\\x90\\xf3\\x14\\x77\\xa1\\xe1\\x69\\x6d\\x40\\xdf\\x30\\x5a\\x77\\x39\\xc5\\x1e\\xd8\\x0c\\x3d\\x92\\xaa\\xe2\\xd4\\xf5\\x5d\\xb7\\x57\\xee\\xd3\\x4d\\x81\\xaf\\xbe\\x7d\\xfb\\xcd\\x9b\\xaf\\xdf\\xde\\xce\\xda\\x82\\x84\\x44\\xbe\\x22\\x14\\x3d\\x7d\\x43\\x19\\xdb\\xde\\xc7\\x06\\x6f\\x23\\xb2\\xc0\\xb6\\x54\\x8a\\x6d\\xd8\\x6f\\xab\\x1f\\xa8\\x23\\x37\\x7d\\x1f\\x5b\\xa0\\x96\\xbf\\xaf\\x5f\\xea\\x29\\x03\\x15\\x85\\xd6\\x56\\x96\\x49\\xe0\\x21\\xf5\\xf7\\xf1\\x96\\xdb\\xfd\\x7e\\x6a\\x66\\xfe\\xc9\\xcb\\x75\\x0d\\x89\\x44\\xaf\\xe4\\xa6\\x57\\x72\\xa3\\x2b\\xb9\\xc9\\x22\\x37\\x19\\x20\\xb7\\xbe\\x0a\\x93\\x18\\xf7\\xa3\\x9c\\xd0\\x68\\x0a\\x8a\\x09\\xd9\\x90\\x51\\x71\\xd8\\xd9\\x6c\\x63\\x82\\x05\\x71\\x27\\xe3\\x86\\x38\\xfb\\xb5\\xef\\x31\\x91\\x22\\x62\\xd1\\x61\\x8e\\x83\\x0e\\xe5\\xa0\\x43\\xbf\\xd2\\x61\\x5c\\xe9\\x30\\xae\\x74\\x18\\x57\\x3a\\x8c\\xab\\x0b\\x6e\\xae\\x4c\\x40\\x11\\xbc\\xbc\\xb0\\xf0\\x28\\x89\\xe2\\x47\\xd9\\xc8\\x28\\xcf\\x44\\xa8\\xee\\x8a\\xa4\\x7d\\x6e\\x3b\\x75\\x64\\x3a\\x8b\\x23\\xad\\x2f\\x75\\x47\\xb6\\x08\\xfd\\x2d\\xa1\\x8a\\x20\\x6f\\xd8\\xaa\\x4f\\x9d\\xbd\\x89\\x58\\x33\\x0e\\x64\\x62\\x53\\xe6\\x0d\\xbb\\x9e\\x94\\xb6\\x63\\xd7\\x93\\xd9\\x8e\\x20\\xe1\\xe2\\xa1\\xc8\\x29\\x00\\xca\\xf5\\x2b\\xe5\\xca\\x41\\xb9\\x70\\x68\\x06\\xe5\\xea\\x41\\xb9\\xfd\\x4a\\xb9\\xc5\\x1c\\xe4\\x60\\x0e\\x08\\x2a\\x6c\\x99\\x08\\xef\\x9d\\x19\\x2b\\x16\\x77\\x53\\x1e\\x8d\\x5d\\x76\\x75\\xba\\xab\\x57\\x7e\\x57\\xc5\\x05\\x44\\xc0\\x48\\xe9\\xb0\\x68\\x5a\\x0f\\x9a\\xe6\\x45\\xd3\\x91\\x07\\x4d\\xcb\\xcb\\x95\\xe3\\x6b\\xbd\\x3c\\x35\\xf7\\xff\\xf4\\xfb\\xb6\\x25\\xfe\\xc1\\x15\\xcf\\xbd\\x3b\\x8a\\xe7\\xb6\\xdb\\xc5\\x73\\xef\\xe1\\xdd\\x8c\\xbd\\x07\\x93\\x0d\\x35\\xa7\\x93\\xf2\\x6c\\x1e\\xdb\\xf5\\xcc\\xed\\x11\\x7c\\xba\\x11\\xf1\\xd3\\xef\\xdb\\x30\\xf9\\xc7\\x39\\x82\\x05\\x94\\x93\\xec\\x3c\\xc6\\xd8\\x10\\x45\\x69\\xca\\x70\\x8f\\xba\\x9e\\xb9\\x3d\\x82\\x4f\\x77\\x3f\\x7e\\xfa\\xb7\\xda\\xca\\xf9\\x07\\x33\\x8c\\x77\\x4f\\xaa\\x38\\xbf\\x34\\x8c\\x23\\x21\\x20\\xfd\\x42\\x96\\xe3\\x1c\\x48\\x75\\x5b\\xa2\\x8a\\x7d\\x53\\x78\\x5e\\xe4\\x58\\x09\\xd9\\x9d\\x72\\xc5\\x4e\\xa5\\xe5\\x39\\x48\\xb7\\xeb\\x9d\\xb7\\x87\\xf9\\xe9\\x8e\\xc7\\x4f\\xff\\x16\\x9b\\x4c\\xff\\x28\\x07\\x99\\x0b\\xb2\\x44\\x8f\\x7d\\x35\\x2c\\x90\\x69\\x9e\\xe2\\xa8\\x8f\\x41\\xc9\\xb6\\x6b\\x00\\xf1\\xd8\\x92\\x89\\x75\\x0a\\x45\\x71\\xeb\\x2e\\x34\\xdc\\x62\\xc5\\xe7\\x3a\\xeb\\xba\\xcb\\x46\\xdf\\x8f\\x7c\\xa3\\x85\\xc1\\x0a\\x03\\xb1\\xcc\\xeb\\xbb\\x8a\\xc7\\x00\\xd8\\x17\\x92\\xac\\x86\\xf9\\x0a\\xae\\x80\\x29\\x11\\x25\\xef\\x59\\xf6\\xc1\\xd8\\xab\\x95\\x36\\xa0\\x29\\x8c\\x3e\\xc7\\x90\\x75\\x17\\x1a\\x6e\\xbe\\xdc\\x03\\xbc\\xf8\\xbd\\xff\\x3f\\xec\\x7d\\xcd\\xae\\x1c\\xb9\\x91\\xf5\\xbe\\x9e\\x82\\xf8\\xf6\\xc2\\xc7\\x88\\x60\\xfc\\x70\\x33\\xeb\\x5a\\xa4\\x16\\x09\\x24\\x0a\\x18\\xed\\xd4\\xd3\\x52\\x8f\\x80\\x76\\x0b\\xe3\\x76\\x1b\\xf0\\xdb\\x0f\\xe2\\x04\\xf3\\x76\\x4f\\xd9\\x55\\x57\\x36\\xec\\x06\\x04\\x6b\\x21\\x14\\x75\\xb3\\x32\\x99\\xc5\\x24\\x23\\x83\\x11\\x27\\xce\\xf1\\x0b\\x69\\xc4\\x1e\\xf9\\x42\\x50\\x70\\x74\\x6a\\x1d\\x3a\\xfb\\x7a\\x3c\\x19\\xee\\xd3\\x4a\\xff\\xf9\\xdc\\x6a\\xfd\\x33\\x04\\xa8\\xdf\\x82\\x6c\\x0f\\xe9\\x25\\x1f\\x1b\\xe4\\x62\\x01\\x3b\\x24\\xdd\\xce\\x23\\x8f\\xef\\xf7\\x3e\\xbd\\x74\\xfc\\xf7\\xe7\\x3f\\x3e\\x51\\xa9\\x89\\xba\\xcd\\x5b\\xbe\\xf5\\xaf\\x26\\x06\\x0c\\x31\\x5c\\x00\\x6c\\xd8\\x68\\xc8\\x41\\xbd\\x68\\x55\\x40\\x3f\\x37\\xda\\x24\\x29\\xe9\\x7d\\x97\\x28\\xe9\\x7d\\xc8\\xcd\\x12\\x29\\xe8\\x4a\\xf1\\xed\\x81\\xa4\\xa3\\x35\\x11\\x39\\x4c\\xd2\\x2d\\xee\\x57\\x89\\x62\\x5d\\x9e\\x2b\\x6e\\x1e\\xf3\\x1d\\xba\\x9f\\x21\\xb7\\x31\\xb9\\x3a\\x87\\x0a\\x4a\\x55\\x15\\x2a\\xf1\\x11\\x23\\x2f\\xea\\xf5\\x86\\x1e\\x7a\\xcc\\x1e\\x97\\xf4\\x9c\\xab\\xfc\\x53\\x5a\\xb9\\x06\\x8e\\xef\\xcd\\x6e\\xd8\\x9e\\x4d\\x63\\xf4\\x39\\x43\\xd0\\xc9\\xc3\\x91\\xba\\xcf\\x5d\\xfd\\xf0\\xe1\\x8f\\x7f\\x78\\xff\\xd3\\xf7\\xdf\\xfd\\xf8\\x04\\xe8\\xdf\\x09\\xd9\\x0d\\xb9\\x51\\xf7\\xb9\\x93\\x15\\x78\\xa4\\x11\\xd2\\x26\\x61\\x07\\x47\\x3e\\x4f\\xf1\\xda\\x9d\\x2a\\x2f\\x7d\\x2a\\x35\\xaa\\x64\\x8b\\x1a\\x35\\xcc\\x39\\x1d\\x1d\\xda\\x22\\x34\\x7c\\x80\\xa4\\x84\\xc4\\xa4\\x50\\x31\\x9c\\x93\\x18\\xa2\\x29\\x3a\\x1a\\xe2\\x25\\x44\\x56\\xdf\\xe9\\x23\\xb7\\x69\\xd6\\xe6\\xe4\\x03\\x6e\\xd0\\xc8\\xd9\\xad\\x55\\x30\\xa5\\xb9\\xa1\\xf2\\xd2\\x3e\\x0d\\xbf\\x80\\x78\\x48\\x05\\x79\\x28\\x0b\\x05\\x0d\\xaf\\x11\\x68\\x1b\\xa2\\x65\\xf7\\x60\\x69\\x03\\x49\\x18\\x0d\\x69\\x02\\xdf\\x76\\x48\\x63\\x38\\x99\\x80\\x15\\xf4\\x83\\xfa\\x90\\x66\\xf3\\x98\\xac\\x8d\\x0f\\xf7\\xe2\\x9b\\xf0\\x92\\x41\\x68\\x16\\xde\\xde\\x40\\x94\\x59\\xdb\\x9b\\x2a\\x0b\\x24\\x3f\\x46\\x6e\\x95\\x64\\x53\\x06\\xef\\x25\\xa0\\x23\\xcc\\xd6\\xd4\\xe6\\x92\\xbb\\x1d\\x8d\\xa6\\x1c\\x86\\x05\\xef\\x87\\x6b\\x29\\xeb\\x78\\x2d\\xe0\\x06\\x44\\x50\\x54\\xc1\\x18\\xd3\\xc0\\x8e\\x0b\\x04\\x72\\x1d\\x3b\\xb1\\x1d\\x9f\\xf9\\xbd\\x90\\x36\\xba\\x22\\x99\\x90\\x83\\xe8\\x46\\x97\\xfc\\x59\\xb9\\x83\\x33\\x1a\\x87\\xc9\\x6c\\xde\\x15\\x95\\xce\\x69\\x32\\xf0\\x69\\xa3\\x19\\x5b\\x8b\\xe9\\x87\\x69\\x6f\\x53\\x73\\x6f\\xbf\\x28\\x19\\x91\\x83\\x03\\x01\\x2c\\x74\\x2d\\x98\\x8a\\x00\\x8d\\x66\\xaf\\x3c\\x1d\\x8b\\xb4\\x12\\x22\\x33\\x3b\\x50\\xa1\\x0e\\xf1\\xc7\\x01\\xa9\\x62\\x2f\\x60\\x99\\x58\\xa9\\x9b\\x64\\xa3\\x34\\x73\\x04\\x99\\x14\\x94\\x56\\x7b\\x11\\x14\\x71\\xb7\\x23\\x27\\x12\\x24\\x18\\x1f\\xd7\\xa2\\x7c\\xb8\\x4f\\xf4\\xbd\\x7f\\x05\\xbe\\xfd\\xb5\\x49\\x69\\x5f\\x96\\x94\\x76\\xfb\\x37\\x93\\xd2\\xbe\\x2c\\x29\\xed\\xf6\\x5b\\x29\\xed\\xb7\\x40\\x97\\xb3\\xd0\\x55\\x69\\x6e\\x0c\\xce\\xf5\\x3e\\xae\\x2a\\xb2\\x9d\\x47\\x1e\\xcf\\x94\\xfb\\xac\\xe6\\xfb\\x57\\x90\\xf2\\xdf\\x66\\xca\\xd7\\x3c\\x53\\xf0\\x50\\xb4\\xd3\\x75\\x9a\\xa2\\x92\\x93\\x98\\xe3\\xaa\\xdd\\xb6\\xf3\\xc8\\xe3\\x99\\x72\\x9f\\x4e\\x7d\\xff\\x25\\x45\\x09\\x5f\\xcb\\x74\\xb9\\xdc\\x69\\xf4\\xff\\x3b\\x4c\\x97\\xcb\\xdf\\xd0\\xe8\\xff\\xbf\\xd3\\x65\\x16\\x4d\\x2b\\x2f\\x0a\\x18\\xeb\\x5b\\xd1\\x9e\\x10\\x03\\xf6\\x8d\\xbf\\xb2\\xd3\\x8d\\xa4\\x0f\\xc8\\x56\\x91\\x8e\\x71\\xb5\\xe8\\xdb\\x79\\xe6\\xe3\\xe9\\x74\\x9f\\xae\\x7d\\xff\\x4a\\xfd\\xc7\\xd7\\x32\\x93\\xbe\\x19\\x9e\\xbf\\x39\\x93\\x40\\x50\\x2b\\xbc\\xa3\\x31\\x62\\x81\\x0f\\xc7\\x18\\xc7\\xec\\x60\\x24\\x2f\\x42\\x16\\x12\\xb2\\xc3\\x51\\xd1\\x3e\\xd3\\xa7\\xaf\\x46\\x11\\x2f\\x81\\x7b\\x06\\x94\\x51\\x83\\x4a\\x04\\x4b\\x9c\\xc1\\x32\\x42\\x12\\x56\\xd1\\x72\\x09\\xab\\xb2\\x03\\x41\\x85\\xcd\\xf2\\xaf\\x8a\\xbe\\x87\\x47\\x51\\x42\\x71\\xf0\\xc6\\xf8\\x32\\xf5\\xbd\\x1a\\x9a\\x7e\\x22\\x6a\\xd9\\xe3\\x90\\xe2\\x43\\xd7\\xfa\\x72\\xfa\\xe1\\x03\\x37\\xaf\\xb9\\xdf\\xae\\xfd\\x54\\x03\\x6e\\x5b\\xc5\\x72\\x96\\x5d\\x48\\xd3\\x55\\xf4\\x51\\x0e\\x39\\xd2\\x0d\\xc3\\xfa\\xee\\xa6\\x68\\x34\\x07\\x67\\x50\\x6e\\x45\\x40\\x71\\x10\\x51\\xb9\\x09\\xe5\\xda\\x44\\x93\\xda\\xd8\\xce\\xf1\\x79\\xbc\\x5e\\xfe\\x8a\\xff\\xe5\\xf5\\x52\\x9b\\x6f\\x4b\\xe6\\x6b\\x5e\\x32\\x80\\x53\\xa2\\xa6\\x15\\x36\\x77\\x48\\x53\\xf0\\x91\\xbb\\x63\\x8f\\x4a\\x4a\\xb4\\xa3\\xc0\\x4b\\x89\\x4a\\xad\\x1d\\xfa\\x2e\\x28\\xc0\\x9e\\x52\\x51\\x74\\x19\\x02\\x36\\xe2\\x5a\\x3b\\x8b\\x3d\\x63\\x07\\x05\\x10\\xbb\\xb5\\x5a\\x44\\x7d\\x1e\\x67\\x5f\\xb9\\x50\\x73\\x3f\\x39\\x73\\xa1\\x82\\x87\\x77\\x49\\xee\\xe6\\x7a\\xa8\\x81\\xd1\\x3e\\x73\\xb3\\x37\\xd1\\x2a\\x16\\x26\\x1a\\x8e\\x22\\x68\\xab\\x33\\x57\\x0b\\x6c\\x14\\x91\\x8b\\x13\\xcc\\x7f\\x20\\xf3\\xf4\\xb1\\x53\\x17\\xba\\x64\\xab\\x2e\\x9c\\x07\\xcf\\x3e\\x1f\\x4f\\xfe\\xfb\\xc4\\xfe\\xfb\\xe7\\xd5\\x4d\\xdf\\x26\\xfe\\xd7\\x3c\\xf1\\x51\\x7d\\x37\\x88\\xf7\\x6a\\xa8\\x82\\xe5\\x89\\xc6\\xa4\\x82\\x2e\\xaa\\xca\\x81\\x2a\\x2d\\x9d\\xc5\\x97\\x4c\\x46\\x7d\\x37\\x80\\x04\\xc0\\x0d\\x27\\x75\\xc8\\x01\\x5d\\xd7\\x01\\x61\\x56\\x9c\\x1e\\x88\\xac\\x51\\x3e\\x1b\\xc8\\x98\\x46\\x95\\x41\\x8a\\x48\\x7d\\x99\\x9d\\x0e\\x9c\\xce\\xb2\\xa8\\xc9\\x98\\xbc\\x68\\xce\\x98\\xbc\\x30\\x8c\\x79\\x68\\x94\\xb0\\x3b\\xc1\\x73\\x22\\x39\\x2b\\x06\\x07\\xb8\\x21\\xfb\\xea\\x03\\x0d\\x99\\x4b\\xff\\x36\\x5f\\x55\\x2a\\xf3\\x42\\x32\\x3a\\x44\\xac\\x48\\x28\\xaa\\x0f\\xc1\\xdd\\xd7\\xfb\\xa8\\x41\\x24\\x18\\x44\\xcb\\xcb\\xd3\\xda\\xab\\xa1\\x51\\x87\\x46\\x78\\x9d\\xa5\\x64\\x28\\xc6\\xcf\\x46\\x03\\x67\\xa1\\xe6\\x42\\xce\\x77\\x68\\x7e\\x07\\x9d\\x0e\\x1d\\xc7\\x79\\x3f\\x8f\\x17\\xd7\\x3d\\x80\\xe0\\xfd\\x13\\x2f\\x2c\\x6a\\x81\\x78\\xd4\\x02\\x71\\xca\\x95\\x7b\\x28\\x54\\xb9\\x4b\\x5e\\x2c\\x0a\\x04\\x61\\xfd\\xd0\\x9c\\x9b\\x13\\x81\\xe5\\x37\\x13\\x24\\xd8\\x79\\x2a\\x7b\\xa9\\x02\\x73\\xfe\\x03\\xdf\\x83\\x8d\\xc3\\x80\\xbe\\x38\\x40\\x04\\x46\\xfb\\x18\\x6d\\x60\\x17\\x3b\\x9a\\x2a\\x1d\\xb9\\xc8\\x6c\\xf0\\x55\\xbb\\xdc\\xdc\\x05\\x51\\xef\\x90\\x28\\x9a\\x5c\\x17\\x10\\xb4\\xcd\\x3e\\x41\\xad\\x0d\\x7d\\x09\\x66\\x14\\xbb\\x73\\x2e\\xf5\\xe0\\xcd\\xc6\\xc5\\x27\\xed\\x36\\xa0\\xa6\\x1c\\x9e\\xab\\xef\\xa0\\xf4\\x31\\x3a\\xf9\\x01\\x14\\x78\\x8f\\xd2\\x27\\xc6\\x52\\x1a\\xbe\\x78\\x56\\xb5\\x14\\x0a\\x7a\\x29\\x6d\\x76\\xd2\\x1d\\x82\\xc4\\x5d\\x7d\\x29\\xfe\\xc4\\x0a\\xc4\\x41\\x25\\x76\\xf4\\x33\\xf5\\x59\\x01\\x1a\\x3d\\x88\\xba\\xa5\\x95\\x3b\\x88\\x1c\\xac\\xde\\x07\\xd1\\xd4\\x1c\\xb4\\xdb\\x70\\xbe\\x3a\\xcd\\x9b\\x84\\xef\\x4e\\x13\\x20\\x13\\x37\\x07\\xb0\\x19\\x7a\\xb3\\x4e\\xfb\\x04\\x40\\x96\\x1a\\xf4\\x7b\\xd2\\xc2\\xf6\\xf4\\x16\\x66\\xaf\\xca\\x33\\xf0\\xa9\\x12\\x43\\x86\\x64\\x43\\x07\\xd6\\x77\\x22\\xb5\\x06\\xc4\\x85\\xf4\\x8b\\x40\\xa5\\xd4\\x5b\\x94\\x80\\x02\\xe8\\x35\\xf1\\xf8\\xde\\xbd\\xcd\\x2e\\x73\\x48\\xa7\\xf3\\xcd\\x4d\\xf6\\xb9\\x68\\xb9\\x67\\x0e\\x12\\xd3\\x31\\x07\\xb5\\x30\\x47\\xe0\\x2c\\x66\\xd1\\xb4\\xe7\\x10\\x07\\x95\\xdc\\x34\\xe4\\xc2\\xc1\\x76\\x5c\\x0c\\x48\\xce\\xd6\\x3c\\xf4\\x70\\x70\\x44\\x8f\\x9b\\x0d\\xce\\x75\\x8c\\xd0\\x7d\\x91\\x5a\\x18\\x43\\x7a\\x87\\x7c\\x80\\x24\\x90\\xbb\\xdd\\x86\\xdb\\x75\\xf8\\xdc\\x21\\x2b\\xeb\\xd6\\xf2\\x01\\x0c\\x23\\xd4\\x3a\\x0f\\x9a\\x07\\x88\\x9e\\x75\\x1e\\x1c\\xbd\\x71\\xf8\\x8e\\x4f\\x81\\x40\\x26\\xb2\\x66\\xeb\\xfa\\x8f\\x27\\xf6\\x3d\\xbe\\xe0\\xbf\\x5e\\xe5\\x0e\\xe3\\x28\\xc1\\x25\\x5f\\x4a\\xdd\\xb4\\x4c\\x5e\\x78\\x09\\x2e\\x89\\x97\\xe0\\x92\\xea\\x12\\x5c\\x42\\xb6\\x26\\xb8\\x31\\x74\\x0a\\x00\\x28\\xe8\\xc7\\x1c\\xde\\x66\\x07\\x78\\x79\\xfe\\xaa\\xfb\\xda\\x75\\x31\\xd6\\x11\\x88\\x76\\xb1\\xe0\\xe7\\x41\\x55\\x18\\x54\\xc2\\x31\\xa7\\xc6\\x12\\x47\\x79\\xbc\\x5a\\x2a\\x68\\xf9\\xdd\\x39\\xd2\\xda\\x80\\x07\\x13\\x05\\xde\\x97\\xa2\\x04\\x3e\\xa5\\x89\\x21\\x9e\\xd7\\x9d\\xa1\\xba\\x85\\x7c\\x7f\\xc7\\xa3\\x49\\xab\\x1e\\x54\\xaa\\x4a\\xaa\\x15\\xe0\\x95\\x09\\xf9\\x40\\xf7\\xa5\\xa2\\x0b\\x0d\\xa0\\x59\\xaa\\x4a\\x90\\x7d\\x9f\\x60\\xb4\\x2f\\x95\\x65\\x2e\\x55\\x25\\xe6\\x52\\x55\\x8a\\x5e\\xaa\\x4a\\xe6\\xbf\\xaa\\x2a\\x99\\x2f\\xb5\\xe7\\x59\\xaa\\x4a\\x20\\xa9\\xa1\\xa5\\xf6\\x4c\\xc7\\x1a\\xd4\\x9a\\x74\\x63\\xf3\\xee\\x55\\x76\\x28\\x5a\\x65\\x87\\xc6\\x28\\x3b\\xcc\\x5f\\x80\\xb2\\xc3\\x31\\x56\\xd9\\xa1\\xfa\\x2a\\x3b\\x44\\xc3\\xf9\\x92\\xc3\\x5f\\x65\\x87\\xae\\xad\\xca\\x0e\\x7d\\xac\\xb2\\xc3\\x34\\x32\\x28\\x3b\\x44\\x69\\x62\\x0f\\xd0\\x38\\x56\\xd9\\x61\\xd0\\x2a\\x3b\\x84\\xbe\\x4f\\xc4\\xaa\\x36\\xb4\\x0e\\xe9\\xc2\\x2a\\x3b\\x2c\\xe5\\x8e\\xd1\\x0c\\x24\\x21\\x9a\\xf6\\x53\\x56\\xd9\\x61\\x5a\\xa3\\x5c\\xab\\x8f\\xe7\\xd9\\x3d\\x1e\\xe4\\xc3\\xf3\\x68\\xab\\xe9\\xd2\\x47\\x97\\xb9\\x40\\x1e\\xbd\\x71\\x29\\x01\\x93\\x74\\xf8\\x19\\x3c\\xf5\\x20\\xce\\xf7\\x28\\xdf\\x74\\xc8\\x9e\\x6d\\x4c\\x4a\\x5b\\xc2\\xdf\\xe9\\x3e\\xe9\\xa2\\xdb\\x85\\x26\\x99\\x2c\\x3f\\xc0\\xc7\\xa9\\x94\\x2e\\xb3\\x0e\\xcd\\x40\\x39\\x57\\x4d\\x04\\x0f\\x2e\\xfa\\x7a\\x35\\xbf\\x0d\\xb3\\xab\\x58\\x3e\\xc1\\x80\\xe0\\x3d\\x74\\xb1\\xc6\\x84\\x2a\\x15\\xab\\x1d\\xe0\\xce\\x99\\xe3\\x30\\x97\\x4b\\x1a\\x24\\x37\\x94\\xd0\\x94\\xc6\\x73\\x77\\xf8\\x6d\\xd2\\x91\\xb8\\x04\\x52\\x7b\\x87\\x94\\x17\\x21\\xdb\\xc0\\xf1\\xc2\\xfc\\x3c\\xf2\\x0d\\x9c\\x3f\\xf5\\x58\\xbf\\xfc\\xdd\\xdb\\x5c\\x14\\x73\\xbd\\x30\\x30\\xcf\\xc4\\x8b\\x07\\x07\\x22\\x6c\\xb3\\x38\\x37\\x55\\xa1\\xa0\\x90\\x76\\x2a\\xdc\\x6e\\x66\\x7d\\x0f\\x97\\xe6\\xe9\\x27\\x29\\xfc\\x2a\\xe4\\x43\\x43\\x18\\x95\\xb5\\x91\\x4f\\xb6\\xae\\xfb\\x12\\x12\\xe5\\xdf\\x86\\x44\\xf5\\xb7\\x21\\xd1\\x27\\x66\\xe3\\x1e\\xae\\xf1\\xe1\\x95\\xb4\\xdd\\xb7\\xc7\\xf9\\x2f\\x7f\\x9c\\x2b\\x3a\\xc9\\xbf\\x8d\\x5b\\xce\\xdf\\xc6\\x2d\\x9f\\x3c\\xce\\x7b\\xec\\xc8\\x87\\x2f\\x88\\x5b\\x7e\\x4d\\xcf\\xf4\\xb2\\x9e\\x69\\xfb\\xca\\x9e\\xe9\\x0a\\x11\\xca\\x2d\\xb7\\xa2\\xbf\\x0d\\x2e\\xca\\x19\\x5c\\xb4\\x33\\xb8\\xa8\\x67\\x70\\x51\\xcf\\xe0\\xe2\\x25\\xcf\\x7c\\xfc\\xcc\\xef\\xd1\\x2e\\x1f\\x5e\\x0d\\x96\\x7c\\x7b\\xe2\\xff\\xfa\\x27\\xbe\\xa2\\x0c\\xe3\\x8c\\x68\\x8c\\x33\\xa2\\x11\\x67\\x44\\x83\\xcf\\x88\\x06\\x9f\\x11\\x8d\\x38\\x1c\\xa2\\x55\\x73\\x9c\\x11\\x8d\\x71\\x46\\x34\\xe8\\x8c\\x68\\xf8\\x19\\xd1\\xf0\\x15\\xd1\\xc0\\x56\\xbe\\xfa\\x7a\\x89\\x68\\xc8\\x19\\xd1\\x90\\x33\\xa2\\x61\\x67\\x44\\x83\\xfa\\x19\\xd1\\xa0\\xfe\\x12\\xd1\\xf0\\x97\\x88\\x86\\xbc\\x44\\x34\\xe4\\x25\\xa2\\x31\\x5f\\x22\\x1a\\x8a\\x88\\x06\\x5a\\x67\\x44\\x63\\x9e\\x11\\x8d\\x27\\x33\\xf4\\x1e\\x28\\xf4\\xe9\\x15\\x4c\\xe0\\x5c\\x9a\\xd6\\x1e\\xa3\\x0a\\x5e\\x89\\x50\\x8a\\x3e\\x27\\xfe\\xab\\x43\\x6e\\x11\\x52\\xff\\xef\\x01\\x7a\\x4a\\x90\\x4c\\x74\\xbd\\x86\\xf0\\x86\\x0d\\x22\\xf8\\xa0\\x21\\x1c\\xb8\\x0e\\x3d\\xbe\\xbd\\x7b\\xe8\\xca\\xa7\\x57\\x00\\x77\\x7f\\xf7\\xed\\x9d\\x7a\\x63\\xd7\\xbc\\x99\\xad\\x92\\xe4\\x5d\\xae\\x6a\\xb2\\x9d\\x87\\x1e\\xdf\\xdd\\x3d\\x50\\xe5\\xd3\\x97\\x80\\xd9\\xfe\\x81\\x11\\x2c\\xc0\\xb8\\xdd\\x88\\xc7\\xbc\\x06\\xf9\\x66\\xc5\\x44\\x6b\\x9b\\x16\\x15\\xf9\\xbc\\x0a\\x47\\x1a\\xb0\\xd8\\x50\\xd7\\xa8\\x90\\x3c\\xf5\\xed\\xe5\\xd4\\xc7\\xbf\\xe1\\x1e\\x42\\xf2\\xe9\\x75\\xa4\\xd8\\xdf\\xfd\\x0b\\x04\\x8b\\xc0\\x7c\\x97\\xb2\\xac\\xde\\xa4\\x24\\x0d\\x97\\x91\\x1a\\xa1\\x3b\\x20\\x6f\\x23\\x8a\\x52\\xb3\\x68\\x15\\xb1\\xce\\xcc\\xf7\\x6a\\x90\\x37\\x44\\x5b\\xc0\\x97\\x8f\\x05\\xa7\\x7d\\x17\\x2c\\x38\\xed\\x4d\\xa0\\xe8\\x13\\xa5\\xbb\\x94\\x67\\xbd\\x7b\\xeb\\xa6\\x17\\xc8\\x85\\x55\\x04\\x9c\\xac\\x39\\x16\\xdc\\x98\\x47\\x4c\\x84\\x27\\x64\\x9f\\xc0\\xfe\\x87\\xb4\\x19\\x0b\\x61\\x5c\\x50\\xa1\\x3c\\x6d\\xb5\\x08\\x38\\x9c\\xd2\\x12\\xc3\\x79\\x3c\\x62\\x0f\\x2c\\xb5\\x11\\x75\\xc9\\x3c\\x84\\x4e\\xe4\\x89\\xe6\\xee\\xc7\\x7b\\x30\\xc4\\x87\\xbf\\x51\\xf5\\xfc\\x12\\xe0\\x28\\x43\\xa2\\x27\\x8a\\x06\\xea\\x73\\x84\\x98\\x1b\\xf5\\xf0\\x66\\x83\\x6e\\xea\\xbe\\xe3\\x3f\\x03\\xd6\\x1c\\xe2\\x6f\\x45\\x4a\\x48\\xa3\\x03\\xe8\\xc2\\x39\\x88\\x52\\xac\\x34\\x5a\\x78\\x17\\xc1\\xe6\\xf7\\x28\\xb4\\x0f\\x1d\\x60\\x51\\xf4\\x43\\x47\\x1b\\x16\\xbb\\x8e\\xa6\\x91\\x3b\\xae\\x66\\xae\\x07\\x4d\\x28\\x11\\x1f\\x32\\xb4\\x4d\\xb1\\x43\\xf3\\xd3\\x65\\x37\\xb6\\xfc\\x84\\xc2\\xc1\\x1c\\x86\\x9a\\xd8\\x70\\x30\\x33\\x5c\\x66\\xbe\\x83\\xf2\\x71\\x75\\x59\\xaf\\x06\\xb2\\xbe\\x95\\xa8\\x15\\xd9\\x26\\x02\\x94\\xf4\\xd8\\xc0\\x50\\xc6\\xca\\xf5\\xd8\\x79\\x7a\\x03\\x05\\x92\\xb0\\x6c\\x63\\x8e\\x8a\\x2a\\x99\\xca\\x22\\x60\\x86\\xaa\\x87\\xf3\\x36\\x41\\xc9\\x3c\\x65\\x2b\\x94\\xb7\\xc4\\xd8\\xce\\x81\\x7a\\xf7\\x36\\x46\\x0e\\x8b\\xec\\xf8\\xd4\\x7c\\x11\\xe5\\x67\\xd1\\xc6\\x98\\x8f\\x3d\\xa4\\xe3\\x96\\xa3\\x8f\\xe2\\xdb\\x87\\x7e\\x54\\xbe\\x77\\xbc\\x79\\x8e\\x81\\x72\\xf3\\x70\\x70\\xe9\\xe7\\x46\\x7b\\x0c\\xe8\\xc3\\x41\\xc8\\xd1\\xc0\\x99\\x49\\x10\\xbb\\xe6\\x29\\x18\\x2c\\x7c\\x12\\x5d\\xf2\\xef\\xa2\\x71\\x88\\x0d\\x00\\x17\\x21\\x36\\x36\\xf5\\x50\\x10\\x5e\\xf4\\xbd\\xa8\\xea\\x56\\x44\\x6d\\x46\\x3d\\x18\\x0f\\x08\\xe0\\x8c\\xce\\x47\\xde\\xa7\\xda\\xb8\\xd9\\x78\\x6c\\xa6\\x3f\\xde\\xc3\\x23\\x7e\\x7a\\x9e\\xa5\\x14\\x68\\xb4\\x46\\x31\\x0b\\x4f\\xe1\\x7d\\xe0\\xbd\\x4b\\x52\\xab\\xab\\x6b\\x69\\x3f\\x96\\x53\\x70\\x46\\x6c\\x03\\x62\\x87\\x1e\\x07\\xa6\\x7b\\xef\\x72\\x40\\xfa\\x30\\x9c\\x0e\\xf0\\x42\\x9a\\x1b\\x62\\xb2\\x13\\x65\\xf4\\x81\\x18\\xee\\x44\\x58\\x18\\x24\\xd7\\x20\\x9b\\xb6\\xc3\\xb9\\x42\\x32\\xb5\\x85\\xb7\\x5d\\x47\\xa0\\x00\\x60\\xcc\\xba\\x94\\x4c\\x6d\\x8e\\x2b\\x91\\x2e\\xae\\x7d\\x71\\xca\\xd7\\x23\\x5f\\x56\\x66\\x8e\\x57\\x66\\x0e\\xf5\\x00\\xc8\\xcc\\xc9\\xca\\xcc\\x89\\xad\\xcc\\xdc\\x98\\x95\\x99\\xb3\\x39\\xcf\\xcc\\x9c\\x9e\\x99\\xb9\\x7e\\x66\\xe6\\xfa\\xca\\xcc\\x21\\xa3\\x86\\xcc\\x5c\\x3f\\x33\\x73\\x72\\x66\\xe6\\xe4\\xcc\\xcc\\xc9\\x99\\x99\\xd3\\x33\\x33\\xd7\\xcf\\xcc\\x5c\\x3f\\x33\\x73\\xba\\x32\\x73\\x3d\\xce\\xcc\\x9c\\x9e\\x99\\x39\\x3e\\x33\\x73\\xb2\\x32\\x73\\xb9\\x0c\\x2b\\x33\\x37\\xda\\xca\\xcc\\xf5\\x33\\x33\\xc7\\x67\\x66\\x8e\\x2e\\x95\\x99\\xf3\\x58\\x99\\x39\\x04\\x49\\x23\\xaa\\xa2\\x1e\\x99\\x39\\x5c\\x07\\x99\\x39\\x7e\\x9e\\x99\\xfb\\x78\\x0f\\x8c\\xf8\\xfc\\x5a\\x9d\\x39\\x35\\x55\\xda\\x09\\xb4\\xb7\\xb0\\xb9\\x60\\xd6\\x2f\\xe1\\xa7\\x51\\x35\\x69\\xdd\\x7a\\x91\\x7f\\x97\\xf0\\x13\\x9f\\xc2\\x4f\\x25\\x8b\\x89\\x99\\x92\\xdf\\x45\\xec\\x29\\x4f\\x26\\x22\\xcb\\xab\\x42\\x29\\x1f\\xff\\xa9\\x14\\x41\\x70\\x4b\\x47\\x69\\x42\\x02\\xc5\\xc1\\x83\\xc0\\x04\\xc2\\xf2\\x52\\x51\\xb0\\x8a\\x49\\x75\\xc9\\x3f\\x73\\x61\\x09\\x51\\x2b\\x92\\x67\\x11\\xd1\\x45\\xa5\\xdf\\x54\\xe9\\xdd\\x5b\\xc1\\xe0\\xf6\\x3d\\x3f\\x11\\xee\\x49\\x3f\\x73\\xa1\\x79\\xd3\\x94\\xa1\\xd2\\x1f\\xb8\\x61\\x5d\\xa2\\xe5\\x2b\\x86\\x26\\x15\\xad\\x03\\x15\\x95\\x1b\\x08\\x15\\xf3\\xbc\\x34\\x20\\xeb\\xe2\\x7b\\xb6\\x8d\\x05\\xf1\\x59\\x8b\\x92\\x49\\x8d\\x9e\\x1e\\x24\\xf4\\xc2\\x31\\x12\\xf0\\x4c\\x47\\x85\\x1f\\xd3\\x78\\xe5\\xdf\\xb3\\xef\\xfc\\x9e\\x98\\xe1\\x3c\\xdc\\x63\\x0d\\xc2\\xbb\\xb7\\x55\\x3d\\x22\\x74\\x55\\xb6\\x0d\\xd4\\xee\\x40\\x45\\x8d\\xbe\\x9d\\x47\\x1e\\x3f\\xd2\\x7b\\x70\\xc2\\xe7\\xd7\\x6a\\xc9\\xbf\\x3d\\xd2\\xdf\\xe3\\x91\\x42\\xf6\\x07\\xf0\\x25\\xe7\\x0d\\x3b\\x05\\xc0\\x97\\x48\\xb6\\xf3\\xc8\\xe3\\x47\\x7a\\x9f\\x3f\\xff\\xfc\\x45\\xf5\\xe2\\xdf\\x9e\\xeb\\xef\\xf1\\x5c\\x81\\xc4\\xff\\x0d\\xce\\xc8\\x37\\x68\\x0c\\x15\\xce\\x28\\x4e\\x9c\\x51\\x9c\\x38\\x23\\x3f\\x71\\x46\\xbe\\x4d\\x9d\\x97\\xa7\\x38\\xa3\\x8f\\xf7\\xa9\\xe3\\xcf\\xaf\\xd5\\x84\\x7f\\x7b\\xe4\\xbf\\xcb\\x23\\x47\\xc6\\x32\\xdd\\x0e\\xec\\x4c\\x01\\x08\\x8a\\xe5\\x76\\x80\\x3a\\x1e\\x80\\x20\\x5f\\x6e\\x07\\xd8\\x1a\\xa7\\xed\\x4e\\xfd\\x52\\x6e\\x87\\xdb\\x29\\x46\\x45\\xcb\\xed\\x00\\x74\\x1a\\x45\\xd9\\x7d\\xb9\\x1d\\x90\\xfb\\x4a\\xb7\\xa3\\xb0\\x42\\xf3\\x18\\xb8\\xb2\\xae\\x72\\x6f\\xb8\\x1d\\xe0\\x5d\\x4c\\xb7\\x63\\x69\\x83\\xed\\xd5\\x48\\xb7\\x03\\x5d\\x00\\x10\\x34\\x97\\xdb\\x91\\x5f\\x86\\xdb\\xe1\\xb2\\xdc\\x0e\\xf0\\xe9\\x01\\x10\\x14\\xcb\\xed\\xc8\\x01\\x86\\xdb\\x01\\xb2\\xaa\\x74\\x3b\\xe0\\x4e\\xa7\\xdb\\xe1\\x7c\\x02\\x82\\xe6\\x72\\x3b\\x20\\x92\\xb7\\xb4\\xa8\\x16\\x20\\x28\\x96\\xdb\\xb1\\xc6\\xe7\\xdd\\xff\\xbb\\x3c\\x98\\xd8\\xf7\\x69\\xdb\\xcf\\x5f\\x50\\xf7\\xfd\\x6d\\x6e\\xff\\x1e\\x73\\xbb\\x12\\xfe\\x40\\xee\\xf8\\x42\\xee\\x68\\x5f\\xc8\\x1d\\x94\\x3a\\x12\\xed\\x60\\x85\\x05\\x72\\x47\\xf4\\x44\\xee\\xa4\\x29\\x03\\x72\\x67\\x2e\\xe4\\x8e\\x9c\\x93\\xbc\\x84\\x61\\xac\\xa4\\xec\\x80\\xdc\\xc1\\x6c\\x07\\x72\\xc7\\x4f\\xe4\\x0e\\xb6\\x66\\x93\\x91\\xcc\\xa5\\x12\\xaf\\x81\\xde\\x5a\\x41\\x77\\xfc\\x84\\xee\\xe4\\x46\\x74\\x41\\x77\\xe6\\x09\\xdd\\x61\\x39\\xa1\\x3b\\x68\\x01\\xba\\x33\\xfb\\x0b\\x74\\xc7\\x5f\\xa0\\x3b\\x30\\xc6\\x63\\x5d\\x19\\xd8\\x9d\\xd5\\xeb\\x63\\x03\\x7c\\x9f\\x85\\xfd\\xfe\\xd3\\x9f\\x3f\\x3d\\x35\\xc0\\xcc\\x4d\\x43\\xae\\x44\\x74\\xf3\\x39\\x4a\\xc0\\x42\\x43\\xde\\xbd\\x05\\x8d\\x70\\x9f\\x63\\x47\\x03\\x25\\x28\\x90\\xed\\x1b\\xa3\\x86\\x81\\x4e\\xfa\\x07\\x86\\x61\\x30\\x48\\x97\\x40\\xa0\\x33\\x1b\\xcd\\xaa\\x50\\x9a\\x0e\\xa0\\x16\\x90\\xd7\\x1d\\xeb\\x74\\x87\\x14\\xee\\x1c\\x7b\\x35\\xc6\\x42\\x36\\x74\\xd4\\x80\\x58\\x9b\\xb6\\x52\\xa2\\x67\\x65\\x46\\xef\\xe3\\x38\\xef\\x26\\xef\\xab\\x5f\\xd8\\xe7\\x3e\\x50\\xd5\\x2c\\x4d\\x49\\x21\\x25\\x62\\x34\\xda\\xe8\\xb6\\x9b\\x47\\x7e\\x22\\x9d\\x2c\\xde\\x91\\x35\\xcf\\xef\\xe3\\x13\\x75\\xce\\x82\\xbc\\xbe\\x15\\x3b\\xe7\\x5e\\x84\\xc5\\x03\\xd7\\xa1\\x98\\xb0\\x68\\xec\\x8f\\x13\\x90\\x1f\\xef\\x13\\x90\\x9f\\x5f\\x2b\\x48\\xff\\xbb\\xed\\x00\\x9f\\xd2\\xb3\\x48\\x41\\x9b\\x6e\\x50\\xde\\x63\\xe2\\x2b\\x75\\xf6\\x6d\\x96\\x1c\\x37\\xed\\xd4\\xc9\\x1b\\x2a\\xec\\xba\\x59\\x0b\\xea\\xff\\xa0\\x7d\\xc8\\x51\\x86\\x7d\\x10\\xbd\\xc4\\x26\\x48\\xcf\\x4a\\x5c\\x99\\xfb\\x26\\x4c\\xcd\\x7c\\x07\\x9f\\xc4\\x80\\xf8\\x44\\x63\\x43\\x3f\\xed\\x81\\xc9\\xe0\\x06\\x51\\x87\\xd0\\x63\\xd0\\x6c\\x6c\\x81\\xe2\\xd9\\x08\\xc5\\x36\\x36\\xf0\\x3a\\xe1\\x36\\x3b\\xff\\x63\\xcb\\x1d\\xf6\\xe4\\xc5\\x96\\xf4\\x16\\x26\\xcd\\x82\\x60\\xdd\\x7d\\xd2\\x06\\xaa\\xb9\\xb0\\x0a\\xa7\\x79\\x6f\\x5f\\x60\\xa7\\x2e\\x77\\x76\\xea\\xf1\\xa3\\xbf\\x4f\\x56\\xfe\\xf2\\x5a\\xa5\\x0f\\x36\\xba\\x10\\xce\\xb7\\x40\\x85\\x3d\\x0f\\x6c\\xd9\\x2b\\x58\\x65\\x8b\\x42\\xd9\\x9b\\x1e\\x6c\\xd1\\xc2\\x0f\\x9a\\xd4\\x58\\xe8\\xa0\\x52\\xc1\\x5f\\x12\\x7b\\x9d\\x6f\\x63\\xf4\\x3d\\xa7\\x8a\\x18\\x43\\x3e\\x18\\xfa\\xaf\\x63\\x36\\x96\\x5e\\xa8\\xa3\\x88\\x2a\\x61\\xf3\\x1c\\x68\\x80\\xe7\\x5a\\xae\\x2f\\x26\\x2e\\xbe\\x03\\x1a\\xa7\\xe6\\x9f\\x4f\\x68\\xfe\\xc9\\xb6\\xee\\x2f\\x77\\x6f\\x00\\x5d\\xf5\\xab\\x72\\x6c\\x9c\\xa6\\x71\\x84\\x5c\\x75\\xf0\\x76\\x1e\\x79\\x3c\\x26\\xf7\\x19\\xbf\\x5f\\x5e\\xab\\x69\\xf9\\x5a\\xc6\\x04\\x20\\xb3\\xe8\\x67\\x6d\\xe7\\x85\\xb8\\xfb\\xaf\\xb5\\x9d\\x23\\x9e\\x8c\\xc9\\x7d\\x46\\xec\\x97\\x2f\\xaa\\xde\\xf8\\x4a\\x06\\x66\\x1a\\x5d\\x88\\x83\\x6e\\xc4\\x3a\\xae\\x6e\\x73\\x03\\x1d\\x90\\x4c\\xda\\x00\\xe6\\xca\\xbf\\x72\\xf4\\x1b\\x71\\xc8\\x06\\x0e\\x7a\\x65\\xb9\\x5a\\xcc\\x6d\\x22\\xd3\\x18\\x4f\\x16\\xd8\\x7d\\xa2\\xe6\\x97\\x2f\\xc0\\x5d\\x7f\\x25\\xc3\\xa6\\x94\\x1e\\x87\\xf3\\xae\\x54\\x74\\x3b\\xa0\\xb9\\xa1\\xa1\\x76\\x18\\x8a\\x8b\\x67\\xdf\\x21\\x4a\\x33\\x66\\x5a\\x29\\xaf\\x43\\x20\\x67\\xcc\\xb3\\xaa\\xc1\\xdc\\x1c\\x6e\\x41\\xcc\\x3a\\x8b\\x55\\x77\\x85\\x5b\\xad\\x5a\\xf2\\x4b\\x9c\\x37\\x49\\x15\\x4b\\x4e\\x3f\\x05\\x16\\x9f\\x76\\x34\\x46\\xa1\\x54\\x17\\x58\\x91\\xfa\\xac\\x40\\xdc\\x5e\\xb1\\x77\\xb0\\xdb\\xe4\\xe0\\x40\\x2f\\x1a\\xa4\\x20\\x38\\x75\\xb5\\x18\\xa2\\xbd\\xe0\\x52\\xf7\\x75\\x2e\\xab\\xec\\x78\\x81\\x67\\x6b\\x5d\\x39\\x8f\\x9e\\xbd\\x3e\\xf6\\xa7\\xef\\x53\\x5e\\x7f\\x79\\x45\\x61\\x35\\x46\\x1b\\x4b\\x6f\\x4b\\xba\\x6c\\x93\\x57\\x76\\x86\\x08\\x8c\\x02\\xd6\\xde\\x90\\x8d\\x1d\\xc2\\x47\\xdc\\xb5\\x95\\x0a\\xa4\\xf2\\x51\\x12\\x45\\x83\\x0e\\xa0\\x8c\\x47\\x9f\\x07\\x47\\xb4\\x37\\x43\\x7c\\xcf\\x11\\xcb\\x46\\x03\\xd5\\x0b\\x64\\xc9\\x2c\\x1b\\x34\\x21\\xd0\\xff\\x86\\x45\\x76\\x46\\xcd\\xbf\\xa4\\xdb\\xac\\x68\\x1c\\x8c\\x99\\x25\\x8a\\xfa\\xff\\x37\\x2c\\x76\\x70\\xe0\\x3b\\x0e\\x09\\xde\\x6c\\x5c\\x64\\xe0\\xbd\\x5a\\x3b\\x9f\\x37\\xe4\\x1d\\x3a\\x24\\x6f\\x88\\x4a\\xba\\xfd\\x4d\\xae\\x0b\\x4a\\xe7\\x66\\xd3\\xf5\\x33\\x84\\x65\\x5b\\xbf\\xf1\\xdd\\x5b\\x87\\xe4\\x56\\x5a\\x9e\\xa9\\xcb\\x00\\xa7\\xe5\\x11\\xdb\\xce\\x23\\x8f\\x17\\xd0\\x5f\\xeb\\xa2\\x3d\\xab\\x2a\\x3f\\x81\\x97\\x3b\\x1a\\x0b\\xe7\\xac\\xe5\\x2a\\xcc\\xe5\\x2a\\x18\\x43\\xc1\\x3e\\x16\\x09\\x02\\x78\\xff\\x7b\\x43\\x4a\\xae\\x60\\x9c\\xd3\\x97\\x22\\xac\\xda\\x8d\\x54\\xe9\\x2a\\x53\\x6f\\x33\\x78\\x07\\xd5\\x4d\\xce\\x8e\\xf2\\xe2\\x9c\\x8a\\x34\\x17\\x2e\\x4e\\x9c\\x5b\\x1d\\x83\\x8b\\xc3\\xa0\\x05\\x98\\xc8\\x4c\\x41\\x15\\xd4\\x8e\\xba\\xb7\\x97\\xd7\\xbe\\x49\\xbd\\xf6\\x4d\\x2e\\xc6\\xa3\\x54\\x53\\x73\\x0b\\xd1\\x07\\x84\\x60\\x9d\\x4b\\x9b\\x29\\x77\\xa8\\x08\\xc8\\x23\\x0d\\x6e\\x6d\\x78\\x2e\\x79\\xae\\x80\\x7c\\xf4\\x1b\\xcf\\xb9\\x0f\\xd6\\xc6\\x83\\x0b\\x4f\\xde\\xbd\\x1c\\x2f\\xa7\\xc5\\x1a\\x4c\\xcd\\xd3\\x3b\\xea\\xc5\\xfe\\x8b\\x1c\\xc6\\x98\\x4d\\x26\\x03\\x7d\\xfa\\xaa\\x8b\\x70\\x9f\\x69\\xfc\\xcb\\xab\\x16\\xec\\xdf\\x6a\\x6e\\x33\\x52\\x10\\xce\\x3b\\x1a\\x69\\x05\\x85\\x8a\\x91\\xe3\\x00\\x1f\\x74\\x5a\\x41\\x44\\xa1\\xd2\\x0a\\x02\\xd3\\x9c\\x87\\x54\\xb4\\xce\\xaa\\x46\\xc1\\x42\\xca\\x0a\\xe2\\xac\\xb4\\x82\\x60\\x88\\xce\\xdf\\x0d\\xaa\\xa5\\xb4\\x82\\x67\\x5f\\xef\\xde\\xc2\\x66\\xa6\\x29\\x43\\x23\\xad\\x20\\xcc\\x69\\x1a\\xc1\\xaa\\xed\\x8f\\xd8\\xc1\\xa1\\x9d\\x26\\x10\\x5c\\xb7\\x69\\x01\\x27\\x84\\x41\\xd3\\x76\\x46\\x9a\\x6e\\xa6\\x36\\x51\\x1f\\x1e\\x5e\\x67\\xa5\\xf5\\x03\\x43\\x74\\x1a\\x3f\\x5c\\x30\\x0f\\x9d\\x7d\\x3d\\x9c\\x22\\xdc\\xe9\\x3e\\xe2\\xfd\\xe1\\xa7\\xef\\x9f\\x6f\\x21\\x2c\\x72\\xe3\\x7c\\x35\\xbf\\x05\\x41\\x3c\\x24\\x6e\\xf6\\x84\\x5c\\x82\\x3b\\xdd\\x47\\x60\\x3f\\xfc\\xe1\\x9f\\xde\\xc5\\xfd\\x46\\xe8\\x7f\\x7e\\xf9\\xfc\\xa7\\x0f\\x3f\\x7e\\xf8\\xf8\\x58\\xd6\\xb4\\xde\\x30\\x21\\x90\\x0f\\x21\\x16\\xae\\x47\\xcc\\x61\\x47\\x49\\xad\\x4e\\xae\\x17\\xec\\xc8\\x0d\\x5a\\x3a\\x13\\xea\\xb2\\x79\\x60\\x3e\\x68\\x55\\xf7\\x0f\\xf6\\x06\\x3b\\x28\\x5a\\x6a\\x94\\xa5\\xb0\\xdb\\xb9\\x5f\\x47\\xc4\\x2d\\x2f\\xff\\xec\\xa6\\xef\\x5d\\x78\\xdc\\xf4\\x73\\x31\\xd6\\x25\\xa1\\x1a\\x45\\xb9\\x21\\x23\\x1a\\x14\\x3f\\x78\\x96\\x6a\\x31\\x61\\x37\\xa9\\xd8\\x9f\\xd2\\x01\\x70\\x4c\\xef\\xb1\\x01\\x54\\xdf\\x73\\x27\\xd2\\xa5\\x94\\x2f\\xa1\\x4f\\xc7\\x3c\\x57\\xf4\\x6c\\xfa\\x8d\\xd4\\xfa\\xd5\\xad\\xdf\\xf2\\xf2\\xcf\\xee\\xfa\\xde\\xc9\\xc6\\x5d\\xff\\xfc\\xe9\\xa7\\x1f\\x7e\\xfc\\xee\\xfd\\xcf\\x8f\\x5f\\x9b\\xae\\xda\\xbc\\xef\\xf9\\xc1\\xc5\\x67\\xf1\\x46\\x18\\xfa\\x75\\xb9\\xc1\\x3b\\x72\\xb3\\x8e\\x65\\xae\\x2e\\xed\\x8d\\xd0\\xdc\\x2a\\x81\\x3e\\x78\\x1f\\x13\\xd2\\x20\\x52\\x52\\xcb\\x73\\x82\\x2c\\xc6\\xe2\\xc6\\xc3\\xaf\\xae\\xb6\\xd5\\x95\\x9f\\xdd\\xf2\\xbd\\x2b\\x87\\x5b\\xfe\\xfe\\xbb\\x1f\\x9f\\x4e\\x10\\xe1\\x51\\x13\\x04\\x8d\\x9c\\x20\\xd0\\xf1\\xce\\x09\\x22\\xf0\\x29\\x26\\x1f\\xe0\\xc2\\xcf\\x09\\x02\\xb6\\x9a\\x9c\\x20\\x60\\xaa\\xc8\\x09\\xa2\\x08\\x03\\x72\\xee\\x10\\xbd\\x26\\x08\\xa8\\x2e\\x5e\\x26\\x88\\x40\\x0e\\x38\\xe4\\x1d\\x10\\x68\\xe8\\x08\\x8d\\xec\\x08\\xe0\\xb2\\xec\\xc8\\xab\\x94\\x84\\x0f\\x47\\xf5\\xe4\\xec\\xab\\x70\\xd0\\x65\\x43\\xe8\\x3c\\x3b\\x9a\\x64\\x17\\x74\\x14\\x20\\x93\\x50\\x3e\\x4a\\x80\\xe6\\xec\\xc8\\x74\\xbe\\x3a\\x13\\xef\\x5d\\xa0\\x73\\x80\\x9e\\x4f\\x46\\x30\\x8c\\xe7\\x64\\xac\\xc6\\x08\\xd0\\xbb\\x61\\x32\\x02\\xdf\\x95\\x93\\x11\\x6a\\xc5\\x1d\\x41\\xbb\\x5e\\x93\\x91\\xc1\\xcb\\x17\\x56\\x7c\\x85\\x39\\x19\\xa1\\x09\\x9d\\x93\\x51\\x10\\x13\\x38\\x27\\xa3\\x4e\\xa9\\xc9\\xf8\\x16\\x84\\x84\\xd9\\x51\\x35\\x46\\x34\\xc8\\xb4\\x65\\x47\\x81\\x40\\x50\\x0e\\x0c\\x0a\\x33\\x26\\x1d\\x50\\x8f\\xce\\x8e\\x6c\\x50\\x75\\x64\\x31\\x2e\\xe8\\xc8\\x7b\\x01\\x48\\x11\\xe5\\xfb\\xb5\\xa3\\x39\\xe8\\xd5\\x59\\x7f\\xef\\xcc\\x9c\\x23\\xf4\\x74\\xce\\x1b\\x71\\xb3\\x80\\x28\\x23\\xcd\\x66\\x10\\xad\\x1c\\x47\\x89\\x80\\x8f\\x0e\\xc6\\xa5\\x37\\x2c\\x45\\xc1\\xf4\\x46\\x98\\x36\\xc1\\x5f\\xc6\\xc0\\x1b\\xe4\\x4d\\xfa\\xf4\\x92\\xcb\\x81\\x16\\x43\\xbb\\xd9\\x8d\\x79\\x5e\\x0d\\xbc\\x3f\\x79\\xe9\\x77\\x6f\\x27\\x5b\\x76\\x81\\xc8\\xcb\\x6c\\x93\\x04\\x5d\\x84\\x5b\\x75\\x11\\x34\\xab\\x0b\\x1f\\xa3\\xba\\x80\\xbe\\x4e\\x76\\x61\\x56\\x5d\\x5c\\x2c\\xb4\\xba\\x48\\x0b\\xb2\\xba\\x98\\x6c\\x37\\x7b\\x36\\x20\\x7c\\x9f\\xfc\\xfe\\xee\\x97\\x1f\\x7f\\xfc\\xf0\\xc4\\xdc\\x76\\x6d\\x9e\\x2f\\xd4\\xae\\x2d\\xa4\\xd0\\x27\\x28\\x7e\\xb3\\x0a\\x3d\\xe5\\xe2\\x98\\xb9\\x93\\xe0\\x0a\\xbf\\xed\\x56\\xc6\\x4b\\x5b\\x7a\\x9d\\x79\\xc4\\xc1\\x5d\\xa3\\x07\\x04\\x13\\xdc\\x91\\x24\\xf0\\xd9\\x6f\\x2e\\x54\\x10\\x94\\x18\\x2d\\x72\\xf1\\x0c\\x3b\\xd2\\x4c\\xab\\xcf\\x23\\xcf\\x55\\xd1\\xc3\\xd8\\x9a\\xd2\\xdc\\xd5\\xb5\\xc1\\x25\\x28\\x39\\xa5\\x63\\x98\\x36\\xf5\\x38\\xf2\\x35\\x6c\\x43\\x21\\xb5\\xe2\\x42\\x37\\x9f\\xcf\\xec\\x89\\xdc\\x1b\\xee\\x1f\\x7e\\xf9\\xf4\\x23\\x2c\\xe0\\x53\\x83\\xa2\\x13\\x2a\\xde\\x60\\xfe\\x27\\x99\\x40\\xb4\\xca\\xe4\\xa6\\x3c\\x6f\\x3a\\x62\\xb3\\x80\\x66\\x36\\x90\\x7a\\xeb\\xbb\\xcf\\x6e\\xe2\\xde\\x0e\\xbf\\xdc\\xc4\\x2b\\x8b\\x56\\x21\\xb8\\xbd\\x41\\x25\\x74\\x09\\x73\\x6b\\xd5\\xa4\\x5c\\x25\\x02\\xba\\x3b\\x79\\x97\\x92\\xee\\x87\\xc4\\x55\\x5f\\x98\\xf6\\xff\\xff\\xc7\\xcf\\x3f\\xfd\\x29\\x3f\\xbf\\xff\\xf0\\xf1\\xe7\\xfc\\xfc\\xf9\\xcf\\x3f\\xfc\\xc7\\xe5\\x7f\\x03\\x00\\x00\\xff\\xff\\x64\\xf3\\xf9\\x1b\\x47\\x08\\x01\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_svg() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_svg,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.svg\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_ttf = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x9c\\x7c\\x07\\x7c\\x1b\\x45\\x16\\xf7\\x7b\\x33\\xb3\\x92\\x5c\\x63\\x59\\x96\\x65\\x5b\\x8e\\xac\\x62\\x49\\xb6\\xe5\\x2e\\xcb\\xb2\\x5c\\xd7\\xbd\\xc8\\x71\\x49\\x75\\x49\\x1c\\x97\\xc4\\x49\\x88\\xe3\\x38\\xbd\\x91\\xde\\x20\\x81\\x84\\x14\\x38\\x5a\\x48\\x42\\x80\\xd0\\x71\\x80\\x84\\x72\\x74\\x42\\x28\\xc7\\x1d\\x1c\\xdc\\xd1\\x39\\x7a\\x09\\x09\\x38\\x07\\xdc\\x71\\x10\\x6b\\xfd\\xfd\\x76\\x57\\x72\\x9c\\x00\\xf7\\xdd\\xf7\\x19\\x14\\x49\\xbb\\xb3\\xab\\x99\\x37\\xaf\\xfc\\x5f\\x5b\\x40\\x00\\x88\\x40\\x00\\x06\\x50\\x5d\\x51\\x59\\x15\\x92\\x15\\x92\\x0d\\x80\\xa1\\x00\\xc0\\x57\\x4f\\x9a\\x52\\xf6\\xa5\\xfa\\x23\\x0d\\x00\\xd6\\x03\\x90\\x9a\\xc6\\x49\\x19\\xd9\\x7f\\xf4\\x7c\\x33\\x0d\\x80\\xee\\x07\\x80\\xce\\x9e\\x05\\x5d\\x03\\x93\\xbe\\xba\\x35\\x03\\x80\\xfe\\x08\\xa0\\xba\\xac\\x67\\xf9\\x52\\x63\\x4f\\xbc\\x76\\x0d\\xe0\\x43\\x89\\x00\\x70\\x73\\xef\\xc0\\x9c\\x05\\x9f\\x44\\xbd\\x7f\\x0e\\xf0\\xa1\\x67\\x00\\x42\\xfe\\x30\\xa7\\x6b\\xc9\\x80\\xf8\\x6b\\x80\\x0f\\xc5\\x03\\x80\\x6a\\x4e\\xdf\\xaa\\xde\\xbd\\xef\\x1d\\x7d\\x13\\x20\\xb4\\x13\\xb0\\x77\\x70\\xee\\xec\\xae\\x59\\x3f\\xb7\\x44\\x44\\x00\\x2e\\x89\\x00\\x80\\xdc\\xb9\\x73\\x67\\x77\\x85\\xa6\\x28\\xcd\\x80\\x4b\\x6a\\x00\\x20\\x71\\xee\\x82\\xa5\\x2b\\x8d\\xce\\xef\\x37\\x00\\x2e\\xe9\\x03\\x88\\x30\\xf7\\x2d\\xec\\xe9\\x7a\\xee\\x70\\xdc\\x7f\\x00\\x37\\x5f\\x03\\xa0\\x4a\\x5c\\xd0\\xb5\\x72\\x80\\xfb\\x5b\\x58\\x2c\\xe0\\xce\\x87\\x01\\xc0\\xd8\\xdf\\xb5\\x60\\xf6\\xa4\\xbc\\x35\\xa7\\x01\\x77\\xfe\\x0d\\x80\\x2e\\x1d\\x58\\xb8\\x64\\xe9\\x17\\x65\\x47\\x4f\\x03\\xee\\xae\\x01\\xb0\\xfc\\x75\\x60\\xf1\\xec\\x01\\xf7\\xb2\\x82\\xa7\\x01\\x9f\\x6e\\x01\\x80\\xfb\\x25\\x5a\\x88\\x2b\\x17\\xff\\x08\\xa8\\xe0\\x55\\x78\\x15\\x10\\x4d\\x68\\x07\\xc4\\x16\\xec\\x01\\xc4\\x95\\xb8\\x12\\x10\\xd7\\xe2\\x3a\\x40\\xdc\\x80\\x1b\\x00\\x71\\x2f\\xee\\x07\\xc4\\x57\\xf1\\x55\\x40\\xe9\\xfa\\x60\\x30\\x40\\x2a\\x60\\x45\\x55\\xfd\\x64\\x50\\x89\\x54\\x05\\x18\\x19\\x91\\xce\\xe0\\x92\\x05\\x3d\\x03\\xa0\\x12\\x3f\\x49\\x2f\\xe6\\x7f\\x57\\x01\\xc1\\xa7\\xe0\\x03\\x3c\\x80\\xb7\\xe0\\x41\\x3c\\x84\\x87\\xf1\\x56\\x3c\\x82\\xb7\\xe1\\xed\\x78\\x07\\x1e\\xc5\\x3b\\xf1\\x2e\\xbc\\x1b\\xef\\xc1\\xb7\\xf1\\x5e\\xbc\\x0f\\xef\\xc7\\x07\\x70\\x10\\x8f\\xe1\\x83\\xf8\\x10\\x3e\\x8c\\xc7\\xff\\xbf\\xae\\xf9\\x84\\xdc\\x48\\x6e\\x20\\x37\\x92\\x9b\\xc8\\x4d\\xe4\\x66\\x72\\x80\\xdc\\x42\\x0e\\x92\\x43\\xe4\\x30\\xb9\\x95\\x1c\\x21\\xb7\\x91\\xdb\\xc9\\x1d\\xe4\\x28\\xb9\\x93\\xdc\\x45\\xee\\x26\\xf7\\x90\\x7b\\xc9\\x7d\\xe4\\x7e\\xf2\\x00\\x19\\x24\\xc7\\xc8\\x83\\xe4\\x21\\xf2\\x30\\x39\\x4e\\x4e\\xfc\\x7f\\x5e\\x75\\x86\\x3c\\x42\\x1e\\x21\\x8f\\x92\\x47\\xc9\\x63\\xe4\\x31\\xf2\\x38\\x79\\x9c\\xfc\\x91\\xfc\\x91\\x3c\\x49\\x9e\\x24\\x4f\\x91\\xa7\\xc8\\xd3\\xe4\\x69\\xf2\\x0c\\x79\\x86\\x3c\\x4b\\x9e\\x25\\xcf\\x91\\xe7\\xc8\\xf3\\xe4\\x79\\x72\\x92\\x9c\\x24\\x2f\\x90\\x17\\xc8\\x8b\\xe4\\x45\\xf2\\x12\\x79\\x89\\xbc\\x4c\\x5e\\x26\\xaf\\x90\\x57\\xc8\\x9f\\xc8\\x9f\\xc8\\xab\\xe4\\x55\\xf2\\x67\\xf2\\x17\\xf2\\x17\\xf2\\x1a\\x79\\x8d\\xbc\\x4e\\x5e\\x27\\x7f\\x25\\x7f\\x25\\x6f\\x90\\x37\\xc8\\x9b\\xe4\\x4d\\xf2\\x37\\xf2\\x37\\xf2\\x77\\xf2\\x77\\xf2\\x16\\x79\\x8b\\xbc\\x4d\\xde\\x26\\xef\\x90\\x77\\xc8\\xbb\\xe4\\x5d\\xf2\\x1e\\x79\\x8f\\xbc\\x4f\\xde\\x27\\x1f\\x90\\x0f\\xc8\\x87\\xe4\\x43\\xf2\\x0f\\xf2\\x0f\\xf2\\x11\\xf9\\x88\\x7c\\x4c\\x3e\\x26\\xab\\xc9\\x6a\\xf2\\x29\\xf9\\x94\\x7c\\x46\\x3e\\x23\\x9f\\x93\\xcf\\xc9\\x17\\xe4\\x0b\\xf2\\x25\\xf9\\x92\\x7c\\x45\\xbe\\x22\\x5f\\x93\\xaf\\xc9\\x69\\x72\\x9a\\x7c\\x43\\xbe\\x21\\x67\\xc8\\x59\\x72\\x96\\x7c\\x4b\\xbe\\x25\\xdf\\x91\\xef\\xc8\\x0d\\x40\\x20\\x0c\\x2c\\x50\\x08\\x00\\xe5\\x30\\x1d\\xe2\\x60\\x33\\x6c\\x86\\x1c\\xd8\\x0a\\x5b\\xc1\\x85\\x5f\\xe0\\x97\\x90\\x8b\\x5f\\x93\\x14\\xc8\\x23\\x69\\xa4\\x18\\xd6\\x90\\x52\\x32\\x13\\xae\\x26\\x5d\\x64\\x31\\xdc\\x4b\\x96\\x91\\xe5\\xf0\\x14\\x59\\x45\\x56\\xc1\\x33\\x64\\x0d\\xd9\\x0f\\xcf\\xd2\\xcf\\xe8\\x67\\xf0\\x3e\\x50\\xf6\\x1a\\xfe\\x08\\x1c\\x00\\x77\\x23\\xe7\\x04\\xc0\\x04\\xf9\\x9d\\xfe\\x15\\x7a\\x09\\x8c\\xfd\\xfb\\x18\\xc8\\x48\\x04\\x18\\xdb\\x45\\x6e\\x17\\xbf\\x0f\\xac\\x5a\\xbc\\x44\\xe2\\x38\\x9f\\xaa\\xdb\\xf7\\x77\\x00\\x55\\x37\\x71\\x18\\x01\\x0f\\x36\\x8a\\x02\\x9e\\xcf\\x0d\\x4a\\xe3\\x44\\xae\\xa3\\xfe\\x57\\xbc\\xf4\\x0d\\x14\\x9d\\x40\\xa5\\x4f\\xf1\\xc0\\x14\\x15\\xd2\\x8d\\x37\\x80\\x02\\x3a\\x25\\x39\\x08\\x82\\x30\\x30\\xc1\\x3a\\x38\\x04\\xf7\\xc2\\x7d\\xf0\\x34\\x9c\\x82\\xd7\\xe0\\x4b\\x18\\x02\\x01\\xc7\\xa1\\x1a\\xad\\x68\\xc7\\x4c\\x9c\\x84\\x33\\x71\\x0e\\xae\\xc3\\xf5\\xb8\\x17\\x0f\\xe3\\x20\\x9e\\xc3\\x11\\xa2\\x27\\x6e\\xd2\\x4a\\x9e\\x20\\x2f\\x92\\x97\\xc9\\x87\\xe4\\x07\\x8a\\x94\\xd2\\x20\\x3a\\x8e\\x5a\\xe8\\x0e\\x7a\\x15\\xdd\\x4b\\x0f\\xd3\\x41\\xfa\\x18\\x7d\\x99\\xfe\\x85\\xbe\\x41\\xdf\\x62\\x56\\x96\\xc1\\x2a\\x59\\x23\\xeb\\x66\\x0b\\xd9\\x0a\\xb6\\x8d\\xfd\\x85\\xbd\\xcd\\x3e\\x61\\xff\\xe2\\x90\\x8b\\xe0\\x34\\x06\\x34\\x94\\x18\\xb6\\x1a\\xfe\\x69\\xf8\\xc1\\xf0\\x73\\xc2\\x04\\x63\\x88\\x51\\x6b\\x34\\x18\\xcd\\x46\\x9b\\x31\\xd3\\xe8\\x34\\xe6\\x1b\\x0b\\x8d\\x15\\xc6\\xa5\\xc6\\xf5\\xc6\\xdb\\x8c\\x47\\x8d\\xf7\\x9a\\x38\\x93\\xc6\\x14\\x6d\\x32\\x9b\\x6c\\xa6\\x74\\x53\\x87\\x99\\x98\\x15\\xe6\\x71\\xe6\\x48\\x73\\x9c\\xd9\\x60\\x76\\x98\\x6b\\xcc\\x9d\\xe6\\xd9\\xd6\\x57\\xfe\\xfd\\xbc\\x30\\x32\\xe2\\x1b\\x19\\xf1\\x4b\\xba\\xb8\\x42\\x23\\x98\\xe1\\x10\\x1c\\x86\\xfb\\xe0\\x7e\\x78\\x06\\x5e\\x84\\xd7\\xe1\\x2b\\x38\\x07\\x23\\x18\\x81\\x91\\x68\\xc3\\x24\\xcc\\xc2\\xc9\\xd8\\x89\\x73\\xa5\\x15\\x1e\\xc2\\x07\\xf0\\x1c\\xfe\\x42\\x62\\xfc\\x2b\\x3c\\x45\\x5e\\x26\\xef\\x90\\x1f\\x28\\x8c\\xae\\x70\\x0b\\xbd\\x8a\\xee\\xa2\\xfb\\xe8\\x11\\x7a\\x8c\\x3e\\x4e\\x5f\\xa1\\x7f\\xa5\\x6f\\x31\\x60\\x36\\x96\\xc9\\xaa\\x58\\x13\\xeb\\x61\\x03\\x6c\\x25\\xbb\\x82\\xbd\\xc6\\xde\\x61\\x9f\\xb2\\x7f\\x73\\x84\\x53\\x1b\\xc0\\x50\\x6c\\xd8\\x60\\x38\\x64\\xf8\\xde\\xf0\\x63\\xc2\\x04\\x23\\x18\\x35\\x46\\x9d\\xd1\\x68\\xb4\\x1a\\x33\\x8d\\xd9\\x46\\xcf\\xe8\\x0a\\x8f\\x18\\x8f\\x1a\\xef\\xb9\\x68\\x85\\xed\\xfe\\x15\\xaa\\xc7\\xac\\x70\\x96\\x7f\\x85\\xc3\\xa2\\xe6\\x61\\xa1\\x4c\\x31\\xf2\\x2f\\x80\\x91\\x4f\\xb1\\x7c\\xe4\\x19\\x74\\x8f\\x3c\\x0d\\x80\\x29\\x00\\x68\\x05\\x40\\x93\\xc8\\x5d\\x00\\x38\\x1e\\x00\\x45\\x3d\\x1f\\x3d\\xa2\\x1d\\xa1\\xc2\\xbf\\x85\\xd3\\x28\\x6a\\x44\\x10\\x7a\\x84\\x32\\xb8\\xda\\xf7\\x96\\xef\\x76\\xdf\\x29\\xdf\\x31\\xdf\\xed\\xbe\\xdb\\x7c\\x07\\x7d\\x37\\xfa\\xb6\\x03\\x8c\\xcc\\x19\\xe9\\x15\\x47\\xf8\\x94\\x00\\x23\\xd5\\xc3\\xe7\\x87\\xff\\x03\\x30\\x7c\\x02\\x60\\xf8\\x7e\\x80\\xe1\\x23\\x00\\xc3\\x07\\x01\\x84\\x3d\\x00\\xc2\\x2e\\x80\\xe1\\x6a\\x80\\x2f\\xea\\xbf\\x08\\xfd\\xfc\\xc9\\xcf\\xcf\\x7c\\xde\\xfc\\xf9\\xe9\\xcf\\xf1\\x93\\x16\\x80\\x4f\\x1a\\x3f\\x69\\xf8\\xa4\\xfe\\x93\\xf2\\xcf\\x34\\x9f\\x14\\x7c\\x16\\xf2\\x49\\xf6\\x27\\xf4\\xe3\\x9f\\x01\\x3e\\x7e\\x13\\xe0\\xe3\\x15\\x1f\\x5f\\xf6\\xf1\\xdc\\x8f\\x67\\x7c\\xb4\\xe7\\xe3\\x89\\x1f\\xdb\\x3e\\xda\\xfc\\x8f\\xbb\\x3e\\x5a\\xf1\\xd1\\xf2\\x8f\\x16\\x7e\\xd4\\xf7\\x51\\xe7\\x47\\x15\\x1f\\xa5\\x7d\\x94\\xf2\\xfe\\xa9\\xe0\\xbf\\x90\\x7d\\xf8\\x07\\x99\\x7b\\xa5\\xbf\\x77\\xc6\\x88\\xc5\\xeb\\x00\\xf0\\x1e\\x00\\x32\\x00\\x34\\x8c\\x79\\x75\\x8e\\x95\\x1d\\xec\\xc6\\x3e\\xf8\\x9d\\x3f\\x6c\\xf3\\x8f\\x58\\x07\\x80\\xd7\\xf9\\x8f\\xdd\\x0f\\x80\\xff\\x06\\x20\\x06\\x00\\xc2\\x03\\x10\\xd1\\x26\\xbe\\x05\\x40\\xbe\\x04\\x20\\xbf\\x5c\\x7a\\x07\\xf2\\xdd\\x6f\\xdd\\x97\\xfc\\x43\\x7e\\xfd\\x3f\\xfc\\x51\\x16\\x81\\xdf\\xe0\\x19\\x3c\\x8b\\xdf\\xe2\\x77\\x38\\x04\\xeb\\xf1\\x4b\\xfc\\x05\\xcf\\xe3\\x30\\xfa\\x50\\xc0\\x11\\xd8\\x00\\x1b\\x09\\x10\\x24\\x84\\x50\\xc2\\x60\\x13\\x6c\\x26\\x1c\\x51\\x10\\x25\\x51\\x91\\x20\\x12\\x0c\\x5b\\x60\\x2b\\xd1\\x92\\x68\\xa2\\x23\\x31\\x24\\x96\\xc4\\xc1\\x36\\xd8\\x4e\\xf4\\x24\\x9e\\x8c\\x27\\x06\\x92\\x00\\x57\\xe0\\x17\\xf4\\x33\\xb8\\x12\\xbf\\x82\\x1d\\xb0\\x13\\xae\\x22\\x0d\\xa4\\x91\\x34\\x91\\x66\\xb8\\x9a\\x4c\\x24\\x93\\xc8\\x64\\x32\\x85\\x4c\\x25\\xd3\\x48\\x0b\\x69\\x85\\x5d\\xb0\\x9b\\xb4\\x91\\x76\\x32\\x9d\\xcc\\x20\\x1d\\x64\\x26\\xe9\\x84\\x6b\\x60\\x0f\\xe9\\x22\\xdd\\xa4\\x87\\xcc\\x22\\xb3\\x49\\x2f\\xec\\x85\\x7d\\xa2\\x3e\\x23\\xab\\xc8\\x1a\\x72\\x39\\x59\\x8b\\x5f\\xe3\\x69\\x3c\\x47\\x42\\xc8\\xb5\\xe4\\x3a\\xf2\\x07\\x72\\x3d\\x59\\x42\\x96\\x92\\x15\\x64\\x25\\xdc\\x03\\xf7\\x92\\x21\\xb8\\x8f\\x9c\\x23\\xff\\x24\\xdf\\xc3\\xfd\\xf0\\x00\\xf9\\x99\\xfc\\x42\\xce\\xc3\\x20\\x19\\x26\\x3e\\x38\\x46\\x04\\x32\\x02\\x0f\\x52\\x80\\x87\\x28\\xc2\\xc3\\x94\\x50\\x0a\\xc7\\x29\\x83\\x13\\xf0\\x08\\xe5\\xa8\\x82\\x2a\\xa9\\x8a\\x06\\xd1\\x60\\x1a\\x42\\x43\\xe1\\x59\\x1a\\x4e\\xc7\\xc1\\x73\\x34\\x0c\\x9e\\x87\\x93\\xf0\\x02\\x9c\\x82\\x17\\xe1\\x25\\x78\\x99\\x46\\xc0\\x2b\\xf0\\x27\\xda\\x48\\xa3\\xe1\\x35\\xaa\\x83\\xd7\\x69\\x0c\\x8d\\xa5\\x71\\x54\\x0f\\x7f\\x85\\x37\\xe0\\x4d\\x3a\\x9e\\x36\\x51\\x03\\xfc\\x8d\\x26\\xc0\\xdf\\xa9\\x91\\x9a\\xe0\\x2d\\x6a\\x86\\xb7\\xe1\\x1d\\x78\\x97\\x5a\\x68\\x3c\\xbc\\x47\\x13\\xa9\\x95\\xda\\xa8\\x9d\\x26\\xd1\\x64\\x9a\\x02\\xef\\x53\\x07\\x4d\\xa5\\x69\\xf0\\x25\\x7c\\x05\\x5f\\xc3\\x69\\x9a\\x0e\\xdf\\xc0\\x19\\x38\\x4b\\x33\\xe0\\x5b\\xf8\\x0e\\x86\\xe0\\x1c\\xcd\\x84\\x7f\\xd2\\x2c\\x9a\\x0d\\xdf\\x53\\x27\\xfc\\x40\\x73\\x68\\x33\\x75\\x81\\x40\\x73\\x61\\x84\\xba\\x69\\x1e\\xf5\\xd0\\x7c\\x04\\x44\\x24\\xb4\\x80\\x4e\\xa4\\x85\\x48\\x91\\x21\\x47\\x7f\\xa1\\x93\\xe8\\x64\\xd4\\x60\\x14\\x6a\\x31\\x9a\\x4e\\xa1\\x53\\xd1\\x86\\x76\\x3a\\xc2\\x80\\xfe\\x4c\\xff\\x83\\x49\\x98\\x8c\\x29\\xe8\\xa0\\xe7\\xe9\\x30\\xa6\\x62\\x1a\\xfd\\x81\\xfe\\x48\\xa7\\xd1\\x16\\xfa\\x05\\xfd\\x12\\xd3\\x31\\x83\\xfa\\xa8\\x80\\x99\\x98\\x45\\xbf\\xa2\\x5f\\x63\\x36\\x3a\\x31\\x07\\x5d\\x98\\x8b\\x6e\\xda\\x4a\\xdb\\xe8\\x69\\xfa\\x0d\\x6d\\xa7\\xd3\\x99\\x92\\xa9\\xe8\\x19\\x7a\\x16\\xf3\\xd0\\x43\\xbf\\xa5\\xdf\\x61\\x3e\\x16\\x60\\x21\\xfd\\x09\\x8b\\xb0\\x98\\xfe\\x8b\\xfe\\x9b\\xce\\xa0\\x1d\\x74\\x26\\x96\\x20\\xcf\\x38\\xa6\\xc0\\x52\\x2c\\x63\\xc8\\x08\\x1d\\xa2\\xe7\\x18\\x65\\x0c\\xcb\\xe9\\x65\\x74\\x1e\\x9d\\x4f\\xfb\\xe8\\x02\\xda\\x4f\\x17\\x62\\x05\\x56\\xd2\\x7f\\xd2\\xef\\xe9\\x16\\xba\\x15\\xab\\xb0\\x9a\\x6e\\xa3\\xdb\\x59\\x10\\x0b\\xc6\\x1a\\x7a\\x05\\x0b\\xa1\\x57\\xd2\\x1d\\x38\\x0b\\x67\\xb3\\x30\\x16\\x8a\\xab\\xe8\\xe7\\xb8\\x06\\x14\\x24\\x18\\x64\\x98\\x83\\x97\\x0a\\x16\\x04\\x0c\\x18\\xf9\\xbf\\xf0\\x3d\\x06\\xb8\\x1f\\x18\\x70\\xa0\\x00\\x25\\xa8\\x20\\x08\\x82\\x21\\x04\\x42\\x21\\x0c\\xc2\\x61\\x1c\\x44\\x80\\x1a\\x22\\x41\\x03\\x51\\xa0\\x85\\x68\\xd0\\x41\\x0c\\xc4\\x42\\x1c\\xe8\\x21\\x1e\\xc6\\x83\\x01\\x12\\xc0\\x08\\x26\\x30\\x83\\x05\\x12\\xc1\\x0a\\x36\\xb0\\x43\\x12\\x24\\x43\\x0a\\x38\\x20\\x15\\xd2\\x20\\x1d\\x32\\x20\\x13\\xb2\\x20\\x1b\\x9c\\x90\\x03\\x2e\\xc8\\x05\\x37\\xe4\\x81\\x07\\xf2\\xa1\\x00\\x0a\\xa1\\x08\\x8a\\xa1\\x04\\x78\\x28\\x85\\x32\\x28\\x87\\x0a\\xa8\\x84\\x2a\\xa8\\x86\\x1a\\xa8\\x85\\x3a\\xf0\\x42\\x3d\\x4c\\x80\\x06\\x68\\x84\\x26\\x68\\x86\\x89\\x30\\x09\\x26\\xc3\\x14\\x98\\x0a\\xd3\\xa0\\x05\\x5a\\xa1\\x0d\\xda\\x61\\x3a\\xcc\\x80\\x0e\\x98\\x29\\x5a\\x4f\\x51\\x62\\xf1\\x9f\\xf8\\x03\\xfe\\x82\\x23\\x84\\x12\\x05\\xe1\\x88\\x92\\x04\\x11\\x15\\x09\\x26\\xa1\\x24\\x9c\\x84\\x91\\x71\\x24\\x82\\x44\\x12\\x35\\xd1\\x90\\x28\\xa2\\x25\\x3a\\x12\\x4d\\x62\\x48\\x1c\\x89\\x25\\xf1\\x44\\x2f\\xca\\x28\\xf6\\xc3\\x42\\xe8\\x86\\x1e\\x98\\x83\\x03\\xb0\\x0c\\x36\\xc3\\x02\\x98\\x87\\xeb\\x61\\x09\\xcc\\xc5\\xab\\x61\\x3d\\x6c\\xc4\\x1d\\x30\\x80\\xbb\\x70\\x37\\xcc\\x86\\xa5\\xb8\\x15\\xb7\\xe3\\x36\\x78\\x1e\\x77\\xc2\\x65\\xb0\\x0a\\x1e\\x81\\x2d\\xb0\\x1d\\xd6\\x41\\x17\\xf4\\xe1\\x95\\x70\\x2d\\x5e\\x05\\x0f\\xc0\\x7c\\x58\\x8d\\x8b\\x81\\xe2\\x37\\xf8\\x2d\\x0a\\xa2\\xc4\\x8a\\xfb\\x86\\xf3\\xb1\\x0f\\xe7\\xe0\\x5c\\xd8\\x86\\xd7\\x10\\x23\\xd9\\x85\\xcb\\x71\\x0d\\x2e\\xc5\\x65\\xd2\\x26\\x2c\\x84\\xe5\\x38\\x0f\\x17\\xe0\\x12\\x3c\\x8b\\x3f\\xe2\\x19\\xfc\\x17\\x7e\\x8f\\x3f\\xe1\\x7f\\xf0\\x67\\xfc\\xb7\\xa8\\x81\\x00\\xf0\\xbc\\xa4\\x7b\\x00\\x76\\xc0\\xcd\\x70\\x2b\\xf4\\xc3\\x2d\\x70\\x10\\x0e\\xc1\\x0a\\x38\\x02\\x87\\xe1\\x80\\xb8\\xcf\\x98\\xc7\\x14\\x74\\xb9\\x42\\xf4\\x30\\x82\\x20\\xc7\\x3b\\x98\\xda\\xd4\\xc2\\x87\\x11\\x91\\x37\\x5a\\x29\\x22\\x16\\x43\\xbd\\x9e\\xd7\\x50\\x14\\x0f\\x4c\\x11\\x0f\\x40\\x2b\\x11\\x91\\xf4\\x84\\xd6\\x13\\xea\\x48\\xb5\\x9a\\xa9\\x62\\x1c\\x48\\x2d\\x6a\\x27\\x27\\xfe\\x83\\x43\\xb1\\xb7\\x3c\\x82\\xdb\\x63\\x6f\\x79\\x84\\xbb\\x56\\x58\\x84\\xbf\\xcc\\x17\\xff\\x11\\x79\\xc9\\x09\\xc0\\x76\\x73\\x83\\xa0\\x87\\x04\\x58\\xea\\x1d\\xd4\\x35\\xb5\\xf0\\xf6\\xf0\\x10\\x42\\x43\\x09\\x01\\xa4\\xd0\\xa5\\x42\\x85\\xa2\\xd0\\x3b\\x2e\\x98\\x30\\xc6\\xb5\\x06\\x29\\x09\\xc7\\x95\\x78\\xc3\\x10\\xb1\\x08\\xeb\\xf5\\xbc\\x55\\x3c\\x20\\x9e\\xa3\\x1c\\xeb\\xfe\\xf5\\x55\\xfe\\x71\\xad\\x7c\\x5c\\x82\\x61\\x7c\\xbc\\x3e\\x2e\\x36\\x46\\x17\\xad\\x8d\\xd2\\x44\\xaa\\xfd\\x7f\\x11\\x11\\xaa\\xf1\\x0e\\xb4\\x50\\x8b\\xc6\\xe2\\x32\\x49\\x2f\\x27\\x75\\x8a\\x2f\\xad\\x45\\x7a\\x59\\xa8\\x53\\x63\\x21\\x47\\x3e\\xab\\xbf\\x63\\xc2\\xd7\\xc8\\x15\\xfc\\x0b\\x35\\x0d\\xb7\\x37\\x7c\\xd6\\x70\\xb4\\xe1\\xb5\\x6f\\x0b\\x3e\\xf8\\x79\\xc2\\x1d\\xab\\x3e\\xcb\\xff\\x0c\\x6f\\x14\\x7a\\xf1\\xc6\\x03\\x98\\x7f\\x10\\x0f\\x09\\x9d\\xe2\\xeb\\xa0\\x70\\xea\\x80\\xd0\\x4b\\xdc\\x98\\x2f\\xca\\xc2\\xee\\x91\\x74\\xd6\\xa1\\xb8\\x09\\x4a\\xa1\\x92\\x2f\\x8b\\x1c\\x47\\x08\\xe4\\x64\\x11\\xca\\x91\\x3a\\x40\\xc2\\x08\\xb2\\x01\\x60\\x1c\\x61\\x5c\\xbf\\x44\\x70\\x20\\x3d\\xc0\\x51\\xca\\x4d\\x03\\x8e\\xa3\\xad\\x40\\x39\\x3a\\x81\\x2f\\xce\\xf7\\x38\\xb3\\x0d\\xf1\\x31\\x3a\\x75\\x84\\x42\\x15\\xe5\\xc0\\x9c\\x74\\x62\\x4f\\xa7\\xae\\x9c\\x62\\xe2\\x76\\x39\\xb5\\x06\\xaa\\xb5\\xe4\\xa4\\x13\\x8b\\x39\\x9c\\x68\\xa3\\x0c\\x44\\x67\\xa0\\xda\\xa8\\x70\\xa2\\xd4\\x5a\\x5c\\xe9\\xd4\\xe5\\x8c\\x32\\x10\\x67\\x76\\x2e\\x5d\\xa8\\x2f\\xec\\xac\\xec\\xbe\\x65\\xa0\\x30\\xb7\\xe7\\xea\\x69\\x87\\xa6\\x5d\\xd9\\xe9\\x1c\\x32\\xe4\\x35\\xe7\\xe4\\x35\\xe7\\xc4\\xc5\\x16\\x76\\xd7\\xf6\\x1c\\xe8\\xcf\\xcf\\x9b\\xbb\\xbf\\xfd\\x60\\xf3\\x75\\x4b\\xab\\x86\\xd2\\x6a\\xda\\xd2\\x97\\xaf\\xc3\\xcb\\x53\\xaa\\x0a\\x9c\\x3a\\x63\\xe3\\xbc\\x9d\\x33\\x26\\xef\\x9c\\xc3\\x07\\xbf\\xf7\\x41\\x68\\xed\\xf2\\x5b\\x67\\x97\\xcc\\xae\\xb6\\x19\\x5c\\xde\\x34\\x47\\x45\\xbe\\x33\\xd6\\xdc\\x38\\x6f\\xc7\\xf4\\x96\\x9d\\xb3\\x8b\\x82\\x9e\\x7b\\x56\\x95\\xbf\\xe0\\xe8\\xb2\\x86\\xde\\xa2\\xd8\\x85\\x22\\xfb\\x71\\x60\\x1f\\x39\\xcb\\x8e\\x70\\x2f\\x80\\x16\\x1c\\x50\\x0a\\xd3\\xa0\\x1d\\x8a\\xf9\\x82\\xf6\\x36\\x42\\x68\\x2b\\x2a\\x94\\xa4\\x0e\\x08\\x20\\x23\\xd8\\x03\\x0c\\x94\\x0a\\xa6\\xec\\x01\\x4a\\x41\\x44\\xc3\\x15\\x5e\\x50\\x28\\xb8\\x76\\xe0\\xb8\\x4a\\xae\\x3e\\x59\\xfe\\x4b\\x54\\xa9\\xe2\\x1d\\x9a\\x9c\\x62\\xe2\\xcc\\x36\\x10\\xad\\xb8\\x40\\x8b\\x39\\x9d\\xf8\\x97\\x57\\x4c\\x5c\\xae\\x00\\x05\\xf0\\x7f\\x18\\xc3\\xd9\\x51\\x67\\xb7\\x54\\xcd\\xad\\xac\\x9c\\x57\\x69\\xb1\\x54\\xce\\xad\\xa8\\x9c\\x57\\x95\\x78\\x67\\xa8\\x3e\\x25\\xc1\\x90\\x12\\x1b\\x1a\\x1a\\x27\\xbe\\xc7\\x85\\xe2\\x9d\\x17\\x86\\xcc\\xa9\\xac\\x9c\\x57\\x6d\\xb9\\x33\\x54\\xef\\x30\\x18\\x53\\x62\\x82\\x43\\xe3\\x52\\x0c\\x09\\x29\\x71\\x21\\xc2\\xe5\\xeb\\x49\\xd6\\x7a\\x76\\x6f\\x7e\\x6f\\x7d\\x5a\\x5a\\x7d\\x6f\\xfe\\x04\\xcf\\xec\\x09\\xa9\\xa9\\x13\\x66\\x7b\\xf4\\x59\\x56\\x9d\\xce\\x9a\\xa5\\x9f\\x10\\xf8\\x30\\x7c\\xbb\\xa7\\x57\\x3c\\xd5\\xeb\\x69\\xf0\\xf4\\xd6\\xa7\\xa6\\xd6\\xf7\\x4a\\x63\\xa2\\x6d\\x59\\xfa\\x86\\x38\\x79\\x4c\\xdc\\xd5\\x3c\\x63\\x3c\\x50\\x68\\x19\\x39\\xc3\\x9e\\xe1\\x5e\\x80\\x14\\xf0\\x40\\x3d\\x2c\\xe5\\x35\\x45\\x31\\x1c\\x45\\x2e\\x23\\xdd\\x18\\xcb\\x18\\x5a\\x90\\x30\\x5a\\x27\\x8b\\x89\\x19\\x38\\x2e\\x40\\x32\\x44\\xd2\\x4e\\x91\\x90\\x22\\xaf\\x02\\x19\\xf3\\x7f\\x26\\xf5\\x7a\\xde\\x78\\xf1\\xa0\\x56\\x08\\x8c\\xa1\\xed\\x40\\x69\\x0d\\xad\\x6f\\xe5\\xc7\\xa5\\x3a\\x6a\\xab\\x1d\\x9e\\x54\\x8f\\x25\\xca\\x90\\xaa\\x54\\xc5\\x48\\x94\\x76\\xdb\\x6c\\xae\\x00\\x31\\x45\\x86\\x52\\x62\\x6e\\xae\\xcb\\x19\\xa5\\x50\\xea\\x4c\\x76\\x85\\x42\\x24\\x2d\\x97\\x9d\\xeb\\x46\\x65\\x38\\x15\\xd9\\x8e\\x46\\x45\\xeb\\xdc\\xc5\\x34\\x40\\xe3\\x16\\x5b\\x65\\x77\\x61\\x49\\xb5\\xab\\xe7\\xaa\\xa9\\x75\\xab\\xa6\\xa4\\x1b\\xf3\\xea\\x53\\xa7\\xe0\\x38\\xa3\\xf5\\xaf\\xb5\\xde\\xc7\\x84\\xd3\\x55\\xde\\xbb\\x66\\xcd\\x3e\\xbc\\xa8\\x10\\x1f\\x2b\\x5c\\xec\\x14\\x3e\\x8e\\x48\\xce\\x8a\\x55\\xe9\\x9d\\x5e\\x4b\\x8a\\x6d\\x4e\\x82\\x25\\x82\\x45\\x18\\x52\\xf5\\x36\\x8f\\x4d\\x83\\xcb\\xca\\x17\\x76\\x4e\\x4d\\x69\\x3b\\x34\\x75\\xda\\x15\\x1d\\x59\\xae\\xd6\\xe5\\xa5\\x39\\xad\\x0d\\x95\\xc6\\x6a\\xe1\\x50\\xe1\\xae\\xe6\\x6d\\x9f\\xb5\\x9f\\x9b\\xee\\xce\\x2f\\x98\\x77\\xcd\\x32\\x9b\\x05\\xd7\\x86\\x59\\xca\\x0b\\xb3\\x23\\x53\\x27\\x78\\x4c\\xf4\\xfe\\xac\\x5e\\x4f\\x93\\xd6\\x91\\x62\\x1f\\x17\\xe7\\xb4\\xc7\\xc4\\x67\\x14\\x03\\xe2\\xbb\\x54\\x20\\x37\\x48\\x7a\\x2c\\x4d\\xd6\\x62\\x21\\xa2\\x86\\x6c\\x05\\xbf\\x0e\\x8b\\x90\\xec\\xdd\\x14\\x10\\x35\\x18\\x48\\x0a\\xec\\x61\\xb5\\x9a\\xa8\\xa2\\x65\\xf5\\x45\\x6e\\x88\\x3d\\xfa\\x0c\\xb7\\x45\\x58\\x2d\\xea\\x4a\\xc4\\xe9\\x42\\x16\\x5d\\xa7\\xe8\\x04\\x3d\\x28\\x1e\\x8a\\x52\\x62\\xa6\\x03\\x73\\x8a\\x99\\x5b\\x17\\x4e\\x44\\xa6\\x8b\\x8c\\x8e\\xd6\\x29\\xd3\\x39\\x17\\x4e\\x4f\\xaf\\x9f\\xbd\\x70\\x91\\x33\\xd3\\xb3\\xb4\\xa3\\xa0\\xa0\\x63\\xa9\\x27\\xd3\\xb9\\x68\\xe1\\xec\\xfa\\x74\\xd2\\xb4\\x67\\xf8\\xad\\x07\\xb6\\xcf\\x88\\xbb\\x3a\\xf5\\xba\\x0f\\x84\\x77\\x9f\\x88\\x7a\\x42\\x78\\xf7\\x1f\\xd7\\xa7\\x6f\\x8b\\xed\\xd8\\x7e\\xff\\x5b\\xc3\\x7b\\xc4\\xfb\\x17\\x0a\\x59\\x74\\xd6\\x45\\xf7\\x8f\\x0a\\x67\\x4a\\x7b\\x31\\x89\\x74\\xb9\\x72\\x88\\xcd\\x66\\x77\\x1b\\x38\\x2d\\x9d\\x95\\xde\\xd0\\xbb\\x68\\x89\\x33\\x23\\x6f\\x69\\x47\\x61\\x49\\xe7\\x92\\x9c\\x0c\\xe7\\x92\\x45\\xbd\\x0d\\xe9\\x84\\xdf\\x7d\\xfe\\xef\\x83\\x57\\xcc\\x8c\\xdd\\xe6\\xb8\\xfe\\x23\\x4c\\x7e\\x22\\xea\\x09\\x4c\\xfe\\xf8\\x7a\\xc7\\xb6\\xb8\\x8e\\x2b\\x8e\\xbd\\x75\\x7e\\x97\\xb8\\xb8\\x1b\\xe1\\x29\\xb6\\x9e\\x3d\\x04\\xe1\\x10\\xc7\\xeb\\xc2\\xc3\\x42\\x43\\x82\\x83\\x54\\x4a\\x05\\x25\\x18\\x0a\\xd5\\x00\\x30\\x2f\\x0a\\x55\\x5a\\x07\\x5a\\xdd\\x1c\\x75\\x52\\xab\\x8e\\x43\\x25\\xa5\\x76\\x12\\x27\\x6c\\x28\\xc6\\x45\\xc6\\x3f\\x5b\\xb0\\xbf\\x58\\x58\\x8d\\xdc\\xd1\\x37\\x5e\\xbf\\x8b\\x6c\\x9d\\x79\\xf2\\x10\\xde\\x23\\x34\\xde\\xfc\\x62\\x9b\\xf0\\xc4\\x1a\\x5c\\x24\\xdc\\xb8\\x0c\\x10\\x16\\xc0\\x5e\\x36\\x89\\x9d\\x80\\x10\\xb0\\xf1\\x16\\xe0\\x80\\x70\\x53\\x18\\x02\\x45\\x24\\x80\\x5d\\xc0\\x71\\x22\\x0b\\x72\\x64\\x82\\xac\\x7f\\x15\\xaa\\x38\\x07\\x9a\\xb4\\x26\\xb5\\x45\\x6d\\x72\\x99\\xd4\\x4e\\xf2\\x77\\x5c\\x27\\x6c\\x3a\\x2d\\x6c\\xc4\\xf5\\xa7\\xa9\\xf1\\x13\\x61\\x12\\xde\\xf7\\x89\\x84\\xe2\\x11\\xbb\\x85\\x2b\\xc9\\xdd\\xf0\\x0d\\x84\\x40\\x04\\x1f\\xa6\\xe0\\x88\\x3c\\xdb\\x38\\x71\\xb6\\x56\\x91\\x41\\xed\\xb9\\xb9\\x2e\\x97\\x93\\xdc\\xa5\\x77\\x56\\x3b\\xb6\\x3b\\xd2\\x87\\x4c\\xae\\x81\\xbe\\x2e\\x5b\\x75\\xcd\\xc1\\xee\\xbf\\x4a\\x98\\xe4\\x67\\x62\\x60\\x71\\xe4\\x23\\xa0\\x10\\xc3\\x6b\\x2f\\xdd\\x70\\x75\\x84\\xb4\\xdd\\x26\\x97\\x89\\xc5\\x0d\\x7f\\x44\\x4d\\xc4\\xf0\\xac\\xf8\\x9b\\xa7\\x46\\xce\\x52\\x0b\\xba\\x41\\x03\\x1a\\x3e\\x42\\xbc\\x4b\\x3b\\x20\\x56\\x62\\x7d\\x52\\xa2\\x38\\xdc\\x3a\\x46\\x3e\\x44\\x81\\xc0\\x53\\xba\\xd4\\xd2\\x94\\x94\\xd2\\x34\\x9d\\x2e\\x4d\\x7c\\x4f\\xd5\\xed\\xb6\\x14\\xa7\\xc5\\xc5\\xa5\\x15\\x5b\\x2c\\x05\\xa9\\xb1\\xb1\\xa9\\x05\\xe2\\x6f\\x9d\\x1e\\xd9\\xcc\\x28\\x37\\x08\\x54\\xbe\\x27\\xc2\\x12\\x71\\xd3\\xb1\\x5e\\x9e\\x02\\x67\\x41\\x27\\x3e\\xff\\x1e\\xe1\\xdf\\x5b\\xab\\x48\\x93\\x3c\\xfd\\x5d\\x23\\x67\\x58\\x99\\xa4\\x47\\xc7\\x83\\x05\\x6a\\xf9\\xa0\\x04\\x83\\x2e\\x9a\\x51\\x82\\x75\\xde\\xc1\\x88\\xa6\\x16\\x5e\\x0b\\x84\\x48\\xf3\\xaa\\xf0\\x06\\x54\\x68\\xa5\\xc8\\xd4\\xbf\\x71\\xbc\\x06\\xea\\x5b\\x4f\\x58\\x93\\x92\\x13\\x25\\xd3\\x1c\\xd0\\x90\\xea\\xc0\\x32\\x10\\x6d\\x36\\x8b\\x59\\xa1\\xe5\\x30\\xd2\\x99\\xad\\x66\\x65\\xa5\\xab\\x07\\xfb\\x17\\x0c\\xae\\x29\\x2f\\x5b\\xf3\\xc0\\x82\\xfe\\xc1\\x35\\x65\\xbe\\x42\\x7c\\x43\\xb5\\xa4\\x7f\\xd9\\x52\\xfc\\x9b\\x90\\x1e\\xf9\\xf6\\x69\\x92\\x72\\xf5\\xdb\\x7b\\xea\\xea\\xf6\\xbc\\x7d\\x35\\x4e\\x0f\\x7c\\x12\\x46\\xb0\\xfd\\xda\\xdd\\x77\\xdc\\xbb\\x4b\\xb8\\x5d\\xf8\\x54\\xa4\\x30\\x3c\\x09\\x40\\xcd\\xdc\\x20\\x28\\x20\\x8a\\x57\\x73\\x4c\\x74\\x75\\x6a\\x00\\xa0\\x08\\xea\\x23\\xc4\\xbd\\x33\\x59\\xd4\\x9c\\xcb\\xea\\xa4\\xe6\\x7f\\x0a\\x57\\x91\\xa9\\xe3\\xd8\\x95\\x57\\xbc\\xf1\\xa1\\xb4\\x5f\\xf5\\x00\\xac\\x80\\x3b\\x09\\x66\\x48\\xe7\\x1d\\x04\\x81\\x61\\x1d\\x10\\x64\\x48\\xd8\\x00\\x20\\x4a\\xda\\xab\\xc2\\x0b\\x8c\\x89\\x3b\\x28\\xde\\x2d\\x2e\\x31\\xd2\\x11\\xc1\\xa9\\x62\\x1d\\x26\\x93\\x0b\\x03\\xaa\\x48\\xa1\\xb5\\x8c\\x55\\x62\\x68\\x62\\x05\\xc3\\xe9\\xf8\\x5e\\x61\\x73\\x66\\x54\\x82\\xa7\\x39\\x7b\\xd3\\x9a\\x73\\x95\\x1b\\x1f\\x5d\\xd2\\x77\\xe7\\xd2\\xc2\\xd4\\x86\\xbe\\x12\\xe1\\x04\\xb9\\xeb\\x76\\xc2\\x95\\xcf\\x99\\x5a\\x67\\xcb\\x9e\\x52\\x64\\xde\\xb5\\x76\\xe6\\x5d\\xeb\\x6a\\x8b\\x17\\x5e\\xdf\\x5e\\xb1\\x7e\\xdd\\xfa\\x72\\xe1\\x16\\x71\\x5e\\x33\\x47\\xce\\x32\\x13\\x77\\x12\\x0a\\x45\\x7b\\x6e\\x40\\x25\\x48\\xf3\\x02\\x24\\x30\\x00\\x9c\\x52\\xa1\\xe4\\x14\\x03\\x00\\xa0\\xe4\\x40\\xd9\\x33\\x66\\x9e\\x0a\\x05\\x6b\\x07\\xc6\\x2a\\x59\\x7d\\x61\\x7e\\x4e\\x76\\x7a\\x5a\\xb2\\x3d\\x31\\xca\\x66\\x54\\x89\\xfb\\x20\\x59\\xa7\\x1c\\x9b\\x64\\x9b\\x2e\\x9a\\xad\\x6c\\xca\\xc7\\x58\\xb1\\x5c\\x69\\x51\\x16\\xdc\\xbf\\xbb\\xa4\\xa3\\x38\\x61\\xe1\\x40\\xd6\\xa4\\x22\\xf3\\x50\\xe5\\x9a\\xbb\\x67\\xcf\\xb9\\x77\\x75\\x45\\x9c\\xab\\xd9\\x5d\\xd6\\x96\\x17\\x53\\xb7\\xf9\\xc1\\x39\\x33\\xef\\xdd\\xdc\\x30\\x64\\x2e\\x69\\x71\\x2f\\xde\\x6c\\xab\\x9e\\x55\\xb2\\x9b\\x56\\x98\\x0a\\x27\\x65\\x5f\\xb6\\x64\\x7c\\x6e\\x7d\\xe6\\xd4\\xbd\\xf3\\x8b\\x5c\\x73\\x6f\\xea\\x75\\xb4\\x4d\\xae\\x8d\\xd5\\xd5\\xb4\\xf6\\xba\\x7a\\x0f\\x2d\\xf0\\xe4\\xcc\\xb9\\x61\\x76\\x66\\xb3\\xc7\\xb8\\x6a\\x49\\x49\\x7b\\x41\\xbc\\x88\\xcb\\xca\\x00\\x58\\x2f\\x37\\x08\\xc1\\x10\\x0e\\x0e\\x3e\\x29\\x0c\\x81\\xa9\\x10\\x81\\xd4\\x71\\x01\\x69\\xee\\x06\\xc6\\x0a\\xbd\\x20\\x19\\x1a\\x11\\xf0\\xf9\\xc5\\xd9\\xa9\\xb5\\x88\\xe2\\x6c\\x47\\x27\\x9a\\xd4\\x4a\\xfa\\xc0\\x23\\x8f\\x0c\\xf9\\xae\\x50\\x90\\xe5\\x3f\\xf9\\xae\\xc4\\x2b\\xe2\\x08\\xf7\\xac\\xf0\\x04\\x56\\xec\\xa1\\xef\\x0f\\x4f\\x21\\x7d\\x19\\xb2\\xbf\\x70\\xdd\\xc8\\x59\\x56\\xcf\\x0d\\x42\\x0a\\x14\\xf2\\x1e\\x0e\\x15\\x24\\x05\\x99\\x82\\xd4\\x01\\x53\\x70\\x0a\\xc6\\x0d\\x00\\x01\\x05\\x23\\x8a\\x1e\\xbf\\xbc\\x42\\xa1\\x57\\x84\\x47\\x22\\x65\\x2b\\x69\\x7d\\x92\\x39\\x2a\\xc9\\xa2\\x56\\x2b\\x55\\x7a\\x87\\x46\\x63\\xd2\\x9a\\x68\\x6e\\xee\\x58\\xa1\\xb4\\x3b\\xa3\\xa3\\x65\\x0a\\xcb\\xa6\\x49\\xf9\\x7c\\x23\\x0d\\xf1\\xfd\\xd1\\x6a\\x59\\x5a\\x3f\\xe7\\xc8\\x40\\xa1\\x67\\xd9\\x83\\xab\\xda\\x8f\\x6e\\x9a\\xa4\\xf8\\x2a\\x7c\\x53\\x6f\\x41\\x4b\\xfe\\x78\\x53\\x59\\x37\\xef\\x28\\xce\\x4a\\x8a\\x22\\x6f\\x90\\x7f\\xbc\\x25\\x1c\\x8d\\xb2\\x55\\xac\\x3f\\xbe\\x78\\xf6\\xb1\\xcd\\xf5\\xae\\x39\\x37\\xf6\\xf6\\x2d\\x4a\\x6d\\x5c\\x58\\x56\\x72\\xd9\\x84\\xd4\\x30\\x9d\\x31\\x52\\xf2\\x85\\x56\\x8f\\x9c\\x65\\x1e\\xee\\x04\\x58\\x20\\x0f\\x78\\xbe\\x48\\x89\\x0c\\x93\\x91\\x63\\x22\\xbe\\x53\\x22\\xe3\\x90\\xf5\\x88\\x62\\xdc\\xae\\x40\\x4a\\xa5\\x79\\x93\\x76\\x20\\xa4\\x92\\xd4\\x5b\\x13\\x01\\x32\\xd3\\x13\\xf3\\xac\\x79\\x60\\x01\\x73\\x52\\x92\\x49\\xa5\\xd2\\x39\\x50\\x2b\\xcd\\xb1\\x98\\x8e\\x5d\\x82\\xcb\\x95\\x53\\xcc\\x9c\\x54\\x3c\\xa1\\x0d\\xa0\\x99\\x9c\\x74\\x42\\x7b\\x22\\xd6\\x1c\\x5b\\x56\\xa4\\x8a\\x29\\xae\\x6f\\xc9\\x9e\\x7f\\xa0\\x37\\xbb\\x64\\xe5\\xe0\\xc0\\x8a\\x13\\x6b\\x78\\x63\\xf5\\xa2\\x83\\x6f\\x6c\\xfd\\x3a\\xb9\\x9e\\xcf\\x1e\\x67\\xaf\\x68\\xc9\\xce\\x6b\\x29\\x32\\x1a\\x0a\\x5b\\xb8\\x13\\xaf\\x56\\x2e\\x3f\\xd0\\xaa\\xcf\\xb2\\xeb\\x26\\x6e\\x7f\\xa0\\x63\\xde\\xf1\\x6d\\x13\\x3a\\x0e\\xfc\\x65\\xd1\\x8c\\xf9\\x7f\\x3e\\x71\\x43\\x7f\\xb1\\xaf\\x3e\\x36\\x8d\\xb7\\x55\\xb4\\x6e\\x6d\\x4b\\x4b\\x6d\\x5c\\x50\\x5a\\xb4\\x60\\x62\\xa6\\xbc\\x37\\xad\\x00\\xac\\x46\\x92\\xdf\\x04\\x3e\\x5e\\x84\\x10\\x58\\x17\\x00\\x12\\x85\\x5e\\x59\\xf4\\xd4\\x6a\\x35\\x15\\x27\\x8f\\x16\\x49\\x83\\xd6\\xf8\\x1e\\x1b\\x26\\xd5\\xbe\\x30\\x3a\\xc4\\x39\\x7e\\xf9\\x3b\\x3b\\xfd\\xa2\\xa4\\xc7\\x76\\x8f\\x9c\\x65\\x55\\xdc\\x49\\xb0\\x80\\x0b\\x6a\\xc1\\xc5\\x67\\xeb\\x28\\x21\\x1c\\xd6\\x89\\x26\\x82\\x72\\xa4\\x07\\x18\\xfb\\xb5\\x1a\\xab\\xaa\\x28\\xcc\\xcf\\xce\\x4c\\x49\\x32\\x1a\\x52\\x15\\xa2\\x59\\x8a\\x52\\x8c\\x95\\x8a\\x8b\\x61\\x0a\\x1d\\x85\\xc1\\xd2\\x86\\xd3\\x31\\xa8\\x58\\xfc\\xce\\xec\\xfd\\x33\\x73\\xa7\\x15\\x9b\\xea\\x36\\xdc\\xd7\\x33\\xfb\\x81\\x0d\\xb5\\xa6\\xa2\\x69\\xb9\\x1d\\x7d\\x65\\xcb\\x6e\\xed\\xec\\x3c\\xb2\\xb2\\xfc\\x75\\x73\\xf1\\xb4\\xdc\\xdc\\x69\\x45\\xa6\\x75\\x0b\\x73\\xa6\\x15\\x9b\\x13\\x0c\\xb9\\x13\\xd2\\x33\\xbc\\x39\\xf1\\xe3\\x5d\\xf5\\x19\\xe9\\xf5\\xae\\xf1\\x2c\\x73\\xfe\\xd1\\xcc\\xd8\\x9a\\xb6\\xf9\\x85\\xb3\\x6f\\x9e\\x97\\x9b\\x3b\\xef\\xe6\\xd9\\x85\\x7d\\x6d\\x35\\x31\\x99\\x47\\xe7\\x77\\xfd\\x61\\x8e\\xcb\\x35\\xe7\\x0f\\x3e\\xa5\\xbb\\x8d\\xb7\\x58\\xf8\\x36\\xf7\\xc0\\x5a\\x63\\xf1\\x34\\xf2\\x52\\x66\\x73\\xbe\\xd1\\xe0\\x69\\x76\\x66\\x37\\x7b\\x8c\\x46\\x4f\\xb3\\x9f\\x57\\x7e\\x61\\x69\\x12\\x0d\\xf2\\xa0\\x9c\\xe7\\x93\\x91\\x71\\x1c\\x22\\x23\\x75\\x4a\\x64\\x20\\xaa\\xb8\\x9e\\x00\\x83\\x54\\x78\\x15\\x28\\xb2\\x0d\\x50\\x5a\\x44\\xeb\\xad\\x89\\xe8\\xe7\\x15\\x93\\x51\\xab\\x09\\x09\\x02\\x0b\\x5a\\x54\\xaa\\x28\\x87\\x35\\xbb\\x98\\xb8\\xc3\\x69\\x80\\x18\\x01\\xe4\\xcb\\x2c\\x16\\x17\\x8a\\xa7\\x5c\\x63\\x68\\x80\\x33\\x37\\x1d\\xeb\\x77\\x29\\xa3\\x3d\\xd5\\x53\\x9c\\xf3\\x6f\\x99\\xeb\\x2c\\x5e\\xf9\\xc0\\xc0\\xaa\\x87\\x56\\x14\\xe8\\x4b\\xe7\\x1f\\x7c\\x77\\x97\\x06\\x49\\xb2\\xb7\\x38\\x33\\xdc\\x5e\\x36\\x2d\\x33\\x6f\\x6a\\x41\\x42\\xbc\\xa7\\xe5\\x54\\x51\\xdf\\xbe\\xa9\\xb1\\x0e\\x93\\xa6\\x79\\xfb\\x60\\xe7\\xbc\\xc7\\x76\\x34\\x75\\xde\\xfa\\xf6\\x8a\\x86\\xb9\\x2f\\x1f\\xbf\\x7e\\x61\\xc9\\xab\\xf8\\x76\\x5c\\x3a\\x6f\\x6b\\x6c\\xd9\\xde\\x9e\\x9e\\x39\\x69\\x80\\x2f\\xec\\x9f\\xe2\\x1c\\x19\\xc1\\x2f\\x46\\xce\\xd2\\x32\\xb6\\x83\\xd8\\x20\\x22\\x01\\x50\\x09\\x11\\x90\\x40\\x27\\x41\\xd0\\x31\\xc4\\x47\\xe9\\xa4\\x41\\xa7\\x03\\x46\\x46\\xf0\\x65\\xe1\\x4a\\xda\\xcc\\x76\\x10\\x3b\\x44\\x40\\x3a\\x9d\\x84\\x0a\\x08\\x9f\\x03\\x10\\x74\\x0c\\x02\\x63\\x00\\xe1\\x08\\x1c\\x65\\x1c\\x6b\\x00\\x15\\x28\\x1e\\x52\\x32\\x11\\x03\\x29\\x75\\x9c\\x16\\x5d\\xa8\\xc5\\x3f\\x97\\x96\\x92\\xbc\\xe1\\x5b\\x68\\x37\\xb9\\x46\\x17\\xfd\\xea\\x39\\x5c\\xf6\\x14\\x2e\\x1d\\x12\\x69\\x7b\\x3b\\x96\\xb1\\x22\\x7a\\x0c\\x28\\x28\\xc1\\xcc\\x27\\x88\\x16\\x9e\\x22\\x74\\x01\\x25\\x84\\x4e\\x01\\x4a\\x45\\x8e\\xa5\\x12\\xee\\x88\\x90\\xcc\\x9f\\x88\\x37\\x44\\x6e\\x2d\\x1a\\x9e\\x4b\\xaf\\x17\\x5f\\xe4\\x9b\\x17\\x7d\\x7b\\x5e\\x94\\x78\\xfe\\x2e\\x38\\xca\\x6c\\xac\\x51\\xfa\\x7d\\x86\\x98\\xe9\\xd0\\x88\\x3f\\xed\\xb2\\xba\\xed\\x77\\xd1\\xb5\\xc3\\x9b\\x49\\x4b\\x69\\x29\\xed\\x39\\x2b\\x5c\\xf5\\xb4\\xb0\\xf3\\xdb\\xbf\\x47\\x69\\xa5\\xbd\\xbd\\x77\\xe4\\x47\\x96\\xc7\\xbd\\x00\\x76\\x70\\x42\\x1e\\xef\\x02\\x04\\x0a\\x48\\x07\\x14\\x48\\x19\\x50\\x26\\xb9\\x77\\xf2\\xc6\\x02\\x63\\x01\\xf7\\x06\\x20\\x3b\\x33\\x35\\x05\\xec\\x60\\x4f\\x8c\\x4a\\x55\\x8a\\x22\\x24\\xb2\\xb4\\x68\\xbc\\xfc\\xe6\\xe0\\x82\\x22\\x10\\x81\\x36\\xe6\\xe4\\x3a\\xb3\\xa3\\xb5\\x51\\x0a\\x8b\\xd9\\x86\\xff\\x56\\xc5\\xe7\\x65\\x99\\xaa\\x3c\\xd6\\xfe\\xb9\\x49\\x13\\x0a\\xad\\xe7\\xb0\\x7a\\xf5\\x6d\\x9d\\x7d\\x77\\x2e\\x2b\\xca\\x6a\\xec\\xce\\x34\\x18\\xc7\\x91\\x11\\xa8\\xad\\xa8\\xf0\\x7a\\x2b\\x2a\\x6a\\xf1\\xee\\xea\\xce\\xba\\xd2\\x14\\x53\\xf5\\x84\\x89\\xa9\\x3d\\x5d\\xda\\xd4\\xca\\xcc\\x19\\xbb\\xbb\\xb2\\x9c\\xdd\\xd7\\xcc\\xa8\\x5e\\xd3\\xd7\\xe1\\x30\\x64\\x66\\xe7\\x27\\x09\\x7f\\x29\\x98\\x30\\xa1\\xc0\\xe3\\xf5\\x4a\\x3e\\xf9\\xc8\\x7f\\xd8\\x35\\xdc\\xdd\\x50\\x0d\\x93\\xe1\\x3d\\xef\\xa0\\xbe\\xa9\\x85\\xd7\\xc5\\x60\\x10\\x69\\xaa\\x21\\x34\\x48\\x85\\x40\\x9d\\xc8\\x41\\x0e\\x2a\\x38\\xae\\x4e\\x3f\\x7a\\x46\\x75\\xc9\\x99\\x56\\xd9\\x4b\\x49\\x56\\x21\\x45\\x04\\x8e\\x82\\x28\\xe2\\xca\\x76\\x50\\x2a\\x0b\\xbd\\x10\\x14\\x24\\x51\\xa3\\x5a\\xd4\\x88\\x8a\\x76\\x50\\x28\\x8a\\x14\\xf5\\x7a\\xf9\\x97\\xec\\x40\\x20\\x88\\x92\\xa0\\x9e\\xdf\\xbc\\x70\\xcc\\x70\\x3e\\x55\\x1c\\xa9\\x22\\x41\\x3d\\xa0\\xa2\\xa0\\x9a\\x06\\xff\\x75\\x78\\x6b\\x2b\\x1f\\x3e\\xa9\\xd9\\x96\\x64\\xb7\\x25\\xd9\\x93\\x12\\x13\\x83\\x45\\xcf\\x5f\\x14\\x1d\\x9b\\xdf\\x9d\\x71\\x8b\\xb4\\x8e\\xd6\\x51\\x85\\x5f\\xc3\\xe6\\xfa\\xed\\x05\\x89\\x74\\x66\\xe7\\xba\\x75\\xd2\\x50\\x1b\\x71\\xe7\\x46\\xca\\xf6\\x05\\x15\\xd1\\xe2\\x71\\x97\\x46\\x84\\x4c\\xec\\x2a\\x6a\\xae\\x9c\\xef\\x75\\x4f\\xd4\\x5a\\x66\\xe4\\xba\\x9a\\x9d\\x51\\xca\\xe0\\xfc\\xb6\\x95\\x35\\xb5\\x1d\\xf1\\x0e\\x1a\\xa4\\xd6\\x85\\x18\\xb2\\x2c\\x1a\\x96\\xd1\\xbd\\xbb\\x7d\\xf6\\x91\\xa5\\x65\\x2c\\xe4\\x8d\\x3f\\x15\\xaf\\x4d\\x33\\xc6\\x95\\x56\\xd5\\x9a\\xae\\x79\\x73\\x7b\\x09\\xc7\\x4d\\x3f\\xf8\\xde\\xe6\\xe5\\x4f\\x6f\\x2e\\xf7\\xb5\\x71\\x19\\x69\\x26\\x5e\\x6f\\x8f\\xd2\\x76\\xf4\\x50\\x7b\\xcb\\xe0\\x55\\x2d\\x6e\\x67\\x56\\x9e\\xb3\\x73\\xfb\\xe4\\xbe\\x7b\\x57\\x96\\x66\\x9b\\x7c\\x3e\\x4b\\xb2\\x96\\xcb\\x9d\\xb9\\x79\\xc2\\xe5\\x4f\\xac\\xe7\\x67\\xdc\\xf1\\xd9\\x76\\xe1\\x9c\\xf0\\x8d\\x49\\xbf\\x51\\x13\\xaf\\x09\\xea\\x39\\x8e\\x70\\xcb\\x01\\x8c\\x7e\\x7d\\x55\\xfb\\x9d\\xdf\\x09\\xff\\xec\\x9f\\x6f\\xcc\\xe0\\xf0\\x79\\xc5\\x9d\\x72\\xcc\\x2e\\x07\\x80\\x0d\\x72\\x83\\xa0\\x84\\x60\\xb0\\xf2\\xe6\\x60\\xd1\\xf9\\xae\\x03\\x26\\xc5\\xda\\xbb\\x25\\x65\\x4e\\xe5\\x68\\x89\\x04\\xcc\\x45\\x20\\x85\\x26\\x2a\\xa2\\x51\\x0b\\x9a\\x28\\x9d\\x26\\x78\\x66\\xfd\\x07\\xdf\\x7d\\x13\\x5f\\xff\\x49\\x88\\xc2\\x86\\xdb\\x71\\xa2\\x70\\x3f\\x37\\xf8\\x4b\\x13\\x49\\x20\\x05\\x52\\xb4\\x0f\\xf6\\x03\\xb0\\x75\\xdc\\x20\\x44\\x81\\x09\\xd2\\x45\\x5f\\x3f\\x18\\xa9\\x88\\xd9\\x98\\x12\\x29\\x61\\xb4\\x27\\xe0\\x87\\x4a\\x88\\x01\\xdb\\x15\\xf2\\x8f\\x69\\xb5\\x00\\xe9\\xa9\\x89\\x66\\xad\\x49\\x6b\\x8c\\x89\\x86\\x28\\xd0\\x98\\x54\\x2a\\xad\\xc3\\xa9\\x36\\x19\\xa8\\x52\\x11\\xd0\\xf6\\x4a\\x54\\x9b\\x64\\x48\\x67\\xb7\\x3a\\xfd\\x1f\\x2c\\xfb\\xf1\\xaf\\xf3\\x1e\\xb9\\xb2\\x01\\x71\\xf9\\xac\\xa2\\x99\\xbc\\xb9\\x7e\\xfb\\x63\\xf3\\x05\\x01\\x15\\x9e\\x8e\\x0a\\xbb\\x99\\x9f\\xee\\x11\\x86\\xbe\\xcc\\x9d\\x51\\x91\\x64\\xab\\xec\\xc8\\xfb\\x9c\\x1b\\xc4\\xf4\\xce\\x6b\\x7b\\xfb\\x6e\\x48\\x51\\x97\\xb4\\xcc\\x2f\\x9c\\x7b\\xcb\\x65\\x6e\\x24\\xfb\\x85\\x4c\\x34\\xe5\\x4f\\xce\\x71\\x4f\\x2b\\x34\\xe1\\x23\\xa8\\x77\\x4d\\xc8\\x76\\x37\\x64\\xeb\\x10\\x10\\xda\\x47\\xce\\xb0\\x3e\\xee\\x05\\x48\\x86\\x5e\\x19\\x64\\x5b\\x45\\x1b\\x45\\x09\\x37\\xa0\\x40\\x8e\\x51\\x8e\\xf5\\x03\\xa5\\x01\\x6b\\xc5\\xd8\\x05\\xd0\\xfd\\x3f\\x8c\\x13\\x41\\x38\\x1f\\x0e\\x00\\xc9\\x90\\x9c\\x9c\\x18\\x95\\x9c\\xa8\\x14\\x49\\x2d\\x2b\\x71\\xbb\\x4b\\x16\\x78\\x9d\\x25\\x9d\\x4a\\x0a\\x40\\x36\\x5e\\xb9\\x6e\\xd6\\x17\\xdc\\xb4\\xe5\\xa1\\xfe\\xad\\xa7\\xb6\\x94\\x21\\x56\\x6c\\x3d\\xb5\\x79\\xc9\\xc3\\x1b\\xea\\x43\\xce\\x29\\xac\\x7c\\x57\\x59\\x73\\x7f\\xc5\\xf8\\xf1\\x65\\xfd\\x13\\xd7\\x6d\\x09\\xc5\\xa7\\xe7\\xdd\\xb7\\xa6\\x7c\\xce\\xe0\\xd9\\x6d\\x2f\\x6e\\xfd\\xf6\\xd8\\x9c\\x8a\\xcb\\x1f\\x5c\\xc0\\xcf\\xf3\\x26\\xd5\\xad\\xbd\\xad\\xed\\xe5\\x8e\\xdb\\x2f\\xaf\\xd9\\xbd\\x59\\xe6\\x85\\x2b\\x01\\xd8\\x52\\x6e\\x10\\xc2\\x40\\x0f\\xa9\\x7c\\x32\\x87\\x7e\\x8b\\xeb\\xdf\\x1b\\x26\\xef\\x4d\\x78\\x38\\x40\\xb8\\x3e\\x3c\\x4e\\x3d\\x0e\\xc2\\x20\\xd4\\xa4\\x08\\xec\\x8b\\x4e\\x1b\\x4e\\x2d\\x54\\xed\\x2c\\xa6\\x6e\\x57\\x3a\\xb5\\x5f\\x89\\xb3\\xae\\x1b\\x3a\\xda\\x86\\xd8\\x76\\xc7\\xd9\\x7d\\x2b\\x56\\xf4\\xec\\xef\\xc9\\x42\\xcc\\x9a\\xf5\\x87\\x5e\\x6e\\x10\\xbb\\x1f\\xfc\\xe9\\xba\\xfe\\xeb\\x7e\\x3a\\xd6\\xcd\\xbe\\x3b\\xff\\x26\\x56\\xae\\x1d\\xec\\x1b\\x98\\x77\\xff\\xfa\\x6a\\x91\\xc6\\xb7\\x02\\xb0\\x26\\x6e\\x10\\x42\\x20\\x99\\xb7\\x01\\x07\\x80\\x1c\\x74\\x01\\x63\\xb4\\x15\\x24\\xa4\\x14\\x08\\x56\\x90\\xfa\\xb1\\xae\\xa2\\x5a\\x74\\x16\\xa5\\x17\\xfd\\xc6\\x77\\x17\\x79\\x72\\x78\\x22\\x3d\\xea\\xab\\x23\\xd3\\xc8\\xd5\\x82\\xfb\\x24\\x37\\x78\\x4a\\x98\\x2d\\xea\\xef\\x3b\\x01\\xd8\\x34\\x6e\\x10\\x82\\xc0\\xc2\\x1b\\xfd\\x3c\\xde\\xe5\\xb7\\x01\\x44\\xba\\xf7\\xc5\\x7c\\x2e\\xe2\\x55\\xe9\\x9e\\x3e\\xdf\\x81\\xef\\xe9\\x03\\xbe\\x72\\xd2\\x43\\xfa\\x7c\\xfb\\xc5\\xfb\\x55\\x8b\\xf7\\x9b\\x3e\\x72\\x96\\xf5\\x72\\x27\\x21\\x03\\x3c\\x7c\\xae\\x03\\x08\\x13\\x71\\x0b\\xa1\\x0a\\x4a\\x14\\x03\\xa0\\x00\\x8e\\x29\\xb8\\xae\\xdf\\xe4\\x08\\xb5\\xd6\\xbf\\xc5\\x7a\\x87\\x35\\xb0\\xc5\\x7e\\x43\\x1d\\xd8\\x63\\xa5\\xd6\\x40\\x75\\xa2\\xb1\\xd6\\x88\\xd6\\xa8\\xd7\\x3a\\xeb\\xf2\\x3d\\x13\\x37\\xbf\\xb2\\xb3\\x16\\x6b\\xb6\\x9f\\x5c\\xb7\\xe8\\xc1\\x0d\\xde\\xe0\\xb3\\x41\\x36\\xbe\\xbd\\xb8\\x7e\\x41\\x8d\\x19\\xd1\\xe2\\x5d\\x3e\\xc9\\x5c\\x53\\x9a\\xab\\x26\\xc2\\xcf\\xf8\\xfd\\x89\\xd4\\xba\\x5c\\x43\\xef\\xb1\\x73\\x3b\\x1e\\xde\\x71\\xee\\xc1\\x39\\xc5\\xcb\\xee\\x9c\\x5b\\xd0\\x51\\x66\\xf1\\xae\\x3f\\xda\\x7e\\xa2\\xfd\\x8e\\xf5\\xf5\\x18\\x14\\x95\\xa0\\x43\\xcb\\x1f\\x25\\x9b\\xb6\\x09\\x80\\x55\\x48\\xf4\\x36\\xf1\\x06\\x90\\xe1\\x46\\x17\\x27\\xa1\\x52\\x82\\x01\\x18\\xe7\\xa7\\xb3\\xc9\\xa2\\x16\\x69\\xe2\\x54\\x9b\\xd4\\x4e\\x56\\xf1\\x8d\\xa0\\x3e\\x7d\\x1a\\x87\\xbe\\x21\\x3b\\x7c\\xcb\\xb9\\x41\\xdf\\x41\\xd2\\x25\\xde\\xef\\x38\\x00\\xd3\\x49\\xf7\\xb3\\xf0\\x46\\x0e\\x47\\xa1\\x39\\x43\\x42\\xa4\\x3d\\x2c\\xa2\\x63\\xee\\xa8\\xf1\\xef\\x9b\\x68\\x74\\x8f\\xd3\\x6e\\xe1\\x05\\x2c\\x18\\xbe\\x05\\x73\\x84\\x57\\xb9\\xc1\\x17\\xcf\\x7f\\x78\\xea\\x14\\xb3\\x88\\xf7\\x9c\\x33\\x72\\x96\\xe5\\x70\\x83\\xa0\\x95\\x2c\\x38\\x01\\x0a\\x84\\x0e\\xc8\\x7c\\xe9\\xa7\\x6e\\x25\\xd6\\x9b\\xa3\\xac\\xb2\\x05\\x77\\x6a\\xfc\\x24\\xf5\\x43\\x7c\\x37\\xe5\\x7f\\x40\\xe2\\xdd\\x3c\\x38\\x67\\xfe\\xfd\\xeb\\xea\\xb8\\xef\\xb9\\x35\\x4b\\xdd\\x6d\\x25\\x66\\xe4\\x06\\x87\\xc3\\x7a\\xef\\x59\\x53\\x59\\xb0\\xe8\\x8e\\xf9\\xcb\\x37\\xa7\\xd4\\x75\\xe5\\x89\\xbf\\xb5\\x0f\\x80\\xbd\\xc4\\x0d\\x42\\xa8\\x88\\x6b\\x83\\x15\\x48\\x01\\xb1\\x8e\\x20\\xa2\\xa8\\x08\\x25\\x7a\\x44\\x6a\\xd4\\x91\\xd2\\x0f\\x29\\x25\\x5a\\xb8\\xd1\\x84\\x68\\x22\\xe6\\x9b\\x7f\\xf8\\x61\\x2b\\xae\\x47\\xab\\xa0\\x26\\x2a\\xe1\\x63\\xb2\\xea\\x01\\x21\\x97\\x1b\\xf4\\x4d\\xbd\\x0f\\x7d\\xbe\\x8d\\xc3\\xaf\\x49\\xb4\\xbe\\x17\\x80\\x4d\\xe4\\x06\\x81\\x83\\x58\\x3e\\x3a\\x00\\x94\\xb1\\x2d\\xc0\\x77\\x11\\x22\\x5a\\xb6\\x8a\\x14\\x71\\xe2\\xcd\\xe4\\xc4\\x70\\xdb\\xb9\\x93\\x27\\xb9\\x41\\x40\\xd8\\x0e\\xc0\\x5a\\xb8\\x41\\x08\\x17\\x7d\\xde\\x60\\x51\\x71\\x4a\\xde\\x25\\x20\\x10\\x1c\\xe0\\x18\\x11\\x29\\xe1\\xd7\\xd2\\x00\\x10\\x0e\\xe1\\x1a\\x8d\\x3a\\x52\\x21\\x4e\\x51\\xa3\\x11\\x37\\x4c\\x43\\x2d\\x54\\xa3\\xb6\\xa8\\xf1\\xd8\\xf1\\x97\\x30\\xe5\\xd3\\xf0\\x8f\\xd7\\xfd\\x29\\xfc\\x53\\x6e\\xd0\\xb7\\x93\\x2c\\xfb\\xa5\\x09\\x7f\\x24\\xeb\\x7c\\x55\\xe4\\x56\\xdf\\x8d\\x42\\xa8\\x54\\x4f\\x80\\xb0\\x19\\x80\\x95\\x4b\\x72\\x62\\xe0\\xf5\\x4a\\x42\\x80\\x60\\x1d\\x45\\x71\\xbe\\xe8\\x27\\x81\\x3a\\x52\\xa2\\xb5\\xc9\\x22\\x85\\xc2\\x50\\xe3\\x64\\xe5\\xdf\\x0b\\x36\\xfc\\xe1\\x07\\x7c\\x87\\xfc\\x40\\xbf\\x19\\x8e\\xe6\\x06\\x87\\x63\\xe9\\x57\\x40\\xa0\\x7d\\xe4\\x2c\\x1b\\xe0\\x4e\\x82\\x0e\\xd2\\x24\\x4f\\xe1\\xb7\\xa2\\x12\\xc9\\xc9\\x8e\\x8b\\x63\\x0f\\x92\\x67\\x23\\x22\\x1c\\xfb\\x05\\x61\\x90\\xb6\\x92\\x0d\\x94\\x6d\\x7e\\x61\\xcb\\xe6\\xe7\\x36\\x96\\x8e\\xf7\\x4c\\x59\\xb2\\x67\\xda\\x96\\x17\\xb6\\x94\\xfd\\x13\\xe3\\xcb\\x16\\x4c\\x6c\\x9e\\x5f\\x12\\x8b\\x18\\x57\\x32\\xbf\\x79\\xe2\\x82\\x32\\x3d\\x92\\xd5\\x1b\\xbf\\x3d\\x3e\\xbf\\xef\\xf8\\xd9\\x8d\\x8f\\x4f\\xbd\\x6d\\xcf\\x9a\\x96\\xec\\xbe\\xe3\\xdf\\x6d\\x24\\x13\\x6f\\x5d\\xdf\\xd8\\xb8\\xe1\\xf0\\xc4\\x27\\x26\\x1e\\xde\\xd8\\xd4\\xb4\\xe1\\xd6\\x89\\xb2\\xde\\x3b\\x0a\\xc0\\xb6\\x4a\\xf4\\xd5\\x8b\\x3e\\x2d\\x50\\x0e\\x09\\xd0\\x0b\\xbe\\x47\\xc0\\xa1\\x01\\xd0\\xc7\\xaa\\xc7\\x41\\x38\\x84\\x99\\xd4\\x0a\\x55\\xb4\\x03\\x45\\x05\\xe1\\x37\\x45\\xf6\\x80\\xff\\x65\\xb7\\xe0\\x1f\\xce\\xe1\\x57\\x0b\\x1e\\xdb\\xe6\\xf5\\x6e\\x7b\\x6c\\xc1\\x4f\\x3f\\x15\\x75\\x56\\x24\\x26\\x56\\x74\\x16\\xfd\\x44\\xd2\\x7d\\x6f\\x70\\x83\\x58\\xb2\\xec\\xe8\\xbc\\xde\\xdb\\x96\\x16\\xe3\\x73\\xd6\\xb2\\xe9\\xb9\\x9e\\xce\\x4a\\x1b\\x02\\x81\\x96\\x11\\x8e\\xdd\\xc3\\x9d\\x84\\xf1\\xe0\\x84\\x14\\xde\\x2e\\x79\\xd3\\x75\\x4a\\x05\\x81\\xea\\xdf\\x23\\x59\\x4a\\x80\\x64\\x4a\\x9d\\xd2\\x2a\\x83\\x15\\xbb\\xab\\x98\\x93\\x94\\x88\\x3d\\x80\\xf0\\x47\\x3d\\x43\\xb6\\x3a\\x2e\\xcb\\x9b\\xf5\\x9f\\x83\\xc2\\xe7\\xc6\\x4a\\xdb\\xd6\\x17\\x36\\xf1\\x88\\xf1\\xf9\\x53\\x97\\xee\\x6b\\xdd\\xf6\\xd2\\x96\\x32\\xfc\\x5e\\x5f\\xb6\\x68\\xca\\x94\\x05\\x7c\\x6c\\x2c\\xbf\\x60\\xca\\xd4\\x81\\x32\\x3d\\xe9\\xaf\\xbb\\x66\\xdb\\xb2\\xf4\\xbf\\xef\\xf9\\x59\\x15\\xbc\\xf0\\xf8\\x97\\x2b\\x1f\\x9f\\x76\\xf4\\xda\\xcb\\xdb\\xb3\\xfb\\x1f\\xfb\\x7e\\x33\\x99\\x72\\xc7\\xa6\\xe6\\xe6\\xcd\\x77\\x4c\\x7e\\xa2\\xee\\xa6\\x8d\\x13\\x27\\x6e\\xb8\\xb9\\x4e\\xa4\\xe1\\x0d\\x00\\x6c\\x2f\\x37\\x08\\x91\\x90\\x20\\xd2\\x70\\x9c\\x1c\\x99\\x09\\xe8\\x58\\xbf\\xfb\\x32\\xca\\xa6\\x49\\xa6\\x14\\x93\\x5f\\x77\\x5b\\xc6\\x10\\x11\\xb5\\x26\\xbc\\x40\\x47\\xb2\\xf6\\xc7\\x73\\xf8\\xea\\xc0\\x93\\x3b\\xea\\xed\\x55\\xdd\\x05\\x98\\x33\\x02\\xbe\\x9f\\x3e\\x2c\\x9c\\x55\\x9b\\x64\\xab\\xee\\x2d\\xf9\\x80\\xe4\\xf9\\x5e\\xe2\\x06\\xd1\\xbd\\xe0\\xb6\\xfe\\xba\\x55\\xdd\\x75\\x71\\xbe\\x9b\\x43\\xc9\\x2f\\xe6\\x92\\xf6\\x82\\xa2\\x0e\\xde\\x24\\xd7\\x61\\xcd\\x1e\\xf9\\x96\\x5d\\xce\\x9d\\x84\\x12\\x70\\xf2\\x99\\x97\\xe6\\x55\\x08\\x09\\xc4\\xbf\\x2f\\x04\\x0d\\x0a\\xf3\\x73\\x5d\\x19\\x69\\x89\\x51\\xe9\\x0a\\x09\\x74\\x8f\\x66\\x54\\x2e\\x32\\xbe\\x17\\xd2\\x29\\x16\\x73\\x3a\\xb3\\x3b\\x65\\xd6\\xa4\\x57\\x3a\\x1a\\x17\\xf0\\x53\\x8f\\x6e\\x6e\\x6e\\xbe\\xe2\\xe1\\xee\\x79\\x8f\\x5c\\xd9\\x84\\xe7\\x38\\x6b\\x79\\x67\\x49\\xee\\xf4\\x72\\x5b\\xce\\xe4\\x05\\x05\\xed\\x77\\xac\\xab\\x9b\\xb8\\xe3\\x44\\x4f\\xf9\\x96\\x55\\x73\\x27\\xa4\\xe2\\x3f\\xb9\\xcc\\xa6\\xf9\\xa5\\xb9\\x1d\\x55\\x49\\xb8\\x22\\xa7\\xb1\\x30\\x4d\\x13\\x5b\\x37\\x7f\\x77\\x47\\xc7\\xb5\\x73\\xf3\\x4a\\x97\\x1d\\xe9\\x71\\xb7\\x97\\x25\\xc6\\xe7\\xd6\\x67\\x3a\\xbd\\x79\\xc9\\x6a\\x7d\\xe3\\xc2\\xbd\\x1d\\x5d\\xfb\\x67\\x39\\xe3\\x72\\x26\\xcc\\x5e\\xeb\\x2d\\xeb\\x2e\\x35\\xc5\\x39\\xbd\\x80\\x90\\x0d\\xc0\\x6e\\x96\\xb0\\x9b\\x9e\\x8f\\x11\\xb5\\xf5\\x05\\x23\\x29\\x1b\\x32\\xbf\\x4b\\x23\\x87\\x51\\xd9\\xcd\\x42\\xe9\\x90\\x50\\xc1\\x2e\\x63\\xdf\\x9c\\x8f\\x66\\xdf\\x9c\\x92\\xfd\\xf8\\x4d\\x23\\x67\\x59\\x1d\\x37\\x08\\xb1\\xa2\\xfe\\x67\\x94\\x48\\xdc\\xee\\xa7\\x4d\\xa5\\xc8\\xf2\\x10\\x0b\\xb1\\x56\\xad\\x95\\x13\\x29\\x12\\xd0\\xac\\x1a\\xa7\\xc6\\x2f\\x90\\x1a\\x56\\x43\\xb0\\x6a\\xdd\\x43\\x0b\\xfb\\x06\\xd7\\x55\\x21\\x39\\x4b\\xd0\\x58\\xd8\\x5a\\x50\\x38\\xbd\\xd8\\x88\\x84\\x1b\\x1c\\xce\\x1a\\x78\\x6c\\x4b\\x4d\\xcd\\xe6\\xc7\\x16\\xd1\\xd7\\x86\\xb3\\xca\\x07\\x9a\\xd3\\xd2\\x9a\\x07\\xca\\xe9\\x6b\\x80\\x90\\x05\\xc0\\x6e\\x90\\xe2\\x07\\x5a\\x3e\\x52\\x9c\\xfb\\x98\\x69\\xcb\\x51\\x03\\x93\\x08\\x31\\xc9\\x2c\\xcc\\x40\\x85\\x50\\xfc\\x85\\x50\\x82\\x0a\\x5c\\xc0\\xca\\x7f\\x11\\xc1\\x01\\x20\\x64\\x02\\xb0\\x7b\\x24\\x3d\\x6d\\xe4\\xc7\\x07\\x73\\x04\\x01\\xeb\\x18\\x95\\x54\\x21\\x91\\x79\\x2c\\x52\\x1d\\xa9\\x56\\x4b\\x86\\x5c\\xe3\\xa4\\x16\\x2a\\x65\\xed\\x34\\x4e\\xda\\x33\\xf7\\xe3\\xc7\\xbf\\x3c\\x78\\xe0\\x8b\\xc7\\x3f\\x9e\\x7b\\xed\\x13\\xf8\\x2f\\xfa\\xc7\\x5f\\x9a\\xe8\\x4b\\xc3\\x79\\xdc\\xe0\\x70\\x1d\\x3d\\x21\\xd3\\x24\\x0f\\x80\\xdd\\x27\\xd9\\xb0\\x04\\x3e\\x3e\\x48\\x41\\xa9\\x78\\x73\\x8a\\x63\\xef\\x1d\\x19\\x29\\x27\\x32\\x25\\xe5\\x2f\\xff\\x4f\\x06\\x30\\x06\\xf5\\x42\\x17\\xde\\x25\\x7c\\x25\\x7c\\x2c\\x7c\\x2c\\x7c\\x8e\\x77\\x09\\xdd\\x18\\x4b\\xf7\\x12\\x83\\x2f\\xdd\\x67\\x26\\x76\\xdf\\xbb\\xe4\\x1f\\xe4\\x0d\\xf9\\x37\\xd2\\x00\\xd8\\x11\\x6e\\x10\\x54\\x10\\xcf\\xc7\\x2a\\xa8\\x34\\xff\\xb1\\x64\\x88\\x8c\\x1c\\x25\\x03\\xb5\\x50\\x34\\x91\\xb9\\x98\\x81\\xa1\\x42\\x3e\\x39\\x4d\\x84\\x22\\x0c\\x25\\xff\\x21\\x8f\\x0e\\xb7\\xfb\\xfe\\x45\\xd4\\xf4\\xa0\\x74\\xbf\\x59\\x00\\xac\\x43\\xd2\\xd9\\xc9\\xbc\\x2d\\x08\\x09\\x65\\x52\\x54\\x0e\\xfc\\x56\\x57\\x36\\x35\\xad\\x7e\\x12\\x47\\xca\\x9c\\x21\\xda\\x1a\\xbb\\xe8\\xf1\\xea\\x70\\x3d\\xf9\\x68\\x58\\x89\\xe4\\x25\\x5f\\x31\\xfd\\x10\\x4f\\x9e\\xbc\\x95\\xd5\\x9c\\xba\\x45\\x8a\\xaf\\xdf\\x28\\x3c\\x49\\x2b\\x15\\x57\\xfb\\xbd\\x67\\x0a\\x52\\x1a\\x15\\x90\\x10\\x29\\x4e\\x2e\\x22\\x27\\x1c\\xe3\\x3d\\x5b\\xd4\\x4e\\x09\\x30\\x55\\x3e\\xf7\\x9c\\x30\\x05\\xef\\xe1\\xfe\\xfa\\xf3\\xd1\\x3f\\x2a\\x5f\\x0f\\xc4\\xb7\\xb9\\xd1\\xf8\\x36\\x02\\x2e\\x11\\x0d\\x38\\xf8\\xe3\\xdb\\x1a\\x27\\x5a\\x4e\\xbf\\x4f\\x4a\\x3f\\xe0\\x06\\x7f\\x7e\\x53\\xfa\\xdd\\x6b\\x84\\x27\\x69\\xe1\\xe8\\xef\\x02\\x50\\x02\\xb4\\x0b\\x08\\x22\\x99\\x22\\x2a\\xc4\\x56\\x40\\x82\\x63\\xbc\\x76\\xb5\\xc9\\xe5\\x54\\x5b\\xf0\\x1a\\xbc\\x57\\x98\\xfc\\xfc\\xf3\\x8a\\xab\\xff\\x93\\xf9\\x47\\x85\\x14\\xc3\\xff\\x80\\xdc\\xc3\\x88\\x44\\x67\\x3d\\x1f\\xa3\\x44\\xd9\\x9a\\x8f\\x09\\xaf\\xcb\\x56\\x17\\x25\\x8f\\x86\\xda\\x95\\x78\\xd7\\x9f\\xb1\\xe4\\x2e\\x2c\\x7e\\xf5\\xe1\\xa8\\x28\\x72\\x0f\\xe5\\x86\\xcf\\xe3\\x2b\\x93\\x27\\x4b\\xb1\\xc8\\x0a\\x96\\x2a\\x79\\x34\\xbf\\x9b\\x27\\xe0\\x44\\x21\\x4b\\x1d\\xbe\\x8c\\x5e\\xf7\\xc4\\x13\\xd2\\x1a\\x6e\\x60\\xc7\\x69\\x1b\\x77\\x0a\\x28\\xa4\\x79\\x07\\xd3\\xc7\\xe6\\x97\\x0a\\x7f\\x2f\\xbf\\x24\\x27\\x1c\\x44\\xdf\\xaa\\xed\\x29\\xc1\\x87\\x6a\\x76\\x1c\\xd5\\x92\\x8d\\xda\\x36\\x72\\x96\\x95\\xb1\\x06\\x29\\xff\\xf7\\x07\\xef\\x60\\x64\\x53\\x0b\\x1f\\x9c\\x89\\x0a\\x25\\x45\\x50\\x90\\x3a\\x7d\\xe0\\x0b\\xa7\\x20\\xa2\\x87\\x2d\\x9e\\x4e\\x02\\x4a\\x90\\x50\\x1c\\x00\\x04\\xa5\\x02\\x95\\x3d\\x40\\x88\\x14\\x6d\\xae\\xf6\\x06\\xa1\\x42\\x01\\xed\\x2a\\x8e\\xf8\\xfd\\x93\\xd4\\xdf\\x1f\\xaa\\x42\\x8e\\x2b\\xf2\\x5f\\x20\\xab\\x84\\x56\\x3e\\x3a\\xd5\\x01\\xe0\\xcc\\x72\\x78\\x52\\x3d\\x90\\x02\\xc9\\x89\\x51\\x16\\x9b\\x3d\\x58\\x15\\xeb\\x30\\xd9\\x6c\\xf6\\x40\\xd8\\x29\\xd1\\xe9\\xfc\\x55\\xf4\\x5a\\x1d\\x15\\xad\\xd3\\x4a\\xc1\\x29\\x97\\xc5\\xac\\x90\\x12\\x84\\x13\\x82\\xc3\\xb8\\xd8\\x92\\x09\\xad\\xce\\xa9\\x3b\\x7b\\x72\\x91\\x7e\\xff\\xc0\\xd2\\xcb\\x32\\x6b\\x32\\x63\\x86\\x0a\\x16\\xdf\\x7e\\x59\\xe7\\x6d\\x2b\\x2b\\xb4\\x51\\xbe\\x33\\xe9\\xcd\\xa5\\x19\\xe1\\xd7\\xef\\xdd\\x19\\x9d\\x56\\x19\\x95\\x9b\\x10\\x97\\x66\\x8e\\xca\\x9a\\xb6\\xbc\\xf2\\xfe\\x47\\xab\\xa7\\xce\\xd6\\x25\\xe5\\x26\\x94\\xac\\x98\\x91\\x97\\x31\\x63\\xe7\\x0c\\xc1\\x50\\xbd\\xcc\\xa1\\xbe\\x4f\\x67\\xcd\\x8c\\xfd\\x53\\xc7\\x34\\x93\\x27\\x39\\x46\\xa4\\xdb\\x2d\\x23\\x67\\xd9\\x44\\x05\\x80\\x16\\xec\\x70\\xab\\x77\\x30\\xb6\\xa9\\x85\\x1f\\x17\\x86\\x8c\\x26\\x18\\x08\\xc7\\x54\\x08\\x1c\\xad\\xd3\\x5f\\x74\\x04\\x39\\x2a\\x52\\x50\\x1c\\xa8\\x07\\x42\\x8a\\x45\\xdc\\x2e\\xd9\\x07\\x29\\x28\\x01\\xed\\x22\\x04\\x12\\x89\\x26\\x67\\x0c\\x13\\x2e\\x1d\\x82\\x58\\xe4\\x0d\\xf8\\xb4\\x12\\x6d\\x13\\xc6\\x9c\\x94\\x19\\xf7\\xe2\\x11\\xad\\xad\\x7c\\x90\\x35\\xd9\\xa2\\xd6\\x24\\x4a\\xe6\\x50\\x32\\x2b\\x36\\xbb\\x52\\x84\\x96\\xfe\\x90\\xb5\\x9c\\xc8\\x57\\x28\\xd5\\xfe\\x90\\x35\\x9b\\xe8\\xee\\xbb\\x65\\x4e\\xcf\\x9e\\x9c\\x90\\x77\\x87\\x9c\\x3b\\x3a\\xe6\\x1e\\xec\\x73\\x0f\\xc5\\x7a\\x3a\\xab\\xa6\\xf4\\x8d\\x1f\\xbf\\x60\\x6a\\x45\\x47\\x7e\\x1c\\x51\\xaf\\x7c\\x79\\xef\\xc4\\xaa\\xb2\\xa5\\x0a\\xf0\\xbd\\x59\\xc0\\x37\\xef\\xfd\\xd3\\xea\\x9a\\x8d\\xdd\\x9e\\x86\\x12\\xa1\\xb4\\xa4\\xc9\\xdd\\xb9\\xb1\\x4e\\xd6\\x41\\x1b\\x46\\xce\\xb0\\x7c\\xd6\\x00\\x0e\\x98\\x1f\\xf0\\x67\\x19\\x87\\x1c\\x93\\xf8\\x80\\x43\\xe8\\x0f\\x98\\xc6\\x6a\\x29\\xec\\x18\\x08\\x51\\xeb\\xff\\x97\\x71\\x35\\xa4\\xbe\\x95\\xd7\\x20\\x98\\x8d\\xf1\\x7a\\x9d\\x36\\x34\\x58\\xc1\\x81\\x03\\x1d\\x4a\\x7f\\x74\\xd2\\xee\\x8c\\xbe\\x00\\xf5\\x24\\xe6\\x50\\x5a\\x72\\xc7\\x40\\x16\\xb2\\x34\\x75\\x12\\x6f\\xc5\\x4f\\xb1\\x76\\xed\\x6d\\x6d\\x6b\\x9f\\x58\\x57\\x52\\xb2\\xee\\x89\\xcb\\xbb\\x8f\\xae\\x2a\\xc7\\x4f\\xd1\\x54\\x3c\\x39\\xdb\\x3b\\xab\\x30\\x36\\xb6\\x70\\xd6\\xdd\\xf1\\xd9\\x15\\x49\\x0d\\x57\\xf6\\x16\\x4e\\xbd\\xf6\\x85\\x85\\x89\\x0b\\x4f\\xed\\x9f\\x56\\xd8\\x77\\x5d\\x6b\\x6a\\x43\\xbe\\xb9\\xa8\\x67\\x5d\\x69\\x62\\xd9\\xba\\x9e\\x22\\x91\\x07\\xd6\\x8c\\x9c\\x65\\x69\\x7e\\x1e\\xd8\\xc1\\x8f\\x53\\x21\\x07\\x09\\x06\\xc2\\xb8\\x30\\x7f\\xd6\\x5c\\xde\\x6b\\xc4\\xe2\\xd1\\x7d\\xa9\\x16\\xb7\\xf4\\x42\\xba\\x3c\\xb0\\xd7\\x97\\x0c\\x21\\xa4\\x68\\x74\\xeb\\x2b\\xa9\\xb4\\xd7\\x17\\x4e\\x8e\\x66\\xd5\\xc7\\x8c\\xb8\\x78\\xaf\\xe5\\xca\\x85\\x68\\x9d\\xda\\xa9\\xb6\\xf8\\xa3\\x4d\\x81\\x8c\\x8e\\x5b\\x6d\\x93\\x65\\x67\\x4d\\xe1\\xc0\\xc1\\x9e\\xd6\\x2b\\x9c\\xe7\\xde\\x0d\\x75\\xee\\x9e\\xd9\\x7d\\xcb\\xc2\\xa2\\xa1\\xf8\\xa2\\x99\\x65\\x13\\xe7\\x26\\x24\\xcc\\x6b\\x2c\\x9f\\x59\\x34\\x9e\\x58\\xd7\\xbc\\xba\\xb7\\xa9\\xc8\\x43\\x92\\x7e\\x81\\xfe\\x92\\xf2\\x49\\x7b\\x5f\\x5e\\x5e\\xbb\\xa1\\xd3\\x5d\\x5d\\x88\\x6f\\x15\\x54\\xe5\\x75\\x6f\\xaa\\xf5\\xe7\\x22\\x5a\\x58\\x83\\x88\\xcc\\x80\\xe7\\x8b\\xf4\\x71\\x84\\x92\\xd1\\x08\\x7b\\x97\\x12\\xfd\\x30\\xb7\\x5a\\x06\\x98\\x0a\\x99\\xc1\\x4d\\x46\\x04\\x9b\\xd5\\xe8\\x30\\x39\\x62\\xa2\\x23\\xd5\\xa1\\xc1\\x90\\x80\\x09\\x2a\\x55\\x94\\x83\\x1b\\xbb\\x6b\\x5a\\xad\\x49\\x04\\x02\\x52\\x20\\x4c\\xca\\x44\\x98\\x5c\\xe9\\x94\\xec\\x5b\\x79\\xea\\xea\\x86\\x49\\x3b\\x1f\\xeb\\x5d\\xfe\\xf0\\xaa\\x62\\x5f\\xa4\\x22\\xbb\\x79\\x41\\x69\\xfb\\x0d\\x99\\x9b\\xe2\\x26\\xf6\\x5f\\xd9\\x9f\\x3d\\xb5\\x22\\x23\\x18\\xcf\\xd3\\x84\\xc2\\xf6\\xa8\\xa6\\xab\\x9e\\x5e\\x98\\xbc\\xf1\\x2f\\x7b\\x1b\\x1a\\x77\\x9f\\x5c\\x36\\xbb\\xa4\\xaf\\x31\\xad\\xa6\\x64\\xb5\\xbd\\xd6\\x63\\xa1\\x87\\x13\\x2b\\x7b\\x4a\\x22\\x33\\x5b\\xab\\x52\\x00\\xe1\\x0a\\x00\\xb6\\x52\\x91\\x06\\xb1\\xe0\\xe6\\x73\\xc2\\x90\\x92\\x70\\x44\\x2a\\x95\\x8a\\x50\\x24\\xb4\\x87\\x93\\x4a\\x8f\\x18\\x22\\x96\\x78\\x95\\x28\\x45\\xf5\\x64\\xd8\\xa2\\xd6\\x58\\xad\\x6a\\xb5\\x4a\\xf4\\x5c\\x45\\x00\\xe4\\xf2\\xd3\\x5b\\x29\\xe7\\x33\\xb5\\xa2\\xa7\\x85\\xf7\\x08\\x1f\\xa2\\xa5\\x64\\xc5\\x9d\\xf3\\x2a\\xd7\\x56\\x68\\xed\\x73\\x4b\\x37\\xae\\xc0\\xbd\\x42\\x3f\\xbd\\xe2\\xc1\\xf2\\x79\\x87\\x17\\x78\\xb4\\xe1\\x4f\\x85\\xa8\\x57\\x2f\\x2a\\x7f\\x70\\x78\\x25\\x10\\xb8\\x5c\\x98\\xca\\x5c\\xac\\x01\\xec\\xe0\\x81\\x6b\\x65\\xb6\\xd1\\xa9\\x50\\x01\\x59\\x99\\x84\\x53\\x24\\x20\\xe3\\xa2\\x91\\x32\\x2d\\x12\\x2a\\xc5\\x3f\\x55\\xa8\\xc0\\xdf\\x38\\xe3\\xd7\\x2d\\x46\\x10\\x35\\xaa\\xa8\\x4c\\x24\\xbd\\x22\\xa7\\x01\\xc5\\x0d\\x90\\xa4\\xa7\\x54\\x94\\xb2\\x44\\x10\\x57\\x04\\x7e\\xcd\\xfb\\x3b\\xc3\\x5a\\xf9\\x60\\x6b\\xb2\\xdd\\x6e\\xd5\\x48\\xd1\\x84\\x00\\x4b\\xb9\\x9d\\xea\\x40\\xa2\\xcb\\xed\\xd7\\x1a\\xae\\xdf\\xe1\\xb0\\xcb\\x8b\\x16\\x1f\\x9e\\xd5\\xb5\\xcb\\x19\\xfc\\x6e\\xcd\\xc6\\x87\\xfb\\x52\\x17\\x0e\\xf4\\x26\\x2e\\x2e\\xba\\xda\\x5b\\xd8\\x5d\\x61\\x75\\x5e\\xd9\\xde\\x73\\x68\\x71\\xd1\\x39\\x43\\x71\\x57\\xd9\\xa4\\xb9\\x09\\xc6\\xb9\\x4d\\x65\\x5d\\x25\\x09\\x32\\xc7\\x95\\x15\\xf7\\x9d\\xff\\x6c\\xc1\\x5d\\x4b\\x8b\\x34\\x8e\\xca\\xac\\xdd\\x35\\xc5\\xe6\\xb2\\xae\\x92\\xda\\xbc\\xc2\\x00\\xff\\x55\\xe6\\xe3\\x3f\\x3c\\x15\\x12\\xff\\x21\\xdc\\x24\\xfa\\x93\\x0a\\x00\\x1d\\x4c\\xe0\\x83\\x01\\x09\\x68\\x10\\x09\\xa9\\x93\\xa5\\x2a\\x1a\\x18\\x2b\\x1e\\x85\\x9c\\xd5\\x01\\x0f\\x41\\x2f\\x79\\xc8\\x17\\x84\\x51\\xae\\x2d\\x2b\\xc2\\xfa\\xd6\\x47\\xd4\\x1a\\xab\\xd6\\x2c\\x01\\x3b\\xbf\\x82\\x54\\x5b\\xd4\\x01\\x15\\x29\\x7a\\xa3\\x3b\\xf2\\x0e\\xf7\\x4c\\xbe\\x7a\\x56\\xde\\x50\\x82\\x67\\x62\\x4e\\xc3\\x4a\\xdb\\xd0\\x10\\xbd\\xad\\xa9\\x2d\\x7b\\xde\\xed\\x4b\\x7c\\xb3\\xc9\\x81\\xe2\\xd6\\xfc\\xf8\\x52\\xf7\\xf0\\x77\\x0a\\xd9\\xf7\\x7b\\x0d\\x80\\x35\\x73\\x6f\\x42\\x10\\x68\\x21\\x8d\\x4f\\x09\\x14\\x19\\x5d\\xc8\\x21\\x97\\x48\\x33\\x0a\\x04\\x9d\\x12\\x2d\\x52\\xec\\x42\\xa2\\xf5\\x68\\xe4\\x62\\x6c\\x00\\xfe\\x35\\x52\\x8a\\xa5\\xc3\\xeb\\xb0\\x49\\x18\\xc4\\xc2\\x9a\\xd2\\xb2\\xda\\xda\\xb2\\xd2\\x1a\\x96\\x3f\\x7c\\xd5\\xa9\\x53\\xe4\\x3e\\xfc\\x28\\xaf\\xb6\\x36\\x2f\\xaf\\xb6\\x56\\xfe\\xed\\xf7\\x05\\x2f\\x9d\\xc3\\xbd\\x09\\x3a\\xb0\\x80\\x8b\\xcf\\x0e\\x41\\x42\\x83\\x25\\xca\\x04\\x76\\x5a\\x76\\xf9\\xe4\\x59\\x04\\xdc\\xc0\\x5a\\xac\\x4f\\xb4\\x68\\x2b\\xad\\x81\\xc8\\x97\\xdf\\x60\\xb8\\x65\\x40\\xee\\xba\\x78\\x36\\x98\\x41\\x52\\x0a\\x17\\xdd\\x3e\\xcf\\xd9\\x99\\x19\\x1e\\x9e\\x91\\x95\\x16\\x9a\\xd6\\x58\\x60\\x12\\x5e\\xc4\\xc4\\x0b\\x33\\x3b\\x7f\\xfc\\xb2\\x03\\xf3\\x72\\x94\\xc1\\xcf\\x51\\x8e\\x62\\xb4\\x73\\x4a\\x09\\xdd\\x72\\x61\\x9a\\x08\\x37\\x03\\xb0\\x5d\\x0a\\x80\\x50\\xa8\\x7c\\x44\\x0a\\x87\\x48\\x15\\x06\\xe2\\xc6\\xa9\\x65\\x75\\x48\\x48\\x49\\x20\\x32\\xa2\\xe7\\x75\\x12\\x98\\x91\\xbe\\x5e\\x74\\xa6\\xf5\\xc4\\x6f\\x47\\x4d\\xc2\\x36\\x0d\\x0d\\xcd\\xc6\\x62\\x34\\x0a\\x1d\\xf8\\xa9\\xf0\\x16\\xbe\\x7b\\xb9\\x70\\x44\\x01\\xc3\\x2b\\x16\\xe1\\x44\\xa1\\xd8\\x77\\x05\\x20\\xbc\\x08\\xc0\\xda\\x14\\x00\\x41\\x50\\x72\\x81\\x5f\\x24\\x92\\x14\\x5f\\xb4\\x31\\x7a\\x3e\\x0a\\x00\\x18\\x02\\xeb\\x1a\\x7b\\xb8\\xf5\\x91\\xd1\\x78\\xde\\x85\\xfd\\x7a\\x91\\xd4\\x62\\xdd\\xf0\\x02\\x6c\\x11\\xee\\x54\\xc0\\x2f\\xa7\\x4e\\x9d\\x62\\x4b\\x24\\x7b\\x38\\x19\\x80\\x2d\\x63\\x0d\\x90\\x08\\x8b\\x64\\x21\\x0d\\x55\\x22\\xa1\\x60\\x8a\\x21\\x84\\x8a\\x18\\x4b\\xfa\\xaa\\xf4\\x7f\\xf5\\xcb\\x71\\xb4\\x1c\\x25\\x55\\x29\\x91\\x8a\\x9c\\xaa\\x60\\xc4\\x3f\\x9d\\x38\\x15\\x2a\\x95\\x25\\x5e\\xf9\\xb4\\x2c\\xe7\\x81\\x93\\xad\\x52\\xd5\\x48\\x22\\x24\\x6a\\x2c\\x1a\\x8b\\x36\\xd1\\x12\\xa4\\xd2\\x3b\\x50\\x27\\x32\\x73\\xb4\\x6e\\x0c\\x4b\\xdb\\xfc\\x1c\\x3d\\xfa\\x01\\xad\\x0a\\x63\\x5f\\x7d\\x65\\xbb\\xce\\x38\\xab\\xda\\xd5\\x5a\\x62\\xf9\\x87\\xdb\\x91\\x9c\\x19\\xf2\\xae\\x33\\x35\\x25\\x33\\xec\\x1f\\x2c\\x7f\\x71\\x49\\xb5\\x3b\\x3f\\xa7\\xc8\\x52\\xbf\\x7c\\xd2\\xf0\\x37\\x34\\xa6\\x34\\xcb\\x6e\\x1c\\x7e\\x92\\xc6\\x94\\x38\\x13\\x13\\x86\\x1f\\x63\\xf9\\xb2\\xcd\\x17\\x65\\x91\\x67\\x0d\\xa0\\x83\\x59\\xf2\\x02\\x44\\x8e\\x83\\x28\\x89\\xed\\xf4\\xd2\\x17\\x26\\x7f\\xf1\\xaf\\x4f\\x23\\x49\\xa1\\x14\\x64\\x1a\\x23\\x9b\\x3a\\x0e\\x19\\x2b\\xf9\\xb5\\xd4\\xb6\\xf2\\x61\\x20\\xca\\xb9\\x4e\\x63\\xd5\\x5a\\xa4\\x08\\x94\\xee\\xb7\\x64\\x14\\x97\\x8c\\x2b\\x38\\xda\\x3b\\xe9\\xca\\x1e\\xb7\\x24\\xa3\\x8d\\xcb\\x12\\xcf\\xb1\\xfc\\xeb\\x9a\\x5b\\x33\\x7b\\x6f\\x5d\\xec\\x9b\\x4e\\x0e\\x95\\xb7\\xe5\\xea\\xaa\\x0a\\x87\\xff\\x23\\x4d\\x9a\\xc0\\xc2\\x91\\x33\\x6c\\x3a\\x6b\\x90\\x6a\\x06\\x8b\\x03\\xe5\\x2d\\xfe\\x58\\x48\\xf5\\xa8\\x60\\x54\\xa2\\x54\\xde\\xf2\\xab\\xe3\\x35\\x58\\xdf\\x7a\\x22\\x39\\x59\\x2e\\x6f\\xf9\\x5f\\xaa\\x05\\x17\\x56\\x6e\\x7c\\x7c\\xf9\\x8a\\x3f\\x6e\\xac\\xa8\\x90\\xdf\\x2b\\x87\\x12\\x4a\\x67\\x55\\x96\\xf7\\x94\\x26\\x24\\x94\\xf6\\x54\\x56\\xcc\\xe2\\x13\\x88\\x7d\\xd9\\x2b\\xfb\\x27\\x4f\\xde\\xff\\xca\\x32\\xed\\xf2\\x57\\xf6\\x4d\\x9e\\xbc\\xef\\x95\\xe5\\x75\\x9b\\x7a\\x3c\\x9e\\x9e\\x4d\\x75\\xda\\x9a\\x4d\\xdd\\xf9\\xf9\\xdd\\x9b\\x6a\\x80\\xc0\\xcd\\x42\\x27\\x6b\\x90\\xe6\\x6d\\x87\\x6e\\x09\\x64\\x92\\x31\\xb0\\x33\\x80\\x3b\\x02\\x40\\xa3\\xe4\\x02\\x2a\\x14\\xd1\\x43\\x29\\x4a\\x80\\x42\\x3a\\x7e\\x31\\x02\\x1d\\x33\\xe2\\x37\\xb1\\xa3\\x28\\x60\\xba\\xdf\\xc3\\x8e\\x0d\\x79\\x7d\\x07\\x7a\\xa7\\x5f\\xed\\x1c\\xfa\\x20\\x38\\x67\\xf7\\xcc\\x39\\x07\\xfb\\xf2\\x86\\x0c\\xc5\\x9d\\x65\\x4d\\x73\\x0d\\x86\\x39\\x93\\xca\\x3a\\x8b\\xc6\\x93\\xc8\\xe5\\xaf\\xec\\x9b\\x54\\x98\\x27\\x00\\xf7\\xde\\x82\\xe2\\xf2\\xa6\\x3d\\x7f\\x5a\\x53\\xbb\\xb1\\x2b\\xaf\\xc2\\x23\\xc4\\xe7\\x55\\xe5\\x8b\\x0a\\x5d\\xda\\x93\\xcb\\x85\\x4e\\x96\\xe6\\x5f\\xdb\\x6a\\x3f\\xae\\x1e\\x03\\xac\\x28\\x93\\x70\\xb5\\x0a\\x39\\x1c\\x73\\x64\\x14\\x57\\x07\\x80\\x74\\xf5\\x05\\x74\\xe4\\x0d\\x98\\xbd\\x04\\xd9\\xec\\x8d\\x45\\x62\\x17\\x8d\\xf8\\x4d\\x0c\\xe5\\x76\\xaa\\x2d\\xea\\xdf\\xb3\\x70\\xf9\\x0b\\x0f\\xcf\\xe9\\xb8\\x2a\\x27\\xf4\\xad\\x21\\xe7\\x15\\x2d\\xb3\\x0f\\x2d\\x2c\\x18\\x1a\\x2f\\x2e\\xb9\\xd7\\x68\\x9c\\x33\\xa1\\xbc\\xb3\\xd8\\x40\\x6c\\x6b\\x5e\\xdd\\xd3\\x54\\x5a\\x38\\xef\\x17\\x1b\\x9e\\xcf\\xf5\\x4c\\xda\\xf7\\xf2\\xf2\\xda\\x4d\\xdd\\x9e\\x72\\x0f\\x9e\\xcb\\xe5\\x3d\\xdd\\x9b\\x6b\\x01\\x31\\x0b\\x80\\xd5\\xb2\\x06\\x88\\x84\\xb9\\x72\\x3e\\x32\\x34\\x82\\x23\\x08\\x21\\x0a\\x42\\x50\\xd2\\x0d\\xe2\\x57\\xea\\xff\\xda\\x2a\\x0f\\x89\\x14\\xb5\\x61\\x3b\\x95\\x65\\x27\\xa0\\xa6\\xa2\\x81\\xd2\\x12\\xaf\\x74\\x86\\xe1\\x85\\x13\\xad\\xfc\\x38\\x02\\xe3\\xc2\\xc3\\x42\\x83\\x94\\x10\\x49\\x22\\x39\\x55\\x94\\x03\\xb3\\x0d\\x44\\xa7\\x0c\\x08\\xbf\\xb8\\xa5\\x74\\xd3\\xf8\\x7c\\x57\\xea\\x38\\x73\\xff\\xfc\\x95\\xfb\\x2c\\x43\\x1f\\x87\\x94\\x1d\\x67\\x0d\\x4c\\x15\\xa4\\x38\\x13\\x3b\\xab\\xd5\\x37\\x9d\\xe5\\xdf\\xd5\\x22\\xe5\\x39\\xf6\\x8d\\x9c\\x61\\xd5\\xac\\x01\\x0a\\xa0\\x5b\\x96\\x96\\xc4\\xdf\\x09\\x7e\\x55\\x8f\\x0d\\x7e\\xe9\\xff\\x87\\x61\\x52\\x61\\x68\\x68\\x7e\\x5e\\x8e\\xf3\\xf7\\xc2\\x64\\xbf\\x55\\x76\\x2c\\xef\\x8a\\x04\\x14\\xe9\\xf4\\x68\\x4f\\xcf\\x84\\xce\\x9b\\x16\\x16\\x16\\x2f\\xb9\\xbd\\xb7\\xef\\x9e\\xe5\\x25\\x43\\xf1\\x79\\x93\\x72\\x73\\x1b\\x73\\x62\\x35\\x39\\xd3\\x6b\\x7b\\x8f\\x2c\\x29\\x2e\\x5b\\x7d\\xcf\\x65\\xcb\\x1f\\x5e\\x5d\\xf2\\x35\\x4d\\xaf\\x69\\x49\\x5b\\xb8\\x14\\xad\\xfa\\x34\\xab\\x71\\x5c\\x54\\x5e\\xc3\\x9c\\x8a\\xb2\\x15\\x6d\\xae\\xdc\\x19\\xeb\\x6a\\x8c\\x05\\xe9\\x7a\\x9d\\x35\\x5b\\xaf\\x4f\\x4d\\x1c\\x1f\\x16\\x99\\xdb\\x30\\xbf\\xa6\\x66\\xe5\\xb4\\xcc\\x92\\xde\\x4d\\xe5\\xd9\\x55\\x0e\\x8d\\x17\\x10\\x36\\x8f\\x9c\\x61\\xc5\\x1c\\x0f\\x09\\xd0\\xc3\\x07\\x8f\\x43\\x82\\x11\\x48\\x25\\xcc\\x21\\xd2\\x63\\xbc\\x12\\x15\\xa0\\x58\\xcc\\xa4\\xf4\\x84\\x08\\x1f\\x25\\x55\\x76\\x81\\x10\\xff\\xe5\\xbc\\x5c\\x1a\\x0b\\x00\\x09\\x90\\xa0\\xd6\\x26\\xfb\\xf1\\x25\\x4a\\x89\\x22\\xbf\\x26\\x91\\xb3\\xc2\\xe9\\xa2\\x2d\\x76\\x99\\xd4\\x64\\x35\\xde\\x20\\xcc\\x19\\x9f\\x53\\x95\\x92\\x50\\x5e\\xe2\\x8a\\xd4\\xc7\\xd5\\x4e\\x9d\\x91\\xd6\\xbc\\xbd\\xcb\\x2d\\xfc\\x07\\x55\\x1c\\x2f\\xfc\\xf2\\xa0\\xef\\xe7\\xa2\\xa6\\x4c\\x8d\\x32\\x28\\x84\\xbb\\x7d\\x5c\\x6c\\x44\\x50\\xda\\xcc\\x6b\\xe7\\x92\\xa8\\x07\\x51\\x21\\xe9\\xeb\\x23\\x23\\x67\\x98\\x9b\\xe5\\x83\\x0e\\x66\\x1e\\xd7\\x20\\xc1\\x40\\x7d\\x5f\\x24\\x95\\xf0\\xae\\xb4\\x45\\x6c\\xd4\\x25\\xd5\\xfd\\xc6\\x99\\x1a\\xd1\\x30\\x47\\xfb\\x0f\\x32\\x56\\x34\\xaa\\xb5\\x6b\\x44\\xe7\\xf3\\x02\\x9a\\xf2\\xc7\\x90\\x5d\\x6a\\xa7\\x3a\\x20\\x40\\x4e\\xb5\\x85\\x36\\xbb\\x0f\\x74\\x4d\\xde\\xd9\\xe3\\x1e\\xd2\\x65\\xd6\\x64\\x77\\x2e\\x37\\x9c\\x7b\\x67\\x7f\\x53\\x6b\\xce\\xa2\\x07\\xd6\\x90\\x0d\\xbe\\x75\\x0d\\xbd\\x85\\xb1\\x5e\\x9e\\xc2\\xf9\\x53\\x01\\xfb\\xb9\\x9c\\xe5\\xcb\\xb1\\x16\\x91\\x76\\x72\\x48\\xab\\x64\\x34\\xb2\\xa7\\x91\\x62\\x2d\\x3a\\xb7\\x94\\x3e\\x76\\x92\\xa9\\xea\\x48\\x54\\xfc\\x24\\xb4\\xfc\\x45\\x98\\xfc\\x13\\xa6\\x37\\x35\\xd2\\xb0\\xf3\\xa7\\x02\\x76\\x2a\\x11\\x80\\xdd\\xc6\\xf2\\x21\\x12\\x4c\\xbc\\x21\\x54\\x21\\xe7\\x3c\\x18\\x12\\x19\\x90\\xc9\\x09\\xc0\\x28\\x75\\x94\\x46\\xc2\\x81\\x3a\\xb7\\xc6\\xa9\\x11\\xff\\xa1\\x16\\x6a\\x57\\x52\\x0b\\x75\\xe2\\x5c\\x65\\xc8\\x4d\\x07\\x0e\\x84\\x04\\xcd\\x7b\\xe7\\xcd\\x97\\x6f\\x23\\xe4\\xf0\\x4b\\x6f\\xbe\\x8d\\xb3\\x2a\\x2b\\xc9\\x5b\\x3e\\x73\\x4d\\x23\\x79\\xfb\\xfc\\x29\\xf2\\xb7\\xb0\\x50\\x9f\\x83\\xe5\\x03\\x42\\x17\\x00\\xbb\\x8a\\xe5\\xff\\x3a\\xde\\x57\\xf2\\x5f\\xe3\\x7d\\x4b\\x91\\x60\\xb0\\xb0\\x09\\x77\\x08\\x3f\\x09\\x3f\\x0a\\xff\\x12\\xfe\\x85\\x3b\\x84\\x4d\\x18\\x44\\x5e\\xc5\\x7e\\xdf\\x19\\xdf\\xfb\\xb8\\x46\\xd8\\x4a\\xac\\x44\\x2b\\xaf\\xa7\\x40\\xf0\\xb2\\xbb\\x59\\x3e\\xc4\\x41\\x12\\x6f\\x8d\\x41\\x42\\x20\\x54\\x32\\xb3\\x0c\\x03\\x2b\\xc2\\xe9\\x32\\xba\\x8b\\xce\\xb2\\x58\\x23\\xe5\\x65\\xa1\\xc9\\x5f\\x8b\\xe0\\xce\\xf6\\xb3\\x96\\x1b\\x4d\\xa4\\x26\\x19\\x33\\x31\\xc8\\xf7\\x41\\x64\\xfe\\x94\\xe5\\x8d\\xa6\\xf2\\x38\\xb3\\x32\\x26\\x4e\\xa7\\xb4\\xb8\\x53\\xf4\\x8a\\x6a\\x21\\x07\\x55\\x78\\x6c\\x13\\x0d\\x39\\x6f\\x4e\\x9e\\x39\\xd1\\x1d\\xa2\\x7c\\x1c\\x09\\x26\\xbb\\x9c\\x41\\xdb\\x98\\x52\\x9a\\xc7\\x55\\x00\\x6c\\x0a\\xcb\\xff\\xbd\\x38\\x61\\xc9\\xef\\xc5\\x09\\x5d\\x68\\x72\\x99\\xb4\\xf8\\x22\\xd9\\x35\\xec\\x26\\x97\\xf9\\x0e\\xd1\\x5b\\x9f\\x7e\\xfa\\x16\\xf2\\xde\\x73\\x37\\x00\\x62\\x81\\x70\\x3d\\x7d\\x5f\\x51\\x04\\x29\\xe0\\xe4\\x33\\x4d\\x72\\x2d\\x18\\x05\\x46\\x28\\xeb\\x01\\x02\\xc8\\x11\\xec\\x91\\x7a\\x5f\\xa7\\xf9\\x95\\x3a\\x07\\x8d\\x29\\xc9\\xea\\x58\\x75\\x6c\\x84\\x42\\x5c\\xa6\\x39\\x9d\\xb9\\x5c\\x39\\x36\\x8b\\x2b\\x3b\\x57\\xce\\xfc\\xe8\\x6c\\x52\\x18\\x40\\xa1\\x8c\\x8e\\x96\\xa2\\x01\\x6e\\xfa\\x4c\\x59\\xdf\\x94\\xa2\\x64\\xcd\\xe6\\x6d\\xdb\\x36\\xab\\x6d\\x05\\x53\\x16\\x56\\xe9\\xcb\\xea\\xcc\\xca\\xc5\\x2b\\x57\\x2d\\x1a\\x97\\x5c\\xe5\\x16\\xae\\x4f\\xaa\\x98\\x3e\\x77\\x81\\xeb\\xc8\\xce\\xd5\\x83\\x6b\\xae\\x3a\\x92\\xd3\\x3f\\xb7\\xbd\\x22\\x69\\x27\\x16\\x74\\x2c\\xf3\\x1c\\x59\\xf1\\x68\\x66\\xe6\\x89\\x15\\x47\\x3c\\xcb\\x3a\\x0a\\x44\\x37\\x91\\x44\\x0b\\xbd\\xe4\\xc9\\x0b\\x71\\x48\\x39\\xb7\\x53\\x1a\\x88\\x43\\xa2\\x45\\xed\\x24\\x4f\\x1e\\x3d\\x2a\\xf4\\x2a\\xe5\\x18\\x09\\x56\\x0b\\xd7\\xd3\\xaf\\xa4\\xb5\\xb9\\xf9\\x9c\\x20\\x64\\x54\\xce\\xbc\\x51\\x71\\x4d\\x14\\x18\\x88\\x6b\\x14\\x97\\x35\\x0d\\x00\\x44\\xcf\\x01\\xb8\\xc6\\x94\\x64\\x63\\x82\\x61\\x7c\\x94\\x26\\x52\\x1d\\xa1\\x50\\x69\\x1d\\x5c\\xb4\\x04\\x2e\\x72\\xdd\\x36\\x9b\\x84\\x31\\x94\\xee\\x6c\\x03\\xd3\\x6a\\xa3\\xa2\\x9d\\x5a\\xd1\\x0b\\x8d\\x0a\\x67\\x16\\xac\\x76\\x57\\x25\\x45\\xf4\\x2f\\x5b\\xd6\\xaf\\x34\\xd7\\x95\\xe9\\xab\\x16\\x4e\\x29\\xb0\\xa9\\x37\\x6d\\xdf\\xbe\\x49\\x93\\x5c\\x34\\xa5\\xaf\\xec\\x03\\x79\\x29\\xcb\\x1e\\xc9\\xca\\x7a\\x74\\xb9\\xbc\\x94\\x9d\\x49\\x15\\xed\\x73\\xfb\\x73\\x8e\\x5c\\xb5\\x66\\x70\\xf5\\x4e\\x71\\xc5\\xd3\\x2b\\x92\\x64\\xb9\\xc1\\x2d\\x6c\\x27\\x4d\\x07\\x0b\\xa4\\xf3\\x0e\\x0b\\x10\\x24\\x9a\\x48\\x02\\xb2\\xb7\\x1c\\x98\\x35\\xd0\\x69\\x7e\\x98\\x44\\xa1\\x31\\x31\\xd9\\x76\\x51\\xf2\\xcd\\xee\\xb7\\x9a\\x76\\xbf\\x65\\x0d\\x00\\x87\\x9d\\x69\\xcd\\x8b\\xca\\xd3\\x9a\\xbc\\x75\\x49\\x39\\x1d\\xd9\\x86\\xdc\\xe4\\xd8\\xc3\\xa9\\xcd\\x03\\x15\\x6d\\xd7\\xd6\\xe7\\xb6\\x67\\x19\\x72\\x93\\x62\\xc8\\x37\\x75\\x9b\\xbb\\xf2\\xd4\\x66\\xa7\\x25\\x25\\x23\\x3e\\xbd\\xc8\\x1c\\x55\\xb7\\xa1\\xc3\\x55\\x55\\x9a\\x96\\x36\\x3e\\x8b\\x37\\x4b\\x98\\x01\\xbf\\x12\\xb6\\x53\\xca\\x1a\\x81\\xc2\\x38\\x28\\x90\\xa1\\x80\\x36\\xa0\\x57\\xab\\x47\\x19\\x4f\\x02\\x3e\\x91\\xd2\\x62\\x70\\xc6\\xe8\\x69\\x52\\xdf\\x7a\\x22\\xd1\\xa2\\x0e\\xa4\\x78\\x2d\\x28\\xf9\\x37\\x2e\\xc9\\xd7\\x21\\xe4\\x53\\xd5\\x0f\\x18\\xec\\xad\\xa8\\xa8\\xad\\xad\\xa8\\xf0\\x92\\x9a\\xe1\\x12\\xae\\xc4\\xe3\\xf5\\x7a\\xf2\\x1b\\x1b\\xc5\\xdb\\xec\\x1a\\x09\\x61\\x35\\x9c\\x0d\\xb2\\xc0\\xcb\\xd7\\xc4\\xc7\\x12\\x8e\\x86\\x87\\x10\\x22\\x72\\xfd\\x25\\x61\\x2c\\x0a\\x1c\\xa3\\x5c\\x8f\\x02\\x45\\x15\\x39\\x4d\\x8a\\x65\\xb5\\x02\\x01\\x32\\x01\\x21\\xc9\\x66\\x36\\xe9\\xe3\\xc2\\x42\\x15\\x1c\\x64\\x61\\xd6\\x45\\x71\\x2c\\x7f\\x57\\xcd\\x85\\xd6\\x9b\\x4b\\x62\\x59\\x9b\\xfc\\xb1\\x2c\\x4f\\xf7\\x56\\xef\\x4b\\xdd\\x7b\\xbb\\xb3\\xb2\\xba\\xf7\\x75\\xbd\\xd4\\xbc\\xb5\\xd3\\xf5\\x1b\\xd1\\xac\\x8a\\xd5\\xdd\\x15\\x61\\x5f\\x7f\\x13\\xd9\\xbd\\xeb\\x58\\x77\\x62\\xf7\\xb1\\xdd\\xdd\\x91\\x9f\\x7e\\x14\\x56\\x39\\x77\\x7b\\xe3\\x25\\x51\\x2d\\x71\\x5d\\x03\\x00\\x6c\\x07\\x77\\x52\\x44\\xc5\\x7c\\x01\\x28\\x94\\x4c\\xa9\\x60\\x03\\x2a\\x64\\xc1\\x41\\x84\\x02\\xa3\\x5d\\xa0\\x54\\xfa\\x9d\\x59\\xb9\\x3b\\x0b\\x02\\x29\\x62\\x07\\x38\\xb4\\x89\\x51\\x56\\x75\\xb4\\x5a\\x1d\\x15\\xa2\\x1a\\xef\\x40\\x5d\\x94\\x42\\x29\\x0a\\xb9\\xb3\\x98\\xba\\xec\\x16\\x97\\xd3\\xfe\\x2b\\x6b\\xae\\x33\\x69\\x09\\x51\\x1a\\x4c\\xe4\\x99\\xf3\\xa7\\x9b\\x62\\x4d\\x1a\\xa5\\xe2\\xf0\\x4d\\xaa\\x8a\\x95\\x77\\xf4\\xf4\\x1e\\x5a\\x90\\x7f\\xc6\\xec\\xf1\\x26\\xa5\\xd4\\xba\\x13\\x54\\x98\\x47\\xa6\\x3f\\x5e\\xb6\\x38\\xed\\xd9\\x67\\x15\\x19\\x25\\x35\\x09\\xcf\\x3c\\xf5\\xef\\x39\\x47\\x16\\x16\\x78\\xe6\\xed\\x6b\\xcb\\x6b\\xcc\\x8a\\x36\\x16\\xb5\\x17\\xfc\\xfb\\x29\\x09\\x3f\\xce\\x18\\xf9\\x82\\x6d\\x67\\xc9\\x60\\x01\\x37\\x74\\xf3\\xc6\\xb8\\x98\\xc8\\x08\\x46\\xd1\\xa4\\x1f\\x17\\xc4\\x08\\x35\\xab\\x14\\x14\\x08\\xad\\x8b\\x55\\x13\\xac\\xb1\\x28\\x09\\x54\\x7b\\x07\\xa3\\xfd\\xa8\\x5f\\xc2\\xf4\\x25\\x63\\x73\\x54\\x7a\\x5e\\x03\\x08\\x94\\x20\\xed\\x19\\x73\\xb4\\x95\\x0f\\xce\\xc9\\x4e\\x49\\x8a\\x8e\\x32\\x33\\x95\\x56\\x36\\x6e\\x36\\xbb\\xd2\\x2e\\x55\\x86\\xe6\\xba\\xed\\x6e\\xbf\\xbf\\xe5\\xd6\\x89\\x5a\\x26\\x4a\\xa1\\xd4\\x29\\x71\\x4c\\x15\\xad\\xb8\\x66\\xba\\xb7\\x68\\x7f\\x73\\xf3\\xbe\\xe2\\x59\\x57\\xf7\\x59\\x6c\\x0e\\xdb\\xd2\\xab\\x17\\x17\\xee\\x9c\\x30\\xe1\\xaa\\xc2\\xa5\\xbb\\x56\\xda\\x92\\xad\\xe6\\x81\\x5d\\xbe\\xd2\\xcc\\xc9\\x8b\\x4a\\xf9\\x45\\x93\\x33\\x33\\x27\\x2f\\xe2\\x4b\\x17\\x4d\\xce\\x6c\\xc8\\xcc\\xce\\x4e\\xef\\xbd\\xa6\\xbf\\x70\\x57\\xc3\\xa4\\xfd\\xc5\\x2b\\xae\\x59\\x96\\x92\\x96\\x9e\\xb2\\x62\\xcf\\x9a\\xe2\\xbd\\xcd\\x0d\\x3b\\x0b\\x17\\xed\\x21\\xba\\x9a\\xb5\\x33\\x5c\\xae\\x19\\x6b\\x6b\\x6a\\x2e\\x6f\\x77\\xb9\\xda\\x2f\\x97\\xf6\\x31\\x16\\x80\\x3d\\xc1\\x0d\\x42\\xb4\\xa8\\x3f\\x83\\x10\\x55\\x48\\x28\\x92\\x6e\\x25\\x52\\x05\\x32\\x8e\\xb2\\xae\\x60\\xf4\\x57\\x37\\x17\\x71\\xf5\\xd1\\xda\\x28\\x4d\\xa0\\x51\\x4d\\x2d\\x6d\\x1e\\x9a\\xd0\\xa4\\x95\\xfe\\x93\\x13\\x7d\\xe2\\x7f\\x68\\x22\\xf3\\xb1\\x02\\xc3\\x84\\xc5\\x18\\x2d\\xdc\\x84\\xb3\\x85\\x9b\\xce\\x09\\x37\\x62\\xaf\\x70\\x23\\x26\\x08\\x8b\\x30\\x8c\\xa6\\x93\\x4d\\xbe\\xdc\\x7d\\xbb\\xf7\\x0a\\x7f\\xc1\\xec\\xbd\\xbb\\xf7\\x91\\x57\\x44\\xf9\\x3c\\x27\\x7c\\x4f\\xde\\x90\\x74\\xa3\\x12\\x12\\x79\\x93\\xe8\\x4e\\x07\\x64\\x50\\xca\\x21\\x91\\x7a\\x00\\xa5\\x82\\x63\\x40\\x81\\xaa\\x39\\x95\\xd6\\x81\\x6a\\xa7\\x5a\\x0a\\xb9\\x9c\\xfb\\xf4\\xd3\\x4f\\x85\\xef\\xa9\\x7e\\xf8\\x0b\\xfa\\x12\\xf9\\xb7\\xb8\\xbf\\x93\\x85\\x44\\xb6\\x95\\x3b\\x09\\x5e\\xe8\\x82\\xcb\\xf8\\xa0\\xb6\\xc6\\x14\\xca\\x90\\xa1\\xdf\\xeb\\x49\\xbc\\x20\\x79\\x84\\x43\\x32\\x1a\\x40\\xae\\x18\\xdd\\xd7\\x5a\\x71\\x5f\\x4d\\x97\\x0e\\x23\\xe2\\xad\\x67\\x8e\\x8e\\xe6\\x44\\x34\\x5a\\x5c\\x98\\xe7\\x76\\x66\\x25\\x46\\xa7\\x48\\x68\\x54\\xb6\\x1a\\xfe\\xe4\\xac\\xcb\\x3d\\x66\\x4b\\x25\\x90\\x9a\\x3b\\xb6\\x81\\xe9\\x12\\xa8\\x6a\\xb5\\xd9\\xec\\x0a\\x29\\x2d\\xa1\\x8b\\x16\\x1d\\x71\\xf1\\x22\\xb6\\xb5\\xb5\\xb9\\xb4\\xb2\\x7a\\xcb\\xe3\\x8b\\xcb\\x36\\xad\\xe8\\xf5\\xa6\\x0c\\xb9\\x26\\xcf\\x73\\xf1\\xdd\\xe5\\x96\\x04\\xef\\xe5\\x33\\x16\\xde\\xbf\\x8a\\x6f\\x69\\x2e\\xad\\xa8\\xde\\xf2\\xc7\\x25\\xcb\\xff\\xb8\\xb9\\x6a\\xc8\\x52\\x3e\\xab\\xb4\\x72\\x56\\x69\\x82\\xbe\\xe6\\xf2\\xae\\x45\\x83\\x2b\\x4b\\x7c\\xaf\\x39\\x1a\\x13\\x3d\\xb9\\xe2\\x57\\x47\\xa3\\xc5\\x53\\x68\\xf4\\xae\\xc5\\x17\\x3a\\xae\\x4c\\xc9\\xbe\\xa2\\xa7\\x75\\xc7\\xcc\\xac\\xc8\\xe4\\xd2\\x99\\x6b\\x9b\\x49\\x45\\x5b\\x6e\\x74\\x5c\\x46\\xa9\\x2d\\xa9\\xc0\\x99\\x11\\x6f\\xa8\\xea\\xd9\\x3a\\x63\\xfa\\x0e\\x47\\xf6\\x15\\xb3\\xa6\\xec\\xe8\\x76\\xe5\\x2d\\x38\\x34\\x37\\x6b\\x6a\\xa9\\x75\\x7c\\x56\\xa9\\x35\\xb5\\x28\\x3b\\x2d\\xce\\x50\\xd3\\xbd\\x75\\x63\\x48\\x6c\\x98\\x76\\x5a\\x7e\\x1a\\x9f\\x93\\x11\\x1f\\x1a\\x13\\xa6\\x9b\\xea\\x49\\x2e\\xc9\\xcd\\x96\\x75\\xac\\x9a\\x7d\\x44\\xdf\\xe4\\x5e\\x85\\x10\\xd1\\x0b\\xe7\\xa3\\xa4\\xfe\\xcb\\x76\\x51\\xfc\\x2b\\xb0\\x3e\\x31\\x31\\xd1\\x2c\\xe9\\xcf\\x31\\x11\\x22\\xeb\\xd8\\x68\\x91\\xba\\xbc\\xa0\\xa0\\x5c\\x7c\\xe1\\x8b\\x65\\xf2\\xa7\\x32\\x6e\\x6a\\x76\\x45\\x45\\x76\\x76\\x79\\x79\\x56\\x76\\x79\\x79\\x76\\x76\\x45\\x05\\x50\\x68\\x1b\\x39\\xcb\\x36\\xb1\\x06\\x49\\x76\\xbd\\xd0\\xc0\\x7b\\x03\\xe5\\x6d\\xc1\\x81\\xf2\\xb6\\x80\\x38\\x32\\x00\\x05\\x83\\x1e\\x50\\x2a\\x55\\xed\\xa0\\x52\\x55\\x7b\\x41\\xa1\\x08\\x6a\\x87\\xa0\\xa0\\xca\\xa0\\x7a\\x80\\x9a\\xaa\\xe2\\x42\\x51\\x46\\xc1\\x02\\x96\\x64\\x73\\x64\\xb2\\x39\\x44\\x84\\x03\\x51\\x8a\\x31\\x89\\x81\\x68\\xad\\xc5\\x9f\\x45\\xf2\\xd7\\xbc\\xb9\\xac\\x97\\x48\\xa9\\xf2\\x92\\x76\\x1b\\x3a\\x73\\xfb\\xd2\\xc2\\xae\\x8a\\xc4\\xc4\\x8a\\xae\\xc2\\x65\\xdb\\x97\\x55\\x94\\x27\\xba\\x13\\x35\\x9a\\x44\\x77\\x62\\x79\\xb9\\xef\\x4f\\x95\\x2b\\x0f\\x4f\\x6f\\x3f\\xb4\\xb2\\xb2\\x72\\xe5\\xa1\\xf6\\xe9\\x87\\x57\\x56\\xb6\\x4f\\xde\\xf3\\x5c\\x7f\\xff\\xb3\\xd7\\x4c\\x9e\\x7c\\xcd\\xb3\\xfd\\xfd\\xcf\\xed\\x99\\x8c\\x8f\\xaf\\x58\\x9a\\x52\\x7f\\x59\\x69\\x1b\\x3f\\x7f\\x82\\x63\\xc5\\xf2\\x9a\\x92\\xf8\\xec\\xca\\xe4\\xf6\\x94\\xca\\xac\\xf8\\xc2\\xba\\x59\\x3d\\xf7\\xae\\xaf\\xa9\\x59\\x7f\\x6f\\x4f\\xcf\\xdd\\xeb\\xaa\\xab\\xd7\\xdd\\xdd\\xb3\\xfc\\xcf\\x7f\\x98\\x3a\\xf5\\x0f\\x7f\\x5e\\xbe\\xe2\\xcf\\xd7\\x4f\\x9d\\x7a\\xfd\\x9f\\x25\\xfa\\x47\\x91\\x87\\xe8\\x31\\xee\\x24\\xd8\\xc0\\x05\\xc7\\xbd\\x83\\x16\\xd1\\x2f\\x8e\\xd1\\x11\\x24\\xa9\\xc8\\x29\\x48\\x20\\xdf\\x34\\xe6\\x08\\x93\\xf3\\x4d\\xa2\\x7a\\x4b\\x50\\x21\\xa7\\x64\\x04\\x38\\x98\\x19\\xb0\\x7b\\x52\\x8f\\x88\\x1c\\x9d\\x97\\x2a\\x61\\xc5\\xfb\\x8d\\x07\\x04\\x05\\x87\\x8a\\x9e\\xdf\\x18\\x2e\\xc5\\x8d\\x95\\xc8\\x38\\xe0\\x18\\x0c\\x8c\\x19\\x08\\x97\\x0c\\x6b\\x6d\\xe5\\xb5\\x49\\x76\\x80\\x8c\\x34\\xbb\\x2b\\xc9\\x05\\x36\\xb0\\xd9\\x2d\\x36\\x5b\\x90\\xc8\\x1d\\x17\\x92\\x78\\xb9\\xfe\\x24\\x9e\\x42\\x6b\\x1f\\x9b\\xc3\\x0b\\xa4\\xf0\\xa4\\xa2\\x7a\\x0a\\xe3\\x14\\xe1\\xc9\\xee\\xaa\\x94\\xc2\\x19\\x25\\xa6\\xa3\\xb7\\x5d\\xe9\\x29\\x28\\xad\\xbd\\x2f\\x75\\xe2\\xe2\\xea\\xb2\\xf9\\xf5\\x29\\xa1\\xe1\\xc2\\xf6\\x38\\x77\\x96\\x35\\xe8\\x0a\\x7b\\x7e\\x52\\x94\\x87\\x3c\\xeb\\x70\\x6a\\xed\\x86\\x48\\x63\\xe1\\xe4\\x9c\\x85\\x2b\\x9d\\xc5\\xa5\\xce\\xcc\\x70\\xe7\\x94\\x62\\xa9\\x97\\x52\\x38\\x95\\xd5\\x92\\xba\\x29\\x42\\x6f\\x52\\xcf\\x8b\\x34\\x24\\x45\\xa7\\xa4\\xcb\\xcf\\xd9\\x39\\x09\\x73\\xe9\\x10\\xdd\\x4e\\xec\\xb8\\x74\\xa4\\x70\\xe4\\x43\\x54\\xe2\\x52\\x38\\x3c\\xf2\\x21\\x44\\x1e\\x03\\x7c\\x74\\xe4\\xc3\\x41\\xa7\\xe3\\x18\\xfa\\x3f\\x48\\xba\\xf4\\x71\\x5c\\x4e\\x7d\\xd4\\x0a\\x1c\\x14\\x7b\\x07\\x83\\xa5\\x78\\xa1\\xe8\\x6b\\xcf\\xb9\\x34\\x75\\xac\\xe7\\xb5\\x72\\x97\\xd5\\x25\\xc7\\x5b\\x8f\\x8f\\xa6\\x84\\x45\\x5d\\x4a\\x7d\\x2f\\xf9\\xb6\\xd2\\x72\\x5c\\x8e\\xec\\x1e\\x00\\x60\\x52\\x1f\\xe6\\x06\\xd6\\x00\\x1a\\xb0\\x83\\x0b\\x78\\xd8\\x7e\\x3c\\x1b\\x95\\xaa\\x80\\x57\\x96\\xa1\\x40\\xa6\\x24\\x4a\\x46\\x06\\x80\\x83\\x20\\x15\\x17\\xd4\\x03\\xaa\\x60\\x54\\x32\\x95\\xb2\\xeb\\x77\\x02\\x56\\xff\\x4f\\x57\\xd4\\x60\\x7d\\x2b\\x1f\\x95\\x94\\xc4\\x17\\xe7\\xe5\\x26\\xb9\\x92\\x5c\\xd1\\x26\\x6d\\x52\\x52\\x52\\x62\\xc8\\x68\\xe4\\xff\\x82\\x18\\xb8\\x2f\\x11\\x13\\x4e\\x6b\\x51\\xcb\\x82\\xae\\xd4\\x58\\xec\\xf6\\x40\\x77\\x91\\xa5\\x65\\xf2\\x35\\xcf\\xf5\\xf7\\x3f\\x27\\x4a\\x80\\xfc\\xde\\x5e\\xb9\\xf2\\x70\\x7b\\xfb\\x61\\x51\\x46\\xe4\\x77\\x9c\\xb0\\xe8\\xcd\\x85\\x5b\\xab\\xca\\xf6\\x2e\\x5d\\xb6\\x62\\x71\\x74\\x8a\\x51\\x93\\x5f\\xdb\\x4d\\xc6\\xaf\\x90\\x79\\x7f\\x85\\x9f\\xf7\\x57\\xf4\\xdc\\xb3\\xae\\xa6\\x66\\xdd\\x3d\\x3d\\x3d\\xf7\\x88\\xb2\\x71\\xcf\\xcd\\xc3\\x64\\x6d\\x67\\x57\\x5e\\x83\\x4e\\xf8\\x64\\x78\\x76\\x68\\xb4\\x51\\xeb\\x4e\\x91\\xf1\\xb4\\x92\\xd3\\xd0\\x0f\\x2f\\xf4\\xb9\\x8d\\xa6\\xc3\\x2f\\xb4\\xda\\xd1\\x0f\\x7d\\x29\\xe4\\x2d\\x4e\\x23\\xf7\\x9a\\xf7\\xd2\\x41\\xba\\x88\\x3b\\x29\\xd1\\x3b\\x81\\x8f\\x1f\\xd3\\x0e\\x8c\\x28\\xe5\\x40\\x4a\\xb0\\x5e\\xa4\\x81\\xac\\xd7\\xfe\\x3b\\x0d\\xb0\\x37\\xa5\\xa6\\x33\\xd7\\xd5\\x51\\x9d\\x9c\\x5c\\xdd\\xe1\\xca\\xed\\xac\\x49\\xd9\\x11\\x65\\x49\\x8b\\x8b\\x4d\\x33\\x6a\\x34\\xc6\\xb4\\xd8\\xb8\\x34\\x4b\\x14\\x7b\\xd4\\xdd\\x55\\xeb\\x70\\xd4\\x76\\xb9\\xdd\\x9d\\x35\\xc9\\xc9\\x35\\x9d\\x6e\\x7d\\x9a\\x49\\xa3\\x31\\xa5\\xe9\\xf5\\x19\\x16\\x8d\\xc6\\x92\\x21\\x1a\\xa0\\xeb\\x01\\x59\\x2a\\x3b\\x0f\\x21\\x30\\x0e\\x1c\\x7c\\xd2\\xd8\\x3e\\x46\\x20\\x4a\\x8e\\x88\\xc0\\x4b\\xd1\\x2a\\xd7\\x97\\x07\\x5a\\xca\\x55\\xaa\\xf8\\x8b\\x5a\\x1a\\xc5\\x95\\x92\\x37\\xb1\\x55\\x38\\xfa\\x37\\xe1\\x06\\x9c\\xf3\\x37\\xcc\\x1e\\x3e\\x46\\x1b\\xe9\\x86\\x93\\xc2\\x6a\\xdc\\x76\\x12\\xd7\\x9c\\x57\\x3c\\x2b\\xd1\\x2b\\x9b\\xdc\\x44\\x8f\\x72\\x7f\\x04\\x03\\x5c\\x77\\x5c\\x6e\\x77\\x93\\xd9\\x3a\\x6e\\xb4\\xeb\\x8d\\x89\\x6c\\x39\\x23\\xd0\\x54\\x56\\x88\\xa2\\x9a\\x08\\xfd\\x2f\\x23\\x2a\\xa4\\x11\\xe1\\xff\\x97\\x7b\\xfc\\xb7\\xcb\\x5b\\x5b\\x5b\\x1f\\x89\\x49\\x8c\\xb2\\xfb\\xcb\\x64\\x5d\\x28\\xda\\xca\\xb1\\xb9\\xfe\\x68\\xb9\\x37\\xd8\\x44\\x8f\\xfa\\x0e\\x60\\x42\\x71\\xb6\\x3b\\xc7\\x98\\x91\\x30\\xee\\xb1\\x94\\x86\\x45\\xd5\\xbb\\x0e\\xe8\\x73\\xea\\xb3\\x76\\xe1\\x52\\x72\\xd3\\xe5\\xa8\\x72\\x4f\\x89\\x4f\\xc9\\xd5\\x98\\x1c\\xb1\\x22\\xd5\\x37\\x2e\\x4e\\xa9\\xae\\xac\\x49\\x96\\x62\\xf1\\xe8\\x24\\xbb\\xe9\\x6d\\xdc\\xe3\\x90\\x0d\\x6b\\xf8\\x60\\x86\\x40\\xe2\\x50\\x09\\xa4\\x4e\\xd6\\x80\\xa9\\xbf\\x6a\\xad\\x53\\x00\\x53\\xb0\\x99\\xa3\\x0b\\xf0\\x82\\x52\\x29\\xcb\\x8e\\xb2\\x5e\\xcf\\xa7\\xfc\\x6e\\x27\\xde\\x25\\x97\\x89\\xe2\\x15\\x92\\x68\\x8e\\x4a\\x4f\\x8c\\xb4\\x19\\xa5\\x1d\\x0b\\x74\\xd7\\x5d\\xd4\\x32\\x38\\x06\\x62\\x10\\x97\\x33\\x2a\\x5a\\x1a\\x64\\xb3\\x58\\x88\\x6a\\x1a\\x5f\\x1c\\x16\\x9f\\x9a\\x90\\x55\\xfa\\x58\\x46\\xd3\\xfc\\xc2\\x8a\\x45\\xcd\\xa9\\xd5\\x7c\\x6d\\x7d\\xd6\\xd4\\x65\\x15\\x79\\xfd\\x53\\x5d\\x8f\\x55\\x16\\xf2\\x45\\xb5\\x65\\xd3\\xd8\\xfc\\xdc\\xd4\\x48\\x63\\xcc\\xb8\\x24\\x8b\\x6b\\x92\\xc7\\x30\\xde\\x33\\xc5\\x9d\\xdf\\x12\\x13\\xd5\\x56\\x9b\\x37\\xb5\\x20\\x41\\xef\\x69\\xe7\\x6d\\xb9\\x79\\x29\\x9e\\x74\\x59\\x5e\\xae\\x60\\xc7\\xe9\\x24\\xa9\\x86\\xc4\\x16\\xa8\\x21\\xb9\\x50\\x3c\\xa3\\xe7\\x83\\x44\\x25\\xb6\\x18\\x10\\xe7\\x8d\\x16\\x8f\\x98\\xd0\\x42\\x4a\\x31\\x52\\x38\\x73\\x82\\x3b\\x25\\x0c\\x89\\xe7\\x1f\\x14\\x3a\\x59\\x01\\xcb\\x87\\x68\\x98\\xc1\\x87\\x04\\x21\\xa0\\x26\\x5c\\x72\\x7f\\xe4\\x78\\x51\\x8c\\x82\\x23\\x12\\xa2\\x06\\x08\\x34\\x8b\\x03\\x63\\xa5\\xac\\x5e\\xcf\\xc7\\x07\\x4e\\x49\\x07\\xfd\\x8d\\x47\\x35\\xfe\\xd3\\x72\\xb9\\x7a\\x34\\x44\\x47\\x5a\\xd4\\x1a\\xab\\x54\\xae\\x3e\\x36\\x70\\x24\\x65\\xb4\\xed\\x6a\\x8b\\x1a\\x0f\\x1b\\x5c\\x35\\x8e\\xf6\\x05\\xe3\\x87\\xde\\x57\\xa6\\xae\\x68\\x58\\x3d\\x61\\x88\\xe5\\xfb\\xf6\\xb7\\x2f\\x2a\\xd1\\x95\\xe6\\x53\\xcd\\xf9\\x53\\x2d\\x39\\x9e\\x3c\\xa1\\x88\\x7b\\x4f\\xf6\\x69\\xde\\x04\\xa0\\x9f\\x4a\\xb5\\x98\\xa2\\xb4\\xfb\\x7b\\x6b\\x0b\\x03\\x21\\x1f\\xb9\\xbc\\x35\\xc9\\xc4\\x54\\xd1\\x0e\\x93\\x7a\\xb4\\xc1\\xc9\\xa4\\xa6\\x91\\x93\\x56\\x3c\\xba\\x96\\xe7\\xd7\\x3e\\xba\\x02\\x2d\\x44\\x55\\xb5\\xf6\\xde\\xd9\\xb3\\xee\\x5d\\x5b\\xfd\\x4b\\x93\\x48\\xc3\\x73\\xa4\\x86\\x2a\\x69\\x33\\x68\\xa4\\xda\\x1d\\xd1\\x1c\\x4c\\xf3\\xdf\\x19\\xb0\\x51\\x6e\\xda\\xbd\\x54\\x75\\xe0\\x39\\x8d\\x25\\xc7\\x64\\xca\\x11\\xa1\\x83\\xf8\\x6e\\xd1\\x90\\x57\\xe3\\xb3\\x12\\xa3\\xa2\\x12\\xb3\\xe2\\xe3\\x33\\xc5\\x77\\xb9\\x0f\\x0e\\x9f\\x11\\xca\\x68\\x0c\\x10\\xd0\\x42\\x32\\x6f\\x43\\x11\\xb8\\xd7\\x31\\x29\\x4b\\x46\\x89\\xd4\\x98\\xe8\\xc7\\xb2\\x00\\xa0\\x05\\x6d\\xb4\\x3a\\x8e\\x53\\xe9\\x1c\\xd6\\x40\\xb7\\x9a\\x5d\\xd6\\xc2\\x76\\x37\\xd9\\x15\\x1a\\x9f\\x9b\\x12\\x97\\x3c\\x71\\x55\\x93\\xd2\\x90\\x6d\\xd5\\x56\\x37\\x25\\x10\\x17\\xa7\\x4b\\x2e\\x72\\x64\\x4f\\xcc\\x37\\x5e\\x11\\xac\\x35\\xc7\\xa4\\x59\\xb8\\x1d\\x80\\xb8\\x85\\x5c\\x47\\x39\\xee\\x2e\\x50\\x40\\x24\\x3f\\xee\\x42\\xdf\\xec\\x3c\\xa9\\x6b\\x16\\x2d\\x6a\\xa5\\xcb\\xea\\xa4\\xdc\\xa3\\x2f\\x63\\xbf\\x86\\x5c\\x47\\x0a\\xb3\\xf6\\xac\\x90\\x71\\x61\\x08\\x79\\x90\\x3e\\xc3\\x9d\\x94\\x72\\x28\\xf1\\x7c\\x2c\\x10\\xd1\\xda\\xcd\\x1c\\x55\\xa7\\xb4\\x3e\\x90\\x21\\xf9\\x5f\\x9e\\x95\\x80\\x21\\x99\\x6d\\x1b\\x9a\\x9a\\x37\\xb4\\x65\\x66\\xb6\\x6e\\x68\\x6a\\xda\\xd8\\x96\\xf5\\x80\\xd6\\x51\\x9a\\xea\\xe0\\x53\\xb4\\x5a\\x47\\xa9\\xc3\\xc1\\x3b\\xb4\\x6c\\x59\\xed\\x9a\\xd6\\xec\\xec\\xd6\\x35\\xb5\\xcb\\x6a\\xd7\\xb4\\x64\\x67\\xb7\\xac\\xa9\\x4d\\xae\\x70\\xc6\\xc7\\x3b\\x2b\\x92\\x97\\x25\\x55\\x64\\x8f\\x1f\\x9f\\x5d\\x91\\x24\\xda\\xf7\\xd3\\xb0\\x93\\xc5\\xd2\\xbb\\x89\\x1d\\x97\\x8d\\xcc\\x16\\xe5\\x12\\x97\\xc1\\x5f\\x40\\xb6\\xfd\\x1e\\x00\\xb6\\x87\\x7b\\x18\\x32\\xf0\\x59\\x41\\x20\\x43\\x9e\\x1b\\xc1\\x86\\xcb\\xa9\\x0a\\xc7\\xe1\\x49\\x2c\\x07\\xf0\\xdc\\x08\\x6a\\x11\\x05\\x90\\x21\\x19\\x05\\x0c\\xaa\\xe4\\x5e\\x32\\x88\\x07\\x60\\x47\\xb9\\x07\\x89\\x0d\\x97\\x3f\\xab\\x92\\xae\\xfe\\x84\\x7c\\xeb\\xb9\\x11\\xc7\\xe1\\x75\\xd8\\x31\\x7a\\x9d\\x34\\x5c\\x04\\x0f\\xe4\\x5b\\xff\\x75\\x66\\x00\\xf6\\x18\\xf7\\xa8\\x78\\x5d\\xa3\\x78\\xdd\\x49\\x9c\\x2f\\x8e\\xc6\\x71\\xf8\\xfc\\x88\\x9a\\x7c\\x7d\\xd1\\x75\\x14\\x1f\\x25\\x5f\\x4b\\xa0\\x83\\xc0\\x4b\\xc2\\x0a\\x96\\xc4\\x78\\xb0\\x43\\x01\\xcc\\x96\\xb3\\x94\\x56\\x05\\x52\\x0e\\x39\\x3a\\xb6\\x44\\x46\\x4a\\xe9\\xca\\x72\\x36\\x3d\\x90\\xec\\x30\\xff\\x6a\\x9c\\x78\\x43\\xd2\\x39\\x3a\\x9c\\x93\\xb3\\x85\\x79\\xb9\\xe9\\xa9\\x63\\x1b\\xc2\\xc2\\xa9\\xf4\\x88\\x05\\x39\\x36\\xe3\\xbc\\xd0\\xeb\\xe7\\x2e\\xa6\\x2e\\x7a\\x09\\x2f\\x93\\x9f\\x51\\xa9\\xcf\\xcb\\x32\\x94\\xba\\xcc\\x3d\\x6d\\xd6\\xea\\x5c\\xf3\\x39\\x52\\xbe\\xf4\\x96\\xf6\\xde\\x83\\x0b\\xf3\\x33\\xea\\x66\\xa4\\x19\\x12\\xc2\\x49\\x44\\xb8\\x21\\xd3\\x6c\\xce\\x4a\\x18\\x37\\x2e\\x21\\xcb\\x6c\\xce\\x34\\x84\\x93\\xdd\\xd5\\x33\\x6b\\xcb\\x92\\xcd\\x35\\x13\\x26\\xa7\\x77\\x74\\x46\\xa5\\x56\\x64\\xce\\xd8\\xd5\\x99\\xe9\\xec\\xbe\\x66\\x46\\xd5\\x9a\\xbe\\x4e\\xc7\\xf8\\x8c\\xac\\x7c\\x3b\\xe6\\xc4\\xa5\\x9b\\x35\\x1a\\x73\\x7a\\x5c\\x6c\\xaa\\x68\\x41\\x53\\xc5\\xa9\\x5b\\x01\\xd8\\xed\\xdc\\x20\\x8c\\x83\\x48\\x28\\xe5\\x8b\\xd5\\xa2\\xfb\\x56\\x07\\x1c\\x28\\x54\\x9c\\xa2\\x2b\\x08\\x55\\x20\\xa2\\xa5\\xb1\\x0d\\x1d\\x4a\\xa5\\xf4\\x7c\\x18\\xa9\\xf3\\x3b\\x22\\x22\\x32\\x22\\xf0\\x14\\x96\\x88\\x60\\x55\\xbc\\xc3\\x64\\x52\\x9b\\xa8\\x05\\x47\\xbb\\x3b\\x50\\x4d\\xd9\\xed\\xbe\\xaf\\x84\\xe1\\xcb\\x7e\\x26\\x41\\xa4\\x4b\\xf8\\x04\\x61\\x04\\xd0\\xe5\\xfb\\xea\\x59\\x9c\\x2c\\xdc\\xcb\\x0d\\x3e\\x27\\xcc\\x7a\\x4e\\xc8\\xc2\\xb9\\xa4\\xd7\\x77\\xa3\\xac\\x4f\\x8e\\xc2\\xdb\\xac\\x92\\x6d\\x85\\x10\\x50\\x3c\\x14\\x44\\x31\\xd3\\xa1\\x41\\x74\\x23\\xea\\x10\\x95\\x88\\x47\\xb1\\x48\\x78\\x7e\\x1f\\x16\\x62\\xe1\\x3e\\xe1\\x79\\x2c\\xda\\x27\\x9c\\x14\\x4e\\xe2\\x7c\\x2c\\xc7\\xf2\\xfd\\xc2\\x53\\x58\\xb6\\x5f\\x78\\x52\\x78\\x72\\x3f\\x96\\x09\\x4f\\xc9\\xbd\\x4c\\xee\\x91\\xc3\\x6c\\x0b\\xf7\\x1d\\x24\\x40\\x2a\\x78\\xa0\\x8c\\x2f\\x89\\x45\\x46\\xb2\\x32\\x13\\x2d\\xf1\\x5c\\x20\\xa9\\x17\\x82\\x1c\\xd6\\xca\\x1a\\x9a\\xd2\\x62\\xb9\\x8a\\x48\\x6e\\xef\\xbb\\x50\\xf1\\xe5\\x70\\x68\\x1c\\x97\\x56\\x7b\\x69\\xa4\\xe0\\x60\\x31\\x93\\x73\\x59\\xca\\xe8\\x68\\x1d\\x17\\x15\\xad\\x43\\x39\\x16\\xa7\\x34\\xd9\\x6c\\x76\\xf4\\x77\\x33\\xb0\\xfe\\xb2\\xcd\\x2f\\x6c\\x69\\xd9\\x9d\\xdf\\x75\\xf4\\x50\\x49\\x89\\x5c\\x06\\xdf\\xbe\\xbf\\x70\\xe2\\x9d\\x7b\\x8b\\x8b\\x70\\xf8\\x83\\x90\\x30\\x7c\\xcc\\x34\\xbd\\x44\\x2a\\x87\\x27\\x4e\\x0c\\x09\\x11\\xaa\\x8d\\xd3\\x0a\\xc7\\xd4\\xc4\\x67\\xa5\\xde\\x89\\xda\\xf6\\xd3\\x1b\\xfc\\x75\\xf1\\x39\\x19\\x57\\xfb\\xda\\xbe\\x58\\xf7\\x78\\xee\\x7c\\x27\\x39\\x9f\\x94\\xd1\\xb8\\xe1\\xf0\\xc4\\x9c\\xde\\x4c\\x9f\\xd2\\xe6\\xb8\\x50\\x1f\\x7f\\x2d\\x00\\xbb\\x9c\\x1b\\x84\\x08\\x18\\x0f\\x39\\x7c\\x96\\x28\\xa4\\x1c\\x03\\x4e\\x74\\xef\\x90\\x30\\xec\\xf1\\x37\\x31\\xfb\\xbb\\x72\\x00\\xd4\\xe3\\xd5\\xf1\\x51\\x91\\x10\\x01\\x11\\x6a\\x7f\\xff\\xb2\\x7a\\x94\\x1f\\x2d\\x6a\\x8b\\x5a\\xa3\\x1e\\x45\\x65\\xb8\\xf5\\xa7\\xcb\\x9f\\xde\\x54\\x5e\\xbe\\xe9\\xe9\\xcb\\x7f\\x3a\\x77\\xee\\xa7\\xda\\x39\\x65\\x06\\x43\\xd9\\x9c\\x5a\\x6e\\x50\\xf8\\xaa\\x74\\xd9\\xa1\\x99\\x33\\x0f\\x2d\\x2b\\x13\\xfe\\xc6\\x0d\\x0a\\x76\\x41\\x9b\\x5c\\x39\\x2d\\x23\\xa3\\xb5\\x52\\xc6\\x91\\x52\\x5e\\x64\\x85\\x22\\x16\\xaa\\x61\\x80\\x0f\\xb6\\x22\\x65\\x89\\xa2\\xcf\\x59\\x27\\x3b\\x52\\xd1\\x81\\xca\\xfd\\x62\\xb9\\xa4\\xc9\\xcf\\x5f\\xfe\\x04\\x49\\x14\\x20\\x30\\x8a\\xac\\xe7\\xa2\\x73\\x7c\\xcc\\xe8\\x61\\xa9\\x7a\\xc1\\x5f\\x62\\x53\\x23\\xb9\\x4a\\x21\\xe5\\xa5\\x8e\\x64\\xa3\\xc1\\x1a\\xc1\\x89\\x86\\xc7\\xa2\\xbe\\x20\\x61\\x4c\\x1b\\x65\\x60\\xa3\\x5d\\xe5\\x81\\x2a\\x8c\\x9c\\x74\\x26\\xee\\xe6\\x05\\x85\\xb9\\xe7\\xbb\\xd2\\x25\\x07\\x67\\x34\\xec\\x98\\x5b\\x14\\x19\\x67\\x8c\\x8b\\x74\\x94\\x78\\x4b\\x1c\\x39\\x5d\\x3b\\xa6\\x26\\x4d\\x6d\\x2c\\x8d\\xca\\x8a\\xc8\\x2a\\x2c\\x37\\xdb\\xf2\\xac\\xf2\\x71\\x4d\\xbc\\x39\\x5e\\xa3\\x4f\\x75\\xeb\\x93\\x2b\\x73\\xc6\\x33\\xf7\\xb2\\x87\\x57\\x97\\x38\\x5a\\xb6\\xb5\\xe5\\x4c\\x28\\xcc\\xce\\x76\\x5b\\x92\\x2a\\xcb\\xab\\x26\\xcd\\x2e\\x69\\xd9\\xda\\x9a\\x16\\xa4\\x8e\\x09\\x7f\\x36\\x58\\x17\\x15\\xa6\\x4b\\xf1\\x98\\x53\\xab\\xcb\\xca\\x9b\\x67\\x97\\x27\\x97\\xe5\\x39\\x73\\x8b\\x6c\\x8e\\xf2\\x74\\x5d\\x62\\x4d\\x7f\\x9d\\xc4\\xb7\\xa9\\x23\\x67\\xd9\\x3d\\xac\\x11\\x3c\\x50\\x05\\x93\\x60\\x36\\xdf\\x6d\\x42\\xca\\xd5\\xe5\\x10\\x95\\xd2\\x45\\x09\\xa8\\x68\\x1d\\x30\\x4a\\x28\\x23\\x03\\x41\\x48\\x42\\x51\\xa9\\x22\\xca\\x9e\\x60\\xa4\\x94\\x6b\\x57\\x20\\xc7\\x55\\x7b\\xc3\\x43\\x88\\x4a\\x05\\xed\\x18\\x26\\x97\\x8b\\xd6\\x54\\x23\\x4c\\xf0\\x56\\x4f\\xaa\\x99\\x54\\xc6\\x17\\xe4\\x67\\xa6\\x3b\\x52\\xac\\x96\\x84\\xf1\\xb1\\x31\\xd1\\x51\\xea\\x71\\x41\\x4a\\xf0\\xa0\\x67\\x9c\\x54\\x26\\xf6\\xfb\\x6e\\x64\\xb4\\x2e\\x37\\x57\\x27\\x57\\x8f\\xf9\\x55\\x98\\x54\\x3f\\xe6\\xbc\\x40\\x2e\\x11\\x43\\x04\\xfc\\xcb\\xc5\\x9d\\xbb\\xd2\\x23\\xb3\\x8a\\xbc\\xa9\\x75\\x4b\\x1a\\x92\\x3e\\xf8\\x7b\\x5c\\x96\\x33\\xa7\\xe0\\xf3\\xf4\\xa9\\x6b\\xea\\xbd\\xab\\x52\\x1c\\x4b\\x6a\\x26\\xac\\x99\\x9a\\x2e\\x24\\x76\\x0e\\x24\\xba\\xd3\\xed\\x91\\xce\\x08\\x57\\xed\\x8c\\xf7\\x7c\\x11\\x86\\xd4\\xf1\\x36\\xa7\\x31\\x4c\\x78\\x31\\x26\\x47\\x1b\\x93\\x51\\xe7\\xd4\\x97\\x44\\x95\\x95\\xc4\\x65\\x58\\xb4\\xa9\\xcd\\x4b\\xaa\\xef\\x3a\\xb1\\xb9\\xb4\\xba\\x84\\x0f\\xaa\\x5e\\xd2\\x9c\\x9a\\xea\\x48\\x49\\xc7\\xdc\\x59\\xbb\\xdb\\x7e\\x98\\x32\\x67\\x51\\x48\\x84\\x36\\xe8\\xce\\xd0\\xf8\\x98\\x08\\x72\\xdd\\xaa\\x84\\x5c\\x7b\\x74\\x42\\x9e\\xd7\\xe1\\xfb\\x34\\x26\\x0a\\xc3\\x13\\x72\\x2a\\xad\\xb9\\xd5\\xa2\\x2c\\xe4\\x8e\\x9c\\x61\\x25\\xdc\\x59\\xb0\\x40\\x01\\x34\\xf3\\x91\\xd1\\x52\\x4a\\xce\\x62\\x36\\x25\\x18\\xe2\\xf5\\x71\\xb1\\x41\\x58\\x23\\x3b\\x82\\x1a\\x40\\x20\\x14\\x49\\xcf\\x45\\x0f\\xdf\\xf8\\xd5\\x51\\xa9\\xeb\\x2f\\xc8\\xed\\x4a\\x73\\x24\\x25\\x89\\x98\\x06\\xa3\\x23\\xb5\\x63\\xfb\\xd8\\x45\\x5a\\xd9\\x6c\\x76\\xce\\xee\\xb6\\xd9\\xdd\\xd1\\x3a\\xb7\\x8e\\xe6\\xe4\\xd8\\x2f\\xf4\\x21\\x48\\xbc\\x46\\x17\\xf4\\x2c\\x6c\\xba\\xfa\\x99\\x85\\x8b\\x9e\\xd8\\x56\\x57\\xb3\\xf1\\xf8\\x82\\xe6\\xab\\xdd\\xd1\\xf5\\x4e\\x61\\xa4\\xe1\\xb3\\x2a\\x6f\\xdd\\xc1\\x75\\x6f\\x37\\x7c\\x82\\x11\\x39\\x75\\x1d\\xf9\\x85\\x33\\x2b\\x12\\x13\\xab\\x7a\\xcb\\xf8\\x39\\xb5\\x49\\xec\\xfc\\x32\\xe1\\xd9\\x53\\xfc\\x8e\\x7f\\xdc\\x34\\xa9\\x7e\\xeb\\x83\\xbd\\x8b\\x1f\\xdf\\x52\\xeb\\xce\\x98\\xbe\\x3b\\xf7\\x9a\\xbe\\x0d\\x69\\x71\\xcf\\x26\\xcd\\x5d\\xb5\\xc0\\xa7\\x57\\x8d\\x53\\x45\\x27\\x27\\x68\\x72\\x5a\\x96\\xf0\\x9e\\xf9\\x93\\xb3\\x3d\\x73\\xf6\\xb4\\x02\\x85\\x85\\x70\\x23\\xeb\\x66\\x27\\x45\\xff\\x4d\\xd4\\x83\\x7c\\x72\\xa0\\x0a\\x0f\\x50\\x2a\\xbf\\xe9\\x02\\xc6\\x71\\x6c\\x9a\\xbf\\x9b\\x99\\x71\\x8d\\x89\\x89\\x36\\x6b\\xa0\\x4d\\xcf\\x65\\xba\\x80\\xb3\\x14\\x16\\xb3\\x8d\\x8e\\x09\\x3e\\xb1\\xee\\xe1\\x30\\xfa\\x83\\x6f\\x43\\xa4\\x39\\xdb\\x68\\xcc\\x36\\x47\\x56\\xf1\\x7c\\x15\\x11\\xff\\x91\\x3e\\x54\\xbf\\x89\\xa9\\x7a\\xd9\\xda\\xe8\\x73\\xab\\xab\\x7d\\xca\\xdc\\xda\\xda\\xdc\\xdc\\xea\\x6a\\x89\\xbf\\x17\\x8e\\x2c\\x67\\xd3\\xd9\\x13\\xa0\\x87\\x24\\xc8\\x81\\xcb\\x78\\x4d\\xb0\\x92\\x30\\x48\\x4b\\x35\\x26\\x30\\x8e\\xc5\\x68\\x09\\x91\\xaa\\x2d\\x22\\xe4\\x12\\x4e\\xc0\\xc5\\x40\\x09\\x5d\\x12\\x68\\xc7\\xab\\x1e\\xfb\\xf4\\x05\\xfd\\x7f\\x1f\\x21\\x15\\xb5\\x06\\xa5\\x38\\x22\\x93\\x23\\xc7\\x54\\x1f\\xc8\\x0a\\xdb\\xbf\\x6f\\x76\\xa5\\xc5\\x6d\\xb3\\x89\\x5e\\x41\\x40\\x7b\\x6b\\x4d\\x39\\xa2\\xf6\\x96\\xf6\\x4a\\x2a\\x2d\\x99\\xdf\\x5e\\x73\\xcd\\xdc\\x8e\\x9e\\x8a\\x8d\\x8f\\x2f\\xef\\x9e\\x58\\x7d\\xcd\\xec\\xde\\xbe\\x21\\xb3\\x05\\x33\\x74\\xee\\x04\\xa9\\xb6\\x64\\x5c\\xfc\\x78\\xe1\\x6d\\xbb\\xab\\xbc\\xa7\\xd4\\x5f\\x67\\x62\\xdd\\xf7\\xa6\\xf7\\xeb\\xdd\\x52\\xa5\\xc9\\xf8\\xbd\\x7f\\xae\\x3d\\x77\\x5d\\xc3\\xb6\\x6c\\x32\\x2f\\x24\\x2c\\xbf\\x7b\\x53\\x4d\\xe5\\x9a\\x4c\\xdf\\x91\\x08\\x4f\\xcf\\xa6\\xba\\x40\\xbd\\x89\\x62\\x9c\\x54\\x93\\xd1\\xfb\\xab\\x32\\x67\\xb9\\x26\\xe1\\x57\\x05\\xcb\\xbf\\x51\\x73\\xf2\\x5b\\x27\\xfd\\xa5\\xcb\\xff\\xad\\xe6\\xe4\\x77\\xeb\\x95\\x1b\\xdc\\xf3\\x0f\\xf4\\xce\\xb8\\x3a\\x67\\x68\\x28\\xe7\\xaa\\xe9\\x73\\x6e\\x99\\xef\\x1e\\x1a\\x5f\\xd4\\x59\\xd6\\x3c\\x37\\xc1\\x30\\x77\\x72\\xd9\\xcc\\xa2\\x78\\x7f\\xc9\\x89\\xc7\\x37\\xa2\\x7c\\xc0\\xf7\\x62\\x7e\\x71\\xa0\\xe6\\xa4\\xd2\\x23\\x24\\x78\\xaa\\x2f\\xd4\\x9c\\x44\\x03\\xb0\\x3f\\x71\\x83\\xa0\\x01\\x1d\\xe4\\xf2\\x4e\\x95\\x82\\x40\\x08\\x47\\x30\\x58\\xf4\\xbc\\x83\\x81\\x92\\x60\\xda\\x15\\x84\\x4a\\xa5\\xdc\\x6c\\x58\\x44\\xea\\x2f\\x79\\xaa\\x5b\\xa8\\x6a\\xfc\\xe8\\x63\\x48\\xd4\\x16\\xb5\\xc5\\xe5\\x94\\x5b\\x19\\xa5\\xa7\\x53\\xa4\\x1c\\x3e\\xfc\\x8d\\xa0\\x3e\\x3d\\x71\\xe2\\x69\\x1c\\xfa\\xc6\\x67\\xc7\\x21\\x41\\xcd\\xee\\x3d\\x74\\xfe\\x47\\xb2\\xc3\\xb7\\x9c\\x85\\x1e\\x42\\x26\\x0c\\x23\\xf3\\x1d\\x7c\\x12\\x02\\x35\\x69\\x52\\x0e\\x55\\xea\\x99\\xfc\\xad\\x3a\\xc1\\xff\\x5e\\x75\\x16\\xa8\\x07\\x04\\x02\\xeb\\x46\\xbe\\x65\\x0d\\x52\\x3c\\x24\\x16\\x1a\\xe5\\x2d\\x8a\\x03\\x86\\x1c\\x32\\x6e\\x40\\x6e\\x3b\\x94\\x36\\x61\\xb4\\xc2\\xce\\x70\\xc9\\x49\\xc9\\x56\\x5d\\x28\\xe2\\x68\\xe5\\x83\\xcc\\x51\\xd6\\x0b\\xfd\\x9a\\x4e\\xd3\\x68\\x25\\xa8\\xec\\xa9\\x16\\x13\\x17\\x56\\xbd\\xf4\\x12\\xe1\\x5f\\x4a\\x9e\\xb2\\x71\\x5a\\xcd\\xea\\xd6\\xac\\x97\\x6a\\x0a\\x93\\xdd\\xa6\\x30\\x6e\\xf0\\xfc\\xde\\xa6\\xf5\\x2d\\xe9\\xc9\\x93\\x37\\x4c\\xeb\\x98\\x1a\\x9b\\x51\\x9e\\x22\\xc5\\xbb\\xbc\\x42\\x03\\x9b\\xc6\\x3d\\x03\\x3a\\x30\\x41\\x1a\\x78\\xa0\\x91\\xaf\\x0f\\x41\\xa2\\x90\\xeb\\x14\\x43\\x31\\x38\\x38\\xa8\\x3d\\x04\\x83\\x82\\x2a\\xbc\\x2a\\xa4\\x14\\x5a\\xe5\\x74\\xb6\\x12\\x39\\x4e\\x0e\\x80\\x8c\\x2d\\x5b\\xcc\\xcb\\xcd\\xce\\x4c\\x4d\\xb1\\x25\\x4a\\xbb\\xa1\\xad\\x70\\x45\\x84\\x89\\x1b\\xf2\\xeb\\x0a\\x46\\x8b\\xd5\\xa4\\x76\\x6a\\xa5\\x86\\x0e\\xcd\\xef\\x44\\xaa\\xc9\\x20\\x1e\\xf2\\xf4\\xdf\\x32\\xdb\\x33\\xcb\\x1d\\xae\\x76\\xe6\\x66\\x86\\x67\\xb7\\x94\\x5a\\xdf\\xf1\\x1d\\xc6\\xfb\\x3e\\xf1\\xf5\\x9d\\xf9\\xe2\\x9d\\x7c\\x8f\\xa7\\xa0\\xc0\\xe3\\xc9\\x27\\xd5\\x81\\x4f\\x2c\\xff\\xfc\\x33\\x73\\x0f\\xf5\\xe5\\x29\\x83\\x8f\\x52\\x8e\\x62\\x4c\\x41\\xb7\\x97\\x5e\\x77\\xf7\\xf0\\xc0\\xdd\\x77\\x93\\x2f\\xf1\\x99\\x0c\\x9e\\xcf\\x48\\x2f\\x29\\xc9\\xf0\\xbf\\x4b\\xcf\\x7a\\x00\\x76\\x1d\\xcb\\xff\\x75\\x1f\\x68\\xc9\\x7f\\xef\\x03\\x75\\x1d\\x18\\x1a\\x9a\\x87\\x93\\xd1\\x2e\\xcc\\xc0\\x27\\x85\\xd7\\xf1\\xb9\\xed\\xc2\\x0b\\x2c\\x5f\\x88\\x58\\x89\\x2b\\x85\\x2c\\xdf\\xb5\\x12\\x76\\xc9\\x05\\x60\\x9d\\x52\\x9f\\xb5\\x8d\\xb7\\x84\\x04\\x07\\xa9\\x28\\x91\\x1f\\x1a\\x5e\\x77\\x69\\x53\\xa8\\x56\\x1d\\x25\\xc5\\x22\\xdd\\x5a\\xa5\\x04\\x80\\x95\\x2e\\xb7\\xda\\x89\\x77\\xff\\xf8\\x23\\x39\\x31\\xdc\\xb6\\x65\\xcb\\x39\\x3a\\xab\\xee\\x91\\x3a\\x41\\x77\\x92\\xcc\\x4a\\x7a\\x24\\x89\\x5c\\x0b\\x28\\xfa\\x4e\\xac\\x4b\\x01\\xa0\\x86\\x06\\x3e\\x2c\\x2c\\x34\\x24\\x58\\xbe\\x37\\xc5\\xd1\\x72\\x5b\\x4a\\x59\\xab\\x54\\x73\\x3b\\x36\\x29\\xa8\\xe7\\xa3\\x80\\x81\\x94\\x35\\x1c\\x7b\\xb8\\xf5\\x11\\xb5\\x56\\xad\\x8e\\x92\\xe2\\x3c\\x56\\x2d\\xe7\\x67\\x65\\xce\\x65\\x95\\x62\\xa3\\x3a\\xd4\\x09\\xa7\\xfd\\x3c\\xfd\\x14\\x96\\x09\\x77\\x92\\x5a\\x7a\\x76\\xc3\\x23\\x1b\\x7c\\x7b\\x4e\\x9d\\x22\\xb0\\xff\\x91\\xfd\\xf8\\xc4\\x8b\\xe2\\x7a\\x0f\\x0b\\x5e\\xe6\\xe4\\x06\\x21\\x06\\x0a\\xf8\\x3c\\x5d\\x24\\x91\\xcb\\x5c\\x83\\x10\\x90\\xd6\\xa9\\x91\\x60\\x2d\\xc7\\x48\\x00\\x41\\x7a\\x2f\\x76\\x9a\\x63\\x20\\x46\\xad\\xb5\\x5a\\xa5\\x52\\xc2\\x51\\x46\\x89\\x96\\x22\\x2e\\x2e\\x94\\x52\\x4f\\x6a\\xe6\\xcc\\x6c\\xdf\\x3c\\xd1\\x9c\\x6f\\x0e\\xd7\\x14\\x69\\x0a\\x4a\\x85\\xc6\\x73\\xe7\\xf0\\x18\\x37\\xf8\\x4b\\x44\\xdb\\x55\\x1d\\x59\\xca\\xe0\\x27\\x15\\x8a\\x8e\\x29\\x3c\\x7d\\x6e\\xb8\\x98\\x1b\\x1c\\xe6\\xe9\\x33\\x80\\x70\\x9b\\xe0\\x65\\x29\\xac\\x01\\xac\\xb0\\x5d\\x4e\\x47\\x45\\x22\\x52\\x30\\x23\\xa3\\x1a\\x24\\x2c\\x12\\x91\\xb0\\x3a\\xbd\\x74\\x90\\xbb\\xf8\\xa0\\xbf\\x7e\\x4d\\x8e\\x42\\x2a\\x38\\xe2\\x2f\\x4f\\xbb\\x88\\xcb\\xf5\\xbc\\x51\\x84\\x4d\\x25\\xde\\x31\\xe1\\xdb\\x4b\\x86\\xc8\\x91\\x13\\x2b\\x58\\x35\\x76\\x6b\\xb2\\x45\\x8a\\x9c\\x8c\\x96\\x49\\x5e\\xbc\\xc6\\xb1\\x35\\x93\\xeb\\xc3\\x5c\\x07\\x66\\x37\\x6f\\xed\\x70\\x66\\xb6\\x6f\\x9a\\x68\\x2e\\x30\\xc9\\xcb\\x8d\\x73\\x7a\\xb3\\x1a\\x16\\x58\\x86\\x58\\xfe\\x75\\x4d\\x6d\\x99\\x73\\x6e\\x5d\\xe2\\x33\\xc8\\xeb\\x7e\\x5e\\xa1\\x98\\x36\\x95\\x7c\\x5c\\xd6\\xea\\x8e\\xf1\\x64\\x0d\\x7f\\x2c\\xd7\\xd5\\x10\\xf0\\x8e\\x9c\\x61\\x77\\x70\\x2f\\x80\\x1e\\x52\\xe1\\x1d\\x09\\x0f\\x1f\\x4f\\x90\\x9e\\xf9\\xa0\\x97\\xd6\\x26\\x7e\\xa1\\x58\\xa7\\x17\\xdf\\x83\\xb0\\xae\\xb5\\x75\\xf4\\x99\\x82\\xa0\\x50\\x4a\\x1e\\x5c\\xa0\\x5c\\xb1\\xc2\\x1b\\xac\\x22\\x4a\\xa5\\x5c\\xc7\\x27\\x83\\x6b\\x91\\x36\\xee\\x8b\\x47\\x4a\\xbe\\x8f\\xf8\\xd1\\xef\\xee\\xc9\\xd7\\x48\\xcf\\xe6\\x92\\x3f\\x07\\xe2\\xda\\x7a\\x3e\\x3b\\x70\\x65\\xe0\\x29\\x20\\x52\\x0d\\xf6\\x58\\x37\\x51\\xbe\\x0a\\x55\\xaa\\xd1\\x60\\x78\\x2b\\xaf\\x31\\xc4\\x5b\\x8c\\xf1\\xa9\\x86\\x54\\x51\\xa9\\x44\\x26\\x9b\\x23\\x42\\x24\\xb7\\x31\\x50\\xcb\\xe4\\xc7\\x50\\xa3\\x0e\\x24\\x97\\x3d\\x5a\\x16\\xa8\\x8e\\x32\\x10\\x76\\x87\\xd0\\x5e\\xb2\\xad\\x7a\\xc6\\x81\\x45\\x25\\xc5\\x8b\\x6e\\x9e\\x51\\x7d\\x45\\x09\\xde\\x28\\xec\\xc1\\x42\\xe1\\x24\\xae\\xf6\\x35\\xa6\\xa7\\xe9\\x32\\x74\\x99\\xde\\x9c\\xf8\\x78\\x57\\xbd\\x2a\\xac\\x78\\xc3\\xf3\\x5b\\xf0\\xf5\\x2d\\xff\\x87\\xb6\\xff\\x00\\x6f\\xa3\\x4a\\xf7\\xc7\\xf1\\xf3\\x9e\\x73\\x66\\x24\\xdb\\x71\\x91\\x25\\x59\\xb2\\xe5\\x26\\xab\\x59\\x96\\xe5\\x26\\x4b\\xb2\\xe5\\x26\\x3b\\xee\\x56\\x6c\\xa7\\xd8\\x71\\x8b\\x4b\\x9c\\x38\\x4e\\x77\\x7a\\x2f\\x24\\x21\\x05\\x52\\x20\\x04\\x48\\x96\\x16\\x3a\\xa1\\x1a\\x02\\x84\\x65\\x69\\x09\\x65\\x81\\xbd\\xec\\xb2\\xbb\\x70\\xbf\\x7b\\x59\\x60\\x77\\x59\\xb8\\x2c\\x84\\xc5\\xce\\x97\\xbd\\xb0\\x90\\x68\\xfc\\x7f\\xe6\\x8c\\x24\\xdb\\x71\\x02\\x7c\\xef\\xff\\xf9\\x3d\\x3c\\x26\\xb6\\x74\\x66\\xe6\\x9c\\x77\\x4e\\x79\\xdb\\xe7\\xf3\\xbe\\xba\\xb3\\x34\\x52\\xfe\\xa2\\xd0\\xfd\\xa2\\x90\\xa3\\x26\\x74\\x16\\xc6\\x89\\xf5\\xdb\\xe7\\x0b\\x59\\xbd\\xdb\\x6a\\x13\\x83\\xba\\xf6\\x83\\xb4\\x89\\x61\\x04\\xa6\\xa3\\x1a\\x6f\\xa5\\x1c\\x64\\x28\\x1e\\x08\\x4e\\x49\\xc0\\x94\\x90\\x7a\\x14\\x86\\x30\\x09\\xc3\\x7d\\x13\\x84\\x57\\xd3\\x20\\x1a\\x50\\xb4\\x93\\x03\\xc6\\x04\\x56\\xe4\\x29\\x2d\\xf1\\x4c\\x2f\\x9a\\x6e\\xb1\\x18\\x4c\\x06\\xb5\\xd1\\x18\\x11\\x22\\xb9\\xbc\\x5c\\x6f\\x76\\xb9\\x35\\xcc\\xc9\\x16\\xca\\x7b\\x94\\xd6\\x45\\x48\\x8b\\x4e\\xe3\\xd5\\x4c\\xa7\\xce\\xcc\\xe9\\xdc\\x3d\\xa7\\x61\\x53\\xa6\\x6d\\x55\\xc5\\xcc\\xad\\x73\\x32\\x84\\xa6\\xc6\\xd9\\x1e\\x5f\\x6a\\x91\\x61\\x6d\\xdb\\x03\\x7d\\xf6\\x8d\\x33\\xe6\\x5c\\xdb\\x99\\xf3\\x79\\x41\\xd5\\xf4\\xc2\\xa8\\xe4\\x9c\\x34\\x7d\\x76\\x72\\x24\\xae\\x2b\\xc8\\x7a\\x67\\x5a\\xbc\\x05\\x5f\\xb3\\xec\\x91\\x0d\\x65\\xf9\\x79\\x8e\\x7c\\x28\\x5b\\x75\\x47\\xcf\\xdb\\x59\\x9b\\xaf\\x4d\\x89\\xbb\\xdd\\xe0\\x5c\\xec\\x70\\x95\\x6e\\x78\\x64\\xd9\\xce\\x43\\x87\\x76\\xbe\\x55\\xba\\xa0\\xca\\x64\\xaa\\x5a\\x50\\x0a\\xd3\\xf6\\x6f\\x6d\\x31\\x79\\xb3\\x75\\x08\\xe0\\x71\\x84\\x68\\x02\\x6f\\x47\\x0a\\x64\\xf1\\x1a\\xc3\\x00\\x50\\x38\\x60\\xc0\\xa2\\x2d\\x02\\x18\\x41\\xff\\xb8\\x2f\\x4f\\x81\\x14\\x26\\x93\\xe4\\xcb\\x9b\\x8c\\xcd\\x50\\xc0\\xe3\\xe5\\x9b\\x1e\\x5f\\x66\\x69\\x30\\xc7\\x2b\\x33\\x52\\xae\\xd9\\x47\\x5b\\x56\\x0f\\x6f\\x2c\\x9d\\x16\\x76\\x86\\xe3\\x6f\\xb9\\xe6\\xe2\\x23\\x08\\xd0\\x2f\\x84\\x06\\xda\\xc1\\xdb\\x91\\x15\\x95\\x79\\x8b\\x53\\x81\\xe7\\xf4\\x40\\xf9\\x08\\xc0\\x88\\xa5\\x30\\x33\\x8f\\x03\\xe5\\xf8\\x7e\\x71\\xaf\\xa6\\xed\\xb2\\x60\\xb6\\x72\\x70\\x05\\x2a\\x4d\\x26\\x85\\xd2\\x62\\x92\\xbc\\xf2\\x86\\x49\\x27\\x90\\xcb\\x29\\x6a\\x06\\x97\\x63\\x45\\x1c\\xe4\\xe8\\x9b\\xf9\\xfd\\x47\\x3a\\xec\\x73\\x33\\xa3\\xc3\\xd3\\x33\\xd3\\x23\\x66\\x36\\xdd\\x7f\\x7f\\xe9\\xda\\x07\\x16\\xe7\\xce\\xcb\\xd5\\x26\\x54\\x67\\x6c\\x5e\\xfb\\x26\\xd9\\x7f\\xa9\\x7d\\xfe\\xf1\\x45\\xce\\x18\\xf5\\x8b\\xf2\\x69\\x72\\x6e\\x68\\x21\\x79\\xf0\\xa9\\xb9\\x0b\\x4e\\x2c\\x76\\x69\\x15\\xcf\\x47\\xc5\\xac\\x1c\\x9c\\x1b\\xc8\\x7b\\xf8\\x8a\\xfe\\x81\\xfb\\x0a\\xa5\\x20\\x27\\xca\\xf6\\x66\\xaa\\x81\\x40\\x22\\x50\\x96\\x9f\\x83\\x4b\\x1b\\xae\\xc8\\x16\\x61\\xb5\\xa9\\x6d\\x46\\xb6\\x05\\x4f\\xc6\\xc7\\xb3\\x18\\xb5\\x83\\x79\\xa3\\x35\\x53\\x80\\xf2\\xab\\x27\\x03\\xe5\\xd7\\x3d\\x5d\\x61\\x36\\xfc\\xaa\\x6d\\x8e\\xd9\\x04\\x3f\\x0f\\x2f\\xdf\\x5a\\xaf\\x19\\x68\\xd8\\xfe\\xb0\\xb9\\xf9\\xb9\\xf9\\x57\\x80\\xcd\\x63\\xb4\\x74\\xec\\x3c\\x7d\\x98\\xde\\xc3\\xf0\\xea\\x2d\\xde\\x70\\x39\\x50\\x14\\x0d\\x84\\x06\\x33\\x2c\\x13\\x24\\x35\\x7a\\x5c\\x83\\x0e\\x98\\xd3\\x4c\\xc7\\xbe\\xda\\x97\\xa2\\x7a\\x7d\\xc6\\x6a\\xb5\\xa9\\xd9\\x68\\xc7\\xe7\\x7c\\x60\\x90\\x3f\\xe6\\x91\\x5c\\x2a\\x2a\\xd6\\x0b\\xee\\x2e\\x35\\x9b\\x9f\\x9f\\x33\\xc3\\x6c\\xfd\\x89\\xcc\\xed\\x22\\xa7\\x76\\x41\\xed\\xda\\xbb\\x33\\x2a\\x4e\\x76\\xfc\\x48\\x02\\x37\\x3b\\xab\\xf7\\x8e\\x7d\\xc5\\xdd\\xc7\\x7d\\x86\\x0c\\xc8\\xe1\\xcd\\x01\\x00\\x02\\xf5\\x3c\\x87\\x03\\x28\\xeb\\x00\\x0e\\x21\\xe8\\xe5\\xa9\\x62\\x93\\xda\\x80\\x0c\\x26\\xb5\\x29\\x36\\x8e\\xed\\xeb\\xea\\x52\\xc2\\x7a\\x7f\\x25\\xe4\\xb4\\x2f\\xa7\\x38\\x6d\\xda\\x4b\\xf7\\x3e\\x0d\\x57\\x07\\x50\\xbf\\x44\\xf5\\xc5\\x6d\\x9e\\x97\\xcf\\xca\\xfd\\x7b\\xae\\x82\\xa4\\x0e\\xe4\\xfb\\x72\\xb3\\xe9\\xcd\\x28\\x05\\x75\\x7b\\xa7\\x25\\xc6\\x13\\x42\\x30\\x1f\\xf0\\x86\\x48\\x0e\\x7e\\xe0\\x30\\xb7\\x9a\\x4a\\x39\\xe6\\x41\\x38\\x02\\xd3\\x26\\x13\\x27\\x7d\\x15\\xf0\\x7b\\x8c\\x87\\x1a\\xa3\\xa4\\x3c\\x57\\xa5\\x49\\x6d\\x50\\xc9\\xa4\\xd8\\xbc\\x6c\\x1c\\xab\\x36\\x31\\x51\\x54\\xed\\x72\\x39\\xb9\\xd9\\xc7\\x8e\\xff\\x29\\xea\\xf2\\x74\\xd1\\xd2\\x5c\\x7a\\xf3\\x53\\x2f\\x6b\\x2e\\x7d\\x73\\x85\\xb4\\xd1\\x23\\x9a\\xd5\\x7d\\x08\\xd0\\x9b\\x42\\x03\\xa9\\x66\\x39\\xae\\x56\\xaf\\x79\\x02\\x0a\\xe6\\x4a\\xd8\\x17\\x75\\x95\\x29\\x08\\xf9\\x9d\\x8a\\x7c\\x49\\xc4\\x19\\x45\\xab\\xef\\x5b\\xec\\xe8\\xcd\\x8d\\x8a\\x0e\\xa1\\x5d\\xde\\xb8\\x22\\xc6\\x45\\x5c\\x8b\\x0f\\x8c\\x7d\\x45\\x97\\xd2\\x26\\xa6\\xd9\\x4e\\xf7\\x7a\\x93\\x80\\xa0\\x44\\xc0\\x52\\xae\\x1c\\x47\\x31\\xd7\\x17\\xc2\\xc3\\xd5\\x34\\x84\\x50\\x72\\x55\\xe0\\x33\\xa4\\x01\\x4a\\xb7\\xa4\\xd9\\x0d\\xf6\\x00\\x34\\x4e\\x0f\\x7a\\x79\\x20\\x61\\x9b\\x4d\\x52\\x0b\\x5b\\xa4\\xfa\\xc0\\x9a\\xb4\\x94\\x12\\xa5\\xf8\\xc6\\xf5\\x2c\\x1b\\xac\\x77\\xd3\\xb9\\x7d\\x75\\xbe\\x6b\\x9f\\x19\\x5c\\xff\\xe4\\xba\\x22\\xfc\\x1e\\x97\\x51\\xbf\\xb8\\xaa\\xb0\\xbb\\xb1\\x3c\\xa9\\x49\\xd7\\xbc\\x68\\xe7\\x92\\xbc\\x59\\x65\\xb6\\x30\\x21\\x59\\x57\\xd8\\x4e\\x9b\\x66\\xde\\xf0\\xfa\\x1a\\xeb\\x86\\x37\\x6f\\x9c\\x09\\x35\\x3b\\x9f\\x5e\\x76\\xa8\\x6c\\xc5\\xac\\xec\\xe8\\x78\\x83\\xf2\\x0e\\x4d\\x96\\x49\\x73\\x69\\x5e\\x7a\\x75\\x4f\\x41\\x7c\\x4e\\x6b\\xb9\\x49\\xe2\\x4a\\xa4\\x7f\\x25\\x65\\xdc\\x3f\\x91\\x1c\\x25\\x79\\x13\\x78\\x82\\x18\\x50\\x07\\x00\\x61\\xb4\\x46\\xdc\\x59\\x70\\x08\\x50\\xae\\x36\\x58\\x64\\x06\\xa7\\xc9\\x41\\xca\\x5e\\xb9\\xe5\\xe6\\x97\\x20\\xf2\\x20\\xbd\\xa8\\x3b\\x70\\x20\\x69\\x14\\x01\\x28\\xe8\\x5f\\xc9\\x3b\\xec\\x1e\\x3a\\x71\\xd2\\x00\\x82\\x7a\\xe6\\xca\\x14\\x35\\xc2\\x52\\x14\\xba\\x83\\xdb\\xa1\\xe6\\x0c\\x26\\xa7\\x03\\xaf\\x38\\xfa\\x8e\\x70\\xfe\\x98\\xf0\\xcf\\xdf\\x70\\x0b\\xf7\\xc7\\x5e\\xfc\\x5e\\x85\\x10\\x40\\x36\\xbd\\x81\\x3c\\xc9\\x9d\\x42\\x6a\\x94\\xec\\xd5\\x05\\xf2\\x75\\x24\\x5a\\x01\\x08\\x04\\x41\\x8c\\x2a\\x23\\x23\\x13\\x98\\xb2\\x98\\xc9\\x93\\xf6\\xd9\\x1b\\xea\\xeb\\x37\\xcc\\xb6\\x3f\\x1d\\x9d\\xe6\\xb4\\x98\\x5d\\xfa\\x68\\xee\\x54\\xe9\\x60\\xbd\\xd5\\x5a\\x3f\\x58\\x9a\\x98\\x67\\xd1\\x68\\x2c\\x79\\x89\\xe2\\x33\\x3e\\xa1\\xef\\xe2\\x0b\\xdc\\xef\\x50\\x44\\x20\\x87\\x53\\x0a\\x61\\x80\\xcf\\x98\\x26\\x85\\x72\\x26\\x64\\xb4\\x7c\\x52\\x5d\\x5e\\x51\\x5d\\x5d\\x51\\x5e\\xcd\\x35\\xb9\\xeb\\xea\\xdc\\xae\\xba\\x3a\\x84\\xe1\\x18\\xcd\\x23\\x6e\\xee\\x57\\x48\\x89\\x0c\\x68\\x85\\x14\\x4e\\x8d\\xbd\\x2c\\x20\\x52\\x4c\\x82\\x61\\xd4\\xcb\\xbf\\xa9\\x24\\xc1\\xf0\\xe9\\x95\\xae\\xb9\\x52\\xf3\\xf6\\xf6\\xf6\\x67\\x8d\\x3f\\x1a\\xa2\\x0e\\x86\\x4f\\xe1\\x58\\x5a\\xe1\\x8c\\x4c\\x9b\\xaf\\x20\\x35\\xb5\\xc0\\x67\\xcb\\x9c\\x51\\x98\\xb6\\x3c\\x26\\xc9\\xa4\\xce\\x28\\x28\\xc8\\x50\\x9b\\x92\\x62\\xe8\\xff\\xd8\\x6a\\x9d\\xc9\\xc9\\xce\\x5a\\x5b\\x66\\x4d\\x7e\\x62\\x62\\x7e\\x4d\\x66\\x9c\\x49\\x17\\x53\\x68\\xcf\\xf2\\x44\\x27\\x9a\\x11\\xc0\\x6e\\x61\\x16\\x89\\x42\\xc5\\x48\\x23\\xca\\x3e\\x9c\\xbd\\x3f\\x4d\\x18\\x66\\xf1\\xa1\\xe0\\xf2\\x31\\x99\\x44\\x11\\xe9\\x79\\x7e\\xa2\\x02\\x11\\x08\\x1d\\xe0\\xff\\x6e\\x69\\x4c\\x4d\\x4f\\xb1\\x47\\xa7\\x27\\xb6\\x55\\x65\\xfa\\x0a\\xf5\\x29\\x45\\xad\\x05\\x96\\xf9\\xc5\\x29\\xe9\\x31\\xb2\\x43\\xd1\\x49\\x09\\x79\\x0d\\xb9\\x96\\x99\\xbe\\xca\\x04\\x36\\xdf\\xf6\\xd0\\x4f\\x89\\x8f\\x13\\x50\\x0a\\x6a\\xf2\\xc6\\x22\\x20\\x38\\x06\\x10\\xe0\\xfa\\x14\\xc0\\xb5\\xd1\\x80\\x6a\\x1a\\x86\\xcd\\x2c\\x5f\\x2f\\x10\\xa4\\x2f\\x0d\\x45\\x0f\\x59\\xd4\\x32\\x96\\x25\\xa1\\xa2\\x9e\\xd0\\xd7\\xe0\\x6b\\x7f\\x56\\x99\\xa1\\x9c\\x94\\x88\\x3a\\x21\\x0b\\x35\\x38\\x41\\x7c\\x29\\x05\\x4d\\xd9\\x79\\x55\\xc5\\x25\\xe9\\xca\\xb4\\x84\\xe8\\x6d\\x29\\xee\\xc6\\x1c\\x6b\\x55\\x79\\x85\\x45\\x69\\x48\\x88\\xe6\\x3e\\xce\\x6a\\xa9\\xb0\\x24\\xa6\\x25\\x46\\x27\\x9a\\x35\\x89\\xf6\\xd6\\x4a\\xab\\xf8\\xbb\\xce\\xa2\\x91\\xf4\\xde\\xbf\\xd2\\x4f\\x89\\x9f\\xfb\\x9a\\xe5\\xb6\\x05\\xf3\\xa2\\x58\\xdc\\xa1\\x74\\x22\\x53\\x06\\x18\\x88\\x83\\x18\\xf0\\x25\\x00\\xe1\\xb7\\xaf\\x0d\\x5c\\xb8\\x78\\x86\\xfb\\x5a\\xf8\\x16\\xc2\\x85\\x6f\\x59\\x0c\\xed\\x09\\x61\\x3f\\x1e\\x1d\\x7b\\x9a\\x79\\xbe\\xca\\x82\\xf0\\x28\\x89\\x9a\\xa0\\x3f\\xb8\\x45\\x31\\x17\\x8a\\x76\\xfc\\x53\\x00\\x3c\\x37\\xf0\\x1d\\x86\\xa6\\xf6\\x67\\x8d\\x66\\x69\\x22\\x70\\x53\\x26\\x42\\x30\\x8c\\x9c\\xc6\\xc3\\x13\\x09\\x99\\x45\\x69\\x7a\\x4f\\x46\\x7c\\x7c\\x86\\x47\\x9f\\x56\\x94\\x99\\xb0\\xc0\\x94\\x10\\xaf\\xd7\\xc7\\x27\\x98\\x3e\\xd5\\x17\\xa4\\x6b\\x34\\xe9\\x05\\x7a\\xbd\\xdb\\xa2\\x8e\\xb3\\xb8\\xf4\\x09\\x69\\x69\\x09\\x89\\x46\\xa3\\xf8\\x4e\\x2e\\x9d\\xa6\\xcf\\x0b\\x31\\xbc\\x56\\xe2\\x1b\\x88\\xfb\\x59\\x7c\\xd6\\x81\\xac\\x67\\xe2\\x10\\x62\\x6e\\x7d\\xe3\\x77\\xf4\\x79\\xe8\\x46\\xe0\\x5f\\x49\\x7f\\x29\\xbc\\xca\\xc7\\x4f\\xbc\\x4f\\xf0\\xac\\x03\\x76\\x1f\\xf1\\xcf\\x96\\xc0\\xbd\\x11\\x8c\\xdf\\xc7\\x41\\x0c\\xfe\\xef\\xfe\\xe3\\xb5\\x1b\\xf8\\x78\\xe1\\xe4\\xd8\\xd8\\xa5\\xed\\xf4\\xd3\\xb1\\x6a\\x4e\\xc0\\x32\\x74\\xcf\\x45\\xa9\\x9e\\x0a\\xf8\\xbd\\xf4\\x33\\xe1\\x04\\xbf\\x03\\x29\\x51\\x96\\xd7\\x16\\x2b\\x9a\\xd5\\x41\\x26\\xa3\\x7e\\x24\\xae\\x19\\x51\\x4b\\x22\\xed\\x14\\x08\\x22\\x33\\x10\\x42\\x4a\\xa4\\x54\\xc4\\x29\\xd8\\x7e\\x61\\x91\\x32\\xf2\\x0c\\xee\\x60\\x7a\\x81\\x7f\\x8e\\xac\\xae\\x42\\x63\\x75\\xeb\\x65\\x0f\\x3d\\x9c\\x90\\xe1\\x4a\\x04\\xfa\\xd9\\x4d\\x5c\\xa2\\x41\\x95\\xa8\\x90\\x6f\\x5e\\xdc\\x66\\x74\\x1a\\x54\\xb4\\x4a\\x7c\\x6f\\x97\\xa2\\xe8\\xa7\\x63\\xb9\\xe3\\xef\\x7e\\x52\\xa9\\x82\\x71\\xea\\x0a\\xe9\\xed\\x0b\\xf2\\xdf\\x0a\\xef\\x01\\x87\\x93\\x5f\\xfe\\x9f\\xef\\xe8\\xa7\\xe2\\xab\\x87\\x70\\xb1\\xdf\\x29\\xc2\\x6d\\x82\\x67\\xec\\x36\\x14\\x71\\xa5\\x18\\xb2\\xb4\\xf1\\x70\\x13\\x36\\x1e\\x7f\\x4a\\x5d\\x65\\x65\\x7d\\x7d\\x65\\x65\\xdd\\x7f\\xbb\\xeb\\xeb\\xd9\\xbe\\x03\\x38\\x9f\\x7e\\x43\\x56\\xf0\\xd7\\x04\\x38\\x24\\x2e\\x13\\xa2\\x22\\x06\\xcb\\x24\\x11\\xe2\\xcd\\xff\\x7a\\x7d\\x1d\\x7f\\x8d\\xb0\\x1a\\x21\\x02\\x94\\xbe\\x4b\\x53\\xf9\\xcf\\x59\\xce\\xb4\\x0e\\xf5\\x04\\xd1\\x6f\\x8c\\x87\\x43\\x22\\xea\\xc2\\x9d\\xe2\\xf1\\x9d\\x47\\x82\\xe1\\x8d\\x2b\\x7c\\x99\\x43\\x18\\x34\\xee\\x4a\\x17\\xb5\\xb7\\x7b\\xc3\\x8c\\x46\\xa3\\x41\\x11\\xc3\\xcb\\x12\\xd8\\xe3\\xb9\\xab\\xf9\\x5c\\xb6\\x7e\\x7b\\xec\\x46\\xe1\\x4c\\x75\\x69\\x49\\x75\\x75\\x49\\x69\\x35\\x56\\x07\\x7f\\xe3\\x3f\\x17\\xfe\\x6b\\xbd\\xb3\\xa6\\xc6\\x99\\x5f\\x5d\\xed\\x74\\x56\\x57\\x3b\\xf3\\x6b\\x6a\\x10\\x1a\\x1b\\xc3\\xd9\\xb8\\x96\\x54\\x93\\x99\\x98\\x47\\xeb\\xcb\\xc4\\x09\\x77\\x12\\x21\\xea\\x0a\\xf1\\x5f\\x49\\xc9\\xd5\\x38\\x5d\\x54\\xa4\\xac\\x12\\x13\\x87\\x4c\\x13\\x60\\xab\\xa1\\x2e\\x7f\\xe7\\x05\\x72\\x0b\\xfd\\xfa\\x62\\x2c\\xe3\\xa4\\xc2\\xc8\\x82\\x10\\xfd\\x33\\xf3\\x93\\x31\\xc6\\x59\\x1e\\x18\\x07\\x16\\x42\\xe9\\x4c\\x39\\xe8\\x98\\x7c\\x0f\\x07\\xe8\\x4d\\x7a\\xc0\\x49\\x9f\\xc2\\x07\\x17\\x7d\\xe0\\xc6\\x75\\xc2\\x67\\xdc\\xf0\\x0f\\xcd\\x67\\xc9\\xc3\\xcc\\x5f\\xdc\\x37\\xf6\\x15\\x5d\\xcf\\xbd\\x86\\x08\\xd2\\xa1\\x5c\\xc6\\x33\\x07\\x08\\x71\\x20\\xf1\\xcc\\x89\\x9b\\x54\\x4e\\xc8\\xe3\\x9b\\x8b\\x7d\\x56\\xab\\xcd\\x14\\x90\\x8e\\xde\\xa9\\xe7\\x7e\\x92\\xa3\\x8a\\x94\\x09\\x6d\\xf0\\x10\\xb8\\x7f\\x2e\\x53\\xd5\\x96\\x57\\xce\\xfe\\x6c\\xae\\x2a\\x09\\x17\\xf3\\x68\\x90\\x37\\x07\\x01\\xa4\\x33\\x37\\x8e\\x55\\x62\\xdb\\x95\\x49\\x6c\\xbb\\x0e\\x30\\xe0\\x45\\xc2\\x33\\xff\\x86\\x3f\\x7c\\x0a\\x7f\\xf8\\x9e\\x76\\x5f\\xbc\\x47\\x1c\\xbd\\x14\\xc3\\xdc\\x83\\x10\\xf5\\x06\\x72\\x7c\\x25\\x8e\\x3d\\x89\\x4f\\xad\\x0f\\x71\\x1c\\xf3\\x0b\\xa5\\x87\\x12\\xf1\\xad\\x10\\x64\\x6a\\x93\\x25\\xd8\\xdc\\x7a\\xb5\\x9e\\xf1\\x28\\xeb\\xd5\\xfa\\x3d\\xe4\\x85\\x4b\\x95\\x3d\\xf8\\xdf\\x7e\\x79\\x0b\\xb9\\xed\\xd2\\xc2\\xb3\\x67\\x49\\xc3\\x8b\\x24\\xed\\x5c\\x08\\x5f\\xe2\\x09\\x72\\x12\\x21\\x00\\x66\\xbf\\x4f\\xec\\x64\\x0c\\x95\\x69\\x83\\x4c\\x72\\x7a\\xea\\xb9\\x20\\xe4\\x5f\\x20\\x8f\\x07\\x5f\\x34\\xa0\\x95\\x08\\x18\\x07\\xe1\\x34\\xd1\\x3a\\x92\\x01\\xc1\\xd3\\x78\\x44\\x10\\xe1\\x00\\x10\\xa9\\x0f\\x72\\xf5\\x4d\\xee\\xa3\\x4a\\xa1\\x10\\xef\\x09\\xc0\\x60\\x2a\\xe0\\xd4\\xab\\xf5\\x40\\x8a\\x85\\xa5\\xf8\\x9d\\x8b\\x17\\xe1\\x77\\x42\\x2e\\xf9\\xd8\\xdf\\x09\\xc7\\xf0\\x6f\\xfd\\xdf\\xbc\\x72\\x2b\\x2e\\xc7\\x65\\xc7\\xcf\\xf9\\xff\\xc5\\x64\\x51\\x11\\xc8\\xbb\\x8e\\x47\\xa9\\xc8\\x82\\x52\\xbd\\x49\\x26\\x63\\x72\\x92\\x26\\x32\\x1c\\xc9\\x11\\x30\\x3a\\x63\\xf6\\x1c\\x2b\\xf2\\x25\\xea\\xd8\\xda\\x9c\\x54\\x44\\x43\\xca\\xf6\\x07\\x55\\x9c\\x46\\xc1\\xf3\\x5c\\xbe\\xd9\\xa2\\x70\\xb9\\xf0\\x77\\xfd\\x0f\\x6c\\xac\\xac\\xdc\\xf8\\x40\\xff\\x68\\xff\\x83\\x1b\\xa7\\x4f\\xdf\\xf8\\x60\\xff\\xa8\\x50\\xb0\\x6a\\xd1\\xa2\\x55\\xf8\\xce\\xa1\\x81\\x81\\x21\\xfa\\xdf\\xe1\\x73\\xae\\x7b\\x61\\x68\\xe8\\xf9\\x03\\x73\\xc2\\xcf\\xbe\\x12\\x36\\xe7\\xc0\\xf3\\x43\\x43\\x2f\\x1c\\x6c\\x09\\x7b\\xdb\\x9f\\x7a\\xf0\\xa1\\x58\\x7c\\x54\\xf9\\xe8\\xf5\\x07\\x1f\\x51\\xfa\\x57\\x28\\x4f\\x31\\x59\\xce\\x46\\x88\\x9e\\x62\\x35\\x50\\x52\\xbd\\x49\\xf1\\x51\\x11\\x88\\x32\\x60\\x12\\xc6\\x6c\\xda\\xb3\\xc1\\xab\\x35\\x1a\\x15\\x1b\\xbc\\xcb\\xc5\\xf4\\xf1\\x28\\x2c\\x53\\x18\\x14\\x59\\x84\\xfd\\x11\\xa7\\x51\\x38\\xf0\\xc5\\xb6\\x85\\x17\\xca\\x56\\xdd\\xd9\\x3b\\xda\\x7f\\xcf\\x1a\\xef\\xe8\\xb2\\xae\\x51\\x1c\\xa3\\xb9\\xfb\\x16\\x3c\\xcb\\xff\\xf8\\xe6\\x5f\\xed\\x69\\x9c\\x26\\x3c\\x03\\xf5\\x11\\xbe\\x3d\\x2f\\x6e\\x15\\x3f\\xb9\\xe5\\x6e\\x0d\\x39\\x29\\xcd\\xb3\\x0e\\x84\\xe8\\x46\\xee\\x35\\x64\\x47\\x19\\x5e\\x4b\\x0c\\xc2\\x81\\xe5\\x16\\x58\\x1e\\xe2\\xe6\\x01\\xed\\x1c\\x48\\x2f\\x20\\x21\\x43\\xa1\\x49\\x17\\x27\\x89\\xa9\\x94\\x38\\x03\\x91\\x3e\\xb5\\x2a\\x56\\xa3\\xd6\\x8b\\x3a\\xb0\\x73\\x22\\x07\\x31\\x96\\xe9\\xd5\\x7a\\x7c\\x7f\\x6e\\xa3\\x3b\\xf9\\xe8\\x8e\\xed\\x47\\xd7\\x2f\\x14\\x72\\x81\\x2b\\x5e\\x50\\x93\\x3e\\xe3\\xba\\x73\\xeb\\xd6\\xbd\\x7a\\xfd\\x0c\\x4b\\x4d\\x7f\\x31\\x84\\x0b\\x39\\x5f\\x47\\xce\\xdc\\xf7\\xf2\\xb6\\x8a\\xff\\xfc\\xe0\\x83\\xff\\xac\\xb8\\x28\\xfc\\x2b\\xe1\\xeb\\x73\\xf6\\x9d\\xbf\\x78\\xb4\\xc3\\x7b\\xfd\\xe7\\x0f\\x76\\x75\\x3d\\xf8\\xf9\\xf5\\xde\\x8e\\xc7\\x4e\\xec\\xb4\\x9f\\x63\\x7b\\xc3\\xba\\xb1\\xf3\\xf4\\x10\\x6d\\x44\\x7a\\x94\\x8f\\xfe\\x21\\x9d\\xcb\\x31\\xa9\\xc0\\x93\\xcc\\x0c\\x8c\\xf8\\xe8\\x30\\x2c\\x4e\\x9d\\x00\\x87\\x87\\xf8\\x39\\x9d\\xf4\\xf9\\x65\\x1f\\x71\\x84\\x39\\xbd\\xc4\\x5d\\x36\\x1e\\xf1\\x3c\\xe9\\x94\\x51\\x4c\\x88\\xa3\\x81\\x91\\x4c\\x74\\x62\\x00\\xc8\\x85\\xa0\\xaf\\xeb\\x2a\\x0d\\x32\\x21\\xc8\\x18\\x92\\x24\\x5a\\x0d\\xb6\\x06\\xd6\\x0c\\x4d\\x6d\\xe4\\x35\\x22\\xc4\\x73\\x3c\\xe2\\x86\\x2e\\x6f\\x87\\x38\\x2e\\xd4\\xac\\xbd\\xbd\\xdd\\xab\\x40\\x28\\x27\\x2b\\xdd\\x8c\\xf4\\x48\\x6f\\x35\\x1a\\x4d\\x72\\x99\\x36\\x98\\x6c\\x25\\x69\\x70\\x41\\xb6\\xda\\x60\\xd6\\xb4\\xc6\\x0d\\x01\\xd3\\xcc\\x19\\x74\\x77\\x91\\x4b\\x11\\x2a\\x5d\\x8c\\x4e\\xa5\\x4d\\x2d\\x49\\x9b\\xb9\\x26\\xd9\\x71\\xe3\\xfc\\xde\\x5b\\x06\\x9c\\xce\\x81\\x5b\\xe6\\xf7\\x1d\\x71\\xb8\\x04\\xa2\\x75\\xb6\\x94\\xd4\\xcd\\x4f\\x49\\x9d\\x5f\\x5d\\xd2\\xea\\xd2\\x52\\xcf\\xa5\\x6f\\x8c\\x59\\xba\\x70\\xee\\x49\\x55\\x44\\x79\\x6d\\x45\\x75\\xe3\\xf5\\x67\\xd7\\xa8\\xb7\\xbf\\x77\\xa2\\xa5\\xae\\x62\\x83\\xff\\xe5\\xea\\xcd\\x1d\\xf9\\xee\\xec\\x44\\xf0\\xdb\\x5d\\x25\\x8b\\xaf\\x6f\\x14\\xdf\\xc1\\x7d\\xc2\\x46\\xba\\x8e\\x7b\\x1d\\x25\\x20\\x0f\\x7a\\xd4\\x1b\\x25\\x07\\x9e\\xd8\\x80\\xe3\\x95\\x8c\\x4f\\x27\\x80\\x42\\x95\\x03\\x41\\x3c\\x47\\xf8\\x7e\\x66\\xfa\\xcb\\x00\\xa1\\x1c\\x69\\xa4\\x08\\x20\\x57\\xdc\\xc7\\xed\\x8c\\x6b\\x25\\xe3\\xca\\x6d\\xf3\\x42\\x6d\\x33\\x83\\x6d\\xbd\\x46\\x84\\x01\\xaf\\xf9\\xd1\\xb6\\xcc\\x4b\\x18\\x9f\\xa8\\x03\\x54\\xe8\\xce\\xb6\\x9b\\x8d\\x3a\\x4f\\xa2\\x47\\xad\\x52\\x44\\xa3\\x04\\x48\\x08\\x93\\x05\\x8c\\xb6\\x09\\x29\\x7d\\x2c\\x96\\x95\\x5f\\x8a\\x95\\x13\\x12\\x47\\xd5\\x8a\\x09\\x6c\\xf1\\x06\\x27\\x5e\\x3f\\x70\\xff\\x3a\\x6f\\x7f\\xdb\\xa6\\x6b\\x2a\\xd6\\x3f\\xb8\\xa0\\xe1\\xe6\\xb2\\x91\\xfa\\x1d\\x0f\\x77\\x16\\xce\\x74\\x68\\x75\\xf9\\x8d\\xf9\\x39\\xb3\\x4b\\x0c\\x19\\xdb\\x9a\\x8b\\xbb\\xbd\\x69\\xc9\\x85\\xad\\xee\\x2d\\xdc\\xeb\\x05\\x8b\\x8e\\x76\\x74\\xdf\\x96\\x63\\x7f\\x71\\xd7\\x92\\xfb\\x56\\x15\\xa5\\xdb\\x04\\x0f\\xf7\\x50\\xc7\\x6d\\x43\\x5e\\xff\\xf1\\x14\\x77\\x53\\x4e\\xba\\xcf\\x63\\x4c\\x2b\\x9e\\x93\\x77\\xe9\\x63\\x73\\x96\\xb9\\xb2\\xd3\\xe5\\xe8\\xae\\xce\\x38\\xc3\\xd6\\xa0\\x53\\xe8\\xa1\\x0f\\x51\\x0f\\x0a\\x17\\x6d\\xba\\x30\\x0e\\x93\\x20\\xa2\\xd2\\x26\\xae\\x7e\\x3b\\xf8\\x62\\x63\\x83\\xe7\\x9d\\xc2\\xa0\\x00\\x07\\x68\\xdc\\xe4\\xc9\\xef\\x84\\xd2\\x11\\xa1\\xf4\\xdf\\x90\\xaf\\x50\\x52\\xcf\\xc5\\xf3\\x82\\x07\\xde\\xa6\\x8a\\x4b\\xff\\xae\\x9f\\x21\\xe9\\xc1\\x4b\\xc6\\xbe\\xa2\\x6b\\xf9\\x14\\xd1\\xe2\\x45\\xf9\\xde\\x5c\\x39\\x00\\xca\\x50\\x84\\x11\\x0a\\xb8\\x1e\\x51\\x20\\x40\\x19\\xb3\\x26\\x50\\x04\\xfd\\x41\\xb7\\x4c\\x2e\\xf6\\x95\\x95\\xe6\\xe7\\x65\\x5b\\x8c\\x9c\\x4c\\x13\\x72\\xcb\\xc8\\xc4\\x63\\x2f\\x80\\x96\\x98\\x10\\xb4\\x66\\xfb\\xa2\\xdb\\x6c\\x56\\x4e\\x74\\xd1\\x58\\x44\\x19\\xfe\\xe0\\x5a\\x78\\x74\\x5e\\xd3\\xf1\\xc6\\x4c\\x55\\x61\\x65\\xbd\\xb9\\xa9\\x23\\x3a\\xc3\\x57\\xf2\\x8f\\xcf\\xab\\xf6\\xbc\\xb2\\x79\\xeb\\xd9\\x6b\\xab\\x9c\\x5d\\x9b\\xab\\x48\\xe7\\x60\\x8f\\xbe\\x72\\x49\\x5d\\xed\\xe0\\x74\\xbd\\xa5\\x76\\xa0\\xac\\x76\\x49\\x95\\x9e\\x7e\\x59\\xbb\\xa6\\x39\\x23\\xcb\\x70\\xb7\\x4c\\x15\\x1b\\x59\\xe1\\x54\\x98\\x33\\x6c\\x71\\x8d\\xc2\\x17\\xbf\\x57\\xad\\x7e\\xed\\x86\\x59\\x33\\x0f\\x9f\\x5b\\xa5\\x6a\\xb9\\x79\\x5d\\x73\\xcc\\xb4\\xf4\\x03\\xfe\\xad\\xb5\\x3b\\x7b\\x0b\\x0a\\x7a\\x77\\xd6\\xaa\\x0a\\x57\\xf7\\x56\\x4d\\x2b\\xec\\xdd\\x5e\\x15\\xf2\\xe1\\xd0\\x1d\\x74\\x06\\xf2\\xa0\\x72\\x6f\\x29\\x91\\x30\\x7c\\xa2\\x9d\\x0f\\x64\\x08\\xf1\\x94\\xa3\\x3c\\x37\\x84\\x08\\xa2\\x3c\\xc3\\x2b\\x4a\\xf0\\x13\\xb6\\x04\\x19\\x5b\\x74\\xae\\xcc\\x67\\x54\\x99\\xf5\\xe9\\x46\\x55\\x86\\x5c\\x96\\x68\\x53\\x5e\\x1d\\x42\\xe2\\x70\\xa8\\x03\\x12\\x91\\xb2\\xb2\\x02\\x22\\xd9\\xbb\\x6c\\x69\\xcf\\xc2\\xca\\x9d\\xcf\\xad\\xed\\x7f\\x72\\xcf\\x8c\\x11\\x4b\\x65\\x97\\xb3\\xa6\\xcf\\x13\\xaf\\x2d\\x9c\\x57\\x35\\x3a\\x7a\\x60\\x5b\\x4a\\xc5\\x40\\x75\\xd9\\x82\\x1a\\xd3\\xd7\\x73\\x0f\\x3f\\x3d\\x6f\\xed\\x8b\\xfb\\xeb\\x21\\xaf\\x6b\\x47\\xaa\\x71\\x53\\xed\\x8c\\xf5\\x4d\\x56\\xfb\\x9c\\x4d\\xbe\\x14\\x87\\x59\\xad\\x4d\\x77\\x24\\x24\\x3b\\x8c\\xaa\\x47\\x6b\\x9a\\x93\\x5d\\x19\\xf1\\x09\\xb6\\xc2\\x94\\xf6\\x6b\\x66\\xa7\\x67\\xce\\xd9\\xc4\\xc6\\x37\\x5f\\xd8\\x41\\xb3\\x58\\x9d\\x04\\x93\\x37\\x0d\\x18\\xc7\\x99\\x56\\x23\\x55\\x42\\x81\\x76\\x71\\x17\\x49\\x67\\xb1\\x94\\x0c\\x94\\x61\\x4d\\x27\\xe2\\x94\\x57\\x83\\x54\\x9f\\x47\\xa3\\x49\\x26\\xea\\x28\\x22\\xb3\\xb8\\x5c\\x16\\x97\\xd9\\xc2\\x10\\x32\\xb1\\x6e\\xd0\\x3b\\x69\\x96\\x30\\x58\\xb9\\xa4\\xce\\xac\\xb4\\x96\\xd9\\xff\\x50\\x3c\\x50\\x67\\x05\\x4b\\x51\\xb5\\x7e\\x6b\\x4e\\x16\\x40\\x49\\xc3\\x99\\xee\\xdd\\x33\\x8d\\x4f\\xfc\\x12\\x38\\xff\\x52\\x6e\\xf8\\x06\\xa1\\xab\\x6c\\xf9\\xf2\\x8d\\x75\\xd9\\x95\\x39\\x29\\x61\\x99\\x51\\xa9\\xf9\\xcd\\xa5\\xd6\\x8e\\xd6\\xfa\\xf8\\x7e\\xd7\\x6c\\x93\\xde\\x1d\\xa5\\x57\\x94\\x75\\x6d\\x69\\xdc\\x07\\x86\\x53\\xa0\\x78\\x45\\xec\\xeb\\x0d\\x42\\x1f\\x2d\\x65\\xbc\\x01\\xcb\\x26\\xf0\\x4f\\xc4\\x32\\x70\\x76\\x80\\x7f\\x42\\xfa\\x23\\x10\\x6b\\xd1\\x8c\\xf3\\x4f\\x38\\x1a\\x10\\x21\\xd6\\xc0\\xd4\\xd7\\x79\\x75\\x9c\\xb4\\x69\\x8e\\xbf\\xb1\\xf1\\x6f\\x25\\x1e\\x0a\\x35\\x52\\x2b\\x0d\\x6a\\x03\\x2f\\xbb\\x8c\\x87\\x22\\xc4\\xa7\\xb1\\x34\\xb2\\xe0\\xc1\\x65\\xad\\x07\\xfb\\x5d\\xa3\\x43\\xcb\\x5b\\x36\\x98\\x47\\xa8\\xe7\\xf6\\xd9\\xf3\\x32\\xfb\\x4f\\xae\\xb9\\xf8\\x0c\\xad\\xdb\\xb4\\xa4\\x30\\xf7\\xd2\\x47\\x52\\xdc\\x84\\xa0\\xd3\\x63\\xe7\\x69\\x2e\\xab\\xb7\\x92\\x86\\x6c\\x68\\x66\\x00\\x47\\x8e\\x28\\xc2\\x84\\xe2\\xbe\\xe0\\x6e\\x93\\x13\\x8a\\xfa\\xe4\\x8a\\x16\\xd7\\x94\\xef\\xf3\\x42\\xdf\\x67\\xb2\\xcc\\x0f\\x83\\xda\\xa4\\xb6\\x1a\\x99\\x6e\\x39\\xa5\\xee\\x0a\\xd1\\x87\\xa6\\x12\\xe8\\x03\\xa7\\x2a\\xcd\\x2d\\x5d\\x7b\\xff\\xa2\\x81\\x07\\xd6\\x95\\x95\\xad\\xbd\\x7f\\x60\\xd1\\x03\\x6b\\xcb\\x46\\x84\\xbe\\x84\\xfc\\xc6\\xfc\\xfc\\x19\\xf9\\x09\\x42\\x1f\\xdc\\x35\\xb8\\x78\\xd1\\x22\\x1c\\x7f\\xe0\\xdd\\x43\\xb5\\xb5\\x87\\xde\\x3d\\x00\\x9b\\x0e\\xfc\\xe1\\x48\\x5d\\xdd\\x91\\x3f\\x1c\\x10\\xfe\\xef\\xad\\xad\\x5b\\x1a\\x8d\\xc6\\xc6\\x2d\\xad\\x30\\xfb\\x9a\\x47\\x8e\\x1f\\x7f\\x04\\x01\\x1b\\x53\\x19\\xf3\\xbb\\xd5\\x7b\\xc3\\xc3\\x01\\x48\\x04\\xf3\\xd3\\x4f\\x60\\xd8\\x10\\x6d\\x3e\\x5b\\x28\\xd5\\x3e\\x17\\x07\\x19\\x36\\x26\\x7f\\x9e\\x89\\x7d\\xed\\xcf\\xaa\\x2d\\x26\\xa6\\xda\\x29\\xf5\\x41\\xaf\\xe0\\x38\\x0c\\xfe\\x34\\xce\\x89\\xcf\\x70\\x27\\xdb\\x9b\\x74\\xf6\\xd4\\xd2\\x92\\xd2\\xd4\\x59\\xdb\\xe7\\xda\\x85\\xb3\\xd4\\xe3\\x4f\\x2e\\x9a\\xae\\x97\\x27\\x2b\\x4e\\x69\\x93\\x63\\x78\\x73\\xeb\\xa1\\x45\\x58\\x2b\\xce\\x91\\xcc\\xb1\\xaf\\xe9\\x0a\\xee\\x07\\x94\\x89\\xb6\\x4a\\x11\\xf1\\x98\\x69\\x00\\xd8\\xa6\\xc7\\x84\\x00\\xae\\x4f\\x03\\x54\\xa3\\x9b\\xf8\\x51\\x1a\\x50\\x44\\x82\\x9c\\x0b\\x29\\xa1\\x95\\x1d\\xc4\\xbf\\x5b\\x25\\x99\\x53\\x49\\x03\\x15\\x5f\\xca\\x84\\x16\\xe2\\x40\\x58\\x03\\x96\\x6d\\x99\\x4b\\x7d\\xed\\x67\\x4c\\x75\\xe9\\x71\\x31\\x9c\\x2c\\xde\\xa6\\xd7\\x03\\xd3\\xed\\x79\\x99\\x25\\xc0\\xbf\\x0d\\xa2\\x8a\\x9f\\xe7\\x72\\xb9\\x65\\x01\\xbe\\x55\\x22\\x83\\x3c\\xe1\\x07\\xd8\\x9d\\x11\\x69\\xcc\\x2a\\x4c\\x8b\\xb6\\x2a\\x48\\xa4\\xde\\x68\\x8a\\xa9\\x5b\\xd9\\xec\\x8c\\x81\\xbe\\xf0\\x24\\x63\\x86\\x56\\x1e\\x2e\\x0f\\x0f\\xa3\\xd1\\x19\\xd1\\x95\\x8b\\x67\\x16\\x6b\\x9e\\x4e\\xa1\\xb1\\x4b\\xd3\\x2a\\x9d\\x7a\\x0a\\xa7\\x89\\x8c\\x27\\xee\\x59\\xbd\\xe9\\x97\\x56\\xa4\\x16\\xd9\\x75\\x80\\xe1\\x45\\x5e\\x66\\xad\\x1f\\x2c\\x85\\x7f\\xec\\x93\\xf6\\xad\\xc7\\x85\\xf5\\xb4\\x95\\x7b\\x0d\\x55\\xa0\\x4c\\xaf\\xb5\\x02\\x10\\x71\\xb3\\xf7\\x63\\x36\\x61\\x5c\\xc3\\x4c\\x66\\xdc\\x13\\x52\\xc9\\x90\\xcf\\x5b\\xaa\\x4f\\x37\\x52\\xf1\\x38\\x98\\x90\\x20\\x14\\xda\\x92\\x34\\xc1\\x12\\x70\\x16\\x56\\x47\\xc0\\x72\\x19\\x1a\\x2e\\x4e\\x43\\x65\\xa9\\x05\\x2e\\x67\\x72\\xc7\\x66\\x9f\\x3e\\xad\\x69\\x57\\xef\\xd1\\x23\\xef\\xbf\\x95\\xdb\\xb2\\xba\\x62\\xa9\\x67\\xa0\\x3e\\xc3\\x52\\x54\\xa3\\xdf\\xa8\\xd5\\xc7\\x85\\x97\\x57\\x17\\x6d\\x7a\\x71\\x77\\xe5\\xa3\\x77\\x6d\\xdb\\x5b\\x77\\xf0\\x37\\xbb\\x66\\x1d\\x28\\xa0\\x1f\\xc9\\xa3\\xc2\\xb8\\x84\\xcc\\x62\\xbd\\xb5\\x32\\x4f\\xf7\\xea\\x91\\x1b\\x8a\\x3a\\xca\\xad\\x11\\xda\\xa8\\xa4\\xbc\\xe6\\x72\\x69\\x23\\xd0\\x65\\x5a\\xad\\x5a\\x4b\\xa6\\x22\\x5a\\x57\\xb6\\xe0\\xe6\\xa1\\xa3\\xe7\\xb2\\xd2\\x8f\\xf4\\xb5\\xec\\x9b\\x97\\xab\\x55\\x89\\x63\\xec\\x1e\\xfb\\x8a\\xfe\\x9e\\x7a\\x90\\x2e\\xc8\\xb9\\x23\\x4e\\x44\\x24\\x4d\\x44\\x5d\\xf0\\x0f\\x0a\\x78\\x9c\\x3b\\x04\\x98\\x87\\x6d\\x88\\x23\\x18\\x21\\x96\\x64\\x60\\x63\\xea\\x68\\x6e\\x30\\x7b\\x87\\x22\\xa0\\x93\\xbe\\x45\\x94\\x5a\\x1b\\xa4\\xe9\\xdb\\xee\\x0d\\x57\\x28\\x14\\x6a\\x93\\x29\\x46\\x26\\xd3\\xb1\\xc8\\x4f\\x60\\xaa\\x06\\x5d\\xda\\x52\\x62\\x88\\x9e\\x6e\\xb9\\x21\\x4a\\x6b\\x50\\x27\\xd9\\x15\\x76\\x77\\x5f\\x5e\\xf9\\x82\\xca\\x34\\xe1\\x8f\\x23\\xbb\\x68\\x12\\xd9\\xee\\x3f\\x65\\xcd\\xd1\\xf2\\xd1\\xe1\\xf7\\x99\\x54\\x29\\x75\\x1b\\xda\\x71\\xc7\\xa5\\x5d\\x64\\xfb\\x0b\\xd2\\xd9\\x7a\\x54\\xe8\\xa5\\x2d\\x01\\x9e\\x9a\\x16\\x6f\\xb8\\x01\\x28\\x91\\x03\\x9a\\x10\\x13\\x09\\x1c\\xa8\\x8e\\x50\\x74\\x27\\x37\\xb4\\x9b\\x5d\\xe1\\xcb\\xcc\\xe0\\x66\\x76\\xc6\\x6a\\x35\\x29\\x8d\\xe2\\x94\\x84\\x49\\x2a\\xca\\xe4\\x13\\x48\\xe6\\x08\\x25\\xdc\\xb4\\xb8\\x96\\xdc\\xbe\\x70\\xe1\\x71\\xd7\\x48\\xfd\\xae\\xa7\\x17\\xaf\\x7f\\x72\\x43\\xf1\\x48\\x42\\x61\\x57\\x45\\x79\\x57\\x51\\x22\\x40\\xda\\xea\\x8e\\x8a\\xee\\x62\\x1d\\x7c\\xbf\\xe6\\xec\\xc1\\xc6\\x8a\\x12\\xff\\xb7\\xe4\\x2f\\x5b\\x5e\\xdb\\x5f\\xdb\\x72\\xe2\\xbd\\xed\\x8d\\xd7\\x2f\\x2e\\x29\\x9d\\xbf\\xb5\\x04\\x84\\x6f\\x0b\\xab\\xf3\\x3b\\x37\\x57\\x23\\x40\\x03\\x42\\x0b\\x2d\\xa0\\x8d\\x28\\x17\\x99\\xbd\\x06\\x7d\\x2a\\x86\\x1a\\x04\\x18\\xd6\\xb0\\xd5\\x45\\x00\\x21\\x07\\xf6\\x01\\x62\\xf4\\x7e\\xb9\\x90\\x4b\\x83\\xfa\\x94\\x61\\x22\\xff\\xb0\\x26\\x99\\x68\\x26\\xcc\\x3c\\xa3\\xa4\\x24\\xe0\\xde\\xc1\\xc7\\xb6\\x55\\x7f\\x92\\x54\\x32\\xaf\\xac\\x6e\\xa1\\x37\\xc9\\xd0\\xb0\\x76\\x56\\xdf\\xb1\\x05\\x4e\\x70\\xcc\\x5c\\xe4\\x1c\\x88\\x73\\xe7\\xe8\\x07\\x16\\x08\\x97\\x2e\\x55\\x5c\\xf3\\x02\\x6d\\x74\\x0f\\x1e\\xef\\x1d\\x87\\x3f\\xaf\\x9a\\xeb\\x09\\x8f\\x32\\x15\\x77\\x4e\\xf7\\x2e\\x99\\x5b\\xa1\\x39\\x1c\\x96\\x6a\\xf7\\x18\\xb3\\xf2\\x22\\xd2\\x21\\xe2\\x7d\\x46\\x01\\x88\\x02\\x71\\xb6\\xf3\\x74\\x2f\\xc3\\x3c\\x64\\xa2\\x72\\x49\\xfe\\x71\\x34\\x48\\x4e\\x68\\x0b\\x85\\x39\\x72\\x19\\xd3\\xd8\\x15\\xbe\\xc8\\x64\\x72\\x37\\x59\\xd3\\xd9\\x56\\x00\\xfa\\x89\\xe1\\x27\\x09\\x73\\x00\\x53\\x82\\x50\\x74\\xaf\\xf0\\x5d\\xcb\\x82\\xf2\\x6d\\xcf\\xac\\xdb\\xf0\\xdc\\xce\\x8a\\x8a\\xed\\xcf\\xad\\xc7\\x45\\x97\\x7e\\x9d\\x54\\x32\\xbf\\xaa\\xa2\\xbb\\x24\\x31\\xb1\\xa4\\x67\\x7a\\x65\\x5f\\x49\\x12\\xd9\\x38\\xfd\\xec\\x7a\\xf5\\xc0\\x2f\\x0f\\xce\\x9e\\x73\\xd3\\xdb\\xeb\\xd5\\xab\\xce\\x1d\\x9e\\xe5\\xff\\x53\\x28\\xfa\\x54\\xb9\\x79\\x9e\\xcb\\x35\\x6f\\x73\\xa5\\xb8\\x36\\x44\\xbb\\x46\\x4f\\x3d\\x28\\x1e\\xcd\\x98\\xb8\\x2c\\x02\\xa3\\x91\\x42\\x9b\\x88\\x9d\\x81\\x13\\x37\\xe8\\x2b\\x7d\\x91\\xc9\\x98\\xb0\\xc4\\x2d\\x5a\\x1a\\xcd\\xd4\\x2d\\xda\\xa9\\xa7\\x29\\xc2\\x43\\xda\\x8c\\x82\\xd4\\x9c\\x86\\x14\\x73\\x6a\\x49\\x71\\xa9\\xbe\\x79\\xdb\\x5c\\xbb\\x70\\x07\\x79\\x98\\xac\\xf1\\x8f\\x94\\xd5\\x18\\xc3\\x12\\x62\\x1e\\x53\\x25\\x44\\x71\\x96\\x8e\\xa3\\x4b\\x71\\xf8\\xaf\\x11\\xa0\\xeb\\xc6\\xce\\xd3\\x19\\xd4\\x83\\x52\\x82\\xac\\x4c\\xb1\\xcc\\xd3\\x6f\\x6b\\x08\\x56\\x35\\x61\\xfd\\xb9\\xfc\\x43\\xb1\\x2f\\xde\\x69\\x52\\x64\\xc9\\xaa\\x31\\x89\\x3a\\x25\\x04\\xa9\\x53\\x9c\\x66\\x6c\\x71\\x4c\\x20\\x8d\\x51\\xc0\\x26\\x43\\x69\\xab\\x63\\x7a\\x4f\\x49\\x22\\xf1\\xe6\\x8c\\x68\\x32\\x52\\x94\\xf9\\xab\\xcf\\xec\\x5e\\x75\\x7a\\x5b\\x05\\xf5\\xf8\\x6f\\x9e\\x39\\x54\\x95\\x52\\xbd\\xea\\x70\\xcd\\x5e\\x80\\x6d\\x59\\x2b\\xaf\\x39\\x36\\x6b\\xc3\\xfb\\x77\\x77\\x17\\x6e\\x38\\xb3\\x03\\x2f\\x16\\xe7\\x40\\xbb\\x90\\x46\\xef\\xa7\\x5e\\x64\\x42\\x0e\\x64\\xf7\\x66\\x84\\x01\\x46\\x66\\x83\\x12\\x89\\xbb\\x45\\xbd\\x1c\\x50\\xed\\xf8\\x4c\\x16\\x8f\\x33\\xec\\xcb\\xcd\\x36\\x19\\x13\\xb4\\xa2\\x86\\xc4\\x49\\x9a\\x90\\x26\\x8a\\xc8\\xc4\\x09\\xac\\x98\\x58\\x7f\\x4b\\x61\\x50\\x96\\x12\\xa7\\xa4\\xfd\\x62\\x58\\x7b\\xcf\\x42\\xfb\\xf6\\xb5\\xc7\\x2c\\x05\\xc6\\x58\\xac\\xcc\\xac\\x71\\x58\\x6a\\x07\\xcb\\xbb\\x6e\\x1a\\x70\\x67\\x0f\\x3e\\xb0\\x61\\x74\\xd4\\xdd\\x90\\xa5\\xc6\\xb1\\xc6\\xfc\\xb4\\xa4\\x84\\x08\\xe5\\x92\\x5f\\xbc\\xb8\\xf0\\x11\\x88\\x6e\\x3b\\x9a\\x3e\\x6f\\xc1\\x40\\x6e\\xf1\\xaa\\xf9\\xf5\\x6a\\x3c\\x54\\xb8\\xa0\\x2e\\xa3\\xed\\xd8\\xab\\x4b\\x17\\xfc\\xea\\xf8\\xe2\\x58\\x21\\x0b\\xdf\\xa6\\xaa\\xef\\x1b\\xf2\\x54\\x6d\\xeb\\x29\\x48\\xd7\\x8b\\x73\\xa0\\x49\\x48\\xa3\\x4f\\x52\\x0f\\x32\\x88\\xeb\\x2f\\x4d\\x1d\\x0b\\x54\\x0a\\xcb\\x00\\x6a\\xa7\\x04\\x13\\x84\\x6c\\x10\\x08\\x3a\\x6a\\xe2\\xe3\\x25\\x59\\x96\\x12\\xa7\\xd9\\x6c\\x71\\x48\\x06\\xcd\\x04\\x77\\x80\\x38\\x10\\xfc\\x45\\xf1\\xac\\x7c\\x0d\\x64\\xa6\\x9e\\x4f\\xcd\\xcd\\x59\\xf6\\xf8\\xf6\\x91\\xfe\\x3b\\x57\\x16\\x8d\\xea\\xf2\\x2a\\x33\\xa8\\xe7\\xd2\\x2e\\x55\\xd3\\xe0\\xe6\\xf2\\xdd\\x97\\x36\\x75\\x5e\\xbc\\x67\\xe9\\x1b\\x27\\x97\\x2b\\x84\\x6c\\xf8\\x63\\x4c\\xdb\\xb1\\xf7\\x0e\\xc2\\x17\\x82\\xba\\x7d\\x5f\\x5f\\x59\\x0c\\xd9\\x82\\x00\\x95\\x8e\\x7d\\x45\\x6f\\xa3\\x1e\\xe4\\x12\\x2d\\x08\\x1b\\x48\\xce\\x12\\x82\\x08\\xa0\\x21\\x19\\x8f\\x09\\xb1\\x31\\x77\\x0f\\xed\\x12\\x15\\xb4\\x5c\\x2a\\x76\\xcf\\x85\\x5c\\x46\\xab\\xc6\\xa4\\xb6\\xc8\\x45\\x55\\x87\\xc7\\xb2\\xe0\\xfb\\x0e\\xc6\\x10\\x2f\\x7b\\xf5\\x21\\x7b\\x56\\x54\\x47\\x8f\\x66\\xba\\x71\\x98\\x4a\\xaf\\xd5\\xa4\\x27\\x2b\\xbe\\x53\\x24\\xa5\\x6b\\xb4\\x69\\xaa\\x30\\xec\\xce\\x1c\\x51\\x99\\x12\\x63\\xf4\\xf5\\x1b\\xdb\\xe6\\x6c\\x31\\x99\\xb6\\xcc\\x6e\\xdb\\x54\\x9f\\x5a\\x92\\x4e\\x3d\\xdb\\x84\\xb1\\xbd\\x8d\\x47\\x96\\x97\\xeb\\xeb\\xd6\\xb5\\xc0\\x74\\xe1\\xc5\\x96\\x75\\x75\\x7a\\xef\\xf2\\x23\\x4d\\x13\\x26\\xc9\\xc9\\xee\\xfe\\xde\\xde\\xfe\\xee\\x93\\xef\\x6f\\xb8\\x1f\\x48\\x97\\x94\\xe3\\x3e\\xf6\\x15\\x7d\\x9a\\xf9\\x3b\\x8a\\x91\\xdb\\x9b\\xef\\xb0\\x67\\x10\\xa0\\xf1\\x98\\x11\\xe3\\xd6\\x23\\xa0\\x98\\x02\\x1e\\x9a\\xe0\\x1f\\x0c\\xcc\\x9a\\x5c\\xe4\\x2b\\x70\\xd9\\x4d\\x6a\\x0b\\x27\\x2a\\x99\\xbc\\x6c\\x7c\\xe6\\xba\\x03\\x6b\\xcc\\xe9\\x9c\\xe8\\x02\\x51\\xb8\\x5c\\xcc\\x34\\xd7\\x28\\x02\\x80\\x39\\xfa\\x74\\x41\\x4d\\xc5\\xa6\\x87\\x17\\x2d\\x7e\\x6c\\xcb\\xf4\\x2f\\xf4\\xa5\\xed\\x85\\xfd\\x2b\\xc4\\x5f\\x9d\\xbd\\x7b\\x9a\\x66\\xed\\xea\\xca\\x4d\\x2d\\x4a\\xf4\\x3f\\x94\\x5c\\xdc\\xe6\\xf1\\x14\\x26\\xd8\\x53\\x63\\x71\\xbb\\x6a\\xda\\x96\\x15\\x8f\\x6d\\x2c\\xab\\xdc\\xf2\\xc8\\x20\\x58\\x40\\xf8\\x53\\xc9\\xfc\\x6a\\xf3\\xbe\\x3d\\x3b\\x94\\x5d\\x7b\\x1f\\x9e\\xaf\\x9c\\x7b\\x5d\\x6f\\x5e\\xfe\\x82\\xa3\\xf3\\x84\\xb7\\x68\\x84\\x0c\\x2c\\xce\\x9e\\xe6\\x62\\x05\\x14\\x74\\x36\\xc7\\x9a\\x8b\\x33\\xc4\\xf7\\x86\\x10\\xfd\\x3d\\x77\\x0e\\x99\\x51\\x86\\xd7\\xa2\\x93\\x63\\x40\\x26\\x65\\x0c\\x1b\\xa0\\x04\\x13\\xa7\\x92\\x45\\x8e\\xb1\\x15\\xfb\\xcc\\x2a\\x95\\x49\\x3a\\x72\\xa4\\x02\\x38\\x52\\x22\\x84\\x8c\\x19\\x9a\\xd2\\xaf\\x16\\x49\\xa3\\xd6\\x28\\x35\\x6e\\x52\\xac\\x2b\\xab\\x6d\\xb6\\xa7\\x14\\xeb\\x34\\x34\\x3e\\x2a\\xd5\\xad\\x10\\xfe\\xcf\\x88\\xf0\\x5f\\x8a\\x82\\xd4\\xc8\\x78\\xaa\\xd1\\x15\\xa5\\xda\\x9b\\x6a\\x4a\\x13\\xef\\x57\\x28\\xe8\\xab\\x55\\x7d\\x25\\x89\\xe1\\x51\\x2f\\x12\\x92\\x6a\\xf4\\x0f\\xf8\\xcf\\x63\\x2d\\xbe\\xd5\\x98\\x4a\\xc8\\x8b\\x51\\xe1\\x09\\x45\\x7d\\xd5\\xc2\\x92\\xba\\x5a\\x84\\x91\\x66\\xec\\x2b\\xfa\\x16\\xe3\\xca\\x29\\x40\\x2e\\xaf\\x63\\x1a\\xf0\\x32\\xa8\\x47\\x32\\xc4\\x23\\x19\\x2f\\x9d\\xec\\x81\\xed\\x4d\\x0e\\x3c\\x1f\\x72\\xca\\x98\\xd4\\x16\\x95\\x42\\x63\\xb4\\xc4\\x84\\xc9\\x92\\x6c\\x60\\x18\\xb7\\xe7\\x83\\x53\\xc9\\xe5\\x36\\x38\\xf5\\x60\\x36\\x5b\\xf4\\x3c\\x1f\\x9a\\x80\\x4e\\x47\\xa8\\x12\\xd8\\x5b\\x5b\\x53\\x2d\\xa9\\xb5\\xeb\\x5b\\x5a\\xb7\\x9b\\x4d\\xdb\\x5b\\x5b\\xd7\\xd5\\xa6\\x5a\\x52\\x96\\xd0\\xa7\\x84\\x0f\\x89\\x35\\x4d\\x48\\x33\\x64\\x60\\x79\\x6c\\xb2\\x26\\x3e\\x23\\x25\\xf6\\xdb\\xd8\\x14\\x9b\\x36\\x2e\\x39\\x56\\x4e\\xae\\x5d\\x38\\xba\\xb7\\xe7\\xde\\x8d\\x95\\x03\\xf3\\xe7\\x0f\\x54\\x6e\\xbc\\xb7\\x67\\xef\\xe8\\xc2\\x67\\xfc\\x43\\xeb\\x47\\xd7\\xad\\x1b\\x5d\\x9f\\xdf\\x55\\x6d\\x15\\xe7\\xe0\\xdf\\xff\\x2e\\xce\\xc0\\xf4\\xea\\x2e\\xc9\\x7f\\x3b\\xf6\\x7f\\xe9\\x41\\x6e\\x18\\xe9\\xd1\\xc2\\x67\\x30\\x50\\xc6\\xe7\\x64\\x60\\x7c\\xa0\\xc0\\x01\\x83\\x1f\\xc8\\x00\\x21\\x79\\x3b\\x92\\xcb\\xe3\\xa4\\xc4\\x08\\x1e\\x30\\x4e\\x0e\\xf0\\x81\\x5e\\xa1\\x09\\xcf\\x6b\\x42\\x09\\x14\\xc9\\x6c\\x6b\\x55\\x28\\x14\\x0a\\xb3\\x42\\x9b\\x17\\x13\\xc6\\xb3\\xfc\\xca\\x09\\x95\\xef\\x18\\xe0\\xcc\\x1c\\xb4\\x7f\\xc4\\x4d\\xbf\\x41\\x88\\x52\\x59\\x13\\x56\\x0c\\x6f\\xad\\xc8\\x1d\\xbc\\x67\\x15\\x2e\\xae\\xcf\\x88\\x82\\x0d\\x5b\\xb4\\x26\\xe5\\x05\\xe1\\x05\\x6a\\xa1\\x5f\\x0b\\xfd\\x18\\x7b\\x56\\x9f\\x5a\\xd1\\x71\\x62\\x65\\xe9\\x19\\x53\\xe9\\x2c\\xfb\\xd6\\xbd\\x04\\xfc\\x1b\\xe8\\xd7\\xe7\\x24\\x1d\\x75\\xc5\\xd8\\x57\\x74\\x13\\xf7\\x06\\xb2\\x89\\xb6\\xb5\\x68\\xec\\x10\\x4c\\x87\\xe4\\x20\\xe3\\x78\\x4e\\xc6\\x0f\\x21\\x8a\\x38\\x19\\x1d\\xaf\\x82\\x92\\x14\\xa2\\x33\\x4d\\x46\\x01\\x22\\x12\\x83\\x42\\x6d\\x54\\x59\\x8d\\x61\\xbc\\x2e\\x58\\xee\\x26\\x64\\x02\\x8d\\xd7\\xbb\\xd1\\x87\\x32\\x9e\\xe8\\xa6\\x30\\xdf\\xee\\x33\\x6b\\x36\\x9e\\xdd\\x57\\x57\\xbf\\xef\\xc5\\xb5\\x1b\\x9f\\xdf\\xd5\\x10\\x3e\\x2a\\x33\\x4d\\x5f\\x50\\x5d\\x31\\x50\\x6d\\xc4\\x61\\xfe\\xef\\x6e\\x38\\xb0\\x73\\x77\\x14\\xbc\\xbc\\xf8\\xd1\\x2d\\xd3\\xe7\\xdc\\xfe\\xd1\\x7e\\xc8\\xda\\xff\\xd1\\x1d\\x2d\\xe5\\x5b\\x9e\\x5a\\x55\\xbd\\xb4\\xd6\\xe8\\x1e\\xbc\\xa5\\xdb\\x71\\xae\\xe8\\xf5\\x77\\xaf\\x3d\\x2c\\xe9\\x09\\x69\\x08\\xd1\\xdb\\xb8\\x61\\x94\\x8c\\x6c\\xc8\\xe3\\x75\\x23\\x14\\x06\\x32\\x8a\\x18\\x03\\x36\\xd7\\x2e\\x07\\x8e\\x8b\\x63\\x65\\x71\\xa1\\x53\\x5c\\x22\\x1a\\xf0\\xa5\\xa4\\x20\\x94\\x62\\x4b\\xc9\\x48\\x4b\\x45\\xc9\\x28\\x59\\x6f\\x52\\xa4\\xeb\\xc3\\xf9\\xf8\\x89\\x08\\x17\\x51\\x85\\x64\\x48\\x17\\xa7\\xb4\\xc3\\xc1\\x38\\xda\\x05\\xfb\\xb3\\xe7\\xee\\xef\\xc9\\xcd\\xed\\xd9\\x3f\\x57\\xb8\\x74\\x97\\xb9\\x79\\xdb\\xdc\\x24\\x55\\xaa\\x3d\\x29\\x12\\x37\\x3b\\xd2\\x0b\\x8c\\x31\\xb1\\x26\\x8f\\x85\\x1b\\xf6\\x7f\\x51\\xb5\\xe5\\x54\\xff\\x82\\x53\\x5b\\xaa\\xe8\\xd7\\xfe\\xd3\\x8f\\xfa\\x1f\\x9c\\x79\\xb6\\x60\\xfd\\x33\\xdb\\x48\\xb4\\x3f\\xdd\\xff\\x85\\xbd\\x61\\x7e\\x7e\\x5e\\x6f\\xbd\\x9d\\xf5\\x7d\\x05\\x42\\x74\\x3f\\xe3\\x0d\\x31\\x88\\x7b\\x16\\xc2\\x61\\x20\\xa7\\x58\\xde\\x8f\\x10\\xa2\\x32\\x44\\xfb\\x78\\x00\\x88\\x6b\\x40\\x32\\x19\\xe9\\xe2\\x80\\x10\\x0d\\xf1\\x69\\x34\\x1a\\x83\\x26\\x2d\\x4d\\xa1\\x50\\xa4\\xeb\\x15\\x31\\xe1\\x7c\\xa2\\x0d\\x1c\\x0a\\xc7\\x64\\x74\\x0e\\x4b\\xaa\\x1c\\x07\\xe8\\xcc\\x7e\\xe3\\x23\\x4d\\xc7\\xc1\\xf9\\x0e\\xc7\\xfc\\x83\\x1d\\xff\\x7a\\xe3\\xb3\\xcf\\xe0\\x5e\\x5d\\x46\\x89\\x39\\x56\\x99\\x5e\\x9a\\x41\\x2a\\xf1\\x32\\xff\\xdb\\x15\\xeb\\xee\\xe9\\xeb\\xbb\\x6f\\xe3\\x74\\xbc\\xdb\\xbf\\x8d\\x1b\\xf6\\x87\\x09\\x51\\xd6\\xea\\x8e\\xbc\\x9c\\x8e\\x4a\\x2b\\xf3\\x61\\x21\\x44\\x3b\\x98\\x8f\\xdd\\x22\\x4e\\x60\\x89\\x17\\x82\\x83\\x80\\x72\\x1e\\xc7\\x54\\x77\\x0d\\xcb\\x97\\x36\\xa9\\xcb\\x63\\x64\\xe2\\x2c\\xd0\\x2b\\x5c\\x79\\x13\\x39\\x23\\x0d\\x81\\xa9\\x5a\\x26\\xa4\\x47\\xa9\\xc9\\xe2\\x87\\x37\\x56\\x8c\\xea\\xdc\\xb3\\x0b\\xcc\\x17\\x84\\x97\\x69\\x38\\xfd\\x5a\\xd8\\x00\\xd9\\x0b\\x6f\\x5f\\x26\\xb8\\xe0\\xed\\xd2\\x39\\x8e\\x38\\x7f\\x67\\x68\\x6e\\xee\\x15\\x8e\\xb3\\xba\\x31\\x11\\x52\\xbd\\x1f\\x42\\x59\\x26\\x43\\x9c\\xa8\\x15\\x91\\x8e\\x80\\x44\\x02\\x11\\x0e\\x3e\\xc1\\xa6\\x64\\xc9\\xe0\\x52\\x5c\\x62\\xef\\x28\\xbc\\x73\\x41\\x38\\xf5\\x7f\\x85\\xdb\\xb8\\xe1\\x8b\\x0a\\x3a\\xf2\\x43\\xb3\\x70\\x1c\\x06\\x45\\x99\\xdf\\x18\\x18\\x4f\\x0c\\x4a\\x42\\xd9\\xde\\x4c\\x04\\x3c\\x70\\x14\\x38\\x56\\xcd\\xb1\\x1d\\x11\\x12\\x17\\xca\\x06\\x92\\x46\\x95\\xa4\\x48\\x4c\\x53\\xa4\\xeb\\x63\\x64\\x3c\\xd3\\xbb\\x26\\xcc\\x12\\xfd\\x04\\x29\\xd3\\x74\\x7f\\xe7\\x1f\\xb7\\xbc\\xb2\\xa7\\xaa\\x6a\\xcf\\x2b\\x5b\\x84\\x22\\x72\\xab\\xbf\\xf3\\x8f\\xb5\\x83\\xd3\\x53\\x53\\xa7\\x0f\\xd6\\xd2\\xaf\\x85\\x43\\x65\\x6b\\xee\\xed\\x5f\\xf0\\xc0\\x86\\x0a\\x6e\\xd8\\x1f\\x2e\\xc8\\x32\\x6a\\xbb\\xf3\\xf3\\xda\\xa7\\x5b\\x18\\x1e\\x45\\x38\\x41\\x77\\xb3\\xfe\\x68\\x90\\xcd\\x9b\\x8e\\x01\\x11\\x34\\x13\\xc9\\x64\\x6c\\x87\\x8c\\x6b\\x60\\xb9\\x4a\\x2c\\x52\\xa2\\x61\\x91\\x92\\x38\\x86\\x45\\xe7\\x59\\xd6\\x9b\\x5e\\x61\\x20\\x8e\\x52\\xe2\\x56\\xea\\x15\\x0e\\xf1\\x4c\\xd6\\x2b\\x0c\\x74\\xe1\\x1f\\xfd\\x37\\xff\\x87\\xa9\\xd8\\x5e\\x95\\x93\\xc4\\x1b\\xf1\\x93\\x1b\\xfc\\x0f\\x84\\x79\\x9d\\xb0\\xea\\x43\\x46\\x1e\\x73\\x02\\xa7\\xeb\\x7a\\xee\\xf8\\xec\\x2e\\x3c\\xe7\\xa2\\x02\\xdf\\x36\\x22\\xfc\\x6a\\x11\\xb5\\x8b\\x72\\x96\\x23\\x44\\x9f\\x67\\xf5\\x79\\x72\\xbd\\x59\\x4a\\x39\\x46\\x1c\\xd4\\xcb\\x80\\xd5\\x64\\xe0\\x50\\x9f\\x9c\\xc7\\x62\\x4f\\xc2\\x44\\x2d\\x50\\x03\\x3e\\xb5\\x8a\\x65\\x6a\\x32\\x84\\x9f\\xb8\\x3f\\xb1\\x29\\x47\\xf4\\x4a\\xa2\\x57\\xb2\\xa9\\xa8\\xd4\\x13\\xa5\\x9e\\xc8\\x1d\\x1f\\x17\\xde\\x2f\\x8c\\x08\\x1f\\x83\\xfc\\x06\\xf7\\xc7\\xb9\\x87\\x40\\xfe\\xe7\\x1f\\x84\\x11\\x3c\\xe8\\x3f\\xce\\x7e\\xbe\\xc6\\xe7\\xfc\\xfb\\xf0\\x26\\xf6\\x53\\xea\\x8f\\x45\\x80\\x66\\x8f\\x7d\\x45\\x77\\xb3\\xfa\\xab\\x8d\\xde\\x86\\x94\\x2b\\xd6\\x5f\\x95\\xc3\\x65\\x05\\x58\\x93\\x42\\x05\\x58\\x93\\xa9\\x0f\\x50\\x51\\xa1\\x23\\xd7\\x9e\\x99\\x6e\\x8e\\x53\\xc5\\x44\\x47\\x84\\xa1\\x62\\x28\\x0e\\xe3\\x45\\x7b\\x66\\x82\\x1f\\x78\\x52\\x21\\xd6\\x49\\x20\\xf0\\x20\\xd3\\x80\\xd9\\x60\\x70\\xe2\\xa1\\xda\\x85\\xe5\\xc9\\xfa\\xea\\xa5\\xf5\\x05\\xbd\\x35\\xd6\\xd1\\x99\\xd7\\x9d\\x19\\xd8\\x78\\xee\\x40\\x7d\\x4a\\x51\\x8b\\x6b\\xd3\\xae\\x99\\x47\\xdf\\xdc\\xd8\\xfb\\xc2\\xcd\\x5d\\x17\\xac\\x0d\\x83\\xde\\xba\\xd5\\x8d\\xd6\\x9b\\x8e\\xbc\\x48\\xaa\\xf4\\x9e\\x59\\x79\\xf6\\x99\\x25\\xc6\\xd4\\x82\\xa6\\xac\\xee\\x5b\\x17\\x17\\x38\\x17\\xdf\\x36\\x90\\xd7\\x35\\xb3\\x42\\x9b\\xf1\\xc8\\x8e\\x81\\x93\\xcb\\x0b\\x73\\x17\\x9d\\x1c\\xca\\x69\\x29\\x33\\x1a\\xcb\\x5a\\xf3\\xb6\\xad\\x79\\x49\\x9a\\xdf\\xfb\\x02\\xf1\\x54\\x56\\xa7\\x27\\x8c\\xe2\\x20\\x6d\\x5d\\x1c\\xa3\\xad\\xd3\\x04\\x08\\xdc\\x78\\xad\\xb8\\xc8\\x0d\\x0a\\x30\\x28\\x1c\\x0a\\x52\\x75\\xe1\\x82\\xe0\\xb8\\x70\\x81\\x1b\\xfe\\xa1\\x99\\x7c\\x78\\xc9\\xc8\\x0d\\x5f\\x62\\xb9\\x03\\xc8\\x86\\x10\\x2d\\x65\\xd8\\x0a\\xb6\\x4e\\x81\\xb6\\x8b\\xda\\x5b\\xdc\\x38\\x7e\\x4e\\xc3\\x36\\x6c\\x25\\x52\\xea\\x4d\\x0a\\x05\\x2f\\xde\\x54\\x5c\\x28\\x84\\xc7\\x3c\\x2f\\x6e\\x75\\xe2\\x3c\\xa2\\xa5\\x17\\x84\\x93\\x18\\x67\\x75\\xdf\\xb8\\xa0\\x24\\x3d\\xc7\\x6b\\x89\\x01\\x22\\x3e\\x87\\x7e\\xed\\xff\\xd5\\xd3\\x82\\x70\\x7f\\xe3\\x59\\xe2\\x5c\\x73\\x66\\x2f\\x91\\x89\\xcf\\xd3\\x8e\\x9d\\xa7\\xaf\\x71\\xc3\\x28\\x41\\x7c\\x9e\\x36\\x12\\x48\\x90\\x10\\x4f\\x1a\\x00\\x0a\\xf0\\xe1\\x25\\x83\\x2f\\xce\\x62\\x8a\\x65\\x83\\x98\\x40\\x87\\x17\\x08\\xb5\\xba\\x41\\x8f\\x13\\x5b\\xa1\\x0a\\x22\\xfd\\xdf\\x6a\\xbd\\x9d\\xdb\\x5a\\x6b\\x57\\xa4\\xc4\\x45\\x9a\\x6d\\x99\\xca\\xec\\x6a\\x47\\x5a\\x44\\x9a\\x10\\x0d\\x72\\xb2\\xe8\\x9f\\xc4\\x75\\x71\\x66\\xc1\\x82\\x19\\x76\\x6d\\xf8\\x2f\\x69\\x98\\x9c\\xd3\\x58\\xf2\\x93\\x6a\\xc5\\x99\\x2b\\xed\\x11\\x77\\xd3\\xdf\\x8d\\xef\\x11\\x40\\x67\\x49\\x7b\\x84\\xb8\\xdd\\x73\\x1d\\x88\\xe3\\x34\\xdc\\xd4\\x3d\\xc2\\x41\\xa4\\x3d\\xe2\\xa5\\x0b\\x0f\\xab\\xfe\\x7c\\xe9\\x01\\x69\\x8f\\xb8\\xa8\\xf4\\x7f\\x0c\\x3d\\x2c\\xdf\\x1d\\x21\\x5a\\xcd\\x0d\\x23\\x8d\\xb8\\x43\\xc4\\x01\\xc1\\x44\\xe2\\x2b\\x27\\xe2\\xfe\\x07\\xfd\\x1c\\xc5\\x18\\xc7\\x35\\xa0\\xa0\\x4c\\x35\\x48\\x63\\x52\\x1b\\x42\\x32\\x9d\\x9a\\x5d\\x47\\xab\\x2f\\x14\\x6e\\xaf\\x1c\\xb8\\x6f\\x75\\xc9\\x68\\x7c\\xae\\xcf\\x51\\xbc\\xbb\\x98\\xd5\\xd8\\x2b\\x8d\\x8d\\xcb\\x5f\\x39\\xbc\\x15\\x7e\\x23\\x38\\x9b\\x16\\x95\\xc4\\xab\\x94\\x78\\x58\\x1a\\xd3\\x00\\x42\\x74\\x0d\\x1b\\x93\\xc9\\x9b\\xc6\\x73\\x84\\x88\\xc7\\x00\\x53\\xc9\\x3b\\x10\\xa5\\x1a\\xa6\\x91\\x47\\xa0\\x08\\x36\\x2c\\x99\\x74\\x78\\x05\\xfe\\xd3\\x2b\\x60\\xf6\\x03\\xff\\xb8\\xff\\x9f\\x17\\xbf\\x09\\x8c\\x89\\xed\\x7d\\x5c\\xf0\\xbe\\xc2\\xdd\\xf4\\x6f\\x0c\\xdb\\x6b\\xf7\\x66\\x20\\x0e\\x71\\xb3\\xe4\\x32\\xe9\\xe6\\x14\\x63\\x84\\xf8\\x0e\\x51\\x19\\x61\\xe4\\xeb\\xd1\\x28\\x3a\\x80\\xba\\x61\\xe7\\x7a\\xe8\\xfe\\x4c\\x70\\x81\\x67\\xac\\x50\\x7d\\x70\\x69\\xcd\\xf8\\x63\\x2e\\xc6\\xf8\\xff\\x06\\x3d\\xdc\\x30\\xc2\\xc8\\x81\\x10\\xdd\\x79\\xa5\\x3d\\x36\\xe0\\x79\\xfc\\xb1\\x3d\\x56\\x79\\xd5\\x3d\\xd6\\x81\\xd1\\xf2\\xb5\\xa7\\x37\\x97\\x95\\x6d\\x3e\\xbd\\x56\\xb8\\x47\\xb8\\x80\\xd1\\x72\\x6f\\x67\\xa1\\x4e\\x57\\xd8\\xe9\\xe5\\x86\\xfd\\x4f\\x97\\xae\\xba\\xab\\xaf\\xf7\\xee\\xb5\\x5e\\xfa\\x8d\\x7f\\x58\\x48\\xb2\\x54\\x76\\xe4\\xe5\\xb6\\x7a\\x4d\\xcc\\xf7\\xbb\\x04\\x21\\x3a\\xc8\\x38\\x09\\x62\\x51\\x0a\\x1b\\x3b\\x92\\x01\\xcf\\x21\\xbe\\x5f\\x3c\\xbd\\xe2\\x58\\xac\\xa9\\x2b\\xa0\\x1f\\x28\\x95\\xca\\x14\\x65\\x32\\x3b\\x61\\x53\\xe5\\x7c\\x82\\x0d\\x26\\xf4\\xc6\\x01\\x97\\x9d\\xad\\x9d\\x35\\xf3\\x0e\\xcf\\xcf\\xcb\\x1f\\xb8\\xb9\\x4f\\xf8\\xaf\\x0b\\x24\\xf2\\xc2\\x85\\x4b\\xdf\\x94\\x5a\\x3d\\x46\\x85\\xc2\\xe8\\xb1\\x92\\xde\\x92\\xa1\\x3b\\x58\\x8f\\xc4\\x97\\xcd\\x0d\\x5f\\xfa\\x46\\x88\\xb7\\x56\\x75\\x4a\\xbd\\x1a\\x3f\\x87\\xa2\\x90\\x8e\\x45\\xf1\\x91\\xa8\\x1a\\x22\\x16\\xc0\\x60\\x8b\\x96\\xad\\x1e\\x0d\\xf8\\xa2\\xa3\\xa3\\x75\\xd1\\x09\\x69\\x8a\\xf4\\x54\\x36\\xbf\\x26\\xf6\\x46\\x31\\xa1\\x27\\xbb\\xde\\x1b\\x3f\\x7d\\x2e\\xbc\\x17\\x3c\\x7a\\xc8\\x96\\xab\\x1c\\x3c\\x80\\x6a\\x58\\xdd\\xa0\\x37\\x90\\x9d\\xe9\\x7d\\x01\\xfc\\xa8\\x1c\\x64\\x80\\x40\\x86\\x86\\x10\\x46\\x20\\xc3\\x20\\xea\\x7d\\x8c\\x81\\x2e\\x49\\x9c\\xed\\xac\\xe4\\x66\\x32\\x9b\\x1f\\x76\\x64\\xb7\\x1a\\x55\\x26\\x85\\x52\\xd2\\xfb\\xf8\\x80\\xa5\\xc4\\x48\\xfa\\xa5\\xad\\x56\\x33\\xa1\\x6a\\x48\\x20\\x43\\x0a\\x0a\\x89\\x61\\x7a\\x6f\\xd1\\xbe\\xdb\\x85\\x39\\xf0\\xa8\\xa5\\x7e\\x71\\x45\\xf9\\x82\\x0a\\x3d\\xb9\\x50\\xb3\\xeb\\xf9\\x35\\x6b\\xcf\\x5e\\x37\\xc3\\x77\\xfd\\x6b\\x1b\\x57\\x9e\\xd9\\x5d\\x83\\xe1\\xcf\\xd5\\x43\\x4d\\x19\\xbf\\x3e\\xe7\\x3d\\x57\\xd1\\x73\\xd3\\xc2\\x7c\\x5b\\xd3\\xea\\x9a\\x45\\xcf\\x1e\\x68\\x9a\\x75\\xe2\\x83\\xfd\\xc2\\x4b\\xfb\\x3f\\x38\\x3e\\xb3\\x6a\\xe7\\x99\\x35\\xe2\\xd9\\xb9\\x60\\xec\\x3c\\x5d\\xce\\x7c\\xfa\\x36\\xd4\\x23\\x25\\xcf\\xa4\\x20\\x8a\\x40\\x46\\xa1\\x8f\\xc5\\x62\\x45\\x1d\\x21\\x4e\\xe2\\x12\\x11\\x97\\x4f\\x32\\xf2\\xe9\\xbc\\x96\\x50\\x0b\\xf6\\x5d\\x80\\x2f\\x3e\\x49\\xdc\\xb1\\x34\\x21\\xda\\x91\\x64\\xe4\\x6b\\xf7\\x46\\x58\\x2d\\x06\\x85\\x42\\xa1\\x4c\\x63\\xe7\\x6d\\x0c\\x36\\xa4\\x61\\x85\\x93\\xe9\\x57\\x0a\\x87\\x33\\x26\\xd6\\x91\\x17\\xab\\x08\\xd5\\xe9\\x0a\\x59\\xc1\\x74\\xf9\\x8b\\x4f\\x3e\\xf4\\x64\\xdf\\xdf\\xfe\\xd6\\xf7\\xe4\\x43\\x4f\\xbe\\xf8\\x59\\x54\\xaa\\xd3\\xac\\xcf\\x4a\\x8a\\x8c\\x4c\\xca\\xd2\\x9b\\x9d\\xa9\\x51\\x70\\x51\\xf8\\x5e\\xf8\\x0e\\xc2\\x40\\xb6\\xdc\\x7f\\x9c\\x1b\\xf6\\xaf\\xbb\\x01\\x64\\x10\\x26\\x7c\\x27\\x7c\\x1f\\xdb\\xb2\\xb1\\x21\\x2d\\xad\\x61\\x63\\x8b\\x60\\x68\\xdd\\x24\\xfe\\xb6\\xa9\\x55\\x1c\\x63\\x04\\x42\\x34\\x95\\xad\\x59\\x2d\\x72\\x78\\x73\\xb8\\x2b\\xd6\\xe5\\x8a\\x6b\\xe0\\x03\\xa7\\x33\\x42\\x1a\\xb5\\x2a\\x56\\x5c\\xbf\\xe9\\xe2\\xde\\xa0\\xb1\\x89\\x6b\\x48\\x34\\x9a\\x02\\x3c\\x1b\\xa0\\x8a\\x73\\x38\\x14\\x86\\x34\\x9e\\x64\\x0b\\x82\\xf0\\x17\\x61\\x0c\\xea\\x76\\xee\\xab\\x3b\\x70\\x6e\\x13\\xbc\\xe1\\x4f\\x3e\\x7c\\xf8\\xfd\\xf7\\x8f\\x1c\\xc2\\x8d\\xfe\\xa7\\xf0\\x51\\xf7\\xf3\\x7b\\x07\\xee\\x5c\\xe6\\xfe\\xa1\\x99\\xc2\\xea\\x6b\\xe1\\xd3\\x1d\\x62\\x5f\\x36\\x8d\\x9d\\xa7\\xed\\xbc\\x12\\x65\\x20\\x2f\\x2a\\xf0\\x3a\\xd3\\x83\\xd9\\x5f\\x78\\x35\\x07\\x48\\xaa\\x88\\x1b\\xaa\\xb9\\x96\\x0c\\xbe\\x4c\\x1b\\x20\\xb7\\xd3\\xe6\\xcd\\xf4\\x26\\x27\\x4d\\x0b\\x47\\x19\\x90\\x21\\xe3\\x27\\x24\\xd9\\x8a\\x73\\xa2\\x84\\xe4\\xc7\\xba\\x5c\\x6e\\x96\\x64\\xcd\\x8a\\xe1\\xca\\x5c\\x2e\\xcd\\xa4\\xba\\x67\\xe2\\x7c\\xc2\\xb7\\x2e\\x7d\\x68\\x4d\\x71\\xc5\\x8e\\xe7\\xd6\\x6f\\x78\\x6e\\x67\\x45\\xcd\\x35\\xa7\\x57\\xb8\\xe6\\x14\\x26\\x9f\\x73\\xf6\\x5d\\x37\\xc7\\xbb\\x7c\\x6e\\x71\\x74\\xc5\\xa9\\xa2\\xca\\xbe\\xd2\\xc4\\xa4\\x92\\xf9\\x55\\x95\\x7d\\xa5\\x49\\x49\\x65\\x7d\\x44\\xf0\\x5d\\x7b\\x66\\x89\\x7a\\xd5\\xcb\\x87\\x9a\\x66\\x1d\\x7d\\x63\\x9d\\x9a\\xb8\\x5f\\x06\\xdd\\xab\\x6b\\x34\\x11\\x71\\xfa\\x2c\\x43\\xd7\\xba\\x3a\\x6b\\x6c\\x54\\x6e\\xf3\\xfa\\x59\\xd5\\x33\\xcf\\xe6\\xce\\x59\\x59\\xa2\\xae\\xdc\\xd4\\xe9\\x74\\x76\\x6e\\xaa\\x54\\x97\\xac\\x9c\\x93\\x2b\\xc5\\x8b\\x6e\\x16\\xcf\\x53\\xc6\\x5f\\xab\\x43\\x86\\x1f\\xa9\\x7b\\xaa\\x1d\\xaf\\x7b\\xca\\x76\\x0f\\x84\\x0c\\xfa\\xe4\\x44\\xa5\\x4e\\x99\\x10\\xa7\\x42\\xb1\\x48\\xa1\\x97\\xf3\\xac\\xbe\\xe6\\xe4\\x28\\x35\\x28\\xf4\\x52\\xb2\\xa0\\xc9\\x91\\xc7\\x74\\x8e\\x9b\\xe1\\xd9\\xc5\\x0f\\xad\\x2f\\x9b\\xd7\\xb1\\x7a\\xb5\\x67\\xc5\\xc9\\x85\\xc2\\x37\\x10\\xd9\\x37\\xaf\\x63\\x81\\xf0\\xcd\\xdb\\xef\\x2d\\x5b\\xfa\\x6b\\xea\\x31\\x36\\xac\\xf2\\x35\\x6c\\x48\\x4d\\xd8\\xd7\\x3a\\x63\\xed\\x0c\\x0b\\xbc\\x23\\x8c\\x56\\x57\\x94\\xd5\\x3d\\xb6\\xb5\\xca\\x1b\\x38\\xaf\\xb2\\xa9\\x67\\x72\\x5e\\x96\\xb6\\x21\\xa0\\x34\\x2a\\x62\\x08\\x1f\\xca\\xcb\\xca\\xf6\\xf7\\x8d\\x90\\xc3\\x64\\xe3\\xa5\\xfd\\x01\\x6e\\x76\\x8b\\xf0\\x32\\x3d\\x4b\\x3d\\x4c\\xff\\x74\\x78\\x73\\x28\\x60\\xc0\\x33\\x83\\x68\\x1d\\x6d\\x03\\x2f\\xe7\\x48\\x20\\x09\\x48\\x43\\xc4\\xd9\\x15\\xa7\\x56\\x31\\x62\\x00\\x85\\x42\\x11\\x17\\xc6\\xc7\\xdb\\xdc\\x01\\x05\\x94\\x48\\xfa\\x28\\xf0\\xbc\\x4c\\xaf\\xd0\\x1f\\xcb\\x2d\\xd2\\x47\\x73\\x11\\xf8\\xab\\x9b\\x55\\x7f\\xf6\\xd7\\x7c\\xac\\x02\\x7f\\x98\\x29\\x1d\\x56\\x0a\\x5f\\xbd\\x22\\x6b\\xbe\\xf6\\xa9\\xc5\\xb0\\xfb\\xd2\\xb5\\x02\\x82\\x72\\xe1\\x65\\x0c\\xf0\\xdd\\x5d\\x42\\x27\\x7e\\x34\\xc8\\xa3\\xf8\\x10\\xf5\\xfc\\x98\\x1e\\xaa\\xfd\\x29\\x3d\\x14\\x26\\xe8\\xa1\\xa0\\x27\\xc4\\xf5\\xa1\\xeb\\x2e\\xc1\\x0f\\xf0\\x15\\xa0\\x63\\xd9\\x1f\\xe6\\xdc\\x0c\\xe8\\x3c\\x80\\x70\\x11\\x9e\\x11\\x1a\\xc4\\x1f\\x5c\\x80\\xb1\\xd0\\x0a\\x0f\\xb3\\x1f\\xf0\\xbf\\xce\\xce\\xc9\\xcd\\x63\\x5f\\xd1\\x39\\x74\\x06\\x2a\\x10\\x75\\x51\\xdd\\xcf\\xd3\\x45\\x53\\x26\\xeb\\xa2\\x6e\\x67\\xb6\\xdd\\x9a\\x6e\\x4c\\x53\\xc5\\x46\\x45\\x86\\xc9\\x50\\x01\\x14\\x48\\xba\\xa8\\xeb\\x0a\\xaa\\x28\\xff\\x23\\x9a\\xe8\\xda\\x75\\x83\\x09\\xee\\xb9\\xc5\\x8e\\xf6\\x0a\\xf3\\xd7\\x0d\\xbb\\x1e\\x9b\\xbf\\xf4\\xf1\\xad\\x95\\x0b\\x3a\\x17\\x2d\\xab\\xdf\\xfd\\xcc\\xd2\\xce\\x27\\xaf\\x6f\\xfd\\xda\\x54\\xd9\\x57\\x5c\\xdc\\x55\\x9a\\xba\\x65\\xdd\\x27\\x78\\x67\\x7d\\x49\\x82\\x23\\x5d\\xab\\x36\\x3b\\x52\\x7c\\x9b\\xe6\\xd8\\xad\\x4d\\xeb\\x67\\xd4\\x6e\\x32\\xa6\\xee\\xe8\\x9a\\xb1\\x69\\x4e\\x66\\xfa\\xec\\x6b\\xda\\x53\\x0a\\x33\\x13\\xe2\\x33\\xdc\\xc9\\xcd\\xd5\\x4f\\x04\\x73\\xbd\\xf2\\x19\\x0e\\x76\\xb2\\xfe\\xa9\\xfd\\x31\\xfd\\x73\\x64\\x44\\x70\\x8d\\x8c\\x50\\xcf\\xc5\\x37\\xf0\\x5f\\xfd\\xa9\\xd4\\xe3\\x4f\\x65\\x32\\xbb\\x01\\x21\\xfa\\x14\\xc3\\x5b\\x5a\\xbc\\xc6\\x70\\x56\\xfd\\x30\\x58\\x6d\\x4c\\x3c\\x64\\xb5\\x0d\\x9c\\x74\\xcb\\xd8\\x90\\x2e\\x06\\x81\\xad\\x54\\xc2\\x5d\\x9a\\x1f\\x1c\\x19\\x39\\x06\\x73\\x21\\x5d\\x98\\x0d\\xef\\x08\\x6f\\xc3\\xe3\\xc2\\x2c\\xea\\x11\\x1a\\xe1\\x29\\xff\\xb7\\xfe\\x77\\x11\\xa0\\xcc\\x40\\x5f\\x27\\xeb\\xb7\\xda\\x9f\\xd2\\x6f\\x25\\x4b\\xde\\x2d\\x59\\xf2\\x34\\x7f\\x54\\x78\\x3c\\xbd\\xfb\\x17\\xab\\x9c\\x60\\x72\\x55\\xa6\\x47\\x89\\x83\\x20\\x1b\\x85\\xff\\xf9\\xc5\\x17\\xb7\\x37\\xbe\\x9d\\xbd\\xf0\\xae\\x21\\x78\\x87\\x8d\\x65\\x2b\\x42\\xb4\\x9c\\x8d\\x25\\xd5\\x9b\\x24\\x0f\\xd4\\xa6\\x63\\x72\\x21\\x18\\x07\\x04\\x13\\xab\\x50\\x70\\xa2\\xea\\xc5\\x0a\\x74\\x12\\x03\\x11\\x1f\\x86\\x7b\\xce\\x80\\xed\\x2f\\x4f\\xdd\\xfb\\xd4\\x5f\\x20\\x0b\\x2c\\x44\\x79\\xf1\\x0d\\xbc\\xd8\\x7f\\x2b\\x5e\\xee\\xbf\\x49\\x5c\\x6c\\xe3\\xf2\\x9e\\x52\\xab\\x55\\xdb\\x10\\x18\\xc1\\xb8\\xa6\\x3a\\xa9\\x56\\x6b\\xfe\\xa8\\x50\\x30\\x3a\\x0a\\x6f\\x8e\\xc2\\xb3\\x42\\x3d\\xf5\\x08\\xc5\\xf0\\xda\\xc4\\xfb\\x4d\\xca\\xd5\\x9b\\x78\\x2f\\xf6\\xf2\\x42\\xb9\\x7a\\xf9\\x23\\x82\\x7b\\x94\\x3c\\x14\\x5c\\xfc\\x12\\x6f\\xf6\\xad\\xc1\\xeb\\x43\\xf5\\x07\\xc7\\x37\\x8e\\xc0\\xcb\\x0f\\xd6\\x1f\\xbc\\x55\\xe8\\x1c\\x15\\x7a\\xa8\\x8b\\x6c\\xb9\\x74\\x2d\\xd9\\xf2\\xb2\\xb4\\x4f\\xce\\x15\\x7a\\xe9\\x3a\\x1e\\x21\\x1d\\xab\\x90\\x9e\\xea\\x4d\\xca\\xb2\\xa7\\xe9\\xe3\\x94\\x72\\x4e\\x0e\\x52\\xc6\\x19\\x33\\x5e\\x13\\xc0\\x97\\x14\\x87\\xf9\\x38\\x96\\x7d\\xe2\\x56\\x38\\x14\\xc9\\x44\\x3d\\xc1\\xbb\\x6d\\xca\\xcf\\xc2\\x16\\x45\\x29\\x71\\xea\\x99\\x6b\\x35\\x8a\\xa8\\xe7\\xba\\x17\\xdd\\xda\\x7b\\xa1\\xef\\xd6\\xc5\\x6e\\xf7\\xe2\\x5b\\xfb\\x2e\\xf4\\xde\\xba\\xc8\\x4d\\x5c\\xea\\xcc\\x0a\\xbb\\xbd\\x22\\x53\\xed\\x3f\\xad\\xca\\x28\\xb7\\x67\\x96\\x67\\xa8\\xb1\\x65\\xe0\\xf4\\xe1\\x5e\\x15\\xbc\\x24\\x54\\x28\\x7b\\x0f\\x3f\\x3d\\xa0\\x5e\\xf4\\xf4\\xe1\\x5e\\xa5\\xb0\\x04\\x6e\\x55\\xf6\\x1d\\x3e\\x3d\\xa0\\x76\\x0f\\xb6\\x55\\xaa\\xfc\\x0d\\xca\\xca\\xf6\\xc1\\xc2\\x82\\xc1\\xb6\\xe9\\x2a\\xfc\\x94\\xaa\\xb2\\x6d\\x91\\x5b\\xd2\\x87\\x0f\\x0a\\x2f\\xb3\\xfd\\x66\\xb2\\xed\\xa0\\xfd\\x19\\xb6\\xc3\\xc1\\x51\\x78\\x64\\xe4\\xa8\\xea\\x83\\x4b\\x7f\\xa0\\x1e\\x51\\x18\\xd2\\x76\\x16\\xac\\xc7\\x5b\\x13\\xc4\\xc2\\xa8\\x81\\x4d\\x98\\x09\\xb6\\x83\\xb4\\x16\\x24\\xd3\\x41\\x69\\x52\\x1b\\x62\\xc4\\x49\\xa4\\xbf\\x92\\xd1\\xe0\\xa0\\x35\\xa3\\x45\\x3b\\x2a\\x96\\x3d\\xb1\\x65\\xfa\\x48\\xb2\\xa7\\xcd\\x53\\xb9\\xb5\\x78\\x14\\x56\\x46\\x46\\xe5\\x2d\\xbc\\x6d\\x31\\x34\\x08\\xcf\\x14\\xcd\\xce\\xd7\\x46\\x45\\xe2\\x70\\x04\\x68\\x31\\x42\\x74\\x80\\x8d\\x23\\x64\\x2f\\x68\\x7f\\xb6\\xbd\\x30\\xe7\\xe4\\xe7\\x27\\xcf\\x5f\\x22\\xc1\\x71\\x90\\x2d\\xe3\\x1c\\xee\\x7d\\xc2\\xcb\\xf4\\x1c\\xf5\\x4c\\xb1\\x17\\xb4\\xff\\xaf\\xf6\\x82\\x4f\\x7c\\xc6\\x02\\xd5\\xdb\\x97\\xb6\\x8d\\x3f\\x46\\x12\\x19\\xf5\\x20\\xcc\\xea\\x35\\x1e\\x60\\x67\\x90\\x64\\x2f\\x20\\x3e\\xc0\\x4f\\x13\\x20\\xae\\xd5\\x36\\x04\\xb5\\x0a\\x69\\x5a\\x32\\x7b\\x41\\x91\\x9e\\xca\\xc6\\x32\\xd1\\x5a\\x70\\xea\\x27\\xe8\\xc4\\xd8\\x7b\\xef\\xa2\\x3b\\x96\\xba\\xdd\\x4b\\xef\\x58\\x24\\x2c\\x13\\xbe\\xc0\\xf2\\x7b\\xf3\\xaa\\x32\\x94\\xca\\x8c\\xaa\\x3c\\x7c\\x2a\\xaf\\x7d\\x53\\x6d\\xdd\\x8e\\x1e\\x17\\xd9\\xf6\\xa2\\xff\\x29\\xe1\\x5d\\x9d\\xcd\\x9d\\x98\\xe0\\xb2\\x25\\x22\\x82\\x36\\x20\\x44\\x7b\\xa9\\xe7\\x2a\\xb6\\x82\\xf6\\x7f\\x6f\\x2b\\xf4\\x96\\x74\\x1f\\xec\\xce\\xce\\xee\\x3e\\xd8\\x2d\\x7c\\xf0\\x05\\x41\\x17\\x2e\\xf8\\x51\\x49\\x96\\x47\\x3f\\x6d\\x9a\\xde\\x93\\x85\\x1f\\x73\\x74\\x6c\\x61\\x1d\\x12\\xb7\\x24\\xea\\xf1\\x9f\\x13\\x5e\\x11\\xfb\\x94\\x58\\x9c\\x93\\x12\\xe0\\xef\\xe9\\x63\\x7d\\x9a\\x62\\x2b\\x68\\x7f\\xc4\\x56\\xd0\\x4f\\xb2\\x15\\xf4\\xa1\\x9e\\xec\\x81\\xcc\\xc1\\x7b\\x56\\x14\\x16\\xae\\xb8\\x67\\xd0\\xff\\xd9\\x08\\x64\\x3a\\xeb\\xb2\\xd4\\xea\\xac\\x3a\\x27\\x3e\\xe3\\xe8\\xda\\xe1\\xab\\xdf\\xd9\\xed\\xa4\\x1e\\xff\\x4b\\xc2\\xaf\\x13\\x32\\xdc\\xc9\\xc9\\x85\\x76\\xc6\\xe2\\x86\\xd6\\x8f\\x7d\\x45\\x6b\\x69\\x23\\xb2\\xa3\\x5a\\x6f\\x15\\x02\\x24\\x43\\x20\\x1b\\x42\\x94\\xe7\\x78\\xca\\x0d\\x21\\x19\\xe2\\xa9\\x8c\\xef\\x93\\x07\\xe3\\xb0\\x29\\x21\\x4e\\x83\\x64\\xe2\\x03\\x64\\x4d\\xb7\\x98\\x27\\x14\\x92\\xb3\\x83\\x9d\\x9d\\x86\\x93\\x8e\\xc1\\x29\\x27\\xa0\\x9b\\x65\\x9f\\xe2\\xe9\\xd9\\xad\\x5e\\xf3\\x27\\x0d\\x3b\\x1e\\xec\\xda\\xf5\\xea\\x4e\\xaf\\x77\\xe7\\xab\\xbb\\x16\\x3e\\xbc\\xb9\\xf2\\x13\\x43\\x69\\x6b\\x7e\\xed\\x82\\xf2\\x54\\x4e\\x38\\x06\\x4b\\xf9\\x34\\x6f\\x3f\\x39\\xa4\\xcb\\xab\\x4c\\x6f\\xbc\\x6e\\xa0\\x78\\xee\\xb1\\x37\\x56\\x1a\\x57\\xbe\\x7e\\xac\\xb5\\x78\\xe9\\xcd\\xac\\x98\\x5c\\xee\\xcc\\xa5\\x85\\x0f\\xba\\x17\\xfa\\xec\\x08\\xa3\\x59\\x63\\xe7\\xe9\\x4d\\xb4\\x91\\x65\\x8e\\x5f\\x1f\\xb4\\x19\\x10\\x22\\x3c\\x62\\x7c\\xdb\\xd0\\x29\\x9e\\x53\\xec\\x30\\x97\\x52\\xec\\x93\\x71\\x30\\x5b\\xd4\\x70\\xa5\\x66\\x94\\x6a\\xa4\\xb6\\x28\\xe0\\xe4\\xb7\\x84\\x5a\\x71\\x9c\\xb6\\x01\\x05\\x00\\xd2\\x53\\x5b\\xb6\\x8b\\xf6\\x85\\x49\\xa1\\x50\\x59\\x8d\\x92\\x3f\\xcf\\x21\\xe5\\xa8\\x84\\xe4\\x60\\x91\\x3c\\xb9\\x53\\xb9\\xdb\\x6a\\x16\\x70\\x8e\\x79\\xd7\\xb6\\x75\\x1f\\x9a\\x97\\x95\\x35\\xef\\xfa\\xee\\x8e\\xfd\\xf3\\xf2\\x68\\xff\\xff\\xfc\\x0f\\x34\\x44\\xa6\\xba\\x32\\xac\\xae\\x94\\x48\\xe9\\xdf\\xd4\\x69\\x78\\xdd\\xc0\\x63\\x3b\\x6a\\x66\\x1e\\x3a\\x3b\\x54\\x3d\\x74\\xf6\\x50\\x73\\xcd\\xf6\\x47\\x16\\x0a\\x5e\\xea\\xf1\\xbf\\x5c\\xb9\\x79\\x9e\\xdb\\x3d\\x6f\\x73\\x65\\xf5\\xf4\\xcd\\xf3\\x0a\\x0a\\xe6\\x6d\\x9e\\x8e\\x30\\x6a\\x40\\x88\\xe5\\x12\\x45\\xa3\\x44\\x51\\x0f\\x94\\x01\\x48\\x76\\x06\\x3b\\xa3\\xd8\\xcb\\xe4\\x27\\x1e\\x54\\x08\\xc5\\x6b\\xe2\\x54\\x28\\x1a\\x45\\x29\\x24\\x3b\\x43\\xf2\\x26\\x19\\x82\\x96\\x06\\x11\\xfb\\xad\\x57\\xe8\\xd3\\xa2\\x30\\x2d\\x1b\\x11\\xfe\\xf2\\xe5\\x0f\\x80\\x16\\x2c\\x2d\\x5a\\x75\\xcf\\xa2\\xd7\\xd5\\xf6\\xaa\\x1c\\xb0\\x0b\\x7f\\x73\\x34\\xe4\\x68\\xc4\\xe9\\x0e\\x47\\x84\\x55\\xf0\\x6c\\xc6\\xed\\x0b\\xeb\\x77\\x74\\xe5\\x0b\\xf7\\x24\\xb9\\x33\\x75\\xe0\\x49\\xb4\\x17\\xb2\\x3d\\x68\\xec\\xcf\\x42\\x03\\xf5\\xf0\\x08\\x39\\x90\\xcf\\x5b\\x87\\x81\\x82\\x15\\x38\\x1a\\x07\\x84\\x53\\x03\\x26\\xb4\\x3e\\x0c\\x64\\x3c\\x33\\x59\\xfb\\x82\\x5b\\x44\\x4a\\x03\\x92\\xcb\\xb9\\x76\\x71\\xf7\\x0e\\xc5\\x55\\xf4\\xd8\\xe7\\xc8\\x13\\x4d\\x39\\xab\\xc5\\x66\\x08\\xaa\\x8b\\x81\\xb0\\x8a\\xda\\x71\\x19\\x7c\\xd8\\x39\\xb1\\xd2\\x91\\xc1\\xe9\\x70\\x3a\\xd4\\x0e\\xbc\\xfe\\xdb\\x40\\x51\\x32\\xc8\\xe9\\xb8\\x66\\x96\\xa1\\x48\\x1f\\x1d\\x96\\xa0\\xd3\\x85\\x15\\x7b\\x21\\x58\\xa4\\xec\\xd9\\x67\\x47\\xbe\\xa5\\x8f\\x09\\xdf\\x49\\x95\\xca\\x7e\\xe3\\x1f\\xe9\\xb8\\xbe\\x27\\x47\\x16\\xfe\\x02\\xe1\\x08\\xee\\x6e\\x2d\\x1f\\x2f\\x5c\\x46\\x1f\\x7b\\xf8\\x94\\x94\\x1f\\xbe\\x65\\xec\\x3c\\xab\\x47\\x27\\xad\\x29\\xca\\xf1\\x1c\\xe5\\x87\\xc4\\xc1\\xc8\\x00\\x0d\\x21\\x5e\\xdc\\x78\\x64\\x7d\\xc1\\x85\\x94\\xd2\\x10\\x5a\\x5d\\xc9\\xf8\\xaa\\x6b\\xea\\x27\\x8a\\x33\\xca\\xf4\\x6a\\x7d\\x32\\xc1\\x2b\\x7f\\xbc\\x3a\\x63\\xc5\\xbc\\x12\\x3d\\x07\\xfd\\xc2\\x9d\\x7c\\x6a\\x69\\xd7\\xd5\\x6b\\x34\\xe6\\xcc\\x1c\\x2c\\x7c\\xa8\\x60\\x60\\x46\\x96\\x68\\x47\\xa4\\x20\\xc4\\xce\\x8a\\x44\\x64\\x45\\x43\\x12\\x7a\\x4c\\x3f\\x35\\x18\\xa3\\x9d\\x1c\\x8c\\xd1\\x79\\x6d\\x57\\x6a\\x83\\x42\\x4d\\x24\\xf6\\xe4\\x40\\xeb\\x76\\x6f\\x5c\\x52\\x12\\x42\\x49\\xd6\\xa4\\xf4\\xd4\\x64\\x94\\x88\\x12\\x7f\\x34\\x7a\\xe3\\x76\\xe7\\xb9\\x26\\x05\\x6f\\x88\\x59\\xd5\\x7d\\x74\\x41\\x7e\\xfe\\x82\\xa3\\xdd\\x63\\xe8\\xb0\\xb9\\x65\\x5f\\xaf\\x0d\\x74\\x35\\x15\\x78\\xbe\\x2a\\x43\\x72\\xd9\\x64\\x50\\x8f\\xb0\\x27\\xbf\\x6b\\xa7\\xcf\\x77\\x4d\\x8f\\x2b\\xa4\\x17\\xc2\\x6f\\xfe\\x0f\\xbc\\xe3\\x7f\\x5d\\x78\\x29\\x29\\xbb\\x38\\x25\\xd9\\x9d\\x99\\x80\\x42\\xb1\\x9b\\x13\\x2c\\x3f\\xc5\\x10\\x44\\xf5\\x24\\x61\\x40\\x61\\x72\\x4c\\x65\\x88\\xf6\\x8b\\xf6\\xa0\\x76\\x52\\xe8\\x46\\xe7\\x35\\x5c\\x31\\xc0\\x33\\xb9\\x55\\xbb\\x57\\xf1\\x53\\x31\\x1e\\xfd\\xd4\\x18\\x4f\\xf7\\x13\\xa3\\x96\\x8e\\xeb\\x7b\\x72\\x73\\x7b\\xae\\xef\\x10\\xbe\\x78\\x62\\x74\\x14\\xee\\xb2\\x18\\x1d\\xa9\\x51\\x51\\xa9\\x0e\\x23\\xbe\\x0b\\x6e\\x13\\xf6\\xe4\\xcf\\xdb\\xc1\\x86\\x05\\x7f\\x15\\x44\\x9d\\x7d\\xe2\\x70\\x00\\x85\\x07\\xea\\xfb\\xa5\\xa0\\x42\\xaf\\x0b\\x03\\x01\\x35\\x43\\xd1\\xca\\x81\\xe7\\x00\\x01\\x8f\\x42\\xe1\\xbf\\x14\\xb1\\xaf\\xb8\\x7d\\x3c\\xe6\\xa3\\x60\\x3a\\xcc\\xe4\\x38\\xa5\\x62\\xea\\xfa\\xd1\\xe3\\xfb\\x85\\xcf\\x2e\\xaf\\xea\\x77\\xe3\\x8d\\x23\\xa0\\xa3\\x4f\\x0b\\xa3\\x53\\x6b\\xfb\\xd1\\xa7\\x1f\\xbe\\xe7\\x9e\\xa0\\x8e\\x76\\x5b\\x40\\x67\\x16\\x4f\\x3e\\x82\\xc9\\x1a\\xc6\\x69\\xca\\x74\\x28\\xdc\\x11\\xe8\\xc9\\x14\\xfd\\x26\\x14\\x08\\x52\\xc0\\x56\\x78\\x6b\\x44\\xb8\\x7f\\x44\\xb8\\x47\\x52\\x3d\\x2e\\xbe\\x21\\xdc\\x06\\x0b\\x25\\xfd\\xb7\\x5d\\x3c\\x0b\\xb8\\x61\\x64\\x94\\xb2\\x4b\\xa4\\x8a\\xed\\x94\\x60\\x1c\\x37\\xa1\\xec\\x9b\\x14\\xe8\\x34\\x22\\x23\\xab\\xf5\\x66\\x62\\xe7\\xbc\\x62\\x72\\x64\\x9a\\x61\\x35\\x18\\xf3\\x40\\xe8\\x17\\x7a\\x53\\xce\\x9c\\xb5\\x95\\x75\\x6b\\x8d\\x86\\x55\\x55\\xd5\\x1b\\x5a\\x73\\x3f\\x73\\x66\\xd8\\xdd\\x5f\\x16\\xe7\\x98\\x73\\xb8\\xe1\\x8b\\xf7\\x76\\xec\\xeb\\xb0\\x57\\x54\\x54\\x54\\xd8\\x3b\\xf6\\x75\\xd0\\x79\\x17\\xef\\x9d\\xdb\\xdc\\x3c\\x77\\xfc\\x5f\\xa9\\x96\\xdd\\xd8\\x79\\xba\\x8b\\x16\\x4d\\xed\\x9b\\xf6\\xff\\xff\\xbe\\xed\\xca\\x9a\\xbd\\x7a\\x7a\\xfd\\x1a\\x83\\x61\\x55\\x4d\\xd5\\xda\\x96\\xec\\x4f\\x72\\x33\\x72\\xdc\\x5f\\x14\\xe6\\x99\\xb3\\x68\\x91\\xdf\\x38\\xef\\xe0\\xbc\\xac\\xaa\\xaa\\xaa\\xaa\\xac\\x79\\x07\\xe7\\xe1\\x0f\\xfd\\xc6\\xee\\xb9\\x73\\xbb\\xc7\\xff\\x45\\xc1\\xb5\\xde\\xc3\\x27\\x84\\xe2\\x96\\x1c\\xe5\\x56\\xf3\\x40\\x09\\x48\\x4e\\x29\\x08\\x03\\xb9\\x0c\\xe4\\xfd\\xe2\\x5c\\xe9\\x92\\x9c\\xbc\\xe3\\x73\\x5a\\x91\\xae\\x97\\xe6\\xf4\\x24\\x3f\\x6f\\x80\\xcb\\x69\\x62\\xa8\\xf5\\x53\\xe1\\xcf\\xa3\\x83\\x77\\x8b\\x6a\\xca\\xdd\\x83\\x42\\xea\\xf0\\xf0\\x28\\x98\\x84\\x3f\\x8f\\x06\\x75\\x15\\x9a\\x2f\\x6c\\x73\\x74\\x6e\\x6b\\x68\\xd8\\x31\\x2f\\x9f\\xe6\\x3f\\x0c\\xc5\\xc2\\x6b\\x7e\\xa5\\xf0\\x5b\\xd1\\xb8\\x4d\\x2c\\xb0\\xe9\\xa4\\xb9\\xd3\\x36\\xf6\\x4f\\x7a\\x07\\xf7\\x3a\\x72\\xa3\\x37\\xa5\\x93\\x3e\\x17\\x61\\x82\\x88\\x68\\xc6\\x07\\xe2\\xdb\\x14\\x50\\x18\\x70\\x32\\x14\\x88\\x70\\x47\\x40\\x20\\xc4\\x2d\\xef\\x0c\\x07\\xb9\\x3c\\x59\\x2e\\x9e\\xfd\\xba\\xe6\\x36\\xaf\\xf3\\x47\\x2e\\x8c\\x88\\x88\\x6b\\x98\\x14\\x1f\\x1f\\xbf\\xd8\\x5b\\xf8\\xf3\\xaf\\x0b\\x0f\\xd7\\x48\\x17\\x23\\x76\\x6d\\x7b\\xbb\\x37\\xd6\\xed\\x72\\xe6\\x3b\\xf2\\x8c\\x2a\\x93\\x42\\x6d\\x54\\x99\\x62\\xa6\\x89\\xcb\\xcc\\x31\\x9e\\xba\\x1e\\x0c\\xae\\x3b\\xd4\\x86\\xa0\\xbb\\xcc\\x1d\\xa4\\x12\\x95\\xfc\\x94\\x50\\xb6\\xd9\\x3e\\xef\\x86\\x05\\x33\\xf6\\xf4\\x3a\\xff\\x13\\xc7\\xe8\\x9d\\xe9\\x76\\x8f\\x7e\\xda\\x37\\xdf\\x4c\\x4b\\xf5\\x64\\x5b\\x1c\\x29\\x31\\xdc\\xff\\x21\\xee\\x9e\\x9d\\xbe\\x85\\x37\\xcc\\xb3\\x6f\\xfe\\xfc\\x73\\xd2\\x9c\\xb5\\xe5\\xfd\\x3b\\x3a\\x5c\\xab\\x1e\\xdf\\x50\\xd8\\x5d\\x61\\x2a\\x5f\\xbc\\xaf\\x3a\\xe7\\xcd\\xd6\\xda\\x7d\\x8b\\xbd\\xc6\\xf2\\x0e\\xe7\\xd0\\x43\\xab\\x0a\\xda\\x6e\\x7f\\x7f\\x6b\\xab\\x7f\\x23\\x37\\x8c\\x00\\xad\\x1e\\xfb\\x8a\\xde\\x42\\x9b\\x50\\xf6\\xb8\\x6c\\xc3\\xc2\\x65\\xe1\\x61\\xb2\\xa1\\x00\\x1c\\x74\\x28\\x02\\x64\\x14\\x10\\x16\\x8f\\xe6\\xf0\\x70\\xbe\\x53\\x0e\\x3c\\xcf\\x4c\\x4b\\xc9\\x2d\\x9b\\x4c\\x82\\x7a\\x95\\xf3\\x47\\x2e\\x64\\x97\\x84\\x87\\x33\\xa1\\xa4\\x4c\\xbe\\xd8\\x5b\\xf8\\xf3\\xaf\\x63\\xba\\x40\\xc0\\x51\\x93\\xcc\\x30\\x93\\xb1\\xd9\\x59\\x19\\xe9\\x66\\x93\\x51\\xa1\\x50\\xa8\\x8c\\xb1\\x46\\x49\\xb6\\x06\\xa9\\x16\\x6e\\x40\\x86\\x96\\x80\\x7f\\x22\\x90\\x3b\\x6c\\x30\\x9b\\x2d\\xe2\\x09\\xea\\x20\\x0f\\x9e\\x87\\xa8\\xd4\\xfc\\xf4\\xbc\\x52\\xfc\\x11\\x76\\x77\\x6e\\xa8\\x98\\x77\\xb0\\x3b\\x8f\\xae\\xfa\\xe2\\x8b\\x55\\x34\\xaf\\xfb\\xe0\\xbc\\xda\\xcd\\x6d\\x79\\xf0\\x11\\x76\\x17\\x5a\\xf2\\x53\\xa3\\xf0\\x79\\xf8\\x75\\x6e\\x7f\\x53\\x6e\\x73\\x45\\xe3\\xce\\x8e\\xdc\\xfa\\x6b\\x1e\\xeb\\x17\\x0a\\xa9\\x47\\xf0\\xcc\\x7f\\xec\\x9a\\x86\\x9c\\x9e\\x83\\x9d\\x33\\x7a\\x21\\xaf\\x69\\x7e\\x0e\\xc2\\x48\\x8b\\x10\\xfd\\x90\\xc5\\x7c\\xa2\\xc4\\x9d\\x2e\\x0a\\x78\\x51\\xff\\xe2\\x31\\xdb\\x80\\xe7\\xb3\\x58\\x30\\x17\\xf0\\x7c\\x05\\xe8\\xd0\\x58\\xac\\x5d\\xf2\\x7a\\x31\\xc8\\x20\\xe8\\x09\\xe9\\xdc\\xf8\\xe1\\xb2\\xeb\\xbe\\x87\\x6f\\x3e\\x85\\x7f\\xfe\\xdb\\xff\\x0d\\xd4\\xde\\x0b\\x8f\\x0a\\x73\\xc4\\x1f\\x16\\x70\\x1a\\x00\\x3f\\x5b\\xbf\\xcd\\x08\\xd1\\x3b\\xd8\\x9e\\x1a\\x23\\x3e\\x2b\\x7a\\xd2\\xb3\\x44\\x45\\x4a\\xfb\\x33\\x9e\\x65\\x91\\x91\\xd2\\x45\\xaf\\x2d\\x1a\\xfc\\x17\\x3c\\xfd\\x09\\x9c\\xf9\\x97\\x50\\x09\\xd1\\x43\\xda\\x78\\xd0\\x0a\\xff\\x10\\x7f\\x98\\x62\\xf7\\x1a\\x58\\x3a\\x3a\\x10\\x46\\xdd\\x08\\xd1\\x97\\x58\\x6c\\x92\\x55\\x48\\x89\\x13\\x75\\xb6\\xfa\\x70\\x90\\x89\\x56\\x24\\xc8\\xd0\\x7c\\x71\\x6a\\xc4\\x35\\x84\\x31\\xc3\\x95\\x79\\xf6\\x26\\x90\\xbe\\x45\\x8c\\xfb\\xf6\\x0c\\xca\\xc0\\x1b\\x51\\xb2\\xf2\\x63\\x84\\xdc\\x98\\x7b\\x57\\x5e\\xf7\\x9f\\x96\\xdf\\xf4\\xfe\\xfb\\x2f\\xbf\\xf1\\x1a\\x54\\xfc\\x97\\xf0\\xee\\xf3\\x6d\\xf0\\x9a\\x50\\x1c\\xfc\\xe1\\x86\\x2f\\xfd\\x86\\x38\\x7f\\x68\\xc6\\x5b\\xe0\\x7d\\x14\\xec\\x07\\xf3\\x21\\xc5\\x21\\xa7\\x37\\x4f\\xea\\x87\\x64\\xca\\xb6\\x4b\\xd3\\x33\\x1c\\x64\\x32\\x68\\xff\\x7f\\xef\\xc9\\xed\\xf9\\xa7\\x4a\\x66\\xfe\\xa9\\x6d\\xfb\\xfb\\xef\\xff\\xf2\\x3f\\x58\\x4f\\xde\\x7b\\x6a\\x0e\\xc4\\x08\\xa3\\xc1\\x1f\\xea\\xf1\\x1f\\xc2\\x6b\\x2e\\xbe\\x01\\xbf\\x86\\x00\\x8f\\x53\\x29\\x42\\xf4\\x3e\\x96\\x47\\x64\\x44\\x36\\x6f\\x3a\\x2f\\xea\\xd9\\x18\\x10\\xee\\x47\\x72\\xb9\\xac\\x1d\\xc9\\x64\\xe3\\xef\\x3b\\x56\\xa1\\x56\\xeb\\x15\\x26\\xb5\\x74\\xce\\x26\\x93\\x89\\x79\\x15\\x52\\xf0\\x81\\x65\\x13\\xbb\\x41\\x0f\\x4a\\x3d\\xa9\\x9a\\xbd\\xab\\x23\\x67\\x34\\xd6\\x5c\\x60\\xce\\x1a\\x2d\\x31\\x17\\x98\\x62\\x47\\x73\\xbb\\xf7\\xb5\\x0a\\xcf\\x50\\xa5\\xc0\\xdf\\x25\\x3c\\x46\\xe2\\xa8\\xbd\\xe3\\xba\\x3e\\xa1\\x17\\x4e\\xe6\\x57\\x5b\\x15\\xfe\\x47\\xf1\\x1c\\x85\\xb5\\x3a\\x5f\\xfc\\xbb\\xff\\xfa\\x0e\\x1b\\xc1\\xbf\\xf0\\x3f\\x0e\\x47\\xa4\\x3e\\xce\\x42\\x88\\x2e\\xa6\\x1e\\x94\\x86\\x4c\\x28\\xcb\\x6b\\x4b\\x05\\xe0\\xa1\\x9e\\x00\\xf0\\x88\\x67\\x0a\\x2a\\xcf\\xd4\\xec\\x80\\x37\\x40\\x83\\x7c\\xb1\\x1a\\xb5\\x3e\\xd6\\x14\\xc7\\x26\\x4b\\x32\\x51\\xab\\x0d\\x12\\xde\\x4a\\x16\\xec\\xa7\\xf8\\x41\\xa8\\x9f\\xd5\\x55\\xcb\\x1a\\x2c\\xa3\\xd1\\xc9\\x59\\x29\\x46\\x3c\\x92\\x9d\\x92\\x95\\x1c\\x3d\\x62\\x6d\\x1c\\xaa\\x15\\xce\\x93\\x51\\x41\\x7e\\xab\\xf0\\x07\\x3c\\x4f\\x9e\\xd7\\xb5\\xaf\\xeb\\xd3\\x4f\\x0b\\xeb\\xed\\xb1\\x54\\xe8\\x86\\x07\\x62\\xed\\xf5\\x85\\x9f\\x7e\\xda\\x7d\\xa0\\x2b\\x97\\x87\\x0f\\x05\\x3b\\x98\\xc4\\x3e\\x96\\x21\\x44\\x1f\\xe3\\x86\\x51\\x2a\\x32\\xa0\\x62\\x6f\\x61\\x64\\xc0\\xf3\\x28\\xe7\\x31\\x02\\x82\\xfa\\x51\\x78\\xb8\\xa4\\xaf\\xc4\\x35\\x44\\x84\\xc9\\x38\\x1a\\x08\\x92\\x18\\xd2\\x50\\x2a\\x4a\\xcd\\x8d\\x35\\x30\\x27\\xb2\\x52\\x5c\\xfd\\x7a\\x92\\xef\\x96\\xde\\xaa\\x9e\\xe8\\x49\\x9c\\x92\\x18\\x48\\xbe\\xd9\\x60\\x10\\x85\\x6b\\x31\\xa4\\xf1\\x6a\\xa2\\x54\\x1a\\x60\\x03\\x55\\x6e\\xf9\\x8f\\xff\\x80\\x25\\x9f\\x11\\xd9\\x7f\\xff\\x80\\xf1\\x4b\\x34\\xdd\\xad\\x7d\\x01\\x52\\x5d\\x36\\xf8\\xdb\\xc0\\x3b\\xf0\\xa7\\xd9\\xc5\\xfe\\x13\\xdc\\xb0\\x7f\\x19\\x3e\\xe6\\x5f\\xac\\x11\\xfe\\x53\\x48\\x87\\x3f\\x4d\\xaf\\xc3\\xfe\\x3b\\xf1\\x7c\\x5c\\x37\\x5d\\x48\\x27\\x8f\\x43\\xbd\\xd8\\xe7\\x0a\\x84\\x58\\x2d\\x39\\x51\\xae\\xe5\\xde\\x52\\xb1\\xcf\\x89\\x5a\\xcc\\xca\\xb8\\x4d\\xed\\xb8\\x76\\x52\\xc7\\x4d\\x46\\x94\\x86\\xd2\\x94\\x2a\\xa5\\xfa\\x6a\\x1d\\x8f\\x53\\xb3\\x9e\\x5b\\x0c\\x32\\x03\\xeb\\x3a\\x1f\\xe8\\xfa\\x2e\\xa2\\xdc\\xfd\\xce\\x3b\\xd0\\xf9\\x1b\\xfc\\xdd\\x3b\\x2b\\xd6\\x90\\x17\\x49\\xba\\x2b\\x2c\\x1c\\x5e\\xa0\\x71\\xf9\\x56\\xf2\\x61\\xff\\x1b\\x90\\x34\\xcb\\x23\\xcc\\xa5\\x1e\\x21\\x19\\x3e\\x11\\xe2\\x15\\xb7\\x1e\\x16\\xfe\\x0e\\x49\\x15\\x35\\x10\\x2f\\xac\\x86\\x3b\\xc3\\xa0\\xa6\\x42\\xf8\\x3b\\xbe\\x01\\xc2\\xd8\\xbc\\x78\\x5c\\xf0\\x52\\x9b\\x6c\\x2d\\x2a\\x46\\x55\\x68\\x8e\\x77\\xe6\\x74\\x90\\xf1\\x6a\\xe0\\x10\\xae\\xb7\\x98\\x31\\xa9\\x91\\x03\\x2f\\xe3\\x57\\x23\\x19\\x96\\xad\\x0e\\x03\\x84\\x24\\x4f\\x4e\\x20\\x8f\\x39\\x2e\\xc4\\x5c\\xc9\\xfc\\x02\\x55\\x95\\x15\\xe5\\x65\\xa5\\x45\\x85\\x8e\\x9c\\x94\\xc4\\xa8\\x69\\x52\\xce\\x46\\xf8\\xc4\\x9c\\x0d\\xbd\\xf3\\xb2\\xc0\\x49\\x10\\x0d\\x21\\xcb\\x22\\x8c\\x5a\\x62\\xdc\\x55\\xae\\x0c\\xd1\\x9a\\x28\\x6b\\x16\\x78\\x93\\x53\\xca\\xfa\\x2a\\x84\\x4f\\x21\\x71\\xf9\\x99\\x3d\\x75\\xdb\\x86\\x76\\x1f\\xa8\\xbd\\xe6\\xf4\\xb2\\xfc\\x9a\\xe2\\xd4\\x6c\\xa7\\x7a\\x56\\xc9\\x92\\xa6\\x2c\\xc8\\xed\\xdc\\xd9\\xec\\x28\\xee\\xa9\\x48\\x3b\\x71\\xd3\\x91\\x87\\x82\\x44\\x28\\x64\\x46\\x4a\\x61\\x63\\xb6\\xad\\xde\\x9d\\xf2\\x6a\\xde\\xfc\\x1b\\x7b\\x86\\xee\\xb1\\x67\\x3c\\xb2\\x73\\xe0\\xe4\\x8a\\x42\\x8f\\xdd\\x5c\\x60\\x4d\\x0a\\xbb\\x55\\xe9\\x6d\\x5b\\x51\\x51\\x33\\x58\\xa9\\x4f\\x2b\\x9d\\x9d\\xb7\\x79\\xcb\\x6b\\xe4\\xae\\x00\\x73\\x8a\\xc4\\x23\\x5e\\x43\\x13\\xf8\\x30\\xe4\\x41\\xd3\\x45\\xb9\\x94\\xff\\x7c\\xb9\\x68\\x27\\xcb\\x65\\x7a\\x85\\xb7\\xac\\xa4\\xb8\\xd0\\x1d\\x92\\x8b\\x07\\x3c\\xff\\xaf\\x72\\x71\\x5d\\x2e\\x16\\x5b\\x71\\x8b\\x2b\\x5e\\xe7\\x9e\\x53\\x28\\x8a\\x65\\xe0\\xd4\\x96\\xca\\xbe\\xb6\\x25\\x2b\\x2b\\x36\\xdc\\x37\\x3f\\xb7\\xde\\x9b\\x62\\xcf\\x53\\xcd\\x74\\x2d\\x68\\xcc\\x81\\xec\\xb6\\xad\\x33\\xb2\\x97\\x6d\\xdc\\xb3\\xf3\\xe6\\xa7\\x83\\x42\\xc1\\x2b\\xd5\\x66\\x67\\x6a\\x62\\x8e\\x51\\x75\\x26\\x7d\\xc6\\xea\\x86\\xa6\\x0d\\xc6\\xd4\\x4d\\x2d\\x33\\x36\\xcd\\xce\\x0c\\x08\\xe5\\x06\\x95\\xb7\\x75\\x69\\x59\\x65\\xbf\\x37\\x65\\x56\\x59\\x43\\xdd\\x29\\x12\\x2b\\x89\\x84\\xa0\\xd6\\xb1\\xaf\\xe8\\x52\\xee\\x35\\xa4\\x41\\x46\\x94\\x2b\\x6a\\x8a\\x32\\xa0\\x3c\\x4c\\x02\\x54\\x25\\x85\\x00\\x55\\xc9\\xc8\\x67\\x36\\xc5\\x6b\\xed\\x36\\x53\\xae\\x39\\x37\\x35\\x59\\x6b\\x8c\\x37\\xda\\x8c\\x72\\x3e\\xee\\x72\\xd6\\xac\\x64\\xac\\x96\\xe9\\x83\\x58\\x7d\\x93\\xde\\x19\\x40\\xef\\xd3\\xa5\\x57\\xc0\\xeb\\xfb\\xdf\\x19\\xc7\\xe9\\xfb\\xdf\\xc1\\x8e\\x71\\xfc\\xfe\\x14\\xbe\\xac\\x65\\xcf\\x7c\\x7d\\xcd\\xe3\\xd3\\x82\\x58\\xfd\\x67\\xf9\\x20\\x7c\\x1f\\x21\\x82\\xba\\xc6\\xce\\xb3\\xda\\xb1\\x6a\\x94\\x8a\\x6c\\x92\\xc6\\x8b\\x08\\xe6\\x08\\x2b\\xbd\\xcf\\x3a\\x9f\\xd2\\xc0\\x43\\x80\\x40\\x24\\x19\\x7c\\x69\\x7a\\x4d\\x9c\\xc5\\xac\\xb7\\xa5\\xd9\\x12\\x75\\x71\\xa9\\x9a\\x54\\x2b\\x1b\\xc7\\xd4\\xd2\\xc5\\xc0\\xbc\\x5c\\xc9\\x44\\xc9\\x2c\\xf3\\x2c\\xd2\\x75\\x79\\xe1\\x62\\xf8\\xb7\\xa7\\xc3\\x6b\\x96\\xf9\\x7f\\x90\\x99\\xcb\\x3b\\x3d\\x45\\x9d\\x5e\\xb3\\x0c\\xf3\\x32\\xb3\\xb7\\xe3\\x0a\\x05\\x8c\\x85\\xe3\\x99\\xbe\\xc5\\xc5\\xc5\\x8b\\x7d\\x99\\xf8\\xef\\x99\\x33\\x06\\x8b\\x8a\\x06\\x67\\x64\\x22\\x40\\x31\\x08\\xd1\\x0b\\xdc\\x39\\x14\\x8b\\xca\\x9f\\x81\\x40\\xfd\\xd1\\xa4\\x40\\xf5\\x6f\\x09\\x01\\x22\\x85\\xbe\\x83\\xd0\\xb0\\xb8\\x10\\x81\\x63\\xf0\\xf3\\xf6\\x67\\x15\\x4a\\xbd\\x45\\xca\\xe0\\x71\\x2b\\x4b\\x89\\x43\\x23\\x63\\x99\\xc4\\x06\\xd0\\xe3\\x9e\\x44\\xdd\\x67\\x09\\x25\\x4d\\xfd\\x5e\\x3b\\xa8\\xb2\\x8b\\xe2\\x84\\x5b\\x46\\x84\\x48\\x08\\x87\\xeb\\xd7\\xae\\xc2\\xdf\\xcf\\xdc\\xd4\\x6c\\x81\\xf7\\xca\\xca\\x2f\\xde\\x14\\xcc\\x3f\\x99\\x8e\\x10\\x5d\\x4a\\x1b\\x91\\x0a\\x05\\xc0\\x40\\xe1\\x61\\x0c\\xed\\x18\\xc0\\x0a\\x85\\x01\\x10\\xe9\\x8f\\xc0\\xd7\\xe3\\x7d\\x4c\\x99\\xd4\\x47\\x6d\\xa8\\x8f\\x29\\x13\\xfa\\x68\\x32\\x05\\xfb\\x28\\x55\\x86\\x0b\\x66\\x3c\\x1b\\xc0\\x81\\x0d\\x2a\\xd5\\x0d\\x59\\xc7\\x16\\x24\\xe5\\xc7\\x6b\\x68\\x42\\x64\\x5a\\x51\\xa4\\xf0\\x97\\xdf\\x0a\\x6b\\xfe\\x0d\\x4b\\x7a\\x7b\\xe1\\xf5\\x9b\\x0e\\xca\\xa3\\x5f\\xc0\\xc4\\x69\\xbd\\xf4\\xb1\\x68\\x17\\x12\\x54\\x25\\xcc\\xa4\\x2f\\xb3\\xbc\\x82\\x3c\\x54\\x21\\xee\\xd0\\x1a\\x90\\xe1\\x1c\\x40\\x32\\x13\\x43\\xaa\\x05\\x2b\\x3a\\x25\\x35\\x70\\x92\\x4b\\x38\\x98\\x34\\xc0\\x16\\x71\\x17\\x22\\x44\\x4f\\x7c\\x16\\x43\\x5c\\xa1\\x5a\\x23\\xbe\\xf9\\xc4\\x2b\\x60\\x03\\x41\\xa3\\x74\\x90\\x80\\x9a\\x39\\x5e\\x1b\\x94\\x38\\xb8\\xfc\\x20\\xb7\\x21\\x33\\xd5\\xf0\\x4d\\xd6\\xc6\\x35\\xf5\\x55\\x4b\\x6a\\x8c\\xc6\\xda\\xc5\\x55\\x75\\x6b\\x9a\\xac\\x30\\x4d\\xd1\\x33\\xfc\\x65\\x58\\x6a\\xc1\\x2c\\x4f\\xb8\\x4e\\xa7\\x95\\x51\\x5e\\xa9\\x56\\x71\\x49\\x96\\x84\\x28\\x4e\\x7d\\x7c\\x58\\x68\\xcf\\xf3\\x24\\x59\\xb4\\xe1\\x99\\x9e\\xa2\\x5c\\xf8\\x68\\xd5\\x73\\xbb\\x6a\\x6a\\x76\\x3d\\xb7\\x0a\\xbe\\x0d\\xfe\\x26\\xfc\\xfe\\x71\\x5c\\x79\\x31\\xd9\\xdc\\xd9\\xec\\x22\\x1c\\x8f\\x8f\\x63\\x0c\\x19\\x9e\\x92\\xd8\\x59\\xb4\\xbc\\xe4\\xc0\\x71\\x4b\\xfd\\xd2\\x2a\\xff\\x73\\xd7\\x1f\\x3f\\x7e\\xbd\\x28\\x83\\x7c\\x51\\x06\\x6c\\xce\\xe7\\xa1\\x5a\\xb4\\xd2\\x1b\\xa5\\x01\\x5e\\x96\\x03\\xc0\\x9b\\x80\\x42\\xb0\\xf8\\xb5\\x9e\\x05\\x8a\\x39\\xf1\\xf8\\xd7\\x86\\x0a\\x5d\\x4d\\x12\\x83\\xce\\x6b\\x9a\\x2c\\xa4\\x94\\x2b\\xb7\\x63\\xde\\xd0\\x71\\x89\\x4d\\x5d\\x2b\\xa6\\xab\\x48\\x6c\\xaa\\x83\\x34\\xdf\\xd4\\xbc\\x65\\x6e\\xdb\\xb6\\x66\\x93\\xa9\\x79\\xeb\\xdc\\xb9\\xdb\\x9a\\xcc\\x64\\x69\\x4c\\xef\\xd5\\x65\\xe6\\xbf\\x4e\\x9e\\xe0\\xc8\\xb4\\x39\\x12\\xe4\\x72\\x5d\\xbe\\xcd\\x96\\x97\\x20\\x9f\\xb0\\xb8\\x82\\xbf\\x1c\\x3d\\x83\\x67\\x5c\\x51\\x6e\\xfe\\x3f\\x35\\x1d\\x5e\\x5a\\x56\\xb6\\xf4\\x70\\x93\\xba\\xf1\\xf0\\xb2\\xb2\\xb2\\x65\\x87\\x1b\\x11\\xe3\\xdd\\xed\\x1c\\x5b\\x47\\x87\\xf8\\x2c\\xc6\\xd3\\x91\\x82\\x9c\\xe8\\x11\\x89\\x89\\x27\\x0b\\x01\\xc7\\xc1\\x00\\x42\\x3c\\xe1\\xd1\\x20\\x22\\x32\\x19\\x19\\x40\\x98\\x52\\xbc\\x68\\x42\\x26\\x8a\\x4c\\x46\\xbb\\xa4\\x40\\x72\\x80\\x12\\xc6\\x7e\\xe5\\xab\\xf0\\x9a\\x2b\\x5f\\xc4\\x9e\\x02\\xab\\xa5\\xe6\\x64\\x08\\x11\\x19\\x4f\\x64\\x2b\\xae\\x7e\\x01\\xf3\\x45\\x5b\\x6d\\xa6\\x09\\xb9\\xa5\\x0e\\x25\\x73\\x3e\\xff\\x14\\x57\\x0a\\x7e\\xf3\\x8d\\x37\\xe0\\x8d\\x37\\xe0\\xc1\\x9f\\x49\\x96\\x42\\xf7\\xc1\\x83\\xdf\\xd7\\xc0\\x53\\x30\\xfb\\xe7\\x51\\xa6\\x50\\xb4\\x72\\x6c\\x90\\x76\\xd1\\x37\\x99\\x1c\\x93\\x90\\x03\\xfd\\xad\\x61\\x58\\x25\\xc9\\x91\\x52\\x51\\x22\\x32\\x22\\x13\\x25\\xc2\\xf3\\xa2\\x44\\x38\\x0e\\x2f\\x12\\xc7\\xd5\\x89\\x28\\x65\\x13\\x8d\\xeb\\x42\\x1c\\x97\\xcc\\x89\\x72\\x8c\\x93\\xe4\\x78\\xa5\\xab\\xf0\\x9a\\xab\\x5d\\x14\\x10\\x3e\\x15\\x85\\x19\\xbc\\x46\\x46\\xf8\\x15\\x3f\\x72\\x11\\xeb\\x5a\\xb0\\xbd\\x28\\xfc\\x9f\\xb8\\xa0\\x5d\\x92\\xbe\\x75\\x92\\xf4\\x89\\x28\\xfd\\x9f\\x51\\xc8\\x05\\xbf\\xfa\\xfc\\xf3\\xf8\\xf9\\xe7\\xfd\\x8f\\xff\\x64\\xc9\\x7b\\x92\\x0c\\x0f\\xff\\x70\\x12\\x5e\\x04\\xfc\\x33\\x4a\\xdf\\x23\\x82\\x4a\\xc7\\xce\\xd3\\x57\\x65\\x5e\\x94\\x8f\\xea\\x51\\x2b\\x5a\\xe2\\x5d\\x54\\x06\\x91\\xe1\\xad\\x40\\x51\\x14\\x63\\x84\\x28\\x87\\x30\\xa8\\x43\\x91\\xe1\\x61\\xe1\\x91\\x61\\xe3\\x20\\xfc\\x08\\x14\\x1e\\x19\\x11\\xde\\x1f\\x05\\xd3\\x50\\x18\\x9a\\x16\\xd6\\x2f\\x67\\xe7\\xa3\\x94\\x11\\x2a\\x83\\x20\\x27\\x46\\x32\\xf8\\x9c\\xce\\xe6\\x26\\x67\\xbd\\xb3\\xae\\xba\\xb2\\xa4\\xa8\\xc0\\xa5\\x36\\x28\\x4d\\x8a\\x78\\xa3\\x35\\x26\\x5a\\x34\\x70\\x26\\xd2\\xe8\\x4e\\xa4\\x81\\x55\\xa7\\xf1\\xea\\x29\\xbe\\xac\\x7c\\xb3\\x41\\xa9\\x96\\xd8\\xc6\\x78\\x66\\x5f\\x30\\x1f\\xa4\\x03\\x5c\\x2e\\x86\\x0c\\x89\\xc2\\x32\\xe2\\x6c\\x39\\xba\\xb4\\xd8\\xd5\\xbb\\x7b\\x46\\xf5\\x2a\\xb3\\x69\\x75\\x55\\xe3\\xee\\x1e\\x57\\xf1\\x92\\xa3\\xad\\x35\\x73\\xcb\\x9d\\xd9\\x05\\xe7\\x0b\\xb2\\x1d\\xd3\\xdb\\xab\\xde\\x4c\\x6b\\xd8\\xbc\\x70\\x8e\\x29\\xbb\\x70\\xdf\\xb6\\x15\\x8e\\xee\\x05\\x2b\\xab\\x84\\x2c\\xbd\\xe1\\x66\\x8d\\x39\\x37\\x9e\\x1b\\xce\\x1f\\x38\\xb1\\xd0\\x5f\\xd1\\x75\\x5d\\x67\\x56\\x71\\x49\\x49\\x71\\x56\\xe7\\x75\\x5d\\xf8\\xa5\\x85\\x27\\x06\\xf2\\xcf\\x0d\\xae\\xf0\\x57\\x74\\xcc\\x69\\x9e\\x0b\\x1f\\x09\\x86\\xb9\\xcd\\x73\\x3a\\xf0\\x4b\\xcb\\x17\\xc3\\x07\\x7b\\x4d\\x76\\x73\\x8e\\x2b\\xd6\\x34\\xb4\\xd8\\x6c\\x37\\x09\\xfb\\x33\\x6a\\xcc\\x3d\\x03\\x49\\xc5\\x2e\\x7b\\xa4\\x14\\x2f\\xef\\x18\\x3b\\x4f\\xaf\\xe3\\x3e\\x46\\xf9\\xc8\\x87\\xda\\xd0\\x69\\xaf\\xb2\\x0c\\xc2\\xc2\\xdb\\x26\\xc8\\x35\\x12\\xea\\x1a\\x86\\xd3\\x9b\\xdb\\xbc\\xc5\\x28\\x32\\x0c\\x85\\x45\\xa2\\x90\\x78\\x99\\x58\\x23\\xa7\\x85\\x89\\xb6\\x41\\x44\\x27\\x8a\\x88\\x48\\x6a\\x18\\x17\\x70\\xca\\x64\\x01\\xeb\\xbc\\x9e\\xcb\\x2f\\x17\\xdf\\x4e\\x58\\xf0\\xed\\x44\\x4e\\x7a\\x3b\\x97\\x5d\\xdc\\xee\\x4d\\x70\\x3a\\x67\\xcd\\x74\\xfa\\x9c\\x0d\\xff\\xdf\\xbc\\x20\\x3a\\xe9\\x05\\x99\\xeb\\x76\\xf5\\x15\\xe4\\xcd\\x5d\\xe3\\xad\\x5d\\x9d\\x96\\xb6\\xaa\\xb6\\x7c\\xcd\\xdc\\xbc\\x82\\xf9\\xd7\\xd4\\x97\\x4c\\xcf\\xce\\x74\\x14\\x7c\\x50\\xec\\xb0\\x65\\x4e\\x2f\\xfe\\x8d\\xbd\\x61\\x53\\xff\\x2c\\x53\\xb6\\x67\\xff\\xf6\\x95\\x69\\x65\\x65\\xde\\x9a\\xa6\\x2c\\xa1\\x3c\\xf0\\x8a\\x68\\x63\\x4e\\xdf\\x4d\\xf3\\x85\\x6b\\xda\\x77\\xcf\\xb5\\xd5\\x56\\x57\\xd7\\xda\\xe6\\xee\\x6e\\x87\\x1d\\xf3\\x6f\\xea\\xcb\\x79\\xb2\\x77\\x9d\\x70\\xa8\\xbd\\xa5\\xb2\\x15\\xd0\\x18\\x6a\\xad\\x6c\\x69\\x87\\x35\\xeb\\x7a\\xe1\\xad\\xf1\\x57\\xc4\\x8a\\x79\\x08\\x7b\\x26\\xbd\\x24\\x8c\\x7a\\xc6\\xce\\xd3\\x13\\x32\\x19\\x92\\xa1\\x4c\\xb4\\xf6\\x19\\x05\\x50\\x99\\xa8\\x35\\x89\\xdb\\x8e\\x09\\x61\\xe0\\x01\\x0f\\xa2\\x60\\xc5\\xb8\\x88\\x70\\x39\\x61\\xce\\x0b\\x10\\xd7\\x36\\x07\\x81\\x0d\\xd8\\x2c\\xb5\\xe3\\x87\\x7e\\xbc\\x61\\xbb\\x57\\x25\\x97\\xcb\\x33\\xe5\\x99\\x56\\x8b\\xd2\\xa0\\x36\\x9a\\x19\\xcb\\x3d\\x73\\xa6\\x6b\\xf4\\x6a\\x83\\x53\\xcf\\xfd\\xb4\\x33\\x17\\x22\\xf0\\x3f\\x40\\xf8\\xe8\\x19\\x61\\x84\\x1c\\xbe\\x9a\\xcb\\x59\\x26\\x1b\\xda\\xb1\\xe3\\xf3\\x9f\\xe1\\x76\\x46\\x58\\xf2\\x3b\\x33\\xfe\\xa7\\x4c\\xb4\\x71\\xd2\\xd8\\x2d\\x81\\xb1\\x4b\\xd4\\x7b\\x2c\\x8d\\x57\\x1a\\x94\\xf6\\xf2\\xd1\\xa7\\x07\\x47\\xff\\x53\\x4d\\xaf\\x36\\x7e\\x65\\x60\\xfc\\x3f\\xc3\\x99\\x3d\\x16\\x1a\\xfe\\xee\\xab\\x79\\xb5\\xb9\\xe1\\xa1\\x1d\\x3b\\x84\\x8b\\x3f\\xc3\\xb5\\x8d\\x00\\xed\\x17\\x0e\\xd0\\x6e\\xee\\x75\\x94\\x86\\x66\\x87\\xea\\xf5\\xc5\\x33\\xaa\\x88\\x00\\x36\\x6a\\x82\\xcb\\x36\\x50\\x39\\x20\\x01\\x49\\xe5\\xf6\\x02\\xdf\\x07\\xca\\xed\\x05\\x9b\\x11\\x5f\\xfb\\x19\\x6b\\x9a\\xca\\xc6\\x32\\x3d\\x40\\x02\\x73\\x8e\\x63\\xbf\\xc7\\xa9\\xac\\x1d\\x0e\\xe2\\x1b\\x5d\\xfa\\xd8\\xe6\\x8a\\xda\\xdd\\xcf\\xad\\x5a\\x75\\x7a\\x6b\\xc5\\xe8\\x86\\x2d\\xa5\\x7d\\x15\\x06\\xdb\\xac\\x0d\\xbe\\x63\\xc2\\x01\\x58\\x1c\\x33\\x70\\xe7\\xef\\x36\\x82\\xea\\xda\\xbf\\xde\\xdb\\x55\\xb9\\xe3\\xb9\\x75\\x47\\x6f\\xf7\\xae\\x3a\\x3e\\x57\\xf8\\xb2\\xed\\xf8\\x2a\\x2f\\x02\\xf4\\xac\\xb0\\x9f\\xfa\\x68\\x23\\x32\\xfe\\x54\\xbf\\x53\\x7e\\x5e\\xbf\\x53\\x58\\xbf\\x8d\\x93\\xfa\\x3d\\x95\\x35\\x45\\xe2\\x28\\x20\\xb6\\x91\\x9e\\xa3\\xfd\\x79\\xde\\x2d\\xcf\\xac\\xef\\xb9\\x6b\\xb5\\xf7\\x93\\x64\\x97\\x2f\\xab\\xb2\\xdb\\xa3\\x4b\\x28\\xea\\xae\\x3a\\x2c\\xec\\x87\\xa5\\x8a\\xbe\\x23\\xa7\\xfb\\x27\\xc5\\x0e\\x27\\x54\\xc2\\x06\\xb4\\x1c\\x21\\x7a\\x13\\x57\\x2a\\xe5\\x76\\x29\\x63\\x15\\x31\\x91\\xd3\\x22\\xc2\\xc3\\xe4\\x32\\x9e\\x60\\x88\\x96\\xd0\\xa9\\x48\\x3c\\x51\\x91\\x06\\xf9\\xe2\\x55\\x58\\xb4\\x09\\x39\\x99\\x89\\x18\\x94\\x26\\x37\\xc7\\x7e\\x1c\\x84\\x93\\x99\\x70\\x27\\xe8\\x6b\\x85\\x8f\\x9e\\x79\\xe2\\x6f\\xc2\\x5f\\x6a\\xc0\\xf4\\xb6\\xf0\\x71\\x1d\\x18\\x7e\\xf9\\xe8\\xa7\\x60\\xf2\\x09\\x7f\\x85\\xb3\\x8f\\xee\\x7c\\x58\\x38\\x0b\\x87\\x1f\\xd9\\xf9\\x08\\x0c\\x3e\\xb2\\xeb\\x11\\xa8\\x16\\x96\\x3e\\xb2\\xe3\\x61\\xf1\\x9d\\x0b\\x63\\xf4\\x1e\\xf8\\x3d\\xe7\\x47\\x32\\x74\\x50\\x9a\\xea\\x5a\\xc6\\xfb\\x38\\xc0\\x08\\x0d\\x17\\x51\\x08\\x20\\x70\\xe2\\x42\\x14\\x7d\\x9a\\xd0\\xf7\\x68\\xcd\\x65\\x5f\\xeb\\x19\\x47\\x3f\\x06\\xbc\\x7a\\xea\\xb7\\x5e\\xdd\\xf8\\x17\\x48\\xfc\\xa2\\x85\\x21\\x99\\x28\\x10\\x20\\x8d\\xa2\\x1e\\x30\\x0d\\x21\\x24\\x43\\x32\\x85\\x42\\xc1\\xf1\\x1a\\x1b\\x51\\x5b\\xdc\\x7a\\x8b\\x46\\xdd\\xf4\\x14\\x60\\x3d\\x3c\\xc9\\xa5\\x6e\\x87\\xaf\\x97\\x81\\x34\\x4f\\x05\\x3f\\xa7\\x81\\xef\\x79\\xb5\\x94\\x67\\x14\\xc4\\x65\\x51\\x60\\x64\\x2b\\xe2\\x79\\x8b\\x7d\\x80\\xe2\\x54\\x8a\\xe8\\x69\\x11\\x72\\x1e\\x69\\x40\\xc3\\xf3\\x2a\\x1b\\xc9\\x63\\xb4\\xd3\\x32\\x99\\x21\\xc0\\x57\\x6a\\x30\\x58\\xde\\x77\\xb4\\x37\\xd5\\xd7\\xd6\\xa5\\xaf\\xdd\\x0a\\xb0\\xbf\\x28\\xdb\\xd6\\xbb\\x7a\\xff\\xec\\x6c\\xe0\\xee\\x60\\x3b\\xe3\\xe2\\x21\\x53\\xac\\x2b\\xc7\\x6c\\x37\\xed\\x65\\xb1\\xf8\\xcf\\x38\\x25\\xfa\\x33\\xdf\\x86\\xb8\\x40\\xed\\x3a\\x44\\x19\\x47\\xcd\\x62\\x05\\xf0\\x6a\\x1b\\xb1\\x68\\x64\\x1a\\x59\\x02\\xbc\\x08\\x9e\\x59\\xdc\\xc7\\x9b\\xf1\\xee\\x35\\x33\\xc4\\x77\\x1b\\xcb\\x29\\x21\\x8c\\x5d\\xa3\\xf0\\x46\\x71\\x18\\x88\\x74\\x89\\x52\\xbc\\x44\\x69\\x71\\x5b\\xdc\\xea\\xfe\\x99\\x1e\\x78\\x89\\x53\\xce\\x58\\xb3\\x1b\\x6f\\x16\\xc7\\x26\\xbf\\x74\\x5a\\x78\\x8d\\x36\\x72\\x4f\\xb0\\xbc\\xee\\x72\\x34\\x17\\x2d\\x47\\xbb\\xd1\\x09\\xf4\\x04\\x94\\x34\\x0c\\xa7\\x34\\xb7\\x79\\x07\\x52\\x09\\x06\\x4c\\x31\\xd0\\x21\\x93\\x46\\xad\\x97\\x71\\x1c\\x2f\\xe7\\x39\\xf9\\x90\\x59\\x17\\x9f\\x16\\xc1\\x85\\x85\\x4f\\x0b\\x0f\\x9b\\x36\\x64\\x54\\x62\\x45\\xac\\x62\\x8d\\x0a\\x68\\x1c\\xf0\\x1c\\xe5\\xfb\\xb5\\x20\\x4f\\x80\\xf0\\x30\\x79\\x78\\x7f\\x22\\x4c\\x4b\\x86\\xa8\\xc8\\x69\\x51\\xfd\\x28\\x06\\xc5\\x2a\\x62\\x62\\x43\\xac\\x41\\x71\\x0d\\x96\\x94\\x24\\x43\\x34\\x17\\x19\\xa9\\x89\\xf4\\xe9\\xbc\\x8b\\x7f\\xce\\x83\\x02\\x57\\x44\\xc5\\x44\\x45\\xc6\\xfc\\x2f\\x9f\\x8a\\x7d\\xed\\xde\\xde\\x5f\\xfc\\x62\\xcf\\x9e\\x15\\x2b\\xda\\xda\\x2a\\x2a\\x32\\x33\\xe3\\xe2\\x10\\xfa\\xc5\\x13\\xbf\\x78\\xe2\\x91\\x53\\xf7\\xdf\\x77\\xf2\\xce\\x3d\\x27\\xf6\\x9c\\xb8\\xf9\\xa6\\x23\\x87\\xaf\\xdb\\xbf\\x62\\xf7\\x8a\\xdd\\x3b\\xb6\\x6d\\xda\\xb8\\x76\\x75\\xdb\\xf2\\xb6\\xe5\\x8b\\x17\\xf5\\xcf\\xef\\xee\\xaa\\x98\\x5b\\x31\\x77\\xf6\\xcc\\x19\\xbe\\xda\\xea\\xcc\\xf2\\xcc\\xf2\\x92\\x22\\xb7\\x2b\\x2f\\x27\\xce\\x16\\x67\\xb3\\x98\\xf4\\xa9\\x89\\x09\\x01\\xc2\\xde\\x74\\x71\\x3a\\x4d\\x59\\xbd\\x30\\xe5\\x13\\xe5\\xcf\\x68\\xf3\\xbf\\xfb\\x64\\xea\\x9d\\x7b\\x93\\x5c\\x8d\\x39\\xb9\\x8d\\xee\\xa4\\xa1\\x08\\x8d\\x59\\xa7\\x33\\x69\\xc2\\xe1\\xe3\\x24\\x77\\x63\\x4e\\x6e\\x93\\x3b\\x69\\x55\\xb8\\xd6\\xac\\x4b\\x30\\x69\\xc2\\xeb\\xd8\\x27\\x62\\xa3\\xc0\\x27\\x11\\xc2\\xdb\\x53\\x3e\\xf2\\x37\\x4f\\xba\\x15\\xfb\\xa8\\x31\\xc9\\xdd\\x98\\x3b\\xe9\\xee\\xc2\\xc7\\x53\\x2e\\x74\\x4e\\x79\\x1e\\xfd\\xc6\\x5a\\x95\\x97\\x98\\x98\\x57\\x65\\x55\\x19\\x13\\x15\\x8a\\x44\\xa3\\x4a\\x38\\x3f\\xe5\\x93\\xb0\\xcb\\x3f\\xf1\\x7f\\x3f\\xa5\\xcd\\xa7\\x97\\x7f\\xc2\\x25\\xfc\\x6f\\xee\\x23\\xae\\x07\\xff\\x34\\xa1\\x9f\\x36\\x70\\x6f\\x20\\x8a\\xc2\\x50\\x14\\x52\\x22\\x2d\\x4a\\x42\\x69\\xc8\\x82\\x96\\x7b\\x53\\xf4\\xa9\\x71\\x84\\x60\\x4b\\x5a\\x92\\x56\\xa3\\x8c\\x55\\x44\\x47\\x45\\x4e\\x0b\\x8f\\x04\\x62\\x36\\x25\\xea\\x28\\x62\\x66\\x7a\\x96\\xb8\\x5d\\x31\\xc6\\xd0\\x76\\xe6\\x7f\\xa5\\xc1\\x23\\x99\\xed\\xfe\\x6a\\x84\\x39\\x20\\x80\\x49\\xdf\\xc4\\xcf\\xdb\\xbd\\xb1\\x1c\\x87\\x10\\x17\\xc6\\x85\\xc9\\x65\\x88\\x22\\x1a\\xcb\\xf3\\x6a\\x1b\\xa7\\x21\\x06\\x25\\xb1\\x28\\x1d\\x04\\xdc\\x9c\\xda\\xc4\\xc9\\x4c\\x4e\\x0e\\xdc\\x26\\x0d\\x07\\x32\\xce\\x62\\x22\\x16\\xe2\\x56\\x82\\x46\\x29\\x23\\x10\\x15\\xb1\\xb9\\xb7\\xda\\x33\\x6d\\x73\\x6f\\x35\\x4e\\x8e\\x84\\x19\\xc2\\x03\\x17\\xd7\\x45\\x0a\\xa7\\xa1\\x83\\xdc\\x86\\xa1\\xbc\\x52\\xf8\\xe0\\xd2\\xbf\\xb0\\xf0\\x4a\\x15\\x98\\x6d\\x8a\\x63\\xe5\\x6f\\x90\\x1e\\xc5\\xcd\\x15\\xaf\\x17\\x47\\x09\\x8f\\x41\\x1f\\xbd\\x27\\x0a\\x66\\x09\\x27\\x05\\xc5\\xb4\\xad\\xf3\\x6b\\x8a\\xc4\\xff\\xc1\\xe3\\x31\\x27\\x2a\\xdf\\xbc\\x74\\x58\\x71\\xa2\\xea\\x4d\\xfc\\x29\\x86\\xea\\x2a\\xe1\\xfd\\x4b\\x7f\\xc7\\xc2\\xaf\\x6a\\xc0\\x26\\xe9\\xd3\\x0f\\x22\\x44\\xaf\\x65\\x7c\\x98\\xb1\\x28\\x05\\xb9\\xbc\\x0e\\x82\\x31\\xa1\\x00\\x88\\x11\\x90\\x73\\x80\\x11\\xc1\\x21\\x50\\x42\\x10\\xb4\\x45\\x69\\x4a\\x92\\x5a\\x49\\x63\\xa9\\x42\\xaf\\xe6\\xc5\\xe3\\x44\\x06\\x6e\\x96\\xc0\\x14\\xe4\\xd8\\x09\\xd5\\x9c\\x37\\x50\\xdf\\x3e\\x61\\xe5\\x3e\\xe1\\xc3\\x51\\xf8\\x7c\\xf9\\x2f\\xf7\\x36\\x34\\xec\\xfd\\xe5\\xf2\\xef\\xbe\\x2b\\xe9\\xad\\x34\\x1a\\x2b\\x7b\\x4b\\xbe\\x83\\xe1\\x72\\xac\\xab\\x10\\xe6\\xfb\\xff\\xc0\\x0d\\x43\\xd9\\xba\\x07\\x17\\x0f\\xdc\\xb7\\xb6\\x14\\xce\\x99\\x2a\\xba\\x5c\\x85\\xbd\\x55\\x66\\x90\\xfa\\xc8\\xea\\x3a\\xd1\\x46\\x56\\x23\\xc8\\x86\\x06\\xbd\\x6a\\x05\\x50\\x6c\\x48\\x23\\x98\\x72\\x74\\x1a\\x20\\x4e\\x14\\x3d\\xad\\x0f\\xf2\\xe3\\x04\\x0b\\x74\\x68\\x43\\xe5\\x9b\\x92\\x1b\\xa4\\x14\\x5a\\x1d\\xab\\xfe\\x34\\xee\\x2b\\x4e\\x99\\xd2\\x22\\x58\\xdb\\x29\\x9d\\xa5\\x10\\xcb\\xc0\\x6d\\x9a\\x50\\xdf\\x49\\x73\\xb5\\xfa\\x4e\\xd3\\xd7\\x08\\xeb\\x57\\xc3\\x2d\\x05\\xcb\\xee\\x18\\xe8\\x3a\\xe4\\x18\\xf9\\x30\\x3c\\xff\\x48\\xcf\\xa2\\xbb\\x96\\x15\\x8c\\x24\\x97\\xf6\\x56\\x34\\x0f\\x26\\x27\\x2f\\x9a\\x5d\\xd1\\x5b\\x92\\xd4\\x01\\x77\\x74\\xae\\x65\\x95\\x9e\\x0a\\x04\\xc4\\x7d\\xb0\\xbc\\x74\\x7a\\xb0\\xd0\\x53\\x65\\xa1\\x90\\x58\\x50\\x1d\\x28\\xf4\\x04\\xe8\\x01\\x84\\x68\\x9b\\x2c\\x0a\\xc9\\xa4\\x8a\\xcf\\x98\\xac\\x0e\\x82\\x12\\xe2\\xae\\x98\\x5b\\xac\\x70\\xd0\\x36\\x7f\\xd9\\x05\\xfc\\xea\\x88\\xc4\\x23\\x0a\\xdd\\x92\\x2e\\x76\\x1f\\x42\\xb4\\x9e\\x5b\\x8b\\xc2\\xa6\\xdc\\x67\\x42\\x8e\\x72\\x0e\\xbb\\x8f\\x41\\x1d\\xbc\\x53\\xbd\\xd6\\xdf\\x37\\x82\\xcf\\x8c\\x90\\x4d\\x70\\x69\\x3f\\xf5\\x40\\x20\\x97\\xf5\\xa4\\xf0\\x26\\xc3\\x89\\xeb\\x58\\xcd\\x33\\x40\\x94\\x63\\x05\\x04\\x11\\x26\\x8c\\x84\\x29\\x80\\x66\\x0e\\xe6\\xfc\\x9a\\x15\\x5a\\x7d\\x10\\xcc\\x3c\\x05\\x7c\\x6f\\x08\\x32\\xdc\\x0e\\x1f\\xfc\\xcb\\xed\\xb3\\x8b\\xb6\\xbe\\xbc\\x07\\x66\\x0e\\x16\\x6b\\xe0\\xf4\\x99\\x61\\xc6\\x79\\x2b\\xb4\\xcc\\xb8\\xf9\\xbf\\x0e\\x6e\\xfe\\xdd\\x2d\\x2d\\xcf\\x95\\x0c\\xee\\xab\\x7f\\xe5\\x75\\xff\\xb5\\x12\\x37\\xea\\x7d\\xc2\\x27\\x74\\x19\\xe3\\x4a\\xb2\\x79\\xd3\\xa3\\x22\\x31\\xa9\\x09\\xd5\\x93\\x0b\\x50\\x22\\xb0\\x74\\x4e\\x0d\\xf1\\xe9\\x12\\xe2\\xb5\\x1a\\xb5\\x3e\\x86\\x13\\x27\\xa7\\x5e\\x1d\\x82\\xac\\x06\\x39\\x94\\xa5\\x2e\\xe4\\xf9\\xfb\\x5e\\x5d\\xf7\\xda\\xe1\\xa6\\x8c\\xce\\x1b\\x16\\xcd\\xda\\x30\\x68\\x9b\\xb1\\xbc\\xe2\\x55\\x86\\xee\\xf8\\x47\\xd9\\x96\\xd3\\xeb\\x0a\\x0f\\xee\\x5e\\x1a\\xff\\xa8\\xe5\\xe8\\xa2\\xaa\\x25\\x35\\x26\\xc1\\xcd\\x92\\x7a\\x01\\x1d\\x43\\x88\\x7e\\xcd\\x0d\\x23\\x15\\x2a\\xf1\\x7a\\x80\\x45\\xf4\\xe4\\xc0\\x8b\\x46\\x0a\\x0f\\x7d\\xe1\\x61\\x98\\xe3\\x18\\x78\\x93\\x85\\x20\\xb5\\x0d\\x34\\x94\\x58\\xaf\\x42\\xaa\\x60\\x24\\x34\\x36\\x82\\x4f\\xb2\\x85\\x61\\x3d\\x18\\xd4\\x86\\x10\\x1e\\xca\\xa1\\x76\\x00\\x7d\\x5d\\x38\\x0b\\x83\\xc2\\xef\\x85\\x7f\\xa4\\xdf\\x3b\\xf7\\xc2\\x85\\xb9\\xf7\\xea\\x81\\xe3\\x86\\xfd\\xfd\\x97\\xfe\\x89\\xd7\\x7d\\xf9\\xa5\\xff\\x7a\\x6e\\xd8\\x7f\\x4c\\x10\\xf0\\x32\\xb1\\x1f\\x87\\x11\\xa2\\x77\\x53\\x0f\\x52\\xa1\\x22\\x6f\\xc1\\xe5\\xfd\\x40\\x32\\x84\\x91\\x0c\\x4b\\xfd\\xf9\\x89\\x5e\\x90\\xcb\\x7a\\xa1\\xa4\\x7b\\x85\\x57\\xa1\\x4d\\x78\\xf7\\xc3\\xdc\\xdb\\x1b\\x46\\x46\\x1a\\x6e\\xb7\\xfe\\x91\\x7a\\xfc\\x7e\\xff\\x5b\\xf0\\xf8\\xe9\\xd3\\x12\\xa8\\xe0\\xcd\\x37\\xe1\\x29\\xb1\\x0f\\x49\\x01\\xfe\\xd8\\x28\\x64\\xf7\\x66\\x4c\\x9b\\x8c\\xac\\xc2\\x98\\xb4\\x4b\\xf0\\x31\\x7e\\x02\\x70\\x61\\x42\\x24\\x9c\\x55\\x01\\x57\\x32\\xec\\xc2\\xf1\\xa6\\x51\\xe1\\x35\\x9c\\x59\\x3b\\x0a\\x2a\\xe1\\xb7\\xd0\\x2e\\x7c\\x8a\\x57\\xfa\\x6f\\xa4\\x9f\\xbf\\xe5\\xbf\\x13\\xcf\\xf7\\x57\\xfa\\xa7\\x89\\xcf\\x32\\x23\\x44\\x5f\\x66\\x39\\xbc\\x57\\x7f\\x96\\xf6\\x67\\x3c\\xeb\\xb9\\x05\\xdf\\x08\\xaf\\xe3\\xac\\xde\\x73\\x90\\x21\\xbc\\x0f\\xf5\\xc2\\x9b\\xf0\\x90\\xd0\\x46\\x86\\xde\\x16\\xe6\\xc0\\xa3\\xfe\\x31\\x3f\\xab\\xd7\\xd4\\x89\\x10\\xbd\\x87\\xd5\\xa7\\xb2\\x78\\x8d\\xe2\\xd4\\x22\\x88\\xf6\\xb1\\x0a\\x70\\x12\\xa3\\xc0\\x44\\xe8\\xbc\\x22\\x38\\xcd\\x03\\xb5\\xcd\\x59\\xda\\x48\\x35\\xe4\\xe1\\x0c\\xe1\\x95\\x2f\\x85\\xdf\\x9e\\x3f\\x4f\\xca\\xf0\\xaa\\xb7\\x2e\\xc6\\xe3\\x35\\xfe\\x43\\x41\\x3f\\x7e\\xbf\\x78\\x7f\\xea\\xb9\\xca\\xfd\\xb5\\x3f\\x7d\\xff\\x56\\x28\\xc0\\x2a\\xe1\\x2f\\xdf\\x08\\x6f\\x7e\\xf3\\x0d\\xde\\x04\\x67\\xdf\\xba\\x74\\x04\\x9e\\x12\\x1a\\x83\\x79\\xe7\\xcd\\xc2\\x2b\\xf4\\x5e\\x6e\\x18\\x25\\xa1\\x2c\\xaf\\xb8\\xcd\\x4b\\xc0\\xb2\\x00\\x2f\\x3f\\xc7\\x05\\xc2\\xe3\\x3c\\xb0\\xdc\\x76\\xf1\\x19\\x5a\\x85\\x56\\x72\\x9d\\x4d\\xe4\\x48\\xcb\\xc2\\x16\\x85\\xc4\\x87\\xa0\\xc7\\x5f\\xac\\x7a\\x60\\x85\\x33\\x67\\xe1\\x1d\\xcb\\xb0\\xbb\\xd2\\x38\\x4d\\x65\\x6f\\x28\\xfc\\xf2\\xf5\\x2f\\xf1\\x09\\x52\\x0e\\x5d\\x77\\xbe\\xb7\\x71\\xeb\\xbb\\xc7\\x5b\\xe0\\x15\\x28\\x5d\\x74\\x6d\\x4d\\xd5\\xfe\\x15\\x95\\xd8\\x7f\\x88\\xfe\\xfd\\x62\\x92\\xb4\\x66\\xe7\\x0b\\x9f\\xd3\\x9b\\xa9\\x47\\xca\\x4c\\x8f\\x08\\xc7\\xb8\\x26\\x58\\x06\\x07\\x11\\x12\\x8c\\x7f\\x4b\\x59\\x68\\x49\\x89\\x6c\\xd9\\xc6\\xa9\\x55\\x31\\xe2\\x79\\x79\\xd5\\xce\\xfc\\x77\\xdf\\x5d\\xab\\x4a\\xd3\\x67\\x6e\\x6d\\x9d\\x93\\x5b\\x6e\\x89\\xd1\\x64\\x55\\x65\\x7f\\x39\\xfc\\x25\\xde\\x83\\x6f\\xc1\\x35\\x3b\\x86\\x97\\x96\\xde\\xb8\\x67\\x51\\xec\\x13\\x0a\\x4f\\x43\\x5b\\x76\\x61\\x7f\\x5d\\x26\\x16\\x3c\\x64\\xd5\\xa5\\x23\\x2c\\x4f\\xbe\\x67\\xec\\x1f\\x74\\x27\\xf7\\x3a\\x72\\xa2\\xe9\\x68\\xbd\\xc4\\x50\\x1b\\x51\\x98\\x87\\x29\\x21\\x8c\\xa5\\x4c\\x37\\xfe\\x17\\xcf\\x62\\x28\\x62\\x83\\x78\\x19\\x63\\x0b\\xe7\\x00\\xe3\\x24\\x26\\xb2\\x50\\xe6\\x98\\xce\\x6b\\x98\\xf8\\x1d\\x0a\\x7d\\x25\\x71\\x7c\\x04\\x5a\\xb5\\x7b\\x23\\x32\\x12\\xac\\x85\\x8a\\x78\\x29\\x4d\\x99\\x9b\\xe2\\xf3\\x09\\x81\\x1f\\x19\\x19\\x9d\\x62\\x1c\\xf5\\xc9\\xcb\\xe2\\xe2\\x18\\xbf\\xb2\\x4b\\x72\\x03\\xa5\\xf1\\x6a\\xba\\x73\\xce\\x2d\\x15\\x8e\\xd5\\x65\\x1b\\xce\\x1d\\xf4\\xe5\\xf7\\xee\\x9d\\xa9\\xb3\\x25\\xc5\\x98\\x6b\\x17\\x57\\xc8\\x15\\xf2\\xe6\\xd6\\xac\\xd9\\xeb\\x6a\\xeb\\x37\\xcf\\xcd\\xa9\\x28\\x49\\xad\\x32\\x0b\\x73\\x9c\\x0e\\x83\\x29\\xc7\\x66\\xcd\\xd4\\xa6\\x26\\x27\\x25\\xf7\\x9d\\xfa\\x7c\\x2f\\x64\\x6d\\xfc\\xed\\xf1\\xb9\\x6f\\xbb\\x7b\\xf7\\x34\\x0a\\xef\\xce\\xbb\\x73\\x75\\x39\\x40\\xc7\\xc8\\x11\\xf0\\x0d\\x9e\\xde\\xdd\\xe0\\xdb\\xf7\\xab\\x21\\xe1\\xa9\\xdd\\x7f\\x9b\\x1b\\x16\\x0e\\x7f\\x1f\\x7c\\xd4\\x5b\\x72\\x4f\\x2f\\x74\\x1f\\xbd\\xe9\\xe6\\x03\\xcc\\xa7\\x31\\x63\\xec\\x3c\\x7d\\x92\\x36\\xa2\\x7c\\x54\\x8d\\x36\\x49\\xb9\\x9a\\x11\\x05\\x40\\x49\\x1e\\xc1\\x92\\xdc\\xa2\\xd8\\x5f\\xc0\\x53\\x51\\x74\\x8c\\x8a\\x30\\x66\\xb2\\xe8\\x52\\x7e\\x44\\x74\\x29\\x3f\\x22\\xba\\xcc\\xf8\\x2b\\x8a\\x8e\\x19\\xd2\\xea\\x28\\x12\\x80\\x39\\xe6\\xb9\\xa5\\xea\\xc1\\x41\\x77\\x2f\\x2f\\x0b\\x09\\x6e\\x9c\\x9b\\xec\\xc9\\xde\\xfb\\x6b\\x3c\\x7b\\x1a\\xd6\\x9f\\xbb\\xde\\x57\\x30\\x70\\x78\\xae\\x3e\\xdf\\xa4\\xb4\\xd4\\x0e\\x56\\x84\\xab\\xc2\\x6b\\xeb\\xb3\\x5a\\x37\\x37\\xcc\\xd8\\xd6\\x96\\x3d\\xbd\\x64\\x46\\x9b\\x10\\x5d\\x5a\\x9c\\xe3\\x88\\x4e\\xb4\\xea\\x74\\xd6\\xc4\\xa8\\xd8\\x44\\x5d\\x62\\x72\\xdb\\x2f\\xfe\\xb0\\xb9\\x7e\\xe0\\xb1\\x9d\\xb5\\xbf\\xc6\\x19\\xb5\\xfd\\x45\\xbe\\xe6\\x03\\x0b\\x0a\\x71\\xc3\\x4b\\xcb\\xb7\\x77\\xfe\\x62\\x55\\x59\\xf5\\xa6\\x07\\x7a\\xb7\\x2e\\x39\\x53\\xab\\x80\\x1b\\x5b\\x8e\\xb8\\x72\\xf6\\xcf\\xda\\xe1\\x68\\x9f\\x6e\\x4e\\x2b\\x9e\\x9d\\xcb\\xd6\\x62\\xa2\\x70\\x37\\xfd\\x23\\xc3\\x9f\\xda\\xbc\\xe9\\x88\\x27\\xfc\\x2c\\x89\\x7e\\x9f\\x86\\x76\\x12\\x59\\x07\\x92\\xc9\\x34\\x32\\x5f\\x30\\x4f\\x46\\xf2\\x61\\x3b\\xf5\\x6a\\xc3\\x38\\x5e\\x06\\xd4\\xdf\\xe3\\xb7\\xfe\\x06\\xb5\\xa3\\xb7\\xc6\\x7e\\xe8\\xcf\\xa1\\x9f\\xbf\\xf5\\xd6\\xc5\\xcf\\xe8\\xa7\\x17\\x93\\xfc\\xef\\x41\\x8f\\xb4\\xe6\\xad\\xc2\\xcb\\xf4\\x41\\x96\\x7f\\x3e\\xf5\\x39\\xda\\xab\\x3e\\x47\\x79\\xd9\\x73\\xfe\\xfd\\x3b\\xbc\\xef\\x75\\x28\\xfe\\xe6\\x90\\xea\\x2f\\xfe\\x4a\\xb2\\xfa\\xcd\\x37\\xfd\\xad\\x64\\xf5\\xa5\\x43\\xfe\\x7f\\x43\\x79\\x00\\x47\\xe1\\x61\\xba\\xa2\\x0e\\xad\\xf6\\x86\\x27\\x00\\x07\\x32\\x20\\x1c\\xae\\x97\\x6a\\x88\\x18\\x11\\x50\\x8e\\x02\\x37\\x84\\x44\\x5d\\x03\\x0d\\x22\\x0e\\x11\\xc4\\x91\\x05\\x32\\x89\\x00\\x23\\x18\\x81\\x34\\x4d\\x6e\\x86\\x87\\xae\\xd8\\xae\\xdd\\x1b\\x4d\\x29\\xd5\\x51\\x9d\\x49\\x6d\\x88\\x15\\x3b\\xcb\\x00\\x6f\\x8e\\x2b\\x13\\x04\\xe0\\x07\\xee\\xbd\\x17\\x8e\\x5d\\x4e\\x12\\x00\\x66\\xfc\\x5f\\xf0\\xe4\\x55\\x89\\x02\\x30\\xda\\x8e\\x10\\x9d\\x4e\\x3d\\x6c\\x3c\\xb7\\x78\\xc3\\xe3\\x81\\x03\\x7e\\xc2\\x78\\xd2\\xc4\\x8e\\x72\\x30\\x78\\xd9\\x70\\x78\\x09\\x37\\x27\\x8d\\x46\\x9a\\xe9\\x86\\xab\\x8c\\x7c\\x52\\xd3\\xcb\\xe5\\x33\\x3e\\xf0\\x89\\xcd\\xda\\xdb\\xbd\\xe1\\x4a\\x93\\xda\\x10\\xd8\\xf8\\x4d\\x06\\x86\\x84\\xb9\\x02\\xbc\\x09\\x3f\\x7d\\xef\\xbd\\x70\\x64\\x0a\\xc4\\xe9\\x79\\xdc\\x75\\xe9\\xcb\\xab\\xe0\\x9c\\x4e\\x05\\xea\\x2e\\x32\\x5e\\x06\\x02\\x04\\xe2\\xa4\\x6a\\x3f\\x01\\xef\\x07\\x33\\xe0\\x19\\x39\\x83\\x94\\x12\\x3c\\x81\\x97\\xc1\\x31\\x5e\\xdd\\x94\\x18\\x88\\xb8\\xa6\\xcc\\xbc\\x4c\\x71\\xea\\x7f\\x0a\\x37\\xcc\\x18\\x7c\\x70\\xbd\\x97\\x7c\\x4b\\xe2\\x72\\x7d\\xae\\xaa\\x2d\\x25\\xdc\\xb0\\xff\\x0d\\x85\\xaa\\x60\\xcd\\xf0\\x46\\xa1\\x00\\xde\\xac\\xe9\\x2f\\x4b\\x82\\x38\\x85\\xbf\\x8d\\xf9\\x46\\xc7\\xfe\\x3d\\xf6\\x05\\xbd\\x9e\\x7b\\x15\\x59\\x91\\x0b\\xcd\\xf2\\x36\\x45\\x06\\xe4\\x6d\\x04\\x4a\\x4c\\x80\\x28\\xad\\x97\\x03\\x87\\x08\\xe5\\x48\\x5f\\x10\\xe8\\x91\\x24\\xea\\xa9\\xda\\x86\\x10\\xaf\\x75\\x32\\xf2\\xd9\\x32\\x00\\xe5\\xe5\\x64\\xb8\\x6c\\xae\\xd4\\xe4\\x78\\xad\\x52\\x11\\x1e\\x86\\xac\\x60\\x0d\\xe3\\x55\\x36\\x2e\\x2d\\x0b\\x5b\\x9c\\x66\\xb3\\xdb\\xc1\\xc7\\x69\\x02\\x68\\x10\\x59\\x88\\x44\\xd6\\xad\\x89\\x22\\x10\\x82\\xd7\\xab\\x49\\xd4\\xf6\\x57\\xf7\\x56\\xc1\\xce\\x03\\x61\\xcf\\x82\\x3e\\x83\\xd4\\x6d\\x3d\\xd5\\xbf\\xf1\\x81\\xc5\\xd9\\xe0\\x5f\\x9d\\x5a\\xb3\\x7a\\x96\\xb5\\xce\\xeb\\x8a\\xcb\\x55\\x7b\\x67\\x0d\\x08\\xa7\\xe1\\x78\\x74\\x46\\x7d\\xb1\\x73\\xa6\\x3b\\x51\\x33\\xef\\x9e\\x8f\\x76\\xf5\\x25\\xfd\\xc7\\x29\\xdf\\x12\\xdd\\xee\\x8f\\xee\\x6e\\xef\\x7e\\xe0\\xef\\xfb\\xce\\xce\\x68\\x3c\\xbc\\xcc\\x1b\\xa9\\xd4\\x4e\\x7b\\x2d\\x32\\x39\\x41\\x41\\x96\\x37\\x95\\xae\\xeb\\x72\\x17\\x2f\\x39\\x26\\x8d\\x19\\x25\\x8f\\x7d\\x45\\x0f\\xd3\\x46\\x64\\x45\\x4e\\xd4\\xe2\\x9d\\x15\\x05\\x3c\\x70\\x40\\xf8\\xf1\\x31\\x23\\xe0\\x78\\x0e\\xf8\\x21\\xc4\\x23\\x42\\x79\\xd2\\x27\\x87\\x00\\x28\\x3d\\x65\\xca\\xb0\\x73\\xb2\\x33\\x9c\\x36\\x67\\x6a\\x72\\x42\\xbc\\x2a\\x36\\x22\\x7c\\xd2\\xb0\\xb3\\x88\\xdb\\x11\\x37\\x61\\xd4\\x81\\xf8\\xa2\\x26\\x8a\\x10\\x96\\x1c\\xe1\\xcc\\x22\\xf8\\xfb\\xc1\\x47\\xb6\\xd6\\xd0\\xb2\\xde\\x72\\x3d\\x3c\\x8a\\x33\\xb3\\xa3\\x9b\\xd6\\x1c\\x6b\\x59\\x76\\x72\\x89\\x0b\\xfc\\x07\\x39\\x43\\x71\\x4b\\x41\\xb6\\xaf\\xcc\\xa1\\xe9\\x4f\\x6a\\xe8\\x1e\\xea\\xb0\\x96\\xe7\\xea\\x65\\xb0\\x19\\xd4\\xf6\\x4a\\x95\\x6f\\xdf\\x0b\\xab\\xa2\\xbd\\xbd\\xdb\\xea\\x6b\\x17\\xc6\\xf7\\xdc\\xb5\\xd6\\x3b\\x63\\xff\\x73\\x4b\\x77\\x95\\x2c\\x6e\\xb4\\x47\\xeb\\x4c\\xea\\x1b\\xf4\\x85\\x56\\x2d\\x39\\x61\\xad\\xea\\x72\\x24\\x64\\xcd\\x2e\\x95\\xb8\\x54\\x9e\\x12\\x5e\\x67\\xbc\\xfd\\x89\\xa2\\xfe\\x21\\x07\\x9e\\x15\\xf6\\x44\\x3c\\xc2\\x7c\\x3f\\xe2\\x10\\xe5\\x68\\x0f\\x81\\x71\\x63\\xd2\\xac\\x48\\x08\\xaa\\x39\\xfa\\x20\\xa0\\x35\\xc0\\x83\\x17\\xb2\\x18\\xe0\\xde\\x0b\\x17\\xb6\\x43\\x23\\xe8\\x85\\xa1\\x05\\x77\\xac\\xf0\\x14\\x6d\\x0b\\xda\\x0c\\x27\\xef\\x7e\\x8f\\x1b\\xf6\\x9f\\xc4\\xbd\\xfe\\x6b\\x63\\xe7\\xdd\\xf0\\xea\\xa6\\xcd\\xbf\\x3d\\xde\\xf2\\xcb\\xd2\\x45\\xa2\\xd5\\x20\\xed\\x8b\\xf7\\x08\\x5f\\xd1\\x6e\\x09\\x57\\xe1\\x35\\x47\\x84\\x63\\xa8\\x09\\xc0\\x6a\\x83\\x78\\x34\\xa6\\x30\\x86\\x34\\x8f\\x58\\x8e\\x57\\x8d\\x6b\\x1e\\x92\\xb5\\x60\\x09\\x01\\x6d\\xf1\\xbf\\x9a\\x76\\xcd\\xcb\\x4b\\x9f\\xbb\\xbf\\x6f\\xd6\\xd2\\x5e\\x73\\x55\\x6f\\xf1\\x3b\\x23\\x23\\x6b\\xc0\\x01\\x16\\x3c\\x5f\\x59\\xbf\\xe2\\xa6\\xae\\x82\\xbd\\xdb\\x17\\xc5\\x3f\\x6a\\x3a\\x30\\xdf\\xdb\\xeb\\x4d\\xa3\\x41\\x04\\x6e\\xc0\\x7e\\x6a\\xa0\\x19\\xcc\\x7e\\x2a\\xf2\\x16\\x44\\x01\\xe1\\x22\\xa5\\xb5\\x87\\x10\\xe5\\x10\\xed\\x93\\xf1\\x98\\x49\\xe4\\x32\\xd4\\x0d\\x42\\x48\\x87\\x74\\x0a\\xa5\\xcb\\xa4\\x50\\x48\\xd9\\xe9\\x7a\\xc5\\xe5\\x78\\x1b\\xa6\\x13\\xc2\\x8d\\xf0\\xd0\\x05\\x56\\x07\\xb4\\x48\\x1f\\x15\\xa6\\xd3\\x25\\x84\\x15\\x97\\x0b\\x6d\\x17\\xb8\\x61\\xff\\x0e\\x7c\\x4d\\xa8\\x14\\x28\\xe1\\x08\\x74\\xb7\\xe0\\xc7\\xfd\\x47\\x59\\x0e\\xf2\\x9d\\x42\\x03\\x35\\x33\\x7b\\xea\\xea\\x7d\\xd2\\x5e\\xb5\\x4f\\x96\\x9f\\xec\\xd3\\x21\\x78\\x78\\x24\\xa7\\x63\\xd7\\xac\\x34\\x4f\\x5a\\x10\\xee\\x23\\xb4\\x8e\\x48\\xf8\\xdb\\x8b\\x7b\\xc7\\xfb\\x84\\xbb\\x5b\\xe1\\x5b\\xa1\\x9e\\xe9\\x68\\xb3\\xc7\\xbe\\xa4\\x03\\x2c\\x7e\\x90\\x85\\xa6\\x7b\\xbd\\xc9\\x40\\x50\\xd2\\x95\\x6b\\x92\\x25\\x8d\\xd7\\x24\\x4b\\x06\\x9f\\xd1\\x00\\xc8\\x9a\\x6e\\xc8\\x32\\x66\\xc5\\x6b\\x58\\x4d\\xb2\\x34\\x48\\x93\\xf3\\x53\\x6b\\x92\\x05\\x37\\x80\\xcb\\xaa\\x92\\x15\\xec\\xff\\xfd\\xa1\\xda\\x59\\x37\\x9c\\x5d\\xb9\\xe3\\x95\\x6b\\xca\\x89\\x21\\xcd\\xb7\\x69\\xae\\xab\\xcb\\x57\\xa2\\xcd\\x8d\\xf2\\xb4\\x6f\\x5c\\x54\\xbd\\xb4\\xde\\x0c\\xfe\\x77\\x12\\xcb\\x07\\xb9\\xd7\\xbb\\xee\\xfb\\x64\\xdf\\xf7\\x07\\xff\\xf1\\xd0\\x3c\\x68\\x3d\\xf9\\xf7\\x43\\xbf\\x6a\\x6e\\x39\\x3e\\x54\\x11\\x15\\x17\\x3f\\xed\\xf9\\xb0\\xe4\\x24\\xf5\\x0f\\x5f\\x57\\xac\\xb9\\xad\\xad\\xb3\\x6a\\x73\\x47\\x3e\\xe3\\x5d\\x3f\\x4f\\x97\\x33\\x7c\\x44\\x91\\xb7\\x80\\x02\\x02\\x23\\x87\\x39\\x84\\xeb\\x03\\xfb\\xfe\\x10\\x53\\xcc\\xe9\\x8a\\x20\\xc8\\x77\\x9c\\xd6\\x25\\x19\\xfb\\xcc\\x46\\x95\\x2d\\x80\\xf3\\xd6\\x3b\\xf5\\x1a\\x98\\x40\\x0a\\x3a\\x19\\xe2\\x4e\\x32\\xfc\\x37\\x90\\x7d\\x20\\x6c\\x5b\\x74\\x72\\x45\\xa1\\xef\\xc0\\x0b\\x2b\\x3b\\x1e\\xbf\\xae\\x65\\xd4\\x50\\xde\\x59\\xe0\\x5d\\x58\\x6d\\xbc\\xed\\xa6\\xc3\\xf4\\xeb\\x73\\x27\\x84\\xf2\\x88\\xaa\\x55\\xb7\\xf7\\x0f\\x9c\\x5c\\x51\\x98\\xbb\\xe8\\xee\\x10\\x93\\xd2\\x2d\\xbb\\x1f\\x61\\x78\\x6d\\x61\\x1d\\x9d\\x4f\\x3d\\xc8\\x88\\x16\\x7b\\x23\\x26\\xf4\\xb3\\x61\\x38\\x87\\x1d\\xeb\\x57\\xee\\xae\\x36\\xd4\\xdd\\x04\\xf1\\x74\\xd3\\x5f\\xde\\x8c\\x22\\x4c\\x99\\x6f\\x40\\x6a\\xcd\\xf8\\xbe\\xd3\\x8d\\x2a\\xeb\\xc4\\x51\\x5d\\x11\\xb8\\xcf\\x6a\\x0c\\x90\\x58\\xff\\x6d\\xe4\\x00\\x08\\xfb\\xde\\xfa\\xb3\\xef\\xc0\\xaf\\x02\\x83\\xf2\\x76\\x15\\x78\\x07\\xaa\\x4c\\x96\\x19\\xab\\xea\\x6f\\x20\\x1b\\xcf\\x9d\\x10\\xbc\\xda\\x4f\\x5f\\x1b\\xb8\\x8b\\x0d\\x6a\\x65\\xf6\\x9c\\x32\\x93\\xb1\\xac\\x25\\xaf\\x61\\x69\\x65\\xea\\xc3\\x08\\x8d\\x8d\\xa1\\x7c\\xa1\\x81\\xee\\xe7\\x86\\xb1\\x19\\x3d\\x3e\\x0b\\x21\\x0b\\xbc\\x3d\\x46\\x91\\x0d\\x78\\x78\\xf7\\x28\\x42\\xf2\\x27\\x01\\x86\\x6d\\xc3\\x0e\\xdb\\xd8\\x18\\x9a\\x27\\xd4\\xd1\\x6d\\xd4\\x83\\xcd\\xe8\\x1f\\x8d\\x52\\x3b\\xfb\\x58\\x33\\xc8\\xe0\\xdd\\xb1\\xa5\\x63\\x02\\x8a\\x7d\\x12\\xe0\\xb9\\xb1\\xe6\\x61\\x87\\xed\\x49\\x0c\\xcf\\x8d\\x09\\xc3\\x0e\\x1b\\xc2\\x68\\x0e\\x42\\xb4\\x32\\xc0\\x3f\\x93\\xe3\\xb5\\x33\\x47\\x19\\xc5\\x81\\x43\\x94\\x81\\xb4\\x42\\xa0\\x52\\x84\\xa2\\x75\\xd1\\x09\\xb1\\x31\\x28\\x0a\\x45\\xea\\x15\\x32\\x3e\\x8e\\x01\\x7c\\xf5\\xc1\\x12\\xf7\\x4a\\x45\\x88\\xad\\x9a\\xcc\\xbe\\x20\\xa8\\x82\\x44\\x34\\x17\\x2f\\x86\\x68\\x68\\x8e\\xe2\\xe4\\x1f\\x9a\\xab\\xb6\\x9c\\x5a\\xd0\\xff\\xe0\\xc6\\xe9\\xfe\\x6c\\x1c\\x63\\xab\\x9d\\x97\\x97\\x3f\\xbf\\xc1\\x3e\\x9e\\x67\\x7c\\x96\\xcd\\xb3\\x5c\\x34\\x10\\x28\\xd1\\x4b\\x01\\x10\\x47\\x80\\x93\\x08\\x71\\xe4\\x3c\\x26\\x04\\x75\\xc9\\x24\\x47\\x80\\xce\\x6b\\x40\\x14\\x03\\xa6\\x30\\x84\\xae\\xde\\xaa\\xdd\\x1b\\x6f\\x32\\x01\\x32\\xe5\\x9a\\x72\\xd2\\xcd\\x09\\xf1\\x31\\x51\\x91\\xd3\\x22\\xc2\\x90\\x11\\x0c\\xe2\\xa1\\x13\\xea\\xbd\\xa8\\x19\\xb8\\x4b\\x89\\xdb\\x95\\xc5\\xe8\\x4b\\x65\\x51\\xc4\\x60\\x1a\\x1f\\x10\\x5c\\x98\\x7f\\xdb\\x92\\x82\\x82\\x25\\xb7\\xcd\\x77\\x8c\\x9a\\x2c\\x05\\xa6\\x58\\x00\\x79\\xb4\\x26\\xfa\\x8b\\xc8\\x04\\x65\\x38\\xe0\\xc2\\x81\\x23\\x73\\x85\\xf3\\x8e\\xac\\x0a\\x9b\\x4a\\x65\\xab\\xc8\\x0a\\x0e\\x10\\x27\\x5f\\x8c\\x01\\x70\\xb4\\xad\\x9f\\x6e\\x5f\\xb6\\x62\\x99\\xdd\\xbe\\x64\\xf9\\xff\\x8f\\xba\\x37\\x0f\\x6f\\xea\\xb8\\x1a\\x87\\xcf\\xcc\\x9d\\x7b\\x25\\x1b\\x30\\x96\\x6d\\x59\\xde\\x2d\\x59\\x9b\\x65\\x59\\xb6\\x64\\x59\\x92\\xe5\\x55\\xde\\xf0\\x6e\\x6c\\x63\\x8c\\xcd\\x62\\x76\\x30\\x9b\\x59\\xcc\\xbe\\x67\\x81\\x04\\x82\\x43\\xf6\\x15\\x03\\x81\\x04\\xb2\\x87\\x94\\xb8\\x49\\xf3\\x36\\x09\\x21\\x84\\xa4\\x4d\\x9b\\xbd\\x6d\\xfa\\xbe\\x4d\\xd3\\xb4\\x7d\\xdb\\x24\\x90\\x04\\xb2\\x37\\xe0\\xab\\xef\\xb9\\x33\\x57\\xd7\\x12\\xa6\\xcb\\xef\\xfb\\x7e\\xff\\x7c\\x3c\\x0f\\xa0\\x7b\\xe7\\xdc\\x33\\x33\\x67\\x66\\xce\\x9c\\x73\\xe6\\xcc\\x39\\xcb\\x9d\\x5b\\x5e\\xde\\x55\\xfb\\xf2\\x95\\xfd\\xee\\x0d\\x7e\\x4a\\x0e\\x08\\x49\\xe0\\x80\\x00\\x54\\x06\\xca\\x55\\x88\\x83\\xf2\\x3c\\x8c\\x05\\x33\\x22\\x98\\x93\\x0f\\xbd\\x38\\x69\\x5f\\x95\\x76\\x57\\x41\\x76\\x9f\\x52\\x21\\x8c\\x59\\x68\\xd6\\x0c\\xd2\\x6c\\xb3\\x98\\x6c\\x3a\\x73\\x5c\\x98\\xcf\\x94\\x4e\\xe3\\xd6\\x08\\x19\\xd8\\x2d\\x75\\xc9\\x12\\xea\\x91\\xa0\\x68\\x1e\\xc8\\x32\\x7a\\x6e\\x27\\x69\\x6c\\xd6\\xde\\xec\\x96\\xd5\\x0d\\x53\\xca\\x2f\\xa0\\x28\\x4d\\xf2\\xc4\\x44\\x83\\x6e\\x3c\\xc6\\xfa\\x8c\\x4f\\x27\\x24\\xc7\\x8f\\x43\\xd8\\x37\\x63\\x7d\\x55\\xf7\\x4e\\x8b\\x71\\x5e\\x65\\xfd\\xaa\\x96\\x6c\\x74\\xca\\xe8\\x34\\x3a\\x33\\x26\\x4c\\x48\\xcf\\x37\\x66\\xe4\\x6b\\x54\\x18\\x37\\xae\\x7e\\x61\\x4f\\x4b\\x29\\x16\\x2e\\x59\\xf4\\x1e\\x6b\\x22\\x2a\\x98\\x75\\x5d\\xc7\\x82\\x37\\x16\\xb8\\xe6\\x2f\\x5c\\xec\\xbe\\xe9\\xad\\x1b\\x6b\\x70\\x69\\x4d\\x69\\x55\\xed\\xd6\\xc7\\x16\\xa1\\x07\\x6d\\xee\\x69\\x6b\\xab\\x06\\x8b\\xe7\\xd7\\xdb\\x52\\x93\\x72\\x0a\\xa4\\x35\\x5b\\x12\\xfc\\x94\\xdc\\xc5\\x9f\\x80\\x22\\x28\\x0a\\x78\\x92\\x59\\x0c\\x5a\\x1e\\x23\\xcc\\xd3\\x31\\x05\\x82\\x80\\x5e\\xff\\x9e\\x11\\x0a\\xc9\\x17\\x0a\\x3e\\x64\\xd5\\xe5\\x1b\\x4c\\x06\\x13\\x35\\x2a\\xb0\\x95\\xa6\\xb8\\xba\\x86\\xa2\\x69\\x64\\x70\\x5a\\xad\\x90\\x18\\xa2\\x40\\x62\\x22\\xa5\\x40\\x1e\\xb6\\xa2\\xdf\\x24\\xd9\\x4b\\x8c\\x77\\xf7\\x0e\\x2c\\x9b\\xd7\\xf7\\xfe\\xfb\\x4b\\x1e\\x5c\\x53\\xba\\x62\\x41\\x51\\xab\\x2b\\x11\\x65\\x5b\\xb2\\x0a\\x4d\\x5a\\x8c\\xf4\\x19\\x9f\\xa5\\xd8\\x31\\xae\\x5c\\x36\\xd8\\x32\\x69\\x55\\x5b\\x1e\\x87\\x36\\x78\\xbb\\x2b\\xb2\\x5e\\x59\\xb7\\x76\\xc1\\x86\\x57\\xbc\\x4b\\xee\\x5f\\xb4\\xf6\\x21\\x57\\x42\\xa0\\xab\\xaf\\x64\\x59\\x8e\\x0f\\x15\\xcc\\xa4\\x9d\\x9d\\xf7\\xcb\\xc5\\xfb\\xde\\xdc\\x53\\x8d\\xf5\\x93\\x56\\x4d\\xa6\\xfb\\x64\\x4b\\xf0\\xcf\\xe4\\x66\\x1a\\x5b\\xb7\\x28\\xe0\\xe1\\x58\\xcc\\x18\\xc4\\x13\\x1e\\xd1\\x13\\x56\\x0e\\x58\\xe8\\x18\\xda\\x1b\\x76\\x87\\x6d\\x26\\xe3\\x97\\x06\\x8b\\xc1\\x6c\\xd3\\xda\\x69\\xbf\\x46\\xfb\\xe0\\xf5\\x46\\x8e\\xa2\\xa7\\xd0\\x62\\x35\\x5a\\xdd\\x72\\x18\\x11\\xe9\\x57\\x06\\xc6\\x9f\\x4c\\x9f\\xe6\\x69\\x70\\xc4\\x23\\x43\\xae\\x3d\\x5f\\x1a\\xbd\\x4f\\x26\\x24\\x27\\x8c\\x43\\xd8\\xdb\\xb3\\x36\\x30\\x34\\x14\\x35\\xb9\\xe9\\x35\\xbc\\x7f\\xe9\\xac\\x44\\x67\\xb3\\xe7\\x8f\\xc2\\x5f\\x97\\x3c\\xb8\\xaa\\x18\\x7f\\xdf\\xbe\\xca\\x14\\x93\\x57\\xda\\x60\\x2b\\xb7\\x14\\xe0\\xfd\\x3b\\x5b\\x8f\\xb6\\x5a\\x27\\xb7\\xb5\\x67\\xaf\\x3e\\xbe\\xd2\\xc7\\xad\\xbe\\xae\\xa9\\xa4\\x12\\x3f\\xdf\\x58\\x61\\x28\\xca\\xd6\\x9d\\xca\\xed\\xd8\\x04\\x18\\x9e\\x10\\xf7\\x92\\xfd\\xfc\\x09\\xb0\\x83\\x0f\\x02\\x81\\x32\\x2d\\x22\\xa0\\xa7\\x7a\\x46\\x81\\x0b\\x73\\x75\\x00\\x02\\x92\\xf6\\xdb\\x70\\x27\\x6f\\x9e\\x1f\\x0d\\x19\\xe3\\xf3\\x82\\x1d\\x72\\xb2\\x0c\\x06\\x8b\\x41\\x25\\xe8\\xec\\xf1\\x4a\\xf3\\x0d\\x56\\x43\\xd8\\x88\\x25\\x64\\x60\\x9d\\xd6\\x98\\xc7\\x12\\x10\\xa1\\x90\\xf8\\xe2\\x71\\x8f\\xa0\\x57\\xef\\xbe\\x3e\\xb3\\x72\\x51\\x9d\\xf8\\x31\\x87\\xb2\\x36\\xbd\\x70\\x4d\\xcd\\xda\\x55\\x81\\x6e\\x6f\\x92\\x2a\\x36\\x35\\xe1\\x3b\\x5d\\xca\\x78\\xbc\\x7d\\x00\\x1f\\x49\\x75\\xd7\\xd9\\x6f\\xb0\\xe7\\x7d\\x89\\x7b\\x4f\\xad\\x5b\\xed\\x99\\x56\\x9e\\x75\\xca\\xb7\\xfc\\xe0\\xa2\\xd5\\x47\\x0a\\x12\\xaa\\x7b\\x96\\x97\\x6d\\x4e\\x2d\\x2b\\xf1\\xc4\\xe9\\x12\\x6a\\xea\\xab\\x34\\xeb\\x57\\x5f\\x3f\\x72\\xc6\\xb3\\x6a\\xf9\\x5c\\x4b\\x5d\\xfd\\xa1\\x79\\xef\\xd0\\x75\\xf8\\xaa\\xb8\\x89\\x2c\\x24\\xc5\\xe1\\xfd\\x4b\\xfd\\x17\\xfd\\x4b\\xba\\x6a\\xff\\xf4\\x72\\xff\\xd0\\xff\\x61\\xff\\x10\\x8f\\xfe\\xba\\x7c\\x7e\\x92\\xbb\\xd5\\x2b\\x7e\\x4c\\x90\\x71\\xc9\\xb1\\x81\\xb2\\x9e\\xa9\\x05\\xb5\\x39\\xf1\\x64\\x7c\\x42\\xec\\x77\\x9a\\xb8\\x28\\x34\\x6f\\x0e\\xee\\x0b\\x75\\x10\\x1d\\x7c\\xba\\xb5\\x32\\xab\\x38\\x27\\xe9\\xc5\\xbc\\xae\\xad\\xad\\xed\\xeb\\x2c\\x1a\\x77\\x75\\x9b\\x63\\xda\\x04\\x5b\\xae\\x75\\x9c\\x66\\x7c\\xbe\\xdb\\x31\\x6e\\x6a\\xeb\\x54\\x71\\x20\\xbc\\x83\\x08\\x34\\xc1\\x4f\\xe9\\x1d\\x09\\x3b\\x2c\\x64\\xe7\\xd7\\xfa\\x50\\xb8\\x67\\xe0\\x38\\xa1\\x47\\x45\\xaf\\xdf\\xf0\\xf4\\x76\\x71\\xe8\\xca\\x7b\\x20\\x1b\\x90\\x24\\x6d\\xf1\\xe1\\x20\\xc0\\xf3\\xd4\\x7f\\x4d\\xa7\\xc4\\x02\\xa7\\x01\\x6b\\x27\\xb2\\x40\\xb0\\x06\\xb3\\xd6\\xaa\\x33\\x32\\x89\\xea\\x6a\\xcb\\x4f\\x63\\xd4\\x24\\xc8\\xc1\\x06\\x69\\x34\\x16\\xce\\x8d\\xd3\\x53\\x74\\xc6\\xe4\\x18\\x8c\\x12\\x13\\xfe\\x3b\\x3e\\x03\\x4b\\xfc\\xa6\\xb2\\x72\\x71\\xa3\\x8d\\xdb\\x97\\x33\\xf3\\x8e\\xa5\\x06\\xad\\xbd\\xd4\\x1a\\xc7\\x9f\\xb8\\xb4\\x38\\xaf\\xf4\\xca\\xe5\\x66\\x68\\x18\\x68\\xe7\\x7e\\x2b\\xc6\\x9f\\x16\\x3f\\x7a\\xa9\\xf7\\x74\\xe5\\x4d\\xbf\\xbf\\x37\\x14\\x3b\\xcf\\x2e\\xf1\\x54\\x52\\x0c\\x36\\xb8\\x85\\x65\\xf9\\xcc\\x04\\x5e\\x12\\xbd\\xf0\\x2a\\x50\\xe2\\x9b\\xd0\\xec\\x57\\x33\\x65\\x5b\\xab\\x7c\\xa4\\x6f\\x1b\\x0b\\x36\\x1a\\xd8\\x89\\xde\\x48\\x56\\x3e\\x08\\x58\\xff\\x09\\x2c\\xc8\\xa0\\xc2\\x4c\\xc6\\xab\\x24\\x5d\\xd8\\xaa\\x35\\x6a\\x0d\\xe6\\x90\\x29\\x37\\x74\\x33\\x99\\xa6\\xbb\\xd5\\x8c\\x2e\\xf0\\x51\\x2a\\x61\\xf3\\x1e\\x63\\xcb\\xd6\\x9e\\x5c\\xa2\\x4d\\xcf\\x4e\\x1a\\x87\\x97\\xa0\\xd4\\x94\\x5c\\x37\\xe5\\xc9\\xa9\\x39\\x18\\x17\\xcd\\xdc\\x58\\x5d\\xb5\\xa4\\xc9\\xce\\x71\\x1b\\xc4\\xef\\xef\\xfb\\xf4\\xc0\\xe4\\xb7\\x51\\xfe\\xc2\\x03\\x2b\\xd0\\xaf\\x2e\\x5f\\xf0\\xd6\\xe3\\x87\\x6f\\x9b\\x7d\\xaa\\x77\\xd6\\x4b\\x73\\xaf\\x79\\x69\\x7b\\x05\\x36\\xb6\\x6e\\xee\\xa2\\x77\\x20\\x3f\\xa5\\xb6\\x54\\x33\\xf4\\xb1\\x8e\\x1a\\xc3\\x15\\x36\\x90\\x14\\x36\\x15\\x33\\xfa\\x4b\\xbc\\x48\\x19\\x7e\\xeb\\x3f\\x83\\x0a\\x8d\\xfe\\xcc\\xd0\\xe8\\xc7\\xb2\\x54\\xf8\\x1a\\x8d\\x46\\x6b\\xd3\\x19\\x59\\xf8\\x8f\\xd1\\xe1\\x97\\x39\\x57\\xc8\\xfc\\x29\\xed\\xb6\\x9c\\x1e\\x25\\x27\\x26\\x9a\\x92\\x63\\x30\\x36\\x64\\x7c\\xc6\\x78\\x95\\x7f\\xd6\\xe6\\xea\\xc0\\xe2\\xc6\\x1c\\xee\\x6f\\x17\\x2f\\xfe\\x8d\\x3f\\x71\\x69\\xbd\\xa7\\x1a\\x15\\xcc\\xb8\\x62\\x3b\\xb1\\x74\\x5c\\x3b\\x13\\xe5\\x4b\\xb2\\xbf\\xa4\\x14\\x00\\x82\\xe9\\xc1\\x4f\\x69\\x8e\\x00\\x03\\xcc\\x0d\\xa5\\xb9\\x17\\x30\\x87\\x05\\x49\\x86\\x03\\xe0\\x95\\xd0\\x43\\x34\\x66\\x87\\x2a\\x34\\x7a\\x96\\x7f\\x02\\x44\\x07\\x8f\\xe7\\x55\\x33\\x41\\xa5\\xca\\x50\\x35\\xf7\\x04\\xc6\\x59\\xb5\\xc6\\x30\\x8b\\x96\\xdc\\x7c\\xf7\\xd5\\x87\\x6d\\xe2\\xab\\x17\\x2e\\xbc\\xfa\\x25\\xb2\\x18\\x4d\\x36\\x8c\\xb4\\x09\\x7f\\x8f\\xcf\\xc4\\xd8\\x33\\x6d\\x75\\x05\\xdb\\x48\\xfe\\x4b\\xac\\x25\\xc5\\x62\\x25\\x7a\\xe9\\x9f\\x8e\\xd3\\xfa\\xe0\\x39\\x32\\xc8\\xbf\\x0a\\x76\\x28\\x0d\\xf8\\x63\\x10\\x46\\x13\\x11\\xc1\\xb8\\x11\\x08\\xe6\\x30\\xa1\\xb9\\x4e\\xc2\\xef\\x4b\\xf0\\x4c\\xa9\\x46\\x60\\x32\\x66\\xa4\\xc5\\x4b\\xea\\x82\\x1d\\xd9\\x05\\x59\\x99\\xf6\\x44\\x24\\x63\\x0f\\xd9\\x67\\xc3\\x9b\\x8c\\x6f\\xdf\\xf4\\xda\\xfe\\xd6\\xd6\\xfd\\xaf\\x6d\\x5a\\x7b\\xa2\\xba\\xa2\\x72\\x7f\\x77\\xdd\\xca\\x16\\x9b\\xad\\x65\\x65\\xdd\\xce\\x5d\\x1c\\x4e\\xd7\\x7d\\x16\\x6f\\x45\\x78\\xca\\xde\\x9f\\x6a\\x7b\\x1f\\xfa\\xf3\\x2e\\x24\\xec\\xfa\\xf3\\x43\\xbd\\x8e\\xdc\\x27\\x0d\\xc6\\xea\\x81\\x7b\\xbb\\xc4\\x1f\\xba\\xef\\x1b\\xa8\\xc6\\x7b\\x36\\x74\\x9f\\xec\\x9e\\xf6\\x93\\xe9\\x03\\x8f\\xae\\xf2\\xd1\\x75\\x77\\x6b\\xf0\\x1c\\xe9\\xa7\\xb1\\x0c\\x4a\\x03\\xfe\\x4c\\x44\\x38\\x3d\\x42\\x84\\x46\\x5e\\x97\\xf6\\xf2\\x55\\xa3\\x47\\x96\\x7c\\x44\\x14\\x03\\x53\\x56\\x7a\\x6a\\x5c\\x6c\\x94\\x1a\\x1c\\xc8\\x21\\xb5\\xdf\\x5c\\xce\\xf9\\x0a\\x59\\xf0\\xfb\\xd0\\x4d\\xd6\\x2b\\x3a\\x43\\xd5\\x9d\\x17\\x7c\\xd2\\x86\\xc7\\xc7\\x7c\\x32\\x2e\\x16\\x57\\x0f\\x0c\\xcd\\xdc\\xfd\\xd6\\xcd\\x0d\\x75\\x37\\xbe\\xbe\\x73\\xe5\\x03\\xee\\x3c\\xef\\x60\\x47\\xeb\\xaa\\x7a\\x83\\xb1\\x79\\xe3\\xe3\\x28\\xd1\\x56\\x62\\x71\\x2d\\x29\\x28\\xe8\\x2b\\x98\\xbe\\xab\\xdb\\xde\\x7d\\xe7\\x99\\xe5\\x39\\xcb\\xcf\\xdc\\xd1\\x6d\\xcc\\x7c\\x3e\\x35\\xb3\\x7c\\xfe\\xd6\\xb2\\x9c\\x8a\\xad\\xf3\\xcb\\x69\\xfb\\x27\\x05\\x3f\\x25\\x87\\xe9\\x7d\\xbc\\x1c\\x1a\\x22\\x50\\xda\\xa9\\x57\\x31\\x13\\x24\\x53\\x6d\\xe4\\x48\\x88\\x19\\x7c\\xb3\\x55\\x67\\xd6\\x8c\\x2a\\x01\\x5a\\x96\\x8c\\x61\\xac\\xb4\\x71\\x87\\xf8\\x13\\xee\\x41\\xf1\\x7e\\x8d\\x3e\\x2f\\xdd\\x56\\x61\\xd7\\x61\\x6c\\x48\\xff\\x34\\xd5\\xce\\xe1\\x9a\\xd5\\x77\\xb4\\x77\\x5c\\xd7\\xeb\\x25\\xe4\\xf3\\x57\\x5e\\xb9\\xbc\\xd9\\x56\\x53\\x90\\x1a\\xc6\\xde\\xe8\\x4c\\xcf\\x99\\x75\\xeb\\x22\\x40\\x50\\x13\\xfc\\x94\\x6c\\xa6\\xf3\\xfb\\x6a\\x6d\\x4a\\x0a\\x6f\\x93\\x4d\\x7b\\x95\\x36\\x45\\x4a\\x0f\\x52\\x9b\\x36\\x8a\\xbf\\xe2\\x6e\\x12\\xef\\xd1\\x18\\x5d\\x99\\x4d\\xed\\x1c\\x36\\xa4\\xff\\x9d\\xad\\xbf\\xaa\\x15\\xfb\\x5b\\x3b\\x77\\xcd\\xf6\\x11\\x6e\\xf3\\xa9\\x53\\x23\\xe7\\x6d\\x35\\xae\\x34\\xbc\\x6b\\x7d\\xe3\\x50\\x93\\xb9\\xb9\\xa5\\xd5\\x22\\x09\\x06\\x38\\x67\\x26\\x6d\\x53\\x57\\xf0\\x1c\\x59\\xc6\\xbf\\x0a\\xa5\\xff\\x79\\x2e\\xae\\x74\\x25\\x17\\x57\\x86\\x92\\x8b\\x2b\\x97\\x49\\xac\\x5e\\x1f\\xcb\\xc4\\xf8\\x9f\\xe6\\xe2\\xea\\xba\\x76\\x93\\x77\\x6a\\x49\\x66\\xd3\\x9e\\xd3\\x1b\\xe6\\x3e\\x79\\x6d\\xcb\\x45\\x73\\xa0\\xab\\xa0\\x71\\xd9\\x24\\x43\\x46\\x60\\x51\\xdd\\x4b\\x2f\\xdd\\x7c\\xbb\\xad\\x75\\x4d\\x43\\xf1\\xec\\x1a\\xf3\\x85\\x69\\x83\\x27\\x67\\x6c\\xf8\\xc5\\x6d\\xed\\xe8\\x9e\\x1d\\x8f\\xe5\\x24\\x55\\xb5\\xcf\\x2c\\x58\\x74\\xff\\x12\\xaf\\x7f\\xc9\\xdd\\xbd\\x79\\x93\\x8b\\xf4\\xa6\\xb2\\x76\\x47\\x41\\x47\\xb1\\xe1\\xc5\\x81\\x6d\\x05\\x5d\\x92\\x2a\\x39\\xd5\\xb9\\xea\\x81\\xc5\\x2e\\x7f\\xff\\x61\\xaa\\x77\\x55\\xe1\\x95\\xe4\\x16\\xce\\x09\\x75\\xe8\\xc6\\xe0\\x5a\\x80\\x29\\xee\\x00\\xfc\\xcb\\xf7\\x0f\\x88\\x55\\xc4\\x07\\x80\\xad\\x50\\x09\\xe3\\x44\\x11\\x09\\x50\\x39\\x0e\\x20\\xea\\x69\\x40\\xcf\\x89\\x54\\xdd\\x02\\x84\\x3e\\xe1\\x2e\\x73\\x09\\x82\\x19\\xc6\\x41\\x6c\\x60\\x82\\xc0\\xb3\\xac\\xce\\x4b\\x52\\x90\\x5a\\x4b\\x73\\x4a\\xfb\\x74\\x82\\xa0\\xd5\\x1a\\xd1\\x27\\x29\\xce\\x6a\\xdb\\x7a\\xbb\\xf3\\x1d\\x72\\xc8\\xb5\\xbc\\x6f\\x96\\xa9\\xb5\\xe6\\xae\\x99\\x0f\\x49\\xdf\\xff\\x8a\\xbb\\x80\\x7f\\x10\\x92\\x60\\x1c\\x64\\x3e\\x23\\x7d\\x5e\\x47\\x3d\\xda\\x87\\x81\\x66\\xf6\\x4e\\x3d\\x29\\x21\\xeb\\x39\\xc9\\xd0\\x8d\\xca\\x16\\xf8\\x87\\x14\\x67\\x8d\\x6d\\x9d\\xdd\\xf9\\x0e\\xbf\\xbe\\x60\\xd9\\xe2\\x5e\\x53\\x6b\\xed\\x9d\\xb3\\x8e\\x4a\\xf3\\x1d\\x9d\\x16\\x5f\\xc6\\xdf\\xc0\\xf7\\xa3\\xed\\xa9\\x53\\xda\\x63\\x0e\\x43\\xf0\\xb5\\xd4\\x9e\\x2d\\xf6\\xbc\\xdf\\x4f\\x72\\x2d\\xeb\\x9b\\x65\\x6a\\xa9\\xbd\\x73\\xe6\\x49\\xa9\\xcf\\xe8\\x55\\xee\\x02\\xfe\\x4a\\x48\\x82\\x3a\\xd4\\x47\\x5e\\x00\\x38\\x05\\x8c\\x16\\xa8\\x86\\xbb\\xcc\\xbd\\x24\\x98\\xb1\\x15\\x2d\\x0e\\xce\\x04\\x00\\x15\\x5a\\x0c\\x8f\\x01\\x2b\\x33\\x73\\x17\\xb8\\x27\\x84\\x24\\x6c\\x45\\x7d\\xc1\\x1e\\x5a\\xd6\\x07\\xc3\\x34\\xaf\\x30\\x46\\x6e\\xf1\\x25\\xee\\x20\\xfc\\x2f\\x8c\\x03\\x1d\\x24\\x04\\x34\\x71\\x1a\\x81\\x27\\x50\\x87\\x10\\xc0\\x92\\xd4\\x14\\xac\\x4e\\x0c\\x6f\\x15\\x1f\\xd6\\xc0\\x05\\xc9\\xf9\\x55\\xb6\\xed\\xf6\\xbc\\xdf\\x23\\xbf\\xd4\\xd4\\xed\\x39\\x05\\x1f\\xd4\\x28\\x4d\\x3d\\xfa\\xc0\\xe8\\x4f\\x90\\xb8\\x10\\x90\\xd6\\xd1\\x58\\xc1\\xa4\\xb4\\x89\\x05\\x3d\\xe3\\x11\\xc7\\x55\\x48\\x1b\\x40\\x99\\x92\\x31\\x55\\x9d\\xa2\\xc4\\x3d\\x93\\x74\\x5d\\xd2\\x2a\\xee\\xfe\\x52\\xbc\\x09\\xad\\xfb\\x12\\x6d\\xe6\\xd6\\x5d\\xbe\\x89\\x5b\\xf7\\x2a\\x5a\\x2f\\xee\\xa5\\xb6\\x87\\x39\\xa4\\x87\\xde\\x6d\\x2e\\x0c\\xb8\\x40\\x10\\x4a\\xa9\\x4f\\x36\\xdf\\xa3\\x42\\x3c\\x5f\\xd1\\x14\\x85\\x38\\x8e\\xa5\\xa9\\x2e\\x6b\\x62\\xc9\\xa5\\xc3\\x2e\\x14\\x47\\xab\\xd3\\xed\\x86\\x50\\x25\\x72\\x45\\x5a\\x83\\xc6\\x40\\x7a\\xc4\\xdd\\x17\\xc4\\x41\\x34\\x20\\xfd\\xbd\\x80\\x36\\x8b\\xbb\\xd1\\x66\\x71\\x0e\\x3a\\xfc\\x12\\xfe\\xd9\\x69\\xa9\\xd6\\xd3\\x23\\x75\\x54\\xd6\\x41\\x77\\x62\\x15\\x37\\x99\\xfb\\x1c\\xb4\\x57\\xcb\\x69\\x6c\\x33\\xb1\\x64\\xea\\x63\\x2e\\x9d\\xdd\\x99\\xe9\\x6f\\x77\\x17\\x76\\xf8\\x33\\x33\\xfd\\x1d\\x6e\\x77\\x87\\x3f\\x93\\x4b\\xcc\\x9f\\xec\\xd7\\xeb\\xfd\\x93\\xf3\\x4b\\xf2\\x5b\\xa4\\xd7\\x2d\\xf9\\x6c\\xbc\\xc6\\x07\\xcf\\x13\\x27\\xf2\\x61\\x2b\\xc4\\x06\\x27\\x51\\xd7\\xc4\\x58\\x34\\x81\\x8d\\x25\\x3c\\x17\\x3c\\xcf\\x9b\\x58\\x99\\xf8\\x15\\x00\\x58\\x20\\x76\\x1b\\x85\\x90\\x3a\\x0b\\x02\\x04\\x82\\xe7\\xc9\\x63\\xfc\\x19\\x30\\x80\\x0f\\x4a\\xa0\\x1d\\x16\\xc3\\x36\\x68\\x0d\\x34\\x95\\x14\\x63\\x41\\xe5\\x57\\xe3\\x28\\x48\\x46\\x58\\xcd\\x35\\x82\\x00\\x3c\\x08\\xfc\\x7c\\x9a\\x1c\\x27\\x4a\\x0d\\x51\\xf3\\x43\\x97\\x24\\x6a\\x9a\\xa2\\x91\\x5a\\xcd\\x5c\\x61\\x6a\\x71\\xf3\\xa6\\x0d\\xfd\\xcb\\xe7\\xcf\\xb5\\xd9\\x1c\\x36\\x9b\\xc9\\x66\\x32\\x8d\\x57\\xa7\\xcb\\x7d\\x4b\\x0c\\xb9\\xb5\\x5c\\x91\\x2e\\x62\\x6c\\xcf\\xe3\\xad\\x48\\x67\\x1e\\x1b\\x4f\\x69\\xcc\\x1b\\x7e\\x2c\\x4c\\x65\\x56\\xd5\\x9c\\xf2\\xe2\\x1e\\xbd\\x7e\\xba\\xbf\\x62\\x4e\\x95\\xc1\\x50\\x39\\xa7\\xbc\\x78\\x86\\x5e\\xdf\\xed\\xaf\\x98\\x5b\\x95\\x25\\x06\\x0d\\x81\\x59\\x65\\x15\\x73\\x2b\\xb3\\xb2\\x2a\\xe7\\x94\\x97\\xf5\\x56\\x1a\\x36\\x76\\x72\\x9e\\xce\\xcb\\xdf\\x44\\x27\\x1a\\x93\\x93\\xb2\\xb4\\xd1\\xd1\\x5a\\x63\\x72\\xb2\\x51\\x1b\\x85\\xfb\\xa3\\x75\\xc6\\xa4\\xd4\\xac\\x04\\x55\\xb4\\x36\\x8b\\xbe\\x11\\xef\\x63\\x6f\\xe2\\xd5\\xa1\\x37\\xc8\\xe6\\x5f\\xd4\\x92\\x6b\\x31\\x18\\x2c\\xb9\\x2d\\x8b\\xfc\\x16\\xff\\xa2\\xe6\\x5c\\xb3\\xc1\\x60\\xce\\x6d\\x5e\\xe4\\xe7\\x1e\\x2e\\x5e\\xd4\\xec\\x70\\x34\\x2f\\x2a\\x36\\xf9\\x17\\xb6\\xe4\\xe6\\xb6\\x2c\\xf4\\x8f\\x74\\xce\\xc0\\x5d\\x33\\xba\\x52\\x5d\\x66\\x9d\\xce\\xec\\x4a\\x35\\xa5\\x16\\x48\\x3f\\x0a\\x52\\x2f\\x77\\x4b\\xaf\\x12\\x2d\\xae\\x54\\x4b\\x0a\\x2b\\x4b\\xb1\\x8c\\x79\\x43\\xe7\\xd0\\x8d\\x70\\x13\\xd7\\xca\\x3d\\x0a\\x02\\x64\\x04\\x52\\x39\\x39\\x17\\x4c\\x64\\x9a\\xf1\\x78\\x0d\\x9d\\x49\\xf1\\x46\\xe4\\x41\\x6e\\xdc\\xf5\\xc3\\x31\\xf1\\x4f\\x48\\x7f\\x0c\\xa7\\x88\\xab\\xd1\\xee\\x78\\xb4\\x9b\\xcd\\xc5\\xeb\\xe1\\x26\\xae\\x89\\xe2\\xb1\\x04\\x8c\\x3c\\xc2\\x12\\x22\\x8c\\x28\\x26\\x8c\\x14\\x54\\x74\\x6a\\x08\\xf1\\x9c\\xc4\\xa6\\x90\\x16\\x19\\xe3\\x39\\x9c\\x83\\x0c\\xe2\\x47\\xc7\\x7e\\xf8\\x81\\x7b\\x54\\xdc\\x1c\\x2f\\x6e\\x46\\xfb\\xd1\\x2d\\x12\\x3e\\x3d\\xfc\\x89\\x1b\\x22\\x6f\\x4a\\xc2\\xe7\\x49\\x0c\\xc8\\x69\\x37\\x5b\\x91\\x0e\\x1d\\xdc\\x8e\\x82\\xdb\\xff\\x54\\xc3\\x3d\\x5a\\x23\\xf1\\x8c\\x09\\xd8\\x49\\x52\\xf8\\x57\\x21\\x1a\\x62\\xa0\\x23\\x10\\x3d\\x01\\x01\\x51\\x23\\xa4\\x18\\xfe\\xb4\\x3c\\x0a\\x79\\xdf\\x03\\xc6\\xd4\\xbf\\xa6\\x14\\x53\\x97\\x67\\x02\\x98\\x4c\\x0d\\x2b\\x25\\x04\\xf7\\x00\\x26\\xb8\\xa5\\x27\\x10\\xc5\\x42\\x8a\\x52\\x06\\xe0\\xd6\\x1a\\xb5\\x46\\x8f\\xc1\\x8a\\xdc\\xc8\\xa0\\x51\\x71\\xbb\\xef\\xb8\\xe3\\x29\\xb1\\x98\\xa0\\x57\\x9f\\x11\\xeb\\x51\\x54\\x1c\\xb7\\x7c\\xd7\\xb3\\xcf\\xce\\xc7\\x5b\\x46\\x8e\\xa3\\x2d\\xf4\\xdc\\x00\\x15\\xe3\\x7d\\xdc\\x5b\\xfc\\xf3\\xa0\\x83\\x65\\x2c\\x29\\x08\\xcd\\x8d\\x98\\x40\\xc3\\xa2\\xcb\\xb9\\x11\\xd9\\x43\\x0f\\x2b\\x4e\\x19\\xcd\\x8d\\x58\\xda\\xc4\\x52\\xb8\\xb0\\x07\\x49\\x4c\\xd5\\x85\\xb6\\x4f\\x56\\xc4\\xe2\\x5d\\x96\\x86\\x52\\x23\\xea\\x40\\x17\\x6f\\xd6\\x1a\\x05\\xf5\\x15\\xa9\\x11\\x95\\xc0\\x3b\\xe8\\x1d\\xbd\\x71\\x65\\x43\\xe9\\xec\\x1a\\xd3\\x99\\xb8\\x2c\\x57\\x46\\x61\\x4d\\xdc\\x19\\xfe\\xf1\\x4d\\x15\\xf5\\xc6\\xa6\\xb5\\xed\\x22\\x8f\\x7e\\xe9\\xa9\\x77\\x24\\x38\\x73\\x46\\xde\\xe5\\xf4\\x4c\\x6f\\x5a\\x0a\\x40\\xae\\xe7\\xcf\\x80\\x1b\\x9a\\x02\\xf5\\xa1\\xc8\\x1a\\xe3\\x90\\x6a\\x3c\\x12\\x78\\x95\\x30\\x77\\x02\\xe2\\x09\\x0b\\xc3\\x1a\\x0a\\xab\\x51\\x43\\x9b\\x45\\xbd\\xb1\\xca\\x70\\xb3\\xbb\\xc0\\xe5\\xcc\\xcf\\xb3\\x59\\x8d\\x59\\x92\\x26\\x90\\xa8\\xd1\\x24\\xc4\\xc6\\xa8\\xe9\\x45\\x86\\x04\\x41\\x65\\xd0\\x1a\\x3c\\xee\\x72\\xce\\x63\\x35\\x7a\\xdc\\xf4\\xef\\x98\\x1d\\x5f\\x67\\xd0\\x1a\\x74\\x06\\xce\\x2f\\xbe\\x8e\\x33\\x0c\\xf8\\xd4\\xa5\\x4f\\xdb\\x92\\x0d\\xf1\\x2a\\xfc\\xd0\\x03\\x64\\xe8\\x1e\\xbe\\x66\\xe3\\xb1\\xf9\\x8b\\x0e\\xaf\\x28\\x3e\\x97\\xe5\\x6f\\xb2\\xe5\\x34\\x78\\x33\\x05\\x34\\x49\\x7c\\x89\\xa0\\x32\\xf4\\x1b\\x77\\xd5\\x1a\\xc7\\xcb\\x2f\\x0b\\xf9\\x15\\xf5\\x99\\xfe\\xc1\\x2d\\x83\\xc7\\x16\\x1f\\x5d\\x59\\xe2\\x5f\\x72\\xfb\\xf4\\xa2\\xc9\\xae\\x44\\x7d\\xd9\\x8c\\x92\\x63\\x83\\x5b\\x00\\xd3\\x38\\x5b\\xcf\\xf0\\x27\\xe8\\xb9\\xdd\\x07\\x54\\x53\\x18\\x1e\\x47\\xaf\\xc2\\xa6\\x0e\\x8f\\x43\\x3c\\x42\\xa1\\x03\\xff\\x02\\x50\\x0b\\xe3\\x04\\xf5\\xb8\\x55\\x10\\x0d\\x04\\x45\\x93\\xf9\\x30\\x6e\\x1c\\xb5\\xd4\\x48\\x43\\x00\\xa0\\xea\\x89\\x42\\x2a\\x15\\xdd\\x28\\xf0\\x4c\\x9e\\xb1\\x25\\x59\\x7b\\xfc\\x3f\\xfd\\xb2\\x5e\\x9a\\x87\\xde\\xff\\xf0\\x23\\x9e\\x2f\\x63\\x5f\\x02\\xfd\\xb0\\xa7\\x27\\x10\\xe7\\x2d\\xcc\\xcd\\xb1\\x65\\x6b\\x12\\x0c\\x1a\\x93\\xd6\\x6c\\x8e\\xa5\\xdc\\x70\\x6c\\x32\\x3c\\x63\\x0c\\x47\\x3d\\xc5\\x68\\xfc\\x12\\xaa\\xbb\\xa0\\x51\\x0b\\x35\\x39\\xfc\\xe4\\xc4\\x94\\xac\\xf8\\x84\\x9c\\x71\\xa9\\x89\\x5d\\x76\\x77\\x4f\\x95\\xb9\\x33\\xca\\xd3\\xb3\\xa9\\xd9\\xf7\\x7a\\xb0\\x65\\x73\\xb7\\x47\\xdd\\xf9\\xfa\\x93\\x97\\x8f\\xfa\\x42\\xd1\\xcc\\x7d\\xdc\\x83\\x23\\x37\\x38\\x4a\\xb2\\x62\\xa2\\xc9\\x4d\\x09\\x3a\\x63\\xcb\\xe6\\x69\\x78\\x63\\xc7\\x8d\\xf3\\xbc\\x23\\x6f\\xf2\\x27\\x7c\\xf3\\xf7\\x76\\x20\\x22\\x5e\\x16\\xef\\x71\\x4d\\x5e\\xec\\xf5\\xf5\\xb5\\xbb\\x00\\xc1\\x36\\x1a\\x5f\\xfc\\x0c\\xe4\\x41\\x5b\\xa0\\x45\\x8f\\xd4\\x2a\\x03\\x12\\xd4\\xd2\\xea\\x8c\\x42\\x18\\x91\\xc6\\x28\\x24\\x44\\x23\\x49\\x5a\\x9c\\x3b\\x6e\\x34\\x70\\x90\\x5a\\x4d\\xa5\\xc4\\x1a\\x25\\xed\\x59\\x2d\\x6e\\xce\\x73\\xe4\\xda\\x73\\x6c\\x72\\xa0\\x16\\x13\\xeb\\x29\\x3d\\x1d\\x0c\\x75\\x53\\x9a\\x50\\x1e\\x9a\\xc0\\x20\\x4c\\x4b\\x90\\xa6\\x9c\\xd6\\xc0\\x5d\\x2f\\xde\\xcd\\x39\\x3b\\xd7\\xd5\\xaf\\x9e\\x93\\xe2\\xdf\\x56\\xb9\\xe1\\xf5\\xdb\\x3a\\xc9\\x13\\x4f\\x3c\\xf1\\xa4\\x6a\\xda\\x6d\\xaf\\x6f\\xa8\\x58\\x57\\x9a\\xe2\\x5c\\xea\\xad\\x1f\\x98\\xe2\\xe2\\x51\\x9f\\x78\\x37\\x5a\\x82\\xe3\\x66\\xdf\\x30\\xcd\\x66\\x78\\x25\\x26\\xb6\\x76\\xef\\x9b\\x7b\\xf6\\x5e\\xb3\\x77\\xf7\\x1b\\x37\\xd6\\x68\\x62\\xce\\x4c\\x8c\\xcf\\x99\\x7a\\xdd\\xf4\\xbd\\xd7\\xd0\\x7b\\x9d\\x81\\xe0\\x39\\x72\\x2f\\xd5\\xd3\\x2a\\x61\\x1a\\xcc\\x80\\x09\\x81\\xe8\\xe9\\xdd\\xed\\x93\\x4a\\x9c\\x13\\x09\\x71\\x46\\xdc\\x55\\xbf\\xda\\x55\\x09\\x89\\xfa\\x63\\xef\\xb6\\x8e\\xbd\\xd7\\xc7\\x5b\\x91\\x0e\\x4f\\x33\\xd6\\xcc\\x0f\\x04\\x16\\xd4\\x9a\\x4c\\xec\\x7f\\xe3\\xc3\\xe3\\x93\\x2d\\xc9\\xc9\\x96\\xe4\\xf1\\xe3\\x53\\x2c\\x29\\xc9\\xe6\\xa4\\xf1\\xef\\xd2\\x92\\x85\\x35\\x26\\x63\\xcd\\x02\\x0a\\x79\\x3c\\x26\\xc5\\x92\\x94\\x6a\\xd1\\x8d\\x1b\\x9f\\xc2\\x20\\xc5\\x3b\\x24\\x8e\\x49\\xcc\\x9e\\xde\\xfa\\x1c\\x67\\xfb\\x8a\\xb2\\x96\\xf2\\x15\\x1d\\xce\\x9c\\xfa\\x39\\x1e\\x9d\\xdd\\x90\\x90\\x92\\x5b\\x94\\xd9\\x92\\x51\\x64\\x4f\\xd1\\x66\\xd9\\xb4\\x23\\x81\\xb2\\xfe\\x76\\xa7\\xb3\\xbd\\xbf\\xac\\xb5\\x7c\\x85\\xf4\\x63\\x45\\x79\\x86\\xdf\\x9e\\x92\\x62\\xf7\\x67\\xb4\\x86\\x7e\\xec\\x62\\x9c\\x17\\x00\\xc3\\xcf\\x83\\xe7\\x48\\x2c\\xff\\x18\\x18\\xc1\\x09\\xea\\xe1\\x5c\\x93\\x06\\xb0\\x93\\x69\\x9f\\x1e\\xc1\\xe8\\x29\\xf0\\xfa\\x34\\x11\\x59\\xc3\\xd9\\xf1\\xc0\\x68\\x7a\\x71\\x6e\\xc6\\xa6\\x93\\x1b\\x8a\\x7b\\x17\\x78\\x67\\x3b\\x5c\\x33\\xae\\x6b\\xaf\\x5a\\xdd\\x9e\\xe7\\x5d\\x72\\xdf\\x02\\x9d\\xb7\\xa7\\xea\\x13\\xe7\\xa4\\xbc\\x44\\xbb\\xde\\xeb\\xd7\\x06\\x36\\x1c\\x5f\\x14\\xad\\xf9\\xaf\\x28\\x35\\xba\\x6f\\xee\\xbd\\xcb\\x8a\\x1c\\x5d\\x9b\\x5b\\x72\\xaa\\xef\\xb9\\xeb\\xc6\\x82\\xea\\x8a\\xf9\\xd5\\x26\\x9c\\x9c\\xd5\\x3e\\x7d\\xb6\\x33\\x37\\x50\\xd9\\x3b\\x97\\xdd\\xb9\\xdd\\x40\\x73\\x9e\\x9f\\x82\\x28\\xc8\\x04\\x07\\xb8\\xa4\\xb1\\x71\\xe6\\xd9\\xb2\\x92\\x63\\x78\\x20\\x4e\\xbb\\x81\\x06\\xe9\\x75\\xc7\\x6b\\xdc\\xba\\x31\\x23\\xe0\\x63\\xb7\\x89\\xe4\\xc6\\xc5\\x1b\\x3c\\x06\\x7c\\xfe\\xc5\\x7f\\xbc\\xf8\\xe2\\x3f\\x5e\\x6c\\x4f\\xcc\\x2e\\x31\\x99\\x4b\\xb2\\x13\\x13\\xb3\\x8b\\xcd\\xe6\\x62\\x5b\\xe2\\xd2\\x04\\xbd\\x3e\\x3e\\x41\\x9f\\x99\\xf0\\x96\\xf8\\x0e\\xca\\xe7\\x56\\x5e\\xbe\\x95\\x3f\\x71\\xf9\\x4e\\x6e\\xd9\\xc3\\xd9\\x35\\xae\\xd4\\x54\\x57\\x4d\\xf6\\x6f\\xb3\\xab\\xa5\\x1f\\xd5\\xd9\\xd1\\x0e\\xa7\\xd3\\x71\\x3a\\xd7\\xe5\\xca\\x1d\\xf9\\xd3\\x3c\\x89\\x66\\x2b\\xb8\\x3b\\x48\\x27\\xcd\\x8d\\x9f\\x00\\xea\\xe1\\xf8\\x89\\x02\\xc2\\x4e\\x3b\\xe2\\xe4\\x76\\xc5\\xbb\\x35\\x46\\x16\\x5f\\xc6\\x63\\xe0\\xfe\\xbe\\xbd\\x6c\\xdb\\x8a\\x1b\\xae\\xdd\\x7d\\xdd\\x0a\\x31\\x76\\xef\\xda\\x7d\\x68\\x2f\\x1f\\x2d\\xee\\x95\\x84\\x3f\\x9c\\x26\\x5e\\x83\\x76\\x8c\\xfc\\x15\\xbd\\x28\\xd6\\xa0\\x9f\\xf7\\xd2\\xb1\\xb8\\x2b\\x78\\x9e\\xdc\\x4a\\x5a\\x21\\x13\\xb2\\x41\\x3d\\x6c\\xd2\\xc7\\x62\\xec\\xb4\\x9b\\xe9\\xf2\\x20\\xca\\xd5\\x5d\\xad\\x81\\xfa\\xfb\\x7a\\x7d\\x48\\xda\\x20\\x0c\\x1a\\x8b\\x85\\x24\\x4c\\x7d\\x7e\\x7e\\xc3\\xee\\xb5\\x73\\x6a\\xcc\\xb6\\x86\\xf9\\xeb\\x76\\x56\\x2d\\x7e\\x66\\x77\\xeb\\x08\\xf8\\xf6\\xb5\\xf6\\xfe\\xac\\x47\\xbc\\xa5\\x69\\xd0\\x8f\\xd3\\x3c\\x7b\\x7a\\x3d\\x65\\xd9\\x8d\\x8b\\xb6\\xed\\x6f\\x69\\xd9\\xbf\\x6d\\x51\\x63\\x76\\xc7\\x2d\\x67\\xd7\\xe5\\x8b\\xcf\\xb9\\x4b\\x4a\\x2a\\xb8\\x9c\\x4a\\xbf\\x78\\x0e\\x65\\x14\\x96\\x05\\x83\\x30\\x23\\xf8\\x1d\\x79\\x8f\\x7f\\x02\\xf2\\xd1\\xcb\\x41\\x3d\\xfe\\xc4\\x7f\\x1f\\x58\\xd0\\xfa\\x38\\x40\\x13\\xd1\\xeb\\xe8\\x6e\\x00\\xff\\x7d\\x4c\\x1f\\xc2\\x9f\\x48\\xfa\\x50\\x30\\x08\\x96\\xe0\\x77\\xe4\\x5d\\xfe\\x79\\xc8\\x47\\xaf\\x04\\xb5\\xf8\\x33\\x06\\xaf\\xff\\x9e\\xc2\\xdf\\x45\\xe1\\xe3\\x28\\xfc\\x67\\x27\\xdc\\x76\\x7a\\x80\\xf5\\x3d\\x3b\\xeb\\x4a\\x0f\\x7e\\x47\\x9e\\xe5\\x87\\x21\\x1f\\xbd\\x1a\\x54\\xe3\\x2f\\xd8\\x77\\x31\\xac\\x9e\\x2d\\x61\\xf5\\x7c\\x21\\xd7\\x53\\x1b\\xfc\\x8e\\x9c\\xe6\\x7f\\x02\\xf9\\xe8\\xb5\\xa0\\x1f\\x9f\\x63\\xf0\\x9f\\x32\\xf8\\xdd\\x61\\xf0\\xe7\\xa8\\x9e\\x86\\xa9\\x1d\\x66\\x2a\\xff\\x0d\\x64\\x43\\x39\\xa8\\x87\\xdd\\xb6\\xf4\\x38\\x69\\x8c\\x0a\\x12\\x75\\xf2\\xcd\\x67\\x9a\\x4a\\x36\\xf1\\xca\\x8c\\xd9\\x57\\xc4\\xac\\xcf\\xe3\\x70\\x73\\xe7\\xdd\\x25\\x13\\x02\\xbd\\x1b\\xaa\\xac\\xd5\\xe5\\x15\\x59\\x69\\x69\\xe5\\x8d\\x33\\x8a\\xf7\\xbe\\x77\\x73\\x7d\\xd5\\x8e\\x9f\\xad\\x5f\\xff\\xdc\\x8e\\xaa\\xf2\\x8d\\x4f\\xed\\xab\\x9d\\x57\\x9e\\x9e\\x5e\\x3e\\xb7\\xa6\\x76\\x5e\\x59\\xba\\xca\\x58\\x36\\x9d\\x90\\xca\\xf2\\xb9\\x07\\x57\\x96\\xaa\\x26\\xc4\\x4f\\x18\\x1e\\x9f\\x1c\\x3f\\x7e\\xe0\\xb7\\xe2\\x9b\\xa7\\x8a\\xf7\\x5d\\xfc\\xc9\\xc2\\xb6\\xfd\\xa7\\xd7\\x68\\x97\\xfe\\x74\\x77\\xd3\\x29\\x77\\xd7\\xea\\x72\\x1a\\xb0\\xbe\\xa2\\xff\\xf6\\xce\\xee\\xa4\\x52\\x2f\\xf3\\x59\\x38\\x18\\x4c\\x27\\x36\\x7a\\x6f\\x4f\\x38\\x29\\x48\\xf2\\x12\\x1f\\x0a\\xfb\\x6c\\xbb\\x20\\x4e\\xbd\\xc0\\xdd\\xf4\\x17\\xfe\\x37\\x3f\\xda\\x85\\xdb\\xa9\\x8d\\x54\\xfc\\x9a\\x3c\\x4a\\xe7\\xa1\\x70\\x52\\xcd\\x21\\xa7\\x1d\\x21\\x69\\x8b\\x46\\xc8\\x63\\xd0\\x1a\\x10\\xb7\\x71\\xe4\\x1c\\x57\\x77\\xe9\\x1a\\xdc\\x3e\\xf2\\x14\\xa9\\xbe\\xfc\\x2d\\xd6\\xe2\\xea\\x91\\xd5\\x2f\\xdf\\x8d\\x5f\\xc7\\x67\\xef\\x79\\x79\\x64\\x35\\x93\\x17\\x0e\\xe1\\x95\\xdc\\x17\\x9c\\x13\\x38\\xaa\\x7b\\x5c\\x21\\x31\\x6a\\x62\\xa9\\xc4\\x68\\xf0\\x18\\xb8\\x2f\\x2e\\x3f\\xcd\\x4d\\xc6\\x2b\\x5f\\x96\\xde\\x67\\x03\\x90\\x6b\\xf8\\x13\\x10\\x0d\\xc2\\x49\\x9e\\xd6\\xab\\xf3\\x21\\x37\\x32\\x72\\x46\\x8f\\x01\\x1b\\x34\\x89\\x68\\xde\\xef\\xc4\\xb8\\x53\\x7f\\x78\\x0b\\x2d\\x44\\xf5\\x9d\\xd3\\xc9\\xbc\\x1f\\xdb\\x70\\xed\\x69\\xe0\\xa0\\x08\\xbe\\x23\\x4f\\x73\\xef\\x83\\x0d\\x2a\\x60\\x2a\\x44\\x3f\\x3b\\xb9\\xc6\\x9f\\x97\\x4c\\xb8\\x51\\x76\\x6b\\x8d\\xb0\\x15\\x65\\xe0\\x90\\x1f\\x49\\x48\\x92\\xf7\\xc9\\x51\\x42\\xb4\\x86\\xd0\\xe9\\xb9\\x7c\\x81\\xdd\\x43\\x9e\\xb6\\x34\\xae\\xac\\x2f\\x98\\x52\\xeb\\xd3\\x6a\\x7d\\xb5\\x9d\\xae\\xfa\\xfe\\x46\\x8b\\xa5\\xa1\\xbf\\xde\\xd5\\x39\\x89\\xbd\\x29\\x90\\xde\\x5c\\x76\\x4c\\xd0\\x17\\x5a\\xac\\x95\\xce\\x74\\x8e\\x4b\\x77\\x56\\x59\\x2d\\x6e\\xfd\\x04\\xce\\x3e\\x41\\xef\\x36\\x67\\x57\\x3a\\x33\\x38\\x2e\\xdd\\x55\\x49\\xdf\\xe1\\xf6\\xa6\\x1d\\xb3\\x0a\\x4d\\xa5\\xcd\\xd9\\xd9\\xcd\\xa5\\xa6\\xc2\\x59\\x3b\\x9a\\xac\\x8d\\x3b\\x67\\x79\\x4c\\x25\\x4d\\x56\\x6b\\x53\\x89\\xc9\\x33\\x6b\\x67\\xa3\\x35\\xa7\\xd6\\x95\\xea\\xae\\xae\\x9a\\x98\\x18\\x53\\x51\\x59\\x90\\xe6\\xaa\\xb5\\xd9\\x6a\\x5d\\x69\\x05\\x95\\x15\\x31\\x89\\x13\\xab\\xaa\\xdd\\xa9\\xae\\xda\\x1c\\x4a\\xdf\\x8b\\x62\\x13\\xf7\\x17\\xc1\\x01\\x59\\x20\\x9c\\x4c\\x24\\xd2\\x78\\x5e\\xe1\\xa1\\x10\\x6e\\x16\\x13\\xb4\\x1a\\xfc\\x4b\\x1a\\x98\\xd4\\xaf\\x1f\\x1f\\x95\\x9a\\x9e\\x16\\x55\\x5c\\xee\\x9e\\xbd\\xa7\\xcb\\xd2\\x64\\x49\\x8a\\xcf\\x4d\\x6f\\xef\\x2c\\x9b\\xbe\\x6f\\x4e\\x81\\xec\\xac\\x30\\xb7\\x8b\\x7c\\x3b\\x7d\\x5f\\xaf\\x6b\\x7c\\xd4\\x4f\\x79\\x7e\\xf6\\xd4\\x4b\\xe3\\x28\\x0f\\xb9\\x19\\x44\\x52\\x47\\x78\\x30\\x40\\x35\\xa8\\x87\\xab\\x0b\\x0c\\xb1\\xd8\\x69\\x8f\\xf7\\x7a\\xdd\\x5e\\x9a\\x00\\x36\\x4c\\xae\\xb0\\xe6\\x71\\xaa\\x2c\\x41\\xa5\\xfa\\x17\\x65\\xf7\\x38\\x37\\x57\\x65\\x97\\x79\\x3d\\xfa\\x0c\\x97\\xdb\\x6f\\xae\\xda\\xe0\\x8c\\x76\\xae\\xad\\x32\\xfb\\xdd\\xae\\x0c\\xbd\\xc7\\x57\\x96\\x5d\\xb5\\xd5\\x99\\xe0\\x5c\\xaf\\x40\\x14\\x9b\\xab\\x36\\x3b\\xa3\\x9d\\x1b\\x42\\x10\\xde\\xb2\\xec\\xaa\\xcd\\x4e\\x6e\\x65\\x6d\\x0b\\x1a\\x97\\x90\\x1a\\x3b\\x31\\x39\\x3e\\xba\\xa5\\xf6\\x95\\xda\\x96\\xe8\\xf8\\xe4\\x89\\xb1\\xa9\\x09\\xe3\\x50\\x4b\\xed\\xb9\\x7f\\x51\\x26\\xcf\\x4f\\x38\\x40\\x7c\\xa4\\x16\\xe2\\x41\\x38\\x39\\x1e\\x4b\\x73\\xcd\\xa0\\xb2\\xfa\\x8c\\x1e\\x83\\xcf\\xe0\\x31\\xf8\\x74\\x2a\\xb7\\xd6\\xa0\\x32\\x10\\xdf\\xc8\\x67\\x9d\\x8b\\xbc\\x22\\x5a\\x30\\x20\\xda\\x70\\x69\\xf3\\xa2\\xbc\\x0f\\xc4\\xd3\\x6b\\xd0\\x09\\x54\\x75\\xac\\x64\\xd9\\x6b\\x1f\\xbf\\x76\\x47\\xf1\\xf4\\xd7\\x3e\\x66\\xfa\\xee\\xd3\\x10\\x4f\\xe2\\xc9\\xcb\\xb0\\x18\\x32\\x20\\x06\\x3e\\x0e\\x80\\xff\\x3e\\xa4\\x42\\x37\\x82\\x6e\\xe4\\x41\\xd0\\x3c\\x0d\\xe8\\xc4\\xc7\\x32\\xa3\\x1a\\x79\\x90\\x72\\x12\\xe9\\x9b\\x93\\xa0\\x21\\x4e\\xf2\\x36\\x2c\\x06\\x3d\\x44\\xc3\\x97\\x61\\xdf\\x1c\\x61\\xdf\\x7c\\x19\\xfa\\xe6\\x08\\xfb\\x06\\x30\\xec\\x06\\x20\\xcd\\xfc\\x09\\xe0\\x61\\x02\\xa8\\x87\\xc7\\xab\\x39\\x69\\x5f\\x45\\x6e\\x14\\x8a\\xb9\\x16\\xaf\\xf3\\x61\\xd5\\xcb\\xe8\\x7a\\x71\\xc7\\xcb\\xe2\\x56\\xfc\\x9b\\x3f\\x6a\\x75\\xff\\xfd\\xa7\\x04\\x2d\\x7f\\x62\\xc4\\x3a\\x62\\xc3\\xbf\\x43\\xbf\\xa9\\xa8\\x10\\xed\\x62\\x4e\\x79\\x99\\xa4\\x8f\\x24\\x04\\xbb\\x71\\x3a\\xfc\\x08\\xe3\\x40\\x38\\x19\\xcd\\x4b\\x3a\\x54\\x98\\xe1\\x24\\x3d\\xde\\xec\\xb7\\xae\\xb6\\x98\\x5f\\x1c\\xb6\\xcf\\x9e\\x35\\xd5\\xd0\\x5c\\x71\\x5d\\x73\\x3d\\x24\\x42\\x0f\\x44\\x93\\xeb\\x89\\x00\\x13\\x20\\x0d\\x72\\xa0\\x18\\x02\\x30\\x09\\x9a\\xa1\\x03\\x66\\xc0\\x6c\\x98\\x0f\\x8b\\x61\\x19\\xac\\x84\\x01\\xd8\\x02\\x3b\\xe0\\x3a\\xb8\\x01\\x6e\\x82\\xfd\\x70\\x3b\\xb8\\x02\\x79\\xb7\\xdd\\x72\\xf3\\xbe\\xbd\\x37\\xee\\xbe\\xfe\\xda\\x9d\\xdb\\xb7\\x6e\\x5a\\xbb\\x7a\\xd5\\x8a\\xe5\\x4b\\xfa\\x16\\x2e\\x98\\x3b\\x67\\xd6\\xcc\\xee\\x29\\x6d\\xad\\xf5\\x75\\x35\\x95\\xa5\\x25\\xfe\\x42\\x4b\\x66\\x72\\x4c\\x14\\x4e\\x74\\xda\\x11\\xdb\\x68\\x59\\x4e\\x40\\x8f\\x8e\\x9e\\xe0\\x52\\x6f\\x25\\x8b\\xd1\\xa8\\xb1\\x26\\x08\\xc6\\x2c\\x8b\\x87\\x5e\\x15\\x4f\\xd4\\xf2\\xec\\xc9\\x28\\xef\\xd0\\x46\\xe4\\x71\\x6b\\xdd\\x92\\x42\\xe1\\x71\\x6b\\xa5\\xdf\\x46\\xad\\x59\\xfa\\xd7\\x83\\x0a\\x12\\xb5\\x09\\x82\\xd1\\xe8\\xe1\\x24\\x00\\x0f\\x05\\xd1\\xc6\\x87\\xff\\x96\\xb0\\x25\\x18\\x8d\\xbc\\xd1\\xe3\\xd6\\xc8\\x7f\\x51\\xf8\\xef\\xcf\\x27\\xf9\\xfd\\x93\\xea\\xfc\\xfe\\xda\\x43\\x6e\\x7f\\x5a\\x9a\\x4e\\x57\\xee\\x5b\\xdc\\x9d\\x6d\\x34\\xd9\\x6c\\x46\\xa3\\x0d\\xc7\\x64\\xe8\\x52\\x32\\xdd\\xa5\\x4e\\x47\\x71\\xc1\\xe5\\x5b\\xcb\\x97\\xe3\\xdf\\xad\\x28\\xbb\\xf4\\x9b\\x47\\x97\\x73\\xd5\\x8f\\x96\\x89\\xb5\\xe9\\xa9\\xa9\\xe9\\x93\\x4c\\xf7\\x56\\xdf\\x3b\\x72\\xe2\\x9e\\x6a\\xf6\\xdf\\x62\\xb7\\x41\\x5f\\xe9\\x16\\xdb\\xcb\\xe9\\x1f\\xee\\xf3\\x32\\xfa\\x07\\x9b\\xbd\\x55\\x55\\xde\\x72\\xe9\\x9f\\x0d\\x76\\xbb\\xce\\xaa\\x8e\\xca\\xd2\\xda\\xb3\\xc5\\x77\\x36\\x58\\xec\\x76\\x4b\\xb9\\xf4\\xcf\\xd4\\xa4\\x8c\\xa4\\x94\\x3c\\x47\\x81\\xe3\\xed\\x91\\xa5\\x4f\\xae\\xac\\xa8\\x58\\xf9\\x24\\x37\\x7b\\x28\\x30\\x6b\\x56\\x60\\x68\\x96\\xe8\\x4a\\x49\\xd4\\x26\\xcd\\x42\\x6f\\x05\\xe8\\x9f\\xcb\\x35\\x15\\xf4\\x0f\\x5e\\x14\\xab\\xcb\\xed\\xd8\\x2b\\x1e\\xdf\\x83\\x12\\xf7\\x88\\xc7\\xe5\\x1f\\x00\\x3c\\x4c\\x1c\\xf9\\x0d\\x79\\x4a\\x3d\\x00\\x1c\\xd8\\xa8\\x3c\\xe4\\x81\\x89\\x81\\xf1\\x85\\x05\\xce\\xbc\\xdc\\x9c\\x38\\x82\\x81\\x77\\xda\\xa3\\x38\\xbe\\xb0\\x1c\\xfb\\x98\\x87\\x3a\\x65\\x8c\\x6e\\x1a\\x3c\\x47\\xcb\\xb2\\xb1\\x68\\x75\\x46\\xad\\x9b\\x73\\x6b\\x8d\\xd2\\x5f\\x3c\\x0f\\xb7\\x8c\\x9c\\x1c\\x79\\x02\\x3f\\x2f\\x8c\\xd7\\x8c\\x4b\\x74\\x98\\x74\\xe6\\xda\\x45\\x81\\xa2\\xb9\\x0d\\x76\\xf4\\x06\\xb6\\x25\\x99\\xf5\\x9a\\xa4\\xd4\\xe8\\x74\\xa3\\x56\\xfd\\xcb\\x5f\\xfe\\x72\\x39\\x21\\x98\\x10\\xa1\\xe3\\xb2\\xeb\\xb2\\x8b\\x7b\\xeb\\x52\\xb2\\x35\\x33\\x3d\\x36\\xd3\\xe7\\x0f\\xd8\\x02\\x8b\\x1b\\xac\\x19\\x95\\x0b\\x27\\xf9\\x9c\\x81\\xc2\\x14\\x77\\xbe\\x75\\x82\\x29\\xdb\\x52\\xe0\\x9c\\xf1\\xe8\\x48\\x17\\x89\\x3e\\x48\\x00\\xc3\\x70\\xf0\\x02\\x49\\x23\\x43\\xf4\\xee\\xa7\\x7a\\xd8\\x9c\\x32\\x91\\xe0\\x30\\x3e\\xef\\x91\\x83\\x31\\x5a\\xc7\\x48\\xd5\\x24\\xad\\x68\\xc5\\x91\\xe5\\xcb\\x8e\\xae\\x28\\x42\\xc8\\xb7\\xe2\\xc8\\xb2\\xe5\\xd2\\xaf\\x0b\\xda\\xbc\\x26\\x9f\\xb7\\xc9\\xa1\\x95\\xfe\\xf7\\x35\\x39\\x12\\xd0\\x9f\\x57\\x3c\\x7b\\x7d\\x63\\xe3\\xf5\\xcf\\xae\\x78\\x7d\\xc5\\xb3\\xbb\\x1a\\x1b\\xaf\\x7f\\x6e\\x85\\xae\\x78\\x71\\xb3\\xc3\\xd1\\xb2\\xd8\\xff\\x4d\\x49\\x5f\\xab\\xc3\\xd1\\xda\\x57\\x42\\x75\\x79\\x17\\x00\\x77\\x8c\\xd3\\x43\\x06\\xe4\\x06\\x6c\\xec\\x42\\x35\\x60\\x44\\x10\\xbd\\x49\\x0d\\x08\\x73\\x68\\x7e\\xe8\\x1e\\x75\\x19\\x34\\x27\\x99\\x12\\xac\\xb1\\xbc\\x3a\\xd9\\x6e\\x30\\x78\\x10\\x9b\\xc7\\xa3\\xc1\\xcd\\x19\\x35\\x55\\x06\\xee\\xd8\\xc8\\x10\\xca\\x2c\\x2f\\xf0\\x15\\xea\\xf3\\x33\\x27\\xfe\\x2c\\xa7\\x75\\x75\\xdd\\xcd\\x43\\xa9\\x85\\xcd\\xae\\x9b\\xd1\\xda\\xad\\x48\\xed\\x9b\\x9a\\x96\\xe3\\x8d\\x37\\xd8\\x93\\x7d\\x73\\x1b\\xec\\xd7\\xac\\xc9\\xa9\\xab\\xad\\xb7\\x0d\\x50\\xdb\\x68\\x02\\xf9\\x3b\\x77\\x49\\xf8\\x11\\x04\\xb0\\x80\\x7a\\xd8\\x92\\xc8\\x53\\x9e\\x60\\xb4\\xaa\\x8c\\xc8\\xed\\x93\\x49\\x43\\xeb\\x0b\\x29\\xd6\\x94\\x22\\xdc\\xa5\\x53\\xcf\\x3c\\xf3\\x12\\xd2\\x1f\\x3f\\xa1\\xcb\\xf6\\x19\\x4c\\x85\\x0e\\x47\\x7a\\x4c\\x72\\xc2\\xb8\\x9e\\xc4\\x6c\\x9f\\x21\\xc3\\xed\\x72\\xa5\\x4d\\x48\\x49\\x18\\x4f\\xfe\\x7e\\xf4\\x28\\x42\\xdf\\x18\\x02\\x05\\x19\\xda\\x24\\x6d\\x6c\\xb2\\x41\\x93\\x64\\xa8\\x74\\x67\\x4a\\xbf\\x53\\x0d\\x71\\x52\\x8f\\xc9\\xdf\\xc9\\xcb\\xc2\\x19\\x10\\x20\\x09\\xd4\\xc3\\x13\\x55\\xa3\\x75\\x9b\\xdd\\xbc\\xbc\\x64\\x7d\\x72\\x17\\xb5\\xdc\\x39\\x5a\\xa5\\xf6\\xe7\\x88\\x43\\xa5\\xa5\\x9d\\x01\\x7e\\xe7\\x35\\x89\\xc6\\x5c\\x9d\\x54\\xc9\\x8f\\x6b\\xaf\\xc3\\x29\\xe9\\xa6\\xf4\\xe9\\x53\\xea\\x32\\x1d\\x99\\x1a\\xae\\x1c\\x70\\xf0\\x32\\xf9\\x9c\\x8c\\x13\\xee\\x06\\x01\\xa2\\x41\\x3d\\x1c\\x15\\x89\\xdb\\xc8\\xb9\\xc9\\xb8\\xf7\\x0f\\x1f\\x7a\\x1f\\x19\\x1f\\x10\\x6f\\x18\\xfa\\xed\\x87\\xe4\\xf3\\xfd\\xfb\\x2f\\xcd\\x40\\xd1\\xcc\\x5e\\x1c\\x45\\xfe\\xce\\x27\\x0b\\xb7\\x2a\\xdf\\x62\\xc6\\x27\\x79\\x46\\x15\\xce\\x88\\x1d\\x0f\\x20\\xe3\\xfb\\x87\\x0f\\xfd\\x86\\x73\\x7f\\xf8\\xbb\\x03\\xfc\\xc7\\x3f\\xee\\xdf\\x8f\\x1e\\x15\\xbf\\xa5\\xdf\\xe6\\x91\\xbb\\xb8\\x53\\xc2\\x69\\xd0\\x42\\x32\\xa8\\x87\\x93\\x12\\x09\\x84\\xcd\\xb1\\x51\\x6d\\xcc\\x6a\\xb4\\xba\\xb9\\x53\\x79\\x5d\\x9b\\x9a\\x9b\\x37\\x4f\\xcd\\x7b\\x26\\xd6\\x54\\x64\\xcb\\x2e\\x32\\xc6\\x66\\xbf\\xf0\\xde\\x8f\\xfc\\x89\\xf2\\xbe\\x26\\x9b\\xad\\xa9\\xaf\\x3c\\xd5\\x69\\x4a\\x4c\\x34\\x39\\x53\\x2b\\xde\\x63\\x76\\xb0\\xbf\\x92\\xe5\\xf8\\x1f\\x42\\xee\\x28\\xcf\\x55\\xac\\xfb\\x2a\\x23\\xfa\\x6b\\xb2\\xcd\\x93\\x76\\xad\\xde\\x80\\xde\\x23\\x17\\x5c\\xb3\\x3b\\xab\\xb5\\x53\\x7c\\xeb\\xea\\x37\\x51\\xbe\\x6f\\xa2\\xb9\\x6f\\x06\\x41\\x05\\xd1\\x60\\x0e\\x64\\x45\\x23\\x42\\xbd\\x4e\\x09\\x5e\\x23\\x5f\\x13\\x9a\\xc7\\x21\\xc5\\x40\\x4d\\xa7\\x9a\\xd9\\xa0\\x52\\xe2\\x7e\\x4e\\x13\\xd3\\x67\\x7d\\x8d\\xde\\xfb\\x08\\xbd\\xfb\\xb5\\x48\\x50\\xf7\\xe3\\xdf\\x7f\\x4f\\x06\\x2f\\x0d\\xa0\\x27\\xd0\\x2b\\x00\\x1c\\x3c\\x0b\\x40\\xa6\\x93\\x41\\x48\\x00\\x03\\xe4\\x41\\x69\\xc0\\x2f\\xe7\\x32\\x0a\\x05\\xa1\\x53\\x72\\x1a\\x85\\x0e\\xbc\\xcb\\x50\\xb3\\x56\\x0b\\x90\\x97\\x6b\\xca\\xd2\\x1a\\xb4\\xfa\\xa4\\x44\\x48\\x80\\x78\\x83\\x5a\\x4d\\x33\\x19\\x65\\x70\\xb2\\x4b\\x83\\x44\\x30\\x4e\\x89\\xd8\\x6b\\xb5\\x8e\\xda\\x16\\x9e\\x45\\xcf\\xcf\\x3c\\xbe\\xa3\\x71\\xd1\\xd4\\xc2\\x36\\x5f\\x7a\\xed\\xa6\\x07\\x7b\\xbf\\xfe\\xda\\xde\\xec\\x37\\xa4\\x17\\x36\\x38\\x46\\xfe\\xdb\\xd6\\x58\\x64\\xc8\\x2a\\x6e\\xce\\x79\\x9f\\x0c\\xa2\\xac\\x96\\x4d\\xdd\\x3d\\x5b\\xf5\\xe3\\x0b\\x6a\\xbb\\x9c\\xd3\\x77\\xb4\\x99\\xd1\\x65\\xf1\\x95\\x04\\xb3\\xdf\\x92\\x53\\x66\\x4b\\x40\\x8f\\xc4\\x66\\xf9\\xac\\xb9\\x7e\\x63\\x8c\\xb4\\x9f\\xcf\\x0e\\x5e\\x20\\xf5\\x64\\x08\\x6c\\xd4\\xce\\x8e\\x25\\x41\\x86\\x5f\\x25\\x20\\x9e\\x70\\x3c\\xe9\\x57\\x3c\\xc0\\xe5\\x70\\x6c\\xb5\\xf4\\xb2\\x98\\x0d\\x6c\\xb6\\xac\\x04\\x9b\\x49\\xa5\\x4e\\x0e\\xa5\\xa6\\x55\\x18\\x88\\x51\\xb6\\x13\\x84\\x02\\x19\\x91\\xba\\xa8\\xce\\xeb\\x1f\\x9f\\xb3\\xf6\\xbf\\xae\\xaf\\x43\\xa8\\x71\\xf7\\xf3\\xab\\x17\\x3f\\x7e\\xcd\\xe4\\xe8\\x0b\\xd1\\x3b\\xd6\\x56\\x2d\\xa8\\xc9\\x42\\xc8\\x50\\xbd\\xa0\\xda\\xd3\\x5d\\x65\\x13\\xd0\\xae\\x45\\xf7\\x2c\\x2c\\x68\\xdf\\xff\\xf2\\xaa\\x3d\\x6b\\x4e\\xdf\\xdc\\xee\\x5d\\x72\\xcf\\xfc\\xbe\\x35\\xde\\x59\\x9b\\x6b\\xf7\\x4e\\xda\\x32\\xd3\\x9b\\x5c\\xd8\\x51\\xc4\\xf6\\xf1\\xe3\\x34\\x67\\xc3\\x20\\x4c\\x80\\x54\\x7a\\x7a\\x07\\x3c\\xe2\\x30\\xc8\\x34\\x26\\x8c\\xc6\\x31\\x31\\x00\\x31\\xa9\\x31\\x29\\x9a\\x89\\x30\\x01\\xc6\\x1b\\x84\\x10\\x7d\\x75\\xda\\x18\\x49\\x29\\x74\\x97\\x73\\x3e\\x4a\\xd9\\xe3\\xe8\\x9e\\x81\\xd7\\x6e\\xef\\x44\\xa8\\xeb\\x8e\\xb3\\x6b\\x8e\\x1f\\xaf\\x5b\\x33\\xd9\\x8e\\x6c\\xad\\x6b\\x1a\\xc9\\x20\\x6a\\xdd\\xf7\\xf2\\xc0\\xea\\x75\\xa7\\xf7\\x36\\x73\\xbf\\xbe\\x7c\\x11\\xe5\\x4f\\xdb\\xd2\\xb2\\xa6\\x61\\x73\\x8f\\x0b\\x51\\x19\\xe8\\x24\\x00\\xc9\\x25\\x83\\x30\\x8e\\xde\\xd3\\xe2\\x80\\xf0\\x1c\\x99\\x0b\\x3c\\x30\\x3b\\xde\\xa8\\xf1\\x2e\\xe2\\xcc\\x83\\x1e\\x41\\x48\\x7f\\xb9\\x77\\x47\\xde\\xc3\\x37\\x5c\\xbe\\x81\\xdb\\x38\\xb2\\x19\\x3b\\xd0\\x65\\xf1\\xf4\\x8b\\x64\\xf0\\x94\\xf8\\x05\\x93\\xaf\\x7e\\x01\\x40\\xfc\\x64\\x10\\xa2\\x68\\x2e\\x1b\\xe6\\x3c\\x38\\x57\\xb9\\xd1\\x16\\x39\\x53\\xd9\\x49\\x0a\\xc5\\xf9\\xf9\\xc8\\xdb\\xdf\\x70\\xab\\x46\\xae\\xc7\\x4e\\xf4\\xa1\\x68\\x94\\xf0\\xbd\\xcd\\xf0\\x2d\\x0f\\x5e\\x20\\x6d\\x64\\x08\\x1c\\x50\\x1c\\xf0\\xd9\\x10\\xe1\\x81\\xde\\x69\\x02\\xcc\\x09\\x1c\\x16\\x56\\x29\\x23\\x2c\\x00\\xb5\\x1a\\x85\\x8d\\xb4\\x46\\x2b\\x8f\\x72\\xaa\\xdd\\x7c\\xf5\\x51\\x56\\x76\\x09\\x9f\\x24\\x00\\x92\\xb6\\xac\\xf9\\x5b\\x06\\x9b\\x37\\xbd\\x7c\\x43\\x03\\x42\\x0d\\xbb\\x7e\\xbe\\x76\\xd9\\xe3\\x5b\\xeb\\xd5\\x9f\\xc5\\xec\\xe8\\xab\\x59\\x54\\x6b\\x32\\xd6\\xf5\\x37\\x1b\\x2a\\x4b\\x0a\\xe2\\xd0\\x57\\xe8\\x4f\\x77\\x66\\x97\\xe5\\x24\\xb6\\x0d\\x9e\\x5e\\xb3\\x67\\xcd\\xe9\\xfd\\x6d\\x9e\\xf9\\x37\\x4f\\x5f\\x38\\xc3\\x3b\\x73\\x4b\\xcd\\x4d\\x35\\x5b\\x66\\xf9\\x84\\x09\\xda\\xd8\\xb7\\x4f\\xd2\\xb3\\x6f\\x00\\x12\\x4d\\xe9\\x7c\\x45\\x5e\\x1f\\xf9\\xe8\\x07\\xc2\\x28\\x1c\\x91\\xd7\\x27\\xfa\\x9c\\x38\\xeb\\xdc\\x39\\x74\\xf4\\x1c\\xfa\\xbd\\x68\\x25\\x83\\xe2\\x78\\xf4\\x8d\\x84\\xef\\x6d\\x00\\x32\\x91\\xec\\x93\\xf1\\x01\\xcf\\xac\\xd4\\x04\\xc9\\xe9\\x50\\xca\\xb8\\x30\\x7c\\xf1\\xf2\\x78\\x79\\x0c\\x1a\\xc3\\xdb\\x5c\\x85\\xf8\\x1b\\x64\\xbf\\xfc\\x32\\x32\\x89\\x7f\\x20\\xfb\\xce\\x8e\\xc0\\xd9\\xb3\\x1c\\x30\\xfa\\xde\\x1d\\xbc\\x40\\xd4\\x64\\x10\\x74\\xf4\\x2e\\x2d\\x60\\x58\\x03\\x98\\xc3\\x6b\\x42\\xe1\\x3e\\x6a\\x51\\xb3\\x29\\xc1\\x1c\\x4b\\xd4\\x49\\x76\\xa4\\xc4\\x59\\x53\\x32\\x71\\x70\\x89\\x5f\\x21\\x54\\xb7\\xfe\\xfe\\xae\\x39\\x87\\xd7\\x4f\\xe2\\xbf\\xca\\xf4\\x35\\x3b\\x6c\\xb5\\xee\\x74\\x44\\x06\\x47\\xc6\\x2f\\x3a\\xb8\\xdc\\x9f\\xbf\\xf0\\xbe\\xa5\\xfe\\x29\\x9e\\x64\\x7d\\xe9\\xb4\\x22\\x40\\x70\\x04\\x80\\xdc\\x4e\\x06\\x61\\xbc\\x54\\x57\\xb4\\x80\\x38\\xf9\\x30\\x00\\x41\\x0f\\xc7\\xe8\\x11\\x17\\xaf\\x89\\xa3\\x75\\xa9\\x28\\x2d\\x7c\\x2c\\x07\\x54\\xca\\x8d\\x17\\x2e\\xac\\x44\\x53\\x50\\xb6\\x18\\x40\\xbf\\x13\\x3f\\x46\\x7f\\xbc\\x5e\\x3c\\x46\\x06\\x47\\x2e\\xed\\x46\\x3b\\x46\\xbe\\x1f\\xd9\\x4a\\xfb\\xf1\\x53\\x00\\xd2\\x4b\\x06\\xe5\\x5c\\x67\\x18\\xf0\\x1a\\xe9\\xf5\\xf4\\xd0\\x8c\\x8b\\xe5\\xd4\\x3a\\xbb\\x59\\xa2\\x89\\x1b\\x3d\\x81\\x9f\\xbe\\xdc\\xfd\\xfd\\x8b\\x2f\\x92\\x41\\x40\\x70\\x23\\x00\\x69\\xa5\\x6d\\xb2\\x06\\x4c\\x6a\\x1e\\x63\\x96\\xba\\x8e\\x06\\x8e\\x26\\xf4\\x48\\x3d\\xc4\\x5f\\x69\\x6a\\x27\\xf5\\x95\\xa9\\x9d\\xfa\\xcf\\xa0\\xb4\\x3f\\x9e\\x38\\xf2\\xdc\\x1f\\x91\\x09\\x4f\\xc1\\xc5\\x97\\x06\\xb8\\xe2\\x91\\xdf\\x63\\xfb\\xe5\\xd3\\x64\\x90\\xb6\\xeb\\x29\\x00\\x92\\x40\\xd7\\x43\\x46\\x20\\x55\\x85\\x31\\x60\\xd4\\xc8\\x21\\x8c\\xa1\\x07\\xc9\\x5d\\xd6\\xc4\\x51\\xf2\\x1a\\x8c\\x88\\xc6\\x56\\xe3\\xdc\\x24\\xe1\\xef\\x62\\x1f\\xf9\\xec\\x13\\x74\\x37\\xf7\\x29\\x17\\x7d\\xf9\\x3b\\x32\\x78\\xf9\\x5b\\x6e\\x1c\\x60\\x18\\x08\\x5e\\x20\\x3d\\xb2\\x0c\\x94\\x1e\\x48\\x51\\x2e\\x09\\xcb\\x91\\x32\\x6b\\xa1\\xd9\\x66\\xb3\\x99\\x28\\xfd\\xc6\\xd8\\x1b\\xaf\\x22\\x19\\xf5\\xd4\\xec\\xfc\\xd9\\xba\\xf5\\x3f\\xbb\\xa6\\xa6\\x66\\xc7\\xcf\\xd6\\xaf\\x7b\\x7e\\x67\\xed\\x97\\x19\\x15\\xf3\\x26\\xd5\\xcd\\x2b\\x4b\\x4f\\x2f\\x9f\\x5f\\x37\\x69\\x5e\\x79\\x3a\\x16\\x56\\x9c\\xbe\\x6d\\xea\\xd4\\xdb\\x4e\\xaf\\xd8\\xb1\\xe2\\xf4\\xed\\x5d\\x5d\\xb7\\xbd\\xb2\\x02\\x55\\x6e\\x99\\x53\\x52\\x32\\x77\\x4b\\x60\\x67\\x60\\xcb\\xdc\\xd2\\x92\\xb9\\x5b\\x03\\x8c\\xaf\\xcd\\x0a\\x96\\x92\\x25\\x64\\x08\\x52\\xc0\\x09\\xd9\\x01\\x33\\x2f\\x47\\xa6\\xc7\\x50\\x77\\xf5\\x66\\xda\\x42\\xcd\\x54\\xe9\\x54\\x56\\x21\\x52\\x88\\x0b\\x05\\x30\\x0f\\x4d\\x33\\xb2\\x24\\xad\\xb0\\xd1\\xf9\\x8b\\x7b\\x3e\\x2f\\xaf\\xdc\\x70\\x6a\\x77\\x03\\x42\\xf5\\xbb\\x5f\\xda\\xb0\\xfe\\xd4\\x0d\\x0d\\xe8\\x4b\\x94\\x55\\xdb\\x57\\xdf\\xd0\\x57\\xa3\\x37\\xd4\\x2c\\x69\\xa8\\xef\\xab\\x31\\x20\\x2c\\xd4\\x6c\\x5b\\xd9\\x6b\\x3a\\xb2\\xfe\\x74\\xcc\\x94\\x5b\\x5e\\x59\\xb5\\x63\\xd5\\x2b\\xb7\\x76\\x4e\\xb9\\xf5\\xcc\\x2a\\x54\\xbb\\xb5\\xb7\\xa8\\x68\\xf6\\xd6\\x9a\\x9d\\x35\\x5b\\x67\\xfb\\x8b\\x66\\x6f\\xab\\xa1\\xed\\x1e\\x94\\xc7\\x3f\\x0e\\x32\\x59\\xcc\\x6b\\x26\\xd1\\x51\\x9f\\xfc\\xf9\\x21\\xbe\\x25\\x4f\\x81\\x6c\\x43\\x8e\\x41\\xe6\\x87\\xc6\\xb0\\xa8\\x00\\x48\\x6b\\x40\\x6e\\x59\\x54\\x36\\xe2\\xd9\\x7f\\xf9\\x12\\x9d\\xed\\x3d\\xbe\\xb5\\x3e\\xab\\x74\\x8a\\x0b\\x25\\x88\\x41\\x31\\xff\\x77\\x8e\\xc9\\xa5\\xc6\\xac\\x92\\xb6\\xbc\\xdf\\xa1\\x47\\xc5\\x2e\\x32\\x88\\x72\\xba\\x76\\xcd\\xac\\x5a\\xd0\\x52\\x9c\\x28\\x66\\x45\\xe3\\xa5\\x48\\x6b\\xaf\\x74\\xe4\\x55\\xdb\\x13\\xa5\\xf9\\xb2\\x2b\\x78\\x81\\x34\\x91\\x21\\x28\\x93\\xb4\\x27\\x90\\xa3\\x8c\\x00\\xe1\\x31\\xe1\\xfb\\xa9\\x90\\x02\\x78\\x7e\\x28\\xf5\\x47\\x2d\\xd7\\x5c\\x5c\\x54\\xe8\\xce\\x77\\x98\\x12\\xf2\\x04\\xb5\\xce\\x8e\\xbc\\x54\\xd3\\xf6\\x5c\\x99\\x66\\x3d\\x81\\xaa\\xe3\\x4a\\x02\\x19\\x37\\xdb\\xdb\\xb8\\x79\\xc8\\x5e\\xdf\\x5b\\x30\\x6d\\x68\\xc3\\xa4\\xd6\\x1d\\x47\\xa6\\xce\\x3c\\xbe\\x63\\x32\\xb9\\x88\\xcc\\x15\\x1d\\x0e\\xfb\\xe4\\x32\\x93\\xa3\\x61\\x76\\xc1\\xb4\\xfb\\xd7\\xd7\\x4c\\xbe\\xee\\x91\\x9e\\x9e\\xa7\\xf6\\x4d\\x27\\x17\\x91\\xa3\\xa1\\xb7\\xc0\\xd1\\x51\\x61\\x45\\x85\\x36\\x7f\\x76\\xda\\xf8\\x44\\x6f\\xfb\\x86\\x69\\x9d\\xdb\\x3a\\x6c\\x39\\xdd\\x37\\xce\\xce\\xad\\x72\\xe8\\xe2\\x4c\\x5e\\x53\\xb6\\xd7\\x92\\x32\\x5e\\xeb\\xef\\xda\\xdc\\xd5\\xbd\\x75\\xb2\\xd9\\xda\\x73\\xf3\\x62\\x6f\\xa3\\x23\\x3e\\xce\\xe8\\xa5\\x71\\xf7\\x01\\xc8\\xb5\\x54\\x96\\x91\\xd6\\x28\\x87\\x11\\x4d\\x03\\xa7\\x6c\\x0a\\x8c\\xcb\\x84\\xb2\\x8a\\x5d\\x2b\\xce\\xfd\\x4a\\x5c\\x4c\\x72\\xb8\\x5f\\x5f\\x76\\x73\\xbf\\x3e\\x25\\x7d\\xff\\x70\\xf0\\x02\\xdd\\x5b\\xb4\\x12\\xff\\x23\\x1c\\x46\\x18\\xad\\x09\\x9d\\x86\\xb1\\xad\\x5d\\x0b\\x92\\xde\\xc7\\x4b\\xb4\\xd0\\xc8\\xcc\\x4a\\xe3\\x96\\xed\\x9b\\xf1\\xc4\\x8f\\x26\\x6d\\x3e\\x36\\x77\\xde\\xf1\\xcd\\xb5\\xe8\\x73\\x3c\\xb0\\x78\\xf1\\x2a\\x84\\xc9\\xe0\\xe5\\xe0\\xfc\\x7b\\x97\\xf8\\xbc\\x4b\\xee\\x9b\\xcf\\xa1\\xcb\\xc1\\x15\\xab\\x56\\xad\\xe0\\x10\\x20\\x08\\x00\\x90\\xc3\\x64\\x10\\xd4\\x90\\x1a\\x48\\x92\\x58\\x94\\xc4\\xa9\\x00\\xc1\\x9a\\x50\\x73\\xe3\\x25\\x8e\\x22\\x1b\\xaa\\x90\\x1b\\x4f\\xd7\\x6a\\x51\\x86\\x28\\x36\\x7c\\x2d\\x36\\x8a\\xa8\\xba\\xbb\\x8b\\x6b\\xbe\\x34\\x40\\x59\\x00\\x20\\xb0\\x01\\x90\\x63\\x94\\xc7\\xe8\\x03\\xe9\\xd1\\x72\\xde\\x38\\x4e\\x62\\x32\\x6b\\x30\\x9b\\x59\\x71\\x1a\\x85\\xb9\\xb8\\x39\\x23\\xc7\\x19\\x39\\x77\\x7c\\xbc\\x9b\\xeb\\x5e\\xf5\\xc7\\xdf\\xbf\\x7f\\xdb\\x2d\\xbf\\xf9\\xfd\\x47\\xab\\x76\\xbf\\x8b\\x7e\\x81\\xcf\\x5c\\x1a\\xc0\\xaf\\x8f\\x14\\x91\\xc1\\x91\\x00\\x3e\\xc5\\x70\\xb7\\x02\\x90\\xcd\\x74\\x8f\\xc9\\x0c\\xa4\\x45\\x09\\x1c\\x17\\x4a\\xd6\\x87\\x7a\\x42\\xb8\\xe3\\xe2\\x34\\x94\\xb2\\xf4\\xa2\\x38\\xc7\\x51\\x96\\x3a\\xeb\\x1b\\xa4\\x13\\xf7\\xa0\\x3d\\xe2\\xdf\\x82\\x97\\xc5\\x4f\\xd1\\x35\\xe2\\x8d\\x48\\x8b\\x7f\\x40\\x77\\x8e\\xbc\\x38\\x32\\x8c\\x0e\\x88\\x0b\\x70\\x13\\xae\\xa2\\xf8\\xab\\x68\\x3e\\x13\\x89\\x0e\\x69\\x81\\x64\\x81\\x8e\\x59\\x04\\x21\\xe2\\xe2\\x34\\x94\\x10\\xc8\\x80\\x34\\x46\\x0d\\x32\\xe0\\x15\\x28\\x0b\\x45\\x8b\\x8d\\x17\\xc5\\x36\\x14\\x8d\\x97\\x63\\xc3\\x88\\x5a\\x5c\\x86\\x0e\\xe1\\x2f\\x00\\xc1\\xa3\\x00\\xa4\\x81\\xf2\\x42\\x6b\\xc0\\x14\\x85\\xe4\\x78\\x1c\\x8d\\xc0\\x49\\x72\\x02\\x9e\\x1b\\xba\\x52\\x51\\x26\\x27\\x18\\x54\\x27\\x51\\x8e\\xed\\xa1\\x9e\\x4b\\xe8\\x03\\xbc\\xfa\\xf2\\x5c\\x3c\\x77\\xe4\\x71\\xee\\x9a\\x17\\x5f\\xbc\\x91\\xab\\x3d\\xb5\\x8b\\x2e\\x87\\x49\\xe4\\x37\\xdc\\x69\\x41\\x04\\x2d\\xd8\\x40\\x3d\\xac\\xff\\xa7\\x32\\x7b\\x28\\x42\\x42\\x48\\x27\\xd1\\x71\\xa7\\x73\\x3b\\xd6\\x37\\x34\\xae\\x9f\\x92\\xfb\\x78\\xac\\xb1\\x28\\xdb\\xea\\x33\\xc6\\xbe\\xa7\\xaa\\x0f\\xa4\\xe4\\x05\\xcc\\xaa\\x5b\\x6f\\x49\\xb6\\x15\\xa6\\x46\\xf3\\x27\\x5c\\x6d\\xc5\\x7a\\x7d\\x71\\x9b\\x2b\\x31\\x3b\\x23\\x2e\\x2e\\x23\\x3b\\x31\\x69\\x0b\\xa7\\x4b\\xd1\\xe8\\x26\\x08\\xcd\\xad\\x95\\x69\\xd6\\xd4\\x89\\x9c\\x4f\\xa2\\x91\\x08\\xc0\\x75\\x92\\x41\\x10\\x40\\x38\\xc9\\x03\\x72\\x4a\\x9b\\x39\\xef\\x31\\xbb\\xb9\\xce\\x0b\\xe2\\x7d\\xb8\\x38\\x8d\\x1b\\x98\\xf3\\xf2\\xcf\\x00\\xc1\\x43\\x54\\x36\\x1a\\xa2\\xb6\\x3b\\x2d\\x85\\x33\\x78\\x90\\xcc\\x38\\x2c\\x82\\xca\\x28\\x5b\\x27\\xa5\\xe6\\xf1\\x06\\xe2\\xbf\\xbc\\x1b\\x3d\\x62\\xac\\x2c\\x48\\x4f\\x75\\x56\\x5a\\xe6\\xae\\xe2\\x2e\\xe0\\x49\\x1b\\x8f\\xcc\\xea\\xb9\\x6f\\x4d\\x65\\x6e\\xf3\\x42\\xbf\\xf8\\x23\\x6e\\x3a\\x8a\\xf6\\x67\\x56\\xd5\\xd4\\x18\\x4d\\x25\\xb6\\x44\\xb4\\x78\\x46\\xf7\\xfe\\x05\\x3e\\x47\\xcf\\xb5\\x9d\\xe5\\xab\\xfb\\xe6\\x3b\\x3f\\x00\\x04\\x4f\\x07\\x2f\\x10\\x3b\\x19\\x82\\x00\\x08\\x27\\x6d\\x5a\\x49\\xe7\\x70\\x87\\x25\\x3d\\x8f\\xa8\\x6f\\x2c\\x7b\\x60\\xec\\x0c\\x7d\\xb0\\x43\\x92\\xd0\\xd3\\x5c\\x93\\x72\\x4c\\x55\\x85\\x06\\xfc\\x25\\x6e\\x58\\x7f\\x77\\xdb\\xb4\\xa1\\x0d\\xb5\\x99\\x9e\\x06\\xbb\\xb3\\xbd\\xd8\\xd0\\xb4\\xfd\\x68\\x77\\xdb\\xfd\\x5b\\x5a\\xf1\\x05\\x9c\\xe5\\x6b\\xc8\\xb1\\x37\\xf9\\xf4\\x96\\x8a\\x29\\x8e\\x1d\\xf8\\xe1\\x78\\x6b\\xa9\\xcd\\xe4\\xb3\\x24\\xc4\\xea\\x5d\\x59\\xed\\x9b\\xda\\x6d\\xb6\\x8e\\xed\\x9d\\xf9\\xad\\x15\\xf9\\xb1\\x31\\x8e\\xaa\\x1e\\x7f\\xd7\\xce\\xa9\\x76\\x6b\\xc7\\xb5\\x33\\xcc\\x45\\x96\\x04\\xad\\xad\\xcc\\xea\\x0c\\x58\\xe3\\x00\\xc3\\x7e\\x00\\xd2\\x44\\x06\\xe9\\xd9\\xbd\\x7a\\x78\\xc2\\xb8\\x28\\xaa\\xe7\\x5f\\x71\\xe2\\xfe\\xd4\\x81\\x03\\x9f\\x8d\\xbc\\x17\\x85\\xed\\xdf\\x8e\\xfc\\x0e\\x55\\xa4\\xa2\\xe7\\x5f\\xfe\\xc7\\x3f\\xee\\xc6\\x23\\x23\\x0e\\xf4\\x74\\x2e\\x20\\x78\\x2e\\x78\\x81\\xe8\\xc9\\x20\\xe4\\x80\\x70\\x52\\x83\\x90\\xd3\\x1e\\x2f\\x49\\x43\\x2a\\xf9\\x38\\x5c\\xe9\\xa7\\x1c\\xe6\\x24\\x44\\x8e\\xdf\\x37\\xe0\\xd3\\x22\\x6f\\xb0\\x2c\\xf5\\xcf\\xb8\\xa3\\xaf\\xa8\\x6c\\xcd\\x03\\xf3\\x3b\\xee\\xde\\xd8\\xa2\\x3a\\x37\\x61\\x79\\xbb\\xab\\xd1\\x95\\xa4\\x2f\\x69\\x77\\x1a\\x3c\\x8e\\xec\\x38\\x5c\\x82\\x3b\\xce\\x7e\\xa7\\x49\\xf5\\x2c\\xdc\\xdf\\xdd\\x75\\xeb\\xd2\\x92\\xdc\\xa9\\xdb\\xda\\x5b\\xaa\\x0d\\x45\\xcd\\xb9\\xf9\\x4d\\x9e\\xf4\\x68\\x8d\\x6e\\x02\\x8d\\xf9\\x1d\\xbc\\x40\\x4a\\xc9\\xbd\\x90\\x09\\x85\\xa0\\x1e\\xce\\xd1\\xc7\\xd3\\x79\\xa9\\x35\\xd2\\x54\\xb6\\xbe\\xf0\\x76\\xd0\\xd8\\xf7\\xf4\\x36\\xa3\\x36\\xec\\xaa\\x10\\xb7\\x71\\x62\\xd7\\x1d\\xab\\x1b\\xa2\\x5d\\x7b\\xdb\\xa7\\xed\\x9d\\xeb\\xae\\x1a\\x38\\x34\\x6b\\xe1\\xb1\\xf5\\x95\\x68\\xf6\\xe3\\x5f\\xdd\\xf1\\x8e\\x31\\xe0\\xcd\\x99\\x90\\xec\\x6e\\xf1\\x38\\x1a\\x0b\\xd3\\xd3\\xdc\\x0d\\xe4\\xde\\x33\\x28\\xab\\x79\\xe3\\xb4\\x82\\x52\\x54\\xd2\\xb7\\xbf\\xb3\\xe7\\xf6\\xa5\\xc5\\x95\\x9b\\x1e\\x5f\\xda\\x7a\\xf8\\xeb\\x07\\xa7\\xa0\\x91\\x27\\x35\\xe9\\xb6\\x24\\xbb\\x7b\\xe6\\x24\\x9b\\xbe\\xa8\\x29\\xd7\\xd1\\xe8\\x49\\x07\\x04\\x4f\\xd2\\x3b\\xc2\\xf2\\x9c\\x45\\xd4\\xd6\\x6f\\x94\\x16\\x1a\\xa9\\x1e\\x19\\x19\\xc1\\x64\\x64\\x31\\x77\\x27\\x51\\x5d\\xfa\\x07\\xf7\\xc6\\x69\\x16\\xab\\xe6\\x4c\\xf0\\x02\\xc9\\x25\\x43\\x60\\x85\\x12\\x98\\x0c\\xd1\\xcf\\x36\\x06\\xbc\\xb9\\x59\\x31\\xb2\\xad\\x3d\\x6c\\xfa\\xd0\\xde\\x8c\\xee\\x41\\x5c\\xb8\\xef\\x9e\\xb4\\xe9\\x5c\\xf1\\x4c\\x62\\x53\\xf3\\x03\\x56\\x47\\x93\\x37\\xb3\\x7e\\xd3\\xd0\\xd4\\xa9\\x07\\x37\\x35\\x64\\x7a\\x9b\\x72\\xad\\x81\\xfc\\x94\\xaa\\x55\\x77\\xb4\\x77\\xdc\\xb1\\xaa\\xfa\\x3d\\xbd\\xaf\\xde\\x9a\\x5d\\xe7\\xc9\\xd4\\x7b\\xeb\\xb2\\xad\\x75\\x5e\\x7d\\x5a\\x6a\\x5e\\xb9\\xd1\\x54\\xea\\x48\\x4e\\x76\\x94\\x9b\\x4c\\x65\\x8e\\x14\\xae\\xcb\\xd1\\x12\\x70\\xc7\\xc5\\x7b\\x26\\x4d\\x73\\x77\\x6d\\x9f\\x92\\x9d\\x3d\\x65\\x7b\\x97\\x7b\\xda\\x24\\x6f\\x7c\\x9c\\x3b\\xd0\\xec\\xe8\\xd8\\xdc\\x61\\xb3\\xb5\\x6f\\x19\\x79\\x24\\xbb\\xcc\\xa6\\xd5\\xda\\xca\\xb2\\xb3\\xcb\\xb2\\xb5\\x5a\\x5b\\x29\\x36\\x18\\xbd\\x96\\xf8\\x78\\x8b\\xd7\\x68\\xf4\\x59\\xb5\\x5a\\xab\\x8f\\xc9\\x31\\xcf\\x05\\xbf\\x23\\xe9\\x64\\x08\\x32\\xa1\\x00\\xd4\\xc3\\xd9\\xfa\\x74\\x0d\\x76\\x52\\xef\\x53\\xf9\\xf0\\x3c\\xb4\\xb7\\xd2\\x55\\x63\\xf4\\xc4\\x17\\x78\\x95\\x43\\x84\\x84\\x0c\\x8c\\x6e\\xed\\xbc\\x79\\x59\\x75\\x94\\x73\\x67\\xed\\xb4\\xc1\\xf9\\xde\\xca\\x81\\x83\\xbd\\x0b\\x8e\\xac\\x2e\\x43\\x33\\x1e\\xbe\\x78\\x77\\xfc\\xb9\\x9a\\x45\\x29\\x28\\xb9\\xa0\\xc1\\xe5\\x68\\x28\\x48\\x4d\\x71\\x37\\x0c\\xa3\\x8c\\x9a\\x95\\xed\\x0e\\x97\\x6f\\xd1\\xfe\\x9e\\xee\\x7b\\x56\\x56\\xd4\\x6c\\x3d\\xb1\\x62\\xd2\\x83\\x17\\x0f\\x4d\\x46\\x2f\\xa1\\xcd\\x65\\x79\\x53\\x5c\\xd3\\x2a\\x2d\\xa6\\xd2\\xb6\\xdc\\xdc\\x96\\x22\\x3d\\xb3\\x6d\\xf8\\x83\\xdf\\x72\\x77\\x73\\x7a\\xd0\\x82\\x11\\xd4\\xc3\\x99\\x49\\x11\\x36\\xb0\\x70\\x51\\x2f\\xdc\\x88\\xca\\xdd\\x9d\\xdb\\xb6\\xb2\\xba\\x66\\x65\\x7b\\xae\\xf4\\x7f\\xf5\\xaa\\xf6\\xdc\\x9f\\x55\\x14\\xf9\\xca\\xa5\\xbf\\xa8\\x7c\\xea\\xd6\\x76\\xab\\xb5\\x7d\\xeb\\xd4\\xbb\\x3a\\xb7\\x49\\x74\\xdb\\xd6\\x39\\x61\\x7a\\x5b\\xdb\\xf4\\x27\\x67\\x4e\\x9e\\x3c\\x13\\x10\\xea\\x05\\xc0\\x1f\\x71\\xf1\\x11\\x7c\\x4d\\xe5\\x31\\xbb\\xf1\\x47\\xcf\\xfd\\x02\\xf5\\xc7\\xe3\\x52\\xd7\\xad\\x1b\\xa4\\x76\\x79\\xc9\\xfb\\xdc\\x0b\\xc2\\x8e\\x7f\\x6b\\x37\\x71\\xab\\x8c\\xdc\\x0b\\x8e\\xce\\x8d\\x8d\\x4d\\x1b\\x3b\\x1d\\x4f\\xc5\\x1a\\xfd\\xd4\\x6e\\xb2\\x70\\xf8\\xe1\\x1d\\xfc\\x09\\x67\\x7b\\x89\\x5e\\x5a\\x62\\x89\\xb6\\xcc\\xb8\\xb8\\x4c\\x5b\\xe2\\x5b\\x6c\\x7f\\x43\\xce\\xe0\\xb7\\xdc\\x03\\x9c\\x1e\\x0a\\x40\\x38\\x69\\xd0\\x30\\x1e\\x26\\x27\\xcb\\x15\\xfe\\x79\\xae\\xdc\\xc4\\xd0\\xe5\\x1f\\xcc\\x4f\\x0b\\x94\\x4f\\x48\\xcb\\xcd\\x74\\x55\\xfe\\x2c\\xbf\\x6d\\x59\\x69\\xcd\\xea\\xf6\\xdc\\xba\\x40\\x43\\xb3\\xab\\x6b\\x5d\\x4d\\x51\\x7f\\x97\\xe7\\x67\\xb5\\xa5\\x81\\xb2\\x86\\xaa\\x69\\xe8\\x1d\\x6f\\x6e\\x9c\\x3e\\x69\\x62\\xb6\\xd1\\x33\\xc5\\x9f\\x91\\xee\\x9f\\xea\\x2b\\xee\\x4e\\x4a\\x98\\xde\\x50\\xd4\\x55\\x92\\x99\\xea\\x9f\\x11\\xb0\\x78\\x8b\\x72\\xfc\\x79\\x80\\x91\\x11\\x80\\x7b\\x9c\\xd3\\x52\\xfe\\x64\\x0d\\x98\\x26\\x50\\x79\\x71\\x8c\\xcb\\x10\\xd5\\x9e\\xaf\\xea\\x30\\xe4\\xf6\\xa8\\xb8\\xa6\\xb9\\x73\\x9f\\x17\\xef\\x8f\\x42\\x2b\\xfe\\x4b\\xdc\\xf7\\xfc\\x78\\xe4\\xbf\\xeb\\xe8\\xd1\\x8d\\xe8\\x47\\xd1\\x74\\x31\\x9e\\xf5\\xb9\\x30\\xf8\\x2d\\x77\\x1b\\xa7\\x05\\x0b\\x08\\x27\\x27\\xd2\\xb5\\xa9\\xf0\\xaf\\xc4\\xb1\\xec\\x8b\\x19\\x2c\\x50\\xbd\\x1b\\x9d\\x17\\x1f\\xd7\\x6a\\x1a\\xec\\xd7\\xed\\x33\\x35\\xad\\x69\\x29\\x5e\\xde\\x59\\x88\\x9f\\xe3\\x02\\x1e\\x83\\x23\\x6d\\x7c\\x4d\\x55\\x8a\\x25\\x2d\\x21\\x0a\\xed\\x40\\x77\\xdd\\x79\\xa7\\x2a\\xe1\\x86\\xcd\\x9e\\x79\\xcd\\x8e\\xcc\\x92\\x2e\\xaf\\xc3\\x92\\x90\\x95\\x9f\\x52\\x54\\xa3\\x1e\\x1f\\x23\\xd0\\x39\\xe6\\x0a\\x7e\\xcb\\x1d\\xe0\\x0c\\x90\\x09\\x79\\xa0\\x1e\\xb6\\x28\\x7c\\x4b\\xaa\\x23\\x92\\x81\\xb2\\x09\\xc7\\x65\\x09\\x2a\\x3a\\xd3\\x68\\x53\\x38\\xed\\xb8\\xd2\\x79\\x0d\\x79\\x6a\\x7d\\x4f\\x71\\x45\\x6f\\x85\\xde\\x3e\\x79\\x65\\x4d\\xdd\\xba\\xce\\xbc\\xca\\x8d\\x8f\\x2c\\xbe\\xd5\\x51\\x15\\x5b\\x5b\\x92\\xea\\xd0\\x6b\\x2a\\x38\\xc3\\xdd\\x09\\xf9\\x8d\\xde\\x4c\\x6b\\x76\\xdd\\x1c\\x7f\\xf1\\x82\\x06\\x9b\\xad\\x6d\\x43\\x6b\\xe1\\xca\\x63\\xfd\\x3e\\xb1\\xc7\\x94\\x64\\x6a\\xaa\\x8b\\xcf\\xca\\x4b\\x29\\x2a\\xa3\\xb4\\xc8\\x01\\xe0\\x1e\\xe0\\xb4\\x63\\xf8\\x14\\xf7\\x80\\xf8\\xc4\\x2b\\xa8\\x53\\x6c\\xc2\\x1b\\xf0\\x13\\x23\\x53\\xf0\\xce\\x3b\\x29\\x9f\\x52\\xd6\\x48\\x26\\xbd\\xb5\\x33\\xf4\\xd3\\x78\\x0e\\x63\\x1e\\xc9\\x91\\x0f\\x52\\x95\\x00\\x4f\\x3c\\x60\\x8e\\x1f\\xd5\\x49\\xca\\xa0\\x39\\xb5\\xe9\\xc4\\xf8\\x7f\\x05\\x52\\x4b\\x41\\x62\\xfe\\x1d\\x96\\x7f\\x89\\xa0\\xa7\\xa7\\x27\\x10\\x65\\x32\\x99\\x2c\\x79\\x39\\x74\\x5e\\x44\\x4e\\xdb\\x42\\x1a\\x29\\x45\\x61\\x9c\\x74\\x11\\xd3\\x99\\x1c\\xf1\\xfb\\xfa\\x52\\x6f\\x59\\x7d\\x5e\\x7b\\x7f\\x65\\xe5\\xca\\x8e\\xbc\\xfa\\x32\\x6f\\x69\\x4e\\xf3\\xe2\\xf2\\x8a\\xbe\\xe6\\x9c\\x87\\xaa\\xbc\\x9e\\x40\\xa5\\xd7\\x53\\x99\\x50\\xe8\\xcc\\x77\\x17\\x3a\\x9d\\x05\\xb8\\xb2\\x78\\x5a\\x6a\\xea\\xec\\x2a\\x7f\\x97\\x3f\\x2d\\xcd\\xdf\\xe5\\xaf\\x9a\\x9d\\x9a\\xda\\xed\\xf7\\x76\\x16\\xa5\\xa7\\x17\\x75\\x8a\\x6b\\xf2\\x5c\\xae\\x3c\\x47\\x61\\x21\\xda\\x94\\x9d\\xef\\xc8\\xb1\\xba\\x5c\\x74\\xfc\\x4b\\x82\\xdf\\x53\\xfa\\xa5\\x43\\x2e\\xa8\\x87\\x4d\\x19\\x29\\x13\\x25\\xfe\\x27\\x69\\x61\\x02\\x3d\\x6f\\x89\\x70\\x91\\x30\\x7a\\x7c\\x12\\xff\\x93\\xad\\xda\\x09\\x89\\xe8\\xb7\\xa5\\x33\\x2b\\xad\\x42\\x46\\x5b\\xde\\xf6\\x1b\\xa4\\xb1\\xaf\\x5e\\xd5\\x96\\x5b\\x3a\\x70\\x7c\\x69\\xcc\\x43\\x39\\xfe\\x98\\x2a\\x4f\\xaa\\x3d\\x23\\xb6\\x74\\x8f\\xc6\\x56\\xe5\\x4a\\xc9\\xdc\\xbb\\xad\\x78\\x71\\xab\\xc3\\xd6\\xbe\\xa9\\xbd\\x70\\xcd\\x83\\x4b\\x0a\\x6e\\x13\\xf5\\xda\\xda\\xfa\\xaa\\x44\\xb3\\x2b\\xcd\\x57\\x4b\\xd7\\x3d\\xde\\xcd\\xbd\\x41\\xcf\\x91\\x65\\x3f\\x3f\\x3a\\xe8\\x6f\\x8c\\x2c\\xc4\\xf7\\xe3\\xdd\\x8f\\xb2\\xb1\\x3e\\x4b\\x26\\x71\\xbf\\x11\\x6e\\x03\\x0e\\x74\\x60\\x84\\xe8\\x67\\xf5\\x29\\x71\\x6a\\x0c\\xd2\\x9e\\xe4\\x56\\x19\\x55\\x0a\\x6f\\x60\\xe4\\xf5\\x29\\x4c\\x21\\x4b\\xc0\\x9f\\x7c\\xfe\\xcd\\x81\\x1d\\xe9\\xee\\x1a\\xab\\xa5\\xda\\x95\\x9e\\xee\\xaa\\xb6\\x58\\x6b\\xdc\\xe9\\xf3\\xdd\\x66\\x93\\xd3\\x69\\x32\\xbb\\x85\\xdb\\x4e\\x7f\\x68\\xa9\\xcc\\x4f\\x4d\\xcd\\xaf\\xb4\\x58\\x02\\x79\\xc9\\xc9\\x79\\x01\\x8b\\xd9\\xe5\\x32\\x5b\\x0b\\x0a\\x28\\x8d\\xbe\\x21\\xd7\\x71\\xaf\\xf2\\x67\\x80\\x07\\x0d\\xa8\\x87\\x63\\xc7\\x11\\xea\\xaf\\x11\\xef\\xd6\\x72\\x46\\x6b\\x39\\xe7\\x73\\x53\\x97\\x6d\\xfc\\xcc\\xcc\\xe1\\x17\\xa7\\x9c\\xe2\\xe2\\xd3\\x8c\\x71\\xad\\xba\\xb4\\x6b\\xc9\\x61\\x64\\xd2\\x8a\\xbf\\xdd\\x6e\\x28\\x76\\x5a\\x27\\x5a\\xfa\\xfc\\x9b\\x19\\x4f\\x5f\\x44\\xde\\xe6\\xfe\\x2a\\xfc\\x01\\xb4\\xe0\\x02\\xf5\\xb0\\xcb\\xf8\\x4f\\x78\\x67\\xbc\\x62\\xce\\x17\\xc2\\xac\\xf9\\x5e\\x0f\\xf7\\xd7\\xdc\\x29\\xeb\\x1b\\x1b\\xd7\\x77\\x38\\x9e\\x88\\xcd\\x2a\\xca\\xce\\xf6\\x65\\xc5\\xde\\x9a\\x9c\\x5b\\x66\\xca\\xf6\\x3b\\x5d\\x86\\x4c\\xfb\\xa2\\xa4\\xdc\\x32\\xb3\\xa1\\xa8\\xd0\\xab\\xcf\\xc8\\xe5\\x4f\\x14\\x74\\x94\\x18\\x0c\\x25\\x1d\\x05\\x21\\x1e\\x8b\\x62\\x4c\\x55\\x05\\xe9\\x89\\xa9\\x89\\x05\\xe6\\x54\\x53\\x95\\x3b\\x93\\xfe\\x02\\x84\\x2e\\x8b\\xf7\\xe1\\x73\\x30\\xfc\\x4f\\xcf\\xf0\\x85\\x44\\x1a\\xb3\\x04\\x9f\\xfb\\xf2\\x4b\\xf1\\x3e\\x9c\\x4a\\xd7\\x69\\x9f\\x38\\x9b\\xcb\\x82\\x2a\\x48\\x05\\xe1\\x64\\x14\\xf5\\xcb\\x0c\\xc9\\x04\\x16\\xab\\x6f\\x54\\xd2\\xb2\\xe2\\x59\\x85\\x4d\\xce\\x44\\x4b\\x55\\x8f\\xbb\\x71\\x76\\x7a\\x96\\xa6\\xc8\\x9c\\x69\\x4b\\x8a\\x4a\\xd0\\xe7\\x24\\x56\\xa5\\x06\\x26\\x35\\x18\\x3d\\x6d\\xde\\xd4\\xf4\\x89\\x83\\x82\\x26\\x26\\x31\\x63\\x62\\x4a\\x7e\\x4e\\x76\\x3c\\x20\\xd4\\x26\\x36\\x71\\x76\\x78\\x1d\\xe2\\x25\\x0d\\x3d\\x1a\\x21\\x1c\\x85\\x00\\xe1\\x46\\x0e\\xd1\\xa8\\xa9\\x72\\xca\\x07\\x43\\x28\\xcf\\xb7\\xd7\\x4c\\x84\\x44\\xbb\\xf9\\xca\\x9b\\xfb\\x9c\\x9d\\x65\\xe8\\xd4\\xc7\\xc8\\x57\\xf6\\x5f\\x17\\x7f\\x60\\x57\\xf5\\x5f\\xe1\\x78\\x0e\\x4d\\xeb\\x42\\x6a\\x49\\xce\\x99\\x21\\x36\\x92\\xa5\\xa4\\x15\\x8a\\xa1\\x0d\\x16\\x41\\xf4\\xb3\\x73\\xa6\\xd6\\x96\\x7b\\x53\\xa5\\x39\\x65\\x4c\\x94\\x7d\\x3b\\xac\\x02\\xbb\\x80\\x10\\xc6\\x8d\\xa9\\xd4\\xc3\\x16\\xef\\x68\\xcc\\x1e\\x9d\\x01\\x51\\xb7\\xe3\\x70\\xb1\\xce\\x38\\xd6\\xad\\x98\\x2c\\xdd\\xeb\\x0f\\xac\\x7f\\x68\\x41\\x47\\x6d\\xac\\x36\\xde\\x98\\x97\\x7a\\xe2\\xd4\\xfb\\x0d\\xfb\\x7e\\x75\\xed\\xfa\\x67\\x36\\x57\\xa4\\x17\\x54\\x99\\x93\\x52\\x13\\xf4\\x39\\xba\\x9e\\x05\\x95\\x1b\\x1e\\x5a\\x38\\xb5\\x09\\xad\\x1a\\xb9\\x41\\x67\\x4f\\x30\\x17\\x64\\x54\\xf4\\x56\\x36\\xaf\\x6d\\xb1\\x6a\\x72\\xea\\x3c\\xe2\\x2f\\x33\\x7c\\x93\\x5d\\xce\\x16\\x5f\\x7a\\x86\\xaf\\xd5\\xe9\\x6c\\xf5\\x65\\x70\\x87\\xa7\\x2c\\x4b\\x6c\\xda\\x35\\xdf\\x1f\\x17\\x63\\x4b\\xd3\\xa5\\xc7\\xa9\\xee\\xbc\\xa3\\x64\\xdb\\xa2\\x4a\\x47\\xf3\\x02\\x5f\\x5e\\x6b\\x85\\x2b\\x4e\\x57\\x6a\\x35\\x97\\xba\\xac\\xb1\\xae\\x83\\xbd\\x89\\x6d\\xbb\\xe7\\x78\\x13\\x2e\\x7d\\xc4\\x91\\xf8\\x46\\x67\\x7a\\x61\\xb6\\x2e\\x23\\xbf\\x28\\x35\\xd5\\x9e\\xa9\\xc1\\x27\\xb3\\x2a\\x0b\\x32\\x32\\x0a\\x2a\\xb3\\x12\\x4d\\x95\\xae\\xb4\\x34\\x57\\xa5\\x49\\x92\\x1b\\xc5\\xd7\\xb8\\x1f\\xb9\\x2a\\xd0\\x82\\x70\\x32\\x5a\\x1a\\xe7\\xf8\\xb1\\x71\\xf0\\x9e\\xfc\\xea\\xca\\x00\\x78\\x5f\\x71\\x55\\x57\\xc4\\xbe\\x93\\x64\\xad\\xb7\\x00\\xb8\\x4c\\xfe\\x3d\\x79\\x1d\\xc5\\xa8\\xe9\\x59\\x0d\\xb5\\xae\\x19\\x10\\x3b\\xe4\\xa5\\x67\\xbc\\x6f\\xe1\\xca\\x8b\\xe2\\x09\\x54\\x5a\\x5f\\x59\\xd5\\xd0\\x50\\x55\\x59\\x4f\\xd3\\xb3\\x0f\\xa0\\x8f\\x8a\\x1a\\x1a\\x8a\\x8a\\x1a\\x1a\\xd8\\x9e\\x79\\x20\\x78\\x9e\\xbb\\x24\\x24\\xd1\\x76\\xc5\\x50\\x7e\\xa1\\x51\\x02\\xa4\\x84\\xfc\\x1e\\xf1\\x82\\x84\\xbc\\x26\\x5f\\x9a\\xd7\\x65\\xd7\\x24\\x4c\\xda\\x3d\\x69\\xf6\\x8e\\x56\\x83\\x90\\x74\\x69\\x5e\\x6d\\x4f\\x61\\x42\\xf4\\xc4\\x58\\xd5\\x7d\\xfa\\x8c\\xfc\\xf9\\xf7\\x2f\\x27\\xb7\\x43\\x30\\x08\\x2f\\x00\\x70\\x59\\xfc\\x09\\x2c\\x40\\x3c\\x3d\\xb3\\xaf\\x03\\x20\\x5e\\xfa\\x9c\\xfc\\x85\\xd4\\xf6\\x93\\x00\\x64\\x2a\\x19\\x54\\x72\\x2f\\x23\\x20\\x1c\\x8d\\x1c\\x18\\x0a\\x2d\\x49\\xb7\\x03\\x80\\xd4\\x64\\xcd\\x44\\x76\\x41\\x5e\\x50\\x27\\xda\\xc3\\x82\\x49\\x1a\\xad\\xb2\\xcd\\xc8\\x6a\\x44\\x47\\xbe\\x44\\x7f\\xe8\\x3d\\xb6\\xa5\\xae\\x6e\\xcb\\xb1\\xde\\xcf\\x3f\\xcf\\x63\\x5e\\xf7\\x79\\x9f\\xa3\\x3b\\xc5\\x65\\x64\\x10\\x15\\xce\\xdf\\x3f\\xa3\\xe7\\xa6\\x39\\x05\\xa7\\x50\\x52\\x5e\\x75\\x8e\\xa3\\xce\\x9d\\x86\\x98\\xee\\xdf\\x28\\x36\\x93\\x55\\xa4\\x11\\xec\\x21\\x7d\\x32\\x5e\\x92\\x4c\\x75\\xf1\\x6e\\x14\\x9f\\x98\\xa8\\x4b\\x2c\\x60\\xfe\\x17\\xd6\\x3c\\xce\\x6a\\x45\\x46\\xc4\\x49\\x62\\xaa\\xa0\\xb2\\x7a\\xbd\\xbf\\x9a\\xbc\\x66\\xb2\\x7b\\xe2\\x9c\\x2f\\xbf\\x12\\x6f\\xfb\\x6d\\x52\\x89\\x43\\x25\\x10\\x41\\x1d\\x1d\\xe7\\x49\\x2c\\x9f\\xdd\\xe8\\xd3\\xae\\x15\\xbf\\xf9\\x16\\x0d\\x3e\\x37\\xde\\x98\\xeb\\xcd\\x1c\\x9f\\x33\\x81\\x4b\\xad\\x21\\x8d\\xbe\\x8e\\xd9\\xd9\\xef\\xa0\\x77\\x46\\xbc\\xa2\\xcb\\xdf\\x40\\x10\\x42\\xaf\\xa8\\x04\\xcc\\xb9\\xda\\x97\\x94\\x7c\\x3b\\xf2\\x0d\\x47\\xd0\\x8d\\x7a\\x9f\\x2d\\x89\\xc3\\xcf\\xa9\\x43\\x3e\\x23\\x40\\xb6\\xd1\\xdc\\x5b\\x76\\x50\\x0f\\xdb\\x0c\\x1c\\xe5\\x8f\\x52\\xd7\\x0b\\x48\\xc4\\xb5\\x57\\x83\\x7c\\xed\\x75\\xf4\\xe6\\x32\\xda\\x27\\xa2\\x9f\\x7f\\x87\\x60\\xc7\\xda\\xaa\\xe9\\xde\\x24\\x21\\x36\\x55\\x2b\\x5e\\xd2\\x25\\x8f\\xe7\\x36\\xad\\x3a\\x73\\x6c\\xff\\xce\\xf4\\xf2\\xb9\\x35\\xc3\\x78\\xea\\xc8\\x63\\xfc\\x89\\xdf\\xbf\\xb9\\xf1\\x90\\x33\\xa1\\xa6\\x67\\x45\\xd9\\xda\\xe4\\xd2\\x52\\x4f\\x5c\\x6a\\x7c\\x6d\\x43\\xb5\\x66\\xd5\\xca\\x6b\\x7e\\xb5\\x7a\\xb9\\x7b\\x6a\\xa9\\x41\\xa2\\xcf\\xfd\\x00\\xe4\\x14\\xf5\\x67\\xb2\\x06\\x4c\\xd1\\x72\\x06\\x30\\x1a\\x24\\x65\\x2e\\x4b\\xfd\\xc5\\x87\\x85\\xd5\\x63\\x97\\xa4\\x94\\x90\\x28\\xd4\\xee\\x7c\\xf3\\xc5\\x8b\\x2b\\xd0\\x9d\\x48\\x2b\\x16\\xa2\\x4f\\xc5\\x3f\\xe3\\x35\\x23\\x37\\xb3\\x3b\\x86\\x23\\x95\\x23\\x13\\x01\\xc3\\x9e\\xe0\\x39\\xb2\\x96\\x7f\\x0f\\x92\\xc1\\x0c\\xea\\xe1\\xac\\x34\\x8d\\x3c\\x7f\\xc3\\x22\\xf3\\xb0\\x89\\x17\\x31\\x9d\\xf7\\xe0\\xb2\\x74\\x67\\xa5\\x29\\xa3\\xb2\\xac\\x50\\x93\\xaa\\xab\\x6e\\xeb\\xc9\\x6d\\xb9\\x61\\xbe\\x5f\\x7c\\x06\\xd5\\x8c\\x4e\\xf0\\x11\\x57\\x51\\x43\\x8e\\x46\\x35\\x6e\\x02\\xff\\x48\\x4c\\x52\\x6c\\x54\\xce\\xcc\\xdb\\x96\\x60\\x55\\xd8\\x8c\\x47\\xf0\\x40\\xf0\\x1c\\xd9\\x2e\\x00\\x24\\x4b\\x3a\\x2e\\x1d\\x7b\\x03\\x77\\x65\\xbd\\xf1\\x86\\x07\\xb0\\x27\\x23\\xd3\\x3b\\xc9\\x9a\\x59\\x1d\\xf0\\x6a\\x52\\x75\\xb5\\x1d\\x33\\x1d\\xed\\xfb\\x16\\x97\\x26\\x8b\\x2f\\x0b\\x70\\x69\\xa0\\xa4\\xc9\\xa1\\x51\\x8f\\x1b\\xcf\\xea\\xb0\\xcf\\xba\\x73\\x19\\x77\\x96\\xce\\xab\\x57\\x01\\x38\\x51\\xf6\\xc7\\x8a\\xe2\\x91\\xd3\\xee\\x33\\x50\\x7b\\x86\\xc6\\xa0\\x35\\xfc\\x1d\\xa5\\x88\\x67\\x70\\xc6\\x44\\x34\\xfe\\xf2\\xa7\\x67\\xb9\\x57\\xfa\\xdf\\x7d\\xe5\\x52\\xe2\\x59\\xc0\\x70\\x6d\\xf0\\x1e\\xb2\\x92\\x9c\\x83\\x0a\\x68\\x03\\xf5\\xf0\\xa4\\x40\\xa1\\x4d\\x1a\\x73\\x8b\\x72\\xed\\x82\\xc6\\x54\\x60\\xc7\\x2e\\x3a\\xdd\\x68\\x14\\x1f\\x2a\\xca\\x5a\\x2d\\x4a\\x70\\xb8\\x44\\x9d\\x96\\x0a\\x1b\\x9e\\x90\\x46\\xc5\\x3d\\xa5\\x8e\\xe6\\xf4\\x73\\x4a\\xab\\x17\\xd5\\x1a\\x8b\\xe6\\xdf\\xd8\\xde\\x11\\x7d\\xdd\\xb2\\x9e\\x5d\\xd3\\x72\\x30\\xc2\\x9e\\x39\\xbb\\x3b\\x53\\x8b\\xbd\\xf9\\x71\\x85\\xc9\\x15\\xb5\\x93\\xf4\\xb7\\xbe\\x79\\x7d\\x25\\x87\\xb8\\xda\\x9b\\x7e\\xbd\\xbb\\xfb\\xfe\\xb5\\x55\\xb1\\x1a\\xf1\\xf6\\x74\\x97\\x39\\x45\\x28\\xca\\x6f\\x2d\\xd6\\x4f\\xc8\\xc8\\x47\\x42\\x4c\\x4e\\x92\\xb1\\xd0\\x31\\x79\\x69\\x79\\xd3\\xc6\\x29\\x8e\\xa5\\x6b\\xaa\\xb7\\xff\\x74\\x4d\\xe9\\xc0\\x89\\x8d\\xe5\\x51\\xb1\\xda\\x09\\x07\\xe2\\xd3\\xe2\\xa3\\x16\\x3c\\xfd\\xd5\\x7e\\xfb\\xfe\\x8b\\x27\\xe6\\xb9\\x97\\x1c\\xee\\x17\\x07\\xf3\\x16\\x59\\x62\\xee\\x9d\\x98\\x92\\xa9\\xf9\\xa3\\xc6\\x5c\\xee\\xd0\\xfb\\xb2\\x75\\x72\\x5c\\x8a\\xe0\\x79\\x72\\x80\\x3f\\x03\\x2e\\xa8\\x02\\xf5\\x70\\x49\\x41\\xaa\\x8a\\xc9\\xc8\\xb2\\xc9\\xf1\\x0a\\x15\\x38\\xf2\\xfe\\x9a\\x36\\x4c\\xf9\\xf5\\x69\\xc8\\x81\\x27\\x4c\\xb3\\xd7\\xed\\x6b\\x9b\\x73\\x7c\\x4b\\x9d\\xce\\xdb\\x5d\\xe9\\xaa\\xcb\\x4b\\xac\\xdd\\xf0\\xc0\\xac\\xd9\\x07\\xd7\\x54\\x7c\\x99\\xe6\\xae\\xb7\\xe7\\x36\\x78\\x32\\x52\\x0a\\x27\\x7b\\x8a\\x67\\x55\\x19\\x4d\\xd5\\xbd\\xfe\\xd4\\x52\\x9f\\x23\\x86\\xab\\x7a\\x5e\\x04\\xbd\\x3f\\x27\\xb9\\x68\\xc5\\xa1\\x45\\x9e\\xc5\\xd3\\x1b\\x74\\xc9\\xf5\\x9d\\xd3\\xed\\x8b\\xee\\xef\\xf3\\x94\\x2d\\xbb\\xad\\xcb\\xd9\\xec\\x4d\\xcf\\x28\\x9a\\x52\\x58\\x30\\xa5\\x2c\\xeb\\xf9\\xf4\\xd2\\x19\\x15\\xfe\\x69\\xfe\\xf4\\xa8\\x89\\x09\\xe3\\x90\\x9c\\x3b\\x77\\x63\\xf0\\x3c\\xd9\\xcf\\x9f\\x81\\x7c\\x10\\x4e\\xc6\\x11\\xa6\\xd7\\xc5\\xc6\\x51\\xb5\\x56\\x89\\x5c\\x12\\xb1\\x6b\\x1b\\x8d\\x9e\\x78\\xf9\\xc8\\x0c\\x2d\\xb9\\xf8\\xbf\\x7f\\x6b\\xde\\xb5\\x69\\xa5\\x47\\xfc\\xf4\\x27\\xaf\\xd4\\xac\\x3f\\x32\\xab\\x79\\xa7\\xbf\\x2e\\xbd\\xdb\\x57\\xd8\\x5e\\x94\\xae\\xaf\\xe8\\x2d\\x5b\\x77\\xd1\\xb4\\xa0\\xb6\\xaa\\xc7\\x97\\xc4\\xbd\\x88\\x10\\xe2\\xf5\\xe5\\xd3\\x8b\\xc5\\x6d\\xba\\x0f\\x5f\\x58\\x76\\x64\\x45\\x51\\x5a\\xf2\\x2b\\x1a\\x7d\\x56\\x59\\x97\\xbb\\x7e\\x61\\x45\\xfa\\x43\\xa8\\xd7\\x50\\x98\\xd7\\xb9\\xbe\\x9e\\xb6\\xe9\\x44\\xf0\\x1c\\xe9\\x22\\x07\\x20\\x1f\\xe6\\x05\\x26\\x64\\x19\\x62\\x26\\x10\\x84\\xf3\\x11\\x47\\x2f\\x6d\\xe8\\xda\\xba\\x03\\x69\\x80\\x30\\x60\\x7a\\x63\\x14\\x30\\x22\\x94\\xc1\\xb2\\xa4\\x9f\\x65\\x5c\\x73\\x6a\\x40\\x3f\\xa6\\x98\\xe3\\xca\\x9a\\x00\\x80\\x5e\\x84\\xac\\xe7\\x9b\\x7b\\x02\\x51\\x79\\x46\\xad\\xc9\\x92\\x25\\x09\\xde\\xe6\\x51\\xdd\\xc9\\xe8\\xf1\\x85\\x6e\\xc3\\x1a\\x35\\x2c\\x4b\\x88\\x8e\\x1b\\x15\\x5d\\x70\\x6e\\x72\\x43\\xbe\\xb5\\xdc\\x9e\\xb4\\x7d\\xa0\\xf3\\x6c\\x4a\\xbd\\xdb\\x59\\x63\\xd7\\x7e\\xfe\\xee\\x3b\\xb5\\x1b\\x97\\xf6\\xda\\xbf\\x6d\\xde\\x3c\\xd5\\x51\\xba\\x74\\xff\\x94\\xea\\x35\\xee\\x3f\\x69\\xf4\\x29\\xf9\\x55\\xd6\\xae\\xba\\x87\\x2e\\xeb\\xb2\\x8c\\x15\\x5d\\x85\\x23\\x09\\xf8\\xfc\\x07\\x1f\\x64\\xfa\\x5a\\x9d\\xe2\\x07\\xe3\\x0a\\x27\\x2f\\xaf\\x9e\\xb9\\x6f\\xb6\\x2b\\x3d\\x99\\xde\\x9f\\xca\\x27\\xb7\\x70\\x4f\\xf3\\x8f\\x60\\x01\\x0e\\xd2\\xbd\\x45\\xfe\\x83\\x05\\x89\\x3b\\x05\\x83\\xf0\\x0f\\x9c\\x41\\x52\\xf0\\x47\\x58\\x80\\x89\\x34\\xbe\\xd8\\x87\\x00\\xe4\\x36\\xfe\\x04\\x68\\x58\\x5e\\x5d\\x9a\\x83\\x1d\\x78\\x04\\x4a\\x38\\xb1\\x52\\x96\\x56\\x5f\\xcd\\xa8\\x01\\x60\\xcc\\x32\\x64\\x26\\x26\\xc4\\xc7\\x81\\x06\\x62\\x0d\\x1a\\x4d\\x94\\x5a\\x67\\x67\\xee\\x4c\\xa1\\x43\\xe4\\x78\\x23\\x3b\\x45\\xce\\xe3\\xac\\x46\\x8d\\xfb\\xf8\\x2f\\x7f\\x89\\x16\\xdc\\xf5\\xe5\\xf1\\xe9\\x08\\x4d\\x3f\\x76\\xfe\\xf6\\x45\\x1f\\x6e\\x98\\x7f\\xc7\\x7c\\x17\\x42\\xae\\x05\\x77\\x2f\\x5a\\xf5\\x21\\xbe\\xe9\\x51\\xbc\\x05\\xcd\\xfb\\xc9\\xf7\\x77\\xf5\\xdf\\xf5\\xfd\\xd3\\xf3\\xf0\\x4d\\xa2\\x17\\xd5\\x6e\\x3b\\xb1\\x7c\\xd5\\x92\\x27\\x77\\xd4\\x21\\xb1\\x0e\\xfe\\x7f\\xd2\\x46\\x24\\xed\\xe4\\x64\\x2e\\xcd\\x67\\xbd\\x28\\x10\\x3d\\x9a\\xcf\\x9a\\x05\\xc4\\xd4\\x87\\xa5\\xb5\\x56\\xa9\\xca\\x95\\x14\\xbc\\x75\\x34\\x2c\\x40\\x19\\x96\\x26\\xd9\\xd8\\xcc\\xd7\\x75\\xa3\\x99\\xaf\\xcb\\x70\\x73\\x4f\\x60\\xfc\\x68\\xf2\\x6b\\xf5\\xbf\\x4d\\x7e\\xfd\\xa4\\xf8\\xe3\\x95\\xc9\\xaf\\x8f\\x1d\\xfb\\x12\\x09\\xe4\\xac\\xf8\\xc7\\xab\\x24\\xbf\\x3e\\xfb\\xe8\\x2d\\xb7\\xd0\\x7e\\x14\\x00\\x90\\x03\\x34\\xf6\\xa2\\x2d\\x60\\x51\\xa1\\xd0\\x41\\x8a\\x40\\x2f\\x18\\x02\\xcf\\x97\\x86\\xdf\\x59\\xd4\\x68\\x62\\xd5\\x6a\\xf9\\x9e\\x3a\\x25\\x2f\\xbd\\x06\\xec\\xe6\\x1e\\x7f\\xeb\\xcb\\x0f\\x3f\\x14\\x6b\\xc8\\x52\\xb1\\xf2\\x2d\\x2e\\xe1\\xf2\\x79\\x2e\\xe1\\x51\\x94\\x7b\\xf6\\xac\\xf8\\x3e\\xa3\\xd5\\x75\\xc1\\x73\\xa4\\x9c\\x0f\\x80\\x15\\xb6\\x06\\xa2\\xe3\\x11\\xe1\\x12\\x10\\x4f\\x24\\x5a\\xc5\\xb6\\x75\\x07\\xac\\xe3\\x50\\x34\\x44\\xaf\\x51\\x21\\x2c\\x20\\x7a\\xc0\\xaf\\xa6\\x87\\xb8\\x51\\x08\\xa0\\xa2\\x09\\x08\\xa1\\x8b\\xae\\x96\\x6f\\x4e\\xfd\\xcf\\x20\\xe9\\xf2\\x4c\\x00\\x00\\x2b\\x58\\x2d\\x66\\x8d\\x46\\x4b\\x93\\x1e\\x69\\xe8\\x9d\\x0e\\x69\\xcf\\x89\\xc8\\x64\\xac\\x53\\x32\\x19\\x7b\\xdc\\x1e\\x83\\xc7\\xa0\\xc1\\x9b\\xd1\\xbd\\xe2\\xe2\\x8f\\x3e\\x4a\\x2f\\x9c\\x94\\x93\\x59\\x5d\\xe1\\x89\\x4b\\x4d\\x69\\xe8\\x9a\\xe5\\x68\\xbf\\x61\\xae\\xef\\xd7\\xbf\\x16\\x7f\\x40\\x6a\\x3e\\x20\\xfe\\xf8\\x93\\x63\\x8f\\x3e\\x5b\\xd6\\xe6\\x8c\\x57\\x45\\x8d\\xe3\\x1f\\x9a\\x98\\x1c\\x1b\\xe5\\x98\\x7d\\x67\\xdf\\x99\\x47\\x8f\\xfd\\x04\\x09\\xcc\\x27\\xb3\\x10\\x80\\x9c\\x50\\x65\\x61\\x0b\\x18\\x01\\x90\\x0a\\xaa\\x82\\x3b\\xd1\\x4c\\x88\\x7a\\x1a\\xa3\\xe7\\xd0\\x4c\\xd9\\x67\\x9c\\xc1\\x64\\x2a\\x30\\x03\\x70\\x03\\xea\\x91\\x61\\x7a\\x22\\x60\\x1a\\x15\\x98\\x03\\x70\\x33\\x9a\\x25\\xc3\\xcc\\x8a\\x80\\xe9\\x55\\x60\\x8e\\xc0\\x7e\\x34\\x47\\x86\\x99\\x13\\x01\\x63\\x53\\x60\\xfa\\x00\\x31\\x3c\\xf8\\x4a\\x3c\\xfb\\x14\\x98\\xc3\\x10\\x8b\\xde\\x91\\x61\\xde\\x09\\x87\\x51\\x97\\x87\\x60\\xd0\\x1b\\xc1\\x7f\\xa0\\xc7\\x25\\x18\\xee\\x39\\xf4\\xb8\\x0c\\x33\\x43\\xac\\x21\\xcb\\xf9\\x57\\xb1\\x05\\xcc\\x20\\xcd\\xee\\x0d\\x5e\\xcc\\xe2\\x48\\x61\\xe6\\x5b\\x7f\\x04\\x80\\xb4\\xa9\\xd2\\xb1\\x05\\xac\\x32\\x6d\\x76\\xa1\\x69\\x10\\xf5\\x34\\x42\\xcf\\xa1\\x69\\x32\\x0e\\x06\\x93\\xa2\\xc0\\x0c\\xc0\\x3e\\xd4\\x29\\xc3\\x74\\x46\\xc0\\xd4\\x2a\\x30\\x07\\xe0\\x76\\xd4\\x2d\\xc3\\x74\\x47\\xc0\\x98\\x14\\x98\\x3e\\x10\\x18\\x0c\\x1e\\x85\\x19\\x06\\x20\\x3a\\x3a\\x56\\x76\\xb9\\x3d\\x2d\\x74\\xac\\x50\\xd8\\x58\\x31\\x98\\x4c\\x05\\x66\\x00\\x3a\\xe9\\x58\\xa1\\xb0\\xb1\\x62\\x30\\x8d\\x0a\\xcc\\x01\\x98\\x41\\x69\\x8c\\xc2\\xc6\\x8a\\xc1\\xd8\\x14\\x98\\xbe\\xe0\\x5b\\x0c\\x26\\x6c\\x1c\\xae\\x03\\x20\\xd5\\x74\\x3c\\x9d\\xf2\\x78\\xae\\xa4\\xe3\\x89\\xc2\\xc6\\x73\\x46\\xf0\\x3c\\x59\\xa5\\xf2\\x61\\x0b\\xb8\\xe4\\x36\\x6f\\x46\\xab\\xe5\\x31\\x5f\\x1d\\x01\\x53\\xa8\\xc0\\x0c\\xc0\\x35\\xa8\\x5f\\x86\\xe9\\x8f\\x80\\x99\\xad\\xc0\\x1c\\x80\\x1b\\xd1\\x1a\\x19\\x66\\x4d\\x04\\xcc\\x80\\x02\\x73\\x04\\xf6\\xa0\\x75\\x32\\xcc\\xba\\x08\\x98\\x72\\x05\\xa6\\x2f\\x78\\x99\\xe1\\xc1\\xa3\\x78\\xae\\x0d\\x9e\\x27\\x8d\\x74\\x4c\\x7d\\x72\\x9b\\x07\\xc7\\x8c\\x29\\x83\\xd1\\x29\\x30\\x03\\x70\\x07\\x6a\\x97\\x61\\xda\\x23\\x60\\xaa\\x14\\x98\\x03\\x70\\x3f\\x9a\\x2a\\xc3\\x4c\\x8d\\x80\\x31\\x28\\x30\\x7d\\x10\\xc3\\x60\\xf0\\x28\\x8c\\x03\\x80\\x1c\\xa5\\x63\\x5a\\x22\\xd7\\xb5\\x65\\xcc\\x98\\xee\\x0e\\x9e\\x27\\x55\\xfc\\x9f\\xb0\\x05\\xaa\\xe5\\x36\\x2f\\x83\\x14\\x50\\x3f\\x8d\\xd1\\x89\\x14\\xea\\x4c\\xad\\xc0\\x7c\\x28\\xc3\\x08\\x30\\xb0\\x46\\xc7\\x20\\x74\\x6c\\xbe\\xd3\\x72\\x41\\xad\\x94\\x1f\\xd8\\x94\\xca\\xca\\x53\\xc3\\xcb\\xd3\\x94\\xf2\\x23\\x9b\\x33\\x58\\x79\\x46\\x58\\x39\\xff\\x77\\xa5\\xbc\\xef\\x73\\xfa\\x3d\\x8e\\xfc\\xbe\\x51\\x69\\xe3\\xe1\\xe0\\x65\\xd8\\xcf\\x20\\xf6\\x47\\xb4\\x51\\xb8\\x1c\\xc2\\x81\\xde\\xf8\\xeb\\x52\\x09\\x82\\x3b\\xb1\\x94\\xe1\\xd8\\x29\\xd6\\x90\\x62\\xd2\\x8a\\x2d\\x50\\xcb\\xd6\\x6c\\x65\\xe4\\x9a\\xdd\\x1c\\x3c\\x4f\\xba\\xf9\\x8f\\xb1\\x45\\xd2\\x5c\\x65\\x3a\\x84\\xf5\\x82\\xd6\\xc1\\x60\\xfe\\x28\\xc3\\x48\\x74\\x48\\x62\\x10\\x49\\x61\\x38\\x84\\x28\\xa5\\xfc\\xc0\\xa6\\x34\\x56\\x9e\\x16\\x5e\\xc7\\x27\\x4a\\x79\\xdf\\xe7\\x69\\xac\\x17\\x72\\xf9\\x6b\\x00\\x64\\x3a\\x7f\\x16\\x5b\\x60\\x2f\\xbd\\xe0\\x5b\\xf5\\x20\\xe3\\xb5\\xec\\xfd\\x19\\xf6\\x9e\\x8e\\xe3\\x63\\x41\\x91\\x8d\\x23\\x0b\\x43\\xa7\\xc0\\x7c\\xa1\\xc0\\x1c\\x80\\x9f\\x00\\x62\\x3d\\x44\\xa1\\xf6\\x33\\x98\\x5f\\xcb\\x30\\x02\\xf4\\x99\\x29\\x04\\xa6\\x10\\xc1\\x20\\xd5\\xff\\x02\\x74\\x9c\\xda\\xd8\\x38\\xad\\xcf\\x60\\x18\\xe4\\x71\\x5a\\x19\\x3c\\x47\\x66\\xd2\\xb9\\xd2\\x2e\\xd3\\x68\\xcd\\x98\\xb9\\xc2\\x60\\x3e\\x94\\x61\\x04\\x18\\xd8\\x14\\x39\\x57\\x68\\x39\\x9d\\x2b\\xed\\x72\\x3b\\x77\\x8e\\xa1\\x33\\x83\\x49\\x53\\x60\\x8e\\xc0\\x35\\x10\\x36\\x63\\xc2\\xea\\xf9\\xbb\\x52\\x4f\\xdf\\x37\\x91\\x73\\xe6\\x68\\xf0\\x1c\\xf1\\xf1\\x6f\\x60\\x0b\\x4c\\x93\\xdb\\xba\\x16\\x78\\xd6\\x1b\\x3e\\x84\\x83\\xc1\\xbc\\x2e\\xc3\\x08\\x30\\xb0\\x25\\x72\\x4e\\xb0\\xf2\\xaf\\x15\\x1c\\x07\\xe0\\x5a\\x10\\x18\\x84\\x10\\x89\\xe3\\x5d\\x05\\x47\\xdf\\x77\\x02\\xa3\\xa9\\xc0\\x70\\x94\\x88\\x4d\\xe4\\x51\\x5a\\xc7\\x0c\\x79\\xec\\x6e\\x81\\xb0\\x5a\\x28\\x0e\\x06\\xf3\\xae\\x0c\\x23\\x40\\x5f\\x74\\x24\\x0e\\xba\\x27\\x09\\xdf\\x29\\xfb\\x56\\x3f\\x44\\xa1\\x49\\x32\\x7f\\x9a\\x14\\xb1\\x8e\\x9f\\x51\\xd6\\x50\\xff\\xb7\\x84\\x51\\x8c\\x84\\xe1\\x50\\xd5\\x2b\\x38\\x0e\\x82\\x1a\\x1d\\x92\\x71\\x1c\\x0a\\xc7\\x21\\x08\\x0a\\x8e\\x83\\xdf\\xcc\\x62\\x38\\x66\\xb1\\x58\\x87\\x85\\x62\\x07\\x39\\x41\\xe3\\xb9\\x66\\x42\\x4d\\xa0\\x32\\x13\\x09\\xbc\\x0e\\x01\\x37\\x0e\\x21\\x18\\x4f\\x6f\\xa3\\xca\\x41\\x8e\\xe6\\xa9\\x90\\x24\\x54\\x91\\x50\\xb8\\x06\\x2a\\xcf\\x36\\xe0\\x66\\x80\\x8c\\x74\\x48\\x83\\x34\\x4d\\x92\\xd9\\xac\\x51\\xab\\x93\\xed\\x08\\x19\\x05\\xd9\\x4e\\xaf\\x58\\x9d\\x0a\\xbd\\x3e\\xce\\xc0\\x19\\x11\\x67\\xe0\\xf0\\x9f\\xd0\\xdb\\x65\\x53\\x5b\\xf5\\xd9\\x99\\x8e\\x89\\xd9\\x69\\xdd\\xb5\\xb9\\xcd\\x7e\\x43\\xe7\\xe4\\x99\\xa2\\x7f\\xc1\\x0f\\xe8\\xf7\\x01\\xd4\\xfa\\x10\\x7f\\xe2\\xc7\\x36\\xeb\\xbc\\xd2\\xcc\\xec\\x58\\xd5\\xe0\\xc4\\xf4\\x94\\x82\\x26\\x57\\xd5\\xae\\x42\\x54\\x26\\x3e\\xc9\\x9f\\xb8\\xbc\\x12\\x97\\xd0\\x7b\\x20\\x62\\x07\\xa9\\x22\\xad\\x50\\x0e\\x2d\\xd0\\x1d\\x98\\x5a\\x83\\x54\\xea\\x6c\\x8c\\x41\\xe5\\x46\\x3c\\x14\\x22\\x81\\x27\\x8d\\xc0\\x61\\x84\\x39\\x1a\\x2e\\x4f\\xad\\x42\\xea\\xf9\\x80\\x31\\x0d\\x9c\\x50\\x47\\x73\\xac\\xb1\\xa3\\x88\\xa6\\x50\\xac\\xb9\\x06\\xa1\\x39\\x50\\x51\\x57\\x5b\\xd1\\x12\\x68\\x31\\xe7\\x9b\\x12\\x8c\\x16\\x4b\\xb4\\x3a\\xd5\\x6e\\xb6\\x84\\x6e\\x4e\\x15\\x9a\\xdc\\xee\\x48\\xaf\\xf5\\x90\\x9a\\x7e\\xb5\\x9e\\x5a\\x65\\xd5\\x9d\\x9a\\x3c\\xb9\\xfa\\x89\\xea\\xe4\\x8a\\x96\\x1e\\x77\\xd7\\x4d\\xf3\\xbd\\x88\\xfb\\xea\\xa9\\xb5\\x4b\\x9d\\xf5\\xce\\xa4\\x2f\\x4b\\xd6\\x3c\\xb4\\x74\\xce\\x83\\x1b\\x6b\\xb4\\x09\\x8e\\x2b\\x68\\xd1\\xf2\\x6e\\x5e\\x7b\\x65\\x7e\\xcc\\x3d\\xb7\\xdd\\x94\\xe8\\xa8\\x1d\\x6f\\xf1\\xa5\\x38\\xb2\\x12\\x5c\\xd3\\xd6\\xd7\\x3e\\xf9\\x5c\\x5d\\xd7\\x42\\x5d\\xb6\\x37\\xb3\\x62\\xc3\\xac\\xa2\\xfc\\x59\\x37\\xcd\\x12\\x33\\xea\\xd6\\xd9\\x35\\x91\\x94\\xaa\\xd8\\xf9\\xbe\\xce\\xec\\x4c\\x7e\\xa3\\x77\\x9a\\xc1\\x6f\\x4b\\x02\\xb6\\xc7\\x9d\\x23\\xcb\\xe9\\xde\\x6d\\x96\\xe7\\xea\\x30\\x9a\\x2f\\xef\\x17\\xf3\\xe5\\x39\\xb2\\x33\\x78\\x8e\\x14\\xd3\\xf5\\x5d\\x1b\\x92\\x5b\\x40\\xc7\\xe6\\xb3\\x2e\\x34\\x9f\\x19\\x9e\\x4e\\x05\\xcf\\x01\\xf8\\x39\\x5a\\x2c\\xe3\\x59\\x1c\\x8e\\x87\\xf2\\x81\\xda\\x90\\x6c\\x43\\xf9\\x00\\x0a\\xe3\\x03\\x0c\\x4f\\xb9\\x82\\xe7\\x10\\x14\\xa3\\x95\\x32\\x9e\\x95\\x11\\xed\\xf9\\x4a\\xe1\\xeb\\x87\\x34\\x46\\x86\\xc5\\xc8\\xe6\\xfd\\x95\\x6d\\x19\\x02\\xef\\xbf\\x69\\x8b\\x00\\x43\\x13\\xc2\\x5a\\x12\\x0c\\xc2\\x1e\\x00\\xb2\\x96\\xca\\x61\\x16\\x86\\x23\\xf8\\x12\\x95\\xb1\\x70\\x98\\x1c\\xb6\\x25\\x78\\x5e\\x98\\x20\\x24\\x81\\x05\\x26\\xb1\\x88\\x2c\\x9c\\x16\\x14\\xf9\\x4c\\xb8\\xa8\\xc8\\x67\\xfd\\x10\\x83\\x2a\\xe5\\xfa\\x2b\\xe5\\x6f\\xd9\\xbe\\x30\\xac\\xec\\x0b\\xfd\\xdf\\xf2\\x6c\\xdd\\xf1\\xe1\\xf2\\x64\\xb5\\x82\\xe3\\x20\\x4c\\x40\\xf7\\xc9\\x38\\xee\\x0b\\xc7\\x21\\xa8\\x14\\x1c\\x07\\xbf\\xe9\\x65\\x38\\x7a\\xc3\\x71\\xe4\\x2b\\x38\\x0e\\x81\\x66\\x8c\\xcc\\xc5\\xda\\xf1\\xb5\\x82\\xe3\\xd0\\x0f\\x26\\x86\\xc3\\x24\\x01\\x20\\x38\\x22\\x76\\x90\\x36\\x1a\\xdb\\xa9\\x32\\x50\\x1e\\x83\\x38\\x3c\\x11\\x11\\x0e\\x37\\x82\\x1a\\x00\\xa9\\xa9\\x1a\\x48\\xd3\\xbf\\x50\\x75\\x0a\\xf7\\xf0\\x92\\x8e\\x27\\xa9\\x85\\x74\\x35\\x35\\xd0\\x0c\\x13\\x3a\\xb3\\x59\\xa3\\x09\\xa9\\x7a\\x86\\xab\\xae\\x09\\x5f\\xc8\\x6d\\xfa\\xb3\\x91\\x47\\xf0\\x0b\\x8b\\xae\\x98\\xf2\\x35\\x95\\x23\\x77\\x71\\xc7\\x47\\x1a\\xf1\\x34\\x3c\\x28\\xfa\\xce\\x44\\x4e\\xe9\\xd2\\x0d\\x6e\\xfe\\xc4\\x59\\x71\\xa1\\xb4\\xee\\x37\\x8b\\x0b\\x49\\x37\\x69\\x85\\x02\\x69\\xe5\\x07\\x1a\\x0b\\x10\\x4d\\x11\\x84\\x27\\x20\\x04\\x5c\\x23\\xf0\\x04\\x13\\x1e\\xaf\\x02\\x15\\x10\\x5e\\x45\\xe6\\xaa\\x91\\x20\\x50\\x0f\\xc1\\xba\\x26\\xc0\\xb8\\xb6\\x49\\xd2\\xe8\\x66\\xb2\\x38\\x33\\x85\\x6e\\x7f\\x91\\xbb\\xbc\\xb0\\xdc\\xa4\\xb5\\xe9\\xcc\\xd9\\x51\\xea\\x14\\xbb\\x59\\x10\\x54\\x57\\x6b\\x77\\x78\\x62\\x3f\\xad\\x81\\x5d\\xe7\\x43\\xa1\\xa0\\xdb\\xa4\\x4e\\xbf\\xa2\\xf9\\x8a\\xbe\\xe4\\x39\\x56\\x0e\\x5f\\x53\\x37\\xe5\\xa6\\x9f\\x2d\\x5a\\xff\\xcc\\xa6\\xf2\\x91\\x38\\xa1\\xa0\\x7d\\x45\\xe5\\x8c\\x7b\\x9d\\xe2\\xd3\\x05\\x5d\\x35\\xf9\\xd1\\xe8\\x12\\x97\\x59\\x3a\\xe3\\x39\\x67\\x77\\x7a\\x64\\x2f\\x5d\\xf3\\x1d\\xaa\\xa9\\x7b\\x9f\\x5b\\x6a\\xbb\\xe6\\xcd\\xdb\\x5a\\x27\\xef\\x3f\\xb3\\x6e\\x61\\xc5\\xf2\\xc9\\x8e\\xfa\\x0a\\x3c\\xc3\\x54\\x3b\\xbf\\x22\\xce\\xd9\\x33\\x29\\xe7\\x2a\\xba\\xc3\\x10\\x4c\\x18\\xa3\\x3b\\x5c\\x29\\xaf\\x0c\\x7d\\x13\\x29\\xaf\\xcc\\x0c\\x9e\\x27\\x8b\\xe8\\xda\\xb1\\xc9\\x6b\\xf4\\xe0\\x98\\xb5\\xb3\\x55\\xec\\x22\\x1e\\xba\\x76\\x1a\\x98\\xcc\\xd3\\x1f\\x29\\xfb\\x31\\x1c\\x1d\\x0a\\x8e\\x83\\x90\\x84\\x1e\\x91\\x71\\x3c\\x12\\x81\\x43\\x50\\x70\\x1c\\xfc\\x34\\x6c\\xdf\\x51\\x70\\x94\\x2b\\x38\\x0e\\x41\\xda\\x18\\x3e\\x40\\x71\\x50\\x3e\\xc0\\x70\\x1c\\xfa\\xdc\\xc8\\x70\\xc8\\x7c\\x60\\xa6\\x98\\x4a\\x16\\x51\\x19\\x8a\\xe2\\x40\\xb7\\xc2\\xbb\\xe2\\x2b\\x0c\\x87\\xf8\\x4a\\x44\\x3b\\x8e\\x87\\x70\\xa0\\x03\\x64\\x0b\\xc3\\xb1\\x85\\xe1\\xb8\\x16\\x80\\xd4\\x50\\x9a\\xe6\\xc8\\xf4\\x58\\x37\\x86\\xa6\\xf7\\x53\\xdd\\x66\\x3f\\xb6\\x40\\xa3\\x0c\\xd3\\x8c\\x8e\\xc8\\x30\\x47\\x22\\x74\\xa4\\x5e\\x45\\x47\\x3a\\x02\\x33\\xc7\\xac\\x45\\x2a\\xab\\x09\\x58\\x91\\xe7\\x8e\\xc0\\x49\\x20\\x8c\\x2b\\x91\\x10\\x7f\\xa4\\x78\\xa8\\x5c\\xc0\\xf0\\xf4\\x07\\x7f\\x47\\xe5\\x02\\x14\\x26\\x17\\x30\\x99\\xef\\x7e\\x45\\xe6\\xeb\\x77\\x9c\\x93\\x25\\xc7\\x73\\xca\\xfd\\x4a\\xd6\\x9e\\x7a\\x05\\xcf\\xc1\\xe0\\x6f\\xa9\\x6c\\x80\\xc2\\x64\\x03\\x86\\xe7\\xbc\\x82\\xe7\\x60\\x6e\\x35\\x6b\\x4d\\x35\\xe3\\x0d\\xc3\\x62\\x07\\xd1\\x51\\xde\\x50\\x12\\x28\\x8a\\x45\\x84\\xd3\\x50\\xfb\\x87\\x3a\\x94\\x0e\\xad\\x94\\x06\\xdc\\xe5\\x7a\\x04\\x44\\x0d\\x8d\\xb2\\x25\\xa3\\x81\\x6f\\x96\\x99\\x02\\xe3\\x0a\\x21\\x2f\\xfc\\xab\\xf2\\x05\\x8f\\x41\\x63\\x18\\xe6\\xe6\\x89\\xaf\\xa2\\x12\\xf1\\xf3\\x31\\x7c\\x41\\xdc\\x8f\\x0a\\xc5\\x5f\\xf1\\x27\\x5e\\xbb\\xf4\\xe1\\xd9\\x31\\x6c\\xe1\\x2c\\x31\\x02\\x86\\xb7\\xc4\\x0e\\xd2\\xce\\xbf\\x47\\x7d\\x1d\\x26\\x05\\xaa\\xc3\\x38\\x58\\x54\\x94\\x1c\\x8b\\x85\\x26\\x62\\x07\\x80\\x0a\\x9a\\x42\\xe8\\x2a\\x4c\\x2c\\x27\\xdb\\x18\\x62\\x63\\xd1\\xb4\\xc1\\xff\\xb2\\xb9\\x57\\x1c\\xcb\\xa1\\x4a\\xf1\\xb1\\xb1\\x0d\\x7f\\x1a\\xb5\\x45\\x1e\\xd7\\x5d\\xde\\x77\\x95\\x1e\\xe0\\x27\\x46\\xcf\\x33\\x94\\x31\\x2b\\x54\\xc6\\xec\\x50\\xf0\\xbf\\xd1\\x42\\x79\\xcc\\x16\\xca\\x63\\xb6\\x38\\x78\\x9e\\x8f\\xa5\\xeb\\x26\\x97\\xcd\\x45\\xf4\\xce\\x18\\x5d\\xf3\\x75\\xb1\\x89\\x98\\xa9\\x4c\\x7f\\x9f\\x3c\\x5f\\xff\\x16\\xfc\\x5a\\x9e\\x21\\x5f\\xcb\\x30\\xb7\\x8b\\x99\\xe4\\x75\\x1a\\x3f\\xdb\\x21\\xaf\\x9d\\x17\\xc5\\xd7\\xe4\\xb5\\xf3\\x9a\\x0c\\x73\\x40\\xd4\\x93\\x9b\\x05\\xc0\\x16\\x68\\x91\\x61\\x6e\\x14\\x5f\\x97\\x61\\x5e\\x97\\x61\\x1e\\x07\\x20\\x1d\\x2a\\x69\\x4e\\xe7\\x31\\xd9\\x21\\x58\\x84\\x4a\\xe5\\xf6\\x94\\x86\\xcf\\x33\\xd5\\x42\\x6c\\x81\\x56\\x59\\xbe\\x38\\x3e\\x66\\x2e\\x3e\\x2e\\xda\\x49\\x07\\x6d\\x4f\\x9e\\x5c\\xd7\\x69\\xf1\\x3d\\xb9\\xae\\xf7\\x42\\x78\\xc4\\x5c\\x32\\x9d\\xb6\\xa7\\x55\\x86\\xf9\\x5f\\xf1\\x7d\\x19\\xe6\\xfd\\xf0\\xf6\\xf0\\x4f\\x2b\\x78\\xfa\\x10\\x04\\xef\\x95\\xfb\\x7e\\x6f\\x58\\x7b\\xfe\\x21\\xf0\\x10\\xc2\\xd3\\x87\\x51\\xf0\\x73\\x19\\xe6\\xf3\\x08\\x3c\\x4a\\x7b\\xe0\\x10\\xec\\x19\\x91\\xeb\\x1a\\x79\\x3f\\x0c\\xcf\\x4d\\x02\\x84\\xf0\\xc0\\x21\\x74\\xdf\\xc8\\xc7\\x32\\xcc\\xc7\\x11\\x76\\x91\\x4c\\xc5\\x2e\\x32\\x00\\x8b\\xc7\\xe8\\xeb\\x54\\x47\\xa3\\xf2\\x17\\xd3\\xd1\\x06\\xfa\\xc3\\xa4\\x2f\\x09\\x87\\x68\\x25\\xd5\\xb4\\x2d\\x4e\\xb9\\xdf\\x0f\\x88\\x6f\\xc9\\xfd\\x7e\\x2b\\x84\\x43\\xb4\\x93\\x00\\xd5\\x85\\xdb\\x64\\x98\\x47\\xc6\\xd0\\x8f\\xb5\\xa5\\x51\\x69\\xcb\\x50\\xf0\\xd3\\x31\\xb6\\x1e\\xa6\\x2f\\xaa\\x95\\xb6\\x0c\\x5d\\x88\\x90\\x9b\\x82\\x37\\xd0\\x72\\x9d\\x52\\x4f\\xdf\\xc8\\x7f\\x05\\x83\\x32\\xed\\x82\\x11\\x76\\x95\\x71\\x8a\\x5d\\xa5\\x1f\\x38\\x34\\x43\\x96\\xad\\x66\\xc8\\x30\\x4c\\xd7\\x7b\\x46\\xd1\\xf5\\xfa\\x2f\\x47\\xea\\x36\\x0c\\xc7\\x2c\\x05\\xc7\\x41\\xc0\\xe8\\x19\\x19\\xc7\\x33\\xe1\\x38\\xe8\\x1e\\xc3\\x70\\x1c\\xbc\\x14\\xb9\\xc7\\x48\\x38\\x6e\\x52\\xcd\\x51\\x70\\x1c\\x85\\x9b\\xc7\\xd8\\x77\\x24\\x1c\\xd7\\xd1\\xfd\\xb2\\x5d\\x86\\xd9\\x0d\\x61\\x5a\\x27\\xe5\\xa5\\xf7\\x02\\x90\\xdb\\x54\\xf1\\xd8\\x22\\x69\\x5c\\x74\\x0c\\x57\\xa1\\x16\\xb9\\x2d\\x2d\\x0c\\x0f\\x72\\x01\\x90\\x06\\x3a\\x86\\x9d\\x6c\\x0c\\xbb\\x22\\xc7\\xf0\\x5e\\xd1\\x4e\\x6e\\xa3\\x63\\x58\\x28\\x8f\\xcf\\x53\\x74\\x7c\\xf0\\xe8\\xf8\\xa0\\x68\\xd1\\x4e\\x1a\\xe8\\x18\\x76\\x32\\x98\\xe0\\x77\\x63\\xc6\\x90\\xb5\\xa5\\x5c\\x69\\xcb\\x50\\xf0\\x2b\\xba\\xfe\\x71\\xd8\\xfa\\xff\\x54\\x6a\\x0b\\x1d\\x43\\xd6\\x96\\xa1\\x0f\\x22\\x65\\xdf\\x85\\xc1\\xcf\\xc9\\x56\\xca\\x67\\x3c\\x8a\\x9d\\xb2\\x5f\\x9e\\x07\\x21\\x1b\\xdb\\xed\\xc1\\x73\\xa4\\x8e\\xf6\\x67\\x2a\\xeb\\xcf\\xaa\\xc8\\xfe\\x30\\x1c\\xb3\\x15\\x1c\\x07\\xe0\\x76\\x4a\\x5b\\x14\\x66\\x83\\xa3\\x38\\x68\\x3b\\x18\\x8e\\x03\\x1b\\xae\\x68\\x87\\xe8\\x27\\x5b\\xe9\\xfe\\xed\\x61\\xf6\\x9b\\xa9\\xdf\\xcb\\x33\\xe9\\x7b\\x65\\x1f\\xbb\\x5d\\xf4\\x93\\x3a\\x4a\\x13\\x86\\x63\\x43\\xde\\x58\\x98\\x85\\xa2\\x2e\\x0c\\x8f\\x44\\xdb\\xb7\\xc4\\x97\\x64\\xba\\xbd\\xa4\\xf0\\x3b\\x5d\\x18\\x1e\\x09\\xe6\\xe1\\x31\\x30\\x57\\xf6\\x49\\x92\\xaf\\xfe\\x5d\\x9f\\x86\\xbe\\x8a\\xec\\x53\\x81\\x68\\x25\\x07\\xe8\\x38\\x7b\\xe5\\x7a\\x4e\\x8c\\x59\\xab\\xd7\\x89\\x06\\x52\\xce\\x07\\xb0\\x05\\xba\\x64\\x18\\x51\\xfc\\x85\\x0c\\xf3\\x0b\\x19\\xa6\\x40\\xac\\x0f\\xc3\\x23\\xc0\\x06\\x6f\\x98\\x95\\x22\\x18\\x84\\x6e\\xb1\\x81\\x5c\\x4b\\x06\\xb1\\x05\\x3d\\xc5\\xca\\x0b\\x54\\xac\\x5c\\x15\\xe2\\x19\\x55\\xa3\\x75\\x80\\x0a\\x36\\xc0\\xf5\\x94\\x56\\xf4\\xdc\\x84\\xda\\x21\\xbd\\xf2\\xfc\\x09\\x8e\\xb1\\x43\\x5e\\x17\\x3c\\x47\\x9e\\x14\\x5e\\x84\\x50\\xfb\\xfa\\xd0\\x4f\\xe1\\x18\\xc3\\x7e\\x2c\\xb4\\x26\\x98\\xad\\xb2\\x4b\\xb1\\x55\\x1e\\x81\\x03\\x63\\xe4\\x26\\x6a\\x47\\xa1\\xfa\\xcb\\x34\\x19\\xe6\\x3a\\x88\\x62\\x78\\xa2\\x22\\xf0\\x08\\x5f\\x28\\x78\\xfa\\x21\\x11\\x95\\xcb\\x78\\xca\\xc3\\xf1\\xf0\\x87\\x15\\x7b\\x4c\\xbf\\x78\\x41\\x9e\\x03\\x17\\x94\\x39\\xc0\\xda\\x13\\x50\\xf0\\x1c\\x04\\x2d\\xba\\x5b\\xc6\\x73\\x77\\x04\\x9e\\x8b\\x0a\\x9e\\x83\\x23\\xf5\\xac\\x35\\xf5\\xb2\\x2c\\x48\\x71\\x5c\\xaf\\xe0\\x38\\x0c\\xe9\\xe8\\x17\\xb2\\xfd\\xf5\\x17\\x11\\x7d\\xf2\\x28\\x38\\x0e\\x93\\xcd\\xcc\\xae\\xb3\\x79\\x14\\xc7\\x41\\xaa\\xd7\\xf9\\x64\\x7e\\xf2\\xc0\\x18\\x1b\\xae\\x84\\x63\\x17\\xff\\x8d\\x42\\x97\\xa3\\x70\\x23\\x84\\x59\\x87\\xe8\\xd9\\xd3\\xb5\\xe2\\x4d\\xa4\\x91\\x3f\\x01\\x0e\\x98\\x15\\x88\\x9e\\x88\\x00\\xc7\\xca\\xd1\\xfb\\xe8\\x41\\xb0\\xc0\\x63\\x8e\\x2b\\x55\\x92\\x74\\x30\\xed\\x66\\x06\\xd3\\x6e\\x52\\x03\\xc9\\x14\\x03\\x9a\\x7d\\x25\\x14\\x6e\\xee\\x09\\xc4\\x00\\x80\\x03\\x1c\\x66\\x6d\\xa2\\xd9\\x4e\\x2f\\xff\\xc6\\xc7\\x70\\x57\\x51\\x7d\\x7c\\x79\\x9c\\x35\\xde\\x1d\\x2f\\x3b\\x29\\xc4\\x93\\x7a\\x8c\\x2c\\xf5\\x8b\\x2b\\x5d\\x79\\x11\\x82\\x8e\\x7f\\xf1\\x23\\x1b\\xab\\x10\\x3e\\x8f\\x91\\xbe\\xb4\\xa7\\xa4\\x74\\x66\\xb9\\x1e\\x61\\xfe\\xc4\\x65\\xd7\\x94\\x5b\\x36\\xf4\\xa4\\x1a\\xda\\xf2\\xc2\\xc4\\x9d\\xc9\\x4d\\xa4\\xf1\\xba\\xe1\\x7e\\xee\\xad\\xcb\\xae\\xea\\x55\\xed\\x0e\\x47\\xfb\\xaa\\x6a\\xee\\x2d\\x40\\x70\\x54\\xec\\x20\\x53\\x49\\x31\\xe4\\xc2\\xbc\\x40\\xbc\\x0d\\x11\\x2e\\x37\\x11\\x63\\x12\\x85\\x00\\x47\\xcb\\x99\\x5f\\x63\\xdb\\xba\\x03\\xa9\\x72\\x18\\xd2\\x88\\xfe\\x4a\\xda\\x5c\\x83\\xd4\\xdf\\x2b\\x4a\\xeb\\xc3\\x4b\\x7b\\x02\\x51\\xf1\\x66\\x6d\\x8e\\xd9\\x4c\\x2f\\x98\\x5e\\x4d\\xa8\\xb3\\x5e\\x25\\x01\\x97\\x86\\x5c\\x69\\x97\\x69\\xae\\x9f\\xe0\\x1b\\x9a\\xdb\\x79\\xd3\\x7c\\xdf\\x97\\x3a\\x67\\x7d\\xc1\\x9c\\xf5\\x19\\x17\\xae\\xb0\\xbd\\xec\\x70\\xef\\x69\\xeb\\x29\\x5c\\xfd\\xd4\\x16\\xbc\\x73\\x64\\x7b\\xeb\\xa2\\xd2\\xe4\\xa6\\x00\\x07\\x97\\xce\\x06\\x83\\xd2\\x6e\\x4b\\x1e\\xa3\\xfb\\xae\\x5f\\xe6\\x95\\xdb\\xc6\\xec\\xbb\\x26\\x00\\xf2\\x20\\xd5\\xd3\\x7b\\x18\\xaf\\xdc\\x1c\\xb9\\xde\\x99\\xdd\\xbf\\x51\\xb1\\xfb\\x1f\\x80\\x6b\\xc7\\xe0\\x60\\x36\\xc7\\xaf\\x15\\xbb\\xe4\\x01\\xb8\\x7b\\x8c\\x6d\\x93\\xe1\\xb1\\x29\\x78\\xfa\\x82\\xdf\\x8d\\x39\\xcb\\x59\\x00\\x40\\x7a\\xe9\\x79\\x46\\xe9\\x3f\\x3d\\xcf\\xd8\\x07\\x40\\xa6\\x52\\x1b\\xe8\\x4c\\x19\\xe6\\xe0\\x18\\x1b\\x28\\xc3\\x93\\xab\\xe0\\x39\\x04\\xc9\\x63\\xda\\xcc\\xf0\\x7c\\x28\\xe3\\x11\\xe0\\x90\\x31\\x86\\x61\\x89\\x61\\xfd\\x66\\x38\\xaa\\x14\\x1c\\x43\\xa0\\x1d\\xc3\\xaf\\x18\\x8e\\xaf\\x15\\x1c\\x43\\x99\\x91\\xb4\\x33\\x03\\x90\\x87\\xa8\\x0c\\xb6\\x43\\x6e\\xeb\\x5f\\xc6\\x9c\\x59\\xe6\\xd2\\x98\\xac\\x7f\\xc4\\x16\\x89\\x4f\\x52\\x98\\x43\\x90\\x04\\xea\\xa7\\x39\\x76\\x12\\x40\\xfb\\xe3\\x0b\\x3e\\x40\\xae\\xa7\\x32\\xc9\\x35\\x32\\xcc\\x7a\\xca\\x63\\xb8\\x30\\x1e\\xb3\\x32\\xb8\\x9e\\xcc\\xe4\\xff\\x1b\\x5b\\xe0\\x06\\xb6\\x6f\\x4e\\x4e\\x60\\x58\\x12\\x98\\xfc\\x74\\x96\\xdd\\x7d\\xc7\\x16\\x74\\x98\\xf2\\xd6\\x5f\\x8a\\x77\\x05\\x57\\xb1\\xb6\\x04\\x57\\x31\\x1c\\xff\\x09\\x4c\\xe8\\x1e\\x61\\x88\\xff\\xa3\\x5f\\x7e\\xfc\\x86\\xcc\\x13\\xdf\\x50\\x78\\x22\\x8d\\x9b\\x20\\xf1\\x3b\\x34\\x24\\xdb\\xcb\\x57\\x83\\x9d\\x49\\x48\\xf6\\x50\\x9f\\x18\\xcc\\x17\\x32\\x8c\\x00\\x03\\x1b\\xb3\\x19\\x44\\x36\\xa3\\x1d\\x2d\\x17\\x92\\x95\\xf2\\x03\\x3b\\x72\\x59\\x79\\x6e\\x78\\xb9\\x43\\xa9\\xe3\\x08\\xec\\x84\\x7c\\x06\\x91\\x1f\\x59\\xc7\\x0f\\x0a\\x8e\\xbe\\xaf\\x73\\x99\\x84\\x15\\x81\\x63\\x86\\x82\\xe3\\x30\\x20\\x38\\xcc\\x20\\x0e\\x47\\xe0\\x50\\x4d\\x08\\xe1\\x40\\x6f\\x7c\\xb6\\x85\\x9d\\x05\\xc9\\x7a\\xfc\\x6c\\xb1\\x92\\xd4\\x93\\x21\\x6c\\x41\\x87\\xd8\\x7e\\x68\\x88\\x90\\x4a\\xe5\\x98\\x43\\x40\\x72\\x29\\x3d\\x1e\\x90\\xe9\\xd1\\x45\\xe9\\x81\\xc2\\xe8\\xc1\\x60\\xbe\\x90\\x61\\x04\\x18\\x98\\x95\\xcd\\x20\\x64\\x7a\\xd0\\x72\\x4a\\x0f\\x56\\x7e\\x60\\x41\\x2e\\x2b\\xcf\\x0d\\x2b\\xa7\\x7d\\x65\\xe5\\x7d\\x1f\\xe4\\x32\\xce\\x2e\\x97\\xd3\\xfb\\xeb\\xfc\\x47\\xd8\\x82\\x1e\\xa2\\xe5\\x55\\x7b\\x92\\xd9\\xf7\\xc9\\xe1\\xe5\\x7f\\x90\\xcb\\xd9\\xd9\\x42\\x22\\x83\\x48\\x0c\\xb5\\x91\\xc2\\x48\\xfb\\xaa\\x0c\\x23\\xad\\xf3\\x14\\x06\\x93\\x12\\x01\\xc3\\xff\\x4d\\xa9\\xa7\\x2f\\x3a\\x85\\xb5\\x23\\x85\\xd5\\x43\\xef\\x64\\xd3\\x71\\x7b\\x54\\xb1\\x45\\xe4\\x33\\x1c\\xca\\xb8\\xd1\\xbb\\xd6\\xfc\\xf7\\xd8\\x82\\x1e\\x93\\xe9\\xb5\\x1d\\x5c\\x6c\\x6c\\x5d\\x91\\x30\\xdf\\x28\\x30\\x03\\xb0\\x0b\\xf2\\x18\\x4c\\x5e\\x04\\x8c\\x90\\xa9\\xc0\\x1c\\x80\\x7d\\x50\\xc0\\x60\\x0a\\x22\\x61\\xdc\\x0a\\xcc\\x11\\x18\\x04\\x0f\\x83\\xf1\\x44\\xd6\\x25\\xca\\x30\\x02\\xf4\\x31\\x2c\\x98\\x62\\x09\\x06\\xd9\\xdd\\x58\\x5a\\x7e\\x82\\xd1\\x76\\xb0\\x88\\xf5\\xa8\\x28\\xbc\\xfc\\x92\\x5c\\x4e\\xf9\\x1a\\xad\\x03\\x85\\xd5\\x41\\x61\\x04\\x8b\\x02\\x73\\x00\\xee\\x07\\x3f\\x83\\xf1\\x47\\xc2\\xf0\\x4a\\x3d\\x7d\\x31\\x7e\\x46\\x5b\\x3f\\xab\\x87\\xde\\x17\\xa5\\x73\\xe8\\x19\\x36\\x87\\x96\\x44\\xce\\x21\\xb6\\x1e\\x5e\\x55\\xd6\\x43\\xff\\x25\\x2d\\xeb\\xa9\\x36\\x7c\\x3d\\xe8\\x94\\xf2\\x83\\x3f\\xf6\\xb3\\xf2\\x7e\\x76\\x66\\x63\\x12\\x3b\\x68\\x3c\\x94\\x7f\\x7a\\x66\\xa3\\x42\\xbc\\xc0\\xaf\\x09\\x9d\\xdc\\xfc\\xbf\\x3e\\xb3\\xb1\\x1a\\x54\\xec\\xcc\\xe6\\xb7\\xe8\\x5d\\xe7\\x15\\xfb\\xe1\\xe4\\xa6\\x6e\\x16\\x57\\xa5\\x1c\\x75\\x3f\\x4e\\x06\\x2f\\x0d\\x44\\xee\\x86\\x81\\x6b\\x0a\\x3f\\xf9\\x9e\\x0c\\x8e\\xe8\\xd1\\x2b\\x6c\\xed\\xd1\\x18\\x25\\x74\\x9e\\xb0\\xf5\\x39\\xb0\\x30\\x8f\\xd1\\x24\\x4f\\x5e\\xbf\\x52\\x39\\x9d\\x23\\xac\\xfc\\xc0\\xf2\\x02\\x56\\x5e\\x10\\x5e\\x1e\\xa5\\x94\\x1f\\x3a\\x57\\xcc\\xca\\x8b\\xaf\\xfe\\xfd\\xd0\\xdf\\x23\\xbf\\xbf\\x87\\xfa\\x3d\\x25\\xcb\\x3c\\x55\\x80\\xa1\\x1b\\x22\\xf9\\x18\\x5b\\xb7\\xaf\\x2a\\xeb\\xb6\\xff\\x4f\\x5a\\xf6\\xbd\\x36\\x7c\\xdd\\xeb\\x94\\xf2\\x83\\x1f\\xf5\\xb3\\xf2\\xfe\\xf0\\x72\\x4e\\x29\\x3f\\xf4\\x97\\x42\\x56\\x5e\\xc8\\x6c\\x69\\x27\\xc5\\x0e\\x1a\\x6f\\xc4\\x00\\x15\\x81\\xd2\\x30\\x2b\\x95\\x00\\x2a\\xb5\\xa0\\x9a\\xab\\xd8\\xdb\\xff\\x6f\\x58\\xd9\\x69\\x70\\x92\\x5d\\x63\\xad\\xec\\x9f\\x85\\x85\\x2b\\x19\\x63\\x8c\\x0a\\xc5\\x2f\\xb9\\x0a\\x8f\\x1b\\xfa\\x28\\x92\\xc7\\xd1\\x78\\x24\\x94\\xd6\\x47\\x95\\xf3\\xde\\x30\\x6a\\x53\\x1c\\x0c\\x26\\x5d\\x86\\x91\\x74\\xf3\\xb5\\x0c\\x62\\x6d\\x38\\x8e\\x28\\xa5\\xfc\\x50\\x30\\x72\\x3c\\x97\\x8b\\x99\\xa4\\x8d\\xf2\\xf3\\xa3\\xb2\\x8e\\xf4\\xfc\\x18\\xfb\\x14\\x8d\\x2d\\x42\\xdb\\xf9\\xa0\\xdc\\x8e\\x07\\x20\\xac\\xa5\\x61\\xbc\\x32\\x55\\xe1\\x95\\x47\\xe0\\x1e\\x48\\x67\\x30\\xe9\\x91\\xbc\\xf2\\xa4\\xc2\\x2b\\xfb\\xe3\\x38\\x06\\xc1\\x85\\xf1\\x64\\xba\\xde\\x59\\xf9\\x41\\xcd\\x4c\\x56\\x3e\\x93\\x8d\\xed\\xdb\\x62\\x07\\x8d\\x49\\x62\\x00\\x7f\\xc0\\x3b\\x6a\\x27\\x05\\x50\\xb3\\x0b\\x71\\xff\\x57\\xac\\xa4\\x72\\x00\\x13\\xf1\\xdb\\xb1\\xc6\\xc6\\x47\\x47\\x63\\x9a\\x8c\\xb5\\x31\\x72\\x10\\xd6\\xc7\\x8b\\x4a\\x1f\\x0e\\x69\\xb3\\x58\\x1f\\xb2\\x58\\x1f\\xef\\x0e\\x5e\\x20\\x2f\\x08\\x89\\xd8\\x82\\x8e\\xc9\\x76\\xc5\\xed\\x60\\x63\\x10\\xb6\\x10\\x9d\\x8e\\x88\\x56\\x72\\x3b\\x95\\x39\\x8e\\xcb\\x63\\xb2\\x75\\x8c\\x6e\\x3b\\x2c\\xc9\\x6b\\xfc\\x5f\\xb0\\x05\\x3d\\x2c\\xdb\\x03\\x1d\\x63\\xe8\\xfd\\x53\\xd1\\x46\\x7a\\x29\\x9e\\x87\\x65\\x3c\\x3d\\xe2\\x3b\\x32\\x9e\\x90\\xcf\\x16\\x8b\\x65\\xb2\\x5f\\x81\\xe9\\x83\\x9d\\xe2\\x06\\x19\\x66\\x43\\x04\\x8c\\x82\\x07\\x0e\\x81\\x79\\xa4\\x42\\xb6\\xbf\\x55\\xc8\\x30\\x74\\x9f\\xa3\\xbc\\xf8\\xd1\\x90\\x9f\\x05\\x84\\x71\\x63\\xda\\x9e\\xa7\\x44\\x23\\x49\\xa0\\x78\\x1e\\x95\\xdb\\xf3\\x57\\x51\\x96\\xa6\\xc4\\x37\\xc2\\xf1\\xd0\\xb9\\xf6\\x28\\x5b\\x13\\xb9\\x91\\x6b\\x82\\xed\\x4d\\x6f\\x28\\x7b\\x53\\xbf\\x2a\\xf2\\xcc\\x84\\xed\\x6f\\xe9\\x4a\\xf9\\x41\\x61\\x2d\\x2b\\x5f\\x3b\\x5a\\xbe\\x5f\\xd0\\x2b\\xfb\\xdf\\x51\\xb8\\x2d\\x7c\\x77\\xa3\\xed\\xa4\\x71\\x3a\\xe8\\xfe\\xf5\\x04\\xe3\\xa1\\xb6\\xb0\\x1d\\x52\\x2a\\x17\\x6d\\xa4\\x95\\xf6\\xe3\\x09\\xb9\\x1f\\xcb\\x28\\x5d\\x71\\x18\\x5d\\x29\\x0e\\xba\\xbf\\x31\\x1c\\x43\\x8f\\xf9\\x19\\x0e\\x79\\xef\\xa2\\xb1\\x37\\x28\\x9f\\x7e\\x52\\xf6\\x9f\\x88\\xe4\\xd3\\xb4\\x9c\\xae\\xfd\\x27\\x15\\xff\\x89\\x2b\\xd7\\xfe\\x2e\\xb1\\x92\\x34\\xd1\\xb5\\xcb\\x70\\x6c\\x28\\x1e\\x2b\\x8b\\x45\\xe2\\x11\\x60\\x68\\x24\\x92\\x5f\\x77\\x8b\\xd9\\x61\\xf2\\xad\\xd4\\x97\\xc7\\xc5\\xb7\\xe5\\x31\\x79\\x3b\\x5c\\x06\\xa6\\x63\\xc2\\x6c\\x20\\x43\\xdf\\x45\\x8e\\x09\\xdb\\xa7\\x8b\\x95\\xbd\\xfc\\x08\\x1c\\x80\\x52\\x06\\x51\\x1a\\xb1\\x97\\xf3\\xef\\x2a\\x7b\\x79\\x7f\\x62\\xe4\\xba\\x60\\x38\\x4c\\x4a\\xf9\\x41\\xed\\x16\\x56\\xbe\\x25\\xbc\\xbc\\x4f\\xa9\\xe3\\x30\\xa4\\xc3\\x13\\x4c\\x1a\\x78\\x22\\xbc\\x8e\\x83\\x82\\x55\\x81\\x39\\x0a\\x0f\\x40\\x98\\xc4\\x40\\xb5\\xf5\\x87\\xc5\\x7b\\x68\\x5c\\x0f\\x0b\\x14\\x06\\x5c\\xa1\\x53\\x4d\\xdc\\x28\\xa9\\xf0\\x84\\x5b\\x23\\x2b\\xf4\\x61\\x9a\\x3c\\x4d\\x2b\\x61\\x31\\x6a\\x13\\xcd\\xd9\\x54\\x8d\\xd7\\x08\\x82\\xea\\xaa\\x5a\\x7c\\x78\\xec\\x0f\\xbc\\x6b\\x65\\x47\\x04\\xf3\\x28\\x98\\x7d\\x64\\x7d\\x75\\x44\\x20\\x90\\x7d\\x3f\\x77\\x54\\x4c\\x0b\\x63\\x21\\x8d\\x75\\xb8\\xa8\\xef\\xee\\x79\\xa3\\x71\\x41\\x82\\x41\\x16\\xcb\\x83\\xd2\\xfd\\x27\\xf2\\x1c\\xf8\\x74\\x0c\\xdf\\xa5\\x32\\x10\\x85\\x61\\x32\\xd0\\x81\\x55\\x91\\x63\\xc3\\x64\\xa4\\x1f\\x94\\xf2\\xbe\\xbf\\x46\\xca\\xc9\\x34\\x4e\\x06\\x5d\\xb7\\xc3\\xf2\\xba\\xdd\\x33\\x66\\xdd\\x52\\x18\\xba\\xe7\\x0e\\x33\\x9e\\x16\\x13\\xb6\\xe7\\x2a\\xe5\\xc9\\x4a\\xf9\\x50\\x74\\x64\\x1b\\x98\\x0f\\xce\\x35\\xcc\\x7f\\x06\\x54\\xf0\\x98\\xd8\\x2a\\xe1\\x0d\\x9e\\x02\\x20\\xcf\\x08\\xd7\\x82\\x05\\xac\\x0b\\xa4\\xba\\x1f\\x1b\\xd9\\x77\\xa5\\xdf\\x55\\xf0\\x0c\\x95\\xd1\\xae\\x01\\x0b\\xe4\\x2c\\xa0\\xdf\\x8e\\xdc\\x42\\xdf\\xbf\\x07\\x40\\xb6\\x08\\xd7\\x81\\x05\\xec\\xf2\\xb7\\x87\\xae\\xd4\\x8b\\x83\\xaf\\x06\\xcf\\x93\\xeb\\xe9\\xb7\\xae\\x04\\xf6\\xed\\xad\\xf4\\xfd\\x56\\x00\\x5e\\x45\\xdf\\x97\\xc8\\x38\\xeb\\xe9\\xfb\\xff\\x01\\x20\\xfb\\xe8\\xfb\\x67\\x65\\xf8\\xe3\\x6c\\x9f\\x0e\\x9e\\x23\\x15\\xc2\\x41\\x6c\\x81\\x53\\xb4\\x7f\\x8f\\xff\\xe9\\x59\\x69\\x85\\x70\\xcf\\x05\\x9f\\x55\\xd6\\x19\\xed\\x23\\xbd\\xb3\\x65\\xa4\\xcf\\x77\\x00\\x90\\xed\\xf4\\xd9\\x34\\xea\\xcb\\x40\\x9f\\xad\\xa3\\x3a\\x3b\\x7d\\x2e\\x65\\x76\\x35\\x96\\x0b\\x15\\x0b\\x90\\x33\\x7a\\xae\\x48\\x9f\\xd9\\x18\\xdc\\x0e\\x40\\xcf\\x91\\x04\\x70\\xd0\\xe7\\x1b\\x00\\x48\\x37\\x7d\\xce\\x07\\xe5\\xcc\\x81\\x3e\\x3b\\x41\\x39\\x1b\\xe0\\xcf\\x60\\x01\\x5c\\xf4\\xf9\\x38\\x00\\xd9\\x45\\xcb\\x0b\\x46\\xed\\x93\\xf4\\xd9\\x3b\\x6a\\xaf\\xa0\\xcf\\x25\\xf4\\xb9\\x08\\x80\\x3c\\x41\\x9f\\x8b\\xc3\\xce\\x39\\xff\\xb5\\x6f\\xea\\x7f\\x62\\xf3\\x58\\x17\\x3c\\x47\\x06\\x85\\x7d\\xd8\\x02\\xcf\\x51\\x5a\\x3e\\xf6\\xcd\\x38\\xc6\\x17\\xc7\\x8d\\xfa\\x2b\\xee\\x10\\x6e\\xc2\\x16\\xf8\\x39\\x2b\\x27\\xd1\\x6c\\x54\\xa3\\x59\\xf9\\x2d\\xe2\\x5c\\x52\\x4e\\xbf\\x7f\\x91\\x95\\xa3\\x71\\xac\\x5c\\xfe\\x9e\\x8d\\xd5\\x46\\x65\\xac\\x1e\\xfb\\x6e\\xac\\x1d\\x7b\\x6f\\xf0\\x1c\\x69\\x11\\x1e\\xc4\\x16\\x78\\x9d\\x8d\\xe7\\xcb\\x2f\\xc8\\xe3\\xf9\\x82\\x02\\xf3\\x08\\x00\\xb9\\x8b\\x14\\x63\\x41\\xe2\\xe4\\xa1\\x33\\x10\\xd2\\x8a\\x05\\x68\\xa7\\xcf\\x3f\\x11\\xe7\\x90\\x12\\x5a\\xbe\\x96\\x3e\\x77\\x02\\x90\\xf5\\xf4\\xb9\\x9b\\x3e\\xcf\\x95\\xe6\\x12\\x7d\\x9e\\x3e\\x3a\\x87\\xa8\\x9f\\x1a\\x6b\\x57\\xdf\\xa5\\x48\\x3f\\x35\\xda\\x26\\xfe\\x03\\xa5\\x4d\\x7d\\x7f\\x18\\xcf\\xca\\xc7\\x87\\xfb\\xfe\\xed\\x53\\xce\\x60\\x1e\\xfb\\x32\\x92\\x6e\\xac\\x4f\\xdb\\x95\\xef\\x1f\\xfb\\xdd\\x88\\xdc\\xef\\x11\\xa5\\x4f\\xe5\\xc1\\xf3\\xe4\\x7e\\x61\\x07\\xb6\\xc0\\x1b\\x32\\x6d\\x22\\x3c\\x21\\x47\\xe7\\xe9\\xbf\\xf1\\x89\\x3e\\x0c\\x40\\xbc\\xd4\\x57\\xf7\\x49\\x99\\x67\\x6c\\x8f\\xf4\\xd5\\x05\\xc4\\x6c\\xfc\\xfc\\x19\\xa8\\x00\\x77\\xc0\\x79\\x65\\x6c\\xa9\\xf0\\xa4\\x5c\\xd4\\x77\\x24\\x83\\x6b\\x2e\\x2d\\xf6\\x7a\\x58\\x74\\x29\\x41\\x47\\xd3\\xaa\\xfe\\xdb\\xe8\\x52\\x44\\x89\\x2e\\xb5\\xc7\\x3e\\x79\\x45\\xa0\\xeb\\xf8\\x75\\xed\\xed\\x37\\x3e\\x33\\x6f\\xc9\\xb3\\x7b\\xda\\xd0\\x05\\xde\\x5c\\x3d\\xa7\\xc2\\x3b\\xb3\\xda\\x52\\xd8\\xb9\\xa2\\x64\\xc6\\xb1\\xed\\x8d\\x1d\\x7b\\x7f\\x3a\\xbf\\xfa\\xfa\\x4d\\x7d\\x2d\\xb9\\xe8\\x22\\xef\\x6c\\x5b\\x56\\xe9\\xed\\x9d\\x94\\x8d\\x36\\x14\\x4e\\x2e\\x75\\xc4\\x27\\x37\\x2e\\xdb\\xdf\\xdb\\x7b\\x67\\x5f\\x51\\xe5\\xba\\xa3\\xf3\\x7d\\x33\\xaa\\x4c\\x69\\xde\\x66\\xa7\\xbb\\xa9\\xc8\\xa6\\x49\\x9d\\xbc\\xf2\\xb6\\xde\\xb9\\x77\\x2c\\x70\\xa7\\x14\\xb6\\x2c\\xdc\\xd6\\x54\\x35\\xaf\\xd2\\x90\\xe2\\x6e\\xba\\xca\\xfa\\xfc\\x4f\\xd6\\xc7\\xe2\\xe0\\x79\\x52\\x48\\xbf\\xc9\\x85\\xd0\\x19\\xe0\\x29\\xe9\\x19\\xfd\\xf7\\xe8\\x1a\\xa7\\xe7\\x5f\\x0e\\x99\\xae\\x03\\xf4\\xfc\\x0b\\x8d\\x9e\\x7f\\x41\\x52\\xf0\\x1c\\x39\\x43\\xed\\xde\\xff\\x23\\xdb\\xdf\\xf5\\x63\\xfc\\x99\\xfe\\x1d\\x2f\\x3a\\xac\\xdc\\x2f\\x7d\\xf2\\xaa\\xbc\\xe9\\x06\\x3a\\xbe\\x5e\\x6c\\x81\\xdf\\xcb\\x3e\\x0d\\x9f\\xa0\\x41\\xb9\\x8e\\x41\\xb9\\x8e\\x2b\\xf9\\xcf\\x95\\xfc\\xeb\\x4a\\xfe\\xb3\\x0f\\x80\\x14\\xd3\\xf2\\x93\\x57\\xe5\\x47\\xd4\\xd7\\x8c\\x7f\\x15\\x0b\\x60\\xbe\\x2a\\x7f\\x92\\xf6\\xb1\\x9f\\xd3\\xe7\\xe1\\xab\\xf2\\x27\\xea\\x7f\\x49\\xd7\\x67\\xf5\\xa8\\xbf\\x31\\x7d\\xae\\x53\\xea\\x2f\\xe4\\xbf\\xc7\\x16\\x38\\xcf\\xe4\\x8b\\xff\\x6d\\x65\\x7c\\xa3\\x35\\x6c\\x7d\\x85\\xad\\xef\\x03\\xe2\\x1c\\xd2\\x4a\\x9f\\x3b\\xa8\\x50\\x40\\xfd\\xdc\\x48\\x2b\\xd8\\xa1\\x24\\x50\\x04\\x84\\x47\\xbc\\x9c\\xf9\\x19\\x41\\x7f\\x68\\x16\\x67\\x36\\x09\\x11\\x89\\x05\\xb3\\xf4\\x69\\xa9\\x3a\\xed\\xf8\\x68\\x81\\x07\\x3b\\xb2\\xab\\x84\\x04\\x1a\\xdc\\xc0\\xea\\x4e\\xbc\\x22\\x8a\\x8a\\xca\\xe8\\x0d\\x0b\\x98\\x87\\xd7\\xe6\\x4e\\x09\\x98\\xd1\\x9f\\x51\\xc3\\xb6\\x07\\xa7\\x6f\\xfb\\xf9\\xf6\\x8a\\x8a\\xed\\x3f\\xdf\\x3a\\xef\\xf8\\xa6\\x6a\\xf4\\x67\\x64\\x28\\xef\\x2c\\x68\\x5a\\x50\\x9a\\x9c\\x5c\\xba\\xe0\\xd1\\xb4\\x82\\x9a\\xec\\xd6\\x3d\\x8b\\x4a\\xbb\\xee\\x7c\\x75\\xa5\\x69\\xe5\\xd9\\x3b\\xa6\\x95\\x2e\\xbf\\xab\\x27\\xb7\\xb5\\x38\\xab\\x6c\\xfe\\xf6\\x4a\\x53\\xd5\\xf6\\xf9\\x65\\x8a\\xad\\x9a\\xf2\\xa1\\x19\\x57\\xe5\\x4b\\xff\\xce\\xaf\\xfa\\x01\\x00\\x92\\xcf\\xbf\\x89\\x2d\\xf0\\x89\\x2c\\xa7\\xaa\\x19\\xdd\\xd4\\xac\\x9c\\x9e\\xd3\\x51\\x3a\\x4d\\xa5\\xf8\\xde\\x02\\x20\\xed\\xfc\\x7b\\x58\\x80\\xa6\\xff\\xc8\\x6f\\xfa\\x7f\\xc4\\x26\\x6e\\x31\\x85\\x6f\\xa6\\xf0\\xb7\\x00\\x90\\x9f\\x50\\xf8\\xcf\\x59\\x7d\\x65\\x91\\xe7\\x6d\\xcc\\xf6\\x7e\\x51\\xf1\\xf7\\x3d\\xa8\\x89\\x3c\\x5b\\x62\\x67\\x00\\x59\\xca\\x19\\x40\\x55\\x70\\xe5\\x98\\xfb\\x1a\\xec\\x0c\\xe0\\x0d\\xf9\\x0c\\x40\\x82\\x59\\x3e\\xc6\\xbf\\x99\\xe1\\xc9\\x54\\xf0\\x0c\\xc0\\xfa\\x31\\xfe\\x04\\x0c\\xcf\\xeb\\xca\\x59\\xc2\\xc0\\x40\\xa4\\x0f\\x34\\xc3\\x61\\x53\\x70\\xf4\\x05\\x2f\\x8e\\xe1\\x09\\x0c\\xc7\\xbb\\x0a\\x8e\\xbe\\x2f\\x22\\xf7\\x05\\xb6\\xa7\\x66\\x29\\x7b\\x6a\\x55\\x70\\xed\\x98\\xfe\\x30\\x9a\\xbc\\xa1\\xd0\\xa4\\x6a\\x4f\\x58\\x6f\\x82\\x41\\xf4\\x7b\\x4e\\xc4\\xf7\\x0a\\x80\\x05\\x88\\xa2\\x77\\x02\\x8b\\x88\\xc0\\xad\\xa7\\xcf\\x84\\x3e\\xbf\\x15\\xfc\\x5a\\xf5\\x2c\\x7f\\x02\\x2c\\x24\\x56\\x92\\xcf\\x48\\x2c\\xf9\\x35\\xa5\\xc1\\xeb\\x62\\x13\\x71\\x28\\xfe\\x2d\\x02\\x0c\\xcd\\x89\\xf0\\x6e\\xa1\\xdf\\xca\\x39\\x01\\xb1\\x80\\xfa\\x46\\xe5\\x12\\x4a\\xb7\\x7c\\x99\\x6e\\x6b\\xc7\\xd0\\x4d\\xda\\x2b\\xd7\\xd1\\xb3\\x88\\xc9\\x32\\xcc\\xd0\\x18\\x3f\\xd8\\x42\\x71\\x2f\\xe5\\x61\\xcc\\xe7\\x5a\\x80\\x07\\xb5\\x98\\xcd\\x4b\\x99\\xb6\\xbb\\xc5\\x9b\\xe9\\x7a\\x0f\\xf9\\x5b\\x3f\\xf8\\x5b\\x81\\x95\\x33\\xba\\x05\\x25\\x5e\\xbb\\x4a\\xe8\\x0c\\xf9\\x24\\xa0\\x5f\\x8d\\x0c\\xc0\\x2d\\x0c\\xe2\\x16\\x45\\xcf\\xfe\\x0f\\xee\\x1a\\x31\\x5e\\x18\\xab\\xf0\\xc2\\xaa\\xe0\\x6c\\xd4\\x28\\xc3\\x34\\x9e\\x08\\xf7\\xfd\\xfc\\xd7\\xf7\\x1f\\x18\\xff\\x79\\x47\\xe6\\x3f\\x12\\xcc\\x4c\\x08\\x93\\x5c\\x28\\xcc\\x14\\x00\\xf2\\x08\\xe5\\x69\\x3f\\xa5\\xcf\\x93\\xc5\\x2c\\xf2\\x34\\x5d\\xab\\xbf\\xa4\\xcf\\xb1\\x00\\xe4\\xa2\\x6a\\x26\\xb6\\x20\\x2d\\xc5\\xf1\\x08\\xa9\\x67\\xfe\\x04\\x78\\xd4\\x9f\\x40\\xe2\\x9b\\xcb\\x04\\x27\\xb6\\xa0\\x44\\x19\\xc6\\x04\\x55\\x6c\\x46\\x55\\x29\\xf5\\x88\\x3a\\x72\\x1d\\x3d\\xc7\\xff\\x80\\xd2\\xe6\\xcd\\xe0\\xdf\\x82\\xdb\\xe4\\x91\\xdd\\x16\\xea\\x93\\x68\\x20\\x9d\\xa4\\x05\\x5b\\xe0\\x1c\\x3d\\x07\\x78\\xf3\\xab\\x1b\\x64\\x88\\x1b\\x14\\x59\\x61\\x86\\x68\\x0c\\xbf\\xcb\\x85\\xde\\xbc\\xb0\\x47\\x86\\xd9\\xa3\\xc0\\xec\\x14\\x8d\\xe1\\x77\\x47\\xd0\\x9b\\x97\\xc6\\xc2\\x5c\\x29\\x7b\\x7a\\xc4\\xd9\\xe4\\x61\\xda\\xef\\xe7\\xaf\\x2a\\x0b\\xab\\x01\\xc8\\xf3\\x74\\x0f\\xfc\\x9d\\xe2\\xb3\\x72\\xe5\\x1e\\x98\\x4c\\x6d\\xbf\\x12\\xbf\\xff\\x8c\\xf1\\x89\\x6f\\x23\\xf9\\xfd\\x95\\x38\\xff\\x3f\\xfb\\xf8\\xff\\x87\\xf7\\xe8\\xfe\\xdd\\x7d\\x1d\\x7a\\x86\\x46\\xdb\\xb5\\x83\\xb6\\x8b\\x9e\\x97\\x91\\xc9\\x58\\x90\\xfd\\x0a\\xfe\\x6f\\xf8\\x33\\x4f\\x09\\x7e\\x46\\x16\\x09\\xdf\\x61\\x0b\\xaa\\x56\\xe4\\xf4\\x1c\\xb9\\x9d\\x39\\x32\\x8e\\x63\\xc1\\xf3\\x64\\x19\\xad\\xf7\\x7e\\x50\\x9e\\xe9\\x3e\\x71\\x3f\\x6b\\x77\\x5c\\xe4\\x3e\\xc1\\xc6\\xc4\\xa4\\x8c\\x49\\x5f\\xf0\\xf2\\x18\\xb9\\x91\\x8d\\xc9\\x07\\xca\\x98\\xf4\\x7d\\x11\\x29\\xe3\\x4e\\x09\\x9e\\x27\\xd7\\xa9\\xdc\\xa1\\x79\\x09\\x7d\\xc1\\xaf\\x98\\xcf\\x2c\\x1e\\xf5\\x99\\x95\\xfa\\xd6\\xc9\\xff\\x2d\\x34\\x2f\\xa1\\xef\\xfb\\xc8\\xf3\\x16\\xba\\x5e\\x85\\xbf\\x2a\\xeb\\xb5\\x3f\\xf8\\x29\\x2a\\x94\\xe9\\x53\\x18\\x76\\x8e\\x59\\xc8\\x1f\\x53\\x64\\x81\\xfe\\xbf\\x7d\\x27\\xcf\\xc9\\xef\\x94\\x39\\xc9\\xd6\\xbd\\x4e\\xc1\\xd3\\x17\\xfc\\x18\\x35\\xc9\\x6d\\x69\\x8a\\xc0\\xf3\\x81\\x82\\xa7\\xef\\x8f\\x91\\xfd\\xf9\\x4f\\xee\\xbd\\xfd\\xbb\\xbb\\x38\\x5d\\x94\\xee\\x67\\xb0\\x80\\x58\\x6c\\x90\\x99\\xc1\\x73\\xd4\\x77\\x49\\x40\\x09\\xf4\\x99\\x96\\x4b\\xfb\\x83\\x54\\x4e\\xe7\\x1c\\xa0\\x2e\\x88\\x7a\\x9a\\xc3\\xcf\\xa1\\x2e\\xb9\\x0e\\xfa\\x0d\\xff\\x23\\xb6\\x48\\xdf\\x48\\x75\\xbc\\x99\\x07\\xea\\xa7\\x39\\x1c\\xb2\\x35\\xd5\\x51\\x7f\\x0c\\x89\\xee\\x7f\\x51\\x64\\xd7\\x2b\\xe9\\xbe\\x3e\\x78\\x9e\\xd4\\xd3\\x76\\x5e\\x62\\x38\\x3e\\x4e\\x65\\x7d\\x95\\xdb\\x49\\xe5\\x52\\xea\\xab\\xff\\x3f\\xb2\\x7f\\x89\\x61\\x8c\\xaf\\x3e\\xdb\\xa7\\x0e\\x2b\\xfb\\x54\\x7f\\xdc\\x58\\xff\\x12\\x26\\xdf\\x9a\\x14\\x3c\\x7d\\x90\\x3c\\x66\\x1e\\xfd\\xbb\\x3b\\x3f\\x0c\\xc7\\x24\\x05\\xc7\\x51\\x78\\xfc\\x9f\\xe0\\xf8\\x46\\x39\\xc3\\x3f\\x0a\\x43\\x91\\xbe\\x21\\xb2\\xec\\x33\\x89\\xb6\\xe5\\x43\\x99\\x2e\\xc3\\x63\\xf0\\xfc\\x3f\\xcc\\xbd\\x79\\x58\\x14\\x57\\xf6\\x3f\\x7c\\xee\\xd2\\xcd\\x2a\\x8a\\xbb\\x62\\xb4\\xb1\\x45\\x0d\\x34\\xc8\\xbe\\x28\\x31\\xd0\\x0b\\x88\\xb8\\x20\\x6e\\xa0\\xc6\\xd0\\x40\\x2b\\x28\\xd0\\x84\\xc5\\x2d\\xc6\\x38\\xc6\\xa8\\xc1\\x8d\\x28\\x2a\\xe0\\x8e\\x88\\x88\\x5b\\xa1\\xc6\\x38\\x8e\\xe3\\xf8\\x33\\xc6\\x38\\x99\\x94\\x71\\xb2\\x18\\xb3\\xf9\\x4d\\x1c\\x93\\x31\\x89\\x93\\x98\\x8c\\x31\\x26\\xd1\\xee\\xf7\\xa9\\xaa\\xd3\\x4d\\x81\\x3a\\xf3\\x7d\\x7f\\xcf\\xfb\\xc7\\xab\\x4f\\x71\\x6e\\xdd\\x3a\\xf7\\xf3\\x39\\xf7\\xdc\\x73\\x97\\xba\\xdd\\x55\\x2d\\xad\\x7b\\x53\\xe5\\x18\\xf8\\x59\\xb1\\xa5\\x57\\xfb\\x18\\x98\\x03\\xc0\\x0b\\xe4\\x31\\xe1\\x4b\\xc4\\x10\\xe5\\x31\\x81\\xa9\\xc6\\x84\\xf9\\x00\\x3c\\x47\\xae\\xcf\\xaf\\x0a\\xc6\\x93\\x5a\\xa5\\x7d\\xb0\\x3e\\xf1\\x8e\\x74\\x4d\\xa2\\x3c\\x17\\x0e\\x97\\x9f\\x8f\\xb8\\x4c\\xfd\\x95\\xb5\\x9c\\x23\\x9d\\x5f\\xe1\\xc3\\xe9\\x60\\x69\\x2d\\x27\\xe5\\x93\\x03\\x72\\xfe\\xf3\\xce\\x5b\\x3c\\x54\\x9e\\xdf\\x53\\xe4\\xf3\\x10\\x47\\xba\\x26\\x44\\x2e\\xff\\x09\\x96\\x57\\x7c\\x6d\\x70\\xa4\\x6b\\x06\\xca\\xe5\\xbf\\xc7\\xf2\\xbf\\xe0\\xdc\\xbb\\x5d\\x35\\xf7\\x7a\\x40\\x0b\\x7f\\x5b\\xde\\x5b\\xa1\\xaa\\xef\\x1c\\xac\\x70\\xec\\x56\\xcd\\xbf\\x92\\x4e\\x95\\xec\\x3f\\xaa\\xfa\\x0e\\x84\\x32\\x1e\\x5e\\x74\\xe3\\x34\\xf3\\x4b\\x24\\x0d\\xc7\\xd4\\xb4\\x76\\x63\\xea\\x0a\\x37\\x4e\\x33\\xff\\x23\\x78\\x28\\x38\\x1e\\x2a\\x1c\\x8d\\xaf\\xc7\\xbf\\xdc\\xcf\\x15\\xd7\\x3b\\xff\\xad\\x3c\\x2f\\x4d\\xdb\\xd6\\x40\\x12\\xce\\x2f\\xda\\x03\\xee\\x67\\x18\\xeb\\xaf\\xf5\\x55\\xfa\\x91\\x32\\x2e\\x38\\xaf\\xc9\\xb6\\x7c\\xe6\\xc6\\xa8\\x73\\x5e\\x27\\x16\\xc4\\xb0\\xe0\\xf7\\x01\\xfe\\x2a\\xdb\\x52\\xef\\xc6\\xa8\\x13\\x99\\x82\\xc1\\xda\\xc6\\xf7\\x53\\x1e\\xf7\\xdd\\x18\\xb5\\xce\\x5f\\x49\\x3c\\x62\\xc4\\xab\\xec\\xd8\\xab\\xfd\\x93\\x1b\\xa3\\xf6\\xc6\\x2f\\x8a\\x86\\x6a\\xff\\x41\\x79\\x4e\\x3a\\xca\\x8d\\xb3\\xc5\\xf9\\x3d\\x49\\x40\\x9c\\x84\\x76\\x7e\\xf9\\xc9\\x8d\\xb3\\xe5\\xe3\\x7b\\x88\\x73\\xaf\\x0d\\x47\\x6a\\x27\\xd7\\xf3\\xdf\\x30\\x44\\x79\\xfe\\xdb\\xdd\\x5e\\xfe\\xee\\xe7\\xc0\\x5b\\x19\\x36\\x9c\\xab\\xdd\\x5c\\xcf\\x9b\\xc2\\x60\\xd8\\xb6\\x30\\xc0\\xdd\\x7a\\x5d\\x5c\\x2b\\x16\\xa9\\x80\\xfa\\xf9\\x39\\x8f\\x77\\xdd\\xb6\\x9e\\x73\\xfe\\x4e\\x32\\xd0\\xd6\\x8c\\x76\\xb6\\xae\\x75\\xdb\\x7a\\xee\\x6b\\x3f\\xc5\\x6f\\x7e\\x2a\\x0c\\xcf\\xc9\\x6e\\x0c\\x69\\x06\\xd9\\x88\\x18\\x1b\\xd5\\x18\\xf2\\xbd\\xaf\\x82\\xb1\\xf5\\xbb\\x09\\x0a\\xc6\\x04\\x35\\x46\\xb2\\x1b\\xe3\\x84\\xf3\\x5b\\x62\\x42\\x0c\\x53\\x3b\\x3b\\x9c\\x6e\\x8c\\x13\\x1f\\x12\\x05\\x83\\xa8\\x31\\x82\\xdc\\x18\\xa2\\x53\\x54\\xe2\\x91\\x76\\x8c\\xc7\\x7f\\xb8\\x31\\xc4\\x93\\x1e\\x0a\\x06\\xde\\x7f\\x28\\x3e\\x1f\\xe5\\xf6\\xb9\\xbc\\x4e\\xe8\\xe0\\xf3\\x9d\\x8f\\xf4\\xb9\\xd6\\xed\\xf3\\x1d\\x77\\x9e\\x69\\xef\\xf3\\x67\\xda\\xfb\\xbc\\xc1\\xb1\\x57\\xbe\\x1f\\x77\\xcd\\xf1\\x2d\\xfc\\x03\\x50\\xed\\x82\\x29\\xf7\\x6d\\x8e\\xad\\xf2\\xfd\\xad\\x3c\\xc7\\x83\\xa4\\xf3\\xbe\\x6a\\x7d\\xf0\\x86\\xbb\\x6c\\x33\\x7f\\x9f\\x98\\x71\\x1c\\x36\\xb7\\x5b\\x1f\\xac\\x74\\xaf\\x57\\xa5\\x3e\\xe7\\xa9\\xf4\\x39\\xcf\\xf6\\x6b\\xe3\\x6c\\x37\\x4e\\x03\\xd4\\xc8\\xdf\\x2d\\x26\\xaa\\xef\\x16\\x2b\\x38\\x4f\\xb8\\xd7\\x19\\x0d\\x8b\\x06\\x28\\x28\\x03\\xdc\\xcf\\x4d\\x69\\xfc\\x3d\\x6e\\xba\\x30\\x48\\xbd\\xf3\\x9e\\xb2\\xbe\\xa6\\x6d\\xeb\\xeb\\x45\\x72\\xbf\\x3d\\xe8\\xc2\\x20\\xf5\\xd7\\xda\\xcd\\x7f\\xce\\x7f\\xc8\\x76\\x7c\\xe4\\xc6\\xa8\\x73\\xfe\\x93\\x24\\x21\\x46\\x92\\xaa\\xdf\\x66\\x69\\xb7\\xba\\x31\\xea\\x44\\xae\\x60\\xf0\\xb6\\xe7\\xb7\\xfe\\xe2\\xf1\\x8b\\x1b\\xa3\\xd6\\xe9\\x20\\x51\\x88\\x11\\xa5\\xb2\\x63\\xaf\\xf6\\xb4\\x1b\\xa3\\xf6\\xc6\\xc3\\xfd\\x4d\\xf6\\x89\\x67\\x98\\x1b\\x67\\x8b\\xf3\\xdf\\xca\\xda\\x82\\xb6\\xad\\x2d\\x14\\x9f\\xb8\\x9f\\x03\\x23\\x5b\\x3e\\xfe\\x15\\x71\\x7e\\x6d\\xc3\\x91\\xda\\xd7\\xf5\\x7c\\x91\\xdc\\x6f\\x37\\x92\\x2c\\x77\\x3b\\xfb\\xbb\\xbf\\xdb\\x29\\xb9\\xd2\\xdb\\xbd\\x1e\\xdf\\xda\\xf6\\xbc\\x91\\xdc\\x6f\\xfb\\x11\\x6c\\xf5\\x76\\xcf\\x1d\\x29\\xfb\\x50\\x17\\xdd\\xfb\\x50\\xcd\\x7c\\xab\\x1c\\xe3\\x44\\x35\\xe6\\x2a\\xcf\\xc7\\x14\\xbb\\x9f\\x8f\\x69\\xe6\\x3f\\x39\\xbf\\xc7\\x99\\xd8\\xf5\\x9b\\x85\\xaf\\x39\\xf6\\xca\\xeb\\x63\\x17\\x4e\\x0b\\xdf\\xfa\\x50\\x0c\\xbe\\xeb\\xd8\\x2b\\xdf\\xeb\\x0f\\x96\\xee\\xf5\\x65\\x9d\\x1f\\x64\\x1d\\xaa\\xd2\\x99\\xee\\xd8\\x20\\xef\\x03\\xb9\\xd6\\x40\\x2d\\xfc\\x6d\\xe7\\x2f\\xf8\\x1d\\xab\\x5f\\x5c\\x6b\\x20\\x47\\xb5\\xbc\\xf7\\xe2\\xfa\\x6e\\x78\\x0b\\xff\\xb3\\xf3\\x67\\xd4\\xf9\\x59\\x50\\x7f\\xd7\\xfd\\x73\\x37\\x4e\\x33\\xbf\\x48\\x66\\xe2\\x5c\\x32\\x53\\xbd\\x96\\x92\\xe7\\x92\\x09\\xa8\\x73\\xf6\\xa1\\xb9\\x64\\xba\\xf3\\x96\\x46\\xeb\\x49\\xdd\\xf7\\x85\\xf5\\xce\\x7f\\x29\\xef\\x46\\xa0\\x6d\\xef\\x46\\x90\\x70\\x1c\\xf2\\x5c\\x32\\x41\\x89\\xc9\\xaf\\xda\\xcf\\x25\\x57\\x65\\x5b\\x7e\\x74\\x63\\xd4\\x39\\x3f\\x23\\xd3\\x10\\x63\\x1a\\xc6\\xe4\\x65\\xd9\\x96\\x7a\\x37\\x46\\xdd\\x07\\xed\\xe7\\x12\\xa9\\x3e\\xc7\\x3d\\xfd\\xdd\\x18\\xb5\\xce\\x7f\\x2b\\xdf\\x75\\xa7\\x6d\\x7b\\x7d\\x92\\x1d\\x07\\xe5\\xb9\\x44\\xc1\\xa8\\xfd\\xee\\xe1\\xb9\\x44\\xf6\\x8b\\xe7\\x28\\x37\\xce\\x16\\xe7\\x4d\\x32\\x0e\\x71\\xc6\\xb5\\xf3\\xcb\\x4f\\x6e\\x9c\\x2d\\x5f\\x3c\\x1c\\xdb\\x72\\x3b\\xb9\\xde\\xf5\\x20\\xc7\\xe4\\x2a\\x52\\xe6\\x6e\\xaf\\xae\\xee\\x77\\x3e\\xb4\\xb2\\xb6\\xdf\\xc1\\x94\\xdb\\xcd\\xf5\\x3c\\xba\\x5c\\x66\\x29\\x04\\xb8\\xdb\\xcf\\x5f\\x35\\x9b\\xb4\\xb5\\xe3\\x33\\xce\\x5b\\xfc\\x3d\\x79\\x3f\\x63\\x33\\xde\\xfb\\xbf\\xf8\\xd0\\xbb\\x4f\\xe6\\x3a\\xbf\\xe3\\x2d\\xf2\\xfe\\xc0\\x16\\x65\\x5f\\xa5\\xa2\\xfd\\x73\\xf0\\x0a\\x46\\x90\\x1b\\xc3\\xe8\\x5c\\x40\\x9e\\x45\\x8c\\x67\\xdb\\x61\\x7c\\x81\\x18\\x92\\x4e\\xf1\\x43\\xcf\\xdb\\x2b\\x38\\x7f\\x73\\xe3\\x34\\xf3\\x0b\\x64\\x0c\\xe2\\x8c\\x51\\xe3\\xc8\\x31\\xb5\\x05\\x75\\xfe\\xf4\\x50\\x4c\\x29\\x38\\x56\\x37\\x4e\\x03\\xac\\x94\\x9f\\xfd\\xa5\\xaa\\x67\\x7f\\x15\\x9c\\x7e\\xee\\x3a\\x35\\x2c\\x6e\\xff\\x1e\\x87\\x67\\x1c\\x5b\\xf9\\x7b\\xf2\\x33\\x62\\x9b\\x71\\x3c\\x3f\\x29\\x63\\xcf\\x75\\x6c\\xe0\\x2d\\xbc\\xc1\\xcd\\xdf\\xc2\\xff\\xf4\\x50\\xff\\x59\\xe6\\xa8\\xe5\\xa3\\xe5\\xbe\\x1a\\x87\\x3a\\x7f\\x74\\xb6\\xdb\\xfd\\x77\\x3a\\x61\\x8f\\x63\\x2b\\x8f\\x93\\xd7\\x7a\\x53\\x11\\xbf\\x58\\xd9\\xb7\\x95\\xd7\\xfe\\x67\\xdd\\x65\\x9b\\xf9\\xa7\\x0f\\xad\\xdb\\x95\\xef\\x62\\x97\\xb9\\xbf\\x47\\xdd\\xcc\\xcf\\x3d\\xf4\\x9c\\xd3\\x0a\\xe7\\x2d\\x4d\\xa3\\xbc\\xef\\x53\\xeb\\x6e\\xd7\\x8e\\xfb\\x3e\\x1b\\x9d\\xdf\\x69\\x26\\xca\\xfb\\x65\\x75\\x4a\\xbb\\xce\\x6f\\xbf\\x5f\\xa6\\x60\\x0c\\x74\\x63\\x48\\xed\\xda\\x71\\xaf\\x4b\\xc1\\xf8\\x1b\\x62\\x48\\x3a\\xa5\\x0f\\xed\\xdd\\x29\\x38\\x17\\xdd\\x38\\x52\\xbb\\x76\\x1c\\x03\\x65\\x1c\\xb9\\x4e\\x75\\xa8\\x73\\xe6\\x31\\x75\\x9a\\xe9\\xc6\\x91\\xda\\xb5\\xe3\\xb3\\x86\\x0a\\x8e\\x87\\xbb\\x4e\\x0d\\x2f\\xaa\\xbe\\x79\\x2f\\xcf\\xfd\\x1b\\x34\\x8d\\x9a\\xaf\\xdc\\x18\\x2d\\xfc\\x82\\xb3\\xdd\\x27\\x52\\xf2\\x33\\x13\\x5b\\x35\\x13\\xf9\\x26\\x05\\x43\\x6e\\x9b\\x22\\x65\\x5f\\xc4\\x71\\x4c\\xde\\x17\\x71\\xed\\xfd\\xb5\\xf0\\xbf\\xc8\\xdf\\x95\\x25\\xaa\\xef\\xca\\x8e\\x70\\x74\\x97\\xf7\\x77\\x5d\\xf7\\x31\\x2d\\x9a\\xb3\\xce\\x85\\x88\\xbf\\xb0\\xdd\\xe7\\x72\\x17\\xdd\\x38\\xcd\\xfc\\xdc\\x43\\xfe\\x90\\xef\\x87\\x64\\x7f\\x4c\\x47\\x9d\\x8f\\x1e\\xf2\\x87\\x82\\x33\\xd3\\x8d\\xd3\\x00\\x2f\\x3d\\xe4\\x0f\\x05\\xc7\\xc3\\x8d\\xd3\\x00\\xb5\\xed\\x9f\\x45\\x90\\x7f\\x0b\\xfd\\x16\\xbf\\xa1\\x05\\x78\\x02\\x86\\xc1\\xa1\\xa4\\xce\\x3d\\x88\\x17\\x1b\\x32\\x98\\x7a\\x7a\\x71\\x42\\x3c\\xd9\\xe8\\x74\\xa1\\x4f\\x46\\x56\\x52\\x90\\x87\\xfc\\x6b\\xef\\x4c\\x23\\xbf\\xd5\\x6b\\x64\\x3a\\x78\\x79\\xb9\\x9e\\x32\\xf6\\xf4\\x24\\xd3\\xf1\\xf7\\x26\\x02\\x94\\xf7\\x69\\x3d\\xf9\\x78\\x65\\x42\\x9e\\x92\\x4a\\xb8\\x3e\\xce\\x0f\\x68\\xa7\\xdb\\xa6\\xa6\\xd5\\x2a\\x3f\\x07\\xa1\\xd6\\xcd\\xce\\x4e\\xf2\\x0b\\x91\\x5f\\x0f\\xd5\\xed\\x49\\xbd\\xf2\\xc8\\x22\\xd1\\xfb\\xeb\\x5d\\xdf\\x63\\x8f\\xc1\\x5f\\x3f\\x8d\\x51\\x5e\\xb1\\x15\\x45\\x5c\\xdf\\x6a\\xc7\\x77\\xbc\\xf1\\x1b\\xaf\\x7f\\xec\\x1b\\xb5\\xfe\\xd9\\xdc\\x1d\\xf6\\xa7\\x12\\x4b\\x77\\xe6\\x65\\xaf\\x8a\\xba\\x73\\xe7\\xf6\\xeb\\xf7\\x57\\xf4\\x7b\\xea\\x59\\x63\\x66\\xc1\\x80\\x01\\x85\\xe3\\x4d\\xcf\\x3e\\xf5\\x04\\xbf\\xf8\\x7b\\x7c\\xc9\\xd3\\xa6\\x89\\x1b\\xfe\\x3a\\xaf\\xc7\\xf3\\xef\\x6c\\xc8\\x78\\x2a\\xe1\\x76\\xcb\\xba\\x75\\xf7\\x77\\xa4\\x2d\\xcd\\x89\\x4b\\x4d\\x24\\x57\\x46\\xa4\\xc4\\xe7\\x2e\\x4b\\x53\\xee\\xeb\\x1c\\xef\\xcb\\x7e\\x53\\x9e\\x93\\x1f\\x42\\xde\\x26\\x7d\\xa8\\x91\\x68\\x21\\x39\\x76\\xbd\\x32\\x42\\x53\\xa3\\x6b\\xb8\\x75\\xbf\\xdb\\x65\\xab\\x63\\x07\\xff\\x5d\\x8a\\x21\\xf2\\x89\\xb2\\xd7\\x47\\xbb\\x3c\\xf4\\x2c\\x6c\\xb5\\xa3\\x5e\\xc3\\xe4\\x18\\xfa\\x97\\x7c\\x1f\\x78\\x89\\x2a\\xef\\x34\\x58\\xe6\\xa8\\xe7\\x1f\\xca\\xf1\\x17\\xac\\xe4\\x93\\x6f\\x95\\xbd\\x4c\\x47\\x3d\\xff\\x54\\xd6\\xbf\\x8d\\xf9\\xb7\\x95\\xcf\\x6c\\x1c\\xf5\\x6d\\xcf\\xd2\\x48\\xf9\\xb0\\x0e\\xef\\x53\\xeb\\xf9\\x16\\x59\\xff\\x27\\xcc\\x57\\x3e\\x77\\x8a\\x77\\xd4\\xf3\\x9f\\x55\\xf7\\xb5\\x97\\xa8\\xb7\\x5b\\x7f\\xbd\\xea\\xbe\\xf6\\x12\\x69\\x54\\xee\\xc7\\x1d\\xf5\\xfc\\x96\\xac\\xff\\x39\\xea\\x13\\xb7\\x9d\\xdf\\xcb\\xfa\\x3f\\x63\\x3e\\x73\\xeb\\xa7\\xa8\\xf5\\xe1\\x88\\x5b\\x3f\\x55\\xad\\x0f\\x82\\xf2\\xb9\\x98\\xa3\\x5e\\xfe\\x5c\\x4c\\xfe\\x5c\\x53\\xca\\x77\\x8e\\x75\\xe3\\x0c\\x93\\xf5\\x6f\\x62\\x7e\\x2f\\x65\\x1f\\xd2\\x51\\xaf\\x19\\x20\\xeb\\x7f\\x84\\xbc\\xd1\\x72\\x7e\\x1f\\x47\\xbd\\xa6\\x97\\xac\\xff\\x2d\\xe6\\xcb\\x9f\\xf7\\x39\\xef\\x39\\x06\\xf1\\xd5\\x9a\\x37\\xe8\\x60\\xf2\\x94\\xd2\\x16\\xb0\\xd1\\x59\\x85\\x63\\x79\\x15\\xf6\\x9f\\xfe\\x8e\\x20\\xbe\\x4e\\x5a\\x0b\\x91\\x91\\xa8\\xf3\\x92\\x73\\x35\\xea\\xac\\x16\\xda\\x9e\\x1d\\x34\\xc9\\xf7\\xf7\\xa3\\xe5\\xfe\\xd4\\x43\\xfe\\x1e\\xfb\\x70\\xe8\\xa9\\xbc\\x0f\\x4f\\xdb\\xf6\\x6b\\xf6\\xc4\\x8b\\x28\\xef\\xe5\\xd0\\x68\\x7a\\xcb\\x6f\\x8f\\x9b\\x01\\x94\\xf6\\xa2\\x63\\x7a\\xf5\\xea\\xa5\\xef\\x35\\x70\\xa0\\xbf\\xbf\\xbf\\xff\\xd0\\xc0\\x2e\\xde\\xda\\x7e\\x21\\x24\\xb0\\x47\\xa0\\xeb\\xe5\\xba\\x81\\xae\\xb7\\xc6\\x11\\xff\\x40\\xd7\\x5b\\x19\\xa9\\xe0\\xf8\\x80\\x18\\x0a\\x1a\\x4a\\x12\\x12\\x4a\\x1a\\x0a\\x1e\\x7c\\xb5\\x74\\xe9\\x0f\\xc4\\x20\\x65\\xc5\\xa4\\x85\\xf5\\xe8\\x11\\x96\\x16\\xc3\\x06\\x14\\x44\\xcd\\x78\\x71\\xcc\\xe8\\xa5\\x33\\x63\\xd8\\x80\\x96\\xe7\\x9e\\x73\\x0c\\x73\\xbc\\xd5\\x37\\x38\\xae\\x7f\\xff\\x84\\xd0\\x7e\\x40\\x9d\\xef\\xca\\x9f\\x03\\x09\\xff\\xd9\\xc6\\x9e\\xff\\xc5\\x46\\x7d\\x8f\\xa8\\x8e\\x36\\x46\\xb5\\xfd\\xfa\\x9f\\x9e\\xce\\xb9\\xf9\\xc1\\xf3\\x67\\x97\\x5b\\x2c\\xcb\\xcf\\x3e\\xef\\x18\\x71\\xee\\xdc\\x8f\\x37\\x6f\\x7e\\x30\\xaa\\xc0\\xa4\\xd3\\x99\\x0a\\x46\\xf1\\x94\\xbf\\x3d\\x5d\\xbe\\x27\\x2f\\xbf\\x69\\xbe\\x91\\xa7\\xb4\\x9c\\x3d\\xfb\\xe0\\x6d\\x87\\x47\\xf0\\xa8\\x99\\xd1\\x91\\xd9\\xa6\\x21\\xf0\\xff\\x7b\\xfb\\x88\\xf3\\xb6\\xf2\\x99\\x2d\\x74\\x82\\x21\\x49\\x83\\xb4\\xee\\xf7\\xf0\\x81\\x46\\xc3\\xb3\\x81\\xf3\\x9e\\xd2\\x48\\xd7\\xcb\\xf5\\x1a\\xbe\\x2e\\x1e\\xda\\x00\\xd5\\x5b\\xf8\\x7a\\x04\\xfa\\x47\\xd1\\xd5\\xbf\\xfd\\x28\\x08\\x6c\\xf3\\x83\\xe9\\xbf\\xd1\\x1d\\x0f\\x72\\xe9\\x8e\\x16\\x5a\\x70\\xce\\x21\\xf5\\x2f\\xe2\\xfc\\x0e\\x40\\x8a\\xef\\xc7\\x61\\xf7\\xfe\\xcf\\xd8\\x3d\\xa2\\xe8\\x8a\\xbb\\x3f\\x9c\\x38\\xc1\\xd6\\x3d\\xb0\\xde\\x25\\x97\\x1d\\xe1\\xe4\\x72\\x0b\\x39\\x7b\\xce\\x21\\xbf\\xdb\\xcf\\xf9\\x2b\\x00\\xff\\x40\\x23\\x40\\x77\\x88\\x4d\\x8a\\xea\\x4a\\xc0\\x83\\x8c\\xd6\\x10\\xa6\\x25\\xd4\\x83\\x51\\x2b\\x78\\xc8\\x73\\x84\\xd5\\x93\\x48\\x35\\xf0\\x52\\xde\\x90\\xdb\\xbd\\x9b\\xbf\\xeb\\x65\\x82\\xde\\xda\\x27\\xdc\\x54\\xf2\\x4f\\xee\\xea\\x5d\\xaf\\xcb\\x0d\\x5b\\xf7\\xe3\\x89\\x13\\x3f\\xde\\xb9\\xd3\\xe1\\x95\\xb9\\xbc\\xb8\\xa5\\xae\\xae\\xc5\\x71\\x0e\\x5f\\x9b\\x0b\\xc4\\x79\\x1d\\x80\\x37\\x68\\x01\\xba\\x4b\\xad\\xda\\xd5\\x8f\\x30\\xd0\\x92\\xd1\\x9c\\x50\\x0d\\x21\\x5a\\x4a\\xac\\xc0\\x18\\x64\\x7b\\x10\\x80\\x5e\\xd2\\x1c\\xd0\\x3b\\x5d\\x4e\\xca\\xbf\\x0d\\x27\\xfd\\xeb\\xea\\x29\\xb5\\xaa\\x47\\x3b\\x03\\xf0\\x77\\xe2\\x02\\x97\\xfd\\x70\\xe9\\xd2\\x0f\\xd7\\xae\\xd9\\xc8\\x48\\xa2\\x73\\xcc\\x24\\xd7\\x1d\\x57\\xc8\\xc7\\x8b\\x1d\\x7b\\xf8\\x1f\\x5b\\xb6\\x6f\\x6f\\x79\\x70\\xe6\\x39\\x92\\xe9\\x18\\xf9\\x60\\x95\\xb2\\x97\\xec\\x28\\xd1\\x78\\xbb\\x3e\\x4f\\x87\\x21\\xca\\xe7\\xe9\\xc4\\x03\\xfc\\x68\\x8e\\xf3\\x2b\\xe8\\xea\\xfe\\x5c\\x5d\\xee\\xe4\\x5f\\x29\\xeb\\x86\\x35\\x8e\\x12\\x8d\\x97\\xeb\\xf3\\x6a\\x18\\x0c\\x3b\\xbe\\x1a\\x27\\x97\\x78\\xd6\\xf9\\x95\\x7c\\x87\\x28\\x7f\\x8e\\xe1\\x2e\\x80\\xcf\\xe6\\x39\\x4a\\x34\\xcc\\x35\\x5e\\xcb\\xda\\xd9\\xce\\xaf\\x70\\x0e\\xff\\xca\\xb5\\x67\\x2d\\xe1\\xba\\xc6\\x6e\\x37\\x62\\x7b\\x1d\\xc9\\xde\\x61\\x32\\xce\\x30\\xd4\\x79\\xf9\\x21\\x9d\\xc5\\x8e\\x12\\x4d\\x6f\\x19\\xe7\\x07\\xd4\\x29\\x79\\x48\\x27\\xc4\\x51\\xa2\\xe9\\xea\\xda\\x77\\x94\\x75\\x0a\\x1e\\xd2\\x31\\xb8\\xed\\xf9\\xfe\\xd1\\xf6\\x00\\x71\\x7d\\x3e\\xa4\\xbc\\x83\\xd2\\x47\\xfe\\xdd\\x50\\x77\\x94\\xe6\\x6a\\x88\\x2a\\xfa\\xbb\\x4a\\x8d\\x86\\x11\\xda\\x83\\xe9\\x99\\x3e\\x46\\x89\\x17\\x12\\xc5\\x8e\\x7f\\x44\\xbf\\xa1\\x1f\\xad\\x70\\xac\\x23\\xbe\\x64\\x18\\x19\\x46\\x7c\\x1d\\x6b\\x97\\x53\\x5f\\xf2\\xe0\\x67\\xea\\xdb\\x42\\x7f\\x7b\\x30\\x8a\\x9e\\x7c\\xa0\\x05\\xe2\\xfa\\xec\\x09\\xba\\x40\\x48\\xd2\\x50\\x85\\x4b\\x62\\xe8\\x9d\\xae\\x25\\x8c\\xc1\\x34\\xaa\\x84\\x0a\\x21\\x7d\\xc9\\x18\\xff\\xee\\xee\\xfe\\xa0\\xc1\\x20\\x25\\x51\\xca\\xaf\\x74\\x45\\xb1\\x37\\x3e\\xff\\xe1\\xdd\\x3a\\x47\\xc5\\x3d\\x12\\xed\\xdf\\x8d\\x18\\x7e\\x71\\x54\\x36\\x71\\x47\\x1e\\xd9\\xde\\xc2\\x6a\\xee\\xdf\\x1b\\x3d\\x96\\x69\\xee\\x17\\x29\\xef\\xbe\\xc4\\xef\\x31\\x80\\x3f\\x0c\\x4b\\x32\\x74\\x22\\x5c\\xa3\\xfc\\x4e\\x95\\x87\\x6b\\xfc\\xc9\\xd5\\x12\\x69\\xdc\\xa1\\x44\\x55\\x41\\xff\\x2e\\x72\\x5c\\xea\\x95\\xaa\\xa9\\xea\\x78\\x6e\\x23\\x59\\xe2\\xf8\\xa7\\xe3\\x0b\\xc7\\x17\\x8e\\x1b\\x64\\xc9\\xfa\\x97\\x1c\\x75\\xa4\\x0f\\xe9\\x4e\\x7a\\x93\\x00\\x47\\xed\\x4a\\x5a\\xf3\\xa0\\x88\\x0e\\x79\\xf0\\x31\\xad\\x69\\xa1\\x65\\x0f\\xae\\xd3\\xfe\\x0f\\xd6\\x01\\x71\\x7d\\x1f\\xe0\\x3f\\xf3\\xf7\\xfe\\xaf\\xfc\\xdd\\x64\\xfe\\x53\\x4b\\x49\\xa6\\xe3\\x17\\xc7\\x1d\\xc7\\xcf\\x8e\\x9f\\xc9\\x84\\x8d\\xab\\x1d\\x6f\\x10\\x2f\\x07\\xa1\\xc4\\xdb\\xf1\\xc6\\x7c\\x72\\xc5\\x11\\x4c\\x9e\\x77\\xbc\\x4c\\xae\\xb4\\x90\\x53\\x8e\\x0d\\xa4\\xc4\\x91\\xe2\\xda\\x6f\\x7b\\x91\\x8f\\xa5\\x5a\\x38\\x2d\\xc7\\xb0\\x1f\\x00\\x9f\\x2a\\xc7\\xcc\\x50\\x50\\x9e\\xc9\\xba\\xe6\\x98\\x8b\\xdf\\x47\\x9d\\x8b\\x31\\x63\\xa4\\x76\\x5e\\xcd\\xc2\\x21\\x95\\xac\\x72\\x56\\x00\\x4c\\x8c\\x52\\x7e\\x17\\x90\\xbc\\xeb\\xfc\\x37\\xfd\\x56\\x23\\x00\\x83\\xce\\xca\\x2f\\x4c\\x2a\\xbf\\xf1\\x95\\x98\\x0e\\x94\\xba\\x7e\\xc4\\x6e\\x90\\x1e\\x7f\\xfb\\x4d\\xcf\\xa2\\xd4\\x6f\\x98\\xa0\\xef\\x5c\\xf7\\xfc\\xc9\\xf1\\x7b\\x9a\\xd9\\x3c\\x7a\\xb4\\xd9\\x9c\\x46\\xfe\\xc5\\xde\\xf8\\xed\\xad\\xe1\\x63\\xc7\\x0e\\x4f\\x48\\x4f\\x97\\xda\\x49\\x9a\\x67\\x93\\xbd\\xbb\\xdf\\xcc\\x78\\xb6\\x73\\xe2\\xcf\\xe0\\xe3\\x29\\xbf\\x45\\xf7\\xfc\\x6d\\xff\\x30\\x49\\xfe\\x7d\\xd9\\xb1\\xe9\\xf7\\xfd\\x1e\\x7c\\xe8\\xf1\\xba\\x67\\x39\\x00\\x78\\x01\\xc5\\xd7\\xec\\x12\\x00\\xcf\\xdc\\x07\\x1f\\x02\\x78\\xd5\\xdf\\xf7\\xfb\\xfd\\xa8\\xc7\\xeb\\x32\\x92\\xea\\x1f\\x07\\x2e\\x62\\x4a\\x74\\x1d\\x24\\x9e\\x8b\\x10\\xc5\\x45\\x58\\xcf\\x45\\x18\\xc2\\x45\\xc8\\xe2\\x22\\xf9\\x98\\x8b\\x64\\x06\\x17\\x49\\x22\\x17\\xa1\\x9e\\x8b\\x50\\xcc\\x45\\x92\\xcb\\x45\\xf8\\x95\\x8b\\xe4\\x02\\x17\\xe1\\x1b\\x2e\\xc2\\x3a\\x2e\\xc2\\x9f\\xb9\\x08\\x63\\xb8\\x08\\xcf\\x72\\x11\\x8c\\x5c\\x84\\xcd\\x5c\\x84\\x45\\x5c\\x84\\x6c\\xc4\\x5b\\xc4\\x45\\xf2\\x15\\x17\\xc9\\x5f\\xb9\\x08\\x7b\\xb8\\x08\\x7b\\xb9\\x08\\xfb\\xb9\\x08\\x07\\x91\\x33\\x9a\\x8b\\x50\\xc3\\x45\\x98\\xce\\x45\\x78\\x85\\x8b\\xd0\\xc0\\x45\\x68\\xe6\\x22\\xcc\\xe0\\x22\\x2c\\xe3\\x22\\xbc\\xc6\\x45\\x98\\xcd\\x45\\xd8\\x88\\x65\\x56\\x72\\x11\\x5e\\x42\\xfd\\x7d\\x8a\\xad\\x50\\xc7\\x45\\xb0\\x71\\x11\\x22\\xb1\\x4c\\x04\\x17\\x21\\x9c\\x8b\\x20\\xd5\\x2b\\x94\\x8b\\x90\\xcf\\x45\\x52\\xaf\\xd8\\x4c\\xaa\\xb9\\x08\\x9f\\x29\\x76\\x12\\xa9\\xdc\\x0a\\x2e\\xc2\\x0e\\x2e\\xc2\\x52\\x2e\\xc2\\xf3\\x68\\xfb\\x2a\\x2e\\xc2\\x62\\x2e\\xc2\\x56\\x2e\\xc2\\xbb\\x5c\\x84\\x4f\\xb9\\x08\\xdb\\xb8\\x08\\x6f\\x71\\x11\\x26\\x61\\xbe\\x1d\\xf3\\x16\\x73\\x91\\x44\\xa0\\x7d\\x2f\\x61\\x1d\\x25\\x9d\\x41\\x5c\\x04\\x2b\\x17\\x61\\x04\\x17\\x61\\x0d\\x17\\xc9\\x08\\x2e\\xd2\\x9e\\x5c\\x24\\xa9\\xca\\x35\\xf2\\x4f\\xf4\\x5f\\x29\\x17\\xe1\\x19\\x2e\\x42\\x1f\\x2e\\x92\\xdb\\x4a\\x59\\xe2\\xcf\\x45\\x98\\xc6\\x45\\xd2\\x9d\\x8b\\x70\\x9e\\x8b\\x70\\x0a\\xdb\\xc4\\x83\\x8b\\x64\\x16\\x17\\xa1\\x96\\x8b\\x24\\x92\\x8b\\x24\\x8a\\x8b\\x44\\xb2\\xf5\\x28\\x17\\xe1\\x7d\\xa5\\x3c\\x39\\xcb\\x45\\xb2\\x9c\\x8b\\xc4\\x07\\xdb\\x28\\x81\\x8b\\xd0\\x8f\\x8b\\x30\\x90\\x8b\\x70\\x91\\x8b\\x10\\x84\\x7e\\x8b\\xe3\\x22\\x6c\\x42\\x7b\\x0d\\x5c\\x84\\x58\\xac\\x93\\xab\\x5e\\x3d\\xb1\\xbe\\x4b\\xb8\\x08\\xe9\\xd8\\x66\\x92\\xce\\x25\\x2e\\xc2\\x6e\\x2e\\x42\\x23\\xe6\\x1b\\xb8\\x48\\x0e\\x63\\x8c\\x48\\xf5\\x98\\x8b\\x3e\\xdd\\x88\\x7c\\x4d\\xe8\\x6b\\x7f\\x2e\\x92\\x61\\x5c\\x24\\xd7\\xb9\\x48\\x6a\\xb8\\x48\\x24\\x5f\\x2d\\xe7\\x22\\x7c\\xc1\\x45\\x72\\x84\\x8b\\xf7\\x8f\\x71\\xf1\\x81\\x9d\\x8b\\xf7\\x97\\x70\\xf1\\x41\\x12\\x17\\xef\\xfb\\x71\\xf1\\xc1\\x00\\x2e\\xd2\\x68\\x2e\\x12\\xce\\x45\\x3a\\x8c\\x8b\\xb0\\x0b\\xe3\\xd3\\x8a\\xfe\\x5d\\xae\\xf8\\x56\\xb6\\x59\\x8a\\xbd\\x89\\x8a\\xdf\\xa0\\x12\\xed\\x8b\\xe1\\x22\\xcc\\x41\\x7b\\xa4\\xd8\\x95\\xda\\xfe\\x18\\x1e\\x52\\x9d\\x25\\xbb\\x67\\x72\\x11\\x36\\x70\\x11\\x66\\xa1\\xfd\\x52\\xd9\\x2a\\x8c\\xdf\\xf1\\x5c\\x84\\x91\\xe8\\x27\\x49\\xf6\\x42\\xde\\x12\\xf4\\x67\\x09\\x72\\x48\\xf8\\xaf\\xa2\\x7f\\x3c\\xd1\\x0e\\x29\\x4e\\x43\\xb8\\x08\\xbd\\xf1\\xfa\\x6e\\xe4\\x98\\x85\\x71\\x3f\\x07\\xcb\\xa4\\x2a\\xf1\\x09\\x52\\x7b\\x2d\\x44\\xae\\xdd\\x58\\xcf\\x3e\\x18\\x8f\\x6b\\xd0\\x76\\x03\\xc6\\xe5\\x1a\\x3c\\x24\\x3f\\x4c\\xc5\\xb4\\x14\\xf7\\x85\\x98\\x27\\xc5\\xfd\\x7c\\xc4\\x9a\\xc7\\x45\\xc8\\x54\\xda\\xca\\xf9\\x29\\xc6\\xf8\\x00\\xb4\\xdd\\x1b\\xcb\\x66\\x63\\xcc\\x0e\\xc0\\xfe\\x54\\x86\\x76\\x67\\xa0\\x7f\\x66\\x62\\xfd\\x25\\x9c\\xa7\\xd1\\xd7\\x87\\xb1\\x7d\\xa7\\x60\\x5f\\xed\\xc2\\x45\\x30\\x71\\x11\\x2c\\xd8\\xa7\\xa7\\x63\\xbb\\x8c\\xc4\\x36\\x79\\x16\\x39\\xa4\\x78\\x3d\\x21\\x8d\\x27\\x00\\x0e\\x27\\x80\\xe3\\x01\\x80\\xf3\\x2b\\x00\\xe8\\x0a\\x70\\xff\\x18\\xc0\\x03\\x5f\\x8c\\xcf\\x6d\\x18\\x3b\\x8d\\xd8\\xee\\x8d\\x38\\x4e\\x48\\x7d\\xe6\\x09\\x2e\\xc2\\x60\\xe4\\xc8\\x43\\x3b\\x73\\x91\\x63\\x2c\\xc6\\xfb\\x93\\x58\\xff\\x25\\x4a\\xec\\x3a\\xef\\x71\\x11\\xfa\\x63\\x5f\\x69\\x40\\xcc\\x1d\\xd8\\x56\\x2b\\xd0\\xaf\\xd1\\x18\\x03\\x93\\xb0\\xae\\x33\\xb1\\xff\\x4a\\x98\\x87\\xb8\\x08\\x6f\\x72\\x11\\xfc\\xb1\\x5d\\xb3\\xb0\\x5e\\xf3\\xb0\\x1d\\x53\\xb8\\x08\\x66\\xf4\\x07\\xfc\\xbf\\x3c\\x8c\\x78\\xec\\xe6\\x22\\xb9\\xc9\\x45\\xf2\\x0e\\x17\\xc9\\x39\\x2e\\x92\\x37\\xb9\\x48\\xcc\\x5c\\x24\\x41\\x4a\\x5f\\x97\\xc7\\x0a\\x69\\xbc\\xd9\\xc4\\x45\\x22\\xf9\\xe9\\x24\\x17\\x21\\x49\\x19\\x03\\xe4\\x3e\\xaf\\xe3\\x22\\xe9\\xc4\\x45\\x32\\x1c\\xe3\\x4b\\x6a\\xeb\\x17\\x14\\x1d\\x38\\x8d\\x31\\x51\\x8c\\x63\\xf4\\x74\\xf4\\xe1\\x13\\xd8\\x66\\xf3\\xd0\\x1f\\x52\\xdd\\x76\\x72\\x11\\x86\\x62\\x1c\\xfd\\x88\\x3e\\x97\\xf2\\x5a\\xb1\\xef\\xac\\xc0\\xb1\\x09\\x30\\x76\\x3a\\x2b\\xe3\\xb4\\x34\\x0e\\x4a\\xf9\\x52\\x7f\\x75\\xde\\xe7\\x22\\xf1\\xe2\\x22\\x09\\xe3\\x22\\xb9\\x81\\xfd\\xe6\\x75\\x6c\\xa3\\x7d\\x88\\x23\\xcd\\x09\\x45\\xe8\\xbf\\xcb\\x5c\\x84\\x2d\\xd8\\x36\\x27\\x30\\x4e\\x8e\\x70\\x11\\xca\\xb1\\x4d\\xd6\\x72\\x11\\x5e\\x46\\xbf\\x37\\x63\\x9d\\xa4\\x36\\x1e\\x87\\xbe\\x6b\\xe1\\x22\\x91\\xda\\xc0\\x81\\x73\\x4c\\x2b\\xce\\x3f\\x27\\x31\\x4e\\x0f\\xe3\\x58\\x7a\\x92\\x8b\\x24\\x81\\x8b\\x64\\x26\\x17\\x49\\x2c\\x17\\x49\\x38\\x17\\x89\\x9e\\x8b\\x24\\x1a\\xed\\x0f\\xc6\\xeb\\x23\\xf0\\xda\\x05\\x2e\\x92\\x3b\\xca\\xb8\\x4b\\xa4\\x3a\\x15\\x70\\x91\\x64\\xa0\\xff\\x0e\\x2b\\xf3\\x03\\xd9\\x86\\xf3\\x60\\x2a\\xd6\\x6b\\x34\\xfa\\x6c\\x2b\\xce\\x69\\xbb\\x31\\x76\\x96\\x61\\x5c\\x2d\\xe0\\x22\\x08\\xca\\x78\\x28\\xfb\\xf0\\x57\\xfe\\x9d\\xf3\\x73\\xe5\\x80\\x6e\\x38\\x8f\\xbd\\x84\\xf1\\xf8\\xb8\\x63\\x3a\\xfa\\x4a\\x7d\\xbc\\xd6\\xe1\\x70\\xcd\\x93\\x1d\\x8f\\x65\\x1d\\x8e\\x50\\xec\\x03\\x8f\\x3b\\x96\\xe2\\x38\\xa4\\x3e\\xde\\xea\\x70\\x6c\\x55\\xcd\\x1f\\xea\\x63\\x4f\\x87\\x63\\x04\\x1e\\xd1\\x88\\xdd\\x51\\x4e\\x47\\xbe\\xc7\\xc9\\x57\\x34\\x79\\x72\\x5c\\x37\\xa0\\x1d\\xff\\x4d\\xce\\xc0\\xbe\\xfd\\x38\\xb9\\x0c\\x6d\\x7f\\x0d\\xeb\\xf1\\x28\\xf9\\xae\\x6a\\x1d\\x72\\x11\\xe7\\xb6\\x6d\\xb8\\x1e\\x79\\x4b\\x2d\\x35\\x79\\x28\\xf7\\xcb\\xf2\\x25\\xc4\\xee\\x20\\x9d\\x2b\\x55\\xe3\\x63\\x47\\x59\\x87\\xeb\\x09\\x49\\x7a\\xe3\\xda\\xe6\\x1b\\x5c\\xdf\\x6c\\xfc\\x5f\\x48\\x57\\xec\\x44\\x62\\x5f\\x51\\xd2\\x3f\\xcb\\x72\\x19\\xb6\\xc1\\xff\\x56\\x86\\x63\\xbf\\x0d\\xc5\\x36\\xc3\\xb5\\x94\\x3c\\x67\\x74\\x94\\x41\\x38\\x3f\\xc5\\x29\\xf5\\x70\\x5e\\x50\\x0e\\xd9\\x86\\x41\\xff\\xe1\\x78\\x56\\x35\\x27\\xbb\\x8e\\xcb\\x1d\\x0e\\xd7\\x38\\xd0\\xf1\\x68\\xee\\x70\\x18\\x1f\\x81\\xad\\x3e\\x6a\\x1f\\xc1\\x75\\x0c\\xc7\\x20\\xf5\\xf1\\xea\\x23\\x6c\\x50\\x8f\\x4f\\xaf\\xe1\\x18\\xe5\\x3a\\x8e\\xa8\\x0e\\xb5\\x7d\\x6b\\x55\\xc7\\xcb\\x1d\\x8e\\x2c\\xd5\\x58\\xf6\\xa8\\xe3\\x49\\xd5\\xbc\\xd0\\xa2\\x3a\\xa2\\x35\\x11\\xce\\xb3\\x9a\\x08\\xe7\\x79\\x4d\\x84\\xf3\\x7d\\xfe\\xa5\\xf3\\x4d\\x4d\\x84\\x73\\x31\\xff\\x52\\x9e\\xdb\\x8f\\xa9\\xd6\\xd3\\x0d\\xd8\\x36\\xae\\x35\\xf4\\xc6\\x47\\xac\\x9d\\x23\\xb1\\x4d\\xe3\\x51\\x27\\x14\\xd7\\x3f\\x2b\\x54\\x6b\\xa5\\x2a\\x5c\\xfb\\xd9\\x71\\xee\\x9c\\x84\\x6b\\x0c\\xd7\\x35\\x3b\\xca\\x91\\xaa\\x79\\xd5\\xa6\\x1a\\x83\\x66\\x63\\xec\\x6f\\xc4\\x35\\x85\\xcb\\xbe\\x5d\\xa8\\xbf\\x12\\x8f\\x65\\x68\\xd7\\x1a\\xb4\\x6d\\x3a\\xda\\x67\\x44\\xfb\\x56\\xa8\\xd6\\x42\\xae\\x35\\xea\\x52\\x8c\\x4b\\x2b\\x5e\\xdb\\x8d\\x3c\\xef\\x62\\x7f\\xfc\\x14\\xeb\\x31\\x42\\x15\\xcb\\x1d\\x25\\xc6\\xb6\\x7c\\xbf\\x13\\xef\\x55\\x4f\\xde\\x55\\xfa\\xb8\\x34\\x07\\xcb\\x76\\x4d\\x6a\\x1b\\x9b\\x9c\\xb3\\x55\\x36\\xbb\\x6c\\x99\\x88\\xeb\\xc4\\x2e\\x68\\xef\\x44\\xbc\\xe6\\x1a\\xaf\\x42\\x71\\x8d\\xf8\\x1a\\xae\\x0d\\xfb\\x60\\xba\\xe3\\xb8\\xe7\\xea\\x3f\\xae\\x71\\x6b\\x22\\xae\\x7f\\x9a\\x54\\xe5\\x5c\\xd8\\x2b\\x91\\xdb\\x25\\x5d\\x63\\x87\\x6b\\x2d\\xe6\\x92\\xa9\\x38\\xaf\\xf7\\x46\\x1f\\x74\\x94\\xbb\\xd1\\xef\\x73\\x70\\x6d\\x10\\x8f\\xbe\\x7c\\x1e\\xd7\\x01\\x86\\xc7\\x8f\\xd3\\xce\\x6b\\x5c\\x74\\xfe\\xf5\\x3f\\x8c\\xe3\\xff\\x5b\\xf9\\x5f\\xc6\\x6f\\xe7\\x3f\\x90\\xe7\\x71\\x7a\\x1d\\xc7\\xe9\\xc7\\x8c\\xab\\xce\\xab\\x5c\\x74\\x5e\\xfe\\x0f\\xe3\\xae\\xeb\\xde\\xe5\\xbf\\xc9\\x8e\\x63\\xa4\\xeb\\x5e\\xe7\\xbf\\x49\\xf5\\x18\\xda\\x26\\xbf\\x83\\xe7\\xe5\\x43\\xe9\\x23\\xd5\\x88\\xbb\\x06\\x63\\xc9\\xaa\\x6a\\x13\\x57\\x5b\\xb9\\xe4\\x2e\\x4c\\x63\\x6c\\xb8\\xd7\\xb7\\x12\\x4e\\x0f\\x2e\\x3a\\xdf\\xc5\\xe3\\x36\\x17\\x9d\\xdf\\xf1\\x2f\\x9d\\xbf\\xf2\\x2f\\x9d\\xd7\\xa5\\x98\\x81\\x35\\xb0\\x0c\\xd6\\xc0\\x4a\\x58\\x0c\\x21\\x60\\x80\\x50\\x88\\x81\\x78\\xb0\\xc2\\x0a\\xf0\\x03\\xa3\\xbc\\x85\\xf0\\x6e\\xbb\\x0d\\x83\\x48\\x68\\x20\\xfd\\xc9\\x29\\x9a\\x4f\\xab\\xe8\\x29\\xfa\\x2d\\xeb\\xcb\\x52\\xd8\\x2c\\xb6\\x94\\xb5\\xb0\\x73\\x7c\\x20\\x1f\\xc9\\xab\\xb8\\x43\\x13\\xad\\xd9\\xa0\\xa5\\xda\\xc1\\xda\\x66\\x8f\\xde\\x1e\\xc1\\x1e\\x89\\x1e\\x53\\x3c\\x16\\x7b\\x6c\\xf6\\xb8\\xef\\xf9\\xb5\\x57\\x4f\\xaf\\xc5\\x5e\\xb7\\xbc\\xc3\\xbc\\x67\\x78\\x2f\\xf7\\xfe\\xda\\xc7\\xcf\\x27\\xde\\xa7\\xc4\\x67\\x9b\\xcf\\x49\\x9f\\xdb\\xbe\\x3d\\x7d\\x0b\\x7c\\x5b\\x3a\\x79\\x77\\x9a\\xd4\\xe9\\x7c\\xa7\\xaf\\xfd\\x06\\xfa\\x19\\xfd\\x4a\\xfd\\x1a\\xfc\\xde\\xf6\\xbb\\xdb\\xb9\\x6f\\xe7\\xc8\\xce\\x53\\x3a\\x2f\\xea\\x5c\\xd3\\xf9\\x54\\x97\\x29\\x5d\\x6e\\xf8\\x67\\xf9\\x5f\\xed\\x1a\\xdf\\x75\\x71\\xb7\\xde\\xdd\\x66\\x75\\x6b\\xec\\x76\\xb7\\x7b\\x6c\\xf7\\xa2\\xee\\xd7\\x7a\\xc4\\xf7\\xa8\\xe9\\x49\\x7b\\x2e\\xea\\x79\\xb9\\x57\\x66\\xaf\\x13\\xbd\\x7d\\x7b\\x47\\xf6\\x2e\\xe8\\x5d\\xdf\\xfb\\x5a\\x1f\\xcf\\x3e\\x33\\xfb\\xcc\\xeb\\x73\\xa9\\x6f\\xbf\\xbe\\x59\\x7d\\xcf\\x07\\x0c\\x0c\\x68\\x0e\\xb8\\xd5\\xaf\\x6b\\xbf\\x4b\\x4f\\xc0\\x13\\xeb\\xfa\\xc7\\xf6\\x1f\\xd7\\x7f\\xc9\\x80\\xfe\\x03\\x62\\x07\\x2c\\x1d\\x70\\x42\\x17\\xa9\\x3b\\xa1\\xbb\\x1a\\x18\\x16\\x98\\x15\\xb8\\x22\\xf0\\x4c\\xe0\\x27\\x03\\x07\\x0f\\x8c\\x1e\\x98\\x31\\xb0\\x68\\xe0\\x2a\\xbd\\x9f\\x7e\\x8a\\x7e\\xb1\\xfe\\xde\\x20\\xe3\\xa0\\xab\\x41\\x4b\\x82\\x1c\\x83\\x47\\x0d\\x7e\\x67\\x48\\xe2\\x90\\xa5\\x43\\x9a\\x86\\xdc\\x1d\\x5a\\x36\\x74\\xd7\\xd0\\x4b\\x4f\\xf6\\x7e\\x32\\xe7\\xc9\\x6b\\xc1\\xeb\\x42\\xba\\x84\\x18\\x43\\x76\\x18\\xa8\\x61\\x9e\\xe1\\x62\\xe8\\xd0\\xd0\\xfc\\xd0\\xb7\\x43\\x6f\\x85\\xf9\\x85\\x25\\x85\\xe5\\x84\\xbd\\x33\\x8c\\x0e\\x9b\\x36\\x6c\\xf1\\xb0\\x77\\x86\\xdd\\x0e\\xef\\x1e\\xde\\x3f\\x3c\\x2b\\x7c\\x51\\xf8\\xb6\\xf0\\x13\\x11\\xdd\\x23\\xfa\\x45\\x0c\\x8f\\xc8\\x89\\x38\\x13\\x71\\x2d\\xd2\\x2f\\x32\\x2c\\x32\\x3f\\xf2\\x78\\xe4\\x4f\\x51\\xa3\\xa2\\xbd\\xa3\\x8f\\x47\\x5f\\x8b\\xc9\\x8a\\xb9\\x18\\xdb\\x3f\\x76\\x51\\xec\\x8d\\xb8\\xf0\\xb8\\xe3\\xf1\\x83\\xe3\\xd7\\xc4\\xdf\\x4d\\xc8\\x4c\\x38\\x3e\\x9c\\x0f\\x9f\\x34\\xfc\\xc4\\x08\\x18\\x31\\x67\\xc4\\x67\\x89\\xe1\\x89\\x3b\\x9e\\xd2\\x3e\\x35\\xeb\\xa9\\xf3\\x23\\x7b\\x8e\\x9c\\x34\\x72\\xc9\\xc8\\x0b\\x4f\\x7b\\x3e\\x3d\\xfa\\xe9\\xf3\\x4f\\x7f\\x9b\\x34\\x30\\x69\\x56\\x52\\x75\\xd2\\xe5\\xa4\\xfb\\xc9\\xe1\\xc9\\x0b\\x92\\xcf\\x19\\xa9\\x31\\xdf\\x78\\xc5\\xd4\\xcf\\xb4\\xc1\\x74\\xd3\\xac\\x35\\x8f\\x31\\x57\\x5b\\xb8\\x25\\xd8\\x32\\xcd\\x52\\x6d\\x39\\x6d\\xb9\\x91\\xc2\\x53\\x06\\xa7\\x2c\\x4f\\x39\\x9c\\x72\\x33\\xb5\\x7b\\xea\\xa8\\xd4\\x75\\xa9\\x57\\x47\\xf5\\x1d\\xb5\\x24\\xcd\\x3b\\x6d\\x4a\\xda\\xf9\\xd1\\xc1\\xa3\\x1b\\xd2\\x3d\\xd3\\xa7\\xa4\\x2f\\x4f\\x7f\\x6f\\x8c\\x6e\\x4c\\xc5\\xd8\\x81\\x63\\xdf\\x1e\\x07\\xe3\\xe2\\xc7\\x2d\\x1e\\x77\\x6e\\x7c\\xf7\\xf1\\xb3\\xc6\\x9f\\xcd\\xd0\\x65\\x1c\\x9c\\x10\\x3d\\xa1\\x76\\xc2\\xdd\\xcc\\xc4\\xcc\\xea\\x89\\x5d\\x27\\x1e\\x9d\\x34\\x65\\x72\\xd7\\xc9\\x67\\xa6\\x54\\x4f\\xf5\\x9b\\xba\\x6e\\xea\\xb7\\x59\\xa3\\xb2\\x56\\x65\\x5d\\xcf\\xee\\x97\\x1d\\x9b\\x9d\\x31\\xed\\xea\\xf4\\x59\\xd3\\x4f\\xce\\x08\\x9f\\x31\\x69\\xc6\\xa2\\x19\\xa7\\x67\\x38\\x9e\\x31\\x3e\\xb3\\xfc\\x99\\x53\\xcf\\xdc\\x9e\\xa9\\x9b\\x99\\x31\\x73\\xf3\\xcc\\xcf\\x9e\\x5d\\x90\\xd3\\x33\\x67\\x74\\xce\\xe2\\x9c\\x1b\\xd6\\x19\\xd6\\x6d\\xb9\\x3d\\x73\\xab\\x73\\xaf\\xe4\\xf5\\xcd\\xcb\\xcf\\x3b\\x9c\\xdf\\x3d\\xbf\\x20\\xff\\x83\\xfc\\x9b\\x36\\x6a\\x1b\\x65\\x3b\\x3f\\xcb\\x38\\xeb\\xf0\\xec\\xde\\xb3\\x57\\xcd\\xbe\\x57\\x50\\x52\\x70\\xb7\\x30\\xbf\\xf0\\xed\\x39\\xc1\\x73\\xaa\\xe6\\x7c\\x30\\xb7\\xff\\xdc\\xea\\xc7\\xfe\\xdf\\x36\\xb7\\x79\\xee\\xa9\\xb9\\x9f\\x14\\xd1\\xa2\\x81\\x45\\x61\\x45\\x89\\x45\\xa3\\x8b\\x16\\x17\\x35\\x15\\xdd\\x28\\xee\\x5e\\x3c\\xb0\\x38\\xb2\\x44\\x5b\\x12\\x5c\\x92\\x59\\x92\\x5f\\x72\\xd0\\xee\\x6d\\x5f\\x50\\x1a\\x59\\xba\\xe3\\xb9\\x81\\xcf\\x15\\x3d\\x77\\xfa\\xb9\\x9b\\x65\\xc1\\x65\\xc6\\xb2\\x99\\x65\\xf3\\xca\\xd6\\x95\\x7d\\x5b\\x0e\\xe5\\x03\\xcb\\x13\\xcb\\xb3\\xca\\xdf\\xab\\xf0\\xae\\x28\\xab\\xa8\\xaf\\x38\\x5e\\x71\\xa9\\xe2\\x4e\\xa5\\x5f\\xa5\\x5f\\xe5\\x9d\\x79\\xe3\\xe6\\x6d\\x98\\x77\\x75\\x7e\\xcf\\xf9\\xe6\\xf9\\xb9\\xf3\\x97\\xce\\x3f\\x3c\\xff\\xed\\xf9\\xf7\\x16\\x4c\\x5b\\x70\\x74\\xc1\\x9d\\x85\\x03\\x17\\x8e\\x5e\\xd8\\xbc\\xf0\\xf2\\xc2\\xdf\\x16\\x85\\x2f\\x9a\\xb9\\x68\\xd1\\xa2\\x96\\x45\\x97\\x9f\\xef\\xff\\xfc\\xa2\\xe7\\xcf\\x2d\\x0e\\x5f\\x9c\\xb1\\x78\\xc5\\xe2\\x83\\x8b\\x3f\\x79\\xc1\\xfb\\x85\\xf0\\x17\\xa6\\xbd\\xb0\\xed\\x05\\xe1\\x85\\x9b\\x4b\\x8c\\x4b\\xf2\\x97\\x34\\x2d\\xb9\\xfb\\xa2\\xdf\\x8b\\xcb\\x5e\\xbc\\xbc\\xd4\\x73\\x69\\xbf\\xa5\\xa3\\x97\\x6e\\x58\\x7a\\xfe\\x0f\\xf4\\x0f\\xa3\\xff\\x90\\xbb\\x8c\\x2e\\x4b\\x59\\x96\\xb5\\xac\\x66\\xd9\\xa9\\x97\\xf8\\x4b\\xfd\\x5f\\x1a\\xf3\\xd2\\xb2\\xe5\\x5d\\x97\\xc7\\x2f\\x9f\\xb9\\x7c\\xc5\\xf2\\x75\\xcb\\x37\\x2f\\xbf\\xfa\\xf2\\xa0\\x97\\x0b\\x5e\\xae\\x7d\\xf9\\xca\\x0a\\xbe\\xa2\\xff\\x8a\\x9a\\x15\\x77\\x56\\x8e\\x5c\\x79\\x7c\\xe5\\xe9\\x95\\xe7\\x57\\xbe\\xb3\\xaa\\xff\\xaa\\xd2\\x55\\x1f\\xbc\\xa2\\x7d\\x65\\xc9\\x2b\\xd5\\xaf\\x34\\xbc\\x72\\xfc\\x95\\x0b\\xaf\\x5c\\x7d\\xe5\\xdb\\x57\\xee\\x57\\xf9\\x56\\xf5\\xaf\\x0a\\xaf\\x32\\x56\\x4d\\xaa\\x9a\\x55\\xb5\\xa0\\xaa\\xaa\\x6a\\x5b\\xd5\\xe1\\xaa\\xb3\\x55\\xef\\x55\\xdd\\xa8\\xba\\xbb\\xda\\x73\\x75\\xdf\\xd5\\x86\\xd5\\x23\\x57\\x67\\xac\\xce\\x5d\\x5d\\xb1\\x7a\\xf9\\xea\\x9a\\xd5\\x8d\\xab\\x8f\\xaf\\xbe\\xb0\\xfa\\xca\\xea\\xaf\\x57\\xdf\\x5b\\xe3\\xb9\\xa6\\xf7\\x9a\\xa1\\x6b\\xa2\\xd7\\xa4\\xac\\xc9\\x5a\\x53\\xb0\\x66\\xc1\\x9a\\xaa\\x35\\xf5\\x6b\\x0e\\xae\\x39\\xb3\\xe6\\xd2\\x9a\\x2f\\xd6\\xdc\\x5e\\x4b\\xd7\\x76\\x5d\\x3b\\x68\\x6d\\xf4\\xda\\x94\\xb5\\x53\\xd6\\x16\\xac\\x5d\\xb0\\xf6\\xbd\\x75\\x05\\xeb\\x16\\xad\\x5b\\xb3\\x6e\\xc7\\x3a\\x61\\xdd\\xb9\\x75\\xef\\xad\\xbb\\xb1\\xee\\xce\\x7a\\xed\\xfa\\xae\\xeb\\x07\\xad\\x8f\\x5e\\x9f\\xb2\\x7e\\xca\\xfa\\x82\\xf5\\x0b\\xd6\\x5f\\xaa\\x1e\\x57\\x9d\\x53\\x5d\\x5a\\xbd\\xac\\x7a\\x43\\x75\\x63\\xf5\\xf1\\xea\\x0b\\xd5\\x57\\xaa\\x6f\\x56\\xdf\\x7b\\xd5\\xfb\\xd5\\x7e\\xaf\\x86\\xbd\\x9a\\xf4\\x6a\\xe6\\xab\\xf9\\xaf\\xce\\x7b\\x75\\xc5\\xab\\x57\\x37\\x8c\\xdc\\x90\\xb1\\x21\\x77\\x43\\xc5\\x86\\x15\\x1b\\x6a\\x37\\xb4\\x6c\\x38\\xbd\\xe1\\xd2\\x86\\x2f\\x36\\xfc\\xb4\\x91\\x6f\\xec\\xb9\\x71\\xe8\\xc6\\xe1\\x1b\\x47\\x6f\\x9c\\xb1\\xb1\\x64\\xe3\\xd2\\x8d\\xd5\\x1b\\x1b\\x36\\x1e\\xdf\\x78\\x7e\\xe3\\x95\\x8d\\x5f\\x6f\\xbc\\x57\\xe3\\x5d\\xd3\\xaf\\xc6\\x50\\x33\\xb2\\x26\\xa3\\x26\\xb7\\xa6\\xac\\x66\\x79\\x4d\\x4d\\x4d\\x53\\xcd\\x89\\x9a\\x8b\\x35\\x9f\\xd4\\xdc\\xaa\\x71\\x6c\\xea\\xb2\\x49\\xb7\\x29\\x72\\x93\\x79\\xd3\\xa4\\x4d\\xf9\\x9b\\x4a\\x37\\x2d\\xdb\\x54\\xb3\\xa9\\x69\\xd3\\xc9\\x4d\\x6f\\x6f\\xfa\\x6c\\xd3\\xf7\\x9b\\x1c\\x9b\\xbb\\x6c\\xd6\\x6d\\x8e\\xdc\\x6c\\xde\\x7c\\x72\\x4b\\xf0\\x96\\xc4\\x2d\\x63\\xb6\\xcc\\xdc\\x52\\xba\\x65\\xd9\\x96\\x9a\\x2d\\x4d\\x5b\\x4e\\x6e\\xb9\\xb8\\xe5\\x93\\x2d\\xdf\\x6e\\xb9\\x5f\\xeb\\x57\\xab\\xab\\x0d\\xaf\\x35\\xd6\\x4e\\xaa\\x9d\\x55\\xbb\\xa0\\x76\\x55\\x6d\\x6d\\x6d\\x4b\\xed\\xa9\\xda\\x77\\x6a\\x3f\\xab\\xfd\\xbe\\x0e\\xea\\xba\\xd4\\xe9\\xea\\xc2\\xeb\\x92\\xea\\x32\\xeb\\xf2\\xeb\\x2a\\xea\\x56\\xd4\\xd5\\xd6\\xb5\\xd4\\x9d\\xae\\xbb\\x54\\x77\\xad\\xee\\xfb\\x7a\\xa8\\xef\\x5a\\x3f\\xb0\\x3e\\xb2\\xde\\x58\\x9f\\x59\\x7f\\xb0\\xfe\\x74\\xfd\\x3b\\xf5\\x9f\\xd5\\xdf\\xaa\\xbf\\xbf\\xd5\\x77\\x6b\\xbf\\xad\\x86\\xad\\xcb\\xb6\\x6e\\xd8\\xda\\xb8\\xf5\\xf8\\xd6\\xf3\\x5b\\xaf\\x6c\\xbd\\xb9\\xf5\\xb7\\x6d\\xde\\xdb\\xfa\\x6e\\x2b\\xda\\xb6\\x78\\xdb\\xba\\x6d\\xbb\\xb6\\x1d\\xdd\\x76\\x7e\\xdb\\x95\\x6d\\x37\\xb7\\xfd\\xb6\\xdd\\x77\\x7b\\xbf\\xed\\x86\\xed\\x89\\xdb\\xc7\\x6d\\x9f\\xb9\\xbd\\x74\\xfb\\xd2\\xed\\xd5\\xdb\\x1b\\xb6\\x1f\\xdf\\x7e\\x7e\\xfb\\x95\\xed\\x5f\\x6f\\xbf\\xb7\\xc3\\x73\\x47\\xef\\x1d\\xc1\\x3b\\x12\\x77\\x6c\\xd8\\xd1\\xb8\\xe3\\xf8\\x8e\\xf3\\x3b\\xae\\xec\\xf8\\x7a\\xc7\\xdd\\x9d\\x74\\x67\\xf7\\x9d\\xba\\x9d\\x91\\x3b\\x47\\xee\\x1c\\xbd\\x73\\xca\\xce\\x82\\x9d\\xa5\\x3b\\x17\\xec\\x5c\\xba\\x73\\xd5\\xce\\xea\\x9d\\xb5\\x3b\\x77\\xed\\x6c\\xde\\x29\\xec\\x3c\\xb9\\xf3\\xec\\xce\\x8b\\x3b\\x2f\\xef\\xbc\\xba\\xf3\\xdb\\x9d\\xf7\\x77\\xf9\\xee\\xea\\xb7\\xcb\\xb0\\x6b\\xe4\\xae\\x8c\\x5d\\x59\\xbb\\x72\\x76\\x15\\xec\\x2a\\xdd\\xb5\\x60\\xd7\\xaa\\x5d\\xb5\\xbb\\x9a\\x77\\x9d\\xda\\xf5\\xce\\xae\\x6b\\xbb\\x6e\\xef\\xce\\xd9\\x5d\\xb0\\x7b\\xd1\\xee\\x65\\xbb\\xab\\x76\\x6f\\xdb\\x7d\\x78\\xf7\\x89\\xdd\\x67\\x76\\x5f\\xd8\\x7d\\x69\\xf7\\x17\\xbb\\x6f\\xee\\xbe\\xbd\\xfb\\x5e\\x03\\x34\\x78\\x36\\x74\\x69\\xe8\\xdd\\xa0\\x6b\\x18\\xda\\x10\\xde\\x10\\xdf\\x30\\xaa\\x21\\xa3\\x21\\xab\\xe1\\x78\\xc3\\xe9\\x86\\xf3\\x0d\\x1f\\x34\\xdc\\x68\\xb8\\xd5\\x70\\x67\\x0f\\xdf\\xe3\\xbb\\xa7\\xdf\\x1e\\xc3\\x9e\\x91\\x7b\\x32\\xf6\\xe4\\xee\\x29\\xdb\\xb3\\x7c\\x4f\\xcd\\x9e\\xa6\\x3d\\x27\\xf6\\x9c\\xd9\\x73\\x61\\xcf\\x7b\\x7b\\x6e\\xec\\xb9\\xb5\\xc7\\xd1\\xd8\\xa5\\x51\\xd7\\x18\\xde\\x68\\x6c\\x9c\\xd4\\x38\\xab\\x71\\x41\\x63\\x55\\xe3\\x86\\xc6\\xfa\\xc6\\x83\\x8d\\x67\\x1a\\x2f\\x37\\x5e\\x6f\\xbc\\xb3\\x57\\xbb\\xd7\\x6f\\x6f\\xcf\\xbd\\xfd\\xf7\\x86\\xef\\x4d\\xda\\x3b\\x6a\\xef\\xb4\\xbd\\x73\\xf6\\x2e\\xde\\xbb\\x66\\x6f\\xcd\\xde\\x6d\\x7b\\x0f\\xef\\x3d\\xb3\\xf7\\xf2\\xde\\xab\\x7b\\x6f\\xee\\xfd\\xad\\xc9\\xbb\\xa9\\x5f\\x93\\xa1\\x69\\x64\\x53\\x46\\x53\\x6e\\x53\\x59\\xd3\\xf2\\xa6\\x9a\\xa6\\x6d\\x4d\\x8d\\x4d\\x27\\x9a\\x2e\\x34\\x5d\\x6d\\xba\\xd9\\xf4\\xdb\\x3e\\xdf\\x7d\\xfd\\xf7\\x85\\xed\\x4b\\xda\\x97\\xb9\\x2f\\x7f\\x5f\\xc5\\xbe\\x15\\xfb\\x36\\xef\\x6b\\xd8\\x77\\x78\\xdf\\x89\\x7d\\xe7\\xf6\\x5d\\xda\\xf7\\xc5\\xbe\\x9f\\x9a\\x79\\x73\\xcf\\xe6\\xa1\\xcd\\xf1\\xcd\\xa3\\x9b\\xa7\\x35\\x17\\x35\\x2f\\x69\\xae\\x6e\\x6e\\x68\\x3e\\xdd\\xfc\\x41\\xf3\\xd7\\xcd\\x77\\xf7\\x7b\\xee\\xef\\xbd\\x3f\\x78\\xff\\xf0\\xfd\\x63\\xf6\\xcf\\xd8\\x3f\\x6f\\xff\\xba\\xfd\\xbb\\xf6\\x1f\\xdc\\x7f\\x66\\xff\\xe5\\xfd\\xd7\\xf7\\xff\\xd4\\xc2\\x5b\\xba\\xb7\\x0c\\x6e\\x89\\x6d\\x19\\xd5\\x32\\xad\\xa5\\xa8\\x65\\x49\\x4b\\x6d\\xcb\\xc1\\x96\\x33\\x2d\\x97\\x5b\\xae\\xb7\\xdc\\x39\\xa0\\x3d\\xd0\\xfb\\x40\\xf0\\x81\\xc4\\x03\\xe3\\x0e\\xcc\\x3c\\x50\\x7a\\x60\\xe9\\x81\\x0d\\x07\\x1a\\x0f\\x9c\\x38\\x70\\xf1\\xc0\\xf5\\x03\\xf7\\x0f\\xfa\\x1d\\xec\\x7f\\x30\\xfc\\xa0\\xf1\\xe0\\xa4\\x83\\xb3\\x0e\\x2e\\x38\\xb8\\xea\\x60\\xcd\\xc1\\xa6\\x83\\x27\\x0f\\x9e\\x3f\\x78\\xe5\\xe0\\xcd\\x83\\xbf\\x1d\\xf2\\x3e\\xd4\\xef\\x50\\xd8\\xa1\\xa4\\x43\\x99\\x87\\xf2\\x0f\\x55\\x1c\\x5a\\x71\\x68\\xc3\\xa1\\xc6\\x43\\x27\\x0e\\x5d\\x3c\\xf4\\xc9\\xa1\\x5b\\x87\\x1c\\x87\\xeb\\x0f\\x1f\\x3f\\x7c\\xe1\\xf0\\x7b\\x87\\xaf\\x1d\\xfe\\xf6\\xf0\\xdd\\x23\\xf4\\x88\\xdf\\x91\\xbe\\x47\\x06\\x1f\\x89\\x3c\\x32\\xf2\\xc8\\xe8\\x23\\x53\\x8e\\xe4\\x1e\\x29\\x39\\xb2\\xe8\\xc8\\x9a\\x23\\x3b\\x8e\\x34\\x1d\\xb9\\x27\\x8c\\x12\\x6a\\x85\\x0b\\xc2\\x9d\\xd6\\xe8\\xd6\\x79\\xad\\xd5\\xad\\x2d\\xad\\xa7\\x5b\\x2f\\xb5\\x7e\\xd1\\xfa\\xd3\\x51\\x7e\\xb4\\xe7\\xd1\\x31\\x47\\x97\\x1f\\x3d\\x7f\\x8c\\x1f\\xf3\\x3d\\xd6\\xff\\x58\\xb0\\xfc\\x3f\\x0b\\x08\\x00\\xf7\\x07\\x01\\x7a\\x82\\x1d\\x34\\x40\\x21\\x03\\x72\\x60\\x3e\\x00\\x7c\\xee\\xb3\\x05\\x98\\xfc\\xb9\\x43\\x67\\x38\\x25\\xa5\\xb8\\x17\\x00\\xcc\\x04\\xc0\\x34\\x81\\x41\\x30\\x13\\xd3\\x14\\xfc\\x60\\x19\\xa6\\x19\\x84\\x41\\x35\\xa6\\x39\\x0c\\x82\\x33\\x98\\xd6\\xc0\\x24\\xb8\\x8e\\x69\\x2d\\x0c\\x24\\xb1\\x98\\xf6\\x80\\xd1\\x24\\x0b\\xd3\\x5e\\xe0\\x4b\\x1a\\x30\\xed\\x03\\xdd\\xc9\\x61\\x4c\\xfb\\xc2\\x60\\x72\\x0e\\xd3\\x9d\\x60\\x06\\xb9\\x89\\x69\\x3f\\x98\\x44\\xcd\\x98\\xee\\x02\\x3d\\x69\\x2d\\xa6\\xfd\\xc1\\x97\\x1e\\x06\\x13\\xd8\\xa1\\x14\\x16\\x42\\x19\\x14\\xc2\\x6c\\x28\\x80\\x0a\\xd0\\x41\\x24\\x84\\x43\\x04\\xc4\\x80\\x0e\\x52\\xc1\\x0e\\x76\\x98\\x0d\\x45\\x60\\x03\\x1d\\xa4\\x41\\x09\\xe4\\x41\\x18\\xe8\\x20\\x19\\x8a\\xa0\\x08\\x74\\x90\\xe9\\x2e\\x55\\x2e\\x9f\\xd9\\xa0\\x1c\\x6c\\x50\\x06\\xf3\\xc0\\x06\\xf9\\x10\\x06\\x99\\x60\\x87\\x5c\\xb0\\x43\\x05\\xd8\\x41\\x07\\x63\\xc1\\x0e\\x25\\x98\\x92\\xae\\x17\\x42\\x25\\x14\\xcb\\xa5\\x66\\x43\\x25\\x14\\x81\\x15\\xca\\xda\\x31\\x0e\\x7f\\x4c\\xf9\\xe1\\x6e\\x0b\\xff\\x37\\xf8\\x53\\x64\\x8b\\xca\\xa1\\x50\\xbe\\x2a\\xd5\\x2e\\x0c\\xc2\\xe5\\xff\\x09\\x10\\x0f\\x31\\x30\\x42\\x55\\x63\\x29\\x5d\\x01\\x15\\x30\\x0b\\xac\\x50\\x29\\xa3\\x16\\x40\\x21\\x94\\xc8\\x5e\\x19\\x0a\\xf3\\x20\\x02\\xc2\\x20\\x0a\\x9e\\x6c\\xc7\\xeb\\x62\\x0d\\xed\\x50\\xab\\x47\\x5b\\x56\\x28\\x7b\\xca\\x2a\\xf3\\x94\\x81\\x15\\xf2\\xc1\\x06\\xc5\\x72\\xcd\\xe7\\x82\\x0e\\xec\\x30\\xab\\x83\\xd7\\xc3\\xda\\x9d\\xb5\\xbf\\x92\\x07\\x76\\x28\\x06\\x13\\x14\\xc8\\xad\\x57\\x0e\\x15\\x50\\x08\\x56\\xb9\\x8e\\x0a\\xbb\\x54\\x6f\\xa9\\x65\\x24\\xee\\x31\\x50\\x08\\x79\\x60\\x83\\x12\\xb9\\x85\\xf2\\x41\\x07\\x95\\x50\\x22\\xb3\\x97\\xc9\\xb6\\x14\\xc8\\x2d\\x9c\\x0c\\xa5\\x60\\x85\\x3c\\x3c\\x6b\\x5f\\xc6\\x00\\xba\\xc7\\xf8\\xb2\\x40\\xf6\\x59\\x29\\x0c\\x87\\x61\\x30\\x0c\\xe6\\xcb\\xff\\xc3\\xc0\\xaa\\xc2\\x0a\\x03\\x3b\\x94\\xc1\\x6c\\x18\\x06\\x45\\xed\\x30\\xcb\\x61\\x18\\x8c\\x81\\x34\\x30\\x81\\x05\\xc6\\xc1\\x44\\xb0\\x40\\x28\\x62\\x3e\\xda\\x7f\\x6a\\x0f\\xe3\\xe7\\x80\\xce\\x39\\x90\\x0f\\x8f\\xf8\\xc7\\xfd\\x41\\xfe\\x2d\\x51\\x60\\xa0\\x01\\x2d\\x78\\x80\\x27\\x78\\x81\\x37\\xf8\\x80\\x2f\\x74\\x02\\x3f\\xe8\\x0c\\x5d\\xc0\\x1f\\xba\\x42\\x37\\xe8\\x0e\\x3d\\xa0\\x27\\xf4\\x82\\xde\\xd0\\x07\\xfa\\x42\\x00\\xf4\\x83\\x27\\xa0\\x3f\\x0c\\x00\\x1d\\x04\\xc2\\x40\\xd0\\xc3\\x20\\x08\\x82\\xc1\\x30\\x04\\x86\\xc2\\x93\\x10\\x8c\\xf7\\x11\\x61\\x30\\x4c\\x8e\\x98\\x48\\x88\\x82\\x68\\x88\\x81\\x58\\x88\\x83\\x78\\x48\\x80\\xe1\\x30\\x02\\x12\\xe1\\x29\\x18\\x09\\x4f\\x43\\x12\\x24\\x83\\x11\\x4c\\x60\\x06\\x0b\\xa4\\x40\\x2a\\x8c\\x82\\x34\\x18\\x0d\\xe9\\x30\\x06\\xc6\\xc2\\x38\\x18\\x0f\\x19\\x30\\x01\\x32\\x61\\x22\\x4c\\x82\\xc9\\x30\\x05\\xa6\\x42\\x16\\x64\\xc3\\x34\\x98\\x0e\\x33\\xe0\\x19\\x98\\x09\\xcf\\x42\\x0e\\x58\\x61\\x0f\\x2c\\x87\\x97\\xe1\\xcf\\xb0\\x19\\x6e\\xc2\\x0a\\x58\\x07\\xab\\x61\\x3b\\xec\\x87\\x46\\xa8\\x22\\x0c\\x5e\\x82\\x8d\\xf0\\x13\\xfc\\x1b\\xd6\\xc2\\x16\\x58\\x45\\x38\\x5c\\x83\\x1f\\x61\\x07\\xb4\\xc0\\xcf\\x70\\x07\\xee\\x42\\x03\\x54\\xc3\\x6d\\x78\\x15\\xfe\\x05\\xaf\\xc0\\x2e\\xf8\\x16\\x4e\\xc2\\x6e\\xf8\\x9e\\x68\\xe0\\x23\\xa2\\x25\\x1e\\xc4\\x13\\xae\\xc3\\x3f\\x88\\x17\\xf1\\x06\\x01\\x5a\\x89\\x0f\\x34\\x11\\x5f\\xd2\\x89\\xf8\\x91\\xce\\xa4\\x0b\\xf1\\x87\\xab\\xf0\\x25\\x7c\\x0a\\x9f\\xc1\\xe7\\xf0\\x05\\x7c\\x0c\\xff\\x43\\xba\\x92\\x6e\\xa4\\x3b\\xe9\\x41\\x7a\\x92\\x5e\\xa4\\x37\\xe9\\x43\\xfa\\x92\\x00\\xd2\\x8f\\x3c\\x41\\xfa\\x93\\x01\\x44\\x47\\x02\\xc9\\x40\\xa2\\x27\\x83\\x60\\x27\\x09\\x22\\x83\\xc9\\x10\\x32\\x94\\x3c\\x49\\x82\\x49\\x08\\x31\\x90\\x50\\x12\\x46\\x86\\xc1\\x56\\x12\\x4e\\x22\\x48\\x24\\x89\\x22\\xd1\\x24\\x86\\xc4\\x92\\x38\\x12\\x4f\\x12\\xc8\\x70\\x32\\x82\\x24\\x92\\xa7\\xc8\\x48\\xf2\\x34\\x49\\x22\\xc9\\xc4\\x48\\x4c\\xc4\\x4c\\x2c\\x24\\x85\\xa4\\x92\\x51\\x24\\x8d\\x8c\\x26\\xe9\\x64\\x0c\\x19\\x4b\\xc6\\x91\\xf1\\x24\\x83\\x4c\\x20\\x99\\x64\\x22\\x99\\x44\\x26\\x93\\x29\\x64\\x2a\\xc9\\x22\\xd9\\x64\\x1a\\x99\\x4e\\x66\\x90\\x67\\xc8\\x4c\\xf2\\x2c\\xc9\\x21\\x56\\x92\\x4b\\xf2\\x48\\x3e\\xb1\\x91\\x59\\x64\\x36\\x29\\x20\\x85\\x64\\x0e\\x99\\x4b\\x8a\\x48\\x31\\x29\\x21\\x76\\x52\\x4a\\x9e\\x23\\x65\\xa4\\x9c\\x54\\x90\\x4a\\x32\\x8f\\xcc\\x27\\x0b\\xc8\\x42\\xb2\\x88\\x3c\\x4f\\x16\\x93\\x17\\xc8\\x12\\xf2\\x22\\x59\\x4a\\xfe\\x40\\x96\\x91\\x97\\xc8\\x72\\xf2\\x32\\x59\\x41\\x56\\x92\\x55\\xe4\\x15\\x52\\x45\\x56\\x93\\x35\\x64\\x2d\\x59\\x47\\xd6\\x93\\x6a\\xf2\\x2a\\xd9\\x40\\x36\\x92\\x1a\\xb2\\x89\\x6c\\x26\\x5b\\x48\\x2d\\xa9\\x23\\xf5\\x64\\x2b\\xd9\\x46\\xb6\\x93\\x1d\\x64\\x27\\xd9\\x45\\x76\\x93\\x06\\xb2\\x87\\x34\\x92\\xbd\\xa4\\x89\\xec\\x23\\xcd\\x64\\x3f\\x69\\x21\\x07\\xc8\\x41\\x72\\x88\\x1c\\x26\\x47\\x88\\x40\\x5a\\xc9\\x51\\x72\\x8c\\x1c\\x27\\xaf\\x91\\x13\\xe4\\x75\\x72\\x92\\xfc\\x91\\x9c\\x22\\x7f\\x22\\xa7\\xc9\\x9f\\xc9\\x19\\xf2\\x17\\x72\\x96\\xfc\\x1f\\x72\\x8e\\xbc\\x41\\xce\\x93\\x37\\xc9\\x05\\xf2\\x16\\xb9\\x48\\xfe\\x4a\\xde\\x26\\x7f\\x23\\xef\\x10\\x91\\x5c\\x22\\xef\\xc2\\x51\\x38\\x46\\x2e\\xc3\\x09\\x78\\x1d\\xce\\x93\\xbf\\xc3\\x71\\x78\\x0d\\xde\\x84\\x65\\x70\\x0e\\x56\\x92\\xf7\\xe0\\x00\\x5c\\x80\\x33\\xf0\\x17\\x38\\x4d\\xde\\x27\\x1f\\x90\\x0f\\xc9\\x15\\xf2\\x11\\xb9\\x4a\\x3e\\x26\\x9f\\xc0\\x1a\\xf2\\x29\\xf9\\x8c\\x7c\\x4e\\xae\\x91\\xff\\x81\\x5a\\xa8\\x87\\x3a\\xf8\\x01\\xf6\\xc2\\x06\\xd8\\x06\\xfb\\x60\\x3d\\xd4\\xc0\\x26\\xf8\\x23\\xf9\\x82\\x7c\\x49\\xae\\x93\\x7f\\x90\\x1b\\xe4\\x2b\\xf2\\x35\\xf9\\x27\\xb9\\x49\\xbe\\x21\\xdf\\x92\\xef\\xc8\\x2d\\xf2\\x2f\\xf2\\x3d\\xf9\\x81\\xdc\\x26\\x3f\\x92\\x9f\\xc8\\xbf\\xc9\\x1d\\xf2\\x33\\xb9\\x4b\\x7e\\x21\\xf7\\xc8\\xaf\\xe4\\x37\\xf2\\x3b\\xb9\\x4f\\x1e\\x10\\x07\\x71\\x52\\xa0\\x84\\x52\\xca\\x28\\xa7\\x1a\\xaa\\xa5\\x1e\\xd4\\x93\\x7a\\x51\\x6f\\xea\\x43\\x7d\\x69\\x27\\xea\\x47\\x3b\\xd3\\x2e\\xd4\\x9f\\x76\\xa5\\xdd\\x68\\x77\\xda\\x83\\xf6\\xa4\\xbd\\x68\\x6f\\xda\\x87\\xf6\\xa5\\x01\\xb4\\x1f\\x7d\\x82\\xf6\\xa7\\x03\\xa8\\x8e\\x06\\xd2\\x81\\x54\\x4f\\x07\\xd1\\x20\\x3a\\x98\\x0e\\xa1\\x43\\xe9\\x93\\x34\\x98\\x86\\x50\\x03\\x0d\\xa5\\x61\\x74\\x18\\x0d\\xa7\\x11\\x70\\x90\\x46\\xd2\\x28\\xf8\\x86\\x46\\xd3\\x18\\x1a\\x0b\\x87\\xe0\\xaf\\xf0\\x16\\x1c\\x86\\x5c\\xc8\\xa3\\x71\\x90\\x0f\\x7f\\x03\\x1b\\x5c\\x84\\xb7\\xe1\\x5d\\x78\\x07\\x44\\xb8\\x04\\xb3\\xe0\\x7d\\xb8\\x0c\\x7f\\x87\\x23\\x30\\x1b\\xae\\xc0\\x07\\xf0\\x21\\x14\\xc0\\x77\\x30\\x07\\x0a\\x61\\x2e\\x14\\x43\\x11\\x94\\xd0\\x78\\xb0\\xc3\\x73\\x50\\x2a\\x8f\\x63\\xd2\\x18\\x3f\\x0f\\xe6\\xc3\\x02\\x58\\x04\\x0b\\xe1\\x79\\x78\\x01\\x16\\xc3\\x8b\\xb0\\x04\\x96\\xc2\\x1f\\xe0\\x16\\x9c\\xa2\\x09\\x74\\x38\\x1d\\x41\\x13\\xe9\\x53\\x74\\x24\\x3c\\x00\\x07\\x7d\\x9a\\x26\\xd1\\x64\\x6a\\x04\\x27\\x01\\x6a\\xa2\\x66\\x6a\\xa1\\x29\\x34\\x95\\x8e\\xa2\\x69\\x74\\x34\\x4d\\xa7\\x63\\xe8\\x58\\x3a\\x8e\\x8e\\xa7\\x19\\x70\\x0f\\x7e\\xa5\\x13\\x68\\x26\\x9d\\x48\\x27\\xd1\\xc9\\x74\\x0a\\x9d\\x4a\\xb3\\x68\\x36\\x9d\\x46\\xa7\\xd3\\x19\\xf4\\x19\\x3a\\x93\\x3e\\x4b\\x73\\xa8\\x95\\xe6\\xd2\\x3c\\x9a\\x4f\\x6d\\x74\\x16\\x9d\\x4d\\x0b\\x68\\x21\\x9d\\x43\\xe7\\xd2\\x22\\x5a\\x4c\\x4b\\xa8\\x9d\\x96\\xd2\\xe7\\x68\\x19\\x2d\\xa7\\x15\\xb4\\x92\\xce\\xa3\\xf3\\xe9\\x02\\xba\\x90\\x2e\\xa2\\xcf\\xd3\\xc5\\xf4\\x05\\xba\\x84\\xbe\\x48\\x97\\xd2\\x3f\\xd0\\x65\\xf0\\x3b\\xdc\\xa7\\x2f\\xd1\\xe5\\x70\\x03\\xbe\\xa2\\x2f\\xd3\\x15\\x74\\x25\\x5d\\x45\\x5f\\xa1\\x55\\x74\\x35\\x5d\\x43\\xd7\\xd2\\x75\\x74\\x3d\\xad\\xa6\\xaf\\xd2\\x0d\\x74\\x23\\xad\\xa1\\x9b\\xe8\\x66\\xba\\x85\\xd6\\xd2\\x3a\\x5a\\x4f\\xb7\\xc2\\x9f\\xe8\\x36\\xba\\x9d\\xee\\xa0\\x3b\\xe1\\x6b\\xf8\\x27\\xdd\\x45\\x77\\xd3\\x06\\xba\\x87\\x36\\xd2\\xbd\\xb4\\x89\\xee\\xa3\\xcd\\x74\\x3f\\x6d\\xa1\\x07\\xe8\\x41\\x7a\\x88\\x1e\\xa6\\x47\\xa8\\x40\\x5b\\xe9\\x51\\x7a\\x8c\\x1e\\xa7\\xaf\\xd1\\x13\\xf4\\x75\\x7a\\x92\\xfe\\x91\\x9e\\xa2\\x7f\\xa2\\xa7\\xe9\\x9f\\xe9\\x19\\xfa\\x17\\x7a\\x96\\xfe\\x1f\\x7a\\x8e\\xbe\\x41\\xcf\\xd3\\x37\\xe9\\x05\\xfa\\x16\\xbd\\x48\\xff\\x4a\\xdf\\xa6\\x7f\\xa3\\xef\\x50\\x91\\x5e\\xa2\\xef\\xd2\\xcb\\xf4\\xef\\xf4\\x3d\\xfa\\x3e\\xfd\\x80\\x7e\\x48\\xaf\\xd0\\x8f\\xe8\\x55\\xfa\\x31\\xfd\\x84\\x7e\\x4a\\x3f\\xa3\\x9f\\xd3\\x6b\\xf4\\x7f\\xe8\\x17\\xf4\\x4b\\x7a\\x9d\\xfe\\x83\\xde\\xa0\\x5f\\xd1\\xaf\\xe9\\x3f\\xe9\\x4d\\xfa\\x0d\\xfd\\x96\\x7e\\x47\\x6f\\xd1\\x7f\\xd1\\xef\\xe9\\x0f\\xf4\\x36\\xfd\\x91\\xfe\\x44\\xff\\x4d\\xef\\xd0\\x9f\\xe9\\x5d\\xfa\\x0b\\xbd\\x47\\x7f\\xa5\\xbf\\xd1\\xdf\\xe9\\x7d\\xfa\\x80\\x3a\\xa8\\x93\\x01\\x23\\x8c\\x32\\xc6\\x38\\xd3\\x30\\x2d\\xf3\\x60\\x9e\\xcc\\x8b\\x79\\x33\\x1f\\xe6\\xcb\\x3a\\x31\\x3f\\xd6\\x99\\x75\\x61\\xfe\\xac\\x2b\\xeb\\xc6\\xba\\xb3\\x1e\\xac\\x27\\xeb\\xc5\\x7a\\xb3\\x3e\\xac\\x2f\\x0b\\x60\\xfd\\xd8\\x13\\xac\\x3f\\x1b\\xc0\\x74\\x2c\\x90\\x0d\\x64\\x7a\\x36\\x88\\x05\\xb1\\xc1\\x6c\\x08\\x1b\\xca\\x9e\\x64\\xc1\\x2c\\x84\\x19\\x58\\x28\\x0b\\x63\\xc3\\x58\\x38\\x8b\\x60\\x91\\x2c\\x8a\\x45\\xb3\\x18\\x16\\xcb\\xe2\\x58\\x3c\\x4b\\x60\\xc3\\xd9\\x08\\x96\\xc8\\x9e\\x62\\x23\\xd9\\xd3\\x2c\\x89\\x25\\x33\\x23\\x33\\x31\\x33\\xb3\\xb0\\x14\\x96\\xca\\x46\\xb1\\x34\\x36\\x9a\\xa5\\xb3\\x31\\x6c\\x2c\\x1b\\xc7\\xc6\\xb3\\x0c\\x36\\x81\\x65\\xb2\\x89\\x6c\\x12\\x9b\\xcc\\xa6\\xb0\\xa9\\x2c\\x8b\\x65\\xb3\\x69\\x6c\\x3a\\x9b\\xc1\\x9e\\x61\\x33\\xd9\\xb3\\x2c\\x87\\x59\\x59\\x2e\\xcb\\x63\\xf9\\xcc\\xc6\\x66\\xb1\\xd9\\xac\\x80\\x15\\xb2\\x39\\x6c\\x2e\\x2b\\x62\\xc5\\xac\\x84\\xd9\\x59\\x29\\x7b\\x8e\\x95\\xb1\\x72\\x56\\xc1\\x2a\\xd9\\x3c\\x36\\x9f\\x2d\\x60\\x0b\\xd9\\x22\\xf6\\x3c\\x5b\\xcc\\x5e\\x60\\x4b\\xd8\\x8b\\x6c\\x29\\xfb\\x03\\x5b\\xc6\\x5e\\x62\\xcb\\xd9\\xcb\\x6c\\x05\\x5b\\xc9\\x56\\xb1\\x57\\x58\\x15\\x5b\\xcd\\xd6\\xb0\\xb5\\x6c\\x1d\\x5b\\xcf\\xaa\\xd9\\xab\\x6c\\x03\\xdb\\xc8\\x6a\\xd8\\x26\\xb6\\x99\\x6d\\x61\\xb5\\xac\\x8e\\xd5\\xb3\\xad\\x6c\\x1b\\xdb\\xce\\x76\\xb0\\x9d\\x6c\\x17\\xdb\\xcd\\x1a\\xd8\\x1e\\xd6\\xc8\\xf6\\xb2\\x26\\xb6\\x8f\\x35\\xb3\\xfd\\xac\\x85\\x1d\\x60\\x07\\xd9\\x21\\x76\\x98\\x1d\\x61\\x02\\x6b\\x65\\x47\\xd9\\x31\\x76\\x9c\\xbd\\xc6\\x4e\\xb0\\xd7\\xd9\\x49\\xf6\\x47\\x76\\x8a\\xfd\\x89\\x9d\\x66\\x7f\\x66\\x67\\xd8\\x5f\\xd8\\x59\\xf6\\x7f\\xd8\\x39\\xf6\\x06\\x3b\\xcf\\xde\\x64\\x17\\xd8\\x5b\\xec\\x22\\xfb\\x2b\\x7b\\x9b\\xfd\\x8d\\xbd\\xc3\\x44\\x76\\x89\\xbd\\xcb\\x2e\\xb3\\xbf\\xb3\\xf7\\xd8\\xfb\\xec\\x03\\xf6\\x21\\xbb\\xc2\\x3e\\x62\\x57\\xd9\\xc7\\xec\\x13\\xf6\\x29\\xfb\\x8c\\x7d\\xce\\xae\\xb1\\xff\\x61\\x5f\\xb0\\x2f\\xd9\\x75\\xf6\\x0f\\x76\\x83\\x7d\\xc5\\xbe\\x66\\xff\\x64\\x37\\xd9\\x37\\xec\\x5b\\xf6\\x1d\\xbb\\xc5\\xfe\\xc5\\xbe\\x67\\x3f\\xb0\\xdb\\xec\\x47\\xf6\\x13\\xfb\\x37\\xbb\\xc3\\x7e\\x66\\x77\\xd9\\x2f\\xec\\x1e\\xfb\\x95\\xfd\\xc6\\x7e\\x67\\xf7\\xd9\\x03\\xe6\\x60\\x4e\\x0e\\x9c\\x70\\xca\\x19\\xe7\\x5c\\xc3\\xb5\\xdc\\x83\\x7b\\x72\\x2f\\xee\\xcd\\x7d\\xb8\\x2f\\xef\\xc4\\xfd\\x78\\x67\\xde\\x85\\xfb\\xf3\\xae\\xbc\\x1b\\xef\\xce\\x7b\\xf0\\x9e\\xf0\\x0b\\xef\\xc5\\x7b\\xf3\\x3e\\xc0\\xf9\\xb8\\xc9\\x63\\xc6\\x68\\x8b\\xad\\x79\\x65\\xf6\\x12\\xbf\\x52\\x5b\\x59\\xa1\\x3d\\x3f\\xcf\\x56\\x52\\x61\\x2b\\xb3\\xe5\\xf3\\x51\\xb9\\xd6\\x32\\x9a\\x36\\x9a\\x16\\xce\\xf1\\x9d\\x3b\\xbb\\xcc\\x66\\x2b\\x29\\xb2\\x96\\xe4\\x17\\xe6\\x31\\x4b\\xc9\\x6c\\x66\\x2b\\x99\\xad\\x29\\xb2\\x97\\xcc\\x2e\\xd7\\x8c\\x2f\\xb0\\x97\\x95\\x68\\xec\\xf2\\xdf\\xc9\\xf2\\xdf\\x4a\\xe9\\xaf\\x47\\x65\\x49\\x61\\x78\\x64\\x54\\x9c\\xa6\\x3c\\xaf\\x60\\xbe\\x55\\x39\\x4b\\x89\\xf2\\x9a\\x5d\\x66\\x9d\\x67\\xcb\\xb3\\x17\\xe7\\x7a\\x59\\xf3\\x2a\\x2b\\x94\\x54\\x45\\x61\\x51\\xbe\\x9c\\xe2\\x05\\x76\\xfb\\x5c\\x59\\x35\\x2a\\x3c\\xc5\\x33\\xdf\\x5e\\x91\\x6b\\x2b\\xb2\\xcf\\xd7\\x54\\xd8\\x4b\\xec\\xe5\\x9d\\xf2\\x0b\\x6d\\x65\\xb6\\xf2\\xc2\\x72\\xf9\\xcc\\xcb\\x5a\\x62\\xaf\\xb0\\x15\\xd9\\x0a\\xad\\x9a\\x54\\x6b\\x71\\xb1\\x55\\x63\\xb6\\x15\\x55\\x58\\x35\\x93\\x0a\\x6c\\x15\\x56\\xed\\x18\\x6b\\x71\\x6e\\xbe\\x95\\x66\\x15\\xd2\\x8c\\x42\\xcd\\xc4\\xc2\\xd9\\xc5\\x56\\x96\\x51\\x50\\xc8\\x32\\xca\\x0b\\x35\\xd6\\xa2\\xd2\\x02\\x2b\\xcf\\xb5\\x55\\x58\\x35\\xb3\\xe5\\x72\\xf9\\x52\\x39\\x0f\\x5b\\x69\\x79\\x61\\x91\\xbd\\x84\\x2f\\xb2\\x55\\x58\\x99\\x74\\xb1\\x42\\x02\\xe2\\x85\\xf6\\x0a\\xab\\xb6\\x48\\x41\\x5b\\x50\\xc8\\xca\\x0a\\xec\\xda\\x72\\x09\\x2e\\x42\\x23\\x0b\\x56\\x61\\xad\\xf4\\xa8\\x54\\x8a\\xb2\\xd2\\x82\\x42\\x56\\x5a\\x5e\\xa8\\xb1\\x17\\xdb\\x66\\x2b\\xd5\\x8d\\x32\\x47\\xa0\\x8c\\x44\\x19\\x2b\\xcb\\xe8\\xf0\\x48\\x94\\xd1\\x28\\x13\\x50\\x26\\xa3\\x34\\xa2\\x4c\\x51\\x64\\x44\\x04\\x4a\\xd4\\x8f\\x40\\x9c\\x88\\x38\\x94\\xf1\\x28\\xb1\\x5c\\x64\\x14\\x4a\\xd4\\x8b\\x44\\xbd\\x48\\xd4\\x8b\\x44\\xbe\\x48\\xe4\\x8b\\x74\\x95\\x33\\xa1\\x34\\xa3\\xb4\\xa0\\x44\\x3b\\xa2\\xd0\\x8e\\x28\\xb4\\x3f\\x0a\\x79\\xa2\\xd0\\xae\\x28\\xe4\\x8b\\x42\\xbe\\x28\\xe4\\x8b\\x42\\x9e\\x28\\xe4\\x89\\x42\\x9e\\x28\\xe4\\x89\\x42\\xfc\\x68\\xc4\\x8d\\x46\\xbc\\x68\\xc4\\x8b\\x46\\xbc\\x68\\xc4\\x8b\\x46\\xfb\\xa3\\x11\\x37\\x1a\\x71\\xa3\\x11\\x37\\x1a\\x71\\xa3\\xd1\\xfe\\x68\\xc4\\x8f\\x41\\xfc\\x18\\xc4\\x8f\\x41\\x9c\\x18\\xc4\\x89\\x41\\x9c\\x18\\xd4\\x8f\\x0d\\x47\\x89\\xf5\\x8e\\xc5\\xfa\\xc6\\x62\\xf9\\xd8\\x18\\x94\\x68\\x67\\x2c\\xda\\x19\\x8b\\x76\\xc6\\x22\\x7e\\x2c\\xe2\\xc7\\x22\\x7e\\x2c\\xda\\x19\\x8b\\x76\\xc6\\xa2\\x9d\\xb1\\xc8\\x1b\\x87\\x76\\xc6\\x21\\x5f\\x1c\\xf2\\xc5\\x21\\x5f\\x1c\\xe2\\xc7\\x21\\x7e\\x1c\\xe2\\xc7\\x21\\x7e\\x1c\\xe2\\xc7\\x21\\x7e\\x1c\\xe2\\xc7\\x21\\x7e\\x3c\\xd6\\x2b\\x1e\\xeb\\x15\\x8f\\x7c\\xf1\\xc8\\x17\\x8f\\x7c\\xf1\\xc8\\x17\\x8f\\xf5\\x8b\\x47\\xde\\x78\\xe4\\x8d\\x47\\xdc\\x78\\xc4\\x4d\\x40\\xdc\\x04\\xc4\\x4d\\x40\\x9c\\x04\\xc4\\x49\\x40\\xbb\\x12\\xd0\\xae\\x64\\xd4\\x4f\\x46\\xfd\\x64\\xd4\\x4f\\x46\\xfd\\x64\\xe4\\x4d\\x46\\xbf\\x26\\x23\\x7f\\x32\\xf2\\x1b\\x51\\xdf\\x88\\xfa\\x46\\xbc\\x6e\\x74\\x5d\\x47\\xbf\\x18\\x91\\xd7\\x88\\xbc\\x26\\xac\\xa7\\x09\\xcb\\x9b\\x10\\xdf\\x84\\xe5\\xcd\\x28\\x2d\\x68\\x9f\\x05\\xed\\x4b\\x41\\xbc\\x14\\xc5\\xcf\\x31\\xe1\\xe1\\x28\\x23\\x51\\x46\\xa1\\x8c\\x46\\x19\\x83\\x32\\x16\\x65\\x1c\\xca\\x78\\x94\\x09\\x28\\x93\\x51\\xba\\x70\\x4d\\x28\\xcd\\x28\\x2d\\x28\\x15\\x3f\\xc7\\x44\\xc8\\xbc\\x91\\xe1\\xe1\\x2e\\x19\\x81\\x32\\x12\\x65\\x14\\xca\\x68\\x94\\x31\\x28\\x63\\x51\\xc6\\xa1\\x8c\\x47\\x99\\x80\\x32\\x19\\xa5\\xb1\\x53\\x65\\x49\\xbe\\xad\\xac\\x3c\\xcf\\x5e\\x66\\xcb\\xcf\\x2d\\xea\\xf4\\x5c\\xa5\\x5d\\x9a\\x11\\xe6\\xd9\\xca\\xca\\x6d\\xf9\\x8a\\x4e\\x24\\x62\\xc6\\x45\\x7b\\x95\\x94\\x57\\xca\\x13\\x47\\x19\\x2f\\x2a\\x2c\\xb3\\x6a\\x4b\\x6d\\xe5\\xd2\\xd8\\x69\\xa9\\x2c\\xb3\\xcb\\x2a\\x11\\x48\\x1f\\x11\\x11\\x85\\x32\\xd6\\xcb\\x56\\x5e\\x51\\x58\\x6c\\xad\\xb0\\xe5\\x7b\\xd9\\x4b\\x6c\\xb6\\xc2\\xd9\\x05\\x15\\x05\\xbe\\x15\\x05\\x65\\x36\\x4c\\x97\\xfb\\xcc\\x2a\\x9c\\xe7\\x4a\\xfb\\x96\\xdb\\xe6\\xd9\\x4a\\x5c\\x17\\xf2\\xec\\xc5\\xc5\\x56\\x6b\\x9e\\x34\\x47\\x49\\x68\\x29\\x96\\x14\\xd9\\x29\\x29\\x29\\x29\\x26\\x94\\x66\\xaf\\x45\\xb6\\x32\\x7b\\x58\\x79\\x71\\x5e\\xa9\\x47\\xc5\\x7c\\x7b\\x58\\x79\\x65\\x69\\xb7\\xbc\\xc2\\xb2\\xbc\\xca\\xe2\\x59\\x45\\xb6\\x05\\xee\\xb9\\xa6\\x6b\\x5b\\x9e\\x34\\xeb\\x48\\x59\\x2a\\x35\\xf7\\x34\\xa5\\xca\\x73\\x4f\\x58\\x7e\\xb9\\x92\\x2f\\xdc\\x2a\\xfe\\x2a\\x9b\\xca\\xec\\x15\\xd6\\x0a\\x9b\\x36\\x59\\xa6\\xd7\\x1a\\x15\\x61\\x52\\x84\\x59\\x11\\x16\\x45\\xa4\\x28\\x22\\x55\\x11\\xa3\\x14\\x91\\xa6\\x88\\xd1\\x8a\\x48\\x57\\xc4\\x18\\x45\\x8c\\x55\\xc4\\x38\\x45\\x8c\\x57\\xc4\\x04\\x45\\x64\\x2a\\x62\\xa2\\x22\\x26\\x29\\x62\\xb2\\x22\\xa6\\x28\\x62\\xaa\\x22\\xb2\\x14\\x91\\xad\\x88\\x69\\xb2\\xe8\\x24\\xd7\\xc7\\xe5\\x05\\x4f\\x7b\\x89\\x4d\\xce\\xf6\\x94\\xbd\\x57\\x9c\\x57\\xea\\x2d\\x37\\x8d\\x9c\\xf4\\x9a\\x65\\xaf\\x2c\\xc3\\x54\\xe1\\x3c\\xd4\\x2b\\x2f\\x5c\\xa0\\xe8\\xc9\\x2d\\xa5\\x24\\xe5\\xf6\\x52\\x14\\x4b\\x0a\\x5d\\x80\\x4a\\xc3\\x54\\x96\\x7a\\xc8\\x14\\x95\\xa5\\x8a\\x23\\x55\\x0b\\x01\\x85\\xa7\\xb2\\xd4\\x53\\xa1\\x91\\x12\\x32\\x4b\\x65\\xa9\\x87\\x4c\\x52\\x59\\xea\\x85\\x1c\\x95\\xa5\\x5e\\x48\\x51\\x59\\xea\\xa9\\x30\\x54\\x96\\x7a\\xe6\\x95\\xd9\\xcb\\xcb\\x73\\xad\\x65\\x5e\\x65\\x85\\x25\\xb3\\x65\\x5c\\xaf\\x7c\\x6b\\x79\\xa1\\xd5\\xbe\\xa0\\xd0\\xaa\\x90\\xb9\\xdb\\xdf\\x27\\x6f\\x61\\x59\\x61\\x51\\x51\\x61\\x5e\\x45\\x61\\x5e\\x17\\x57\\x5a\\xf2\\x41\\x91\\x6d\\x56\\x85\\xaf\\x3a\\x43\\x33\\x3b\\xcc\\x5a\\x54\\xe1\\x57\\x64\\x2d\\x9b\\x6d\\x2b\\x93\\xc3\\x50\\xca\\x2c\\x94\\x32\\x35\\x45\\xd2\\x5f\\xd9\\x63\\x45\\x25\\x95\\xc5\\xe8\\x00\\x29\\xa9\\xcd\\x50\\x22\\x30\\xaf\\x40\\x51\\xcc\\x94\\xff\\xa6\\x4b\\x7f\\x79\\x61\\x58\\x61\\x05\\x2f\\x0a\\x2b\\xac\\x90\\xfd\\x60\\x2d\\xaa\\xd0\\x5a\\x2b\\x24\\xd1\\xc9\\x5a\\x5c\\x6a\\x2b\\x2b\\xb7\\x96\\xe4\\x4b\\x67\\xde\\xa9\\xb6\\xb2\\x62\\x6b\\x49\\x7e\\x6e\\x51\\x79\\xe7\\xb6\\xa4\\xd2\\x60\\x2e\\xf3\\xe4\\x2a\\xc9\\x83\\x42\\x78\\xb2\\x59\\x6b\\xce\\x2b\\xb3\\x5b\\x2b\\x78\\x41\\xae\\xb5\\x8c\\x4f\\x92\\xfe\\x54\\xe4\\x5a\\xcb\\xbc\\x93\\xdd\\xbe\\xf0\\xb6\\xba\\x93\\x1e\\xc9\\xca\\x92\\xcf\\xc3\\xaa\\x48\\x6d\\xb2\\x0c\\xa5\\xb5\\x2a\\x88\\xc9\\xf6\\xd9\\xf6\\x12\\xdb\\x5c\\x0f\\xab\\x22\\x7d\\x4c\\x6d\\xbd\\xc0\\x27\\xaf\\x2d\\x2d\\x33\\x47\\xe0\\xf0\\x15\\x11\\x6e\\xd4\\x9a\\xf3\\xac\\x12\\x58\\xbe\\x2c\\x3c\\x2c\\xc8\\x61\\x43\\x0e\\x8b\\xc2\\x61\\x93\\x85\\xb7\\x25\\xdf\\x5e\\xa1\\x74\\x1a\\x6f\\x9b\\x3b\\xe9\\x61\\x41\\x66\\x9b\\x22\\xb5\\x16\\x05\\xd1\\x26\\x0b\\x9f\\x54\\x95\\x1d\\xb3\\x3b\\xda\\x11\\x19\\x8e\\x32\\xc2\\x37\\x55\\xd5\\x25\\x7d\\x67\\xab\\x4e\\x7c\\x46\\xa9\\x10\\x0a\\xda\\xd2\\xda\\x34\\x39\\x30\\xb4\\x85\\xb2\\xf0\\x48\\x43\\xcb\\x0b\\xd1\\xf2\\x34\\xc5\\xf2\\x42\\xc5\\x3b\\x69\\x68\\x63\\xa1\\x22\\xbd\\xd3\\xdc\\xe6\\xfb\\x8c\\x56\\xc1\\xcf\\x69\\x4b\\xfb\\xa6\\xab\\x0d\\x9a\\xab\\x3a\\xd1\\x8e\\x91\\xdb\\x43\\x5b\\x24\\x0b\\xdf\\x31\\x6a\\xbd\\xa2\\x76\\x7a\\x8a\\x23\\x8a\\x64\\xc1\\xc7\\xe4\\xdb\\x2b\\x78\\x51\\xbe\\xbd\\x42\\x3b\\x4e\\x29\\x5f\\xa2\\x94\\x1f\\xa7\\x2e\\x5f\\xa2\\x2e\\x3f\\x4e\\x29\\x5f\\xa2\\x38\\xb2\\xc4\\x5a\\x6a\\x2f\\xaf\\x28\\xb3\\x97\\x16\\xd8\\x3c\\xc6\\x63\\x65\\xed\\x58\\xd9\\xf1\\x4a\\x65\\xed\\xb2\\xe8\\x34\\xbe\\xa0\\xb2\\x64\\xb6\\xb5\\xac\\xb2\\xb8\\xc8\\x5a\\x59\\xd1\\xc9\\xae\\x3e\\xd3\\x66\\x2a\\xdc\\x65\\x0a\\x77\\xa6\\x9a\\xbb\\x4c\\xcd\\x9d\\xa9\\x70\\x97\\x29\\x62\\xa2\\x52\\xaa\\x5c\\x16\\x3e\\x13\\x55\\x1e\\x2b\\xef\\xd0\\xa4\\x91\\xb8\\xb2\\x8d\\x8c\\x48\\x40\\x99\\x8c\\x52\\x99\\x29\\x23\\x62\\x23\\x7d\\x51\\x2a\\xbd\\x4d\\x39\\x89\\xd2\\x4e\\x52\\x98\\x2a\\x14\\x31\\x59\\x69\\xdb\\x4a\\xa5\\x6d\\x27\\x63\\x75\\x2b\\xb1\\xba\\x93\\x95\\xea\\x56\\xca\\x42\\x33\\x59\\xea\\x22\\x9a\\x4a\\xe9\\x6f\\xa7\\xc9\\xed\\xaa\\x5e\\xa9\\x3e\\xf3\\x98\\x8c\\x31\\x50\\x89\\x3d\\x64\\xaa\\xaa\\x1a\\xf3\\x55\\xe9\\x6c\\x55\\x7a\\xa1\\x2a\\xde\\xa6\\x29\\x4e\\x58\\xa4\\x74\\xcc\\x69\\x6d\\x7d\\x61\\x51\\x5b\\x5f\\x48\\xb6\\x28\\x7d\\xd5\\xaa\\x0c\\x91\\x3e\\xe3\\xcb\\x8b\\xac\\xe5\\x05\\x4a\\xda\\xae\\x4a\\x2b\\xfd\\x5e\\x19\\x62\\x2d\\x15\\x05\\xca\\xa8\\x2b\\x0d\\x00\\x72\\xca\\x27\\x59\\x9e\\xa9\\x30\\x2d\\x97\\x90\\xd3\\x5d\\x92\\xdb\\xcc\\xc1\\x8b\\xb2\\x83\\xe4\\xb4\\x5f\\xb2\\xeb\\x76\\x4b\\x19\\xce\\xe5\\x41\\x44\\x4e\\x76\\x6e\\x1b\\x4f\\x94\\xb1\\xc8\\x94\\x67\\xcb\\x2f\\x2c\\x2a\\xb2\\x2a\\x18\\x16\\x15\\x99\\x45\\x45\\x66\\xe9\\x40\\xe6\\x67\\x69\\x47\\xe0\\x93\\xa6\\x2a\\x97\\xa6\\x2a\\x97\\xd6\\xb1\\x5c\\x5a\\xfb\\x72\\xe3\\xda\\x6c\\xf6\\x19\\xaf\\xc2\\x18\\xaf\\xc2\\x18\\xdf\\xb1\\xa2\\xe3\\x55\\x15\\x1d\\xdf\\x1e\\x6f\\xb2\\x0a\\x63\\xb2\\x0a\\x63\\x72\\x47\\x3b\\x26\\xb7\\x2f\\x97\\xdd\\xa6\\xeb\\x8b\\x63\\x2b\\x3a\\x55\\x8e\\x2b\\xbc\\xa0\\x04\\x8b\\x72\\xc1\\xa4\\x42\\x37\\x75\\x40\\xf7\\xc5\\x81\\x15\\x35\\xe5\\x30\\x56\\xd2\\xe6\\xb6\\xb4\\xaf\\x45\\xcd\\x63\\x69\\xe3\\xe9\\xdc\\x36\\xb4\\xa2\\xa2\\x9a\\xd7\\xd2\\x86\\xd0\\x25\\xb5\\xa3\\x67\\x52\\x55\\xd6\\xe2\\xa0\\x2a\\x9f\\xf8\\xab\\x47\\x54\\xa5\\xec\\xa8\\x8e\\x65\\xd3\\xda\\xbc\\xea\\x9b\\xa6\\x36\\x2d\\x4d\\x05\\x9a\\xa6\\x32\\xa5\\x73\\x5a\\x7b\\x3b\\xbb\\x8c\\xee\\x00\\xe9\\x9f\\xde\\x91\\xd5\\x67\\x4c\\x9b\\xd7\\xfc\\xc7\\x3c\\x7c\\xb5\\xad\\x6e\\x5e\\xd2\\x10\\x89\\x31\\xa2\\x2a\\x33\\xee\\xa1\\x32\\xe3\\x54\\x1e\\x1d\\xaf\\x36\\x7b\\x7c\\x9b\\xd9\\x5d\\xdb\\x8d\\x82\\xca\\xe5\\x4c\\x15\\x6a\\xe6\\x43\\xa8\\x99\\xaa\\x36\\x9b\\xa8\\x6a\\xe9\\x89\\x1d\\xaa\\xd8\\x69\\x62\\xbb\\xee\\x33\\xb1\\xad\\x98\\xff\\xa4\\x87\\x40\\x27\\xa9\\x40\\x27\\xab\\xbc\\x3d\\x59\\x6d\\xf6\\xe4\\x36\\xb3\\xbd\\x27\\xbb\\xbb\\x6d\\xd7\\xc9\\x0f\\xd5\\xc0\\x77\\xb2\\xaa\\x2d\\xba\\x4c\\xed\\x60\\x58\\x97\\xec\\x8e\\x11\\x9f\\xdd\\x3e\\xe2\\xa7\\xb5\\xd5\\xaa\\xf3\\xb4\\xf6\\x0d\\xe9\\x33\\xad\\xcd\\x50\\xef\\xe4\\xa2\\xd2\\x02\\xab\\xbc\\x69\\xe3\\x6b\\x51\\xf6\\x4a\\xe4\\x13\\x4f\\x4b\\x85\\x92\\xeb\\x95\\x66\\xc7\\x94\\xef\\xf8\\xe2\\x42\\xa9\\x1e\\xca\\xc9\\x64\\x95\\xb2\\xf7\\xf8\\x62\\xdb\\x6c\\x45\\xc9\\xbf\\xd0\\x5e\\x61\\x6d\\xb7\\x17\\xa4\\x91\\x19\\xb8\\xd1\\x56\\x61\\xf5\\x40\\x06\\x3e\\xcd\\x56\\x61\\x65\\x96\\x0a\\x2b\\x97\\xc0\\x35\\xe9\\xd6\\xd2\\x52\\x2b\\x1d\\x5b\\x49\\xc7\\x55\\x7a\\x20\\x07\\xcb\\x2c\\xb0\\xb3\\x49\\xd6\\x4a\\x0f\\xa4\\x61\\xa6\\x82\\x42\\xdf\\x34\\x15\\x74\\x67\\xbc\\xe0\\x3a\\xf7\\xb6\\xb6\\xd5\\xc3\\xa6\\xae\\x87\\xcd\\x55\\x8f\\x42\\x57\\x3d\\xba\\x57\\xb6\\x2f\\xaa\\x58\\x39\\x57\\x32\\xc2\\xc3\\xae\\xd0\\xcb\\x33\\x55\\x94\\xd1\\x44\\x4b\\x2a\\x59\\x5e\\x41\\xa1\\xaf\\xba\\x52\\x9d\\x3b\\x14\\xf7\\xb5\\xab\\xdd\\x52\\xa9\\x76\\x8b\\xdd\\xed\\x16\\xe5\\xce\\x34\\x1c\\xef\\x54\\xf1\\x4e\\x34\\x1a\\xef\\x40\\xa3\\xc3\\x5d\\x3b\\x4f\\x78\\xa7\\x1b\\xee\\xda\\x31\\x72\\xed\\x38\\xe1\\x1d\\x32\\xde\\x69\\x46\\x47\\xe0\\x9d\\x6f\\x04\\xee\\x0c\\x44\\x20\\x5e\\x04\\xe2\\xe1\\x7c\\x1c\\x1d\\x81\\xe5\\x22\\xf0\\xce\\x3a\\xc2\\x55\\x1e\\x77\\x04\\x70\\x49\\x16\\x1d\\x89\\x76\\x45\\x22\\x5e\\x24\\xde\\x79\\x47\\x22\\x5e\\x14\\xea\\x45\\xb9\\xce\\x11\\x3f\\xca\\xb5\\x83\\x83\\xd7\\xa3\\x11\\x27\\x1a\\xed\\x89\\x46\\xfd\\x18\\xcc\\x8f\\xc1\\xfc\\x18\\x57\\x3e\\xd6\\x3b\\x06\\xeb\\x1d\\x83\\xf5\\x8e\\x41\\xbb\\x63\\x2c\\xda\\xa9\\xf2\\x80\\xaf\\x9d\\xaf\\x88\\xa9\\xca\\xb4\\x3c\\x5f\\xb9\\x77\\x98\\xea\\x6a\\x02\\xaf\\xf9\\xae\\x94\\x36\\x5b\\x51\\x5c\\xa8\\x88\\xe2\\xc2\\x12\\x79\\x2d\\x63\\xcb\\xb3\\x97\\xe4\\x7b\\xd9\\x16\\xe4\\x15\\x59\\x8b\\xf3\\x73\\x8b\\x94\\x85\\x48\\x8a\\x62\\x75\\xa4\\xb2\\xff\\x10\\x61\\x51\\x6a\\x13\\x61\\x51\\xf6\\xbb\\x22\\x2c\\xca\\xfd\\x7b\\x84\\x45\\x69\\xb5\\x88\\x14\\xd7\\xbe\\x15\\xee\\x2b\\x44\\xe3\\xfd\\x7f\\x74\\x0c\\x9e\\xc7\\xb8\\xf6\\x73\\xf0\\x3c\\x0e\\x6b\\x1d\\x87\\xb5\\x8c\\xc3\\x5a\\x26\\x60\\x2d\\x13\\xd0\\x8b\\xc9\\xd8\\xca\\xc9\\xb8\\x3f\\x94\\x8c\\x5e\\x4d\\xc6\\x56\\x32\\x21\\x9e\\x09\\xf1\\x4c\\xd8\\x4a\\x26\\xbc\\x6e\\xc6\\xeb\\xb8\\x9f\\x19\\x8d\\xfb\\x99\\xd1\\x66\\xf4\\xb6\\x19\\x5b\\xd3\\x8c\\x5e\\x77\\xed\\x73\\x9a\\xd1\\x1e\\x33\\xf2\\x9b\\xd1\\x1e\\x33\\xda\\x61\\xc6\\x56\\x30\\x63\\xbd\\xcc\\x68\\x97\\x19\\x79\\x2d\\xc8\\x63\\x41\\x1e\\x0b\\xf2\\x58\\x90\\xc7\\x82\\x3c\\x16\\xe4\\xb1\\xb8\\xf6\\x6d\\x90\\xc7\\x82\\xbc\\x16\\xe4\\xb3\\x20\\x9f\\x05\\xf9\\x2c\\xc8\\x67\\x41\\x3e\\x6c\\xaf\\xe8\\x14\\xd7\\x7e\\x0f\\xf2\\xa7\\x20\\x7f\\x0a\\xf2\\xa7\\x20\\x7f\\x0a\\xf2\\xa5\\x20\\x5f\\x0a\\xe2\\xa7\\xb8\\xf6\\x6d\\x14\\x9c\\x18\\xec\\x45\\x31\\x4a\\x2f\\x8a\\xb0\\x24\\x63\\xbb\\x2b\\xfb\\x5e\\x11\\x96\\xe4\\x48\\x94\\xae\\xeb\\xd1\\x28\\x63\\x50\\xc6\\xa2\\x8c\\x43\\x19\\x8f\\x32\\x01\\x65\\x32\\x4a\\x23\\x4a\\x8c\\xb7\\x64\\x33\\x4a\\x8c\\xbb\\x64\\x8c\\x3b\\x23\\xf2\\x1b\\x91\\xdf\\x88\\xfc\\x46\\xe4\\x37\\x22\\xbf\\x11\\xf9\\x8d\\xc8\\x6f\\x44\\x7e\\x23\\xf2\\x1b\\x91\\xdf\\x88\\xfc\\x46\\xe4\\x77\\xc5\\xbb\\x11\\xf9\\x8d\\xc8\\x6f\\x44\\x7e\\x13\\xf2\\x9b\\x90\\xdf\\x84\\xfc\\x26\\xe4\\x37\\x21\\xbf\\x09\\xf9\\x4d\\xc8\\x6f\\x42\\x7e\\x13\\xf2\\x9b\\x90\\xdf\\x84\\xfc\\x26\\xe4\\x37\\x21\\xbf\\x09\\xf9\\x4d\\xc8\\x6f\\x42\\x7e\\x33\\xf2\\x9b\\x91\\xdf\\x8c\\xfc\\x66\\xe4\\x37\\x23\\xbf\\x19\\xf9\\xcd\\xc8\\x6f\\x46\\x7e\\x33\\xf2\\x9b\\x91\\xdf\\x8c\\xfc\\x66\\xe4\\x37\\x23\\xbf\\x19\\xf9\\xcd\\xc8\\x6f\\x46\\x7e\\x0b\\xf2\\x5b\\x90\\xdf\\x82\\xfc\\x16\\xe4\\xb7\\x20\\xbf\\x05\\xf9\\x2d\\xc8\\x6f\\x41\\x7e\\x0b\\xf2\\x5b\\x90\\xdf\\x82\\xfc\\x16\\xe4\\xb7\\x20\\xbf\\x05\\xf9\\x2d\\xc8\\x6f\\x41\\xfe\\x14\\xe4\\x4f\\x41\\xfe\\x14\\xe4\\x4b\\x41\\xbe\\x14\\xe4\\x4b\\x41\\xbe\\x14\\xe4\\x4b\\x49\\xd0\\xe6\\xcb\\xb7\\x1a\\x1e\\xf2\\xd6\\x9f\\x6b\\x38\\x49\\xc0\\x6e\\x96\\xe0\\x1a\\x5e\\xb0\\xdb\\x24\\x63\\xb7\\x49\\xc6\\x6e\\x91\\x8c\\xdd\\xce\\x88\\xd7\\x8d\\x78\\xdd\\x88\\xdd\\xd8\\xe8\\xda\\x86\\x45\\x1c\\x93\\xab\\x3b\\xe1\\xf5\\x14\\xd7\\xf0\\x86\\xe7\\x09\\x78\\x6e\\xc4\\x6e\\x6c\\xc4\\x6e\\x6c\\xc4\\xf2\\xf1\\xc8\\x17\\xef\\xda\\x6e\\x47\\xde\\x04\\x97\\x44\\xfe\\x04\\x2c\\x9f\\xe0\\xda\\x1e\\xc7\\xfa\\xc4\\xbb\\xec\\xc0\\xee\\x6d\\xc2\\x7c\\x93\\x6b\\x1b\\x19\\xcb\\x99\\x70\\x38\\x30\\xb9\\xea\\x81\\xc3\\x88\\xd1\\x35\\x8c\\xa0\\x5e\\x8a\\x6b\\xfb\\x16\\xb7\\x6b\\x71\\x32\\xc5\\x6d\\xdb\\xf0\\xf0\\xf0\\x04\\xe5\\x99\\x7e\\xe2\\x74\\x42\\xe7\\x47\\x7d\\x9f\\xe7\\xa1\\x7f\\x3f\\xc0\\x0f\\x70\\x16\\xce\\x6a\\x04\\x00\\x3e\\x1c\\xc0\\x91\\xe3\\x99\\xfb\\xe0\\x43\\xcd\\x9b\\xce\\x5b\\x7c\\x9c\\xf3\\x96\\x23\\x5d\\x7e\\x37\\x80\\x4a\\x47\\x23\\xf0\\xe1\\xce\\xef\\x50\\xeb\\xbc\\xf3\\x96\\xe6\\x4d\\x3e\\xce\\x75\\xde\\x4e\\xef\\x1b\\x15\\x9a\\xa4\\xf7\\x8d\\xac\\xa7\\xe0\\x45\\x42\\xa4\\x00\\x06\\x9d\\x00\\x93\\xb3\\x2c\\xd9\\x3a\\x5d\\xfa\\x49\\xf0\\x9b\\x90\\x2e\\x68\\x27\\x4e\\xcb\\x12\\xa2\\x03\\x84\\xa1\\xd9\\x39\\xb3\\x74\\x55\\x93\\xb3\\x04\\x1a\\x64\\xfd\\xa3\\x27\\x78\\x42\\x5e\\x9e\\x3e\\x37\\x20\\x30\\x50\\x80\\x6c\\x01\\x4c\\x7a\\xf3\\x51\\x20\\x60\\xca\\x31\\x86\\x0a\\xc4\\x20\\xe8\\x72\\x66\\x85\\x0a\\xd4\\xa0\\xcb\\xd7\\x09\\x67\\x33\\x04\\x3e\\x78\\xda\\xd1\\xa1\\xc4\\xdb\\x64\\xc9\\xb3\\x64\\x4e\\xcf\\x0a\\xd4\\x07\\x06\\x54\\x65\\xe9\\x84\\x8c\\x8c\\xac\\x40\\x21\\x29\\x3b\\x40\\x27\\xc4\\x4b\\xa9\\xf8\\xec\\x6c\\x5d\\xab\\xa2\\x64\\xcd\\x17\\x86\\x66\\x64\\x05\\xe2\\x99\\x4e\\x08\\x97\\xae\\x87\\x4b\\x9a\\x67\\x33\\xb2\\x74\\xb3\\x74\\x55\\x55\\x56\\x9d\\xe0\\x9d\\x91\\x95\\x13\\xa0\\x13\\x74\\xd2\\x35\\x6f\\x29\\x15\\x2b\\xa5\\x62\\x73\\x02\\x72\\xb2\\xb3\\xb3\\x03\\x04\\x12\\x92\\x9d\\xad\\x17\\x20\\x23\\xcb\\x96\\x9d\\x1d\\x2a\\x30\\x83\\xce\\xa2\\x13\\x78\\x90\\x35\\x5f\\x27\\x68\\x4c\\x19\\x59\\x82\\x46\\x6f\\x14\\xb4\\x7a\\x63\\x40\\x60\\x60\\xb6\\x40\\x72\\x42\\x05\\x6e\\xd0\\x07\\xea\\x03\\x75\\xf9\\xad\\x9a\\x5c\\xa3\\x4e\\xba\\xa2\\x90\\x4b\\x7f\\x05\\x9e\\x63\\xc9\\x13\\x58\\x70\\xa0\\x4e\\xd0\\x9a\\x74\\x55\\xba\\x2a\\x81\\x84\\xb4\\x86\\x6b\\x82\\x04\\x3e\\x78\\x42\\x56\\x4e\\x46\\x80\\x35\\x33\\x3b\\x4b\\x9f\\x1d\\xa8\\x13\\x92\\x26\\x66\\x09\\x24\\x24\\x40\\xaa\\x14\\x32\\x87\\x0a\\x1a\\x83\\xe0\\x61\\x0a\\x39\\x0a\\x54\\x71\\x8d\\xd6\\x20\\x78\\xe8\\x8d\\x7a\\x9d\\x00\\x7a\\xa3\\x55\\xa0\\xb9\\xb3\\x04\\x92\\x27\\x90\\x1c\\x41\\x13\\x1c\\x2a\\x78\\x18\\x74\\x92\\x91\\x3e\\xa6\\xbc\\x93\\x1c\\x72\\x75\\x12\\x82\\x90\\x94\\x93\\x2d\\xa9\\xe4\\x98\\x65\\x23\\x3d\\x0d\\x47\\x3d\\x7c\\xc0\\x64\\x31\\x06\\x07\\xba\\x9d\\xed\\x65\\x68\\xef\\x7c\\x6f\\x05\\x85\\x84\\xe8\\x05\\x30\\x09\\x3c\\x28\\x47\\x67\\xa9\\xd2\\x5b\\xa5\\x86\\x90\\x3d\\x05\\x01\\x92\\x37\\x05\\x5d\\x80\\x90\\xe4\\xf6\\x8f\\xc0\\x82\\xf4\\x56\\xb3\\x42\\xe1\\xf3\\x98\\xe2\\xc2\\xa0\\x8c\\x2c\\xa9\\x70\\xd2\\xa3\\x0a\\xf9\\x1a\\xe4\\x0a\\x1d\\xf5\\xf1\\x66\\x96\\xac\\xc0\\x00\\x7d\\x60\\x76\\x70\\x60\\xa8\\xd0\\xc9\\xd0\\x4a\\xa9\\x45\\xc8\\xb7\\x9a\\x43\\x05\\x3f\\x83\\x40\\x72\\x74\\x3a\\xc1\\xd7\\x34\\x5a\\x2a\\xae\\x13\\x7c\\xf5\\xc6\\x6c\\xa1\\x93\\x74\\x96\\x99\\xa5\\x13\\x3a\\xe9\\x8d\\xd9\\xa1\\x42\\x67\\x83\\x4e\\xe8\\x22\\xbb\\x44\\x77\\x92\\x43\\x5e\\x95\\xde\\x2a\\xf8\\x99\\x72\\x74\\x55\\x39\\x3a\\xc1\\x4f\\x6f\\xd4\\x87\\x0a\\x5d\\x0c\\xe9\\x93\\xb2\\x5a\\x79\\xbe\\x39\\x7b\\x90\\xd0\\xc9\\xa6\\x5f\\x10\\x2a\\xf8\\x1b\\xd2\\x27\\x64\\xa5\\x4f\\x54\\x32\\x03\\x02\\xb3\\x07\\x09\\xdd\\xe4\\xfc\\xae\\x86\\x56\\xe8\\x6c\\x9a\\x9c\\xd5\\xda\\xb9\\xb3\\x49\\x20\\x56\\xa3\\xd0\\x39\\x44\\x0a\\x52\\x81\\x06\\x19\\x5b\\x7d\\xa5\\x3f\\x9d\\x68\\x90\\x51\\x20\\x3d\\xf5\\x3a\\x81\\x05\\x65\\x64\\xb5\\x4a\\xce\\x13\\x78\\x90\\xb1\\xaa\\x4a\\x27\\xd3\\x06\\x07\\xea\\x05\\x62\\x75\\xa5\\x03\\x94\\xeb\\x52\\x11\\x1a\\x24\\xe7\\x64\\x0b\\xbe\\xa6\\x54\\xa1\\x93\\x29\\x35\\x47\\xa0\\xed\\x9b\\xea\\x31\\x0d\\xd8\\x0a\\xd0\\x4d\\x6f\\x16\\x88\\x49\\x80\\x91\\x47\\x09\\x21\\x72\\x5b\\x75\\x33\\x40\\x2b\\x50\\xcb\\xa4\\x2c\\xa1\\xb3\\xde\\xa8\\xb3\\x08\\x3e\\x7a\\xa3\\xe0\\xad\\x17\\x78\\x8e\\x51\\x97\\x23\\x10\\xeb\\x6b\\x5d\\xba\\x10\\xf0\\x03\\xa3\\xb1\\x2a\\xa7\\xb5\\xab\\x36\\x44\\xa8\\x0c\\x09\\x18\\x98\\x1d\\x2a\\x74\\x37\\xb4\\x42\\xb7\\x90\\x50\\xa1\\x87\\xa1\\x95\\x48\\xb2\\xa7\\xa1\\x95\\x4a\\xb2\\x97\\xa1\\x95\\x49\\xb2\\xb7\\xa1\\x95\\x4b\\xb2\\x8f\\xa1\\x55\\x23\\xc9\\xbe\\x86\\x56\\xad\\x24\\x03\\x0c\\xad\\x1e\\x92\\xec\\x67\\x68\\xf5\\x94\\xe4\\x13\\x86\\x56\\x2f\\x49\\x3e\\x69\\xd0\\x85\\x09\\xe4\\x99\\x50\\x21\\x58\\x4e\\x3c\\x17\\x2a\\x84\\xc8\\x89\\xb2\\x50\\xa1\\xbf\\x01\\x84\\x4e\\x21\\xff\\x17\\x36\\x0e\\x30\\xb4\\x42\\xff\\x90\\x50\\x41\\x67\\x68\\x25\\x92\\x0c\\x34\\xb4\\x52\\x49\\x0e\\x34\\xb4\\x32\\x49\\xea\\x0d\\xad\\x5c\\x92\\x83\\x0c\\xad\\x1a\\x49\\x06\\x19\\x5a\\xb5\\x92\\x1c\\x6c\\x68\\xf5\\x90\\xe4\\x10\\x43\\xab\\xa7\\x24\\x87\\x1a\\x5a\\xbd\\x24\\x69\\x30\\xe8\\x12\\xe5\\x50\\x0b\\x35\\xe8\\x72\\x84\\x2e\\x39\\x3a\\x93\\x5e\\x20\\x39\\x26\\xb9\\x39\\x48\\x8e\\x60\\x90\\xe2\\x2d\\xcc\\x20\\x84\\x86\\x08\\xa1\\xc1\\xa1\\xc2\\x30\\x83\\x4e\\x97\\xaa\\x7b\\x4c\\x4b\\xe8\\xad\\xf1\\x7a\\x69\\x18\\xfb\\x8f\\x1a\\x01\\x81\\xd9\\xa1\\x42\\xb8\\xbb\\x79\\x48\\x4f\\x61\\x58\\x70\\xab\\x86\\xf4\\xb0\\x64\\x85\\x67\\xcb\\x15\\x8c\\x50\\x7b\\xe6\\xe1\\xcb\\x91\\x06\\x5d\\x8c\\x6c\\x6f\\x94\\x01\\x04\\x62\\x79\\x98\\x44\\x20\\x21\\x8f\\x24\\x97\\xf2\\xa1\\xe7\\x71\\x79\\x0a\\x30\\x8f\\xd4\\xc7\\xb7\\x46\\x92\\x1e\\xc1\\xa1\\x42\\xb4\\x41\\x97\\xa8\\x4b\\x7d\\x8c\\xbd\\x02\\x98\\xac\\xf1\\xa1\\x42\\x8c\\x21\\xac\\x57\\x62\\xa8\\x10\\xfb\\xdf\\x54\\x05\\x62\\xca\\x8b\\x0f\\x15\\xe2\\x0c\\xad\\x14\\x7a\\x06\\xe9\\xc2\\x74\\xa9\\x52\\xe7\\x15\\x68\\x50\\x5a\\x55\\x55\\xaa\\x3e\\x55\\x6f\\xd5\\x65\\xe5\\x06\\x48\\xc3\\xa2\\xde\\x78\\x34\\x96\\x90\\x1e\\xdd\\x83\\x43\\x85\\x78\\x83\\x00\\x3d\\x05\\x1e\\x24\\xf0\\x20\\x59\\x45\\xf0\\x32\\x85\\xd8\\xaa\\xc2\\xf4\\x3a\\x5d\\x62\\x55\\x7c\\xa8\\x90\\xd0\\x76\\x59\\x17\\xa6\\x60\\x08\\x5c\\x6f\\x94\\xb4\\x74\\x42\\x8e\\xd4\\xdf\\x93\\x26\\x64\\x1d\\xa3\\x3a\\xa6\\x0b\\x38\\x46\\x07\\xb3\\xbe\\xd9\\x46\\x69\\x0c\\xf4\\x34\\xe9\\xaa\\xf4\\xb2\\xb6\\x3e\\x25\\x47\\xe0\\xa6\\x8e\\x5d\\x29\\x47\\x1a\\x87\\x94\\xc1\\x9e\\x9a\\x72\\xf2\\xf5\\x02\\x33\\x59\\xf3\\x33\\xb2\\x04\\x6a\\xb2\\x06\\x08\\xcc\\x94\\x23\\x8d\\x41\\x1d\\xcb\\x58\\xf5\\x3a\\x9d\\xc0\\x07\\xeb\\x53\\xac\\xf1\\x01\\x7a\\xc1\\xd3\\x94\\x22\\xd0\\x20\\xc1\\xd3\\x24\\xb3\\xe4\\xe8\\x1e\\x45\\xa2\\x57\\x46\\x3b\\x6e\\xca\\x91\\x7c\\xaf\\x09\\xb2\\x0a\\x9a\\x87\\x50\\x05\\x3e\\x58\\xaa\\x51\\x90\\x6c\\x44\\x50\\x4e\\x7e\\x86\\x32\\xca\\xb5\\x71\\x65\\x87\\x0a\\xc3\\x25\\x1f\\xe8\\x74\\x3a\\x41\\x33\\x18\\x7d\\xa0\\x4f\\x8c\\x0f\\x15\\x46\\xc8\\xd9\\x82\\xa7\\xde\\xa8\\xd3\\xe9\\x52\\xf4\\xa9\\x12\\x99\\xd4\\x5a\\x89\\xb2\\xcb\\xa4\\x0a\\xa0\\x47\\x61\\x52\\x56\\x98\\x2e\\x51\\x1f\\x18\\x20\\x59\\x8c\\x99\\x3a\\xc9\\x16\\x97\\xcb\\xb5\\x41\\x82\\x26\\x28\\x4d\\x3d\\xfb\\x2a\\x0d\\xf5\\xa8\\x08\\xc6\\x96\\xd1\\x4b\\x61\\xfc\\x14\\x5a\\x60\\x72\\x35\\x4d\\x8e\\x34\\x3d\\x77\\xac\\xa2\\xab\\x29\\x47\\x1a\\xf4\\xba\\x30\\xc9\\x6b\\x29\\x99\\x59\\xba\\xc4\\xec\\xb0\\xd6\\x30\\xd2\\x3d\\x24\\x54\\x78\\xda\\x9d\\x9d\\xa1\\xce\\x4e\\x6a\\xaf\\xfd\\x48\\x9d\\x64\\x83\\x10\\x1f\\xf2\\x48\\x50\\xa3\\x41\\x48\\x08\\xa9\\xd2\\xe9\\x12\\xa5\\x60\\xa9\\x8a\\x7f\\x84\\x8e\\xc0\\x4d\\x61\\x42\\x58\\x48\\xa8\\x60\\x72\\x47\\x98\\xcb\\xbb\\x52\\x70\\xe9\\x75\\x89\\xba\\x30\\x7d\\x3c\\xc2\\x99\\x0d\\xad\\x9e\\x3c\\xc8\\xf8\\x7f\\x11\\x8a\\xa9\\xff\\x5f\\x45\\x9f\\x64\\xbe\\x34\\xbe\\x24\\xea\\xe3\\x03\\x02\\x55\\xed\\x1d\\x98\\x8d\\x36\\x5a\\x24\\x67\\xb8\\xea\\x9f\\x22\\xd5\\x3f\\x50\\x8f\\x0e\\xc0\\x7a\\xb8\\xab\\x9c\\x6a\\x10\\xa0\\x87\\xd2\\x39\\x8f\\x82\\xd4\\x0f\\xbb\\x85\\x09\\xd1\\xc1\\xa1\\xc2\\xa8\\xc7\\xe4\\xa7\\x19\\x5a\\x81\\x74\\xef\\x26\\xc4\\x04\\x87\\x0a\\xa3\\x0d\\x42\\x5c\\x70\\xa8\\x90\\x2e\\x79\\xcd\\xa2\\xd7\\x85\\xe9\\x52\\xaa\\xf4\\x56\\x97\\x9f\\xc6\\x18\\xa4\\x70\\x14\\xd2\\x43\\x42\\x85\\xb1\\x86\\xa3\\x00\\xe6\\x90\\x50\\x61\\x9c\\xe1\\x28\\x10\\x29\\x31\\xde\\x70\\x94\\xc8\\x39\\x19\\x86\\xa3\\x44\\xce\\x99\\x20\\xe9\\x58\\x42\\x42\\x85\\x4c\\x49\\x47\\x4a\\x4c\\x94\\x74\\xa4\\xc4\\x24\\x49\\x47\\x4a\\x4c\\x96\\x74\\x92\\x43\\x42\\x85\\x29\\x92\\x8e\\x94\\x98\\x2a\\xe9\\x48\\x89\\x2c\\x49\\x47\\x4a\\x64\\x4b\\x3a\\xa6\\x90\\x50\\x61\\x9a\\xa4\\x23\\x25\\xa6\\x4b\\x3a\\x52\\x62\\x86\\xa4\\x23\\x25\\x9e\\x91\\x74\\x52\\x42\\x42\\x85\\x99\\x92\\x8e\\x94\\x78\\x56\\xd2\\x91\\x12\\x39\\x92\\x8e\\x94\\xb0\\x4a\\x3a\\xc6\\x90\\x50\\x21\\x57\\xd2\\x91\\x12\\x79\\x92\\x8e\\x94\\xc8\\x97\\x74\\xa4\\x84\\xcd\\x20\\x0c\\x77\\xbb\\x79\\x96\\x74\\x22\\x8c\\x0c\\x09\\x15\\x66\\xcb\\xa9\\xa7\\x43\\x42\\x85\\x02\\x39\\x9e\\x86\\x87\\x08\\x49\\x21\\xa1\\x42\\xa1\\x41\\x18\\xe1\\xd6\\x9e\\x23\\x9d\\xc8\\xda\\x73\\xe5\\x94\\xa4\\x5d\\x24\\xa7\\x24\\xd5\\x62\\x83\\x90\\xe8\\x56\\x2d\\x91\\x4e\\x64\\x55\\xbb\\x9c\\x92\\x54\\x4b\\xe5\\x94\\xa4\\xfa\\x9c\\x41\\x78\\xca\\xad\\x5a\\x26\\x9d\\xc8\\xaa\\xe5\\x72\\x4a\\x52\\xad\\x90\\x53\\x92\\x6a\\xa5\\xe1\\x98\\x17\\xa7\\xae\\xc5\\x93\\x31\\x44\\xf0\\xb4\\x09\\x6c\\x50\\xc6\\x02\\xd7\\x9c\\x12\\x0a\\x90\\x7e\\x12\\x2e\\x66\\x66\\xb5\\x12\\xb2\\x2e\\x5b\\x20\\xca\\x00\\x50\\xda\\x0a\\x5a\\xe3\\x6b\\x90\\x1a\\x35\\x80\\x43\\xb0\\x94\\x4e\\xf2\\x1e\\x4b\\x86\\x7b\\x0e\\xf6\\xec\\xee\\xc1\\x3d\\x31\\x63\\x1c\\x98\\xb5\\xe1\\xda\\x27\\x34\\x72\\x86\\xb7\\xf1\\xcf\\xdd\\x96\\xfa\\x9d\\xf5\\x3a\\xab\\x49\\x02\\x0e\\x5e\\xc1\\xad\\xe0\\x67\\xfc\\x33\\x00\\x24\\xc9\\xff\\xe5\\x1c\\x06\\xe6\\xd6\\x41\\x64\\xd5\\x84\\x2c\\x21\\x69\\x55\\x56\\x2b\\xcb\\x37\\xb7\\x0e\\x96\\xce\\x4e\\x79\\x2e\\x05\\xc2\\x93\\x56\\xe5\\x4d\\xca\\x92\\x54\\xb2\\xb3\\xb3\\xb3\\x25\\xec\\x44\\xcf\\xa1\\x9e\\x3d\\x3d\\xb8\\x6f\\xf0\\x49\\xe2\\x7c\\x59\\xe0\\x6b\\x5b\\x29\\x98\\x5b\\x35\\xf9\\x66\\x80\\xff\\x27\\x00\\x00\\xff\\xff\\x3e\\x2b\\x23\\x9a\\x08\\xc0\\x01\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_ttf() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_ttf,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.ttf\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x5c\\x97\\x43\\x70\\xe0\\x0d\\xb0\\xed\\xff\\x99\\xd8\\xb6\\x6d\\xdb\\xc9\\xc4\\xb6\\x6d\\xdb\\xe6\\xc4\\xb6\\x33\\xb1\\x6d\\x4e\\x6c\\x67\\x62\\x7b\\x62\\x5b\\xaf\\xbe\\x7a\\xf7\\x6e\\x6e\\x57\\xff\\x36\\x5d\\xd5\\x67\\x71\\x36\\xa7\\x8e\\x87\\x82\\xb8\\x38\\x00\\x02\\x00\\x00\\xf0\\x21\\x0a\\x20\\x01\\x00\\x00\\xd2\\x07\\x05\\x80\\xfc\\xff\\xcb\\xff\\x1d\\x09\\x51\\x31\\x71\\x00\\x00\\xb1\\x05\\x00\\x80\\x1b\\x00\\x00\\x21\\x58\\x66\\x58\\x16\\x09\\x15\\xb5\\x9f\\x00\\x00\\x52\\x0e\\x00\\x20\\x3c\\x00\\xf0\\x43\\xf2\\x18\\x79\\x07\\x55\\x41\\x85\\x91\\x05\\x00\\x7e\\x1c\\x02\\x00\\xa0\\x0c\\x00\\x80\\x61\\x17\\xf7\\x99\\x86\\x89\\x9d\\x91\\x23\\x00\\x80\\x72\\x01\\x00\\xf8\\x01\\x00\\x40\\x59\\xab\\x9c\\x14\\x32\\x9a\\xb8\\xbb\\x12\\x01\\x00\\x34\\x1e\\x00\\x00\\x0a\\x00\\x00\\xe4\\x98\\xe0\\xa1\\xfb\\x98\\x3b\\x5a\\xd8\\x01\\x00\\xb4\\x2d\\x00\\x80\\xc7\\x00\\x00\\x6c\\xfa\\x1e\\xda\\xc6\\x8d\\x85\\x91\\x8b\\x23\\x00\\x20\\xbc\\x00\\x00\\x00\\xf5\\x3f\\x20\\x59\\xd8\\x7a\\x99\\x03\\x00\\x22\\x00\\x00\\xb3\\x57\\x00\\x88\\x79\\x7d\\xd2\\x7a\\xd9\\xa2\\xa5\\x99\\x91\\x29\\x00\\x6c\\xdf\\x00\\x00\\xc0\\xf1\\x1f\\xaf\\x9a\\x48\\x48\\x96\\x96\\x66\\x46\\x00\\xb0\\x43\\x05\\x00\\x00\\x11\\x00\\x00\\x64\\x70\\x34\\x90\\x24\\x96\\x76\\xae\\x9e\\x00\\xb0\\x23\\x09\\x00\\xe0\\x68\\x00\\x80\\x44\\x42\\xc4\\x7a\\x17\\x68\\xeb\\x60\\x62\\x04\\x00\\x87\\xba\\x00\\x00\\x39\\x09\\x00\\x50\\x64\\x03\\x05\\x38\\x2f\\x76\\x46\\x9e\\x8e\\x00\\x70\\xf1\\xbf\\xbf\\x44\\xe0\\x7f\\xe1\\xb1\\xed\\x8d\\xec\\xcc\\x00\\xe0\\x42\\x12\\x00\\x40\\x82\\x00\\x00\\xd4\\x55\\x85\\xcb\\xe7\\xd4\\xd1\\xc1\\xc5\\x15\\x00\\x2e\\xa7\\x00\\x00\\x7e\\x05\\x00\\x48\\xe7\\x8f\\x7e\\x96\\x9d\\x3a\\x3a\\x9b\\x39\\x02\\xc0\\x7b\\x31\\x00\\x00\\xb9\\x00\\x00\\xd4\\x72\\xba\\xf1\\xfe\\xf1\\x04\\x31\\x31\\x34\\x35\\x34\\xdc\\x35\\x0a\\x04\\x28\\x20\\x10\\xc2\\x58\\x85\\xc6\\xc6\\xca\\xc7\\xca\\x11\\xc8\\x48\\xb1\\x92\\x83\\x4c\\xc1\\x4d\\xc0\\x13\\xaa\\xcd\\xaa\\x41\\x93\\xe0\\x63\\xe0\\x85\\x9c\\x51\\x0e\\xd0\\x88\\xbc\\xc2\\x90\\xcb\\x51\\x80\\x11\\x52\\x28\\x67\\x00\\x00\\x3c\\x41\\x72\\x27\\x41\\xe1\\xd0\\x0c\\xf1\\xc0\\x6f\\x9e\\xf5\\x97\\xab\\xab\\xa9\\xe5\\xd6\\xec\\xad\\xed\\xa7\\xd8\\x19\\x71\\x4d\\x32\\xb2\\x59\\x66\\x38\\x9a\\xec\\x36\\x38\\xcc\\x0f\\xbc\\x37\\xa6\\xb7\\xfd\\xfe\\x28\\x04\\x04\\x01\\x3c\\x45\\x88\\x61\\xc1\\xac\\xe6\\xd3\\x79\\x21\\x71\\x96\\xb0\\x75\\xe2\\xa0\\x0f\\x83\\x2d\\x93\\xe9\\xb5\\xce\\x08\\xd3\\x63\\x2d\\xc7\\x1b\\xc8\\xfb\\xdc\\xdd\\x46\\x81\\xc2\\x61\\x58\\xe6\\xa1\\x4a\\x23\\x58\\x16\\xc1\\x52\\xa5\\x19\\xe6\\x61\\x5a\\xc7\\x2f\\x39\\x5e\\x18\\x9a\\xa6\\x91\\x66\\xea\\x9a\\x66\\xb1\\x6e\\x04\\x76\\x56\\xc7\\x45\\x08\\xa7\\xbf\\x67\\x8d\\x78\\x0b\\x03\\x83\\x61\\xa8\\xab\\x23\\x0a\\xa3\\xa8\\x6b\\x43\\x93\\xa4\\xa9\\x6b\\x62\\x1a\\x27\\xa8\\xeb\\x82\\xa3\\x68\\x2a\\xaa\\xa3\\x2a\\x2b\\x2b\\x6a\\x8b\\x78\\x96\\xf7\\xff\\x3a\\xe0\\xb7\\xa1\\xba\\x2f\\xc8\\xaf\\x59\\xf1\\xda\\x9c\\x5c\\x74\\xeb\\xd5\\x47\\xbb\\x8f\\x33\\x6c\\xa0\\x77\\x59\\xaf\\x5c\\x86\\x6d\\x35\\xeb\\xb8\\x6f\\x5c\\xad\\xea\\x6d\\x35\\xbd\\x3f\\xf5\\x11\\xac\\x93\\xfa\\xd8\\x2a\\x5c\\x54\\xf0\\x37\\x9d\\x3c\\x0d\\xe8\\xaf\\xd3\\xfa\\xd8\\x39\\x5c\\xd4\\xf4\\x34\\x3d\\x3f\\xf5\\xb7\\xae\\x52\\xbe\\xdb\\x1a\\x5c\\x54\\xf9\\x35\\x5d\\x3f\\x0d\\xfa\\xaf\\x33\\xbe\\xd7\\x08\\x3e\\xad\\x7c\\xad\\x09\\x43\\x6d\\x31\\x21\\xa1\\x02\\xb2\\xa3\\x7c\\x0f\\x7d\\xee\\xb8\\x41\\xb9\\x1c\\x49\\x06\\xaf\\xf0\\x45\\x2f\\x22\\x21\\xcc\\xe2\\x83\\x6c\\xd0\\x3a\\xec\\x6a\\xb0\\x0d\\x32\\xd1\\x2d\\x10\\x5e\\x35\\x2b\\x10\\x39\\x8b\\xe6\\x76\\x23\\xe0\\x76\\x4b\\x04\\xba\\xb6\\xf7\\x1d\\xd3\\x16\\xdd\\x5f\\x88\\x5b\\x39\\x3d\\x4c\\xff\\x79\\x67\\x62\\x68\\xce\\x3d\\xfb\\xf2\\x2b\\x28\\x35\\x28\\xc8\\x0d\\xa3\\x8a\\x19\\x14\\xb4\\x88\\x2f\\xd4\\xbc\\x77\\x2c\\x61\\x64\\x28\\x10\\x8e\\x80\\x89\\xe9\\x13\\xd3\\x50\\x31\\x02\\x82\\x05\\x5d\\xe8\\x23\\x78\\xa2\\xd0\\x18\\xe9\\xf3\\x9b\\x51\\x62\\x61\\xa7\\x0a\\x0e\\x0e\\x4f\\x4a\\x76\\x1d\\x06\\x2e\\xe6\\xfe\\x13\\x1b\\x1b\\x4b\\xb3\\x5a\\x93\\x33\\x70\\x89\\xf9\\x07\\x70\\xe6\\x85\\x44\\xf5\\x9f\\x66\\x4a\\x32\\x68\\x3d\\xa9\\x0e\\x9a\\xd8\\x33\\xf7\\x3b\\xc5\\x6c\\xeb\\x9b\\x1b\\x4b\\xab\\xdd\\xc6\\x53\\x9b\\xdd\\x46\\xeb\\x7f\\x4b\\x89\\x3d\\xdb\\x94\\xfb\\xf0\\x67\\x67\\xe4\\xa2\\x12\\xbd\\x48\\x63\\x49\\x0f\\x78\\x61\\x1d\\x46\\x02\\x6e\\xae\\x81\\x9f\\xfe\\xbe\\xf6\\x1f\\xc9\\x20\\xa1\\x4e\\x3f\\x3e\\x56\\x41\\x02\\x49\\x40\\xa8\\xa1\\x76\\xb9\\x36\\x03\\x7d\\x1c\\x19\\xf3\\x46\\x6d\\x3c\\x09\\xb3\\x95\\x62\\x33\\x8a\\xa5\\xc2\\x5c\\x13\\xed\\x17\\x0c\\x30\\xc6\\x79\\xd6\\xf4\\xe2\\x92\\x0f\\x8e\\x48\\x3a\\x94\\x08\\x12\\x70\\x6e\\x9b\\x25\\xc3\\x4f\\x61\\xfc\\xc4\\x0d\\x56\\x38\\x1f\\x75\\x6a\\xca\\x12\\x64\\x0d\\x71\\x78\\x6f\\xe9\\xf2\\x06\\xa3\\x3d\\x49\\x09\\x77\\x93\\x7d\\x93\\xaf\\x6f\\x49\\xfd\\xcd\\x3b\\x33\\xfc\\xcd\\xa3\\x32\\x2d\\xdc\\x59\\xde\\xb3\\x07\\xa7\\xad\\x8e\\xf9\\xef\\x3b\\x22\\x33\\xc4\\xf3\\x5f\\x16\\xfc\\xb4\\xe2\\xb8\\x0e\\x72\\x54\\x72\\xb5\\xcb\\xb6\\xad\\xe8\\x73\\x0f\\x28\\x3a\\xb8\\x6b\\x0f\\x20\\xb6\\x6a\\xed\\x03\\x3c\\x12\\x78\\x17\\xf0\\x2f\\xe5\\xdd\\x11\\x9d\\xe2\\x3d\\x1c\\x9c\\x1c\\x3c\\xae\\xa1\\x5f\\x7e\\x68\\x05\\x6d\\x0a\\x31\\xcd\\xb1\\xcf\\x71\\xd6\\x73\\x94\\x0b\\x07\\x30\\xd1\\x67\\x60\\xd3\\xc1\\xf1\\xf4\\xeb\\xf7\\x9f\\xf6\\xe3\\x07\\x77\\xb9\\x7b\\x55\\x9d\\x1e\\x65\\x9c\\x88\\xf1\\x23\\xbe\\x2c\\xcd\\x89\\xcd\\xe1\\x6c\\x5b\\xc2\\x5f\\x0f\\xc2\\x7a\\xe2\\x13\\x1a\\xc2\\x5a\\xef\\x4a\\x75\\x9a\\x4a\\x6b\\x9c\\x32\\x80\\x9a\\x36\\x5c\\x10\\xf9\\x7c\\x58\\x7a\\x86\\x6c\\x3a\\xc0\\x6f\\xb0\\x7d\\x5b\\x0c\\xae\\x54\\xef\\x61\\x2e\\x23\\xfd\\xc1\\xc9\\x33\\x86\\x9f\\x3d\\x18\\xee\\xce\\x44\\xbc\\xa3\\xee\\x1d\\x46\\xac\\x21\\x96\\xd5\\x58\\xdc\\x91\\x65\\xbf\\x9f\\x9e\\x39\\x06\\x5c\\x42\\xb9\\x07\\xbb\\x1d\\x7a\\x99\\xce\\xe5\\x92\\x15\\xfc\\xb0\\x11\\x72\\x1a\\x66\\xa0\\x67\\xe0\\xe5\\x73\\x17\\x0d\\xe1\\xf7\\xcc\\x3b\\xbc\\x6a\\xcf\\xdd\\x1b\\xc2\\x40\\xb7\\x90\\xff\\xe0\\x6c\\xdb\\xc2\\x5f\\x7f\\x85\\xec\\x55\\xe6\\xc3\\xb3\\xfa\\x5b\\xb4\\x4f\\xce\\x86\\xe1\\x2f\\x2b\\xca\\x36\\xde\\xfa\\xc4\\x06\\xb6\\xe9\\x53\\x78\\x31\\x8e\\x31\\x5d\\x7b\\x09\\x79\\x6b\\x77\\x6a\\xfe\\x48\\x53\\x96\\x89\\x24\\x9f\\x4c\\x3a\\x3f\\xf2\\x8c\\x61\\x1f\\x6e\\x1d\\x77\\x06\\x22\\x2e\\xf1\\xb2\\x23\\x5c\\x8a\\xf2\\xc5\\x1c\\x62\\x7b\\x31\\xfc\\xe6\\xb6\\xb7\\x51\\x7a\\x04\\xbc\\xd5\\x1e\\x5c\\xfb\\x36\\xb6\\x36\\xe0\\x81\\x42\\xa7\\x40\\xce\\x9a\\xa2\\x9e\\x22\\xf0\\x7f\\x9e\\x53\\xce\\xf9\\x47\\xe6\\x93\\x8f\\x42\\x17\\x3f\\x27\\xbd\\x9e\\x6e\\xd9\\x0c\\x17\\x2f\\xe4\\xc6\\x71\\xf3\\xb7\\x34\\x7b\\x9d\\xfa\\x47\\xec\\x70\\xc9\\x1b\\xf1\\x22\\xa6\\xa2\\xa7\\x62\\xa7\\xe2\\x64\\xd7\\x13\\xd0\\xb1\\x5b\\x88\\xa9\\x59\\x98\\x06\\x1c\\x69\\x91\\xbe\\x56\\x9d\\x3d\\x3d\\xeb\\x6e\\x08\\xf6\\xd8\\x0b\\x60\\x07\\x61\\x07\\xf5\\x44\\x28\\x03\\x3c\\x2c\\xfe\\xdd\\xcc\\x19\\x15\\x7c\\x8a\\xbc\\x87\\xba\\x43\\xc9\\x21\\x3c\\x42\\x3f\\x7e\\xbc\\xb5\\x0c\\x3d\\x3f\\x18\\x77\\xe0\\x05\\x1b\\x3c\\x81\\xfb\\x6f\\x40\\x02\\xbd\\x3f\\x86\\x34\\x73\\x76\\x1a\\x40\\xfd\\x39\\xd7\\xa4\\x9e\\xfa\\x05\\x65\\xd5\\xbf\\x3e\\x22\\x0f\\x80\\x0e\\x38\\x41\\xf9\\xea\\x4c\\x36\\x90\\x33\\xcd\\x11\\x1d\\x73\\x1d\\x81\\x26\\xdb\\xd6\\xe6\\x3d\\x85\\x45\\x9a\\x8f\\xe9\\x87\\x2e\\xc2\\xb5\\xbc\\xf9\\x62\\x99\\xcc\\x14\\x99\\x5f\\xaa\\xd2\\xa9\\xaa\\x07\\x9e\\x6b\\x74\\x76\\x0b\\x0c\\xf8\\x28\\xa9\\x19\\x9e\\x5c\\x20\\x94\\x34\\xaa\\xaa\\xa9\\xd6\\x8e\\x28\\xf2\\xea\\xf9\\x6f\\xec\\xf2\\x07\\xec\\xc2\\xa8\\x4e\\x30\\xf2\\x4b\\x78\\xd3\\x4b\\x7c\\x3e\\xea\\xb0\\xcd\\x48\\x65\\x7b\\xae\\x1b\\x66\\x0d\\x69\\xe5\\x45\\x25\\x5c\\x22\\x1c\\x4e\\xa0\\x33\\x29\\xf4\\x5c\\xb0\\x16\\x07\\x78\\xb9\\x55\\xf7\\xae\\xbd\\x0c\\x7d\\x1d\\x9d\\x8a\\x98\\xa7\\xc6\\x7a\\x85\\x32\\x6e\\x99\\x0c\\x2b\\xe8\\x5c\\x88\\x27\\xe7\\xd2\\x7a\\x25\\x55\\x6e\\xb1\\xb5\\x4b\\x6e\\x9d\\xa0\\x0c\\x7d\\xbf\\x3a\\x8b\\xae\\x8a\\x79\\xcf\\x19\\x3a\\xab\\xae\\xc2\\xa2\\x1d\\x1b\\x08\\x2a\\xc3\\x4f\\x13\\xbd\\x9b\\x09\\x8a\\x46\\x27\\xd4\\xd7\\x28\\xd8\\xb3\\x8a\\xd3\\xcf\\xcc\\xbc\\x3b\\xf4\\x0b\\x20\\xcf\\x89\\xbd\\xdb\\x09\\x82\\xba\\x9c\\xe2\\xd5\\x0f\\xf4\\x6b\\xe6\\xb5\\x6b\\x06\\xfd\\xda\\x0d\\x74\\x5a\\xe4\\x36\\x6e\\x03\\xdd\\x2d\\xd1\\x10\\xad\\x65\\xf9\\xf9\\x44\\x77\\x8d\\x60\\x08\\x0a\\x92\\x3c\\x53\\x20\\xe2\\xf7\\x9c\\xde\\xfe\\x59\\xe0\\x1d\\xd8\\x19\\x45\\xca\\x1a\\xb3\\xe8\\x9b\\xd2\\x2c\\xde\\xa0\\xa8\\xdc\\xb0\\xe8\\xf7\\x57\\x79\\xc2\\xd7\\x1d\\xc0\\x77\\x8f\\xbb\\x76\\xff\\x6a\\xe3\\x8e\\xef\\xf0\\xcc\\xf7\\x7a\\x09\\x7c\\xa5\\x33\\x24\\x8e\\xbe\\x21\\x16\\x18\\x18\\xa5\\xdb\\xf3\\xe5\\x79\\x09\\x2d\\x79\\x49\\x61\\x00\\x7d\\x89\\x11\\xf6\\x8d\\x63\\xbc\\x29\\xa9\\x69\\xc5\\x32\\x68\\x60\\xed\\xaa\\xa7\\xed\\x6a\\xe0\\xf5\\xa9\\xa7\\xec\\x35\\x67\\x7c\\x32\\x27\\xb4\\x1d\\xc1\\xb0\\x1d\\xe6\\x78\\x12\\xc3\\x9e\\x50\\xea\\xf7\\x2f\\x17\\x45\\xaf\\x54\\x1a\\xfc\\x2a\\x3f\\x02\\x10\\x44\\xf1\\x21\\x0b\\xf2\\x42\\x3a\\x02\\x45\\x90\\x0e\\x14\\x3d\\xf1\\x46\\xf6\\xf0\\xfa\\x13\\x7f\\x20\\x2b\\xc5\\xed\\xff\\x8c\\xc3\\x88\\x42\\x26\\xdc\\x68\\x8f\\x88\\x26\\x97\\x69\\x24\\x97\\x70\\xee\\x08\\x95\\x29\\xa9\\x72\\x2d\\xb2\\xe8\\x53\\x6f\\x95\\xf4\\x38\\x25\\xe6\\x2f\\xc1\\xdc\\x58\\x23\\xee\\x29\\x41\\x3c\\x5f\\xeb\\x33\\xd3\\x9d\\x91\\xdb\\xa4\\xf3\\x2b\\x21\\x2c\\x8a\\x91\\x0a\\xc0\\xee\\xa3\\xdf\\xa4\\x01\\x35\\x4b\\x80\\x4b\\x23\\x66\\x51\\x0d\\x73\\x02\\xd7\\x70\\xc6\\x9d\\x6c\\x8f\\xaa\\x92\\xcb\\x89\\xb4\\xe0\\xa6\\x35\\x6d\\x8f\\x31\\x24\\xaf\\x32\\x2d\\x8e\\x49\\x9a\\xb7\\x4d\\x63\\x66\\x49\\x8b\\xb5\\xdd\\xc7\\xa9\\x3d\\xe2\\xc1\\xa6\\x3c\\x88\\x9d\\x7d\\x31\\x0b\\x96\\x65\\x33\\x4e\\x59\\xaa\\x66\\x66\\x13\\xa7\\x70\\x62\\xbc\\x1a\\xef\\xe9\\x40\\x7c\\x3e\\xf2\\xdf\\x34\\xa0\\x98\\x44\\x5b\\x6e\\x8c\\x2b\\xbb\\x51\\xcd\\xa4\\x59\\xf4\\xc4\\x51\\xe0\\x84\\xa6\\x50\\x2a\\xbd\\x87\\x4b\\x1e\\x62\\xf5\\x4a\\xbb\\x20\\xe9\\xca\\x42\\x4b\\xa6\\x93\\x70\\x2e\\xc2\\x83\\xff\\x43\\xf1\\x23\\x10\\x08\\x16\\x94\\xff\\xfd\\xa7\\x38\\x30\\x20\\xff\\xc3\\xf9\\xcd\\x68\\x37\\x84\\xd0\\x29\\x42\\xe2\\x07\\x4a\\x62\\xa8\\x69\\x31\\x11\\xba\\x95\\xa4\\x04\\x04\\x4b\\xe2\\x2f\\xdb\\x43\\x22\\x4c\\xaf\\x31\\x09\\x10\\x18\\xa5\\x50\\xe3\\x94\\x3e\\x61\\x6a\\x5d\\x30\\x24\\x51\\x4a\\x57\\x71\\x4c\\x57\\x31\\x4e\\x57\\x09\\xc4\\x07\\x51\\xc6\\x07\\x71\\xc2\\x07\\x31\\xc1\\x87\\x51\\x00\\x6e\\x88\\x08\\x6e\\x04\\x09\\x6e\\x98\\x09\\x6e\\x14\\x2a\\x66\\x88\\x2a\\x66\\x04\\x2b\\x66\\x98\\x2b\\x66\\x14\\x4c\\x76\\x88\\x4c\\x76\\x04\\x4d\\x76\\x98\\x4d\\x76\\x14\\x6e\\x6a\\x88\\x6e\\x6a\\x04\\x6f\\x6a\\x98\\x6f\\x6a\\xf4\\x07\\xdd\\x10\\x09\\xdd\\x08\\x0a\\xdd\\x30\\x0b\\xdd\\x28\\x4c\\xf5\\x10\\x4d\\xf5\\x08\\x4e\\xf5\\x30\\xcf\\x05\\x10\\x41\\xaf\\x6e\\x5d\\xa2\\xbf\\x3e\\xa4\\xb2\\xce\\xe0\\xd7\\x3a\\x05\\xb6\\x61\\x5e\\x48\\x61\\x53\\x59\\x6a\\x99\\x55\\x6a\\x53\\x6a\\x6e\\x99\\x66\\x6e\\x13\\x57\\xc3\\xb6\\xe2\\xae\\x6d\\x29\\x43\\xdf\\x9a\\xba\\x2e\\xfe\\xe7\\xfa\\x37\\x1d\\x0c\\x2e\\x0c\\x40\\x95\\xf6\\x81\\x9d\\xd9\\xcc\\xcc\\xca\\xca\\x7a\\x60\\xc7\\x07\\xc2\\xaf\\x2e\\xb4\\x94\\x92\\xd9\\xd1\\x72\\xa3\\x8f\\x82\\xa9\\x69\\x1a\\xaa\\x44\\xa1\\x67\\x9c\\xab\\x72\\x9c\\xf9\\x94\\xa0\\x56\\xda\\x7d\\x92\\x60\\xe2\\xa0\\x79\\xd7\\x2f\\x31\\xa2\\x75\\xbf\\x29\\xc3\\x18\\xe1\\x39\\x09\\xb7\\x11\\xca\\x7d\\x90\\x04\\x1a\\x96\\x79\\x9f\\xe5\\x71\\x0d\\xc5\\x3c\\x19\\x47\\x0b\\x87\\xc5\\x6a\\x55\\x65\\x61\\x7b\\xcd\\x69\\x91\\xeb\\xb2\\x40\\xcd\\xe0\\x0b\\x03\\x11\\x02\\xc9\\xb9\\xe9\\x36\\xed\\x06\\x60\\xae\\x39\\xae\\x7b\\x69\\xc8\\x69\\x32\\xd9\\xcf\\xe7\\x98\\xd1\\xaa\\xd3\\x3f\\xc2\\x80\\x2d\\xbf\\x5f\\x06\\xe1\\x0a\\xbc\\x98\\x04\\x31\\xf6\\xbe\\x1a\\x25\\x07\\xf8\\xbf\\x5e\\x00\\x2c\\x29\\x7f\\xdd\\xff\\xcb\\x0d\\x22\\x88\\x6e\\xc8\\x01\\x50\\x38\\x48\\x4d\\x4e\\x26\\xa6\\x7a\\x4d\\x66\\xa6\\x0f\\x99\\x5d\\xc9\\x37\\x9f\\xd4\\xc7\\x7f\\xdf\\x9c\\x74\\xfe\\xdf\\x3b\\x1f\\xf7\\x10\\xb7\\x09\\x4b\\xf5\\xf6\\x86\\x0d\\x6f\\xdf\\x38\\x95\\x67\\x63\\xdf\\x9c\\xd5\\x12\\x5a\\x1f\\x42\\xbe\\x70\\x6e\\x8c\\xfd\\xa5\\xc4\\x7f\\x7b\\xc0\\x2a\\x42\\xb2\\x2c\\x86\\x0c\\xc1\\x80\\xde\\x3a\\x8e\\x3d\\xc0\\x13\\xa4\\x5a\\xed\\x28\\xeb\\x60\\x0c\\x81\\x3e\\x3c\\xcb\\x08\\xcb\\x57\\x38\\x2f\\xeb\\xe1\\x32\\x3b\\x85\\x7f\\xca\\x76\\x74\\xfc\\x86\\xcd\\x3f\\xdf\\x66\\xde\\xfe\\xad\\xa7\\xfb\\x1d\\xce\\x1f\\x87\\x7b\\xf2\\xfb\\x69\\xfe\\x69\\x4c\\xca\\xe5\\xd9\\x59\\x44\\xb5\\x44\\x59\\x4a\\x42\\x42\\xf9\\x57\\x2a\\xb1\\x7a\\x95\\x94\\x6d\\xa4\\xfe\\x67\\x71\\x29\\xa6\\x81\\x93\\xc9\\x6b\\x4f\\xa8\\x43\\x27\\x9f\\xc3\\x22\\xfd\\x84\\x06\\x6a\\x2d\\x5b\\x53\\xbe\\xc4\\x52\\xb9\\xb6\\xc1\\x8a\\x4d\\xed\\x49\\x43\\x63\\x35\\xc9\\xd6\\x29\\xad\\x84\\x98\\xd5\\xbf\\x26\\x93\\x8c\\x05\\xfa\\x7c\\xda\\x30\\x8e\\x88\\x00\\xad\\xdd\\xf5\\x4d\\x9f\\x4f\\x2f\\x0b\\xbe\\xa8\\x95\\x83\\x92\\x67\\x54\\x05\\x1f\\xfb\\x3c\\x24\\x46\\x3a\\x32\\x02\\xc1\\x16\\x86\\x5b\\x3d\\xad\\xad\\x96\\xb4\\xa8\\x20\\xa5\\xd6\\xfe\\x7b\\x45\\x78\\x8f\\x21\\x8d\\xa3\\x0f\\x1a\\xba\\x3d\\x3a\\xe2\\xc0\\x31\\xd6\\xfd\\xdb\\x5f\\x64\\xbf\\xc2\\x0e\\x6d\\x75\\xd5\\xdb\\xcc\\xdc\\x78\\xdd\\x54\\x6c\\x6a\\x26\\xe5\\x37\\xb4\\xa7\\xad\\x89\\xd7\\x9a\\x97\\x4f\\x2a\\x89\\x5f\\x2a\\xd8\\x59\\x81\\x4a\\x09\\x58\\xe8\\x15\\xb7\\x31\\x78\\xfc\\x1f\\xbd\\x66\\x94\\x8f\\x1d\\xe6\\x6c\\x8e\\xf3\\xe2\\x4a\\x06\\xb0\\x52\\xf2\\x10\\xfd\\x47\\xc9\\x36\\x56\\xdd\\x33\\x4b\\x69\\x90\\x7e\\xa2\\xdc\\x47\\x37\\x7a\\xba\\x35\\x9c\\x89\\xcb\\xc6\\x49\\x0c\\xed\\x6b\\x49\\x72\\xcd\\xc3\\xa7\\x8b\\x47\\x60\\x12\\x0c\\x49\\xeb\\x71\\x17\\x2e\\x5b\\x37\\x92\\x7f\\xaf\\xaa\\x26\\x02\\xb3\\x20\\x5a\\x79\\xfe\\x0e\\x49\\x87\\x63\\x6b\\x2c\\xb7\\xae\\x6a\\x49\\xf8\\xd6\\xb6\\xf9\\x12\\x30\\x93\\x11\\x51\\x16\\x3e\\xe6\\x5b\\x5b\\xc7\\x0e\\x81\\x0a\\xca\\xd5\\x64\\x14\\xe7\\xa2\\x1c\\x96\\x9f\\xc6\\xcb\\x96\\x53\\x21\\xe8\\x6c\\x23\\xac\\x99\\x98\\x0b\\xbe\\x1e\\x94\\x60\\xee\\xce\\xcd\\x91\\x1e\\xa4\\xec\\xeb\\x5a\\x34\\x33\\x9b\\x4a\\x77\\x0c\\x50\\x24\\xc3\\x26\\x6c\\x50\\x75\\xac\\xff\\xd5\\xb2\\x40\\x32\\xde\\xcf\\x38\\xf7\\xc5\\x6e\\x43\\xb3\\xc7\\x77\\xb3\\x5a\\x48\\x81\\x7e\\xa4\\x1c\\xa9\\x72\\xda\\xef\\x58\\x6f\\xa2\\x9f\\x3d\\xa1\\x56\\x51\\xa5\\x61\\x76\\x30\\xc5\\xcf\\x2f\\x83\\x87\\x8b\\xf4\\x64\\xf1\\xa6\\x5e\\x69\\x98\\x2b\\x38\\xa2\\x5e\\xa3\\x37\\xe2\\xfc\\x95\\x3b\\xcb\\xea\\xc8\\xaa\\xa3\\xfc\\xd3\\xd0\\x10\\xdf\\xc9\\x8b\\x47\\x9a\\x5a\\x21\\xb2\\x4c\\x38\\x6b\\xb6\\xe9\\x78\\x49\\x5a\\xf9\\x2f\\x07\\xcf\\x13\\x8b\\x82\\xdd\\x99\\x83\\xaf\\x80\\x91\\x3e\\x3d\\x45\\x5d\\x1a\\xa4\\xf4\\x4a\\xc8\\x97\\x6a\\x85\\xa0\\x15\\x0c\\x3b\\x6a\\x0d\\xc5\\xf0\\x94\\xec\\x90\\x3c\\xc6\\x9d\\xac\\x4e\\x16\\x5a\\x0d\\x2e\\x46\\xf2\\x1d\\xf3\\x2f\\x44\\xf7\\x19\\xeb\\x9f\\x04\\xb0\\x52\\xc4\\x87\\xc4\\x1b\\x4c\\xb3\\x15\\x70\\x1b\\x77\\x6c\\xb5\\x76\\x75\\x5b\\xfd\\xdc\\xb5\\xbb\\x7f\\xfe\\x6a\\x9a\\x2e\\x80\\x7e\\x11\\x34\\xbf\\xcb\\xb8\\xc9\\x82\\xc0\\x96\\xc8\\x5b\\xd5\\xa3\\x37\\x78\\x6f\\x7a\\xe0\\x95\\x55\\x2f\\x51\\x17\\xc1\\xa8\\x45\\x6a\\xa0\\xe4\\xcd\\x13\\x0f\\xf3\\x15\\x88\\x10\\xac\\xfc\\x6b\\x4b\\x50\\x0e\\xfd\\xf6\\x77\\x5f\\x56\\x5a\\xa4\\x81\\xbb\\x6f\\xe6\\x5a\\xb3\\xbc\\x4f\\xb7\\x7b\\x46\\xb1\\xe4\\x89\\xdd\\x94\\x6f\\xf1\\x13\\x30\\x81\\x91\\x38\\xd4\\xba\\xa1\\xbb\\xcb\\xa1\\xae\\x24\\x99\\xcd\\x2e\\xa4\\xb8\\x0b\\xa6\\x3e\\x23\\x61\\xcc\\x2a\\x24\\x5e\\x60\\x1f\\x8e\\x18\\x0b\\xc8\\x34\\x56\\x3d\\xfc\\x23\\xc7\\x4c\\x71\\xf7\\x1d\\xf6\\xc3\\x5d\\xe0\\xa1\\x43\\x8d\\x41\\xe0\\xb1\\x43\\x8f\\x41\\xe0\\xfe\\x55\\x50\\xfc\\x56\\xf5\\x9d\\xd1\\xf0\\x83\\x91\\xe9\\x0b\\xb2\\x17\\x1a\\x4b\\xcc\\xbb\\x8f\\xea\\x0e\\x85\\x29\\xea\\x6f\\x1f\\xd5\\x1d\\x0b\\x53\\x94\\xed\\x8f\\xa2\\x31\\x6e\\x43\\xb4\\x57\\x41\\x43\\x34\\x6e\\xc4\\x18\\x92\\xd8\\x82\\x70\\xb3\\xaa\\x57\\x08\\x23\\x0b\\x95\\x28\\xb6\\xd6\\xc4\\x14\\xd0\\xa4\\xd8\\x07\\x1d\\xc3\\x55\\x87\\xa6\\x78\\xa9\\x4e\\xe3\\x08\\x6f\\x57\\x59\\x72\\x57\\x77\\x8d\\x49\\xd6\\xa7\\x6c\\x0c\\x4b\\xf2\\xfc\\xba\\xab\\x94\\x51\\xee\\x49\\x0d\\x6d\\xb1\\x2d\\x6e\\x54\\x4a\\x0d\\xbb\\xcc\\xdd\\x96\\xa4\\x4c\\x93\\xf8\\x3a\\xdc\\x4e\\xb5\\xfd\\x1e\\x10\\x5e\\x4a\\x01\\x3c\\x30\\xd4\\xb0\\x5d\\x89\\xf3\\xa5\\xb5\\xeb\\x94\\x0f\\x57\\x82\\xf3\\xae\\x61\\xb7\\x13\\x38\\x96\\xce\\xc8\\x8f\\x0a\\x0f\\x38\\x7d\\x75\\x25\\xf7\\x95\\x13\\x1d\\x0a\\xae\\xe7\\xb9\\x93\\x8d\\x3f\\x16\\x13\\xf2\\xcd\\x08\\xf7\\xbc\\x54\\x91\\x3c\\x1b\\xc5\\x81\\xde\\xd5\\xcd\\xae\\x4f\\xd1\\x7c\\xd7\\xa7\\x79\\x33\\x54\\x5a\\x22\\x5f\\x17\\x86\\x85\\x0e\\xbc\\x33\\x99\\x8b\\x11\\x01\\x2b\\x00\\x3a\\x04\\x58\\x40\\x09\\x74\\xbc\\xd8\\xe5\\x34\\xdf\\x9c\\x28\\xa2\\xcb\\x4b\\x67\\x9b\\x8f\\x6c\\x7f\\x1f\\xe4\\x8a\\x2b\\x95\\xfa\\x50\\xc5\\xd4\\xfb\\xe2\\xf0\\xe1\\x06\\x8c\\xda\\xf8\\x67\\x2b\\x8b\\x46\\x8f\\xa5\\x88\\x17\\xa8\\x04\\xe9\\x84\\x9b\\x55\\x4d\\x57\\x86\\x80\\xea\\x3d\\xa0\\xfd\\x03\\x37\\x64\\xb4\\x17\\xa5\\x04\\x37\\xab\\x4a\\xa9\\xb5\\x21\\xc1\\x30\\xb9\\x43\\xb3\\xec\\x0e\\x02\\xbf\\x3b\\xd9\\xea\\xe7\\x3f\\xee\\x2d\\x31\\x78\\x76\\x12\\xd7\\x44\\x4c\\x51\\x6c\\xf2\\x92\\xa2\\x60\\xcb\\xc8\\x42\\xa7\\xa4\\x9f\\xce\\xf8\\xf0\\x6a\\x82\\x87\\xe8\\x04\\xe4\\x45\\xe6\\xd0\\x3f\\xf2\\x61\\x43\\x34\\xec\\x39\\x31\\xa4\\xfd\\x0d\\xb8\\x88\\x2c\\xcf\\x5c\\x44\\x10\\x1e\\x44\\x14\\xef\\x85\\xfe\\x8e\\xa9\\x85\\x73\\x9d\\x9f\\xe5\\x81\\x25\\x5b\\xf3\\xa3\\xf9\\x65\\xf6\\x25\\x28\\xb5\\x24\\x81\\x3d\\x28\\xfa\\x30\\xb0\\x6d\\x48\\x73\\x6d\\x94\\x74\\xcf\\x0f\\x5d\\x0d\\x6f\\x3b\\xec\\x08\\x17\\xc4\\x9d\\xed\\x1a\\x99\\x35\\x37\\xdf\\x16\\x11\\x07\\x5b\\x76\\xb1\\x55\\xf8\\xf2\\x13\\xca\\x3a\\x75\\xa5\\xc4\\xc7\\x96\\x0a\\x69\\x9e\\xef\\x1b\\xf9\\x5b\\x86\\x90\\x38\\xca\\x9b\\x00\\xf9\\x17\\xe5\\x98\\x4f\\x95\\xf9\\x57\\x6d\\x02\\x0b\\xc7\\x99\\x7b\\x5d\\x97\\xa4\\xb9\\x61\\x61\\xd7\\x2d\\x2e\\x60\\x69\\xe6\\x20\\xeb\\x83\\x1c\\x54\\x32\\x7d\\x20\\xb2\\x45\\xb9\\x08\\xa0\\x5d\\xbc\\xf4\\xe5\\xf3\\x67\\x41\\xbd\\xbc\\xae\\x2b\\xfd\\x45\\x41\\x9c\\x1f\\x8c\\xcd\\xc6\\xd7\\xf9\\x67\\x02\\x41\\xf9\\x5b\\xe0\\x74\\xb1\\x94\\xa6\\x0a\\x3d\\xfc\\xbc\\x43\\x58\\xb0\\xd8\\x1b\\xaf\\x1e\\xe4\\x01\\x0a\\x88\\xd0\\x73\\x1e\\xcf\\x65\\x9b\\x22\\x13\\x16\\x10\\x83\\x6b\\x1a\\x2c\\xe1\\x65\\x3f\\x7a\\x23\\xb5\\x7c\\xfd\\x63\\xbe\\x7e\\x51\\xa7\\xb8\\xbc\\xa1\\xed\\x0c\\xbc\\x95\\xec\\xf1\\x22\\xd5\\x85\\xb6\\x60\\x75\\x2b\\x73\\x42\\x46\\x19\\xf8\\x54\\x43\\x1e\\x42\\xfd\\x20\\x0a\\x2c\\x64\\xbe\\x4a\\x34\\xe6\\xc1\\x8c\\xb8\\x6c\\x99\\xd6\\xda\\x18\\xc5\\xd1\\x75\\x7c\\x8f\\x8f\\xaa\\xab\\xfa\\xca\\xf8\\x32\\xff\\xfe\\xb5\\x31\\xff\\xa1\\x22\\x3e\\xb4\\xfc\\x1c\\x43\\x52\\xc9\\x05\\xc6\\xdc\\x80\\x88\\x28\\xa4\\xeb\\x04\\x85\\xc2\\x46\\x18\\x45\\x06\\x2f\\x39\\x1f\\xc8\\x06\\x3f\\x36\\xd7\\x4d\\xd5\\xc8\\x46\\x24\\x01\\x7a\\xc7\\xf6\\x5b\\xe8\\xbe\\x94\\x6a\\x21\\x10\\x05\\x9e\\x6a\\x31\\x10\\x66\\xba\\xac\\x50\\x1a\\xd4\\x9a\\xed\\xb7\\x3c\\x28\\x0e\\x5b\\x5d\\x14\\x05\\xbc\\xe5\\x7c\\x20\\x07\\x3c\\xd3\\x50\\x37\\xbc\\x82\\x4b\\x78\\xbf\\xaf\\xaa\\x9b\\x1e\\x7f\\x85\\x77\\x0e\\x76\\x98\\x05\\xfe\\x9b\\xf1\\xf6\\xaf\\xc7\\xc0\\xfe\\x9a\\xf0\\xb1\\x1a\\x89\\x31\\xb9\\x51\\xe3\\xed\\xf0\\xd3\\xd0\\x7e\\xb9\\xb2\\x31\\x39\\x8b\\x31\\xb9\\x13\\x63\\x81\\xd0\\xd3\\xe0\\x7e\\xb9\\xf4\\x31\\x39\\x8d\\x31\\xb9\\x95\\x7d\\xdd\\x3c\\x3c\\x70\\x41\\x85\\xba\\x95\\xe3\\x5f\\x46\\x04\\x06\\xc3\\x1e\\xfd\\x9c\\x47\\xe6\\x88\\x5e\\x81\\x72\\xb6\\xff\\x75\\xdc\\xef\\x6f\\x00\\xd1\\x13\\x24\\xc6\\x1b\\x52\\x57\\xe5\\xe4\\xed\\xfb\\xbe\\xfb\\xda\\x47\\x1e\\x40\\x86\\x27\\x16\\x8d\\xf8\\x41\\x4c\\x96\\x48\\x8d\\xf4\\x13\\x2a\\x94\\x8c\\x0e\\x1b\\x04\\x2c\\x27\\x90\\xc4\\x27\\xc5\\x4a\\xad\\x19\\xa1\\x5a\\xd9\\xa3\\x66\\x6b\\x71\\xde\\xee\\xb2\\xb8\\x67\\x49\\xff\\xfa\\xb2\\xbd\\xa8\\xc5\\x67\\xc7\\xec\\x7a\\xbb\\xad\\x07\\xf4\\xfa\\xcd\\xa3\\xff\\xf6\\x3b\\x2f\\x19\\xaf\\xe0\\xfc\\xb9\\x43\\x7a\\x84\\xfb\\x3a\\xdb\\xc3\\x37\\xff\\xd1\\x2f\\xef\\x19\\xe8\\xe7\\xa3\\x58\\x50\\x42\\x0e\\x14\\xa6\\x3a\\x7c\\xa1\\x5c\\x38\\x5b\\x7e\\x39\\x46\\x01\\xeb\\x13\\x8f\\x8a\\x20\\x28\\xe7\\x78\\x73\\x45\\x3b\\xc2\\xa5\\x3d\\xc2\\x9d\\x93\\x44\\x42\\xb2\\xc6\\x99\\xb5\\x26\\x6d\\xd1\\xc6\\x68\\x24\\x42\\xaf\\xd0\\xb2\\xc1\\x3c\\xe4\\xcc\\x89\\xe1\\xbe\\x85\\xbb\\x3a\\x71\\x18\\xa0\\x5f\\x80\\xf8\\xa8\\x36\\xf0\\x07\\x25\\x32\\x84\\x34\\x94\\xf8\\x05\\xcd\\xf4\\x93\\xcf\\xf6\\x4e\\x01\\xeb\\x05\\xaf\\x35\\x82\\x3b\\x34\\x0c\\xf5\\x87\\x64\\x01\\x3d\\x98\\xd8\\xfc\\x65\\x3e\\xa6\\x38\\x16\\x2a\\x8e\\x08\\xbb\\x28\\x52\\xf7\\x57\\x47\\x84\\x66\\x84\\xaf\\x7b\\xb4\\xaf\\x88\\x7d\\xd1\\x0f\\x9b\\xef\\x89\\xba\\xbf\\xfe\\xb1\\xbd\\xab\\x2f\\xed\\x62\\xb0\\xb1\\x0d\\xcc\\xb0\\x70\\xf3\\x6f\\x54\\x7a\\xc5\\x1c\\x2f\\x0e\\x5f\\x1f\\x09\\x62\\x15\\x96\\xa5\\xe6\\xb9\\x6b\\x46\\xca\\xfa\\xee\\xd6\\xe9\\x06\\xde\\x4d\\x77\\x2c\\xf7\\xb4\\xac\\x1d\\xd7\\xcf\\x4b\\x88\\xcb\\x1f\\xe0\\xbf\\x82\\xbf\\x0b\\x6b\\x9f\\x82\\xd6\\x77\\x56\\xf2\\x2a\\xfd\\xde\\xaf\\xc1\\xff\\xbc\\x34\\x1f\\xf7\\x57\\xf9\\xe7\\x7f\\xfb\\x74\\xab\\x9c\\x8d\\xf0\\xc6\\x9b\\x7c\\x49\\x75\\xeb\\x58\\xa7\\x1a\\x50\\x96\\xdc\\x8f\\x96\\xd8\\xef\\x0f\\xf9\\x02\\xa1\\x45\\xe9\\x2c\\x9a\\xd1\\x9e\\x98\\x68\\xc2\\x99\\x75\\x5c\\xce\\x04\\xc4\\x09\\xc9\\x62\\xe5\\x42\\x95\\x00\\x34\\xe9\\x98\\x78\\x20\\x74\\x28\\xb4\\x08\\x20\\x84\\x24\\x09\\x09\\x95\\x02\\x53\\x25\\x8c\\x64\\x49\\xaa\\x18\\xb4\\xfc\\xc2\\xf7\\xca\\xe0\\xe3\\xbe\\x39\\x00\\x0e\\x71\\xe9\\xcb\\x4c\\x46\\x83\\xee\\xc2\\x12\\x41\\x1f\\xc2\\xe3\\xcc\\x37\\x74\\x5a\\x7f\\x7e\\x50\\xbe\\x3d\\x75\\x9d\\x81\\x4a\\x1a\\x21\\x40\\x13\\x87\\xf5\\xe2\\xa6\\x0a\\x36\\xff\\x6f\\x1a\\x61\\x7b\\x74\\xe6\\x7a\\xb5\\xc9\\xe5\\xb4\\x7e\\x7e\\x4b\\x7b\\xd9\\xdf\\x78\\x28\\x77\\xc3\\xc9\\xf4\\x71\\xab\\x0a\\xb1\\x75\\x9d\\xf2\\xe0\\xee\\xcc\\xe5\\xc5\\xc0\\x36\\xa6\\xab\\xa7\\xf1\\xe0\\x45\\xd1\\x5f\\xff\\x7a\\x7a\\x9a\\xf2\\xdc\\x61\\xab\\xd9\\x95\\xa5\\xa7\\x90\\xda\\xc4\\x15\\xce\\xa3\\x98\\x8e\\xbe\\x1e\\x17\\x25\\xed\\x11\\x5f\\xbf\\x6d\\xdf\\x31\\x9e\\xf1\\x22\\xc4\\x20\\x54\\x23\\x6e\\x7b\\xe3\\xe8\\x92\\xa6\\x6d\\x84\\xfb\\xe3\\xb4\\xa2\\xe4\\xf5\\x29\\x63\\xc8\\xcc\\x2f\\x7c\\xb9\\x96\\x7b\\x53\\x0d\\xeb\\x2d\\xe4\\x3a\\xfc\\x10\\x31\\x6f\\x5d\\x77\\x43\\x0f\\x8b\\x15\\x0e\\x20\\x0a\\xbc\\x5c\\xd8\\x59\\xf5\\x1b\\x90\\xf9\\x1d\\xae\\x4a\\x15\\xbc\\x34\\x07\\x47\\x60\\x20\\xec\\x82\\x4a\\xdc\\x8c\\x2c\\x06\\xbf\\x23\\x00\\x62\\x0a\\xc6\\x1b\\x18\\x24\\x6e\\x9a\\x85\\xf0\\x3b\\xe5\\x19\\x84\\xea\\x31\\x84\\x0a\\x66\\x1a\\x2f\\x90\\xa5\\x80\\x87\\xfb\\x86\\x91\\x9a\\xcc\\xd4\\xa8\\x32\\xee\\x3a\\x03\\x54\\xf8\\xe1\\x0e\\x62\\x3a\\x12\\x9b\\xac\\x9d\\x1f\\xd1\\x89\\x4b\\x15\\xec\\x26\\xe0\\x1f\\xe9\\xea\\x9c\\x21\\x2b\\xe3\\x25\\x3d\\xed\\x39\\x2d\\x6b\\xf6\\xa4\\xb7\\xcc\\xe4\\x5b\\x1a\\x05\\x3f\\x9a\\xbd\\x6c\\x64\\xbc\\x4c\\x24\\x34\\x62\\x7c\\xaa\\xa0\\xc9\\xe0\\x6d\\x41\\x26\\x03\\xff\\x47\\xd3\\xe6\\x54\\x57\\xf1\\x08\\x79\\x31\\x1d\\xd4\\x81\\xde\\xfe\\xbe\\x8a\\xf1\\x89\\x24\\xaf\\x7b\\x62\\xb5\\xde\\xc5\\xfc\\xc7\\xd5\\xd9\\xc3\\xc3\\xd9\\xd5\\x07\\x8e\\x86\\x86\\x9c\\xb6\\xb6\\x5c\\xfa\\x64\\x86\\x19\\x33\\x16\\x9d\\xd6\\x08\\xce\\xe3\\xe4\\x5f\\xd0\\x5a\\xfb\\x8e\\x8a\\x0d\\xb5\\xf3\\xb3\\x5a\\x79\\x99\\xaa\\x2b\\xf5\\x37\\x51\\x9d\\xa6\\x98\\x96\\x86\\x20\\x81\\x06\\x09\\xdf\\x98\\xd7\\xc0\\x81\\x2c\\x99\\x00\\xb3\\x9d\\x83\\xf6\\x92\\x40\\xd8\\x4a\\xa3\\x64\\x05\\x8d\\x76\\xa1\\xdf\\x54\\x74\\xe3\\x92\\x11\\x46\\x70\\xd3\\x92\\x58\\x35\\x30\\x19\\x52\\x24\\xa3\\x92\\xbf\\xe0\\x12\\xd9\\x54\\xc8\\x8a\\xe7\\x18\\x49\\x4c\\xfa\\xaf\\x43\\x75\\x24\\x07\\x30\\x79\\xd9\\x83\\xd7\\xc3\\x39\\x40\\x4b\\xd0\\x53\\x70\\x47\\xbb\\x9b\\xff\\x4e\\xdc\\xa9\\x6a\\x64\\x4d\\xe2\\xa1\\xa7\\x97\\x42\\x6b\\xfd\\x26\\xba\\x6c\\xd6\\xc6\\xa7\\xc9\\x68\\xfc\\x69\\xc5\\xc4\\x99\\x1e\\x42\\x6d\\x0d\\x47\\x91\\x4d\\x35\\x31\\x07\\xb3\\xd6\\x21\\xff\\x57\\x54\\x51\\xeb\\xd2\\x52\\xb5\\xb9\\xff\\xb4\\x80\\x66\\xc4\\xa6\\xda\\xec\\xd2\\xde\\xa1\\xa3\\xe8\\x60\\x5d\\x4d\\x4d\\xa3\\x66\\x4a\\x72\\xac\\x4a\\x5e\\x27\\xf2\\x1e\\x85\\xee\\x5a\\xfd\\x6d\\x56\\x8a\\x90\\xe1\\x31\\xff\\xea\\xa2\\xd3\\x22\\x04\\x77\\xb6\\xa3\\xae\\x59\\xe6\\x4f\\x66\\x7e\\x0e\\x3a\\xaa\\x71\\xf3\\xfb\\x34\\xf5\\x72\\x9e\\xe7\\xbd\\x2f\\x87\\x20\\xc3\\xb4\\xa5\\x9b\\x96\\x5b\\x7b\\x87\\x69\\xbb\\x9b\\x9a\\xf4\\xe2\\x56\\x95\\x3a\\xa1\\xe5\\xb8\\x33\\x5b\\x1c\\xc6\\x11\\xdb\\x72\\x1a\\x79\\x8a\\x8c\\x47\\x57\\x5d\\xd5\\xce\\xf3\\xfb\\x71\\xb4\\x4d\\xee\\x2b\\xb8\\xdf\\x8a\\x43\\x6b\\x96\\xd3\\x89\\xae\\x4b\\x24\\x2f\\x2f\\x4b\\xcd\\x88\\x59\\x61\\xbc\\x85\\x5b\\xd7\\xd9\\x43\\x05\\x75\\xab\\x57\\x83\\xfb\\x46\\xf0\\x2f\\x19\\xbe\\x40\\xcf\\x20\\xe9\\x43\\x84\\xe1\\xf8\\x12\\xc8\\xee\\x55\\xbc\\x84\\x5c\\x2c\\x30\\xbf\\x55\\x5f\\x45\\x5d\\xac\\x31\\x02\\x38\\x34\\xc8\\xa7\\x66\\x75\\x99\\x9f\\x85\\xa0\\x57\\xd1\\x9b\\xc8\\x2e\\x67\\x3e\\x03\\xec\\x0b\\x1c\\x3f\\x01\\xa4\\x15\\x69\\x2d\\x57\\x59\\x5b\\x70\\xd2\\x88\\x9d\\xa8\\x05\\x43\\x0a\\x4e\\x49\\x44\\x17\\x1c\\x92\\x88\\x6a\\xd7\\xc4\\xf9\\x79\\x08\\xb9\\xb0\\xdd\\xbe\\x16\\xec\\x25\\xbd\\x41\\xdc\\x8b\\xcc\\x5a\\x39\\x7a\\x70\\x70\\xfa\\x6c\\xdd\\xcc\\x27\\xf8\\x41\\xbd\\x25\\xec\\xe2\\xab\\xb0\\x8a\\x7c\\xbe\\x86\\x00\\xbd\\x8b\\xc4\\x66\\x9d\\x00\\x62\\x3d\\x4f\\x8e\\x33\\xad\\xd3\\x81\\x3a\\xfb\\xd9\\x55\\xcc\\xc5\\xc6\\xef\\xdb\\x7c\\xd9\\x2d\\xa2\\xf8\\xeb\\xe3\\x03\\x0f\\x7f\\xa3\\x8f\\x72\\xa8\\xd2\\x06\\x2f\\x49\\x32\\x0d\\x23\\xe3\\x96\\xf5\\x1c\\xa7\\xe0\\x3c\\x77\\xf3\\xbf\\xee\\x0e\\xab\\x96\\x06\\x49\\x6d\\x15\\xc3\\x97\\x76\\x5b\\x19\\x4d\\x43\\xbd\\x4e\\x22\\x1e\\x76\\x10\\xb7\\xf8\\x9f\\x1f\\xa3\\xa8\\x90\\xcb\\xa3\\x17\\x32\\x3d\\x9f\\x2b\\x19\\x53\\xa3\\xa3\\x87\\x3b\\x9b\\x79\\x9d\\x8c\\xad\\x47\\x7d\\xc9\\x82\\xaf\\x1f\\x3c\\x40\\x28\\xef\\x9e\\x57\\x6b\\xb4\\x1f\\x2c\\x09\\xd1\\xb2\\x45\\x44\\x06\\xae\\x00\\x25\\x1d\\x9b\\x28\\xa9\\x72\\xf0\\x9e\\x22\\x02\\xe0\\xa7\\x84\\x55\\xa8\\x20\\x16\\xad\\xf2\\xdb\\xdd\\x9a\\x19\\xaa\\xbc\\xe0\\xaf\\xb8\\x71\\x49\\x15\\x7f\\x3b\\xf1\\x9e\\x1c\\x2b\\x82\\x57\\xb1\\x1d\\x55\\x8e\\xf7\\x75\\xee\\xa2\\xe9\\xf5\\x1b\\xe6\\xf5\\x88\\x44\\xb1\\xd9\\xa8\\xbe\\x7d\\x52\\xde\\x56\\x1c\\x6e\\x31\\x2f\\x27\\xe8\\x00\\xd1\\xe6\\x58\\x5a\\x53\\x13\\x13\\x64\\xb5\\x00\\x2b\\x94\\x50\\x68\\x2a\\x5c\\x10\\x09\\x4a\\x1f\\x07\\x12\\x98\\x16\\x38\\xb8\\x32\\xea\\xcd\\x1f\\x63\\x49\\x5b\\x9a\\xac\\x07\\x8a\\x1a\\x2d\\x1b\\xe7\\x0c\\xae\\x65\\xc1\\x11\\x66\\xab\\xd9\\xf0\\x05\\xfb\\xcd\\x47\\x62\\xb9\\x97\\x9a\\x66\\x3c\\xc2\\x77\\xfa\\x6d\\x18\\x16\\x86\\xcb\\x05\\xe1\\x3b\\x26\\xdf\\xa1\\xd1\\xdc\\xeb\\x6c\\x5a\\x18\\xb2\\xfa\\x75\\x4d\\xaf\\x16\\x0c\\x2d\\x61\\x3b\\x5d\\x41\\x7c\\x77\\xe7\\x75\\x4b\\x46\\x85\\xad\\xfc\\x2c\\x66\\x2b\\xe7\\x18\\xb8\\x66\\xad\\x49\\x5a\\xf9\\xd6\\x3f\\xb0\\x00\\x54\\x7e\\x12\\x17\\x86\\x8c\\x3f\\x3c\\x1a\\xc6\\xcb\\x83\\x01\\x46\\xbb\\x7b\\x2f\\x89\\x7d\\x2f\\x04\\x06\\xef\\xa3\\x8d\\x35\\x89\\xd3\\x4e\\xfa\\x09\\x5f\\xc0\\xa9\\xc3\\xdf\\x18\\xf9\\xb9\\xa0\\x38\\x5a\\x68\\x80\\x03\\xd4\\x18\\x5b\\x9d\\x51\\x3e\\xa9\\x4b\\x47\\xf5\\x1d\\xea\\x0d\\x87\\xcf\\x41\\x92\\x56\\x5a\\x8a\\x5a\\x9a\\x13\\x6b\\xe1\\x68\\x96\\x6d\\x50\\xa9\\x89\\x92\\x9f\\x83\\x63\\xcb\\x84\\x03\\xb3\\x78\\x78\\xa8\\x18\\x7d\\xcc\\xc5\\xcf\\xd3\\x2a\\x47\\x89\\xe0\\xda\\xd2\\x50\\x36\\x34\\xb6\\x71\\xae\\x81\\xa7\\x1e\\xac\\x3f\\xc6\\xfd\\x63\\x0f\\x72\\xe8\\xb9\\x5f\\x9e\\x19\\x1f\\xa0\\xd2\\x1d\\xfd\\x14\\x6e\\xd8\\x97\\xc0\\x0c\\xc2\\xa6\\xf1\\x2b\\xb8\\x75\\x0a\\xb3\\x14\\x87\\x76\\x66\\x64\\xca\\xaf\\x6a\\x24\\x80\\x52\\x5a\\x56\\x3b\\xd3\\xd0\\xb3\\xc4\\xd6\\x38\\xab\\xeb\\x32\\x00\\x59\\x8a\\xb5\\xa0\\x8f\\x4e\\x4e\\x4e\\x99\\xab\\xf6\\x96\\xac\\xe9\\x84\\x17\\xad\\x5a\\xca\\xa1\\x3a\\x03\\x8f\\x69\\xb6\\xb0\\xd1\\x72\\x9a\\x6f\\x8d\\x2c\\xe8\\x8f\\xbc\\x24\\x1f\\xde\\xc8\\xc7\\xc2\\xcb\\x5a\\xd5\\xe7\\xbb\\x1c\\x79\\xfe\\xc9\\x81\\x60\\xb7\\x1d\\x2a\\x98\\xc4\\x42\\x12\\xf0\\x46\\x2c\\xc5\\x7d\\xb7\\x88\\x5b\\x59\\x69\\xff\\x72\\x8a\\xac\\x5b\\xe5\\x9f\\xcc\\x60\\x74\\x4f\\x2f\\x41\\xe8\\xfb\\xc0\\x73\\x0a\\x72\\xea\\xc1\\x32\\x70\\x83\\x07\\xc8\\x1d\\xbe\\xa3\\x13\\x4f\\x94\\xa1\\xbf\\x0c\\x60\\x1b\\x40\\x0a\\x11\\xab\\xce\\xa6\\x9b\\x59\\xb0\\xd8\\x80\\x87\\x0f\\xcb\\xa3\\x7e\\x53\\xeb\\xc9\\xa8\\x4f\\x9b\\x40\\x22\\x76\\x3f\\xcb\\x88\\xe9\\x2f\\x01\\xd5\\x42\\x9e\\xc8\\x28\\xc4\\x83\\xe9\\xd2\\x48\\x58\\xea\\x20\\xc2\\x61\\xa1\\xb1\\x40\\xe1\\x7e\\xcf\\xcb\\x0c\\x56\\xc8\\x48\\x9f\\x65\\x83\\x54\\x62\\xc5\\xfd\\xaf\\x84\\x0c\\xd5\\xe4\\xf1\\xa0\\x4a\\x5a\\x94\\xc7\\xe3\\x35\\x79\\x38\\xb9\\x6a\\x43\\x1a\\x50\\x41\\xc7\\x15\\x0b\\xf1\\xe1\\xae\\xb3\\xa6\\x67\\xdb\\x3f\\x9a\\xad\\xef\\x1b\\xb8\\x90\\x04\\xeb\\x87\\xf2\\x55\\xf8\\x37\\xd2\\x16\\xe3\\xa7\\x90\\x11\\x8a\\x0b\\x4d\\x95\\x13\\x59\\x3d\\x8d\\x4c\\xb7\\x9d\\xb9\\xe7\\x0a\\xf1\\x6a\\xde\\x61\\x0e\\x0e\\x0c\\x5b\\xec\\xad\\x55\\xa2\\x3c\\xc4\\x75\\x36\\xfc\\xf1\\x36\\x14\\xbd\\x0c\\x6d\\x78\\xb3\\x07\\x8a\\xa0\\x13\\x9d\\x00\\x74\\x4c\\xe0\\x6f\\x64\\xf6\\x60\\xae\\x1f\\x00\\x0e\\x08\\x1b\\x7e\\xd3\\x32\\x75\\x54\\x35\\x36\\x16\\xad\\xc9\\xd2\\xd5\\x47\\xce\\x45\\xcc\\x83\\xa9\\x8e\\x72\\x0a\\x3b\\xb1\\x68\\x5a\\x08\\x4a\\xae\\x73\\x75\\xe3\\xce\\xc7\\xbe\\xf5\\xc1\\xbf\\xf4\\x42\\xcd\\xda\\x46\\x6a\\xd6\\x6d\\xdf\\xbf\\x1b\\xfb\\x91\\x84\\x04\\xe3\\xda\\xfa\\x19\\x5c\\x5a\\xad\\x9f\\x7b\\xb5\\x79\\x12\\x6d\\xa9\\x23\\x3c\\x67\\xb9\\xc3\\x72\\x5e\\xb0\\x95\\x23\\xf9\\x67\\x5a\\xdf\\xff\\x3c\\x2f\\x4d\\x0b\\x3d\\x62\\xef\\x27\\x9c\\x6c\\xbc\\xca\\x9e\\xa9\\xe8\\xd9\\x3b\\xd2\\x2d\\x0c\\x1a\\x9c\\x94\\xec\\xdd\\x8e\\x2b\\x71\\xdf\\x61\\xf1\\x7b\\x3c\\xdc\\xca\\x38\\x6a\\xca\\x63\\x98\\x55\\xd9\\xdc\\x79\\x3b\\xaf\\x09\\x5c\\x8f\\x1e\\x36\\xe7\\x53\\xb5\\xae\\xa5\\xdb\\xad\\x8b\\xda\\x3a\\x0c\\x89\\x81\\x20\\x63\\x60\\x79\\xfa\\x08\\x03\\x02\\x39\\xe1\\x4c\\x87\\x0f\\x33\\xe8\\x17\\xd1\\x8f\\x0a\\x14\\x55\\x1b\\x7b\\xc8\\x91\\x4d\\x7f\\xc5\\x1f\\xb1\\x1c\\x77\\x8d\\xdc\\x2e\\xfb\\x64\\xd9\\x4d\\xf0\\x97\\x96\\x0b\\xd6\\xff\\x50\\x67\\xf9\\x58\\xb9\\xfd\\x84\\xc8\\x8a\\x08\\x15\\x08\\x87\\x40\\x1b\\x44\\x5f\\x7a\\x1f\\xe8\\xd2\\xb6\\x85\\x02\\x04\\x5a\\x92\\xe0\\xe8\\x40\\xc4\\x96\\xdb\\x9c\\x65\\xab\\x5e\\x75\\xa9\\x77\\x9f\\x3a\\xc0\\xd0\\xa4\\x60\\x58\\x12\\x55\\x41\\x50\\xc1\\x13\\xa1\\x49\\x85\\x84\\x4c\\x45\\x2f\\xa0\\xd6\\x69\\x6f\\xa4\\xc0\\x85\\x85\\x5b\\x63\\xd4\\x19\\xe5\\x63\\xb4\\x6d\\x97\\xad\\xd9\\x89\\x47\\x54\\x73\\xe3\\xba\\x50\\xb2\\xb2\\x79\\x37\\xa8\\xec\\x9e\\xfe\\x59\\x62\\x1b\\xb1\\xb3\\x59\\xf9\\xb7\\xc7\\xcc\\x64\\x7e\\xd5\\x0e\\x77\\x57\\x74\\x9e\\xf4\\x22\\xb7\\xd9\\xdc\\xab\\x68\\xb0\\xe7\\xaf\\x37\\xe9\\x7e\\xb8\\x0c\\xe5\\x5d\\x05\\xb3\\xbf\\x46\\xcb\\x0e\\x5f\\xf6\\xaa\\x2a\\x2c\\xef\\x53\\xdd\\x11\\xbc\\x2e\\x29\\x14\\xab\\x28\\x2d\\x2f\\xe8\\x59\\xd4\\x5e\\x78\\x3b\\x77\\xaf\\xcf\\xbb\\x58\\x3c\\xf7\\x85\\x35\\x9b\\x0d\\x0e\\x6f\\xd3\\x5a\\x2f\\x1c\\xe3\\xa0\\x90\\x08\\x8f\\x58\\xe1\\x1a\\x74\\xc9\\x70\\xc1\\x9a\\x8f\\x81\\xe6\\xd7\\x29\\x86\\xc0\\x25\\x2b\\x19\\xb2\\xfc\\x39\\xd8\\x01\\x37\\xc5\\x07\\x84\\xb2\\xc5\\x8a\\x55\\xb5\\x38\\xad\\x20\\x7e\\x4e\\x48\\xb6\\x90\\x43\\x13\\xb1\\x92\\x52\\xcf\\x26\\x41\\x9a\\x4b\\xea\\x76\\xaf\\xa2\\xa1\\x18\\x4b\\x8a\\xf5\\x34\\x8a\\x23\\xe6\\xf6\\x80\\x5f\\x3d\\xf3\\x4f\\xc9\\x1f\\x41\\x70\\x2f\\x57\\x76\\x15\\xe0\\xdf\\xb7\\x09\\x76\\x74\\x30\\x99\\x06\\x95\\x79\\xcb\\xb9\\x7f\\xdf\\x5e\\xd9\\x5e\\x2f\\x47\\x26\\xd2\\x5b\\xb4\\xbd\\xa3\\x4c\\x70\\xe6\\xf8\\x3a\\x5c\\x1b\\x24\\x55\\xf9\\xad\\xdd\\xdb\\x96\\xd8\\x34\\xde\\x2f\\xa3\\x51\\x0c\\x75\\xac\\x40\\x59\\xec\\x50\\xe1\\xf2\\x6f\\x5b\\x4e\\x35\\x62\\xe3\\x3c\\x09\\xce\\x2f\\x78\\x98\\x1b\\xc8\\x4d\\xde\\xb6\\x71\\x54\\x9f\\x07\\xdc\\x5f\\xe0\\x8b\\xe4\\x9d\\x9e\\x65\\xb8\\xe6\\xb7\\x34\\x3b\\x39\\xa8\\x78\\xaf\\x37\\xf6\\x17\\x0e\\xf4\\x87\\xc9\\x02\\x00\\xb8\\xa3\\x7a\\xc1\\xaa\\x43\\xb7\\x03\\x31\\x11\\x4a\\xb5\\x72\\x64\\xe8\\x06\\x21\\x13\\x3f\\x83\\x37\\x0d\\x23\\xc1\\x74\\x14\\x64\\x4d\\x86\\x00\\xa7\\xd8\\x44\\xd9\\xc9\\x82\\x14\\xf1\\x63\\x13\\x61\\x13\\xa2\\x81\\xfa\\xc7\\xaa\\x52\\xdc\\xa2\\xb2\\x3d\\xa7\\xb9\\xa3\\x10\\x39\\x97\\xef\\x1a\\x84\\x74\\x44\\x1f\\x24\\xaa\\x50\\xe9\\x20\\x7e\\xdf\\xaa\\xc6\\xd6\\xea\\x82\\xb2\\x87\\xbf\\xbb\\xf9\\xc4\\x7e\\x68\\x3b\\x9b\\x12\\x82\\x8c\\xd2\\xbe\\x6d\\xd5\\x0b\\x89\\x5c\\x41\\xba\\x55\\x3d\\x89\\xe3\\xa3\\xf2\\xaf\\x98\\xb5\\xb0\\xe5\\x93\\xda\\xa7\\x8c\\xca\\x5a\\xff\\xea\\xa2\\xf3\\xc8\\x2a\\x5a\\xb9\\x5f\\x55\\x2e\\x3a\\x10\\x51\\x9c\\x3b\\x1b\\xeb\\xde\\x3b\\xcb\\x49\\x1e\\x28\\xfc\\x55\\x2e\\x2e\\x1a\\x98\\x59\\x23\\x61\\x2e\\xea\\x3e\\x28\\x07\\x07\\xce\\x36\\x2c\\x69\\x2f\\x2e\\x18\\x0c\\xce\\xaa\\x8c\\xe3\\xe5\\xee\\x74\\xc6\\x99\\x9f\\x65\\x2c\\x26\\x34\\x59\\x6f\\x5b\\x7a\\xa3\\x6f\\xce\\x2e\\xef\\x71\\x6e\\x1d\\x90\\x59\\x34\\x18\\xa6\\x79\\x67\\x0e\\x5d\\x35\\xa3\\x7b\\xff\\x3a\\xec\\xb4\\x0f\\x6c\\xef\\x32\\xa7\\x7b\\x29\\x4e\\xc6\\x66\\xc0\\x66\\xad\\xef\\xa4\\xcd\\xfd\\xfc\\x7f\\xe6\\x54\\x6d\\xe7\\x4d\\xd7\\xd0\\xf4\\xab\\x11\\xfe\\x4d\\x9d\\xd5\\xec\\x0c\\x16\\x26\\x48\\x79\\xf1\\x1d\\x1f\\x03\\x03\\x49\\x3c\\x8f\\x82\\xc0\\x26\\x62\\xba\\x50\\x44\\x2f\\xfe\\xcb\\x48\\x12\\x58\\x78\\xf0\\x2b\\xe5\\x1c\\x06\\xc2\\x6d\\x38\\xe5\\xf7\\xca\\x34\\x34\\x38\\x6b\\x96\\x88\\x27\\x83\\xe1\\xde\\xbb\\xb3\\xb8\\x22\\x3a\\x5c\\xea\\x2b\\x4b\\xd3\\x5a\\x90\\x73\\xb2\\x09\\x06\\x44\\xbb\\xff\\x6c\\xb2\\x08\\x82\\x5c\\x73\\x95\\x6f\\x49\\xcf\\xb7\\x68\\xdd\\x56\\xd3\\x63\\x64\\x62\\x55\\x6f\\x4b\\x49\\x9f\\xe6\\xdf\\x80\\xbb\\x01\\x37\\x1e\\xb2\\x71\\x7f\\x05\\xf3\\xd0\\x1a\\x4f\\x37\\xf3\\xed\\xca\\xe0\\x97\\x5f\\xb5\\xec\\x27\\xb0\\x90\\xf6\\xda\\xc3\\x5b\\x15\\xb5\\xfe\\xdf\\xa2\\x36\\x3b\\x1d\\x22\\x6e\\x35\\xcf\\x5f\\xae\\x32\\x76\\xd7\\x55\\x16\\xf6\\x84\\x4f\\xbd\\x41\\x82\\xb1\\xd3\\x37\\x5a\\xe9\\x35\\x6b\\x3b\\x39\\x89\\x1d\\xbe\\x43\\x27\\x04\\xda\\x56\\x7f\\x5c\\xa1\\xbf\\xc7\\x0e\\xcc\\x98\\x79\\x45\\xab\\x99\\x04\\x09\\x14\\x41\\xef\\x89\\xf3\\x18\\xc2\\xe7\\x28\\x91\\xff\\xc8\\xa5\\x2b\\xac\\xaa\\x04\\x3d\\x7b\\xa9\\xf1\\x48\\x9e\\x7b\\x11\\xe2\\x3a\\x4c\\xff\\x9e\\x54\\x0a\\x8d\\x20\\xd8\\xf5\\x13\\xba\\x04\\x85\\x7a\\xee\\xa7\\xa6\\xa8\\xd7\\x86\\xda\\xc3\\x93\\x1c\\x34\\x45\\x28\\x66\\x86\\xf2\\x76\\xfd\\x4d\\xb0\\x43\\x47\\x43\\xe2\\xa5\\x42\\x69\\xc9\\xdb\\xb1\\x8d\\xf4\\x39\\x22\\xb6\\xf9\\xc1\\x67\\x9f\\x95\\xd2\\xe0\\x07\\x44\\x6b\\x11\\xfb\\xa1\\x50\\x59\\x12\\xcd\\x63\\x22\\xb2\\xf8\\x42\\xd9\\x09\\x41\\x17\\xd0\\x06\\x29\\x6b\\x99\\x54\\x0c\\xf0\\x1e\\xd3\\xee\\x29\\x1c\\xe3\\x7e\\x0c\\xc3\\x94\\x79\\x9f\\x5e\\xde\\x45\\xfb\\x3e\\xdc\\x3d\\xc0\\x37\\xd6\\x92\\xe4\\x1c\\xdf\\xeb\\xac\\xb1\\x98\\xf9\\x87\\xf9\\xfa\\xe7\\xf2\\xb5\\x0c\\xee\\x37\\xe7\\x96\\xf2\\x96\\x8d\\x8c\\x67\\x15\\x92\\xac\\xdf\\x72\\x9e\\xae\\x63\\x16\\x0f\\x06\\x7c\\x3b\\xa5\\xe8\\x27\\x5e\\x16\\xa5\\x7f\\x0d\\xde\\x79\\xe6\\xb4\\x06\\xe1\\xdf\\xf9\\x22\\x08\\xfd\\x0e\\x74\\x15\\x15\\x9d\\x08\\x64\\x21\\xef\\x81\\x85\\xc2\\xc0\\x52\\x59\\xc4\\x0d\\xbc\\x98\\x6a\\x46\\xab\\x07\\x89\\x87\\xb0\\xc2\\x59\\x0b\\x35\\x4d\\x7d\\x9a\\x9b\\xdc\\x33\\x1c\\x41\\x1e\\x13\\xc5\\x75\\x69\\xb7\\x39\\x80\\xa6\\x2b\\xdb\\x51\\xff\\x08\\x20\\x86\\xbd\\x6f\\x94\\x95\\xd1\\x4b\\x2b\\xd8\\x1e\\x66\\xb7\\x9f\\x14\\xa3\\xdb\\x71\\x0f\\x38\\xef\\x13\\xc9\\x86\\x6d\\x4a\\x6b\\xb1\\x18\\x21\\x9f\\x22\\x4d\\xff\\xdd\\xd8\\xfc\\xf7\\x9a\\x91\\xbe\\x66\\x28\\x7c\\x52\\xa7\\x2a\\x4a\\x59\\xf6\\x88\\x1d\\xde\\x0a\\xdf\\xee\\xad\\xb9\\x71\\xca\\x4d\\x62\\xa3\\xf1\\xe2\\x72\\xa5\\x8e\\x76\\x47\\x60\\x2e\\x09\\x27\\x3d\\x33\\xf7\\x8f\\xa6\\x77\\xd5\\xef\\xd2\\xd2\\xbe\\xa3\\x67\\x5a\\xee\\xd7\\x12\\x85\\xd5\\xc7\\x81\\x41\\x45\\x04\\xda\\x5d\\xd0\\xef\\xd0\\xc4\\x45\\xb8\\xc1\\x1f\\x70\\xe4\\x6e\\xe8\\xa1\\x61\\x61\\x44\\x8a\\xbc\\x30\\x09\\x21\\x85\\x44\\xaa\\xd8\\x8c\\x6d\\xa1\\xbe\\x15\\x25\\xcc\\x09\\x25\\x64\\xe1\\x44\\x62\\x60\\x41\\xc1\\xb6\\xfb\\x59\\xe6\\x73\\x96\\xed\\x3b\\x50\\xf0\\x6a\\x73\\x54\\xe9\\xfc\\x85\\xab\\x70\\x85\\x9a\\x54\\xea\\xb8\\xa0\\xac\\x6b\\x81\\x42\\x54\\xe4\\x05\\xf8\\x06\\xef\\x83\\x5a\\x5b\\x7e\\x56\\xce\\xb3\\x48\\xdb\\xa8\\x3f\\xa9\\x42\\xab\\xc3\\xbe\\x9b\\x7c\\x4c\\x8a\\x18\\x8d\\xbd\\x7a\\xdc\\x1a\\x62\\xbf\\xe9\\xe5\\xa5\\x61\\x92\\x59\\x03\\xd6\\x5c\\xab\\xfb\\x5d\\xc3\\x06\\x67\\xfa\\xd9\\x15\\x99\\xff\\x19\\xb9\\x84\\xdc\\x06\\x8b\\xde\\xf5\\x9d\\xb3\\x51\\xe9\\xd5\\x0c\\x65\\xe2\\x62\\x47\\x30\\x52\\x89\\x4f\\x3e\\xe3\\xf3\\x64\\xb2\\x34\\xd8\\x58\\x19\\x6b\\xfd\\xd9\\x59\\xfb\\xcd\\x59\\x37\\xe9\\xf6\\x77\\xa3\\x88\\xcd\\xe8\\x55\\x4e\\x87\\x96\\x46\\x07\\xa3\\x74\\x41\\xb1\\xc6\\x48\\x5e\\x37\\x4d\\x6b\\x34\\xad\\x99\\xd0\\xee\\xaa\\xd3\\x41\\x85\\x39\\xfb\\x7e\\xfb\\x3c\\x2f\\xf7\\x14\\xba\\x41\\x4c\\x86\\x56\\x6e\\xe5\\xcf\\x9f\\x1d\\x5a\\x28\\x1b\\x05\\x7f\\x26\\x81\\xb7\\x01\\xcf\\x71\\xd7\\xe4\\x7a\\xb2\\xad\\x43\\xd6\\xf5\\xc2\\x07\\x7a\\xfc\\xbf\\xad\\xe6\\xfb\\xeb\\xec\\xf2\\x3e\\xea\\x79\\x3d\\x6e\\xdf\\x51\\x41\\x12\\x6d\\x18\\x66\\xd9\\xa5\\x65\\xd3\\xe3\\xde\\xc4\\x1e\\x9f\\x9e\\xd3\\x71\\x16\\x1e\\xaf\\xcb\\xfc\\x2f\\xef\\x9f\\x0b\\x62\\xa7\\xa4\\xc9\\x4e\\x6d\\xf6\\x05\\x0c\\xcd\\x07\\x70\\x03\\x91\\x07\\x58\\x9f\\x33\\x6a\\xd3\\x88\\x9f\\x22\\x6f\\x27\\x8a\\x01\\x03\\x28\\x20\\x01\\x54\\x02\\x60\\x51\\xfe\\xc7\\x40\\x3d\\xf4\\xd5\\x28\\x3b\\x12\\x04\\x86\\x81\\x31\\x16\\xcb\\x5a\\x32\\x2b\\x60\\x3a\\x57\\xcb\\xe5\\x82\\x53\\x9e\\x36\\x36\\xa4\\x4b\\xac\\x6c\\x59\\xc8\\x82\\xcb\\x7e\\xaf\\xd0\\xa9\\xed\\xec\\xe6\\x1f\\x8c\\xb9\\x3d\\xea\\x21\\x90\\x56\\x58\\xff\\x04\\x62\\x9b\\x40\\x80\\x49\\x21\\x50\\x45\\x7a\\x5b\\x0c\\xa0\\x7d\\xfb\\xb3\\x02\\xb8\\x07\\x07\\x12\\x41\\xd0\\x2c\\x87\\xba\\x82\\x70\\xd4\\xc9\\x16\\x73\\x44\\xe4\\x31\\xee\\xe5\\x5e\\xe5\\x03\\x58\\xf5\\x5a\\x70\\xb2\\xa5\\x2b\\xa0\\xa6\\xc5\\xe4\\xe4\\x67\\x72\\x6f\\xa1\\xe0\\xf3\\x48\\xe0\\x3c\\x2a\\x50\\x1e\\x0f\\xee\\x35\\xd4\\x71\\xd6\\xa2\\x4b\\x1b\\x36\\x8a\\x36\\x30\\x8a\\x3c\\xd9\\xc3\\x04\\x1f\\xc6\\xbd\\xd8\\x3b\\x97\\x3e\\xc7\\x86\\xf4\\xfb\\x96\\x16\\x7b\\xde\\x06\\xc6\\x8f\\x5f\\x2e\\x9f\\x49\\xa1\\x85\\x55\\x25\\x7f\\xd3\\xfe\\xe9\\x9c\\x27\\x51\\x7c\\xa7\\x74\\xd5\\xba\\x36\\xb4\\x54\\x93\\x5f\\x23\\x0e\\x80\\x99\\x37\\x6f\\x2f\\xf0\\x3b\\x4a\\x44\\x2d\\x77\\x95\\xee\\x6c\\xf9\\xec\\xc3\\x50\\x26\\x65\\x97\\xc8\\xb2\\x1d\\xd5\\x8d\\x39\\xd5\\xba\\x67\\xdf\\x60\\xb3\\xf1\\x58\\x37\\xe6\\xb6\\xac\\x41\\x80\\x85\\x9a\\xcf\\x74\\x40\\xb6\\xd3\\x53\\x8a\\x78\\x04\\x9a\\xea\\x1c\\x62\\x89\\x45\\xf6\\x4d\\x6b\\x25\\xd8\\xc8\\x89\\x08\\x55\\xe0\\xd4\\x60\\x65\\x13\\x6f\\x7d\\x8b\\x08\\x66\\x86\\xbe\\x93\\x00\\x2f\\xbb\\xdd\\xf5\\xc8\\xa9\\x39\\xc5\\x89\\x05\\x08\\x5c\\x4e\\xd9\\xa4\\x86\\x37\\x10\\x2e\\x10\\x6a\\x78\\x42\\x44\\x9e\\x47\\x3c\\x6b\\x42\\x9a\\x5b\\xec\\x3b\\x38\\xeb\\x3e\\x5f\\x59\\xc6\\x02\\xcb\\xdb\\xf7\\x07\\xb8\\xf9\\xbd\\x9d\\xde\\x33\\x62\\xf3\\xfb\\x36\\xb4\\xb5\\x84\\x34\\x7a\\xcd\\xe5\\x9e\\xe5\\x46\\x17\\x59\\x8e\\xbe\\x05\\xd7\\x0d\\x97\\xe4\\xfc\\xa8\\x01\\x1b\\xcf\\x77\\xdb\\x7f\\x04\\xd7\\x54\\x3a\\x0f\\x2a\\x84\\x0d\\xf2\\x03\\x9c\\x96\\x66\\xde\\xb3\\xf5\\xed\\xbc\\x0c\\x25\\x86\\xe7\\x6f\\x03\\x19\\xf0\\xc0\\x0c\\xb3\\xdb\\xab\\x8f\\x83\\x91\\x17\\x7c\\xc7\\x7f\\x28\\xf3\\xe8\\x70\\xd0\\x11\\x65\\x43\\xf5\\x4e\\x40\\x99\\x88\\x56\\xbb\\x13\\x5c\\x63\\xd9\\xa3\\xa8\\x75\\x60\\x3d\\xf8\\xb6\\xa8\\x4e\\x82\\xef\\x1d\\x8a\\x51\\x6c\\x08\\x5f\\x74\\xbb\\xdd\\xa9\\xa2\\x1a\\x2f\\x86\\x04\\x74\\x59\\x4d\\xa6\\xc5\\x65\\xf3\\x36\\x22\\x35\\xf1\\x38\\x1c\\x1c\\x22\\x6f\\xe4\\xbf\\xbd\\x2c\\x17\\xe8\\x08\\xfa\\x37\\xe6\\x7e\\x1e\\xdc\\x3f\\x37\\xd8\\x9e\\x0c\\xf5\\x49\\xee\\x1c\\x74\\x4d\\x98\\xc5\\x5c\\x83\\x1b\\xba\\xf9\\xc2\\xbb\\x10\\xad\\x59\\x80\\x83\\x00\\xe0\\x96\\xa0\\x23\\x87\\x8d\\x98\\x6e\\xb3\\x68\\xb4\\x92\\x8f\\x17\\xaa\\x4a\\x36\\x0b\\x90\\x06\\x0f\\x45\\xa7\\x8b\\x87\\x1d\\x15\\x10\\xde\\xd6\\x9d\\x51\\xd5\\x14\\x12\\x64\\x27\\xd1\\x03\\x43\\x5e\\x15\\xb0\\x40\\x50\\x15\\x9f\\xce\\xf4\\xe8\\x71\\xd0\\x42\\x3a\\xd2\\xdf\\x5b\\x8e\\xdf\\xaa\\x66\\xf4\\x06\\xcb\\x2e\\x35\\xdc\\x5c\\xc7\\x0f\\x0f\\xb7\\x01\\xf3\\x94\\xa5\\x32\\x92\\x90\\xd8\\x19\\xbd\\x5a\\x04\\x75\\xba\\x04\\x0e\\xf4\\x27\\x0c\\x5b\\x7c\\xf6\\x8c\\x20\\xe9\\x8c\\x9c\\xe8\\x50\\xc9\\x5e\\xb0\\x05\\x24\\xe4\\x39\\x17\\xd1\\x44\\x4c\\x4a\\x96\\xef\\xda\\xb1\\x73\\x67\\x21\\x24\\x1c\\xa5\\xda\\xaa\\xc8\\x90\\xa0\\x2d\\x34\\x26\\xb1\\x79\\xa4\\x34\\x90\\x36\\xb9\\x78\\xb1\\x9d\\xf4\\xb9\\xbc\\xf6\\x96\\x58\\x01\\x97\\x8e\\xe4\\xea\\x17\\x01\\x4e\\xb6\\x83\\x2a\\x1a\\xef\\x83\\x5f\\x18\\xd6\\x8f\\xec\\x3e\\x95\\x90\\xb4\\x28\\xc8\\xd3\\x5f\\xf3\\x47\\x91\\xe8\\x62\\x1d\\xda\\x24\\x7e\\x51\\xdf\\x3c\\xd9\\xea\\xa9\\xb8\\x2b\\x9f\\x87\\xc3\\x22\\x0a\\x84\\x9d\\x2f\\xaa\\xf1\\x16\\xf7\\x22\\x3d\\xe0\\xf4\\xc3\\xe6\\xdf\\xb5\\x2a\\xd3\\x16\\xd9\\x84\\x9b\\x6a\\xb1\\x05\\x4a\\xb7\\x10\\x6c\\x01\\x1a\\x91\\x56\\x3e\\x80\\x66\\x45\\x70\\xdb\\x38\\x26\\x24\\x48\\xe7\\x3c\\x05\\x55\\x75\\x8a\\x61\\xc2\\x48\\x05\\xd7\\x7d\\xb1\\xec\\xc8\\xd0\\xcc\\xce\\x65\\xf5\\x03\\xa9\\xd4\\xfb\\x5e\\x38\\xd7\\x2b\\x32\\x37\\x1b\\x3f\\x8d\\xac\\x6c\\x3e\\x99\\xdd\\x9d\\xa7\\x05\\x90\\x21\\x8c\\x1d\\x6f\\x42\\xb7\\x6b\\x66\\x3d\\xa3\\xc8\\x70\\x4b\\xdd\\x6d\\xb6\\x1c\\xd1\\x19\\xb8\\x99\\xf2\\xdb\\x27\\xac\\x55\\x86\\xd1\\xa8\\xff\\x2f\\xf4\\x54\\xe2\\x36\\x12\\x85\\xfe\\xd7\\x47\\xfa\\xc9\\x2c\\x6b\\x13\\x9f\\x39\\xe2\\x28\\x77\\x78\\x7c\\x85\\x06\\x09\\x17\\x08\\x4c\\x68\\x1c\\xd8\\x43\\x92\\x32\\xfb\\xab\\x7c\\x4c\\x23\\x18\\x49\\xbb\\x1e\\xa6\\xb0\\x85\\x8a\\x2f\\xe5\\xe3\\x27\\x6e\\x64\\x80\\x6f\\x61\\xd9\\xf7\\x6d\\x03\\xcd\\x9e\\xc1\\xc0\\x93\\xdc\\x0c\\x85\\x03\\x09\\x0c\\xaa\\x8a\\x4b\\x17\\xe1\\x9a\\xbe\\x7a\\xfd\\x5e\\xff\\xd7\\xfc\\x6d\\x4a\\x65\\x2b\\x9f\\x57\\x6d\\x36\\xb0\\x4a\\xeb\\x5b\\xeb\\x98\\xb9\\x12\\x16\\x29\\x09\\xd2\\x10\\x45\\x54\\x78\\x01\\x85\\xce\\x47\\xe2\\xb6\\x2e\\x69\\x46\\x12\\x1b\\xfc\\x0b\\x55\\x2e\\x82\\x22\\xc9\\xf3\\x62\\xe7\\x7b\\x3b\\xba\\x6b\\x8e\\xe4\\x16\\x25\\xf1\\x01\\xd7\\x79\\x09\\x55\\x99\\x41\\xc2\\x6c\\xc9\\x84\\x8b\\xbf\\xc7\\xe7\\xcc\\x0e\\xfc\\x5c\\x02\\x44\\x13\\x94\\x50\\x27\\x10\\xcb\\xa0\\x59\\x3a\\xa5\\x41\\x6a\\xa9\\xeb\\x95\\x45\\xa7\\x75\\x2c\\x62\\xf5\\x16\\x8b\\x9b\\x77\\xc9\\xf5\\x56\\xac\\xb6\\x2b\\xb0\\x9e\\x30\\xb0\\x66\\x6f\\x87\\xe4\\x30\\x87\\x53\\xd6\\x3d\\x47\\xda\\x1d\\x1a\\x0a\\x4c\\x02\\x4c\\x1c\\x60\\xf0\\xb1\\x02\\xb6\\x69\\x7f\\x8e\\xa6\\x53\\x4d\\xc8\\xfc\\x3d\\x35\\x0d\\x3a\\x6d\\xd7\\x3b\\x7b\\xa1\\x14\\xf0\\x3a\\x46\\x97\\x7d\\xd5\\x1b\\x72\\x18\\xd1\\x8f\\x7f\\xc1\\x37\\xd8\\x34\\x6a\\x7c\\x6d\\xe2\\xf9\\x40\\xc4\\xce\\xd6\\x97\\xbe\\xca\\xed\\x55\\x81\\xc1\\xa4\\x48\\x71\\x8b\\x03\\xad\\x47\\x19\\x96\\xdf\\xf7\\x15\\x87\\x27\\x16\\xaa\\x8f\\x2a\\xec\\xd6\\x87\\xfb\\xf9\\x3b\\x56\\xb5\\x9e\\x23\\x53\\x89\\x7a\\xff\\xfc\\xa2\\xfa\\xd0\\x20\\x09\\xfd\\xfb\\xd3\\xe1\\x03\\xfb\\x95\\xf3\\xd3\\x92\\x26\\x2b\\x04\\x57\\xe4\\x1b\\x0e\\x2c\\xab\\xe3\\x42\\xbc\\x3d\\x16\\x8b\\x48\\x4f\\xfc\\xc1\\xa6\\x0a\\x65\\x7c\\xbc\\xc2\\xfa\\xd2\\x88\\xa2\\x49\\x09\\x2b\\xce\\x6e\\x04\\x0b\\x4d\\xa9\\x31\\x71\\xff\\x36\\xbd\\x16\\xfb\\xbb\\xff\\xaa\\x50\\xac\\x36\\x15\\xd7\\x41\\xd3\\x6f\\x5a\\x66\\x05\\xed\\x1b\\x15\\x13\\x03\\x91\\xe3\\xef\\xb3\\x8f\\x09\\x92\\x49\\xcf\\xe7\\x23\\x7c\\xc8\\xb0\\x38\\xd9\\x86\\xfb\\xf7\\xa7\\xec\\x77\\x5f\\xe6\\x9f\\xcb\\xaf\\x99\\xca\\x77\\x87\\xd5\\x5e\\x0a\\x9f\\xdd\\x29\\x41\\xf7\\xe4\\x30\\x1f\\x0f\\x7a\\x1d\\xf7\\x47\\x7e\\xf8\\x59\\x8e\\xcd\\xa6\\xae\\xda\\xab\\x33\\x1f\\xdc\\x1f\\xfe\\xd7\\x68\\xc0\\x46\\xd5\\xae\\x4d\\x8a\\x8b\\xf6\\xef\\x1f\\x28\\xbf\\x59\\x3b\\xc2\\xb3\\xe6\\x00\\x2c\\x93\\xe6\\x7b\\xcf\\xb6\\x0e\\x8a\\x1a\\x2a\\xcc\\x30\\x53\\x48\\x64\\x38\\x31\\x0e\\xf6\\xef\\xc6\\xcc\\xdb\\xd6\\xe8\\x97\\x93\\x7e\\x97\\xf7\\x8f\\x2f\\xbf\\x13\\x08\\xc1\\xaf\\xf6\\xfa\\x16\\x36\\xea\\x8a\\xe6\\x96\\x1b\\x93\\x24\\xe6\\x4f\\x02\\x0f\\xff\\xed\\xe9\\xb2\\xb7\\xce\\xeb\\x9d\\xc3\\x7e\\x42\\xcd\\xa8\\x95\\xe3\\x4e\\xed\\xc9\\x6a\\xa8\\xd0\\x15\\x0f\\xf0\\x27\\xa8\\x51\\x2b\\xe4\\x55\\xe2\\x61\\x0b\\x95\\xc6\\x53\\x9a\\x58\\xc9\\xdf\\x1f\\xd9\\x44\\x32\\x4a\\xc4\\x8b\\x58\\x6c\\x18\\x4a\\x70\\x10\\x30\\xc2\\x4e\\x24\\x1c\\xa9\\x7b\\x06\\x33\\x70\\x6b\\xad\\xab\\x74\\x01\\xcb\\x94\\x94\\x25\\x82\\x64\\x29\\x5a\\xcf\\xbd\\xcd\\xa3\\xe1\\xed\\x4c\\x01\\x4b\\xa5\\xd9\\x38\\xcf\\x3d\\x03\\x21\\xa3\\x7f\\x62\\x86\\x71\\xd5\\x6b\\xf1\\x1e\\x86\\x87\\x5e\\x20\\x34\\x6a\\x71\\xa8\\x39\\x92\\x0a\\x2a\\xcf\\x9f\\xed\\x66\\x5e\\x6e\\xe1\\xf3\\xc3\\x42\\xe1\\xf3\\x5f\\x17\\x97\\xaf\\xab\\x05\\xdc\\x26\\xe3\\x8e\\x2f\\x0a\\x5c\\xbe\\x71\\x28\\x69\\x09\\x37\\x55\\x0c\\x04\\xbf\\x76\\xa3\\x2c\\xaa\\xae\\xd6\\xb7\\xe6\\x1c\\x1f\\x1b\\x68\\xb0\\x07\\x79\\x81\\xd5\\x58\\xbc\\x41\\xc9\\x88\\x74\\xe6\\x9c\\x32\\x55\\x73\\x55\\xc2\\xaa\\x52\\xc6\\xf4\\x25\\xd7\\x06\\xea\\x61\\xb4\\x87\\xad\\x63\\x2d\\xa2\\xc2\\xed\\x50\\x56\\xae\\xa4\\xdc\\xef\\x8e\\x08\\x87\\x18\\x3e\\x8f\\xf2\\xf5\\xd6\\xe6\\x1e\\xc0\\x85\\xa1\\xff\\x61\\xf4\\x8f\\xab\\x87\\x3a\\x43\\x6b\\x9a\\x87\\x4f\\x80\\xf0\\x5d\\x69\\x47\\x6e\\xa1\\xcb\\xcd\\x57\\x41\\x65\\xd5\\x7a\\x95\\x71\\x59\\xfc\\xaf\\xe4\\x59\\x14\\xaf\\xcc\\xc2\\xfa\\x61\\x8b\\x9f\\x62\\xf1\\x5d\\x0c\\x9f\\xb9\\x97\\xbb\\x19\\xde\\xfd\\x57\\x93\\x1f\\x77\\x1d\\x30\\xc4\\xd6\\x9f\\x3e\\xa5\\x96\\xbb\\x33\\xb3\\x6e\\x74\\x52\\x0a\\x51\\x13\\x48\\x22\\x70\\x67\\x91\\x13\\xe9\\xf8\\xf7\\xd5\\x07\\x68\\x08\\xdc\\x4d\\x6b\\xa0\\x95\\x52\\x88\\xa5\\x0c\\xb8\\x0f\\x35\\x3c\\xec\\xfa\\x06\\x01\\xbb\\xa7\\xee\\x33\\x42\\x67\\x37\\x85\\x86\\xd4\\x56\\x8f\\xc7\\xb5\\xf4\\x0d\\xc7\\xd5\\x58\\x74\\x96\\xfe\\x8e\\xd5\\x95\\x7b\\x73\\x6b\\x71\\x49\\x36\\xb5\\x67\\x35\\x52\\x83\\x01\\x30\\x99\\x6e\\x9f\\x62\\x1d\\xf4\\x32\\x98\\x07\\x69\\x39\\x66\\x57\\xae\\x7a\\xb2\\x6a\\xdf\\xf3\\x69\\x69\\x3a\\xde\\xf7\\x51\\x1c\\x3b\\x2b\\x7b\\xb6\\x0c\\xf2\\xda\\x63\\x55\\x2c\\xee\\x01\\xfa\\x8d\\xcb\\xed\\xb6\\x2f\\x23\\x69\\xad\\xd9\\xbc\\x97\\x0d\\xdc\\xec\\x7a\\xbc\\x9f\\xc3\\x97\\x62\\xa5\\x9a\\x5d\\x84\\x48\\x8d\\x20\\xab\\xcc\\xbf\\xba\\xb0\\xfd\\x60\\xa1\\x7e\\x94\\x0b\\x2b\\xf7\\x7b\\x52\\x94\\x40\\xa7\\x28\\xad\\x31\\x57\\x58\\x2a\\xd3\\x98\\x69\\xd4\\xc7\\x0b\\xc4\\x9b\\x13\\xe6\\x86\\x07\\x7e\\x9f\\x3c\\x69\\x0d\\x8f\\x46\\x24\\x7e\\x0a\\x16\\x81\\x29\\x45\\x3e\\x55\\xe6\\x81\\xdc\\xa4\\x61\\x45\\x6f\\x93\\x8c\\x45\\x94\\xe7\\xa9\\x59\\xac\\x80\\xc3\\x2b\\x8f\\xd2\\x40\\x31\\xe0\\xbf\\x2f\\xdf\\xf4\\x0d\\xad\\x2a\\x93\\x05\\x90\\x66\\xec\\xda\\xd3\\x39\\xd6\\x3d\\x92\\x11\\xed\\x09\\x10\\xd9\\x1c\\x6e\\xb2\\xa3\\xa3\\x1f\\x9c\\x70\\xcc\\xb5\\x95\\x35\\x4a\\x8b\\x9f\\x2d\\x2e\\x9e\\x4b\\x48\\xff\\xdb\\x08\\x4c\\x00\\xef\\xbb\\x52\\x3c\\x83\\xf4\\x36\\x28\\xee\\x76\\x77\\x5b\\x4b\\xaf\\x82\\xa0\\xc8\\x34\\x4e\\x92\\xd7\\x0d\\x2e\\x3c\\x7c\\x2d\\x3a\\x14\\x43\\x86\\xd4\\x1a\\xb7\\x60\\xe1\\x06\\x42\\x65\\x81\\xa7\\x88\\xfd\\x32\\x54\\xdf\\xe8\\x01\\xb0\\xe0\\x40\\xb5\\x18\\x9a\\xda\\x04\\x30\\x57\\x3a\\x65\\x06\\x01\\xea\\x20\\x5d\\x8b\\x32\\xf3\\xca\\x9c\\xf5\\x5b\\x07\\xfc\\x9e\\x3f\\xaf\\x33\\xf9\\xf2\\x04\\xdf\\x07\\x1e\\xfe\\x8b\\x3e\\x93\\x4d\\x2f\\x06\\x6f\\x5b\\xb3\\x67\\xff\\x68\\x55\\xbc\\x7c\\x1b\\xd4\\x1e\\x6c\\x81\\x64\\x3e\\xe0\\x29\\x03\\x65\\xb0\\x7d\\x14\\x06\\x9d\\x3a\\x15\\xb2\\x8c\\xcb\\xe7\\x62\\x6c\\xac\\x4f\\x98\\x22\\x8b\\xe1\\x3b\\x11\\x59\\x37\\x50\\xbc\\x02\\x5e\\x41\\x26\\x20\\xcd\\x7f\\xf0\\xfb\\x3b\\x28\\xc0\\x66\\x14\\xcb\\x9b\\x34\\x32\\x7b\\x26\\x43\\x9e\\xac\\xf5\\x14\\xf6\\x50\\xe3\\xb0\\xa7\\x0f\\xef\\x14\\xb8\\x10\\x10\\x90\\x80\\xa2\\x7b\\x18\\x8e\\x50\\xd5\\xfa\\xb6\\xc5\\x7a\\x01\\xa3\\x81\\xf3\\x3d\\xf2\\x7d\\xd0\\x47\\x10\\x6d\\x4f\\x51\\x10\\x20\\x53\\x26\\x0e\\x4b\\x56\\x18\\x6b\\x2b\\xcb\\x2a\\xfb\\x96\\x69\\x7e\\x28\\x66\\xd1\\xa7\\x04\\x6c\\x94\\x7c\\x39\\x4e\\xe4\\x0a\\x24\\xa9\\x54\\x2a\\x9d\\x91\\x62\\x3a\\x83\\x14\\x17\\xb1\\x42\\xb9\\x94\\xe7\\xe1\\xc8\\x97\\x57\\x0f\\x63\\x56\\x02\\xbb\\xc6\\xea\\xca\\xd8\\x24\\xf5\\x33\\x9f\\xe6\\x0c\\xf6\\xa3\\x19\\xb7\\x27\\x69\\x66\\xf2\\x15\\xcf\\xce\\x3d\\xa4\\x67\\xe7\\x59\\x6e\\x25\\x99\\x7c\\x4a\\x7f\\xe3\\x15\\xfd\\x40\\x09\\xa6\\x0d\\xd1\\x85\\xb3\\x30\\x9b\\xe5\\xc3\\xa2\\x0a\\xad\\xb8\\x80\\x14\\x4c\\x50\\xdf\\x27\\x1d\\xe8\\xca\\xcf\\x7b\\xab\\x3d\\xc6\\x6f\\xe9\\xa5\\xd7\\xad\\x75\\x20\\xdd\\x15\\xe7\\x0e\\x14\\xa9\\xef\\xad\\x69\\x2a\\x7a\\x1d\\xcc\\x4f\\x2e\\x34\\x80\\x42\\xcd\\xef\\xad\\x9b\\xf2\\xe1\\xcf\\x5f\\xf1\\xf3\\xd2\\x07\\xa4\\x03\\x5b\\x41\\x84\\xc9\\x68\\x83\\x90\\xbc\\x28\\xc1\\x2c\\x8e\\x53\\x5d\\xdc\\xbb\\x96\\x63\\x56\\x0e\\x8a\\x16\\xa2\\x08\\xbf\\x14\\xf9\\xee\\xa4\\x8e\\x3d\\xc4\\x4a\\xc2\\xbe\\x61\\xef\\xa0\\x48\\x61\\x66\\x36\\xc5\\xd9\\xb0\\x22\\x8e\\xad\\xbd\\x3e\\x9d\\xff\\x8a\\x91\\x17\\x15\\x70\\xc0\\xe7\\xf9\\xa3\\xf6\\x94\\xcd\\xdf\\x8f\\x2c\\x2a\\x29\\x1d\\x22\\xd3\\xc8\\xfa\\xc5\\xd5\\xd5\\x68\\x16\\xfc\\x25\\x91\\xd1\\xc2\\xe9\\xfb\\x76\\x93\\x27\\x1a\\x13\\x4f\\xe3\\x70\\x03\\xef\\x79\\x5c\\xb3\\x48\\xe5\\xdf\\xec\\x9f\\x99\\xa3\\xd8\\xe3\\x53\\x7c\\xf5\\xa5\\x36\\x79\\x7a\\x4d\\x7a\\xcf\\x9e\\x49\\x4f\\x09\\x4a\\xd9\\xac\\x3c\\xf5\\xb2\\xc2\\x69\\xb9\\x80\\xb3\\x4e\\xc5\\x6a\\x89\\xdf\\xb0\\x62\\xae\\x52\\x9b\\xf9\\xb6\\xbf\\x57\\x10\\xbd\\x9b\\x1f\\x60\\x51\\xfa\\xab\\x08\\x96\\xa8\\x8a\\xbd\\x04\\x1b\\x64\\xc0\\x46\\x33\\xed\\x8c\\x47\\x2a\\x49\\x15\\x07\\x04\\x8b\\x8b\\xca\\x41\\x22\\x15\\xaa\\x66\\x4f\\x7e\\x16\\x50\\x45\\xcd\\xe1\\x91\\x24\\x18\\xfa\\x27\\x3d\\x4d\\xeb\\x89\\x28\\x22\\xc1\\xa4\\x12\\x96\\x33\\x14\\xcc\\x63\\xe6\\xa6\\xc1\\x18\\xce\\x26\\xcd\\x42\\xbc\\x7a\\x73\\xa5\\xb2\\xeb\\xd8\\x19\\x39\\x47\\xe6\\x12\\x8a\\x54\\x98\\x95\\x91\\x75\\x7d\\xd2\\x2e\\xd9\\xd0\\x0b\\x22\\xfc\\xd5\\x49\\x81\\x41\\x9b\\x8d\\x4b\\x05\\x1d\\xc8\\xaa\\xef\\xf8\\x19\\xd3\\x56\\x3a\\xdf\\x7b\\xe6\\x28\\xc1\\xb0\\x10\\xc0\\xdf\\x70\\x1a\\x35\\x15\\x35\\x05\\x9e\\x0c\\xae\\x21\\xe0\\x28\\x76\\xfe\\xa9\\x23\\xf3\\xa8\\xb4\\x18\\x30\\x5d\\xce\\xa8\\x8d\\xe2\\xf4\\x1e\\x1b\\x5e\\xb4\\x38\\x59\\xe8\\x7c\\x60\\xb2\\x88\\x5a\\xd4\\xa8\\x1e\\x9f\\xc6\\xff\\x75\\x79\\xa7\\xa6\\x17\\x36\\xdc\\x71\\xbb\\x4d\\x7f\\x7e\\x97\\x56\\xcd\\xdb\\x2d\\x1f\\x45\\xbb\\x93\\x53\\xe9\\x37\\x65\\x38\\x1e\\xe3\\xd5\\x63\\xd6\\x32\\x9e\\xda\\x2d\\x34\\x72\\x09\\x36\\x5a\\x23\\x0c\\x36\\x17\\x02\\x7f\\xf5\\xa8\\x30\\xe4\\x68\\x78\\x3c\\x2d\\x26\\x7e\\x70\\x10\\xd1\\xf7\\x13\\x09\\x6c\\xa2\\x3f\\xdb\\x0f\\xf2\\x35\\x77\\x44\\x48\\x82\\x14\\x69\\xff\\x56\\xe4\\x46\\x51\\x95\\x5a\\x5a\\x88\\xd5\\x18\\x68\\xee\\x8b\\x34\\xfa\\x48\\xef\\x22\\xc2\\x80\\x78\\xab\\xe8\\x30\\xf8\\x90\\x2d\\x2a\\x6c\\x37\\xb8\\xea\\x87\\x45\\x2a\\x48\\x33\\x95\\x5f\\x48\\x4a\\x71\\x2c\\x0f\\x45\\xaf\\x92\\x23\\x55\\x99\\x14\\x92\\x22\\xf6\\x4c\\x60\\xb4\\x6e\\xee\\x4f\\x62\\xb7\\x71\\x44\\xc8\\xf9\\x77\\xda\\x4e\\x6c\\x31\\xf3\\x4b\\xea\\xbd\\x20\\x6d\\x3b\\x19\\x74\\x66\\x1c\\x4b\\xe3\\x7c\\x21\\x15\\x34\\x1a\\x03\\xbe\\x96\\xc6\\x6e\\x3c\\x9e\\x7c\\xbd\\xa6\\x6e\\x7b\\xb5\\xbe\\xd9\\x33\\x19\\x6a\\xf1\\x1a\\xf3\\xe5\\xcc\\xc1\\xd7\\x4f\\x67\\xf8\\xca\\x5d\\xa3\\x46\\x83\\xe6\\x6e\\x99\\x5b\\xc7\\x43\\x03\\xdc\\x77\\x6e\\x89\\x2f\\x7f\\xfa\\x84\\x27\\x15\\xe6\\xd3\\x5a\\x60\\x12\\x0c\\x2d\\xa3\\x10\\xf2\\xc7\\x40\\x02\\x0e\\xce\\x64\\x6a\\x63\\x91\\x76\\x21\\xc7\\x17\\xe3\\x27\\x0d\\x94\\x06\\x1a\\xfe\\x4f\\xe3\\x81\\x9f\\x45\\xc2\\x84\\x04\\x14\\x30\\x09\\x51\\x15\\x59\\x86\\x6e\\x49\\x2e\\x2e\\xa9\\x67\\xe0\\xa9\\x22\\x26\\x33\\xb9\\x62\\x5a\\x63\\xa5\\xcd\\x47\\x02\\xb0\\x5f\\x08\\xb4\\x5e\\x71\\x9d\\xf7\\x6b\\xcc\\x75\\x1e\\x17\\x6b\\xf8\\x97\\x65\\xb5\\x34\\x7b\\x6d\\xb2\\x79\\xe8\\x6b\\x5f\\xf2\\x1e\\xb2\\x31\\x5d\\xf7\\x7b\\xbf\\xd6\\x4a\\xa2\\x6d\\x10\\xdd\\xbb\\x34\\xb6\\xee\\x16\\x1c\\x17\\x6e\\x5e\\xb3\\x35\\xba\\x20\\xed\\xed\\x64\\xab\\xa6\\x15\\xe8\\x2e\\xb0\\x68\\xa5\\x69\\x08\\xce\\xa9\\xc0\\x88\\xea\\x73\\xcf\\x85\\xbc\\x15\\x21\\x11\\x5e\\x8f\\x9d\\x52\\x21\\x18\\x6c\\x29\\xa6\\xd4\\xe4\\xa7\\xd5\\xb4\\x48\\xbd\\x19\\x26\\x7f\\x4d\\x5a\\x3f\\x39\\x75\\xd0\\x9c\\x33\\xba\\xed\\xc5\\xa6\\x8b\\x19\\x88\\xa3\\x6b\\xcd\\xb2\\x4d\\xcc\\xdc\\xca\\xf0\\xf7\\x92\\xd9\\xe4\\x36\\x3e\\x5a\\x82\\xa6\\x37\\x73\\x6b\\xda\\x29\\x2b\\xb8\\xe6\\x68\\xdb\\xf4\\xb9\\xb7\\x76\\x49\\xc8\\xbb\\xb3\\x11\\xd4\\x1b\\x74\\x23\\xd9\\x0b\\x76\\xf6\\x7e\\x0e\\x39\\xee\\x1d\\x0e\\x0c\\x3c\\x0e\\xc3\\xf7\\xdc\\xde\\xfa\\x4d\\x4a\\x2f\\x63\\x32\\x90\\xa4\\x5d\\x3a\\x6c\\x6a\\x6a\\xfc\\x23\\x89\\x16\\x0c\\x21\\x76\\x18\\xbf\\xc3\\x35\\xc0\\xaf\\xe9\\xee\\x5c\\xd2\\xba\\x1a\\xc9\\x47\\xa3\\x9b\\xb6\\xd9\\x51\\xc1\\xe6\\x8b\\xd6\\x1c\\xb4\\x36\\x33\\xa7\\xc8\\x17\\xc3\\x32\\x81\\x26\\x4f\\xa7\\xbd\\xb0\\xc3\\x81\\x5b\\xd8\\xbc\\x03\\xfa\\xd1\\x40\\x61\\xec\\xa5\\x85\\xea\\xb5\\x51\\x94\\xe5\\x2a\\x60\\x0b\\x49\\x5b\\xf6\\x8c\\x90\\xe2\\x6f\\x9d\\x9d\\xb4\\x32\\xe8\\xd9\\x7b\\xf2\\x54\\xda\\x0c\\x89\\x65\\xb9\\x23\\x99\\x6e\\xff\\xe6\\x6f\\x36\\x3f\\x7e\\x24\\xae\\x1f\\x85\\xcf\\xba\\xc5\\x0b\\xf8\\xa5\\x5a\\xf0\\x28\\x4f\\xd5\\x12\\xd2\\x59\\xf7\\x92\\xba\\x28\\xd8\\x0e\\xce\\xf5\\x17\\x5c\\xa8\\x95\\xc8\\x0c\\xdc\\xb8\\xe0\\x5c\\xdb\\xc7\\x55\\x76\\x3d\\xfd\\xda\\x3b\\xdc\\x72\\xd8\\xd2\\xec\\xba\\xf8\\x17\\x9d\\xdd\\xd5\\x0d\\x3a\\xb9\\x40\\xdb\\xbd\\x61\\x9b\\xca\\xc0\\xda\\x43\\x59\\x51\\x3d\\x88\\x9b\\xb9\\xd6\\xce\\x06\\x8e\\x84\\x00\\xd4\\xd7\\x18\\xf3\\x0c\\x05\\x2e\\xa6\\xb3\\x62\\x52\\x47\\x0a\\x15\\x3b\\xdb\\x82\\x46\\x85\\xba\\x43\\x51\\xf9\\xa8\\x85\\x45\\xe8\\xff\\x81\\x48\\xad\\xd4\\x0f\\x6c\\xb5\\x74\\xc3\\x88\\x56\\xc7\\x1d\\x28\\x50\\xb7\\xee\\x8c\\x23\\xda\\xce\\xea\\xf3\\x2a\\xd5\\x9f\\x69\\xbe\\x41\\x3e\\x4d\\xb7\\x7c\\xb2\\xf7\\x2a\\xaf\\xb3\\xb5\\xa8\\xd8\\x5e\\xd6\\x69\\xf6\\x81\\xdd\\xa6\\x82\\x9f\\x07\\x55\\x48\\x7d\\xd8\\x62\\xfd\\xb7\\x20\\xc1\\x27\\x28\\xd1\\x65\\x27\\x32\\xae\\xa2\\xa2\\x13\\xd4\\x87\\x60\\x85\\xee\\xe2\\x88\\x67\\xb7\\x1b\\xac\\xf3\\xc3\\xda\\x04\\x4a\\x18\\xb9\\x91\\x25\\x92\\x68\\x84\\x14\\xb5\\x30\\x91\\x85\\x1f\\x65\\xe2\\x3c\\x5f\\x1a\\xd6\\xbf\\x45\\xec\\x91\\x1e\\x9a\\x28\\x0a\\xc4\\xa2\\xf0\\x25\\xb5\\x8f\\xf9\\x37\\x1d\\x30\\xec\\x1d\\x65\\x4a\\x2b\\xf3\\xc3\\x4b\\x42\\x5a\\xf0\\x65\\xc4\\x3e\\xb6\\x97\\x49\\xa6\\x71\\xda\\x7c\\x9e\\x7a\\x09\\x4c\\xad\\x24\\xc7\\xbd\\xc6\\x7b\\xee\\x08\\xce\\x1b\\x7e\\x94\\xd3\\x72\\x35\\x6e\\x80\\xf6\\xfa\\xd4\\xb6\\x6b\\x86\\xc0\\xbd\\xc0\\xf8\\x79\\x11\\xd4\\x6a\\x90\\x74\\x4b\\x4a\\x03\\x83\\xe0\\xb6\\x6b\\x43\\x86\\xfe\\x29\\x64\\x1a\\xdf\\xc3\\x40\\xcb\\x93\\x79\\x66\\x51\\xbd\\xbb\\x9b\\x53\\xa0\\xa0\\xad\\xb6\\x7d\\x1a\\x97\\x70\\xae\\xdd\\x78\\xb6\\xef\\xe4\\x0f\\x21\\x5f\\x4f\\x85\\x62\\xba\\x76\\x9a\\x5b\\xf3\\x40\\xf2\\x58\\x36\\xcd\\xfd\\x66\\xe5\\x57\\xea\\xd1\\x41\\x9d\\x6e\\x49\\xd4\\x17\\xf1\\x26\\xf9\\x49\\x32\\x49\\x20\\x88\\xb5\\xaf\\x51\\x20\\x98\\x6b\\x44\\xa8\\x2a\\x78\\x35\\x0d\\x0e\\xd6\\xbd\\x6e\\x69\\xce\\x91\\x75\\x98\\xa1\\x2a\\xcb\\x21\\xb6\\xc9\\xd0\\x88\\xa1\\xc8\\x01\\xab\\x6e\\xf5\\x9b\\xe8\\xaf\\x55\\x70\\x7c\\xb2\\x93\\xb6\\xca\\xe8\\x94\\xa6\\x79\\x11\\xaf\\x67\\xd7\\x6a\\xae\\x85\\x4c\\x4e\\xec\\x6b\\xeb\\xb1\\x8a\\x2d\\xeb\\xdc\\x9c\\xe2\\xe7\\x15\\x76\\xb3\\x67\\xfe\\x7a\\xa7\\xce\\x68\\xbc\\x67\\xb6\\x63\\x46\\x3a\\x67\\xf9\\x4f\\x11\\xb8\\x43\\x7f\\x07\\xd0\\x7a\\xef\\x3d\\x3f\\x28\\x70\\xfe\\xe2\\x77\\xe5\\xbf\\xe1\\x31\\xe6\\x33\\x09\\x3d\\x13\\x51\\x7f\\x0b\\x55\\x92\\xb4\\x2a\\xf4\\xa8\\x34\\x0d\\x6a\\x75\\xa7\\x18\\xfa\\xfe\\xc8\\x45\\xd5\\x5b\\x5a\\xc3\\x9d\\x17\\x43\\xbb\\x6a\\xa0\\xa1\\x6b\\xa8\\x63\\x60\\xaa\\xd5\\x7f\\x54\\xd8\\xcc\\xe6\\x53\\xc6\\xef\\xd5\\xdd\\xd3\\xd0\\xde\\xbf\\xd0\\x32\\x3d\\xcf\\x92\\x0b\\x5e\\xee\\xb9\\xe0\\xf6\\xd1\\xe5\\xfb\\x4e\\x0b\\xff\\x1c\\x44\\x33\\x55\\x95\\xa2\\xa5\\x36\\x70\\x44\\xb7\\xc6\\xd1\\x8c\\xf4\\x45\\x7e\\x63\\x89\\xd6\\x7e\\x85\\x81\\x80\\xb3\\x08\\x4c\\xe0\\xed\\x6d\\xc7\\xd1\\xfd\\xa9\\xbc\\x89\\x4b\\xf0\\xaf\\xa9\\xcd\\x5c\\x5c\\x94\\x6e\\x5c\\x1a\\x51\\xc1\\x40\\xdd\\x30\\x49\\x7f\\xa4\\x38\\x33\\xd5\\xcf\\xff\\x38\\xea\\xc0\\x8f\\x3b\\xab\\x9e\\x50\\x31\\xc8\\xb8\\xd9\\xaf\\x24\\x5d\\x9f\\xb5\\x49\\x36\\xd4\\x04\\xb8\\xe0\\x41\\x26\\xc2\\x9b\\xc8\\x53\\x9a\\x20\\x06\\x0b\\x09\\x5e\\x84\\xd8\\x24\\x26\\xd6\\x6f\\x61\\x19\\x48\\xd5\\x27\\x66\\x9d\\x38\\xc2\\xd4\\xc6\\x99\\xf5\\xf7\\x5b\\x32\\xbd\\xca\\x1b\\x1f\\x67\\x78\\x30\\x0c\\xfe\\x1b\\xfc\\x27\\xd9\\x3f\\x18\\xd3\\x5d\\xf2\\x39\\x92\\xa9\\xc5\\x0c\\x94\\x43\\x32\\xef\\x14\\x34\\xf0\\x86\\x05\\xb0\\x41\\x01\\xf9\\xd9\\xcf\\x5b\\xc4\\x08\\x43\\x96\\xb7\\x16\\xbc\\xe7\\x22\\x01\\x02\\x88\\x18\\xda\\x35\\x39\\xb8\\xd8\\x29\\x9d\\x7b\\xb1\\xde\\x79\\x67\\xaa\\x1a\\x2f\\xfd\\x25\\xaa\\x4d\\x24\\x40\\xd9\\x6b\\xba\\xef\\x9e\\x22\\x4b\\x56\\x0a\\x45\\x07\\x6c\\x59\\xdb\\xae\\xc9\\x56\\x91\\x98\\x16\\x1c\\xe1\\x51\\x60\\x4a\\xc1\\x43\\x15\\x33\\x4d\\xa8\\xd3\\xb3\\xfa\\x4a\\xac\\x47\\xe7\\x83\\x68\\xac\\x22\\x20\\x2a\\xaa\\x2b\\x48\\x48\\xfb\\x8f\\x86\\xc2\\x7e\\x8b\\x1f\\x3c\\x42\\x66\\x21\\x5b\\x70\\x72\\xd0\\x28\\xc4\\x92\\x09\\x27\\xcd\\x54\\xb3\\x9e\\x27\\x4f\\x15\\xe8\\x66\\xcf\\x25\\xd0\\x46\\x4f\\x33\\xc9\\x94\\xd4\\x44\\x89\\xcf\\xbe\\x05\\x63\\x30\\x1b\\xfd\\xee\\xac\\x5e\\x4b\\x98\\xd3\\xba\\xb2\\x7c\\xc8\\x0a\\x38\\x92\\x95\\x9b\\xc9\\x71\\xe9\\xcf\\x4b\\x4b\\xe2\\x7e\\xd6\\xa0\\xfb\\x96\\x76\\xe8\\x60\\x15\\x2c\\x9b\\xd3\\xe5\\xef\\xf4\\x3d\\x23\\xed\\xfc\\x4d\\x35\\x99\\xc6\\xf4\\x88\\xa7\\xb7\\xdb\\x42\\x39\\xac\\x90\\x6b\\xf2\\x0a\\x20\\x35\\x8b\\x11\\xee\\x14\\x81\\xf0\\x80\\xe2\\x26\\xb0\\x23\\x14\\xa2\\xb5\\xb0\\xd2\\x60\\xca\\x76\\x28\\x3e\\x97\\xa9\\x54\\x2b\\x1a\\x1e\\xc2\\xb6\\x5a\\x21\\x25\\x30\\x5f\\x6b\\xd4\\xb4\\xce\\x73\\x62\\x9a\\xf2\\x72\\x3a\\xa2\\xb2\\xd3\\xa2\\x53\\x0d\\xae\\xac\\x51\\xd9\\xe7\\x68\\x38\\x56\\xfa\\xbc\\xf6\\x23\\x94\\x19\\x17\\x4d\\x72\\x50\\xea\\x99\\xbe\\xb6\\x2d\\x73\\x9a\\xbb\\xef\\xf8\\x1c\\x3d\\x68\\x3b\\x7b\\x48\\xa9\\xd4\\x1a\\x55\\xf8\\x9c\\xa1\\x9a\\xcd\\x83\\x85\\x71\\x2b\\x68\\x4d\\x5a\\xa7\\x5a\\x40\\xf0\\x9f\\x1d\\xd0\\xa7\\xcc\\x84\\x1a\\xb5\\x40\\x58\\x7e\\x74\\xbe\\xa3\\x8f\\x2d\\x31\\x72\\x6b\\x79\\x75\\x1f\\x05\\x78\\x6b\\x3b\\xb6\\xdb\\x3e\\x7b\\x88\\xb7\\xf9\\x7a\\x78\\x58\\x59\\xed\\x36\\xd9\\xb2\\xf4\\x96\\x37\\x55\\x17\\x17\\x51\\x09\\xf4\\x96\\x17\\x55\\x37\\x2f\\x62\\x2a\\xd8\\x66\\x1b\\x74\\x79\\x0d\\x47\\x65\\x1b\\x6c\\x54\\x13\\xfa\\x5d\\x96\\xa2\\xd3\\xda\\x7b\\xdb\\x35\\x5b\\x2b\\x84\\x4f\\x2e\\x35\\x94\\x49\\x1b\\x34\\x94\\xf1\\x0b\\xfe\\xf1\\x53\\x00\\x47\\xe2\\xa2\\x68\\x69\\xd4\\x36\\xdb\\xe2\\xb0\\xd4\\x90\\xa4\\xc8\\x14\\xe3\\x55\\xdb\\x2e\\x40\\x81\\xbf\\x86\\xa3\\x4d\\x59\\x13\\x41\\xa6\\x09\\xfd\\xd9\\x51\\xc7\\x32\\x56\\xf7\\xf0\\xa2\\x7d\\x45\\x85\\x9b\\xb1\\x97\\xdd\\x6e\\x62\\xb7\\xdd\\x77\\x7b\\xd5\\x22\\x71\\x91\\xfc\\x07\\x6a\\x92\\xbb\\xb3\\xf7\\xe4\\x50\\x68\\xdb\\x34\\xa7\\xac\\xa5\\xbd\\x96\\x93\\xa1\\xd6\\xc2\\xcb\\x89\\x96\\x12\\x2d\\xd1\\x57\\x66\\x72\\xcb\\x0b\\x05\\x8a\\x10\\xce\\x5b\\xfa\\xcc\\xde\\xd3\\xcf\\xe7\\xe8\\xaa\\xb5\\x5b\\x39\\xbd\\x99\\xc9\\x81\\x7a\\x47\\x73\\xce\\xe3\\x72\\xd7\\x47\\x06\\xf1\\xca\\x4e\\xc7\\x90\\xb6\\x29\\x12\\xdd\\x0c\\xa6\\xee\\xd8\\xc3\\xf1\\x78\\x06\\xae\\x4e\\x3d\\xd2\\xf5\\x15\\x8e\\xf7\\xae\\xca\\x48\\xa1\\x54\\x8b\\x06\\xc3\\x60\\xe5\\xc0\\x86\\x3b\\x65\\x71\\xc6\\xe3\\x53\\x0e\\x99\\x21\\xe0\\x25\\x2f\\x2f\\xcd\\xc6\\x65\\x20\\x80\\xc5\\x4a\\xb0\\xbe\\xf4\\xfc\\x6a\\x2f\\x78\\x5c\\xec\\x2e\\xad\\x0b\\x15\\xc5\\xdb\\x5a\\x5a\\x9b\\xdf\\x69\\xa8\\xf3\\x33\\x16\\xf7\\x2c\\x6a\\xd3\\x2f\\x5f\\xeb\\xf6\\x5e\\x77\\xe5\\x2e\\xdb\\x13\\x6e\\x63\\xf1\\x8a\\xc6\\x69\\x6f\\x58\\x37\\xbf\\xca\\xaf\\x1b\\x05\\xe9\\xc8\\x5b\\x8c\\x7c\\xc7\\x81\\xec\\x01\\x62\\x86\\x74\\xf0\\x04\\x16\\xcc\\x28\\x4e\\x12\\x6a\\x22\\xad\\x48\\x77\\x61\\xd7\\xcc\\xe4\\xb7\\x0c\\x19\\xd1\\x4f\\x56\\xf8\\xd5\\xb8\\xb3\\xd2\\xc2\\x20\\xe5\\x3a\\x03\\x2b\\x23\\xae\\xc5\\xb9\\x7f\\xd9\\x12\\x86\\x04\\x01\\x37\\x0c\\xaa\\xa0\\x89\\x64\\xca\\xbb\\xb2\\xb0\\x47\\x95\\xc9\\xe2\\xec\\xfe\\x5a\\xc5\\xae\\xb3\\x85\\xbe\\x12\\xeb\\xdd\\x43\\x05\\x5f\\x35\\x9c\\x99\\x94\\x01\\xac\\x65\\x2f\\x70\\x2b\\x75\\x09\\x8a\\xb7\\x75\\xcc\\xb9\\xb1\\x8b\\x36\\x5a\\x5f\\xa7\\xec\\x7a\\xd2\\xf0\\xd9\\x1b\\x32\\xdc\\x06\\x36\\x20\\xcd\\x90\\xd5\\xe4\\xa7\\xb8\\x51\\x06\\x47\\x4d\\xd1\\x06\\x23\\xdf\\x05\\xd9\\x77\\x86\\x96\\x9e\\xfe\\xfa\\x71\\x9f\\xd9\\x13\\xa6\\x06\\xcf\\xab\\x4e\\x42\\x34\\x30\\x4a\\xc5\\x36\\x45\\x7a\\xf8\\xec\\x35\\x1e\\xf0\\x5d\\xfc\\xb8\\x84\\xff\\x08\\x3c\\x4d\\xff\\xf2\\x76\\x30\\x39\\x78\\xd9\\x5f\\x35\\xe6\\x60\\xe9\\xcd\\xac\\x4f\\x5c\\xbd\\x73\\x78\\x47\\xb5\\xf1\\x3b\\x0f\\xff\\x5b\\xdc\\xe8\\x0e\\x28\\xc0\\x46\\xb7\\x59\\x08\\xe7\\x2c\\x18\\xce\\xb0\\x97\\xca\\xc0\\x4c\\xd5\\xd8\\x50\\xd1\\xee\\x2e\\x19\\x4f\\xec\\xb2\\xaf\\x26\\x29\\x20\\x1a\\xb4\\xac\\x37\\xc5\\x8d\\xb5\\x92\\x8a\\x3e\\x16\\x3f\\x5e\\x7e\\xd2\\x50\\xb5\\xd5\\xcb\\x3d\\xbd\\xdc\\x56\\x49\\xea\\x61\\x53\\x3b\\x49\\xb7\\x59\\xc5\\x03\\x8d\\xdf\\x0d\\xf1\\xfc\\x77\\xf3\\x6b\\x5a\\x24\\xf8\\x3e\\x11\\x45\\x19\\xbd\\xcf\\x24\\x11\\x42\\x0c\\xa9\\xce\\x74\\xe2\\x36\\x34\\xb0\\xff\\x86\\x07\\x74\\x88\\xb3\\xb5\\x2a\\x7e\\xe4\\xc7\\x4d\\xd0\\xc1\\x2b\\xb3\\x7c\\x82\\x41\\xa1\\xb3\\x22\\xda\\x03\\x19\\x0b\\xb6\\x7a\\x6b\\x35\\x5f\\xb7\\x64\\xeb\\x1e\\xbe\\xf2\\x6c\\x61\\x4e\\x09\\xf5\\x2d\\xb9\\xbe\\x44\\x31\\x73\\xab\\xf3\\x52\\xe7\\xc3\\xdb\\xa7\\x9d\\xfc\\x29\\x2a\\x1c\\xb2\\xef\\x82\\x85\\x82\\x5c\\x80\\xb6\\x66\\x7a\\xc5\\x62\\xe8\\x0c\\x32\\x41\\x06\\x26\\xab\\x20\\x9b\\xdf\\x27\\x7d\\x0f\\xd9\\x19\\x35\\x1a\\x7a\\x80\\x1f\\xe1\\x4e\\x78\\xf2\\x51\\x08\\xc8\\x72\\xfe\\x3c\\xb1\\x30\\x9c\\x3d\\x71\\x12\\x89\\xf1\\x1c\\x68\\xd3\\x24\\x75\\xc5\\x9e\\x8d\\x36\\x8d\\xd0\\x72\\xe7\\xae\\xdc\\x48\\x4a\\x9f\\xef\\xeb\\x98\\x13\\x46\\x76\\x23\\xd8\\x74\\xb8\\x84\\xc5\\x52\\x60\\xbb\\xd2\\xbc\\xf7\\xc9\\x6d\\x2b\\x7a\\x78\\x47\\x19\\x87\\xa9\\xba\\x69\\x5b\\xdc\\x88\\xde\\xc7\\xda\\xb4\\x5b\\x2c\\x37\\x6e\\xde\\xaa\\x7c\\x6d\\x1e\\x41\\xd5\\xa5\\xfb\\xe8\\x8b\\x1f\\x9a\\x80\\x60\\xdd\\xc8\\xac\\x52\\x1a\\x61\\x79\\x0b\\x51\\x25\\x39\\xfd\\xf5\\xd1\\x44\\x9e\\x7c\\x45\\x0b\\x56\\xce\\xc4\\x6d\\x43\\x6e\\xf5\\x82\\x78\\xe1\\x4b\\x43\\xf3\\x31\\xbd\\xd5\\xf0\\x68\\x86\\x52\\x5b\\xcc\\xcc\\xe7\\x47\\x37\\x4e\\x59\\x12\\xb0\\xfa\\xf9\\x41\\xa2\\x5c\\x2b\\x13\\x16\\x1d\\xc4\\x8a\\x18\\x46\\x26\\x34\\xf6\\x03\\x32\\x50\\x69\\x9d\\x2a\\xb7\\xdb\\x59\\x80\\xa4\\x4e\\x72\\xc2\\x41\\xb5\\x76\\xef\\x86\\x93\\xf7\\xc9\\xfa\\x78\\xd3\\xed\\xe3\\xe5\\xbb\\xec\\x4a\\x10\\xd8\\xa0\\x69\\x14\\x70\\x74\\x35\\xbf\\xea\\x49\\xda\\xa4\\x9f\\x4c\\xb2\\x9d\\x14\\x6b\\xcc\\x22\\xd7\\x6a\\x35\\xd3\\x4a\\x3a\\xa2\\x99\\xec\\x49\\x6f\\xdf\\x70\\x8a\\x44\\xdd\\x38\\x75\\xf7\\x56\\x90\\xbc\\x0e\\x42\\x22\\x7a\\x50\\x04\\x2d\\xf8\\xd5\\x9a\\x52\\x52\\x3c\\x97\\xa6\\xd7\\x3a\\xd0\\x1a\\xdf\\x58\\x7f\\x21\\xa1\\x23\\xd9\\x58\\x5f\\x9f\\xf0\\xef\\x78\\x7a\\x6a\\xa9\\x25\\x97\\xcb\\xc8\\xeb\\xfa\\xb3\\xaa\\xbf\\x61\\x62\\xd3\\xa7\\x2c\\x8f\\xdb\\x65\\xe6\\xfa\\x43\\x5e\\x73\\x6c\\x53\\xf0\\x7b\\x0f\\xf3\\x99\\xc4\\x75\\x05\\x37\\xe0\\x05\\x35\\x47\\x4f\\x3f\\xee\\x0b\\x4b\\xb2\\xc6\\x5a\\x34\\x80\\xe7\\x1b\\xc7\\x9b\\x97\\x84\\xcf\\x70\\x50\\x81\\xc8\\x12\\xa9\\xef\\xca\\xec\\xbe\\x74\\xe3\\x3d\\x2a\\xe0\\xef\\x76\\x1b\\x1c\\x09\\xd6\\x84\\x43\\x58\\xd7\\xeb\\xf5\\x8b\\xc3\\x4b\\xc0\\xfd\\xf7\\x48\\x1d\\xc7\\x20\\xd2\\x03\\x6d\\x3b\\xd5\\x8d\\xd8\\x6e\\xc0\\xae\\xb6\\x3f\\x2e\\x0b\\x49\\xc9\\x5c\\x9e\\x6f\\x6f\\x1a\\x7f\\x58\\x7e\\x22\\xb0\\xe0\\x3b\\xc2\\xb5\\x09\\x20\\xc9\\xb7\\x69\\x61\\x44\\xd1\\x07\\xf7\\x04\\xbb\\x97\\x39\\xff\\x8b\\x65\\xfe\\xd9\\xf4\\x9b\\x21\\x42\\xec\\xc6\\x14\\xb2\\x2c\\x0d\\x52\\xb0\\x6d\\xe2\\x47\\x93\\xa1\\xe4\\xee\\x56\\x46\\x77\\x2b\\x7a\\x6c\\xe7\\x42\\xa8\\xaa\\x95\\x6e\\xb0\\x76\\xe5\\xb3\\x26\\x7b\\x92\\xb4\\x00\\xe4\\xc4\\xee\\x41\\x76\\x66\\xfd\\x7d\\x45\\xda\\x17\\x86\\x42\\xc6\\x83\\x57\\xc4\\xef\\xe1\\x23\\xb8\\xb5\\x19\\x69\\x2b\\xfe\\xa7\\xfd\\xd6\\xd6\\x06\\x2f\\x8d\\x26\\x54\\x0c\\x83\\x69\\xf9\\x7f\\x24\\xee\\x3f\\xc9\\x7d\\xf1\\x2f\\xff\\xec\\x0a\\xdf\\xff\\x90\\xc8\\xe8\\x32\\xf0\\x7f\\x45\\x78\\x58\\x51\\xe1\\x3c\\x28\\x7c\\xfd\\x30\\x3a\\x0e\\x20\\xfb\\xd5\\x27\\x7d\\x71\\xc1\\x03\\x02\\x3b\\x02\\x60\\xec\\xf8\\x44\\x78\\x56\\x70\\x89\\x02\\xb2\\x80\\x23\\xbe\\x70\\xc1\\x4c\\x90\\x78\\x95\\x18\\x01\\x63\\x7c\\x7c\\x5a\\x82\\xb9\\x31\\x6d\\x67\\xf4\\x6a\\x94\\xee\\x9a\\x7d\\xff\\x7d\\x11\\x87\\x12\\x6b\\xa0\\x68\\xa5\\xb2\\x92\\x4d\\x60\\x38\\xf7\\x9e\\xc1\\x9c\\xba\\xa5\\x92\\xed\\x5a\\xaf\\x5f\\xf4\\x66\\xca\\x4e\\x6b\\xfb\\xcf\\x83\\x3a\\xa9\\x54\\x06\\xad\\x16\\x6f\\xbe\\x09\\xe5\\xbd\\x3d\\xc4\\xb2\\xd4\\xc7\\x38\\x06\\xd7\\xad\\x26\\x8b\\xe9\\xdb\\x16\\x9f\\xeb\\x71\\x2d\\xb6\\x75\\x95\\xb4\\x56\\xc8\\xe3\\x67\\xfa\\xe7\\xed\\xa6\\xbb\\xb5\\xea\\xea\\xfc\\x9a\\xee\\xd1\\xae\\x6e\\x46\\xc2\\x1f\\x40\\x62\\x14\\xa1\\x38\\x63\\x94\\xbb\\xe4\\x7c\\x9b\\x0a\\xc9\\x3a\\x31\\x31\\x88\\xfb\\x1f\\xcf\\x07\\x2a\\x41\\x3a\\x74\\x5b\\xb2\\x7a\\x94\\xb6\\x4b\\xd4\\x05\\x0e\\xe7\\x27\\xb8\\x20\\x3a\\x52\\xcf\\x6d\\xac\\x05\\x8a\\x4d\\x71\\xa1\\x75\\xc9\\xac\\xa5\\x20\\x99\\xe4\\x64\\xd0\\x5d\\xc7\\x8d\\x66\\xae\\xda\\xd0\\xa1\\x64\\x51\\xd4\\x13\\xae\\xb2\\xc2\\x89\\x5f\\xd9\\x86\\x0b\\x11\\x71\\xc4\\xc3\\x21\\xe3\\x34\\xd0\\x78\\x72\\x99\\x34\\xc8\\x8e\\x5a\\xf5\\x0b\\x2a\\x89\\x18\\x3d\\x96\\xaf\\x77\\x62\\x0b\\x7f\\x71\\xfe\\x94\\x1a\\x3b\\xe9\\xf4\\x4a\\xf5\\x7a\\x8d\\xc6\\x4d\\xc3\\xc8\\x18\\x6d\\xfc\\xf8\\xee\\xfa\\xa9\\x92\\x26\\x78\\xe0\\xc8\\xd7\\xf5\\xd3\\x72\\x22\\xaf\\xb9\\x31\\x6f\\x5e\\x8c\\xfb\\xf9\\x42\\xcf\\xc7\\x77\\x9a\\x60\\x61\\x7f\\xbb\\x91\\xcd\\x68\\xab\\xaf\\xe6\\x82\\x80\\x02\\xf4\\x5f\\x64\\x9d\\xa2\\x42\\x75\\x53\\x14\\xd6\\xfe\\x54\\x96\\xb6\\x4d\\x9f\\x2b\\xd8\\x12\\x19\\x04\\x1b\\x0e\\x5d\\xa9\\x4c\\x8e\\xc3\\xf1\\x6e\\xad\\x15\\xc2\\x55\\x75\\xe1\\x7e\\xfd\\xe8\\x36\\x9f\\xbe\\xb5\\x43\\x65\\x8d\\xd4\\xe4\\xe9\\xa4\\xbc\\xbb\\xce\\xfe\\xb5\\xb4\\x03\\x01\\xed\\x79\\x6f\\xc1\\xcc\\xd6\\x81\\xa4\\x7b\\xd9\\x70\\xc1\\xac\\x4d\\x2b\\xdc\\xf1\\x84\\x4a\\xae\\xb7\\x8d\\xb9\\xb1\\xb8\\x91\\xb5\\xed\\x74\\xa9\\x80\\x86\\x58\\xe4\\x56\\xde\\xe1\\x4d\\x89\\x72\\x2e\\x88\\xff\\xc0\\xb5\\x21\\x56\\x2b\\xb2\\x20\\x3b\\xcc\\x21\\x6c\\x65\\xa0\\x72\\x4a\\x55\\xea\\xfe\\x10\\x2a\\x5a\\x3e\\xd6\\x3a\\x16\\x97\\xcb\\xbe\\x4d\\x68\\x2a\\x97\\xef\\x0b\\x8a\\x5e\\xb7\\xb7\\xe4\\x2c\\x27\\x83\\xf7\\xb2\\xf0\\x3f\\xd2\\xb5\\x15\\xa6\\x14\\xc3\\x2c\\xa8\\x56\\x68\\x35\\x3d\\xaa\\xe3\\x28\\x66\\xf3\\xf1\\xec\\x95\\x55\\x49\\xfb\\xa6\\x6f\\x63\\x2c\\x9d\\xe1\\xcc\\x40\\xd0\\xbf\\x6f\\x95\\x28\\x07\\xc8\\xa3\\xbb\\x19\\x44\\xa1\\x16\\x9f\\x47\\xe6\\x74\\x10\\x48\\x9e\\x23\\x09\\x60\\x28\\xc8\\x6b\\xc2\\x76\\x5a\\x7a\\x00\\x66\\x75\\x38\\xd1\\x74\\x4a\\xe5\\x22\\x99\\x68\\xa8\\x0c\\xd7\\x6e\\x60\\x5c\\x85\\x3b\\x1d\\x73\\xa5\\x39\\xcb\\xc3\\x31\\x8b\\xce\\xf2\\xf1\\x6f\\xfa\\x49\\x5e\\x1b\\x9d\\x4b\\xdc\\x26\\x84\\x19\\x67\\x2e\\x73\\x3d\\xc1\\x17\\xf1\\xfb\\x56\\x90\\x15\\xf4\\x6a\\x2d\\x33\\x1b\\xf3\\x54\\x31\\xdf\\x37\\xaf\\xa9\\xea\\xcf\\xf8\\x59\\x96\\x29\\xef\\x8f\\xbe\\xea\\x8c\\x78\\x81\\x08\\x2a\\xc2\\xad\\x79\\xcf\\x4c\\xb5\\xe8\\x66\\x1b\\x38\\xc0\\x9d\\xf3\\xc9\\x61\\x0d\\xaa\\x16\\x42\\xb2\\xb8\\x5a\\x75\\x20\\x6e\\x9c\\x08\\x17\\x27\\x18\\xab\\x8f\\x25\\x44\\x88\\x06\\x9e\\xc0\\x1c\\x39\\x47\\x77\\x09\\xd8\\x85\\xb5\\x95\\x16\\xa9\\x56\\xaa\\x4d\\x9a\\x34\\x19\\x84\\xda\\x97\\x8a\\xc5\\xc4\\xd5\\x3a\\x04\\x13\\x33\\x59\\xee\\xca\\x39\\xb6\\xea\\xea\\xd0\\x2e\\x13\\x95\\xcc\\xaa\\x16\\xa1\\x9c\\x09\\x58\\x46\\xab\\x53\\x91\\x24\\xf7\\xd8\\xa2\\xa1\\xd5\\x71\\xfb\\x46\\x0a\\x83\\x3e\\xf1\\x4b\\x3c\\xab\\x91\\x6b\\x52\\xf7\\x51\\x36\\x65\\xc2\\x7c\\x14\\xb8\\x36\\x30\\x16\\xf4\\x52\\x4e\\xd2\\xd2\\x4d\\x75\\xde\\x2f\\x71\\x90\\xb8\\xd2\\xca\\xb9\\xce\\xf5\\xf1\\xf3\\xb0\\x2f\\x12\\x29\\xa1\\xbf\\x18\\xff\\x7e\\x22\\xaf\\x14\\x9c\\xe9\\x7e\\x41\\x74\\x87\\xb4\\x01\\xf1\\xde\\xed\\xef\\x6c\\xe0\\x20\\x46\\xf0\\x49\\xc1\\x2e\\x5f\\x14\\xfd\\x55\\x1f\\x21\\x95\\x2a\\x15\\x11\\xff\\x87\\x42\\x3f\\xce\\x30\\x55\\x3f\\xaa\\x1e\\xc2\\x59\\x57\\xcc\\x22\\x7a\\xf7\\x1a\\xb3\\x8d\\x73\\x7e\\xa4\\x12\\x48\\xd0\\xac\\xcf\\x2c\\x18\\x57\\x88\\x34\\x22\\xa3\\xdc\\xc8\\x2a\\x8d\\x92\\x33\\x33\\x93\\xee\\xec\\x40\\x6e\\xaa\\xcc\\x24\\x11\\xd9\\x22\\x68\\xa2\\xf4\\xdc\\xbe\\x2b\\x8f\\x4c\\x21\\x06\\xa1\\x53\\xa6\\xca\\x03\\x0b\\xb6\\x33\\x47\\xc0\\x20\\xb0\\xb6\\xef\\xed\\xb5\\x7c\\xea\\x05\\xf7\\x4e\\x9e\\x6e\\xb6\\xdd\\x49\\x0a\\xe6\\x7f\\x7c\\xf4\\x81\\x4d\\xbb\\x34\\x30\\x6b\\xc4\\x52\\x19\\x7d\\x82\\x94\\x6e\\xd4\\x1e\\x95\\xf1\\x3d\\xa8\\xd1\\x7a\\xa9\\xab\\x03\\xfb\\xb6\\x1b\\x9b\\x98\\x99\\xc1\\xea\\x75\\x57\\xea\\xff\\x0a\\xc3\\x0e\\x8f\\x52\\xd7\\xef\\xda\\xb4\\x9e\\xad\\xaf\\xed\\xb6\\xb7\\x9b\\xef\\x3f\\x0e\\xe3\\x07\\x3f\\x58\\x21\\x76\\x5b\\x7a\\xcb\\x64\\x58\\x99\\x7a\\x54\\x53\\x3b\\xf7\\xd6\\xad\\xcd\\x73\\x73\\xc5\\x3b\\x00\\x31\\x34\\xe8\\x63\\x91\\x12\\x3b\\xb4\\x80\\x0a\\x65\\x31\\x8e\\x96\\x68\\x2a\\x4e\\x48\\x14\\x4a\\x33\\x59\\xed\\x57\\xc4\\x12\\xe5\\xc4\\x74\\x76\\x23\\x53\\x96\\x63\\xf8\\x9a\\xeb\\x0f\\xe1\\x41\\xa1\\x2d\\x40\\x3b\\x20\\xff\\x17\\xa0\\x18\\x7e\\x3c\\xc8\\x82\\xd5\\xcf\\x18\\x44\\xf3\\xa5\\xce\\x15\\xfe\\xe7\\x91\\x2e\\x00\\x16\\x6f\\xe4\\x0f\\xf5\\x07\\x57\\x8c\\x21\\xcb\\xdc\\x71\\xe0\\xfb\\x1b\\x28\\xe4\\xab\\xc1\\xe0\\x45\\x08\\x64\\xad\\x84\\x43\\xd2\\xa3\\x57\\xda\\x37\\xe6\\x00\\x81\\x75\\x54\\x2a\\xdb\\x8b\\xeb\\x21\\x97\\xdc\\xca\\xef\\x7f\\x22\\x3f\\x3d\\xaf\\x24\\xc9\\xf1\\xa2\\x61\\x99\\x9c\\xe3\\x00\\x87\\x86\\x30\\x21\\x39\\x06\\x0b\\xc1\\xb7\\x7f\\xa4\\x5f\\x06\\x31\\xc7\\x03\\x82\\x19\\x9c\\x73\\x6d\\xa6\\xbe\\x3a\\x5e\\xa0\\x5d\\xf0\\xb3\\xd3\\xda\\x4c\\x50\\xc7\\xaf\\x3f\\x3b\\x71\\x6b\\xe0\\x60\\xb5\\xb0\\xf8\\x1e\\xb1\\x28\\x34\\x08\\xf6\\x89\\xb2\\x98\\x88\\xd2\\xe5\\x62\\x6c\\xd8\\xb1\\x35\\xb6\\x8e\\x86\\x91\\x3a\\xdc\\xbe\\x45\\xad\\xe2\\x2c\\x8b\\xc4\\xc0\\x3b\\xb0\\xe0\\x2d\\x14\\xb5\\x2a\\x38\\xa4\\x3d\\xe0\\xe7\\xb9\\xcf\\xef\\x22\\x44\\x68\\x68\\x2a\\x44\\x61\\x0c\\xe4\\xd4\\xd8\\xb3\\xa0\\xfe\\xc5\\xf7\\x2a\\x25\\x86\\x70\\x75\\x44\\x6c\\x2d\\x2f\\xe9\\x2a\\xeb\\x77\\x3c\\xbe\\x92\\x7f\\x4d\\xd3\\x86\\xdb\\xd4\\x58\\xe8\\xd6\\xb8\\xe8\\xf5\\x6a\\x95\\xbc\\xa5\\xac\\xbb\\xb1\\x62\\x0a\\x76\\xae\\xaf\\xac\\xe9\\x2a\\xab\\x77\\x3c\\x9e\\xc8\\x68\\x7c\\xf8\\xca\\x0c\\x63\\xfb\\x9d\\x5e\\x24\\xdd\\xad\\x91\\x53\\x67\\x55\\xba\\x85\\x1c\\x8c\\x6a\\xa0\\x43\\xfa\\x9b\\xd8\\xb0\\x79\\x6e\\x1d\\xd6\\xd4\\x28\\x5d\\xd3\\xcf\\x2d\\xd7\\x86\\xd7\\x3d\\x5d\\x36\\x9a\\x5f\\xe3\\x9d\\xad\\x6f\\x5d\\x47\\x34\\xa4\\x3c\\xd4\\x39\\x88\\x9b\\x6d\\xd9\\xab\\xfd\\x34\\x8f\\xa4\\xa6\\xdf\\xc9\\xcc\\xcc\\xd0\\x65\\x6e\\xb6\\x33\\xbf\\xb6\\xd7\\x79\\x9a\\x59\\xb3\\xeb\\xb2\\xe8\\x70\\xc6\\x24\\xc0\\x76\\x6b\\x4e\\xc7\\x4a\\xc6\\x23\\x1f\\x79\\x18\\xb0\\xf5\\xf9\\xe9\\xbc\\x54\\x6d\\xb7\\x12\\x3a\\x2c\\x41\\xc5\\x7b\\x77\\xd1\\x9b\\x33\\x35\\x74\\xd3\\x0e\\xe5\\xd6\\xb5\\xa2\\x7c\\x31\\x83\\x61\\x5a\\x9d\\xf3\\x19\\xf8\\x0a\\xfa\\x4c\\x8b\\x24\\x2e\\xbf\\xd7\\xab\\x89\\x13\\xb0\\x26\\x92\\x16\\x80\\xdd\\x8a\\x8b\\x0d\\x57\\x21\\xea\\x2f\\xdf\\x82\\x84\\x5d\\xd6\\x1d\\x76\\xb7\\xf0\\xf1\\xa1\\x7c\\x07\\x6b\\xf0\\x0c\\x5b\\xf7\\xa1\\xeb\\xe3\\xae\\xa5\\xe5\\xee\\x6e\\x55\\x01\\xfa\\x6d\\x7e\\xb0\\x12\\x08\\xb2\\xb5\\x9a\\xd7\\x9d\\x69\\xf7\\xdb\\xa6\\x0d\\x83\\xed\\xc5\\x5a\\xcc\\x53\\xa7\\x1c\\xca\\x01\\x35\\x9d\\x14\\x36\\x30\\x14\\x5c\\x44\\x13\\x69\\xdc\\x3b\\x50\\x56\\x5d\\xaa\\x3a\\x93\\x98\\x1f\\xeb\\x58\\x8b\\x20\\xf8\\x44\\x59\\x4d\\x4c\\x09\\x44\\xab\\xe8\\x45\\xdc\\x5b\\xc6\\x3a\\x86\\x9c\\x5d\\x16\\x43\\x41\\xdc\\x31\\xca\\x44\\xe8\\x17\\xe4\\x38\\x1b\\xfa\\xfd\\x31\\x8b\\x7e\\xab\\x74\\x49\\xfa\\xaf\\x0d\\xa6\\x4f\\xde\\x34\\x74\\x38\\x94\\xb1\\x61\\xc3\\xfe\\x3b\\xfc\\xc9\\x49\\x69\\x78\\x82\\x90\\x9f\\x41\\xdf\\xd4\\xf4\\xf0\\x1f\\x8d\\xbe\\x4b\\x7a\\x3d\\xfc\\x12\\xea\\xa9\\xe9\\x75\\x3c\\x0b\\x8b\\x3e\\x2b\\x95\\x77\\x79\\xcb\\xe7\\xf2\\xf4\\xda\\xae\\x77\\xeb\\xcb\\xcb\\x36\\x0a\\x0c\\xda\\xae\\x67\\x9d\\xea\\x2f\\x1f\\x13\\x66\\xcb\\x9d\\x5e\\xe4\\x5b\\xbd\\xaf\\x8f\\xad\\xa9\\xb4\\x95\\x51\\xa8\\x4d\\x93\\xf4\\xfc\\xcb\\xce\\x12\\xc6\\xc2\\xd3\\x17\\x05\\xe1\\x9c\\xea\\x6a\\x76\\xbe\\x9e\\x96\\xff\\x56\\xc3\\x26\\x26\\xe0\\x47\\xc3\\xd4\\xbb\\xdd\\x54\\x7c\\xde\\xe5\\x1c\\x6a\\x34\\x5f\\x97\\xf7\\x9e\\x9e\\x06\\x1d\\xe6\\xbf\\xe2\\xc5\\x14\\x58\\xe2\\x0f\\xbc\\x1c\\x7e\\x30\\xdc\\xb8\\x5e\\x3a\\xf1\\x73\\x63\\x8e\\x56\\x20\\x8b\\x9e\\x0e\\x71\\x52\\xbe\\x65\\x97\\xfa\\x0e\\x28\\x07\\xa0\\xa2\\x3b\\x68\\xfa\\x3a\\x2b\\x63\\x80\\x20\\x28\\x38\\x85\\x52\\x98\\x88\\x82\\x9d\\xf3\\x89\\x0d\\x24\\xbd\\x93\\x83\\x40\\x91\\xe1\\xa5\\xc0\\xe9\\x15\\x70\\xb5\\xe0\\x26\\x03\\xa0\\x7d\\x0d\\x86\\xb6\\xd2\\xc2\\x8e\\x5a\\xcc\\x17\\x51\\x8a\\xa5\\x99\\x20\\x63\\xcd\\xd9\\x7a\\x56\\x0c\\xba\\x7a\\xc9\\x5a\\x0e\\x2c\\xbf\\x12\\xd6\\x98\\x4f\\x87\\x5c\\x20\\x73\\x3d\\x51\\x4a\\xbc\\x2a\\x11\\x15\\x5c\\xf7\\x94\\x14\\xf9\\xb7\\xa7\\xc8\\x13\\x31\\x14\\x7e\\xb5\\x18\\x9a\\x37\\x5c\\xfd\\xeb\\xe9\\xea\\x7e\\x25\\x5f\\x8a\\x2f\\x6e\\xa3\\xab\\x78\\x98\\xad\\x6b\\x0a\\x93\\xb8\\xe3\\x45\\xe1\\x43\\x30\\x19\\x93\\x77\\xd1\\xd7\\xae\\xc6\\xcc\\x6d\\xe6\\x4e\\x3d\\x3e\\xc4\\xb2\\x13\\xb6\\x99\\xd9\\x57\\x9b\\x29\\x44\\xb1\\x50\\x2f\\x6e\\xaa\\x89\\x18\\x51\\xbe\\xab\\xe3\\xe6\\x59\\xe4\\x94\\xb0\\x71\\xbd\\xeb\\x60\\x1e\\xb7\\xa2\\xb1\\x81\\x00\\xb0\\x30\\x11\\xf4\\x41\\x8a\\xa6\\xb0\\xcd\\x21\\x59\\x06\\xcd\\x30\\x61\\x19\\x7a\\x21\\x4b\\x1c\\xb1\\xdb\\xcf\\xf7\\x7d\\x88\\xc2\\x88\\x06\\x19\\x7b\\xc3\\x13\\xf7\\xe2\\x07\\x77\\x61\\x69\\x64\\xf2\\xc3\\x69\\x33\\x00\\x13\\x30\\xbc\\x06\\xb4\\x5f\\xca\\x3e\\xc4\\x81\\x48\\x31\\xba\\x57\\x3c\\x14\\xa5\\x24\\xfb\\x10\\xbd\\x1f\\xf7\\xb5\\x65\\x62\\xe9\\x4c\\xa9\\x25\\xb2\\xbb\\xb1\\x7d\\x1c\\xa5\\x68\\xb5\\x81\\x17\\x22\\x43\\xbd\\x92\\x07\\x4c\\x9c\\x7b\\x1d\\x75\\x80\\x39\\xdf\\x80\\x40\\xfd\\xc1\\xa9\\x2d\\x55\\x6a\\x64\\x59\\xa3\\x2c\\xb4\\x69\\x09\\x14\\xe2\\x04\\x56\\xad\\x50\\x44\\x0c\\x29\\xd6\\xa1\\x22\\x95\\x99\\xd9\\x42\\x3f\\x2d\\x6e\\xb5\\xff\\x1b\\x7a\\x21\\xf5\\x24\\x66\\x76\\xda\\x31\\xed\\x84\\x5b\\xd9\\x9e\\x91\\xca\\x69\\x8a\\x95\\x95\\x55\\x18\\x93\\x71\\x6c\\xaf\\x2d\\xb6\\x27\\x83\\x0e\\x05\\x1e\\xc2\\x1f\\x64\\x8c\\x4e\\xd5\\x02\\xce\\xec\\xe1\\x7f\\x24\\x7e\\x16\\xe7\\x2d\\x65\\x37\\x53\\x94\\xb4\\x42\\x2f\\x1b\\x21\\x2b\\x92\\x0a\\x88\\xfa\\xb8\\xfb\\x06\\x9a\\x82\\x5f\\xe1\\xc3\\x1b\\x34\\x1f\\x90\\xe9\\xf4\\x06\\x1d\\xa2\\x66\\x4b\\x34\\x77\\x95\\x16\\x05\\xc5\\xa9\\x03\\x9b\\x06\\xd8\\x39\\xef\\xb4\\xe1\\x04\\xeb\\x8a\\x6a\\x2d\\x7b\\x05\\xc4\\x1f\\x98\\x75\\xb1\\xe1\\xf6\\x5d\\x81\\xcb\\x88\\x70\\xc7\\x1c\\xe5\\xaf\\x88\\x8c\\x53\\xd0\\x1a\\x56\\xa9\\x04\\x55\\xbf\\x15\\x64\\xb8\\xc1\\xef\\xf3\\xca\\x03\\x14\\x9c\\xc2\\x15\\xc2\\xd6\\x99\\xaf\\xc1\\xab\\xff\\xc5\\xe7\\xec\\xbb\\x77\\xe6\\x85\\x65\\x1e\\x4c\\x71\\x3d\\xc3\\x9c\\x3a\\x44\\x11\\x9a\\x64\\x54\\x34\\xd4\\x0c\\xf1\\x41\\x9c\\x4b\\x12\\x42\\x39\\x5f\\x8e\\xbe\\x03\\x08\\x3a\\x55\\x10\\x9b\\xb5\\xbd\\xd2\\xd1\\x25\\x8d\\xb3\\x47\\x04\\xe5\\x8d\\x57\\x71\\x4b\\x1b\\xa8\\xfb\\x97\\xda\\xbf\\x7e\\xda\\xc4\\x2b\\xd4\\x9f\\x9b\\xac\\x59\\xf0\\x87\\x2c\\x71\\xe8\\x3c\\xfe\\x1e\\x65\\x55\\x34\\x6b\\x50\\x85\\xf7\\x64\\x73\\xc7\\x17\\x9f\\x5f\\x63\\xcf\\x92\\xed\\xf9\\x59\\x30\\x4b\\x86\\x3b\\x67\\x04\\xac\\xb9\\x3e\\xf1\\xa5\\x35\\x28\\x81\\x9d\\xb3\\xb1\\xc7\\x21\\x13\\x51\\x87\\x47\\xec\\x93\\x9f\\xa2\\xdc\\x1c\\x19\\x4b\\x72\\x43\\xab\\xe5\\xe1\\x2c\\x48\\x6a\\x47\\x7d\\x01\\x5d\\x2f\\x45\\x0e\\xf7\\x9c\\x83\\x89\\x6d\\x46\\x4f\\xbf\\x46\\x33\\xc5\\xcd\\x17\\x69\\x3f\\x70\\xda\\x3f\\xd1\\xdb\\x9f\\xba\\x0f\\xc9\\x2e\\xeb\\x6c\\x5d\\x69\\x5d\\x52\\xde\\xb9\\x25\\x21\\x38\\x05\\xe8\\x43\\xbb\\xa0\\x17\\x79\\x8c\\x48\\xce\\x62\\xc9\\x17\\x9d\\x4b\\xb1\\x54\\xd5\\x81\\xc8\\x0c\\xa8\\xef\\x44\\x14\\xb3\\x66\\xd1\\xc3\\x80\\x8e\\xd1\\x78\\xbd\\xed\\x5f\\xd3\\x10\\x4e\\x61\\x9a\\x2e\\x48\\x14\\xe7\\xc1\\xf6\\xcf\\x25\\xbd\\xfe\\xa9\\x48\\xb8\\xd5\\x83\\x44\\x9b\\x1b\\x46\\xd2\\x4a\\xad\\x94\\x12\\xd9\\x99\\x28\\x8f\\x39\\x2d\\x46\\xdd\\xce\\xdf\\x97\\x59\\x39\\x3c\\xa3\\xfe\\xed\\x70\\x5b\\x9d\\x08\\x13\\x7c\\x76\\x91\\xea\\x6d\\x3f\\x2d\\xa2\\x29\\x7b\\xfc\\xa7\\x51\\x6c\\xcc\\xbc\\x52\\xcd\\xa8\\xed\\xda\\x50\\xf1\\x0d\\xaf\\x8e\\xf2\\x20\\xd7\\x0c\\x6b\\x18\\x53\\x7e\\x01\\xe4\\x42\\xd4\\x42\\xec\\xc1\\x60\\xb2\\xf9\\x18\\xda\\x94\\x20\\xd5\\xa1\\x97\\xf9\\x96\\x42\\xf4\\x04\\x20\\x46\\x97\\x92\\x4e\\x2a\\xd5\\x1a\\xd1\\x43\\x5d\\x1f\\x2c\\x8d\\xdd\\x03\\x70\\x15\\x0d\\xd8\\x61\\x58\\xc9\\x69\\x71\\x58\\xdb\\x4e\\xa5\\xbf\\xe0\\xa2\\x68\\xc2\\x2c\\x05\\x29\\x22\\x02\\x3a\\xd3\\x12\\xaa\\x07\\x35\\xd0\\x12\\x33\\xf2\\xf6\\xa9\\xbc\\x18\\x9a\\xac\\xfc\\x85\\xd7\\x3c\\x5d\\xbc\\x4b\\xea\\x3a\\x67\\xe6\\x7b\\xbb\\xe9\\x3c\\x94\\xba\\xce\\x3b\\xee\\x7e\\x18\\x18\\xb5\\xfc\\x09\\xc9\\xbd\\x96\\x8f\\x9f\\x1f\\x11\\x2b\\x39\\xd5\\x63\\xed\\x1e\\xc7\\x1a\\xff\\x37\\x7e\\x1e\\x13\\x7d\\x59\\x4b\\x81\\xcc\\x81\\xe3\\x10\\x3f\\x7b\\x38\\xd3\\xe2\\xcd\\x1a\\xfa\\xd8\\x88\\x6a\\x22\\x69\\xae\\x08\\x17\\x29\\x35\\x94\\x20\\x1b\\x6c\\xc1\\xd6\\x8b\\x44\\x32\\x94\\xb6\\xeb\\xec\\x42\\xd9\\x47\\xca\\x53\\x2e\\x41\\xce\\x14\\xf6\\xbd\\x6f\\xb1\\x69\\xf3\\x81\\x7d\\xf7\\x89\\xba\\xaa\\x9e\\x3d\\x7b\\x0c\\x82\\x9e\\x71\\x0a\\x0b\\x1b\\x04\\xd0\\x90\\x9c\\xde\\x4a\\xd4\\x63\\x0e\\x4b\\x71\\x81\\x11\\xf3\\xbf\\x44\\xf7\\xef\\x07\\x9a\\xc9\\x68\\xfa\\x3e\\x8b\\xde\\xd2\\xbe\\x19\\x31\\xdd\\x94\\x4b\\xbf\\xf0\\x40\\x69\\x68\\x80\\xa8\\xc5\\x10\\x6c\\x24\\x50\\xe9\\xea\\xb1\\xe1\\xc9\\x79\\x36\\x47\\xd2\\xe3\\x6c\\xa7\\x5e\\x54\\x36\\x3e\\xd2\\xc9\\xf2\\xdc\\x0b\\x2e\\x3c\\xa4\\xc2\\xdb\\x9c\\xcd\\xd6\\x7b\\x05\\x89\\xf0\\x1f\\x0c\\x9f\\x25\\xf1\\x89\\x3b\\x7d\\xb5\\xcc\\xe0\\x39\\x30\\x18\\x8c\\x7d\\xaa\\x71\\x2d\\x1a\\x3e\\x20\\xde\\x23\\xf7\\x1b\\x27\\x2d\\x31\\x8c\\x2c\\x63\\x44\\x50\\x10\\x82\\x6c\\x67\\x95\\x9a\\x38\\x89\\xb8\\xdd\\x45\\x02\\x94\\xb9\\x39\\x91\\x99\\x0d\\x77\\x6b\\x8f\\x02\\x3b\\x6f\\x16\\x1a\\x3f\\xf9\\x10\\xd0\\xcf\\x09\\xf3\\x58\\xdf\\xf7\\x1e\\x53\\x05\\xd9\\x12\\x05\\xf8\\xa2\\x2b\\xb1\\xa8\\x17\\xe1\\xd0\\xd0\\xba\\x44\\x5a\\x43\\xe2\\x76\\x73\\x41\\x6c\\x8b\\x85\\xbb\\x16\\x45\\x21\\xf9\\xaa\\xe6\\x4e\\xfe\\xb9\\x72\\x8b\\xba\\x11\\x05\\x3c\\xc2\\x3c\\x54\\x89\\x86\\x13\\x73\\x2c\\xef\\x4a\\xca\\x4e\\x91\\x04\\x34\\x85\\xde\\x72\\xf7\\xbf\\x67\\x72\\x05\\x06\\x26\\xad\\xaa\\x10\\x29\\x6d\\xda\\x68\\x9e\\x91\\x93\\xbe\\x28\\x41\\x89\\xe9\\x61\\x00\\xba\\x3f\\x2b\\x92\\x28\\x1d\\xc1\\x0e\\x68\\xc5\\xab\\x32\\xc1\\xa9\\x6d\\x9f\\x7e\\x7f\\xee\\x45\\xda\\xdb\\x04\\x97\\x98\\xb9\\x25\\xb3\\x71\\x6f\\x94\\x57\\xdb\\x4a\\x0b\\x33\\xc8\\xdb\\x51\\x37\\x9b\\xb5\\x1d\\x5a\\x79\\x84\\xd1\\xa8\\x1c\\x5c\\x78\\xdb\\x73\\x06\\x3a\\xd2\\x76\\x26\\xee\\xb5\\x43\\x06\\x81\\x0d\\xbd\\x14\\x52\\x1c\\x98\\x9f\\x24\\x95\\x6b\\x35\\x5a\\x48\\x49\\xfd\\xa5\\x7b\\xbe\\x60\\xdc\\x25\\x01\\xef\\x44\\x46\\xe7\\xaa\\xd5\\xa1\\xfe\\xf7\\xcb\\xe8\\x1f\\xf4\\x31\\xd8\\x33\\xcc\\x6d\\x01\\xd2\\x10\\xb6\\x90\\x69\\xdb\\x79\\x3e\\x52\\x99\\x6c\\xee\\x3f\\xe2\\x57\\x6a\\x5d\\x68\\x26\\xba\\x2a\\x1f\\x15\\x95\\xfb\\xd2\\xab\\xea\\xea\\x5a\\x39\\x39\\xb9\\x15\\x57\\x5e\\x02\\x95\\x75\\xe9\\x05\\x3b\\x81\\x2a\\x94\\xef\\x96\\x35\\x5f\\x0e\\xf2\\xae\\x6e\\x6f\\x3b\\x0d\\x77\\xf7\\x95\\x75\\xeb\\x8f\\x42\\x56\\xde\\x2e\\x17\\xbb\\x96\\x92\\xa9\\xcc\\x8c\\x7f\\x74\\x4d\\x74\\x0a\\xb4\\x93\\xf2\\xd2\\x03\\x16\\x7a\\x8d\\x7f\\x02\\x20\\x9e\\xea\\x6f\\xa7\\x98\\x4d\\xc3\\x26\\x19\\x67\\x88\\xcf\\x51\\x18\\x20\\xff\\x40\\x0c\\x6c\\x5f\\x83\\x07\\xf6\\xc4\\xf9\\xc0\\x98\\x0e\\x24\\xf3\\xc5\\xcf\\x78\\x3a\\x80\\x50\\x74\\x77\\x4d\\x1a\\xa2\\xf9\\x82\\xa7\\xfd\\x08\\xdc\\x99\\x8c\\xc4\\x08\\x9c\\x81\\xd2\\xee\\x73\\xca\\x44\\x92\\x81\\x40\\xb9\\x75\\x93\\xe8\\xa0\\x44\\x62\\xf0\\x53\\x16\\xaf\\xfb\\x42\\xf2\\x3b\\xed\\x01\\x37\\xf0\\x20\\xbd\\x40\\xad\\x2b\\x1a\\xae\\xb8\\x0b\\xec\\x85\\xd3\\x4f\\x8f\\xaa\\xf3\\x89\\xf3\\x49\\xd3\\x5d\\x91\\xac\\xf5\\x01\\x9f\\x81\\x0c\\xd4\\xf7\\x78\\x2b\\xc4\\xf3\\xf3\\x1e\\x77\\x83\\xeb\\xbd\\x52\\xa9\\x74\\x25\\xba\\x81\\xf8\\x93\\x24\\x67\\xe2\\xd7\\x07\\x77\\xd7\\x8f\\xd7\\x2f\\x63\\x95\\x22\\x14\\x16\\x82\\xc7\\x6a\\xa4\\x83\\xa4\\xd7\\x39\\xc0\\x73\\x8e\\x9e\\x8b\\x5f\\xb1\\x38\\x91\\x88\\x5b\\x18\\x14\\xb9\\x9f\\xb3\\x4b\\x3f\\xe5\\x66\\x51\\xac\\x00\\x0f\\x15\\x6d\\x4a\\x35\\x1c\\x6c\\x98\\xed\\x14\\xf5\\x96\\x85\\x44\\x3e\\xa2\\xcb\\x91\\x3e\\xff\\xac\\x58\\x39\\xee\\x46\\x96\\xde\\xae\\x1c\\xde\\x19\\x9b\\x7a\\xf5\\xb7\\xa9\\xdc\\x75\\x0d\\x9f\\x7f\\xd0\\x83\\x61\\x66\\xb2\\x3a\\xd3\\x4a\\x41\\x3e\\x52\\x74\\x3e\\x71\\x5c\\xab\\xa2\\x22\\x2e\\xa5\\xbc\\x1c\\x4d\\xc2\\xda\\x5a\\xdd\\x99\\x8c\\x47\\x71\\xcd\\xe0\\xb2\\xad\\x58\\x7d\\xa9\\xcd\\xfc\\x01\\x7e\\xa8\\x34\\xdd\\x6c\\x7a\\x53\\x30\\x41\\xcc\\x78\\x90\\x66\\x99\\x01\\xab\\x9e\\xdc\\x8c\\xe7\\x6e\\x8a\\x89\\x92\\x98\\x54\\xad\\x40\\x72\\x5a\\x32\\x42\\x81\\x92\\xd7\\x92\\xa7\\xa2\\x13\\x19\\x78\\x12\\xe8\\xf6\\x2f\\x12\\x82\\xa3\\xba\\x45\\x1f\\x27\\x1e\\x55\\x2e\\x8f\\x14\\x1d\\x91\\x82\\x10\\xf9\\x0d\\x87\\x64\\x67\\xc5\\xf2\\x3b\\x04\\xe6\\xac\\xd6\\xb0\\x58\\xd8\\xd5\\xd5\\x55\\xd6\\x35\\xa6\\xdd\\x24\\xcc\\xf8\\xb5\\x8a\\xd4\\xf0\\x27\\x7f\\x4e\\xc4\\x55\\xa0\\x73\\x58\\x0f\\xe3\\x0d\\x74\\x80\\xd1\\xf6\\x33\\x15\\x18\\xfc\\x1d\\xe1\\x4f\\x47\\x64\\x21\\x8d\\xdd\\xe4\\xe4\\xfa\\xd4\\x80\\x0c\\x5e\\xff\\xa8\\x7c\\xbf\\x28\\x8f\\x3e\\x25\\x36\\xbc\\x76\\xb1\\x04\\x4a\\x89\\xfe\\xfc\\x55\\x67\\x77\\x5c\\xa8\\x41\\x66\\x1f\\x62\\xb8\\xc8\\xb5\\x90\\x39\\xd0\\x02\\x9c\\x9f\\xd4\\xa1\\x12\\x46\\xc4\\x01\\x6f\\xde\\x9a\\x00\\x6c\\xed\\x89\\xc2\\xe0\\xc0\\xf9\\xab\\x86\\x27\\xdf\\x71\\x3d\\x5a\\x1a\\xc1\\xbe\\x41\\xf0\\x97\\xc8\\x47\\xf4\\x47\\x74\\xf8\\xef\\xfc\\x00\\xa9\\x08\\xb3\\x3b\\xdd\\xee\\xe8\\xad\\x09\\x3f\\x70\\x65\\x21\\x9e\\xbc\\x6c\\x7f\\x03\\x27\\x3e\\xd3\\x44\\xd2\\xc9\\xdf\\x0a\\x87\\xa2\\x65\\xfa\\x58\\x87\\x86\\x2d\\x44\\x05\\xd8\\x61\\x3f\\x06\\x87\\x6e\\x7a\\xa5\\x86\\xd2\\xa7\\x4b\\xeb\\xf5\\xe2\\x9e\\x94\\x15\\x0f\\x0c\\x91\\x69\\x5f\\x1a\\x6f\\xbe\\x0a\\x8f\\xeb\\x0b\\xe1\\xc1\\x75\\x72\\x52\\x80\\x73\\x43\\xa6\\xac\\x20\\x3d\\x51\\xa2\\x9b\\x5c\\xc8\\x3b\\x88\\x78\\x02\\x6a\\x06\\x0c\\xc3\\x1b\\xfe\\x70\\x18\\x6d\\x02\\x2e\\x4d\\x55\\x28\\xc6\\x6e\\x5c\\x0c\\x90\\xfc\\xc5\\x47\\x0c\\x15\\x2e\\x3e\\xe7\\x81\\x7a\\xa6\\x5e\\xe5\\x0d\\x25\\x26\\x70\\xd4\\x6b\\xc9\\x00\\x80\\xc6\\x47\\x60\\x03\\x6d\\x68\\xf8\\xc4\\xf4\\x0a\\xd6\\xf5\\xdb\\x64\\xf0\\xfe\\xea\\x55\\xde\\x55\\x80\\x3e\\xf9\\xf7\\x81\\x4b\\x58\\xd3\\x0f\\xe5\\x64\\x3b\\x14\\xc2\\x00\\x50\\xe0\\x82\\x87\\xaf\\x74\\x9e\\x08\\xfa\\xf0\\x05\\xcf\\x34\\xd1\\x99\\x6e\\x77\\xec\\x16\\x81\\x04\\x03\\x01\\x5a\\x78\\xca\\x58\\x15\\x01\\xb8\\x23\\xf3\\x32\\xb6\\x85\\x63\\x20\\xa0\\x47\\x1c\\x61\\x9c\\xa4\\x3c\\x26\\x0d\\xf2\\xa1\\x3d\\x44\\xd5\\xc6\\xde\\x7c\\xda\\xea\\x4c\\xe7\\x4c\\x4f\\xb3\\xf7\\xf7\\xda\\xf2\\xb0\\x98\\xf5\\xd7\\xe0\\xdf\\x57\\x90\\x7f\\x8a\\x57\\x75\\x19\\x7d\\x55\\x90\\x4e\\x23\\x3c\\xbd\\x16\\x6c\\xdc\\x9c\\xfd\\x13\\xbb\\x93\\xe9\\x55\\x52\\xd2\\x4d\\xca\\xda\\x54\\xb5\\x09\\x43\\xf1\\x41\\x42\\x4b\\x7e\\xfb\\x1b\\x25\\xc6\\x08\\x0c\\xce\\x54\\x13\\x94\\x4c\\x5d\\x7e\\x8f\\xa8\\x04\\x25\\xf1\\x5d\\xec\\x47\\xb1\\x54\\x86\\x41\\x61\\x08\\x19\\x86\\xc1\\x0c\\x4b\\x02\\x7e\\xe7\\x21\\xaf\\xc1\\xe6\\xd0\\xe8\\x0b\\xa8\\xf3\\x16\\x58\\x1c\\x3c\\x2d\\x78\\x09\\x39\\x47\\x34\\xc7\\x5a\\x04\\x3b\\x01\\x3a\\x74\\x48\\xa6\\xae\\x11\\x9d\\x40\\x7a\\xe3\\xbe\\x34\\xaa\\x12\\x56\\xbb\\x15\\x1d\\xf6\\xb4\\x54\\x90\\xd7\\x96\\x06\\xb9\\xcc\\xf5\\xff\\x03\\x04\\x40\\xfb\\xbf\\x9c\\xd9\\xb0\\x7b\\xb4\\x30\\x26\\x41\\x9b\\x10\\x63\\x2b\\xae\\x2d\\xb6\\xe5\\x0c\\xee\\x6e\\x4f\\x6b\\x6f\\x2c\\x89\\x75\\x44\\x3b\\x0a\\x4a\\x53\\x4d\\xb9\\x46\\xe1\\x73\\x45\\x62\\x6a\\xa2\\x42\\x93\\xee\\xd1\\x58\\xca\\x73\\x92\\x58\\xcf\\x72\\xec\\x0b\\xb3\\x75\\x6e\\xef\\xce\\xa9\\x2f\\xc8\\xce\\xf6\\xe8\\xd3\\xca\\x4b\\x2b\\x66\\xcc\\x29\\xee\\xdc\\xd6\\x65\\x0f\\x91\\xc7\\x45\\x9e\\x0c\\x55\\xc7\\x46\\xa8\\xad\\xde\\xd4\\xf4\\x4a\\x7f\\x69\\xf3\\x9c\\x52\\x8b\\x3f\\xd7\\xe9\\x2e\\x34\\xd9\\x4a\\x33\\xd4\\x86\\xaa\\x45\\x35\\x74\\xde\\xa6\\xe3\\xf3\\xfa\\x43\\x6c\\x23\\x9e\\xb3\\x15\\x60\\x06\\x98\\xe3\\x9b\\xa5\\x83\\x0c\\x57\\x93\\x83\\x64\\x52\\x17\\x83\\x80\\x8c\\xa9\\xc1\\xed\\x46\\x0c\\x8b\\xc6\\x42\\x20\\x0a\\xc7\\xeb\\x13\\x49\\x87\\x42\\x21\\xc3\\x70\\x3d\\x12\\xc8\\x71\\x95\\xb5\\xd8\\x58\\x2a\\x93\\x81\\x1e\\x18\\x21\\xc0\\x45\\xab\\x2a\\x21\\xa8\\xaf\\xad\\x9c\\x51\\x35\\xc3\\xef\\xcb\\xcf\\xcb\\xca\\xb0\\x59\\x8d\\xfa\\x94\\xa4\\xf8\\x38\\x55\\xac\\x3c\\x0a\\x3b\\x2f\\xbd\\xd0\\x1b\\x45\\x61\\x62\\x57\\x3f\\x46\\x12\\xe3\\x8a\\x5a\\x40\\x8f\\x05\\x45\\x18\\xc5\\x8f\\x39\\x27\\xbb\\x8b\\xe8\\x10\\xe2\\xf9\\x72\\xc9\\xc0\\xfe\\x8c\\x18\\x47\\x61\\x6d\\x7a\\xcd\\xd2\\x86\\xb4\\x77\\xdf\\x49\\x70\\x38\\x73\\xf2\\x3f\\xce\\x68\\x5f\\x5b\\x57\\xbb\\xda\\x6a\\x5b\\x5a\\x55\\xbf\\xb6\\x3d\\x83\\x37\\x0c\\x8c\\x19\\x3c\\x19\\xe6\\x18\\x67\\xb4\\xab\\x7a\\xe6\\x5f\\x03\\x98\\x2b\\x26\\xc9\\xe4\\xd4\\x46\\xf0\\xaf\\xc7\\xe5\\x28\\xe3\\x32\\x6b\\x9c\\x9a\\xe2\\x58\\x7f\\x71\\x42\\xa6\\x5e\\x99\\xde\\xbc\\xb4\\xf2\\xc1\\x9f\\x6d\\x29\\xa9\\x2c\\xf6\\x85\\x54\\x2e\\x6d\\x4e\\x4f\\xb7\\x59\\x33\\xa0\\x7b\\xf6\\x81\\xee\\xaf\\xdb\\x46\\xc6\\xc3\\xa2\\x95\\x21\\x0f\\x84\\x27\\xc6\\x45\\xa3\\x1b\\x57\\xa7\\xb8\\xcd\\xaa\\x94\\xdc\\x5a\\x5b\\xe0\\xa3\\xb8\\x58\\x18\\x99\\x92\\x53\\x6e\\x74\\x57\\x92\\xb5\\xe0\\xc6\\xf3\\xae\\x98\\xfb\\x27\\xd0\\x63\\x59\\xdf\\xec\\x8b\\x51\\x51\\x97\\x9c\\x3e\\x55\\x97\\x92\\x4c\\x88\\xa4\\x42\\x60\\x15\\x3d\\x08\\x52\\x8b\\x24\\x31\\xe2\\x0d\\x4d\\x25\\xdf\\x98\\xfe\\x29\\x8d\\xfa\\x0b\\xf1\\xb8\\xec\\xb6\\xb4\\x34\\xa2\\xd3\\x40\\x55\\xcc\\xe4\\xbe\\x1b\\xec\\x2b\\xbc\\xf6\\x39\\xb3\\x07\\x2b\\x09\\xc4\\x58\\xc9\\xe4\\xe4\\x04\\x63\\x62\\x26\\x22\\x3b\\x98\\x85\\x43\\x8b\\x9b\\xf6\\x9d\\x58\\x3c\\xfe\\xc2\\xf6\\x9a\\xaa\\x6b\\x9e\\x5e\\xd8\\xbc\\xcf\\xa3\\xaa\\x73\\xf2\\x17\\x1b\\xfe\\x5e\\x51\\x5b\\x73\\xe7\\x86\\x3f\\x35\\x7c\\x08\\xa3\\x73\\x6a\\xfa\\xf2\\x0a\\xfa\\xb1\\x51\\xa4\\x62\\xd8\\xef\\x1b\\xa9\\x4e\\x63\\xcf\\x2f\\xe7\\x4f\\xbe\\xe6\\xdb\\xfd\\xfe\\xad\\x33\\xea\\xb6\\x3d\\x31\\xbc\\xe4\\xf9\\xad\\xd5\\x9e\\xcc\\xde\\x03\\xee\\x6b\\x17\\x6c\\xb2\\x27\\x9c\\x4c\\x1b\\x5d\\xbd\\x30\\xa0\\x91\\x45\\xc9\\x54\\x96\\x14\\x45\\x4e\\xe7\\x52\\x9f\\x77\\x7e\\x6b\\xb6\\x77\\xe4\\x3a\\x2c\\xb1\\xc1\\x62\\x70\\x0b\\x3b\\x8b\\x7d\\x85\\x9c\\xdf\\x88\\x1c\\xf4\\x59\\x44\\x14\\x1e\\x80\\x14\\x7e\\x83\\x45\\x3b\\x16\\x86\\x1d\\xc1\\x68\\x66\\x96\\x6b\\x34\\x18\\x4c\\x46\\x31\\x4c\\xcf\\xa5\\x13\\xb5\\x0b\\xc1\\xe0\\xc4\\x4c\\x31\\x3e\\xb1\\xb3\\x2e\\x44\\x30\\x5f\\x07\\x36\\xc5\\xa4\\x66\\x6b\\xb5\\xd9\\xa9\\x31\\x15\\x3e\\x5f\\x05\\x22\\xff\\xd0\\x17\\x95\\x7f\\x80\\xe9\\x1a\\x61\\xb7\\xd1\\xb8\\x2b\\x2b\\x03\\x52\\x77\\x75\\xb5\\x1b\\xbf\\x00\\x80\\xd4\\xe9\\xe2\\x0a\\xb6\\x97\\x7d\\x01\\x68\\x40\\x1a\\xc8\\xc1\\xd6\\x46\\x45\\xa8\\x14\\xb1\\xc0\\x9e\\xae\\x4d\\x61\\x39\\x36\\x4e\\x89\\x10\\xc7\\x08\\xe7\\x73\\x1a\\xff\\x0d\\x97\\x00\\x06\\x31\\x4b\\x71\\x0d\\x27\\x9d\\xdb\\x13\\xd0\\xd6\\x1f\\x2f\\x41\\x41\\xad\\x21\\x56\\x5b\\x8c\\x25\\x66\\x0a\\xfa\\x40\\x10\\xd8\\xc1\\x71\\xc3\\xb2\\x9c\\x98\\x18\\x9d\\x93\\xd2\\x5b\\xa9\\xcb\\x21\\xd2\\x9b\\x8e\\x15\\x85\\x96\\xcc\\xef\\xa9\\xba\\x76\\xb4\\x6f\\x88\\xa0\\x4b\\x66\\xb5\\x54\\x5e\\x3b\\x67\\x78\\xc1\\x99\\x54\\x3d\\xcc\\x54\\x7b\\x52\\x28\\xb6\\x24\\x2a\\x31\\x89\\xff\\x93\\xd9\\x45\\xf0\\x26\\x02\\xce\\xc4\\x78\\xfd\\x1f\\x6a\\x3f\\x3d\\x40\\x91\\x26\\x49\\x07\\xdf\\xaa\\x3e\\x7b\\x63\\xc3\\xf6\\x6c\\x34\\x37\\x2c\\x82\\xa0\\x4c\\xca\\xd7\\x66\\x05\\xee\\x89\\x26\\xc0\\x13\\x11\\x6f\\x22\\x89\\xa2\\x98\\x8c\\xe1\\x69\\x30\\x67\\x8a\\x49\\x98\\x0e\\x58\\x9e\\x8e\\x39\\xb9\\xe2\\x97\\xd4\\x40\\xf2\\xe3\\x98\\x13\\xf9\\x55\\x31\\x27\\x1e\\xcc\\x43\\x31\\x73\\x5f\\xce\\x99\\x33\\x39\\x7b\\x7b\\x47\\xee\\x98\\xef\\x39\\x93\\x54\\x38\\xe0\\x6f\\x1e\\x4d\\x49\\x1e\\x6d\\xf5\\xf7\\x17\\x26\\x06\\x21\\x27\\xde\\xc0\\x45\\xe9\\x63\\x81\\xd7\\xf3\\x8a\\x44\\xcc\\x49\\xb9\\x97\\x4f\\xf1\\x56\\x4e\\x62\\x4e\\x54\\x00\\xb0\\xbf\\xc4\\xfb\\x90\\x02\\xa8\\x81\\xdb\\xe7\\x94\\x49\\x10\\x08\\xe3\\x10\\x0c\\x25\\x27\\xef\\x50\\xc0\\xa0\\x50\\x06\\x6b\\x18\\x24\\xbe\\x9b\\x15\\x4e\\x0b\\x97\\xb1\\xba\\x85\\xcb\\x92\\x26\\x68\\x48\\xf0\\x2f\\x76\\x73\\xe0\\x3a\\x07\\x8f\\xe2\\xac\\xf5\\xae\\xbb\\x48\\x40\\x63\\x4b\\x0b\\x09\\x69\\x0c\\x98\\xe1\\x19\\x5e\\xce\\x3e\\x7c\\xe4\\xfc\\x37\\x24\\xba\\x91\\x0d\\x3f\\x02\\x59\\xfe\\x02\\x64\\x03\\x77\\xbe\\x08\\x44\\x4c\\x1a\\xf1\\xa1\\x12\\xdf\\xf4\\x95\\x71\\x82\\x3f\\x8e\\x3a\\x13\\xf1\\x80\\xb8\\x4d\\x1b\\x70\\x8c\\x52\\x03\\xb5\\x87\\xc4\\x83\\x46\\x61\\x88\\x12\\x00\\x0b\\x39\\xc8\\x72\\x63\\x42\\xd8\\x21\\x1d\\x84\\x09\\x84\\x5d\\xf2\\x65\\x5f\\xe2\\x8f\\xa7\\x82\\x38\\xf0\\xe0\\xe0\\x40\\xc8\\xc9\\x78\\x4d\\xa7\\xce\\x29\\x9f\\xd4\\xe3\\x85\\xf1\\x80\\x15\\x6f\\xbc\\x81\\x7c\\x6f\\x58\\xda\\xae\\xe9\\xa8\\x5a\\xd3\\xe5\\x78\\xa3\\xaa\\xc0\\xe2\\xd1\\x45\\x70\\xc7\\xcf\\x1f\\x6c\\xda\\xd8\\x99\\x61\\x69\\xdd\\xd4\\xd1\\xd7\\x1e\\x9f\\x59\\x6a\\xa5\\xf6\\xae\\x5a\\xbe\\x01\\xc7\\xcc\\x9e\\xc0\\x3d\\xae\\x03\\x76\\xe0\\x05\\x8d\\xbe\\xba\\x30\\x88\\x24\\x02\\x4e\\x31\\x1c\\x86\\x86\\x86\\xf4\\x84\\xc1\\x90\\x90\\xb2\\x5a\\x19\\x24\\x50\\x45\\xc1\\x9d\\x2d\\x85\\x1c\\x27\\x18\\x40\\xa6\\xc2\\x16\\x73\\xdd\\x84\\xd6\\xc0\\x64\\xa0\\xa3\\xa1\\x2c\\x73\\x45\\x47\\xc8\\x92\\xae\\x84\\x60\\xd4\\x1b\\xf1\\xa0\\x28\\x69\\x40\\x87\\xe2\\x2a\\x96\\x6a\\x74\\x1c\\x1e\\xf1\\x2e\\xba\\x63\\x8e\\x77\\xb6\\x27\\x52\\xee\\x74\\x67\\x45\\x66\\x77\\x96\\x18\\xff\\x1c\\xb8\\x0b\\xf3\\x42\\x05\\x16\\x7c\\xf1\\x8f\\x3f\\xe7\\x79\\xbd\\xf9\\xf9\\x5e\\x6f\\x1e\\xaa\\x14\\x5f\\x61\\xa0\\xe3\\x89\\xd1\\x23\\x0b\\x72\\xa5\\xa1\\x47\\x09\\xd0\\x31\\x2e\\x7f\\x56\\x2d\\x73\\xe3\\xb1\\x0b\\x63\\xc7\\x8e\\xa1\\xff\\x85\\x27\\x32\\x7d\\xbe\\xcc\\x8c\\xe2\\xe2\\xcc\\xe0\\x5f\\xca\\xf5\\x00\\xd8\\x1b\\xd9\\xbc\\xe9\\x71\\xa0\\xc5\\x3f\\x1e\\x07\\xea\\xba\\xfd\\xcc\\x99\\xb9\\xb0\\x15\\x9a\\xf9\\x99\\xf0\\x45\\xfe\\xb7\\xf0\\xd4\\x0e\\xfe\\x55\\x36\\x8f\\x8f\\x5e\\x05\\x57\\xf1\\x8e\\xc0\\x0d\\x54\\x77\\x71\\xe3\\x7b\\x0f\\x90\\x38\\x6b\\xc2\\x85\\x45\\x88\\xb6\\x48\\xf8\\x8f\\x8c\\x20\\x2b\\x2f\\x0f\\x0a\\xc5\\xe6\\x56\\x6a\\x8b\\xf4\\x28\\xa5\\x54\\x01\\x96\\xba\\xf0\\xd9\\x1a\\x1e\\xfb\\xe6\\x1b\\x12\\x1e\\xba\\x75\\xeb\\x59\\x66\\x76\\xcd\\x33\\x35\\xbc\\xfa\\x15\\x34\\x3b\\xed\\x99\\x34\\x74\\x03\\x80\\xe4\\xec\\xc4\\x0e\\x4a\\x00\\x90\\x63\\xbb\\x7c\\x04\\xa1\\xf1\\x12\\xee\\xcd\\xc0\\x09\\xb8\\x2d\\xc3\\xb0\\x5d\\x04\\x73\\x3b\\xd5\\x29\\x48\\xe1\\x93\\x2c\\xa0\\x5e\\xc3\\xc9\\x8f\\x29\\xd8\\x56\\x89\\x7d\\x84\\xd4\\xce\\x63\\x54\\x72\\xc2\\x54\\x26\\xcc\\x4c\\xd4\\x36\\xaa\\x86\\x6a\\xfe\\x33\\x61\\x4e\\x13\\x75\\x99\\x7f\\x00\\x55\\x33\\xff\\xdc\\xf4\\xcc\\xa6\\xc0\\x75\\x78\\x72\\x83\\x43\\xcf\\x1c\\x82\\x2f\\xbc\\x4e\\xda\\x7b\\x17\\x5f\\xcb\\x3a\\x71\\x7b\\xe3\\x40\\xbe\\x2f\\x57\\x1d\\x83\\x04\\x98\\x2b\\x31\\x44\\x30\\x35\\x72\\x88\\x60\\x35\\xc7\\x22\\x51\\x83\\xac\\xbd\\xf4\\xd0\\x1c\\x07\\xe2\\xe4\\x4a\\xa3\\x91\\x42\\x09\\x27\\x26\\x8a\\x8a\\x5a\\x5c\\x5c\\x90\\xba\\x9e\\xe4\\xac\\x33\\xab\\x67\\x4b\\x4b\\x6a\\x5e\\x6a\\xa4\\xa2\\x50\\x91\\x5f\\xc2\\x37\\x9e\\x3d\\x0b\\x1f\\xc7\\x24\\x04\\xd1\\xdd\\x7b\\xfb\\x1c\\xd2\\xd0\\x17\\x25\\x92\\xbe\\x36\\x1f\\x73\\xea\\x42\\x11\\x0e\\xf1\\xf2\\x31\\x27\\x00\\x04\\xf7\\xe2\\xfa\\x58\\xd9\\x06\\x60\\x04\\x3b\\x04\\x77\\x54\\x0c\\x84\\x0c\\x48\\x85\\x2c\\xa3\\x80\\x88\\xc5\\x6f\\x10\\x5b\\xa3\\xa1\\x1f\\x72\\x97\\x7c\\x28\\xe2\\xd7\\x04\\x2b\\xa4\\x84\\x43\\x41\\x78\\xda\\xd4\\x59\\x4e\\xb8\\xf5\\x88\\xda\\x54\\x2c\\x46\\x6b\\x4e\\x2f\\x12\\xb4\\x9c\\x18\\x81\\x51\\x61\\xc6\\x92\\x94\\x5a\\x4e\\x44\\xbc\\xde\\x65\\x6d\\x9c\\x8a\\x99\\xdc\\x18\\xe1\\xba\\x7d\\x4e\\xf3\\xb6\\x3e\\xdc\\xdc\\xcd\\x2d\\xa9\\xf9\\x3a\\xa1\\xb9\\x38\\x12\\xd0\\xd1\\xb0\\x50\\x7f\\x06\\xe3\\x27\\x9b\\xba\\xb3\\x46\\xee\\x5e\\x1a\\x48\\x16\\xda\\x7d\\x5a\\x22\\xe9\\x68\\x47\\x7f\\xf3\\x77\\x79\\xe2\\xbc\\x8e\\x0b\\x7f\\x13\\x70\\x35\\x08\\xd4\\x62\\xfd\\xe5\\x7e\\xee\\x55\\x12\\xe1\\x0f\\xfe\\x4c\\xf5\\xe1\\xa7\\x53\\x28\\xe7\\x83\\x86\\xb6\\x8d\\xbc\\x61\\xf0\\x1b\\xf2\\x37\\x04\\xd6\\x74\\x75\\x4d\\x70\\x0a\\x02\\x89\\x94\\x9e\\xe0\\x44\\xb8\\x62\\x59\\x6d\\xa8\\x0c\\x11\\x2b\\x1b\\x14\\x95\\x6b\\xda\\x37\\x9e\\x4b\\x4b\\x02\\x52\\x30\\x04\\x8a\\xc7\\x3d\\xe1\\x1a\\x81\\x9b\\x4b\\x78\\x2d\\xda\\xb5\\x35\\xbe\\x6c\\xf1\\x4a\\xec\\x1e\\x0a\\x5e\\x78\\xd9\\x31\\x51\\xb8\\x0a\\xca\\x64\\xe2\\x45\\x58\\x33\\x57\\x24\\x27\\xea\\xb5\\x89\\xe9\\xc9\\xe9\\x44\\xa8\\x60\\x17\\x52\\x74\\x18\\x3d\\x36\\x8a\\x58\\xa6\\xa0\\x0e\\x35\\x71\\x80\\xe4\\xb2\\x27\\x60\\x81\\xc4\\x58\\xc5\\xde\\xcf\\xf7\\x14\\x6f\\xaf\\x9c\\x79\\xfb\\x78\\x71\\xd1\\xf8\\x6d\\x33\\x2b\\x77\\x16\\xe3\\x80\\xb7\\xeb\\x60\\x01\\x3e\\x06\\xae\\x09\\x34\\x66\\xd8\\xd5\\x99\\xea\\x2c\\x4c\\xf7\\x93\\xe8\\xaa\\x93\\x45\\x14\\x6d\\x3a\\xbd\\x15\\xfe\\x76\\xeb\\xe9\\x4d\\x45\\x11\\xb2\\x17\\xf9\\xbe\\x17\\xf9\\x2c\\x25\\xc3\\xb6\\x20\\x94\\x58\\xb3\\x61\\x16\\x9f\\x31\\xb0\\xbe\\x2a\\x51\\xd4\\xb5\\x8f\\xb2\\x8d\\x34\\x46\\xa0\\x14\\x54\\xfa\\xca\\x64\\x50\\x0a\\xe2\\x21\\x83\\x52\\x12\\x10\\xcb\\x30\\x35\\x20\\x04\\x20\\x06\\x1f\\x5d\\xa7\\x74\\x1e\\x89\\x9a\\x61\\x18\\xb6\\x87\\x83\\x94\\x09\\x2c\\x3f\\xaf\\xa8\\x30\\xaf\\x34\\xbf\\xd4\\x6c\\xd6\\x1b\\x31\\x3a\\xd8\\x40\\x1a\\xa4\\xb8\\xa2\\xde\\x8c\\xc3\\x2e\\x48\\x3b\\x27\\x63\\x47\\xc8\\x67\\x53\\xac\\x34\\x58\\xe1\\xa6\\x3a\\x75\\x3a\\x5e\\x20\\xad\\xb5\\xab\\xd3\\x6d\\xe3\\xfe\\xe6\\x75\\xad\\x56\\xbe\\xb1\\x61\\x46\\x5e\\x9d\\x36\\x5f\\xbf\\xac\\xf3\\xfe\\x41\\xfb\\xaa\\xfa\\xd6\\x6d\\x3d\\x59\\x9f\\xe4\\x96\\x97\\x7a\\x89\\x11\\x40\\x97\\x99\\x1c\\x81\\xaa\\x73\\x33\\xde\\x0a\\x8f\\x37\\xa3\\x6b\\x16\\x3c\\xb4\\xb2\\x38\\x27\\xdb\\x99\\x03\\x8b\\xc7\\x6f\\xef\\x7f\\x33\\x63\\xcd\\xb6\\x14\\xd5\\x6d\\x7a\\xd7\\x5c\\xa7\\xbb\\x68\\xe5\\x43\\x0b\\x36\\xed\\xdb\\xb7\\xe9\\x17\\x45\\xb3\\xcb\\x8d\\xc6\\xf2\\xd9\\x45\\x30\\x7c\\xe7\\xba\\x36\\xa3\\x2f\\x93\\xc4\\xd1\\x3c\\x0a\\x00\\x9b\\x20\\xb1\\x03\\x39\\x30\\xfb\\x0c\\x21\\x10\\x82\\x50\\x48\\x50\\x91\\x44\\xae\\x21\\x00\\x87\\x26\\x6d\\x79\\x72\\x20\\x37\\x1a\\x05\\x5b\\xde\\xa5\\xb1\\x19\\x72\\xf8\\x68\\xc9\\xea\\x47\\x17\\x98\\x6b\\x4d\\xf1\\x0a\\x6b\\xca\\x35\\x3b\\xd8\\xb6\\x25\\xc7\\x57\\x15\\x85\\x87\\x3c\\xc3\\x49\\x6e\\xbc\\xe6\\xfc\\x43\\x84\\xaf\\x10\\xaf\\xe1\\x6e\\xfc\\x0c\\x0b\\x28\\xf6\\x15\\x68\\xa1\\x84\\xd3\\x41\\x56\\x12\\x06\\x11\\xa0\\x10\\x66\\x6a\\x71\\x60\\x39\\x09\\x7e\\x16\\xae\\x4b\\x17\\x09\\x71\\xb9\\x04\\x41\\x4f\\x02\\x43\\xf0\\xe2\\x13\\xac\\xf2\\xfa\\x4b\\x76\\x20\\xb7\\x8b\\x68\\x06\\x97\\xc7\\x8a\\x38\\x99\\x83\\x6f\\xe4\\x0c\\x1d\\xe8\\xb6\\x77\\xa4\\x47\\x85\\xa6\\xa5\\xa7\\x85\\x35\\x37\\xde\\x77\\x5f\\xd1\\xb2\\xfb\\xe7\\x3a\\x66\\x3a\\xe2\\x12\\x2a\\xac\\x6b\\x96\\xbd\\xc1\\xec\\xbc\\xd0\\x35\\xeb\\xf0\\x88\\x2b\\x5a\\xf9\\xa2\\x2c\\x5c\\xc6\\x8d\\xcd\\x61\\x8e\\x3e\\xd1\\x31\\xfb\\xe6\\xb9\\xee\\x38\\xf9\\xf3\\x91\\xd1\\x8b\\x47\\x3b\\x04\\xdc\\x03\\x9e\\x1f\\xbf\\xc7\\xe7\\x87\\x14\\xe0\\x02\\x99\\xbe\\x74\\x25\\x64\\x60\\x22\\x64\\x19\\x54\\x43\\xf5\\xb2\\x2b\\xb2\\x45\\x58\\x6c\\x4a\\x9b\\x01\\x8b\\xe0\\xcb\\xe3\\xe3\\xa9\\x8f\\xda\\x49\\xad\\xd1\\xea\\x69\\x81\\xf2\\x4b\\x2e\\x0d\\x94\\x5f\\xfe\\x94\\xdf\\xa4\\xff\\x79\\x67\\xab\\xc9\\x08\\x7f\\x5a\\xbc\\x7c\\x7b\\x8d\\x7a\\xb8\\x76\\xc3\\x31\\x53\\xd3\\xb3\\xb3\\xae\\x10\\x36\\x8f\\xc0\\x7c\\x2c\\x47\\x8e\\xb1\\x77\\xd3\\x78\\xf5\\x36\\x5f\\xa8\\x0c\\xb2\\x20\\x0a\\x32\\xac\\x88\\xb0\\x4c\\x10\\xd4\\xe8\\x49\\x0d\\x9a\\x61\\x26\\x74\\xec\\xab\\x7e\\x59\\x45\\xf0\\xfa\\x16\\xdc\\x5c\\xd2\\x5a\\x71\\xce\\x4f\\x36\\xf2\\xc7\\x2c\\x92\\xf3\\x89\\x62\\x3d\\xfb\\xae\\x22\\x93\\xe9\\xf9\\xd6\\x7a\\x93\\xe5\\xbf\\x20\\xb7\\xf3\\x5d\\x71\\xb3\\xab\\x96\\xdd\\x65\\xf5\\x1f\\xe9\\xfe\\x11\\x00\\x37\\x99\\xaf\\x24\\xee\\x92\\xbb\\x97\\xfb\\x07\\xd0\\x13\\x6c\\x06\\x84\\x90\\x81\\x35\\x12\\x8e\\xee\\x56\\x22\\xed\\x1c\\xd5\\xa6\\xc5\\xc6\\x01\\x40\\x9c\\xd9\\x38\\x5e\\x3a\\x46\\x45\\xe5\\xba\\xb2\\x88\\xa1\\xb5\\xbf\\x52\\xe4\\x74\\x5d\\x56\\x41\\x6a\\xf8\\x4b\\xf7\\x3c\\x05\\xaf\\x1e\\x40\\xfd\\x12\\xab\\x2b\\xe8\\xcc\\x7b\\xf9\\xa4\\x2c\\xb0\\xf5\\x2a\\x91\\xd4\\x41\\xbc\\x2f\\x37\\x83\\xbd\\x01\\xcf\\xa9\\x3e\\x5f\\x78\\x62\\x3c\\x83\\xbb\\x53\\x02\\x01\\x33\\x69\\xe0\\x87\\x1c\\xe2\\x96\\x10\\xa5\\x38\\xb8\\x2b\\x41\\x51\\x9b\\x4c\\x9c\\xfa\\x95\\x68\\xf7\\x98\\x74\\x35\\x46\\x0a\\x38\\x57\\x02\\xe6\\x8f\\xa5\\xcd\\xc1\\x2d\\x21\\x96\\xfd\\xe9\\x40\\x51\\x25\\x1e\\x25\\x6e\\xc6\\xa1\\xc3\\x7f\\x8e\\xbc\\x1c\\x2e\\x5a\\xe4\\x60\\x6f\\x78\\xe2\\x65\\xf5\\x85\\xaf\\xaf\\x00\\x1b\\x3d\\xa0\\x5e\\x32\\x08\\x20\\xb6\\x9f\\xd6\\x32\\x15\\x04\\xe3\\x4a\\x6c\\xe8\\x93\\x51\\x30\\x57\\x8c\\x7d\\x51\\x96\\x53\\x9a\\x8f\\x2b\\x47\\xbe\\x24\\x22\\x6b\\xfe\\x92\\x7b\\x71\\xb4\\x8b\\x23\\x32\\x6a\\x22\\xda\\xe5\\xb5\\x2b\\xc6\\xb8\\x90\\xb5\\x78\\x3f\\x5e\\x8b\\xf3\\xd9\\x46\\xa2\\xd9\\x12\\xde\\xb5\\x24\\xc8\\x80\\x44\\x88\\x04\\xac\\x1c\\xc7\\x22\\x4e\\xf0\\xc0\\x4a\\xa8\\x88\\x26\\x22\\x44\\xf4\\xda\\xea\\x53\\x21\\x48\\x33\\xa7\\xda\\xf5\\xf6\\x60\\x68\\x9c\\x0e\\xea\\x48\\x68\\x1c\\x14\\xcd\\xe6\\x66\\xba\\x48\\x75\\xc1\\x35\\x69\\x2e\\x62\\x14\\x64\\xc4\\x75\\x14\\x0d\\x36\\xb0\\xfa\\xd4\\x8e\\xea\\xba\\x6d\\x4f\\x8f\\xae\\x78\\x7c\\x79\\x3e\\x7a\\x9b\\xb3\\xd6\\xcc\\x2d\\xf7\\xf6\\x35\\x94\\x24\\x35\\x6a\\x9a\\x46\\x36\\xcd\\xcb\\x6e\\x29\\xb6\\x85\\xf0\\xc9\\x1a\\x6f\\x17\\xdb\\xd8\\x7c\\xed\\xab\\x4b\\x2d\\x2b\\xdf\\xb8\\xae\\x19\\x56\\x6e\\x7a\\x6a\\xc1\\xbe\\xe2\\x45\\x2d\\x99\\x51\\xf1\\x7a\\xc5\\xed\\xea\\x0c\\xa3\\xfa\\xc2\\xcc\\xb4\\x8a\\xfe\\xdc\\xf8\\x2c\\x8c\\x0d\\x11\\xb8\\x12\\xd9\\xbf\\x31\\xc5\\xdc\\x97\\x40\\x06\\x92\\x7c\\x09\\x12\\x06\\xd0\\x40\\x1d\\x08\\x71\\x4b\\x96\\x12\\xc9\\x82\\x26\\x02\\xca\\x95\\x7a\\x7c\\x44\\x25\\x4e\\x82\\xe2\\x13\\x37\\xde\\xf0\\x12\\x8c\\xd8\\xcb\\x9e\\xd7\\xec\\xda\\x95\\x74\\x16\\x40\\x28\\xc7\\xf7\\x78\\x8b\\xde\\x43\\x43\\x26\\x0d\\x41\\xc1\\x52\\x53\\x26\\xd1\\x08\\x8b\\xc0\\xc4\\x1d\\x3c\\x4e\\x25\\xa7\\x37\\xba\\x9c\\x68\\xd1\\xc1\\xb7\\xf8\\x2f\\x0e\\xf1\\x5f\\xfe\\x92\\x9b\\xb3\\x33\\xe6\\xfc\\xf7\\xb1\\x00\\x40\\x98\\xc9\\x5e\\xcb\\x3c\\x8e\\xfd\\x13\\x4a\\xc2\\x1d\\x12\\xc4\\xeb\\x08\\xb4\\x02\\x30\\xe8\\x04\\x31\\xc4\\x1a\\x28\\x99\\xc0\\xb4\\xc5\\xcc\\x3c\\x6e\\x9f\\xb1\\xb2\\xa6\\x66\\xe5\\x0c\\xfb\\x53\\x51\\xa9\\x2e\\xb3\\xc9\\xad\\x8b\\xe2\\x1e\\x2c\\x1a\\xad\\xb1\\x58\\x6a\\x46\\x8b\\x12\\xb3\\xcd\\x6a\\xb5\\x39\\x3b\\x91\\x3c\\xe3\\x23\\xf6\\xb7\\xe8\\x1c\\xf7\\x1b\\x10\\x46\\x7c\\xc8\\xa2\\xbe\\x48\\xf0\\x2d\\xa9\\xd4\\x95\\x33\\x15\\xd1\\xf2\\x51\\x45\\x89\\xbf\\xa2\\xc2\\x5f\\x52\\xc1\\x35\\x7a\\xaa\\xab\\x3d\\xd8\\x6a\\x00\\x10\\x3c\\xc4\\x66\\x33\\x1e\\xec\\x53\\x55\\x00\\x3d\\x58\\x24\\xb8\\x53\\x63\\x2e\\x73\\x88\\x14\\x30\\x82\\x1b\\x75\\xfa\\x37\\x65\\xf4\\x9b\\xc8\\xab\\x5c\\x73\\xa5\\xe2\\x5d\\x5d\\x18\\xba\\xf8\\xa3\\x2e\\x6a\\xd1\\x7d\\x0a\\x0f\\xa5\\x7a\\xeb\\xd3\\x6d\\x75\\xb9\\x5a\\xcc\\x8d\\x6c\\xc3\\xbc\\xc5\\xa9\\x0b\\xa3\\x93\\x8c\\x4a\\x6b\\x6e\\xae\\x55\\x69\\x4c\\x8a\\x66\\xff\\x6d\\xab\\x72\\x25\\x13\\x6f\\x5a\\x7a\\x25\\x56\\x4a\\x72\\x2a\\xd3\\x55\\x46\\x4d\\xb4\\xd7\\x9e\\x91\\x17\\x95\\x68\\x02\\x10\\x6e\\xe1\\x5b\\x98\\x48\\x50\\x00\\xd4\\xa4\\xef\\x43\\xe9\\xf8\\xa9\\x43\\x10\\xf5\\x0f\\x89\\xcb\\xc7\\x68\\x24\\x5d\\x84\\xd5\\xa3\\x29\\x0a\\x84\\xe8\\x3a\\x40\\xff\\xdb\\xd6\\xa0\\x4d\\x4b\\xb1\\x47\\xa5\\x25\\x76\\x96\\xa7\\xd7\\x79\\x75\\x29\\xf9\\xed\\xb9\\xe6\\x59\\x05\\x29\\x69\\xd1\\xd2\\x7d\\x51\\x49\\x09\\xd9\\xb5\\x0e\\x73\\x73\\x5d\\x59\\x02\\x9d\\x6f\\x5b\\xd9\\x8f\\x99\\x3a\\x8e\\x07\\x29\\xa0\\x11\\xb7\\x19\\x32\\x28\\x1a\\x02\\x88\\x6a\\x52\\x20\\xaa\\x8a\\x82\\x04\\xaf\\x67\\x22\\x78\\x3d\\xd1\\x49\\x5f\\x34\\xe1\\x3d\\xa4\\x5e\\xcb\\x18\\x0a\\x42\\x05\\xfd\\x13\\x5f\\x93\\x10\\x1d\\x85\\x55\\x71\\x09\\x10\\x75\\x0a\\x0a\\x55\\x9c\\x20\\x75\\x29\\xb9\\x8d\\x99\\xd9\\xe5\\x05\\x85\\x69\\x8a\\xd4\\x84\\xa8\\xf5\\x29\\x9e\\x86\\x2c\\x4b\\x79\\x89\\xdf\\xac\\xd0\\x27\\x44\\x71\\xef\\x67\\xb4\\xf9\\xcd\\xd8\\x74\\x8a\\xfb\\x42\\x9d\\x68\\x6f\\x2f\\xb3\\x90\\xd7\\x1a\\xb3\\x5a\\xd0\\x7b\\xff\\x86\\xeb\\x1b\\xe0\\xbe\\xa2\\xd8\\x36\\x11\\x17\\xd5\\x45\\x27\\xf6\\x54\\xa6\\x0c\\xa8\\x67\\x9c\\x8c\\x1e\\x5d\\x80\\x90\\xff\\xf5\\x2b\\xc3\\xe7\\xce\\x3f\\xc3\\x7d\\xc5\\x7f\\x0b\\x43\\xf9\\x6f\\xc9\\x3d\\xe0\\x63\\xfc\\x4e\\x74\\xf6\\xe2\\x53\\xd4\\xf2\\x55\\x2c\\x86\\x47\\x09\\xd4\\x04\\x43\\x54\\x44\\x89\\x26\\x94\\xb8\\xc9\\x4f\\x21\\x44\\x1d\\xc1\\xef\\x10\\x6c\\xc4\\x13\\xc1\\x24\\x4c\\x04\\x6e\\xda\\x44\\x50\\x89\\xf3\\x40\\x02\\x1f\\x4b\\x48\\xcf\\x4f\\xd5\\xe5\\x59\\xe3\\xe3\\xad\\x79\\xba\\xd4\\xfc\\xf4\\x84\\xd9\\xc6\\x84\\x78\\x9d\\x2e\\x3e\\xc1\\xf8\\xb1\\x2e\\x37\\x4d\\xad\\x4e\\xcb\\xd5\\xe9\\x3c\\x66\\xa5\\xca\\xec\\xd6\\x25\\xa4\\xa6\\x26\\x24\\x1a\\x0c\\x64\\x4c\\x2e\\x3c\\xc9\\x3e\\xcf\\x47\\x4b\\xe2\\x04\\xbe\\x01\\xd5\\x4f\\xe1\\xb3\\x16\\x51\\xcf\\x8c\\x93\\x8f\\xbe\\xe9\\xb5\\xdf\\xb0\\xcf\\xc3\\x3e\\x00\\x03\\x8b\\xd9\\xe7\\xf8\\xd3\\x92\\xf8\\xa9\\xf7\\x11\\xf7\\x3a\\x48\\xef\\x43\\xde\\xb6\\x05\\xef\\x0d\\xe0\\xe4\\x7d\\x70\\xdf\\x05\\xbe\\xfb\\xd5\\x2b\\xd7\\x4a\\xe2\\xf9\\x23\\x17\\x2f\\x5e\\xd8\\xc0\\x7e\\x7c\\xb1\\x82\\xe3\\x91\\x14\\xdc\\x7d\\xfe\\x07\\x40\\x7e\\x60\\xc0\\xc7\\xfe\\x83\\xbf\\x59\\xb2\\x11\\x28\\x08\\x3e\\x39\\x06\\x32\\x93\\x4c\\x46\\x43\\x00\\x30\\x0c\\xf5\\xcc\\x32\\x5d\\xc4\\x85\\xca\\xd4\\x03\\x40\\x28\\x96\\x31\\x4a\\x95\\xca\\x0b\\xb3\\x5b\\x70\\xc5\\x7b\\x44\\x78\\x41\\xa0\\x55\\x5a\\xed\\x57\\x63\\xdb\\x85\\xf4\\x81\\x63\\x09\\x56\\x77\\x22\\x64\\xff\\x71\\x3d\\x97\\xa8\\x8f\\x4d\\x94\\xcb\\xd6\\xcc\\xed\\x34\\xb8\\x30\\x9a\\xa3\\x9c\\x8c\\xdb\\x85\\x48\\x5c\\x0f\\xc7\\xe4\\xd8\\x5f\\x92\\xaa\\x60\\x92\\xba\\x42\\x18\\x7d\\x5e\\xf6\\x6b\\xfe\\x6d\\xc8\\xa1\\xe4\\x97\\xff\\xfd\\x1d\\xfb\\x31\\x0c\\x25\\xc3\\x4f\\xea\\x9d\\xc2\\xdf\\xca\\xe7\\x5d\\xbc\\x15\\x84\\x5d\\xc9\\x87\\x2c\\x08\\x1e\\x6e\\x8a\\xe0\\x09\\xa4\\x60\\x24\\x72\\x4d\\x0d\\x46\\x24\\xff\\xaf\\xa7\\xa6\\x86\\xca\\x1d\\x88\\x72\\xd8\\xaf\\x99\\x45\\x92\\x6b\\x04\\x0e\\x89\\xcb\\x3b\\x11\\x77\\xa1\\x54\\xe8\\x42\\xb4\\xe6\\x9b\\x57\\x97\\x4b\\xae\\xe1\\x97\\x00\\xc0\\x40\\x96\\xfd\\x2d\\xab\\x95\\x7c\\x42\\x31\\xd3\\x1a\\xd0\\x2f\\x46\\xbf\\x51\\x1e\\x0e\\x81\\xa8\\x0b\\xf5\\x90\\xed\\x3b\\x9b\\x8a\\x25\\xf5\\x95\\xbf\\xcc\\xc2\\x5f\\x5e\\xe5\\x22\\x12\\x92\\x6e\\x30\\x10\\x64\\xb5\\x44\\x9a\\x40\\x1f\\xcf\\x5d\\xcd\\xe6\\xb2\\xee\\xdb\\x43\\xd7\\xf1\\xcf\\x54\\x14\\x15\\x56\\x54\\x14\\x16\\x55\\x20\\xa5\\xf8\\x4a\\xf2\\x09\\xff\\x97\\x15\\xae\\xca\\x4a\\x57\\x4e\\x45\\x85\\xcb\\x85\\x7f\\x73\\x2a\\x2b\\x89\\xff\\x16\\x65\\xa2\\x2a\\xa6\\x82\\x69\\x46\\x12\\xb0\\xa2\\x98\\x4c\\xb8\\x23\\x00\\xb0\\xee\\x09\\xfe\\x2b\\x01\\x5c\\x8d\\xd2\\x88\\x22\\x65\\x11\\x98\\x38\\xa4\\xea\\x20\\x5b\\x0d\\xeb\\x0e\\xf4\\x9c\\x63\\x6e\\xc4\\xf4\\x70\\x31\\xb8\\x3c\\x59\\xbf\\x66\\x7c\\xed\\xff\\xe0\\xd7\\x8c\\xc0\\x38\\x2b\\x81\\x94\\x03\\x0b\\x80\\x34\\xaa\\x1c\\x74\\x5f\\x7a\\x0f\\x27\\xd4\\x19\\x75\\x10\\x25\\x7d\\x0c\\xff\\x7a\\xbe\\x0e\\x7a\\x50\\x35\\xff\\x0f\\xc2\\x4a\\x78\\x92\\x39\\x46\\xed\\xc5\\x83\\x78\\xdf\\x5f\\xc1\\x11\\x1b\\xb6\\x06\\x38\\x28\\xcf\\x1c\\x04\\xc4\\xf9\\x3a\\x28\\x5a\\x3e\\xb3\\x26\\x2c\\xbe\\x0e\\x44\\xa8\\x96\\x8c\\xb4\\x77\\xa8\\x01\\x9b\\xfb\\xaf\\x1c\\x55\\x4c\\x31\\xdf\\x09\\x1f\\x80\\x9e\\x9f\\xca\\x54\\xb5\\xf6\\xc4\\xc9\\x9f\\xcc\\x55\\x25\\xc4\\xc5\\x3c\\x2c\\xf2\\xe6\\x00\\x08\\xd3\\xa8\\x19\\xc7\\x42\\x27\\x32\\x6d\\xbb\\x40\\x65\\x82\\x46\\xf8\\xa7\\xff\\x03\\x7f\\xff\\x31\\xfc\\xfd\\xf7\\x6c\\xdf\\xf9\\xbb\\x49\\xeb\\x01\\x6d\\xfb\\x56\\x12\\xff\\x19\\xc4\\xf8\\x0a\\x1c\\x7b\\x02\\x9f\\x1a\\xe1\\x68\\xa2\\x76\\xa1\\x34\\x11\\x88\\x4f\\x3b\\x94\\xfc\\xd0\\xb6\\x63\\xed\\x45\\x47\\x79\\x94\\xf1\\xef\\x56\\xe6\\x85\\x0b\\x65\\xfd\\xe8\\x3f\\x01\\x59\\x1b\\x73\\xeb\\x85\\x39\\x27\\x4f\\x32\\xb5\\x2f\\x32\\xa9\\xa7\\x26\\xe2\\x4b\\xf2\\x44\\x4e\\x22\\x00\\x21\\x3d\\xbf\\x4f\\xad\\x64\\x34\\x2b\\x8d\\x13\\x99\\xe4\\x74\\x6c\\xde\\x39\\x3e\\xe7\\x1c\\xf3\\xa8\\x38\\xd0\\x10\\x2c\\x06\\x90\\x72\\x10\\x86\\x93\\xd3\\x11\\xa1\\x3a\\x0b\\x97\\x10\\xb8\\x31\\x07\\x21\\x60\\x6a\\x44\\xae\\xbe\\x4b\\xeb\\x18\\x2b\\x97\\x93\\x7b\\x42\\x48\\xc3\\x54\\xa0\\x0b\\xff\\x81\\x4c\\x01\\x3f\\x1f\\xbd\\x75\\xfe\\x3c\\xfc\\x0d\\xef\\x60\\xde\\x0f\\xf4\\xc0\\x43\\xe8\\xd7\\x81\\xaf\\x4f\\xdc\\x84\\x4a\\x50\\xf1\\xe1\\x53\\x81\\x6f\\x68\\x5f\\xf8\\x83\\xb8\\xeb\\x78\\xa0\\x05\\x66\\xc2\\x23\\x64\\x34\\x24\\x27\\xa9\\x23\\x42\\x81\\x8c\\x18\\xfb\\x68\\xe7\\x02\\x5a\\xed\\x44\\x0d\\x5d\\x9b\\x97\\x24\\xd1\\x10\\xd0\\xfe\\x10\\xdb\\xf9\\x71\\xdc\\x21\\x87\\x4d\\xfc\\xd8\\xfc\\x8d\\xbe\\x1b\\xba\\x7f\\x55\\x19\\x41\\xc5\\x9f\\x1d\\x3a\\xba\\xaa\\xb4\\x74\\xd5\\xd1\\xa1\\xb3\\x7c\\xee\\xf8\\xc8\\xc8\\x38\\xba\\x63\\x6c\\x78\\x78\\x8c\\xfd\\xdf\\xd0\\xd6\\xdd\\x2f\\x8c\\x8d\\x3d\\xbf\\xab\\x35\\xf4\\xe4\\x89\\x90\\xd6\\x5d\\xcf\\x8f\\x8d\\xbd\\xb0\\xb7\\x2d\\xe4\\xcd\\x80\\x76\\xef\\x03\\x31\\xe8\\xa0\\xe2\\xe1\\x3d\\x7b\\x1f\\x52\\x04\\x16\\x29\\x1e\\xa4\\x7d\\x39\\x03\\xd7\\xef\\x41\\x92\\x03\\x85\\xd4\\x2d\\x3e\\x32\\x0c\\xb0\\x34\\x30\\x09\\x21\\x00\\xc4\\x55\\xa3\\x54\\xab\\x63\\x69\\xe3\\xb1\\x70\\x94\\x53\\x53\\x2f\\xb1\\x15\\x65\\x30\\xe4\\x0d\\xa9\\x1a\\x76\\xea\\x76\\xce\\x39\\x57\\x3c\\x7e\\xc7\\xc0\\xd9\\xa1\\xbb\\x97\\xfa\\xce\\x2e\\xe8\\x3d\\x8b\\xa2\\xd5\\x77\\xdd\\x88\\x5a\\x02\\x8f\\xae\\xf9\\xf9\\xd6\\x86\\x70\\xfe\\x69\\x58\\x13\\x56\\xb7\\xf5\\xc5\\x75\\xe4\\x93\\x1b\\xef\\x52\\x33\\x47\\x84\\x79\\xd6\\x4d\\x38\\x17\\xf0\\x1a\\xb1\\x13\\x36\\xb2\\x68\\x80\\x82\\xcb\\x2d\\xb8\\x3c\\x58\\x48\\xfc\\x01\\x1c\\x14\\x06\\x20\\xc1\\x2a\\x57\\xa7\\x91\\x49\\x62\\xc4\\xa7\\x1d\\x61\\x0b\\x23\\x49\\x0f\\xd4\\xc4\\x58\\x48\\x02\\x23\\xa6\\x22\\x4a\\x48\\x98\\x01\\xba\\xcf\\xd1\\xe0\\x49\\x3e\\xb8\\x71\\xc3\\xc1\\x15\\x73\\x78\\x07\\xe4\\x0a\\x66\\x57\\xa6\\xd5\\xef\\x3e\\xb5\\x7c\\xf9\\xe9\\x3d\\xf5\\xe6\\xca\\xa1\\x02\\x2c\\x75\\xb3\\xbe\\x8a\\x68\\xde\\xf1\\xf2\\x7a\\xff\\x1f\\xff\\xfa\\xd7\\x3f\\xfa\\xcf\\xf3\\xdf\\x24\\x7c\\x75\\xca\\xbe\\xe9\\x96\\x87\\xbb\\x7d\\x7b\\x3e\\x39\\xda\\xdb\\x7b\\xf4\\x93\\x3d\\xbe\\xee\\x47\\x6e\\xde\\x64\\x3f\\x45\\x65\\xc3\\x72\\x7c\\x16\\xdd\\xc7\\x36\\x00\\x1d\\xc8\\x01\\x9f\\x0a\\xfb\\x72\\xb4\\x16\\x4a\\x98\\x74\\x2b\\x02\\x92\\xa8\\x10\\x44\\xa6\\x0e\\xe5\\xf0\\x10\\x3e\\x67\\x2f\\xf9\\xfc\\xb2\\x8f\\x08\\x1a\\xb7\\x4b\\x90\\xb2\\xf1\\x40\\x22\\x61\\x7a\\xa4\\xc4\\x36\\xe9\\xac\\xe5\\x20\\x91\\xf6\\x08\\x42\\xe8\\x80\\xd4\\xd6\\x75\\xf5\\x02\\xe9\\x50\\x64\\x0c\\x49\\x22\\xa7\\x06\\x5b\\x2d\\x2d\\x06\\xa6\\x17\\xf2\\x19\\x00\\x90\\x70\\x12\\xc0\\x8d\\x5d\\x5e\\x0e\\x2f\\x46\\xb1\\x18\\x51\\x1f\\x7d\\x72\\x42\\x0a\\x9e\\x66\\xc2\\x2d\\xd4\\x59\\x0c\\x06\\xa3\\x4c\\x1a\\x27\\x82\\xad\\x04\\x0d\\xce\\x24\\x9e\\xc9\\x44\\xbb\\x85\\x07\\x06\\x8f\\x66\\x2e\\xd1\\xdc\\xc5\\x5c\\x08\\x8b\\xd5\\x44\\x6b\\x62\\xe3\\xb4\\x85\\xa9\\xcd\\x4b\\x93\\x9d\\xd7\\xcd\\x1a\\xb8\\x71\\xd8\\xe5\\x1a\\xbe\\x71\\xd6\\xe0\\x01\\xa7\\x9b\\x67\\xe2\\x5c\\x6d\\x85\\xd5\\xb3\\x52\\xb4\\xb3\\x2a\\x0a\\xdb\\xdd\\x71\\xd8\\x43\\xf1\\xb5\\x21\\x43\\x13\\xca\\x3d\\x1e\\x1b\\x56\\x52\\xe5\\xaf\\x68\\xd8\\x73\\x72\\xa9\\x72\\xc3\\xdb\\x37\\xb7\\x55\\xfb\\x57\\x06\\x5e\\xae\\x58\\xd3\\x9d\\xe3\\xc9\\x4c\\x84\\x01\\xbb\\xbb\\x70\\xee\\x9e\\x06\\x32\\x06\\xf7\\xf2\\xab\\xd8\\xe5\\xd8\\xae\\x98\\x00\\xf2\\xc0\\xc3\\xbe\\x48\\x19\\xee\\x7e\\x1b\\xe4\\x24\\x0a\\x08\\x27\\x9c\\x6f\\x06\\x19\\x64\\x70\\x7b\\x19\\xc9\\x10\\x3d\\xfa\\x4b\\x21\\x6e\\x94\\xd0\\x52\\x12\\x5f\\x4b\\xe4\\xb8\\x1d\\x91\\x9e\\xb3\\x5e\\xb9\\x6c\\xf6\\x44\\xd9\\x74\\xb1\\x2c\\xee\\x40\\x04\\xd1\\xd2\\x1f\\x2d\\x4b\\xad\\x84\\xf1\\x89\\x1a\\x08\\xbc\\x9e\\x4c\\xbb\\xc9\\xa0\\xc9\\x4b\\xcc\\x53\\x62\\x57\\x35\\x48\\x80\\x09\\x21\\x52\\x7a\\x68\\x13\\x21\\x7d\\x93\\xbe\\x2c\\xdc\\x8b\\x8a\\x29\\xc0\\x51\\xa5\\x7c\\x0a\\x5b\\xbc\\xde\\x85\\x56\\x0c\\xdf\\xb7\\xdc\\x37\\xd4\\xb9\\xfa\\x1a\\xff\\x8a\\xa3\\xb3\\x6b\\x6f\\x28\\x3e\\x53\\xb3\\xf1\\x58\\x0f\\x26\\xf5\\x8e\\xd3\\xe4\\x34\\xe4\\x64\\xcd\\x28\\xd4\\x5b\\xd7\\x37\\x15\\xf4\\xf9\\x52\\x93\\xbd\\xed\\x9e\\xb5\\xdc\\xab\\xb9\\x23\\x07\\xbb\\xfb\\x6e\\xcd\\xb2\\xbf\\xb8\\x79\\xde\\xbd\\xe3\\xf9\\x69\\x36\\x3e\\x8f\\x7b\\xa0\\xfb\\xd6\\x31\\x5f\\xe0\\x70\\x8a\\xa7\\x31\\x2b\\xad\\x2e\\xcf\\x90\\x5a\\xd0\\x9a\\x7d\\xe1\\x7d\\x53\\x86\\xa9\\xac\\xc7\\xed\\xec\\xab\\xb0\\x3e\\x43\\xd7\\xa0\\x8b\\xef\\x67\\xb1\\xaf\\x08\\x84\\x92\\x33\\x5d\\x08\\x87\\x18\\x31\\xa2\\xd2\\x46\\x56\\xbf\\x9d\\x84\\x25\\x8a\\xfb\\x1d\\xae\\x33\\xfe\\x57\\xed\\x61\\x1e\\xff\\x8e\\x2f\\x3a\\xc3\\x17\\xfd\\x07\\xe6\\xc8\\x15\\xf8\\xe0\\xfb\\x05\\x9f\\x07\\xdf\\x64\\xe5\\x17\\xfe\\x53\\x53\\x2f\\xe8\\xc1\\xf3\\xf0\\xde\\xb7\\x4c\\x92\\x42\\x4e\\xbc\\x04\\xcb\\x41\\xb8\\xfb\\xad\\xf2\\x10\\x86\\x85\\x24\\x1a\\x0a\\x32\\x90\\xa5\\xcc\\x9a\\x90\\x05\\x90\\x38\\xa9\\xc5\\x3d\\xb0\\xb8\\x28\\x27\\x3b\\xd3\\x6c\\xe0\\xa4\\xea\\x09\\xb3\\x8c\\x94\\x6c\\x7b\\x42\\xb4\\xc4\\x54\\xa7\\x35\\x95\\x8b\\xd8\\x03\\xaa\\x98\\x6a\\xa2\\x31\\x93\\x3e\\xfc\\xc1\\x3d\\xe7\\xe0\\xcc\\xc6\\xc3\\x0d\\xe9\\xb1\\xde\\xb2\\x1a\\x53\\x63\\x77\\x94\\xb5\\xae\\xf0\\xd3\\x4f\\xca\\xb7\\x9e\\x58\\xb3\\xee\\xe4\\xb6\\x72\\x57\\xef\\x9a\\x72\\xa6\\x67\\xb4\\x5f\\x57\\x36\\xaf\\xba\\x6a\\xb4\\x54\\x67\\xae\\x1a\\x2e\\xae\\x9a\\x57\\xae\\x63\\x3f\\xaf\\x5a\\xda\\x64\\xcd\\xd0\\xdf\\x25\\x8d\\x8d\\x89\\xf0\\xe3\\xd9\\x6c\\xb5\\xa9\\x1a\\xf8\\xcf\\x7e\\x17\\xbb\\xe4\\x95\\x6b\\x5b\\x9a\\xf7\\x9f\\x1a\\x8f\\x6d\\xbb\\x61\\x79\\x53\\x74\\x78\\xda\\xae\\xc0\\xba\\xaa\\x4d\\x03\\xb9\\xb9\\x03\\x9b\\xaa\\x62\\xbd\\x4b\\x06\\xca\\xc3\\xbd\\x03\\x1b\\xca\\x27\\x6c\\x38\\xec\\x46\\xb6\\x1e\\xe4\\x11\\x44\\x12\\x23\\xc4\\xf0\\x91\\x73\\x3e\\xc4\\x6d\\x95\\xb0\\x84\\xa6\\x75\\x8c\\xb8\\x3e\\x24\\x0c\\x3b\\x11\\x40\\x44\\x97\\x20\\x65\\x8b\\x76\\x48\\xeb\\x70\\x4e\\x06\\x5d\\x9a\\x21\\xd6\\x2a\\x93\\x62\\x4b\\xec\\xd5\\x43\\x48\\x9c\\x4e\\x25\\xe9\\x11\\xb1\\xe1\\xce\\x60\\x97\\x6c\\x5f\\x30\\xbf\\x7f\\x4e\\xd9\\xa6\\x67\\x97\\x0d\\x3d\\xbe\\xb5\\xfe\\x8c\\xb9\\xac\\xd7\\x55\\x39\\x98\\x17\\x1f\\xe7\\x9d\\x59\\x7e\\xf6\\xec\\xae\\xf5\\x29\\xfe\\xe1\\x8a\\xe2\\xd9\\x95\\xc6\\xaf\\x3a\\xf6\\x3f\\x35\\x73\\xd9\\x8b\\x3b\\x6b\\x60\\x76\\xef\\x46\\xad\\x61\\x75\\x55\\xfd\\x8a\\x46\\x8b\\xbd\\x75\\x75\\x5d\\x8a\\xd3\\xa4\\x8c\\x4b\\x73\\x26\\x24\\x3b\\x0d\\xb1\\x0f\\x57\\x36\\x25\\xbb\\xad\\xf1\\x09\\x36\\x6f\\x4a\\xd7\\x35\\x33\\xd2\\xd2\\x5b\\x57\\xd3\\xf6\\xcd\\xe2\\x37\\xb2\\x19\\x24\\x4f\\x02\\x61\\x70\\x86\\x94\\xe3\\x2c\\x4e\\x2d\\x64\\x42\\x81\\x5d\\x44\\x8a\\xa4\\x51\\x5f\\x8a\\x15\\x58\\x2d\\x69\\x0c\\x99\\xf2\\x4a\\x28\\xe4\\xe7\\x51\\x93\\x00\\xed\\x48\\x86\\x24\\x49\\x31\\xbb\\x4d\\x66\\x1a\\x21\\x13\\xe3\\x81\\x3a\\x17\\x9b\\xc1\\x8f\\xe2\\x81\\x30\\x29\\x2c\\xc5\\xf6\\xdf\\x17\\x0c\\x57\\x5b\\xa0\\x39\\xbf\\x42\\xb7\\x2e\\x2b\\x83\\x90\\x57\\x3d\\xd3\\xb7\\xa5\\xd9\\xf0\\xd8\\x73\\x90\\x0b\\xcc\\xe7\\x8e\\x5f\\xcb\\xf7\\x16\\x2f\\x5c\\xb8\\xaa\\x3a\\xb3\\x2c\\x2b\\x25\\x24\\x3d\\x52\\x9b\\xd3\\x54\\x64\\xe9\\x6e\\xaf\\x89\\x1f\\x72\\xcf\\x30\\xea\\x3c\\x91\\x3a\\x79\\x71\\xef\\xda\\x86\\x1d\\x50\\xff\\x20\\x94\\x9f\\x20\\x75\\xbd\\x96\\x1f\\x64\\x8b\\x28\\x6f\\xc0\\x82\\x29\\xfc\\x13\\x31\\x90\\x99\\xe4\\x9f\\xa0\\x6f\\x44\\x5f\\x8b\\x7a\\x92\\x7f\\xc2\\x49\\x8c\\x53\\x96\\xe0\\xd4\\xd7\\xf8\\x34\\x1c\\x15\\x9a\\xe2\\x88\\x4d\\xfd\\x96\\xf2\\x50\\x50\\x63\\x03\\xe6\\xd7\\xd0\\x4b\\x88\\xb4\\xbc\\x12\\xb1\\x06\\x9c\\x1f\\x91\\x7b\\x74\\x41\\xfb\\xde\\x21\\xf7\\xd9\\xb1\\x85\\x6d\\x2b\\x4d\\xd8\\x89\\x72\\xdb\\x8c\\x99\\xe9\\x43\\x47\\x96\\x9e\\x7f\\x9a\\xad\\x5e\\x3d\\x0f\\xfb\\x4d\\xde\\x13\\xfc\\x26\\x0c\\x78\\x12\\xef\\x31\\x0e\\x9a\\x6f\\x25\\x15\\xd8\\x40\\x73\\x30\\x8e\\x1c\\xb0\\x80\\x00\\x67\\x06\\x45\\x69\\x93\\x35\\xe1\\xf5\\x71\\xe0\\x13\\xd7\\xf4\\xef\\xb3\\x27\\xbe\\x4f\\xa7\\xc8\\x0f\\xbd\\xd2\\x88\\xa9\\x80\\xc9\\xd6\\x39\\x3d\\xef\\x0a\\xa3\\x9b\\x98\\x4a\\x50\\x17\\xdc\\x55\\x59\\x47\\xd1\\xb2\\xfb\\x46\\x86\\xef\\x5f\\x5e\\x5c\\xbc\\xec\\xbe\\xe1\\x91\\xfb\\x97\\x15\\x9f\\xe1\\x07\\x13\\xb0\\xd0\\xc9\\xa9\\xcf\\x49\\xe0\\x07\\xe1\\x9d\\xa3\\x73\\x47\\x46\\x50\\xfc\\xae\\xdf\\xee\\xab\\xaa\\xda\\xf7\\xdb\\x5d\\x70\\xf5\\xae\\xdf\\x1f\\xa8\\xae\\x3e\\xf0\\xfb\\x5d\\xfc\\xbf\\x6e\\x6a\\x5f\\xdb\\x60\\x30\\x34\\xac\\x6d\\x87\\x33\\xae\\x79\\xe8\\xf0\\x61\\x62\\x43\\x27\\x6d\\x2a\\xa6\\x76\\xb7\\x1a\\x5f\\x28\\xee\\x7a\\x26\\x8c\\xda\\xe9\\xa7\\x30\\x6c\\x74\\x81\\xa0\\xb0\\x11\\x05\\x81\\xe6\\x4a\\x9f\\xa7\\x93\\xe0\\x4c\\xa5\\xd9\\x48\\x55\\x3b\\x85\\x4e\\xb4\\x0a\\x4e\\x86\\xc1\\x3f\\x89\\xb2\\xe2\\xad\\x9e\\x64\\x7b\\xa3\\xc6\\xae\\x2d\\x2a\\x2c\\xd2\\xb6\\x6c\\xe8\\xb0\\xf3\\x27\\x31\\x0c\\x38\\x39\\xbf\\x54\\x27\\x4b\\x96\\x3f\\x18\\x97\\x1c\\x2d\\x31\\xb5\\xef\\x1b\\x41\\x71\\x64\\x8e\\xa4\\x5f\\xfc\\x8a\\x5d\\xc4\\xfd\\x80\\xfb\\x68\\x9d\\xe0\\x11\\x8f\\x26\\xb1\\xd2\\x36\\x1d\\x62\\x18\\x5c\\xbd\\x54\\x08\\x2a\\x35\\x53\\x3f\\x4a\\x85\\x2c\\x60\\x44\\xce\\x85\\x94\\x89\\x95\\x2d\\xc6\\xbf\\x5b\\x68\\x9f\\x0b\\x2f\\xe9\\xa0\\x4c\\x2d\\xd1\\x05\\x82\\x05\\x28\\xda\\xd2\\xc1\\x62\\x03\\xb4\\xb1\\x3a\\x4d\\x15\\xcd\\x49\\x49\\xc6\\x18\\x68\\xa6\\x42\\x4e\\x6a\\x0e\\xf2\\x6f\\x43\\xa2\\xe2\\x67\\xbb\\xdd\\x1e\\x69\\x90\\x6f\\x95\\x91\\xc2\\x6c\\xfe\\x07\\xb8\\xc5\\x1a\\x61\\xc8\\xf0\\xa6\\x46\\x59\\xe4\\x4c\\x84\\xce\\x60\\x8c\\xae\\x5e\\xdc\\xe4\\x8a\\x86\\x83\\xa1\\x49\\x06\\x6b\\x9c\\x2c\\x54\\x16\\x1a\\xc2\\x46\\x59\\xa3\\xca\\xe6\\x36\\x17\\xa8\\x9f\\x4a\\x61\\x63\\xe6\\xa7\\x96\\xb9\\x74\\x2c\\x7c\\x92\\x91\\x4a\\x18\\x4f\\xcb\\x40\\xda\\x85\\x45\\xda\\x7c\\xbb\\x06\\x22\\xf8\\xa2\\x44\\x4a\\x4c\\x5d\\xf0\\xd3\\x1d\\x82\\xdc\\x7a\\x94\\x5f\\xc1\\xb6\\x63\\x1d\\xcc\\x4f\\x70\\x36\\x7e\\x08\\x18\\x0f\\x1d\\x1f\\x93\\x11\\xa1\\x4a\\x7a\\x64\\x46\\xfd\\x13\\x2a\\x19\\xa8\\xf3\\x15\\x61\\x21\\xc5\\x92\\xed\\x20\\x83\\x99\\x2e\\x92\\xd4\\x62\\x0a\\x38\\xdc\\x16\\x02\\x39\\xbe\\x2c\\x1a\\x4e\\xa5\\x66\\xa5\\xda\\x5c\\xb7\\x2b\\xb9\\x7b\\x4d\\x9d\\x2e\\xb5\\x71\\xf3\\xc0\\xc1\\x03\\xef\\xfc\\xc2\\xd1\\xb6\\xc4\\x3f\\x3f\\x6f\\xb8\\xc6\\x6a\\xce\\xaf\\xd4\\xad\\x8a\\xd3\\xa9\\x42\\x4b\\x2a\\xf2\\x57\\xbf\\xb8\\xa5\\xec\\xe1\\x3b\\xd7\\x6f\\xaf\\xde\\xfb\\xcb\\xcd\\x2d\\xbb\\x72\\xd9\\xf7\\x64\\x91\\x21\\x5c\\x42\\x7a\\x81\\xce\\x52\\x96\\xad\\x39\\x7d\\xe0\\xda\\xfc\\xee\\x12\\x4b\\x58\\x5c\\x64\\x52\\x76\\x53\\x89\\x20\\x08\\x34\\xe9\\x16\\x4b\\x9c\\x39\\x5d\\x1e\\xa5\\x29\\x9e\\x7d\\xc3\\xd8\\xc1\\x53\\x19\\x69\\x07\\x06\\xdb\\x76\\x60\\xb7\\x49\\x2c\\x69\\x63\\x1f\\x96\\xcd\\xbf\\xc3\\x73\\x50\\x23\\x72\\xee\\x90\\x89\\x08\\x84\\x89\\xa8\\x11\\xdf\\xb0\\x10\\x4d\\x72\\x87\\x40\\x6a\\x61\\x1b\\xe3\\x18\\x04\\x00\\x05\\x19\\xd8\\xa8\\x3a\\xea\\x10\\xd1\\x3b\\x2c\\x80\\xec\\x25\\xdf\\x02\\x96\\xc5\\x43\\x4c\\x4a\\x90\\xa0\\x50\\xb9\\x9c\\x38\\x94\\xa3\\xa5\\x52\\x0d\\xf5\\xfc\\x24\\xa3\\xa9\\x66\\xb0\\x20\\x30\\x44\\xc7\\xae\\xbd\\x36\\x32\\x4e\\xaf\\x4c\\xb2\\xcb\\xed\\x9e\\xc1\\xec\\x92\\xd9\\x65\\xa9\\xfc\\x1f\\xce\\x6c\\x66\\x93\\x98\\x0d\\x81\\x07\\x2d\\x59\\x71\\x92\\xa8\\xd0\\x7b\\x8d\\xb1\\x29\\xd5\\x2b\\xbb\\x50\\xf7\\x85\\xcd\\xcc\\x86\\x17\\x84\\xbd\\xf5\\x20\\x3f\\xc0\\xb6\\x09\\x3c\\x35\\xc4\\x27\\xa2\\x87\\x2c\\x23\\x83\\x60\\xd2\\x27\\x22\\x6e\\xa8\\xce\\x09\\xef\\x8e\\x43\\x94\\x66\\x57\\xfa\\x32\\x5d\\xf8\\x92\\xfa\\x44\\x30\\xbf\\x17\\x9e\\x92\\x53\\xe1\\x36\\xd3\\x76\\x20\\xa9\\x73\\x02\\x70\\xd3\\xe6\\x9e\\x77\\xdb\\x9c\\x39\\x87\\xdd\\x67\\x6a\\x36\\x3f\\x35\\x77\\xc5\\xe3\\x2b\\x0b\\xce\\x24\\x78\\x7b\\xfd\\x25\\xbd\\xf9\\x89\\x10\\xa6\\x2e\\xe9\\xf6\\xf7\\x15\\x68\\xe0\\xf7\\x4b\\x4f\\xee\\x6d\\xf0\\x17\\x06\\xbe\\x65\\x3e\\x58\\xfb\\xca\\xce\\xaa\\xb6\\x9b\\xdf\\xde\\xd0\\xb0\\x67\\x6e\\x61\\xd1\\xac\\x75\\x85\\x90\\xff\\xd6\\x5b\\x91\\xd3\\xb3\\xa6\\x02\\x40\\x30\\xcc\\xb7\\xb1\\xb9\\xb8\\x4d\\x0e\\x82\\x55\\xd0\\x69\\x11\\xac\\x04\\x10\\x41\\x62\\x53\\x16\\x40\\x29\\x4e\\x54\\x07\\x41\\x78\\xa8\\x10\\x16\\xcd\\x8a\\xfa\\xd4\\x44\\xa5\\x82\\xa1\\x95\\xea\\x29\\x33\\xcf\\x20\\x28\\x09\\x68\\x60\\xf4\\x91\\xf5\\x15\\x1f\\x25\\x15\\xce\\x2c\\xae\\x9e\\xe3\\x4b\\xd2\\xd7\\x2e\\x6b\\xc1\\x1c\\xb7\\x2e\\xe8\\x6c\\x1e\\x71\\x0d\\xab\\x3c\\x59\\xba\\xe1\\xd9\\xfc\\x85\\x0b\\xfe\\x6b\\x5e\\xc0\\xf0\\xa1\\xd1\\xc3\\x03\\x93\\xe1\\xcf\\xe3\\x1d\\x79\\xa1\\x91\\xc6\\x82\\x9e\\x52\\xdf\\xbc\\x0e\\xbf\\x7a\\x7f\\x88\\xd6\\x9e\\x67\\xc8\\xc8\\x0e\\x4b\\x83\\x61\\xef\\x50\\x0a\\x40\\x10\\xf4\\xb3\\x7d\\xc1\\x6e\\xa7\\x31\\x0f\\xe9\\xa0\\x44\\xe8\\x7f\\x15\\x2b\\x92\\x13\\xda\\x44\\x37\\x07\\x55\\xe6\\xaf\\xf8\\x45\\x3a\\xed\\x77\\xa3\\x25\\x8d\\x8a\\x02\\xa8\\x9b\\xea\\x7e\\x12\\x62\\x0e\\xe0\\x34\\x27\\x14\\xbb\\x9d\\xff\\xae\\x6d\\x76\\xc9\\xfa\\xa7\\x97\\xaf\\x7c\\x76\\x93\\xdf\\xbf\\xe1\\xd9\\x15\\x28\\xff\\xc2\\xeb\\x49\\x85\\xb3\\xca\\xfd\\x7d\\x85\\x89\\x98\\xb7\\xaf\\xb4\\x6c\\xb0\\x30\\x89\\x59\\x55\\x7a\\x72\\x85\\x72\\xf8\\xb9\\xbd\\x33\\x88\\xdb\\x49\\x39\\x7e\\x6a\\x7f\\x4b\\xe0\\xcf\\x13\\xde\\xa7\\xb2\\x35\\x33\\xdd\\xee\\x99\\x6b\\xca\\x00\\x80\\xf4\\x5c\\xa3\\xc3\\x6d\\x88\\x07\\xf5\\x53\\x97\\x45\\xb0\\x35\\xa4\\xf7\\xe9\\x89\\xfd\\x32\\x01\\x7d\\xa5\\x2f\\xd2\\x29\\x13\\x16\\x11\\xd1\\x42\\x6b\\xa6\\x8b\\x68\\x3c\\xe7\\x53\\xf8\\x07\\xe2\\xac\\xb9\\xda\\xac\\xda\\x14\\x93\\xb6\\xb0\\xa0\\x48\\xd7\\xb4\\x1e\\x4b\\xe9\\xdb\\x99\\x63\\xcc\\xd2\\xc0\\x99\\xe2\\x4a\\x43\\x48\\x42\\xf4\\x23\\xb1\\x09\\x91\\x9c\\xb9\\xfb\\xe0\\x7c\\x14\\xfa\\x3a\\x80\\x60\\x37\\xae\\x5f\\x3d\\xae\\x5f\\x8a\\xc8\\xca\\x14\\x43\\x2d\\xfd\\xf8\\xb1\\x00\\x4c\\xd4\\x67\\xda\\x87\\xa4\\x2e\\xbe\\x70\\xc1\\xb3\\x64\\x51\\x1b\\x89\\x4e\\x09\\xe5\\x62\\x5f\\x9a\\x90\\xd9\\x39\\x85\\x34\\x46\\x0e\\x57\\xeb\\x8b\\xda\\x9d\\xa5\\x18\\x24\\xc6\\xf8\\xb2\\xce\\xa8\\xad\\x18\\x8f\\xb8\\xe4\\x99\\x2d\\xe3\\x4f\\xae\\xf7\\xe3\\xdd\\xe3\\x86\\xe6\\xb1\\xf2\\x94\\x8a\\xf1\\xfd\\x95\\xdb\\x21\\x5c\\x9f\\xb1\\xf8\\x9a\\x43\\x2d\\x2b\\xdf\\xb9\\xab\\xcf\\xbb\\xf2\\x99\\x8d\\x68\\x2e\\x99\\x03\\x5d\\x7c\\x2a\\x7b\\x1f\\xeb\\x03\\x46\\xe0\\x24\\xdc\\x6e\\x21\\x10\\x01\\x93\\x5e\\x01\\x58\\xe2\\x5c\\x92\\x41\\x50\\x35\\x39\\x93\\xc9\\x76\\x86\\xea\\x1c\\x99\\x46\\x43\\x42\\x1c\\xd1\\x90\\x38\\xaa\\x09\\x91\\xee\\x91\\x92\\x09\\x3c\\xb1\\xd8\\x84\\xf3\\xb5\\x02\\x4f\\x64\\x41\\xfb\\x45\\x70\\xd9\\xdd\\x73\\xec\\x1b\\x96\\x1d\\x32\\xe7\\x1a\\x62\\x90\\x22\\xbd\\xd2\\x69\\xae\\x1a\\x2d\\xe9\\xbd\\x7e\\xd8\\x93\\x39\\x7a\\xff\\xca\\xb3\\x67\\x3d\\xb5\\x19\\x4a\\x14\\x63\\xc8\\x49\\x4d\\x4a\\x08\\x53\\xcc\\xbb\\xe5\\xc5\\x39\\x0f\\xc1\\xa8\\xce\\x83\\x69\\x33\\x67\\x0f\\x3b\\x0a\\xc6\\x67\\xd5\\x28\\xd1\\x98\\x77\\x76\\xb5\\xb5\\xf3\\xd0\\xe9\\xf9\\xb3\\x7f\\x7e\\x78\\x6e\\x0c\\x9f\\x81\\x6e\\x8d\\xad\\x19\\x1c\\xcb\\x2b\\x5f\\xdf\\x9f\\x9b\\xa6\\x23\\x73\\xa0\\x11\\xb7\\xe1\\x71\\xdc\\xc7\\x7a\\xb2\\xfe\\x52\\x95\\x31\\x90\\xda\\x00\\xa8\\x3d\\x96\\x80\\x76\\x71\\xbd\\x61\\xd0\\xe9\\xa8\\x8e\\x8f\\x17\\xfa\\x12\\xd7\\xce\\x64\\x22\\xec\\xf7\\xca\\x4b\\xcd\\x01\\xa4\\x21\\xe8\\xb3\\x82\\x96\\x1c\\x35\\x4c\\xd7\\x7e\\xa1\\x75\\x64\\x2d\\x78\\x74\\xc3\\x99\\xa1\\x3b\\x16\\xe7\\x9f\\xd5\\x64\\x97\\x59\\xf1\\x89\\x6f\\x73\\x6c\\xe3\\xe8\\x9a\\x92\\x2d\\x17\\x56\\xf7\\x9c\\xbf\\x7b\\xfe\\x6b\\x47\\x16\\xca\\xf9\\x4c\\xf8\\x87\\xe8\\xce\\x43\\x6f\\xef\\x85\\x9f\\xf1\\xca\\xae\\x1d\\x83\\xc5\\xd1\\xcc\\x5a\\x00\\x41\\x11\\x96\\xd9\\xb7\\xe2\\x3a\\xb9\\xc9\\x09\\xc2\\x06\\x05\\x63\\x09\\x03\\x18\\x08\\xc6\\xa4\\x12\\xc4\\x30\\x36\\x6a\\xee\\x61\\x7b\\x39\\x48\\xb7\\x54\\x00\\x70\\x49\\xb7\\x01\\x8f\\xb5\\xd2\\x2c\\x23\\xaa\\x8e\\x04\\x49\\xc5\\xf1\\xa6\\xf5\\x9a\\x3e\\xf4\\xe2\\x79\\x96\\xaa\\xa3\\x07\\xd3\\x3d\\x28\\x24\\x56\\x17\\xa7\\x4e\\x4b\\x96\\x7f\\x27\\x4f\\x4a\\x53\\xc7\\xa5\\xc6\\x86\\x20\\x4f\\xfa\\x99\\x58\\x63\\x62\\xb4\\xae\\x66\\x55\\x67\\xeb\\x5a\\xa3\\x71\\xed\\x8c\\xce\\xd5\\x35\\xda\\xc2\\x34\\x36\\x6f\\x3d\\x7f\\x71\\x7b\\xc3\\x81\\x85\\x25\\xba\\xea\\xe5\\x6d\\xb0\\x94\\x7f\\xb1\\x6d\\x79\\xb5\\xce\\xb7\\xf0\\x40\\xe3\\x94\\x49\\x72\\xa4\\x6f\\x68\\x60\\x60\\xa8\\xef\\xc8\\x3b\\x2b\\xef\\x83\\x4c\\xaf\\x80\\x71\\xc7\\x6d\\x7a\\x8a\\xda\\x3b\\x0a\\x08\\xd3\\x87\\xd3\\x6e\\x65\\x20\\x1b\\x8f\\x00\\x43\\x91\\x0b\\x90\\x45\\x2c\\x44\\x63\\x53\\xec\\x83\\x08\\x89\\x6a\\x5e\\xae\\xdb\\x8e\\x1b\\xc6\\x11\\x25\\x53\\x22\\x9d\\x9c\\xb9\\x9e\\xe0\\x1a\\x73\\xb9\\xa6\\x9a\\x40\\xe4\\x58\\x79\\x80\\xc2\\x94\\x12\\x8e\\xe5\\xec\\x53\\xb9\\x95\\xfe\\xd5\\xc7\\x46\\x48\\x86\\x8e\\xcf\\x74\\x45\\x5d\\xde\\xa1\\x45\\xe4\\xa5\\x6b\\x60\\x6b\\x63\\xcb\\xe6\\x5e\\x87\\x36\\x3f\\x31\\xf0\\x40\\x32\\xf6\\x01\\xe7\\x79\\x13\\xec\\xda\\x18\\xd4\\x15\\x1b\\xbe\\x76\\xd1\\x23\\xab\\x8a\\xcb\\xd6\\x3e\\x34\\x0a\\xcd\\x90\\xff\\x73\\xe1\\xac\\x0a\\xd3\\x8e\\xad\\x1b\\x15\\xbd\\xdb\\x8f\\xcd\\x52\\x74\\xec\\x1e\\xc8\\xce\\x99\\x7d\\x70\\x26\\xff\\x0b\\x36\\x4c\\x0a\\xcd\\xae\\xfe\\xa6\\x02\\x39\\xcc\\xed\\x69\\x8a\\x31\\x15\\x58\\xc9\\xb8\\x01\\xc0\\xfe\\x8e\\x3b\\x05\\x4c\\xc4\\xa6\\xa3\\x91\\x21\\x08\\x8c\\x8a\\x68\\xda\\x40\\x06\\x8a\\x7c\\x54\\xb4\\x69\\x16\\x54\\x67\\x8a\\x8d\\x35\\x0a\\x5b\\x4e\\x11\\x33\\x09\\x84\\x90\\xd2\\x83\\xa6\\xf0\\xd2\\x2c\\x68\\xd4\\x6a\\x05\\x3e\\x75\\x16\\x68\\x8a\\xab\\x9a\\xec\\x29\\x05\\x1a\\x35\\x1b\\x1f\\xa9\\xf5\\xc8\\xf9\\x3f\\x9d\\xe1\\xff\\x22\\xcf\\xd5\\x46\\xc4\\xb3\\x6a\\x4d\\xbe\\xd6\\xde\\x58\\x59\\x94\\x78\\x1f\\x36\\xd3\\x9d\\x2e\\x1f\\x2c\\x4c\\x0c\\x8d\\x7c\\x91\\x61\\xb4\\x86\\xc0\\x70\\xe0\\x0b\\x14\\x87\\x6e\\x32\\x68\\x19\\xe6\\xc5\\xc8\\xd0\\x84\\xfc\\xc1\\x0a\\x1e\\x9f\\xfd\\x00\\x02\\x6a\\x3c\\x16\\xbf\\xa0\\x5c\\x39\\xb9\\x04\\xe7\\x19\\x0e\\xf1\\x73\\x6b\\x80\\x14\\x48\\x80\\x54\\x42\\x77\\x76\\x51\\xbc\\x91\\x74\\xbe\\x13\\x46\\x19\\x3c\\x08\\xb1\\x72\\xb5\\xc1\\x1c\\x1d\\x22\\x25\\xd9\\x7b\\x55\\xaa\\xcb\\xa7\\x92\\xdb\\x83\\x77\\x76\\x88\\x97\\x06\\x76\\x7f\\x4d\\x4c\\x40\\x97\\x73\\x22\\x13\\xd8\\x2f\\xd6\\x69\\xcd\\xda\\xaa\\x15\\x6d\\xed\\x1b\\x4c\\xc6\\x0d\\xed\\xed\\xcb\\xab\\xb4\\xe6\\x94\\x79\\xec\\x13\\xfc\\xbb\\x8c\\x25\\x95\\x4f\\xd5\\x5b\\x91\\x2c\\x26\\x59\\x1d\\x6f\\x4d\\x89\\xf9\\x36\\x26\\x05\\x93\\xa2\\x26\\xc7\\xc8\\x98\\x6d\\x73\\xce\\x6e\\xef\\xbf\\x67\\x55\\xd9\\xf0\\xac\\x59\\xc3\\x65\\xab\\xee\\xe9\\xdf\\x7e\\x76\\xce\\xd3\\x81\\xb1\\x15\\x67\\x97\\x2f\\x3f\\xbb\\x22\\xa7\\xb7\\xc2\\x42\\xe6\\xe0\\xdf\\xff\\x4e\\x66\\x60\\x5a\\x45\\xaf\\x60\\xbf\\xbd\\xf8\\x2f\\x76\\x2f\\x3e\\xab\\xe9\\xc0\\x9c\\xa7\\x11\\x64\\x21\\x0c\\x86\\x34\\x6a\\x01\\xe4\\x20\\x0d\\x3f\\x20\\xf6\\x0b\\x59\\x17\\x90\\xc9\\x54\\x02\\x30\\x42\\x02\\x11\\x4a\\xa6\\xc6\\x8e\\x2b\\x16\\x91\\x48\\xd4\\x13\\x00\\x8a\\x64\\x2a\\x5a\\x89\\xcd\\xd6\\x24\\x8f\\xcb\\x8e\\x0e\\x91\\x50\\x7c\\xa5\\x30\\x4e\\x93\\x01\\x67\\xc2\\xf0\\x05\\x49\\xe1\\x6b\\xf9\\xc8\\x58\\x4b\\xc2\\xa2\\xe3\\xeb\\xfc\\x8e\\xd1\\xbb\\xc7\\x51\\x41\\x8d\\x35\\x12\\xae\\x5c\\x1b\\x67\\x54\\x9c\\xe3\\x5f\\x60\\xcd\\xec\\x57\\xfc\\x10\\x42\\x79\\x4b\\x1e\\x5c\\xd4\\x7d\\xf3\\xe2\\xa2\\x67\\x8c\\x45\\x2d\\xf6\\x75\\xdb\\x19\\x18\\x58\\xc9\\x7e\\x75\\x4a\\xd0\\x51\\x17\\xe1\\xb1\\x5a\\x8d\\xe3\\x13\\x6d\\xe4\\x6c\\x4d\\x0e\\x3b\\x0c\\x22\\x1c\\x24\\x52\\x4e\\xc2\\xe1\\xc1\\x02\\x2c\\xe0\\xa4\\xec\\x64\\x16\\x94\\xa4\\x09\\x3a\\xd3\\x64\\x10\\x24\\x22\\xd1\\xcb\\x95\\x24\\x17\\x4a\\x88\\x04\\xeb\\x63\\xe2\\x6e\\x74\\x39\\xe5\\xbe\\x52\\x37\\x81\\x78\\x62\\x57\\x87\\xd4\\x6d\\x79\\x66\\xe9\\xaa\\x93\\x3b\\xaa\\x6b\\x76\\xbc\\xb8\\x6c\\xd5\\xf3\\x9b\\x6b\\x43\\xcf\\x4a\\x8d\\xa5\\xb3\\x2b\\xf0\\x41\\xda\\x80\\x42\\x02\\xdf\\x5d\\xbb\\x6b\\xd3\\x96\\x48\\x9c\\xf2\\xe6\\xe1\\xb5\\xa5\\xad\\xb7\\xbd\\xb7\\x13\\x66\\xec\\x7c\\xef\\xf6\\xb6\\x92\\xb5\\x4f\\x8c\\x57\\xcc\\xaf\\x32\\x78\\x46\\x6f\\xec\\x73\\x9e\\xca\\x7f\\xf5\\xb7\\xdb\\xf6\\x53\\x3d\\x81\\xc6\\x7c\\xdd\\x8a\\xc7\\x23\\x19\\xd7\\x25\\xcf\\xe7\\x01\\x20\\x04\\x4a\\x59\\x40\\x19\\xb0\\xb9\\x2e\\x42\\x7e\\xad\\xaa\\x95\\x50\\xd7\\x3f\\x59\\x22\\x6a\\x58\\x97\\x92\\x02\\x40\\x8a\\x2d\\xc5\\x9a\\xaa\\xc5\\x97\\x24\\xeb\\x8c\\x38\\xc2\\x25\\x54\\x12\\x3f\\x35\\xc2\\x85\\xa8\\x90\\xe4\\xaf\\xde\\x25\\x48\\x38\\x38\\x19\\xed\\x82\\x02\\x99\\x1d\\x3b\\xfb\\x1d\\x8e\\xfe\\x9d\\x1d\\xfc\\x85\\x3b\\x4d\\x78\\x83\\x4d\\x8a\\xd5\\xda\\x93\\x22\\x50\\x93\\x33\\x2d\\xd7\\x10\\x1d\\x63\\xcc\\x33\\xe3\\xb4\\x1c\\x9f\\x95\\xaf\\x7d\\x70\\x68\\xf6\\x83\\x6b\\xcb\\xd9\\xaf\\x02\\x4f\\x3e\\x1c\\x38\\xda\\x7c\\x32\\x77\\xc5\\xd3\\xeb\\x99\\xa8\\x40\\x5a\\xe0\\x33\\x7b\\xed\\xac\\x9c\\xec\\x81\\x1a\\x3b\\xad\\xfb\\x22\\x5c\\xf7\\x9d\\x94\\x37\\x44\\x4f\\x64\\x16\\x40\\x21\\x50\\xc6\\x22\\x19\\x09\\x60\\x61\\xa5\\x04\\x06\\x0a\\x21\\x54\\x11\\xe8\\x1c\\xd3\\x4b\\x7c\\x3e\\x6a\\xa6\\x4e\\xad\\x56\\xeb\\xd5\\xa9\\xa9\\x72\\x39\\xae\\x36\\x8e\\xb0\\x92\\x90\\x08\\x57\\xb9\\xf3\\xd2\\xe8\\x1c\\x02\\xaa\\x9c\\xac\\x32\\x9c\\xf1\\xda\\x7b\\xea\\xee\\xbd\\xb3\\x9c\\xce\\x59\\x7b\\xbb\\xbf\\x79\\xed\\x1f\\xff\\x80\\xf7\\x68\\xac\\x85\\xa6\\x18\\x45\\x5a\\x91\\x95\\x29\\x43\\x0b\\x02\\x6f\\xe2\\x5c\\x79\\x83\\x83\\xf7\\xae\\x2a\\x45\\x5b\\x02\\xeb\\x71\\xed\\x43\\xf8\\x48\\x4b\\x45\\x77\\x76\\x56\\x77\\x99\\x85\\xda\\xb0\\x08\\x56\\x9a\\xd8\\xd8\\x09\\x16\\x4c\\xe4\\x85\\xe0\\x60\\x50\\x39\\x57\\x51\\xd5\\x5d\\x4d\\xf1\\xd2\\x46\\x65\\x49\\xb4\\x54\\xa2\\xa1\\x33\\x36\\x7b\\x2a\\x67\\xa4\\x3e\\x38\\x55\\x8b\\xf9\\xb4\\x48\\x25\\x33\\xf7\\xd8\\x2a\\xff\\x59\\x8d\\x67\\x46\\xae\\xe9\\x1c\\xff\\x32\\x1b\\x8a\\x67\\xe8\\x4a\\x98\\x39\\xe7\\xb6\\x05\\xbc\\x1b\\xbe\\x59\\xd4\\xea\\x54\\x05\\x7a\\x26\\xe6\\xe6\\x76\\xfe\\x30\\x9b\\x23\\xe6\\xa2\\x01\\x2c\\xc3\\x52\\x24\\x03\\xee\\x11\\x08\\x99\\x6e\\xa1\\x47\\x44\\x0f\\x87\\x04\\x83\\xf9\\x29\\x18\\x5c\\xf0\\x4b\\x6c\\x3f\\x0b\\xdf\\x3a\\xc7\\x3f\\xf8\\x2f\\x1e\\x4f\\x8d\\xf3\\x72\\xf6\\xcc\\x0f\\x4d\\xfc\\x61\\x38\\x4a\\xfa\\xfc\\x3a\\xda\\x1e\\x1a\\x0b\\x45\\x3c\\x14\\x00\\x92\\x94\\x4e\\x90\\x23\\x7d\\x4e\\x5d\\x1d\\x2a\\x11\\x0d\\x24\\xb4\\x8a\\x84\\x42\\xa5\\xe2\\xce\\xc6\\x2d\\x23\\x7a\\xd7\\xd4\\x59\\xa2\\x9b\\xd2\\xcb\\x6c\\x5a\\xa0\\xe7\\x0f\\x6b\\x4f\\x6c\\x2d\\xc7\\xe6\\xb0\\xb5\\x7c\\x3e\\x73\\x13\\x7e\\x8b\\xad\\x60\\x5a\\x6d\\xe9\\x68\\x15\\x6e\\xe1\\xbe\\xe2\\xa5\\xf7\\x0c\\xcd\\xbe\\x7f\\xa5\\x1f\\xf7\\x6f\\x28\\x2f\\xb5\\x56\\xf5\\xe5\\x64\\x77\\x95\\x9a\\x69\\x3c\\x0a\\x7f\\x33\\xbb\\x85\\xd6\\x47\\x4d\\x62\\xd1\\x89\\x4d\\x1b\\x34\\xe3\\x21\\xa7\\x12\\x52\\x55\\x4b\\xb1\\x4a\\xd4\\x53\\xa2\\xa6\\x9e\\x12\\x15\\x8d\\x45\\x27\\xe3\\x4e\\x3d\\x30\\x0c\\xc9\\xd6\\xa4\\xc0\\xd5\\x22\\x7b\\x32\\x7e\\xcf\\xce\\xf9\\x43\\xe0\\x86\\x5f\\x19\\x0b\\xec\\xe5\\x59\\x49\\x12\\x03\\x7a\\x7c\\x65\\xe0\\xfe\\x10\\x9f\\x0b\\x8e\\xbf\\x4b\\xc9\\x63\\x6e\\x46\\x69\\x9a\\xfe\\xdb\\xff\\x71\\x27\\x6a\\x3d\\x2f\\x47\\xb7\\x9e\\xe1\\x7f\\x3e\\xc2\\xda\\x49\\x3f\\xcb\\x00\\x60\\x9f\\xa7\\xf9\\x79\\x1c\\xbe\\x0c\\x85\\x0c\\x01\\x0e\\xd6\\x48\\x21\\x87\\x20\\x4d\\xde\\x24\\x93\\x20\\x52\\x93\\x10\\x06\\xd1\\x4a\\x28\\x63\\x29\\x52\\x93\\x46\\xf8\\x11\\xf9\\x44\\xa7\\x1c\\xa3\\x53\\xe0\\xff\\xe9\\x54\\x54\\xe8\\x18\\xfc\\xbf\\xcc\\xf9\\xbe\\xf7\\x3e\\xfe\\x0c\\xff\\x3e\\x94\\x5d\\xeb\\x79\\xdf\\xb1\\x0f\\xca\\xfe\\xe7\\x07\\xfe\\x0c\\x1a\\x0d\\x1c\\xa6\\xbf\\x5f\\xa1\\x53\\x81\\x1d\\x68\\x35\\xfd\\xc5\\x0c\\xd3\\xc4\\x57\\x82\\xe5\\xd0\\x16\\x92\\x7f\\x95\\xf0\\x91\\xa4\\x5c\\x31\\xff\\xaa\\x0c\\x5e\\x96\\x80\\x35\\x69\\x22\\x01\\x6b\\x32\\x5b\\x07\\x41\\xbe\\xd7\\xe9\\xb0\\xa7\\xa7\\x99\\x54\\xb1\\xd1\\x51\\x61\\x21\\xa0\\x00\\x16\\x84\\x48\\xc8\\x79\\x46\\x18\\xa3\\xe9\\x89\\x58\\x55\\xaa\\xe9\\x80\\x34\\x12\\x06\\xee\\x42\\x63\\x55\\x73\\x4a\\x92\\x75\\x15\\xf3\\x6b\\x72\\x07\\x2a\\x2d\\x67\\x9b\\x77\\x3f\\x33\\xbc\\xea\\xd4\\xae\\x9a\\x94\\xfc\\x36\\xf7\\xea\\xcd\\xcd\\x07\\xdf\\x58\\x35\\xf0\\xc2\\x0d\\xbd\\xe7\\x2c\\xb5\\xa3\\xbe\\xea\\x25\\x0d\\x96\\xeb\\x0f\\xe0\\x0c\\x0b\\xba\\xbc\\x96\\x6c\\x7b\\x73\\xa1\\x41\\x9b\\xdb\\x98\\xd1\\x77\\xd3\\xdc\\x5c\\xd7\\xdc\\x5b\\x87\\xb3\\x7b\\x9b\\xfd\\x71\\xd6\\x87\\x36\\x92\\x44\\xac\\x8e\\x91\\x23\\x63\\x59\\x6d\\xc5\\x06\\x43\\x71\\x7b\\xf6\\xfa\\xa5\\x34\\x1e\\x51\\xc8\\x0b\\xe4\\x16\\xf3\\xf4\\x84\\xb0\\x48\\xa4\\xad\\x53\\x51\\xda\\x3a\\x75\\x90\\xc0\\x4d\\x42\\x08\\xb3\\xc8\\xb6\\x4d\\x50\\xea\\x4c\\xf9\\xb9\\x73\\xbc\\xf3\\xdc\\x39\\xe2\\x10\\x64\\xde\\xbd\\x60\\xc0\\x98\\x68\\x03\\xbd\\x97\\x0d\\xdf\\xab\\x88\\xc6\\x56\\xd0\\x75\\x0a\\xd9\\x2e\\xa2\\xbd\\xa9\\x26\\xe3\\xe7\\xd4\\xa0\\x4e\\xf0\\xc7\\x63\\x99\\x27\\x97\\x90\\x9b\\x92\\x85\\xc2\\x48\\x90\\x44\\x82\\x9b\\x4c\\xe7\\x11\\x5b\\x74\\x8e\\x3f\\x82\\x50\\x46\\xdf\\x75\\xb3\\x0b\\xd3\\xb2\\xb0\\xdb\\x08\\x32\\xe4\\x39\\x58\\x8c\\xfd\\xfc\\x29\\x9e\\xbf\\xaf\\xe1\\x24\\xe3\\x5a\\xfa\\xcc\\x76\\x46\\x4a\\x9e\\x17\\x87\\xcf\\x0e\\x24\\xbb\\x51\\x02\\x79\\x5e\\x5c\\x04\\x64\\x44\\x42\\x3c\\xa1\\x01\\x20\\xc8\\x87\\x97\\x0c\\xeb\\x54\\x66\\x63\\x0c\\x69\\xc4\\x54\\x3a\\xbc\\x64\\x66\\x82\\x0d\\x2f\\xb1\\x1d\\x96\\xc3\\x88\\xc0\\xb7\\x71\\xbe\\x9e\\xf5\\xed\\x55\\x8b\\x52\\x54\\x11\\x26\\x5b\\xba\\x22\\xb3\\xc2\\x99\\x1a\\x96\\xca\\x47\\x41\\x19\\x33\\xf2\\x25\\xe3\\x3e\\xdf\\x9c\\x3b\\xbb\\xde\\x1e\\x17\\xfa\\x1c\\x8b\\x29\\x36\\x70\\x76\\x9c\\xa4\\x2a\\xd6\\x2e\\xca\\x88\\xbb\\xd8\\xdf\\x4c\\xca\\x08\\xc8\\xb6\\x08\\x32\\x82\\x88\\x7b\\xae\\x1b\\x70\\x9c\\x9a\\x9b\\x2e\\x23\\x9c\\x8c\\x20\\x23\\x5e\\x3a\\x77\\x2c\\xf6\\x7f\\x2e\\xdc\\x2f\\xc8\\x88\\xf3\\x8a\\xc0\\xfb\\xb0\\x9f\\xe2\\xdd\\x01\\x60\\x2b\\xf0\\x3d\\xd5\\x44\\x42\\xa8\\x70\\xd3\\x18\\x81\\xaf\\x9c\\x21\\xf2\\x0f\\x0e\\x71\\x84\\x06\\x18\\x37\\x51\\xec\\x53\\x35\\xc0\\x9a\\xb1\\x7e\\xa2\\x4f\\xa7\\xa3\\xeb\\xd8\\x8a\\x73\\xde\\x0d\\x65\\xc3\\xf7\\x62\\x2a\\xee\\x78\\x47\\x9d\\xb3\\x60\\x4b\\x01\\xe9\\x56\\x54\\x14\\xa3\\xca\\x59\\x7c\\x7c\\x1d\\xfc\\x25\\xef\\x6a\\x1c\\x29\\x8c\\x8f\\x55\\xa0\\xe3\\x42\\x9b\\x86\\xf1\\xf3\\x97\\x92\\x36\\x11\\x7b\\xb0\\x84\\x63\\x18\\x08\\xc9\\x94\\x20\\x92\\x0b\\xb0\\xac\\x9a\\x6a\\xe4\\x61\\x20\\x8c\\x36\\x4b\\x2a\\x6c\\x5e\\xf4\\x3f\\xd2\\x38\\x38\\xe3\\xfe\\x4f\\xef\\xfb\\xf2\\xfc\\xd7\\x42\\x9b\\x04\\xd9\\xc7\\x89\\xf7\\xc5\\x7d\\xf5\\x21\\x8d\\xed\\x25\\x4c\\xd9\\x1c\\xe0\\x5a\\x64\\x52\\xe1\\xe6\\x2c\\x22\\xe6\\x96\\x6e\\xa2\\x8c\\x50\\xf2\\xf5\\x28\\x10\\x25\\x17\\x7e\\xe8\\xbe\\x2e\\xde\\x9f\\x76\\x9c\\xf8\\x8c\\x45\\xb1\\x7f\\xbd\\xb0\\x74\\xf2\\x31\\xe7\\xa3\\x03\\x1f\\xc2\\x7e\\x7c\\x77\\x04\\x9c\\xb8\\xa6\\x9b\\xae\\x20\\x63\\x45\\xcb\\xe3\\x8f\\xc9\\x58\\xc5\\x55\\x65\\xac\\x13\\x81\\x85\\xcb\\x9e\\x5c\\x53\\x5c\\xbc\\xe6\\xc9\\x65\\xfc\\xdd\\xfc\\x39\\xfc\\xd6\\xd7\\xe3\\xd5\\x10\\xc2\\x05\\x2c\\x56\\x9f\\x2a\\x1a\\xbf\\x73\\x70\\xe0\\xae\\x65\\x3e\\xf6\\xeb\\xc0\\x71\\x3e\\xc9\\x5c\\xd6\\x9d\\xed\\x68\\xf7\\x19\\xa9\\xed\\x77\\x1e\\xae\\xcf\\x28\\xe5\\x24\\x88\\x01\\x29\\xb4\\xed\\x40\\x0a\\x25\\x1c\\x90\\x0c\\xb1\\x90\\x8e\\x24\\xc7\\xc1\\xde\\xa0\\x7e\\xa0\\x50\\x28\\x52\\x14\\xc9\\x74\\x87\\xd5\\xca\\xf0\\x8c\\x81\\x53\\x6a\\xe3\\x84\\x97\\xed\\xad\\x3d\\x95\\x33\\xf7\\xcf\\xca\\xce\\x19\\xbe\\x61\\x90\\xff\\xcb\\x39\\x26\\xe2\\xdc\\xb9\\x0b\\x5f\\x17\\x59\\xf2\\x70\\x80\\x8c\\x21\\xcf\\xc2\\x0c\\x14\\x8e\\xdd\\x4e\\x6b\\x44\\x06\\x1b\\xaf\\xd3\\xaf\\xf9\\x78\\x4b\\x79\\x8f\\x50\\xab\\xc9\\x7d\\x28\\x12\\x68\\xa8\\x17\\x1f\\x10\\xd5\\x10\\x50\\x07\\x06\\x5d\\xb4\\xb0\\x57\\x90\\xf9\\x51\\x51\\x51\\x9a\\xa8\\x84\\x54\\x5c\\x1b\\x3a\\xbf\\xa6\\xd6\\x46\\x3e\\xa5\\x26\\x9b\\xdf\\x9e\\xdc\\x7d\\xce\\xbd\\x2d\\x6e\\x3d\\xcc\\xda\\xab\\x6c\\x3c\\x10\\x54\\xd2\\xbc\\x41\\xaf\\x01\\x3b\\xd1\\xfb\\xc4\\xf8\\x51\\xac\\xf7\\x41\\x00\\xa5\\x58\\xe4\\x22\\xfc\\x07\\x41\\xa2\\xf7\\x51\\x06\\xba\\x24\\x32\\xdb\\x69\\xca\\xcd\\x64\\x3a\\x3f\\xec\\xc0\\x6e\\x21\\x04\\x74\\x0a\\x41\\xef\\x93\\x04\\x4f\\x4a\\x78\\x97\\x17\\x45\\xad\\x7a\\x32\\x6b\\x88\\x88\\x90\\x82\\x5e\\x46\\x5f\\x3a\\x90\\xbf\\xe3\\x36\\xbe\\x15\\x3e\\x6c\\xae\\x99\\xeb\\x2f\\x99\\xed\\xd7\\x31\\xe7\\x2a\\x37\\x3f\\xbf\\x74\\xd9\\xc9\\xdd\\xf5\\x75\\x7b\\x5e\\x59\\xb5\\xf8\\x99\\x2d\\x95\\x08\\xfe\\x4f\\xc5\\x58\\xa3\\xf5\\xf5\\x53\\xbe\\x53\\xfe\\xfe\\xeb\\xe7\\xe4\\xd8\\x1a\\x97\\x54\\x8e\\xfc\\x6c\\x57\\x63\\xcb\\xcd\\x7f\\xdd\\xc9\\xbf\\xb4\\xf3\\xaf\\x87\\x9b\\xcb\\x37\\x3d\\xb3\\x94\\xec\\x9d\\xb3\\xb1\\x0c\\x5a\\x48\\x6d\\xfa\\x36\\x82\\xac\\x51\\x53\\xf3\\x31\\x8b\\x6b\\xce\\xc2\\x41\\xea\\x8b\\x25\\x3a\\x02\\x55\\xa0\\x04\\x11\\x98\\x4c\\xcc\\xc7\\xe6\\x89\\x12\\xf4\\x3b\\x89\\x44\\x6c\\x20\\x9e\\x8d\\xa4\\xa8\\xa8\\xdd\\xe2\\xa0\\x61\\x8b\\x99\\xb0\\xc5\\x2b\\x52\\xe9\\x7e\\x1b\\x8d\\x1b\\x81\\xe4\\x2e\\xaa\\x5f\\xc9\\x9d\\xae\\x68\\x9c\\x3f\\x34\\x46\\x3e\\x91\\xa7\\x6b\\xe2\\x14\\xcc\\x2e\\x7c\\xf1\\xf1\\x07\\x1e\\x1f\\xfc\\xf0\\xc3\\x41\\xfc\\xe7\\xc5\\x7f\\x44\\x6a\\x5d\\x26\\x5d\\x46\\x52\\x44\\x44\\x52\\x86\\xce\\xe4\\xd2\\x46\\xc2\\xf3\\xfc\\xf7\\xfc\\x77\\x10\\x2b\\xa9\\x0b\\x03\\x87\\xf1\\xa0\\x2c\\xbf\\x16\\x4a\\x61\\x08\\x26\\x20\\xfd\\x3e\\xa6\\x6d\\x55\\x6d\\x6a\\x6a\\xed\\xaa\\x36\\x5e\\xdf\\xbe\\x9a\\xbc\\x5a\\xdd\\x4e\\xda\\x18\\x06\\x00\\xab\\xa5\\x6b\\x36\\x8e\\x20\\x98\\xb9\\x2b\\xe6\\xe5\\xc2\\x7a\\x42\\x70\\x77\\x06\\x40\\x8d\\x3d\\xf7\\x64\\xfd\\xa6\\x11\\xd9\\xa0\\xb6\\x91\\x35\\x44\\x0e\\x4d\\x41\\x9e\\x0d\\x88\\xb5\\x70\\xbc\\x99\\xa4\\x4a\\x98\\x4c\\x9e\\xe7\\x3f\\xe0\\x2f\\xc2\\xea\\x4d\\x3b\\xaa\\x77\\x9d\\x5a\\x0d\\x5f\\x0b\\x24\\xef\\xdf\\xff\\xce\\x3b\\x07\\xf6\\xa1\\x86\\xc0\\x13\\xe8\\xa0\\xe7\\xf9\\xed\\xc3\\x77\\x2c\\xf0\\x60\\xe9\\x0f\\x97\\x6c\\x83\\x1f\\x6f\\x24\\x75\\x59\\x8d\\xfb\\xbb\\x4b\\xa2\\x00\\x56\\xe0\\x23\\xb9\\x70\\xd3\\x44\\xf4\\x17\\x5a\\x82\\xab\\x25\\x64\\xc4\\x15\\x73\\xae\\x11\\xc1\\x9f\\x6e\\x83\\xc0\\xe3\\xb2\\xf9\\xd2\\x7d\\xc9\\x49\\x18\\x64\\x6b\\x85\\x56\\x29\\xd9\\x8f\\xa7\\x72\\x53\\x14\\x32\\x39\\x31\\xf8\\x44\\x4d\\x41\\xd6\\x34\\x19\\xae\\x14\\x47\\x48\\x88\\x76\\xc7\\x09\\xe3\\x1c\\xba\\x69\\xfe\\x03\\x4b\\x0b\\xfc\\x1b\\x9f\\x5d\\x41\\xec\\x72\\x95\\xd7\\x3c\\xb9\\xc8\\xdd\\xea\\x4d\\x3e\\xe5\\x1a\\xdc\\xdd\\xea\\x5b\\xd8\\x51\\x10\\xe5\\x7f\\x30\\xbf\\x6c\\xb0\\x28\\x91\\x18\\xea\\xf0\\xdf\\xa4\\xa4\\xe2\\x41\\x86\\xaf\\xdb\\xf6\\xcc\\x3c\\xe5\\xf8\\xcb\\xfb\\x1a\\x5b\\x0e\\xbe\\xb6\\x5c\\xc9\\x78\\x5e\\x86\\x9a\\xd3\\x4b\\xd5\\x61\\x2a\\x5d\\x86\\xbe\\x77\\x79\\xb5\\x25\\x26\\xd2\\xd1\\xb4\\xa2\\xa5\\xa2\\xf9\\xa4\\xa3\\x75\\x71\\xa1\\xb2\\x6c\\x35\\x21\\xf3\\x5b\\x5d\\xa6\\x2c\\x5c\\xdc\\xea\\xa0\\xfe\\x22\\x1a\\x33\\x5f\\x44\\xf9\\x6b\\x35\\x40\\xff\\x23\\x79\\x4f\\xe3\\x26\\xf3\\x9e\\x52\\xe9\\x01\\x80\\x5e\\x97\\x8c\\xc3\\xbf\\x15\\x09\\xaa\\x58\\x7c\\xb1\\x5c\\x27\\x93\\xd0\\xfc\\x9a\\x97\\x7a\\xa9\\x21\\xfe\\x80\\x82\\x05\\x8d\\xce\\x6c\\xaa\\x73\\xdc\\x00\\x7f\\x36\\xf7\\x81\\x15\\xc5\\x33\\xbb\\x97\\x2c\\xc9\\x5b\\x74\\x64\\x0e\\xff\\x35\\x8c\\x18\\x9c\\xd9\\x3d\\x9b\\xff\\xfa\\xcd\\xb7\\x17\\xcc\\x7f\\x9d\\xcd\\x33\\xd4\\x8e\\xd7\\xd5\\xae\\xd4\\x26\\xec\\x68\\xaf\\x5f\\x56\\x6f\\x86\\x6f\\xf1\\x67\\x2b\\xfc\\xc5\\xd5\\x8f\\xac\\x2b\\xf7\\x05\\xf7\\xab\\x4c\\x36\\xef\\x52\\x5c\\x16\\xae\\x18\\xa9\\x12\\xc5\\x54\\x49\\x26\\x70\\x59\\x99\\x81\\xc1\\x33\\xcc\\x7e\\x66\\xd5\\x85\\x9d\\x41\\x6e\\x76\\x33\\x56\\xc2\\xb1\\x27\\x87\\xe8\\x9f\\x64\\x7e\\xb1\\xc4\\x42\\xd9\\x4c\\xa3\\x75\\x68\\xe3\\x24\\x32\\x8e\\x09\\x82\\x80\\xd4\\x0c\\x99\\x5d\\xb8\\xfe\\x94\\x18\\x00\\xff\\xa8\\x42\\xb0\\xbc\\xf6\\x04\\x15\\x50\\x46\\xd0\\x47\\x21\\x3e\\x9a\\xe3\\x29\\x77\\xc8\\x91\\x8f\\xc1\\xbf\\x61\\xe8\\x9f\\x37\\xc4\\xfe\\x4f\\xa0\\xf2\\xfd\\x58\\x18\\x08\\x31\\xa6\\xc1\\xc5\\xfc\\x3f\\x4f\\x48\\x9b\\xb6\\x3d\\x31\\x17\\x6e\\xb9\\xb0\\x8d\\x07\\xb0\\x84\\x7f\\x19\\x41\\xf8\\xdd\\x9d\\x7c\\x0f\\x7a\\x58\\xe4\\x51\\xc4\\xfe\\xf2\\x1f\\xd3\\x43\\xe3\\xfe\\x9b\\x1e\\x0a\\xa7\\xe8\\xa1\\x24\\xc3\\xad\\xfb\\x5d\\xf7\\x9d\\x7c\\x00\\xc2\\x7f\\x42\\x70\\x28\\xf3\\xdd\\xac\\x1b\\x20\\xf8\\x02\\x42\\xfe\\x3c\\x7c\\x9a\\xaf\\x25\\xbf\\x28\\x17\\x21\\xbe\\x1d\\x1e\\xa3\\xbf\\x30\\xf0\\x2a\\xdd\\x27\\x49\\xbe\\x95\\x56\\xb6\\x1e\\xe4\\x12\\x5d\\x54\\xf3\\xd3\\x74\\xd1\\x94\\x4b\\x75\\x51\\x0f\\xce\\x43\\x67\\x49\\xc3\\x54\\x44\\x31\\x91\\x11\\x21\\x52\\x90\\x0b\\x73\\x05\\x5d\\xd4\\x7d\\x05\\x55\\x54\\xf2\\x23\\x9a\\xe8\\xb2\\xe5\\xa3\\x09\\x38\\x93\\xad\\xb3\\xcb\\x6f\\xfa\\xaa\\x76\\xf3\\x23\\xb3\\xe6\\x3f\\xba\\xae\\x6c\\x76\\xcf\\xc8\\x82\\x9a\\x2d\\x4f\\xcf\\xef\\x79\\x7c\\x4f\\xfb\\x57\\x46\\x4c\\x93\\x47\\xa2\\x0d\\xd6\\x2e\\xff\\x08\\x6d\\xaa\\x29\\x4c\\x70\\xa6\\xc5\\x29\\x4d\\xce\\x94\\xba\\xd5\\xad\\x76\\x4b\\xe3\\x8a\\xfa\\xaa\\xd5\\x06\\xed\\xc6\\xde\\xfa\\xd5\\xad\\xe9\\x69\\x33\\xae\\xe9\\x4a\\xf1\\xa6\\x27\\x10\\x47\\x5e\\x53\\xc5\\x63\\x22\\xd6\\x2b\\x87\\xcd\\x9b\\xa6\\x7f\\xc6\\xfd\\x98\\xfe\\x79\\xe6\\x0c\\xef\\x3e\\x83\\x3d\\xad\\x98\\x81\\xf9\\x6f\\x01\\x2d\\xb6\\xe2\\x6a\\x01\\xf5\\x0b\\xe3\\x7b\\x3d\\x41\\xe2\\x2d\\x89\\x3e\\x18\\x4a\\xb3\\x1f\\x8a\\xd9\\xc6\\x58\\x48\\x66\\x23\\x27\\xdc\\x32\\x66\\x42\\x17\\x83\\x41\\x51\\x2a\\xc4\\x5d\\x9a\\x8e\\x9e\\x39\\x73\\x08\\x76\\xc0\\x34\\x7e\\x06\\x9e\\xdd\\x6f\\xc2\\x47\\xf9\\x16\\x36\\x8f\\x6f\\x80\\x4f\\x04\\xbe\\x0d\\xfc\\x96\\xf8\\x14\\x85\\xba\\x5e\\xa6\\xdf\\xc6\\xfd\\x37\\xfd\\x56\\x38\\xc9\\x7b\\x84\\x93\\x3c\\x9b\\x73\\x96\\x7f\\x34\\xad\\xef\\x96\\x71\\x17\\x34\\xba\\xcb\\xd2\\x22\\x49\\x23\\x98\\x55\\xfc\\xbf\\x6f\\xf9\\xec\\xb6\\x86\\x37\\x33\\xe7\\xdc\\x39\\x06\\xdf\\xa2\\x6d\\x59\\x87\\x9f\\x55\\x42\\xda\\x42\\x70\\x5b\\xb2\\x60\\x6e\\x3a\\xda\\x2f\\x0c\\x42\\xc1\\x8e\\xc1\\xed\\xe0\\x88\\xea\\x45\\x13\\x74\\x32\\x7a\\x86\\x3c\\x0c\\xf5\\x3f\\x03\\x6d\\x1f\\x3c\\x71\\xcf\\x13\\x1f\\xc0\\x0c\\x68\\x26\\xdc\\x48\\x68\\x6e\\xe0\\x26\\xb4\\x30\\x70\\x3d\\x9b\\x37\\xb5\\xbf\\xa7\\xe5\\x6a\\x25\\x1d\\x4e\\x5b\\x20\\x6a\\xaa\\x97\\xe5\\x6a\\xc5\\xf5\\xce\\xc5\\x51\\x91\\x6f\\x9c\\x85\\x3f\\xe3\\x6b\\x70\\xb7\\x14\\xc0\\x57\\xa6\\xde\\x6f\\x2a\\x56\\x6f\\xea\\xbd\\xe8\\xe0\\x4d\\x62\\xf5\\x72\\xce\\xf0\\x9e\\xb3\\xcc\\x03\\xe2\\xe2\\x17\\x78\\xb3\\x6f\\x62\\xf3\\x2e\\xcb\\x3f\\x28\\x0a\\x0e\\xf1\\xfa\\x89\\xfc\\x83\\x37\\xf1\\x3d\\x67\\xf9\\x7e\\xd6\\xcd\\xac\\xbd\\xb0\\x8d\\x59\\xfb\\xb2\\x20\\x27\\x3b\\xb0\\xcf\\x6c\\xb9\\x04\\x00\\x0d\\xc9\\x90\\x4e\\xfa\\x2b\\xc3\\x9e\\xaa\\x53\\x29\\x64\\x9c\\x8c\\xf4\\x9a\\x08\\xf3\\x4b\\x80\\x75\\x49\\x2a\\x24\\x51\\x51\\xf4\\x09\\xa1\\x97\\xc2\\x86\\xe2\\x29\\xd6\\x6d\\x23\\xc1\\x98\\x10\\xbb\\xb7\\x8e\\x9a\\x56\\x31\\xb8\\xa1\\xc3\\x33\\x72\\xd3\\xc0\\xb9\\xc1\\x9b\\xe6\\x7a\\x3c\\x73\\x6f\\x1a\\x3c\\x37\\x70\\xd3\\x88\\x87\\x71\\x2b\\xd3\\xfd\\x76\\xbb\\x3f\\x5d\\x19\\x78\\x32\\xd6\\x5a\\x62\\x4f\\x2f\\xb1\\x2a\\x91\\x79\\xf8\\xc9\\xfd\\x03\\xb1\\xf0\\x25\\xde\\xaf\\x18\\xd8\\xff\\xd4\\xb0\\x72\\xe4\\xa9\\xfd\\x03\\x0a\\x7e\\x1e\\xbc\\x49\\x31\\xb8\\xff\\xc9\\x61\\xa5\\x67\\xb4\\xb3\\x2c\\x36\\x50\\xab\\x28\\xeb\\x1a\\xf5\\xe6\\x8e\\x76\\x96\\xc6\\xa2\\x27\\x62\\xcb\\x3a\\x47\\x3c\\x40\\xc0\\x3a\\xf2\\x2f\\x13\\x79\\x73\\xd9\\xd9\\x21\\xee\\x27\\x9c\\x1d\\xf6\\x9e\\x85\\x0f\\x9d\\x39\\x88\\x15\\xe0\\xdf\\xb3\\x79\\xa4\\x33\\x04\\x71\\x26\\xe6\\xe3\\xad\\x14\\x63\\x61\\x94\\x04\\x09\\x71\\xc9\\xd9\\x41\\x58\\x0b\\xc2\\xd1\\x81\\x84\\xe5\\x44\\x93\\x49\\xa4\\xbb\\xd2\\xa1\\xc1\\xc9\\x56\\x9e\\xcd\\xdf\\xe8\\x5f\\xf0\\xd8\\xda\\xd2\\x33\\xc9\\x79\\x9d\\x79\\x65\\xeb\\x0a\\xce\\xc2\\xc5\\x11\\x91\\xd9\\x73\\x6e\\x9d\\x0b\\x6b\\xf9\\xa7\\xf3\\x67\\xe4\\xc4\\x45\\x46\\xa0\\x50\\x00\\xc1\\x5c\\xfc\\xcc\\x61\\x36\\x6f\\xea\\x79\\x21\\xee\\x27\\x9f\\x17\\x5a\\x8f\\x7c\\x72\\xe4\\x8b\\x0b\\x8c\\xd0\\x0e\\xf2\\x3b\\xc9\\xe1\\x3e\\x88\\xfb\\xe7\\x14\\x9b\\x37\\xed\\xbc\\x10\\xf7\\xff\\xed\\x79\\xa1\\x8e\\x3c\\x63\\x76\\xec\\x9b\\x17\\xd6\\x8b\\x8f\\x11\\xbb\\x0c\\xdf\\x1d\\xd1\\x7c\\x8d\\xbb\\xf0\\x2b\\xf1\\xbc\\x00\\x24\\x41\\x7e\\x1a\\x84\\xc4\\x19\\x19\\xd4\\x2a\\xd4\\x50\\x3c\\x2f\\x10\\xfd\\x9c\\xb6\\x65\\xea\\x69\\xc1\\xa5\\x9b\\xa2\\x13\\x23\\xdf\\x3d\\x23\\xb7\\xcf\\xf7\\x60\\xee\\x82\\x11\\x7e\\x01\\xff\\x19\\x92\\xdd\\x93\\x5d\\x6e\\x55\\x28\\xac\\xe5\\xd9\\xe8\\xc1\\xec\\xae\\xd5\\x55\\xd5\\x1b\\xfb\\xdd\\xcc\\xfa\\x17\\x03\\x4f\\xf0\\xbf\\xd5\\xd8\\x3c\\x89\\x09\\x6e\\x5b\\x22\\x60\\xc0\\x4a\\x12\\xdb\\xcd\\xe6\\x5d\\xe5\\xac\\x10\\xf7\\xff\\xfb\\x59\\x61\\xa0\\xb0\\x6f\\x6f\\x5f\\x66\\x26\\xfe\\x87\\xff\\xeb\\x67\\x0c\\x38\\x77\\x2e\\x00\\x0a\\x33\\xf2\\x74\\xe1\\xe1\\xba\\xbc\\x0c\\xf4\\x88\\xb3\\x7b\\x2d\\xad\\x10\\x11\\x49\\x58\\xa6\\x9e\\xe2\\x4f\\x90\\x3a\\x25\\x16\\x64\\xa5\\x04\\xf9\\x7b\\x06\\xd9\\xbc\\x2b\\x9d\\x15\\xe2\\x7e\\xe4\\xac\\xa0\\xbb\\xe4\\xac\\xa0\\x9b\\xa8\\xc9\\x56\\x98\\x3e\\x7a\\xf7\\x22\\xaf\\x77\\xd1\\xdd\\xa3\\x81\\x7f\\x9c\\x81\\xe9\\xae\\xea\\x0c\\xa5\\x32\\xa3\\xda\\x85\\x9e\\x71\\xf6\\x6e\\xac\\x23\\xb4\\xdf\\xb8\\x06\\x2f\\xf1\\xaf\\x27\\xe0\\x9d\\x22\\xd9\\x6b\\x4f\\xa4\\x73\\x61\\x05\\xde\\x13\\xab\\xd8\\x06\\x60\\x07\\x55\\xbe\\x72\\xfc\\x5e\\x0a\\xa0\\x74\\x0c\\xb0\\x12\\x4e\\xc2\\x72\\x63\\xc4\\xb6\\xcf\\x4a\\x25\\x83\\x32\\xd1\\x0f\\x9b\\x32\\xc1\\x69\\x90\\xcc\\xd4\\x41\\x60\\xc1\\xe9\\xf9\\xa7\\x24\\x92\\xb3\\x43\\x3b\\xdd\\x0d\\xe9\\x36\\x78\\x55\\xba\\x32\\x0f\\x45\\x9f\\xa2\\xd2\\xcc\\x76\\x9f\\xe9\\x23\\x9c\\xfc\\xba\\x77\\xf3\\xe9\\x4d\\x3e\\xdf\\xa6\\xd3\\x9b\\xe7\\x1c\\x5b\\x53\\xf6\\x11\\x76\\x2b\\xe6\\x54\\xcd\\x2e\\xd1\\x72\\xfc\\x21\\x38\\x5f\\x92\\xea\\x1b\\x62\\xf6\\x69\\x48\\x32\\xb9\\xdd\\xc3\\x05\\x1d\\x87\\x5e\\xc3\\xc9\\xe4\\x5e\\x3d\\xd4\\x5e\\x30\\xff\\x06\\x9a\\x4c\\xce\\xd1\\x3c\\xdf\\x7b\\xd4\\x33\\xa7\\xce\\x0e\\x10\\x68\\xc1\\x3a\\xec\\xf5\\x6c\\x03\\x45\\x8e\\xef\\x11\\xcf\\x0c\\x00\\x30\\x12\\x40\\xf9\\xb6\\x61\\x0f\\xd9\\xa7\\xe8\\x66\\x2e\\x40\\xec\\x93\\x91\\x88\\x16\\xd5\\x5f\\xa9\\x18\\x5e\\x5e\\x42\\x59\\x10\\x34\\xf2\\x9b\\x27\\x4a\\x71\\x5c\\x5c\\x2d\\x2d\\x0a\\xa6\\x97\\x14\\x48\\x89\\x48\\xf6\\x09\\x6c\\x3a\\x17\\xec\\x79\\xd8\\x02\\x73\\x49\\x3f\\x98\\x05\\x4b\\xee\\x74\\xee\\xb6\\xca\\xd9\\x9c\\x73\\xe6\\xb6\\xce\\xbe\\x7d\\x33\\x33\\x32\\x66\\xee\\xe9\\xeb\\xde\\x39\\x33\\x9b\\x1d\\xfa\\xf7\\xbf\\x61\\x6d\\x84\\xd6\\x6d\\xb5\\xb8\\x53\\x22\\x84\\xbf\\xda\\x70\\xb4\\x7c\\xf8\\x91\\x8d\\x95\\xcd\\xfb\\x4e\\x8e\\x55\\x8c\\x9d\\xdc\\xd7\\x84\\x59\\x3d\\xe7\\xf0\\x3e\\x3c\\xb4\\x2f\\x63\\x1f\\xb5\\xc7\\x83\\x7d\\xd4\\x15\\xa5\\x6b\\x66\\xe6\\xe6\\xce\\x5c\\x53\\x4a\\xe2\\xca\\x01\\x60\\x8b\\xe9\\x5a\\x4f\\x24\\x7a\\xa0\\x14\\x12\\xb2\\x67\\x71\\x8f\\xa2\\x83\\x29\\x99\\xba\\x51\\x01\\x10\\xaf\\x56\\xc5\\xe2\\xd2\\x91\\x54\\xa6\\xa8\\x83\\xd6\\x24\\xbd\\x78\\xd2\\x60\\x48\\xbd\\xf1\\x8a\\xc4\\x35\\x66\\x31\\xc6\\xe9\\x83\\xcf\\x7f\\x80\\x60\\xf6\\xfc\\xfc\\xf1\\xbb\\x47\\x5e\\x55\\x62\\xe3\\x24\\xb4\\xf3\\x1f\\x3a\\x6b\\xb3\\xd4\\x64\\xba\\xc3\\x03\\xfc\\x38\\xfc\\x99\\xf5\\xb6\\x39\\x35\\x1b\\x7b\\x73\\xf8\\xbb\\x93\\x3c\\xe9\\x1a\\x98\\x97\\x68\\xf7\\x52\\x19\\x74\\x11\\xe7\\xd8\\x62\\xf3\\x24\\x00\\x38\\x41\\x9d\\xaf\\x9a\\x38\\x5c\\x2c\\x90\\x63\\x55\\x90\\xe1\\x48\\x36\\x36\\xb6\\x26\\x04\\x4a\\x25\\xe4\\xc8\\x4a\\xb1\\xff\\x62\\x57\\xcb\\x64\\x5c\\x17\\xae\\xf2\\xa4\\x5f\\x45\\x87\\xea\\x9c\\xd9\\xe4\\x28\\x67\\x31\\xdb\\xf4\\x41\\x75\\x51\\x74\\xab\\x28\\x9d\\x97\\x85\\x0f\\xbb\\xa6\\x66\\x3a\\x22\\xa1\\xc4\\x4e\\xa5\\x13\\xad\\xf8\\x36\\x98\\x94\\x0c\\x66\\x75\\x5f\\xd3\\xa2\\xc7\\xda\\x6d\\x48\\x82\\x46\\x13\\x52\\xe0\\x83\\x62\\x92\\xb2\\x9f\\xfd\\xec\\xcc\\xb7\\xec\\x23\\xfc\\x77\\x42\\xa6\\xb2\\x5f\\x06\\xce\\x74\\xef\\xe9\\xcf\\x92\\x86\\xbe\\x40\\x98\\x95\\xfb\\xda\\x4b\\x26\\x13\\x97\\xb1\\x8f\\x1c\\x7b\\x50\\xc0\\x87\\xaf\\xc5\\x73\\xd1\\x35\\xb1\\xa6\\x58\\x4e\\xc2\\xb1\\x92\\x31\\xd2\\x18\\x29\\xe1\\x86\\x97\\x10\\xc1\\x23\\xa5\\x7d\\x2f\\x28\\x98\\x13\\xab\\x2b\\x19\\x5d\\x75\\x4d\\xfd\\x78\\x72\\x46\\x8a\\xde\\x4e\\x66\\xd0\\xe2\\x1f\\xcf\\xce\\xe8\\x9f\\x59\\xa8\\xe3\\xe0\\x10\\x7f\\x87\\x44\\x5b\\xd4\\x7b\\xf5\\x1c\\x8d\\x59\\xcd\\xa3\\xde\\x07\\x72\\x87\\xeb\\x33\\xc8\\x39\\x22\\x05\\x00\\xba\\x57\\x24\\x02\\x0b\\x18\\x13\\xa2\\xc7\\x74\\xd3\\x9d\\x31\\x71\\x97\\x3a\\x63\\x34\\x3e\\xdb\\x95\\xca\\x00\\xb1\\x08\\x5d\\x31\\x62\\x69\\x92\\xb8\\x34\\x29\\x09\\x80\\x24\\x4b\\x52\\x9a\\x36\\x19\\x3f\\x28\\xf1\\x47\\xbd\\x37\\x1e\\x4f\\xb6\\xfb\\x12\\xe7\\x0d\\x63\\x8a\\xed\\x3b\\x38\\x3b\\x07\\xfb\\x57\\xfb\\x2e\\x82\\xfd\\xa6\\xb6\\x1d\\x03\\x36\\xa8\\xa9\\xf4\\xa3\\x59\\xb1\\x56\\xc1\\x64\\x83\\x5d\\xe8\\xfc\\xd6\\x9c\\xde\\x4d\\x75\\x75\\xd7\\xf4\\xbb\\x27\\xf4\\x42\\xf8\\xcb\\x3f\\xc1\\xb7\\x02\\xaf\\xf2\\x2f\\x25\\x65\\x16\\xa4\\x24\\x7b\\xd2\\x13\\xc0\\x84\\xef\\xe6\\x66\\x8a\\x4f\\xd1\\x8b\\x51\\x3d\\x49\\x08\\x82\\x10\\x19\\x22\\xae\\x9b\\x21\\x72\\x1e\\x8c\\x9b\\xea\\xba\\xc1\\x6d\\xd5\\x4f\\x77\\xf0\\x4c\\x2b\\x85\\xa1\\xe2\\xff\\xcd\\xc7\\xa3\\x9b\\xee\\xe3\\xe9\\x7b\\xec\\xac\\x19\\x4f\\x37\\xec\\x98\\xda\\xd3\\xcd\\x7f\\xf6\\x18\\x56\\x15\\xef\\x34\\x1b\\x9c\\xda\\xc8\\x48\\xad\\xd3\\x80\\xee\\x84\\xb7\\xe2\\x66\\xcd\\xdc\\x48\\x9b\\x05\\xff\\xc6\\x13\\x9d\\x7d\\x6a\\x73\\x20\\x08\\x0d\\xe6\\xf7\\x4b\\x01\\x5e\\x9f\\x1b\\x41\\x06\\x92\\xb5\\x45\\x20\\x16\\x12\\x0e\\x02\\x28\\x01\\x13\\xee\\xbf\\x14\\x52\\x57\\xd4\\x35\\xe9\\xf3\\x91\\x13\\x1d\\xe6\\x32\\x3f\\xa5\\x7c\\xfa\\xfa\\xc1\\x11\\x03\\xfc\\x3f\\x2e\\xcf\\xea\\x77\\xdd\\x75\\x67\\xa0\\x86\\x7d\\x8a\\x3f\\x3b\\x3d\\xb7\\x1f\\xfb\\xd4\\xb1\\xbb\\xef\\x16\\x75\\xb4\\x5b\\x05\\x9d\\x99\\xec\\x7c\\x94\\xd6\\x89\\x72\\x9a\\x52\\x1d\\x0a\\x75\\x0b\\x35\\x99\\xae\\xdf\\x4c\\x38\\x82\\xe4\\x70\\x1d\\xfc\\xc5\\x19\\xfe\\xbe\\x33\\xfc\\xdd\\x6c\\x9e\\xa0\\xdd\\x10\\x3a\\x7d\\x41\\xff\\xed\\x22\\x7b\\x01\\xb6\\xad\\x18\\x04\\x74\\x89\\x90\\xb1\\x9d\\x65\\x10\\x52\\x4d\\xa4\\x7d\\x13\\x1d\\x9d\\x06\\x60\\xa0\\xb9\\xde\\x8c\\x74\\x9f\\x17\\x25\\xc6\\xa4\\xd6\\x46\\x9d\\x9b\\x53\\x5e\\xb0\\xd7\\x67\\xb5\\x2e\\x2b\\xab\\x5e\\x66\\xd0\\x8f\\x97\\x57\\xac\\x6c\\x77\\xfc\\xc3\\x65\\xb5\\x7b\\x3e\\x2f\\xc8\\x32\\x65\\x61\\x8b\\xe9\\x3d\\xdd\\x3b\\xba\\xed\\x7e\\xfc\\x63\\xc7\\x2f\\xd8\\x99\\xe7\\xef\\xe9\\x68\\x6a\\xea\\x98\\xfc\\x2b\\xe4\\xb2\\xc3\\x75\\xdb\\xcc\\xe6\\x4f\\xaf\\x5b\\xdc\\xff\\xff\\x75\\xdb\\x9c\\x31\\x63\\x49\\x69\\xcd\\x52\\xbd\\x7e\\xbc\\xb2\\x7c\\x59\\x5b\\xe6\\x47\\x0e\\x6b\\x96\\xe7\\x33\\x6f\\xb6\\x29\\x83\\xcd\\x0f\\x18\\x66\\xee\\x9d\\x99\\x51\\x8e\\x7f\\x32\\xf0\\x0b\\xf4\\x6e\\xc0\\xd0\\xd7\\xd1\\xd1\\x37\\xf9\\x17\\x88\\x6b\\xbd\\x5f\\x92\\x30\\xe1\\xb7\\xe4\\x58\\x6e\\x89\\x84\\x78\\xb6\\x05\\xa3\\x14\\xc4\\xb3\\x5c\\x0a\\x65\\x43\\x64\\xae\\xf4\\x0a\\x46\\x5e\\x71\\x4e\\xd3\\x49\\x4d\\xe6\\xf4\\xa5\\xbe\\x34\\x91\\xcb\\x69\\xaa\\xab\\xf5\\x63\\xfe\\x7f\\xce\\x8e\\xde\\x45\\xd4\\x94\\xbb\\x46\\x79\\xed\\xf1\\xe3\\x67\\xa1\\x11\\x7f\\x22\\xea\\x2a\\x6c\\x0e\\xbf\\xde\\xd9\\xb3\\xbe\\xb6\\x76\\xe3\\xcc\\x1c\\x36\\xe7\\x18\\x61\\xfc\\x08\\x28\\xf8\\x5f\\x93\\xc3\\x6d\\x62\\xae\\x4d\\x23\\xcc\\x9d\\x4e\\xcc\\xcd\\x74\\x3b\\xb6\\x0f\\x7a\\xc0\\x1b\\xc2\\x4e\\xef\\x00\\x88\\x01\\x0c\\x39\\xc6\\x07\\xfd\\xdb\\x2c\\x04\\x21\\x90\\x93\\x82\\xa0\\x87\\x3b\\x0c\\x06\\x5d\\xdc\\xb2\\x1e\\x42\\x53\\x92\\x2c\\xab\\xd3\\x08\\xa8\\x54\\xd7\\x8f\\x5c\\x18\\x16\\xa6\\x12\\x51\\x67\\x97\\x5f\\xec\\xf3\\xfe\\xf4\\xeb\\x42\\x43\\xd5\\xc2\\xc5\\x80\\x5c\\x4b\\xf4\\x83\\x18\\x0f\\xb6\\x16\\x38\\xb3\\x89\\x9d\\x95\\x64\\xfb\\x88\\x0e\\x27\\xcb\\xcc\\x39\\x09\\x5d\\x17\\x9d\\xeb\\x18\\x23\\xaa\\x14\\x75\\x26\\x91\\x4a\\x54\\xb0\\x53\\xc2\\xe2\\x35\\xf6\\x99\\xd7\\xce\\xae\\xdf\\x3a\\xe0\\xfa\\x23\\x8a\\xd6\\xb9\\xd2\\xec\\x58\\xe1\\xfc\\xfa\\xeb\\x70\\x6d\\x5e\\xa6\\xd9\\x99\\x12\\xcd\\xfd\\x89\\xf1\\xf4\\x6f\\xaa\\x9b\\x73\\xed\\x4c\\xfb\\x9a\\x4f\\x3e\\x61\\x9a\\x32\\xd6\\xbe\\x73\\x7b\\xb7\\x7b\\xfc\\xd1\\x95\\xde\\x3e\\xbf\\xb1\\x64\\xee\\x8e\\x8a\\xac\\x37\\xda\\xab\\x76\\xcc\\xf5\\x19\\x4a\\xba\\x5d\\x63\\x0f\\x8c\\xe7\\x76\\xde\\xf6\\xce\\xba\\xf6\\xc0\\x2a\\xbc\\x62\\x20\\x58\\x82\\xf5\\xc1\\x1b\\xd9\\x46\\x90\\x39\\xd9\\xb7\\x21\\xa1\\xd2\\xd0\\x10\\xe9\\x58\\x30\\x1c\\x74\\x2c\\x8c\\x58\\x59\\x01\\xc2\\x5b\\x33\\x6e\\x9b\\xa4\\x87\\x60\\x3d\\xe8\\xd1\\x52\\x30\\xcb\\x26\\x33\\xa2\\x5e\\xe5\\xfa\\x91\\x0b\\xc9\\x25\\xf8\\x6a\\xda\\x29\\x29\\x97\\x5e\\xec\\xf3\\xfe\\xf4\\xeb\\xa8\\x2e\\x00\\xa1\\xa8\\x90\\x92\\xbe\\xcd\\xcc\\xb0\\xa6\\x99\\x8c\\x84\\xcb\\x2a\\xd6\\x10\\x63\\x10\\xfa\\x56\\x4f\\x15\\x00\\xb1\\x0f\\xcd\\x41\\xfb\\x44\\x10\\x3b\\xac\\xc7\\xc0\\x13\\xb2\\x83\\x3a\\x99\\xa3\\x5f\\x40\\x8c\\x93\\x4f\\xc3\\xdd\\xfd\\x1e\\xf2\\xf4\\xac\\xf4\\xcf\\xdc\\xdb\\x97\\xcd\\x8e\\x7f\\xf6\\xd9\\x38\\x9b\\xdd\\xb7\\x77\\x66\\xd5\\x9a\\xce\\x6c\\x88\\xbf\\xf0\\x9a\\x73\\xb4\\x91\\xe8\\x0b\\xf8\\xba\\x63\\xa8\\xd1\\xd1\\xe4\\x6f\\xd8\\xd4\\xed\\xa8\\xb9\\xe6\\x91\\x21\\xde\\x8b\\x77\\x99\\xbc\\x59\\x8f\\x5c\\x53\\x9b\\xd5\\xbf\\xb7\\xa7\\x7e\\x00\\x66\\x37\\xce\\xca\\xc2\\x2d\\x88\\x03\\x80\\x7d\\x97\\xfa\\x7c\\x22\\x89\\xa4\\x8b\\x84\\x12\\xa2\\x7f\\x49\\x10\\x15\\xc0\\xb3\\xa8\\x2f\\x98\\x63\\x82\\xc6\\x07\\xfa\\x43\\x7c\\xed\\xa2\\xd5\\x8b\\x86\\x0c\\x12\\x6b\\x57\\xcf\\xaa\\x77\\x17\\xec\\xfe\\x1e\\x7e\\xfd\\x31\\xfc\\xf2\\x3f\\x81\\xaf\\x61\\xd5\\x3d\\x24\\x9f\\x3a\\xf9\\xa5\\x0e\\xa7\\x61\\x18\\xa0\\xeb\\xb7\\x09\\x3f\\xeb\\x76\\x2a\\x53\\xa3\\xc9\\xb3\\xa2\\xa6\\x3e\\x8b\\x2a\\x52\\x71\\x3f\\xe1\\x59\\x66\\x29\\x53\\x34\\xf2\\xca\\xc8\\xe8\\x37\\xf0\\xa9\\x8f\\xe0\\x33\\xdf\\xf0\\x65\\x30\\x6a\\x2c\\x2e\\x1e\\xc6\\xf1\\x9f\\x92\\x5f\\xaa\\xd8\\xbd\\x02\\xcd\\xdd\\xdd\\x00\\x81\\x3e\\xfc\\xbc\\x97\\xa8\\x6f\\x92\\x66\\x48\\x51\\x11\\x9d\\xad\\x86\\x90\\xe4\\x23\\x44\\xb4\\x9d\\x59\\x64\\x6a\\x60\\x07\\x33\\xc7\\x30\\xf4\\x99\\x97\\x90\\xbe\\x85\\x4d\\xda\\xf6\\xf4\\x8a\\xe0\\x88\\x28\\x68\\xfa\\x31\\x86\\xb9\\xce\\x71\\x67\\x76\\xdf\\x9f\\x17\\x5e\\xff\\xce\\x3b\\x2f\\xbf\\xf6\\x0a\\xf4\\xff\\x85\\xff\\xed\\xf3\\x9d\\xf0\\x15\\xbe\\x40\\xfc\\xc5\\x4e\\x97\\x5f\\x32\\x2e\\xdc\\xf0\\xb5\\xf0\\x1d\\x20\\xd6\\x83\\xda\\x90\\x54\\x24\\x5f\\xab\\x50\\x0f\\xe1\\x28\\xdb\\x25\\x4c\\x4f\\x5c\\x29\\x29\\xec\\xfa\\xff\\xbe\\x26\\xb7\\xe5\\x3c\\x58\\xd8\\xfc\\xe7\\xce\\x0d\\xef\\xbc\\xf3\\xdc\\xaf\\x68\\x4d\\xde\\x7e\\xa2\\x15\\x46\\xf3\\x67\\xc5\\x5f\\xbc\\xe5\\xee\\x43\\x4b\\x71\\x97\\xbc\\x0e\\x83\\x3c\\x4e\\x45\\x24\\x3f\\x1a\\xc5\\x11\\x19\\x88\\xdf\\x5f\\x42\\xf4\\x6c\\x04\\x01\\x1a\\xc2\\x33\\x56\\xda\\x85\\x45\\xe7\\xe4\\x78\\xc7\\xc8\\x31\\x80\\x06\\xc3\\x2b\\x84\\x7d\\x36\\x99\\x99\\x8a\\xab\\xa0\\x12\\x40\\x40\\x13\\x13\\x02\\x33\\x6c\\xf4\\x2c\\x9f\\xb1\\xb9\\x3b\\xeb\\x6c\\x8c\\x29\\xd7\\x94\\x71\\xb6\\x90\\x70\\x92\\x9e\\x75\\xf4\\xed\\x68\\xe7\\x9f\\x66\\x15\\xbc\\xe4\\x4e\\xfe\\x11\\x46\\xc5\\xda\\xbb\\x77\\x0f\\xf2\\x03\\xf0\\x48\\x4e\\x85\\x45\\x1e\\x78\\x18\\xb5\\xca\\x2d\\x15\\x39\\xe4\\xfd\\xd0\\x9e\\x6e\\x1b\\x83\\x6e\\x09\\x3c\\x0a\\x0f\\x08\\x75\\x6c\\xc1\\x75\\x9c\\x8b\\xfb\\x2b\\x15\\x18\\x49\\xb4\\xb7\\x16\\x42\\x09\\x31\\x10\\x92\\xdc\\x7a\\x54\\x41\\x95\\x50\\x35\\x9b\\x5a\\x03\\xe8\\xa1\\x80\\x44\\x0c\\xc6\\x18\\x55\\x74\\xb2\\x10\\x03\\x8f\\x5e\\x88\\xb7\\x92\\x8a\\xf5\\x24\\x1f\\x4c\\xd4\\xb3\\xa2\\x7c\\x41\\xad\\xf9\\x6c\\x54\\x72\\x46\\x8a\\x01\\x9d\\xc9\\x4c\\xc9\\x48\\x8e\\x3a\\x63\\x69\\x18\\xab\\xe2\\xbf\\x60\\xce\\xf2\\xb2\\x9b\\xf8\\xdf\\xa3\\x99\\xb2\\xec\\xde\\x1d\\xbd\\x1f\\x7f\\xec\\xad\\xb1\\xc7\\xb0\\x7c\\x1f\\xbc\\x3f\\xc6\\x5e\\xe3\\xfd\\xf8\\xe3\\xbe\\x5d\\xbd\\x0e\\x09\\x7c\\x97\\xb7\\x43\\x23\\xa9\\x63\\x31\\xae\\xe3\\x23\\xb8\\x1f\\xb5\\x40\\x0f\\x0a\\x7c\\xde\\x88\\xa0\\xe5\\x91\\x70\\x0b\\x42\\x06\\x0c\\x61\\x21\\x80\\xba\\x04\\x2f\\x5f\\x58\\x88\\x94\\x63\\x83\\x4e\\x12\\x7d\\x2a\\xbe\\x40\\xeb\\x88\\xd1\\xc7\\x52\\x25\\x86\\xac\\x7e\\x1d\\x93\\xe3\\x11\\x46\\x55\\xc7\\xe8\\x18\\x95\\x82\\xd1\\x33\\xc4\\x04\\x4b\\x3a\\xd7\\x4c\\xa0\\xa2\\x8c\\x42\\xa1\\x87\\x2b\\x59\\xc5\\xda\\x5f\\xfd\\x0a\\xce\\xfb\\x07\\x23\\xfd\\xdf\\x1f\\x10\\x7a\\x89\\x4d\\xf3\\xc4\\xbd\\x00\\xb5\\x6e\\x1b\\xfc\\x70\\xf8\\x2d\\xf8\\xe7\\x19\\x05\\x81\\x9b\\xb1\\x53\\x67\\x01\\x3a\\x14\\x98\\xab\\xe6\\xff\\xc8\\xa7\\xc1\\x3f\\x97\\x56\\xa3\\xc0\\x1d\\x68\\x16\\xaa\\x2e\\xe5\\xd3\\x98\\x47\\x89\\x45\\x0c\\xd1\\xb8\\xd5\\x63\\x42\\xbf\\x12\\xef\\x1b\\xa9\\x73\\x62\\x1c\\x19\\xfc\\x2b\\x55\\x3c\\xee\\x92\\x8a\\x1b\\x0d\\xf8\\xaa\\x54\\x45\\xac\\x42\\x79\\xb5\\x8a\\xab\\x94\\xb4\\xe6\\x66\\xbd\\x54\\x4f\\xab\\x2e\\x09\\x56\\x7d\\x33\\xa3\\xd8\\xf2\\xd6\\x5b\\xb0\\xe7\\x97\\xe8\\xbb\\xb7\\x16\\x2d\\x65\\x5e\\x64\\xd2\\xdc\\x21\\xa1\\xf0\\x05\\x56\\x95\\x63\\x61\\xde\\x1d\\x7a\\x0d\\x26\\xb5\\xe4\\xf1\\x1d\\x58\\x36\\x25\\xc3\\x8f\\xf8\\x78\\xf9\\x4d\\xfb\\xf9\\xbf\\xc3\\x24\\x7f\\x25\\x8c\\xe7\\x97\\xc0\\x3b\\x42\\x60\\xa5\\x9f\\xff\\x3b\\xba\\x16\\x86\\xd0\\x79\\xf1\\x28\\xef\\x63\\x6d\\xd2\\x65\\xa0\\x00\\x94\\x83\\x56\\x5f\\x73\\x29\\x5e\\x47\\x4a\\xc8\\xe1\\xea\\x9b\\x4d\\x88\\xa9\\xc4\\x2b\\x49\\x2a\\x59\\x02\\xa4\\x48\\xba\\x24\\x04\\x02\\x40\\x2d\\x39\\x22\\x8e\\x99\\x7a\\x7e\\x27\\xed\\x02\\xe5\\x65\\xfe\\x92\\xe2\\x22\\x8c\\xdb\\xc8\\x4a\\x49\\x8c\\x0c\\x17\\x30\\x1b\\xa1\\x53\\x31\\x1b\\x3a\\xd7\\x65\\x8e\\x13\\x31\\x1a\\x42\\x9a\\xc1\\x50\\x6a\\x89\\x49\\x53\\xb9\\x62\\x82\\xd6\\x44\\x51\\x39\\xdb\\x97\\x9c\\x52\\x3c\\xe8\\xe7\\x3f\\x86\\x89\\x0b\\x9f\\xd9\\x5a\\xbd\\x7e\\x6c\\xcb\\xae\\xaa\\x6b\\x9e\\x5c\\x90\\x53\\x59\\xa0\\xcd\\x74\\x29\\x5b\\x0a\\xe7\\x35\\x66\\x40\\x47\\xcf\\xa6\\x26\\x67\\x41\\xbf\\x3f\\xf5\\xe6\\xeb\\x0f\\x3c\\x20\\x12\\xa1\\x30\\xf5\\x29\\xde\\x86\\x4c\\x5b\\x8d\\x27\\xe5\\x74\\xf6\\xac\\xeb\\xfa\\xc7\\xee\\xb6\\x5b\\x1f\\xda\\x34\\x7c\\x64\\x91\\x37\\xcf\\x6e\\xca\\xb5\\x24\\x85\\xdc\\xa4\\xf0\\x75\\x2e\\xf2\\x57\\x8e\\x96\\xe9\\x52\\x8b\\x66\\x64\\xaf\\x59\\xfb\\x0a\\x73\\x67\\x90\\x39\\x45\\xe0\\x11\\xaf\\x64\\x13\\x24\\x21\\x20\\x0f\\x94\\x92\\x7e\\x29\\xf9\\xe9\\xfd\\x12\\x77\\x69\\xbf\\x94\\x62\\x6e\\xea\\xc2\\x02\\xaf\\x67\\xa2\\x5f\\xf2\\x60\\xde\\xff\\xb7\\xfd\\xe2\\xbe\\xbc\\x5b\\x6c\\x05\\x6d\\xee\\x78\\x8d\\xa7\\xd5\\x4b\\xba\\x65\\xf8\\xc1\\xb5\\x65\\x83\\x9d\\xf3\\x16\\xfb\\x57\\xde\\x3b\\xcb\\x51\\xe3\\x4b\\xb1\\x67\\xc7\\x36\\xbb\\x67\\x37\\x64\\xc1\\xcc\\xce\\x75\\xf5\\x99\\x0b\\x56\\x6d\\xdd\\x74\\xc3\\x53\\x62\\xa7\\xa0\\xc5\\x4a\\xec\\xba\\x24\\xac\\xf9\\xcf\\xa4\\xd5\\x2f\\xa9\\x6d\\x5c\\x69\\xd0\\xae\\x6e\\xab\\x5f\\x3d\\x23\\x3d\\xd8\\x29\\xd7\\xc6\\xfa\\xda\\xe7\\x17\\x97\\x0d\\xf9\\x52\\x5a\\x8a\\x6b\\xab\\x1f\\x64\\x62\\x84\\x2e\\x61\\x40\\x3b\\xe1\\xe7\\xc1\\x98\\x1e\\x35\\x30\\x00\\x07\\xd1\\x14\\xa5\\x90\\x95\\xc0\\x4b\\x02\\xaa\\x92\\x88\\x0a\\x24\\xba\\x5c\\x4d\\xc6\\xf8\\x38\\xbb\\xcd\\xe8\\x30\\x39\\xb4\\xc9\\x71\\x86\\x78\\x83\\xcd\\x20\\xc3\\x26\\x63\\x38\\x2d\\x62\\x5f\\xaa\\x13\\x63\\xf5\\x8d\\x3a\\x57\\x30\\x7a\\x9f\\x9d\\x7f\\x85\\x78\\xfd\\xc0\\x5b\\x93\\x71\\xfa\\x81\\xb7\\x90\\x73\\x32\\x7e\\x1f\\xad\\xb9\\x42\\xcc\\xfe\\xa3\\xe1\\x62\\xac\\xfe\\xcf\\x24\\x62\\xf8\\x3e\\xb1\\x71\\xf7\\x62\\x5d\\xbc\\x9a\\xc6\\x85\\x68\\x81\\x4d\\xd0\\x78\\x01\\x83\\x38\\x86\\xa6\\xde\\xa7\\x95\\x4f\\xa9\\x25\\x28\\x4f\\xd1\\xf1\\x99\\xaa\\x53\\xab\\xcc\\x26\\x9d\\x2d\\xd5\\x96\\xa8\\x51\\x69\\xd5\\x5a\\x0b\\x6d\\xc7\\xf4\\xd4\\xc5\\x90\\x5a\\xb9\\x92\\x19\\x05\\x3d\\x99\\x67\\x30\\xbd\\x97\\x27\\x2e\\x86\\xff\\xc9\\xeb\\xf6\\x99\\xa4\\x81\\x1f\\xa4\\xa6\\x92\\x9e\\xbc\\xfc\\x1e\\xfc\\x1a\\x49\\xa4\\x26\\x5f\\xf7\\x15\\x12\\x18\\xf3\\x87\\xd3\\xeb\\xe6\\x16\\x14\\xcc\\xad\\x4b\\x47\\x7f\\x4f\\xaf\\x1f\\xcd\\xcf\\x1f\\xad\\x4f\\x07\\x10\\x44\\x03\\xc0\\x9e\\xe3\\x4e\\x11\\x36\\xf7\\xa7\\x61\\x30\\xff\\x68\\x52\\x30\\xfb\\xb7\\x10\\x01\\x22\\xb8\\xbe\\xc5\\xd0\\x30\\x95\\x48\\xe0\\x38\\xf1\\x79\\xd7\\xcf\\xe4\\x0a\\x9d\\x59\\x40\\xf0\\x78\\x14\\x58\\x1b\\x52\\x4b\\x29\\x92\\x58\\x0f\\xb1\\xc3\\x23\\x51\\xf3\\x8f\\x84\\xc2\\xc6\\x21\\x9f\\x1d\\xc6\\x66\\xe6\\xab\\xf8\\x1b\\xcf\\xf0\\x11\\x30\\x14\\xee\\x59\\x36\\x8e\\xbe\\x6f\\x5e\\xdd\\x64\\x86\\x6f\\x17\\x97\\x9c\\xbf\\x5e\\xc4\\x9f\\x94\\xe2\\xba\\xcc\\xc7\\xfd\\x18\\x0b\\x82\\xc1\\x40\\xa1\\x84\\x5c\\x0e\\x8a\\xb1\\x42\\xf8\\x0d\\x23\\xbc\\xa1\\x5f\\x4f\\xad\\x63\\xca\\x25\\x75\\x8c\\x9b\\xa8\\x63\\xca\\x94\\x3a\\x1a\\x8d\\x62\\x1d\\xdd\\xee\\xa9\\x88\\x67\\x92\\xa9\\x54\\x1f\\x1b\\x7b\\x6d\\xc6\\xa1\\xd9\\x49\\x39\\xf1\\x6a\\x36\\x21\\x22\\x35\\x3f\\x82\\xff\\xe0\\xd7\\xfc\\xd2\\xff\\xc0\\x79\\x03\\x03\\xf0\\xd5\\xeb\\xf7\\xca\\xa2\\x5e\\x40\\x8c\\xcb\\x72\\x01\\x27\\xe1\\x26\\xe3\\x5d\\xce\\x37\\xb3\\x2f\\x53\\x5c\\x41\\x36\\xf0\\x13\\x09\\xad\\x86\\x52\\x94\\x05\\x81\\xd4\\x48\\x23\\xd5\\xa8\\x4d\\x82\\xce\\x5d\\x8e\\xc8\\xe7\\x49\\xd0\\x00\\x5d\\xc4\\xbd\\xb8\\x82\\x3a\\xa6\\xce\\xac\\x57\\x79\\x95\\x6a\\x32\\xf2\\x89\\x57\\x88\\x0d\\x84\\x6a\\x85\\x93\\x11\\xd4\\xcc\\x29\\xb9\\x41\\x19\\x27\\x17\\x44\\x95\\x07\\x8f\\x6a\\xe8\\x7a\\x4b\\xc3\\xd2\\x9a\\xf2\\x79\\x95\\x06\\x43\\xd5\\xdc\\xf2\\xea\\xa5\\x8d\\x16\\x18\\x2e\\xef\\x3f\\xfe\\x79\\x88\\x36\\xb7\\x25\\x2f\\x54\\xa3\\x89\\x93\\xb2\\x12\\x85\\x32\\x96\\x4b\\x32\\xe3\\xb8\\x0e\\xe5\\xe1\\xe3\\x7c\\x57\\x76\\x5e\\x92\\x39\\x2e\\x34\\x3d\\x2f\\xdf\\x01\\xdf\\x1b\\x7f\\x76\\x73\\x65\\xe5\\xe6\\x67\\xc7\\xe1\\xb7\\xe2\\x2b\\xfe\\x77\\x8f\\xa2\\xb2\\xf3\\xc9\\xa6\\x9e\\x26\\x37\\xc3\\x49\\xd0\\x61\\x84\\xa0\\x35\\xaf\\x30\\xa6\\x85\\x2d\\x29\\xdc\\x75\\xd8\\x5c\\x33\\xbf\\x3c\\xf0\\xec\\x9e\\xc3\\x87\\xf7\\x90\\x3e\\xc8\\x21\\x7d\\xc0\\x36\\xd0\\x3e\\xa8\\x02\\x8b\\x7d\\x91\\x6a\\x2c\\xbe\\xb2\\x20\\x94\\xe0\\x3e\\x80\\x62\\xf2\\x6b\\x1d\\x75\\x14\\x73\\x08\\x11\\xaf\\x89\\xd8\\x2d\\x97\\x74\\x83\\xc6\\x67\\xbc\\xb4\\x93\\x52\\xae\\x5c\\x8e\\x5a\\x43\\x27\\x7b\\x6c\\xfa\\x5a\\x31\\x5e\\xa5\\xc7\\xa6\\x1b\\x48\\x73\\x8c\\x4d\\x6b\\x3b\\x3a\\xd7\\x37\\x19\\x8d\\x4d\\xeb\\x3a\\x3a\\xd6\\x37\\x9a\\x98\\xf9\\xd1\\x03\\x57\\xef\\xb3\\xc0\\x6e\\x59\\x82\\x33\\xdd\\xe6\\x4c\\x90\\xc9\\x34\\x39\\x36\\x5b\\x76\\x82\\x6c\\xca\\xe2\\x12\\x5f\\x1c\\x7c\\x06\\xd5\\x5f\\xb1\\xdf\\x02\\x7f\\x6e\\xdc\\x3f\\xbf\\xb8\\x78\\xfe\\xfe\\x46\\x65\\xc3\\xfe\\x05\\xc5\\xc5\\x0b\\xf6\\x37\\x00\\xca\\xbb\\xdb\\x73\\x71\\x39\\x3b\\x26\\xc9\\xa0\\x3c\\x1d\\x84\\x2b\\xf0\\x21\\x81\\x89\\x27\\x03\\x40\\x8e\\x83\\xc3\\x00\\x48\\x18\\x09\\x18\\x05\\x0c\\x36\\xfd\\x0c\\x03\\xc4\\xb2\\x68\\x64\\x12\\x89\\x42\\xd0\\x9f\\xbd\\xd4\\x91\\x2c\\x52\\xc2\\xd8\\xaf\\x7c\\x15\\x5a\\x7a\\xe5\\x8b\\xe8\\x53\\xe0\\x12\\xa1\\x38\\x33\\x06\\x48\\xa0\\xa2\\x74\\xd1\\xd5\\x2f\\x20\\xb6\\x68\\xca\\x92\\x32\\x89\\x2d\\x75\\x2a\\xf0\\x2f\\xfc\\xaf\\x5c\\x29\\xe8\\x8d\\xd7\\x5e\\x83\\xf8\\xff\\xa3\\x3f\\x91\\x2c\\x85\\xdd\\x01\\x8f\\x7e\\x5f\\x09\\x9f\\x80\\x33\\x7e\\x1a\\x65\\x0a\\x8b\\xb9\\xc1\\x47\\xd9\\x5e\\xf6\\x0d\\xda\\x8f\\x84\\xab\\xf0\\xc3\\xda\\xe3\\xb1\\x42\\x3f\\xb2\\x2c\\xe9\\x11\\x29\\x23\\x25\\x3d\\x22\\x91\\x90\\x1e\\xe1\\x38\\x34\\x42\\xda\\x45\\xdc\\xf0\\x74\\xa2\\x71\\xbd\\xb8\\xad\\xc9\\x1c\\xe9\\x47\\xd2\\xfb\\xf6\\x2b\\x5f\\x85\\x96\\x5e\\xe5\\x22\\xb1\\xf3\\x59\\xb8\\x64\\xf2\\x1a\\x29\\x23\\x59\\xf4\\x23\\x17\\xd1\\xaa\\x89\\xe5\\x99\\xb1\\xff\\x7a\\x41\\x97\\xd0\\xfb\\x96\\x4b\\x7a\\x9f\\xc1\\xbf\\x3f\\x25\\x91\\x0b\\x3a\\xfd\\xfc\\xf3\\xe8\\xf9\\xe7\\x03\\x8f\\xfe\\xd7\\x94\\xf7\\x4c\\x32\\x3c\\xf6\\xc3\\x11\\xf8\\x22\\x44\\x3f\\x21\\xf5\\x3d\\x60\\x40\\x11\\xde\\xf3\\x4e\\x4b\\x7d\\x20\\x07\\xd4\\x80\\x76\\xcc\\xc9\\x3e\\x52\\x0c\\x23\\x42\\xdb\\x21\\x0b\\x22\\x29\\x23\\x44\\x09\\x0c\\x81\\xd5\\x20\\x22\\x34\\x24\\x34\\x22\\x64\\x32\\x08\\x3f\\x0c\\x84\\x46\\x84\\x85\\x0e\\x45\\xc2\\x70\\x10\\x02\\xc2\\x43\\x86\\x64\\x74\\x7f\\x14\\x10\\xa1\\x52\\x28\\x72\\x62\\xe0\\x1d\\xd2\\xe5\\x6a\\x6a\\x74\\xd5\\xb8\\xaa\\x2b\\xca\\x0a\\xf3\\x73\\xdd\\x4a\\xbd\\xc2\\x28\\x8f\\x37\\x58\\xa2\\xa3\\xc8\\x01\\x67\\x2a\\x8d\\xee\\x54\\x1a\\x58\\x92\\x6d\\x77\\x9a\\x2d\\x0b\\xcb\\x4b\\x85\\x52\\x60\\x1b\\x93\\xd0\\xf3\\x05\\xb5\\x41\\x3a\\x09\\x9d\\x8a\\xcb\\x49\\x3d\\xcc\\x8c\\xab\\xed\\xe0\\xfc\\x02\\xf7\\xc0\\x96\\xfa\\x8a\\x71\\x93\\x71\\x49\\x79\\xc3\\x96\\x7e\\x77\\xc1\\xbc\\x83\\xed\\x95\\x1d\\x25\\xae\\xcc\\xdc\\x2f\\x72\\x33\\x9d\\xa5\\x5d\\xe5\\x6f\\xa4\\xd6\\xae\\x99\\xd3\\x6a\\xcc\\xf4\\xee\\x58\\xbf\\xc8\\xd9\\x37\\x7b\\x71\\x39\\x9f\\xa1\\xd3\\xdf\\xa0\\x36\\x39\\xe2\\xb9\\xe3\\x39\\xc3\\x37\\xcf\\x09\\xf8\\x7b\\x77\\xf7\\x64\\x14\\x14\\x16\\x16\\x64\\xf4\\xec\\xee\\x45\\x2f\\xcd\\xb9\\x79\\x38\\xe7\\xd4\\xe8\\xa2\\x80\\xbf\\xbb\\xb5\\xa9\\x03\\xbe\\xc7\\xeb\\x3b\\x9a\\x5a\\xbb\\xd1\\x4b\\x0b\\xe7\\xc2\\xbf\\x6e\\x37\\xda\\x4d\\x59\\xee\\x18\\xe3\\xd8\\x5c\\x93\\xdd\\xc8\\xef\\xb4\\x56\\x9a\\xfa\\x87\\x93\\x0a\\xdc\\xf6\\x08\\xc1\\x5f\\xde\\x8d\\xfb\\x75\\x37\\xf7\\x3e\\xee\\xd7\\x3a\\xd0\\x09\\x9e\\xf4\\x29\\x8a\\x61\\x48\\x68\\xe7\\x94\\x7e\\x8d\\x80\\xd5\\xb5\\xc7\\xd3\\xf0\\xbc\\x2b\\x00\\x11\\x21\\x20\\x24\\x02\\x4c\\x74\\x2f\\xed\\x56\\x9c\\x60\\x9e\\x9c\\x0d\\xc2\\x7a\\xb0\\xfd\\x28\\xa9\\x76\\xb2\\x83\\x53\\x2e\\xed\\x60\\x8d\\x2f\\xef\\xf2\\xcb\\xc9\\xe8\\x84\\x88\\xa3\\x43\\x6e\\x73\\xd5\\x8b\\xbb\\x7c\\x09\\x2e\\x57\\x4b\\xb3\\xab\\xce\\x55\\xfb\\x7f\\xce\\x00\\xb1\\x97\\x0c\\x90\\xa9\\x7a\\xf3\\x60\\x6e\\x76\\xc7\\x52\\x5f\\xd5\\x92\\xd4\\xd4\\xf1\\xaa\\x92\\xa5\\x1d\\xd9\\xb9\\xb3\\xae\\xa9\\x29\\x2c\\xcd\\x4c\\x77\\xe6\\xfe\\xb5\\xc0\\x69\\x4b\\x2f\\x2d\\xf8\\xa5\\xbd\\x76\\xf5\\x50\\x8b\\x31\\x33\\x6f\\xe7\\x86\\xc5\\xa9\\xc5\\xc5\\xbe\\xca\\xc6\\x0c\\xbe\\x24\\x38\\x44\\x6c\\x43\\xd6\\xe0\\xf5\\xb3\\xf8\\x6b\\xba\\xb6\\x74\\xd8\\xaa\\x2a\\x2a\\xaa\\x6c\\x1d\\x5b\\xba\\xe0\\x46\\x9c\\xa3\\x37\\xeb\\xf1\\x81\\xe5\\xfc\\xbe\\xae\\xb6\\xb2\\x76\\x92\\x66\\xa6\\xbd\\xac\\xad\\x0b\\x2e\\x5d\\x3e\\x00\\x7f\\x31\\x39\\x44\\x34\\x99\\x07\\xbf\\xf5\\x92\\x41\\x42\\xa0\\x1f\\x8f\\xd1\\xcd\\x78\\xbf\\x92\\x82\\x74\\xb0\\xec\\x69\\x39\\x64\\xa5\\xb0\\x46\\x10\\x3b\\x46\\x80\\xa0\\x04\\xa2\\x51\\x20\\x66\\x8c\\x0b\\x0b\\x95\\x31\\xd4\\x78\\x01\\xc9\\xda\\xe6\\x60\\x50\\x00\\x9b\\x84\\x72\\x92\\xb1\\x1f\\x2f\\x88\\x93\\x01\\xca\\x64\\xb2\\x74\\x59\\xba\\xc5\\x4c\\x0c\\xb8\\x26\\xca\\x72\\x4f\\x8d\\xe9\\x6a\\x1d\\xee\\x2b\\x1d\\xf7\\xdf\\x8d\\xb9\\x30\\x0c\\x7d\\x0a\\xf9\\xf7\\x9e\\xe6\\x31\\xac\\xeb\\x6a\\x26\\x67\\xa9\\x74\\x6c\\xe3\\xc6\\x4f\\x7e\\x82\\xd9\\x19\\x20\\xc1\\xee\\xcc\\x1d\\xa7\\x6d\\x5f\\x75\\x49\\xdb\\xcd\\xc1\\xb6\\x33\\x10\\xc2\\x20\\x8c\\x57\\x68\\x54\\xdc\\xe5\\xad\\x4f\\x13\\x5b\\x3f\\xbd\\xe8\\x4f\\x6b\\xbf\\x22\\xd8\\x7e\\xf8\\xdf\\xdb\\x7f\\x71\\xa2\\xf9\\x5b\\xae\\x66\\xd5\\xe6\\x8e\\xe3\\xe6\\xf3\\xe7\\x7f\\x82\\x69\\x1b\\x40\\xb0\\x93\\xdf\\xc5\\xf6\\x61\\xdd\\x2f\\x15\\xcc\\x10\\xf3\\xf5\\x51\\x55\\x27\\x49\\x8c\\x8d\\x9a\\x34\\xd9\\x8a\\x99\\x03\\x12\\x00\\x89\\xff\\x16\\xbf\\x17\\xd3\\xed\\x89\\xc5\\x18\\x12\\x87\\x9c\\x1a\\x6b\\xa3\\x48\\x0f\\x28\\x04\\x73\\x4e\\xc6\\x7e\\x9b\\x26\\xd1\\xa3\\x4e\\xa6\\xee\\xec\\xfc\\x47\\xd6\\xf8\\xab\\xb6\\x3c\\x3b\\x3e\\xfe\\xe4\\x3a\\xff\\xd9\\x95\\x6b\\x8b\\x06\\xfd\\x7a\\x5b\\xcb\\xca\\xba\\x43\\xfc\\x2e\\x38\\x37\\x7a\\xf8\\x8e\\xdf\\xac\\x82\\xb1\\xdb\\xfe\\x76\\x4f\\x6f\\xd9\\xc6\\x67\\x97\\x1f\\xbc\\xcd\\x37\\x7e\\xb8\\x83\\xff\\xbc\\xf3\\xf0\\x38\\xc1\\x00\\xfe\\x8c\\xdf\\xc9\\xd6\\xb1\\x0d\\xc0\\xf0\\xdf\\xea\\x9d\\xf2\\xd3\\xea\\x9d\\x42\\xeb\\x6d\\xb8\\xa4\\xde\\xd3\\x59\\x53\\x94\\x42\\xc5\\x6d\\x67\\xfa\\x0f\\x0e\\x65\\xfb\\xd6\\x3e\\xbd\\xa2\\xff\\xce\\x25\\xbe\\x8f\\x92\\xdd\\x75\\x19\\x65\\x7d\\x79\\x9a\\x84\\xfc\\xbe\\xf2\\xfd\\xfc\\x4e\\x38\\x5f\\x3e\\x78\\xe0\\xc9\\xa1\\x09\\xdf\\xe1\\x65\\x99\\xb0\\x21\\x58\\x08\\x00\\xf6\\xc3\\x14\\x09\\xd8\\x2e\\x92\\x76\\x9d\\xf0\\xde\\x87\\xc8\\xa4\\x04\\xd4\\x1a\\x25\\x44\\xa7\\x02\\xb8\\x44\\x00\\xcd\\xc4\\xc7\\x12\\x18\\x11\\xe4\\xa4\\x46\\x06\\x0b\\x25\\x0f\\x47\\x7f\\x9d\\x0c\\x7e\\x8f\\x7a\\xa0\\xae\\x0a\\x4f\\x85\\xc7\\x3e\\xe4\\x3f\\xa8\\x84\\xc6\\x37\\xf9\\xf7\\xab\\xa1\\xfe\\xb9\\x87\\x3f\\x86\\xc6\\x3a\\xfe\\x6f\\xf0\\xe4\\xc3\\x9b\\x8e\\xf1\\x27\\xe1\\xfe\\x87\\x36\\x3d\\x04\\x47\\x1f\\xda\\xfc\\x10\\xac\\xe0\\xe7\\x3f\\xb4\\x91\\xf0\\xc9\\x41\\xfe\\x22\\x7b\\x37\\xfc\\x1d\\x17\\x00\\x52\\xb0\\x57\\x98\\xea\\x71\\x94\\xf7\\x71\\x98\\x12\\x1a\\x8e\\xb0\\x30\\x18\\x81\\xa3\\x9a\\xa0\\xe8\\x53\\x4f\\x7c\\x0f\\x96\\x5e\\xf6\\xb5\\x8e\\x72\\xf4\\x23\\x88\\x96\\x4c\\xff\\xd6\\xa7\\x99\\xfc\\x02\\x90\\x2f\\xda\\x68\\x24\\x13\\x2e\\x03\\x99\\x86\\xae\\x2e\\x21\\xaa\\x1a\\x8b\\x1d\\x39\\xc1\\x96\\xa9\\x6d\\x8c\\xd2\\xec\\xd1\\x99\\xd5\\xca\\xc6\\x27\\x20\\xd2\\xc1\\xc7\\x39\\xed\\x06\\xf8\\xd5\\x02\\x28\\xcc\\x53\\x3e\\xc0\\xa9\\xe1\\xf7\\x12\\xa5\\x80\\x33\\x12\\xe3\\xb2\\x58\\x48\\xc9\\x56\\xc8\\x7e\\x4b\\x5c\\xc4\\x24\\xa3\\x4f\\x78\\x98\\x4c\\x02\\xd4\\x50\\x2d\\xc1\\xe6\\x03\\x26\\x9b\\xd2\\x4e\\x4b\\xa5\\xfa\\x20\\x5f\\xa9\\x5e\\x6f\\x7e\\xc7\\xd9\\xd5\\x58\\x53\\x55\\x9d\\xb6\\x6c\\x1d\\x84\\x3b\\xf3\\x33\\x6d\\x03\\x4b\\x76\\xce\\xc8\\x84\\xdc\\xed\\x54\\x32\\xce\\x1d\\x33\\xc6\\xb8\\xb3\\xf0\\x3e\\xb6\\x9d\\xfa\\xe2\\xff\\xc1\\x29\\xc0\\xff\\x48\\x3a\\x01\\x17\\xcc\\x5d\\x07\\x58\\xca\\x51\\x33\\x57\\x0e\\x31\\xc6\\x95\\x31\\xab\\xa5\\x6a\\x69\\x02\\x7c\\x11\\xe6\\xb5\\x70\\xef\\xaf\\x41\\x5b\\x96\\xd6\\x93\\xb1\\x8d\\xe1\\x14\\x30\\x84\\x5e\\x23\\xf7\\x45\\x72\\xb8\\x92\\xc2\\x25\\x0a\\x72\\x89\\xc2\\xec\\x31\\x7b\\x94\\x43\\xcd\\x79\\xf0\\x25\\x4e\\x51\\xbf\\x74\\x0b\\x5a\\x43\\xda\\x26\\xbb\\xf0\\x24\\xff\\x0a\\xdb\\xc0\\x3d\\x46\\x71\\xdd\\x25\\xa0\\x03\\xcf\\x8f\\x2d\\xe0\\x66\\xf0\\x18\\x2c\\xac\\x3d\\x9e\\x82\\xbb\\x77\\x58\\x4b\\x62\\x5e\\x59\\x04\\xd9\\x31\\x23\\xb6\\x38\\x4a\\x39\\x4e\\x22\\x93\\x70\\xb2\\x31\\x93\\x26\\x3e\\x35\\x8c\\x0b\\x09\\x0d\\x0f\\x0d\\x09\\x1f\\x33\\x28\\x10\\x46\\x2f\\x2e\\x8d\\x85\\xac\\x0a\\x12\\xbf\\xfa\\x50\\x1c\\x94\\x25\\x40\\x3c\\xab\\x42\\x87\\x12\\x61\\x78\\x32\\x8c\\x8c\\x08\\x8f\\x1c\\x02\\xd1\\x00\\xcf\\xb6\\x98\\x09\\xd6\\x20\\x55\\xad\\x39\\x25\\x49\\x1f\\xc5\\x45\\x44\\xa8\\x23\\xf0\\x70\\xcd\\xfd\\x29\\x0f\\x0a\\x5e\\x11\\x19\\x1d\\x19\\x11\\xfd\\xff\\xe3\\x53\\x49\\xd4\\xe7\\xc0\\x2d\\xb7\\x6c\\xdd\\xba\\x68\\x51\\x67\\xa7\\xdf\\x9f\\x9e\\xae\\x52\\x01\\x70\\xcb\\x63\\xb7\\x3c\\xf6\\xd0\\x83\\xf7\\xdd\\x7b\\xe4\\x8e\\xad\\x37\\x6f\\xbd\\xf9\\x86\\xeb\\x0f\\xec\\xdf\\xbd\\x73\\xd1\\x96\\x45\\x5b\\x36\\xae\\x5f\\xbd\\x6a\\xd9\\x92\\xce\\x85\\x9d\\x0b\\xe7\\x8e\\x0c\\xcd\\xea\\xeb\\xf5\\x77\\xf8\\x3b\\x66\\x34\\xd7\\xd7\\x55\\x55\\xa4\\x97\\xa4\\x97\\x14\\xe6\\x7b\\x70\\x96\\x0e\\x95\\x4d\\x65\\x33\\x1b\\x75\\xda\\xc4\\x84\\x20\\x61\\x6f\\x1a\\x99\\x4e\\xd3\\x56\\x2f\\x9c\\xf6\\x89\\xe2\\xea\\x65\\x7e\\xe2\\x27\\x3f\\xfd\\xce\\x03\\x49\\xee\\x86\\x2c\\x4c\\x24\\x97\\x34\\x16\\xa6\\x36\\x69\\x34\\x46\\x75\\x28\\x7c\\x3f\\xc9\\x83\\x3f\\x6a\\xf4\\x24\\x8d\\x87\\xc6\\x99\\x34\\x09\\xf8\\xa3\\x6a\\xfa\\x09\\x29\\x14\\xfc\\x24\\x8c\\x7f\\x73\\xda\\x47\\x81\\xa6\\xa9\\xb7\\x12\\x3e\\x6a\\xc0\\xa5\\x1c\\x97\\xdc\\x9d\\x7f\\x7f\\xda\\x85\\xae\\x69\\xcf\\x63\\xbf\\xb6\\x94\\x67\\x27\\x92\\xa4\\xd1\\xb1\\x86\\x44\\xb9\\x3c\\xd1\\x10\\xcb\\x7f\\x31\\xed\\x93\\x90\\xcb\\x3f\\x09\\x7c\\x3f\\xad\\xcc\\xc7\\x97\\x7f\\xc2\\x25\\xfc\\xff\\x72\\x1f\\xb2\\x1e\\x02\\xe1\\xfc\\x10\\x5b\\x8b\\x63\\x35\\x58\\x10\\x02\\x22\\x49\\x16\\x4c\\x90\\x04\\x52\\x81\\x00\\x16\\x40\\xe9\\xbf\\x19\\xc7\\xbf\\xa4\\xe8\\xb4\\x2a\\x86\\x41\\xe6\\xd4\\xa4\\x38\\x35\\x16\\x9c\\x51\\x78\\x7e\\x85\\x46\\x40\\xc6\\x64\\x4c\\xd4\\xb0\\x80\\x1e\\xd3\\x33\\x88\\xb8\\xe2\\x60\\x90\\x78\\x91\\xc4\\x6b\\x42\\x38\\x29\\xfd\\x95\\x00\\xe1\\xef\\x20\\x62\\x06\\xa7\\x7e\\x8e\\xdd\\x63\\x1c\\x49\\x38\\x1d\\xc2\\x61\\x21\\x8c\\x9f\\xca\\xc6\\x48\\xf0\\x6a\\xe5\\xd4\\x58\\xe2\\x32\\x66\\x2c\\x6c\\xa1\\x87\\x53\\x1a\\xb1\\xc4\\x75\\x71\\xd0\\x63\\xc4\\x37\\x97\\x72\\x66\\x23\\x63\\x66\\x3c\\x0a\\xa8\\x56\\x48\\x19\\x18\\x19\\xb6\\x66\\xa0\\x22\\x2f\\x1c\\xff\\x83\\x92\\x23\\x60\\x3d\\x7f\\xff\\xf9\\xe5\\x11\\xfc\\x93\\xb0\\x9b\\xb9\\x15\\xc1\\x92\\x32\\xfe\\xaf\\x17\\xbe\\x41\\xfc\\x89\\x72\\x68\\xb2\\xc9\\x0f\\x95\\xbc\\xc6\\xf4\\xcb\\x6f\\xf0\\xbf\\x5a\\x10\\xc9\\x3f\\x02\\x07\\xd9\\xbb\\x23\\x61\\x0b\\x7f\\x84\\x97\\x87\\xaf\\x9b\\x55\\x99\\x4f\\xfe\\x81\\x8f\\x46\\xdf\\x5c\\xf6\\xc6\\x85\\xfd\\xf2\\x9b\\xcb\\xdf\\x40\\x1f\\x23\\x58\\x51\\xce\\xbf\\x73\\xe1\\xef\\x88\\xff\\x79\\x25\\xb4\\x09\\xfa\\xf4\\x51\\x00\\xd8\\x6d\\x84\\x0f\\x93\\xe0\\xf5\\x48\\xb4\\x39\\x83\\x10\\xc3\\x42\\x08\\x28\\x01\\x39\\x07\\x09\\x03\\xc0\\x44\\x50\\x82\\x18\\xb4\\xc5\\xb2\\x29\\x49\\x4a\\x05\\x1b\\xc3\\xca\\x75\\x4a\\x09\\xd9\\x4e\\xa4\\xd0\\x43\\x01\\x4c\\x22\\xc7\\xce\\x44\\xce\\x79\\x3d\\x5b\\xb7\\x83\\x5f\\xbc\\x83\\x7f\\xf7\\x2c\\xfc\\x64\\xe1\\x73\\xdb\\x6b\\x6b\\xb7\\x3f\\xb7\\xf0\\xbb\\xef\\x0a\\x07\\x48\\x7e\\xf2\\x81\\xc2\\xef\\xe0\\xf1\\x12\\xa4\\xf1\\xf3\\xb3\\x02\\x38\\xed\\x3e\\x2c\\x5e\\x7e\\x74\\xee\\xf0\\xbd\\xcb\\x8a\\xe0\\x29\\xa3\\xbf\\xd7\\xed\\x1d\\x28\\x37\\x41\\xa1\\x8e\\x34\\xaf\\x13\\xdb\\x40\\x73\\x04\\xd9\\xc0\\xa8\\x4f\\x29\\x87\\x2c\\x5e\\x03\\x0c\\x62\\x39\\x36\\x1c\\x02\\x8e\\x74\\x3d\\x5b\\x23\\xf2\\xe3\\xd0\\x04\\x1d\\x22\\xd6\\x50\\x34\\x2c\\x41\\x98\\x20\\xe4\\x76\\x9a\\x6a\\x2b\\x4e\\x99\\x56\\x42\\xcc\\xed\\x94\\x46\\x21\\xc4\\xb8\\x55\\xc6\\x29\\xf9\\x9d\\xd4\\x57\\xcb\\xef\\x54\\xba\\x94\\x5f\\xb1\\x04\\xde\\x98\\xbb\\xe0\\xf6\\xe1\\xde\\x7d\\xce\\x33\\xef\\x86\\xe6\\x1c\\xe8\\x1f\\xb9\\x73\\x41\\xee\\x99\\xe4\\xa2\\x01\\x7f\\xd3\\x68\\x72\\xf2\\xc8\\x0c\\xff\\x40\\x61\\x52\\x37\\xbc\\xbd\\x67\\x19\\xcd\\xf4\\x94\\xcb\\x03\\xee\\xaf\\x0b\\x8b\\x4a\\xc5\\x44\\x4f\\x65\\x5e\\x3e\\x31\\xb7\\x22\\x98\\xe8\\x09\\x82\\xfb\\x01\\x60\\x3b\\xa5\\x91\\x40\\x2a\\x64\\x7c\\x46\\x0c\\xd9\\xbb\\x85\\xf9\\x77\\x45\\x6c\\xb1\\xdc\\xc9\\x76\\x06\\x8a\\xcf\\xa1\\xd3\\x67\\x04\\x1e\\x51\\xd8\\x27\\xe8\\x62\\xf7\\x02\\xdc\\x2d\\xdc\\x32\\x10\\x32\\xed\\x3e\\x53\\x30\\xca\\x59\\xf4\\x3e\\x7a\\xa5\\x78\\xa7\\x9a\\x38\\x1c\\xe2\\x80\\x9e\\x39\\xc3\\xac\\x86\\x04\\xe7\\x0c\\x83\\x58\\xd6\\x23\\xfc\\x1b\\x34\\x4e\\x5c\\x43\\x73\\x9e\\x41\\xc0\\x72\\x34\\x81\\x20\\x40\\x0c\\xea\\x07\\x13\\xd1\\xcc\\x22\\xe6\\x17\\x87\\xdf\\xeb\\xc4\\x60\\xe6\\x69\\xc1\\xf7\\x7a\\x91\\xe1\\xf6\\xf8\\xde\\x0f\\x6e\\x9b\\x91\\xbf\\xee\\xe5\\xad\\xb0\\x79\\xb4\\x40\\x0d\\x9f\\x7c\\xe6\\x38\\xe5\\xbc\\xe5\\xdb\\xea\\x6f\\xf8\\xcb\\xde\\x35\\xbf\\xb9\\xb1\\xed\\xd9\\xc2\\xd1\\x1d\\x35\\x27\\x5e\\x0d\\x90\\x09\\x4a\\xda\\xc3\\x7f\\xc4\\x2e\\x20\\x5c\\x49\\xc4\\xe3\\x87\\xb1\\xbb\\x4c\\xe5\\x44\\x3e\\xb9\\x20\\x25\\x02\\x6e\\x97\\x00\\x16\\x4a\\x88\\x8f\\xc3\\x3b\\x4e\\x34\\x47\\x26\\xa7\\x4e\\x39\\x11\\xb2\\x2a\\x72\\x28\\x0b\\x55\\xc8\\x0e\\x0c\\x9e\\x5e\\xfe\\xca\\xfe\\x46\\x6b\\xcf\\xb5\\x23\\x2d\\x2b\\x47\\x6d\\xf5\\x0b\\xfd\\xa7\\x69\\x74\\xc7\\xa7\\xc5\\x6b\\x9f\\x5c\\xee\\xdd\\xbb\\x65\\x7e\\xfc\\xc3\\xe6\\x83\\x23\\xd8\\x7e\\x68\\xe4\\x3d\\x6c\\x1e\\xed\\x87\\x43\\xf8\\x49\\x5f\\xe1\\xea\\xc4\\x82\\x42\\x5f\\x1e\\xa4\\x1e\\x3d\\xc2\\xf5\\x08\\x21\\x92\\xc0\\xc1\\xd0\\x10\\xc4\\x71\\x34\\x78\\x93\\xba\\x20\\xb1\\x67\\x6f\\x02\\x58\\x1f\\x0b\\x62\\x45\\x4f\\x68\\x0c\\xf1\\x84\\x86\\x20\\x1d\\xee\\x74\\xbd\\x18\\x0f\\x45\\x40\\x72\\x90\\x7d\\x15\\x6b\\x58\\xa3\\xfc\\xef\\xf8\\x4f\\xd3\\xee\\xe9\\x38\\x77\\xae\\xe3\\x1e\\x1d\\xe4\\xb0\\x3b\\x6c\\xe8\\xc2\\x97\\x68\\xf9\\xe7\\x9f\\x07\\xf6\\xe0\\xd7\\x87\\x78\\x1e\\x2d\\x20\\xf5\\xd8\\x8f\\xeb\\x71\\x17\\xae\\x53\\x2c\\xc9\\x29\\x74\\x79\\x3d\\x80\\x14\\x20\\x20\\x45\\x42\\x7d\\xfe\\x4b\\x2d\\x98\\xcb\\x6a\\xa1\\x60\\xb7\\xf3\\xa7\\x61\\x27\\xff\\xdb\\x77\\x1d\\xb7\\xd5\\x9e\\x39\\x53\\x7b\\x9b\\xe5\\x0f\\xd8\\xfb\\x1a\\x08\\xfc\\x02\\x3e\\xfa\\xe4\\x93\\x42\\x50\\xc1\\x1b\\x6f\\xc0\\x27\\x48\\x1d\\x92\\x82\\xfc\\xb1\\x91\\x04\\x63\\x13\\x7e\\x69\\x64\\x15\\x81\\x1e\\x0b\\xe1\\x63\\x12\\x31\\x70\\x61\\x8a\\x27\\x5c\\xcc\\x02\\xae\\xa0\\xb1\\x0b\\x87\\x1b\\xcf\\xf2\\xaf\\xa0\\xf4\\xaa\\xb3\\x30\\x96\\xff\\x35\\xec\\xe2\\x3f\\x46\\x8b\\x03\\xd7\\xb1\\x9f\\xfc\\x82\\x38\\xfe\\x02\\x65\\x81\\x70\\xf2\\x2c\\x13\\x00\\xd8\\x9e\\x9a\\xf7\\xa3\\xcf\\x8a\\xfb\\x09\\xcf\\x7a\\x76\\xf6\\xd7\\xfc\\xab\\x28\\x63\\xe0\\x14\\xb4\\xf2\\xef\\xc0\\x1a\\xfe\\x0d\\xf8\\x00\\xdf\\xc9\\x8c\\xbd\\x49\\xdc\\xfc\\x81\\x8b\\x01\\x92\\xaf\\x89\\x48\\x04\\xf6\\x6e\\x92\\x9f\\x8a\\xc6\\x4a\\x00\\x40\\x34\\x35\\xf2\\x14\\xd8\\x25\\x30\\x0a\\x88\\xa1\\xf3\\x53\\x9e\\x22\\xa4\\xd7\\x09\\xc6\\x1c\\xc0\\x0a\\x98\\x8d\\xac\\xfc\\x89\\xcf\\xf9\\x5f\\x7f\\xf1\\x05\\x53\\x8c\\xc6\\x7f\\x71\\x3e\\x1e\\x2d\\x0d\\xec\\x13\\xed\\xf8\\x43\\xe4\\xfe\\x6c\\xde\\x55\\xee\\x1f\\xf7\\xdf\\xef\\xdf\\x0e\\x73\\x51\\x2c\\xff\\xc1\\xd7\\xfc\\x1b\\x5f\\x7f\\x8d\\x56\\xc3\\x93\\xbf\\xb8\\x70\\x00\\x3e\\xc1\\x37\\x88\\xb8\\xf3\\x26\\xfe\\x04\\x7b\\x0f\\x7e\\x58\\x12\\xf1\\x3a\\xe3\\x4f\\x68\\x60\\x99\\xc8\\xcb\\xcf\\x71\\x74\\x6e\\x0a\\xb4\\x0e\\x6a\\x96\\x3e\\x25\\x4e\\x1e\\x27\\x98\\xce\\xa6\\x72\\xa4\\x65\\x20\\x22\\xf5\\x68\\xf7\\xa1\\xcf\\xc6\\xef\\x5f\\xe4\\xca\\x9a\\x73\\xfb\\x02\\xe4\\x29\\x33\\x84\\xc7\\xda\\x6b\\xbd\\x9f\\xbf\\xfa\\x39\\xba\\x99\\x29\\x81\\xbd\\x77\\xbc\\xbd\\x6a\\xdd\\x6f\\x0f\\xb7\\xc1\\x13\\xb0\\x68\\x64\\x5b\\x65\\xf9\\xce\\x45\\x65\\x28\\xb0\\x8f\\xfd\\xfb\\xf9\\x24\\x61\\xcd\\xce\\xe2\\x3f\\x61\\x6f\\x60\\xf3\\x04\\x64\\x7a\\x58\\x28\\x42\\x95\\x62\\x1a\\x1c\\xc0\\x30\\xa2\\xff\\x5b\\x40\\xa1\\x25\\x25\\xd2\\x65\\x8b\\x1d\\x72\\xd1\\x78\\xbf\\xbc\\x7a\\x65\\xfe\\x77\\xf0\\xce\\xf1\\xa2\\xb4\\xe6\\x75\\xed\\xad\\x8e\\x12\\x73\\xb4\\x3a\\xa3\\x3c\\xf3\\xf3\\xe3\\x9f\\x23\\x9c\\x18\\x1a\\x55\\x6e\\x3c\\x3e\\xbf\\xe8\\xba\\xad\\x23\\x31\\x8f\\xc9\\xf3\\x6a\\x3b\\x33\\xbd\\x43\\xd5\\xe9\\x88\\xcf\\x63\\xc6\\x2f\\x1c\\x60\\xf3\\xa8\\x5d\\xe2\\x53\\x76\\x13\\x3e\\x9b\\xba\\x40\\x29\\x58\\x21\\x30\\xd4\\x86\\x79\\xb3\\x49\\x5a\\x22\\xca\\x52\\xa6\\x99\\x7c\\x27\\xa1\\x3e\\x14\\x52\\x20\\x5e\\x4a\\xd9\\xc2\\x89\\x11\\x3e\\x89\\x76\\x99\\x88\\x1c\\x23\\x80\\xc4\\xa9\\xdf\\x81\\x89\\xaf\\x04\\x8e\\x0f\\x08\\xc5\\x30\\x48\\x9c\\xd7\\xda\\x8b\\xad\\x3f\\xb4\\x87\\xb9\\x69\\x36\\x9f\\x89\\xe0\\x47\\x42\\x46\\x37\\x79\\xb4\\x95\\x53\\xdf\\x24\\xe5\\x57\\x26\\xd4\\xc6\\x41\\xfa\\xc3\\x4d\\xad\\x37\\xfa\\x9d\\x4b\\x8a\\x57\\x9e\\xda\\x5b\\x97\\x33\\xb0\\xbd\\x59\\x63\\x4b\\x8a\\x36\\x55\\xcd\\xf5\\xcb\\xe4\\xb2\\xa6\\xf6\\x8c\\x19\\xcb\\xab\\x6a\\xd6\\x74\\x64\\xf9\\x0b\\xb5\\xe5\\x26\\xbe\\xd5\\xe5\\xd4\\x1b\\xb3\\x6c\\x96\\xf4\\x38\\x6d\\x72\\x52\\xf2\\xe0\\x83\\x9f\\x6c\\x87\\x19\\xab\\x7e\\x7d\\xb8\\xe3\\x4d\\xcf\\xc0\\xd6\\x06\\xfe\\xb7\\x33\\xef\\x58\\x52\\x02\\x61\\xf7\\x99\\x03\\xb0\\x6e\\xf4\\xc9\\x2d\\xb5\\x75\\x3b\\x7e\\x3e\\xc6\\x3f\\xb1\\xe5\\xc3\\x0e\\xec\\xd2\\xfe\\xfb\\xe8\\xc3\\xbe\\xc2\\xbb\\x07\\x60\\xdf\\xc1\\xeb\\x6f\\xd8\\x45\\x6d\\x1a\\xf5\\xd8\\xa6\\xf1\\x38\\xde\\x7f\\x73\\x40\\x05\\x58\\x2d\\x60\\x35\\xc3\\x72\\x21\\xcb\\x64\\x33\\x48\\xe8\\xb7\\x48\\xfa\\x0e\\x4a\\x58\\xd2\\x75\\x94\\x8a\\x30\\xfa\\xd2\\xae\\x4b\\xf9\\x91\\xae\\x4b\\xf9\\x91\\xae\\x4b\\x8f\\xbf\\x62\\xd7\\xb9\\x68\\xd7\\x45\\x32\\xc1\\x30\\xc7\\x6c\\xdc\\x73\\x53\\x59\\x96\\x25\\x52\\xb1\\xe3\\xa6\\x70\\x93\\x3d\\x3e\\x70\\x5f\\x65\\xde\\xd6\\xda\\x15\\xa7\\xf6\\xd4\\xe5\\x0e\\xef\\xef\\xd0\\xe5\\x18\\x15\\x98\\xab\\xca\\x1f\\x1a\\x1b\\x5a\\x55\\x93\\xd1\\xbe\\xa6\\xb6\\x7e\\x7d\\x67\\x66\\x69\\x61\\x7d\\x27\\x1f\\x55\\x54\\x90\\xe5\\x8c\\x4a\\xb4\\x68\\x34\\x96\\xc4\\xc8\\x98\\x44\\x4d\\x62\\x72\\xe7\\x2d\\xbf\\x5f\\x53\\x33\\xfc\\xc8\\xa6\\xaa\\xd7\\x91\\xb5\\x6a\\x28\\xbf\\xae\\x69\\xd7\\x6c\\x2f\\xaa\\x7d\\x69\\xe1\\x86\\x9e\\x5b\\xc6\\x8b\\x2b\\x56\\xdf\\x3f\\xb0\\x6e\\xde\\x33\\x55\\x72\\x78\\x5d\\xdb\\x01\\x77\\xd6\\xce\\x96\\x8d\\xce\\xae\\x52\\x53\\x6a\\xc1\\x0c\\x07\\x5d\\x8b\\x89\\x38\\x66\\xfc\\x0f\\x24\\xfe\\x94\\xec\\x59\\xc4\\xa1\\xd0\\x22\\xd0\\xef\\xb3\\x13\\x92\\x44\\xda\\x0d\\xa4\\xf8\\xe4\\x47\\x17\\xe2\\xa4\\x0d\\xdb\\x85\\x0d\\x38\\x93\\xf1\\x32\\x50\\xf9\\x3d\\xfa\\xc5\\x87\\xb0\\xea\\xec\\x4d\\x31\\xef\\x06\\xb2\\xb0\\x68\\xfc\\xc5\\xf9\\x7f\\xb0\\x1f\\x9f\\x4f\\x0a\\xbc\\x0d\\xfb\\x85\\x35\\x6f\\xc1\\xb1\\x26\\x47\\xd9\\xbc\\x2b\\x3e\\x27\\xee\\xaa\\xcf\\x51\\x5c\\xf6\\x9c\\xff\\xfc\\x06\\xed\\x78\\x15\\x16\\x7c\\xbd\\x2f\\xf6\\x83\\x40\\x19\\xb3\\xe4\\x8d\\x37\\x02\\xed\\xcc\\x92\\x0b\\xfb\\x02\\xff\\x81\\x25\\xc1\\x38\\x8a\\x3c\\xaa\\x2b\\x6a\\xc0\\x12\\x5f\\x68\\x02\\xe4\\x20\\x1e\\x46\\x0e\\xd5\\x08\\x39\\x44\\x0c\\x00\\xb2\\x24\\x4e\\x9d\\x18\\xed\\x10\\x03\\x46\\x89\\x97\\x17\\x70\\xcc\\x6c\\xa9\\x40\\x80\\x21\\x7a\\x20\\x8d\\x97\\x16\\x43\\x63\\x57\\x2c\\xd7\\xe5\\x8b\\x62\\x59\\x56\\xc3\\x6a\\x30\\x40\\x36\\x86\\x54\\x36\\x81\\x1a\\xf6\\xaf\\x4c\\x10\\x80\\xee\\xbf\\xe7\\x1e\\x78\\xe8\\x72\\x92\\x00\\x68\\x42\\x7f\\x81\\x8f\\x5f\\x95\\x28\\x00\\x81\\x0d\\x04\\xb7\\xcb\\xe6\\xd1\\xf6\\xdc\\xe8\\x0b\\x8d\\xc7\\xed\\x91\\x4c\\x69\\x4f\\x2a\\xa9\\x28\\x07\\x47\\x2f\\x6b\\x0e\\x99\\xc9\\x71\\x62\\x6b\\x84\\x99\\xae\\x17\\x9b\\xf4\\x63\\x45\\x7d\\x86\\xe9\\x0d\\x9f\\x5e\\x0c\\x5b\\x31\\x42\\x09\\x28\\x38\\x28\\xf8\\x8d\\xa4\\xcd\\x57\\x0c\\x6f\\x42\\x4f\\xe1\\x36\\x1f\\x98\\x16\\xe2\\xf4\\x3c\\xea\\xbd\\xf0\\xf9\\x55\\xe2\\x9c\\x48\\x4e\\xc7\\x01\\x91\\x97\\x81\\x81\\x0c\\x54\\x51\\x9c\\xb2\\x68\\xfd\\xa0\\x07\\x78\\x8e\\x45\\xa4\\x1e\\x97\\xf1\\x32\\x38\\x27\\xb3\\x9b\\x32\\x7a\\x86\\xac\\x29\\x13\\xd6\\x7f\\x1f\\xfc\\xb7\\x77\\x65\\xfd\\xe8\\xd1\\x15\\x3e\\xe6\\x5b\\x46\\xe5\\xa8\\x73\\x97\\xaf\\x2d\\xc4\\x2a\\xca\\x6b\\xf2\\xd8\\xdc\\xa5\\xc7\\x57\\xf1\\xb9\\xf0\\x8d\\xca\\xa1\\xe2\\x24\\xa8\\x92\\x07\\x3a\\xa9\\x6d\\xf4\\xe2\\x7f\\x2e\\x7e\\xc6\\xee\\xe1\\x4e\\x03\\x0b\\x70\\x83\\x16\\x5f\\x63\\x44\\xb0\\xbf\\x0d\\x90\\x65\\x8c\\x10\\xb0\\x2c\\xd6\\x60\\x70\\x8f\\xb0\\x1c\\x33\\x28\\x06\\x7a\\x60\\xb1\\x4a\\xa6\\xaf\\xc8\\x6b\\x4d\\xa4\\x82\\xcd\\x0a\\x41\\x76\\x96\\xd5\\x6d\\x73\\x6b\\x93\\xe3\\xe3\\x14\\xf2\\xd0\\x10\\x60\\x81\\x16\\x82\\xdd\\xe7\\x88\\x6f\\x13\\x2b\\x98\\x1e\\xa7\\x44\\xa5\\x2e\\x62\\x44\\xa8\\x03\\xee\\x31\\x31\\xc5\\x32\\xd4\\x4d\\xc8\\x03\\x26\\x72\\xc3\\xe9\\xed\\xe5\\x70\\xd3\\xae\\x90\\x9f\\x41\\x9d\\x95\\xa9\\x5e\\xf7\\xe0\\xd0\\xaa\\xfb\\xe7\\x66\\xc2\\xc0\\x12\\x6d\\xe5\\x92\\x16\\x4b\\xb5\\xcf\\xad\\x72\\x28\\x7d\\x2d\\xc3\\xf8\\xe0\\x75\\x38\\xca\\x5a\\x53\\xe0\\x6a\\xf6\\x24\\xaa\\x67\\xde\\xfd\\xde\\xe6\\xc1\\xa4\\x5f\\x3d\\x58\\x37\\x4f\\xb3\\xe5\\xbd\\xbb\\xba\\xfa\\xee\\xff\\xfb\\x8e\\x93\\xf5\\xd8\\x6f\\xe9\\x8b\\x50\\xc4\\x85\\xbf\\x12\\x91\\x9c\\x20\\x67\\x16\\x36\\x16\\x2d\\xef\\xf5\\x14\\xcc\\x3b\\x24\\xb4\\x19\\x24\\x63\\x0c\\xc7\\x7e\\xb6\\x01\\xb7\\xd9\\x05\\xda\\x7c\\x2d\\x91\\x84\\xcb\\x01\\x32\\x92\\xc9\\x36\\x03\\xc8\\x49\\x70\\x3f\\x90\\x78\\x05\\x86\\x95\\x30\\x83\\x04\\xc2\\x2f\\xc4\\x00\\x4d\\x6b\\x76\\x56\\xa6\\xd5\\x65\\x73\\x69\\x93\\x13\\xe2\\x63\\x63\\xc2\\x42\\x2f\\x69\\x76\\x06\\xe3\\x71\\xaa\\xa6\\xb4\\x3a\\x99\\x11\\xdb\\xcc\\x10\\x7f\\x23\\x81\\x79\\xa0\\xef\\x47\\x1f\\x5a\\x57\\xc9\\x16\\x0f\\x94\\xe8\\xe0\\xc3\\x28\\x3d\\x33\\xaa\\x71\\xe9\\xa1\\xb6\\x05\\x47\\xe6\\xb9\\x61\\x60\\x2f\\xa7\\x2f\\x68\\xcb\\xcd\\xac\\x2b\\x76\\xaa\\x87\\x92\\x6a\\xfb\\xc6\\xba\\x2d\\x25\\x0e\\x9d\\x14\\xae\\x81\\x4a\\x7b\\x59\\x6c\\xdd\\x8e\\x17\\xc6\\xa3\\x7c\\x03\\xeb\\x6b\\xaa\\xe6\\xc4\\xf7\\xdf\\xb9\\xcc\\x57\\xbf\\xf3\\xd9\\xf9\\x9b\\x0b\\xe7\\x36\\xd8\\xa3\\xf0\\xda\\xbc\\x56\\xe7\\xb5\\xc4\\x31\\x37\\x5b\\xca\\x7b\\x9d\\x09\\x19\\x33\\x8a\\x04\\x2e\\x95\\x27\\xf8\\x57\\x29\\x6f\\x7f\\x22\\xd1\\x3f\\x64\\x50\\x42\\x13\\x7b\\xe2\\xf6\\x21\\xc9\\x10\\xe0\\x00\\xcb\\xb1\\xfd\\x0c\\x9c\\x3c\\x4c\\x9a\\xe4\\x09\\xa2\\x9a\\xa3\\x13\\x03\\x5a\\x93\\x99\\x4b\\x4f\\x0c\\xf0\\x9e\\x73\\xe7\\x36\\xc0\\x06\\xa8\\xe3\\xc7\\x66\\xdf\\xbe\\x28\\x2f\\x7f\\xbd\\x78\\x66\\x38\\x72\\xd7\\xdb\\x78\\xca\\x1d\\x41\\x03\\x81\\x6d\\x31\\x33\\xaf\\x3d\\xbd\\x7a\\xcd\\xaf\\x0f\\xb7\\x3d\\x57\\x34\\x42\\x4e\\x0d\\x82\\x5c\\xbc\\x9b\\xff\\x27\\xdb\\x27\\xc4\\x55\\xf8\\x4c\\x58\\xff\\x80\\x95\\xc1\\xb0\\xda\\x21\\x16\\x4e\\x9e\\x83\\x26\\x34\\x8f\\x18\\x0e\\xf7\\x28\\x7d\\xfc\\xe4\\x69\\xc1\\x3c\\x11\\x68\\x8b\\xbe\\x69\\xdc\\x3c\\x33\\x3b\\xad\\x63\\xe7\\x60\\xcb\\xfc\\x01\\x53\\xf9\\x40\\xc1\\x5b\\x67\\xce\\x2c\\x85\\x4e\\x68\\x46\\xb3\\x14\\x35\\x8b\\xae\\xef\\xcd\\xdd\\xbe\\x61\\x24\\xfe\\x61\\xe3\\xae\\x59\\xbe\\x01\\x5f\\x2a\\x2b\\x46\\xe0\\x0a\\xe7\\x27\\x92\\x73\\x93\\x9c\\x9f\\x88\\xbe\\x1e\\x09\\x19\\x2e\\x42\\x58\\x7b\\x00\\xb0\\xb8\\x4b\\x06\\xb1\\xec\\x23\\x3d\\x72\\x79\\xd4\\x0d\\x00\\xf8\\x02\\x8d\\x5c\\xe1\\xc6\\xde\\x4d\\x01\\x9d\\xae\\x93\\x5f\\x1e\\x6f\\x43\\x75\\x42\\x78\\x1d\\x7c\\xe0\\x1c\\xc9\\x03\\x4a\\x12\\x63\\x86\\x68\\x34\\x09\\x21\\x05\\x25\\x7c\\xe7\\x39\\xdc\\x37\\x1b\\xd1\\x35\\x13\\xa9\\x40\\x49\\xfa\\xaf\\xbe\\x36\\xf4\\x68\\xe0\\x20\\xc5\\x20\\xdf\\x81\\xeb\\x64\\x62\\xf3\\x7e\\xb4\\x4e\\x71\\x57\\xad\\x93\\xf9\\xbf\\xd6\\x69\\x1f\\x3c\\x76\\x26\\xab\\x7b\\x33\\xc9\\x4d\\x2a\\x86\\xfb\\xf0\\xed\\x67\\x84\\xf8\\xdb\\xf3\\xdb\\xc5\\x3a\\xd1\\xf8\\x1e\\xf8\\x2d\\x5f\\x43\\x75\\xb4\\x19\\x17\\x3f\\x67\\x87\\xa9\\xff\\x20\\x83\\xe4\\x24\\x4b\\x86\\x0c\\x48\\xba\\x72\\x4e\\xb2\\x24\\x31\\x27\\x19\\xf5\\xb9\\x19\\xf4\\x24\\xa4\\x47\\x9f\\x61\\xc8\\x88\\x57\\xd3\\x9c\\x64\\xa9\\x10\\xf3\\x4e\\x4c\\xcf\\x49\\x46\\x05\\xc0\\xf4\\xac\\x64\\xb9\\x3b\\x7f\\xb7\\xaf\\xaa\\xe5\\xda\\x93\\x8b\\x37\\x9e\\xb8\\xa6\\x04\\xfb\\xe8\\xeb\\x56\\x77\\xb8\\x7b\\xeb\\x0a\\xe3\\x1c\\x91\\x79\\x5d\\xab\\x46\\x30\\x93\\x91\\x09\\x03\\xa0\\x12\\x4b\\x46\\xb9\\x57\\x7b\\xef\\xfd\\x68\\xc7\\xf7\\x7b\\x3f\\x7d\\x60\\x26\\x6c\\x3f\\xf2\\xf7\\x7d\\x3f\\x6f\\x6a\\x3b\\x3c\\xe6\\x8f\\x54\\xc5\\x87\\x3f\\x1f\\x92\\x9c\\xa4\\xfc\\xe1\\x2b\\xff\\xd2\\x5b\\x3b\\x7b\\xca\\x71\\x7e\\x00\\xc2\\xad\\x43\\xf8\\x35\\x48\\x7c\\x04\\xe9\\x5f\\x16\\x02\\x68\\xe0\\x10\\x81\\xb3\\x05\\xe5\\xfe\\x18\\x55\\xcc\\xd9\\x45\\x62\\x90\\x2f\\x05\\xf7\\x89\\x01\\x4a\\x26\\xec\\x3a\\x08\\xc6\\x79\\xe3\\xd3\\x0b\\x61\\x5e\\xbe\\x4a\\x88\\x3b\\x63\\x0d\\x5c\\xcb\\xec\\x80\\xfc\\xfa\\x11\\x0c\\xb3\\xab\\xdb\\xf5\\xc2\\xe2\\xee\\x47\\x77\\xb7\\x9d\\xd5\\x97\\xf4\\xe4\\xfa\\xe6\\x54\\x18\\x6e\\xbd\\x7e\\x3f\\xa6\\x03\\xbb\\x99\\x2f\\x09\\x2b\\x1f\\xbf\\x6d\\x88\\x20\\xf1\\x1c\\x23\\x77\\x4d\\x30\\x29\\xdd\\xb8\\xe5\\x21\\x1a\\xaf\\xcd\\x2f\\x67\\x67\\xb1\\x79\\xb8\\x9e\\x73\\x7d\\x61\\x53\\xea\\x59\\x7b\\x3c\\x8b\\x6c\\xeb\\x57\\xa9\\x6e\\xdc\\x44\\x75\\x13\\xc8\\xee\\xa6\\xbb\\xbc\\x18\\x4b\\x00\\x13\\xfd\\x13\\xa5\\x29\\xdf\\x37\\x66\\x91\\xb7\\x4c\\x6d\\xd5\\xf4\\xc0\\x7d\\x31\\xc7\\x00\\x13\\x13\\xb8\\x95\\xd9\\x05\\xf9\\x1d\\xbf\\xf8\\x9f\\xba\\x5d\\x3f\\x0f\\x36\\xca\\xd7\\x9b\\xeb\\x1b\\x2e\\x37\\x9a\\xeb\\xc7\\x6b\\xae\\x65\\x56\\xe1\\x66\\xf9\\xe2\\x3e\\x7e\\x65\\xf8\\x4e\\xda\\xa8\\xc5\\x99\\xad\\xc5\\x46\\x43\\x71\\x5b\\x76\\xed\\xfc\\x32\\xed\\x31\\x92\\x7f\\x07\\xe4\\xf0\\xb5\\x84\\x1f\\x0e\\x99\\xc0\\xa3\\x2d\\x00\\x98\\xe1\\x9b\\x17\\x59\\x60\\x83\\x12\\xf8\\xdb\\x83\\x00\\xc8\\x1e\\x87\\xf0\\xb8\\xed\\xb8\\xd3\\x86\\xcb\\xcd\\xe4\\xab\\x59\\x1c\\x59\\x8b\\xcb\\x7d\\xda\\x20\\x94\\xb3\\x5f\\x6c\\x82\\x52\\xf8\\xdb\\x8b\\xf3\\x2f\\xf2\\x20\\x06\\x97\\x7c\\xf6\\x62\\x13\\x2e\\xfa\\x38\\xc2\\x2f\\x78\\xfc\\x82\\xf8\\xf9\\x00\\x60\\xcb\\x82\\xfc\\x33\\x59\\x3e\\x3b\\x35\\x94\\xb1\\x48\\xd8\\x44\\xa9\\xb2\\x3b\\x19\\x54\\x0a\\x00\\x09\\x2b\\x8d\\x89\\xc6\\x65\\x23\\x74\\x72\\x29\\x31\\x49\\x10\\xb0\\xa9\\x98\\xe2\\x5e\\x21\\x9f\\x60\\xab\\x66\\x66\\x9c\\xe3\\x63\\x45\\x22\\x9a\\xf3\\xe7\\x27\\x68\\x68\\x0e\\xa2\\xe4\\x1f\\x9a\\x30\\x2b\\xde\\x6c\\x92\\x55\\x25\\x90\\x89\\xa2\\x6d\\x55\\x33\\xb3\\x73\\x66\\xd5\\xda\\x27\\x71\\xc6\\x27\\xe9\\x3c\\x73\\x80\\xe1\\x60\\x8a\\x5e\\x62\\xc2\\xe3\\x18\\xc8\\x09\\x84\\x38\\x32\\x42\\x4b\\x0a\\x7a\\xa5\\xd4\\x10\\x40\\x43\\xa9\\x58\\x62\\x99\\x87\\x63\\xe0\\xea\\xa5\\x70\\xd6\\x08\\xa3\\x11\\x02\\xa3\\xc3\\x98\\x95\\x66\\x4a\\x88\\xc7\\xf6\\x79\\x82\\xa4\\x34\\x40\\x3d\\xd9\\x74\\x26\\x6a\\x4f\\x34\\x03\\xc2\\x61\\xe1\\xce\\xa0\\xf4\\xa5\\x52\\x0c\\x31\\x32\\x4e\\x36\\x08\\x9e\\x9b\\x75\\xeb\\xbc\\xdc\\xdc\\x79\\xb7\\xce\\x72\\x9e\\x35\\x9a\\x31\\x98\\x1a\\x42\\x59\\x94\\x3a\\xea\\xb3\\x88\\x04\\x45\\x28\\x44\\xde\\xe1\\x03\\x1d\\xfc\\x17\\xce\\x0c\\xbf\\x2d\\x36\\xd6\\xe6\\xcf\\x10\\x1b\\x88\\x92\\xcf\\x47\\x43\\xe8\\xec\\x5c\\x51\\x6a\\x5f\\xb0\\x68\\x81\\xdd\\x3e\\x6f\\xe1\\x82\\xac\\xb5\\x38\\x45\\xc2\\xc9\\xcb\\xdb\\xdd\\x87\\xf5\\x89\\xdb\\x24\\x71\\xc0\\x0e\\x7c\\x04\\x65\\x26\\x85\\x0c\\x28\\xca\\x40\\x88\\x40\\xac\\x10\\x13\\x74\\x7a\\x31\\x64\\x5f\\x95\\x8c\\x89\\xb4\\x8b\\xc4\\x53\\x8f\\x10\\xdb\\x1b\\x74\\xa0\\x5a\\x4c\\x84\\x96\\x35\\x66\\x0a\\x66\\x4a\\x8d\\xdb\\x43\\xe8\\x78\\x48\\x93\\x4c\\x62\\x8b\\x24\\x13\\x27\\x0f\\x28\\x38\\x1c\\x95\\xe2\\x89\\xcd\\xdc\\x97\\x56\\x3f\\x5e\\x3d\\xa3\\xe8\\x2c\\x0c\\x91\\xc7\\x47\\xa9\\x74\\xea\\x70\\x84\\xb4\\xc9\\x9f\\x45\\xc4\\x2b\\xc2\\x20\\x0e\\x6e\\x58\\xe1\\xef\\xdc\\x64\\xd2\\xcf\\x2a\\xa9\\x1a\\xab\\x4f\\x83\\x27\\xf4\\x59\\xfa\\xac\\x64\\x4c\\x65\\x93\\xa9\\x4f\\xce\\x94\\x4b\\x11\\xaa\\x19\\x7f\\x71\\x57\\x7d\\x01\\x92\\x9c\\x37\\x69\\x5d\\x66\\x15\\xcc\\x9e\\xb9\\xa5\\x65\\xf6\\x2f\\x67\\x3b\\x86\\xe6\\x8c\\x38\\xf7\\xfc\\x66\\x67\\x19\\x2a\\x28\\x2b\\xf0\\x97\\xaf\\x7b\\x68\\x18\\xde\\x6b\\x71\\x76\\x2c\\xf3\\xef\\xcb\\x1b\\xaa\\xb2\\x68\\xe2\\xac\\xd9\\x64\\xcd\\xe6\\xe3\\xb6\\xdf\\x88\\xc7\\x3c\\x97\\x30\\xc9\\xc4\\x0b\\x1c\\xb4\\x1c\\x82\\x88\\xa3\\x63\\x0a\\x58\\x08\\x68\\xf8\\x77\\x8f\\x48\\xc9\\x27\\x92\\x0f\\x99\\xd5\\x99\\x3a\\x83\\xce\\x40\\x8d\\x0a\\xc2\\x4a\\x9b\\x80\\xba\\x8a\\x6c\\x1a\\x04\\x7a\\x2e\\x51\\x89\\x3d\\xa0\\x52\\xd1\\x1e\\xc0\\xc3\\x0b\\xdf\\x89\\xb3\\xe5\\xeb\\x6f\\xea\\x5b\\x3a\\x7f\\xd6\\xe8\\xdb\\x6f\\xcf\\xbd\\x77\\x49\\xc1\\xc2\\xd9\\xb9\\x0d\\x0e\\x15\\x4c\\x33\\xa5\\xe6\\x18\\x94\\x08\\x6a\\x93\\x3f\\x4f\\xb0\\x21\\x54\\x32\\x7f\\x5f\\x7d\\xc5\\x58\\x53\\x06\\x03\\x57\\xba\\x3b\\x8b\\x53\\x4f\\x2f\\x5f\\x36\\x7b\\xe5\\x69\\x37\\x26\\x74\\x5b\\x76\\x9f\\x03\\x43\\x5d\\x47\\xf3\\xe7\\x5b\\x3d\\x30\\xbb\\x97\\x36\\x76\\xd6\\x9b\\x23\\x7b\\x7f\\xbd\\xab\\x14\\x69\\x31\\x65\\x11\\xa0\\x49\\xd9\\x2e\\x7e\\xc4\\xee\\x27\\xdc\\xba\\xa4\\x5d\\x8c\\xc0\\x19\\x03\\x39\\x96\\x83\\xd4\\xc3\\xca\\x00\\x81\\x3a\\x86\\xb6\\x46\\x88\\x61\\xeb\\x15\\xe4\\xa5\\xce\\xa4\\x33\\x5a\\x94\\x36\\xda\\xae\\xc9\\x36\\xb8\\xdd\\x97\\x8e\\xa2\\x8b\\x00\\xbb\\xcd\\xb4\\xc5\\xa4\\xed\\x66\\xd2\\x64\\xf4\\x69\\x77\\x87\\xab\\xda\\xae\\x80\\xba\\x74\\x5b\\x26\\x19\\xbd\\x4f\\x23\\xe2\\x63\\xf1\\xe8\\xb9\\xbb\\x96\\xf9\\x6e\\xbf\\x3d\\xa4\\xb1\\xf6\\x75\\x74\\x60\\xde\\x4c\\x55\\x56\\x9d\\xeb\\x7d\\xc9\\xc7\\x73\\xef\\x1d\\xcb\\x43\\xdf\\x35\\x8f\\x19\\x22\\x33\\x0a\\xaa\\x2d\\x45\\xa6\\x6c\\x74\\x60\\x53\\xc3\\x3d\\x0d\\xe6\\xc6\\xa6\\xe6\\xb4\\xf1\\xa3\\x8b\\x3d\\xcc\\xf8\\x96\\xda\\xfc\\x12\\xf4\\x7c\\x4d\\x31\\x49\\x54\\x77\\x22\\xbd\\x65\\x35\\x40\\xe0\\x11\\x7e\\x37\\x7b\\x80\\x3b\\x4e\\xb0\\xaf\\xc0\\xe7\\x2b\\x54\\x42\\x16\\x68\\xe9\\x39\\x23\\xdb\\x41\\x6c\\x98\\x40\\x02\\xc9\\x7e\\x3b\\x15\\xe4\\xcd\\x71\\x93\\x94\\x31\\x1e\\x37\\xbe\\xd0\\x9a\\xaa\\xc3\\x2d\\x24\\x81\\xc2\\x8a\\x89\\xea\\xeb\\xcc\\xba\\xc9\\x11\\xa3\\xe8\\x65\\x12\\xd3\\x44\\x13\\x10\\x41\\x51\\x7d\\x71\\x39\\x03\\xf0\\xd5\\x9b\\xb6\\xa6\\x94\\x0c\\x57\\xf2\\x1f\\x32\\x30\\x75\\xf5\\x8b\\xd7\\x94\\x2d\\x1b\\xf3\\x75\\xba\\xe3\\xa4\\x38\\x17\\xce\\xb7\\xea\\x84\\x70\\xb4\\x61\\x29\\xba\\x5b\\xe3\\xac\\xb4\\xed\\xb0\\x65\\x9c\\x41\\x7d\\x27\\x96\\x8f\\xbb\\x3a\\x8a\\x52\\x4f\\x78\\x16\\xdc\\x31\\x3c\\x7e\\x77\\x76\\x6c\\x69\\xd7\\x82\\xc2\\x35\\x9a\\xc2\\x7c\\x57\\x8c\\x3a\\xb6\\xac\\xca\\x2f\\x5f\\x31\\xbe\\x35\\xf0\\x8a\\x6b\\x6c\\xc1\\xa0\\xa9\\xb2\\xea\\xce\\x59\\xbf\\xa3\\xeb\\xf0\\x55\\x7e\\x35\\x8b\\x43\\x02\\xa7\\xb6\\x4f\\xf3\\x23\\xed\\x8b\\xbb\\x62\\xfb\\xb4\\xc1\\xf6\\xc1\\xff\\x2f\\xdb\\x07\\x39\\xf8\\xf1\\x82\\xa1\\x38\\x67\\x83\\x9b\\xff\\x90\\x85\\xfa\\xb9\\xf7\\x2f\\x2d\\xec\\x6a\\x23\\x4c\\x05\\x6c\\x78\\x6c\\xf4\\xb7\\xf2\\x98\\x10\\x38\\x6b\\x00\\x8d\\x8a\\x0d\\x84\\x77\\x3c\\xde\\x50\\x92\\x9a\\x67\\x8d\\x7b\\x29\\xa3\\x7d\\x5d\\x43\\xf3\\x72\\x93\\xdc\\x59\\xda\\x64\\xef\\x88\\xb0\\xa4\\x9b\\xc3\\xe4\\xe1\\x99\\x4e\\x7b\\x58\\x5b\\x43\\x1b\\xbf\\x74\\x6a\\x03\\x21\\x90\\xe3\\xb5\\xf6\\x08\\x1d\\xbf\\x39\\x82\\xff\\x5a\\x2b\\xd2\\x3d\\xe3\\x36\\x48\\xba\\xa4\\x34\\xfc\\x86\\x78\\x8d\\x27\\x43\\xde\\x7d\\x69\\xb8\\x08\\x91\\xac\\x53\\x8b\\xe0\\x66\\xb3\\x3d\\x42\\x20\\xbb\\x18\\x89\\x4c\\x0f\\xba\\x02\\x11\\xac\\x0e\\x13\\xf8\\xaa\\xf5\\x82\\x46\\x75\\xa5\\xe5\\x47\\x02\\x73\\x91\\x44\\x32\\xc1\\xab\\xca\\x38\\x51\\x52\\x82\\x5a\\x1f\\x1f\\x89\\xa0\\x2a\\xf6\\xaf\\x8a\\x64\\x44\\xe4\\x4d\\x49\\xc9\\x48\\x8d\\x85\\xd9\\x6b\\xed\\x3d\\x34\\x4f\\xa7\\xb4\\x15\\x98\\x63\\x70\\xb8\\xe4\\x48\\x46\\xc1\\xe5\\xcb\\x4d\\x57\\xbd\\xb4\\x99\\xf9\\x23\\xaf\\x38\\xc5\\x7f\\xf0\\x72\\xdf\\xa9\\x92\\x3d\\x7f\\xb9\\x59\\xe4\\xce\\xb3\\x11\\x99\\x8a\\xc7\\xd2\\x02\\xae\\x15\\xb2\\x7c\\xa6\\x00\\x8e\\xa8\\x5e\\x68\\x4c\\x64\\xf8\\x14\\xec\\x75\\xb0\\x57\\xb0\\xb5\\x8a\\x2e\\x7d\\xcb\\xf4\\x62\\x93\\xc4\\x4e\\x44\\x00\\x4d\\x5e\\xe0\\x33\\x5f\\xa5\\x2c\\x08\\x16\\x95\\xf4\\x52\\x59\\x45\\xcf\\xc2\\x66\\x25\\x76\\x4d\\x18\\x45\\x53\\xae\\x18\\x99\\x4c\\xda\\xaf\\x93\\xd3\\x05\\x7e\\x59\\x2f\\x21\\xe3\\x2e\\x7d\\xfd\\xba\\xae\\x74\\x56\\x99\\x94\\x16\\x17\\x86\\xe6\\x42\\x4d\\x42\\xba\\x93\\xca\\x64\\x8d\\x15\\xa1\\xdc\\xde\\x55\\xa5\\xfe\\xb9\\xb5\\x36\\x86\\x59\\xc9\\x7f\\x87\\xc3\\x93\\x1b\\x7f\\x4b\\xb8\\x53\\x17\\xc2\\x5f\\x5d\\x38\\xeb\\xae\\x42\\x0f\\x1c\\xec\\x3f\\xd1\\x37\\xf3\\xe5\\xc1\\x6b\\x5e\\xde\\x50\\x8c\\xf4\\x0d\\x6b\\xda\\x69\\x0c\\xe4\\x67\\xd4\\x96\\x6a\\x04\\xa3\\x42\\x43\\xf5\\x53\\x0f\\x6c\\x80\\x1c\\xd8\\xa4\\xd4\\xe8\\x4f\\x65\\xd1\\xc4\\xf0\\x9b\\xaf\\x56\\x4a\\x1c\\xfd\\x5e\\x71\\xf4\\xa3\\x85\\x54\\xf8\\x24\\x2d\\x83\\x45\\x8d\\xf7\\x56\\x8d\\x38\\xfc\\x53\\x25\\x97\\x68\\xfe\\x24\\xbb\\x2d\\xa3\\x85\\xf1\\x2a\\x95\\x01\\x8f\\x3b\\xd2\\x25\\x7f\\x2e\\xc8\\x2a\\x2f\\x26\\x21\\xf0\\x8d\\xd4\\x58\\x99\\xff\\x3d\\x77\\xee\\x7f\\xf1\\x90\\xaf\\x70\\x95\\xc2\\xec\\x9e\\xcb\\xb6\\x13\\x13\\x26\\xd4\\x86\\x99\\x81\\x83\\xc2\\xa1\\x80\\xe4\\x38\\xc3\\x6d\\x23\\x39\\x02\\x74\\x60\\x50\\x4c\\x73\\x2f\\x41\\x0c\\x92\\x10\\x1d\\x0e\\x00\\x8e\\x01\\x83\\x53\\x38\\x3b\\xa4\\xe2\\xe8\\x99\\xae\\x52\\x08\\x7f\\x4d\\x4a\\x4a\\x7b\\x81\\x54\\x9a\\x2c\\x25\\xd6\\x3b\\x3c\\x76\\x93\\x16\\x2d\\xb1\\xfa\\xce\\x2b\\x0f\\x5b\\xd4\\xab\\x67\\xcf\\xbe\\x7a\\x06\\x6f\\xaf\\x06\\x0b\\x82\\xca\\xd8\\x4f\\x14\\x29\\x08\\xb9\\x3a\\xc6\\x8b\\x85\\x8d\\xe4\\xe7\\x7c\\x39\\x9b\\xc7\\x97\\xc0\\x97\\xaf\\x3a\\x4e\\x2b\\x48\\x0e\\x34\\x7c\\x6e\\xb0\\x91\\x28\\xa6\\x48\\x88\\x60\\x14\\x64\\x89\\x0b\\x93\\xc5\\x75\\x65\\x69\\xae\\x93\\xa9\\xf1\\x12\\x9c\\x70\\xa8\\x86\\xc0\\xa0\\xc7\\x64\\x63\\xe4\\xb8\\x60\\x83\\x36\\x49\\xf0\\x30\\xed\\xba\\x24\\x19\\xbb\\x68\\x9f\\x9d\\x5a\\x65\\x74\\xfd\\xea\\xd7\\x0f\\x34\\x34\\x1c\\x78\\x7d\\xf5\\xb2\\xe3\\xa5\\xc5\\x25\\x07\\x3a\\x2b\\x17\\xd7\\x5b\\x2c\\xf5\\x8b\\x2b\\x37\\x6d\\x63\\x50\\x92\\xfa\\x73\\x85\\x19\\xa2\\x19\\xbb\\x7f\\xa6\\xec\\xbb\\xef\\xa3\\x6d\\x50\\xb2\\xed\\xa3\\xfb\\xfa\\xec\\xe9\\x8f\\xea\\xf4\\xa5\\x4b\\x6f\\x6e\\xe7\\xff\\xd3\\x79\\xcb\\xd2\\x52\\xb4\\x6b\\x65\\xe7\\x93\\x9d\\x1d\\x4f\\x74\\x2f\\x3d\\x36\\xe6\\xa1\\xeb\\xee\\x3a\\x5c\\xff\\x45\\x84\\xcb\\x80\\xd4\\x3f\\x05\\xb2\\x78\\x94\\x21\\x4b\\x99\\xd7\\xc9\\x5e\\x3e\\x36\\xe9\\xb2\\xe4\\x2e\\x61\\x31\\x30\\xa4\\x26\\x69\\x62\\xa2\\x43\\x64\\x84\\xbf\\x80\\xd4\\xdf\\x88\\xe7\\x4d\\x8e\\x40\\x7e\\x2f\\x46\\xb2\\x5e\\xd6\\x18\\x7a\\xdc\\x79\\xd1\\x43\\x36\\x3c\\x2e\\xf2\\xd3\\xb0\\x68\\x54\\xba\\xf4\\xf6\\xde\\xed\\xbf\\xd9\\x5f\\x5d\\xb9\\xf3\\x8d\\x4d\\x8b\\xef\\x72\\x66\\xb8\\xf7\\xb5\\xe0\\x38\\x32\\x9d\\xbe\\x6e\\xd5\\xc3\\x50\\x65\\xc9\\x37\\x39\\xe6\\x66\\x67\\x8f\\x66\\x77\\x6f\\xeb\\xb4\\x75\\xde\\xf0\\xca\\x02\\xeb\\x82\\x57\\x0e\\x75\\xea\\x53\\x9e\\xd7\\xa4\\x14\\x0d\\xad\\x2b\\xb4\\x16\\xaf\\x1b\\x2a\\xa2\\xf5\\xaf\\xc0\\x73\\xe9\\x08\\x89\\xc7\\x23\\xdc\\xea\\xc1\\x9d\\x7a\\x0c\\xc1\\x89\\xa3\\x8d\\xc8\\x84\\x98\\xcc\\x61\\x15\\xc4\\x28\\x9f\\x3c\\x04\\x28\\x85\\x64\\x0c\\xd3\\xb5\\x8d\\x43\\xfc\\x13\\xcc\\xbd\\xfc\\xad\\x72\\x6d\\x46\\x92\\xa5\\xd8\\xa6\\xc6\\xb3\\x3d\\xe9\\x33\\x8d\\x8d\\x41\\x65\\xe3\\x87\\x9a\\x5b\\xb6\\xf4\\xb9\\x59\\xf6\\xcb\\xd3\\xa7\\x2f\\xac\\x21\\x69\\x57\\xa6\\x88\\x37\\x3a\\xd3\\xad\\x33\\xaf\\x1b\\x06\\x10\\x94\\xe1\\x3a\\xad\\x61\\xf3\\xae\\x52\\xa7\\xb8\\xa9\\x75\\xb2\\x28\\xa7\\xd7\\xe9\\x32\\xed\\x81\\xd4\\x69\\x15\\xff\\x2b\\x66\\x0f\\x7f\\x58\\xae\\x77\\xa4\\xd4\\x36\\x33\\xb8\\x46\\x9f\\x08\\xeb\\xcf\\xbf\\xf0\\x40\\x43\\xeb\\xb6\\x7e\\x0f\\xcb\\xac\\x39\\x71\\x22\\xf0\\x4f\\x4b\\x99\\x23\\x11\\x6d\\x5b\\x51\\x73\\x7b\\xad\\xb1\\xae\\xbe\\xc1\\x44\\x14\\x03\\x64\\xed\\xa5\\x75\\x6a\\xc7\\xe3\\x3c\\x1f\\xcf\\xd3\\x82\\x9f\\x9e\\x8b\\x2b\\x69\\x22\\x17\\x57\\xf2\\x44\\x2e\\xae\\x74\\x41\\x63\\x75\\x7b\\x32\\x98\\xff\\x6f\\x72\\x71\\xb5\\x6f\\x5e\\xed\\x6e\\xcb\\x4f\\xa9\\xdd\\x75\\x6a\\xe5\\xe0\\xa3\\x9b\\xeb\\xcf\\x19\\x7d\\xed\\xd9\\x35\\xf3\\x2b\\x74\\xc9\\xbe\\xe1\\xca\\x97\\x5f\\xde\\x8f\\xc3\\x25\\x96\\x54\\xe7\\xf5\\x97\\x19\\xcf\\x76\\xec\\x7b\\xb2\\x67\\xe5\\x2f\\x0e\\x36\\xc3\\xc3\\x1b\\x1f\\xb2\\xc6\\xf9\\x9b\\x7b\\xb3\\x87\\x6f\\x9d\\xeb\\xf6\\xce\\xbd\\xa9\\x2f\\xa3\\x31\\x57\\x6b\\x28\\x6c\\xb6\\x67\\xb7\\xe4\\xe9\\x5e\\x5a\\xba\\x3e\\xbb\\x9d\\x1c\\x25\\xdb\\xb2\\xc6\\xee\\x1a\\x71\\x78\\x17\\x1d\\xa1\\xe7\\x2e\\x3f\\x5a\\xcc\\x5e\\xcb\\x64\\x81\\x4a\\xb8\\xf3\\xe2\\x32\\x00\\x66\\x38\\x7d\\xe0\\x47\\x3f\\xbf\\x8b\\xf7\\xb3\\x1e\\x00\\x90\\x19\\x94\\x80\\x30\\x9e\\x87\\x12\\x50\\x12\\x06\\x40\\xc8\\xe3\\x00\\x3e\\xcb\\xd3\\xe3\\x16\\x80\\xf0\\x53\\xe6\\x02\\x13\\x2b\\x31\\x92\\x98\\x5b\\x5f\\x84\\x84\\x13\\xb2\\x3a\\xcf\\x4d\\x80\\x32\\x25\\xcd\\x29\\xed\\x51\\x4b\\x08\\x3c\\x16\\x7e\\x9a\\x90\\x55\\x6a\\x59\\x61\\xcb\\xfa\\x1d\\x7b\\xa7\\x63\\xc1\\xe8\\x4c\\x43\\x43\\xd9\\x8d\\xbd\\xf7\\x91\\xeb\\x7f\\xc5\\x9c\\x45\\xff\\x91\\xc4\\xe1\\xeb\\x53\\x9e\\x22\\x97\\x57\\x52\\x44\\xfb\\xd3\\x80\\x66\\xf6\\xd6\\x3c\\x49\\x6e\\xd6\\xf5\\xa4\\x70\\xbb\\x49\\xdd\\x02\\xfd\\x27\\x21\\xab\\xcc\\xb2\\x1c\\xdf\\x8e\\x5b\\x91\\x3d\\x7f\\xa4\\xcf\\xd0\\x50\\x7e\\xc3\\xcc\\x7b\\x00\\xb9\\xdf\\x29\\xfe\\x24\\xfa\\x06\\x7c\\x37\\x59\\x9f\\xca\\x89\\xfa\\x18\\xa7\\xdc\\xe0\\x6b\\x52\\x9f\\xb5\\xb6\\x8c\\xbf\\x54\\x38\\xe6\\xe3\\xea\\xd4\\x97\\xdf\\xd0\\xfb\\x24\\x69\\x33\\x7c\\x15\\xd7\\xe7\\x5f\\xb8\\x3e\\x95\\x70\\x94\\x7d\\x11\\x80\\x13\\x40\\xe8\\x0b\\x58\\x86\\xdb\\xf9\\xb2\\xc4\\x88\\xcc\\x70\\xe4\\x22\\x61\\xcc\\x97\\xc2\\x11\\xf0\\x10\\x10\\xbe\\x33\\x32\\x67\\x99\\x47\\x24\\x71\\xf8\\xbb\\xd1\\x8b\\x5d\\xf4\\xbb\\x51\\x40\\x5a\\x00\\x00\\x82\\x4e\\xfe\\x65\\xe6\\x0e\\xf0\\x0f\\x5c\\x1f\\x35\\x88\\xf5\\x61\\x10\\x95\\x84\\x63\\xf1\\xcd\\x21\\xae\\x94\\x26\\x01\\xc9\\x54\\x53\\x6b\\xc5\\x4d\\xa9\\xe0\\xec\\xf8\\x4c\\xbf\\x65\\x03\\xae\\x20\\xf4\\x92\\xaa\\x6e\\xb0\\x66\\xff\\xb9\\x6c\\xa2\\xaa\\xf7\\xdc\\x35\\xf9\\x12\\x10\\x29\\x04\\xd8\\x86\\x49\\xae\\x60\\xb6\\x80\\xb2\\xd9\\x08\\xbe\\xd7\\x62\\xb2\\x01\\x14\\x4e\\x64\\x4c\\x95\\x25\\x4c\\xf0\\x9e\\x91\\xb3\\x2e\\xdb\\xc0\\x6f\\x3f\\xc3\\xef\\x81\\xcb\\xcf\\xc0\\x35\\xcc\\xf2\\x0b\\x7b\\x98\\xe5\\xaf\\xc2\\x15\\xfc\\x6e\\x6a\\x7b\\x18\\x60\\xbb\\x48\\x6c\\x33\\xc9\\xa5\\x01\\x24\\x92\\x02\\x8a\\xc9\\xe6\\xba\\x08\\xa0\\xba\\xb8\\x36\\x04\\xdf\\x59\\x48\\x53\\x5d\\x58\\x2b\\x24\\x97\\x9e\\x12\\x50\\x1c\\x2a\\xc3\\xc1\\x9b\\xe2\\x43\\x82\\x0f\\x52\\xe2\\x57\\x6c\\x17\\xbf\\xfd\\x2c\\xbf\\x0f\\x2e\\x25\\xbf\\x67\\xe1\\x1a\\x7e\\x3b\\xfe\\xc5\\xf1\\xb9\\x2f\\xa3\\xe7\\x4e\\x91\\xa7\\x9e\\x0a\\x54\\x02\\x3a\\x86\\x37\\x20\\x29\\xd3\\xc8\\x7c\\x09\\x94\\x57\\xca\\x69\\x6c\\x31\\x90\\x5e\\x83\\xd3\\x83\\xce\\x6e\\x48\\xc1\\x99\\x0e\\x73\\x5a\\xbc\\x29\\x98\\x88\\xc3\\xe9\\xc4\\x7f\\x19\\x55\\x66\\xa3\\x57\\xab\\xf5\\x36\\x66\\xe6\\x67\\xd6\\x93\\x8f\\xeb\\x33\\x85\\xf1\\x0a\\xc7\\xb6\\xdf\\x2c\\xe8\\xc1\\xf3\\x3a\\xfa\\x62\\x05\\x85\\x26\\x46\\xc3\\x08\\x61\\x2c\\xc1\\xb3\\x17\\xff\\xc9\\x19\\x84\\xef\\xf8\\x7f\\xe1\\x8f\\x4c\\x20\\x7a\\x3d\\x2d\\x41\\x1a\\x0b\\x24\\xc0\\x87\\xaf\\x7d\\x08\\xc7\\xfe\\xe9\\x80\\x07\\xe4\\x83\\x66\\x30\\x02\\xd6\\x13\\x36\\xc5\\xfc\\x3c\\x24\\x91\\x7a\\x65\\x28\\x04\\xc4\\x43\\x24\\x23\\xb1\\x54\\x80\\x03\\x12\\x6e\\x88\\x26\\xc7\\xc1\\xdb\\x40\\xc8\\x90\\x18\\x24\\x51\\x56\\x4b\\x58\\x14\\x04\\x28\\x4c\\x39\\xaa\\x5b\\xbd\\x72\\xd1\\x82\\xa1\\x41\\x8b\\xc5\\x6e\\xb1\\x18\\x70\\x0a\\xcd\\x70\\x59\\x52\\xb0\\x6d\\x2a\\x11\\xd6\\x72\\x59\\xba\\x88\\xe9\\x2d\\xc7\\xbb\\x9a\\xda\\x38\\x9d\\x4f\\x69\\xda\\x27\\xdc\\xf4\\x32\\x25\\xa9\\xfe\\x81\\xa2\\xbc\\x2e\\xad\\xb6\\xdb\\x5b\\x3c\\xe0\\xd7\\xe9\\x4a\\xf0\\xbb\\x1e\\xad\\xb6\\xd3\\x8b\\xa3\\x4c\\x53\\xf9\\x8b\\x3a\\xdf\\xcc\\xc2\\xe2\\xc1\\x92\\xd4\\x54\\xfc\\x79\\x61\\x5f\\x89\\x6e\\x55\\x2b\\xe3\\x6a\\xbd\\xf0\\x4d\\xa8\\x4a\\x1f\\x1f\\x97\\xaa\\x0c\\x0d\\x55\\xea\\xe3\\xe3\\xf5\\xca\\x10\\xb4\\x28\\x54\\xad\\x8f\\xd3\\xa4\\xc6\\x4a\\x43\\x95\\xa9\\xf4\\x13\\xfe\\x16\\xe1\\x13\\x85\\x4c\\xfc\\x04\\x5a\\xbc\\xc3\\xf5\\xe9\\x26\\x7c\\x5a\\x4a\\xaf\\x1f\\xf6\\x9a\\xbc\\xc3\\x75\\xe9\\x46\\x9d\\xce\\x98\\x5e\\x37\\xec\\x65\\x1e\\xc8\\x1b\\xae\\xb3\\xdb\\xeb\\x86\\xf3\\x0c\\xde\\x39\\xf5\\xe9\\xe9\\xf5\\x73\\xbc\\x81\\xd6\\x1e\\xd4\\xde\\xd3\\xae\\x71\\x18\\xd5\\x6a\\xa3\\x43\\x63\\xd0\\x64\\x93\\x17\\xd9\\x9a\\x0b\\x9d\\xe4\\x23\\x95\\xc9\\xa1\\x31\\x25\\x08\\xdf\\x25\\x98\\xa6\\x7d\\x42\\xe7\\xd0\\x4e\\xb0\\x87\\x69\\x60\\x8e\\x01\\x09\\xe1\\x80\\x64\\xe8\\x39\\xfc\\xf2\\x34\\xe3\\x0a\\x39\\x9d\\x49\\x0a\\x3d\\x74\\x41\\x27\\x6a\\xff\\xcf\\xfd\\x18\\x4e\\xab\\xbd\\x1f\\x25\\xf0\\xe3\\x70\\xbb\\x02\\x6e\\x17\\xe6\\xe2\\x56\\x7c\\x9f\\x5a\\x72\\x1f\\x92\\xe7\\x86\\x83\\x88\\xdc\\x08\\x41\\x7a\\x27\\x04\\x27\\x6e\\x45\\xa7\\x86\\x44\\xc1\\x10\\x31\\x05\\x95\\x50\\xaf\\x60\\x90\\x15\\xea\\xf8\\x0f\\xee\\xff\\xcf\\x7f\\x98\\x63\\xfc\\x1a\\x05\\xbf\\x06\\x1e\\x80\\xd7\\x92\\xfb\\x69\\xc1\\xdf\\x98\\xdb\\xd9\\x5f\\x13\\xe5\\xf3\\x49\\x04\\x60\\x96\\xcd\\x88\\x47\\x0f\\xde\\xb1\\x01\\x5e\\xdc\\xf0\\xb7\\x32\\xe6\\x58\\x19\\x91\\x19\\x11\\x28\\x8b\\x4d\\xc0\\x7b\\x51\\x28\\x88\\xc4\\xfe\\x18\\x0c\\x7c\\x03\\xac\\x0c\\xc2\\x09\\xc3\\x9f\\x92\\x83\\x22\\xfa\\x1e\\x20\\x44\\xf1\\x35\\x05\\x88\\x42\\x9e\\x89\\x69\\xaf\\x6d\\xca\\xb7\\x2c\\x4b\\x50\\x45\\x2c\\xaa\\xc7\\x26\\x3e\\x79\\xcc\\x84\\x00\\xc0\\x7b\\x10\\x41\\xa1\\x9b\\xa1\\x13\\x62\\xbb\\x17\\xb3\\xfd\\xd0\\xa1\\xc7\\xf8\\x3c\\x16\\xbe\\xfa\\x14\\x5f\\x05\\x43\\x62\\x98\\x05\\xdb\\x9e\\x79\\x66\\x08\\xad\\x0d\\x1c\\x85\\x6b\\x0d\\xb4\\x0f\\xf2\\xd0\\x5e\\xe6\\x37\\xdc\\xf3\\x40\\x0d\\xe6\\xe3\\xa4\\x20\\x62\\x6e\\xc4\\x58\\x08\\x27\\x73\\x23\\x0a\\x6f\\xba\\x84\\xaf\\x13\\x26\\x73\\x23\\x16\\x50\\xd2\\x41\\xf1\\x0d\\x51\\x53\\xd5\\xe2\\xf6\\x49\\xbe\\x12\\xf9\\x2e\\x0b\\xc4\\xd4\\x88\\x6a\\xa0\\x26\\x5e\\x36\\x89\\x8c\\x44\\x3c\\x5e\\x89\\x78\\x07\\xfe\\x4e\\xab\\x5f\\x5c\\x5d\\xd0\\x5f\\x66\\x78\\x25\\x26\\xd5\\x91\\x9c\\x53\\x16\\xf3\\x0a\\xf7\\xf0\\xea\\xe2\\x2a\\x9c\\xa7\\xab\\x99\\xe7\\xe0\\x9b\\xae\\x2a\\x7b\\x6c\\x96\\x35\\xf0\\x7b\\x46\\x4b\\xc7\\x8f\\x72\\x64\\x6f\\xc5\\xeb\\xd5\\x09\\x6a\\x7d\\x55\\x22\\xb3\\x46\\x18\\x94\\x86\\x43\\xc2\\x5b\\x32\\x18\\x01\\x39\\x56\\xa0\\x61\\x15\\x69\\x35\\xca\\x68\\xb5\\x28\\x1a\\xab\\x90\\xd0\\x6b\\x39\\xb2\\x32\\x33\\x2c\\x38\\x52\\x9e\\x9c\\x04\\x54\\x98\\x55\\x23\\x3a\\x52\\x46\\x03\\x19\\x62\\x25\\x84\\x74\\x8a\\x10\\xcc\\xbb\\xcc\\xf8\\xe8\\x47\\x7f\\xa7\\xed\\xf8\\x6a\\x5c\\x44\\xad\\x63\\xbc\\xfc\\x1b\\x28\\x59\\x87\\x4e\\x9c\\xff\\xac\\x29\\x5e\\xa7\\x90\\xa2\\xfb\\xee\\x62\\x6f\\x3f\\xcc\\x91\\x7c\\xcc\\x98\\x43\\x3f\\xef\\x8b\\x54\\x6f\\xad\\xc5\\x5a\\xed\\x4e\\x91\\xc0\\x0a\\xec\\x2d\\x86\\x85\\xf0\\x1d\\xa7\\x7f\\x89\\xfd\\xe4\\x49\\x49\\x66\\x71\\x55\\x8a\\x77\\xdf\\xda\\x7d\\xf7\\x8f\\xdc\\xb3\\x38\\xdf\\x3b\\xf7\\xfa\\xee\\xdc\\x46\\x87\\x4a\\x5b\\xd8\\x93\\x7f\\xff\\xbe\\xb5\\x00\\x51\\x9e\\xad\\xa7\\xb8\\xe3\\xd4\\x6f\\xf7\\x67\\x7a\\x52\\x78\\x3a\\x8c\\x86\\xc2\\x6a\\xf0\\x5f\\x0e\\x42\\xd1\\xe1\\x9f\\x0d\\x64\\x92\\x30\\x89\\x2c\\x6c\\x0c\\xcf\\x28\\x16\\x86\\xb2\\x43\\x38\\xc6\\x86\\x5a\\x6a\\xc8\\x10\\x00\\x20\\xed\\x22\\xc1\\x0b\\x74\\xa3\\x40\\xbd\\x1c\\x15\\x4b\\xf4\\xf4\\xf8\\xff\\xc3\\x95\\x55\\x64\\x1e\\xba\\x7f\\xe2\\x45\\x1c\\x57\\x28\\x5c\\x09\\xe8\\x85\\x84\\xbd\\xc4\\x9d\\x93\\x8e\\x73\\x81\\xca\\x63\\x75\\x72\\x03\\x49\\x86\\x47\\xa5\\xe1\\xf4\\x64\\x78\\xfa\\x48\\x86\\x22\\xc5\\x28\\x7f\\x09\\x3d\\xbb\\xc0\\x49\\x0b\\x35\\x7b\\xe4\\x51\\xcc\\x15\\xa8\\x88\\xb5\\x86\\x69\\x54\\xed\\x36\\x4c\\x30\\x6b\\x6c\\x0d\\x71\\x75\\xad\\xae\\xf3\\xbc\\x71\\xb1\\x7e\\x4d\\xa7\\x4b\\xd6\\xfa\\xc6\\xa3\\x17\\xee\\xf1\\x88\\x6c\\xe6\\x1e\\xe6\\xde\\xc0\\x0e\\x7b\\x7e\\x6a\\x64\\x28\\xbb\\x27\\x56\\xad\\xaf\\x5f\\xd3\\x81\\x56\\xb5\\xec\\x9c\\xe5\\x0e\\xfc\\x9a\\x3b\\xee\\x19\\xda\\xdd\\x02\\x59\\xfe\\x02\\x7f\\xd8\\xd1\\x38\\xe2\\xf6\\x8c\\x36\\x3b\\x00\\x04\\xeb\\x29\\xbf\\xf8\\x2b\\x20\\x03\\x34\\xf9\\xea\\xb5\\x50\\x26\\xd5\\x41\\x89\\x8c\\xac\\xce\\x10\\x88\\x20\\xe1\\x6d\\x93\\x84\\x42\\xa2\\x2d\\x0e\\x86\\x4d\\x12\\x07\\xc9\\x64\\x54\\x4b\\x2c\\x13\\xd3\\x9e\\x91\\x0e\\xce\\xb0\\xa7\\xdb\\xac\\x96\\x20\\x51\\x8b\\x41\\x68\\x29\\xf5\\x0e\\x8a\\xcd\\x24\\x13\\xca\\x85\\x7f\\x27\\xd2\\x1c\\x89\\x3c\\x67\\x4a\\x1d\\xb3\\x95\\xbf\\x89\\xc9\\x6a\\x5d\\x5e\\x35\\x3e\\x90\\xe0\\x5d\\x5f\\xb2\\xf2\\x8d\\x83\\xad\\xec\\x23\\x8f\\x3c\\xf2\\xa8\\xb4\\xe3\\xe0\\x1b\\x2b\\x8b\\x97\\x17\\x24\\x64\\xcd\\x73\\x57\\x2d\\x9d\\xe1\\xe0\\xe0\\x28\\x7f\\x13\\x9c\\x8b\\x62\\xfa\\x77\\x74\\x58\\x74\\xa7\\x23\\xa3\\xcb\\x77\\xff\\x7a\\xd7\\xee\\x6b\\x76\\x6f\\xff\\xe5\\xce\\x32\\x79\\xe4\\x2b\\x51\\x0a\\x6b\\xdb\\x96\\xee\\xdd\\xd7\\xd0\\xb8\\x4e\\x1f\\x89\\x0d\\xe2\\x5e\\x0d\\x22\\xd3\\x7b\\x40\\x84\\x2f\\xb4\\xbb\\xb3\\xb9\\x22\\x3f\\x2b\\x8a\\x65\\xb3\\x26\\x22\\x7d\\xaf\\x16\\x2a\\x41\\x7a\\x5f\\xf1\\x13\\xe2\\xfa\\x38\\x2c\\xec\\x50\\x87\\x1e\\xc7\\xd4\\xfb\\x66\\x97\\x1b\\x0c\\xc2\\x5f\\xfd\\x03\\xe1\\xf1\\xa6\\x78\\xfc\\x7f\\x78\\x78\\x02\\x36\\x68\\x1b\\xe3\\xc2\\x7f\\x4f\\xbf\\x99\\x53\\x66\\xd0\\x97\\xcd\\xa6\\x25\\x8f\\x46\\x26\\x98\\xe2\\x34\\x26\\x75\\x18\\x2e\\x41\\x4b\\xf2\\x87\\x88\\xc4\\x64\\x8d\\xae\\xbe\\x2a\\x6b\\x56\\xf3\\xc2\\xc2\\xfa\\xa2\\x85\\x2d\\x59\\xd6\\xaa\\x01\\x17\\x66\\x06\\x8f\\x4d\\x48\\xcf\\x4d\\xa9\\x4f\\xce\\xb5\\x25\\x28\\x53\\x2d\\xca\\x80\\xaf\\x70\\x51\\x73\\x56\\x56\\xf3\\xa2\\xc2\\x86\\xa2\\x85\\xe4\\xc5\\xc2\\xa2\\x64\\xaf\\x2d\\x01\\xe7\\xaa\\x4d\\x6e\\x10\\x5f\\x6c\\xa3\\x92\\x97\\xda\\xcc\\x5e\\xc0\\xfd\\x10\\xcd\\x3d\\x04\\xf4\\x20\\x0b\\xc8\\x9e\\x4e\\x37\\xc8\\x01\\xca\\x12\\x4e\\x9f\\x2e\\x89\\xde\\x45\\x3c\\xfc\\x53\\x9b\\x29\\x15\\xdc\\x03\\x93\\xe9\\xc5\\x99\\x9e\\xd5\\x4f\\xae\\xcc\\xeb\\x9b\\xed\\xee\\xb7\\x3b\\x7a\\xb6\\x34\\xfb\\xc7\\x9b\\x33\\xdc\\x73\\x6f\\x99\\xad\\x76\\x77\\xf9\\x3f\\xcd\\xaa\\xc8\\x50\\xd9\\xb4\\x6e\\xaf\\xd2\\xb7\\xf2\\xe8\\x70\\xa8\\xfc\\xe7\\x21\\x32\\x78\\xcb\\xe0\\xcd\\xf3\\x73\\xed\\xed\\x6b\\xea\\xad\\xa5\\x87\\x6f\\xdc\\x99\\x5d\\x5a\\x3c\\x54\\x6a\\x40\\xf1\\xa9\\xcd\\xdd\\xfd\\x59\\xe9\\xbe\\x92\\xbe\\x41\\x21\\xe6\\x76\\x25\\xcd\\x79\\x7e\\x82\\xe0\\x45\\x81\\x1d\\x38\\xc8\\xd8\\x64\\x65\\x58\\x52\\xe3\\x23\\x39\\x80\\xc7\\x46\\x47\\x49\\x7a\\xb1\\xbb\\xc2\\xa9\\x9e\\x36\\x02\\x1e\\x1a\\x4d\\x24\\x56\\x4e\\x81\\x95\\x31\\xf4\\xcf\\x97\\xbe\\x7f\\x09\\xff\\xdf\\xac\\x4a\\xcb\\x37\\x18\\xf3\\xd3\\x54\\xaa\\xb4\\x3c\\xa3\\x31\\xcf\\xa2\\x9a\\x17\\xab\\xd5\\x2a\\x62\\xb5\\x29\\xb1\\xbf\\xe1\\x7f\\x07\\x33\\x99\\xc5\\x17\\xae\\xc3\\x34\\x33\\x37\\x30\\xf3\\x1f\\x48\\x2b\\x73\\x68\\x34\\x8e\\xb2\\xb4\\x3f\\xa6\\x95\\x92\\x17\\xa5\\x69\\xa1\\xf6\\xac\\x2c\\xfb\\xa9\\x74\\x87\\x23\\x3d\\xf0\\xb7\\x59\\xa4\\xcf\\x16\\x32\\x87\\xd8\\x56\\x9a\\x1b\\x3f\\x16\\xf7\\x99\\x22\\x4a\\x02\\x71\\x9f\\x41\\x26\\x58\\x2f\\xcc\\x2f\\xab\\x87\\x7a\\x21\\x7f\\x25\\xf3\\xc9\\x86\\xc2\\xf5\\x0b\\x77\\x6c\\xde\\xbe\\x65\\x21\\x1f\\xbd\\x7b\\xd9\\x5e\\xb8\\x9b\\x0b\\xe5\\x77\\x13\\xe5\\x0f\\x25\\xf2\\xd7\\xc0\\x8d\\x81\\x8f\\xe1\\x4b\\x7c\\x19\\x7c\\xa1\\x8f\\x8e\\xc5\\x8d\\x78\\xad\\x5d\\xc7\\x36\\xe0\\x56\\xa7\\xe1\\xfb\\x1a\\xb4\\xd1\\x08\\xdf\\xd7\\x48\\x97\\x07\\x3b\\x11\\xba\\x8b\\x35\\x4b\\x15\\xcd\\xc0\\x04\\xc9\\x06\\xa1\\xc3\\x69\\xc5\\xd9\\xd8\\xb6\\xe7\\x87\\xaa\\xb7\\x2f\\x1b\\x28\\x33\\x5a\\xaa\\x87\\x96\\x6f\\xf2\\x8f\\x3c\\xb5\\xbd\\x21\\x00\\x3c\\x7b\\x1b\\xfa\\x9e\\xeb\\xe2\\xaf\\xad\\xdd\\xe7\\x45\\x89\\xae\\x5d\\x7d\\xae\\xc2\\xb4\\x9a\\xe1\\xf5\\x07\\xea\\xeb\\x0f\\xac\\x1f\\xae\\x49\\x6b\\xb9\\xf6\\xb5\\xe5\\x99\\xfc\\xb3\\xce\\xfc\\xfc\\x62\\xc6\\x5a\\xe2\\xe5\\xbf\\x80\\xc9\\x39\\x85\\x58\\x1f\\xec\\xb9\\xf8\\x2d\\xc6\\x09\\x3d\\x02\\x32\\xe1\\xc9\\x8b\\x5a\\xf4\\xa9\\xf7\\x16\\x60\\x82\\x2b\\x62\\x00\\x8c\\x82\\x6f\\xc0\\x9b\\x00\\xc0\\xef\\xe9\\x79\\x08\\x7d\\x4a\\xce\\x43\\xb8\\xbc\\x09\\x97\\xff\\x3d\\xf7\\x3c\\x2e\\x7f\\xfa\\xa2\\x12\\x7d\\x2e\\x94\\xd7\\x7e\\x47\\xcb\\xdf\\x48\\xcb\\xc7\\xd0\\xf2\\x9f\\xe3\\xf2\\xd4\\x81\\xf5\\x9d\\xe0\\xeb\\x4a\\xc2\\xd7\\x3d\\xc3\\x3d\\x8d\\xaf\\x7b\\xf5\\xa2\\x0c\\x7d\\x25\\x5c\\x17\\x29\\x3c\\x67\\xed\\x94\\xe7\\x7c\\x15\\x7c\\x4e\\x39\\x2e\\x7f\\x8a\\x7b\\x02\\x97\\x7f\\xfd\\xa2\\x17\\x7d\\x21\\x94\\xff\\x4c\\x28\\xbf\\x7d\\x4a\\xf9\\x2f\\x48\\x79\\x80\\xa8\\x1d\\xa6\\x8d\\xfb\\x06\\xf7\\x64\\x11\\xee\\x4b\\xa7\\x25\\x29\\x86\\x8c\\x11\\x96\\x2c\\xc1\\xc8\\x67\\x33\\x95\\x33\\x97\\x67\\xcc\\xbe\\x8c\\xb3\\x3e\\x83\\x41\\x75\\xad\\x37\\xe5\\x47\\xf8\\xfa\\x56\\xfa\\xcd\\xa5\\x45\\xc5\\xa9\\x89\\x89\\x45\\x35\\x3d\\x79\\xbb\\xff\\xb0\\xbf\\xca\\xbf\\xf1\\xb9\\x15\\x2b\\x9e\\xdd\\xe8\\x2f\\x5a\\xf5\\xd8\\xde\\xf2\\x59\\x98\\xac\\xbe\\x68\\xb0\\xac\\x7c\\x56\\x61\\x92\\x54\\x5f\\xd8\\xcd\\xb2\\x25\\x45\\x83\\x77\\x2c\\x2e\\x90\\x46\\x28\\x22\\x9e\\x0e\\x8f\\x57\\x84\\x2f\\xfd\\x23\\xff\\xeb\\x13\\x79\\x7b\\xcf\\x3d\\x31\\xa7\\xe9\\xc0\\xa9\\x25\\xca\\x79\\x3f\\xdb\\x5e\\x7b\\xc2\\xd9\\x3e\\x5e\\x44\\x09\\xeb\\x8b\\x17\\x5d\\xdf\\xda\\x19\\x57\\xe0\\x16\\x30\\x0b\\x77\\x5c\\x4c\\x62\\x2d\\x34\\x6e\\x4f\\xf2\\xa4\\x84\\xe8\\x4b\\x9c\\x48\\xfb\\x6c\\x39\\xcb\\xb7\\x9d\\x65\\xf6\\xfc\\x9d\\x7b\\xe7\\x07\\x9b\\xe4\\x7a\\x6a\\x23\\xe5\\xbf\\x66\\x8f\\x91\\x79\\x88\\xcb\\xca\\x18\\x5c\\x16\\x42\\xb2\\x45\\x43\\x48\\x2c\\x07\\x90\\x59\\x15\\xf8\\x82\\xa9\\x3c\\x7f\\x0d\\x6a\\x0e\\x3c\\xc6\\x96\\x5e\\xf8\\x37\\x52\\xa2\\xd2\\xc0\\xf8\\xc9\\x9b\\xd0\\x1b\\xe8\\xb5\\xc3\\x27\\x03\\xe3\\x82\\xbe\\x70\\x27\\x5a\\xcc\\x7c\\xc5\\x64\\x01\\x86\\x9c\\x3d\\x2e\\xd7\\x18\\xe5\\xd1\\x54\\x63\\xc4\\xcb\\x88\\xf9\\xea\\xc2\\xe3\\x4c\\x23\\x5a\\x7c\\x92\\x7c\\x9e\\x06\\x00\\x7b\\x0d\\x7e\\x6e\\x28\\x7e\\x2e\\x47\\x9f\\xab\\xf6\\x10\\x36\\x29\\x06\\xcf\\x78\\x84\\xa7\\x27\\x9c\\xf5\\x27\\x3e\\xe6\\xc4\\xbb\\xbf\\x81\\x73\\x60\\x55\\x6b\\x37\\x3b\\x0b\\x43\\x9f\\xca\\x4f\\xe1\\x27\\xe4\\x82\\x6f\\xd9\\xc7\\x99\\xb7\\x81\\x05\\x14\\x83\\x36\\x10\\xfa\\x4c\\x63\\x99\\x37\\x23\\x9e\\x65\\x26\\xc5\\xad\\x39\\x92\\xb9\\x44\\xea\\x8a\\x38\\x12\\x51\\x93\\xf7\\x04\\x59\\x42\\x94\\x3a\\x2a\\x60\\x27\\x03\\xd8\\x5d\\xec\\xe3\\xa6\\x9a\\xc5\\x55\\xd9\\x33\\xca\\x3d\\x4a\\xa5\\xa7\\xbc\\xd5\\x51\\xb5\\xa8\\xc6\\x64\\xaa\\x5e\\x54\\xe5\\x68\\xad\\x10\\x3e\\xc9\\x26\\x9f\\x5c\\xb0\\x47\\x68\\xb1\\x55\\xaa\\x24\\x2b\\x89\\x61\\x92\\xb2\\xfc\\x66\\x93\\x53\\x1b\\xc1\\xd8\\x22\\xb4\\x4e\\x63\\x5a\\x49\\x56\\x32\\xfe\\xcc\\x51\\x42\\x3f\\x43\\xcd\\x84\\x8f\\xce\\x50\\x50\\x97\\x96\\x56\\x57\\x60\\xc0\\x9c\\x8b\\xb5\\xe6\\x9a\\x4d\\x33\\x5d\\x86\\xfc\\x5a\\xb3\\xb9\\x36\\xdf\\xe0\\x9a\\xb9\\xa9\\xc6\\x6c\\x2d\\x77\\x68\\x9c\\xa5\\xfe\\x28\\x55\\x64\\x71\\x49\\x76\\xa2\\xa3\\xdc\\x62\\x29\\x77\\x24\\x66\\x97\\x14\\x47\\xaa\\xa2\\xfc\\xa5\\x4e\\x8d\\xa3\\xdc\\x4a\\xfb\\xf7\\x1c\\x5f\\xcb\\xfc\\x5d\\x62\\x07\\xa9\\xb8\\xaf\\x54\\x2c\\x19\\xcf\\xcb\\x10\\x0a\\x53\\xcd\\x62\\x38\\xee\\x16\\xbd\\x49\\x89\\x49\\xbd\\xda\\xf0\\x10\\x4d\\x52\\x62\\x48\\x5e\\x91\\xb3\\x7f\\x57\\xbb\\xa9\\xd6\\x14\\xa7\\x48\\x4f\\x6a\\x6e\\x2d\\xec\\xde\\x3b\\x90\\x1d\\x04\\x2b\\x0c\\xb6\\xb3\\xff\\x26\\xd8\\x85\\xf0\\x90\\x9f\\x71\\x5c\\x7f\\xdb\\xf9\\x30\\x2a\\x43\\xf6\\x03\\x9e\\xad\\x64\\x39\\xa0\\x03\\xa5\\x78\\xde\\x97\\x66\\xeb\\xa2\\xf1\\xbc\\x27\\x4c\\x1a\\x6e\\x9a\\x00\\x56\\xd4\\x2b\\x04\\xac\\x8e\\x14\\x8b\\x10\\xe9\\x8f\\x7c\\x77\\x38\\x6b\\x8d\\x3f\\xad\\xd0\\x8d\\xa1\\x3e\\x0e\\xa7\\xd7\\xe8\\x5f\\x99\\x15\\x9a\\xb5\\xcc\\x6f\\xc4\\xe9\\x99\\x92\\xb5\\x2e\\x4f\\x61\\x9a\\x7f\\x5d\\x56\\x6c\\xd6\\x8a\\x89\\x12\\x79\\x46\\xff\\x1a\\x5c\\x62\\xa5\\x58\\xc2\\x5d\\x98\\x86\\x3f\\x60\\x16\\x97\\xd7\\xc3\\xb0\\x58\\x4d\\x74\\x54\\xbc\\x22\\xb4\\xbe\\xfc\\x74\\x79\\x7d\\xa8\\x22\\x3e\\x0a\\x3b\\x7d\\xc2\\x60\\x7d\\xf9\\x17\\x3f\\xf2\\x5d\\x70\\x7e\\x82\\xdb\\x58\\x0f\\x5b\\x0e\\x14\\xb8\\xff\\xc2\\x11\\x99\\x6b\\x3a\\xa9\\x99\\x24\\x10\\xf4\\xe8\\xf0\\xaf\\x5a\\xea\\xc4\\xf1\\x5c\\x3a\\xd6\\x13\\xf8\\xbc\\x75\\xd8\\xcd\\xc3\\xd9\\x4b\\x79\\x0b\\x2a\\xa8\\x1b\\xce\\xf8\\x33\\x7f\\x6a\\x09\\x3c\\x0e\\xfd\\xf7\\xe7\\xcf\\x7f\\xfd\\xc3\\xd7\\x0f\\xe5\\x75\\xbf\\xfe\\xa1\\x70\\xde\\x7d\\x1c\\x28\\x58\\x05\\x7b\\x12\\x8c\\x80\\x64\\x10\\x09\\x3e\\xf4\\x61\\xc9\\x01\\xa5\\x70\\x27\\x50\\x07\\xee\\x05\\x72\\x2c\\x41\\x8e\\x7f\\x18\\x14\\x54\\x81\\x7b\\xf1\\x0b\\xe1\\x9a\\x27\\x81\\x9c\\xcd\\x62\\x7f\\x8b\\xaf\\xd1\\xe2\\x39\\x7f\\x66\\xca\\x35\\x77\\x0b\\xd7\\x9c\\x11\\xaf\\xb9\\x5b\\xb8\\x06\\x20\\x80\\x65\\x12\\x5b\\x87\\xd7\\x08\\x07\\x22\\xf0\\x38\\x84\\xcb\\x18\\x40\\xe4\\x8f\\x13\\x8a\\x9c\\x6b\\x0a\\xb5\\x07\\x49\\x4f\\xc2\\xad\\xfc\\xc6\\x93\\xfc\\x3a\\xf4\\xce\\xfb\\x4a\\xf5\\x5f\\xff\\x16\\xab\\xc4\\x26\\x71\\x73\\xc0\\x82\\xfe\\x04\\xdf\\x29\\x2e\\xe6\\x6d\\xbc\\xb5\\x88\\xc4\\x55\\xc2\\xd8\\x8b\\x9d\\x28\\x09\\xfc\\x00\\xc2\\x70\\x1f\\x84\\x72\\x30\\xeb\\x12\\xcb\\x4e\\x92\\xc2\\xe8\\x35\\xe3\\x88\\xf8\\x97\\x9e\\xb6\\xf5\\xcf\\x6c\\xd3\\xd5\\x15\\x6f\\xa9\\xab\\x02\\x2a\\xbc\\x80\\x43\\xd9\\xad\\xac\\x04\\x3f\\x3d\\x11\\x58\\x41\\x1e\\xf0\\x81\\x0a\\x50\\x07\\x5a\\x40\\x0f\\xe8\\x07\\x43\\xb8\\x25\\xf3\\xc1\\x62\\xb0\\x14\\xac\\x05\\x1b\\xc1\\x16\\xb0\\x03\\xec\\x01\\x07\\xc0\\xf5\\x24\\x5b\\xc3\\xc1\\x6b\\xf7\\xef\\xdd\\xbd\\x73\\xfb\\xd6\\xcd\\x9b\\x36\\xac\\x5b\\xbd\\x6c\\x7c\\x6c\\xe1\\x82\\xb9\\xa3\\x73\\x66\\x0f\\x0e\\xcc\\xec\\xed\\x9c\\xd1\\xd4\\x50\\x55\\x59\\x56\\x52\\x90\\xef\\xcd\\x31\\xa5\\xc4\\x47\\x86\\x20\\x15\\x6e\\x90\\xb0\\xd1\\x2a\\x85\\x6d\\x57\\x4d\\x3d\\xb8\\x14\\xad\\x44\\xa2\\x2b\\xcc\\xb1\\x78\\x2e\\x11\\x40\\x2c\\xa1\\x71\\x51\\x72\\xc2\\x3b\\x7d\\x70\\x87\\xd6\\x43\\x02\\xf2\\x27\\x07\\x0a\\xfc\\x97\\xbc\\xd6\\x2b\\x8d\\xe4\\x5f\\x17\\xc4\\x65\\x63\\x89\\x77\\x89\\x21\\x05\\x5c\\xb4\\x88\\x52\\x31\\xf5\\xb5\\x93\\x94\\xd0\\xeb\\x39\\x42\\x36\\x19\\xfc\\x85\\x53\\x5f\\x7f\\x59\\xe1\\xf5\\x56\\x54\\x7a\\xbd\\xe5\\x77\\x3a\\xbd\\x89\\x89\\x6a\\x75\\x91\\x67\\xa4\\x33\\x0d\\xdb\\xf3\\x2d\\x7a\\xbd\\x05\\x45\\x26\\xab\\x13\\x52\\x9c\\x05\\x59\\xf6\\xbc\\xec\\x0b\\xd7\\x15\\x2d\\x40\\x7f\\x5a\\x58\\x78\\xfe\\x9d\\x63\\x0b\\x98\\xd2\\x63\\x85\\x7c\\x79\\x92\\x46\\x93\\x54\\x61\\xb8\\xb9\\xf4\\xe6\\xc0\\xf1\\xc3\\xa5\\xc2\\x9f\\x11\\xa7\\x4e\\x5b\\xe2\\xe4\\x9b\\x8b\\xe8\\x0f\\xf3\\x65\\x21\\xfd\\x41\\x46\\xb7\\xdf\\xef\\x2e\\x22\\xff\\xac\\xb4\\xd9\\xd4\\x66\\x59\\x48\\xaa\\xd2\\x96\\xc6\\xff\\x6e\\xa5\\xc9\\x66\\x33\\x15\\x91\\x7f\\xda\\xe2\\x92\\xe3\\x12\\x32\\xec\\xd9\\xf6\\xdf\\x06\\xe6\\x3d\\xba\\xb8\\xb8\\x78\\xf1\\xa3\\x4c\\xff\\xed\\xbe\\x99\\x33\\x7d\\xb7\\xcf\\xe4\\x1d\\x09\\x2a\\x65\\xdc\\x4c\\xf8\\x1b\\x1f\\xfd\\xb9\\x50\\x56\\x4c\\x7f\\xd0\\x70\\xb4\\x3a\\xbd\\x65\\x37\\x7f\\x74\\x17\\x54\\xed\\xe2\\x8f\\x06\\x5f\\x00\\xc0\\x81\\xa8\\xc0\\x3b\\xec\\x63\\xb2\\xa5\\x80\\x01\\x16\\xaa\\x0f\\xb9\\x40\\x94\\x2f\\x3c\\x27\\x3b\\x2b\\x23\\xdd\\x1a\\xc3\\x22\\xc0\\x65\\xd9\\x42\\x18\\x8e\\x18\\x1f\\x8b\\x98\\x09\\x58\\x91\\xd3\\x4d\\x7b\\x5d\\xc8\\xc6\\xa2\\x54\\xeb\\x95\\x4e\\x06\\xf7\\x2e\\xf9\\x45\\xb3\\x50\\x7d\\xe0\\xc9\\xc0\\x23\\xe8\\x79\\x49\\xb8\\x3c\\x4c\\x65\\x37\\xa8\\x8d\\xe5\\xc3\\xbe\\xdc\\xc1\\x6a\\x1b\\xfc\\x25\\xb2\\xc4\\x19\\xb5\\xf2\\x38\\x4d\\x68\\x92\\x5e\\x29\\x7b\\xf3\\xcd\\x37\\x17\\xb0\\x2c\\x62\\x59\\x49\\xcb\\x05\\xc7\\x05\\x07\\xf3\\x9b\\xf3\\xf1\\x38\\x48\\x32\\x3a\\xc5\\xe3\\xf5\\x59\\x7c\\x23\\xd5\\xe6\\xe4\\x92\\x39\\x15\\x9e\\x2c\\x5f\\x4e\\x82\\x33\\xd3\\x1c\\x61\\x48\\x33\\x65\\x67\\xf5\\x1c\\x0b\\xb4\\xb3\\xa1\\x77\\xb0\\x00\\x81\\xa7\\x2f\\x9e\\x65\\x13\\xd9\\xdb\\x49\\xec\\x27\\x9e\\xff\\xc6\\x84\\x28\\x16\\x4d\\x91\\xf3\\xae\\x20\\x19\\xa3\\x79\\x9a\\x56\\xcd\\x26\\xe6\\x2e\\xbc\\x7b\\xc1\\xfc\\x7b\\x16\\xe6\\x42\\xe8\\x59\\x78\\xf7\\xfc\\x05\\xe4\\xd5\\x59\\x65\\x46\\xad\\xc7\\x5d\\x6b\\x57\\x92\\xbf\\x9e\\x5a\\x7b\\x2c\\xfc\\x08\\xf3\\x81\\xd5\\xd4\\x6c\\x7d\\x66\\xe1\\x1b\\x0b\\x9f\\xd9\\x86\\x5f\\x3c\\xbb\\x50\\x9d\\x37\\x82\\x8d\\x2a\\xf5\\x23\\xde\\x6f\\xf2\\x47\\x1b\\xec\\xf6\\x86\\xd1\\x7c\\x7a\\x96\\x77\\x00\\xc0\\xdc\\xcf\\x68\\x41\\x32\\x89\\x17\\x12\\x02\\xaa\\x01\\x82\\x2c\\xa4\\x91\\xd4\\xc4\\xe2\\x0d\\x87\\xc4\\x38\\xea\\x42\\x50\\x17\\x67\\x88\\x35\\x47\\x73\\x32\\x92\\x73\\xde\\x05\\x85\\x79\\x2c\\x92\\x9b\\x8b\\xbd\\x29\\xd5\\x31\\xf7\\x07\\x6e\\x87\\x29\\x45\\xd9\\x9e\\x1c\\x6d\\x66\\x4a\\xd4\\x73\\xd6\\x86\\xf1\\xca\\xfd\\xb7\\x6b\\x72\\xea\\x1c\\xfb\\x21\\x8e\\xbe\\x95\\x79\\xda\\x12\\xad\\x6e\\x85\\xce\\x16\\xef\\xc1\\x5d\\x7a\\xcd\\x12\\x6b\\x65\\x79\\x95\\x65\\x29\\xb5\\x8d\\xc6\\xb2\\x9f\\x30\\xe7\\x25\\x3f\\x10\\xdb\\x0a\\xee\\x13\\x93\\x8a\\xa3\\x32\\x41\\x6f\\x96\\xea\\xa1\\xd3\\x13\\xec\\x1a\\xfa\\x3c\\xf1\\x60\\x4d\\x7b\\x84\\x39\\x7f\\xe2\\xa9\\xa7\\x5e\\x86\\xda\\xa3\\xc7\\xd5\\x69\\x1e\\x9d\\x21\\xc7\\x6e\\x4f\\x8a\\xc4\\xc6\\xfe\\x2e\\x15\\x7e\\x97\\xec\\x74\\x38\\x12\\x23\\x12\\x62\\xc3\\xd9\\x4f\\x30\\x0a\\x17\\x7e\\xa3\\xf3\\x65\\x27\\x2b\\xe3\\x94\\xd1\\xf1\\x3a\\x1c\\xf8\\x54\\xe2\\x4c\\x21\\xaf\\x35\\xba\\x18\\xd2\\x62\\xf6\\x13\\xf6\\xa4\\xe4\\x15\\xfc\\xec\\x38\\xfc\\xec\\x28\\xe9\\xe4\\xb3\\x8d\\x4e\\x2e\\xb8\\x64\\x3d\\xc1\\x26\\x2a\\x99\\x2f\\xe8\\x23\\x95\\x2f\\x40\\x06\\x16\\x14\\xb4\\xfa\\xb8\\x4d\\xd7\\xa8\\xf4\\xe9\\x6a\\xf2\\x90\\x1f\\x96\\x6d\\x41\\x09\\x49\\x86\\xa4\\xee\\x19\\x95\\x29\\xf6\\x14\\x39\\x53\\x04\\xd0\\xc5\\x0b\\xec\\x97\\x6c\\x98\\xe4\\x26\\x7c\\xef\\x50\\x7c\\xef\\x90\\x4b\\xef\\x8d\\xe7\\x1c\\x1b\\xf6\\xf6\\x91\\x3b\\xdf\\x86\\xfa\\xbb\\xf8\\x1d\\xb7\\xff\\xf1\\x3d\\xf6\\xcb\\x03\\x07\\xce\\xf7\\xc0\\x50\\xc1\\x5e\\x1c\\xc2\\x7e\\xc2\\xc5\\x4b\\xae\\x9b\\xb8\\x16\\x09\\x72\\x92\\x13\\x7a\\x85\\xd1\\x23\\xfb\\x5d\\x50\\x8f\\x2f\\x7f\\x87\\x71\\xbe\\xf7\\xa7\\xdb\\xb8\\x0f\\x7f\\x38\\x70\\x00\\x1e\\xe3\\xff\\x4d\\xaf\\xcd\\x60\\x6f\\x64\\x4e\\x48\\x4e\\x01\\x25\\x88\\xc7\\xd7\\xc6\\xa9\\x58\\x7a\\xed\\xb4\\xd3\\x18\\x41\\x5a\\x30\\x27\\x32\\xda\\x57\\xd7\\xd5\\xad\\x69\\xcb\\x78\\x2a\\xda\\x90\\x6b\\x49\\xcb\\xd5\\x47\\xa7\\xbd\\xf8\\x87\\x1f\\xb8\\xe3\\x45\\xa3\\xb5\\x16\\x9c\\x01\\xb0\\x48\\x93\\x65\\xc0\\xce\\xcc\\x2c\\x4d\\xf1\\x1f\\x04\\x3b\\xd8\\xc7\\xec\\x02\\xf4\\xbd\\x24\\x7d\\x42\\xe6\\x4e\\x5a\\xf7\\x71\\xbd\\x3e\\x8e\\xb7\\xb8\\x12\\x37\\x6b\\x75\\xf0\\x0f\\xec\\x59\\x47\\x7f\\x6b\\xa9\\x72\\x86\\x67\\x79\\xd5\\x6a\\x2a\\xf7\\x0d\\x34\\xf7\\xcd\\x3e\\x20\\x05\\xa1\\x24\\x8b\\x43\\x28\\x64\\x29\\xea\\x94\\x45\\x4b\\x82\\x61\\x42\\xb3\\x18\\x38\\x61\\xa0\\xa6\\x53\\xcd\\xa8\\x93\\x4e\\xf0\\x7e\\x76\\xf0\\x49\\x33\\xbf\\x86\\x7f\\xf8\\x00\\xfe\\xfe\\x6b\\x9e\\x85\\x9d\\x0f\\x7f\\xf7\\x1d\\xbb\\xef\\xfc\\x52\\xf8\\x08\\x3c\\x4d\\xe2\\x0f\\x9f\\x21\\x99\\x20\\xf0\\xbd\\x63\\x81\\x0e\\x64\\x10\\xff\\x5c\\x30\\x97\\x91\\x48\\x42\\x27\\xe6\\x34\\x12\\x1d\\xde\\xe4\\x31\\x4a\\x25\\x00\\x19\\xe9\\x86\\x54\\x7c\\x8e\\xd6\\xc6\\xa9\\xf0\\xa5\\x0a\\x9d\\x4c\\x46\\x33\\x19\\x25\\x33\\x41\\x48\\x03\\xe9\\x30\\x46\\x3e\\x11\\x2a\\x69\\x9e\\xb4\\x2d\\x3c\\x03\\x9f\\xef\\x3d\\xba\\xb1\\x66\\xb8\\x2d\\xa7\\xc9\\x93\\x54\\xbe\\xfa\\xde\\xbe\\xaf\\xbf\\xb6\\xd5\\x79\\x75\\x49\\x39\\xd5\\xf6\\xc0\\x5f\\x2d\\x35\\xb9\\xba\\xd4\\xbc\\x3a\\xeb\\xdb\\xec\\x3e\\x98\\x5a\\xbf\\xba\\xb3\\x6b\\x9d\\x36\\x3c\\xbb\\xbc\\x3d\\xab\\x7b\\x63\\x93\\x11\\x5e\\xe0\\x4f\\xc7\\x1a\\xbd\\x26\\x6b\\xa1\\x25\\x16\\x3e\\x18\\x9d\\xea\\x31\\xa7\\x7b\\xf5\\x91\\x64\\x3f\\xef\\xc7\\x72\\xa1\\x0a\\xcb\\x05\\x0b\\xb5\\xb3\\x23\\xa2\\xc8\\x70\\x63\\x24\\x4f\\x04\\xc3\\xb1\\x8b\\x44\\x04\\xb8\\x98\\x79\\xbf\\x9c\\x06\\x8b\\x59\\x80\\x05\\x13\\x2f\\x58\\x0c\\x52\\xdc\\x59\\x30\\x48\\x1d\\xe5\\x9a\\x64\\x73\\xbd\\x84\\xc8\\x88\\xad\\x0c\\x69\\xdd\\xfa\\xf0\\xc0\\xb2\\x9f\\x6f\\xad\\x84\\xb0\\x66\\xfb\\xf3\\xe3\\x23\\x0f\\x5f\\xd3\\x18\\x7a\\x36\\x74\\xe3\\x32\\xff\\xec\\xb2\\x54\\x08\\x75\\xa5\\xb3\\x4b\\x5d\\x9d\\x7e\\x8b\\x04\\x6e\\x1b\\x3e\\x3c\\x27\\xbb\\xf9\\xc0\\xc9\\xb1\\x5d\\x4b\\x4e\\xed\\x6f\\x76\\xcf\\x3d\\x3c\\x34\\xba\\x04\\x27\\x7c\\x2f\\xdf\\x5d\\xb1\\xb6\\xd7\\x1d\\x9f\\xd3\\x92\\x4b\\xe7\\x27\\x8d\\x4b\\x1d\\xc4\\x7d\\x1e\\x01\\x34\\xd4\\x7b\\x07\\x38\\xc8\\x20\\x10\\xec\\x63\\x56\\xe8\\xe3\\x48\\xdc\\xb2\\x48\\x4d\\x64\\x82\\x3c\\x0a\\x17\\x0b\\xd7\\x49\\xc4\\xfe\\x55\\x13\\xdf\\x27\\x23\\x27\\x3e\\x45\\xda\\xb3\\x47\\xe1\\xe1\\xa5\\xaf\\x5f\\xdf\\x0a\\x61\\xfb\\xa1\\xd7\\x96\\x1c\\x3d\\x5a\\xb9\\xa4\\xd1\\x06\\xb1\\xa7\\xab\\x06\\x77\\x60\\xc3\\xde\\x93\\x4b\\xc7\\x97\\x9f\\xda\\x5d\\xc7\\xbc\\x75\\xe1\\x1c\\xcc\\xec\\x58\\x5b\\xbf\\xa4\\x7a\\x4d\\x97\\x03\\x52\\x1d\\xe8\\x49\\x5c\\x87\\x74\\x5c\\x87\\x30\\x1a\\xa7\\xc5\\x00\\x96\\x63\\xd8\\x41\\xc0\\x01\\xc1\\x8e\\x37\\x61\\xbc\\xbb\\xd4\\xe7\\xa1\\x53\\x06\\x7f\\x99\\xdf\\x07\\xfe\\x80\\x76\\x5c\\xd8\\x81\\xcf\\x03\\x6b\\x90\\x1d\\x8f\\xcc\\xa9\\x97\\xd8\\x7d\\x27\\xf8\\xaf\\x04\\xfd\\xea\\x17\\xf8\\xde\\x5e\\x7c\\xef\\x10\\x9a\\xcb\\x46\\x00\\x0f\\x0e\\x4e\\x44\\xb4\\x5d\\x3a\\x53\\x05\\x4f\\x0a\\xbd\\xe7\\x97\\x81\\xdf\\x7e\\xc3\\x8c\\x05\\xb6\\xa2\\x2c\\xc2\\x9a\\x43\\xee\\xf7\\x5b\\xe1\\x7e\\x0b\\xf0\\xf8\\x36\\xe1\\xf1\\xb5\\x93\\x2c\\xbe\\x16\\x02\\xb8\\xa1\\x31\\x4d\\x00\\x31\\x12\\x86\\xf0\\xa8\\x88\\x23\\x2c\\x01\\xd4\\x6a\\x34\\x65\\xa4\\xe5\\xca\\xe0\\x28\\xe3\\x68\\x83\\x2b\\x8f\\xf2\\xc4\\x2e\\xe1\\x21\\x0a\\x20\\xdb\\x94\\x3a\\xb4\\x76\\x5f\\xdd\\x6a\\x9c\\x81\\x18\\xc2\\xea\\x6d\\x2f\\x2c\\x9b\\xff\\xf0\\xba\\x2a\\xd9\\xe7\\x91\\x1b\\x47\\xcb\\x86\\xcb\\x0d\\xfa\\xca\\x45\\x75\\xba\\x92\\xfc\\xec\\x18\\xf8\\x2f\\xf8\\xb7\\x1b\\xd2\\x0a\\xad\\xaa\\xa6\\x7d\\xa7\\x96\\xe0\\xb1\\x3e\\xd0\\xe4\\x1a\\xda\\xdf\\x3d\\xa7\\xc7\\xdd\\xbb\\xb6\\x6c\\x4f\\xd9\\xda\\x99\\x1e\\x49\\x84\\x32\\xfa\\xb7\\xb8\\x8b\\x21\\xcd\\xe5\\x17\\xca\\xee\\x9b\\x96\\xd7\\x47\\x74\\xfd\\x80\\x89\\x1e\\xbe\\x2c\\xaf\\x4f\\xe8\\x17\\xfc\\xcc\\x2f\\xbe\\x80\\xf7\\x7c\\x01\\xff\\xc2\\x9b\\xd9\\x7d\\x7c\\x38\\xfc\\x86\\xdc\\x0f\\x77\\x09\\x1b\\xc5\\xee\\x0d\\xde\\x0f\\x70\\x82\\x95\\x9a\\x85\\xc1\\x74\\x28\\x85\\xcc\\x94\\xfb\\x29\\x84\\xf1\\xa2\\x2e\\xa4\\xdf\\x32\\xc5\\x38\\x26\\xd0\\x76\\xe1\\x24\\x34\\xf0\\xef\\xb2\\x7b\\x5f\\x0b\\x80\\xd7\\x5e\\x63\\x80\\xd0\\xbf\\x37\\xe1\\xfe\\x95\\xe1\\x3a\\xaa\\x69\\x2c\\x2d\\x40\\x60\\x09\\x09\\x7d\\x5d\\x22\\xd2\\x7d\\x94\\xc3\\x3a\\x42\\x31\\xcd\\x12\\x7b\\xf2\\x04\\xcf\\xda\\x44\\x26\\x0e\\x46\\xf5\\x2f\\x08\\x2b\\x57\\xdc\\xda\\x3e\\x70\\x64\\x45\\x05\\xf7\\xaf\\x14\\x4f\\x9d\\xdd\\x52\\xee\\x4c\\x82\\xec\\xbe\\x40\\x38\\xce\\x12\\xe7\\xcd\\x9c\\x73\\xcb\\x3c\\xef\\x0c\\x57\\xbc\\xb6\\xa0\\x23\\x97\\x60\\xd6\\x09\\x9f\\x07\\x7e\\x56\\x38\\x79\\x56\\xa8\\x04\\x32\\x41\\x67\\x00\\x04\\x5d\\x8c\\xd0\\x1f\\x31\\x0a\\x79\\x0c\\x7d\\x96\\x94\\xf6\\x85\\x47\\xc8\\x01\\x95\\xb0\\xf3\\xec\\xd9\\xc5\\x70\\x06\\x4c\\xe3\\x7d\\xf0\\x4f\\xfc\\x87\\xf0\\xfd\\xad\\xfc\\xfd\\xf8\\x11\\xe7\\xb7\\x63\\x83\\xc7\\x77\\x81\\x75\\xb4\\x1d\\x3f\\xc3\\xf7\\xee\\x63\\xf7\\x09\\xb9\\xce\\x68\\xee\\x39\\xf2\\x71\\xb7\\x38\\xe3\\xa2\\x19\\x99\\xda\\x66\\x24\\x7d\\xe2\\x84\\x8f\\xa0\\xc7\\x2f\\x74\\x7e\\xf7\\x12\\x9e\\xb5\\x84\\xd7\\x85\\xf8\\xfe\\x48\\x9d\\xc8\\x5a\\x90\\x11\\xca\\x3a\\x58\\x23\\x12\\x47\\xb3\\xd4\\xa5\\x2e\\xca\\x57\\x9a\\xda\\x49\\x76\\x79\\x6a\\xa7\\x45\\xaf\\xc0\\xc4\\xf7\\x8f\\xdf\\xfd\\xec\\xfb\\xd0\\x80\\x66\\xa0\\xbc\\xf3\\x4b\\x99\\xbc\\xc0\\x5f\\x90\\xed\\xc2\\x29\\x76\\x1f\\xad\\xd7\\x63\\xf8\\xfe\\xb1\\xf8\\x35\\xcd\\xa5\\x25\\x45\\xb8\\x62\\x84\\x2a\\x17\\xff\\xed\\x82\\xc1\\x26\\xcb\\x63\\x68\\xf7\\xea\\xf4\\x90\\x72\\xab\\x31\\x4e\\x36\\xf6\\x13\\x7e\\x94\\xfd\\xfc\\x53\\x78\\x13\\xf3\\x19\\x13\\x7a\\xe1\\x5b\\x76\\xdf\\x85\\x7f\\x33\\x61\\xb8\\x52\\x4b\\xf1\\x58\\x75\\x05\\x75\\xa0\\x24\\x5f\\xc2\\x44\\x90\\x30\\xc3\\x88\\x73\\xde\\x82\\xbd\\x60\\xe4\\x66\\xd3\\xed\\x8d\\x57\\xd0\\x8c\\xba\\xca\\x36\\x3d\\xb7\\x7c\\xc5\\x73\\x98\\x1c\\x0c\\xdb\\x1e\\x96\\x3f\\xbf\\xa9\\xfc\\x4c\\x72\\xf1\\xac\\x8a\\x4a\\x6c\\x74\\x48\\x2a\\x1a\\xaa\\xac\\xc0\\x46\\x08\\x24\\x59\\x78\\xea\\x60\\x5b\\xdb\\xc1\\x53\\x0b\\x37\\x2e\\x3c\\x75\\x7d\\x7b\\xfb\\xc1\\xd3\\x0b\\x61\\xc9\\xda\\x81\\xfc\\xfc\\xc1\\xb5\\xbe\\x4d\\xbe\\xb5\\x83\\x05\\xf9\\x83\\xeb\\x7c\\x82\\x5c\\x9b\\x79\\xb1\\x80\\x9d\\x8b\\xeb\\x96\\x00\\xb2\\x40\\x1a\\x21\\xf7\\x13\\x98\\xe9\\x11\\xa8\\xbc\\x72\\x35\\x2d\\x62\\x35\\x71\\xe8\\x96\\x59\\x72\\xa9\\x12\\x97\\xc1\\x5c\\xba\\x3a\\xd9\\xb9\\x89\\x39\\x35\\x59\\xbf\\x38\\xfc\\x65\\x51\\xc9\\xca\\x13\\xdb\\xab\\x21\\xac\\xda\\xfe\\xf2\\xca\\x15\\x27\\xf0\\x3a\\x3d\\x03\\x53\\xcb\\x47\\xab\\xaa\\x47\\xcb\\xb4\\xba\\xb2\\xb9\\xd5\\x55\\x98\\x7f\\x15\\x22\\x49\\xd9\\xfa\\xc5\\x7d\\x86\\xbb\\x57\\x9c\\x8a\\x9c\\x71\\xed\\xe9\\xb1\\x8d\\x63\\xa7\\xaf\\x6b\\x9d\\x71\\xdd\\x2b\\x63\\xb0\\x7c\\x5d\\x5f\\x6e\\x6e\\xff\\xba\\xb2\\x4d\\x65\\xeb\\xfa\\xbd\\xb9\\xfd\\xeb\\xcb\\x68\\xbd\\xf7\\x09\\xe3\\x4f\\x59\\x02\\x28\\xe7\\x35\\x60\\xa1\\x88\\xc9\\x1f\\x12\\xe5\\x56\\x70\\x0a\\xa4\\xe9\\xac\\xba\\xa0\\x3c\\xd4\\x4f\\x61\\x05\\x80\\x4a\\x1d\\x74\\x06\\x55\\x65\\x3d\\xea\\xff\\xfb\\x19\\xf8\\x5a\\xdf\\xd1\\x75\\x55\\x24\\x54\\x0e\\xc6\\xf2\\x17\\xf9\\xcc\\x3f\\xd9\\x1b\\x0b\\xf4\\xa9\\xf9\\x4d\\x19\\x7f\\x22\\x09\\xe5\\xb0\\x74\\xb6\\xb6\\x6f\\xeb\\xf5\\xcf\\xae\\xcf\\x53\\xf1\\xa9\\xa1\\x68\\x1e\\x54\\xda\\x4a\\xec\\x19\\xa5\\x36\\x15\\x99\\x2f\\xdb\\xf0\\x18\\xd7\\xe2\\x7e\\x2c\\x24\\xa7\\x27\\x10\\x64\\x19\\x01\\x2c\\x87\\x58\\x8e\\x20\\xd4\\x29\\x15\\xb4\\x98\\xfa\\xa3\\x9c\\xa9\\xcb\\xcb\\xcd\\x71\\x66\\xda\\x0d\\xb1\\x19\\x12\\x3c\\xbf\\xa1\\x9b\\x9e\\xb4\\x5d\\x97\\xa7\\x59\\x27\\x10\\x43\\xa1\\xae\\xc2\\xf2\\x15\\xf6\\x36\\x66\\x16\\xb4\\x55\\xf5\\x65\\x77\\xdc\\xbe\\xb2\\xa2\\x61\\xe3\\xdd\\x6d\\x78\\x63\\x6e\\x64\\xcf\\x41\\x63\\x71\\x8b\\xdd\\xd6\\x58\\x68\\xb0\\x57\\xf7\\x67\\x77\\xdc\\xba\\xa2\\xac\\x71\\xcb\\x83\\x5d\\x5d\\x8f\\xed\\xed\\xc6\\x5f\\xd9\\xab\\xfb\\xb2\\xed\\x2d\\xc5\\x66\\x98\\x63\\xf1\\xa6\\x25\\x86\\xab\\xdc\\xcd\\x2b\\x3b\\x5a\\xd7\\xb7\\x58\\xac\\x9d\\x3b\\xfb\\x71\\x06\\x2e\\x75\\x8c\\xc1\\x6d\\x48\\x73\\x9b\\x12\\xc2\\x95\\xde\\xf6\\x35\\xed\\x9d\\xeb\\x1a\\x8d\\xe6\\xae\\xfd\\x23\\xee\\x1a\\xbb\\x22\\x46\\xef\\xa6\\xbc\\xfb\\x00\\xb0\\x9b\\x89\\x2e\\x43\\xd7\\x28\\x83\\x20\\x80\\xcc\\x94\\x4d\\x41\\x90\\x32\\x62\\x56\\xb1\\xcd\\xfc\\xe0\\xbf\\xf8\\x11\\xd6\\x8a\\x37\\x30\\x27\\xf3\\xd6\\x09\\x72\\xfd\\x03\\xb8\\x6f\\xc8\\xde\\xa2\\x24\\xf2\\x8f\\xc5\\xd7\\x23\\x88\\xa5\\x15\\x9a\\xb2\\xb5\\x2b\\x01\\x39\\xf7\\x71\\xa4\\x2f\\xe4\\x41\\x61\\x25\\x77\\x06\\xed\\x9b\\x0a\\xd6\\x0b\\x2b\\xd6\\xdc\\x3f\\x38\\xeb\\xe8\\x9a\\x72\\xf8\\x25\\x5a\\x3a\\x32\\x32\\x06\\x11\\x5e\\x5b\\x17\\x87\\x6e\\x9e\\xeb\\xc1\\x46\\xe6\\x21\\x06\\x5e\\xb8\\xb8\\x70\\x6c\\x6c\\x21\\x71\\x3b\\x10\\xd8\\x02\\x7b\\x04\\x3f\\x4b\\x46\\x72\\xa0\\x11\\x11\\x45\\x24\\x15\\xe1\\xb7\\x17\\xab\\xab\\xc0\\x12\\x45\\x34\\x54\\x41\\x27\\xea\\x56\\x2a\\x61\\x32\\xcf\\x57\\x7f\\xcd\\xd7\\xf0\\xb0\\xb4\\xb3\\x9d\\xa9\\x3b\\xbf\\x14\\x5f\\x2e\\xc4\\x30\\xe2\\x7b\\x61\\x81\\x25\\xe4\\x8d\\x0b\\x0d\\xe6\\x8d\\x63\\x10\\xb9\\x1b\\x12\\x66\\x56\\x8c\\x7c\\x42\\xb8\\x60\\x1d\\x95\\xc1\\xff\\x13\\xbb\\x2f\\xd3\\x39\\xf6\\xfe\\x5f\\xde\\x3e\\x78\\xed\\x3b\\x7f\\xf9\\x60\\x6c\\xfb\\xef\\xe1\\x2f\\xd0\\x2b\\xe7\\x97\\xa2\\x37\\x02\\xb9\\x58\\xf6\\xf9\\xd0\\x09\\xe1\\xde\\x0d\\xf8\\xde\\x6b\\xc8\\x1e\\x43\\x64\\x6a\\x88\\x84\\x61\\xc4\\x64\\x7d\\xb0\\x4b\\xbc\\x37\\x16\\x5c\\xb4\\x67\\x69\\xa0\\x38\\xc3\\x50\\x91\\x3a\\xf3\\x1b\\xa8\\xe6\\x77\\xc1\\x5d\\xfc\\xff\\x5e\\xbc\\xc0\\x7f\\x06\\xaf\\xe1\\x77\\x42\\x25\\xfa\\x0f\\xbc\\x21\\xf0\\x52\\xe0\\x69\\x78\\x1b\\x3f\\x1b\\xd5\\x22\\x3f\\xbd\\xbf\\x9f\\xe4\\x33\\xa1\\xfd\\x90\\xe8\\x8b\\x97\\x30\\xe8\\xf2\\x8e\\xc0\\x37\\xa7\\x1d\\x01\\x75\\x24\\x84\\x11\\xdf\\x79\\x21\\x4c\\x85\\xa1\\x7c\\xcd\\x39\\xbe\\x09\\x86\\xa2\\x05\\x48\\x17\\x90\\xf1\\xf3\\xe1\\x9d\\xe8\\x2b\\x7c\\xc9\\x31\\x7c\\xaf\\x6a\\x22\\x0b\\x89\\xac\\x0d\\x81\\x02\\x1f\\x07\\xcd\\x81\\x46\\xd8\\x38\\x06\\xc5\\x90\\x0a\\x2a\\x6c\\xe9\\x6c\\xa0\\x12\\xdb\\x45\\x91\\x4b\\xf0\\xcf\\x68\\xfc\\xc2\\x20\\x1a\\x0c\\x3c\\xcc\\x5c\\xf3\\xd2\\x4b\\x3b\\x99\\xf2\\x13\\xdb\\xe8\\x72\\xa8\\x60\\xdf\\x61\\x4e\\x49\\x78\\x3c\\xf2\\x16\\xac\\xb3\\x6b\\xaf\\xaa\\xb3\\x8b\\x0c\\x09\\xe2\\x99\\x44\\xcd\\x9c\\x4a\\x6f\\x59\\x51\\x5d\\xb3\\x62\\x46\\xfa\\xc3\\xd1\\xfa\\xdc\\x34\\x6c\\x03\\x8a\\xfe\\x83\\xb4\\xca\\x97\\x90\\xe1\\x33\\x4a\\xaf\\xbb\\x36\\xde\\x92\\xa3\\x09\\xe5\\x8e\\x3b\\x9a\\xf2\\xb4\\xda\\xbc\\x26\\x87\\x2a\\x2d\\x39\\x26\\x26\\x39\\x4d\\x15\\xb7\\x96\\x51\\x27\\xc8\\xd5\\x11\\x92\\xba\\x86\\x92\\x44\\xb3\\x26\\x8a\\xf1\\x90\\x3e\\xe2\\x01\\x60\\x5a\\x71\\xbb\\x24\\xc4\\x7e\\x09\\x60\\x16\\xd9\\xcc\\x39\\x97\\xd1\\xc9\\xb4\\x9e\\xe5\\x6f\\x41\\x79\\x89\\xcc\\xd2\\x81\\x93\\xcf\\xe1\\x72\\xf7\\x51\\xdd\\xe8\\x76\\x6a\\xbb\\x53\\xd2\\x72\\xb8\\x71\\x54\\x70\\xd0\\xb8\\x43\\xbd\\x20\\xff\\x68\\xf5\\x38\\x1d\\xeb\\xbd\\xb0\\x1d\\x3e\\xa8\\x2f\\xc9\\x4e\\xd2\\x64\\x95\\x98\\x06\\xc7\\x98\\xb3\\xa8\\x62\\xd5\\xdd\\x33\\xbb\\x6e\\x59\\x52\\x92\\x5e\\x37\\xc7\\xcb\\xff\\x80\\x6a\\x71\\x9c\\x64\\x8a\\xbf\\xac\\x4c\\x6f\\xc8\\xb7\\xa8\\xe0\\x48\\x4f\\xe7\\x81\\xd9\\x1e\\x7b\\xd7\\xe6\\xd6\\xa2\\xf1\\xd1\\xa1\\xac\\x3f\\x03\\x08\\x1e\\xc7\\xeb\\xc5\\x86\\x9f\\xe7\\xc3\\xcf\\xb3\\x28\\x21\\x39\\x07\\x4d\\x49\\x7a\\x7e\\xc9\\xf3\\xa6\\x8b\\x07\\x41\\x9c\\xc1\\x3f\\x6f\\x24\\x1a\\x7a\\xa2\\xa3\\xc2\\x6a\\xf0\\xe7\\xe8\\xd0\\x19\\x54\\xbd\\xe2\\xa6\\x26\\x2c\\x33\\xca\\x53\\x5c\\xd5\\xb6\\xac\\xe6\\x3c\\x5d\\xed\\x86\\x7b\\x3a\\x9b\\x6e\\x5d\\xdb\\x80\\xce\\xa2\\x54\\x4f\\xb5\\xd5\\x56\\xeb\\xd1\\x9a\\x8a\\x67\\xd8\\x37\\xa2\\x07\\x14\\xe6\\x02\\x8b\\xc1\\x63\\x8a\\x8d\\xd6\\x3a\\x52\\x9b\\x57\\x37\\x5b\\x2c\\x2d\\x1b\\x5a\\x33\\x1b\\x8a\\x33\\xa3\\x23\\xed\\xfe\\x2e\\x6f\\xfb\\xa6\\x36\\x9b\\xb9\\x65\\x73\\x8f\\x31\\xd7\\x14\\xab\\xb4\\x14\\x9a\\x71\\x5e\\xf1\\x18\\x80\\xc0\\x01\\x00\\xb0\\xfc\\xdb\\x47\\x7c\\xf7\\x78\\x3c\\x23\\xc2\\x42\\x58\\x94\\x35\\xcd\\xe3\\xfe\\xd8\\x6d\\xb7\\x7d\\x1e\\xf8\\x43\\x08\\xb2\\xfd\\x3b\\xf0\\x27\\x58\\xac\\x81\\xcf\\x9f\\xfc\\xfe\\xfb\\x9b\\x50\\x20\\x60\\x87\\x8f\\x13\\x6e\\xe3\\x67\\x71\\xbb\\xb5\\xf8\\x1e\\x56\\xdc\\x6e\\x39\\xc4\\xed\\x56\\x10\\x6d\\x48\\x2a\\xb8\\xc3\\x27\\xdb\\xa9\\x52\\x5d\\xd2\\x1d\\x7f\\xa9\\x46\\xa7\\x78\\x4e\\x67\\x9a\\xe7\\xed\\x39\\x34\\x9a\\x5b\\xb8\\xe4\\xae\\xa1\\x96\\x9b\\x56\\xd5\\x4b\\xbf\\x88\\x58\\xd0\\xec\\xa8\\x71\\xc4\\x69\\xf3\\x9b\\xb3\\x74\\x2e\\x7b\\x5a\\x0c\\xca\\x47\\x2d\\xaf\\x7d\\x2b\\xd7\\xb8\\xe6\\x1c\\xe8\\x6c\\xbf\\x6e\\x5e\\x7e\\x7a\\xdb\\xfa\\xe6\\xfa\\x52\\x5d\\x6e\\x5d\\x7a\\x66\\xad\\x2b\\x29\\x14\\xcf\\x0e\\xca\\xf9\\x8d\\xeb\\x50\\xc0\\xde\\x0c\\x52\\x40\\x0e\\x6e\\x87\\x55\\xab\\xa0\\xf3\\x52\\xa9\\xa7\\xa9\\x6c\\x3d\\x53\\xeb\\x41\\xb9\\xef\\x19\\x7a\\xe8\\x98\\x12\\x2a\\xc4\\xac\\x8a\\x6a\\x3f\\x34\\x5e\\x1d\\xea\\xd8\\xdd\\xdc\\xb1\\x7b\\xd0\\xe9\\x5f\\x7a\\xe7\\xcc\\x39\\xf7\\xaf\\x28\\x81\\xfd\\x0f\\xff\\xeb\\xd0\\xef\\xf4\\x3e\\xb7\\x35\\x22\\xde\\x59\\xef\\xb2\\xd7\\xe4\\x24\\x25\\x3a\\xab\\xd9\\x9b\\x5f\\x81\\xa9\\x75\\xab\\x3a\\xb2\\x0b\\x60\\xfe\\xe8\\x81\\xd6\\xae\\xeb\\xe7\\xe5\\x95\\xac\\x7e\\x78\\x5e\\xc3\\x91\\xaf\\xef\\x9d\\x01\\x03\\x8f\\xca\\x93\\x2c\\x38\\xd4\\xb5\\xb7\\xc2\\xa2\\xcd\\xad\\x4d\\xb7\\xd7\\xb8\\x92\\x00\\x04\\x8f\\x92\\x18\\x61\\x71\\xce\\x92\\x3e\\x22\\x96\\x44\\x22\\x77\\x4b\\x31\\x27\\x06\\x62\\x03\\x23\\xcc\\x0d\\xac\\xf4\\xfc\\xf7\\xcc\\x2f\\x4f\\x09\\x5c\\x35\\xaf\\xe0\\xf6\\xa4\\xe3\\xb9\\x64\\x06\\xf9\\xa0\\x11\\xdb\\xda\\x6b\\x7c\\xee\\xf4\\xd4\\x48\\x62\\x6b\\xbf\\x74\\xfa\\xd0\\xd6\\x4c\\xee\\x41\\x4c\\xb0\\x77\\xc5\\xa6\\x5d\\xfe\\x9e\\x8d\\xd6\\x64\\xfa\\xcc\\xf6\\x5a\\x77\\x4a\\xd5\\xea\\xdb\\xdb\\xda\\xee\\x58\\x5d\\x9d\\xe2\\xae\\x4d\\x37\\xfb\\x32\\x13\\xfc\\x63\\x18\\x0e\\x79\\x68\\xac\\xf4\\x0f\\x5a\\x4f\\x95\\x39\\xad\\xd2\\x95\\xa2\\x75\\x57\\xa6\\x99\\x2b\\xdd\\x38\\xb5\\x55\\x46\\x91\\xde\\x50\\x60\\x8f\\x8f\\xb7\\x17\\x19\\x0c\\x85\\xf6\\x04\\xa6\\xdd\\x5e\\xef\\x73\\xc6\\x28\\x5c\\x15\\x1d\\xce\\xf6\\x0d\\x33\\xd2\\xd2\\x66\\x6c\\x68\\x77\\x76\\x54\\xb8\\x15\\x31\\x4e\\x5f\\x9d\\xbd\\x65\\x4d\\x8b\\xc5\\xd2\\xbc\\x36\\xf0\\x60\\x5a\\xa1\\x45\\x89\\x27\\x5a\\x5a\\x5a\\x61\\x1a\\xfe\\x5b\\x80\\x74\\x7a\\xb7\\x49\\xa1\\x30\\xb9\\x31\\xf0\\xda\\xac\\xc4\\x94\\x6a\\x82\\x1e\\xf3\\x2c\\xf6\\x0b\\x25\\xe1\\x76\\xa6\\x80\\x6c\\x3c\\x6e\\x69\\xda\\x24\\x39\\xca\\xa2\\xe8\\xd3\\xa0\\xf3\\x5c\\xdc\\x5b\\xe9\\xaa\\xc1\\x34\\xea\\x78\\x63\\x71\\x4d\\x6e\\xb3\\xf0\\xba\\xd6\\xfd\\xf3\\x4b\\x43\\xb2\\x36\\x95\\x77\\xec\\x1b\\x72\\x97\\x2c\\xbd\\xa3\\x6f\\xf6\\xdd\\xe3\\x85\\xb0\\xe7\\x81\\x73\\x37\\x29\\xbe\\x28\\x1b\\x4e\\x80\\xf1\\xd9\\xd5\\x0e\\x7b\\x75\\xb6\\x26\\xc1\\x59\\xfd\\x34\\x4c\\x2e\\x5b\\xdc\\x6c\\x77\\x78\\x86\\x0f\\x74\\x75\\x1e\\x5e\\x5c\\x5c\\xb6\\xee\\xf8\\xc2\\x8a\\x7b\\xcf\\xdd\\xd9\\x08\\x5f\\x86\\x6b\\x0a\\x33\\x66\\x38\\x3a\\x4a\\x4c\\x86\\x82\\x26\\x8c\\xe7\\xc9\\xd5\\xd2\\xba\\x41\\xef\\xc5\\x7f\\x33\\x37\\x31\\x5a\\xa0\\x04\\x7a\\x5c\\xb7\\x94\\x38\\xd1\\x06\\x36\\x4d\\xd5\\x9b\\x6a\\x44\\x65\\x6e\\x4a\\x6f\\x5a\\x5c\\x8a\\x9f\\x94\\x4e\\xfe\\x96\\x8e\\x35\\xa7\\x3f\\x57\\x9c\\xeb\\x29\\x22\\xbf\\xb0\\xa8\\x6d\\x5d\\xb3\\xd9\\xdc\\xbc\\xae\\xed\\xc6\\xd6\\xf5\\xa4\\xdf\\xd6\\xb7\\x46\\x74\\x37\\x35\\x75\\x3f\\xda\\xdb\\xd8\\x48\\xa2\\xbc\\xfa\\x00\\x40\\x1f\\x30\\x8a\\x4b\\xe4\\x9a\\x14\\xcb\\x35\\xf4\\xc1\\xb3\\xbf\\x80\\x8b\\x14\\xa8\\xc0\\x71\\xdd\\x4a\\x52\\x2f\\x37\\xfb\\x36\\xf3\\xa2\\x64\\xe3\\x7f\\xb5\\x9b\\x38\\xa5\\x7a\\xe6\\x45\\x7b\\xeb\\xaa\\x9a\\xda\\x55\\xad\\xf6\\xc7\\xa2\\xf5\\x5e\\x6a\\x37\\x99\\xf3\\xf4\\x03\\x1b\\xb9\\xe3\\x59\\xcd\\xf9\\x5a\\xb2\\xc4\\x54\\x96\\x94\\x98\\x98\\x14\\x8b\\xea\\x37\\xc2\\xfe\\x06\\xb3\\x70\\x9b\\xef\\xc2\\x6d\\xce\\xc6\\x75\\xd0\\xc9\\xa9\\x0c\\x13\\x93\\xe5\\x4a\\xae\\x9e\\x2b\\x57\\x25\\x06\\xff\\x20\\xae\\x03\\x27\\x52\\x48\\x4c\\x4f\\x71\\x94\\x3c\\x97\\xd9\\x34\\xbf\\xa0\\x6c\\xbc\\x39\\xbd\\xd2\\x57\\x5d\\xe7\\x68\\x5f\\x5e\\x96\\xbb\\xa8\\xdd\\xf5\\x5c\\x79\\x81\\xaf\\xb0\\xda\\xdf\\x01\\x7f\\xe7\\x4e\\x8f\\xd1\\xc6\\x45\\xa5\\xe9\\x5d\\x33\\xbc\\xc9\\x98\\xad\\xd8\\x93\\xd7\\x19\\x17\\xdb\\x5d\\x9d\\xdb\\x9e\\x9f\\x42\\x32\\xc9\\x9b\\xdc\\xb9\\x56\\x6f\\x06\\x40\\x50\\x0f\\x00\\xf3\\x30\\xa3\\x24\\xf2\\x89\\xec\\x62\\x11\\x54\\x5f\\x9c\\x06\\x19\\x22\\xa7\\xe7\\x2b\\x03\\x86\\x9c\\x2e\\x29\\x53\\x3b\\x38\\xf8\\x3c\\x7f\\x6b\\x08\\x5c\\xf8\\x73\\x7e\\xef\\xf3\\xe1\\xd0\\x7b\\xe3\\x3d\\xf7\\xac\\x82\\x3f\\xf0\\x86\\x73\\x0a\\xa1\\xcd\\x39\\xb8\\xcd\\x07\\xf1\\x33\\x4c\\xb8\\xcd\\x51\\x74\\x6d\\x4e\\xc8\\x2f\\xd5\\x74\\xf1\\x25\\x18\\x2c\\x60\\x95\\x13\\xfe\\x93\\x7f\\x58\\x29\\xaf\\xb6\\x6d\\xd9\\x6b\\xa8\\x5d\\x52\\x9f\\xb7\\xa0\\x35\\x07\\x3d\\xcb\\xf8\\x5c\\x3a\\x7b\\x62\\x78\\x99\\x3f\\xc1\\x94\\x18\\x1b\\x02\\x37\\xc2\\x1b\\x6f\\xb8\\x41\\x1a\\xbb\\x63\\x8d\\x6b\\x56\\x9d\\x3d\\x25\\xbf\\xdd\\x6d\\x37\\xc5\\xa6\\x66\\x26\\xe4\\x96\\xc9\\xc2\\x23\\x25\\x74\\x8e\\x39\\xf0\\xb3\\x6f\\x63\\x74\\x78\\xfe\\x67\\x10\\x9b\\xa2\\x28\\xb7\\xe8\\x33\\xa6\\x0a\\x50\\x71\\xc2\\x31\\xa9\\x12\\x2c\\xb7\\xc4\\xaa\\x30\\xca\\xb0\\x82\\x59\\xd5\\x19\\x32\\x6d\\x57\\x5e\\x71\\x5f\\xb1\\xd6\\xd6\\xb8\\xb8\\xac\\x72\\x79\\x6b\\x46\\xc9\\xaa\\x07\\x47\\xae\\xb3\\xfb\\xa3\\xcb\\xf3\\x35\\x76\\xad\\xbc\\x98\\xd1\\xdd\\x14\\x9b\\x59\\xe3\\x4e\\xc1\\xcb\\x7a\\xc0\\x9b\\x37\\xbb\\xda\\x62\\x69\\x5a\\xd9\\x90\\xb3\\xf8\\xfe\\x45\\x1e\\xbe\\xcb\\x10\\x67\\xa8\\xad\\x54\\xa4\\x66\\x24\\xe4\\x16\\xd2\\xbe\\xb0\\x02\\x80\\xc7\\x5f\\x39\\x4d\\x4e\\x31\\x77\\xf1\\x8f\\x9c\\x86\\xad\\x7c\\x2d\\x5a\\x89\\x1e\\x09\\xcc\\x40\\x9b\\x6e\\xa0\\x72\\x6a\\x62\\x8d\\xa4\\xd0\\xa8\\x9d\\xdb\\x7f\\xa6\\x60\\x10\\xe2\\x60\\x90\\xf9\\x40\\x33\\x41\\xf0\\xc4\\x11\\x53\\xd1\\xe4\\x99\\xa4\\x10\\x10\\xc4\\x4e\\xf8\\x8f\\x15\\x29\\xa7\\x45\\x22\\xff\\xdb\\x5d\\x7e\\xf4\\x06\\x84\\xcb\\x31\\xc4\\x60\\x30\\x98\\x32\\xac\\x74\\x5e\\x5c\\x3a\\x6d\\x73\\x28\\x53\\x8a\\x28\\x38\\x85\\x45\\x4c\\x67\\xf2\\x25\\xaf\\xb7\\x16\\xb8\\x0b\\xab\\x32\\x9a\\x17\\x95\\x94\\x2c\\x6e\\xc9\\xa8\\x2a\\x74\\x17\\x58\\xeb\\x46\\x8a\\x8a\\x47\\xeb\\xac\\xf7\\xf9\\xdd\\x2e\\x5f\\x89\\xdb\\x55\\x12\\x9b\\x93\\x95\\xe9\\xcc\\xc9\\xca\\xca\\x46\\x25\\x79\\x1d\\x1a\\x4d\\xbf\\xdf\\xdb\\x8e\\xfd\\x16\\xf8\\x1f\\x7f\\xbf\\x46\\xd3\\xe9\\x75\\xb7\\xe6\\x26\\x25\\xe5\\xb6\\xf2\\x4b\\x32\\x1c\\x8e\\x0c\\x7b\\x4e\\x0e\\x5c\\x9d\\x96\\x69\\xb7\\x9a\\x1d\\x0e\\x3a\\xfe\\xf9\\x17\\xbf\\xa3\\xfd\\x97\\x04\\xd2\\x09\\x66\\x20\\x39\\x21\\x8a\\xc8\\x3f\\x72\\x0a\\x93\\x50\\x7f\\xcb\\x25\\x10\\x09\\xbd\\xcb\\x43\\xe4\\x9f\\x30\\x05\\x71\\xfd\\xe0\\x1f\\x0b\\x7a\\x4b\\xcc\\x92\\xe4\\xa6\\x8c\\x0d\\x3b\\xc8\\xd8\\x97\\x8e\\x35\\xa5\\x17\\x2c\\x3d\\x3a\\x2f\\xf2\\x3e\\xab\\x37\\xd2\\xef\\xd2\\xd8\\x92\\xa3\\x0b\\x76\\xc9\\x2d\\x7e\\x47\\x42\\xca\\xee\\xf5\\x79\\x23\\x0d\\x76\\x0b\\xd6\\x0b\\x72\\x96\\xdc\\x3b\\x37\\xfb\\x20\\xaf\\x55\\x96\\x57\\xf9\\x55\\x46\\x47\\xa2\\xa7\\x9c\\xae\\x7b\\xb4\\x9d\\xf9\\x25\\x93\\x35\\x89\\xf3\\xa3\\x83\\xfe\\xcb\\xc0\\x1c\\x74\\x2b\\xda\\x7e\\x4c\\x18\\xeb\\xd7\\xd8\\x0a\\xe6\\x1d\\xc9\\x41\\x5c\\x46\\x0d\\xf4\\x78\\x4f\\xc2\\xcc\\x94\\x32\\x04\\xc8\\x9e\\x84\\x25\\x8d\\x54\\xac\\x69\\xb0\\x7b\\x83\\x50\\x0e\\xda\\x95\\xe8\\xd3\\x2f\\xbf\\xb9\\x6d\\x63\\x92\\xb3\\xcc\\x6c\\x2a\\x75\\x24\\x25\\x39\\x4a\\x4d\\xe6\\x32\\x67\\xd2\\x90\\xd3\\x68\\xc8\\xca\\x32\\x18\\x9d\\x92\\x83\\xa7\\xde\\x33\\x95\\x64\\x6a\\x34\\x99\\x25\\x26\\x93\\x2f\\x23\\x3e\\x3e\\xc3\\x67\\x32\\x3a\\x1c\\x46\\x73\\x76\\x36\\xed\\xa3\\x6f\\xd8\\x2d\\xcc\\xab\\xdc\\x2b\\x84\\xbb\\x12\\xf7\\x51\\x74\\x18\\x0b\\x11\\x59\\xa3\\x4e\\x25\\xa3\\x37\\xe3\\x9d\\xc2\\x49\\x21\\xdb\\xe8\\xa9\\xde\\xa7\\x5f\\x9a\\x71\\x82\\x51\\x24\\xea\\x63\\x1a\\xd4\\x89\\x9b\\xd9\\x23\\xd0\\xa0\\xe4\\xff\\xb8\\x41\\x97\\x97\\x65\\x8e\\x32\\x8d\\x7a\\xd7\\x08\\x32\\x7d\\x98\\xfd\\x2d\\xf3\\xb1\\xe4\\x5d\\x92\\xdb\\x1c\\xdf\\xcb\\xa1\\xbf\\x8a\\xec\\x54\\x4c\\x98\\xf3\\x25\\x93\\xd6\\x7c\\x22\\xdd\\x3f\\x4e\\x9f\\xb1\\xa2\\xa6\\x66\\x45\\x8b\\xfd\\x91\\xe8\\xd4\\xdc\\xb4\\x34\\x4f\\x6a\\xf4\\x75\\xf1\\xe9\\x85\\x86\\x34\\x6f\\x96\\x43\\x97\\x62\\x1b\\x8e\\x4b\\x2f\\x34\\xea\\x72\\x73\\x30\\xa7\\x44\\x3a\\x77\\x3c\\xbb\\x25\\x5f\\xa7\\xcb\\x6f\\xc9\\x16\\x65\\x2c\\x8c\\x34\\xf8\\xb3\\x93\\x54\\x1a\\x55\\xb6\\x51\\x63\\xf0\\x3b\\x53\\xe8\\x2b\\x00\\xe1\\x05\\xac\\xb5\\x7e\\x01\\x9e\\xbe\\xaa\\x0f\\x5f\\xa2\\xa2\\x9c\\x25\\xe8\\x8b\\x33\\x67\\x70\\x49\\x0d\\x5d\\xa7\\xa3\\x7c\\x3f\\x93\\x0a\\xfc\\x40\\x83\\xc7\\x2b\\x84\\xe2\\x32\\xb1\\x4e\\x20\\xba\\xa6\\x27\\x35\\x2d\\x33\\x9a\\x99\\x53\\x9b\\xa5\\x32\\xf9\\xbb\\x9c\\x35\\xfd\\x49\\xa9\\xf2\\x5c\\x63\\x8a\\x25\\x2e\\x24\\x56\\x6b\\x55\\xf9\\x35\\xbe\\x8a\\x6a\\xbd\\xab\\xc9\\xad\\x49\\x8a\\xda\\x27\\x91\\x47\\xaa\\x92\\xa3\\x12\\x32\\xad\\x69\\x0a\\x00\\x61\\x13\\x5f\\xcb\\xd8\\xc0\\x1b\\x40\\x41\\x4e\\xe8\\x04\\x2e\\x19\\x02\\x01\\x44\\xc4\\x8c\\x02\\xd1\\x12\\x31\\xe5\\x83\\x4e\\xcc\\xf3\\xed\\x36\\xb2\\xb8\\x82\\xc6\\xcb\\x23\\xf7\\x19\\x9b\\x90\\xa1\\x53\\x1b\\x19\\x0c\\xd9\\x7f\\x83\\xff\\x8f\\x10\\xaa\\x7f\\x9a\\x04\\xb4\\x75\\xb4\\x43\\x19\\xd1\\x73\\x7a\\xf8\\x1a\\x76\\x1e\\xdb\\x00\\xf2\\x40\\x13\\x18\\xc6\\x73\\x6a\\xa0\\xad\\xbc\\xc8\\xad\\x21\\x73\\x4a\\xaf\\x0a\\x62\\x3b\\xcc\\x12\\x21\\x00\\x41\\x94\\xc6\\xa2\\xd6\\x23\\x2c\\xde\\x49\\xce\\x1e\\xb5\\x0e\\x52\\xd8\\xf1\\x54\\xb5\\x4e\\x3f\\x1d\\x56\\xcc\\xce\\xdb\\xed\\xf5\\xad\\xb8\\x6f\\x76\\x4b\\x79\\xb4\\x52\\xa1\\xcf\\xd0\\x1c\\x3f\\xf1\\x76\\xf5\\xde\\x5f\\x6d\\x5e\\xf1\\xd4\\x9a\\xe2\\xa4\\x6c\\xbf\\x31\\x4e\\x83\\x7b\\x47\\xdd\\x35\\xbb\\x64\\xe5\\x7d\\x73\\xda\\x6a\\xe1\\x58\\x60\\x87\\xda\\x16\\x6b\\xcc\\x4e\\x2e\\xee\\x2b\\xa9\\xc3\\x29\\xff\\xe5\\xd6\\x4a\\x17\\xff\\x66\\xb2\\xa7\\xd1\\x91\\x55\\xef\\x49\\x4a\\xc6\\xbc\\x95\\x59\\x0d\\xb8\\xc9\\x47\\x66\\xcc\\x57\\xd5\\x6e\\x1b\\xf2\\xc6\\x44\\x5a\\x12\\xd5\\x49\\x31\\xd2\\x1b\\x0e\\xe5\\xaf\\x1f\\x2e\\xb1\\xd7\\xcd\\xf6\\x64\\x34\\x14\\x3b\\x62\\xd4\\x05\\x66\\x63\\x81\\xc3\\x1c\\xed\\xb8\\xa3\\x4f\\xd5\\xb4\\x7d\\xc0\\x1d\\x7b\\xfe\\x03\\x86\\x55\\xd4\\x64\\x25\\xe5\\xa4\\xa9\\x93\\x33\\x73\\x35\\x1a\\x5b\\x8a\\x1c\\x3d\\x99\\x5a\\x92\\x9d\\x9c\\x9c\\x5d\\x92\\xaa\\x32\\x94\\x38\\x12\\x13\\x1d\\x25\\x06\\xa2\\x37\\xf2\\xaf\\x33\\x3f\\x30\\x7e\\xa0\\x24\\x7e\\x0c\\x40\\x74\\xeb\\xe9\\x3c\\x78\\x8f\\xfe\\xeb\\x72\\x02\\xbc\\x7f\\x31\\xfe\\xcb\\xb8\\xef\\x88\\xae\\xf5\\x1b\\x00\\x98\\x14\\xee\\x0f\\xc1\\x75\\x14\\x29\\xa3\\xbe\\x1a\\x6a\\x5d\\xd3\\x41\\xc1\\xc9\\x4b\\x7d\\xbc\\xbf\\x41\\x25\\xe7\\xf8\\xe3\\xb0\\xa0\\xaa\\xc4\\x5f\\x5d\\xed\\x2f\\xa9\\xa2\\xe9\\xd9\\x97\\xc2\\x0f\\x72\\xab\\xab\\x73\\xf1\\xaf\\xb0\\x67\\xde\\x76\\xf1\\x9f\\xd8\\x17\\x16\\x47\\xeb\\x15\\x49\\xe5\\x85\\x3c\\xd8\\xd3\\x93\\xb8\\x47\\x34\\x3b\\x16\\xfb\\xfb\\x12\\xdd\\x0e\\x9b\\x3c\\xb6\\x62\\x7b\\x45\\xff\\xc6\\x06\\x9d\\x24\\xee\\xfc\\xac\\xf2\\xae\\x9c\\xd8\\xd0\\xa8\\x68\\xe9\\x2d\\xda\\xe4\\xcc\\xa1\\x5b\\x17\\xb0\\xd7\\x13\\x1f\\xfd\\x8b\\xb8\\x6e\\xa9\\x38\\xc6\\x5e\\x02\\x14\\x80\\xbc\\xaf\\x04\\x80\\x75\\xd3\\xf7\\xf1\\xd8\\xd2\\x8d\\xa8\\x0d\\xbd\\x8d\\xdd\\x37\\x91\\x7b\\x19\\x02\\x96\\x21\\x42\\x5f\\xa4\\x96\\x14\\xb6\\x03\\x00\\x34\\xf1\\xf2\\x28\\x21\\x40\\x5e\\x42\\xa0\\x2f\\x93\\x66\\x23\\xec\\x44\\x0a\\x12\\x80\\xe9\\xe1\\xdd\\x67\\xe0\\xbb\\x7d\\xf7\\xaf\\xad\\xac\\x5c\\x7b\\x7f\\xdf\\x97\\x5f\\x66\\x08\\xa8\\xfb\\x8c\\x2f\\xe1\\x0d\\xfc\\x7c\\x76\\x1f\\xcc\\x19\\x3a\\xd0\\xd3\\xb5\\x67\\x20\\xfb\\x04\\x8c\\xcb\\x28\\xb5\\xda\\x2b\\x9d\\x89\\x50\\x38\\xfb\\xd7\\xf0\\x75\\xec\\x18\\x5b\\x03\\x6c\\xe2\\x79\\x52\\x41\\x34\\x53\\xb5\\xc2\\x09\\x15\\x98\\x33\\x45\\x95\\x2d\\xe0\\x2f\\xb0\\x45\\xc8\\x6c\\x86\\x7a\\xc8\\x10\\x35\\x55\\x42\\xdc\\xfc\\xbf\\x6a\\x5c\\xd2\\xe8\\x8c\\x1a\\x38\\xf3\\x2f\\xfe\\xe0\\x1f\\xe3\\xf2\\xed\\x52\\x09\\x2b\\x91\\x85\\xc6\\xb8\\x54\\x45\\xfd\\x35\\x1e\\xe5\\x32\\xfe\\x9b\\x7f\\xc3\\x7d\\xcf\\x86\\xeb\\xd3\\xdd\\x29\\xe1\\xd6\\x08\\x46\\x53\\xc6\\xd6\\x78\\x5a\\xfa\\xd3\\x7e\\x07\\x7f\\x17\\x70\\xf3\\x0e\\x6f\\x35\\x0b\\x21\\x3c\\x2d\\x95\\x20\\xc6\\xd1\\x3c\\x37\\xff\\xdf\\x81\\x6f\\x18\\x16\\xee\\xd4\\x7a\\x2c\\x71\\x0c\\x7a\\x56\\x26\\x62\\x46\\x00\\xbb\\x9e\\xe4\\xde\\xa2\\xbe\\x5a\\x8b\\x8e\\x21\\xf2\\x91\\x36\\x3d\\x9b\\xbd\\x24\\xec\\x55\\x27\\x84\\xbd\\x4e\\x89\\x5c\\x86\\x7b\\x79\\xf8\\xc2\\xb7\\x10\\x60\\xff\\x4a\\xb7\\x3b\\x4e\\x12\\xad\\x51\\xf2\\xe7\\xd5\\xf1\\xe1\\xcc\\xea\\xb1\\x57\\xee\\x3f\\xb0\\x89\\x80\\xa2\\x9e\\x46\\x6d\\x81\\x87\\xb8\\xe3\\x7f\\xf9\\xf5\\xaa\\x3b\\xb3\\x62\\xcb\\xba\\x16\\x16\\x2e\\x8b\\x2f\\x28\\x70\\xc5\\x68\\x14\\xe5\\xd5\\xa5\\xf2\\xb1\\xc5\\xd7\\xfc\\x6a\\x7c\\x81\\xb3\\xad\\x40\\x47\\xfa\\xe7\\x56\\x5c\\x8f\\x13\\xb8\\x1e\\xd4\\xb6\\x1b\\x1a\\xcc\\x00\\x06\\xa8\\xd1\\x49\\x48\\xfd\\xc5\\x4d\\xd0\\xea\\x89\\x41\\x52\\x22\\x25\\x8a\\x60\\x77\\xde\\x7f\\xee\\xdc\\x42\\x78\\x03\\x54\\xf2\\x39\\xf0\\x33\\xfe\\x23\\xb4\\x24\\xb0\\x5f\\x88\\x31\\x0c\\x94\\x04\\xa2\\x70\\x3b\\x77\\x61\\x4c\\xd8\\x32\\x3c\\x7f\\xe3\\x81\\x11\\xb7\\x33\\x35\\x51\\x2e\\xcc\\xdf\\xc9\\x89\\x17\\x84\\x1f\\x5d\\x3a\\x9d\\x77\\xa1\\xc2\\xa4\\xac\\x12\\x43\\x72\\x49\\x61\\x8e\\x5c\\xa3\\x2e\\x6d\\xea\\x4a\\xaf\\xdf\\x31\\xe4\\xe5\\x9f\\x82\\x65\\x93\\x13\\x3c\\xe0\\xc8\\xad\\xb6\\xca\\xa5\\x61\\x11\\xdc\\x83\\x91\\x71\\xd1\\x21\\xd6\\xde\\x83\\x73\\x91\\x74\\xca\\x8c\\x87\\xe0\\x2e\\xfc\\xec\\x0d\\x12\\x00\\xe2\\xc9\\x19\\x97\\x8e\\xbd\\x8e\\xb9\\xfc\\xb9\\x0a\\xdd\\x5d\\xc8\\x95\\x9c\\xe2\\xae\\x30\\xa7\\x94\\xfa\\xdc\\xf8\\x61\\xe5\\x2d\\xbd\\xf6\\xe6\\xbd\\x23\\x05\\xf1\\xfc\\x49\\x09\\x38\\xbf\\x34\\xbf\\xd6\\x2e\\x97\\x85\\x85\\x0b\\xcf\\xb0\\xcd\\xbc\\x61\\x3e\\xf3\\x1a\\x9d\\x57\\x78\\x71\\x32\\x7c\\x10\\x8f\\x15\\x42\\x7c\\x95\\x1e\\x1d\\xb5\\x67\\x10\\x7f\\xc2\\x27\\x30\\x81\\x7f\\x05\\x25\\x47\\xc1\\xf0\\x0b\\x9f\\xbd\\xc6\\x9c\\x5e\\xf4\\xfb\\xd3\\xe7\\x55\\xaf\\x01\\x04\\x36\\x5f\\x3c\\xcc\\x2e\\x66\\xbf\\x00\\xc5\\xa0\\x09\\xf7\\x45\\x85\\x2f\\xc7\\x42\\xc6\\xdc\\x24\\x84\\x5d\\x88\\x9c\\x0a\\x82\\xdb\\x45\\x8d\\x8d\\x91\\x53\\xeb\\x69\\x36\\x9b\\x26\\xc8\\xe1\\x54\\x6a\\x25\\x55\\x36\\x5c\\xe2\\x89\\x8a\\x79\\x4c\\x16\\xca\\x68\\x07\\x0a\\x4a\\x87\\xcb\\xf5\\xb9\\x43\\x3b\\x9b\\x5b\\x42\\xb7\\xcc\\xef\\xda\\xd6\\x61\\x45\\x10\\xb9\\x06\\xb6\\xb7\\x6a\\xf2\\xdc\\x99\\x31\\x39\\xf1\\xc5\\xe5\\x15\\xda\\xeb\\x7e\\xbd\\xb5\\x84\\x81\\x4c\\xf9\\x9e\\xb7\\xb6\\x77\\xde\\xba\\xcc\\x1f\\x2d\\xe7\\xaf\\x4f\\x72\\x18\\x13\\x24\\xb9\\x99\\x0d\\x79\\xda\\x88\\xe4\\x4c\\x28\\x89\\xb4\\xc6\\xe9\\x73\\xec\\x8d\\xf3\\x8a\\x6a\\x57\\xcd\\xb0\\xcf\\x5b\\x52\\xba\\xe1\\x67\\x4b\\x0a\\x30\\xa3\\x53\\x51\\x48\\xb4\\x32\\xe2\\x36\\x45\\xa2\\x22\\x64\\xf6\\xe3\\xff\\x3a\\x60\\x3b\\x70\\xee\\xf8\\x2c\\xe7\\xdc\\x23\\x8b\\xf8\\x7d\\x19\\xc3\\xa6\\xc8\\x9b\\xa3\\x12\\x52\\xe4\\xef\\xcb\\x8d\\x45\\x76\\xad\\x27\\x4d\\x1d\\xe4\\xa5\\xc0\\xb8\\xca\\xdb\\xf0\\xfe\\xef\\x00\\x7e\\xdc\\xd6\\xfc\\x6c\\x8d\\x54\\xd0\\x91\\xb1\\xc9\\x51\\x6c\\xeb\\x55\\xe3\\xd7\\x94\\xe2\\x0b\\xd2\\x4a\\x39\\x7b\\xdb\\x23\\x86\\xfe\\xe5\\x7b\\x9b\\x06\\x8e\\xae\\xad\\x54\\xbb\\x3b\\x4b\\x1c\\x95\\x19\\xaa\\xf2\\x95\\x77\\xcd\\xec\\xbf\\x63\\x49\\xf1\\x99\\x44\\x67\\x95\\x2d\\xbd\\xda\\x95\\x9c\\x90\\xd3\\xe8\\xca\\x9b\\xe9\\xd7\\x1b\\x4a\\xfb\\xbc\\x9a\\x02\\x8f\\x3d\\x92\\xf1\\x3f\\xcf\\x03\\xad\\xd7\\x1a\\x9f\\xbb\\xf0\\xce\\x61\\xd7\\x48\\x77\\xb5\\x3a\\x1e\\xe3\\xe2\\x6c\\xc3\\xb7\\x8e\\xba\\x0a\\xe7\\x1f\\x6c\\xcf\\xaa\\x73\\x27\\x25\\xe7\\xce\\xc8\\xc9\\x9e\\x51\\x98\\xfa\\x7c\\x52\\x41\\x4f\\xb1\\xb7\\xc3\\x9b\\x14\\x12\\x85\\x41\\x50\\xc1\\xdc\\xb9\\xab\\x70\\xfd\\x0f\\xe0\\xfa\\x67\\xe2\\xf1\\x8d\\x61\\x85\\x73\\x5d\\x74\\x0c\\xa9\\x2b\\x65\\x2e\\x99\\xbe\\x6b\\x93\\x7c\\x61\\x41\\x97\\x19\\x9c\\x7b\\xee\\x1f\\xff\\x5b\\xb7\\x6d\\xf5\\x62\\x17\\xff\\xd9\\x13\\xa7\\xcb\\x56\\xdc\\x3d\\xb3\\x6e\\x93\\xb7\\x32\\xa9\\xd3\\x93\\xd3\\x9c\\x9b\\xa4\\x2d\\xee\\x2b\\x5c\\x7e\\xce\\x30\\xbb\\xdc\\xdf\\xe5\\x89\\x63\\x5e\\x82\\x10\\x72\\xda\\xa2\\xee\\x3c\\x7e\\xbd\\xfa\\xbd\\x17\\xe7\\xdf\\xbd\\x30\\x37\\x31\\xfe\\xb4\\x5c\\x9b\\x5a\\xd8\\xee\\xac\\x9a\\x53\\x9c\\x74\\x1f\\xec\\xc3\\xb0\\xbb\\xd6\\x15\\x55\\xb4\\x4e\\xc7\\xf1\\x7c\\x6e\\x67\\x6f\\xc3\\x75\\x9a\\xe5\\x8b\\x48\\xd5\\x45\\x46\\xb0\\x10\\x65\\x42\\x06\\xa0\\x1a\\x01\\x49\\x9f\\x08\\x20\\x02\\x88\\x46\\x8c\\xe2\\x3f\\x2c\\x15\\xb0\\x42\\xd2\\xcf\\x42\\xc2\\xa0\\xae\\x9d\\xf6\\x35\\xfe\\x82\\x04\\x24\\xd3\\x40\\xc8\\x2a\\x8e\\x90\\xb4\\x64\\x90\\x54\\x02\\xa9\\x44\\xf1\\x36\\x4e\\x9c\\x9d\\x88\\x0a\\x4b\\x5b\\x26\\x84\\x49\\xb8\\x69\\x27\\x30\\x93\\xaa\\x0b\\x4a\\x8f\\xaf\\xce\\x34\\x17\\xd9\\xe2\\x36\\x2c\\x6d\\x7d\\x2d\\xa1\\xca\\x99\\x55\\x66\\x53\\x7e\\xf9\\xfb\\xdf\\x95\\xaf\\x9a\\xd7\\x67\\xfb\\x37\\x76\\xff\\xdb\\x0b\\xe6\\x1d\\x98\\x51\\xba\\xc4\\xf9\\x37\\xb9\\x36\\x21\\xd3\\x6f\\x6e\\xaf\\xbc\\xef\\x82\\x3a\\x55\\x5f\\xdc\\x9e\\x13\\x88\\x45\\xff\\xfc\\xf3\\x9f\\x53\\xf0\\x7e\\xcc\\xff\\x39\\x2c\\xa7\\x71\\x41\\x69\\xef\\xde\\x7e\\x47\\x52\\x3c\\x8d\\x9f\\xca\\xc4\\xd1\\x82\\x8f\\x73\\x0f\\x22\\x09\\xb8\\x83\\xbc\\x07\\xc1\\x1f\\xfc\\x9e\\xa1\\xef\\xbf\\x47\\xc9\\x6c\\x02\\xfa\\x00\\xbf\\x8f\\xa2\\xfc\\x62\\xef\\x01\\xc0\\x12\\x66\\x23\\xb9\\x90\\x57\\x97\\xe6\\x60\\x07\\x1c\\x04\\x13\\x74\\x62\\x05\\x42\\x5a\\x7d\\x19\\xed\\x0d\\x9a\\xc6\\x50\\x97\\xa2\\xc2\\x39\\x2a\\xf1\\x15\\xd1\\x3a\\xb9\\x3c\\x04\\x1b\\x68\\x05\\x38\\x93\\xe8\\x44\\x56\\xe8\\x05\\x2f\\x32\\xde\\x1a\\xf0\\xab\\xa3\\x6f\\xbe\\x09\\x67\\xdf\\x78\\xe6\\x68\\x37\\x84\\xdd\\xf7\\xff\\xf3\\xfa\\xe1\\xf7\\x56\\x0e\\x1d\\x1a\\x72\\x40\\xe8\\x98\\x7d\\xd3\\xf0\\xd8\\x7b\\x68\\xcf\\x31\\xb4\\x16\\xce\\x7a\\xe2\\xbb\\x1b\\x17\\xdd\\xf8\\xdd\\xe3\\xb3\\xd0\\x1e\\xde\\x0d\\xcb\\xd7\\x1f\\x5f\\x30\\x36\\xf7\\xd1\\x8d\\x95\\x90\\xaf\\x04\\xff\\x2f\\xa9\\x23\\x04\\x0a\\xe2\\x7b\\xa7\\xf9\\xac\\x87\\x7d\\xa1\\x93\\xf9\\xac\\x05\\x42\\x4c\\xed\\x94\\xb4\\xd6\\x52\\x69\\xd1\\x44\\x0a\\xde\\xca\\x5a\\x16\\xd2\\xf3\\xbc\\x66\\x6a\\x91\\xc9\\x6f\\xc5\\xcc\\xd7\\xa4\\x08\\x66\\xea\\x9f\\x4c\\x7e\\x2d\\xfb\\xaf\\xc9\\xaf\\x1f\\xe5\\x7f\\xb8\\x3c\\xf9\\xf5\\xfd\\xf7\\x9f\\x81\\x12\\xf6\\x35\\xfe\\xfd\\x2b\\x24\\xbf\\x7e\\xed\\xd8\\xb5\\xd7\\xd2\\x76\\x64\\xe3\\x76\\xdc\\x46\\xb8\\x17\\x89\\xe6\\x21\\x85\\xa2\\x23\\x85\\xb0\\xf3\\x50\\xe6\\xd1\\x02\\x31\\x66\\x51\\x64\\x44\\x94\\x09\\x71\\xea\\x42\\xf7\\xba\\xa8\\x17\\x94\\x79\\xf8\\x37\\x67\\xde\\x7b\\x8f\\x2f\\x63\\xe7\\xf1\\x25\\xbf\\x61\\x62\\x2f\\xfc\\x93\\x89\\x3d\\x06\\xd3\\x5f\\x7b\\x8d\\x7f\\x5b\\xe8\\xab\\x2d\\x78\\x3d\\x16\\x71\\x3e\\x60\\x06\\xeb\\x30\\x71\\x1f\\x64\\x99\\x58\\xc8\\xb1\\xa8\\x46\\x08\\x88\\x31\\x87\\xc1\\x50\\x10\\xba\\x44\\x4a\\x48\\x79\\xa9\\x83\\x5f\\x46\\x9d\\xb8\\x24\\x7d\\x61\\x31\\xa1\\x02\\xa0\\x8b\\xae\\x9c\\xab\\xd3\\xfc\\xb4\\x92\\x74\\x79\\xc6\\x02\\x80\\x1f\\x66\\x36\\x19\\x09\\x61\\x80\\x91\\xd4\\x9b\\xc6\\x74\\x90\\x3d\\x87\\x66\\x32\\xbe\\x7c\\x73\\x73\\x91\\x5e\\x24\\xee\\x6d\\xb4\\x06\\xde\\xcc\\x8f\\x7c\\xf0\\x41\\x52\\x4e\\x85\\x35\\xa5\\xb4\\x18\\xab\\x02\\x09\\xd5\\xed\\x33\\xed\\xcd\\x3b\\x06\\x3d\\x6f\\xbd\\xc5\\xff\\x07\\xca\\x38\\x1f\\xff\\xc3\\x13\\xf7\\x1f\\x7b\\xa6\\xb0\\x29\\x4b\\x21\\x0d\\x09\\xfb\\xff\\x34\\x77\\x15\\x80\\x55\\x1c\\x4f\\x7f\\xf7\\xde\\xdd\\xbd\\x84\\x02\\x25\\x40\\x08\\xc1\\x82\\x24\\x68\\x82\\x25\\x58\\x08\\x49\\x48\\x90\\x08\\x09\\x2e\\x69\\x42\\xa0\\x48\\x79\\xb5\\x87\\x43\\x5b\\xdc\\x5d\\xaa\\x58\\x84\\x06\\x6a\\xa1\\xde\\x22\\x75\\xea\\xb4\\xfc\\x5b\\xea\\xee\\x6e\\xb8\\xb6\\x90\\xbb\\x6f\\x6f\\x66\\xdf\\xe4\\x36\\x2f\\x2d\\x9f\\x7f\\x5f\\x95\\x7b\\xf3\\xbb\\xdf\\xce\\xda\\xec\\xee\\xec\\xee\\x9c\\x71\\xcf\\x95\\x91\\x75\\x42\\xe3\\xc6\\xdd\\xe9\\x7b\\xa5\\xfc\\xde\\xc7\\xb9\\xc9\\x30\\xa6\\x12\\x63\\xfa\\xa3\\xde\\x96\\x5a\\x6b\\xd1\\x7e\\x19\\xf7\\xb2\\x34\\x7b\\x31\\x2f\\x60\\xa1\\x4e\\x68\\x24\\x5e\\x80\\x67\\xc6\\x25\\x26\\x8a\\x30\\x33\\xd9\\x2a\\x9e\\x27\\x31\\x79\\x0a\\x26\\x8b\\x30\\x45\\x6c\\x23\\x1f\\x2b\\x31\\x63\\x15\\x4c\\x21\\x61\\xca\\xd8\\x26\\x3e\\x5e\\x62\\xc6\\x2b\\x98\\x76\\x84\\xf1\\x31\\x8e\\x3c\\x5a\\x55\\x9e\\xf5\\x84\\xd9\\xc9\\xea\\xf0\\x77\\x25\\xe6\\x5d\\x37\\x26\\x24\\x39\\x80\\xe1\\x87\\xed\\x3f\\xf9\\x83\\x0e\\xc6\\x73\\x80\\x3f\\x28\\x31\\xf9\\xa2\\x19\\xdc\\x60\\xbc\\x2a\\x30\\x31\\x02\\x63\\xb2\\xb9\\xdd\\x35\\x8c\\x23\\xa5\\xc1\\xd9\\x7a\\xd8\\xb7\\x1f\\xe2\\x6d\\x2a\\xe4\\x6d\\x64\\xd9\\xac\\xe0\\xa3\\x05\\x07\\x17\\xfa\\x8e\\x46\\x0e\\x89\\x69\\x44\\x98\\x99\\x6c\\x3d\\x1f\\x21\\x31\\x23\\x14\\x4c\\x7f\\xc2\\x14\\xb1\\xdb\\xf9\\x18\\x89\\x19\\xa3\\x60\\xa2\\x09\\xe3\\x63\\x26\\x62\\xb4\\x4a\\xcc\\x5e\\x81\\x89\\x80\\xba\\xea\\x20\\xf5\\xc9\\xe1\\x05\\x92\\xa7\\x40\\xc1\\x44\\x11\\x66\\x26\\x1b\\xc1\\xf3\\x24\\x26\\x4f\\xc1\\x64\\x11\\xa6\\x88\\xe5\\xf3\\xb1\\x12\\x33\\x56\\xc1\\xb4\\x23\\x8c\\xcf\\x3e\\x82\\x18\\x57\\x3d\\x2c\\x13\\x98\\x74\\xa8\\xcf\\xce\\xb2\\x3e\\xa7\\x42\\x7d\\x72\\x57\\x7d\\xe6\\x8b\\x31\\x77\\x9a\\xb7\\x87\\xc0\\x74\\x91\\x3a\\xdf\\xc2\\xa7\\xcb\\x3a\\x9f\\xae\\x60\\x12\\x08\\x33\\x93\\x2d\\xe1\\x7e\\x89\\xf1\\x2b\\x98\\x71\\x84\\x29\\x62\\xab\\xf9\\x0c\\x89\\x99\\xa1\\x60\\x66\\x12\\xa6\\x8c\\xad\\xe1\\xb3\\x25\\x66\\xb6\\x82\\x49\\x26\\x8c\\xcf\\xbe\\x84\\x3c\\x5a\\x25\\xcf\\x52\\x81\\xc9\\x82\\x3a\\xed\\x21\\x75\\xde\\xa0\\xd6\\x29\\x61\\x22\\x08\\x33\\x93\\xdd\\xc1\\x87\\x4a\\xcc\\x50\\x05\\x93\\x46\\x98\\x22\\xb6\\x83\\x8f\\x94\\x98\\x91\\x0a\\xa6\\x05\\x61\\x7c\\xac\\x36\\x62\\xb4\\x4a\\x4c\\x1c\\x63\\xfa\\x2e\\xa8\\xd3\\xde\\x32\\xad\\x79\\x41\\x75\\xba\\x52\\xf0\\xa4\\x19\\xdf\\x08\\x4c\\xba\\xd4\\xf9\\x7a\\xd6\\x88\\x85\\x88\\xbc\\x3f\\xda\\xc8\\x81\\x54\\x62\\xbe\\x94\\x18\\x93\\xcd\\x9c\\x11\\x81\\x88\\x08\\x81\\x08\\xc8\\xcd\\x10\\x92\\x17\\xdd\\xdc\\x18\\xe5\\x8d\\xdd\\xf2\\x26\\x24\\x2f\\xbb\\xa5\\x19\\xca\\x9b\\xb9\\xe4\\xc6\\xcf\\x24\\xf7\\x1d\\x85\\xf7\\x35\\xf5\\xfd\\x2c\\xd2\\x71\\xa7\\x7d\\x89\\x6d\\x42\\xc4\\x26\\x45\\x47\\xf3\\x52\\x80\\x83\\x1f\\xfe\\xe1\\x3a\\x07\\xe1\\x79\\xf4\\x3a\\xe4\\x58\\x2c\\xfa\\x6c\\xa2\\x9e\\x2b\\xe4\\xfd\\xb1\\xcf\\xf6\\x55\\xfb\\xec\\x2d\\xe2\\xfd\\x31\\xc6\\xb7\\x42\\x3e\\x90\\xca\\xc1\\x95\\x0b\\xc6\\x08\\xf3\\x15\\x60\\xb0\\x1c\\x1a\\x22\\xa2\\xa1\\x8b\\xc3\\x0c\\x05\\x39\\x96\\x43\\x13\\x94\\x37\\x71\\xa7\\xf1\\x0b\\xc8\\x31\\x9f\\x20\\xd7\\x02\\xf2\\xd7\\x9d\\xf3\\x85\\xc6\\x6b\\x42\\xbe\\x16\\x2e\\xf8\\xa6\\xed\\x66\\x8c\\xd1\\xef\\xaf\\xc0\\xef\\x58\\x8f\\x7b\\x6c\\x0b\\xeb\\x11\\xc3\\xd0\\x11\\xe6\\x18\\x61\\x8a\\xd8\\xe3\\x8c\\x63\\x0e\\x39\\xe8\\x4f\\x98\\xb7\\x00\\x03\\xe9\\xc7\\x00\\x42\\x03\\x84\\x6d\\xc3\\xfa\\x2f\\x15\\xea\\x69\\x08\\xd6\\xd3\\x9c\\x66\\xc8\\x20\\xeb\\x69\\xaa\\x18\\xe3\\x0a\\xa0\\xad\\x0c\\x95\\x65\\x34\\x43\\x6d\\x2b\\x84\\xf9\\x12\\x30\\x50\\x46\\x37\\xab\\x6d\\x05\\xe4\\x66\\x08\\x71\\x14\\xb1\\xc5\\x6a\\x39\\x13\\xa6\\x09\\x61\\xca\\xd8\\x12\\x46\\x2d\\x46\\x49\\xe7\\x67\\x4a\\xc7\\x77\\x46\\x6d\\x33\\xbb\\x84\\xbc\\x87\\x71\\x58\\xc8\\x47\\x4b\\x5d\\x67\\x31\\x03\\x73\\x63\\x00\\x07\\x61\\x0e\\x01\\x06\\x74\\x9d\\xa7\\xb6\\x09\\x94\\x9f\\x26\\x8e\\x22\\xb6\\x94\\x99\\x88\\x30\\x55\\x8e\\xf7\\x88\\xc3\\x77\\xce\\xc4\\x32\\x35\\x91\\xa3\\xb7\\x95\\xad\\x97\\x43\\x1a\\xf9\\xb2\\xee\\x36\\x33\\x4a\\x05\\x39\\x10\\x03\\x1c\\xf9\\xc8\\x51\\x43\\xe5\\x80\\x31\\xc9\\x3c\\x47\\xe3\\x96\\xb0\\x71\\x7c\\x80\\xb4\\x4f\\x03\\x94\\x7e\\xfc\\x24\\xf5\\x21\\xff\\x59\\x1d\\x4b\\x4c\\x77\\x71\\x78\\x33\\x88\\xa3\\x84\\x85\\xf0\\x52\\xc9\\x51\\xea\\xe6\\x30\\x4d\\xe2\\x28\\x39\\x33\\x16\\x39\\xc0\\x70\\x6b\\x2c\\xc1\\x1a\\xa6\\x3f\\x0a\\xf1\\x5c\\xa3\\x58\\xbf\\xd4\\xbe\\x51\\xdc\\x34\\x22\\x38\\xf3\\x5c\\xc1\\x39\\xab\\x09\\xb7\\x51\\x65\\x90\\xa3\\x09\\x5e\\xee\\x4c\\xaa\\xf4\\x40\\xb8\\x06\\x98\\xcf\\x66\\x3a\\x11\\x43\\x9b\\x35\\x15\\x2f\\x37\\x09\\x6b\\x18\\x13\\x13\\x16\\xe2\\x9c\\xde\\xe0\\xad\\x4c\\xe9\\xa7\\x47\\xaf\\x13\\x7a\\xf5\\x3d\\xe2\\x63\\x04\\x5c\\xfc\\x47\\xfb\\x86\\xbf\\xd3\\xcc\\xfc\\x45\\x50\\x9d\\xcf\\xd7\\x05\\x8c\\x1e\\x3c\\xb8\\xbb\\x05\\x27\\xc1\\xdd\\x3d\\x58\\x70\\x09\\xee\\xee\\xee\\xee\\x2e\\xc1\\xfd\\x40\\xd0\\x10\\xdc\\x9d\\x83\\x1c\\x38\\xb8\\xbb\\xbb\\xbb\\x3b\\xb7\\x7e\\xef\\xbf\\xee\\xe0\\xd6\\x9d\\x7e\\x83\\xef\\x99\\x3c\\x5d\\xdd\\xb5\\x77\\xaf\\xda\\xab\\x7a\\xad\\xde\\x93\\xb6\\x34\\x73\\xb8\\x6d\\x56\\x71\\xd6\\x6c\\xb6\\x67\\x2f\\x0d\\xac\\x5c\\xd2\\x26\\x67\\x6b\\xed\\x39\\xe1\\x3a\\x86\\xfe\\xe4\\x4c\\x3b\\xdc\\xd8\\xf5\\x8b\\x07\\x8d\\x87\\x15\\xff\\x6d\\x76\\xef\\x24\\xae\\xb6\\x5b\\xf9\\x6b\\xeb\\x91\\xd1\\x88\\x8b\\xd8\\x99\\x78\\x5f\\xdb\\xfa\\x93\\xf7\\xd7\\x29\\xea\\xa3\\x68\\xd8\\x84\\xb5\\x0f\\xb3\\x9c\\x05\\x9f\\x9d\\xfc\\xc9\\x50\\xc0\\x1a\\xf1\\x8c\\xc6\\x6c\\x26\\x0f\\x90\\x98\\x51\\xcc\\x4c\\x94\\xfe\\x9c\\x24\\xee\\x5a\\xb4\\xb5\\x13\\x83\\x05\\xdd\\x59\\x31\\x5d\\x7c\\x2b\\x2c\\xf8\\x2a\\x9e\\x6b\\x2d\\x66\\x08\\x0d\\x9c\\x3d\\xca\\x89\\x50\\x52\\x8a\\x72\\x96\\x9f\\x9c\\x92\\x8d\\x3d\\xfb\\xad\\xbd\\x9b\\x97\\x40\\xbb\\x9f\\x8f\\x65\\xb9\\x5d\\xc1\\xe8\\x1b\\x31\\x29\\x79\\x4d\\xae\\x4e\\x99\\xb9\\x8f\\x3b\\x9f\\x3d\\x55\\xc6\\x05\\x6d\\xe5\\x1a\\x47\\x35\\x4a\\xb4\\xfc\\xf0\\x70\\x2c\\x79\\x93\\x83\\x89\\xe7\\x05\\xdf\\xfd\\x50\\xe5\\x29\\xbf\\xa5\\x9b\\x83\\x57\\xe7\\x63\\x9c\\x6f\\x35\\x31\\xe8\\xb5\\x34\\x60\\xfb\\x7e\\xf7\\x5f\\xaa\\xe4\\x84\\x2f\\x69\\xe4\\xc3\\xb9\\xba\\xef\\xa9\\xfd\\x29\\x11\\xf8\\xbe\\x66\\xb9\\x5d\\xba\\xa8\\x35\\xfd\\xbe\\x23\\x0e\\x38\\xfb\\xb9\\x0d\\x03\\x23\\xad\\x90\\x60\\xb5\\x2a\\xf4\\xdd\\xfc\\x62\\x09\\x98\\x37\\x58\\x4d\\x6c\\xcb\\x45\\xcc\\xdb\\x21\\x91\\xa9\\xa3\\xfa\\x2d\\x56\\x24\\x2a\\xea\\x98\\xc4\\xbb\\xd5\\xa9\\x11\\xbb\\x3d\\x63\\x9b\\xe0\\xb1\\x23\\x00\\x26\\x6e\\x9d\\xad\\xbe\\xea\\x62\\x1f\\x7b\\xdf\\x8b\\x4d\\xa5\\x39\\x69\\x00\\x3a\\xe5\\xcb\\x7b\\x07\\x08\\x5c\\x69\\xa9\\x88\\x7e\\xb8\\xd4\\xaf\\x2f\\x48\\x15\\x55\\x16\\x25\\x34\\x5a\\x26\\x03\\xfc\\xe6\\x40\\xc6\\x01\\xeb\\xed\\xe4\\xd0\\x4f\\x44\\xa5\\x64\\x9a\\x46\\x97\\xe5\\xf5\\x53\\x9b\\x32\\xff\\xbb\\x77\\xe9\\xf7\\x97\\x5c\\xca\\x0e\\x03\\xa2\\x05\\x24\\x6d\\x1d\\x44\\x51\\xae\\x76\\x9c\\x86\\x8b\\x8c\\xe9\\x01\\xb3\\x81\\x26\\x19\\xec\\x2d\\xad\\xfe\\x4c\\x61\\xe4\\x03\\xe3\\xaa\\xa4\\xfe\\x00\\xa8\\x03\\xad\\x6c\\x5b\\x32\\xee\\xc9\\x8f\\xfe\\x4a\\x73\\x6e\\x9c\\x28\\x28\\x82\\xa4\\x01\\xec\\x09\\xab\\x00\\x0b\\x60\\xf1\\x73\\x56\\xfe\\xfc\\x81\\xbf\\xf9\\x8b\\xff\\x7e\\x07\\x2f\\xf3\\x59\\xb8\\x33\\xd4\\x6b\\x75\\xf0\\xfb\\x84\\xd3\\x24\\xdd\\x6c\\x74\\x51\\xd8\\xfc\\xce\\x2a\\x0d\\xc4\\x83\\x27\\xf2\\x18\\x0e\\xed\\xac\\x23\\x7c\\x48\\xe5\\xe8\\xe0\\xe8\\x07\\x49\\x09\\xa3\\x7c\\x9e\\x6b\\x12\\x59\\x59\\x74\\xd1\\x9d\\x38\\xa7\\xcb\\x0f\\x01\\xc0\\xc4\\xc8\\x0f\\x43\\x22\\xe8\\xba\\xbc\\x1f\\x63\\x85\\x2b\\x6b\\x45\\xfa\\xc3\\xee\\x74\\x94\\x8e\\x51\\xa2\\x91\\x3d\\xec\\x18\\xc2\\x9f\\xc9\\xb0\\xfe\\xc2\\x93\\x4e\\x0b\\x5e\\x13\\xf5\\x18\\x3e\\x6a\\xb4\\x7e\\xc6\\x94\\xe2\\x6e\\x6f\\xb5\\x3d\\xaa\\x35\\x92\\x5e\\x4d\\x5d\\x22\\x4e\\x76\\x2f\\x2d\\x31\\x08\\x8d\\x87\\xd5\\xe5\\x33\\x7b\\xaf\\xf7\\x55\\xad\\xa3\\xae\\x86\\x92\\xe9\\xdc\\x3a\\xab\\x46\\xf7\\x5e\\x92\\xf6\\x33\\xb2\\xae\\xbb\\xf1\\xd2\\x86\\x0d\\xb4\\x02\\xef\\x1f\\x78\\xb6\\xf5\\xc2\\x52\\x77\\xaf\\xd5\\x8a\\x93\\x4a\\xe3\\x27\\x23\\xdb\\xd8\\x62\\x3a\\x4c\\x13\\x59\\x74\\xa3\\x7c\\x55\\x7f\\x05\\x9c\\x0f\\x3b\\xe5\\x79\\x3a\\xdb\\xb5\\xcc\\xb2\\x68\\x73\\x31\\x48\\x8e\\x60\\x0b\\xb0\\xbb\\xf2\\xd8\\x0c\\x82\\x9c\\x2d\\xb0\\x76\\x7c\\xef\\xe3\\x94\\x14\\x65\\x12\\xd0\\xf0\\xa1\\xc4\\x57\\x23\\xf8\\x27\\x30\\x66\\xef\\x34\\xca\\x5a\\x5e\\xfb\\x03\\xb6\\x99\\xae\\xf8\\xc9\\xd1\\x61\\xd7\\x17\\x10\\xb8\\x41\\xce\\xca\\x69\\x9d\\x6e\\x71\\x39\\xed\\x9e\\xc3\\x3d\\xdb\\xa7\\xc0\\x76\\x8b\\x89\\x14\\x1e\\x3a\\xcd\\x39\\xae\\x0e\\xb4\\xae\\x3a\\xc7\\x8f\\xe6\\x89\\x05\\x53\\x7d\\xe9\\xfb\\x53\\xf5\\x50\\xc3\\xbb\\x1f\\x34\\xfb\\xe4\\x47\\x82\\xa5\\xe5\\xd9\\xa3\\xcc\\xd8\\xbb\\x9d\\x54\\x8b\\x64\\xad\\xd5\\xeb\\xc9\\x2d\\x8e\\xa3\\xa4\\x9d\\xc7\\x69\\xcb\\x29\\x6a\\x0e\\x04\\x24\\x19\\x49\\x85\\xfb\\xd2\\x8f\\xf9\\x99\\xaa\\x2d\\xae\\x1b\\x41\\x0f\\xf3\\x95\\xa4\\x31\\xda\\x4c\\xee\\xe7\\xca\\xe3\\x7e\\x25\\x4f\\x71\\xfc\\x86\\xdf\\x30\\x6e\\x6c\\x0b\\x2e\\x1b\\x53\\xfc\\x1b\\xa9\\xff\\x5e\\x8e\\xb5\\x48\\x1d\\xaf\\x17\\x5c\\x9a\\xed\\xe4\\x42\\x6a\\x26\\xde\\x7f\\x9b\\x12\\x38\\xa7\\xd6\\x46\\xbc\\x41\\x0d\\x5f\\x07\\xf5\\x19\\x63\\x49\\x0f\\xd7\\x70\\x5e\\xb4\\xf2\\x26\\x47\\x17\\xa5\\x72\\xa9\\x9c\\x01\\x9c\\x09\\xca\\xa2\\x8a\\xee\\xac\\x18\\xf6\\xac\\x68\\xf8\\x2a\\x07\\x5f\\xb8\\x58\\x23\\xa1\\xd1\\x02\\x18\\x7c\\x27\\x7d\\x08\\xf9\\x2a\\x33\\x70\\x85\\x2e\\x90\\x9d\\xae\\x28\\xfd\\xc9\\x5c\\xc6\\x24\\x12\\x4a\\x14\\x2b\\x0d\\xe9\\x67\\x1f\\xea\\x05\\x2d\\x10\\xd2\\x8e\\xd1\\xb4\\x56\\xed\\xb0\\x32\\x19\\xa3\\x09\\xc1\\xa3\\xd4\\xa5\\xf2\\xda\\x54\\xb8\\x33\\x44\\xe5\\x71\\xb8\\xf4\\xfe\\x49\\x07\\x36\\xa5\\x11\\xae\\x5c\\x3d\\x82\\xbd\\x6e\\x8d\\x3f\\xdb\\x61\\x28\\xc8\\x6e\\x49\\xae\\x9f\\xce\\x13\\x9f\\x01\\xc3\\x1c\\xa2\\x59\\xf8\\x17\\x05\\x7c\\xf9\\x22\\x17\\x9e\\x3f\\x96\\xbc\\xd4\\x3a\\x54\\xf3\\x51\\x76\\xbe\\xd5\\x89\\xec\\x94\\x24\\x97\\xa9\\x6f\\x3f\\x87\\x7a\\xfd\\x34\\x99\\x55\\xc9\\x71\\x6b\\x44\\xf5\\x0d\\xb7\\x8f\\x02\\xac\\x7e\\x35\\xd1\\x5b\\xdc\\x6e\\xa7\\x43\\x79\\x23\\x3f\\xea\\x0e\\x3a\\x62\\x30\\xe0\\xf5\\x74\\xe4\\xff\\x60\\xbc\\x31\\x33\\x23\\x0a\\x9d\\xa2\\x2f\\xf8\\x55\\xa0\\xf6\\x34\\x7f\\xcf\\xc2\\x9b\\x0d\\x5a\\xe4\\xe8\\xf5\\x49\\x7b\\x6c\\x4e\\x80\\x5f\\x86\\xb3\\xc5\\x56\\xaa\\xfd\\x30\\x17\\x7c\\x79\\x19\\x60\\x31\\x44\\x66\\x47\\xae\\x39\\xae\\xca\\x7d\\xe7\\xf8\\xb3\\xab\\xbc\\xeb\\xcf\\x7b\\xca\\xfa\\x95\\x6b\\xdd\\xbc\\x57\\x5c\\xc2\\x9c\\x11\\xef\\x09\\x43\\xc0\\x35\\x97\\x89\\xb6\\x66\\x21\\xaa\\xc9\\x71\\xf5\\xbb\\xd1\\xa0\\x4d\\x50\\xdf\\x67\\x81\\xc3\\x54\\x33\\xc9\\xa5\\xed\\x39\\xa2\\xc6\\x1b\\x9b\\xf0\\x8f\\xf5\\xea\\x8e\\xc6\\xee\\x6c\\x12\\x2b\\xf4\\xe9\\x00\\x29\\xf3\\x3c\\x1a\\xe5\\xbc\\xb4\\x95\\xfc\\xeb\\xe1\\xfa\\x09\\xda\\x51\\xfe\\x1c\\x4a\\x13\\xb9\\xf9\\xe0\\x00\\xec\\x58\\xfb\\x24\\x10\\x71\\xe3\\x82\\x20\\xf5\\x01\\x90\\x8d\\xb5\\x6c\\x33\\x81\\xe0\\x21\\xc5\\x9f\\x88\\xed\\xc1\\x3a\\xba\\x6d\\x3d\\x66\\x06\\x5d\\xec\\xed\\x8c\\x77\\xd9\\x13\\xd8\\x62\\x20\\x1d\\x77\\xdf\\x0e\\xc6\\xd1\\x1e\\xbf\\x8f\\xa7\\xc5\\xce\\x24\\x89\\xd6\\xb6\\x27\\x4d\\xce\\x94\\xc0\\xba\\x2d\\x98\\xf2\\xce\\xd4\\xc4\\xce\\x4c\\xe0\\xf5\\xac\\xf5\\xbd\\xa1\\x2e\\x57\\x4a\\xee\\xc8\\xf3\\xa6\\x43\\x96\\x67\\x36\\x59\\xf2\\x17\\xb3\\xbf\\x16\\xab\\x08\\x15\\x46\\xb9\\x3b\\xa6\\x9f\\xf5\\x19\\xf6\\x31\\x2c\\xbd\\x0f\\x08\\x82\\xc4\\xe0\\xbe\\x47\\x42\\xa1\\x9b\\x04\\x34\\x0a\\xff\\xce\\x44\\x5f\\x7b\\x21\\x48\\xc4\\x4c\\x4c\\xe4\\xf0\\xcd\\x19\\x7b\\xe5\\xce\\x10\\x0e\\xcc\\x86\\x47\\xbe\\x7a\\xe2\\x74\\x20\\x4f\\xcb\\x2c\\x42\\x42\\x3f\\x09\\x7d\\xb0\\x56\\x08\\x97\\xaf\\xd8\\x81\\xc1\\x9f\\xe4\\x4f\\x81\\x42\\x37\\x7a\\x7a\\x88\\x71\\xa4\\x39\\xd0\\x1d\\x60\\xc1\\x92\\x0c\\x48\\xca\\xb2\\xfb\\x39\\xe5\\x43\\xba\\x60\\x35\\x98\\xd1\\x28\\x95\\x73\\xec\\x39\\xde\\x4d\\x82\\x56\\x11\\x0f\\x44\\x6b\\x77\\x4b\\x7f\\xee\\x5e\\xe5\\xa7\\xbc\\xf5\\xa7\\xee\\xa1\\x18\\x61\\xf9\\x35\\x09\\x87\\x06\\x16\\x2c\\x48\\x27\\x3f\\x4e\\x96\\x6c\\xc7\\x59\\x05\\xfd\\xeb\\x26\\xd3\\x61\\x89\\xf8\\xcd\\x3c\\x40\\x97\\xea\\x9d\\xd2\\x85\\xb4\\x87\\x99\\x9a\\x50\\xb3\\x43\\xb8\\x9a\\x6e\\x6e\\xc9\\x10\\x90\\xc6\\x30\\x54\\xb3\\x63\\x49\\x06\\x64\\x39\\xd4\\x78\\xc6\\x0a\\xb5\\xed\\xa2\\xb3\\xae\\x3a\\x04\\x15\\x57\\xdb\\xff\\x36\\x65\\x74\\x4e\\x65\\x8d\\x17\\xf9\\xc6\\x07\\x74\\x73\\xcd\\xa4\\x75\\x4e\\xd5\\x2b\\x66\\x8b\\xe0\\x5d\\xf0\\x86\\x60\\x43\\x98\\x9b\\x55\\xee\\x2f\\x65\\x12\\xcc\\x2d\\xe8\\x9d\\xbe\\x5a\\xd0\\x14\\xfd\\x2a\\x6b\\x1c\\x5e\\x25\\x01\\x75\\xb7\\x00\\x7b\\xa8\\x87\\xf8\\x73\\x07\\x5d\\x8b\\x99\\xf9\\x86\\xfa\\x3b\\xbe\\xc8\\xd3\\xce\\x6d\\x7f\\xa9\\xec\\x57\\xb1\\x21\\x75\\x68\\xe0\\xe7\\xf5\\x85\\xe9\\x09\\xbe\\xbf\\xfd\\x32\\x97\\xa8\\xa1\\x2d\\xd2\\x19\\xd1\\x63\\x26\\x4e\\x9a\\x20\\x1a\\xe7\\xaf\\x58\\x25\\x31\\x43\\x43\\xe8\\x55\\x8b\\xa6\\x24\\xf6\\xb9\\xa8\\xf7\\xfe\\xa9\\x29\\x8d\\xcf\\x11\\xe6\\xf6\\xed\\xe3\\x47\\xde\\xab\\x62\\x73\\xe2\\xc9\\x6d\\xef\\x84\\x1b\\x95\\x48\\x09\\xf9\\x2c\\x05\\xf9\\xea\\x79\\xa1\\x1e\\xbc\\x78\\x80\\x94\\x49\\x40\\x69\\xf9\\xb3\\x58\\x82\\x73\\x32\\xcc\\x7b\\x26\\x07\\x35\\x04\\x85\\x27\\x92\\x50\\x9c\\x44\\xd2\\xb5\\xe2\\xc8\\xf8\\x7e\\xe6\\xb0\\xff\\x69\\x1d\\xf5\\x9d\\x87\\x6a\\x72\\x34\\xdd\\x8d\\x2c\\x86\\x8c\\x17\\xd6\\xa2\\x00\\x28\\x47\\xe2\\x2a\\x00\\x6f\\x0c\\xab\\x04\\x7b\\x6d\\xb4\\x4c\\x56\\x67\\xf0\\x7b\\xff\\x01\\x7a\\xb9\\xe3\\xcb\\x8e\\xd8\\xd8\\xfb\\x77\\xa9\\x71\\xec\\xf1\\x1a\\xe6\\x8c\\xb2\\x1d\\x35\\x1b\\x60\\x7b\\x4c\\xb7\\x0e\\xec\\xfd\\x9a\\x7e\\xe9\\xed\\xdf\\x15\\xcd\\x3f\\x22\\x2d\\x4e\\x0f\\xb8\\xb0\\x16\\xa9\\x60\\xad\\x05\\x62\\xac\\x5b\\x78\\x13\\x58\\x25\\xf8\\xeb\\x02\\x91\\xec\\x4e\\x9c\\xdf\\x13\\x04\\x0c\\xb3\\x6d\\xd2\\x85\\x4d\\x07\\x89\\x05\\x9d\\x15\\xf8\\xfb\\x1b\\x41\\xe3\\x32\\x15\\xf2\\xa1\\xde\\xcb\\x7a\\xcd\\x24\\x23\\x48\\x0f\\x0a\\x9d\\xd6\\x3d\\xb1\\xe7\\x90\\xea\\x93\\xc8\\x30\\xff\\xc4\\xc8\\xf1\\x43\\x6d\\x51\\x11\\xf2\\x4d\\xc8\\x85\\xe4\\x83\\xef\\x9f\\xa9\\x61\\x4d\\xbe\\x18\\xbf\\x34\\xf3\\x4a\\x99\\x2c\\x9e\\x24\\x72\\xb8\\x05\\x96\\x22\\x1a\\x0b\\x42\\x64\\x49\\xa0\\x72\\x38\\x44\\x50\\x4a\\x30\\x60\\x21\\x88\\x4e\\x0e\\x68\\xc6\\x93\\x58\\x97\\xf2\\xc6\\x16\\x70\\x0a\\x4b\\x79\\x86\\x8d\\xd6\\x57\\xa2\\xf4\\xfd\\x3a\\xb5\\xd6\\xa9\\x5b\\xf2\\xc6\\x4e\\xc5\\x4b\\x11\\x4b\\x49\\x56\\x12\\xde\\x26\\x85\\x02\\x00\\xae\\xcb\\xe5\\xf5\\xa8\\x2f\\x7d\\x43\\x3d\\x0e\\xf4\\x97\\x18\\x56\\xe3\\xd9\\x59\\x2a\\xdf\\x0c\\x09\\xc8\\xd3\\xfd\\xce\\xf7\\xb3\\xf3\\x18\\x5c\\x17\\xbb\\x5e\\xf5\\xe2\\x44\\x03\\x41\\xda\\x45\\x71\\xfa\\x6a\\xc1\\xe5\\xea\\x1d\\x69\\x74\\x69\\x5d\\xde\\xa4\\x38\\x89\\xe5\\x5a\\xc3\\xcb\\xcd\\xdd\\x34\\x98\\x96\\x6b\\xed\\xce\\x5b\\xb3\\xf6\\x85\\x1b\\x75\\x7c\\x57\\xb6\\x30\\xd1\\x6d\\xeb\\x84\\x96\\x5c\\x93\\x27\\x5e\\x8d\\x2a\\x38\\x38\\xb1\\x22\\xc6\\x85\\xfb\\xd0\\x86\\x83\\x96\\x77\\xd7\\xa4\\x8f\\x18\\xec\\x76\\xd5\\x67\\x9e\\xb3\\x02\\xb4\\x49\\x17\\x16\\xe2\\xe7\\x37\\x6c\\xa8\\xa2\\x43\\xff\\x36\\x37\\xcb\\xc1\\xb9\\xc1\\x6f\\xfa\\x73\\x93\\x99\\x34\\x2d\\x5a\\xb1\\xe6\\x1b\\xfa\\x5a\\xea\\x60\\x93\\x08\\xe7\\x86\\xe0\\xb7\\x1a\\x4f\\x55\\x31\\x17\\xd7\\x6a\\x44\\x1e\\x85\\x8c\\xed\\x9c\\xc3\\x03\\x2e\\x07\\xb6\\xe2\\x22\\xdb\\x76\\x0e\\x5e\\xdd\\x49\\x9d\\xe6\\xc5\\x4b\\x3e\\x97\\xf2\\x58\\xde\\x40\\x52\\x7c\\x1e\\x37\\x9d\\xf6\\xc3\\x2f\\xbb\\x76\\x19\\x99\\xa0\\xf8\\x39\\x6c\\xed\\xca\\xa5\\xdb\\xea\\xc5\\x84\\x53\\xe0\\x12\\x7c\\x76\\x69\\xa4\\x4b\\xe9\\xfc\\x56\\xee\\xb1\\x4b\\x43\\x15\\x5b\\x04\\x45\\x49\\xee\\x94\\x0d\\xb3\\xda\\x5e\\xcb\\x3f\\xce\\x7e\\x26\\x5c\\xdf\\x0d\\x13\\x86\\x7a\\x7f\\x79\\x14\\x3d\\xd6\\x2a\\x07\\xd5\\xc5\\xd2\\x6c\\x74\\xa7\\xf0\\xe3\\x5f\\xef\\xec\\xa1\\xec\\x36\\xf7\\xf4\\xdd\\x3e\\xe0\\xf6\\x68\\xa1\\x04\\x69\\xb7\\x89\\x23\\xfe\\x00\\xc5\\x06\\xec\\x5f\\x7e\\x2c\\xb1\\x3b\\x8b\\x28\\xc3\\x72\\x99\\x1f\\x43\\x82\\xf6\\xce\\x03\\x7d\\x6b\\xb6\\xc9\\x94\\x0d\\x6a\\x42\\x67\\x3b\\xb6\\xcd\\xe7\\x71\\xcd\\x2f\\x64\\x04\\x9e\\xbe\\xb2\\xba\\x6d\\x5f\\xad\\xd6\\xe2\\xf1\\x32\\xd7\\x6b\\x15\\x27\\x25\\x74\\xbd\\x63\\x57\\x36\\x7b\\x2f\\xd1\\x49\\xba\\x60\\x02\\xe4\\xc2\\x43\\xfd\\x12\\x7a\\x92\\x58\\xd8\\x74\\xd5\\x37\\x69\\xaf\\x1b\\xa9\\xc8\\xf2\\xfd\\x99\\xad\\x58\\x2c\\x93\\x7b\\x70\\xfa\\x02\\xa4\\x66\\x36\\x2f\\x2c\\x2b\\xf1\\x33\\x93\\xb6\\x60\\x98\\x7e\\x67\\x62\\xcd\\x23\\xfc\\x14\\xac\\x03\\xab\\x8d\\x50\\xfe\\xca\\x8b\\x3e\\x94\\xdb\\x0a\\xe6\\x32\\xa8\\x58\\x19\\x52\\xd5\\x05\\x44\\x51\\xc5\\xf3\\xc6\\x68\\xb7\\xda\\xd4\\x44\\xed\\x72\\x3a\\xe3\\x48\\x97\\x9b\\xe3\\x53\\xed\\x3d\\xf6\\x90\\xd8\\x25\\xcd\\xdd\\xbf\\x16\\x08\\x8d\\x6a\\xd1\\xd1\\x32\\x9c\\xc1\\x30\\x66\\x64\\xaa\\x2e\\x28\\xd7\\x7a\\x19\\xd1\\x01\\x6e\\x67\\xfb\\xbb\\x75\\x0d\\xd1\\x5c\\x93\\x69\\xb0\\x38\\x10\\xec\\xe2\\x20\\xe6\\xa6\\xa5\\x2b\\xae\\xe0\\xce\\x03\\x8e\\x60\\xed\\xf0\\xdd\\x83\\xad\\x97\\x21\\x55\\xf2\\x43\\xa5\\x1a\\xbe\\xd7\\x4b\\xa3\\x16\\xcf\\x10\\x7b\\xff\\xd9\\xf6\\x51\\x60\\x44\\xfb\\xd2\\x6c\\xd0\\xee\\x66\\x78\\xd2\\xe3\\x97\\xe1\\x8f\\x5b\\x1e\\x90\\x10\\xa3\\xfd\\x8e\\x71\\x7d\\x34\\x06\\x4f\\x6f\\x9d\\x67\\xa7\\xd6\\xcb\\x68\\x59\\x03\\x1a\\xaf\\xc4\\x09\\xe0\\x6b\\x1f\\x09\\x0c\\xca\\x91\\xaf\\x9a\\xee\\x8f\\x46\\x38\\x7f\\x15\\x07\\xa9\\xe4\\x4e\\x2b\\x15\\xc6\\x11\\xd3\\xf5\\x1b\\xde\\x9f\\x45\\x71\\x4c\\x16\\x79\\x18\\xd3\\xb2\\x0a\\xbb\\xd0\\xce\\x4f\\x8a\\x30\\x91\\xa5\\x2e\\x7b\\xd8\\x10\\xc5\\xc1\\x65\\xc5\\x1f\\x67\\xea\\xbc\\x9d\\x4d\\xd0\\x24\\x6f\\x57\\x8e\\xb5\\x09\\x8f\\xb0\\x0b\\xd7\\xbb\\x95\\xdd\\x8a\\x28\\xb0\\x14\\x2c\\x03\\xd7\\xb5\\xe1\\xec\\x0c\\x70\\x68\\xad\\xb7\\xe8\\xfb\\xce\\x2d\\x8c\\x89\\x2a\\xca\\x64\\x82\\xca\\x64\\x61\\x7c\\xf0\\x04\\xf4\\x89\\x75\\xf6\\x98\\xc1\\xfb\\xc1\\x2e\\x1c\\xc9\\x7b\\x92\\x29\\x26\\x2a\\x64\\xa7\\xc9\\x12\\x06\\x2a\\x17\\xaf\\xb0\\x7b\\xa9\\x9a\\xad\\x20\\x07\\x3f\\xa6\\xbd\\xc7\\x20\\x41\\x7b\\x05\\xea\\x6e\\xf2\\xe3\\xf4\\x40\\x8a\\xfd\\xd6\\x96\\x29\\x00\\x26\\xaa\\xb2\\x74\\x34\\x5b\\x57\\x54\\xd2\\x7b\\x27\\xa6\\x09\\xd1\\x37\\x82\\x5d\\xba\\x9f\\x10\\x4d\\x18\\x0c\\xa2\\xaf\\x61\\x24\\x17\\x66\\x12\\x5d\\x69\\x29\\x2c\\x85\\xd8\\x4e\\xca\\x5d\\xdb\\xfa\\xb6\\xbb\\x9d\\x3d\\x67\\x49\\xfb\\x4d\\xbf\\xdd\\x7b\\xdb\\xcf\\x0b\\x4d\\x26\\x30\\x2c\\x68\\x75\\x7b\\xf9\\x29\\x4b\\x8b\\x42\\xd8\\x8a\\xbe\\xa8\\x51\\xfb\\xd8\\x69\\x82\\xdd\\x7e\\xb1\\x5d\\x87\\x7d\\x33\\x25\\xd6\\xe2\\x01\\xbb\\xa9\\xcd\\xd6\\x03\\x60\\xbc\\xc5\\xf1\\x50\\xb5\\xc2\\x48\\x2e\\x06\\x43\\xde\\x54\\x18\\x57\\x51\\x85\\xd8\\xa4\\x85\\xd6\\x6f\\x62\\xe9\\xa5\\x3b\\xe0\\xad\\x9d\\x7e\\x4a\\x98\\x8c\\x2d\\x44\\xf5\\xfa\\xeb\\x2c\\x20\\xb3\\x75\\xa9\\xc7\\x89\\x1d\\x3f\\xd9\\xc0\\x88\\xc3\\x84\\xfd\\xee\\xf7\\x57\\xb1\\x92\\x50\\x32\\x21\\x6e\\xd7\\xb0\\x97\\x58\\x22\\x37\\x28\\xf9\\xd8\\x02\\x11\\x24\\xf0\\xa1\\x7a\\x3e\\x46\\x7e\\x49\\xce\\x78\\xdb\\x97\\x6e\\x23\\x7f\\xb4\\x2b\\xac\\x32\\xc6\\x40\\xdf\\x77\\x7c\\xb4\\xeb\\x5c\\x63\\x8d\\x27\\x0c\\xce\\xcb\\xf9\\xbc\\x03\\x2a\\xe4\\xe0\\x19\\xac\\x35\\x3c\\x47\\x81\\x16\\xdb\\x46\\xbc\\x78\\x79\\x7d\\x51\\x06\\x7f\\xc9\\xe2\\x51\\xfc\\xca\\x0d\\xfa\\x7e\\x62\\x95\\xd9\\x4e\\xbd\\x8d\\x8f\\x69\\x59\\x52\\xc8\\x17\\x48\\xf8\\x4a\\x06\\xa6\\x0f\\xf6\\x50\\x8d\\x31\\x67\\x5f\\xb6\\xa6\\x21\\xd1\\x95\\x15\\x75\\x90\\x4a\\xea\\x3c\\x8a\\xa8\\xa6\\xbf\\x3c\\x49\\x8f\\x4c\\xee\\xbc\\x7b\\xfc\\x91\\x4a\\xa7\\xf1\\x19\\x70\\x3d\\x79\\xf2\\xaa\\x4b\\x9a\\x83\\xf4\\xee\\x41\\x37\\xa2\\xf9\\x87\\x54\\xed\\xf5\\xbc\\x62\\xce\\xf1\\x7d\\x33\\x6c\\xf7\\x75\\xfb\\x22\\x80\\x5c\\xec\\x26\\xb9\\xe6\\x9d\\xfe\\xb1\\x63\\x9f\\x2c\\x39\\x23\\x20\\x3f\\xe8\\x06\\xf6\\xae\\x24\\x7a\\xd2\\x56\\xa2\\x33\\x09\\x8f\\x91\\x86\\x6b\\x78\\xbf\\x84\\x3d\\x8b\\x07\\x7c\\x67\\xa0\\xf0\\xf1\\xf0\\xf9\\x2f\\x23\\x2f\\x24\\xa5\\xf2\\xcb\\x43\\xfd\\xe7\\x01\\x92\\x26\\xd6\\x5e\\x1c\\x12\\x98\\xa5\\x7c\\x70\\x10\\x37\\xb0\\x6a\\x85\\x37\\x4a\\x1a\\xda\\xbc\\x2b\\xf6\\xc1\\x57\\xbf\\x64\\x9c\\xc0\\x38\\x9b\\x12\\x7e\\xe1\\xa0\\x01\\x83\\x6d\\x74\\x1c\\xf3\\xe7\\x8d\\xaa\\x6e\\xd5\\x24\\x71\\x25\\x3d\\xdd\\x01\\xe2\\x88\\x71\\xfc\\x9d\\xdb\\xef\\x40\\x24\\x93\\xd8\\x20\\x60\\x47\\x09\\x99\\x27\\xc7\\x8c\\x7a\\x5d\\x5a\\xfc\\xb0\\x46\\x7a\\x74\\xfa\\x14\\x0e\\x9b\\x02\\x6e\\xdc\\x35\\xec\\xf2\\xcf\\x40\\x7d\\x74\\x4a\\x41\\x68\\x31\\x12\\xf8\\x61\\xb9\\x3e\\x24\\x65\\x83\\x20\\xf7\\xd7\\x04\\x2e\\x14\\x93\\xe4\\x46\\xa3\\x2e\\xd5\\x0e\\xcd\\x17\\x59\\x42\\xe4\\x5e\\x64\\xe7\\x4f\\x54\\x03\\x55\\x24\\x23\\x93\\x3c\\x54\\x0f\\xee\\x74\\x35\\xf9\\x14\\x1b\\xbf\\x38\\xb2\\x83\\x91\\x5d\\xd9\\x11\\x09\\x6b\\x2f\\xb9\\x31\\x09\\xb9\\x21\\x2a\\xb0\\xa8\\xf7\\x84\\xdd\\xd7\\xbd\\xc7\\x9f\\xa0\\x1d\\xf1\\x05\\x34\\xcc\\x73\\xe8\\x7d\\x75\\xda\\x85\\xe6\\x96\\xfe\\xdc\\x5d\\x61\\x6d\\xba\\xdb\\xf9\\xa6\\xaa\\x3b\\x63\\x3c\\xa2\\x4d\\xe4\\xb1\\xf7\\x19\\x72\\x02\\x7c\\xf5\\x8d\\xd7\\x4a\\x0f\\xc5\\x5c\\x2c\\x30\\x40\\x09\\x78\\x5f\\xbd\\x97\\x64\\xd9\\x6c\\xc6\\x98\\xa2\\x10\\x76\\x5d\\x37\\xb0\\xa0\\x17\\x9d\\x55\\x61\\x14\\x15\\x99\\x56\\x9f\\x19\\x83\\x03\\x56\\x2f\\xfe\\x0a\\x0f\\xe1\\xab\\x1d\\xd8\\x0f\\x76\\xc5\\x1b\\x33\\x8f\\x27\\x34\\xaa\\xd4\\x50\\xf4\\xc3\\x02\\x07\\x09\\x8b\\x68\\x45\\x9a\\xeb\\x44\\xae\\x0b\\x5a\\x50\\x1b\\x15\\x28\\x81\\xff\\xf9\\x43\\x43\\x4a\\xfb\\x39\\xb9\\x9f\\xbb\\x4e\\x80\\x88\\x43\\xe3\\xa5\\xd4\\x2c\\x6c\\x96\\x7f\\xfc\\x34\\x4a\\xfc\\x52\\x96\\x49\\xf6\\x6b\\x69\\x3b\\xe3\\xa5\\x78\\xca\\xe9\\x06\\x8f\\x83\\xae\\x4f\\x29\\x1a\\xff\\x9c\\xeb\\x51\\x15\\x53\\xb5\\xac\\xf0\\x39\\x0b\\x2a\\xa3\\x3d\\xb7\\x92\\x8d\\xfc\\x2a\\x72\\x49\\x23\\xb1\\xb0\\xdd\\xa1\\xdf\\x98\\x45\\xe6\\x73\\x3a\\xeb\\x5b\\x22\\x36\\x2a\\x23\\x4f\\x3f\\xa4\\x53\\x17\\x40\\x75\\xe1\\x40\\xda\\x6f\\x45\\x43\\x3c\\x79\\x65\\xa8\\xec\\x56\\x7c\\x43\\xdb\\xc9\\xcc\\x21\\xe0\\xc4\\x57\\xf3\\x12\\x4d\\x44\\x32\\x49\\xfa\\x88\\x6f\\xe6\\x04\\x0d\\x74\\x0a\\x5a\\x75\\x51\\x9d\\xee\\x91\\x3e\\x92\\x2c\\xc5\\xc1\\xa2\\x38\\xe5\\xaa\\x9d\\xc2\\x42\\x8e\\x7f\\x10\\x8d\\x8e\\x86\\x35\\xcb\\x46\\xc9\\xa8\\x0e\\xba\\xec\\x0a\\x11\\x8d\\xbe\\xa3\\xce\\x05\\x04\\x93\\x4c\\x53\\xb3\\x20\\xe6\\x47\\xde\\x78\\x3b\\xb4\\xa1\\xef\\x1f\\x71\\x18\\xa1\\x6f\\xdb\\x6d\\x51\\x78\\x12\\xd1\\x58\\x10\\x83\\x0b\\x94\\x82\\xda\\x2c\\x50\\x50\\x76\\x7c\\xb4\\x74\\x29\\xaa\\xa5\\x6d\\xe9\\x22\\x34\\x8d\\x34\\xd5\\x46\\x5d\\xd2\\xaf\\xda\\x2d\\x23\\xf4\\xa6\\x3a\\x34\\x6e\\xe2\\x10\\xad\\x4e\\x35\\x4c\\x08\\x37\\xf1\\xd2\\xaf\\x8d\\x4b\\x8f\\xab\\x1c\\x70\\x6b\\xc0\\x1f\\x53\\x1a\\xf2\\xa4\\xa5\\x04\\x89\\xd5\\xbb\\x23\\x07\\xc5\\x0c\\xc1\\xa2\\x0b\\x22\\xc4\\x19\\xec\\x2b\\xe6\\xe2\\xf5\\xf0\\x36\\x42\\xfe\\xba\\xb4\\xea\\x83\\x70\\x75\\xf6\\x71\\xfb\\x50\\xfb\\x1f\\xad\\x76\\x30\\x20\\xf8\\x65\\xfd\\x4c\\x18\\x28\\xf8\\x43\\x51\\xc9\\x59\\xbd\\x2f\\xd9\\x54\\xfa\\x5f\\xdb\\x2e\\x11\\xdc\\x81\\x28\\xce\\xec\\x05\\x9b\\x17\\x69\\xef\\x1e\\x0a\\xca\\x20\\xb8\\xb8\\x63\\x28\\x94\\xa5\\xc6\\x95\\x6a\\xb6\\x8c\\xbd\\x24\\x6a\\x96\\xea\\x3f\\x27\\x41\\x96\\x4e\\xe9\\x5b\\xcf\\x84\\x07\\xe6\\xbe\\x95\\x7a\\x91\\x8b\\xc2\\xf4\\x01\\x81\\x33\\x7a\\xdf\\x91\\x5a\\xc7\\xa9\\x07\\x07\\x2e\\x71\\x4f\\x2b\\x80\\x1d\\xf5\\x86\\xc1\\x7c\\x2b\\x58\\xc1\\xd6\\x22\\x88\\x1b\\x55\\x4b\\x28\\x20\\x10\\x4b\\x40\\xbe\\x25\\x33\\x36\\xc8\\xf3\\xf7\\x65\\xba\\x86\\x3e\\xfe\\x6a\\x4d\\x4c\\xd3\\x81\\x8b\\x57\\x8b\\x9c\\xbf\\xdf\\xa3\\xc6\\x93\\xbf\\xb0\\x69\\x04\\x7e\\xc0\\x25\\x13\\x1f\\xc7\\xd6\\xe3\\x24\\xdc\\xa1\\xcf\\x93\\x3f\\x08\\xbc\\x19\\xb9\\xdb\\x78\\x45\\x55\\x92\\x49\\x23\\xfe\\x19\\xfa\\x1b\\x84\\x00\\x5a\\xbe\\xbc\\xc3\\x98\\x84\\xf2\\x15\\xb9\\xe7\\x18\\xa2\\x5a\\x5b\\xb6\\x81\\x9b\\xf4\\x8c\\x3a\\x0c\\xbf\\x22\\xd1\\xf7\\x4e\\x87\\x02\\xae\\xaa\\x57\\x2f\\x6f\\xf3\\x21\\x02\\x8d\\x03\\x71\\x80\\xab\\x9a\\x17\\x0c\\x7d\\x1c\\x0b\\xbd\\xe7\\x3b\\xcf\\x18\\x82\\x90\\xde\\x86\\x06\\x11\\x56\\x78\\xa0\\x00\\xdb\\x8a\\x6b\\xd0\\xe1\\x44\\xdc\\x03\\x7c\\x9c\\x26\\xd8\\x15\\xdf\\x0b\\x8f\\x6f\\x5a\\x33\\xa8\\xd3\\xb6\\x24\\x10\\x0b\\xd8\\xa1\\xf9\\xc2\\xb0\\xd5\\xc6\\x23\\xf8\\x88\\x33\\x89\\xde\\xeb\\x4a\\xf9\\xfa\\x08\\x54\\x78\\x7f\\x7c\\x12\\xb4\\x10\\xd8\\x24\\xe0\\x58\\x44\\x1e\\x83\\xa2\\x1f\\x15\\xb2\\xac\\x16\\xed\\xf0\\x92\\xdc\\xf7\\x1e\\x90\\x3c\\xe0\\xa7\\x08\\xc4\\xdb\\xf7\\x41\\xad\\x9c\\x27\\xa2\\xdf\\xb4\\xd3\\xaf\\xa2\\xeb\\x7f\\x9d\\x2c\\xca\\x15\\xb8\\x74\\xf5\\x21\\x3f\\x3d\\xa1\\xfd\\x57\\x21\\x74\\x18\\xf2\\xbe\\x64\\x0b\\x47\\x0b\\x59\\x63\\x62\\x8d\\xac\\x15\\x36\\xf4\\x53\\x5c\\x38\\x74\\x0d\\x73\\xee\\xbe\\x0d\\xc8\\x00\\xd2\\xdf\\x80\\xfe\\xdc\\x8c\\xe5\\x02\\x19\\x80\\x91\\x7d\\xb7\\xbb\\x0b\\x5e\\x5d\\x3c\\x43\\x96\\xbd\\xb7\\x5f\\x82\\xf3\\x61\\x26\\x4d\\xb7\\x9e\\x6d\\xca\\x98\\x7a\\x6f\\x7f\\xa5\\xd9\\x0f\\x79\\x25\\xde\\xdd\\xe8\\xab\\x4f\\x96\\x07\\x2b\\x0e\\xd2\\x15\\xa7\\x5c\\xc6\\x66\\xd3\\xd7\\x1c\\x0b\\xbf\\xb6\\x00\\x1f\\x8c\\x1e\\x48\\x34\\x47\\x51\\x6f\\x1b\\x7f\\x6f\\x6c\\xde\\x3a\\x87\\x8f\\x79\\xc2\\xed\\x7f\\xd3\\x4e\\x3d\\x47\\x73\\x4d\\xea\\x21\\x49\\x37\\x2f\\xca\\x0d\\x33\\xfb\\xdc\\xe0\\x98\\x16\\x80\\x2b\\x15\\xc8\\x9d\\xf7\\xd7\\x5a\\x89\\x0b\\x3f\\xd1\\xd6\\x1f\\x9c\\x86\\x38\\x76\\xf6\\xa9\\x6a\\xf9\\xd9\\x1c\\x7e\\xaf\\x2b\\x49\\x4d\\x74\\xe9\\x5d\\x4e\\xb2\\x00\\x8a\\xc9\\x46\\xaf\\x77\\x18\\xbb\\x7d\\x3b\\x84\\x49\\x47\\xfc\\x4c\\x38\\x52\\xe5\\x97\\xcc\\xd0\\x99\\x35\\xbe\\x8a\\x2f\\x2f\\xba\\xd0\\xe5\\x76\\x3b\\x3a\\xa1\\xa3\\xd3\\xeb\\x08\\x1c\\xc7\\x08\\xe8\\x8b\\x92\\x25\\xcf\\x9f\\xe9\\xfa\\xda\\xe5\\xde\\x17\\x45\\xec\\x7b\\xb8\\xd9\\xc1\\x6a\\xbb\\xb4\\xe2\\x8f\\x3d\\x9b\\xb1\\x79\\x36\\x1a\\xbd\\x4f\\x17\\x3f\\x21\\x51\\x7d\\xb9\\xda\\xe5\\x24\\xaa\\x2b\\xcc\\x63\\xec\\xa4\\xaa\\xd7\\x35\\x54\\x79\\xca\\x83\\x8b\\xb7\\x71\\x7c\\xba\\xec\\xf9\\x50\\x1d\\x2d\\x74\\x33\\x5b\\x98\\xe3\\x46\\x3e\\xc7\\x27\\xdc\\x61\\xd9\\x51\\x3b\\x18\\x5a\\xb6\\xa1\\xe1\\x75\\x4f\\x9a\\xb2\\x43\\x4c\\xb3\\x27\\x6f\\xf0\\x3b\\x8f\\xfb\\x8f\\x63\\xac\\xd4\\xf5\\xb2\\xcd\\xe7\\x9b\\xe7\\x03\\xfa\\x92\\xda\\x02\\xf6\\x56\\x9e\\x96\\x17\\xc2\\x25\\x4a\\x8c\\xe5\\x87\\xb6\\x39\\x79\\xe4\\x7b\\x0d\\xaf\\x76\\x35\\x87\\x77\\x02\\xe3\\x22\\xc9\\xf0\\xb4\\xf2\\xdc\\x2d\\xc3\\xd6\\xe3\\x87\\xde\\xcb\\x66\\x4e\\xc5\\x61\\x16\\xb3\\x63\\x6c\\xed\\xc7\\xd6\\xf3\\xb6\\x8d\\xfd\\xec\\xf7\\xbf\\x9b\\x17\\x94\\xf1\\x4a\\x6c\\xa8\\xaf\\xf8\\xdd\\x62\\xa5\\x75\\x50\\xb3\\xca\\xe7\\x4a\\xb5\\xef\\xaa\\xe7\\x89\\x77\\xa4\\xb4\\x21\\x6f\\xd1\\x5f\\x7d\\x7f\\x1c\\xce\\xc7\\x69\\x0e\\xb8\\xca\\xd7\\xfa\\x27\\xef\\x2e\\x35\\x5c\\x75\\xf2\\x0c\\x09\\x4f\\x3f\\xcb\\x1d\\xe5\\x1f\\xa7\\x1d\\xc6\\x6f\\x7b\\x7f\\x2d\\xc9\\xdf\\x7a\\xd2\\x5a\\x22\\xe7\\x05\\x3d\\xb1\\xe1\\x9f\\x4b\\x31\\xdf\\xb3\\x94\\x04\\xe2\\x47\\x7f\\xe4\\x21\\x4f\\xf6\\x1b\\xa9\\x02\\x0e\\xd7\\xee\\xf4\\x16\\x7a\\xf9\\x8a\\x7a\\xdd\\x42\\x89\\x6f\\x46\\x27\\x73\\x9f\\x61\\xaa\\x78\\xbf\\xaf\\xaa\\x0b\\x33\\x2e\\xa9\\x82\\x13\\xa3\\xbf\\xd4\\x68\\xf7\\x73\\xe6\\x2a\\x51\\xf9\\x8c\\xbf\\x60\\xac\\x89\\xfe\\x98\\xfd\\x8b\\x25\\x39\\xb0\\xfa\\xaf\\x83\\xc1\\x08\\xc8\\xcd\\xe0\\xe1\\x65\\x83\\xf2\\x99\\x60\\xc9\\xbc\\xe4\\x3f\\x1f\\x62\\x89\\x5f\\x5a\\xcc\\xe8\\xe7\\xf1\\x11\\xf6\\xea\\xa0\\x88\\x2f\\xd2\\x24\\x43\\x36\\xcd\\xe5\\xab\\xaa\\x6a\\x66\\x36\\x53\\x7c\\x43\\xab\\xff\\xda\\x34\\xae\\xef\\xaa\\x30\\xf3\\x57\\xc0\\x30\\x8f\\x48\\xe8\\xbe\\x49\\x40\\x8a\\x6e\\xdd\\x49\\xd3\\xc0\\xce\\xc1\\x64\\x54\\x18\\x1b\\xff\\x21\\x5e\\x51\\x97\\xb7\\x0e\\xfd\\xf9\\x5f\\x2f\\xda\\x3e\\xc2\\x6a\\x49\\x20\\xa4\\xed\\xa4\\x03\\xae\\x3b\\xe5\\xba\\xf9\\xf7\\x27\\xe5\\x61\\x39\\x85\\x96\\x03\\xc5\\x57\\x88\\x3f\\x3f\\x7d\\x59\\x52\\x8f\\x67\\x18\\xdb\\x61\\x6e\\x94\\xd7\\xc4\\x87\\x67\\x5e\\xce\\xc7\\xda\\xc8\\x83\\x3c\\xd4\\xdb\\xd7\\x1e\\x47\\xbc\\x27\\x08\\x54\\x20\\xce\\xec\\x69\\xd1\\x45\\x8b\\x58\\x80\\x91\\xe3\\x37\\xc3\\x6a\\xcc\\xf9\\x2e\\x9a\\x35\\x18\\x2b\\x59\\x5f\\x80\\xf5\\x83\\xfa\\x7d\\x37\\xfc\\x39\\x14\\xc9\\xa0\\x10\\xa0\\x67\\xad\\x00\\xe8\\x48\\x0b\\xa4\\xdf\\x13\\x23\\x6f\\xf4\\x01\\x06\\x79\\xa1\\x41\\xa1\\x1f\\xf1\\xcf\\x72\\xc1\\x50\\x24\\x78\\x80\\xb7\\x1b\\x94\\xfe\\x71\\x07\\xf3\\x6e\\x50\\xa1\\x6d\\xb2\\xb9\\xeb\\x05\\xb1\\xe1\\xde\\xcc\\x0a\\x38\\xe1\\xe9\\x8e\\xa3\\xa7\\x0d\\x1b\\x7f\\x4f\\x69\\xe4\\x4a\\x25\\x8e\\x0c\\x0d\\x3c\\xa9\\x6b\\xb4\\xa7\\xc5\\x36\\x27\\x41\\xf2\\x84\\xf6\\x3d\\x29\\xb5\\x44\\x13\\x3c\\xbd\\xf2\\x03\\x0b\\x9f\\xaf\\x3b\\x0a\\x8e\\xe8\\x9c\\xba\\xe7\\x3e\\x67\\x19\\x48\\x07\\xc6\\xc2\\x4d\\xb4\\x80\\xb7\\x9f\\xf1\\x72\\x17\\xe3\\x35\\x15\\x5b\\x7a\\x3a\\x6e\\x72\\x82\\xb2\\x87\\xfd\\xd3\\x6e\\xb1\\xe8\\x5b\\x14\\xeb\\xd7\\x2c\\xca\\xf7\\x69\\x21\\x23\\xcb\\xb5\\xf8\\x6c\\x5a\\x26\\x31\\xa1\\x13\\xbd\\xb4\\x5a\\xb6\\xbd\\x11\\xdb\\x59\\xb6\\x29\\xe7\\x68\\x8b\\xb5\\xfa\\x36\\x2e\\x40\\x23\\x7b\\xb7\\x17\\x81\\xbc\\x96\\x8d\\xf7\\xa4\\x68\\x17\\x46\\x9e\\xd5\\xba\\xa6\\xd9\\x31\\xcc\\x60\\x0e\\xc4\\x37\\x43\\xdc\\xbe\\xfe\\xd8\\xa8\\x71\\xf6\\xf8\\xd1\\x4d\\x2e\\x4a\\x5d\\x2d\\x04\\x3b\\x0a\\x93\\xc1\\x6b\\xc6\\xe8\\x61\\xf1\\xb1\\xfd\\x4b\\x91\\xdf\\xef\\xde\\xf8\\x67\\xe8\\x26\\x48\\x04\\xe3\\x7a\\xd4\\x16\\xad\\x3d\\x82\\x00\\x6e\\x7b\\x72\\x41\\xf4\\x66\\x9d\\x93\\x44\\x31\\x43\\x7f\\x6c\\xe0\\xe9\\x97\\x67\\x59\\xc7\\xe0\\x4c\\xcb\\x48\\x18\\x08\\x8c\\x0f\\x3c\\x90\\x6e\\xea\\x48\\x10\\x6a\\x69\\xfc\\x74\\x7c\\x02\\x7a\\x56\\xd4\\xa4\\x50\\x9b\\xa8\\xf9\\x2f\\xe7\\x4f\\x48\\xcc\\x54\\x46\\xaf\\xf0\\x07\\x9d\\x32\\xb7\\xe3\\xaa\\xc8\\x32\\xb2\\xd9\\x38\\xf3\\x97\\xbd\\x61\\x9b\\x3f\\x89\\x53\\xae\\xb0\\x07\\x9e\\x4b\\x08\\x5e\\xaf\\x73\\xdf\\xa3\\xb5\\x24\\x5d\\xc3\\xfd\\x2a\\x70\\xd7\\xf7\\xa1\\xc7\\xa2\\xb9\\xb0\\x1a\\x22\\x58\\x63\\xe1\\xa4\\x36\\x48\\xc5\\xc6\\x06\\xbe\\xca\\x4f\\xad\\x35\\xe4\\x70\\x29\\x82\\xc8\\x6f\\xde\\xdd\\x9a\\x5c\\xb7\\x31\\xae\\xdf\\x38\\xe3\\x82\\xc9\\x67\\xb3\\xd2\\xfe\\x99\\x1a\\x15\\x37\\x38\\x00\\x7c\\x3f\\x89\\x57\\xa2\\x1b\\xfe\\x75\\x69\\xf2\\x7d\\x12\\x4f\\x3c\\x7d\\x76\\x5c\\x4c\\xeb\\x7f\\x74\\xa3\\x9d\\xfd\\x09\\x36\\x88\\x25\\x38\\xcf\\x38\\x0e\\x1d\\xb8\\x75\\x19\\xfc\\xc8\\x99\\xe0\\x40\\x6f\\x09\\x9c\\xad\\x71\\x9e\\x10\\xbe\\x71\\xcb\\x2e\\x6b\\xc9\\xf0\\x69\\xce\\x20\\x79\\x44\\x4a\\x38\\xa5\\x58\\x27\\x8d\\x03\\x1a\\xe7\\x2e\\x05\\xfb\\x2c\\xfe\\x82\\x20\\x56\\xa6\\x58\\xfd\\xc5\\xde\\xeb\\x2c\\x9e\\x20\\x2e\\x57\\x14\\xfe\\xc3\\x7f\\x4d\\xaa\\x76\\xd8\\xda\\x2f\\x49\\x34\\xda\\x79\\x3d\\xc5\\x9c\\xb4\\x8b\\x93\\x4f\\xc9\\x57\\xda\\x7a\\xc3\\xdd\\xf7\\x84\\xb8\\x42\\xe3\\x94\\xab\\xf9\\xa8\\x5b\\x00\\xca\\x16\\x51\\x0e\\xbc\\x5f\\x05\\xdd\\xc0\\x6a\\x0b\\x6f\\x51\\x96\\x76\\x7b\\xb1\\x8c\\xc3\\xbd\\x89\\xe4\\x49\\x84\\xf9\\x4f\\x88\\xb5\\x1e\\x88\\x62\\x82\\x77\\x1b\\x40\\xfb\\xcb\\xaa\\x19\\x76\\xe1\\x87\\xd8\\x3b\\xd7\\xfe\\x25\\x07\\x87\\x37\\x8f\\x1b\\xcc\\x81\\xf8\\x96\\x38\\xa9\\x1d\\x99\\xd2\\xce\\x71\\xa8\\xaa\\x5f\\xaf\\xb2\\x26\\xbc\\x46\\x4f\\xfb\\x39\\x86\\xf2\\xae\\xc5\\x86\\xea\\xc6\\xd9\\x84\\x47\\x96\\x19\\x70\\xad\\xe3\\xb0\\x70\\xee\\x12\\xae\\x33\\x7a\\xe6\\x20\\x9c\\x1b\\x78\\xdd\\xb4\\xc1\\x5f\\x9e\\xb2\\xe1\\x91\\x12\\x18\\xe9\\x1f\\x2f\\xad\\x2f\\x74\\x9a\\xd6\\x0e\\xbf\\xc8\\xc3\\x1f\\x79\\x63\\xf2\\x75\\x87\\xdf\\xf2\\x16\\xd3\\x8d\\xc9\\x8d\\xa7\\x70\\xb2\\xdc\\x37\\xe0\\x9d\\x68\\xfb\\x13\\x95\\x79\\xcc\\xf0\\xee\\xd7\\x10\\xfb\\x75\\xc3\\x7a\\x75\\x4e\\x83\\x77\\x4d\\x93\\x7e\\x0a\\xb4\\x9f\\xe5\\x91\\xef\\x10\\x88\\x92\\x74\\x2c\\x85\\x06\\xf6\\x3b\\xc3\\xf3\\x01\\xd4\\x2a\\x81\\xa8\\x49\\xae\\xf9\\x50\\x05\\xa3\\x19\\xf5\\x7a\\x0f\\xff\\x04\\x5d\\x36\\x04\\x30\\x56\\x7a\\xb4\\xe7\\x68\\xc4\\xad\\x61\\xae\\x14\\x24\\xc8\\x97\\xc2\\x1c\\x69\\x20\\xba\\x46\\xd8\\x82\\xcc\\x39\\xac\\x9a\\x46\\x83\\x12\\x01\\x1f\\x3f\\x12\\x3c\\x68\\x17\\x12\\xc7\\x94\\x94\\x18\\x56\\x65\\x42\\xea\\x58\\x31\\x2f\\xa4\\x3b\\x8b\\xc2\\xb7\\xf5\\x14\\xf7\\xb6\\xa9\\x84\\x54\\xde\\x02\\x70\\x3f\\x26\\x1e\\x59\\xbd\\xf3\\xc5\\x13\\x43\\xaf\\xfd\\x01\\x82\\x9e\\x18\\x97\\x9e\\x41\\x8f\\x22\\x29\\x97\\x1c\\x8d\\x4c\\x3b\\x8f\\xe9\\x57\\x1f\\x6c\\xcf\\x1f\\xde\\x7c\\x0f\\x78\\x1d\\x83\\x06\\x2c\\x0c\\x8b\\x9b\\x66\\x44\\x3a\\x18\\xf1\\x17\\x28\\x3a\\x9e\\xb3\\x4f\\xb1\\x99\\x4d\\x63\\x3f\\x50\\xd2\\xc8\\x57\\xfa\\x25\\xc0\\xae\\xa0\\x0f\\xee\\xc9\\x54\\x6e\\x2e\\xb5\\xba\\x72\\x86\\x24\\x04\\x56\\x25\\x36\\x96\\x1b\\x2f\\x7d\\x41\\x29\\x85\\xcb\\x69\\x00\\xfa\\xa6\\x43\\xfe\\x01\\x5c\\x3d\\x39\\x6e\\xab\\xd7\\x44\\x8e\\xef\\x11\\xda\\xee\\x43\\xcd\\x96\\x87\\x7e\\x0f\\xf3\\x92\\x61\\x30\\xb3\\x21\\x06\\x84\\xfb\\x55\\x60\\xc3\\xd0\\xe5\\x4e\\x1a\\xed\\x15\\x75\\xca\\x5c\\xc0\\xd9\\xce\\x77\\x34\\x94\\x84\\xcc\\x7a\\xb3\\x77\\x50\\x9f\\x32\\xa1\\xea\\x21\\xbf\\xb3\\x6c\\xef\\xe8\\x78\\x66\\x97\\xec\\x96\\x70\\x67\\xe9\\xa5\\xdf\\x5b\\xf4\\xf7\\x67\\xf0\\x85\\x2c\\x04\\x7b\\x12\\xef\\x95\\xe0\\x92\\xc6\\xdb\\xe7\\xdb\\xbe\\x4b\\x8c\\x57\\xb3\\x9f\\x8f\\xd8\\x8d\\xde\\x6f\\x41\\x2d\\x25\\xb7\\xcf\\x9c\\xa6\\xde\\xd7\\x4d\\x75\\x43\\x63\\x37\\xf4\\x37\\xb6\\xc4\\x4a\\x5e\\x6d\\x47\\xb7\\xcd\\xd4\\x26\\x8f\\x8b\\x1c\\xd5\\xf3\\xf9\\x5e\\x42\\xe4\\x6e\\xa3\\x76\\x48\\x23\\x55\\xf1\\xa9\\xdc\\x83\\xa4\\xf0\\x8f\\x13\\xfe\\x1f\\xd3\\xee\\x30\\xc7\\x2f\\x33\\x4a\\x4d\\x75\\x6b\\x36\\x1d\\xbc\\xe2\\x52\\x58\\x91\\x1c\\x21\\x6b\\xcc\\x7c\\x0e\\x9e\\xae\\x5e\\xa7\\x98\\x90\\x84\\xcd\\x48\\x4a\\x88\\x32\\x8f\\xb4\\xe1\\xce\\x92\\xe5\\xe7\\xe0\\x2c\\x8d\\x74\\x7b\\x61\\xa4\\x02\\xc9\\xab\\xf0\\xde\\x50\\xef\\x3a\\x09\\x1b\\xf8\\x3a\\xfd\\x28\\x36\\x2b\\x59\\xc2\\x3e\\x71\\x13\\x1b\\xa2\\x8b\\xd0\\xd9\\x03\\x55\\x95\\x34\\x22\\x18\\x3a\\x42\\x72\\x80\\xf8\\x6b\\xa4\\xb3\\x71\\x85\\x9d\\xa7\\x7c\\x6c\\xa0\\x53\\x8c\\xe9\\xb6\\xce\\x26\\x2b\\x43\\xfb\\xb1\\xc7\\x87\\x64\\xd0\\x4b\\x34\\xa0\\x47\\xcf\\x80\\x35\\xe2\\xb6\\x81\\xb4\\xb6\\x3b\\x9c\\x0d\\xc8\\x97\\xf9\\xa8\\x7f\\x1b\\x9a\\x71\\xbc\\xfe\\x7a\\xff\\xe8\\x2d\\x62\\x1d\\xf9\\xfa\\xed\\x36\\xf4\\xd7\\x53\\xf5\\x99\\x2b\\xc5\\xd2\\xa1\\xf8\\x5c\\x9b\\x33\\xd9\\x75\\x6a\\x9d\\x80\\x57\\xf7\\xde\\xb0\\xa6\\x57\\x36\\x25\\xfa\\x9a\\x42\\x82\\x78\\x3a\\x7d\\x3b\\x8f\\x79\\x98\\x77\\xa0\\x18\\xda\\x51\\x0b\\xbe\\x53\\x40\\xd5\\xf4\\x1b\\x11\\xef\\x44\\x0e\\x3a\\x25\\xc2\\x9d\\xae\\xf9\\x5b\\x03\\x08\\x41\\x48\\x98\\x36\\xc1\\xfe\\x61\\x52\\xf0\\x97\\x4b\\xb1\\x2a\\xc8\\xfd\\x6e\\x29\\x98\\x64\\xca\\xd1\\x7d\\x6f\\x4a\\x16\\xfd\\x1d\\xee\\xd2\\x7b\\x67\\xc9\\x46\\x57\\xd0\\xc0\\x05\\x9c\\x42\\xa6\\x08\\xf2\\xc7\\xe3\\x2b\\xd8\\xfc\\xf7\\x1e\\x3f\\x42\\x5d\\x4c\\x75\\x6d\\x87\\xe9\\x41\\x2f\\x76\\x43\\x4d\\x6f\\x1e\\xf2\\xd8\\x53\\xbb\\xf9\\xf1\\xcd\\xfb\\x23\\x55\\x50\\x0b\\xe4\\x06\\x8a\\x6a\\xea\\x5d\\x82\\x55\\x9f\\x34\\x76\\x6b\\x56\\xc3\\xa1\\xd1\\xe0\\x5d\\xe0\\x59\\xe7\\xe9\\x0b\\x58\\x0d\\x1b\\xd5\\x29\\xf3\\x95\\xe6\\xac\\x81\\xcb\\x59\\x15\\x5b\\x38\\x47\\x03\\x7e\\x3b\\x65\\x52\\x6b\\x23\\x77\\xa5\\xaa\\x1e\\x86\\x72\\x1d\\x11\\x8e\\x20\\x78\\xcd\\x04\\x9f\\x35\\x5d\\x04\\x3f\\xb3\\x5d\\x89\\xfe\\x14\\x08\\x59\\xd9\\xc2\\x0c\\xc6\\xb4\\xf5\\x0f\\x1e\\x4e\\xcf\\xdc\\x0d\\x9a\\xd6\\xcb\\xf4\\x3b\\xe5\\xbe\\x82\\xd9\\x26\\xf9\\xf2\\x12\\x8d\\x8a\\x87\\x29\\x54\\xcf\\x8b\\x50\\xcf\\x1d\\x7a\\x09\\x77\\x20\\x1a\\xe4\\x3d\\x21\\xcc\\xc0\\x66\\x99\\xd6\\x70\\x61\\x48\\x89\\x7e\\xe4\\x17\\x85\\x4f\\x19\\x81\\xff\\xfd\\x70\\x4e\\x93\\x12\\xdd\\x08\\xed\\x9f\\x29\\xe2\\x0d\\x41\\xdf\\x1b\\x14\\x7a\\xf3\\x70\\x91\\x5f\\x7b\\x23\\xd4\\xac\\xbe\\x60\\x7a\\x1b\\x82\\x57\\x81\\xc2\\xc7\\xdf\\x04\\x9a\\xfc\\x20\\x66\\xba\\x68\\xd3\\x9c\\x77\\x38\\xd0\\x4f\\x17\\x3d\\x9a\\xd5\\x3d\\x81\\x82\\x51\\x8f\\x9d\\xa5\\x87\\x60\\xf6\\x74\\xd1\\x00\\x20\\x0a\\x22\\x55\\x42\\x55\\x21\\xd3\\xbe\\x4c\\x02\\x49\\x06\\x19\\x7a\\xf6\\x24\\x06\\x64\\x61\\x73\\xbe\\x2e\\x6c\\x84\\x86\\x3a\\xd4\\xab\\xf9\\x8b\\xa1\\x7e\\xf5\\xde\\xf0\\xaf\\x91\\x7d\\x9c\\x6b\\xbb\\x67\\x29\\xeb\\x55\\x75\\x25\\x9c\\xd3\\xe0\\xa6\\x5e\\x2d\\x74\\x75\\x43\\x77\\xb6\\x03\\x98\\xec\\x6f\\xf2\\x06\\x0b\\xc4\\xeb\\xd2\\x96\\xf6\\x57\\xc2\\xfc\\xf3\\x86\\x99\\xb6\\x9c\\xe5\\x95\\x90\\x3a\\xf1\\xcd\\xc7\\x9e\\x7c\\xe7\\x0c\\xbd\\x57\\x16\\xa4\\x18\\x7f\\x97\\xae\\xa9\\x16\\x92\\x37\\x18\\xdd\\xa9\\x1a\\x76\\xb9\\x2e\\x84\\x44\\x12\\x36\\x70\\x92\\xc5\\x26\\x18\\x22\\x9b\\xe0\\x8c\\x04\\xe1\\x19\\x82\\xca\\x24\\x9e\\x7f\\x7d\\x00\\xbb\\x66\\x7a\\x5d\\x2c\\x1a\\xee\\x86\\x52\\x4f\\x7e\\xe5\\x41\\x6f\\x2c\\x67\\xc2\\xba\\x8d\\x5b\\x29\\x8d\\x3a\\xb4\\xd9\\xf9\\x66\\x5a\\xf1\\xf4\\x63\\x98\\x43\\x65\\xdb\\x5a\\xdc\\xfb\\x7b\\x4e\\xcd\\xa0\\x33\\x01\\xc3\\xcb\\xa3\\xef\\x20\\xf9\\x10\\xd4\\xc3\\x1b\\x20\\xf4\\xf1\\x47\\x57\\xea\\xa9\\x79\\x6a\\x40\\xdb\\x87\\xbc\\xf2\\xa7\\xf6\\xf7\\x07\\xce\\x86\\x82\\x9a\\x87\\xdf\\x99\\x65\\x76\\x37\\x1f\\x72\\x63\\xcc\\xbd\\x9b\\x30\\x07\\x3e\\x45\\x34\\x9f\\xf1\\xd5\\xb7\\x6b\\x08\\xd7\\xfa\\x43\\x9b\\x87\\x27\\x9d\\x79\\x13\\x26\\x93\\x3d\\x9e\\x50\\xb7\\xc9\\x3e\\x93\\x88\\x10\\x05\\x53\\x9e\\x27\\xff\\x66\\xd5\\xae\\x7f\\x01\\xe4\\x57\\xb8\\x44\\xfd\\xbd\\x86\\xcd\\xa8\\xa7\\xee\\xd5\\x27\\x2c\\x12\\x09\\xe9\\x43\\xc1\\xf7\\xff\\x5e\\xda\\xa3\\x76\\x59\\x5d\\x00\\x16\\xd9\\x27\\x1d\\x54\\x40\\x89\\xa1\\xd0\\xfb\\x7f\\x4b\\xa2\\x3b\\xc1\\x82\\xf6\\x29\\x99\\x87\\x9f\\xb4\\x4a\\xe1\\xff\\x4d\\x6c\\x70\\x51\\x93\\xb1\\xec\\x97\\xdb\\x61\\xe6\\x75\\x66\\x04\\xfc\\x5b\\x8d\\x5b\\x1f\\x4c\\x04\\xab\\x54\\x83\\x2c\\x3a\\x3c\\x8b\\x83\\xfa\\x57\\x8c\\x51\\x16\\x2f\\x7f\\xa0\\xfd\\xcd\\x21\\x9e\\x62\\x31\\x11\\x82\\x0a\\xc0\\xbc\\x7a\\xef\\xed\\x60\\xa9\\x8d\\x18\\xda\\xa8\\x65\\xff\\x10\\xf3\\x87\\x80\\xe4\\x4e\\x33\\x5d\\x76\\x0b\\xfc\\x1b\\xf6\\x40\\xda\\xcb\\x19\\x02\\x61\\x82\\x5a\\x81\\x3f\\xbd\\xa7\\x7c\\xbe\\x8c\\x50\\x19\\x9a\\x08\\x6b\\x8c\\x86\\x7a\\x21\\x25\\x21\\x5c\\x12\\xfe\\xdd\\x17\\x13\\x34\\xd8\\x83\\x1a\\xd3\\xb8\\x67\\x86\\x9e\\x35\\xf2\\xbf\\x09\\x1d\\xd6\\x52\\x5b\\x88\\x16\\x4a\\xf5\\x31\\xe7\\x45\\xbf\\x6f\\xb4\\xae\\x0a\\x0f\\x3b\\xc9\\x8d\\xf4\\x02\\xcb\\xde\\xc9\\x38\\x63\\x09\\x0d\\x22\\x1b\\xfa\\x3e\\x12\\x60\\xcc\\x33\\x68\\x33\\x76\\x49\\xc0\\xb4\\xc4\\x49\\x88\\x7b\\x75\\xbf\\x6d\\xfc\\x30\\x8d\\x2b\\x9b\\xbf\\xb8\\xec\\x85\\x3e\\xe8\\xc4\\x5c\\x9a\\x70\\xac\\x34\\x42\\xa4\\xdd\\xd8\\xf1\\xfe\\x8e\\x27\\xec\\x62\\xd0\\x01\\x13\\x16\\xf9\\x6f\\xb1\\x1a\\x57\\x4f\\x3b\\x6c\\x48\\x23\\xd8\\xf5\\x6c\\x7d\\x6f\\x51\\xa9\\xc3\\x38\\xaa\\xca\\x8b\\x8c\\x77\\x9e\\xd9\\xb4\\xf3\\x58\\xe4\\xec\\xb3\\xd1\\xe2\\xad\\xd4\\x19\\xfb\\x67\\xe9\\x83\\x6c\\xb6\\x06\\x3f\\x9b\\xa3\\xfb\\x5b\\x16\\x07\\xdd\\x83\\xa1\\xce\\x72\\xf1\\x64\\x6b\\xa3\\x71\\xf7\\xdf\\xbf\\xb6\\x08\\x65\\x89\\xa7\\xb3\\xea\\x22\\x6e\\x75\\x65\\x22\\x34\\xfe\\x4f\\xf6\\x8e\\x63\\x88\\xf9\\x8f\\x35\\xab\\x11\\x77\\xc7\\xee\\x85\\x7e\\xbb\\x83\\x72\\x34\\x59\\xb1\\x90\\x47\\x82\\x4c\\xb0\\xc8\\x89\\x50\\xc1\\x61\\x58\\x49\\x56\\x6b\\x75\\xc3\\x46\\xa4\\x4b\\xbf\\xef\\x8d\\xfd\\x53\\x8e\\xa0\\xaa\\xdc\\x2e\\xed\\xe9\\xaa\\x3f\\xb6\\x8e\\x15\\x13\\x93\\x91\\xc3\\xb7\\xe6\\x51\\xb4\\x8a\\x1f\\xa0\\xa3\\x46\\x8a\\x0f\\xc2\\x97\\x97\\x46\\x7e\\x31\\x4f\\x63\\x1e\\xdd\\x55\\xd4\\x44\\x60\\x94\\xb0\\xe7\\x81\\x11\\x11\\x7b\\x23\\xc3\\xea\\x3d\\xfa\\x9f\\xf7\\x26\\xc8\\xe6\\xb3\\xe3\\xd1\\x28\\x0e\\x28\\x10\\xed\\x09\\xfb\\xe6\\x11\\xbb\\xd5\\x92\\x2a\\x20\\xc3\\xd3\\xfa\\xca\\xb3\\x19\\x73\\xb1\\x7c\\xe7\\x91\\x29\\x48\\x24\\x1c\\x34\\xea\\x5f\\x06\\xdc\\x79\\x6c\\x68\\xad\\x4e\\x3b\\x5e\\xf8\\xfa\\x46\\xab\\xb7\\xf8\\xf3\\x63\\xbd\\x95\\x0c\\x1f\\xf4\\x09\\xf5\\xc4\\x42\\x03\\x4c\\x01\\x42\\x00\\x81\\x1a\\x1f\\x17\\x14\\x6f\\x00\\x1e\\xa0\\x90\\xf8\\x53\\xb0\\x83\\xa0\\x2f\\xce\\xe3\\x00\\xf8\\x72\\x1d\\xea\\x93\\xf5\\xc3\\xe1\\x10\\x43\\x89\\xae\\xe7\\x93\\x32\\x30\\x51\\x54\\xa4\\x98\\xbe\\x85\\xbe\\x27\\x90\\x71\\x56\\x21\\x68\\x93\\x6a\\xe0\\x12\\x33\\xe8\\x53\\xe1\\x03\\xed\\xd5\\xff\\x01\\x8e\\x41\\xc7\\xd0\\x32\\xaa\\x8d\\xef\\x32\\xd4\\x9d\\xa2\\x12\\xa2\\x63\\x3d\\xba\\x38\\xf2\\x31\\x3b\\x16\\x33\\xcd\\xc3\\xef\\x4a\\x01\\x64\\x64\\x1b\\x3d\\x73\\xc7\\x6a\\x98\\xf0\\x57\\x22\\x5a\\x78\\xd4\\x9e\\xca\\xef\\xdb\\x26\\xf1\\xa5\\xb4\\x0d\\xba\\xbe\\x1a\\x1b\\xa9\\x59\\xbe\\x55\\x4e\\x70\\xe6\\x43\\x29\\xfa\\xe3\\x2a\\x82\\xdf\\xbd\\x49\\xfe\\x07\\x35\\x26\\x2a\\xca\\x0a\\x77\\xba\\xbe\\x04\\xfb\\xb9\\xd2\\x3e\\x96\\x9f\\x6b\\x8c\\x96\\x34\\xb7\\x86\\x05\\x21\\xe4\\xb4\\xf9\\xcb\\x8f\\xf8\\x5d\\x63\\x26\\x68\\x15\\xc2\\x26\\xe9\\x2a\\x74\\xaf\\xca\\x9a\\xb1\\xcd\\x8a\\x0c\\xd0\\x98\\xe6\\xf5\\xee\\xce\\x00\\xc4\\xbb\\xf2\\x56\\xad\\x65\\x2c\\x61\\x67\\x36\\x3d\\x6b\\x5d\\x50\\xa5\\xfb\\x29\\x44\\x32\\xb4\\x1e\\x0f\\x3f\\x46\\x24\\x5d\\x29\\xdf\\xc1\\xbd\\xde\\xc0\\x71\\xae\\x5b\\xba\\xc1\\xa2\\x6b\\x27\\x9b\\x75\\x5c\\x18\\xfa\\x55\\x34\\xf1\\xa3\\x21\\x01\\x95\\xb9\\xa8\\xe8\\x09\\xcb\\xea\\x17\\xe9\\xee\\xf5\\x69\\xe0\\xdf\\x5d\\x77\\x90\\x1f\\xeb\\xe5\\xd6\\xcd\\xc7\\x7b\\x06\\x79\\xae\\xe5\\x7d\\xc0\\x71\\x49\\x0a\\xe8\\xed\\x46\\x2c\\x82\\xa5\\xcb\\xfb\\xd6\\xcd\\x30\\x42\\x78\\xcb\\x69\\x64\\x4c\\x1f\\x9b\\x6e\\x5d\\x80\\x47\\x81\\x5c\\x39\\xe0\\xca\\x68\\x20\\x27\\xbd\\xc5\\x5f\\xca\\x58\\x7c\\xb1\\xf3\\x8e\\xfb\\xec\\xb3\\x2b\\x60\\x4d\\x38\\xd8\\xb7\\xb9\\x32\\x1d\\xdb\\x70\\xa1\\x98\\xd7\\x4f\\xfc\\x9b\\x50\\xe2\\x71\\xfb\\x14\\x4a\\xdf\\xe8\\x08\\xbd\\x9f\\x41\\x83\\xb3\\x39\\x8e\\x70\\x54\\x6f\\x59\\xd5\\xeb\\xe9\\x5e\\x51\\xa2\\xcf\\xc5\\xbf\\xa1\\x4f\\x39\\x86\\xf2\\xcc\\x82\\xb4\\x54\\xdb\\xee\\x8c\\xca\\x8a\\xcc\\xfe\\x77\\x01\\x53\\xc5\\xd7\\x0f\\x81\\x8b\\x88\\xcf\\x31\\x52\\xb2\\x9a\\x2a\\x41\\x4f\\xbf\\x4d\\xe1\\xc9\\xc1\\x98\\x8a\\xc9\\x6b\\xcf\\xca\\x89\\xb7\\x3c\\x97\\x80\\x2b\\x9a\\x58\\xa8\\xc7\\xfc\\x90\\x57\\x98\\x3f\\x9e\\xfe\\x0b\\xfa\\x7e\\x3c\\xa1\\x1c\\x2c\\x93\\xec\\xad\\x90\\xbd\\xec\\xc5\\x67\\xa4\\x44\\xfc\\xc1\\xa8\\x0a\\x89\\xd6\\x94\\x50\\x65\\xb4\\xe1\\xb9\\x1a\\x7c\\xda\\x4f\\xac\\xf0\\x18\\x5a\\x1e\\xe5\\xf4\\xed\\x2a\\xe8\\x6d\\x17\\x01\\x07\\xc1\\x36\\xc7\\xcd\\x61\\x0e\\xcb\\x7f\\x61\\x63\\xf3\\x8e\\x8c\\x9b\\xcd\\x55\\x6b\\x3e\\xb2\\x11\\xe3\\xb8\\xc7\\x81\\x74\\x33\\x2c\\x1c\\x84\\x15\\x97\\x73\\x36\\xeb\\x2b\\x94\\x86\\xb4\\x93\\x33\\x6d\\x16\\x4e\\x0e\\x36\\x6b\\xd1\\x55\\x43\\x37\\x9d\\xb9\\x75\\x5f\\x2c\\x51\\xac\\x32\\x51\\x03\\xcd\\x42\\x4f\\x0a\\xd1\\xdc\\x25\\x72\\x75\\xee\\xbf\\x23\\x0d\\x5d\\x82\\x9b\\xb4\\x7c\\xde\\xce\\x5b\\x12\\x03\\xef\\xe7\\xcd\\x80\\x63\\x39\\xba\\xe1\\x6f\\x02\\xa7\\x54\\x1f\\xc7\\x7e\\xb6\\x19\\x1f\\xea\\xde\\xce\\xce\\xde\\x03\\xb7\\xb3\\xcf\\xac\\x0c\\x6d\\x26\\x5c\\x2f\\xc9\\x4c\\x20\\x15\\xaa\\xda\\xfc\\x89\\x95\\xad\\x80\\xf6\\x21\\x4f\\x7b\\xfb\\xce\\x77\\xaa\\x0a\\xb9\\xd7\\x93\\xa9\\xe1\\x40\\xb0\\x77\\xbf\\xcf\\xb5\\xa2\\x95\\x11\\x28\\xbb\\xc9\\xe3\\xa1\\x62\\x3b\\xde\\x79\\x27\\x9e\\x75\\x0d\\x52\\x80\\x7f\\xe4\\x00\\xf4\\x82\\x60\\xd7\\x2e\\x06\\x4d\\x60\\x5b\\x91\\xf4\\x43\\xe1\\x6e\\xa1\\x2e\\x39\\x98\\xa8\\xb3\\x16\\x38\\xd2\\x6d\\x1d\\x53\\xb3\\x31\\x84\\xb0\\xde\\xc2\\x95\\x52\\x5c\\x91\\x64\\x10\\x04\\x62\\x94\\x86\\xf6\\xcc\\xa5\\x05\\x48\\x83\\x9f\\x42\\x58\\xeb\\x8a\\x27\\xeb\\x4e\\xee\\x8d\\xf5\\x2e\\xd0\\x87\\x09\\x52\\x35\\x7b\\x3c\\x25\\xca\\xd3\\x14\\x59\\x5b\\x2b\\xee\\x17\\xdd\\xbf\\x2b\\x34\\x4f\\x39\\x25\\xde\\xaa\\x78\\xda\\xb1\\x08\\x6e\\xdc\\xee\\x41\\x56\\x6a\\x56\\x20\\x26\\xab\\xbf\\x17\\xf7\\xf2\\xc0\\x9b\\x5c\\x55\\xa8\\xa3\\x4d\\xd9\\x9d\\x3b\\x95\\x1a\\x0d\\x7a\\xaf\\x15\\x94\\x12\\x02\\xca\\xc6\\xec\\x64\\x4b\\xbe\\x26\\xee\\x5a\\x91\\x73\\xcd\\x99\\xe9\\xbd\\x79\\xc2\\x5f\\x55\\xef\\x6a\\x2b\\x38\\xed\\xbe\\xe7\\xf2\\x60\\x95\\xcf\\x97\\x7d\\x18\\x0d\\x49\\x8d\\xec\\x5e\\x33\\xe8\\x5f\\x03\\x33\\x40\\x82\\x01\\x66\\x39\\x5c\\xa7\\xd0\\x4a\\x5f\\x2a\\x20\\xa6\\x93\\xba\\x0d\\x97\\xf3\\x55\\xd1\\x9d\\xad\\x6b\\xae\\x90\\x12\\x64\\x6d\\x3e\\xb2\\xdd\\x19\\xd4\\x29\\x11\\xe8\\x43\\x02\\x2d\\x82\\xd3\\x54\\x22\\xdd\\xd8\\x53\\xf8\\x80\\xb2\\x11\\xe2\\x5a\\x11\\x6c\\xf9\\x8b\\x25\\xd2\\xf8\\x0e\\x76\\xfa\\x42\\xbb\\x90\\xa6\\xde\\xca\\xb6\\x9b\\xa7\\x99\\x73\\xbf\\x3f\\xf7\\x0d\\xf7\\xf1\\x4f\\xaf\\x08\\xdd\\x4e\\xb3\\xec\\xb6\\xc4\\x89\\x7b\\xf7\\xde\\x12\\x1b\\x4b\\x2b\\xed\\x3f\\x3b\\x8a\\x76\\xe0\\xab\\xe2\\x9f\\x8c\\xb6\\x48\\xf7\\x0b\\x2b\\xfc\\xca\\xb8\\x2a\\x96\\x86\\xbc\\xb6\\x04\\x7b\\x44\\xca\\x36\\xaf\\xea\\x8f\\x17\\x43\\xef\\xf2\\x0d\\x18\\x75\\xde\\xbd\\x4f\\xe3\\xdc\\x17\\xf8\\x47\\x23\\x37\\xba\\x27\\x7c\\xb2\\x22\\x75\\xf4\\x76\\xb9\\x2a\\x33\\x0e\\x6f\\x12\\x2b\\x1f\\xfc\\x80\\x4d\\x21\\x81\\xea\\x13\\xf9\\xcd\\x0e\\xbb\\x01\\xb6\\x00\\xe4\\xdc\\xc7\\x19\\x57\\xce\\x14\\x21\\x64\\xfb\\xd6\\xe6\\x29\\x4b\\xce\\xc6\\xac\\xe6\\x1b\\xc5\\x05\\xcd\\x85\\xfb\\x1b\\xc1\\x93\\xfb\\xfa\\xf1\\x62\\x6b\\xb5\\xfb\\x71\\xe0\\x84\\xdd\\x57\\x43\\xfb\\x49\\x13\\x3b\\x2f\\xc1\\x00\\xfc\\xa9\\x65\\xc8\\x42\\x00\\xb6\\xf9\\xb1\\xb1\\xe6\\x0e\\x3e\\xed\\x35\\xb1\\xa1\\xac\\xa2\\x51\\x76\\x8f\\xf4\\x59\\xa1\\xee\\xb0\\x23\\xa8\\xe9\\x06\\xdc\\x41\\x25\\x6f\\xf5\\xf9\\xc2\\xbc\\x97\\xea\\xce\\xd6\\x60\\x08\\xaa\\xac\\x0c\\x78\\x67\\x7f\\x56\\x99\\x1c\\x0d\\xec\\x02\\x66\\xa6\\xa4\\x2c\\x31\\x08\\xe4\\xbc\\x13\\xb3\\x32\\xfc\\x1a\\x01\\x00\\x00\\x50\\x00\\x00\\x00\\x1a\\x20\\x86\\x84\\x73\\xa4\\x6c\\x88\\x2e\\x78\\x0f\\x40\\xfe\\x02\\xf8\\xef\\x03\\x5f\\x61\\x32\\xff\\xf7\\x9f\\x0e\\x69\\xd0\\x7d\\x43\\x7b\\x9f\\x47\\x68\\xf9\\xe2\\x0a\\x00\\x00\\x10\\x01\\xd0\\xff\\xb7\\x0c\\xf0\\x82\\x32\\x35\\x32\\x33\\xda\\x92\\x79\\xf1\\x4d\\x0b\\x0e\\x76\\x5d\\x20\\xef\\xde\\xcc\\x59\\x6a\\x81\\x91\\x54\\x06\\x20\\xc3\\x00\\x80\\xf4\\xf0\\xba\\x5e\\x50\\x69\\x0b\\x70\\x76\\xc4\\xda\\xd0\\x41\\xdb\\xc3\\xd6\\x59\\x59\\xde\\xa3\\x28\\x50\\x8f\\x23\\x7e\\xf2\\xdf\\x8a\\x51\\xcb\\x3b\\xc7\\x8e\\xbc\\x86\\x8f\\x57\\x8e\\x47\\x06\\x44\\x7b\\xbf\\xb9\\x66\\xd8\\xe2\\x26\\x3c\\x27\\x93\\x71\\x70\\x70\\x70\\x3c\\x77\\x03\\x81\\x1a\\x0b\\xa9\\x54\\xfe\\x2f\\xe4\\x99\\x96\\x77\\xa9\\xb3\\xc2\\xd8\\xef\\x9f\\x4a\\xa1\\xf5\\x61\\x68\\x96\\x7c\\x5d\\xe5\\x75\\x0f\\xa8\\x27\\x04\\xe6\\xdd\\x09\\x1d\\xf1\\x87\\x27\\x22\\x77\\xd8\\x2f\\xc8\\xe9\\xd7\\x01\\x1b\\xe2\\x54\\xd8\\x47\\x5f\\x87\\x19\\xd3\\x4d\\xf5\\x1e\\xb0\\xd1\\x08\\x1d\\xcd\\x05\\x3a\\xbc\\x83\\xb7\\x53\\x67\\xa5\\x98\\xe4\\x96\\xfa\\x98\\x4f\\x64\\x1a\\x12\\x25\\x1b\\x6f\\xa0\\xb5\\xb3\\xcb\\xcd\\xe9\\xb8\\x2a\\xcd\\xa1\\xfa\\x65\\x38\\x52\\x29\\xa8\\x09\\x86\\xfc\\x2e\\x41\\x8a\\x81\\x7f\\x18\\xee\\x56\\xdd\\x08\\x6a\\xe6\\x51\\x88\\xbd\\xb2\\x69\\x93\\x1b\\x7f\\x53\\x4e\\x1e\\x3e\\xe1\\xe5\\xb9\\xb1\\xc5\\x0b\\x3e\\xce\\xc8\\x8e\\x9c\\xa2\\xcc\\x6b\\x64\\x2f\\x8f\\x70\\xfa\\xb0\\x46\\x26\\xed\\x09\\x4a\\x19\\x7a\\x86\\x2b\\x0a\\x75\\x96\\x89\\xcc\\x9a\\xaf\\x49\\x0b\\x69\\xea\\xbe\\x76\\x29\\xce\\xc6\\xba\\x37\\x1b\\x94\\x92\\xef\\x0a\\x6d\\x67\\xe7\\x0e\\x8b\\xef\\x72\\xf1\\xc7\\x6d\\x37\\x66\\x5e\\xee\\xcb\\x0d\\x82\\x0e\\x25\\x18\\x0f\\xd6\\x9c\\xe2\\xa5\\x9c\\x48\\x5b\\xa6\\x14\\x94\\x3c\\x54\\x25\\x05\\x74\\x09\\x45\\x69\\x1e\\xe1\\xf3\\xf4\\xc4\\xf0\\x95\\x6e\\x2c\\x3c\\xd4\\x86\\x2d\\x97\\xc7\\xb8\\x37\\xe2\\x0e\\xd3\\xbb\\x8a\\x4f\\xff\\x1e\\x2a\\xb2\\x37\\xce\\x8c\\x27\\x5c\\xe9\\x1a\\x8e\\x19\\x05\\xc8\\x10\\x8f\\x2f\\xe0\\xdf\\xfa\\xef\\x66\\x28\\xbd\\x8e\\x81\\x90\\xcb\\xfc\\x0f\\x44\\x1e\\x4f\\x52\\xf8\\x15\\x59\\xa6\\x88\\xdf\\x2d\\xf6\\x1f\\x94\\xd4\\x26\\xe3\\xb9\\xa7\\x73\\xf8\\xee\\x8c\\xd8\\xf8\\x2e\\xcc\\xa1\\xe7\\xc7\\x0e\\x8c\\x9b\\x55\\x7a\\x49\\xcd\\x32\\x47\\x91\\x90\\x7a\\x01\\x06\\x85\\xc1\\xbf\\x18\\x8b\\x81\\x91\\xde\\x09\\xda\\x9d\\x79\\x6c\\x8d\\x91\\x06\\xb2\\xe8\\x17\\xdb\\xe9\\x53\\x48\\xec\\x95\\xc5\\xc9\\x0d\\x7f\\x69\\xe5\\x02\\xab\\x29\\xfb\\x2d\\xf0\\xe0\\xfb\\xdb\\x42\\xd3\\xe4\\xcd\\x85\\x0f\\x6f\\x78\\xcf\\xed\\x4a\\x79\\x34\\x53\\xa8\\x21\\x48\\xf0\\xbf\\x29\\xf1\\xc7\\x8c\\x69\\xf9\\x66\\xd6\\x26\\x48\\xb0\\x04\\x7f\\x0a\\x24\\x5e\\x31\\xeb\\x55\\xec\\xb4\\x34\\x46\\x13\\xb7\\x45\\xba\\x0e\\xb1\\xc5\\x5a\\xaf\\xc9\\xa0\\xa2\\x3b\\xe1\\x5e\\x16\\x50\\x10\\xf4\\x77\\x10\\x8c\\xc2\\x1a\\x14\\xe6\\x10\\xce\\x39\\x63\\x62\\x67\\xc9\\xf3\\x35\\xad\\x8d\\x12\\x58\\xcc\\x0e\\x71\\xea\\x2c\\x4d\\xae\\xab\\xdc\\x6d\\x52\\x7e\\x46\\x17\\xee\\x28\\x91\\x48\\x67\\xfc\\x98\\x06\\x21\\xab\\xdc\\xe5\\xdf\\xf6\\xbd\\x2f\\x0f\\xa3\\x35\\xd7\\x7d\\x6b\\x8c\\x37\\xd7\\x53\\x62\\xb1\\xc9\\x82\\x08\\x64\\xca\\x51\\x39\\xee\\xf3\\xbf\\xcc\\x4c\\xa4\\x9c\\x3d\\xac\\x7f\\x56\\xf3\\xd4\\x66\\x30\\xd9\\x99\\xc0\\xcc\\x9b\\xc9\\xa8\\x28\\x0a\\xcd\\x7a\\xe1\\xa3\\xc6\\xed\\x55\\x75\\x0e\\x41\\xda\\x32\\x3f\\xe6\\x58\\x73\\xa4\\xb5\\x86\\x71\\x68\\xd9\\x42\\x8f\\x70\\x14\\xbe\\xe8\\x3d\\xd6\\xe7\\xdf\\x5a\\x0b\\xf7\\x41\\xb2\\x7e\\x28\\x45\\x44\\x36\\x50\\x9a\\xaf\\x4d\\x78\\x0f\\x22\\x10\\x5a\\xae\\xf5\\x99\\x38\\xec\\xf8\\x19\\x90\\x5f\\xd4\\xd0\\x02\\x8d\\x48\\x2e\\x77\\x55\\x2e\\x4a\\x43\\x75\\x7c\\x9c\\x85\\x52\\xbc\\xc3\\x50\\xef\\x2c\\xa9\\xfc\\x65\\xae\\x10\\xd2\\xeb\\x92\\x34\\xbf\\xfd\\x46\\xb4\\x54\\x03\\x33\\x32\\x9b\\xe5\\x37\\xfd\\xd1\\x1b\\xb4\\x0e\\xb8\\x0c\\x3c\\x5d\\x46\\xd9\\x81\\x3c\\xf8\\x3a\\x05\\x49\\x79\\xa8\\x6e\\x61\\x78\\xd6\\x25\\x4f\\x36\\x64\\x33\\x9d\\x95\\x85\\x67\\x78\\xff\\xf6\\x49\\xbf\\x61\\xe4\\x3a\\x33\\x21\\xf1\\xf7\\x26\\xc6\\x5e\\xda\\xf5\\x2f\\x3d\\x0a\\x5c\\x9e\\xa8\\x60\\x3c\\xfc\\xba\\xde\\x09\\x86\\xb0\\xb2\\x10\\x8b\\xc1\\xa4\\xa1\\x6c\\x6b\\x8c\\x10\\xfe\\x14\\x91\\x62\\x4d\\xa6\\xf0\\x0b\\x11\\x69\\xf8\\x1d\\xe8\\x4a\\x7c\\xf9\\x05\\xb4\\x29\\xe7\\x37\\xd1\\xa9\\xb6\\x39\\xa9\\x8e\\xd4\\x19\\x6d\\xbe\\xa7\\xdd\\x67\\x21\\xac\\x98\\xed\\x79\\x4d\\x50\\xe3\\xb5\\x61\\x14\\xff\\x04\\xb1\\x06\\x7d\\x0f\\x40\\x28\\x94\\x1b\\x8f\\x9c\\x96\\x7f\\x76\\x9e\\xab\\xa7\\xb1\\x30\\x94\\xe7\\x68\\x72\\x2e\\x36\\x85\\x4f\\xe6\\x4b\\x28\\x93\\x1d\\x74\\x1b\\xd8\\x6b\\xe3\\x49\\xa8\\x62\\xa3\\x0a\\x75\\x61\\xbf\\x56\\x1d\\x9d\\x85\\x1c\\x27\\xcf\\x1e\\x4a\\x2a\\xb4\\x87\\xef\\x45\\xff\\x24\\x2d\\xdf\\xe5\\x54\\x00\\xfa\\xbb\\x91\\x16\\xe5\\x23\\xeb\\xff\\xe0\\xa9\\x72\\xbb\\x81\\xd6\\x2f\\xb9\\x5f\\x56\\xf7\\xac\\xd8\\xcc\\x17\\xac\\xc3\\x6b\\xa0\\x39\\x34\\xed\\xb4\\x45\\xdf\\x8c\\xfc\\x73\\x48\\xc2\\x0c\\x32\\x82\\xaa\\xa2\\x73\\x68\\xf5\\x4c\\xcd\\x5e\\x1c\\x0c\\x54\\xd9\\x4c\\xab\\x2a\\x9b\\xa2\\xb8\\x33\\xfa\\x4a\\x25\\x71\\x98\\x12\\x9b\\x01\\x44\\x29\\x40\\xda\\x2c\\x7a\\x42\\x8c\\xb2\\x39\\x72\\x26\\x89\\xc7\\x31\\x11\\x26\\x17\\xe5\\x45\\xd8\\x59\\xc2\\xe5\\xa0\\xf8\\x58\\x61\\xb3\\xa5\\x07\\x3b\\x6b\\x8e\\xfd\\x14\\x46\\xc7\\x10\\xc8\\x7f\\xa8\\x03\\x81\\x47\\xc5\\xde\\x5c\\x99\\x99\\xae\\xed\\xe4\\x15\\x6a\\x4f\\x09\\x5e\\xd8\\x29\\x96\\xd4\\x0a\\xdf\\xee\\xfe\\x0c\\xa0\\x5f\\xb3\\x75\\xbb\\xad\\xa0\\xc7\\x90\\x2f\\xa6\\x06\\x30\\xf8\\x65\\xb8\\xac\\x2c\\xf5\\xf9\\xcd\\x9c\\x15\\x71\\x7d\\x80\\x38\\xfa\\x09\\x64\\x42\\xfc\\x51\\xf6\\x8c\\xd9\\x2b\\x0b\\x7a\\x5c\\xcf\\x0e\\x0c\\x1e\\xd8\\xe3\\xf9\\xc2\\x84\\x4e\\x47\\x08\\x9a\\x6b\\xa3\\xe1\\xce\\x90\\xf1\\x92\\xca\\xd2\\x2a\\xe8\\xcb\\xe2\\x15\\xec\\x28\\x88\\x8b\\xcb\\x69\\x20\\x8a\\x36\\x84\\x83\\xb0\\x58\\x66\\x32\\xc9\\xbb\\x06\\xfc\\xde\\xd9\\x49\\x63\\x14\\xc3\\x16\\x3a\\xcf\\x24\\xfa\\x7e\\xb1\\xb8\\x71\\x66\\x5f\\x84\\x76\\x68\\xd6\\x56\\xcd\\x37\\xbf\\x3a\\x3f\\xb4\\xb3\\x4f\\xc6\\xb7\\xc7\\x8b\\x54\\x69\\x97\\x62\\x4e\\x94\\xee\\x14\\x26\\x4f\\xe6\\x52\\x4b\\x73\\x39\\x1e\\x52\\x46\\xa8\\x28\\x24\\xeb\\x00\\x2d\\xbe\\xe2\\x9e\\xed\\x32\\x56\\x5b\\x18\\xbe\\xad\\x15\\xd1\\xc1\\x2c\\x89\\x27\\xdb\\x78\\x88\\x7a\\x19\\x78\\xd9\\xd7\\xef\\xfd\\xd4\\x19\\xed\\x1a\\x2b\\xa8\\x2e\\x56\\xf3\\x0e\\xab\\x20\\x90\\xed\\xcc\\x91\\x75\\x45\\x48\\x4c\\x36\\x42\\x53\\xb8\\xb3\\xec\\xa9\\x9b\\x3c\\xde\\xf1\\xe4\\xc3\\x31\\x14\\x99\\x07\\x3e\\xbd\\x31\\x7f\\x44\\x49\\x40\\x56\\x12\\xf3\\x67\\x21\\xc2\\x9a\\xb1\\x86\\x87\\xb7\\x90\\x95\\x32\\xa0\\x00\\x9f\\xca\\xae\\xa5\\x59\\xc4\\x02\\x36\\xcf\\x9a\\xe5\\xf5\\xc7\\x88\\x63\\xbc\\x33\\x10\\xb7\\x78\\x98\\x2d\\x8e\\x8f\\x7a\\xca\\xa9\\x4a\\x7c\\x39\\xcc\\xb9\\x95\\xa7\\xef\\xb3\\x65\\xaf\\x6d\\xed\\xcd\\xb5\\xf7\\xf2\\x39\\xed\\x76\\x9b\\xfc\\x6d\\xca\\x80\\x7b\\x44\\xd2\\xba\\x5e\\xe5\\xfb\\x09\\x39\\x6a\\x14\\xbc\\x14\\xae\\x0a\\x65\\x36\\xb6\\x79\\x21\\x72\\x21\\x62\\x12\\xa8\\x7e\\xf2\\x1d\\xfd\\xf6\\x97\\xd0\\xae\\x17\\xd4\\x8f\\x5e\\x0e\\x00\\xb1\\x0a\\x00\\x30\\x45\\x6d\\x39\\xd0\\x1c\\xdf\\x41\\x4e\\xdc\\x64\\xbf\\xda\\x6c\\xbf\\xea\\xb1\\xb8\\xc2\\xdd\\xf2\\x92\\xbe\\xc2\\x0d\\xe9\\xa6\\x7b\\x42\\xff\\xc2\\x8d\\x3c\\xde\\xd7\\x5f\\x58\\x5d\\xb8\\x5c\\xd8\\x5f\\x88\\xff\\x9b\\xec\\x1f\\x9a\\x7b\\x24\\xad\\x78\\xc7\\x9f\\xd9\\x5a\\x52\\xe6\\x9e\\x86\\x6d\\x11\\x19\\x14\\xed\\xb8\\x18\\x65\\x9e\\x76\\xec\\x59\\x93\\x00\\xc6\\x48\\x2e\\xc8\\xa0\\xc9\\x68\\x9d\\xe1\\x13\\xb6\\xb8\\x42\\x1c\\x8d\\x41\\x92\\x71\\x3d\\x13\\x5f\\x9a\\x9f\\x78\\x74\\x39\\xce\\x7c\\xbe\\x8e\\x1c\\x69\\xf1\\xc6\\xb4\\x4d\\x3b\\x5d\\x57\\x0e\\x45\\x56\\xe9\\x98\\xf6\\x41\\xf4\\x12\\x73\\x75\\x14\\x42\\x0c\\x4f\\x2c\\x4b\\x2c\\x48\\xe6\\x0e\\xeb\\xab\\x35\\x33\\x21\\x93\\xf6\\x77\\x3e\\x46\\x7b\\x66\\x7f\\x6a\\xdb\\x6f\\x1d\\x4c\\x4a\\xc3\\x90\\xef\\x8d\\x31\\x17\\x31\\x55\\x31\\x2c\\x23\\x61\\xf5\\x35\\xc9\\x9a\\x25\\xea\\x72\\xf3\\x94\\xf7\\x56\\xf7\\x0a\\x0a\\xa6\\xe3\\x01\\x4c\\x55\\x70\\x2b\\xc0\\x95\\x79\\x1d\\x83\\xc8\\xd3\\x95\\xd3\\x88\\xd3\\xea\\xd3\\xf8\\x97\\xf4\\x97\\x06\\xf8\\x0e\\xe3\\xb2\\xed\\x34\\x15\\x87\\x4e\\x07\\xac\\xcc\\x83\\x1c\\xec\\x83\\x97\\x83\\x6b\\xbc\\x06\\x1a\\xe3\\x2c\\xab\\x65\\x47\\xb8\\x85\\xf7\\x85\\xd5\\xe6\\xda\\xaa\\x12\\xfb\\xf6\\xf3\\xd6\\xf3\\xea\\x75\\xfb\\xc4\\x65\\xe2\\x95\\xd7\\x15\\x4b\\x7e\\x70\\xc2\\x41\\x42\\x5d\\x82\\xe3\\x44\\xcc\\x6d\\xb3\\x6d\\xe7\\x69\\x62\\x47\\xe9\\xeb\\x3f\\xba\\xc3\\xac\\xa3\\xe5\\x8b\\xe7\\x1d\\xd2\\xb3\\xf5\\xa3\\xae\\x8b\\xd9\\x17\\xfe\\x17\\xaf\\xcf\\xb7\\x20\\x4e\\x65\\xc4\\x4a\\xf4\\x98\\x90\\xfe\\x50\\x7c\\x89\\x0d\\xe5\\xc5\\xa9\\xfd\\xa9\\x8a\\x5a\\x5e\\x3d\\x24\\x4f\\x14\\xc3\\xf8\\x28\\xca\\x2a\\x2a\\x53\\x2a\\x4d\\xaa\\x4b\\x2d\\x1a\\x5b\\x0b\\xdd\\xfa\\xa2\\xe5\\xa6\\xb3\\x00\\xc5\\x61\\xc2\\x36\\x94\\xc5\\x24\\x81\\x89\\x6b\\x51\\x94\\xbe\\x02\\x86\\x25\\x64\\xe1\\x1f\\xb6\\x83\\x43\\x4b\\x1b\\x04\\xe4\\x8e\\x84\\xa0\\x4c\\x56\\x3a\\x29\\x3a\\x32\\x9a\\xe5\\xbd\\x8d\\x54\\x01\\x2e\\x9e\\x7b\\x9a\\x75\\xde\\x2e\\x1e\\x18\\xcb\\x6c\\x8b\\x07\\x4b\\xb8\\xe5\\x8d\\xe5\\x57\\x3e\\xee\\x16\\xe1\\xc4\\x83\\x8e\\xc3\\x49\\xbc\\xb9\\xf0\\xd2\\xf0\\xeb\\xf0\\x5b\\xc9\\x4e\\xad\\x0e\\xaf\\xe6\\xa7\\x42\\x33\\x16\\x77\\x16\\x26\\xc6\\x75\\xc6\\xf7\\xef\\x0d\\xfb\\x81\\x6e\\xbd\\x30\\x95\\xbf\\xa0\\x00\\x80\\x29\\xbb\\xd5\\x66\\x7b\\xe1\\xd5\\xe6\\x78\\x5b\\x86\\xff\\xf8\\x43\\x5d\\x76\\x18\\xf2\\x0c\\x1c\\x7a\\x18\\x0b\\x44\\x63\\x7b\\xe8\\x2c\\xce\\xa5\\xa6\\x6d\\x63\\xb1\\xa7\\xc8\\x63\\xc1\\x35\\x4f\\x33\\xe3\\x5f\\xd6\\xf3\\x86\\xf3\\xe6\\x69\\x93\\x16\\xd6\\x0c\\x50\\xfd\\x50\\x55\\x11\\x9b\\x96\\x65\\x53\\xa9\\xd3\\xa5\\xf8\\x4e\\x4c\\xff\\x6b\\x64\\x79\\x24\\xf2\\x9f\\xc5\\x77\\x45\\x7d\\x85\\x73\\x65\\xc3\\x39\\xb7\\xd9\\xca\\x45\\x8d\\x69\\xfe\\x46\\xec\\xa6\\x16\\x77\\x7b\\xb7\\xa8\\xee\\xbc\\x8f\\xfa\\x3f\\x71\\xc6\\x51\\xc1\\x6c\\xb9\\x3c\\xdc\\xac\\xb4\\x71\\x96\\x0a\\xf6\\xf2\\x02\\xe3\\x30\\x63\\x72\\xe3\\x86\\x8c\\x54\\x8c\\xae\\x55\\xf7\\x95\\xaf\\xf6\\x68\\xbe\\x42\\xaf\\xd6\\x10\\x3d\\x4b\\xa6\\x43\\x3b\\xcb\\x68\\xb9\\xfd\\xec\\x13\\x9f\\x0b\\x87\\x6d\\xb2\\x3d\\x6e\\x6f\\x32\\x1f\\xec\\x8d\\xa2\\x6e\\x61\\xe1\\x9c\\xc4\\x9b\\xbc\\xbb\\xf7\\x6b\\xb9\\x37\\xec\\x77\\xc8\\xfb\\x25\\xb4\\x3d\\x74\\x69\\xcf\\x4e\\xcf\\xec\\x57\\x4c\\x1b\\x9c\\x99\\xb0\\xcc\\xa9\\xd1\\x5a\\x96\\x4e\\xf6\\x19\\x7a\\x76\\x1e\\x17\\x91\\x15\\x46\\xa2\\xd8\\x8b\\x04\\xae\\xa8\\x12\\x13\\x4f\\x53\\x93\\x4e\\x3d\\x3d\\x5c\\x50\\xe6\\x6f\\x6a\\x0f\\xba\\x1c\\xea\\x32\\x5a\\x50\\x09\\x52\\x39\\xcb\\xb1\\xd6\\x8b\\x4b\\xa9\\xae\\x85\\xcf\\x81\\x43\\xf3\\x2f\\x0f\\x87\\x72\\x4d\\x8b\\x16\\x8b\\x44\\x4b\\xf2\\xc3\\x91\\xfd\\x95\\x7d\\x9f\\x7d\\xa9\\x3d\\x4e\\x3e\\xda\\x16\\xbe\\x47\\xf6\\xcd\\xaf\\x9b\\xcc\\x9b\\x35\\xca\\xe5\\x53\\x55\\x46\\xdf\\xc0\\x48\\x02\\xb1\\xf3\\x31\\xb0\\x53\\xe8\\x5a\\xa8\\xcd\\x30\\xae\\x5b\\xb2\\xca\\x61\\xed\\x62\\x58\\xf4\\x00\\xe3\\x29\\xbb\\xbf\\xb0\\xcc\\x30\\x2d\\xa1\\xd2\\x3d\\xcc\\x4f\\xdc\\xaa\\xa8\\xc1\\xbf\\xf7\\x87\\xc4\\xf6\\xf8\\x6f\\x10\\xab\\xee\\x3f\\xe9\\xc6\\x82\\xc6\\x21\\x64\\x3b\\xf1\\x4e\\x84\\x64\\xbd\\x70\\x7e\\x3c\\x01\\x84\\x9f\\x52\\x5e\\x51\\xef\\x60\\xba\\x7a\\xd2\\x72\\x8a\\x96\\x64\\x9e\\x61\\x72\\x75\\xf2\\xef\\xa2\\x2a\\x73\\x1e\\x27\\xb4\\xeb\\x31\\xa5\\x47\\xb7\\xf2\\xe4\\x83\\x60\\x79\\x0b\\x0f\\xf6\\xc4\\x65\\x1b\\x3b\\xf2\\x85\\xfe\\x6a\\xb3\\xc7\\x7a\\x4a\\xba\\x6d\\x93\\x35\\x8b\\x0b\\x64\\xc3\\x58\\xf2\\xc9\\x4d\\x9c\\x7f\\x5f\\x98\\x60\\xc7\\x45\\x42\\xb6\\xa0\\x62\\x1c\\x08\\x00\\x80\\xad\\xff\\x48\\x5b\\x6d\\xee\\xfa\\x64\\x5d\\xd5\\x5d\\xa7\\x96\\x9c\\xa3\\x6e\\xf8\\xbf\\xc3\\xf7\\xb0\\xee\\xc6\\xfe\\x7e\\x15\\xe7\\xc5\\x91\\x3d\\x7e\\x54\\x36\\x30\\x4b\\x64\\xad\\xcf\\x59\\x7a\\x3e\\x87\\x7d\\xd4\\x76\\x87\\xd7\\x6e\\x51\\xcc\\xf1\\x8f\\xa0\\x0b\\x65\\xf4\\x2a\\x7e\\xa8\\xd5\\x01\\x8f\\xd5\\xb4\\x94\\xb3\\x46\\x07\\xb1\\x52\\x0f\\xaf\\x41\\x78\\xb5\\xe9\\x6c\\xfc\\xc1\\xe1\\xb5\\xd6\\x7f\\x65\\x78\\x1f\\xc5\\x93\\xb9\\x23\\x7a\\xad\\xdc\\xe1\\x88\\xd9\\x8d\\xa7\\x43\\x7a\\xfd\\xf4\\x42\\xee\\x91\\x47\\x06\\xca\\x25\\x98\\xbd\\x80\\xec\\x08\\x00\\x1f\\x7c\\x0d\\x08\\x5a\\x36\\x62\\x5a\\x42\\x67\\x0e\\x81\\x6c\\x31\\xc8\\x43\\x37\\xf4\\x62\\xd5\\xe2\\xd9\\xc1\\xbc\\xf6\\x4e\\x4f\\x05\\xa1\\x30\\x47\\xe4\\x6c\\xab\\x78\\xe1\\x0a\\x87\\x6f\\xaa\\x60\\xa5\\xc2\\xe1\\x8a\\xe1\\x2a\\x53\\xcd\\xc1\\x0d\\x4c\\x79\\xc1\\x4e\\xc9\\x37\\x12\\x9d\\x4b\\x5a\\x4e\\xfb\\xdf\\x6d\\xc4\\x1e\\x96\\xdc\\x22\\x79\\xe1\\x76\\x4a\\x19\\xd0\\xb1\\x1c\\xc4\\x3f\\x32\\xbf\\xb0\\x05\\x16\\x26\\xbe\\xb5\\x7d\\xf8\\x7c\\x16\\x04\\x4e\\x07\\x9e\\x05\\xa2\\x61\\xc1\\x1d\\x87\\x40\\x8b\\x85\\x17\\xa8\\x4c\\x7d\\x8b\\x82\\xdb\\x0d\\x6d\\x30\\xae\\xa8\\x55\\xe2\\x15\\x9c\\x13\\xc7\\x62\\x46\\xe3\\x89\\x94\\xee\\xaf\\xd8\\xbe\\xbd\\x12\\x50\\x8c\\x70\\xdd\\x52\\x6d\\x45\\x73\\x88\\x44\\xd8\\xaa\\x5b\\xea\\x5b\\x94\\x65\\x9a\\x89\\xb8\\xa3\\x2a\\x8a\\x96\\xa4\\xd6\\x96\\xf5\\x48\\x69\\xd8\\x13\\x7e\\x96\\xc1\\x9e\\x92\\x6f\\xfc\\x52\\x25\\x95\\x33\\x4d\\xe6\\x46\\x9f\\xa7\\x28\\xd1\\xfe\\xdb\\xa1\\x34\\xf2\\xf8\\xd7\\x4b\\x6a\\x80\\xe5\\xb0\\x16\\x9a\\x46\\xc8\\xbc\\x89\\xbd\\x96\\x08\\x77\\x32\\x61\\x5c\\x5d\\x89\\x1d\\x83\\xc0\\x84\\x43\\xfd\\xe2\\x19\\x8b\\x52\\xff\\xed\\x95\\x4b\\x27\\xd4\\x65\\x0f\\xc2\\xd5\\xb6\\xde\\x6e\\x1c\\xcb\\xfe\\xea\\xb3\\x6c\\x40\\x0e\\x68\\x3f\\xb0\\x88\\x53\\x05\\xf8\\x57\\x6f\\xee\\xeb\\x0a\\x73\\x4c\\x34\\x51\\x61\\xf8\\x11\\x4d\\x04\\xb2\\x02\\x6b\\x9d\\xba\\x1d\\x3e\\x64\\x40\\xe1\\x5a\\xf5\\x2d\\xbd\\xdc\\x8c\\x4c\\x5b\\x6a\\x21\\x85\\x74\\xef\\x2b\\x9f\\x01\\xbf\\xea\\x48\\x9a\\x4b\\x99\\x20\\x93\\xe3\\x68\\xcb\\xf7\\x84\\x9f\\x45\\x37\\x7f\\xd9\\xff\\x25\\xd8\\x94\\xc1\\xff\\x9d\\x1e\\x51\\x55\\xad\\x52\\xff\\x14\\x08\\x41\\xd8\\xe2\\x2f\\x04\\x00\\x82\\xfe\\x93\\x4a\\xa1\\xbf\\xff\\x51\\xa6\\x5b\\x66\\x99\\x0b\\xa2\\x55\\xfc\\x6f\\x68\\xca\\x63\\x7c\\x58\\x9e\\xd7\\xe2\\xd1\\xad\\x9a\\x4c\\xbf\\x9c\\x6a\\xf2\\x93\\xab\\x24\\x6b\\x46\\xd6\\x39\\x15\\x76\\x3f\\xcc\\x45\\xc2\\xfb\\xcf\\x9b\\x32\\xc7\\x5f\\xb8\\x39\\xa4\\x13\\x4a\\xf7\\x94\\x9f\\xf3\\x51\\x3e\\xa2\\x5d\\xc5\\xc2\\x2a\\x20\\xeb\\xe3\\x46\\xbf\\x15\\x02\\xfb\\x84\\x66\\xc5\\x50\\x1d\\x19\\x81\\x02\\xfd\\x19\\xa0\\xd5\\xe6\\x1d\\x8a\\x0f\\x54\\x57\\xc8\\x86\\xa8\\x63\\xd9\\xe3\\x2c\\xdd\\x11\\xf2\\x1d\\x2a\\xff\\x02\\xd5\\x0b\\xd4\\x7b\\xf2\\x87\\xcc\\xa7\\x49\\x31\\xdb\\x0d\\xc1\\x7e\\x1c\\xfc\\x20\\x6d\\x28\\x11\\xe6\\x6e\\x90\\xf3\\xb0\\x97\\x99\\x1f\\xf4\\xb0\\x28\\x9a\\x32\\xac\\x3a\\x4c\\xbc\\x28\\xc3\\x14\\x6a\\x1c\\x00\\xbb\\x07\\xa5\\x16\\x50\\x09\\x20\\xee\\x41\\x03\\x04\\xc3\\x42\\x61\\xc0\\x3c\\x04\\x51\\x6d\\xa1\\xb4\\x42\\x03\\x83\\xc9\\x59\\x61\\x18\\x01\\x0c\\x3d\\x52\\xff\\x7b\\x3b\\x09\\xd3\\x09\\x3a\\x17\\x4a\\xb3\\x87\\x54\\xb9\\x8f\\xd7\\x0b\\x7a\\x23\\xc4\\x71\\x0a\\xc0\\x09\\x3d\\x2e\\x1e\\x3b\\xf5\\xbd\\x98\\x02\\x5d\\xf2\\x8f\\xfe\\x11\\x06\\x7f\\xf8\\x45\\x01\\xdd\\x11\\xea\\x4b\\x48\\xca\\x16\\x27\\x2f\\xf2\\x44\\x68\\xec\\x16\\x7b\\x2b\\x52\\x75\\xa8\\xee\\x16\\x5a\\x2b\\x42\\xc2\\x16\\xac\\x1f\\xc0\\xb0\\x07\\xfd\\x0a\\xf9\\x2d\\xb8\\xf8\\x2b\\xa1\\x0c\\x94\\x6a\\x30\\x27\\x25\\xe9\\xd0\\x57\\xf6\\x68\\x46\\x0a\\xdd\\x2f\\x74\\x2a\\x66\\xf8\\x7c\\x3f\\x26\\x92\\x10\\xf6\\xe0\\x9e\\x25\\x1b\\xa6\\x28\\x1b\\x91\\xec\\xa5\\x3a\\xa6\\x8c\\xdd\\xe0\\xf5\\x25\\x79\\x54\\xc2\\xf9\\xdd\\xf0\\x85\\x24\\x2e\\xa7\\xd1\\x19\\x71\\x47\\xc1\\x2e\\x75\\xe2\\x95\\x48\\xb6\\x7d\\x3a\\xb5\\x06\\x76\\x38\\x39\\xfd\\x0b\\xb5\\x4c\\xf2\\xa6\\x64\\xab\\x03\\x13\\xb5\\x0c\\x67\\x88\\xaf\\x83\\xb3\\xd7\\xd0\\x9d\\xd0\\x8e\\x60\\x81\\x2b\\x31\\x3f\\x2c\\xc3\\xbe\\x16\\xa7\\x78\\x35\\xb2\\x01\\xf4\\x6b\\x86\\x37\\xc4\\x4f\\x5a\\xf6\\x28\\xf1\\xc2\\x64\\x2b\\x4a\\xfe\\x68\\x0a\\x93\\x18\\x2d\\xda\\x66\\x44\\x46\\x41\\x4c\\x9a\\x87\\x68\\xb5\\x9d\\x04\\x2f\\x3a\\xb5\\x21\\xbd\\xfa\\xb8\\x4a\\x2a\\xdd\\x61\\x03\\x97\\xb8\\x5c\\x3a\\x1e\\x19\\x46\\xec\\x3d\\xb8\\x67\\x99\\x00\\xf6\\xd9\\x4c\\xef\\x31\\x17\\x0b\\xa1\\x86\\xf8\\x65\\x48\\xae\\x45\\x35\\xc7\\x9f\\xe3\\xcc\\x8e\\x31\\x8e\\x03\\xa1\\xdb\\xbc\\xb4\\xbe\\x11\\xe3\\xb4\\x7a\\x1b\\x6d\\xa6\\x4a\\x83\\x05\\x02\\x5b\\x60\\x53\\xbf\\x4b\\xa5\\xfe\\x02\\xe1\\x29\\xf0\\xbe\\x57\\xd1\\xfc\\xb0\\x6e\\x74\\x19\\xf5\\xcc\\xc3\\x43\\xc4\\x37\\xa4\\xab\\x67\\xc3\\x4c\\x4d\\x60\\x44\\xd8\\x64\\xb3\\x21\\x90\\x37\\x2b\\x57\\x5c\\x11\\xb7\\x2c\\x6b\\x76\\x80\\xf0\\x60\\xcc\\x49\\x83\\x57\\x97\\xe4\\x02\\xcc\\x8b\\x90\\x2b\\x37\\x81\\x7d\\x98\\x93\\x33\\xc1\\xb4\\xa5\\xe1\\x92\\xd3\\x9a\\xb7\\x46\\x71\\x81\\xe3\\x99\\xd5\\x31\\x5c\\xe2\\x90\\xea\\x0b\\xee\\x3a\\xe8\\x76\\x0a\\xf4\\x8e\\xc1\\xbf\\x46\\xf3\\x3e\\xec\\xd4\\xdd\\xe0\\xb8\\x4c\\xc9\\x1f\\x9b\\xdc\\x3b\\xbc\\x95\\x7b\\x9e\\x7f\\x93\\x0a\\x60\\x00\\xe5\\x88\\x0c\\x91\\x1f\\x4e\\xde\\x2c\\x3e\\x45\\x4c\\xbe\\xb3\\x04\\xe3\\x05\\x93\\x06\\x4b\\x04\\xa3\\xf7\\x12\\xf5\\x5a\\xf7\\xa2\\x8a\\x31\\x64\\x62\\x08\\xe2\\x76\\x62\\xfb\\xe1\\xff\\xc4\\x1c\\xc1\\xb5\\xc1\\xd6\\xc1\\xe2\\xc7\\x50\\xc4\\x9c\\xc0\\x60\\xc6\\x61\\x7e\\x0c\\x4c\\x14\\x39\\x66\\x9a\\xe9\\xfe\\xbf\\xbe\\x09\\x16\\x13\\x50\\x0b\\xc0\\x03\\x38\\x02\\xe0\\x00\\xd0\\x00\\x65\\x80\\x11\\xc0\\x13\\x00\\x00\\xac\\x23\\x67\\x00\\x60\\x00\\x50\\x5e\\x50\\xf1\\xbf\\xb9\\x92\\xd5\\xa1\\x30\\x22\\x40\\xce\\x6b\\x14\\x83\\x79\\xee\\x9b\\xb0\\x9e\\x9e\\x91\\xd7\\x59\\xf7\\xfe\\x21\\xc5\\xb9\\x41\\xbf\\x33\\x61\\xec\\x12\\x46\\x55\\xa2\\x78\\xe1\\x03\\xdd\\xb9\\x6a\\xd9\\x35\\xde\\xf7\\x6c\\xf1\\x8d\\xa8\\xc8\\x65\\x93\\x64\\x6a\\xe0\\x81\\x21\\xae\\x21\\x5d\\x82\\xee\\x8a\\xf5\\xc1\\x3c\\x13\\xdf\\xda\\xbd\\x4e\\x73\\x2d\\x58\\x0c\\xf3\\x38\\xd6\\x0e\\x32\\x5c\\xd3\\xd7\\xa3\\x29\\x0e\\x49\\xf0\\xb1\\x1f\\xf3\\x34\\x1b\\x98\\xaf\\x37\\xbc\\x99\\x56\\xb1\\x90\\x27\\x4e\\x97\\xf2\\x9f\\x8e\\x3b\\x81\\x90\\xe8\\xcd\\x09\\xe2\\xd6\\x3c\\xc1\\xf3\\xce\\x68\\xd2\\x61\\xcf\\x89\\x1c\\xed\\x0c\\xbd\\x2d\\x9c\\x86\\xb1\\xeb\\xec\\x20\\xfe\\x5f\\x36\\x3f\\xce\\x8a\\x13\\xc9\\x7c\\x08\\x71\\xf2\\x4c\\x35\\x54\\xcd\\x63\\xea\\x1b\\x91\\xc7\\x94\\x8b\\xe5\\xdc\\x42\\xbe\\x0d\\x2b\\x3a\\xec\\x68\\x87\\x95\\xa6\\x21\\xde\\xc3\\x77\\x4e\\xb5\\xfc\\xc8\\x60\\x6c\\xc0\\xb9\\x93\\xf2\\xf1\\x74\\x91\\xdc\\x24\\xa4\\x7b\\x4e\\x23\\xe6\\xb0\\xd7\\xfe\\x35\\x8d\\xe3\\x1d\\x42\\x43\\x0a\\xc9\\xde\\x4b\\xdc\\xc6\\xf6\\x50\\xff\\xac\\x56\\xc0\\xf9\\x99\\xb2\\xd8\\x7c\\x5a\\x08\\x31\\x4b\\xc5\\x9c\\x27\\x80\\xf0\\x78\\x24\\x50\\xe3\\xde\\x80\\x35\\x9a\\x4a\\x3b\\x09\\xa7\\x15\\xd1\\x6e\\x42\\x0c\\xda\\x8f\\x0e\\xa7\\x92\\xbb\\x37\\xd2\\x4c\\xe5\\xda\\xb9\\x73\\x2a\\x1d\\x32\\x46\\x74\\xf3\\x83\\x04\\x69\\x46\\xe4\\x57\\x0f\\x52\\xce\\xcc\\x34\\xf2\\x32\\x0c\\xba\\x6c\\xa3\\x9b\\xe7\\xd4\\x70\\x94\\x5c\\x63\\x88\\x82\\xe7\\xe3\\xef\\xc6\\x57\\x13\\x16\\xd6\\x1f\\x12\\xbe\\x54\\x3d\\x9a\\x3f\\xc7\\xa4\\x4a\\xfe\\x51\\x68\\x4b\\xd1\\xaa\\xbc\\x80\\xe5\\x96\\x53\\x68\\x4c\\xc1\\x1e\\x4b\\x2a\\x3b\\x5a\\x99\\xc9\\x2d\\x3a\\xb3\\x73\\x19\\x25\\x4a\\x32\\x4b\\x60\\x6b\\xa7\\x61\\x51\\x68\\x1f\\x62\\xf9\\x37\\x3f\\xc0\\x08\\xf5\\xcb\\xbb\\x2c\\x7d\\x0e\\xc5\\xbc\\x6d\\x0c\\x4e\\xd1\\x39\\xa2\\x62\\x6d\\xe6\\x31\\x73\\xd1\\xce\\x0b\\x34\\x80\\xff\\x01\\xb3\\xd8\\x19\\x69\\xf3\\x7f\\x3d\\xaa\\x5d\\x6f\\xa8\\xbb\\x04\\x14\\x00\\xd0\\x73\\x5a\\xb3\\x6e\\xf8\\x9f\\xd8\\xc7\\x3c\\xa7\\x36\\xb1\\x5b\\xd5\\x8b\\x5e\\xc0\\x8a\\x96\\x7f\\xad\\x09\\xc9\\xfe\\xfd\\x4f\\xb4\\x40\\xa7\\x8a\\xff\\x9e\\x88\\xd3\\x66\\xa6\\x52\\xb2\\x82\\xfb\\x9c\\x3f\\x8c\\xdf\\xfd\\x78\\xa1\\x48\\x33\\x3f\\x00\\x06\\x1e\\x95\\x90\\xdb\\x64\\x2e\\xd3\\x19\\x9b\\x56\\x21\\x8b\\xdb\\x74\\x21\\xd7\\x1b\\x19\\x8f\\x49\\xbb\\xd9\\x64\\x3e\\xdb\\x9d\\x98\\xdb\\x7e\\xb9\\xd9\\x74\\x11\\xe8\\x8f\\x80\\x46\\xca\\xe7\\xb1\\x33\\x97\\xe5\\x8a\\xcf\\xac\\xdf\\xe6\\xb1\\xbb\\x90\\xe7\\x8b\\x4e\\x26\\xe4\\xfd\\xb0\\x33\\x9f\\xe3\\x49\\x2e\\xec\\xff\\xfc\\xb0\\xbb\\x98\\x1f\\x88\\xa9\\xc2\\xe6\\x8c\\x28\\xfb\\xcd\\x9a\\x50\\xd2\\x3c\\x64\\x8b\\x82\\x89\\x00\\x00\\x08\\x3a\\x1a\\x7b\\xa4\\x5a\\x6d\\xf6\\x1e\\xb4\\x5b\\x5d\\xf8\\xa7\\xf1\\x4c\\xb4\\xdc\\x6c\\xbb\\xee\\xcb\\x35\\x57\\xaf\\x40\\xee\\x39\\x37\\x2d\\xc5\\x51\\xc4\\xc8\\x2e\\x91\\x12\\xf8\\xb7\\x34\\x07\\x5d\\xd8\\xba\\x24\\x1f\\xfe\\xd3\\xa5\\x4f\\xc0\\x94\\xf1\\x7a\\x1c\\x5f\\x44\\x7e\\xba\\x97\\x38\\x4f\\x70\\x76\\x08\\x16\\xbd\\x92\\x6d\\x38\\xf6\\x73\\xe9\\x1e\\x04\\x05\\xef\\xd2\\x5b\\x22\\x06\\xdf\\x30\\x16\\x43\\x31\\x46\\x68\\x93\\xb9\\x2d\\x45\\x60\\x8d\\xe3\\x9b\\xeb\\x3a\\x84\\x09\\xc9\\xad\\x9b\\x2c\\x9f\\x1e\\x24\\xb0\\xcd\\xbd\\xa6\\xcd\\xb4\\x4a\\x1e\\x2e\\xcd\\xb4\\xc9\\x3e\\xb6\\xc8\\xb4\\x4e\\x5f\\x3e\\xc8\\x1c\\x6d\\xf5\\x3e\\xd0\\x35\\xfa\\x23\\x89\\xa7\\x6b\\x52\\x6e\\x9e\\xae\\xdb\\x5b\\x9b\\x06\\x82\\xed\\x0d\\x4d\\x82\\x01\\x00\\x00\\xb5\\xa3\\x32\\x8e\\xab\\xdc\\x36\\xab\\xcd\\xf8\\x8e\\x26\\xfd\\xa5\\x4c\\xab\\x1e\\x67\\x2b\\x0d\\x97\\x3d\\x7f\\xa8\\x20\\x8a\\xb9\\xfc\\xae\\x17\\x7d\\x25\\x0c\\x8b\\x0e\\x6b\\xed\\xae\\x97\\xbd\\x45\\x74\\x93\\x06\\x9d\\x3e\\xb7\\x17\\xfd\\x65\\x2c\\x9b\\x01\\x6f\\x2f\\xb7\\x2c\\x5f\\xe9\\xa9\\x19\\x29\\xbf\\xd3\\x32\\x53\\x7c\\xa3\\x61\\xa2\\x62\\xa0\\xab\\x29\\xf8\\x5b\\x5c\\x59\\xf8\\xaf\\xb4\\xfa\\x4f\\x79\\x49\\x55\\x51\\x45\\x99\\xa3\\x91\\x95\\x99\\x9d\\x89\\x8d\\x85\\x83\\xb1\\x75\\x13\\xed\\x17\\x32\\x0c\\x2a\\xa8\\x20\\x40\\x90\\x02\\x30\\xa0\\xd9\\x7e\\xee\\x3f\\x4b\\xae\\x6b\\x4a\\xf3\\x3a\\x4a\\x82\\x00\\xbd\\x4e\\xb2\\x0e\\x0d\\xbc\\x8e\\xd3\\x16\\x37\\xbc\\x4e\\xf3\\x1e\\x85\\x9f\\x8e\\x52\\x26\\xbb\\x9f\\x4e\\x72\\x2e\\x03\\x9e\\x8e\\x33\\x36\\x3f\\x9e\\x4e\\xf3\\x3f\\x93\\xa9\\xe5\\x92\\xbe\\x2b\\xb4\\xa3\\x64\\xd5\\x9b\\x8d\\x26\\x31\\x28\\x75\\x43\\x87\\xc7\\xe0\\x30\\xa8\\xfc\\x93\\x6f\\x43\\x4a\\xfb\\xa7\\x5e\\xa1\\x52\\xa1\\xd8\\x05\\x1f\\x9f\\xcd\\x69\\x3b\\xfd\\x4f\\xa1\\x03\\x2d\\xaf\\xdd\\xed\\x74\\xba\\x82\\x05\\xa9\\x48\\x26\\x30\\x55\\x4a\\x9b\\x93\\x38\\x6a\\x87\\x3e\\x3a\\xbd\\x95\\x3c\\xfe\\x1a\\x6c\\x64\\x26\\x69\\x3b\\x27\\xa5\\xaf\\x4e\\xcc\\x6e\\x07\\xfe\\xcb\\xb6\\x4b\\x2b\\x3f\\x28\\xa7\\x56\\x3a\\x9e\\xc9\\x85\\x6f\\xb8\\xeb\\xeb\\x17\\xfb\\xa3\\x18\\xfc\\xfa\\x44\\x68\\x7d\\x4d\\x2b\\x3c\\x58\\xf6\\x97\\xd5\\xb1\\xb7\\x90\\x66\\x54\\xa3\\x52\\xa7\\xc1\\xe1\\x7f\\x05\\xf9\\xb9\\xf4\\xff\\x57\\x91\\x0d\\x4c\\x58\\x25\\x84\\x65\\x00\\x00\\x20\\x79\\xe9\\x19\\x68\\xb6\\xda\\x6c\\x9f\\x90\\x6c\\xdf\\xe1\\x3d\\xe3\\x8b\\x6c\\x66\\x1a\\xc1\\x29\\xce\\x2f\\x8d\\xf2\\x37\\xf0\\xed\\x54\\xe4\\x93\\xd8\\xac\\x96\\x22\\x82\\xc8\\xa2\\x15\\x53\\x8a\\xc8\\xbc\\x91\\x6d\\x90\\xc8\\xb2\\x13\\x91\\x36\\xdb\\xac\\xfe\\x5b\\x69\\xb6\\x45\\x3b\\xa1\\x45\\xb6\\x79\\x33\\xdf\\x41\\xb6\\x65\\x37\\x1c\\x9e\\x8e\\x59\\x1d\\x4d\\xba\\x8e\\x45\\x1b\\xae\\x86\\x8e\\x79\\x13\\xd7\\x99\\xae\\x2d\\x69\\xcd\\xc2\\xaa\\x11\\x15\\x42\\xae\\x73\\x1f\\x85\\xff\\xdd\\x2a\\x18\\x80\\x8f\\xe2\\x32\\xc2\\xc7\\xa3\\xe7\\x32\\xc0\\x25\\x21\\xe8\\x34\\x4a\\x2a\\x8d\\x72\\x3b\\x46\\xa5\\x14\\x77\\x35\\x41\\x50\\x14\\xc7\\x31\\x0c\\xab\\xc6\\xcd\\x31\\xce\\xc8\\x31\\xc6\\x36\\x49\\x89\\xcc\\x58\\x37\\x86\\x64\\x5b\\x59\\x3f\\x41\\x4b\\x6c\\xd7\\x30\\x80\\xd6\\xe1\\xe7\\x64\\x17\\x5b\\xd5\\xbc\\xec\\x10\\x99\\xe7\\x77\\x6d\\x9f\\xb1\\xfe\\xb0\\x34\\xaa\\x14\\x64\\x18\\xb2\\xd5\\x1b\\x15\\x0c\\x00\\x00\\x96\\x0c\\x35\\x2a\\xec\\x57\\x9b\\x9b\\x3c\\x7d\\xed\\x28\\xff\\x7f\\xb8\\x24\\xf7\\x0b\\xcd\\x0f\\x29\\x4c\\xae\\x8f\\xf9\\x97\\xdd\\x1e\\x51\\x9a\\xde\\x9c\\x50\\x0d\\xec\\x0e\\xfe\\x93\\x54\\x17\\x5d\\x9e\\xd5\\x16\\x5e\\x92\\xd6\\x14\\x5f\\x95\\xd7\\x15\\x5a\\x94\\xd2\\x10\\x5b\\x91\\xd3\\x11\\x59\\x96\\xd1\\x32\\x99\\xff\\xd5\\xab\\x27\\x81\\x11\\x00\\x00\\x3c\\x18\\xa2\\x75\\x37\\x77\\x35\\xd9\\xdb\\xda\\xac\\x7a\\x08\\xfc\\xb3\\xa7\\x03\\x7a\\x5f\\x84\\x67\\x18\\xc0\\xb5\\xf4\\xe6\\x2d\\x6e\\xc0\\x26\\x7d\\x3d\\xa9\\xf2\\xdc\\x78\\xdd\\x2a\\x52\\x12\\x7e\\xdd\\xa9\\x70\\xec\\x7e\\xdd\\x2e\\x33\\x0c\\x78\\xdd\\xad\\x09\\xfc\\x90\\xfb\\x4d\\x2f\\xeb\\x82\\x91\\x4c\\xf9\\x2b\\xfb\\xee\\x2b\\x1e\\xd8\\x7c\\x28\\x95\\x46\\x37\\x41\\xcf\\xfb\\x06\\x97\\x5e\\xbd\\x58\\x2b\\x5a\\xd5\\x7c\\xe4\\xd7\\x5f\\xf5\\x12\\x9d\\x78\\x1d\\xf7\\x13\\x2e\\xab\\x39\\xea\\x62\\xed\\x58\\x0d\\xfb\\x15\\xf7\\xa3\\xb9\\x12\\xdd\\x44\\x03\\xff\\x17\\x54\\x02\\x4e\\xb3\\xa5\\x28\\x15\\xd3\\x41\\x85\\x4c\\x4e\\xf3\\x95\\x38\\x6d\\xd7\\x03\\x26\\xad\\x46\\xb3\\xe5\\x98\\x5f\\xb6\\x0b\\xf6\\x4b\\x38\\x78\\x98\\xb8\\xd8\\x2d\\xe6\\xab\\x09\\xfa\\xbe\\x0f\\xa4\\xbc\\x6e\\x7b\\x4b\\xd1\\x6a\\x96\\x13\\xfa\\xad\\x6e\\xfb\\x2b\\xf1\\xba\\x9e\\x17\\x42\\x98\\xb0\\xe8\\x5f\\x30\\x01\\x00\\x40\\xcf\\x49\\xfa\\xff\\x5d\\x0c\\x9b\\xed\\xbb\\x85\\xec\\x40\\xc1\\x22\\x62\\x21\\x70\\x18\\x94\\xea\\x99\\x4e\\x98\\x94\\x92\\xd1\\x78\\x54\\x1a\\xb9\\x5e\\x88\\x58\\x34\\xb2\\xe9\\x94\\xbf\\xb2\\xdd\\x08\\xd9\\xcd\\x87\\xd3\\xa9\\x34\\x81\\x7e\\x70\\x48\\xb8\\xdf\\x34\\x0a\\xd5\\xb3\\x5c\\x70\\xbf\\xff\\x2a\\xd7\\x28\\xd2\\xc8\\xf3\\x41\\x25\\xe2\\xb2\\x5e\\x28\\xfc\\x95\\xe3\\x41\\xfa\\xff\\xa0\\x9e\\x7c\\xd0\\x7d\\x01\\x62\\x89\\x43\\x01\\x00\\x41\\xfe\\x67\\x2b\\x93\\x43\\xcd\\xff\\x83\\x69\\x7b\\x3b\\xee\\x29\\xf2\\x76\\x37\\xea\\x18\\xf8\\x76\\x3f\\x19\\x08\\x05\\x0d\\x87\\x88\\xf7\\xff\\x06\\xb8\\xa0\\x2f\\x21\\xb1\\x30\\x00\\x71\\x00\\x40\\x14\\x5f\\xaf\\xac\\xed\\x33\\x3d\\x00\\x2e\\x74\\xda\\x6c\\xd0\\xa4\\x69\\x99\\x54\\x31\\x63\\x75\\xf7\\xfe\\x19\\x4e\\x25\\x19\\xd7\\xdd\\x8a\\x7f\\x58\\x22\\x4d\\x5f\\xe0\\x8b\\x1f\\x5d\\xcf\\x78\\x45\\x80\\x86\\x86\\x8a\\x23\\xbe\\xb2\\x67\\xc6\\xa6\\x6c\\x26\\xcc\\x2c\\xb2\\x3c\\xda\\xef\\x95\\x83\\x9a\\xdf\\xce\\x19\\xee\\x6d\\x14\\x3c\\x9f\\xb2\\xde\\x8f\\x3e\\xae\\x1c\\x37\\x53\\x52\\x68\\x15\\xa4\\x52\\x26\\xeb\\x26\\x43\\x04\\x2a\\xa3\\xb1\\xf0\\x26\\xee\\xde\\xbf\\xa6\\x0f\\x6f\\x96\\x7e\\x80\\xb7\\xbe\\x5a\\xd9\\x0c\\x58\\xb3\\x42\\x87\\xaa\\x24\\x84\\xca\\x9e\\x6c\\xb8\\xa0\\xc4\\xc4\\xfa\\x31\\xd5\\xe7\\x8f\\xb6\\xa3\\x37\\x76\\x75\\x78\\x16\\xab\\xda\\x82\\x8c\\xaf\\x26\\x1e\\xf0\\xe4\\xc3\\x58\\xec\\x96\\x79\\x90\\xa7\\x1e\\xbc\\x6b\\xd9\\xf9\\xf4\\x19\\xad\\xb3\\x20\\x25\\x6e\\x8e\\xaf\\x67\\xa0\\x83\\xb5\\x82\\x5d\\xc7\\x34\\x3e\\x27\\x9d\\xe9\\x30\\x4c\\xec\\x92\\x1d\\x26\\xd1\\xad\\x38\\x34\\xc4\\x39\\x3e\\x2f\\xf4\\x13\\x58\\x7d\\xf8\\x7b\\x13\\xb6\\xfe\\x23\\x78\\xbf\\xa2\\x3f\\x2f\\x05\\x27\\xc1\\x73\\x1c\\x84\\xe8\\x3b\\xbd\\xc9\\x5e\\x32\\xc5\\x3d\\xee\\x78\\x66\\xa1\\x84\\xa9\\xdf\\xfc\\x7d\\x36\\x34\\x4d\\x33\\x86\\x9c\\x7f\\x07\\x66\\x8a\\x8d\\xa5\\x78\\x0b\\xcb\\x60\\x4d\\x96\\xb6\\x19\\xaf\\xa0\\x47\\x5b\\x79\\xa7\\x1e\\xec\\x7a\\xa8\\xab\\x50\\x4a\\x18\\x3e\\x4a\\x54\\x1c\\x31\\x46\\x67\\x95\\x2f\\x15\\x11\\x6e\\xe4\\xd5\\xf3\\x2e\\xc2\\xe3\\xf5\\x28\\xa3\\xf4\\x68\\x20\\x49\\x10\\xbe\\xbc\\x3a\\xba\\xfd\\xfd\\x29\\x26\\x72\\x48\\x9c\\xb5\\xf4\\xc1\\x48\\x51\\xe7\\xe4\\xe2\\x7c\\x7b\\xeb\\x18\\xc7\\x68\\x77\\x46\\x72\\xc7\\x62\\xce\\xed\\x81\\xa6\\xc8\\xec\\x40\\x66\\x20\\x7c\\x92\\x44\\x85\\xcd\\x81\\x4c\\x2c\\x80\\x80\\xcf\\x83\\xce\\xb2\\x9f\\x01\\xee\\x1b\\x9c\\xe8\\x1d\\x1e\\x18\\xef\\x1f\\x95\\x7e\\xe6\\xfa\\x2f\\x66\\xf6\\x15\\x8f\\x20\\x4b\\x5b\\x6b\\x79\\x89\\x8f\\xb7\\xad\\xd5\\xdb\\xeb\\xd9\\xca\\x41\\x69\\x8c\\xb1\\x92\\x24\\x57\\x6f\\x4d\\xb0\\xd3\\x2f\\x55\\x04\\xfa\\xbf\\x68\\x06\\x62\\x04\\x3a\\xf2\\xfd\\x89\\x9e\\xa1\\xbe\\x11\\x89\\x2e\\x0d\\x23\\x33\\x63\\x73\\xd3\\xc3\\x82\\xe7\\x8e\\x5a\\x17\\x27\\x97\\xeb\\xa9\\xb5\\x14\\xed\\xa5\\xe3\\xcf\\x7d\\xe4\\xb9\\xcb\\x86\\xd6\\xcf\\x4a\\x0a\\x56\\xb6\\x86\\xda\\xfa\\x3a\\xd7\\xff\\xd0\\x5c\\xdd\\x5c\\xdf\\x3a\\xa2\\x80\\x4a\\x31\\x08\\x28\\xff\\x2f\\x89\\x00\\x02\\x1d\\xfe\\x23\\x8f\\xdc\\x2f\\xf7\\x20\\x56\\x1c\\xb0\\x93\\x25\\x7e\\x2e\\xe2\\x52\\x51\\xfa\\xca\\x2d\\xf6\\x82\\xf4\\xab\\x6b\\xc0\\xb0\\x61\\xbd\\xa6\\x61\\x70\\x2b\\x4a\\xd8\\xbf\\xda\\xd7\\x62\\x31\\x51\\xaf\\x10\\x82\\xf9\\xcf\\x03\\x4e\\xa3\\x0d\\x16\\xdb\\xc9\\x17\\x0e\\xb4\\xec\\xe5\\x84\\x1b\\x49\\xd8\\xc0\\xa6\\xdb\\x3f\\x38\\x01\\x74\\x90\\xe0\\x0f\\x2f\\x41\\xf4\\xe7\\x66\\x78\\xb9\\x43\\x17\\xb1\\x26\\x34\\xb2\\xa3\\x6c\\x8d\\x95\\xbc\\xc6\\x30\\x1e\\xc2\\x83\\x3f\\xb9\\xdc\\xd8\\xe0\\xeb\\x2c\\x02\\x6a\\x9b\\x17\\x57\\x33\\xfa\\xf2\\x59\\x73\\x0c\\x58\\x9e\\xb6\\x6f\\xf6\\x27\\x92\\xe9\\xdb\\xc2\\xc8\\xe0\\xbf\\xad\\x42\\xef\\x9e\\x9e\\x9f\\xb8\\x2d\\x94\\x6a\\x77\\xab\\xb6\\xba\\xee\\x72\\x14\\x7c\\x97\\x1b\\x23\\xaf\\x3f\\x2f\\xf6\\x47\\xae\\x4a\\x75\\xa2\\x54\\xe7\\x9b\\x24\\x8b\\x45\\x8a\\x1a\\x9b\\xb3\\x44\\x72\\x08\\x27\\x2c\\xb0\\x77\\x1a\\xdf\\x49\\x2c\\x8f\\x23\\xfd\\x48\\xed\\xd7\\x77\\xc4\\x10\\xf7\\x1f\\xf4\\xa9\\x1b\\xfe\\xea\\x6d\\xd2\\x5e\\xef\\x5e\\x34\\x1c\\x54\\xe5\\xcd\\xe6\\xf3\\xfb\\xc4\\xd8\\xf7\\x43\\xd4\\xfd\\x1d\\x1e\\x83\\xef\\x6f\\x6a\\x26\\x06\\x1c\\x46\\x89\\x0f\\xd4\\xd2\\xf1\\xbe\\x33\\x42\\x38\\x0e\\xf2\\x24\\x8c\\xa0\\xe5\\xa1\\xc8\\x33\\xa1\\x5c\\xb7\\x04\\x6a\\x01\\x09\\x41\\xa6\\x5b\\xb0\\xbc\\x70\\x13\\x41\\x80\\x56\\x00\\x73\\x30\\xc3\\x16\\xd1\\x97\\x60\\xf2\\x1e\\xa5\\x2d\\xfc\\x2b\\xe2\\x27\\xd3\\x29\\x9e\\x6b\\x75\\x6d\\xab\\xf2\\xe4\\xcc\\xe3\\xf4\\x09\\x20\\x1e\\x7f\\x29\\xa7\\x94\\xdd\\x66\\xa9\\x39\\xbc\\x6c\\xc6\\x97\\x57\\x97\\xe7\\x28\\xff\\x52\\x55\\x0c\\x85\\xae\\x5a\\x67\\x2a\\x86\\x70\\x7a\\xf9\\x36\\xf7\\x34\\x44\\x05\\xea\\x99\\x00\\xcc\\x20\\xd2\\xa6\\xa9\\x10\\x42\\x9a\\x9e\\x18\\xfe\\xc2\\x38\\xab\\x66\\x63\\x09\\x39\\xd6\\x3f\\x3c\\xbd\\x21\\x58\\x85\\x8c\\xe3\\xb7\\x20\\x4a\\x5b\\x4b\\x97\\x06\\x4e\\x9f\\x55\\x1e\\xca\\x0c\\x4a\\xff\\x54\\xe8\\x41\\x8f\\xfb\\x4b\\x29\\xa5\\x2c\\x79\\x2c\\x42\\x5c\\x76\\x1f\\xfd\\x61\\x7e\\x04\\x59\\x3f\\xdd\\xbb\\xa7\\x1f\\xae\\xcf\\x62\\xd4\\x03\\xa3\\x3f\\xcc\\x46\\x79\\x67\\xb9\\xc7\\x8b\\xe7\\x52\\xc6\\x7f\\x88\\x28\\x0c\\x26\\x2b\\xb4\\x49\\x41\\xc7\\x1d\\xe5\\xee\\xa2\\xc6\\x69\\x2c\\x79\\x59\\x03\\x21\\x2f\\xcb\\xbf\\xc9\\xcd\\xa6\\x65\\xe6\\x24\\x0e\\xc5\\x26\\x79\\x0b\\xa7\\x8e\\x62\\x9b\\xda\\x65\\xda\\x96\\xd6\\x8e\\x54\\x2c\\xc9\\x2c\\x6d\\x69\\x3e\\x15\\x6e\\x34\\x35\\x7e\\xf4\\x7e\\x7f\\x94\\x97\\x29\\xfd\\x86\\xd2\\x59\\xce\\xf1\\x6b\\x3b\\xb6\\xb0\\x4e\\x15\\xd1\\x4a\\xef\\x54\\xfa\\x0f\\x19\\xa9\\x63\\x46\\x6c\\xc2\\x52\\x74\\x75\\x64\\x8d\\x5f\\x35\\x80\\x74\\xf2\\xaf\\x0b\\x2c\\xa7\\xcf\\xb1\\x6a\\x9b\\xc7\\x21\\x52\\xad\\x40\\x5d\\x4b\\x01\\xb1\\xf6\\xb2\\x16\\x19\\x9a\\xe0\\xce\\x9f\\x1b\\x51\\x2b\\x73\\x1e\\xf8\\x6a\\x25\\x6e\\x93\\xa9\\x6b\\x63\\x2a\\xee\\xa3\\x27\\x1e\\xeb\\x60\\xb9\\xd9\\x68\\xcf\\xc2\\xd3\\x94\\x7d\\x02\\x37\\x3f\\xab\\x38\\xd4\\x76\\xd7\\x03\\x88\\xcb\\x66\\xe2\\x74\\x10\\xef\\xd9\\xf8\\x72\\xda\\x19\\xd3\\x72\\xc1\\x6b\\x9e\\xb5\\x96\\xf6\\xb2\\x76\\x26\\x7e\\x7f\\x12\\xfc\\x45\\x88\\x60\\x46\\x41\\x43\\xd0\\xa1\\xaa\\x44\\x55\\x72\\x22\\xd6\\x19\\xa3\\xc7\\x85\\x67\\x62\\xe6\\xcb\\x67\\xe5\\x9a\\xc0\\x01\\xda\\x7a\\x5d\\xb0\\xab\\xc9\\xc9\\x36\\x35\\x7c\\x17\\x76\\x37\\x4b\\xf9\\xb9\\x04\\x25\\x56\\xe8\\x60\\x34\\xfb\\xb2\\xcc\\x5c\\x3f\\x5f\\xff\\x33\\xea\\x44\\xfe\\xf5\\x2d\\x71\\xc0\\x07\\xca\\x21\\x8f\\xcc\\x9e\\x94\\xdd\\xac\\x9e\\x7b\\xc5\\xf9\\x77\\x0f\\x18\\x24\\x6e\\xb8\\x3c\\x40\\x6f\\x29\\xfc\\xbb\\xd1\\xaf\\x7f\\x9e\\xb4\\x0c\\x8b\\xd1\\xf4\\xb1\\x01\\x23\\xd2\\x13\\x34\\x76\\x96\\xb5\\xfe\\xc3\\xf6\\x96\\x6b\\x0f\\x34\\x76\\x96\\x3d\\xb8\\x8a\\xfb\\xf0\\xeb\\x0c\\xe9\\x75\\x7e\\x35\\xc5\\x45\\xdb\\x9a\\x3b\\x3c\\x85\\xd2\\x82\\x3f\\xca\\x45\\x12\\x7d\\x7e\\xac\\x71\\xa3\\x0c\\x4e\\x70\\x31\\xe2\\x8a\\x46\\xad\\xa4\\xff\\xb5\\x97\\xd9\\x4e\\x2f\\xc0\\xa6\\x5c\\x9b\\x29\\x20\\x3c\\x61\\x98\\x61\\xbc\\x6f\\x20\\x5f\\x10\\x67\\x79\\x1e\\x42\\x3d\\x26\\xa5\\xef\\xbd\\x50\\xc2\\x1b\\x84\\x49\\x09\\xe4\\x78\\x1e\\x1e\\x99\\x20\\xa7\\xde\\x5e\\x2e\\xb8\\x85\\x6c\\x84\\x5b\\xfa\\xe2\\x0b\\x92\\x7b\\xfe\\x02\\xcb\\xfc\\xfa\\x4d\\x47\\x69\\x28\\xa6\\x98\\x15\\xe7\\x9b\\x88\\x77\\x8a\\xcf\\xe0\\xa6\\xbf\\x0e\\x88\\x9b\\xbb\\x1f\\xa3\\xc3\\x1d\\x7e\\x81\\xdd\\x5b\\x04\\xba\\x47\\xe2\\xb9\\x87\\xd4\\x3e\\xcd\\x54\\x04\\x38\\x64\\x51\\x64\\x47\\x61\\x1a\\x12\\x4e\\xff\\x3b\\x56\\x2a\\x7c\\x92\\xa2\\x8d\\x0e\\x42\\xcb\\x27\\xbc\\xcd\\x62\\x0b\\x9c\\x5c\\x92\\x03\\x59\\x14\\x74\\x18\\x1d\\xe2\\x9d\\xad\\x99\\x7c\\xae\\x15\\x06\\x5c\\x8c\\xbd\\xac\\xa1\\x66\\x26\\x04\\x1d\\x7f\\x79\\x80\\x41\\xd5\\x2a\\x10\\xd3\\x37\\x1c\\x72\\x0b\\x93\\x97\\x6e\\xbd\\x94\\xd6\\x12\\x79\\x5c\\xbd\\x38\\x57\\x71\\x1c\\x80\\x26\\x62\\xc0\\xfb\\x5b\\x65\\x62\\xdc\\xd7\\xd8\\xf0\\x11\\x93\\x37\\xa7\\x65\\x6d\\x49\\xed\\x71\\x52\\xaa\\x71\\xf1\\xbc\\x96\\xe0\\x78\\xde\\x59\\x5f\\x95\\xc6\\xed\\xd2\\x71\\xf4\\xb7\\x56\\x60\\x73\\x72\\x2c\\xd7\\x5b\\x4e\\x61\\x1e\\x65\\xe3\\x2a\\x21\\xa6\\x61\\xf3\\x71\\xb2\\x30\\x7c\\x87\\x91\\x4b\\x59\\xc7\\xe8\\x67\\xb9\\x67\\x9f\\x12\\xa7\\x62\\x45\\xb2\\xbb\\x92\\xd6\\xbe\\x3d\\x76\\xfb\\x14\\x73\\x9d\\xcf\\xcd\\xe5\\xbf\\xf8\\xaa\\x2a\\x5d\\xea\\x2e\\xaa\\x33\\x14\\xc7\\xdf\\x8d\\x23\\xec\\x44\\x4e\\x2d\\x30\\xa7\\x0f\\xba\\x1b\\x70\\xc7\\x6b\\x34\\xb3\\x23\\xba\\xe4\\x55\\xf5\\xd9\\xfa\\x75\\x3f\\x0d\\xcf\\xc3\\x97\\x40\\xff\\xf4\\xf3\\x19\\x7c\\xcf\\xc6\\xef\\x45\\x7e\\xd6\\x64\\xcd\\xfc\\x36\\xcf\\xd1\\x21\\x62\\xd2\\x6a\\x11\\x28\\xcd\\xa1\\x08\\xd1\\xe1\\x28\\x32\\xad\\xc4\\xab\\xd1\\x86\\xe9\\x07\\x5f\\xbe\\xf3\\x7c\\x78\\xbe\\xc7\\x4b\\x23\\x48\\x50\\xd8\\x7f\\x16\\x72\\x9d\\x5a\\x41\\x66\\x03\\xdb\\x32\\x45\\xec\\x7d\\x84\\x3f\\x18\\xd8\\x60\\xe6\\xcb\\x59\\x57\\x0d\\x8a\\xa9\\xcb\\xef\\xe4\\x48\\x11\\xe0\\x29\\x56\\xd7\\x10\\x17\\xae\\xb1\\x72\\x36\\x64\\x9a\\xba\\x1e\\x0c\\x95\\x67\\xb5\\xac\\x48\\x06\\xc3\\x9d\\x86\\xc5\\x77\\x13\\x89\\x48\\xe8\\x91\\x51\\xab\\x3a\\xbd\\x19\\x9b\\x75\\xaf\\x77\\x1a\\xfd\\x9c\\x35\\xda\\xcd\\x76\\xb7\\x5c\\xd2\\xc8\\xf4\\x62\\x67\\x68\\x38\\x10\\x52\\xd2\\xce\\x98\\x32\\x4f\\x34\\x1b\\x95\\xe3\\x05\\xfa\\x06\\x31\\x6f\\x79\\x77\\xbe\\xa3\\x65\\x25\\xdf\\x75\\x83\\x7d\\xd6\\x47\\x05\\xce\\xc3\\x72\\xfa\\x04\\x3f\\x30\\xf8\\x73\\x3b\\x97\\x52\\x11\\x92\\xea\\x19\\xdb\\xf6\\xbb\\x76\\xbb\\x52\\xcb\\x4a\\xf6\\xac\\x65\\x3d\\xad\\xff\\x04\\xc6\\x45\\x80\\xd9\\xae\\xb1\\xaf\\x39\\xae\\x91\\xaf\\x19\\x78\\xef\\xac\\x04\\x29\\x5e\\x38\\x45\\xbe\\x26\\x44\\x99\\xee\\xd0\\xed\\xf0\\xec\\x84\\xf1\\xd2\\xbc\\x80\\x09\\x79\\x89\\x30\\x22\\xc1\\x98\\xd7\\x54\\x49\\x77\\xf1\\x08\\x60\\x9b\\xb7\\xf8\\xa3\\x50\\x72\\x04\\x30\\x85\\xb3\\x7c\\xf1\\x7b\\x7e\\x04\\x98\\xad\\x2e\\xfb\\x53\\xfe\\x4d\\xfc\\xed\\x67\\x2e\\x86\\xff\\x61\\x99\\xf5\\xd3\\x04\\xcc\\x15\\x36\\xf9\\x28\\x3a\\xfc\\x79\\xfe\\x2f\\xc4\\x15\\xf4\\xb4\\xbd\\xb7\\xc1\\x41\\x3a\\x23\\x26\\x1e\\x9f\\x40\\x32\\xe9\\x7f\\x06\\xe7\\x4f\\x6c\\x3f\\xc1\\x3a\\xfe\\x0a\\x9f\\x20\\xb8\\x8e\\x66\\x3c\\xc6\\x88\\x3f\\x80\\x4c\\x7b\\xa1\\x08\\x69\\xb4\\xf8\\x34\\xbb\\x4f\\x26\\x46\\x3f\\x05\\xce\\xc3\\x52\\x29\\x59\\x95\\xa8\\xdc\\x3b\\x53\\xc2\\x5b\\x90\\xf7\\xe2\\x38\\x76\\x29\\xf8\\x6d\\xb7\\x2d\\x5d\\x5f\\x26\\xf5\\xf2\\xc7\\xb3\\xc2\\x98\\xdf\\x53\\xc4\\xb9\\x29\\xb2\\xef\\xe1\\xd6\\x01\\xa2\\xa5\\x89\\xc5\\x36\\xa2\\xa6\\x89\\x85\\xf1\\xfe\\x40\\x0e\\xba\\xa1\\x07\\xf7\\x7f\\xe6\\x01\\x74\\xc2\\xd7\\x30\\xe8\\x7c\\xbe\\xda\\x87\\xfc\\xcf\\x32\\xb0\\x81\\xe0\\xb1\\xbe\\x91\\x58\\x1e\\x11\\x6e\\xc5\\xec\\xd5\\x62\\x92\\x83\\x3e\\xa2\\xd7\\xf5\\xff\\x74\\x9d\\x65\\xc3\\xef\\xe9\\xc6\\xd4\\xf4\\x70\\x6b\\x6f\\xe7\\x00\\x51\\xfa\\xff\\x9b\\x23\\xc0\\xee\\xec\\xff\\x4c\\x64\\x5b\\x7e\\x8c\\xb1\\xb2\\xd3\\xeb\\x76\\x7b\\x34\\x31\\x3e\\x2f\\x34\\x25\\x36\\x87\\x4e\\x2f\\x3a\\x2b\\x3c\\x0d\\xdf\\x51\\xd8\\xef\\xb9\\xee\\x7f\\x3e\\x11\\x26\\xc0\\xd6\\x50\\x7b\\xb3\\x33\\x1e\\xc9\\x22\\xf2\\x3f\\xdb\\x02\\x5e\\x51\\x5b\\xfc\\x6f\\xe7\\x87\\xd3\\x47\\xa5\\x0a\\xcc\\x22\\xd0\\x85\\x4e\\x93\\x62\\x1b\\xbe\\x86\\x62\\xb5\\x13\\x8e\\x86\\xb0\\x5f\\x3f\\x1f\\x6f\\xff\\xed\\x15\\xea\\xaa\\x84\\xb7\\x1d\\x59\\xc2\\x95\\x6e\\xee\\xb6\\x5a\\xdf\\xa0\\x46\\x9b\\x77\\x5f\\x8d\\x6b\\x58\\x43\\x9d\\xab\\xf3\\xed\\x01\\x76\\x02\\x98\\x04\\x38\\xbe\\x4b\\xc8\\x5a\\x7d\\x9f\\x55\\xaa\\xbe\\xf4\\x01\\xad\\xd8\\xbe\\x0e\\x06\\x78\\x41\\x99\\x5e\\x6d\\xf4\\x3a\\x51\\xd2\\x9b\\x50\\x51\\x99\\x1a\\xee\\xc1\\x0f\\xe6\\x91\\xa0\\x90\\xa0\\x0c\\xc3\\x11\\x13\\x2e\\xe5\\x36\\xb3\\xb7\\x12\\x8f\\x36\\xb0\\x5a\\x05\\x2f\\xa1\\xe9\\x75\\xc7\\x69\\x90\\xd8\\x90\\x50\\x9e\\x31\\x92\\x28\\x43\\x89\\xc0\\xe3\\x73\\xc3\\x70\\x6b\\x6b\\xd4\\x02\\x32\\x66\\x0d\\xb6\\xe1\\xbb\\x61\\x72\\x11\\xb4\\x48\\x09\\xb4\\x08\\x78\\x83\\x29\\xfd\\x14\\x7d\\x09\\x09\\x08\\x48\\x82\\x30\\xbe\\xf7\\x8d\\x6d\\xd5\\xab\\x84\\xd7\\x51\\xb1\\x9a\\x84\\x4a\\x48\\x83\\xa5\\x0e\\x70\\x32\\xe2\\x6d\\xbe\\x6e\\x30\\x27\\xc0\\xc3\\x4b\\xe1\\x45\\x26\\xec\\xfd\\xfe\\xf2\\x3b\\x59\\xe6\\x2b\\x20\\xcb\\xbe\\xff\\x4f\\x2f\\xc5\\xe0\\x44\\x5f\\x51\\x53\\xe8\\x75\\xe0\\x29\\x7c\\xfa\\x46\\xbc\\xbc\\xe8\\x79\\xe5\\x37\\x66\\x40\\x78\\xd5\\xb7\\x08\\x00\\x00\\xf0\\xff\\x09\\x00\\x00\\xff\\xff\\x5d\\x7a\\x3e\\xde\\x44\\xfc\\x00\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.woff\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff2 = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x00\\x18\\x40\\xe7\\xbf\\x77\\x4f\\x46\\x32\\x00\\x01\\x00\\x00\\x00\\x00\\xc9\\x14\\x00\\x10\\x00\\x00\\x00\\x01\\xc0\\x08\\x00\\x00\\xc8\\xb5\\x00\\x02\\x00\\x41\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x40\\x1c\\x84\\x48\\x06\\x60\\x00\\x90\\x6a\\x08\\x81\\x1c\\x09\\x97\\x17\\x11\\x08\\x0a\\x85\\xcd\\x30\\x85\\x88\\x1a\\x01\\x36\\x02\\x24\\x03\\xa0\\x22\\x0b\\x90\\x24\\x00\\x04\\x20\\x05\\x86\\x74\\x07\\xc7\\x51\\x0c\\x81\\x2e\\x5b\\x35\\x94\\x91\\x02\\xc6\\x8d\\xb6\\x73\\x85\\x52\\xf2\\x5e\\xb7\\x21\\x00\\xed\\x33\\xd5\\xdb\\xb5\\xba\\xe9\\x0b\\xcc\\x39\\xf0\\x96\\xcd\\xf4\\x66\\xf5\\x7d\\x31\\x91\\xfc\\x62\\x4b\\xd8\\x36\\xb4\\xe2\\xdd\\x0e\\x60\\xb5\\x57\\x05\\xc8\\xfe\\xff\\xff\\xff\\xff\\x1d\\x49\\x45\\xc6\\x4c\\xca\\x48\\xbb\\xe1\\x10\\x01\\x40\\xd5\\xeb\\xd1\\xfb\\x1f\\xf2\\x10\\x05\\xc9\\x45\\x8e\\x5c\\xa2\\x3b\\x94\\x52\\x3d\\x17\\x95\\xbe\\xeb\\xba\\xa3\\x50\\x72\\x04\\x0e\\xbd\\x90\\x11\\xf0\\x2a\\x38\\xf2\\x10\\xe4\\xe1\\x0d\\x4f\\x35\\xcd\\x98\\xbc\\xcb\\x4d\\xa7\\x53\\x44\\xd5\\x1c\\xa5\\x78\\x29\\x90\\xe7\\xec\\x39\\x0b\\x8e\\x18\\x62\\xd2\\x5c\\x78\\xa4\\x58\\x62\\x42\\xf0\\x0a\\x51\\x39\\xb2\\xcb\\x3a\\xb9\\x07\\x24\\x09\\x12\\x04\\x49\\x82\\x44\\x0e\\x19\\x92\\x25\\xd1\\x16\\x71\\xd4\\x99\\x2e\\x70\\xaa\\x74\\x2d\\x35\\x1b\\x91\\xee\\x66\\xab\\xf1\\x05\\x81\\x4e\\xb8\\xe3\\xab\\x3e\\x16\\x3f\\xd3\\xd3\\xfe\\x36\\x95\\xf0\\x6e\\x8f\\x17\\x9a\\xa9\\xfa\\x16\\x23\\xed\\xe8\\x92\\xf7\\x32\\xb5\\xda\\xd3\\xf8\\x32\\x5e\\x11\\x3b\\xfa\\xb1\\x4e\\xbd\\xa9\\x04\\x53\\xf3\\xdd\\x9c\\x71\\xc6\\xfb\\x87\\x84\\x13\\xc4\\xc1\\x62\\xb1\\x44\\x2b\\x76\\x7c\\xec\\x9c\\xf8\\xde\\xda\\x57\\xfa\\x07\\x3f\\x59\\xbc\\x5b\\x0b\\xbc\\x59\\xad\\xfd\\x75\\xe1\\x40\\x40\\x9c\\x7d\\x74\\xb1\\x20\\xcc\\xc6\\xc5\\x53\\x54\\xdb\\xcd\\x21\\x3b\\xf7\\xe5\\xb0\\x18\\x43\\xb2\\x5b\\xc2\\xed\\xf0\\xa0\\xc0\\x86\\xcf\\xc0\\x57\\x54\\xb3\\xa8\\xb1\\xdb\\xb2\\xd7\\x06\\x37\\x53\\xd3\\xf4\\x78\\x19\\xa5\\xd5\\x7a\\xf6\\x49\\xa2\\x3d\\xef\\x5f\\x7b\\x5b\\x2d\\xff\\x6b\\x6f\\xb4\\x38\\x37\\xff\\x6f\\xc9\\x1a\\xca\\xb8\\xbd\\x40\\xcc\\xd2\\xa1\\x4b\\x8f\\xba\\x66\\xbf\\x10\\xff\\x7e\\xb3\\xcf\\xaa\\x2b\\xb5\\x7a\\x66\\x1e\\x00\\x7b\\x16\\x11\\xbc\\x4c\\x41\\xf6\\x86\\xe9\\x2b\\xef\\x74\\xd8\\x41\\x06\\xb7\\xf6\\xdd\\x8f\\x6c\\xd3\\x43\\xa2\\x01\\xa2\\x8a\\xaa\\xc9\\x81\\x1c\\xda\\x13\\x6a\\x4d\\xfa\\x5f\\xfe\\x00\\x48\\xa8\\xbd\\xf9\\x39\\x14\\x66\\x42\\xee\\x80\\x9f\\xdb\\xdf\\xdb\\xc6\\x28\\x51\\xb0\\x06\\x06\\x4c\\xa4\\x73\\x20\\x1f\\x89\\x14\\x5a\\x04\\x47\\x88\\x11\\x05\\x1f\\x91\\x01\\x23\\x36\\x40\\x47\\xd5\\xa8\\x1c\\x65\\x14\\x28\\x35\\xc0\\xe7\\x00\\x8b\\x56\\x3a\\x87\\x05\\x03\\xb4\\xcd\\x0e\\xa7\\x88\\x35\\x03\\x1b\\x94\\xb0\\x66\\x60\\x05\\x2a\\x82\\xa0\\x60\\xa1\\x0d\\xa8\\x20\\x21\\xa1\\x80\\x82\\x28\\x28\\x66\\xcc\\xc8\\x39\\x97\\xe1\\xca\\xa5\\x0b\\x67\\xcf\\xb9\\xa8\\x5f\\xff\\x2f\\x7e\\xae\\x5d\\x80\\x5b\\xff\\xfe\\x7f\\x14\\xd5\\xa4\\xf5\\x5c\\x2e\\x9f\\x42\\x62\\xb0\\x06\\x83\\x90\\x28\\x8f\\x46\\x08\\x81\\x12\\xb8\\xcf\\xef\\xbc\\x39\\xad\\x97\\x1d\\xc7\\x89\\x1d\\xb0\\x85\\x26\\x92\\xcc\\x01\\x9c\\xa6\\x90\\x6a\\x86\\x77\\xbb\\x9f\\x80\\xaf\\xd7\\xce\\xeb\\x66\\x7a\\x3f\\xfe\\x01\\x7e\\x9b\\x3d\\x2e\\x9c\\x6b\\xa3\\x51\\x42\\xa2\\xea\\x15\\xf0\\x88\\x12\\x01\\xb1\\x40\\x14\\xd1\\xc6\\xcc\\x45\\xea\\x66\\x2c\\x6e\\xa9\\xdb\\x74\\x51\\x6e\\xb7\\x5b\\xdf\\xa2\\x2f\\x3a\\xfe\\xe9\\xdd\\xee\\xfe\\xee\\xda\\xa4\\x6d\\xe0\\x91\\xd0\\xfb\\xb7\\x86\\x88\\x3e\\x70\\x1b\\x92\\x80\\x87\\xe7\\xe7\\xf8\\x9d\\x3b\\x86\\x7a\\x14\\x97\\x90\\xc4\\x9a\\xb8\\x44\\xbc\\x34\\x1a\\x25\\x11\\x0a\\xf1\\x8b\\x3a\\xb6\\x07\\xcf\\xcb\\xc5\\x1e\\xbc\\xbb\\xdd\\x4e\\x03\\x0a\\x38\\x0f\\x9b\\x67\\x2d\\x91\\x34\\xcd\\x2c\\x4c\\x24\\x93\\xac\\xf9\\xfb\\x50\\xe0\\xb6\\xdd\\xe3\\xb1\\xce\\x5b\\xc3\\x3c\\xa4\\x4a\\x05\\xbe\\xfa\\xb5\\x7f\\x7b\\xf7\\x9d\\xee\\xb9\\xef\\x57\\x14\\x83\\x8b\\x11\\x6c\\x51\\x26\\xc2\\x93\\x31\\x24\\x7c\\x84\\x45\\x36\\x02\\x7d\\xca\\x33\\xcc\\xd5\\x9a\\xee\\xda\\xbf\\x14\\xf0\\xbe\\xc8\\x52\\xc4\\x15\\x1d\\xfb\\xc6\\x17\\xc7\\x27\\xfc\\x1c\\x42\\xd4\\x35\\xb6\\x21\\x10\\x00\\xf7\\xaa\\xd6\\x0b\\x90\\x79\\x06\\x10\\x57\\x5f\\xe7\\x10\\x73\\x1f\\x8b\\x0a\\x04\\xb5\\xa2\\x42\\xa6\\x56\\xba\\xbc\\x41\\x22\\xa7\\x21\\xfd\\x3b\\xf2\\x3d\\x57\\x77\\xf7\\x63\\x4a\\x0a\\x76\\xeb\\xa2\\x37\\x3c\\xff\\xe9\\xac\\xfe\\xbe\\x02\\x55\\x49\\x46\\xd9\\xdc\\x1a\\xb7\\x49\\x76\\x5b\\xcd\\xa8\\x01\\xd4\\x12\\xd5\\xd2\\x07\\x3e\\x39\\x06\\xe9\\x66\\xd1\\x87\\x20\\x59\\xab\\x5f\\xf3\\x23\\x97\\x6f\\xdc\\x61\\x79\\x34\\x1a\\xd0\\xc9\\xd3\\x11\\x0e\\x00\\x16\\xc2\\xf8\\x36\\xdc\\x3d\\x13\\x90\\xa7\\x4e\\x77\\xdf\\x32\\xc3\\x8c\\x8e\\x06\\xda\\x05\\xe9\\xee\\x67\\xfb\\x64\\x92\\x0e\\x5e\\xea\\x53\\xb3\\x01\\x62\\x52\\xaa\\x51\\xd6\\xa7\\xbe\\x5f\\x6d\\xb3\\x40\\x64\\x60\\xbb\\xb1\\x77\\x24\\x50\\xd1\\x55\\x6a\\x9d\\x5e\\xc0\\xf9\\x7a\\x20\\x00\\x80\\x20\\xfc\\x3f\\xb3\\xf5\\x5a\\x51\\x26\\x4e\\x73\\xc9\\x8b\\x18\\xd3\\xc5\\x27\\xc6\\x5a\\x54\\x20\\x0a\\xbb\\xfb\\x7f\\x51\\xa7\\xa8\\xe9\\xaa\\xc3\\xc4\\x9d\\xe8\\x90\\x00\\x24\\xb5\\x55\\xe7\\x7d\\xcc\\x8f\\x31\\xf5\\xd7\\x55\\x50\\xef\\x40\\x11\\x5f\\xa8\\x21\\x96\\x92\\x35\\xff\\x58\\xa3\\x00\\x06\\x62\\x00\\x42\\xb4\\x51\\x6a\\x44\\xf6\\xee\\x01\\x82\\x1f\\xc2\\x50\\xca\\xa9\\xd2\\xfd\\xb0\\x6d\\x2e\\xef\\x07\\x2b\\xe2\\x64\\x9b\\xe5\\xef\\x97\\x7c\\x47\\x44\\x33\\xb9\\x2f\\xd9\\xa2\\xc6\\x76\\x5e\\x8f\\x4a\\x0e\\x99\\x1e\\xea\\x8e\\x9d\\xe2\\x2e\\x05\\xc1\\xef\\xc8\\x98\\x67\\x9a\\x61\\xdf\\xa7\\x6a\\x75\\xf7\\x7b\\xef\\x7f\\x80\\x94\\xec\\x4c\\x42\\x89\\x72\\x8a\\x35\\xd2\\x84\\x28\\x59\\x13\\xac\\xa2\\x8c\\x49\\x41\\x0b\\x81\\x53\\x5a\\x18\\x13\\xf2\\xa2\\xa8\\xdb\\x6d\\x2f\\x27\\x1f\\xe7\\x78\\xdc\\xcd\\xcb\\x74\\x9e\\xdf\\x8e\\xbf\\x42\\x4d\\xc7\\xec\\xcb\\x68\\x56\\x52\\x21\\x35\\x66\\xeb\\xcc\\xf7\\xa5\\xa3\\x5d\\x4d\\x5f\\xe6\\x5f\\x87\\x31\\x65\\xca\\xb2\\xf8\\xc0\\xe1\\x50\\x33\\x32\\xf0\\x12\\xd0\\x43\\x6f\\x92\\x51\\x83\\x87\\xe7\\xde\\xbd\\x76\\x6b\\xe3\\x1a\\xd4\\x09\\x24\\xc0\\x52\\x5c\\xe3\\xf8\\xd8\\xba\\x16\\x75\\x22\\x48\\x34\\xb0\\x97\\x2d\\x9a\\x1b\\xa8\\xac\\xe3\\x01\\x3f\\xc1\\x02\\xfa\\xec\\xff\\xef\\x4b\\xd5\\xba\\x76\\x83\\x59\\xf6\\x7a\\xe9\\x90\\x37\\x05\\xcd\\x46\\xcd\\xc6\\x2b\\x29\\x6a\\xe3\\x29\\xdd\\xb6\\xf6\\xb8\\xc7\\xad\\x3b\\xfe\\x7f\\xff\\x37\\xd0\\xfd\\x3b\\xb8\\x03\\x40\\x37\\x00\\x92\\x42\\xa0\\x64\\x00\\x54\\x40\\x20\\x25\\x40\\xc1\\xdd\\x0d\\x48\\x6e\\x04\\x4f\\x81\\x94\\xec\\x12\\x29\\xd7\\x96\\x53\\x4d\\x89\\x9e\\xa9\\x5d\\xca\\x69\\x42\\x12\\x08\\x51\\x96\\x48\\x5b\\x13\\x52\\xba\\xcd\\x71\\xa3\\xd3\\x86\\x10\\x6e\\x97\\xbd\\xed\\xf5\\x3c\\x97\\xc3\\x71\\xaf\\xa6\\x29\\xbd\\xd5\\xef\\x8e\\xf5\\xb1\\x34\\x13\\xe5\\x51\\x5a\\xe5\\x06\\x2c\\x14\\xfe\\x15\\x9f\\xbd\\x7f\\x3a\\x77\\xb9\\x2b\\xa5\\x2b\\x5d\\xee\\x4a\\x69\\xc8\\xd8\\x90\\xf5\\xca\\x32\\x61\\x20\\x7f\\xad\\xbd\\xda\\x4f\\x7b\\x13\\xd5\\xf2\\xf8\\xca\\xb8\\x0a\\x19\\x60\\x59\\xa7\\x0e\\x76\\xdf\\x0b\\xed\\x86\\x2f\\x84\\x97\\x22\\xd8\\xbe\\xdd\\xbb\\x0f\\xbb\\x49\\x4a\\xe4\\xd0\\x57\\x68\\x74\\xc4\\x4e\\x55\\x4b\\x82\\xf9\\xd7\\x99\\xae\\x5f\\x41\\x5d\\x90\\xa6\\x64\\xf3\\xcb\\x44\\xc3\\x92\\x35\\x2f\\xc3\\x9a\\x2d\\xcb\\xf2\\x75\\x28\\x05\\xe5\\x10\\xeb\\x82\\x0e\\xda\\x41\\x39\\x80\\xb8\\x31\\x4e\\xf4\\x75\\xce\\x7b\\xf9\\x0a\\x7e\\xd9\\x01\\xf9\\x92\\xb6\\xff\\x17\\xa5\\x4e\\x52\\xd1\\x57\\x42\\x9c\\xba\\x75\\xec\\x3c\\xfa\\x5c\\xf2\\xa5\\x3c\\xae\\x9d\\xba\\xce\\xfd\\x3f\\x5b\\x6a\\xab\\xd3\\x9f\\x31\\xf0\\x89\\xd6\\xc4\\xe3\\x10\\xbc\\x5e\\xea\\x92\\xb2\\x1b\\x32\\xdd\\xdf\\x9f\\x89\\xf6\\xf6\\x34\\x4f\\x1a\\x9d\\xbe\\xd0\\x40\\x1b\\x84\\x33\\x9f\\x53\\x6d\\x00\\xab\\xb4\\x69\\x5d\\x54\\x41\\x2c\\x93\\xae\\xa1\\x2a\\x86\\xff\\xa7\\xb9\\x4f\\x7d\\x17\\x5b\\x23\\x23\\x64\\x84\\x5b\\xb2\\x26\\x2f\\xfb\\xdf\\xd2\\x9c\\xe2\\xa4\\x44\\x6e\\x61\\x8a\\x9c\\x59\\x46\\x67\\x4b\\x64\\x64\\x11\\x07\\x87\\x34\\x00\\x3f\\x5c\\x24\\x88\\x30\\x20\\x88\\x28\\xdd\\xf3\\x8b\\xa7\\x83\\x81\\x4a\\x84\\x13\\x8f\\x74\\x2f\\x21\\xa1\\x72\\xe5\\xc7\\xa1\\xd9\\x86\\xde\\x96\\x5a\\xdb\\x3b\\x43\\x82\\x22\\x19\\x02\\x63\\xe7\\x66\\x36\\x77\\xb8\\x7e\\xa7\\x4e\\x4a\\xa5\\xb8\\x47\\x0b\\x1b\\x10\\x7f\\x79\\xe6\\x04\\x46\\xef\\x63\\xce\\x9e\\x59\\x63\\xf2\\x2e\\x9a\\x3b\\x4c\\x93\\x14\\xb0\\x50\\xba\\x52\\xdb\\x22\\x2c\\xb3\\xf7\\x7f\\xa7\\xc2\\x94\\xc9\\x98\\xa2\\xb9\\x7d\\x63\\x25\\x05\\x5d\\x94\\x9f\\xb1\\xf9\\xdd\\x73\\x2e\\xfa\\xe7\\x2a\\x9c\\x28\\x08\\x28\\x91\\xc6\\xb5\\xef\\x7c\\xeb\\xbf\\xee\\x91\\xbb\\xf7\\xaa\\xb7\\x85\\x22\\x73\\x09\\xa2\\x30\\xc1\\x18\\x63\\x84\\x10\\x46\\x18\\xe3\\x31\\x21\\x33\\xff\\xbd\\x2c\\x36\\xb5\\x23\\x4d\\x48\\xc7\\xba\\xb1\\xd3\\x96\\x31\\x83\\x09\\x63\\x19\\x5b\\x12\\x12\\xe4\\xbe\\x77\\x0c\\x5d\\x75\\xc4\\x64\\xfd\\x8b\\x7a\\xee\\xb5\\xfa\\x16\\xd2\\x9a\\x86\\x54\\x20\\x94\\x81\\xb8\\xff\\x9d\\x02\\x6f\\xcc\\xf6\\x8a\\xa0\\x55\\xa1\\xc8\\xd7\\x8d\\x18\\xe6\\x22\\x96\\x82\\x1c\\xbe\\xef\\xc6\\x21\\x6e\\x4a\\x16\\xe2\\x05\\xf2\\x00\\x79\\x3f\\x04\\x00\\xf9\\x88\\x35\\x80\\x7c\\x1c\\x04\\x40\\x7c\\xd4\\x58\\x10\\x3f\\x0f\\x0d\\xc8\\xb2\\x86\\x19\\x9a\\x50\\x02\\x39\\xe6\\xb8\\x23\\xae\\x00\\x21\\x03\\x03\\xf5\\xf7\\xc9\\x7e\\xef\\xba\\xe5\\xd4\\x75\\x80\\x60\\x64\\xde\\xa7\\xc0\\xfe\\x9b\\x9f\\x03\\xf8\\x41\\xfa\\x4c\\x33\\xdd\\x0c\\x33\\x65\\x9a\\x65\\xb6\\x39\\xe6\\x9a\\x67\\xbe\\x05\\x16\\x5a\\x64\\xb1\\xdf\\x2d\\xb1\\xd4\\x32\\xcb\\x65\\x59\\x61\\xa5\\x55\\x56\\x2b\\x37\\xa2\\xbf\\xf4\\x27\\xf4\\x2f\\x51\\xe3\\xee\\x37\\x61\\x32\\x5b\\x38\\x5e\\x10\\x25\\x59\\xb1\\xda\\xec\\x0e\\xa7\\xcb\\xed\\xf1\\xfa\\xfc\\x81\\x60\\x28\\x1c\\x89\\x9a\\x48\\xe1\\x6e\\x3a\\x9e\\x03\\x2f\\x78\\xc9\\x2b\\x5e\\xf3\\x96\\x77\\xd4\\x52\\xc7\\x7b\\x3e\\x50\\x4f\\x03\\x8d\\x34\\xc3\\xa6\\x85\\x56\\xda\\xf8\\xa8\\x45\\xe3\\x13\\x1c\\xda\\xe9\\xa0\\x93\\xcf\\x7c\\xe1\\x2b\\xdf\\xf8\\x4e\\x17\\xdd\\xf4\\xd0\\x4b\\x1f\\xfd\\x0c\\xf0\\x83\\x9f\\x3c\\x64\\x89\\x61\\x46\\x18\\x65\\x8c\\x71\\x26\\x98\\x64\\x4a\\x3b\\x1d\\x33\\xcc\\x32\\x37\\x4f\\x12\\x18\\x0a\\x69\\xc7\\x10\\xe0\\x68\\xb9\\xec\\xa1\\x08\\x5a\\x2d\\x42\\x6e\\xa5\\xed\\xa8\\x63\\xe8\\x38\\x11\\x0a\\xf4\\x42\\x79\\x19\\xf1\\xcb\\x08\\x91\\x47\\x57\\xe6\\x1b\\x25\\x1c\\xcc\\xee\\x84\\x92\\xc9\\xec\\x01\\x04\\x98\\x0e\\xbf\\x18\\xe4\\x7d\\x1a\\xc6\\x4a\\xf4\\x82\\xcd\\x5f\\x72\\x05\\x1e\\x4c\\xf3\\xb2\\x46\\x13\\xb8\\x61\\x3f\\x24\\x7d\\x85\\xb3\\x19\\x20\\xee\\xfc\\x63\\x30\\xb5\\x73\\x17\\x12\\xef\\x00\\x68\\x27\\x20\\x9d\\x7f\\xde\\xbc\\x05\\x20\\xf5\\x64\\x9c\\xfc\\xf7\\x96\\x20\\x67\\xcc\\x8a\\x3b\\x01\\xc9\\x38\\x8e\\x00\\x40\\x32\\x4b\\x4f\\x0d\\x01\\xd0\\xe2\\x25\\xbe\\x55\\xa6\\x55\\x4e\\xc4\\x91\\x87\\x0c\\x0e\\x6f\\x66\\xe9\\x53\\x06\\x82\\x87\\x13\\x80\\x66\\xe0\\x07\\x21\\x38\\x40\\x00\\x99\\x94\\x50\\x4a\\x2d\\x4d\\x70\\x18\\x63\\x9e\\x8d\\x69\\x1b\\x72\\x2e\\x4a\\x3a\\xd9\\xd4\\x72\\x31\\x4f\\xa1\\x35\\xd6\\xda\\x2f\\x53\\x96\\x0b\\x6e\\xce\\x6b\\x96\\xee\\xf2\\x88\\x89\\x68\\x8e\\x96\\xe8\\x8f\\xe5\\x84\\xa4\\xfe\\xbf\\x4c\\xa7\\x05\\x69\\xcb\\x11\\x91\\x68\\xe9\\x69\\x62\\x26\\x56\\x7a\\x99\\x5a\\xd2\\xa7\\xd4\\x99\\xbe\\x21\\xbb\\xa5\\x51\\xc5\\x1c\\x07\\x4e\\x72\\x8d\\x7b\\x84\\xf2\\x69\\x7f\\xdf\\x83\\x7b\\xd5\\x08\\x8f\\xb0\\x77\\x6c\\x47\\xc4\\xf7\\x8b\\x87\\x88\\x2f\\xe2\\xbe\\xe0\\x7e\\xe1\\x8f\\x22\\x8d\\x88\\xeb\\x88\\xe2\\x44\\x49\\xa2\\x0c\\x51\\x8d\\xa8\\x49\\x24\\x11\\x0d\\x89\\x66\\xc8\\x52\\x64\\x2d\\x72\\x17\\x31\\x9f\\x58\\x72\\x80\\x47\\x0c\\x05\\x25\\xa6\\x12\\x73\\x88\\x54\\x22\\x97\\x58\\x92\\xb3\\x00\\x0d\\x46\\x9b\\xa2\\x2d\\x72\\x32\\x73\\x70\\x39\\xac\\x1c\\x34\\x27\\x98\\x13\\xa6\\x3c\\xff\\xad\\x3e\\xe4\\xd7\\x66\\xfd\\x67\\xc1\\x5c\\xee\\xbb\\x3a\\x6d\\x0b\\x92\\x30\\x8f\\x2b\\x53\\x47\\x33\\xed\\x8c\\xb3\\xc0\\x26\\x68\\x61\\xdb\\x93\\x49\\x2e\\xf5\\x5c\\x65\\x2b\\x12\\xb4\\x99\\x96\\x1b\\x7f\\x87\\x28\\x4d\\x74\\xa9\\x80\\xe0\\xd1\\x51\\x89\\x91\\xb2\\x53\\x45\\x7a\\x95\\x5a\\x53\\x87\\x70\\x3f\\x28\\x01\\x27\\x83\\x1a\\x16\\x38\\x72\\x8a\\xeb\\xdc\\x27\\x0c\\xce\\xee\\xda\\x43\\x7b\\xcd\\x18\\x1e\\x91\\xed\\x20\\x7e\\x16\\x0f\\x14\\xcf\\x14\\x5f\\xc2\\x7d\\x15\\x9a\\x00\\xe2\\x81\\x48\\x20\\x4a\\x54\\x1a\\xcc\\x1a\\x44\\x56\\x72\\x22\\xdb\\xf3\\xa4\\xe2\\x47\\xee\\xef\\x8a\\xd3\\xfc\\x7d\\x25\\xf3\\xdc\\x5c\\xea\\x37\\xa0\\x2e\\x65\\x5a\\xeb\\xd2\\x9d\\x5a\\x03\\xee\\x04\\xdc\\x06\\xdc\\x04\\xdc\\x00\\x5c\\x07\\x5c\\x02\\x5c\\x3e\\xbb\\x06\\xdb\\xff\\xb3\\xff\\x4d\\xee\\x00\\xd0\\x5f\\x1d\\x44\\xd7\\xff\\x6f\\x77\\xee\\xdd\\x74\\x57\\xbc\\xed\\x9b\\x73\\x67\\xdc\\xc9\\x37\\x15\\x54\\xe1\\x9c\\x05\\xc0\\xa4\\x05\\x53\\xc9\\xcf\\xbf\\xfe\\xff\\x6f\\xe0\\xff\\xef\\x7a\\x61\\x3b\\xaf\\x77\\xbc\\x1a\\xf4\\x23\\xdb\\x15\\x9f\\xf3\\xf5\\xd9\\x3d\\x1e\\xe0\\x17\\xa7\\xbc\\xc6\\x23\\x1f\\x78\\xa6\\x47\\x9c\\x9e\\xb7\\x23\\xc8\\xe0\\x05\\x0a\\xf0\\x93\\xd3\\x99\\xca\\x89\\x4c\\xbc\\xa1\\x6c\\x70\\x0b\\x0e\\xee\\xc5\\xd8\\x9f\\xff\\x01\\xf8\\xf1\\xd7\\xe0\\x0b\\x77\\x1f\\x15\\x92\\x88\\x98\\xe8\\x23\\x67\\x72\\x05\\xe5\\x2c\\xc4\\x3d\\x28\\x51\\x0c\\x09\\xd8\\x20\\x01\\x03\\x05\\xd9\\x24\\xf0\\x29\\x18\\x26\\xa4\\x5c\\x80\\x8e\\x6f\\x23\\xbe\\xf8\\x2f\\x03\\x7c\\x17\\x30\\x63\\x5c\\x0f\\x9d\\x57\\x00\\xbf\\x15\\xaf\\x52\\x42\\xc4\\x8b\\x54\\xf7\\xd5\\x00\\xf8\\xa2\\xc3\\xf7\\x7e\\x3b\\xe0\\x3f\\x81\\x58\\x0f\\xe2\\x08\\x80\\x38\\x05\\x20\\xbe\\x09\\xc4\\x2f\\x85\\xa5\\xfe\\x0b\\xf9\\xf5\\xe2\\x8f\\x58\\xf1\\xc3\\x97\\x93\\x05\\x9f\\xb1\\x94\\x17\\x36\\xe5\\xb4\\x33\\xce\\x3a\\xe7\\x3c\\x8f\\xe2\\x95\\xbf\\xfd\\xe3\\x5f\\xff\\xb9\\xe1\\xa6\\x1e\\xe7\\x71\\x06\\x60\\xe0\\xf7\\x7f\\x8a\\xcc\\x4d\\x33\\x14\\x05\\x8f\\xdb\\xe3\\xf5\\xf9\\x83\\x0b\\xb1\\x0b\\xe3\\x70\\x79\\xfc\\xd0\\xa8\\xf6\\x0a\\x45\\x62\\x49\\xf8\\x46\\x0d\\x2f\\x7c\\xe3\\x8b\\x28\\x32\\x1a\\x7b\\xc9\\x52\\xa4\\x46\\xe7\\x2c\\x5d\\x86\\x4c\\x59\\x68\\xe8\\x18\\x45\\x15\\xed\\xb8\\x1c\\xb9\\x98\\x58\\xf2\\xb0\\x8b\\xe9\\x09\\x5f\\x5c\\x3c\\xf9\\xf8\\x04\\x3d\\x8d\\x51\\x96\\xa1\\xfb\\xff\\x5f\\xb6\\x52\\x95\\xea\\xbd\\x69\\xb2\\x05\\x82\\x8e\\x78\\x09\\x12\\xdd\\x52\\x4a\\xa5\\xbc\\xe2\\x4a\\xcc\\xaf\\xd4\\x82\\x45\\x4b\\x55\\x2a\\xf7\\xcb\\x6f\\x7f\\xaa\\xf9\\xeb\\x5f\\x96\\x0d\\xfa\\x9e\\xa9\\x20\\x74\\x42\\xf8\\x2c\\x21\\x12\\x44\\x35\\x5b\\xad\\xd1\\xd2\\xa5\\xad\\xa3\\x1b\\x85\\x73\\xfd\\x50\\x3c\\x43\\x49\\x83\\x46\\x4d\\x9a\\xb1\\xb5\\xb4\\xb5\\x6a\\xfb\\x35\\xe0\\x74\\xb4\\x77\\x7b\\xfd\\x81\\x0e\\x9d\\x3e\\x8f\\x7e\\x7d\\xf4\\x65\\xe2\\xeb\\x74\\xe6\\xdb\\xdc\\x77\\x5d\\xba\\x17\\x43\\x3d\\x79\\xb1\\x5c\\xad\\x37\\x5b\\xbd\\xbb\\xfd\\x85\\x31\\xe3\\x26\\x4c\\x5e\\x9a\\x32\\x6d\\xe6\\xca\\xac\\x39\\xf3\\xcc\\x50\\xab\\xb6\\xbf\\xa8\\x13\\xee\\xaf\\x9a\\xfb\\x9b\\x16\\x97\\xa0\\xf5\\x3a\\xab\\x3f\\x92\\x53\\x50\\x86\\x69\\x32\\xd2\\xc1\\x72\\x45\\xb4\\xd0\\x6c\\x93\\xfe\\xcb\\x45\\x46\\xd0\\x92\\x4b\\x29\\x95\\x47\\x56\\xae\\xd1\\xfc\\x77\\x89\\x5f\\xd6\\x93\\x8b\\x11\\x33\\x96\\xbf\\xfc\\x4d\\x29\\x8e\\xc7\\x56\\x1c\\x43\\xf7\\xd2\\x58\\x2a\\xf1\\xfc\\x63\\x23\\xb5\\x04\\xbe\\x31\\x91\\x46\\xa2\\xc4\\x49\\x92\\x26\\xe3\\x97\\xed\\xad\\x29\\x64\\xb9\\xd7\\xcf\\x53\\xe9\\x77\\x66\\xd2\\x4b\\xe1\\x7f\\xe6\\x22\\xa5\\x4a\\xed\\x49\\x87\\xd2\\xfa\\xcd\\x1a\\x2f\\x2c\\x79\\x45\\x05\\x5c\\x2f\\x17\\x8f\\x2c\\xfa\\xa0\\x1c\\xe9\\x4f\\x16\\x8e\\xcd\\xd9\\xa3\\x15\\x2a\\x20\\x26\\x21\\x55\\xa4\\x38\\x52\\x31\\x56\\x2c\\x09\\x16\\x92\\x45\\x64\\x2d\\xa8\\xe7\\xcf\\x33\\x9e\\xa0\\xed\\x82\\xe9\\xe9\\x22\\x3a\\x1d\\xff\\x26\\x79\\xae\\x0f\\x30\\xa9\\x47\\x3f\\x34\\xdb\\x40\\x0d\\x96\\xa9\\x54\\x95\\xd7\\x03\\x40\\x54\\x97\\xf2\\xbf\\xa9\\xa7\\x89\\x36\\x96\\xcb\\x76\\xdc\\x1e\\xaf\\x9f\\x0f\\x22\\x4c\\x28\\x73\\x5c\\xcf\\x0f\\xc2\\x28\\x4e\\xd2\\x2c\\x2f\\xb8\\x28\\xab\\xba\\x69\\xbb\\x7e\\xb1\\x5c\\xad\\x37\\xdb\\xdd\\xfe\\x70\\x7c\\x71\\x75\\xba\\xbe\\xb9\\xbd\\x3b\\xdf\\x4b\\x00\\x31\\x9c\\x20\\x29\\x9a\\x61\\x39\\x5e\\x10\\x25\\x59\\x51\\x35\\xdd\\x30\\x2d\\xdb\\x71\\x3d\\x3f\\x08\\xa3\\x18\\xc9\\xad\\xb7\\xbb\\xe8\\x97\\xcf\\x56\\xb3\\x19\\x0e\\x2f\\x2e\\x6e\\xde\\x7c\\xf9\\xf0\\xc7\\x0f\\x02\\x61\\x04\\xe5\\x60\\x79\\x54\\xf4\\x1f\\xc4\\x70\\x8b\\xee\\xbf\\xa1\\xf7\\xd7\\x2e\\xcd\\x12\\x51\\x18\\x32\\xca\\x34\\xba\\xa2\\x20\\x6a\\x51\\x10\\x45\\x17\\x8f\\xd4\\x47\\x04\\xd7\\xa3\\xdb\\x68\\xce\\x28\\x8d\\x66\\xa9\\x86\\x52\\x6f\\x24\\x17\\x55\\x18\\x17\\x8c\\x2a\\x00\\x87\\x24\\xda\\x89\\x0b\\x1a\\xe5\\x2e\\x51\\x47\\x09\\xab\\xfc\\xad\\xb3\\x6e\\xe4\\x56\\x1c\\x67\\xef\\xb3\\x62\\x25\\x0a\\x15\\xd1\\x12\\x31\\x41\\x5c\\x51\\xde\\xb5\\xd2\\x52\\xcb\\x84\\x8f\\xc9\\xdb\\x50\\x46\\x81\\x52\\x15\\xbe\\x77\\xc5\\x69\\x57\\x5d\\x92\\xeb\\xba\\xbf\\x5c\\x2b\\x7d\\xd2\\x80\\xff\\x2b\\x77\\xfe\\xd5\\xc6\\x3c\\x43\\xaa\\x2c\\x57\\x6d\\x91\\x21\\xd3\\x3d\\x3b\\x31\\xa5\\x11\\xc5\\x3f\\xed\\xb8\\xba\\x75\\x1a\\x16\\x90\\x0f\\x02\\xfd\\x15\\xed\\x96\\x83\\xce\\xc6\\xfa\\x7e\\xdb\\xbb\\xf1\\xb2\\x95\\xb9\\xd4\\xe7\\x35\\x5d\\x26\\xcd\\xf4\\x03\\xd7\\xa0\\x9f\\x8d\\x0f\\x54\\xee\\x06\\xff\\x6f\\x6c\\xc2\\xd0\\x37\\x49\\x9e\\xc2\\xab\\x65\\x92\\x7e\\x06\\x01\\x82\\xbb\\xb4\\xc8\\xd2\\xd3\\x7f\\xcc\\x5f\\x3d\\x25\\xba\\xf9\\x94\\x38\\xdf\\x61\\xf3\\x54\\x0e\\xd5\\xbe\\x7e\\x44\\x79\\xfd\\xef\\x05\\xdf\\x40\\x65\\x1b\\x5b\\x3b\\xef\\xe1\\x09\\x68\\xf3\\x09\\x15\\xb8\\xc4\\x80\\x80\\x59\\x1e\\x06\\x14\\xb4\\x15\\xbf\\x5e\\x62\\xca\\xa7\\x69\\xa3\\x26\\x17\\x9b\\xc5\\x9b\\xcf\\xc9\\x9b\\x77\\xed\\xbb\\x43\\x3e\\xbb\\x4c\\x9e\\xf2\\xc9\\x89\\x6b\\xfe\\x1f\\xe7\\xae\\x9f\\xb2\\x7a\\x8e\\x64\\xdd\\xb2\\xb9\\xa5\\x57\\xb6\\x38\\x4e\\x0d\\x8e\\x91\\xb8\\x5f\\x45\\x31\\x50\\xf1\\x4b\\x77\\x48\\x72\\x99\\xca\\x9d\\x34\\x7b\\x2e\\x25\\xc7\\xc0\\x25\\x77\\x79\\x57\\xc9\\x7b\\x6f\\x1c\\x12\\x39\\x1b\\x5c\\xa6\\x83\\x9c\\x03\\x1a\\x22\\x61\\x1b\\xaf\\xcc\\x74\\xb5\\x7c\\x95\\xb0\\x16\\x89\\x2c\\xb2\\x5e\\x99\\x91\\x0c\\x18\\x18\\x4f\\xc5\\xda\\x76\\xfb\\x19\\xf5\\x94\\x54\\x8c\\xbf\\x2b\\x31\\xb9\\xd8\\xa0\\x27\\xfe\\xd9\\xdd\\x54\\xeb\\xe0\\xff\\x30\\xfa\\x71\\x57\\xe8\\x5a\\x5e\\xa7\\xf2\\xca\\xd5\\x37\\x39\\x59\\x7e\\x61\\x97\\x37\\x69\\x26\\xb9\\x1a\\x51\\xaa\\x17\\x0b\\x58\\xe0\\x78\\x65\\xa2\\x25\\x16\\x31\\xba\\xfc\\x58\\x2c\\x9a\\xc0\\x62\\x45\\x7d\\x1e\\x22\\x5f\\x48\\x62\\x27\\x01\\x07\\x31\\x58\\x55\\xe3\\xe6\\x9f\\x91\\x90\\x4a\\xa7\\x28\\x33\\x67\\x9b\\x65\\x9e\\x3c\\x97\\xc7\\xe4\\x66\\x04\\x5e\\xc4\\xcb\\x5e\\xd0\\x4b\\xc4\\x10\\xbc\\x9c\\x10\\xd8\\x4c\\xc2\\x80\\x18\\x2f\\x5a\\xb4\\x65\\x55\\x02\\x48\\xc9\\x60\\x47\\x92\\x36\\xb3\\x1d\\x06\\x85\\x71\\x19\\xda\\xad\\xce\\xf1\\xb7\\x53\\x2b\\xaa\\x93\\x97\\xe8\\x60\\xa7\\x5e\\xae\\x05\\x57\\xc7\\xb5\\xf9\\x1c\\x4d\\xb5\\xe9\\x76\\x93\\xbc\\x33\\x9f\\x2f\\xfb\\x40\\x03\\x5d\\xb5\\x1a\\xfe\\x58\\xe7\\x81\\x26\\x90\\x94\\xa8\\xf3\\x49\\x51\\x74\\xc8\\x59\\xcc\\x34\\xae\\xf8\\x6b\\xbe\\x51\\x1a\\x68\\x41\\xb4\\xc5\\x91\\xd5\\x3f\\x23\\x65\\x34\\xbf\\x60\\x34\\x59\\xd4\\x7e\\x7b\\x48\\xd3\\xa2\\x05\\xda\\x78\\xfa\\x2e\\x75\\xf3\\x3d\\xcf\\x67\\x69\\xfc\\xd8\\x8f\\x40\\x8a\\xa7\\xaf\\xd3\\xd3\\xb7\\x0f\\x74\\xe7\\xe7\\x7d\\xdd\\xed\\x3b\\xe8\\x2c\\xf0\\x7d\\xb8\\xf5\\x6c\\x8e\\xd4\\x48\\x2b\\x32\\x10\\xe5\\xb1\\xd7\\xbf\\xf8\\xc6\\x7a\\xc8\\xba\\x09\\xed\\xaf\\x52\\x17\\x5c\\x16\\xe3\\xb1\\xa9\\x16\\x57\\xb9\\x60\\xe2\\x0d\\xa9\\x67\\xd9\\xbd\\xc2\\xf9\\x4d\\xe5\\x2b\\x31\\x37\\x42\\x5c\\xf1\\x2e\\xae\\x9e\\x78\\xa8\\xa9\\x1e\\xe5\\x5d\\xa6\\x23\\x49\\x36\\x47\\x08\\x27\\x93\\x0c\\xf4\\xf4\\x0d\\xd0\\xc5\\x4e\\x97\\x56\\xf3\\x2e\\xd1\\xb2\\xa8\\x05\\x35\\x8b\\x24\\x86\\xc9\\xa8\\x82\\xd4\\xdf\\xed\\xc5\\x5d\\xb0\\x4a\\xa0\\xd8\\x7e\\xfb\\xdf\\xe9\\x75\\xfc\\x3d\\xdc\\x99\\x1c\\xe8\\xa1\\xb3\\x72\\x25\\xd0\\x47\\x97\\x3d\\x37\\x08\\x28\\x6e\\x18\\xd0\\xdc\\x28\\x60\\xb8\\x71\\xc0\\x72\\x5b\\x81\\x88\\xcb\\x02\\x8e\\x7b\\x16\\xf0\\xdc\\x24\\x10\\xf7\\x28\\xa0\\x01\\x79\\x0b\\xec\\x8e\\xb9\\xdf\\xbe\\x3d\\xee\\xef\\x59\\xbd\\x8d\\x1d\\xb6\\x82\\x3f\\x7e\\xca\\xef\\xf3\\x33\\x9c\\x88\\x73\\xc0\\x20\\x2e\\x00\\x83\\xb8\\x04\\x0c\\x62\\x0e\\x18\\xc4\\x15\\x60\\x10\\xd7\\x80\\x41\\xdc\\x01\\x0c\\xe2\\x06\\x30\\x84\\xf7\\xb1\\xd1\\xcc\\xb8\\x83\\xc2\\x42\\x3b\\x35\\xb3\\x4b\\x36\\x53\\x45\\x4a\\x92\\x7d\\x5b\\xfb\\x1b\\x73\\x08\\x0e\\x82\\x83\\x49\\xe0\\x08\\xd2\\x4a\\x5a\\x48\\x59\\xbd\\x69\\x21\\xac\\xfe\\x97\\xc8\\x8c\\x66\\x02\\xc7\\xaa\\xe9\\x26\\xeb\\x1c\\x4d\\xba\\xd5\\xb5\\x45\\x0a\\x41\\xb8\\x76\\x0d\\x27\\x52\\xa9\\x91\\x95\\x3e\\x85\\xae\\xf1\\xfa\\x14\\xce\\xb0\\x03\\x4d\\x05\\x67\\x47\\xa2\\x62\\xfc\\x2c\\xc5\\xfa\\x2f\\xde\\xfe\\xe6\\x20\\xf7\\xec\\x66\\x3f\\x55\\x7a\\x39\\x70\\x0e\\x8d\\x5a\\xf1\\xfa\\xb7\\x09\\x58\\x6f\\x06\\x2e\\x30\\x9c\\x18\\x03\\x97\\xf9\\x92\\x08\\x37\\x79\\x37\\xb9\\x42\\x57\\x92\\x7a\\x4e\\x83\\x56\\x60\\x56\\x7d\\xcf\\xe3\\xf6\\xcb\\xdc\\xb2\\xab\\x52\\x48\\x7f\\x2f\\x33\\x62\\x71\\xba\\x54\\x65\\xed\\xe8\\xe5\\xc0\\x35\\x60\\x1d\\xe3\\x1f\\x90\\xdd\\x95\\x98\\x57\\x0e\\xda\\xa1\\x49\\x63\\x23\\xe3\\xbb\\xc9\\x32\\x35\\x4c\\x73\\xc2\\x58\\x44\\x88\\x89\\xdf\\xfa\\xfa\\xe1\\xe5\\x55\\xfa\\xa9\\x0e\\xf7\\x53\\xf7\\x6c\\x51\\xf6\\xfd\\x1c\\xa3\\x09\\x4f\\xb5\\x25\\xe2\\x93\\xb4\\x65\\xc1\\xd0\\x8d\\xe6\\x8a\\x90\\x08\\xf4\\x5d\\x14\\xcb\\xd6\\xd0\\xac\\xdb\\xac\\xa4\\x62\\x75\\x67\\xa9\\xc4\\x1f\\x4f\\xf4\\xca\\x6a\\x12\\xa6\\xd8\\x52\\x7f\\xa2\\x11\\x4f\\x2e\\x51\\xbe\\x03\\x0a\\xa7\\x2c\\x4a\\x65\\x8b\\x74\\xb6\\x61\\xd9\\x27\\xb1\\x5e\\x3f\\x3d\\x73\\x20\\x62\\xb8\\x31\\xcc\\x19\\x40\\xdf\\xf2\\xab\\x08\\xe7\\xa0\\x93\\xca\\x81\\xdb\\xe6\\x87\\xb5\\x29\\x6c\\x81\\x12\\x1b\\x6f\\x06\\xee\\x1e\\x25\\xf1\\x16\\x9f\\x87\\x97\\x70\\x45\\x58\\x53\\xec\\x5e\\x5c\\x98\\x79\\x2a\\xcd\\x4a\\x6e\\xd3\\xa0\\xd1\\xbc\\xbb\\x13\\xe6\\x92\\xf8\\x10\\xc4\\xad\\x47\\x7e\\xd5\\xf0\\xb8\\xe3\\x25\\x4a\\xaa\\x69\\xbd\\x54\\x2b\\x88\\xbf\\xa9\\xc0\\x03\\x75\\x95\\x6a\\x91\\x4a\\xdb\\xec\\x59\\x3f\\x41\\x8d\\xb9\\x47\\x98\\x06\\x89\\xbd\\xbb\\xe5\\x9b\\xa4\\x31\\x0f\\xfd\\x50\\xc9\\x95\\xc0\\xd3\\xa3\\x71\\xaf\\x9a\\x94\\x88\\xb5\\x5f\\xbf\\xe1\\xe7\\xe0\\x3a\\x30\\x16\\xbc\\x00\\x37\\xd1\\x2a\\xc5\\x86\\x82\\x38\\xad\\x91\\x3c\\x07\\x86\\x03\\x87\\x11\\x78\\x69\\x5d\\x82\\x64\\xb1\\x61\\x65\\x4d\\xa3\\x06\\x07\\x21\\xb8\\x9e\\xdd\\xaf\\xd0\\x7d\\xc7\\xa3\\x19\\xfe\\x9f\\x58\\x59\\x1e\\x66\\x1d\\xc7\\x16\\x7d\\xb4\\xf0\\xe1\\xd4\\x75\\xc4\\x67\\xfe\\xa4\\xd7\\x82\\x10\\x9a\\x1e\\x78\\x13\\xf1\\x36\\xa6\\x4d\\x08\\xd5\\x97\\x7f\\x2b\\xaf\\x39\\xa6\\x31\\xe1\\x83\\x6f\\x97\\x23\\x03\\xe7\\x93\\xc0\\xbb\\x67\\xf7\\xbc\\x47\\x47\\xbf\\x74\\x2e\\xd2\\xe4\\x07\\x70\\xb5\\x53\\x2f\\xaa\\x2a\\xeb\\x0b\\xd3\\xa0\\x65\\xe3\\xa0\\x73\\x32\\xf0\\x11\\x4c\\xb1\\x9f\\x6a\\x55\\xfa\\x18\\x13\\x82\\x1c\\xe0\\x93\\x40\\xc5\\xa7\\x17\\x44\\xe0\\x33\\x7d\\x27\\x3e\\x4f\\x10\\x3d\\x7f\\x01\\x81\\x8a\\x2f\\x9d\\x00\\x7f\\x05\\x1a\\xc4\\xd7\\x09\\x02\\xf2\\x37\\x10\\xa8\\xf8\\xd6\\x09\\xf0\\x77\\xa0\\x41\\x84\\x04\\x81\\xf9\\x7b\\x08\\x54\\xfc\\xe0\\x04\\xf8\\x47\\xd0\\x20\\x7e\\x4a\\x10\\x03\\xff\\x0c\\x81\\x8a\\xdf\\x38\\x01\\xfe\\x2d\\x68\\x10\\xbf\\x4b\\x10\\x88\\x7f\\x0f\\x81\\x8a\\x3f\\x38\\x01\\xfe\\x23\\x68\\x78\\xfd\\x27\\x70\\x2b\\xe2\\xd6\\x9f\\x2f\\xfa\\x79\\x3c\\xd6\\xb0\\xdc\\x43\\x72\\x83\\x2d\\xc9\\x04\\xb2\\x18\\x7b\\x1d\\x62\\x6b\\x02\\x0d\\x6e\\x3e\\x2a\\x70\\x0b\\xa8\\x8d\\x58\\xdb\\x7c\\x6b\\xdb\\x6a\\x48\\x70\\x7b\\x50\\x70\\x07\\x14\\xc4\\xd9\\x16\\x5a\\xd7\\x57\\x0d\\x77\\x07\\x05\\xf7\\x40\\x61\\xce\\xcb\\xae\\xea\\x70\\xf1\\x5f\\x4e\\x1b\\x40\\x8a\\xac\\xf6\\x4c\\x97\\xa4\\xbe\\x3a\\xe6\\xc9\\x32\\x1c\\x40\\xb0\\xb5\\x61\\x01\\xdf\\x06\\xf2\\xa2\\xd7\\xbf\\x4c\\x6d\\x06\\xf1\\x07\\xe0\\xe0\\x2f\\x02\\x5c\\xdc\\x0e\\xc0\\x9a\\x17\\x19\\x58\\xf4\\x71\\x80\\xbb\\x4a\\x00\\x70\\x7c\\x2f\\x2c\\x99\\x38\\xfa\\x23\\xec\\xbb\\x87\\x6d\\xbe\\x03\\x6a\\x6f\\x6e\\x3e\\x54\\x50\\x25\\x1d\\x4b\\x01\\x83\\x96\\xda\\x01\\x28\\x52\\x6b\\x3f\\xb5\\xdc\\xcc\\x79\\x2e\\x2b\\x62\\x16\\x6a\\xff\\x8f\\x81\\xd4\\xac\\x31\\xa8\\xdf\\xc4\\xc9\\x80\\x7b\\x15\\x1d\\x2f\\x62\\x67\\x14\\xaf\\x75\\x02\\x6d\\xab\\xd2\\x82\\x28\\xda\\x31\\x6b\\x71\\xc7\\x80\\xb3\\x4e\\xcb\\x77\\x81\\xa9\\xe4\\x57\\x83\\x16\\xad\\x62\\x06\\x03\\x24\\x48\\x2f\\xa3\\x01\\x6b\\xbb\\x54\\x63\\x41\\x1b\\x5a\\xa5\\x7d\\x1f\\x70\\xf2\\x7d\\xf9\\x0c\\x62\\x92\\x86\\x7c\\xce\\xda\\xce\\x3d\\x6b\\x59\\x15\\xe6\\xaa\\xd8\\x8e\\xcc\\x5a\\xb3\\x7c\\x13\\xcd\\x8c\\x08\\x1b\\x8b\\xec\\xd2\\x50\\x7c\\xd2\\x97\\xd1\\x5e\\x1b\\x9c\\xa0\\x19\\x35\\x00\\x52\\x1e\\x6c\\x31\\x2c\\x87\\xc7\\x60\\x90\\x5e\\x96\\xdf\\x33\\xb8\\x54\\xef\\x21\\xea\\x76\\x97\\x75\\xe2\\x7a\\x40\\x88\\xd9\\x15\\xba\\x93\\x91\\x7f\\x53\\xdf\\x34\\x1b\\xb3\\x9d\\xb7\\xd2\\x8a\\xa5\\x7c\\x65\\xf8\\xca\\xad\\x4b\\x51\\x95\\x5a\\xad\\x2a\\x02\\xbe\\x6e\\xe1\\xff\\x19\\xe5\\xfc\\xe0\\x7d\\xab\\x50\\xa7\\x18\\x86\\x92\\xf9\\x44\\x8f\\xf5\\x82\\x93\\x62\\xfd\\x68\\x9a\\x5d\\x42\\x91\\xbe\\x42\\xbb\\x9e\\xb4\\xb7\\x5d\\x11\\x46\\xcb\\x4c\\x9e\\xa0\\x0b\\x35\\xff\\x50\\xd3\\x7e\\xd1\\xab\\x85\\xf3\\xc9\\xb6\\x24\\x2a\\x37\\xfc\\x5b\\xf4\\x6d\\x2f\\xb2\\x33\\x86\\xab\\x0b\\x33\\xa4\\xb0\\x55\\x80\\x95\\x11\\x9d\\x7c\\xd6\\x83\\x12\\x2e\\x2b\\x4d\\x5a\\x63\\xff\\xbd\\x85\\x3b\\x98\\x4e\\xe2\\x61\\xe3\\x42\\xc5\\x81\\xa5\\x5a\\x06\\x17\\x44\\xa7\\x1a\\xdd\\xfb\\x14\\xca\\x8e\\xa7\\xd5\\xde\\x6a\\x34\\xf1\\xd3\\xc3\\xc2\\x4f\\x88\\xfe\\x83\\x79\\xf5\\xf4\\x6b\\x5b\\x44\\x39\\x53\\x13\\x3b\\xa6\\x87\\x67\\x34\\xb1\\x1e\\x0a\\xd8\\xf8\\xe6\\x96\\x93\\x48\\x2b\\xbf\\xdf\\x8a\\x2c\\x02\\x35\\x1c\\x85\\xe1\\x3c\\x55\\x04\\x12\\x35\\x8b\\x71\\xf7\\xab\\xd8\\x6e\\x5c\\xe5\\x76\\x09\\x23\\x16\\x29\\x64\\x2e\\x4b\\xb0\\x6f\\x42\\x22\\xb2\\x48\\xb8\\x20\\x89\\xde\\x10\\xcc\\x05\\xdd\\x52\\x80\\xa2\\x6e\\x9f\\x96\\x41\\xa9\\x78\\xca\\xdd\\x34\\xd5\\x27\\xbc\\xdb\\x03\\x52\\x86\\xe3\\xb7\\x08\\x3c\\x9d\\x60\\x48\\x2b\\xb3\\x78\\x75\\xb2\\xeb\\xe9\\x98\\x0f\\x0f\\x32\\x91\\x81\\x5b\\x69\\x15\\x3e\\x54\\x7e\\x7a\\x29\\xfd\\x9b\\x56\\x2c\\x99\\xa6\\x9c\\x80\\xa6\\xdc\\xa3\\x2b\\x75\\x71\\xe6\\xe1\\xbc\\xa9\\xc4\\x0b\\x6b\\x1d\\x99\\xd5\\x41\\x54\\xe4\\xf9\\x69\\x66\\x41\\xcf\\xc4\\xcb\\x65\\xaa\\x5e\\x5f\\xf8\\x96\\xef\\xfc\\xad\\x4a\\xf9\\x76\\x8a\\xf4\\xf8\\x82\\xfb\\x50\\xbe\\x2b\\x83\\x08\\xea\\xba\\xeb\\x31\\x6b\\xcc\\x0b\\xf2\\x20\\x92\\x08\\x78\\x01\\x7e\\x11\\x58\\x2f\\x75\\xbc\\xf9\\xd2\\xeb\\x50\\x14\\x10\\x8b\\xde\\x99\\x20\\x2b\\x04\\xa7\\xab\\x18\\xfb\\xde\\x5a\\x63\\xc6\\xf1\\xa5\\x79\\xe1\\x9a\\x86\\x02\\x35\\xc2\\x4e\\x76\\x3c\\x9b\\xc5\\x38\\x77\\x53\\xc3\\xca\\x52\\x4e\\xdd\\x9b\\x57\\x07\\x86\\xb1\\x77\\xab\\x7c\\x38\\xe5\\xfc\\x81\\x57\\x8a\\x47\\x86\\x3b\\x8c\\xa1\\x14\\xd5\\x14\\x9e\\xef\\xe4\\x7c\\x00\\x68\\x21\\x15\\x0c\\x89\\x4e\\xe5\\x16\\x5a\\xa8\\xde\\x01\\xf3\\x9c\\x7d\\xa1\\xd9\\x58\\xd3\\x14\\x20\\x44\\x72\\x2a\\x94\\xd2\\x24\\xad\\x5e\\xd4\\xc0\\x83\\x4a\\xca\\x29\\xd2\\x55\\x40\\x9c\\x54\\xc0\\x09\\x04\\xc1\\x36\\x2f\\xa6\\xdb\\x1a\\x1f\\x35\\x4a\\x1f\\xbc\\x9a\\x7f\\x49\\x62\\x20\\x85\\xb9\\xf1\\x3e\\x75\\x30\\x0a\\xf4\\xac\\xa6\\x75\\xb2\\x2a\\x31\\x8f\\x36\\xde\\x82\\x0a\\x46\\xa4\\xe8\\xdf\\x79\\x4e\\xf8\\xf4\\x59\\x39\\x3c\\xd6\\x31\\x11\\x3c\\xd4\\x9f\\xdb\\xa7\\xed\\xe5\\xe2\\x44\\x5c\\x6a\\x36\\xb3\\xdb\\x4f\\x36\\x3f\\xe3\\x9c\\xf8\\x74\\xac\\x31\\x73\\x5e\\x7f\\x3e\\x8c\\x6e\\x22\\xbb\\xac\\x2e\\x9b\\x1a\\xd3\\xf7\\x4d\\xeb\\x1c\\xb1\\xa7\\xb1\\xd4\\x04\\x13\\x07\\xaf\\x77\\x1d\\xc2\\x93\\x8e\\x81\\xcb\\x97\\x1b\\xb0\\x89\\xd7\\x30\\xe8\\x0a\\x5d\\x8c\\x81\\x0a\\x71\\x8d\\xd8\\x8a\\xa3\\x50\\xe8\\x77\\x4b\\x8e\\x6c\\x63\\x13\\x28\\x94\\xbd\\x68\\x89\\xac\\x47\\x72\\xe6\\x34\\x7f\\xb8\\x2b\\x47\\x4b\\x23\\x03\\xae\\x55\\xc7\\x7c\\x95\\x62\\x95\\x2a\\x4c\\x2a\\x63\\xb0\\x6a\\x06\\x99\\x41\\x64\\x33\\x1a\\xf7\\x24\\xfe\\xce\\xea\\xfa\\x24\\xe4\\x45\\xc2\\x9b\\x64\\xca\\x96\\x9b\\x87\\x14\\x2d\\xd7\\xd7\\x14\\xc6\\xa8\\xca\\x1a\\x5f\\xa4\\x0c\\x4e\\xbf\\xbb\\x5f\\x4d\\x9e\\xd0\\x7d\\xc0\\x50\\x68\\x02\\x3d\\x5e\\x54\\xba\\x36\\x3d\\xf5\\x22\\xf6\\x78\\x66\\x8f\\xfd\\x95\\x73\\x22\\x7a\\x60\\xc8\\x71\\xc4\\xec\\xd5\\x95\\x5f\\x20\\x31\\x1b\\x17\\x10\\xdc\\xa6\\x4b\\xe1\\x87\\xf0\\xfe\\x10\\x96\\x5f\\xb5\\x5e\\x51\\xef\\xcb\\x0f\\x03\\x88\\x6c\\x50\\xc1\\xbc\\xfe\\x44\\xed\\x7f\\x36\\x8a\\x6f\\xc6\\xac\\x46\\xef\\x11\\x3e\\x36\\xb2\\x1c\\x46\\x83\\x16\\x36\\x47\\x61\\x7f\\xa2\\x5a\\x4d\\x4d\\x92\\x09\\x03\\x4c\\xc1\\xa5\\x89\\xe7\\x8a\\x6c\\x36\\xac\\x77\\x0a\\x1c\\x69\\x8f\\xd7\\x47\\x85\\x93\\x63\\x74\\xf8\\x3a\\x60\\xd4\\xd2\\x9c\\xad\\x75\\x13\\xbc\\x03\\x42\\x6a\\xac\\xcf\\x6c\\x8a\\x79\\x3e\\x91\\xf1\\x7b\\x41\\x06\\xe3\\xff\\xbe\\x54\\xcf\\x75\\xf0\\xfb\\xfc\\x1c\\x36\\xf6\\xf8\\x22\\x31\\x2c\\x68\\x06\\xbf\\x68\\x02\\xb5\\xaf\\xc2\\x71\\x40\\x58\\xe9\\xef\\x2d\\x51\\x90\\x17\\x68\\xf3\\xba\\x12\\xc4\\x8b\\xe4\\x11\\x84\\x51\\x83\\x2b\\xa0\\x40\\xc8\\x80\\xf5\\xbf\\x68\\x4d\\x13\\xae\\xa4\\xfd\\xcb\\x5e\\xaf\\xce\\x6a\\xcd\\x17\\xca\\x42\\x89\\x98\\xc0\\xcd\\x44\\xb1\\x50\\x5d\\xce\\xa2\\x67\\xe7\\xc4\\xa0\\xac\\x7c\\xc5\\x07\\xce\\x36\\xaf\\x05\\x5c\\xae\\xc7\\xb0\\x76\\x89\\x64\\xb6\\x98\\xd9\\x06\\x2d\\xfa\\xb2\\xa8\\x15\\x50\\x8d\\xd7\\x29\\x07\\xbe\\x57\\x04\\xa7\\x0d\\x4b\\xfa\\x55\\x1e\\x37\\x18\\xec\\x0e\\xea\\xd8\\xf0\\xf4\\x4e\\xce\\x4d\\xa5\\x57\\x78\\x97\\xc9\\x7b\\x3d\\x1c\\x4e\\xb3\\x42\\xd3\\x63\\x80\\x27\\x95\\x66\\x02\\x65\\xac\\x87\\x31\\xe0\\xa7\\xfa\\xb5\\x0a\\xcf\\xb0\\x8c\\x13\\x53\\x94\\x68\\x7d\\xf6\\x20\\x9e\\xb2\\x15\\x3f\\x17\\xe9\\xc4\\xd4\\xe4\\x57\\xd8\\x15\\x69\\x03\\x1e\\xe9\\x11\\xd8\\xc9\\xb4\\x6a\\xf8\\xde\\x12\\xcf\\x43\\xb3\\xb8\\x45\\x93\\x39\\x5a\\x8a\\x5a\\xd7\\xc2\\xea\\x7c\\x95\\x87\\x6b\\xe5\\xee\\xd2\\x2d\\xed\\x1b\\xc3\\x0e\\x85\\x54\\x67\\x6b\\x61\\x47\\x5b\\xc7\\xff\\x28\\x78\\x8f\\x0e\\x85\\xf7\\xd6\\x7c\\x4a\\xee\\xee\\xb8\\xef\\xfe\\xb0\\xa6\\xac\\x69\\xe3\\xf1\\xdd\\xb3\\x2b\\x29\\xd1\\x04\\xc2\\x14\\xe6\\xb2\\x8b\\x24\\x37\\x6f\\x9d\\xb8\\x96\\xd9\\x7e\\x9c\\x1b\\xf2\\x1d\\xd3\\x98\\x9a\\x1d\\xe2\\x99\\x33\\x2a\\xb0\\xb2\\xd7\\x18\\xc1\\xd9\\x9e\\xe1\\x70\\x7b\\xe3\\x05\\x95\\x28\\x12\\xab\\xc9\\x19\\x72\\x2c\\xf3\\x70\\xc6\\xa4\\x5f\\x57\\x08\\xaa\\x19\\x01\\xdb\\x23\\x8b\\x98\\x67\\x04\\x54\\xb3\\xe0\\xe8\\x7b\\x91\\xec\\x44\\x85\\x89\\x0c\\x5b\\x50\\x37\\x9b\\x68\\x8a\\x05\\x97\\x0d\\xb0\\x45\\xb9\\x2c\\x5a\\xd2\\xc6\\xd2\\x95\\xc2\\x93\\x6c\\x8f\\x4b\\x5f\\x34\\xaa\\xf9\\xda\\xbe\\x52\\x55\\x4b\\x65\\xa0\\x15\\x47\\x89\\x9c\\xa5\\x62\\x54\\x75\\x77\\xa4\\x4e\\x4f\\xa6\\x60\\xf6\\xda\\xd0\\xed\\x64\\xa4\\x1a\\x90\\xad\\x44\\xe2\\x76\\x23\\xc1\\xe0\\x60\\x0d\\x41\\xcc\\xc9\\x07\\x10\\xcd\\xc8\\x85\\x05\\xcd\\x24\\x82\\xf3\\x69\\x83\\x44\\xb2\\xc2\\xb7\\xab\\x96\\x43\\x35\\xbc\\x53\\x62\\xc2\\xf4\\x97\\xd7\\xc5\\x6a\\x6b\\x61\\x09\\xd8\\x56\\xcf\\x1f\\x30\\x71\\x32\\xc7\\xbb\\xc5\\x8b\\x5b\\x83\\x74\\x89\\x1f\\xa7\\x4d\\x16\\x9c\\x93\\x08\\x81\\x4e\\xdf\\xbc\\x12\\x1e\\xf8\\x82\\x37\\x48\\x44\\xa8\\xce\\x8e\\xda\\x74\\xa3\\x43\\x92\\x2b\\xc8\\x24\\x11\\xee\\xd0\\x11\\xe4\\x71\\xa5\\x85\\x9c\\x1d\\x88\\xf9\\x4c\\x2c\\xe6\\x72\\xb9\\x90\\x2b\\x81\\x19\\x99\\x94\\xa1\\xa4\\x7d\\xae\\x3a\\x24\\x48\\x91\\x09\\x92\\x26\\xb5\\x0e\\xc9\\x54\\x70\\x24\\x58\\xc0\\x55\\xaa\\xa5\\x55\\xea\\x01\\x6b\\xc3\\x54\\xd6\\xaf\\x4f\\x6c\\x7a\\x53\\xe2\\x3f\\xc3\\xed\\xa2\\x2b\\x7f\\x70\\xe9\\x6a\\xe4\\x6c\\x61\\x67\\x2b\\xb5\\xb7\\x5b\\x3c\\x63\\x3f\\xc9\\xad\\xcc\\x44\\x1b\\x86\\x50\\x0a\\x54\\xbe\\x58\\x09\\x1d\\xc8\\x54\\xbb\\xf1\\x98\\xdc\\xa4\\x73\\x6e\\xbb\\x42\\x29\\x6e\\x74\\x07\\x93\\x04\\xc2\\x2d\\x1e\\x2e\\x48\\x5a\\x79\\xf6\\x78\\xad\\x0d\\x1b\\x53\\xd0\\x9f\\x86\\xb1\\x80\\x9e\\xea\\x32\\x1f\\xcf\\xd9\\xec\\x0c\\x96\\x0c\\x61\\xb5\\xdb\\x5e\\xdb\\x53\\xe1\\x83\\x33\\xe9\\xd7\\x3a\\x59\\x2e\\xf9\\xcd\\xe3\\xfd\\xf7\\x5c\\xc1\\x65\\xbe\\x38\\x57\\x4f\\x47\\xd6\\x03\\x4c\\x32\\xe1\\x50\\x9a\\x89\\xd0\\xd3\\x49\\x74\\x32\\x52\\x78\\x9b\\x9c\\xb6\\x4a\\x34\\xa7\\x2c\\xb0\\x83\\xd4\\x11\\xe3\\x0e\\x10\\x52\\xe0\\x58\\xfb\\x32\\x5b\\x24\\xc1\\x42\\x0d\\x70\\x97\\xf5\\x46\\x97\\xeb\\x95\\xe3\\x18\\xde\\xe8\\xbe\\x66\\x9f\\xfd\\x80\\x77\\x16\\x8c\\x0f\\x04\\x05\\xa9\\xd3\\x18\\xe1\\x13\\x09\\xeb\\xf8\\x7e\\xd1\\x5a\\x13\\x07\\xdc\\xe2\\x44\\xcb\\x1e\\x7b\\x38\\xbb\\x4f\\x21\\x2b\\xa7\\xe3\\xf7\\xba\\x5d\\x8d\\x8d\\x73\\x18\\xba\\xa0\\xc9\\x91\\x4d\\x6b\\x17\\x43\\xa7\\xbc\\x90\\x8f\\xd6\\x2b\\x9d\\xa2\\x6a\\x1e\\x3a\\x5e\\x53\\x57\\x2f\\x1a\\x2d\\xf0\\x31\\xdc\\xa9\\x2a\\x2a\\xdd\\x5e\\x87\\x40\\x7c\\x9b\\xdd\\x5d\\x33\\xb9\\x07\\x79\\xb9\\xb3\\xa1\\x58\\xa9\\x4a\\xab\\x95\\x21\\x99\\xb0\\x72\\xa6\\x2e\\x0e\\x44\\x22\\x75\\xe1\\x9d\\xd9\\x92\\xdd\\x1e\\x6b\\x74\\x25\\x22\\x42\\xc0\\x77\\x44\\x97\\x8b\\x1e\\x1c\\x86\\x91\\xb7\\x14\\x63\\x12\\x46\\x3d\\xec\\x7c\\x15\\xac\\xa0\\xfb\\xe5\\x53\\xed\\x5b\\x63\\x99\\xb8\\xce\\xb6\\xe9\\x58\\x3f\\x0c\\x7d\\x4b\\x7e\\x90\\xdc\\xee\\xda\\xa8\\x4a\\xaf\\x9c\\x54\\xfb\\xc0\\x21\\x8d\\x9c\\x69\\x84\\x2f\\x2d\\x96\\xfa\\xec\\xbd\\x80\\x17\\x42\\x79\\xa5\\x41\\xc8\\x0a\\xb7\\xc6\\x6b\\x02\\xa5\\x7c\\x11\\x6a\\x3d\\x77\\x01\\x08\\x07\\x6f\\xc9\\xd7\\x52\\x89\\x5e\\x64\\x0c\\x46\\x15\\xdf\\x70\\x8e\\xbd\\x8c\\x95\\xe8\\xb2\\x1c\\x91\\x4d\\x1a\\x95\\x04\\xea\\xb7\\x44\\x41\\x5b\\x2b\\xae\\x6f\\xce\\x04\\x0e\\x71\\xe9\\xc2\\x52\\xbe\\x66\\x60\\x33\\x4e\\x9f\\x0a\\x0d\\xce\\xdc\\x83\\x39\\x6f\\xcf\\xba\\xfc\\xf7\\x30\\xc7\\x70\\xc0\\xae\\xe2\\x78\\xcf\\x30\\x34\\x03\\x0d\\x1a\\xb4\\x16\\x42\\x9d\\x6d\\x2e\\x94\\x8c\\x3e\\xa4\\x92\\x5b\\x55\\x3a\\x7a\\x9d\\x56\\x6e\\x4a\\x47\\xe1\\x27\\xb9\\x5e\\x9e\\x95\\x28\\x54\\xaf\\x91\\xe4\\x18\\x0f\\xd5\\x49\\x57\\x0f\\x23\\x1c\\x8f\\x98\\xfc\\x1f\\x1d\\x3a\\x50\\x12\\xf9\\xe7\\xe1\\x73\\x39\\x71\\xd1\\x71\\xc1\\x46\\x04\\xe4\\x8c\\x80\\x9d\\x10\\x11\\x98\\xb4\\xa7\\xc6\\xd1\\x4c\\x9a\\x88\\x23\\x8e\\x5a\\xd6\\x04\\xf6\\xbd\\x7b\\x5a\\x7a\\xdf\\xbd\\xce\\x3c\\xc5\\x9e\\x0f\\xca\\xfa\\x95\\x43\\xf9\\x5f\\x9d\\x89\\xd8\\x9c\\x11\\x03\\x93\\x4b\\xd3\\x72\\xe5\\x08\\xe6\\xa9\\xf9\\x62\\xac\\x52\\x38\\x5b\\x9b\\x26\\xd8\\xc7\\x82\\xf2\\x45\\xdf\\x6f\\x7e\\x75\\x6d\\xaf\\xbe\\x66\\xae\\x22\\x68\\xbc\\x5c\\x4c\\xf4\\x24\\x5f\\x32\\xac\\x96\\x89\\xb4\\x72\\x75\\xe6\\x86\\x7c\\xab\\xc0\\xb4\\xa0\\x56\\x3d\\x52\\xad\\x24\\xcd\\xcc\\x0b\\x06\\x36\\xe3\\x9b\\xe0\\x3e\\x68\\x8d\\x55\\xd3\\xe5\\xc2\\x62\\x47\\x87\\x53\\xa7\\x0e\\x08\\x83\\x59\\xce\\x0c\\xa7\\xc3\\x3e\\xac\\xb2\\x58\\x94\\x76\\xf7\\x58\\x21\\xda\\x17\\xd5\\x78\\xf2\\x85\\x42\\xd4\\x98\\x69\\xb9\\x4d\\xd1\\x1d\\x30\\xbc\\xec\\xcb\\x4a\\x12\\x56\\x67\\x28\\x02\\xce\\x68\\xef\\xb3\\xe9\\xfc\\xb0\\x12\\x90\\x0e\\x12\\x0a\\x24\\xc7\\x14\\xab\\x7f\\x06\\xee\\x26\\xe9\\x3e\\xd1\\x9a\\xbf\\x0c\\xa0\\xba\\xdd\\x47\\xb3\\x65\\xba\\xe8\\x21\\x73\\xad\\xc0\\x7a\\xb4\\x94\\xae\\x97\\x6c\\x6e\\xbc\\x6f\\xdf\\xbd\\xeb\\x1a\\xaf\\x93\\xba\\x5a\\x5e\\xb2\\xfd\\x2a\\x12\\x11\\x11\\xd8\\x8a\\x8f\\xf0\\x67\\x0c\\x70\\x6d\\xdb\\x04\\x2c\\x44\\xc4\\xaf\\x3e\\x63\\xb9\\xe6\\x1e\\x3b\\x2f\\xe9\\x3d\\xae\\xce\\x58\\xc0\\xf5\\x50\\xb3\\xdb\\xd8\\x03\\x55\\x49\\xc2\\x56\\x11\\xf5\\xa5\\x18\\x18\\xde\\x36\\x8f\\x84\\xec\\x45\\x1d\\xa7\\x65\\xa5\\x66\\xf6\\xbc\\xc4\\x40\\x4c\\x92\\xfc\\xbc\\xda\\x45\\xbb\\x1d\\x27\\xd3\\x68\\x92\\x84\\xe3\\x89\\x9a\\x8e\\xfd\\xf2\\x91\\xab\\x0a\\xe2\\x81\\xc7\\xc6\\x2b\\x11\\xaa\\x0d\\xf9\\x2a\\x67\\xc5\\xe2\\x65\\x43\\x59\\x10\\xdc\\x2e\\xa5\\xb3\\x87\\x5a\\x6c\\xbf\\xa1\\x9e\\x35\\xc1\\x00\\xda\\x37\\x14\\xbc\\x4c\\x82\\x2f\\x5d\\x71\\xef\\x0d\\x3c\\xd4\\x25\\xe5\\x5c\\x6d\\x74\\x79\\x1d\\x6b\\xa8\\x79\\x1b\\x2a\\x00\\xcd\\x88\\x1d\\x96\\x0e\\xaf\\xac\\x9b\\xa6\\x2f\\x1c\\x9a\\x96\\x32\\x79\\xaf\\x97\\xac\\x27\\xb5\\xc4\\xa1\\x43\\x66\\xe4\\x15\\xe5\\x12\\x64\\x42\\x30\\xdb\\x2f\\x4f\\x53\\x67\\xe1\\xa5\\x55\\xf4\\x29\\xfe\\x9c\\x74\\xdc\\xde\\x98\\xcc\\x2a\\xd3\\x64\\xf6\\xb6\\x1f\\x4d\\x6d\\xae\\x64\\xa8\\x8e\\x6b\\x7b\\xf0\\x56\\x36\\xfb\\x3a\\xda\\x9e\\x97\\xb0\\xf9\\x19\\x85\\xed\\xe2\\xdf\\xfa\\xf5\\xbb\\xc1\\x0d\\xa9\\x19\\x1e\\x5e\\x27\\x2e\\x16\\x55\\x3d\\xcb\\x1e\\xc7\\xf3\\x3f\\x76\\x42\\x6a\\xfc\\xec\\xa7\\xe4\\x04\\x0a\\x99\\x5f\\x0a\\x22\\xc5\\xa6\\x27\\x16\\x77\\x2f\\x46\\xf3\\x49\\x50\\x48\\xeb\\xec\\x29\\x8c\\xae\\xb6\\x69\\x17\\xad\\x3c\\x21\\x03\\xaf\\x07\\xfa\\x17\\xf0\\x81\\xa3\\x89\\x86\\x34\\xf1\\x48\\x72\\xd1\\x2a\\x9f\\x2b\\x81\\x30\\xe8\\xea\\x89\\x21\\xdf\\x65\\x6e\\x45\\x49\\x3e\\xb1\\x67\\xa3\\xbb\\x3a\\x2e\\x42\\xec\\x1f\\xde\\x85\\xb3\\xd2\\x41\\x56\\xe3\\x68\\x43\\x5c\\x9c\\x59\\x75\\x24\\xf9\\x81\\x96\\xa7\\xf7\\x67\\xdc\\x72\\xdf\\xec\\xa3\\x11\\x8b\\x98\\x1a\\x46\\x5f\\xcc\\x56\\x3c\\xb2\\x91\\x46\\xac\\x6f\\x55\\x6b\\xf7\\xf9\\xc8\\x0b\\x13\\x01\\xa5\\x4b\\x7d\\xd1\\x4b\\x01\\x4d\\x62\\xc0\\xb3\\x7e\\x43\\x67\\xea\\xb6\\xe1\\x5e\\x2f\\x5d\\x2d\\xfa\\x4a\\x0d\\xf1\\xe6\\xcf\\x93\\xd1\\x19\\x69\\xb5\\x65\\xa7\\xab\\x2f\\xfe\\xdd\\x0d\\xc9\\x35\\x18\\x43\\xa9\\x25\\x26\\xde\\x50\\x7f\\x4a\\x9b\\xc2\\x17\\x25\\xde\\xf0\\x6a\\xf3\\xc9\\x50\\x80\\xbb\\xe1\\x7b\\x99\\xc3\\x12\\xc4\\x34\\xd4\\x39\\x13\\x35\\x7b\\x14\\xd9\\x7d\\xc4\\x23\\x70\\x84\\x24\\x0e\\x0e\\x65\\x02\\x11\\xb4\\x8a\\x72\\xb4\\x91\\xc4\\x82\\xba\\xbb\\x87\\x55\\xc7\\x80\\xdd\\xe2\\x2f\\xfc\\x12\\xff\\x10\\x36\\xe4\\x03\\xf7\\xd0\\xf0\\x22\\x94\\xeb\\x44\\x87\\x2e\\x19\\xf6\\xcc\\x3e\\x90\\xb7\\xad\\xce\\xf0\\x19\\xb7\\x3c\\x67\\x77\\x40\\xf7\\x13\\x1e\\xc6\\x3e\\x50\\x18\\xa2\\x8d\\x9f\\xf5\\x51\\xfc\\xe9\\x13\\x93\\x3c\\xe8\\xd7\\x17\\xd7\\xeb\\x07\\xd4\\xda\\x9f\\xd8\\xa5\\x2a\\xb9\\x56\\x69\\xad\\x18\\x68\\x05\\xb1\\xeb\\x7c\\x11\\xb2\\x3e\\x0c\\xb9\\x04\\xb2\\x98\\xc7\\x33\\x8d\\xd5\\xb2\\x5b\\x09\\x5b\\x29\\x74\\x06\\x7b\\x96\\x72\\xd7\\x72\\xb6\\x55\\xc9\\xcb\\x3c\\xec\\x88\\x84\\xd8\\x0f\\xe3\\x44\\x4b\\xd7\\x6e\\x5a\\x58\\x83\\xe4\\x65\\x52\\x35\\x69\\x78\\x67\\xbb\\x33\\x6d\\xed\\x12\\x61\\x33\\x1d\\xcf\\xe3\\x6c\\x81\\x70\\x77\\x61\\x70\\x18\\x9d\\xd1\\xf2\\x24\\x61\\x74\\xc2\\x60\\xee\\xed\\xaf\\x55\\x07\\xd5\\x79\\x9f\\x54\\x43\\x2c\\x5a\\x5c\\x7c\\x8f\\x21\\x66\\xc7\\xf5\\x32\\xbd\\x53\\x28\\x0a\\xc9\\x2a\\x8d\\x54\\x43\\x2f\\x85\\xd5\\x2a\\x83\\xa9\\xbc\\x10\\xd6\\x70\\xba\\xbc\\x28\\x1e\\xfe\\xea\\xef\\x7f\\x6c\\x78\\x1f\\x36\\x5c\\xf3\\xfe\\xec\\xab\\x13\\xa6\\x57\\x8d\\x82\\x8c\\x04\\x97\\x03\\xfa\\xc6\\x88\\xf4\\x75\\x81\\xa8\\xce\\xf6\\x28\\x60\\xb5\\xec\\x67\\xba\\x01\\xbe\\xc8\\x4f\\x9a\\x01\\x18\\x7b\\x31\\xe7\\xcb\\xd3\\x53\\x1c\\x90\\x44\\x45\\x01\\xd0\\xd6\\xb3\\x9c\\xdc\\x5e\\xe3\\x6d\\x21\\xc2\\xda\\xe9\\xf7\\x9d\\x76\\x36\\x8e\\xb4\\xd7\\x00\\x73\\xdb\\xf9\\xfb\\xb8\\x8b\\xe7\\xde\\x19\\x48\\x30\\x60\\x93\\xf9\\x95\\x33\\x55\\x9b\\x7e\\x4c\\x2f\\x70\\xb2\\xd2\\x65\\xc9\\x04\\x39\\xf9\\x12\\xff\\xad\\x7c\\x1f\\xde\\x3b\\xa3\\xa5\\x88\\x25\\xcd\\x14\\x8f\\x66\\xfd\\x73\\x4f\\x1b\\x37\\x1f\\xbe\\xa5\\x3a\\xde\\x89\\x7c\\xe2\\xab\\x06\\x98\\x37\\xe5\\x09\\xa7\\xa3\\xb8\\xc7\\x45\\xce\\x4b\\x38\\x20\\x0b\\x9c\\x70\\xa5\\xec\\x82\\x0c\\xd3\\x30\\xa2\\xec\\xd3\\xea\\xee\\x8d\\x79\\x7e\\x82\\x3c\\x9c\\x99\\x2c\\xcc\\xd4\\x70\\x78\\x22\\xf9\\x95\\xad\\x3c\\x99\\x24\\x7d\\xb3\\x2d\\x62\\x5c\\x15\\x9d\\x18\\xf8\\xcd\\x59\\x71\\x86\\x2c\\x53\\xd9\\x4a\\x37\\x13\\x00\\x7c\\xca\\x28\\x36\\x5e\\x6b\\xfa\\xec\\x75\\xa3\\x27\\x7c\\xeb\\x65\\x63\\x72\\x23\\x3c\\xaf\\x5f\\xbf\\xa1\\xa5\\xb7\\x9c\\x04\\x6c\\x3b\\xe7\\x2e\\x93\\x1a\\xd7\\x64\\x7b\\x3c\\xf0\\x0b\\xcd\\x55\\x07\\x1b\\xd6\\xd9\\x14\\xa6\\x23\\x32\\x95\\x5d\\x60\\x53\\x60\\x15\\xc1\\x2a\\x9a\\x2a\\x73\\xef\\x2a\\x18\\xbc\\xed\\x62\\x0b\\x29\\x48\\xdf\\x2c\\xfe\\xf4\\x40\\xdf\\x7d\\xac\\xaf\\x69\\x0e\\x1e\\x53\\x25\\xe9\\x75\\x16\\xf4\\x29\\xf5\\x6b\\xb5\\x54\\x5d\\x72\\x23\\x1e\\xd4\\xd9\\x52\\x74\\xf7\\xe2\\x3d\\x47\\x4b\\x78\\x4e\\xf6\\xb4\\x5a\\x1c\\x65\\x5e\\xf6\\xbe\\xfc\\x6d\\x79\\x60\\xe8\\xe3\\xb0\\x10\\xf1\\x4f\\xe0\\x99\\x59\\x20\\xb0\\x26\\xe1\\x74\\xf3\\x2c\\xb4\\xb0\\x6f\\xd6\\x16\\x0e\\xb8\\xc0\\x1b\\x26\\xa9\\xb5\\x0b\\x54\\xf7\\x9c\\x42\\xe3\\x35\\xb3\\xe4\\x46\\xd8\\x02\\x1e\\x07\\x14\\x6b\\xf2\\x9c\\x81\\x4c\\xdd\\x63\\x6e\\x4b\\x25\\xb0\\xfe\\x77\\xeb\\xbe\\x25\\x94\\x98\\xf5\\x88\\x3a\\xa7\\x11\\xac\\xb4\\x9f\\x2a\\xea\\x6a\\x7c\\xdd\\xc3\\x78\\x9d\\xac\\xc8\\x4f\\xb0\\xbd\\x09\\x7c\\x88\\x5e\\x45\\xed\\x33\\x6d\\x66\\x84\\x2f\\x2e\\x98\\x71\\xc4\\xa5\\x16\\x6c\\xe1\\x31\\x6d\\x40\\xef\\x83\\xb4\\xc7\\x8a\\x71\\x69\\x59\\x02\\x72\\x4e\\x3b\\x04\\x06\\x93\\x11\\x65\\x9a\\x68\\x76\\xca\\x7a\\x5c\\x5a\\x5f\\xb0\\x50\\x7e\\x48\\xbc\\x1e\\xeb\\x9a\\x54\\x53\\x15\\x42\\xd3\\x07\\xdd\\x9f\\x49\\xef\\xfe\\x28\\xd9\\x94\\x19\\x19\\x25\\xf7\\x03\\xbd\\xa1\\xf8\\x3a\\x7d\\xcf\\xb2\\xee\\xa2\\xaa\\x31\\xb3\\x10\\x34\\x7b\\xa7\\x1f\\x68\\xf7\\x9e\\xcd\\x6b\\xd4\\x95\\x0c\\x53\\xae\\x9a\\x67\\x16\\xd8\\xf3\\x87\\x37\\xb4\\x4c\\xad\\xea\\x7f\\x42\\x12\\x9d\\xef\\x4f\\xa1\\x96\\x50\\xec\\xba\\x2a\\x81\\x37\\x66\\x5b\\x11\\x62\\x8d\\x52\\xf7\\x6f\\xdf\\xc4\\x91\\x71\\xd5\\x73\\x95\\x30\\xee\\x69\\x22\\xba\\x2a\\x5d\\x69\\xc0\\xc2\\x56\\x7a\\xa2\\x6c\\xf1\\x37\\xad\\xd6\\xfd\\xfb\\x0c\\x0e\\x5b\\x4e\\x09\\xcd\\x64\\xc4\\x00\\x9f\\x29\\xc9\\xca\\x26\\x21\\x7c\\xb0\\xf9\\x16\\xf0\\x1a\\xd2\\xdd\\xe3\\x20\\x79\\x3f\\x07\\x9c\\x27\\x4d\\x09\\x6d\\x8c\\x3a\\x0c\\xf6\\x2a\\x20\\x3c\\x30\\xc2\\xbf\\x4d\\x18\\xd7\\xf8\\xe3\\x06\\x98\\x83\\x4c\\x81\\x12\\x95\\xa0\\x27\\x7d\\x4c\\x89\\xc0\\x32\\xaa\\x19\\xe7\\x5c\\x46\\xf5\\x23\\x48\\x7a\\x64\\x0a\\x66\\xcd\\x80\\x2e\\xbe\\x60\\x85\\x93\\x81\\x87\\x27\\x6d\\x98\\x95\\x3e\\x10\\xd4\\x63\\x29\\xb4\\x45\\xaf\\x2b\\x3b\\x6a\\x3c\\x89\\x9e\\x6c\\x77\\x04\\x11\\x96\\x5a\\x8c\\x74\\x1d\\x56\\x3b\\x08\\xb4\\x5a\\x2c\\x05\\x57\\xc7\\xdb\\x0e\\xa5\\x25\\x4c\\xb4\\xd7\\x97\\x8a\\x9b\\xcf\\x9c\\x2d\\x35\\xa6\\xe3\\x83\\x8f\\x52\\x8c\\x61\\x67\\x02\\x45\\x0e\\xa9\\xc8\\xa8\\x87\\x6d\\x71\\x2f\\x59\\xd4\\x7e\\xb7\\xb6\\x23\\x68\\x2c\\x42\\x72\\x4b\\x36\\x79\\x18\\x2c\\xfa\\xb6\\x47\\xa3\\xbf\\x34\\x3a\\xd2\\x2b\\xee\\x5a\\x9f\\x14\\x07\\x95\\xe7\\xdc\\x46\\x6a\\x98\\x18\\xa6\\xa0\\x7d\\x85\\x06\\x5e\\xd2\\x9f\\x0e\\x6b\\xb0\\x1a\\x2e\\x9a\\xac\\x7b\\x2a\\x30\\x4e\\x42\\x93\\x8c\\xe5\\x3e\\x63\\xb1\\x76\\x04\\xfd\\xeb\\x42\\xcb\\xdb\\x5d\\xde\\x89\\x3d\\x2c\\xe4\\x57\\xdf\\x59\\x75\\xbd\\xa3\\x8f\\x80\\xc0\\xe8\\x78\\xc1\\xe7\\xb5\\xeb\\xb6\\x60\\xf9\\x1c\\x54\\xea\\x65\\xcc\\x72\\x32\\x34\\xa1\\x84\\x5a\\x1c\\xa1\\xd7\\xa3\\x8b\\xbb\\xb5\\xf2\\x1d\\xcd\\xec\\x6a\\x6e\\x03\\xdf\\xfc\\xb6\\xe2\\x4e\\xb9\\xa4\\x09\\xa5\\x5b\\x91\\xf9\\xd2\\x30\\xa5\\xa7\\x86\\xac\\x5a\\x28\\x31\\xc4\\x8a\\xe2\\x65\\x6b\\x0e\\xf8\\xf5\\xec\\x8e\\xb2\\x56\\xc6\\x81\\x83\\xcd\\x01\\xf2\\x31\\x26\\x6b\\xa0\\xb4\\x05\\x81\\x01\\x26\\x34\\xc5\\xa2\\x2b\\xf7\\xd1\\x44\\x03\\x63\\xd9\\x3c\\x10\\xcb\\xe4\\x44\\xd8\\x59\\xc2\\x73\\x06\\x45\\x33\\x74\\xfb\\xc6\\xd7\\x65\\x0e\\x7b\\x78\\x60\\xcf\\xc0\\x47\\xeb\\x10\\x40\\x35\\x43\\x91\\x66\\x8e\\x3c\\x70\\x45\\xc3\\x59\\x10\\x95\\x3d\\x69\\x1e\\x92\\x8c\\xd7\\xab\\x0d\\x5d\\x0b\\x7c\\xd9\\x00\\x53\\xc4\\x4d\\x4a\\x13\\x1b\\x0e\\x56\\x57\\xa4\\xef\\xa2\\xdb\\xfb\\x01\\x4f\\x1e\\x90\\x26\\x1a\\x9b\\x86\\x0a\\xcd\\x56\\x20\\xdc\\x1a\\x83\\xd6\\x60\\x37\\xa0\\xb6\\x8b\\x0f\\xd8\\xcf\\xea\\xd3\\x3c\\x3a\\xd2\\xc5\\x0b\\x45\\xb8\\x63\\x69\\xf3\\xcd\\x01\\x56\\x34\\x67\\x23\\x39\\x18\\x7c\\xc0\\x45\\x6f\\xcf\\xff\\x4b\\xa2\\x2f\\xf2\\x97\\xbd\\x04\\x29\\xc0\\x82\\x27\\x4c\\xe3\\x56\\xd9\\xd9\\x29\\x5d\\x84\\x14\\xf9\\x98\\x82\\x8f\\xa3\\x10\\xc3\\x42\\xbd\\x48\\x10\\xbb\\x8e\\x85\\x0c\\xe3\\x6a\\x92\\xd5\\x1e\\x42\\xba\\xa6\\xb4\\xf9\\x53\\x6b\\xd5\\x07\\x83\\xd1\\xb7\\x8d\\xcb\\xdb\\xc5\\x98\\xd7\\xb8\\x8b\\xc4\\x44\\xb3\\xce\\x1d\\xe4\\xd4\\xb9\\xed\\x0a\\x93\\x17\\x9a\\x5d\\x3a\\x54\\xda\\xf0\\x60\\x39\\xac\\xc6\\x7d\\x4d\\x6a\\xb2\\xbd\\x29\\x26\\x4d\\xc1\\x0a\\x4f\\x6b\\xc0\\xd8\\x77\\x30\\xa4\\x29\\xec\\x32\\x63\\xb6\\x5c\\x81\\xcb\\x8f\\xcf\\x06\\xe0\\xc8\\x91\\x21\\x03\\x9c\\x2d\\x97\\x4c\\xdc\\x76\\x74\\x93\\xe6\\x69\\xe1\\x42\\x8b\\xeb\\x3f\\xa9\\xdc\\xc8\\xb1\\xb1\\x14\\x96\\xec\\x1a\\x82\\xbe\\xe6\\x8c\\x28\\x9b\\x15\\xc2\\xe1\\xd2\\x6e\\x2d\\x72\\xde\\x87\\x40\\xc2\\x90\\x46\\x49\\xb9\\x0c\\x49\\x1d\\xcc\\x3c\\xbd\\xb8\\xa2\\x4f\\x9e\\x45\\x48\\xf8\\xe8\\x11\\x23\\xc7\\xaf\\x25\\xc9\\x8a\\x00\\x20\\x12\\x3b\\x8e\\x1b\\x54\\xa0\\x87\\x66\\x27\\x54\\xb4\\x61\\xd6\\xfe\\x8b\\x08\\x21\\x18\\xbb\\x7d\\xcc\\xf3\\x98\\x63\\xc8\\x80\\xb5\\x0a\\xb7\\xf7\\x57\\x89\\x18\\x44\\x4f\\xc4\\x09\\x6e\\x0b\\xe8\\x50\\xe9\\x92\\xb6\\x5c\\x66\\xe0\\xce\\xde\\x48\\xb3\\xf7\\x91\\x62\\x9c\\x9a\\x00\\xa6\\x97\\x9d\\xc8\\xd6\\x29\\x37\\x8d\\x6a\\x75\\x14\\xe3\\x9f\\x29\\x42\\x07\\x3d\\x97\\xcd\\xb1\\xe5\\x4a\\xfe\\x6c\\x8f\\xe3\\xa2\\x9d\\xb6\\x31\\x2e\\xa8\\xf1\\xc1\\x24\\x20\\xb1\\x92\\x8d\\x3f\\xa0\\xa7\\x32\\x39\\x6f\\xcc\\x62\\x11\\x61\\x94\\x01\\x47\\xe2\\x82\\x01\\xa7\\x72\\x41\\xd6\\x99\\x8d\\xdf\\xe3\\x18\\xa3\\xd3\\xfa\\x38\\x23\\x5b\\xc5\\x07\\xcd\\xb7\\xa3\\xec\\xd6\\xdb\\x9b\\xbf\\x4d\\x68\\x19\\x14\\xba\\x48\\xfc\\xf2\\x6d\\x9e\\x34\\x29\\x86\\x70\\x32\\xa6\\x4b\\x5a\\x41\\x73\\x43\\xf2\\x10\\x9b\\x85\\xaf\\x96\\xcc\\xfe\\x32\\xbc\\xf9\\xc0\\xf5\\x7c\\x04\\xa0\\x97\\x16\\x7c\\x2e\\x8b\\x41\\x79\\xd8\\xae\\x30\\x1b\\x35\\xab\\xbe\\x64\\x71\\xe4\\x32\\x42\\xc2\\x22\\x4d\\x5e\\x6a\\x20\\x24\\x51\\x9f\\x60\\x0e\\x83\\x95\\x5e\\x6e\\x5d\\x9b\\x54\\x9d\\xaa\\xb6\\xb0\\x39\\xe3\\x6c\\xc0\\x17\\x3c\\x75\\x48\\xf4\\x6c\\x32\\x7e\\x61\\x4b\\x83\\x3d\\x1b\\x19\\x40\\x38\\x11\\x9b\\xcd\\x7a\\xf9\\xe9\\x7f\\x52\\xaa\\x48\\xb8\\x1d\\x84\\xde\\xfb\\x63\\xc0\\xa3\\x1f\\x8a\\x9f\\x4e\\x8d\\x87\\x28\\xbb\\x64\\x12\\xf6\\x70\\x75\\xa3\\x6f\\x38\\x33\\x65\\x9d\\xe5\\xbe\\x6d\\x18\\x92\\xb6\\x32\\xd8\\x2f\\xc4\\xe2\\xd0\\xfe\\x5b\\x87\\x4a\\x6d\\x53\\xf2\\x36\\x8e\\x66\\x92\\x24\\x98\\x98\\x7e\\x7d\\x1d\\x26\\xe4\\x2f\\x09\\x26\\xae\\x9c\\xd7\\xd9\\xc5\\x0d\\x0c\\x17\\x77\\x12\\x95\\x49\\x6e\\x83\\x20\\xd9\\x49\\x56\\x5e\\x16\\xe8\\x6f\\x2a\\xaa\\xc4\\x69\\xcc\\x62\\x24\\x68\\xe9\\xf5\\x4c\\x28\\x26\\xc1\\xc6\\xaf\\xa0\\xbe\\xd5\\xb5\\x7c\\xb2\\x9a\\x8c\\x76\\x13\\x51\\xab\\x38\\xcb\\x9d\\x19\\x13\\x9b\\xe1\\xf5\\x3c\\x9f\\xec\\x20\\x14\\x01\\x0f\\x5c\\xa4\\x3a\\x47\\x88\\x78\\xc2\\xba\\x47\\x4d\\x91\\xb8\\x9b\\x92\\x38\\x79\\xa1\\x28\\xc3\\xe0\\x16\\x5c\\xfe\\x0f\\x21\\x84\\x0a\\x3c\\x1c\\xa8\\x61\\x13\\xe2\\x7f\\x83\\x80\\xaf\\x3a\\x36\\xdf\\x5e\\x22\\x63\\x3a\\x0a\\x74\\xc8\\xb2\\xaa\\x05\\x63\\xf8\\x4d\\x90\\xa5\\xf1\\xe3\\xc1\\x14\\x74\\xa6\\x43\\xd5\\x28\\xe9\\xa8\\x83\\x65\\xa2\\x46\\x0a\\x8a\\x88\\x93\\x93\\x7e\\x6c\\xbb\\x09\\x26\\x3e\\x13\\xef\\x4f\\x3c\\x9b\\xf8\\x7c\\x1d\\x05\\x4d\\x3c\\x9e\\xb8\\xa3\\x0f\\xbe\\x54\\x51\\x3d\\xfb\\xf2\\x45\\x76\\xbd\\xf0\\x95\\x01\\x1b\\xae\\x4e\\x0d\\xf9\\x80\\xbe\\x72\\x05\\xc8\\xbf\\xa8\\xab\\xaf\\xf6\\xf5\\xa8\\xfb\\xe3\\x56\\xb4\\x9f\\xfe\\x68\\x5f\\xb5\\x48\\xcd\\xa3\\xf1\\x06\\xf3\\xef\\x46\\x43\\x4d\\xa3\\xd1\\x76\\x1a\\x88\\x24\\x45\\x81\\x89\\x04\\x0c\\x62\\xe1\\xdf\\x6e\\x78\\xce\\x74\\x0c\\xb6\\x05\\xf2\\x22\\xc9\\xf7\\x3e\\xe6\\x3f\\x89\\x5a\\x22\\x90\\x0c\\xa4\\x83\\x56\\xd1\\xf7\\xce\\x81\\x01\\x9a\\xcc\\x22\\xc3\\x05\\xe1\\x26\\xd6\\xf2\\x20\\xd6\\x01\\x3b\\x56\\xbc\\x24\\x05\\x52\\x80\\xe1\\x51\\x18\\x06\\x59\\x18\\x9d\\x60\\xd8\\x86\\x4e\\xcb\\x48\\xda\\x01\\x13\\x2c\\x6a\\x96\\x70\\x21\\xcd\\x7b\\xc5\\x41\\x56\\x7e\\xaa\\xac\\xf6\\xce\\x1e\\xe5\\x24\\x41\\x05\\xfc\\xcb\\x90\\xc1\\x0f\\xc4\\xde\\x8c\\x25\\xa8\\xd4\\x13\\xa5\\xa5\\x88\\x77\\x27\\x8e\\x36\\x1a\\x8c\\x2b\\x54\\x59\\x3a\\x58\\x2f\\x6a\\xe4\\xc0\\xbb\\xc8\\xa6\\x39\\x37\\xde\\x18\\x51\\xac\\x94\\xba\\x43\\xe9\\xfb\\x79\\xc7\\x93\\x1e\\xa4\\x5d\\xda\\x4f\\x39\\x1b\\x19\\x93\\xfb\\x5e\\x61\\x37\\x39\\xff\\x21\\x04\\x3c\\x60\\xb0\\x84\\x90\\x6b\\x6f\\x99\\x05\\xf6\\xb0\\xf3\\xc6\\x1c\\x82\\x8d\\xc9\\xb2\\x42\\x3c\\xe7\\xdf\\x4e\\x0a\\x06\\xf7\\x21\\xa1\\xf5\\x41\\xb1\\x60\\xa5\\x4a\\x5d\\x43\\xb7\\x98\\xb7\\x56\\x0e\\xdf\\xb2\\xe0\\x5b\\x91\\xb8\\xe6\\x80\\x49\\xe8\\xcf\\xf5\\x44\\x62\\x4d\\x93\\x5b\\xf9\\x7f\\x91\\x06\\xb2\\xc9\\xad\\x8b\\xb7\\xbf\\xad\\x20\\x71\\x93\\x46\\xb9\\x6d\\xbf\\x54\\xa6\\x69\\xbb\\x9b\\xf3\\x43\\xc7\\xa3\\x75\\xb8\\x56\\x9b\\x1e\\xe4\\x6a\\x9f\\xd0\\x50\\x15\\x30\\xb6\\x44\\xd7\\x6d\\x34\\x4f\\x01\\x1d\\xf4\\x02\\x89\\x40\\x75\\x73\\xcf\\x1f\\xfa\\x44\\x0d\\x79\\x54\\xab\\x57\\x40\\x8c\\x4a\\x34\\x8a\\x61\\x48\\xaf\\x95\\x35\\x7c\\x75\\x42\\x8b\\xf1\\xf5\\x4a\\x1e\\x4b\\x43\\x1a\\xa1\\x36\\xb0\\x0d\\x09\\x63\\x48\\x55\\x9f\\xd8\\xa0\\xe8\\xec\\xd8\\x5b\\x11\\x3e\\xe9\\x97\\x47\\x1b\\xbd\\xbf\\x90\\xca\\xae\\xb7\\x88\\x31\\xa5\\x78\\x13\\xb5\\x2e\\x5e\\xbf\\x2e\\xa2\\xc3\\xd8\\xd4\\xde\\x89\\x5f\\x63\\x16\\x5e\\x1b\\xf7\\x38\\xc8\\x3d\\xd3\\x5d\\x7c\\x27\\x62\\x0b\\x9a\\x95\\x3f\\x4e\\xae\\x85\\x33\\x8f\\x27\\x2f\\xfb\\xfa\\x2e\\x95\\x06\\xf2\\xdd\\xab\\x9b\\x5f\\x25\\xf4\\x70\\x12\\x38\\x26\\x08\\xd1\\x1d\\xe9\\xbd\\x9f\\x09\\x76\\xe3\\x98\\xda\\xe2\\xfc\\xa6\\x36\\x44\\x37\\x6c\\x88\\xcb\\xe0\\x9b\\xdf\\xa2\\x8f\\xb8\\x0e\\x05\\xc3\\x6b\\x25\\xbc\\x10\\x01\\x3a\\x4f\\x8c\\x1b\\xf1\\x9f\\x0c\\xb5\\x7e\\xf6\\x61\\x58\\xcc\\x0a\\x42\\xcb\\x62\\x8e\\xcb\\xe3\\x42\\xe0\\x82\\xc1\\xfd\\xdb\\xd5\\xfe\\xe3\\x6b\\xd6\\x94\\x24\\x97\\x96\\xdd\\x34\\xb7\\x85\\xcd\\x9e\\xb5\\x3b\\xef\\xae\\x88\\x96\\xb1\\x17\\x1e\\x46\\xde\\x8d\\x56\\x83\\xb8\\x4b\\x8f\\x31\\x3a\\x5d\\xbc\\x43\\xeb\\x74\\xda\\x04\\xda\\x81\\xff\\xd9\\x13\\x38\\xb7\\xb2\\x5a\\xee\\x64\\x3a\\x79\\x9e\\xb5\\x9a\\x59\\x7a\\x33\\x40\\x31\\x35\\x99\\x6a\\x2f\\x04\\x4f\\xcb\\xc4\\x3c\\x1a\\xcf\\x80\\x9d\\xe5\\x5c\\x6d\\xad\\x9d\\x87\\xc2\\x88\\xf1\\x2d\\xb8\\x0d\\xed\\x15\\x52\\x59\\xd4\\xd2\\x64\\x4d\\x4a\\x96\\x2d\\xa8\\xf7\\xad\\xe0\\xab\\x45\\x09\\x5e\\x67\\xc2\\xc9\\xb9\\x9f\\x68\\x3d\\x12\\xca\\xac\\x6d\\xe4\\x16\\xbb\\xae\\x43\\x3b\\x2c\\xba\\x2e\\xf5\\xbe\\x1c\\x43\\xc6\\x16\\x06\\xb5\\x43\\x9a\\x24\\xcd\\xe7\\x94\\x5d\\x71\\x02\\x7d\\x2c\\x7c\\x0a\\xf2\\x53\\x6b\\xb4\\x73\\xee\\xef\\xd8\\x01\\x25\\xc0\\x92\\x24\\x1f\\x4a\\x63\\x35\\x58\\xb1\\xdf\\x22\\x75\\xfd\\x72\\xed\\xc1\\x71\\x88\\x40\\xa2\\xe2\\x52\\x2d\\x8f\\x40\\xaf\\x48\\xeb\\x83\\xcd\\xd4\\x3a\\x83\\x65\\x6f\\x44\\x47\\x53\\x98\\x5d\\x09\\x5a\\xdb\\x67\\xe2\\xfe\\x95\\x96\\xfb\\x30\\xe5\\x09\\xd2\\x84\\x8d\\x21\\x6e\\x8d\\xf2\\xfb\\x87\\x24\\x64\\xc0\\x80\\x0b\\xbd\\xc0\\x99\\x34\\x7f\\x49\\xe1\\x1b\\x2a\\x73\\xc1\\x5a\\xe8\\xf9\\x9b\\x2d\\x70\\x49\\x7c\\xef\\x1a\\x87\\xc0\\xf7\\xeb\\xbe\\xce\\x21\\x2c\\x6e\\x9b\\xc0\\x52\\x80\\x45\\x56\\x56\\xd4\\x7b\\x01\\x95\\x0e\\xeb\\x57\\xb0\\xb7\\x90\\x82\\x71\\x9a\\x29\\xaf\\x90\\x2d\\xec\\x13\\x40\\x02\\xaa\\x46\\x7e\\x87\\x66\\x00\\x17\\x21\\x72\\x44\\xbe\\x97\\x77\\x47\\x79\\xc6\\xd0\\xc8\\xf6\\x3c\\xf4\\x96\\x64\\x72\\x51\\x20\\xe4\\x44\\x8d\\x54\\x57\\x65\\x8d\\xf0\\x3b\\xc9\\x61\\xc7\\x64\\x56\\x4e\\xe3\\x7c\\x72\\x6b\\x1f\\xaf\\xb4\\xcf\\x0c\\x29\\x23\\x31\\x75\\x76\\x5f\\x51\\x71\\x44\\x02\\x50\\x39\\xe6\\x30\\x2c\\x34\\xa0\\x14\\x62\\xbe\\x80\\x92\\xb3\\x4b\\xf9\\x0d\\x44\\x7a\\x26\\xb1\\xea\\x70\\x76\\x61\\x0d\\x3a\\x82\\x4b\\x9a\\xca\\x7a\\x18\\x60\\xe3\\x7e\\x8c\\x16\\x4c\\x97\\x85\\xe8\\x84\\x03\\xc4\\xe1\\xa2\\xe7\\xe3\\x6c\\xcf\\x18\\xa3\\x5f\\x40\\x66\\x25\\xd6\\x8d\\xc0\\xfc\\x5c\\x54\\xc5\\x0d\\x16\\xdf\\x0e\\x46\\xbb\\xe5\\xdc\\x04\\xaf\\x86\\xd6\\xa2\\x86\\x80\\xaa\\xe2\\xfa\\x89\\x6b\\x7e\\x02\\x89\\xf7\\xc9\\x3a\\x1d\\xd5\\xef\\x6a\\xf1\\xf2\\x84\\x37\\xd8\\xde\\xb1\\x9a\\x99\\x1a\\xf7\\x48\\xdd\\x62\\x84\\x12\\x41\\xc4\\x59\\xa3\\x91\\x11\\x09\\x2b\\x76\\x9b\\x5f\\xe5\\xdc\\x6f\\x24\\x9c\\xca\\xe3\\x57\\xec\\x1c\\x61\\xf5\\xf7\\x77\\xd7\\x0b\\x39\\x68\\xe6\\xbd\\xbd\\x55\\x76\\x39\\xed\\x61\\x73\\xa8\\x9c\\x99\\xec\\x86\\x6a\\x6b\\x28\\x43\\xd1\\x8f\\x07\\x3d\\x33\\x8f\\xc5\\x6a\\xee\\xba\\xa5\\x50\\x85\\x59\\x18\\x78\\x77\\x3c\\x5e\\x7b\\xf7\\xf5\\x8c\\x85\\xbb\\x4b\\xa0\\xba\\xfa\\x45\\xa0\\x9a\\xd2\\x11\\x70\\x19\\x09\\x1e\\x44\\xa1\\x42\\x26\\x94\\x24\\x3c\\x98\\xc1\\x3c\\x68\\xfd\\xfe\\xb7\\xcd\\xfd\\xdf\\xfd\\xa1\\x67\\x07\\xde\\x50\\x17\\x7a\\x2a\\x60\\xf4\\x8f\\x0c\\xab\\x3d\\x14\\x95\\xd3\\x7b\\xaa\\xe0\\x90\\xcf\\x9a\\xa1\\xf3\\x1e\\x53\\x0e\\x90\\x17\\x43\\x52\\xf5\\xe1\\x4c\\x9e\\x63\\xca\\x02\\x42\\xbe\\x65\\xd5\\x19\\x38\\xac\\x38\\x32\\x64\\x01\\xc7\\xcf\\x62\\xf6\\x3e\\x06\\x8c\\x3e\\x66\\xf9\\xb8\\xca\\x03\\x5e\\x0c\\x78\\xeb\\x22\\xda\\xf0\\x35\\x7f\\xfa\\xbd\\x7b\\x0f\\xab\\x34\\xe4\\x3e\\xe8\\x03\\x47\\x03\\xf1\\xa6\\x3f\\x45\\x7f\\x41\\x4a\\x57\\xd9\\x99\\x22\\x6a\\x74\\xd1\\x07\\xa6\\x81\\x43\\xe3\\x19\\x1d\\xef\\xc8\\x05\\xd6\\x38\\x66\\xdd\\xee\\xd5\\x07\\x7b\\xad\\xf5\\xc5\\x86\\xc0\\xb0\\x8d\\x0c\\x32\\x64\\xb0\\x27\\x17\\x74\\xb5\\x0e\\x08\\xe6\\xfd\\xa9\\x43\\x57\\x0a\\x41\\x2b\\x48\\x30\\xe2\\xab\\x70\\x0b\\x9e\\xbb\\x48\\x32\\x65\\x4a\\x19\\x0a\\xa4\\x1d\\x5c\\x8c\\x55\\x59\\x07\\xe3\\x1c\\x3d\\xc2\\x81\\x7e\\xc7\\x40\\x21\\x1a\\xce\\x7d\\xa5\\x78\\xfc\\x98\\x9d\\x14\\xfb\\xc7\\x18\\xe1\\xe0\\x07\\xd0\\x6f\\xba\\xba\\x9e\\x1c\\xd6\\xdc\\xce\\x71\\xf8\\x57\\xd0\\xe0\\x94\\x6c\\x53\\xf8\\x28\\x48\\xa0\\xa8\\x50\\xb2\\x94\\x28\\xfa\\x1c\\x81\\x86\\xea\\x25\\xd4\\x6b\\x40\\x72\\x0d\\xb3\\x6d\\xa4\\x57\\x7f\\xe7\\x26\\x6d\\x51\\xd3\\xdd\\x1a\\x8b\\x61\\xa5\\x2a\\x56\\xc1\\x19\\x70\\xc6\\x14\\x03\\x3e\\x5e\\x06\\x78\\xa2\\x1a\\xc9\\x86\\xea\\x35\\x16\\x49\\xd4\\xb5\\x3b\\x97\\xec\\x54\\xa2\\x99\\x0e\\x4c\\x16\\xce\\x71\\x05\\x61\\xbb\\x78\\x1a\\x42\\xb1\\xe5\\x2a\\xc8\\x03\\x98\\xee\\xf6\\x1d\\x54\\xf8\\xb8\\xec\\x49\\x0f\\xdc\\x27\\xe6\\xc8\\x62\\xf5\\x2c\\x75\\x1f\\x42\\x9a\\xe1\\xa8\\x57\\xc7\\x0d\\x86\\x60\\x6f\\x60\\x38\\x54\\xfa\\x4d\\x82\\x98\\x68\\xcb\\x24\\x4d\\xe0\\x04\\xe6\\x72\\x93\\xef\\x99\\xe3\\x33\\x9a\\x81\\xda\\x7d\\xc2\\x5b\\x26\\xc6\\xcc\\x22\\xeb\\x66\\x31\\x39\\xe4\\x9c\\xdf\\x60\\xac\\xf5\\xcc\\xa0\\x88\\x66\\x02\\xc2\\xe3\\x0e\\x72\\xaa\\x1f\\x77\\xd1\\xb9\\x32\\x29\\xc9\\xb4\\x90\\x11\\xa8\\x10\\x3f\\xe5\\x3a\\x3d\\x5c\\xc6\\xaf\\x23\\xad\\x26\\x28\\xf7\\x7b\\x67\\x06\\x98\\xf3\\x00\\x6f\\xc2\\x88\\x29\\x90\\xe0\\x2e\\x8f\\xd7\\x7a\\x67\\xa0\\x28\\x44\\xab\\xc4\\x38\\xaf\\x5c\\xfd\\xbd\\x3a\\xb8\\x96\\x01\\xd7\\x24\\x2f\\x60\\xa6\\x6f\\xa5\\x2d\\xd0\\x3c\\xfd\\x61\\xcb\\xfd\\x60\\xd1\\xb6\\xce\\x4b\\x4b\\x44\\x9d\\xe2\\xcb\\x8f\\x96\\xf5\\xba\\x9f\\x2a\\xdd\\xf4\\x4d\\xe3\\x94\\xbc\\x9d\\xb4\\x41\\x32\\xb3\\x7e\\x77\\x4d\\x2f\\xf1\\xe8\\x69\\xea\\xf5\\x02\\x26\\x94\\x75\\x40\\x48\\x57\\x2d\\xce\\xfa\\x0c\\x72\\x02\\xeb\\x95\\xbe\\x50\\x89\\x09\\xfb\\x85\\xb2\\x5d\\xae\\xa2\\x57\\xec\\x13\\x0d\\xe7\\x40\\x8f\\xe1\\x64\\xfb\\x9f\\xdb\\x3c\\x72\\xe8\\xf9\\x93\\x7f\\xeb\\x80\\x88\\x2a\\x56\\xae\\xd9\\xb5\\xf4\\x17\\x80\\x92\\x58\\x22\\x07\\x12\\x61\\xf1\\x61\\xbf\\xa2\\x95\\x2f\\x5a\\x07\\xf4\\xf1\\x14\\x02\\x8f\\x15\\xf2\\x14\\xb8\\x41\\xed\\x0a\\xea\\x23\\x4b\\xe7\\xe0\\xaa\\x04\\xc6\\x68\\x75\\xdc\\xb4\\xd7\\x37\\x2a\\x38\\x34\\x9a\\x13\\x68\\x99\\xca\\x04\\xc7\\xc8\\xbf\\x9a\\xc4\\xb2\\xb6\\xb5\\x7b\\xc6\\x32\\xd8\\x67\\x2a\\xf1\\xa6\\x2d\\x2b\\x80\\xf3\\x32\\xeb\\xca\\xf2\\xea\\x4a\\x8c\\xd3\\x28\\x7f\\xe0\\x29\\xc5\\x9a\\x25\\xea\\x99\\x9a\\x00\\x56\\x9e\\xd4\\x0c\\x16\\x82\\x07\\x54\\x84\\x26\\xef\\xd5\\x6f\\xe7\\xd2\\xfb\\x4d\\x23\\xdf\\x37\\x16\\x83\\x92\\x4a\\x0f\\x85\\x38\\x31\\x8f\\xe4\\x32\\x3c\\xf6\\x6a\\xcc\\x01\\x66\\xc8\\xd3\\x08\\xe2\\x28\\x0a\\x3c\\xaa\\x4c\\x11\\xd7\\xba\\x62\\xfb\\x1b\\x00\\x25\\x96\\xa0\\x02\\x55\\x28\\x4c\\x34\\x9f\\xd2\\x24\\xaf\\x69\\xcb\\x63\\xe9\\x03\\x75\\x5c\\x78\\xb4\\x43\\x69\\xbc\\x1b\\x15\\x23\\x6b\\x82\\xbe\\xc5\\xf1\\xe5\\xce\\xf0\\x41\\x56\\xd6\\xbb\\x49\\x95\\x98\\x12\\x59\\x7d\\xd1\\xa4\\xe5\\x68\\x04\\x3f\\xdf\\x14\\x2e\\x80\\x8d\\xe7\\x56\\x94\\xa4\\x6a\\xa3\\xbb\\xd6\\xa6\\x2e\\x92\\x11\\xf8\\xf8\\xe8\\xd9\\x4b\\x32\\x66\\xec\\x33\\x4c\\x02\\xa8\\xd9\\x5b\\xbc\\x54\\x82\\x3c\\x9f\\x88\\x90\\x86\\x96\\x80\\x06\\x7e\\x73\\x43\\xf7\\xdb\\x58\\x38\\xa1\\xdc\\x19\\x29\\x1c\\xf7\\x53\\xae\\xca\\xc6\\xe9\\xb3\\x68\\x77\\xba\\x0d\\xa4\\xb0\\x37\\x39\\xa5\\xf3\\x61\\xd0\\x0f\\xd0\\x8d\\xd6\\x24\\xb5\\x31\\x28\\xd0\\x5c\\xb9\\x0d\\xc2\\x65\\xcf\\xf0\\x48\\x5f\\x46\\x40\\x05\\x03\\xeb\\xc5\\x7e\\x32\\x8e\\x45\\xa9\\xfe\\x6d\\xd4\\x35\\xbd\\x38\\xd6\\x8f\\xb1\\x24\\x8c\\x71\\xb6\\xff\\x18\\x7b\\x2e\\xfb\\x7f\\xb5\\x34\\xbc\\x73\\x56\\xfb\\xb6\\x18\\xd3\\xa9\\x67\\x40\\xad\\xeb\\x27\\x9d\\x41\\x74\\xd5\\xdc\\x4c\\x57\\x3f\\x40\\x3a\\x9d\\xb8\\xe1\\x04\\x87\\x04\\x5d\\x32\\x72\\x6e\\x04\\x96\\xdc\\x15\\xd8\\x12\\x10\\xc8\\x45\\x4d\\x88\\xb5\\x3b\\xe7\\xd8\\x00\\xa1\\x16\\x10\\x3b\\xc8\\x8c\\xe4\\x70\\x85\\x57\\x7d\\xac\\xa2\\x2b\\x91\\xcd\\x07\\xbb\\xa1\\x8a\\xaa\\x50\\xf9\\x7b\\x13\\x5a\\x6c\\x19\\xb9\\x04\\x2a\\x50\\x67\\x05\\xf1\\xed\\xad\\xb5\\xc1\\xf7\\x0e\\xab\\xe5\\xa5\\x0b\\x77\\x79\\xc4\\xf4\\xae\\xd6\\x30\\xb0\\x9e\\x1d\\x22\\xea\\x5a\\x4a\\x0d\\x64\\xfd\\x0c\\x98\\x88\\x32\\xca\\x51\\x53\\x82\\xab\\x61\\x0d\\x73\\xfe\\x0d\\xa9\\xc2\\xb2\\xc5\\xe8\\xbe\\x21\\x6d\\x0a\\x78\\x0c\\xe6\\x9c\\x22\\xe7\\xee\\x33\\x0c\\x04\\x4e\\xde\\x88\\xee\\x3f\\x65\\x3a\\x9e\\x12\\x89\\xa4\\xb7\\x68\\xa4\\x39\\x6d\\x9c\\x6f\\x11\\x6d\\xe0\\x68\\xcf\\xd1\\xcb\\x7a\\x60\\x58\\xd9\\xa0\\x9f\\x4e\\xf8\\xfa\\x89\\x29\\xac\\x18\\x18\\x9f\\xe8\\x68\\x4e\\x4b\\x3a\\x13\\x41\\xf1\\x22\\x8e\\xea\\x8c\\x6a\\xdd\\x93\\x20\\x14\\x06\\x40\\xf2\\xa7\\x4c\\xc1\\x84\\xcc\\x90\\x2d\\xf8\\xeb\\xb3\\x62\\x25\\xbb\\x74\\xf3\\x2b\\x5b\\x90\\xda\\x49\\x34\\x13\\xeb\\x43\\x30\\x43\\x52\\x47\\x6a\\x4a\\x6d\\x75\\xd1\\x59\\x1f\\x04\\x5e\\x3b\\xbd\\xb1\\xed\\xea\\x0e\\xff\\xdc\\xb2\\x83\\x5a\\x18\\xb5\\x16\\xf1\\x33\\xb1\\x7a\\x02\\x1b\\x7d\\xd6\\x77\\xcd\\x8b\\xa0\\xc1\\xf6\\xe6\\x14\\xf8\\x21\\xe6\\x29\\x7e\\x6f\\xa1\\x84\\xad\\x1b\\x31\\xd6\\x01\\x2d\\x6c\\xcb\\x6b\\x72\\x49\\xb3\\x8c\\x0f\\xb9\\x2d\\x5b\\x8d\\xd4\\xef\\x13\\x66\\xac\\xbe\\x72\\x20\\x16\\xed\\x71\\x39\\x6b\\x60\\xb1\\x1d\\xec\\xca\\x7d\\x6a\\xa9\\x74\\xd2\\xac\\x79\\xce\\x50\\xe0\\xad\\xe1\\x11\\x82\\x44\\x36\\xb8\\x46\\xb8\\xc5\\xca\\x66\\x64\\x91\\x60\\x2a\\x6f\\xc5\\x25\\xf4\\xc6\\xb1\\xe2\\x7b\\x49\\x60\\x5a\\x55\\x1c\\x53\\x43\\xdb\\x04\\xe3\\x84\\xaf\\xe3\\x21\\x0f\\x7a\\x21\\xae\\x5b\\x0b\\x0f\\xb9\\x59\\x1d\\xcd\\x9f\\x0c\\x86\\xe7\\x85\\x10\\x09\\x06\\xc6\\xb0\\x08\\xac\\x6e\\xe8\\x84\\x62\\x41\\x7d\\x75\\x60\\xb4\\x2e\\x3a\\x63\\xcf\\xe5\\x41\\x80\\x08\\xa6\\x49\\x10\\x53\\xbd\\x39\\x5c\\x21\\xc1\\xfa\\x2c\\xc7\\xe5\\x18\\xc1\\xc4\\xe6\\x44\\x4c\\x8e\\xf6\\x54\\xee\\x27\\x80\\x52\\x3e\\x33\\xc3\\x55\\x2b\\xa4\\x46\\x88\\xd2\\xff\\x1f\\xf6\\xdf\\x91\\xff\\xe6\\xc7\\xa3\\x39\\x78\\x27\\x1a\\x7f\\xc3\\x08\\xdc\\x31\\xf2\\x3c\\x61\\x64\\x26\\x71\\xe4\\xdb\\xcd\\x7a\\xd8\\xb0\\xdf\\xb6\\x42\\x93\\x0e\\x4e\\x1b\\xf8\\x02\\x1c\\x55\\xbd\\xb2\\xf5\\x03\\x56\\xf1\\xe1\\xe6\\x9f\\x5f\\x12\\xe5\\x4c\\x79\\xf0\\x17\\x61\\x8a\\x2f\\x4a\\x83\\x7f\\xae\\x62\\x66\\xea\\xaf\\x06\\xfc\\x91\\xd4\\x52\\xfc\\x7e\\x6a\\x71\\xa5\\x6a\\x33\\x33\\x43\\xb2\\x99\\x2b\\xd8\\xaa\\xcb\\x5a\\xfa\\xe7\\xb6\\x47\\x59\\x46\\x6d\\x94\\xbc\\x56\\xe1\\x14\\x5f\\x13\\x95\\x5d\\x2e\\x33\\x38\\x29\\x62\\xb9\\x33\\x5b\\x9c\\x61\\xe6\\xb0\\xd2\\xe1\\x2b\\xa5\\xfe\\x68\\x7a\\x88\\xb8\\x8f\\x2a\\xad\\x54\\x6c\\xca\\xa5\\xcb\\x36\\x0b\\xf3\\xc7\\xd5\\xd9\\x71\\xb3\\x5b\\x67\\x52\\xf4\\x87\\xc2\\x14\\xb5\\xfa\\x99\\x56\\x0d\\xd5\\x2b\\x6c\\x54\\xfb\\xd3\\xb9\\x6d\\xbd\\xf5\\xfa\\x05\\xa5\\x07\\x95\\xe8\\xb0\\xde\\x12\\x61\\xeb\\xf5\\x95\\x6c\\xc4\\x92\\x13\\x56\\xda\\x14\\x39\\xe5\\x88\\x35\\xc2\\x42\\xf4\\x95\\x2c\\xbd\\x95\\x54\\xae\\x38\\x06\\x1b\\xdb\\xb5\\x0e\\xe1\\xb8\\xb3\\x69\\x0c\\x96\\x84\\x9d\\x1d\\xfc\\x04\\x83\\x8a\\xfd\\x9a\\x9c\\x30\\x53\\x82\\x26\\x4e\\x2f\\x23\\x56\\x7a\\x15\\x76\\x45\\x45\\xc4\\x52\\x91\\x62\\xb0\\xa4\\x42\\xdd\\x7b\\x1c\\x91\\x3b\\xca\\x7a\\xb1\\xd4\\x4c\\xde\\x11\\xa1\\xde\\x66\\xdf\\xd8\\x59\\x13\\x45\\x4a\\x5e\\x14\\xf1\\x4a\\xeb\\x6b\\x81\\x29\\xf5\\x48\\xa0\\xd4\\x73\\x45\\xcb\\x30\\x1c\\xf4\\xd2\\xc4\\x1b\\xb8\\xcc\\x2d\\xfc\\x2c\\x73\\x87\\x38\\x2f\\x9f\\xd3\\x0a\\x8a\\xf1\\xf9\\x32\\x9b\\x05\\xb9\\x99\\x17\\xbb\\x2a\\xef\\x97\\x73\\x57\\xea\\xad\\x16\\xca\\x52\\x7c\\xf6\\xe5\\x39\\x1b\\x7d\\xa1\\x59\\x7a\\x2c\\x2c\\x3f\\x3c\\xa9\\x94\\x55\\xaa\\xb6\\x9d\\x2e\\x8d\\x68\\xa4\\xe4\\xe0\\x7b\\xfe\\x6e\\xf0\\x8d\\xde\\xd2\\x68\\xc1\\xce\\xb4\\xd2\\xcd\\x84\\x05\\x01\\x87\\xfd\\xdc\\xc3\\xf9\\x15\\x8e\\x2f\\x3d\\xfe\\x08\\x36\\xb5\\xff\\x74\\xef\\x39\\xcc\\x75\\x0b\\x0b\\xd3\\xc2\\xd8\\xd1\\x64\\xdb\\xbc\\x57\\x67\\x1a\\x53\\xe8\\x18\\xe5\\xfc\\x4a\\x78\\x2b\\xff\\x70\\x7d\\x4b\\x34\\x97\\xc1\\xdb\\xba\\x56\\x31\\x54\\xfc\\x17\\x96\\x7a\\xdd\\x72\\x02\\x4c\\x8b\\x3f\\x52\\x0c\\x0f\\xfb\\x34\\xaf\\x91\\x15\\xd7\\xaf\\x2f\\x3f\\x64\\xb9\\x8b\\xf9\\xab\\x0f\\x1c\\x1c\\x0d\\x6c\\xe3\\xfc\\x93\\xf4\\x26\\xff\\x48\\xb4\\xb5\\x89\\x45\\xe7\\xae\\x53\\x2b\\x76\\x15\\x3f\\x09\\xa7\\x6b\\x46\\xe2\\xd6\\x04\\x3e\\x29\\x19\\x56\\x7a\\xaf\\x73\\x2f\\x29\\xfe\\xd2\\x31\\x3c\\x66\\xa3\\x23\\xff\\xec\\x06\\xdb\\x35\\xd5\\xb2\\x34\\x77\\x65\\x5b\\xf1\\xa3\\xd7\\xd0\\xb3\\xd2\\x8d\\x9a\\x85\\x66\\x86\\x2e\\x71\\x4f\\xd7\\x2d\\xd9\\x0d\\xfe\\xbe\\x16\\x7b\\x8e\\x9b\\xd0\\xf7\\x59\\xcd\\xa1\\xef\\x0e\\xd5\\x3e\\xab\\x5d\\xf7\\x9d\\xeb\\x31\\x64\\x50\\x66\\x83\\xb0\\xc6\\x10\\x9c\\x5e\\x1f\\xeb\\x61\\xe4\\x1c\\xe0\\xde\\xd2\\x98\\x81\\x87\\x70\\xa8\\xdb\\xa8\\xf4\\xfb\\xdd\\x4e\\xd2\\xeb\\x80\\x1d\\x93\\xe9\\x41\\x2f\\x4a\\x9d\\x48\\xd5\\x2f\\xe0\\x6d\\xbf\\x88\\xd3\\xaf\\x15\\x42\\xef\\x54\\xfd\\xe9\\x1c\\x8b\\xf9\\x13\\x8a\\xe4\\x30\\x87\\xf1\\xf7\\x2a\\x7a\\xcf\\xc6\\x15\\xd5\\x51\\xad\\xde\\x0e\\xdd\\xeb\\xca\\xed\\x02\\xef\\xad\\xec\\x33\\x71\\xd2\\x7a\\x05\\x00\\x71\\x73\\xc0\\xad\\xe3\\xfa\\x83\\x25\\xdd\\xf5\\x65\\xcd\\xd3\\xa7\\x6e\\x77\\x1d\\x7f\\x03\\x99\\x67\\xbf\\xf3\\x36\\x33\\x2e\\xe7\\xe7\\x76\\x45\\xeb\\xeb\\x99\\x8f\\x4c\\x2d\\xc3\\x5f\\xdf\\xfd\\x50\\x37\\x3c\\xda\\x59\\xc1\\xf3\\x24\\x99\\xa8\\x42\\x5c\\xde\\x56\\x27\\x4a\\x38\\xa4\\xee\\xea\\xd5\\xe6\\x21\\xc7\\x06\\xaa\\xc7\\x51\\x45\\xed\\x51\\x8d\\xa2\\x5e\\xb5\\x2b\\x87\\xc4\\xea\\xb3\\xf5\\xd6\\xf4\\x69\\x21\\x53\\xe9\\x71\\xae\\x1d\\x8c\\x6c\\xd3\\x31\\x09\\x1f\\x38\\xe6\\x0a\\xab\\xeb\\x9b\\xa2\\x82\\xdc\\xac\\xfb\\x28\\x0b\\x7f\\x2e\\x8b\\x34\\xda\\x55\\x78\\x5c\\xcd\\x8f\\x9c\\x14\\x57\\x44\\xe0\\x3d\\x15\\x9e\\x19\\x7e\\xb1\\xdb\\x89\\x56\\x82\\xa9\\x7e\\xa3\\x2c\\x3f\\x2d\\x2c\\xa9\\x30\\x1d\\x1c\\x92\\x1c\\x95\\x0b\\x03\\x27\\x45\\x0d\\x82\\xa4\\xdd\\x61\\x8d\\x2f\\xd1\\xf9\\x2d\\x0d\\x21\\x6b\\x1a\\xea\\x50\\xe8\\x28\\x05\\x06\\x65\\x19\\x56\\xb7\\x2d\\x06\\xfb\\x8b\\xde\\xf8\\xcc\\x38\\x49\\x43\\x2a\\x5f\\xdc\\xeb\\xc6\\xfb\\xe0\\xbb\\xac\\xe2\\xe4\\x46\\xc9\\x16\\xd6\\xec\\x2d\\xea\\x63\\xa3\\x7b\\x31\\xce\\xf9\\xa4\\x66\\x8a\\x35\\x72\\x08\\x2e\\xee\\x53\\x5d\\x28\\xe1\\xcb\\x67\\x4b\\x1b\\xce\\x25\\x54\\x14\\xce\\x88\\xeb\\x05\\x69\\x4f\\x2d\\xe6\\xbf\\x36\\x11\\xd7\\x47\\x05\\x2a\\x1f\\x4b\\x61\\xcf\\xaa\\x87\\x74\\x84\\x2a\\xd0\\x5a\\xca\\x02\\x58\\x1f\\x82\\x6b\\xfd\\xd4\\x52\\xc9\\xc5\\xab\\x66\\xdd\\xb3\\x48\\x69\\xab\\x7a\\x9f\\x3e\\x5d\\xfd\\x6a\\x82\\xab\\x2f\\x55\\x58\\xb3\\xcf\\xc5\\x5f\\x2f\\x38\\xcc\\x2a\\xd0\\x5e\\x50\\x35\\x9f\\x4d\\x94\\xb5\\x3f\\x53\\xac\\xde\\xa7\\xbb\\x26\\x67\\xd6\\xe0\\x5f\\x8c\\x3d\\x19\\x5d\\x7f\\x40\\x7a\\x2b\\x72\\xdd\\xeb\\xe3\\xee\\x09\\xe9\\x7f\\x23\\x5e\\x92\\x18\\xd4\\xb5\\x44\\x86\\x8f\\x2d\\x94\\xfb\\x58\\x6a\\x3b\\xbe\\x16\\xd4\\x64\\xd7\\xaa\\x5c\\x3e\\x1e\\x80\\xac\\x63\\x39\\xb7\\xb2\\xfe\\x76\\x2e\\xfd\\xee\\x73\\xf3\\x3c\\x02\\x6a\\xe1\\xd7\\xd4\\xcd\\x94\\xf8\\xe4\\x7b\\x8d\\x1a\\x3f\\xa1\\x5a\\x1d\\x36\\xed\\xed\\x17\\x9d\\x92\\xf0\\xc2\\x67\\x24\\x93\\x1e\\xba\\x37\\x1c\\x41\\xa8\\x51\\xfb\\xbd\\x46\\x5f\\x31\\xaf\\x66\\xa6\\x86\\x03\\xee\\x6c\\x11\\x4c\\x89\\xd9\\xc1\\x43\\x62\\x55\\x05\\xb4\\xf3\\x95\\x1f\\xba\\x28\\xff\\x27\\x59\\x68\\xa9\\xd4\\x29\\xbd\\x82\\xf4\\xcb\\xa2\\xbd\\x3d\\x0d\\x62\\x2f\\xfe\\x23\\x94\\x17\\xf7\\xd0\\x37\\xdb\\xe9\\xb7\\xe2\\xb9\\x3c\\x73\\xb6\\x1c\\xeb\\x14\\x09\\xb3\\x9c\\xa8\\x05\\xcf\\xe3\\x42\\x44\\x77\\x0c\\x49\\x4a\\xee\\x37\\x8c\\x45\\x48\\x6b\\xc4\\x63\\xe0\\x4c\\xfa\\x66\\x03\\x32\\x2f\\x51\\x54\\xb3\\xdf\\x29\\x5c\\x2f\\x3c\\xc2\\x2e\\xd0\\x5c\\x56\\xb5\\x9f\\x49\\x96\\x75\\x9e\\x0f\\x28\\xa7\\x94\\xf7\\x54\\xd4\\xca\\xcc\\x47\\xf8\\x13\\xd5\\xc3\\x07\\x8a\\x1e\\xe0\\x46\\xa0\\x57\\x41\\xf7\\xdc\\xcd\\x19\\x1f\\xfd\\xfe\\x9a\\x4c\\xa7\\xae\\x27\\x64\\x7b\\x39\\x7c\\xb9\\x87\\xa7\\xcc\\xc5\\x35\\x00\\x6a\\x6c\\x9d\\x3c\\xcf\\x27\\x84\\x97\\x1a\\x5c\\xed\\xc1\\x5b\\x03\\x29\\xb2\\x17\\xb4\\x3a\\xa8\\xd6\\x1b\\xd4\\x68\\x99\\x03\\x13\\xff\\x58\\x5e\\x7f\\x71\\x7d\\xb1\\x50\\x27\\xda\\x70\\x80\\xf7\\x3e\\xe4\\xb5\\xd2\\xa9\\x7f\\x3a\\xca\\x3e\\xd0\\xee\\xe0\\xa1\\x40\\x72\\xec\\xd7\\xfd\\x64\\xfd\\x3c\\x98\\x49\\x06\\x2c\\x05\\xcc\\x0d\\x72\\x2b\\xd9\\xc5\\x2e\\xab\\x0b\\x56\\xd2\\xad\\xc9\\xd7\\x9c\\x49\\xfc\\x79\\x20\\xd7\\x30\\xd2\\xc9\\x3e\\xcc\\x67\\xd7\\x1e\\x15\\x96\\x96\\xaa\\xb7\\x31\\xc9\\xfc\\x2e\\x7b\\x4d\\x69\\xf1\\x9f\\x8f\\x37\\x07\\xed\\xe8\\xff\\x09\\x54\\xa8\\x15\\x41\\xcc\\x56\\x95\\xc2\\x6c\\x46\\x10\\xd4\\x2c\\x47\\xef\\xba\\x2d\\xa0\\xa1\\xce\\x92\\xd6\\x56\\xd3\\x2c\\x32\\x97\\x14\\x22\\x14\\xc9\\xa4\\x12\\xa7\\x50\\x18\\x48\\x5a\\x0f\\x4e\\x37\\x10\\x87\\x9d\\x64\\xa8\\xda\\x01\\xd4\\x54\\x2c\\x98\\xf5\\xd0\\x41\\xb7\\xe9\\xe6\\x1b\\x39\\xea\\xa1\\x59\\x89\\x43\\x49\\xab\\x2a\\xbd\\xaf\\x71\\x6a\\x46\\x74\\x39\\xe1\\x43\\x45\\x8a\\x69\\x70\\x69\\x55\\x8b\\xa1\\xe9\\x2d\\xab\\x17\\x70\\x3d\\x84\\xe7\\x11\\x03\\xfd\\x78\\x98\\x3e\\x11\\x8d\\x43\\xf5\\xfe\\xc1\\x6d\\xb9\\x80\\xfb\\xbd\\xe8\\x26\\xdd\\x4d\\x39\\x56\\x07\\x6e\\x3c\\x2c\\x6f\\x6c\\x9b\\x2c\\x68\\x38\\x1a\\xfd\\x61\\xf7\\x6a\\x5d\\xa9\\x77\\x35\\x87\\xf8\\xdf\\x19\\x1e\\xd7\\xd9\\xa0\\x94\\x92\\xd0\\xd1\\xf7\\x83\\x1a\\x73\\x1f\\xf2\\x52\\x7f\\x77\\x18\\x1a\\xbb\\xed\\xb0\\x78\\xec\\xfb\\x3b\\x71\\xfb\\x11\\xa5\\xcb\\x04\\xa0\\xc7\\xba\\x25\\x02\\x2e\\x72\\xda\\xf2\\x92\\x26\\x30\\x7c\\x4c\\x4d\\xeb\\xee\\x32\\xf7\\x5b\\x2c\\x9c\\xce\\x47\\xac\\x56\\x57\\x5a\\xf6\\xaf\\x2f\\x38\\x2d\\x2d\\xc4\\xc4\\x30\\x6e\\x82\\xeb\\x98\\x48\\x58\\x41\\x75\\x8b\\x65\\x44\\xef\\x5f\\x39\\x84\\x01\\xb3\\x53\\xaf\\x52\\x72\\x33\\x61\\x31\\xcd\\x2a\\x94\\x51\\x6c\\x88\\xa0\\x38\\x35\\xfa\\x25\\xce\\x70\\x7b\\xca\\x40\\x94\\x7c\\x6a\\x8d\\xfa\\x18\\x54\\xb4\\xee\\xbe\\xa0\\xf1\\x2c\\xe1\\x1d\\xd0\\xfc\\x10\\x68\\x82\\xdf\\x37\\x8d\\x7d\\x67\\xd8\\x7c\\x1c\\xae\\xed\\xb6\\x9c\\x5b\\x26\\xd1\\xe6\\x91\\x2b\\x75\\xe6\\x20\\x0d\\x72\\xd5\\x99\\xe0\\x9e\\xac\\xc3\\xd9\\x97\\x58\\xf0\\x23\\x84\\xca\\x3a\\x63\\x6e\\xdf\\x9a\\x11\\xa3\\x06\\x41\\xbb\\x8f\\x90\\xf9\\x43\\x98\\x8f\\xbe\\x7b\\xce\\x31\\xbe\\x01\\x43\\xf5\\x06\\x07\\xb3\\xdd\\x63\\xef\\x38\\x03\\x4b\\x4a\\x3f\\x62\\xda\\x43\\x98\\x71\\x84\\xdb\\xc3\\x3f\\x0b\\x88\\xa3\\x98\\x4a\\xfe\\x69\\x5e\\xcd\\x4e\\x03\\x1f\\xc3\\x36\\x3a\\xd4\\x45\\xbb\\x74\\x7e\\xfe\\xb0\\x31\\xcd\\xbd\\x0b\\xa7\\x36\\xd2\\xdc\\x75\\xaf\\x4b\\x78\\xb5\\xbf\\x7c\\xb7\\xfa\\xc8\\xc2\\xf9\\x33\\x3c\\x27\\x43\\xf0\\xa2\\x85\\x67\\xea\\x96\\x6c\\x77\\x48\\x5b\\xf3\\x1c\\xbf\\x63\\x96\\xa2\\x01\\xda\\x2f\\x74\\x90\\x35\\x2d\\x47\\xe7\\x04\\x35\\x8d\\xe7\\x34\\xb5\\x2d\\xe6\\xa3\\x4b\\x85\\xef\\x3b\\x5c\\x98\\x3a\\xb0\\x20\\x47\\x6b\\xad\\x35\\x1b\\xfb\\x88\\x33\\x40\\xf6\\x45\\x89\\x26\\x67\\x3a\\xbe\\xa6\\xd5\\x92\\x8b\\xc9\\xb1\\x8c\\xc3\\x43\\x4b\\x62\\x41\\x68\\xfd\\x73\\x9f\\xc2\\x48\\xdf\\x77\\x68\\x3a\\xde\\x5a\\x6d\\xe4\\x2d\\x47\\xc3\\x59\\x46\\x2d\\xcf\\x1c\\x0b\\x5d\\x0c\\x27\\xa9\\x1e\\x70\\x17\\x02\\x49\\x3b\\xc6\\x8b\\xc7\\x3e\\x03\\xd0\\x65\\x10\\x3f\\xfe\\xc4\\x90\\xfa\\x08\\x22\\xac\\x39\\xad\\xac\\x8e\\x9a\\xa6\\x17\\x15\\x7e\\xd2\\x2d\\x53\\x0f\\xb5\\x84\\xf8\\x19\\x5a\\x13\\x31\\xb8\\x04\\x8d\\xea\\xd8\\x7b\\xe6\\xf2\\x67\\xd0\\x69\\x60\\xb4\\xe9\\x60\\xcd\\xbf\\x2e\\x1f\\x6b\\x90\\x6b\\xfc\\x90\\xf8\\xbd\\x73\\xa7\\xe6\\xf7\\x9c\\xd0\\xd0\\xda\\xc1\\x52\\x66\\x4f\\x94\\x5e\\x2c\\xf5\\xf8\\xa6\\xbd\\xf4\\x45\\xa8\\xfa\\xe9\\x99\\x9a\\xcb\\xdb\\x4d\\xf8\\x5f\\x96\\x7e\\x8c\\xed\\x4d\\xfc\\xc5\\x61\\xe7\\x32\\x00\\x9d\\x32\\xeb\\x00\\x87\\xc6\\xd7\\x80\\xd3\\xf8\\x67\\x71\\xf2\\x02\\x75\\x3d\\xf8\\xbe\\xe1\\xc4\\x7c\\x61\\xd3\\x9a\\x19\\x71\\xdd\\x05\\xfc\\xbb\\xfa\\xb3\\x59\\xf0\\xc3\\xa1\\xbd\\x19\\xea\\x26\\xdf\\x76\\x01\\x6d\\xed\\x3d\\x71\\xe3\\x05\\xc2\\x87\\x7a\\x2d\\x08\\x70\\xc2\\x4e\\x11\\x6a\\x6a\\xed\\xb9\\xae\\x6a\\xbb\\xb6\\x3f\\x7d\\x92\\xe2\\x75\\xc3\\x64\\x4c\\xe2\\xea\\x0a\\x93\\x5d\\xb9\\xb5\\x0e\\xb0\\x3f\\x73\\x8a\\x3e\\xfc\\x4e\\x8c\\xf7\\xbc\\xdd\\xf8\\xd7\\x12\\xe0\\xb2\\xb6\\xb9\\x34\\x7e\\xa6\\x4a\\x60\\x3e\\xbc\\x4e\\x71\\x5a\\xc3\\x3c\\xf3\\xff\\x19\\xee\\xa1\\x3c\\x32\\x0c\\x92\\x0a\\xa5\\x0a\\x52\\x00\\x46\\x02\\x94\\x5b\\xdf\\x15\\xc9\\x87\\xea\\xe3\\x33\\xb6\\xf9\\x36\\xc7\\x97\\xae\\xfc\\x7e\\x27\\xbd\\x17\\xf6\\xe3\\x3b\\x69\\xa9\\x6b\\xf3\\x7c\\x51\\xfd\\x85\\xa8\\x97\\x80\\xea\\x2a\\x26\\x0b\\x3b\\x13\\x36\\x98\\x59\\xd9\\x5c\\x30\\x26\\x60\\xac\\x7f\\x28\\x6d\\xbc\\x4c\\x58\\x01\\x1a\\x7e\\x06\\x65\\xda\\x4f\\x13\\xea\\xa3\\x29\\x1e\\x4f\\xad\\x53\\x37\\x64\\xbb\\x3b\\x63\\xc2\\x6c\\xbb\\x27\\xaa\\x4e\\x92\\xea\\xf1\\x36\\xb8\\x3c\\x51\\xfb\\xde\\x78\\x8f\\x1e\\xd9\\xaf\\xa1\\x71\\xfb\\x6a\\x31\\x70\\x5d\\xda\\x2e\\x49\\x38\\x5c\\x1f\\x4f\\xed\\xd0\\x97\\x96\\x9a\\x8e\\x8b\\x78\\x2b\\x00\\xbe\\x5f\\x8f\\x0d\\xcb\\x88\\xa8\\x96\\x56\\xa0\\xd2\\x50\\x8a\\x0d\\xba\\x30\\xe1\\xd3\\x47\\x9e\\xf2\\x51\\x55\\x20\\xd3\\x6e\\x57\\xd5\\xb2\\x7f\\xc9\\x4c\\x9f\\x89\\x6b\\xa8\\x4e\\x19\\x29\\x61\\x39\\x27\\x36\\x08\\x8f\\xcb\\xb8\\x55\\x17\\x81\\xb6\\x96\\xe4\\x43\\x18\\xee\\x7c\\x2c\\xb9\\x00\\x02\\x03\\x24\\x9d\\xb4\\x10\\x0b\\x49\\x28\\x16\\xbe\\x48\\x64\\x76\\xcb\\x6a\\xe9\\x93\\xd9\\xf6\\xd3\\xd4\\xea\\x7a\\xd3\\x68\\x09\\xc7\\x35\\xbe\\x89\\x77\\x52\\xc8\\x83\\xd7\\x64\\x94\\x8b\\x22\\x56\\x6b\\x39\\xab\\x07\\x63\\xfe\\x59\\x97\\xe0\\x53\\xea\\x00\\xaa\\x09\\xa0\\xb4\\x38\\x43\\x2f\\xa4\\x99\\x45\\xa6\\x7b\\xcb\\x53\\xcb\\x9a\\xe5\\x89\\x85\\x42\\x18\\xb2\\x6e\\x16\\x70\\xe2\\x00\\xc5\\xfa\\xcb\\xbd\\x8d\\xe7\\xc9\\xc5\\xb5\\x67\\x8d\\xd5\\x43\\xe5\\xc5\\xc8\\x8e\\x34\\x7d\\x7f\\x14\\x1d\\x8d\\x6f\\x50\\x39\\xf3\\xd9\\x2a\\x75\\x21\\x5b\\xe3\\x6c\\x5e\\x0c\\x04\\x0c\\x50\\x65\\xb5\\x89\\xbf\\x12\\x63\\xe1\\x2e\\xb3\\x2f\\xe1\\x29\\xb3\\x60\\xab\\x60\\xc1\\x6f\\xe0\\xc6\\x73\\x7f\\x1b\\xed\\x1e\\x7b\\x65\\xf0\\x79\\x91\\xff\\xf6\\xe2\\xcb\\x47\\xc2\\xbf\\xc1\\x8d\\xa7\\x0c\\xd2\\x4f\\x5d\\x47\\xba\\x2d\\xec\\xb7\\x71\\xc0\\x1e\\xb8\\xb5\\xef\\xb1\\x1d\\x9e\\xaa\\x62\\xd6\\x94\\x37\\xdf\\xda\\xd8\\xc8\\x13\\xef\\x71\\x63\\x38\\x6f\\x3a\\xc6\\xf0\\x2d\\xc8\\x0c\\x2e\\x3a\\xf8\\x66\\x5a\\x73\\xf7\\xe9\\xfc\\x4f\\xd8\\xce\\x6e\\xa2\\xcc\\x2e\\x3c\\x06\\x36\\x33\\x02\\x3d\\xaf\\xcd\\x02\\x60\\x8f\\xd9\\x73\\x07\\x00\\xfd\\xf6\\x03\\xe8\\xd5\\x43\\x63\\x7f\\x39\\xa7\\x72\\x3e\\x84\\x66\\xc4\\x76\\x1d\\x3c\\xe8\\x74\\xf0\\xdc\\x9c\\x0a\\x7e\\x0e\\x7d\\x6c\\xf4\\x1a\\xf4\\xb1\\xde\\x7e\\xe8\\x73\\xbd\\xab\\xc7\\x2f\\x41\\xdd\\x5a\\x13\\x0b\\xdd\\x9a\\x58\\x97\\xa4\\xd8\\x06\\x1d\\x39\\x39\\xa9\\x63\\x66\\xce\\xb1\\x8d\\xdf\\xa7\\xb6\\xff\\x98\\x88\\xca\\x4f\\x12\\x79\\x37\\xf3\\xb9\\x5e\\x49\\xab\\xfe\\xcc\\x82\\xf1\\x4f\\x47\\xc8\\x59\\xcd\\xe5\\xd5\\x7c\\x63\\xea\\x93\\x32\\xfc\\x5c\\x94\\xb2\\xad\\xb1\\xe8\\x88\\xac\\x30\\x78\\x98\\xab\\x2a\\x82\\x37\\x17\\x2f\\x91\\x2d\\x5b\\x94\\x09\\xc9\\xa7\\xbc\\x53\\x52\\x01\\xf2\\xdc\\x83\\x2b\\xeb\\xfb\\x3b\\x98\\x34\\x62\\xfe\\x23\\x92\\xcd\\xae\\x18\\x74\\x42\\x87\\xf4\\x91\\xb8\\x6f\\x7f\\xaa\\xb0\\x6c\\xbb\\x3e\\x00\\x5c\\xa6\\x78\\x08\\x80\\x61\\x5e\\x99\\xb9\\x29\\x8a\\x55\\x79\\xc0\\x29\\x1e\\x95\\x5e\\x56\\x6b\\x28\\xb6\\x03\\xa1\\x9c\\x80\\xdc\\xe0\\xa9\\xb1\\xbd\\x3c\\x75\\x5d\\x92\\xec\\x45\\x8a\\xa5\\x8a\\x40\\xc6\\x40\\xfc\\x8e\\xe6\\xfd\\xec\\x34\\xec\\xcf\\xce\\xc4\\x25\\x4b\\x40\\x12\\xba\\xb1\\x87\\x7f\\x58\\x95\\xdd\\x7b\\xcd\\x53\\x3d\\xa1\\x9d\\x2f\\x76\\x6e\\xd0\\xde\\xaf\\x1e\\xb8\\x96\\x55\\x15\\x9a\\x51\\x95\\xd7\\x40\\x3b\\x30\\xf4\\xcf\\x8d\\x90\\x49\\xef\\xa5\\xa3\\x84\\x96\\x32\\xb5\\x2a\\x94\\xde\\x0b\\x92\\xa1\\x30\\xa6\\x0a\\x95\\xa9\\x6b\\xba\\xc8\\xdd\\xaa\\x17\\x8a\\xfb\\x0e\\x24\\xf3\\xfc\\x1b\\xd4\\x6b\\xe8\\xf3\\xae\\x5f\\x65\\x74\\x0b\\x4a\\xbd\\x47\\xa2\\xf3\\x42\\xfb\\x73\\x8b\\x46\\xd5\\x8b\\x4a\\x4d\\x1c\\xac\\x5f\\x1d\\x28\\x91\\x42\\xb9\\x11\\xc3\\x0f\\xf7\\x96\\x45\\x31\\x0e\\xb8\\x44\\xa6\\x2e\\xcd\\x1a\\x8c\\xeb\\x18\\x83\\x96\\xdf\\x4f\\xee\\xdc\\x92\\x34\\xd9\\xe0\\x3e\\x98\\x76\\xad\\xa3\\xef\\x74\\x92\\xa0\\xed\\x69\\x7b\\xf9\\x88\\x66\\xae\\x8c\\xff\\x13\\xcb\\xaf\\xc6\\x69\\xaf\\x65\\x83\\x85\\xbb\\x8d\\xff\\xd7\\x57\\xac\\x73\\x51\\xea\\xe4\\x1b\\xd1\\xe0\\xe7\\xdb\\xfd\\x33\\x49\\x30\\xc2\\x0d\\x1d\\xf8\\xcb\\xc2\\x07\\x97\\xaf\\xd2\\x17\\x30\\x80\\x93\\x1b\\x9d\\x8e\\x39\\x11\\xab\\xb4\\x93\\x4a\\xc9\\x51\\x79\\x81\\xbe\\x27\\x19\\x5e\\x69\\x79\\xbe\\x50\\x18\\x0f\\x0e\\xb6\\x55\\x34\\xc2\\x63\\xe7\\xfb\\xdb\\x42\\x2a\\xc9\\xdd\\xea\\x17\\xe4\\x7d\\x93\\xc9\\xf9\\xa5\\xc3\\x20\\x66\\xa9\\xf8\\xa1\\x43\\x9d\\xf1\\xd8\\x80\\xe2\\xb8\\x5a\\xc2\\xae\\x4f\\x6c\\x60\\x86\\x11\\x7e\\xe3\\x88\\x9a\\xbc\\x55\\x93\\xa0\\x2e\\x25\\xc2\\x20\\x39\\xa8\\x33\\xd1\\x36\\x86\\xe7\\x94\\x1d\\xcc\\x95\\x7b\\xdf\\x53\\x1b\\x97\\xdd\\xaf\\x09\\x04\\x71\\xee\\x08\\xf2\\xdd\\x93\\x1f\\xe7\\x60\\x27\\x14\\x94\\x69\\x4b\\x71\\xc8\\xfd\\x50\\xfa\\xce\\x5d\\x21\\xc9\\x93\\x7e\\x5e\\xde\\x56\\x01\\xaf\\x52\\x76\\x44\\xb1\\x71\\x6e\\x33\\xce\\x31\\x7f\\x93\\x0b\\x26\\xb6\\xb7\\x03\\xde\\xc4\\xb9\\xd8\\x20\\xb6\\x33\\xfe\\x82\\x25\\xb4\\x80\\x0f\\x1a\\x16\\x52\\x0e\\x39\\xc3\\x3f\\x0e\\x35\\xa2\\x20\\x84\\xa2\\x72\\xb9\\x7f\\x52\\x42\\xa0\\x11\\xe5\\x24\\xfe\\x8a\\xf5\\xb0\\x54\\xab\\xf6\\xc9\\x44\\x47\\x44\\x05\\xa2\\x40\\xec\\x4f\\x93\\x99\\x3f\\x5e\\xe8\\x4c\\x1b\\x63\\xa8\\x29\\x87\\x90\\x19\\xba\\xb5\\x61\\x4e\\xda\\x87\\x93\\xac\\x78\\x50\\x5f\\xc9\\xb4\\x37\\x96\\xc3\\xf3\\x65\\x1a\\x17\\x61\\x6a\\xe6\\x99\\xca\\x43\\xbf\\x42\\x09\\x98\\x30\\x8b\\x49\\xf1\\x0f\\x06\\x16\\xe8\\x8a\\x7c\\x5d\\x62\\x9e\\x72\\xb1\\xfc\\x7f\\xb1\\xc1\\xaa\\x2f\\x90\\x56\\x3d\\xe6\\xa9\\x8d\\x92\\xfc\\x1c\\xad\\x25\\xa7\\xd5\\x9d\\xfa\\xb1\\x2d\\x18\\x64\\x31\\xfe\\x7f\\x84\\xf8\\xd0\\x56\\x97\\xc3\\x66\\x3e\\xbe\\x6e\\xf9\\x04\\xdb\\x98\\x26\\x56\\xae\\x1a\\xc2\\xa6\\xcc\\xe4\\x0b\\xdc\\x1b\\x79\\xdc\\xb0\\x74\\xaa\\x64\\xd7\\xdc\\x36\\xa2\\xa3\\x7f\\x9d\\xcb\\x5a\\xec\\x68\\xd1\\xab\\xe2\\xb4\\xd8\\xfc\\x7a\\x6a\\x2b\\xf2\\x5c\\xdd\\xc0\\x99\\x74\\x65\\xfb\\x55\\xf7\\xec\\x4f\\xbc\\x54\\x66\\xd5\\x16\\xed\\xea\\xfa\\x15\\x04\\x63\\xa4\\x4b\\x4a\\x4d\\xbc\\xe3\\x20\\x9e\\x5b\\x26\\xd7\\xc3\\x21\\x39\\x10\\xaa\\x4e\\xf1\\x56\\x28\\xd4\\xc9\\x09\\x29\\xf4\\x48\\x99\\x42\\x57\\x1a\\x05\\x05\\x87\\x7c\\x6e\\xd1\\x26\\x7b\\x4e\\xdc\\xbf\\x2f\\x4d\\x50\\xb4\\x55\\xe5\\x86\\x99\\x07\\xbd\\x9e\\x47\\x06\\x92\\xc8\\x04\\x53\\x47\\xe4\\x80\\x43\\xbc\\x5d\\x76\\xb9\\x32\\x12\\x87\\x81\\x48\\x76\\x40\\x06\\x39\\x23\\xf0\\xbb\\x2f\\xee\\x0b\\x62\\xdc\\x50\\x40\\x21\\x18\\xe0\\x76\\x53\\xba\\x15\\x2f\\x14\\xf5\\x4e\\x26\\x0b\\x4b\\xb6\\x00\\xe1\\xcb\\x45\\xf7\\x4c\\xe6\\xa8\\xf9\\x25\\xdd\\x1a\\x4a\\x0f\\x1f\\xcc\\x2d\\x1a\\x53\\xa6\\xb6\\x4e\\xf0\\xc1\\xc8\\x04\\x5f\\xb0\\x84\\x9c\\x61\\xe8\\x77\\xed\\x57\\x81\\xce\\x06\\x07\\xe4\\x9a\\xd2\\xec\\xa1\\x38\\xb5\\x9c\\x6c\\xcf\\x1e\\x27\\x9f\\xfe\\x0a\\xf5\\xbd\\xd4\\xb6\\xa6\\x63\\xac\\x0c\\x9d\\x7f\\x64\\x0e\\xfb\\xa9\\xe1\\x3e\\x02\\xed\\x42\\xb9\\x48\\x72\\xdb\\x05\\x5b\\xb4\\x36\\x84\\xb0\\xae\\xca\\x83\\xee\\x09\\x29\\xb2\\xa9\\x2a\\x10\\x48\\xd3\\xd6\\xe4\\x3f\\x22\\x16\\xd4\\x9e\\x90\\x94\\x15\\x69\\x7b\\xd1\\x39\\xe4\\xd5\\xea\\xb4\\x4c\\xa9\\xd4\\x9e\\x2a\\x1e\\x84\\xc1\\x58\\xa2\\xc2\\x2c\\x74\\x05\\xdf\\xfc\\x50\\x50\\x89\\x4d\\x53\\x8d\\xa2\\x60\\x7b\\xa7\\xf7\\x04\\xaf\\xb0\\xed\\x69\\x6d\\x45\\x58\\x3b\\x48\\x7c\\x83\\xe2\\xe8\\x8d\\x4c\\x5f\\x22\\xa7\\xa1\\xd9\\x1c\\xa2\\x4d\\xe3\\xc1\\x23\\xc7\\x46\\xf4\\x23\\xe1\\x0e\\x9d\\x3e\\x91\\x89\\x87\\x62\\xdf\\xc4\\x5b\\x66\\x1e\\xd9\\x42\\xb1\\xf5\\xac\\xce\\x85\\x60\\x52\\xd7\\xb3\\xd9\\x25\\xd2\\x09\\x91\\x65\\xdc\\x31\\x08\\x98\\x17\\x14\\x3f\\x11\\x9c\\xbc\\x2f\\x9f\\x93\\xb7\\x59\\xc4\\x8d\\x4a\\xcf\\x54\\xd6\\xcd\\x35\\x50\\xad\\xc3\\x7f\\x91\\xd3\\x85\\xc1\\x56\\xf3\\x27\\x80\\x16\\xfb\\x20\\x2f\\x93\\x13\\xef\\x48\\xb0\\xc7\\x97\\xad\\xfc\\x6e\\xdf\\x84\\xbd\\x6e\\x7f\\x0f\\xfb\\x04\\x26\\x2c\\x8b\\x25\\x19\\x92\\x36\\xbc\\xb5\\x79\\xd3\\x63\\x43\\x32\\x84\\x2a\\x7a\\xfb\\x81\\x49\\x20\\xf6\\xb9\\x9d\\xb7\\xe1\\xd8\\xc9\\x3b\\x8b\\x9f\\x3a\\xef\\xa0\\x9a\\x5f\\x00\\x49\\x0d\\xab\\x2d\\x37\\x39\\x1b\\x18\\xa9\\xbb\\xb1\\x70\\xc2\\xca\\x6f\\x96\\x22\\xc8\\xb3\\xf4\\x7a\\xe8\\x2a\\x23\\x03\\x34\\xe9\\x63\\x5b\\x45\\x49\\x9e\\xab\\x55\\xea\\x20\\x42\\xcb\\xd6\\xa1\\xce\\xe8\\xcb\\xfa\\x82\\xfa\\x4e\\xa2\\x89\\x43\\xf4\\xd8\\x75\\x59\\xf3\\xfa\\x90\\x35\\x0b\\x93\\xdd\\x53\\x97\\xb6\\x14\\x3c\\x64\\xcf\\xee\\x18\\x71\\x8f\\x88\\x11\\x45\\xd7\\xd0\\xf2\\x60\\x75\\x21\\x3d\\x92\\x58\\x2b\\x39\\xbc\\xb6\\xa1\\xa2\\x65\\xb6\\xa5\\x41\\xdd\\x79\\x38\\xd0\\xac\\x8e\\x12\\x51\\x16\\xe4\\xc1\\xf5\\x34\\x43\\xe6\\x66\\x02\\x60\\x52\\x12\\x8b\\x63\\x4b\\xc3\\x0e\\xab\\xe4\\x97\\xda\\x7d\\x3a\\x78\\xd1\\x67\\xda\\x77\\x2a\\x56\\x97\\xae\\x29\\xd6\\x2b\\x83\\xa2\\xeb\\x23\\x7b\\x01\\x7d\\x9b\\xbd\\x49\\xb1\\x1f\\xb0\\x63\\x94\\xb4\\xe2\\xd5\\x5a\\xfa\\x97\\x49\\x2f\\xb6\\xf8\\x6a\\xc7\\xba\\x4b\\x6d\\xd4\\x04\\x97\\xa2\\x8a\\x4d\\x4a\\x10\\x93\\x19\\x11\\x5b\\xe4\\x0e\\x5e\\x59\\x40\\x89\\xc4\\xd7\\x89\\x0f\\x77\\xd6\\xab\\x5b\\x67\\x5b\\xeb\\x2b\\xd6\\xc2\\xc3\\xa2\\x8e\\x1e\\x51\\x17\\xde\\x19\\x6a\\x68\\x90\\x0c\\x3d\\xff\\x7d\\xbc\\xd7\\x50\\x0a\\x3b\\x2a\\x83\\x39\\x8e\\x78\\x33\\xd1\\x24\\x6c\\x52\\x14\\x73\\x85\\xb8\\xc2\\xe1\\xad\\xe8\\x6d\\xd0\\x78\\x56\\xbf\\xb3\\xb8\\x41\\x8c\\x14\\x4c\\xe8\\x13\\x80\\xa2\\x02\\xb6\\x00\\x57\\x14\\xed\\xcf\\xe1\\xc6\\x90\\x97\\x80\\xc6\\xdb\\x9f\\x85\\x77\\x47\\xb5\\x3c\\x1f\\x82\\x42\\x89\\xda\\x11\\xc4\\x6c\\x57\\x0d\\x96\\x8e\\xa4\\x44\\x79\\x67\\x69\\xe9\\x5a\\x38\\x7e\\xc5\\x9b\\xc5\\x65\\x8e\\xf9\\x28\\x87\\x33\\xcc\\x1f\\xe3\\x3a\\x87\\xe2\\xb5\\x88\\xd3\\x3d\\xc6\\x61\\x27\\x7c\\xbe\\xf8\\x34\\xc5\\xb8\\x89\\x94\\x17\\x11\\xaf\\x07\\xa8\\xe5\\xa4\\x83\\x2d\\x31\\x39\\xe0\\x33\\xd1\\x0e\\x8d\\x2b\\xa6\\x67\\x6c\\x6e\\xa7\\x34\\xaf\\xf2\\x06\\x93\\x11\\x8b\\xa7\\xb6\\x4f\\x6e\\xd4\\xff\\x2a\\x84\\x0f\\xb5\\x17\\x4d\\x2b\\x79\\x15\\x07\\xe5\\x92\\x4a\\xc5\\x58\\xf6\\xbb\\x50\\xa2\\x7d\\xc0\\x6c\\x45\\x67\\xa2\\xf8\\x5a\\x5c\\x81\\x6a\\xc9\\xd7\\xd0\\x49\\x5c\\x18\\xc1\\xfe\\xca\\x80\\x5f\\xaa\\x6b\\x4c\\xf0\\x98\\xc7\\xdf\\xba\\x4d\\x2c\\x65\\x51\\x86\\xa9\\xe9\\xcc\\x71\\xa6\\xa2\\xed\\x42\\xc8\\x4b\\xaf\\x6c\\xf6\\x4a\\xb2\\x6d\\xe1\\x9c\\x01\\x66\\x78\\xbb\\x4a\\x5d\\x4c\\x1f\\x4d\\xa5\\x92\\x37\\xc3\\x8a\\xa3\\x40\\x4d\\x5a\\x53\\x78\\x3d\\xee\\xa2\\xa8\\x18\\x04\\x5c\\x76\\x17\\xfd\\x7a\\xa0\\x28\\xaf\\xdb\\x5d\\xe0\\x05\\x40\\xb9\\x58\\xc0\\xbc\\x1a\\xa2\\x3e\\xed\\x4d\\x1c\\x5c\\xd9\\x75\\xc9\\x7a\\x9c\\xdf\\x13\\xee\\x0f\\xfb\\xcf\\xfb\\x0b\\xc6\\x2a\\x7a\\x2a\\x06\\xf0\\xdd\\x97\\x4c\\x02\\x34\\x26\\xb0\\x25\\xd8\\xa3\\xa5\\x6f\\x43\\x52\\xa8\\xeb\\x3e\\x8b\\xbe\\xd1\\xe9\\x0e\\x08\\x90\\x0d\\x65\\x0c\\xc3\\xa6\\x35\\xac\\x33\\xfc\\x12\\x68\\x30\\x41\\x49\\x0f\\x03\\xe6\\x12\\x46\\x8f\\xeb\\x27\\x10\\x29\\xd0\\xef\\x96\\x54\\xa6\\x48\\x80\\xd2\\x0c\\x88\\x9b\\x03\\x50\\xe9\\xdf\\xc7\\xfb\\x77\\x73\\x8b\\xb0\\xf5\\xd9\\xa7\\x63\\xca\\x43\\xba\\xb5\\xcc\\x5c\\xdf\\x26\\xa7\\x07\\x20\\x80\\x37\\x94\\x67\\x1a\\x76\\x35\\xe7\\xac\\x58\\xd1\\x76\\x55\\xd6\\x20\\x89\\x39\\x58\\xa9\\xf1\\xcb\\xf1\\x40\\x40\\x19\\x19\\xd4\\x97\\x65\\x01\\x7c\\x1c\\x40\\x61\\x9f\\x22\\xfb\\x75\\xb3\\x83\\x19\\xd1\\xec\\xb3\\x64\\x55\\xa9\\x76\\xad\\x6f\\xdd\\x28\\xd5\\x56\\xbd\\x36\\x28\\x4b\\xc9\\x39\\x4b\\x0e\\xe8\\xe6\\x06\\xb1\\x27\\xa9\\x36\\xec\\xf5\\xe1\\x99\\x0a\\xc6\\xbf\\xf1\\x92\\x1e\\x41\\x75\\x42\\x8a\\x57\\x08\\xc1\\x2a\\x15\\x04\\x0b\\x85\\x10\\xb4\\x1f\\x08\\x3d\\xf0\\x15\\x82\\xeb\\x66\\xc2\\xa3\\x54\\x41\\x38\\x4d\\xf2\\xf3\\x59\\x55\\x4b\\x73\\xa9\\x3a\\xc8\\x80\\x2d\\xa4\\x2a\\xb0\\x00\\x20\\x55\\xc3\\xd6\\x20\\x53\\xdd\\xba\\xbe\\x4d\\xd9\\x8a\\xc2\\x5a\\x98\\x5c\\x23\\x48\\x44\\x18\\x85\\xcc\\x20\\xe2\\xd7\\x90\\x61\\x48\\x65\\x16\\x97\\x95\\x21\\x27\\xdb\\x6b\\x26\\x8d\\xb9\\x85\\x07\\x8d\\x02\\x4b\\x90\\xa3\\x8e\\xb7\\x57\\x1f\\x34\\xe4\\x14\\x4d\\x1a\\x54\\xbd\\xc4\\x15\\x70\\xdb\\xdc\\x2f\\xf6\\xae\\x9b\\xc9\\x2c\\xaa\\xbf\\x95\\xd9\\xb3\\x13\\xb2\\x52\\xc5\\xf2\\x3d\\xc3\\xd3\\xd5\\x6e\\x67\\xf6\\xee\\xba\\x4d\\x52\\x7f\\xd7\\x2d\\xa7\\xdd\\x69\\x91\\xc6\\x24\\x30\\xd5\\x45\\xf8\\x1f\\x90\\x6e\\x71\\xc3\\x4c\\xfb\\xae\\x4d\\x01\\x38\\x39\\xa0\\x02\\x51\\x21\\xff\\x94\\x49\\x80\\x67\\x9e\\x4b\\xd3\\x98\\x63\\x84\\xaa\\x73\\x2c\\x08\\xa3\\x42\\xaf\\x14\\x2c\\xa7\\xfd\\x55\\x5e\\x9f\\x59\\xbc\\x0c\\x5f\\x57\\xd5\\x46\\xeb\\xab\\x0e\\x49\\x65\\x0e\\x9f\\xb4\\x88\\x7a\\x4d\\xb9\\xa8\\x5b\\x79\\x00\\xc6\\xf9\\xb2\\xac\\x4f\\x73\\xae\\xf0\\xed\\xc2\\xaa\\x0c\\x22\\x00\\x2a\\x5b\\x59\\x86\\x9c\\x68\\xaf\\x9e\\x34\\xe6\\x14\\xba\\xe0\\xc1\\xb6\\x27\\xca\\x56\\x9c\\xa1\\x90\\x21\\xff\\xb0\\x6e\\xfc\\x5b\\xde\\xfb\\x46\\x71\\x53\\x80\\x23\\xd7\\xdb\\xc0\\xd4\\x51\\xc7\\xd2\\x96\\xbf\\x94\\xe5\\x4d\\xa9\\x7b\\xbf\\xfa\\x58\\xc9\\x9e\\x8a\\xe3\\x6e\\xd0\\xdc\\x85\\xbe\\xbd\\xf9\\x1e\\x34\\xb5\\xfc\\xb2\\xcc\\x3d\\x68\\x44\\x03\\x4c\\xa9\\xa4\\x98\\x69\\x40\\xe9\\x41\\x99\\x8c\\x1e\\x30\\x18\\x8b\\xe9\\x12\\x69\\x80\\x6e\\x34\\x32\\x02\\x9b\\xa4\\x30\\x35\\xe1\\x8e\\x7d\\xc6\\x1d\\xad\\x12\\x0c\\xcb\\xfd\\x65\\x56\\x2c\\xf3\\x0e\\x5a\\x8b\\xe7\\x88\\x06\\x18\\xf3\\x8c\\x96\\x37\\x5b\\x84\\xf3\\xc2\\xca\\x37\\xa1\\xe4\\x3f\\x93\\x6f\\x27\\x7b\\x2a\\x9b\\xf6\\x96\\x55\\xe1\\x96\\xdc\\xf3\\xcb\\xcb\\x62\\x86\\xc5\\x84\\xcf\\xff\\x5e\\xb6\\xbb\\x62\\x73\\x02\\xb0\\xa1\\x51\\xa6\\x71\\x64\\x5f\\x5d\\x89\\x47\\xa6\\x41\\x84\\x58\\x8c\\x71\\x5d\\x25\\xa5\\x3b\\x09\\x4d\\x62\\x1a\\xf0\\x96\\x57\\xe2\\x2b\\xe3\\x93\\x08\\x3f\\x80\\x46\\xba\\x12\\xe4\\x9d\\xeb\\x90\\x57\\x67\\xab\\x91\\x68\\x96\\x53\\xce\\xca\\x93\\x29\\x0d\\xbe\\x27\\x94\\x24\\x8b\\xdf\\x24\\xe7\\x7b\\x3c\\xca\\x16\\x1c\\x22\\xaf\\xcb\\xf4\\xc8\\xc5\\x05\\xc0\\x15\\x2a\\x49\\xa2\\x06\\x1e\\x7a\\x28\\x50\\x0e\\xe4\\xeb\\x26\\xa7\\x3c\\xb0\\x48\\x8e\\xbf\\xe8\\x6a\\x9f\\xac\\xac\\x2d\\xcc\\x8e\\xda\\x8d\\xa9\\xac\\xc2\\x5a\\xe0\\x39\\xe8\\x1c\\xf6\\x03\\x30\\xed\\x78\\x5b\\xa8\\xbd\\xcb\\x2a\\xbb\\x5b\\xfb\\xa0\\x99\\x16\\x71\\xe9\\xaa\\x4b\\xfa\\xaa\\x1e\\xdd\\x49\\x7e\\xbe\\xc3\\xa9\\x5c\\x32\\xa8\\x48\\xed\\xe6\\x93\\x22\\x34\\x57\\xe0\\x04\\x92\\x88\\x48\\x14\\x89\\x08\\x59\\x59\\x3c\\xd1\\x87\\x85\\x24\\x5e\\xfa\\x30\\xe8\\xc4\\x89\\xac\\xf5\\xfb\\x3c\\xfd\\xe9\\x2e\\x97\\xa2\\x03\\xef\\x8c\\x6d\\x75\\xb4\\x43\\xc0\\x74\\x8e\\x21\\xc7\\xb1\\xc8\\xb1\\xdd\\xdd\\x37\\x77\\xe7\\xe5\\x88\\x45\\xdf\\x51\\xa9\\x32\\x29\\x31\\xfe\\x42\\x59\\x1c\\xaf\\xcb\\x9f\\xdf\\x2f\\x70\\xba\\x04\\x4a\\x67\\x5e\\x97\\x49\\x91\\x92\\xef\\xe3\\x9d\\x03\\xbc\\x8f\\x8f\\x3d\\xcb\\xb0\\x84\\x0f\\x01\\x30\\x36\\xeb\\xaf\\x7e\\x4b\\x22\\xa3\\x95\\x1e\\xc8\\x29\\x00\\xce\\x62\\xfd\\xbd\\xdd\\x92\\x48\\xcf\\x4a\\xe8\\x31\\xf7\\x7b\\x37\\x10\\x1b\\xcb\\xb2\\x47\\x65\\x60\\xdc\\x2d\\x3c\\x59\\x6c\\x25\\xba\\xb9\\x25\\xa1\\x40\\x01\\xc5\\x90\\x54\\x48\\x84\\xf9\\xf3\\xa0\\xdc\\xe8\\xe1\\xe6\\xbc\\xfd\\xbc\\x9c\\x8a\\x03\\xc2\\xa2\\x52\\xc5\\x36\\x66\\x2c\\xb7\\xcb\\x54\\x53\\x14\\x78\\xfe\\xd1\\xc7\\x9b\\x76\\xb4\\xd5\\x01\\xf6\\x1f\\xdd\\xfa\\x24\\x89\\x5e\\xf0\\xec\\x83\\x7d\\xc6\\x0f\\x1a\\x1d\\x34\\xfa\\x97\\xa7\\xbd\\xfc\\xdd\\x19\\x19\\x8b\\x0a\\xd2\\x00\\x00\\x40\\xff\\xbf\\xff\\x40\\x0e\\x8d\\x71\\x66\\x11\\xfb\\x80\\x59\\xb8\\xa1\\x9d\\x1e\\xa9\\xb8\\xc5\\x27\\xcc\\x54\\x47\\x40\\x5a\\x6d\\x6c\\x3c\\x9c\\x00\\x73\\x92\\xaf\\x1e\\xb1\\xb1\\x4b\\x5d\\xa4\\xa7\\x99\\xdf\\xcd\\xdf\\xc8\\xde\\x7b\\x74\\xab\\x25\\xae\\x40\\xfb\\x6d\\x5d\\x47\\xe9\\x3a\\x15\\x8e\\x8b\\x26\\x53\\x3b\\x8f\\xf5\\xfd\\x1b\\xc9\\x50\\x7f\\x09\\x54\\x0b\\x81\\xab\\x52\\xc3\\xc2\\xd9\\xd3\\xff\\xe8\\xe7\\x78\\xeb\\x7a\\x4c\\x27\\x12\\x2d\\x34\\xe4\\x1f\\xb9\\xfc\\xe3\\x6b\\x16\\x53\\xbd\\xc6\\x41\\xe9\\x9e\\xd9\\x8c\\xef\\x55\\x37\\x80\\xfa\\x96\\xe8\\x83\\x81\\x3c\\x1f\\x76\\xb0\\x74\\x12\\xac\\x7a\\xe2\\xd5\\x7b\\x71\\xad\\xe6\\xc1\\xbb\\xef\\xd6\\x15\\x74\\x10\\xc9\\xf6\\xf2\\x78\\xd9\\xf9\\x20\\x52\\xc1\\x30\\x89\\x47\\x3f\\x86\\xb4\\x02\\x4f\\x37\\x55\\x1c\\xd0\\x32\\xed\\x9b\\x98\\x42\\x9f\\x7a\\x5d\\x76\\x60\\x82\\x75\\xef\\xcf\\x7d\\xd6\\x4e\\x74\\x26\\xa2\\x85\\xcc\\x7a\\x6d\\x2e\\xb3\\x5c\\x97\\x2f\\x5a\\xcb\\xa6\\x6f\\x62\\x67\\xd1\\x3d\\x71\\x54\\x33\\x20\\x4d\\xc3\\xbf\\xf5\\x13\\x7f\\x3c\\xda\\x18\\xed\\xda\\x66\\x4a\\x6f\\xfa\\x14\\x4c\\x0c\\x5a\\xd0\\x0c\\x69\\x9d\\xcc\\x72\\x98\\x91\\x08\\x5e\\x4a\\x3c\\xe9\\xe5\\xca\\xca\\x84\\x9e\\xad\\x80\\x31\\x10\\x92\\xc8\\x98\\x55\\x67\\x8e\\xca\\x08\\xc9\\xc1\\x61\\xf0\\x89\\xdd\\xaa\\xd9\\x78\\x4b\\xb6\\xb9\\x89\\x65\\x73\\xd2\\x9a\\x8c\\xc7\\x3f\\x38\\x79\\xd7\\x7e\\x0d\\xc1\\xd7\\x20\\x12\\x9f\\xc1\\x3f\\x87\\x90\\x31\\x4d\\x1e\\x67\\x17\\xcb\\x6a\\xe9\\x60\\xed\\xd9\\x5f\\x82\\x31\\x62\\x6c\\x5d\\x12\\x4f\\x19\\x67\\x24\\xfb\\xf3\\xa3\\xa3\\xc2\\x40\\x34\\x4a\\xae\\xfe\\x24\\xdf\\x56\\x78\\xf4\\x57\\x02\\x9a\\x56\\xb4\\xfa\\xe1\\xd0\\x7f\\x15\\xf8\\xdf\\xee\\xd5\\x38\\xb8\\x72\\x9f\\x18\\xc7\\x7b\\xca\\xb3\\xd3\\x65\\xf0\\x2a\\x5b\\x1f\\x13\\x8e\\x94\\x89\\x50\\xa4\\x5a\\x43\\x58\\xfa\\xe6\\xaf\\x93\\x2d\\xf5\\xda\\x07\\xf8\\x0e\\xc7\\xe3\\xce\\x0d\\x53\\x69\\xc5\\x8d\\xd7\\x2c\\xcd\\x6b\\xe3\\x8e\\x56\\x94\\x18\\xaf\\x0c\\x34\\x9e\\xa0\\x48\\x5d\\x5b\\xa5\\x45\\x29\\x85\\x96\\x11\\x0a\\x10\\x6d\\x13\\x7f\\x5e\\x1b\\xc3\\x36\\x67\\x98\\x6e\\x6d\\x71\\xab\\x8e\\xbc\\x5d\\x9e\\x54\\xfb\\xe9\\x0b\\x88\\x69\\x75\\x61\\x4d\\x1c\\xae\\x38\\x51\\xa9\\x2e\\x11\\xc1\\x3e\\x52\\x13\\xa0\\x20\\x55\\xeb\\xdd\\x61\\x01\\x04\\x54\\xc8\\xd1\\x0a\\xda\\x76\\x46\\xaa\\x21\\xc7\\xf8\\xf8\\xf6\\xf2\\x23\\x16\\x36\\x3b\\x21\\x91\\x40\\x48\\x4c\\xc8\\xc6\\x4a\\xf5\\x06\\x00\\x10\\x5f\\xcc\\x8f\\xe0\\x18\\x54\\x6a\\x87\\x4a\\x15\\xb3\\xb0\\x5b\\x7c\\x27\\xae\\x29\\x20\\x1b\\xc7\\xb6\\x0b\\xff\\x60\\xc6\\x87\\xbe\\xe9\\x69\\xf6\\x5d\\x6c\\xc8\\x95\\x65\\x18\\xdd\\x9e\\x7f\\x95\\x4f\\xa9\\x99\\x5b\\xa7\\xa1\\xa2\\xd6\\xa1\\xbc\\x2b\\xab\\x6b\\xf1\\x6d\\xbd\\x09\\x4d\\x63\\x60\\x5d\\xaf\\xac\\x29\\x6a\\x90\\xb4\\x06\\x9b\\x16\\x36\\xfe\\x2a\\x48\\x9f\\x2b\\x04\\xc5\\x7c\\x68\\xcc\\x49\\xf4\\xcb\\x35\\x61\\x8a\\x2d\\x91\\xb9\\x91\\xfd\\x8e\\xc2\\xed\\xd2\\xbb\\x0a\\xf0\\x81\\x08\\x2d\\x57\\x04\\xf9\\xf6\\xd9\\x03\\x61\\x6c\\x1e\\x54\\x22\\x00\\xec\\x58\\x02\\xe8\\xc8\\xa9\\xed\\xdb\\xb6\\x1b\\x53\\x11\\xea\\x6e\\x39\\xe3\\xb4\\x6d\\xb9\\xba\\x6f\\x75\\x35\\xba\\xcb\\x0f\\xd8\\x9a\\xf3\\x9a\\xe0\\x15\\xa5\\x58\\x53\\x4b\\xdb\\xb7\\x74\\x28\\x1f\\x65\\x78\\x94\\x66\\x9e\\x75\\x11\\xbf\\x58\\x94\\x42\\xef\\xcb\\xf3\\x0d\\x70\\x68\\x68\\x27\\x3d\\xdf\\xcd\\xef\\xf7\\x3d\\x62\\x91\\x3d\\x6a\\x46\\xe5\\x2a\\xe3\\x68\\x0f\\x07\\x6b\\x11\\x76\\x1b\\x5e\\x24\\x3f\\x28\\x15\\xef\\x97\\xf1\\x15\\x65\\xb1\\x05\\x26\\x7b\\x74\\x9c\\xd3\\xe6\\x57\\xfb\\xd3\\xd2\\x00\\x25\\xb9\\xd4\\xb2\\xf3\\x5d\\xd6\\xfe\\xd3\\xbd\\xcf\\x46\\x07\\x47\\xdf\\xbd\\x7a\\x79\\x7f\\xca\\x67\\x6b\\x58\\xd8\\x59\\x1f\\xef\\x33\\x39\\x78\\x20\\xd6\\xfb\\xdb\\x2e\\xc9\\x81\\xb7\\x37\\xb5\\x84\\x6b\\xb0\\x73\\xda\\xf3\\xed\\xee\\x76\\xda\\xa1\\xeb\\x13\\x85\\xbe\\xf8\\xcc\\xc3\\xf9\\x9f\\xe3\\x2e\\x59\\xf4\\x3b\\x9a\\x44\\x31\\xbf\\x91\\x36\\x4e\\xd7\\x21\\xad\\xab\\x5f\\xf3\\x8f\\xd6\\xfd\\x97\\xe2\\x0d\\x5e\\x2c\\x02\\xe0\\xf8\\x25\\x3e\\xe4\\x3a\\xfd\\x62\\x1c\\x15\\x96\\xcc\\x02\\x7a\\x0b\\xd9\\xbc\\x2d\\xd9\\xcc\\x21\\x7e\\x5a\\xce\\x4e\\x3b\\x93\\x09\\x97\\x0b\\x50\\x15\\x50\\xec\\x01\\xb0\\x49\\x77\\x66\\x33\\x40\\x44\\xbb\\x96\\xbc\\x35\\x1d\\x9e\\xf6\\x2b\\xd6\\x78\\x28\\x30\\x79\\x9f\\x9f\\xef\\x5a\\xcb\\x63\\x56\\x08\\xa7\\x14\\x4b\\x26\\x18\\xb4\\xcf\\x18\\x98\\xcc\\xde\\xc4\\xeb\\xfd\\x34\\xda\\x2e\\x9f\\x6a\\x4e\\x13\\xd8\\x6b\\xe5\\x04\\xc2\\x1c\\x76\\xc3\\x9e\\xdd\\xaf\\x9b\\x8d\\xc9\\xcc\\x7d\\x1a\\x59\\xbf\\xf6\\x4e\\xd3\\xcd\\xa6\\xc8\\x59\\xbe\\xeb\\x5e\\x0d\\xd3\\xb8\\x61\\xc5\\xeb\\x0d\\xe7\\x8b\\x77\\xa8\\xcf\\x47\\xdc\\x54\\x8f\\x25\\x7b\\xdf\\x49\\xe3\\x7c\\x66\\xc3\\x37\\x63\\x45\\x26\\x6c\\x6f\\xe8\\x75\\x36\\xac\\x47\\x6c\\xb4\\x60\\xdf\\xf5\\x1c\\x90\\xf8\\x9c\\xc8\\x56\\x0e\\x69\\x33\\x2c\\x1d\\xa2\\x73\\x3b\\x64\\x01\\x20\\xc6\\xd5\\xad\\x75\\x47\\x19\\xfb\\xf2\\x2e\\x1f\\xf5\\x56\\xdb\\xd6\\xba\\xb1\\x16\\xdc\\x6f\\xd8\\x8d\\x68\\x85\\x38\\x7f\\x26\\x28\\xba\\xa3\\x0a\\xb2\\xe5\\xad\\xd5\\x64\\xb7\\xf1\\x4e\\x48\\x5e\\xd7\\x85\\x74\\xc6\\x10\\xe5\\x5b\\xeb\\x2e\\xe1\\x56\\xf2\\x1c\\x90\\x5f\\xd1\\xa8\\x2f\\xf3\\x6f\\x60\\x05\\x0f\\x87\\x2e\\x0f\\xc5\\x6c\\xa8\\xba\\x96\\xe9\\x72\\xb3\\xbb\\x90\\x7c\\xc6\\x53\\x02\\x9c\\xed\\x50\\x9d\\xd6\\x48\\x68\\xe6\\xe5\\x74\\xdb\\x8b\\xce\\x43\\x88\\xfa\\x96\\xa1\\xfa\\x4c\\x37\\x05\\x69\\xe3\\xe2\\x5e\\x6e\\xc0\\x2e\\xae\\x60\\x44\\x9c\\xcd\\xf1\\xae\\x3e\\xb1\\x7a\\x62\\xb8\\x72\\xbc\\xc5\\x28\\x95\\xda\\x10\\x3e\\x3a\\x7d\\x6c\\x37\\x2d\\x5f\\xb3\\x5b\\x21\\x9a\\x96\\x14\\x08\\x8a\\xd2\\x30\\x84\\x97\\x9b\\x63\\x4c\\x3d\\xd4\\xcd\\xf5\\x95\\xbe\\x47\\x51\\xc6\\x1c\\x7a\\x8e\\xb8\\x68\\x7d\\xda\\x43\\x30\\x79\\x73\\xc2\\x96\\x6b\\x7d\\xb4\\xe3\\x6e\\x17\\x8a\\x83\\x7c\\x09\\xe0\\x0c\\xee\\x24\\x78\\xd5\\xd9\\x41\\x4c\\x97\\x4f\\x2a\\xef\\xd0\\x5c\\xca\\xd0\\xab\\x2d\\xe9\\x93\\x56\\x77\\x0a\\x48\\x3f\\x98\\xdd\\x1f\\x12\\x83\\x99\\xc8\\xfd\\xb1\\xc9\\xcf\\x63\\x30\\x23\\x1a\\xf6\\xc6\\xd4\\x8e\\xe9\\xe3\\xfa\\x80\\x1f\\x15\\xe4\\xf3\\x03\\x3c\\xe2\\x1d\\xc7\\x06\\x26\\x87\\xad\\x4d\\x1e\\x98\\x0c\\xf4\\x1b\\x7a\\x7a\\xee\\xf9\\x36\\x96\\x96\\x24\\xdc\\xeb\\x70\\x3a\\x95\\xfb\\xe4\\xa2\\xc3\\x12\\x03\\x8f\\xa5\\x97\\xc1\\xba\\x53\\x17\\x25\\x57\\xdc\\x4e\\x69\\xd9\\x46\\x99\\x57\\xb8\\xb7\\x5b\\x1e\\x36\\xf5\\x9e\\x48\\x11\\x62\\xda\\x66\\x0d\\xa5\\xfd\\xca\\xa7\\x25\\x5d\\x6f\\x52\\xdd\\xeb\\x4c\\xae\\x4a\\xae\\x5e\\x51\\xbc\\x2a\\xc9\\x16\\xc8\\xb9\\x43\\xdd\\x34\\x93\\x8c\\xa9\\x20\\xf7\\xa7\\xc6\\xee\\xdc\\xe9\\x9f\\x4a\\xd3\\xea\\x99\\x25\\x1b\\x3e\\xb7\\xe3\\x57\\xc7\\x24\\xa4\\x0c\\xe4\\x93\\x61\\xd1\\xaf\\xbf\\x60\\xd3\\x43\\x6d\\x83\\x6d\\x93\\x0e\\xc6\\x9a\\x4e\\x07\\xd7\\xaf\\xf8\\x7d\\x1b\\xae\\x59\\x24\\xff\\x39\\x68\\xf1\\xc3\\xf2\\x0a\\x4c\\x95\\x72\\x1c\\xe7\\x15\\xc9\\x35\\xb5\\xd1\\xcd\\x66\\x27\\xcf\\x35\\xb1\\x23\\xda\\x0b\\xf0\\x67\\xd6\\x06\\x1a\\xd5\\x1b\\xfb\\x0c\\x8e\\xc3\\x51\\x1c\\x32\\x3d\\x0a\\x42\\xe0\\x65\\x52\\x1e\\x02\\x89\\x93\\x32\\x90\\xdf\\x3c\\x51\\xc6\\xb5\\x56\\x07\\x36\\xcb\\x92\\xdd\\x82\\x37\\xb2\\xd8\\x78\\x43\\xb3\\x05\\x3b\\x92\\x39\\x2b\\x76\\x0d\\x2a\\xb6\\x96\\x95\\xfa\\xeb\\x65\\x07\\x2b\\x66\\x07\\x87\\xdb\\xc9\\x4c\\xb1\\xbf\\xf0\\xf5\\xea\\xd7\\x19\\xae\\xb6\\x52\\x35\\xfe\\xc9\\x1a\\xc4\\x2b\\xaf\\xdc\\xb6\\x4e\\xd2\\xe0\\x7a\\xb6\\x25\\x63\\x10\\x19\\x2f\\xa0\\xe1\\x9c\\x4a\\x8b\\x07\\xee\\xc4\\x89\\xef\\x3f\\xf1\\xc6\\xe5\\xc9\\x40\\x3b\\x95\\x27\\x44\\xb0\\xe7\\xae\\xac\\x49\\xc2\\xed\\x7d\\x69\\xd3\\x83\\xe5\\xe0\\x3c\\x52\\xd8\\x46\\xe7\\x33\\x10\\x2c\\x40\\x04\\xb1\\xb4\\x24\\xee\\x9e\\x57\\x36\\x0e\\xde\\xfd\\x8f\\x20\\x3f\\x83\\x79\\xbe\\xc1\\xca\\x3f\\x06\\xe3\\x36\\x87\\x9f\\xa3\\x76\\x8d\\xef\\x41\\xa3\\x76\\x0e\\xb7\\xa2\\x50\\xeb\\xd7\\x0d\\xa2\\xd0\\xd3\\xa7\\x86\\x78\\xc8\\x4c\\x30\\x33\\x23\\xc6\\x1e\\xbe\\xd0\\xce\\x1e\\xd6\\xe1\\x17\\x9d\\x1d\\xbe\\xc0\\xbc\\x81\\x21\\xec\\xb4\\xbb\\x3a\\x97\\xd7\\xcb\\xf1\\xb8\\xf7\\x12\\xdc\\x4f\\xd1\\x25\\xc0\\x48\\xc9\\x35\\x03\\x11\\x54\\x6c\\xc5\\xbe\\xe3\\x22\\x3a\\x79\\xa2\\x3f\\xfd\\x38\\x86\\xc4\\xc5\\xaf\\x7d\\x71\\xdd\\x73\\xa9\\x9e\\x83\\xc1\\xd4\\x17\\x83\\xef\\x36\\x7f\\xbf\\x0c\\x41\\x4d\\x08\\x62\\x32\\xc9\\xa4\\x26\\x14\\x41\\x50\\x34\\x9d\\x36\\x53\\xff\\x65\\x9e\\x5e\\x66\\x4b\\x7b\\xf0\\xfa\\x1b\\xc3\\xb5\\x8f\\x52\\x26\\xd1\\x1b\\xb4\\x1a\\x7a\\x48\\xc4\\x7a\\xbd\\x46\\xdb\\x31\\x59\\x2c\\x09\\x41\\xc1\\xe9\\x39\\x43\\x90\\x21\\x00\\x97\\xff\\xb4\\xfb\\xe3\\x4a\\xf1\\x41\\xba\\xce\\x0e\\xf5\\xd6\\xd8\\x0b\\x87\\xe9\\xb1\\x13\\xc1\\xd3\\x71\\xe6\\x4f\\x8f\\x22\\x02\\x7e\\xa9\\x3c\\x76\\x6b\\xdf\\xf1\\x83\\xa1\\x7d\\x6a\\x30\\xa8\\x2d\\x25\\xc9\\x17\\x58\\x3f\\x1c\\x5c\\x9c\\x81\\x1e\\xf1\\x4f\\xab\\xc6\\xe9\\x89\\x99\\x09\\xbd\\xcf\\x09\\xbf\\x9f\\xff\\xa1\\x97\\x8e\\xde\\x3b\\xbb\\xd1\\x1d\\xfb\\xf3\\xc7\\x8f\\x9e\\xa1\\x75\\x18\\x16\\x70\\xe7\\xfa\\xa0\\xf1\\xb5\\x69\\xbd\\xe1\\xeb\\xf8\\xeb\\xb8\\xdd\\x4f\\x66\\x77\\x0f\\x18\\xf9\\xf8\\xb4\\x7c\\xcd\\x35\\xd8\\x9d\\xae\\xda\\x04\\x9f\\x8b\\xca\\xe0\\x2b\\xed\\x6d\\xa5\\xe6\\x2e\\x9d\\xd1\\xd6\\x9d\\x84\\xec\\x49\\x7f\\x28\\x40\\x67\\xa2\\x32\\xe8\\x5a\\xfb\\xda\\x99\\x0c\\x6e\\xdc\\x65\\x6d\\xf3\\x8f\\x4e\\xd9\\xde\\x0a\\xf3\\x31\\x81\\x45\\xf4\\xe4\\xfe\\x8e\\xce\\xe2\\xd1\\xb0\\xc5\\x98\\x59\\xdb\\x70\\x8c\\xf0\\x8f\\x29\\xcd\\xba\\x7c\\x72\\x67\\xda\\x4a\\x5a\\x97\\xf6\\xaa\\xac\\x71\\x7f\\x52\\xde\\xf2\\x04\\x6d\\x7c\\x68\\xd9\\xf6\\x84\\x92\\x35\\xba\\x89\\xaa\\xb4\\xf9\\xb4\\x9d\\x35\\xdb\\x0a\\xad\\x27\\xb5\\xc8\\x5d\\x1f\\x8c\\x93\\x52\\xa4\\xeb\\x1d\\x26\\xab\\xa3\\xdf\\xee\\x7b\\x58\\x5b\\xe3\\xe6\\xef\\x45\\xff\\x2a\\x5b\\x9e\\x6f\\xf7\\xd3\\x8d\\x59\\xbd\\x09\\x5e\\xad\\xe1\\x29\\xda\\x81\\x6c\\xfc\\x16\\xeb\\xab\\xf6\\x3d\\x33\\x39\\x65\\xad\\x77\\x72\\x3a\\x66\\x24\\xaf\\xaf\\xc5\\x67\\x53\\x4f\\xc5\\xae\\x0f\\xd5\\x5e\\x5f\\x36\\x7b\\xd3\\x43\\x77\\x0f\\xbb\\xd2\\xf9\\x10\\x76\\xbf\\x19\\x4c\\x9c\\x36\\xfb\\xf9\\xb2\\xa4\\xab\\x09\\xc8\\x36\\x0a\\xc1\\xed\\x7a\\x6e\\x70\\x87\\x8d\\xbf\\x59\\x3c\\xad\\xb0\\xea\\x13\\xbf\\xc1\\x5f\\xbf\\x23\\x83\\x5b\\x3a\\x82\\xfa\\x83\\x92\\xb6\\xbf\\xf1\\x86\\xb4\\x4e\\xb1\\x3f\\x4f\\xa4\\x31\\x95\\x4a\\x7f\\x82\\xff\\xf3\\x2f\\x47\\x62\\xd0\\x78\\xd4\\x92\\xca\\xb4\\xcd\\xd4\\x37\\x6e\\xe1\\xfb\\x82\\x5d\\xb2\\xd2\\x0a\\xdd\\x68\\x36\\x2b\\xb4\\xc7\\xe7\\xd3\\xc1\\x1e\\x98\\x68\\x28\\x24\\x1c\\x6e\\x95\\xcd\\x28\\xf3\\x2d\\x13\\xb4\\xe5\\x85\\xf6\\xaa\\xad\\x05\\xd9\\x71\\x7b\\xfa\\x8a\\x8f\\xeb\\xb2\\x23\\x0a\\x27\\x8e\\x9a\\x66\\xe7\\xd3\\x33\\x2d\\x0a\\x1b\\x49\\xcc\\xcf\\x25\\xbe\\x80\\x76\\x0b\\x73\\x76\\x54\\x61\\x9c\\xea\\x62\\x8a\\x0e\\x26\\x16\\x48\\x45\\xd9\\xc5\\x72\\xbd\\x87\\x21\\xeb\\xbe\\x74\\x2a\\xdc\\x52\\xf9\\x04\\xde\\x26\\x96\\x35\\x97\\xd3\\xf9\\x09\\xbf\\x43\\x89\\x71\\x66\\x71\\x89\\xd6\\xec\\xd5\\xbb\\x96\\x29\\x41\\x4d\\xe5\\x8e\\x51\\x06\\xd3\\xb1\\x8b\\x93\\x94\\xc3\\x9a\\x0c\\x6e\\x24\\x9a\\x9b\\x56\\xb8\\x26\\xfb\\x41\\x49\\xc2\\x57\\x23\\x09\\x1e\\xf7\\x5f\\x27\\xbd\\xb2\\x7e\\xcd\\xb2\\x09\\xb9\\xdb\\xd8\\x33\\x95\\xaa\\xee\\xb9\\x95\\xd2\\x34\\x4c\\x9a\\x91\\x5b\\x7a\\xc4\\x13\\x39\\xa5\\x9d\\x0e\\x64\\xb5\\x67\\x36\\x2d\\xb2\\xb1\\xa4\\x11\\x45\\xf6\\xc3\\x81\\x2a\\x99\\x09\\x8d\\xc8\\xa0\\x80\\xb8\\x13\\x4d\\x56\\x50\\x1b\\x8d\\x81\\x30\\xf2\\x03\\xa5\\x40\\x8e\\x04\\x08\\xbd\\x7a\\xf1\\x3a\\xbf\\xdc\\x9a\\xbe\\x6a\\x7c\\x09\\xa9\\xbc\\x03\\xb5\\xc1\\xad\\xfd\\xf6\\x4b\\xf4\\xd2\\xb2\\x59\\x76\\x63\\x7a\\x62\\x87\\x75\\x0e\\x11\\x82\\x29\\x85\\xc9\\x12\\x63\\x30\\x6d\\x57\\x83\\xbd\\x63\\xd3\\x9a\\x22\\xa8\\x7e\\xfe\\xa0\\xb6\\xbd\\x2a\\xd6\\x89\\xfb\\x8a\\xe0\\x1e\\x4e\\x37\\xe8\\xca\\x32\\x0c\\xbd\\xe2\\x78\\xf5\\x13\\x23\\x6b\\x60\\x38\\xed\\x38\\x8d\\xd9\\x72\\x9d\\xd5\\x9a\\x1e\\xd7\\x01\\x42\\x5f\\x8d\\xf5\\x0e\\xef\\x24\\xe2\\xaa\\x6a\\xd1\\x5a\\x4a\\xbb\\x89\\x97\\x08\\x6f\\xfb\\x69\\xf1\\x96\\xe7\\xb3\\x7c\\x04\\x2a\\xa2\\x3b\\xb4\\x71\\xae\\x0c\\xa5\\x47\\x6f\\x8a\\xab\\xe4\\xfe\\x86\\x49\\x5b\\x04\\x34\\xd9\\x98\\x9c\\x42\\x32\\xe3\\x87\\x70\\x29\\x85\\xa4\\x2e\\xfb\\x86\\x33\\xe8\\xd3\\xfb\\x74\\xcd\\x86\\xa6\\x5d\\x52\\x2f\\x60\\x8d\\x37\\x86\\xa4\\xcd\\x14\\x49\\xbc\\x5b\\x58\\xdc\\x90\\xe4\\xa0\\x22\\x61\\x3e\\xae\\xb3\\xa1\\xaa\\xce\\xd3\\x26\\x77\\x92\\xe6\\xb0\\xb5\\x70\\x62\\xc6\\xa6\\xc8\\x1b\\x8a\\xce\\x23\\x64\\x61\\xc5\\xb4\\xb1\\x74\\xab\\xf6\\x46\\x7b\\x45\\xbb\\xf6\\x96\\xa2\\xfb\\x08\\x45\\x10\\x99\\x46\\x27\\x6c\\x1a\\xed\\x1f\\x4d\\xb6\\x0e\\x67\\xd9\\x75\\x89\\x6c\\x31\\xd1\\x5f\\x6c\\x25\\x89\\x6c\\x4c\\x74\\xde\\x03\\xb9\\x5b\\x07\\x0f\\x08\\x87\\xab\\x84\\x15\\xbb\\x4e\\xa6\\x1a\\x05\\x62\\xf9\\x9f\\x87\\xa7\\x43\\xdb\\x23\\x8e\\x1c\\x7b\\xf6\\xa4\\xd7\\xbe\\xef\\x8f\\x39\\x77\\x91\\xb9\\xbd\\x14\\xaf\\x87\\xbd\\x55\\x68\\xab\\x33\\x0b\\x63\\x6d\\x03\\x13\\x19\\xd5\\xb7\\x9d\\xe0\\x37\\xeb\\xd0\\xa6\\x8d\\x80\\x4e\\xe5\\x2c\\x38\\x28\\x3a\\xde\\x54\\x2f\\x75\\xb8\\xc4\\x81\\x27\\xd6\\xd0\\xb1\\xad\\x97\\x23\\xf6\\xd8\\x42\\x0c\\x65\\x7d\\x03\\xab\\x26\\x5e\\xae\\x33\\x25\\x89\\xe8\\x4e\\x93\\x2a\\x52\\xf7\\xf4\\x37\\x8e\\xeb\\xab\\xf0\\x2d\\x1f\\x7d\\xff\\x3f\\x1f\\xc1\\x15\\x74\\x66\\x58\\x58\\xcb\\x51\\xee\\x44\\xd8\\x2e\\x18\\xb4\\x67\\x8f\\xdd\\xed\\xb9\\xbb\\xd8\\xdd\\x1b\\xee\\xeb\\xcf\\x03\\x1a\\xe9\\xe0\\xb2\\x42\\x9b\\xfd\\x7c\\xb8\\x49\\xc0\\x70\\x80\\x8c\\x80\\x01\\x86\\xc4\\xaa\\xe2\\x76\\x2d\\xa7\\xaf\\x4f\\x77\\x03\\x58\\xfa\\xf8\\x33\\xe5\\xf6\\xd7\\x71\\x0d\\x3c\\xe2\\x44\\xb4\\xff\\xe4\\xcc\\x16\\x4c\\x15\\x6d\\x5d\\x37\\x27\\x13\\x5d\\xbf\\x25\\xf7\\xb2\\xef\\x50\\x5a\\x5b\\x9a\\x82\\x6d\\x7c\\xba\\xaf\\xd7\\xe7\\xfe\\x89\\xca\\x25\\x25\\xfb\\x65\\x03\\xaf\\x9d\\xf9\\xec\\x24\\x21\\x58\\x86\\x83\\x51\\x62\\x9b\\xbf\\x80\\xd3\\x37\\x57\\xd3\\x70\\xdd\\x41\\xae\\x77\\xfd\\xa1\\x90\\xdc\\x2a\\x58\\xbb\\x37\\x89\\x1f\\xde\\x05\\xe6\\x2e\\xd3\\x3c\\xad\\x8c\\xbb\\x5b\\xdf\\x7a\\x9c\\x5c\\xd0\\x36\\x9b\\xa7\\xdc\\xad\\xba\\x5d\\xa3\\xa1\\xda\\x6d\\x0e\\x15\\x15\\xaa\\x21\\xb0\\x50\\xa3\\x2c\\xc5\\x76\\x6b\\x30\\x88\\x80\\xad\\x5c\\x5f\\x00\\x15\\x8b\\x54\\x05\\x99\\x9d\\x06\\x0f\\x75\\x11\\x55\\x74\\x4a\\x5a\\x15\\xd1\\xef\\x0a\\x2e\\x79\\x65\\xd9\\x9e\\xcb\\x45\\xe9\\x4c\\xe5\\x6a\\x5d\\x28\\x8b\\xae\\xc2\\x3c\\x27\\x6a\\xf6\\x36\\x2b\\x5c\\x4b\\xd9\\x26\\x03\\xce\\x3c\\x95\\xb8\\x00\\x03\\x01\\xc2\\x2a\\xa7\\xb7\\x02\\x34\\x84\\x87\\xf3\\x8b\\xff\\x36\\x70\\xf6\\x0e\\x0b\\xca\\x96\\xad\\x72\\xfb\\x65\\x78\\xd7\\xb9\\x01\\xbc\\x5f\\x37\\xa4\\xcd\\xd6\\x15\\x2d\\xeb\\x58\\x9a\\x11\\x5d\\x76\\x4b\\x69\\x55\\x01\\x5c\\xee\\x59\\x7b\\x21\\xad\\xac\\xfd\\x92\\xbb\\x76\\x0c\\xbc\\xa4\\xb4\\x6a\\x04\\x6f\\x57\\x77\\x5d\\x4a\\x55\\xaa\\x44\\x63\\x6b\\xe2\\xb3\\x06\\x23\\xb8\\x7d\\xe3\\x00\\xa8\\x58\\xae\\x0e\\x61\\x6b\\x6c\\x14\\x82\\xed\\x54\\x17\\x95\\x48\\x60\\x24\\x28\\x99\\x49\\x62\\x56\\x27\\x02\\x82\\x8f\\x15\\xf9\\x09\\xba\\x34\\xc3\\x78\\x07\\x92\\x6f\\xce\\x98\\x73\\x39\\xf5\\xf9\\xd2\\xdb\\x3b\\x28\\x67\\x0f\\xd5\\xeb\\x67\\x8f\\x8a\\x0d\\x79\\x17\\x47\\x93\\x6c\\x26\\xb0\\x62\\x57\\x4e\\x83\\x06\\xf1\\xe0\\x44\\x70\\x89\\x5e\\x1d\\xc5\\x0e\\x93\\x75\\x9a\\xa3\\x00\\x55\\xff\\x39\\xa9\\x7b\\x3d\\x6e\\xc0\\x62\\x20\\x4d\\x25\\x7a\\x53\\xbe\\xed\\x22\\xb3\\xb1\\xf1\\x98\\xbc\\xaa\\x0d\\xbc\\xd8\\x5f\\xa0\\xc5\\x08\\xdc\\xb2\\x98\\x2a\\xc8\\x7f\\x8a\\x3d\\xc1\\x3f\\xd0\\xbb\\x5a\\x41\\x1b\\x1f\\x15\\x86\\x14\\x91\\xca\\x12\\xc2\\xf1\\xea\\xc4\\x28\\xab\\xd4\\x60\\x22\\x47\\x15\\xd4\\x32\\x23\\x1a\\x61\\x80\\x45\\x63\\x3e\\xfe\\xb8\\x74\\x56\\x9c\\xcf\\xbd\\x2a\\x1c\\x9e\\x16\\x29\\x13\\x5e\\xd7\\xce\\x27\\xf3\\xe2\\x4d\\x9c\\x60\\x72\\x83\\x32\\x86\\x64\\xde\\x43\\x2a\\x91\\xe5\\x64\\xef\\x42\\x61\\xb8\\x13\\xd8\\x9a\\xa7\\x5d\\x54\\x51\\x24\\xb5\\x13\\xc4\\x0c\\xb1\\x7e\\x21\\xca\\x7f\\x40\\x14\\xf0\\xff\\xdc\\x21\\xf6\\xb9\\x2f\\xde\\x7a\\x5a\\x52\\x1d\\xff\\x9a\\xe6\\x36\\xd7\\x74\\x33\\xad\\x68\\x5c\\x79\\xbb\\xf3\\xad\\x76\\xda\\xc3\\x7e\\xbd\\x1f\\x1b\\xd6\\x1e\\xac\\x74\\xcd\\x20\\x2b\\x59\\x3d\\x52\\x0c\\x12\\x42\\x85\\x74\\x43\\x25\\x04\\x20\\x3d\\x2d\\x9a\\x8d\\xc6\\xb7\\x78\\xe0\\x27\\x44\\xcf\\xcb\\x70\\x16\\x1a\\x4d\\x4b\\xc7\\x27\\xd5\\xc6\\x75\\x27\\x83\\x9a\\x83\\x01\\x45\\xff\\xb9\\x48\\x72\\x3d\\x76\\xc0\\xf4\\x9a\\x90\\x84\\x37\\xe3\\xb6\\xb6\\x33\\xf3\\xf3\\xba\\x42\\xe4\\x80\\xc2\\x8c\\xe7\\xee\\xfc\\x8e\\x62\\xd3\\x41\\xfc\\x1d\\xd5\\x6e\\xb5\\x8e\\x5b\\x8e\\xd8\\x02\\xf9\\x9b\\x0d\\xcb\\x2b\\x8b\\xc0\\x53\\x1d\\xaa\\xe3\\x5a\\x61\\xd5\\x29\\x58\\xdd\\x05\\x9d\\xa8\\x74\\xfb\\x16\\x58\\x73\\x88\\x50\\xaa\\xd1\\xe7\\x53\\x14\\x65\\x75\\xeb\\xd7\\xd6\\x8a\\x12\\x4f\\xe5\\xa8\\xd7\\x41\\xfb\\x43\\x50\\x9f\\x78\\x53\\x5e\\xde\\x1a\\x41\\x72\\xee\\xa0\\x28\\xa7\\x8c\\x3f\\xca\\x0c\\x79\\x3c\\x7a\\x8a\\xe6\\x2a\\xc9\\x2e\\x51\\x39\\x7c\\xaa\\xed\\xa1\\x39\\x0a\\x87\\x22\\xf3\\xf6\\xd7\\xbd\\x1e\\x32\\xd1\\xbd\\x39\\x7b\\x44\\x1b\\x34\\xaa\\x1d\\x58\\x0e\\xfe\\xca\\x21\\xeb\\x09\\xff\\x86\\xd5\\xc8\\xe2\\x85\\x6b\\x46\\xac\\x34\\xb6\\xd4\\x9d\\xab\\x6a\\x91\\x2b\\x1b\\xfc\\xad\\xaf\\x1f\\xda\\x8f\\xc4\\xd8\\x33\\x0c\\x4a\\x4d\\x10\\xab\\x3f\\xb2\\xc3\\x8c\\x12\\x6f\\x64\\x5a\\xc7\\xd7\\x55\\x21\\xca\\xa9\\x73\\x2d\\x79\\x88\\x43\\x64\\x55\\x2b\\xec\\xf1\\xf6\\x86\\x29\\xa5\\xe4\\x52\\x58\\xe0\\xf5\\xb6\\xc0\\xc6\\x76\\xfc\\xa1\\xbc\\x16\\xaa\\xc6\\xb1\\xbc\\xfa\\x99\\xf3\\x4e\\x3d\\x3a\\x65\\x6b\\xe6\\x50\\x2d\\x1f\\xa3\\x5b\\x18\\x73\\xa0\\xb2\\xc0\\x25\\x39\\xe6\\xfa\\x77\\x6d\\x32\\xb6\\x3b\\x52\\x12\\x5a\\x3c\\x5f\\x7c\\x1b\\x3e\\x2a\\xba\\x38\\x74\\x32\\xdd\\xfa\\x1d\\x73\\xfd\\x92\\x9c\\x60\\xe4\\xc2\\x4f\\x9f\\xd2\\xf2\\x5f\\x6c\\x17\\x9d\\x55\\x54\\x36\\x82\\xc7\\xea\\xb3\\xf9\\xbb\\x85\\x45\\x53\\x1a\\x79\\xcc\\xa9\\x88\\x38\\xf2\\x7e\\x93\\x54\\x0c\\xc6\\xaf\\x6d\\x5d\\xb7\\x2d\\x44\\xd8\\xb4\\xf2\\xd1\\x6c\\xd6\\x2d\\x6c\\x1c\\xbd\\x09\\x11\\x25\\x9c\\x1c\\x52\\x9f\\x82\\x14\\x1d\\xb7\\xd2\\x5b\\xf6\\x52\\x1e\\xb5\\x79\\xb7\\xc5\\x3d\\x6a\\xd9\\x34\\x91\\x51\\xda\\x71\\x05\\xa8\\xef\\x8a\\x3f\\xb7\\x54\\xa6\\x05\\xc7\\x38\\x57\\x43\\xc6\\x32\\x92\\x01\\x0a\\x4b\\xf5\\x11\\xd2\\x0e\\x56\\xc0\\xd2\\x59\\x83\\xf0\\x0b\\x3d\\x37\\xda\\xeb\\x1a\\x9a\\x4c\\xba\\x08\\x3e\\x6f\\x8d\\xd9\\xf8\\xf8\\x36\\x20\\xac\\x2e\\xfe\\x31\\x5e\\xbe\\xc3\\x09\\xcb\\x35\\xb4\\x45\\x1f\\xb7\\x26\\x1d\\xa4\\xfc\\x9b\\x3c\\xd3\\x93\\xe2\\xcb\\xbe\\x6d\\x49\\x78\\x08\\x6f\\x5d\\x71\\xa2\\xda\\x34\\xf9\\xbe\\x8d\\x88\\xde\\x43\\x32\\xaf\\xe6\\x04\\x0a\\x13\\x02\\x64\\xd3\\x3e\\x1a\\x36\\x45\\x84\\x3c\\x90\\x3c\\x0e\\x4e\\x2b\\xd8\\x02\\x72\\x5a\\x84\\x53\\x1c\\x8e\\xf0\\x30\\x47\\xb5\\x05\\xca\\xfe\\xb5\\x71\\xa1\\xf1\\x65\\xcd\\x7d\\xeb\\xbe\\xdc\\xf1\\xed\\x13\\xcc\\xe3\\x91\\x8b\\x3e\\xc1\\x2f\\xe4\\x27\\xfa\\x69\\xf0\\xbb\\x1e\\x32\\xf8\\xd7\\x8f\\x5d\\xed\\x37\\xad\\x16\\x16\\xec\\xe7\\xaa\\xca\\xc1\\xbd\\xb5\\x97\\xb5\\xad\\x46\\x99\\xee\\x50\\x6e\\x8a\\x9c\\x3a\\xbd\\xf2\\xf1\\xf0\\xac\\xa1\\x1b\\x84\\x3f\\x36\\xaf\\x41\\x35\\x55\\x7f\\x74\\x34\\xd1\\x2f\\xa2\\x30\\x09\\x5a\\xfb\\xd3\\x6e\\xc5\\xed\\xca\\x29\\x6d\\x63\\x09\\xe9\\x50\\x59\\x3e\\x32\\xbd\\x46\\x39\\x05\\x56\\xde\\x57\\xf3\\x0d\\xef\\xfa\\xfa\\xf3\\x76\\x1a\\x4f\\xd4\\x90\\x11\\x5f\\x2c\\x16\\xe2\\xf3\\x21\\x28\\x42\\x45\\x79\\x06\\x57\\xc5\\x1b\\x02\\x71\\xe4\\x45\\x67\\x9a\\xfa\\x79\\x12\\x8b\\xb7\\x0f\\xfe\\x42\\x6f\\x8b\\x53\\xfa\\xb9\\x39\\x15\\x63\\x4f\\xdc\\xc7\\x28\\x44\\x5c\\xd1\\xc8\\xf9\\xd0\\x93\\x3f\\x24\\x0a\\xa8\\xfc\\x58\\x14\\x76\\x44\\x68\\xfe\\xcf\\x87\\xfe\\x19\\x48\\x4f\\x79\\x48\\xe7\\xc7\\x15\\x7e\\x5b\\xcb\\x21\\x7f\\xce\\xfc\\x9c\\x15\\x11\\xd0\\x16\\xc6\\x50\\xca\\x09\\x80\\x22\\xdb\\x25\\xe4\\x10\\x9c\\x7a\\x75\\x35\\xc9\\x2c\\x0f\\xe0\\x0d\\x32\\xba\\x9d\\x3b\\xcf\\x72\\xee\\xdc\\x24\\x3a\\x25\\x13\\x74\\xdc\\x0e\\xdc\\x28\\x8a\\xdb\\x53\\xe1\\x8f\\x2b\\x54\\x3a\\xf3\\x40\\x5f\\x07\\x63\\x70\\xb4\\x56\\xe0\\x3c\\x38\\x2a\\xb9\\x18\\xda\\x11\\xbc\\xc6\\x1f\\x14\\xe4\\x1c\\x8c\\xae\\xf8\\xae\\xc9\\x33\\x6b\\x23\\x24\\xc0\\xd4\\x48\\xb2\\x69\\xe9\\x1e\\x61\\xef\\x58\\x53\\xcf\\xb3\\x93\\xd4\\x40\\xcf\\xec\\xe5\\x0d\\x5a\\x79\\xb4\\xef\\x8d\\x47\\x52\\x0d\\x71\\xf8\\xab\\xb1\\x3b\\xca\\xc7\\x13\\x20\\x12\\xe8\\x38\\x06\\xc4\\xdc\\xb5\\x3d\\x29\\x5f\\x73\\x7b\\xcd\\x2f\\x5f\\x5c\\x4b\\x56\\x9f\\x02\\x9a\\x31\\x01\\xbc\\x6e\\xa8\\xbb\\xc2\\xcc\\x1f\\x2d\\xdd\\xd2\\x95\\xc8\\x5d\\x47\\x54\\x51\\x65\\x05\\xd6\\x1e\\xb6\\x17\\xad\\x4b\\xfb\\xce\\xea\\xf2\\x1c\\x7d\\xef\\x05\\xa8\\x8f\\x3e\\x95\\x9a\\x74\\x0a\\x45\\xc6\\x27\\x73\\xe2\\x02\\x11\\xbc\\x0b\\x31\\x5b\\x04\\x45\\x7d\\x90\\x97\\x4d\\x42\\xc2\\x56\\x33\\xc3\\xd5\\x57\\x5b\\x21\\x15\\x87\\x45\\xf2\\x7a\\xf5\\xd9\\xaa\\x2b\\xda\\x36\\x07\\xdb\\x8a\\x15\\x09\\xb6\\x22\\xf5\\x10\\xf4\\xd8\\x98\\x8f\\x95\\x64\\x56\\xb3\\x47\\xf3\\x46\\xb3\\x5b\\xf3\\x41\\x9f\\x64\\xf2\\x32\\xab\\x8b\\x32\\x50\\x7b\\x35\\x09\\xf7\\x7e\\x5e\\xd7\\x0f\\x1e\\xb3\\x2a\\x0a\\x20\\xb1\\xae\\xe5\\xbc\\xa6\\x22\\xaa\\x3d\\xc0\\x61\\x6b\\x27\\x2b\\x14\\xe7\\x75\\xa5\\x25\\x8f\\x4d\\x7f\\xeb\\xb9\\xb4\\xdd\\x73\\x3d\\xc8\\xe1\\x4c\\xbf\\x50\\x90\\xe9\\xd9\\x56\\xe0\\x0c\\xf0\\x52\\x9e\\x66\\x93\\x8b\\x87\\xd5\\x9c\\x06\\xc1\\x3e\\x0e\\x5b\\x34\\xc9\\x57\\x4c\\xe8\\x38\\x34\\x7f\\xb4\\xf5\\xbd\\x1b\\x00\\xaf\\x56\\xdf\\xdb\\x26\\xaf\\x71\\x8c\\xdd\\x4e\\xa4\\xf8\\x02\\xa1\\x20\\xde\\xa3\\x9b\\x70\\xc7\\xa4\\x93\\xba\\xdf\\x8c\\xef\\x75\\xae\\x7c\\xfb\\x79\\xe7\\xce\\xbd\\x0c\\xf9\\xfb\\x3a\\x31\\xe8\\x06\\xc8\\x1e\\x60\\xa8\\x36\\x6c\\x5c\\x98\\xc5\\x1f\\xbc\\x73\\x30\\x3a\\x8f\\x3a\\x16\\x97\\x5f\\x29\\x82\\xc0\\x32\\x26\\x68\\x27\\x34\\x2e\\x88\\x5d\\x11\\x1a\\x9e\\x19\\x6c\\x3b\\x43\\x55\\xb4\\xdc\\x4a\\x6d\\xdf\\x9d\\xf8\\xb0\\x2d\\xba\\xcd\\xf2\\xb0\\x63\\x78\\x2e\\xa5\\xbc\\xe1\\x22\\xd2\\xd0\\x1f\\x7b\\x31\\xa6\\x84\\x60\\x78\\xed\\x17\\xef\\x04\\xe4\\xe8\\xbe\\x31\\x88\\xbe\\x94\\x53\\xf9\\x99\\x5b\\x2e\\x78\\xb6\\x96\\xd3\\xbb\\x64\\x0c\\xb2\\xef\\xe8\\x04\\x44\\xff\\x85\\xb9\\x67\\xa5\\x0a\\x61\\x06\\xa9\\xc4\\xd7\\xe0\\xe6\\x15\\xaa\\xcc\\x8f\\xb2\\x8c\\xcb\\xe1\\xe6\\xd7\\x50\\x54\\x10\\x6f\\x5e\\x59\\x9e\\x15\\xe0\\xd9\\x17\\x20\\x93\\x62\\x28\\x7d\\xfd\\xc1\\xeb\\xcf\\xb4\\x08\\x28\\xfb\\x37\\x8a\\x67\\x82\\x3b\\x1f\\x58\\x60\\xdc\\xdb\\x39\\xa6\\xa4\\x6b\\x6d\\xf7\\xdd\\x17\\x77\\x7b\\x3a\\x6b\\x02\\x18\\xcd\\xff\\x8a\\x8f\\x5a\\x4a\\xd6\\xaa\\x4e\\x15\\x56\\x27\\xc9\\xc0\\x8d\\xbe\\xce\\x4b\\x54\\x65\\xfb\\x25\\x57\\xed\\x28\\x78\\xa1\\xcc\\x6a\\x61\\xc8\\x54\\xac\\xfd\\xc0\\xec\\xb1\\x12\\x69\\x6a\\x81\\x3b\\x65\\xe0\\xb1\\xd3\\x9d\\xdc\\xc0\\x96\\x20\\xba\\x89\\x9e\\x9e\\xf0\\x8f\\x84\\xef\\x75\\xa8\\x5a\\x57\\xa5\\x12\\xf4\\xc7\\x9c\\xd8\\x5b\\x24\\x36\\x5f\\xe3\\xc6\\xd6\\x6b\\x52\\x90\\xac\\x0e\\x75\\x41\\xa9\\x58\\x8f\\x04\\xc5\\x9a\\x82\\xac\\x0e\\x24\\x45\\x93\\x55\\xaf\\x75\\x07\\xf9\\xf2\\x1d\\xd8\\x53\\x05\\x7b\\x49\\x65\\x66\\x6d\\xd4\\x6a\\x29\\x6a\\xf3\\xe3\\x1b\\x33\\x1a\\xd7\\x7b\\x93\\x14\\xcd\\x75\\xd6\\x83\\x54\\xfe\\x8a\\xab\\x66\\x2b\\x39\\xb9\\x7a\\x48\\xe7\\x47\\xcb\\x57\\x1c\\xbc\\x7c\\xa7\\x2a\\xa6\\x46\\x57\\xf3\\x10\\x07\\x3d\\x2e\\x3f\\xd8\\xa1\\xc1\\x8e\\xd8\\x0d\\x4c\\x81\\xb1\\xc9\\x84\\xb5\\xab\\xcb\\xab\\xe0\\xfc\\x4a\\xd0\\x5b\\xbf\\x21\\xe8\\x66\\xef\\xc1\\x33\\x84\\x01\\xcc\\xfe\\x7e\\xf7\\xe9\\x7b\\xff\\xd1\\x4e\\x17\\x97\\x58\\x6a\\xaa\\xa9\\xd7\\xe8\\xd4\\xf4\\xb9\\xad\\xe9\\xd5\\x58\\xd0\\xfd\\x21\\xc0\\x78\\xab\\x16\\xf5\\x15\\xa9\\xc5\\x16\\xc2\\x54\\xe0\\x35\\x44\\x2c\\x8f\\x9f\\xa2\\xbf\\x35\\x62\\xd2\\x64\\x8e\\x09\\xb3\\xd2\\xd4\\xa2\\xfc\\x64\\x90\\x92\\x8b\\xff\\x29\\x31\\xbe\\x63\\xd0\\x7d\\x90\\xcd\\xad\\x39\\x4d\\xaf\\xb4\\xc3\\xad\\xb6\\xca\\x96\\x7a\\x01\\xa9\\x02\\x5f\\xd3\\x57\\x64\\x33\\x75\\x0c\\xb9\\x4f\\xb0\\xc4\\x85\\xb3\\xb4\\x8e\\xb4\\xcc\\x01\\xff\\x47\\x04\\x0a\\xb3\\x82\\x19\\x6a\\x75\\x61\\xfa\\x7b\\xdf\\xc4\\x53\\xba\\xf4\\xad\\x9f\\x1f\\xa1\\x06\\xe6\\x29\\xe7\\xb4\\xf3\\xdf\\x97\\x9e\\xbe\\xf9\\x1c\\x29\\xa7\\xf7\\x1e\\x96\\x62\\xeb\\xd8\\x60\\xd6\\x51\\xfa\\x41\\x83\\xab\\x3e\\x52\\x1a\\x8c\\x28\\x95\\xf3\\xe5\\xb9\\xcb\\x37\\xb8\\xbd\\x61\\x6e\\x7c\\x2a\\x49\\x2e\\xc1\\xb4\\x48\\x4b\\x61\\x2e\\xad\\x7c\\xe5\\x16\\xd9\\x35\\xb7\\x12\\xea\\x72\\x05\\x94\\xa5\\xfc\\xa4\\xe0\\x68\\xe5\\xce\\x73\\x12\\xe9\\x27\\x58\\x2e\\x41\\x3c\\x7f\\x6a\\xf1\\x94\\x16\\xab\\x9d\\x67\\xcf\\x6b\\x0f\\x04\\xce\\x95\\x5f\\x2a\\xd7\\x62\\xf7\\xc1\\xe2\\x9a\\xbb\\xa7\\xbb\\xb5\\x95\\x53\\x37\\x83\\x61\\x5e\\x6a\\x85\\xf4\\xbc\\xa0\\x6b\\x67\\x5e\\x5e\\xd2\\x8d\\x95\\x49\\xb6\\x05\\xfc\\x45\\xc3\\xd2\\xe3\\x02\\xab\\x48\\x48\\xa2\\x13\\x82\\xa2\\xe3\\xca\\x70\\x1e\\x3b\\xb1\\x05\\xc3\\x5a\\xd0\\x01\\xc1\\x14\\x59\\x72\\x84\\xe5\\x03\\xe1\\xbb\\x27\\x67\\xc3\\x6d\\xac\\xfc\\xe4\\x88\\xc2\\x26\\x4f\\x8a\\x30\\x7c\\x00\\x74\\xf7\\xd8\\x71\\x3c\\x91\\xe1\\x4b\\xae\\x90\\x11\\xe2\\xe6\\xb1\\xf3\\x95\\x27\\xbb\\x35\\x95\\xfd\\x49\\xbf\\xdf\\x27\\x78\\x93\\x8c\\xf3\\xc5\\xa7\\xfa\\x4c\\xa2\\x25\\x67\\x04\\xea\\x72\\x68\\x4f\\x55\\xc2\\x5c\\x42\\x78\\x76\\xee\\xb8\\xcf\\x46\\x89\\x74\\xaf\\x9c\\x30\\xd4\\xba\\x5b\\x21\\xca\\xee\\xc9\\xee\\xd7\\x2f\\xa3\\xbf\\xc3\\xfe\\x83\\x75\\x49\\xbe\\xf7\\xdd\\xf2\\xca\\xfc\\xa4\\xff\\x9e\\x27\\x34\\x2a\\x31\\xba\\x63\\x3b\\x85\\x9b\\x04\\x85\\xf9\\xd2\\x0e\\xd4\\x24\\xed\\xab\\x2e\\xd9\\x27\\x11\\x4e\\xf4\\xda\\x3c\\x0b\\xa1\\xfa\\x1e\\xf6\\x27\\x65\\xee\\x71\\x85\\x67\\x52\\xf6\\x90\\x60\\x42\\x5e\\xe0\\x94\\x86\\xb5\\x45\\xc8\\xf4\\x73\\xbb\\x50\\x13\\xb7\\xaf\\xf8\\xa3\\x96\\xb0\\xa8\\xca\\xef\\x7c\\x17\\x61\\x57\\xd4\\x6d\\xbf\\x47\\x00\\x0d\\x77\\x8f\\xe1\\x29\\x38\\xfc\\x9a\\xe9\\x16\\x6f\\xcc\\x9a\\x53\\x5e\\xa2\\x29\\xa1\\xb4\\x50\\xde\\x67\\x35\\xcb\\xfb\\xeb\\x8a\\xa7\\xc4\\x22\\xac\\x72\\x2e\\x3a\\x8c\\x2d\\x41\\x33\\xde\\x8b\\x75\\xc4\\xa1\\x1f\\x52\\x60\\x12\\x06\\x59\\x34\\xec\\x93\\x99\\xf9\\xb3\\x0b\\x91\\xfe\\x39\\x35\\x7e\\x53\\x1f\\x7f\\x46\\x95\\x3b\\x74\\x27\\xab\\x76\\x5c\\x77\\x61\\xa2\\x80\\xac\\xbb\\xb7\\x2c\\xbd\\x93\\xd9\\x10\\xde\\xaf\\xaa\\xa8\\x86\\x27\\xfc\\x4b\\x5e\\x39\\xb6\\xf7\\x32\\x51\\x62\\xb4\\x8c\\x0f\\x38\\xf1\\xd5\\x68\\xed\\xd1\\x9a\\x2c\\x62\\xb9\\xce\\x12\\x62\\xa3\\x86\\x96\\xf2\\x45\\x7c\\xff\\x53\\xb9\\x35\\x6b\\x0d\\xf4\\x92\\xad\\xce\\xdc\\xad\\x9c\\x69\\x59\\x6c\\x34\\x20\\x4d\\x6e\\x4e\\x66\\x15\\x6c\\x30\\xe4\\xf6\\x0a\\x4e\\xac\\xca\\xe7\\xdd\\xfa\\x4a\\xfa\\x1a\\x0f\\x20\\x2b\\x2a\\x10\\x45\\x5e\\x26\\xc3\\x8b\\x2b\\x7a\\x3a\\x93\\x0c\\xf0\\x77\\xe0\\x13\\x7d\\xf9\\x75\\x5c\\x5e\\x41\\xdc\\x02\\x7f\\xc1\\x62\\xe7\\x7a\\x50\\x6f\\xbb\\xff\\xf9\\x7d\\x7c\\xca\\xbd\\x7a\\x6f\\x38\\x5e\\xd9\\x17\\x2d\\x9c\\x12\\x09\\xef\\x31\\x1d\\x0c\\x2f\\x90\\xec\\xf9\\x1c\\x25\\x5e\\x64\\xc6\\xfe\\x2d\\x12\\xd1\\xca\\x4f\\xff\\xdf\\x60\\x84\\xfe\\x9d\\x70\\x05\\x64\\x9e\\xcd\\xdb\\xcc\\x60\\x0d\\xf0\\xd2\\x48\\x33\\x06\\xab\\xcf\\x35\\x0c\\xee\\xd8\\x6e\\x10\\x11\\x55\\xec\\x05\\x63\\x6e\\xdc\\x3f\\x81\\x1f\\x3a\\x35\\x7a\\x6a\\xbf\\x66\\xff\\xb7\\xc4\\xfa\\x89\\x12\\x54\\xa0\\x22\\x9e\\xda\\x49\\x88\\xa0\\x65\\xc7\\x42\\x34\\x7c\\x58\\x63\\x2d\\xe4\\xa0\\xc2\\x72\\x65\\x4f\\x72\\xc9\\xa8\\x88\\x57\\x28\\xea\\xb7\\x5a\\x45\\x03\\xbc\\xb2\\x5f\\xc2\\xc2\\x74\\x8c\\x2c\\xdf\\xe0\\xf2\\x26\\x63\\xe3\\xfa\\x24\\x36\\x0b\\xd3\\x92\\x49\\x26\\x3c\\x7f\\xff\\x1a\\x07\\x0b\\x25\\x33\\xf7\\xe1\\x8c\\x10\\x8e\\xb1\\xe1\\x23\\x1e\\xb2\\xe2\\x03\\x67\\x37\\x6a\\xab\\x68\\x05\\x9b\\x45\\xac\\x22\\x7e\\x9f\\xd5\\xca\\x1f\\x60\\xb1\\x36\\x4b\\xb2\\xd3\\x3e\\x3d\\xf2\\x77\\x9a\\x7e\\x4d\\xdf\\x82\\x8d\\xa6\\x91\\xd9\\xff\\xfe\\x25\\x81\\x7b\\xfb\\x97\\xbc\\x73\\x80\\x99\\x77\\x01\\x6b\\x36\\x25\\x41\\xe3\\x44\\xdf\\x68\\xdf\\x0e\\xcd\\x0e\\x58\\x58\\x5a\\x0a\\xb3\\xf7\\xb9\\x4a\\x0d\\xb6\\x30\\x3c\\xc7\\x67\\x29\\x19\\x26\\xc9\\x2c\\x33\\x9b\\xb7\\x3e\\x9d\\xd1\\xcc\\x46\\x4c\\xcd\\x20\\x09\\xcc\\x01\\xa3\\xa0\\xde\\xd0\\xc6\\xf6\\xf8\\xf9\\xeb\\xb3\\x99\\x5f\\x31\\x69\\x62\\x07\\x93\\x23\\x75\\xf8\\x8a\\xbf\\x67\\xd2\\x54\\x0e\\x3e\\x95\\xf7\\xd9\\x9f\\x83\\x92\\x55\\x1f\\xa6\\xc6\\x96\\xb4\\xdc\\x46\\x0e\\x6c\\x6e\\x42\\x72\\x76\\xd1\\x46\\x11\\xa3\\xbe\\x99\\x93\\x57\\xc4\\xdd\\xc2\\x7c\\xb4\\xf4\\x88\\xe5\\xeb\\x65\\xf2\\xa5\\xde\\x92\\x0f\\xdf\\x3e\\x62\\x85\\x7a\\x85\\x54\\x0e\\x61\\x85\\xe1\\x22\\x62\\xca\\x1a\\xad\\x68\\x52\\x28\\x2d\\x90\\xf7\\x58\\x2c\\xf2\\xbe\\xba\\xa2\\x49\\x91\\xe8\\xd3\\xc0\\xd9\\xd1\\xb1\\x08\\x6d\\x84\\x0b\\xf9\\x47\\xff\\xf9\\x20\\x4a\\x7a\\xfa\\xb3\\x20\\xcb\\xf8\\x3e\\xc5\\x5e\\x22\\x4b\\x7a\\x9c\\xd2\\xc5\\xed\\x66\\xbf\\x99\\xbb\\x69\\x1b\\x23\\xdf\\xb6\\x46\\x92\\x17\\x15\\x9f\\x56\\xdd\\xb3\\x5d\\xcd\\x44\\x82\\x08\\x9d\\xa3\\x00\\x08\\x95\\xcb\\x5b\\x62\\x7d\\x1f\\x2f\\x2e\\xbb\\xa1\\x2b\\xf7\\x08\\xd1\\x41\\x9e\\x1b\\x09\\x07\\xac\\x66\\x90\\xde\\xd1\\x29\\x0e\\x3e\\xca\\x92\\xf5\\xcb\\xac\\xe1\\x6d\\xbe\\xdc\\xbd\\xec\\x3b\\x55\\x59\\x5d\\x1b\\xbf\\x99\\x9a\\x15\\xbc\\x88\\x6d\\x7c\\xf8\\x0e\\x30\\x39\\x89\\xe8\\x35\\x3b\\x5d\\xa8\\x71\\xc4\\x10\\x1e\\x83\\x92\\x82\\xfb\\x0b\\xfc\\x6d\\x7c\\xa8\\x78\\x8b\\x89\\x39\\x20\\x38\\xb8\\x8a\\x2b\\x7f\\xf8\\x16\\xfb\\xdd\\x82\\x7c\\x15\\xc7\\xef\\x14\\xb3\\x6e\\x4b\\x3c\\x13\\xed\\xe4\\xf9\\x4a\\x04\\x5b\\x80\\xec\\x8f\\x40\\x89\\xc1\\x81\\x01\\x9a\\x1f\\xde\\xbe\\x92\\x83\\xf8\\x61\\x31\\xe8\\xdc\\xc1\\xf2\\x83\\x1f\\x1e\\x94\\xb4\\x9f\\xfc\\x89\\x08\\x9a\\x7d\\xe1\\xf8\\xd6\\xd8\\x0f\\x63\\x3e\\xe5\\xd0\\xdf\\xee\\x01\\x9f\\xd9\\x46\\xd2\\xef\\x39\\x9b\\x48\\xda\\xaf\\x30\\x92\\xf2\\x73\\x58\\x8b\\xf2\\xd7\\x73\\x73\\xa6\\xc5\\xae\\x69\\xfe\\x74\\x3f\\x43\\x91\\x70\\xcf\\xef\\xde\\xd6\\x79\\xff\\xe2\\xbb\\x0f\\x24\\x73\\x03\\xf3\\x77\\x7d\\xe4\\xb4\\xbb\\x41\\x37\\x8d\\x79\\x41\\xf7\\x2c\\x29\\xb3\\x0f\\x7d\\xba\\xae\\xfa\\xee\\x04\\x28\\x6e\\x9b\\x89\\xe3\\x8f\\x9b\\x45\\x3a\\x57\\x3f\\xa0\\x99\\xd6\\x98\\xbd\\x85\\x7d\\x4b\\x71\\xe6\\x85\\x92\\x79\\x4b\\xb2\\xf2\\x3d\\xcf\\x07\\xc7\\xd2\\xc3\\x24\\x62\\x77\\x6a\\xee\\xc2\\x7a\\x2f\\x86\\x9f\\xb7\\x89\\xb3\\x6d\\x7e\\x5b\\xa0\\xb9\\x3e\\x3f\\x4a\\xe5\\xe6\\xcd\\x67\\x68\\xa8\\x51\\xf4\\x90\\xc4\\x87\\xd4\\x79\\xbe\\x9b\\x99\\x8c\\xf5\\xcc\\xcc\\x05\\xf1\\x23\\x49\\x3f\\x53\\x0f\\x8c\\xa4\\x7b\\x8a\\x43\\xc5\\xc8\\x12\\xb1\\x9f\\xb9\\x90\\xba\\x3e\\xf7\\x85\\x76\\x44\\x7f\\x55\\xdc\\xa3\\x5b\\x08\\x72\\xd2\\x21\\xcd\\x1e\\x1f\\xc4\\x6b\\x8f\\x7e\\x72\\x19\\xf6\\xa5\\xe6\\x05\\x6b\\xcd\\xc6\\xa4\\x9c\\x06\\xbe\\x71\\xb1\\xe5\\x5f\\x5a\\xee\\x1f\\xf1\\xce\\xde\\xdc\\xf6\\x85\\xf7\\xd3\\x3d\\xbb\\x23\\x2f\\xce\\x27\\xc3\\x0c\\x16\\xbe\\x18\\xd0\\x7f\\xb9\\xee\\xa7\\x35\\xc8\\x1d\\x74\\x7f\\xf2\\x5f\\xfa\\x44\\x37\\x54\\x96\\xbe\\x80\\x3b\\x11\\x02\\x21\\x83\\x99\\x28\\x8c\\x79\\x67\\x2b\\xf4\\x30\\x3f\\xee\\xa5\\x88\\x21\\x1d\\x78\\x1a\\x63\\xcd\\xfe\\x6b\\xd8\\x97\\x96\\x72\\x2e\\x3f\\xfb\\xfe\\x71\\x4c\\x6a\\xd6\\xb4\\x73\\x44\\x07\\x7e\\xde\\xbe\\x97\\xa3\\x69\\x06\\xe7\\xd2\\xf5\\xa0\\xee\\x89\\x2d\\xa1\\xd6\\x7c\\xba\\x01\\x5a\\x00\\xff\\xab\\x87\\x0b\\x59\\x20\\xa0\\x44\\x36\\x63\\x19\\xee\\x77\\x87\\x24\\x1e\\x0b\\x67\\xfa\\x9a\\xed\\x08\\x65\\xdd\\x85\\xd7\\x5d\\x14\\x34\\x72\\x28\\xdb\\x03\\xb2\\x9e\\xa9\\x06\\xaf\\x21\\xf7\\xb6\\xd1\\x3a\\x01\\xf9\\xe0\\x80\\xf4\\x98\\x5c\\x22\\x36\\x5e\\xe1\\xb8\\x3e\\x79\\x73\\x84\\xe2\\xda\\x79\\xa7\\x20\\xca\\xee\\xe3\\xd4\\x61\\x40\\x23\\x3f\\x52\\x00\\xf7\\x13\\x9c\\x22\\x75\\x09\\x11\\xd4\\x10\\x73\\x85\\x5d\\xbb\\xbb\\x06\\xb6\\xcd\\x1b\\x36\\x6e\\x1d\\x74\\xfc\\x6e\\xca\\xf0\\xa8\\x57\\xe7\\x25\\x7b\\xd6\\x12\\xe0\\x67\\x79\\xe9\\x49\\x8a\\xac\\x4b\\x70\\xc1\\x31\\x9a\\xda\\x0a\\x37\\x5a\\x1c\\xc1\\x36\\x1f\\xa9\\x0a\\x5f\\xdf\\xe1\\xb1\\x81\\x1d\\x6d\\xb9\\x87\\x59\\x5c\\x81\\xf9\\x0f\\x8c\\xeb\\x37\\x8b\\x70\\xb9\\x73\\x9b\\x9b\\xa7\\xb3\\x79\\x78\\xd5\\xab\\x48\\xde\\x21\\x9f\\xae\\x1b\\x67\\xe3\\xd5\\xb6\\xbb\\x74\\x96\\x35\\x68\\xdd\\x8e\\xfd\\x46\\x44\\x0b\\xbb\\x57\\x44\\xec\\xf9\\x39\\x85\\x6b\\x39\\x14\\x60\\x3c\\x84\\xb6\\x1e\\xe1\\x33\\x01\\x60\\x5a\\xdb\\x72\\xca\\x0a\\x27\\xe0\\x20\\xbf\\x0b\\x95\\x7e\\x96\\xce\\x42\\xa9\\xac\\x89\\x15\\x87\\x27\\x60\\x29\\x60\\x29\\x3e\\x0f\\xf7\\xd4\\x59\\x29\\x91\\xea\\xd8\\x42\\x06\\x3a\\xab\\x9f\\x25\\x2b\\xd9\\x8c\\x55\\x64\\x46\\xbf\\xfc\\x21\\x96\\xa2\\xee\\xb0\\x3b\\x42\\x54\\xe0\\x16\\x70\\x7b\\x27\\xef\\x8c\\x15\\x3e\\xf5\\x88\\x54\\x93\\x7e\\xfd\\x0c\\x09\\xe8\\xaa\\xa4\\x80\\xd2\\xde\\x76\\x0f\\x33\\x36\\xb0\\x36\\xdf\\x41\\x36\\x62\\x7d\\xce\\xaf\\xdf\\x04\\xbd\\x6b\\xd1\\x22\\x29\\xe7\\x65\\xdb\\x37\\xb1\\xbf\\x33\\xc6\\x3e\\x94\\xaf\\xb9\\x94\\x54\\xdf\\x14\\x6b\\xd6\\x57\\x19\\x0c\\x83\\xa4\\x71\\xf9\\x37\\x79\\x73\\x37\\xb9\\xbe\\x32\\x56\\x6f\\x6a\\x32\\xd8\\x07\\xe9\\xe3\\x72\\x23\\x6f\\xb3\\xd3\\x2c\\xe2\\xec\\xaa\\x5d\\x4b\\xcd\\x88\\x6c\\x99\\xc3\\x25\\x51\\x2e\\xdb\\xb1\\xab\\x8c\\xb3\\x70\\x18\\x8c\\x22\\xf0\\x17\\x3b\\x14\\x3c\\xf5\\x21\\xc1\\xd2\\xb5\\xb4\\x89\\x30\\x36\\x13\\xd1\\xee\\x37\\x8c\\x75\\xa8\\x48\\x33\\x2d\\x2d\\x8c\\x41\\xb7\\xb0\\x86\\xb1\\xe1\\xfc\\x5d\\x6b\\x09\\x01\\xd4\\x56\\xf2\\x73\\xc9\\x03\\x5d\\xe9\\xbe\\xfc\\x1e\\xb7\\x63\\x9c\\x7c\\xa5\\x69\\x0a\\xd0\\x0d\\x7c\\xe5\\xec\\xe3\\x94\\x83\\x1b\\x3c\\xdb\\x6f\\x7a\\x2a\\x2f\\xd1\\x7e\\x54\\xab\\x9b\\x63\\x49\\x97\\x5d\\x21\\x97\\xcd\\xe2\\x26\\xdc\\x1d\\x93\\xad\\xec\\xa1\\xb2\\x17\\x6b\\x59\\x2c\\x5c\\x46\\x0d\\xff\\xd3\\x50\\x8b\\xd9\\x6b\\x5b\\x17\\xf6\\x2e\\x00\\xd6\\x2f\\x17\\x8e\\x2d\\xec\\x49\\x1b\\x0e\\x7d\\xb1\\x3e\\xc9\\x0e\\xc0\\x5d\\x1d\\x3d\\x0b\\xb8\\x9c\\xb8\\xfa\\xec\\xd9\\x54\\xd0\\x14\\x2a\\x46\\xcf\\x02\\x3c\\xb3\\x9e\\x3e\\x51\\x61\\x58\\xb5\\x9b\\x3f\\x59\\x14\\xb4\\x29\\x2f\\x7b\\x88\\x93\\x64\\x88\\xaa\\x8a\\xac\\x8d\\x2a\\xbd\\x7d\\x88\\xc3\\x2a\\x90\\x6c\\xca\\x9d\\x54\\x21\\x2d\\xe0\\x8f\\x8a\\xb2\\xee\\x90\\xb3\\x22\\xf5\\x37\\x0a\\xf0\\x6e\\x09\\x4f\\xe6\\xf0\\x7d\\xf4\\xee\\x31\\x6d\\x38\\x8e\\x27\\x82\\xdc\\x05\\x37\\xea\\xe8\\x95\\xfa\\x87\\x0f\\x5b\\xd0\\x09\\x9d\\xe4\\x72\\xb6\\x9b\\x42\\xe1\\x6d\\x0b\\xb6\\xd8\\xe0\\x22\\xeb\\xa9\\xac\\x17\\x15\\x53\\xca\\xd8\\xf5\\x64\\xfd\\x6b\\x2a\\x03\\x74\\x2c\\x35\\xb0\\xa3\\xc2\\xa1\\xc6\\xb3\\xa2\\xb3\\xd0\\xbf\\xdc\\x6e\\x1a\\xe4\\xb1\\x83\\xb2\\x31\\x6e\\xad\\x5f\\x30\\x94\\x95\\xd5\\xc4\\x04\\xd0\\x46\\x23\\x51\\xaf\\x3d\\xa3\\x46\\x14\\xbc\\x6c\\xf2\\x7a\\x05\\x43\\x8c\\xda\\x90\\x6c\\x8c\\xc3\\x1e\\xe0\\xc5\\x9f\\xd3\\x44\\x07\\x5a\\x9b\\xfd\\xdc\\x3c\\xb6\\x48\\x06\\x7b\\x31\\xef\\x43\\x96\\x0a\\x16\\xb1\\x58\\x79\\xfe\\xe6\\x56\\x28\\xa0\\x7e\\x7e\\xb1\\x05\\x93\\xd0\\x41\\x0e\\xb1\\x5d\\xae\\x82\\x83\\x60\\xe3\\xd3\\xe8\\xad\\x6c\\xc8\\xf9\\xec\\xed\\x6f\\x0b\\x3b\\x7b\\x02\\xf7\\x46\\xe5\\xfa\\x85\\xf8\\xb8\\xd9\\xb8\\xfe\\x1b\\xa0\\x98\\xd4\\xff\\x4c\\xbf\\xb9\\xfc\\xd3\\xd7\\xb5\\x54\\xbf\\x96\\xd5\\x5f\\xc7\\x0c\\xaf\\x60\\xc1\\xe2\\x0a\\xcb\\x25\\xe5\\x81\\xb7\\x55\\xda\\x82\\xea\\xd5\\x07\\xf9\\x15\\xfb\\xc1\\xeb\\xe5\\x96\\xeb\\xc8\\x4f\\x1b\\x76\\x8c\\xe7\\xc8\\x1b\\xcf\\xc3\\x95\\x7d\\xe0\\xa5\\x56\\x6d\\xbf\\x72\\x63\\x37\\x2e\\xa8\\x03\\xa3\\x39\\xbb\\x68\\xd6\\xf9\\xcc\\x5d\\xa9\\xb2\\x36\\x9d\\x75\\xc2\\xed\\x7f\\xae\\x5c\\x23\\x66\\xc5\\x8f\\xb2\\xb9\\x23\\x82\\x63\\xbc\\xe6\\x92\\xf6\\x7d\\xf5\\xc0\\x85\\x2c\\x65\\xe0\\x80\\x4a\\x5e\\xa3\\xdb\\x21\\xe4\\x98\\x6d\\xf3\\x5b\\x88\\x5c\\xa4\\x58\\xad\\x08\\x65\\x0e\\x69\\xd1\\xcb\\xe8\\x55\\x86\\x8a\\xd5\\xfa\\x11\\x77\\xf6\\x2d\\xe4\\x49\\x72\\x6d\\xce\\xf1\\x13\\xb8\\x23\\x7f\\x77\\x21\\x47\\x63\\x6b\\xc9\\x27\\x2e\\x09\\x51\\x27\\x28\\xf5\\x39\\xa3\\xa7\\x63\\x0e\\x7e\\x31\\x78\\x3a\\x2b\\xa1\\x06\\x7f\\xdc\\x4d\\xf7\\x2b\\xb2\\xe6\\x1c\\x06\\x98\\x3d\\x80\\xb9\\x34\\x8b\\x79\\x44\\x33\\xc9\\xdc\\x2c\\xa2\\x27\\xd8\\x33\\x4c\\x78\\x63\\x06\\x9a\\x40\\x6f\\xe9\\xae\\xc4\\x34\\x2c\\x6a\\xb3\\x08\\x3e\\xeb\\xe3\\x19\\xa0\\x34\\xb2\\x37\\x38\\xa7\\xf3\\x30\\x21\\x0c\\xd0\\xee\\x27\\x40\\xc5\\xf5\\x18\\x20\\x48\\x51\\xe2\\xb2\\x26\\xc6\\x06\\x41\\x9d\\xd6\\x8d\\xc7\\x0c\\x3d\\x0b\\x52\\x9b\\xc7\\xea\\x7e\\x76\\x87\\x23\\x2e\\x1b\\x96\\x2f\\x70\\xb1\\x94\\x3a\\x8c\\x68\\xf2\\x61\\x71\\x0a\\x16\\x0b\\xd4\\x8c\\x27\\x3f\\xb6\\x3c\\x9e\\x53\\xa0\\xb4\\xcf\\x7e\\x5b\\x63\\xf2\\x78\\x65\\x20\\xf3\\x3a\\xca\\xff\\x05\\x13\\x14\\x7e\\x73\\x87\\x93\\x83\\x62\\x4f\\x79\\x04\\xe6\\x0e\\x40\\xc2\\x93\\x92\\xb9\\x69\\x21\\xf0\\x43\\x9b\\x28\\x38\\xbd\\xc0\\x58\\xef\\xd1\\xc7\\x15\\xfe\\x06\\x4c\\xc2\\x0f\\x55\\xa4\\x05\\xf5\\xc1\\x85\\xbb\\x76\\x9c\\xaf\\x48\\x0d\\xea\\x03\\xd9\\x3f\\x5d\\x49\\xac\\x0c\\xf9\\x0d\\xe8\\xac\\x4a\\x22\\x50\\x9c\\x3b\\x8c\\xc0\\xef\\x86\\x89\\x94\\x87\\xbe\\x77\\x4b\\xcc\\x74\\xbb\\x49\\xa4\\xe7\\x83\\x9a\\xc7\\x17\\xa0\\x81\\x18\\x3c\\x72\\xdf\\x43\\xf2\\xd8\\x01\\x34\\x48\\x22\\x18\\xee\\x79\\xd4\\x21\\xb7\\xc7\\x5a\\xf0\\xbd\\x99\\x2d\\x04\\xa7\\xfd\\x93\\xbd\\x9f\\x84\\x74\\x88\\x4d\\xfe\\x4d\\xfb\\xe4\\xd9\\x3b\\x9a\\xe7\\x40\\x0e\\x14\\xe9\\xd7\\xfe\\x34\\x73\\xf3\\x64\\xcc\\x39\\x96\\x06\\x81\\x1c\\xee\\xb4\\x8d\\xe9\\xd0\\xc9\\x97\\xb0\\x47\\xea\\x48\\xcf\\xf5\\x71\\x60\\xac\\xf3\\x49\\xe2\\xc6\\x89\\xb4\\x07\\x9d\\x6a\\xec\\xcb\\x95\\x43\\x37\\x32\\x9a\\x30\\xe3\\x2e\\xa1\\x5a\\x15\\x49\\x5d\\x1f\\x0f\\xdc\\x3c\\x3f\\x3f\\x3e\\x56\\x69\\x8e\\xe1\\x3a\\x2f\\x22\\xa9\\xe3\\xe0\\xb7\\x73\\x65\\x73\\xb8\\x61\\x35\\xf5\\x7c\\x6b\\x18\\x63\\x4b\\x76\\xc3\\xb6\\x42\\x41\\xba\\xeb\\x64\\x9b\\x6b\\x64\\x34\\x12\\xc3\\xac\\xb2\\x1a\\x6a\\xc9\\xd0\\xdd\\x4b\\x7d\\xc5\\x30\\x3c\\x13\\x3d\\xb3\\xda\\x4d\\xd6\\x8d\\x50\\x9f\\xb4\\x16\\xfa\\xf7\\x3b\\x97\\x69\\x65\\xc6\\x23\\x5f\\x91\\xf8\\xfe\\xdd\\xf9\\x3f\\x4a\\x57\\x1c\\x89\\x96\\x2b\\xd5\\x0b\\x68\\xc1\\xfc\\x0f\\x0e\\xf9\\x1d\\xdf\\x74\\x3c\\xa1\\xc3\\x66\\x73\\xc2\\xe2\\xa6\\x45\\xf7\\xd7\\x8f\\x86\\x0f\\x17\\x25\\x37\\xcc\\xbf\\x36\\x7c\\xce\\x2b\\x84\\xce\\x71\\x2c\\x05\\xd7\\xe8\\x9f\\xe1\\x98\\x4b\\x7b\\xf3\\xf7\\x3d\\x96\\xa9\\x9e\\xf7\\x3e\\xc5\\x9e\\x39\\xe0\\xe1\\x81\\xb1\\x96\\xcb\\x39\\xc9\\x65\\x3a\\x61\\x23\\xf3\\x39\\xfc\\xeb\\x65\\x85\\x7f\\xf3\\x0f\\x56\\xdb\\xfd\\xce\\xcd\\xd3\\x21\\xbf\\x6d\\xf9\\x1c\\xaa\\xf1\\xf1\\xb1\\xd0\\x63\\x9f\\xb1\\x9f\\xdd\\xbc\\xc7\\x09\\x32\\xcc\\x74\\xa1\\x74\\xbf\\xf8\\x76\\x79\\x15\\xef\\x95\\xfc\\xe1\\x7d\\x19\\x62\\x4c\\x4c\\x2d\\x9b\\xa8\\x21\\x55\\x2c\\x6f\\x22\\xc7\\x24\\x6d\\xf0\\x92\\x9a\\xe1\\xc1\\xe6\\xe5\\xe7\\x17\\x9e\\x2f\\x9b\\x4e\\x0a\\x47\\xbc\\x5f\\x0e\\xb1\\x41\\x5b\\x62\\x65\\x7d\\x9a\\xb3\\x62\\x1c\\x6d\\x7b\\x4a\\x63\\xb7\\xc0\\x93\\xe0\\x3e\\x83\\xc1\\x2b\\xa8\\xe6\\xd5\\x34\\x1f\\x45\\x6a\\x88\\x83\\x22\\xac\\xcf\\x16\\x96\\xe5\\x63\\x8d\\xcb\\xd8\\xb5\\x3e\\x14\\x4c\\xba\\xeb\\x0e\\x3c\\x21\\x9b\\xdd\\x98\\xad\\x6b\\xbf\\xcd\\x5e\\x7b\\x2c\\xe1\\x55\\x8b\\x77\\xb9\\xe8\\xa5\\xbc\\xe1\\x75\\x59\\xa9\\xcf\\xc3\\x66\\xe0\\x79\\xab\\x1b\\xa9\\xbe\\xc5\\x94\\xfd\\x64\\x79\\x25\\x00\\xc5\\x01\\xd7\\x1d\\x7e\\xcf\\x4f\\x3d\\x89\\x22\\xce\\xf9\\xb4\\x86\\x96\\x78\\xd4\\xdc\\x69\\xf1\\xae\\xe7\\x9d\\x95\\x51\\xd7\\x80\\x7f\\x47\\x78\\x7f\\x27\\x2d\\x75\\x3d\\xb0\\x24\\x0a\\x3c\\xe9\\xe3\\x45\\x9e\\x62\\xb3\\xc6\\x78\\xfd\\x9e\\xee\\xac\\x89\\x76\\x65\\x42\\x7c\\x62\\xf0\\x08\\x36\\x36\\x73\\x6f\\xa3\\x43\\x42\\xdb\\x6d\\x5a\\xc7\\x53\\x09\\xb7\\xd4\\xf1\\x15\\xb2\\x53\\xfc\\xda\\x61\\x23\\xed\\x21\\x28\\xcc\\xd9\\x98\\x18\\x52\\x59\\x9d\\xd4\\x8d\\x64\\x5e\\x44\\x0e\\x2d\\xb3\\xec\\x23\\xc7\\x9b\\x9e\\xad\\xab\\x29\\xe4\\x3c\\x95\\x29\\xeb\\xd4\\x5a\\x6c\\x3d\\x7a\\x5f\\x07\\x77\\x9a\\x5d\\x55\\x0d\\x5d\\x54\\x93\\xad\\xf1\\xf9\\xf3\\xbd\\x99\\x91\\x23\\x27\\x7f\\x6f\\x37\\xa4\\xd5\\x8a\\x56\\xd1\\x61\\xd0\\x3a\\x2c\\x6c\\xf0\\x9c\\x49\\x9a\\x5f\\x67\\x42\\xde\\x37\\x3f\\x5b\\xfa\\xe7\\xb5\\x67\\x30\\xf4\\x4b\\xed\\x70\\x82\\xb9\\xe7\\x87\\x79\\x37\\x3d\\x57\\x37\\x96\\xdc\\x58\\x6c\\x5d\\xbc\\x30\\x1a\\x51\\xf2\\x58\\x31\\x9c\\xa4\\xff\\x94\\x30\\xc1\\xda\\xed\\xb2\\xf3\\xe1\\xce\\x01\\xda\\xd1\\x91\\x28\\x39\\x7e\\x65\\x67\\xee\\xce\\xf4\\xcf\\xd6\\x3d\\x59\\xef\\xba\\xfd\\xbf\\xf0\\x5f\\xb1\\x75\\x4a\\xa8\\xad\\x72\\x46\\x56\\xd6\\xa4\\x3b\\x5b\\xae\\x73\\xf1\\x9b\\xfd\\x06\\x20\\x5b\\x85\\x56\\x25\\xc0\\xa5\\x08\\xa6\\x2b\\xe5\\xd6\\x3e\\x1f\\xdf\\x4f\\x6d\\xfa\\xee\\xe4\\x36\\x4f\\x91\\x1e\\x01\\xf5\\xa5\\xb5\\x59\\x1b\\xaf\\x40\\xf6\\x9d\\x02\\x12\\x08\\x55\\x7b\\x16\\x34\\x50\\x1e\\x55\\x6e\\x3b\\x46\\xe7\\x75\\x4c\\x17\\x8b\\xa6\\xb9\\x4b\\xad\\xc0\\x74\\x54\\x12\\x15\\x3f\\x1c\\x2b\\x6e\\xd4\\xe5\\x32\\xd0\\x15\\x9f\\x68\\x85\\xfc\\xbb\\x89\\xff\\xa5\\x66\\x84\\xe3\\x93\\xdf\\x90\\xae\\x77\\xe0\\x56\\x95\\xba\\x17\\x9a\\xa4\\x6a\\x89\\x53\\x25\\xad\\xc2\\x8e\\xd3\\xd3\\x7e\\x87\\x8a\\x4e\\x58\\x2a\\xd7\\x1b\\xce\\x2d\\x94\\x7d\\xcc\\x8b\\x02\\x02\\x84\\x1e\\x8c\\xe9\\x54\\x0c\\xd9\\xb3\\xfc\\xdb\\xd5\\x2c\\xea\\x81\\x26\\xc5\\xb8\\x2e\\xb3\\xf6\\xa0\\xb5\\x60\\x83\\x64\\x5c\\x0c\\x0c\\xb6\\x24\\xe6\\x54\\xaa\\x6c\\x79\\x6c\\x39\\xcf\\xb2\\x6a\\xd9\\xb9\\x3c\\xb4\\xed\\x56\\x7c\\x68\\x31\\xbd\\x21\\x6d\\xf1\\xce\\x11\\x77\\x3c\\x9d\\x8f\\x10\\x0a\\x43\\x5d\\x99\\x2b\\x2d\\xd3\\x5e\\x22\\x3a\\x79\\x0e\\xa7\\xf7\\xf0\\xd8\\x7d\\xb6\\x00\\x71\\x9b\\x9a\\x97\\xb0\\x2f\\x57\\xba\\x4d\\x31\\x5b\\xa1\\x56\\xbe\\x54\\x35\\x9c\\xc1\\xc0\\xe9\\x8a\\x1a\\x55\\x85\\xe1\\x83\\xf3\\xdb\\xef\\x78\\x3f\\xe6\\xd8\\x13\\x07\\xe3\\x72\\xeb\\x04\\x63\\xb9\\xa1\\xb4\\x75\\x59\\xd5\\x1b\\x2a\\xd8\\xf9\\xea\\x14\\xd5\\xce\\x81\\x8d\\x21\\x3c\\x25\\x80\\xe8\\x02\\xc4\\xa7\\xaf\\x65\\x92\\x87\\xa5\\xf0\\x3f\\xe7\\xe6\\x9e\\x91\\x32\\x5b\\xbf\\xaf\\x7e\\x65\\x0e\\x88\\x30\\x9b\\x23\\x70\\xa2\\x61\\xd7\\x8e\\x5e\\x83\\x88\\xa7\\xce\\x67\\x8e\\x15\\x39\\x2d\\x85\\x37\\xbc\\x7c\\xf7\\x46\\xe7\\x35\\x6a\\x1d\\xcd\\x18\\x73\\x3e\\xfa\\xed\\xb4\\x5b\\x3d\\xd1\\x83\\xfd\\x35\\xfc\\xff\\xe8\\x29\\x0d\\x56\\x45\\x5a\\x77\\xa1\\xed\\x66\\x4e\\xe7\\x61\\xf2\\xb3\\xd6\\x9f\\x9d\\xa9\\xaf\\x7b\\xf6\\x4e\\xe7\\x16\\x61\\xfa\\x6f\\x7a\\xea\\x0e\\xe2\\x97\\xba\\xce\\x39\\xa5\\x78\\x88\\xbb\\x12\\x8a\\x3b\\x40\\x9f\\xb4\\x70\\x65\\x82\\xd5\\xa3\\x4a\\xdf\\x2b\\x0f\\x36\\xd3\\xe1\\xed\\xc9\\xb1\\x65\\x16\\x86\\x6a\\xd0\\xd4\\x44\\xd9\\x03\\xd0\\x44\\x85\\x7a\\x6c\\x27\\xe0\\x8f\\x88\\x60\\xe1\\x91\\x8f\\xb2\\xd9\\x56\\x60\\xfd\\xd0\\xa4\\xc0\\x70\\x2b\\x49\\x1a\\x95\\xef\\xe5\\x09\\x2c\\x07\\x37\\x4a\\xcf\\xc9\\x8b\\x0b\\x4e\\xf3\\xdb\\x05\\x19\\x93\\x51\\xad\\x2f\\x3a\\x0f\\xd0\\x16\\x90\\xe4\\x40\\x39\\x49\\xaf\\x25\\x79\\x84\\x3b\\x37\\x34\\x0c\\x74\\x1f\\x08\\xf7\\x23\\x75\\x84\\xef\\xb4\\x03\\xeb\\x3b\\xa6\\x1e\\xd9\\xbc\\xff\\x7c\\x5e\\x90\\x70\\x60\\xa3\\xf4\\xac\\x91\\xeb\\xa1\\x41\\xeb\\x83\\x76\\xff\\x9b\\x43\\x96\\x03\\x61\\x12\\xa2\\x25\\xe7\\x09\\x2d\\xd4\\x6a\\x2b\\x1c\\xc5\\x9b\\xb7\\x9f\\x28\\x80\\x58\\x04\\x89\\xc6\\x1c\\x2f\\x96\\xed\\xfb\\xca\\x29\\xa4\\xb1\\x8b\\x74\\xac\\x9c\\x87\\xcc\\xac\\x51\\x4d\\x41\\x95\\x7f\\xde\\x14\\xfe\\x8b\\x12\\x61\\x42\\x46\\x7c\\x91\\x50\\x8c\\x2f\\x85\\xcc\\x11\\x36\\xca\\xff\\x99\\xbb\\x07\\x29\\xe8\\x92\\xe9\\xb0\\x4d\\x36\\x53\\xa0\\xda\\x03\\x71\\x45\\xb8\\x79\\x2d\\x3e\\xd8\\x44\\xf6\\x25\\xb4\\x62\\xa0\\x15\\xfa\\xe2\\xd5\\x52\\xeb\\x9a\\x1f\\xdf\\x5e\\xb5\\xab\\x4a\\xac\\x5d\\x2a\\x36\\x05\\xa9\\x43\\x6f\\xf1\\x9b\\x46\\x48\\xb4\\xe4\\x5b\\x66\\x22\\x2e\\xc8\\x64\\x1a\\x93\\x2c\\xca\\xcf\\x92\\x4a\\x99\\x66\\x90\\xcd\\xad\\x28\\x36\\x35\\xd2\\xae\\x27\\xb6\\x45\\x13\\x4d\\xee\\x0f\\xc0\\xda\\x3f\\xb7\\x35\\x81\\x9b\\x4d\\x53\\x40\\xd6\\xb9\\xcb\\x1b\\x40\\xa9\\x20\\x1e\\xe2\\x79\\x87\\xb2\\xef\\xa6\\x6d\\x43\\x89\\xe5\\xcb\\x04\\x3a\\xa0\\x8e\\xe0\\xeb\\xd9\\xad\\xad\\x44\\xc8\\x17\\x53\\x1b\\x4e\\x81\\x59\\xa5\\x20\\x88\\x36\\x20\\xd6\\x6e\\xda\\x09\\xc1\\xd4\\xe1\\x35\\xbe\\xa4\\x5f\\x1c\\xb2\\x56\\x28\\xa2\\x87\\x95\\xc6\\x5c\\xb8\\xf1\\x5b\\x27\\xdc\\xf7\\xfa\\x05\\xe6\\xe0\\x9b\\xca\\xe0\\x34\\xdf\\x99\\x29\\xa7\\xe1\\x39\\x96\\xa2\\xba\\xa5\\xa5\\xbc\\xb4\\xad\\xf2\\xcd\\xb9\\x3b\\x05\\x3b\\x25\\xf2\\x4a\\xd5\\x1e\\x41\\x69\\xed\\x91\\x32\\xdf\\x66\\x9b\\x8e\\xef\\x49\\x89\\xa8\\x6a\\x96\\x2a\\x5d\\xe3\\x05\\xa4\\xc2\\x64\\x57\\x0b\\x03\\xff\\xbf\\x7f\\x6f\\x57\\xca\\x7c\\x0e\\x24\\x00\\xad\\xc5\\x5f\\x2b\\x6c\\xdb\\x1a\\x9d\\xa4\\x8f\\x29\\x46\\x38\\xf4\\x9c\\x86\\x05\\xd4\\xd0\\x6f\\xbe\\x39\\xf9\\x1b\\xbc\\x24\\x1b\\xca\\x79\\xc1\\x02\\x65\\x68\\x17\\x83\\xbc\\xb6\\x7b\\x77\\x83\\x6a\\x41\\x49\\x88\\x43\\x0e\\x49\\xdf\\x2e\\xd8\\xda\\x93\\x1c\\xcb\\x52\\xf4\\x41\\xb2\\xa0\\x19\\x7a\\x51\\xb3\\x14\\xd8\\xb7\\x60\\x93\\x0c\\xd2\\x90\\x10\\x6e\\x07\\xcc\\x31\\x17\\x41\\x67\\x7a\\x0a\\x73\\x4d\\x3a\\xa2\\xef\\x49\\x42\\xaa\\xe4\\x63\\xbd\\xa9\\x17\\x05\\x3b\\x59\\xc5\\x2e\\x45\\x87\\xfc\\x6f\\x26\\xe6\\xe6\\xfd\\xe1\\xc6\\x52\\xb9\\x04\\xe7\\x05\\x34\\x61\\xa2\\x11\\xbf\\x60\\x0a\\x5d\\x71\\x5d\\x5a\\x27\\x26\\xee\\xaf\\x90\\x37\\x4f\\x35\\xf8\\x3d\\xa6\\x41\\x92\\xfc\\xb4\\x1a\\x4d\\x17\\xb6\\xf6\\xcf\\x5d\\x7e\\x36\\xff\\xe7\\x65\\xc0\\xcb\\xc9\\x20\\x82\\x79\\x5b\\x63\\xef\\x9a\\xe6\\xed\\x2a\\x86\\xd7\\x6f\\x17\\xbc\\xee\\x66\\x60\\xec\\x4b\\x09\\xd7\\x06\\xe6\\x74\\x32\\x6c\\x69\\x52\\xfc\\xc2\\xf3\\x4e\\x05\\xd3\\x9c\\x12\\x8f\\xba\\xdb\\xee\\xca\\x6f\\xc9\\xa3\\xc4\\x23\\x42\\x06\\x94\\xe8\\xe0\\xf8\\x56\\x86\\x9e\\x0b\\xfe\\xc7\\xfc\\x9b\\x91\\x63\\x83\\xb1\\x51\\x26\\xb5\\x34\\x2f\\x18\\xd9\\x6a\\x53\\xc8\\x00\\xc9\\xec\\x88\\xc3\\x15\\xfb\\x20\\x31\\xbd\\x70\\x65\\x08\\xd5\\x97\\xf2\\x3c\\xb4\\xec\\x7d\\x8b\\xd2\\x6c\\x86\\xc1\\xd7\\xb2\\xdb\\x5a\\xa3\\x41\\x20\\x46\\x80\\x34\\xa1\\xf4\\xa6\\x05\\x29\\xf7\\x3a\\x3f\\xcc\\xba\\x13\\x0a\\x6f\\x8c\\x33\\x0b\\x89\\x77\\xac\\x58\\x2a\\x80\\xba\\xd9\\xfc\\xc1\\xc8\\x18\\x1f\\x3d\\xd9\\xe0\\x76\\xb6\\x74\\x03\\xfa\\x4d\\xe2\\xc6\\x6e\\xaa\\x9f\\xbd\\xf0\\x06\\xde\\xa1\\x2f\\xad\\x7c\\xd9\\x46\\xe9\\xd5\\x02\\xb3\\xc5\\xf6\\xe4\\xcc\\x73\\xfe\\x7b\\x41\\x7d\\x20\\x16\\xe2\\xa6\\x03\\xf3\\x3b\\xfb\\x22\\xc6\\x0d\\x10\\x1b\\x54\\x17\\x32\\x99\\x53\\xdd\\xae\\x85\\xc1\\x18\\x11\\xda\\x6c\\x63\\x76\\x2e\\xc8\\xec\\x15\\xea\\x8d\\x75\\xe8\\xda\\x46\\xa7\\x3a\\x05\\xe9\\x05\\x2b\\x13\\x0a\\x87\\xe4\\xbe\\x2f\\x92\\x14\\x41\\xe8\\xf5\\xdc\\xd6\\x4e\\x22\\xfc\\xb3\\x80\\x62\\x72\\x31\\x06\\x75\\x72\\x7c\\xbe\\xce\\xd0\\x46\\x57\\xea\\x5f\\xd5\\x8b\\x56\\x9f\\xbd\\x70\\x4e\\x8b\\xd5\\x4e\\x5d\\x98\\xd2\\x98\\x2d\\x76\\x21\\x93\\x04\\x74\\xe7\\x42\\x00\\xac\\xe4\\x9b\\x50\\xe6\\x37\\x16\\x45\\x38\\x21\\x30\\x70\\x32\\xab\\x3a\\xaa\\xd5\\x45\\xb8\\x82\\x76\\xd8\\x38\\x80\\xe6\\x8c\\x25\\x57\\x3c\\x60\\x76\\x1f\\x49\\x7a\\xd6\\x0c\\x6e\\x0e\\xb8\\xe0\\x41\\x5e\\xd1\\x72\\x96\\x1d\\xcd\\xd2\\x9e\\xc6\\x23\\x47\\xd0\\x74\\x63\\x3d\\x64\\x6d\\xa2\\xef\\xce\\x82\\xd0\\xd7\\x3c\\x45\\xc8\\xfb\\xab\\xb1\\x3f\\xa6\\xa9\\x4d\\x47\\x09\\xa2\\xc1\\xcf\\x5b\\xd3\\xbe\\xb7\\xf0\\x52\\xcf\\x01\\x8c\\x98\\x92\\xb4\\xe3\\x9b\\x8a\\x4f\\x4a\\x23\\xae\\x1f\\x60\\x53\\x52\\x1e\\x79\\x2c\\xf6\\xd3\\x15\\xdd\\x7a\\xb3\\xdd\\x54\\xe8\\x1f\\xc3\\x88\\x5e\\xdb\\x44\\xdb\\xc7\\xcc\\x5d\\xff\\x32\\xad\\x6b\\x82\\x32\\x27\\xf1\\xa8\\x35\\xdc\\x6d\\x1d\\xb8\\x48\\xab\\x6b\\xd8\\x96\\xe3\\xcd\\xb9\\x92\\xdd\\x89\\x4b\\xb3\\x37\\x68\\x8c\\x21\\x42\\xb7\\x86\\xa9\\xcb\\xe9\\xb6\\x84\\xda\\x35\\xea\\x0c\\xe4\\x7f\\xd4\\xb9\\x5d\\x73\\xfc\\x16\\x86\\x19\\xfc\\xf3\\x9f\\xfb\\x07\\x9e\\x79\\x14\\xa6\\x86\\x83\\x02\\x2f\\xfb\\xce\\x3e\\xe9\\x02\\x9d\\xa8\\x3a\\x88\\xd7\\x65\\xad\\xe3\\xc4\\x54\\x57\\x4c\\x83\\x3b\\xb3\\x48\\xb2\\x7d\\x15\\xdf\\x23\\x6d\\x8d\\x3a\\xf0\\xd6\\xda\\x69\\x91\\xa5\\x99\\xeb\\x8d\\xb0\\x1c\\x11\\x1f\\x93\\xd2\\xb4\\xa0\\x0c\\x14\\x87\\xdc\\x07\\x8f\\xff\\x66\\xde\\xd6\\x92\\x64\\x5d\\x96\\xa4\\x07\\x92\\x11\\x66\\x6a\\x8b\\x46\\xa4\\x54\\x77\\x4c\\x93\\x3b\\xab\\x50\\x2a\\xb8\\xc7\\xb3\\xab\\xbf\\xfe\\x44\\xb9\\xbb\\x2f\\x0f\\x54\\x3a\\x71\\x85\\xc2\\x0a\\xf3\\x9e\\x8d\\xa2\\x99\\xa0\\xf6\\xd2\\xd3\\xf2\\x7a\\x51\\xe2\\xce\\x92\\x15\\x6f\\x67\\xfb\\x93\\x4c\\xbc\\xd0\\x5c\\x4d\\xd2\\xab\\x09\\x4e\\x8e\\x30\\xdb\\xf5\\x07\\x9f\\x60\\xbc\\x79\\x63\\xaa\\xbb\\xbf\\xa4\\x5a\\x48\\xf7\\xd8\\xb4\\x8d\\x24\\x93\\xb2\\x84\\x04\\x17\\x3f\\xb6\\xf3\\xe7\\x65\\xde\\xc9\\xad\\x82\\x63\\xfc\\x9c\\xf6\\x47\\xa1\\xa3\\xd2\\x94\\x83\\xa0\\x81\\x63\\xd3\\x56\\x3f\\xbb\\x1a\\x5e\\x04\\x2a\\x5a\\xd3\\x9a\\xc4\\x84\\x79\\x3b\\x72\\x77\\xbf\\x66\\xc6\\x5b\\xa7\\xf4\\xcf\\xa8\\xe6\\x55\\xc0\\xc5\\x6b\\x5a\\x92\\x98\\x08\\x6f\\x82\\xb9\\xf3\\x35\\xc4\\x2f\\x31\\x82\\xc3\\x54\\x4d\\x72\\x57\\x22\\x31\\x9c\\x89\\xdc\\xe3\\xef\\x99\\x95\\xc1\\x82\\xf4\\x6a\\x6e\\x04\\x44\\x91\\xde\\xbe\\x3b\\xdf\\x0b\\x9d\\xdc\\xfa\\x7a\\x13\\x19\\x88\\xe0\\xd1\\xc8\\xbb\\x96\\xc8\\x17\\x65\\xea\\xd6\\xb9\\xb2\\xb2\\xfb\\x65\\xca\\x39\\xa5\\x9a\\xe4\\xef\\xa2\\xd9\\x50\\x54\\x4c\\x35\\x9f\\x69\\x9e\\x55\\x28\\xe7\\x95\\x5d\\x77\\xd4\\x67\\xba\\x02\\x33\\xdc\\xa9\\x3c\\x9c\\x7d\\xa3\\x13\\x21\\x12\\xbb\\xf0\\x1b\\x1d\\xa9\\x3c\\x15\\x0f\\x67\\xdd\\xe8\\x72\\x14\\x89\\x1c\\x9e\\x84\\x89\\xbc\\x74\\x80\\xae\\x20\\x86\\x41\\x6b\\x80\\xa5\\x55\\xe6\\x53\\xe6\\xb5\\x0c\\x8a\\x42\\xf7\\xf1\\x07\\xad\\x84\\xb0\\x82\\xaa\\x88\\xd6\\x80\\xe5\\x28\\x5f\\x40\\xe6\\x69\\x64\\x10\\xe4\\x2d\\x44\\xbd\\xf8\\xa4\\x63\\x58\\x64\\x58\\x67\\x29\\x62\\x6b\\x74\\x41\\x36\\xa0\\x1c\\x46\\x49\\x56\\x10\\xcb\\x01\\x0b\\x70\\x9a\\x62\\x16\\x60\\x25\\x94\\x2b\\xda\\x4f\\xba\\xb3\\x45\\xb9\\x5e\\xa1\\xc2\\xbf\\x95\\x05\\xdb\\x9e\\xe1\\x9a\\x91\\x9e\\x8a\\x6c\\xc7\\x3a\\x63\\x47\\x49\\xae\\x19\\x19\\x54\\x64\\x10\\xeb\\xfa\\xc5\\x3e\\x58\\x6f\\xbe\\x6b\\x3a\\x36\\x45\\x12\\x3c\\xb2\\x33\\xb7\\x93\\xac\\x4f\\xf5\\x19\\xc8\\xe4\\x53\\xee\\x1a\\xa2\\x44\\xd5\\x54\\x4f\\xc6\\x93\\xee\\x3d\\x88\\x66\\xa8\\xf9\\xed\\x71\\x44\\x1f\\x1e\\x45\\x6e\\x80\\x44\\x7e\\xef\\xfe\\xde\\xe3\\xba\\xf9\\x69\\x35\\x11\\xff\\x78\\x34\\xbe\\xd9\\x62\\x43\\x79\\xb5\\x13\\xeb\\x06\\xc7\\x8f\\x8c\\x2f\\xac\\xe2\\xce\\xab\\x4f\\x5c\\xa2\\x1b\\x54\\x42\\x73\\xb3\\x53\\x4e\\x21\\xca\\xb9\\xf5\\x46\\x93\\xba\\x24\\x07\\x36\\x93\\x9a\\x5d\\x7f\\xcd\\xb7\\x06\\x25\\x18\\xb3\\x16\\x3a\\x06\\xc2\\xbc\\x0c\\xee\\x3d\\x64\\x8d\\x68\\xf4\\x6e\\x68\\xe2\\x12\\x8b\\xc7\\x4a\\xfa\\x74\\xd7\\xf6\\x55\\xea\\xcd\\xc3\\xeb\\x75\\x77\\x2f\\xb3\\xe0\\x18\\x5c\\xd1\\xf5\\xbf\\x78\\x77\\x6c\\x17\\xb8\\x4a\\x1d\\x69\\x31\\x2f\\xdc\\x75\\xb8\\x02\\xf3\\x7d\\x9f\\x03\\x34\\xf9\\xa9\\x9d\\xf6\\x1d\\xe9\\x99\\xa9\\x2c\\x51\\x7e\\x0e\\x68\\x25\\x77\\xfa\\x3a\\xf2\\xe2\\x52\\x03\\x37\\xd0\\x39\\x1d\\x12\\xab\\x4c\\x38\\xc3\\x94\\xdd\\xef\\xaf\\x54\\x48\\x7d\\x21\\xf1\\x26\\xfd\\xd4\\x8c\\x45\\x8b\\xba\\x87\\x83\\x6e\\x89\\x42\\x18\\xdb\\x9d\\xa8\\xf1\\x15\\x52\\x59\\x7c\\x84\\xe4\\xdc\\xce\\x08\\x79\\x37\\x14\\x4a\\xac\\x5a\\xc0\\xea\\xac\\x9a\\xc8\\x6a\\xa1\\xa3\\x8d\\x01\\x42\\xc6\\x9d\\xae\\x2a\\x53\\x82\\xea\\x21\\xa9\\x6f\\x53\\xfa\\xb5\\x55\\x6d\\x87\\x3a\\x0e\\xd5\\xbb\\x65\\x87\\xc1\\xcd\\x59\\x97\\xfb\\x5a\\x2f\\x12\\x55\\xba\\x96\\xf8\\x67\\xed\\xe6\\xfe\\xbf\\x90\\x28\\x45\\x9b\\x18\\xb9\\x79\\xfc\\x21\\x5d\\x86\\x68\\x73\\x55\\x7d\\x55\\x0a\\xa5\\x85\\x22\\xc9\\x29\\x86\\x8d\\x21\\x06\\x00\\x94\\xf1\\x10\\x27\\xa9\\x56\\x63\\xd3\\x86\\x02\\xbb\\x42\\x3c\\xc5\\xf5\\xc1\\x40\\x8c\\x39\\x01\\xc9\\x31\\x9b\\xb3\\x75\\xe9\\x76\\x19\\xfe\\x2d\\x97\\x10\\x49\\xb8\\x4b\\x1b\\x18\\xf6\\x19\\x48\\xe3\\xe5\\x94\\x5b\\x53\\x91\\x4e\\x75\\xb0\\x53\\x0f\\xaa\\x9c\\x07\\x3b\\x49\\x75\\x1a\\xbb\\x36\\xa7\\x96\\xed\\xcb\\x78\\xb6\\xe0\\xb4\\x47\\x1d\\x1f\\x6c\\x60\\xd8\\x62\\xfd\\xd5\\xc7\\x70\\x54\\xdc\\xe5\\x3f\\xc1\\xfc\\xe0\\xcd\\x97\\x1d\\xc5\\x6b\\x63\\x83\\xcd\\xca\\xa0\\x31\\xab\\x8a\\xf3\\x3a\\x65\\x9b\\x62\\x46\\x60\\xc8\\x34\\x2b\\xbf\\x26\\x65\\xc5\\x5d\\xdc\\xc0\\xf1\\xdd\\x9d\\x5d\\x38\\x24\\x4b\\x85\\xa2\\x6c\\xa7\\x87\\xd3\\x99\\x37\\x98\\x4a\\x76\\x89\\x86\\x9e\\x6a\\xe5\\xf9\\xc1\\xba\\xd4\\x90\\x04\\xca\\x27\\x41\\xdf\\xd8\\xfe\\x1c\\xe3\\xe4\\xf8\\x53\\x4a\\xf8\\x6c\\x80\\x09\\x10\\xa4\\xf2\\xe2\\xd2\\xb8\\xf7\\x93\\xa6\\x03\\xc5\\xc5\\x37\\x42\\x4e\\x90\\xae\\x7a\\xc4\\xe2\\x1b\\xce\\xbd\\x74\\x2b\\x38\\x7a\\x82\\xec\\x72\\x42\\x66\\x05\\xd3\\xdf\\x5e\\x93\\x02\\x45\\xf7\\x50\\x5c\\xf6\\xd4\\x59\\x45\\xd3\\xab\\x96\\x62\\xa2\\x08\\x04\\x1e\\xe7\\x8e\\x17\\x9f\\x80\\xe7\\xb3\\x5f\\x46\\xf0\\x42\\xbc\\x95\\xb8\\xb2\\x65\\xd5\\x65\\x9a\\x9e\\xd6\\xb6\\xba\\xac\\x0d\\xf5\\x35\\xcd\\x7d\\x8d\\x59\\xd2\\xb9\\xf3\\x1d\\x13\\xa5\\x13\\x5b\\x59\\x1d\\x71\\x04\\x7c\\x49\\x9e\\xf8\\x4a\\x04\\xcf\\xb4\\x8e\\xa6\\x30\\x05\\xc2\\x70\\x0f\\x79\\x24\\x29\\x89\\x3e\\x42\\xa9\\x0a\\x85\\x5b\\x4c\\xfd\\x34\\x28\\xf2\\xb4\\xab\\x79\\x5b\\xd2\\x85\\x32\\x1f\\x8c\\x55\\x68\\x8b\\x92\\x5a\\x72\\x59\\x49\\xd7\\xa6\\x2d\\xf4\\x48\\xd8\\x0a\\xb4\\xa5\\xc0\\x71\\xf0\\x46\\x35\\xc4\\xc0\\xc2\\xc0\\xc0\\x79\\x5e\\x37\\x63\\x1d\\x70\\x68\\x05\\x3b\\x6a\\x3f\\xb3\\xa8\\x4d\\x05\\xd1\\xa0\\xd8\\x47\\x4b\\x70\\xec\\x85\\x73\\x0f\\xe2\\x2c\\x0a\\x96\\x63\\x3b\\xfe\\x28\\xe9\\x7a\\x8b\\xec\\x77\\x0b\\xbb\\x95\\xa0\\xad\\x39\\x77\\x39\\x5f\\xd9\\x76\\xc9\\x51\\x33\\x02\\xce\\x94\\x58\\x55\\x6b\\x9e\\x51\\x35\\x9f\\x89\\x5f\\x7b\\x33\\x86\\x23\\xd4\\x78\\xb2\\xa2\\xda\\xd1\\x3b\\xa3\\x9a\\x82\\xa0\\x18\\xd1\\x97\\x6a\\xd5\\x75\\x59\\x63\\x19\\xf4\\x08\\xeb\\x3e\\xc3\\x29\\x2e\\xba\\xf7\\x8b\\x3e\\xa3\\xf7\\xeb\\x81\\x17\\x52\\x2d\\x80\\x19\\x6b\\xc1\\x21\\x0d\\x44\\xcb\\x11\\xf2\\x4c\\xed\\xb0\\xf3\\x62\\xca\\x85\\xf5\\xc4\\x19\\xa3\\x4b\\x01\\xe3\\x96\\x8a\\x17\\x4e\\x50\\xb2\\x25\\x18\\xe3\\xdd\\x29\\xfe\\x54\\x72\\xe8\\x1d\\xc7\\xaf\\xc6\\xa6\\xff\\x22\\xdd\\x98\\xe5\\x83\\x13\\x2c\\x5c\\x16\\x4a\\x9f\\xa9\\xa8\\x5e\\x84\\x0a\\x73\\x49\\x88\\x4a\\x0a\\xd1\\xd8\\xcc\\x22\\x2a\\x37\\x49\\x80\\xd6\\x89\\x4c\\x45\\x94\\x3e\\x0b\\xcd\\x4c\\xe9\\x47\\x8b\\xea\\xc4\\xa8\\xc0\\x4d\\xd2\\x2b\\xa5\\x66\\x83\\x01\\x41\\x88\\xd2\\x4d\\x12\\xa2\\x75\\xe2\\xb3\\x2c\\xfa\\xcd\\x1a\\x3e\\x8d\\xb9\\x82\\xa4\\xc5\\xba\\xd2\\x00\\x21\\x0f\\xca\\x02\\xb9\\xa9\\x9c\\x97\\x7d\\x00\\x50\\x40\\xa3\\xb2\\xe6\\x8d\\x49\\xee\\x2c\\xc6\\x19\\x94\\xa7\\x0b\\x1d\\x10\\xf0\\x80\\x8f\\x31\\xa9\\x5c\\xf6\\xe4\\x43\\x80\\x90\\x1c\\x33\\xdb\\x63\\xd9\\xa5\\x88\\xf6\\x67\\x1d\\x79\\x03\\x82\\x34\\xd2\\xfa\\x9f\\x46\\xd6\\xed\\x9a\\x3d\\x6a\\x80\\x8d\\x0c\\x7a\\x7f\\xcb\\x16\\x6e\\x61\\x31\\x37\\xf2\\xb3\\xa8\\xe6\\xe5\\x74\\x9b\\x67\\x9c\\x4f\\x38\\xa4\\xba\\x4b\\x3c\\xbf\\x81\\x0d\\x1a\\x8b\\x7d\\x90\\x4e\\x2b\\x14\\x7d\\x3e\\x3d\\xfe\\xbf\\x01\\x08\\xba\\xdd\\x25\\xba\\xcd\\xca\\x43\\x96\\xce\\xba\\x5e\\xb3\\x15\\xa2\\x6c\\x42\\x43\\x9e\\xfc\\xb6\\xe1\\x3d\\x2f\\x8b\\xee\\x3e\\xc1\\x27\\x7d\\x3f\\x4b\\xab\\x3e\\x30\\x52\\xb4\\xb3\\x78\\x1b\\x97\\x9e\\x0a\\x14\\xe3\\x88\\x72\\x28\\xd5\\x3d\\x1d\\xc6\\x4a\\xaa\\xff\\xbd\\x78\\xba\\xe4\\xd3\\xfb\\x17\\x23\\x2c\\xe3\\xe1\\x30\\x8e\\xff\\xdd\\x8b\\xb8\\xc6\\x4f\\xc7\\xc0\\xe6\\xe6\\x84\\xd6\\xd9\\xdb\\x8d\\x0f\\xea\\xee\\x05\\xad\\x7b\\x77\\x1f\\xdf\\xa1\\x16\\xbd\\x77\\xe7\\xe9\\xdd\\x48\\x6b\\x1c\\xfc\\x84\\xa7\\x45\\x09\\xb9\\x48\\x9e\\x17\\x8c\\x5a\\x4a\\xc8\\x43\\x89\\x94\\x1b\\xb1\\xef\\x9d\\xa5\\x7a\\x50\\xa1\\x70\\x45\\xaa\\x95\\x1a\\x24\\x80\\x98\\x3b\\xa0\\x0c\\xd8\\xec\\x69\\x73\\x71\\x5c\\xc4\\x49\\x61\\xbd\\x13\\x12\\xe1\\xf9\\xda\\xa8\\x5d\\x24\\xf2\\x66\\x57\\x1c\\x75\\xb3\\x93\\xd3\\xb0\\xdb\\x24\\xc3\\xf6\\x23\\x9b\\xcc\\x6f\\xec\\x45\\xdc\\xeb\\xbe\\x98\\x51\\xcc\\x4d\\x7f\\xe9\\x2f\\xeb\\x0e\\xe3\\x8a\\x6b\\x75\\xef\\x44\\xd5\\x35\\x68\\xce\\x44\\x1f\\x0f\\x6c\\x3e\\x81\\x97\\x14\\x8b\\xf9\\xc5\\xc0\\x89\\xfd\\x91\\xcc\\xab\\x2f\\x3b\\x1c\\xb7\\xb6\\x3a\\xea\\x10\\x5b\\x4c\\x7a\\x19\\x3f\\x02\\x10\\x89\\x56\\x0a\\xb0\\x1b\\xd0\\x0d\\x98\\x88\\x1a\\x89\\x22\\x0a\\x46\\x53\\x74\\xbb\\xa3\\x04\\x61\\x11\\xf1\\xbf\\x34\\x36\\x28\\x3a\\x93\\x8a\\xdb\\x8c\\x63\\x68\\x37\\xe1\\xac\\x05\\x0f\\xdc\\x6b\\x8c\\xc8\\xcd\\x91\\xe5\\x37\\x45\\x5a\\x07\\xfa\\x51\\xa9\\xb9\\xe4\\x37\\x6e\\x3c\\x5b\\xe7\\x22\\x7a\\xe5\\xcc\\x3f\\x76\\x59\\x37\\x56\\x1c\\x61\\x2d\\x84\\x36\\x30\\x00\\x72\\x05\\x82\\x86\\xa9\\x80\\x3c\\x98\\x8d\\x02\\xcc\\x72\\x8c\\xfe\\x05\\xeb\\x6d\\xb6\\x2e\\xff\\x89\\x33\\x17\\xd4\\xec\\xd9\\x37\\xe7\\xa6\\x6f\\xe4\\x3f\\x97\\x7d\\x79\\xf4\\xb2\\x78\\xff\\xa2\\xde\\x09\\x50\\x48\\x7f\\xc3\\x98\\x12\\x66\\x96\\xa4\\x21\\x17\\x25\\x8d\\x53\\x71\\x92\\x9a\\x43\\x22\\xae\\xa9\\x8e\\x80\\xe4\\x91\\x8d\\x25\\xbd\\x28\\x69\\x9a\\x8a\\x13\\xd7\\x2a\\xc1\\x38\\x6a\\xce\\x5a\\x99\\x5c\\xc1\\xb1\\x98\\xd9\\x32\\xa9\\xc8\\x6c\\xab\\x04\\x2a\\x7e\\x0d\\xb7\\x8c\\x70\\x6c\\x0a\\x4e\\x76\\x88\\xd8\\x92\\x22\\xaa\\xb8\\x3d\\x2c\\x3e\\xfe\\x6c\\xdd\\x85\\xd7\\xd3\\xc7\\x77\\xe8\\xcd\\x37\\x85\\x00\\xf2\\xcf\\x7e\\x46\\x15\\x37\\xd6\\x11\\xc9\\xe2\\x87\\xf3\\x0e\\xab\\x7a\\x42\\xb7\\x99\\xd3\\xd3\\x88\\x29\\x40\\x53\\x3d\\x11\\x47\\x5e\\xa2\\x0b\\x37\\xd9\\x8a\\x1d\\xb3\\x80\\xe0\\xf4\\x1a\\xb1\\xfc\\x39\\xa1\\xa3\\x00\\x86\\xce\\x9d\\x71\\x70\\x76\\x67\\x01\\x8b\\x18\\x75\\x03\\x69\\x1d\\x81\\xcb\\xe4\\xce\\x72\\x71\\x71\\xf8\\x13\\xff\\xbb\\xb3\\xb5\\x7b\\x4b\\xf7\\x1d\\xf4\\x9f\\xdb\\xcb\\xb3\\xf7\\xbf\\x65\\xf0\\x18\\x82\\xbe\\xfb\\x6c\\x3b\\xfa\\xe7\\x89\\x82\\xca\\xdd\\x00\\xc1\\x89\\xc7\\xf7\\x0c\\x37\\x41\\x22\\xf4\\xc6\\x70\\x98\\x88\\xc7\\xdc\\x41\\xb7\\x5a\\x3b\\xe9\\x79\\x66\\x4e\\x44\\x7b\\x01\\xf6\\x5b\\xd4\\xca\\xa0\\xb7\\x92\\xfe\\xc3\\xf6\\x3d\\xfb\\xfa\\x1f\\xff\\xf0\\x39\\x92\\xe6\\xfd\\x6c\\x4b\\xe8\\x6e\\x31\\x74\\x61\\x30\\xed\\x1b\\xb2\\x14\\xc5\\x74\\xbc\\x01\\x0e\\x92\\x3d\\x79\\xee\\xf9\\xed\\xb3\\x43\\xe0\\xf0\\x53\\x07\\xf2\\xf0\\xe7\\x5f\\x07\\xe9\\x07\\xee\\xb8\\x5c\\xea\\x3a\\x9b\\x03\\xcc\\x10\\x6b\\xac\\xa6\\x8e\\x7c\\x7f\\xb8\\x3b\\x0f\\xaf\\x72\\x08\\xa4\\x48\\x96\\x87\\x5f\\x80\\xf4\\x75\\x38\\x0e\\x93\\x59\\xbf\\xfc\\x8a\\xfc\\xec\\x99\\x90\\xb4\\x16\\xe2\\xea\\xf1\\x62\\x28\\x9a\\x74\\xeb\\xdf\\x82\\x3f\\xdd\\x4d\\xab\\xe5\\x60\\x37\\xaf\\xf4\\xb1\\x04\\x13\\x8f\\x3b\\x11\\x48\\xe3\\xba\\x38\\x7e\\xfa\\xae\\x35\\xf9\\x07\\x04\\xec\\x96\\xab\\xce\\xc6\\x91\\xd8\\x69\\xa0\\x78\\x13\\x46\\x6e\\xba\\xdd\\xdc\\x75\\x26\\x45\\x1e\\x39\\x29\\xa9\\x13\\x51\\x77\\x2d\\xe5\\x6a\\x0d\\x84\\x35\\x8d\\x2d\\x50\\x99\\x04\\x2e\\x22\\x76\\x62\\x90\\xcd\\x98\\x18\\x42\\x17\\x54\\xf8\\x3d\\x0f\\x49\\x7c\\xe9\\xa0\\x88\\xee\\xf2\\x89\\x8f\\x76\\xad\\x2f\\x01\\x1e\\xd8\\xf5\\x6f\\x49\\x9f\\x06\\x4a\\x1a\\x31\\x2d\\x9e\\xdb\\x03\\xed\\x17\\x12\\x4a\\x96\\x29\\xae\\x99\\xee\\x8d\\x05\\x1a\\xb9\\x76\\x2f\\xb3\\x0b\\x63\\x6d\\x32\\xd1\\x3b\\x6d\\xf9\\x8d\\x7c\\x13\\x86\\x79\\x88\\xf8\\x37\\x06\\xb7\\x61\\xb2\\xa2\\xab\\x63\\xba\\xc5\\x02\\x43\\xd3\\xbe\\xf6\\xd8\\xf7\\xa3\\x2f\\x74\\xd9\\x74\\x95\\x2f\\x9f\\xa8\\xc7\\xec\\x48\\xe3\\xaa\\xbb\\x18\\x5b\\xad\\x12\\x3b\\x6f\\x25\\xb7\\x6c\\xa5\\xcc\\x00\\x72\\x1f\\xc1\\x61\\xb8\\xa9\\xfb\\x5c\\x72\\x69\\xcd\\x49\\x71\\x65\\xc8\\x38\\xbc\\x84\\xb1\\x6c\\x92\\x5f\\x53\\x50\\x89\\x84\\x25\\xc8\\x54\\x4a\\xaa\\xc8\\x16\\x04\\xdd\\x65\\x28\\xaa\\x93\\x5a\\x89\\x00\\x56\\xf5\\x4a\\xd6\\x4a\\x00\\xe7\\x5f\\xf5\\x86\\x04\\xd3\\x7f\\x69\\xf7\\xf4\\xe6\\xf4\\x4a\\xf6\\xd7\\x1f\\x76\\x49\\x1c\\x6d\\x7f\\x93\\x22\\x53\\xfc\\x66\\xec\\x4a\\x31\\xa9\\xa3\\xfa\\xe9\\xae\\x4f\\x98\\x65\\x9d\\xb9\\xa4\\x95\\x5d\\x4a\\x0e\\x75\\x63\\x67\\x78\\xdf\\xc9\\x37\\x4f\\xd2\\xbd\\xf0\\x59\\xb1\\xdd\\x39\\xdf\\x56\\x14\\x23\\x6f\\x86\\xf0\\xdc\\xe7\\xa6\\x2f\\xb1\\xa9\\x9f\\x4a\\x39\\xbe\\x30\\xfc\\x71\\xf1\\xd5\\x0b\\x69\\x01\\x72\\x53\\x7c\\xdf\\x7e\\x24\\x24\\x4a\\xde\\x56\\xbc\\x2b\\xa0\\x73\\x33\\xce\\xa4\\xd5\\x9f\\xbe\\x49\\x1f\\x20\\x3d\\x22\\x93\\xf5\\x5c\\xc1\\x68\\x80\\x2e\\x25\\xbb\\x73\\x5c\\xec\\x6a\\x01\\x30\\xdd\\xa7\\x7e\\x27\\xc4\\x3c\\xf5\\x69\\x5e\\x0e\\x68\\x0a\\xbe\\x75\\xd4\\x8f\\xc5\\x4a\\x89\\xb7\\x6b\\xfb\\x2e\\x67\\x94\\xb5\\x79\\x40\\xdd\\x28\\x71\\x46\\x5a\\xab\\x20\\xae\\xe9\\xbf\\x9c\\xa9\\x6c\\xbd\\xe2\\xa9\\x1d\\x45\\x66\\xa5\\x1f\\x01\\x42\\x76\\x97\\x36\\x50\\xaa\\x34\\x18\\xe9\\xaf\\x0e\\x66\\x75\\x01\\x03\\x40\\x04\\x6a\\x82\\x21\\x95\\xd1\\x50\\x5a\\xb2\\x99\\xcf\\xea\\x06\\xb2\\x0d\\x63\\xb1\\x24\\x58\\x8f\\xa8\\xde\\x54\\xfc\\x78\\x91\\x39\\x5c\\xf6\\x7e\\xe6\\x31\\x41\\x75\\x33\\xb7\\x79\\x1b\\x65\\x16\\x28\\xee\\x37\\x53\\xc6\\x3b\\xcd\\xbd\\x93\\xe9\\xaa\\xb6\\x9b\\xb9\\x2d\\xdb\\x29\\x73\\x40\\xf1\\x4f\\x00\\x60\\x46\\xec\\x46\\x8a\\x23\\x32\\xd4\\x24\\x39\\xc3\\x25\\xf8\\x6e\\x64\\x00\\x41\\x76\\xc3\\x25\\x95\\xf2\\x39\\xb2\\xf1\\x18\\x2e\\x21\\xf4\\x60\\x60\\x7a\\xc9\\xf1\\x2f\\x46\\x35\\x5d\\x0b\\x4c\\x60\\x86\\x51\\xe9\\x31\\xae\\x2d\\x8a\\x26\\x96\\xa9\\xac\\xb9\\x8a\\xc5\\xd0\\xc7\\x86\\xa0\\x9b\\x05\\xf7\\xa7\\xa9\\x96\\x57\\xd1\\x78\\x0e\\x97\\x08\\x9d\\x70\\x58\\x71\\xdf\\x71\\x97\\x12\\xc5\\x71\\xfb\\xc8\\x6e\\xc5\\x58\\xac\\x37\\x65\\x5f\\x90\\xd2\\xa9\\x6f\\xf3\\xe5\\xd9\\x7a\\xfa\\x5c\\x53\\xf4\\xcc\\xa2\\x19\\x46\\x8d\\xcf\\xbe\\x61\\x21\\x6b\\xc5\\xc8\\x99\\xf0\\x63\\xaa\\x35\\x87\\x65\\x4f\\xb8\\x1b\\x44\\xa6\\xdf\\xa7\\xb8\\x94\\x64\\x60\\xbd\\xc9\\x7b\\x42\\xcb\\x3c\\x70\\xa7\\x37\\xdf\\xde\\x3d\\x64\\xdf\\x47\\x66\\xf8\\xcf\\x50\\xd7\\xd2\\x19\\xc3\\x0b\\x05\\x2b\\x7a\\x5e\\x71\\x28\\xbb\\x38\\x51\\xc8\\x71\\x25\\x7c\\xce\\xf7\\x43\\x49\\x2f\\x6d\\xbd\\xf6\\x09\\x4d\\x9a\\xf6\\xc8\\x80\\x27\\x86\\x41\\xc0\\x49\\xfd\\xee\\x4e\\xd1\\xb4\\x94\\x13\\x9a\\x91\\x4c\\x4a\\xc8\\x53\\x18\\x6e\\xcc\\x07\\x10\\x48\\x52\\xd2\\x10\\x89\\x34\\x34\\x60\\x6a\\x31\\x24\\x04\\xc5\\x80\\x92\\x7d\\xc9\\x9e\\x84\\x2f\\x12\\xff\\x87\\x95\\x0e\\x3f\\x86\\xe5\\x0f\\x43\\x2f\\x68\\xf0\\x52\\xf1\\xdc\\x13\\x93\\xc1\\xae\\x3b\\x7d\\x17\\x7b\\x2e\\xde\\x5d\\x3b\\xe2\\x69\\xf1\\xd4\\xba\\xa9\\x3f\\x90\\x45\\x4f\\x3e\\x0f\\xda\\x28\\xc1\\x8d\\x66\\xfb\\x7f\\x37\\xfe\\xda\\x68\\x53\\x17\\xaf\\x02\\x53\\xf0\\xb5\\x35\\x44\\xc2\\xb2\\x93\\xdf\\x87\\x56\\xb6\\x1e\\xf9\\x60\\x08\\xbf\\x7f\\x5e\\x3e\\x79\\xb0\\xcd\\x15\\xaa\\xcf\\xbb\\x55\\xdf\\xec\\x16\\x41\\x99\\xf5\\xf3\\x74\\xb8\\x14\\xad\\x78\\x93\\x59\\x6c\\xcc\\x55\\xb0\\x1c\\x82\\x53\\xd6\\xdf\\x31\\x72\\x3a\\xad\\x94\\xf3\\xc4\\xfa\\x0f\\x9b\\x58\\x35\\x79\\xc1\\x37\\x7b\\xf3\\x9d\\x8f\\xbe\\x4a\\x83\\x13\\xfa\\xb6\\x25\\x11\\xb2\\xd6\\x77\\xe0\\x76\\xac\\x83\\x64\\x68\\x15\\xe1\\xc0\\xed\\xb0\\xcb\\x70\\x70\\x98\\xfa\\xf0\\xb1\\x6e\\xef\\x9a\\x8d\\x15\\x9c\\x05\\x93\\xc8\\x27\\x7e\\xe0\\x53\\xa8\\x41\\x4c\\x43\\xc5\\x82\\x6c\\x2d\\x88\\x16\\x33\\xd2\\xce\\x9b\\x92\\x32\\xfd\\x4f\\xb1\\xe5\\xf9\\xc0\\x60\\x1e\\x8e\\x15\\xb5\\x44\\x06\\x82\\x92\\xcc\\xc5\\xf7\\x13\\xc0\\xf7\\xf7\\xd6\\x7a\\x5a\\x12\\xd7\\x1b\\xb9\\x3b\\x5f\\xd4\\x8b\\x81\\x32\\xc9\\xe0\\xea\\x28\\x40\\x64\\x1e\\x94\\x42\\xe9\\x68\\x75\\xee\\xa4\\xa7\\xf8\\xf6\\xd1\\x95\\x2e\\xa4\\x37\\x8f\\x87\\xb3\\xd9\\x51\\xee\\xd9\\xff\\x52\\xd8\\x0a\\x90\\x90\\xaf\\xf0\\x9a\\xfb\\x7b\\xf3\\x0e\\x31\\xe9\\xce\\x3d\\x54\\xb5\\xcb\\x36\\x18\\x93\\xad\\xb5\\xb4\\x09\\xa3\\x49\\x4c\\x96\\x39\\xb9\\xf2\\x6f\\x37\\xdf\\xc0\\xd7\\x69\\xe6\\x9c\\xfe\\x58\\xec\\xca\\xd9\\x4d\\x33\\x9b\\x7e\\x2e\\xff\\x52\\x86\\xac\\xf3\\xf8\\xf7\\xeb\\x9a\\x3f\\xa2\\xce\\x1d\\x80\\x3c\\xc0\\xa2\\xae\\x3b\\x0b\\xbf\\x88\\x5f\\x53\\xaa\\x32\\x15\\x85\\xe3\\x62\\x61\\xb9\\x6c\\x84\\x9e\\xa5\\xde\\x2e\\x2f\\x98\\x54\\xf2\\x72\\x77\\xb2\\x54\\x79\\xd6\\x9e\\xd8\\x94\\x77\\xc6\\x89\\x62\\xc8\\x25\\x30\\x11\\x96\\xd8\\x24\\xb0\\x79\\x78\\xf3\\x11\\x27\\x9c\\x4f\\x34\\xdd\\x52\\xc2\\x63\\x43\\x9a\\x46\\xe6\\x4d\\x33\\x81\\x71\\xa2\\xcc\\x82\\xb6\\x2f\\xcd\\x02\\xb5\\x87\\xa7\\x60\\x7c\\x9b\\x94\\xec\\x88\\x70\\x24\\x83\\x01\\x8e\\x35\\x15\\x1c\\x50\\x30\\xc3\\xd3\\x40\\x59\\x07\\x70\\x12\\x53\\x60\\x9f\\x2c\\xf9\\x74\\x60\\xe7\\x4a\\xda\\x38\\xe6\\xa6\\x93\\xd3\\x7c\\xee\\xee\\x87\\x9e\\xa2\\xf4\\x42\\xa1\\xde\\x4a\\x97\\x70\\x4c\\x78\\x59\\x96\\x99\\xcd\\xc1\\x9a\\xc8\\x68\\x56\\x1c\\x29\\x70\\x09\\xd2\\xa8\\xfc\\x87\\x24\\xbe\\x30\\x32\\x3b\\x04\\x26\\xac\\xca\\xc2\\x64\\x5a\\xe7\\x3e\\xf9\\xde\\x89\\x0f\\x94\\xe8\\x71\\x5e\\x91\\xd7\\xd8\\xdb\\x91\\xbb\\x8f\\x96\\xe9\\xd9\\x4f\\x9b\\x26\\xd0\\x5e\\xaf\\x08\\xe7\\x95\\xe8\\xcd\\x92\\xf3\\x9c\\x4f\\x1a\\x31\\x0b\\x27\\x17\\xec\\x6c\\x70\\x8d\\xd3\\x53\\x73\\x9d\\xa0\\xd8\\x09\\x75\\xbd\\x9e\\xb5\\xe6\\x6f\\x91\\x31\\x99\\x46\\x37\\x24\\xa3\\x3f\\xae\\xa9\\x9a\\x34\\x43\\x32\\x9d\\x16\\xa3\\xf9\\x7f\\xc1\\x90\\xa4\\xe9\\xbb\\x7f\\x38\\x91\\xcf\\x5f\\x68\\x76\\x72\\x5a\\xbf\\x70\\xc7\\x99\\x7c\\x6f\\x61\\x9d\\x61\\xef\\x89\\x74\\x60\\x38\\xbb\\x10\\x86\\xea\\xe3\\x52\\xfe\\xad\\xe5\\xeb\\x7d\\x5b\\xa5\\xdc\\xb0\\x64\\x84\\x41\\x07\\x76\\x35\\x15\\xed\\xd7\\xb2\\xca\\xa7\\x60\\x59\\xb7\\xfa\\x2c\\x20\\x31\\x1c\\x29\\xd0\\xee\\xdd\\xa2\\xa5\\xee\\xc4\\x40\\x6b\\x97\\x2b\\x48\\x61\\xf5\\xfe\\x74\\x20\\xdd\\x4d\\x00\\xa0\\x14\\x01\\x07\\x25\\x61\\x33\\x1d\\x6c\\x76\\x86\\x95\\x86\\xe2\\xe3\\xc2\\xe4\\x5a\\x0f\\xab\\xdb\\xe1\\xac\\xa7\\xc2\\x08\\x65\\xa7\\x93\\x38\\xcf\\xce\\x3c\\xcf\\x1e\\x47\\x6e\\x3d\\x0d\\x86\\x1b\\x68\\xce\\x5c\\xe8\\xe5\\x5d\\x5e\\x91\\x8d\\x73\\xc8\\x65\\x1a\\x47\\xc1\\x99\\x22\\x9c\\x5d\\xea\\x6b\\x2f\\x8a\\x7b\\xba\\xa4\\x13\\x1d\\x1b\\x7e\\x77\\xcc\\xd7\\xcb\\xe9\\x56\\xb6\\xe3\\xcd\\x16\\x79\\xf3\\xee\\x56\\xb2\\x9d\\xfc\\xb3\\xd6\\x3f\\xbc\\xeb\\xdd\\xd7\\x34\\x72\\x7f\\xb7\\xce\\x7f\\xf9\\xe4\\xde\\xa9\\x5a\\x88\\xee\\x4d\\x16\\xd6\\x64\\x22\\x36\\xf0\\x68\\x18\\x67\\x67\\xe9\\xce\\xab\\x3b\\xf9\\x10\\x95\\xe4\\x8f\\x73\\x8a\\xbf\\xce\\xae\\x1c\\x73\\x23\\xf7\\x09\\x77\\xbc\\x1f\\xca\\xb0\\x9c\\x00\\x53\\xa0\\xac\\x35\\x6b\\x5b\\xd4\\x41\\xa4\\x52\\xb3\\xa5\\x91\\x6d\\x53\\xd6\\xe0\\xdc\\x4a\\x91\\x27\\xe5\\xb2\\xd7\\xd7\\x20\\xd4\\xdd\\xa3\\x93\\xf6\\xa1\\x30\\x0c\\x65\\xfa\\xae\\x69\\x9a\\xc1\\x7e\\xe9\\xc4\\x5d\\x46\\x11\\x9c\\x24\\x94\\xcb\\x31\\xb5\\xfe\\x4b\\xa7\\x2a\\x75\\xc5\\x34\\xad\\x01\\x1f\\x50\\x28\\x99\\x65\\x76\\xb4\\x9e\\x8e\\x18\\x5b\\xe8\\x6e\\x07\\xa7\\xcd\\x2e\\x6e\\x00\\xa6\\xdb\\xa5\\xc7\\xa4\\xc2\\xed\\x33\\x18\\x02\\xe9\\x89\\x73\\x02\\x62\\x50\\x61\\xef\\xac\\x08\\xd9\\x87\\xfe\\x08\\xc1\\x5a\\x9c\\x4e\\x3b\\x78\\x37\\xbd\\xf6\\x99\\x1d\\x2a\\x70\\x68\\x34\\xa8\\x54\\x79\\x0b\\x9e\\x27\\xb3\\x20\\x05\\xc7\\xe3\\x94\\xd7\\x61\\x41\\xb0\\x1e\\xeb\\x92\\x73\\x3c\\x0a\\xc8\\x58\\xf2\\x7c\\x76\\xb8\\x4f\\x21\\x65\\xb8\\x2d\\xb2\\x8a\\x2c\\xad\\x2e\\x92\\x65\\x91\\x15\\xf2\\xc8\\xb0\\x37\\x81\\x2f\\x95\\xcc\\x7b\\x63\\x00\\xd1\\x80\\x82\\x48\\xea\\xa0\\x6b\\xf9\\x3c\\x36\\x93\\xc6\\xef\\x71\\x2e\\x7e\\xff\\xdd\\xb6\\x88\\x9c\\x78\\x80\\x4e\\x05\\x9d\\xef\\x25\\x3b\\x72\\xfb\\xd6\\x6f\\xaa\\xc6\\x32\\x2b\\xec\\xb6\\x7a\\x36\\x02\\x37\\xd0\\x1d\\x4e\\x56\\x87\\x4b\\xdc\\xa4\\x3a\\x5c\\x22\\x9a\\x11\\x14\\xae\\xea\\xdf\\xf5\\x9f\\x47\\xcf\\x9d\\x18\\x0a\\x08\\x4a\\xb0\\xd3\\x77\\xb4\\xfb\\x42\\x54\\x48\\x5c\\xc4\\xb1\\x96\\x8d\\xa3\\x1b\\xc1\\xde\\x2d\\xfd\\x1f\\x3e\\xbf\\x4f\\xad\\x79\\xe4\\x9a\\x05\\x70\\xe1\\x4c\\x1a\\x15\\xca\\x5c\\x05\\xc7\\x53\\xa9\\xaf\\x98\\x44\\xdb\\x52\\x69\\x70\\x3a\\xe7\\x15\\xae\\x0b\\x85\\x40\\x21\\xcf\\xbb\\xb8\\xfd\\xec\\xec\\x42\\x5c\\xe6\\x49\\x9a\\x2c\\x74\\x7a\\xc6\\xea\\xbc\\x7b\\xfa\\xcd\\x5e\\x24\\xe3\\xa6\\xab\\xa3\\x3d\\x8c\\x8d\\x28\\xba\\x86\\xe2\\x70\\x31\\xb3\\x42\\x4f\\x57\\xae\\xb2\\x95\\x60\\x36\\xf3\\xf6\\xef\\x52\\xb2\\x5d\\xc2\\xd3\\xd6\\x3f\\x1c\\xe5\\x74\\x7a\\x29\\xee\\x77\\xeb\\x5e\\x13\\x67\\x5b\\xf0\\xdc\\x8b\\xce\\xf4\\x75\\xff\\xe8\\xa1\\x10\\x53\\x2e\\xfc\\x4c\\x72\\x1a\\x78\\xfe\\x65\\x17\\x62\\xab\\xd2\\x43\\xc0\\x9d\\x73\\x81\\x2c\\xf3\\x35\\xb0\\x39\\xdb\\x22\\x50\\x69\\xd6\\xf1\\xf4\\x29\\x28\\x49\\x42\\x71\\x80\\x92\\xfc\\x4c\\x91\\xb9\\x24\\xeb\\x65\\xd4\\x56\\x3d\\x99\\x0b\\x7e\\xb8\\xac\\x6b\\xb5\\x3d\\xee\\x8f\\xe1\\x34\\xb0\\xff\\xd8\\x22\\x64\\x38\\x17\\x0c\\xd4\\x22\\xcd\\xfc\\x34\\x99\\xe5\\xb6\\xc5\\x13\\xaf\\x37\\xce\\x3d\\xf6\\xf0\\x64\\x47\\x68\\x5a\\x4d\\xaa\\x45\\xb7\\xb6\\x8c\\x7b\\x44\\x9e\\x9f\\x8b\\x24\\xfc\\x43\\xc9\\x4a\\x63\\x13\\xdf\\x86\\xcd\\x4e\\xdf\\x1e\\x1c\\x0c\\xa7\\xf4\\x6c\\x09\\x5f\\xc1\\x37\\xb4\\x1d\\x67\\x57\\x58\\xb4\\x65\\x32\\x6e\\x96\\x0d\\x07\\xf2\\xc1\\xb6\\x93\\x34\\x17\\xd5\\xfc\\xba\\x62\\x3a\\xbf\\x6c\\x7f\\x89\\xb5\\x13\\x58\\xd7\\x96\\x77\\x44\\xc2\\xf7\\x98\\x93\\xa2\\xb4\\x09\\x94\\xcd\\xa1\\x80\\x68\\x81\\x89\\x9f\\xfd\\xc6\\x6b\\xa6\\x35\\x68\\x6d\\xce\\xb6\\x72\\x23\\x58\\xec\\xb2\\x2d\\xb1\\x66\\x12\\xc9\\x79\\xb4\\x03\\x50\\x6a\\xcf\\x16\\xf0\\xad\\xd9\\xa5\\x59\\x40\\x4e\\x2a\\x39\\x1b\\x08\\xda\\xb0\\x7c\\x3e\\x8f\\x4c\\x30\\x1b\\x20\\x2f\\x33\\x7c\\x1e\\xfd\\x69\\x74\\xa9\\xf5\\x27\\x30\\xe6\\xc9\\x5a\\x94\\x3f\\x2b\\xf0\\x4e\\xf2\\xa1\\x38\\xd7\\xd8\\xf4\\x03\\x31\\xd0\\xfc\\x37\\xe2\\xa1\\xb2\\x2c\\xff\\xaa\\x23\\x60\\xe8\\x48\\x0c\\x62\\x9d\\x43\\x6c\\xa0\\x8f\\x6b\\x0b\\x11\\xf6\\x48\\x06\\x62\\xb7\\x0f\\x0e\\x69\\xba\\x1e\\x31\\x81\\x69\\x91\\x3a\\x64\\x18\\x29\\x64\\x18\\x36\\x77\\xe5\\x4d\\x0b\\x58\\x3f\\x4e\\x7d\\xb8\\x49\\xb5\\x19\\x46\\x44\\x33\\x39\\x78\\xc3\\x90\\x1d\\xf6\\xea\\x07\\xf7\\x15\\xf3\\xf1\\xc9\\x8d\\x52\\xbb\\x4b\\x58\\xf2\\x4d\\xde\\xcd\\x8f\\x37\\x3f\\x5d\\x79\\xee\\xee\\xf5\\x72\\x2c\\x7a\\x97\\x0d\\xd6\\x4d\\x91\\x2d\\x9d\\xb5\\xd6\\xbb\\x5e\\x67\\xf9\\x9a\\x9c\\xd2\\x4a\\x73\\xf3\\xaf\\x46\\x46\\x5f\\x6d\\x6f\\xeb\\x8e\\xb7\\x4e\\xb9\\x9e\\xa6\\x21\\x56\\xf4\\xcf\\xe8\\x8c\\xef\\x25\\x1a\\x82\\xd7\\x66\\x64\\xfe\\xdb\\x03\\xd5\\x99\\xf8\\xf6\\xfb\\xcf\\xf5\\xf2\\x9a\\x03\\xcd\\x3e\\x60\\x92\\x1f\\xa6\\x64\\xde\\x98\\xb5\\x9a\\x96\\x8c\\xc2\\xbf\\x76\\x11\\x60\\x8b\\xb9\\xb6\\xc8\\x72\\x8a\\x4e\\xb4\\x79\\xb4\\xa1\\x63\\x20\\x3a\\x77\\x65\\x4f\\x4f\\xad\\xac\\x56\\x94\\x95\\xf7\\x01\\x1b\\x89\\x3c\\x13\\x67\\x27\\x1f\\x69\\xa2\\xdd\\x7d\\xf2\\x4b\\x07\\x07\\xac\\xae\\x4c\\xbe\\xd1\\x8a\\xbb\\xc5\\x0d\\x62\\x23\\x5f\\x09\\xcd\\x42\\xff\\xc0\\xc7\\x93\\x71\\x40\\xec\\xe5\\x88\\x45\\xf6\\xfb\\xa4\\xd1\\x69\\x8e\\xd5\\x74\\x88\\x57\\xd2\\x7a\\x06\\xb7\\x50\\x3e\\x5a\\xa0\\x9f\\x48\\x0c\\x93\\x70\\x0c\\xad\\x01\\x6d\\xe4\\x45\\x57\\xb8\\xa3\\xb9\\x48\\x1f\\x4f\\xc3\\x43\\x4b\\xfe\\xc9\\x31\\xc5\\x80\\x94\\xe6\\x5a\\x9d\\x03\\xc1\\xa4\\x6e\\x61\\x0a\\x8a\\x54\\x13\\x62\\xd0\\xc0\\x42\\x54\\xec\\xab\\x0b\\xf6\\x77\\xc3\\xeb\\x5e\\x77\\xb8\\x63\\xba\\x6c\\xbc\\x60\\x53\\x81\\x38\\x07\\x5c\\x3d\\x42\\xfb\\x94\\x27\\x52\\xc3\\x61\\x36\\x62\\xcf\\xa9\\xd2\\x5a\\x64\\xed\\xa1\\xdc\\x0d\\xec\\xd4\\xdc\\xa5\\x05\\x0d\\x8d\\x62\\xff\\x5a\\x28\\xab\\x97\\xf1\\x0c\\x48\\x6e\\x04\\x2a\\x09\\x3c\\x9b\\xa7\\x5a\\xa7\\xc9\\xc0\\xee\\xce\\x7b\\x01\\x17\\xed\\x6d\\x78\\x47\\xb2\\xd0\\xc7\\x21\\xfb\\xae\\xf1\\x1a\\x67\\xf1\\x2b\\x3a\\xdd\\x86\\x66\\x3d\\x49\\xdb\\x71\\xe4\\x2a\\xa7\\x25\\x7f\\x83\\x50\\x51\\x09\\x1e\\xac\\x57\\x70\\x57\\xf3\\xf5\\x56\\x4b\\xd6\\x67\\xaf\\x8e\\xdb\\xe2\\x7c\\x12\\xca\\xb3\\xc5\\x4f\\xfc\\x87\\x41\\x3e\\xb8\\xff\\x0a\\x12\\x37\\x17\\x7d\\xf6\\x34\\x10\\xe5\\x2d\\x6f\\x61\\x6c\\xb1\\x4d\\x09\\xce\\xc8\\xd4\\xb5\\x86\\x03\\x15\\x41\\xa9\\x08\\xf6\\xfb\\x50\\x20\\x35\\x2e\\x96\\xcc\\xe9\\xae\\x16\\x30\\x58\\x15\\xc8\\x9e\\x36\\xe1\\xa4\\x98\\x19\\xd8\\xaf\\x96\\x57\\x6b\\x47\\xb3\\x34\\xbe\\x58\\x0b\\xc5\\x98\\xc5\\x62\\xa3\\xd9\\xc6\\xec\\x5c\\xb1\\x30\\x23\\x57\\x6d\\x27\\x4a\\xae\\x62\\x73\\xb3\\x40\\x55\\x4e\\x81\\x4e\\x41\\xf2\\x42\\xf2\\xe2\\x2c\\x05\\xf6\\x72\\xd1\\xdc\\x9f\\x3b\\x20\\x05\\x2b\\x93\\xa0\\x17\\xba\\xaf\\x12\\x9b\\xf0\\xe5\\x9a\\x7a\\xbf\\x29\\x75\\xe8\\xa8\\xf5\\xec\\xa3\\xf3\\x62\\xe2\\x54\\xab\\x64\\x4a\\xc6\\xb4\\xf6\\x63\\x37\\xc6\\xce\\x4e\\xd3\\x10\\x32\\xb1\\x93\\xd8\\x93\\xe5\\x11\\xa1\\xf8\\xf2\\x9f\\x98\\x70\\x4d\\xeb\\xf4\\x3c\\x93\\x5f\\x26\\xd2\\x43\\xf9\\x1c\\xa9\\x3b\\xad\\x15\\x8d\\xf5\\x7c\\x5a\\x47\\x41\\xf0\\x68\\xef\\x1d\\xb6\\x21\\xd0\\xbc\\xbd\\x86\\xe6\\xbc\\xe9\\xfb\\xbf\\xe2\\xc9\\x28\\x11\\x1f\\xce\\x39\\x63\\x99\\x29\\xfe\\xf1\\xc3\\xfb\\x07\\xb7\\xee\\xdf\\x8a\\x51\\xe1\\xaa\\xa4\\xc5\\xb6\\xb3\\xbf\\xba\\x25\\x2c\\xab\\x08\\xc8\\xb3\\xb3\\x6b\\xe0\\x22\\xd5\\x96\\x02\\xd6\\x08\\x3f\\x1d\\x6e\\xcc\\xa2\\x87\\x8e\\x6e\\xe9\\x31\\xcd\\xbd\\xf2\\x76\\xf0\\x58\\x6b\\x8c\\x70\\xc7\\x47\\x97\\x37\\x4f\\xf4\\xca\\x47\\x21\\x86\\x76\\x9c\\xf9\\xe5\\x02\\x18\\x3d\\x91\\xcf\\xd0\\xc2\\x9e\\xd1\\x3d\\xbd\\x9a\\x5e\\xb0\\x00\\x7b\\xd7\\xf2\\x15\\xcb\\x39\\xcb\\x8f\\x46\\x1f\\x7b\\xbd\\x98\\xd6\\xe0\\x85\\x29\\xaf\\x1b\\xee\\x98\\x33\\x3b\\xb3\\xe7\\xe9\\xe8\\xd3\\x71\\xdc\\x99\\xe3\\xcd\\x5f\\x1b\\xbd\\xb6\\x07\\x72\\x0c\\x02\\xae\\x32\\x10\\x1b\\x01\\x31\\x68\\x10\\x32\\xf9\\xb7\\xd4\\x07\\x3f\\x03\\x88\\xb7\\xde\\x98\\xc3\\x99\\xa7\\xc8\\x85\\x96\\x23\\x43\\xee\\xb5\\xf6\\x80\\x42\\x35\\x9e\\xde\\x93\\x82\\xee\\xaa\\x3e\\xea\\x2e\\x25\\x49\\x3c\\x60\\xfc\\x52\\xc9\\x13\\x6b\\x9e\\x38\\x8e\\x6c\\x47\\x67\\xed\\x7f\\xed\\x36\\xbf\\xac\\x6e\\xf9\\x4b\\x21\\xbb\\xf4\\xf7\\x0c\\xde\\x77\\xf3\\x24\\xb0\\x62\\x14\\x35\\xdc\\x06\\x08\\xab\\x39\\xe3\\x1d\\x2e\\x02\\x12\\xbd\\xfc\\xdf\\x9f\\x69\\x96\\x2c\\xad\\x8f\\x1f\\x01\\x27\\xf4\\x62\\x11\\xf8\\x44\\x46\\xdd\\xa6\\xd8\\xf1\\x6a\\x3c\\xab\\x25\\x53\\x0b\\x50\\xac\\x5a\\xd9\\x7c\\xd6\\x02\\x12\\xf2\\xad\\x20\\xdc\\xf1\\xe6\\x1d\\xea\\xbd\\xa6\\x8d\\xbc\\xf3\\x5a\\xa8\\x30\\xa6\\xe6\\x3d\\x53\\x1b\\xf2\\xd6\\x0e\\x04\\xaa\\x66\\x86\\x18\\x26\\x2f\\x2e\\x8f\\x90\\x3d\\x39\\xe6\\xbe\\xa3\\x3c\\xdb\\x5e\\xb9\\x34\\xca\\x36\\xb2\\xb2\\x22\\x1f\\xc8\\xc4\\x28\\x3b\\x70\\x1d\\x7e\\x75\\x3b\\xe4\\xe6\\x8a\\x85\\xfb\\xe2\\x54\\x43\\xe0\\x09\\x8c\\x74\\x11\\x73\\x9b\\xcc\\x08\\x7d\\x06\\x2c\\x7d\\x46\\xe1\\x8a\\x36\\xae\\x48\\x7e\\x6e\\xd4\\x0a\\x5e\\xac\\x9d\\x54\\xa9\\x68\\x63\\xf2\\x87\\x39\\xf8\\xb6\\x7c\\xdd\\x13\\x01\\xb9\\xf0\\x54\\x80\\xef\\x9b\\xbe\\xbe\\x1e\\xf9\\x94\\xcf\\x57\\x49\\xc6\\x68\\x8f\\xb9\\xfd\\xe6\\xb0\\x96\\x53\\xfb\\xd3\\x9a\\xce\\xf5\\x50\\xa7\\xb7\\x7d\\x23\\x33\\x92\\xb7\\x4b\\x3c\\xa9\\x1f\\x17\\xc8\\x82\\x59\\xe1\\x4b\\x82\\xf4\\xc5\\xde\\x36\\xd0\\xda\\xa6\\x73\\x45\\x5e\\x2e\\xad\\xcf\\x86\\x60\\x2f\\xa7\\xa1\\x24\\x66\\x7b\\x48\\x59\\x04\\xda\\x89\\xe1\\x74\\xd1\\xb4\\xc0\\x0c\\x0b\\x41\\x43\\x5f\\x83\\xfb\\x5f\\xc4\\xf9\\x0f\\xd2\\xd2\\x7d\\xcf\\x83\\x4e\\x53\\x95\\x3e\\x34\\xea\\xe9\\x05\\x85\\x12\\xac\\x6b\\xd7\\xc2\\xe0\\xc3\\x07\\x39\\x98\\x36\\x30\\x37\\x3b\\x11\\xbc\\x5c\\x06\\x2c\\x03\\x73\\xeb\\x9c\\x39\\x61\\x91\\x85\\xb9\\x9a\\x93\\xe0\\xf7\\x27\\xa2\\x92\\x1e\\x8d\\x2f\\x22\\xe1\\x35\\x58\\x71\\xca\\x7b\\xb5\\xcd\\x7f\\x19\\xfd\\xd2\\xad\\xed\\x1e\\x0f\\xd9\\xc9\\xe5\\x8f\\xf7\\x0a\\x1c\\x4a\\x84\\x18\\x18\\x78\\xae\\x42\\x78\\x55\\x4e\\xd1\\x7f\\x19\\xf0\\x03\\xa3\\x75\\x72\\x8d\\xdc\\x8b\\xf5\\xea\\x4c\\xfd\\xa7\\x20\\xa3\\x1e\\x89\\x7d\\x73\\x85\\xad\\xe6\\x15\\x88\\x9d\\x1d\\x9d\\x9d\\x5e\\xa9\\x9b\\x78\\x1d\\xb4\\xb4\\xe6\\xe4\\xeb\\x2f\\xd8\\xbc\\xf9\\x9f\\x2d\\x2b\\x5b\\x4c\\xb5\\xbb\\x8b\\xd6\\xdd\\xd9\\xbd\\xe7\\x1f\\xb7\\xe6\\x1b\\xdf\\xda\\xe7\\x6f\\x9a\\xcb\\x57\\x4d\\x77\\xcf\\x6e\\xfd\\xff\\x9b\\x1b\\xa6\\x59\\x24\\x4a\\x7f\\xb6\\x47\\x56\\x46\\xaa\\xa9\\xe1\\x1a\\x47\\x66\\x30\\x01\\xbd\\xee\\xc5\\x9c\\xb9\\x3e\\x7a\\x7d\\xb3\\x66\\xf3\\x93\\xd1\\x27\\xd1\\x18\\x76\\xa2\\xac\\x46\\x41\\x8c\\x85\\x47\\xaf\\xf8\\x03\\xaa\\x2f\\xf4\\x16\\x64\\x74\\x7f\\xb4\\x45\\xfe\\xd3\\xd8\\x7b\\xbc\\x4a\\xe3\\x92\\x9f\\x4d\\xee\\x11\\xfc\\x45\\x8f\\xc3\\x2c\\xb8\\x31\\x3a\\x62\\x3b\\x37\\xb8\\x74\\xf9\\xf9\\x12\\xef\\xea\\x7d\\xb7\\x3d\\x3e\\xb8\\xc7\\x33\\x22\\x67\\x62\\xa0\\x7a\\x80\\xbb\\x63\\xf0\\xa7\\x62\\xdb\\x68\\xa3\\x40\\x9e\\x91\\x94\\xfd\\xd0\\xc7\\x8b\\x44\\x1a\\x37\\xf0\\xc2\\xa7\\xee\\xd5\\xa5\\xde\\xe5\\x7c\\x76\\xe1\\x94\\xbb\\x03\\xa3\\x6b\\x23\\xce\\x18\\xfc\\x27\\x8d\\x91\\x1a\\x5e\\x9b\\xa8\\x7c\\x96\\x5e\\x79\\xbf\\x04\\x34\\xde\\xfd\\x24\\x9c\\xa9\\x50\\xa2\\xd1\\x7e\\xaf\\xc9\\xaa\\x54\\x98\\xae\\x8c\\xcf\\x0e\\x19\\x23\\x43\\x78\\x03\\x40\\x5a\\x4a\\x90\\x48\\x2e\\xe1\\xd6\\x3a\\x03\\xa7\\x72\\x59\\xc1\\x14\\x5d\\x8f\\xce\\x6c\\xb7\\xab\\xe1\\xf4\\xc7\\xfb\\x1a\\x66\\x3b\\xe2\\x07\\xdf\\xa9\\x67\\x00\\xb4\\x46\\xb8\\xfe\\x9e\\xee\\xee\\xfb\\x7e\\x23\\xe6\\x0f\\x14\\x46\\xc6\\xbb\\x09\\xe2\\x02\\x3f\\xae\\x29\\x80\\xf9\\x48\\x1a\\x6a\\x7f\\x04\\x72\\xb6\\x65\\x70\\xcd\\x9a\\xe8\\xd8\\x8b\\xf4\\x1e\\x3c\\x7d\\xa6\\xc1\\x4b\\x64\\xb0\\xef\\x63\\xd5\\x7c\\x4d\\xfc\\x65\\x5e\\xf4\\xef\\x6f\\x20\\x0a\\xeb\\x87\\x00\\x33\\x50\\x76\\x02\\x03\\xcc\\xda\\x5a\\x75\\xe9\\x17\\xef\\x97\\x1f\\x7d\\xdf\\x30\\x71\\xda\\x5e\\xcc\\x38\\xa6\\x7f\\x47\\x55\\x3c\\x1b\\x58\\x46\\x5b\\xbd\\x0d\\x38\\x7b\\x9b\\x31\\xe6\\xf8\\x72\\x9d\\x59\\x87\\x19\\xf5\\xbd\\x78\\xb6\\x4c\\xa5\\xbb\\x8b\\xf2\\x79\\xe0\\xc3\\x2c\\x75\\xae\\x7a\\x6a\\x58\\xbc\\x9e\\x03\\xf8\\xf0\\xf9\\xea\\x31\\x34\\xe4\\xe4\\x76\\xc2\\xd5\\x62\\x27\\x25\\x0a\\xad\\xed\\x97\\x06\\x06\\xf8\\x48\\xa4\\x0c\\x44\\x79\\x51\\x91\\xa2\\x2d\\xd6\\x2e\\x86\\xa1\\x4f\\x9b\\x60\\xa2\\x07\\xeb\\xab\\xd5\\x9a\\x5a\\xbf\\x91\\x2b\\xe3\\x0f\\x36\\x56\\x48\\xfc\\x71\\xfd\\x7c\\x40\\xfa\\x1d\\x6c\\xae\\x61\\x6b\\x5a\\xfc\\x06\\x42\\x5f\\x76\\x8e\\x23\\x5b\\xf9\\x73\\xc4\\xf1\\xbf\\xe1\\xf5\\x69\\x10\\x26\\x39\\xce\\x41\\x22\\xc0\\xbf\\xf7\\xf3\\x59\\x0b\\x4f\\xb9\\x71\\x45\\xed\\x1f\\x5f\\x28\\x01\\x1d\\x1a\\xc5\\xdf\\x3d\\x70\\x10\\xb0\\x65\\x6b\\x0a\\xc4\\xf3\\xa9\\x48\\x6b\\x78\\xa8\\x20\\x2a\\xbc\\x94\\x8a\\x8e\\x13\\x1f\\x45\\xa0\\xf8\\xe1\\x84\\xb0\\x1d\\x77\\xf1\\x73\\xf5\\xa7\\x25\\x0d\\xe9\\xb3\\x85\\x8d\\x9d\\x98\\x40\\xb2\\x95\\x38\\x84\\x63\\x41\\xe3\\xce\\x70\\x85\\xc6\\x8c\\x70\\xc7\\x30\\x02\\x93\\x62\\x0e\\xda\\x09\\xf4\\xa4\\x41\\x86\\x87\\x06\\x64\\x8f\\x61\\x4c\\x1c\\x52\\x93\\x0b\\xd7\\x48\\xbd\\x00\\x3f\\x4c\\x4e\\x1a\\xd7\\xc7\\x55\\x68\\x1c\\x16\\x37\\xa1\\x54\\x78\\xdc\\x49\\x98\\xfe\\xc6\\x49\\x97\\x90\\x2e\\xd8\\x07\\x45\\x06\\xc3\\x49\\x05\\x29\\x71\\x74\\x18\\xad\\x26\\x03\\x40\\x25\\x99\\x86\\xee\\x25\\xf6\\x74\\xa2\\x88\\x8f\\x08\\x8f\\x2c\\xbc\\xc4\\x66\\xfa\\x0a\\x37\\x85\\xdd\\xb1\\x17\\xb6\\x24\\xe9\\x2f\\xd1\\xbf\\x6e\\xf3\\x73\\x3f\\xbf\\x98\\x9b\\x1b\\x3d\\x78\\x24\\x58\\x96\\x27\\x18\\xb3\\x08\\xa2\\x0f\\x2d\\x64\\x61\\x1d\\x76\\x6f\\x8d\\x00\\x8c\\x6c\\xfd\\x8e\\x93\\xca\\x07\\xd2\\xc6\\xf3\\x50\\x50\\x09\\x31\\xe9\\xad\\x15\\x01\\x1c\\x0b\\x7d\\x26\\x8f\\x9c\\xaa\\xe1\\x4d\\x45\\xc2\\x29\\xbe\\x24\\x44\\xab\\x20\\xd0\\x5e\\x76\\x4a\\x3d\\x96\\xb1\\x58\\xc0\\x21\\xa2\\x63\\xd9\\xdd\\xdb\\xf4\\x82\\x41\\x7c\\x8d\\x09\\x1a\\x07\\xc1\\xa3\\xc0\\x91\\x83\\xc8\\x22\\xbb\\xbd\\x30\\x4f\\x13\\xe2\\x14\\xb0\\x27\\x2b\\xcf\\xc0\\xe3\\xcc\\x63\\x3f\\xbc\\x88\\x94\\xe0\\xf3\\xd5\\x5d\\x19\\xf2\\xf2\\xaa\\x2d\\xd4\\x3d\\x19\\xa7\\xac\\xb4\\x8c\\x3b\\x11\\xe2\\x2a\\x78\\x13\\xe7\\x34\\x64\\xe8\\xf1\\x54\\x45\\x24\\xaf\\xb5\\x80\\xe3\\x6c\\xd2\\x83\\x99\\x4e\\xc6\\x62\\x81\\xa7\\xff\\x92\\xcb\\xd0\\xb3\\x53\\x2d\\xee\\xb8\\x32\\x58\\xb6\\x39\\x4c\\x56\\xc7\\xdc\\x5f\\x79\\xab\\x3d\\xb2\\x41\\xec\\x87\\x17\\x07\\x25\\x84\\x7c\\x59\\x26\\x43\\xde\\x29\\x12\\xf1\\xba\\x47\\x16\\xc7\\xa4\\x4e\\x72\\xfa\\xea\\x0b\\x0a\\x1e\\x6a\\x37\\xc9\\x2b\\xc0\\x74\\x61\\x60\\xcd\\xe1\\x1e\\x36\\xaa\\x84\\xa8\\x85\\x99\\xb4\\x7b\\xa5\\x68\\x9f\\x4e\\x8f\\xb1\\xd8\\x7d\\xf0\\x7e\\x8e\\xe8\\xec\\xeb\\xb7\\xf9\\x8a\\xec\\x47\\x0a\\x35\\xf0\\x4e\\x75\\xb2\\x61\\x7c\\x24\\x76\\x74\\x6c\\x52\\x9e\\x92\\x29\\x02\\x5c\\x05\\x17\\x4f\\x3e\\x7d\\x6f\\x9f\\x88\\x88\\x1b\\xa6\\x1f\\x49\\xd2\\x37\\x78\\x64\\xb2\\x1e\\xde\\x17\\x53\\x4f\\x67\\x50\\x09\\x29\\x44\\x47\\x7f\\xca\\xe4\\xe6\\x58\\xfd\\x4c\\xca\\x52\\x9b\\xef\\x8a\\x66\\xb2\\x63\\xcd\\xb0\\x82\\x8d\\x2a\\xb4\\x8f\\x92\\x5e\\x86\\xb9\\x3d\\xda\\xf6\\x56\\x72\\xf1\\xfb\\x39\\xe2\\x43\\xff\\xd9\\x10\\x8f\\xf6\\x5f\\x70\\xbf\\xa1\\xc0\\xff\\x11\\x73\\x78\\x18\\xa0\\xfa\\xee\\x7e\\x44\\xe1\\xff\\xbf\\x68\\xa7\\x23\\x79\\x32\\x38\\xa8\\x12\\x11\\x0e\\x07\\xdf\\x53\\x73\\x74\\x8f\\x10\\xbd\\x8f\\x23\\x98\\x05\\xc7\\x32\\x2c\\xac\\xeb\\x33\\x12\\xa7\\xc9\\x61\\xe7\\xc1\\xdc\\xb7\\x37\\xa5\\x1a\\x4e\\xae\\xcd\\xe6\\x00\\xab\\xbc\\x55\\x5e\\xdc\\x6f\\xec\\xff\\x2d\\x8a\\x2a\\x81\\xf1\\x1d\\x99\\xfc\\xf5\\x4a\\xa9\\xa8\\xa1\\x47\\x4e\\x0c\\x43\\xbd\\x4e\\x5a\\xd4\\x94\\x45\\x12\\xba\\x62\\x8e\\xce\\x10\\xa2\\x4b\\x8e\\x28\\x97\\x66\\x61\\xd8\\xfa\\xba\\xe6\\x33\\x12\\xa7\\xa5\\x36\\x78\\x14\\x5c\\x56\\x4a\\x6a\\x63\\xe7\\x28\\xce\\x8f\\x22\\x3e\\x20\\x44\\xed\\x54\\x08\\x37\\x31\\x15\\x9e\\xa7\\x57\\x85\\x8d\\xd3\\xdc\\x5f\\xc6\\x36\\x36\\x72\\xef\\xe3\\x08\\x4e\\x5f\\x6b\\x19\\x14\\x04\\xed\\x2e\\xe8\\x29\\xb4\\x8e\\x07\\x48\\x27\\x05\\x59\\x06\\x4b\\xb7\\xee\\x46\\xff\\x99\\xb8\\x9d\\x60\\x03\\xf8\\xb2\\xf2\\xa3\\xdc\\xca\\x9b\\xf0\\x24\\xad\\x15\\x4d\\x00\\x56\\xd9\\xa9\\x4d\\xe4\\x5c\\xb2\\xab\\xa1\\xa7\\xc8\\x9b\\x04\\x49\\xa5\\x7a\\x9f\\x8e\\x31\\xa6\\xe0\\x8f\\x1f\\xf2\\xac\\x35\\x3a\\x51\\xc4\\x62\\xfe\\xa1\\xc4\\x2e\\x13\\x32\\xf9\\x6f\\xa5\\x12\\xfb\\x6d\\xc9\\x92\\xfc\\x61\\x4a\\x31\\x67\\x0e\\x1d\\xa3\\x66\\x18\\x3c\\xe9\\xdb\\x88\\xff\\x3b\\x25\\xf7\\x40\\x7c\\x15\\x3b\\x9b\\x52\\x10\\x14\\x25\\x32\\xab\\x25\\x78\\x0e\\x63\\x5a\\xbb\\xd5\\x70\\xde\\x91\\x27\\xf1\\x16\\x18\\x4a\\x91\\x58\\x92\\x45\\x55\\x88\\xcb\\x56\\xfd\\x92\\xd8\\x2e\\x41\\x1e\\x05\\x2f\\x7a\\xd0\\xa3\\x6c\\x7c\\xee\\x79\\x0a\\x66\\xcd\\xad\\x44\\xe5\\x63\\x54\\x6a\\x07\\xea\\x16\\x3a\\xba\\x73\\x5d\\x99\\xb7\\xed\\x67\\xfb\\xf8\\xb9\\x0e\\xd7\\x1c\\x6d\\xf2\\x27\\x6d\\xbf\\x50\\xda\\x34\\xe9\\xde\\xe0\\x49\\x06\\xf1\\x85\\x5c\\xe0\\xf0\\x9e\\x9d\\xa0\\x54\\x20\\xd5\\x1a\\x0e\\x46\\x0f\\x27\\x10\\x92\\x6d\\x7e\\xee\\xb7\\x7e\\x98\\x81\\xe6\\xc6\\x92\\x4d\\x62\\x56\\x00\\x37\\xc1\\x8c\\x67\\xe5\\x8e\\x2c\\x5c\\x61\\xaf\\xc3\\x32\\xc8\\x1d\\xdd\\xfa\\x69\\x95\\x9f\\x5e\\x61\\xf7\\xd3\\xda\\x1e\\xf6\\xa4\\x14\\x38\\xe5\\x08\\x45\\x43\\xd1\\x0a\\xa4\\xe2\\x7a\\x1c\\xc0\\x8f\\x29\\xd2\\x4c\\x45\\x05\\x34\\x1a\\x87\\x14\\x9d\\x76\\x2a\\x60\\x14\\x59\\x8f\\xd1\\xad\\xdf\\x0e\\x70\\x2d\\x75\\x09\\x9e\\x55\\x41\\x0a\\xfd\\x67\\x81\\x33\\x1e\\x50\\x5d\\xa3\\x9b\\xf6\\xb1\\xff\\x9b\\x02\\x96\\x3f\\x57\\x6d\\x61\\xba\\xaa\\x82\\x2c\\xdc\\x11\\x66\\xb1\\x93\\x54\\x70\\x6b\\x2c\\xcf\\x44\\xdf\\x07\\x83\\xd8\\xd7\\x59\\x21\\x93\\xda\\xab\\x59\\x6c\\xd4\\x2a\\xb8\\x36\\x35\\x64\\xaf\\x15\\xa4\\xc1\\xec\\xe8\\x0a\\xb7\\x1f\\xa3\\x31\\x91\\xce\\xb5\\x8e\\x78\\x35\\xe4\\x3b\\xe5\\xa4\\x4f\\x31\\xb5\\xe1\\xc5\\x2d\\x2a\\xd1\\x7e\\xb3\\xd9\\xcf\\xc1\\x1e\\x99\\xcc\\x2e\\x6a\\xc6\\xf9\\x39\\x94\\x37\\x4f\\xa6\\x03\\x70\\x7f\\x52\\x7e\\xd9\\x96\\xff\\xd0\\xe8\\x54\\x30\\x33\\x50\\xb9\\x90\\x63\\x0f\\x70\\x84\\x47\\xf1\\xda\\xe1\\x21\\x75\\xc5\\xbd\\x17\\x11\\x49\\x4f\\xfe\\x6b\\xec\\x25\\x72\\x80\\x1c\\xee\\xe3\\x88\\x91\\xbe\\xad\\x2a\\xf0\\x7a\\x76\\xeb\\xd8\\x4f\\x84\\x3d\\x58\\x26\\xdc\\x6e\\x70\\x4a\\x3d\\xb5\\x00\\x4a\\xbb\\xb4\\x46\\x9b\\x6c\\x19\\xbc\\x54\\xdf\\x47\\x0b\\xfe\\xd1\\x46\\x51\\xd6\\x79\\xad\\x72\\xf8\\xe5\\x2a\\x68\\x04\\xde\\xd8\\xbb\\x49\\x05\\xff\\x7f\\x50\\x79\\x19\\x2e\\x29\\xda\\xc7\\x20\\xf3\\x88\\x92\\x5b\\x4e\\xea\\xaf\\xc1\\x10\\xec\\x17\\x48\\x1e\\x2c\\xf3\\xbb\\x13\\xcc\\xc8\\x8a\\x94\\xb2\\x94\\x62\\x3a\\x8c\\x2a\\xab\\xe3\\x64\\x43\\xbc\\xc7\\x6a\\xe1\\xc1\\xb1\\x0e\\x9b\\xa8\\xc6\\x22\\x68\\xcf\\x6b\\x42\\x9c\\xa1\\x45\\x93\\x3c\\x25\\xe1\\x8f\\x38\\x08\\xd0\\xf2\\xa4\\xb0\\x07\\x60\\x80\\xec\\x35\\x18\\xd0\\xf3\\x41\\xff\\x69\\x10\\xba\\x50\\x18\\x04\\x30\\x26\\x2e\\x15\\x1f\\x95\\x01\\x43\\x17\\xea\\x4b\\xe1\\x09\\x19\\x24\\x81\\x15\\x3d\\xc7\\xb3\\xf3\\x41\\x0c\\xd4\\x55\\xda\\xff\\xb4\\xee\\xb9\\x86\\x5f\\x8a\\x42\\xc7\\x0b\\xba\\x61\\x01\\xfa\\xa0\\x1f\\x06\\x61\\x18\\x46\\x60\\x14\\xc6\\x60\\x0a\\xe6\\x71\\xae\\xf4\\x15\\xae\\x31\\x57\\x18\\xbf\\xf8\\xa2\\xee\\xf4\\x93\\x21\\xc1\\x47\\xfe\\xe6\\x58\\x9b\\x0b\\x88\\x77\\x31\\x04\\xa5\\x4d\\x3f\\x19\\xe1\\x02\\xd8\\xd3\\x4f\\x7f\\xbe\\x05\\x6c\\xc2\\x11\\x58\\x85\\xd3\\xfd\\x67\\x15\\x31\\xfe\\x8d\\xcd\\x60\\xac\\x32\\x5e\\x09\\xf8\\x49\\xaf\\x60\\xac\\xf9\\xa4\\xf4\\x9f\\x68\\x7b\\xe7\\x91\\x8d\\x0b\\x9b\\xf7\\xd2\\x45\\x52\\x13\\x19\\xfa\\xaf\\xa0\\x67\\x06\\xcc\\xc0\\xb3\\xed\\x77\\xa3\\xa4\\x9c\\x88\\x8a\\x55\\x82\\x7a\\x67\\xde\\x27\\x11\\x00\\x00\\x40\\xff\\xbf\\x4d\\x36\\x36\\x3c\\xb7\\x77\\x76\\xa0\\x3b\\xe1\\x74\\x9a\\x88\\x6e\\xea\\xf8\\xbe\\xfe\\x37\\xd6\\xf6\\x77\\x1a\\xbc\\xfa\\x5d\\x2a\\x6c\\x7b\\xe1\\xae\\x52\\xf9\\x8c\\x47\\x63\\xb3\\xbd\\x35\\x70\\x74\\xfc\\xb9\\xcb\\xae\\x4a\\x34\\xd1\\x39\\xe7\\xf9\\x74\\x0a\\x27\\xce\\x61\\x5f\\xcf\\xd5\\x28\\x15\\xf6\\xbf\\xc1\\x2c\\xd3\\x01\\xde\\xcb\\x09\\xcb\\x6c\\x74\\x16\\xa7\\xad\\xe9\\xda\\xa5\\x96\\x3c\\x18\\x5e\\xbe\\xf8\\x04\\xfd\\xb9\\x17\\x18\\x73\\x9a\\xe9\\x31\\x26\\xfa\\x51\\x4c\\x8b\\x13\\xfc\\x31\\xd8\\x63\\xae\\x4e\\xae\\x14\\x91\\xe7\\xcb\\xf9\\x06\\x53\\xc8\\x95\\xf6\\x79\\x19\\x18\\x06\\x59\\x18\\xd0\\x3e\\x2b\\x1b\\x05\\x96\\xe1\\x57\\x17\\xf8\\xc2\\xe3\\x05\\x78\\x87\\x6f\\xa4\\x5a\\x15\\x4a\\xc9\\x81\\xe1\\xe6\\xeb\\x0f\\x1e\\x4c\\xe4\\xbb\\xf3\\x17\\x5c\\x99\\xe6\\xee\\x96\\xe0\\xd7\\xc4\\xdb\\xf6\\xf3\\x93\\x5b\\xf4\\x5e\\xf2\\xa9\\x9b\\x7d\\xb2\\x4f\\xf1\\x57\\x52\\x9a\\xc1\\xb3\\x3d\\x19\\x45\\xe1\\xbd\\xc0\\x67\\x7f\\x03\\x62\\xd0\\xae\\xe8\\xd9\\x47\\xb9\\x95\\x45\\x24\\x77\\x6f\\x91\\x62\\xb2\\x4e\\xd7\\x5d\\xfc\\x62\\x7d\\x35\\xd5\\x7b\\xa7\\x01\\xcb\\xd4\\x5f\\xa9\\x77\\x0d\\xa7\\xfc\\xe2\\x9f\\xc3\\xaf\\x59\\xa7\\xfd\\xe2\\xff\\xc2\\xbb\\x2a\\x7c\\xee\\x45\\x1e\\xf8\\xbe\\xf2\\x36\\x5e\\x26\\xa6\\xe2\\xb0\\xfd\\xd9\\x35\\x5e\\x0f\\xaf\\x70\\xf3\\xd1\\x73\\x29\\x4f\\x78\\xae\\x95\\xee\\xbf\\x7d\\x79\\xbb\\xda\\x15\\x2d\\x66\\xda\\xc7\\xe7\\x15\\x16\\x9e\\x3b\\x89\\xe6\\x65\\x0b\\xc4\\x39\\xfb\\x44\\xd9\\xdb\\x86\\xe0\\x8e\\x39\\xec\\x31\\xd6\\x6c\\xa2\\xb8\\x74\\x51\\x73\\x74\\x1a\\x1c\\xcd\\xb4\\xb7\\xf2\\x69\\x32\\x2d\\x17\\xb3\\x6f\\xf9\\x16\\x55\\x98\\x06\\xb3\\xfd\\x64\\xac\\x31\\xbe\\xd5\\xe8\\xb9\\x82\\xb7\\xf1\\xde\\x18\\x3d\\xc3\\xa5\\x20\\x06\\x87\\x53\\x3a\\x0d\\x78\\xde\\x33\\xdf\\x89\\x17\\xfd\\xf2\\xd6\\x64\\x0c\\x77\\xb2\\x15\\x22\\xfe\\xc4\\x7a\\x58\\xef\\x26\\x0f\\x75\\x71\\x15\\xe4\\x38\\x67\\x21\\x9a\\x90\\x9d\\xae\\xcb\\x2e\\xea\\x9e\\xb2\\x54\\x89\\x65\\x45\\x9a\\x27\\xf5\\x57\\xc1\\x1a\\xe4\\xab\\x68\\x2d\\x94\\x2f\\x07\\x11\\x6d\\x83\\xf8\\x35\\xb9\\x06\\x4f\\xaf\\x26\\x01\\xb4\\x7e\\x39\\x44\\x9e\\xf9\\x71\\xf6\\x2a\\x8b\\x81\\x28\\xec\\x7c\\x17\\x3d\\xed\\x00\\x88\\xb9\\xba\\xdc\\xc6\\x1f\\x7a\\x9c\\xb7\\x82\\xb1\\xe0\\x08\\xf0\\xcf\\xea\\x61\\xfe\\x49\\xeb\\xf8\\xe1\\x87\\xf9\\x4b\\x78\\x97\\x7c\\x59\\x5d\\xee\\x3e\\x8b\\xaa\\xf8\\xb2\\x1f\\xee\\xf9\\x45\\xbd\\xb4\\x0e\\x65\\x9e\\xbd\\xf4\\x0b\\x58\\xf5\\x92\\xfa\\x4b\\xbd\\xec\\x25\\x3f\\xe7\\xaa\\x17\\xd7\\xb9\\xf4\\x47\\x5e\\xfc\\x9d\\xf5\\x92\\xd9\\x9b\\xb9\\x2b\\x48\\x2c\\x18\\xdc\\x1c\\x5d\\x51\\xe8\\x8b\\xfc\\x68\\xfd\\xa5\\x63\\x3e\\x7f\\xf4\\x97\\x5b\\x1f\\xea\\xe5\\x80\\xcf\\xcf\\x5e\\xfe\\x3b\\x27\\xf5\\xae\\x3a\\x95\\x69\\xf6\\xae\\x6f\\x20\\x27\\xbf\\x60\\x75\\xb0\\x06\\x7f\\x61\\x6c\\x8b\\x71\\xbd\\x72\\x65\\x98\\x9e\\xe9\\x05\\xc9\\x1a\\x39\\xfb\\x05\\x81\\xae\\x68\\xc1\\xfa\\x3f\\x77\\xcc\\x89\\x87\\xa2\\x66\\x63\\xc2\\xda\\x1a\\xf8\\xe2\\x49\\xc5\\x5e\\x5f\\x7d\\x37\\xcd\\xe9\\x2b\\x7c\\x74\\xc9\\x97\\xd5\\xf5\\x51\\x43\\x96\\x86\\x87\\xbd\\xa4\\xf1\\x78\\xc6\\xd0\\x02\\x0e\\x1a\\x6f\\xa8\\x09\\x2d\\xac\\x43\\xc3\\xe5\\x3e\\x22\\x4b\\xe4\\xbf\\x82\\x83\\xb9\\xa1\\xbc\\x92\\x78\\x4b\\xb5\\x2c\\x44\\x83\\x54\\xc4\\x14\\x8b\\x28\\x02\\xbc\\x54\\xff\\x18\\x1f\\x78\\xec\\x32\\xc9\\x96\\xc1\\xbc\\x54\\xe7\\xd6\\xfa\\xfd\\xba\\xad\\xf1\\xdb\\xba\\x1a\\x57\\x0f\\x73\\xb6\\xde\\x1a\\xd6\\x79\\x4e\\xaa\\xe3\\xec\\xcd\\x66\\xee\\x84\\xf8\\x8b\\x3d\\x51\\x8d\\xfb\\x3a\\x8e\\xec\\xa5\\x5f\\xc7\\x6a\\xb8\\x3c\\x6f\\x3d\\x65\\x2f\\xf9\\x1d\\x57\\xbd\\xb8\\x4e\\x64\\x3f\\xf2\\xe2\\x1f\\xaf\\x3b\\x32\\xb7\\xa4\\x57\\x90\\xe8\\x22\\x1f\\x0d\\xb4\\x57\\x2a\\xc4\\x27\\x52\\xdb\\x07\\x6b\\x13\\x9c\\x86\\x9e\\x10\\xa2\\x87\\xb6\\xa6\\xfb\\xe5\\x59\\xc6\\x57\\xd8\\x3f\\xd5\\xc3\\xbc\\xc9\\x23\\x1a\\xbe\\x56\\xe8\\x29\\x29\\xea\\xcd\\x9c\\x2f\\x36\\xa2\\x6f\\x70\\xce\\x41\\xf0\\xc2\\x23\\x3d\\xce\\x5f\\x0b\\x23\\x5d\\x36\\xfb\\xb2\\xfe\\xbb\\x0c\\xb7\\x00\\x5e\\x49\\xf2\\xf1\\xf4\\x30\\xef\\x1d\\x52\\x74\\x2c\\xe0\\x87\\x9b\\xa1\\x90\\x28\\xbd\\xc1\\x10\\x49\\xf1\\x39\\x26\\x6a\\x41\\xb9\\xb0\\xc0\\xeb\\x33\\x3b\\x24\\x22\\x58\\xc7\\xb5\\xfe\\x77\\xc5\\x2c\\xc2\\x09\\x64\\xfa\\x7e\\xa9\\x86\\x4d\\x62\\x0d\\xb5\\x00\\x5e\\x96\\x47\\x06\\x71\\xac\\xbd\\x0e\\xe7\\x64\\x76\\x7a\\x7c\\x5d\\xad\\x20\\x23\\xd6\\x55\\x92\\x64\\xf8\\xee\\x49\\x03\\x8a\\xc7\\x45\\x95\\x88\\xff\\xa6\\xf1\\xe7\\x67\\x6d\\x55\\x6c\\x99\\x08\\x66\\xcb\\xce\\x68\\xc9\\xd4\\x33\\x51\\x97\\x43\\x18\\x6e\\x5d\\x69\\xc1\\x50\\xb4\\x7e\\xae\\x80\\xf5\\x4e\\xc9\\x05\\xb3\\xfb\\x3b\\x0f\\x4b\\xeb\\x89\\x92\\x4b\\x50\\x26\\x48\\xf5\\x10\\x18\\xc0\\xe9\\x8b\\xe6\\x80\\xfa\\xe3\\x80\\xd0\\x2a\\x6e\\xc1\\xe2\\x71\\x94\\xaf\\x87\\x25\\xca\\xd6\\xd7\\x24\\x9a\\xc0\\x13\\x36\\x13\\xdd\\x62\\x7d\\x68\\xc9\\xa9\\x41\\xa5\\xb2\\x43\\xda\\x16\\x60\\xa4\\x08\\x48\\xa3\\x17\\x52\\x52\\xa4\\xf0\\xec\\x5d\\x26\\xed\\xf8\\xb2\\x30\\xb8\\x50\\x14\\x57\\xd4\\xd1\\x79\\x69\\xd1\\x6e\\xb6\\x7f\\x87\\xcb\\xfd\\x5d\\x66\\x2a\\x8a\\x0b\\x99\\x5c\\xf0\\x71\\xa9\\x0a\\x4f\\x96\\xf3\\x70\\xab\\xec\\x81\\x61\\xff\\x5c\\x4e\\xc2\\xf3\\xb5\\x3e\\xc9\\xdd\\x63\\x7c\\x7c\\xe0\\x75\\xe9\\xff\\x61\\xf5\\xfc\\x35\\xb0\\xfe\\x73\\x58\\x88\\x21\\x00\\x66\\xbe\\xbd\\x32\\x61\\x98\\x7f\\xc0\\x37\\xa6\\xfc\\x3f\\x0e\\x07\\x0a\\x33\\x87\\xff\\xff\\x39\\xbf\\x6a\\xff\\xd8\\x19\\xff\\x9a\\x6f\\xbe\\x4f\\xd7\\xfe\\x5c\\xc0\\x23\\xf3\\x7a\\xd7\\x1f\\xf3\\xed\\xc4\\xbc\\xbf\\x07\\xd2\\xaf\\x05\\xfc\\x45\\x7d\\x7f\\x98\\xe4\\x0e\\x5b\\xfa\\xf0\\xc3\\x29\\x77\\xd0\\xc0\\xf9\\x71\\x9a\\x44\\x65\\x92\\xc8\\x5c\\xec\\x28\\x42\\x1f\\xc8\\xa3\\xa6\\x9a\\x7d\\x40\\x7e\\x73\\x53\\x89\\x24\\x90\\xdf\\xd3\\xbc\\xf8\\x7f\\x80\\x2f\\x6a\\xec\\xf9\\x7f\\xa8\\x2e\\xab\\x14\\x9b\\x52\\x09\\xec\\x6d\\x6d\\x6b\\x58\\x78\\x15\\x26\\xab\\x33\\x96\\x49\\x56\\x9c\\x7b\\x93\\xda\\xfe\\xe7\\x98\\x85\\x89\\x21\\xc0\\x4f\\xa4\\x85\\x58\\x2a\\xa2\\x99\\xa5\\x7f\\x53\\x6d\\x91\\x4e\\xfa\\x58\\x48\\xa5\\xfc\\xa5\\x5b\\xea\\xdb\\xad\\x96\\xae\\x17\\xfa\\xdd\\xd4\\x4f\\xa9\\x8e\\xe4\\xb4\\x96\\x3f\\x37\\xa5\\xc8\\xdc\\xee\\x6c\\x5e\\xb1\\xff\\xf6\\xf3\\xa6\\x06\\x73\\xfe\\x20\\xe1\\x49\\x85\\x1d\\xb9\\xa3\\xbe\\xa7\\x8a\\x48\\x56\\xdb\\xed\\xbc\\x05\\x69\\xf3\\xc9\\xc2\\x12\\x90\\xf7\\xd3\\xaf\\x6a\\xc5\\x57\\x15\\x4d\\x21\\xdf\\xf6\\xfb\\x4f\\x88\\xef\\x3d\\xeb\\x07\\x5a\\x40\\x77\\x00\\xb0\\x4a\\x72\\x27\\x09\\xb2\\x21\\x6f\\x92\\x47\\xda\\x39\\x86\\x91\\xc8\\x21\\x5c\\x76\\xa3\\x2c\\x00\\xc7\\xda\\xff\\x41\\x7b\\xc8\\x3c\\x91\\x52\\x0d\\x13\\x4a\\x1b\\x90\\x04\\xd9\\x24\\xf2\\xa2\\xac\\x67\\x5a\\xde\\x22\\xcf\\x0c\\xd7\\x4b\\xf7\\x83\\xb4\\xc8\\x87\\x6e\\x25\\x46\\x0a\\x62\\x9b\\x1a\\x06\\x44\\x20\\x93\\xf2\\x01\\x29\\x03\\x64\\x83\\x43\\x79\\x6e\\xe2\\x9f\\x84\\xfd\\x71\\xf8\\xfc\\xbe\\x18\\x8d\\x93\\xcd\\xd8\\x5f\\x05\\x6a\\x2a\\x48\\xd8\\xeb\\x21\\x72\\x77\\x0f\\x06\\x1c\\xc8\\xc2\\x8f\\xef\\x27\\x34\\x03\\x1c\\x77\\x13\\xa8\\x81\\xe6\\x12\\x54\\x0a\\x1b\\xd7\\x28\\xae\\xcd\\x34\\x9e\\x12\\x0c\\x61\\xbf\\x84\\x81\\x3d\\x4b\\xc6\\x65\\xe7\\xba\\x6e\\x03\\xb1\\x69\\xb9\\xdc\\xc9\\x20\\x0b\\x45\\x31\\x83\\xb4\\xb3\\x05\\x59\\xd6\\x34\\xf8\\xea\\xd6\\x78\\x2b\\x74\\xe3\\xc9\\x9c\\xe2\\x72\\xc9\\x2b\\x70\\x67\\x52\\x4d\\xc3\\xd1\\x35\\x0e\\x1f\\x1a\\x2d\\xed\\xa5\\xb3\\xbd\\xc2\\x01\\x6e\\x97\\xb9\\xfc\\x66\\x26\\x42\\x78\\xd1\\x56\\x66\\x59\\xd4\\x9e\\xd6\\x84\\xa8\\x4c\\xe3\\xf0\\x7a\\xd5\\xd0\\xbb\\xec\\x01\\x6b\\x19\\x78\\xf2\\xd9\\xd2\\xb7\\xfd\\xf3\\xa2\\x6d\\x38\\x39\\x13\\x1e\\x8d\\xa4\\x94\\x51\\xcf\\xb0\\x22\\x37\\x54\\x92\\xaf\\x20\\x00\\x33\\xb8\\x14\\xaf\\xf8\\x68\\xef\\xa4\\xde\\x56\\x0f\\x05\\xc3\\xa3\\xac\\x45\\x4e\\x89\\xcb\\x8a\\x66\\xca\\x5a\\x3a\\x37\\x33\\x16\\xae\\xc1\\x6c\\x0b\\xff\\x46\\xda\\x3f\\x31\\xc2\\xc3\\x3e\\x59\\x4a\\x8d\\x40\\x54\\x00\\xae\\x02\\x38\\x17\\x26\\x67\\x9b\\x3a\\xa3\\x92\\x58\\x38\\x9b\\xa5\\xe6\\x94\\xa8\\xf3\\xac\\xdd\\x15\\xf9\\xaf\\xf0\\x70\\x89\\xcb\\x00\\x91\\xc6\\xcb\\xa9\\x44\\xeb\\x2b\\xee\\x47\\x89\\x86\\x29\\x71\\x4a\\x89\\xdc\\x18\\x7b\\xa0\\xcd\\xf3\\xf0\\x6d\\x3e\\x75\\xf7\\x04\\x6f\\x7b\\x41\\x2f\\xf8\\x6a\\x8e\\x5e\\xba\\x95\\x4d\\x8d\\xc8\\x3a\\xb1\\x3d\\x25\\xfc\\x90\\x04\\xf0\\xb4\\x76\\x4c\\xea\\x02\\xac\\x6b\\x70\\x52\\xe9\\xee\\xa7\\xea\\x93\\x00\\x58\\x9b\\xb3\\x4b\\x46\\x9a\\x6c\\x5a\\x06\\xce\\xcc\\x2c\\xfe\\xa5\\x25\\x46\\x60\\xcb\\x54\\xc3\\xd1\\x47\\x9d\\x85\\x29\\x42\\x37\\xc8\\x7d\\xcc\\x12\\x7b\\xa2\\x34\\x4c\\xfb\\x53\\x2a\\x6b\\x68\\x82\\xd4\\x32\\x25\\x22\\x46\\x36\\xa6\\x1a\\x5a\\x76\\xcf\\x44\\x10\\xf4\\x18\\x42\\x21\\xd0\\x57\\x26\\x64\\xc8\\xcb\\xf2\\xae\\x47\\x53\\x37\\x4f\\x0f\\x85\\x37\\x44\\x99\\x8b\\x9c\\x19\\x97\\x31\\x2d\\x62\\x70\\x7b\\xb4\\x1b\\xe9\\x65\\x7a\\x9e\\x10\\xaf\\x48\\x0d\\xa0\\xb8\\x6c\\x24\\x05\\x90\\xe3\\xe5\\xde\\xf7\\x36\\x3d\\x62\\x69\\x7f\\x79\\x9d\\x06\\xf0\\x2e\\x82\\x68\\x00\\x47\\xcd\\xfe\\x20\\x25\\xea\\x27\\x93\\xe5\\x96\\x25\\x0d\\x90\\x5b\\x12\\x52\\x22\\x28\\x7e\\xa7\\x3b\\x4c\\x82\\x5b\\x21\\xee\\x6e\\xe0\\x9e\\x69\\x12\\xe0\\x0b\\x7d\\x7f\\x2e\\x77\\x40\\xf3\\x6c\\x29\\x80\\x02\\x2f\\x02\\xe7\\xe2\\x88\\x79\\xe5\\x18\\xad\\x23\\x79\\xdb\\x12\\x02\\x9f\\x40\\xac\\x48\\x53\\x15\\x80\\x12\\x19\\xc2\\x39\\x99\\x6b\\xc2\\xf7\\xeb\\x6a\\x07\\xd8\\xc6\\xf3\\x83\\xb0\\x2f\\xc3\\xf3\\xa2\\x3c\\xa6\\x1c\\x60\\x67\\x8d\\xd9\\xb7\\x66\\x01\\x0f\\x73\\x09\\x57\\xe2\\x48\\x78\\x4d\\x4a\\x36\\x54\\xd0\\xab\\x0f\\xfc\\x13\\x47\\x66\\x2e\\x0f\\x98\\x00\\x24\\x69\\x88\\xdd\\x38\\x46\\x90\\xcf\\x19\\x5b\\x95\\xd4\\x41\\xc2\\xa0\\x97\\x9f\\x7f\\x4a\\x04\\xf0\\x95\\x9c\\x36\\x92\\xcc\\x31\\xe8\\xc5\\x6a\\xe2\\xcb\\xc4\\x8e\\xa9\\x26\\xd0\\x7e\\xc1\\x1f\\x86\\xaf\\x90\\xa6\\x27\\x00\\x02\\x29\\x46\\x23\\xed\\xf5\\x55\\x9c\\x78\\xc6\\x16\\x95\\x80\\xd5\\xde\\x66\\xb7\\xb2\\xa2\\xc1\\x80\\xde\\xeb\\x55\\x6f\\x0f\\x7b\\x16\\x03\\x6f\\x0a\\x9e\\x65\\x44\\xef\\x29\\xdd\\xa2\\x3e\\xcf\\x09\\x23\\xd9\\x20\\x6b\\xe8\\x10\\xbb\\xad\\xb6\\xbf\\x1a\\x1d\\xa2\\xe8\\x00\\xf6\\xd6\\x30\\xbd\\x14\\xd8\\x6b\\x2e\\x03\\x84\\x4c\\xda\\x7a\\x65\\x0f\\x23\\x21\\x5b\\x08\\xb6\\x36\\x4c\\xb8\\x47\\xf7\\x84\\xf6\\x86\\x0c\\xc6\\xd2\\x94\\xb4\\x67\\xee\\xe4\\x5e\\x0a\\xb5\\xf3\\xd5\\xf4\\xc8\\x4a\\x1e\\x20\\x2f\\x55\\x5b\\x6f\\xe9\\xb9\\xd7\\x55\\xd4\\xeb\\xe9\\x1c\\xe2\\x60\\xbd\\xd8\\x2c\\x58\\xed\\x71\\xd7\\x09\\xa8\\x4e\\x50\\x37\\xb4\\x68\\xbb\\xc7\\xfd\\x59\\x80\\x5f\\x28\\xdd\\xd8\\x33\\x04\\xf3\\xc2\\x1f\\xcc\\x1b\\x6e\\xf5\\x0a\\xa0\\xf5\\xab\\x2a\\x4c\\xfe\\x97\\xf4\\xdc\\xcb\\x66\\x29\\x96\\x03\\x48\\x8f\\x6e\\x09\\xdd\\x13\\x12\\x7a\\xf4\\x4a\\xe8\\x11\\x2a\\x01\\x0c\\x35\\x32\\x0b\\x2a\\x80\\x3b\\xf4\\x48\\x93\\xd0\\x23\\x6b\\x0d\\x37\\xc8\\x07\\x08\\x31\\xab\\xf7\\x25\\xe9\\x1e\\x94\\x00\\xbd\\x9e\\xd2\\x12\\x23\\x25\\xdf\\x9b\\xd3\\xef\\xcc\\x34\\xf4\\xd0\\x66\\x57\\xf5\\x51\\x22\\x15\\x53\\x29\\x46\\xdc\\x48\\x1b\\xbb\\xaf\\x08\\x5a\\xcb\\x2e\\x39\\x2a\\x04\\x88\\x87\\x34\\x12\\x2b\\xd8\\xab\\xb2\\x20\\x06\\xa1\\x70\\x05\\xb8\\xbb\\x83\\x2f\\xd0\\x74\\x4e\\xe4\\xce\\x21\\x77\\xa5\\x0e\\x85\\x16\\x36\\x49\\x80\\x8c\\x66\\x86\\x94\\x3c\\x5a\\x51\\x20\\xf3\\xb1\\x4e\\xed\\xd1\\x66\\xa5\\xc9\\x59\\xd1\\x8f\\x16\\x41\\x4a\\x4f\\x9d\\xe6\\xff\\x7c\\xed\\x90\\xe8\\x4c\\xd3\\x70\\x99\\x5a\\xa6\\x4b\\xfc\\x6a\\x9d\\xa3\\x96\\xec\\xd5\\xb1\\xc8\\x5a\\x68\\xe1\\x69\\x7f\\x45\\x3c\\x6b\\x95\\x9e\\xc1\\x23\\x6e\\xb4\\x0c\\x4c\\x1e\\x7e\\xa3\\x67\\xbb\\x5d\\x4d\\xe4\\xae\\x72\\x1f\\x6b\\x99\\x6b\\x05\\xa4\\xb2\\x3d\\xe9\\xd1\\xf7\\x2b\\xd9\\x95\\x05\\x98\\x93\\xaa\\xfe\\x34\\xc2\\x37\\xc1\\x5e\\x1c\\x00\\x27\\x7f\\x46\\xd1\\x9b\\xed\\xe2\\x1c\\x87\\x18\\xa8\\x34\\x23\\xd4\\x2f\\x8e\\x58\\x92\\xf4\\x6d\\x44\\x12\\xc4\\x26\\x79\\xdf\\xd9\\x52\\x2f\\x99\\xbb\\x5d\\x5b\\xdd\\xc7\\xc6\\x9c\\x14\\x40\\xf4\\xc0\\x63\\xef\\xee\\xd3\\x39\\xb3\\x5c\\xcf\\xcd\\x9a\\xc1\\x42\\xf9\\x9b\\x3e\\x1e\\x0b\\xf3\\x7a\\x44\\x2d\\x92\\x25\\xc1\\x75\\xfa\\x1d\\xf7\\xd3\\x6a\\xb3\\xb5\\xe3\\xa1\\x8d\\x68\\x6e\\x75\\x2b\\x1e\\x5f\\x8f\\xeb\\xca\\x69\\x42\\xaf\\xf0\\xaa\\x66\\xac\\x38\\x7d\\x07\\x17\\x80\\x42\\xb3\\xe4\\x50\\x0e\\x15\\x90\\x24\\x0c\\xb0\\x58\\x9e\\x96\\x9e\\xf6\\x52\\xd4\\xe4\\x52\\x1a\\x14\\x37\\x78\\x18\\x11\\x57\\xec\\x44\\x8e\\x64\\x39\\x07\\xee\\x4c\\x22\\xeb\\xd5\\xf9\\xda\\x05\\x28\\x80\\xe4\\x09\\xe0\\x7b\\xf7\\xaa\\x4c\\x25\\x36\\x0a\\x7b\\xb9\\xb1\\x3f\\xae\\x5e\\x76\\x65\\xb6\\x2b\\xa6\\x9e\\x25\\x91\\x59\\x4b\\xe3\\xb0\\x3a\\x75\\x74\\x99\\x29\\xce\\x66\\x4d\\x79\\x7c\\xe9\\x4c\\xef\\x99\\x27\\x6a\\x91\\x14\\x77\\xa5\\xbc\\x9b\\x81\\x52\\x9a\\x39\\x93\\xae\\x1e\\xd3\\x9e\\x65\\x44\\xb3\\xcf\\xb3\\xc2\\x13\\x78\\x6f\\xd7\\xca\\x6c\\x57\\x4c\\xe7\\x56\\x72\\xac\\x81\\x27\\xd4\\x8a\\xa0\\x79\\x54\\x92\\xcf\\xfd\\x5b\\x96\\xb3\\x76\\x4c\\x53\\x77\\x77\\xb6\\x4a\\xd5\\x1e\\xcf\\x1e\\x8b\\x2d\\x4c\\x33\\x79\\x7c\\x49\\x51\\x27\\x59\\xb8\\x15\\x6f\\xb1\\xc5\\xd9\\x68\\x10\\xe0\\xb2\\xbb\\x5c\\xbc\\x7d\\xbe\\xe4\\x75\\x8f\\x4f\\xa4\\x76\\xeb\\x29\\xd9\\xd0\\x2c\\xf9\\x62\\xfc\\xdb\\x26\\xad\\x96\\x25\\x94\\x03\\xb0\\x2f\\x06\\x8a\\x42\\xa9\\x6e\\xc9\\x5c\\xab\\xfd\\x2d\\x0f\\xa6\\x3a\\xad\\x44\\xf6\\x40\\x42\\xf9\\x55\\x6f\\xe1\\x9d\\x7d\\xc7\\x4d\\x71\\x0f\\x9c\\x35\\xfa\\xa6\\x25\\x48\\x96\\x96\\xb9\\xbf\\x98\\xc8\\xcd\\xeb\\x90\\xb3\\x86\\x66\\x6e\\xba\\x54\\x3a\\x2a\\x9b\\x38\\x7c\\xc4\\xf1\\xf4\\x54\\x3c\\x9a\\xd5\\x0e\\xa2\\xc3\\x7e\\x93\\x93\\xb4\\x1f\\x2e\\x45\\x56\\xef\\xf0\\x90\\xd5\\x74\\xef\\x4f\\x3c\\x6c\\x6f\\x8f\\x9a\\x56\\x53\\xbd\\xa7\\x72\\xf2\\x08\\xf6\\x5f\\xb5\\x48\\x4d\\xbc\\xe3\\xa6\\xa4\\x87\\xcf\\xdc\\x77\\x2d\\x4d\\x41\\xca\\x55\\x6a\\x8b\\xdb\\x94\\xbe\\xc9\\x8d\\x87\\x4a\\xba\\x5c\\x4b\\xad\\xda\\x0a\\x12\\x66\\x74\\x79\\xf6\\x6a\\x2c\\xae\\xc8\\x33\\xe5\\x51\\xe6\\xec\\xaa\\xd7\\x27\\xc8\\x8d\\x8d\\x9e\\x89\\x6b\\x6d\\x1f\\x19\\xc6\\x23\\xf6\\x6a\\xd2\\x0a\\xe5\\x57\\x8d\\xe7\\xc3\\xf0\\x86\\xb5\\xae\\xeb\\xac\\xb1\\xd8\\x87\\x20\\xf9\\x2a\\xd5\\x43\\x84\\x4b\\xa0\\x42\\x7e\\x7d\\x58\\xe5\\xa6\\x4b\\xa5\\xa3\\xf2\\x91\\x81\\xbd\\x70\\xbb\\xf3\\x92\\xd4\\xa5\\xbc\\xc8\\xfd\\x9c\\xa4\\xe9\\x27\\xb6\\xc5\\x09\\x25\\x5f\\xb1\\x4f\\x6a\\x1a\\xed\\x3c\\x67\\xc8\\x92\\xcb\\x17\\x91\\xa5\\xa0\\x76\\x63\\x63\\x96\\xb2\\x63\\xb9\\x2e\\xa4\\x15\\x91\\xea\\x5a\\x37\\x5b\\xf2\\xcc\\x39\\x25\\x31\\xe2\\x5e\\xda\\xc5\\x6c\\x4e\\x92\\xd4\\x86\\xec\\xae\\x54\\xef\\x0d\\xc1\\x1b\\x36\\x16\\x7a\\x34\\x6c\\xef\\x34\\xe2\\xa4\\xdc\\xd3\\xa3\\x60\\xc2\\xa0\\xe4\\x91\\x6a\\x46\\x1b\\xb2\\x65\\xae\\xe1\\xe4\\x7d\\x52\\x5e\\xf0\\xeb\\x0d\\x46\\x1e\\x00\\x57\\x3a\\xc0\\x1f\\xb3\\x14\\xd3\\x1e\\x63\\x25\\x3e\\x6d\\x0f\\x5f\\x21\\x68\\x75\\x7a\\x41\\xc3\\xa5\\xf6\\x42\\x13\\x24\\x80\\x1e\\xad\\x42\\x34\\x30\\x61\\x46\\xe5\\xf8\\x39\\x90\\x05\\x58\\x42\\xa6\\x9a\\x35\\x2a\\xc6\\xaa\\x24\\xf8\\xea\\x96\\x10\\x62\\xa1\\x09\\x7b\\xf6\\xfa\\xff\\x9c\\x48\\xd7\\x13\\x8f\\x42\\x14\\xf6\\x57\\xa7\\x65\\x02\\x70\\xa9\\x7a\\x0b\\xf0\\xea\\x48\\x28\\xea\\xcd\\xcf\\xc3\\x2d\\x35\\x51\\x6f\\xac\\xa4\\x6c\\xd6\\x88\\x23\\xe0\\x33\\x51\\x15\\xa2\\x3f\\xc4\\x73\\xe7\\xe9\\x14\\xe2\\x00\\xdb\\xef\\x4d\\x02\\x98\\xd1\\x55\\xe6\\x3f\\x5e\\xc0\\x1c\\xcf\\x28\\x72\\xa7\\x51\\x59\\x8f\\xfd\\xd7\\xbf\\x2f\\x67\\xca\\x9c\\x9b\\xdf\\xdd\\x68\\x56\\xf0\\x44\\x66\\x56\\xe2\\x63\\x0a\\x90\\xaf\\x6f\\xde\\x3b\\x34\\x0a\\x10\\x1f\\x87\\x4f\\x10\\x41\\xa8\\xf5\\x6a\\x3c\\x3c\\x3a\\xe8\\x9f\\x89\\xaa\\xb9\\x21\\x5b\\x91\\x40\\x43\\xe7\\x49\\x69\\xaf\\xac\\x55\\xee\\xd1\\xc4\\x4d\\x11\\x07\\x35\\xe3\\xad\\xef\\x43\\x48\\x12\\x23\\xfc\\xfc\\x31\\x2c\\xfc\\x79\\x09\\x8a\\x72\\xc5\\x20\\xfd\\x69\\x1c\\x85\\x81\\xef\\xb9\\x0e\\xa3\\x04\\x57\\x44\\xde\\x2a\\x6d\\x7b\\x7c\\x35\\xe4\\x2b\\xd4\\x1a\\xfd\\xe1\\x7b\\xf5\\x44\\xb5\\x50\\x4d\\xc9\\x45\\x1f\\x70\\xc8\\xe3\\x0f\\x80\\x22\\xd4\\x13\\xb3\\x38\\x26\\x61\\x0d\\x0a\\xfb\\xb8\\x3c\\xdf\\x9e\\x76\\xdb\\x38\\x74\\x1d\\x68\\xeb\\xfd\\xca\\x90\\x37\\x3f\\xfc\\x50\\x55\\x6b\\x24\\xb3\\x6a\\x08\\xba\\xd8\\x63\\xe4\\xe4\\xb9\\x47\\x86\\x16\\xf0\\xaa\\x02\\x9d\\xa2\\x25\\x71\\x68\\x67\\x01\\x9f\\x00\\x1f\\xf7\\xcd\\x21\\xf1\\x83\\x3b\\x34\\xc6\\x4b\\x9f\\x52\\x4f\\x73\\xde\\x44\\xdd\\x6a\\x39\\xec\\xc9\\x89\\x28\\xf8\\x02\\x45\\xb5\\x1a\\x69\\xbf\\x74\\xdc\\xcf\\xa2\\x8a\\xa0\\x49\\x9a\\x23\\xda\\x90\\x16\\x5a\\x8b\\xec\\x48\\x37\\x7e\\x0b\\xeb\\xc3\\xf8\\xec\\x7d\\x77\\xd3\\x9f\\x0a\\x12\\xf7\\x23\\x31\\x63\\xd5\\x18\\x13\\x49\\x15\\x52\\xd3\\x26\\x95\\x48\\x19\\xe9\\x86\\x5f\\x42\\xa8\\xf6\\xc9\\x78\\x22\\x23\\x76\\xbe\\x3f\\xd7\\xd2\\x69\\x6e\\xad\\x8c\\x47\\x65\\x91\\x93\\x89\\x2b\\x98\\x03\\xfe\\xd6\\x93\\x7e\\x75\\xc8\\x82\\x80\\xe2\\x6b\\x03\\x8c\\x14\\xd8\\x91\\xe0\\x24\\x11\\xfa\\x58\\xd6\\xa3\\x7a\\x5f\\xcf\\xcc\\x32\\x54\\xa2\\x6f\\xab\\x29\\xa5\\x68\\xa4\\xed\\xc9\\xd5\\xa4\\x8d\\x20\\x2d\\xc5\\x43\\x99\\x9b\\xfc\\xf6\\x7a\\xc1\\x19\\xb7\\x47\\x11\\x2a\\x8d\\x9b\\x6b\\x87\\x69\\x26\\x0a\\x8b\\xb7\\xd3\\x14\\x55\\x09\\x04\\x54\\xe6\\xd2\\xeb\\x66\\xd5\\x7a\\xc6\\xbd\\x2b\\x0a\\x9f\\x44\\xdd\\x70\\xb3\\x2b\\x94\\xd0\\xba\\xc9\\x37\\x25\\xe0\\x81\\xd9\\x66\\xeb\\xfd\\xe8\\x14\\x70\\xd6\\x90\\x4e\\xf9\\x40\\x51\\x9a\\xa8\\x78\\xc6\\x8e\\x06\\xa9\\x62\\x2b\\x47\\x9d\\x3d\\xec\\x6b\\x46\\x94\\x8e\\xa5\\x01\\x11\\x6d\\xc2\\xf0\\x17\\x4d\\x4e\\x39\\xd2\\x00\\x70\\x81\\xdc\\x97\\x7c\\x5f\\x3b\\x79\\x8b\\xfd\\xd0\\xcc\\xfb\\xdb\\xfd\\x76\\xb9\\x68\\x2a\\x4e\\xca\\x74\\xcc\\xc2\\x25\\xeb\\x06\\xf0\\x82\\x84\\x6a\\x2b\\xc3\\xd2\\xe7\\xd8\\xf7\\x0a\\x68\\x1a\\xbb\\x09\\x15\\xe2\\x27\\x73\\xb2\\x24\\x3d\\xc0\\x93\\x6a\\x9c\\x22\\x79\\x0c\\x10\\xc9\\x95\\x7a\\x41\\x8a\\x94\\x30\\x13\\x14\\x3f\\xaa\\x43\\x3d\\x37\\x0b\\x52\\x17\\x10\\x8e\\xfa\\xc6\\x90\\x77\\x0e\\xe7\\x7d\\xc2\\x55\\x53\\xe7\\xde\\x41\\xef\\x01\\xba\\x8d\\x30\\x4b\\x38\\x7d\\x09\\xa8\\x43\\x35\\x57\\x39\\x90\\xe3\\x43\\x7e\\x25\\xae\\xc0\\x03\\xf7\\x9b\\x3a\\x1b\\xf7\\xe9\\x90\\x21\\x50\\xac\\x4d\\x0d\\x21\\x83\\x20\\x10\\x5f\\xd2\\x20\\xab\\x60\\x3b\\x1c\\xa8\\x62\\xfc\\x0a\\x04\\xb2\\x50\\x8f\\x5d\\x21\\xeb\\xbe\\x79\\x73\\x7b\\xbb\\x5d\\xb7\\x75\\x1a\\xf7\\xba\\xa4\\x3f\\x24\\xd9\\x88\\x47\\x90\\xae\\xda\\xe1\\x20\\x9c\\x3d\\x13\\x25\\x4f\\x2b\\x1d\\xa0\\x11\\xfa\\xbe\\xf1\\x33\\xa0\\x74\\xcb\\x52\\x8a\\x27\\x0b\\x6e\\xca\\x43\\x77\\xc1\\xc3\\x3e\\x2a\\xfc\\x13\\xfb\\xe5\\x7f\\x76\\xbf\\x03\\x20\\xf6\\x34\\x72\\x7b\\xbd\\x40\\x02\\x80\\x26\\x3a\\x5e\\x45\\xb2\\xaf\\x91\\xb1\\xcc\\xcc\\x26\\x25\\x5b\\xf5\\xb1\\x27\\x8d\\x28\\xfc\\xa1\\xa7\\x81\\x36\\x44\\x98\\xc3\\xdc\\xf9\\x09\\xed\\x69\\x60\\xf7\\xdb\\x4a\\x70\\x7a\\xdc\\xb7\\xe0\\x05\\x95\\x21\\x47\\xe2\\xa7\\x7c\\xd0\\xcd\\x19\\x29\\x8b\\x3e\\x7b\\xa7\\x5a\\x59\\x6c\\x9f\\xeb\\x15\\x02\\xaf\\x4a\\x46\\xd4\\xd9\\xd3\\x9d\\x75\\x39\\x38\\xf8\\x3a\\x8d\\xc7\\x48\\x84\\x41\\x48\\x5c\\x1e\\x9d\\xbc\\x67\\x5e\\x25\\x55\\x6e\\x3e\\x9a\\x48\\x65\\x9d\\xf6\\x73\\x66\\x54\\x82\\x9e\\xba\\xa2\\x34\\x95\\x7d\\x21\\x67\\x5e\\xa3\\xec\\x91\\xf8\\xe2\\xe9\\x67\\x19\\x8a\\x63\\xa0\\x32\\xfc\\x40\\xce\\xff\\xff\\xbc\\xdc\\x54\\x1f\\xa9\\x9a\\x73\\x33\\x32\\x6e\\x95\\x27\\xb8\\x58\\x63\\x40\\x1c\\xcf\\xf5\\x2c\\x0f\\x62\\x2a\\xb8\\x33\\x58\\xfd\\x77\\xdf\\x24\\x98\\x1f\\xe7\\x4c\\x93\\x5b\\x1f\\x8b\\xc0\\x60\\x13\\x6c\\x23\\xd4\\xf7\\xa2\\xdf\\x07\\x72\\xb8\\xcf\\x73\\x9a\\xd1\\xd4\\x65\\xe0\\x90\\x03\\x3b\\xb2\\xae\\x0e\\x9f\\xe5\\xc4\\xd5\\x2d\\x4c\\x31\\x44\\x84\\x5b\\xf8\\x1f\\xc8\\xcc\\xa5\\xc3\\xee\\xc3\\x27\\x8a\\x82\\x7d\\xba\\x50\\xce\\x05\\x14\\x04\\xd7\\x30\\x39\\xd2\\x88\\xbf\\xe1\\xc6\\x36\\x18\\x47\\xfd\\x66\\xab\\xe6\\x36\\xd0\\xdc\\xd8\\x3e\\xdf\\xb3\\x64\\x15\\x2b\\xd7\\xad\\x70\\xab\\x92\\x00\\x24\\xd0\\x61\\xb7\\x06\\x6f\\x10\\x82\\x6a\\xa7\\xce\\x38\\xa6\\xa4\\x32\\x51\\x3a\\x6b\\x62\\xca\\xe5\\x96\\x4b\\xc1\\x71\\x0f\\xa8\\xc7\\x78\\x94\\x96\\x5e\\xe1\\x34\\xd0\\x08\\x4f\\xd1\\x35\\x2d\\x92\\xf6\\x99\\xe5\\x36\\xac\\x18\\xfb\\x37\\x3b\\xeb\\x8e\\x51\\x15\\xef\\x0a\\x55\\x3c\\x69\\x71\\xf1\\xb4\\x86\\xc4\\xe5\\xa2\\x7d\\xcb\\x3e\\x32\\x41\\x61\\x90\\x0d\\x53\\xa1\\xba\\x92\\x43\\x99\\x8b\\x9e\\xb0\\xf9\\x4d\\x64\\x98\\x24\\x0d\\x64\\xad\\x20\\xd5\\x0a\\x14\\xd2\\x9d\\x2e\\x44\\x59\\x2a\\x73\\xec\\xa8\\x9c\\xd4\\x8a\\xd9\\xde\\x5d\\xdc\\x25\\x8d\\x26\\x2c\\xaa\\x41\\x88\\x83\\x75\\x91\\xa7\\x76\\xb1\\x1b\\xd0\\x4c\\xbc\\x8c\\x23\\xa0\\x0f\\x07\\xae\\x08\\x62\\xad\\xc1\\xa5\\x28\\x15\\x44\\x52\\x44\\xbf\\x76\\xbc\\x4e\\x17\\x45\\xc7\\xe1\\xcd\\xd4\\x58\\x50\\xb0\\x10\\x22\\x84\\x9a\\xf5\\x41\\x36\\x86\\x96\\x9c\\xc3\\xea\\xf5\\x3d\\xbd\\x23\\x60\\x55\\xbc\\x7c\\x9a\\x6a\\x97\\xc2\\x1c\\x63\\x7f\\x2b\\xb7\\xc2\\xba\\xa0\\x3b\\x1a\\x63\\x42\\xcc\\xcf\\x6e\\xe6\\x6d\\x26\\xc0\\xa6\\xeb\\x1e\\x41\\x94\\xea\\x68\\x1d\\x81\\x75\\x9d\\xfb\\xdb\\xe3\\x61\\xb5\\xe0\\x64\\xa9\\x4b\\xe6\\x1c\\x57\\x01\\x58\\x0d\\x31\\x06\\x52\\xd3\\xd1\\xd8\\x18\\xe6\\x9e\\x12\\x58\\xff\\x35\\x7f\\xc0\\x98\\xb3\\x15\\x15\\xc3\\x72\\x01\\xe4\\x2c\\x02\\xa2\\xce\\x46\\x49\\x88\\xa9\\x69\\x4c\\xc2\\xfd\\x2a\\x92\\x9e\\x09\\xa1\\x85\\xe5\\xc2\\x38\\xcd\\x32\\x17\\x69\\x52\\xae\\x03\\x15\\x8e\\x78\\x11\\x5a\\xb9\\xf0\\xa2\\x15\\xc0\\x86\\x65\\x8c\\xcc\\x49\\xa8\\xc6\\x80\\x88\\xb6\\x07\\x1a\\xa5\\xc3\\x75\\xef\\x04\\x03\\xc4\\xd0\\x51\\xd2\\x72\\x69\\xac\\x39\\x75\\x90\\x1a\\x14\\x3d\\x1d\\x0f\\x78\\x06\\xb8\\xc7\\x36\\x6f\\x96\\x20\\x68\\xc1\\x3a\\x48\\xea\\x6b\\xf7\\x9c\\x86\\x12\\x13\\x8c\\xb8\\x0e\\xd4\\x72\\xd8\\x75\\xda\\xc3\\xea\\x81\\x05\\xcb\\x1e\\x1e\\x97\\xb8\\x65\\x97\\xf6\\x68\\x44\\x1e\\x5d\\xd2\\xfc\\x8a\\xcc\\x46\\x24\\xd5\\xd9\\x09\\x1f\\x72\\x08\\x7a\\xbf\\x6a\\x4c\\x94\\x71\\xa0\\x90\\x13\\x73\\x0f\\x65\\x9e\\x37\\x9a\\x57\\x06\\x29\\xa1\\xf5\\x21\\xed\\xd3\\x66\\x1f\\x6d\\xdf\\x98\\x88\\xfd\\xc8\\x0c\\xb7\\x3a\\x48\\xb6\\xdf\\x01\\x39\\x3b\\x81\\x5d\\x36\\x78\\x67\\x62\\x27\\x8b\\xb2\\x32\\x3b\\xcb\\x7e\\x78\\xf4\\x8a\\xbc\\x92\\xb5\\x45\\xb7\\xed\\x6b\\x35\\xbc\\x20\\xc2\\xca\\xe5\\xfa\\xc0\\x53\\x0e\\x91\\xe6\\x07\\xa8\\x9e\\x14\\x80\\x73\\x60\\x0f\\x32\\x68\\x85\\xf2\\x10\\x1c\\xd7\\x34\\x09\\x4e\\x14\\xf7\\xe3\\x08\\xf3\\xa6\\x3f\\x09\\x20\\x5d\\xe0\\x11\\xba\\x4e\\xf8\\x81\\x34\\x9e\\xde\\x0a\\x88\\xf9\\x90\\x17\\xe6\\xe4\\xbc\\x07\\xc3\\x2f\\x75\\x4f\\x10\\x7f\\xf4\\x77\\x36\\x37\\xc6\\x02\\x40\\xb8\\xdf\\x59\\x1c\\xee\\xe8\\x7d\\x0a\\x12\\x8b\\xdc\\x98\\x85\\x81\\x43\\xa7\\x6b\\x0a\\x3c\\x94\\xd1\\xa0\\x73\\xd6\\xea\\x0c\\x54\\x78\\xca\\x63\\x15\\xf8\\x92\\xfb\\x19\\xf8\\x44\\x39\\xe4\\xb8\\x10\\xaf\\xe0\\x78\\x05\\xa3\\x80\\x50\\xf5\\xcd\\x43\\x7d\\xe3\\xd8\\x85\\x80\\xb1\\x33\\xd4\\xe3\\xe6\\x50\\x79\\x97\\xf9\\xaa\\x09\\xb5\\x4c\\x75\\x8e\\x43\\xff\\xdc\\x8c\\x38\\xbc\\x6f\\xf3\\x99\\x22\\x77\\x56\\x69\\x97\\x75\\x2e\\x43\\x70\\xba\\x62\\x5b\\x6e\\x7a\\x25\\x0a\\xf7\\x0d\\x4c\\xe7\\xf8\\xed\\xfd\\xad\\x21\\x8c\\xb2\\xde\\x02\\x48\\x63\\x20\\x0f\\x6a\\x84\\x95\\x25\\x93\\xbd\\x34\\xc5\\x42\\x40\\x38\\x6e\\x66\\x5c\\xd5\\xf7\\xd3\\xf1\\x24\\xec\\x1e\\xab\\x91\\xb6\\xf1\\x98\\x60\\x7e\\x15\\x35\\xf0\\x80\\x7c\\x27\\x22\\x1d\\x18\\x46\\x4a\\x7f\\x33\\x85\\x0b\\xb4\\x12\\xc0\\x32\\x5d\\x01\\x59\\x93\\x4b\\xef\\x75\\x8d\\xc1\\x39\\x37\\xc4\\x69\\x8f\\xfd\\xd1\\x41\\x9a\\x4f\\x6f\\x55\\x25\\xb0\\xf5\\xb9\\x98\\x29\\x14\\x2e\\x0b\\x52\\xdd\\xd0\\xb7\\x33\\xdc\\xe9\\xac\\x15\\xa4\\x0e\\x48\\x98\\x8f\\x7d\\x4c\\x00\\xfb\\x52\\x0f\\x79\\xea\\xe1\\xf9\\xf2\\x4c\\x9a\\xcf\\x4e\\x6a\\x4b\\x7c\\x1c\\xc8\\x99\\x3d\\x25\\x16\\x4c\\xaa\\x99\\x2f\\x0f\\x50\\xe8\\xf0\\xb6\\x76\\x8d\\x8d\\x04\\x25\\x89\\x0e\\x27\\x49\\x04\\xbd\\xae\\x3f\\x93\\xfb\\x38\\x7d\\x2b\\xe6\\x68\\xf6\\x6c\\xc5\\x80\\x04\\xe0\\x72\\xca\\x70\\x50\\x4c\\x53\\x07\\x06\\x0d\\xd5\\x61\\x1e\\x88\\xe6\\xd4\\xed\\x1b\\x0d\\x9f\\x8c\\x9d\\xa3\\x8a\\x70\\x9e\\xc6\\xc7\\xd2\\xbd\\x94\\xac\\x24\\x08\\x86\\xf0\\xce\\x0b\\x55\\x50\\xb0\\xf4\\xa4\\x2d\\xd6\\x9b\\x36\\xca\\x70\\x7d\\xa4\\xaa\\xe9\\x1a\\x38\\x1d\\xc8\\xb4\\xb3\\x64\\x86\\x44\\x52\\xbe\\xd1\\x5e\\xa6\\x74\\x57\\xee\\xe5\\xbe\\x27\\xe7\\x83\\x0a\\x22\\x9d\\x29\\x3c\\xb2\\x40\\x87\\xee\\xc9\\x79\\xec\\x16\\x25\\x29\\x2f\\x8c\\x46\\x22\\x39\\x61\\xc7\\xc4\\x95\\xba\\x62\\xd9\\x49\\xbf\\xd3\\x33\\x31\\xdc\\x31\\x60\\x9c\\x9d\\xdd\\xf5\\x14\\x1c\\x8b\\xfb\\x41\\x47\\x1e\\x1c\\xe4\\x4c\\xc0\\x30\\xd4\\x6e\\x66\\xa1\\x37\\x07\\x21\\x55\\xd4\\x82\\x6a\\x6f\\xeb\\xde\\x3c\\x94\\x9d\\xb7\\x9f\\x7e\\x24\\x0e\\x26\\xb6\\xe0\\xe0\\xd9\\xcc\\xaf\\xf9\\x4d\\xb8\\x17\\x46\\xb2\\xef\\x40\\xff\\x88\\xd5\\x83\\xf9\\x9e\\x8c\\x58\\xf0\\xf3\\xd0\\x75\\xce\\x50\\x2f\\x2d\\x05\\x7a\\xd4\\xa9\\x3f\\x4c\\x73\\x07\\x7d\\x18\\xcb\\x90\\x23\\xcc\\x9b\\xbe\\xb7\\x73\\x80\\x5a\\x4d\\x91\\xfe\\xc4\\x35\\xdf\\xb8\\x43\\xbd\\x0a\\xe5\\x83\\x5e\\xd3\\xdd\\x50\\x62\\x9c\\x24\\xb6\\x35\\x3e\\x1d\\x30\\x39\\x04\\x97\\x23\\x20\\x5a\\xdd\\xf8\\x42\\x4f\\x4a\\x32\\xcc\\x1e\\xb1\\x6f\\x87\\x61\\x5f\\x10\\xa4\\xa5\\x38\\x4f\\xb0\\x8f\\x2d\\x33\\x2e\\xa9\\xfd\\xe8\\x57\\x1a\\xbf\\x1d\\x8e\\x41\\xc6\\xbd\\xbd\\xbf\\x59\\x14\\x10\\x03\\xce\\x99\\xfe\\xf2\\xd3\\x7e\\x87\\x56\\x8e\\x30\\x77\\x28\\x5e\\xc0\\xa6\\x39\\x2e\\xe8\\x85\\x22\\x47\\x42\\x5a\\x1a\\x48\\x34\\x96\\x31\\xe7\\x38\\x47\\xbd\\x61\\x90\\xf7\\x3d\\x96\\x80\\x69\\x08\\xcd\\xd2\\xf9\\x6d\\xde\\x05\\x2b\\x4a\\xe6\\x6c\\x22\\xad\\x0b\\xa1\\x5c\\x9a\\x31\\x61\\xad\\x1c\\x5f\\xfe\\x5d\\xa4\\x64\\x1e\\x33\\xf6\\xfd\\xde\\x8a\\x3c\\x1b\\x82\\x76\\x99\\x76\\x05\\x78\\x33\\xf0\\x74\\x63\\x9a\\xe2\\x44\\x5c\\x4f\\xa0\\x9a\\x30\\x48\\xe7\\x10\\x10\\x1f\\xee\\xd5\\x02\\x43\\xa7\\x9d\\x3f\\x95\\x8a\\x91\\xa2\\xc2\\xca\\x74\\x8a\\x1a\\x52\\x5b\\x5c\\xe8\\x9f\\xfc\\xe0\\xa4\\x10\\x28\\x8b\\x5a\\x30\\x6a\\xe2\\x03\\x6b\\x3d\\xa7\\xce\\xef\\x8f\\xe0\\x32\\xef\\x21\\x18\\x62\\x4f\\x00\\x8e\\xe9\\x42\\x68\\x81\\xc5\\xa7\\xbb\\x05\\xf4\\x32\\x6c\\x3d\\x5f\\xd5\\xc6\\xbc\\xda\\x73\\x5c\\x35\\xb7\\x8f\\x71\\x43\\xdf\\x92\\xa5\\x4c\\x09\\x8e\\x9c\\xf0\\x8b\\x7e\\xcc\\x41\\x6c\\xef\\xc4\\x38\\x88\\xa9\\xf4\\x85\\x25\\x2f\\x66\\x2f\\x6c\\x0e\\xea\\x96\\x40\\xa9\\x6f\\x4b\\x15\\x03\\x25\\x24\\x9c\\x82\\x3e\\x9e\\xc6\\xe5\\x1a\\x9f\\xe6\\x45\\xc9\\xb5\\xa1\\xe2\\x09\\x2a\\xc2\\x38\\xa4\\x97\\x02\\x53\\xf4\\x5e\\x08\\x41\\xc0\\x6f\\x83\\x44\\x35\\xe9\\x91\\x16\\x27\\x15\\xec\\xf6\\x21\\x1c\\xab\\x61\\xe7\\xc6\\x12\\xee\\xbd\\xb0\\x41\\xa1\\x10\\x6e\\xd1\\xbb\\x49\\x09\\xc7\\x3f\\xde\\x0b\\xa8\\x06\\x42\\x1f\\x8b\\xdc\\x5b\\xe7\\x59\\xe0\\xcf\\x36\\x5f\\x6e\\xdc\\x95\\xaf\\x3f\\xd8\\x1b\\x32\\x7b\\x4e\\x3e\\x78\\x7c\\x54\\xca\\xe0\\xd6\\x31\\xd9\\x98\\x10\\x86\\x91\\x34\\xef\\xa6\\x80\\x3d\\x46\\x9f\\x13\\x01\\x19\\x84\\x64\\x42\\x60\\xbf\\x28\\xe9\\x96\\x8b\\x6c\\xcd\\x78\\xfd\\xc2\\x5a\\x5c\\x76\\xa3\\xa7\\x41\\x56\\x8f\\x53\\x95\\xa3\\xa5\\x53\\xcc\\xab\\x47\\xa6\\xdf\\x38\\x86\\xfa\\x9e\\x80\\x99\\xde\\x3c\\x06\\x98\\x68\\xbd\\xcf\\x7a\\x41\\x9a\\xdf\\x7d\\xd3\\xd6\\x8c\\xe4\\x5a\\x73\\x7e\\xb0\\xeb\\x18\\x16\\x94\\x51\\xcf\\x1d\\x96\\xe8\\x61\\xde\\x25\\x88\\x2f\\xb1\\xfd\\x98\\xac\\xa3\\xb0\\x67\\x50\\xa1\\xfd\\x19\\x62\\x58\\x73\\x80\\xb8\\x83\\xd6\\x05\\x2e\\x85\\xc3\\x60\\x17\\x23\\xcb\\x63\\x8d\\x2f\\x9f\\xb6\\xda\\xe9\\x9c\\x31\\x7d\\xbc\\x01\\x39\\x69\\x42\\x58\\xda\\x53\\x65\\x03\\xef\\x9b\\x66\\x51\\x0e\\x21\\xa0\\x70\\x1a\\x53\\xb2\\x53\\xff\\x27\\xff\\xf1\\xdb\\xd5\\x8b\\xdd\\x86\\xb3\\xf6\\x72\\x44\\x43\\xa2\\x55\\x00\\xaf\\x64\\xe6\\x63\\x79\\xfb\\xa9\\x0f\\x54\\x7b\\x30\\x11\\xea\\xe1\\x73\\x60\\x20\\x72\\xf4\\x4c\\x2e\\x5a\\x56\\x31\\xaf\\x40\\xa7\\xb2\\xe5\\x2a\\x0f\\xe3\\x09\\xde\\xbd\\x39\\xdf\\x37\\xcd\\xc1\\xe0\\x81\\x87\\x22\\x47\\x87\\x4d\\x2c\\x23\\x5f\\x5c\\xca\\x3a\\x3d\\x51\\xd1\\x23\\x22\\x09\\xef\\x3a\\x3f\\xc8\\xee\\xe0\\xb6\\xb8\\x54\\xe2\\x89\\xec\\x42\\xe0\\x74\\x68\\x81\\x6c\\x46\\xa0\\x18\\x30\\x21\\x38\\xaf\\xb7\\x2d\\x02\\xa4\\x60\\xea\\xa3\\x02\\xea\\x79\\xf3\\x0e\\x0f\\x84\\x63\\x88\\xd4\\x0c\\xee\\x65\\xc3\\x0f\\x24\\xdd\\x54\\x40\\x8e\\x0e\\xaa\\x43\\x7d\\x00\\xcf\\x65\\x77\\x8a\\xb2\\x34\\x2e\\x1f\\xf3\\x48\\x23\\x9b\\xfd\\x98\\x59\\x82\\x5f\\xd2\\xc3\\x7f\\x84\\xfc\\x56\\x4a\\x86\\x08\\xf1\\x23\\xa5\\xc1\\xc6\\x10\\x48\\x8c\\x97\\x5f\\x24\\x5c\\x08\\xcd\\xfe\\xcb\\x56\\x69\\x85\\x0e\\xfc\\x9f\\x64\\x15\\xe1\\x59\\xd9\\x35\\x10\\x94\\x45\\x94\\x3d\\x6b\\xc4\\xec\\x45\\xee\\x4c\\xed\\xc9\\x8b\\x8d\\x8d\\x70\\xa5\\x24\\x9b\\x5a\\x9e\\xaf\\x8f\\x75\\x95\\xee\\x66\\x19\\xfd\\x8a\\xd5\\x7c\\x02\\xaf\\xfc\\x36\\x75\\xa2\\x73\\x89\\x3f\\x14\\xa9\\x47\\x8b\\xca\\x51\\x07\\xcc\\xd8\\x84\\x2e\\xbb\\x58\\xdd\\x1c\\x94\\x43\\xe3\\xcf\\x4a\\x0d\\x73\\x24\\xc8\\xe9\\x98\\xcd\\x96\\x2f\\x92\\x29\\xa9\\x25\\xcd\\xe7\\x4e\\x75\\xe3\\x8b\\xfa\\xad\\x04\\x6a\\xec\\xd1\\x79\\xed\\x4e\\x43\\xfb\\x9e\\xde\\x9f\\x79\\xfa\\xba\\x93\\x86\\xc3\\xe6\\x9e\\x5d\\x4e\\x2a\\x1e\\xa6\\xda\\x74\\x42\\xeb\\x34\\xd8\\x37\\xdc\\x6f\\x9a\\xf7\\x32\\xed\\x82\\x86\\x27\\x3f\\xdd\\x73\\x7b\\xd6\\xe4\\xe6\\x14\\xdd\\x59\\xda\\x6b\\x79\\x5d\\xaf\\x24\\xb8\\xce\\x8b\\x27\\x8f\\xf7\\x64\\xc9\\x11\\xa7\\xab\\x6d\\x2e\\x56\\x1d\\xd4\\x38\\xa8\\xc0\\x10\\x08\\x96\\x7b\\xf5\\x67\\x9a\\xda\\x43\\x4e\\x16\\x82\\x97\\xb7\\x55\\xa5\\xc3\\x96\\x30\\xed\\x46\\xa1\\x43\\x14\\x30\\xff\\x59\\x60\\x7f\\xcf\\xa4\\x55\\x43\\x6f\\xf0\\xa0\\xcc\\xa8\\x72\\x14\\x44\\xd8\\xaf\\xec\\x80\\xe3\\x4e\\x61\\x1d\\xc1\\x51\\x43\\x29\\x5d\\xdd\\xb3\\x7d\\x84\\xa1\\x89\\xdd\\xbb\\xd3\\x8a\\xcd\\x53\\x44\\x68\\x32\\x38\\x99\\x2d\\xf0\\x53\\xb9\\xbd\\x4b\\x29\\xc8\\x58\\x1b\\xec\\x7e\\x81\\xa9\\xa7\\xa8\\x65\\x8e\\x04\\xf4\\x39\\x1a\\x40\\x5f\\xb2\\xf0\\x59\\xec\\xb9\\xfc\\x37\\xf7\\x5e\\x1e\\x0a\\x8a\\xa7\\x7d\\x2a\\xaa\\x27\\x22\\xc4\\x13\\xea\\x5a\\xcc\\xff\\xad\\x17\\x7c\\x62\\x2d\\xf9\\x29\\x2a\\x9e\\x0d\\xff\\x7d\\xc7\\x0f\\xf8\\x7f\\x10\\x58\\xfe\\x16\\x44\\x84\\x05\\xc3\\x48\\x26\\x2c\\x0d\\x48\\xf3\\xa8\\x0b\\x0c\\xd7\\x3c\\x8f\\x73\\x08\\x50\\xd0\\x5f\\xa3\\xca\\x81\\xa5\\x1f\\x7e\\x7d\\xb9\\xec\\x45\\xdc\\x12\\x79\\x4e\\x95\\x70\\xea\\xf7\\xd2\\x52\\x11\\xa9\\x8b\\x29\\xc0\\x5c\\x50\\x04\\x9c\\x9d\\x8c\\x46\\x88\\x0b\\xb7\\x37\\x8d\\x6c\\xd4\\xef\\x79\\x33\\xf6\\x64\\x18\\x8b\\x7c\\xa9\\xfb\\xb1\\xe2\\xda\\xfd\\x8a\\x17\\xe1\\x10\\xf3\\xce\\xd5\\x08\\x3e\\xeb\\x7c\\x53\\x46\\xd2\\x05\\x51\\xd9\\xb1\\xf8\\x9e\\xdd\\xdb\\xc3\\x1d\\x09\\xfd\\x20\\x36\\x88\\x63\\x38\\xa2\\xc7\\xa0\\x9c\\x3d\\x2f\\x4f\\xe5\\xc7\\x8d\\x81\\xa4\\x13\\x18\\x12\\x04\\x76\\xd9\\x4d\\x05\\xf9\\x6a\\xf3\\x09\\xf3\\x5b\\x88\\xf5\\x1d\\x85\\x91\\x18\\xe8\\xee\\x20\\x68\\x01\\xaa\\x32\\x85\\x59\\x6f\\x99\\x00\\xdc\\xe8\\xbd\\xff\\x64\\xe9\\x7a\\xc1\\x12\\x89\\x52\\x43\\xfe\\x08\\x0d\\xe8\\xea\\x7f\\x9f\\x77\\x45\\x1a\\x0b\\x7b\\x38\\x2c\\xbe\\x7e\\xbf\\xcc\\xc4\\xa2\\x3e\\x57\\x3d\\xbf\\x66\\x8a\\xc2\\x6a\\x6c\\x32\\xd7\\x10\\xa3\\x15\\xe6\\x42\\xb9\\x4f\\x30\\x8b\\x36\\x22\\x62\\x5e\\xcd\\x37\\x54\\x14\\x68\\x65\\x4b\\x17\\xfa\\xb9\\x78\\xf7\\x5e\\x91\\x8f\\xab\\xf7\\xdf\\xfa\\xf0\\xad\\x57\\xf2\\xe6\\x76\\xbd\\xec\\x5a\\x51\\x24\\x91\\xe7\\x32\\x02\\xad\\x25\\xe3\\x2d\\xf9\\x79\\xc7\\xec\\xaf\\x8b\\x06\\x8a\\x92\\xf5\\x72\\x91\\x25\\xf1\\x0a\\x5e\\xc2\\xe0\\x48\\x73\\xbe\\x65\\x0c\\x90\\x51\\xfd\\x2a\\x8f\\xb7\\x0f\\x7e\\x3c\\x42\\x1a\\x3f\\x7e\\xbf\\xe8\\xea\\x7a\\x90\\xab\\x0d\\x29\\xe7\\xd9\\xc0\\x10\\x1d\\x8e\\xf0\\x63\\x76\\x7f\\xbe\\xc7\\xa7\\x79\\x5e\\x0a\\xd9\\x6f\\x14\\x27\\x4d\\xc4\\xff\\x02\\x1d\\x4e\\xe4\\xbd\\x3a\\x52\\x95\\xbc\\xe0\\x82\\xf9\\x64\\x21\\x97\\x48\\x76\\xc6\\xde\\x36\\xbc\\xdd\\x32\\xb9\\x1f\\x59\\x28\\x30\\x21\\x65\\xc6\\xfb\\x40\\x0d\\xea\\x6a\\x4f\\x1e\\x88\\x90\\x86\\x96\\x89\\xe4\\xe3\\x45\\x93\\x6a\\x06\\x50\\x6e\\xc7\\x73\\xf7\\x3e\\xcb\\x9d\\x4f\\x61\\x1c\\xe2\\x08\\xec\\xd8\\x30\\x8d\\xac\\x8b\\x59\\x05\\x90\\x35\\x8d\\xe0\\xb5\\x3e\\x1a\\x98\\xb6\\x11\\x2f\\xd6\\x9d\\x94\\x17\\x97\\xf3\\x68\\x1f\\x67\\xd0\\x63\\xe0\\x91\\xe1\\x3e\\x44\\xbb\\x9b\\xc5\\x01\\xd0\\xaf\\x1c\\x94\\x05\\x95\\x10\\xf1\\xd1\\x02\\x67\\x3d\\xf7\\xc5\\x04\\x25\\xea\\xbf\\x49\\x9d\\xd1\\xa8\\x6c\\x6b\\x94\\xe5\\xd3\\x6a\\xcc\\x1d\\x01\\xdf\\x99\\x11\\x11\\x66\\xc7\\x25\\x04\\x18\\xd7\\x97\\x9b\\x32\\xb1\\x92\\xc3\\xd7\\x1c\\x7d\\x73\\x68\\xcf\\x54\\x77\\xcb\\xdb\\x3b\\x3f\\x90\\x8a\\x8d\\x4c\\xe4\\x3e\\x49\\x14\\x10\\x6b\\xb6\\xfb\\xc6\\x7e\\x4a\\xa4\\xd9\\x86\\x27\\x89\\x31\\x69\\x94\\x42\\xd2\\x66\\xde\\x30\\x22\\x2e\\xf8\\xf9\\x52\\xb2\\x92\\xe0\\x30\\xb8\\x75\\x5e\\x88\\xa8\\xdc\\x49\\x21\\x24\\x99\\xab\\x21\\x52\\xc5\\x8d\\xab\\x94\\x04\\xad\\x4e\\x45\\xf9\\xcc\\xba\\x26\\x77\\x93\\xd2\\xb1\\xf7\\x1a\\x71\\x9a\\x52\\x21\\x74\\x30\\xde\\x1d\\x09\\x86\\x1b\\xe2\\x76\\x19\\xf5\\x13\\x5b\\x5e\\x3f\\x3f\\x8a\\x60\\xe1\\x41\\x97\\xbb\\xc4\\xaa\\x4f\\x45\\xa1\\x07\\x77\\x8d\\x05\\x49\\xe9\\xd4\\x44\\x0f\\x0e\\xf0\\xe0\\x15\\x4c\\x4c\\x49\\x76\\xc5\\x53\\xb7\\xea\\x49\\xd8\\x81\\xd9\\xe3\\x88\\x4b\\xa2\\xb8\\x58\\x67\\x67\\xc0\\x27\\xbc\\xe1\\x9f\\x5c\\x39\\x19\\x7e\\xb0\\x79\\x2d\\xc1\\x50\\x4e\\x76\\xf1\\x8a\\x75\\xee\\x69\\x65\\x76\\x19\\x55\\x4d\\x74\\x11\\x56\\xb0\\xc9\\x8b\\x58\\x12\\x7b\\xfc\\x87\\xce\\xb9\\x24\\xbe\\xde\\xb0\\x27\\x7f\\x05\\x78\\x33\\x9d\\x95\\xdb\\x54\\xc2\\x8a\\x19\\xc8\\x4b\\xae\\xb9\\x9a\\xa4\\x98\\xa6\\x28\\xf6\\xdd\\xc3\\x0f\\x24\\xde\\x0e\\x8b\\x34\\xec\\xe3\\x1e\\xbe\\x22\\x78\\x6a\\xd8\\x93\\x6d\\xf8\\x7f\\xf0\\x37\\x63\\x32\\xd6\\xc4\\xb4\\x7d\\xae\\xba\\x59\\xcd\\x05\\x59\\xa9\\x4e\\xdd\\x1e\\x6f\\x2b\\x1d\\x33\\x6f\\x2d\\xdb\\xb7\\x5b\\xde\\xdd\\x9e\\xef\\xae\\x5f\\xdf\\xbc\\xac\\x76\\x0a\\x51\\x50\\xce\\xb3\\xd8\\x84\\xc7\\x10\\x23\\x8a\\xaa\\x01\\x4f\\xbe\\xde\\xe2\\x7e\\x6f\\xca\\xde\\x4a\\x14\\xdc\\xce\\x94\\x8c\\xeb\\x37\\xf9\\x31\\x85\\x51\\x7b\\xe9\\xc4\\xe1\\x62\\xa1\\x06\\x30\\x8d\\x63\\x68\\x84\\x76\\xc0\\x72\\x21\\xea\\x00\\xc0\\x58\\x47\\xca\\xbe\\xaf\\x18\\x37\\x71\\x12\\x77\\x76\\x3d\\xa9\\x15\\xa5\\xb9\\x62\\x8f\\x76\\x1c\\xfc\\x1c\\xd7\\xe9\\x38\\x4f\\x73\\x82\\x2f\\xfb\\xfa\\xc9\\x31\\x33\\x51\\x4d\\x0f\\x73\\x57\\x5d\\x01\\x58\\x6f\\xe9\\xcf\\x4d\\x8e\\x64\\x7f\\xf4\\x5a\\xa0\\xb1\\x8e\\xa2\\xe7\\xd2\\xf5\\x28\\x87\\x71\\x43\\xf9\\xec\\x06\\x2c\\xcb\\xaf\\xa8\\x40\\x0c\\x86\\xec\\x9e\\x5e\\x9e\\x0d\\x16\\x51\\xb2\\x52\\x04\\xe4\\x94\\x11\\x8a\\xa5\\x61\\x83\\x04\\xe6\\x0b\\xf4\\x46\\x63\\xe8\\x4d\\xed\\x91\\x03\\xdb\\xca\\x73\\x96\\x01\\x0b\\x55\\x8c\\xe4\\xec\\x2f\\x99\\xc3\\x9a\\x7c\\x21\\x76\\x61\\xd4\\xeb\\x32\\x72\\x12\\x9b\\xa2\\x14\\xf8\\x40\\xb8\\xa2\\x93\\x77\\x27\\xdf\\x56\\xa2\\xef\\xc6\\x87\\x32\\x97\\x0b\\x45\\xee\\xed\\xe4\\x8b\\x62\\xc1\\xf5\\xde\\x78\\x5d\\xee\\xba\\xf9\\x91\\xc1\\x20\\xd6\\xc2\\x27\\xe9\\xac\\x05\\x34\\xdd\\x54\\xf9\\x30\\xdc\\x08\\x82\\x35\\x05\\x9e\\x29\\x80\\x47\\xbc\\x95\\x80\\x8e\\x91\\x95\\x20\\x05\\x18\\x75\\x63\\x4e\\xb8\\x6a\\x4f\\x7c\\x4c\\xc3\\xe4\\xc5\\x06\\x06\\x6f\\x36\\x43\\x60\\x2a\\x7a\\xaf\\xe1\\xb3\\xa7\\x6f\\xf4\\x95\\x86\\xcd\\x35\\xe3\\xd7\\x8c\\xaa\\x87\\x1f\\x2c\\xda\\x05\\x98\\x6f\\x06\\x49\\xa9\\xe3\\xc3\\x58\\xb1\\x9c\\xd0\\x68\\xe6\\x6a\\x05\\x07\\x37\\x47\\x60\\xba\\x80\\x50\\xf5\\x54\\xf4\\xa8\\x05\\x79\\xee\\x2b\\x29\\x65\\xd0\\x9e\\x80\\x51\\x69\\x6f\\x97\\x44\\x18\\xbe\\x68\\xa7\\x41\\x98\\x1d\\xbc\\x09\\xb7\\x58\\x23\\x57\\x02\\x75\\xe0\\x71\\x95\\x4c\\xe0\\x2d\\xc9\\xda\\x91\\xda\\x77\\x1d\\xd8\\x3b\\x9f\\xeb\\x33\\x4b\\xea\\xd8\\xdf\\x16\\x3f\\x55\\xbf\\xbf\\x24\\xd8\\xe7\\x04\\xff\\xb5\\x85\\x6e\\x0f\\x91\\x88\\xc2\\xb0\\x65\\xe2\\xdc\\x26\\x42\\x90\\xc4\\x93\\xa0\\x73\\x8e\\xec\\x3a\\x8a\\xad\\x7a\\xe6\\x7b\\xa0\\x0d\\x33\\x5f\\x50\\x37\\x06\\x83\\x7d\\x0c\\xe8\\x16\\x4f\\x19\\xec\\xc6\\x46\\xf2\\xcf\\x4f\\x42\\xc5\\x6a\\x40\\x6d\\xd2\\xc5\\xd4\\xcf\\x79\\x4e\\xe4\\x4e\\xb6\\x89\\xfc\\x3a\\x27\\x88\\x61\\x3d\\xf8\\x38\\xb5\\x06\\xe9\\x65\\x43\\x72\\xb5\\x02\\xf8\\x9d\\x7a\\x12\\xe0\\x35\\x0f\\xe3\\xf1\\x91\\xa7\\xd1\\xf5\\xe6\\x58\\x0c\\xe9\\xa5\\x5c\\xf7\\x0a\\x14\\xef\\xaf\\xbf\\xf1\\xad\\x4b\\x18\\x21\\xb0\\x06\\xf8\\x9a\\x94\\x45\\x74\\x06\\x95\\x97\\x00\\x58\\x6e\\x92\\xf3\\xad\\xb6\\x83\\x6e\\xb8\\xdd\\xd9\\xa2\\xe8\\x44\\xe6\\xbd\\x10\\xf0\\x5e\\xa9\\x00\\x45\\x03\\xd0\\x94\\x64\\x6d\\x3a\\x48\\xe9\\x30\\x13\\x73\\x28\\x4a\\x9e\\xfa\\x80\\xd0\\x33\\x89\\xc8\\xbb\\x30\\x94\\xbb\\xc2\\xdb\\xb6\\xd6\\x6a\\xf1\\xea\\xbd\\xc3\\xb4\\x92\\x60\\xb0\\x20\\x61\\xb5\\x1a\\xde\\x23\\x19\\xae\\x07\\xb8\\x5b\\x44\\x2b\\x1e\\x47\\xce\\x6c\\x45\\x01\\xb2\\xce\\x11\\x03\\xae\\xf1\\x2c\\x6b\\xe2\\x2d\\x64\\x34\\x9e\\x6f\\xc0\\x09\\xd6\\x5a\\x55\\x62\\x88\\x7a\\x67\\x7f\\xe8\\x90\\xd9\\xaa\\x0d\\xb4\\x36\\x68\\x55\\x8f\\xd2\\x90\\xd8\\x58\\xb2\\xc8\\x6d\\xb5\\xd0\\xa9\\x0f\\x84\\x74\\x5f\\xd8\\x9e\\x29\\x69\\x8f\\xde\\x55\\x49\\xe7\\x4b\\x11\\x56\\xeb\\xac\\xf0\\xb9\\xf1\\xee\\xf5\\xab\\x19\\x36\\x7b\\xe2\\x3b\\xfe\\xa1\\x7b\\x64\\xb2\\xd6\\xb9\\xcc\\x5e\\xa9\\x21\\x80\\xb4\\x0a\\x72\\x97\\x49\\xb3\\x9e\\x8b\\xd1\\x47\\x68\\xc8\\x4a\\x23\\x87\\xfb\\xc3\\xc2\\x69\\xc1\\xd3\\xcb\\x58\\x72\\x24\\x8a\\x84\\x18\\x5e\\xcf\\x80\\x84\\x13\\x0e\\x33\\x24\\x34\\x03\\xda\\x5d\\x97\\xe0\\xae\\x5c\\xc1\\xb9\\x18\\x37\\xc6\\x73\\xce\\x3b\\x93\\x3d\\x24\\xd2\\x65\\x60\\x8c\\x7b\\x70\\x8f\\x21\\x85\\xa5\\xde\\x9d\\x73\\x00\\xc7\\x09\\xad\\x43\\x71\\xb7\\x00\\xf5\\x58\\x0b\\xd6\\x46\\x1b\\x6c\\xe8\\x74\\xf0\\xd1\\x6f\\x7f\\xc9\\x51\\xea\\x0c\\xa6\\xf4\\x2b\\x7a\\xcf\\x02\\x45\\xde\\xba\\x5a\\x2d\\x4a\\x1e\\x5c\\x87\\xd7\\x74\\x21\\x51\\x20\\xeb\\x72\\xbe\\xb4\\xa7\\xe0\\x33\\x1d\\x32\\x09\\x71\\x60\\x8f\\x7b\\x6c\\x75\\x3a\\x64\\x5c\\xb9\\xf1\\x10\\x0f\\x52\\xc3\\xd0\\x6d\\x35\\xe6\\xa5\\xdc\\x06\\x80\\x38\\xd8\\x4f\\x7c\\xdc\\xee\\x76\\x4f\\x8f\\xfb\\xed\\xaa\\xc2\\xc1\\xa5\\x33\\x46\\x05\\x6b\\x4a\\x26\\x06\\xdc\\xbe\\x3d\\x3c\\xc5\\x10\\x87\\x27\\xa1\\x2e\\x91\\xc8\\x41\\x23\\x02\\xd8\\xe6\\xb0\\xdd\\x36\\xf3\\x5e\\x99\\xd5\\x9f\\xe7\\x6b\\xc7\\x6d\\x73\\xc8\\x5c\\x00\\x59\\x8f\\x86\\xe6\\x70\\x17\\x96\\x46\\x41\\xde\\x93\\x09\\xd8\\xcd\\x2e\\xea\\x41\\x9e\\x9d\\x0a\\x9e\\x5f\\x71\\x49\\x8c\\xfc\\x40\\xd1\\x18\\x07\\x65\\x34\\x25\\xbb\\x5f\\xb1\\x4c\\x56\\x06\\xf6\\x8e\\x3a\\x8a\\xe1\\xb8\\x42\\x14\\x3d\\x76\\x9f\\x23\\x6d\\x52\\xd0\\x60\\x3b\\x3e\\xc2\\x21\\x73\\x75\\xf5\\xaa\\xed\\x50\\x86\\xc6\\x09\\x82\\x7f\\xcf\\x6b\\x43\\x2f\\xeb\\xfb\\xa0\\x52\\xe3\\xe1\\x48\\xd0\\x86\\xf7\\xdb\\x11\\x73\\x15\\xc7\\xfe\\x80\\x54\\x3a\\x23\\x6b\\x7b\\x22\\xa6\\xe8\\xae\\x6a\\x91\\x3c\\xce\\xe9\\x8f\\x14\\x89\\x94\\xd1\\x61\\x5a\\xbe\\xf8\\xe0\\x1f\\xc1\\xae\\x43\\x3d\\xbc\\x53\\xcd\\xa8\\x7a\\x21\\x32\\xcf\\x7e\\xdd\\x7f\\x03\\x87\\x69\\x5c\\xb4\\xe4\\x96\\x08\\x8a\\x04\\xb9\\xc8\\x23\\x7c\\x23\\x55\\x70\\x5e\\x8d\\x34\\xb8\\x20\\x1c\\x18\\xde\\xf5\\xaa\\x67\\xf1\\x59\\x3d\\xb0\\x87\\x0d\\x3a\\x94\\x7f\\xa1\\x88\\xbd\\x51\\x81\\xe7\\x5c\\xaf\\x54\\x9d\\x53\\x10\\x75\\x3a\\x04\\x24\\x65\\x96\\xe7\\x3b\\x3a\\xad\\xb5\\xe9\\xad\\x42\\x9e\\x8c\\x32\\xab\\xd9\\x0f\\x93\\xce\\x4d\\xb7\\x00\\x20\\x50\\x83\\xb5\\xd7\\xb0\\x88\\x61\\x0f\\x87\\x11\\x75\\x97\\x6f\\x7c\\xa4\\x83\\x7e\\x65\\x0e\\xd8\\xef\\x57\\x4d\\xc5\\x82\\x34\\xb9\\x9b\\x9c\\x10\\xf6\\xa8\\x29\\x69\\xd7\\x7e\\xc0\\xad\\x20\\x58\\x3a\\xda\\x56\\xb5\\x57\\xa8\\x40\\xed\\x84\\x14\\x6a\\x5d\\x50\\xf7\\x7d\\xc4\\xd2\\xc5\\x05\\xe6\\x95\\x2d\\x2c\\xe6\\xa9\\xca\\x1c\\x8f\\x9d\\x35\\x1d\\xaf\\xf3\\x67\\x6a\\x8a\\x68\\xed\\xf7\\xef\\xca\\xd7\\xde\\xb4\\x52\\x51\\x66\\xf4\\xfb\\xda\\x43\\xb6\\x0c\\x0f\\x4d\\xb5\\x4f\\xb2\\x47\\x69\\xdc\\x29\\x9a\\xda\\x76\\x36\\x11\\x8d\\x89\\x50\\xbd\\x0c\\x72\\x75\\x91\\x46\\xcd\\x93\\x78\\x87\\x78\\x2a\\xb4\\xc3\\x31\\x91\\xd0\\xc7\\x22\\x63\\x22\\x1f\\x16\\x48\\x17\\x42\\x7a\\x9e\\xc0\\xa1\\x2c\\x39\\xa5\\x1b\\xe3\\x85\\x23\\x3a\\xf2\\x3a\\x6d\\x8c\\x70\\x67\\x89\\x81\\xef\\x1e\\xe6\\xc1\\x51\\xc5\\xd7\\x05\\xec\\xa9\\x79\\x72\\x24\\xb8\\xef\\xf6\\xc7\\x72\\x59\\x2c\\x28\\x52\\x9c\\xb5\\xdb\\x88\\x68\\x8c\\xc9\\x80\\x3d\\x61\\x73\\xe3\\x43\\xcf\\x8b\\x2f\\xb1\\xd9\\x53\\xe6\\x98\\x9e\\x06\\x23\\x06\\x97\\x32\\x7b\\x38\\x7f\\xa5\\xcd\\xc2\\x42\\x60\\xbb\\x01\\x97\\x89\\x79\\x0e\\x62\\xb4\\x1a\\x77\\x96\\x5e\\xfb\\xb3\\x45\\x3b\\xc0\\xd7\\x54\\x8c\\x77\\x58\\xbb\\x5c\\x4e\\x0d\\xb3\\x2b\\xcd\\x8d\\x7e\\x02\\xb7\\x2b\\x2e\\xc2\\xb0\\xe1\\xac\\x74\\x44\\x36\\x56\\xe2\\x76\\xd7\\xf6\\x89\\x28\\x5f\\x36\\x63\\xee\\xd1\\xd4\\x7d\\x9d\\xeb\\x1e\\x11\\x77\\xf5\\x79\\x76\\x75\\x52\\x66\\xcd\\x20\\x21\\x27\\xf2\\xa2\\x4d\\xba\\x77\\x4c\\x4a\\x53\\x0b\\x4a\\xb4\\x9a\\x40\\x87\\x57\\xb6\\xd1\\xb6\\xe4\\xb9\\x53\\x4e\\x0a\\x4d\\x3f\\xa0\\x14\\x82\\x6e\\xf4\\xde\\x01\\xf8\\x86\\x55\\x4c\\x96\\x06\\xfb\\x22\\xa4\\x19\\xd8\\xa0\\xd6\\xe5\\x99\\x4e\\x53\\x14\\x98\\xe9\\xd3\\xbd\\xe7\\x8a\\x12\\xba\\x5b\\xdb\\xc8\\xad\\xb1\\xf4\\x0a\\xa8\\xb9\\xc9\\x07\\x4f\\x8e\\x14\\x05\\x5b\\x03\\x23\\xb2\\x9b\\xca\\x69\\x5b\\x00\\x86\\xf0\\x36\\xa2\\xe8\\xd1\\x97\\x70\\xbb\\x55\\xc3\\x8d\\xdc\\x18\\xf2\\x05\\x12\\x33\\x3b\\x4c\\x72\\x3e\\xf2\\x68\\x3c\\x11\\x93\\xd2\\x71\\x67\\xab\\x21\\xa7\\xcc\\xe9\\x14\\xc8\\x74\\x2f\\x69\\xf3\\x14\\x5c\\x57\\x31\\x17\\xb0\\xce\\xcc\\x5c\\xab\\xf3\\xcf\\x08\\x5a\\xb2\\x70\\x15\\x3d\\xc0\\x64\\x78\\x17\\x41\\x4e\\x0a\\x4c\\xb6\\x85\\xc5\\x6c\\x6a\\x73\\xb8\\x82\\xc2\\xc9\\x73\\x08\\x43\\xa4\\xa0\\x6d\\x26\\x97\\x27\\x68\\x43\\x22\\x96\\x5e\\xca\\x26\\x7d\\x98\\x9b\\x22\\x9c\\x9c\\xa0\\x2f\\x6d\\x57\\xa4\\x7c\\x8a\\x9b\\x2f\\x00\\xe6\\x0f\\x2a\\x50\\xb4\\x93\\xc4\\x28\\x85\\xc3\\xe7\\x46\\x3d\\x24\\x86\\x33\\x7a\\x80\\x63\\xda\\x84\\x83\\x22\\x09\\x25\\x23\\x18\\xe6\\x99\\xa2\\xc4\\xd0\\xa6\\x47\\xad\\x80\\xe1\\x73\\x26\\xdf\\x37\\x54\\xc1\\x1f\\x1e\\x32\\x63\\x43\\x2a\\xed\\x41\\x96\\xa8\\x34\\x2e\\xde\\xfb\\xb6\\xec\\x8e\\x15\\xc1\\xda\\x11\\x22\\x18\\xe8\\x7c\\x0a\\x3f\\x6e\\x98\\x02\\x72\\x7d\\xe4\\x4a\\xe8\\x28\\x99\\xb7\\xe0\\xd4\\x0f\\x09\\x8c\\x79\\x29\\x8f\\x37\\xb4\\xc5\\xcd\\x3e\\x35\\x91\\x77\\x6e\\x76\\x9b\\x45\\x5f\\x97\\x8c\\xd8\\xd6\\x46\\x89\\x3d\\xf9\\x6d\\xc9\\x2b\\x43\\x06\\xb1\\x4b\\xb1\\xda\\x37\\x50\\xa6\\x7a\\x50\\x3e\\xab\\x38\\xd0\\x1b\\x4b\\x51\\x42\\x42\\x48\\x6e\\x48\\x68\\x68\\x74\\x6f\\x4c\\xa8\\xe3\\xec\\x19\\xcd\\x30\\x05\\x2c\\x49\\x44\\x01\\x3e\\x3f\\x8b\\xef\\x08\\x94\\xd0\\x68\\x8a\\xcb\\x5f\\x34\\xf1\\x4b\\x1d\\x40\\xc6\\x09\\x89\\x69\\xbc\\x9a\\x1b\\x28\\x26\\x83\\xe7\\xd8\\x02\\xb7\\x41\\x0b\\x5d\\xd2\\xa4\\x40\\xaa\\xfa\\x90\\x9e\\x28\\x17\\xa8\\x38\\x8f\\xc2\\x8c\\xcc\\xf5\\x11\\x80\\x39\\xc1\\x3e\\xed\\xb0\\xe1\\x5a\\x10\\x23\\xdc\\x88\\xa3\\x5a\\x02\\xf1\\x85\\x6f\\x81\\xd6\\xd5\\x54\\x40\\x74\\x42\\xa7\\x69\\x7a\\xe1\\x56\\xf2\\xc5\\x67\\x20\\x4f\\xe7\\x4d\\xa6\\xb3\\x5d\\xfd\\xa8\\x67\\x8b\\x38\\xa6\\x40\\xea\\x0d\\x05\\x9c\\x4d\\x70\\xd1\\x92\\xc3\\xdd\\xc5\\x13\\x1c\\xb7\\x46\\x23\\x1d\\x97\\xec\\x88\\x12\\xb1\\x74\\x03\\xdb\\x01\\xb5\\x09\\xf5\\x83\\xf0\\xc2\\xad\\x25\\x37\\x76\\xce\\xef\\xf7\\x50\\x26\\xf5\\x2c\\xa7\\xed\\xe6\\xc9\\x04\\x33\\x06\\xf8\\xa9\\x44\\xec\\x90\\xe9\\x54\\xd7\\xdd\\x2a\\x00\\xa2\\x96\\x4e\\xb3\\x74\\xc3\\x07\\x49\\x05\\x62\\xb8\\x97\\x11\\x8e\\x63\\xfb\\x04\\x07\\xb3\\x03\\xbb\\x68\\x5a\\xc8\\xd5\\x9a\\x7c\\x03\\xb9\\xed\\x99\\xac\\xac\\xae\\xc2\\x79\\x0a\\x00\\x42\\xc9\\xce\\x50\\x53\\xd5\\x0a\\x0a\\x74\\x70\\x90\\x93\\xb7\\x97\\x02\\xce\\xc4\\x39\\xb9\\x9e\\x7a\\x6d\\xc1\\x99\\x41\\x03\\x7a\\x11\\x18\\xf6\\x09\\x6a\\x56\\xee\\xde\\xc2\\x51\\x4e\\x87\\x3c\\x6c\\xb8\\xb2\\x39\\x2d\\x2d\\x30\\xdf\\x0e\\x01\\x46\\x2b\\x67\\xcc\\xfd\\x3d\\x45\\xde\\xb8\\xa8\\xfd\\x57\\x65\\x19\\x4f\\xa6\\x2b\\x1e\\xc8\\x7b\\xcb\\x2b\\xd0\\xe5\\x31\\x23\\xa8\\xe7\\xcb\\x02\\x59\\xce\\xe3\\x10\\x07\\xd8\\x67\\x04\\xec\\xb3\\xa7\\x33\\xaf\\xf2\\x4d\\x08\\x97\\x10\\x35\\x72\\x70\\x5e\\x16\\xae\\x0d\\xa2\\x3e\\x97\\x3d\\xcd\\x1b\\x55\\x7a\\x0f\\x5b\\xc2\\x18\\x53\\x2b\\x7a\\x7c\\x40\\x89\\xe8\\x1e\\x6d\\x0c\\x66\\xdc\\xe6\\x7a\\x3a\\xe9\\x2e\\x56\\x3f\\x0f\\xc1\\x4e\\xb6\\xc5\\x37\\xcc\\x54\\xff\\x8a\\x9b\\x9a\\xe7\\x04\\xcd\\xb7\\xca\\x8c\\x37\\xe5\\x27\\x34\\xc1\\x68\\x41\\x02\\x8c\\xb5\\x01\\x28\\x6f\\x12\\x55\\x0d\\x31\\x7c\\x9d\\xae\\xe5\\xe8\\xcb\\xbb\\x5c\\x45\\x22\\x6f\\xcc\\x0a\\xd9\\x4c\\x0d\\x54\\x1e\\x76\\x96\\xca\\x35\\xe8\\x73\\x5f\\xb5\\x68\\x48\\x17\\x0e\\x2d\\x07\\x5d\\x17\\x48\\x21\\x1d\\xd0\\x5b\\xc7\\xfd\\xa0\\xa7\\x7b\\x44\\x87\\x8b\\x3c\\x63\\x78\\x1c\\xc5\\xb4\\x4d\\x17\\x87\\xdc\\xfa\\xaa\\xc9\\x40\\xcd\\xc9\\xd8\\xb1\\x4b\\xa3\\x91\\xb2\\x3f\\x5e\\xa4\\x19\\x88\\x8f\\x85\\x50\\xcc\\xce\\x3f\\x1d\\x35\\x7e\\x7e\\xaa\\x9f\\x63\\x15\\x10\\x1e\\x14\\x30\\x10\\xad\\x8a\\xb4\\x49\\x05\\x61\\x83\\xfa\\x77\\x2d\\xf4\\xf3\\x55\\xed\\x6a\\x75\\xef\\xb7\\xa0\\x90\\xc1\\x3c\\xac\\x38\\xe1\\x67\\x4f\\x4e\\x9d\\xa7\\xf4\\xb4\\xed\\x1d\\x37\\xb3\\x45\\xee\\xaf\\x26\\x70\\x02\\x3e\\x63\\x8f\\xe5\\x23\\xa1\\x09\\x83\\xc7\\x76\\x82\\x4e\\xb0\\xeb\\x27\\xd3\\x24\\xdb\\x29\\x91\\x51\\x44\\x67\\xca\\xdf\\xb6\\x2c\\x70\\x12\\xf6\\x69\\x30\\x19\\x77\\xb2\\xac\\x02\\xa4\\x13\\x55\\xa1\\x96\\xb8\\x52\\x18\\x68\\xec\\x27\\x08\\x29\\x06\\xd9\\x46\\x37\\x39\\x08\\xed\\x0d\\x0a\\xde\\x10\\x91\\x5c\\x01\\x18\\x0f\\x19\\xd9\\x7c\\xcb\\xb9\\x8b\\x91\\xcf\\xd4\\xd5\\x33\\xef\\xc7\\x04\\x8b\\xab\\xa8\\x79\\x1d\\x93\\x13\\xc1\\x2c\\x09\\x11\\xd2\\x5d\\x6b\\x15\\xd1\\x90\\xa0\\x79\\xb8\\xeb\\xfa\\xd9\\xa9\\x3b\\x87\\x9b\\xaa\\x2b\\x7a\\xf0\\x05\\xde\\x02\\x47\\x0a\\x4f\\x03\\x6c\\x64\\x1e\\xc4\\xfe\\x34\\x9d\\x72\\x57\\x87\\x93\\xdb\\xd5\\xac\\x28\\xef\\x75\\x36\\x26\\x5f\\xb6\\xc8\\x98\\x9f\\x9d\\x54\\x67\\xcd\\xca\\xee\\xba\\x06\\x5c\\x62\\x60\\x41\\x03\\x5e\\x2e\\x48\\x36\\x89\\x80\\x4c\\x8a\\xa8\\x4e\\x63\\x70\\x59\\x88\\x5e\\xa2\\xcb\\xc4\\x22\\x05\\xca\\x42\\x7e\\xa0\\x1f\\x5f\\x05\\xb5\\x2e\\x58\\x2a\\x8f\\x00\\x67\\x0b\\x12\\x1e\\x73\\x47\\x85\\xb1\\x5e\\x5f\\x43\\xb5\\x27\\xc5\\x64\\x02\\x0b\\x88\\xd0\\xc3\\x26\\xab\\xa1\\xb3\\x18\\xec\\x74\\xc0\\x40\\x1e\\x59\\x62\\xb2\\xb3\\x28\\x94\\xc5\\x2c\\x50\\x27\\x38\\xde\\x1d\\x4f\\x89\\xd7\\x0a\\x18\\x6e\\xd3\\x8a\\xc3\\xe0\\x92\\xb0\\x95\\xf1\\x9c\\x47\\x98\\x25\\x13\\x9d\\xc3\\x8d\\xf9\\x73\\xa9\\x2e\\xb6\\x27\\x3c\\x96\\x11\\x6e\\x9c\\xbb\\xaa\\xaa\\x64\\x91\\x59\\xf4\\x05\\x36\\x17\\xb8\\x8e\\xf2\\x22\\x0f\\x10\\xe9\\x0f\\x77\\x6d\\x30\\x0f\\x26\\x0c\\xb0\\xbf\\xc7\\x18\\x50\\x32\\x32\\xb6\\x91\\x1a\\xde\\x71\\x45\\x9b\\x50\\x14\\xb3\\xbe\\x26\\xa8\\xdd\\x43\\xa8\\x47\\x9e\\xf1\\xa4\\xd8\\x67\\x47\\xc8\\x07\\xa9\\x3c\\x45\\x49\\xec\\xd1\\x14\\x31\\x5c\\xd4\\x8b\\x44\\xf4\\xd7\\xb7\\x8f\\xed\\x77\\x5b\\xa6\\x40\\xa4\\x1f\\xf6\\xda\\xd3\\xdc\\xaa\\xc2\\x76\\xcb\\x28\\x8f\\xca\\x4c\\xd7\\x87\\xd8\\x35\\xf2\\x31\\xa9\\x8c\\x2e\\x89\\x92\\xd4\\x7a\\x52\\x1a\\x9c\\x09\\xd3\\x10\\x9d\\x59\\x4f\\x6f\\xf7\\x10\\x0a\\xf0\\xcd\\x3d\\x4a\\xbd\\xc9\\x76\\x48\\x54\\x85\\x93\\x13\\x05\\x7a\\x23\\x9d\\x18\\xcd\\x99\\x6d\\x0e\\x3b\\x5a\\xb6\\x75\\x29\\x38\\x5c\\x9a\\x70\\xc4\\x51\\x2f\\x59\\x36\\x49\\xce\\x9a\\x16\\xe1\\xb1\\xe7\\x54\\xb6\\x32\\x9c\\x88\\x59\\xfa\\x4c\\x58\\xfb\\xc5\\x65\\x0b\\x8b\\xef\\x26\\xae\\xbe\\x6b\\x3d\\x50\\x5a\\x7a\\x3f\\x12\\xb2\\x4b\\x60\\xc6\\x73\\x4f\\x4a\\x93\\x32\\xe6\\x09\\x98\\xde\\x9d\\xaa\\x57\\x69\\x72\\x90\\xb7\\xf8\\x64\\x5e\\x90\\x9b\\x06\\x7b\\x5a\\x4d\\x72\\x66\\x13\\xa2\\xac\\x8e\\x80\\x73\\xe5\\xea\\x5a\\xab\\xc8\\x0d\\x93\\x0b\\x7d\\x54\\x27\\xa5\\x34\\x83\\x82\\x76\\x95\\x8a\\x6e\\xa6\\x90\\x58\\xeb\\x8f\\x26\\xd2\\xc8\\xc3\\xd2\\x78\\x45\\xa7\\xa2\\x1e\\x43\\x66\\x67\\x48\\x33\\x24\\x58\\xee\\x23\\xa7\\x06\\x0d\\xa0\\x17\\xc9\\x2f\\x33\\xf4\\xec\\x51\\x1f\\x9c\\x3f\\xa9\\xc9\\x92\\xc3\\x19\\xb3\\xdd\\xcb\\x05\\xb8\\x2d\\x7d\\x82\\x0a\\xd2\\x31\\xa1\\x2e\\xa5\\x73\\x34\\x7d\\xf3\\x74\\xdf\\x52\\xa1\\xc7\\x57\\xbb\\x57\\x39\\xb8\\xef\\x61\\x5d\\x82\\x29\\xaa\\xf8\\xc6\\x6b\\xa5\\xa5\\xab\\x84\\xfb\\x01\\xed\\xac\\x55\\x9b\\x7b\\x52\\x4e\\x4b\\x46\\x79\\x19\\x03\\x4c\\x8b\\x54\\x2e\\xa0\\x4d\\x74\\xe6\\x30\\x03\\x15\\x1c\\xbe\\x7a\\xf5\\xf2\\xfe\\x91\\x3f\\x99\\x5b\\x27\\xe1\\x7c\\x93\\x37\\x09\\xac\\x0f\\xd2\\x37\\x5e\\x26\\xb7\\x93\\xea\\x67\\x7d\\xf0\\x42\\xde\\x3f\\xdc\\x9e\\x5e\\xdc\\xf8\\xb6\\xfc\\x72\\xde\\xbd\\xc3\\x13\\xc5\\x63\\x43\\x5b\\xdc\\xf6\\xfb\\xb7\\x5e\\x79\\xee\\xa2\\x13\\x9b\\x72\\x93\\xc6\\x2e\\xf7\\x78\\xc7\\xc7\\x39\\x19\\x31\\xf2\\x30\\x85\\xd9\\x1c\\x40\\xb0\\xd9\\x69\\xa5\\xa3\\xf6\\xe0\\x66\\x5b\\x2f\\xe6\\x0e\\xab\\xca\\xac\\xcb\\xbb\\x30\\x60\\xa9\\x93\\x36\\x61\\x22\\x17\\xc5\\xa8\\x56\\x89\\x4c\\xde\\x89\\xa0\\x86\\xb0\\xd7\\x82\\x54\\x4d\\x9b\\xa8\\x93\\x85\\x73\\x45\\xe1\\x13\\xc4\\x59\\xc5\\x10\\x51\\x69\\x15\\xbf\\x0c\\x12\\xfd\\xd0\\x6f\\x14\\x39\\x62\\x1d\\x3f\\x1d\\xaa\\xc6\\x4e\\xb7\\x09\\x71\\x55\\x79\\x1e\\x2a\\x4d\\x3b\\x48\\xbe\\x8d\\xc3\\x6a\\xc3\\xbd\\xc4\\x56\\x0d\\xa9\\x11\\x81\\xf5\\x87\\x3a\\xe5\\x17\\xdc\\xf5\\xa2\\x9d\\x25\\x3b\\x51\\xa7\\x5c\\x57\\xdd\\x1c\\x72\\x7e\\x42\\xe6\\x1d\\x48\\xb7\\x71\\x02\\xc7\\xa5\\x2c\\x4a\\xba\\xb1\\x2a\\xf6\\x9c\\x26\\xe7\\x8e\\xbe\\x42\\x56\\x8a\\xc4\\xdb\\x98\\x06\\x01\\x2a\\xc0\\x91\\x16\\x51\\x02\\xfd\\x07\\x2e\\x21\\x82\\x3f\\x80\\xc8\\x12\\x7e\\x42\\x39\\xdb\\x0f\\xd0\\x5d\\x3f\\xf2\\x2e\\x99\\xc9\\xbe\\xa0\\xa5\\xa9\\xee\\xa5\\x8d\\x45\\x84\\xd3\\xd0\\x99\\x0b\\x19\\x58\\x5c\\xba\\xba\\x0d\\xe8\\x71\\x26\\xcb\\x7f\\x60\\x03\\xbb\\x82\\x75\\x29\\x94\\xa3\\x4f\\x3c\\x3c\\x92\\x7c\\x6e\\x73\\xbf\\xc1\\x59\\xde\\x96\\xd2\\x48\\x04\\x0a\\x17\\x14\\x04\\xa5\\x2e\\x8e\\x05\\x89\\x59\\x38\\xfd\\xac\\x66\\x04\\x84\\xea\\xf1\\x07\\x1c\\x5c\\x54\\xc1\\x7f\\xbc\\xd9\\xd2\\x1f\\x0e\\xe4\\x4b\\x08\\x8a\\xab\\x76\\x22\\x3b\\x39\\xec\\x86\\x9a\\xff\\x10\\xf9\\xbb\\x7b\\xd9\\x1a\\x7d\\x23\\x8e\\x73\\x64\\x58\\xfd\\x5c\\x59\\xf8\\x8c\\x67\\x54\\x8e\\x56\\x4b\\x21\\xfb\\xd6\\x07\\xa3\\xd5\\xf1\\xa8\\x6f\\xb2\\x82\\x12\\x2b\\x65\\xef\\x3b\\x0d\\x91\\x0d\\x44\\x47\\xa8\\x2e\\xd0\\xe1\\x7d\\xbe\\xb8\\xf8\\xfa\\xd7\\x0e\\x1f\\x0e\\xef\\xdf\\xbd\\xb9\\xbb\\xbb\\x3a\\xd2\\x02\\x0b\\xe8\\xf1\\xc6\\xb6\\x46\\x94\\x35\\xf1\\x93\\xb2\\x8c\\xfe\\x92\\x09\\xb7\\x25\\x55\\xff\\x31\\x38\\xf7\\x96\\xb7\\x6c\\x95\\x28\\x57\\x91\\x1a\\xa4\\xc2\\xaf\\xbe\\x08\\xf6\\x68\\xdc\\x72\\xc6\\x5b\\x75\\xd8\\xc9\\x74\\xc5\\xac\\xbc\\x0e\\x8b\\x8b\\x3a\\x58\\x8e\\x5f\\xf5\\xda\\xbf\\x52\\x41\\xfa\\x17\\x87\\x6f\\x7e\\xe3\\xf0\\xd1\\xa1\\x3a\\xe6\\x2e\\x50\\xf1\\xdc\\xdd\\x71\\x0b\\x38\\x5e\\xa0\\x4c\\xd4\\x4f\\x40\\x33\\xd3\\xb5\\xb5\\xb0\\xf9\\x44\\xc2\\x89\\x58\\x88\\x4d\\x2e\\x83\\x3c\\x80\\x34\\x78\\xbb\\x83\\x24\\x7e\\xe1\\x47\\x19\\x6f\\x15\\x2b\\x23\\x95\\x37\\xa3\\xe9\\x34\\xbb\\x81\\x4a\\xd5\\xeb\\x4f\\xad\\x41\\x75\\xd8\\x69\\x35\\x58\\x9f\\x10\\x5e\\x7d\\x07\\xc1\\x90\\x14\\x77\\x7b\\x35\\x12\\x0e\\x3a\\xd9\\x11\\x0a\\x4c\\xb2\\xb6\\x00\\x82\\xd2\\x6b\\x14\\x09\\x38\\x92\\x49\\x9c\\xe3\\x39\\xe9\\xf8\\xb2\\x13\\x88\\xef\\xe7\\x61\\xbb\\x6f\\x7b\\x80\\x1b\\x92\\x83\\xeb\\x9d\\x8f\\x45\\x90\\xcf\\x0b\\x7d\\x13\\xe0\\x72\\x49\\xb8\\x6f\\xdc\\x53\\x73\\xd2\\x65\\x5f\\xc3\\x45\\x49\\xcd\\xd3\\x86\\x1f\\x0d\\x22\\x3b\\x6d\\xa2\\xc7\\xd5\\x9c\\x6b\\x4b\\xe1\\xcc\\xe5\\x33\\x9e\\x9d\\x42\\x4b\\xb7\\xa3\\x0c\\x4e\\x06\\xe0\\xbf\\xae\\xb2\\x13\\x83\\xd1\\x3e\\xe9\\x5c\\x85\\x53\\x01\\x0e\\x79\\x1b\\x19\\xa6\\xe6\\x36\\x6d\\xa2\\xf1\\x86\\xeb\\xa1\\xb5\\x00\\x03\\x35\\x45\\x8c\\xef\\xba\\x6c\\x8e\\x8b\\x84\\xa9\\x9c\\x64\\x6e\\xcb\\xac\\x70\\x83\\xbf\\x60\\xc3\\xf5\\xa9\\xe4\\xdc\\x3c\\x44\\xfb\\x25\\xd0\\xb5\\x1f\\x1e\\x93\\x5c\\xd9\\xbf\\x4d\\xb5\\x57\\xe0\\xa2\\x0f\\x2b\\x7a\\xe1\\xb3\\x3a\\x8a\\x48\\x45\\x8a\\x62\\x58\\x67\\x5e\\x3e\\x89\\x72\\xb4\\x32\\x2a\\x57\\x86\\xbc\\xab\\xee\\xed\\xc3\\x7f\\x11\\xf1\\x09\\x19\\x9e\\xfa\\x91\\xf4\\x75\\xea\\xec\\x4a\\xa3\\xfe\\x99\\x6c\\xce\\xd8\\x5e\\x5d\\x39\\xd7\\xf3\\x51\\x97\\x1a\\xd2\\x9e\\x75\\x1d\\x54\\xd5\\x34\\x2a\\xac\\x58\\x5d\\x9d\\x6e\\x95\\xf2\\x7e\\xff\\x21\\x15\\x1a\\xf8\\xf7\\xe2\\xdc\\x85\\xed\\xad\\x0b\\x19\\x76\\x1d\\x7c\\x4c\\x22\\x03\\x08\\xee\\xd9\\xd3\\xd4\\x54\\x54\\x94\\xff\\x07\\x63\\x1e\\xc6\\x66\\xa7\\xa6\\x62\\x20\\xf9\\x6c\\x3b\\x1c\\xd8\\xbf\\x7b\\xd7\\xb6\\x2d\\x4d\\x23\\x3b\\x0c\\x0d\\xf4\\x74\\x77\\xb4\\x15\\x35\\xee\\xd0\\x5f\\xdd\\xd9\\xd1\\xd2\\x94\\x5f\\xb7\\x43\\x55\\xa4\\x2c\\x54\\x52\\x04\\xf9\\x76\\x70\\xbb\\x6c\\x56\\xd4\\xc0\\x06\\x6d\\x8d\\x4a\\x66\\x98\\x76\\x57\\x2a\\x2d\\xbb\\x33\\xaf\\x12\\x59\\x1a\\xfa\\x60\\x8f\\x91\\x5a\\xef\\x9a\\xcc\\x53\\x36\\x30\\xdd\\xbd\\x8f\\x5c\\xa7\\x0d\\xe1\\x95\\x3f\\x3d\\x46\\xab\\xb4\\x3b\\x4f\\x61\\xa0\\xc9\\x94\\xc7\\x2f\\xa7\\x1c\\x8b\\x5e\\x7b\\x7a\\x52\\x5a\\x47\\x82\\xf6\\xc9\\xd1\\xf3\\x05\\x8d\\xb2\\xee\\xdc\\xe1\\x41\\x22\\x1b\\x80\\x2d\\xbb\\xad\\xc8\\x70\\xe3\\x52\\xde\\xb6\\xa9\\x9d\\xd6\\x15\\x2a\\xc8\\xf3\\xb4\\xab\\x16\\x04\\xa0\\x57\\x30\\xbe\\x7d\\x45\\xb1\\xb6\\xef\\x7b\\x77\\x54\\x4f\\xf4\\x4f\\x9b\\xa6\\x8a\\xeb\\xe6\\xfd\\x40\\x3d\\x7c\\x85\\x08\\x92\\x70\\x4b\\xae\\xa1\\x2a\\xb0\\x3d\\xb8\\x3e\\x54\\x35\\xdf\\xbe\\x2a\\x20\\x56\\x4b\\x56\\x16\\x84\\x98\\x6c\\x29\\x4f\\x6b\\x3a\\x91\\xdd\\x78\\x5c\\x1a\\x53\\xf5\\xad\\x33\\x0d\\xe0\\x41\\x16\\x69\\x41\\xa6\\x9b\\xa3\\xf2\\x78\\x41\\x84\\x93\\x29\\xa1\\x9b\\xf9\\x87\\xd4\\xcd\\x2d\\xd9\\x1c\\x2a\\x4a\\xf5\\x1f\\x68\\x43\\xb8\\x56\\xfc\\xa8\\x98\\x14\\xcd\\xec\\x61\\xc9\\xdf\\xcf\\x6b\\x81\\x89\\xb5\\x27\\x19\\xa9\\xc4\\x2e\\x59\\x14\\x21\\x7d\\x06\\xa6\\x7a\\xa6\\x2a\\x4d\\xc0\\x35\\xdb\\xe3\\x30\\x7d\\x66\\x88\\x09\\x6f\\x7a\\x15\\xb2\\x9c\\x81\\x90\\x15\\x43\\xfd\\xfb\\x25\\xda\\xba\\x00\\x34\\x43\\x59\\x23\\x60\\xf5\\xeb\\x32\\x37\\xba\\xa8\\xa8\\x0b\\x73\\xc2\\x6a\\x94\\x23\\x31\\x83\\xe3\\x58\\x6c\\xb4\\x1c\\x2e\\x75\\x44\\x7d\\xce\\x84\\x15\\xdf\\x11\\x41\\x2b\\x35\\x29\\x8a\\x24\\x16\\x1b\\xa6\\x8e\\xc4\\x0b\\xe3\\x85\\xdd\\xc8\\xa4\\xbe\\xa0\\xaf\\xad\\xd2\\x1c\\x12\\x37\\x8d\\x6c\\xa1\\x41\\x38\\x74\\xc7\\x63\\x7a\\x4c\\x5b\\x1f\\x55\\xe0\\x45\\x6a\\xaa\\x7f\\xfe\\x46\\x75\\x33\\xc2\\x19\\xd3\\xd0\\x4f\\x2c\\xed\\xf0\\xc5\\x9e\\x9e\\xc3\\x4c\\xad\\x45\\xda\\xca\\x30\\xb4\\x2c\\x5f\\x96\\x95\\xc5\\x79\\x0d\\xb8\\x5a\\x65\\x33\\x4b\\x64\\xcf\\xf3\\xdf\\xcf\\x9b\\x13\\xf4\\x38\\x6d\\xc5\\xdb\\xc3\\x93\\x9f\\x32\\xf6\\xb2\\x69\\x86\\x6c\\xfe\\x53\\x8c\\xf4\\x63\\xd4\\x6a\\x68\\x86\\x03\\xed\\xea\\xf6\\xae\\x6e\\xff\\xa2\\x0f\\x67\\x25\\xb2\\x26\\x2d\\x49\\x1f\\x89\\xc5\\x30\\xb9\\x27\\x6b\\xe5\\x13\\x26\\x4f\\x9b\\x8d\\x45\\x4d\\xbc\\x5d\\xac\\x36\\x30\\xcf\\x09\\x66\\x5a\\xc8\\x26\\x63\\x07\\x0e\\x1e\\xce\\x78\\x3e\\x68\\x19\\x7e\\x22\\x30\\x84\\x7d\\xe7\\xb4\\x42\\x02\\x73\\xdf\\x44\\xe0\\x9c\\x5a\\x83\\xb7\\x3b\\x48\\xcb\\x17\\xde\\x28\\xf5\\x44\\x0b\\x94\\x19\\xbf\\xce\\x9f\\x8d\\x4d\\x81\\x7c\\xa5\\xe0\\x4f\\xae\\x1c\\x49\\x89\\x89\\x4f\\xea\\xb3\\x9d\\xa2\\x58\\x6e\\x3c\\xcf\\xc2\\x3b\\xf2\\xe5\\xc2\\x09\\x07\\x92\\x29\\x14\\x12\\x88\\xb4\\xac\\xd7\\x18\\x27\\xe6\\x7e\\x82\\x1d\\xd3\\x42\\x30\\xa8\\x86\\x2e\\xe9\\x90\\x4b\\xf1\\x13\\xf9\\xda\\xac\\x04\\x05\\xb7\\x70\\xbb\\x0d\\xba\\x44\\xed\\x09\\x98\\x87\\x75\\xc2\\xc4\\xf8\\x56\\x01\\x19\\x93\\x00\\x46\\x29\\xdc\\x66\\xee\\xed\\x2a\\xf2\\x58\\x9b\\xad\\x8e\\xdd\\x31\\x8d\\x3d\\x17\\x43\\x73\\xc1\\x7d\\x79\\x93\\xaf\\xbf\\xb9\\x6f\\xce\\x49\\x0c\\x5a\\x4a\\x8c\\x23\\x9e\\x82\\x2b\\x4f\\xe6\\x9b\\x27\\xeb\\x3c\\x8a\\x8e\\xe6\\xdb\\x31\\x6e\\xb7\\x73\\xd4\\x1e\\xba\\xc3\\x8f\\xf3\\x3d\\x82\\x26\\xeb\\x70\\xe7\\xff\\x41\\xc4\\x1a\\x22\\x41\\xa9\\x27\\xf0\\xf0\\x53\\xcd\\x58\\x7e\\xc6\\x3a\\xf5\\xe5\\x14\\xa8\\xef\\x71\\x24\\x32\\x7c\\x41\\x2c\\x0c\\x7e\\xa8\\xd7\\x19\\x68\\x18\\x67\\xd9\\x55\\x13\\x8b\\xd5\\x9a\\xb2\\x81\\xf1\\xd3\\x9d\\x4b\\xb9\\x5e\\xd2\\xcc\\x6a\\x40\\xc6\\x45\\x8a\\x8f\\x96\\x9e\\xf8\\xce\\xd7\\x15\\x6e\\xd7\\xaa\\xc1\\x6a\\x58\\xc6\\xa7\\x81\\x2d\\x48\\xe6\\x98\\x09\\x37\\xeb\\x99\\x2f\\x15\\xb9\\xbf\\x29\\x96\\x7c\\xe9\\x39\\xaf\\xd2\\x37\\xe4\\xbe\\xe7\\xba\\xd2\\x00\\xde\\x0a\\x0d\\x78\\x84\\x20\\x26\\x07\\x5e\\xcc\\x87\\xb0\\x4a\\x21\\x75\\x1b\\x37\\x9b\\x5d\\xe7\\xa4\\x93\\xec\\xfb\\x27\\xe1\\xa4\\xea\\x7f\\xb0\\xe9\\x74\\x24\\x8f\\x3c\\x54\\x99\\xeb\\x6a\\x71\\xe7\\x85\\x73\\x88\\x21\\xd7\\x69\\x40\\x51\\x1c\\xd1\\x30\\xf9\\x91\\x9b\\x54\\xf6\\x7f\\x54\\xf8\\x42\\xd1\\xa6\\x4c\\x72\\xfc\\xc2\\xab\\xfc\\x46\\x56\\x2e\\x2c\\x72\\x14\\xb5\\xcb\\x87\\xe9\\xb8\\x8b\\xe1\\x0d\\x60\\x6b\\xed\\xdb\\x2f\\x78\\xc2\\x46\\xf4\\x24\\xc0\\xbb\\x8f\\x32\\x10\\x61\\x0c\\xa5\\x9f\\x3d\\x4e\\x6d\\xac\\x85\\x9b\\x57\\x8e\\xc9\\xca\\x02\\x17\\xb5\\xf6\\xb2\\x9e\\x00\\x9b\\x06\\xe9\\xad\\x84\\x22\\xb7\\x4f\\xc4\\xba\\x2e\\x7d\\xcf\\x7e\\xc8\\x57\\xbe\\xc4\\x2d\\x79\\x20\\xaf\\x17\\x3a\\x3b\\x0c\\x4f\\x0e\\x55\\x4d\\xb7\\x71\\x19\\x5d\\xbb\\x50\\x48\\xb0\\x34\\xe8\\xe3\\x31\\x07\\x63\\x49\\x66\\x0d\\xdc\\xcc\\x28\\xd6\\x26\\x0d\\x32\\xe2\\xe3\\xad\\xc3\\xd8\\x0c\\x22\\x1f\\x51\\x91\\x8b\\x3b\\x60\\x08\\xd8\\xc0\\xcd\\x10\\x54\\x8d\\xf7\\xec\\x0c\\x57\\x19\\x0f\\xda\\xaa\\x75\\xd0\\xaa\\xb9\\x7c\\x85\\x07\\x19\\x70\\xcb\\xa0\\xa1\\x83\\x80\\x5a\\x65\\xf5\\xc3\\xcd\\x4a\\xe7\\xeb\\x4c\\x34\\xb4\\x8b\\x52\\x72\\xd7\\x57\\x1c\\xd7\\x06\\x9f\\xd7\\x3a\\x3d\\x51\\x6d\\x0e\\xa2\\x45\\x70\\xe1\\x10\\x79\\x31\\x37\\xa2\\x8a\\xab\\xb8\\xba\\x04\\x83\\xf7\\x45\\x16\\x1d\\xa4\\xfb\\x10\\x75\\x57\\x37\\x26\\xae\\x06\\x52\\xc2\\xc4\\xab\\x29\\xec\\xa3\\x04\\x59\\x6a\\x9c\\x98\\xef\\x61\\x43\\x00\\xe5\\xc6\\x5b\\x2a\\x6b\\xb0\\x30\\xc6\\x65\\xc1\\x46\\x09\\x39\\x0e\\x99\\x3f\\xb1\\xa8\\xae\\xde\\x63\\xcc\\x05\\xad\\x9c\\xa2\\xa3\\x10\\xf3\\xde\\x58\\x42\\xbc\\x99\\xd1\\x80\\xca\\x6b\\x9e\\x86\\xc4\\xc5\\xa4\\x4f\\x17\\x14\\x2d\\x1a\\x1c\\x87\\x72\\x13\\x44\\xff\\x21\\xec\\xd3\\x29\\xab\\x60\\x0a\\xae\\x95\\x16\\x37\\x09\\x8f\\xad\\x3f\\xec\\xe5\\xa8\\xa0\\x99\\x20\\xa9\\x34\\x14\\xa3\\x59\\x00\\x72\\xa3\\x95\\xf6\\x02\\xb5\\xa8\\x72\\x5b\\x55\\x00\\xc1\\x1f\\x5c\\xc8\\xb6\\xe5\\x41\\x38\\xdd\\xc3\\x68\\xe3\\x14\\x9a\\xe7\\x77\\x93\\x93\\x32\\x25\\x1b\\x10\\x60\\xf5\\x91\\x0b\\x40\\x82\\x0b\\x57\\x89\\x76\\x4a\\x0c\\xf0\\x47\\x13\\xf9\\xb6\\xc9\\xb3\\xa6\\xcb\\x89\\xeb\\x98\\x2c\\x77\\x3c\\x35\\x11\\xcf\\xd3\\x75\\x1c\\x96\\xc9\\x6d\\x28\\x3d\\x95\\xe2\\x99\\x16\\x2f\\x29\\x72\\x6b\\xa9\\x11\\xc6\\x43\\xcf\\x1d\\x0f\\x65\\x64\\xe5\\x69\\xaa\\xb8\\x5d\\x03\\x77\\xd7\\x2a\\x87\\x13\\x03\\xed\\xdb\\x38\\xd4\\xe2\\x54\\xdd\\x5a\\x44\\x01\\xb2\\x8d\\xae\\xbf\\x81\\x68\\x4a\\x45\\xda\\xda\\x60\\x37\\x02\\xb2\\x77\\x10\\x06\\xe9\\xb3\\x20\\xcd\\x9d\\x42\\x15\\xb7\\x20\\x6b\\xe8\\x1a\\x57\\x7d\\x6b\\xd1\\x3f\\x19\\x33\\x14\\x87\\x26\\x43\\x33\\xa9\\x0f\\x88\\xfc\\x47\\xe0\\x9f\\x1b\\xc5\\x12\\x20\\xf7\\x0d\\x1d\\x49\\x5f\\x7e\\x27\\x0b\\xa7\\x53\\x17\\x00\\x33\\xac\\xa5\\xff\\x9f\\x31\\xc3\\xd3\\x83\\x37\\x9f\\xbf\\xd7\\x82\\x1d\\xa8\\x87\\x63\\x9e\\xc6\\xdf\\xb2\\xad\\xd9\\xce\\x2c\\xe5\\x6c\\x47\\x6e\\xd6\\x46\\x2c\\x78\\x08\\x8b\\xf6\\xc1\\xb0\\xca\\x6f\\xc8\\xb4\\x47\\x63\\x89\\x47\\xe3\\xd8\\x54\\x74\\x03\\x8f\\x2c\\xc0\\xa3\\x8b\\xa0\\x9c\\xb4\\x6f\\x40\\x2d\\xf3\\x9e\\x5c\\x7d\\x4d\\x91\\x7f\\x29\\x1e\\x6e\\x6e\\xd5\\xcc\\x6f\\x75\\x2d\\xb1\\x26\\x5a\\x58\\x4d\\x23\\x90\\xa2\\x17\\x30\\x66\\x59\\xa0\\xec\\x69\\x53\\xec\\xe9\\x62\\x11\\xd2\\xa9\\xb9\\xe0\\xa1\\x9a\\xff\\xfe\\xdf\\x5f\\xff\\xfc\\xab\\x5f\\x34\\xc5\\xe2\\x84\\x79\\x8c\\x2f\\x8a\\x8a\\x04\\x7a\\x6e\\x97\\xc7\\xa4\\x72\\xa3\\x9b\\xde\\xef\\x93\\x85\\x45\\x4b\\x8e\\xb0\\xda\\xa4\\x62\\x5d\\x01\\x88\\x90\\x2e\\x5b\\x8d\\x88\\x4f\\x87\\x87\\xed\\x0c\\x69\\xa2\\xfe\\x91\\x2a\\xa7\\x83\\x5a\\x56\\x5b\\x93\\xea\\x97\\xc8\\x7b\\x2c\\x19\\xe7\\x3a\\xe4\\x5f\\xab\\x8c\\xda\\xb5\\x16\\x5d\\x1f\\x07\\x69\\xf0\\x06\\x24\\xb3\\xb4\\xea\\xc5\\x05\\xc1\\xe7\\x7c\\x3e\\xf4\\xdd\\x0b\\xdf\\x70\\xae\\x51\\x9d\\x44\\x41\\x8e\\x93\\x11\\xfd\\x56\\x7b\\xdc\\x41\\xa2\\xf2\\xc3\\xa8\\x4b\\xf7\\x1a\\x79\\x85\\x29\\x72\\xea\\x1a\\xc4\\x76\\x84\\x41\\x7f\\x36\\x3e\\x65\\x1c\\x5b\\xe7\\xec\\x74\\xb3\\x5e\\x2d\\x9b\\xaa\\xc8\\xf3\\x34\\x66\\xd3\\xcf\\xd8\\xf3\\xbe\\xb5\\xc9\\x5d\\x26\\x14\\xd9\\x88\\xf6\\x4f\\x18\\x64\\x23\\xfb\\xfd\\xda\\xd2\\xd3\\x38\\x15\\xe3\\x81\\x0d\\xe7\\xc8\\x7b\\xce\\xb8\\xf4\\x27\\x98\\x65\\x71\\xd7\\xc4\\xb8\\x29\\x65\\xa0\\xa8\\x85\\x8d\\x2e\\x5a\\xe8\\x9d\\x54\\x53\\xfc\\xd1\\x83\\x51\\x1e\\x0d\\x24\\x12\\xfb\\x10\\x62\\x90\\x4c\\xa2\\xcb\\x7d\\x0f\\xdb\\xcd\\x41\\x92\\x41\\x3e\\x3f\\x13\\x52\\xc9\\xfb\\xfc\\x95\\x54\\x7a\\xbe\\x4e\\x16\\x05\\x89\\x92\\xa2\\xd7\\x31\\x69\\xc4\\x5c\\xd8\\xd1\\xd5\\x6e\\x11\\x9a\\xab\\xc8\\x7d\\x0e\\xf6\\x6b\\x54\\x86\\x79\\x87\\x07\\x7d\\xd7\\x36\\xe3\\x52\\x32\\xb7\\xeb\\x7d\\x30\\xbf\\x7c\\xf7\\x8d\\x77\\x37\\xc7\\x96\\xfb\\xce\\xb8\\xf4\\x1c\\x02\\x4d\\x40\\x55\\x5f\\x7d\\x6a\\x72\\x6f\\x1e\\x38\\x72\\x3b\\xb6\\x92\\xd9\\x0b\\x4f\\x6d\\xf5\\x33\\xb0\\xdb\\x06\\xfe\\x81\\x25\\xf5\\x5f\\xcd\\x0e\\x95\\x7b\\xa0\\xfe\\x8f\\xf0\\xff\\xce\\x5e\\x76\\x4d\\x84\\x42\\x24\\x9f\\x74\\xf0\\xe3\\xc8\\xd8\\xea\\xc2\\xe2\\x32\\x9e\\x86\\x2a\\x15\\xcf\\x5f\\x43\\x4e\\x87\\x9e\\x66\\x01\\x47\\x98\\x96\\xbb\\xbc\\x16\\xce\\x6d\\xd3\\xf1\\xa9\\xe8\\x70\\xe4\\xc5\\xa0\\x73\\xd7\\xfe\\x4b\\x45\\x5f\\xcc\\x2b\\xa4\\xc4\\xe3\\x1d\\xd3\\xc2\\x30\\x62\\xc6\\x67\\x5b\\x2e\\x41\\xc7\\x7a\\xbb\\x3b\\x3b\\xda\\x5a\\x9a\\x1a\\xea\\x6a\\xaa\\x3a\\x5b\\x1a\\xa3\\x75\\xb5\\x55\\x95\\xe1\\xf2\\xd2\\x60\\x71\\x51\\xbe\\xdb\\x69\\x47\\x8d\\x08\\xa8\\x56\\x29\\xc4\\x2c\\xb0\\x4c\\xbc\\xf9\\xa2\\x09\\x76\\xd7\\xe9\\x77\\xdf\\xac\\x97\\x7d\\x8b\\x34\\x45\\x64\\x7c\\xbb\\xf0\\x2d\\x5f\\x4a\\x36\\xf8\\x9d\\x6b\\x0b\\x94\\xb1\\xbf\\x0f\\x2d\\x0d\\xcf\\x5d\\x4a\\x36\\x94\\xc0\\xb2\\xac\\xbc\\x1f\\x32\\xfa\\x74\\x5c\\x6f\\x74\\x99\\xe6\\x3b\\xe0\\x8a\\xb8\\x4a\\xd7\\x12\\x1b\\xd1\\x0c\\xec\\x04\\x63\\x48\\x38\\xbd\\xa8\\x4c\\x9e\\x88\\xd1\\x18\\xb0\\x01\\xe7\\x10\\xf9\\x2e\\xe0\\xb2\\x2e\\xc1\\xe1\\xd0\\xcb\\x27\\x2b\\x64\\x8b\\xcc\\x32\\x59\\xf9\\x1b\\xee\\xc6\\x31\\x78\\x98\\x03\\x9f\\xc3\\xf4\\xed\\x68\\x4c\\x33\\xd4\\x07\\x43\\x0a\\xa6\\xed\\x17\\xbc\\x28\\x14\\x0f\\x10\\xae\\x1f\\xe0\\x47\\xc0\\x39\\xd4\\xd1\\x0d\\x9b\\xcf\\x91\\x9d\\x5a\\x77\\x77\\x54\\x6c\\xf1\\x96\\x05\\xdb\\x70\\x28\\xc4\\xcb\\x2f\\x2f\\xd4\\xf2\\x67\\xf3\\xb9\\xe0\\xf9\\x64\\x80\\x1e\\x84\\x4a\\x81\\xdb\\xb8\\x0f\\xdd\\x0d\\x98\\xc5\\x3b\\x6a\\x7f\\x76\\x52\\x78\\xd5\\x1a\\xa2\\x61\\x97\\x68\\xd6\\xf2\\x17\\x26\\x23\\x3f\\x24\\x4b\\xf0\\x28\\x4c\\xd7\\x53\\x6c\\x64\\xb9\\xe5\\x5d\\x20\\xd5\\x87\\x7f\\x0a\\x7f\\xc2\\xf5\\x2d\\x51\\x8b\\x71\\x6b\\xe0\\xf5\\x33\\xc9\\xb0\\x0d\\xe7\\xe4\\x97\\xc2\\x9b\\x70\\x0f\\xe2\\x72\\xa8\\x0f\\x7b\\xc7\\x81\\xf0\\xd8\\xe1\\xd8\\x05\\x14\\x34\\x0e\\x85\\xc1\\x85\\x32\\x80\\xb3\\x39\\x64\\x01\\xb4\\x16\\x00\\xc5\\x58\\xfe\\xd4\\x04\\xc1\\xd4\\xdd\\x47\\x2e\\x69\\xf6\\xb4\\x87\\xe0\\xc7\\x3e\\x3a\\xd2\\xd0\\xdc\\x65\\x36\\x2e\\xfd\\xa4\\x01\\x15\\x59\\xa2\\x4d\\xb1\\x1e\\x0c\\x15\\xcf\\x9f\\x03\\xc7\\xfd\\x7c\\x6e\\xfb\\xdb\\xeb\\x34\\x82\\x07\\x2e\\x89\\x6b\\xb9\\x1d\\xa1\\x4c\\xbf\\x2d\\x83\\x26\\x6f\\x44\\x88\\x77\\xe5\\xeb\\x81\\xcd\\x6b\\x3e\\x59\\x8e\\x8c\\x2b\\xad\\x4f\\x18\\x13\\x97\\xd0\\x42\\xb4\\x80\\x4e\\x29\\x70\\xc8\\xa5\\xb1\\x4f\\xd8\\x61\\xdb\\x9e\\x9e\\x8f\\xbe\\x66\\x69\\x5f\\xfd\\x36\\xd4\\x6f\\x58\\x09\\xcb\\xbf\\x62\\xe5\\xb2\\xf5\\x6c\\xee\\xc2\\x63\\xdf\\xf2\\x26\\xb4\\x45\\x8a\\x9f\\x53\\x1f\\x8d\\x15\\xe1\\x71\\x87\\x3d\\x71\\x9a\\x9b\\x22\\x04\\x6a\\x57\\x01\\x7c\\x8e\\x18\\x88\\xca\\x92\\xa1\\xf9\\x7a\\xd5\\x3a\\xaa\\xe5\\x8d\\x61\\x75\\x3e\\xfd\\x4f\\xbc\\x7c\\xb3\\xce\\x64\\x3c\\xff\\xdc\\xf3\\xf6\\x7c\\x19\\x0c\\xca\\x52\\x08\\xe0\\x1b\\xe7\\x85\\xe4\\xb9\\x15\\x0e\\xbe\\x04\\x02\\x75\\xba\\x36\\xde\\x27\\x89\\xdf\\xdc\\xa5\\xc9\\x06\\xf8\\xab\\xd6\\xfc\\xc4\\x09\\x26\\xe9\\x4b\\x1e\\x42\\x77\\x02\\x30\\xf6\\x64\\x84\\xf1\\xdb\\xdf\\x01\\xfb\\x22\\x77\\xb9\\xd9\\x06\\xa3\\xd3\\x23\\x48\\x7b\\x4e\\x39\\xbb\\xbf\\x9b\\x6f\\x39\\xf5\\x12\\x86\\xc8\\x51\\x12\\x82\\xa0\\x06\\x7d\\x1a\\xa2\\x7b\\x8b\\xcc\\x40\\x09\\xec\\x37\\x4f\\xcf\\xa1\\x93\\x4a\\xf1\\x62\\x8a\\xc5\\x91\\xa5\\x01\\x48\\x9f\\x46\\xb7\\x58\\x9e\\x6d\\xcb\\xf6\\x0e\\x3a\\x19\\xe8\\x28\\x35\\x89\\x62\\x36\\xcb\\xde\\x36\\x3c\\x8d\\xc2\\xce\\x12\\x66\\xdc\\xf1\\x5d\\x60\\x8f\\xdd\\xb9\\x64\\x64\\x86\\xfb\\xc2\\x08\\xe2\\x1a\\x73\\x3e\\x15\\xa7\\x99\\xd6\\xa6\\xd3\\xaa\\x2e\\x98\\xcc\\x3e\\xac\\xe6\\x68\\x00\\x76\\x76\\x1e\\x55\\x70\\xe6\\xd5\\xc0\\xfe\\x14\\x7e\\xfe\\xab\\xd0\\x63\\x47\\xd1\\xd2\\x17\\xb5\\xd8\\x6f\\x22\\x81\\x8b\\x0b\\x28\\x31\\x67\\x4b\\xf3\\x00\\xb7\\x2b\\xc4\\xa2\\x95\\x47\\x56\\x35\\x46\\x18\\x2d\\x1d\\x4a\\xac\\x73\\x4e\\xf5\\x90\\x68\\x62\\x8e\\x5e\\x84\\xff\\xf2\\x39\\xc8\\x74\\x45\\x21\\x3d\\x45\\x10\\x7c\\x8f\\x99\\xb5\\x80\\x9c\\xc8\\xfc\\x85\\xad\\xa7\\xd3\\x3e\\xaa\\xfc\\x13\\x59\\x0c\\xba\\xc4\\x48\\x23\\x79\\x61\\x7b\\x15\\x4f\\x28\\xcc\\x41\\x80\\x8a\\x1d\\x39\\x6c\\xa1\\x64\\x05\\xa4\\x8b\\xbb\\xb9\\xb1\\xc7\\xc0\\x73\\x2d\\xba\\x7b\\x18\\x70\\xc6\\xc3\\x23\\x06\\x03\\xe8\\x5e\\x80\\xbc\\x1b\\xde\\x55\\xef\\xa6\\xba\\xe3\\x15\\xf7\\x4d\\x07\\x95\\x13\\x51\\x47\\x6d\\xb5\\x8f\\x92\\x44\\x48\\xb7\\x7a\\xcf\\x56\\xb0\\x35\\xc5\\xf5\\x12\\x23\\xdf\\x8e\\xe9\\x9e\\x7b\\x13\\xb6\\xbb\\xf1\\x32\\xa9\\x5e\\xb9\\x92\\xc8\\xb5\\x10\\xed\\x25\\xd4\\xab\\xe0\\xcb\\x48\\x27\\x61\\x18\\xb0\\xbc\\x12\\x8e\\xdf\\x01\\xa4\\x6b\\xc2\\x77\\xac\\x2b\\x76\\xd9\\xe5\\x94\\x90\\x1f\\x16\\x32\\xd6\\xc2\\x12\\x95\\x37\\x2c\\x23\\x0c\\xd9\\x77\\xc2\\x9a\\x7c\\x99\\x48\\xc6\\x14\\xb1\\x31\\x89\\x15\\x8a\\x5e\\x0f\\x39\\x4c\\x3d\\x77\\x24\\x4c\\xa5\\xf5\\x23\\xa3\\x6c\\x74\\xe2\\x33\\x35\\xc1\\xf6\\x64\\xaa\\xe3\\x09\\xa9\\x2b\\x04\\x1c\\x57\\x5d\\x4f\\xf9\\xce\\x1b\\xa5\\x15\\xf7\\x54\\x91\\xf1\\xbb\\x83\\x18\\x08\\x27\\x58\\x3e\\xb5\\x0f\\x21\\xec\\x1a\\x00\\x16\\x87\\x18\\xa6\\x7a\\xf8\\xb3\\x68\\x96\\xf7\\x6f\\xdf\\xde\\x7f\\x2c\\xbf\\x22\\x8e\\x70\\x60\\x71\\xe0\\x4a\\x79\\x23\\x6e\\x94\\xfe\\x92\\x54\\x42\\x64\\x29\\x3f\\x2a\\x06\\xf7\\x0e\\xfc\\xad\\xf5\\x41\\xd5\\x4e\\x95\\xc9\\x4c\\x79\\xef\\xaa\\x55\\x9e\\xd5\\xc0\\xdf\\x9b\\x79\\x27\\x32\\xfd\\x85\\x14\\x2a\\x97\\xe7\\x26\\xa6\\xf3\\x1c\\x04\\x0e\\x59\\x80\\x14\\x40\\x75\\xa2\\xa8\\xd7\\xb2\\xe5\\x3a\\x44\\xd9\\xe2\\xd8\\xb3\\x5b\\x39\\x86\\x23\\x68\\x0b\\x90\\xd5\\xe3\\x9f\\x6f\\x65\\x44\\xd0\\xd2\\xea\\xe2\\xdb\\x54\\x5c\\x3e\\x6c\\x54\\x32\\xf0\\xc8\\xfe\\x07\\x31\\x38\\x78\\xce\\xa2\\xba\\x30\\x01\\x2d\\x93\\x7b\\xaf\\xf2\\xfc\\xec\\x74\\xb5\\x3b\\xef\\xcf\\x5c\\xa8\\x73\\xae\\xa8\\x8d\\xbe\\x9e\\x73\\x84\\x94\\x15\\xba\\x4e\\xbf\\x1a\\x12\\x7e\\xbe\\x77\\x61\\xc4\\x3a\\x82\\x66\\x8c\\x22\\x7d\\xbd\\xa2\\xc9\\x43\\xd9\\x11\\x39\\x8d\\x59\\x21\\xa0\\x90\\x5c\\x54\\xd2\\xcf\\x7e\\x90\\x71\\x9d\\x3e\\x80\\xcd\\x1d\\x20\\xdd\\xd1\\x25\\x72\\x61\\x05\\x97\\x16\\x95\\x54\\xbe\\x29\\xbe\\xdb\\x7d\\x4b\\xd0\\x0e\\x97\\xf0\\xb4\\xcc\\xe1\\x4e\\xa4\\xa1\\x43\\xd7\\x7e\\x38\\x7c\\x23\\x06\\xd3\\x7d\\x61\\x81\\x2d\\x80\\x3b\\xbc\\x35\\x28\\x88\\xa5\\x9d\\xd0\\xfa\\xc9\\x13\\x6f\\x82\\x6f\\x98\\x92\\xf3\\x4c\\x4e\\x8f\\xeb\\xf2\\xe5\\xaa\\x66\\x49\\xb1\\x37\\x2e\\xc3\\x6b\\x98\\x1b\\xf7\\x9f\\x09\\xfb\\xb2\\xa9\\x26\\xb1\\xd9\\x4d\\x93\\x2f\\xae\\xc1\\xf2\\x0a\\x93\\xe6\\x25\\x7b\\x8e\\x5d\\x50\\x80\\x61\\xf4\\xc4\\x75\\xf3\\xd1\\x49\\xce\\x95\\x0d\\xab\\x49\\x31\\x86\\x25\\x4f\\xe0\\x5b\\x76\\x6e\\x59\\xf2\\x72\\x04\\x35\\xba\\x74\\x04\\x5e\\x4c\\x6a\\xd9\\xa7\\xa9\\x9b\\xbc\\x9f\\xab\\x49\\x5d\\xf6\\xb5\\x66\\x03\\xe4\\x2a\\xed\\x96\\x52\\xe8\\x16\\x48\\xd7\\x96\\xb4\\xb7\\x42\\xba\\x37\\xa5\\xb2\\xb8\\x9b\\xbe\\x53\\x46\\x8e\\xaa\\x05\\x52\\x4a\\x88\\xbb\\x13\\x4a\\x69\\x6e\\xf3\\x2d\\x30\\xdd\\x83\\xc5\\x36\\x2f\\xdc\\x42\\x6c\\xce\\x3a\\xa0\\x06\\x69\\x7f\\x00\\xaf\\x0d\\xe0\\xb0\\xa1\\x4e\\xe6\\xd1\\x10\\x71\\x47\\xc8\\x67\\xdc\\x51\\xec\\xe5\\x3a\\x64\\xa0\\x65\\x04\\xeb\\x78\\x0e\\x6e\\xa3\\x4c\\x74\\xf0\\xac\\x24\\x79\\x05\\x97\\x76\\xf9\\x50\\x31\\x79\\x5a\\x60\\x66\\x54\\xbf\\xb0\\x50\\x0c\\xc6\\xe9\\x0e\\xa8\\x4b\\x30\\x63\\x4c\\x2a\\x8d\\x4e\\x08\\xd8\\x9b\\x80\\x16\\xe8\\x6d\\xf9\\xd5\\x38\\x56\\xa7\\x0d\\x67\\x49\\x2c\\xee\\x52\\x05\\x3a\\x9d\\xea\\x56\\xd0\\xe6\\x9c\\x1f\\xdc\\x76\\xa9\\xbb\\x65\\x51\\x27\\xa9\\x22\\x70\\x93\\x02\\xe9\\x96\\xaa\\x5e\\x5c\\xaf\\x4b\\x79\\xfa\\xdb\\x0e\\xf8\\x18\\x4c\\x22\\xa4\\xdb\\x61\\xcb\\x76\\x91\\xbb\\xa7\\x48\\x0e\\xdb\\x31\\xdd\\x6b\\x06\\xb0\\xa5\\x09\\x4f\\xdd\\xe4\\x16\\x0e\\x37\\xcc\\x90\\x18\\x4a\\x40\\xba\\x55\\x7b\\xb6\\x5c\\xae\\x56\\xe3\\x00\\x8e\\xcc\\x22\\xdd\\x9e\\xc0\\x76\\x63\\x7b\\xc9\\x7d\\x1d\\x8f\\xe4\\x09\\x48\\x77\\x00\\x89\\x4e\\x25\\x20\\xdd\\x81\\x76\\x59\\x07\\xfa\\x21\\x40\\x6c\\xd9\\x7a\\x6e\\xad\\xfd\\xce\\x68\\x41\\x4d\\x69\\xee\\xac\\x03\\xcb\\x84\\xb1\\x8f\\xf8\\x8b\\x71\\x1b\\x48\\x77\\x90\\x1c\\x02\\x4e\\xe2\\x6e\\x89\\x90\\xe4\\xf7\\xb9\\x50\\xaa\\x4b\\xc0\\x25\\x30\\xd9\\x53\\xec\\x0d\\x50\\xdb\\x94\\x59\\xc7\\x90\\x60\\x25\\x4e\\x3b\\xee\\xf6\\x02\\x96\\x7f\\xb8\\x61\\xeb\\x58\\x2a\\x5c\\x52\\x23\\x2d\\xc4\\x87\\x00\\xb6\\xf7\\x1d\\xd8\\x2b\\xb7\\x87\\x3f\\x82\\x74\\x9b\\x2d\\x71\\xed\\x58\\x38\\x80\\x2b\\x73\\xe3\\xbe\\x43\\x62\\xf7\\x2e\\x31\\xf9\\x2f\\x71\\xdc\\x34\\xee\\xdb\\x7c\\x48\\x5b\\x40\\xd6\\xdd\\xb1\\x8c\\xb1\\x0e\\xf6\\x8d\\x0b\\x89\\x5e\\x53\\x14\\x90\\x74\\x08\\x8a\\x4b\\xf5\\xed\\x81\\xc0\\x0e\\x01\\xbf\\xf3\\x14\\x7c\\x23\\xa6\\x7b\\x4b\\xc2\\x89\\xa5\\xa0\\x06\\xef\\x03\\x34\\x9f\\xbe\\x3c\\xcd\\x26\\x2c\\x44\\x0c\\x9c\\x7c\\x82\\x97\\xc6\\xec\\xd9\\x32\\x74\\x14\\x6a\\xcd\\x7e\\x63\\xa2\\xaf\\xdd\\x21\\xe2\\x35\\x3d\\xb6\\x99\\xfb\\x0e\\xd8\\x71\\x7d\\x9e\\xff\\x41\\x4a\\x84\\x74\\x73\\xb4\\xc9\\x99\\xbd\\x63\\x4e\\xf9\\x1d\\x44\\xb3\\xdf\\xb6\\x0a\\x6f\\x81\\xe9\\xe6\\x6e\\x6f\\x31\\xae\\xff\\xda\\xa5\\x5a\\x83\\x3c\\x6c\\x36\\x67\\xfb\\xed\\x0e\\xd6\\x3a\\x16\\x26\\x02\\x97\\xc2\\xaf\\x28\\xaa\\x6c\\xbb\\x26\\x56\\xb8\\x61\\xf4\\xe1\\xd3\\x66\\x5b\\x0c\\x59\\x70\\xf1\\x1b\\x6c\\x88\\xc6\\x81\\x4c\\x3f\\x83\\x03\\x6d\\x54\\x0b\\x64\\x44\\xd2\\x96\\xb6\\xdb\\xca\\x83\\xf4\\x2d\\x48\\x83\\xcf\\xe1\\xd1\\x4a\\xc6\\x70\\x25\\xa5\\xaf\\x51\\x3b\\xb6\\x22\\x0c\\x75\\xfd\\xa8\\x30\\xe6\\xa5\\x8c\\xad\\x0a\\xd3\\x3d\\xef\\x11\\x7b\\x3d\\x0e\\x9b\\xd6\\x99\\x08\\x79\\x85\\xa9\\x92\\x77\\x62\\xba\\xa3\\xe2\\xfa\\xbf\\xe4\\x51\\x9b\\x0c\\x87\\x50\\x8c\\x02\\xcf\\xdc\\x90\\xd7\\x7a\\x64\\xa4\\xea\\xd7\\xdb\\xb7\\xa1\\x2a\\x53\\x70\\xac\\x8d\\x71\\x91\\x38\\x42\\x85\\xe3\\x5c\\x19\\x3c\\x37\\x56\\xcb\\x13\\x6a\\xed\\xbc\\x6d\\x9b\\xa0\\x8c\\xcd\\x94\\x9e\\x62\\xd3\\xef\\x26\\x89\\xdc\\x48\\x6d\\xb4\\xd7\\x34\\xc5\\x49\\xcd\\x4f\\x7d\\xb1\\xb1\\xa2\\x50\\x73\\x9d\\x60\\x5e\\xa2\\xb6\\xc3\\xce\\x18\\xd6\\x7e\\xd2\\x7a\\xa3\\x5a\\x5f\\x32\\x4f\\xb5\\x5a\\xc1\\xcc\\xbd\\x24\\xf5\\x24\\x9e\\x8f\\x02\\x14\\xab\\x7f\\xa0\\xd6\\xad\\xe4\\x6e\\x9a\\x3a\\x7f\\xaa\\x80\\x1c\\x46\\x3a\\x6e\\xd4\\x7c\\x60\\x0c\\xef\\x4c\\x66\\xea\\xc9\\xbd\\xc9\\x30\\x10\\xb3\\xd4\\x81\\x46\\x97\\x92\\x8c\\x3f\\x3b\\xd6\\xec\\xac\\x9a\\x52\\x30\\xb2\\xda\\x10\\x68\\xf6\\xb1\\x34\\x11\\x20\\x69\\xbc\\xf2\\xb2\\xad\\x79\\x7d\\xe1\\xc6\\xd3\\xb2\\x7f\\xb5\\xde\\xa4\\x1c\\xd5\\x3a\\x21\\xd2\\x1a\\x2e\\xaa\\x73\\xde\\x22\\xba\\x20\\x1c\\x83\\x2f\\x6c\\xf5\\x92\\x7a\\xc7\\x4a\\x93\\x37\\x9a\\x3c\\xde\\xb4\\x5d\\xd3\\xf6\\xa5\\x9b\\xe8\\x1a\\x6c\\xa8\\xab\\xcc\\x53\\xad\\x50\\x30\\x1f\\x0e\\x01\\xb2\\x8f\\xf8\\x0b\\x3a\\xa1\\xd8\\x17\\xd7\\x1a\\xcc\\xee\\x7f\\x69\\x79\\x1d\\xcb\\xc5\\x4c\\x6a\\x41\\xe4\\xb6\\xd6\\x0f\\x1d\\x2f\\xc7\\x74\\x61\\x2e\\x9a\\x6f\\xa1\\xe2\\x1c\\x3c\\x30\\x78\\x9c\\x5c\\x6d\\x15\\x7f\\xb2\\xdb\\x39\\x83\\x6f\\x3a\\xeb\\x14\\x83\\xc8\\x84\\x34\\x2f\\x62\\x59\\x5c\\x33\\x38\\xd6\\x7b\\xd8\\x6f\\xd3\\x82\\x0e\\x68\\x88\\x01\\x28\\x06\\x9e\\x05\\x77\\xa4\\x75\\xca\\x6b\\x8c\\x7e\\x43\\x4a\\x38\\x06\\x0c\\x3c\\xf1\\x34\\x7d\\x44\\x4b\\x0c\\x2e\\xbf\\x4d\\x85\\x90\\x00\\x8d\\x6c\\xf5\\xa4\\x36\\xf5\\x60\\x70\\x2b\\xef\\xbe\\xe5\\x14\\x87\\x49\\x24\\xf5\\x47\\x03\\xf6\\x8a\\xe2\\x1a\\x21\\xe5\\x23\\x2f\\x2b\\xc5\\x4b\\x07\\x05\\x5b\\x6b\\x46\\x06\\xc2\\x4c\\x46\\xfe\\xc2\\xe5\\xc2\\x38\\x19\\x4f\\xe7\\x03\\x0c\\x2f\\x3a\\x63\\x97\\xcc\\x22\\x4d\\xd1\\xd2\\xdc\\xca\\xcf\\x11\\x6d\\x57\\x20\\xdb\\x93\\x1a\\x50\\x2a\\x46\\x9b\\xe2\\x4a\\xf4\\x31\\xb6\\x5c\\x99\\x04\\xb2\\x73\\x64\\x29\\x68\\x4d\\xf8\\xa8\\x73\\xe6\\xd9\\x49\\xf1\\xf6\\xb9\\xf3\\x98\\x2c\\x4f\\xca\\xa0\\x68\\xb4\\x70\\x30\\x38\\x89\\x33\\x13\\x41\\x98\\xa5\\x8a\\x23\\x2b\\x3f\\x3f\\xa3\\x1b\\x3f\\xa1\\xd8\\x87\\xa6\\x34\\x60\\x35\\x1d\\x86\\xb6\\x6b\\xb4\\xba\\x01\\x45\\xa5\\xa5\\x10\\x7f\\x70\\x6f\\xca\\x9e\\x74\\xb9\\xf2\\x2a\\xb6\\x05\\x30\\xd3\\x07\\xa9\\xf3\\x4b\\xed\\xa7\\x6b\\xe2\\x0b\\xe5\\x03\\xdc\\xe9\\xc4\\xd9\\x8d\\x98\\x16\\x7d\\xc1\\xa2\\x9d\\xa1\\x72\\x88\\x2d\\x84\\xe4\\xe6\\xe6\\x87\\x6a\\x23\\x69\\xea\\xea\\x04\\x50\\xe4\\x90\\x45\\xfa\\x09\\x84\\x08\\x4e\\xb0\\xcd\\xa4\\xb5\\xd9\\x95\\x51\\x6b\\x31\\x7f\\x89\\x63\\x44\\x17\\x2f\\xa4\\x7f\\xd4\\x03\\xf0\\xf3\\x7f\\x2d\\x80\\x60\\x08\\xb6\\x9c\\x50\\x67\\x7e\\x3e\\x4e\\xc4\\x3f\\x9f\\xe0\\x14\\xe2\\xae\\x8f\\xff\\x59\\x64\\xb7\\x96\\x3d\\x3c\\xf3\\xf9\\xab\\x8a\\xfc\\x77\\xd5\\xbf\\xd7\\xf5\\x7c\\xdc\\x12\\x68\\x59\\x37\\xff\\x99\\x49\\x67\\x26\\x80\\x7f\\x10\\xd9\\xc1\\x65\\xf2\\x1f\\x75\\x7f\\x6e\\x1b\\xff\\x2d\\x06\\x13\\x00\\x87\\x7e\\x2a\\x74\\xab\\x97\\x1e\\x28\\xcd\\x37\\x5c\\x45\\x4b\\xb6\\x70\\x17\\xad\\x5b\\x9e\\x85\\x21\\xa8\\xe4\\x89\\x2b\\x4f\\x9d\\x2c\\xff\\x02\\xad\\x69\\xa3\\x26\\x8b\\x28\\x51\\x6f\\x75\\x44\\x3e\\x32\\x51\\xbc\\x1e\\xe2\\x51\\xaa\\xc2\\xf9\\x46\\x51\\x6e\\xd9\\xa8\\x6c\\x51\\xb9\\x2a\\xa4\\xa4\\x9e\\xb4\\x14\\xfb\\x69\\xb2\\xa8\\x70\\x51\\x59\\xa2\\x0a\\x3e\\xe4\\x59\\x04\\x89\\xaa\\x49\\xe7\\x44\\x31\\xd2\\x45\\x85\\x92\\x1a\\xf2\\x65\\x7e\\x43\\x92\\xa8\\x33\\xa2\\x34\\x48\\xea\\x52\\x33\\x4d\\x52\\x9e\\x3b\\x2d\\x5a\\xb2\\xdc\\xd3\\xc5\\x84\\x3e\\x89\\x93\\xe5\\x28\\x54\\xe9\\x0a\\xc4\\x4f\\xb6\\xc2\\xe4\\x5f\\x4e\\x11\\xc5\\x11\\xd5\\xab\\x54\\x35\\xe3\\x1a\\xe3\\xda\\x7b\\x95\\xd2\\xa4\\x2e\\x0d\\x8a\\x3e\\x3b\\x97\\x94\\x7c\\x65\\x20\\x5a\\xb5\\x9f\\x5e\\xbb\\x83\\x65\\xbc\\x69\\xdc\\x3a\\x5d\\x97\\xd7\\x84\\x18\\xc2\\x42\\xde\\xe9\\x44\\x8a\\xe3\\xa2\\xed\\x4c\\x0d\\xa2\\x5e\\xb5\\x43\\xbc\\xd3\\x67\\x41\\x25\\xd2\\xb4\\x06\\x68\\x9a\\x30\\x99\\xaa\\x0c\\x9f\\x73\\x4f\\x57\\x97\\x82\\x41\\x13\\x6c\\x8f\\xf4\\xb5\\x4f\\x92\\x62\\x23\\x6d\\x99\\x74\\x89\\x93\\x2a\\x25\\x74\\xf4\\xb8\\x26\\x76\\x6b\\x55\\x00\\xb6\\xed\\xb2\\x73\\x7d\\x12\\x93\\x9c\\x58\\x95\\xd7\\x54\\xe6\\x0f\\xd3\\xc0\\x25\\x3b\\x61\\xd4\\x22\\xcf\\xe6\\x5f\\x8b\\x80\\xa6\\x0a\\xda\\xd0\\x46\\x8b\\x05\\x8d\\xf2\\xa1\\xe0\\x4f\\xfe\\x14\\xad\\x1c\\xf4\\x59\\x05\\x7a\\xd3\\xc4\\x93\\xce\\xdf\\xc6\\xbb\\xb6\\x96\\x25\\x40\\x97\\x16\\x68\\xb8\\x2a\\xaf\\x91\\xe9\\x4d\\x7c\\xad\\xb5\\x5c\\x68\\x72\\x65\\x12\\x5c\\x2c\\x6b\\xdc\\x91\\x26\\x6d\\x2e\\x4a\\xd1\\x49\\x6b\\x3b\\x55\\x9b\\x94\\x4c\\xb2\\xbc\\xf5\\x94\\xb3\\xd2\\x2d\\x8f\\x08\\xef\\xca\\x01\\x23\\x8b\\x6c\\x87\\x50\\x93\\xab\\x56\\x1a\\xa1\\x5d\\x9a\\x27\\xd6\\xc0\\x27\\x41\\x54\\x29\\x22\\x7a\\x06\\xb3\\xbc\\x6d\\x68\\x4a\\xb2\\xf4\\x60\\xe9\\xcd\\xd3\\x04\\x79\\x50\\x07\\xa6\\x46\\xc4\\xbc\\x08\\x4d\\x36\\x4a\\x9e\\x84\\xb6\\x25\\x5f\\x51\\xc7\\x8e\\x14\\x24\\xea\\xc2\\x7b\\xd2\\x13\\x75\\xaf\\xcc\\xdc\\x5d\\x51\\xce\\x6d\\x6a\\xa6\\xd7\\xdf\\x48\\xc8\\x46\\x20\\xe0\\xe1\\x57\\x8b\\x25\\x77\\x51\\x37\\x25\\xe3\\x68\\x8d\\x6d\\x18\\x95\\xe0\\x3f\\x9b\\x29\\x6b\\x2d\\x6e\\x7d\\xfa\\xae\\xb0\\x28\\x53\\x51\\xe6\\xfd\\x0c\\xb9\\x25\\x96\\xc3\\xf1\\xd1\\x80\\x6b\\x5f\\xbd\\xfa\\x4c\\xd4\\x15\\xe0\\x7f\\x6f\\xff\\xfe\\x07\\xf4\\x2f\\x04\\x5a\\x0d\\xfc\\xbd\\x23\\xf8\\xb7\\xca\\x9b\\x46\\xe4\\xb5\\x90\\xcc\\x9d\\xd8\\x7e\\x49\\xfb\\x45\\xc9\\x94\\xe7\\x94\\x44\\x4e\\x02\\x3b\\xaf\\x23\\xaf\\x3d\\x04\\xf8\\xf6\\x99\\x59\\x07\\x25\\xde\\x27\\x64\\x95\\x23\\xbd\\x4d\\x84\\x5a\\x8a\\x56\\xfb\\x71\\xd5\\x89\\x77\\xef\\x5a\\xb9\\x77\\x4b\\x45\\x35\\x8a\\x12\\x69\\x29\\xee\\x9a\\xb8\\xdb\\xc2\\x64\\x21\\xca\\xcc\\x8a\\xad\\x84\\xad\\xd7\\xa4\\x60\\x8a\\x36\\xa1\\x8f\\xfa\\xa0\\xc6\\xaa\\x5c\\x4c\\xba\\xcf\\xeb\\x31\\x51\\xf8\\x8b\\x16\\xf7\\xf6\\x16\\x1c\\xea\\x85\\x28\\xe3\\xfe\\xaf\\xfb\\x7d\\x82\\x08\\x09\\x41\\xf2\\xd6\\x9c\\x9f\\xa8\\xff\\xcf\\x1b\\x6f\\xfc\\x10\\xae\\xf4\\x62\\x6d\\x1b\\x32\\x36\\x62\\xae\\x81\\x74\\x5d\\x29\\x43\\x94\\x9c\\x87\\x58\\xb4\\xdb\\xde\\xa9\\xe8\\x1b\\x42\\xc7\\x12\\xe0\\x9b\\xb9\\x6d\\x38\\x54\\xcd\\x08\\xb4\\xd8\\x23\\xe1\\x70\\xe8\\xfc\\x0d\\xd3\\xfc\\x38\\x34\\x15\\x30\\xd2\\x33\\x3c\\x6f\\x0f\\xf9\\x25\\x52\\x8b\\xa8\\xcb\\xd6\\xa5\\x76\\x51\\x09\\x6d\\xe1\\x99\\x47\\x52\\xb9\\xa8\\x5b\\xed\\x48\\x74\\x51\\x21\\x96\\x53\\xa0\\x27\\xc9\\x8b\\xb2\\xb7\\x4d\\x45\\x4f\\x59\\x80\\xda\\x60\\xbe\\x98\\x4c\\xa2\\xed\\x81\\xed\\xd5\\xd0\\xc0\\xcf\\xa7\\x4f\\xaf\\x7a\\x83\\xa6\\x03\\x9a\\x1a\\x74\\x10\\x2d\\xe9\\x28\\x9c\\x61\\x10\\x57\\x53\\x58\\x19\\xb9\\x93\\xe9\\xd1\\x79\\x1c\\xad\\xb3\\x72\\x13\\x9c\\x10\\x53\\x99\\x81\\x58\\x6a\\xc2\\xc6\\xae\\x98\\xe2\\x3c\\x83\\xe9\\x1b\\x82\\x3c\\x35\\x77\\x5f\\x14\\x6b\\x14\\x7e\\x05\\x80\\xfa\\xc5\\xf4\\xf4\\x6f\\x37\\xec\\x70\\x86\\x41\\xf1\\xe2\\x82\\x08\\xb2\\x4d\\x2d\\x0c\\x55\\xe3\\x33\\x32\\x8b\\xa1\\x82\\x50\\xf6\\xff\\x82\\x40\\xe0\\x08\\x6a\\x61\\xa8\\x66\\x9f\\x87\\x59\\x0c\\x95\\xdd\\x6b\\x80\\x56\\xd9\\xec\\x0e\\xb9\\xd6\\x82\\x70\\x3d\\x7c\\x39\\xe5\\x69\\xb2\\x24\\x2c\\x8a\\xf0\\xec\\xeb\\x05\\x81\\x20\\xd9\\xd4\\x68\\x98\\x97\\x7a\\x39\\x9c\\xf3\\x11\\x8c\\xd1\\x44\\xc9\\xf9\\x58\\xa8\\x64\\x8d\\xa2\\xbb\\x10\\x4a\\xd9\\x1c\\x4e\\x0c\\x95\\xd1\\x98\\x05\\x49\\xab\\x84\\xa1\\x47\\xa0\\x9e\\xe1\\x9c\\xa9\\xb9\\x28\\x72\\xdf\\x18\\xce\\xba\\x1f\\x53\\xab\\x20\\xc8\\xfe\\x25\\x01\\x6a\\x3d\\x8b\\x72\\xbb\\x3a\\x6b\\xd4\\x7e\\x68\\x21\\x4a\\x3b\\x9b\\x82\\xae\\x86\\x38\\x4d\\x5b\\x5d\\x7f\\xa3\\x52\\xd8\\xe1\\xe3\\x3c\\x76\\x0c\\xd5\\xee\\x23\\x20\\x8b\\xa1\\x0a\\xd6\\x33\\x29\\xdb\\xc2\\x7a\\x89\\x75\\x0c\\x43\\x5d\\x5e\\xef\\x49\\xfd\\xd6\\x68\\x8a\\x35\\x8e\\x27\\x0f\\x03\\xcb\\x5b\\xd2\\x56\\xd2\\x31\\x54\\x48\\xaf\\xfb\\x48\\x0a\\x76\\xc8\\x3b\\x13\\x56\\x16\\xa1\\xd0\\x5a\\xd4\\xbb\\x4e\\x0d\\xd3\\x9f\\x19\\x9c\\xc6\\x5d\\xfe\\xf4\\xea\\xf0\\x55\\x9a\\xac\\xb6\\xf8\\xfa\\xbc\\x0f\\xc3\\xb5\\x19\\x8d\\x76\\xa2\\x77\\x6e\\x07\\x77\\x7a\\xd0\\xd7\\xa4\\x18\\xe1\\xda\\x17\\xaf\\x39\\x37\\xa3\\xab\\xeb\\x85\\xc7\\xb9\\xb6\\xef\\x30\\x72\\xa6\\xee\\x38\\xe3\\xf8\\xe1\\x9c\\xef\\x23\\xc3\\x75\\xc2\\xa5\\x91\\x99\\x0a\\x75\\x23\\x48\\x12\\x34\\x59\\x76\\xa0\\xa1\\x1d\\x3d\\x39\\xbe\\x06\\xf9\\x7a\\x4a\\xa0\\x27\\xf1\\x8d\\xc3\\xac\\x01\\xa7\\x17\\xe9\\xd5\\xb0\\xd2\\xc0\\xc7\\xd9\\xbd\\xe3\\xeb\\xfa\\xaa\\x73\\x4f\\x6f\\x99\\x3c\\xe5\\x05\\xf6\\xfc\\xad\\x25\\x5d\\x76\\x75\\x2c\\xed\\x9c\\x73\\x72\\x5d\\x46\\x74\\x71\\x45\\x44\\x58\\x2a\\x2e\\xe4\\xa3\\x2a\\x2a\\xbb\\x1e\\xc6\\x1a\\xd7\\x42\\xc4\\x8e\\xec\\xc8\\xf3\\xde\\xf1\\x91\\x65\\x25\\xc8\\xdb\\x3c\\xc7\\xcb\\x42\\xad\\xeb\\xbb\\x8f\\x0d\\x5f\\xc3\\x9c\\xa2\\xa5\\x33\\x1d\\x51\\xfd\\x59\\x82\\x69\\x79\\xbc\\xe8\\x5a\\x80\\x9e\\x8d\\xd1\\xcf\\x15\\xe0\\x60\\x4a\\x8e\\xe8\\xf3\\x33\\xb0\\x6d\\xb0\\xe5\\x6c\\x69\\xf6\\xc5\\x8c\\xee\\x66\\x86\\x6b\\x2c\\x28\\x25\\x3b\\xa2\\x17\\x32\\x52\\xcf\\x4f\\xd7\\xb6\\xc1\\xf6\\xb3\\xb1\\x6b\\xcb\\xa2\\xf6\\xec\\x78\\xf4\\x6b\\xce\\xa2\\xa8\\x35\\x3e\\x3f\\xc2\\xf5\\x69\\x7e\\xdb\\x68\\x7f\\x10\\x53\\x12\\x9a\\x8f\\x56\\xfa\\xb6\\xc3\\xdb\\xe4\\x3b\\x99\\x47\\xc7\\x17\\x63\\xab\\xad\\x95\\x98\\xd8\\xc5\\xe1\\x6c\\x5a\\x28\\xa6\\x19\\x9c\\x5f\\xe5\\x21\\x50\\x54\\x68\\x04\\xdd\\xa4\\xe2\\xff\\x4f\\x44\\xfc\\x7f\\xb5\\xd1\\xa3\\x8d\\xe0\\xab\\xc5\\x56\\xb6\\x02\\xc0\\x2f\\x81\\x60\\xf2\\x22\\x2c\\xbb\\xb9\\x46\\x0f\\xe0\\x30\\x36\\x15\\x80\\x1f\\xcc\\x49\\xf8\\xe7\\x93\\xbe\\xb6\\x80\\xcf\\x9f\\x02\\x27\\x4f\\x63\\xb8\\x0c\\xf0\\xeb\\x58\\x3a\\x7e\\x2d\\x00\\x45\\xdc\\xe4\\x18\\x22\\x46\\x06\\x1d\\xbc\\x93\\xc9\\x71\\x4b\\xb2\\x68\\x53\\x47\\x36\\x7b\\x83\\x1e\\x5b\\xe0\\xeb\\x20\\x9f\\x0a\\xcb\\x14\\xd0\\xe5\\x07\\x85\\x9c\\x8f\\x37\\x8a\\x38\\x9e\\x91\\x94\\xb0\\x3b\\x12\\xff\\xa5\\x6c\\x89\\xed\\x98\\x2a\\x26\\x53\\xa1\\x44\\x01\\x21\\x91\\x52\\x48\\x34\\x50\\x43\\x1d\\xed\\xcf\\x78\\xdb\\x96\\x8a\\xbf\\x67\\x85\\x24\\xf8\\xa1\\xd0\\x5a\\x11\\x1e\\x6f\\xb2\\x0f\\x93\\xd0\\x0c\\x12\\xe7\\x0c\\xa6\\x08\\x36\\x9f\\x62\\xb3\\x4b\\x28\\x5f\\x95\\xf9\\xbc\\x71\\x56\\x8c\\x0b\\xbe\\xd4\\x46\\x62\\x07\\xa5\\xe8\\x13\\x9f\\xe5\\x0b\\x94\\x91\\x66\\x88\\x42\\x5a\\x2d\\xc1\\x51\\x52\\xad\\x1d\\x6c\\xae\\x86\\x15\\x77\\xc2\\xa5\\x59\\x96\\x18\\x51\\xc1\\xf0\\x09\\x56\\x26\\xaa\\xfc\\x8a\\xbf\\xaf\\xad\\x8f\\x1e\\xda\\x18\\xa8\\xc5\\x87\\x78\\x9b\\xf2\\x02\\x1c\\x65\\x05\\x6d\\x91\\x82\\x5f\\xb0\\x21\\xd7\\xcb\\x71\\x77\\xb5\\x0a\\x9a\\xc8\\xd7\\x14\\x7e\\x69\\x86\\x51\\x54\\x87\\x28\\x76\\xc1\\x24\\xe6\\x5b\\x43\\x2c\\xf9\\x45\\xcc\\x27\\x26\\x55\\x7d\\xbd\\x18\\xb2\\x99\\xc0\\xf0\\x46\\x6f\\xe6\\x11\\xe5\\x4f\\xe5\\xa5\\x88\\x44\\x8d\\x13\\x15\\xbf\\xc4\\x0b\\x70\\xf4\\x91\\xca\\x58\\x33\\x6e\\x0a\\x46\\x36\\x51\\x01\\xde\\x93\\x15\\x35\\x27\\xc8\\x46\\x72\\xe7\\xc0\\x95\\x59\\x89\\x0c\\x26\\x6a\\xae\\x7d\\x98\\x0c\\x0a\\x8f\\x79\\xa4\\xf3\\x5e\\x75\\xd8\\x88\\x5b\\x5f\\x58\\x4a\\x06\\x8b\\xea\\xf7\\xbe\\x7b\\x67\\x7a\\xe3\\x5b\\x46\\xf4\\x26\\xbb\\x84\\xf0\\xa4\\xf1\\x72\\x39\\x51\\xf1\\xd6\\xed\\x88\\x38\\x44\\x31\\xa8\\xd2\\x5f\\x0a\\x86\\xea\\xb0\\xce\\x65\\xae\\xa9\\xc3\\xe3\\xee\\x65\\x9b\\x54\\x0b\\xe5\\xfb\\x97\\x39\\x2f\\x02\\x06\\x80\\x23\\x32\\xdf\\x9b\\x38\\x76\\x0a\\x16\\xe2\\xad\\x78\\x13\\x84\\x8a\\x12\\x29\\x4d\\xa1\\x1c\\x11\\x81\\xe5\\x16\\x86\\x25\\x96\\xa1\\x4b\\x10\\x16\\x38\\x7e\\xb2\\x48\\xba\\x22\\xab\\xac\\xb0\\x46\\x96\\x18\\x0b\\x3c\\x31\\x4b\\xb8\\x4c\\x53\\xbc\\xc0\\x34\\x27\\x0f\\x3f\\xc4\\xdb\\x3a\\xc5\\x5f\\x86\\xe5\\x77\\x86\\x97\\x2a\\x42\\x90\\xfb\\xb0\\xb4\\x8b\\x9f\\xef\\x02\\x17\\x26\\xa2\\x8b\\x41\\x7a\\xe9\\xa3\\x9f\\x9f\\x74\\xf3\\xc3\\xed\\xb0\\xe8\\x5c\\x47\\x48\\x34\\xb1\\xf6\\xb4\\xb7\\x7d\\xed\\x4f\\x3c\\x89\\x88\\x1d\\x48\\xb2\\x83\\x49\\xc9\\x08\\x69\\x66\\x74\\x26\\x31\\xfa\\x69\\xa4\\x94\\x72\\x2a\\xa9\\x4a\\x09\\xb5\\xd4\\x5d\\xd1\\xbd\\xd3\\x4b\\xdf\\x12\\x9d\\x5a\\xaa\\x22\\xfa\\x36\\x22\\xc1\\x68\\x89\\x92\\x8c\\x31\\x56\\xb2\\x14\\xe3\\x8c\\x37\\xc1\\x44\\x93\\xa4\\x9a\\x6c\\x8a\\xa9\\xa6\\x99\\x6e\\x86\\x99\\x66\\x49\\x93\\x2e\\xc3\\x6c\\x73\\xcc\\x95\\x29\\xcb\\x3c\\xd9\\x72\\xe4\\xca\\x1b\\x21\\x14\\x28\\x54\\x64\\x81\\x85\\xdc\\xe6\\x9c\\xa5\\x16\\x59\\xac\\x4c\\xb9\\x25\\x2a\\x3a\\x89\\x4a\\x55\\x96\\x5b\\xa1\\xda\\x4a\\xab\\x9c\\xe3\\x29\\xd6\\x86\\xff\\xd8\\x20\\x29\\x06\\x1b\\x62\\xa8\\x54\\xc3\\x0c\\x37\\xc2\\x48\\x69\\xd2\\xc5\\xce\\xef\\x23\\xc6\\xf8\\xc4\\xa7\\x32\\x8c\\x35\\xce\\x78\\x13\\x4c\\x34\\xc9\\x64\\x53\\x4c\\x25\\x8c\\x4f\\xb5\\x44\\xf5\\xcc\\xe7\\xbe\\xf0\\xa5\\xaf\\x7c\\xed\\x1b\\xdf\\xfa\\xce\\x5a\\xeb\\x7c\\xef\\x07\\xeb\\x6d\\xb0\\xd1\\x26\\x9b\\x65\\xdb\\x62\\xab\\x6d\\x7e\\x14\\xf5\\x93\\x1c\\x2a\\x55\\x45\\x3b\\xcf\\x3c\\xd7\\x60\\x07\\xd5\\x6a\\x34\\x12\\xe4\\x03\\xd4\\xe8\\xa4\\x58\\x13\\xef\\xd4\\x7a\\x13\\x9f\\xfd\\xe2\\x57\\xbf\\xf9\\xdd\\x2e\\xbb\\xed\\x81\\x16\\xbd\\xf6\\xd9\\xef\\x80\\x3f\\x48\\x94\\x2c\\xc9\\x3c\\xb9\\x9e\\x4a\\x95\\x2f\\x5a\\xac\\x38\\x2f\\xe3\\xa7\\x83\\x0e\\x39\\xec\\x88\\x2b\\x9c\\x77\\x7c\\x31\\x27\\xe5\\xd8\\x67\\x70\\xc1\\x45\\x97\\x5c\\x76\\xc5\\x55\\xd7\\xfc\\xcf\\x93\\x0a\\xb2\\x27\\xf1\\x63\\x4f\\xa6\\xc7\\x1e\\xeb\\x6a\\xf3\\xf0\\xe6\\xc3\\x57\\x1c\\x2d\\xc1\\x63\\xfa\\xcc\\x52\\x64\\x4f\\x62\\xc8\\xbe\\x57\\x4b\\x65\\x72\\x05\\x4e\\x28\\x55\\x6a\\x8d\\x56\\xa7\\xb7\\xb0\\xb4\\xb2\\xb6\\xa9\\x04\\xd9\\x35\\x99\\x89\\x83\\x63\\xa5\\x3d\\xa7\\x59\\x59\\xa1\\x1e\\xfc\\xd8\\xe9\\x5a\\xce\\x54\\xd7\\x8a\\xe3\\x23\\xd4\\x27\\x67\\x1b\\x69\\xd7\\xa1\\xbc\\x48\\x53\\x5f\\x7c\\xa5\\x37\\x91\\x77\\x85\\x0a\\x88\\x49\\x49\\x14\\x65\\xf2\\xae\\x91\\x93\\xbd\\xb0\\x3b\\x5e\\x99\\x52\\x4a\\x2a\\xe5\\xd4\\x2a\\x54\\xaa\\x56\\xa5\\x56\\x8d\\xba\\xea\\x7b\\x7f\\x96\\x00\\xfc\\x08\\x03\\xf7\\x82\\xe5\\x78\\x41\\xec\\x5f\\x05\\x9d\\x0c\\x04\\xf5\\x5b\\x42\\xe8\\x19\\x18\\xa1\\x4c\\xcc\\x2c\\xac\\x6c\\x48\\xed\\x7d\\xec\\x47\\xbf\\xb9\\xf6\\x14\\xce\\x64\\x42\\xed\\x88\\x45\\x54\\xaa\\x52\\xad\\x46\\xad\\x3a\\xf5\\x1a\\x44\\x35\\x6a\\xd2\\x69\\x1f\\xaf\\x55\\x9b\\x76\\x1d\\x3a\\x75\\x81\\xb5\\xd1\\xfa\\xf4\\x1b\\x30\\x68\\xa8\\x5f\\x41\\xf1\\xe5\\x9a\\x28\\x45\\x70\\x23\\x8d\\x0a\\x11\\x8a\\x2a\\x4c\\xb8\\x08\\x91\\x68\\xe8\\xa2\\x44\\x8b\\xf1\\xc4\\x53\\x0c\\xc1\\x63\\x1d\\xdb\\x00\\x40\\xbf\\x8e\\xd7\\xaf\\x4f\\xc6\\x18\\x77\\x9e\\xb3\\xe7\\xc8\\x73\\x4c\\x3c\\x67\\x6f\\x62\\xb5\\xbc\\x73\\xf6\\xc1\\x76\\x6e\\x37\\x46\\x93\\xcb\\xd8\\xae\\x73\\xa5\\x0d\\x75\\xce\\x38\\xa2\\x73\\xd6\\xc9\\x39\\x67\\x5f\\x2d\\xe7\\xac\\x0b\\x72\\xce\\x7a\\x15\\xe7\\x6c\\x80\\x70\\xce\\x06\\xfd\\xe6\\x6c\\x04\\x6f\\xce\\xc6\\xe5\\xe6\\xc4\\x6d\\x8e\\xd5\\xe6\\xf2\\xbc\\x8c\\xfb\\xa2\\xb1\\x1c\\x2b\\xb1\\x1a\\x6b\\xc1\\x8d\\x75\\x1d\\x37\\x0e\\xf7\\x32\\x2e\\x78\\x99\\x2a\\x4a\\xb2\\x8a\\x7b\\x9b\\x9e\\xab\\xea\\x83\\x08\\x13\\xca\\x1c\\x0c\\x77\\xcf\\x30\\x8a\\x93\\x34\\x93\\xa5\\xba\\x05\\xdc\\xa4\\x0f\\x61\\xb9\\x5a\\x6f\\xb6\\xbb\\xfd\\xe1\\xe8\\xdd\\xfe\\xba\\xdd\\xdc\\xde\\x9d\\xef\\x25\\x80\\x18\\x4e\\x90\\x14\\xcd\\xb0\\x1c\\x2f\\x88\\x92\\xac\\xa8\\x9a\\x6e\\x98\\xd2\\x6d\\x2c\\xdb\\x4e\\x78\\xbe\\x63\\xfb\\x1f\\x28\\x4e\\xd2\\x2c\\x2f\\xca\\xaa\\x6e\\x5a\\xc3\\xf6\\xe7\\xac\\x1f\\xc6\\x69\\x5e\\xd6\\x6d\\x3f\\xce\\xeb\\x7e\\xde\\xef\\x07\\x40\\xc8\\xb4\\x8d\\x45\\xdb\\x06\\xae\\xd9\\xfe\\xa6\\x4c\\xd1\\x0c\\xcb\\xf1\\x82\\x28\\xc9\\x8a\\xaa\\xe9\\x86\\x69\\xd9\\x8e\\xeb\\xf9\\x41\\x18\\xc5\\x49\\x9a\\xe5\\x45\\x59\\xd5\\x4d\\xdb\\xf5\\xc3\\x38\\xcd\\xcb\\xba\\xed\\xc7\\x79\\xdd\\x8f\\x13\\xdf\\xef\\x77\\x3d\\x3f\\x08\\xa3\\x38\\x49\\xb3\\xbc\\x28\\xab\\xba\\x69\\xbb\\x7e\\x18\\xa7\\x79\\x59\\x37\\xb9\\x1f\\x27\\x88\\xaf\\xfb\\x51\\x77\\x63\\x6f\\x37\\x38\\xbb\\x63\\xdf\\x2f\\xec\\xc6\\x9c\\x6e\\x20\\x74\\x63\\x87\\x37\\x5e\\xc5\\xa3\\x63\\xbf\\xff\\x98\\xbc\\xb1\\xc4\\x7b\\xdd\\xd4\\x87\\x19\\x87\\xe0\\x30\\x38\\x2c\\x0e\\xf7\\x5b\\x8e\\x05\\xde\\x98\\xd4\\xfd\\x07\\x09\\x27\\x88\\xdb\\x82\\x13\\xc2\\x6d\\xc5\\x6d\\xc3\\x09\\x23\\xc2\\x76\\x76\\xb0\\x93\\x5d\\xec\\x16\\x17\\x02\\xa2\\x88\\x09\\x87\\xfb\\xde\\x1b\\xf2\\xf3\\x53\\xcf\\x60\\x99\\xca\\xdd\\x82\\x1c\\xc8\\x59\\x2c\\x1d\\x19\\x9d\\x8c\\x9e\\xc0\\x53\\x9c\\x4c\\x34\\xec\\x63\\xcf\\x88\\x25\\x41\\x71\\xc1\\x0a\\x61\\xbc\\x40\\xe3\\xd5\\xc4\\xc5\\x37\\x55\\x6a\\xe2\\xa2\\x38\\x62\\xbe\\xfb\\x64\\xc0\\x3e\\x8f\\xb1\\x26\\xfc\\xd1\\x60\\xff\\xec\\xea\\xfa\\x86\\xab\\xe7\\xbf\\xff\\xfc\\xfd\\x06\\x37\\xb4\\x94\\xcf\\x05\\xd4\\xe8\\xc7\\x3b\\x0f\\x4a\\x2e\\x2f\\x35\\x53\\xcc\\xf7\\xde\\x69\\xc2\\xcd\\x1d\\xf7\\x13\\x13\\x7d\\xab\\x83\\x0b\\xb5\\xa3\\x23\\x86\\xe2\\x2d\\xb4\\xd1\\xe5\\x16\\x30\\xd4\\x31\\x61\\x00\\x15\\x42\\xce\\xcf\\x6d\\x3e\\xa6\\x3e\\x7a\\xd6\\xf8\\x9e\\xea\\x0c\\xf2\\xe9\\x60\\xba\\xd1\\x54\\x91\\x6a\\xc9\\x67\\x10\\x95\\x0e\\x77\\xb7\\x3d\\x28\\x98\\xea\\x05\\xf2\\x89\\x68\\xac\\x2f\\x13\\xe8\\xb2\\x06\\x97\\x16\\x1a\\xa2\\xcb\\xff\\x43\\x49\\x64\\x48\\x07\\x16\\x5b\\x12\\x13\\xea\\x9f\\xaa\\xbe\\x24\\x36\\x4d\\x7a\\x1f\\x9b\\x7f\\x79\\x76\\x65\\xe2\\x80\\x61\\x6c\\x31\\x5d\\x2c\\xc4\\xf9\\x25\\xc3\\x33\\xfa\\xba\\x6e\\x9a\\x97\\xce\\x78\\x70\\x8f\\xde\\xec\\x4b\\x80\\x88\\x54\\xde\\xba\\x8d\\x48\\x18\\x17\\x29\\x53\\x62\\x60\\x5c\\x48\\x35\\xa0\\x8d\\x0d\\x0f\\xb8\\x4c\\x09\\x26\\x8c\\x0b\\xe5\\x69\\x13\\xd2\\x15\\x02\\xc2\\xb8\\x90\\xca\\xd3\\xc6\\x06\\x28\\xad\\x26\\x28\\x2f\\xa8\\x35\\x00\\x88\\x09\\x65\\x5c\\x64\\xc4\\xd8\\xb6\\x36\\x36\\x34\\xeb\\x94\\x60\\x42\\x93\\x70\\xce\\x39\\xe7\\xbc\\x01\\x00\\x11\\x26\\x94\\x65\\x24\\x1a\\x0b\\x21\\x29\\x65\\x53\\x80\\xea\\xf0\\xd4\\x02\\x80\\x84\\x32\\x2e\\x42\\xbb\\x4f\\x80\\x8a\\x79\\xa5\\x74\\x68\\xb6\\x39\\x21\\x3c\\x65\\xef\\xc0\\x5e\\x08\\x6f\\xbd\\x82\\x23\\xe3\\x97\\x02\\x00\\xc2\\x84\\x32\\x2e\\xa4\\x1a\\x92\\xda\\xd8\\x93\\x7c\\x28\\xfe\\x11\\x40\\x02\\x11\\x26\\x94\\x71\\x21\\x55\\x5b\\x85\\x8f\\xea\\x38\\x8e\\xe5\\x90\\x9b\\x25\\x46\\x77\\xa6\\x63\\xb5\\xd4\\x91\\xf1\\x76\\x3b\\x84\\xee\\xb5\\x27\\x72\\xd3\\x5c\\x7e\\x66\\x1f\\xad\\xc6\\x0a\\x2c\\x27\\x62\\xd0\\x0b\\xb6\\xb8\\xf9\\x5c\\x58\\xa6\\x6c\\xaf\\x5e\\x75\\xae\\x8e\\xbc\\x3f\\xa2\\xfd\\x70\\xef\\x21\\x43\\x47\\xb7\\xb0\\x41\\x0c\\xfe\\xea\\xd7\\x7e\\x32\\xc6\\xf3\\x83\\xb6\\xbd\\xe8\\x76\\x71\\xdf\\xb1\\xa7\\x3c\\x5c\\x49\\x71\\xce\\x00\\xd6\\x62\\xe9\\x84\\x9e\\x7f\\xbc\\x7f\\x7c\\xec\\x9b\\xf3\\xaf\\xb0\\xcd\\xdb\\xf2\\x47\\xa6\\x5f\\xb7\\xb2\\xad\\xe6\\xf8\\x8c\\x37\\x1f\\xf5\\xf9\\x54\\x60\\x3b\\xf2\\x57\\xc2\\x9f\\x6e\\x66\\xd1\\xd3\\xbd\\xea\\x70\\xd4\\xe2\\xd7\\x3c\\x5d\\x6d\\xd4\\xaf\\xf7\\x5d\\xad\\xd5\\xc0\\xdd\\x53\\x0e\\x5d\\xd9\\x8b\\x1f\\xf9\\xf9\\x8a\\xa9\\x43\\x47\\xed\\x54\\x3d\\xa4\\xdd\\x1d\\x7a\\xe8\\xa3\\xc0\\x00\\x43\\x8c\\x30\\xc6\\x04\\x53\\xcc\\x30\\xc7\\x02\\x4b\\xac\\xb1\\xc1\\x16\\xcf\\x28\\xf1\\x82\\x57\\xbc\\xe1\\x7d\\x72\\xc2\\x03\\x8f\\xa6\\x1c\\x93\\xc0\\xd2\\xcc\\x06\\x1f\\xe1\\x2c\\x39\\x73\\xc0\\x55\\x2d\\xee\\x74\\x71\\x79\\xf1\\xe0\\xb4\\x43\\x37\\x94\\x91\\x9d\\x7e\\x9c\\x96\\xfc\\xc8\\xe9\\xca\\xe7\\x1a\\x35\\x54\\xbc\\x52\\xd2\\xa8\\x06\\x7f\\x39\\xaa\\x10\\x7b\\x7b\\x01\\x9e\\xc6\\xec\\xa8\\x73\\x6a\\x0f\\x6e\\xa1\\xa1\\x59\\x74\\x47\\x5d\\x52\\x73\\x3c\\xba\\x30\\x39\\xfc\\xc2\\x1c\\xbe\\x5a\\x6d\\xd4\\xda\\x09\\xbc\\x6c\\x54\\x3c\\xc9\\xaf\\x59\\x3a\\x68\\x01\\xe8\\x27\\x40\\x45\\xc7\\x75\\xff\\xed\\x9b\\xfa\\x71\\x48\\x29\\xd8\\x1e\\xec\\xc3\\xd9\\x36\\xff\\x33\\x09\\xbf\\xfa\\x7e\\xf3\\xd5\\xaa\\x3f\\xf9\\xa6\\x7e\\x37\\x01\\x7b\\x64\\x13\\xb4\\x0f\\x06\\xa9\\x50\\xd3\\xb7\\x93\\xd6\\xca\\xe5\\x32\\x72\\xed\\xed\\xa9\\xd4\\x95\\xf5\\x95\\x4a\\xe7\\xc2\\xe6\\x7b\\x30\\x9d\\x97\\x74\\xba\\xf0\\x69\\x4c\\x4e\\x06\\xe6\\x6e\\x46\\xc3\\xb1\\xfb\\x92\\x03\\xe6\\x8a\\xdc\\xa0\\xb8\\xed\\xd9\\x35\\x44\\xce\\xe7\\x4f\\x9d\\xa9\\xdd\\xa7\\x5e\\x59\\xc7\\x58\\x73\\xf5\\x71\\x01\\xe1\\xc7\\xd5\\xea\\x4d\\xfb\\x8a\\x09\\xba\\xd4\\x4f\\x60\\x79\\xfe\\x6a\\x1c\\x71\\x75\\xe4\\x10\\x57\\x38\\x95\\xc6\\xe9\\xef\\x95\\x06\\xf6\\x6d\\xed\\xe0\\x69\\x6b\\xd8\\x7d\\x8d\\x71\\xd8\\x53\\xc1\\x68\\x20\\xa9\\x6d\\x9e\\x07\\xd4\\x36\\x75\\x76\\x54\\x49\\x3d\\x74\\x0d\\xa8\\x1b\\xea\\x2d\\xc0\\x84\\xdd\\xae\\x63\\x04\\x79\\x89\\x42\\x00\\x5e\\x58\\x45\\x47\\xdd\\x61\\xe2\\x8a\\xa7\\x8e\\x11\\x54\\x05\\x96\\x5a\\x10\\x03\\xac\\x6d\\xe1\\xfa\\x1d\\xb7\\x9e\\x87\\x0e\\xc1\\xfe\\xa3\\xf8\\x0f\\xdd\\xb1\\xbe\\xf7\\x17\\xf5\\x2d\\x2a\\x3d\\x4e\\xb7\\x75\\x6c\\x14\\x6d\\x4d\\xbb\\x8e\\x89\\xb9\\x96\\x24\\x62\\xa0\\x8e\\x89\\xf9\\x13\\x14\\xd7\\x98\\xf5\\xfa\\x96\\x6c\\xc6\\x0d\\x6f\\xdb\\x53\\x66\\xc6\\x8f\\x6d\\x9d\\xe9\\xa2\\xad\\xa7\\xdd\\xdb\\xf6\\x0c\\x65\\xe2\\xe4\\x85\\x00\\xd3\\xa4\\xcc\\xaa\\x9b\\x94\\xd3\\x57\\xa9\\x8b\\xb2\\xc2\\x4c\\x28\\x26\\x18\\x51\\x80\\xf9\\x85\\xcd\\x40\\xa5\\xd6\\x99\\xea\\x85\\xa6\\xac\\xa9\\x64\\x51\\x02\\xdf\\xd1\\x51\\xea\\x51\\x3c\\xf0\\xc8\\x09\\x46\\x3f\\xf8\\xaa\\xd4\\x0d\\x5d\\xb1\\x4d\\x68\\x26\\x6c\\xa2\\xc9\\xb7\\x5d\\xde\\x96\\x80\\xbd\\xbe\\xb5\\xd2\\x7a\\xab\\x5d\\x9d\\xa4\\x31\\xa8\\xed\\x6a\\x60\\xee\\x65\\xc1\\xdb\\xa5\\x6e\\xf4\\xf7\\x9e\\xe6\\x2f\\x66\\xf9\\x7b\\xa6\\x92\\x1f\\xbb\\x5c\\xea\\x55\\x58\\x29\\xa5\\x15\\x12\\x6c\\xa1\\xa4\\x7b\\x14\\xca\\x7e\\xbf\\xfd\\x90\\xf5\\x9e\\x60\\x3b\\x46\\xea\\x5f\\xd8\\xfa\\x76\\xad\\x43\\xff\\x67\\xd9\\x7f\\x3f\\x8f\\xfb\\x95\\xfa\\x21\\x00\\xf8\\xff\\x70\\x5b\\x1f\\x7e\\x00\\xff\\xd3\\x11\\x2f\\x6e\\x03\\xb8\\x7f\\xdf\\xca\\x3d\\x41\\xbb\\xce\\xc8\\xe5\\xf3\\x15\\x5e\\x6f\\x71\\x5c\\x87\\x7d\\x71\\x7e\\x1d\\xcf\\xcd\\xe9\\xa4\\x7a\\x2d\\x64\\x81\\x3d\\x1c\\x66\\xa5\\x33\\x24\\x1c\\xc1\\xeb\\xce\\xf9\\x59\\x4b\\xab\\x0a\\x20\\x5a\\x5c\\xf7\\x0e\\x68\\xf4\\x79\\x78\\x0a\\x5d\\x48\\x09\\xe6\\xfe\\xeb\\x81\\x8a\\x10\\x0c\\xeb\\x00\\xbb\\xc3\\x32\\x48\\x4a\\xc2\\x11\\xfc\\x3a\\x2a\\x8f\\x62\\x72\\x54\\xcb\\xad\\x1c\\x03\\x9a\\x39\\x8c\\xcb\\x8c\\x46\\x3b\\x8c\\xab\\x2d\\x50\\x6d\\xfa\\x61\\xad\\x0a\\xe6\\x20\\xcc\\xc6\\x61\\x50\\x6d\\x24\\x6d\\xea\\x0c\\xf7\\x22\\x68\\x00\\xc6\\x86\\xd5\\xce\\xf5\\x43\\x73\\xa0\\x74\\xca\\x04\\x67\\x72\\xda\\x01\\x55\\xf0\\xb8\\x4d\\x95\\xa3\\xcf\\xa0\\x44\\x17\\xc9\\x16\\xd0\\x25\\x1b\\x61\\xc9\\x63\\xca\\x8b\\x2f\\xde\\x47\\xd1\\x58\\x12\\xfb\\x73\\xeb\\xc5\\x57\\xb3\\xf6\\x0a\\x8f\\xf5\\x64\\x06\\x3a\\x0f\\x88\\x45\\xb1\\x0c\\x7a\\xfe\\x08\\x58\\x59\\x33\\x09\\xf2\\x84\\x74\\x4a\\xcb\\xac\\xd6\\x57\\xae\\x33\\x6a\\x99\\x6f\\x63\\xc4\\x3d\\x2d\\xe9\\x8d\\xc1\\x57\\xdb\\x65\\xf3\\x37\\xf7\\xae\\xf5\\x90\\xf2\\x33\\x95\\xd2\\xcb\\x30\\x6d\\xed\\x70\\xc2\\x1e\\x25\\x1a\\x87\\xc9\\xd0\\x46\\x5f\\xbf\\x6f\\x81\\xdf\\xd8\\x58\\xe2\\xcf\\x24\\x70\\x81\\xa2\\x14\\x79\\x32\\x55\\x44\\x8e\\x8f\\x48\\xf4\\x81\\x40\\xb6\\x7e\\x99\\x73\\x6e\\x2d\\x67\\xf4\\xd3\\x91\\xc7\\x0b\\xee\\x3f\\x03\\x31\\x45\\xfc\\x47\\x49\\x17\\x3b\\x18\\x5d\\x3e\\x2e\\x44\\x01\\x92\\xc4\\xbc\\xb1\\x4a\\xa1\\x56\\x98\\x72\\x3b\\x15\\xd6\\xac\\x8f\\x15\\x8d\\x26\\x71\\x86\\x61\\xe6\\x6b\\x0a\\x4f\\x87\\x3d\\xc6\\xab\\xdc\\x3f\\x14\\xae\\x3b\\x56\\x68\\xc2\\x38\\x1c\\xc4\\x41\\x5a\\xe2\\xe5\\x4e\\x31\\xc2\\xa1\\x34\\x32\\x60\\x19\\xae\\x9a\\xfc\\x36\\xa8\\xf0\\xbd\\x4e\\xc6\\x0a\\x45\\x75\\x1c\\x79\\x15\\x5d\\xb4\\xb3\\x48\\xc6\\xd9\\x21\\x5e\\x3a\\x52\\xa9\\x45\\x57\\x0c\\xf7\\x98\\x06\\xc0\\x3b\\xdc\\x92\\xdf\\x26\\x77\\x4f\\x5d\\x00\\x84\\xa9\\xd4\\x66\\xcc\\xae\\x2b\\x01\\x40\\x44\\x62\\x57\\x19\\x60\\xe4\\x32\\xa4\\x02\\x04\\xe2\\xe8\\xad\\x22\\xe0\\x39\\xc5\\xb8\\xd0\\xe0\\xf1\\x65\\x4c\\x5f\\x0b\\x7b\\x4b\\x7f\\xde\\xd9\\xf5\\x29\\x78\\x01\\x89\\x2e\\xd7\\xe0\\x8f\\x2e\\x9f\\x0f\\x4b\\xdf\\x35\\xc9\\xbf\\x55\\x6c\\xa6\\xa2\\xb7\\xfb\\x8e\\x96\\x8a\\x5b\\xf0\\x6b\\x13\\xe4\\x26\\x3a\\xd8\\x6c\\x19\\x0d\\xcf\\xc7\\x32\\xd1\\x1e\\x2c\\xdc\\x2b\\x41\\xfb\\xfe\\x23\\x7d\\x77\\x04\\x00\\x51\\x3c\\x9a\\x15\\x39\\x85\\x56\\xca\\x10\\x0a\\x82\\xc8\\xf9\\x76\\x64\\xb9\\x42\\xf9\\x99\\xd9\\xaa\\x95\\x67\\xd7\\xed\\x06\\x88\\xa2\\x66\\x8c\\xd9\\xc3\\x84\\x32\\xae\\xa4\\xa7\\x8d\\x8d\\x9b\\x5d\\x22\\x98\\x50\\xc6\\x85\\x0c\\x74\\x1f\\x68\\x63\\xe3\\x56\\xe2\\xea\\x25\\x87\\x04\\x61\\x42\\x43\\x5c\\xaf\\x61\\x68\\x36\\x0b\\x93\\x83\\x96\\xfe\\xe3\\x16\\x10\\x88\\x46\\x8d\\x50\\xc6\\x85\\x54\\x9e\\x36\\x76\\x5d\\x1f\\x00\\x44\\x98\\x50\\xc6\\x85\\x54\\x9e\\x36\\x36\\x6e\\x6b\\xad\\xb5\\xd6\\x5a\\x6b\\xad\\xb5\\xd6\\x5a\\x1b\\x63\\x8c\\x31\\xc6\\x18\\x63\\x8c\\x31\\xc6\\x58\\x6b\\xad\\xb5\\xd6\\x5a\\x6b\\xad\\xb5\\xd6\\x3a\\xd7\\x13\\xa0\\x8c\\x8b\\x9f\\xec\\xd5\\x7f\\x77\\x33\\xce\\xb0\\xdf\\x14\\x25\\xcd\\xda\\x47\\x7e\\x92\\xf2\\x43\\xb0\\x5e\\xb3\\x1f\\x61\\x36\\x43\\xb0\\xf7\\xc1\\x64\\xa5\\x6b\\x10\\xb5\\xa6\\x41\\xe4\\x27\\x69\\x3d\\xc4\\xc5\\x6c\\x63\\x20\\x76\\xd4\\x88\\x0c\\xc1\\x36\\xb0\\xa3\\xb2\\x3a\\x49\\xec\\x59\\x29\\x63\\xe9\\x5c\\xc3\\x05\\x98\\x22\\xc4\\xce\\xd0\\xed\\xc2\\x5f\\x84\\x0c\\xd9\\x02\\x72\\xa0\\x67\\x35\\xe1\\xff\\xe2\\xc1\\x66\\x5f\\xe9\\x4b\\x01\\x33\\x51\\xa7\\x58\\xa0\\x7f\\xff\\xff\\x0b\\x3c\\x2a\\x00\\xbc\\xc9\\x3d\\xc0\\xf2\\x84\\x80\\xa4\\xf0\\xb5\\xe1\\x01\\x01\\xbb\\x89\\x34\\x64\\xc6\\xce\\xc2\\xf1\\x29\\x7e\\x92\\xbd\\xcc\\x56\\xb5\\xec\\xf7\\x95\\x04\\x4c\\x9e\\x41\\x03\\xb7\\xd6\\xbd\\xd5\\x9d\\xc6\\xc2\\x01\\xff\\x9a\\xdb\\x1a\\x06\\x3a\\x3b\\xb0\\x03\\x72\\x61\\x2c\\x98\\x7d\\x9c\\x91\\xb0\\x93\\xee\\x2c\\x7c\\x18\\xfd\\xe2\\x4e\\x07\\x5c\\xbb\\xbc\\x82\\x04\\x0a\\xc1\\x19\\x5f\\xe6\\xb9\\xfe\\xb2\\xc1\\xec\\x26\\x62\\x7b\\xdf\\x0b\\xc3\\x4d\\x6e\\xec\\x2e\\xdc\\x16\\x85\\x87\\xc8\\xe6\\x93\\x6f\\xe2\\xe8\\xb7\\x30\\x46\\x63\\x7a\\xa7\\x8f\\x00\\x01\\x00\\x00\\xff\\xff\\xaf\\x03\\xf3\\x67\\x14\\xc9\\x00\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff2() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff2,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.woff2\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_eot = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x74\\xae\\x55\\x50\\x1b\\x0e\\xd0\\xb7\\x9b\\x40\\xf0\\xe0\\xee\\x21\\x04\\x77\\x87\\x22\\x0d\\x10\\xdc\\xa5\\xfc\\xb1\\xe2\\xee\\x5e\\xa0\\x94\\x12\\xdc\\x8b\\xbb\\x04\\x77\\x8a\\x16\\x77\\xd7\\x22\\xc5\\xa5\\x68\\xd1\\xe2\\xa5\\x14\\x28\\x3d\\x73\\xde\\xf9\\x2e\\xde\\x39\\x67\\xbe\\xdf\\x5e\\xec\\xce\\x3e\\x33\\xfb\\xac\\xcf\\x0e\\x00\\xe0\\xf4\\x1d\\x00\\x40\\x03\\xa0\\x01\\x40\\x80\\xff\\x1d\\x20\\xa0\\x1b\\xed\\xff\\xed\\xea\\xda\\xff\\xd0\\x00\\x3b\\x26\\x10\\x00\\x11\\xe4\\xff\\x90\\x42\\x20\\x00\\x02\\x00\\x00\\xb5\\x34\\x65\\x33\\x9c\\x00\\xff\\xbf\\x50\\x00\\x74\\x01\\xee\\x00\\x2b\\x80\\x3b\\xc0\\x07\\xe0\\x0e\\x80\\x00\\x34\\x00\\xee\\x00\\x37\\x80\\x3b\\x00\\x00\\xc0\\x06\\xc8\\x01\\xdc\\x01\\x2e\\x00\\x1b\\x00\\x00\\xa0\\x0f\\x30\\x00\\xd8\\x02\\xbc\\x00\\xde\\x00\\xc7\\xff\\xe1\\x10\\x80\\x20\\x80\\x17\\xc0\\xff\\x3f\\x25\\x01\\x10\\x07\\x88\\x00\\x24\\xff\\x67\\xc7\\x0f\\x10\\xf8\\x3f\\xb3\\x0f\\xc0\\x07\\x60\\x07\\xb0\\x04\\xf8\\xfe\\xcf\\x5d\\x07\\x80\\x23\\xc0\\x0d\\xe0\\x03\\x80\\x00\\xd8\\x01\\x7e\\x00\\x01\\x00\\x2f\\x40\\x08\\xc0\\x01\\x00\\x00\\x20\\xff\\x17\\x3b\\xe4\\x7f\\xb9\\x01\\x00\\x39\\x3d\\x25\\xed\\xff\\xef\\xdf\\xe8\\x40\\x19\\x61\\xc0\\x67\\x34\\xc0\\x0c\\x16\\x20\\x99\\x86\\x6c\\xe6\\x24\\xfe\\xeb\\x52\\x34\\x75\\x53\\x4e\\xe8\\xdd\\xc5\\xd5\\x8d\\x3a\\x5d\\x0e\\x9d\\x83\\xb0\\xf0\\x85\\x43\\xd2\\x3c\\x41\\x29\\x1a\\xfa\\x93\\xf8\\xe8\\x6f\\x50\\x56\\xa0\\x68\\x45\\x52\\x7c\\xd6\\xcf\\xb4\\xbc\\x56\\x50\\x19\\xad\\x8e\\xdc\\x3b\\x9c\\x6d\\x5f\\xb7\\xf2\\x3c\\xcd\\xee\\x11\\x0e\\x47\\xfb\\x18\\xc1\\x01\\xe1\\x0e\\x2a\\x9d\\x43\\x41\\x3b\\x3d\\xd5\\x9f\\xc2\\x70\\x3d\\xe9\\xe7\\x0d\\xb2\\xd4\\x1e\\x6b\\xf9\\xc9\\x9a\\x3e\\x24\\x65\\xf9\\xad\\x4d\\x59\\x6e\\xd9\\x50\\xa8\\x04\\x6a\\xff\\x56\\xef\\x0b\\x37\\xbd\\x98\\x02\\xc3\\x99\\x81\\xad\\xd1\\x16\\x06\\x56\\x89\\xe0\\x87\\x89\\x0f\\xba\\x97\\x58\\xa4\\x9f\\xd0\\x10\\x49\\xfd\\x3c\\x34\\xfb\\x42\\x58\\xd2\\x8c\\x17\\xc8\\x4b\\xaf\\x26\\x3d\\xee\\x66\\xd7\\xd3\\x61\\x7e\\xdf\\x1b\\xbb\\x5e\\x2d\\xd3\\xb3\\x3a\\x5c\\x35\\x8c\\x77\\x94\\x3e\\xc9\\x4d\\x47\\xd4\\xe1\\x18\\xb4\\x67\\xdd\\xe6\\xb3\\xcf\\xd7\\xfa\\x46\\x19\\x58\\x26\\x91\\xda\\x8c\\x47\\x59\\x0c\\x86\\xd4\\xee\\xb7\\xee\\x5a\\xfe\\x2f\\x0c\\xef\\x57\\x4c\\x4c\\x25\\x3e\\xd9\\xa5\\x84\\x28\\x2c\\xcf\\x03\\x49\\x62\\x3f\\x2d\\xb5\\xc5\\x10\\x83\\x62\\x2b\\xf6\\x72\\x7c\\x88\\x77\\x2c\\xf6\\x05\\xd0\\x93\\x31\\x05\\xa7\\xff\\x92\\x3e\\x48\\x68\\x86\\xdd\\x50\\x0c\\x99\\x24\\x90\\x09\\x1b\\x26\\x0f\\x28\\x45\\xf0\\x83\\xc6\\x89\\xe0\\xb2\\x48\\xe0\\x31\\xe3\\x1d\\x63\\xe9\\xf7\\x28\\x34\\xb1\\x93\\x56\\x82\\xca\\x85\\x28\\x45\\x67\\x79\\xe3\\x5c\\xf6\\x35\\x3b\\x54\\x80\\x90\\x5c\\xbb\\x57\\x73\\x7a\\x96\\xe0\\x31\\x1d\\x57\\x95\\x4f\\xa6\\x8e\\x6f\\xa6\\xa5\\xdf\\x27\\x8f\\xdf\\xd1\\x00\\x38\\x14\\x8d\\x88\\x0a\\x09\\xc2\\x85\\x58\\xa2\\x47\\xb3\\x84\\x66\\x77\\x61\\x34\\x47\\x82\\x2d\\x96\\x09\\x2c\\xee\\xe1\\xc1\\x24\\x78\\xf3\\xc8\\xd9\\x4d\\x3a\\xbf\\x07\\x31\\x58\\xa8\\x97\\x21\\xd6\\x4e\\x88\\x35\\x19\\xfa\\x91\\xa1\\xaf\\xc2\\x45\\x75\\xcf\\x7c\\x42\\xa7\\x44\\x9b\\x83\\xe8\\x4f\\xd6\\xcd\\xfe\\x8d\\x7b\\x9a\\xe0\\x85\\xd9\\x20\\xa3\\xcc\\x5b\\xc9\\xf0\\x59\\x12\\x3b\\x06\\xc8\\xbd\\xed\\x42\\xb6\\xcf\\x0f\\xed\\x9b\\xfa\\xda\\x9a\\x3a\\xce\\xb3\\xc9\\x2e\\x12\\xde\\xe9\\x68\\x62\\xe8\\xcf\\xf1\\xae\\x14\\xde\\xf3\\xb8\\xee\\xbd\\x63\\x4f\\x00\\x18\\x82\\x11\\x0e\\xe4\\x0f\\x11\\xa5\\xf4\\x0d\\x47\\x6b\\x08\\xb1\\x23\\x22\\x18\\x44\\xa3\\x82\\xab\\x61\\xe3\\x5a\\x02\\x5d\\xf8\\x44\\x29\\x9b\\x29\\xc1\\x1e\\x8c\\xe1\\x38\\x96\\x68\\xfe\\x08\\x05\\x45\\x89\\x0c\\x54\\xa9\\x4d\\xae\\x16\\xa1\\x9b\\x8b\\x55\\x62\\xcf\\x5a\\x71\\x1c\\xe1\\x65\\x21\\x67\\x3b\\xb6\\xd0\\x6f\\xb8\\xcf\\x9f\\xbf\\x6e\\x47\\x7f\\xaf\\x42\\x99\\x32\\x29\\x20\\x0d\\xdd\\x97\\x6f\\xbf\\x61\\x83\\x19\\x3b\\x39\\x77\\x9d\\x47\\x97\\x79\\x43\\xf8\\x3c\\xba\\x62\\x2a\\x26\\x30\\x95\\x8b\\x80\\x91\\x02\\x19\\x27\\x33\\xd3\\x5f\\xf7\\x54\\x1d\\x8e\\x8a\\x45\\xdf\\xfb\\x4c\\x1d\\x50\\x59\\x75\\x32\\x8e\\xce\\xbf\\x77\\x32\\x86\\xba\\x0b\\x41\\x8d\\x70\\xe9\\xac\\xac\\xd7\\x68\\x98\\xa5\\x05\\x05\\x48\\x95\\xde\\xef\\x8c\\x0c\\xaa\\x09\\xb0\\x1a\\xbc\\xc4\\x89\\x05\\x64\\x22\\x52\\x10\\xa9\\x7b\\xe8\\x1c\\xce\\xd1\\x88\\x2f\\xea\\xb5\\xca\\x39\\xd1\\x9c\\xde\\x3f\\x2b\\x50\\xce\\x16\\x96\\xf6\\x3e\\xc6\\x5b\\xc0\\x54\\x72\\x90\\x1a\\xe3\\xeb\\xc1\\xd4\\x8d\\x62\\x66\\x0f\\xad\\x60\\x79\\x7c\\xe2\\xd0\\xff\\x3e\\xa5\\xf8\\x68\\x0d\\x85\\x58\\x26\\x74\\xe8\\x64\\xc0\\x0e\\x73\\xe5\\x26\\xc9\\x08\\x73\\x6b\\x5c\\xfe\\xd8\\xa9\\xaa\\x97\\xd8\\x5b\\xc8\\x85\\x7b\\x9c\\x81\\x43\\x12\\xa4\\x78\\x14\\x80\\xa2\\xa2\\xae\\xbd\\x88\\xf5\\x0d\\x4f\\x47\\xbc\\x46\\x19\\x03\\xa2\\x37\\x76\\x7b\\xbb\\x40\\xb3\\xa9\\x44\\x1b\\x45\\x0b\\x55\\xd0\\x73\\x40\\x7c\\xe3\\xb1\\xd0\\xd8\\x9c\\x11\\x46\\xfb\\xdb\\x35\\x16\\xfa\\x2a\\xbd\\x94\\x7f\\xdb\\xa4\\x02\\xb3\\xb4\\xb2\\x16\\xa1\\x54\\xdf\\xf1\\x98\\x6c\\xd9\\x60\\xa9\\xd5\\xe4\\x9f\\x2d\\x65\\x39\\x8a\\xee\\xb8\\x2d\\x9d\\x28\\x7c\\x12\\x1c\\xb4\\x23\\x30\\xb2\\x44\\x87\\x1a\\x8c\\xf6\\xca\\x61\\x72\\x5e\\x5c\\x45\\x72\\x34\\x11\\x0e\\xef\\x08\\x21\\xce\\x1d\\xaf\\xa8\\xe0\\x2f\\x68\\xa8\\x11\\x8c\\x07\\x23\\x6a\\x56\\xf8\\xa7\\xd6\\x73\\xd1\\x97\\x43\\x19\\xcf\\xc6\\x57\\x04\\x04\\xa5\\x33\\xf1\\xe7\\x3b\\x74\\xc1\\x39\\x46\\xe5\\xed\\x00\\x76\\x98\\x2a\\xc9\\x84\\x06\\xa3\\xa7\\x83\\x96\\xe3\\xc8\\xc6\\x46\\xb3\\x5b\\xad\\xfb\\x32\\x4b\\x66\\xb4\\x60\\xb0\\xa9\\x88\\x50\\x53\\xb9\\x6f\\x91\\x0f\\xe4\\x46\\x41\\x80\\x82\\x36\\x3c\\xe0\\xcf\\x0a\\xbe\\x1a\\x22\\x34\\x2f\\x4f\\x2b\\x90\\x31\\x75\\xfb\\xcd\\x41\\xf6\\x1d\\x9d\\x26\\x66\\xd0\\x52\\x9c\\xe7\\x6b\\xb9\\xe9\\xf5\\x39\\x15\\x09\\x9b\\x33\\xd8\\xe4\\xe0\\x48\\x7f\\xa1\\xa9\\x33\\xe1\\xfe\\x03\\x5e\\xd9\\x9c\\xb8\\x5a\\x58\\xd9\\xf0\\x07\\xc4\\x1d\\x3c\\x9e\\x52\\xfa\\x28\\xef\\x6c\\xdc\\x2c\\x35\\x59\\xf0\\xe2\\x19\\x17\\x80\\x21\\xd8\\xcd\\x06\\xda\\x8a\\x0d\\x83\\x0d\\xe8\\x1f\\x58\\xe6\\x31\\x47\\x49\\x24\\xcd\\x01\\x54\\x58\\xfb\\x1f\\x9b\\x58\\x01\\x9c\\xa2\\x11\\xb3\\x9f\\x2c\\x76\\x8c\\x13\\x9e\\xe5\\x82\\x92\\x20\\xa4\\x66\\xd8\\x22\\x26\\xfa\\xd7\\xb8\\xb5\\x4c\\xb2\\xd8\\x3b\\xb2\\x78\\xb0\\xc3\\x1c\\x5f\\x7d\\x44\\x31\\x2e\\x1b\\x52\\xca\\x38\\x54\\x49\\x21\\x91\\xb4\\x32\\xcd\\xd6\\x7f\\x3c\\xa9\\xe1\\xa8\\x1d\\x35\\xc8\\x0d\\xe1\\x6f\\x84\\xe3\\xcf\\xfc\\x00\\xa3\\xb1\\x68\\x1f\\x4e\\x62\\x98\\x79\\xce\\x4c\\xeb\\x9f\\x73\\x7c\\x33\\xcc\\x0d\\x6d\\xe0\\xa0\\xe8\\xc8\\x68\\x21\\x19\\xe7\\x1d\\x9c\\x93\\x23\\xcb\\xd2\\xf9\\xe6\\x3d\\xe2\\x07\\xc4\\x86\\x17\\x34\\xaf\\x3f\\x8c\\x31\\xbc\\x17\\x0c\\x99\\x59\\x16\\xe8\\x70\\x31\\x53\\x95\\x6c\\xc2\\xd0\\x90\\xa0\\xc9\\xd9\\x86\\xc1\\xdf\\xb1\\xfb\\xf6\\x67\\xdc\\x2e\\xb4\\xa9\\x5b\\xa3\\x4d\\x5b\\xcb\\x2d\\x67\\x7a\\x2a\\xd4\\x37\\x81\\x5d\\x4f\\x5e\\x2e\\xf5\\xce\\x9f\\x0b\\xfd\\x96\\xa2\\x76\\xdb\\xbf\\x07\\xc6\\x0b\\x32\\x00\\x23\\x08\\x97\\x78\\x93\\x0e\\xe7\\x9f\\x10\\x9e\\xca\\xb6\\xf8\\x7a\\x87\\x90\\x8d\\x2d\\x1f\\x36\\x2d\\x80\\x4d\\x6b\\xdb\\x8d\\xa7\\x8f\\x96\\x5b\\x5e\\x3f\\xdc\\x1f\\x10\\xb9\\x03\\x5d\\x67\\x1d\\xf0\\xb1\\x24\\xc7\\x57\\x98\\x23\\x38\\x7b\\x33\\x5f\\x97\\x14\\x91\\xe6\\xb0\\x79\\x2b\\x03\\xfd\\x5e\\xd0\\x51\\xa1\\xa0\\xe5\\x1b\\x88\\x6b\\xaa\\x34\\x1e\\xc0\\x6e\\x56\\xb0\\x6e\\xc8\\x1c\\x9d\\xc7\\x8c\\xad\\x60\\xac\\xb8\\xf9\\x43\\xfd\\xdd\\x4a\\xe7\\xac\\xf0\\x5c\\x11\\x0b\\x53\\x9a\\xec\\xd5\\x93\\x1b\\x26\\x5b\\x1b\\xfb\\x1f\\xae\\x41\\x60\\xb3\\x58\\x92\\x30\\x57\\x36\\x14\\xdb\\xf0\\xc0\\xed\\xd5\\x61\\xc3\\xd0\\xd9\\x38\\x91\\x93\\x9d\\xfe\\xa6\\xd4\\x2c\\x44\\xe0\\xa4\\x6d\\x2f\\x62\\xf7\\x94\\x07\\x53\\xa0\\x66\\x10\\x83\\x3b\\x48\\x10\\xa1\\x36\\xd4\\xe1\\xe4\\x55\\x08\\x63\\x2d\\xc1\\x38\\xb7\\xb7\\xb1\\xe8\\x2d\\x03\\xc4\\xf9\\x7e\\x9f\\x4b\\xc6\\xc7\\x36\\xda\\xc7\\xa2\\x72\\x60\\xf0\\x78\\x17\\x58\\xa7\\x68\\xed\\xcd\\xf7\\xdb\\xce\\xeb\\xfd\\xb6\\x3b\\xab\\xc5\\xe2\\xc8\\x5b\\x5f\\x17\\x7c\\x12\\x2f\\x41\\x23\\xd7\\x98\\xa3\\x45\\x91\\x9b\\xd6\\x66\\xa4\\xb8\\x76\\xc4\\xbc\\x46\\xce\\xa0\\xc9\\x80\\x2c\\x75\\xb5\\x81\\xf2\\x94\\x12\\x1e\\x85\\xa7\\x19\\xb2\\x86\\x42\\xa7\\x16\\xb0\\x32\\x64\\x7d\\x10\\xb3\\xae\\x90\\x35\\x2e\\x8f\\xab\\x80\\x29\\xfc\\x8f\\x80\\xd2\\xbf\\x5c\\xe2\\x28\\x2b\\x9b\\xa9\\xf9\\x76\\x4a\\xb1\\x0f\\xa8\\xbf\\x52\\x7c\\xaa\\x99\\xd1\\x3e\\x82\\xe6\\x94\\xa6\\xdf\\xe4\\x0b\\xcd\\xa3\\xb9\\x6d\\xbe\\x5f\\x68\\x54\\x25\\xf9\\x7b\\x6e\\x89\\xae\\xf7\\xcb\\x84\\xb5\\x93\\x67\\x04\\x58\\xc9\\x59\\x24\\xae\\x36\\x17\\xc3\\x45\\x5d\\x2a\\xf2\\x99\\x0c\\x3d\\xce\\x62\\x70\\x60\\x39\\x7e\\x22\\x88\\xe5\\x16\\x11\\x95\\xec\\xf4\\xb6\\x7d\\x26\\xfb\\x01\\xcf\\x98\\x14\\x65\\x54\\xfc\\xa0\\x61\\x67\\x1a\\xe2\\xd3\\x61\\x13\\x8f\\xd1\\x6b\\x76\\x2a\\x8f\\x62\\x51\\x24\\x82\\x06\\x02\\x83\\x16\\x8b\\x2f\\x60\\x34\\xc4\\xe1\\xd0\\x29\\x18\\x88\\x93\\xff\\xb4\\x22\\xdd\\x02\\x9c\\x94\\xec\\x33\\xe2\\xa9\\x8a\\xf1\\x81\\x05\\x18\\x59\\x2c\\xeb\\x98\\x9a\\x69\\x2a\\x57\\xf8\\x3e\\xe5\\xd5\\xc1\\x6f\\xa8\\x45\\x93\\x33\\x11\\x31\\x9c\\xaa\\x15\\xb9\\x30\\xdf\\x8e\\xd4\\xc1\\xf3\\xe8\\x03\\x28\\x20\\x85\\xfc\\x3f\\x00\\x80\\xc0\\xaf\\x46\\x89\\x28\\x4f\\x78\\x26\\x8f\\xd0\\xfe\\xa8\\x9b\\x32\\xe5\\x0d\\x28\\xe8\\x7d\\x1d\\x4e\\x9f\\xf4\\xaf\\x1f\\x32\\x96\\xc1\\x36\\xdc\\x9a\\x03\\xff\\xd8\\xbd\\x16\\xe3\\x62\\xa5\\x62\\xb5\\x5f\\x7f\\xc7\\x4b\\xf6\\x7f\\xdd\\xd4\\xb6\\x07\\xae\\x66\\x34\\x71\\x1c\\xc6\\xc0\\x80\\x72\\x08\\xaf\\xc8\\x34\\x79\\x66\\xe2\\xd5\\xb6\\x8f\\x1f\\x95\\xd2\\x9a\\x9d\\x9d\\x89\\x94\\xa9\\x14\\x22\\xf0\\xe7\\x3a\\xa9\\x83\\x99\\x2d\\x2a\\x81\\x0e\\x75\\x75\\xdb\\xd5\\xf7\\xc7\\x73\\x52\\x55\\x9b\\xa3\\x36\\xde\\x2b\\x48\\x57\\x77\\xd9\\x4d\\x78\\x4a\\x5e\\xe6\\xb2\\x46\\x2a\\xe2\\x4f\\x22\\xc2\\xaf\\x24\\xfe\\xa4\\x78\\x5c\\x28\\x65\\x7a\\x4b\\x05\\x0a\\x67\\xee\\x9b\\xe8\\x6a\\x19\\x99\\xd6\\x74\\xcf\\x14\\xd4\\x12\\xa0\\x71\\x18\\x52\\x92\\xe1\\xf0\\x67\\xeb\\xe7\\x19\\x78\\x55\\xaf\\xf8\\xc0\\xf4\\x06\\xf3\\x01\\xc2\\xb3\\x93\\xf3\\xc3\\x3d\\x14\\xe0\\x1e\\x7a\\xca\\xaf\\xd9\\xdf\\x4b\\xbb\\x13\\xbb\\x17\\xe8\\x85\\x97\\xb0\\xe0\\xa7\\x1b\\xae\\x07\\x12\\xb4\\xf3\\x5e\\x53\\x3d\\xc1\\x98\\x67\\x6d\\xf4\\xd8\\x54\\x31\\xe1\\x07\\xbd\\x3b\\x5e\\xb3\\x10\\x73\\x98\\xf7\\x1e\\x20\\x3e\\x79\\xc1\\x96\\xfb\\x0f\\x84\\x32\\xdb\\xcc\\x4d\\xf4\\xa5\\xfd\\x3e\\x22\\x72\\x4b\\xe8\\xa6\\x09\\xf8\\x14\\x93\\xe9\\xcd\\x16\\xb6\\x87\\xbd\\x84\\xc9\\xe1\\x5f\\x36\\xba\\x77\\x16\\xaf\\x89\\x81\\xa9\\x56\\xc4\\xe9\\x52\\xd5\\x1c\\xf7\\x99\\xe0\\x67\\x4c\\xd0\\xa3\\xc2\\x60\\x1e\\xea\\x11\\x25\\x1c\\x3f\\x2f\\x0d\\xdd\\x9f\\x36\\xbd\\x60\\x0c\\xc9\\xe7\\x48\\x67\\xfa\\x06\\x71\\x7c\\x5e\\x37\\x45\\x1b\\x53\\x9b\\x77\\x3a\\xdc\\xaa\\xea\\x07\\x7f\\x08\\x23\\x6a\\x67\\x30\\x42\\x0b\\x31\\x9a\\x05\\xa1\\xf7\\xa1\\xef\\x10\\xe2\\x0e\\xd4\\x2f\\x56\\x4c\\x7f\\x78\\x84\\x39\\xad\\x89\\xea\\xb3\\x0b\\xf7\\x73\\x6a\\xe3\\x57\\xd6\\x0e\\x68\\xfe\\xa9\\x4f\\x05\\x45\\xcc\\x46\\x7b\\xbf\\x75\\x45\\xbe\\x9d\\x3a\\x57\\x6c\\xdc\\x77\\x6f\\x6d\\x69\\xfd\\x3d\\x85\\xaf\\x80\\x02\\x7c\\xc5\\xce\\xc7\\xab\\x1c\\xa1\\xce\\xb4\\x98\\xa2\\x5b\\xb8\\x48\\x9f\\x88\\x5b\\x97\\xe4\\xfd\\xfb\\x46\\x93\\x2e\\xba\\x99\\x73\\x2c\\xbf\\x7d\\x81\\xc0\\xb7\\x25\\xab\\x2b\\x09\\x0d\\x7c\\xc1\\xb9\\x51\\x6d\\x8d\\x96\\x64\\xa3\\x17\\x87\\x20\\x7e\\x5d\\xbe\\x8d\\xdd\\xc6\\x87\\x0b\\xf4\\x36\\x12\\x91\\x5b\\x3e\\x36\\x3d\\x2d\\x82\\x88\\x7e\\x70\\xc4\\xe9\\x0d\\xc7\\x39\\x3d\\x8b\\xcb\\x23\\x80\\xdd\\xee\\x3b\\x08\\xb8\\x98\\x0b\\x0b\\x30\\xbf\\xe9\\x16\\x0f\\xb5\\x17\\x68\\x25\\x59\\x31\\xf4\\x8f\\x37\\x2d\\x00\\x54\\x33\\x6b\\x48\\xe6\\xf8\\x95\\xdc\\x96\\x5c\\xb0\\x86\\xf8\\xbc\\x42\\x2b\\x45\\x36\\x68\\x2f\\x50\\xcd\\x2e\\x4b\\x7d\\xeb\\x58\\x34\\x06\\x2d\\xd1\\x42\\x85\\x01\\x82\\x2f\\xe9\\x1c\\x12\\x4e\\x2a\\xf1\\xc3\\x39\\x77\\x98\\x6a\\xc7\\x70\\x10\\x4e\\xbe\\x01\\x3d\\xe2\\xd1\\x4b\\x53\\x7b\\x0d\\xb5\\x26\\x1b\\x16\\x15\\x44\\x7d\\x54\\x27\\xc3\\x82\\xc4\\x82\\x86\\x85\\xa6\\xf6\\x04\\x0c\\xc9\\x47\\x82\\x37\\x1b\\x7d\\x37\\x30\\xaa\\x27\\xdb\\x5c\\x9c\\xeb\\xbd\\xda\\x8b\\xf3\\x30\\x28\\xbf\\x84\\x88\\x4c\\xae\\xcd\\xfa\\x62\\xec\\x67\\x99\\x74\\xd3\\x72\\xc5\\x9e\\x30\\xfe\\xa5\\x6f\\x26\\xe9\\x10\\xda\\x4d\\xbc\\xf3\\xa1\\x7b\\xc3\\xdd\\x97\\x2a\\x48\\x3c\\xc7\\x78\\x5b\\xef\\x15\\xef\\xe5\\x1d\\xa0\\xe8\\xc7\\xf1\\x3b\\x8b\\x20\\x39\\x4b\\xed\\x4f\\x92\\x98\\x7b\\xbf\\xd4\\x7d\\x58\\x55\\xb9\\xcb\\x08\\x12\\x6a\\xf1\\x3d\\x69\\xf1\\xf5\\xd3\\xa7\\xb9\\x1d\\xfb\\xf4\\x1e\\x67\\x17\\x37\\xd3\\x17\\x9f\\x62\\x51\\x82\\xde\\x97\\x1b\\xbd\\x96\\x7f\\xd6\\x31\\x26\\x2e\\x0b\\xcd\\xef\\xc2\\x7f\\x51\\x95\\xe6\\x3c\\xde\\x88\\x08\\x18\\x7a\\x0f\\x6d\\x0a\\x65\\xfc\\xf6\\xc7\\xdc\\xbe\\x18\\x37\\xf9\\x60\\x9c\\xe4\\x1c\\xd1\\xd6\\x29\\x2f\\x28\\xd0\\x0e\\xb5\\x54\\x66\\xa4\\x6f\\xec\\x5d\\x0c\\x2a\\xd0\\xb1\\xd3\\xe4\\xff\\x9e\\x75\\xfa\\x55\\x98\\x9d\\x55\\x28\\x03\\xab\\x03\\xdb\\x39\\x2f\\x88\\x17\\xfe\\xae\\xeb\\xba\\xcb\\x99\\x48\\x35\\x8e\\x94\\xec\\x65\\x32\\x61\\x8a\\xb1\\x59\\x97\\xd3\\xfb\\x41\\xe1\\xc4\\x85\\x39\\x6a\\x6a\\xb3\\x61\\x9a\\xa2\\x13\\x91\\x96\\xa4\\xb7\\x6e\\xbe\\xd3\\x60\\x77\\x10\\x31\\x77\\xd9\\x36\\x5b\\xe0\\x41\\x4c\\xc3\\xf2\\xb5\\xce\\xa7\\x0e\\xfc\\x31\\x6f\\x0c\\xd4\\x53\\xfa\\xef\\x8b\\x81\\x34\\xc5\\x0d\\xf7\\x3e\\x6f\\xf5\\xd7\\x87\\x79\\xca\\xf2\\x4f\\x0c\\x01\\xc5\\xb5\\xfa\\x8d\\x91\\x8c\\x66\\xf6\\xdf\\xc5\\xb1\\x23\\x3e\\xd6\\x38\\x07\\x4e\\x7c\\x1d\\x6d\\x68\\x14\\x1f\\x88\\x3c\\x12\\xcb\\x29\\xb1\\x33\\xca\\x29\\x79\\x56\\x67\\xf5\\xca\\x86\\xfd\\x17\\x73\\xc5\\xdb\\xfb\\x97\\x1c\\x33\\xb4\\xac\\xee\\xd9\\x4b\\x38\\x34\\xd9\\x02\\x56\\x73\\x2a\\xe7\\x98\\x4c\\xbd\\x72\\x03\\x97\\xb8\\x94\\xf4\\x6e\\x66\\xce\\x6b\\x74\\x24\\x2e\\xf4\\xfc\\x60\\x84\\x46\\x4d\\x13\\xee\\xde\\xa0\\x92\\xa2\\x27\\x40\\x32\\x8e\\xbb\\x5d\\xba\\x1e\\xc2\\x53\\x17\\xf3\\x56\\x66\\xf9\\x55\\x18\\xfc\\x1b\\x8e\\x8a\\xa5\\x9f\\x2a\\x61\\xf6\\x12\\xb2\\xfb\\xcd\\x08\\x9a\\x42\\xa8\\xbb\\x18\\xd1\\xad\\x74\\xf5\\x3b\\xa1\\x74\\xf0\\xb2\\x90\\x01\\x6e\\x8c\\x0b\\x3a\\x1e\\x0f\\xc3\\x9f\\x42\\x2d\\x67\\xd4\\x0d\\x3f\\x01\\x91\\x21\\x64\\xc9\\xd1\\x6a\\xb5\\xc6\\x82\\xf8\\x3e\\x6f\\x3e\\x9a\\x95\\x7a\\x98\\x3a\\x5c\\x19\\xe1\\x37\\x0a\\xfc\\x2b\\x84\\xb6\\xaa\\xad\\x50\\x3d\\x50\\x40\\x2b\\x25\\x77\\x58\\xb2\\xfa\\x33\\x66\\xcd\\x50\\x77\\x0b\\xf2\\xe9\\x7d\\xb5\\x01\\x55\\x76\\x57\\xeb\\xcd\\x67\\x42\\x11\\x1c\\x0a\\xf2\\x1e\\xc6\\xfe\\x88\\xba\\xfa\\xaa\\x92\\x67\\xd2\\xff\\x6e\\xb4\\x9c\\xb2\\x7b\\x12\\x9c\\xde\\x09\\x04\\x8b\\x96\\x61\\xf1\\x41\\x07\\xa1\\xbd\\x61\\x1a\\x75\\x83\\xbf\\x1f\\x7b\\xe5\\x57\\xd4\\x97\\x5b\\x7a\\x60\\x2b\\xe2\\x61\\xbe\\xe1\\xee\\x26\\x0e\\xf3\\x98\\xe7\\xb4\\x8a\\xbc\\x62\\x7f\\x21\\x6f\\x74\\x2a\\x2d\\x1a\\x1e\\xad\\x8d\\xb4\\x91\\xe7\\xa3\\xad\\x1f\\x11\\x60\\x67\\xd5\\xc1\\xd7\\xb2\\xd5\\x4e\\x0f\\xe7\\xcc\\xfa\\xeb\\xab\\x4f\\xff\\x38\\xc8\\x9f\\xb9\\x74\\x30\\xc9\\x64\\x1c\\x6e\\x4a\\xf0\\xd8\\xb0\\x9d\\x06\\x01\\xe5\\x1c\\x3b\\xa2\\x01\\xd6\\x36\\x19\\x15\\x13\\xf1\\xc0\\x4f\\xa5\\x7c\\xfb\\xc6\\x44\\x47\\x8d\\xe5\\xd8\\x5b\\x9b\\xf6\\xfb\\xae\\x9b\\xf6\\x61\\x0b\\xde\\xd4\\x95\\xdd\\x6d\\xf1\\x59\\x8e\\x4e\\xd6\\x50\\x7a\\x63\\xc3\\xf1\\x70\\x99\\x0c\\xfe\\xeb\\x11\\x5f\\x3c\\x1d\\xfd\\x26\\x65\\xa4\\xba\\x00\\x27\\xe4\\xd2\\x85\\x5b\\xc2\\xca\\x60\\xb8\\x6d\\xd3\\xb4\\x8c\\x08\\x28\\x35\\xde\\x12\\xeb\\x67\\xc0\\xf8\\xce\\xea\\xd7\\x9f\\x64\\x34\\x8e\\xf4\\xa8\\x9f\\x38\\x8c\\xdc\\xf7\\x03\\xc5\\xad\\xa2\\x04\\xf4\\x57\\xc6\\x67\\x42\\x42\\x60\\x32\\x08\\x82\\xee\\xfb\\xb8\\x10\\xe9\\x87\\x44\\xce\\x2e\\xc9\\x0d\\xd9\\x90\\x9c\\xa4\\xa3\\xc3\\x78\\x6b\\xba\\x5f\\xd2\\x21\\xc5\\x4d\\xd2\\xb2\\xc6\\xe3\\xc5\\x99\\x5b\\xf7\\x3f\\xe3\\x0f\\xb5\\xd4\\xd2\\x3a\\x5d\\xaf\\xfb\\x06\\x90\\x7b\\xd0\\x21\\x0a\\x8b\\xdf\\x71\\x90\\x88\\xfc\\x02\\x13\\x89\\xc6\\x15\\x3a\\x66\\xd9\\x41\\x2a\\x7f\\x0a\\x07\\x38\\x8c\\x36\\xd5\\x2c\\xe6\\xcb\\x0b\\x60\\xce\\xd0\\x6b\\xc5\\x3b\\xdc\\x54\\x5e\\x29\\x99\\x3d\\xf5\\xbc\\xa5\\xd0\\x9e\\x9b\\x16\\xab\\x8f\\x74\\x94\\x0c\\x35\\x2d\\x20\\x44\\xa7\\x1e\\x0a\\xf0\\x51\\xea\\xef\\xdb\\x97\\x1a\\x75\\x80\\x05\\x70\\x95\\x48\\xd6\\xa7\\xf7\\xfd\\x4d\\x1b\\xa3\\x63\\x5f\\x18\\x66\\xa3\\x26\\x1d\\xaf\\xe4\\xf2\\xaa\\x13\\xe7\\x24\\x43\\xfa\\x15\\xf3\\x82\\x60\\x96\\x08\\x45\\x10\\xc9\\xe2\\x9d\\xee\\xea\\x98\\xc7\\xd9\\xd5\\xc8\\xb8\\x37\\x1c\\xca\\x4e\\x1d\\x67\\xeb\\xd5\\x12\\x87\\x1e\\xb8\\x28\\xaa\\x1f\\xe2\\x15\\xde\\x81\\x4d\\xda\\xf5\\x9e\\xe2\\x3d\\x10\\x53\\xc2\\x66\\x9f\\x41\\x5c\\x62\\x09\\xef\\x38\\xe6\\xba\\x42\\xa6\\x9a\\x91\\xd0\\x05\\xba\\x4b\\x6d\\xf3\\x9e\\xed\\xad\\x1a\\xe9\\x08\\x16\\x03\\x05\\xd3\\x26\\xd9\\x89\\x78\\xee\\x10\\x9e\\xf2\\x50\\x66\\xd6\\xab\\x43\\x5e\\x8f\\x28\\x41\\x83\\x1b\\x05\\x35\\x38\\xfd\\xcc\\x6b\\xd9\\x70\\x5b\\x6b\\xfe\\x8d\\xb4\\xd0\\xb5\\xf8\\xb8\\xf7\\x73\\x2f\\x18\\x6e\\x6f\\x94\\xdb\\xfa\\xf8\\x85\\x72\\xa9\\xc2\\x89\\xe5\\xba\\x3b\\x5e\\x98\\x5e\\xcb\\xf2\\xcf\\x45\\x1a\\x57\\xba\\x97\\xaa\\xa7\\x5a\\x95\\x4f\\xd2\\xa9\\x50\\x37\\x28\\x42\\x15\\xdf\\xb3\\x47\\xc9\\x84\\xcd\\x47\\xe7\\x1a\\xe2\\x3a\\x4a\\x9b\\x10\\x20\\xca\\xb3\\x44\\xa2\\x4d\\x3e\\x46\\x50\\x8a\\xb1\\x27\\xcb\\x8e\\x9f\\xaf\\x76\\xdc\\x0b\\x89\\x36\\x44\\x71\\xc2\\x9d\\x92\\xa6\\x32\\x36\\x70\\x53\\x73\\xc7\\x20\\x1e\\x42\\x71\\x61\\xdd\\xb7\\xd3\\x23\\x81\\xf8\\xf5\\x3d\\xa1\\xa2\\xf9\\xdf\\x92\\x1a\\xa4\\x2d\\x51\\x71\\x99\\x15\\x02\\xc5\\xb4\\xd1\\xbb\\x36\\xef\\x43\\x9c\\xda\\x1a\\xcc\\x54\\xd1\\x3b\\x1a\\x79\\xa6\\x22\\x26\\xe0\\xff\\x38\\x8f\\x73\\xcc\\xe7\\xc2\\x7e\\xff\\xf1\\x4c\\x28\\x3e\\xff\\x73\\x9b\\x51\\xf2\\x31\\xd5\\xc4\\xc7\\x1a\\x2d\\x8a\\x17\\x28\\xf7\\xfa\\x97\\x86\\xa5\\xab\\x07\\xbf\\x27\\xff\\x2f\\xca\\x85\\x3d\\x3f\\xd6\\x6a\\x15\\x64\\xeb\\xb0\\x4f\\x02\\x72\\xe6\\x53\\x08\\x19\\x1b\\xe6\\xc1\\xa4\\x48\\x64\\x82\\x77\\xd4\\x5a\\xff\\x30\\x28\\x6f\\x79\\x97\\x50\\xbb\\xf3\\x4e\\x6f\\xf7\\xc4\\x20\\x70\\x56\\x2d\\x04\\x84\\x83\\x66\\x90\\xf5\\xe4\\x8c\\xfe\\xe4\\xc3\\x1b\\x46\\x55\\xc2\\xe8\\xd0\\x92\\xab\\x38\\x1d\\x45\\x26\\xee\\x41\\xa7\\x9e\\xe6\\xd3\\xc2\\xe7\\xfa\\xc1\\xb4\\x18\\x45\\xe8\\xe7\\x4e\\xb1\\x3e\\xf3\\xc3\\xd4\\x83\\x2d\\x26\\x71\\xf4\\xa6\\x60\\x57\\x25\\x43\\x20\\xdb\\x46\\x2a\\x3b\\x0c\\xed\\xb8\\x43\\x78\\x59\\x2f\\x3e\\xc6\\xe7\\xda\\xde\\x99\\x3b\\x5f\\xca\\x68\\x4f\\x13\\x82\\x2e\\xa5\\xa3\\x7b\\x65\\x8f\\xed\\x44\\x8c\\xc5\\xc8\\x69\\x9d\\x48\\x02\\xd6\\x21\\x71\\xbf\\xb2\\x52\\x16\\xca\\xe2\\x2f\\xc5\\xcb\\xa2\\x27\\xd7\\xca\\x8d\\xa6\\xd2\\xa5\\xe5\\x08\\x43\\x43\\xe8\\xfa\\xf3\\x83\\x54\\xfb\\x31\\x09\\xf5\\xc7\\x48\\xfa\\x3f\\x90\\x4d\\x97\\x32\\x22\\x1a\\x95\\xa5\\x71\\x73\\x88\\xac\\x70\\x0b\\xd6\\x89\\x02\\x88\\x1a\\x93\\x02\\xc8\\xd7\\x92\\xfc\\xc9\\x17\\x9c\\xa2\\x82\\x74\\x98\\x19\\xc1\\x25\\xd6\\xb1\\xb1\\xe2\\xbd\\xec\\x3f\\x75\\x98\\x09\\xaa\\x8d\\x0d\\xd5\\xd4\\x60\\x4d\\x69\\x16\\x2c\\x40\\x37\\xef\\x46\\x01\\x81\\xd1\\x7d\\x6c\\x32\\xe9\\x86\\x17\\xf8\\xaf\\xa6\\xc7\\x5d\\x76\\xe9\\xd1\\x77\\x09\\x0e\\x33\\x2a\\xc7\\xc8\\xe7\\x05\\x6b\\x31\\x3d\\xbf\\x3f\\x02\\x98\\x61\\x49\\x78\\x45\\x26\\xe1\\x73\\x59\\x0a\\x43\\xc7\\x5a\\x33\\x9b\\x36\\x3a\\x84\\xe2\\xe8\\x20\\x13\\xee\\x0b\\x82\\x36\\x59\\xa7\\x38\\x25\\xff\\x8b\\x54\\x93\\x01\\x6d\\xc2\\x9d\\x38\\x93\\xce\\x4f\\xf1\\xc3\\xe4\\xfc\\x64\\xe1\\x9f\\xb9\\xc1\\x1d\\x22\\x3e\\x90\\x70\\x91\\xba\\x2f\\x3f\\x19\\x68\\x97\\x66\\x39\\xa5\\x07\\x26\\x00\\x7f\\x59\\xe1\\x34\\x96\\xa3\\xdb\\x39\\x5f\\x6a\\x1a\\xf6\\xf8\\xe0\\xb7\\x76\\x72\\x95\\x0c\\x99\\x13\\x86\\xb6\\x46\\x26\\x98\\x81\\x77\\xad\\x4a\\xb1\\x39\\xb5\\x5f\\x69\\x15\\xa1\\x85\\xca\\xbf\\x5e\\xcd\\x9b\\xb4\\xa5\\xcf\\x47\\x84\\x22\\x3d\\xde\\x0f\\x7b\\x96\\x65\\x1a\\xe8\\xf7\\xa8\\x45\\xd3\\xfa\\x17\\x27\\x92\\x85\\x95\\x27\\x10\\xb7\\x50\\xb4\\xcf\\xbc\\xa9\\xca\\x77\\x61\\x35\\x26\\xee\\x45\\x67\\xe0\\x4f\\x34\\x04\\xc3\\xe7\\x8b\\x85\\x16\\x83\\xd0\\xb9\\xe3\\xbd\\xec\\xf9\\xe9\\x8d\\x34\\x18\\xe8\\x07\\x44\\xae\\x9b\\x27\\x6b\\x3e\\x49\\x08\\xa3\\xe9\\x96\\x3e\\x50\\x95\\xc6\\xc4\\x97\\xae\\x5e\\x11\\x6c\\x1f\\x9a\\x78\\x6c\\x71\\x36\\xbb\\xf7\\x4a\\xe9\\xf0\\x94\\xe7\\x15\\x7d\\x55\\x07\\xf8\\xc3\\x79\\x4b\\xf2\\x26\\x94\\xea\\x06\\xca\\x07\\x37\\xb7\\x7a\\xbc\\x15\\xf5\\x4a\\xd5\\x62\\x4f\\x5f\\xe6\\x2c\\x31\\xad\\xff\\xe2\\xd7\\x99\\xd8\\xd6\\xee\\x74\\x87\\x94\\x7b\\x39\\xd8\\xcc\\xfd\\xba\\x52\\xb4\\x86\\x4f\\xbf\\xce\\x9c\\x51\\x8d\\x7c\\xbc\\x30\\x31\\xd1\\xe3\\xbf\\x22\\xbf\\xa1\\xcd\\x65\\x07\\xba\\xe0\\xde\\x19\\x85\\xf9\\x27\\x77\\x9c\\x53\\xb7\\x8d\\xfd\\x49\\xe9\\xdf\\x8c\\xea\\xa6\\xfb\\xf2\\x82\\x79\\x7e\\x33\\x00\\x1c\\xca\\xe1\\x5a\\x3b\\xfd\\xf6\\xeb\\xc1\\x48\\x65\\xd3\\x19\\x2b\\x23\\x2c\\xea\\xdd\\x7e\\x6b\\x12\\x5f\\xd0\\xc9\\x1c\\xbc\\xed\\xea\\xa0\\x04\\x3d\\x83\\x24\\xe2\\xad\\xdf\\xb3\\x6b\\xab\\xab\\x13\\xbf\\xe8\\x56\\x46\\x8f\\x6b\\x68\\xa2\\x27\\xaf\\x30\\x22\\xcd\\xea\\xd6\\x56\\xa9\\x5f\\x88\\x2b\\x44\\x70\\xa6\\xf5\\xad\\x9b\\x82\\xad\\xfb\\x2b\\x9e\\xc3\\xcc\\xb0\\x32\\x0a\\x92\\x54\\x67\\x78\\xc7\\x64\\xb3\\xa6\\xfb\\x6a\\xad\\xa5\\xf5\\xd6\\x45\\xa4\\x7c\\xeb\\x6c\\x08\\x84\\xc0\\x8f\\x4e\\x52\\x06\\xf6\\xd7\\xb3\\xfd\\x39\\x90\\x27\\xb8\\xee\\xe6\\xa2\\xad\\x2a\\x72\\x24\\x89\\x06\\x23\\x26\\x71\\x8d\\xc9\\xc2\\x44\\xc5\\x32\\x1c\\x5d\\x8f\\xdb\\x2e\\x61\\x3d\\x21\\xbc\\x5e\\x40\\x15\\xc7\\xaf\\x2e\\x3e\\xf4\\x20\\xf9\\x81\\x94\\xe4\\x05\\x59\\x8e\\xf1\\xeb\\x87\\xd3\\xfb\\x7f\\x5e\\x51\\xfd\\xd4\\x85\\xb7\\x80\\x09\\x9a\\xe4\\x96\\xad\\x72\\x97\\xb8\\x97\\xe9\\xd7\\x46\\x6d\\xbf\\x91\\x4d\\x0f\\xc8\\xf7\\xb2\\x91\\x78\\xff\\xd2\\x78\\x77\\x1b\\x1d\\xf8\\xbf\\x74\\x0f\\x75\\x93\\xbe\\x79\\xc5\\xbd\\xa7\\x9d\\x7d\\xba\\x99\\xff\\xa1\\x8c\\x1b\\x84\\xe3\\x11\\x32\\x6c\\x7a\\x42\\x69\\x7f\\xfa\\xd6\\x02\\x67\\xf7\\xb8\\xe8\\x1b\\x25\\xc3\\xef\\xb4\\xb3\\xbc\\xaa\\x7a\\x26\\x7e\\xba\\x46\\xf3\\xc5\\x9d\\x7c\\x28\\x8e\\xe4\\x24\\xd6\\x10\\xc9\\x2e\\x47\\xf1\\x7f\\xc3\\xd7\\xe8\\x60\\xbb\\x77\\x05\\x0b\\x6f\\xd6\\x49\\xd1\\x1f\\x20\\x37\\x56\\xb0\\x09\\x96\\xf3\\xb3\\x1f\\xea\\xf2\\xc4\\x03\\xf6\\x63\\xd7\\x1e\\xf5\\xa4\\xbc\\xb4\\xf4\\x67\\xaf\\xaa\\xe3\\xc9\\xf3\\x56\\xd4\\xfe\\xad\\xd6\\x06\\xf1\\x67\\xc2\\x0f\\x0a\\xa9\\xa6\\x0b\\xd1\\xf7\\x77\\xdb\\xe5\\x35\\x05\\x52\\x8f\\xec\\x6d\\x6e\\xfe\\x66\\x38\\x52\\x07\\x19\\x0d\\x32\\x00\\xc7\\x2d\\x8f\\x2b\\xe2\\x46\\x97\\x44\\xcb\\xec\\xae\\x93\\x8b\\x70\\x0f\\x78\\x0f\\xef\\x9c\\x10\\x63\\x3b\\x7a\\xe3\\x57\\xe6\\x02\\xfe\\xf1\\x4f\\x56\\x5d\\xe2\\x4f\\x7c\\xb8\\xc7\\x1c\\x10\\x4b\\x58\\xda\\xe0\\x57\\x59\\x20\\x47\\x39\\x6d\\xf8\\x9a\\x68\\x78\\x45\\xc4\\x51\\x2c\\x40\\x8b\\x15\\xe1\\x81\\x15\\xfb\\xc7\\x71\\x69\\xce\\xba\\x29\\x15\\xeb\\x8f\\x41\\xa4\\xa5\\xd9\\xa6\\xd6\\xfe\\x81\\xbf\\x44\\x73\\x57\\xa1\\x67\\x07\\x2e\\xf8\\x7b\\xba\\xea\\x1e\\x31\\xae\\x58\\x19\\x4c\\xde\\x5a\\x34\\x80\\xa0\\x99\\xf8\\xb6\\xa4\\x01\\xaf\\x06\\x5b\\x1f\\x74\\xdf\\xe3\\xa3\\xd4\\x5f\\x89\\x7d\\x88\\x9f\\x42\\x27\\x4a\\xdd\\x8f\\xe0\\x70\\xb0\\x22\\x33\\x9b\\x46\\xae\\xe7\\x84\\xb5\\xfb\\x7d\\xc8\\xf7\\xf6\\x78\\x48\\x36\\x2f\\xd1\\x69\\xe0\\x9e\\x2e\\xc9\\xff\\xcf\\x3c\\x3c\\x3c\\x7c\\x5b\\x24\\x8e\\x0d\\xfc\\xf3\\xb5\\x37\\x92\\x4a\\x1e\\x1b\\x38\\xe7\\xe1\\xc3\\xf2\\x0d\\x9a\\xc2\\x06\\x8b\\xb2\\x77\\x59\\x54\\x11\\xe6\\x40\\x53\\xc6\\x42\\xaf\\x8f\\xbb\\x3a\\xc1\\x00\\xcd\\x95\\x36\\x41\\x06\\x43\\x6c\\x2b\\x50\\x51\\xee\\x90\\xe8\\x20\\x88\\xf0\\x60\\xd1\\x66\\x7c\\x72\\x12\\xe6\\x64\\x11\\x6d\\xd8\\x38\\x10\\x26\\x8f\\x06\\x4f\\xd0\\xe0\\xb2\\x1e\\xd4\\xd6\\xca\\xc4\\x2a\\xa1\\xf3\\x30\\x25\\x1e\\x88\\x52\\x7d\\x13\\x1e\\x04\\xd7\\x78\\xf2\\x5c\\xc5\\xd1\\xc5\\xcb\\x77\\x98\\x56\\x16\\xf3\\x90\\x8e\\x87\\x0c\\xf4\\x12\\xe1\\x05\\x3c\\x1c\\x97\\x38\\xf2\\x5f\\xcf\\x5f\\x56\\x00\\xe8\\xb5\\x70\\xb1\\x1d\\xe5\\x22\\x4c\\x10\\x5a\\x57\\x50\\xb4\\x48\\x0d\\xa6\\x02\\x3a\\xa6\\x3b\\x62\\x53\\x19\\x9b\\xd3\\x1d\\x7c\\x71\\xbf\\xe1\\xf8\\xa2\\x2c\\x63\\x0c\\x85\\xfc\\x91\\x5e\\xc8\\x31\\x89\\x5b\\xc4\\xe4\\xd4\\xa0\\xb7\\xe6\\x78\\x1e\\x8d\\x32\\xd1\\x69\\x96\\x20\\xbb\\x3e\\xdc\\xc9\\x6a\\x47\\x7f\\x47\\xfa\\xb8\\x77\\x1d\\x96\\x05\\x35\\xbf\\xe2\\x7a\\x7f\\xf8\\x9d\\x2f\\xa6\\x2b\\x7e\\xbc\\x3c\\xf9\\xb8\\xb2\\xbe\\x8b\\xd2\\x75\\x4b\\x8a\\x9d\\x6c\\x2b\\xf8\\xe1\\x45\\x98\\xe4\\x83\\x07\\xc6\\x29\\x7e\\xfe\\x69\\x15\\x81\\x2e\\x39\\x94\\x67\\x88\\xee\\x6a\\x71\\x42\\x20\\x05\\xd9\\x7a\\xf3\\x83\\x66\\x18\\x42\\x8a\\xea\\xfa\\x36\\x58\\xe4\\x65\\x86\\xda\\x1f\\xa3\\xbb\\x46\\xba\\xd8\\x92\\xd5\\x2a\\x31\\x97\\x97\\x78\\x39\\xcc\\x77\\xa4\\x26\\x0b\\x6e\\x0a\\xcd\\x0f\\x4b\\xea\\x76\\xd4\\xf2\\x45\\x58\\x11\\xdf\\xa0\\x06\\x2c\\xaf\\x71\\x5f\\xf1\\xf8\\xdf\\x2e\\x6b\\xfb\\x22\\x50\\x05\\x78\\x24\\xd1\\xd3\\xef\\x6c\\xbe\\x95\\x8c\\x9f\\xbc\\x1c\\x27\\x51\\x7e\\xc6\\x5c\\xc4\\x46\\xf1\\xa5\\x74\\xab\\x79\\x00\\x1e\\x50\\xa6\\x89\\xd1\\x5a\\xe7\\x48\\x6b\\x34\\x8c\\x64\\xc3\\x24\\x20\\x11\\x4a\\xd8\\x7a\\x38\\x38\\xc8\\x5a\\xac\\xb9\\x4a\\xc5\\x44\\x7b\\x9e\\xca\\xb1\\xe2\\xf8\\x9c\\xf0\\x2f\\xc9\\xdd\\x2b\\x3e\\xad\\xcf\\x22\\xe4\\x95\\x68\\x87\\x9c\\xd3\\x25\\xed\\x8e\\x62\\x08\\xce\\xbe\\x67\\x33\\xe3\\xfe\\xe8\\xdd\\x5f\\x84\\x2c\\xd9\\x39\\x18\\xb4\\x77\\xca\\x4f\\x0e\\xb0\\xa9\\xdc\\xc2\\xb8\\x64\\x0c\\x3e\\xb0\\x6c\\xd4\\x63\\x12\\xfb\\x2b\\x93\\xef\\x8c\\xc1\\x1f\\xc3\\xcb\\xc7\\xf7\\xd1\\xb4\\xe7\\xf8\\x0e\\x01\\xac\\xac\\xd1\\x06\\x53\\xd0\\xfa\\x4f\\x81\\x95\\x51\\x12\\x0f\\x23\\x7b\\x2d\\x08\\x32\\xae\\xe1\\x6d\\x67\\x05\\x09\\x0b\\x4f\\x5c\\x08\\x9c\\x0e\\x35\\xa7\\xc1\\x39\\x3b\\x08\\xfd\\x23\\xa1\\xae\\x68\\x4c\\xbf\\x3a\\xfe\\xe9\\xd3\\x4f\\xa4\\x21\\x6c\\x4e\\x27\\xa8\\x89\\x0f\\x7f\\x49\\x96\\x29\\xc8\\x0f\\x5b\\x31\\xc2\\x68\\x10\\x6b\\x7d\\x4c\\xd6\\x86\\xc0\\x0c\\x4b\\x1d\\x97\\xa5\\x92\\x93\\x49\\x2a\\xc1\\xc4\\x96\\x85\\x51\\x51\\x9e\\x20\\x05\\x8f\\xde\\x77\\xbe\\x37\\xf6\\x7d\\x32\\x5d\\x55\\x87\\xfa\\xda\\x91\\xaf\\xe5\\x6b\\xdd\\xba\\xa7\\xdb\\x0c\\x4d\\x56\\x47\\xba\\xc8\\x8f\\x1c\\x6d\\x93\\xf1\\xed\\xfa\\x76\\x45\\x01\\x5e\\x04\\x0e\\xa9\\xdf\\x58\\x6b\\xd3\\x02\\x1c\\x73\\x42\\xd9\\xc0\\x11\\xf9\\xe8\\x01\\x13\\xa1\\xb6\\x58\\x3f\\x1c\\x03\\xae\\x6e\\x86\\x61\\x90\\x19\\x3c\\x44\\x40\\xb5\\x7a\\xa4\\x3d\\xaa\\x32\\x2b\\x2e\\xac\\xa7\\x7f\\xe4\\x1b\\x50\\xee\\x50\\xfb\\xbc\\x65\\x39\\xc9\\xc7\\xb4\\xdc\\x7b\\x41\\x7c\\x89\\x63\\xaf\\xb7\\xbe\\xb0\\x59\\x7d\\x6f\\xb0\\xb8\\x58\\x79\\x31\\x9d\\x35\\xcf\\x2d\\x91\\xbf\\xb5\\x56\\x94\\x04\\x99\\x11\\xbf\\xfa\\x06\\xfc\\xe6\\x33\\x55\\xac\\x4b\\x24\\x13\\xbe\\x63\\x50\\x41\\xda\\x6e\\xf7\\x44\\x30\\xa1\\x3e\\x6d\\x65\\x70\\x63\\xce\\xa2\\x6a\\xac\\x80\\xc2\\x29\\x4d\\x10\\x5b\\x0c\\x80\\x7d\\x21\\x97\\x08\\xbb\\xf3\\xa4\\xf2\\x2d\\x31\\xeb\\x9a\\x9b\\x24\\x69\\xd1\\x28\\x29\\x99\\xad\\xd0\\x8c\\x78\\xc5\\x5c\\xda\\x2f\\x3c\\x0e\\xac\\x7a\\x47\\x82\\x48\\x7e\\x9a\\xca\\x38\\xfc\\x7e\\x35\\x1d\\x25\\xef\\x4a\\x95\\xaf\\x09\\x34\\x75\\x22\\xce\\xaa\\xc9\\x73\\x1e\\xa0\\x2a\\x8d\\xf2\\xbb\\x7f\\x0a\\xe8\\x02\\x76\\xd8\\x77\\x50\\xa0\\x9a\\x19\\x4e\\xad\\x3a\\xb7\\xf1\\xab\\x8d\\x12\\xf8\\x9d\\x5f\\x49\\x9e\\x32\\x82\\x85\\x3e\\xa9\\x6e\\x40\\x84\\x86\\x87\\x89\\xb8\\x55\\xd9\\x85\\xd8\\x5f\\x98\\x69\\x20\\x7e\\xd3\\x61\\x40\\x4b\\xfe\\x83\\xcf\\x97\\x00\\x08\\x8f\\x18\\x2c\\xb7\\x01\\x3f\\x79\\xa1\\x33\\x2a\\x01\\x49\\x84\\xc8\\xf8\\x82\\x8d\\xfc\\x36\\x6e\\x58\\xb4\\x1f\\xe0\\x89\\x47\\x1e\\xea\\x65\\x6e\\x6b\\x56\\x6b\\xff\\x03\\xec\\x3c\\x28\\xcb\\xe8\\x12\\xba\\x22\\x26\\xd1\\xf5\\x4d\\xdd\\x25\\xa2\\x39\\x8e\\x01\\x9c\\x3d\\x5c\\xef\\x03\\x74\\x8e\\xd4\\x63\\x48\\xd6\\xe2\\x37\\x5a\\x5a\\x87\\x4e\\x46\\x39\\xed\\xc5\\xdf\\x1b\\x58\\x17\\x27\\xb2\\xa1\\xc7\\x10\\xe6\\xdf\\xf3\\x9c\\xb4\\x32\\x6e\\xf3\\x3e\\xfd\\xa7\\x5c\\x8e\\xb8\\xea\\x79\\x58\\xa0\\xee\\x36\\x8e\\xe3\\x11\\xb6\\xec\\x56\\xfb\\x1b\\x77\\x50\\x7d\\x3a\\x97\\x23\\xbf\\x74\\xf4\\x31\\xd3\\xb6\\xff\\x77\\xb6\\x61\\xd2\\x2f\\x01\\x21\\xa6\\x01\\x5d\\x05\\x44\\x6d\\xbc\\x5c\\x69\\x91\\x1a\\x1d\\x39\\x31\\x5f\\x3c\\x6a\\xa1\\xa0\\x45\\x48\\xb2\\x04\\x84\\xa1\\x34\\xa5\\xc1\\x4c\\xe3\\x24\\xfb\\xce\\xf9\\xbd\\x9e\\x23\\xd1\\xbe\\xfc\\xc9\\x75\\x3d\\x15\\x89\\x57\\xca\\x61\\xb3\\x88\\x2e\\x05\\xc9\\x68\\x89\\x61\\x1d\\x3e\\x19\\x4d\\x43\\xec\\x9c\\xe9\\x14\\x15\\x41\\xa2\\x0a\\x1e\\x15\\x98\\x28\\x74\\x2a\\xa0\\x37\\x0e\\x03\\xb3\\x08\\x9d\\xd7\\x6d\\xc0\\xa7\\x43\\x5e\\xd5\\x63\\xe3\\x62\\x77\\x5f\\xa9\\xf9\\x95\\x44\\x41\\xe8\\x97\\xfe\\xbd\\xcb\\xd0\\xff\\x64\\xf9\\x26\\x5d\\xa4\\x3e\\x8a\\x52\\x4f\\x90\\x21\\x50\\xc1\\x69\\x4e\\xd2\\x5c\\xea\\x26\\x6a\\x03\\x7e\\xb2\\x25\\x55\\xdd\\xdf\\xca\\x17\\x3c\\x4b\\x42\\xe7\\xba\\x6a\\xeb\\xa6\\x99\\xf0\\x69\\xce\\x13\\xf8\\xf3\\xfb\\x3a\\x3f\\xd9\\xf0\\x0b\\xed\\x4b\\x25\\xc2\\x79\\x26\\x2d\\xbd\\x5f\\x1a\\x34\\xdd\\x0f\\xea\\xb9\\xbf\\xda\\x9a\\xe7\\x15\\x07\\xf5\\x93\\x72\\x81\\xed\\xfe\\x05\\x7c\\xde\\x7b\\x93\\xda\\x35\\xc2\\xf7\\x3d\\xb8\\xf1\\x66\\xad\\xbe\\x60\\x34\\xe0\\xca\\x19\\x3b\\x41\\xbe\\xfe\\xec\\x2d\\x25\\xa7\\xbb\\x37\\xc5\\xd3\\x5c\\x88\\xbe\\x5e\\x2c\\xf9\\xdf\\x4f\\xf5\\x2b\\xf5\\xcc\\x63\\xec\\xec\\x15\\xdc\\x5f\\x8f\\xd2\\x3d\\x89\\xd4\\xbb\\x73\\xd4\\x92\\xa6\\xc3\\xe9\\x44\\x4d\\x53\\x34\\x34\\xcd\\x2b\\xa3\\x96\\x0f\\x43\\xbd\\xca\\x7c\\x4c\\x5c\\xbc\\x64\\x79\\xfa\\x34\\xbc\\x5c\\x26\\x94\\x51\\x9c\\x1e\\x46\\xa3\\xac\\x46\\x1e\\x7c\\xd3\\x4d\\x42\\x9c\\xa1\\x9b\\x0a\\x48\\xba\\xe4\\x11\\x12\\x47\\x77\\xf8\\x2e\\xa9\\xa5\\x83\\x69\\x82\\xde\\x0b\\x9b\\xda\\x2b\\x73\\xc4\\xf3\\x1b\\xa6\\x0f\\x44\\x9b\\x6e\\x5c\\xb4\\xe2\\x0a\\x65\\x3f\\x31\\x85\\x53\\x46\\x78\\x5d\\x3b\\xd4\\xa5\\xc1\\xe5\\xea\\x78\\xdb\\x6e\\x18\\xaa\\x32\\x76\\x86\\x95\\xfb\\xea\\x9a\\xd7\\x7c\\xbf\\x3c\\x96\\x7d\\xe5\\x31\\x2e\\x95\\x88\\x74\\x36\\x5e\\xda\\xd7\\x7b\\x51\\x14\\xa3\\x01\\x7a\\x03\\x8e\\x17\\xde\\xf2\\x2c\\x44\\xa3\\x83\\xc5\\xc9\\xb5\\x63\\x78\\xa2\\x7b\\xc4\\x64\\x01\\x62\\x2a\\xa9\\x01\\xcd\\x68\\xdc\\x5d\\x56\\xd1\\x59\\x14\\x42\\x62\\x17\\x0f\\x5c\\xcc\\x4c\\x7c\\x9b\\x51\\xcd\\x7b\\x39\\xfc\\xf5\\x87\\xb5\\xa8\\xac\\x78\\x63\\xf8\\x47\\x98\\x8f\\x75\\xa5\\x48\\xce\\xb4\\x13\\x75\\xf5\\x2b\\x1f\\xef\\x90\\x54\\x98\\x6e\\x7f\\x58\\x28\\xb8\\xcb\\x84\\xc7\\x21\\x51\\xe7\\xb6\\xc7\\xcb\\x9b\\x84\\x95\\x0b\\x2f\\x62\\x7d\\xfb\\x4d\\xcc\\xea\\x5f\\xa6\\xa0\\x5f\\xe7\\x5f\\x3d\\xa3\\x4c\\x65\\xa3\\xca\\xeb\\x02\\x29\\x06\\xee\\xda\\xaf\\xb9\\x65\\x3a\\xf1\\xae\\x32\\xb0\\xa9\\x46\\xda\\xc5\\xa7\\xe9\\x12\\x12\\x04\\x76\\x79\\x8c\\x93\\xb7\\xd1\\x43\\x2c\\xdd\\xe6\\x92\\x3f\\x37\\x26\\x90\\x35\\x03\\xde\\x9a\\x07\\x39\\x2a\\xbf\\xbb\\x16\\x4e\\x7c\\x84\\x30\\xd0\\x78\\xe9\\xaa\\x16\\xb1\\xd1\\x04\\x24\\x5f\\x90\\xc2\\x9e\\xe2\\xa2\\x94\\x31\\xb6\\xb5\\xa6\\xb8\\x2b\\xa5\\xa4\\xd2\\xdf\\x91\\x6c\\xfe\\x9b\\xfc\\x56\\x55\\x4b\\x07\\x33\\xe1\\x4e\\xe7\\x20\\xbd\\x96\\x2f\\x49\\x3e\\x63\\x37\\xcb\\xf9\\xae\\xca\\xad\\x08\\x94\\xf8\\x26\\x1c\\x46\\x61\\xe0\\x22\\x98\\x2e\\x25\\x86\\x76\\xea\\x5b\\xe5\\xc3\\x93\\x59\\x2e\\xf1\\x8a\\x24\\x22\\x3d\\xf8\\x7a\\x7b\\xf1\\x5b\\x41\\xbf\\xa9\\xe8\\xb8\\xa8\\x51\\x52\\xc5\\x90\\x76\\x48\\x6b\\xe4\\xb3\\x6a\\x08\\xb9\\xdd\\xbf\\x05\\x64\\x1f\\x0b\\x1a\\x89\\x28\\x56\\xca\\x38\\xf8\\x40\\x9c\\xb5\\x10\\x8d\\x13\\xe7\\x0f\\xe3\\x33\\x03\\x3a\\x6d\\x00\\x45\\xc9\\x42\\xa5\\x3c\\xbf\\xee\\x11\\xb9\\xee\\x40\\xe6\\x5d\\x0e\\xc7\\xb7\\x80\\xbe\\x4f\\x9d\\x74\\x13\\x00\\x9d\\x6a\\x71\\x60\\x86\\xfa\\x2a\\xf3\\xf7\\x33\\x4e\\x83\\x60\\x87\\x3d\\x4d\\x70\\xf6\\x88\\xe4\\x15\\xf3\\x9b\\x2c\\x68\\xd2\\xf4\\xe7\\x3a\\xe0\\x56\\xec\\xe1\\xdc\\xc7\\xf4\\xa2\\x31\\xa9\\x86\\x27\\x0c\\xca\\xc0\\xfe\\x41\\x9f\\x6e\\x32\\x64\\x98\\x0f\\x80\\xc2\\xb7\\xaf\\x6e\\xc4\\x04\\x9d\\xc8\\x48\\xa0\\xb6\\x65\\x8b\\xcc\\x5b\\xce\\xf5\\xa2\\xb3\\xa9\\xfa\\xcc\\xb5\\x4e\\x29\\x3d\\x46\\x88\\x48\\xf7\\x6a\\x46\\x90\\xa1\\x97\\x0f\\x94\\xa9\\x09\\xc6\\xd7\\xfe\\x41\\x34\\x9c\\x73\\x35\\x2d\\x32\\x0d\\x35\\xb2\\x8f\\x0e\\x9f\\x23\\x32\\x62\\x5d\\xff\\xaf\\x6c\\x29\\x59\\x9b\\x58\\x1d\\xa8\\xb5\\x4d\\xde\\xca\\x53\\xa2\\xdc\\xb4\\x79\\x76\\x6a\\x3b\\x45\\xf8\\xa9\\x6c\\x16\\x79\\x0d\\x26\\x76\\x93\\xfd\\xfd\\x4c\\x55\\x6a\\x87\\x4e\\xfa\\xfd\\x3e\\x46\\x99\\x80\\xbd\\x1f\\x7c\\x2a\\x62\\x45\\x89\\xfc\\x3a\\xd2\\xef\\x31\\x46\\xa5\\x19\\x01\\xe5\\xb1\\x93\\x33\\xd1\\xee\\xa1\\x16\\x8e\\x8e\\x2c\\xc8\\x75\\xac\\xfc\\xe8\\xb5\\xdb\\x2d\\xa5\\x66\\x20\\xca\\x4c\\xad\\x2a\\x7c\\xd8\\xec\\x82\\xfa\\xc5\\x20\\x77\\x1a\\x1c\\x00\\x34\\x9f\\xde\\xd1\\x83\\x29\\x15\\x8e\\x0d\\xcd\\x43\\x0b\\xd9\\x39\\xfc\\x75\\x3b\\x68\\x90\\xee\\xd7\\x4b\\xd8\\x45\\xca\\x1e\\x92\\x9f\\x9d\\xcd\\x29\\xee\\xb4\\xf2\\xad\\x33\\xd5\\x95\\x6d\\x2b\\xe9\\x62\\x34\\x47\\xd1\\x2e\\x5b\\xcd\\xb8\\x51\\x95\\xe1\\x04\\x45\\xa4\\xf8\\x5a\\xe9\\xcc\\x99\\xcf\\x83\\xac\\xe3\\x0a\\x55\\xf9\\x2e\\xc7\\x87\\x4e\\xe3\\xd0\\xb5\\xaf\\xa4\\x4c\\x57\\x70\\xe0\\xb0\\xf9\\xf2\\x8d\\x10\\x69\\xc8\\xbc\\x82\\x37\\x91\\x75\\x66\\xdf\\x44\\x4e\\x18\\xc9\\x0f\\xed\\x3f\\x00\\xc5\\x4f\\x1b\\x90\\x4a\\xdc\\x83\\xb6\\x45\\xa4\\x3e\\xfe\\x5e\\xfc\\x2f\\xc1\\x43\\xfa\\xb1\\xd2\\xfe\\xf3\\x29\\x3d\\x0a\\x2f\\x77\\x2d\\xcb\\xbb\\xf1\\xb2\\x01\\xf2\\x9b\\x60\\xc2\\xae\\x86\\xcf\\x59\\x23\\xf8\\x8b\\x18\\x29\\xb7\\xd9\\xe3\\x6e\\x55\\x97\\xe4\\x38\\x66\\x67\\x5e\\x14\\x6d\\xed\\x58\\xaf\\xb0\\x8c\\xbc\\xa7\\x3d\\x47\\x61\\xac\\xa9\\x0f\\xe8\\xa5\\x18\\xe2\\xa0\\xa8\\xb3\\x05\\x6d\\xad\\xcb\\xf5\\x92\\x71\\x00\\x0f\\x9d\\xce\\x6c\\x3d\\x55\\x2c\\xe9\\xdf\\x59\\x46\\x57\\xf4\\x7e\\x49\\xf9\\x88\\x4a\\xb8\\xbf\\xb6\\xe2\\x1b\\xdb\\x04\\x23\\xcf\\x69\\x57\\x7a\\xe8\\xf5\\x54\\x55\\x76\\x40\\xad\\x1a\\x29\\xb3\\xff\\x81\\x6d\\xe6\\xb3\\x24\\x56\\xa5\\x5c\\xeb\\xf5\\x40\\x47\\x20\\x36\\x11\\x38\\x45\\xfe\\x45\\xea\\xb8\\xee\\x97\\xb7\\x3e\\x6e\\xc9\\xbf\\xba\\xb7\\xbf\\x64\\xbf\\xd0\\x1e\\xcb\\xfc\\x6c\\xe8\\x50\\x5c\\x58\\x68\\x92\\x77\\x27\\xfc\\x30\\x96\\x0b\\xd9\\x57\\x8e\\xc6\\xfd\\x93\\x25\\xff\\xd1\\x64\\xee\\x34\\xf9\\x84\\x37\\x6d\\xfd\\x51\\xdc\\x2f\\xa2\\xb7\\x1f\\xbe\\xd7\\xb5\\x2d\\x45\\x33\\x37\\xb0\\x22\\x75\\x81\\xaf\\x2c\\x3b\\x8e\\x15\\xf9\\x83\\xc9\\xc2\\x84\\xb4\\x34\\x0d\\x2d\\x51\\xe9\\x01\\x9e\\xce\\x5a\\x30\\x75\\x7c\\xe0\\xc0\\x7e\\x6e\\x66\\x5e\\x12\\xff\\x21\\xfb\\x4a\\x0b\\x81\\x57\\x93\\x9c\\xa2\\xe1\\xe7\\x10\\x71\\xee\\x26\\x3a\\xfe\\x56\\x3a\\xb9\\x71\\x42\\xb9\\xd6\\x75\\x65\\x16\\x2b\\x22\\x90\\x1e\\xbd\\x64\\xb3\\x5f\\xb8\\x9b\\xd0\\x2e\\xfd\\xa1\\xcc\\x47\\xe8\\x29\\x7d\\xb2\\xa8\\x9f\\x5a\\xad\\x76\\xee\\x75\\x34\\xdd\\x08\\xad\\x52\\xf4\\x46\\xbc\\x8b\\x17\\x6e\\x40\\xc0\\x84\\x27\\xe0\\xa4\\x1d\\x7b\\x60\\x4a\\x1c\\x47\\x59\\xa2\\x4d\\xec\\xd0\\x82\\xd9\\xf9\\x62\\x34\\xf1\\xba\\x8f\\x5f\\xc3\\x82\\x28\\x21\\x53\\x77\\xc9\\xef\\x54\\xa8\\x42\\x5d\\xe2\\x89\\x5f\\x02\\x5f\\xe2\\x0e\\xc8\\xd7\\x90\\x4c\\x4b\\x8a\\xff\\x73\\x2f\\xd1\\x7e\\x8d\\xf6\\x6d\\x14\\x00\\x1f\\xb5\\x2c\\xd9\\x50\\x99\\x89\\x8d\\xa8\\x89\\x82\\x87\\xcf\\x39\\x12\\x3f\\x41\\xf7\\x3c\\x42\\xa4\\x5c\\xe6\\x29\\x8b\\xdf\\x50\\x9c\\xa2\\x1a\\x22\\x3a\\x1f\\xed\\xd3\\x44\\x68\\x0a\\x00\\x3d\\xe3\\xb5\\x7d\\xef\\x3e\\xa2\\xeb\\x89\\xfb\\xb4\\x35\\x3c\\x4a\\x47\\x88\\x38\\xc8\\x60\\x4a\\xec\\x05\\x77\\x1c\\x9a\\x3c\\xe2\\xe8\\x36\\xe4\\xa3\\x07\\x3a\\xb9\\x05\\xe5\\x0c\\x8d\\xd8\\x49\\x49\\x80\\x53\\x7c\\x8a\\x3c\\x9f\\x53\\x62\\x19\\x36\\xfb\\x2d\\xc2\\x2c\\xb0\\x65\\xbe\\x0f\\xc8\\xf9\\x4f\\x1b\\x74\\x45\\xf5\\xb3\\xe3\\x6f\\x12\\x7e\\x03\\xae\\xbd\\x31\\x1c\\x58\\x93\\xf8\\x66\\x1f\\x82\\x3f\\xd0\\x88\\x18\\x21\\x56\\xaa\\xe3\\x1e\\xcf\\xbd\\x31\\x46\\xc5\\xbe\\x50\\x31\\x9f\\xc8\\xbe\\x2f\\x8d\\xd2\\x53\\x27\\x1f\\xb6\\xc7\\xfb\\xd2\\x8f\\x9c\\x25\\x38\\x93\\xe0\\x33\\xa6\\x0f\\x33\\xe2\\xd6\\xde\\xe4\\xfe\\x3b\\xfd\\x5a\\x1e\\x36\\x33\\x6e\\xf2\\x86\\xaa\\x16\\x06\\x52\\x6e\\xa8\\xc7\\x7b\\x33\\xf8\\x12\\x18\\x31\\xd1\\xed\\xe3\\xd6\\xc0\\x85\\x45\\x93\\x27\\x97\\x55\\x77\\x22\\x10\\x5a\\x48\\x58\\x23\\xef\\x14\\xbc\\xa3\\x07\\xc8\\x9d\\x30\\x35\\xaf\\x23\\x62\\xad\\x95\\x65\\xbd\\xa9\\xfa\\x0f\\xb9\\xe6\\x5d\\x46\\xd3\\x08\\x61\\xce\\x9f\\x2c\\x3b\\x80\\x2c\\x47\\x64\\x59\\x72\\x1c\\xef\\x1d\\x5f\\x56\\xd0\\x24\\x13\\xb2\\xaf\\x1a\\xfb\\x10\\x2d\\xe0\\x4e\\x9f\\xc8\\xae\\x6f\\xa4\\x55\\x57\\x3d\\xab\\xad\\xa7\\x9c\\xc8\\x69\\x1a\\x1c\\x63\\xa2\\xed\\xa8\\x02\\x87\\x6a\\x00\\x0d\\xef\\x8f\\x08\\xaa\\x3d\\xca\\x3f\\x53\\xa2\\x3f\\xec\\xd8\\xc3\\x1b\\x71\\x80\\x87\\x5a\\xb1\\x26\\x2c\\x6b\\x49\\x4c\\xf7\\x67\\xef\\xcd\\x49\\xe5\\x34\\x2c\\x98\\x42\\x28\\x83\\x42\\x19\\xa2\\xd9\\xfc\\x10\\x7f\\x75\\xbf\\x69\\x68\\xda\\x3b\\x2b\\x71\\x15\\xa2\\xa3\\x4d\\xcd\\x49\\x3b\\x94\\x63\\xc7\\x9b\\xf1\\x4e\\xb0\\xbe\\x73\\x5a\\xbd\\x07\\x06\\x50\\xb7\\x73\\xef\\x08\\x1e\\x07\\x78\\xef\\x71\\xd0\\xf5\\xf0\\x60\\x8b\\xb4\\xc0\\x2d\\x87\\x27\\x9d\\xa8\\x34\\xbf\\xc6\\x3b\\xf8\\x06\\xd5\\xbb\\xb8\\x18\\x87\\xe0\\x3e\\x74\\xd6\\x68\\x9a\\x4c\\x3e\\x5b\\x61\\x91\\xe8\\x81\\x5c\\x13\\x95\\xc3\\xc5\\x68\\x23\\x8a\\xe1\\xce\\x1d\\xe1\\x17\\x10\\x5c\\x43\\xc5\\x38\\x38\\x01\\xe6\\xf6\\x35\\xe7\\xba\\x97\\xee\\x7b\\x61\\x3d\\x04\\x61\\x96\\xf3\\x11\\x7d\\xcf\\x96\\x1c\\x2f\\x27\\x8c\\x08\\x4d\\xc1\\x2f\\x04\\x36\\x88\\xe3\\x66\\xfe\\x69\\x05\\xd0\\x82\\xd5\\xf7\\x51\\x3c\\x0b\\x0f\\x7d\\xb8\\x30\\x24\\xd5\\x4b\\xb9\\x02\\x7d\\x76\\x85\\x76\\xb1\\x72\\xa1\\xd8\\xa1\\x84\\x12\\x08\\xca\\x6c\\x07\\xf5\\x2d\\x94\\xf8\\x86\\x13\\x66\\xc8\\xb6\\x17\\x23\\xbd\\x20\\xe1\\x66\\x04\\xbb\\x8f\\x23\\x76\\x32\\xf7\\xc6\\x1f\\x3f\\xab\\xfe\\xd5\\xea\\xc9\\xf1\\x64\\xdb\\x58\\xd2\\x22\\x84\\xa5\\xd8\\xa5\\x90\\x8c\\x53\\x77\\xa2\\x34\\x19\\x5a\\x8c\\xfd\\x87\\xdf\\x69\\x13\\xe9\\xd0\\x2f\\x71\\x78\\x9a\\xe1\\x4e\\x9b\\x10\\x8b\\x83\\xbf\\xe0\\x73\\x64\\x22\\xd0\\x9c\\xb3\\x5b\\x31\\xe2\\x42\\xf0\\xe8\\x3a\\xdb\\xac\\x5f\\x12\\xe8\\xd1\\xf9\\x43\\xab\\xb5\\x00\\xa2\\xb2\\xa3\\x13\\x8a\\x4f\\x97\\xa4\\x65\\xa6\\x8c\\xc6\\xda\\x21\\xaa\\x03\\x45\\x39\\x7f\\x54\\x4d\\x72\\xbb\\x03\\x9d\\x14\\xdf\\x70\\xbd\\xff\\x48\\xe0\\xee\\xa3\\xac\\xf9\\x31\\x85\\x24\\xab\\x21\\x7c\\x91\\xc8\\x80\\x59\\x2d\\x97\\xe7\\xf5\\x81\\x85\\x58\\xb0\\xe8\\x6b\\xea\\x1c\\x83\\xd3\\xb7\\xfd\\xa1\\x0f\\xca\\x70\\x50\\xd4\\xde\\x5c\\x3e\\x15\\x6c\\x7d\\xfe\\xef\\x0a\\xeb\\xbf\\x90\\xd4\\xd3\\x02\\x91\\xcd\\x94\\x17\\xbe\\xab\\x28\\x26\\x22\\x85\\x14\\x17\\x82\\x6c\\xc7\\xa0\\x33\\x4b\\xfc\\x48\\x86\\x55\\x3a\\xb4\\xa3\\x89\\xf3\\xf0\\x66\\xdd\\x35\\x65\\xa6\\x36\\xba\\x22\\x07\\x9e\\x0a\\xd4\\xa1\\x6d\\x9a\\xc9\\x2a\\x97\\xc5\\x46\\x22\\x4b\\x52\\xb2\\xa0\\xe7\\x1c\\x10\\x15\\x93\\x34\\x94\\x98\\x66\\x7e\\x7b\\x78\\x9b\\xda\\x87\\xfe\\x7e\\x76\\x66\\x08\\x73\\xd4\\x01\\xfe\\x5d\\xa2\\x51\\x66\\x82\\xc0\\x22\\x9d\\xab\\x14\\x8b\\x59\\xb4\\x42\\xae\\xdc\\xc8\\x84\\x08\\x90\\xf6\\x51\\x90\\xbf\\xb2\\x27\\x74\\x9b\\x8e\\x7b\\xba\\x34\\xc3\\x24\\x1d\\x10\\x6b\\x2d\\xba\\x69\\x78\\xa1\\x67\\xa7\\xc5\\xa0\\xd0\\x0e\\xc4\\x9e\\x94\\xe1\\x3a\\xcf\\x8d\\x90\\x35\\x83\\xa4\\x15\\xb8\\xe6\\x29\\xc6\\xd6\\x60\\xe5\\x51\\x9a\\x4a\\x80\\xec\\xb1\\xf3\\x7c\\x95\\x99\\x33\\x32\\x49\\x83\\x6a\\x91\\xf3\\xab\\x68\\x55\\x61\\x26\\xe3\\xcd\\xfd\\xfd\\x8d\\x44\\x87\\x6b\\xfa\\xf2\\xef\\xd1\\xdf\\xf6\\x73\\x27\\xb4\\x64\\x24\\xad\\xcc\\xde\\x80\\x0c\\x7e\\xcf\\xa4\\x2f\\x1c\\x1f\\xd3\\x07\\x94\\xfe\\x65\\x6d\\xcc\\x0c\\x1b\\x3c\\xdb\\xf2\\x34\\x3d\\x89\\x92\\x6a\\xa4\\x7f\\x64\\xc3\\x7b\\xfb\\xf8\\xb1\\x11\\x04\\xa8\\xc8\\xca\\xd5\\xfe\\xac\\xc0\\x4e\\xb2\\xa1\\x04\\xd3\\xbb\\x40\\x27\\xd9\\x1a\\xcd\\xfb\\xf2\\x6d\\x60\\xa4\\x8a\\x41\\xb4\\x5f\\x52\\xea\\xe2\\x69\\xb4\\x40\\x98\\xf2\\x5f\\xbf\\x9f\\x23\\xf6\\xe5\\x10\\x5d\\xf9\\x5e\\x52\\x33\\x10\\xf0\\x71\\x7c\\xfa\\x2e\\x4b\\x26\\x06\\x17\\xf4\\x9c\\xc9\\xc4\\x46\\x53\\x3f\\xd6\\x39\\x09\\xb8\\xaf\\x34\\x4b\\xe2\\x3e\\xfd\\x18\\xbd\\x48\\xfc\\x50\\xf1\\xd9\\xb1\\x23\\xd4\\xe4\\x2b\\xf1\\x60\\xc6\\x14\\x10\\xad\\x55\\xf4\\xe7\\x31\\x04\\x55\\x99\\xf4\\x3e\\xc9\\x51\\xd4\\xd5\\x78\\x53\\x63\\x70\\x9a\\x52\\xef\\x57\\x78\\x98\\xf2\\x9c\\x7e\\x49\\xab\\x58\\x02\\x4e\\xfd\\xe4\\x86\\x10\\xe4\\x03\\x1d\\x25\\xad\\xc3\\x22\\xc2\\x35\\xe6\\x8e\\x59\\xf2\\xef\\xab\\xa2\\x8c\\x10\\xc2\\xd9\\xb2\\x37\\xde\\x5c\\x44\\x1a\\xa5\\xf1\\xf2\\x01\\xa6\\xd6\\xdf\\x67\\x43\\x8a\\xd9\\x29\\x15\\x29\\x30\\x49\\xbf\\x8d\\xe8\\x86\\x9f\\xf9\\xda\\x68\\xca\\x5d\\x20\\xcf\\x63\\x43\\xca\\xfd\\x6b\\x46\\x02\\xa7\\x65\\xae\\xec\\x28\\x16\\x87\\x9a\\xda\\x0f\\x50\\xf3\\x3f\\x14\\xb1\\x30\\x5d\\xa6\\xaa\\xe9\\x29\\x33\\x28\\x4c\\x96\\x94\\x9b\\xdd\\x14\\xb7\\x64\\xb6\\x76\\xc5\\x2b\\x92\\xd3\\x5b\\x02\\x8b\\x0c\\x63\\x96\\xe9\\x9a\\x4f\\x37\\xb4\\x04\\xcf\\xd9\\x89\\x87\\x56\\x11\\xc8\\x65\\xf9\\xb3\\x4e\\xe5\\x1e\\x61\\x6b\\x86\\xce\\xb8\\x27\\x44\\xce\\x16\\xbd\\xd9\\x1b\\x63\\x6f\\x33\\x88\\x6e\\x75\\x14\\xad\\x9e\\x96\\x6e\\xe0\\x93\\x7a\\xe0\\x8a\\x65\\xc2\\xa5\\x44\\x41\\x0a\\x59\\x24\\x2b\\x89\\xcf\\xa4\\x79\\xe7\\x78\\x2d\\xbe\\x8c\\xc7\\xdb\\xa4\\x42\\x36\\x1b\\xa9\\x0e\\xdf\\x9e\\x16\\x82\\xa3\\xc3\\x4d\\xed\\x59\\xe2\\x5f\\x70\\x10\\xc5\\x8a\\x8e\\x2c\\x17\\x36\\x5a\\x04\\xa9\\xd4\\xb2\\x8a\\xcd\\x2f\\x7f\\x0f\\xa9\\xb7\\x34\\x1a\\x3c\\x9b\\x9e\\x62\\x00\\xbd\\xef\\xcb\\x4b\\x95\\x78\\xc7\\x2c\\x8b\\xf1\\x86\\xf1\\x56\\x01\\xdd\\x47\\x15\\x6d\\xb5\\xec\\x12\\xba\\xc7\\xc0\\x7a\\x38\\xfc\\x97\\x96\\xf4\\x86\\xe7\\x91\\xf6\\xfb\\x83\\x5e\\x94\\x3c\\xcd\\x36\\xbe\\xce\\x30\\x4c\\x17\\xbd\\xcf\\xef\\xd7\\x82\\x4d\\xb2\\x36\\xce\\xaf\\xc1\\x80\\x6d\\x3c\\x8c\\x72\\x54\\xae\\x3e\\x00\\x20\\x1a\\x1d\\x24\\x4f\\x37\\x5a\\xb8\\x56\\x62\\x81\\x90\\x64\\xbd\\x36\\xc4\\xb0\\x23\\xa0\\x6c\\x3d\\x88\\x51\\xb6\\x3f\\xd8\\xd6\\x1f\\xb5\\xcb\\x23\\xbe\\xce\\x81\\xdf\\x07\\x94\\x93\\xf3\\xfd\\xc4\\x49\\x25\\x98\\x27\\xc1\\x9e\\x94\\x77\\x9b\\x93\\x66\\xf9\\x3d\\xe1\\xb2\\x20\\xa2\\x54\\xc6\\xdf\\x93\\x11\\x31\\x45\\x3d\\x3e\\x3d\\x9b\\xc8\\x49\\x3a\\x6f\\x17\\x0e\\x40\\x8f\\x7b\\xb5\\x82\\x7f\\x96\\xd5\\xa6\\x2b\\xe7\\x5c\\xb7\\xbb\\xc0\\xea\\x9a\\x24\\x23\\xc7\\x84\\x75\\x01\\xff\\x3c\\x2c\\xeb\\x5c\\x42\\x61\\x07\\xea\\x4e\\xc4\\x8e\\x08\\x7e\\x8c\\xfa\\xed\\xc3\\xae\\x90\\x81\\x0f\\x9a\\x87\\x97\\xcb\\x52\\x31\\x84\\xe7\\xd0\\x53\\xa3\\x31\\x67\\x51\\xc6\\xfa\\xa9\\x86\\x4a\\x9d\\xf9\\xc5\\x9b\\xa6\\xb1\\x2a\\xd2\\x5f\\xb8\\xe5\\xfd\\x09\\xe8\\x53\\x57\\xa3\\xbd\\x56\\x1d\\x38\\x16\\x69\\x92\\x03\\xe1\\x20\\xb0\\xc9\\x2d\\xb6\\x53\\xa1\\xea\\xcb\\x12\\x49\\xee\\xd0\\x0f\\x49\\x2a\\x12\\xf3\\x49\\x30\\x5f\\x43\\xba\\x94\\xab\\x05\\x44\\x63\\x3c\\x07\\xb2\\x23\\xe8\\x5d\\x9b\\x27\\x10\\x20\\x45\\x8c\\x00\\x29\\xcb\\x5a\\xb0\\x2e\\xc5\\x40\\x2f\\xad\\xe8\\xb5\\x10\\x8f\\x23\\xc1\\x72\\xb1\\xd6\\x92\\xcc\\xb5\\x17\\x5f\\x4c\\x49\\x7b\\xff\\xe1\\xe0\\x9c\\x59\\x82\\xb2\\x9f\\x5f\\x7b\\xde\\xb1\\x25\\x6c\\xc8\\x8c\\xfc\\x76\\x5b\\x92\\x53\\x5f\\x12\\x48\\xa8\\x81\\x1b\\x3e\\xb1\\x73\\xbc\\x84\\x44\\x96\\x13\\xa4\\xfe\\x8d\\x1a\\x01\\xa4\\x8b\\x92\\xea\\x19\\x6e\\x2b\\xcb\\xe5\\xb6\\xd7\\x7e\\x2e\\x7a\\x79\\xe7\\x11\\xcb\\x43\\x4e\\x09\\x00\\x8f\\x1b\\x0b\\x3c\\xa8\\xfe\\xc3\\x8f\\x7f\\x4b\\x65\\xdf\\xdf\\x35\\x1e\\x73\\x45\\x13\\xd0\\x8f\\x9e\\x6c\\xa3\\xf4\\x1c\\x90\\x83\\xae\\x4c\\x1a\\xf5\\x09\\xa4\\x5f\\x28\\x9e\\xfe\\x25\\x2e\\x93\\x91\\xd9\\x5c\\x63\\x31\\xa5\\xbd\\x14\\x2f\\x12\\x80\\x9b\\x5b\\xf7\\xf0\\x7c\\x3c\\xeb\\x9a\\xd0\\x80\\xb1\\x9f\\x68\\x51\\xbb\\x3b\\xfe\\x6b\\xca\\x80\\x74\\xf8\\xe6\\xae\\x78\\x7c\\x78\\x91\\x80\\x67\\xd0\\x89\\xb1\\x00\\xeb\\xd2\\xf1\\x84\\x2e\\x64\\x61\\x3a\\x98\\xc0\\x6f\\x22\\xe5\\x7d\\x4d\\x4f\\x46\\xdc\\x96\\xf0\\x19\\x89\\x95\\x57\\x59\\xa1\\xdc\\xa8\\x7b\\x2a\\x39\\xf2\\xd6\\x80\\xf7\\xa2\\x54\\x72\\x37\\x69\\x96\\xf4\\xb9\\x65\\x13\\x3d\\x2b\\x77\\xce\\xe9\\x82\\x23\\x3c\\xc9\\x3b\\xd7\\x96\\x4a\\x7b\\xb6\\xe8\\xc7\\xbc\\x16\\x09\\x13\\xf8\\xcd\\xf6\\x41\\xeb\\xf8\\xb8\\xfa\\x30\\x53\\xf9\\x51\\x69\\xb6\\xa5\\x5f\\xe2\\x44\\xc3\\x0a\\x2d\\x46\\xb3\\xdb\\x34\\x09\\xc7\\x4c\\x03\\xa7\\x8b\\xef\\x5a\\x78\\xc1\\xb3\\x9c\\x2f\\xb0\\xd5\\x0b\\xca\\x80\\xb9\\x06\\x76\\xec\\xf9\\xd1\\x73\\xe0\\x27\\xe2\\x3f\\x43\\xac\\xce\\xd4\\x47\\x19\\xed\\x18\\x7f\\x7a\\x18\\x2d\\x09\\x90\\x11\\x27\\x01\\x97\\xd9\\x3e\\x0c\\x0f\\xd6\\x21\\x71\\x65\\xae\\xa4\\xfd\\x19\\x89\\x05\\xa3\\xc4\\x3c\\xdd\\x8a\\xe3\\x2e\\xbb\\xf1\\xb5\\x3f\\x3d\\x66\\x78\\x5a\\xe9\\x6c\\x00\\x70\\xba\\x51\\x61\\xb9\\x21\\x64\\x95\\x7f\\xcd\\x28\\x16\\xa2\\x93\\xca\\xcd\\xdf\\x3e\\xa8\\xd0\\xf2\\x4e\\x68\\x2c\\x4c\\x17\\x73\\x39\\x85\\xbe\\x22\\x12\\xe1\\xec\\xc5\\x96\\xbd\\xba\\xa4\\xfb\\x49\\xe7\\x55\\x70\\x3d\\xe6\\xec\\x31\\x3a\\x89\\xed\\x81\\x34\\x3f\\x24\\x5c\\xa1\\x8c\\xa2\\xce\\xcd\\xed\\x8e\\xe3\\x10\\xa0\\x70\\xc6\\x9d\\xd6\\xe7\\x27\\x2c\\x77\\xde\\x63\\x70\\xef\\x78\\x7b\\xe0\\x8d\\xbd\\x95\\x64\\x5e\\xbf\\x03\\xf1\\x03\\x32\\x95\\x7d\\xe0\\x57\\xf3\\xfc\\x4f\\xd8\\xcb\\x85\\x9f\\x86\\x64\\x0c\\x89\\x46\\xf4\\x36\\xf9\\x83\\x7b\\xbc\\x45\\xc7\\x1c\\x38\\x86\\x7a\\x65\\x02\\x43\\x74\\x1e\\x7b\\x79\\x5e\\x76\\x9e\\xc9\\x26\\xce\\x30\\x17\\x2b\\xb8\\xe4\\x19\\x54\\xae\\x36\\xaf\\x19\\x76\\x66\\x8b\\x26\\xa0\\x9c\\x9a\\xb4\\x8a\\x45\\x58\\xba\\x58\\x27\\x7e\\xc4\\xf1\\x47\\xf4\\xa0\\xcb\\x53\\xe3\\xf6\\xa8\\x41\\x81\\x25\\xcb\\xc2\\x44\\x2f\\x55\\xf0\\x3e\\x68\\x98\\x2a\\xbd\\x74\\x00\\xec\\xb9\\x58\\x3a\\xca\\x55\\x49\\xb7\\xb8\\x74\\x72\\xca\\x4f\\x1f\\x2c\\x88\\x9e\\x5a\\x38\\x56\\xcf\\x12\\x8b\\x6d\\x2d\\xa5\\xbf\\x0e\\xff\\x38\\x61\\x1a\\x76\\x42\\x37\\x94\\x83\\xd2\\xff\\x01\\x02\\xec\\x2f\\x98\\xda\\x73\\x9d\\xdb\\x9d\\x76\\xd2\\x6d\\xc8\\x86\\x0d\\x4a\\x12\\xc8\\xd2\\xcb\\x0c\\xff\\x17\\xc7\\xeb\\xe9\\xee\\xf1\\xe1\\xf0\\x7b\\x6f\\xac\\x0a\\x28\\xd5\\xc1\\xc3\\x6a\\x82\\x97\\x3e\\x58\\x81\\xf8\\xc6\\x54\\x0a\\x67\\xa9\\x4a\\xba\\x7d\\x6f\\x51\\x44\\xbb\\xfa\\xc0\\xa9\\x28\\x0b\\x9f\\x3e\\xc5\\x6b\\x6b\\xd8\\x42\\xc1\\x7b\\x8c\\xea\\x94\\xe1\\x45\\x25\\xe4\\x1f\\xd6\\xbb\\x5e\\xde\\x9a\\xe3\\xbd\\x89\\xf7\\x5e\\xb6\\xd8\\x33\\x60\\x88\\xb9\\xdd\\x40\\xbc\\x20\\x15\\xb2\\x04\\x99\\x98\\x3d\\x33\\xb9\\xfe\\x82\\xeb\\xc9\\xf1\\x8e\\xd7\\xab\\x72\\x7d\\xd3\\xde\\xb2\\x29\\x2b\\x2f\\x35\\x45\\x69\\x75\\x0b\\x44\\xde\\x0c\\xf6\\x03\\x5a\\xa4\\x90\\x6b\\x43\\xf4\\x7f\\x52\\xc8\\x2f\\x31\\x57\\x6d\\xb3\\x0e\\xf6\\xe8\\x7a\\xad\\xe3\\x7b\\x8c\\xf6\\x77\\xba\\x40\\xe2\\x3c\\x2d\\xc4\\x23\\x44\\xf2\\x9c\\xec\\x42\\xfa\\x2d\\x86\\x8d\\x24\\x8a\\xa2\\xd5\\x54\\xb5\\xc3\\x46\\x8c\\x91\\x83\\xaa\\x1e\\x6f\\x45\\x52\\x46\\xd8\\x15\\x3c\\x21\\x14\\xc1\\x99\\xa6\\x6f\\x0e\\x21\\x9e\\x73\\xad\\xe1\\x71\\x3b\\x33\\xf9\\xdf\\xe9\\x83\\xa8\\xc1\\xbf\\x58\\x92\\x46\\xa6\\x36\\xea\\xa9\\xfa\\xde\\x0e\\x12\\x48\\x36\\x4d\\x74\\xe7\\x60\\x20\\x3f\\xe7\\xac\\x50\\x9e\\xc1\\x3a\\xb9\\xce\\x8a\\x23\\xa3\\x6e\\xb3\\x14\\x00\\xd6\\xc6\\xc9\\xab\\x7c\\x99\\x83\\x40\\xe5\\x61\\x54\\x9c\\x45\\x54\\x6b\\x2e\\x93\\x10\\x71\\x6b\\x7c\\xdc\\xf3\\x25\\xbf\\x59\\x9b\\x3a\\x9a\\xc0\\x27\\x17\\x72\\xf1\\x05\\x26\\xbd\\x57\\xd0\\x79\\x27\\x8f\\x48\\xb9\\x70\\xb3\\xc4\\x24\\x1f\\x8b\\xcf\\xe8\\x81\\x91\\xf1\\xc2\\xb8\\x26\\xde\\x96\\xae\\x92\\x86\\x28\\x15\\xe3\\xf0\\x64\\x11\\x53\\xc3\\x24\\xdf\\x7e\\x7f\\xd1\\x22\\x95\\xbc\\xab\\x6e\\xf3\\xaf\\x47\\x8b\\x0f\\x0c\\x79\\x2e\\x5e\\xe7\\x1e\\xbe\\x72\\x21\\xaa\\xd4\\x44\\xab\\x29\\x7a\\x46\\x74\\xd1\\xab\\xcc\\x5a\\xed\\xb5\\x5b\\xe8\\x4b\\x24\\x0d\\x9f\\xaa\\x4c\\xbc\\xb8\\x43\\x53\\x7f\\x66\\xcf\\xed\\x62\\xa9\\xac\\x5f\\x52\\x64\\xd0\\x73\\xaf\\x36\\xfe\\x66\\xa1\\x8c\\x55\\x5d\\x3c\\x34\\x00\\xce\\x35\\x51\\x56\\x92\\x5f\\xb4\\xa3\\xcc\\x5d\\xd5\\x0c\\x08\\xad\\x7e\\x30\\x4e\\xee\\xfb\\xe3\\xbd\\xf6\\x75\\x19\\x9a\\x3f\\x29\\xfd\\xb9\\x7b\\x87\\x0a\\xee\\x29\\x0e\\x4f\\x1a\\x35\\x5a\\x9d\\x7e\\x35\\x0c\\x44\\x14\\x1b\\x61\\xc4\\x30\\x8a\\xab\\xe8\\x5c\\x23\\x7f\\x2e\\x8a\\xa0\\xb3\\x61\\x37\\x0f\\xf5\\xe4\\x3d\\xdb\\x86\\x09\\x1e\\x5b\\xb7\\x28\\x96\\xc2\\x3a\\x66\\x67\\x1b\\x34\\x99\\x43\\x29\\x07\\xeb\\x1b\\x65\\xb3\\x0f\\x72\\xbb\\x07\\x75\\xd0\\x49\\xc8\\x2b\\x5b\\xc1\\x29\\x36\\x54\\xf0\\x50\\x81\\x77\\xc0\\x24\\xf6\\x76\\xc1\\xf1\\x14\\x4d\\x8d\\x99\\xd3\\xf2\\x2f\\x3d\\xc4\\x9a\\xa4\\x64\\x88\\x6a\\x34\\x96\\x5a\\x0d\\xfc\\x0d\\x37\\x63\\x85\\xfb\\x0a\\x3a\\x22\\x57\\x64\\xa1\\x2d\\x9f\\x6e\\x41\\x24\\xa2\\x6a\\xe8\\xb6\\x16\\x0a\\xb2\\x39\\x91\\xc1\\xf4\\xc2\\xe5\\xb6\\x4c\\x73\\xa3\\x10\\x61\\xf8\\xb4\\x6e\\x38\\xf4\\x5d\\x17\\x2d\\x06\\xd9\\x4f\\x8e\\xd0\\x3d\\x49\\xbb\\x42\\x61\\xb9\\x5f\\x96\\x6f\\xd1\\xac\\xe5\\x79\\x61\\x68\\x6a\\x01\\xcf\\xcb\\xce\\x9b\\xf0\\xf4\\x30\\x4e\\x48\\x12\\x2d\\x85\\x8c\\x4b\\x4b\\x48\\x55\\x37\\x6a\\x3e\\x8b\\xd3\\xe6\\x17\\xa8\\x0a\\xbd\\x8f\\x30\\xfd\\x2c\\x6d\\xa0\\x6e\\x9e\\x42\\x46\\x17\\xb6\\x22\\x80\\x37\\xb7\\x3b\\xad\\xfc\\xf7\\x35\\xfc\\x0f\\xbf\\x70\\x47\\xb3\\x27\\x66\\xdf\\x5f\\xad\\xc7\\x1f\\xd9\\xe4\\xa6\\xe7\\x23\\x09\\x5f\\x17\\x15\\xf8\\xa3\\x12\\xb2\\xea\\x94\\x62\\x8a\\x7d\\xb0\\xa7\\x52\\xf6\\xd7\\x36\\x4a\\x03\\x24\\x31\\xd0\\x84\\xe4\\x16\\x56\\xa1\\x3c\\x42\\x11\\xd5\\x7b\\xc9\\xfb\\xac\\xd1\\xd2\\xb3\\x6d\\x8d\\xd5\\xb1\\xf3\\x9f\\xf7\\xa7\\x3e\\xf6\\x0b\\x09\\x77\\x53\\xc4\\x91\\xf1\\xf3\\x6a\\x87\\xe0\\xfc\\x5b\\x8a\\xa7\\x0b\\x92\\xc3\\x29\\xf6\\xa2\\xb8\\x88\\xc0\\x03\\x28\\xf0\\xf7\\x10\\x7b\\x5d\\xcd\\x35\\x10\\x89\\x06\\x5a\\x86\\x26\\x3c\\xbc\\xbb\\x6c\\xa7\\x1e\\x87\\x15\\x11\\xa5\\xdc\\x0f\\xef\\x80\\xdb\\x82\\x9e\\x23\\x15\\x6f\\xa8\\x1a\\x3a\\xca\\xb1\\x5d\\xa7\\xee\\xf3\\xf2\\x67\\xa4\\x80\\x44\\xa6\\x33\\xdc\\x5f\\x59\\x9a\\x7f\\x0e\\xb8\\xbc\\xd3\\x3e\\x63\\xc4\\xfb\\x82\\xfb\\x5b\\x2b\\x32\\xed\\xf0\\x3f\\x48\\xca\\xa0\\x90\\x8c\\xd0\\xe8\\xd2\\x7a\\x4a\\x50\\xdd\\x34\\x03\\x7e\\x7f\\xfa\\x91\\xcb\\x78\\x25\\x28\\x08\\x95\\x1c\\x61\\x0c\\xf8\\x09\\xd3\\x84\\x84\\x05\\x27\\x78\\xea\\x54\\x9a\\x5a\\xb8\\x0f\\xbf\\x99\\x64\\xd2\\x28\\x34\\xc4\\x8e\\xd4\\x81\\x51\\xfe\\x8c\\x2c\\x6b\\x8a\\x4d\\xde\\x36\\x50\\xc4\\x1c\\xb7\\x23\\xba\\xf9\\x32\\xf1\\x2a\\x10\\xfd\\xa5\\x53\\xe1\\x04\\x6b\\xd9\\x4f\\xd1\\x29\\x1b\\xbd\\x65\\x72\\x80\\xd5\\x49\\x81\\x30\\x53\\x40\\x32\\x0f\\x13\\xd7\\xeb\\xd1\\x02\\xe4\\xcf\\x8c\\x79\\x45\\x2c\\xd1\\x9f\\x71\\x50\\xc5\\xb3\\xf1\\x43\\xb0\\x87\\x18\\xfb\\xa6\\xc0\\xa8\\xd0\\x0d\\x99\\x56\\xdb\\xce\\xb8\\x05\\xd9\\x3c\\xf6\\x30\\xae\\x37\\xd0\\x79\\xeb\\x9c\\x89\\x68\\x39\\x05\\x6c\\xc6\\xe6\\xa9\\x1a\\xa8\\xbc\\xf5\\x4d\\x6e\\xbc\\x16\\xa9\\x52\\x7b\\x2f\\xb4\\x54\\x08\\xc1\\xd4\\xbe\\x18\\x4f\\xd4\\xe9\\x66\\x53\\x76\\xf5\\xde\\xd5\\x4a\\x9a\\x42\\x18\\xc8\\xbf\\x62\\xb9\\xb0\\x50\\x16\\x86\\x59\\xfa\\xb0\\xb6\\xb3\\x43\\x26\\xc5\\xff\\x13\\x32\\xa2\\xae\\x2a\\x01\\x27\\x21\\x92\\xba\\x8b\\x3f\\xa4\\xf0\\xc7\\x88\\xd5\\xf3\\xd7\\xff\\x87\\xe3\\xe4\\x96\\x71\\xae\\xc9\\xa8\\xca\\xfe\\x4c\\x68\\x5b\\xc2\\x14\\x04\\xbb\\xcd\\xce\\xfe\\x6f\\x9c\\x96\\xdf\\xaf\\x1a\\xcc\\xf3\\x8e\\xa2\\x70\\x76\\x22\\x53\\xff\\x91\\x52\\x4f\\xd7\\x08\\x3f\\x0f\\xc6\\x60\\x6f\\x32\\x0d\\xff\\x43\\x22\\x24\\x9d\\xe4\\x2a\\xd1\\x2a\\x3d\\x43\\x2b\\x50\\xec\\x4f\\xcf\\x01\\xa2\\xcc\\x88\\x66\\x90\\x0f\\xbe\\x09\\x23\\xff\\x50\\xf7\\x37\\x2a\\xaa\\x23\\x4a\\x82\\xcb\\x33\\x3d\\xdd\\x2c\\xf4\\xf5\\xbf\\x4f\\x1a\\x59\\x5c\\x3f\\xae\\x1f\\xab\\x3f\\x87\\x95\\xc6\\x3f\\x72\\x4d\\x83\\x7c\\xa0\\xcf\\xcc\\xed\\x11\\xd9\\xbc\\xdd\\x26\\xc6\\x26\\x3b\\xe0\\x13\\x1e\\x2c\\xbb\\xc3\\xee\\x26\\xf9\\x3f\\x61\\x12\\xef\\xf0\\xb2\\x33\\xde\\x18\\xc6\\x02\\xfd\\x93\\xdb\\xfa\\x2e\\xe9\\xc6\\x78\\x99\\xbe\\xbe\\x98\\x69\\xb0\\x38\\x55\\xe8\\xdc\\x50\\x14\\x40\\x08\\xbf\\x25\\xf2\\x6a\\x9d\\x8d\\xac\\xf2\\x9a\\xb8\\x84\\x0f\\xca\\x24\\x6e\\xff\\xf5\\x60\\x8c\\x92\\x26\\x31\\x3e\\x56\\x2f\\x15\\x84\\xc1\\x1a\\x9e\\x52\\x0f\\xa1\\x13\\xd8\\x92\\xed\\x9c\\xdc\\x83\\xc9\\xe4\\x7d\\xfc\\x34\\xfb\\xb8\\x78\\x2a\\x84\\xe8\\xcf\\x85\\x04\\x56\\xdd\\x3f\\x6e\\x40\\xcd\\xb7\\x9b\\x21\\x41\\x33\\x6d\\x3e\\xab\\x6d\\x29\\x13\\xaf\\xdd\\x06\\x31\\x32\\x8b\\xe6\\x1a\\xf7\\x70\\x6e\\x25\\x69\\xe0\\x72\\x5c\\xe2\\x59\\xad\\xba\\x37\\x24\\x18\\x74\\xff\\x35\\xfb\\xb1\\x5a\\x9f\\x5f\\x0f\\x0a\\xdf\\xf5\\x2f\\x68\\x8b\\x00\\x97\\xa4\\x14\\x7f\\x2f\\x7e\\x31\\x82\\x75\\x2f\\xa2\\x42\\xc4\\x9d\\x0b\\x1d\\xef\\xf1\\x6d\\x5e\\xcd\\x23\\xcd\\x95\\x6e\\xe5\\xb0\\x6d\\x22\\xd8\\xd0\\x5e\\xd1\\x43\\x0e\\xe2\\x2b\\x07\\xd1\\x86\\xf1\\x9d\\x58\\xe5\\xe6\\x5b\\x88\\x12\\x23\\xcb\\xe8\\x0e\\x52\\xa4\\x93\\x88\\xd2\\x66\\xe3\\x56\\x12\\xb0\\xf6\\xc7\\x0f\\xd3\\xbf\\x18\\xf0\\xd7\\x71\\xdb\\x38\\x2b\\xb8\\x8e\\x99\\x10\\x18\\x99\\xb8\\x38\\x5d\\xd6\\x31\\xbe\\x0d\\x82\\x47\\x91\\xd7\\x96\\xf0\\x41\\x21\\xcb\\x26\\xa1\\xd4\\x01\\xe0\\x7d\\xee\\xcf\\x9c\\xdb\\x4d\\xb3\\xbc\\xa0\\xf7\\xf0\\x92\\xfc\\x10\\x3f\\x8e\\xb6\\x22\\xd4\\xc3\\x60\\x1c\\x13\\x18\\xe6\\xc4\\xff\\x4a\\x97\\x94\\x89\\x33\\xf4\\xfe\\x1e\\x21\\x4e\\x2f\\x5a\\x1d\\xff\\x22\\x1f\\xca\\xe8\\x14\\x35\\xb0\\x8b\\x50\\x40\\x5a\\x92\\x97\\xe4\\xfe\\xe7\\xe5\\x77\\x2b\\x70\\xf3\\xe7\\xfc\\xbb\\xdb\\xac\\x1e\\xb6\\x48\\x0e\\x0b\\x7a\\x51\\x30\\x07\\x74\\x94\\x34\\x4b\\xaf\\x0b\\xdb\\xa6\\xa1\\xc4\\x82\\x07\\xf5\\x50\\xa2\\x9a\\xc3\\xff\\x65\\xae\\x69\\x75\\x2e\\x8e\\xf2\\x77\\xf4\\x26\\x04\\xb4\\x8e\\x1f\\x39\\x6c\\x83\\xa3\\x95\\xb6\\x34\\x97\\xdd\\xa7\\x5b\\x1d\\x45\\x2f\\x1e\\xf5\\xd9\\x4f\\x1b\\xb5\\x62\\xae\\xd4\\x48\\xfc\\x43\\x9a\\x8a\\x99\\xbb\\x59\\x89\\x42\\xc9\\xb2\\x44\\xc6\\x67\\x87\\xd6\\xa0\\x65\\x1c\\x6d\\x30\\x4e\\xd6\\x63\\xcc\\x3f\\x85\\x15\\x2e\\xc1\\x27\\x77\\x66\\x53\\xab\\xc3\\xb3\\x43\\x8d\\xcf\\xb3\\x7b\\xb8\\x48\\xb3\\xe3\\xac\\x3e\\x53\\xfa\\xa9\\x08\\xbf\\x36\\x43\\x4f\\x95\\x1e\\xd7\\x10\\x49\\x81\\x05\\x20\\x7c\\x0f\\xc0\\x14\\x86\\x8b\\x5a\\x53\\xa0\\xdb\\x92\\x67\\x0c\\x8f\\xca\\xf1\\xbd\\xe3\\x07\\x17\\xe7\\x6c\\x18\\x4d\\x5e\\x4a\\xb6\\x24\\x91\\x2c\\x47\\xdb\\xbd\\xb6\\xab\\xa4\\x1f\\xe2\\xe6\\x4a\\x0e\\xe5\\x17\\x85\\x2e\\x70\\xe5\\x6a\\xff\\x67\\xff\\x8b\\x3c\\x37\\x4d\\x8a\\x3a\\xb2\\xb7\\x71\\x35\\x2b\\xf5\\x32\\x4c\\x58\\x69\\xfc\\x3c\\x6d\\x89\\xe0\\xc8\\xca\\x85\\x12\\x06\\x0c\\x32\\x09\\xfd\\x23\\x93\\x62\\x71\\xe2\\x9a\\xd3\\xdb\\xa0\\x33\\x04\\x6a\\x0d\\x5f\\xa4\\xfc\\xb7\\x13\\xc0\\x52\\x24\\xe5\\xc8\\x86\\xd0\\xe7\\x11\\x8d\\x80\\x75\\xd3\\xd5\\x73\\x9f\\x3b\\x41\\x40\\x42\\x96\\xa5\\xc9\\xcb\\x08\\x90\\x9b\\x6d\\x1b\\x40\\xb6\\xa2\\xca\\x99\\x41\\x86\\x5c\\xf2\\x0d\\x13\\x5b\\xe3\\x28\\x9c\\xf7\\xc7\\x39\\xed\\x2b\\xdb\\xbb\\x6d\\x7a\\x9e\\xc0\\x95\\xff\\xa4\\x00\\x62\\xaf\\x5b\\xd1\\xbf\\x4d\\x84\\xb6\\x87\\xb8\\xc3\\xf5\\xe1\\x82\\x71\\x8d\\x74\\x02\\xf9\\xae\\xde\\x71\\x29\\x01\\x3e\\x82\\x21\\xac\\x16\\xe1\\x83\\x8d\\x2a\\x55\\xb9\\x7a\\x87\\x9a\\x6c\\xa6\\xc2\\x48\\x31\\x07\\x22\\xaa\\xfc\\xf0\\xeb\\xd9\\x29\\xf2\\x8d\\xd9\\x6f\\x07\\x46\\x8d\\xd8\\x23\\x15\\x04\\xed\\xa1\\xbf\\x38\\xa9\\xb7\\xbf\\x85\\xa4\\xa3\\x8d\\x6d\\x5c\\x4c\\x28\\xdb\\xe9\\x35\\x7e\\x18\\xc2\\xd5\\x5d\\xf0\\x24\\x9c\\x6b\\xa1\\x46\\x54\\xc4\\x93\\x70\\xd3\\x07\\xec\\xc5\\xbb\\x2a\\x43\\xa6\\xae\\x28\\x25\\x31\\xbd\\x70\\x76\\x3c\\xc5\\x03\\x83\\x51\\x5d\\x35\\x64\\x0b\\x29\\xf8\\x64\\x4e\\x0f\\x38\\x7c\\x06\\x3a\\xcc\\x16\\x9c\\x35\\xa4\\xc3\\x29\\x1d\\xd3\\x3f\\x4b\\x0b\\xbf\\x3b\\xe0\\x33\\x19\\x0f\\x89\\xd3\\x28\\x8f\\xc5\\x24\\xe4\\x2b\\xd5\\xb9\\xd9\\x4d\\x68\\xee\\x67\\xe8\\x1e\\x2a\\x1e\\x80\\x76\\x93\\xcb\\x58\\xae\\x3d\\x2b\\x6a\\x8f\\x05\\x85\\x26\\x1a\\xca\\xfc\\x9f\\x47\\xe5\\x10\\x4d\\xfc\\xd1\\xf1\\x62\\x40\\x42\\x29\\xf8\\x60\\xb2\\x8e\\xc8\\x9d\\x95\\x78\\xfe\\xf6\\x9b\\x5f\\x42\\x98\\xce\\xf9\\xbf\\x21\\x16\\xf9\\x05\\x1c\\xbc\\x8a\\x3a\\xbc\\x57\\x50\\x58\\xee\\x7c\\xa0\\xa6\\x3e\\x46\\x4c\\x3c\\xdf\\xa0\\x47\\x94\\x49\\x43\\xe3\\x46\\x38\\x7e\\xe6\\x55\\xc3\\x3e\\x1a\\xfb\\xc4\\xe0\\x76\\x44\\x71\\xed\\x56\\x24\\xac\\x4e\\xac\\x8c\\x9a\\x06\\x2d\\xba\\xce\\x47\\xca\\x73\\x2d\\x6f\\x1e\\xe5\\xf5\\xc7\\x89\\xc2\\x5d\\xa8\\xf2\\x5c\\xd1\\x75\\x26\\xec\\xa7\\x02\\x97\\x87\\xa0\\x0a\\x11\\x15\\x9a\\x60\\x55\\x76\\x96\\xea\\xc0\\x84\\x10\\x67\\x95\\xdf\\x0e\\x10\\x36\\xca\\x7e\\x89\\x12\\xab\\xe1\\x93\\x52\\x55\\x1a\\xce\\x62\\xdb\\xa2\\xb2\\xd6\\x1a\\xb0\\x91\\x1f\\x03\\x84\\x67\\xab\\x9c\\x0a\\x65\\x67\\xf2\\x4b\\xb1\\x3c\\x4c\\x38\\x98\\x90\\x70\\x62\\xc0\\x3a\\x7e\\x0f\\x77\\x38\\x8a\\x1a\\x55\\xe3\\x29\\x09\\x3a\\x08\\x87\\x73\\xd0\\x2e\\xec\\xbe\\x85\\xb3\\xe2\\xc3\\x99\\xf1\\x6b\\x77\\xc9\\x74\\x9a\\x99\\x29\\xa4\\x4d\\x26\\x11\\xf1\\x4c\\xa1\\x68\\x8b\\x08\\x8f\\xec\\xda\\x94\\xf7\\xc7\\x2c\\x0a\\xfb\\x91\\x46\\xe1\\xbf\\x87\\x6c\\x6b\\x6f\\x8b\\x97\\xba\\xbc\\xe3\\xd0\\xba\\x61\\xdb\\x23\\xff\\xd0\\x04\\x90\\x18\\x22\\xc0\\x73\\xf3\\xe7\\x1e\\x77\\xea\\xac\\xff\\x4c\\xfe\\x20\\x02\\x31\\x88\\x11\\x27\\xdf\\x7d\\xa0\\x31\\x19\\x83\\x3c\\x60\\xbf\\xc1\\xc1\\x7c\\x1f\\x5c\\x33\\x96\\x92\\x48\\xc2\\xd5\\x42\\xe1\\x96\\x00\\x3a\\x31\\x6e\\x8e\\x98\\x41\\x3c\\xba\\xac\\x6e\\x19\\xd1\\xdc\\xbb\\x32\\x5a\\xdc\\x9e\\xcc\\x5e\\x08\\xa0\\xcb\\xe5\\x4c\\xea\\xdc\\x42\\x87\\x80\\x9d\\xcc\\xa1\\x11\\x9b\\x1d\\x63\\xa7\\x0e\\xe8\\xc9\\x08\\x97\\xf9\\x19\\x02\\x84\\x31\\x76\\xbd\\xe3\\xfd\\xba\\xfc\\x6d\\x57\\xf6\\xc1\\xe5\\x57\\xfd\\x17\\x5e\\x87\\x88\\x26\\xcd\\xd0\\x89\\x57\\xd8\\xd9\\x96\\xdf\\xc3\\x69\\x75\\x40\\x98\\x9a\\xae\\xeb\\xbd\\x40\\x28\\x8b\\x51\\x83\\x56\\xa0\\x76\\x12\\xc6\\xd4\\xab\\xec\\xdb\\x6a\\xf5\\xb6\\x3e\\x28\\xf8\\xc0\\x47\\xf0\\x47\\x3b\\x66\\xea\\x64\\x05\\x4d\\xf1\\xeb\\xbb\\x2c\\x7e\\xfa\\x6f\\x0e\\xa9\\x0d\\xc0\\xf0\\x21\\x36\\xfb\\xc3\\xd4\\xea\\x38\\x89\\x08\\xa0\\x4c\\xa2\\x78\\x1a\\xf6\\x11\\xd8\\x12\\xb7\\x1b\\xfb\\x8a\\x74\\x48\\xb3\\x11\\xed\\x73\\x69\\xac\\x9c\\xa9\\xea\\xf8\\x9c\\xa3\\xdb\\x16\\xf4\\xb6\\x97\\xa6\\xf2\\x7a\\x9e\\x28\\xac\\x9b\\x11\\xda\\x7f\\xe0\\xe4\\x97\\x2f\\x26\\x11\\x80\\x83\\xa2\\x9f\\xa0\\x74\\xc0\\x0e\\x77\\xc7\\xd2\\xec\\xd3\\xc1\\x21\\x57\\xba\\x7f\\xbe\\x53\\x8a\\x84\\x3d\\x95\\x96\\x84\\xde\\xc3\\x38\\x36\\x76\\xd0\\x78\\xdf\\xeb\\x8c\\xa3\\xc8\\x39\\x2e\\x55\\x29\\x4d\\xa9\\x44\\x2e\\x37\\x5f\\x4c\\x37\\x26\\xb9\\x89\\x74\\xaa\\xd9\\x53\\x00\\x8e\\x82\\x03\\x5d\\x12\\x33\\x13\\x4d\\x3d\\x67\\xab\\xf2\\xca\\x5a\\x87\\xb5\\xef\\xb6\\xcb\\xa1\\x52\\x45\\x9b\\x91\\x77\\xe4\\x56\\x64\\xbf\\xe3\\x42\\xcb\\x3f\\x4d\\x73\\xf0\\x3e\\x49\\x01\\x79\\xa5\\x1b\\x8b\\x8b\\xbf\\xa4\\x0c\\xd9\\x69\\x9a\\x3a\\x82\\x18\\x33\\x7e\\x58\\xe5\\x0c\\x9f\\x63\\xd0\\x28\\x83\\xb4\\x21\\x83\\xca\\xa1\\x89\\x72\\x71\\x48\\x4b\\x8c\\xd3\\x35\\x41\\x6e\\x3c\\x9b\\xab\\x86\\x4d\\xb2\\x35\\x98\\xa1\\x0e\\x15\\xbf\\x57\\x47\\x14\\xc6\\x8d\\x7a\\xc5\\xef\\xe8\\xa2\\x36\\x79\\x66\\x89\\xda\\xbf\\x6e\\x8f\\xd8\\x71\\xaf\\xad\\xdf\\x5e\\x19\\xde\\x47\\x85\\x82\\x5e\\x2d\\x76\\x09\\x9a\\x7e\\x52\\x79\\xfd\\x8d\\xf8\\x4d\\xda\\x9e\\x48\\x4a\\x49\\x0e\\x4e\\x2d\\x75\\x06\\x58\\x89\\xd9\\xe0\\x60\\xb4\\xaa\\x82\\x2a\\x95\\xaf\\xc9\\x48\\x11\\x4d\\x98\\x86\\x79\\xa5\\x8c\\x54\\xd5\\xee\\x4a\\x15\\x9f\\x07\\x98\\xc0\\xb1\\x50\\x99\\x7c\\xa3\\xf7\\x45\\xd9\\x3c\\xb6\\xab\\xaa\\x70\\x2f\\xbf\\x3a\\x09\\x66\\xe3\\xde\\x0e\\xc6\\xa2\\xa2\\x3d\\x46\\x2e\\xed\\x05\\x71\\xc6\\xb8\\x80\\xe8\\x71\\x48\\x69\\xa2\\xc9\\x49\\x15\\xb2\\xcd\\x32\\x57\\x30\\x7b\\xa2\\xff\\xa0\\x6f\\x8b\\x50\\xd3\\x40\\x58\\xfb\\x44\\x8e\\x99\\xd6\\x9d\\xec\\xfe\\xa8\\x0f\\x2c\\xe4\\x8c\\xa1\\x9e\\x14\\x0a\\x13\\x63\\x39\\x61\\xce\\xd8\\xfc\\x86\\xf2\\xdb\\xc2\\x7f\\x23\\x40\\x78\\xbb\\xe0\\x84\\xbb\\xe2\\x79\\x05\\x29\\x23\\xbf\\xd0\\xf3\\x91\\x86\\x66\\x29\\x09\\x6c\\x8b\\xc7\\x89\\x2f\\xc4\\xd6\\x1b\\xd1\\xe6\\xcf\\xec\\x7d\\x4d\\x53\\xd9\\x45\\xbf\\x8a\\x02\\xb4\\x30\\x40\\xc9\\x2a\\x35\\x25\\x1a\\xf6\\x62\\xa2\\xbf\\xb9\\xc5\\x2b\\x16\\x98\\x6a\\x1b\\x5c\\xab\\x22\\xc7\\xaa\\x75\\x80\\x52\\x81\\xa3\\x19\\xff\\xa1\\x0f\\x79\\x36\\x74\\x64\\x93\\x79\\x55\\x43\\x3d\\xc9\\xda\\x0f\\xa7\\xb5\\x1b\\x35\\x4e\\x5f\\xc3\\xb4\\x93\\x02\\x75\\x44\\x39\\xa4\\x15\\x7f\\x76\\x20\\xb1\\x76\\xbb\\x03\\x08\\x61\\x16\\xb8\\x94\\x6b\\xc7\\xca\\x55\\x35\\x0a\\x97\\x0d\\xe2\\xde\\x57\\x34\\x1f\\x55\\x44\\xfe\\x93\\x5c\\x1e\\x74\\xe8\\xef\\x3b\\x87\\x41\\x54\\x2d\\xf4\\x54\\x1f\\x4c\\x4f\\x38\\x22\\x83\\xa4\\xef\\x79\\xf6\\xcf\\x7c\\xb2\\xa9\\x59\\x36\\xd0\\x63\\xe7\\xd9\\xf4\\xa8\\x2b\\x5a\\xf7\\x20\\xbe\\xb2\\x21\\x62\\x3a\\xe7\\x06\\x7e\\x6b\\x34\\x4f\\x34\\x13\\xaf\\xbf\\xa9\\x2c\\x3e\\x55\\xb8\\x86\\xff\\x95\\x63\\x31\\x10\\x51\\xd9\\x22\\xe8\\x8e\\xf4\\x59\\x5e\\x6b\\x2a\\xb7\\xa9\\xde\\x17\\x78\\x6d\\xf2\\xdf\\xce\\x3c\\xd8\\x42\\x2a\\x32\\xdc\\x12\\x60\\xd0\\xb5\\x4b\\x60\\x60\\x75\\xaf\\x2f\\xe7\\x55\\xfc\\x14\\x98\\xa7\\x23\\x55\\xf8\\x73\\xc1\\x51\\x08\\x07\\xa9\\x8b\\x99\\x89\\x4c\\x57\\xf6\\x80\\xaf\\xff\\xe1\\x94\\xc0\\xbd\\x58\\xcf\\x46\\x75\\x59\\x37\\x25\\x27\\xab\\x74\\x4e\\xc2\\xbb\\x0d\\x4f\\x90\\xf2\\x21\\x95\\x1c\\xb8\\x01\\x57\\xb8\\x51\\x71\\x29\\x02\\x80\\x2e\\xa5\\x9d\\x6b\\xef\\xb8\\x6b\\x9f\\x53\\x1c\\x59\\xa6\\x12\\xad\\xea\\xa5\\x58\\x7d\\xc4\\x7c\\xc3\\x9d\\x91\\x19\\x48\\x83\\xfe\\xc1\\x98\\x0d\\xbd\\xd3\\xf5\\x4e\\x17\\xef\\xfb\\x51\\x91\\xfc\\x33\\x18\\x00\\x5a\\xa5\\x0b\\x3c\\xa5\\xe1\\xea\\x3e\\xd8\\xf9\\x2b\\x50\\x89\\xf3\\xfd\\x9c\\x0f\\x6a\\x2a\\xdf\\xe8\\x23\\x07\\xd7\\xf5\\xb9\\x8a\\x38\\xfa\\x71\\xc2\\x55\\xfd\\x27\\x4e\\xdc\\xa8\\x3e\\x5f\\x43\\x3f\\xe9\\xa0\\x60\\xff\\x60\\x37\\xfa\\x4b\\x28\\x09\\xd7\\x0d\\x4f\\x37\\xef\\x8f\\x49\\x1e\\x4e\\x92\\x5a\\xa2\\x20\\x0b\\xf4\\xf6\\xe5\\xbd\\x84\\x6a\\xda\\x12\\xfa\\xd0\\xf6\\x64\\x48\\x3b\\xdd\\x36\\x36\\x59\\x3d\\x73\\x00\\x8f\\x89\\x65\\xd5\\xb7\\x19\\x35\\x72\\xa3\\xe0\\x65\\xdc\\x17\\x02\\x0f\\x03\\x03\\xd7\\x43\\x53\\x23\\x3b\\x6a\\x61\\xbd\\x96\\xdf\\x83\\xfe\\xb3\\xa1\\xdb\\xfe\\xd0\\x0f\\xeb\\x94\\x5a\\xf1\\x71\\x93\\xfe\\x19\\x7f\\xbc\\xe4\\xa7\\xcd\\x2d\\x06\\x61\\x5a\\x6b\\xe3\\x9f\\x07\\x7f\\xf7\\xa5\\xd8\\x42\\x50\\x11\\x0d\\xc6\\xb9\\xd0\\x7d\\xcd\\xb9\\xaa\\xa4\\x79\\x27\\xe2\\xf6\\x54\\x59\\x26\\x52\\xda\\x08\\x9d\\x55\\x6b\\xa3\\x15\\xc7\\x1a\\xcc\\xbb\\x0a\\x17\\xeb\\x56\\xb6\\x63\\x7f\\xeb\\x38\\xd4\\x75\\x5c\\x76\\xc9\\x7a\\x87\\x7a\\x1e\\xca\\xf1\\x66\\xa0\\x6d\\xf9\\xab\\x5e\\xb6\\x94\\x5c\\xc2\\x39\\x4d\\xa3\\x8e\\x44\\xaa\\x75\\x1b\\xa0\\xc2\\x38\\x15\\x57\\xde\\x05\\x53\\xd1\\x7f\\x96\\x04\\xa3\\x3e\\x3d\\xdc\\x09\\x45\\x39\\xd1\\xd6\\x47\\x58\\xf9\\xfe\\x6c\\xeb\\x38\\x2c\\x43\\x77\\x63\\x86\\xf2\\x8b\\x2a\\x23\\x46\\x29\\x31\\x6f\\x32\\x35\\x60\\x0f\\x1f\\x08\\x61\\x02\\xa0\\x9b\\x57\\xf8\\xed\\x16\\x03\\xa9\\x69\\xfb\\xf9\\x2b\\x31\\xb0\\xbf\\xbe\\x6c\\xa2\\x53\\x5d\\xb7\\xfe\\x6b\\x36\\xea\\xd0\\x80\\xc7\\xf9\\x17\\x6f\\x6b\\x43\\x8d\\x38\\x2a\\x81\\xf1\\x68\\x9a\\xde\\xd3\\x21\\x86\\xd5\\xc5\\xc2\\xd7\\x3c\\x63\\x9a\\x54\\x18\\x7c\\x3e\\x64\\xdf\\xe9\\x01\\x49\\x0c\\x22\\x8a\\x8d\\xeb\\x56\\xf1\\xbf\\x7f\\x28\\xe2\\xfb\\x8c\\xed\\x3b\\x6b\\x2b\\x86\\x3a\\x93\\x71\\x26\\x88\\x61\\x83\\x36\\x7d\\xc0\\xa1\\x79\\xfc\\x46\\x4a\\x4d\\x94\\xb5\\x6c\\x03\\xb5\\x66\\x04\\x0d\\xfb\\x9b\\x79\\xc6\\x65\\x23\\x88\\x74\\x6c\\xe3\\xd3\\x2b\\x0b\\x8f\\x33\\x92\\x7c\\x02\\x1f\\x2b\\xc1\\xc5\\x34\\x08\\xa3\\x2d\\x15\\xb6\\x60\\xfe\\x1b\\xeb\\x25\\x1b\\x55\\x1c\\xf0\\xab\\xdf\\x5e\\xd1\\xe2\\x7b\\x24\\x5d\\x25\\xec\\x1f\\x79\\xd6\\xc5\\x33\\x41\\x16\\xf4\\x5f\\x0b\\xb5\\xda\\xfd\\x02\\x04\\xb8\\x51\\x3d\\xb9\\xa5\\xf8\\x52\\x10\\x4f\\xf5\\x24\\x78\\x20\\xf5\\x36\\xe1\\x80\\x37\\x43\\x61\\x9b\\xa2\\xa3\\x33\\xb2\\x77\\xe6\\x13\\xa3\\xe3\\xb8\\x42\\x68\\x0f\\x0f\\x88\\x84\\xcc\\x88\\xfc\\x4e\\x8f\\x92\\x82\\x23\\x4a\\x81\\x49\\xef\\xf2\\xfc\\x4e\\xbb\\xdf\\xb0\\x11\\x37\\xbc\\x9c\\xb3\\x3a\\x9f\\x21\\x53\\x40\\x85\\x4d\\xf0\\x34\\x99\\x5a\\x2a\\x8e\\x48\\x09\\x58\\xc5\\xb8\\x25\\x62\\xdb\\x38\\xfb\\x55\\x0f\\xb8\\xc4\\x60\\x41\\x66\\x4f\\x23\\x40\\x42\\xa8\\x54\\xb2\\x6b\\x52\\xb1\\x58\\x44\\xf5\\x43\\xa3\\x2c\\x7f\\xab\\x42\\xf3\\xa2\\x48\\x0b\\x5b\\xfd\\xf8\\x7d\\x75\\x7c\\xbc\\x20\\xdc\\x64\\x33\\x49\\xc7\\x10\\x9d\\x1c\\x53\\xf6\\xad\\x67\\xb9\\x6f\\x75\\x23\\xbf\\xfd\\x0e\\x05\\x6b\\x7a\\x1b\\x4f\\x23\\x29\\xfe\\xec\\xbd\\x6e\\xcd\\xd2\\x3a\\x06\\xc6\\x09\\x12\\xdc\\x3a\\xec\\x5b\\x32\\x36\\x8c\\xa2\\xc4\\x8c\\xe3\\x89\\xa2\\x37\\xfc\\x50\\x68\\x49\\x6d\\x81\\xe6\\xde\\xa3\\x59\\xa8\\x51\\xec\\x7f\\xab\\x7d\\x8c\\x5d\\x02\\x94\\xa5\\xa4\\xf0\\x29\\x12\\x54\\x3e\\xb5\\x9d\\xf5\\x55\\xe2\\x40\\x7e\\x4b\\x81\\xd3\\x43\\xda\\x65\\x42\\xd1\\x68\\x1f\\x16\\x7c\\x85\\xf0\\x99\\xe5\\xd8\\x39\\xd9\\x52\\x9d\\x10\\x4d\\x01\\x55\\x5e\\x1d\\x94\\xa5\\x04\\xbe\\x25\\x90\\x90\\x01\\xc1\\xd6\\xcf\\xd6\\xaf\\xa3\\x2a\\x36\\x06\\xd3\\x0e\\x88\\x1f\\x4d\\x64\\x43\\x0b\\xbf\\x7e\\xa7\\x24\\x9a\\x28\\xd6\\xa7\\xa0\\xa4\\x4d\\xd3\\xbd\\xe6\\x15\\x15\\x49\\x56\\x0a\\x30\\x92\\x67\\x70\\xa9\\x93\\x7f\\x85\\xdd\\x4a\\x4d\\xf0\\x61\\xc2\\xc8\\xab\\xec\\x8f\\x3e\\x55\\x00\\x51\\xfa\\x95\\xe9\\x2e\\x8a\\x44\\x46\\x8d\\x38\\x7b\\x3a\\xb2\\x0c\\x92\\x29\\x4a\\x33\\x9d\\x21\\x9b\\x37\\xe2\\xc4\\xc6\\x2a\\x4f\\x14\\x95\\x31\\xee\\x4a\\x20\\x36\\xd3\\xb1\\x17\\x73\\xc9\\x5c\\xe7\\x13\\xb1\\x10\\x6a\\xad\\x68\\xaf\\x91\\x30\\xa2\\x4c\\xa9\\x2c\\x61\\x75\\x67\\x4a\\x64\\x72\\x07\\x76\\x8a\\x39\\x1e\\x0e\\xf3\\x50\\xf1\\xfc\\xef\\x59\\x51\\x21\\xf6\\x02\\x06\\xd5\\x49\\x45\\x73\\x20\\x27\\xff\\xf9\\xc4\\x3c\\x1c\\x19\\x2e\\xde\\x75\\xe7\\xf6\\xcb\\x1e\\x5f\\x81\\x06\\xc4\\x7d\\x75\\x7f\\x52\\xc1\\x74\\x1d\\xc2\\x4f\\x16\\x28\\x26\\xeb\\x1f\\x4a\\x4b\\xff\\xcb\\x4f\\x3d\\xb4\\x95\\xf7\\x9f\\x79\\x1a\\xc5\\x40\\x24\\xe0\\x2f\\x65\\x38\\x48\\x72\\x6b\\x2c\\x28\\xec\\xe4\\x81\\x29\\xb0\\x36\\x8f\\x94\\x0b\\xdd\\xc4\\xf6\\x97\\x9c\\x8f\\x12\\x5e\\x24\\x2e\\x11\\xf2\\xaf\\xde\\x2f\\x97\\x56\\xd3\\xbc\\x20\\xb4\\xc2\\xe1\\xb2\\x7c\\x6f\\x6f\\x67\\x3b\\xd8\\x36\\xe3\\xe7\\x98\\x9c\\xfa\\x5e\\x17\\xa6\\x10\\x2c\\x44\\x43\\xd3\\xed\\x5a\\xfe\\x72\\x3c\\x95\\x1d\\xf4\\xab\\x99\\x1e\\xf1\\xb8\\x40\\x19\\x60\\xee\\xbf\\x9a\\x35\\x15\\x06\\xfb\\x78\\xf8\\xdc\\xbf\\xb9\\x73\\x80\\x9c\\x04\\x88\\xdf\\xc3\\x27\\x79\\xee\\x01\\xf6\\x8d\\xec\\x17\\x43\\xcb\\xf8\\x77\\x95\\x68\\x37\\x79\\x03\\x16\\x0f\\x96\\x80\\xc1\\x35\\x91\\x41\\xab\\x4d\\x8e\\x36\\x42\\x4a\\x6a\\x45\\x7e\\x76\\x66\\x4e\\x6e\\x0b\\xb1\\x09\\xd6\\x56\\x0f\\xd2\\xf8\\xb1\\x10\\x51\\x8b\\xda\\x59\\xb5\\xab\\x48\\xb2\\x2d\\xd6\\x85\\x68\\x88\\x52\\xea\\x43\\x22\\x44\\x2e\\xe4\\x43\\xd9\\x47\\x0f\\x71\\x9e\\x57\\x97\\x6c\\x5b\\x12\\xd1\\xed\\x23\\xef\\xe7\\xfa\\x0c\\x9a\\x79\\xdc\\xc2\\x05\\x04\\x43\\x2c\\x13\\xa7\\x0e\\x1d\\x97\\x53\\x27\\x9e\\x6a\\xff\\xec\\x38\\x42\\xd4\\x53\\x44\\xfe\\x83\\x5a\\xa5\\xce\\x63\\xfc\\xa4\\x92\\x92\\xd4\\x2b\\xbf\\x52\\x77\\x92\\xd3\\x22\\x2e\\x52\\xfa\\xe6\\x30\\xc7\\xed\\x73\\x88\\xed\\x1b\\x25\\xb1\\x24\\xfe\\x2e\\x5a\\x31\\xab\\x93\\x70\\xc4\\xc8\\x7b\\xd5\\x94\\x89\\x8a\\x99\\x3f\\xeb\\xea\\x4a\\x4b\\xdd\\xd8\\x45\\x4b\\xfb\\x75\\x04\\xfb\\xd4\\x68\\xc9\\xfb\\x6f\\x73\\xe4\\xb9\\x9d\\x5d\\xbf\\x1f\\x74\\x63\\x8c\\x66\\x24\\xd5\\xbc\\x0e\\xb4\\xb4\\xe3\\x1f\\x41\\xe9\\xf4\\xb1\\xbb\\xcd\\xfa\\xa2\\x92\\xc9\\xa4\\xc7\\x7a\\xf1\\xf2\\x27\\x29\\xea\\xa5\\x74\\x35\\x34\\xc3\\x2c\\x95\\xf1\\xa3\\xe7\\x69\\x16\\x5a\\x2b\\x50\\x69\\x4b\\xe4\\x3e\\xed\\x63\\xda\\x06\\x7d\\xc1\\x15\\xfd\\x84\\x10\\x41\\x45\\x34\\xe9\\xfe\\x59\\x6a\\x13\\x22\\x13\\xf3\\x65\\x6f\\xdc\\x7b\\x00\\x40\\xf6\\x10\\x7f\\xc2\\x5c\\x64\\xfe\\xa8\\x5e\\x50\\x99\\x3b\\x22\\xf5\\xcc\\x2d\\xf2\\x94\\xba\\xd3\\x59\\x73\\x78\\x9b\\x3a\\xc6\\x17\\x13\\x81\\xb6\\x02\\xf3\\xaa\\x42\\xb4\\xd3\\xd7\\x11\\x3d\\x28\\x59\\xf3\\xd1\\xaa\\xe0\\xea\\xf4\\x22\\xcd\\x14\\x72\\x0e\\xaf\\xf9\\x3f\\x77\\x07\\x10\\x32\\x94\\xd1\\x3b\\x48\\xba\\x9f\\x32\\x4a\\x36\\xd9\\x80\\x4e\\x64\\x56\\xb2\\xfd\\x93\\xcc\\x44\\xbe\\xcf\\xfd\\xa5\\x44\\x73\\x5a\\x88\\xda\\xf2\\x12\\x71\\x16\\x47\\xfa\\x9b\\x67\\xc4\\xa6\\xf2\\xea\\x09\\x1d\\x55\\xa1\\x1f\\x7c\\x3d\\xfa\\x82\\x6b\\x17\\x14\\x1e\\xfe\\xf5\\x53\\x4d\\xb1\\x62\\x08\\xa4\\x4d\\x91\\xd7\\x7e\\x58\\x24\\x9e\\xc8\\x8a\\x41\\x34\\x57\\x68\\x3e\\x7f\\xd4\\x84\\xfd\\x73\\xd7\\x9d\\x8a\\x25\\x6d\\xb4\\x14\\x73\\x33\\x53\\x33\\x97\\xa9\\x78\\x54\\xde\\x2f\\xc8\\x97\\x1f\\xf3\\xf7\\x85\\x7c\\x5c\\xc3\\x76\\xc3\\xa2\\x11\\x2c\\x8a\\xbf\\x59\\x92\\x04\\xeb\\xf0\\x37\\x77\\x6f\\xb0\\x74\\x33\\xe7\\x70\\x2b\\x15\\x54\\xf6\\xd8\\xde\\x78\\x78\\x78\\x9c\\x02\\x79\\x69\\x35\\xbf\\x55\\xcb\\x92\\x78\\x1d\\xb9\\x63\\x53\\x1b\\xca\\x52\\x22\\x52\\x16\\x8f\\xe4\\xeb\\xe1\\x41\\xe2\\xc1\\xcc\\x59\\x36\\xc1\\xda\\xba\\x30\\x1f\\xdd\\xa4\\x9f\\xcc\\xac\\x35\\xc5\\x0a\\xfb\\x75\\x44\\xe4\\x59\\x12\\x4c\\x55\\x9c\\x92\\x0c\\x67\\xe1\\x52\\xd7\\xdf\\x59\\xa3\\x52\\xd9\\xf7\\x7e\\x16\\x31\\x0a\\x12\\x5d\\x9d\\x3b\\x41\\xa3\\x3a\\xea\\x75\\x1d\\x87\\x44\\x10\\xd7\\xed\\x02\\x0c\\xc2\\xa9\\x4f\\x13\\xd1\\xf6\\xc1\\x60\\x45\\x2e\\xaa\\x50\\x89\\xf4\\x22\\x76\\x8b\\xd5\\x92\\xf9\\x23\\x1f\\x28\\xc8\\xf0\\x6b\\x2c\\xb7\\xb0\\xeb\\x26\\x02\\xea\\x0f\\x47\\x2c\\x9f\\x67\\x89\\xf5\\x35\\xa9\\x04\\x53\\x63\\xb9\\x87\\x46\\x3f\\x3c\\x59\\x44\\xfa\\x7b\\xc9\\xcd\\xdb\\x33\\x0b\\x54\\x86\\x20\\x89\\xbd\\xfc\\xa4\\xe1\\x6c\\xe3\\x5f\\xdd\\xd2\\x3f\\xa1\\x1d\\x08\\xee\\x8c\\x86\\x3c\\x9b\\xb8\\xc7\\x9f\\x7f\\x3a\\x79\\xdc\\xd7\\xc0\\x50\\x79\\x40\\xe3\\x27\\xbc\\x1b\\xe2\\xb5\\x99\\x88\\xcb\\x0e\\xa5\\x1e\\x2a\\x8b\\xb2\\x16\\x4b\\x85\\x05\\x62\\x0e\\x06\\x4a\\xeb\\xb6\\x25\\x8c\\x85\\xfb\\x4f\\x82\\x59\\xe2\\x95\\x58\\x13\\xa1\\xb3\\x58\\x75\\x5c\\x90\\xee\\xde\\x06\\x60\\x8a\\x8b\\x55\\x4d\\x8d\\x10\\x37\\xec\\x43\\xbd\\xff\\x56\\x5f\\xe4\\x27\\xda\\x54\\x2b\\x24\\xb7\\x7b\\x91\\xee\\xda\\xf2\\xc9\\xb0\\xd7\\x93\\x3f\\x98\\xc5\\x23\\x63\\xa7\\xba\\x88\\xc1\\x0d\\xa3\\x22\\x64\\x42\\x69\\x18\\xee\\x6b\\xb1\\x50\\xb4\\x7e\\x46\\x62\\x0d\\x5d\\xac\\x8c\\x82\\xf2\\x7c\\xc2\\xf1\\xe7\\xe2\\x25\\x58\\x98\\x2b\\x71\\xcb\\x7a\\xa9\\x9b\\x51\\x3f\\xe0\\xc5\\x14\\x37\\x83\\xb9\\x71\\x4d\\x67\\xa7\\x6d\\xac\\x3d\\x1d\\x66\\xd9\\xa4\\x2d\\xd9\\xf5\\x4a\\x58\\x48\\x99\\xb1\\x29\\x6a\\xa0\\x48\\x66\\xf3\\x64\\xa9\\x8c\\x01\\x0f\\x39\\x70\\x56\\xcf\\xb0\\x8e\\x20\\xfc\\xca\\x2c\\x95\\xef\\xed\\x35\\xef\\x76\\x7f\\x0e\\x89\\x34\\xfd\\x05\\xfa\\x2c\\xb4\\xc8\\xcd\\x2f\\xf5\\x9a\\x24\\x7b\\x62\\xe2\\x34\\x13\\xdf\\xa6\\x22\\x51\\x4e\\xa5\\x58\\x63\\xcc\\xa4\\x1f\\xab\\x27\\xce\\x74\\x18\\x70\\xc4\\x3f\\xb0\\x52\\x23\\x49\\x8b\\xec\\x05\\xc8\\x4d\\x33\\x82\\xe6\\xe6\\xfc\\x3b\\x51\\x98\\x45\\x99\\x2b\\xda\\x6c\\xe2\\x8b\\x6b\\x79\\x4e\\xf3\\x0c\\x0a\\xed\\xc3\\x6d\\x6d\\x37\\x14\\xc4\\xf8\\x86\\x2b\\x2a\\x94\\xd1\\x8a\\x29\\x05\\x82\\x7e\\x4a\\x91\\x41\\x91\\xf2\\x5b\\x9b\\x21\\x52\\xef\\x45\\xdf\\x95\\x1a\\x3e\\xd3\\x4a\\x78\\x9a\\x50\\x08\\xf8\\x06\\xea\\xbb\\x1d\\x34\\x3f\\x25\\xca\\x9a\\x9a\\x06\\x2c\\x8a\\x9a\\xd0\\xee\\xb6\\x78\\xce\\x51\\x92\\x61\\xda\\x67\\x7e\\x19\\x2c\\xa8\\xe9\\xd7\\xa6\\xc0\\x4c\\xcf\\x1d\\x62\\x2a\\xde\\x49\\x5c\\x2a\\x0c\\x57\\xe9\\xe8\\x49\\x2a\\xec\\xdc\\xc9\\xb7\\x9a\\x26\\x0e\\xad\\x5f\\x7e\\x2d\\x89\\xc6\\xe6\\xc1\\x3f\\x19\\xf4\\xf6\\xbf\\x8c\\x4a\\xe8\\x91\\xce\\x02\\x09\\x46\\x3a\\x8b\\xf0\\x6a\\xa6\\x10\\x00\\x0a\\x71\\x04\\x12\\x23\\x1b\\xf2\\x0d\\x1b\\x55\\x0f\\x59\\xb4\\x4e\\x70\\xc3\\x97\\xb9\\xc8\\x0d\\x75\\x1a\\x16\\x76\\x8f\\xd7\\xeb\\x73\\x20\\x75\\xb1\\xf1\\x39\\x56\\x1b\\x42\\x22\\x2a\\xce\\xce\\xe5\\x49\\x68\\xa2\\x4a\\x2d\\xfc\\xe0\\x0a\\x40\\x8d\\x25\\xfa\\x51\\x50\\x94\\x1c\\x99\\x40\\x1d\\xb7\\xb3\\xeb\\x9b\\xe5\\xe5\\xec\\x72\\x7f\\x6e\\x1d\\x6b\\x57\\x8f\\xd6\\xd0\\x9d\\x60\\x64\\xd8\\x04\\x0b\\x71\\xa4\\x7f\\x07\\xd6\\x2b\\xd3\\xb5\\x2f\\x44\\x1d\\x99\\x20\\x92\\x1c\\xb4\\xdb\\x4f\\xe6\\xf8\\xd4\\xd6\\xb8\\x54\\x4d\\x4a\\x73\\x8c\\xa2\\x88\\x60\\xea\\xf5\\xdd\\xcf\\x72\\x95\\xc2\\xb5\\x9e\\x54\\x9f\\xd7\\xc8\\x0d\\xe6\\x7f\\x64\\xc0\\x18\\x5e\\x4b\\x2d\\x77\\xd2\\x03\\x02\\xed\\x51\\x74\\x71\\x00\\x01\\x0b\\x3a\\xef\\x13\\xa5\\x70\\xfa\\x10\\xe2\\xdf\\xc3\\x00\\x06\\xee\\x06\\xfd\\x02\\xe0\\xc2\\xfe\\xbd\\xc3\\x82\\x72\\x1c\\x77\\xea\\x2b\\xed\\x15\\x43\\x1d\\x48\\x48\\x7b\\xbe\\x27\\xcf\\x29\\x1f\\xcc\\x12\\x67\\x1a\\xbb\\xc9\\xcf\\x44\\x50\\x68\\x6a\\x6e\\x0d\\xe1\\x39\\x73\\x3e\\x01\\xf3\\x4f\\x11\\xbf\\xed\\x0d\\xb7\\xa7\\x3d\\x0c\\x92\\x60\\x60\\x71\\x5b\\x8d\\xce\\x21\\x0e\\x5a\\x65\\x22\\xda\\xe2\\x58\\x55\\xa6\\xe9\\x6d\\x38\\xff\\x48\\xd3\\xaf\\x95\\x77\\xcf\\x1e\\x47\\xcf\\x63\\x94\\xe6\\xdb\\x89\\xec\\x23\\x3d\\xf0\\x9e\\x6a\\xcc\\xe3\\xca\\xfa\\x05\\x75\\xc3\\x0f\\x6b\\x99\\x63\\x61\\x36\\x89\\x52\\x67\\x11\\x0b\\x75\\xf0\\x2a\\xa7\\xcb\\x6c\\x00\\x75\\xe6\\xcc\\x5c\\x4b\\x5e\\x0e\\xe3\\x22\\xe0\\xe6\\xcd\\xee\\x2d\\x1c\\xf7\\x86\\xa3\\x43\\xb4\\x68\\x15\\x28\\x3d\\xec\\x8b\\x78\\xa7\\x9a\\x5f\\x44\\x90\\x38\\x05\\xdf\\xfa\\x2b\\x1d\\xd6\\xd8\\x54\\xbd\\xba\\x97\\xd3\\x7d\\x9c\\xb3\\xba\\xfb\\xda\\x86\\x77\\x3e\\xf1\\x5f\\x63\\x08\\xfc\\x25\\xf8\\xfb\\x50\\x1a\\x80\\x47\\x85\\xc1\\xfb\\x10\\xab\\x3f\\x11\\xff\\x5e\\xe2\\x7a\\xe3\\x5c\\x90\\x0d\\x53\\xc4\\x2c\\x0c\\x31\\xdf\\x62\\x91\\xa9\\x2b\\x3f\\x84\\x02\\xc1\\x82\\xb9\\xd0\\x9b\\x47\\x54\\xad\\x20\\x90\\xba\\x60\\xf6\\x2f\\x7e\\xf3\\x11\\xb9\\x16\\xce\\x89\\x18\\x89\\xfc\\x8e\\x8f\\x66\\x34\\x88\\xfb\\x6c\\x49\\x31\\x44\\xbd\\xc4\\xd8\\x9e\\xd8\\x5c\\xc8\\x72\\xf9\\xf1\\x15\\x19\\x2e\\x42\\xbc\\x40\\xd1\\x85\\x7d\\xfe\\x6b\\xc4\\xaf\\x5d\\xd5\\xd7\\xa8\\x11\\xc1\\x56\\xa2\\x46\\x97\\xdb\\x57\\xac\\xde\\xf8\\x47\\xa5\\xbb\\x8c\\xa9\\xdc\\xa7\\xe7\\xa7\\x4b\\x01\\xf2\\xec\\xbc\\x1d\\xa2\\x5f\\x33\\xae\\x64\\x67\\x40\\x82\\x84\\x69\\x57\\x65\\x43\\xef\\x52\\xd8\\x30\\x04\\xfc\\x2d\\x82\\xe2\\xb8\\x4b\\xda\\x0b\\x71\\x6a\\x16\\xa7\\x98\\xb2\\xdd\\x1f\\x4e\\x8c\\x83\\xc7\\x75\\xf0\\xa0\\xaa\\xa3\\x86\\xf6\\x67\\xa4\\xc2\\x91\\x49\\x5f\\x52\\x65\\x2d\\x68\\x53\\x8c\\xd5\\xb5\\xb4\\x70\\xa8\\x1e\\xf8\\xc8\\xf7\\x4a\\x18\\xa9\\x79\\xcf\\xbc\\x8f\\x45\\x62\\x27\\x90\\x4a\\x89\\x0d\\x96\\x32\\x75\\xd3\\x61\\x0b\\x56\\x3b\\x10\\xd6\\x1f\\x63\\xa6\\x4a\\x08\\xbd\\xc8\\xa0\\x89\\x73\\xa9\\x07\\xd2\\x46\\x6c\\x55\\xbb\\x92\\x7f\\x15\\xb9\\x8c\\x56\\x71\\x38\\xab\\xec\\x96\\xd0\\x61\\xdb\\x9f\\xa5\\x4a\\x82\\x86\\xe6\\x82\\xa4\\xdb\\x9f\\xa0\\x33\\xc7\\x0b\\xef\\x33\\x7b\\xfb\\x76\\x9b\\x5c\\x59\\x2f\\x9d\\x3c\\x7d\\xac\\xa1\\x5b\\x6a\\xa3\\x44\\x33\\xfd\\x63\\x9b\\x2c\\x7d\\x88\\x6f\\xfc\\x38\\x3e\\x5d\\x00\\x9e\\x64\\x4d\\x4b\\xad\\x11\\xb2\\xdd\\xcc\\xc1\\x7b\\x12\\x07\\x16\\xbc\\xeb\\x99\\xbb\\x62\\x32\\xb2\\xec\\x44\\xc7\\x33\\x60\\x5d\\x7a\\x88\\x37\\x7f\\x4d\\x0c\\x35\\xee\\x7e\\xa9\\x5e\\x98\\x49\\x12\\x0c\\xa1\\x56\\x6c\\xc7\\xa5\\xdb\\xd4\\xb2\\x75\\x22\\xd9\\xac\\x3c\\xbd\\xea\\x78\\x89\\x10\\xc8\\x65\\xf9\\x2f\\x3e\\x8d\\x21\\x5e\\x35\\x1d\\x56\\x04\\x2e\\xc3\\x33\\x78\\x4c\\xa0\\x96\\xdf\\xf8\\xe3\\x9f\\x2c\\x5d\\xec\\xf4\\xe3\\x36\\x7f\\x56\\x6b\\x7b\\x32\\xa7\\x17\\x5e\\xfc\\x74\\x96\\x0c\\x15\\xad\\x75\\x79\\x6f\\x89\\x04\\x43\\x6c\\x7f\\xfa\\xec\\xf0\\x92\\x78\\x70\\xe9\\xe0\\xbf\\x9f\\x04\\x9c\\xfd\\x1e\\x53\\xc5\\xfa\\xfa\\x26\\xe1\\x92\\xbd\\x07\\xf8\\x18\\x69\\x16\\x73\\x0e\\x36\\xda\\xf4\\x8f\\xc0\\x9b\\x92\\xdd\\xa7\\x90\\x6a\\x94\\x03\\x12\\x54\\xe2\\x16\\x1a\\x61\\xab\\x0c\\x09\\x5d\\x86\\x05\\xac\\x7d\\xcc\\xb5\\x53\\x36\\x78\\xaa\\x72\\x70\\x93\\x75\\x95\\xbc\\x5a\\x04\\x13\\x09\\x93\\xc9\\x85\\xc5\\x9d\\x28\\xf3\\x2f\\xfc\\x21\\x82\\x22\\x8d\\x96\\x9d\\x7d\\x66\\x0d\\x3a\\xc0\\x7c\\xba\\xe6\\xc9\\xdd\\x83\\xd4\\xa1\\x3c\\xfa\\x8e\\x64\\x0d\\x82\\x6c\\x95\\xc5\\xe7\\xc3\\x4d\\x1e\\x55\\xac\\x4a\\xce\\x03\\x27\\x38\\xf5\\x07\\xbc\\x6e\\x15\\xaf\\x88\\x4e\\x86\\x74\\x3e\\x3b\\x41\\x31\\x44\\x02\\x84\\xa9\\xc3\\xde\\xb2\\x8f\\x90\\x74\\x1f\\x79\\x13\\xf8\\x9e\\x8d\\x75\\x07\\x03\\x45\\xdf\\x7a\\xe1\\x7a\\x4a\\x84\\xa9\\x27\\xfe\\x14\\x2d\\xfb\\xc2\\x42\\xc3\\x1a\\xff\\xab\\xf5\\xc7\\x55\\x6e\\xe1\\xd7\\x5e\\x0b\\x33\\x8a\\x99\\x16\\x6e\\xf4\\xd3\\x4b\\xb2\\xa3\\x62\\xbb\\x83\\x29\\x4d\\xce\\x64\\x85\\xe3\\xec\\x24\\x24\\x3e\\xc2\\xf2\\x6e\\xe9\\x62\\x3c\\xe1\\x37\\x71\\x8e\\xc3\\x78\\xbc\\x92\\x1c\\x87\\x12\\x5f\\xad\\x6e\\xb2\\x9d\\xa5\\xb6\\xbd\\x06\\x39\\xfa\\x99\\x80\\x23\\x53\\x64\\xf4\\x37\\x0c\\xb5\\xc6\\x91\\x66\\xd6\\xec\\xec\\x12\\x7d\\x6d\\x48\\xe7\\x5c\\x4d\\x83\\x4e\\x57\\xc1\\x6e\\xe6\\x9a\\x0a\\x34\\x54\\x8d\\x8f\\x16\\x6b\\x8c\\xbf\\xc2\\x3d\\x79\\x64\\x65\\x8e\\xba\\xb8\\xc9\\x5e\\x58\\x40\\x5c\\x4a\\xd5\\x52\\x5c\\x50\\x29\\xcc\\xe3\\xb0\\x49\\xdf\\x1f\\x17\\xaf\\x85\\x50\\xe1\\xbc\\x95\\xae\\xc2\\x61\\x75\\x83\\x67\\x0f\\xc4\\x2a\\x6f\\x83\\x0f\\x88\\xd6\\xb6\\x92\\xe6\\x4c\\x74\\x27\\xa5\\x8c\\x7e\\x5e\\xfb\\xbe\\xde\\x6a\\xd1\\x48\\x7f\\xbd\\x5d\\x65\\xbb\\x9a\\x64\\x04\\x0a\\xd0\\x4d\\x12\\x0d\\x78\\x5a\\x7e\\x8d\\xa3\\xf5\\x9b\\xa9\\x28\\x50\\xf7\\x1e\\x09\\xca\\x1e\\xfd\\x69\\x59\\xd6\\x79\\xef\\xed\\x10\\xfd\\xd8\\x92\\xfe\\x1c\\x93\\x8e\\x15\\xd4\\x5f\\x57\\x15\\xb9\\x1d\\xee\\x75\\x5a\\x7d\\x4a\\x44\\x17\\x95\\xfa\\x85\\xc7\\x3c\\x4f\\xe2\\x5d\\x88\\x7e\\xac\\x89\\xeb\\xd8\\x38\\xc6\\xed\\x63\\x6c\\x55\\xdf\\xee\\x7e\\xd2\\xfc\\xe7\\x5e\\x92\\xa5\\xc6\\x78\\xe8\\x2b\\xa7\\x0f\\x54\\x97\\x21\\xad\\x06\\x3e\\x69\\x33\\x16\\xb6\\xcc\\xde\\xe4\\x2a\\x1f\\x8b\\xe4\\x14\\x35\\x81\\x74\\x9c\\x0c\\xd8\\x5f\\x63\\xfa\\xc3\\xdf\\x31\\xab\\x39\\x94\\xfd\\xd7\\xe8\\x5d\\x4c\\x6a\\x54\\xf9\\x87\\xe9\\x8a\\xc3\\x99\\x65\\xbc\\x27\\x1a\\xd7\\x0a\\xe8\\x87\\x4c\\xe3\\x8c\\xa4\\x29\\x82\\xf9\\xcd\\x0e\\xf4\\x43\\x68\\x02\\x4c\\xd9\\xfe\\xa0\\xca\\xd5\\x3a\\x0f\\xe6\\x75\\x34\\xbf\\xc8\\xdd\\x0b\\xad\\x49\\xa2\\x10\\x69\\x9f\\x4c\\x0c\\x15\\xb2\\xa9\\xa7\\xfe\\xb4\\x0a\\xfc\\x2e\\xfd\\xc0\\xe6\\x5a\\xe4\\x0c\\xa5\\xb8\\x7a\\x03\\xb6\\xa7\\x82\\xfb\\x97\\xca\\x31\\xc4\\xfc\\x85\\xd3\\xda\\x2e\\xb6\\x0e\\xdc\\x7e\\x18\\x6c\\x03\\xa9\\xb6\\xa2\\xbf\\x18\\x75\\x49\\x8b\\xed\\x7c\\x26\\x1f\\xc8\\x58\\xb4\\x49\\x5a\\xdf\\x65\\x3a\\x47\\x4b\\x65\\xe5\\x65\\xb9\\x2d\\xf9\\x43\\xbd\\x82\\x26\\xd6\\xb2\\xfb\\x15\\xa4\\x64\\xfc\\x0e\\xe2\\xa0\\x3f\\x1d\\x33\\x67\\x1a\\x28\\xe6\\xd9\\x2f\\xaf\\x59\\x6c\\x63\\x41\\x75\\x7c\\x10\\xe4\\x5e\\xa2\\xb4\\x81\\xad\\x8a\\xfe\\xa5\\x27\\x83\\x3b\\x93\\x99\\x6a\\x8f\\x7a\\x91\\xba\\x35\\x53\\x7e\\x3f\\x86\\x67\\xd1\\x56\\x46\\x71\\x60\\x64\\x04\\x27\\x40\\xea\\xf9\\x3a\\x24\\xe8\\x35\\xc6\\x01\\xf1\\x0e\\x18\\x4c\\x42\\xd5\\xaa\\xb2\\xd4\\x8f\\xf8\\x14\\x1d\\xa1\\x95\\xdf\\x0a\\x27\\x03\\x0a\\xfd\\x9b\\xfa\\x4a\\x6b\\x41\\x12\\xc1\\xa7\\xc2\\x8e\\xf9\\x37\\xf4\\x8a\\xe6\\xe7\\xeb\\x18\\xfe\\x9e\\xf2\\x2f\\x9b\\x65\\x9c\\x85\\x4d\\xe1\\xd0\\xed\\x8b\\x2e\\x1c\\x08\\xbe\\x59\\x6a\\x04\\xe1\\xb0\\x59\\x43\\xf2\\x79\\x73\\xd5\\x0e\\x79\\xd1\\x07\\x13\\x0f\\x4a\\x3b\\x55\\x0f\\x87\\xe8\\x12\\xe2\\xfd\\x8b\\x3e\\x1d\\x2a\\x0a\\x4a\\x12\\x93\\x97\\xad\\x42\\x21\\x69\\x2a\\x7f\\x53\\xcd\\x01\\xf3\\x44\\x7a\\xd4\\xea\\x80\\xe4\\x9a\\x31\\x97\\xe9\\x8f\\x13\\x8d\\xc5\\x82\\x6a\\x92\\x0e\\x46\\xa9\\x7d\\x3d\\x0b\\x5a\\x98\\x17\\x4f\\x4e\\x4d\\xdc\\xfc\\x9b\\x01\\x2f\\x00\\xd4\\x5f\\xb5\\xe2\\x71\\x5c\\xde\\x66\\x03\\xe5\\x3f\\x64\\x37\\xc9\\xd5\\x32\\x12\\xe5\\xa8\\xf1\\x14\\xa6\\x30\\x4f\\xc2\\xdc\\xc2\\xe3\\xe8\\x75\\x03\\x17\\x40\\x11\\x3d\\x81\\x0b\\xfc\\x41\\x5a\\xa2\\x45\\xd5\\x5e\\xa6\\x3f\\x3f\\xff\\x3e\\xe9\\x59\\x09\\x39\\xb1\\xa6\\xca\\x2b\\x7f\\xf1\\x61\\xf5\\xe9\\xb0\\xdb\\xd6\\xe0\\x66\\x8e\\x23\\x31\\xa8\\x03\\xc7\\x40\\x1c\\xd2\\x93\\xb6\\x8c\\xd5\\x48\\x1f\\x28\\xab\\x1c\\x58\\x28\\x09\\x5e\\x4c\\xea\\xae\\x2e\\x53\\xe9\\xe3\\x98\\x08\\x3e\\x49\\xeb\\x9a\\x66\\xb4\\xa0\\xf5\\x3f\\x76\\xd6\\x3f\\xfc\\x75\\x08\\x19\\x23\\x2d\\xa1\\xcc\\x6e\\x98\\x8b\\x4c\\x51\\xb3\\x7b\\x70\\x1f\\x50\\x25\\xde\\x5a\\xf6\\x90\\xed\\x2c\\xfc\\x68\\x6d\\x1d\\x2b\\xd9\\x50\\x34\\xdf\\xca\\x2c\\x60\\x85\\x78\\x96\\x27\\xab\\x9d\\x71\\xcc\\xf6\\x4a\\xda\\x5b\\xd4\\x1d\\x3e\\x1d\\xee\\x7a\\xae\\xf5\\x0c\\xe0\\xa9\\x9c\\x5d\\x30\\x4b\\x09\\x53\\x2e\\xc8\\x3f\\x35\\x96\\xbf\\x04\\x45\\xb9\\x38\\x86\\xba\\x3c\\x27\\x79\\x5d\\xda\\xab\\x6e\\x3c\\x81\\xc5\\xb4\\xf2\\x6d\\x14\\xb5\\x50\\x53\\xa9\\xac\\x31\\x94\\xf5\\x50\\xee\\x7e\\x2e\\xe7\\x56\\xf6\\xd9\\xd8\\x75\\x36\\xd9\\x60\\x07\\x78\\xb7\\xed\\x4f\\xcc\\xcc\\x4e\\x12\\x8c\\xb0\\x4a\\x19\\x83\\x74\\x9f\\x73\\x41\\x5b\\xfe\\x82\\x08\\x95\\xfc\\x56\\x61\\x17\\x4f\\x8c\\x49\\x06\\xea\\x23\\x0c\\xfd\\x1a\\x0f\\xdd\\x7b\\x7b\\xa9\\x0c\\x22\\x9b\\x2f\\x8e\\xea\\x07\\xe4\\xf6\\xab\\x0c\\xf9\\x6f\\x47\\x8b\\xcd\\x6e\\xff\\xf5\\xdb\\xb0\\xe3\\x76\\xd9\\xac\\xc6\\xe2\\x64\\xa5\\xd8\\x14\\xa2\\x97\\x73\\xbd\\x72\\xfe\\xb8\\xb2\\xcc\\x89\\x99\\xcc\\x3c\\x16\\x99\\x25\\x5d\\xb5\\xaa\\x1d\\xeb\\xf5\\x79\\x2c\\x9b\\xba\\xf6\\x8b\\xce\\x0f\\xd4\\xd9\\xfd\\xcd\\xcb\\x46\\x08\\x89\\xe0\\x12\\x65\\x35\\xe5\\x74\\xb0\\xd4\\x2e\\x1e\\x64\\x38\\x35\\x47\\xc4\\x16\\x4a\\xc1\\xd5\\xbf\\x17\\xa8\\xd1\\x43\\xa9\\xbe\\x9c\\x75\\x67\\x91\\x6e\\xa2\\xc4\\x44\\x23\\x75\\x6a\\x07\\xbe\\x08\\x60\\x9e\\x1d\\x0e\\xcc\\xee\\x2b\\x7e\\x9d\\xa0\\x44\\x2b\\xbe\\x59\\x81\\x02\\xa7\\x0a\\x73\\x6b\\xcc\\xfc\\xf8\\x27\\xa7\\x52\\x03\\x1a\\x8f\\x29\\x98\\x1d\\xfe\\x11\\xcf\\xaf\\x37\\x9e\\xf9\\xbd\\x58\\x27\\x22\\xfc\\x31\\xeb\\x52\\xae\\xef\\x9b\\x51\\xff\\xc3\\xcc\\x30\\xac\\xc8\\xd7\\xff\\x46\\xa7\\x35\\x60\\x20\\x99\\xe9\\xfb\\xb7\\xb7\\xad\\x36\\xa6\\x96\\x82\\x05\\x54\\xcf\\xdf\\x27\\x27\\x6e\\xc3\\xd1\\x5d\\x58\\xb9\\xc9\\x68\\x12\\xf3\\x2c\\xec\\x32\\xb2\\xef\\x73\\x1f\\x6a\\x98\\xe3\\x27\\xb7\\xf9\\x21\\xec\\x94\\x01\\x45\\xc2\\x71\\xa9\\xf5\\x49\\x34\\x5e\\xee\\xc3\\x0f\\xe0\\x35\\x35\\xe3\\x23\\xb1\\x0b\\xd3\\xe0\\x78\\x41\\x0f\\x19\\xed\\xca\\x05\\xd8\\x7f\\xe6\\x81\\xd4\\xf7\\x0a\\x24\\x58\\x4f\\x88\\x71\\x50\\x8c\\x29\\x15\\xc8\\x25\\xe4\\xa4\\xf6\\x6f\\x24\\x45\\x52\\x25\\x7a\\xc7\\x15\\x4f\\x70\\x93\\xa2\\x0b\\xa1\\xf1\\x11\\x36\\x03\\x1f\\xdd\\x0f\\xb7\\x72\\x2d\\x77\\xa5\\x27\\xee\\x8f\\x1e\\xad\\x4a\\x61\\xa6\\x86\\x09\\xcc\\xb9\\x90\\xec\\x64\\x47\\x57\\x69\\xd6\\x74\\xd0\\xbf\\x34\\x31\\x42\\xbc\\xcd\\x4e\\xb0\\x50\\x72\\xfa\\xb5\\xcb\\x60\\x19\\xa7\\xd6\\xc9\\x0c\\x29\\xcf\\x3e\\x0d\\xa3\\xd3\\x5d\\xdd\\x40\\xd2\\xfa\\x0e\\x98\\x94\\x28\\x77\\x56\\x3d\\x2f\\x67\\xe1\\xd0\\x0a\\x83\\x5d\\x5f\\xeb\\xd9\\x6d\\xac\\x8b\\x15\\x87\\x2a\\xc8\\xbd\\xe7\\xfb\\x11\\xb1\\xe0\\xa2\\xd5\\xc2\\xb7\\x19\\xf1\\xe7\\x14\\x9e\\x83\\xcf\\xf7\\x9c\\x2e\\x37\\xca\\x86\\x79\\xb6\\xca\\xcb\\xd0\\x10\\x54\\x1c\\xeb\\xa8\\x12\\xdf\\xe3\\x83\\x69\\xe7\\x59\\x9b\\xe5\\x6d\\x26\\xee\\xec\\xcb\\xdb\\x85\\x3b\\xa9\\xd2\\xa8\\x43\\x97\\x82\\x8a\\xc8\\xe1\\x7d\\xcd\\xbc\\x3c\\xa3\\x96\\x62\\x2a\\x75\\x91\\x34\\x4b\\x56\\x9c\\x31\\xf6\\x4c\\xdf\\x35\\x54\\xba\\xc9\\x14\\x57\\x51\\x22\\x26\\x13\\xd6\\xc4\\x0e\\x4b\\xef\\x40\\x0d\\x2a\\x4c\\x79\\x4c\\x4d\\x1b\\x13\\x68\\xf4\\xa9\\x55\\x4a\\x11\\xc3\\x1c\\x43\\xa9\\xe8\\x02\\x99\\x79\\x67\\x20\\xe1\\x26\\x4c\\x70\\xa8\\x59\\xee\\x62\\xda\\xe2\\x8e\\xda\\x8c\\xd6\\xf6\\xd4\\x0e\\xc1\\xb5\\x06\\x57\\x95\\x7b\\xc9\\x55\\x87\\xfe\\x68\\x4d\\x18\\x8a\\x11\\x1b\\x87\\xd6\\xd0\\xcb\\x85\\xdc\\xfe\\x65\\x5a\\x92\\xcf\\xa9\\xf7\\xed\\xa8\\xca\\xf4\\x76\\xee\\x51\\x05\\x6f\\x3b\\x90\\x08\\xcd\\xd6\\x5a\\x25\\xb3\\xe4\\xe4\\xb0\\x5b\\x51\\x53\\xa8\\x4a\\xe2\\xdc\\x4f\\xee\\xd6\\xde\\xd1\\xf2\\xef\\x6e\\x3d\\xa8\\xae\\x49\\xa7\\x3a\\x67\\x2e\\x13\\x17\\xc8\\x0e\\x27\\x15\\xc9\\x45\\xd9\\xb7\\xe9\\x5c\\x59\\x5d\\x59\\x4e\\x77\\x44\\x8b\\xa3\\xda\\x65\\x04\\x09\\xf4\\xce\\x5e\\x3f\\xae\\x18\\x62\\xff\\xf8\\x8d\\xa9\\x3c\\x9f\\x01\\xec\\xb7\\x31\\x3d\\x4f\\x7e\\x6d\\x05\\x32\\x31\\x9e\\xa2\\x8e\\x0a\\xce\\x97\\xd0\\x9e\\xf9\\x5d\\x4e\\xcc\\x6a\\x13\\x1c\\x51\\x10\\xdb\\x4d\\xbb\\x16\\xca\\x63\\x83\\x96\\x58\\x40\\x91\\x63\\x69\\x23\\x5a\\x0d\\x60\\x22\\x3a\\xd6\\xdb\\xc7\\xee\\x2e\\xb7\\x8a\\xeb\\xc5\\xd6\\x30\\x6f\\xc1\\x5d\\xfa\\x39\\x65\\x74\\xc3\\x4c\\xc1\\xed\\x3b\\xda\\x55\\xf4\\xea\\xa7\\xd9\\x7c\\x63\\x6b\\x2d\\xaf\\x01\\xf8\\x76\\xeb\\x77\\x7b\\x9a\\xbf\\x2d\\x0e\\xb6\\x75\\xdd\\xfc\\xdd\\x2a\\xe9\\x6c\\x3e\\x79\\x25\\xff\\xd7\\x0b\\x8b\\x56\\xbc\\xb9\\xc9\\xd5\\x4d\\x3e\\xef\\x02\\xd6\\xdb\\xff\\x68\\x29\\x7e\\x38\\xa7\\xde\\xdd\\x85\\x10\\xb4\\x1a\\x43\\x00\\xd2\\xcb\\x9b\\x86\\x1d\\x5c\\xd1\\x14\\x6f\\x8f\\xb0\\x06\\x8e\\x2d\\x85\\xf3\\xb5\\x2c\\x2a\\x09\\x8f\\x96\\x0b\\x2a\\xf6\\x95\\x26\\x18\\xb9\\x26\\xa3\\x20\\x99\\x53\\xe4\\xb1\\x69\\x18\\x43\\xc7\\x13\\xff\\x0f\\x00\\x00\\x40\\xff\\xbf\\x0d\\x37\\xb3\\x20\\x56\\x73\\x12\\xbd\\x18\\x0b\\xf7\\xa0\\x17\\x3f\\x32\\x98\\x06\\x75\\xe3\\x1e\\xb5\\xf1\\x12\\x00\\x16\\x08\\x6b\\x51\\xf9\\xa0\\xcb\\x09\\x86\\xb1\\xf3\\xbe\\x03\\x8c\\x05\\xe5\\x6a\\x98\\x56\\x74\\x23\\x2c\\xbc\\x95\\xf8\\xd1\\x6c\\x78\\x03\\x36\\xc5\\x0e\\x8d\\x2b\\x69\\xf7\\x39\\xe6\\x36\\x41\\xa7\\xc4\\x64\\x99\\xe7\\xfc\\x92\\xcb\\x2e\\xdb\\x20\\x56\\x41\\xda\\x1d\\x41\\x84\\x65\\x1a\\x87\\x92\\x26\\x41\\x4e\\xaa\\x8d\\x74\\x03\\xa3\\x9b\\x06\\xa2\\x6d\\x58\\xcb\\xe6\\x5a\\x03\\x70\\x94\\x84\\xb0\\xad\\x46\\xf6\\xd3\\x29\\x7c\\xa8\\xc6\\x10\\x8e\\x6f\\xd2\\x32\\xc3\\xf9\\x5a\\xa2\\x9f\\xf8\\x1f\\xc9\\x32\\xc1\\x04\\xcf\\x03\\x21\\xd2\\x40\\xe6\\x65\\xc2\\xe5\\x89\\xdc\\xde\\xd4\\xcd\\x85\\xb2\\x50\\x59\\x5f\\x95\\x82\\xe6\\x1d\\x0c\\x26\\x63\\x85\\x93\\x64\\x13\\x20\\xc7\\x69\\x1f\\xa1\\xa7\\x22\\xd0\\x17\\x77\\x7a\\x27\\xb8\\xd6\\x26\\x69\\x40\\xe2\\xd1\\xa2\\xd7\\x50\\x8e\\x6a\\xa7\\xc7\\x21\\x51\\xfc\\x4a\\xd0\\x04\\xc8\\xd2\\x3c\\xc9\\x04\\x01\\x1e\\x44\\x1e\\x4c\\x57\\x8e\\xfd\\xb6\\x4b\\x42\\x8a\\x6d\\x5b\\x01\\x1d\\x00\\x47\\x2b\\xf1\\x24\\x0f\\x7e\\x94\\x96\\xe4\\x66\\x90\\x79\\x4b\\x13\\x70\\x51\\x94\\x32\\x6c\\xc8\\x18\\xbc\\xb6\\x89\\xbf\\x18\\x8d\\x7a\\x37\\x39\\x11\\xdf\\x7a\\x92\\x73\\x3d\\x2f\\x38\\xd9\\xe2\\xf0\\x64\\x32\\x43\\xd1\\x03\\xe0\\xdb\\xe4\\x73\\xb9\\xbc\\xbf\\xb0\\x1e\\x5f\\xbc\\xf2\\x3b\\x7e\\x84\\xb1\\xb4\\xa1\\x25\\xfa\\x14\\x63\\x95\\x10\\xc7\\x03\\x26\\xbc\\x06\\x40\\x6d\\x44\\x9b\\xac\\xe5\\xa9\\x77\\x11\\xa8\\xa6\\x99\\x5d\\x9a\\x00\\x04\\xe4\\x4f\\x67\\x38\\x58\\xb6\\xf1\\xe4\\x35\\xb6\\x1e\\x11\\x09\\x63\\x0e\\xcc\\xcd\\x3e\\x61\\x86\\x75\\x0a\\x0b\\x9a\\xb3\\x8b\\xac\\xbe\\x0c\\x66\\x30\\xe5\\x0c\\x69\\xae\\xd0\\x0b\\x89\\xfd\\x6e\\xe1\\xb8\\xdd\\x5d\\x51\\x33\\x6e\\x23\\x84\\x99\\xee\\x55\\x31\\xd8\\x27\\xfb\\xe7\\xc9\\x83\\x10\\x0e\\x14\\x9a\\x58\\x75\\x6e\\xb7\\xd0\\x58\\xa0\\x6c\\x87\\x35\\x27\\x74\\x32\\xc8\\x91\\xf2\\xd8\\x2e\\xf8\\x30\\x31\\xb1\\xa9\\x5a\\x9a\\x95\\x77\\xc0\\x58\\xc1\\xa7\\x53\\x65\\x68\\x8c\\x86\\x9e\\xa5\\x64\\x88\\xe9\\xad\\x08\\xd4\\x71\\xd2\\xce\\xc5\\xa7\\x6d\\x89\\x40\\x67\\x5a\\xc1\\xd6\\x8c\\x9b\\x7d\\xb8\\x11\\x4b\\xb8\\x8f\\x6d\\x2b\\xda\\x13\\x3b\\x04\\x7c\\x56\\x6f\\xcf\\x78\\xeb\\xcc\\x3b\\x84\\xce\\xcb\\x0f\\xbe\\x1e\\x95\\x31\\xc6\\x91\\xaa\\x8a\\xf3\\x91\\x20\\xcf\\x69\\x96\\x69\\x93\\xe0\\xed\\xd5\\xe4\\x46\\xe9\\x52\\x3e\\xb6\\x48\\x5c\\x09\\x64\\x64\\xb0\\x04\\x84\\x94\\x96\\x34\\xa0\\x73\\x99\\xde\\x43\\x86\\x25\\xa0\\x58\\x42\\x3e\\xf7\\xd8\\x08\\x9c\\x79\\xf4\\x04\\x78\\x2a\\x56\\x12\\xda\\xc3\\x74\\x20\\xca\\x74\\x54\\x28\\x12\\xbb\\xe4\\xb8\\x50\\x49\\x56\\xdd\\x55\\x4f\\x64\\x61\\x91\\xab\\x90\\xd6\\x00\\xed\\x8d\\x4d\\xa4\\xa3\\x8c\\x51\\xaa\\x46\\xf1\\xdf\\xda\\x5d\\x9a\\xea\\x45\\x68\\xfa\\x2d\\x91\\xeb\\x54\\xf0\\x13\\x5e\\x6e\\xd7\\x4f\\xaf\\xb0\\x24\\x8f\\x1d\\xad\\x86\\xdd\\x88\\x67\\xe0\\x61\\xe4\\x88\\x4f\\x2c\\xe7\\xff\\xcb\\x3f\\x63\\xd1\\x54\\xcb\\x1a\\xe0\\xd1\\xf6\\x51\\x53\\xa4\\xc5\\x6b\\x87\\x4e\\x40\\xe4\\xc5\\x1d\\xfc\\xa6\\x55\\x3c\\x80\\xaf\\x0a\\xd7\\x87\\xc6\\xca\\x74\\xf9\\x65\\x09\\xd1\\xaf\\x33\\x3c\\x5a\\xfa\\x6f\\xa9\\xf2\\xc0\\x32\\xe9\\x08\\x9d\\x97\\x97\\x7f\\x34\\xc3\\x98\\x10\\x3f\\xa1\\x6b\\x36\\x53\\xc8\\x1f\\x9c\\x8e\\xb5\\x1a\\x88\\x87\\x87\\x32\\xf6\\x22\\x81\\x29\\x04\\xce\\x81\\x64\\xd3\\x43\\x8a\\x5c\\x67\\x02\\x54\\xd7\\x34\\xb3\\xfe\\xf5\\xdc\\xfc\\xdc\\x21\\x9e\\x52\\xe6\\x5c\\x34\\x12\\x18\\x52\\x00\\x85\\xfe\\x90\\xfe\\x1b\\x91\\xa6\\xc4\\x17\\xfe\\x4c\\xe3\\x38\\x4b\\x24\\x84\\xc8\\x27\\x7a\\xc4\\xa8\\xee\\x26\\x12\\xaf\\x82\\x32\\x99\\x81\\xb4\\x09\\x69\\x12\\x35\\xb0\\xd9\\xac\\x76\\xa7\\xd1\\xa7\\xae\\x1c\\x52\\xd4\\x15\\x66\\x4b\\xca\\x69\\x8b\\x60\\x75\\x55\\xd6\\x34\\x6d\\xca\\x92\\x0b\\x76\\x4a\\xef\\x79\\xe1\\xc4\\x36\\x6c\\x56\\x86\\xff\\xa3\\xe7\\xec\\x82\\x14\\x47\\xb2\\xc2\\x4c\\xdd\\x11\\x94\\xa9\\x21\\xfc\\xa6\\xb8\\xc0\\x84\\x36\\x55\\x2c\\x5f\\x14\\x89\\x0c\\xbd\\x7c\\xe9\\x89\\xde\\x73\\x54\\xd3\\x5b\\x87\\x14\\x38\\x3d\\xf7\\xba\\x48\\x70\\x45\\x7e\\xfb\\x7c\\xa4\\x7b\\x93\\x60\\x1e\\xc8\\x7d\\x7f\\x14\\xe2\\xf1\\xc4\\xa4\\xb5\\xc4\\x35\\xff\\xbf\\x30\\x0b\\xa6\\xfd\\x5d\\x27\\x6d\\xdb\\xf2\\x07\\x62\\x4c\\x10\\x18\\xf3\\xdf\\xb8\\x00\\x80\\x64\\xdd\\x2f\\x11\\x6a\\x02\\x4e\\x99\\xf3\\x89\\x11\\x4c\\xd4\\x06\\xc1\\xe2\\x14\\xb8\\x8b\\x03\\x3d\\x79\\xd1\\x84\\x84\\xb9\\x1b\\xd4\\x06\\xe6\\x68\\x97\\x88\\xf4\\x26\\x18\\x05\\xfc\\x42\\xdc\\xf6\\x1a\\x8f\\x09\\xf5\\xde\\xab\\x01\\x43\\x5a\\x87\\xc1\\x73\\x79\\x8d\\x08\\xcf\\x7d\\xeb\\x82\\x94\\x55\\x93\\xfd\\x83\\x69\\xc1\\xe4\\x3c\\x4f\\x93\\x8a\\xf9\\xeb\\x21\\x35\\xbc\\x35\\x1d\\x1b\\x3c\\xc7\\xb4\\x77\\x7b\\x21\\xb6\\x91\\xeb\\x16\\x58\\xd5\\xf7\\x5f\\xcd\\x7d\\xbb\\x11\\x39\\x06\\x7b\\x2d\\xd8\\x22\\x70\\x88\\x40\\x18\\x63\\xd9\\x67\\xce\\x4f\\x42\\x30\\xad\\xd6\\x9a\\x1a\\xac\\xb4\\x27\\x68\\xce\\x69\\xcc\\xd7\\x24\\x94\\x6e\\xd8\\xe0\\xcd\\x8a\\x99\\x06\\x8d\\xe0\\xfa\\x80\\xb6\\x7d\\x01\\xb7\\x56\\x63\\xb9\\x33\\x51\\x1c\\xe8\\x3b\\xfd\\xba\\x10\\xb5\\x23\\x64\\x3a\\x04\\x75\\x08\\x8d\\xe5\\xf2\\x72\\x73\\xff\\xdf\\x62\\x74\\x2c\\x25\\xe0\\x55\\xdf\\xf0\\x16\\x38\\xe7\\x47\\x66\\x3e\\xba\\x5d\\x55\\x25\\xb2\\x69\\x3c\\xef\\x7e\\xd0\\xc5\\x0c\\x54\\xbd\\x25\\x8d\\xac\\x38\\x52\\x16\\x98\\x49\\xa2\\xf9\\x65\\xfc\\xb7\\x76\\x20\\x91\\x90\\xcd\\x3b\\x9d\\xc0\\xa6\\x5c\\x32\\xf7\\xa1\\x76\\xa5\\x62\\x39\\x56\\x45\\xf5\\xd8\\x3e\\x15\\x40\\x20\\xa2\\xca\\xdb\\xbb\\x4b\\xbd\\xc9\\x48\\x34\\x7a\\x1c\\x66\\xdb\\x28\\x22\\x4c\\x62\\xc5\\x30\\x06\\xd9\\x7f\\xe5\\x64\\x2e\\x05\\xe7\\x44\\xb0\\x61\\x49\\xcb\\xc9\\xed\\x78\\xc4\\xe4\\xee\\x0c\\x89\\x58\\xf1\\x7d\\x00\\x55\\x84\\x80\\xa8\\x93\\x4c\\x58\\x05\\x14\\x53\\x56\\x20\\xac\\xaa\\x94\\xdc\\xd0\\x40\\x04\\x11\\x31\\x51\\x9a\\xea\\x05\\xf1\\xc4\\x93\\xc0\\xb7\\x54\\x8a\\x35\\x9f\\x34\\x27\\xdc\\xba\\xa5\\xdb\\xd4\\x5b\\x6b\\xf8\\xc9\\x80\\xef\\x85\\x90\\x61\\x2a\\x27\\x10\\x10\\xd8\\x08\\xfa\\xaa\\xe1\\xc1\\xf2\\x37\\x94\\x5c\\x92\\xe4\\xbc\\xa3\\x4c\\xdc\\x4f\\xf7\\x1c\\x68\\xa7\\x6f\\x81\\xd2\\x1a\\xd6\\x92\\xde\\x06\\x39\\x97\\x32\\x8b\\x0a\\xbe\\xbe\\x4c\\x14\\x46\\x45\\x2c\\x01\\xd5\\x22\\x58\\xff\\xe3\\x71\\x9d\\xe0\\x40\\x6b\\xea\\x12\\x98\\x1a\\x75\\x5f\\x0d\\x44\\xd8\\xa3\\xa4\\xc4\\x50\\xd6\\x10\\xc1\\x23\\xf9\\x71\\x7d\\x61\\xdc\\xcd\\x49\\x79\\xcc\\x59\\x10\\xf1\\x0a\\xa6\\xa2\\xaa\\xc5\\xe8\\x96\\x2b\\xe1\\x2f\\xcb\\x38\\x34\\x61\\x44\\x6e\\x46\\xc9\\xed\\x5a\\x05\\xd1\\xef\\xb2\\xb8\\x47\\x48\\xf4\\x9b\\x8d\\xab\\xaa\\xb2\\x6a\\x59\\xc9\\xf0\\x24\\x3d\\xad\\x60\\x41\\x8d\\x81\\xd5\\x91\\x5d\\xe8\\x86\\xd1\\x1e\\xb7\\xb4\\x4c\\x88\\x46\\x8d\\x05\\x42\\xe2\\xf8\\x22\\xe1\\x3b\\x99\\x1a\\xd2\\xea\\x0f\\xcd\\x31\\x20\\x0d\\x91\\x89\\xe8\\x0d\\x1d\\xd5\\x98\\x5c\\x3d\\xa0\\xfc\\xb6\\xe8\\x10\\xbb\\xd6\\xa6\\x0d\\xb0\\xb5\\xb1\\x78\\xec\\xbd\\xa3\\xb1\\x84\\xb5\\x07\\x89\\xdb\\xc9\\xbc\\x89\\xe5\\xe0\\x10\\xc8\\x1c\\x6a\\xd5\\x29\\x2b\\x63\\xd9\\x8d\\x2a\\x62\\x3a\\x19\\x8c\\x10\\xba\\x4a\\x5a\\xdd\\xbd\\x90\\x0d\\xc6\\x20\\x87\\xfb\\x14\\x20\\x57\\x27\\x62\\x22\\x9f\\x63\\x33\\xc8\\x9f\\xa0\\x68\\xde\\x1d\\x85\\xaf\\xe2\\x52\\x37\\x3d\\x9e\\xe5\\xa4\\x49\\x02\\x62\\x1e\\x49\\xc4\\xe5\\x82\\xf4\\x7c\\xfe\\xcc\\x44\\x1c\\x99\\xb2\\x00\\xb6\\xfd\\xb9\\x40\\x48\\x58\\x5d\\x08\\x1b\\x7c\\xf6\\x98\\x0d\\xe8\\xa8\\x0e\\xce\\x1c\\x08\\xfa\\x19\\x2f\\x8f\\x44\\x25\\x78\\x41\\x54\\x12\\x1e\\x8e\\xd3\\xfc\\x9b\\x31\\x96\\xa2\\xbf\\x3e\\x94\\x56\\x77\\x34\\x4a\\x8f\\xf6\\xcc\\xb4\\xac\\x7c\\x80\\x85\\x0d\\x46\\x79\\xb5\\xfe\\xad\\xd6\\x26\\x62\\x90\\x69\\x89\\x76\\x54\\xcf\\x31\\x66\\x35\\x63\\x9a\\xc0\\x9f\\x3a\\x61\\xf8\\x75\\x11\\x87\\x01\\xa7\\x0b\\x21\\x76\\xf6\\x56\\x62\\xd8\\x24\\x3c\\x91\\x71\\x45\\xeb\\xa2\\xdd\\x41\\x8a\\x3c\\xc1\\xba\\x61\\x70\\xc0\\x5c\\xc4\\xbd\\xfe\\x6a\\xb5\\x5f\\x7f\\x8e\\xce\\x15\\x90\\x82\\xab\\xb7\\x82\\xc6\\x08\\xec\\x37\\x62\\x6b\\xcb\\x2d\\xf8\\x0b\\x31\\xf5\\xba\\xb2\\x84\\x92\\xd5\\xc2\\xfa\\x1c\\x91\\x7e\\x8b\\x5f\\xcd\\x31\\xb9\\x04\\x62\\x0d\\x09\\xe5\\x29\\x41\\x11\\xb8\\x22\\x51\\x8b\\x6f\\x42\\xf2\\x79\\xe0\\xf3\\x24\\x48\\xa8\\xab\\x8f\\x64\\xdc\\x13\\x76\\xe8\\x7b\\x9b\\x0f\\x2b\\x72\\xe0\\x48\\x36\\xa6\\xb1\\xe6\\x4a\\x7e\\x6f\\xc8\\xb8\\xca\\x43\\x9b\\x56\\x2b\\x2b\\x73\\xc6\\xf3\\xb1\\x84\\x1c\\x17\\x45\\x16\\x1b\\x88\\x07\\x32\\x78\\x37\\x5c\\x07\\x19\\x91\\x40\\xd5\\xc3\\x7a\\x4b\\x1f\\x0a\\x02\\xe6\\xd5\\x28\\xa9\\xc5\\xc5\\x5f\\x4e\\x26\\xdf\\xb1\\xeb\\xb8\\x4e\\x45\\xb3\\x22\\x80\\x1d\\xf8\\x67\\x82\\x0d\\xc0\\x0d\\x95\\x25\\xbe\\x8b\\x7c\\xec\\x7e\\x80\\x16\\x46\\xb3\\x06\\xc0\\xfc\\x81\\xba\\x2c\\xed\\xa7\\x53\\xf9\\x72\\x45\\x11\\x62\\xc3\\x61\\x4e\\xd9\\xa2\\x56\\x79\\x1a\\x64\\x7f\\xee\\xec\\x25\\xeb\\x6f\\xac\\x44\\xd6\\xd4\\x36\\xab\\xca\\xf0\\xe9\\x5a\\xfd\\x89\\xb7\\x6a\\x8f\\xb7\\x97\\x01\\xae\\x3b\\x9e\\xda\\x3e\\x8a\\x9a\\x7a\\x4d\\xee\\x42\\x0f\\xe7\\x16\\xad\\xcd\\xd5\\x36\\xe2\\x49\\x0b\\x22\\x1a\\x22\\x0e\\x16\\xd6\\x22\\xac\\xa6\\x79\\x64\\x2d\\x94\\xf9\\x76\\x66\\xc7\\x29\\xab\\xbe\\xcd\\xc1\\x33\\x9a\\x75\\xc5\\xf3\\x0b\\x46\\x88\\x18\\xf7\\xb1\\x42\\xce\\x43\\xd4\\x1c\\x17\\xd2\\xf2\\x87\\x2a\\xdf\\xa1\\xcc\\x1c\\x37\\x02\\x27\\xcc\\x25\\x10\\xb6\\x55\\x1c\\x25\\xe2\\x3d\\xad\\x54\\x3a\\xe2\\xb3\\x45\\x14\\x50\\x2d\\x98\\xb1\\xb0\\x3e\\x00\\x2b\\xd5\\x49\\x61\\x1b\\x08\\x2d\\x20\\x9d\\xa8\\xec\\x2a\\x48\\x6b\\x91\\xa0\\x71\\x63\\xa3\\xe9\\x3e\\x7a\\x6c\\x46\\xb5\\xe8\\x8f\\xc2\\x55\\x12\\x04\\x9b\\xff\\x4f\\xe6\\x0c\\xb1\\x57\\x40\\x5c\\xa4\\x5a\\x4a\\x50\\xb9\\x76\\x8b\\x1f\\x6f\\x78\\x60\\xb5\\x63\\xd1\\x44\\xb5\\x8a\\xb8\\x1e\\xc0\\x8d\\xa6\\xb9\\xbc\\xfc\\x9a\\xf6\\x31\\x0a\\x32\\xa3\\x10\\x19\\x71\\xee\\x62\\x0b\\x90\\x01\\xbc\\x77\\x93\\xdb\\xbd\\x79\\x33\\x33\\x38\\xd4\\xf3\\x2a\\x46\\xe0\\xe0\\xfb\\x64\\x79\\x34\\x13\\x02\\x48\\x94\\x95\\x09\\xbd\\x9a\\x22\\x5b\\xb2\\x87\\x9e\\x79\\xd8\\x93\\x21\\xf8\\xb6\\x11\\x83\\xca\\x12\\x21\\xf3\\x5e\\x6e\\x5e\\x58\\x25\\xc1\\xd4\\xf2\\xf6\\x95\\x31\\x0b\\xea\\xda\\x12\\xe1\\xa9\\x46\\x89\\xce\\xc8\\xbf\\x32\\xef\\x19\\xcc\\x1b\\x5e\\x62\\x1e\\x52\\x64\\xb4\\x58\\x3e\\xfa\\x08\\xe9\\x3a\\x6c\\xd2\\x8e\\x20\\x86\\x43\\xb8\\x95\\xb8\\x50\\xb9\\x68\\x29\\x84\\xde\\x56\\x4d\\x9e\\xde\\x59\\x7c\\xcc\\x12\\x50\\xd3\\x8e\\x36\\x58\\xcb\\x55\\x86\\x7d\\xb0\\x27\\x62\\x53\\x08\\x94\\x17\\xa4\\x54\\x74\\x9f\\xb4\\x24\\x55\\x2e\\xc1\\x02\\x3d\\x50\\x40\\x5c\\x02\\xb0\\x77\\x03\\x61\\x33\\x18\\xfb\\x21\\x60\\x4c\\xca\\x47\\xaa\\x18\\xe3\\x22\\xfe\\xee\\xfe\\xa2\\x05\\x12\\x32\\xd2\\xe2\\x8e\\x2c\\x43\\xb2\\xaf\\xea\\x37\\xcb\\xd3\\x92\\x63\\x1c\\x32\\x9e\\x8b\\x47\\x0d\\xde\\x1a\\x0d\\xe8\\x6a\\x85\\xc7\\x7e\\x63\\x94\\x44\\x6f\\x66\\xb3\\xeb\\x31\\x8f\\xdd\\x4a\\x4f\\x80\\xd7\\x68\\x17\\xb0\\x90\\xeb\\x67\\x41\\x2c\\x85\\x26\\x1b\\x20\\xfc\\xe4\\xb9\\xf7\\x10\\x8c\\x49\\x94\\xd8\\xa3\\x98\\x65\\xad\\x34\\xa7\\x4e\\x6a\\xc9\\x1d\\xc0\\x70\\xe4\\x02\\x15\\x04\\x31\\x19\\x9b\\x6f\\x83\\x9a\\x43\\x8e\\xa5\\xea\\x09\\x9b\\x29\\xed\\x31\\x52\\xaa\\xc9\\xc6\\x24\\xdc\\x90\\x3d\\xa9\\x7f\\x21\\xd5\\xb2\\x67\\x25\\x30\\xbe\\xa8\\xae\\xe1\\xe0\\x07\\xc6\\xa3\\xdc\\x74\\xea\\x21\\x60\\x97\\x25\\x24\\xc4\\x56\\xf1\\x82\\xa4\\x91\\xa0\\x37\\x38\\x14\\x44\\x0c\\x11\\x17\\x16\\xec\\x19\\x77\\x15\\x17\\x20\\xe2\\x59\\x50\\x30\\x23\\x3f\\x1d\\x4e\\x73\\xb7\\x3d\\x5a\\xd8\\x70\\x7f\\xde\\x3a\\x78\\xa7\\xf9\\x0d\\x8f\\x18\\x6e\\xe2\\x88\\xa6\\x43\\x33\\xce\\x28\\x3d\\x81\\x37\\xbd\\xc7\\x26\\xca\\x11\\xeb\\x1f\\xd3\\x6e\\xc2\\xfe\\xd4\\x28\\xe2\\x2a\\x22\\x29\\xbd\\xf0\\x25\\xe0\\x99\\xea\\x61\\xb5\\x9c\\x12\\xcb\\x37\\x7d\\xb8\\xd3\\xea\\xde\\x8b\\x45\\x92\\x08\\xa1\\x27\\x18\\x03\\x17\\x0e\\xca\\x53\\x6a\\x41\\xb1\\x49\\x83\\x19\\x3d\\xdf\\x3b\\xf0\\x41\\xb2\\x9b\\x4a\\xdf\\xdd\\x29\\x25\\x86\\x10\\x20\\xad\\x90\\xda\\x7a\\xd7\\x72\\x04\\x32\\xe1\\x5a\\xb6\\xb5\\xef\\x82\\xd5\\xaa\\xb1\\xe0\\x2c\\xe8\\xf5\\xb5\\x77\\xd0\\x93\\x2d\\x3b\\xce\\x9e\\x18\\xf5\\xcd\\xb3\\xd3\\x64\\x34\\x94\\x85\\x70\\x37\\xa2\\xc7\\x55\\x39\\x5b\\xd5\\x2c\\x06\\x0e\\x41\\xd5\\x49\\x2a\\x97\\x39\\x16\\xaa\\x3a\\x2b\\xb4\\x53\\xd4\\x96\\x02\\xfb\\xab\\x05\\x6a\\xda\\x21\\xbe\\x4f\\xd6\\x56\\xe9\\xc3\\x22\\x35\\x0c\\x02\\x97\\x2f\\x44\\x07\\x67\\x66\\x85\\xc8\\x8c\\x5a\\xb2\\x10\\xf1\\x35\\xbd\\x25\\x6b\\x82\\xa3\\x93\\xc9\\xfd\\xaf\\xbe\\x21\\x75\\x52\\x39\\xc0\\xb7\\x63\\xeb\\x30\\x27\\x96\\xb4\\x23\\x1a\\x64\\xbf\\xd1\\x70\\x3b\\x9c\\xd3\\x1f\\xd3\\xe9\\xda\\x90\\xd5\\x0d\\x4a\\x06\\xb4\\x37\\x05\\xc0\\xaf\\xc5\\x7a\\x38\\xf3\\x9d\\x4e\\x26\\x99\\x42\\x4b\\xb4\\x6c\\x89\\x42\\x60\\x29\\xb1\\x2e\\xb7\\xab\\x65\\x71\\x0b\\x03\\x5c\\x91\\x54\\x9a\\xfc\\xe6\\xaf\\x9b\\x73\\x94\\xf6\\xd1\\xec\\xc1\\x76\\xba\\xe6\\xc0\\x3a\\xfe\\x70\\x87\\x65\\x77\\x61\\x0c\\x43\\xcb\\x18\\x25\\x4b\\x4a\\x7e\\xcb\\x0c\\x96\\xc8\\x9a\\xa6\\xd7\\x81\\x85\\x31\\x8a\\xf2\\x54\\x65\\x20\\x6e\\x39\\xbf\\x2c\\x90\\xc3\\x8c\\x8e\\x71\\x8a\\x37\\xc4\\x7a\\x0c\\x01\\x5a\\xe3\\x2f\\x22\\x0d\\xd6\\xad\\x0e\\x00\\xed\\x07\\x6e\\x51\\x02\\xca\\xdd\\xd8\\x21\\xcc\\x37\\xea\\x71\\xc2\\x9b\\x8a\\x13\\x85\\x6f\\x61\\x5b\\x87\\x5a\\x0d\\xa5\\xcd\\x4b\\xc1\\x4a\\xd5\\x6b\\x87\\x01\\xef\\x48\\xf8\\x46\\x94\\xf4\\x01\\xfe\\x5d\\x94\\xd7\\xc1\\x5e\\x22\\xc8\\x1a\\x0a\\x48\\x3b\\x87\\x69\\xe7\\x89\\x11\\xc4\\x99\\x1e\\x07\\x1d\\xc5\\x41\\xae\\x67\\x1e\\xa7\\x70\\x6b\\x62\\x7f\\x8c\\xce\\x98\\x2f\\xe0\\x84\\x61\\xdc\\x7d\\x95\\x35\\x21\\xee\\x31\\xe2\\xf6\\x1f\\x33\\x7e\\x4c\\x3e\\x8b\\x50\\x95\\x93\\x2b\\x79\\x6d\\x3c\\x95\\x92\\x5f\\xc0\\x1d\\x14\\xee\\x5a\\x40\\x27\\x09\\x21\\xdb\\x4e\\x85\\x20\\xda\\x98\\x9c\\x85\\x68\\x93\\x97\\x9d\\xd1\\x64\\xee\\xfa\\x35\\x81\\x80\\xfd\\xb8\\x2c\\x2b\\x60\\x57\\x52\\xe0\\xd4\\x19\\x89\\xe1\\x80\\x54\\xd9\\x56\\x16\\x72\\x71\\xa0\\xa0\\xa2\\x1d\\x29\\xd1\\x40\\x43\\xba\\xd7\\xc0\\xe2\\xbf\\xd4\\x96\\x10\\x67\\xd1\\xb8\\x4a\\xca\\x4b\\x42\\xb3\\xe2\\xd7\\x26\\x40\\x2e\\xe4\\x39\\x19\\x0e\\xc8\\x58\\x93\\xf9\\x09\\x46\\x00\\x6b\\x54\\x33\\x30\\x19\\xa1\\xc3\\x3d\\x3b\\xd2\\x01\\xb2\\xb0\\xa9\\x47\\xab\\x7c\\x49\\xfb\\xb6\\xe8\\x43\\xf7\\x67\\x5e\\x43\\xf4\\x1f\\xd5\\x79\\x4d\\x0c\\xc6\\x8b\\x9a\\x72\\xea\\xb6\\x04\\x8c\\x8b\\x4c\\xd9\\x49\\xd0\\xd0\\xc4\\x50\\x8d\\x09\\x07\\xb7\\x97\\xdb\\xbb\\x36\\x8f\\x06\\x70\\x52\\x42\\x46\\xe0\\x6f\\xc1\\x45\\x1a\\x0c\\x68\\x5a\\xe8\\x1a\\xa3\\x00\\x30\\x44\\xe0\\x09\\x12\\x11\\xec\\x31\\x30\\xb8\\xb0\\x93\\x5a\\x39\\x35\\x04\\x83\\x91\\x43\\x0c\\xf3\\x25\\x63\\x26\\x68\\x94\\xc6\\xc0\\x12\\xc4\\xd0\\x60\\x90\\xc6\\xff\\x9b\\x02\\x3d\\x55\\x1a\\x3b\\x26\\x47\\xba\\x3a\\xb7\\x2c\\x09\\x43\\x05\\xc3\\x1f\\x0f\\x04\\x76\\x37\\x9d\\x57\\x5b\\xd5\\x29\\xa5\\x68\\x7a\\x21\\xda\\xf0\\xc7\\x18\\x2d\\xde\\xb8\\x66\\x31\\x4e\\xb6\\xbe\\x53\\x04\\xac\\xe6\\xc0\\xab\\x6e\\xc4\\x3d\\xa0\\x0f\\xfd\\xa1\\xc0\\x02\\xd2\\x09\\x6e\\x64\\xb2\\x16\\x26\\x2b\\xb6\\x15\\xd7\\xb2\\x6d\\x48\\xdc\\x51\\x82\\x60\\xa2\\x98\\xbb\\x4a\\x9b\\x7b\\xf0\\x16\\x7d\\xc4\\x4e\\x1c\\x3e\\x2a\\x6c\\x2e\\x68\\x65\\x54\\x0e\\xf0\\x09\\xa4\\x59\\x3c\\x42\\xac\\x93\\x32\\xd6\\xb6\\x54\\x3b\\x6d\\x7d\\x2a\\x0b\\x0f\\xbe\\xc5\\x8a\\x4d\\x45\\xf4\\xf5\\x2b\\xb6\\x4f\\x5f\\xf1\\x14\\xd3\\xd2\\xe2\\x01\\x44\\x33\\xb6\\x82\\x71\\x6a\\x10\\x5b\\x4f\\x48\\x06\\xbe\\x8b\\x12\\xa6\\x98\\x98\\x4b\\xb0\\x4c\\xde\\xb6\\x62\\x5e\\x92\\xf8\\xcf\\xc7\\x42\\x9f\\x5a\\x4f\\x44\\x00\\xf8\\x22\\x94\\x02\\x4c\\xa9\\x1b\\x71\\x6f\\x4c\\x38\\xb6\\x27\\x67\\x65\\xc4\\x24\\xb3\\x14\\xe8\\xc9\\x93\\xcd\\xc3\\xef\\x98\\xae\\x41\\x16\\xe1\\x11\\xd5\\x41\\x50\\x39\\x28\\xd5\\xd5\\xc8\\x9a\\x73\\x66\\xea\\x25\\x6e\\x8f\\x94\\xa1\\xda\\x00\\x90\\x26\\xa1\\x16\\x7d\\x49\\x96\\x8e\\x3c\\xc1\\xa9\\x89\\x5c\\x75\\x62\\x9a\\xd4\\x84\\x79\\x9f\\x76\\x8b\\x57\\x2f\\x7c\\x97\\x13\\x5a\\xcb\\xfc\\xf3\\xc4\\xb7\\xba\\xd0\\xc4\\x84\\xcb\\xe5\\xa9\\xd5\\x7c\\x7f\\x23\\xd0\\x3b\\x72\\x9c\\xb9\\x1d\\x0a\\x4c\\x73\\xdb\\x6a\\x27\\x72\\x55\\x93\\xb4\\xb3\\xf9\\xce\\x33\\x88\\x47\\x42\\x27\\x96\\x50\\x85\\x77\\x2c\\x8b\\xc6\\x53\\x82\\xbf\\x2e\\x9a\\xd1\\x83\\x22\\x8f\\x57\\x9b\\x57\\x29\\xc6\\xc9\\xda\\x02\\x06\\x65\\x06\\x6b\\x07\\x14\\x78\\x09\\x25\\x8c\\x26\\xc5\\xb9\\x89\\xe9\\x52\\xb3\\x37\\xaa\\xb5\\xcb\\x73\\xa0\\xf6\\xad\\x9d\\x9d\\xfd\\x09\\xb1\\x5b\\x4a\\x96\\xcd\\x60\\xda\\xa4\\x98\\xc5\\xe0\\xe4\\x90\\x00\\x23\\xb6\\xfa\\x29\\x4c\\x49\\x4a\\xfd\\xdd\\xc2\\x17\\x4a\\x12\\x85\\x48\\xfd\\xa0\\x9f\\x4b\\x43\\x30\\xaa\\x6d\\x60\\xb6\\xe7\\xbc\\x1f\\xc3\\x79\\x8a\\x75\\xe8\\x3b\\xa4\\xa5\\xea\\x69\\x08\\x11\\xfe\\x0a\\x81\\xd7\\x36\\xc1\\xd9\\x21\\xe7\\x20\\xae\\xc9\\x0b\\xcc\\x6c\\x17\\xc2\\x9b\\x0f\\xbd\\xbe\\xde\\x4f\\xb4\\xd5\\x2f\\x1c\\x44\\x44\\x2a\\x14\\x62\\x61\\x9e\\xd1\\x55\\x2e\\x1e\\x17\\xd5\\x07\\x1b\\xe8\\xbc\\x18\\xbc\\x81\\x75\\x12\\xf1\\xd4\\x5e\\xf6\\xf8\\x83\\x3c\\x79\\xf5\\xad\\xd1\\x20\\x5b\\x13\\xcf\\x76\\x38\\x7c\\xaf\\x26\\x9c\\xad\\x2b\\xaa\\xea\\x73\\xed\\xc7\\x20\\xca\\x47\\x33\\xd3\\x8b\\x36\\x5c\\xf6\\x9a\\x97\\x0f\\x22\\xbf\\x1e\\xef\\xae\\xde\\x19\\x1a\\x2b\\x61\\xc4\\x68\\x3d\\xa7\\x13\\x66\\xf9\\x9d\\xd9\\x0c\\x52\\x15\\xf6\\x9d\\x70\\xb3\\x4e\\x73\\x56\\x52\\x0d\\x60\\x46\\xa9\\xab\\x00\\xcf\\x2e\\x19\\x4e\\x75\\xb5\\x58\\x03\\x2c\\x18\\x22\\x3b\\xd3\\x7e\\xac\\x75\\x18\\xa0\\x3e\\x32\\x10\\xc9\\x68\\xe1\\x08\\x18\\x70\\x16\\x56\\x1a\\xd3\\x32\\xd5\\xb0\\x0b\\xc5\\x12\\x81\\xe0\\x4a\\xe7\\x33\\xdf\\x53\\x86\\x49\\x5a\\x6c\\x41\\x7b\\xaa\\x40\\xd6\\x78\\x40\\x35\\x94\\x7f\\x0f\\xbb\\x28\\x1e\\x17\\x58\\x9b\\x33\\x1c\\x54\\x7d\\x9a\\xc2\\x21\\x4e\\x4c\\xca\\x96\\x39\\x38\\x3f\\x5e\\x03\\xae\\x75\\xfa\\x7a\\x3f\\x27\\xf2\\xce\\x66\\xa3\\x3a\\xba\\x42\\xa9\\xd5\\x59\\x37\\x89\\x29\\x4c\\x4a\\xe1\\x2a\\x00\\x9e\\x3f\\x0c\\xa2\\xee\\x84\\x76\\xab\\x13\\x56\\x0d\\x28\\xab\\xe1\\x05\\x18\\x33\\xa7\\x68\\x68\\xdf\\x20\\xee\\x32\\x2a\\x0a\\x0a\\x29\\x3d\\xae\\x4d\\x9e\\xeb\\x5c\\x4c\\xa5\\xbd\\x09\\xe7\\xd4\\xfd\\xcf\\x95\\xc2\\x28\\x97\\x4b\\xd7\\xba\\x22\\xe2\\x50\\x55\\x5a\\x39\\x26\\x4f\\x19\\x72\\xe5\\xc8\\xd8\\x9e\\x76\\x87\\x15\\xc9\\x0e\\xfd\\x69\\xd5\\x15\\x11\\x36\\x72\\xf2\\xc2\\x2b\\x88\\x01\\x8e\\x5e\\x25\\xbe\\xc8\\x0d\\xd1\\x5c\\x98\\x77\\x12\\x86\\x8e\\xd1\\x83\\x75\\x40\\x16\\x5e\\xf8\\x10\\xcf\\x21\\xc4\\x32\\x5a\\x46\\xe8\\xa3\\x92\\xcf\\x39\\x5d\\xc4\\x55\\xec\\x65\\xda\\x62\\xe6\\xef\\x0b\\xc4\\x20\\x0e\\x44\\x48\\xbe\\x21\\x8b\\x47\\x16\\x40\\xbc\\x9f\\x62\\x4e\\xbf\\x1f\\x91\\xba\\x64\\x53\\xd9\\x6e\\x3e\\xd7\\xa5\\x4f\\x9b\\xe0\\x6f\\x60\\xeb\\xb6\\xc8\\x87\\x74\\xbb\\xb4\\x5b\\xa8\\xc2\\x1f\\x08\\xd5\\x4a\\xe7\\xd2\\x90\\x5d\\x8b\\x76\\xa9\\x60\\x14\\xc9\\x6c\\xf3\\x5e\\xb3\\x51\\xfe\\xf7\\xe6\\x55\\xa8\\xbc\\x54\\x64\\xaa\\x8c\\x10\\x53\\x92\\x00\\x32\\xec\\xd7\\x0b\\xaa\\x13\\x54\\x79\\x0d\\x12\\xef\\x0d\\xca\\x9f\\xdb\\x56\\x68\\x6c\\x30\\xb0\\xa4\\x4a\\xa4\\x82\\x76\\xf9\\x6f\\x3f\\x39\\x5e\\x0b\\x32\\xef\\x1a\\x3e\\x4b\\xc1\\x40\\x3d\\xb1\\x97\\x0d\\x0f\\x5a\\x34\\xad\\x76\\xc7\\x6f\\xa9\\x87\\x00\\x79\\x05\\x33\\x34\\x61\\xe6\\xbd\\x48\\x69\\xd4\\x10\\x6c\\x8b\\xb0\\x54\\xae\\x77\\xcb\\x3d\\xf9\\x9e\\x9e\\x36\\x8f\\x5d\\xba\\xa0\\x86\\xe8\\x33\\xc1\\x5d\\xef\\xb0\\x38\\xd3\\x06\\xf0\\x8f\\x70\\x4d\\xd6\\x9b\\xcf\\x00\\xbf\\x88\\x7f\\x1b\\x49\\x29\\x4d\\x89\\x29\\xdb\\x26\\xc4\\x59\\x95\\x8f\\x03\\x4a\\x7d\\xdb\\xdd\\x1e\\x8b\\x15\\x79\\x22\\xdd\\x4c\\x33\\xd8\\x1f\\x24\\xb7\\x60\\x43\\xa2\\x03\\xac\\x7b\\xaf\\x63\\x82\\xff\\x6e\\xb2\\xcd\\x75\\xbe\\x75\\x18\\xc2\\x85\\xe4\\xa1\\x09\\xa3\\xd2\\xac\\xa2\\x4c\\x22\\xd6\\x89\\xfc\\x2d\\x08\\x81\\x25\\xd9\\x55\\xeb\\x56\\x38\\xb4\\x20\\xf6\\xa0\\x91\\x7a\\xa3\\x58\\x2e\\x3b\\x67\\x3d\\xdc\\x3d\\x83\\x10\\xd8\\x2a\\xd7\\xa0\\xe2\\xc7\\xf3\\x96\\xe6\\xd1\\x43\\x2f\\xe1\\x4f\\x47\\x5e\\x7d\\x14\\xec\\xf2\\x60\\xd4\\xd6\\xa2\\x76\\x80\\xdc\\x93\\xa8\\x8e\\x7a\\xba\\xb6\\x23\\x36\\xb9\\x86\\xe8\\x74\\xbc\\x2f\\xf5\\xb8\\x26\\xd4\\x92\\xa1\\x51\\xe6\\x4c\\xa2\\xfe\\x12\\xd3\\xcf\\x05\\x00\\x6a\\x31\\xc2\\x41\\xb0\\xf8\\xd4\\x1c\\x71\\x54\\x2b\\xb4\\x74\\xc8\\x0c\\x74\\x5d\\xc1\\x07\\x1a\\x75\\x59\\x38\\xce\\x8b\\x47\\x3a\\xf4\\x0a\\xa4\\xdb\\xbc\\x42\\xc4\\xc2\\x12\\xc8\\xac\\x76\\xce\\x6c\\xce\\xab\\xae\\xae\\x9b\\x11\\x66\\x70\\xa2\\x57\\xba\\x9d\\xde\\x07\\x75\\x91\\x2a\\x25\\x4c\\x63\\x97\\x65\\x50\\xb8\\x8e\\x2c\\x65\\xc8\\x4c\\x45\\x3f\\x84\\x26\\x2c\\x7b\\xcd\\x8a\\xe7\\x78\\x2c\\x3d\\x21\\x68\\xb3\\xf4\\x13\\x14\\x22\\xf4\\x84\\xe0\\x12\\x52\\x88\\x49\\x30\\xd9\\x60\\xab\\xa9\\x65\\x8b\\x06\\xc5\\x52\\x94\\x07\\x08\\x62\\x1c\\xe1\\x43\\x32\\x19\\xf3\\x7e\\xc0\\x29\\x8f\\xae\\x16\\x62\\x0e\\x63\\x77\\x51\\x41\\x25\\xcb\\x63\\x82\\xb8\\xa4\\xb7\\x1e\\xb5\\x98\\xee\\xf9\\xf0\\xa9\\xd8\\xac\\xca\\x5f\\xd7\\xd9\\x4f\\x2c\\xce\\xa9\\x6c\\x27\\x05\\x70\\x1f\\x15\\x43\\xb8\\x69\\xa3\\x51\\x1f\\x15\\x76\\x5e\\x10\\xce\\x3c\\x62\\x1f\\x6b\\x75\\x61\\xcd\\x54\\x0a\\x5f\\xe8\\x36\\x61\\x1b\\x79\\x86\\x70\\x2a\\x1c\\x02\\x95\\xa1\\x0d\\x2b\\x68\\x9b\\x91\\x3a\\x3b\\xcc\\x7b\\xf8\\x49\\x24\\xa0\\xee\\x32\\x43\\x94\\x6b\\x3e\\x43\\xe0\\x29\\x28\\xea\\x7a\\x53\\x5a\\x2b\\x60\\xa3\\xd8\\x87\\x88\\x78\\x58\\x95\\xc7\\xd1\\x1b\\x94\\x7a\\x00\\xc1\\x0b\\xc7\\x3f\\xfc\\x11\\x86\\x24\\xcf\\x20\\x34\\xeb\\x91\\x29\\xc4\\xe4\\xdb\\x07\\x46\\x18\\x5f\\x0e\\xd5\\x1f\\x0c\\xd8\\x53\\xbf\\x8c\\x29\\x16\\xa2\\x8f\\x0a\\xc6\\xa0\\x81\\xb3\\x05\\x2d\\x7c\\xc4\\x27\\x22\\x88\\x0a\\x3d\\xc3\\xa9\\x34\\xe1\\x8f\\x27\\x4d\\x0f\\xc0\\x7c\\x13\\xcc\\xcb\\x18\\xff\\xc7\\x80\\x7d\\xb9\\x88\\x7d\\xb0\\xd0\\xc8\\x92\\x35\\x92\\x48\\x95\\x2b\\x65\\x75\\x96\\x99\\xea\\x5e\\xee\\xe3\\xfc\\x81\\x04\\x17\\x6b\\x2b\\x5b\\x10\\xce\\x20\\x9b\\xd4\\xf1\\x72\\x52\\x1d\\x11\\x8b\\x62\\x3b\\xc5\\xac\\x94\\x1c\\x9e\\x3d\\x6b\\x39\\x03\\xe5\\xb4\\x73\\x1e\\x5b\\x12\\x98\\x1b\\xf3\\x5d\\x71\\xaa\\x8a\\x15\\x12\\xea\\x88\\x3b\\x1a\\x8d\\x09\\x28\\x91\\xa1\\x58\\x29\\x45\\x4f\\xb9\\x30\\x0e\\x20\\xb9\\xae\\x23\\xe8\\x80\\x10\\xc1\\x38\\x6b\\x3f\\x2d\\x27\\x22\\x65\\x05\\x27\\x65\\x18\\xa1\\xb8\\x60\\x5f\\x52\\x4e\\x06\\x3f\\x27\\xf5\\xf8\\x8b\\x6e\\x02\\x34\\xc0\\xf6\\xcd\\xcf\\x04\\x91\\x9d\\x9b\\x3c\\x89\\xbc\\x5b\\x93\\xc8\\x73\\xd2\\xce\\xc3\\x11\\x99\\x21\\x6b\\x8d\\x2e\\x71\\x1b\\x48\\x82\\x22\\xcd\\x42\\xa6\\x66\\xf7\\xa5\\xf4\\xc4\\x46\\x0b\\x04\\x59\\xba\\x70\\xf8\\xf8\\x4a\\x3f\\xbb\\xc5\\x36\\x20\\x9c\\x18\\xe8\\x5c\\x8b\\x62\\xf1\\x06\\xe5\\xb8\\x8a\\x9d\\xfa\\xdf\\xae\\x87\\xd4\\xef\\xc6\\x7f\\xbe\\xf0\\x88\\x26\\xec\\x20\\xb8\\x22\\x7b\\x50\\xcf\\x0d\\xe3\\xe9\\x33\\x26\\xf1\\xbe\\x3c\\x78\\x53\\x0d\\x3c\\x51\\x35\\xef\\x9e\\xf5\\x45\\x29\\xb8\\x3f\\x77\\xe5\\xd2\\xb2\\x3a\\xc9\\xa8\\x35\\x97\\x98\\xcd\\x0a\\x7b\\x96\\xd1\\x2d\\x96\\x48\\x4d\\xe6\\xc1\\x36\\x00\\xfc\\xf1\\xa0\\xa8\\x2e\\x71\\x3c\\x53\\x79\\x98\\x30\\xe7\\x45\\xfa\\x2b\\x79\\x06\\xdc\\x22\\x49\\x7b\\x00\\x46\\x25\\xd8\\xeb\\x6d\\x5f\\xff\\xd9\\x65\\xd8\\x6a\\x9e\\xc3\\x45\\x4d\\x53\\xec\\xf5\\x2c\\x6d\\x49\\xe0\\x28\\xb5\\xa9\\xaf\\x0a\\xc1\\x8f\\xe1\\xce\\x78\\x4c\\x8b\\x02\\xa9\\x03\\xc0\\xac\\xb1\\x05\\x4f\\xc1\\x5e\\xea\\xb6\\x4f\\x96\\xae\\x02\\x03\\xa4\\xdb\\x27\\xb0\\xad\\xdf\\x4a\\x47\\xe8\\xf7\\xe8\\x2d\\xce\\xef\\x2d\\x87\\x13\\xe3\\x61\\x0a\\xc6\\xef\\x65\\xae\\x06\\xa6\\x63\\x92\\x19\\x59\\xfa\\x69\\x58\\xe9\\x22\\x64\\x0e\\xf5\\xde\\x06\\x21\\x20\\xf7\\x20\\x4f\\x72\\x67\\x76\\x00\\xc4\\x02\\x26\\xa9\\x3e\\x37\\x4d\\xdc\\xf4\\xbb\\x9a\\x0a\\xfd\\xa8\\xed\\x25\\x7d\\xb5\\xa2\\x10\\x1d\\x3e\\x77\\x56\\xd3\\x5f\\xfc\\x2f\\x59\\x7e\\xfd\\xbb\\x45\\x3e\\xc7\\x10\\xb0\\xa1\\x06\\xd6\\x88\\x0f\\x7c\\x1b\\x1b\\x7e\\xb7\\x8b\\xfa\\xef\\x7a\\xda\\x82\\x9a\\x9a\\x04\\x11\\x06\\xf5\\xbf\\x62\\xf5\\x85\\xd9\\xc4\\x89\\x41\\x34\\x55\\x61\\x45\\xa7\\xc8\\xbd\\xa5\\x1b\\x53\\x06\\x05\\x4b\\xdc\\xe1\\x18\\xc8\\x14\\xee\\xe0\\x0b\\x44\\x1f\\x26\\x04\\x62\\xeb\\x3d\\xfa\\x13\\x06\\x56\\x0b\\xf7\\xc7\\xa3\\xc6\\x8a\\xf3\\xe2\\xd3\\x8e\\x4a\\x5a\\x6f\\x02\\x61\\x10\\x22\\xce\\x8a\\x6f\\xe8\\xfb\\xac\\x51\\x1f\\xb3\\xb9\\x29\\x20\\x38\\x3e\\xd8\\xc3\\x24\\x4e\\x6f\\x32\\x10\\xc0\\xba\\x38\\x1b\\x09\\xe2\\x3e\\x94\\x75\\x28\\x61\\x29\\x2b\\xfe\\x43\\xd1\\x71\\x57\\xb9\\x90\\x71\\xae\\xe9\\x45\\x10\\xef\\x18\\xa0\\xc4\\xc1\\x08\\xbf\\xf0\\xc9\\xa2\\x2e\\x71\\x72\\x8d\\x29\\x59\\xd1\\xe6\\x9c\\xdc\\x7e\\x6d\\xa7\\x80\\x6a\\xa3\\x63\\x88\\x54\\xb4\\x59\\x6b\\x92\\x32\\x6f\\x30\\x96\\x16\\xba\\x4a\\xbd\\x66\\x4c\\x6d\\x75\\x6a\\x85\\x33\\x41\\xce\\x34\\x3c\\x0e\\x22\\x42\\x20\\x3b\\x0b\\x6b\\xe7\\xfe\\x02\\xde\\x15\\x9f\\xe1\\xc3\\xf4\\x62\\xe7\\x58\\xcb\\x71\\x8e\\x50\\x29\\x2e\\x90\\xbe\\x22\\x14\\x3f\\x80\\x11\\xeb\\xf8\\xc3\\xab\\x88\\xc9\\xe2\\x6c\\xc4\\xbc\\xfa\\x4f\\xc6\\xfb\\x44\\x7b\\x4c\\xaf\\x51\\x40\\x17\\xef\\x83\\x71\\xd7\\xd0\\x50\\x49\\x5b\\xb8\\x75\\x90\\xbd\\x26\\x21\\x84\\x2f\\x84\\x47\\xac\\x0e\\x3c\\x5f\\x12\\xd2\\x53\\x3d\\x91\\x3b\\x9e\\x94\\x94\\xe9\\xa9\\x9f\\x08\\xf8\\x01\\x85\\x68\\xa1\\x16\\x99\\x10\\x43\\x4b\\xcd\\xac\\xc2\\x44\\x3c\\x28\\x6d\\x09\\x56\\x22\\x08\\x56\\xd6\\x3b\\x80\\x5a\\xcf\\x0a\\x91\\x4f\\xf6\\x53\\xc8\\xfc\\x8b\\x20\\x25\\x35\\xe4\\x80\\xcc\\x14\\x53\\xa5\\x4d\\x87\\x5f\\xf1\\x00\\x74\\x41\\xf2\\x30\\x95\\x5c\\x82\\xee\\x61\\x3a\\xdd\\x40\\x62\\x4f\\xbc\\x92\\xac\\xd4\\xa6\\x9a\\x1d\\xb0\\xba\\x3f\\xca\\x91\\xf1\\xc5\\x5e\\x5e\\x42\\xe8\\xb8\\x88\\x06\\x4d\\x8b\\xe1\\x52\\x99\\xbb\\xc9\\x38\\x37\\x66\\x23\\x87\\x67\\x29\\x69\\x20\\x7c\\xe2\\x61\\x72\\x2d\\x89\\xed\\x2c\\x6c\\x91\\x47\\x96\\x05\\xeb\\x5f\\xca\\x92\\x64\\x12\\x55\\x6f\\x67\\x34\\x56\\x99\\x49\\xa0\\x51\\x7d\\x6a\\x41\\x06\\x04\\x77\\xd7\\x52\\xa4\\xc8\\xa0\\x2f\\xc8\\x8e\\xb3\\x71\\xf0\\x04\\x4d\\x83\\x9d\\x04\\x40\\x14\\x1b\\xf9\\xae\\x68\\x2d\\x81\\x09\\x6a\\x95\\xf7\\xf2\\x21\\x90\\xb6\\x14\\x20\\x5e\\xb1\\x0f\\x94\\x35\\x3e\\x29\\x73\\x40\\x08\\x5b\\x80\\x0b\\xa3\\x84\\x54\\x14\\xec\\x47\\x7a\\x08\\x60\\x69\\xf9\\xbc\\x90\\x07\\x8e\\x58\\x08\\x17\\x4f\\x90\\x5c\\x09\\x6b\\x57\\x52\\x06\\xef\\x61\\x1a\\x06\\x42\\x3d\\x25\\x30\\x57\\xf7\\x50\\x5a\\x0f\\xc2\\x8c\\x20\\x2d\\x36\\xa4\\xa6\\x54\\x6b\\x4c\\x32\\x2e\\x13\\x3a\\x8b\\x4a\\x37\\x4b\\x98\\xd0\\xb4\\x32\\x0f\\x89\\x26\\x95\\xd0\\x56\\xe4\\xa2\\x01\\x66\\xed\\x27\\x5f\\xea\\xb6\\x63\\x44\\xec\\xd0\\x80\\x08\\x21\\xda\\x28\\x24\\x36\\x25\\x6f\\xf0\\x64\\x97\\x74\\x93\\x5c\\xe3\\x11\\xd1\\x12\\x1c\\xfe\\xbb\\x97\\x98\\x05\\x7c\\x80\\xa5\\xe6\\x02\\x8b\\xb7\\xf4\\xaa\\x92\\x4b\\xd5\\xa9\\x6d\\x86\\x45\\x78\\x7f\\x88\\xb7\\x47\\xbe\\xf2\\x20\\x26\\xaf\\x07\\x47\\x79\\xfc\\xa0\\xfc\\xa8\\x60\\xf2\\xfe\\xe3\\x29\\x6b\\x21\\x59\\x5d\\x61\\xae\\x57\\x73\\xd8\\x75\\x4d\\x0b\\x8b\\xea\\xbd\\x91\\xc9\\x74\\x09\\x6f\\x11\\xea\\xab\\x19\\x15\\x23\\x2c\\xc4\\x23\\x7b\\x59\\x3e\\x5e\\x99\\x68\\x47\\x86\\xdb\\xf5\\x65\\x8c\\x25\\xe4\\x07\\x1e\\xd3\\xc5\\x0c\\xa7\\xa1\\xd5\\x0a\\xb3\\x26\\x13\\x9d\\x25\\x03\\x97\\x52\\x07\\x62\\x4f\\xdf\\xf9\\xa5\\x54\\x01\\xd2\\x4a\\xa6\\x27\\x29\\xa8\\xd0\\xa1\\x63\\xb0\\x20\\x86\\xcf\\xe9\\x5e\\xa1\\x62\\xab\\x71\\x02\\x5d\\x13\\x37\\x49\\x06\\xdb\\x78\\x1d\\x2c\\x71\\x8e\\x54\\xdb\\x58\\x10\\xd0\\xc4\\x65\\x1f\\x83\\xa5\\x33\\x83\\x47\\xcc\\x05\\xe0\\x96\\x39\\x0e\\xe8\\x54\\x87\\x8b\\xf2\\x82\\x4b\\x61\\xa0\\x2c\\x80\\x02\\xc8\\x37\\x77\\xe6\\x95\\xa7\\x7d\\x3f\\x4e\\x0d\\xb8\\xf9\\x48\\x45\\x61\\x93\\xec\\x89\\xaf\\x77\\xc1\\x94\\xe0\\x1f\\x75\\xc1\\xca\\x3b\\x14\\x58\\x99\\x15\\xb4\\x4d\\x50\\x6e\\x0e\\x68\\x66\\x89\\xf4\\x19\\x90\\x22\\xa9\\x2a\\x69\\xa4\\xea\\xba\\x66\\xa8\\x74\\xfa\\x25\\xfd\\xce\\x20\\x77\\x73\\xa2\\x57\\xfc\\xe7\\xc5\\x2b\\x3b\\x97\\xd2\\xe2\\x68\\x26\\x73\\x50\\xe7\\x9d\\x77\\xf8\\xa4\\xb4\\x3f\\x56\\x28\\xfc\\x29\\x91\\x8a\\xc2\\x13\\x8d\\xea\\x1e\\x1b\\x03\\x89\\xee\\x61\\x41\\x41\\x49\\x65\\x36\\x95\\xf8\\xdd\\x91\\x14\\x96\\x05\\x94\\x9c\\x86\\xa3\\x19\\x2e\\xae\\x2a\\x3e\\xb8\\x39\\x3a\\x3b\\xc8\\xb8\\x2e\\x15\\xfa\\x18\\x8e\\xc8\\x58\\x65\\x84\\xe1\\x17\\x60\\x1d\\xa3\\xaa\\x2b\\x83\\x72\\xc4\\xac\\xb8\\x8a\\xf1\\x41\\xef\\x0a\\x9e\\xdc\\x40\\x2f\\x5b\\x7a\\x50\\x01\\xec\\xcc\\xc1\\xec\\xfd\\x1f\\xa0\\xab\\xec\\x2b\\xb6\\x7a\\x59\\x1b\\x7a\\x62\\xed\\xff\\x7a\\x7f\\x40\\x24\\x03\\xd5\\xe8\\x15\\xb5\\xd2\\x80\\x15\\x42\\x0f\\xaf\\x00\\xbf\\x4d\\x00\\x81\\x1f\\x10\\x30\\x1e\\xd7\\x1f\\x9d\\x62\\x1d\\x1b\\x3a\\x80\\xb3\\x67\\xcd\\xd5\\x00\\xf8\\x37\\x01\\x43\\xe2\\x89\\x2d\\x13\\x6e\\x47\\xca\\x2b\\xbb\\x05\\x55\\x16\\x79\\x0c\\xa6\\xed\\x2c\\xf9\\xcf\\xd6\\xe1\\xc1\\x7f\\x2b\\xf1\\x2d\\xb6\\xb8\\xb6\\xcf\\x9d\\x00\\x3b\\x42\\x66\\x45\\xe8\\x65\\x7f\\xdf\\x98\\x83\\x92\\x47\\xe9\\x42\\x17\\x80\\x7f\\x8c\\xe2\\x41\\xce\\x18\\xa5\\x14\\x9e\\x40\\x05\\x61\\x44\\x4d\\x4f\\x7e\\xee\\xda\\xa2\\xad\\x0b\\x4b\\xd6\\x13\\x08\\xe4\\x3d\\x57\\x7e\\x78\\xee\\x59\\x09\\x29\\x8e\\x1f\\xe6\\x4d\\x88\\x12\\xf4\\x3d\\x76\\x9f\\x64\\x42\\xc3\\x39\\x20\\x2c\\x4f\\x58\\xe4\\x25\\xf3\\x72\\xde\\x7a\\x01\\x1b\\x1b\\xcb\\x4e\\x14\\xb5\\x5b\\x55\\x45\\x2f\\x6d\\xc5\\xa2\\x41\\x3a\\x25\\x33\\x57\\xd7\\x02\\x0c\\x7c\\x7e\\xd0\\x51\\x19\\x32\\xd9\\xe4\\x94\\x4c\\x83\\x12\\xfc\\x85\\x06\\x3b\\x25\\x88\\x10\\x51\\x4b\\x58\\x51\\xec\\x43\\x0c\\x37\\x92\\x6e\\x9c\\x00\\xc9\\xad\\x56\\xc4\\xeb\\xf0\\x2b\\xb1\\x89\\x01\\x55\\xb7\\x0e\\xf1\\x86\\xbf\\xc3\\x02\\x22\\x02\\x0a\\x50\\xd3\\xb8\\x62\\xd2\\x13\\x27\\xed\\xe4\\x9d\\xf5\\x08\\x83\\xa2\\x0d\\x85\\xb6\\x29\\xc3\\x86\\xa1\\xe3\\x63\\x3d\\x0b\\xb8\\xc1\\x12\\x9a\\x25\\x42\\xf7\\xb0\\xa6\\xcb\\xd4\\xf4\\xca\\xfb\\x5e\\x40\\x15\\x06\\x2b\\x8b\\xd9\\xf7\\x5d\\x4b\\x46\\xd1\\x24\\x58\\x18\\x31\\x64\\x8d\\xec\\x1a\\xdc\\xcf\\x44\\xde\\x12\\x5c\\x50\\xae\\xd9\\x87\\x11\\x2b\\xe4\\xff\\xea\\x32\\x9d\\x3a\\x14\\xb8\\x2f\\x14\\x95\\x4e\\x5e\\x82\\x5a\\x13\\xd0\\x93\\xd0\\x05\\x01\\xd6\\xc0\\x13\\x2b\\x89\\xba\\x03\\x98\\xe2\\x6a\\x26\\xc8\\x5e\\x29\\xe5\\xba\\xd1\\x11\\x9b\\x09\\x28\\xf0\\x94\\xea\\xef\\x02\\x5a\\x92\\x68\\x8a\\x2a\\x90\\xe2\\x16\\x61\\xfb\\x01\\x22\\x79\\x8c\\x1c\\x4b\\x2e\\x4c\\x2c\\x51\\xe0\\x68\\x04\\x91\\xcb\\x53\\x7f\\x21\\x7d\\x3e\\xe3\\xa4\\x07\\x92\\x0b\\x00\\x6c\\xed\\x04\\xac\\x01\\x82\\x57\\xe2\\xf8\\x59\\x33\\xb3\\xd8\\x42\\x79\\xcf\\x87\\xe3\\x0c\\x89\\x85\\xa6\\xe0\\x58\\x4f\\x53\\x75\\x99\\x9f\\xd2\\x5c\\x73\\x94\\xc7\\x55\\x79\\x39\\x6c\\xa8\\x80\\x9d\\x46\\x42\\xd8\\x7c\\x83\\x15\\x96\\x0c\\x58\\x44\\x89\\xfc\\x9f\\xe7\\xd9\\x4c\\x42\\xd3\\xf6\\x72\\x81\\x6b\\x6f\\x5f\\x97\\x06\\xa0\\xef\\x31\\x15\\x2b\\x52\\xa3\\x63\\x52\\xe2\\x6d\\x76\\x62\\xf8\\x8e\\x4c\\x49\\x51\\xaf\\x15\\x4b\\x34\\x95\\x37\\xa9\\xa5\\xc0\\x26\\x4b\\x4c\\x52\\x27\\x28\\x37\\xfd\\xb2\\x54\\x4d\\x03\\x56\\x31\\xc7\\x0a\\x06\\xf7\\x4f\\x89\\xca\\x2b\\x2e\\x42\\x4a\\x3a\\x21\\x71\\x0d\\xe1\\x7a\\x0c\\x49\\x3e\\x65\\x86\\xb1\\x96\\x3f\\x9e\\x72\\x49\\xb5\\x60\\x65\\x10\\x0e\\x9c\\x5c\\x8d\\x95\\x22\\x90\\xf8\\x5f\\xb2\\x45\\x70\\xa9\\x48\\xcb\\x6f\\x34\\xc2\\x06\\x2a\\xa3\\xe0\\x05\\x65\\xa1\\x46\\xa0\\x2a\\x54\\x39\\x6c\\x06\\x47\\x38\\x4a\\xc8\\xa9\\x11\\x54\\x57\\x05\\x18\\x39\\x6d\\x43\\x92\\xf7\\x3a\\x4e\\x70\\xd0\\x3a\\xcd\\xa4\\xbb\\xce\\x35\\x47\\x45\\x3b\\x70\\xd1\\x59\\x01\\x91\\x4e\\xbe\\x91\\x7a\\x03\\x2a\\x4f\\x68\\x75\\xe0\\xe2\\x93\\x3b\\x84\\x91\\xa6\\xfd\\x74\\xcf\\x45\\x4d\\x68\\x51\\x31\\xf6\\x2d\\x6f\\xfa\\xc1\\x95\\x1a\\x78\\xd2\\x19\\x6d\\xdf\\xcc\\x5b\\x1c\\x98\\xc9\\xf6\\xaf\\xd8\\xf7\\x90\\xd8\\xc4\\xc6\\x8d\\xbb\\x81\\xdc\\xf0\\x31\\x01\\xe7\\x42\\xec\\x19\\xca\\xd2\\x29\\x2e\\x66\\xf4\\x6b\\x70\\x95\\xe9\\x20\\xbb\\x6a\\x49\\xb4\\x74\\xe4\\xb8\\x36\\x3c\\xfb\\x3a\\xc7\\x45\\x3d\\xa7\\xc4\\xa0\\x44\\x2b\\x54\\x8c\\x88\\xc3\\xdb\\xd8\\x4b\\x97\\x28\\xc0\\xe3\\xc4\\xf0\\x85\\xc8\\xbf\\x22\\x64\\x72\\xa1\\x25\\xa4\\x08\\x16\\xd3\\x84\\x3b\\x8d\\x59\\xaa\\x38\\x49\\x9a\\x80\\xc7\\x96\\x0d\\x7c\\x5b\\x62\\xae\\x16\\xe5\\x4c\\x5a\\xe8\\x62\\x10\\x2d\\x64\\x3e\\x24\\x5e\\xe9\\xe0\\x83\\xa1\\x43\\x10\\x57\\xd7\\x9d\\x74\\x3d\\x4f\\x2c\\x6d\\x82\\x10\\xec\\x68\\x72\\xb3\\xdc\\x11\\x0c\\x64\\xbd\\x32\\x58\\xfb\\xe2\\xf1\\xe6\\xc6\\x40\\x71\\xdc\\x0d\\xa1\\x26\\xb2\\x57\\x9e\\x1c\\x07\\x14\\x73\\xe4\\x2e\\x19\\x5d\\xa4\\x8c\\x6b\\x95\\x44\\x7d\\x3a\\x40\\x57\\xa3\\x31\\x5c\\xbc\\x26\\xa3\\x57\\x20\\x85\\x01\\xf7\\xbb\\x8d\\xf3\\x12\\xeb\\x62\\x71\\x2a\\x4b\\x99\\x63\\x7c\\x41\\xec\\x3b\\x2a\\xc4\\x26\\x42\\x0d\\xed\\xb1\\xc3\\x6e\\xa6\\x7a\\x8c\\xad\\x8a\\x86\\x7e\\xc6\\x91\\xc4\\xf0\\x09\\x4c\\xe8\\x78\\xaa\\x68\\x82\\xd6\\x59\\xd4\\x93\\x6e\\x04\\xdf\\x49\\xb6\\x6f\\xfe\\x8e\\x15\\x80\\x8a\\x36\\x4f\\x54\\x9d\\x93\\x4f\\x00\\x89\\xf1\\x46\\x39\\xb9\\x78\\x3f\\xb0\\x74\\x1e\\x73\\x5a\\xba\\x05\\x9a\\xa3\\x24\\x56\\x2f\\x9b\\x54\\xdc\\x51\\xb7\\x34\\x47\\x6e\\xd6\\xd1\\x92\\xa9\\x0b\\x2f\\x2e\\xbf\\xdc\\x8c\\x63\\xd6\\xa3\\xdf\\x28\\x26\\xf5\\x11\\xa2\\x90\\x64\\x4d\\xa1\\xe5\\xaa\\x94\\x07\\x03\\x84\\xe6\\xdf\\xb4\\xbc\\x2d\\xb6\\x0d\\x89\\x0f\\xd2\\x1a\\x1e\\x41\\xe9\\xf4\\x65\\x18\\xb9\\x3f\\xc0\\x63\\x27\\x87\\xe9\\xc9\\x52\\xf0\\xc0\\x30\\x94\\xfd\\x9c\\x95\\x81\\x54\\x30\\x3e\\xaa\\x93\\xf8\\x3f\\xb5\\xb3\\xaa\\x5c\\x59\\x58\\xa0\\xb1\\xb4\\x73\\x6c\\x17\\xd4\\xef\\x08\\x8a\\x0f\\x52\\xa2\\x33\\xc6\\xb1\\x5d\\x3d\\xe9\\x20\\x12\\xfc\\x4f\\x1b\\x30\\x05\\x91\\x12\\x98\\xef\\x87\\x8e\\x9e\\x1b\\xc8\\x99\\x6a\\x77\\x26\\xcb\\xc4\\xe7\\x06\\x64\\xe3\\x62\\x1d\\xb4\\xd6\\x3d\\x6b\\xb4\\x24\\xff\\x79\\x1f\\x7a\\x0e\\xa7\\x4f\\x5d\\x4e\\x6c\\x28\\xfc\\xeb\\x3f\\xe0\\xa1\\xd7\\x1d\\x4e\\x41\\xfc\\x75\\x38\\xbf\\x5f\\x43\\xd1\\x71\\x8d\\xa9\\x93\\x87\\x42\\xda\\xd1\\xe3\\x8e\\x1e\\x8e\\x81\\xb8\\x7d\\x08\\xdf\\x16\\x6c\\x09\\xf1\\x56\\x5f\\x96\\x72\\xf4\\x19\\xa3\\x76\\x12\\x4e\\xe2\\xce\\xf5\\xe4\\x80\\x73\\x2f\\x73\\xdb\\x42\\x6c\\x2a\\xec\\x2a\\xca\\xf9\\xd4\\xd9\\xee\\x87\\x8d\\xbc\\x92\\xae\\x7a\\x19\\xa8\\x74\\xc4\\x6a\\x4b\\x7a\\xfd\\x54\\xcc\\x96\\x36\\xa0\\xf0\\xf8\\x10\\x9e\\xf5\\xdd\\x55\\x19\\xaa\\x38\\xe7\\x7a\\xb8\\xa5\\xb1\\xbe\\x11\\xc9\\xf7\\x79\\xdb\\xe0\\x8e\\x95\\x88\\xb7\\x21\\x55\\x07\\x81\\x57\\xb0\\x2a\\xc2\\x19\\x2f\\xc0\\xf3\\x0a\\xc5\\x4e\\x94\\x88\\xd8\\xfd\\x09\\x74\\xc1\\xe6\\x57\\x75\\x7c\\x85\\x3d\\x40\\x4c\\xe1\\xaf\\xbd\\x88\\xdf\\xda\\x21\\xf2\\x42\\x82\\x90\\x0a\\x0c\\x91\\x70\\x4b\\x19\\xaa\\x2a\\x8b\\x17\\x88\\xb4\\x98\\x62\\xa4\\x2f\\xba\\x62\\x6c\\x11\\x9c\\x7f\\xb7\\x42\\x88\\x55\\x80\\x5f\\x1b\\x90\\xfd\\x41\\x13\\xfd\\x03\\xc5\\x05\\x53\\x25\\x5c\\x97\\x1b\\xaa\\xcb\\x70\\xca\\xee\\x95\\xda\\xcc\\x80\\x8d\\x6a\\xad\\xb8\\x0a\\xc6\\xc6\\x80\\xb7\\x9a\\x5b\\x65\\x8d\\xc3\\x8a\\x9c\\x37\\x04\\x88\\x5d\\x12\\x48\\x2b\\x2d\\x05\\xd5\\x45\\x7e\\x23\\x7d\\x29\\x62\\xcf\\x31\\xb5\\x27\\x55\\x6e\\x52\\x47\\x12\\x32\\xbc\\x8a\\xc3\\x44\\xd1\\xb8\\xa7\\xb8\\x4d\\x10\\x1f\\x4a\\x92\\x09\\xb1\\xe4\\xca\\xc8\\x48\\xf4\\xd9\\x00\\x6e\\xc0\\x70\\x10\\x33\\xa4\\x9c\\xab\\xe1\\xfd\\x19\\x01\\x86\\x24\\x0a\\x4a\\xe4\\xbb\\xd2\\x39\\xe0\\x26\\x7a\\x4b\\xd4\\x02\\x4c\\x90\\x76\\x9a\\xaf\\x57\\x86\\x65\\xaf\\x0c\\xd4\\x4f\\x22\\x16\\x26\\xa6\\x9a\\x80\\xfb\\x84\\xd3\\x24\\xda\\x57\\x21\\x16\\x93\\xe7\\xd2\\xa7\\x78\\xde\\xdd\\x82\\x71\\x67\\x4d\\x54\\x10\\xac\\x9e\\x55\\x8e\\x13\\xfc\\x54\\x2a\\x7d\\x5a\\xbb\\xbe\\x06\\x73\\x7c\\x11\\x62\\x8e\\xbc\\x0d\\x35\\x04\\x43\\xe2\\x72\\x89\\xde\\xe7\\x33\\xda\\xde\\x17\\x07\\x03\\x14\\xd3\\xcc\\x48\\xed\\x4e\\x0e\\x06\\x30\\xa8\\xbe\\x70\\x28\\x0e\\x0e\\x07\\x21\\xef\\x54\\x18\\x0f\\x96\\x24\\x40\\x1f\\x64\\xb2\\xab\\x14\\x32\\x4a\\x32\\xf9\\x6b\\x84\\x83\\x84\\x6b\\xa6\\x4b\\x28\\x38\\xfe\\x23\\x9b\\x2a\\xf0\\x25\\xf2\\x68\\x24\\xe4\\xd6\\xe0\\xfc\\x03\\x07\\x71\\x1d\\x1c\\xc9\\x85\\xc5\\xa8\\x8f\\x9d\\xeb\\x63\\xb7\\x23\\x9a\\x37\\x00\\x7a\\x08\\xf3\\x4e\\x2e\\x44\\x39\\x79\\x00\\x8d\\x6c\\x08\\x19\\xd2\\x6f\\x8a\\x90\\xdf\\x78\\x79\\x45\\xb4\\x81\\x1f\\xfc\\x80\\x84\\x21\\x1c\\x37\\xc8\\xc0\\x71\\x02\\x21\\x1f\\x08\\x85\\x9d\\x44\\x38\\x88\\xb2\\x52\\x60\\x1c\\xed\\x0e\\x45\\x38\\x9e\\xb6\\x68\\x19\\x66\\x83\\x08\\xe1\\x79\\x18\\x0d\\x22\\x6f\\xce\\x20\\x01\\xdf\\x21\\xd4\\x83\\x93\\x25\\x06\\xb9\\xb8\\x6f\\x1e\\xed\\x82\\x02\\x4f\\x41\\x1f\\x88\\xab\\x49\\xe0\\x32\\xc8\\xb5\\xe4\\xdf\\xd8\\x6f\\x26\\xd5\\xc2\\xe5\\x95\\x62\\x80\\x8d\\xd9\\x30\\x89\\xd2\\x04\\x00\\x09\\x74\\x92\\xd9\\x64\\x74\\x75\\x7e\\xa8\\xee\\x21\\x42\\x8e\\x4b\\x60\\xc5\\x56\\x58\\x54\\x3f\\xc1\\x63\\x3b\\x6c\\xcf\\x16\\x8b\\xbb\\xd3\\x65\\xc9\\x63\\x03\\xbe\\x65\\xdf\\x0a\\x08\\x45\\xc8\\x34\\xbd\\xa4\\x6f\\x03\\x7e\\xde\\xb3\\x81\\x0d\\xf8\\xf8\\x1f\\x69\\xfb\\xc9\\x4f\\x40\\x4d\\x03\\x25\\x34\\x10\\xe6\\x52\\xa4\\x05\\x0a\\x8c\\x3f\\x22\\x97\\xc6\\x13\\x61\\xa5\\x99\\xfa\\x63\\x54\\xe6\\xc0\\x07\\xa0\\x14\\xb7\\xc8\\xa7\\xd6\\xb0\\xed\\x7b\\x61\\x23\\xf9\\x7c\\xf3\\x49\\x19\\x9a\\x7f\\x99\\xc3\\x20\\xf6\\x77\\x06\\x1a\\x1c\\xb0\\x17\\x4f\\x81\\x1f\\x03\\x67\\xd6\\x1a\\x31\\xf0\\xf9\\xfb\\x01\\x78\\x14\\xda\\x4e\\x2d\\x24\\xa4\\x30\\x61\\x20\\xcc\\x69\\x80\\xb0\\x17\\x48\\xb9\\x0c\\x8f\\xa2\\xc2\\xf5\\x9c\\x51\\xc4\\x84\\x6b\\x02\\x8d\\x07\\xb6\\x16\\x76\\x2e\\xb1\\x1e\\x79\\x9a\\x05\\x7d\\xb9\\xff\\x05\\x94\\x36\\xe9\\x1b\\x44\\xd7\\x63\\xab\\x3b\\xad\\xd1\\x33\\x95\\xb7\\x77\\xe1\\x6c\\xf5\\xef\\x0f\\xa4\\x57\\xa0\\xde\\x12\\xb2\\xeb\\x44\\x5c\\xfe\\xc0\\x23\\x23\\x25\\x1b\\xc8\\x8e\\x77\\x94\\x9f\\x53\\x4c\\x5f\\x4c\\x11\\x92\\x64\\x66\\x1f\\xe0\\xe5\\x40\\x60\\xcd\\x0a\\x15\\xb6\\x47\\xa7\\x07\\x60\\x47\\x46\\xd9\\x15\\xb6\\x4d\\x94\\x2b\\x97\\x2a\\x65\\x1e\\x1e\\x2a\\xd3\\xe9\\x2e\\xaf\\x8c\\x3a\\x93\\xfa\\x09\\x4d\\x3a\\xd0\\x95\\xa9\\x88\\xd0\\x4e\\x7c\\x15\\x27\\x85\\x0c\\x18\\x3c\\x1c\\x29\\xf6\\x8d\\x38\\x50\\xca\\x25\\x49\\xaa\\x56\\x03\\x64\\x57\\x2c\\xa3\\xd9\\x02\\xb1\\xfa\\x1a\\x05\\x0c\\x97\\xcb\\xcd\\xbb\\xde\\xfd\\x66\\xd6\\xda\\xbf\\x72\\xe8\\x18\\x9f\\x78\\xac\\xaa\\x07\\xf8\\x43\\x87\\x99\\xc3\\x80\\x78\\x34\\x3d\\xf5\\x04\\xe7\\x95\\x16\\x60\\xe2\\x15\\xb3\\xf9\\xea\\x31\\x9c\\x92\\x8f\\xb3\\xfb\\x40\\x0b\\xad\\x7d\\xd4\\x90\\x7b\\x16\\xb6\\x08\\x6b\\xba\\x00\\x4e\\xe8\\x2b\\x91\\x58\\xc4\\x0e\\x5b\\xb5\\x5e\\x1b\\x3d\\xdc\\x8c\\x37\\x12\\x1d\\xf0\\xc3\\x80\\xc7\\x80\\x70\\xb1\\xf1\\xe6\\xb1\\x13\\x84\\x12\\x47\\xcc\\xbb\\x79\\x52\\xc3\\x48\\xd9\\x08\\xad\\x64\\x2f\\x37\\xd1\\xec\\x74\\x8b\\x06\\x5c\\x5b\\x35\\x1e\\xc2\\x3c\\xfc\\x24\\xbd\\xb3\\x7f\\x2c\\x65\\x5a\\x01\\x91\\xa7\\x8e\\x86\\xb2\\xd5\\x52\\x10\\xbb\\xe9\\x86\\xdd\\x24\\x9c\\x9d\\x7e\\x75\\x4c\\x96\\x26\\xf8\\x5f\\xea\\x28\\x96\\xc3\\x5d\\x57\\x70\\xbd\\x39\\x1c\\x71\\x1f\\xec\\xf7\\x48\\x47\\x5b\\x2e\\x40\\xcf\\xd2\\xc1\\x88\\xdf\\xc5\\x5a\\x67\\x58\\x37\\x02\\xf8\\x36\\xc5\\xb2\\xcb\\x19\\x96\\x2b\\x6a\\xa1\\x39\\x0b\\x45\\x51\\xe5\\xfb\\x8a\\x80\\x11\\xb4\\xcf\\xcc\\xe2\\x50\\xca\\x3b\\xd3\\x0f\\xe1\\xd6\\x6e\\x2c\\x54\\x99\\xd1\\xf7\\x47\\x57\\x1f\\xe9\\x50\\xae\\x2c\\xa9\\xea\\x4d\\x30\\x4c\\x24\\x3f\\x50\\x92\\x16\\x08\\x02\\x19\\x97\\x04\\xc7\\xe4\\xcc\\x58\\x7d\\x16\\x8c\\x66\\xd2\\x24\\x8f\\xa6\\xc7\\xe9\\x88\\x08\\x93\\xbf\\x6a\\xb9\\xaf\\x2b\\xe1\\x6e\\xdb\\x1c\\x26\\x24\\x77\\x97\\x54\\x20\\xbd\\x97\\x55\\x31\\xd7\\xb1\\x4f\\x6b\\x89\\x58\\xa4\\xeb\\x13\\x48\\x9c\\x0f\\x6f\\x50\\x4e\\x6c\\x07\\x4c\\x38\\x87\\xe8\\x61\\x95\\x3a\\xe3\\x52\\x76\\x78\\x54\\x22\\xa6\\x46\\xe4\\x05\\x31\\x0b\\x26\\x3a\\xe3\\xf0\\xe8\\x73\\xf6\\x3a\\xc3\\x3a\\x71\\xf3\\xbf\\x04\\x96\\xe0\\xcf\\xaf\\x9c\\x46\\xda\\x62\\x3c\\xa2\\xf5\\xd2\\xac\\xfe\\xed\\x6b\\x65\\x57\\xf5\\x2e\\xba\\x70\\x2e\\x64\\x89\\x4e\\xe8\\x28\\x2f\\x55\\x38\\x25\\xac\\x8d\\x89\\x80\\x28\\x17\\xbe\\xca\\xd1\\xc1\\xc3\\xea\\x61\\x5b\\xb5\\xc7\\x7f\\xdb\\xda\\xe5\\xb3\\x81\\x2f\\xbd\\xb5\\xa3\\x21\\xb1\\x13\\x7b\\x45\\x90\\x26\\x37\\xf2\\x28\\x8b\\x98\\x21\\x04\\x28\\x69\\x94\\x0e\\x48\\x37\\xa0\\x17\\x1c\\xef\\x5d\\xe5\\x9a\\x16\\x29\\x13\\xed\\x5c\\x52\\x53\\x08\\x3d\\xc0\\xb0\\x71\\x85\\x5c\\xf2\\x18\\xc1\\xc2\\xf4\\x3a\\x0c\\x65\\xff\\xdc\\x36\\x7b\\x20\\x28\\x73\\x60\\x54\\x86\\x1d\\x03\\x02\\x03\\x10\\x44\\xc1\\x06\\x14\\x5f\\xe8\\xe5\\xe4\\x43\\x11\\x4b\\xea\\xb2\\x48\\x16\\xd0\\x84\\x4e\\xf8\\xe7\\xe1\\x6f\\x1a\\xde\\x3b\\x73\\x93\\x80\\x41\\x9a\\xc4\\x72\\xc9\\x89\\x4e\\xcc\\x62\\x49\\x0b\\x85\\x34\\xb9\\xe2\\x71\\xaa\\x6d\\x7f\\x58\\x32\\x43\\xe0\\xc5\\x80\\xf1\\x38\\xd7\\x50\\x19\\x4a\\xf0\\xbc\\xec\\x28\\x11\\x5d\\x38\\x86\\x5c\\x28\\x87\\xf8\\xd8\\x92\\x19\\xc5\\x10\\xac\\xdd\\x55\\x3a\\x92\\xe4\\x53\\xbe\\x98\\x02\\xa9\\xf3\\x2e\\x5e\\x21\\xec\\x25\\x91\\xda\\xbe\\x30\\x70\\xdd\\x27\\xe7\\xea\\x7e\\xa2\\x7e\\x7e\\x45\\xac\\xc6\\xa3\\xcd\\x77\\xfb\\xac\\xf8\\x1a\\x40\\x86\\x4f\\xf0\\x73\\x13\\x44\\x49\\x30\\x78\\xeb\\x7d\\x36\\xb0\\x40\\x73\\xaa\\x2b\\x56\\x81\\x09\\xc9\\xcd\\x56\\xae\\x5b\\x61\\xb8\\x11\\x12\\xc8\\x6c\\x3b\\xd3\\x10\\xb0\\xf9\\x47\\x98\\xb2\\x34\\x7a\\x8c\\xa5\\xcb\\x48\\x4b\\xd4\\x85\\x61\\xd8\\x27\\xd9\\xac\\x67\\x61\\x82\\x90\\xdc\\x99\\x12\\xb0\\x35\\x0e\\xf0\\x75\\x90\\x1d\\x58\\x04\\x1d\\x65\\x44\\x13\\xd8\\x75\\xc6\\xc8\\xcf\\x82\\xda\\xa3\\x5a\\xe0\\x61\\x41\\x14\\x84\\xa4\\xf5\\x66\\x4c\\xad\\x16\\x26\\x98\\x82\\x7e\\x06\\xc9\\x9b\\xc5\\x68\\xb3\\x30\\xc5\\x24\\x83\\xfd\\x9d\\x4e\\xcc\\x6a\\xdd\\x8f\\x63\\xdc\\x50\\x50\\x33\\xd4\\x73\\x95\\x99\\xef\\x70\\x51\\x81\\xe3\\x9b\\x8d\\x2a\\xf1\\x7e\\x62\\x46\\xbe\\x06\\xc2\\x6d\\xfe\\x64\\xee\\xcc\\x06\\xca\\x59\\x36\\xde\\xe9\\x33\\x53\\xcc\\x8e\\xc5\\x26\\x0f\\x2d\\x4a\\x2f\\xe8\\x0c\\xf9\\x59\\xec\\x1e\\x16\\x02\\x83\\x68\\x0c\\x65\\x8d\\xcb\\x91\\x7a\\x3e\\x8e\\xf5\\x1c\\x00\\x30\\x88\\x50\\x04\\x2c\\x1a\\x57\\x63\\x33\\xc1\\xcb\\x86\\x25\\xae\\xaf\\xe4\\x06\\x10\\xf7\\x77\\x83\\x8e\\xd1\\x9c\\x3b\\x74\\x76\\x51\\xb3\\x68\\xc0\\x90\\xc8\\x0c\\xc6\\x08\\x12\\x46\\x67\\xab\\xa1\\x22\\x5e\\x0d\\x93\\x1b\\x5c\\x9e\\xc1\\x09\\x38\\xb6\\xba\\x4d\\x00\\x2a\\x3b\\x65\\xdf\\x16\\x2e\\x84\\x70\\x65\\x8b\\x49\\x7f\\x9d\\x85\\x08\\x7b\\x18\\x81\\x85\\xec\\xa6\\x7b\\xac\\xe0\\xfc\\x79\\x13\\xda\\x2d\\x59\\x45\\xdd\\x6c\\x93\\x9b\\x8e\\xfb\\x7d\\x11\\xee\\x73\\x9a\\xbd\\x26\\xd5\\x69\\xaa\\x39\\x2b\\x0f\\x39\\x68\\x21\\x11\\x41\\xb9\\xff\\x8e\\xd6\\x01\\xc3\\x19\\xe1\\x8d\\xdd\\x8a\\xbc\\xea\\xaa\\x20\\x03\\x49\\x2a\\x92\\xfe\\xb9\\xd3\\x44\\xfc\\xfa\\x29\\xf2\\x40\\x05\\x33\\xba\\x0b\\x08\\xfb\\x37\\xe7\\xf9\\x88\\x90\\xc4\\x32\\x6b\\x33\\x3e\\x19\\x6e\\xee\\x51\\x08\\x46\\xdb\\xf0\\x2e\\xbe\\x74\\x67\\x4f\\x72\\x84\\x98\\x01\\xea\\xe1\\xa0\\x91\\x1f\\xd5\\x03\\x1f\\xe3\\xee\\x4d\\x08\\x92\\x11\\xa4\\x0a\\x48\\x32\\x37\\x52\\xc0\\x56\\x02\\x9b\\xc1\\xdc\\xc8\\x52\\xb3\\x20\\xdf\\xfe\\xb0\\xd4\\x3f\\x0e\\xe8\\xcf\\x4f\\x04\\x3b\\x65\\x25\\x42\\x40\\x1c\\x51\\x49\\xf4\\x98\\xfd\\x2c\\x68\\xf4\\x43\\xb5\\x04\\xc6\\x53\\xa5\\x11\\x36\\x8c\\xca\\xd2\\x0b\\xa7\\x18\\xcf\\x5c\\x0e\\x7e\\x40\\x80\\x7a\\x36\\xba\\xbc\\x18\\x70\\xb3\\x99\\x3a\\x38\\x7d\\x20\\xc8\\x55\\x8c\\x6e\\xbe\\xcf\\x03\\x92\\x0e\\x99\\x30\\xbe\\x62\\xe0\\x50\\x40\\x41\\x92\\x39\\x62\\x04\\x16\\x9d\\x0b\\xb8\\x1f\\x4d\\x05\\xaa\\x3c\\x57\\x17\\x77\\x20\\x19\\xac\\xee\\x4f\\x9b\\x46\\x63\\x63\\x0a\\x78\\xdd\\x65\\x5b\\x2d\\xb7\\x32\\xd4\\xa1\\x3d\\xfe\\xc6\\x99\\x39\\xa9\\x05\\xf3\\xaa\\x90\\xef\\x88\\x31\\xdc\\x42\\x51\\xbd\\x00\\xcf\\xd0\\xd6\\xdf\\x11\\x10\\xe9\\xe6\\x58\\x1e\\xc7\\x41\\xcc\\x84\\x50\\x8e\\xb4\\x7c\\x71\\x05\\x62\\x60\\x5e\\xcb\\x23\\x88\\x75\\x65\\x50\\x58\\x26\\x3a\\xa0\\xdc\\x0d\\x78\\xee\\x59\\xdb\\xef\\x8d\\x14\\x37\\x4a\\x55\\xd6\\xc4\\x53\\xf6\\x98\\x17\\x29\\x1c\\xa1\\xc3\\xf0\\x40\\x42\\x88\\x28\\xeb\\x63\\xd0\\x71\\x69\\x60\\x8f\\x64\\x05\\x81\\x70\\x48\\x42\\xb2\\x41\\x64\\x06\\x9b\\x72\\xa6\\x3b\\x11\\x45\\x3f\\x00\\x70\\x35\\x67\\x50\\xf8\\x91\\xc1\\x48\\x50\\x98\\x76\\xc2\\x00\\x59\\x3a\\xaa\\x39\\x7c\\x74\\xc8\\x47\\x9d\\x1a\\xcb\\xa6\\x4a\\x89\\xc8\\x59\\x26\\xbb\\xbd\\x4d\\xde\\x98\\x8a\\x33\\xbd\\xba\\x86\\x8d\\x39\\x3e\\x40\\xa9\\xee\\xe1\\x64\\xa8\\x2e\\x2a\\x8a\\x87\\x44\\x6d\\x00\\xf7\\x1e\\x5f\\x69\\x9a\\x0a\\xc7\\x09\\x2f\\xb1\\xe2\\x92\\xe9\\xa3\\x70\\x30\\xce\\x6a\\x2c\\x64\\x7a\\xf7\\x5e\\x39\\x66\\x50\\xfc\\x0a\\x25\\xec\\x05\\xf3\\x91\\xc3\\xa1\\x31\\xf7\\xe6\\xc3\\x06\\x52\\x91\\x8f\\x51\\x8e\\x94\\x7a\\x7a\\x5d\\x0a\\xe7\\x00\\xb2\\x78\\xa0\\x79\\xda\\x2a\\x30\\x0d\\x5e\\xef\\x75\\x93\\xd1\\x09\\x73\\x56\\x67\\x51\\x31\\xc0\\x14\\x92\\x22\\x7c\\xb8\\x71\\x32\\x9b\\x07\\x14\\x4b\\x90\\xc0\\xe1\\x43\\x03\\xd4\\x51\\x74\\x8c\\x59\\x38\\x23\\x14\\x45\\x1f\\x6b\\x27\\x48\\xc8\\x3b\\xed\\xe6\\xdc\\x01\\x11\\x13\\x6f\\x51\\x7a\\xa4\\x38\\x31\\xdc\\xe4\\x10\\xbc\\x91\\x34\\xbc\\xb2\\xe2\\x84\\xec\\xa9\\x74\\xbf\\xf6\\x9c\\x07\\x74\\x2c\\x75\\x0c\\x0e\\xf7\\xff\\xf8\\x4b\\xb1\\xcf\\x5b\\x30\\x82\\xb8\\x91\\x93\\xb0\\xd8\\x18\\x70\\x30\\x18\\x22\\x90\\x62\\x42\\xda\\x81\\x32\\x8b\\x8d\\xd7\\x23\\x82\\x88\\xdb\\xe0\\x49\\x18\\xd1\\x84\\xb1\\xe9\\x8c\\xe6\\x6f\\x48\\x5e\\x36\\x00\\x3d\\x25\\x36\\xbc\\x88\\xf8\\x4c\\x85\\x6c\\x74\\xc9\\x67\\x42\\x1e\\xe7\\x16\\x4d\\x32\\x36\\x1a\\x35\\xae\\x7b\\xc9\\x69\\x1b\\xcc\\x0a\\xde\\x7f\\x16\\x4c\\xf5\\x58\\x80\\x30\\xb4\\xdd\\x2e\\xc1\\xd3\\xd0\\x59\\x2f\\x48\\xe0\\xbb\\x07\\x0e\\x00\\x6f\\x68\\x40\\x95\\x34\\xcb\\x93\\x9b\\x1b\\x86\\xa0\\xe5\\xcd\\x92\\xe2\\xb5\\xf9\\xb7\\xf7\\xab\\x7c\\xec\\x08\\x34\\x2f\\x50\\xcc\\xb7\\xd0\\xa1\\x4e\\x6b\\x6d\\xde\\x8c\\xd4\\xba\\x0f\\x78\\x49\\xae\\x92\\x84\\xbd\\x65\\x8f\\xfa\\xdc\\x34\\xa0\\x7e\\x4c\\x4e\\x2f\\x99\\x82\\x38\\x30\\x06\\x9a\\xe0\\x3a\\x9c\\x29\\x5f\\x60\\xaf\\x02\\x0b\\x2e\\x3a\\xfc\\xc0\\x2a\\xb2\\xc6\\x2b\\xd5\\x52\\xd9\\xc0\\xd9\\x74\\x5e\\x91\\xb0\\xa8\\x0d\\x28\\xec\\x36\\x8a\\xe0\\x0a\\xca\\x3c\\x04\\xfe\\x85\\x82\\x96\\x77\\xf3\\xca\\xe1\\x84\\xae\\x03\\xa8\\x22\\xc5\\xcb\\x77\\x05\\x01\\x1b\\x9c\\x0d\\xf4\\x32\\x82\\x63\\x04\\x6a\\xbb\\xe8\\x44\\x88\\x82\\x88\\x8c\\x00\\xf2\\xd2\\x7a\\xd2\\x8b\\x49\\x52\\x93\\x8e\\x1a\\xff\\xfd\\xc8\\x06\\x07\\x20\\xa1\\x25\\x60\\xe6\\x56\\xd9\\xb5\\x40\\x93\\x62\\x6c\\x51\\x12\\x9c\\x78\\x94\\xc5\\x67\\xb5\\xa5\\x13\\x14\\x85\\x06\\x24\\xdb\\x10\\x16\\x13\\x4f\\x41\\x1b\\x44\\x93\\xd6\\xd1\\x9e\\x98\\x02\\x12\\x76\\x06\\x09\\x93\\x84\\xfe\\xdc\\x41\\x4d\\x5d\\x84\\x34\\x1d\\x1b\\x58\\x1f\\x4b\\x88\\xc5\\xb1\\x6d\\x94\\x10\\x31\\xdc\\x4c\\xb6\\xd0\\xc4\\x0a\\x6d\\x8a\\xec\\xaa\\x71\\x0a\\x64\\x49\\x15\\x49\\xb8\\x0e\\x51\\x25\\xcf\\xc0\\xb8\\x02\\xfc\\xce\\x0c\\x39\\x3a\\x1a\\x00\\xe4\\xa1\\x8e\\xb3\\xb6\\x1b\\x9a\\x28\\xa4\\x5f\\x1c\\x0c\\x56\\x7e\\x6f\\x8c\\x9a\\x48\\x29\\x42\\x8a\\xfa\\xef\\x2a\\xa1\\x62\\x82\\x3d\\x67\\x4c\\x64\\x67\\x5c\\x24\\xee\\x85\\xb8\\x27\\xde\\x21\\x26\\x5c\\x41\\xdd\\x22\\x6a\\x03\\x61\\x95\\x20\\xa1\\x55\\x56\\x2c\\x56\\x2a\\x41\\x2b\\xcf\\x09\\xe8\\xeb\\x71\\xad\\xad\\xbe\\x0b\\x08\\x20\\xbb\\x2e\\xb7\\xe1\\x8c\\x13\\xb3\\x20\\x44\\xb6\\x24\\xcc\\xb1\\x51\\x89\\x6b\\x92\\x54\\x5a\\x64\\x42\\x5e\\x08\\x87\\xf8\\x20\\x92\\x5a\\x15\\x0d\\xf0\\x30\\x3e\\x4f\\x66\\x16\\x12\\x0b\\x10\\x34\\x48\\x12\\xdc\\xa5\\x3d\\x11\\xa7\\x70\\x02\\x0b\\x1c\\x32\\xcf\\xac\\xaf\\x68\\x02\\x04\\x76\\xad\\x21\\xfe\\x5d\\xe6\\x85\\xc3\\x70\\x7e\\x58\\x1a\\xa5\\x38\\x5b\\x79\\x87\\x8b\\xf8\\x8f\\x1c\\x16\\xa6\\x1e\\xf2\\x48\\x50\\xab\\x15\\x0e\\x72\\x11\\x2d\\xd5\\x13\\x63\\x90\\x66\\x8a\\x8b\\xd3\\x9e\\xee\\x4e\\x22\\x17\\x2c\\xba\\xa9\\xdd\\xb8\\xa9\\xf1\\x51\\x98\\xa1\\xba\\x03\\xeb\\x5b\\x5f\\x4a\\x77\\x40\\xd1\\x0c\\xa8\\x8d\\x42\\xc7\\x2e\\xa4\\xaa\\x57\\x0b\\x22\\x55\\xee\\xd3\\xe7\\xd3\\xa0\\x7e\\x5d\\x00\\xe6\\xb3\\x01\\xa6\\x31\\x81\\x8e\\x0e\\xb7\\x82\\x19\\xeb\\x01\\xa9\\x3b\\xaf\\xc4\\xf4\\xc4\\x46\\x24\\xf6\\x3b\\x9b\\x17\\x5f\\xb2\\x90\\x27\\xd8\\x55\\xb4\\x4d\\xeb\\x77\\x0e\\x8e\\xd4\\xe4\\xc6\\x9f\\xb3\\x76\\x12\\xc5\\xe2\\x2d\\x98\\xf0\\x2f\\x51\\xb8\\x9e\\x47\\x7a\\x9f\\x35\\xaf\\x61\\x07\\xbe\\x85\\x76\\x1b\\x05\\xc0\\x26\\x95\\x89\\x11\\x0e\\x13\\xf4\\xb2\\x10\\x49\\xc7\\xc8\\x46\\x69\\x41\\x08\\x59\\x6a\\xb8\\xa6\\x81\\x28\\xdd\\x90\\x44\\xd4\\x2b\\xbf\\xa7\\xd4\\x22\\xe6\\xdc\\x61\\x92\\x45\\xcf\\x9a\\x4b\\x55\\x1c\\xe1\\x41\\xd6\\x20\\x35\\x20\\x12\\x64\\xe7\\xca\\x7f\\x0c\\x2f\\xc9\\x75\\xc6\\xa4\\x12\\xb7\\xf4\\xfa\\x90\\xa6\\xf0\\x3a\\x3a\\x10\\xad\\x60\\x64\\xe4\\x43\\x85\\x77\\x40\\x16\\x59\\xbe\\x40\\x2b\\x13\\xe2\\x4e\\x32\\xe8\\xfd\\xcb\\x6f\\x85\\x55\\x91\\xc9\\x80\\xd0\\x28\\x67\\xba\\x95\\xc4\\xde\\x97\\xe5\\x94\\xf1\\x28\\x4a\\xad\\x08\\x04\\xda\\xcd\\x41\\x2c\\x35\\x6d\\x14\\xaa\\x4a\\xee\\x84\\x76\\x30\\x0d\\xde\\xfc\\x3e\\x20\\xb5\\x81\\xb8\\x50\\x9d\\x1f\\x8d\\x4f\\x29\\xc8\\x82\\xa5\\x47\\x8c\\x0a\\xf2\\x67\\x36\\x8d\\xbe\\x4d\\x61\\x5c\\xdf\\xaf\\x09\\xd6\\x0c\\x74\\x10\\xd6\\xd8\\x07\\xc8\\x35\\x04\\x91\\x49\\x18\\x55\\x3c\\xa1\\xb5\\x61\\x0a\\xb6\\x07\\x84\\x4a\\xcd\\x16\\x2e\\x09\\xa0\\x44\\x7f\\x1c\\x06\\x42\\xec\\xd0\\x14\\xdb\\x3c\\x7d\\xc8\\x74\\xb4\\x5c\\xad\\x0d\\x15\\x48\\x29\\xff\\x4d\\xd0\\x5b\\xc1\\x1e\\x5f\\x68\\xe0\\xe9\\xd7\\xb0\\xd0\\x01\\x58\\xbf\\x9c\\x6d\\x4d\\xf6\\x9e\\x31\\x7c\\x3e\\x0d\\xcb\\x45\\xa1\\xcc\\x5a\\x62\\x04\\x42\\xee\\xa6\\x06\\x32\\xe9\\xc0\\x1e\\x95\\x5a\\x4f\\x97\\xcc\\xad\\x19\\x8b\\xbf\\xf6\\xe0\\x2e\\x3e\\x29\\x61\\x1c\\x37\\x0f\\x03\\x1c\\xc1\\x0a\\xce\\x01\\x5a\\xc4\\x2c\\x70\\x49\\x2a\\x13\\xc6\\x7a\\xb2\\x5d\\x37\\x33\\xd6\\x40\\x2f\\x91\\xf5\\x4c\\x37\\x48\\x94\\xde\\x0d\\xdc\\x3e\\x69\\x8f\\x4d\\xd7\\x4d\\xc0\\x2b\\xf0\\x00\\x3a\\x93\\x59\\x86\\xe6\\x08\\x64\\x51\\x2a\\xe7\\x9d\\x13\\x69\\x82\\x0b\\xce\\xf4\\x99\\x6c\\x05\\x1a\\xa1\\x73\\x87\\xf4\\xee\\x5d\\x07\\x65\\xd4\\x63\\xad\\x8d\\x79\\x2b\\xcf\\xfb\\x91\\xf3\\xba\\xfc\\xa9\\x1b\\x11\\x13\\x24\\x36\\x81\\x23\\xb2\\x68\\xb9\\x50\\xae\\x62\\x18\\x07\\x6c\\x28\\xc0\\x79\\xf9\\x87\\x5d\\x8d\\x8f\\x00\\x26\\xdc\\x83\\x10\\xac\\xb2\\x46\\x00\\x79\\x1e\\x8a\\x4c\\xf2\\x08\\xf9\\x2a\\xbd\\x81\\xbd\\x9e\\x44\\x1e\\x75\\x8d\\x15\\xd3\\xc4\\xaf\\x95\\x4b\\x47\\xf6\\xd5\\xd8\\x8e\\x1c\\x3f\\x5a\\x4d\\x6c\\xa6\\x6a\\xad\\xf5\\xd9\\x03\\x0b\\x80\\x70\\x38\\x80\\x6a\\xe5\\xd8\\xdc\\xce\\xd6\\xae\\x7e\\x20\\x21\\xc5\\x11\\xd6\\xde\\x5d\\x37\\xaf\\x83\\x70\\xba\\x1e\\x41\\x31\\x60\\x72\\xa1\\xca\\x84\\xc7\\xfa\\xc8\\xfa\\x67\\x5c\\x51\\x19\\xcb\\xef\\x5d\\xc3\\xa5\\xb4\\x39\\x1f\\x49\\x4b\\xe7\\x99\\x72\\x9a\\x42\\x96\\xf8\\xc4\\xe6\\xc0\\x7a\\xc8\\xd5\\x46\\xc2\\x3c\\x05\\x32\\x20\\xc6\\xb6\\x8c\\x39\\x77\\x9c\\x9c\\xa1\\xe3\\x1b\\x79\\x84\\x8c\\x20\\x92\\xb9\\x44\\xe4\\x21\\xab\\x37\\xd8\\xfc\\xe6\\xdf\\x43\\xca\\xe9\\x41\\xa5\\xc2\\x83\\x1d\\xd8\\x21\\xdc\\x6b\\x39\\x0c\\xaf\\xcd\\x61\\x08\\x7a\\xa7\\x38\\x14\\xdc\\xb8\\x0d\\x9f\\xd8\\xd4\\x02\\x9b\\x0c\\xda\\x5f\\x75\\xd5\\x7b\\x59\\x5c\\xe8\\xc9\\x4e\\xa7\\x41\\x80\\x9a\\x37\\x44\\x86\\x46\\xc1\\xc2\\x42\\x24\\xab\\x12\\x71\\xd3\\x15\\x3a\\xd6\\xa5\\x07\\x83\\xcd\\xae\\x61\\x19\\x92\\xf9\\xbb\\x80\\xfd\\x1f\\xd0\\xd5\\xb7\\x3e\\xde\\xac\\x19\\xdc\\x35\\x8e\\x80\\x07\\x9a\\x2b\\x46\\x5a\\xc8\\x92\\xe1\\xad\\xbd\\xcf\\xcb\\x53\\xc7\\x2d\\x50\\x91\\xb3\\x21\\xe0\\x2b\\x8e\\x7e\\x80\\x09\\x5d\\x70\\x42\\x4b\\xf8\\xf8\\xd2\\x15\\xe9\\xed\\x1d\\xa8\\xe6\\x00\\x24\\x61\\xeb\\x9c\\x8a\\x9b\\x25\\xdc\\xcd\\x17\\x31\\x9f\\x08\\x43\\x59\\xe9\\x00\\x93\\x24\\x5a\\x53\\x73\\x22\\x59\\x8f\\x00\\x9a\\x07\\x61\\xf5\\x34\\xd6\\x94\\x8e\\xd0\\x60\\x9f\\x41\\xba\\x3a\\xdf\\xe5\\x00\\xdc\\xf9\\xd2\\xd3\\xd6\\x61\\x80\\x3b\\x92\\x96\\xe7\\x8d\\x26\\x3d\\x3e\\x70\\xe0\\x94\\x2b\\x2e\\x27\\xc9\\x42\\x9e\\x2e\\x2a\\x6c\\x2b\\x06\\xc4\\xc2\\xe8\\x04\\x4c\\x3f\\xb7\\x8d\\xc8\\xda\\x36\\xdb\\x82\\xd3\\x1f\\x64\\x01\\x01\\xea\\x62\\x94\\xb9\\x2d\\xb1\\x10\\xa0\\xa3\\x06\\x05\\x72\\xcc\\x5d\\x17\\x94\\x2f\\xab\\x8b\\xbd\\x60\\xbd\\x7b\\xb7\\x1b\\x48\\x6d\\x95\\x2a\\xd3\\xbc\\x01\\x57\\x1b\\x65\\x4d\\x68\\x8a\\x8d\\xa1\\xa6\\x8a\\x12\\xe9\\x4b\\x16\\xc6\\xb0\\x0e\\xf8\\xc3\\xf1\\x07\\x40\\x10\\x68\\x90\\x83\\x43\\x40\\xba\\xb8\\x79\\x80\\x4e\\x4b\\x7d\\x96\\x54\\xb0\\x8d\\x2c\\x49\\x24\\x0c\\x9b\\xd1\\xd2\\x3b\\x85\\xfd\\x5f\\x59\\x5b\\x8a\\x63\\xb6\\xb4\\xb0\\xe9\\x77\\x0b\\xbe\\xb7\\xf4\\xaa\\x0e\\x3c\\x2f\\x52\\x17\\x9f\\x91\\x56\\x9d\\x22\\x7e\\x96\\x33\\x78\\x6c\\xb2\\x04\\x07\\x17\\x5e\\x05\\x04\\xc7\\x02\\x27\\xa7\\xa1\\x94\\xb1\\x70\\x7a\\x40\\xa9\\x04\\xe3\\x07\\x09\\x9d\\xe5\\x2d\\x61\\x96\\x08\\xe1\\xb5\\x82\\xbd\\x4c\\x1d\\x69\\x13\\xe2\\xb5\\xb5\\x8b\\x9e\\x2f\\xa4\\xbe\\x7c\\xc2\\x7c\\x6f\\xfa\\x87\\x08\\x1a\\x01\\x9d\\x3f\\x60\\xcc\\x8a\\x09\\x5d\\x65\\x45\\x6f\\x79\\xe5\\xe0\\x22\\x2d\\x5c\\xdc\\x4d\\x48\\xe2\\xa4\\xa3\\x0d\\xf8\\xb5\\x0f\\xdc\\x07\\xc6\\x56\\x6e\\xd0\\x27\\x49\\xa3\\x67\\x29\\xe8\\x06\\x86\\xab\\x0d\\xe3\\x2b\\xd9\\x81\\x85\\x9b\\x49\\x8c\\xb3\\x56\\x4a\\x77\\xf1\\x33\\x95\\xc2\\x23\\x43\\x20\\x51\\xfe\\x5b\\x04\\x84\\xb4\\xed\\x1c\\xcc\\x1b\\xd1\\x44\\x7a\\x3e\\xd6\\xc9\\x30\\xdc\\xc4\\xe4\\x49\\x80\\xc7\\x91\\x9a\\x29\\x65\\x87\\x34\\x09\\xde\\x55\\xe7\\xfd\\xa7\\x94\\x1f\\x66\\x7c\\x5d\\x42\\x12\\x49\\x91\\x4a\\x27\\xee\\x7a\\x24\\x92\\xe5\\xda\\x51\\x35\\xdc\\xcb\\x8f\\x1d\\x89\\x85\\xd4\\xb2\\x89\\x9d\\xaa\\x89\\xe5\\x0b\\x3b\\x4a\\xb8\\xdd\\xd0\\x20\\x9b\\xda\\x9f\\xfd\\x11\\x9a\\xce\\x35\\x63\\x62\\x4c\\x03\\x6c\\x93\\xc0\\xee\\x63\\xc8\\x96\\x56\\xa0\\x51\\xa0\\x90\\x20\\x23\\x6a\\x7c\\xcb\\xa5\\x70\\xe2\\x84\\x03\\xda\\x42\\xc2\\x85\\x2a\\x6f\\x1b\\xa7\\xf1\\xb5\\xd4\\x7f\\x49\\x80\\x30\\xda\\x13\\xf1\\x2e\\x64\\xf8\\x2f\\xa5\\x0b\\x55\\xf6\\xb8\\x59\\x52\\xca\\xe4\\x74\\xd4\\x10\\xb8\\x53\\x59\\x40\\x32\\x8b\\x1f\\x77\\x7c\\x71\\xe9\\xd3\\x42\\x62\\x55\\x65\\x0a\\x7a\\x4b\\x3b\\x32\\x1a\\xd2\\x53\\xbd\\xa0\\x79\\xaf\\x36\\x40\\x44\\x83\\x15\\x98\\x52\\xbd\\xb8\\x37\\x2f\\xcf\\x1f\\x55\\x3d\\x8b\\x92\\xe4\\xf3\\x61\\x2e\\x53\\xf6\\xa2\\x9e\\x4e\\x09\\xb7\\x77\\x40\\xea\\xe0\\x49\\x2e\\x44\\x54\\xa6\\x67\\x08\\x1b\\xfb\\xef\\x92\\x12\\x87\\x58\\xd2\\x66\\xcb\\xe8\\x70\\x62\\x8e\\x63\\x01\\xd2\\x20\\x53\\x16\\x92\\xd0\\x31\\xf2\\xd0\\xde\\xae\\xa5\\xd8\\x32\\x29\\x15\\x1c\\x16\\x93\\x1d\\x3c\\xca\\x31\\x73\\x10\\xdb\\x57\\xfa\\x1b\\xbc\\xb3\\xe9\\x12\\x27\\xf4\\x8a\\xea\\x90\\xa2\\xa6\\xb9\\x8b\\x46\\xd9\\x5b\\xd2\\x19\\xd9\\xb4\\x54\\x92\\x5e\\x91\\x64\\xea\\x7e\\x6f\\x8e\\x87\\x55\\x48\\xe8\\xfe\\x46\\xc9\\x57\\x21\\xc4\\xfb\\xbc\\xe6\\x3e\\x7c\\x79\\x7b\\x21\\xc9\\x69\\xe7\\xe1\\xec\\x64\\x2d\\x74\\x41\\x6a\\x42\\x8b\\x31\\x16\\xe3\\xaa\\x9c\\x6f\\x88\\xea\\x76\\x7c\\x69\\x08\\xb8\\x51\\x66\\x29\\xd2\\x9a\\xb9\\x7a\\xf8\\xa8\\x72\\xbf\\xf7\\x79\\xc4\\xda\\xe9\\xf8\\xae\\xe0\\x9f\\x5d\\xa9\\x20\\xda\\xb1\\xd0\\xc5\\x4f\\x02\\xd1\\xa4\\x9b\\xd8\\x87\\x68\\x90\\x02\\xc6\\x98\\x10\\x90\\x6f\\xf1\\x46\\xd1\\xed\\xa4\\x99\\x51\\x11\\xe1\\xb3\\xcf\\xed\\xe7\\x46\\x1c\\x6c\\xec\\xfc\\x10\\x9b\\x83\\xf9\\xa7\\xa3\\x57\\x90\\x6e\\x1c\\x95\\x29\\x64\\x2c\\x3d\\xb5\\x1e\\x98\\x8b\\x10\\xca\\x13\\x9d\\xa2\\xd3\\x05\\xae\\x22\\x02\\x04\\xd9\\x39\\x57\\x64\\x75\\x03\\xa1\\x33\\x63\\x91\\x50\\xa0\\x3e\\x0f\\x93\\x2d\\x63\\x72\\xe5\\x91\\xa9\\x29\\xad\\x22\\x02\\xd3\\x05\\xb4\\x50\\x8f\\x9e\\x62\\x8d\\x6c\\xc1\\x77\\x84\\x43\\x8b\\x0a\\x95\\xf8\\x22\\x48\\x7a\\xc5\\x1f\\x12\\x0d\\x48\\x37\\x50\\x96\\xba\\xdf\\xf1\\x61\\x9b\\x5a\\x44\\xc0\\xfe\\xec\\x13\\x54\\xd9\\x79\\x09\\xca\\x46\\x3f\\xd2\\x2f\\x71\\xe4\\xd8\\xbc\\xa6\\x5b\\x4a\\xde\\xcf\\xef\\x86\\x32\\x90\\x9b\\xba\\xca\\x98\\x4d\\x64\\x3d\\x97\\x46\\x3f\\x42\\xcc\\x23\\xbf\\x29\\x66\\xee\\x51\\xe1\\x74\\xf6\\xb0\\x32\\xde\\xe9\\xe9\\xa1\\xc1\\x65\\x0d\\xed\\x80\\x7a\\x66\\x37\\x99\\x77\\xef\\x54\\xa6\\xe2\\x07\\x89\\x29\\xc5\\xc3\\x70\\xde\\x94\\xec\\xc6\\x3a\\x64\\x0b\\x05\\x65\\x3a\\x35\\x7b\\xe1\\x57\\xf5\\x98\\x1d\\xd0\\x94\\x15\\x8f\\x69\\x73\\xdc\\x06\\x0d\\xd2\\xfe\\x0d\\xa1\\x4e\\xa7\\x8b\\x9d\\x67\\x0b\\xc1\\x22\\x8d\\x76\\xc3\\xd4\\x82\\xb9\\x4e\\x5a\\x71\\x70\\x76\\x6a\\x1f\\x10\\xcc\\x6d\\x34\\xe8\\xa0\\xe5\\xb2\\xd5\\x9c\\xde\\xdb\\xee\\xc6\\x77\\x72\\x92\\x37\\x86\\x35\\x59\\x6c\\x58\\x53\\xb3\\x32\\xdd\\xa9\\xf0\\x58\\x7e\\x0d\\x0e\\xa5\\xa8\\x87\\x52\\xd5\\x37\\xc3\\xb2\\xf2\\x39\\x7c\\xc4\\xd9\\x16\\x60\\x28\\x4e\\x4e\\xdc\\xca\\xe3\\x86\\xa5\\xb0\\x0c\\xf7\\x8e\\xb1\\x99\\xaa\\x1f\\x5e\\xf8\\xc4\\x77\\x46\\x33\\x8d\\x9e\\xe0\\x84\\x70\\xd5\\x8b\\x85\\x5c\\x2d\\x9f\\x6d\\x04\\x24\\xcd\\xd8\\x17\\x1b\\xf3\\x3b\\x41\\x9c\\xe4\\xc6\\x32\\x52\\x0a\\xf7\\xc9\\x05\\xb6\\xcd\\x24\\x31\\x7e\\x86\\x01\\x44\\x59\\xce\\xc1\\xb9\\xde\\x30\\xf0\\x13\\x03\\x9c\\x5e\\xd6\\x78\\x1c\\xb8\\x3f\\x3a\\x33\\xd8\\x39\\xdb\\x1c\\x15\\x84\\xcc\\x30\\x65\\x58\\x93\\xd1\\x0f\\xa6\\x3c\\xfd\\x0c\\x56\\xde\\x72\\x05\\xa7\\x19\\x30\\x96\\x4a\\x63\\x91\\xf2\\x3d\\xd6\\x65\\xb4\\x3c\\xbe\\x7c\\x2a\\x8c\\x40\\x72\\x38\\x28\\xba\\x17\\xa1\\x18\\xe3\\x9b\\x08\\xc6\\xfc\\x85\\x3b\\x69\\x32\\x10\\xa1\\x4d\\xe3\\x35\\xcf\\x0e\\xab\\x0e\\x24\\x71\\xd0\\x0c\\xc4\\xe5\\x19\\xb0\\x9b\\xbf\\x8f\\x88\\x8c\\xae\\xca\\xb3\\xc8\\xaa\\x7a\\x63\\x6d\\xae\\xda\\x46\\x5f\\x18\\xcb\\x67\\xf4\\x9e\\xce\\x29\\x94\\x19\\x52\\x1c\\xf1\\x09\\x51\\xc9\\xb0\\xa0\\x1c\\x28\\xf7\\x00\\x1c\\x5a\\x49\\x7f\\x7b\\x1d\\x76\\xc0\\x30\\xc9\\x3a\\x3b\\x13\\xd3\\xce\\x3b\\xf0\\x74\\x4a\\x67\\x3e\\x2d\\xa4\\x62\\x96\\xf2\\x96\\xb2\\xc4\\x7a\\x0a\\xad\\x6c\\x4f\\xa3\\x32\\xb5\\x37\\x31\\x9b\\x08\\x50\\x7f\\x08\\x9f\\x6f\\xea\\x93\\xaf\\xd7\\xac\\xe4\\xd5\\x2b\\xf7\\x72\\x73\\xf5\\x7d\\x26\\x68\\x12\\xdc\\xe7\\xb1\\x39\\x3a\\x27\\x70\\x7b\\x15\\x87\\x49\\x92\\x1b\\xb9\\xc1\\x7c\\x9b\\xa9\\xb3\\x08\\x4c\\xb6\\x66\\x14\\x06\\x95\\x5b\\x1f\\xbe\\x1f\\xb6\\x82\\xb1\\x54\\x53\\x53\\xa4\\xd0\\x33\\x4e\\x98\\x30\\xfa\\x3f\\xa2\\xc0\\x39\\xb8\\x5b\\xf4\\xad\\xae\\x4a\\x72\\x3b\\x56\\xb7\\x4a\\x08\\xfc\\x7e\\xbc\\xb8\\xd8\\x91\\x43\\xb0\\x52\\x24\\x39\\x6d\\xa8\\xd8\\x67\\xbb\\x88\\x21\\x80\\xc4\\x1a\\x34\\x14\\xa9\\x01\\xee\\x96\\x4d\\x5b\\x7b\\x01\\x61\\xe7\\xe1\\x3e\\xe2\\x7c\\x2b\\x19\\xf9\\xf3\\x61\\x0b\\x11\\x94\\x75\\xc3\\x11\\x54\\xb5\\x9e\\x46\\x37\\x51\\x11\\xdd\\x2b\\xe7\\xca\\x90\\x59\\x14\\xd3\\xbc\\x03\\x9c\\xfd\\x0b\\xd1\\x72\\x2a\\x31\\x0e\\x35\\xcb\\xed\\x13\\x53\\x20\\x84\\xf3\\x43\\x02\\x1b\\x12\\x83\\x04\\xb3\\x11\\x52\\xc9\\x2c\\xb8\\xff\\x81\\x14\\xcc\\xed\\x85\\x13\\x7e\\x46\\x83\\xdf\\xcb\\xbd\\x0d\\x15\\xaf\\xf8\\xb0\\x93\\x76\\x95\\x0b\\xbd\\x77\\xa0\\xa2\\xb5\\xff\\x16\\x06\\xc6\\x6b\\x0c\\xdc\\x0b\\x02\\xfc\\x9c\\xd0\\xc1\\x01\\xa8\\xb1\\x95\\xd5\\x96\\x03\\x03\\x3d\\xff\\x86\\x6f\\xf4\\x97\\xb1\\xa5\\x2c\\x01\\xf2\\x8b\\x13\\xe1\\xe6\\xb4\\xc2\\xe3\\x2c\\x0e\\x0f\\x6e\\xd1\\x98\\x86\\x9b\\xf9\\x18\\x29\\x69\\x44\\x49\\x54\\x29\\x0e\\x70\\x8b\\x0d\\x8b\\xbd\\x0b\\x31\\xcd\\x9a\\x0c\\x4d\\x8b\\x50\\xfc\\xfa\\xaa\\x53\\xf0\\x54\\xf0\\xb3\\x6d\\xd5\\xe6\\x49\\x45\\x91\\x25\\x4d\\xe9\\xdd\\xba\\xa1\\x9a\\x7b\\x74\\x14\\x54\\x14\\xde\\xd4\\x62\\x22\\xd3\\x1b\\xb9\\x4d\\x07\\x12\\x01\\xfc\\xb6\\xc8\\x61\\xa6\\xc0\\x35\\xc9\\xc1\\x85\\xe6\\xdd\\xf9\\x7d\\xff\\x8d\\x49\\xa8\\xb2\\x54\\xd1\\x00\\x06\\x0e\\x16\\x4a\\x11\\xf7\\xce\\x82\\x1b\\x04\\x82\\x68\\x4d\\x5b\\x07\\x8c\\xb6\\xf7\\x65\\xf3\\xb7\\x55\\xa8\\x5b\\x72\\xd0\\x8e\\x5f\\x77\\x36\\x22\\xc8\\x00\\x26\\xf4\\x98\\xab\\xb8\\x56\\xe9\\x17\\x82\\x74\\xd3\\x30\\xd9\\xdc\\x98\\x9a\\xf4\\xda\\x1c\\x62\\x04\\xc9\\x0c\\x66\\x96\\x6b\\x4c\\xe1\\x1a\\x4f\\xdb\\x81\\xbb\\x4c\\x2e\\xd2\\x7b\\xb2\\xab\\x58\\xb4\\x7e\\x11\\x1c\\xe8\\xcd\\xac\\xc4\\x1a\\xf5\\x8a\\xad\\x54\\x8a\\x2e\\xe6\\x4e\\x22\\x0f\\x1b\\x08\\x3b\\xe1\\x06\\x23\\x2e\\x58\\xac\\x79\\xc6\\xf8\\x9b\\xc3\\xda\\x50\\x7e\\x14\\x24\\xbe\\xf5\\x2d\\x3a\\x4d\\x07\\x64\\x2f\\xe8\\xf2\\xfb\\x06\\xc2\\x21\\x65\\xac\\xc1\\x5c\\xbd\\x94\\xae\\xfe\\x69\\x15\\x3d\\x08\\x52\\x6f\\x71\\x99\\xc7\\x6e\\xf7\\x08\\x7b\\x8a\\x83\\x03\\x4e\\x0e\\x77\\xfa\\x51\\xe3\\xc3\\xeb\\xc9\\x0e\\x45\\xd2\\xe5\\x08\\xc1\\x68\\x41\\x87\\xf4\\xb3\\x44\\x41\\xe2\\x25\\xd5\\x1f\\x48\\xb9\\xd9\\xa8\\xd0\\xf5\\x09\\xd9\\x14\\x73\\x5f\\x86\\x2c\\x19\\x38\\x55\\xdc\\x0c\\x98\\x03\\x89\\xf2\\xb8\\xd9\\x24\\x1b\\x81\\x15\\x25\\x16\\xdd\\xdf\\xee\\x7d\\x0d\\xee\\x6f\\xf6\\x29\\x35\\x92\\x11\\x68\\x1e\\xa7\\x0c\\xbf\\x5a\\xe3\\x03\\xee\\xc6\\x6b\\x26\\x24\\x41\\xb1\\xbb\\x39\\xa0\\x2f\\xc2\\x71\\x0c\\x00\\x27\\xde\\xef\\x85\\xb3\\xe9\\x3c\\xeb\\x79\\x73\\xb7\\x75\\x18\\xc9\\x32\\xab\\x82\\x31\\x63\\xc8\\x1b\\x86\\x42\\xc4\\x90\\x87\\x82\\x59\\x3b\\x61\\xe0\\xe3\\xc1\\x0c\\xcf\\x8e\\xe8\\x9b\\x64\\xab\\x71\\x90\\x15\\xb9\\x27\\x7e\\x28\\x84\\x43\\xb7\\x45\\x25\\x50\\x79\\x03\\xfb\\x4f\\x1e\\x3d\\x81\\x7c\\x0c\\xe0\\x5a\\x6b\\x0b\\xbf\\x3b\\x1f\\x3e\\xf6\\xd0\\x29\\x8d\\xf2\\xe3\\x07\\x1c\\x0d\\xec\\x1a\\x47\\xff\\x6a\\x3c\\xcd\\xe8\\xc9\\x31\\x2f\\xcc\\xfc\\xdf\\x8f\\x39\\x93\\x6e\\x16\\xf6\\x51\\x27\\x4f\\x78\\x40\\x11\\x6a\\x9f\\x43\\x48\\x52\\x9d\\x45\\xb9\\xe6\\x52\\x28\\x02\\x42\\x7d\\x52\\xad\\x6f\\x8d\\x97\\x43\\x1f\\x04\\x52\\x62\\x6f\\xbc\\xdf\\x17\\x99\\xd6\\x20\\xd0\\xa1\\x4c\\xe4\\x33\\x64\\x09\\xb0\\x45\\x35\\xdf\\x21\\x37\\xa0\\xa0\\xd8\\xca\\xa8\\x5a\\xc6\\x34\\x39\\xbd\\xaf\\xca\\xb3\\x4c\\x65\\x3c\\x41\\x90\\xf0\\x0b\\x4c\\x7a\\xc8\\x4e\\x4c\\x80\\x00\\x95\\x28\\xe0\\x31\\xea\\x63\\x15\\x44\\xe4\\xf4\\xa6\\xe5\\x32\\x2c\\x8b\\x00\\xfa\\x37\\x63\\x97\\x36\\x11\\x17\\xbc\\x15\\x34\\x18\\x1a\\x13\\xc9\\xb0\\xfe\\x41\\xcc\\x0a\\xf8\\x37\\x07\\x19\\x53\\x8b\\x51\\xa8\\x46\\x04\\x84\\x3e\\x0a\\xbc\\x7e\\xa4\\xa7\\xcc\\x43\\xc6\\x0e\\xe3\\x84\\x9d\\xbd\\x70\\x48\\xee\\x8f\\xe4\\x40\\xf4\\xe5\\x58\\x24\\xad\\xbc\\x73\\x18\\x1e\\x3f\\xb1\\x08\\x2d\\x7f\\xd6\\xab\\x0a\\x00\\xee\\xba\\xb7\\xbf\\x42\\xf0\\x84\\x15\\x0e\\x06\\xe5\\x0a\\x3a\\x3c\\xde\\x22\\x12\\x88\\x30\\x5e\\xe5\\xe4\\x87\\xe6\\xa2\\xf9\\x14\\x41\\x84\\x2a\\x0f\\x09\\xcc\\x1a\\x39\\x13\\xdd\\x18\\x2a\\x2e\\x9b\\xa2\\x48\\xc2\\x80\\xbc\\xa8\\xcf\\x53\\x57\\x64\\x1e\\x24\\xc3\\x12\\x1d\\x49\\x2c\\xe7\\x20\\x80\\xd0\\x12\\x41\\x97\\x1b\\xe3\\x02\\x47\\xe2\\x41\\x27\\x3c\\x42\\x28\\x3c\\xb4\\x47\\x1d\\x88\\x38\\x2f\\xf0\\x67\\x7d\\x1d\\x87\\xae\\x23\\xde\\x6b\\xd8\\xaa\\x3b\\xb8\\x20\\xb1\\x55\\x9d\\x75\\x71\\x41\\xe3\\xb3\\x6a\\x59\\x20\\xd9\\xa3\\x37\\xbe\\x1e\\x92\\x04\\x80\\xd4\\x2d\\xe1\\x7c\\x33\\x8b\\xa2\\xee\\x73\\x38\\xf8\\xb7\\x31\\xed\\xfb\\x1a\\xc4\\x13\\x86\\xd5\\x6e\\x79\\x93\\x17\\x34\\x78\\xa5\\x0b\\x3a\\xea\\x21\\x0f\\x7f\\x6e\\x52\\xbb\\x2a\\xaa\\x09\\x10\\xd3\\x10\\x40\\x78\\xf7\\x89\\xae\\x20\\xb4\\xd2\\x70\\xf9\\xa5\\x91\\x2f\\x49\\xba\\x51\\x90\\x00\\xd2\\x63\\x7d\\x7b\\x9b\\xb4\\x8f\\x39\\x26\\xa2\\x82\\xfa\\xe2\\xb7\\x8a\\x1d\\xd6\\x84\\x04\\x6a\\x55\\x75\\x7b\\x06\\x0c\\xc4\\x58\\x54\\x29\\x71\\x51\\xc1\\xb7\\xf7\\x48\\xf0\\xb2\\x38\\xf2\\xfd\\x73\\x7e\\xb1\\x56\\x0d\\x97\\x0d\\x93\\xa8\\xab\\xaf\\x6b\\xf7\\xcb\\x62\\x69\\x67\\xc7\\x98\\x27\\xbc\\xe7\\xf2\\x4e\\x59\\x94\\xb4\\xad\\x81\\xf6\\xba\\x63\\xea\\xc5\\xaf\\x4b\\x28\\xbf\\x65\\x4a\\x06\\x55\\x5d\\xd8\\x29\\x00\\x66\\x79\\x00\\xee\\x2e\\x67\\x04\\xa1\\x2a\\x90\\x26\\xa6\\xf8\\xc4\\x14\\x3c\\xc0\\xd8\\xdb\\x55\\x88\\x8a\\x76\\x37\\x8d\\xe2\\x0f\\x85\\xe3\\x05\\xa0\\x22\\x15\\x84\\x80\\xb0\\x10\\xf3\\x63\\x7b\\x3b\\xa4\\xec\\xb1\\x48\\x62\\xe0\\x40\\x5f\\xa5\\x82\\xe6\\x7c\\xd2\\x36\\x14\\xf2\\x15\\x88\\x3c\\xf6\\x78\\x76\\x8e\\xb9\\x6b\\x23\\x9a\\x59\\x8f\\x8d\\x4d\\x4b\\x6f\\xfc\\x77\\x8a\\x91\\x05\\xab\\x19\\x57\\xe1\\x4b\\xd9\\xd3\\xff\\x72\\xc8\\x3e\\x88\\x5c\\x91\\xe3\\xf3\\x69\\x9a\\xe9\\xfe\\x86\\x80\\x5d\\x00\\x5e\\x73\\x78\\x09\\xf4\\x72\\xcd\\x02\\xbf\\x4e\\xb0\\x83\\x13\\xc4\\x08\\x68\\xd5\\x6e\\x58\\x38\\x99\\xfa\\xe4\\xd9\\x78\\x05\\x88\\x26\\x93\\x44\\xf3\\xfc\\x00\\x46\\x44\\x93\\xce\\x8f\\x4b\\xcc\\xe1\\x48\\x4a\\x0b\\x14\\x04\\x13\\x55\\xa9\\xdc\\x32\\x0f\\x94\\x43\\x13\\xbc\\xc4\\x50\\xb1\\x19\\xcf\\x4c\\xb6\\x66\\x56\\xf9\\x10\\x43\\x93\\x89\\x6d\\x43\\xb6\\x27\\x37\\xb1\\x7e\\x21\\xdb\\x0a\\x3d\\x3a\\x31\\x14\\xc5\\xd2\\x6b\\x8a\\xaf\\x1c\\xb1\\x18\\x7e\\x08\\x3f\\x91\\x65\\x8f\\x6f\\x60\\x4b\\xe2\\xaa\\x25\\x18\\x34\\xf2\\x0c\\x89\\xb4\\xb5\\x76\\x46\\xc4\\x44\\x1a\\xa4\\x72\\xa8\\x7e\\xea\\x56\\xc5\\x4b\\xd8\\xdd\\xa2\\x73\\xb9\\x0d\\x8a\\xa0\\xda\\x40\\x56\\x54\\x21\\x9a\\xa3\\x81\\xaf\\xe1\\x51\\xca\\x56\\x92\\x6d\\xd7\\x2a\\xf4\\xb2\\x41\\x8b\\x77\\xc2\\xdc\\x5e\\x5f\\xa0\\xbb\\x5f\\x31\\x6f\\x6a\\x7f\\x4a\\x10\\x37\\x07\\xdc\\x22\\x28\\xdc\\xd6\\xee\\x1b\\x7e\\x83\\xfb\\xd4\\x3c\\x69\\x20\\x74\\x57\\x75\\xd4\\xf2\\x19\\x9a\\xa0\\xb0\\x36\\xf0\\x66\\xdb\\x52\\xe3\\x05\\xaa\\xe9\\x60\\x4e\\x6d\\x10\\xc2\\x32\\x68\\x6f\\xcb\\x5a\\xc5\\x70\\x26\\x6e\\x84\\x70\\x1e\\x11\\xf4\\xcd\\x57\\xb5\\x3d\\x25\\x5a\\x6d\\xf1\\xbc\\x54\\xec\\xd2\\x83\\xd8\\x6d\\x52\\x47\\x18\\x21\\x10\\xde\\x56\\x2c\\x12\\x7f\\x3a\\x6a\\x04\\xf9\\x8b\\xab\\xd7\\x8d\\xbc\\x35\\x89\\x80\\x86\\xa3\\x78\\x9c\\x5a\\x93\\x72\\xfe\\x00\\xff\\x0e\\xe8\\x71\\xb6\\x4f\\x6b\\x95\\xc7\\xf5\\x96\\x81\\xe8\\xb0\\x39\\x25\\xdd\\xee\\x4e\\x12\\xf9\\x61\\x6a\\x7a\\x37\\x05\\x81\\x9a\\xe2\\x58\\xbd\\x1f\\x41\\x47\\x1a\\xc5\\x59\\x70\\x40\\xb2\\x16\\x11\\x8c\\xb0\\x15\\x02\\xea\\x9e\\xb8\\xc5\\x89\\x5b\\x40\\x9f\\xda\\xba\\x78\\x64\\x06\\xc7\\x71\\x50\\x47\\x8e\\x46\\x4d\\x56\\xa7\\xc6\\x4e\\x8c\\xe1\\x23\\x8e\\x90\\x50\\xa6\\xb9\\x2a\\x2a\\x1a\\xb9\\xf1\\xc2\\x12\\x00\\x6e\\x6f\\x7b\\x9f\\xf4\\xe8\\x1d\\x16\\xa1\\xfd\\xde\\x20\\x1f\\x1b\\xfc\\x49\\x78\\xd8\\xcd\\x12\\xa6\\x1c\\xea\\x00\\x02\\xd8\\xe0\\x50\\x0d\\xf6\\xf9\\xee\\x74\\x46\\xa9\\xaf\\x87\\x94\\x70\\xac\\xe3\\xb9\\x15\\xfc\\x2d\\x54\\x0c\\xff\\x83\\xab\\xbd\\x40\\xab\\xb5\\xfc\\xaf\\x2e\\x1f\\x66\\x47\\xac\\xa8\\x16\\xf2\\x92\\xcd\\xc6\\x89\\xfd\\x3f\\x65\\x78\\xd4\\x20\\x13\\x48\\xf8\\xb1\\x63\\x61\\x8b\\x23\\x45\\xf8\\xa6\\xca\\xfc\\x9e\\xe2\\xc8\\x88\\x91\\x24\\x72\\xd1\\x38\\x78\\xb7\\x7e\\xc9\\x65\\xe4\\x80\\x0f\\xb2\\x86\\x01\\x44\\xb6\\x46\\x4e\\x4e\\x2a\\x72\\xe2\\x8e\\x71\\x02\\x39\\x09\\x99\\xc9\\x1a\\x79\\x1a\\xaa\\x91\\x0b\\x90\\xbc\\xc6\\x9b\\x27\\x0f\\x5c\\xec\\x37\\xac\\x36\\x2d\\xe0\\xc2\\x5f\\xc5\\x94\\xb8\\xf4\\x78\\x39\\x98\\x01\\x33\\x6d\\x6d\\x9d\\xe0\\x80\\x21\\xe1\\x42\\x10\\x08\\x60\\xa5\\xc7\\x30\\xf3\\x78\\x80\\xda\\xbf\\x50\\xbd\\x2f\\x02\\x90\\x0d\\xd0\\xaf\\x08\\xde\\xfe\\x8a\\x59\\x42\\xfe\\x3c\\x89\\x71\\xae\\xd1\\x06\\x2d\\x8f\\x14\\x01\\x36\\x74\\x80\\x9e\\x9e\\x04\\xbf\\x41\\xb4\\x55\\x42\\x37\\x14\\x01\\x17\\xcc\\xb3\\x33\\x3f\\x9c\\x5d\\x0b\\xb1\\x6c\\x1c\\xd2\\xc1\\xcb\\x1a\\x79\\x2a\\x96\\x80\\x56\\xe9\\xba\\x23\\x15\\xca\\x11\\x0b\\xe2\\x9c\\x68\\xa3\\x79\\xc5\\xa0\\xc1\\x54\\x25\\x68\\xdc\\xb8\\x62\\xc1\\x92\\x8d\\x03\\x91\\x1f\\x34\\xf1\\x74\\x3b\\x14\\xc3\\xa3\\xfb\\x24\\xe6\\xa2\\xb9\\x5c\\x00\\xdb\\x4a\\xd2\\xbe\\xd8\\x12\\xe0\\xbf\\x3e\\x5d\\x7a\\x52\\x44\\xfb\\xd8\\xe5\\x69\\x23\\x9c\\x03\\xcb\\x8e\\x20\\x22\\x33\\x1b\\x21\\x2b\\x98\\x9d\\xfe\\x23\\xe2\\xc1\\x0d\\xee\\xc4\\xd2\\x25\\xca\\xf0\\x24\\x32\\xe5\\x99\\x2c\\xcc\\x88\\xb5\\x04\\x0a\\x6c\\x3c\\xde\\x20\\xd0\\xb8\\x2c\\xc2\\x89\\x44\\xb6\\x28\\x82\\x4a\\x7b\\xfe\\x28\\x19\\x18\\x68\\x78\\x20\\xc9\\x13\\x1a\\x05\\xcc\\xa6\\x98\\xc9\\xcf\\x7c\\x02\\xa9\\xe8\\x3f\\xb8\\x07\\x59\\x61\\x88\\x2a\\xa3\\x7a\\x85\\x94\\x1d\\x78\\x1a\\xbf\\x60\\x8d\\xcc\\xca\\x34\\xcd\\x20\\x12\\x98\\x81\\x08\\x62\\x33\\x7e\\x3b\\x09\\x4e\\xfb\\x9e\\x24\\xdc\\x61\\xe3\\x1e\\xa2\\x02\\x79\\xa9\\x25\\x74\\xb5\\xd0\\x9b\\x05\\xfd\\x81\\x18\\x58\\x00\\x80\\x7b\\xba\\x5a\\xa8\\x4e\\xfe\\x9e\\x04\\x39\\xab\\x92\\x52\\xa7\\xfc\\xba\\x1f\\x7b\\x3e\\x54\\x45\\x92\\x04\\x33\\x48\\x92\\x53\\xf8\\x27\\x8a\\x7f\\x48\\xcd\\x53\\x65\\x61\\x20\\xe8\\x82\\xd6\\x02\\x62\\x88\\xdf\\x38\\x35\\xfc\\x0d\\x4b\\x59\\x08\\x9b\\x7c\\x9e\\x11\\x42\\xd5\\x96\\x79\\x51\\x38\\x1c\\x4d\\x5a\\x97\\x2f\\x59\\xdb\\xe4\\x89\\x2b\\x10\\xdd\\x33\\xb0\\xe4\\x48\\x89\\x2f\\xb8\\xac\\xb1\\x9f\\x79\\x30\\x19\\x7f\\x72\\x54\\xaf\\x91\\x79\\x4c\\x5c\\xb1\\x02\\xeb\\x89\\x47\\x2c\\xb2\\x7e\\x94\\xbe\\x8a\\xa3\\xb1\\xae\\x52\\x57\\x37\\xfe\\x65\\x6a\\x91\\xd2\\x70\\x37\\x39\\xe4\\xb4\\x8c\\x98\\x9e\\x9a\\x4f\\x9b\\x0e\\x30\\x03\\xf2\\xe5\\x11\\x9c\\xaf\\x45\\x84\\x68\\x8b\\x7a\\xdb\\xcc\\x8c\\xbb\\x95\\x29\\x35\\x3a\\xa7\\x67\\xb9\\x50\\x08\\x67\\x19\\x33\\xe5\\x9d\\x08\\xeb\\xee\\x41\\x2f\\x91\\xfc\\x06\\x2e\\xce\\xd0\\x90\\xa1\\xb3\\x00\\x85\\xa8\\x67\\x25\\xbd\\xa0\\x39\\xd9\\x43\\x0a\\x18\\xc3\\xee\\x2c\\x48\\x4a\\xa8\\x38\\x92\\xe4\\xdc\\xee\\x44\\x05\\xe4\\x66\\xfc\\x40\\xe0\\x5b\\xef\\x2a\\xdf\\x93\\x27\\x1b\\x09\\xe9\\x57\\x75\\xaa\\x1b\\x73\\x8c\\x99\\x7e\\x3e\\x6f\\xe6\\x4b\\x17\\x0a\\x73\\xaa\\x40\\x49\\xee\\x02\\x52\\xe3\\x65\\xe4\\xd7\\x3a\\xd3\\xfb\\xe7\\x7a\\x0a\\x82\\x86\\xd1\\x57\\xe8\\x2c\\x39\\x39\\xd8\\x52\\x52\\x64\\xbd\\x50\\x49\\xe6\\x3e\\x3f\\xd3\\x87\\x26\\x10\\xc2\\x11\\xf1\\xf9\\x77\\x09\\x02\\x50\\x49\\x3c\\x9c\\x9e\\x05\\xbf\\x1d\\xdc\\xeb\\x4b\\x33\\xc0\\x37\\xe2\\x21\\x1c\\x13\\x46\\xd1\\x30\\x7d\\xd1\\x00\\x31\\x90\\x25\\x75\\x30\\xe5\\x18\\x9b\\x93\\x23\\x98\\x48\\x83\\x0b\\x25\\x08\\x47\\xc2\\x42\\x05\\x67\\x1e\\x49\\x26\\x74\\x64\\x00\\x2a\\xd0\\xab\\xb6\\x2d\\x08\\xb1\\x2a\\x47\\x37\\xe9\\x44\\x25\\x0f\\xa9\\xc9\\x9e\\xe4\\x53\\x29\\x82\\x72\\x11\\x7f\\x71\\x3d\\x17\\x05\\x9f\\xf8\\xba\\xab\\x44\\x0a\\xa9\\x27\\xc7\\x27\\xf2\\x0a\\xd7\\xa0\\xa3\\x6d\\xc9\\x7f\\xb4\\xb4\\xc1\\xdb\\x87\\x58\\x11\\x2c\\x30\\x48\\x9d\\xe5\\xf0\\x06\\x9e\\x18\\x7d\\xd2\\xd9\\xc4\\x27\\xb4\\x17\\x14\\xb9\\x72\\x82\\x25\\x8f\\x30\\x93\\xe5\\xea\\x4e\\xac\\x1e\\xc2\\x95\\xe7\\x47\\xf8\\x20\\x8e\\xe8\\x42\\xfd\\x97\\x20\\xbe\\x12\\x02\\xa8\\x72\\xed\\xba\\x10\\x26\\xd6\\xf4\\xd8\\x60\\xe8\\x48\\x06\\x2a\\x41\\x29\\x25\\x9f\\x4e\\x8a\\x0d\\x85\\xa7\\xdc\\xf1\\xe7\\x02\\xbc\\x3a\\xb9\\x18\\x60\\xd8\\xb5\\xab\\x8a\\x79\\x5b\\x60\\xa8\\x5c\\xef\\x81\\x28\\x35\\x1f\\x01\\x74\\x8d\\x04\\x7d\\x9a\\x6a\\x17\\x36\\x46\\x3d\\xb1\\xc6\\x8c\\x8f\\x7d\\xf6\\xe5\\x5e\\x61\\x81\\x42\\xee\\x6a\\x3f\\xc5\\xaa\\xc1\\x5e\\x62\\x04\\x57\\xcb\\x81\\x99\\x93\\x4f\\x20\\xe8\\xcf\\x93\\xea\\x55\\x2e\\x2b\\x32\\x4c\\x77\\x3f\\x05\\xbb\\x61\\xbd\\x20\\xcf\\x5c\\x53\\xc7\\xd2\\x1e\\x2f\\xc7\\xa2\\xe8\\x91\\xe3\\x55\\xb4\\x40\\x96\\x36\\xea\\x02\\x88\\xcb\\x2e\\x67\\x1c\\x14\\xca\\x71\\x42\\x0a\\xa3\\xd8\\x14\\x90\\xb4\\xce\\xa4\\x1f\\xd9\\x16\\x2a\\x75\\x81\\x05\\x32\\x64\\xbf\\x5f\\xde\\xe6\\x53\\x18\\x59\\xe8\\xf8\\x30\\x5b\\xf1\\xa5\\x8e\\xf1\\x36\\x01\\x14\\x8c\\x08\\xcc\\x2c\\x93\\x4a\\xcb\\xc5\\x32\\x88\\x6c\\x7b\\xc4\\x6e\\x47\\x07\\x27\\x02\\x0c\\x20\\x37\\x43\\xb1\\x86\\xdb\\x7f\\x85\\xec\\x4f\\xc7\\xc0\\x33\\x9e\\xc6\\x59\\x7b\\x04\\x65\\xc4\\xbe\\x40\\x50\\x51\\x56\\x8d\\x55\\xc1\\x5a\\xcb\\xa1\\xe6\\x8c\\x7c\\x77\\xc5\\x64\\xe2\\x1f\\x48\\xa9\\xc8\\x22\\x41\\x5e\\x0b\\x4d\\x65\\xe0\\x72\\x40\\xc9\\x99\\x96\\x91\\x88\\xd4\\xc8\\x86\\x7c\\x14\\x9c\\x98\\x34\\x64\\x32\\x8b\\xc6\\x82\\xe9\\x92\\x76\\xc7\\x8c\\x50\\x2f\\x34\\x22\\x04\\xf2\\x9d\\x2f\\x20\\x98\\x61\\x05\\xbd\\x0c\\xca\\xc9\\x3c\\x61\\x00\\x8b\\xb4\\xb2\\x79\\xc7\\xa1\\x6c\\xf7\\x85\\x7c\\x83\\xea\\x67\\x8b\\x4e\\x51\\xe8\\x52\\xa3\\xe4\\x5c\\x88\\x85\\x78\\xd3\\xc7\\xfa\\x82\\xb7\\xad\\x27\\x63\\x1e\\xa5\\x11\\x19\\x59\\xa1\\x0d\\x7e\\x90\\x6b\\xac\\x4c\\x6d\\xed\\xa0\\x64\\x39\\x41\\xc2\\x1b\\x70\\x49\\x80\\x11\\x32\\x16\\x6e\\xe6\\x62\\x0f\\x52\\x6d\\x28\\x8b\\x5c\\x9c\\xa1\\xb8\\x7e\\xd8\\x84\\xda\\xb5\\x0a\\xa1\\xf2\\x80\\x57\\xc5\\x7a\\x6b\\x3b\\xe9\\xa0\\x11\\x28\\x03\\xe6\\x83\\x8c\\xe0\\x48\\x6e\\xb6\\xad\\x30\\xb7\\x04\\xbe\\x0e\\xa0\\x58\\x41\\x19\\xf0\\xb4\\x45\\x66\\x82\\x69\\xa4\\x41\\xa4\\x12\\x44\\x13\\x69\\x8b\\x44\\xdc\\xdd\\xf1\\x00\\x00\\x28\\xa3\\xee\\x3d\\x9e\\x4e\\x48\\x8d\\xc5\\x85\\xa6\\xa7\\x9e\\xae\\xf9\\x4f\\x6f\\x32\\x8d\\xbd\\x39\\xaf\\x0e\\x66\\x44\\x3b\\x0e\\x3e\\x61\\xc0\\x47\\x05\\x65\\x11\\x91\\x03\\xdc\\x5f\\x30\\x8b\\xf1\\xed\\x13\\x72\\x29\\x82\\xbb\\xee\\x1b\\x87\\x58\\x2d\\x0a\\xfd\\x02\\x19\\x94\\x32\\x39\\x10\\x9c\\x20\\xa9\\x6a\\x69\\x2a\\xad\\x67\\xb7\\xe3\\xf1\\x5c\\x82\\x7e\\x89\\x69\\x02\\x4f\\x99\\xcf\\xff\\x97\\x20\\x86\\xe5\\x8d\\x92\\x95\\x7d\\xc5\\xef\\xcc\\xb7\\xbd\\x2a\\xc1\\x27\\x98\\x5f\\xb5\\xcb\\xb9\\x6a\\xe4\\xe7\\x9f\\xdb\\xcf\\x54\\xa8\\x35\\x49\\xf6\\xec\\x57\\xe1\\x95\\x81\\x02\\x67\\x9d\\xce\\x05\\x7b\\x70\\x8b\\x88\\xb6\\xa0\\x96\\xf3\\xfe\\xe1\\x04\\x88\\xc2\\xa7\\x2a\\x25\\x28\\x8e\\x5d\\xf3\\x92\\x11\\x67\\x39\\xf2\\x42\\x2d\\x1d\\xa4\\x5d\\x10\\xbe\\x2b\\x3b\\x2c\\x52\\xfb\\x86\\x40\\x02\\x31\\x5e\\xf2\\x60\\x2b\\x56\\x3d\\x60\\x26\\xff\\x76\\x91\\x13\\x7f\\x81\\x37\\x6e\\xc8\\xcf\\xfa\\xbd\\x23\\x0e\\xe6\\x31\\x76\\x79\\x4e\\xf1\\x81\\xbc\\x90\\xcd\\xaa\\xf8\\x0c\\x6e\\x13\\xf6\\xe7\\x6b\\x8b\\x0c\\x5f\\x9a\\xab\\xf7\\x05\\x51\\xf4\\xe4\\x03\\x4f\\x44\\x68\\xd0\\x5a\\x76\\x37\\x0d\\x22\\xd7\\x77\\xb0\\xb7\\x52\\x50\\xfb\\x0e\\xb2\\xc2\\x1d\\xb2\\x40\\xd2\\x72\\x0e\\x9d\\x94\\xc6\\x94\\xe6\\x20\\x08\\xe0\\x20\\x0d\\x9b\\x05\\x49\\xd8\\x55\\xce\\x48\\x6d\\xa8\\x41\\x80\\x16\\xcb\\x01\\x55\\xd4\\xf0\\x5a\\x11\\xc3\\x86\\xa2\\x84\\x1b\\x81\\x34\\xf6\\xf3\\x7e\\x24\\xbb\\x58\\xab\\x70\\x35\\x56\\x7e\\xfd\\x0c\\x8a\\x8d\\x0c\\xe2\\xd7\\xa3\\x04\\xfc\\x80\\x90\\x95\\x94\\x47\\xa8\\xf6\\xf7\\x0a\\x63\\x08\\xdd\\x64\\xdd\\x65\\x53\\x15\\x60\\xd4\\x01\\xda\\x94\\x61\\x7e\\x76\\x5d\\x1f\\x3c\\x4b\\x9d\\x6b\\x02\\x9e\\xc8\\xd2\\x86\\x53\\x12\\x02\\x99\\x65\\x0b\\x54\\x95\\xcc\\x46\\x01\\x37\\x48\\xec\\xa4\\x50\\x5e\\x48\\xfb\\xf0\\x1c\\xc0\\x21\\x3f\\x6d\\x84\\xef\\x22\\x08\\x79\\x68\\xcf\\xb8\\x90\\x84\\x41\\x08\\x1f\\xcb\\x64\\x6b\\x91\\x60\\x09\\xab\\xc1\\x44\\x82\\x31\\xf0\\xa8\\xbb\\x1d\\xdd\\x2b\\x45\\x18\\x9e\\x9e\\x4d\\xbb\\x4a\\xe2\\xeb\\xb5\\x4b\\x15\\x61\\x45\\x8c\\xb4\\x9a\\x1a\\xc3\\x51\\xd7\\xb9\\x87\\x04\\x38\\x77\\xa0\\x58\\x1f\\x53\\xbd\\xbe\\xc6\\x78\\xf5\\x19\\x9c\\x2a\\x20\\xdd\\xf0\\xb7\\xb8\\xc4\\x47\\x22\\x3b\\x01\\x01\\x75\\x84\\xe4\\xba\\x53\\xbe\\xad\\x26\\xf6\\x64\\xa3\\xfd\\x70\\x4d\\x7f\\x9e\\x4d\\x71\\x71\\x09\\xc6\\xc7\\xe9\\x44\\x36\\xd8\\x6d\\x64\\xca\\x58\\xe9\\x48\\x1d\\x93\\x65\\x91\\x95\\x73\\x0a\\x25\\xd1\\xe9\\x57\\xa9\\x16\\x67\\x41\\xd2\\x75\\x44\\x47\\x4b\\x4a\\x87\\x28\\x0f\\x83\\xc1\\x8b\\x09\\xd0\\xe7\\xed\\x5b\\xa1\\xe5\\x87\\x68\\x64\\x3b\\xb1\\xc2\\x87\\x48\\xa0\\xd3\\xc0\\x60\\x0a\\x05\\xb0\\x78\\x3a\\x9f\\x80\\x00\\x75\\x27\\x07\\x00\\xfd\\x0a\\xe2\\x63\\x8e\\x01\\x69\\x86\\x7f\\x76\\x31\\xa5\\x92\\xa6\\xfa\\xa1\\x8b\\xf1\\xc6\\x61\\xe8\\x5d\\xf6\\x06\\x99\\xe1\\xe6\\x48\\xcf\\x4c\\xc4\\xf8\\x20\\xf0\\x79\\xcf\\xf4\\xe7\\x93\\x66\\x99\\x7c\\x1a\\x98\\x89\\x47\\xa5\\x94\\x16\\x6b\\x87\\x6f\\xc2\\x20\\x02\\x3a\\x1c\\x2f\\x1a\\xe0\\x22\\x77\\x69\\x6c\\x34\\xc1\\xec\\x2d\\xd6\\x11\\x55\\x8f\\xc6\\x97\\x44\\x86\\x39\\x43\\x34\\xc7\\xf9\\x98\\xe1\\xf7\\x09\\x85\\x54\\x36\\xf5\\x87\\x2c\\x68\\x20\\xcc\\xc2\\x03\\xaf\\x81\\x1f\\x07\\x9e\\xc3\\x0a\\xeb\\xc4\\xa1\\xd8\\x19\\x12\\x7c\\x20\\x71\\xe6\\x74\\x98\\xad\\x74\\xb0\\x9a\\xb3\\xb0\\xfa\\xa6\\xb0\\xd4\\x9f\\xc7\\xeb\\xc2\\x6b\\xc5\\xa5\\xd4\\x79\\xee\\xed\\x45\\x5e\\x08\\x29\\x99\\xa8\\x8c\\x1a\\xb4\\x3b\\x06\\xe8\\x1c\\x63\\x63\\x34\\xa7\\x80\\x72\\xb0\\x11\\x09\\x9d\\x9f\\x37\\x07\\xd2\\xef\\x22\\xb0\\xf4\\x52\\x30\\x07\\x21\\x86\\x6b\\x6d\\x55\\xcf\\x8a\\xf2\\x26\\x16\\x85\\x2c\\x3d\\x25\\x1b\\x22\\x7e\\xc5\\x9b\\x07\\xf9\\xd5\\x71\\xd3\\x52\\xb7\\xe2\\x8f\\x34\\x26\\xe6\\x1e\\xa9\\xbf\\x5d\\x22\\x0e\\x03\\x3d\\x32\\xfc\\x4a\\x04\\x9f\\xe9\\x8c\\x30\\xca\\x5a\\xa1\\x1a\\x2e\\x0a\\x1b\\xc1\\x20\\xb3\\x35\\x8a\\xd6\\x24\\x3c\\x5b\\x1a\\x3e\\xcb\\x01\\xe4\\x13\\x4a\\xc4\\xc2\\x9c\\x72\\xd6\\x6b\\xad\\x50\\x80\\x21\\xde\\x8d\\xc6\\x50\\x02\\x53\\x41\\x7e\\x51\\xa8\\x3d\\xad\\xfd\\x33\\xae\\x18\\x6d\\xfc\\x19\\x39\\xe9\\xd8\\x50\\x97\\x12\\x11\\xe5\\x03\\xa3\\x6e\\xe8\\xe0\\xed\\x46\\xa8\\xb2\\x12\\xee\\x64\\x70\\x1a\\x21\\x74\\xba\\xbb\\xd8\\x11\\x26\\x35\\x30\\xa6\\x02\\x60\\xb7\\x7e\\xb2\\xd0\\xb1\\x7a\\x6a\\x3f\\x36\\x27\\xdc\\xf1\\x87\\xdf\\x4c\\x17\\xf3\\x02\\x42\\x00\\xe0\\xcb\\x65\\x3c\\x05\\x45\\x60\\x01\\xdc\\x57\\x29\\xee\\x47\\x02\\xb5\\x3c\\x57\\x6e\\x92\\xef\\x49\\xc3\\x86\\x93\\x19\\x91\\x54\\x09\\xc2\\x89\\x10\\x28\\xfb\\x99\\xc2\\xb0\\xbc\\xb2\\xf5\\xbc\\xe1\\x5a\\xc7\\x38\\x91\\x61\\xe9\\xb0\\x90\\xf3\\x4a\\x27\\x6c\\x8c\\xd0\\x52\\x06\\x42\\xce\\x51\\xde\\x44\\xbb\\x1b\\x52\\x8c\\x2b\\x21\\x11\\xce\\x99\\x11\\x09\\x60\\x3c\\x8c\\x00\\x95\\x02\\xad\\x1f\\x14\\x04\\xe7\\xfe\\x22\\xb4\\xa1\\xf2\\xb9\\xf8\\x9e\\x9f\\xdf\\xa3\\x05\\x22\\x70\\xd4\\x4e\\xc9\\x0a\\x8f\\xe8\\x82\\xf0\\xc5\\xa3\\x11\\x69\\x15\\x50\\xda\\xd2\\x42\\xb1\\x63\\xa5\\x92\\x17\\xc5\\x24\\xef\\x14\\x20\\x9e\\x46\\x8a\\xab\\x39\\x58\\x16\\xcf\\xa6\\x42\\xbe\\x34\\xe1\\xed\\xd6\\x9e\\xb0\\x64\\x8c\\x2d\\x85\\x73\\xa3\\x61\\x8e\\x72\\x33\\x3c\\x57\\x6e\\x53\\x3c\\x28\\xb9\\xb4\\x22\\xe2\\xe7\\x0f\\x56\\xcf\\x08\\x49\\x1b\\x5c\\x41\\x59\\x07\\x0a\\x5b\\xdc\\xfb\\xa0\\xac\\xaa\\xc0\\x81\\x64\\x08\\x85\\x0b\\x73\\x94\\xea\\x6a\\x5c\\xa0\\x06\\x8c\\x3d\\xf1\\x90\\x41\\x0f\\xe9\\x4d\\xc1\\xc5\\xb0\\x24\\x06\\xcc\\x2f\\x42\\x64\\xdc\\xb8\\x4d\\x68\\x1a\\x91\\x35\\x20\\x29\\x13\\x91\\xd8\\x29\\xdc\\x18\\x4c\\xcb\\xb4\\x38\\x81\\x42\\xb6\\x01\\x03\\x9d\\x28\\xa9\\xdb\\x94\\x98\\xf8\\x1f\\x95\\x7d\\xf4\\x6d\\xbf\\xef\\xf3\\x68\\xdd\\x04\\x41\\x5a\\x56\\xce\\x69\\x47\\xa8\\x14\\xfd\\xf7\\x2f\\x93\\x9f\\xb5\\x1d\\x51\\xd0\\x47\\x16\\xde\\x06\\xd9\\xb4\\x8b\\x5c\\xa6\\xc6\\x40\\xc9\\x06\\x9c\\x1b\\x7c\\xd9\\x79\\xa3\\x52\\xe8\\x07\\xf5\\x7c\\x09\\xc2\\x15\\xc1\\x5d\\x8d\\xa2\\xc9\\xc9\\xa3\\xc1\\x16\\xdf\\x4e\\x22\\xa2\\x6e\\x92\\x2c\\x04\\xee\\xbc\\x1f\\xe6\\xf5\\xa6\\xf2\\x35\\xba\\xe6\\xa3\\xad\\xd2\\xf0\\xc2\\x24\\x4a\\x93\\xf4\\x60\\xda\\x86\\xb0\\xd2\\x71\\x7d\\x05\\x22\\x3d\\x72\\x56\\x69\\xe2\\xa3\\x25\\xcc\\x27\\x94\\xc7\\x01\\xb0\\x52\\x6a\\x23\\x70\\xad\\x88\\xaa\\x8f\\xb7\\x62\\x40\\xfb\\x43\\xa5\\x74\\x88\\x10\\xc4\\x3b\\x21\\xab\\x13\\xfb\\x49\\xde\\x5c\\x6e\\xb7\\x1c\\x65\\xf7\\x04\\xd6\\x0d\\xfa\\x64\\x4b\\x10\\x86\\x64\\xd8\\xe4\\xe2\\xdf\\x60\\x82\\x70\\x0a\\x37\\xba\\xc0\\x09\\x9f\\x35\\xca\\x7f\\x0d\\x16\\x18\\x4d\\xa0\\xbf\\xbb\\x1d\\x68\\x91\\x26\\xf3\\xe1\\x8f\\xca\\xf2\\xc0\\x02\\x4a\\x9c\\xde\\x55\\x05\\xfe\\xdd\\x3d\\x63\\xa5\\x02\\x23\\x21\\x47\\xce\\xa8\\xc0\\x12\\x59\\x74\\x40\\x2c\\x92\\x70\\xbf\\xe4\\x98\\x81\\x05\\x2e\\x6a\\xb9\\xef\\xf7\\xac\\x8e\\x2c\\xf6\\x9b\\x78\\x68\\x42\\xa7\\x74\\x60\\x73\\xd7\\x76\\x99\\x95\\xd2\\xea\\xf7\\xd2\\x72\\x50\\xa2\\x5a\\xd6\\x53\\xaf\\xf3\\x49\\x64\\xae\\x94\\x21\\xc8\\x98\\xce\\x3b\\x57\\xa7\\x4b\\xb9\\x08\\x1c\\x2f\\xee\\x13\\xf8\\xd9\\xbc\\x15\\x96\\x1f\\x9e\\x27\\xf9\\x8d\\x41\\x53\\x52\\xb0\\x5d\\x46\\xb4\\xd2\\xea\\x8e\\x78\\xa1\\x1b\\x7f\\x11\\x8b\\x50\\x99\\xd8\\x30\\x50\\x24\\xb2\\xb9\\x5d\\x6f\\x00\\x1d\\x55\\x80\\x8b\\x86\\x14\\x40\\x3b\\x6f\\x35\\x49\\x00\\x3c\\x63\\xe8\\x5a\\xad\\xef\\xce\\x5a\\xde\\x97\\xa6\\xd1\\xff\\x68\\x02\\x95\\x3d\\x00\\x33\\xf8\\xf1\\x6d\\xfb\\xcd\\x24\\xd4\\x1f\\x31\\xd1\\x78\\xdd\\x66\\x02\\xc9\\x22\\x1f\\xcd\\x04\\x80\\x1c\\x58\\xdc\\x38\\x1b\\x45\\x54\\x9d\\x16\\xc2\\xe4\\xdf\\xe1\\xe4\\xac\\x83\\xf0\\x92\\x0e\\xde\\x95\\x05\\xb2\\xdd\\x46\\x71\\x1f\\xd6\\x07\\xcc\\x72\\x55\\x50\\xb4\\x77\\xdb\\xbe\\x0d\\x63\\xda\\xaa\\x47\\xe7\\x01\\x90\\xba\\x8d\\xc6\\x9b\\x46\\xef\\x80\\x6e\\xa9\\x6c\\x10\\x51\\xe8\\x1a\\x0f\\xc8\\x58\\xe6\\xcf\\x7d\\x4b\\x95\\x73\\x20\\xf3\\xa2\\x37\\xdc\\xc5\\xf4\\x45\\xd2\\xc7\\x44\\xdd\\x14\\x73\\x72\\xa4\\xe5\\xcc\\x7c\\x68\\x58\\x52\\xe1\\x24\\x72\\xaa\\x1e\\xc8\\xc5\\x71\\x79\\x0f\\xea\\x0f\\x42\\xd0\\x2e\\x16\\x0a\\xb1\\x09\\x12\\xb2\\x4d\\x2a\\x8b\\x83\\x62\\x44\\x86\\x7d\\x03\\x29\\xb1\\x0e\\xa1\\x21\\xb2\\xc7\\x9a\\xbc\\x24\\xcd\\xb1\\x92\\xe9\\x84\\x1f\\xef\\x8d\\xf2\\x75\\xec\\x84\\x49\\xdb\\x89\\x90\\x1c\\xe0\\x19\\xb7\\xa4\\x26\\x20\\x49\\xce\\x30\\x55\\x67\\x73\\x05\\xdb\\x44\\x0d\\xe6\\xff\\xa6\\xbd\\x66\\x64\\xd3\\xe8\\xf5\\x08\\x55\\x87\\xab\\xe3\\xfe\\x40\\xe5\\x61\\x30\\xb1\\x37\\xb9\\x0b\\x0d\\xc1\\xef\\xb4\\x64\\xf8\\xe2\\x69\\xc6\\x89\\x36\\x8b\\x94\\x8a\\x1f\\xd7\\x32\\xa4\\xdc\\xf1\\x38\\x61\\x89\\xaa\\x7b\\xdb\\xc7\\x00\\xb4\\x8d\\x3d\\x18\\x93\\x25\\x38\\x44\\x8e\\xa2\\x2d\\xf1\\xdc\\xca\\x52\\xd0\\x4c\\x09\\xe7\\x55\\x1d\\x72\\x90\\x4b\\xc9\\x1e\\x30\\x9c\\xb3\\x48\\xf4\\x99\\x35\\x55\\xad\\x10\\xe5\\x48\\x56\\x4b\\x67\\x7c\\x2f\\xc9\\xa4\\xdc\\x47\\xea\\x15\\x6e\\x9f\\x0e\\x0f\\x3d\\xb4\\x97\\x0d\\x82\\x89\\xbc\\x77\\xd4\\x6b\\xf9\\x6b\\x6f\\x20\\x54\\x06\\xfd\\x17\\x81\\x0a\\x48\\xa1\\xd6\\x9e\\xe7\\xa6\\x91\\xa2\\x76\\x1f\\x9f\\x06\\x02\\xc3\\x7d\\x12\\xb7\\x12\\xb2\\xfe\\x4a\\xe1\\x99\\x48\\xeb\\x71\\x66\\xd4\\x51\\x01\\x74\\xd1\\x2e\\x03\\x35\\x29\\x90\\xcc\\xa6\\x80\\x13\\x88\\xe0\\x99\\x84\\x49\\x1a\\xf4\\x42\\xfe\\xb5\\xb7\\x91\\x4c\\x3d\\x0d\\x11\\x3b\\xba\\xcf\\x4d\\xae\\x0a\\xd7\\x34\\xa4\\x47\\x99\\x4f\\x1a\\xbc\\xaf\\x63\\x0e\\x17\\x57\\x77\\xf1\\xac\\xdc\\x59\\x47\\x9c\\x02\\x68\\x5d\\x72\\x22\\x59\\x48\\x9a\\x38\\x3b\\x48\\x56\\x62\\xc2\\x21\\x78\\x5c\\x5b\\x23\\x72\\x2a\\xcc\\xa5\\x5f\\x0f\\xd2\\x93\\xf1\\x31\\x34\\x5d\\xae\\x80\\xa5\\x54\\x86\\xdd\\x98\\x0a\\x6d\\x7b\\x67\\xaa\\xc5\\xc4\\x98\\x3a\\xf3\\x24\\xd8\\x3e\\x8d\\x8c\\x95\\xc4\\x1e\\xf2\\xe6\\x45\\x1c\\x3e\\xa0\\x45\\x19\\xa2\\xd3\\x5c\\x31\\x79\\x65\\x67\\xd3\\x81\\x2a\\x24\\x9f\\xa6\\xb4\\xda\\xd0\\xb2\\xc0\\x3b\\x44\\xad\\x06\\xb9\\x56\\xd8\\x59\\x49\\xac\\x1b\\x12\\xec\\xae\\xc4\\x07\\x08\\x25\\x25\\x90\\x1e\\xe1\\x5d\\x88\\x08\\xfa\\x0e\\x42\\x6e\\x41\\xd7\\xfe\\x1d\\x23\\x42\\x7e\\x84\\xda\\x07\\x57\\x0d\\x3d\\x9a\\x3f\\x4a\\xeb\\x7f\\x51\\x7a\\xbc\\x6d\\x30\\x0a\\x89\\xda\\x5b\\x03\\xd3\\x48\\x73\\x4a\\x83\\x6a\\x98\\xa9\\xba\\xd5\\xbf\\xa6\\x8c\\x93\\x78\\x8d\\xa3\\xff\\xb7\\x81\\x61\\x79\\x04\\x58\\x3e\\x52\\x48\\x38\\xc9\\xde\\xcb\\xac\\x2b\\x6c\\x56\\x86\\x7a\\x5b\\x6a\\x24\\xc1\\xa2\\x19\\x6b\\x89\\xab\\x8c\\x01\\xb0\\xfa\\x91\\xee\\x0a\\x66\\x0d\\x65\\x91\\xed\\x15\\x80\\xda\\x9f\\x6c\\x01\\x9b\\xb9\\x2c\\xf3\\x82\\xac\\x8f\\x06\\x46\\x50\\x12\\xd4\\x90\\xe9\\xd4\\x83\\x09\\xb4\\x38\\xcb\\xc0\\x5e\\x2e\\x3f\\x09\\xaa\\xf1\\xba\\xc5\\xe7\\x84\\x16\\x9b\\xe7\\x8b\\x2e\\xe7\\x46\\x92\\x80\\x5d\\x71\\x0f\\x30\\x2c\\xdf\\xce\\x8c\\xf3\\xd2\\x72\\xaf\\x18\\x2c\\x81\\xcc\\x8d\\x12\\x81\\x7d\\x70\\xfc\\xa1\\x2d\\x59\\xb2\\x8c\\xf5\\x17\\x2b\\x1d\\x7a\\x79\\xcb\\xaa\\x8c\\x67\\x85\\x3a\\xd0\\x7c\\xde\\xc7\\xf1\\x6f\\xd3\\x64\\xc1\\xe6\\xf7\\x94\\x5a\\x32\\xcc\\x55\\x11\\xa9\\xb8\\x0f\\x78\\x4f\\x94\\xe8\\x38\\xc3\\x41\\xc8\\xcc\\xbc\\x1a\\x26\\xcb\\xce\\x01\\xa9\\xa9\\xea\\xe4\\x91\\x4d\\x4d\\x22\\x2a\\xfa\\x85\\x62\\xa8\\xc7\\x6d\\xf3\\x3d\\x1a\\x4a\\x12\\x65\\x66\\xc3\\x1c\\xb0\\x36\\x62\\x33\\xab\\x41\\xc1\\xc3\\x18\\xb1\\x8e\\x52\\x33\\xcb\\xb5\\x2e\\xc5\\x0a\\xad\\x67\\x38\\x0a\\x55\\x84\\x7c\\x20\\x4e\\x15\\x10\\x18\\xec\\x18\\xb2\\xeb\\xf4\\x68\\xf8\\x33\\x87\\x8c\\x75\\xe4\\x5b\\x75\\xd2\\x33\\x5f\\x31\\xca\\x22\\x20\\xb5\\x65\\x9a\\x33\\xc3\\x82\\xe9\\x60\\x15\\x87\\x31\\xd7\\xa5\\x06\\x4b\\x01\\x80\\xd3\\x70\\x48\\x34\\x6a\\x84\\xaf\\x8e\\x1b\\x95\\x5c\\xa7\\x25\\x03\\x96\\x43\\x6a\\xf2\\xb6\\xd2\\xc6\\xd6\\x08\\xd1\\xb0\\xb2\\x57\\xb3\\xa4\\x96\\x1d\\xad\\xcc\\xba\\xc8\\x75\\x9e\\x6a\\x59\\xb6\\xab\\x33\\xda\\x18\\x15\\xbf\\x62\\x25\\xb9\\x52\\xe6\\x71\\x5d\\xd4\\x68\\x81\\x1f\\xbc\\x67\\x30\\xc8\\x26\\x2a\\xa0\\xe5\\x92\\x38\\x20\\x9a\\xa2\\x8b\\x41\\x9b\\xcc\\xf9\\x03\\xea\\xbd\\xf5\\xd9\\x61\\x59\\x8c\\xcb\\x2c\\x67\\x0c\\xd5\\xa5\\xbf\\xcb\\x66\\x6e\\x59\\xb8\\x52\\xa1\\x51\\xaa\\xdf\\x91\\xf1\\xd3\\x57\\x20\\x62\\xa9\\x20\\x22\\x73\\xde\\x20\\x85\\x13\\x13\\x3c\\x47\\x5e\\x00\\x2c\\x86\\xd9\\x44\\x9c\\x4b\\x04\\xd2\\x21\\x48\\xbc\\x40\\x19\\xfe\\x5c\\xa0\\x43\\xb4\\x8f\\xec\\xa5\\x0a\\x17\\x89\\x08\\x5a\\xa2\\xbb\\x3d\\x18\\xd0\\x5a\\x13\\x0c\\x60\\xfb\\xd9\\x7d\\xba\\xb4\\x36\\xc4\\xc0\\x38\\x22\\xfa\\xc2\\x5d\\x64\\x9c\\x8d\\xc7\\xda\\x3c\\x3e\\x31\\x30\\x76\\x66\\xf9\\xe5\\x8d\\x08\\xa8\\x8e\\x72\\x82\\xf6\\x12\\x3a\\x0b\\xee\\x2c\\x65\\xb0\\x08\\xad\\xa5\\xd4\\x6f\\x91\\x1b\\x00\\x37\\x94\\xd9\\x17\\x37\\x4b\\x55\\xaf\\x61\\x4a\\x97\\x82\\xdc\\x8c\\x8a\\x03\\xfd\\xa7\\x4e\\xc9\\xa0\\xb4\\x02\\xb8\\xda\\x4d\\x73\\xec\\xb4\\xda\\x6a\\x89\\xdb\\x0a\\xaf\\x0c\\xa4\\x6d\\xef\\x11\\xdb\\x00\\x05\\x40\\xfa\\xbf\\x87\\x15\\xc1\\x0b\\x19\\x25\\x4c\\x3c\\x2c\\x35\\xd8\\xf8\\x81\\x33\\xf1\\x37\\xa9\\x27\\x86\\x2f\\x5a\\xe6\\x64\\x87\\x0b\\xf4\\x22\\x39\\x66\\xb2\\xd0\\x52\\x99\\x67\\x45\\x68\\x92\\xf2\\x7a\\x96\\x9f\\xde\\x8c\\xff\\x4f\\x77\\x9f\\xd1\\x99\\x03\\x26\\xe8\\x82\\x1b\\xf0\\x24\\x6b\\xf0\\x05\\x39\\xfa\\x01\\x4a\\x11\\x61\\x02\\x80\\x52\\x74\\xa6\\x2f\\xe1\\xad\\x01\\x10\\x26\\x94\\x18\\xea\\xc4\\x2c\\x09\\x90\\xb4\\xf6\\xef\\x38\\x21\\x25\\x0d\\x39\\x29\\xf0\\x8c\\x8f\\x0b\\x59\\x35\\x10\\xa1\\x77\\xdb\\xa4\\x44\\x91\\x5c\\x37\\x48\\xe2\\xec\\x09\\x82\\x59\\x43\\x01\\x4b\\x22\\x0e\\xc2\\x93\\xda\\xc0\\x1f\\xf6\\x21\\x7d\\xce\\x3b\\x1a\\xf0\\x33\\xe4\\x21\\x60\\x4d\\xbb\\x2c\\x49\\x86\\xb1\\x27\\x09\\x14\\x21\\xf2\\x6e\\xf7\\x49\\x7d\\x87\\x90\\x0e\\x01\\xdd\\x42\\xcb\\x39\\x88\\x55\\xb1\\xd0\\x65\\x67\\x29\\xf3\\xb7\\xdd\\x4d\\x94\\xed\\x64\\x6e\\x91\\x55\\x85\\x1e\\x90\\x03\\xa8\\x32\\xcb\\x53\\x4e\\x0e\\xd6\\xab\\x15\\x26\\x32\\xcd\\xf0\\xbf\\x79\\x4b\\x54\\x89\\xda\\xb1\\x89\\xed\\x29\\xc6\\xca\\x58\\xb5\\x5b\\x2b\\xd7\\x3f\\xf3\\x81\\x7e\\xed\\x45\\xc0\\x38\\x91\\x9d\\xbc\\x61\\x7a\\x24\\x38\\x6e\\xa8\\x10\\x5b\\x5b\\xa0\\xb6\\x15\\x16\\x00\\xe5\\xa6\\x30\\x44\\xc1\\x70\\xce\\x2f\\x18\\x6a\\xbc\\x03\\xc5\\xed\\xd9\\xf3\\x07\\xff\\x99\\x07\\xb5\\x23\\x79\\xe4\\x9a\\x7b\\xf6\\x9d\\xc5\\x88\\x74\\x59\\x0a\\xe0\\xf0\\x1f\\x71\\x14\\x34\\x55\\x3b\\x96\\x6a\\x27\\x3b\\x5a\\x42\\xe2\\xf4\\x71\\xd1\\x6c\\xb6\\xe3\\xe7\\x0d\\xe7\\x10\\x52\\x4b\\xb8\\x8e\\xf8\\xb3\\x57\\x16\\x9f\\x72\\xf9\\x5e\\x7c\\x8b\\x2e\\x27\\x21\\xbc\\xc2\\x55\\xbf\\x9e\\x02\\xad\\x9c\\xe1\\x92\\x3f\\x66\\x40\\x5e\\x79\\x0c\\x38\\x65\\x46\\xe5\\x80\\x8a\\xd1\\x4e\\x28\\xd1\\x6c\\x24\\x3d\\x54\\x27\\x1c\\x5a\\x28\\x04\\x4c\\x16\\x82\\x16\\xcd\\x83\\x09\\x14\\x62\\x89\\xd0\\xc0\\x55\\x5d\\x95\\x06\\xb8\\x7e\\xed\\xb9\\x18\\x41\\x12\\xf6\\x3c\\xde\\x4d\\x8d\\x26\\x84\\xfe\\x97\\x95\\xae\\x49\\x8d\\x11\\x4a\\xfa\\x52\\x0d\\x81\\x55\\xdd\\xae\\x4d\\xc9\\x81\\x14\\x2c\\xe8\\xd1\\xe4\\x44\\xd8\\xcd\\x47\\x3f\\x20\\xe5\\x64\\x88\\xb0\\x58\\x83\\x1d\\xe1\\xc7\\x16\\xe6\\xe4\\x4c\\xc7\\x2c\\x21\\xe3\\x4b\\xfd\\x48\\x1b\\x29\\x9f\\x2b\\x46\\x44\\x48\\x74\\xcd\\xde\\x8c\\xcc\\x3c\\xa7\\x27\\x14\\x31\\xcc\\x64\\x24\\x27\\x14\\x5b\\x89\\xf1\\x81\\xfc\\x39\\x8c\\x77\\xa3\\x0d\\xdd\\x87\\xb0\\x0d\\x63\\x0e\\x85\\x2d\\xda\\x25\\xa4\\x78\\x08\\x67\\x18\\x6b\\x49\\x80\\x61\\x02\\x50\\x39\\x14\\x01\\x33\\x75\\xd1\\x5e\\x2e\\x8a\\x76\\xee\\xa1\\xe7\\x63\\x9a\\x9e\\x4a\\x6f\\xdc\\x70\\xbc\\x6e\\x4b\\x0a\\x85\\xb0\\x51\\xcd\\x53\\x1b\\x6f\\x0c\\x2a\\xce\\x4c\\x39\\x9d\\xbc\\xa4\\xbd\\xc3\\x88\\x70\\x3c\\xdd\\x79\\x8e\\x4b\\x85\\xc3\\xe9\\x0f\\xd7\\xfe\\x6a\\x73\\xe8\\xa4\\xa4\\x6d\\x91\\x93\\x8b\\xdc\\x72\\x1c\\xda\\x5f\\x01\\x40\\xed\\x5a\\xb8\\x7d\\xcc\\x8b\\xee\\xc4\\x77\\xe7\\xeb\\xfc\\x23\\x81\\xcd\\x70\\x91\\x88\\xe1\\xbc\\x5d\\x71\\x7b\\xa0\\x73\\xf5\\x38\\x81\\xdd\\xe3\\xd3\\x0f\\xf3\\x5b\\x77\\x8b\\xc6\\x75\\xb6\\x56\\xf8\\xac\\x91\\xad\\xc8\\x8a\\x09\\xe3\\x5a\\x3c\\xda\\x4c\\xa8\\xa7\\x99\\x9a\\xe0\\x1e\\x39\\x8d\\x14\\x0c\\x3a\\xe5\\x5d\\x10\\x4e\\xae\\x3c\\x12\\x31\\x8c\\x70\\x81\\x6a\\x86\\x69\\x50\\xfc\\x63\\x58\\x5e\\x16\\x63\\x18\\x95\\xa8\\x83\\xc2\\x22\\x98\\xc2\\x58\\x1e\\x6a\\x4a\\x1d\\x84\\x86\\xe0\\x8e\\x30\\x91\\xab\\xd4\\x94\\x38\\xb3\\x1f\\xf9\\x0f\\x76\\xa3\\x9c\\xa5\\xa0\\xd4\\x4e\\x95\\x64\\xa4\\x33\\x51\\xe2\\x70\\x80\\x2b\\x95\\xca\\x49\\xc0\\xa0\\xf8\\x30\\x6d\\x3b\\xa3\\x71\\x28\\x8f\\x60\\xba\\x72\\xd6\\x20\\x1c\\x6a\\x47\\x7d\\x73\\xea\\xc1\\xd2\\xe1\\x81\\x42\\x29\\x1a\\x03\\xb9\\x8b\\x8f\\x8b\\x5b\\x1a\\x5f\\xc2\\xb3\\x39\\xb5\\xf3\\x51\\x6e\\xe9\\x35\\xb9\\x83\\x02\\x8c\\x59\\x64\\x08\\x04\\xc2\\x18\\xc8\\x7e\\x0c\\x08\\xe8\\x99\\xc0\\xe2\\xa8\\x8e\\x1c\\xa4\\xe6\\x62\\x2a\\x69\\x11\\xcf\\x2f\\x61\\x74\\x14\\x9b\\x18\\x18\\x12\\x16\\x56\\x33\\x1f\\xb8\\x64\\x3f\\x04\\x05\\x35\\x60\\x98\\xc5\\x36\\xec\\x77\\xf2\\x29\\x49\\x2a\\x2f\\x76\\x8a\\x15\\x4b\\xbd\\xde\\xb0\\xe8\\x8d\\x08\\x13\\xac\\x47\\x66\\x44\\xa0\\x68\\x88\\xe3\\xe0\\x51\\xf4\\xf5\\x07\\xb3\\x48\\x00\\x96\\xb4\\x94\\x4a\\xee\\x20\\x00\\xd6\\xb5\\x9d\\xc1\\x04\\xde\\x55\\x5c\\x46\\x0c\\x59\\x99\\x0f\\x59\\xd5\\xa1\\x82\\xe2\\xd8\\x9a\\x5d\\x89\\xda\\x31\\xa7\\xe1\\x0c\\x22\\xb6\\x62\\xc1\\xc0\\x1a\\x61\\x85\\x9a\\x54\\x0e\\x57\\xdd\\x87\\x41\\x69\\x6b\\x0a\\x08\\x95\\x60\\xe7\\x6e\\x93\\x78\\xa7\\x4e\\x44\\xdf\\x4c\\x86\\x55\\xe7\\x70\\x79\\x43\\x66\\x92\\xc8\\xa4\\xb5\\xec\\x6e\\xb6\\xbc\\x17\\x6a\\x9d\\x58\\x44\\x03\\xcd\\x16\\x46\\x80\\xd4\\x04\\x2a\\xdb\\x4b\\x5c\\x5e\\xad\\xf9\\x36\\xee\\x9c\\x3e\\xc1\\xd4\\x57\\x2c\\xbe\\x59\\x46\\x48\\xd7\\x91\\xb2\\xf4\\xce\\x76\\x0e\\x68\\x24\\x8e\\x88\\xc3\\x40\\x16\\xe3\\x10\\x94\\xe0\\x51\\x68\\x0b\\x16\\x9e\\x90\\x7e\\x8c\\xdc\\x00\\x84\\x26\\xe4\\xe2\\xae\\x57\\xdf\\x98\\xba\\xa7\\x31\\xd2\\x99\\x4e\\x42\\x90\\x62\\x2f\\xaf\\x60\\x8a\\xca\\x48\\xe1\\x59\\xe5\\xa3\\x96\\xbc\\x8d\\xcf\\xd1\\xfb\\x62\\xd5\\xe0\\x32\\x94\\x5b\\xb9\\x40\\x36\\x7e\\x58\\x54\\xc8\\x66\\x48\\x00\\x33\\xbe\\x09\\x2a\\x83\\xb3\\x07\\xc2\\xec\\xbc\\xc7\\x2a\\x30\\x81\\x06\\xe0\\x5e\\x3e\\xc3\\x7c\\xf5\\x0b\\x9b\\x51\\xeb\\xda\\x37\\x86\\xbd\\x1e\\x6c\\x9b\\xc2\\xf5\\x4f\\x56\\xad\\xaf\\xc5\\x11\\xb8\\x1e\\x4d\\x33\\xd6\\x06\\xb0\\xa9\\x8f\\xd6\\x06\\x95\\x30\\x5b\\xa9\\x0a\\x03\\x3e\\xa1\\x49\\xdc\\xe2\\x76\\x6a\\x7e\\x57\\x37\\x20\\x70\\x0f\\x57\\xb1\\xf8\\x6a\\xa8\\x62\\xde\\xde\\x6e\\x40\\xd3\\x5e\\x6a\\x4f\\x34\\x02\\x97\\xa2\\x8b\\xf2\\xf7\\x4a\\x62\\x79\\x90\\x76\\x16\\x8e\\xa1\\xf6\\xa4\\x1e\\x63\\xcd\\xa1\\xc4\\x28\\xb1\\x8d\\x26\\x3a\\x2d\\xa5\\x79\\x7c\\x4c\\x8f\\x07\\x51\\x74\\xde\\xdf\\xd3\\x78\\xa2\\x33\\xb6\\xd0\\x39\\x24\\x03\\x01\\x88\\xdb\\x62\\xe2\\x62\\x82\\xab\\x97\\x94\\xe5\\xa1\\x07\\xe5\\x84\\x36\\x14\\x3c\\xd6\\xfc\\xb0\\x88\\x54\\xc5\\x0c\\x73\\xc8\\x28\\x6c\\x40\\xb3\\x81\\x22\\x58\\xb2\\x7c\\xb2\\xa9\\xc7\\xf9\\x40\\xf3\\xa2\\x03\\x5d\\x32\\x27\\x8b\\xaa\\x9c\\x18\\xb0\\x1d\\x0c\\x64\\x83\\x93\\x8c\\x70\\x72\\xda\\x46\\xc1\\x15\\x11\\x90\\x3b\\xe0\\x68\\xf6\\x9d\\x78\\x66\\x1c\\x90\\x25\\x53\\x83\\x15\\x83\\xa1\\x7d\\xd1\\x62\\xe5\\x06\\xf8\\x1e\\xbb\\x4f\\xbe\\xdd\\xe4\\x0b\\xf1\\x13\\x94\\x37\\x49\\x69\\xb9\\x14\\xca\\x90\\x75\\x72\\x9f\\x59\\xc7\\x6d\\xc4\\x92\\x31\\x57\\x52\\x4a\\x8c\\x40\\x72\\x50\\xc8\\x1e\\x63\\x10\\x80\\x84\\x62\\x25\\x58\\xd4\\x09\\x47\\xad\\xc4\\x94\\xa0\\x08\\x88\\xf0\\xf6\\xcc\\x22\\xc5\\x40\\xd6\\xef\\xc8\\x3e\\x07\\x3b\\x60\\x08\\xb0\\x95\\x68\\x90\\x3d\\xd1\\xb8\\x1f\\x80\\x82\\x29\\x92\\xc2\\xb2\\xd7\\x24\\xd3\\x5c\\x06\\x99\\x0c\\x44\\x0b\\xbd\\x40\\x4f\\x80\\x1a\\xa2\\x78\\x01\\x91\\x75\\x0c\\x2f\\x4e\\x6b\\x27\\x5a\\xbf\\x50\\x0a\\x45\\xb0\\x3d\\xa2\\x44\\xb9\\xa6\\x2e\\xd0\\x6c\\xe7\\x5f\\x30\\x29\\xe0\\x21\\x70\\xcd\\x6d\\xd6\\xe4\\x09\\xb5\\x45\\x68\\x9e\\x75\\xb2\\x74\\x1a\\x1f\\xa0\\xbd\\x18\\xd6\\x25\\x84\\x6c\\x67\\x55\\x16\\xf7\\x5c\\x16\\x06\\xb1\\x1e\\x63\\xa4\\x77\\x2d\\x21\\x49\\xfa\\xc2\\xcb\\xa4\\x00\\xc6\\xc1\\x02\\x42\\xbe\\x26\\x10\\x4b\\xb4\\x2c\\x9d\\xba\\x18\\xeb\\x81\\xab\\x82\\x24\\x8b\\x9a\\x22\\x56\\x79\\x55\\x2e\\x8c\\x6a\\x77\\xaf\\x50\\x0b\\xe5\\x59\\xd1\\xfb\\x93\\xe3\\x41\\xc9\\xc2\\x0a\\x6e\\x12\\x7c\\x5a\\x88\\x05\\xde\\xa4\\x42\\x84\\x36\\x8d\\xa6\\x3f\\x53\\x70\\x95\\x28\\x76\\x3e\\x1a\\x0d\\x2d\\x34\\x14\\x26\\xf5\\xb2\\xfe\\x0c\\x03\\xaa\\xe2\\x58\\x66\\xcd\\x83\\xc4\\x18\\xf0\\xdc\\x2e\\x21\\x81\\xc5\\xac\\x04\\xce\\xcf\\xcf\\x82\\xd1\\x0b\\xa2\\x67\\x24\\xc6\\x90\\xce\\x21\\x87\\x31\\xab\\x40\\x78\\x79\\x2e\\x04\\x93\\xee\\x7c\\x21\\xe0\\x50\\xd7\\x36\\x43\\x56\\x8f\\x4f\\x39\\xf0\\x87\\x11\\x12\\xf2\\x88\\x78\\x29\\x9b\\x08\\xdd\\x0d\\x93\\x4f\\x25\\x78\\x30\\x2c\\xd1\\xcd\\xb8\\x5c\\xf5\\x06\\x6c\\x14\\x9a\\xf3\\xff\\xe5\\x00\\x06\\x30\\xaf\\xd1\\x16\\xb4\\x87\\x9b\\x0e\\xd0\\x0c\\x98\\x2e\\x17\\x5b\\x8a\\x13\\xf1\\x15\\x44\\xb2\\xa9\\x3e\\xdd\\xb0\\x52\\x6d\\x1a\\xfa\\xcb\\x3a\\xdb\\xfc\\xf4\\xa6\\x55\\xf3\\x3c\\xcd\\x5d\\x82\\x8f\\xd5\\x42\\xa3\\xa0\\xb4\\x91\\x2b\\xad\\x68\\x62\\x80\\x90\\x10\\x36\\xf1\\x9b\\xea\\x4e\\xd5\\x84\\x30\\x48\\x02\\x35\\xfd\\x4e\\x58\\x0e\\xa8\\x6c\\x16\\x13\\xc1\\x00\\x6b\\xa1\\x03\\x29\\x86\\xbd\\xe8\\xaf\\x16\\xb5\\x44\\x31\\x70\\x5b\\xaf\\x22\\xf4\\x6e\\x79\\x6e\\xa0\\x29\\xd3\\x55\\xcd\\x80\\x1a\\x80\\x1a\\x75\\xe6\\x00\\xe2\\xb3\\xbb\\x70\\x43\\x39\\x71\\xcc\\x91\\xd1\\xc0\\x64\\xf6\\xb8\\x6b\\xc9\\xb3\\xd8\\x2f\\x2d\\x4c\\x34\\x8e\\x40\\x14\\xf8\\xea\\x71\\x00\\xc1\\xce\\xb9\\x0a\\xd0\\x4d\\x01\\x04\\x52\\x36\\x30\\x01\\x38\\x05\\x90\\x7c\\xf4\\xa0\\x8c\\xd2\\x2b\\xac\\x2d\\xc0\\x30\\xd6\\x0f\\xd8\\xae\\xb3\\xd0\\xa6\\x74\\x54\\xa6\\xb1\\x45\\xbe\\x14\\x2d\\xfd\\x32\\x5d\\xf8\\x05\\x9e\\xfe\\x08\\x3d\\x03\\xb3\\x57\\x67\\xf0\\x20\\xde\\xf8\\x00\\x28\\x7e\\xa3\\x40\\x0f\\x83\\xc4\\x17\\xb0\\x91\\xe0\\x90\\x26\\x81\\x85\\xdd\\x81\\x8e\\x16\\xf0\\x90\\xce\\x89\\x09\\xd7\\x15\\xe1\\x44\\x00\\xdc\\x56\\x01\\xfd\\x00\\x98\\xed\\xfd\\x2b\\x1a\\x61\\x55\\xd9\\xb0\\x8a\\xf0\\x1b\\x1d\\xa0\\xa3\\x8c\\x1c\\xac\\xc0\\x2d\\x48\\x42\\x24\\x66\\x56\\x69\\x1d\\x99\\x5d\\xd5\\x72\\xaf\\x98\\xe9\\xbc\\x09\\x38\\xf9\\xa2\\x91\\xd6\\x29\\xc2\\xad\\x22\\x59\\x24\\xa8\\x98\\x07\\xec\\x64\\x61\\xcc\\xb7\\x18\\xa8\\xdc\\xd2\\x7b\\x60\\x84\\xa7\\xed\\x6b\\xcd\\x58\\x35\\x13\\x85\\x55\\x80\\xee\\xbb\\x16\\x55\\x6c\\x1f\\xcf\\x54\\xc7\\xb6\\xc1\\xc4\\x8d\\x7e\\x2d\\xb9\\xe8\\xd1\\x81\\xa4\\xb0\\xe1\\x64\\x28\\xf5\\x95\\xd2\\x59\\x8a\\x84\\xcb\\x95\\x9e\\xc3\\x9b\\x8f\\xc5\\xc2\\x07\\x9b\\x3d\\x96\\xcc\\xb1\\xa4\\xe3\\x02\\xe1\\x63\\xb2\\x28\\x2e\\x4e\\x6d\\x8c\\x4f\\xe1\\x8b\\x34\\x0c\\xc0\\x23\\x47\\xa9\\x8c\\xdd\\x60\\x14\\x1b\\x34\\x03\\xa7\\x78\\x91\\x26\\x80\\xfc\\x60\\x5f\\x9e\\x40\\x29\\x26\\x4a\\x4f\\x56\\xd3\\xb1\\xe7\\xe0\\x54\\x54\\x43\\x82\\x2f\\x5c\\xa2\\xb4\\xf0\\xe5\\x56\\x2c\\x68\\xa8\\x14\\x13\\x45\\xa4\\xb1\\xd5\\x08\\xf1\\xc3\\x4c\\x30\\xe8\\x37\\xd0\\xd4\\x60\\xaa\\x53\\xec\\x82\\xb9\\xa5\\x13\\x6a\\x9c\\x42\\x96\\xdb\\x01\\x89\\xe8\\x67\\x92\\x53\\x0d\\x17\\x0c\\x8b\\x44\\x74\\x73\\x3b\\x9d\\x17\\xbd\\x88\\xe3\\xcc\\x8c\\x68\\xe6\\x1d\\x4d\\x39\\x40\\x38\\x04\\xc6\\xd0\\x0a\\x39\\x34\\x64\\xcf\\x89\\x38\\x8c\\x0a\\xf4\\x86\\xf2\\x2c\\x76\\x65\\x93\\x3a\\x79\\xa0\\x35\\x9b\\x03\\x73\\x3c\\x04\\xe6\\x1c\\x2c\\x9c\\x5a\\x3d\\x69\\x38\\x28\\x59\\xc5\\x9a\\x14\\x6d\\x2d\\x7b\\x62\\x0c\\xa1\\x2f\\x6f\\x9b\\xd8\\x5f\\x76\\x0a\\x09\\x20\\x47\\x97\\xd9\\x67\\xa6\\x96\\x00\\x30\\x1f\\xe5\\x76\\x3e\\x50\\x4a\\x80\\x96\\xe6\\x90\\xc4\\xad\\x94\\x53\\x34\\x85\\x3a\\x34\\x84\\x00\\x2d\\x58\\x49\\xcd\\xb9\\x13\\x0c\\x13\\xbb\\xe3\\xcb\\xd1\\x23\\xe6\\x14\\xcc\\x3a\\x93\\xb8\\xb0\\x3c\\x70\\xa3\\x53\\x4f\\xfc\\x58\\x90\\x13\\x4e\\xca\\x14\\x11\\x69\\x99\\x36\\x5f\\xe7\\x08\\xaa\\x58\\xed\\x73\\xdd\\xd5\\x67\\x4d\\x67\\x41\\xea\\x96\\x03\\x89\\xd8\\x3e\\x92\\xae\\x57\\x5c\\xb8\\x6d\\xc4\\x24\\x8e\\x0e\\x8a\\x22\\x45\\x4c\\xbb\\x30\\xa9\\x23\\x90\\xd2\\x57\\x59\\xdc\\x79\\x3b\\x5a\\xd5\\x8e\\xfc\\x35\\x27\\x6a\\x4e\\xfd\\xf8\\x8a\\x9e\\x8c\\xa3\\x70\\x40\\x06\\x82\\x53\\x22\\x9a\\xc1\\xf0\\x35\\x12\\x24\\x78\\x1b\\x88\\x18\\x32\\xae\\x0b\\xd8\\x40\\x38\\xfb\\xb1\\xda\\x2b\\x77\\x51\\x01\\x73\\xee\\xc5\\x15\\x6d\\xf4\\x04\\xfa\\xd1\\xa7\\x69\\x32\\xa5\\x2d\\x33\\x2d\\xec\\xcd\\x05\\x68\\xd1\\xe2\\xda\\x46\\x30\\xe7\\x48\\x26\\xdd\\xf8\\xe2\\x3c\\xff\\x7a\\x18\\x36\\xfa\\x2e\\x73\\x10\\x4a\\xbb\\xec\\x0d\\x5b\\x19\\xc2\\x49\\x6c\\x0b\\x81\\x91\\x10\\x2b\\x2e\\xcb\\x02\\xce\\x38\\x17\\x91\\xd0\\xb7\\x4b\\xe6\\x8d\\xc8\\xd2\\xe9\\x89\\x1d\\xca\\x8b\\xb1\\x64\\x66\\x53\\x44\\x46\\xac\\xc2\\xf9\\x33\\x3e\\x5c\\x17\\x90\\x83\\x51\\xdf\\x60\\xb8\\x5d\\x91\\xb3\\x42\\x62\\xc2\\x75\\x12\\x0c\\x3f\\xc9\\x98\\x72\\x01\\x4d\\x2e\\x43\\x15\\x60\\x5a\\x25\\xd9\\x08\\xcb\\xbe\\xb3\\x45\\xe8\\x0c\\xc3\\x9b\\x5f\\x8d\\xb0\\xd7\\xa4\\xad\\x46\\x60\\x0d\\xa1\\x71\\x54\\x9f\\x47\\x0d\\x2a\\x66\\x04\\x37\\xd3\\x85\\x9b\\x2d\\xca\\x61\\xcf\\xa0\\x13\\xe0\\xce\\x78\\x0f\\xdc\\xdc\\x3c\\x01\\xf6\\x36\\x41\\xce\\xd2\\x10\\x2d\\xeb\\xc3\\x85\\x54\\x67\\x7a\\x01\\xbd\\x43\\x55\\xb8\\x20\\xee\\x08\\xde\\x3e\\x4a\\x53\\x79\\xb8\\xee\\x6f\\xe7\\x19\\x2c\\x7b\\x71\\x6b\\x26\\x68\\x20\\x52\\x69\\x30\\x83\\xd7\\x6c\\x38\\x38\\x9f\\x64\\x65\\x37\\xcd\\xbe\\x7e\\xe7\\xde\\x0e\\x94\\xee\\x30\\xb2\\x65\\x35\\x2a\\x0c\\x55\\x19\\xc9\\x7d\\x2e\\x08\\x88\\x60\\x26\\xf3\\xd9\\x08\\x8b\\x7f\\xa9\\x44\\x31\\x8d\\x15\\x63\\xf8\\x5f\\x44\\x7b\\x88\\xb9\\x63\\x78\\x29\\x45\\x36\\x60\\x31\\xa7\\x38\\xcc\\x7c\\x75\\x14\\x91\\x23\\xaa\\x59\\xbe\\x08\\x51\\x34\\x6c\\x09\\xf8\\xd7\\x93\\x37\\x55\\xfc\\x55\\x85\\x32\\x79\\x51\\x9b\\xc4\\x99\\x15\\x3b\\x96\\xce\\x24\\xc1\\x25\\xb6\\x50\\x41\\x21\\x06\\x57\\x21\\xcc\\xb0\\x88\\x6f\\xc7\\x90\\x24\\x65\\x5a\\xb5\\xb3\\x25\\x80\\x14\\xf6\\x6b\\xc9\\x8d\\x6b\\x92\\xc4\\x30\\x39\\x41\\xc0\\x5f\\xda\\x88\\x50\\xa2\\xbf\\xb0\\x8a\\xd8\\x0e\\xa3\\xa7\\xe7\\x37\\x13\\x08\\x2c\\xe0\\x46\\x6d\\xe9\\xcb\\xe2\\x4c\\x21\\x07\\x32\\xb3\\x02\\xbe\\x00\\x65\\x82\\xf6\\x42\\x57\\xa0\\xc9\\x50\\x17\\xe1\\x10\\xa1\\x4f\\xe4\\xc5\\x5c\\x5e\\x59\\x0d\\xc6\\xc6\\x4f\\xeb\\x46\\xba\\x9a\\x36\\x5a\\xa9\\xf5\\x6c\\x5a\\xf0\\xa0\\xb4\\xa3\\x9e\\xb6\\xe9\\x62\\x15\\x97\\x0b\\xb3\\x46\\xd2\\x4e\\xaa\\x0f\\x49\\x49\\xe6\\xa0\\xf1\\x72\\xde\\xc3\\x91\\xf6\\xa4\\xfe\\x86\\xc8\\xfa\\xb0\\x06\\x8a\\x89\\xa0\\xa3\\x0d\\x7e\\x9d\\x0d\\xc9\\x9b\\x4f\\x80\\x3e\\x18\\x8b\\x3e\\x40\\x09\\x69\\x08\\x69\\xa4\\x0c\\xa1\\x89\\xfa\\x20\\x9e\\x89\\x00\\x95\\xda\\x69\\x63\\xaf\\x3d\\xa6\\xea\\x0f\\x5e\\xad\\xec\\x0a\\x9f\\xcb\\xa6\\x40\\x9c\\xf3\\xbc\\x57\\x89\\x74\\x41\\x55\\x99\\x9f\\x4c\\x0a\\x79\\x62\\x58\\x6a\\x2b\\xd8\\x12\\x59\\x12\\xfd\\xc6\\xe2\\x40\\xee\\xed\\x14\\x78\\x10\\xb0\\xb4\\x37\\x67\\x74\\x3f\\x85\\xec\\x91\\xad\\x40\\x18\\xa3\\x23\\xe6\\x98\\x64\\xf4\\xe8\\x0a\\xd0\\xb8\\x51\\x12\\xce\\xe7\\xc3\\x85\\xd7\\x6b\\x3b\\xe9\\x7b\\x48\\xf1\\x33\\xc6\\x08\\x72\\x73\\xbc\\x01\\x41\\xed\\x0c\\x3a\\x60\\x5f\\xed\\x32\\x39\\x95\\xf8\\x04\\xee\\xb4\\x88\\x2a\\xbb\\x95\\x61\\x8f\\x94\\x15\\x69\\x2f\\x19\\x04\\x06\\x97\\xa2\\x93\\x05\\xea\\xf7\\x16\\x4d\\x9c\\xa9\\x26\\xa9\\x7d\\xaa\\x0d\\xea\\x64\\xb7\\xe7\\x10\\x06\\xa8\\xec\\x2d\\x70\\x7c\\xed\\x33\\xe2\\x70\\x44\\x73\\xff\\x42\\x7e\\x02\\xb0\\x52\\x8a\\x04\\x05\\x30\\xb4\\xb2\\xa2\\x52\\x15\\x5c\\xbd\\x3f\\x28\\x17\\x19\\x48\\x20\\x90\\xf0\\x14\\x60\\x72\\x90\\x73\\xa0\\x94\\x89\\x1c\\xe2\\xa4\\xe1\\x52\\xe1\\xd9\\xe4\\x10\\x5f\\xad\\x9d\\x5a\\x63\\xd4\\x53\\x05\\x07\\x53\\x00\\x03\\xc1\\x43\\x46\\x68\\x49\\x7f\\x18\\xe5\\xd7\\x97\\x8c\\xff\\x82\\x69\\xcd\\xa0\\x59\\xa7\\xd4\\xa8\\xad\\x24\\xb4\\x89\\x34\\x64\\xb6\\x8b\\x97\\x7b\\xb9\\x9c\\x65\\x2c\\xd2\\x01\\x55\\xe6\\x96\\xd9\\x8c\\x48\\xdb\\xce\\x11\\x5a\\xcb\\x10\\x4d\\x91\\xba\\x3f\\x6a\\xd6\\x55\\xf4\\xe6\\x4a\\x49\\x44\\x58\\xdc\\x6a\\xfa\\x9d\\x3e\\x51\\x48\\xd2\\x15\\x6c\\x8b\\x86\\x59\\x3e\\xe1\\xcd\\xd4\\x12\\x78\\x53\\xa4\\x0c\\xfa\\xa4\\x7a\\xc3\\x0c\\x89\\xef\\xe6\\x16\\xad\\x57\\x93\\x09\\xad\\x27\\x85\\x45\\x15\\xd4\\xc2\\x6a\\x74\\x68\\x07\\x71\\x60\\x15\\x0f\\x65\\x78\\x8b\\x1d\\x88\\x34\\x93\\x65\\xbc\\xc2\\x97\\x4a\\x11\\x9a\\x24\\x00\\xd7\\xb5\\x12\\x05\\xc3\\xf4\\x1a\\x22\\x1a\\x55\\xd0\\xcb\\x74\\x5d\\xac\\xe9\\x69\\x59\\x00\\xc0\\x41\\x29\\x68\\x7a\\x64\\x9e\\xfe\\x0e\\x55\\x84\\xc7\\xb6\\x61\\x4a\\x72\\x10\\x88\\x6c\\x73\\xc7\\x93\\x74\\x59\\x85\\x28\\x1f\\x58\\x3f\\x39\\x7e\\x40\\xde\\x14\\xe1\\x43\\x3a\\xc5\\x5a\\xca\\x95\\x04\\x47\\xc9\\x45\\x6a\\x7b\\x22\\x49\\x0f\\x73\\x53\\x68\\x39\\x13\\xf6\\xcf\\xcb\\x05\\x35\\x42\\x92\\x14\\xa0\\x40\\xbb\\x40\\x06\\x49\\xde\\x00\\x83\\xf6\\x32\\xa7\\x15\\xcb\\x08\\xd8\\xec\\xc1\\xf1\\x05\\x43\\x84\\x78\\xec\\x17\\x98\\x69\\x5b\\x27\\x95\\xbd\\xcc\\x38\\x0d\\x56\\xa8\\x97\\xd4\\xae\\xa8\\x78\\x85\\x23\\x91\\x23\\xb0\\xa4\\x57\\xdb\\xc6\\xb5\\x2d\\x0d\\x6c\\x99\\x8a\\x3a\\x0b\\x6a\\xa5\\xd9\\xae\\x25\\x26\\x33\\x52\\x25\\xac\\xb8\\x09\\x24\\x0d\\xb6\\x8d\\x89\\xd4\\xc2\\xdd\\x45\\x84\\x4c\\xae\\x4c\\xf8\\x71\\xcb\\xb6\\xfe\\x87\\x06\\x91\\x02\\xe9\\x1e\\x91\\xa0\\x4c\\x52\\x04\\xee\\x83\\x78\\x37\\x26\\x17\\xc1\\x44\\xa8\\x2e\\x34\\x3a\\x7c\\x41\\xd0\\x81\\x25\\xa4\\x61\\x42\\xd6\\xc3\\x70\\x5a\\x03\\x64\\x92\\x5b\\x0f\\xc0\\x17\\xbe\\xa2\\xab\\x61\\x24\\x2a\\x69\\xcc\\x3d\\x92\\x31\\x42\\x2a\\xfc\\xb2\\x2e\\xfc\\x7a\\x82\\x58\\xa3\\x65\\x97\\x0c\\xc3\\xee\\x01\\x81\\xaa\\xf1\\x10\\x8b\\x39\\x97\\xb9\\x9c\\x43\\x4c\\x41\\x4a\\x3b\\x36\\x98\\x00\\x01\\x72\\x63\\x39\\x30\\xfc\\xf0\\x0a\\x32\\x3d\\x5b\\xee\\x3e\\x67\\xb3\\xc0\\xee\\xc2\\x42\\x40\\x78\\x19\\xb6\\xc9\\x3d\\x76\\x6c\\x23\\xe5\\x5e\\xc1\\x37\\x3a\\xa2\\x4e\\x3a\\x38\\x9e\\xdd\\xfa\\xbe\\x7a\\xbe\\x37\\x10\\xb9\\x24\\x32\\xf6\\x2c\\x50\\x7a\\x21\\xb3\\x3b\\xc4\\x05\\x16\\x44\\x8c\\x36\\xe4\\x85\\x21\\xd8\\x33\\x3f\\xcd\\xcb\\x19\\xfd\\x00\\x55\\xa8\\x61\\x07\\xdd\\xd4\\x0c\\x2d\\x6a\\x4b\\x5b\\x30\\x42\\x08\\x1c\\x7d\\x3a\\x32\\xdb\\xf5\\xb1\\x73\\xc8\\x19\\xd4\\x39\\x14\\x31\\xe1\\xcf\\x25\\xef\\x09\\x36\\xe6\\x05\\xc1\\x2e\\x93\\xd1\\xeb\\x1c\\xbd\\xec\\xcc\\x7b\\xec\\x44\\xf7\\x2f\\x9c\\xca\\x62\\x0e\\x58\\x87\\xa4\\x92\\xd8\\xa6\\x0d\\x16\\x6d\\xb5\\x86\\x8d\\x93\\x55\\x63\\xdd\\x88\\x21\\x4e\\x6c\\xc3\\xfa\\xa3\\x6d\\x98\\x58\\x95\\xea\\xda\\x90\\x78\\x1b\\x19\\xc6\\xd6\\xde\\x67\\x58\\x61\\xa7\\x73\\xd2\\xcc\\x96\\x0d\\x18\\x3c\\x95\\xd0\\x9a\\x40\\x3d\\x19\\x99\\xf5\\x07\\x99\\xfe\\x00\\xa8\\x4c\\x3c\\x09\\xaf\\x0f\\x69\\xa2\\x08\\xd0\\x5a\\x8d\\x48\\x6a\\x49\\x0a\\x62\\xc8\\x8d\\xdb\\x6c\\xb6\\x60\\xe1\\x99\\x76\\xcc\\x07\\xec\\x3c\\x72\\x99\\xf2\\x9b\\xee\\x0f\\xf2\\x6d\\xf7\\x58\\x81\\xad\\xd2\\x18\\x5a\\x40\\x2b\\xee\\x2d\\x79\\x0d\\xf7\\x0b\\x12\\x2e\\x8d\\x21\\x21\\x3e\\x00\\x1b\\x9f\\xc1\\x3c\\xc6\\x92\\x43\\x74\\xe3\\xe8\\x0a\\xa2\\x15\\xbe\\x1c\\xee\\x70\\x2d\\x8e\\x3d\\x7a\\x77\\x08\\xe1\\x4c\\x70\\x15\\xec\\x71\\xe4\\x94\\xee\\x11\\xac\\x3b\\x61\\xae\\xf0\\xb9\\x2b\\x19\\x88\\x4c\\x3c\\xc4\\x26\\x16\\x5c\\x04\\x89\\x4b\\xe7\\x42\\x9a\\x58\\x24\\x92\\xd0\\x00\\x0a\\x08\\xaf\\xd8\\xc8\\x12\\x6e\\x96\\x93\\xc8\\xb1\\x78\\x06\\x6a\\x22\\xa7\\xc4\\xbd\\x3c\\x25\\x31\\x74\\x25\\x9f\\xf2\\x14\\x9a\\x81\\x44\\xf5\\xb3\\x45\\x66\\x41\\x38\\xeb\\x56\\xaa\\x7f\\x26\\x05\\x2e\\x7c\\x32\\x78\\x72\\x60\\x48\\x96\\x35\\x22\\x16\\x88\\x52\\xc0\\xff\\xb8\\x47\\x68\\x48\\xaf\\x86\\x04\\x83\\x0a\\xc5\\x49\\xe0\\xf4\\x2a\\xf2\\x3a\\xfc\\xe2\\x86\\xda\\x1d\\x28\\x39\\x2b\\x39\\xa3\\x81\\x46\\x88\\x2d\\x93\\x93\\xc3\\xa1\\xd5\\x6b\\x22\\x00\\x3e\\x70\\xbb\\xa3\\xe7\\x18\\x2f\\x0b\\xa0\\x63\\x15\\x46\\x75\\x06\\x99\\xcc\\x7d\\xad\\x12\\x55\\x7f\\x4c\\x94\\x21\\x30\\xa8\\xf4\\x12\\x7e\\x51\\x95\\xf9\\x7b\\x01\\xa8\\x75\\xa4\\x36\\x83\\x01\\x20\\x09\\x9a\\xd8\\x39\\xd8\\xb6\\xc7\\x75\\xfb\\x9f\\x24\\x81\\x2a\\x64\\xcb\\x24\\x0f\\x2a\\x58\\xa0\\x78\\x36\\xac\\x8e\\x2e\\x80\\xcf\\x83\\x43\\x8f\\x54\\xe7\\x7b\\x88\\x1a\\xd5\\xc0\\x2b\\x03\\xe1\\xa0\\x4a\\x91\\x0b\\x83\\x52\\x5c\\xc1\\x32\\x9f\\xd3\\xd6\\x22\\x74\\xe4\\x00\\xba\\xc0\\x57\\x8e\\xc7\\xc5\\x01\\x75\\xbf\\xb3\\x1d\\x6a\\x23\\x3c\\xcc\\xe0\\x73\\x81\\x49\\x8e\\x7d\\xcb\\x40\\xe6\\x0d\\xfd\\xdc\\xe0\\x34\\x67\\x33\\xfc\\x21\\x19\\x5e\\x03\\x06\\xa2\\x6a\\xce\\x21\\x76\\xa6\\x02\\x99\\x4c\\x50\\x99\\x1c\\x49\\x1b\\xcd\\xb0\\x11\\x54\\xd0\\x0a\\xff\\x5d\\x2a\\xce\\xbc\\x88\\x47\\x1d\\x40\\x4a\\xad\\x19\\x1c\\xff\\x36\\x61\\x86\\x5b\\x7b\\xaf\\x8d\\x6d\\xff\\x09\\xdf\\x68\\x04\\x47\\x51\\xab\\x40\\xce\\x18\\x9f\\xe5\\xf0\\x2c\\xa8\\x11\\x2a\\x7c\\x00\\xd1\\x8b\\xdc\\x29\\xac\\x91\\x3d\\xf5\\x79\\xc3\\x74\\x42\\x6e\\xf9\\xae\\x4c\\x09\\xfd\\xae\\x94\\x49\\xeb\\x5b\\xad\\x19\\x53\\x75\\xcd\\xe1\\x3f\\x80\\xa1\\x53\\xd9\\x84\\xad\\x0c\\x46\\x28\\x05\\x18\\x7e\\x00\\xbc\\x2d\\x1a\\xa3\\x30\\xbe\\x0b\\x35\\x3d\\x7a\\xcb\\x92\\x9f\\xda\\x70\\x6d\\xab\\xed\\x96\\x22\\x6b\\x89\\xef\\x65\\x64\\x58\\x00\\xf3\\xc8\\x7f\\xa7\\x82\\x8b\\xc3\\x38\\x7a\\x8e\\xc1\\x7a\\x8e\\x5d\\xca\\x79\\x5d\\xad\\x83\\xc1\\xb7\\x95\\x08\\xae\\x98\\x8c\\x52\\x1b\\x0d\\x8c\\x62\\x05\\x6a\\xe9\\xaf\\x99\\x82\\xc5\\xd9\\xd8\\x6c\\x63\\x10\\x39\\x61\\x99\\xb5\\x93\\x34\\x6a\\x9b\\xaf\\x5c\\x6c\\x06\\xd0\\x6a\\xf6\\x9d\\xd2\\xd3\\x8a\\x3d\\xd3\\x3c\\x83\\x6c\\xb0\\x34\\xf9\\x7a\\x9f\\x28\\x43\\xd8\\x8a\\x56\\x56\\xbe\\x01\\xb5\\x8f\\x01\\x74\\xb1\\x14\\xe3\\xa5\\x57\\x66\\xfa\\x0e\\x1d\\xf7\\xd9\\x6c\\x5e\\x6f\\x08\\xc7\\xe5\\x26\\x78\\xa7\\x09\\x0f\\xe0\\x98\\xd2\\x0c\\xb6\\xdd\\x7f\\x90\\xc0\\x1b\\xbd\\x80\\xa0\\x0c\\xee\\x69\\x29\\x8f\\x75\\xd3\\x5c\\xe4\\xc5\\x17\\xf9\\x5f\\xd8\\x61\\x63\\x02\\x69\\xa8\\xc8\\xbc\\x0d\\x5c\\xcc\\xa8\\xcc\\xa8\\xa5\\xb5\\x42\\x7d\\xa8\\x1a\\xe5\\x28\\x59\\x32\\xb6\\x4e\\x46\\xaa\\x3a\\x05\\x73\\x4e\\xf6\\xa9\\xd5\\x57\\xe5\\x21\\xa4\\xba\\x32\\x13\\xe3\\x20\\x24\\x8a\\xe1\\x95\\x35\\xc0\\x03\\xdc\\xad\\xad\\xc3\\x08\\x3d\\x79\\x0d\\x2d\\xdc\\x05\\x4d\\x06\\x4c\\x75\\x5d\\xc7\\x17\\xd8\\xd0\\x0d\\x14\\xe7\\x04\\xe8\\x53\\x96\\xb9\\xcc\\xb9\\xd0\\xdc\\x3b\\x90\\x82\\x30\\x83\\x2a\\x8d\\xfa\\xd0\\x7c\\xea\\x61\\x2f\\x45\\xde\\xf2\\x16\\xfc\\x1d\\x8a\\x2f\\x03\\x7c\\xd2\\xa1\\x4f\\xd7\\x08\\x2f\\x05\\x4f\\xc6\\xe4\\xf6\\xa3\\x39\\x4e\\xfe\\xab\\x3e\\xaf\\x05\\x4f\\xd9\\xa9\\xce\\x17\\xdd\\xf2\\x06\\xd5\\x33\\x02\\x15\\x2f\\xc6\\xad\\x39\\xf4\\x68\\x33\\xaa\\x29\\x53\\xa7\\xd4\\xe7\\xeb\\xc4\\xa5\\x39\\x8d\\xb8\\x94\\x6f\\x8a\\xbd\\xb7\\x65\\xd6\\x59\\xf7\\x1b\\x25\\x45\\x3e\\x3e\\xe1\\x73\\x0e\\x02\\x5f\\xa8\\x2f\\x6c\\x94\\xbe\\x64\\xc9\\x47\\x85\\x3b\\x10\\x8a\\x8a\\x24\\xc3\\x5b\\x3a\\xb9\\x0a\\x39\\xf2\\x03\\x12\\xae\\x25\\x14\\x93\\x77\\xd5\\x86\\x4d\\x79\\x43\\x53\\x89\\x62\\x9e\\xd2\\x1e\\x94\\x87\\xc9\\x88\\x28\\x1a\\x91\\x1a\\xc9\\xfa\\xc4\\xb7\\xd2\\x23\\xa6\\x1c\\x2d\\x76\\x89\\x4d\\x53\\x09\\xb3\\xd2\\x3d\\xbc\\x91\\xd5\\x39\\x11\\xfb\\x82\\x9b\\x6d\\x95\\xbf\\x27\\xf4\\xda\\xec\\x6f\\x63\\x05\\x10\\x83\\xc2\\xc4\\x5e\\x31\\xa6\\x22\\x8c\\xfb\\xc9\\x3e\\x24\\x72\\x52\\x4e\\x46\\xf3\\x17\\x70\\x98\\x6c\\x4c\\x47\\xf1\\x32\\x1b\\x0a\\x9a\\x10\\x87\\x84\\x12\\x64\\x4b\\xe7\\x79\\xdd\\x2c\\x74\\x87\\xe7\\xa7\\xaa\\x94\\xe7\\xb3\\xf1\\xec\\x3d\\xd2\\xd0\\x25\\x04\\xbf\\x02\\x0e\\x85\\x0c\\xbc\\x96\\x18\\x32\\x1b\\xdb\\xf5\\x47\\xee\\x36\\x29\\xb9\\x44\\xd0\\xd4\\x3a\\x6e\\x56\\xf7\\x54\\xa5\\x51\\x13\\x9e\\xf8\\x11\\x0f\\xc6\\x51\\x32\\x0d\\x8d\\x44\\x0e\\x44\\x61\\x0f\\xc6\\x45\\x8c\\x9b\\x29\\x49\\xe6\\x8b\\x7c\\x89\\x14\\x24\\x99\\x08\\x11\\x38\\x13\\x6f\\xaa\\xb4\\xc3\\xfd\\xbd\\x3c\\x13\\x88\\x46\\xa8\\xf0\\x65\\x2e\\xc6\\xaa\\x49\\x95\\xf3\\xc8\\xfb\\xa9\\x50\\x92\\x36\\x69\\x9c\\x17\\xb4\\x22\\xee\\xa1\\xdd\\x4c\\xf0\\xf0\\xa5\\x5d\\x21\\xfa\\xd2\\x24\\x4a\\xc1\\x7c\\x07\\x81\\xcc\\x77\\x20\\xf7\\x65\\x52\\x01\\xef\\x87\\x97\\xc7\\xfe\\xd9\\x2a\\x34\\x26\\xc6\\x14\\x4a\\x52\\x87\\x7e\\xd8\\x57\\x1e\\xf5\\x61\\x1e\\x1d\\xfb\\x37\\xe7\\xe1\\xdd\\xde\\x1d\\x79\\x01\\x10\\xfd\\xac\\x7c\\x1a\\x49\\x07\\x72\\x6a\\x0b\\x94\\x61\\xce\\x10\\x1a\\x8b\\x68\\x74\\x8a\\x80\\xf2\\x8c\\x38\\x84\\x09\\x3a\\x75\\x90\\x87\\xb8\\x06\\x6d\\xf3\\x32\\x03\\xa7\\xc2\\x04\\x91\\xc4\\x0a\\xe6\\xc7\\x9c\\xd1\\x37\\xb1\\x48\\x5e\\x2e\\x34\\xa4\\x59\\xdb\\x69\\xd9\\x4e\\x46\\xfe\\x68\\x76\\x9e\\xe2\\x05\\x59\\xcc\\x1c\\x82\\x1a\\xb6\\xdc\\x20\\x68\\xb9\\x84\\x15\\x61\\x66\\x19\\xf4\\xa6\\x8e\\x10\\xee\\xab\\xb3\\xc3\\xd0\\xea\\x01\\x93\\xf4\\xf8\\x63\\x2f\\x24\\x8a\\xb2\\x6c\\xb0\\xc3\\xa9\\x91\\x6e\\x42\\xb9\\x1e\\x47\\x43\\x11\\xe3\\x27\\x3c\\x20\\x06\\xce\\x5f\\xc4\\xd9\\xdd\\x2d\\x06\\x17\\xf9\\x8f\\xde\\x9e\\xb8\\x9a\\x6d\\x3d\\xe9\\xba\\x59\\xec\\x84\\x40\\x83\\xc5\\xf7\\xba\\x18\\x80\\x34\\xf2\\x4c\\x50\\xad\\xed\\x8f\\x75\\x90\\xe2\\xd1\\xfe\\x55\\x48\\x2c\\xdc\\xf7\\x2b\\x63\\x71\\xf0\\x36\\x93\\x9e\\xd1\\x50\\xa7\\xb2\\xc8\\x79\\xea\\xcd\\x96\\x1c\\x9c\\x15\\xf8\\xac\\x9f\\x9a\\xcc\\x7f\\xed\\xea\\x72\\x1c\\x6d\\x2a\\x2d\\xfe\\x38\\x94\\x7b\\xeb\\xd4\\x1d\\x9d\\x0b\\x90\\x88\\x05\\x2a\\x2d\\x90\\xab\\x17\\x12\\x29\\xfd\\x0b\\x5b\\x09\\xad\\x97\\x5c\\x38\\x7b\\xa7\\xb0\\x42\\x52\\xc0\\xb8\\x28\\x1c\\x5b\\x2a\\x9e\\xf9\\x75\\x37\\x49\\x4c\\x49\\xe3\\x0b\\x6d\\xd6\\x14\\xf1\\x2e\\x74\\x43\\x9c\\x35\\xd3\\xa9\\x8e\\x95\\xf7\\x28\\x92\\x7e\\xe4\\xa4\\x7d\\x92\\x24\\x29\\x3b\\xa8\\xa7\\x24\\x45\\xd0\\xa2\\x27\\x70\\x82\\x07\\xcb\\xe3\\x04\\x2c\\xeb\\xa8\\x88\\x68\\x2c\\x96\\xc1\\x01\\xd7\\x08\\x31\\xbc\\x89\\x06\\xe2\\x95\\x1d\\xe2\\x7e\\x99\\x3d\\x3c\\x37\\xe1\\xa9\\x19\\x1b\\x49\\xf0\\x53\\x0e\\x74\\x41\\x30\\x02\\x24\\xcf\\x24\\x1a\\x1f\\xcf\\x7e\\xe8\\xde\\x03\\x1a\\xa7\\x14\\xd3\\x7c\\x47\\x48\\x5e\\x6d\\x27\\x9c\\x71\\x0b\\x01\\xf9\\xb0\\x5b\\xf6\\xcb\\x30\\x02\\x3f\\x2f\\xf7\\x6c\\x3e\\x27\\x10\\xa3\\x5f\\xdb\\x2c\\xeb\\x36\\x4b\\x93\\xc5\\x75\\xdf\\x9a\\x7f\\xe7\\x7c\\x8c\\x46\\xf6\\xc0\\x45\\xc6\\xa2\\x37\\x99\\x06\\xcb\\x8d\\xa3\\x4c\\x9e\\x79\\x21\\x3c\\x98\\x29\\xcf\\x7f\\xd8\\x7f\\xc4\\xa1\\x19\\x11\\x4a\\x5c\\x07\\x27\\x03\\xfe\\x24\\x19\\x2c\\xe9\\xad\\xb4\\xd2\\x1d\\xf1\\xd7\\x8d\\x96\\x62\\xe8\\xce\\xfa\\xcc\\x64\\x7f\\xb4\\x08\\xac\\xb5\\xe3\\x37\\x92\\x98\\xd8\\xd4\\x69\\xb1\\x93\\x86\\x58\\xa1\\xe1\\xd3\\x2f\\x84\\x78\\xfc\\x11\\x20\\xf8\\xc6\\xa3\\x52\\x44\\xe1\\xa4\\xf2\\x7e\\x43\\x27\\x61\\xa4\\x0f\\x2e\\x78\\xf7\\xe4\\x43\\xbd\\x9a\\x86\\xfd\\x97\\x72\\x57\\xc0\\xb1\\x2c\\x31\\xd2\\x82\\x14\\xea\\x84\\x8e\\xbe\\xcb\\xec\\x21\\x0f\\xfb\\x20\\xfe\\x98\\x9d\\x01\\x03\\xf5\\xd6\\xcf\\x3a\\x05\\x22\\x01\\x80\\x55\\x84\\xd0\\x29\\x03\\x7b\\xc0\\x07\\xf9\\x06\\x20\\xf3\\xc8\\x6d\\x47\\x9f\\xcb\\xe6\\xc8\\x1d\\x33\\xcd\\x32\\xc6\\x22\\x3b\\xa0\\x22\\x85\\x03\\x1b\\xb3\\xb4\\x82\\xce\\xbd\\x10\\x79\\x22\\x6d\\xd2\\x68\\xd5\\x0b\\xe6\\xfc\\x91\\xd2\\xbb\\x6a\\x86\\x1c\\x28\\x15\\x26\\xa0\\x3d\\x66\\x10\\x4d\\x26\\x3a\\xab\\xb2\\x5b\\xb8\\xc8\\x35\\x12\\xa8\\x70\\xb1\\x33\\xf6\\x97\\x20\\xec\\x39\\xc9\\xb8\\xd0\\x46\\x78\\x82\\xfc\\xba\\xe8\\xc0\\xbc\\x08\\x0f\\x81\\xf7\\x41\\x3d\\x93\\x0f\\xc4\\x24\\xf4\\xf9\\x10\\xc0\\x7a\\x78\\xeb\\x00\\x8e\\x38\\xb1\\xd2\\x0c\\x3b\\x45\\xef\\xa6\\x1e\\x9e\\x86\\x91\\x83\\x07\\xd8\\xe2\\x44\\xe3\\x83\\x0c\\xd8\\x0f\\x3c\\x82\\xfd\\x97\\x66\\x59\\xda\\xd9\\xc0\\x5e\\xda\\x60\\x4e\\xa6\\xc8\\x9d\\x1c\\x62\\x98\\x03\\xfe\\x30\\x0f\\xa5\\x47\\x44\\xdb\\xb5\\x7d\\x66\\x9d\\x94\\x9e\\x4c\\xf9\\x19\\xd5\\x95\\x46\\x6e\\xb8\\x03\\xe8\\xeb\\x16\\x01\\xb2\\xf9\\xfe\\x7e\\x2a\\x5b\\x26\\x37\\xd1\\xc2\\x7e\\xf7\\xc0\\x4d\\xe4\\x43\\xe9\\x65\\x6f\\xce\\x8b\\xdd\\x38\\xe5\\x4e\\x1f\\x4b\\x7c\\xcf\\xc8\\x87\\x46\\xd7\\xef\\x79\\x3e\\xb8\\x6b\\x00\\x4f\\xef\\x53\\xe4\\x09\\x4d\\xc4\\xca\\xfc\\x91\\xac\\x3b\\x0a\\xdd\\x7e\\xef\\x22\\x50\\x52\\x6c\\x3f\\x32\\xe1\\x12\\x01\\xb1\\xb2\\xde\\x72\\xdb\\x81\\xf7\\xd2\\x77\\xa5\\xa0\\xa8\\x83\\x96\\xed\\x6c\\x7d\\xc3\\xcf\\x91\\x9c\\x74\\x94\\x3a\\xde\\xbc\\x56\\xbd\\xfa\\x31\\x47\\x04\\x50\\x41\\xfd\\x78\\x8a\\xfb\\xf5\\xca\\x06\\xc7\\xe3\\x7d\\x94\\xac\\x5d\\x83\\xb3\\x3f\\x07\\x4d\\xe4\\xe4\\xd9\\x8e\\x32\\x4b\\x34\\xc9\\xda\\xf4\\xe9\\xd2\\x49\\x27\\xfb\\x8c\\x8b\\xcc\\x19\\x89\\xb0\\x32\\x72\\x29\\x86\\xc6\\x49\\xd8\\x49\\x83\\x65\\xc9\\x1a\\x19\\xf8\\x80\\x6a\\xe7\\x63\\x3d\\xe9\\x5e\\x4e\\x63\\x84\\x5a\\x94\\x33\\x3e\\x33\\x41\\x22\\xb5\\x8b\\xa1\\x11\\x91\\xaa\\x89\\x23\\x78\\x6f\\x9f\\xfb\\xd9\\x8d\\x4a\\xe1\\x24\\xfe\\xe0\\xd4\\x8b\\xa2\\x12\\x75\\xe6\\xbb\\x6f\\x70\\x38\\x64\\xfb\\x55\\x1c\\x41\\xbb\\x81\\x81\\xf2\\xec\\x4c\\x4a\\x02\\xf5\\xea\\x44\\x77\\x0c\\xa0\\xfa\\xf9\\x23\\xc4\\x73\\xc5\\xdb\\x37\\xf5\\x26\\x29\\xc0\\xbc\\xa7\\x09\\x72\\xc5\\xbd\\x64\\xab\\xb9\\x13\\xa1\\x3d\\x94\\x27\\xaa\\x5c\\xb7\\x49\\x86\\x77\\x14\\x84\\xf7\\x98\\x9f\\xa4\\x07\\xd0\\xc6\\x7e\\xb2\\xea\\x13\\xdf\\x2d\\xb7\\xd8\\xac\\xe2\\x8f\\x98\\xfb\\x64\\x27\\xef\\x5a\\xfe\\xc9\\x01\\xed\\x21\\x19\\x43\\x52\\x45\\xf3\\xa9\\x4e\\xde\\xf6\\x7e\\x22\\xd5\\x50\\x44\\xa5\\xfa\\x03\\xf1\\xa4\\xfb\\x0f\\xd9\\x7e\\xa4\\x8a\\x79\\x38\\x71\\x80\\xab\\x8d\\xa9\\x36\\xff\\xc3\\xca\\x4a\\xf7\\xaa\\x1f\\xf7\\x55\\xfd\\xc4\\x69\\x01\\xf8\\xf2\\x5d\\xf9\\x88\\xd4\\x39\\x7a\\x3c\\x32\\x9d\\x2e\\x3e\\x7d\\x96\\xf8\\x92\\x7f\\x81\\x89\\xcc\\x32\\x14\\x48\\xde\\x65\\xfb\\xbe\\xd5\\x3f\\x88\\xca\\xd4\\xbf\\xad\\x8f\\x1e\\x9a\\xf9\\xdb\\xd1\\x1d\\x3e\\x17\\x99\\x9c\\xfb\\x94\\x6d\\x74\\x29\\x29\\x3e\\xb0\\x25\\xf6\\xb2\\x2a\\xfc\\xcf\\x8f\\x68\\xe8\\xe2\\xfb\\xa5\\xea\\xa3\\x71\\x72\\x3d\\x66\\x46\\xa6\\x7c\\x0a\\x32\\xcb\\x9b\\x65\\x24\\x08\\x3d\\x3d\\xfc\\x7b\\xcf\\x9d\\xbb\\xb0\\x40\\x7c\\xa2\\x88\\x29\\x8c\\x0b\\x17\\x67\\xe5\\x5f\\x8e\\x41\\x5d\\x81\\x09\\x87\\xef\\x76\\xe9\\xde\\x0a\\xf0\\xfd\\xbb\\x4e\\x30\\x81\\x31\\xbd\\xbd\\x44\\x34\\xff\\x05\\x0b\\x5f\\xd9\\xda\\x76\\x83\\xe2\\x79\\xb4\\x73\\xc8\\xfc\\xb5\\x93\\xc8\\x1b\\x66\\xeb\\x3b\\x33\\x40\\x8f\\xac\\x7c\\x02\\x6d\\x99\\x01\\x97\\x1a\\x7b\\x34\\x59\\xc7\\xe7\\xec\\xd9\\xe0\\x6d\\xa9\\xb6\\xb4\\x60\\x46\\x46\\x22\\x93\\x4c\\x14\\xcb\\x2f\\x76\\x38\\x66\\x75\\x8b\\x70\\x06\\x46\\x67\\x31\\x90\\x2f\\x23\\x2e\\x9d\\xac\\xb2\\xb2\\xc0\\xe4\\x46\\xe4\\x2f\\x9d\\x70\\xc2\\x8f\\x2c\\xf1\\xe5\\xa2\\x74\\x81\\xdc\\x9b\\x6e\\x52\\x22\\xfa\\x59\\x46\\x6e\\x22\\x00\\xb4\\xc0\\x1c\\xad\\xb1\\x0c\\x18\\x88\\x8e\\x18\\xa8\\x61\\x8f\\x3d\\xec\\x21\\xe7\\x28\\xf5\\x43\\xd5\\xc3\\x2e\\x4f\\xc4\\x9a\\x76\\x20\\x01\\xc8\\xe6\\x61\\x10\\xf4\\x59\\x5a\\x3e\\x0f\\x63\\x65\\xe7\\xcf\\x1c\\x77\\x44\\xae\\xa4\\xe9\\x21\\xc9\\xe0\\x9b\\x1b\\x94\\x9c\\x4e\\x06\\xe2\\x8f\\x37\\x14\\xda\\x4b\\xc9\\xe0\\x2b\\xa5\\x78\\x6b\\x49\\xb8\\x74\\x05\\x81\\x29\\xc1\\xba\\x30\\x4c\\xa6\\xc2\\x99\\x57\\x43\\x07\\xd9\\x00\\x79\\x4a\\x7a\\x6e\\x3c\\xb2\\xda\\xf2\\x23\\xa7\\x1d\\x10\\x3b\\x49\\x81\\xe9\\x6f\\xf0\\x56\\xc3\\xcb\\xe3\\x35\\x21\\xb8\\x28\\xff\\x47\\x4e\\x37\\xe0\\x2b\\x19\\xa9\\x0d\\xa9\\xbb\\x90\\x4e\\x9d\\x26\\x03\\xfb\\x1b\\xb0\\xa1\\x6f\\x61\\x5c\\x07\\x0e\\xb5\\xff\\xfb\\x1c\\xec\\x2a\\xf7\\xb0\\xa8\\x23\\x87\\x62\\x35\\x07\\x23\\x86\\xa3\\x2e\\xc2\\x9f\\x0a\\xf2\\xcd\\x42\\x7a\\x49\\xf3\\x5d\\x1b\\x34\\x4a\\x00\\x7b\\x2f\\x0f\\x22\\x35\\x8c\\x28\\x0f\\x23\\xc0\\x06\\x61\\x9c\\x86\\x66\\xa2\\xa2\\x9a\\x92\\xc2\\x72\\x62\\xc9\\x15\\x3a\\x63\\x8d\\x5a\\x5b\\x01\\x88\\x05\\xac\\x5c\\x60\\x24\\xef\\xb7\\xc5\\x51\\x30\\xd3\\x35\\xe2\\x1c\\xff\\x38\\x2d\\x60\\x1d\\xfd\\x16\\x93\\x0c\\x8e\\xa9\\x08\\x2a\\x19\\x80\\x22\\xcf\\x52\\xbc\\x68\\xe4\\x3e\\x0b\\xbb\\x8f\\x1b\\xd6\\xe1\\x2e\\x0e\\xf4\\x4f\\x46\\x60\\x07\\x61\\x97\\x62\\x2f\\x90\\xd6\\xb9\\xd4\\x53\\xf3\\x32\\xb1\\x5b\\x4c\\x01\\x2d\\x39\\x54\\xc1\\xff\\x00\\xba\\x72\\x1b\\x4a\\xa4\\x62\\x36\\x10\\x13\\x96\\xc0\\x9d\\xbf\\xcc\\x75\\x7d\\xb9\\x0c\\xd0\\x81\\x18\\x99\\xf3\\x68\\x9a\\xa8\\xb4\\x1c\\xd7\\xfb\\x7b\\x59\\xd3\\x11\\x2c\\x90\\x95\\x03\\xd3\\x5e\\x9e\\xa5\\xef\\x4d\\x2c\\x52\\x22\\x69\\xf9\\x16\\x23\\xb3\\x12\\xa8\\x22\\xe9\\x75\\x0a\\xaa\\xf3\\x09\\xeb\\x74\\x51\\x9b\\x89\\x51\\xe3\\x5b\\x85\\xe3\\x6a\\x51\\x0a\\xa8\\xf9\\xed\\xa8\\xea\\x14\\xdf\\x5d\\x68\\x82\\x02\\xcf\\xcc\\x46\\x01\\x60\\xdd\\x34\\x51\\x08\\x4d\\xb7\\xfb\\x6b\\x73\\xa7\\xb3\\xf3\\xca\\x74\\x14\\xff\\x86\\x8e\\x8f\\x65\\x3d\\xbe\\xdd\\x33\\x5b\\xad\\xcb\\x15\\x0d\\xf7\\x73\\x5b\\xab\\x75\\x92\\x01\\x4c\\x47\\x0c\\xe2\\xdb\\x01\\x88\\xfe\\xba\\xb1\\xfe\\x7c\\x80\\xa7\\x7e\\xf9\\x08\\x16\\xe4\\xc1\\x59\\xdb\\x73\\xfe\\xb7\\x6d\\x3f\\xb8\\x74\\xfc\\xd8\\x14\\x68\\x5e\\x19\\x0c\\x0f\\x2f\\x92\\xcc\\x67\\xd5\\x2c\\x7a\\x5f\\x0a\\xc6\\x75\\x5c\\x90\\xaa\\x1a\\x76\\x29\\x95\\xd0\\xfe\\x90\\x88\\x0a\\x51\\x01\\x3b\\x88\\x90\\xc8\\x4a\\xe2\\xd2\\xfa\\x56\\x54\\x6c\\xf7\\x23\\xdd\\xe3\\xc3\\x5c\\x58\\x73\\x02\\x1f\\x30\\x69\\x45\\xe4\\x7d\\x75\\x3f\\x17\\xbb\\x0a\\xd6\\x81\\x2d\\x46\\x76\\x53\\x45\\x7d\\x05\\x2d\\x73\\xf6\\xae\\x43\\x54\\x4d\\xaa\\x48\\xc2\\x7e\\x22\\x9f\\xb3\\xe7\\xab\\x69\\xc8\\x0d\\x33\\x79\\x97\\xab\\x65\\x61\\xb2\\xdf\\x99\\x19\\x00\\x5a\\x82\\x90\\xf0\\x0a\\x16\\x94\\x41\\xc8\\x67\\xf9\\x85\\xe2\\x60\\x72\\xb3\\xdb\\xaa\\x46\\xbb\\xe5\\xa2\\x0f\\xb2\\xcc\\x66\\x2b\\x7b\\x05\\xad\\x5e\\xc4\\x29\\xd4\\x9d\\x8b\\xd7\\x4b\\x05\\x76\\x82\\xd3\\xbb\\x1d\\xb5\\x42\\x4c\\xa7\\xc7\\xc9\\x31\\x42\\x4c\\x34\\x44\\x93\\xd1\\x26\\x74\\x49\\x81\\x06\\x9f\\xed\\x22\\x6e\\xa4\\x81\\xec\\xf2\\x91\\x42\\x10\\x23\\x61\\x5a\\xaf\\x1d\\xf7\\x12\\xc5\\xfd\\xb1\\xc5\\x74\\xb7\\x0e\\xcd\\xf8\\x0b\\x09\\x48\\x73\\x68\\x18\\x34\\x99\\xb3\\xcd\\xdf\\x67\\x76\\x92\\x88\\x63\\x34\\xbb\\x59\\x36\\x69\\x77\\x49\\xda\\x26\\xf9\\x5a\\x1c\\xa2\\x40\\x6f\\x9b\\x2c\\x97\\x5a\\x65\\x5c\\xc0\\x24\\xaa\\xf0\\x94\\x20\\x5e\\x89\\x24\\x89\\xbf\\x89\\x77\\xcd\\x12\\x2d\\x48\\x96\\xcc\\x88\\x1c\\x72\\x6f\\xe8\\x87\\xd2\\x12\\x0f\\xff\\xc4\\x3e\\xa4\\x3b\\x6a\\x87\\x20\\x1e\\xd8\\xbf\\x30\\x45\\x3c\\x9a\\x3b\\x1b\\x97\\x06\\xa3\\x25\\xda\\x2c\\x6a\\x37\\x0a\\xd2\\x82\\x31\\x6a\\xc5\\x60\\x08\\xa5\\xa0\\xa1\\xa4\\x22\\x97\\xe0\\xfa\\x5c\\x88\\xc2\\x9d\\x85\\xd2\\xa0\\xf0\\xdd\\xcf\\x2a\\x20\\x3c\\x71\\x06\\xad\\x01\\x24\\xf0\\x2b\\x19\\x40\\x2b\\x8d\\x11\\x17\\x86\\xa3\\xc5\\xf8\\x50\\x0a\\x69\\x4a\\xac\\x4d\\xfe\\x38\\xfb\\xa4\\x49\\xa0\\x7f\\x45\\xd9\\x40\\xa8\\x30\\x18\\x1e\\x3d\\x5c\\x5f\\xf6\\x8f\\x37\\xe5\\xf9\\x30\\x02\\x38\\x3e\\x2f\\x2d\\x97\\x9c\\xca\\x77\\x0a\\xff\\xf5\\xb0\\xa5\\x12\\x4b\\x9f\\x99\\x20\\xc7\\xc1\\x6f\\xfb\\xd0\\xfc\\xe4\\xa3\\x4e\\x85\\xd7\\xbe\\x1e\\x49\\x8d\\xe4\\xa7\\x81\\x7d\\x76\\xb1\\xc0\\xd0\\xff\\xa9\\xac\\x70\\x54\\xe4\\xad\\x03\\x68\\x11\\xbc\\x9a\\xf4\\x39\\x78\\xbf\\x70\\xd9\\xa7\\x59\\x0e\\x0d\\xec\\x0d\\x98\\x3c\\xea\\x9b\\x44\\xf3\\x1c\\x7c\\xc0\\xcd\\x19\\xd4\\x87\\x07\\xde\\xcc\\xeb\\x0d\\xd8\\x11\\x46\\xcd\\x5c\\x6b\\x46\\xeb\\x38\\xa1\\x77\\xa0\\x31\\xc9\\xc9\\x30\\xa2\\x37\\x12\\xc9\\x83\\x42\\x14\\x81\\x84\\x99\\x2b\\xad\\x89\\x17\\x63\\x80\\x1f\\x3d\\xd8\\x68\\x6e\\xbe\\x80\\x5f\\x95\\x1b\\x9f\\xe4\\xd5\\x08\\x0c\\x38\\x56\\x5c\\x9f\\x83\\x78\\x8b\\xc9\\x8f\\x9d\\x1b\\x31\\x0e\\x01\\xeb\\x42\\x06\\x03\\xe7\\x2e\\xb6\\x00\\xb5\\x33\\x6f\\xd8\\x9d\\xdd\\x44\\xb1\\x7a\\xf8\\x83\\xf7\\x2b\\xd1\\x4b\\xd3\\x0a\\x03\\x68\\xec\\xa6\\x5b\\x0f\\x24\\x14\\x16\\x59\\xc9\\xe2\\x95\\x1c\\x15\\x3f\\x3f\\x38\\x57\\x4f\\x58\\x7b\\x60\\xf8\\xdd\\x03\\xcf\\x85\\x29\\x8d\\x7e\\x72\\x90\\x91\\x0f\\x0e\\x58\\x4a\\x9d\\x38\\x02\\x06\\x17\\xf1\\x04\\x1d\\xdd\\xb3\\x02\\xee\\x40\\xe2\\x7c\\x83\\x9d\\xfb\\xa0\\xff\\x45\\x32\\xe3\\x5b\\xf4\\x6d\\xce\\xc7\\x0a\\x27\\xc2\\x9e\\x8a\\xac\\xb1\\x77\\x9d\\x37\\x11\\x3e\\x09\\x00\\xc4\\xde\\x93\\x79\\x77\\x3f\\x8d\\xbd\\x0c\\x5a\\x31\\xc0\\x63\\xe1\\x4d\\x4a\\x68\\x8d\\x59\\x2c\\x82\\x94\\x74\\x1f\\x45\\xc8\\x41\\x0c\\x1e\\x9d\\xab\\x75\\x56\\x84\\x37\\xae\\x6a\\x3d\\x8a\\xa6\\xb3\\xdb\\x38\\x46\\x82\\x0f\\x43\\xd8\\xbd\\x2e\\x14\\xb9\\x25\\xe8\\x08\\x41\\x0c\\x56\\x08\\xc4\\xd4\\xad\\x04\\x06\\x1d\\x2c\\x41\\x9d\\xd6\\x7b\\xe9\\x50\\x42\\xd3\\x18\\x27\\x23\\x4e\\x58\\xa3\\x6c\\x9c\\xdb\\x60\\xc1\\x10\\xfb\\x16\\xad\\x97\\x0f\\x02\\x77\\x04\\x91\\xa3\\xe8\\x22\\x81\\x9e\\x20\\xf2\\x16\\x69\\x01\\x04\\xa9\\x52\\xf2\\xa3\\xc5\\x0a\\x88\\xc6\\x87\\x3d\\x95\\xbb\\x5d\\xe0\\xd7\\x2f\\x35\\xc6\\x9a\\xa0\\x8d\\x57\\xf6\\x6c\\x8d\\x60\\x52\\x9d\\x46\\x76\\xe6\\x8a\\x60\\x0a\\x48\\x99\\xa0\\x65\\xb3\\x32\\xd2\\xd9\\x60\\xdc\\xb3\\x20\\x13\\x0d\\xb0\\x09\\x94\\xb5\\x92\\x42\\x51\\x60\\x88\\xa9\\x09\\xbc\\x08\\x3f\\xaf\\x80\\x38\\x47\\x5d\\x1e\\x09\\x64\\x96\\xc0\\x1f\\x58\\xbd\\x03\\x66\\x8b\\x15\\xa2\\x00\\x3f\\xcc\\x58\\x61\\x86\\x18\\x36\\x4a\\x74\\x80\\x01\\x57\\x0f\\xc7\\x76\\xe1\\x43\\x5d\\xe0\\x81\\xaf\\xdc\\xe4\\xbf\\xed\\xf1\\x8e\\x97\\x9f\\xc8\\x2d\\xc5\\x59\\xfa\\xef\\x3a\\x38\\x5d\\x01\\x68\\x75\\xf2\\x63\\x3f\\xd8\\xd7\\xe2\\x54\\xd3\\xa2\\xeb\\x1e\\x87\\x4e\\xde\\x82\\xc3\\xf0\\x61\\x9e\\x5e\\x16\\x8f\\x4f\\x9e\\xb1\\xcd\\x9f\\x19\\x73\\x0b\\xd0\\xe5\\xd9\\x82\\xf0\\xea\\x2c\\x54\\xab\\xb0\\xf7\\x91\\x76\\x07\\xc6\\xf3\\x9a\\xec\\xdf\\x6e\\x55\\xda\\xaa\\xc4\\xdf\\x4f\\xb5\\x2a\\xfc\\x73\\x1d\\x59\\x92\\x4c\\x63\\xb2\\x59\\xa1\\x79\\x15\\x7d\\x62\\x6c\\xab\\x60\\xea\\xc8\\x25\\x49\\x92\\xa4\\xb7\\x52\\xb1\\xe9\\x59\\xc7\\x24\\x26\\x7b\\x92\\x15\\xe1\\x82\\xb1\\x68\\xfc\\x90\\x19\\xe9\\x66\\x11\\x7a\\x86\\x71\\x05\\xb9\\xe4\\x3f\\x47\\x46\\xa9\\xe5\\x13\\x35\\x59\\xc1\\x60\\x0b\\x5f\\x3b\\x11\\x6b\\x98\\x6b\\xc0\\x41\\x28\\xd4\\x21\\x23\\x9e\\x83\\x71\\xaf\\xa8\\xa3\\x34\\x56\\x79\\x15\\xe0\\x72\\x55\\x3f\\xa3\\xbb\\xc4\\x39\\x50\\xe4\\xa9\\xbc\\xe9\\x01\\x03\\xd3\\x69\\x41\\x9b\\x08\\x77\\x4e\\xf1\\x33\\x23\\x9d\\x11\\xe0\\x7a\\x70\\x9e\\x19\\xb0\\x1e\\xef\\xed\\x81\\xc9\\x5c\\xca\\x66\\x65\\x13\\x4b\\x34\\x8c\\x00\\xa6\\x00\\xad\\xe2\\x4a\\x9d\\x9d\\x07\\xa0\\x70\\x55\\x8d\\x16\\x00\\x54\\x01\\x42\\x04\\x48\\x93\\xb2\\xff\\xa4\\xaf\\xc1\\x78\\xbd\\x4f\\xe9\\x7b\\xb5\\x03\\xa1\\x30\\x00\\x65\\x50\\xb3\\x2c\\x84\\x5e\\x86\\xba\\x30\\x36\\xd0\\x5c\\x76\\xe5\\x42\\xe7\\xdb\\xc0\\x80\\x64\\x0f\\x46\\xba\\x0b\\xd1\\xfb\\x31\\xb4\\x80\\x76\\x02\\x42\\x70\\x55\\x2d\\x0b\\xf1\\x3e\\xcd\\x9d\\x53\\xfc\\x15\\x62\\x74\\xd0\\x10\\xac\\x91\\x56\\x5d\\x20\\xf2\\xfc\\xfc\\xe2\\xb1\\xd0\\x38\\x2b\\x00\\xb7\\xb0\\x69\\x0f\\x07\\x03\\x6d\\x9c\\x5c\\x9c\\x42\\xe9\\x1f\\x98\\xce\\xec\\x5d\\xb7\\x4e\\x8f\\x99\\x30\\x6a\\xdf\\x02\\xab\\xcb\\x7e\\xcc\\x56\\xb7\\x39\\xb7\\x53\\xe1\\x67\\x3f\\xeb\\xbf\\x35\\x54\\xad\\x40\\x6d\\xd8\\x1b\\xd9\\x76\\xce\\xca\\xa8\\xfb\\x07\\xfa\\x2e\\xc9\\xda\\xd4\\xf8\\x1a\\xf4\\xee\\x9d\\x3b\\xaa\\x31\\x12\\x57\\xbc\\x31\\x1b\\xc3\\xb2\\xdc\\x55\\x83\\x6d\\x4e\\xcb\\x42\\x68\\xb5\\x83\\x61\\x9c\\x99\\x40\\x5a\\x90\\x0e\\xe4\\x3a\\x07\\x23\\x6d\\xdc\\x7d\\xc0\\xdc\\xa1\\xe2\\xb6\\xce\\x79\\x13\\x72\\x00\\xe7\\xd7\\x49\\xc7\\x54\\x0e\\xce\\xbc\\x96\\x25\\xd7\\xa6\\x3e\\x6d\\x9c\\x6b\\x17\\x12\\x48\\x75\\x93\\xc3\\xb6\\x42\\x4b\\x71\\x95\\x03\\xb4\\xa3\\x2c\\xac\\x8c\\xc2\\xad\\x89\\x0d\\x93\\x1d\\x98\\x3a\\xc4\\xbb\\xcc\\x8b\\xb8\\x47\\xa8\\xa3\\x8d\\xde\\x1b\\xec\\x57\\x54\\x19\\x01\\x22\\x4c\\x25\\x2f\\xf7\\x35\\x13\\x63\\x7c\\xd9\\x95\\xde\\x80\\xe1\\x06\\x6f\\x7a\\x8f\\xc5\\xa1\\xa1\\xf6\\x8a\\x56\\xff\\x51\\x6f\\x8f\\x55\\xb5\\xfd\\xff\\x72\\xff\\x7b\\xdf\\xfd\\x78\\xa6\\x3d\\xc5\\xc9\\xd0\\xea\\x96\\xad\\xee\\x78\\xe6\\x1f\\x04\\x31\\x11\\x4d\\xed\\x36\\xfe\\x6e\\x2b\\xa2\\x36\\xd0\\xb4\\x34\\x69\\x5c\\x74\\x5f\\x9e\\xb6\\x15\\x7a\\xd5\\x67\\xe1\\xef\\x45\\x43\\xa8\\xf0\\x9e\\x7a\\xd8\\xf5\\x29\\x55\\x0d\\x3c\\x74\\x13\\xe9\\x7a\\x0a\\x80\\x3a\\x0a\\x9d\\x94\\xb6\\xa7\\x7e\\x4b\\xf7\\x52\\x94\\x85\\x31\\xf2\\x5e\\x26\\xa6\\xcb\\x4c\\x72\\x76\\x3d\\xa8\\x61\\xa0\\x7a\\x34\\x0b\\xd8\\x5d\\x39\\x20\\x68\\x82\\xfb\\x49\\x4c\\x6c\\x57\\x48\\x55\\x2a\\xf7\\x28\\x03\\x16\\x58\\x61\\x7d\\xa2\\x12\\x8a\\x79\\x3d\\xc8\\xdb\\xdb\\x40\\x23\\x83\\xee\\x02\\x1c\\x45\\xab\\x46\\x83\\x5a\\xc8\\x22\\x2c\\xd9\\xd3\\xc2\\xe0\\x3a\\xbc\\xe0\\x95\\x5d\\xc2\\xe2\\xd7\\x82\\x00\\xb7\\xad\\x70\\x44\\xb4\\x52\\xc2\\xbe\\x99\\x41\\x2f\\x18\\x71\\xc4\\x30\\x30\\x71\\x80\\x2c\\x0f\\xf8\\x23\\xe1\\x59\\x3b\\x9f\\x60\\x70\\xe8\\xc1\\x76\\x4a\\x31\\x06\\x77\\x20\\xaf\\x1d\\x49\\xb9\\xc6\\x63\\x3a\\x40\\x8e\\xe7\\x67\\x4d\\xaa\\x62\\x57\\x31\\x28\\x6d\\xce\\xed\\xe7\\x07\\x13\\xb9\\x7e\\x96\\xa9\\x13\\x5a\\x5c\\x21\\x4c\\xb3\\x35\\x7d\\xb5\\x75\\x91\\x97\\xc9\\x29\\x48\\xba\\xc5\\x05\\x85\\x43\\xb6\\xa0\\xbf\\xd0\\x11\\x40\\x92\\xa9\\xe1\\x56\\xde\\xe0\\x56\\x62\\xfd\\x08\\xa4\\x82\\x45\\x15\\xe0\\x0f\\x19\\x6d\\xdb\\xc6\\x0b\\x2d\\x20\\x29\\xb2\\xa4\\x01\\x09\\x2d\\x7b\\x67\\xa5\\xe8\\x94\\x45\\x66\\x3c\\x11\\x55\\x02\\x46\\xcd\\x70\\x48\\x64\\xc0\\xc2\\xd6\\x31\\xdc\\xbf\\xdc\\x1b\\xef\\x8b\\x43\\xf2\\x46\\xf3\\xa4\\x65\\x4d\\x17\\xd1\\x13\\x88\\xe5\\x35\\x4e\\xb7\\xd1\\x24\\x12\\x40\\x35\\x29\\xea\\xf5\\x82\\x61\\xcf\\xdd\\x9c\\x13\\x93\\xa4\\xb8\\xbd\\x87\\xd2\\xe7\\x5f\\x56\\x9e\\x96\\xa7\\x5a\\xba\\x4c\\x4b\\x0a\\x9a\\xab\\xab\\xa3\\x4a\\xef\\x29\\x1a\\xa0\\x70\\xc1\\x63\\xdc\\x0a\\xe2\\x42\\xa4\\xa0\\xbd\\xe2\\x50\\xa6\\x09\\x25\\x49\\x16\\x4a\\x74\\x99\\xff\\x31\\xb1\\xfa\\x4b\\x6c\\xad\\xc3\\x54\\xc9\\xd3\\xcd\\xde\\xa8\\x9d\\x1b\\xbc\\xbc\\x5b\\x13\\x38\\x4c\\x9c\\xb5\\x49\\xf4\\x5f\\x84\\xb5\\xb4\\x0c\\x1d\\xdb\\xc9\\x47\\xa0\\x6e\\xd2\\x07\\x91\\x7b\\x40\\xc5\\x09\\x92\\xf6\\x8d\\xe8\\x18\\x62\\x4c\\x06\\xa5\\xa0\\x68\\xb9\\x5c\\x9a\\x7d\\xd0\\x30\\x70\\x01\\x34\\x48\\xd0\\x30\\xd4\\xa4\\xcd\\x5c\\x33\\x0c\\x03\\x14\\xc8\\x33\\xd9\\x86\\x0d\\x8b\\x29\\x9a\\x7e\\x61\\xb0\\xe2\\x5e\\x3f\\x5c\\x9a\\xc9\\x54\\x71\\xbc\\x26\\xbd\\x85\\x10\\x6c\\x51\\xa2\\x74\\x4c\\x86\\x07\\x8d\\xef\\x8b\\x2c\\x15\\x31\\xbc\\xc7\\xc4\\xd2\\x89\\x23\\xf2\\x23\\x3c\\x46\\x53\\x29\\x59\\xbd\\x0a\\x48\\xad\\xec\\x00\\x04\\x6d\\x17\\x7e\\xcb\\x3f\\xf7\\x80\\x4d\\x4f\\x3b\\xe1\\xce\\x12\\x54\\xd3\\x83\\xb5\\x92\\x0f\\x58\\x10\\xca\\x15\\xd5\\xac\\xde\\xf7\\xb6\\x26\\xcb\\x19\\xa5\\xad\\xa5\\x90\\x41\\x73\\xb4\\x89\\x1f\\xce\\xa1\\xe3\\xfb\\x64\\x3e\\x57\\xc9\\xa6\\xda\\x40\\x3f\\xa1\\x43\\xde\\x09\\x1b\\x10\\x3a\\x12\\x0a\\xd4\\x80\\xe8\\xb3\\xb0\\x89\\x0f\\xde\\xe1\\xdd\\x3b\\x0a\\xcb\\xd0\\x6a\\x11\\x9e\\x2f\\x89\\x44\\x6e\\x9f\\xd7\\x3a\\x20\\x3f\\x19\\xfa\\xd5\\x61\\x13\\x94\\x20\\xed\\x39\\x25\\x77\\x24\\xdc\\x5e\\xdb\\xbc\\xdb\\xb7\\x7b\\x6a\\xcb\\x10\\x5b\\xe7\\x45\\x0f\\x65\\xaf\\x99\\xf5\\x82\\x2e\\x56\\xec\\xbf\\xb1\\x9f\\x1c\\x6a\\x12\\x30\\xa0\\x36\\xf9\\xd9\\xc8\\xde\\xc5\\x96\\x70\\x43\\x6b\\xcc\\x79\\x91\\xee\\xbe\\x7b\\x15\\xa0\\xc5\\x13\\xbd\\x49\\x3d\\x72\\x79\\xfc\\x47\\xe4\\xf1\\xd4\\x28\\xc5\\x40\\x8a\\xb6\\x23\\x91\\x09\\x54\\x53\\xae\\x84\\xd2\\x7a\\xe3\\x06\\xeb\\xa3\\x86\\xd8\\x20\\x01\\xfb\\xf2\\x61\\x0f\\x82\\x2b\\x14\\x47\\xc2\\x04\\x5b\\x6b\\xd8\\xa6\\xb9\\x68\\x88\\x1c\\x3a\\x94\\xb3\\x41\\x82\\x74\\x28\\x2f\\xac\\x47\\xa3\\x6b\\xc0\\x84\\x4a\\x80\\x38\\xf4\\x60\\xc9\\x63\\x9a\\x3b\\x20\\xa7\\x30\\x7c\\xd4\\xc8\\xd4\\x17\\xd8\\xc0\\xc6\\x75\\x72\\x6d\\xd4\\xae\\x3d\\xb9\\x43\\x05\\x4e\\x03\\xa9\\xb9\\xdd\\x71\\x23\\xe6\\x19\\x75\\x3a\\x64\\x88\\x33\\x41\\xd8\\xa6\\x9a\\xcb\\x56\\xe4\\x9f\\x10\\x8e\\xc9\\x4f\\x6d\\x69\\x52\\x43\\xf4\\xb8\\xa4\\x9e\\x67\\x45\\x13\\x52\\x45\\xc6\\x80\\x78\\x95\\xe2\\x08\\x30\\x1c\\x91\\x59\\xf1\\x22\\x29\\xe6\\x24\\x4a\\x13\\x92\\x88\\x71\\xa1\\x98\\xec\\xed\\x67\\x10\\xf9\\x09\\x5e\\x45\\xa4\\x13\\xfc\\x9c\\x91\\x62\\x90\\x5d\\xfa\\x9e\\x82\\x45\\x76\\xd9\\xfb\\xdc\\x31\\x67\\x95\\xe4\\xbf\\x9e\\x41\\x5a\\x65\\x14\\xb0\\xc1\\x43\\xa7\\x74\\x13\\x37\\x02\\x23\\xbd\\x90\\x99\\xa2\\xaa\\x86\\xf1\\x86\\xdc\\xc8\\x88\\x6d\\xc8\\xfd\\x29\\x0d\\xc1\\x13\\xc5\\x21\\xa6\\x07\\x89\\x1f\\x20\\xa7\\xa7\\xa6\\x96\\x1d\\x93\\xdc\\x0a\\xa2\\x37\\x9b\\x81\\x03\\x8e\\x48\\x9a\\xbb\\x86\\xe0\\xd0\\xeb\\xa1\\x63\\xad\\x21\\x9e\\x46\\x05\\xb0\\x24\\x84\\x6c\\x1f\\x8a\\x4b\\x68\\x76\\x39\\xac\\x94\\x0d\\xa0\\x09\\x86\\x07\\x72\\xda\\xd5\\x6f\\x0c\\x38\\x4f\\xc2\\xf2\\x1c\\xa7\\x2d\\xd4\\xea\\x52\\x5b\\x5a\\x08\\x6e\\x42\\x6e\\x14\\x70\\x76\\x85\\x54\\x38\\xc1\\x38\\x4b\\x4b\\x63\\x9c\\x08\\xd0\\xb7\\x86\\x91\\xcd\\xcc\\xd3\\x50\\xac\\x40\\x12\\xf2\\x53\\xf2\\xef\\xa1\\x9b\\x98\\x78\\x0e\\xf3\\x2b\\xe0\\x8f\\x37\\x89\\xc2\\xc6\\x20\\xfa\\x5b\\xdb\\x4f\\xaf\\xbc\\x48\\xf3\\x9b\\xdb\\x6f\\xaa\\xbc\\x80\\xfc\\x7b\\xd3\\xaf\\x51\\x3e\\xe4\\xf0\\x50\\x9d\\xa5\\xb6\\x8e\\x09\\x76\\x5b\\x4c\\x38\\x2e\\x5f\\xba\\x08\\xee\\x0b\\xac\\x2e\\xb9\\x3a\\x42\\xed\\x1b\\xa6\\xee\\xa5\\x3a\\xfa\\xdb\\x1b\\x68\\x2d\\x5f\\x36\\x32\\xdb\\x1b\\x7d\\xcd\\xc4\\x35\\xc0\\xd9\\x99\\xa8\\x62\\xe3\\x4d\\xa4\\xb7\\x42\\x6a\\xe2\\x4f\\xac\\x6c\\x71\\xbe\\xe3\\xdd\\x34\\x7a\\x59\\x5c\\xdf\\x58\\x01\\x2f\\x9c\\xdb\\x0a\\x32\\xe8\\x58\\x95\\xb3\\xd3\\x10\\xb7\\xed\\x8f\\x91\\x5b\\xee\\x64\\xb1\\x94\\x66\\x47\\xcc\\xc1\\x59\\xc9\\x64\\x7c\\xbb\\x3f\\x33\\xdb\\x0e\\xe6\\x51\\x85\\xe1\\xb1\\x7e\\xbc\\x75\\xb0\\xfd\\x67\\xb9\\x93\\xfb\\x3f\\x25\\xed\\x1c\\x9e\\x2b\\x68\\x2c\\x01\\x9d\\x82\\xa9\\xd9\\x02\\x99\\x88\\x64\\x7d\\x66\\xc2\\xaa\\x4b\\x6e\\xcc\\xa3\\xab\\x95\\xaf\\xc8\\xb9\\x52\\xf0\\x17\\x49\\x61\\x14\\xd6\\x8e\\xdd\\x2d\\x99\\x7a\\x3d\\xb6\\x7d\\x4b\\xc0\\x2c\\x24\\x5a\\x58\\xb1\\x3d\\x66\\xc2\\xff\\x2a\\x5e\\xbf\\x56\\xc5\\x7a\\x0f\\x36\\x7f\\xdf\\x55\\x16\\x1b\\xf2\\x02\\x93\\xc9\\xaa\\x6e\\x22\\x51\\x47\\xa0\\xba\\x6e\\x22\\x4a\\xf6\\x9b\\x96\\x95\\x3a\\x5d\\x9e\\x2c\\xbd\\x42\\x10\\xd0\\x8b\\xb0\\xe8\\x88\\xb3\\x7c\\xd1\\x14\\x92\\xfe\\x15\\x51\\xd5\\x95\\x53\\x44\\x51\\x6b\\xbf\\xd5\\xd1\\x57\\xdc\\xa3\\x59\\xb4\\x25\\x65\\x55\\xc5\\x54\\x50\\x49\\x97\\x15\\x15\\x7e\\x25\\x5e\\xa3\\x12\\x5d\\x63\\x2b\\x04\\x85\\x8c\\x41\\xbd\\xd0\\x20\\xda\\x74\\x4b\\x6e\\x48\\xe7\\xb8\\x14\\x99\\x52\\x2a\\xa4\\x3d\\x0f\\xc0\\x70\\xa9\\xec\\x39\\x51\\x1c\\xa3\\xd1\\x3a\\x44\\xcb\\xfa\\xae\\x21\\xf0\\xc2\\x04\\x45\\xf3\\xd5\\xc1\\xe7\\x06\\x10\\x42\\x2e\\xa8\\x9e\\xa9\\x6f\\xf4\\x26\\x10\\xb0\\xbf\\x3d\\x5e\\x36\\x9d\\x46\\x61\\x02\\x0a\\x2d\\x43\\x25\\xb8\\x70\\x52\\x12\\x8e\\x14\\x08\\x55\\xfa\\xa8\\xd5\\x8c\\xab\\x45\\x60\\xaa\\x75\\x57\\x8a\\xe6\\x55\\xfd\\x96\\xdb\\x86\\x66\\xfd\\x3f\\x41\\x30\\xaa\\x45\\x3f\\xaa\\x9c\\x17\\x67\\xeb\\x28\\x8a\\xa1\\x8a\\xad\\x53\\xa2\\x91\\x29\\x33\\xbe\\x66\\xfa\\x25\\x42\\x69\\x88\\xae\\xa9\\x43\\x11\\x02\\x52\\x4a\\x4e\\x45\\x33\\xf4\\xe1\\xd2\\x02\\x49\\x95\\x2e\\x24\\x9b\\x93\\x95\\x4c\\x55\\x34\\x54\\xb2\\xd3\\x5c\\x48\\x4d\\x26\\x2d\\x20\\x9f\\x98\\x01\\x49\\x00\\x5f\\x0a\\xae\\xd8\\x61\\x00\\x5c\\x96\\xf4\\xf3\\x84\\x97\\xd2\\x90\\x02\\x65\\x7b\\x4b\\x10\\x02\\x3c\\x66\\x08\\x01\\x13\\x0f\\x19\\x92\\x00\\x7b\\x9c\\xfc\\xf2\\x00\\x7d\\x2e\\xf8\\x64\\x00\\xe5\\x5f\\x4f\\x9f\\x8d\\x90\\x02\\x9c\\x8f\\x14\\x90\\x02\\xaa\\x5a\\x40\\x09\\xf2\\x5c\\x80\\x13\\x7c\\xa2\\x11\\x00\\x32\\xdf\\x34\\x22\\x00\\x43\\x9d\\x96\\x21\\x00\\x9b\\x83\\xd5\\x01\\x00\\x9d\\xe7\\x41\\x44\\x02\\x14\\x82\\x26\\x43\\xc6\\x88\\x05\\xf0\\x63\\x20\\x16\\x6a\\x88\\x30\\x20\\x16\\xa2\\x0b\\xee\\x40\\x24\\x7f\\xe2\\x01\\x17\\x6b\\x5a\\xf9\\xfc\\x84\\x9f\\x40\\x2c\\xb6\\x4f\\xcd\\x2b\\x12\\x4a\\xf4\\xff\\xd6\\x6a\\x7f\\x61\\xab\\xf3\\xfb\\x0d\\x39\\x9f\\xdb\\x20\\xaa\\x69\\x0c\\x25\\xe4\\x96\\x24\\x91\\x31\\xe9\\x84\\x4a\\xba\\x67\\x92\\x6a\\x94\\x04\\x9c\\x24\\x08\\x9b\\xba\\x77\\x9f\\xb8\\xa2\\xf1\\x1c\\x48\\xbd\\x43\\xea\\x34\\x51\\x76\\x8d\\xa4\\x4c\\x22\\x91\\x0f\\x08\\xa6\\x47\\x24\\x2a\\x90\\x01\\x40\\xc9\\x02\\xd4\\x5a\\x23\\x2d\\x01\\x94\\x28\\x67\\x4c\\xf9\\x3a\\x02\\xcf\\x92\\x08\\x99\\x18\\xb9\\xf3\\x02\\x0b\\x88\\x68\\xa0\\xd2\\x8c\\x82\\x21\\x88\\x9d\\xa1\\x8a\\x8a\\x7a\\x01\\xa8\\x2e\\xa1\\xc4\\x8a\\xaa\\x06\\x48\\xc8\\xa1\\x62\\x85\\x52\\x2c\\x28\\x05\\x20\\x94\\x70\\x81\\xc4\\xe7\\x51\\x1e\\x56\\x74\\x59\\xc9\\x67\\x2f\\x1f\\x9c\\x79\\x19\\xf0\\x87\\x58\\x9f\\xfc\\x72\\xf1\\xc8\\xe7\\x55\\x9d\\xbe\\x76\\x01\\xd8\\xa7\\x55\\x39\\xa0\\xf1\\x13\\xa4\\x8e\\x80\\x3c\\x38\\xfa\\xf3\\xab\\x0f\\x00\\x3e\\x74\\xf5\\x73\\xd5\\xcf\\x0d\\x3e\\x68\\xf2\\x33\\xcc\\xcd\\x7d\\x35\\x98\\xd2\\x43\\x31\\x4d\\x16\\x35\\x4c\\xde\\x43\\x61\\x8c\\xc5\\x34\\x4c\\xd2\\xd3\\x43\\x4d\\x46\\x36\\x40\\xcb\\x93\\x75\\x0d\\xce\\x37\\xc4\\xd6\\x63\\x3a\\x0d\\xaa\\x34\\x38\\xd9\\x13\\x20\\x8c\\x82\\x9a\\x4a\\x33\\x84\\x64\\x40\\xc8\\x81\\xba\\xe6\\x9f\\x8b\\xf3\\x29\\xfe\\x58\\xd1\\x7c\\xc5\\x92\\x93\\x7d\\xf2\\x88\\x15\\x39\\x34\\x33\\xee\\xdd\\x54\\xf8\\xb4\\x0c\\x95\\xeb\\x30\\x33\\xe2\\x20\\x32\\xe7\\xc6\\x3d\\x04\\xff\\x18\\x50\\xcf\\xb7\\xbf\\x39\\xf1\\x10\\x30\\x4b\\xd0\\x97\\x92\\x2b\\x1b\\xf4\\xcc\\x40\\xef\\x92\\x62\\x00\\x1e\\x14\\xc4\\x3e\\x28\\xa0\\xa1\\x33\\x26\\x16\\x60\\xcb\\x83\\x32\\xc0\\x5f\\xbf\\x45\\xf9\\x91\\x90\\x1e\\xb5\\x25\\x84\\xba\\x9b\\xc0\\xc9\\xb9\\x9e\\x4a\\x00\\x9b\\x57\\x83\\x4b\\x81\\x98\\x21\\x95\\x5f\\xbc\\xec\\x81\\x2d\\xb0\\xec\\xf5\\xf0\\xe7\\xdd\\xc0\\x25\\x0a\\x47\\xb3\\xf4\\xfc\\x62\\x2b\\xd5\\x7f\\xb7\\xb0\\xef\\xe9\\x52\\x1f\\xf6\\x4f\\x99\\x62\\xfa\\x32\\x33\\xda\\x5a\\xd4\\x19\\x8b\\x6b\\x94\\x8f\\xbb\\x5d\\xe5\\x9d\\x6b\\xb3\\x09\\x9a\\x49\\x6f\\xf7\\x45\\x8b\\x09\\x44\\x64\\xf0\\xee\\x81\\x2c\\x3b\\xa3\\x02\\x54\\x25\\x72\\x2d\\x90\\xde\\xa4\\xe3\\x94\\xad\\xac\\x6d\\x70\\xc2\\x4b\\xac\\xc1\\x9b\\xb2\\xbe\\xb0\\x94\\x81\\x53\\xed\\xeb\\xe9\\x28\\x01\\x58\\x60\\x0a\\x93\\xe2\\x9f\\x27\\x91\\x15\\x35\\x83\\x23\\x2c\\x63\\x8c\\xfd\\x99\\x5c\\x49\\xcd\\x0c\\x40\\x92\\xdb\\xf4\\x50\\x15\\x7a\\xf0\\x85\\xeb\\xd7\\xe5\\xf8\\x17\\x31\\x4b\\x14\\xb4\\xb1\\x11\\x87\\xfd\\x96\\x20\\x8c\\x82\\x79\\x2e\\x17\\x0e\\xc6\\x7a\\x42\\x21\\x39\\xf1\\xa0\\xbf\\x81\\xa6\\x2e\\xf3\\x1a\\x34\\x68\\xbe\\xae\\x1c\\xbc\\x73\\xd2\\x10\\xfa\\xd1\\x30\\x7d\\xdd\\xd9\\xc3\\xfd\\xa1\\x44\\xe4\\x4c\\x84\\x00\\x14\\x98\\xcc\\x3a\\x66\\x56\\xeb\\xd4\\x48\\x29\\x75\\xa6\\x12\\xf0\\x63\\x22\\xb0\\x8c\\xe0\\xfd\\x7a\\x23\\x88\\x52\\xb9\\xd9\\xa0\\xa4\\xf5\\xbb\\x13\\x68\\xc1\\xc6\\xa3\\x3a\\x52\\xa4\\x6b\\xa0\\x42\\xbc\\xd5\\xc4\\xc1\\x74\\x47\\x83\\xda\\x8f\\x93\\x13\\x01\\x0c\\x4d\\x7c\\x92\\x16\\xca\\xf3\\xe9\\x04\\x98\\xcc\\xb0\\xf4\\x29\\x88\\x01\\x26\\xe2\\xfe\\x49\\xa7\\x2e\\x85\\x64\\x68\\x50\\x1e\\x85\\x6f\\xcc\\xa4\\x8c\\xd8\\xc8\\x46\\x8a\\xcb\\x33\\xd1\\x5b\\x10\\x50\\xf4\\x59\\x94\\xc3\\x99\\x59\\x83\\x61\\xb9\\x87\\x4b\\x33\\x58\\x39\\x9a\\xbc\\xc8\\xd5\\xde\\xc5\\xeb\\x8d\\x8b\\xd6\\x79\\x41\\x0e\\xd9\\x14\\x41\\x91\\x5f\\xf2\\x2b\\x50\\x84\\xdf\\xa8\\x42\\x6b\\xd4\\x2e\\x66\\xd4\\xb4\\xc5\\xa8\\x4c\\xbb\\xa9\\x79\\x67\\x52\\xf2\\xce\\xa5\\xe5\\x8d\\x0b\\x4b\\x1a\\x16\\x94\\xf4\\x2d\\x28\\xe8\\x5a\\x4f\\xd0\\x94\\xdd\\xa1\\x19\\xb3\\x42\\xa6\\x7d\\x0a\\x98\\xf3\\x2a\\x5e\\xcc\\xa9\\x6b\\x30\\xb9\\x6b\\x32\\x32\\xce\\x64\\x65\\x9c\\xc8\\xca\\x99\\x11\\x94\\xb2\\x0b\\x94\\x32\\x25\\x38\\x62\\x4a\\x70\\xc4\\x94\\xdb\\x89\\x04\\xd1\\x89\\x04\\xc9\\x89\\x04\\xbf\\x99\\xe6\\x0a\\x10\\x89\\x62\\x77\\x30\\x62\\x2f\\x2e\\x66\\x39\\x6d\\x73\\x32\\xb1\\x0e\\x96\\xb1\\x0e\\x96\\xb0\\x0e\\x95\\x70\\x25\\x29\\xe0\\x4a\\x51\\xbc\\x94\\x9f\\x78\\x74\\x9b\\x78\\x74\\x97\\x78\\x74\\x95\\x79\\x0b\\x41\\x78\\x73\\x37\\x78\\xf6\\x66\\xf1\\xec\\xbd\\xc3\\xd9\\x4b\\x86\\x32\\x37\\x0c\\x63\\xad\\x18\\xc5\\xda\\x31\\x88\\xb4\\x63\\x07\\x68\\xc5\\xfa\\xd1\\x8b\\xa5\\xa3\\x16\\x1b\\x08\\x56\\x1b\\x0a\\xab\\xb5\\x8f\\x57\\x6b\\x1e\\xad\\xd6\\x3d\\x5b\\xac\\x7a\\xad\\x59\\x22\\xa9\\x59\\x55\\x4a\\xa1\\x15\\x42\\xa1\\x2a\\x75\\x42\\x5c\\xba\\x84\\xb9\\x35\\x09\\x72\\x2a\\x10\\x71\\xaa\\x10\\x70\\x69\\x09\\x70\\x29\\x09\\x40\\xb3\\x3a\\x03\\x99\\xd0\\x1c\\xce\\x80\\xe4\\x74\\x02\\x91\\x17\\xf5\\x27\\x2f\\xea\\x46\\xbf\\xa9\\x1a\\xef\\xc8\\xee\\xec\\x8e\\xee\\xc8\\x8e\\xdc\\xa4\\x0a\\x4c\\x5d\\xb4\\x99\\x76\\x52\\x65\\xed\\x41\\x33\\xdb\\x22\\xbd\\xa8\\x18\\xf4\\xc8\\xa8\\xe0\\x34\\x7f\\xce\\x45\\xff\\x39\\x15\\x1a\\x71\\x54\\x39\\xdf\\x8a\\xe1\\x7e\\xe4\\x6b\\xed\\x72\\x15\\x3f\\x11\\x54\\x31\\x14\\xb8\\x8a\\x8f\\x88\\xae\\x38\\x0a\\x99\\x80\\xb7\\xb8\\x0b\\xfb\\x01\\x67\\x89\\x0e\\x78\\x0a\\x33\\x80\\xbf\\xf0\\x16\\x77\\xe2\\xb9\\x05\\x01\\x19\\x60\\x92\\x65\\xa5\\xaf\\x7b\\xbc\\x5a\\xeb\\xc5\\x4f\\xbc\\x55\\x0b\\x85\\x5c\\xb8\\x54\\x7b\\x85\\x6e\\xb8\\x54\\xbb\\x85\\xbc\\xb4\\x5f\\xd6\\x8b\\xb0\\x68\\x28\\xa8\\x47\\xdc\\x32\\xb8\\xc3\\x08\\x80\\x1a\\x0a\\xf8\\x6b\\x82\\xfe\\x11\\xdc\\x04\\x76\\x84\\x90\\xf1\\x1b\\x58\\x25\\x98\\x5e\\xd6\\x9d\\x61\\x76\\xcb\\x7c\\x29\\x00\\x75\\x8f\\x5b\\xde\\x37\\xc3\\x46\\xfc\\x4b\\x13\\xb3\\xa8\\x7f\\xbc\\xb0\\x81\\x82\\xa5\\xd6\\x61\\xa0\\xe4\\xe0\\x9a\\x0b\\x14\\x4a\\xff\\x33\\x91\\xc7\\x62\\x12\\xfc\\x7a\\x7d\\x6b\\xc5\\xdc\\x62\\x4e\\x04\\x23\\x4c\\x62\\x82\\x05\\x6b\\x22\\x40\\xa7\\x5e\\x23\\x40\\xdd\\xd9\\x00\\xcc\\x06\\x51\\xe8\\x8d\\x9d\\xb0\\xa2\\x20\\x6d\\xe0\\xd0\\x94\\x8e\\xe1\\xc0\\x64\\xa5\\x0f\\xf9\\x60\\xe2\\x01\\x71\\x79\\x80\\x44\\x5a\\xa6\\xb2\\x16\\xa9\\xcf\\x13\\x72\\x21\\xfc\\xf2\\xd8\\xb2\\xed\\x06\\xce\\xf9\\xad\\xbf\\x6e\\xa9\\xb6\\xce\\xc4\\xfa\\xf6\\x12\\xa1\\x64\\x8e\\x9b\\xd8\\xea\\x5d\\x44\\x4b\\x23\\x71\\xc9\\x96\\x48\\x60\\xe3\\x0a\\xb2\\x43\\xc3\\x44\\xa6\\x59\\x0b\\x78\\x41\\xa8\\x40\\xad\\x30\\x78\\x1e\\xf9\\xa0\\xdf\\xe7\\xad\\x23\\x1a\\xc0\\x2b\\xc8\\x00\\xa2\\xa0\\x05\\xff\\xf2\\xa8\\x7f\\x2a\\xa1\\xec\\xb4\\x3e\\x4b\\x45\\xda\\xb9\\x1d\\x0a\\x7d\\xd0\\xb1\\xdc\\x2a\\xef\\xbe\\xb2\\x3b\\x8b\\x7b\\xb6\\xad\\xfb\\x0b\\x8b\\xa8\\xb5\\x1a\\x4a\\x87\\xa0\\xbe\\xb3\\x94\\x13\\x35\\x7e\\x65\\xa8\\x7e\\x4a\\xa9\\x63\\xaa\\xc7\\xda\\x8b\\xbd\\x8c\\x9a\\x4a\\x3e\\xe3\\xc4\\x87\\xd4\\x7d\\xde\\x6a\\xb4\\x1e\\x6e\\xc4\\x8f\\xd3\\x6a\\x4e\\x9c\\x6b\\xa8\\x31\\x88\\x3c\\x70\\x5a\\xe2\\xbd\\xb5\\x4f\\x6b\\x8b\\x91\\xde\\xfd\\xee\\x47\\xcb\\x5d\\x2c\\xb5\\xe6\\x8a\\xcc\\x89\\x95\\x97\\xd2\\xa6\\x4c\\xad\\x3c\\xcf\\x08\\xaf\\x96\\xd9\\x87\\x3e\\x1b\\xdf\\x32\\xe4\\xcb\\xdc\\x39\\x12\\x20\\x4e\\xe5\\x97\\xa9\\x94\\x67\\x65\\x65\\x19\\x84\\xe3\\x2a\\xcc\\xc0\\x43\\x68\\x11\\x75\\x74\\x35\\x23\\x29\\x0b\\xe1\\x03\\xd7\\x09\\x93\\xe9\\xc1\\x1e\\x60\\x07\\x6f\\xa3\\x0a\\x65\\x5b\\xa5\\xf0\\xe2\\x26\\xa8\\x4f\\x34\\xb8\\xb8\\xd5\\x66\\xc3\\x0a\\xfd\\xdf\\xcc\\xea\\xba\\xd8\\xbd\\x9c\\xe0\\x01\\xaa\\x79\\xc7\\xcf\\x70\\x81\\xeb\\x70\\x34\\x6b\\x01\\xa7\\x8e\\x83\\x32\\xd7\\x49\\x95\\x8c\\xba\\x6c\\x45\\x47\\x54\\x65\\x2d\\xaf\\xf4\\xaf\\xd5\\xd7\\xc8\\x4c\\x4c\\xb8\\x59\\x94\\x81\\x75\\x62\\x33\\xb5\\xb3\\x15\\x3f\\x13\\xc2\\x41\\xeb\\xde\\x4a\\x12\\x50\\xb1\\x2d\\xa8\\x41\\x0e\\x14\\x7e\\xf0\\x89\\x05\\xdf\\xae\\x0d\\x7e\\xcb\\x41\\xaf\\xa5\\x7d\\x3c\\xd4\\x3b\\x4d\\x68\\x75\\x82\\x9e\\x58\\xca\\x45\\x6b\\x22\\x3e\\x49\\x09\\xcd\\x22\\x22\\xc5\\x42\\xab\\xf0\\x98\\x89\\x47\\xcd\\x41\\x6e\\x7a\\x98\\x8f\\x98\\x7a\\xa0\\x0f\\x1b\\x26\\x27\\x9f\\xe9\\x3a\\x13\\x8a\\x3b\\xbc\\xcb\\x7e\\x20\\xbb\\xf9\\x54\\x77\\x49\\x10\\xfc\\xce\\xc4\\x34\\x12\\x45\\x6f\\xe6\\xb3\\x81\\xd0\\xb4\\xfd\\xcb\\x66\\x92\\x1e\\x4a\\xf6\\x6a\\x42\\xc4\\x82\\xd2\\xc9\\x1e\\xe0\\x3e\\x4e\\x58\\x7d\\x83\\x5d\\x80\\xc9\\xd5\\x4b\\x36\\x43\\x1d\\xfe\\x41\\x9d\\xe6\\x41\\x9f\\xfc\\x6b\\x04\\xbe\\x78\\xf1\\xfe\\x94\\x19\\xbd\\x16\\x70\\x5e\\x0f\\xd8\\x67\\xb1\\x31\\x88\\xc7\\x6a\\xe4\\xf6\\x26\\x35\\x6b\\x97\\x5a\\x24\\x0a\\x07\\x91\\xdc\\xd4\\x58\\xc7\\x05\\x95\\x35\\x68\\x94\\x0d\\x33\\x89\\x45\\x00\\x33\\x43\\x66\\x11\\xca\\x5c\\x40\\x71\\x89\\xa9\\x48\\x55\\x30\\x9a\\x06\\x84\\x69\\x6e\\xa3\\x15\\x49\\x19\\x4e\\xcf\\x88\\xa7\\x4f\\xc4\\x91\\xb9\\xd1\\x3f\\x99\\xc8\\x83\\x3e\\x65\\x42\\x78\\x4b\\xc5\\xc0\\x46\\x72\\x0e\\x62\\x6e\\x49\\x16\\x48\\x09\\xd9\\xae\\x10\\xf4\\xe2\\x88\\x21\\xb9\\xe4\\x94\\x5a\\x17\\xb6\\x0c\\x20\\x0c\\x8e\\x1c\\x96\\x6f\\x07\\x92\\x17\\x9f\\x31\\xa7\\x8f\\x48\\xf1\\xb7\\xee\\x92\\xec\\x08\\x44\\xa5\\xae\\x36\\x76\\xb8\\xca\\x5e\\xc1\\xb6\\x57\\x70\\x6c\\x8d\\xae\\x25\\x85\\xe1\\x3b\\xff\\x4e\\x28\\x4d\\xfb\\x72\\x23\\x16\\xf8\\xab\\xc8\\x49\\x45\\xa6\\x12\\x51\\xbc\\x85\\x97\\x33\\x48\\x52\\x2b\\x72\\x63\\x56\\x15\\xe8\\x4e\\xd4\\xd6\\x49\\x81\\x3f\\x64\\x2a\\xc6\\x0c\\x21\\x07\\xc2\\x85\\x44\\x67\\x61\\x51\\x1c\\x23\\x4c\\xfd\\x99\\x34\\x44\\x42\\xfa\\x05\\x11\\x7e\\x95\\x6b\\x6d\\x44\\x14\\xe1\\x81\\x17\\xab\\x24\\x96\\xe5\\x2e\\xb1\\x56\\xd8\\x8e\\x78\\x6b\\x0f\\x85\\x40\\x3f\\x67\\x84\\x72\\x5b\\x5b\\x91\\xac\\x40\\x66\\x84\\x3d\\xfd\\xb4\\x45\\x34\\x14\\xfa\\x05\\xb6\\xc2\\x65\\x7d\\x40\\xe2\\x34\\xef\\xb8\\x8f\\xa7\\x8c\\x7d\\x0b\\xc6\\x3f\\xd3\\xcc\\xec\\xfb\\x3a\\x24\\x3e\\x9d\\x36\\x64\\x53\\x62\\x12\\x23\\xe8\\x8d\\xce\\x33\\x40\\x1a\\x18\\x9f\\x0f\\x1b\\x79\\x65\\x4b\\x64\\xfb\\xc4\\xab\\xe7\\x80\\x10\\xa9\\x6e\\x63\\x09\\xc0\\xad\\xea\\xef\\x33\\x6b\\x21\\x84\\x4c\\x56\\x55\\xb4\\x0d\\x94\\xae\\x61\\xfe\\x7f\\xfc\\x8b\\xfa\\x21\\x73\\x67\\x16\\xb3\\x51\\x92\\x02\\x51\\x26\\x94\\x45\\x8b\\x68\\x11\\x27\\x09\\x11\\x3e\\x7f\\xf5\\xe4\\xa1\\x64\\x62\\xf1\\xdb\\xb1\\x8e\\x27\\xec\\x3a\\x1b\\xe3\\x8f\\xf1\\x95\\x71\\xbf\\x7d\\x8e\\xd2\\x5b\\x4a\\x59\\x59\\x43\\x7e\\xd1\\xf6\\xa8\\x1f\\x70\\x49\\xca\\x18\\x50\\x0f\\x8a\\xe5\\x2a\\xca\\x03\\xe4\\xc1\\x0e\\x50\\x35\\x77\\xcc\\x6c\\x58\\x15\\xae\\x1f\\xe3\\x31\\xa7\\xf8\\xc0\\x69\\xfc\\x00\\xc6\\x0e\\x8f\\xd1\\x36\\x9a\\x25\\x35\\x70\\x7f\\x2f\\x70\\x7f\\x2a\\xae\\x33\\x84\\x7a\\x74\\xbc\\xc7\\x86\\x93\\xc8\\x7d\\x9d\\xc1\\x9b\\x1b\\x23\\x35\\xa0\\x06\\x48\\xd4\\x83\\x49\\x06\\x8b\\xe5\\x5c\\x7c\\x57\\x19\\xf1\\x54\\x67\\xc7\\x97\\x1c\\x1d\\x51\\xe5\\xe5\\x4a\\x8d\\xa4\\x05\\x52\\x79\\xee\\x9d\\x10\\xc7\\xad\\xa1\\x21\\x27\\xad\\xa9\\x9c\\x80\\xe2\\x67\\x2e\\x38\\x5c\\x10\\xc2\\x05\\xf7\\x69\\x60\\x53\\x16\\x29\\x11\\x7c\\xcd\\x20\\x3f\\x40\\xf1\\x97\\xe8\\x19\\x60\\xe5\\x2a\\xcf\\x2d\\xa5\\x20\\x48\\xfb\\xf2\\x85\\xc1\\xfe\\x97\\xa8\\xca\\x94\\x90\\x08\\x6c\\x52\\x9e\\x8f\\x8a\\x01\\x4d\\xd0\\xf0\\x1b\\x51\\x1a\\xa0\\x2d\\x9e\\xc6\\x00\\x5e\\xd0\\x18\\xa0\\x0c\\x2e\\x84\\x00\\x0a\\x5f\\x3f\\x09\\x83\\x1d\\xe7\\x34\\x4c\\x3f\\xb9\\x18\\x78\\x85\\x0a\\x1d\\x60\\x11\\xa2\\x1d\\x1e\\xa7\\x54\\x83\\x23\\xad\\xb5\\xbf\\x6c\\x26\\x8d\\xc9\\xb3\\x29\\x50\\x9e\\x74\\xec\\x6e\\x6b\\xec\\x8c\\xf3\\x38\\x6a\\x0f\\x38\\x7c\\x9e\\xec\\x4f\\xfc\\x5b\\x70\\xcc\\xda\\xc6\\xf7\\x98\\x59\\x75\\x67\\x6e\\x6e\\x78\\x81\\xed\\x46\\xf1\\xa6\\xa6\\xa5\\x08\\x68\\x7d\\x1e\\xb4\\x68\\x99\\xf9\\xb7\\xf0\\x51\\xe4\\x83\\xa1\\x4e\\xf7\\x05\\x3d\\x35\\xcf\\x67\\x4d\\x68\\x7c\\xe6\\xf7\\xb6\\xe1\\xc9\\x4c\\x47\\x8e\\xff\\x17\\x6f\\x22\\x80\\xf0\\xd4\\x04\\x1f\\xdf\\xed\\x90\\x53\\xf8\\xa9\\xbd\\x0c\\xa5\\x53\\x57\\x65\\xaa\\xba\\x4c\\x6e\\x2a\\xae\\xae\\xb6\\x79\\x0e\\x8b\\xd3\\xc7\\xd0\\x22\\x1f\\xe3\\x14\\x07\\x08\\x0f\\xbf\\x94\\x3d\\x7a\\x50\\x0c\\x4d\\xd6\\xa4\\x28\\x9c\\x20\\x89\\x20\\xdf\\xae\\x61\\x2f\\xd2\\x19\\xdc\\x26\\x0a\\x78\\xce\\x19\\x43\\x99\\x6b\\xd0\\x2e\\x60\\xaf\\x79\\x22\\x1b\\x62\\x16\\x4c\\xfd\\x76\\x86\\x14\\x63\\xbb\\xc3\\x27\\x55\\x51\\x49\\x12\\x1a\\xcd\\xd4\\x95\\x88\\xf1\\xb8\\x1d\\xf5\\xf2\\x11\\xf8\\x49\\x11\\xf8\\x59\\x17\\x77\\x86\\x71\\x2b\\x92\\x46\\x08\\x0e\\x00\\xfc\\x45\\xd1\\xa0\\x21\\xcc\\xc8\\xe9\\x56\\xdc\\xe1\\x21\\x89\\x68\\x4d\\x91\\x0e\\x20\\x79\\xa9\\xc2\\xd1\\x9b\\x0e\\xac\\xce\\xc8\\x01\\x92\\xec\\x80\\x15\\xf1\\xf2\\xdf\\x17\\x03\\x35\\x41\\x19\\x04\\x34\\xf4\\xb2\\x71\\xf9\\x50\\x66\\xde\\x63\\xd7\\x31\\xa1\\xcc\\x23\\x51\\xd9\\x52\\x2e\\x0e\\x59\\x04\\x00\\x6c\\x3f\\x71\\xa5\\x87\\xc7\\x95\\x8b\\x8e\\x75\\x19\\x4a\\xac\\x6b\\x7d\\x14\\xd7\\xc1\\x5c\\x78\\x14\\x67\\x21\\x73\\x6b\\x19\\x42\\x87\\x3f\\x2c\\x17\\x9b\\x38\\xfc\\xb0\\x2d\\x4b\\x28\\xdb\\x31\\x0b\\x82\\xad\\x4e\\x0a\\x83\\xc1\\x4b\\x0f\\x58\\x2b\\x40\\xb2\\xe8\\xd7\\x30\\x49\\x50\\x6c\\xb4\\x6c\\x41\\xab\\x6c\\x25\\xa9\\x6e\\xad\\x21\\x56\\xeb\\x75\\x53\\x2b\\xd5\\x2a\\xb0\\x41\\xbb\\x14\\x96\\xea\\xa9\\x57\\x8a\\x93\\x54\\x14\\xd6\\xa5\\x52\\xeb\\xf5\\x6a\\xa9\\x56\\x6a\\x95\\x5a\\xa0\\x20\\xd6\\x0a\\xac\\xd6\\x0a\\xac\\xd6\\x0a\\xac\\xce\\x75\\x47\\xe0\\x37\\xf0\\x99\\x62\\x0d\\x3c\\xb0\\xbf\\xc1\\xec\\x6c\\xf0\\x33\\x34\\x1f\\xd9\\x0f\\xa4\\xfc\\xd2\\xb8\\x10\\x54\\xfa\\x5b\\x21\\xd5\\xd6\\xcb\\x1a\\xe4\\x22\\xc0\\xc1\\xb0\\x76\\xd5\\x2e\\x6d\\x0d\\x7a\\xf9\\x94\\x87\\x81\\xb5\\xf8\\x1f\\x96\\x1f\\xb2\\xc2\\x14\\x3b\\x1a\\xbd\\x6c\\xf4\\xd6\\x28\\x8a\\x9f\\xab\\xa4\\x1f\\x0e\\x2c\\x3b\\x43\\x9e\\xff\\x91\\x52\\x21\\x4a\\x4b\\x0f\\x4d\\x53\\xa9\\xaa\\x65\\x35\\x73\\xa6\\xae\\x0c\\xfb\\x9b\\x59\\xc9\\x9b\\x59\\xc9\\xb0\\x58\\xc9\\xb0\\x18\\xdd\\xbd\\xfb\\x57\\xbb\\x15\\x2b\\x1e\\xef\\x4b\\xc6\\x6e\\x4b\\xd5\\xe4\\xbd\\x5e\\x2b\\xf7\\xdb\\xa8\\xc4\\x5a\\x8c\\x44\\x68\\xc4\\x46\\x8c\\x44\\x17\\xfb\\x83\\x8a\\xa1\\x57\\xff\\x82\\x56\\x95\\x09\\x5a\\x54\\x21\\x6b\\x90\\x85\\xa5\\x41\\xb5\\xa6\\xdd\\xc9\\xb5\\x6c\\x28\\x22\\xd2\\x50\\x45\\xa8\\xbe\\x56\\xb5\\xee\\xb5\\xaf\\x65\\xad\\x7b\\x2d\\x6b\\xd1\\x6b\\x5e\\x8b\\x5a\\xf3\\x5b\\x05\\xe6\\xb5\\xaf\\x25\\xa8\\xbb\\xd6\\xbd\\xde\\xb5\\xee\\xe5\\xaf\\x76\\xab\\x7b\\xb1\\x5b\\xd5\\x63\\xd1\\x22\\xa6\\x54\\xf5\\x4b\\x93\\xc5\\x2e\\x4e\\x54\\xb9\\x38\\x52\\xe4\\xd9\\x4b\\xd3\\x55\\x2f\\x4b\\x54\\xb1\\x2c\\x91\\x40\\x44\\x13\\x7a\\x54\\x15\\xad\\xd9\\x24\\x15\\xe0\\x08\\x36\\x77\\x4f\\x85\\xee\\xce\\x91\\x69\\x11\\xad\\x01\\x01\\x29\\x0a\\xa2\\x9f\\x54\\x43\\xda\\xd4\\x75\\x56\\x0e\\x6d\\xe9\\x7d\\xee\\x5d\\x76\\x17\\x5d\\xc5\\x74\\x10\\xa6\\x98\\x9a\\xab\\x54\\x5d\\x89\\xdc\\xea\\x4e\\xe7\\x52\\x77\\x3a\\x53\\xb9\\xd2\\x9d\\xae\\x84\\xad\\x73\\xa5\\x6b\\x9d\\x2b\\x5c\\xe9\\x5a\\xe7\\x4a\\xd7\\x3a\\x36\\xb9\\x91\\xb5\\x57\\x67\\x0c\\xa8\\xda\\xe4\\x46\\xd7\\x22\\x16\\xbb\\x90\\xb5\\xda\\x85\\xae\\xd4\\x2d\\x76\\xa1\\x6b\\xac\\xfb\\x5d\\x67\\xda\\xea\\x3e\\xd7\\x51\\xf6\\xba\\x4f\\xb5\\xd0\\x7d\\xae\\x83\\xed\\x74\\x1f\\x6b\\xa0\\xeb\\x5d\\x07\\x5a\\xe7\\x3a\\xd7\\x31\\xd6\\xa0\\x87\\x5a\\x81\\x1d\\x6a\\x04\\x75\\xa8\\x11\\xd6\\xa0\\x47\\x5a\\x80\\x9d\\x6a\\x02\\x75\\xa8\\x09\\xd6\\xa0\\x07\\x5a\\x80\\x1d\\x6a\\x00\\x5d\\xa8\\x01\\x76\\xbf\\xcb\\xb5\\xfa\\x5d\\xaf\\xd2\\xed\\x7e\\x97\\x6b\\xb4\\xbb\\x5d\\x85\\x5a\\xec\\x2a\\xd7\\x59\\x56\\xba\\xca\\xb5\\xd4\\x55\\xae\\x92\\xad\\x74\\x95\\x6b\\xa4\\xab\\x5d\\x25\\x5a\\xe9\\x26\\xd7\\x41\\x36\\xb9\\xc9\\xb5\\xcc\\x4d\\xae\\x52\\x6d\\x72\\x93\\x6a\\x58\\x4d\\xa9\\x59\\x36\\xa5\\x64\\x5e\\x94\\x91\\x7a\\x4e\\x45\\xe9\\x21\\x17\\xa3\\xe4\\x5e\\x8e\\xdd\\x05\\xb4\\xd7\\x62\\xeb\\xf4\\x95\\x55\\xca\\x16\\xeb\\xa9\\x55\\xa2\\xa0\\xac\\x56\\x3d\\x2c\\xaa\\xe6\\x28\\xbf\\x09\\x53\\x92\\x7c\\x72\\x4f\\x88\\x2a\\xc5\\x87\\x8f\\x4f\\xb4\\x8a\\x52\\x1a\\x08\\x57\\xba\\x7c\\x46\\x67\\xc6\\xea\\x6a\\xdb\\x4d\\x50\\x55\\x8b\\x0e\\x2e\\x49\\x66\\xd5\\x54\\x8b\\xd5\\x42\\x2d\\x52\\x08\\xa2\\xd9\\x0f\\x00\\x11\\x6b\\x5f\\x36\\xb5\\x32\\xea\\xa4\\x46\\x2a\\x78\\xe0\\x40\\x29\\x86\\xac\\xb2\\xe6\\x1e\\x97\\x34\\xb1\\x41\\x53\\x95\\xfc\\x70\\x80\\x15\\x83\\x15\\x54\\x85\\xb2\\xf2\\x2b\\x1e\\x91\\x1a\\xca\\x3b\\xa9\\x54\\xce\\x03\\xea\\x91\\x14\\x3f\\xa9\\x41\\xcb\\x54\\xf2\\x3f\\x03\\x92\\xe0\\x65\\x20\\x9d\\x3e\\xe1\\x55\\xaa\\x05\\x0a\\x52\\x8b\\x76\\x84\\x80\\x1b\\x0c\\x96\\x05\\x14\\xb8\\x1e\\xe4\\xd7\\x5a\\xd0\\x57\\xe1\\x04\\x98\\xbc\\x00\\xf6\\x6b\\x33\\x8f\\xbb\\x4b\\x4b\\xfa\\x3f\\x20\\xd5\\x46\\xee\\x23\\xef\\x77\\x0c\\x3b\\xc7\\x8d\\x3d\\x5d\\x44\\xe1\\x88\\xd5\\x89\\xfa\\x2c\\xc8\\xb6\\xea\\xfa\\x40\\x83\\x1f\\x5c\\x63\\x4b\\x60\\x6f\\x9c\\x60\\x78\\x4b\\x68\\x7b\\x19\\x67\\x53\\xab\\xc1\\xe3\\x94\\xbc\\x73\\xcb\\x5a\\x70\\x20\\x0d\\x13\\x98\\xbd\\xf0\\xac\\x87\\xa2\\xc9\\xf3\\x3a\\x49\\x24\\xf2\\x50\\xc0\\xac\\xfb\\xd2\\x31\\x6b\\xbf\\x80\\x25\\xc8\\xaa\\x5c\\x40\\xfb\\x1f\\x84\\xa9\\xf8\\x88\\x5d\\xc3\\x7d\\x8c\\x46\\x4c\\x00\\x1e\\x44\\x94\\xc5\\x84\\x33\\xcd\\x84\\x2a\\x1c\\x90\\x26\\x91\\x5b\\xba\\x54\\x2e\\x36\\x14\\xca\\x86\\xb2\\xaa\\x99\\xba\\xa3\\xd5\\xd5\\xa4\\x8e\\xc5\\x88\\xdd\\x56\\x1c\\x24\\x84\\xa6\\xb2\\x9b\\x50\\x8a\\x9e\\x56\\xb2\\x99\\x71\\xa5\\x8d\\x2a\\xdc\\x73\\x35\\x6e\\x1a\\x3a\\x62\\x73\\x1b\\x53\\xa6\\xa1\\x58\\x68\\x3c\\x47\\xc7\\x9c\\x8e\\x86\\xf9\\x34\\x72\\x24\\xca\\x09\\x54\\x86\\x86\\x2c\\x2f\\x17\\x5f\\x7e\\x58\\xb1\\xde\\x0b\\x8b\\x2e\\x7d\\x90\\x67\\x02\\xf2\\xd5\\x39\\x35\\x32\\x96\\xa3\\xd2\\xc8\\xd3\\xd0\\x9a\\xb4\\x2a\\x7a\\x98\\x77\\xd3\\x46\\x10\\x21\\xb1\\x01\\x01\\x42\\x27\\x97\\x15\\x69\\x52\\x74\\x44\\x56\\xa6\\x2c\\x68\\x4e\\x40\\x15\\x53\\x99\\x65\\x74\\x17\\x7b\\x57\\xd5\\x3e\\x3d\\xe8\\xf2\\x40\\x1d\\x36\\x2d\\xeb\\x07\\x79\\x8d\\x63\\x98\\xb5\\x4a\\x85\\x31\\xa2\\x7c\\x56\\x2b\\xd4\\x36\\xa0\\x76\\xcb\\x9f\\xa2\\xa3\\xfe\\xa8\\xd8\\x26\\x0f\\x1a\\x84\\x0f\\x44\\x2b\\x64\\x20\\xc0\\x09\\xdd\\x7b\\x67\\x4e\\x08\\x16\\xa0\\x0c\\xea\\x26\\xea\\xe3\\xfe\\xd6\\xfa\\xba\\xe7\\xdd\\x51\\xb4\\xf5\\x45\\xc4\\x64\\x19\\x95\\x2c\\x26\\x90\\x2c\\xe3\\x10\\x0e\\xef\\xac\\x2d\\x77\\x9b\\x24\\x86\\x66\\x60\\x61\\xa8\\x19\\xbd\\xc0\\x40\\xec\\xd1\\x03\\xe6\\xf1\\xf1\\x25\\x26\\x9f\\x7c\\x3b\\x77\\x11\\x50\\x09\\x38\\x23\\xf9\\x20\\x6c\\x53\\x40\\xd2\\x1b\\x20\\x96\\x0f\\x23\\xbe\\x38\\x1f\\xaa\\x35\\x1a\\x4a\\x33\\xb4\\x24\\x83\\x3c\\xb0\\xd2\\x31\\xc5\\xcc\\x15\\x66\\x37\\x78\\x29\\x24\\x88\\x63\\x3f\\x84\\xc5\\x3f\\xc8\\x04\\x57\\xcf\\x32\\xda\\x12\\x38\\x20\\x43\\x73\\x22\\x1e\\x1d\\x94\\x41\\xd8\\xa0\\xbe\\x52\\x5a\\x34\\x98\\xe6\\xc1\\x5c\\xd8\\x86\\x8d\\x33\\x92\\xc9\\x5a\\x5e\\x72\\x1c\\xc8\\x32\\xff\\xf2\\x99\\x85\\x67\\xdc\\x45\\x63\\xa6\\xa1\\x3b\\x98\\x47\\xa2\\x24\\xc7\\x98\\xb8\\x85\\x6e\\x69\\xa9\\x0e\\x75\\x96\\x81\\xc9\\x18\\x9e\\xdf\\x52\\xa5\\x34\\xc1\\x73\\x10\\x22\\x9e\\x28\\xb6\\x92\\x71\\x07\\x42\\x4c\\xa4\\xd4\\x25\\xe8\\x90\\xe7\\x00\\xc5\\x81\\x62\\x1a\\xe4\\x01\\x9f\\x3d\\xd6\\x1a\\x34\\x1d\\x6f\\x06\\x13\\xa3\\x8e\\x9b\\xd0\\xdf\\xe6\\x40\\xef\\x88\\x15\\x52\\xac\\xd3\\xe7\\xcc\\xbd\\x68\\x62\\xde\\x71\\x0d\\x54\\xfc\\x2c\\xec\\x5f\\x42\\x02\\xe2\\xec\\x18\\xc9\\x0b\\x0f\\xcc\\xc7\\x13\\x2d\\x49\\x16\\xd8\\x72\\x3c\\xa4\\xdc\\x60\\x46\\xa5\\x64\\x94\\xa6\\x8d\\x95\\xa5\\x1b\\xef\\xae\\x1a\\x9b\\x80\\x85\\x6d\\x63\\x62\\x61\\x78\\xce\\x29\\x74\\xd9\\xbd\\xad\\x8b\\x86\\x6c\\x3f\\x37\\xfc\\xcd\\xb3\\x03\\x44\\x01\\x03\\x18\\x91\\x1f\\xdf\\xe1\\x8d\\xde\\x47\\x61\\x5a\\x4a\\x3c\\xcf\\x3b\\x39\\xcc\\xa9\\x6a\\x3d\\x6a\\x40\\x9d\\x9b\\x22\\x25\\x08\\x65\\x48\\x55\\xa6\\x12\\x8d\\xe0\\x58\\x93\\xa8\\xb1\\x7d\\x5d\\xfe\\x9c\\x74\\xc5\\xde\\xa4\\x1d\\x66\\xcd\\x09\\x02\\x81\\x02\\x0a\\x6c\\x54\\x70\\x37\\x3a\\x7e\\x85\\x6e\\x15\\xe2\\x2a\\xfd\\xec\\x66\\xd4\\xe7\\x62\\xd2\\x66\\xbe\\x4d\\x78\\xa7\\xa1\\x48\\x73\\x09\\xe9\\x90\\x3f\\x66\\x35\\x43\\x4d\\x91\\x7b\\x69\\x13\\x98\\x0c\\xc9\\xa2\\x44\\x5f\\x31\\x84\\x35\\xa3\\x98\\x44\\xb4\\x50\\xd7\\x27\\x2b\\x88\\x81\\x1a\\xd3\\x50\\x77\\xfb\\x15\\x81\\xfb\\x44\\x70\\xc8\\x99\\x6f\\x85\\x9b\\xcc\\xfa\\x21\\x10\\xf2\\xc8\\x85\\xf0\\xc3\\x44\\x01\\xec\\x30\\x2b\\x95\\x54\\xaf\\x86\\x59\\x8d\\xdc\\xca\\x16\\xf1\\x8e\\xa6\\x85\\xf7\\x6e\\xaa\\xfb\\x0f\\x7a\\x3d\\x1b\\x5c\\xd4\\x94\\xbe\\x04\\xa7\\x6e\\xeb\\x94\\x08\\x87\\x35\\x25\\x1a\\x61\\x7c\\x98\\x21\\xe4\\xdb\\xa8\\x66\\x2c\\x1c\\x2d\\x17\\x38\\x80\\xfc\\x0e\\xc1\\xd1\\xe1\\x10\\x3b\\x25\\xb1\\x15\\x02\\xdd\\x06\\x99\\xb3\\xc9\\x5f\\xee\\x7f\\x5d\\x4a\\x7a\\xc4\\xbf\\x44\\x1d\\xa2\\x84\\xbd\\xf6\\x43\\xe6\\xa5\\x96\\xc2\\x89\\xf6\\x2f\\x45\\xf1\\x59\\x46\\xe0\\x5c\\x19\\x7d\\x3a\\x03\\x5d\\xae\\x62\\xa7\\x85\\x10\\x6c\\x31\\x88\\xc2\\x66\\xc6\\xb6\\x4b\\x30\\x6f\\xa4\\x00\\xf2\\x0b\\x04\\x85\\x03\\xfc\\xe0\\x42\\x95\\x9d\\x21\\xf4\\x47\\x4e\\x72\\x94\\x21\\xe6\\x6f\\x9f\\x51\\xac\\xdc\\x16\\x72\\x70\\x36\\xe4\\xad\\x2a\\x00\\x1d\\xb2\\x2e\\x50\\xe2\\xaf\\x77\\x09\\x03\\xea\\x2c\\x59\\x0c\\x4c\\x0f\\xd0\\x4d\\x73\\x27\\xf7\\x47\\x20\\x33\\x07\\x8a\\x94\\x5d\\x20\\xd9\\xfc\\xc4\\x93\\xcc\\x45\\xa4\\x02\\x0d\\x4d\\x89\\x55\\xe8\\x4a\\x8c\\x46\\xe8\\x39\\x94\\xd2\\x01\\x5a\\x11\\x88\\x86\\xc4\\x14\\xdd\\x85\\x9c\\x1a\\x8d\\x60\\x7c\\x90\\xfd\\x63\\x50\\x3d\\xa3\\x89\\x30\\x23\\x64\\xb5\\x16\\xb3\\x04\\x3f\\xe4\\x62\\x4e\\x68\\x9d\\xc3\\xf3\\xfe\\x36\\xb1\\x6f\\x49\\xd4\\xca\\x2a\\xa6\\xc7\\x3f\\x1a\\xd6\\xb8\\xa6\\x0f\\x0a\\xd6\\x24\\xdf\\xc2\\x57\\x01\\x75\\x96\\x0a\\x22\\x70\\x8d\\x80\\x04\\xe7\\x30\\x87\\x82\\xd0\\xa1\\x74\\x60\\x96\\x34\\xc0\\x3a\\xcd\\x24\\x27\\x7a\\x6d\\xf5\\xa6\\xdb\\x92\\x55\\x50\\xce\\x79\\x8c\\x47\\xd7\\x1b\\x6b\\xab\\xc9\\xb0\\x20\\x40\\x01\\x91\\x48\\xf8\\x95\\xbb\\xc5\\x90\\x26\\x91\\x45\\xa7\\xc3\\x12\\xde\\x80\\xd1\\xe6\\x87\\x70\\x70\\xcd\\x43\\x7c\\x11\\x82\\x7e\\x55\\x4f\\x7b\\xd4\\xcc\\xb9\\xf6\\x88\\x93\\x05\\x1c\\x20\\xbb\\x32\\x0e\\x7a\\x76\\xc9\\x21\\x1d\\x08\\x97\\xc8\\x34\\xf1\\x68\\x63\\x84\\x4d\\xb2\\x0c\\x9a\\x2f\\x36\\x15\\x67\\x38\\x05\\x8f\\xba\\x02\\x3d\\x2c\\x15\\xc9\\x3d\\x01\\x90\\x82\\x87\\xfc\\xcd\\x06\\x76\\xf1\\xa1\\x07\\xc8\\x0a\\x54\\xce\\x46\\x9f\\xb3\\x43\\x85\\x47\\x98\\xa1\\x66\\x36\\x34\\x50\\xf0\\x60\\x57\\xc2\\xa0\\x46\\x9a\\x12\\xc0\\x49\\xdb\\xc4\\x9f\\x89\\x04\\x42\\xe7\\xf3\\x92\\xe0\\x5c\\x99\\xf2\\x38\\x72\\x68\\x38\\xf9\\xcb\\x25\\x05\\x21\\x3a\\xb1\\xa5\\x09\\x63\\xf5\\xa0\\x73\\xa2\\xc6\\x27\\xc7\\x58\\x0d\\x82\\x49\\x39\\xca\\x7f\\x5f\\xd8\\x24\\x21\\xb0\\x3b\\xd4\\xdb\\x17\\xec\\x3d\\x70\\x99\\x7f\\x8a\\x0e\\x5a\\xed\\x45\\xd2\\x02\\xb8\\x3f\\x84\\xd3\\xb8\\x48\\x1a\\x2c\\x22\\x2e\\x24\\x8e\\x29\\xe2\\x19\\x35\\x51\\x38\\x29\\xd4\\x52\\x25\\x32\\x5c\\x63\\x2a\\x74\\x9e\\x81\\x73\\xc1\\x81\\xca\\xf2\\x8b\\x55\\x50\\x27\\xe5\\x18\\xa5\\x29\\xc4\\x8a\\x61\\x0c\\x2d\\xa0\\x82\\xa0\\xb9\\xeb\\x04\\x3c\\x8b\\x54\\x45\\xe4\\x8e\\x79\\x83\\xa6\\x3d\\xb3\\xb2\\xcc\\x10\\x73\\x14\\xb0\\xa2\\xbf\\xe1\\x90\\x7d\\x4f\\x0c\\xe8\\x93\\x58\\x7e\\x65\\x07\\x1d\\x27\\xb9\\x79\\x91\\x67\\xee\\xe6\\xa7\\xca\\x33\\xa7\\x6e\\x2f\\x4f\\x1f\\x52\\x12\\xfd\\x93\\x4d\\x32\\xe8\\xa7\\x2a\\x3d\\xd2\\x4c\\x38\\x46\\xeb\\x91\\xce\\x15\\x61\\x96\\xf5\\x41\\xc8\\x8a\\x56\\x10\\x0f\\x01\\x93\\x04\\x02\\x40\\x03\\xde\\xd5\\x81\\x8b\\x9e\\x10\\x97\\x36\\x21\\x02\\x38\\x7c\\xc2\\xb2\\xa5\\xa8\\x8c\\x70\\x0d\\x29\\x17\\x75\\x69\\x5f\\x8d\\x04\\x1b\\x0d\\x88\\x56\\x09\\x05\\x25\\xa0\\x9b\\x19\\xfd\\x1f\\x42\\xb9\\x9c\\x9d\\x32\\xcf\\xb9\\xe6\\xe7\\xc1\\xac\\xf5\\xd2\\x3f\\x44\\x2f\\x08\\x0d\\xc9\\x5d\\x3f\\x90\\xf7\\xfb\\x3e\\xe8\\x93\\x70\\x07\\x81\\x14\\x80\\x06\\x97\\x70\\xe0\\x01\\xdb\\x51\\xb8\\x00\\x3b\\x64\\xc8\\x47\\xa4\\x75\\x94\\xb1\\x15\\xd6\\x09\\x74\\x04\\x63\\xb5\\xd5\\xef\\x93\\xbd\\xb3\\x01\\xbb\\x79\\xf4\\x01\\x9d\\x65\\xc4\\x67\\x7f\\x40\\xac\\x86\\x30\\x8e\\x33\\x80\\xd3\\xa3\\xb8\\x09\\xea\\x4f\\x14\\xca\\xb3\\x44\\x6d\\x9d\\xb5\\x18\\x12\\xf4\\xd4\\xdf\\x30\\x1d\\x5d\\x13\\xae\\x50\\x1f\\x74\\x9a\\x0d\\x16\\x5a\\xa2\\x6b\\x98\\x99\\xd4\\x32\\x39\\x5d\\x31\\x83\\xa5\\xb3\\x28\\x97\\x39\\xc6\\x86\\x79\\x16\\x74\\xf8\\x22\\xac\\xe5\\x98\\x85\\x72\\xc9\\xfe\\xa1\\x25\\xe5\\x40\\xf3\\xa4\\x98\\xc1\\x48\\x56\\x23\\x49\\x45\\x7a\\xd5\\xfa\\x57\\xab\\x30\\x22\\x88\\x3e\\x10\\x99\\xb4\\x5a\\x1e\\xc2\\xf3\\xb6\\xc4\\xa2\\xbc\\x0f\\x70\\xba\\x02\\xfa\\x0b\\x74\\x98\\x06\\xab\\x99\\x67\\xc4\\x7b\\x48\\x20\\x11\\x25\\x26\\xb5\\x06\\x20\\x10\\xf9\\xe1\\x8f\\xcd\\xef\\xd6\\xf3\\x76\\x97\\x37\\x50\\x68\\x07\\x20\\xf7\\xca\\x2c\\x02\\x1f\\x3b\\x62\\xef\\x0a\\x06\\x05\\x91\\xa9\\x60\\x2a\\xc5\\xc7\\xf1\\x8e\\x4a\\xee\\x9a\\xf0\\x62\\xe3\\x3a\\x05\\x88\\xa9\\xb2\\x9e\\x5b\\xd5\\x5f\\x31\\x3c\\xeb\\xad\\xbe\\x8a\\x1b\\x45\\x87\\xc1\\xb8\\xb0\\x33\\xe8\\x68\\x5a\\x5e\\xa5\\xfb\\x24\\x97\\x02\\x3d\\x9b\\x45\\x4a\\x09\\x7c\\x7b\\x7a\\x81\\xf4\\x9c\\x10\\x91\\xc5\\x5c\\x41\\x9f\\x73\\xac\\x48\\x5f\\x15\\xbd\\x28\\x5c\\xfc\\x3e\\xe3\\x01\\x8e\\x65\\xb5\\x9c\\xb2\\xfe\\xe4\\x3a\\xb4\\x80\\x80\\x0d\\xc0\\x78\\xd6\\x5e\\xc3\\x84\\xac\\xad\\xf3\\x13\\x07\\xd5\\x71\\xf3\\xbd\\x65\\x80\\x98\\xd8\\x2d\\xa1\\xc4\\xdf\\x09\\x4a\\xd2\\xc9\\x96\\xef\\x78\\x52\\x18\\xd0\\xe9\\x89\\x3a\\xaa\\xec\\x01\\xe0\\x64\\x6a\\x53\\x61\\x56\\xed\\x9f\\x14\\x4a\\x01\\xef\\xf7\\xe9\\x7e\\x96\\xcb\\x2d\\x80\\x9d\\xa9\\x5c\\xc2\\xf5\\xce\\x80\\x08\\x80\\x75\\x24\\x6b\\x34\\x11\\x87\\xd3\\x97\\x06\\x3e\\x80\\x79\\x19\\x5a\\x27\\x33\\x37\\x94\\xec\\x07\\xa6\\x8c\\x5e\\xa7\\x8a\\xbb\\x7f\\x16\\xb7\\xe0\\x95\\xa8\\x15\\x84\\x4f\\x82\\xc4\\x03\\xf1\\x68\\xf9\\x20\\x25\\x68\\x0b\\xcd\\x3d\\x95\\xe8\\xb6\\xd5\\x76\\x19\\x87\\x0d\\xcf\\x1e\\xce\\x1b\\x70\\x45\\x95\\x3c\\xbb\\x08\\x5d\\x1b\\xad\\xe1\\x2c\\x3e\\x81\\xec\\x1a\\xf3\\x48\\xd3\\x63\\x5e\\x38\\x0f\\x3a\\x0f\\x32\\x18\\x18\\xad\\x7c\\xa8\\x12\\xde\\xa8\\x0b\\x1a\\x99\\xb1\\x3d\\x2d\\x05\\xb7\\x03\\x31\\x71\\x23\\xca\\x83\\x1f\\x1c\\x5f\\x93\\xa3\\x40\\x75\\x1d\\xb7\\x57\\x89\\x4c\\x48\\x0b\\x80\\x25\\x41\\x47\\xf4\\x88\\xdc\\x66\\x0e\\x2f\\x90\\xd8\\x9f\\x53\\x29\\xd0\\xc4\\xab\\x20\\x04\\xe0\\x44\\x64\\xa2\\xb5\\xa1\\xd1\\xc4\\x28\\xbc\\x12\\xfd\\xe8\\x8d\\xaf\\x6d\\x78\\xd2\\x9e\\x52\\xc4\\x90\\xd2\\x4e\\x00\\x83\\x6e\\xc2\\x8d\\x9c\\xa7\\xda\\x08\\x38\\x06\\x11\\x3e\\x04\\x3d\\xfd\\x24\\x57\\x06\\x4b\\x02\\x03\\x9c\\x65\\x80\\x45\\xcc\\xc8\\x06\\x98\\x1c\\x9b\\xea\\xbe\\x33\\xa5\\x18\\xde\\x32\\xed\\xd1\\x0c\\xe3\\x69\\xde\\xde\\x13\\x24\\x23\\xe4\\x52\\xe3\\xa7\\x63\\xe2\\xff\\x4e\\x9c\\x04\\xed\\x90\\x7b\\x3c\\x3d\\x62\\xaf\\xc8\\x50\\x2b\\x8d\\x81\\x06\\xc2\\x5f\\x44\\xfd\\xdc\\x79\\xf7\\x56\\x14\\xd0\\xc4\\xc7\\x17\\xb6\\x42\\x67\\xb8\\x17\\xd2\\xb1\\x9a\\x50\\x01\\xe8\\x9f\\x27\\xf1\\x9c\\xda\\x43\\x54\\x78\\x48\\x22\\x54\\x9b\\x60\\x89\\x88\\x4d\\x1f\\xc9\\x9d\\x9c\\x42\\x25\\xa2\\x18\\xa9\\x30\\x85\\x5b\\x39\\xe8\\xc6\\x90\\xa1\\x5b\\x01\\xd0\\x9f\\x28\\x41\\xba\\x72\\x4a\\x0e\\xbc\\x62\\x9c\\x98\\x65\\x2f\\x35\\x62\\x69\\x6f\\x08\\x38\\x29\\x18\\x1e\\x0d\\xc6\\x89\\x20\\xe2\\x10\\x8f\\x3e\\x4d\\x19\\xa0\\xa7\\x15\\x23\\x0f\\x94\\x81\\x73\\x4c\\xcb\\xa6\\x4c\\x15\\x71\\x1d\\xd1\\x55\\x4e\\x41\\xa1\\xe0\\x79\\xaa\\x37\\x62\\x43\\x41\\xf0\\x81\\xa3\\xba\\x7f\\x1b\\x00\\x8c\\x36\\x39\\x07\\xc5\\x99\\x73\\xcc\\xcf\\x8b\\x2a\\xe3\\x19\\x32\\xc2\\xd0\\xe8\\x84\\x4d\\x11\\xe0\\xb8\\xd6\\x8b\\xc9\\xe2\\x95\\x0c\\x7d\\x0e\\x2b\\xe0\\x69\\x1a\\xf7\\x2f\\x60\\xe3\\xe5\\x66\\x15\\x10\\xac\\x13\\x7d\\x6c\\x6e\\xdd\\x0c\\x74\\x99\\x08\\x7d\\xce\\x83\\x6a\\xbd\\x8e\\x23\\xc7\\xc6\\x17\\x5c\\x52\\x00\\x71\\x8c\\xec\\x8c\\x08\\x99\\x06\\x98\\xbf\\x23\\x14\\x40\\xa3\\x90\\x2a\\xd1\\x3c\\xb7\\xc8\\xe4\\x4b\\xa9\\x43\\x5f\\x00\\x51\\xf9\\xd6\\x28\\xd7\\x85\\x0c\\xd8\\xed\\x16\\x90\\x03\\x41\\x86\\x3d\\xa8\\x32\\xd1\\x43\\xef\\x27\\x74\\xc4\\x56\\xcc\\x61\\xb7\\xa2\\xfc\\x31\\xb0\\xe4\\xea\\xf6\\x9c\\x0d\\x86\\xde\\x0d\\x3d\\x0e\\x30\\xe9\\x5e\\xad\\x36\\x96\\x3d\\x09\\xb7\\x25\\x45\\x07\\x40\\x8a\\x74\\x01\\xb2\\xf4\\x21\\x63\\x8f\\x86\\x36\\x8a\\x6e\\x84\\x13\\x25\\x75\\x4d\\x2b\\x4a\\x60\\x32\\x56\\x66\\x00\\x90\\xe5\\x14\\x9c\\xe0\\xf6\\x6b\\x21\\x4a\\x37\\x74\\x60\\xe9\\x7e\\x71\\x09\\xe8\\x30\\x9d\\xf3\\x0b\\x46\\x21\\x2d\\x46\\x62\\x20\\x5d\\xe7\\xea\\x6a\\xcb\\x84\\x46\\x90\\xb4\\xb4\\x2a\\x5e\\xa0\\x51\\xb0\\xd2\\x76\\x6c\\x6f\\xbb\\xc6\\x4d\\x9b\\xc5\\x1c\\xc6\\x6c\\x84\\x53\\x3e\\xd3\\x4d\\x68\\x0c\\x56\\x00\\xf0\\xca\\x4e\\x25\\xd9\\x26\\x68\\x49\\xb9\\x96\\x28\\xa6\\x26\\xff\\x65\\xde\\xa1\\x53\\x64\\xc5\\x4f\\x19\\xfc\\x9f\\x0b\\x93\\xb1\\x29\\xf5\\x42\\x86\\x94\\x9a\\x3f\\xe0\\xed\\xf9\\xd4\\x6f\\xa8\\xa6\\x10\\xaa\\x32\\x86\\xe1\\x3c\\x6d\\x31\\xd3\\x17\\xaa\\x57\\x3e\\x07\\x6f\\x57\\x02\\xab\\xe4\\xc2\\x7c\\xa1\\x30\\xfb\\x37\\x53\\xda\\xca\\x73\\xa8\\x9f\\x1d\\x38\\x63\\x06\\x99\\x70\\x54\\xc1\\x0f\\x90\\xb8\\x08\\xa3\\x1b\\xd6\\x11\\x2b\\x07\\x25\\x2f\\x0f\\xec\\x9c\\xf0\\x7e\\x06\\x14\\x29\\x34\\xcd\\xe2\\x2f\\x9f\\x22\\x89\\x56\\xc9\\x4c\\x9f\\xd7\\x57\\xf8\\xc7\\x44\\xef\\x95\\xc0\\x0f\\x22\\x66\\x12\\x2d\\xce\\x7b\\x0d\\x1e\\xcc\\x06\\x11\\xa3\\x74\\xd9\\x18\\xe1\\xcf\\x8f\\xf4\\x43\\x47\\x12\\x12\\x4d\\xf9\\xa9\\x74\\x4f\\x4f\\xe4\\xc4\\x03\\x09\\x87\\xd4\\x01\\xc4\\x87\\x1a\\x07\\x24\\x3d\\xde\\xb0\\xf0\\x2b\\x71\\xb1\\xcc\\x89\\x64\\x1c\\x29\\x3b\\xb8\\x01\\x62\\x5e\\xcf\\x70\\xa9\\xe4\\x40\\x97\\xa9\\x12\\xa8\\x23\\xe1\\x53\\x7a\\x15\\x2c\\x65\\xb3\\x2f\\x89\\x09\\xe5\\x94\\xb5\\x0a\\xac\\x80\\x49\\xf4\\x55\\x32\\x18\\x26\\x5d\\xaf\\xc0\\x27\\x74\\x32\\x4e\\x86\\xa1\\x6e\\xf2\\x7d\\x44\\x28\\xa2\\x7c\\xa2\\x2a\\x96\\x75\\xa7\\xe0\\x77\\x3c\\xd3\\xc6\\x2a\\xc9\\x1a\\x41\\xc7\\xe8\\xcd\\xf3\\x38\\x0e\\x43\\x11\\x76\\xb0\\x40\\xbe\\x9f\\x7c\\xb6\\xda\\x95\\xca\\xe0\\x6d\\x47\\x8a\\x6a\\xf9\\x2b\\x4c\\xb3\\xaa\\xf2\\x1a\\x2e\\x0c\\x85\\xba\\xcd\\x98\\x8f\\xf3\\xea\\x74\\x70\\x0b\\x41\\x54\\xf6\\x7f\\xb5\\xbd\\x18\\xc7\\xdb\\xe5\\xaa\\x08\\xc3\\xd1\\x2a\\x14\\x78\\x56\\x3c\\xc6\\xe4\\x8e\\xaf\\xcd\\x37\\xdf\\x0b\\x4b\\xd8\\xfe\\x49\\x41\\x79\\x4c\\xe4\\x8e\\x90\\x0c\\x8f\\x64\\xe0\\xa2\\xeb\\x91\\x13\\x66\\x46\\x5d\\xf6\\x05\\x85\\x19\\x0f\\x61\\x54\\xc8\\xf2\\xaa\\x27\\xac\\xb0\\xa3\\x38\\xb6\\x4c\\x8e\\xfd\\x25\\x68\\x25\\x26\\xdd\\x6c\\x8a\\x31\\x82\\xe6\\x2a\\x8d\\x7c\\x8c\\xd6\\x89\\xa1\\x52\\x1a\\x39\\x2b\\x12\\x8b\\x1b\\x39\\xb7\\x7f\\xae\\x4e\\xc8\\x08\\x84\\x52\\xf9\\xa7\\x7d\\xc0\\x60\\x4e\\x0b\\x98\\x44\\x82\\xa4\\xd3\\xcb\\x33\\xb0\\x08\\x0a\\x35\\x18\\xf0\\x16\\x62\\xa4\\x72\\x8c\\x53\\x21\\x8b\\x65\\x2e\\x08\\x58\\x8c\\x1c\\xb5\\x18\\x4a\\xc6\\x53\\xf0\\xae\\xfc\\xb4\\xe0\\x9d\\x36\\x3a\\x00\\xfe\\x18\\x68\\xd6\\x8d\\x19\\x2e\\x4f\\xbf\\x75\\xa0\\xb8\\xcd\\x9e\\x05\\x33\\x78\\x0e\\x81\\x55\\x2e\\x59\\x76\\x0c\\x1a\\x82\\x3a\\xc7\\x5a\\x34\\x90\\xe2\\xf5\\xd4\\x06\\x89\\xfc\\x69\\x72\\xc5\\x48\\x99\\x00\\xe1\\x2e\\x6b\\x6b\\x35\\x52\\xa5\\xee\\x3b\\xf6\\xe5\\x95\\x90\\x32\\xc8\\x80\\xe0\\xd1\\x52\\xa0\\x57\\x42\\xa6\\x33\\x5e\\xa2\\x8e\\xa4\\xfa\\xf0\\x1d\\xd5\\xe2\\x2d\\x1e\\xe0\\x4d\\x26\\xc0\\x28\\x0c\\x2f\\xb8\\x52\\x03\\x81\\x43\\x85\\x02\\x83\\x16\\x2a\\xcc\\xf9\\x64\\x51\\x01\\x3e\\xb4\\x25\\x18\\x0d\\x91\\x52\\x50\\xe9\\x2a\\x06\\x7b\\x70\\x1f\\xdb\\x12\\x21\\x3c\\x67\\x67\\x47\\xd8\\x9e\\xd4\\x06\\xe8\\x5a\\x06\\x6f\\xfb\\x5d\\x16\\x35\\xca\\x5a\\x45\\x4c\\xbd\\x0c\\x4d\\xb1\\x7a\\xd5\\xc3\\x09\\x43\\x5a\\x25\\x34\\xf5\\x9e\\x0a\\xa2\\x1f\\x2e\\x80\\xe8\\x84\\x86\\x2a\\x4e\\x9b\\x29\\x82\\x96\\x52\\x0c\\x2b\\x2e\\x94\\xb1\\xda\\x37\\x87\\x1d\\x1e\\x47\\x74\\x5b\\xd0\\x2a\\xe2\\xdf\\x70\\x87\\x6f\\x34\\x18\\x5d\\x8f\\xc8\\x79\\x5a\\x89\\x56\\x30\\xc0\\x94\\xa4\\x0f\\xb1\\x48\\x63\\x3b\\x15\\xd2\\xc6\\x54\\xc6\\x22\\xc2\\x4d\\x88\\x20\\xb4\\x63\\x75\\x02\\x24\\xbb\\xff\\x96\\xd4\\x48\\xf7\\x46\\x31\\xb3\\x18\\x48\\x5e\\x4b\\x34\\x64\\xea\\x78\\xe5\\x97\\xf6\\x81\\xbe\\x04\\xc0\\x86\\xc1\\xf3\\x03\\x8b\\x11\\x55\\x8a\\xf0\\x44\\x46\\x41\\xda\\x2d\\x3b\\x76\\xbb\\xd0\\x6a\\xad\\x1c\\xfe\\x9c\\xc5\\x4e\\x39\\xba\\x10\\xb4\\x8e\\xad\\xe2\\x59\\x0a\\x7d\\xc3\\x25\\xf6\\x25\\x74\\x42\\x2b\\x8c\\xb1\\x2e\\xaa\\x79\\xe4\\x1c\\x10\\xf0\\xc3\\xc7\\x6a\\xfb\\x91\\xa3\\xf6\\xf7\\x54\\x32\\xde\\x7e\\x36\\x4a\\xf1\\x18\\x82\\x1e\\x38\\xcb\\x7a\\xca\\x2f\\xaf\\x0d\\xe5\\x58\\xc8\\x06\\x31\\x8d\\x42\\x2f\\xde\\xd7\\x19\\x8b\\x6b\\xb1\\xa9\\xcb\\xbe\\x69\\x90\\x85\\x78\\x60\\x01\\x7a\\x9a\\xf7\\xb1\\xcc\\xb3\\x53\\x4c\\xc4\\xd2\\x97\\x66\\x62\\x8b\\x8e\\xa9\\x5e\\x12\\x9c\\x1f\\xbd\\xc1\\x30\\x2b\\x8b\\x0c\\x25\\x68\\x92\\x34\\xff\\x8c\\x62\\xbf\\xe7\\x84\\xa8\\x33\\xb5\\x74\\x26\\x2c\\x65\\x10\\x6d\\xef\\x28\\x2e\\x70\\x8e\\x42\\x4e\\xee\\xde\\xd0\\x8d\\xa1\\xef\\xa3\\x8b\\x9c\\x00\\xcc\\x0a\\x2a\\xeb\\x95\\x95\\xf5\\x4e\\xe6\\x92\\x33\\xec\\x42\\x92\\x40\\x27\\x60\\x55\\x70\\xb0\\x32\\xfd\\x51\\xfa\\x82\\x72\\x08\\x86\\xc4\\x2a\\x74\\x59\\x70\\x5e\\x5f\\x57\\xce\\xa0\\x64\\x88\\x3c\\x95\\x6a\\xe5\\x74\\xdb\\x2d\\xf0\\x9a\\x04\\xa5\\x0a\\x30\\x7d\\x87\\xe9\\x50\\xa9\\xe0\\x50\\x30\\xa0\\xd3\\xc3\\x86\\x02\\x12\\x47\\x59\\xcc\\x1f\\x4b\\xad\\x5b\\xe3\\xe8\\x96\\xe6\\xd2\\xa7\\xa3\\x6a\\x2a\\xe8\\xa4\\xb8\\x71\\xb4\\x0e\\xbb\\x90\\x5a\\x06\\xc8\\x66\\x18\\xa9\\xef\\xfa\\x3c\\x42\\xb6\\x87\\x8f\\x86\\x4a\\xf8\\x1d\\xb5\\x7b\\x03\\x19\\xb5\\xf3\\xbf\\x91\\xb0\\x64\\xef\\x72\\xe1\\x6d\\x13\\x8f\\xf4\\xea\\xf9\\x49\\x85\\x4f\\x29\\x2a\\xc2\\x67\\x09\\xa3\\x2c\\xaa\\x54\\x74\\xb1\\x04\\x93\\xa3\\x1d\\x0f\\x33\\x3a\\x23\\x1f\\x45\\xa8\\x0c\\x71\\xcb\\xd3\\x66\\x0a\\xf8\\x8a\\xb0\\xb7\\x80\\x1c\\x9c\\x0e\\x70\\x2e\\x3d\\xf0\\x9a\\xd8\\xb6\\x58\\x8f\\x88\\x2a\\x69\\xb0\\xf0\\x26\\xe7\\x6e\\xea\\x30\\x42\\x8e\\x97\\x0b\\x40\\x18\\x42\\x1a\\x9a\\xe8\\x78\\x94\\x21\\xf5\\x19\\x2e\\x8b\\x1f\\x10\\x5a\\x0f\\x27\\x1f\\x4b\\xee\\x16\\x6c\\x3c\\x83\\x5c\\xa0\\x43\\x6f\\x57\\x81\\xdc\\x52\\xa9\\x51\\x4f\\x22\\xa0\\xa1\\x3e\\x7a\\xaf\\x3b\\xf0\\x41\\xc3\\xf8\\x93\\x73\\x90\\xe3\\xba\\x00\\x3d\\xbb\\x60\\x1a\\x04\\xd0\\x23\\xef\\x88\\x42\\x3a\\xcf\\x90\\xe2\\xfb\\x36\\xd7\\x91\\x51\\xb7\\xa5\\x9e\\xaa\\x83\\x3d\\xbe\\xd9\\x77\\xef\\x49\\x9e\\xe9\\xf0\\xf4\\x05\\x47\\x68\\x56\\x73\\xe3\\x84\\x03\\x83\\xdf\\x5c\\x34\\x2a\\x81\\xaa\\x94\\x69\\xd6\\x0f\\x79\\x5c\\x2a\\x1e\\x91\\x88\\xae\\x26\\x64\\x6d\\x54\\xa3\\x68\\x56\\xc8\\x92\\xde\\x3c\\xb9\\x78\\xf5\\x2e\\x0f\\xc7\\xf9\\xb4\\x6c\\x10\\xeb\\x8b\\x6f\\x76\\x73\\xdf\\xa4\\xaa\\xb8\\x98\\x76\\xe2\\x72\\x96\\xe7\\x4c\\x1f\\x86\\x82\\x81\\xc3\\xcd\\x28\\x0d\\x0a\\xbf\\x28\\xd3\\x07\\x32\\x3f\\xce\\x17\\x16\\x4a\\x1b\\xdf\\xb6\\x30\\x8b\\xd5\\x29\\x9d\\xc0\\x34\\x38\\x00\\x34\\x06\\xb4\\x86\\x49\\xf0\\x34\\x5d\\x38\\xac\\x99\\x89\\x4f\\x40\\x1c\\x25\\xc0\\xfe\\x90\\x8b\\x4a\\x40\\xe9\\x03\\x2b\\x7a\\x1c\\xf4\\x99\\xbd\\x41\\x1b\\xc4\\x84\\xf3\\x2b\\x62\\x24\\x19\\x21\\x96\\xde\\xb2\\xa1\\x60\\x51\\xd0\\x46\\x57\\x45\\xf0\\x8d\\x79\\x05\\xf0\\xbd\\x7a\\x01\\xa0\\x96\\x84\\x68\\x4f\\x64\\x66\\x30\\x94\\xaf\\x82\\xc2\\x52\\xa8\\xe4\\xc2\\xdd\\x4c\\x3e\\x67\\x5a\\x5a\\x39\\x93\\xcc\\x4c\\xec\\x19\\x10\\xf8\\xc9\\x20\\x07\\xf5\\x03\\x56\\x16\\x98\\xe0\\x06\\x39\\x33\\xa2\\x11\\x8c\\xb0\\x8b\\xd3\\x20\\x6d\\xa1\\xb4\\xa7\\x3d\\x89\\x18\\x10\\x11\\x96\\x86\\xe8\\xe0\\x12\\xd1\\xf4\\x49\\x33\\x5c\\x90\\xb2\\x09\\x0e\\xac\\x07\\x3f\\x80\\x85\\xdd\\x94\\x42\\x20\\xf7\\xbf\\x5b\\x31\\x33\\x0f\\xdd\\x30\\xb1\\x64\\x7b\\x04\\xcb\\x15\\x44\\xee\\x99\\x50\\x93\\xe8\\xfe\\x53\\x02\\x28\\x58\\x7a\\x26\\xd2\\x02\\x39\\x08\\x9e\\x00\\x1a\\x11\\x8e\\x0b\\x73\\xb6\\x79\\x81\\xd8\\x8e\\xc1\\x8c\\x68\\x41\\xe0\\x94\\xe4\\x21\\xe0\\x5b\\x9b\\x2a\\x24\\xd1\\x1d\\x2e\\x88\\x01\\xe2\\x02\\xf9\\xa2\\x40\\xd1\\x38\\x2e\\x41\\xa6\\xe9\\x95\\x18\\x7f\\x38\\x15\\x4c\\x33\\x07\\xd1\\x23\\x08\\x8b\\x23\\x10\\x4e\\x48\\x6e\\xd7\\xba\\x43\\x63\\x40\\xf8\\x97\\x28\\x85\\xdb\\x75\\xc5\\xb3\\xac\\xcb\\x54\\xf2\\x0b\\x3d\\x7f\\x47\\x01\\x24\\xfe\\xaa\\xbe\\x84\\x0c\\x6d\\xab\\x1b\\x1f\\xda\\xa8\\x8a\\xf5\\x2b\\x3b\\xcb\\x16\\xfe\\x8d\\x30\\x40\\x4c\\x64\\xe0\\xae\\x0a\\xed\\x1e\\x0d\\xe5\\x12\\x5d\\x19\\x4d\\x91\\x89\\x09\\x93\\x62\\xa1\\x3a\\x6f\\xf0\\x46\\xc8\\x0b\\xaf\\x4d\\xb3\\xb4\\xd9\\xa2\\x92\\xcb\\x97\\xbd\\x50\\x2c\\x85\\xa2\\x3a\\xd0\\x4c\\x73\\x9d\\x5a\\x82\\x69\\xae\\x9c\\x79\\xb4\\x24\\x01\\x39\\x6c\\x2b\\xdf\\xf1\\xeb\\x42\\xbc\\x77\\xe7\\x77\\x97\\x0f\\xf1\\x66\\x63\\x05\\x5c\\x4c\\xe4\\x98\\x17\\xd4\\xcc\\x22\\xa4\\x94\\x6c\\x85\\x5e\\x94\\xe8\\x24\\x39\\x1a\\x8f\\x53\\x16\\x64\\x40\\x59\\x00\\x59\\x5f\\x36\\x5d\\x1c\\x73\\xf6\\x15\\xa5\\xa8\\x7c\\x3a\\x4a\\xd4\\x08\\x1c\\x3a\\x6c\\xc8\\xee\\x42\\x80\\x09\\xe2\\xb7\\x72\\x69\\x70\\xeb\\xc4\\xf0\\x61\\xdb\\x4f\\x0d\\x49\\x88\\xd8\\x4f\\x03\\x6d\\x35\\x01\\x98\\x97\\xc4\\xb7\\xe3\\xc9\\x7d\\xbd\\xba\\x37\\x0c\\xa3\\xd4\\x5b\\x74\\xa4\\x1b\\x73\\x39\\x42\\xe4\\x93\\x6b\\x00\\xb4\\xcf\\x08\\xf0\\x25\\x8f\\x60\\x3b\\xb3\\x3a\\x82\\xf0\\xdc\\x05\\xb3\\x5d\\x3c\\x76\\x97\\x69\\xba\\xd6\\xcf\\x7e\\x79\\x06\\x91\\x28\\xaa\\xac\\x59\\x2e\\xab\\x24\\xcf\\x8f\\xa0\\xee\\x12\\xb7\\x97\\x93\\xa6\\x42\\x84\\x1d\\xb2\\xdf\\x56\\x52\\xa9\\x66\\x33\\x12\\x50\\xa0\\x54\\x5d\\xe3\\x68\\xd6\\xb4\\x68\\x56\\x5a\\x01\\xf1\\x54\\x4e\\xa4\\x54\\xae\\x88\\xef\\x49\\x98\\x5f\\x59\\x90\\x32\\xd4\\xfa\\x3e\\xec\\x44\\xfc\\x94\\x4a\\x8a\\x1d\\x3d\\xc6\\x27\\x67\\x85\\xc8\\x02\\x43\\x6c\\xd1\\xe1\\x34\\x37\\xb3\\x15\\x8c\\x50\\xf5\\x41\\x04\\x84\\x16\\x14\\x64\\x88\\x50\\xa5\\xc6\\x3b\\x7e\\xa2\\x82\\xca\\x11\\xa0\\x89\\x0c\\x28\\x2a\\x90\\x7c\\xe1\\xc9\\x6c\\x8d\\x06\\x0b\\x02\\x33\\x56\\x5b\\xb7\\xac\\x84\\x81\\xef\\xcb\\xc8\\xc4\\x38\\x81\\x53\\x97\\x83\\xa8\\xa8\\xc7\\x03\\x3e\\x7c\\x06\\x49\\xec\\x21\\x93\\xd1\\x65\\x45\\x89\\xdc\\x86\\x4c\\x75\\x6e\\x51\\x43\\x8d\\x46\\x55\\xd2\\x52\\x0d\\x97\\xc0\\x84\\xc1\\x78\\xf9\\x0f\\x1b\\xfe\\xb4\\xa9\\xda\\xd2\\x3d\\x6b\\xbd\\x92\\x02\\x21\\xae\\x82\\xc9\\x78\\x9f\\x3f\\x18\\x3c\\x00\\x18\\x80\\xe1\\x8f\\x59\\x64\\x1d\\x3d\\x01\\x0b\\x9b\\xea\\xbe\\x88\\xc5\\x0c\\x7e\\xc3\\xc7\\xfb\\xce\\xad\\xbd\\xb7\\x1f\\x07\\x9f\\x06\\xff\\xea\\x66\\x34\\x18\\x46\\xc2\\x0a\\x66\\x12\\x9b\\x50\\xa5\\x38\\x54\\x93\\x1f\\x81\\xf4\\xf1\\x8f\\x05\\x9a\\x31\\xa4\\x50\\xb0\\xe2\\x12\\x63\\x41\\xfc\\x48\\x01\\xc3\\xf0\\xd8\\xd8\\xb3\\xb3\\xfb\\x20\\x4e\\x19\\x31\\xf0\\xd8\\x34\\x29\\x02\\x54\\x64\\xa6\\x30\\x46\\x8e\\x92\\x54\\x0b\\xcd\\x75\\x16\\x9f\\xa9\\xc3\\xdd\\x96\\xcc\\x4e\\x6a\\xe6\\x0f\\x8f\\x4d\\xb0\\xc7\\x80\\xe1\\xf1\\xb7\\x6a\\x42\\x22\\xc2\\x40\\x76\\x0c\\x82\\xf9\\xf8\\x64\\xec\\xa2\\xad\\x21\\x4e\\x1c\\x00\\x06\\x20\\xf9\\xdf\\xd8\\x49\\x25\\xa8\\xbe\\x30\\x9b\\x01\\x1c\\xb6\\x4d\\x15\\x63\\x9b\\x23\\x05\\x31\\x66\\x25\\x9c\\x08\\x30\\x5f\\x76\\xf9\\x93\\xcc\\xe5\\xd6\\x58\\xb5\\x90\\x67\\x08\\xec\\xc8\\x38\\x4e\\x91\\xf0\\xc7\\x03\\x32\\xb2\\x78\\x99\\x66\\x17\\x00\\x70\\x70\\xb2\\x05\\x33\\x3f\\x67\\x49\\x01\\x51\\xb5\\x32\\x03\\x96\\xf5\\x38\\x21\\x3b\\x2c\\xa0\\xd6\\x01\\x48\\x05\\x8e\\x2d\\x28\\xb6\\xaf\\x11\\x9e\\x9e\\xd9\\x85\\x84\\xe0\\x66\\x8b\\x95\\xb8\\x7b\\xcd\\xca\\xa0\\x00\\x56\\x84\\x15\\x4c\\x6e\\x2c\\x8e\\xee\\x05\\xbd\\xa9\\x1d\\xe2\\xee\\x49\\x75\\xd4\\x60\\xd3\\x84\\xa6\\xda\\xc2\\xd4\\x6c\\x17\\x5e\\xca\\xe0\\x13\\x79\\x68\\x1e\\x5d\\x3e\\xf1\\xc9\\x70\\xc0\\xf5\\x2f\\x0e\\xc8\\x8f\\xcf\\x6e\\xc4\\x59\\xdc\\x66\\x88\\x8f\\x53\\x55\\x56\\x11\\xe1\\x19\\x02\\x40\\x4b\\xd7\\xfd\\x83\\x44\\xea\\x12\\xe1\\x45\\xb9\\x8f\\xe2\\x1e\\x13\\x68\\xc2\\xaf\\x42\\xde\\x1e\\x5b\\x01\\x92\\xcb\\x6a\\x36\\x22\\x62\\x44\\xf7\\x54\\x43\\x13\\x9d\\x91\\x84\\x28\\x33\\x94\\x72\\x5a\\xd6\\x98\\xf8\\x14\\xfa\\xae\\x2e\\x02\\xc9\\xb6\\xe2\\x10\\xd2\\xed\\x2d\\x85\\x16\\xad\\x14\\xe6\\xc2\\x4d\\x46\\x48\\x42\\x24\\x19\\x76\\x33\\x46\\x77\\x68\\x7c\\x59\\xc1\\x27\\xe8\\xed\\x41\\xda\\xaf\\x10\\x39\\x60\\xba\\x56\\x4d\\x10\\x50\\x07\\x16\\x3a\\x6c\\x9a\\xe9\\x41\\x31\\x38\\x5d\\x19\\x4f\\x05\\x71\\x42\\x63\\x06\\x92\\x32\\x32\\xf6\\x99\\xaf\\x32\\x03\\x59\\x47\\x22\\xb7\\x95\\x1b\\xc1\\xa0\\xf9\\x0b\\x42\\xc1\\x91\\x59\\xa0\\x07\\x94\\xcc\\x47\\xed\\x73\\xdc\\x94\\x1b\\x39\\x13\\x01\\x95\\x73\\x03\\x67\\xed\\xf0\\x10\\x18\\x30\\xe3\\x52\\xe0\\x03\\x8a\\x61\\xe7\\x23\\x93\\x06\\xcf\\xd8\\x1d\\x96\\xb3\\xaa\\xe3\\xcd\\xa1\\x90\\x3f\\xf8\\x12\\x34\\x89\\x08\\x1a\\xff\\xd7\\xa8\\xb4\\xcc\\xa1\\x72\\xc3\\xa4\\xfc\\xb0\\x13\\x22\\x60\\xd9\\x9b\\xb7\\xcc\\xc2\\x9f\\xc6\\x28\\x46\\x0a\\x07\\xc6\\xa8\\x55\\x29\\x27\\x35\\x60\\xc8\\x89\\x43\\x7e\\x71\\x03\\x11\\x93\\x20\\x73\\x43\\xe6\\xc7\\x5d\\x35\\x36\\x27\\x43\\x2b\\x04\\xe4\\x2c\\x2e\\x79\\x11\\x40\\x11\\x26\\x40\\xd5\\x4b\\x9f\\xc5\\x0c\\xac\\x04\\x4d\\x36\\xf3\\x95\\x9c\\xe6\\x58\\x28\\x9a\\x00\\xca\\x88\\x2e\\x37\\x5a\\x84\\x83\\x03\\xca\\x8c\\x05\\xda\\x31\\x56\\x5a\\xe3\\xbc\\x07\\x1f\\xa5\\xfb\\xd6\\x25\\x70\\x9e\\x33\\xea\\xf5\\xc9\\xd1\\x7b\\x55\\xe7\\x12\\xb5\\x09\\x66\\x12\\xb3\\xcc\\xf4\\x90\\xac\\xee\\x92\\xee\\x77\\x1f\\x2e\\x8c\\x63\\xd7\\xf1\\xa5\\x72\\xaa\\xd2\\xa0\\x63\\xb1\\x9c\\x8f\\x0d\\x57\\x61\\xca\\x40\\x9b\\xf8\\x88\\xd2\\x78\\x86\\xb9\\x40\\x99\\xf4\\x02\\xcf\\xe0\\xad\\x60\\xfc\\xf9\\xda\\x52\\xf1\\x07\\xa3\\x03\\x3e\\x1c\\x9e\\x70\\xac\\x2c\\xec\\xf4\\x47\\xc0\\x0f\\x40\\xc7\\xaf\\xb5\\x6b\\x96\\x29\\xf9\\x02\\xe7\\x46\\x80\\x41\\x62\\xa6\\x3a\\xe8\\x85\\xb6\\x9c\\xda\\x8c\\x00\\x85\\xd4\\x5e\\x42\\xc0\\xe1\\x85\\x0a\\x72\\x29\\xd7\\xd8\\x8d\\x73\\x85\\x05\\xbc\\x86\\x16\\x77\\x32\\x9c\\x78\\x1a\\x8d\\x48\\x95\\xa8\\x94\\xc3\\xa4\\xd8\\x10\\xc2\\x60\\xee\\x9d\\x3e\\xf2\\x2f\\x8c\\xa4\\x0d\\xf8\\x8b\\x64\\x38\\x12\\x40\\xfe\\x1f\\xea\\xbe\\xd5\\x06\\x36\\x76\\x3d\\xc0\\x7b\\xa4\\x63\\x5f\\xfa\\xd5\\xcb\\x48\\xb6\\x60\\x2a\\xb2\\xb3\\x9c\\x26\\x31\\x4c\\x2c\\xf1\\x14\\x83\\x59\\x00\\x06\\x19\\x10\\x22\\x21\\xd5\\x1d\\x8f\\xbd\\x0e\\x97\\x43\\xd1\\xda\\xf8\\xc5\\xad\\xea\\xef\\x41\\x90\\x55\\x1d\\x0c\\xee\\x56\\x58\\x3e\\xd0\\x87\\x06\\x02\\x60\\xc3\\xae\\x5d\\xf1\\xe9\\xf8\\x2a\\x8b\\x0d\\x5e\\xdb\\xba\\x68\\x02\\x56\\xda\\xa3\\x1e\\x43\\x36\\x39\\xb2\\xc6\\xa5\\x9f\\x82\\x45\\x25\\xa5\\x57\\x8f\\x31\\xea\\x3e\\x17\\x38\\x43\\x98\\x29\\x01\\x58\\xe0\\x38\\x8d\\x66\\xf0\\x68\\x9c\\x5c\\x8e\\x76\\x13\\xaf\\x21\\xf8\\x97\\x64\\x8c\\xd9\\xb0\\x70\\x12\\x29\\xca\\x80\\x27\\x1e\\x74\\x68\\x10\\x3b\\x75\\x58\\x52\\x7f\\xee\\x1a\\xab\\xbc\\xd6\\x98\\xd9\\xd0\\x35\\x78\\x0a\\x61\\x68\\x60\\xa6\\x1a\\x8c\\x06\\x6c\\x7e\\xb7\\x26\\x34\\x5a\\x92\\x81\\x24\\x42\\xc6\\x00\\x0e\\x26\\x5e\\xbe\\x9b\\x8e\\xa0\\x27\\x82\\xc9\\x95\\xd3\\xd5\\x78\\x1d\\xc7\\x7f\\x21\\xa5\\xce\\xf2\\x85\\x0e\\xcb\\xdc\\x29\\xf3\\x45\\x47\\xbe\\x24\\x8d\\x50\\xfd\\xb3\\xec\\xd4\\x46\\xca\\x43\\x1a\\x1c\\x3c\\x18\\xa0\\x1a\\x8c\\x36\\xe0\\x54\\xbd\\x03\\x4d\\xf9\\x40\\x6f\\x58\\xa3\\x8d\\x96\\x1f\\xbc\\x60\\x30\\xc7\\xba\\x60\\x80\\x5b\\x79\\xf6\\x41\\xa5\\x29\\xea\\x9f\\x74\\xa8\\x02\\xc1\\xb3\\x36\\x46\\x12\\xca\\x50\\x1c\\xe0\\x42\\x6b\\x6d\\x24\\xd5\\xcc\\x04\\x13\\xd6\\x09\\x01\\x6e\\x4f\\x78\\x81\\x22\\x35\\xb2\\xa0\\x3b\\xc5\\xa0\\x5a\\x1c\\xfa\\xbb\\xe9\\x7d\\x44\\x89\\x2b\\x99\\xa6\\xe2\\xda\\x45\\x99\\x02\\x5c\\x8b\\x07\\x4b\\xae\\x3c\\xa9\\x44\\xd4\\x39\\x8c\\x4b\\x2c\\x8a\\x42\\x12\\x5f\\xae\\xbf\\x57\\x60\\x8d\\x5a\\x9a\\x77\\x0c\\x9c\\xc4\\x50\\xa7\\x01\\xa3\\xc0\\x68\\x14\\xb6\\x1e\\x76\\x36\\xfe\\x88\\x97\\x3f\\x43\\x1e\\xa9\\xb7\\x72\\xeb\\xaf\\x56\\x10\\xd4\\x1c\\xaa\\x4e\\x21\\xd5\\x7e\\x93\\xa8\\xb8\\xec\\x6f\\x64\\x17\\x69\\xe7\\x46\\xa5\\x98\\x29\\x80\\x2e\\x3a\\x31\\x2e\\x00\\x14\\xe7\\x7e\\xfd\\xf0\\x04\\x58\\x28\\x7e\\x06\\xe0\\x8a\\x22\\xfb\\x15\\xc8\\xfb\\x9c\\xc5\\x10\\xcc\\x0c\\xf9\\x33\\x9f\\x15\\xc9\\xec\\xf0\\x22\\x52\\x05\\x9a\\x4a\\x70\\xce\\x52\\x67\\x13\\xab\\xc5\\x19\\x29\\x92\\x14\\x93\\x8f\\xd2\\x20\\xc3\\xad\\x54\\x84\\xf1\\x38\\x3a\\xa6\\xe7\\xc6\\x29\\xfa\\x23\\x21\\x81\\x2d\\xfb\\xa1\\x8a\\xc6\\xf4\\x68\\x86\\xf9\\x1c\\x57\\xd2\\xe6\\xce\\xf3\\xef\\x6d\\x29\\x3e\\xf8\\xef\\x89\\x06\\x38\\x9b\\x95\\x47\\xe2\\x14\\x81\\x67\\xcd\\x22\\x54\\x68\\x50\\xeb\\x70\\xf0\\xe3\\xd9\\xca\\x4f\\xbb\\xf6\\x34\\xc9\\xe0\\x25\\x17\\x52\\x70\\x40\\x4c\\x05\\x73\\xf5\\x00\\x59\\xa7\\x96\\x33\\xec\\x48\\x4c\\x98\\xb6\\x85\\x0b\\x81\\x73\\xa2\\x2d\\x16\\x9e\\x1e\\x1e\\xda\\x33\\x15\\x9b\\xf6\\x23\\x2a\\x56\\x2e\\xe8\\x38\\xd2\\xa7\\xf0\\xcc\\x84\\x0e\\x1f\\xf9\\x84\\x45\\x11\\xa4\\x18\\xae\\xf5\\x8d\\x09\\xb6\\x74\\xce\\xc6\\xd1\\xbb\\xb5\\x92\\xc8\\xea\\x55\\x8e\\x54\\x77\\x0f\\x51\\x57\\x15\\xd8\\xa1\\x20\\xf4\\x4d\\x44\\xb2\\x67\\x63\\x68\\x85\\x9d\\x8d\\xd7\\xf2\\x2a\\xde\\x68\\xbc\\x13\\x64\\x14\\xe8\\x50\\x05\\xc2\\xf0\\xe0\\xe9\\x9f\\xd8\\xc0\\x06\\x5b\\xad\\x57\\xc1\\xc6\\xc6\\x40\\x35\\xc1\\xa4\\xad\\x72\\x36\\x56\\xb0\\xd1\\xc9\\x30\\xcd\\xac\\x0f\\x75\\x5c\\x7e\\xbc\\x31\\xae\\xd8\\xd7\\xbb\\xd2\\x1c\\x3b\\x77\\x44\\x52\\xf8\\x21\\x68\\xe7\\x07\\xa8\\xfc\\xc9\\xad\\xbe\\xb8\\x30\\x11\\xe2\\xc4\\xa5\\x2d\\x14\\xe9\\x15\\xb8\\x1d\\x04\\xfe\\x78\\x19\\x32\\x5c\\x4d\\x48\\x8f\\x47\\x34\\x63\\x66\\xba\\x23\\x8a\\xc0\\xc9\\x90\\x68\\x36\\x07\\x03\\x32\\x62\\x43\\x03\\x32\\x7d\\xd0\\xd9\\x48\\xa5\\xb8\\xbe\\xe6\\xe6\\x26\\x42\\x0b\\x25\\x97\\x94\\x75\\xfd\\x49\\x32\\x47\\xd8\\x9a\\x2e\\x51\\x08\\x02\\x3e\\xb5\\x52\\xf7\\xf2\\x97\\x30\\xf1\\x5e\\x4e\\xae\\xb3\\xd9\\x88\\xcb\\x1b\\x24\\x52\\x0a\\x05\\x8d\\x67\\x04\\xeb\\xb0\\xe1\\x49\\xe3\\x82\\xef\\x08\\x84\\xa6\\x3f\\xf6\\x08\\xad\\x21\\x07\\xe7\\xc5\\xd6\\xb5\\x4b\\x1b\\x41\\x62\\x3b\\x3b\\x60\\xdb\\x76\\xe6\\xa2\\x48\\x95\\xb3\\xd2\\xdb\\x43\\x3b\\x0a\\x5b\\x7c\\xba\\xf0\\x86\\xd9\\x9a\\x67\\xe0\\x85\\x5a\\xd2\\xfb\\x8d\\x38\\xf8\\x0d\\x8c\\xde\\xcd\\xaf\\x42\\xce\\xb2\\xa3\\x84\\xd5\\x61\\x66\\x88\\x25\\x17\\x68\\x7b\\xa4\\xf2\\xc0\\x2d\\x24\\x15\\xf7\\x8f\\x58\\x45\\xae\\x49\\x93\\x81\\xaf\\xe8\\xbc\\x5d\\x96\\x37\\x78\\x67\\x3a\\xb0\\x38\\x3c\\x98\\x4b\\x72\\x51\\xd6\\x8b\\x23\\x45\\xd2\\x32\\x74\\x96\\xdf\\x76\\xe7\\x65\\x37\\x1b\\x5b\\xb4\\x93\\x4b\\x36\\xc7\\x5d\\x33\\xb7\\x64\\xb5\\xef\\x63\\x37\\x0b\\xb6\\xce\\x6c\\xb4\\x2b\\xa5\\xbb\\x65\\x8d\\xed\\xb8\\x78\\x73\\xe9\\xf6\\xae\\x8b\\x69\\x3d\\x7a\\x1c\\x34\\x20\\x3a\\x81\\x1a\\x81\\xbe\\xdc\\x3c\\x7d\\xcc\\x2d\\x62\\xe4\\x10\\x3a\\x06\\xfc\\x06\\xf7\\xdf\\xc8\\x25\\x9c\\x49\\x3c\\xf8\\x1c\\xf3\\x8d\\x9d\\xf8\\x4c\\x6d\\x14\\x04\\xa9\\x98\\x04\\x34\\xc5\\x4a\\x53\\xfb\\x2f\\xe1\\x25\\xa6\\x3c\\x1c\\x93\\x42\\x6f\\x0a\\x16\\x90\\x4b\\x60\\xc5\\x9c\\x11\\x63\\x15\\xc4\\x0a\\xb3\\xd8\\x0a\\x3f\\x20\\x0e\\xd0\\x44\\x0a\\x1f\\xe3\\xb4\\xcc\\x4a\\x7c\\xf6\\x54\\xa7\\x2b\\x64\\x9a\\x10\\x11\\x2a\\xab\\x0c\\x12\\x05\\x91\\x24\\xfb\\x5d\\x12\\x00\\xf6\\xea\\xf7\\x80\\x27\\x4d\\x62\\x24\\x6b\\x8c\\xeb\\x1c\\x89\\x13\\x5c\\x2e\\x92\\xc7\\xc6\\x2e\\x6e\\x9a\\x14\\x93\\x57\\x2b\\x86\\x6d\\x10\\xc4\\x32\\x96\\x46\\x8b\\xb3\\x52\\x17\\xbd\\x0d\\x13\\xbc\\x43\\x3f\\x5d\\x21\\x73\\x45\\x8f\\x4a\\x44\\x4e\\x65\\x8f\\xe9\\x9c\\x7d\\xcc\\x4f\\x9d\\x13\\xbb\\x1f\\x8e\\xa2\\x69\\xa1\\x43\\x4e\\xd1\\x7d\\xcd\\xa8\\x9c\\x29\\x26\\xbe\\xe8\\x9c\\xa4\\x62\\xbc\\xa8\\xa1\\xe4\\x42\\x4b\\xb2\\xa5\\xa8\\x2b\\xa2\\x64\\x23\\x45\\xdf\\x1b\\x17\\x22\\xb0\\x12\\xd1\\x2d\\x10\\x4a\\x4f\\x22\\x66\\xc7\\xa5\\x3d\\xb4\\x4c\\xa1\\x9b\\x45\\x71\\x13\\x4d\\x5f\\x42\\x50\\x5c\\xae\\xd2\\x00\\xce\\x5e\\x18\\x90\\x22\\x65\\x20\\x1b\\xa0\\x44\\xc4\\x3d\\x18\\xc7\\x31\\x13\\x3e\\x9a\\x44\\xf8\\x2c\\xc2\\xfd\\x48\\xe1\\xf5\\x44\\xf6\\x58\\xe2\\x53\\xa8\\xe0\\xce\\xd3\\x11\\x52\\x11\\xd4\\xa8\\x4d\\xa2\\xe8\\xab\\x41\\x92\\xaa\\x51\\x1e\\x20\\xf0\\x45\\x65\\x8e\\xf7\\xff\\x68\\xab\\x98\\x49\\x08\\x70\\xd9\\xa9\\x95\\xa4\\x14\\x86\\x0c\\x6c\\x7d\\x02\\x41\\x1b\\xba\\x9e\\x7a\\x2b\\x4a\\x31\\xf6\\xc6\\x8a\\xc6\\x22\\x9d\\x10\\x9f\\xde\\xb4\\x80\\x4d\\xe0\\x07\\x34\\xd4\\x75\\x6b\\x1e\\x81\\xbd\\x58\\x4b\\x42\\x6c\\x6a\\xec\\xe3\\x1d\\x4b\\x2d\\xf9\\xec\\x78\\xc6\\xbd\\x59\\x0b\\xa9\\x22\\x46\\xf1\\x80\\x5c\\xfa\\xec\\xf2\\xa5\\x48\\xa0\\x6d\\xdc\\xa0\\x92\\x48\\xf4\\xea\\x30\\x05\\x8d\\x2b\\x69\\xd8\\x47\\xc2\\xaf\\x51\\x41\\xf4\\xf6\\x9c\\xc7\\xda\\x1f\\x93\\x6d\\x23\\x2b\\xfa\\xec\\xd5\\x84\\x9d\\xcb\\x2f\\xdf\\xac\\x63\\x45\\x03\\x22\\x35\\x3b\\x72\\x65\\x46\\x25\\x90\\x27\\xa1\\x58\\x51\\xa5\\xc3\\x9c\\x78\\x07\\x02\\xf9\\x07\\x26\\x06\\xa7\\x52\\x51\\xd2\\x4c\\x30\\x61\\x84\\x18\\xa2\\x31\\x6f\\xff\\x3d\\x89\\x1a\\xe2\\x1f\\x0a\\x2e\\xfd\\x13\\x30\\xb1\\x40\\xb9\\x51\\xbc\\x19\\x24\\xa9\\x3d\\x47\\x93\\xc2\\xe9\\x6d\\xc5\\x5f\\x99\\x8d\\x07\\x81\\x21\\x3b\\x93\\x7f\\x8b\\x63\\xc1\\x8e\\x4a\\x21\\x89\\x64\\x72\\xbd\\x38\\x99\\x3c\\x81\\xad\\xcf\\x12\\x42\\x24\\xca\\x00\\xcb\\x6b\\x14\\x6d\\xa0\\xfd\\xed\\x52\\xb3\\x25\\xc4\\xa0\\x8d\\x8f\\x44\\x5b\\x5c\\x4b\\xb0\\xbe\\x04\\xa1\\xe0\\xbe\\x49\\x49\\xb8\\x42\\x32\\xc1\\xba\\xd9\\xe1\\x77\\x9e\\x3c\\xae\\x9b\\xb3\\xe0\\x0c\\x83\\x2f\\x28\\xb2\\x9d\\x44\\xdd\\x08\\x53\\xa0\\xd2\\x84\\x16\\x3a\\x8b\\xc4\\x21\\x53\\x48\\xbe\\xd4\\x62\\xca\\xe9\\xee\\x04\\x02\\x3b\\x07\\x00\\x65\\x0a\\x5b\\x5a\\xa1\\xd8\\x12\\x67\\x5f\\xe9\\x78\\x0e\\xe8\\x6a\\xe1\\xb5\\x77\\x69\\x2f\\xcd\\x2c\\x05\\x70\\xc3\\x1e\\x06\\xb2\\xd4\\xda\\xe4\\xe2\\x0f\\x23\\x98\\x17\\x66\\x39\\xa0\\xcb\\x09\\x05\\x46\\x00\\x55\\x22\\xcd\\x43\\x72\\xf2\\xc2\\xa2\\x47\\x35\\xcf\\x68\\xb2\\x54\\xec\\xea\\x21\\xcf\\xa1\\x2f\\x69\\x8a\\x0c\\xbd\\xe1\\x06\\xfb\\x51\\x00\\x2e\\xb3\\x5e\\xd9\\x78\\x67\\xba\\x8d\\x2f\\xdb\\x55\\xc7\\x3c\\xff\\x43\\xce\\x09\\x22\\x0f\\x0d\\xec\\x29\\xd7\\x4e\\x65\\x0d\\xda\\xab\\x76\\xaa\\xd9\\xaa\\xb4\\xe2\\x7f\\xba\\xae\\xbc\\x9c\\xbc\\x3d\\xf9\\x00\\x79\\x18\\x24\\x7b\\xe6\\xc1\\x1c\\xd7\\x66\\xe6\\x77\\xa4\\x17\\x77\\xe5\\xde\\x15\\x03\\x6e\\xbb\\x60\\x8e\\xc0\\x64\\xac\\x00\\xaf\\xc5\\x2b\\x13\\xf2\\x16\\x32\\xfd\\x31\\x05\\x58\\xa2\\x16\\xe2\\x8b\\xb1\\x66\\xf1\\x19\\x8a\\x21\\xb1\\x74\\x10\\x7c\\x9a\\xeb\\xb7\\x58\\x71\\xc1\\x26\\x9f\\x8d\\x1d\\x1d\\xab\\x8d\\x10\\xf7\\x55\\x63\\xc5\\x9e\\xcf\\xd6\\x88\\x08\\xd5\\x23\\x20\\xd2\\x54\\x45\\x90\\xc8\\x33\\xa8\\x6d\\x0d\\x96\\x42\\xf2\\xaa\\x42\\xc0\\xa0\\xdc\\xc9\\x70\\x9d\\xf1\\x37\\x4a\\xc5\\x56\\x1a\\xb4\\x10\\x5b\\xf0\\xb6\\x18\\xe9\\xd9\\x66\\x51\\x71\\x05\\xe8\\x6e\\x4e\\x36\\xa0\\xe8\\xa1\\xb7\\x67\\xcc\\xdf\\xb9\\x24\\x3c\\x70\\x66\\xe5\\x54\\x17\\xfb\\x9c\\xb2\\x15\\x51\\xb6\\xcd\\xc6\\x94\\x80\\x03\\x94\\x2a\\x89\\xa4\\x4a\\xe6\\x18\\x71\\xba\\xba\\xe3\\x57\\xc4\\x00\\x83\\xa0\\xec\\x7e\\xcf\\x42\\x95\\x5d\\xb6\\x27\\x8c\\xbb\\x62\\x2b\\x6c\\xa1\\x56\\xc4\\x6b\\xe2\\x82\\xa0\\x4a\\xa2\\xa3\\x41\\x65\\xaa\\xc0\\x08\\xdb\\x4b\\x7f\\x1c\\x5e\\xb9\\x99\\x9f\\x40\\x9d\\xae\\xe2\\x07\\x72\\x22\\x4e\\xf4\\x3f\\x23\\xc9\\xdc\\x9f\\x4a\\x99\\x26\\x04\\x64\\x1c\\xe1\\xf2\\x80\\x61\\xc3\\x72\\x34\\x50\\xf8\\x28\\x00\\x26\\x94\\x20\\x20\\xdb\\xd9\\x06\\xd1\\x58\\x50\\x1d\\x54\\xbf\\xa8\\xe4\\x8a\\x80\\x0f\\xc5\\x04\\x34\\x83\\x51\\x79\\x20\\x78\\xa9\\x62\\x96\\x0e\\xaa\\x2e\\x24\\x06\\xcb\\x50\\x8c\\xd4\\xec\\xd0\\x40\\xa1\\x62\\xa7\\xbe\\x06\\xb2\\x8d\\x7d\\xf5\\x85\\x8f\\x02\\x8d\\xac\\x7f\\x60\\xb5\\x3b\\x70\\xa2\\x05\\x36\\x60\\xa8\\x23\\xe6\\x1e\\x42\\x69\\xad\\xd5\\x88\\x6f\\x7f\\x9b\\xbf\\x8e\\x97\\x74\\x44\\xbe\\xe3\\x0f\\x2f\\xec\\x25\\x00\\x41\\x75\\xe4\\x3f\\x00\\x5a\\xeb\\xcc\\x08\\x40\\xac\\x59\\xbc\\x07\\xc4\\x66\\x13\\x9f\\xb1\\xf5\\x2d\\x9e\\x0b\\xc6\\x14\\x94\\xc4\\xb3\\x7b\\xe5\\xf9\\x49\\x95\\x9b\\x81\\x6a\\xd9\\x2d\\x90\\x28\\xf5\\x48\\xb8\\x29\\x7b\\x0d\\x0f\\x68\\xcf\\xcc\\x7c\\x3e\\x1f\\x94\\x73\\x18\\x91\\xa9\\xd2\\xa7\\x57\\x07\\xe9\\xf8\\x89\\x3d\\x17\\x4b\\x83\\x36\\x2d\\x43\\x43\\x3d\\x40\\x81\\x90\\xd1\\x9e\\x9c\\x98\\x0e\\xd2\\x01\\xbd\\x92\\x40\\x0c\\xf1\\x49\\xf0\\xc2\\xea\\xb0\\x42\\xa3\\x48\\xc7\\xa2\\x86\\xc6\\xb0\\x00\\xc6\\xad\\x00\\xa9\\x2a\\x10\\x1f\\x51\\x05\\x9c\\x69\\xcc\\xf8\\x3e\\xc3\\x8a\\x42\\xd2\\x0e\\xc5\\xb5\\xb4\\x8f\\xf5\\x79\\x23\\xf0\\x7d\\x78\\x44\\x55\\xd4\\x00\\x0e\\xbc\\xdd\\x3b\\x0a\\x5e\\x3a\\x70\\x84\\xf1\\x97\\x04\\x49\\x87\\xbc\\x09\\x65\\xc7\\x8b\\x46\\xcf\\xcb\\x30\\x07\\x0e\\xcf\\x44\\x64\\xe5\\xd0\\xdd\\x90\\x06\\x1e\\x41\\xa0\\xd6\\x09\\x06\\x5b\\x01\\x8e\\x59\\x6c\\xa3\\x85\\x03\\xf7\\x49\\x23\\x5d\\xe9\\xa6\\x10\\xd8\\x91\\x7b\\x06\\xeb\\x40\\x66\\x41\\x08\\x27\\x08\\x05\\xf5\\xda\\x39\\xba\\x91\\x82\\x43\\x49\\x46\\x72\\x77\\xc1\\xcf\\xe8\\x59\\x58\\x74\\x8a\\xb8\\x94\\xd9\\xd0\\x16\\x14\\x03\\x6c\\xb1\\x68\\x96\\x4c\\xf4\\x8e\\xcf\\x99\\x98\\xb3\\xb9\\x40\\x48\\xe3\\x40\\x43\\x24\\xaa\\xd4\\x9c\\xeb\\x44\\x64\\x17\\x94\\x22\\x1f\\x91\\x2f\\xe4\\xb4\\x99\\x4b\\xc2\\x9f\\x0e\\x50\\xcd\\xb1\\xf3\\xdc\\xc6\\x43\\xe7\\xf0\\xe4\\x06\\x18\\x21\\xac\\xcf\\x04\\xb7\\x43\\xd2\\xd3\\x97\\x3c\\xc3\\xb3\\x71\\x11\\x6e\\x5d\\xc1\\x9c\\x3b\\x97\\x33\\x04\\x19\\x4b\\xe2\\x38\\xb9\\x62\\xb9\\x76\\x70\\xa9\\x52\\x40\\xdf\\xb0\\x07\\x88\\x40\\xda\\x41\\x46\\xe7\\x8f\\x83\\x2e\\xe4\\x48\\xfd\\x16\\xca\\x50\\x31\\xdc\\x5e\\x11\\x89\\x7e\\x3b\\xc0\\x10\\xa7\\x89\\x64\\xf9\\x21\\x02\\x3b\\x38\\xd7\\xd0\\xc9\\x22\\x84\\x1a\\x2a\\xf9\\xfa\\xa5\\xf0\\xc5\\xc8\\x22\\x70\\x0d\\x25\\x02\\x74\\x2a\\x50\\x8a\\x16\\x92\\xda\\x08\\x52\\x74\\x33\\x99\\x31\\xcb\\xa2\\xe2\\xa6\\x2a\\xf8\\xd5\\x35\\x51\\x34\\x06\\xc2\\xd2\\x41\\x09\\x0b\\x83\\xc5\\x74\\x7f\\xa9\\x12\\x80\\x61\\xa1\\x0c\\x93\\x83\\x88\\x44\\x04\\xd1\\x29\\x04\\xc7\\x4c\\xc4\\xe6\\xf0\\x82\\x28\\xcb\\xeb\\x65\\x03\\x24\\x60\\x23\\x3a\\x13\\x61\\x5e\\x86\\x70\\x43\\x87\\xdc\\x7f\\xaa\\x05\\xb9\\x7b\\x02\\xfa\\xf9\\xd0\\x87\\xfe\\xa6\\x80\\x63\\xc3\\xab\\xf1\\xfb\\x13\\xd8\\x34\\xd9\\x61\\x8a\\xca\\x0c\\x23\\x49\\xc0\\x2f\\x96\\x2e\\x0b\\x52\\xe7\\xb0\\xac\\x06\\x94\\x03\\x5b\\x19\\x04\\x88\\x1b\\x06\\xa8\\x04\\xe1\\x07\\x10\\x76\\x60\\x08\\xc5\\x2f\\xc0\\xc7\\x07\\x20\\x5c\\xe1\\x4a\\x95\\x44\\x20\\x0c\\x4d\\x01\\xf2\\x38\\xf1\\x91\\x25\\x89\\x4f\\xa1\\xf9\\x49\\x8f\\x28\\xd4\\x0c\\x3f\\xea\\xf1\\xb9\\x5c\\xb0\\x09\\x50\\xd0\\xe3\\x37\\x8f\\x59\\x60\\x2b\\x6a\\xa2\\xb1\\x92\\x41\\x56\\x77\\xd1\\x40\\x90\\x96\\x50\\xa7\\x3e\\x34\\x48\\xa4\\x4e\\x11\\x48\\xa8\\x0d\\x3e\\x1d\\x78\\x0f\\x46\\x0c\\x6a\\xa5\\x8e\\x74\\x9a\\x83\\x09\\x1f\\x12\\x43\\xb5\\x0c\\x6a\\x93\\x0e\\x84\\x29\\x3c\\x46\\xa1\\x9b\\x10\\xbd\\x37\\x05\\x23\\x47\\x37\\xa4\\xb5\\x20\\xc5\\xe9\\x42\\x82\\x12\\x5b\\x9d\\x78\\x80\\xbd\\xe8\\x14\\x30\\x39\\xff\\x9c\\x00\\x75\\x3f\\x55\\xa4\\x51\\xd8\\x95\\x15\\xa4\\x0d\\x07\\x64\\xe2\\x04\\xba\\x7d\\x14\\x68\\x17\\x77\\x36\\xc5\\x08\\x1a\\x72\\x80\\xc0\\x5c\\x40\\x15\\x19\\x5f\\x14\\x09\\xd5\\x48\\x59\\x31\\x05\\x8e\\xbf\\x0c\\x3f\\x03\\xc4\\x65\\x12\\x04\\x76\\xd5\\x51\\x45\\xc5\\x8e\\x2f\\x65\\x5f\\x4b\\x51\\xa5\\xe6\\x55\\x6e\\x65\\x80\\x38\\x9f\\x82\\x4d\\x6c\\x1e\\x67\\x86\\xbd\\xb8\\x0a\\xab\\x93\\x7a\\xd3\\x9f\\x03\\x42\\x6d\\xe2\\x71\\xf5\\xe8\\xb2\\x16\\x2a\\x78\\x23\\xc0\\x6d\\x2d\\x30\\x00\\xd9\\x2d\\x4f\\x0a\\xec\\xf5\\x90\\xd6\\xea\\x82\\x8d\\xb4\\x06\\x30\\x73\\x18\\xe9\\x63\\x14\\x8d\\x24\\x15\\xec\\xc5\\x0f\\x41\\xe6\\xec\\x58\\xe9\\x22\\xd8\\x28\\x13\\xf1\\x4c\\xe0\\x96\\x91\\x20\\xb2\\x82\\xcf\\xbe\\x81\\x18\\xaf\\xf3\\x1a\\xc6\\x77\\x51\\xfe\\xe9\\x4f\\x19\\xf1\\x47\\x84\\x81\\x98\\xc2\\x3b\\xd1\\x73\\xf5\\xe7\\x0e\\x2e\\x69\\x93\\x7c\\x12\\x21\\x94\\x36\\xd8\\xd9\\xcc\\xde\\x72\\xcf\\x2f\\x10\\xda\\x74\\x91\\x3f\\x3e\\x90\\x4e\\xe9\\x22\\xf6\\x81\\xa6\\xe0\\x59\\x02\\x17\\x32\\xb8\\x1a\\x77\\x01\\xd2\\xe2\\x1e\\x16\\x42\\x1c\\xd5\\xfc\\xb1\\x06\\xf2\\x40\\x30\\xee\\x30\\x31\\x59\\xb1\\x12\\x9d\\xad\\x02\\xe0\\x9c\\xde\\xba\\xb5\\x37\\x4e\\x0e\\xd6\\x17\\x25\\x62\\x04\\x26\\x1e\\x5c\\x40\\x1f\\xd2\\xe2\\x5a\\x1b\\xbb\\x7b\\xfd\\x89\\x2e\\x12\\xe8\\x6f\\x35\\x67\\x09\\xa4\\x1f\\x06\\x05\\x67\\xe3\\x37\\xd1\\xc8\\x70\\xcb\\xb8\\x7c\\x40\\x40\\x68\\x36\\x65\\x56\\x08\\x7a\\x0f\\x65\\x7f\\xfb\\x2d\\x9b\\x7d\\x53\\x59\\x71\\xa8\\xd7\\x53\\x49\\xcc\\x78\\xa1\\xb5\\x04\\x03\\x6b\\xec\\x79\\x0d\\x2e\\xb2\\x88\\x64\\x1d\\xf8\\x65\\x54\\x5a\\x60\\xbf\\x6b\\x64\\xfa\\x4c\\x24\\xf8\\xb1\\x9d\\xc0\\xbe\\xd5\\xb8\\x20\\xd2\\x59\\x37\\xdb\\x07\\x10\\x63\\x2d\\xe8\\x67\\x99\\xec\\x43\\x37\\x97\\x45\\x79\\x9d\\x82\\x80\\xe9\\x1f\\x34\\xeb\\xbc\\x5b\\x0c\\x33\\x37\\xf5\\x10\\xaf\\x73\\x01\\x91\\x35\\x27\\x34\\xe1\\x1d\\xc7\\x2b\\xc7\\xc4\\x15\\x91\\x03\\x7e\\x0a\\x2e\\xba\\xe6\\x01\\x86\\x54\\x0a\\xfb\\x91\\x18\\x91\\x66\\x0a\\xed\\x85\\x64\\x41\\xac\\x70\\xed\\xfe\\x95\\x0c\\x28\\x36\\x46\\xc2\\x3f\\x70\\x13\\x09\\x56\\x73\\xb2\\x1f\\xec\\xf4\\x14\\x73\\x5b\\xef\\x24\\x07\\x5d\\xd5\\x3e\\x06\\x08\\xe6\\xff\\x56\\x3e\\x4d\\xf5\\x6d\\x00\\x00\\x16\\xe1\\xab\\x3b\\x6d\\x98\\x9e\\xe0\\xda\\xd4\\x8b\\x6a\\x45\\x32\\xa1\\x4d\\x05\\x11\\x58\\xb0\\xaa\\xa1\\x18\\xf6\\x93\\xb6\\x9a\\xce\\x70\\x54\\x6b\\x58\\x43\\x49\\x18\\x48\\x33\\x3a\\x87\\x64\\xa3\\x13\\x03\\x62\\x99\\x11\\x17\\x18\\x67\\x84\\x3d\\x38\\x0d\\x55\\x78\\xa0\\x96\\x58\\x21\\x1a\\x3a\\x6e\\x0e\\x12\\x0a\\x8e\\x48\\x69\\x02\\xf3\\x04\\xc6\\xbc\\xe9\\x22\\x54\\x3a\\xdb\\x8f\\x32\\x15\\x45\\x84\\x47\\xa8\\x5b\\x14\\xdd\\xd3\\x1a\\xa0\\x05\\x89\\x01\\x84\\x8e\\xb1\\xd5\\xe7\\x30\\xe0\\xbc\\xda\\x08\\x35\\x88\\xbc\\x6e\\x8e\\x08\\x45\\x6e\\x95\\xca\\xa2\\xdc\\x90\\xb4\\x18\\x30\\x80\\xf3\\x01\\x60\\xb1\\xa6\\x96\\x1f\\x33\\x15\\x73\\xe2\\x6f\\x93\\x95\\xec\\x23\\x86\\x09\\xe7\\x43\\x74\\x92\\xf3\\x19\\x02\\xbe\\x6a\\x39\\x34\\xca\\xab\\x57\\x6f\\x75\\x53\\xce\\xd0\\xf4\\x33\\x63\\x08\\x20\\xe2\\x34\\x11\\x62\\xed\\x00\\x60\\x1d\\x00\\xe0\\x7d\\xf1\\x03\\xf7\\xfd\\x8d\\x8c\\x25\\x3d\\x76\\x45\\x04\\x96\\x3a\\x1c\\x0d\\x6e\\x8e\\x54\\x17\\xa7\\xc7\\xcd\\xbe\\x15\\xb3\\xa9\\x5c\\x00\\xf8\\x3f\\xbb\\x04\\x20\\x2b\\x8c\\xd3\\x4e\\xfc\\x41\\x27\\x6e\\x3a\\xa8\\xf7\\x02\\xed\\x5d\\x97\\xc8\\x99\\x0e\\x28\\x11\\x8a\\x09\\xb4\\x44\\x58\\x8f\\x83\\xcc\\x58\\x4a\\x08\\xb0\\x03\\xc4\\x62\\x96\\x28\\xe5\\x99\\x1f\\x8e\\x3c\\x22\\x51\\x15\\x60\\xd7\\xd8\\x1a\\x29\\x09\\x02\\x26\\x89\\xaa\\x2f\\x87\\x91\\x65\\x7b\\xc5\\x58\\xe2\\xc2\\x70\\xa0\\x01\\x12\\x24\\x32\\xba\\x98\\xe2\\x27\\xf3\\xa4\\x76\\xb1\\x8c\\xee\\x16\\x87\\x47\\xe1\\x17\\x40\\xbe\\x7f\\x48\\xd1\\x5a\\x23\\xe7\\xdb\\xb7\\x58\\x34\\x76\\x20\\xb8\\x48\\x72\\xdb\\xca\\x34\\xfd\\xfc\\x11\\xa1\\x1a\\x10\\x94\\xfe\\x28\\x8c\\x0e\\xe8\\x48\\x10\\x5d\\x98\\xa8\\x64\\x5e\\xe5\\xd9\\x69\\x14\\x38\\xe0\\x9a\\xb7\\x44\\x75\\x93\\xf8\\xf4\\x24\\xda\\x40\\x0e\\x11\\x4d\\xc2\\x21\\xd8\\xa1\\x86\\x6d\\x7c\\xea\\xe4\\xa2\\xa4\\xa3\\x03\\x01\\x7d\\x70\\xf1\\x48\\x32\\xe1\\x25\\x61\\xa6\\xf6\\x20\\xf2\\xc1\\x4e\\x28\\xd5\\x61\\x62\\x05\\x0e\\x08\\x9a\\x61\\x36\\x8e\\xe1\\x93\\xc7\\x2b\\x1b\\x39\\x97\\x1b\\x0a\\x08\\x9b\\x27\\x51\\x77\\x7c\\xc6\\x9e\\xb7\\x22\\xda\\x82\\x45\\x2c\\xc4\\x4a\\x7d\\x52\\x80\\xce\\xac\\xc8\\x34\\x24\\xb4\\xdf\\xce\\x10\\x69\\xfd\\x68\\x50\\x7e\\xc2\\x32\\x0d\\x51\\x42\\x55\\x0d\\xee\\x7b\\xe0\\xce\\x0b\\x93\\x67\\x4a\\x80\\xee\\xd4\\xe8\\x39\\x52\\xd1\\x7c\\x20\\xc1\\x7c\\xec\\x73\\xb8\\xf3\\x33\\x67\\x4f\\x19\\xbe\\xdd\\xcc\\x4e\\xdb\\xe4\\x08\\x93\\xd7\\xb1\\xff\\x8a\\xd2\\x2d\\x18\\x9e\\x94\\x22\\x14\\xb4\\xe1\\xc1\\xf1\\x9c\\xac\\x8b\\x7a\\xde\\xae\\x02\\x2a\\xae\\xcb\\x43\\x1e\\x01\\x93\\x27\\x10\\x6f\\x05\\x0b\\xc9\\x97\\x21\\x7e\\x42\\x63\\xbe\\xf3\\x5d\\xa6\\x57\\x1d\\x7b\\x6a\\xa9\\x30\\x04\\x37\\x08\\xf9\\x48\\x12\\x18\\x6c\\xd3\\x2b\\xc8\\xb1\\x16\\x64\\x86\\x5e\\xc0\\xcb\\x0b\\x7c\\x6b\\x60\\xd2\\x49\\xc1\\xeb\\xc6\\xc0\\x6f\\x34\\x3f\\x23\\xc7\\xc4\\xa6\\x47\\x6d\\x69\\x4a\\xc4\\xf5\\x42\\x84\\x39\\x6a\\x84\\xc6\\x0b\\xbc\\xc1\\x34\\x8b\\x0e\\xb1\\xf2\\x57\\x04\\x61\\x66\\xbe\\x99\\xe6\\xf3\\xe4\\x11\\xb1\\x6c\\x4d\\x7b\\xc6\\x6e\\x11\\x12\\x38\\xfb\\xc0\\xea\\xdf\\x50\\xd7\\xcd\\x5a\\x88\\xd6\\x4f\\x1a\\x1c\\xc5\\x38\\x73\\xe4\\xbd\\x18\\x05\\xcf\\x39\\x25\\x06\\xfb\\xfe\\xc6\\x65\\x21\\x63\\x21\\xc5\\x03\\x93\\xa7\\x89\\x71\\x0c\\xcd\\xd5\\x5e\\x27\\x8e\\xc8\\x1d\\x72\\x0d\\xfe\\x06\\x99\\x7a\\xb5\\x51\\x15\\xb0\\xd1\\x06\\x18\\x4c\\x34\\xd9\\xa9\\x42\\xfb\\x34\\x1c\\x77\\x7a\\xe8\\x5f\\xa7\\x91\\x10\\x96\\xac\\xb3\\x3d\\xcc\\xba\\xfa\\x4a\\xdf\\x67\\x23\\x85\\xc5\\x04\\x0d\\x41\\x07\\xfd\\x02\\x40\\x81\\xa6\\xee\\x6d\\xe1\\x18\\x4c\\x2f\\xb1\\x0b\\x07\\x17\\x9c\\x80\\x07\\x0d\\xa0\\xe3\\x9c\\x76\\x02\\x85\\x85\\x07\\x4c\\x25\\x09\\x8e\\xa5\\xcc\\x53\\x09\\x34\\xa5\\x67\\x6f\\x4c\\xf1\\xd2\\xdd\\xce\\x1a\\x91\\x84\\x49\\x09\\x2b\\xd5\\x02\\x72\\x26\\x2b\\x44\\x5f\\x60\\xd1\\x59\\x07\\xdd\\x22\\x8a\\xc5\\x25\\x41\\x26\\xc8\\x12\\x0b\\x7f\\xe3\\xbf\\x87\\x80\\x19\\xd1\\x36\\xf2\\x84\\xcb\\x00\\x63\\x1e\\xc7\\x8d\\x66\\x66\\xb1\\x88\\xfe\\x98\\x8b\\xdb\\x21\\xef\\x74\\x39\\x96\\x97\\x8a\\xa6\\x24\\x5d\\x3a\\xf2\\x0f\\x1d\\xc0\\x88\\x3d\\x61\\x20\\x52\\xe9\\x22\\xa6\\x80\\xd5\\xf7\\xd5\\xcf\\x19\\x1b\\x85\\x32\\xa9\\x2a\\x4d\\x41\\x7e\\xc8\\x1d\\x15\\xd0\\x1b\\xb3\\x82\\x50\\x97\\x41\\xb3\\xcc\\x13\\x3a\\x8a\\xac\\xc2\\x55\\x85\\x27\\x3f\\x4d\\xf0\\x44\\xca\\x9c\\x19\\x47\\x0e\\x0a\\x47\\x8d\\xce\\xd4\\x25\\x06\\x59\\x58\\xa3\\xe4\\x7b\\x38\\x22\\xb2\\xdf\\x34\\x8d\\x88\\x27\\xc2\\x0d\\x0c\\x40\\xe0\\x22\\x23\\x94\\x1d\\xc0\\x60\\x10\\xee\\xaa\\x41\\x0b\\x4b\\x49\\x97\\x85\\xe2\\xb4\\x1b\\x32\\x45\\x96\\xa5\\x1c\\x13\\xad\\x5c\\x4a\\xb4\\x98\\x66\\x01\\x26\\xd6\\x87\\xef\\x0b\\xe6\\xa3\\x7b\\x22\\x6f\\xbb\\xfb\\x2d\\x43\\x8c\\x48\\xa4\\x29\\x56\\x02\\x14\\xa2\\xb7\\xac\\x99\\x10\\x9d\\x56\\xb5\\x8d\\xbe\\x48\\x1e\\x2f\\x05\\x82\\x27\\x32\\x02\\xd5\\x12\\x6a\\x92\\x38\\x3e\\xa7\\x86\\xd4\\x48\\xfb\\xc4\\xb1\\x16\\xf4\\xce\\x4d\\x1f\\xae\\x72\\x40\\xda\\x04\\x23\\x84\\x6d\\xbb\\x1e\\x97\\x23\\x63\\x70\\x42\\x19\\x3a\\xda\\xd3\\xe1\\x99\\xfe\\x9d\\x4d\\xa0\\xe5\\xa6\\xb0\\x17\\x46\\xe8\\xed\\xb9\\xae\\x48\\x0f\\xe2\\x52\\xc3\\xad\\x12\\x00\\x16\\xc8\\x27\\x43\\x24\\xa4\\xa6\\x26\\x83\\xf2\\x41\\xe0\\xeb\\x3f\\x61\\x15\\x34\\x66\\x16\\x04\\x7c\\x3c\\x9e\\xfb\\xee\\x12\\x83\\x5c\\xc9\\xd9\\x0d\\x61\\x57\\x16\\x99\\x5f\\xce\\x94\\x0a\\x3b\\x75\\x58\\x8c\\x90\\xd6\\x24\\x3a\\xe1\\xd9\\xd9\\x7f\\x77\\x94\\xc8\\x01\\x1e\\xf0\\x02\\x3d\\x5a\\xda\\x13\\xfc\\xf1\\x01\\x7c\\x03\\x96\\x09\\x61\\xfd\\xc6\\x09\\xd6\\x83\\x32\\x06\\xc2\\x82\\x70\\x91\\x0f\\x29\\xff\\x15\\x89\\xdd\\x18\\xd5\\x46\\x47\\x69\\xd2\\x4c\\xf0\\x62\\x58\\x41\\x98\\x7e\\x07\\xb0\\x59\\x56\\xfb\\xad\\xa4\\xc9\\xf5\\xe2\\xd3\\x5b\\x63\\x38\\x9f\\xbe\\x11\\x26\\xb7\\x3d\\x18\\x36\\xf8\\xaf\\xb3\\x7b\\xd8\\x43\\x0d\\x74\\xc9\\x50\\xf6\\x25\\x88\\x25\\xe8\\x22\\x5e\\x86\\x90\\xd9\\x89\\x7e\\x11\\x06\\x69\\x0a\\x43\\xfb\\x44\\x03\\xfa\\x97\\x49\\x73\\x6a\\x05\\x46\\x4e\\x15\\x9f\\x15\\xd0\\x3a\\x47\\x97\\x5d\\xb8\\x83\\x41\\x41\\x04\\xe9\\x7e\\x52\\x3b\\xfb\\x03\\x15\\x03\\x5a\\x75\\x12\\x4d\\xc1\\x74\\x24\\x9a\\x9f\\xb4\\x24\\xf8\\x05\\x06\\x45\\xf3\\xf4\\xb7\\x1c\\x47\\xe1\\x9d\\x6e\\xfa\\xbc\\x3e\\xf8\\x38\\xc2\\x23\\x33\\x80\\x88\\x6a\\x1e\\x22\\x87\\xb9\\xc5\\x19\\xe5\\x70\\x48\\x13\\x39\\x84\\x41\\x5f\\x8a\\xf7\\x2d\\x57\\xad\\x2a\\x16\\x1d\\xac\\xa4\\x64\\x7e\\x3e\\x1f\\xd8\\xbe\\xc4\\x0e\\x86\\x20\\xa9\\xc4\\x3a\\x27\\x65\\x9c\\x29\\x3c\\x3c\\x33\\xaf\\x75\\xa6\\xab\\xbc\\xd5\\x7a\\x4b\\x39\\x4d\\xa5\\xcc\\x20\\x26\\x22\\x07\\x08\\x03\\x04\\xde\\x74\\xd1\\x0a\\xd5\\xd7\\xc4\\xd4\\x85\\x4c\\xfd\\x73\\x2c\\x1a\\x43\\xc2\\x66\\x28\\xaa\\xad\\x3a\\xe1\\x18\\x60\\x5c\\x01\\x60\\x42\\x30\\x42\\x81\\xe8\\xf7\\x34\\xc1\\x33\\x26\\xa2\\x5e\\x50\\x08\\xd9\\xae\\x8d\\x66\\x4a\\x87\\xf4\\x4a\\x60\\x5c\\x17\\x51\\xc5\\x8c\\x7b\\x90\\x44\\x4b\\xc4\\x51\\x85\\xf4\\xdd\\x69\\x9e\\x48\\x83\\x0a\\xdf\\x4b\\x15\\x1e\\xb1\\x01\\xb6\\x29\\xed\\xfc\\x24\\x16\\x84\\x2f\\xda\\xc4\\xbc\\x90\\x9b\\x50\\x5b\\x65\\x71\\x26\\xeb\\x51\\xc2\\xa6\\x70\\x66\\x4e\\x14\\x68\\xbb\\xc4\\x98\\x94\\x4b\\xa6\\x17\\xeb\\xca\\x8d\\x0b\\x47\\xb2\\x19\\xbd\\x7e\\xf3\\x67\\x55\\xcc\\x6c\\xf3\\x0c\\xc3\\xc3\\x5b\\x5d\\x19\\x29\\x19\\x1d\\x21\\x44\\x61\\x4e\\x24\\x4d\\xfd\\x45\\x40\\xc2\\x19\\xbe\\xd4\\x62\\xf3\\x0a\\x54\\x5e\\x30\\xa8\\x7a\\x51\\x36\\x2f\\xd4\\x1d\\x04\\x07\\xf3\\x7c\\x45\\xaa\\x51\\x0c\\x55\\xe8\\x13\\xa1\\x6e\\x7e\\x27\\x9e\\x28\\x3a\\x88\\xd0\\x30\\x9d\\xa7\\x3e\\x8a\\x8d\\xad\\x19\\x89\\x20\\x85\\x56\\xcd\\xd1\\xf7\\x4e\\xbe\\x08\\x70\\x17\\x73\\xb9\\xa3\\x93\\x70\\x90\\xb4\\xac\\xbf\\x04\\x07\\x22\\xf1\\xab\\xab\\x51\\x23\\x1b\\xed\\x16\\x7a\\x1e\\x9c\\x60\\x8b\\xb7\\x08\\x96\\xf0\\xec\\x6c\\xfa\\x7c\\x23\\xd3\\x75\\xe1\\xa0\\xda\\x70\\xbd\\x81\\x7f\\x54\\xb8\\x62\\xd9\\x22\\x96\\xa8\\x56\\xeb\\x77\\x6c\\xb3\\x1d\\xb3\\xed\\xf2\\x91\\xce\\x3b\\x3e\\xfc\\x39\\x4d\\xc5\\x2a\\x9c\\x4c\\x3b\\x1d\\x02\\xa3\\x1d\\x56\\xea\\xe5\\x35\\x6f\\x77\\x51\\x48\\x82\\x4b\\x1d\\x18\\x42\\x0d\\x36\\xd7\\x23\\xb2\\x41\\xa0\\x35\\xe8\\xd5\\x86\\xdb\\x88\\x9e\\x4e\\x9e\\x9b\\x00\\x2e\\xa8\\x84\\xaa\\x41\\xab\\x8e\\x68\\x2b\\x2c\\x0c\\x74\\x1a\\xd8\\x10\\xbc\\xc2\\x05\\x06\\x92\\x2f\\x74\\x03\\xba\\x70\\xb5\\x72\\x5a\\x6d\\xda\\x74\\x51\\xc0\\x63\\x9f\\x35\\x1b\\x66\\x40\\x3e\\x53\\x99\\x00\\xcc\\x5b\\x6b\\x06\\xf4\\x55\\x02\\x18\\x2e\\x5c\\xc0\\xf5\\xcc\\xa1\\x50\\x01\\x59\\xb6\\x2b\\xf1\\xb5\\x4e\\xfa\\xed\\x9d\\x1a\\xfc\\x70\\x80\\xc9\\x3b\\xcd\\x2c\\x25\\xb4\\xa7\\x5c\\x93\\x2b\\x9a\\x4e\\x33\\xde\\x5e\\xc6\\xd3\\x29\\x0d\\x47\\x16\\xde\\x0d\\xb5\\x6d\\xa4\\x44\\x90\\xdc\\x1c\\x0c\\xab\\x75\\xe0\\xb3\\x4a\\x88\\x88\\x12\\x06\\xf2\\xa2\\xa6\\xcc\\x00\\xed\\xec\\x1e\\xd9\\x83\\x77\\x97\\x2d\\x1d\\x8c\\x7c\\x74\\x0f\\x16\\xd3\\xff\\x2c\\x20\\xae\\x4f\\x80\\x50\\x62\\xf2\\x5d\\x43\\x0b\\xa6\\x20\\xd6\\x51\\x74\\x9d\\x71\\x95\\x1c\\x41\\xe3\\xaa\\x9a\\x06\\x46\\xa0\\x08\\x5c\\x16\\x53\\x4e\\xa7\\xfc\\x2a\\x0b\\xe3\\xc0\\xc7\\xc0\\x91\\x03\\xdc\\x23\\xa0\\x61\\x06\\xc9\\x2d\\x35\\x1c\\x23\\x53\\x80\\x0a\\xfc\\x82\\x79\\x59\\x40\\x99\\x1f\\xa3\\xeb\\x5f\\xba\\x24\\x11\\x42\\xee\\x6b\\x4c\\xb8\\x7b\\x80\\x32\\x17\\xc0\\xc0\\x8a\\x56\\xb6\\xab\\x82\\x4a\\x82\\xa7\\x38\\x65\\x0c\\x41\\x1d\\x0c\\x59\\x08\\x31\\x14\\x86\\x48\\x13\\x39\\x34\\x65\\x6c\\xb7\\x9a\\xf3\\x86\\x04\\xf3\\xa9\\x24\\x91\\x13\\x13\\xaa\\xde\\x0f\\x27\\x1b\\x16\\x42\\x05\\x4d\\x2e\\xc9\\xbd\\x77\\x5e\\x0f\\x53\\xd1\\x59\\x28\\x76\\x96\\x8a\\x35\\x24\\xa2\\xd0\\xe7\\x30\\x2c\\x06\\x20\\xc2\\x2d\\x25\\x0a\\xfe\\xc1\\xd2\\x8f\\xe9\\x6d\\x4e\\x2c\\x0a\\x82\\xae\\x98\\x58\\x9f\\xd1\\xd6\\x81\\x80\\x1c\\x9b\\x17\\x78\\x04\\x22\\x1b\\x1d\\xf2\\xb0\\x0f\\x15\\x21\\xdd\\xc0\\x7b\\x43\\xb4\\xb5\\x01\\xcf\\x90\\x0f\\xac\\x29\\xa4\\x0e\\xce\\xe4\\xec\\x76\\x10\\x3f\\x33\\x28\\x2f\\x71\\xea\\xae\\xe1\\x21\\xb2\\x55\\x86\\x02\\xab\\x58\\xc1\\x45\\x0e\\xf4\\x0c\\xc9\\x01\\x7e\\x80\\x51\\x86\\x9f\\x6d\\xa8\\x75\\x20\\x4d\\x52\\x63\\x5e\\x6e\\xea\\xc8\\xd9\\x0f\\xa1\\x65\\x74\\xa6\\x2a\\xe4\\xf6\\x1c\\xbd\\xa2\\x8d\\x87\\x4a\\xdb\\x34\\x5d\\x7c\\xf3\\xab\\x16\\x23\\x80\\xe1\\x58\\xbf\\xaf\\x32\\x66\\x63\\xbe\\x2e\\xad\\x3f\\x1d\\x86\\x19\\x51\\x58\\x8d\\x04\\x2b\\xf4\\xc5\\x28\\x12\\x0f\\x9f\\x16\\xb5\\x93\\x6d\\x59\\x84\\x14\\x7e\\x0c\\xb7\\x71\\xa1\\x66\\xee\\xa7\\x03\\x0e\\x8c\\xd6\\x8b\\xec\\x39\\x1f\\x49\\x6f\\x1c\\x5a\\x52\\xc5\\x34\\xdd\\xb2\\x01\\x89\\x57\\xdc\\x63\\xcb\\x67\\xd0\\xb1\\x37\\x63\\xc1\\xae\\xe1\\x45\\x0a\\xe2\\x55\\xaf\\xe7\\x6b\\x55\\x96\\x32\\x8c\\x5f\\xf0\\x6a\\x9d\\xda\\x1e\\x48\\x7a\\xda\\x71\\x4a\\xad\\x75\\x48\\x7f\\x38\\x28\\xc4\\x9d\\x62\\xbc\\xfb\\x5b\\x4c\\xa3\\xf1\\xab\\xb2\\x8c\\x8a\\xa1\\x82\\x32\\x67\\x9c\\xd2\\x44\\xef\\x49\\x62\\x5a\\x9a\\x01\\x9a\\xc3\\x02\\xad\\xbb\\x8d\\x38\\xb9\\xa0\\x78\\x93\\x5c\\x13\\xb8\\x6d\\xc0\\x2d\\xfa\\xb1\\x20\\x79\\x38\\x4a\\x7a\\x6d\\xc8\\x0a\\x7e\\xe1\\xc3\\xbc\\xea\\xdd\\xd0\\xc0\\x93\\x20\\x88\\x1d\\xea\\x14\\x58\\x60\\x45\\x80\\x04\\xc2\\xca\\x8c\\x99\\xcf\\x4d\\xc7\\x91\\xc7\\x71\\x8b\\x83\\x49\\xd1\\xaa\\xf5\\x0d\\x29\\x13\\xa6\\xe3\\x2b\\x92\\x6d\\x84\\x39\\xc7\\xa0\\x97\\xf3\\x0d\\x1d\\x86\\xa5\\xc6\\x61\\xf4\\x83\\x2e\\x1e\\x29\\xa8\\xa1\\x35\\xd1\\x17\\xe4\\x3f\\xcb\\xec\\x30\\x55\\x86\\x38\\x24\\x61\\xe2\\x1e\\x0b\\x29\\x84\\x07\\x45\\x67\\x8e\\x0b\\x91\\x01\\xb9\\xdf\\x73\\x19\\xc7\\x36\\x0a\\x33\\x4c\\xa4\\xf3\\xba\\xb5\\x3d\\xf4\\x9c\\x65\\x52\\xc8\\x4a\\x23\\x0b\\x21\\xc4\\x94\\x09\\x9a\\x63\\x88\\x9e\\x8a\\xc5\\xf4\\x33\\x41\\x0e\\x11\\x55\\x67\\x69\\x8e\\xc9\\x23\\xdc\\xa6\\xc0\\x80\\x15\\x09\\x47\\xc5\\x81\\x27\\x63\\xe3\\x6f\\x82\\xe3\\xcf\\x32\\xf7\\x41\\xad\\x96\\x45\\x92\\x6f\\x86\\xaa\\x1f\\xc2\\xe5\\x28\\x29\\x29\\x60\\xe8\\x51\\x57\\x01\\x46\\x54\\xc1\\x5b\\x45\\x21\\x87\\x07\\x39\\x77\\x65\\x95\\x15\\xb0\\xe0\\xe6\\x61\\xa5\\xbc\\x5f\\x4c\\xcc\\x66\\xb1\\x94\\x71\\xb8\\x66\\x64\\x16\\xad\\xe9\\x31\\xc1\\x6f\\x16\\xfd\\xe6\\x28\\x60\\x4c\\x92\\xd0\\x17\\xb4\\x43\\xe0\\xf2\\x3e\\xe4\\x6e\\x66\\x15\\xe8\\x42\\x32\\x5d\\x68\\xc5\\x36\\x05\\x74\\xad\\xfe\\x8c\\xd6\\xfd\\x76\\xf2\\xa0\\xc5\\x9d\\x92\\xec\\xcd\\x27\\x86\\x72\\xf8\\x30\\x90\\x4e\\xb7\\x63\\xdc\\x55\\xea\\xe0\\x16\\xef\\x6b\\xdd\\xac\\x2b\\x94\\xde\\x62\\x8f\\x7f\\xdc\\xe7\\x3f\\x4f\\xe1\\x82\\x52\\x18\\xcc\\x10\\x36\\xaf\\xe9\\x61\\x38\\xe7\\x40\\xd5\\x65\\x4c\\x26\\xe4\\x3a\\xf1\\xdd\\x6d\\xae\\x09\\x19\\xb5\\x85\\x7b\\xc0\\x4d\\x49\\x10\\x2c\\x78\\x39\\xb3\\x11\\x80\\x00\\x37\\xcc\\x5a\\x68\\xe1\\x43\\x4d\\x20\\x31\\x10\\x94\\xda\\xb6\\x51\\xe2\\x21\\x19\\xbd\\xc1\\x7e\\x04\\x8e\\x61\\xfb\\xf0\\x2e\\x45\\x1c\\xf4\\xbf\\x4e\\x1c\\xaa\\x85\\xab\\x47\\x0c\\x0b\\x60\\x50\\xc7\\x5c\\xb6\\xe1\\x3f\\xde\\x81\\x7a\\xc1\\x50\\xa3\\x86\\x82\\x21\\x78\\x97\\xbd\\xcb\\x59\\x6b\\x37\\xe4\\x60\\x48\\xdc\\x6a\\x90\\x52\\x94\\x2f\\x22\\xd3\\x2d\\x0d\\xe9\\x16\\xe3\\xf1\\xab\\x80\\xf6\\xe4\\xb4\\x16\\x71\\xb0\\x78\\x5a\\x03\\x6d\\xc3\\x5f\\x6d\\x4e\\x87\\xe5\\xe9\\xdf\\xe1\\x08\\xa1\\x28\\x14\\x61\\x31\\x1a\\xd8\\xd6\\x87\\x6a\\x95\\xeb\\xee\\x9d\\x3f\\xdd\\x94\\x17\\xc4\\xc5\\x32\\x02\\x40\\xc7\\x0e\\x40\\x0a\\xbc\\xc0\\x40\\x1a\\x26\\x01\\xcb\\xa2\\x0b\\xe9\\x52\\x51\\x14\\xc9\\xf5\\x52\\x46\\x9c\\x0b\\xa3\\xae\\xf8\\x4a\\x31\\x58\\x49\\xa0\\xd4\\x5b\\x27\\x26\\x33\\x76\\x7c\\x28\\x33\\x18\\x48\\x42\\x0e\\x74\\xe9\\xf0\\x81\\xdb\\xbb\\xe5\\x4d\\x65\\x1f\\x89\\x7a\\x3d\\x5f\\x02\\x60\\xcd\\xb5\\xe1\\x4f\\xe8\\xad\\xb1\\x2d\\x20\\x03\\x90\\x0c\\x51\\x03\\x07\\x89\\x63\\x09\\x8e\\x20\\xb1\\x16\\x0c\\xdc\\x3c\\xd9\\x62\\x81\\xcd\\x35\\x93\\x89\\x28\\xd2\\xb6\\x86\\xf8\\xcf\\x82\\xc0\\x38\\xc5\\x89\\x58\\xce\\x72\\xca\\x10\\x89\\x10\\xb6\\x58\\x10\\x6c\\x4b\\x68\\x42\\xca\\xc1\\x0e\\x26\\x69\\x4c\\x0f\\x70\\x16\\xe9\\x46\\x83\\xae\\x36\\x27\\xa6\\xd6\\x96\\x35\\x6f\\xf2\\x83\\xaa\\x39\\xb9\\x93\\x9f\\x65\\xd0\\xeb\\x2e\\xb0\\xb9\\xc7\\x0b\\x2f\\x75\\xf8\\x25\\x0e\\xe2\\x13\\x9c\\x38\\x38\\x8c\\xc2\\x65\\x4b\\xd9\\x01\\x04\\x01\\x9b\\xc4\\xf0\\xb8\\x24\\xc3\\xe2\\xb2\\xe7\\xc3\\xa1\\xc0\\xc0\\x4f\\x27\\x64\\x11\\x9f\\xa7\\x19\\x9e\\xa5\\xc8\\x67\\x05\\x4f\\xde\\x07\\x6f\\x38\\x49\\x93\\xea\\x67\\x8b\\x01\\x45\\x8f\\x09\\xdd\\x0c\\x34\\x3a\\xca\\x04\\xf6\\x27\\x5f\\x8b\\x10\\xa2\\xc3\\x4c\\x21\\xd1\\xa3\\x64\\xc0\\x7f\\xa2\\x85\\x07\\x58\\x49\\xe2\\xe3\\x97\\x6d\\x2d\\x1e\\x67\\x63\\x1f\\xd5\\x2a\\xc6\\x1d\\x0c\\xa8\\x68\\xbb\\x98\\x3d\\x92\\x33\\x10\\x6a\\x87\\x4e\\xb8\\x88\\x09\\xf0\\xc3\\xe7\\x38\\x0c\\x0a\\x86\\x87\\xa4\\x9b\\x65\\xe1\\x20\\xb6\\x55\\x24\\x33\\x82\\x46\\xbc\\x8e\\xb7\\x3c\\xbd\\x8a\\xf3\\xe0\\xf4\\xa8\\xbd\\xca\\xa0\\xe3\\x97\\x2e\\x4c\\xce\\x2a\\x0c\\xf8\\x04\\x4d\\xc8\\x57\\x42\\xf2\\x96\\x0c\\xc0\\x13\\xb5\\x15\\x30\\x5a\\x36\\x22\\x40\\x12\\xe1\\x00\\xd9\\x69\\xfd\\xb6\\x80\\x23\\xbc\\x08\\x64\\x42\\x73\\x68\\x2b\\x4f\\xcd\\x05\\xb6\\xa5\\xf6\\x8b\\x4d\\xe6\\x40\\xb1\\xc4\\xa1\\xe1\\x94\\x9c\\x4c\\x5c\\x39\\x00\\x1c\\x5e\\xb1\\x20\\xda\\x58\\x28\\x05\\x5a\\xbc\\xd6\\x32\\x2b\\x4a\\x36\\x4b\\xf8\\x00\\xd1\\x85\\x4d\\x87\\x55\\x02\\xe2\\x42\\x74\\xe0\\x56\\x0e\\xc1\\x68\\x42\\x9c\\xdc\\x6c\\xb6\\x41\\x87\\x58\\xec\\x21\\x06\\x81\\xb1\\xe1\\xc5\\xae\\x6f\\x3e\\x86\\xfb\\x04\\x91\\xee\\xf7\\x08\\xc8\\x7c\\x47\\x81\\xec\\x81\\xfa\\x4c\\x32\\x11\\xbe\\x3c\\xa8\\xc2\\x97\\xcd\\xc9\\x24\\x6c\\x30\\xa7\\x13\\x59\\x7b\\xa0\\x96\\x9d\\x26\\xcc\\xd6\\x57\\xa2\\x01\\x5b\\x04\\x0e\\xb7\\xcc\\x5e\\x40\\x0c\\xa2\\x33\\xb0\\x42\\xe5\\x92\\xf3\\x2b\\x10\\x35\\xe4\\x40\\x51\\x07\\x2a\\x2d\\x35\\x05\\xa5\\xf2\\x29\\x4d\\x0c\\x18\\x46\\x55\\xb5\\x5f\\x21\\x3e\\x4d\\x29\\x00\\x5c\\x52\\x8d\\xa3\\xa1\\x20\\xa7\\x3a\\x87\\xea\\x43\\x41\\x63\\xb6\\x8e\\x11\\x35\\x66\\xd8\\x5e\\x82\\x7c\\x9a\\xa7\\x9c\\x8e\\xb6\\x0e\\xee\\xd8\\x08\\x96\\x4f\\x52\\xcf\\x7c\\xb8\\x68\\x06\\xac\\xf1\\x70\\x24\\x77\\x6c\\x72\\x52\\xbd\\xdb\\x27\\x89\\x8a\\xab\\xfb\\x31\\x49\\x9a\\x69\\xe5\\x96\\x45\\x01\\x05\\x2e\\xeb\\xca\\xb3\\x03\\x4c\\x00\\x34\\x1d\\xc0\\xc5\\x01\\x21\\x84\\x58\\xfd\\x12\\xa3\\x4d\\x96\\xde\\x2a\\x1b\\x30\\x0a\\x3d\\x76\\x02\\x56\\x12\\x65\\x8b\\x85\\xd8\\x0d\\x36\\x04\\x01\\xd3\\x80\\x64\\x34\\x9c\\xda\\x42\\x04\\xe0\\xbf\\xb4\\xe0\\x65\\x26\\x83\\x88\\xc7\\x1c\\x69\\x18\\x61\\x08\\x44\\xcb\\xbc\\xf8\\xb7\\x61\\xbc\\x25\\x60\\x94\\x8a\\x50\\x69\\x1a\\x15\\x85\\x46\\x06\\xe1\\xdb\\x88\\x3b\\x7b\\x01\\x2e\\xb9\\xb4\\xa3\\x7c\\x18\\xc8\\x83\\x80\\xb0\\xe1\\x2a\\xb8\\xd7\\x36\\xaa\\x0e\\x4d\\x1c\\x05\\x92\\x36\\xb8\\xc0\\xa0\\x5d\\xf2\\xe7\\x39\\x24\\x00\\x5d\\x97\\x37\\x61\\xa0\\x00\\xc8\\x3b\\xf2\\x42\\xfc\\x3c\\x2a\\x22\\x5d\\x97\\xd7\\x32\\x3a\\x78\\x2e\\x56\\x5c\\xa4\\xf5\\xdc\\x55\\xc9\\x30\\x33\\x58\\x00\\x21\\x24\\x89\\x4d\\x56\\x90\\x8e\\x8d\\xd4\\x4c\\x21\\xc9\\x00\\xf5\\x38\\x2a\\x12\\x95\\x18\\x68\\xa4\\x1e\\x00\\xae\\x1d\\xf7\\xf4\\x7e\\xce\\xd9\\xe4\\x66\\x76\\x0b\\xd4\\xbc\\x26\\xf0\\x5c\\xb7\\x86\\x14\\x84\\xdc\\x65\\xd8\\x23\\x47\\x09\\x99\\x27\\x93\\x91\\xb0\\x99\\x28\\xa4\\x78\\xfd\\xb7\\x8f\\x4d\\xe4\\xc3\\x0e\\xdf\\x91\\x17\\x93\\x5a\\x83\\x8c\\x4f\\x2c\\xa9\\x59\\x13\\x89\\x2a\\x0d\\x39\\xec\\xc7\\x9a\\x54\\x7b\\x77\\x90\\xb4\\x68\\xf0\\x21\\x54\\x86\\xa9\\x70\\x10\\x12\\x96\\xa4\\x27\\x20\\x5b\\x1a\\x3f\\x33\\xda\\x91\\x0e\\xbf\\x4d\\xb1\\x33\\xc0\\xdf\\x65\\xaa\\x0b\\x3f\\x05\\x9c\\xea\\x5c\\x05\\xcf\\x13\\xc1\\x1b\\xe8\\xa3\\xbd\\x4d\\x6e\\x1a\\xfa\\x52\\x4e\\xb2\\xe1\\x5d\\xcc\\x0a\\x21\\x1a\\x2f\\x26\\x7e\\x55\\xf3\\xda\\xd3\\x04\\x3a\\xe1\\xbe\\x19\\xa4\\xab\\x71\\xc6\\x49\\x49\\xa7\\xa6\\x97\\xb9\\x25\\x6a\\x89\\x59\\xca\\x4c\\xe9\\xda\\xa1\\x59\\x36\\x19\\x32\\x95\\x88\\xf5\\xd0\\x34\\x96\\x8a\\x83\\x4a\\xba\\x1a\\xd6\\x40\\xe2\\xdb\\xab\\x56\\x90\\x26\\xc0\\xa7\\xb9\\x20\\x2a\\x8b\\x52\\x7a\\x31\\xee\\x31\\xa1\\x0d\\x52\\x7a\\x6c\\x65\\x3c\\x91\\xe9\\x2c\\x9c\\xa2\\x1e\\x39\\x8b\\x10\\x24\\xb0\\x00\\x32\\x24\\x6a\\x2f\\x49\\x9e\\xe7\\x84\\x6b\\x80\\x2d\\xc1\\x32\\x32\\x43\\xc3\\xcd\\xab\\x5b\\xf4\\x78\\x03\\xbd\\x75\\x76\\x8c\\xff\\x4a\\xf6\\x4d\\xa8\\x5d\\x72\\xc8\\x5b\\xec\\x39\\xc7\\xe0\\x14\\x23\\x1b\\x9c\\xfe\\xb3\\x36\\xca\\x31\\xf9\\x58\\xd7\\x01\\xf3\\x1b\\x02\\x81\\xb3\\x77\\x0a\\x86\\x5c\\xff\\x26\\xd2\\xf1\\xc9\\xb4\\x2f\\x4d\\xe2\\xdc\\x6b\\x8b\\xa6\\x84\\x7d\\x3c\\x9a\\x1f\\x64\\x8b\\x3c\\x3f\\x89\\x6c\\xa6\\x13\\xe2\\xf7\\x0b\\x6a\\x3f\\xcc\\x10\\x63\\x86\\x00\\x08\\x02\\x84\\xd3\\x9c\\x58\\x1f\\x0f\\x70\\xd2\\x13\\x00\\xce\\x10\\xf1\\x5f\\x10\\xf8\\xb4\\x58\\xdb\\xe2\\x30\\x1f\\xe2\\x24\\x1d\\x43\\xca\\x2a\\xa3\\xd1\\x2d\\x6b\\x81\\x38\\xaa\\x01\\x20\\xea\\x0b\\x90\\xc5\\x73\\x1d\\x66\\xbc\\x8a\\x30\\xe5\\x1e\\x62\\x8b\\x17\\x68\\x44\\x15\\xf8\\x8f\\x19\\xf6\\xd6\\xfa\\xda\\x8c\\xb9\\x45\\xd6\\xed\\x91\\xa8\\xbb\\x14\\x14\\xf7\\x1a\\xa6\\xb7\\xa0\\x6b\\xea\\x16\\x0d\\x99\\x20\\x7d\\x7e\\xe0\\xe1\\x85\\x38\\x44\\x44\\xdc\\xaf\\xb7\\x29\\x5c\\x5b\\x45\\xc6\\xfd\\xfd\\x32\\xdb\\xc1\\x96\\x6c\\x48\\xe3\\xb0\\xa6\\x9b\\x96\\x28\\x38\\x70\\x00\\x4e\\x7c\\x0e\\xb7\\x81\\x19\\xfd\\x5f\\x88\\xc3\\x30\\x4f\\x12\\x6c\\x13\\x87\\x3e\\xdb\\x56\\x07\\x49\\xcf\\x32\\x77\\x70\\x45\\x08\\xe0\\xb0\\x46\\xc7\\x11\\x4a\\x91\\x82\\x30\\x29\\x84\\xac\\x3e\\x34\\x55\\xcd\\xed\\xc8\\x54\\xa0\\xb0\\xbc\\xc0\\x0b\\x02\\x08\\xd8\\xc2\\x4e\\x9b\\x47\\xee\\x0e\\x24\\xf3\\x3a\\xf2\\x15\\x9e\\xa9\\x4a\\x29\\x21\\x85\\x1a\\xf5\\x49\\xae\\x93\\x73\\x3d\\x0e\\x14\\xee\\xb3\\xa1\\x1c\\x4c\\x9e\\x48\\x61\\x0f\\x95\\x82\\x58\\xab\\xcc\\x3e\\x25\\xfe\\x8d\\x05\\x1f\\xb5\\x22\\x58\\x90\\x24\\xdf\\x64\\xc8\\xa3\\x0e\\x96\\x9f\\x8b\\x28\\x3f\\xa6\\xe7\\x1a\\x36\\x90\\x4d\\x1b\\xa0\\xd7\\x2b\\xf1\\xa9\\x6c\\x2b\\x1b\\x64\\x2e\\x18\\xfc\\x19\\xdd\\xcd\\x9d\\x17\\x01\\x7a\\x41\\xd4\\x7b\\xbf\\x62\\x46\\x2b\\xae\\x74\\x1e\\x08\\x03\\xa6\\x76\\xb1\\x25\\x24\\x2a\\xfe\\xf3\\x50\\x35\\xf5\\xfa\\x1a\\x84\\x65\\x07\\xd6\\x29\\x9f\\x1d\\xd5\\x42\\xb6\\x6b\\x5c\\xeb\\xc0\\x1f\\x60\\x00\\xd4\\x2b\\x17\\x4b\\x2d\\x75\\xec\\x4e\\xf4\\xf9\\x53\\xf2\\x7b\\xe8\\x47\\xad\\x42\\x21\\x90\\xbb\\xf8\\x3a\\xa3\\x1f\\xee\\x59\\x94\\xef\\x82\\xe8\\x49\\xaf\\x7c\\xc0\\x68\\xbc\\x43\\x6c\\x82\\x81\\xd9\\x31\\xed\\x9f\\x14\\x3d\\xa7\\x4a\\x45\\x71\\x64\\x7a\\x52\\x68\\x76\\x4c\\x88\\x80\\xe1\\x8c\\xb0\\xf8\\xde\\x78\\x02\\xf4\\x84\\xf8\\x4c\\xf7\\xaf\\x86\\x94\\xa8\\x21\\xcd\\xae\\x0d\\xc6\\xe3\\x0b\\xc4\\x2b\\x24\\xaf\\x24\\x57\\xb0\\x87\\xc4\\xc9\\x16\\x61\\x11\\x05\\x06\\xe9\\x06\\x07\\x8e\\x29\\xa3\\xee\\xb7\\x9a\\x10\\x42\\x74\\x55\\xf8\\xbc\\xbd\\x08\\x73\\x80\\x22\\xa9\\x24\\xcc\\xd1\\x22\\x82\\x50\\x11\\xac\\xc8\\xbd\\xb8\\xc4\\x86\\x24\\x61\\x70\\xf8\\xa4\\xc2\\xda\\x34\\x16\\xa0\\x00\\x46\\xc1\\xb6\\x61\\x84\\x60\\x46\\x92\\xb2\\xa2\\xc8\\x25\\x69\\x67\\xfc\\xd2\\x96\\x3d\\xd2\\xb8\\x18\\x49\\x14\\x3f\\x1e\\x86\\x94\\x88\\x28\\xa2\\xbc\\x49\\xab\\x66\\x40\\xf3\\x78\\x9b\\x6b\\x45\\xd4\\x9e\\xab\\x7d\\x3c\\xfa\\x66\\x0e\\x94\\xd1\\xbc\\x53\\x98\\xaf\\x8a\\x19\\x87\\x6f\\x12\\x6c\\x04\\x01\\x09\\xaf\\xd8\\x44\\xa5\\xcb\\x4b\\xd4\\xcc\\x8b\\x20\\x5d\\x99\\x15\\x08\\x1b\\x66\\x8f\\x98\\x2b\\x30\\x10\\x38\\x79\\xcd\\x81\\xbe\\x77\\x44\\xdf\\x0b\\xeb\\xec\\xc9\\xa1\\x86\\x0a\\x67\\x81\\xa2\\x1a\\x6b\\x13\\x4a\\x69\\x91\\x16\\xfc\\xaf\\x61\\x2a\\x0e\\x0d\\x4f\\x11\\x7d\\x2d\\xcc\\x14\\x19\\xbe\\x40\\x00\\xf0\\x94\\x4e\\xd0\\x39\\x17\\x84\\x34\\xf1\\xe0\\xd7\\xa1\\x15\\x7d\\x88\\x11\\x1b\\x54\\xd6\\x35\\x33\\xad\\xfa\\x78\\x6c\\xc9\\x4e\\x91\\x6e\\x0d\\xd6\\x89\\x58\\xa0\\x00\\x94\\x49\\x77\\x65\\x97\\x2e\\xde\\x22\\x78\\x0d\\x5e\\x72\\x25\\x1e\\xa1\\x22\\x5f\\x28\\xdf\\xbc\\xc2\\xf2\\xfb\\x9f\\x0c\\xdb\\x28\\xe5\\xf3\\xe8\\x2d\\x70\\xed\\x36\\x4f\\x0d\\xf4\\x56\\x8a\\xc5\\xa9\\xb6\\x7a\\x03\\x94\\x85\\x29\\xc9\\x78\\x71\\xd7\\x5e\\x0b\\x20\\x01\\x52\\x0c\\x8f\\xc5\\x48\\x3e\\x4e\\x82\\x9d\\xc2\\x85\\xcc\\x2b\\x13\\x3c\\x6c\\xff\\x91\\x8c\\x31\\x8e\\xf4\\x37\\x97\\x1a\\xca\\x4e\\xdd\\x93\\x2d\\x06\\x73\\x35\\xef\\x24\\xf4\\x8e\\x4b\\xe8\\xf2\\x11\\x1d\\x59\\x8d\\xf1\\x84\\x46\\xec\\x2d\\x87\\x84\\x5c\\xed\\x52\\x2e\\x92\\x30\\x04\\xf4\\x57\\x08\\x0c\\x66\\xce\\x6e\\x81\\x01\\x1a\\xd4\\x34\\xd5\\x39\\x9f\\x64\\x89\\x66\\xe9\\x00\\x1d\\xcc\\xdd\\x78\\xd0\\xd6\\x60\\x73\\x83\\xfa\\x47\\xf9\\xc3\\x9b\\x9a\\xec\\xf1\\x19\\x04\\xa2\\x5d\\x4b\\x00\\x31\\x43\\xee\\x6b\\xc8\\x19\\x34\\xa6\\x5f\\x34\\x93\\x36\\x10\\x44\\xb5\\x73\\x21\\xd3\\x2b\\xa7\\xe2\\xc7\\x03\\x2f\\x17\\x01\\x9a\\x21\\x87\\x2e\\xc7\\x6e\\x0a\\x0b\\xa2\\x7f\\x39\\xe0\\x71\\x30\\xe1\\x5d\\x4e\\xa1\\x38\\x05\\xe1\\x00\\x1b\\x8e\\xdd\\x2e\\x07\\x79\\xd4\\x00\\x2c\\x1c\\x20\\x6e\\xa5\\xbc\\x1b\\x80\\x83\\x49\\x96\\x0b\\xba\\xe5\\x3d\\x5f\\x39\\x94\\x35\\xa5\\x38\\x6d\\x50\\x0b\\xe0\\x45\\x98\\x20\\xeb\\xd5\\x05\\x7e\\x46\\x88\\xb7\\xf8\\xa9\\xf6\\x5c\\x14\\x77\\xf7\\xf4\\x65\\xaf\\x95\\x25\\xb5\\x41\\x84\\x64\\xfb\\x81\\xa4\\x0f\\x30\\xab\\xba\\xe0\\xaa\\xf2\\x61\\xa4\\x26\\x11\\x24\\x52\\x6b\\xa0\\xc0\\xca\\x9c\\x3d\\xa8\\x72\\xc2\\x80\\xb7\\x0f\\x76\\x46\\xa2\\x7c\\x4a\\x65\\xd5\\x88\\x8d\\xd1\\xc3\\xa3\\x5c\\xc4\\xae\\xb3\\x2d\\xf9\\x10\\xd5\\x52\\xf4\\xc1\\x5a\\x03\\xd7\\x9a\\xc0\\x99\\x9e\\x50\\x68\\x77\\xc2\\xe0\\xe0\\x93\\x03\\x45\\x63\\x3a\\xb8\\xea\\xb2\\x38\\xe6\\x25\\x0c\\x10\\x34\\xff\\x29\\xe4\\x8a\\x54\\xd6\\x54\\x4d\\x04\\xea\\x2b\\xf7\\xb2\\xb9\\x48\\xc9\\x04\\x70\\x60\\x48\\xf9\\x12\\xf4\\xf0\\x1a\\x66\\xf1\\xf2\\x01\\x17\\x6d\\x60\\x17\\x28\\x4d\\xc8\\x18\\xa1\\x47\\x20\\xc8\\x33\\xc5\\x0a\\xc1\\x22\\x78\\x05\\x22\\x37\\xc7\\x8a\\xd8\\x77\\x5a\\x07\\x4a\\x70\\xe9\\x4a\\xee\\x6b\\x0b\\x55\\x23\\x33\\x05\\x23\\xef\\x11\\x03\\x19\\x76\\x14\\x45\\x03\\x01\\x40\\x90\\x81\\x45\\xcc\\x4d\\x5e\\x4a\\xf3\\x08\\x04\\xfa\\xe8\\x35\\xe6\\x36\\x2f\\x0b\\x2d\\x81\\x69\\xcb\\x27\\xca\\x87\\x31\\x1e\\x0e\\x8f\\x46\\x15\\xa0\\xa8\\x83\\x38\\xc0\\x06\\x06\\xdc\\x1f\\xfa\\x94\\x76\\x07\\x76\\x33\\x1a\\x00\\xbe\\x63\\x50\\x26\\xd4\\x52\\x5a\\xd4\\x14\\xd2\\xcb\\x5a\\xf4\\x9e\\x14\\x3e\\x60\\x70\\x56\\xf5\\xc0\\xc9\\x28\\x2e\\x1c\\x7a\\xb2\\xbc\\xb9\\x48\\x1c\\x61\\x3f\\x44\\x64\\x64\\xad\\xe2\\xa7\\x05\\xbc\\x2a\\x40\\xb6\\xac\\xce\\x0b\\x36\\x16\\x13\\x30\\x8a\\x01\\x00\\x00\\xff\\xff\\x80\\x56\\xb5\\xb2\\x74\\xe0\\x00\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_eot() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_eot,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.eot\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_svg = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xec\\xbd\\x79\\x97\\x25\\xb9\\x75\\x1f\\xf8\\x7f\\x7e\\x0a\\xb8\\x3d\\xe3\\x33\\xdb\\x53\\xe3\\xee\\x17\\x96\\x5a\\x1e\\x5a\\xa4\\xf5\\x68\\x47\\x8a\\x0a\\x0b\\x7c\\xb6\\x6b\\xd6\\x62\\x75\\xb1\\x59\\x56\\x75\\x55\\xab\\xaa\\x9b\\x8b\\x66\\xf9\\xec\\x73\\xee\\x0f\\xf1\\x8a\\xcc\\x64\\xbe\\x6c\\xcd\\x70\\xe4\\x33\\x9c\\xe3\\xd3\\xa7\\x2b\\x90\\x2f\\x22\\x00\\x04\\x70\\x71\\xf1\\xbb\\x2b\\xfe\\xec\\x5f\\xfc\\xfa\\xeb\\xb7\\xed\\x97\\xaf\\x3f\\x7c\\x7c\\xf3\\xfe\\xdd\\x17\\x9f\\xd1\\x9f\\xf4\\xcf\\xda\\xc7\\x6f\\x5f\\xbe\\xfb\\xf2\\xe5\\xdb\\xf7\\xef\\x5e\\x7f\\xf1\\xd9\\xbb\\xf7\\x9f\\xfd\\x8b\\x3f\\xbf\\xfb\\xb3\\x7f\\xf2\\xc3\\x9f\\xfc\\xc5\\xfc\\x0f\\x7f\\xfd\\xa3\\xf6\\xf1\\x97\\x5f\\xb5\\xbf\\xfe\\xe9\\xbf\\xdc\\x7e\\xfc\\x17\\xed\\xb3\\xd3\\xe7\\x9f\\xff\\x3b\\xf9\\x8b\\xcf\\x3f\\xff\\xe1\\xfc\\x61\\xfb\\x9b\\xcb\\x5f\\x36\\xfa\\x13\\xfa\\xfc\\xf3\\x1f\\xfd\\xd5\\x67\\xed\\xb3\\x5f\\x7c\\xfb\\xed\\x37\\xff\\xfc\\xf3\\xcf\\x7f\\xf5\\xab\\x5f\\xfd\\xc9\\xaf\\xe4\\x4f\\xde\\x7f\\xf8\\xea\\xf3\\xbf\\xfc\\xf0\\xf2\\x9b\\x5f\\xbc\\x79\\xf5\\xf1\\xf3\\xbf\\xb9\\xfc\\xe5\\xe7\\xf5\\xe0\\x0f\\xe7\\x0f\\x3f\\xff\\xf8\\xcb\\xaf\\x88\\xfe\\xe4\\xcb\\x6f\\xbf\\xfc\\xec\\xcf\\xef\\xfe\\xac\\x6a\\xfe\\xf5\\xd7\\x6f\\xdf\\x7d\\xfc\\xe2\\x89\\xd7\\xb9\\xf7\\x5e\\x8f\\xd7\\x83\\x5f\\xbe\\xfe\\xf9\\xc7\\xf6\\xe7\\x77\\x7f\\xf6\\xf3\\xf7\\xef\\xbe\\x6d\\x6f\\xbe\\xfc\\xe2\\xb3\\x7f\\xfb\\xfe\\x67\\xef\\xbf\\x7d\\x7f\\xff\\xfe\\xdd\\xfb\\xcf\\xda\\x2f\\xde\\x7f\\x78\\xf3\\xf7\\xa7\\x97\\x5f\\xfe\\xf2\\xf4\\xeb\\x2f\\x3e\\x23\\x16\\xfa\\xac\\xfd\\x39\\x9e\\x3c\\xfd\\xfc\\xe5\\xab\\xd7\\x77\\xad\\xb5\\x76\\xfc\\xf5\\xf5\\x9b\\xb7\\xbf\\xb9\\xbe\\xdb\\xf0\\x32\\xee\\x7e\\xf7\\xee\\xcd\\xb7\\x1f\\x4f\\xdf\\xbc\\xfe\\x70\\x7a\\xfd\\xf5\\x17\\x9f\\x71\\xd7\\x5c\\xbf\\x7f\\xf3\\xf2\\xdd\\xfb\\x8f\\xaf\\x4f\\xf4\\xc5\\x67\\xbd\\xfd\\xde\\x7f\\xeb\\x91\\x97\\x1f\\x5f\\xbd\\x7e\\xf7\\xed\\x17\\x9f\\x31\\xa9\\xaf\\x5f\\xbe\\x7c\\x7d\\xfc\\x74\\x32\\xb3\\xe3\\xa1\\xb7\\xdf\\xfc\\xe2\\xe5\\xcf\\x5e\\x7f\\xfb\\xe6\\xd5\\x17\\x9f\\xf5\\xcf\\xda\\xe7\\x7f\\x7e\\xf7\\x67\\x5f\\xbd\\xfd\\xcd\\x37\\xbf\\xa8\\x86\\x5f\\xbd\\xff\\xf2\\xf5\\x17\\x9f\\xb5\\xcf\\x1a\\x7e\\x39\\xbd\\x7b\\xf9\\xf5\\xeb\\x2f\\x3e\\xfb\\xf8\\xcd\\xcb\\x57\\xaf\\x7f\\xef\\xc3\\x78\\x3c\\xf9\\xee\\x3f\\x79\\xf8\\xee\\xeb\\x5f\\xbf\\x7a\\xfb\\xf2\\xeb\\x27\\x5f\\xfe\\xf2\\x8b\\xcf\\xee\\x43\\xac\\x59\\x1f\\x67\\x4d\\xde\\xd4\\xbd\\x91\\x9a\\x9f\\xc3\\x68\\x3b\\x6e\\xbc\\xb8\\x57\\xf5\\x46\\xe2\\x3b\\xae\\x3e\\x9a\\x5a\\x34\\x1a\\x31\\x35\\x47\\x63\\xf5\\x69\\xda\\x1b\\x47\\x4e\\xef\\xd9\\x78\\xf4\\xdd\\xd5\\xea\\xda\\x3c\\xac\\x71\\x8c\\x19\\xec\\x78\\x2e\\x2c\\xf1\\x5e\\x44\\x47\\x7d\\xb8\\x76\\x6d\\x61\\xa3\\x85\\xaf\\xc7\\x72\\xd6\\x5b\\x27\\x41\\x65\\x27\\xb2\\xdd\\xa2\\xd7\\xb5\\x55\\x23\\x27\\x5d\\x6d\\xe6\\x54\\x8b\\xbb\\xf0\\x79\\xf4\\xec\\xc5\\x93\\xc3\\xf0\\xcf\\xfe\\xee\\xbb\\xf7\\xdf\\xfe\\xe9\\xc3\\xb1\\xa8\\x9f\\x5e\\x7f\\xf9\\xb3\\xb7\\x37\\x47\\x43\\x33\\x1a\\x29\\xe7\\xa6\\xd5\\xd9\\xde\\xf3\\xcc\\x49\\x17\\x32\\xf1\\xb3\\x66\\x5c\\xea\\xd6\\x8b\\xfb\\x1c\\xb9\\x1e\\x4a\\x7c\\x41\\xcf\\xb3\\x0f\\x59\\x0f\\xe5\\xc8\\xf5\\xd0\\x93\\x5d\\xfa\\xa7\\x0f\\x7b\\xf3\\xee\\xbb\\xaf\\x7f\\x56\\x8b\\xee\\xab\\x77\\x37\\xfb\\xe3\\x3a\\x9a\\x52\\x3f\\xab\\xe6\\x26\\x61\\xad\\x9f\\x69\\xf8\\xc6\\x7e\\xfc\\x4a\\x17\\x8b\\x71\\xe6\\x31\\x36\\x31\\x6a\\xe9\\xe3\\x4c\\xe4\\x17\\xea\\xda\\xcf\\x92\\xb4\\xa9\\x1d\\xf3\\xe9\\xa2\\x9b\\x39\\x86\\xbb\\x9f\\xc3\\x69\\x4b\\xb1\\x75\\x87\\x3a\\xd9\\x36\\xf4\\xb8\\x45\\x64\\x71\\xa9\\x6a\\x06\\xf5\\x2d\\x2d\\x5b\\x55\\x4f\\x3d\\xe9\\x52\\xcd\\x25\\xe7\\x16\\x56\\x9d\\xb0\\xf0\\xed\\xe8\\xda\\x8b\\x7b\\x8d\\xf5\\x9c\\xc7\\xd8\\x42\\xfa\\x5d\\xbd\\x6f\\x3c\\xb6\\xe3\\xf7\\xa7\\x87\\xe2\\xbf\\x78\\x38\\x14\\x5f\\xbe\\x7f\\xfb\\xf6\\xe5\\x87\\x9b\\xc3\\x90\\x2e\\x4d\\x92\\xf7\\xba\\x2a\\x6b\\x4b\\xa3\\xa6\\xe6\\x33\\x89\\x9a\\x91\\xcf\\x90\\xd1\\xcc\\x6d\\xba\\x50\\x73\\xea\\xbb\\x49\\x6f\\xae\\xde\\x54\\xa3\\x79\\xfa\\x94\\xee\\x2d\\x62\\x4c\\x26\\x6b\\xa3\\xf3\\xa4\\x94\\x46\\x3d\\xfa\\x8e\\x02\\x99\\x35\\x26\\x6e\\xc4\\x6c\\x93\\x87\\x36\\x12\\xcd\\xa9\\xcc\\x8d\\x54\\x78\\x5a\\x8e\\x46\\x1a\\x72\\x21\\xcf\\x3c\\x87\\x8e\\x0b\\x69\\xd0\\x9e\\x52\\x3f\\xdb\\x68\\x83\\xa8\\xc8\\x81\\x27\\x75\\x91\\x46\\xc2\\x3e\\x89\\x88\\xee\\x88\\xb2\\x4a\\xf5\\x58\\xef\\x76\\x4e\\xa7\\x3d\\x9d\\x1a\\x11\\x7b\\xcb\\xee\\x8d\\x28\\x73\\x7a\\x2d\\x26\\x36\\xda\\xbd\\x7e\\x61\\xa3\\x66\\x3e\\x1a\\xb1\\xe4\\xb4\\x5e\\xb7\\x7a\\x9f\\x1a\\xdc\\x88\\x94\\xa7\\x62\\x0a\\xa3\\xef\\xab\\x20\\xd4\\x34\\xa8\\x6a\\xa7\\x69\\xd4\\xdb\\x50\\x9d\\x96\\xd2\\x72\\xd8\\xf4\\x61\\x2d\\x35\\xf6\\x18\\xd5\\xd8\\x68\\x19\\xd9\\xc2\\xc7\\xa4\\x4e\\x59\\x2b\\x73\\x12\\xf5\\x6c\\x66\\x34\\x89\\xb4\\x37\\x49\\xdd\\x51\\xe0\\x51\\x1d\\x23\\x6a\\x5c\\x9f\\xd1\\xb9\\x56\\x81\\xce\\xa2\\x78\\x96\\x19\\x5c\\x8b\\x32\\x2e\\x27\\x26\\x39\\x9b\\x8f\\xcb\\x89\\x62\\xd7\\xd4\\x76\\x1a\\x4d\\xbb\\xde\\x71\\x9f\\xec\\x35\\xb2\\x3e\\xc9\\xb5\\xb1\\xc6\\x24\\x8e\\xa6\\x26\\x67\\xed\\xbe\\x6b\\xf7\\x26\\x49\\x4d\\x39\\x9a\\x88\\x4c\\x4d\\x6a\\x6c\\x3e\\xcd\\xb2\\x31\\xd9\\xac\\x19\\xe3\\x2e\\x7b\\x98\\xd4\\xb5\\x65\\x31\\x14\\x93\\x79\\xcc\\xfe\\xd3\\x84\\xf4\\x5f\\x3e\\x24\\xa4\\x6f\\x5e\\x7f\\x28\\x6e\\x7b\\x93\\x92\\x8a\\xee\\x69\\xf8\\x5e\\x57\\x36\\x6d\\xc6\\x8d\\xa4\\xdb\\xa4\\x6e\\x8d\\x64\\xe8\\xa4\\x9a\\x7f\\x35\\x9d\\x42\\x98\\xf6\\xd8\\x65\\x30\\x0a\\x4d\\x15\\x8b\\xc6\\xa6\\x89\\xae\\x87\\x2d\\x7d\\xbd\\xee\\x5d\\x51\\xef\\x85\\x88\\xc6\\x8e\\xbf\\xba\\x73\\xb3\\x62\\x27\\x9d\\x18\\x6f\\x0c\\x16\\x70\\xac\\x74\\x9e\\xc2\\xd4\\x52\\xfb\\xce\\x3a\\xea\\xda\\x68\\xac\\xdf\\xa9\\x47\\x1b\\x5c\\xcf\\xd7\\x7b\\x34\\xc5\\xee\\xaa\\xc6\\x4b\\xd5\\xfd\\xe2\\x9e\\xb9\\xa8\\x95\\xc6\\x8e\\x42\\x1f\\xde\\x18\\x13\\x14\\x36\\x59\\xab\\x49\\x89\\xc9\\x61\\xc7\\xab\\xbc\\x48\\x63\\x17\\x05\\x2b\\xa3\\x26\\xc5\\xde\\x3b\\xf5\\x29\\x35\\xc9\\x5d\\x7c\\x6a\\x51\\x7d\\x0f\\x9d\\x4a\\xd1\\x3e\\x35\\xb4\\xe3\\x2f\\xa6\\x5a\\xdf\\xb5\\x2a\\xf4\\x78\\xa3\\x98\\x3c\\xea\\x90\\x7e\\x0c\\x8f\\x90\\xee\\x5c\\xc3\\x23\\xa4\\x8d\\x43\\xd7\\x60\\x70\\x8d\\x53\\x71\\x7e\\xf4\\x8e\\x95\\xe6\\xea\\xf8\\x31\\x3c\\x2f\\xee\\x9d\\xa5\\x89\\xc4\\x8e\\xeb\\xd0\\xe6\\x4a\\x35\\xb8\\xd3\\x87\\x36\\x13\\x9d\\x91\\x72\\x67\\xc3\\xe6\\xe8\\xd9\\x9c\\x62\\x1f\\x59\\xcb\\xba\\x86\\x52\\xb4\\xd5\\x0d\\x22\\x96\\x66\\x52\\x85\\x30\\xbc\\x4a\\x34\\x50\\xe7\\x85\\x6d\\xec\\xf8\\x83\\x7b\\xad\\x9a\\xf0\\x46\\x20\\x72\\xd6\\x86\\xf1\\x15\\x6b\\x3c\\x07\\xf5\\x76\\xe2\\xbe\\xa7\\x64\\x5d\\x5b\\xa4\\x36\\xc6\\x9a\\x71\\x9e\\xd5\\x9b\\x7a\\xa7\\x7a\\xc7\\x36\\x2e\\x22\\xf1\\xe2\\xbe\\x38\\x4d\\x55\\x8d\\xab\\x78\\x4b\\x0a\\xd0\\x2c\\x18\\x69\\xc4\\x4c\\x5f\\x0d\\x55\\xcd\\xa4\\xb4\\x8f\\xaa\\x44\\xa9\\x8d\\x5a\\xa9\\xd6\\xe7\\x28\\x26\\x12\\xb5\\xa4\\x3a\\x37\\x26\\xad\\x82\\x5d\\xab\\xdf\\xeb\\x8f\\x3b\\xc1\\xa2\\xee\\xb5\\x18\\x69\\x8e\\xd4\\xa6\\x94\\x73\\x98\\x36\\x55\\xc5\\x50\\xa8\\xe9\\x9e\\xb5\\x7e\\x4c\\x8b\\x58\\xf0\\xdd\\x29\\xdc\\x94\\xc6\\x4c\\xc2\\xda\\x02\\x47\\x3c\\x86\\xe1\\xc5\\xbd\\x92\\x35\\x1a\\xb9\\x71\\x8c\\xc6\\x2e\\x1b\\x28\\x8d\\x07\\x6d\\xa3\\x86\\x85\\xd9\\xb7\\xe3\\x89\\x1b\\x3b\\xe8\\xcb\\xaf\\xbf\\x79\\xb4\\x81\\xbe\\xfc\\xfa\\x9b\\xd7\\x1f\\x3e\\xbe\\x7c\\xf7\\xe5\\x6d\\x3c\\x61\\x4d\\x82\\xf6\\x9a\\x16\\x89\\x36\\xa4\\xe9\\xe0\\x49\\xea\\xcd\\x86\\x4e\\xe6\\xe2\\xc7\\x3a\\x45\\xb4\\x85\\xc7\\x5e\\xc4\\x9a\\x56\\xf0\\x40\\xda\\x10\\x9b\\x5c\\xa3\\x47\\xbd\\xef\\xab\\x90\\xde\\x58\\xc0\\x1f\\x7d\\x0a\\x15\\xe1\\x85\\x4d\\x5d\\x7c\\xb7\\x4f\\xef\\x7d\\x2d\\xd0\\x82\\x0c\\x58\\xa0\\x21\\xbe\\x6e\\x65\\x8d\\xbe\\x44\\xcc\\xd1\\x8b\\x99\\xfa\\x98\\xa3\\x58\\x33\\x69\\xdf\\x51\\xe8\\x59\\x6c\\x3b\\xee\\xa8\\xab\\xce\\x0c\\xa9\\x69\\x9a\\xc5\\x6e\\x32\\x6d\\x06\\x47\\x4b\\x1a\\x9b\\x6b\\xb4\\x30\\xdd\\x72\\x68\\x7d\\xcb\\x3e\\xd8\\x9b\\x0e\\x6d\\x43\\xa5\\x99\\xf3\\x1c\\x4e\\x2d\\x7a\\x9e\\x89\\x06\\x48\\x6e\\x34\\x2b\\x6e\\x4c\\xb5\\x47\\x99\\x4c\\xea\\x9a\\x8d\\xb5\\x6f\\x54\\xf4\\xd2\\xcf\\x83\\x72\\x4b\\x93\\x96\\xb2\\x47\\x44\\x13\\x6e\\x3e\\xbc\\xf9\\x34\\xa2\\x76\\x62\\xda\\x15\\x34\\x49\\x4d\\x78\\xb4\\x9c\\x34\\xb8\\xe5\\x00\\x5b\\x62\\x92\\xb9\\x46\\xf5\\xc5\\xbd\\x31\\x08\\x7b\\xb7\\xc2\\x56\\x9d\\x9b\\x73\\xdd\\x2f\\xf0\\x04\\x56\\x0a\\xd8\\x62\\xa3\\xe0\\x4b\\x6f\\x36\\x78\\x57\\xee\\xcd\\xaa\\x43\\x9d\\xb0\\x5e\\x24\\xf8\\x4e\\xb3\\xf8\\x4a\\xb6\\xda\\xdb\\xc4\\xb4\\x49\\xc6\\x8e\\xab\\x06\\x58\\x84\\x90\\x4c\\xed\\xbd\\xb1\\xd9\\xd4\\x62\\xc5\\xe4\\xf3\\x68\\xf7\\xc5\\xbd\\x3a\\xaf\\x19\\x42\\xa1\\x9b\\x35\\xcd\\xbe\\xb8\\x8a\\x09\\xb5\\x41\\xb2\\x39\\x6b\\x1b\\xc9\\xbb\\x5b\\x71\\xa2\\xea\\x24\\x36\\x29\\x96\\xe9\\x03\\x9b\\x83\\xce\\xa8\\xa9\\xeb\\x63\\xac\\x02\\xb1\\xee\\xab\\xa0\\xd9\\xf0\\x0c\\x05\\x4d\\x0f\\x29\\x26\\x54\\xeb\\x91\\x17\\x17\\xc1\\x84\\xb3\\xf1\\x6e\\x0e\\xee\\xcd\\xcd\\x8a\\x16\\x8a\\x3f\\x29\\xf8\\x53\\x8f\\x89\\x0d\\x91\\x6c\\xcc\\x6b\\x47\\x5f\\x7c\\x76\\xf7\\x24\\x69\\x7f\\xf3\\xfe\\xe3\\x53\\xe0\\xf0\\xe3\\x9b\\x77\\x5f\\xbd\\x7d\\x1a\\x6a\\x03\\x8f\\x55\\xf5\\x32\\x74\\xf3\\xa2\\xd8\\x21\\x67\\xb5\\x58\\xc8\\xcf\\x83\\x2e\\x75\\xe7\\xe9\\xa5\\xf4\\x5f\\x3d\\xda\\xa5\\x5e\\x7e\\x78\\xfd\\xee\\xed\\xeb\\x9f\\x3f\\xb3\\x4f\\xa9\\x61\\x02\\xeb\\x1a\\x22\\x98\\x98\\xb4\\x98\\xca\\x35\\xa8\\x19\\x20\\x1b\\xe2\\xec\\xd3\\x6b\\x61\\x68\\x71\\x4d\\x1e\\x8d\\x4c\\x63\\xa6\\x4a\\x23\\xa7\\xb1\\xe5\\x28\\x34\\xeb\\xb1\\x63\\x3d\\x14\\x70\\x8a\\xac\\x6d\\xce\\x78\\x7a\\x15\\x28\\x78\\x3a\\x71\\x1b\\x4c\\xd3\\xb2\\x58\\xab\\x5e\\xcc\\x73\\xaf\\xb2\\xa4\\xb4\\xba\\x57\\xa3\\xeb\\xb5\\xc5\\x53\\x9f\\xf5\\xf6\\x89\\x06\\xcd\\xaa\\xf8\\x24\\x3d\\xb6\\x6a\\xea\\xa4\\x16\\x7b\\x64\\xde\\x9d\\x54\\xb8\\x85\\xf4\\x76\\x92\\x34\\xf4\\xeb\\xc4\\xc1\\xd3\\x88\\xdb\\x89\\x28\\xd1\\xf7\\xd0\\x29\\x1e\\x0d\\x3b\\x48\\x7d\\x62\\xf4\\x8b\\x8d\\x1b\\x5b\\xfb\\x7f\\xfd\\xc4\\xa0\\x7d\\x78\\xf3\\xd5\\x2f\\x6e\\x8f\\x5a\\x71\\x47\\x8b\\xbe\\xb8\\xa4\\x48\\x4b\\x1b\\x4d\\x88\\x66\\x8c\\xd1\\x92\\x67\\xd4\\x52\\x23\\x2a\\x4a\\x92\\x76\\x62\\x2f\\x19\\xc6\\xab\\xb7\\xd5\\xa9\\x81\\x0f\\xd9\\x8a\\xcf\\xd4\\xa7\\xed\\x12\\xb5\\x2e\\xdd\\x00\\x57\\x4e\\x34\\x78\\x1a\\xe0\\x0f\\x4f\\xef\\xb5\\x07\\x8c\\xe9\\x5c\\xa8\\x33\\x2f\\x36\\x74\\xaf\\x72\\x44\\xb6\\xa2\\x51\\x6c\\xe0\\x5c\\x38\\xaa\\x76\\xd6\\x2a\\x88\\xd9\\x62\\x60\\x1a\\x7d\\xab\\xa6\\x6a\\x7a\\x76\\x65\\xbf\\x23\\x2b\\xee\\x52\\x30\\xc2\\xd4\\xd1\\x2f\\x52\\xe9\\x33\\x8a\\xff\\x71\\x28\\x7a\\x4e\\x3d\\xfb\\xac\\x4f\\x49\\xe3\\x89\\x4f\\x1c\\x7c\\xb1\\xe8\\x4f\\x8f\\xda\\x7f\\xf3\\x88\\x63\\x7f\\xfc\\xf6\\xf5\\x87\\x37\\x1f\\xff\\xf6\\xe6\\x98\\x99\\x7a\\x73\\x89\\x8d\\x4c\\x8b\\xd2\\x36\\xe6\\xde\\x86\\xe4\\x66\\xc3\\x5a\\x04\\x6f\\x66\\xb5\\xc6\\xba\\x9c\\x23\\x72\\x2b\\xa0\\x1d\\x6e\\x1b\\x20\\xe2\\xe0\\xdc\\x88\\x8a\\xef\\xd2\\xd8\\x22\\x46\\xf3\\xfa\\xa1\\x17\\x1b\\xe9\\xb6\\xa5\\x63\\xc7\\xdb\\xbc\\x58\\x92\\xe6\\x56\\x58\\x9c\\x32\\x36\\xf6\\x6c\\x42\\x7d\\x3b\\xda\\x7d\\xfa\\x23\\xfe\\xdb\\x47\\x53\\xff\\xf6\\xbb\\x8f\\xcf\\x48\\xb0\\xd4\\x92\\xf8\\x4c\\x7d\\xc4\\xc5\\x2c\\xcf\\x21\\x74\\x21\\xf5\\xb3\\xba\\xe3\\xef\\x31\\x2e\\x75\\xbf\\xfe\\x24\\xee\\x8e\\xfb\\x49\\x37\\x88\\xee\\xbf\\x7b\\xd8\\xf2\\xab\\xf7\\x5f\\x7f\\xfd\\xf2\\x76\\xd3\\xd4\\x1b\\xf3\\x5e\\x97\\x93\\x58\\x2b\\x00\\x71\\x2a\\xf0\\x6d\\x5c\\xac\\xbc\\x16\\x55\\xb6\\x93\\x50\\x00\\xcb\\x9f\\xb4\\xfb\\x56\\x9b\\xfc\\x49\\xa4\\xef\\x12\\xa3\\x9d\\x4a\\xd8\\x90\\x7a\\x89\\xb1\\xb4\\x6b\\x95\\xc5\\x98\\x5a\\x8b\\x6a\\xf0\\x2c\\x26\\x3e\\x2e\\xac\\x72\\x0e\\xa2\\x6d\\xb5\\xf5\\x74\\xa7\\x4f\\x0f\\x3b\\xfd\\x8b\\xdf\\x7c\\xf3\\x8b\\xd7\\xb7\\x85\\x4a\\xa2\\x12\\xa8\\xa5\\x9f\\x39\\xf9\\x12\\x66\\xe7\\xfa\\xe1\\x62\\x72\\x83\\xa0\\xfe\\xe4\\xf7\\x10\\xf6\\x9b\\xf7\\xb7\\xf7\\x7f\\x88\\x4d\\x4e\\x7b\\x5d\\xb9\\xf7\\xa6\\x05\\xb8\\x0a\\xec\\x87\\x34\\x1e\\x04\\x24\\x2c\\x52\\x6c\\xcb\\x9a\\xa8\\xed\\xee\\xbd\\xae\\xd8\\x0c\\x45\\x68\\x46\\xc1\\x81\\xc1\\x33\\x86\\x36\\x16\\xc5\\xae\\x5c\\xf5\\xe1\\xca\\xd2\\x62\\x94\\x08\\x37\\xc3\\x4a\\x86\\x98\\xf5\\xd6\\xc9\\x51\\x59\\xe1\\x39\\x68\\x0b\\x6a\\xcb\\x13\\xad\\x9f\\xab\\x4d\\xe1\\x59\\x5d\\x18\\x7d\\x1e\\x3d\\x7b\\xfa\\x23\\x3f\\x7f\\xa4\\x70\\x79\\xfb\\xf2\\xe3\\x2f\\x6e\\x7f\\x63\\xcd\\x1d\\xb1\\x9d\\x99\\xfb\\x16\\xfe\\x49\\x94\\x66\\xdd\\xae\\xb7\\x9e\\x6e\\xa5\\x3f\\x6c\\xe5\\xef\\x5f\\x7f\\xf8\\x7d\\x75\\xd5\\xa7\\x59\\x2a\\x90\\x62\\xa6\\x3b\\x0a\\x4a\\xb5\\x75\\xd6\\x47\\x77\\x9f\\xa3\\x84\\x2c\\x2e\\xf1\\x57\\x1b\\xf9\\xc1\\x69\\x69\\x07\\x91\\x31\\x15\\x1e\\xac\\x9f\\x39\\xb0\\x5d\\xce\\x82\\xc8\\x10\\x71\\x94\\xaa\\xbe\\xcb\\xe8\\xbc\\x57\\x99\\x7a\\xed\\x13\\x05\\xda\\x0b\\xa0\\xd6\\xb2\\xa4\\x9a\\x18\\x80\\x7f\\x2d\\xae\\x5f\\xb5\\x17\\xbe\\x0a\\x5e\\x85\\x5a\\x65\\xeb\\x56\\x41\\x1f\\xaa\\xd9\\xa2\\x6e\\xc5\\xe7\\x0a\\x61\\x03\\x53\\x75\\xbe\\x98\\xe9\\x8b\\x7b\\x65\\xba\\xf3\\xd0\\xad\\x44\\xcf\\xe1\\xb2\\x2f\\x79\\x97\\x7a\\x83\\x12\\x88\\x92\\x56\\xed\\xd8\\xcc\\x21\\x6c\\x18\\x37\\x2d\\x86\\x51\\x58\\x5a\\x99\\xda\\x50\\xbf\\x78\\xe8\\x8b\\xfb\\xaa\\x21\\x42\\xb7\\xfa\\x51\\xd3\\x8b\\x69\\x36\\x51\\x6e\\x1a\\x25\\x71\\x08\\x3e\\x1e\\x42\\x63\\x49\\x20\\x5d\\x5a\\x38\\x41\\xeb\\x54\\xef\\x19\\xf1\\x25\\xe2\\xc6\\x96\\x4c\\x0f\\xe7\\xe2\\xfd\\xbb\\xdb\\xbb\\x7e\\x32\\xb7\\x7e\\x36\\xa5\\x92\\x5f\\x62\\xa3\\x02\\x8c\\x69\\x17\\x62\\x8e\\x2d\\x4b\\x4a\\xaf\\xe9\\x4f\\xe6\\xcb\\x8d\\x15\\xc4\\x0f\\x9b\\xfa\\xf6\\x57\\xcf\\xcd\\xfa\\x90\\xd6\\xcf\\xd4\\xfb\\x85\\x46\\xdf\\x0a\\x51\\xfa\\xf0\\xdd\\xd9\\x5b\\xad\\x0c\\x77\\x6d\\xd9\\x0b\\xa3\\x5a\\xcb\\xa1\\x33\\x6c\\xb4\\x11\\x7d\\xe9\\xd4\\xba\\xe4\\xa1\\x54\\xcb\\xc0\\xd3\\x54\\xd3\\x1f\\x10\\xed\\x72\\x4c\\xaf\\x5f\\x58\\xfa\\xb4\\xa8\\x11\\x57\\x5d\\x18\\xae\\x24\\x47\\x5d\\xea\\x88\\x3e\\x45\\xa1\\xad\\xa0\\x73\\xf4\\x1d\\x35\\x0d\\xc8\\x97\\x75\\x53\\x27\\x13\\x66\\xdd\\xa7\\x14\\xd1\\xa8\\xe4\\x92\\x7f\\x35\\x7c\\xf7\\x11\\x77\\x55\\x68\\x91\\x20\\x11\\x9b\\x83\\x81\\x34\\x72\\x52\\x2f\\xd2\\x65\\x2e\\x91\\x47\\x41\\xc4\\x7d\\x47\\x69\\x44\\xd5\\xcd\\x00\\x8d\\x73\\x58\\xb4\\x48\\x99\\x69\\xd1\\xdc\\x96\\xaa\\xc1\\x48\\xb6\\x92\\x75\\x98\\xa5\\x98\\xbb\\xdc\\x1a\\x5e\\x79\\x34\\xbc\\xbf\\xf8\\xf0\\xfa\\xf6\\x5c\\x16\\x1d\\xa5\\xf5\\xb3\\x05\\xef\\x9e\\x05\\xaa\\x7a\\x8b\\x12\\xd4\\x7a\\xcc\\x80\\x5c\\x6c\\x09\\xad\\x09\\x51\\x27\\x08\\x86\\x44\\xe2\\x33\\xb4\\x7e\\x19\\x31\\x3d\\xeb\\x6b\\x24\\xa6\\x15\\x50\\x65\\xa3\\xdd\\x8c\\x0e\\xcd\\x4d\\x09\\x53\\x05\\x0c\\x14\\xbf\\x74\\x9b\\x8a\\xa1\\xb3\\x92\\x9f\\x6b\\xbd\\x45\\x09\\x0b\\xb2\\x53\\x0d\\x08\\x79\\xd1\\xcd\\x01\\x5f\\xd9\\xa0\\x12\\x35\\xe0\\x6e\\x52\\x8d\\x09\\xcd\\xc1\\x1a\\x59\\xbb\\x8e\\xac\\x2d\\xe1\\x66\\x14\\xe8\\x95\\xa8\\x25\\x27\\x87\\x7c\\x5d\\x32\\x7c\\x21\\x6b\\xda\\x8f\\x12\\xe1\\xcf\\xde\\xc6\\x52\\xf9\\x8c\\x96\\xc9\\x73\\x18\\xb7\\xec\\x25\\xab\\xd6\\x27\\x97\\x40\\x43\\xad\\x08\\x69\\x78\\xb1\\x5f\\xd4\\x37\\x9a\\x43\\x36\\x4d\\x6e\\x46\\x35\\x77\\xc3\\x9b\\xf6\\xdc\\x51\\x90\\xee\\x8b\\x07\\x31\\xfb\\x1c\\xb5\\x39\\xf1\\x8c\\x5a\\xf5\\xe8\\x6d\\xf1\\xdf\\x12\\x8f\\x8a\\xff\\x16\\x3d\\xd9\\x64\\xcd\\x42\\x5d\\x24\\xd9\\x0a\\xc7\\x57\\x0d\\xc3\\xcf\\x12\\xba\\x17\\x01\\x41\\xe4\\x18\\xbd\\x09\\x0d\\x70\\x68\\xb6\\x9c\\x06\\x71\\x27\\x6b\\x6c\\xef\\x6a\\x51\\xfb\\x18\\x6b\\x51\\xdb\\x28\\x59\\x79\\x26\\x74\\x12\\xb4\\xe3\\x1a\\xbd\\x65\\xaf\\x7e\\xf2\\x0c\\x93\\x66\\xc5\\x54\\xa2\\x24\\x78\\x9a\\x16\\xdc\\x5c\\xf4\\xac\\x4c\\x97\\xb4\\x1b\\x64\\xa3\\x0f\\xc9\\xe6\\xe7\\xef\\xbf\\xbb\\xad\\x80\\x1c\\xd5\\x80\\xd2\\x99\\x88\\xf9\\x22\\xe4\\xe7\\x61\\x72\\xe9\\x67\\x0f\\xc3\\x5f\\xd1\\x37\\x1b\\x4d\\x47\\xdf\\x20\\x20\\x14\\x3b\\xa8\\x07\\x4c\\xe9\\xc5\\xbd\\x08\\xe3\\xd5\\x7a\\xb6\\x06\\x76\\x73\\xe8\\x63\\x44\\xb7\\xe3\\xce\\xd3\\xbd\\xb3\\x47\\xbd\\x7b\\xf3\\xcb\\xdb\\x34\\x4d\\x66\\x2d\\x28\\x36\\x2e\\x7a\\x58\\x5b\\x91\\x16\\xd6\\xe1\\x7e\\x56\\x8f\\xad\\x60\\xf9\\x80\\xc8\\x26\\x6d\\x50\\x36\\x03\\xc2\\x8b\\xe9\\x46\\x6d\\x98\\xef\\xc5\\x2a\\x86\\x79\\x4b\\x49\\x28\\xa9\\x46\\xb1\\x7a\\xa8\\xff\\x5c\\x9b\\x07\\x17\\x19\\x68\\x53\\xf7\\x1d\\x05\\xa9\\x9d\\xa2\\xbb\\xb5\\x92\\x3e\\x96\\x26\\xc1\\x66\\xd6\\x72\\x1f\\xd3\\x0f\\xc5\\x8a\\x61\\x4b\\xea\\x4d\\x21\\xcc\\x72\\x31\\xcc\\x3e\\x4b\\x32\\x66\\xe6\\x49\\x14\\x4d\\x3b\\x9f\\x65\\xd0\\xae\\x9d\\xee\\xa4\\x47\\x53\\xcc\\xb0\\x4d\\xef\\x98\\xf1\\xdd\\xab\\xfe\\x9a\\xf9\\x5e\\xeb\\x5f\\x67\\x78\\x36\\x4e\\x9e\\xd9\\xb5\\x49\\x74\\xe8\\x3b\\x34\\xfb\\x5e\\x57\\x93\\x5c\\x94\\x90\\x0e\\x5c\\xe0\\x51\\x22\\x0b\\xb7\\x60\\x9d\\x56\\x2b\\x47\\x65\\x37\\x29\\xd9\\x43\\x5a\\x51\\x58\\x88\\x4f\\x35\\x6e\\x51\\x32\\x09\\x15\\x83\\x95\\x29\\x11\\xcd\\x9d\\xb7\\x63\\x28\\x9f\\x9e\\x13\\x7f\\x04\\x12\\xde\\xfc\\xfa\\xf6\\x96\\x11\\xa3\\x44\\xaf\\xbc\\x14\\xaf\\x38\\xa7\\x2f\\xad\\x66\\xfd\\xd1\\x1c\\x0a\\xde\\x9e\\xd3\\x6a\\xcc\\x6a\\x1f\\xd7\\x92\\x9c\\xc7\\x98\\x92\\xd1\\x52\\x14\\xaa\\x80\\xc2\\xfb\\xaa\\xbd\\x65\\x0a\\xd0\\xe3\\xe0\\x80\\x26\\x7a\\xd8\\x80\\x3c\\x36\\x82\\x4a\\xe8\\xaa\\x6b\\x4b\\xb7\\x36\\x84\\xe7\\x18\\xd6\\xb2\\x76\\xfc\\x5e\\xf4\\xef\\x58\\xbf\\xd9\\x34\\xc6\\x8e\\x82\\xc4\\x12\\xbf\\x31\\x90\\xc3\\xb1\\x09\\x2c\\x0c\\x31\\x20\\x06\\xae\\x15\\x6c\\x77\\x6b\\x05\\x97\\x8c\\x33\\x59\\xc1\\xce\\x81\\x1d\\xa0\\xd8\\xee\\xd6\\xcc\\xe2\\xe2\\x5e\\xb8\\xc4\\x5a\\x4a\\x34\\x32\\x6e\\xa3\\xb6\\x87\\xc1\\x8b\\xfd\\x19\\x97\\x14\\x53\\x8c\\x06\\x6f\\x7b\\x9e\\x33\\xc6\\x8b\\xfb\\x12\\x6e\\x42\\x73\\x2f\\x31\\x2a\\x34\\xa1\\xbb\\x8e\\x9e\\x53\\x52\\x9b\\x77\\xbb\\x18\\xcb\\x5e\\xe5\\x82\\xbf\\x0a\\x35\\x98\\xcc\\x12\\x1a\\x38\\x75\\x1a\\x25\\xc8\\xc0\\x7b\\x34\\xee\\xba\\xd7\\x5e\\xc6\\x5d\\x81\\x1a\\x17\\x79\\xd4\\x57\\xd1\\xac\\xdd\\x58\\xdc\\x67\\xed\\xd8\\x1a\\xb6\\xd7\\xb5\\xc0\\x60\\xfd\\x6e\\xb9\\x9e\\x03\\x79\\x0c\\x6f\\xc1\\x31\\x8f\\x3e\\x3d\\xad\\x24\\x88\\x47\\xd3\\xfd\\xfa\\x97\\xcf\\x81\\xea\\x0e\\x3d\\x68\\xa7\\xad\\xa6\\xb5\\x9f\\x59\\x78\\x4b\\x28\\x2c\\x78\\x9c\\x7d\\x5c\\x8e\\x75\\x39\\xf8\\x52\\x0f\\x3d\\x4d\\x5f\\xf9\\xc8\\x72\\xf7\\xac\\xac\\x0b\\xe5\\x0b\\x75\\xaf\\xc9\\xb5\\x62\\xe2\\xb2\\xb4\\x2d\\x59\\xc3\\x50\\x54\\xac\\x63\\x2f\\x9c\\xe6\\x90\\x20\\x59\\x9a\\xf7\\xda\\x0b\\xb2\\xb8\\x70\\x31\\xf4\\x2c\\x9c\\x5d\\x35\\xe8\\x68\\x4c\\x31\\x87\\x7a\\xcb\\xda\\x03\\xa9\\xd5\\xe6\\x36\\xae\\xe4\\xf0\\x89\\xa1\\x07\\xb6\\xa9\\xf4\\x49\\x35\\x29\\x14\\x45\\x5d\\x47\\x5d\\xa3\\xc1\\x5e\\xc6\\xd6\\x8c\\x68\\x52\\x51\\x5f\\x1f\\xd0\\x49\\x7b\\x8e\\x29\\x5a\\xb8\\xaf\\xef\\xac\\x71\\x17\\x05\\x28\\x86\\xb6\\xcc\\x3e\\x17\\x08\\xad\\x0f\\x50\\xe8\\xcd\\xb2\\x15\\x54\\x25\\x56\\x99\\xec\\xc7\\x1e\\x07\\xdc\\xab\\x3a\\xa6\\x8d\\x4f\\x50\\x03\\xda\\x3e\\x18\\x74\\x8e\\x0d\\xb1\\xf0\\xe9\\xda\\x10\\xb9\\x03\\xd0\\xcc\\x4f\\x83\\x53\\x00\\x32\\x9a\\x52\\xec\\xb8\\x7a\\xb4\\x18\\xdc\\xac\\x36\\x7b\\xeb\\xcd\\xc2\\xb0\\x98\\x9c\\xaa\\x81\\xa8\\x3d\\x63\\x37\\x1d\\x75\\xad\\x2f\\xc1\\xef\\x0a\\x35\\x85\\x4f\\xed\\x82\\xf7\\x24\\x13\\xf5\\xd5\\x55\\x68\\x59\\x05\\xd8\\x3b\\x86\\x0c\\x9c\\x4b\\x17\\xe7\\x2a\\xa0\\x50\\xa3\\x14\\x9a\\x77\\x75\\xbf\\x06\\x56\\x38\\xe6\\xd1\\x9f\\x17\\xf7\\x01\\xfc\\x53\\xfc\\xb7\\x0a\\xd4\\x7b\\x83\\x28\\x01\\xb4\\xc1\\xe3\\x40\\x1b\\xc1\\x57\\xb4\\xe1\\x07\\xda\\xa0\\x03\\x6d\\x28\\x1e\\x1e\\x63\\x02\\xee\\x57\\x3d\\xab\\x40\\xdc\\xc0\\x4f\\xaa\\xcb\\xee\\x00\\x57\\xb5\\x20\\x33\\x04\\x5d\\x4c\\xcb\\xdd\\xb5\\x30\\x50\\x36\\x0f\\x6d\\x19\\x3c\\x43\\x3a\\x9e\\xab\\xf6\\x47\\xd8\\xbc\\xf6\\xec\\x69\\x2a\\x1d\\x8f\\xac\\x98\\x6f\\x9e\\x41\\xce\\xb5\\xc5\\x31\\xd3\\xae\\x5a\\x6c\\x9c\\x9a\\xc1\\x16\\x6c\\xd3\\x5d\\x9a\\x90\\xce\\xd0\\xd1\\xb4\\x40\\x6a\\xc9\\x3a\\xa1\\x7b\\x68\\x34\\x13\\x6e\\x9e\\xd4\\xac\\xf3\\xb4\\x42\\xfd\\xc1\\xb0\\x48\\x68\\x70\\x13\\x29\\x58\\xd8\\x27\\x77\\x5f\\x48\\x85\\x0d\\x66\\xad\\x11\\x6d\\x38\\xef\\x23\\x6a\\xd2\\x4b\\x90\\xe9\\x45\\x50\\x04\\x85\\x33\\x09\\xdb\\x14\\x10\\x8b\\xd8\\xb4\\xa4\\xc7\\x74\\x04\\x10\\x5b\\xec\\x53\\x0b\\x85\\x61\\x95\\x48\\xdc\\x11\\x31\\x80\\x15\\x15\\x76\\xba\\x44\\xd6\\xee\\x57\\x68\\x1c\\x26\\x13\\xce\\xda\\x0f\\x67\\x0e\\x83\\x32\\xdf\\xbd\\x76\\x23\\xa8\\xb5\\x4f\\xc4\\x67\\x21\\xb9\\x30\\xd3\\x59\\x84\\x5f\\xdc\\x17\\x36\\xf2\\x8c\\xdd\\xd9\\xea\\xda\\xbc\\x76\\xa8\\x91\\x33\\xa8\\x58\\x50\\xce\\x70\\x2e\\x01\\x07\\x02\\x6f\\x0a\\x5f\\x86\\xd0\\x5e\\x65\\xea\\x44\\x6d\\xcd\\x44\\xd0\\x0c\\xe1\\x43\\x2d\\xea\\x25\\x37\\x09\\x4d\\xcb\\x7e\\x50\\x84\\x5c\\x29\\x02\\x88\\x94\\x73\\x2a\\x17\\x41\\xb9\\x81\\x56\\x61\\xdf\\x29\\xc0\\x35\\xdc\\x01\\xbc\\x06\\x15\\x6f\\x8d\\xda\\x61\\xa0\\x9d\\x8a\\xe8\\x53\\x87\\xdc\\x05\\xf5\\x79\\x74\\xf6\\xe9\\x89\\xff\\xe7\\x8f\\x55\\x23\\x6f\\xdf\\xdf\\xe6\\x87\\x2a\\xbe\\xf4\\x00\\xe2\\x4b\\x0f\\x50\\x6c\\x06\\x46\\xbf\\x58\\x7a\\x00\\xcd\\xa5\\x07\\xe0\\xb1\\xf4\\x00\\x05\\x09\\xb5\\x36\\xdf\\xbe\\xf4\\x00\\xd1\\xa1\\x07\\x80\\x11\\x50\\x14\\x1c\\x1d\\x7a\\x00\\xc6\\x8a\\x80\\x51\\x73\\x94\\xe0\\x43\\x4d\\x04\\xfa\\xb2\\x93\\xa3\\x32\\xc0\\x8f\\x5c\\x38\\xb4\\x1a\\x39\\x39\\xda\\x14\\x9e\\xd5\\x85\\xd1\\xe7\\xd1\\xb3\\x17\\xe8\\xe2\\xc8\\x40\\x17\\xa9\\xb3\\xdf\\x29\\xa4\\x9f\\x1a\\x96\\x84\\x39\\x2c\\xd0\\x4b\\x22\\x5b\\x35\\xd7\\xf8\\xa3\\x9f\\x55\\x40\\x47\\x89\\xec\\xf0\\x67\\x20\\xca\\xa5\\xaa\\xe8\\xde\\xd1\\xd7\\xaa\\x18\\x57\\x1d\\xab\\xaf\\xe4\\xe8\\x6c\\x8d\\x7a\\xbd\\x9a\\xbc\\xbe\\x3d\\xbb\\xa3\\xbb\\x25\\x21\\x1b\\x00\\x73\\x47\\xf3\\x69\\xb9\\x3a\\x4c\\x3e\\x8f\\x8e\\x3e\\x3d\\x2b\\x7f\\xfa\\x78\\x97\\xfa\\xfa\\xcd\\xf7\\xcc\\x4c\\xd8\\xfa\\x6c\\x58\\x0a\\xb9\\x28\\x37\\xd7\\x67\\x2f\\xa5\\x25\\x1d\\xd2\\x07\\x3e\\xbb\\x16\\x53\\x7d\\x76\\x90\\x1c\\x9f\\x5d\\x63\\x54\\x9f\\x5d\\x1f\\xb5\\x3e\\x5b\\xe3\\xf8\\x6c\\xa7\\xf5\\xd9\\x75\\x85\\x61\\x33\\xd1\\xfd\\x5c\\x70\\x06\\x8b\\x1d\\x9f\\xed\\x89\\xcf\\x76\\x4c\\xa3\\xc3\\x4a\\x5a\\xbf\\x57\\xf3\\xf8\\xec\\x5c\\xef\\x1d\\x1d\\x7d\\x71\\x1f\\xe9\\x77\\xcc\\x7b\\x40\\x59\\x6b\\xad\\x86\\xf1\\x34\\x6c\\x99\\xa3\\x99\\xd6\\x9a\\x58\\x6a\\xb6\\x94\\xa5\\x66\\xab\\x11\\x83\\x9a\\x4d\\xcd\\x96\\x9a\\x4d\\xa1\\xce\\xb5\\x98\\xd6\\xfb\\x52\\xb3\\x19\\x0d\\xa8\\xd9\\xaa\\xd9\\x43\\xcd\\x96\\xb1\\x55\\x23\\xb7\\xd4\\x6c\\xff\\xec\\xed\\x63\\x87\\x92\\xb7\\xaf\\x3f\\xde\\x56\\x4c\\xd6\\x7a\\x74\\x8d\\x4d\\x6b\\xe5\\x33\\x6f\\xf5\\xb7\\x0d\\xa8\\x48\\xa9\\x29\\xd9\\x85\\x54\\x37\\x32\\xaf\\xad\\xe6\\x12\\xe2\\xeb\\x06\\x51\\x97\\x4b\\x8a\\x6c\\xc7\\xeb\\x4f\\x77\\xe5\\x8b\\x47\\x50\\xe1\\xef\\xbe\\x7b\\x79\\xdb\\xab\\x85\\xe0\\x66\\x43\\x71\\x26\\xcb\\xcb\\x50\\x3b\\xd7\\x0f\\x97\\x82\\xb9\\xeb\\x16\\xa7\\xe3\\x96\\x91\\xac\\x5b\\x9c\\xb7\\x9c\\x6a\\xbe\\x7a\\x3c\\x02\\x5f\\x7d\\x78\\xfd\\xf2\\xdb\\xd7\\xb7\\x25\\x27\\x72\\x2a\\x4c\\x7b\\xa9\\xcf\\xda\\x4a\\x44\\x6d\\x21\\x71\\x31\\xea\\x5b\\xdd\\x21\\x95\\x8b\\x92\\x6c\\x21\\xc0\\x80\\x5b\\xc0\\x04\\x6b\\x70\\x3e\\x72\\xb5\\xed\\x78\\xfb\\xe9\\xce\\xfc\\x8b\\xc7\\xf6\\x9b\\xd7\\x1f\\xbf\\x7d\\xf3\\x1c\\xe1\\x8f\\x82\\xd4\\xbc\\xd7\\xb5\\xb6\\x51\\x2b\\x99\\xc1\\x16\\x21\\xb8\\x1a\\xfc\\x10\\x82\\x1c\\x5e\\x24\\xc5\\xef\\x4b\\x06\\x49\\x0a\\x20\\xa8\\x34\\x9a\\xe1\\x4b\\xb7\\x9f\\xdd\\xda\\x18\\xb1\\x58\\x52\\x0f\\x59\\x3c\\x89\\x5c\\x5b\\xc0\\x66\\xd5\\xab\\x0a\\x00\\x91\\xdc\\xad\\x38\\x79\\x09\\xc2\\x70\\xbf\\x01\\x3a\\x06\\x28\\xec\\x70\\x62\\xaa\\x95\\xa4\\xcb\\xa2\\xd9\\xc3\\xce\\xe4\\x7d\\xc7\\xa8\\x50\\x44\\xa3\\x91\\x77\\xc4\\xc6\\x93\\x0b\\x32\\x49\\xe4\\x72\\x77\\x52\\xe3\\x55\\x3b\\x34\\x73\\xb0\\xeb\\x40\\x5c\\x1b\\xeb\\x56\\xc9\\x6e\\x78\\x98\\xfa\\x52\\xff\\xc1\\xd3\\xa3\\xfa\\x59\\x1b\\xd8\\x2a\\x91\\x41\\x17\\xd1\\x86\\x15\\x86\\x23\\xaf\\x85\\x3a\\x87\\x14\\x48\\x63\\x18\\x94\\x1d\\x1a\\xbb\\x12\\xa1\\x05\\x6a\\x07\\xa7\\x3e\\xc3\\xa9\\x99\\xcb\\x0c\\x28\\x3a\\x68\\xed\\xdc\\xca\\x67\\x1d\\xe3\\xc5\\x3d\\xd0\\x9f\\x8c\\x1d\\xd7\\x58\\xaa\\x3c\\xee\\x7d\\x5a\\x49\\x11\\xd6\\xa7\\x19\\x43\\xe8\\x70\\x2e\\xa6\\x5e\\xf0\\xbd\\x36\\x01\\xc5\\x7e\\xc8\\x29\\xf0\\xdf\\xa9\\xe7\\x22\\xe8\\x8e\\x3b\\xcd\\x48\\x41\\x7d\\xb1\\xfc\\x74\\x5a\\x04\\xb7\\x18\\x78\\x4c\\x68\\x7a\\x66\\xeb\\xa8\\xeb\\x44\\xbc\\x5b\\x72\\x5d\\x5b\\xb5\\x71\\x22\\x34\\x29\\x34\\xab\\x07\\x31\\xe6\\xd1\\xb1\\xa7\\xe9\\xe7\\xbf\\x7f\\x64\\x29\\x79\\x06\\x6b\\x53\\x14\\xc7\\x96\\x1d\\x6a\\x9b\\x85\\xce\\x00\\x13\\xe3\\x50\\x91\\x00\\x7c\\x76\\x6b\\x52\\x23\\x18\\xd2\\xa4\\x3b\\xa8\\x02\\x8e\\x47\\x49\\x6b\\x47\\x23\\x6b\\xda\\x6d\\x2f\\x60\\x28\\xde\\xe1\\xf5\\x20\\xa2\\x6b\\x27\\xec\\xb9\\x17\\xdb\\x93\\x9e\\x90\\x7f\\x04\\xb6\\xda\\xde\\x94\\x78\\x42\\x4d\\x20\\x3a\\x85\\x47\\x73\\x98\\x04\\x7b\\x8b\\x43\\x0e\\x4f\\x78\\xc1\\x61\\x52\\xfd\\xd8\\xac\\x8a\\xfa\\x60\\xdc\\x93\\xdc\\xc3\\xe5\\xae\\x0a\\x4b\\x73\\x4b\\x64\\x33\\x97\\x09\\x96\\xb7\\x2c\\xf8\\x2b\\xb6\\x17\\x93\\xb6\\xee\\xcb\\xa5\\x6a\\x14\\x13\\xe7\\x05\\x6d\\xb2\\xc3\\xc5\\x6a\\xd4\\xde\\x6d\\xba\\xac\\xdf\\xa6\\x6d\\x68\\x34\\x85\\x83\\x42\\x49\\x82\\x70\\x68\\x18\\x10\\xa9\\xe0\\x59\\x94\\x54\\x30\\xa9\\xb6\\x3d\\x39\\x9c\\x4e\\xa8\\x73\\x1c\\xd6\\xf7\\xb0\\x99\\x54\\x62\\x82\\xd3\\x74\\x58\\x95\\x72\\xec\\x06\\x07\\xa8\\x1c\\x4d\\xa1\\x49\\x50\\x9d\\x22\\xc7\\xe6\\xcb\\xea\\x6d\\xb0\\x4d\\xae\\x16\\xb2\\xef\\x25\\xf0\\x99\\x16\\x7b\\x2e\\xd4\\xed\\x53\\x7a\\x87\\x0e\\x02\\x36\\xd1\\x5c\\x08\\x9c\\x34\\x76\\x97\\x7e\\x57\\x32\\x4a\\x81\\x4c\\xaa\\x75\\x5b\\x20\\xd0\\x79\\x46\\xed\\x6a\\xd9\\x67\\x16\\xb5\\x75\\xde\\xb2\\xe0\\x5c\\xec\\xa9\\xd6\\x74\\x0d\\x91\\x14\\x22\\xad\\xf5\\x37\\xdd\\xa3\\x9d\\x04\\xb0\\xfb\\x94\\xbb\\x5a\\x6f\\xa7\\x6c\\x02\\x55\\xe9\\x24\\x58\\xb6\\x62\\x7a\\x89\\x3f\\x32\\x95\\xd1\\x3b\\x8d\\xa5\\x40\\x29\\xd1\\x3c\\x26\\x97\\x4c\\xc2\\x25\\x3e\\x94\\x48\\x22\\x45\\xfb\\xf5\\x56\\xb1\\x1f\\x74\\xa3\\x26\\x2d\\xb3\\x24\\xc6\\x51\\x6b\\x15\\x26\\xee\\xe0\\x49\\x4b\\x26\\x0a\\x9f\\x57\\x92\\x7b\\x71\\x5f\\x6c\\xaa\\xe6\\x5d\\x87\\x37\\x8b\\x80\\xfa\\xc6\\x20\\xb0\\x68\\x53\\xa7\\xdd\\xa9\\xc0\\x28\\xdd\\x79\\xc9\\xcd\\x21\\xd3\\x47\\xe1\\x6c\\xde\\xd7\\x15\\xaa\\xbd\\x66\\x9c\\xd3\\x4b\\xf0\\x91\\xe2\\xad\\x1d\\xf6\\xf9\\xa2\\xc7\\x9a\\xc5\\x62\\x6f\\x23\\x6d\\x87\\x25\\xb8\\x66\\xb5\\xa4\\x80\\xc2\\x82\\xab\\xdd\\xa7\\xd7\\xce\\x0f\\x1e\\xae\\x9d\\x1f\\xdc\\x56\\x84\\xc0\\x1c\\xa8\\x67\\xa5\\xbe\\x09\\x6b\\x49\\xc6\\xb9\\x59\\x3f\\x6c\\x26\\xe1\\x7d\\x2b\\xc8\\xda\\xfa\\x79\\x94\\xc0\\xbc\\x1e\\x7e\\x01\\x0b\\x8b\\x61\\x47\\xa6\\xcd\\x05\\x6c\\x76\\x6c\\xc7\\x8f\\x4f\\x77\\xe8\\x5f\\x3e\\xec\\xd0\\xbf\\xbc\\xbd\\x96\\x79\\xb4\\xbe\\xc4\\x71\\xa7\\xdc\\x43\\x96\\xfe\\xbe\\xb6\\x99\\x25\\x06\\x2c\\xb2\\x15\\x1b\\xc5\\x39\\x8b\\x38\\xe1\\x67\\xa4\\xb6\\x54\\xc3\\x44\\xaa\\xd0\\x96\\x51\\x1f\\xd4\\x32\\x0c\\xc4\\x1d\\xc6\\xfb\\x18\\xbe\\x3c\\x50\\x6a\\x36\\xa3\\xeb\\x2c\\x74\\xd4\\x9c\\xab\\x1e\\x17\\x2c\\x61\\xa2\\xc8\\xa6\\x1c\\x3b\\x0a\\xc2\\xcb\\xaf\\xaf\\xb1\\xf2\\x52\\xbe\\x52\\xcf\\x99\\xe1\\x8d\\x63\\xba\\xf7\\xd6\\xcf\\xc4\\x70\\xe3\\xa1\\xe6\\xca\\x17\\xe6\\x38\\xbb\\xd3\\x1e\\x51\\x70\\x28\\x5b\\x16\\xb4\\x4e\\x81\\x35\\x5e\\x79\\xec\\x39\\xb2\\x59\\x41\\x4a\\x95\\x66\\x69\\xf0\\xa0\\xf0\\x62\\xd1\\x44\\xab\\x92\\x54\\x3b\\x3b\\x77\\x7c\\x73\\x96\\xb8\\xdf\\x3b\\xac\\x08\\xe9\\x70\\x1e\\xb3\\x1d\\x05\\xaa\\xbb\\x35\\x04\\xcb\\x4c\\x53\\xeb\\x94\\xa3\\x2a\\xb9\\xa4\\xde\\xb0\\x6b\\xfd\\xc5\\xc3\\xc1\\xff\\x8b\\x67\\x18\\xa9\\x72\\xb1\\x95\\x9d\\x48\\xac\\x89\\x62\\x18\\x97\\xee\\x77\\x94\\x18\\x56\\xdf\\x0f\\x69\\xfe\\x93\\x51\\x4b\\x73\\x19\\xb5\\x4a\\x62\\x61\\x9f\\x5c\\xfd\\xc1\\xd4\\x58\\x13\\xb7\\x09\\xab\\xf3\\xb8\\x24\\xdb\\x1e\\x30\\x85\\x14\\x9f\\xa9\\x4a\\xfb\\xe4\\x62\\x0b\\x3c\\x7c\\x0a\\x5c\\xfa\\x78\\xcc\\x5a\\x29\\x6b\\xdf\\x94\\x3c\\xf6\\xcd\\x92\\x9d\\x54\\x65\\x8e\\x51\\x73\\xae\\xc5\\xcf\\x06\\xe4\\x6a\\xac\\x45\\x29\\xfc\\x09\\xed\\x5d\\xda\\xb8\\xa3\\x6e\\xdc\\x52\\x15\\xa6\\x81\\x65\\x99\\xa7\\x64\\xd8\\x62\\x20\\x91\\xa1\\x7a\\x6c\\xfa\\x50\\xf5\\x81\\xb1\\xd6\\xad\\x42\\xf4\\x40\\xd6\\x92\\x4b\\x0e\\xed\\xdd\\xa7\\xb8\\xb6\\xe4\\xb8\\x38\\x8f\\xbd\\xca\\x4a\\x0a\\xd7\\x56\\x29\\xe6\\x03\\x9b\\x56\\xee\\x70\\x89\\xee\\xd9\\x62\\xf4\\xc6\\xc5\\x93\\x1d\\x6e\\xaf\\xe7\\x1a\\xc5\\xa7\\x27\\xe2\\x87\\x0f\\x27\\xe2\\x87\\xcf\\xac\\x02\\xbb\\xae\\x02\\xeb\\xbc\\xbb\\x1e\\xab\\x20\\x8a\\x02\\xb4\\xc7\\x1c\\xf0\\xb1\\x81\\xf9\\x00\\xc2\\x68\\x61\\x05\\xaa\\x9d\\x27\\xe3\\xe2\\x1e\\xcb\\x5b\\xb4\\x58\\x11\\x06\\xac\\xb8\\x18\\x34\\x8a\\xb9\\xe4\\x21\\x2d\\x54\\xe5\\x20\\x60\\x7b\\x71\\xaf\\xb0\\xdd\\x72\\x5e\\x98\\xfd\\x6c\\xe4\\xbb\\xd5\\x9c\\xb3\\x43\\x16\\x66\\xf3\\x19\\x2e\\x4d\\x54\\x66\\x4a\\xc7\\xe6\\x92\\x26\\xcd\\x3d\\x2e\\x91\\x63\\x87\\xcf\\x54\\xae\\xa9\\x1a\\x1e\\x33\\x5c\\xef\\xd6\\x2e\\x67\\xcb\\xe7\\x12\\x8c\\xaa\\xaa\\x3f\\x6b\\xbf\\xe1\\xc9\\xf6\\xa3\\x87\\xc3\\xf2\\xa3\\x67\\x94\\x6a\\x1c\\xcd\\x25\\xcf\\xca\\x03\\xeb\\x8d\\x88\\xf3\\xd2\\xcf\\xa4\\x71\\x68\\xf0\\x88\\x97\\xe1\\x0f\\x4f\\xa4\\xf7\\x73\\xbd\\x72\\x71\\xb9\\xd1\\xf2\\xbf\\x7a\\xd8\\xf2\\xbf\\x7a\\x5e\\x9d\\xe7\\x5d\\xce\\x2a\\x84\\x06\\xaf\\x2a\\x43\\x12\\x39\\x1a\\x14\\xba\\xa4\\xd0\\xb9\\x9e\\xbc\\x78\\xbf\\xc1\\x07\\xff\\xf2\\x61\\x83\\x7f\\xf9\\xcc\\x52\\x2c\\xbe\\x1a\\xbd\\x50\\xa1\\x15\\x66\\x04\\x7f\\x2b\\x3e\\x30\\xb1\\xc7\\x17\\xce\\x65\\xb8\\xe2\\xcb\\xa1\\xd3\\xef\\xfe\\x49\\x17\\xc8\\x3a\\x59\\x6c\\xb9\\x56\\xb2\\x37\\x31\\x9d\\x19\\xcd\\x39\\x2f\\xc9\\xbe\\x67\\xb4\\x51\\x74\\xce\\xb1\\xbc\\xbc\\x18\\x16\\xab\\xae\\xcb\\x1e\\x56\\x3c\\x16\\xde\\x9c\\x1a\\xbe\\x87\\xf6\\xa5\\x85\\x39\\x56\\xa2\\x2d\\x3e\\x20\\x40\\x16\\x89\\x3d\\x54\\x26\\x91\\x00\\x48\\xe8\\x39\\xad\\xf6\\x6b\\x80\\x1a\\xc7\\xb2\\xc0\\x4a\\x75\\x6c\\xb6\\x3a\\x60\\xff\\xaf\\x42\\x33\\xfc\\xc2\\x25\\xf3\\x17\\x91\\x28\\x4d\\x19\\x87\\x9b\\x9a\\x60\\x5f\\xcd\\x8b\\x73\\xc2\\xc7\\xa7\\x16\\x9d\\x4a\\x36\\x29\\xe4\\xaf\\xd2\\xb8\\x24\\xd3\\xe2\\xc1\\x05\\xdd\\x7a\\xb6\\x12\\x30\\x61\\x7d\\xe0\\x82\\x2f\\x01\\xf5\\x55\\x81\\x27\\x8e\\xbe\\x15\\x68\\x32\\xd1\\xb3\\x53\\xbf\\x84\\x6a\\x4d\\x16\\x6d\\xd7\\x81\\x7d\\x7a\\x7e\\xce\\x0f\\xe7\\xe7\\xfc\\xbc\\x42\\xb9\\x9f\\x93\\xf4\\xe2\\x42\\x67\\xed\\x5c\\x64\\xc1\\xb2\\xc8\\xa2\\xfe\\x4c\\x1b\\xb8\\xfd\\x5b\\xd5\\xf2\\x8d\\x36\\x7f\\xfc\\xb0\\xcd\\x1f\\xdf\\x6e\\xb3\\xd0\\xe1\\xaa\\x4d\\x40\\xe6\\xe3\\x1c\\x46\\x58\\xb6\\xf8\\xa5\\x9f\\x69\\x08\\xfe\\xd4\\xe8\\xeb\\x7e\\xfd\\x50\\xaf\\x3c\\xdd\\xf2\\xbf\\x7e\\xd8\\xf2\\xbf\\xbe\\x0d\\x13\\xe8\\x93\\xe9\\x6a\\x8c\\x0d\\xda\\x50\\xd5\\xd8\\xeb\\xaf\\xe2\\x0c\\x30\\x6e\\xae\\x6d\\xc2\\x8a\\x3d\\xf7\\x09\\x45\\xb2\\x1e\\x9e\\x5c\\x7d\\x2f\\x61\\x79\\x11\\xa7\\xb4\\x9c\\x0c\\xc5\\xc9\\x24\\xcd\\x56\\x8c\\x99\\xa8\\xa6\\x39\\xcf\\x32\\x64\\xaf\\xcd\\x40\\x88\\x96\\xda\\xd6\\x06\\x2a\\xc0\\x94\\x1b\\x61\\xca\\x0b\\x2d\\xc1\\xa2\\x60\\xa3\\x71\\x21\\xd6\\xce\\x4d\\x8c\\x80\\x5c\\xf5\\xe0\\x02\\x4f\\x7f\\xeb\\xbf\\x79\\xf8\\xad\\xff\\xe6\\xb6\\xc7\\x95\\xdb\\x72\\xd2\\x44\\xb7\\x06\\xa6\\xf5\\x58\\xed\\xb5\\xcb\\x46\\x8e\\xcd\\x6a\\xeb\\xf1\\x38\\x3c\\xf8\\x6a\\x58\\x58\\x69\\x2b\\xd9\\x2b\\x89\\x37\\x62\\x1b\\x85\\x98\\xd8\\xb6\\xa3\\xae\\xa7\\x7b\\xb4\\x3d\\xec\\xd1\\xf6\\x8c\\xb2\\x8e\\xdb\\xe2\\x76\\xa4\\xd5\\x1d\\x3b\\xb6\\x06\\x15\\xa0\\x8e\\xa7\\x6b\\xbf\\x7f\\x58\\xfb\\xfd\\x33\\x0a\\xa7\\x15\\x86\\xb2\\x39\\x69\\x1b\\x7d\\x6c\\x71\\x35\\x92\\x12\\x71\\xbf\\xf4\\x73\\x3a\\x5f\\x54\\x68\\x4b\\xe8\\xd6\\x88\\xb7\\x12\\x91\\x34\\xfb\\xd9\\x54\\xb7\\x65\\xb5\\x4a\\xdb\\x24\\xad\\x1d\\xcc\\x91\\x0f\\x6e\\xac\\x71\\x63\\x2e\\xfe\\xea\\x61\\xdf\\xfe\\xea\\xb9\\x55\\x46\\x58\\x65\\xb4\\x15\\x5f\\x1b\\x32\\x1e\\xae\\x32\\xdf\\xb2\\x17\\xaa\\x22\\xb8\\xb2\\x5c\\x29\\x94\\x6e\\xad\\xb4\\x9f\\x3c\\x6c\\xf7\\x27\\xcf\\x01\\xa1\\xe2\\x97\\xb4\\xa3\\xa0\\x49\\xcb\\x3d\\x46\\x5c\\x0a\\x7f\\x4a\\x23\\x2f\\x39\\x45\\x10\\x11\\xb5\\xf8\\xee\\xae\\xb9\\x9c\\x9b\\x24\\xb9\\x00\\x22\\x17\\x0b\\xf5\\x7e\\x20\\x21\\x99\\xd9\\xab\\xbe\\x4b\\x4a\\xc9\\xee\\x6d\\x04\\x02\\x5b\\x80\\x52\\xd7\\xa3\\x3c\\x74\\x0a\\x94\\xdf\\xa8\\xd3\\x0e\\xfe\\x2b\\x7c\\xe5\\xbf\\xbc\\x6e\\xad\\xe6\\x19\\x5e\\xf6\\xd4\\x57\\x05\\xe8\\x64\\x8a\\x5c\\x9c\\xe9\\xc5\\x7d\\x3a\\xdf\\x25\\xd0\\x22\\xb7\\xc1\\xba\\xf4\\x7c\\x63\\x60\\xa9\\xd4\\x7e\\x39\\x83\\xaf\\xae\\xbb\\x7d\\xd9\\x73\\x76\\x83\\x1b\\x77\\x09\\x28\\x85\\xb3\\x8a\\xa7\\xaf\\x88\\x03\\x4e\\x58\\x5e\\x61\\xfc\\x74\\x6b\\x29\\x56\\x4d\\xec\\x55\\x36\\x91\\x56\\xf7\\xd4\\x12\\x0f\\x0b\\xe7\\xac\\xb7\\x0b\\x2c\\xd7\\x90\\x30\\x2d\\x65\\x2c\\x13\\xb5\\xe0\\x05\\xa2\\x0b\\xb6\\xc2\\xc6\\x52\\x63\\x6a\\x01\\x61\\x76\\x0d\\xca\\x0d\\xe0\\xfa\\xd7\\x0f\\xe7\\xeb\\xaf\\x9f\\x59\\x21\\xf0\\x2a\\xfb\\xdd\\x9d\\xd9\\x35\\xf6\\x38\\x22\\xe6\\xe0\\x8f\\x7f\\x04\\x01\\xc1\\xf1\\x05\\x41\\x40\\x4b\\x67\\x9c\\x85\\xff\\x97\\xa6\\x19\\x85\\xcc\\xfa\\x59\\x7a\\xcb\\x8e\\x10\\x1b\\x2f\\x41\\x15\\x5d\\x35\\xcf\\xe9\\xb0\\x80\\xe8\\x59\\xa5\\xbf\\x40\\xab\\xe1\\xbc\\x9a\\xea\\xd1\\x60\\x2b\\x30\\x6a\\x51\\x52\\x6c\\x8d\\x3c\\x8f\\x99\\x9e\\x6d\\xf4\\x3e\\x33\\xe1\\x95\\xb4\\x27\\x74\\x26\\x52\\x5d\\xba\\xba\\x8e\\xb2\\xdd\\x2d\\x4d\\xf5\\xf2\\x4b\\x19\\x68\\x64\\x21\\x26\\xe9\\x97\\xf0\\x1b\\x60\\x72\\x7f\\x38\\x38\\xfb\\x33\\xc4\\x6c\\x10\\x4d\\x77\\x84\\x52\\xa9\\xca\\x41\\xcc\\x6c\\x87\\x7f\\x40\\xb1\\x2c\\x8a\\x76\\x1a\\xbe\\xa1\\x6b\\x27\\xb6\\xd8\\x8a\\xc3\\x9e\\x08\\xde\\x65\\x27\\xea\\xcd\\x13\\x11\\x7f\\xbf\\xb5\\x44\\xa7\\x1f\\xe4\\x9e\\xb5\\x0a\\x10\\x42\\x52\\xc0\\xbf\\x7e\\xb2\\x3e\\x4b\\x50\\x8d\\xb8\\x64\\xc9\\x3d\\xb6\\x80\\x3f\\xc0\\x68\\xd6\\xa3\\x85\\x07\\x87\\x2c\\xf3\\x87\\x96\\x30\\x45\\x7c\\x25\\xf7\\x71\\x90\\x3b\\x70\\x07\\xc8\\x9d\\xe8\\x0e\\x4f\\x43\\x5c\\xa3\\x9e\\x10\\x2e\\xbc\\xc6\\xf6\\x62\\x11\\x2f\\xee\\x33\\xa8\\xd0\\xc9\\x5e\\xd7\\x01\\xef\\xa1\\x22\\xd8\\x15\\x7c\\x46\\xc4\\x31\\x03\\x06\\x18\\x5a\\xbe\\xd4\\x8b\\xdc\\x55\\xae\\xe4\\x1e\\xeb\\x16\\x9c\\x0f\\xeb\\xe1\\x5a\\xbd\\x63\\xc4\\x82\\x21\\x42\\xd5\\xc4\\x5e\\x65\\xeb\\x03\\x2b\\x5b\\x55\\xf1\\x70\\x91\\x71\\x49\\xfc\\xac\\x82\\x7a\\x41\\xee\\xc9\\x8b\\xdc\\x65\\x2d\\x03\\x04\\x7b\\xb0\\xcf\\x34\\xaf\\x51\\x9f\\xd5\\x43\\x0c\\x8a\\xdc\\x30\\x30\\xff\\xdb\\x87\\x33\\xfa\\x6f\\x6f\\xfb\\xb9\\xb3\\x35\\xd3\\x92\\xda\\x81\\x3a\\xe0\\x50\\x0b\\x81\\x79\\x1c\\x88\\xed\\x70\\x17\\xb9\\x72\\x8c\\x22\\x79\\x85\\xc4\\xcb\\xcb\\x0f\\x9f\\xc8\\x80\\xb7\\x40\\x13\\xbd\\xc1\\x67\\xa9\\x70\\x51\\x46\\xcc\\x12\\xe6\\x5b\\xb8\\xcd\\x92\\x98\\x3d\\x72\\x16\\xbc\\x77\\xd2\\x8d\\xb8\\xf7\\x46\\x52\\x3b\\xc2\\x18\\xdb\\xd1\\x87\\x12\\x5d\\xb9\\x45\\xf0\\x21\\xba\\x0e\\x68\\x03\\xb3\\xf6\\x79\\xe1\\x45\\xfd\\x23\\xf7\\x84\\xa1\\xa2\\xc7\\x5d\\x56\\x5f\\xc8\\xe3\\x2a\\xb9\\x26\\xbe\\x21\\xe2\\x06\\x8d\\xff\\xcd\\xc3\\x11\\xf9\\x9b\\x67\\x5c\\xcb\\xa3\\x49\\xf6\\xbd\\xae\\x4a\\xa3\\xd5\\x5e\\xa5\\x26\\x33\\xe1\\xa8\\xe6\\x13\\xce\\x25\\xd1\\x31\\x57\\x5e\\x22\\x0e\\x45\\x09\\xdf\\xb0\\xc5\\x7a\\xd2\\xe4\\xc8\\x16\\x61\\x13\\xce\\x83\\x5d\\x26\\x21\\x0e\\x25\\x68\\x47\\x81\\x5c\\xa0\\x38\\x45\\xe0\\x1f\\x27\\xbc\\xc1\\x1c\\x8e\\xc0\\xf0\\x06\\x5b\\xe2\\x59\\xd1\\xaf\\xd3\\x41\\xbf\\x05\\x83\\x6a\\xce\\xa1\\x76\\x23\\xb9\\xc6\\x38\\x61\\x79\\x13\\x21\\x38\\x83\\xc7\\x39\\x33\\xf7\\x4c\\xbf\\x83\\xbe\\x37\\x11\\x1b\\x41\\x63\\x39\\xeb\\x50\\x2e\\x8b\\x0c\\xf4\\x1b\\x2b\\xc6\\xc2\\x78\\x87\\x47\\x1f\\x42\\x2b\\x40\\xc2\\x32\\xa0\\x49\\x25\\xee\\x04\\xff\\xe4\\x92\\x89\\x27\\xc4\\x39\\x84\\x21\\xa2\\xc0\\xa3\\xc0\\x15\\x96\\x04\\x2c\\x37\\x12\\xd3\\x92\\x5b\\x66\\xce\\xc2\\xcf\\xa9\\x01\\xe7\\xdd\\x02\\x50\\x39\\x6a\\x26\\x8b\\xeb\\x49\\xcd\\x7c\\x91\\x49\\xf1\\xd5\\x12\\xbb\\xc9\\x15\\x21\\x9e\\x28\\x70\\xfa\\x8a\\x93\\xac\\xa5\\xb3\\xfc\\xd7\\x1c\\xae\\x81\\xb9\\x7c\\xab\\x69\\xec\\x30\\xf5\\xd0\\x80\\xd3\\xdd\\x29\\xe0\\x44\\x22\\x3c\\xd9\\x4b\\xf4\\x98\\x14\\x7a\\x47\\x59\\x8c\\x17\\x2a\\xd8\\x99\\xa3\\xa9\\xf1\\x59\\xdc\\x76\\x44\\x1f\\xa4\\x83\\xad\\x48\\x7d\\x9e\\x7a\\x63\\xe7\\x69\\xe2\\x70\\x3d\\xab\\xfa\\xb9\\xeb\\x0e\\xe8\\x8f\\xe8\\x64\\x82\\x19\\xbf\\xc6\\x0c\\xc1\\x88\\x41\\x4d\\xfa\\xa2\\x59\\xc9\\x1b\\x30\\x60\\x3e\\xa4\\xaa\\xf9\\x8c\\x18\\xde\\x69\\xe9\\x57\\xc2\\x6a\\xa5\\x1d\\xb0\\x3a\\xce\\x57\\x84\\x53\\x0f\\xe0\\x97\\xa7\\x1b\\xfa\\xe9\\xc3\\x86\\x7e\\xfa\\x9c\\x09\\x68\\x61\\xae\\x0d\\x46\\x00\\x1d\\xb4\\xac\\x01\\x08\\x46\\xe8\\x5e\\x58\\x57\\xe7\\x58\\x81\\xa6\\x10\\x73\\x80\\xad\\xf3\\xc0\\xd6\\x2b\\x4a\\x4e\\x11\\xdb\\x36\\x19\\x2e\\xbc\\x32\\x09\\x9e\\xb6\\x02\\x01\\x50\\x07\\x6d\\x10\\xf7\\x16\\x6a\\xca\\x4d\\xfb\\x40\\x23\\xf5\\x8e\\x58\\x6f\\xea\\xbf\\x13\\x24\\xde\\x7d\\x0f\\x5a\\x70\\x3b\\xdc\\xf0\\x7b\\x32\\xa1\\x12\\x98\\x52\\x16\\x34\\xbc\\xe5\\x25\\x73\\x79\\xf8\\xcd\\x97\\xdb\\x4c\\x8c\\xa4\\x69\\x8f\\x2d\\xf3\\x2a\\x5b\\xd0\\xc8\\x2d\\x2c\\x5a\\x0d\\x34\\x6d\\x72\\xa0\\x50\\x51\\xda\\x8e\\x67\\x9f\\x6e\\xf1\\xdf\\x3d\\x6c\\xf1\\xdf\\x3d\\xa3\\xec\\x2c\\x26\\x30\\xb6\\xa1\\x57\\xac\\xc8\\x3d\\x36\\xf0\\xc7\\x8e\\xa0\\xfa\\x6a\\x26\\xbd\\x6f\\x85\\xe5\\xfa\\x99\\xd9\\x37\\x3e\\x42\\xb4\\x39\\x65\\x93\\x8c\\x66\\x69\\x1b\\x7c\\x3c\\xa0\\x1e\\x25\\xde\\x8e\\x3a\\x9f\\xee\\xd9\\xbf\\x7f\\xd8\\xb3\\x7f\\xff\\x0c\\x43\\xd7\\x36\\x44\\x37\\xa0\\x83\\xd5\\x33\\x92\\xad\\xb8\\x68\\x48\\x31\\x5e\\x96\\x42\\xc1\\xc3\\x36\\x2f\\x7e\\x26\\x7d\\x13\\x2f\\xe9\\x53\\x3a\\x42\\xc9\\xea\\x19\\xbd\\x8e\\x96\\x8f\\xed\\xa8\\xed\\xe9\\x3e\\xfd\\x87\\x87\\x7d\\xfa\\x0f\\xcf\\xf4\\x29\\x5b\\xa4\\x6d\\x83\\xae\\x1e\\xf4\\xcc\\xba\\x15\\xa4\\xb2\\xae\\xf0\\xab\\xef\\x67\\x4d\\xdb\\x34\\xb5\\x58\\xec\\x26\\xf2\\x3b\\xf3\\xb5\\xde\\x7d\\xba\\x07\\x2f\\x1e\\xf6\\xe0\\xc5\\x33\\xa8\\x8e\\x0e\\xb9\\xc7\\xd6\\xae\\x73\\xa1\\x60\\x18\\x21\\xb1\\x08\\x07\\x7d\\xd2\\xc1\\xd8\\x06\\x95\\x03\\x71\\x8e\\xed\\x78\\xeb\\xe9\\xb6\\xff\\x87\\x87\\x6d\\xff\\xec\\xc3\\xcb\\x57\\x7f\\xfb\\xfa\\xdb\\x67\\x63\\xbd\\x72\\x71\\x77\\x3b\\x7b\\xc4\\xe5\\x44\\xdc\\xcf\\xa9\\x71\\x39\\x89\\xd8\\x59\\x7b\\xbf\\x90\\x8f\\xf5\\x4b\\x3d\\xf3\\x74\\xa3\\xff\\xe3\\xa3\\x46\\x5f\\xbe\\xfa\\xdb\\xe7\\x23\\x18\\xf8\\xd8\\xc4\\xcf\\xd6\\xfb\\x46\\x5d\\x6d\\xc5\\x33\\xd4\\x6c\\x5c\\x6f\\x3d\\xdd\\xd2\\xff\\xf4\\xe4\\xe7\\x3d\\x1f\\x95\\x05\\xa7\\xe6\\xf5\\x11\\xf9\\xdb\\xcf\\xc2\\x87\\x5a\\x10\\x3e\\xeb\\xd3\\x87\\x3e\\xdd\\xea\\xff\\xfc\\x38\\xa6\\xe9\\xd5\\x9b\\x37\\xaf\\xde\\x7c\\x78\\xf5\\xdd\\xed\\xbc\\x16\\x2a\\xf0\\x64\\x39\\x17\\x99\\x9b\\x1c\\x4c\\x25\\x44\\x36\\xea\\x46\\xb8\\x93\\x9c\\x5b\\x71\\x7b\\xa2\\xa2\\x27\\x60\\x38\\xb6\\xcd\\xe1\\xd6\\xa1\\xb4\\x1d\\x15\\x3c\\xdd\\xa1\\xff\\xe5\\x61\\x87\\xbe\\x7b\\xf7\\xe5\\xeb\\x0f\\x1f\\x5f\\xbd\\xff\\xf0\\x8c\\x8f\\x6e\\x77\\xc4\\x77\\xc6\\x99\\x14\\x1a\\xc5\\xee\\xfd\\x52\\x7f\\x3f\\xdd\\xc0\\xff\\xfa\\xd8\\xca\\xfe\\xf2\\x19\\xff\\xdf\\x1c\\xd0\\x84\\x8e\\xb3\\x87\\x41\\xab\\x40\\x1a\\x79\\x0e\\x8a\\xed\\x7a\\xe7\\xe9\\x46\\x5e\\x3e\\x1a\\xd6\\x67\\xb4\\x33\\xd1\\x3a\\x3c\\xe8\\xb8\\xc3\\x6a\\xa0\\x3e\\x03\\x5e\\x23\\xb4\\xd7\\x3a\\x0d\\x6f\\x48\\x17\\xa2\\xcb\\xca\\xe5\\x2b\\xf0\\x89\\xe0\\x57\\xb4\\xb6\\x10\\x3a\\x64\\x57\\xa5\\xa6\\x93\\x99\\x5a\\xd0\\x24\\xc4\\x9f\\xc8\\x92\\x60\\xbb\\x14\\x52\\x5c\\x61\\x1d\\x5a\\xa2\\x50\\x20\\x00\\xdb\\x9d\\xce\\x11\\x79\\x09\\x36\\xf8\\xc9\\x81\\x63\\x71\\xc0\\x64\\x6d\\x09\\xf3\\x05\\x9c\\x14\\x11\\xa4\\x6b\\x87\\xff\\x08\\x95\\xa4\\x54\\xb0\\x75\\xec\\x24\\xe3\\x0e\\xc6\\x71\\x1f\\x2d\\x4b\\x14\\x5e\\x79\\x3d\\xfa\\x54\\xd8\\x26\\x43\\xa7\\x41\\xdf\\xdf\\x79\\x5f\\x91\\xa7\\xbd\\x10\\x4a\\xc0\\x40\\xbe\\x1c\\x0b\\x7b\\xa1\\xd9\\x5e\\xb8\\x7f\\xc5\\xe3\\x7a\\x0b\\x96\\x15\\x66\\x8e\\xe0\\x97\\xda\\x33\\xbb\\xc3\\x94\\x3f\\xa1\\xae\\xa2\\x28\\x56\\x42\\xf1\\xe2\\xde\\x8a\\xba\\x86\\x2d\\x27\\x80\\x61\\xcd\\xa5\\x37\\xee\\x2b\\x39\\x03\\x0b\\xcd\\x80\\xeb\\x60\\xc0\\xdf\\x4e\\xfa\\xb8\\xe8\\xb0\\xb3\\x8b\\xef\\x16\\xb5\\x19\\x1a\\xac\\x77\\x9a\\x82\\x40\\x30\\xd5\\x84\\xfa\\x54\\x4a\\x8c\\x1f\\x52\\xc2\\xd5\\x5e\\x57\\xe4\\x02\\x11\\x6e\\x2c\\x3c\\x8f\\xf6\\x9e\\xf6\\x66\\xfd\\xd9\\xa3\\x95\\xfb\\x5c\\x78\\x98\\xd7\\x16\\xb0\\xa3\\x50\\x1b\\x39\\xf5\\xd1\\x01\\x7a\\xa8\\xd7\\xea\\x10\\x9d\\x19\\xd9\\x98\\x10\\xb0\\x0f\\xd5\\xf0\\x72\\x17\\xad\\xb7\\x1a\\xd9\\xd4\\xe5\\x1a\\xb5\\xc9\\xa8\\xad\\x16\\xba\\x73\\x64\\x50\\x61\\xbb\\x8c\\xd4\\x5d\\xa1\\xd1\\xd1\\x0e\\xc7\\x6d\\x78\\xb7\\xf9\\xe0\\x35\\x07\\xd0\\xea\\xd5\\x1c\\x24\\xe6\\xc0\\x69\\x35\\x39\\x34\\x56\\x80\\x51\\x80\\x5c\\xaa\\x7f\\x46\\x88\\x58\\xbb\\x2f\\x29\\xc4\\x8c\\xf6\\x94\\xbc\\x73\\x8a\\x56\\x78\\xdc\\xc3\\xe1\\x4e\\x17\\xc8\\x3e\\x13\\x2d\\xad\\x4f\\xe7\\xaa\\xd4\\x77\\x83\\x9b\\x6b\\x21\\x96\\xd1\\x12\\xb2\\x96\\xb5\\x30\\xbf\\xd4\\x78\\x6a\\x61\\xbd\\x1a\\x4f\\xa4\\xbb\\x08\\xe8\\x95\\x19\\x16\\xfb\\x22\\x7c\\x6b\\xc1\\xd9\\x98\\xc7\\x8c\\x1a\\x77\\x38\\x80\\x64\\xd3\\x12\\xbd\\x05\\x7b\\xe6\\xc5\\xec\\x06\\x64\\x79\\xf5\\xc8\\x73\\xee\\x99\\x2d\\xb1\\x23\\xbe\\xdb\\x0b\\x5b\\xc1\\xfe\\x9a\\x70\\x30\\x0c\\x97\\xc6\\x9a\\x33\\xbb\\x37\\xe9\\x34\\xb3\\xd6\\x52\\x14\\x17\\x29\\xc8\\xdc\\xf3\\x80\\xcc\\x08\\x39\\x27\\x9d\\x43\\xb3\\x8d\\x0e\\x85\\xcc\\x98\\x25\\x47\\xc1\\x92\\x86\\x49\\xa2\\xa6\\x5d\\x6b\\xee\\x18\\xc9\\x73\\x72\\x96\\x78\\x26\\x44\\xf0\\xca\\x37\\xb6\\x8b\\x99\\xed\\x55\\x5e\\xf6\\xea\\x12\\xd4\\x12\\x19\\x1d\\x86\\x32\\x7c\\x60\\xe1\\x29\\xe6\\x2c\\xc7\\x84\\x1d\\x85\\xbb\\xe5\\xfc\\x16\\x8c\\x8c\\x05\\xa3\\xb0\\x77\\xb7\\xde\\x72\\xe9\\xf1\\xb9\\x79\\xf2\\x39\\xb9\\xc3\\x29\\x22\\x6a\\x2a\\x7a\\xb6\\xb0\\x9c\\xe1\\xcb\\xf7\\x2b\\x6a\\xce\\x7d\\xd9\\x1b\\x33\\x02\\x26\\xb4\\xa2\\x01\\x83\\xef\\x58\\x87\\x93\\x43\\x44\\x2d\\x01\\x47\\xfa\\x12\\xa9\\xe5\\x61\\x76\\x31\\x2c\\x03\\x6b\\xea\\xdc\\xb4\\x5b\\x7d\\xdc\\x54\\xed\\x18\\xa4\\x12\\xa9\\x6b\\xba\\x8e\\x41\\x7d\\x7a\\x6a\\xbe\\x7c\\x94\\x88\\xe6\\x99\\x65\\x51\\x42\\xd1\\xd8\\xeb\\x0a\\xb7\\x5c\\xed\\xf0\\xdb\\xe4\\xc2\\x42\\x3a\\xa6\\x18\\x28\\xb6\\x24\\x89\\x38\\x18\\x0a\\x2f\\xaa\\x6e\\x8e\\xb9\\x89\\xa5\\x9f\\x42\\xe4\\x58\\x2d\\x07\\xea\\x09\\xe5\\x27\\x8f\\x2d\\x09\\x0e\\x1b\\x7b\\xb8\\x36\\xeb\\x88\\x23\\x25\\x9b\\x26\\x2b\\xaa\\x11\\xce\\x6c\\x50\\x7b\\x60\\xd1\\xc1\\xae\\x29\\xbe\\x7c\\xf2\\x21\\xed\\x71\\x33\\xce\\x8b\\xe9\\x78\\x71\\x2f\\xa3\\xd7\\x1f\\x7b\\x5d\\x0b\\x73\\x6b\\xa7\\x3b\\xed\\x0c\\x1f\\x23\\x81\\x47\\x8e\\x83\\xf5\\x40\\x83\\x06\\x4b\\x47\\x2e\\x1c\\x5e\\xe2\\x8d\\xc4\\xa1\\x41\\xe3\\x4b\\x78\\xdf\\x23\\xa4\\x55\\xcf\\x82\\xbd\\xa5\\x1a\\xb0\\xfb\\x5a\\x42\\x03\\x4b\\xc8\\xea\\x6f\\x23\\x8c\\x77\\x24\\x4d\\x45\\xac\\x7f\\xc0\\xd4\\x62\\x3a\\x2e\\x76\\x2b\\x0f\\xd2\\xeb\\x47\\xce\\x6b\\xb7\\x97\\x83\\x2f\\xd5\\xa7\\x29\\x2d\\x09\\x44\\x06\\x46\\xc0\\xb5\\x91\\xf0\\xa4\\x92\\xd5\\xc6\\x12\\xf3\\xac\\xcb\\xc5\\x54\\xd6\\xf4\\x14\\x3b\\x36\\x82\\x67\\x30\\x7b\\xb1\\x0f\\x5f\\x16\\xd8\\x62\\x28\\x2e\\x07\\xbf\\x0f\\x3b\\xa6\\x27\\xf5\\x48\\x4b\\x30\\x46\\xb6\\x61\\xb6\\x6c\\xc0\\x91\\x25\\x9e\\x16\\x1a\\xf6\\x71\\x51\\xa3\\xb3\\xd4\\x56\\x53\\x22\\xd3\\xf0\\x86\\x28\\xc4\\xfa\\xf4\\x2c\\xc9\\x89\\x11\\x66\\xc2\\xc5\\x10\\x53\\x56\\x34\\x22\\xeb\\xdd\\x8a\\x46\\x84\\x82\\x12\\x91\\x10\\x2c\\x3a\\x07\\x2d\\x99\\x69\\x94\\x14\\xca\\x51\\xc2\\x58\\x6d\\x21\\x51\\x6b\\xb8\\x83\\xa4\\x0e\\x3f\\x00\\x9b\\xa3\\xb6\\x4a\\x9e\\x35\\x01\\x27\\x99\\xc7\\x48\\xbc\\xb8\\x77\\x91\\xb5\\x40\\xd2\\xd7\\x02\\xd1\\xc0\\xc2\\xd1\\x18\\x2d\\x49\\xa6\\xf2\\x68\\x21\\x63\\xca\\x18\\xcd\\x55\\xce\\x69\\x76\\x71\\x37\\x98\\x51\\xa3\\x0f\\x68\\x6d\\x42\\x73\\x16\\xc8\\x4d\\x3a\\xb2\\x5d\\x78\\x9f\\x47\\xbd\\x4f\\x4f\\xd8\\xcf\\x1f\\x05\\x23\\xdd\\x46\\x5d\\xd4\\x5b\\xbf\\x64\\xc4\\x99\\xd8\\x11\\xee\\x74\\x56\\xea\\x97\\x02\\x54\\xc0\\x00\\xb0\\x8a\\xc3\\x26\\x27\\xd2\\xa7\\x41\\xa6\\xf0\\xc4\\x3e\\x42\\x66\\x0c\\x87\\x6a\\xb2\\xa4\\x7d\\x60\\x27\\x49\\x6a\\xc3\\xb9\\x91\\xc5\\x58\\x9a\\x52\\x32\\x84\\x23\\x15\\xf4\\x30\\x07\\x72\\x58\\x2f\\x1e\\xe8\\x5c\\x44\\x57\\xa8\\x0b\\x09\\x9c\\xa2\\x10\\x56\\x07\\xe7\\xb6\\x68\\x24\\xa6\\x80\\x30\\x55\\x40\\x00\\x0a\\xf1\\x18\\xd3\\xa1\\x8d\\x55\\x5a\\x9d\\xa5\\x1e\\x03\\xdd\\xf7\\x1c\\x25\\x8e\\xd3\\x8d\\xfc\\x11\\x5f\\x3d\\x82\\x67\\xcf\\x59\\x59\\x0f\\xae\\x21\\x07\\xd7\\x90\\xc5\\x35\\x84\\x16\\xd7\\x58\\xf2\\xf7\\xb1\\x77\\xd3\\xd5\\x14\\x0f\\x18\\xb2\\xfc\\xf4\\x6a\\x7b\\xa1\\x36\\x62\\x6c\\x08\\xa7\\x59\\xbd\\x1c\\x76\\x11\\xdb\\x41\\xa7\\xa7\\x58\\x9e\\x29\\xed\\x44\\x4e\\x73\\x98\\xb4\\x93\\x74\\x47\\xb8\\xc1\\x49\\x86\\x41\\x17\\x73\\x52\\xf6\\xdd\\x44\\x50\\x68\\x1a\\xd1\\x4e\\x4a\\x8e\\x64\\x3e\\xc8\\xd5\\xc0\\xce\\xed\\x24\\xb5\\xa2\\xa2\\x44\\x7d\\xd3\\x4d\\xba\\xdc\\x9d\\xd2\\x76\\x31\\x6f\\x27\\x52\\x6b\\xca\\xd2\\x4e\\x14\\x3e\\xcd\\xa1\\x0d\\xc8\\xdd\\x13\\xec\\xa9\\xf8\\x78\\xaf\\x67\\x7c\\x25\\xa1\\xe1\\xcb\\xd0\\xbd\\xd8\\x7a\\x71\\x05\\xf8\\x1b\\x4e\\xb3\\x65\\x41\\x56\\x5d\\x30\\xa1\\x3e\\xba\\x96\\x71\\x61\\x6e\\x30\\x32\\x3d\\x18\\x99\\xfc\\x2e\\x23\\xe3\\x83\\x91\\xf1\\xc1\\xc8\\x8a\\xb9\\x33\\x22\\x82\\xc0\\xc8\\x68\\xd9\\xf6\\x16\\x73\\x77\\xa0\\x37\\x30\\x32\\xed\\xcb\\x5f\\xbc\\xfa\\x02\\xcd\\x5f\\x47\\x9c\\x54\\x16\\xe6\\x54\\x02\\x70\\xfc\\x84\\x05\\x5c\\x16\\x23\\x2b\\x54\\x0b\\x46\\x36\\xee\\x16\\x23\\xf3\\x83\\x91\\xf1\\xf3\\x8c\\xec\\x17\\x8f\\xe2\\xee\\x9f\\x59\\x17\\xa3\\x0d\\x91\\x03\\xfa\\xc0\\x5b\\xb1\\x2f\\xa7\\x0a\\x04\\x57\\xd7\\xbc\\x2f\\x7f\\x6a\\x04\\xf0\\x20\\xcb\\x57\\xac\\x5c\\x41\\x63\\x00\\xfa\\x2c\\xc7\\x71\\xa8\\xd5\\xdd\\xac\\xb6\\x0d\\xe1\\x8b\\x5b\\xec\\x29\\x8b\\x52\\x92\\x6a\\x22\\x0a\\x4b\\x3a\\x62\\xc0\\x82\\xa8\\xa5\\x0b\\x76\\x7f\\x7c\\xab\\xd9\\xc1\\xb4\\x75\\x7d\\x2b\\x8d\\x62\\xda\\x30\\x68\\x5c\\x33\\xdc\\xd1\\xb8\\x0c\\xb9\\xe1\\x57\\xf0\\xe6\\xe1\\xa7\\xbe\\xb9\\x2d\\x5a\\x82\\x6c\\x6b\\xbb\\xef\\x7a\\x58\\x8e\\x47\\x21\\x62\\x26\\x5b\\xfe\\x1f\\x2c\\x97\\x34\\xc3\\xdf\\xf5\\xdc\\x8b\\x7b\\x2b\\x54\\x21\\x36\\xf6\\x55\\x18\\xd4\\x0c\\xa1\\xe7\\x94\\xd3\\x20\\x1a\\xbb\\x21\\x3a\\x87\\x74\\xf8\\x5c\\x4e\\x7d\\x3d\\x96\\xe3\\x96\\xf5\\x68\\x01\\xce\\x89\\xa0\\x2f\\x5d\\xf5\\xa0\\xc0\\x05\\x00\\x13\\xa1\\x11\\xb2\\xde\\x82\\x0a\\x9d\\xa1\\x90\\xa7\\x66\\x23\\x97\\x87\\x00\\x9a\\x60\\xe3\\x69\\x64\\x77\\x60\\x09\\xd7\\xfe\\x3c\\x3d\\x10\\xff\\xf1\\xe1\\x40\\xfc\\xc7\\xdb\\xb1\\x2f\\xc5\\x6b\\x30\\x10\\x4e\\x97\\x13\\x1b\\xfc\\xe2\\x4f\\x54\\x7c\\x16\\x1e\\x15\\xd4\\x67\\x11\\xeb\\x49\\x24\\x97\\x9f\\xa1\\x22\\xf1\\x4e\\xad\\x56\\x89\\xbd\\xe0\\x44\\x15\\x60\\xac\\x3e\\xa9\\x28\\x2c\\x20\\x27\\xe5\\xbe\\xb1\\x20\\x21\\x89\\x22\\x7b\\xd8\\x89\\x46\\x34\\x46\\x96\\xc4\\x31\\xa6\\x10\\x00\\xb9\\x00\\x8d\\x9c\\x4a\\xd6\\x90\\xc4\\x72\\xf5\\x5d\\x79\\x15\\x9a\\x3a\\x34\\xa7\\x31\\x0d\\x96\\x17\\x8f\\x69\\x5e\\xf2\\x3f\\x31\\x24\\xaa\\x13\\x1b\\xe6\\x47\\x7a\\x5c\\xe7\\xc7\\xe9\\x6e\\xcd\\x0f\\xc2\\xfe\\x6b\\x7e\\xc0\\xc9\\x28\\x57\\xde\\xb3\\x9a\\x1f\\x38\\xe3\\xd4\\xfc\\x04\\xf7\\x63\\x7e\\xc0\\xd3\\x7b\\xac\\x18\\xc1\\xe5\\x52\\x4a\\xc7\\xfc\\x60\\x5a\\x10\\xef\\x92\\x6b\\x7e\\xf0\\xd6\\x32\\x71\\xe8\\x9a\\x1f\\x64\\x0f\\xaa\\xf9\\x59\\x36\\xc4\\x9a\\x1f\\x38\\x57\\xd7\\xfc\\x38\\x3d\\x33\\x3f\\x7f\\xfb\\x70\\x7e\\x9e\\x4b\\x7c\\x02\\x8b\\xfe\\x06\\x6b\\x8b\\x74\\xac\\x04\\xbd\\x4a\\x2a\\xb5\\xb8\\x72\\x2b\\xb4\\x84\\x14\\x50\\xfd\\xa0\\x69\\x22\\x19\\x5b\\x08\\x35\\x87\\xa3\\xc7\\xf0\\xd6\\x6b\\x87\\xdd\\x8e\\xba\\x9e\\xee\\xd1\\xdb\\x47\\x31\\x03\\xcf\\xb8\\x5f\\x8c\\xb6\\xd2\\x48\\x5e\\x97\\xce\\x61\\x8f\\x1f\\xe3\\xd3\\xd2\\x21\\xe9\\x03\\x3f\\xd4\\x83\\x4f\\xb7\\xf7\\xf5\\xc3\\xf6\\x6e\\xeb\\x48\\x04\\x61\\xe2\\xc9\\x9b\\x30\\xb7\\x61\\xb4\\x0b\\xf2\\xce\\x41\\x46\\x38\\xc4\\x2f\\xd3\\x7e\\x6c\\x4b\\x30\\x1e\\x60\\x5b\\x5a\\x51\\x1e\\x01\\xd4\\xa4\\x84\\x80\\x3a\\x48\\x71\\x83\\x8e\\x2d\\x0c\\xe9\\x21\\x96\\xaf\\x39\\x04\\x86\\xd4\\x59\\x0c\\x6d\\xf9\\x02\\x43\\xaf\\x3f\\x18\\x3e\\x95\\x25\\xa2\\x31\\x14\\x6f\\x74\\x89\\x90\\x3d\\x07\\xb5\\x2c\\x06\\x95\\xd6\\x92\\x75\\x66\\x49\\x07\\x66\\x80\\x4f\\x19\\x34\\x93\\x16\\xe3\\x8e\\x94\\xbb\\x62\\x66\\x25\\x16\\x15\\x93\\x0b\\xe1\\x96\\xec\\xb5\\x63\\x67\\x5c\\x22\\x14\\x6e\\x83\\x35\\x6b\\x5a\\x9c\\x93\\x6d\\xaa\\x23\\xd3\\x18\\xb0\\x6a\\x22\\xae\\xb0\\xa3\\x26\\x81\\x5d\\xa4\\xc0\\x1c\\x42\\xe3\\xa6\\x70\\xb6\\xa4\\x22\\x86\\x23\\x5c\\xfb\\x2c\\x74\\x43\\xcf\\xf9\\xee\\x51\\x1c\\xdc\\xed\\x61\\x86\\xcf\\x75\\xf2\\x56\\x8d\\x0e\\xe1\\x5d\\x11\\x41\\x5d\\xbb\\x9d\\xd1\\xb1\\x0b\\x5c\\x41\\x29\\x54\\xef\\x6b\\x17\\x58\\x5e\\xfa\\x6b\\x17\\xa8\\x7f\\x96\\xdd\\x2c\\x3d\\x96\\x5f\\xaa\\xbb\\x2f\\xe9\\xe1\\xe2\\xce\\x7b\\x16\\xec\\x2b\\x9c\\x5e\\x78\\x1d\\x2a\\x85\\x62\\x33\\xb2\\x2c\\x30\\xee\\xbf\\xdd\\xf2\\x8c\\x8e\\x6d\\x60\\x6d\\x85\\xca\\xbd\\x60\\xf2\\x75\\x1b\\xc0\\x07\\x8f\\x1b\\x5b\\xc0\\xfb\\x47\\x19\\x33\\x9e\\xd1\\x75\\xe1\\xd3\\xf6\\xba\\xfa\\x8a\\xe4\\x5c\\x58\\x5c\\x1c\\x49\\x2a\\x57\\xfe\\xc1\\x02\\x9d\\x74\\x15\\x23\\x8f\\xef\\x07\\x6b\\xc4\\xad\\x31\\x56\\x42\\x4b\\xe8\\x1e\\x22\\xfa\\x32\\x6f\\x1d\\x62\\xff\\x8e\\x3f\\xa0\\xe9\\x82\\x6a\\x82\\xe8\\x70\\xe0\\x74\\x80\\xa5\\x02\\xe2\\x74\\x15\\x7a\\x65\\xb9\\x8f\\x96\\x20\\xdd\\x27\\xd2\\xc9\\x15\\xe4\\x00\\x63\\xed\\x13\\x3d\\x3d\\x24\\xf7\\x7b\\x49\\xba\\xab\\xca\\x91\\xa3\\xd2\\x19\\xa9\\x09\\xb5\\xcb\\xca\\x4e\\x80\\x7d\\x21\\x1a\\x73\\xa2\\x6e\\x08\\xe9\\xf0\\x12\\x2b\\x79\\xb6\\xe3\\xf7\\x82\\x5c\\x25\\x8e\\x20\\x27\\x5f\\xe7\\x99\\x6a\\xd7\\xca\\xe1\\x64\\x0e\\xf5\\x84\\xf0\\xa1\\x9e\\x60\\x58\\xf1\\xe3\\x80\\x1e\\x30\\x0c\\x40\\xee\\xa5\\x05\\xeb\\x8b\\x71\\xd6\\x36\\x2d\\x86\\xe7\\x90\\x26\\x31\\x1c\\x1e\\x1c\\x57\\xdd\\xc7\\x93\\x93\\xf4\\xcd\\xa3\\x6c\\x3d\\xcf\\xa9\\x79\\xea\\xdb\\x69\\x47\\x61\\xe5\\x97\\x49\\x60\\xa6\\xab\\x41\\x37\\x67\\x06\\xb7\\x62\\xc1\\x03\\xe2\\x17\\xf2\\x5a\\x2e\\x35\\x4f\\xd1\\xef\\x2c\\x48\\x38\\xf4\\x52\\x50\\xf2\\x4c\\x7a\\x2c\\x17\\xed\\x45\\xe7\\xdc\\x46\\xf8\\x91\\x23\\x4e\\x7c\\xe9\\x85\\xba\\x5f\\xd1\\x36\\x14\\x3d\\x57\\xe1\\x0b\\xc9\\xe1\\x96\\xdb\\x8b\\x16\\x13\\x2a\\xb4\\x63\\x2d\\x60\\x1c\\xc4\\x12\\xe1\\x8b\\x09\\xbd\\xb8\\x4f\\x29\\x89\\x9f\\xf7\\x14\\xbb\\x2b\\xd0\\x97\\x5c\\x88\\x7a\\xcc\\xc8\\xda\\xe7\\x19\\xf1\\x94\\x6b\\x24\\x0f\\xc0\\x03\\x9e\\xe1\\x4d\\x87\\x1f\\x94\\x5e\\xe2\\x58\\x5c\\x84\\x0c\\x40\\xb4\\x84\\x48\\x85\\x22\\x4e\\xe1\\x8e\\x88\\xd8\\x5d\\xcc\\xa8\\xb4\\xa8\\xbf\\x79\\x20\\xe1\\x59\\x81\\xcd\\x6a\\x4b\\xbb\\x22\\xdb\\xa3\\x09\\x5d\\xcc\\x6e\\x68\\x13\\xfe\\xee\\x51\\x48\\xd2\\xf3\\x72\\x81\\xf5\\x43\\x2e\\x10\\xe4\\x8a\\x8c\\x30\\x6c\\xf2\\x0f\\xb5\\x09\\x9f\\x18\\xb0\\x1c\\x23\\xb6\\x92\\xe7\\x79\\x22\\x1b\\xc6\\x08\\xde\\x12\\x4e\\xe7\\x90\\x0b\\x92\\xd6\\x74\\x64\\xe7\\xcb\\x60\\xe4\\x1c\\x90\\x84\\x6b\\xc5\\x98\\x26\\xf9\\x48\\x9d\\x10\\x4b\\x9d\\xa0\\x07\\x0a\\xe7\\xb5\\x24\\x80\\xc2\\xc7\\xc5\\xac\\x17\\x0a\\xa7\\xfa\\x63\\xaf\\xeb\\x52\\xb1\\xc8\\x1d\\x96\\x04\\x74\\x0f\\x7d\\x5a\\x5f\\x1a\\xb1\\x4f\\x69\\x1b\\x92\\xd7\\x00\\x72\\x42\\x23\\x09\\xef\\xb9\\x65\\x7f\\xdf\\x23\\x8a\\xa9\\x33\\xc2\\x67\\x52\\xc7\\x74\\xa2\\x83\\xe4\\xf9\\x50\\xf5\\x10\\x32\\x9c\\x69\\x89\\x48\\xc9\\x53\\xbb\\x62\\x82\\xd1\\x07\\xeb\\x17\\xe3\\x1b\\x3b\\xfe\\x87\\x87\\x83\\xfe\\x4c\\x16\\x0f\\xca\\x63\\x83\\xca\\x4f\\x1b\\x94\\xd4\\x16\\x38\\xb4\\xd8\\x0b\\x14\\xc2\\xb6\\x41\\x14\\x0f\\xc4\\xb5\\x17\\x76\\xae\\xed\\xce\\x6b\\x53\\x88\\x99\\x56\\x72\\x84\\x22\\xec\\xaa\\x30\\x66\\xed\\x89\\x11\\x03\\xf8\\xc9\\xad\\x36\\x0d\\xce\\x05\\x9a\\xce\\xa6\\x8e\\xcc\\x69\\xa3\\x1b\\x22\\x7f\\xc7\\x08\\x50\\x15\\x75\\x1d\\xf3\\xda\\x8f\\xa7\\x3f\\xe7\\xe3\\xa3\\x80\\xce\\xdb\\x5a\\x79\\x19\\x8d\\x47\\x20\\x13\\x71\\xed\\xe0\\xc9\\xd9\\x44\\x09\\x71\\x2e\\x52\\x3c\\xa6\\x67\\x6d\\xe4\\x48\\xed\\xa7\\x62\\xbb\\xc2\\x0c\\xbe\\xf8\\xa6\\x26\\x4f\\x0e\\x5f\\x19\\x80\\x73\\xc5\\xbf\\x91\\x05\\xb2\\x72\\xd6\\x15\\xd1\\x10\\x39\\x90\\x4b\\x98\\x93\\xd6\\x06\\xa4\\x70\\xe8\\x0d\\x9b\\xce\\x74\\xe5\\xdb\\x7a\\x2c\\x63\\xa8\\xca\\xc3\\x97\\xc3\\x4f\\xef\\xb2\\x92\\x50\\x24\\xfc\\xe8\\xbb\\xb5\\x30\\x39\\x27\\xc7\\x9e\\x1c\\x77\\x25\\x9a\\x41\\x4c\\xb1\\x44\\x4d\\xa3\\xd3\\x5e\\x58\\x74\\x74\\x6a\\x5a\\x44\\xe2\\xbe\\xd4\\xb2\\xd9\\xf7\\x43\\x3d\\x8b\\x34\\x62\\xc8\\xdb\\x11\\xbd\\x79\\xf1\\x62\\xed\\xb5\\xb5\\xc0\\x5c\\xef\\x6a\\x7b\\xc9\\xa0\\x08\\xa7\\x45\\x20\\xa1\\xce\\x81\\x58\\x91\\xbe\\x32\\xe3\\x28\\x5c\\x53\\xfa\\x28\\x29\\x73\\x47\\x01\\xfb\\x40\\x8f\\x95\\xbb\\x75\\x44\\xb4\\xe0\\xb5\\xc8\\xb1\\x51\\xae\\x64\\x5a\\xfd\\xd0\\x96\\xd6\\x86\\x8c\\xd4\\x07\\x45\\x25\\x48\\x15\\x4d\\x93\\x0a\\x33\\xaa\\x9c\\x91\\x3b\\x73\\xf4\\xda\\x1e\\x30\\xac\\xec\\x09\\xa8\\xc1\\x88\\x1d\\xee\\x0d\\x29\\x9e\\x39\\xef\\x28\\xc6\\x0e\\x37\\xa1\\x18\\x88\\xa8\\x63\\xe2\\x79\\x4c\\xdf\\xd3\\x44\\xf0\\xed\\xa3\\x9c\\x46\\xb7\\x55\\x64\\x86\\xc0\\x85\\xb8\\xea\\x2f\\xcc\\x96\\xfe\\xc2\\xe8\\xa2\\xc4\\x70\\x6b\\x15\\x78\\xd3\\xeb\\x0a\\xb8\\xef\\xd2\\x18\\xb1\\x8c\\x2b\\x3b\\x41\\xc2\\xe3\\x39\\xf6\\x44\\x42\\xd1\\x68\\x03\\x1e\\xcf\\x1d\\xae\\x00\\x2b\\xc7\\x03\\x8f\\xc6\\x0c\\xa7\\x1d\\x68\\x08\\x0f\\xff\\x01\\x44\\xc3\\x4b\\xe3\\x71\\x2c\\xa1\\x98\\xc3\\x4a\\x4e\\x41\\x72\\xa1\\x13\\xf9\\x0c\\x5f\\xf1\\x1b\\x1e\\x2b\\x7e\\xa3\\x60\\x3c\\x23\\xe5\\x73\\xd8\\xd4\\xbe\\xe2\\xfc\\x24\\x8a\\x3f\\xd9\\x43\\x85\\x91\\x44\\xa1\\x5c\\xc5\\x37\\x3c\\x3d\\x38\\xdf\\x3d\\xb2\\xbe\\x3d\\xb3\\x42\\xa8\\x91\\x15\\xeb\\xf1\\x16\\x2b\\x15\\x06\\xdb\\x34\\x44\\x89\\xd3\\xae\\x6a\\x0b\\x1b\\x84\\x35\\x9b\\x0c\\x01\\x19\\x1a\\x10\\xf8\\x0c\\xc3\\xe6\\xc2\\xc7\\xa6\\xc6\\x79\\x51\\xed\\x90\\xa1\\x24\\x90\\x0e\\xb6\\x09\\x8f\\x59\\x40\\x0e\\x31\\xc5\\xbc\\x46\\x73\\x69\\x55\\x6d\\xaf\\x6d\\x0e\\x06\\x03\\x45\\xb6\\xe0\\xa5\\xae\\x2f\\xf0\\x7e\\x68\\x6f\\x0a\\x6f\\xa5\\xc6\\x76\\xf4\\xef\\xe9\\xaf\\xfc\\xe5\\xc3\\xaf\\xfc\\xe5\\x6d\\x12\\x80\\xce\\x96\\x36\\xe0\\x12\\x95\\x0d\\x21\\xf5\\x94\\x5b\\xa1\\xe7\\x43\\x6a\\xb1\\xd8\\x42\\xfd\\xb0\\xa7\\xc7\\xa1\\x46\\x12\\xe7\\xed\\x78\\xf7\\xe9\\x1e\\xfc\\xea\\x61\\x0f\\x7e\\xf5\\xcc\\x38\\x4b\\x13\\x19\\xdb\\xe0\\x4f\\x2d\\x26\\x6f\\x23\\xb3\\xf5\\x73\\xa8\\x6e\\x0e\\x25\\x78\\x6e\\x0a\\x9b\\x3e\\x33\\x6d\\xd7\\x07\\x39\\x09\\x89\\xed\\x45\\x7c\\xb9\\x3d\\xd4\\x8f\\x3e\\x6a\\x68\\x50\\xe5\\xd3\\x1d\\xfb\\xf5\\xc3\\x8e\\xdd\\x4e\\xc3\\xe3\\xe2\\xad\\x3a\\x00\\xcf\\xe2\\xd5\\xb1\\x90\\x2d\\xa9\\x17\\xe3\\xdb\\x90\\x61\\xb8\\x9f\\x33\\x7d\\xf3\\x9a\\x51\\xd3\\xad\\x16\\x73\\xc9\\x23\\xe8\\x2a\\x9e\\x59\\x12\\xcc\\x02\\x36\\x47\\x75\\x4f\\x77\\xea\\x37\\x0f\\x3b\\xf5\\x9b\\x67\\xe6\\x8b\\x8b\\x0f\\x6f\\x8e\\x54\\x88\\xb9\\x0d\\xbe\\xea\\xf5\\x98\\xc7\\xe6\\x89\\x05\\xc4\\xbb\\x3b\\x1c\\x21\\x05\\xd9\\x48\\x4e\\xb5\\x68\\x0d\\x6a\\x3a\\xed\\x08\\x6b\\x3d\\x69\\x2f\\x79\\xff\\x50\\x17\\xf0\\x58\\x85\\xc6\\x61\\x55\\x70\\xa4\\xee\\x39\\xa9\\x30\\xd2\\xb6\\x9d\\x94\\x7d\\xd2\\xd2\\xfb\\xc5\\x86\\x5f\\x8a\\x4e\\x79\\xe9\\x04\\xac\\xb1\\x01\\xd9\\xf9\\xe4\\x11\\x4b\\xbb\\x27\\x2b\\xea\\x23\\x9b\\x98\\xb5\\x53\\xf1\\x31\\x19\\xe3\\xee\\x44\\x30\\x99\\xc1\\xb8\\xdb\\x57\\xa2\\xca\\xec\\x9b\\x51\\x6f\\xb5\\xdf\\x5d\\xe9\\xca\\x7c\\x3b\\xbe\\xf1\\xe9\\x91\\xfa\\xfb\\x47\\x69\\x10\\x9f\\x89\\xd8\\xce\\x95\\xfd\\x8d\\x56\\xf0\\x01\\xe5\\x72\\xd0\\xc0\\x11\\x00\\x7e\\x26\\x39\\xd6\\x27\\x11\\xf5\\xcb\\x20\\xdb\\x8e\\x17\\x9e\\x6e\\xf6\\x7f\\xfb\\x7d\\xdf\\x85\\xd7\\xcf\\x3a\\x66\\x0c\\xa8\\x67\\xbc\\xef\\x45\\x3e\\x55\\x68\\xb5\\x90\\x31\\x03\\xf0\\x5a\\xe5\\x74\\x24\\xd1\\xc2\\xc8\\x39\\xf2\\x0a\\xf4\\x9c\\x2b\\x09\\xe5\\x5c\\xe7\\x2d\\xf8\\x85\\x7d\\xec\\x06\\x05\\x26\\xc3\\xb0\\xa8\\xde\\xa7\\x20\\x39\\x61\\x5e\\x82\\x12\\x70\\x2c\\x28\\x71\\x2f\\xa0\\x5f\\x45\\xda\\xb6\\x0b\\x91\\x30\\x5e\\x24\\x4a\\x6d\\xe6\\x79\\x84\\x8f\\x97\\xec\\x24\\xea\\xd3\\x55\\x97\\x07\\x60\\x01\\x5f\\x32\\x96\\x99\\xa4\\x77\\x64\\xb5\\xa1\\xd5\\xce\\x63\\x23\\xb6\\x81\\x44\\x7d\\xda\\xf7\\xb1\\xd2\\xe8\\x1c\\xca\\x45\\xa5\\x95\\x38\\x9c\\xe4\\x30\\x30\\xd0\\xf2\\x26\\x65\\xf8\\x68\\x5e\\x86\\x8f\\x1d\\x92\\xb6\\xf5\\x16\\xa6\\xb0\\xd3\\x21\\xa3\\x1a\\xe5\\xee\\x08\\x42\\x5d\\xbf\\x6b\\x0c\\xbc\\xc4\\xd5\\xdb\\xee\\x78\\xa7\\xb0\\x1c\\x65\\x3b\\x09\\x76\\x96\\xd3\\x3a\\x3c\\x80\\x97\\xe6\\xb8\\x7a\\x73\\xe2\\xce\\xdb\\x75\\x5c\\x9f\\x9e\\xa6\\xff\\xfd\\xb1\\x33\\xcb\\x6d\\x40\\x17\\x48\\xab\\x4a\\xfd\\x6c\\x72\\x78\\xec\\x47\\x8f\\x42\\xc0\\x37\\xaa\\xfe\\x3f\\x9e\\xa0\\x80\\xe7\\x7d\\x57\\x44\\xb0\\x08\\x19\\x42\\xe1\\x89\\xbb\\x22\\x27\\xfe\\x09\\x69\\x2a\\x6b\\x35\\xd6\\x07\\x22\\x44\\x51\\xa7\\x22\\x4e\\x6e\\x4d\\x78\\x95\\x85\\x97\\x18\\x27\\x85\\x10\\x15\\x01\\xce\\x30\\x6f\\x9a\\xad\\x7c\\xdd\\x4e\\x01\\x89\\xca\\x3d\\x9a\\xc1\\xd0\\xda\\x51\\xc7\\xa7\\xc9\\x47\\x85\\xc5\\xa2\\x74\\x1c\\x19\\xb0\\x15\\x29\\xf6\\x95\\x97\\x35\\x4b\\x49\\x11\\x1c\\x5e\\x33\\xbc\\x21\\x31\\xbf\\x0d\\x64\\x33\\xb9\\xab\\xc2\\x72\\xb5\\x2f\\x72\\xc0\\x01\\x16\\x45\\x20\\x0e\\xef\\x51\\xd5\\x95\\x5e\\xb8\\x88\\x08\\x4a\\xd4\\x22\\xab\\x95\\xdf\\xf0\\x98\\xfc\\xfa\\x23\\x8f\\xac\\x59\\x45\\x92\\x0b\\xbc\\xe6\\xc5\\x28\\xf7\\x74\\x90\\x2e\\x0c\\xb8\\x45\\xca\\x01\\xff\\xc9\\x45\\x00\\x55\\x46\\x16\\x61\\x6f\\x27\\x9a\\xd1\\x7d\\x2d\\x08\\x47\\x0e\\x8e\\xee\\xcb\\x14\\x51\\x8b\\x66\\xa5\\x5d\\xd6\\x7e\\x58\\x20\\xbc\\x6f\\xd7\\x71\\x7e\\x7a\\xde\\xfe\\xcf\\x27\\xfc\\x7f\\xbe\\x7d\\xf3\\xf6\\xcb\\x67\\xdc\\x6d\\xa0\\x5c\\x32\\x5e\\xf1\\xba\\x4b\\x79\\xc5\\xdc\\x1c\\x6a\\x14\\x1b\\x4d\\x53\\x91\\xc5\\x54\\xbb\\xcf\\x92\\x9f\\x24\\x12\\x32\\xa9\\x44\\x82\\xb6\\xa5\\x96\\x76\\x64\\x53\\xea\\xd0\\x40\\xaa\\x31\\x12\\x9c\\x1b\\xf1\\xae\\xb9\\xb2\\x0d\\x14\\xbb\\xb5\\x38\\x12\\x59\\x0f\\xdf\\x85\\xb2\\xae\\x8d\\x87\\x34\\x4b\\x41\\x14\\x92\\x69\\x4c\\xc6\\xea\\x36\\x24\\x2d\\x52\\xb1\\x0d\\x91\\xf4\\xb1\\xf3\\xca\\x5c\\xa7\\x59\\xd8\\xa8\\xf0\\xe9\\x5d\\x94\\x38\\x56\\x63\\x3e\\x02\\x13\\x5b\\xb2\\x06\\x7c\\x8d\\x59\\x41\\x03\\x31\\xfa\\xf4\\x02\\xbe\\x83\\x00\\x31\\xbc\\xa8\\x46\\xa4\\x39\\x27\\xd0\\xab\\x17\\x90\\x2b\\x20\\xdc\\x03\\xfe\\xc9\\xce\\x34\\x07\\x79\\x73\\xcb\\x39\\x56\\x6e\\x9d\\x39\\xac\\xc0\\x77\\xed\\x7d\\x6b\\x80\\x6e\\xe4\\xf9\\xf8\\xa7\\xbf\\x7e\\x49\\x7f\\xfa\\xd4\\x41\\x42\\x5f\\xbe\\xff\\xd5\\x6d\\x4d\\x97\\x51\\x71\\x2a\\x3b\\x87\\xc7\\x16\\x29\\xed\\x24\\xd9\\xcf\\x3a\\x62\\x3b\\x6e\\xac\\x6c\\x5c\\x43\\x57\\x36\\xae\\x41\\xd6\\x70\\x3e\\x49\\x06\\xf0\\x68\\x16\\x1d\\x96\\x10\\x58\\x34\\x53\\xbd\\x1b\\x8e\\x63\\x51\\x02\\x3c\\xc7\\x91\\xbb\\xd2\\x4a\\x24\\x93\\x01\\xc7\\xa2\\x7a\\xaf\\xe6\\xa2\\xea\\xc3\\x35\\xfb\\xca\\x81\\xd4\\xaf\\xc9\\xf5\\x3a\\x38\\xd7\\x8a\\xd5\\x5e\\x0c\\x93\\x20\\xa4\\xd2\\x5d\\x15\\xa0\\xca\\xc4\\xad\\x58\\xc9\\xec\\x97\\x55\\x94\\x7a\\x1f\\xf3\\xe8\\xe7\\xed\\xd1\\xe1\\x47\\xa3\\xf3\\xec\\xa9\\x23\\x2b\\x27\\xd8\\x4a\\x38\\xba\\x34\\x46\\xb2\\xdc\\x3a\\x32\\x97\\x5b\\x87\\xd0\\x72\\xeb\\x50\\x5b\\x6e\\x1d\\xd4\\xe3\\x10\\x54\\xa0\\x2a\\x4b\\x82\\x34\\x0d\\x15\\x09\\x52\\xee\\x94\\x84\\xa7\\x33\\x6a\\x8b\\x27\\xb9\\x9c\\x58\\xed\\x6c\\xca\\x97\\x53\\x51\\xa7\\x4a\\x73\\x24\\x87\\x30\\x9d\\x7c\\x75\\xb1\\xf2\\x44\\xae\\x89\\x12\\xf2\\x3f\\x39\\x79\\x28\\x37\\xe4\\x84\\xf5\\x68\\xa1\\x8e\\x67\\x47\\x8f\\x29\\x9e\\x77\\xd4\\xd9\\xa7\\xc1\\xde\\x38\\x0a\\x8d\\x53\\x9e\\x03\\x60\\x78\\xd8\\x9e\\xbc\\x10\\x51\\x4b\\x24\\x35\\x55\\xa8\\x28\\x03\\x47\\x28\\xac\\x9f\\xc5\\x0f\\x0d\\x65\\xf2\\x39\\xd5\\xf6\\xd4\\x58\\x3e\\x1f\\x08\\x94\\x4f\\xe8\\xbe\\xe0\\xf3\\xc1\\xcb\\x74\\x5d\\x13\\x03\\x45\\x00\\x74\\xb1\\xd1\\x4c\\x6c\\xf9\\x7c\\x54\\xc7\\x22\\x91\\x1e\\xd1\\x4b\\x6a\\xe0\\xfe\\xc9\\xe7\\xa3\\xca\\x50\\x48\\x48\\x5f\\x3e\\x1f\\x6e\\xcb\\xe7\\x43\\x74\\x29\\x24\\xd6\\x88\\xdf\\x9e\\x3f\\x79\\x9c\\x37\\xe9\\xdb\\xd7\\x1f\\xde\\xbe\\x79\\x77\\xdb\\x92\\x5b\\x5b\\x31\\x9c\\x73\\xbd\\x56\\x31\\xed\\x75\\x95\\x62\\x86\\xc6\\x85\\xb6\\x61\\x35\\x5a\\x3a\\xfb\\x90\\x03\\xab\\xd4\\x9f\\x25\\x5c\\xb1\\x60\\xfe\\x1a\\x23\\xe6\\x90\\x90\\x6b\\x99\\x47\\x4e\\x8e\\xd1\\xc4\\x7c\\x72\\x72\\x53\\xca\\x8d\\x03\\xfe\\xbf\\x85\\xd7\\x2f\\xd9\\xfd\\xcc\\xd1\\xb7\\x75\\xa0\\x8e\\xf6\\x1d\\x05\\x2a\\x71\\x0d\\xa9\\xe0\\x58\\xa7\\x14\\x5f\\x17\\xaf\\x8f\\xc6\\x26\\xe0\\x0b\\x0a\\x68\\x78\\xcd\\xd1\\xca\\x1a\\x3b\\xba\\xaf\\x10\\x02\\x38\\x79\\x12\\xe2\\xcb\\x10\\x4d\\xcb\\x52\\x25\\x87\\xf2\\x4d\\xcf\\x39\\x78\\xcf\\xb1\\x72\\x84\\xe0\\xac\\x20\\x64\\xad\\x5d\\xe6\\x99\\x9e\\x73\\xd9\\xd1\\xb0\\x3c\\x79\\x45\\xda\\xfa\\xca\\xd6\\x01\\xc5\\x41\\xdd\\xf2\\x69\\x78\\x7d\\xf8\\x34\\x64\\x1e\\x16\\x9a\\xb6\\x2c\\x04\\x7d\\x83\\x86\\xa7\\x3b\\xe2\\xfc\\xea\\xfb\\xec\\xd6\\xd6\\x5f\\x13\\xa3\\x8f\\x17\\xd6\\x77\\x1f\\x3e\\xbc\\x7e\\xf7\\xea\\x36\\x9c\\x1e\\x5d\\x5b\\xe4\\x5e\\x78\\x03\\xe1\\x52\\xa3\\x19\\xb2\\x4b\\xc3\\x71\\x44\\x8e\\xb0\\xd0\\x9a\\xbc\\x29\\xac\\x2d\\x7c\\x63\\x60\\x37\\xdf\\x70\\xf6\\x53\\x6e\\x84\\x88\\xcf\\xdc\\xc9\\xbc\\x71\\x22\\xd7\\x4e\\x5b\\xd9\\x1f\\xb2\\x59\\xcf\\x1d\\x57\\x68\\x97\\x47\\x73\\xb7\\x49\\x63\\xb4\\xec\\x54\\xaf\\x0f\\xee\\xa8\\xad\\xc6\\x70\\x13\\x64\\xff\\x88\\x5d\\x46\\xb6\\x91\\x03\\xc9\\x06\\x71\\x12\\x0f\\x52\\x5d\\x77\\xd1\\xdd\\x07\\xdd\\x41\\x5c\\x46\\x18\\x47\\xdd\\xaa\\x25\\x34\\xd4\\x37\\xac\\x20\\xea\\xc8\\xac\\xaf\\x03\\xf5\\x42\\xf2\\x8e\\x11\\x3b\\xbc\\x0b\\xa1\\x20\\xef\\x89\\x24\\xa5\\xc7\\xd9\\x4d\\xe8\\x5a\\xed\\xc2\\x50\\xae\\x8e\\xde\\x04\\xee\\x72\\x25\\x03\\xc0\\x38\\x85\\x44\\x5d\\xb9\\xaa\\x3e\\x71\\x6c\\x6b\\x9c\\x5e\\xdc\\x4b\\x57\\xbc\\x5c\\xd7\\x02\\x9f\\xb2\\x84\\x5a\\xa8\\x98\\x71\\x26\\xc2\\x80\\x17\\xe1\\xea\\xb6\\x27\\x5c\\x84\\x8a\\x7f\\x40\\xd7\\x33\\x74\\x85\\x25\\x22\\xf9\\xdd\\xc0\\x7b\\x83\\x05\\xf5\\xe1\\x0a\\x97\\xcc\\xa2\\x0a\\xc2\\x73\\xf0\\x34\\x11\\xbb\\x4b\\xa4\\x18\\xd5\\x56\\xec\\x00\\xee\\x43\\x6a\\x60\\xd5\\xf5\\x7b\\xb5\\x5b\\xcf\\x55\\x3f\\x5c\\x79\\x1e\\xfd\\xbb\\x4d\\x21\\xf6\\x88\\x42\\x7e\\xf3\\x4c\\x5a\\x4e\\xe4\\x18\\x93\\x78\\xe4\\x63\\x9e\\x4a\\x2d\\x94\\x57\\x28\\xa7\\x05\\xf2\\x90\\x5c\\xd4\\x8e\\x1f\\x38\\x03\\x3f\\xf4\\xb3\\xc6\\xc0\\x5f\\x24\\x8e\\xdb\\xf5\\x77\\x3d\\x5e\\x7f\\xd7\\xfb\\xda\\x6d\\xe3\\xab\\x5f\\xbc\\xd0\\x76\\xb4\\x76\\xbb\\xeb\\xfe\\xa7\\x8f\\x11\\xe8\\xfb\\xbf\\x7d\\xfd\\xee\\x39\\x88\\xab\\xb0\\xdf\\x46\\x2f\\xae\\x77\\x0e\\xa5\\x4b\\xfd\\x71\\xd6\\xcc\\x17\\xf7\\xa1\\xd4\\x7c\\x64\\xfd\\x71\\x80\\x5f\\xa5\\x8b\\xdf\\x3c\\xcd\\xe7\\x9f\\xfe\\xfa\\x65\\xfc\\x5e\\xb2\\xb8\\x57\\xcf\\x66\\xcc\\x22\\x9c\\xf7\\x17\\xb6\\xa3\\x80\\xe8\\x51\\xe2\\x80\\x22\\x09\\x64\\xc5\\x5d\\x96\\x1e\\x88\\x0c\\x86\\x9c\\x68\\x69\\x2b\\x87\\xcd\\x69\\x1d\\x28\\x46\\x05\\x95\\xb1\\xed\\x16\\x04\\x44\\xb8\\x52\\x27\\x20\\xbe\\x99\\x38\\xd1\\x4f\\x78\\x7a\\x89\\x93\\x05\\x88\\x8c\\x03\\x05\\x50\\x74\\x09\\xb3\\x93\\x0d\\xf0\\x30\\x11\\x2d\\x75\\x2a\\x06\\xb4\\xce\\xeb\\xd8\\x04\\x19\\xdf\\x02\\x99\\x33\\x4e\\xc3\\x9b\\x64\\xdc\\x9d\\x48\\x56\\xc2\\xd8\\x13\\x0d\\x01\\x4f\\x3c\\x71\\x81\\x5e\\xc8\\xb8\\xc2\\x30\\x58\\x56\\x01\\x3e\\xc4\\x38\\xd0\\x23\\xeb\\xed\\x5c\\x69\\x4f\\x4e\\xb6\\x04\\x9e\\x13\\x3b\\xb4\\xd6\\xcc\\x40\\xc9\\xee\\xd0\\xee\\x12\\xc9\\xae\\x86\\xc3\\x39\\x9a\\xd4\\xdf\\x91\\x93\\xa9\\x90\\xaf\\x2c\\x5d\\x60\\xe4\\xcc\\xb1\\x12\\x2a\\x8d\\x06\\x27\\x83\\xda\\xb4\\x0a\\xf4\\x81\\xf7\\xe5\\x4e\\xc8\\x35\\x3e\\x56\\xb6\\x5c\\x98\\x41\\x91\\x1c\\xc1\\xe1\\x6b\\x49\\x94\\xbc\\xc6\\x10\\x09\\xbf\\x0c\\x39\\xbc\\x78\\xe5\\x0e\\x52\\x1d\\x70\\xce\\x5a\\xf1\\x5f\\x26\\xd7\\xf8\\xc5\\x71\\x47\\xaa\\x2b\\x7e\\x71\\x45\\x8b\\x11\\xd1\\x91\\x1a\\xf2\\x08\\xbe\\xd3\\x3c\\x67\\xac\\xb8\\xc5\\x95\\xac\\x66\\xa5\\x84\\xcf\\x23\\x72\\x71\\xf0\\x15\\xfe\\xfb\\x6a\\x00\\xf1\\x5f\\x41\\x47\\xfc\\x17\\xfb\\x71\\xb4\\x8e\\xf1\\xca\\x69\\xa6\\xd7\\x84\\x87\\xcb\\x7c\\x37\\x72\\xbf\\xda\\xf1\\xda\\x0a\\x04\\xab\\xe1\\x87\\xf3\\xa7\\x4e\\x53\\x6d\\x43\\x97\\x63\\x6f\\x8e\\x40\\xfe\\x7f\\x18\\x73\\x87\\x21\\x6c\\x0f\\xbb\\x51\\x28\\x02\\xc0\\xa2\\x79\\xfd\\x72\\x90\\xda\\x8b\\x7b\\x1b\\x8a\\x0c\\x64\\x56\\xc8\\x35\\xb5\\x21\\x00\\xa5\\xe7\\xae\\xdd\\xef\\x3c\\x57\\xf4\\x96\\xc3\\x75\\xca\\x9b\\x39\\xed\\xb8\\x42\\x8d\\x57\\x30\\x5b\\x10\\xa7\\xa6\\xda\\x67\\x61\\x4e\\x29\\x3e\\xe6\\xdc\\x44\\x7d\\x8f\\x4e\\x4d\\xa0\\x46\\x0e\\x84\\xa6\\x22\\x57\\x70\\x67\\x20\\x66\\x81\\x97\\x8c\\xac\\x40\\xea\\xe1\\x4d\\x75\\xec\\xb8\\xa6\\x21\\x4d\\x93\\x91\\x40\\x62\\x36\\x5f\\x87\\x0d\\x3a\\xe9\\x3c\\xfa\\x79\\x7b\\xb5\\xe5\\xa3\\xd5\\xf6\\xe5\\x9b\\xd7\\x1f\\x5e\\x7f\\x7c\\x73\\x5b\\xa1\\xcf\\x8e\\x2d\\xda\\xf6\\x55\\xa8\\x7d\\x09\\x47\\x5b\\x95\\x9c\\x87\\x93\\x61\\xac\\x84\\x8d\\xda\\xd0\\xf3\\x70\\x60\\xd7\\xd1\\x77\\x95\\x55\\x68\\xeb\\xb8\\xc7\\xa4\\xa9\\x48\\x84\\x65\\x3a\\x0d\\x21\\x59\\xd5\\xd7\\x65\\xf7\\xb4\\x15\\x88\\x2d\\x32\\x9a\\x2d\\x1a\\xf5\\xf5\\x30\\x97\\x3c\\x6b\\x2b\\xc5\\xec\\xaa\\x99\\x95\\x90\\x1e\\xa3\\x0a\\x2b\\x51\\x0f\\x5b\\x5f\\xdd\\xe0\\xf0\\xc9\\x61\\x77\\x78\\xfd\\xda\\xe7\\x62\\x47\\x47\\xef\\x57\\x61\\x50\\x0b\\x3b\\x7a\\x1f\\x2b\\xea\\x48\\x66\\x42\\x6e\\x8d\\xb1\\x7c\\x41\\x34\\xc7\\xbe\\x4e\\x4f\\xcc\\xd1\\x86\\x1c\\x1f\\x36\\xe2\\xe8\\xfd\\xda\\x14\\x15\\xcc\\x86\\x8e\\xfe\\x1f\\xa5\\x95\\x5d\\x0c\\x5f\\x60\\xf3\\xc8\\x35\\x62\\x13\\x55\\xb0\\x1e\\xb5\\xb3\\x8c\\x3d\\x6d\\x15\\x5a\\x2e\\x72\\xce\\xd5\\x95\\x7a\\x18\\x9d\\xab\\xd7\\xaf\\xfd\\xbe\\x3d\\x91\\xe3\\x31\\x24\\x79\\xff\\xcd\\x6f\\xbe\\xe7\\x20\\x22\\x1c\\xcf\\xc6\\x08\\x91\\x97\\xe3\\xd4\\x12\\x76\\x83\\xcd\\xab\\x10\\xa1\\x21\\xdb\\x44\\xb4\\x05\\x1a\\x97\\x19\\x9e\\x13\\xd8\\x1b\\xbc\\x04\\x21\\x73\\xc3\\x2f\\x96\\xbe\\x57\\xd9\\x8b\\x46\\x6b\\x0f\\xee\\xb2\\x4c\\xf6\\xc3\\x90\\xf6\\x26\\xcd\\x3e\\xd9\\xd1\\x82\\x17\\x7c\\x5e\\x9e\\x9d\\x89\\x63\\x13\\x5d\\xfb\\x39\\x74\\x49\\xe6\\x85\\xdd\\xf0\\x3f\\x22\\x8a\\x61\\x6e\\xdc\\x2d\\xec\\x2e\\xc2\\x90\\x79\\x34\\x0a\\x49\\xc2\\x76\\xc7\\x48\\xbd\\xe9\\x2e\\xc8\\x20\\x6c\\x19\\x17\\x1d\\xbe\\x57\\x19\\xe6\\xa3\\xb0\\xa6\\xbc\\xf2\\x83\\x01\\x7d\\x2a\\x52\\x59\\xa1\\x4e\\xe9\\x0b\\x2f\\x48\\x4f\\x48\\x57\\x22\\x89\\xf1\\x55\\xe5\\x42\\x7f\\x2f\\xee\\x29\\x7b\\x33\\xe5\\xbd\\xae\\x25\\xa9\\x70\\x2d\\xd2\\xe2\\x29\\x30\\x20\\xae\\x94\\xa7\\xd0\\x19\\xc0\\x50\\x88\\xb4\\xa3\\xc8\\xfd\\x07\\x91\\x03\\xa9\\xb6\\x78\\xc5\\x63\\x04\\x5e\\x5b\\xa7\\x2c\\x56\\x7d\\x55\\xc0\\xc9\\x7d\\x9d\\xb3\\x05\\x3b\\x9e\\x4d\\xe4\\xd5\\x95\\x36\\x82\\x51\\x63\\x49\\x86\\xbb\\x49\\xbf\\xab\\x02\\x18\\xcb\\x08\\x41\\xdb\\xf5\\x24\\x2f\\x5f\\xe7\\x79\\xf4\\xf1\\xc5\\x7d\\x71\\xf4\\x9a\\xc4\\xc2\\x7d\\x1d\\x1c\\x3d\\x9c\\x0f\\x67\\xf8\\x3e\\x71\\x76\\xde\\x72\\x86\\xbf\\x46\\x2f\\x5c\\x4d\\xb4\\x88\\x38\\xa9\\x5b\\xf0\\x28\\x56\\x5a\\x81\\xd1\\x71\\xf5\\x58\\x45\\x87\\xab\\xa0\\xeb\\x40\\xc7\\xa2\\x11\\xc2\\xb3\\xa4\\x3c\\xeb\\x65\\xec\\x5b\\x7c\\xa4\\xd2\\xe7\\x23\\xfa\\xd2\\x56\\x46\\x76\\xc7\\x53\\xd5\\x1b\\xe1\\x3e\\x57\\x1f\\x6f\\xd3\\xee\\xcb\\x47\\xb4\\xfb\\xfe\\xc3\\x97\\x3f\\x7f\\xfd\\xf5\\x9b\\x67\\xb3\\x36\\x23\\xa4\\xa7\\x2f\\xa3\\x5a\\x14\\x65\\x40\\x18\\x1f\\x7b\\x14\\xbe\\x8e\\x44\\xea\\xdb\\xa8\\x0f\\xf7\\x23\\xc9\\xfe\\x18\\x2d\\x7a\\x9f\\xc6\\x0c\\xdd\\x44\\x09\\x66\\x3e\\xa8\\x29\\x79\\x8b\\x92\\x28\\x25\\x5b\\x98\\x4c\\x1e\\x1d\\xce\\x38\\x38\\x0f\\x80\\xc6\\xce\\xf0\\x86\\x94\\x5e\\x42\\xd0\\xca\\xd9\\xb5\\xce\\xd1\\xb4\\x0e\\x28\\x43\\xdc\\x69\\xa5\\xb8\\x2c\\xd9\\x07\\x19\\x68\\xb9\\xf8\\xf9\\x4a\\xb0\\x90\\xbb\\x79\\xbf\\xab\\xc2\\xca\\xf6\\x23\\x7d\\x25\\x17\\x86\\x12\\x1d\\x9e\\x4d\\xac\\xb2\\xaf\\xc2\\xd0\\x26\\xcb\\x3f\\xd8\\xe1\\x18\\x4d\\x8a\\xd8\\x24\\xc4\\xab\\xe6\\xaa\\x70\\xa5\\x84\\x3e\\x92\\x11\\xc1\\xb7\\x49\\x6d\\xac\\xe3\\x1d\\x91\\xca\\x7e\\xa0\\xd1\\xa5\\x4f\\x21\\xee\\xfd\\x92\\xe9\\x7b\\xfd\\x91\\x82\\x23\\x3b\\x8b\\x46\\xe7\\x40\\xe6\\x37\\x3b\\x47\\xf1\\x43\\x5b\\x09\\x2d\\xf6\\x92\\x1d\\xaa\\x1e\\x84\\x36\\xd4\\xda\\x5b\\x19\\xfb\\x67\\x14\\x1e\\x1e\\x8e\\x8c\\x83\\x43\\xfa\\xa5\\x36\\xd0\\xb3\\x77\\x83\\x64\\x89\\xb3\\x64\\xc1\\xac\\x3b\\xeb\\x5c\\x19\\x7a\\x3b\\x14\\xff\\x77\\xc3\\x6d\\xaa\\xe2\\xa8\\x86\\xbd\\xae\\x38\\xec\\xec\\x30\\xa7\\x1e\\x6d\\xde\\x26\\x87\\x9f\\x3d\\x4e\\xdf\\xfa\\xdd\\x9b\\xb7\\x6f\\x5f\\x7f\\xfd\\xfe\\xf9\\x08\\xc5\\xda\\xdf\\x75\\xf0\\xe6\\x08\\xe5\\x3f\\xab\\x8f\\x8d\\x32\\x9a\\xa6\\x5c\\xac\\xf3\\xa6\\x08\\xae\\xe2\\xb3\\x5b\\xdf\\x8e\\x47\\x5f\\xdc\\x47\\x3d\\x30\\x78\\xc9\\x31\\x43\\xce\\xa9\\xb9\\x64\\xe7\\xe3\\xa5\\x54\\xc4\\x83\\x9f\\xeb\\xfe\\x76\\x3c\\x7c\\xbb\\xdf\\xaf\\x1e\\x27\\xde\\x7d\\xff\\xd5\\x9b\\x57\\x2f\\xdf\\xbe\\x7b\\xff\\x5c\\x82\\x7c\\x04\\xc9\\xe8\\x39\\xb9\\x5f\\x5c\\xf4\\x4c\\x59\\x62\\xb5\\x55\\x8b\\xfd\\x22\\xb7\\xce\\x05\\xaa\\xd6\\xbe\\xfc\\xd3\\xc7\\xf1\\x7d\\x6f\\x7a\\xff\\xc1\\x33\\xd9\\xd4\\xfe\\xef\\x9d\\xa8\\x55\\x4d\\xbc\\x7e\\xd4\\xc4\\x87\\xd7\\x5f\\xbd\\xf9\\xf8\\xed\\xeb\\x0f\\xaf\\x6f\\x47\\xa0\\x64\\x36\\x53\\xda\\x33\\x0f\\x76\\xd4\\x0f\\x76\\xa4\\x07\\x3b\\xfa\\x14\\x9b\\xd3\\xaf\\xec\\xa8\\x5f\\xd9\\x51\\x5c\\xd9\\x91\\x5f\\xd9\\x51\\xbf\\xb2\\x23\\x9c\\x41\\xb2\\xa3\\xb0\\x92\\x54\\x20\\x73\\x47\\xc7\\xb3\\x54\\x62\\x1c\\x07\\x7c\\x80\\xb8\\x2f\\xbb\\xf8\\x71\\x4c\\x65\\x35\\xc7\\xab\\xf5\\x7a\\xaa\\x7a\\x23\\x54\\x3b\\x2f\\x8e\\x34\\xb9\\xa7\\x18\\x77\\xa8\\x37\\x90\\x26\\xb6\\x31\\xc9\\xc1\\xe7\\xf3\\xe0\\xf3\\x45\\xd1\\xab\\xb3\\x21\\x08\\x07\\x8f\\xda\\x26\\x01\\x55\\xe7\\x10\\xc6\\x53\\xf0\\xf9\\x5f\\xb9\\xc0\\x9c\\x56\\x3f\\xab\\xe0\\x88\\x93\\xe0\\x68\\xc1\\x86\\x67\\x17\\x9f\\xe7\\x83\\xcf\\xf7\\x83\\xcf\\x83\\x09\\x23\\xa1\\xea\\x38\\xf8\\x7c\\x1e\\x7c\\x5e\\x17\\x9f\\x87\\x8f\\x00\\xbd\\xb8\\x2f\\x16\\xab\\xa9\\x17\\x16\\x3e\\xcb\\x18\\x38\\x01\\xdb\\xa9\\xef\\xc1\\x38\\x54\\xbb\\x05\\x12\\x54\\xd3\\x4c\\x83\\x13\\xd6\\x8e\\x2b\\xf7\\x92\\x5e\\x71\\xec\\x4c\\x50\\x36\\xa3\\xb1\\xa5\\xeb\\x5d\\xd5\\x11\\x9a\\x08\\x28\\xd5\\xd4\\xb3\\x11\\xaf\\x06\\x2c\\xed\\xec\\xec\\xbb\\x6b\\x56\\x19\\x8e\\x71\\x36\\x96\\x9a\\xdc\\x7b\\xce\\xe5\\x55\\x6a\\x60\\x07\\x5e\\x5b\\x5f\\xc9\\xa8\\xf5\\x8d\\xd8\\xb2\\x13\\x47\\xab\\x84\\x8f\\xaa\\xf0\\x62\\xb7\\x22\\x9f\\x8b\\xb2\\x7e\\xfe\\x88\\xb2\\xbe\\x7e\\xf9\\xea\\xc3\\x73\\x32\\xde\\x91\\xef\\x87\\xcf\\x1c\\x72\\xcd\\x25\\xd6\\xe5\\x52\\x3f\\xdd\\x6c\\xe4\\x67\\xfd\\x31\\xb6\\x7d\\xfd\\xd5\\x73\\xa7\\x2e\\xc1\\x9d\\x09\\x66\\x94\\x75\\xde\\x35\\x50\\x4e\\x91\\x70\\x4c\\x05\\x22\\x1d\\x7a\\x1c\\x1b\\x62\\x0a\\x89\\x6d\\xf1\\xe3\\x3c\\x92\\x13\\x81\\x92\\xeb\\x16\\x8c\\x55\\x05\\xea\\x33\\x70\\xda\\x46\\xae\\x84\\xb6\\x55\\x33\\x0a\\xa4\\x85\\xe3\\xa1\\xb6\\xf4\\xf5\\x70\\xa7\\x8e\\xa1\\x1d\\xb6\\x24\\xcd\\x21\\xb4\\x5b\\x70\\x5d\\x5b\\xb5\\x58\\xbf\\xa3\\x0b\\x2b\\x37\\xdc\\x58\\xaf\\x8a\\xc5\\x1d\\xe1\\xc0\\xd3\\x95\\x5c\\xb0\\xf3\\x6e\\xeb\\x3c\\x61\\x6b\\x06\\x3b\\x99\\x95\\x88\\x89\\x0c\\xe8\\x3a\\x0d\\xaf\\x2d\\x57\\x0f\\x38\\x6d\\xee\\x0e\\x47\\xda\\xc0\\x51\\xdb\\xeb\\xbc\\xce\\xe2\\xf6\\xb5\\xd5\\x43\\x7c\\xa8\\xd5\\x76\\x24\\xdf\\xa8\\x75\\x8a\\x02\\x0f\\xc4\\x2e\\x40\\x02\\x8c\\xb5\\x6b\\xd5\\x5e\\x51\\xbb\\x16\\x52\\xc5\\xaf\\xe3\\xd9\\x76\\xaf\\x6e\\x88\\x74\\xa8\\x5a\\xb0\\x23\\xd9\\x3a\\xd5\\x57\\x71\\xd0\\x26\\xbc\\xa9\\xaf\\x7d\\xbe\\x3d\\x7d\\x8f\\x75\\xfb\\xdf\\xbc\\xfd\\xee\\xe3\\xd7\\x6f\\xde\\x3d\\x7b\\xca\\x62\\x8d\\x99\\x9c\\xa9\\xbb\\x5c\\xa2\\xd3\\x39\\x84\\x2f\\x22\\xb4\\x3c\\x6e\\x3b\\x21\\xcc\\xb3\\x1e\\xc0\\x39\\xf9\\x9c\\x8a\\x07\\x86\\xc8\\x8b\\x7b\\x9c\\x54\\xde\\xcf\\x14\\xb4\\x52\\x2a\\x76\\xb9\\x99\\x3f\\xab\\xfa\\xf6\\x58\\xb3\\xfe\\xed\\xaf\\xde\\x7f\\xfc\\x0e\\xa7\\x0e\\x3e\\xe3\\xd9\\x25\\xb0\\xa3\\x9d\\x85\\xfc\\x92\\x9d\\x36\\x1c\\xa4\\xd9\\xbd\\xe3\\x78\\xc1\\x15\\x35\\x81\\x93\\xbc\\x6a\\x6c\\x71\\x24\\x30\\x8d\\x7d\\x15\\x2c\\x1b\\xd2\\x25\\x23\\x3d\\x35\\x81\\xa8\\x56\\xb0\\x44\\x15\\x96\\x94\\xc4\\x21\\x4b\\x4a\\xa2\\xa1\\x67\\x1e\\xb9\\x23\\x23\\x37\\x23\\x6e\\x72\\x2c\\x97\\x74\\xc1\\x64\\xa4\\xcf\\x95\\xeb\\x0c\\xc1\\x72\\xb2\\xce\\x5e\\x2d\\x10\\x55\\x85\\xe5\\xda\\xaa\\x5d\\xe6\\x40\\xc6\\x21\\xee\\x4b\\xf6\\xa1\\xda\\xba\\x11\\xf6\\xaa\\x1d\\x39\\x4e\\xe0\\x28\\x19\\xa3\\xb7\\x31\\x12\\x07\\xd5\\x0c\\x1a\\x5b\\x91\\x58\\xb2\\x9f\\x87\\xe8\\xc5\\xfd\\xb6\\x86\\xe9\\x67\\x8f\\xf5\\xda\\x38\\x0d\\xed\\x7b\\xc7\\xcf\\x56\\x00\\xa2\\x9d\\x1d\\x67\\x2f\\x09\\xfe\\x00\\x86\\xc3\\x61\\xba\\xb1\\x72\\xe9\\xd8\\xbe\\x0a\\xda\\x0f\\x34\\x56\\x8b\\x75\\x1c\\x87\\x7d\\x3b\\x0e\\x93\\xab\\x2e\\x43\\x21\\x01\\x1c\\x13\\x28\\x2c\\x1c\\xc3\\x79\\x3d\\xd2\\x5e\\xe9\\x5c\\x83\\x8c\\xe3\\xc4\\x18\\xc7\\x3e\\x76\\x88\\x74\\x4b\\xb1\\xa0\\x7d\\xe5\\xf9\\x22\\x35\\x3a\\xf2\\x94\\xb9\\x1f\\x67\\x3c\\xbb\\xdf\\xc5\\xca\\x02\\xb1\\x12\\x95\\x93\\xf6\\x01\\x79\\x1d\\xaf\\x8f\\xa3\\x73\\x3b\\x0a\\xc5\\xdd\\x91\\xed\\x02\\x07\\xaa\\xa4\\xae\\x94\\x35\\xc8\\x9b\\xd3\\x8d\\x10\\x30\\x0e\\x43\\x51\\x91\\x4e\\x66\\xec\\xb8\\x16\\xa3\\xe8\\xc5\\xf0\\x13\\xfa\\xa9\\x20\\x87\\x6b\\xb6\\xc7\\xea\\x8a\\xdb\\x52\\x5f\\xba\\x19\\x8e\\x82\\x76\\xcf\\xa5\\xbe\\x2c\\xde\\xc1\\xc8\\x1a\\x3f\\xb9\\xe4\\x8d\\xde\\xcf\\x3a\\x6c\\x45\\xa6\\xfb\\x22\\xa3\\x54\\x82\\x9f\\x69\\x92\\x41\\x44\\x82\\xa7\\x76\\xb7\\x96\\xca\\xf0\\x5f\\x1f\\x05\\xb8\\xeb\\x5a\\x14\\x59\\x62\\x43\\x20\\x39\\x61\\x89\\x2a\\xfd\\x6c\\x64\\x97\\x9a\\x92\\xdb\\xf3\\xfe\\x58\\x6d\\xfe\\xf2\\xd5\\x77\\xdf\\xde\\xe6\\xc7\\x86\\xe0\\xde\\xc8\\x73\\x86\\x6d\\x08\\x85\\xa1\\x31\\xce\\x92\\xbc\\x5d\\xef\\xdc\\x6e\\xe9\\xb1\\xfa\\xf5\\xeb\\xdb\\xfe\\x57\\x0a\\x3d\\x54\\xf2\\x45\\x9d\\x91\\x44\\x1b\\x19\\xae\\x5c\\x9a\\x08\\x1f\\xc9\\xe1\\x15\\x0e\\x0f\\x38\\xfe\\x5f\\x0c\\xce\\x53\\x81\\xec\\xb7\\xd6\\xc2\\x1d\\x27\\x86\\xa4\\x6a\\x13\\xba\\x3a\\x4f\\x11\\x23\\x53\\x87\\xeb\\x96\\x56\\x82\\xde\\x5e\\xe3\\x58\\xdb\\xa4\\x8d\\x76\\xcd\\x55\\x4a\\x7b\\x71\\x76\\xa0\\x14\\x24\\xea\\x3c\\x5c\\x94\\xe3\\xea\\xcd\\x75\\xeb\\x44\\xb8\\xfa\\xba\\xc7\\x1a\\xda\\x6f\\x5e\\x7e\\x78\\xf9\\xd5\\x87\\x97\\xdf\\xdc\\x8e\\xed\\x2a\\xd0\\xd2\\x2f\\xc6\\xfd\\x1c\\x85\\x3a\\x4a\\x20\\x2b\\x71\\x6d\\x44\\x33\\xb3\\x29\\x2a\\xcd\\x8d\\xd7\\x61\\x78\\x9d\\xa0\\x35\\x1c\\x99\\x7b\\x5d\\x11\\xc8\\xc8\\xc8\\xda\\x0e\\x33\\x72\\x71\\x9f\\x12\\xbe\\x21\\x98\\x20\\x28\\xfa\\x53\\x52\\xcc\\x1e\\x97\\x7e\\x8e\\x71\\xc3\\x51\\xab\\x3a\\xfe\\x58\\xb7\\xbb\\xce\\x69\\x7d\\xf5\\xfa\\xdd\\xf3\\xa0\\xb2\\xc8\\x38\\x3a\\xc1\\xd9\\xa0\\xd6\\x16\\x0e\\x48\\xf3\\x8e\\x7c\\x48\\xd9\\xd7\\x11\\x8f\\x29\\xcb\\xd1\\x32\\x8d\\x76\\x4f\\x04\\xfd\\xc2\\x99\\x35\\xb5\\xaf\\x00\\xee\\x82\\x2f\\x25\\x03\\x3a\\xe1\\xb0\\x8f\\xaa\\x2f\\xa1\\x3c\\x1d\\x25\\x37\\x42\\xab\\x1f\\x9e\\x38\\xba\\x1f\\x58\\xc9\\x15\\xf5\\x99\\xf1\\xee\\x08\\xe6\\x67\\x1c\\x02\\x62\\x2e\\xd0\\x54\\x19\\xb4\\x1b\\x86\\xf7\\x8e\\xfe\\xdd\\xfe\\xee\\xc7\\x5a\\xb6\\x57\\xaf\\xbf\\x7c\\xf3\\xf6\\xed\\xed\\x5c\\x16\\xb5\\xa5\\xda\\xe6\\x6e\\xed\\x54\\x9f\\x33\\xa4\\x9d\\x90\\xd3\\xa1\\xb7\\x13\\xb2\\x0b\\x67\\x3b\\x1d\\xb9\\x0c\\x4f\\xb0\\x81\\x21\\x90\\x80\\x75\\x5f\\x05\\xe8\\x57\\xa4\\x9d\\x04\\xf6\\xcb\\x6c\\x27\\xa9\\x5d\\xba\\x5e\\x56\\xf8\\x67\\x50\\x3b\\xa9\\xe5\\xa6\\xae\\xed\\x54\\x5b\\x05\\xd2\\x53\\xd5\\x7e\\x61\\x88\\x7d\\x8c\\xb1\\xce\\x28\\x61\\xb2\\x23\\x83\\x55\\xc8\\xba\\x45\\x56\\x50\\x28\\xdb\\x89\\xc4\\x21\\x50\\xd9\\xd9\\x6f\\x65\\xb7\\xac\\xcf\\x7e\\xac\\x93\\x7a\\xff\\xee\\xfb\\xb9\\x7c\\x71\\x41\\xb7\\x71\\x36\\x1c\\x5e\\x4a\\xbc\\x21\\x33\\x36\\xf9\\xb8\\x90\\xb0\\x1d\\x27\\xd9\\xaa\\x9d\\x23\\xf5\\xe2\\xb7\\xe2\\xab\\xaa\\xf1\\x27\\x94\\x0a\\x5f\\xbf\\xfc\\xf8\\xea\\xbb\\xb7\\xcf\\x69\\x15\\xb8\\xc4\\x5a\\x52\\xda\\x51\\x28\\x10\\xce\\xa3\\x2f\\x5d\\x9c\\xd8\\xa8\\xed\\x93\\xe0\\x50\\xb9\\x18\\xff\\x35\\x63\\x1f\\xb2\\x72\\x00\\x03\\x5a\\xac\\x5b\\xc5\\x50\\x91\\x51\\x7f\\x88\\x2d\\x65\\xe4\\xb0\\x4f\\x31\\xbc\\xac\\x7b\\xfd\\x35\\xac\\x64\\x6a\\x6b\\x89\\x13\\x0d\\xa2\\x45\\xea\\x0c\\x1c\\xef\\xb1\\xec\\x5a\\x3e\\xfa\\x6e\\x82\\x2b\\x0e\\x92\\xac\\xdf\\xc5\\x3b\\x9e\\xe3\\x41\\x77\\x99\\x63\\xa2\\x9b\\x9d\\x15\\xd1\\xcb\\x2f\\xee\\x75\\x29\\x97\\x74\\xaf\\xc2\\x48\\x69\\x6a\\x2b\\x84\\x57\\x53\\xd0\\x4e\\x51\\x2e\\x32\\x4d\\x94\\x5c\\x2f\\x8e\\x43\\x2e\\x52\\xbc\\x79\\x0e\\xfc\\x1e\\x70\\xbf\\x1a\\x08\\xcd\\xa9\\xf7\\xd6\\x9e\\x74\\xd4\\xbf\\xaf\\x93\\x46\\x93\\x5a\\x04\\x22\\xe0\\x0c\\xcf\\xe3\\x0c\\x70\\x87\\x51\\x92\\xe4\\xc0\\x27\\xd0\\x7c\\x8c\\xb6\\x34\\x1f\\x00\\xcf\\xa4\\x53\\x11\\x37\\x17\\x7a\\xa8\\xeb\\xc9\\xe0\\xa2\\xff\\x69\\x50\\x6e\\x4f\\xe5\\x4d\\x85\\xc0\\xf7\\xe5\\xf4\\xc9\\x36\\xd8\\x37\\x1c\\x2e\\x20\\x7e\\x31\\x8a\\x6d\\xa5\\xf9\\x8e\\x33\\x73\\x6c\\x35\\x91\\xc6\\xbe\\x31\\x47\\x3d\\x87\\xd4\\xdc\\xf7\\x91\\x86\\x97\\x70\\x46\\xd7\\xf5\\x2d\\x9c\\x6b\\xca\\x71\\xf6\\xae\\x1b\\x22\\x66\\xaa\\xd6\\xae\\x78\\xeb\\x66\\x86\\xa7\\xea\\xf9\\x63\\x95\\xc0\\xfb\\x77\\xaf\\xff\\xee\\xbb\\x97\\x1f\\x9e\\x3b\\x8c\\x06\\x0a\\x29\\xa3\\x33\\x4b\\x61\\x54\\x1d\\x1b\\x92\\x9c\\x53\\xbf\\x90\\x58\\xdf\\x96\\x66\\xc8\\xf2\\xac\\xe4\\x97\\xb0\\x9a\\x73\\x64\\x45\\xb0\\x0d\\x0a\\xa4\\xce\\x2b\\x0e\\x90\\xb5\\x6f\\xd0\\x34\\x53\\xc8\\x76\\x3c\\x51\\x20\\xb7\\x78\\xf9\\xa0\\x33\\x51\\xf4\\x0b\\xa9\\x9e\\xeb\\x97\\x4b\\x3f\\x8f\\xee\\xf8\\xd3\\x86\\x6d\\x25\\xf7\\xb1\\xf3\\x36\\x56\\x6e\\xe9\\x4b\\x50\\x5f\\x8f\\xf1\\xa0\\x17\\xf7\\x45\\xa0\\x55\\x43\\xbd\\xa1\\xa9\\x5b\\x0e\\xbb\\x53\\x8f\\xed\\xf8\\xfd\\xf6\\x48\\x3c\\x56\\x57\\xbc\\x7f\\xf7\\xfa\\x17\\x2f\\xdf\\xde\\x8e\\xd2\\x47\\x3e\\x49\\xb1\\x4d\\x93\\xf0\\x59\\x63\\xf9\\x97\\xf5\\xad\\x76\\xd7\\xf5\\x5d\\xc7\\x23\\x2f\\xee\\x25\\xac\\x85\\xf1\\x99\\x86\\x5f\\x0a\\xf3\\x6e\\xeb\\x60\\x0b\\xaa\\x21\\xa3\\x4d\\x0c\\xeb\\x75\\x9c\\x25\\xec\\x12\\xc6\\x2f\\xee\\x89\\x7b\\xb4\\x0e\\xff\\x73\\x62\\xda\\x0a\\x4d\\x89\\xe9\\x3e\\xbc\\x37\\xc1\\x41\\x13\\xf0\\x9b\\x5a\\xae\\x2c\\x0a\\xeb\\x76\\x57\\x1c\\xf9\\x36\\xe0\\x55\\x55\\xe8\\x38\\x9a\\x85\\xed\\xc0\\x4d\\x61\\x77\\xa9\\x25\\xf9\\x1b\\x18\\xb1\\x86\\x9e\\x5d\\x74\\xc7\\xf9\\x7c\\x5c\\x78\\x4c\\x9a\\x15\\x5a\\xee\\xd9\\x5c\\x63\\x25\\x7d\\xe9\\x7d\\x02\\xc3\\x31\\xce\\x19\\x26\\xb0\\x76\\x84\\x12\\x2d\\xd3\\x39\\xfc\\xe9\\x60\\xd5\\xf7\\x75\\x6a\\x21\\x85\\x36\\xb8\\xc7\\x92\\x64\\x13\\xe7\\x15\\xab\\x58\\x48\\x76\\x0c\\x69\\x38\\xe3\\x19\\x27\\x76\\x08\\xb2\\xb9\\x3d\\x27\\xb9\\x3c\\xd6\\xe9\\x00\\x7b\\x1f\\x34\\x79\\x5b\\xb2\\x42\\x9a\\x12\\xb1\\x4d\\xa0\\x37\\xe7\\x0d\\xf9\\x61\\x31\\x1b\\x38\\xce\\xb0\\x66\\xe3\\x78\\xe4\\xc5\\x3d\\xd2\\x1c\\x80\\xca\\x98\\x72\\x51\\x19\\x89\\x17\\x95\\x99\\xe2\\x4f\\x57\\xd9\\x1c\\x06\\x7a\\xde\\x86\\xe9\\x6f\\xa9\\xac\\x1e\\x03\\x95\\x65\\x5f\\x35\\xd4\\x1b\\x45\\x65\\x43\\xa5\\x15\\x95\\x1d\\xbf\\xbf\\xb8\\xe7\\x95\\x90\\xd2\\xcf\\x42\\x0c\\xe3\\x1a\\xb2\\xd6\\xca\\xa0\\x3b\\xa2\\x5c\\xd9\\x95\\x88\\x35\\xf6\\x55\\x70\\x82\\x47\\x24\\x84\\x24\\x19\\xd7\\x13\\x17\\x60\\x14\\x22\\x99\\x10\\x90\\x84\\xc6\\xbe\\x72\\x5a\\xd2\\x68\\x5c\\x92\\xb1\\x74\\x9d\\x0c\\x8b\\x8c\\x17\\x1c\\xdb\\x61\\x81\\x21\\x6a\\x10\\x18\\x74\\x20\\xa5\\x20\\x29\\x2d\\xdf\\x65\\x30\\x7d\\xe8\\x71\\xd5\\x75\\x97\\x40\\x34\\xb1\\xe2\\x68\\x59\\xdc\\x32\\xa4\\x0e\\x27\\x59\\x9e\\x5e\\xa2\\xeb\\x28\\xc7\\xea\\xd9\\xbe\\x0a\\x25\\xc7\\xf9\\x91\\x15\\x14\\x87\\x9e\\x11\\xac\\x00\\x63\\x59\\x45\\x0d\\xae\\xe1\\xc6\\x50\\xb0\\x0c\\x95\\xbd\\xae\\x09\\x17\\xbe\\xbc\\x4b\\x18\\xd1\\xac\\x45\\x0e\\xb8\\x21\\xc1\\x4f\\x81\\x0a\\x29\\xe9\\xce\\x8e\\x2b\\x4c\\x18\\xa1\\x3e\\x89\\x15\\xfb\\x07\\x22\\x49\\x79\\x8a\\xb4\\xb1\\xc2\\xdc\\x77\\x26\\x43\\xa2\\x64\\xa8\\xea\\x3a\\xcd\\x65\\x6d\\xcc\\xbd\\xa4\\xc6\\x8c\\x44\\x46\\x9e\\x81\\xf8\\x9a\\x6c\\xc3\\x06\\xc2\\x0c\\x60\\xde\\x12\\x1c\\xbf\\xcd\\x0e\\x3f\\x6f\\xea\\x6a\\x67\\x16\\xb9\\xd4\\x7c\\xdc\\x26\\xc2\\xc7\\xea\\x9f\\xeb\\xb1\\x58\\xcf\\x3a\\xee\\x15\\x86\\x75\\x19\\x7b\\x60\\x40\\x4a\\x90\\x29\\x14\\x2b\\x33\\x56\\xb0\\x03\\x0c\\xc5\\xe2\\x81\\x38\\x7a\\x1e\\x63\\x77\\xa1\\x56\\xfb\\x23\\x0e\\xbd\\x94\\x43\\x07\\x61\\x25\\xb8\\x95\\x60\\x83\\x30\\x8f\\x13\\xed\\xb8\\xa4\\xb6\\x15\\x68\\xce\\x8a\\x34\\xa3\\x27\\x72\\x5b\\x51\\x21\\x04\\x33\\x03\\xb2\\xfe\\x3a\\x4e\\x66\\x3d\\xd1\\x61\\x7c\\x3f\\x85\\x22\\xe1\\x3a\\xce\\xfd\\x8e\\x23\\xcf\\xc5\\x58\\xa7\\xeb\\xdd\\x9d\\x28\\x18\\xc7\\x53\\x9c\\x8a\\xd4\\xb2\\x90\\xbe\\xf8\\xca\\x69\\x5c\\x68\\x0c\\x81\\x7f\\x55\\x80\\xd3\\x0f\\xbc\\x07\\x04\\xba\\xcb\\x21\\xb3\\x48\\xfb\\x44\\xd1\\x27\\x57\\x23\\xbc\\x23\\xc5\\x12\\x52\\xfb\\x17\\x01\\x4f\\xce\\x95\\x04\\x47\\xa2\\xe3\\x04\\xa6\\x45\\x66\\x4b\\x8c\\x53\\x53\\x24\\x23\\xd2\\xf0\\x69\\x85\\x93\\x0f\\xcd\\x8b\\x05\\xc1\\x51\\xce\\x65\\x00\\x9f\\xdf\\x1b\\xdc\\x80\\x78\\xc7\\x35\\x7a\\x83\\x29\\x7c\\x94\\x98\\x03\\xad\\xfe\\x0a\\x12\\xa1\\xee\\x36\\x1d\\x27\\xac\\x87\\x23\\xd7\\x68\\x15\\x96\\x8b\\x4d\\x77\\x9f\\x01\\xb5\\x51\\x0d\\xfc\\xc8\\xbb\\x31\\x6c\\x9d\\x39\\xa6\\xbc\\xe3\\x5a\\xbb\\x58\\x0d\\xf4\\xd0\\x95\\xee\\xc1\\x74\\xd6\\x9b\\xc9\\x81\\x3a\\x93\\x02\\xd1\\x82\\x38\\xbb\\xac\\x07\\x7e\\xaf\\xd6\\x41\\xcc\\x5a\\xa0\\x48\\xe6\\xd1\\xcb\\x9b\\x64\\xf4\\xea\\xb1\\x82\\xef\\x07\\xdf\\x93\\x82\\xee\\xff\\xfd\\x63\\x7e\\xee\\xe1\\x93\\x6c\\x1a\\x67\\xe3\\x58\\x7e\\x70\\xc9\\x7e\\x36\\x1f\\xdb\\xf5\\xce\\xed\\xee\\x3f\\x56\\x70\\xfd\\xe0\\x79\\x79\\xf8\\x1f\\xa5\\xfb\\x1d\\x3d\\x2e\\x1a\\xee\\x63\\x83\\x6d\\xd0\\x0a\\x07\\x90\\x6f\\xd7\\x5b\\xb7\\xfb\\xff\\x58\\x09\\xf6\\x83\\x95\\xee\\xf0\\xe7\\x6f\\x5f\\x3f\\x73\\xe6\\xf4\\x3f\\xc2\\x47\\x40\\x81\\x4e\\xce\\x7c\\x21\\x1b\\x8a\\x13\\x12\\xe1\\x2b\\x12\\x4c\\x48\\x62\\x8a\\x5f\\xd9\\xe5\\x42\\xce\\xba\\xe1\\xe0\\x9b\\x74\\x3b\\x07\\xe9\\xf6\\xe9\\xd5\\xdb\\x5f\\xf9\\x58\\x59\\xf5\\x83\\xe7\\x9d\\xba\\xff\\x31\\x3e\\x70\\xd4\\x16\\x91\\x4e\\xfb\\x2a\\x40\\x3a\\xe7\\x46\\x51\\x3c\\x46\\xaa\\xff\\x43\\x67\\xd6\\x42\\x75\\x39\\xfc\\x20\\x9d\\x62\\x87\\x16\\xca\\x71\\x36\\x60\\x3d\\x23\\x1d\\x87\\x06\\x92\\x97\\xe0\\xec\\x78\\xab\\x17\\x2f\\xbc\\xa3\\xe8\\xba\\xc2\\xa0\\xe3\\xf0\\xb6\\x23\\x47\\x16\\xb3\\xd1\\xc8\\xbb\\x6f\\x38\\xe7\\xd8\\xc5\\xf7\\x55\\xc8\\xde\\xb8\\x80\\x7c\\xb0\\xc2\\x1d\\x8e\\xb2\\x1f\\xbb\\x6a\\x7a\\x5f\\x18\\x3f\\x93\\x11\\x2c\\x49\\x70\\x4b\\x29\\xc1\\x27\\x8b\\xf9\\x71\\x75\\xbe\\xc4\\x74\\x3c\\xdc\\x07\\xe4\\x72\\x8a\\x61\\x7b\\x16\\xad\\xc1\\x27\\x40\\x7a\\x11\\xdd\\xa1\\x64\\xcc\\x51\\xb8\\x6f\\x7d\\xfb\\xed\\x09\\x7a\\xac\\x55\\xfa\\xc1\\xf7\\xfa\\xb0\\xfc\\x63\\xcc\\x11\\x97\\x4c\\x13\\xa4\\xfb\\x2a\\x68\\x2f\\x78\\xd3\\x28\\x7c\\x99\\x94\\xd7\\x28\\x09\\x96\\xd4\\x58\\x49\\xdf\\x53\\xc6\\xae\\xb4\\x0a\\x2b\\x21\\x7d\\x4a\\x47\\xd8\\x01\\x1e\\x46\\x7e\\x99\\x7a\\xdd\\x58\\xef\\x50\\x33\\x86\\xb4\\x04\\x2d\\xdc\\x72\\xb7\\xf5\\xb0\\xf3\\x91\\x85\\xdb\\x7b\\x5f\\x35\\xdb\\xe8\\x3b\\x50\\xaf\\x8d\\xda\\x24\\x90\\x94\\x7e\\xac\\x6e\\x38\\xaf\\x4c\\x4a\\x78\\xfd\\xda\\xe7\\x17\\xd0\\x9c\\xa3\\x8d\\x55\\xd0\\xde\\x20\\xd9\\x55\\xf3\\x38\\x3a\\x36\\x3b\\xcf\\x24\\xf4\\x3e\\x91\\xcf\\x9c\\x52\\x12\\x87\\x79\\xd1\\x71\\x22\\xff\\xfa\\xb0\\xe1\\x47\\xef\\xc7\\x38\\x7a\\xbf\\xfc\\xc1\\xab\\xea\\x55\\xf2\\x8c\\x86\\x9b\\xee\\xba\\x1e\\x77\\x5e\\xfe\\x99\\x64\\xe3\\xa8\\xdb\\x32\\x91\\x2b\\xb1\\x0a\\x0d\\xcd\\xda\\x38\\xce\\xb0\\xad\\x87\\xd1\\xb5\\x7a\\xfd\\xda\\xeb\\xdb\\xb4\\xf1\\x58\\x0f\\xf8\\x83\\x0f\\xcf\\xb9\\x4f\\xff\\x63\\xd0\\x85\\x32\\x35\\x0a\\xe1\\x7d\\x15\\x8e\\xc0\\x4c\\x4a\\xea\\x10\\xca\\x29\\x83\\x27\\x52\\x6c\\x8c\\x12\\x9e\\xe1\\xbe\\xca\\x87\\x3f\\xeb\\x60\\x9c\\xf5\\xb9\\x6e\\x45\\xad\\xf8\\x44\\x08\\xb0\\xaf\\xd7\\x53\\xf9\\x0e\\x35\\x23\\xe7\\x96\\xc3\\x6f\\xa1\\x86\\xd3\\x6c\\x3d\\x6c\\xb5\\xf5\\x22\\xee\\xca\\x74\\xd5\\x6c\\xda\\xf7\\x22\\x09\\x02\\x28\\xa8\\x46\\xeb\\x16\\xba\\x61\\x43\\xa0\\xda\\x21\\xaf\\x5f\\x8e\\x3e\\x17\\x50\\xb0\\xd5\\x7b\\x14\\x40\\x7b\\xb5\\xc7\\x39\\x72\\xd4\\xd5\\x24\\x96\\xa0\\x53\\x90\\xb6\\xfe\\x42\\x26\\xad\\xba\\x85\\xc3\\x27\\xeb\\xad\\x55\\x88\\x68\\x6b\\x33\\xe9\\x47\\x3f\\xb2\\x2a\\x2c\\x79\\x6e\\xb9\\xab\\xd5\\x2f\\x7d\\xa5\\x12\\x44\\xab\\x37\\x67\\xf3\\xb1\\xde\\xf3\\x07\\xcf\\x1c\\x92\\x45\\x01\\x11\\x4f\\xe9\\x22\\xa2\\x67\\x65\\xdd\\x44\\x3a\\x82\\x4b\\x37\\xbb\\x26\\x01\\x27\\xb2\\x12\\x18\\x39\\xcf\\xa3\\xe7\\x25\\x9d\\xd7\\xd1\\x59\\x2e\\x86\\x1f\\x0e\\x4f\\xf9\\x12\\xa7\\xee\\x5d\\x81\\xc2\\x2f\\x44\\xdd\\x37\\x5d\\x90\\xbc\\x6a\\xbf\\xdd\\xd9\\xc7\\xba\\xce\\xbf\\xf8\\x3e\\xa5\\xdf\\x1f\\xdb\\xb9\\x73\\x77\\xbf\\x73\\xee\\x5c\\xfb\\xff\\xd6\\xb9\\x73\\xf7\\x38\\x4e\\xb3\\x6f\\x45\\xfe\\x27\\xb8\\x96\\x69\\x3b\\x19\\xad\\x53\\x99\\x9d\\x91\\x95\\xe2\\x54\\x9b\\xa6\\x09\\x32\\xc7\\x41\\x5f\\x77\\x62\\x1a\\xfb\\x2a\\xc4\\xfa\\x96\\x13\\x5c\\xef\\x62\\xb4\\x93\\x64\\x4e\\x0f\\xba\\x43\\xd4\\xaa\\x31\\xb7\\x93\\x9a\\x6c\\x87\\xe2\\x54\\xe0\\x0d\\x53\\x85\\x86\\x00\\x4b\\xe8\\xc3\\x10\\x0f\\x4b\\x1d\\x6a\\x80\\x13\\x79\\xae\\x5b\\x64\\x8c\\x7c\\x8c\\x27\\x12\\xda\\xd6\\xc9\\x74\\xe7\\xb8\\x95\\xa6\\xbb\\xa8\\xe8\\xb1\\xe6\\xf8\\x47\\xcf\\x43\\xdc\\x3f\\xe4\\x6c\\xb8\\x7b\\x78\\x1b\\x9a\\xe4\\xd9\\xc4\\xb7\\x1a\\x03\\x4a\\x8a\\xb3\\x45\\x6e\\xd7\\x3b\\xb7\\xfb\\xf9\\x58\\xd5\\xfb\\xa3\\xe7\\xb1\\xec\\x1f\\xd6\\x4f\\x42\\xd7\\xf4\\x4c\\x9d\\x72\\x83\\xf3\\x95\\x89\\x9d\\x8d\\x6d\\xbb\\xde\\xba\\xdd\\xd1\\xc7\\x6a\\xe1\\x1f\\xfd\\x03\\x40\\xeb\\x1f\\xd4\\xdb\\xe5\\x0d\\xea\\x24\\x17\\xb2\\xb4\\x73\\x0c\\xdf\\x70\\x92\\x45\\x10\\x6f\\x8a\\xa8\\xc7\\xb4\\x33\\x07\\x5f\\xc8\\xc9\\x36\\xab\\xbd\\x39\\x6b\\xb7\\x61\\xd9\\x3e\\xbd\\x7a\\xfb\\x73\\x1e\\xab\\x46\\x7f\\xf4\\xbd\\xe0\\xe7\\x0f\\xfa\\x18\\xf6\\xda\\x19\\xba\\xed\\xab\\x50\\x12\\x76\\x54\\xc1\\x74\\x32\\xd2\\x4a\\x8f\\xc3\\x46\\x54\\x18\\x4e\\x00\\xdd\\xa4\\xef\\xba\\x90\\x5f\\x6f\\x50\\xfc\\x26\\xd3\\x2c\\x69\\x15\\x0f\\xc3\\xa1\\xa2\\x5e\\x37\\x20\\xf6\\x6e\\x08\\x87\\x21\\x0f\\xc8\\xf6\\x77\\xe4\\xe6\\xeb\\x61\\xa7\\x58\\x7a\\x63\\x1b\\xb4\\x6a\\xb6\\x24\\x9c\\x94\\x81\\x14\\x9c\\x68\\xd4\\x8a\\xb3\\x55\\x37\\x9c\\x7c\\xa2\\x63\\xf5\\xfa\\xb5\\xcf\\x2b\\x18\\x01\\x6d\\xac\\x82\\x10\\x4e\\xce\\x40\\xf3\\xb5\\xca\\x29\\x86\\xac\\x03\\xb3\\x93\\xc6\\x44\\x76\\xe7\\xe4\\xb1\\x8f\\xbe\\x0a\\x6d\\xc8\\xf1\\x61\\x23\\x8e\\xde\\x2f\\xbf\\x94\\x80\\x1f\\x30\\x1d\\xfd\\x5f\\x25\\x6c\\xe0\\xeb\\x90\\x2c\\xb3\\xf5\\x82\\xd3\\x72\\x04\\x22\\xcb\\xa3\\x76\\x8b\\x81\\xc0\\x33\\x5a\\x96\\x73\\xdc\\xca\\xea\\xca\\x1d\\x1e\\x46\\xe7\\xb0\\x9d\\x1f\\xfd\\xbe\\x4d\\x06\\x8f\\xf5\\xcc\\x3f\\xfe\\x1e\\x36\\xf1\\x07\\x9c\\xa1\\x77\\x0f\\xb3\\x7a\\x89\\xbc\\x3a\\x74\\xe3\\x05\\xd8\\x1d\\x3c\\xe3\\x7a\\xe7\\x76\\x3f\\x1f\\x6b\\x81\\x7f\\xfc\\x3d\\x6c\\xe2\\x0f\\xe9\\x27\\x54\\x17\\x25\\xdb\\x8e\\xf0\\xcd\\x91\\xb6\\x4e\\xf5\\xac\\x29\\xdb\\xf5\\xce\\xed\\x7e\\x3e\\xd6\\x92\\xfe\\xf8\\x1f\\xc2\\x25\\xfe\\x90\\xce\\x2e\\x0a\\xf9\\x24\\xc2\\x9a\\x6e\\xb5\\x5f\\x2c\\x11\\x16\\x14\\x52\\x22\\xac\\xf4\\x43\\x84\\xad\\x8d\\xa3\\x44\\x58\\x4f\\xda\\xae\\x6f\\xde\\xfe\\x98\\xc7\\xda\\xb6\\x1f\\x7f\\x3f\\x8f\\xf8\\x43\\x3e\\x05\\x30\\x04\\x92\\x10\\x0a\\x25\\x09\\x01\\x06\\x96\\x24\\x04\\xa9\\xae\\x24\\xa1\\xde\\x0f\\x49\\xa8\\x76\\x96\\x92\\x84\\x24\\xed\\x90\\x84\\xa8\\x1f\\x92\\x10\\x04\\x75\\x78\\xcc\\xd2\\x7a\\x1d\\x2e\\x17\\x55\\x33\\x0a\\x85\\x46\\x35\\xe9\\x6e\\x49\\x42\\xf5\\x30\\x24\\xa1\\x7a\\x1d\\x92\\x10\\xf6\\xac\\x92\\x84\\xd8\\x0e\\x49\\xa8\\xf7\\x43\\x12\\xb2\\x38\\x24\\x21\\x64\\xdd\\x2f\\x49\\xe8\\xe8\\xf3\\x8b\\x7b\\x10\\x4a\\xb5\\xb1\\x0a\\x48\\x10\\x7b\\xf4\\x1e\\x91\\x28\\x25\\x09\\x21\\x9b\\x27\\x24\\x21\\xb1\\x43\\x12\\xf2\\x55\\x68\\x39\\x8e\\x0f\\xc3\\x71\\xe2\\x90\\x84\\xfc\\xe8\\xfd\\x88\\xa3\\xf7\\x28\\x40\\x0e\\x72\\x3a\\xe4\\x20\\xf0\\x3c\\xd6\\x89\\xd7\\x21\\x07\\xe1\\xe4\\xd2\\x92\\x83\\xfa\\x2a\\xac\\x14\\xa2\\x90\\x83\\x24\\xee\\x96\\x1c\\x04\\x09\\xdd\\x75\\x5e\\xfb\\x7c\\x93\\x04\\xbe\\x7c\\xac\\x29\\xfb\\xd1\\xb7\\xbf\\xef\\x2b\\x60\\xd7\\xc9\\x37\\x6b\\xfd\\xe2\\x2a\\xe7\\x13\\xc7\\x05\\xca\\x21\\xb3\\xe3\\x18\\x5e\\x61\\xa8\\x45\\xd7\\x31\\xbc\\xe3\\x7a\\x0c\\xef\\xb8\\x1e\\xc3\\x8b\\xd3\\x9d\\xd6\\x31\\xbc\\xf1\\xbb\\xc7\\xf0\\xc6\\x71\\x0c\\x2f\\xf1\\x71\\x0c\\xef\\x58\\xc7\\xf0\\xe2\\x98\\x86\\x31\\x0d\\x69\\x5f\\xc8\\xec\\xc5\\xbd\\xbb\\x21\\x25\\xb4\\xca\\x71\\x12\\xaf\\x3a\\x72\\x53\\xe1\\x24\\xde\\x3c\\x4e\\xe2\\x1d\\xc7\\x49\\xbc\\x7e\\x9c\\xc4\\x9b\\x72\\xf7\\xe9\\x24\\xde\\x3c\\x4e\\xe2\\xf5\\xe3\\x24\\x5e\\x58\\x8f\\x71\\xde\\xfc\\xf5\\x24\\x5e\\xb9\\x9e\\xc4\\x2b\\x89\\xaf\\x73\\xb7\\xfa\\xda\\xdb\\x83\\xf7\\x58\\x4f\\xf7\\x57\\xdf\\x13\\xd6\\xff\\xff\\xf8\\xb8\\xc6\\xfb\\x11\\x57\\x45\\x4f\\x5c\\x15\\x3d\\x7e\\x55\\xf4\\xd0\\x55\\xd1\\x63\\x57\\x45\\x8f\\x5f\\x15\\x3d\\x74\\x55\\xf4\\xc4\\x55\\xd1\\x43\\x57\\x45\\x8f\\x5e\\x15\\x3d\\x75\\x0b\\x8a\\x1e\\xbd\\x2a\\x7a\\xe8\\x50\\xf4\\x48\\xd6\\x7e\\xd3\\x7d\\x63\\xbd\\x2a\\x7a\\xf4\\xaa\\xe8\\xf1\\xab\\xa2\\xa7\\x5f\\x15\\x3d\\x71\\x55\\xf4\\xf8\\x55\\xd1\\xd3\\xaf\\x8a\\x1e\\xb9\\x2a\\x7a\\xfa\\x55\\xd1\\x13\\x57\\x45\\x8f\\x1e\\x8a\\x1e\\x44\\xb6\\xac\\xe0\\x8f\\xab\\xa2\\x47\\xae\\x8a\\x9e\\xf8\\x1e\\x45\\xcf\\x97\\x8f\\xf5\\x8d\\x3f\\xf9\\x9e\\x4d\\xee\\x8f\\xee\\xf8\\xca\\xbb\\xdf\\x3d\\xbe\\xb2\\xfd\\xf1\\x1d\\x5f\\x79\\x1f\\x8c\\xa4\\xe7\\x79\\xb6\\x3e\\x36\\xd6\\x9a\\x7d\\x8d\\xb3\\x19\\x6d\\xd7\\x3b\\xb7\\x67\\xf7\\xb1\\x9e\\xf5\\x27\\xdf\\x03\\x0d\\xfe\\xf3\\xec\\xfe\\xa7\\x9e\\x5d\\xf8\\xa0\\xa6\\xea\\x79\\x0c\\xda\\xe0\\xfe\\x6b\\x6e\\x67\\x1d\\xb9\\x5d\\xef\\xdc\\x9e\\xdd\\xc7\\x4a\\xda\\x9f\\xfc\\x43\\x00\\xd5\\x1f\\xc9\\x14\\xdf\\x3d\\x7d\\xfe\\xec\\x1f\\xe3\\x14\\x0f\\xe8\\x88\\x55\\x20\\x8c\\x9e\\xc3\\x07\\x12\\xb6\\x51\\x28\\x6f\\xb0\\x10\\xd4\\xaf\\xac\\x76\\x21\\x57\\xdb\\x4c\\xec\\x8e\\x32\\xfd\\xec\\xc3\\xb7\\xeb\\x9b\\xb7\\x49\\xe0\\xb1\\x2e\\xf6\\x27\\xdf\\x9b\\x1d\\xe7\\x8f\\x62\\xf6\\xff\\x7f\\xb4\\xc0\\x11\\xa4\\x5a\\x7b\\xfa\\x2a\\x48\\x21\\x54\\x5d\\x62\\xf1\\x28\\xf8\\x16\\x64\\x33\\x4b\\x06\\x77\\x1b\\x33\\xbc\\xc4\\x73\\xc9\\x1d\\x67\\x40\\x38\\x52\\xb8\\x16\\x09\\x1c\\x89\\x82\\xc9\\x93\\x70\\xa8\\x02\\x05\\xd1\\x84\\x19\\x2e\\xd8\\x76\\x9c\\xab\\x11\\x6c\\x4d\\x17\\x9e\\x59\\xa9\\x53\\xc9\\x39\\x36\\x5e\\xe2\\x6e\\xec\\x28\\x44\\x5f\\xd6\\x7b\\x0a\\xb5\\x29\\x0b\\x2d\\x28\\x86\\x82\\x12\\x4e\\x78\\xde\\x68\\x74\\xc1\\x89\\xff\\x55\\x68\\x38\\xa8\\x23\\x11\\x9f\\x37\\x16\\x44\\x01\\x52\\x2d\\x49\\x02\\xc1\\x0b\\x49\\xbe\\xc3\\x8f\\xab\\x60\\x15\\xf2\\x88\\x25\\x12\\x40\\x0c\\xe8\\xd7\\xb7\\xeb\\xb7\\xdf\\xa6\\xdf\\xc7\\xda\\xe7\\x9f\\x7c\\xbf\\x18\\xf5\\x9f\\x49\\xf8\\x3f\\x35\\x09\\x33\\x12\\x7d\\x8a\\xed\\xab\\xe0\\x04\\x87\\x16\\x82\\xcf\\x24\\x34\\x9a\\x45\\x44\\x35\\x64\\x69\\x7d\\x4a\\xf4\\xbb\\xa2\\x94\\x1d\\xa7\\xff\\x41\\x9c\\x60\\xdc\\x3a\\x9c\\x3c\\xeb\\x61\\x1d\\xbe\\x5e\\x07\\xa1\\x55\\xcd\\xab\\x80\\xb3\\x43\\x0b\\x41\\xa7\\xaf\\x87\\x5d\\x03\\x19\\x61\\xc9\\x99\\xe0\\x9d\\x41\\x4e\\xb4\\x8b\\xae\\x42\\x43\\xa3\\xce\\x7d\\x75\\xc3\\x91\\xcb\\x48\\xd7\\xeb\\xd7\\x3e\\xbf\\xb8\\xc7\\xa6\\x5a\\x6d\\xac\\x82\\xd7\\x47\\x1f\\xbd\\x8f\\xa5\\x3a\\x93\\x95\\xfe\\x29\\x75\\x2c\\x41\\x20\\x71\\x54\\xc1\\x2a\\xb4\\xd1\\x8f\\x0f\\x1b\\x7a\\xf4\\x1e\\x99\\x6e\\xeb\\x75\\x58\\x10\\xaa\\xe6\\x91\\x7e\\x47\\xd1\\xb3\\xe1\\x96\\xa7\\xad\\x87\\x5d\\x6d\\xe2\\x75\\xa7\\xa3\\x66\\xef\\x63\\x4f\\x5e\\x05\\xc4\\x6b\\x93\\x53\\xae\\x6e\\xd4\\xc3\\xb1\\x8c\\x91\\x2b\\x44\\x14\\xbd\\xbf\\xb9\\x70\\x1e\\x5b\\x42\\xbe\\xfe\\xee\\xed\\xb7\\x6f\\xbe\\x79\\x7b\\x3b\\x5b\\x0e\\x59\\x34\\x09\\xda\\x6a\\x91\\x7b\\xfa\\x46\\x88\\x38\\xe9\\x84\\x33\\x00\\x88\\xdc\\x90\\x3e\\x34\\x8d\\x0f\\x1f\\x47\\xa4\\xa4\\xc1\\x59\\x79\\x9d\\xb6\\x18\\xbc\\x5e\\xaa\\x5f\\xaa\\x96\\x7a\\x86\\x7b\\xe0\\x1d\\xe3\\x8e\\x4a\\x70\\xe4\\xe9\\x6a\\xe5\\x76\\xbf\\x1f\\xeb\\xde\\x7f\\xf2\\xfc\\x79\\x95\\x08\\x4f\\x5c\\xab\\xdd\\xf8\\xba\\xda\\xed\\xba\\xda\\xf3\\x58\\xed\\x38\\x28\\xdc\\x57\\x72\\xcb\\xdd\\x70\\xec\\x59\\x6f\\xd0\\x5e\\xcc\\xea\\x98\\xdb\\xc6\\x42\\xed\\x34\\xec\\xac\\xb9\\x31\\x26\\x54\\x76\\xc2\\x21\\x7c\\xc8\\x78\\xb4\\xd2\\x78\\xd8\\x6f\\xd9\\x80\\x2d\\x36\\xc0\\xc7\\x2a\\x3e\\x0e\\x16\\x2f\\x36\\xe0\\x07\\x1b\\xa0\\x7e\\x75\\x53\\x3e\\x0e\\x66\\x0e\\xa7\\xbb\\x92\\x3b\\x91\\xda\\x87\\x64\\xe4\\x06\\xef\\x64\\xa3\\x3c\\x13\\x29\\xf4\\xce\\x82\\x60\\x98\\x1d\\x69\\xbd\\x88\\xb1\\xe6\\x57\\x30\\x40\\xac\\x78\\xcc\\xdf\\xe1\\x13\\x71\\xf0\\x09\\x47\\xe2\\xc6\\x74\\x69\\x83\\x79\\x22\\xab\\x41\\xef\\x0c\\xf5\\x15\\x67\\xec\\xd5\\x70\\x71\\x76\\xa3\\xe3\\x74\\x2f\\xa2\\x63\\x79\\x8f\\x63\\x79\\xc7\\xb1\\xbc\\x7d\\x2d\\xef\\x1a\\x44\\x2c\\xef\\xf8\\xed\\xf2\\xae\\x75\\x05\\xde\\x11\\xbd\\x59\\x7a\\x93\\x58\\x0e\\x99\\xc8\\xab\\x91\\x63\\x0b\\x0c\\x52\\xf6\\x65\\xc5\\x62\\x42\\x22\\xe6\\x12\\xf7\\xbd\\x86\\xe1\\xee\\x38\\xf8\\x9c\\xaf\\x6c\\xca\\x0f\\x36\\xc5\\x07\\x4f\\x5b\\x07\\x9f\\x8f\\xe3\\xe0\\x73\\xb0\\xa9\\xdb\\xe4\\xf1\\xd8\\xe4\\xf1\\xd3\\xef\\x13\\x47\\xff\\x18\\x4f\\x37\\xbe\\x0f\\xa4\\x6a\\x84\\x4f\\x50\\x6d\\xd1\\x87\\xbb\\x90\\xd9\\xd8\\x42\\xe0\\xe0\\xf4\\x0c\\xe8\\x7f\\x6c\\x6b\\xf9\\xe9\\xf7\\x89\\x74\\x7f\\x94\\x23\\xe4\\x43\\xee\\x28\\xb9\\x9f\\xc7\\x18\\x5b\\x40\\x8b\\xaf\\x74\\xb6\\xee\\x1b\\xe2\\x02\\x92\\x6f\\x7b\\xe3\\x7e\\xf9\\xd8\\x7c\\xf3\\xd3\\x7f\\x90\\x58\\xf4\\x47\\x33\\x4c\\x77\\xbf\\x33\\x4c\\x48\\x1d\\xe1\\x34\\x2e\\x64\\x83\\xce\\x11\\x81\\x4c\\x54\\x14\\x94\\x9b\\x06\\x54\\x9b\\x74\\x66\\x83\\x93\\x16\\x6d\\x48\\xcb\\x96\\xce\\xe7\\xe8\\xba\\x5d\\xdf\\xbc\\x3d\\x8c\\x8f\\xcd\\x1f\\x3f\\xfd\\x07\\x40\\xb3\\x3f\\xca\\x41\\xe4\\x65\\x39\\xfc\\xbf\\xd8\\xbb\\x9a\\x1e\\xc9\\x8d\\x23\\x7b\\xaf\\x5f\\x91\\x7f\\xa0\\xb1\\x19\\xdf\\x99\\x97\\x3d\\xd7\\x81\\x7d\\x20\\x40\\x14\\xb0\\x73\\x1b\\xad\\x46\\xda\\x01\\x64\\x0d\\xd6\\xb2\\x0c\\xf8\\xdf\\x2f\\xe2\\x45\\xb2\\xa5\\x2d\\xbb\\xba\\x47\\x86\\x31\\xc0\\xc0\\x73\\xaa\\xec\\xe6\\x47\\x26\\xc9\\x60\\x30\\x32\\xe3\\xc5\\x7b\\xb4\\x57\\x43\\xa2\\x15\\x86\\xc7\\x7b\\x29\\xf2\\x8f\\xde\\x0f\\x29\\x30\\x8e\\xc3\\x29\\xd2\\x10\\x2f\\x0d\\xfc\\x21\\xde\\xb4\\x00\\x48\\x51\\x25\\xa0\\x03\\xe2\\x08\\x5a\\x87\\x17\\xdc\\x88\\x68\\x2f\\x70\\xd1\\x30\\xa8\\x70\\x91\\x3b\\xd7\\xce\\xce\\x72\\xa8\\x2c\\x28\\x0e\\xce\\x6c\\x23\\x76\\xd1\\x6a\\x80\\x40\\x86\\x6c\\x7a\\x0d\\xc3\\x99\\x0b\\x5c\\xe4\\x28\\xfe\\xaf\\x31\\xbf\\x7b\\xc6\\xcb\\x91\\x7d\\x54\\x43\\xa2\\x15\\x82\\xc7\\xfb\\x11\\x9e\\x13\\x04\\xc4\\x97\\x78\\x9b\\x0c\\x42\\x06\\x84\\x2f\\x4b\\x81\\xa5\\xac\\x4d\\x5a\\x17\\x36\\x6d\\x8d\\x7e\\x8e\\x35\\xfa\\x82\\x1b\\x11\\xed\\x05\\x2d\\x1a\\x60\\x78\\x2a\\x30\\x0a\\x76\\x2e\\x96\\x51\\x0c\\x71\\x9d\\xd9\\x86\\xed\\x83\\xab\\x01\\xb6\\xad\\xc2\\xcb\\x78\\xaf\\x9d\\x31\\xb0\\xc2\\xb2\\xac\\xd1\\x3f\\x34\\xbe\\xfb\\x9c\\xd6\\x7f\\xbd\\xee\\xe5\\xfe\\x15\\x8a\\xe2\\xcf\\x8e\\x05\\xf4\\xc2\\x6d\\xca\\x16\\xec\\x27\\x6e\\xb3\\x6f\\xe7\\xa6\\xc7\\x03\\xbe\\x4f\\x6e\\x1d\\xff\\xf3\\xe9\\xcf\\x8f\\x61\\xd7\\xba\\xc6\\x79\\x23\\x1a\\x76\\x75\\xe5\\x3d\\xc0\\x54\\x9b\\xb7\\x0d\\x90\\x12\\xe3\\x03\\x02\\x2a\\x60\\x6f\\x20\\x92\\xd9\\x26\\x8d\\x03\\x25\\x0b\\x21\\x63\\x47\\x03\\x6c\\x08\\xb9\\xc9\\x6c\\x14\\xff\\x9f\\x92\\x03\\xb3\\x28\\x2c\\x80\\x5c\\xf3\\x98\\x57\\x25\\xa4\\x96\\xc4\\xd7\\x52\\x39\\xd9\\x3b\\x74\\x3f\\x9d\\x6e\\x46\\x52\\x9d\\x53\\x6f\\x46\\x20\\xe9\\x6c\\x26\\x04\\x62\\x5c\\x43\\x12\\x80\\x50\\xc3\\x38\\xa6\\x5d\\x42\\x7c\\x1f\\xd3\\x5a\\xa0\\xbc\\x96\\xda\\xb9\\xce\\x3c\\x26\\xa3\\xc2\\x6a\\xe6\\xec\\x42\\x39\\xcf\\x8b\\x4e\\x1e\\xde\\xa9\\xfb\\xcc\\xd9\\x8f\\x1f\\xfe\\xfc\\xa7\\xf7\\x3f\\x7f\\xff\\xdd\\x4f\\x8f\\x1d\\x8b\\xca\\x6c\\xfd\\x4a\\xce\\x37\\xc0\\xa6\\xc9\\xc1\\x38\\xa9\\x8d\\x10\\x6c\\x0c\\x3b\\x78\\x42\\x61\\x31\\x20\\x77\\x4a\\x26\\xbd\\x80\\x91\\xe6\\xbc\\x47\\xce\\x2c\\xcc\\xa1\\x22\\x0b\\x90\\xd6\\x31\\xa1\\x5d\\x16\\xa7\\x74\\x10\\xd8\\x84\\xb8\\x12\\x19\\xfb\\x6a\\x01\\x27\\x94\\xb1\\x19\\xd1\\x22\\xc4\\xe8\\x1a\\xc7\\xf4\\x09\\x59\\xbe\\xa9\\xd2\\x66\\xce\\x08\\x98\\xdb\\x98\\xe3\\x98\\x28\\xfc\\xe2\\x7d\\x92\\x5e\\x62\\x46\\x9b\\x60\\x7a\\xb4\\x63\\x0e\\x69\\xd1\\xe9\\xc8\\x83\\x9b\\x83\\x77\\x93\\x08\\x34\\xd0\\x20\\xe0\\x54\\xd7\\x03\\x95\\x5f\\x02\\x3d\\x98\\x91\\x73\\x73\\xd4\\x5d\\x5b\\x03\\x1c\\xa8\\x47\\xb4\\xb0\\x63\\x66\\xcc\\x06\\xf4\\xd9\\x13\\xd3\\x22\\xb3\\x23\\xe0\\xc2\\x9e\\xa8\\xb4\\xb2\\x9f\\xfc\\x28\\x04\\xd0\\x61\\xbd\\x37\\x89\\xcd\\x4c\\x1b\\xdb\\xd8\\x2d\\x7a\\x03\\x19\\xf1\\x94\\xc6\\x32\\x41\\xb8\\xca\\x5c\\xd4\\x13\\xa0\\xf7\\xcc\\x59\\x60\\x87\\xb4\\x0e\\xe8\\x69\\x47\\xfa\\x68\\xdc\\x21\\x69\\xa2\\xba\\xe3\\x17\\x4c\\x68\\xd2\\x94\\xc6\\x31\\x44\\xa1\\x4b\\x1d\\x80\\xb7\\x47\\x9e\\xe7\\x92\\x73\\x1b\\xb7\\xe2\\xfb\\x71\\xf1\\x36\\x98\\x76\\xfc\\x22\\xe9\\xa4\\xb8\\x41\\xee\\xd6\\xa6\\x8d\\xc3\\x4f\\x92\\x5e\\x94\\xe6\\x40\\xff\\x0a\\xc5\\x6a\\x94\\x26\\xd4\\x57\\x90\\x69\\x50\\x84\\x4b\\x37\\x06\\x74\\x93\\x1f\\xd1\\x17\\xae\\xaa\\xd8\\x4f\\xce\\xe8\\x5b\\x64\\xee\\x16\\xb6\\x58\\xcd\\x20\\x2d\\x0a\\xc6\\x9c\\x59\\xb5\\x81\\x08\\xff\\x09\\x08\\xbc\\x09\\x11\\xde\\x57\\x0a\\x78\\x3e\\xdc\\xa7\\xf2\\xde\\xbf\\x01\\x7a\\xff\\xda\\x64\\xd1\\x2f\\xbf\\x93\\x45\\x6f\\xff\\x0e\\xb2\\xe8\\x97\\xdf\\xcb\\xa2\\x3f\\x17\\xe3\\x03\\xdb\\x55\\x67\\xdf\\x50\\x7f\\x64\\x5d\\xaf\\x26\\xbc\\x9d\\x5b\\x1e\\x9b\\xc6\\x7d\\xa2\\xf2\\xfd\\x1b\\x05\\x05\\xdf\\x4c\\xe3\\xab\\x32\\x0d\\x07\\x7d\\x7e\\xa7\\xeb\\x0c\\xde\\x8a\\xd3\\x82\\xc1\\xf7\\xba\\x9d\\x5b\\x1e\\x9b\\xc6\\x7d\\xee\\xf4\\xfd\\xe7\\xd4\\x6a\\x7c\\x2d\\xf6\\x71\\x59\\xf6\\xd1\\xfe\\x5d\\xec\\xe3\\xb2\\xec\\xa3\\xfd\\x3f\\xfb\\x00\\xae\\x44\\x7a\\xbf\\x11\\x07\\x5f\\xc3\\xfa\\x56\\x42\\x1c\\x73\\x6e\\xa8\\x0f\\xc8\\xff\\x32\\xfb\\x8d\\xa4\\xf3\\x66\\x40\\x86\\xab\\x5c\\x3d\\x62\\x3b\\x8f\\x7c\\x6c\\x3f\\xf7\\xd9\\xd9\\xf7\\x6f\\x54\\xc1\\x7c\\x2d\\xa6\\xf3\\xcd\\xb5\\x94\\xe9\\x64\\xb8\\x62\\x32\\x51\\x03\\x4d\\x50\\xf8\\x50\\x84\\xfd\\x19\\x60\\x51\\x31\\xfd\\x8e\\x9c\\x89\\x08\\xf9\\x11\\x0a\\xe6\\x27\\x83\\xd0\\x4a\\x36\\x1a\\x44\\x3b\\xa4\\x0f\\xf0\\xcd\\x82\\xe7\\xc6\\x4a\\x37\\x7b\\x1c\\x8a\\x4d\\x83\\xa1\\x92\\x96\\x0d\\x94\\x58\\x93\\x58\\xce\\x4f\\x39\\x43\\x62\\xdd\\x18\\x3a\\x2f\\xa4\\x7b\\x35\\x6c\\x34\\x86\\xa6\\x72\\xe7\\x83\\xb1\\x66\\x39\\xe8\\xa8\\x7a\\x16\\x19\\x47\\xc1\\xe1\\xbc\\x03\\xfd\\x4e\\x60\\xbc\\xaf\\x35\\x97\\x38\\xaa\\xb6\\x21\\x23\\x4d\\x94\\x7c\\x8f\\x38\\x8a\\x94\\x2b\\x64\\x0f\\xf7\\x4b\\x36\\x8a\\xa6\\x53\\xe7\\x80\\xde\\x15\\x59\\xf4\\xed\\xbc\\xf6\\xc7\\xc6\\xff\\x77\\xbc\\x35\\x6f\\x57\\x18\\x7d\\xb3\\xff\\xaf\\xca\\xfe\\x15\\x0e\\x70\\xf2\\x8e\\x86\\xd2\\xa8\\xf5\\x7b\\x55\\x3a\\x0c\\x20\\x2d\\x24\\x33\\x19\\x62\\xd1\\x85\\x6f\\x32\\x14\\xb0\\x56\\xa3\\x81\\x57\\xca\\x72\\xb2\\x80\\x94\\xdb\\xa0\\xa3\\x28\\xa0\\x34\\x87\\x2c\\x75\\xe6\\x6a\\xb8\\x83\\xc1\\x86\\x44\\xa5\\x76\\x96\\xae\\x8b\\x96\\x0a\\xab\\x41\\x28\\x0a\\xcf\\xd9\\x50\\x35\\x40\\x3b\\x03\\xe6\\x63\\x0c\\x43\\x4e\\x34\\x64\\x1e\\x7e\\x8e\\xf9\\xdd\\xf3\\xb4\\x35\\x7a\\x34\\x72\\xf4\\xd3\\xd7\\xe8\\xe7\\x98\\xc5\\x58\\x4c\\x5d\\xf8\\x42\\xd6\\xfd\\x00\\x45\\x3f\\x19\\xf9\\x4e\\xa8\\x07\\xc1\\x97\\x80\\x74\\x5d\\x1c\\x26\\xf6\\xb8\\x04\\x62\\x5a\\xd7\\x40\\xcc\\xeb\\x22\\x56\\xab\\x28\\x29\\xa4\\x74\\x7e\\xea\\x08\\xe9\\xa8\\x0a\\xe1\\x9a\\xd1\\x54\\x1f\\xec\\x39\\x4b\\xb5\\x6a\\xb5\\x1c\\xc1\\xe2\\x40\\x86\\x28\\x44\\xe7\\xc2\\x46\\xe6\\x39\\xce\\x2b\\x78\\xfc\\x0e\\xde\\xa3\\x07\\xde\\xbf\\x5e\\xc9\\xf5\\xed\\xfd\\xfb\\xaa\\xde\\x3f\\xa0\\x7f\\x95\\x7a\\xc1\\x80\\xd5\\xb8\\x15\\x75\\xf8\\x38\\xfd\\xbd\\xf5\\x03\\xfc\\x6f\\x36\\xe9\\x00\\x17\\x98\\x77\\xdf\\x51\\x47\\xe1\\xdd\\x0b\\x79\\x00\\xa2\\x4a\\x14\\x5d\\x5b\\x07\\x37\\x1d\\x0e\\x1f\\x10\\x17\\xa1\\x0e\\x7a\\x77\\x02\\x3f\\xf5\\xc4\\x8c\\x5c\\x6a\\x67\\x0e\\x3e\\x70\\x38\\xc6\\x03\\xd2\\x3c\\x1a\\xbb\\x19\\x18\\x44\\x46\\x43\\xa7\\xb9\\x09\\xc3\\xe0\\x20\\xa8\\xdf\\x93\\x08\\x1f\\xe7\\x98\\xdf\\x3d\\xeb\\xa2\\xeb\\xdd\\xd1\\x90\\x45\\xa6\\x96\\x93\\xfd\\x3a\\xa3\\x10\\xef\\xae\\xfd\\x92\\x8d\\x86\\x58\\x5d\\x50\\x06\\x2b\\x75\\x54\\x35\\xcc\\xa0\\xb2\\x45\\x3a\\xd6\\x38\\x8c\\xfa\\x0e\\x9d\\x12\\xa3\\xfc\\xc6\\xe1\\x8b\\xb6\\x48\\xfe\\x1e\\x8a\\x87\\xe5\\x9b\\x72\\x8f\\x53\\x78\\xff\\x4a\\x98\\xe6\\xb5\\xa2\\x9d\\xcf\\x33\\xad\\x1d\\x62\\x43\\x75\\x83\\xe7\\xdc\\xd3\\x5c\\xc3\\x9a\\x59\\x34\\x10\\x36\\x6a\\x03\\x65\\x0f\\x24\\xe4\\x50\\xa3\\x95\\x87\\x32\\x6a\\xd0\\x20\\x2e\\xdd\\xf8\\x20\\x9e\\xcd\\xfd\\xc8\\xeb\\x70\\x3f\\xd4\\xa1\\xfd\\xaa\\xde\\x00\\xd7\\xc8\\x4f\\xb5\\x05\\xa8\\xc3\\x5c\\xc7\\xd5\\x7a\\xbf\\x85\\x07\\x54\\x4c\\xf3\\x63\\xac\\x83\\x97\\x08\\x32\\xb4\\x76\\x77\\x09\\x03\\x57\\xb8\\x98\\x80\\x16\\x40\\xc0\\xec\\xec\\x9b\\xcf\\x4b\\x8c\\x0c\\x3e\\xda\\xb0\\x68\\x93\\xdb\\x24\\x3f\\x08\\x4a\\x76\\xe0\\x7a\\x77\\x54\\x60\\x1e\\x58\\xf4\\xce\\xd7\\xc4\\x6c\\xbd\\x26\\x27\\x25\\x6b\\x71\\x76\\x76\\x97\\x5a\\xb7\\xe9\\x43\\x90\\x64\\x2c\\xd5\\x5d\\xfd\\x4d\\x16\\x7e\\xbd\\x6f\\x44\\xbd\\xd8\\x11\\x80\\x63\\x2e\\x6d\\xf3\\xa9\\xcd\\xe7\\xbc\\xa9\\xe9\\x35\\x54\\x6e\\xe2\\x02\\xff\\x2e\\x20\\x79\\x63\\x10\\xb3\\xc4\\xe0\\x0c\\x63\\xb0\\x40\\xc9\\x64\\xe0\\x8c\\xe1\\x2e\\xf0\\xd1\\xdc\\xa5\\xcd\\x18\\xbf\\xf1\\x84\\x33\\x8d\\x83\\x7a\\x74\\x28\\x3d\\x63\\xe9\\x8d\\x8d\\x37\\x90\\x9a\\x78\\xdf\\x89\\xd4\\x2f\\xa8\\xad\\x23\\x6f\\xd2\\x6b\\x91\\x4e\\x8f\\xe9\\xd2\\x9e\\x48\\x8e\\xf5\\x14\\xdf\\x3d\\xe7\\x10\\x5c\\xe5\\x3a\\x65\\xdc\\xc2\\x6c\\x9f\\x32\\x80\\x74\\x99\\xe0\\x41\\x53\\x20\\x26\\xf2\\xce\\x8e\\x12\\xf2\\x46\\x2c\\x34\\x5c\\x81\\x24\\x1e\\x3c\\x00\\xd3\\x8d\\x10\\x7c\\xb3\\xa2\\x2b\\x50\\xd1\\xcf\\x8a\\x8a\\x4d\\xdb\\x35\\x5d\\xf4\\xb0\\x06\\xb0\\xc3\\xac\\xf5\\x3b\\x26\\xba\\xa9\\xeb\\x55\\xe7\\xdc\\xd3\\x99\\x15\\x19\\x05\\xe4\\x10\\x0e\\xc9\\xf7\\x9c\\xe4\\x10\\xb1\\x26\\x50\\xad\\x97\\xc6\\x53\\x76\\xfc\\xaa\\x22\\x0b\\x02\\x0e\\xa8\\x3a\\xff\\x63\\x7b\\xbe\\x87\\x0f\\xfc\\xf7\\x9b\\xec\\x69\\x69\\x8e\\xe9\\x1f\\x9d\\xb0\\x54\\xe8\\x73\\x94\\x92\\x95\\x4b\\x29\\x59\\x75\\x2f\\x25\\x2b\\x70\\x2f\\x83\\xdd\\x88\\x77\\xea\\x43\\x1b\\xa3\\xce\\x52\\x6b\\xf7\\xa9\\xa3\\xcd\\x0e\\xc0\\xcb\\x04\\xff\\x76\\x69\\xb5\\xcf\\x25\\xb9\\xab\\x10\\xa6\\x56\\xf0\\x7c\\x41\\x89\\x55\\x88\\xa0\\x98\\xf1\\xa2\\x5d\\x85\\xc0\\x20\\xdf\\xd6\\xd9\\xc2\\xc7\\xe2\\x64\\xe7\\x43\\xfb\\x0b\\x09\\xb2\\x5c\\x8a\\x04\\x99\\x97\\x85\\x8e\\x22\\xd9\\xc8\\xef\\xa1\\xb6\\x39\\xd2\\x26\\xac\\xb7\\x01\\x72\\xe1\\xc1\\x25\\x56\\xc5\\x7d\\x2f\\x85\\xea\\xda\\x1d\\x62\\x55\\x1e\\x25\\x56\\x85\\x75\\x51\\x82\\x82\\x5f\\xa9\\x56\\xcb\\x52\\xad\\xee\\x25\\x56\\xa5\\x5c\\x62\\x55\\xe9\\x32\\xc3\\x50\\xb5\\x7f\\x8a\\x55\\x65\\xbb\\xd4\\xb3\\xad\\xc4\\xaa\\xb4\\x97\\x58\\x55\\x9f\\x25\\x56\\x55\\x37\\xf5\\x5f\\x50\\x5a\\x79\\xf9\\x87\\xa5\\x95\\xed\\x4b\\x97\\x56\\x7e\\xb8\\x87\\x77\\x7c\\x78\\x7d\\x21\\xd5\\xbd\\x10\\x5a\\xa6\\x54\\xd9\\x3f\\x99\\xb0\\x00\\xc7\\x6a\\xee\\x41\\xeb\\xb5\\x27\\xe2\\x66\\x5d\\x6e\\xa6\\x19\\x1f\\x70\\xf9\\xf4\\xbc\\x3f\\x3e\\x0f\\xf6\\xde\\xa6\\x7a\\x55\\xbc\\x76\\xd4\\x50\\xaf\\x4f\\x39\\x60\\x35\\xb0\\x00\\xe8\\x51\\xb9\\x16\\x2b\\xbf\\x59\\xd5\\xdc\\x06\\x60\\x17\\x3c\\x9a\\x79\\x3a\\x1d\\xba\\x4a\\x46\\x11\\x3d\\xe7\\x52\\xde\\x14\\xfc\\xd3\\x84\\x8b\\xcf\\xaf\\x99\\x85\\x63\\xe5\\xdc\\x87\\x5c\\xd2\\xe1\\x04\\x6b\\xe9\\x9d\\x3b\\x70\\x54\\xc7\\x50\\x86\\x9b\\x99\\x54\\xf9\\xca\\xe9\\x91\\x8e\\x6b\\x23\\x02\\xb0\\x29\\x76\\x88\\x8b\\x13\\x9c\\x25\\xd6\\xa3\\xed\\x48\\xaf\\xb8\\x64\\x38\\x9f\\xe4\\x58\\x77\\xe2\\xdd\\xb3\\x43\\xbe\\x20\\x76\\xf0\\x2f\\xa6\\x9d\\x69\\x89\\xa5\\x69\\xcc\\x36\\x80\\xab\\x98\\x2d\\x64\\x82\\xce\\x3e\\xfd\\xd2\\x30\\xbb\\xb9\\xdb\\x9e\\xb6\\x11\\x7d\\xb6\\x21\\xa3\\xd4\\x97\\x50\\x10\\x60\\x4b\\x6c\\xad\\x1f\\xeb\\xbc\\x0b\\x0f\\x85\\x32\\xa3\\x59\\xb8\\x18\\xb2\\x6e\\x57\\x93\\xd8\\xce\\x2d\\x8f\\x1f\\xef\\x3d\\x3c\\xe3\\xc3\\x1b\\x69\\xb9\\x6f\\x8f\\xf7\\x8b\\x3f\\x5e\\x48\\x5e\\x5a\\xe7\\xeb\\x8c\\xd8\\xa2\\x67\\x10\\xc6\\x72\\xd5\\xa1\\xdb\\xb9\\xe5\\xf1\\xe3\\xbd\\xc7\\x96\\x7c\\xf8\\x8c\\x05\\xcd\\xaf\\xe9\\x19\\x5f\\xd6\\x33\\x6e\\x5f\\xf9\\x33\\x06\\xcc\\x50\\x3a\\xdd\\x88\\x43\\xae\\x61\\x06\\x39\\x6f\\xd2\\xde\\x37\\xf0\\xeb\\xe7\\x7f\\x59\\xe8\\x96\\x73\\xdb\\xcd\\x98\\x0a\\x6c\\xe4\\x83\\xb7\\xf3\\xc8\\xc7\\x36\\x70\\x8f\\x9e\\xf9\\xf0\\xe6\\xba\\xcc\\x37\\x0b\\xf8\\xf2\\x16\\x00\\xf8\\x88\\x4c\\xd9\\x8b\\x77\\x9c\\x66\\x03\\x6d\\x8d\\x2a\\x17\\xe8\\x04\\x13\\x1e\\x8b\\x5a\\x40\\x71\\xe2\\x0b\\x19\\x8d\\x9a\\xdb\\x19\\x8d\\x75\\xef\\xfb\\x2c\\x41\\xe0\\xdc\\xb9\\x18\\x2a\\x94\\x8f\\x48\\x03\\xca\\x33\\x57\\xc3\\x57\\x22\\x56\\x5e\\xd4\\x83\\x73\\xea\\xea\\xb1\\xb8\\xbf\\xc1\\x00\\xe8\\x39\\xad\\xa9\\x06\\x26\\x36\\x58\\x76\\xc1\\x30\\x04\\x2a\\xc9\\x5e\\x87\\x9f\\x63\\x7e\\xf7\\x0c\\xf8\\x48\\xf6\\x81\\x46\\x8e\\x1e\\xa4\\x35\\xd9\\x3d\\xb0\\x26\\x58\\x29\\xe9\\x58\\x08\\x42\\x30\\x3f\\xb9\\xd6\\x86\\x20\\xe5\\x8b\\xc5\\x21\\x80\\xbf\\x71\\x71\\x44\\x73\\x5d\\x02\\xe6\\x96\\x38\\x09\\x31\\x8f\\x0b\\x3a\\x00\\xb7\\x0c\\x66\\x8f\\xb5\\x55\\x54\\xd6\\x11\\xd2\\xa5\\xca\\x4b\\xb0\\x12\\x54\\x7d\\xb0\\x47\\x09\\x0a\\x65\\xab\\xd5\\x08\\xc0\\x33\\x3b\\x97\\xce\\x0c\\x86\\x99\\xe7\\x38\\xaf\\xe0\\xf1\\x7b\\x74\\x0f\\x9f\\xfa\\xf8\\x56\\xf5\\xf8\\x2c\\x11\\xf5\\xd1\\x75\\x91\\xa4\\x90\\xa2\\x26\\x78\\x56\\xcd\\x26\\xcb\\x6d\\x98\\xe1\\xef\\xdc\\x0f\\xec\\xfa\\x5e\\xf4\\xdd\\x83\\xa2\\x18\\xb8\\x40\\xec\\x6d\\x73\\x7b\\xd9\\xf4\\x78\\x78\\xf7\\x00\\x9b\\x8f\\x6f\\x15\\x8d\\xff\\xd1\\xe1\\xa1\\xb0\\x57\\xc3\\xaf\\xd4\\x55\\x00\\xc5\\x21\\x9a\\x71\\x35\\xeb\\xdb\\xb9\\xe9\\xf1\\xe8\\xee\\xd1\\x34\\x1f\\x3f\\xab\\x54\\xfc\\x8f\\xdf\\xc1\\xc5\\xb4\\x7b\\x23\\x56\\xbf\\x0e\\xa6\\x0d\\x96\\x2d\\x21\\x10\\x2e\\xc6\\x7f\\x79\\x46\\xba\\x59\\xdf\\xac\\x56\\xf8\\x02\\x2a\\x1f\\x2f\\x87\\x3e\\xbe\\x86\\x7b\\x9c\\xcb\\xc7\\xcf\\xa8\\x10\\xff\\xa3\\x57\\xc0\\x58\\x25\\x74\\xdf\\xab\\x31\\xd3\\xd3\\x5a\\xe9\\xbc\\x4b\\xa9\\x6a\\x18\\xe4\\xf2\\x4a\\x1d\\x0e\\x8a\\x95\\x93\\x6a\\xd6\\xa9\\xb3\\xd4\\x83\\xca\\x55\\xd0\\xac\\x9d\\x0d\\x39\\x02\\xb2\\x72\\x1e\\x79\\xe6\\x6a\\x28\\x00\\x1f\\x8d\\x84\\x22\\x77\\xbe\\xe0\\x15\\xc7\\xe1\\x9c\\x53\\x04\\x86\\x5e\\x1c\\xef\\xa8\\x3b\\x61\\xe5\\x56\\x6f\\x9c\\x51\\x0d\\x23\\xdf\\x30\\x0c\\x2c\\x0f\\x3f\\xc7\\xfc\\x0e\\x72\\x53\\xe8\\xa3\\x1a\\x33\\x27\\x52\\x6b\\xf4\\xe3\\x94\\xbd\\x1b\\xa7\\xec\\xdd\\x3c\\x65\\xef\\xe6\\x29\\x7b\\x37\\x4f\\xd9\\xbb\\x39\\xd7\\xe8\\x31\\xed\\xc7\\xf1\\xf5\\xee\\x0a\\xd6\\x4a\\x4f\\xe5\\xbb\\xda\\x2a\\xe4\\x75\\x40\\x11\\x48\\x2f\\x7d\\xbb\\x59\\xd2\\x77\\xbd\\x44\\x13\\x59\\x7b\\x43\\xc7\\xd0\\x94\\x3b\\xa5\\xef\\xe2\\x94\\xbe\\x3b\\xc7\\xfd\\xf0\\xd9\\xff\\x70\\x8f\\x27\\xf9\\xf0\\x0f\\x4a\\xc3\\x5f\\xd6\\x8b\\x30\\x18\\xd7\\x82\\xd9\\x41\\xbd\\xb5\\x6b\\xac\\xc5\\x91\\x4e\\xcd\\x35\\x6e\\x16\\x73\\xc7\\x1f\\x28\\xf5\\xe9\\x0e\\x06\\xb2\\xa3\\xd2\\x49\\x0a\\x62\\x69\\x4e\\x7f\\x3f\\x6a\\x3a\\xad\\x5c\\x0c\\x46\\x79\\x05\\x71\\x40\\x62\\x92\\xe9\\xc8\\x10\\x37\\xe2\\x90\\xd1\\xd4\\xc7\\x2e\\x03\\x42\\x22\\xc1\\xcd\\x83\\x0f\\x2c\\xc2\\xf0\\x04\\x41\\xe9\\x14\\x3a\\x4c\\x7a\\x9b\\x1e\\xbb\\x77\\xcb\\xdf\\xdc\\xa7\\xcd\\xec\\x69\\x6a\\x1b\\x31\\xf7\\x08\\xb9\\x4c\\x1b\\x2d\\xea\\xb6\\x52\\x29\\xcc\\x93\\xc8\\x96\\xce\\x9c\\x7a\\xef\\x9b\\x2c\\x64\\xcf\\x56\\xab\\xed\\x3c\\x77\\x18\\x19\\x1b\\xe4\\x71\\xb0\\x10\\x7f\\x68\\xc9\\x9d\\x8c\\x0d\\xc2\\x25\\x46\\xb6\\xd7\\xdc\\x1e\\x29\\x25\\xac\\xfa\\x59\\x01\\x55\\x35\\x6c\\x03\\x51\\x26\\x89\\xf3\\x76\\xde\\xb1\\x77\\xcf\\x39\\x69\\x77\\x27\\xac\\x43\\x7a\\x5e\\xce\\xa0\\xe6\\x33\\x20\\xb3\\x1f\\x1c\\x00\\xa4\\x85\\x06\\x64\\x29\\xc3\\x6c\\x4f\\xb3\\x09\\xb3\\x96\\x51\\x52\\x08\\xa1\\x84\\x06\\x5a\\x0e\\xc2\\xcd\\xc2\\x0f\\x21\\xaf\\xbb\\x93\\xbf\\xa4\\x2d\\xff\\x2f\\xee\\x90\\xf9\\xe0\\xc1\\x87\\x5a\\x5c\\x98\\xf5\\x30\\xe7\\x5a\\x0d\\x41\\xd9\\x43\\xde\\x43\\x2c\\xd6\\xa1\\x92\\x03\\xab\\x20\\xa8\\x05\\x67\\x10\\x9f\\x98\\xe9\\xcd\\x75\\xde\\xfc\\x95\\x32\\xec\\x1f\\xee\\x51\\x26\\x3f\\xbf\\x9e\\x0a\\x96\\xd2\\xc5\\xe3\\x4d\\xa9\\xb7\\x29\\xbc\\x63\\x01\\xa9\\x93\\x14\\x03\\x19\\x90\\x55\\x67\\x04\\x05\\xa0\\x2d\\x22\\xa8\\x7c\\xf1\\x7a\\xa0\\x50\\x09\\x6b\\x71\\xc0\\x98\\xcd\\xb5\\xfa\\xd6\\xf3\\x4e\\xf8\\xad\\x5f\\x07\\xe7\\x58\\x79\\x1f\\x19\\xa3\\xb0\\x97\\x5e\\x05\\xd6\\xa7\\xa5\\x0d\\x11\\x70\\x2e\\x0f\\x77\\xe8\\xd4\\x8d\\x70\\x48\\x1a\\x8e\\xf0\\x66\\x9d\\xd6\\x52\\x23\\xf4\\x8a\\xc0\\x7e\\x43\\x25\\xbc\\x50\\x1f\\xfd\\xc8\\x38\\x54\\x66\\x51\\x35\\x20\\x1d\\x8a\\x17\\x38\\xdf\\x3e\\xf0\\x9b\\x07\\x43\\xf2\\xa1\\x5e\\x31\\xb3\\x4a\\x87\\x06\\xb2\\x37\\xd3\\x60\\x82\\x48\\x87\\xa2\\x34\\x0a\\xe9\\x50\\xe8\\x26\\xa4\\x19\\x61\\xd3\\xe0\\x1d\\x3c\\x8b\\x90\\x9a\\x40\\xa4\\x62\\xf9\\xe0\\x64\\xa5\\x43\\x91\\x29\\x22\\xdd\\xab\\x61\\xa3\\x21\\x09\\xa0\\x9d\\x0f\\xc9\\xbb\\x81\\x74\\xa8\\xcf\\x95\\x0e\\x45\\x5e\\xd4\\x0b\\x95\\x5c\\xe9\\x50\\x29\\x16\\x96\\x03\\x81\\x36\\xd2\\xa1\\xb0\\xd4\\xb1\\x20\\x6c\\x48\\x87\\x82\\xc4\\x21\\xef\\x12\\x00\\x86\\x20\\x9c\\xc8\\x4b\\x8e\\x5e\\x58\\x80\\xd7\\xd2\\xa1\\x3f\\xdc\\x63\\x49\\x3e\\xbd\\xc5\\x49\\x85\\x47\\x9d\\xde\\xad\\xd6\\xc3\\x24\\x2a\\x90\\x16\\xc7\\x8b\\x7a\\x2a\\xb4\\x56\\xd9\\x60\\x89\\x82\\xd9\\x32\\x03\\xc8\\x46\\x03\\xdf\\xdb\\xb1\\x2f\\x34\\xa4\\x23\\x7a\\x51\\x4d\\x98\\xd1\\xcd\\xa4\\xef\\xf8\\x43\\x4b\\x28\\xbf\\xd6\\xe1\\x0a\\x2e\\xe9\\x10\\xad\\xcf\\x57\\x9e\\xce\\xd5\\xbb\\x42\\x24\\xca\\x1c\\x8d\\xfb\\xc1\\xe5\\x78\\x0f\\xa8\\x69\\x13\\x72\\x64\\x17\\x93\\x7e\\x33\\xa3\\x77\\xcf\\x32\\xa8\\xe5\\xc9\\xf3\\x57\\x3d\\xa3\\x74\\x6d\\xda\\xe5\\x50\\xb1\\xc6\\x73\\x42\\x27\\x86\\x01\\xf0\\x5b\\xba\\xf9\\x71\\xea\\xe6\\xaf\\xf7\\x6b\\x12\\xe6\\x12\\x43\\xb8\\xe5\\xa3\\x03\\x6f\\x7c\\x9d\\x7c\\xcf\\x36\\x74\\x56\\x24\\xdf\\x47\\x87\\x2e\\x58\\x8c\\x0e\\xac\\xe1\\x58\\x05\\x94\\xb5\\x80\\x47\\x15\\x93\\x43\\xb5\\x98\\xd0\\x77\\xee\\x97\\x63\\xc9\\xe3\\x30\\xc6\\xba\\x09\\x19\\xc5\\x48\\x21\\xc7\\x8c\\x74\\x63\\xeb\\x0b\\x39\\x66\\xbe\\x9d\\x5b\\x1e\\x3f\\xd2\\x7b\\x78\\xc7\\xa7\\xb7\\xe8\\xbb\\xbe\\x3d\\xd2\\x2f\\xf1\\x48\\x21\\xf6\\x08\\xc4\\xd7\\xf4\\x6d\\x09\\x1c\\xf1\\xd5\\xba\\x6c\\xe7\\x96\\xc7\\x8f\\xf4\\x1e\\xb4\\xf0\\xe9\\xb3\\x88\\xce\\xbe\\x3d\\xd7\\x2f\\xf1\\x5c\\xc1\\x98\\xf3\\x1b\\x52\\x2b\\x74\\x83\\x22\\x20\\x90\\x5a\\x35\\x5f\\xe5\\x2b\\x5b\\x5f\\x48\\x2d\\xf0\\x96\\xab\\x5c\\xa3\\xd3\\x36\\x67\\x06\\x76\\xaf\\x20\\xb5\\x7e\\xb8\\x4f\\x94\\x7f\\x7a\\x8b\\xad\\xe6\\xdb\\x23\\xff\\x22\\x8f\\x3c\\x03\\x49\\x84\\x14\\x43\\x57\\x48\\x81\\xaf\\x32\\xb0\\xf9\\xb6\\x42\\x0a\\x5b\\x41\\x3f\\xca\\x18\\x11\\x52\\x70\\xbf\\x54\\x48\\x51\\x18\\x8b\\x51\\x44\\x9a\\x08\\x29\\xa0\\xff\\x96\\x21\\xc5\\xb0\\x15\\x52\\xe8\\x5c\\x21\\x05\\x40\\x1a\\x19\\x52\\x54\\xd1\\x41\\x7e\\x0e\\x7c\\x85\\x14\\x68\\x64\\x48\\x81\\xc8\\x26\\x43\\x0a\\x5a\\x78\\x0f\\x29\\x7d\\xf7\\x51\\xc0\\x92\\x0c\\x29\\x8c\\x68\\x85\\x14\\x8b\\xcb\\x1c\\xba\\x31\\x15\\x52\\x40\\xf6\\x30\\x43\\x0a\\xd3\\x15\\x52\\x94\\x30\\xad\\xb4\\xaa\\x96\\xca\\x7b\\x9b\\x11\\x12\\x42\\x8a\\x75\\xed\\x8f\\x8d\\xf6\\x3e\\x67\\xfd\\xe9\\x33\\x68\\x0c\\xbf\\xd9\\xed\\x97\\xb0\\x5b\\x90\\x2f\\x02\\x19\\x55\\xb3\\xf5\\x45\\xdc\\x0a\\x64\\x14\\x30\\x4e\\x83\\x4a\\xd4\\x02\\xc8\\x28\\xa1\\x85\\x8c\\xf2\\x8c\\x26\\x29\\x9a\\x0f\\x5f\\xc8\\x28\\x5e\\x30\\xaa\\xd2\\x48\\x52\\x2a\\xf6\\x6f\\x20\\xa3\\x3c\\x16\\x32\\xaa\\xe6\\xef\\x52\\x3b\\x03\\x19\\x35\\x7c\\x21\\xa3\\x84\\x0a\\x19\\x85\\xa0\\x16\\xc8\\x28\\xcc\\xe8\\x23\\x6a\\x18\\xd2\\x05\\x72\\x5c\\x85\\x8c\\x5a\\x63\\x5e\\xb4\\x7a\\x40\\x46\\xc5\\x1a\\xfd\\x1c\\x6b\\xf4\\x55\\xe4\\x5c\\xd0\\x28\\xa0\\x2c\\xba\\x57\\xe6\\x7d\\x41\\xa3\\x94\\x4e\\x68\\x94\\xaf\\xab\\x23\\x3e\\xa1\\x60\\x84\\x67\\x5c\\xd0\\x28\\x8d\\x13\\x1a\\xa5\\x71\\x59\\xd0\\x28\\x58\\x00\\x16\\xf7\\xfa\\x3c\\xa1\\x51\\x58\\x65\\x88\\xb3\\x8f\\x82\\x46\\x0d\\x3a\\xa1\\x51\\x98\\xdc\\x87\\xad\\x51\\x01\\x1b\\x85\\xd7\\x5a\\xf9\\x38\\xaf\\xe1\\xf1\\xdb\\x73\\x9f\\x21\\xff\\xfe\\xe3\\x5f\\x3f\\xbe\\xca\\xac\\x82\\x29\\xa4\\x5c\\xa9\\x8f\\xdb\\xe8\\x10\\x5e\\xe1\\x9b\\x85\\xbc\\x7b\\x56\\x87\\x14\\xe8\\xdc\\xd1\\x20\\xeb\\x0d\\x6c\\x07\\x34\\x3b\\x74\\x01\\x89\\xa5\\x43\\x5d\\x2d\\x1b\\x0d\\x4f\\x29\\x37\\x81\\x99\\x3b\\x8f\\xaa\\x06\\xc4\\xcd\\x27\\xf2\\xd7\\x79\\xd0\\xd4\\xb1\\x9b\\xe2\\x17\\x67\\xcb\\xff\\x9f\\xfd\\x64\\x8f\\xd2\\x38\\xc6\\x0e\\xc5\\xbd\\x3e\\x5a\\x7a\\x10\\x11\\x05\\xdc\\x44\\x62\\x1e\\x66\\x7c\\xd1\\x3e\\xf1\\x42\\x28\\x67\\xef\\xde\\x30\\x6d\\xe3\\x68\\x92\\xc6\\xed\\x03\\xc7\\xe3\\x97\\x02\\xff\\xa7\\x08\\xec\\x4f\\x12\\xbb\\x41\\xb7\\x25\\xaa\\x9a\\x31\\xe2\\x58\\xfd\\x3d\\xbe\\x99\\xf7\\x69\\xe1\\x4f\\x6f\\x54\\xfd\\xff\\x71\\x3f\\xf4\\x32\\xc9\\xed\\x25\\xf8\\xb8\\x8d\\x00\\x9e\\xce\\xae\\xd4\\x85\\xb7\\x59\\xca\\x2a\\x5c\\x05\\x5e\\xf5\\x57\\x68\\x1b\\xc4\\xff\\xa4\\x7f\\x32\\xa6\\xc2\\x2c\\x68\\xbf\\xd8\\x96\\x33\\xc7\\x27\\x52\\xba\\x42\\x5c\\x8d\\xf2\\x95\\xdf\\x21\\x61\\x83\\x72\\xb4\\x68\\x6c\\xf3\\xc0\\x45\\xfd\\x63\\x97\\xa5\\x4d\\x66\\xba\\x9e\\x38\\x54\\x7a\\x93\\x6e\\x5b\\xe4\\x64\\x1a\\x32\\xa6\\xc0\\xed\\xb4\\x7f\\xca\\xcd\\xc0\\x8f\\x9d\\x3e\\x2c\\x67\\xed\\xe2\\xcd\\x6d\\x02\\xab\\x11\\x26\\x9b\\x95\\x3e\\x33\\x80\\x91\\x58\\xc5\\xf8\\x7c\\xff\\xf8\\xe2\\x7c\\x1f\\x3e\\xf2\\xfb\\x54\\xf1\\xaf\\x6f\\x94\\x54\\xc1\\xcb\\xf1\\x1e\\xe1\\x2d\\x08\\x0c\\x03\\x6c\\x87\\xf1\\x5c\\x4b\\x5a\\x56\\x5f\\x83\\xb0\\x66\\x07\\x9b\\xb5\\x11\\x07\\xc5\\x00\\x80\\x8e\\x00\\x8c\\x3b\\x35\\x1e\\x79\\xdc\\x54\\x3b\\xa4\\x74\\x64\\x11\\xc3\\x0b\\x4f\\xd0\\x89\\xb0\\x05\\xb8\\x71\\x99\\x4a\\x8c\\x85\\xbb\\xed\\x3e\\x66\\x89\\x4e\\x2a\\x35\\xce\\xc7\\xcc\\x28\\x9f\\x5c\\xa2\\x93\\x7d\\xce\\x5b\\xbf\\x0e\\x8d\\x6d\\x8d\\x2f\\x67\\x84\\x69\\x57\\xbd\\xf4\\x3c\\xd8\\xf8\\x42\\x3a\\xe4\\x6a\\x36\\xb6\\x73\\xcb\\xe3\\x7b\\x72\\x9f\\x5f\\xfd\\xf5\\x8d\\x5a\\xa2\\xaf\\xe5\\x9e\\x38\\xca\\x2f\\x47\\xbf\\xce\\x39\\xb6\\x60\\xba\\x10\\x77\\xba\\x5a\\xb7\\xed\\xdc\\xf2\\xf8\\x9e\\xdc\\xe7\\x1b\\x7f\\xfd\\x9c\\x22\\x9a\\xaf\\xe5\\xc6\\xcc\\x19\\x17\\xe2\\x98\\x37\\x62\\xa3\\x2b\\x80\\x76\\x8c\\xa5\\xae\\x01\\xa9\\x47\\xfc\\x97\\x8d\\x6f\\xc4\\x83\\xf0\\x3a\\x92\\x31\\x5f\\xa3\\x4b\\x49\\x74\\x70\\xbc\\x12\\xde\\xdd\\x27\\x98\\x7e\\x7d\\x1b\\x40\\xff\\xb5\\xdc\\x36\\xcd\\xdb\\x26\\x91\\x51\\x20\\x02\\x81\\xf2\\x77\\x90\\x46\\x85\\xa0\\x81\\x7a\\x3f\\x2c\\x00\\xde\\x74\\xe4\\x44\\x49\\xa7\\x97\\x7c\\xb1\\x4e\\x6f\\xf8\\x98\\x56\\xa5\\x02\\xd5\\xce\\x61\\x73\\x29\\xab\\xd6\\xd7\\x84\\xf6\\x6a\\xa8\\x41\\x3f\\x16\\xea\\xab\\xd8\\x99\\x87\\x94\\xec\\x62\\x5e\\x07\\xce\\xcc\\x1a\\x3b\\x34\\x9d\\x33\\x28\\x41\\xa7\\x6c\\x5e\\xc3\\xe0\\xc1\\xa5\\x6c\\xfc\\x22\\xde\\x2a\\x41\\x8b\\x70\\x34\\xfb\\xa8\\xc6\\x8c\\x36\\xc7\\x1a\\x3d\\xf5\\x2a\\xfc\\x06\\x86\\x18\\x83\\x04\\x59\\x14\\xc6\\x6d\\x3b\\x04\\x00\\x08\\x81\\x16\\xf9\\xba\\x3a\\x2a\\x25\\x34\\xef\\x19\\x1f\\xad\\x8b\\x20\\x70\\x89\\x66\\x0f\\xab\\x85\\xda\\x11\\x99\\x25\\x0b\\x5e\\x47\\x70\\x46\\x54\\x38\\x0b\\xdb\\xd9\\x07\\xab\\x65\\x7c\\x54\\xad\\x56\\x23\\xe0\\xe2\\xd9\\xb6\\x3a\\x02\\x03\\xcd\\x93\\x9c\\xd7\\xf0\\xd8\\xfc\\xee\\x13\\x88\\x7f\\x7b\\x03\\x0a\\xd4\\xb9\\xa9\\xe9\\xe6\\xa2\\x4d\\x64\\x6c\\x33\\xdf\\x03\\x3c\\x7f\\xe6\\xb9\\xf9\\xe8\\xed\\x89\\x9c\\xf1\\xbd\\x7b\\xe2\\xfc\\xec\\x03\\x90\\x66\\x84\\xa5\\xf6\\x27\\xd1\\x8e\\x45\\xd9\\xa7\\x8c\\x5a\\x84\\xb8\\x3d\\xa9\\xc4\\xce\\xb3\\x1a\\x8d\\xc3\\x0a\\xea\\xc6\\x8a\\xff\\x94\\x7e\\xdc\\x13\\xc4\\xfd\\x22\\xda\\x93\\x52\\x6c\\x5c\\xf4\\x40\\xb6\\x33\\x03\\xd9\\x69\\x8d\\x0d\\x68\\x5b\\x3f\\x78\\x02\\x6e\\x3b\\x76\\x81\\x8a\\x70\\x1f\\x17\\x31\\x6b\\x4f\\x34\\x06\\x12\\xf4\\x4f\\xa4\\x0a\\x89\\xb6\\x27\\xea\\x1d\\xaa\\x30\\x4f\\xa3\\x6f\\xd0\\x04\\xf3\\xcd\\xd6\\x65\\x88\\xf9\\xb6\\xae\\xf1\\xdd\\x33\\x14\\x42\\xd2\\x1f\\x52\\x67\\xde\\x42\\xf1\\x5d\\xa0\\xab\\xf1\\xdc\\xce\\x4d\\x8f\\x6f\\xec\\xdf\\x8b\\x09\\xbe\\xc6\\x24\\x80\\x27\\x6b\\x42\\x3b\\x1a\\x4a\\xc8\\x0b\\x78\\x93\\x0c\\x6c\\x3a\\x62\\xf7\\x71\\x8c\\xca\\x0f\\xa5\\x2f\\x7e\\xca\\x68\\xaf\\xe3\\xba\\x9b\\x01\\xa8\\x7b\\x28\\xc4\\xf0\\x97\\x54\\xb2\\xda\\x0d\\xcb\\x22\\xca\\x72\\x9b\\x20\\x18\\x82\\xfe\\x1c\\x97\\xe0\\x68\\x8f\\x3c\\x4b\\x5f\\x21\\xd7\\x89\\x94\\x2f\\xdd\\xfd\\x53\\x96\\x66\\x5a\\x4e\\x03\\x86\\xb5\\x88\\x28\\xbb\\x33\\xe3\\x9b\\x09\\xbd\\x7b\\x1e\\x62\\x17\\xb3\\x2a\\x37\\xf7\\x9c\\x3f\\xb1\\x34\\x8f\\x12\\x44\\x8d\\xc1\\x10\\x56\\xa9\\x39\\x95\\x57\\x66\\x41\\x05\\x99\\x85\\x7c\\xa7\\x2b\\xb3\\x20\\x2d\\xdc\\x6f\\x42\\x8e\\x79\\x39\\xbb\\x62\\x1b\\x8b\\x62\\x0a\\xcf\\x5d\\xc0\\xa4\\x0c\\x4c\\x47\\xfe\\xcd\\x79\\x6e\\x6f\\xd2\\x3b\\xe4\\xe2\\xb4\\x2b\\x38\\xa0\\x4d\\xe8\\x66\\xf6\\x4a\\xec\\x7f\\x9f\\xba\\xfd\\xdb\\xdb\\x18\\x98\\x7f\\x27\\xf3\\x66\\xe4\\x3f\\x83\\xf6\\x6a\\xcc\\x1a\\x21\\x5c\\x93\\x94\\xfa\\x7d\\x3f\\xa4\\xf2\\xb6\\x5e\\x25\\x16\\xe9\\x9e\\xb5\\xf2\\xb6\\x8e\\x0a\\x0d\\xb8\\xe7\\x82\\xdd\\xa7\\x2f\\xe7\\x17\\xef\\xbe\\x5c\\x67\\x35\\xa0\\x0a\\xfb\\xe2\\x5f\\x67\\xb9\\x67\\xad\\x9c\\x6d\\xd4\\x99\\xd3\\x3d\\x4b\\xe5\\x6c\\xa3\\x32\\x9e\\xe9\\x9e\\x31\\x8c\\x74\\xcf\\x18\\x58\\x1e\\xce\\x6e\\x97\\x72\\xcf\\xa1\\x6b\\xf4\\xd5\\x98\\x81\\x8c\\x60\\x7d\\x1d\\x86\\x94\\x77\\x86\\xe8\\x4f\\x3a\\xe7\\x81\\x8a\\xa5\\x69\\x25\\xd9\\x9f\\xae\\x19\\xec\\x68\\x79\\x61\\x20\\x37\\x84\\x63\\xee\\xfd\\x37\\xf7\\xbe\\xc6\\xbf\\x5a\\x5a\\xa5\\x23\\xa7\\x4f\\x9d\\xcb\\xcb\\x8a\\x97\\x5b\\xc6\\xd9\\xd3\\x2b\\x83\\xd8\\x2b\\x9d\\x32\\x3a\\x4e\\x9f\\x1c\\x95\\xb8\\xa2\\xca\\x84\\xe5\\xe1\\xe7\\xb8\\x1f\\x9a\\x2d\\x77\\xba\\x4f\\x39\\x7c\\xf8\\xf9\\xfb\\xd7\\xd9\\xd5\\x62\\x36\\xef\\x74\\x75\\xba\\x0d\\x1e\\xd7\\xfc\\xfb\\xe6\\xaf\\x2c\\x80\\x73\\xa7\\xfb\\x25\\xf0\\x0f\\x7f\\x7a\\xab\\x0b\\x43\\x17\\x16\\x67\\x17\\xf6\\x56\\x17\\xf7\\xb3\\xc5\\xff\\xfd\\xf5\\xd3\\x5f\\x3e\\xfc\\xf4\\xe1\\x87\\x57\\x54\\x89\\x27\\xd8\\x53\\x46\\x91\\xd8\\xe7\\xa7\\xb0\\x94\\x70\\xa6\\x20\\xf5\\x4b\\xda\\xfb\\xe1\\x48\\xf3\\xcd\\x71\\x78\\x60\\x09\\x6d\\x6e\\xa0\\x5d\\xb4\\xde\\xf7\\xf0\\xdc\\x27\\xa7\\x52\\xf8\\x88\\x3a\\x15\\x01\\x1f\\x8d\\x79\\xa3\\x4e\\x7c\\xd5\\x49\\xb7\\x3c\\xfd\\x6b\\x83\\xbe\\x9f\\xef\\x60\\xd0\\xaf\\x6b\\x29\\x07\\x12\\xda\\x23\\xf6\\x6a\\x88\\xb7\\x00\\xf6\\x08\\x1a\\x3f\\xd0\\xe3\\x75\\x50\\x67\\x20\\x69\\x6b\\x53\\xda\\x9c\\x0e\\xfe\\x3e\\xea\\x61\\xc5\\x11\\x4e\\xba\\xca\\x58\\x18\\x98\\x0d\\xc1\\xf9\\x6e\\x64\\xde\\x33\\xda\\xbc\\xe5\\x5f\\xaf\\x0d\\xfa\\x7e\\x42\\x82\\x41\\xff\\xf2\\xf1\\xe7\\x1f\\x7f\\xfa\\xee\\xfd\\x2f\\x8f\\x3f\\xe6\\x91\\x66\\x63\\x3b\\xf4\\x3d\\x40\\x75\\x92\\x9e\\x0b\\x20\\xb5\\x27\\x52\\x47\\x6a\\xf4\\x89\\x55\\xa1\\xc7\\xfa\\x24\\x6c\\x4b\\x16\\x5d\\x7d\\x37\\xd0\\x96\\x8c\\xbe\\xa4\\x41\\x7b\\x00\\x71\\xe2\\x7a\\x63\\x9f\\xd7\\x18\\x7d\\xab\\x53\\xbf\\x36\\xe6\\xfb\\xb8\\x17\\x63\\xfe\\xfe\\xbb\\x9f\\x5e\\x35\\x10\\x81\\x1e\\xd2\\x18\\x3b\\x1a\\x69\\x20\\x20\\x91\\x4c\\x03\\x81\\x42\\x52\\x1a\\x08\\x34\\xc4\\xd2\\x40\\x50\\x16\\x98\\x06\\x52\\xb5\\x88\\xbd\\xef\\x06\\x4f\\x95\\x9f\\x8e\\xb4\\x9d\\x34\\x10\\xd3\\xf9\\x3b\\x03\\x11\\xf6\\x32\\x90\\x67\\x00\\x88\\xb2\\xa3\\xc2\\xc8\\xc9\\x6c\\x8e\\x97\\x7c\\x4a\\x91\\x9e\\x64\\x47\\x60\\xa2\\xc1\\x62\\x2e\\x12\\x8a\\x31\\xb7\\x09\\x6e\\x9a\\xde\\xf7\\xa9\\xfd\\x82\\x8e\\xc0\\x64\\x94\\x1d\\x41\\xbd\\xe0\\xa5\\x23\\xf7\\x78\\xd3\\x12\\xef\\x23\\xb3\\xf3\\x06\\xbd\\x6e\\x8c\\xc5\\xa9\\x32\\x62\\x5f\\xe4\\x2a\\xde\\xac\\x16\\xba\\x17\\x90\\x30\\x8d\\x11\\x3e\\x38\\x8d\\x51\\x39\\x60\\x8c\\x50\\x7f\\x48\\x63\\x94\\x8c\\x25\\xd2\\x18\\xc5\\x97\\x0c\\xb9\\x20\\x94\\x3c\\x8d\\xd1\\xa1\\xb5\\x3d\\xe2\\xdd\\x33\\x56\\xe8\\xb3\\x9f\\x6a\\x88\\xb7\\x69\\x2b\\x96\\x9e\\x58\\x19\\x0c\\x2f\\x32\\xa9\\xec\\x27\\xbf\\xde\\xd9\\x8f\\x43\\x0d\\x2b\\x6c\\xf7\\x9c\\x19\\x64\\x3f\\x01\\xc8\\x11\\xd4\\xd2\\xfd\\x77\\xfd\\x4c\\x68\\xda\\xbf\\x6e\\xf4\\xf7\\x01\\xd6\\x79\\x7f\\x5e\\x35\\x79\\x17\\x6f\\x2e\\x60\\xb6\\x21\\x6e\\x60\\xdd\\x51\\x3e\\x6c\\xc0\\xe4\\xab\\x34\\x3b\\x0d\\xfc\\x28\\xed\\x59\\x8e\\x4d\\xb0\\x40\\xa4\\x63\\x17\\xcb\\x6f\\xec\\x90\\x26\\x10\\xc7\\xed\\xf3\\xd0\\xae\\xcd\\xf9\\xc6\\x62\\x57\\x97\\xd8\\xea\\xd4\\x79\\x67\\x34\\xbb\\x00\\x3d\\x30\\xb7\\x69\\x1d\\x5d\\xcc\\x0c\\x07\\xb2\\x8b\\x61\\xf5\\x0e\\x15\\x15\\x50\\x76\\xe1\\xe0\\x02\\xd2\\xb1\\x3b\\xce\\x3c\\xe4\\x12\\xdd\\xab\\x8b\\x10\\x3e\\xbb\\x98\\x6e\\x5b\\x9d\\xfa\\x95\\x9b\\xc2\\xf7\\xf8\\x83\\xef\\x7e\\xfd\\xe9\\xa7\\x0f\\xaf\\xc9\\xc0\\x67\\xc8\\xe6\\x7b\\xfe\\x66\\x48\\xa5\\x19\\xce\\x61\\x25\\x30\\xa0\\x71\\x6f\\xda\\xf3\\xc1\\x1d\\x78\\x83\\x3a\\xc9\\x8e\\x85\\x80\\x4e\\x82\\x12\\xd1\\xdc\\x32\\xfa\\xc4\\x9e\\xc3\\x00\\x91\\x3d\\x32\\x8a\\x8c\\xe1\\xb7\\xe0\\xb1\\x0f\\xc0\\x92\\x66\\xcb\\x6d\\x9e\\x01\\x2c\\x75\\xd4\\x82\\x46\\x5a\\x25\\xd3\\xe1\\x32\\x9a\\x75\\xdd\\x6d\\x28\\xd6\\x20\\x4d\\xa9\\x19\\x77\\xf4\\x9e\\xfb\\x29\\x13\\x8e\\xc3\\x28\\x79\\xdc\\x62\\x3c\\xc6\\x6a\\x71\\x97\\x7b\\xd7\\xfd\\xe3\\xaf\\x1f\\x7f\\x82\\x13\\x7c\\xd5\\xa5\\x78\\x86\\xb6\\x1c\\xdb\\x28\\xf3\\xbd\\x7a\\xe8\\x26\\x93\\x9b\\xd1\\xb8\\x59\\x3e\\xd6\\xd0\\x36\\x39\\xae\\xc3\\x6c\\x5b\\xfb\\xbe\\x36\\x88\\x7b\\x57\\xfc\\x32\\x88\\xd7\\x5f\\x5b\\x73\\x87\\xb4\\xfe\\xd0\\xf9\\xa2\\xac\\x6f\\xb5\\x2c\\x7e\\x95\\x61\\x9b\\xb3\\x43\\x59\\x5f\\x4a\\x82\\xff\\x6a\\x2f\\xb0\\xb5\\xff\\xf8\\xe1\\xd3\\xcf\\x7f\\xc9\\xdf\\xef\\x3f\\xfc\\xf0\\x4b\\xfe\\xfe\\xf2\\xd7\\x1f\\xff\\xf3\\xf2\\x7f\\x01\\x00\\x00\\xff\\xff\\x68\\x11\\x19\\x44\\x14\\x0c\\x01\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_svg() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_svg,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.svg\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_ttf = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x9c\\xbc\\x09\\x7c\\x53\\x55\\xfa\\x3f\\xfc\\x3c\\xe7\\x9c\\x9b\\xa4\\x2b\\x4d\\xb3\\xb5\\x4d\\x97\\x2c\\x4d\\xd2\\x26\\xdd\\xd3\\x24\\xdd\\x9b\\xb6\\xe9\\x42\\x53\\xda\\x02\\x85\\x36\\x2d\\x4b\\x17\\x5a\\x0a\\x14\\x28\\x14\\x28\\xc8\\xaa\\x20\\x8b\\x82\\x03\\xa8\\xe8\\xa8\\xb8\\xa3\\xa3\\xa0\\x16\\x71\\x9b\\x19\\x67\\x5c\\x40\\x05\\x97\\xd9\\x74\\x46\\x1d\\xc7\\x41\\xc1\\x85\\x4d\\x47\\x9d\\x71\\x46\\xa1\\xb9\\x7d\\x3f\\xf7\\x26\\x29\\x05\\x75\\xfe\\xf3\\x7b\\xab\\x21\\xc9\\xbd\\xe7\\xde\\x9c\\xf3\\x9c\\x67\\xf9\\x3e\\xdb\\x05\\x04\\x80\\x18\\x04\\x60\\x00\\xb5\\x9e\\xea\\x9a\\x88\\xdc\\x88\\x3c\\x00\\x8c\\x04\\x00\\x77\\xed\\xf4\\x19\\x95\\x9f\\xc9\\x4f\\x2a\\x00\\xb0\\x01\\x80\\xd4\\x35\\x4d\\xcf\\xce\\x7b\\x1e\\xcf\\x0d\\x03\\xd0\\x5b\\x00\\xa0\\xb3\\x67\\x71\\xd7\\xe0\\xf4\\xcf\\xef\\xcf\\x06\\xa0\\xff\\x02\\x90\\x2d\\xec\\x59\\xb5\\x42\\x37\\x0f\\xd5\\xcd\\x80\\x47\\x66\\x01\\xc0\\x5d\\x7d\\x83\\xf3\\x17\\x7f\\xac\\xfc\\xe0\\x2b\\xc0\\x23\\xdf\\x01\\x44\\xdc\\x36\\xbf\\x6b\\x68\\x50\\xf8\\x35\\xc0\\x23\\x2d\\x00\\x20\\x9b\\x3f\\xb0\\xa6\\x6f\\xe1\\xdc\\x23\\x53\\x00\\x22\\x3b\\x01\\xe7\\x97\\xf4\\xf7\\x76\\xcd\\xfb\\x4f\\x66\\x8c\\x1e\\x70\\xe8\\x2e\\x00\\x70\\xf6\\xf7\\xf7\\x76\\x85\\xf1\\x61\\x33\\x01\\x87\\xde\\x01\\x80\\xd4\\xfe\\xc5\\x2b\\x56\\xa7\\xbc\\xf9\\xeb\\x21\\xc0\\xa1\\xef\\x00\\x62\\x0c\\x03\\x4b\\x7b\\xba\\xea\\x87\\x1e\\x90\\x01\\x6e\\x49\\x04\\x90\\xa5\\x2e\\xee\\x5a\\x3d\\xc8\\xbd\\x13\\x15\\x0f\\xb8\\xd3\\x0d\\x00\\xba\\x25\\x5d\\x8b\\x7b\\x6b\\x0e\\x2f\\xee\\x07\\xdc\\xd9\\x09\\x40\\x93\\x07\\x97\\x0e\\xad\\xf8\\xb4\\xf2\\xe1\\xb3\\x80\\x3f\\xdb\\x04\\x60\\xfc\\xe3\\xe0\\xf2\\xde\\x41\\xd7\\xca\\xe2\\x17\\x00\\x5f\\xd8\\x0d\\x00\\x8f\\x8b\\xb4\\x10\\x56\\x2e\\xfc\\x11\\x90\\xc1\\x9b\\xf0\\x26\\x20\\xea\\xd1\\x02\\x88\\x6d\\xd8\\x03\\x88\\xab\\x71\\x35\\x20\\xae\\xc7\\x0d\\x80\\xb8\\x09\\x37\\x01\\xe2\\x5e\\xbc\\x05\\x10\\xdf\\xc4\\x37\\x01\\xc5\\xeb\\xc3\\x21\\x19\\x32\\x00\\x3d\\x35\\x0d\\x2d\\x20\\x13\\xa8\\x0a\\x30\\x36\\x26\\x9e\\xc1\\xa1\\xc5\\x3d\\x83\\x20\\x13\\x3e\\x89\\x2f\\x16\\x7c\\x97\\x01\\xc1\\xdf\\xc2\\xdf\\x70\\x3f\\xde\\x8d\\xf7\\xe0\\xbd\\x78\\x1f\\xde\\x8f\\x0f\\xe0\\x83\\x78\\x00\\x1f\\xc2\\x87\\xf1\\x17\\xf8\\x08\\x3e\\x8a\\x07\\xf1\\x5d\\x3c\\x84\\x8f\\xe1\\xe3\\xf8\\x04\\x8e\\xe0\\x61\\x7c\\x12\\x8f\\xe0\\x53\\xf8\\xf4\\xff\\xaf\\x6b\\x3e\\x26\\x77\\x90\\x9f\\x93\\x3b\\xc8\\x9d\\xe4\\x4e\\x72\\x17\\xd9\\x4f\\xee\\x26\\xf7\\x90\\x7b\\xc9\\x7d\\xe4\\x7e\\xf2\\x00\\x79\\x90\\x1c\\x20\\x0f\\x91\\x87\\xc9\\x2f\\xc8\\x23\\xe4\\x51\\x72\\x90\\x1c\\x22\\x8f\\x91\\xc7\\xc9\\x13\\x64\\x84\\x1c\\x26\\x4f\\x92\\x23\\xe4\\x29\\xf2\\x34\\x79\\xe6\\xff\\xe7\\x55\\xe7\\xc9\\xb3\\xe4\\x59\\xf2\\x1c\\x79\\x8e\\xfc\\x92\\xfc\\x92\\xfc\\x8a\\xfc\\x8a\\xfc\\x9a\\xfc\\x9a\\xfc\\x86\\xfc\\x86\\xfc\\x96\\xfc\\x96\\xbc\\x40\\x5e\\x20\\x2f\\x92\\x17\\xc9\\x4b\\xe4\\x25\\xf2\\x32\\x79\\x99\\x1c\\x25\\x47\\xc9\\x31\\x72\\x8c\\xbc\\x42\\x5e\\x21\\xaf\\x91\\xd7\\xc8\\x71\\x72\\x9c\\x9c\\x20\\x27\\xc8\\xeb\\xe4\\x75\\xf2\\x06\\x79\\x83\\xbc\\x49\\xde\\x24\\x6f\\x91\\xdf\\x91\\xdf\\x91\\xdf\\x93\\xdf\\x93\\x3f\\x90\\x3f\\x90\\x3f\\x92\\x3f\\x92\\x3f\\x91\\x3f\\x91\\xb7\\xc9\\xdb\\xe4\\x1d\\xf2\\x0e\\xf9\\x33\\xf9\\x33\\xf9\\x0b\\xf9\\x0b\\x79\\x97\\xbc\\x4b\\xde\\x23\\xef\\x91\\xf7\\xc9\\xfb\\xe4\\xaf\\xe4\\xaf\\xe4\\x03\\xf2\\x01\\xf9\\x1b\\xf9\\x1b\\xf9\\x90\\x7c\\x48\\xfe\\x4e\\xfe\\x4e\\x4e\\x92\\x93\\xe4\\x23\\xf2\\x11\\xb9\\x86\\x5c\\x43\\x4e\\x91\\x53\\xe4\\x34\\x39\\x4d\\x3e\\x21\\x9f\\x90\\x4f\\xc9\\xa7\\xe4\\x33\\xf2\\x19\\xf9\\x9c\\x7c\\x4e\\xce\\x90\\x33\\xe4\\x2c\\x39\\x4b\\xce\\x91\\x73\\xe4\\x3c\\xb9\\x40\\x2e\\x90\\x2f\\xc8\\x17\\xe4\\x4b\\xf2\\x25\\xf9\\x39\\x10\\x88\\x02\\x23\\x94\\x00\\x40\\x15\\xcc\\x82\\x04\\xd8\\x0c\\x9b\\x21\\x1f\\xae\\x87\\xeb\\xc1\\x81\\x9f\\xe2\\x67\\xe0\\xc4\\x33\\xc4\\x0a\\x05\\x24\\x93\\x94\\xc1\\x5a\\x52\\x41\\xe6\\xc2\\x2e\\xd2\\x45\\x96\\xc3\\x21\\xb2\\x92\\xac\\x82\\xdf\\x92\\x35\\x64\\x0d\\xbc\\x48\\xd6\\x92\\x5b\\xe0\\x25\\x7a\\x9a\\x9e\\x86\\x0f\\x80\\xb2\\xdf\\x93\\xe7\\x81\\x03\\xe0\\xee\\xe0\\xec\\x00\\x98\\x12\\x78\\xa7\\x7f\\x84\\x3e\\x02\\x13\\xff\\x3e\\x02\\x32\\x16\\x03\\xba\\x0e\\x81\\xdb\\x85\\xef\\x83\\x6b\\x96\\x0f\\x09\\x9f\\xc6\\xfc\\xb2\\x6e\\xff\\x9f\\x01\\x64\\xdd\\xc4\\xa6\\x03\\xbc\\xa7\\x49\\x10\\xf0\\x22\\x6e\\x44\\x1c\\x27\\x70\\x1d\\x0d\\xbe\\x12\\xc5\\x6f\\x20\\xe9\\x04\\x2a\\x7e\\x4a\\x04\\x26\\xf1\\x88\\x37\\xde\\x04\\x12\\xe8\\x14\\xe5\\x20\\x0c\\xa2\\x40\\x0f\\x1b\\xe0\\x5e\\x38\\x04\\x8f\\xc1\\x0b\\xf0\\x2a\\xfc\\x1e\\x3e\\x83\\x7f\\x00\\x8f\\x93\\x50\\x8e\\x26\\xb4\\x60\\x0e\\x4e\\xc7\\xb9\\x38\\x1f\\x37\\xe0\\x46\\xdc\\x8b\\xf7\\xe1\\x08\\x7e\\x85\\x63\\x44\\x4b\\x5c\\xc4\\x47\\x9e\\x27\\xaf\\x91\\x13\\xe4\\x43\\xf2\\x4f\\x8a\\x94\\xd2\\x30\\x3a\\x89\\x1a\\xe9\\x0d\\x74\\x27\\xdd\\x4b\\xef\\xa3\\x23\\xf4\\x97\\xf4\\x04\\xfd\\x1d\\xfd\\x13\\xfd\\x0b\\x33\\xb1\\x6c\\x56\\xcd\\x9a\\x58\\x37\\x5b\\xca\\x86\\xd9\\x56\\xf6\\x3b\\xf6\\x2e\\xfb\\x98\\x7d\\xcb\\x21\\x17\\xc3\\x29\\x92\\x31\\xb9\\x3c\\xf9\\xfa\\xe4\\xaf\\x93\\xff\\x99\\xfc\\x7d\\xca\\x14\\x5d\\x84\\x4e\\xa5\\x4b\\xd6\\x19\\x74\\x66\\x5d\\x8e\\xce\\xae\\x2b\\xd2\\x95\\xe8\\x3c\\xba\\x15\\xba\\x8d\\xba\\x07\\x75\\x0f\\xeb\\x0e\\xe9\\x39\\xbd\\x42\\xaf\\xd6\\x1b\\xf4\\x66\\x7d\\x96\\x7e\\x8e\\x81\\x18\\x24\\x86\\x49\\x86\\x58\\x43\\x82\\x21\\xd9\\x60\\x33\\xd4\\x19\\x3a\\x0d\\xbd\\xa6\\xd7\\xff\\x7d\\x94\\x1f\\x1b\\xf3\\x8f\\x8d\\x05\\x25\\x5d\\x58\\xa1\\x0e\\x0c\\x70\\x2f\\xdc\\x07\\x8f\\xc1\\xe3\\xf0\\x22\\xbc\\x06\\x7f\\x80\\xcf\\xe1\\x2b\\x18\\xc3\\x18\\x8c\\x45\\x33\\xa6\\x61\\x2e\\xb6\\x60\\x27\\xf6\\x8b\\x2b\\xbc\\x17\\x9f\\xc0\\xaf\\xf0\\x22\\x89\\x0b\\xae\\xf0\\x55\\x72\\x82\\xbc\\x47\\xfe\\x49\\x61\\x7c\\x85\\x5b\\xe8\\x4e\\x7a\\x13\\xbd\\x99\\x3e\\x40\\x0f\\xd3\\x5f\\xd1\\xd7\\xe9\\x1f\\xe9\\x5f\\x18\\x30\\x33\\xcb\\x61\\x35\\xac\\x99\\xf5\\xb0\\x41\\xb6\\x9a\\x6d\\x67\\xbf\\x67\\xef\\xb1\\x53\\xec\\xdf\\x1c\\xe1\\xe4\\xc9\\x90\\x5c\\x96\\xbc\\x29\\xf9\\xde\\xe4\\x6f\\x92\\xff\\x95\\x32\\x45\\x07\\x3a\\x85\\x4e\\xa3\\xd3\\xe9\\x4c\\xba\\x1c\\x5d\\x9e\\xae\\x70\\x7c\\x85\\x0f\\xe8\\x1e\\xd6\\x1d\\xbc\\x62\\x85\\x1d\\xc1\\x15\\xca\\x27\\xac\\x70\\x5e\\x70\\x85\\xa3\\x82\\xe6\\x61\\x91\\x4c\\x32\\xf6\\x2d\\xc0\\xd8\\x29\\xac\\x1a\\x7b\\x11\\x5d\\x63\\x2f\\x00\\xa0\\x15\\x00\\x4d\\x00\\xa8\\x17\\xb8\\x0b\\x00\\x93\\x00\\x50\\xd0\\xf3\\xea\\x31\\xd5\\x18\\xe5\\xff\\xcd\\x9f\\xc5\\x36\\x81\\x34\\x7c\\x0f\\x5f\\x09\\xbb\\xfc\\x7f\\xf1\\x1f\\xf0\\xbf\\xea\\x3f\\xec\\x3f\\xe0\\x7f\\xd0\\x7f\\x8f\\xff\\x0e\\xff\\x36\\x80\\xb1\\xf9\\x63\\x7d\\xc2\\x08\\xbf\\x14\\x60\\xac\\x76\\xf4\\xd2\\xe8\\x77\\x00\\xa3\\xcf\\x00\\x8c\\x3e\\x0e\\x30\\xfa\\x00\\xc0\\xe8\\x3d\\x00\\xfc\\x1e\\x00\\xfe\\x26\\x80\\xd1\\x5a\\x80\\x4f\\x1b\\x3e\\x8d\\xfc\\xe4\\x37\\x9f\\x9c\\xff\\x64\\xea\\x27\\x67\\x3f\\xc1\\x8f\\xdb\\x00\\x3e\\x6e\\xfa\\xb8\\xf1\\xe3\\x86\\x8f\\xab\\x4e\\x2b\\x3e\\x2e\\x3e\\x1d\\xf1\\x71\\xde\\xc7\\xf4\\xa3\\xef\\x01\\x3e\\x7a\\x1b\\xe0\\xa3\\xe1\\x8f\\x16\\x7e\\xd4\\xff\\xd1\\xec\\x93\\x7b\\x3e\\x9a\\xf6\\x91\\xf9\\xe4\\xe6\\xbf\\x3f\\x72\\x72\\xf8\\xe4\\xaa\\x93\\x4b\\x4f\\x0e\\x9c\\xec\\x3c\\xe9\\x39\\x99\\x79\\xd2\\xfa\\xc1\\xab\\xe1\\xbf\\x23\\x37\\xe3\\x6d\\x01\\xee\\x15\\xff\\xde\\x9b\\x20\\x16\\x7f\\x00\\x80\\xbf\\x02\\x20\\x03\\xc0\\xe4\\x09\\xaf\\xce\\x89\\xb2\\x83\\xdd\\x38\\x00\\x3f\\xf1\\x87\\xed\\xc1\\x11\\x1b\\x00\\x70\\x5f\\xf0\\xd8\\xe3\\x00\\xf8\\x6f\\x00\\x92\\x0c\\x40\\xdc\\x00\\x44\\xb0\\x89\\x7f\\x01\\x20\\x9f\\x01\\x90\\x8b\\x57\\xdf\\x81\\x7c\\xf9\\x63\\xf7\\x25\\x7f\\x0f\\xbc\\xfe\\x0f\\x7f\\x94\\xc5\\xe0\\x39\\x3c\\x8f\\x17\\xf0\\x0b\\xfc\\x12\\xff\\x01\\x1b\\xf1\\x33\\xbc\\x88\\x97\\x70\\x14\\xfd\\xc8\\xe3\\x18\\x6c\\x82\\x6b\\x09\\x10\\x24\\x84\\x50\\xc2\\xe0\\x3a\\xd8\\x4c\\x38\\x22\\x21\\x52\\x22\\x23\\x61\\x24\\x1c\\xb6\\xc0\\xf5\\x44\\x45\\xd4\\x44\\x43\\xe2\\x48\\x3c\\x49\\x80\\xad\\xb0\\x8d\\x68\\x49\\x22\\x49\\x22\\xc9\\x24\\x05\\xb6\\xe3\\xa7\\xf4\\x34\\xec\\xc0\\xcf\\xe1\\x06\\xb8\\x11\\x76\\x92\\x46\\xd2\\x44\\x9a\\xc9\\x54\\xd8\\x45\\xa6\\x91\\xe9\\xa4\\x85\\xcc\\x20\\x33\\x49\\x2b\\x69\\x23\\x3e\\xb8\\x09\\x7e\\x46\\xda\\x49\\x07\\x99\\x45\\x66\\x93\\x39\\x64\\x2e\\xe9\\x84\\xdd\\xb0\\x87\\x74\\x91\\x6e\\xd2\\x43\\xe6\\x91\\x5e\\xd2\\x07\\x7b\\xe1\\x66\\x41\\x9f\\x91\\x35\\x64\\x2d\\x59\\x47\\xd6\\xe3\\x19\\x3c\\x8b\\x5f\\x91\\x08\\x72\\x2b\\xd9\\x47\\x6e\\x23\\xb7\\x93\\x21\\xb2\\x82\\x0c\\x93\\xd5\\x70\\x10\\x0e\\x91\\x7f\\xc0\\x63\\xe4\\x2b\\xf2\\x35\\xf9\\x06\\x1e\\x87\\x27\\xc8\\xf7\\xe4\\x22\\xb9\\x04\\x23\\x64\\x94\\xf8\\xe1\\x30\\xe1\\xc9\\x18\\x3c\\x49\\x01\\x8e\\x50\\x84\\xa7\\x28\\xa1\\x14\\x9e\\xa6\\x0c\\x9e\\x81\\x67\\x29\\x47\\x25\\x54\\x4a\\x65\\x34\\x8c\\x86\\xd3\\x08\\x1a\\x09\\x2f\\xd1\\x68\\x3a\\x09\\x5e\\xa6\\x51\\x70\\x14\\x8e\\xc1\\x2b\\xf0\\x2a\\xbc\\x06\\xc7\\xe1\\x04\\x8d\\x81\\xd7\\xe1\\x0d\\xda\\x44\\xd5\\xf0\\x7b\\xaa\\x81\\x3f\\xd0\\x38\\x1a\\x4f\\x13\\xa8\\x16\\xfe\\x08\\x7f\\x82\\xb7\\x69\\x12\\x6d\\xa6\\xc9\\xf0\\x0e\\x4d\\x81\\x3f\\x53\\x1d\\xd5\\xc3\\x5f\\xa8\\x01\\xde\\x85\\xf7\\xe0\\x7d\\x6a\\xa4\\x89\\xf0\\x57\\x9a\\x4a\\x4d\\xd4\\x4c\\x2d\\x34\\x8d\\xa6\\x53\\x2b\\x7c\\x40\\x6d\\x34\\x83\\x66\\xc2\\x67\\xf0\\x39\\x9c\\x81\\xb3\\x34\\x0b\\xce\\xc1\\x79\\xb8\\x40\\xb3\\xe1\\x0b\\xf8\\x12\\xfe\\x01\\x5f\\xd1\\x1c\\xf8\\x9a\\xe6\\xd2\\x3c\\xf8\\x86\\xda\\xe1\\x9f\\x34\\x9f\\x4e\\xa5\\x0e\\xe0\\xa9\\x13\\xc6\\xa8\\x8b\\x16\\xd0\\x42\\x5a\\x84\\x80\\x88\\x84\\x16\\xd3\\x69\\xb4\\x04\\x29\\x32\\xe4\\xe8\\x45\\x3a\\x9d\\xb6\\xa0\\x02\\x95\\xa8\\x42\\x35\\x9d\\x41\\x67\\xa2\\x19\\x2d\\x74\\x8c\\x01\\xfd\\x9e\\x7e\\x87\\x69\\x98\\x8e\\x56\\xb4\\xd1\\x4b\\x74\\x14\\x33\\x30\\x93\\xfe\\x93\\xfe\\x8b\\xb6\\xd2\\x36\\xfa\\x29\\xfd\\x0c\\xb3\\x30\\x9b\\xfa\\x29\\x8f\\x39\\x98\\x4b\\x3f\\xa7\\x67\\x30\\x0f\\xed\\x98\\x8f\\x0e\\x74\\xa2\\x8b\\xfa\\x68\\x3b\\x3d\\x4b\\xcf\\xd1\\x0e\\x3a\\x8b\\x49\\x99\\x8c\\x9e\\xa7\\x17\\xb0\\x00\\x0b\\xe9\\x17\\xf4\\x4b\\x2c\\xc2\\x62\\x2c\\xa1\\xff\\xc1\\x52\\x2c\\xa3\\xdf\\xd2\\x7f\\xd3\\xd9\\x74\\x0e\\x9d\\x8b\\xe5\\xe8\\x66\\x1c\\x93\\x60\\x05\\x56\\x32\\x64\\x84\\xfe\\x83\\x7e\\xc5\\x28\\x63\\x58\\x45\\x17\\xd2\\x05\\x74\\x11\\x1d\\xa0\\x8b\\xe9\\x12\\xba\\x14\\x3d\\x58\\x4d\\xbf\\xa6\\xdf\\xd0\\x2d\\xf4\\x7a\\xac\\xc1\\x5a\\xba\\x95\\x6e\\x63\\x61\\x2c\\x1c\\xeb\\xe8\\x76\\x16\\x41\\x77\\xd0\\x1b\\x70\\x1e\\xf6\\xb2\\x28\\x16\\x89\\x6b\\xe8\\x27\\xb8\\x16\\x24\\x24\\x1c\\x02\\x30\\x07\\xaf\\x16\\x2c\\x08\\x19\\x30\\xf2\\xff\\xe0\\x7b\\x0c\\x71\\x3f\\x30\\xe0\\x40\\x02\\x52\\x90\\x41\\x18\\x84\\x43\\x04\\x44\\x42\\x14\\x44\\xc3\\x24\\x88\\x01\\x39\\xc4\\x82\\x02\\x94\\xa0\\x02\\x35\\x68\\x20\\x0e\\xe2\\x21\\x01\\xb4\\x90\\x08\\x49\\x90\\x0c\\x29\\xa0\\x03\\x3d\\x18\\xc0\\x08\\xa9\\x60\\x02\\x33\\x58\\x20\\x0d\\xd2\\xc1\\x0a\\x36\\xc8\\x80\\x4c\\xc8\\x82\\x6c\\xc8\\x81\\x5c\\xc8\\x03\\x3b\\xe4\\x83\\x03\\x9c\\xe0\\x82\\x02\\x28\\x84\\x22\\x28\\x86\\x12\\x28\\x85\\x32\\x28\\x07\\x37\\x54\\x40\\x25\\x54\\x81\\x07\\xaa\\xa1\\x06\\x6a\\xa1\\x0e\\x26\\x43\\x3d\\x78\\xa1\\x01\\xa6\\x40\\x23\\x34\\x41\\x33\\x4c\\x85\\x69\\x30\\x1d\\x5a\\x60\\x06\\xcc\\x84\\x56\\x68\\x03\\x1f\\xb4\\x43\\x07\\xcc\\x82\\xd9\\x30\\x07\\xe6\\x0a\\xd6\\x53\\x90\\x58\\xfc\\x1a\\xff\\x89\\x17\\x71\\x8c\\x50\\x22\\x21\\x1c\\x91\\x92\\x30\\x22\\x23\\xe1\\x24\\x92\\x44\\x93\\x28\\x32\\x89\\xc4\\x90\\x58\\x22\\x27\\x0a\\xa2\\x24\\x2a\\xa2\\x21\\x6a\\x12\\x47\\x12\\x48\\x3c\\x49\\x24\\x5a\\x41\\x46\\x71\\x09\\x2c\\x85\\x6e\\xe8\\x81\\xf9\\x38\\x08\\x2b\\x61\\x33\\x2c\\x86\\x05\\xb8\\x11\\x86\\xa0\\x1f\\x77\\xc1\\x46\\xb8\\x16\\x6f\\x80\\x41\\xbc\\x09\\x7f\\x06\\xbd\\xb0\\x02\\xaf\\xc7\\x6d\\xb8\\x15\\x8e\\xe2\\x8d\\xb0\\x10\\xd6\\xc0\\xb3\\xb0\\x05\\xb6\\xc1\\x06\\xe8\\x82\\x01\\xdc\\x01\\xb7\\xe2\\x4e\\x78\\x02\\x16\\xc1\\x35\\xb8\\x1c\\x28\\x9e\\xc3\\x2f\\x90\\x17\\x24\\x56\\xd8\\x37\\x5c\\x84\\x03\\x38\\x1f\\xfb\\x61\\x2b\\xee\\x26\\x3a\\x72\\x13\\xae\\xc2\\xb5\\xb8\\x02\\x57\\x8a\\x9b\\xb0\\x14\\x56\\xe1\\x02\\x5c\\x8c\\x43\\x78\\x01\\xff\\x85\\xe7\\xf1\\x5b\\xfc\\x06\\xff\\x83\\xdf\\xe1\\xf7\\xf8\\x6f\\x41\\x03\\x01\\xe0\\x25\\x51\\xf7\\x00\\xdc\\x00\\x77\\xc1\\xfd\\xb0\\x04\\xee\\x86\\x7b\\xe0\\x5e\\x18\\x86\\x07\\xe0\\x3e\\xd8\\x2f\\xec\\x33\\xc6\\xd3\\xaf\\xe8\\x75\\x12\\xc1\\xc3\\x08\\x03\\x8d\\x5b\\x49\\x04\\xb6\\xf0\\x51\\x44\\x2c\\x83\\x06\\x79\\xac\\x5c\\xce\\x64\\x71\\x36\\xa4\\x46\\xb9\\x9d\\x13\\xfe\\xc1\\xcf\\x93\\x0e\\xff\\x0e\\xef\\x4c\\x3c\\xfc\\x16\\x77\\x0b\\x3f\\x8b\\xc4\\x0c\\x08\\xff\\x88\\xfc\\x92\\x0e\\xc0\\xae\\xe7\\x46\\x40\\x0b\\x29\\xb0\\xc2\\x3b\\xa2\\x69\\x6e\\x73\\x5b\\xa2\\x23\\x08\\x8d\\x24\\x04\\x90\\x42\\x97\\x0c\\x25\\x92\\x12\\xef\\xa4\\x70\\xc2\\x18\\xe7\\x0b\\x93\\x12\\x8e\\x2b\\xf7\\x46\\x21\\x62\\x29\\x36\\x68\\xdd\\x26\\xe1\\x80\\x70\\x8e\\x72\\xac\\xfb\\x87\\x57\\x05\\xc7\\xf9\\xdc\\x09\\x29\\xc9\\x49\\x89\\xda\\x84\\xf8\\x38\\x8d\\x5a\\xa5\\x54\\xc4\\xca\\x83\\x7f\\x31\\x31\\xb2\\x24\\x1b\\x1a\\xa9\\x51\\x61\\x74\\xe8\\xc5\\x97\\x9d\\xda\\x85\\x97\\xca\\x28\\xbe\\x8c\\xd4\\xae\\x30\\x92\\x1d\\x27\\x26\\x1f\\x99\\xfc\\x09\\x92\\xfc\\xf3\\x18\\xe6\\x7d\\xb2\\xfe\\x44\\xfd\\x53\\xde\\xf7\\xff\\x93\\x7f\\xd2\\x3f\\xf9\\x48\\xf7\\x09\\xfb\\x09\\xbc\\x83\\xef\\xc3\\x3b\\x1e\\x41\\xc3\\x41\\xbc\\x97\\xef\\x14\\x5e\\x07\\xf9\\xbf\\x3f\\xc2\\xf7\\x91\\x2a\\x34\\x08\\xfc\\xbe\\x71\\xcc\\xc6\\x56\\x48\\x6e\\x87\\x72\\xa8\\x76\\x57\\xc6\\x4e\\x22\\x04\\xf2\\xb2\\x09\\xe5\\x48\\x3d\\x20\\x61\\x04\\xd9\\x20\\x30\\x8e\\x30\\x6e\\x89\\x48\\x54\\x20\\x3d\\xc0\\x51\\xca\\xb5\\x02\\xc7\\x51\\x1f\\x50\\x8e\\x4e\\x29\\x2b\\x29\\x70\\xe5\\xe6\\x24\\x26\\xc4\\x69\\xe4\\x31\\x12\\x99\\xd2\\x86\\xf9\\x59\\xc4\\x92\\x45\\x1d\\xf9\\x65\\xc4\\xe5\\xb0\\xab\\x92\\xa9\\x4a\\x9f\\x6f\\x36\\x1a\\xa2\\x89\\x4a\\x99\\x4c\\x34\\xc9\\x54\\xa5\\x8c\\x26\\x52\\x95\\xd1\\x91\\x45\\x1d\\x7a\\x65\\x32\\xb1\\xe7\\x39\\xe9\\xdc\\x78\\x97\\xaf\\xbc\\xf7\\xa1\\x95\\xee\\xa2\\x85\\xfb\\x66\\xdd\\xdb\\xbe\\xbb\\xd7\\xc5\\x9f\\x5b\\x32\\xc7\\xee\\xcd\\xd1\\x68\\x5c\\xed\\x55\\xbd\\x0f\\xae\\x2c\\x2f\\x1a\\xb8\\x7d\\xce\\x3d\\x33\\xee\\x5d\\x5b\\x8f\\x1a\\x6b\\xd5\\xcc\\xcc\\x45\\x4b\\x70\\x83\\xb5\\xc2\\x99\\xa9\\x4e\\x6d\\x5e\\xb8\\xab\\x6b\\xc6\\xae\\x7e\\x77\\xd8\\xbb\\xef\\x47\\xd6\\x0f\\xdf\\x37\\x6f\\xcd\\x7a\\x6d\\x6e\\xa5\\xc5\\x52\\x9a\\x9f\\x1d\\x67\\x9e\\xba\\x68\\x57\\x67\\xdb\\xae\\xbe\\xd2\\xb0\\x63\\xc7\\x64\\xc5\\x83\\x07\\x57\\xd7\\x75\\x15\\xc6\\xcd\\x03\\x00\\x0e\\x8c\\x63\\x17\\xd8\\x23\\xdc\\x2b\\xa0\\x02\\x1b\\x54\\x40\\x2b\\x74\\x40\\x99\\xbb\\xb8\\xa3\\x9d\\x10\\xea\\x43\\x89\\x94\\xd4\\x03\\x01\\x64\\x04\\x7b\\x80\\x81\\x54\\xc2\\xa4\\x3d\\x40\\x29\\x08\\x68\\xd7\\xe3\\x05\\x89\\x84\\xeb\\x00\\x8e\\xab\\xe6\\x1a\\xd2\\x03\\x7f\\xa9\\x32\\x59\\xa2\\x4d\\x91\\x5f\\x46\\xec\\x79\\xc9\\x44\\x25\\xac\\xce\\x68\\xc8\\x22\\x0e\\xbb\\xb8\\xb6\\x32\\xe2\\x70\\xe4\\x67\\x11\\x71\\xf9\\xf8\\x3f\\x8c\\xe1\\x2c\\xa8\\x31\\x1a\\x6b\\x17\\xd5\\x4e\\x5e\\x54\\x63\\x34\\xd6\\x2c\\xac\\xab\\x5b\\x54\\x9b\\xfa\\x7c\\xb8\\xc6\\xac\\xd5\\x9a\\xd4\\xe1\\xe1\\x1a\\x53\\xa2\\x36\\x55\\x13\\x8e\\xbb\\x53\\x83\\x43\\x0c\\xb5\\x0b\\xeb\\xea\\x06\\x6a\\x53\\x9f\\x8f\\x8c\\x37\\xc5\\xa7\\x98\\x95\\x92\\x70\\x8d\\x49\\xab\\x35\\xab\\xc3\\xf9\\x15\\xdb\\x49\\xee\\x76\\x76\\xa8\\xa8\\xaf\\x21\\x33\\xb3\\xa1\\xaf\\x68\\x4a\\x61\\xef\\x94\\x8c\\x8c\\x29\\xbd\\x85\\x1a\\x9b\\x5e\\xa1\\xd0\\xdb\\x34\\x53\\x42\\x1f\\x46\\x0f\\x14\\xf6\\x09\\xa7\\xfa\\x0a\\x1b\\x0b\\xfb\\x1a\\x32\\x32\\x1a\\xfa\\x82\\x63\\xac\\x71\\x8d\\x1a\\xab\\xf8\\x41\\x73\\x63\\x05\\x63\\x15\\x40\\xc1\\x3b\\x76\\x9e\\xbd\\xc3\\xbd\\x02\\x56\\x28\\x84\\x06\\x58\\xe1\\x56\\x94\\xc6\\x71\\x14\\xb9\\xec\\x2c\\x5d\\x3c\\x63\\x68\\x44\\xc2\\x68\\x7d\\x40\\x44\\x0c\\xc0\\x71\\x21\\x92\\x21\\x92\\x0e\\x8a\\x84\\x94\\x7a\\x25\\xc8\\x58\\xf0\\x33\\x69\\xd0\\xba\\x75\\x57\\x0e\\xf2\\x41\\x68\\x0c\\xed\\x00\\x4a\\xeb\\x68\\x83\\xcf\\x3d\\x29\\xc3\\x36\\xb9\\xd6\\x56\\x98\\x51\\x68\\x54\\x26\\x67\\x48\\x65\\x71\\x22\\xa5\\x5d\\x66\\xb3\\x23\\x44\\x4c\\x81\\x9b\\xa4\\x0a\\xa7\\xd3\\x61\\x57\\x4a\\xa4\\x1a\\xbd\\x45\\x22\\x11\\x48\\xcb\\xe5\\x39\\x5d\\x28\\x8d\\xa6\\x02\\xcf\\x51\\xa5\\x5a\\xe3\\x2a\\x23\\xf9\\x21\\x22\\x7b\\x4d\\x9e\\xb9\\xc5\\xc5\\x15\\xae\\xbe\\xdd\\x3e\\xef\\xda\\xd6\\x1c\\x5d\\x81\\xd7\\xd6\\xfc\\x1f\\x9d\\xf1\\xcb\\xc9\\x8d\\xcf\\xf3\\x2f\\x57\\x34\\x3c\\x30\\xbf\\xf7\\xfe\\x65\\x25\\xf8\\x62\\xfe\\xbc\\x2c\\xfe\\x7b\\x59\\xb2\\x59\\x25\\x8d\\xcb\\x28\\xd7\\x98\\x74\\xb3\\x53\\x74\\x51\\xd1\\x09\\x26\\x8d\\x31\\xdf\\x20\\xc7\\xa1\\xca\\x25\\x73\\x5b\\xd2\\x7d\\xf7\\xcc\\x98\\xb9\\xb3\\xdb\\xe1\\x9c\\x7d\\x8d\\xc7\\xde\\xde\\x54\\x93\\x52\\xc1\\x1f\\x2d\\xdc\\xde\\xb8\\xe3\\x8b\\x39\\x5f\\x4d\\xb7\\x3b\\x8a\\xfa\\x77\\x4f\\x4f\\x4c\\xc0\\x99\\x92\\xa4\\x82\\xfc\\x6c\\x55\\x9a\\x27\\x37\\x91\\x5e\\x97\\xd9\\x61\\xaf\\x56\\xda\\x2c\\x29\\x61\\x71\\x59\\xa9\\xea\\x38\\xab\\x0b\\x00\\xf1\\x04\\xfd\\x98\\xdc\\x23\\xea\\x29\\x85\\x5b\\xd0\\x38\\xe8\\x83\\x80\\x8e\\x92\\x13\\x99\\x3a\\xa0\\xa1\\xc8\\x3d\\x89\\xbf\\xfa\\x0b\\xb7\\x9c\\x5f\\x4a\\x52\\x44\\xf5\\x88\\x3e\\xde\\x45\\xaf\\x95\\x4c\\x07\\x2d\\x48\\x8e\\x28\\xa5\\x98\\x63\\xc3\\xfc\\x32\\xe6\\xd2\\x44\\x13\\x81\\xb9\\x62\\xd5\\x6a\\x8d\\x34\\x8b\\x73\\xa0\\xcf\\x56\\xdf\\xb3\\x64\\xa5\\xcb\\x59\\x30\\xe8\\x2b\\x28\\xf0\\x0d\\x16\\x38\\x5d\\x2b\\x97\\xf4\\xd4\\xdb\\x48\\xf3\\xae\\xef\\xdf\\x7e\\x7c\\xeb\\xec\\xf8\\xdb\\x6d\\x7b\\xde\\xe5\\x4f\\x3d\\x97\\xf0\\x4b\\xfe\\xd4\\xbb\\x7b\\x6d\\xfb\\xe2\\xe7\\x5c\\xff\\xf8\\xdb\\xdf\\xdd\\x24\\xdc\\xbf\\x84\\x77\\xd1\\x65\\x57\\xdc\\x5f\\x19\\xcd\\xa4\\x96\\x32\\x12\\xeb\\x70\\xe4\\x13\\xb3\\xd9\\xe2\\x4a\\xe6\\x54\\x74\\x59\\x46\\x43\\xef\\xf2\\xd5\\x85\\x0e\\xd7\\x60\\x7b\\x41\\x51\\xfb\\x52\\xa7\\xa3\\x70\\xf5\\xf2\\xde\\x86\\x0c\\x52\\xb4\\xe3\\xdb\\x77\\x9e\\xd8\\xd1\\x19\\xbf\\xcf\\xba\\xf7\\x2f\\xa8\\xfb\\x65\\xc2\\x73\\xa8\\x7b\\x6f\\xaf\\xf5\\xd6\\xf8\\xce\\x1d\\x4f\\xbc\\xf3\\xed\\x0e\\x41\\xe7\\xdc\\x01\\x23\\xec\\xe7\\xec\\x08\\x44\\x43\\x82\\x5b\\x13\\x1d\\x15\\x19\\x11\\x1e\\x26\\x93\\x4a\\x28\\xc1\\x48\\xa8\\x05\\x80\\x05\\x4a\\x94\\xa9\\x6c\\x68\\x72\\x71\\xd4\\x4e\\x4d\\x1a\\x0e\\xa5\\x94\\x5a\\x88\\x81\\x5f\\x5d\\x89\\xc3\\xa9\\x1f\\x58\\x70\\x45\\x25\\xbf\\x1c\\x23\\x9f\\x7c\\xfb\\xed\\x23\\x64\\x7d\\xe7\\x5b\\x0f\\xe1\\x13\\x7c\\xfd\\x03\\x7f\\xec\\xe0\\x7f\\x73\\x2d\\xae\\xe0\\x6f\\x5b\\x0b\\x08\\x3d\\xb0\\x97\\x4d\\x66\\xcf\\x40\\x04\\x98\\xdd\\x46\\xe0\\x80\\x70\\x33\\x18\\x02\\x45\\x24\\x80\\x5d\\xc0\\x71\\x02\\xab\\x71\\x64\\x4a\\x40\\xc7\\x4a\\x64\\x09\\x36\\xd4\\xab\\xf4\\x72\\xbd\\x5c\\xef\\xd0\\xcb\\xf5\\xe4\\x03\\x5c\\xc2\\xef\\xe5\\xff\\xc3\\xef\\xc1\\xa5\\x18\\x46\\x33\\x78\\x7e\\x1e\\xde\\xc5\\xe3\\x0d\\x80\\xd8\\xcf\\x2f\\x24\\xaf\\xc1\\x3f\\x21\\x0a\\x62\\xdc\\x51\\x12\\x8e\\x04\\x66\\x9b\\x28\\xcc\\xd6\\x24\\x30\\xa2\\xa5\\x8c\\x3a\\x1c\\x7a\\xf2\\x6a\\x8a\\xd3\\x6b\\xbb\\x59\\xa1\\x8f\\x8b\\x46\\x4e\\x5d\\xb8\\x7a\\x70\\x9e\\xa5\\x21\\xb5\\x7e\\xda\\x2c\\xd7\\x39\\x81\\xb6\\x09\\x24\\x96\\x75\\x90\\x7f\\x02\\x85\\x38\\xb7\\x4a\\x04\\x2b\\x33\\x00\\x11\\x7c\\x02\\x5d\\xa6\\xc8\\x63\\xc4\\x4d\\xd7\\x3b\\xf4\\xac\\x63\\xf4\\x05\\x5a\\x41\\x62\\x3f\\x16\\xae\\x79\\x68\\xec\\x02\\x4d\\x43\\x1f\\x28\\x42\\x3c\\xd2\\x01\\x88\\xd5\\xd8\\x90\\x96\\x2a\\x0c\\x37\\x4d\\x90\\x05\\x81\\xf9\\xf1\\xa1\\x84\\xbc\\xba\\xcc\\xcc\\xba\\x5c\\xad\\x36\\x57\\x78\\xcf\\x4b\\xb8\\xcf\\x52\\x95\\x9b\\x94\\x94\\x5b\\x65\\x31\\x57\\xe6\\x26\\x26\\xe6\\x56\\x0a\\xbf\\xf5\\xb7\\xb1\\xcd\\x0c\\xb8\\x11\\xa0\\x81\\x7b\\x22\\x0c\\x09\\x1b\\x8f\\x0d\\x81\\x29\\x70\\x7a\\xd4\\xe3\\x49\\xde\\x4f\\xf4\\x48\\xd7\\x4b\\x32\\x81\\xc2\\xae\\xb1\\xf3\\xac\\x42\\xd4\\x99\\x49\\x60\\x82\\xc9\\xee\\xb0\\x94\\x64\\x8d\\x9a\\x51\\x82\\xf5\\xde\\x91\\x98\\xe6\\x36\\xb7\\x0a\\x08\\x11\\xe7\\xe5\\xf1\\x86\\xd4\\x65\\x35\\x34\\x68\\x7f\\xec\\x78\\x1d\\x34\\xf8\\x9e\\x31\\xa7\\xa5\\xa7\\x8a\\x36\\x38\\xa4\\x0d\\xe5\\xa1\\x65\\x70\\x68\\x36\\x1b\\x0d\\x12\\x15\\x87\\x6a\\xb5\\x3d\\xcf\\xe9\\x60\\x15\\x15\\xd7\\x8c\\x2c\\x59\\x3c\\xb2\\xb6\\xaa\\x72\\xed\\x13\\x8b\\x97\\x8c\\xac\\xad\\xf4\\xcf\\xc3\\x2d\\xb4\\xb3\\xb3\\xab\\x13\\xb7\\xf0\\xeb\\xb8\\xce\\x39\\xdd\\x73\\x89\\x75\\xd7\\xbb\\x7b\\xea\\xeb\\xf7\\xbc\\xbb\\x0b\\x67\\x85\\x3e\\x7d\\x82\\xfa\\x9b\\x6f\\xda\\x77\\xd7\\x21\\xfe\\xa3\\xdd\\x37\\xde\\xbe\\x5f\\x58\\xe2\\x63\\x00\\xd4\\xc9\\x8d\\x80\\x04\\x94\\x6e\\x39\\xc7\\x04\\xd7\\xa5\\x0e\\x00\\x4a\\xa1\\x21\\x46\\xd8\\x43\\xbd\\x5e\\xce\\x39\\x4c\\x76\\xea\\xe4\\x3f\\xe7\\x77\\x93\\x6b\\x26\\xb1\\xd9\\x5b\\xbe\\xf9\\x54\\xb8\\xae\\x06\\x80\\x55\\x73\\xc7\\xc0\\x00\\x59\\x6e\\x1b\\x41\\x60\\x58\\x0f\\x04\\x19\\x12\\x36\\x08\\x88\\xa2\\xb6\\xf2\\x78\\x81\\x31\\x61\\x17\\x85\\xbb\\x25\\xa4\\xc6\\xda\\x62\\x38\\x59\\xbc\\x4d\\xaf\\x77\\x60\\x19\\x0d\\x68\\x1e\\x89\\x4a\\x3f\\x51\\x69\\xa1\\x9e\\x55\\x8f\\xa6\\xe0\\xbb\\xae\\x86\\x6c\\x55\\xa2\\xbd\\xd6\\x36\\xb4\\x8c\\x3f\\x5b\\xbf\\xed\\x85\\x15\\x4b\\x0f\\x0e\\x95\\x64\\x4e\\x5f\\x51\\xcb\\x7f\\x49\\x36\\xfe\\x16\\x2f\\x96\\x74\\x4f\\xad\\xd1\\xe7\\x36\\x38\\x12\\x37\\x0d\\x75\\x3d\\x76\\x9d\\xb7\\x6c\\x70\\xff\\xdc\\xba\\xcd\\x9b\\xae\\x9f\\xcc\\xff\\x1d\\x10\\x3a\\xc7\\x2e\\xb0\\x3a\\xee\\x18\\x94\\x08\\xb6\\x3b\\x19\\xa5\\x20\\xce\\x0b\\x90\\xc0\\x20\\x70\\x52\\x89\\x94\\x93\\x0c\\x02\\x80\\x94\\x03\\x69\\xcf\\x84\\x79\\x4a\\x24\\xac\\x03\\x18\\xab\\x66\\x0d\\x25\\x45\\xf9\\x79\\x59\\x99\\xe9\\x96\\x54\\xa5\\x59\\x27\\x13\\xf6\\x42\\x20\\x77\\xc8\\x16\\x5d\\x31\\xdb\\x80\\xdd\\x16\\xf7\\x29\\x68\\xb5\\xc5\\x71\\x46\\x3c\\x70\\xdb\\xf2\\x25\\xf1\\x79\\x53\\xec\\xd6\\xc9\\x2e\\x1d\\x7f\\x6e\\xf2\\xa6\\xc7\\xe6\\x0d\\x3c\\xb5\\xa9\\x36\\xd1\\xd9\\x9c\\x5f\\xea\\x2b\\x4a\\x6c\\xdc\\xfe\\xeb\\x81\\xd9\\x87\\x6f\\x98\\x8e\\x6a\\x5d\\x71\\x73\\xce\\xc2\\xd5\\x86\\x8a\\x8e\\xc2\\xdb\\xe8\\xb4\\xa1\\xd9\\xb6\\x5a\\x7b\\x62\\x5c\\xa6\\x3b\\xcd\\xb7\\x77\\x41\\x91\\x63\\xc1\\x9d\\x7d\\xd9\\x1d\\xd3\\xaa\\xe3\\xd5\\x9e\\xd6\\xfe\\xa2\\xbe\\x7b\\x17\\x17\\xda\\xe7\\xdf\\xb5\\xd0\\x5a\\x6b\\x4f\\x1a\\xec\\x2c\\x6e\\x71\\x26\\x04\\x70\\x7b\\x31\\x00\\xeb\\xe6\\x46\\x20\\x1c\\xa2\\xc1\\xe6\\x4e\\x8b\\x42\\x60\\x32\\x44\\x20\\xf5\\xdc\\x65\\xc9\\x66\\xac\\xc4\\x0b\\xa2\\x71\\x11\\x10\\x5e\\x50\\xb4\\xed\\x2a\\xa3\\x20\\xda\\x16\\xd4\\xa3\\x5e\\x2e\\xa5\\xbf\\x7c\\xe4\\x11\\xfe\\x9c\\xff\\x81\\x08\\x32\\x0f\\x13\\xfc\\x37\\x63\\xab\\x96\\x24\\x7d\\xcc\\x1f\\xc3\\x92\\xc7\\xe9\\xab\\xa3\\x8b\\x49\\x52\\x8e\\xb0\\xdf\\x2b\\xc7\\x2e\\xb0\\x1a\\x6e\\x04\\xac\\x50\\xe2\\x2e\\xe4\\x50\\x42\\xac\\xc8\\x24\\xa4\\x1e\\x98\\x84\\x93\\x30\\x6e\\x10\\x08\\x48\\x18\\x91\\xf4\\x04\\xe5\\x16\\x4a\\xbc\\x02\\x1c\\x12\\xa8\\x5b\\x4d\\x1b\\xd2\\x0c\\xca\\x34\\xa3\\x5c\\x2e\\x95\\x69\\x6d\\x0a\\x85\\x5e\\xa5\\xa7\\x4e\\xe7\\x44\\xe1\\xb4\\xe8\\x05\\xa6\\x2e\\x23\\x21\\x32\\x4b\\xef\\x9c\\x4e\\xd3\\xfc\\xbf\\x31\\xa6\\x2c\\xaf\\x5f\\x70\\x60\\x59\\x49\\xd1\\xea\\x67\\xd6\\xcd\\x79\\x62\\xfb\\x0c\\x8a\\xb1\\xe1\\x2b\\x3b\\x0a\\x9a\\x72\\x35\\x49\\x25\\xed\\xa5\\xe9\\x25\\x59\\xa9\\x31\\xe4\\x2d\\x72\\xfa\\x02\\xff\\x62\\xac\\xb9\\x6a\\xc3\\x33\\x43\\xdd\\x23\\x5b\\x1b\\x0b\\x06\\xf6\\xf7\\xce\\xed\\xb7\\xd6\\xf7\\x15\\x17\\x75\\xd5\\x98\\xa3\\xd5\\x49\\x31\\x02\\x9d\\x16\\x8c\\x5d\\x60\\xf5\\xdc\\xf3\\xa0\\x87\\x7c\\x70\\xbb\\x4b\\xa5\\xc8\\xd0\\x84\\x1c\\x13\\xf0\\x9c\\x14\\x19\\x87\\xac\\x47\\x70\\x70\\x3a\\x24\\x28\\xf2\\x02\\xc7\\x91\\x0e\\x20\\xa4\\x9a\\x34\\x18\\x0d\\x00\\x19\\x56\\x43\\xbe\\x31\\x1f\\xf4\\xa0\\x4b\\x4b\\xd3\\xcb\\x64\\x1a\\x1b\\xaa\\xc4\\x39\\x96\\xd1\\x89\\x4b\\x70\\x38\\xf2\\x63\\x9d\\xa9\\x76\\x6a\\x90\\x48\\x55\\x21\\x04\\x93\\x9f\\x45\\xe8\\xd2\\x98\\x25\\x8f\\x0c\\x57\\x87\\x69\\x4a\\xbc\\x6d\\xf6\\xfe\\x3b\\xfb\\xed\\x9e\\x0d\\x4f\\x0d\\xae\\x7c\\x7e\\x73\\xed\\x9c\\x5f\\xa1\\xf2\\xe9\\x7f\\x78\\x87\\x92\\xf4\\x25\\xd3\\x72\\x72\\x9b\\x0b\\x92\\x93\\x0b\\xa6\\x72\\xcf\\x7f\\x5e\\xb4\\xf0\\x96\\x8e\\xf8\\x5c\\x4b\\x5c\\xd3\\xb6\\x23\\x3d\\x0b\\x9f\\xd9\\x3a\\xa5\\xf5\\x8e\\xb7\\xd7\\x2f\\x7a\\x0c\\x2d\\xef\\xae\\xf1\\xe7\\x34\\x97\\x4f\\x6b\\x5e\\xdd\\x94\\x96\\x5e\\xd7\\x53\\x5c\\x3c\\x6f\\x72\\xba\\xb0\\x27\\xd5\\x00\\xcc\\x23\\xca\\x6e\\x8a\\x3b\\x51\\x80\\x0b\\x58\\x1f\\x02\\x0d\\x25\\xde\\x80\\xd8\\xc9\\xe5\\x72\\x2a\\x4c\\x5a\\xd8\\x69\\x87\\x9e\\x79\\xfc\\x27\\xf8\\x0f\\x48\\x81\\xdf\\x44\\xc7\\x38\\xd5\\xc5\\xf3\\xec\\xad\\xd3\\x00\\x14\\x16\\x8f\\x5d\\x60\\x65\\xdc\\x31\\xd0\\x83\\x1d\\xaa\\xc1\\xe1\\xce\\x53\\x51\\x42\\x38\\xac\\x17\\xcc\\x04\\xe5\\x48\\x0f\\x30\\xf6\\x43\\x35\\x56\\xe9\\x2e\\x2a\\xc8\\xc9\\x4a\\x33\\x27\\x27\\x5a\\x25\\x82\\x69\\x52\\x4a\\xa4\\x6a\\xf5\\x38\\x3d\\xae\\x84\\x24\\x34\\x24\\x40\\x4a\\x71\\xa3\\x69\\x50\\xf8\\x83\\x94\\x62\\x29\\x8b\\x66\\x2f\\x5c\\xef\\xdd\\xfc\\xe4\\xfc\\xfe\\x23\\x5b\\xbc\\xfa\\x92\\x19\\x8e\\xd9\\x0b\\x3d\\x6b\\x1e\\xee\\xe9\\xf9\\xc5\\xda\\xea\\xef\\x92\\x5d\\x53\\x72\\x72\\xa6\\x38\\x93\\x97\\x77\\x65\\x35\\xb8\\x52\\x92\\x12\\xb2\\xab\\xac\\x33\\x66\\xc5\\x65\\x57\\x59\\xad\\x95\\x59\\xf1\\x2c\\x73\\xe1\\x81\\xdc\\xbc\\xa7\\xd6\\xcc\\xbf\\x6b\\x81\\xd3\\xb9\\xe0\\xae\\xf9\\x25\\x8b\\x7c\\xb5\\xf1\\x39\\x07\\x16\\xf6\\xdc\\xd6\\xef\\x70\\xf4\\xdf\\xe6\\x97\\xe7\\x35\\x17\\x26\\x27\\x17\\x36\\xe7\\xcd\\x5b\\x9e\\x54\\xd0\\x44\\x0e\\x67\\xd4\\xd9\\x13\\xfb\\x3b\\x32\\x26\\xe7\\x27\\x25\\xe5\\x4f\\x0e\\xc8\\x50\\xd7\\xd8\\xbf\\x58\\x36\\x77\\x0c\\x52\\x20\\x1f\\xaa\\xdc\\x6e\\x13\\x32\\x8e\\x43\\x64\\xa4\\x5e\\x8a\\x0c\\x04\\xb5\\xd6\\x13\\x62\\x08\\x8f\\x57\\x82\\x02\\x9b\\x04\\x78\\x5a\\xaf\\x43\\xc8\\xb0\\xea\\xf2\\xf5\\xf9\\xc9\\x89\\x0a\\x79\\x98\\x14\\x52\\x30\\x45\\x26\\x53\\xda\\x4c\\x79\\x65\\xc4\\x15\\x40\\x5c\\x8e\\xcb\\xe8\\x96\\x48\\x98\\xd1\\xe8\\x40\\xe1\\xdc\\xb8\\x32\\x51\\x26\\x13\\x6c\\x18\\x7c\\x70\\x69\\x69\\x98\\x75\\xcb\\x9c\\xfe\\xbb\\x17\\xb9\\xaa\\x36\\x1c\\x19\\x5c\\xfe\\xcc\\xc6\\xaa\\x99\\x4f\\xf1\\xe7\\x5e\\x52\\x61\\xac\\xb9\\xc2\\x61\\x89\\xd4\\x17\\x35\\x66\\xe6\\x4e\\xc9\\x4f\\x4c\\x70\\x34\\x7f\\x98\\xd3\\xb1\\x79\\xba\\xb5\\xa4\\x61\\xcb\\x91\\xf9\\x0b\\x7f\\xbd\\x73\\x6a\\xdb\\xdd\\x7f\\xbd\\xae\\xf3\\x71\\xfe\\x6f\\x7f\\x1e\\x3e\\x8b\\x7f\\x52\\x5b\\x1c\\x29\\x3d\\xcd\\xab\\x9b\\xd3\\xb2\\x9b\\xe6\\x17\\x14\\xf4\\x35\\x64\\xc2\\xd8\\x18\\x3e\\x35\\x76\\x81\\x3a\\xd9\\xcd\\xc4\\x0c\\x31\\xd1\\x80\\x52\\x88\\x81\\x68\\x5a\\x04\\x61\\x87\\x11\\x9f\\xa3\\x45\\x23\\x76\\x9b\\x38\\x86\\x5f\\x48\\x67\\xb3\\x9b\\x89\\x05\\x62\\xc0\\x41\\x8b\\x50\\x02\\xd1\\x0d\\x00\\x61\\x87\\x21\\x34\\x06\\x10\\xee\\x82\\xdd\\x4c\\xce\\x9a\\x40\\x06\\x92\\x23\\x52\\x26\\x60\\x1f\\xa9\\x86\\x93\\xa3\\x03\\xe5\\xf8\\x85\\xc7\\x43\\x52\\x47\\x6f\\xa4\\x2b\\xc9\\xb6\\xf8\\xb8\\x67\\xf9\\xaf\\x71\\xe9\\xc7\\xb8\\x94\\xff\\x26\\x40\\xdb\\xbb\\x31\\x99\\x35\\xd3\\xc3\\x40\\x41\\x0a\\x06\\x77\\x8a\\x60\\xd9\\x29\\x42\\x17\\x50\\x42\\xe8\\x0c\\xa0\\x54\\xe0\\x54\\x2a\\x62\\x8e\\x18\\xd1\\xec\\x89\\x58\\xc3\\xa1\\x67\\xcd\\xa3\\x8d\\xf4\\x49\\xe1\\x45\\xde\\xfa\\xc4\\xbf\\xf8\\xb4\\x18\\x83\\xb8\\x0f\\x7e\\xc6\\x4c\\xc1\\x39\\x30\\xc4\\x1c\\x9b\\x42\\x8e\\x2a\\x94\\x9b\\x5c\\x96\\xfb\\xe8\\x96\\xd1\\x75\\xa4\\xb4\\xb4\\x84\\x56\\x62\\x14\\xbf\\xf7\\x34\\xbf\\x07\\xa3\\x5f\\x54\\x2a\\x81\\xc0\\xbd\\x63\\xff\\x62\\x8d\\xdc\\x2b\\x60\\x81\\x62\\x28\\x70\\x3b\\x00\\x81\\x02\\xd2\\x41\\x09\\x52\\x06\\x94\\x89\\xee\\x5b\\x60\\x63\\x81\\xb1\\x90\\x0b\\x03\\x50\\xe0\\xcc\\xca\\x00\\x0b\\x58\\x52\\x95\\x19\\x52\\x41\\x74\\x04\\x56\\x16\\x0c\\x96\\xe8\\xb1\\x49\\xf5\\x97\\x05\\x5f\\x00\\xd3\\x78\\x35\\xd0\\xf8\\xa7\\x34\\x21\\x3f\\xdb\\xe0\\x71\\x19\\xba\\xe7\\xa4\\x7a\\x1c\\x7a\\xe4\\xcf\\x62\\xfd\\x86\\x47\\x7b\\x96\\x8e\\xac\\x71\\xe7\\x34\\x74\\xe5\\x26\\x1b\\x26\\x31\\xfe\\x43\\xb5\\xb5\\xc4\\x6c\\x2a\\xb5\\x6a\\x34\\xd6\\x52\\x93\\xb9\\xc4\\xaa\\xc6\\x5f\\x55\\x77\\x4e\\xa9\\x30\\xa5\\x54\\x4f\\x6e\\x30\\x77\\xb4\\x28\\xac\\x95\\x59\\x7d\\xb7\\xcd\\xcb\\xcd\\xeb\\xd9\\xdb\\x59\\xbb\\xb2\\xb7\\xc3\\x96\\x9c\\x95\\x53\\x98\\xc6\\xff\\x51\\x5f\\x28\\x5c\\x51\\xa8\\xd7\\x15\\xa4\\x69\\x34\\x69\\x05\\x01\\x1a\\x9b\\xc6\\xbe\\x63\\xfb\\xb8\\xfb\\xc1\\x0b\\xed\\xb0\\xd5\\x1d\\x17\\x87\\x61\\x64\\x66\\x43\\x3c\\xa5\\x61\\x32\\x04\\xea\\x42\\x0e\\x0a\\x50\\xc2\\x71\\xf5\\xde\\x91\\xa4\\xe6\\x36\\x77\\xba\\x0c\\x29\\x22\\x70\\x14\\x04\\x99\\x96\\x76\\x80\\x54\\x5a\\xe2\\x85\\xb0\\x30\\x91\\x0c\\xb5\\x82\\xea\\x93\\x74\\x80\\x44\\x52\\x2a\\x69\\xd0\\xba\\x2d\\x40\\x20\\x8c\\x92\\xb0\\x9e\\x1f\\xbd\\xe6\\xf2\\x48\\x9f\\x3b\\xda\\xd7\\x66\\x4e\\x4b\\x4f\\x4b\\xb3\\xa4\\xa5\\xa6\\x86\\x0b\\xde\\x79\\x34\\x35\\x1a\\xcc\\x41\\xb7\\xc3\\x25\\xd0\\x4b\\xad\\xa1\\x92\\xa0\\x56\\x74\\x06\\x75\\x7c\\xf0\\xbb\\x4b\\x23\\x0c\\xce\\x22\\x2e\\x67\\x6c\\xc0\\x28\\xa0\\x44\\x00\\x38\\xae\\x7c\\xa7\\x43\\x21\\x20\\x1e\\xb6\\x97\\xa6\\xd6\\x2e\\x99\\x62\\x9f\\x1e\\xa7\\x9b\\x91\\x57\\xd2\\x5e\\xa0\\x92\\x45\\x14\\xb6\\x5f\\xd3\\xd0\\xd8\\x93\\x62\\x23\\xd2\\x49\\xca\\xf0\\x04\\x9b\\x4e\\xce\\x6c\\xb3\\x6e\\x68\\xef\\x7b\\x60\\xa8\\x92\\x71\\xd9\\x3d\\xb7\\x75\\xa7\\x54\\x96\\x17\\x6a\\x74\\x09\\x55\\xf5\\xf5\\x86\\xbd\\xef\\xdc\\x50\\xce\\x71\\x73\\x0f\\x9c\\xda\\xbe\\xea\\xb7\\x9b\\x2b\\xfd\\x9d\\x92\\xdc\\xdc\\xb8\\x3c\\x0d\\x9a\\x27\\xc5\\xb4\\xce\\xa5\\xae\\x39\\xbf\\xbc\\xb9\\xc3\\x9e\\x93\\x99\\xef\\xec\\xbd\\xa9\\xb5\\xef\\xc1\\x95\\xe5\\x59\\xc9\\xfe\\xaf\\x93\\x74\\x31\\xcc\\xd9\\x79\\x7d\\xd3\\x35\\x47\\x56\\x14\\x74\\xdc\\x7f\\xf2\\xfa\\xad\\xc7\\xaf\\xaf\\x94\\x4d\\x52\\x46\\x6e\\x53\\x24\\x2a\\xc2\\x3a\\x9f\\x1c\\xbb\\xe7\\x6e\\x54\\xff\\x7e\\xd8\\xf7\\xc0\\x27\\xfc\\x37\\x43\\x2b\\xe2\\x53\\xa9\\x94\\xe2\\x0b\\x74\\x1f\\x10\\x48\\x04\\x60\\x6f\\x72\\x23\\x20\\x85\\x70\\x30\\xb9\\x0d\\xe1\\x82\\xb3\\x5c\\x0f\\x4c\\x8c\\x7d\\x77\\x8b\\x0a\\x99\\x06\\x22\\x1b\\x22\\xc0\\x16\\x80\\x10\\xea\\xa9\\x1e\\xed\\x82\\x62\\xa6\\xb4\\x89\\xf7\\xce\\xe4\\xdf\\xc3\\x0f\\xc7\\xf0\\x1d\\xfe\\x3d\\xbe\\x18\\xb3\\x6e\\xc5\\x1c\\xfe\\x0f\\xdc\\xc8\\xc5\\x66\\x92\\x42\\xe2\\x04\\x1d\\x7d\\x2d\\x00\\xbb\\x83\\x1b\\x01\\x25\\x24\\x81\\x59\\xf0\\xcd\\xc3\\x91\\x0a\\x98\\x8b\\x49\\x91\\x12\\x46\\x7b\\x42\\x7e\\xa3\\x68\\xed\\xb1\\x43\\x12\\xf8\\x31\\x95\\x0a\\xc0\\x9c\\xaa\\x4b\\x56\\x25\\xa9\\x12\\xe3\\xd4\\xa0\\x04\\x85\\x5e\\x26\\x53\\xd9\\xec\\x72\\xbd\\xc0\\xb3\\x12\\x49\\x08\\xc4\\x50\\xb9\\xdd\\xe9\\x74\\x38\\xcd\\x16\\x93\\xdd\\xe9\\x74\\xe5\\x9b\\x2d\\xc6\\x6b\\xf1\\xec\\xf0\\xd1\\x1b\\xbc\\xb8\\xa8\\xbf\\x7c\\x56\\x69\\x52\\xdd\\xd6\\x17\\x57\\x7f\\x7f\\x71\\x68\\x0d\\x2e\\x19\\xe2\\x2f\\xfe\\x71\\xe5\\x06\\xdc\\x30\\xfc\\x07\\x6e\\x24\\xa7\\x7b\\x5f\\x5f\\xdf\\xfd\\xd6\\x18\\x77\\xeb\\x7c\\xd7\\x82\\x7b\\x07\\x9c\\xe4\\x3a\\xbe\\x0b\\x97\\xb6\\xcf\\x1b\\xc4\\x37\\xb0\\x73\\x76\\x9f\\x0f\\x01\\xa1\\x69\\xec\\x3c\\x1b\\x16\\x65\\xb0\\x2f\\x00\\x8a\\x4d\\x82\\x4d\\xa1\\x84\\x1b\\x94\\x20\\xc7\\x28\\xc7\\x96\\x00\\xa5\\x21\\xeb\\xc2\\xd8\\x65\\x90\\xfc\\x3f\\x8c\\x13\\x40\\xb3\\x3b\\x1a\\x40\\x90\\x56\\x4b\\xaa\\x32\\x3d\\x55\\x2a\\x90\\x35\\xc0\\x50\\x8e\\x90\\xf6\\xd5\\xe8\\xb3\\xa8\\xa8\\x6f\\x45\\xe3\\xe3\\x74\\xb1\\x55\\xd2\\xa9\\xdb\\x9f\\x5f\\x7e\\xed\\xf1\\xed\\x75\\x0d\\x3b\\x5f\\x5b\\xb7\\xfa\\xd7\\x5b\\x1a\\xc2\\xf9\\x33\\x2c\\xa5\\xd8\\x57\\x56\\xd1\\x59\\x9e\\xbc\\x66\\xf3\\x92\\x4d\\x52\\x3c\\xbe\\x64\\x64\\x5d\\xd5\\xdc\\x83\\x5f\\xed\\x3e\\xb6\\xe7\\xab\\x43\\x73\\x3d\\x1b\\x9e\\x59\\x5e\\xd1\\x5d\\xa1\\x2f\\x18\\xd8\\x3f\\xef\\xd5\\x77\\x7f\\xb7\\x72\\x33\\x10\\x58\\x0f\\xc0\\x56\\x70\\x23\\x10\\x05\\x5a\\xc8\\x70\\xa7\\x73\\x18\\xb4\\x8c\\x41\\xfa\\xb3\\x00\\xfd\\xa3\\xa3\\x01\\xa2\\xb5\\xd1\\x09\\xf2\\x49\\x10\\x05\\x91\\x7a\\xc9\\x65\\xda\\x87\\xc8\\x3e\\x1e\\xeb\\x58\\x8f\\x6b\\xf6\\x9c\\x7f\\xb8\\xa3\\xe3\\xc1\\xcf\\x6e\\x1c\\x18\\x68\\x5a\\xdf\\x9a\\x95\\xe9\\xdb\\x3c\\x93\\x1b\\xe9\\x39\\xfc\\xef\\x9b\\x57\\xdf\\xfc\\xed\\xe1\\x6e\\xf6\\xe6\\xa8\\xba\\x64\\xf9\\x03\\xfd\\xd7\\x74\\xdf\\xb7\\xc2\\x1d\\x88\\xcb\\xde\\x0c\\xc0\\xfa\\xb9\\x11\\x88\\x80\\x74\\xb7\\x19\\x38\\x00\\xe4\\x40\\x40\\x7c\\xd4\\x07\\x94\\x96\\x5c\\x0e\\x20\\x90\\x86\\x89\\x6e\\x9d\\x5c\\x74\\xec\\x84\\x17\\xa3\\xfe\\x47\\xc9\\xaf\\x47\\x6d\\xf4\\x4f\\xfe\\x3a\\x32\\x93\\x6c\\xe0\\x7b\\x4f\\x73\\x23\\x9f\\xf2\\x7b\\x84\\x7b\\xdf\\x0a\\xc0\\x16\\x73\\x23\\x10\\x06\\x46\\xb7\\x2e\\xc8\\xc7\\x5d\\x41\\x9d\\x4d\\xc4\\x7b\\x5f\\xc9\\xcb\\xf2\\xd0\\x3d\\x53\\xfc\\xbb\\xf9\\xcf\\xe8\\x7b\\xfe\\x4a\\x32\\x48\\x3a\\xfc\\x07\\x84\\x1b\\xae\\x00\\x84\\xd6\\xb1\\x0b\\x6c\\x80\\x3b\\x06\\x36\\x01\\x3f\\x5a\\x90\\x71\\x82\\x71\\x25\\xf5\\x40\\xa8\\x84\\x12\\xc9\\x20\\x48\\x80\\x63\\x12\\xae\\xeb\\x47\\x99\\x41\\xae\\xb2\\x18\\xc4\\xdd\\xd5\\xda\\x4c\\x3f\\xd8\\x5d\\x73\\x20\\x92\\xa6\\x52\\xab\\x35\\x82\\x3e\\x51\\x18\\x1d\\x7a\\x36\\xa0\\x9d\\x73\\xed\\xbd\\xb3\\xd6\\x1d\\xbf\\x69\\xca\\xd4\\x9f\\xbd\\xb4\\x6c\\xed\\xb3\\x1b\\x6a\\x23\\xf8\\x2f\\xa3\\x17\\x0d\\x3a\\x67\\x79\\xd2\\x70\\xeb\\x0d\\x7a\\x77\\x81\\x2d\\x02\\xbf\\x26\\x61\\x8f\\xea\\x3d\\x2e\\x43\\xdb\\x43\\x5f\\xff\\xfc\\xd5\\x9f\\x7f\\xfd\\x8b\\xb6\\xb2\\x95\\xbf\\x58\\x30\\xb8\\xcc\\xb5\\x70\\xff\\xfc\\xe3\\x6f\\xbe\\x8f\\xe1\\xb1\\x9a\\x28\\x94\\xfd\\x49\\xa0\\xc5\\xda\\x20\\xce\\x8a\\x00\\xbd\\x3b\\x19\\x02\\xb0\\xa0\\x4b\\xd8\\xf1\\x12\\x2f\\xc1\\x10\\xcc\\x0a\\xd2\\x57\\x2f\\x52\\x22\\xf0\\x1f\\xf3\\xf0\\xe7\\xf8\\x79\\xfc\\x59\\xd4\\xe0\\x5d\\xa8\\x26\\xc3\\xfe\\x1d\\xdc\\x88\\xff\\x20\\x99\\x21\\xdc\\xf3\\x25\\x00\\x16\\x21\\xde\\xd3\\xe8\\xd6\\x71\\x38\\x0e\\x9b\\x19\\x12\\x22\\xee\\x5f\\x29\\x9d\\x70\\x57\\x45\\x70\\xcf\\x04\\x03\\xf9\\x12\\xad\\xe7\\x3f\\xc1\\xc4\\xd1\\x67\\x50\\xc5\\x9f\\xe7\\x46\\x4e\\x8f\\xaa\\x4e\\x9d\\xa2\\xe7\\x85\\x7b\\x2e\\x1d\\xbb\\xc0\\x1a\\xb8\\x11\\x50\\x89\\xd6\\x96\\x00\\x05\\x42\\x07\\x03\\x3c\\x19\\x24\\x6b\\x35\\x36\\x18\\x94\\xa6\\xa0\\xb5\\x55\\x04\\x68\\x39\\x0e\\xbf\\x69\\x1e\\xc6\\x23\\x4e\\xd9\\xfa\\x74\\xff\\x92\\xa7\\xae\\xad\\x43\\x4c\\xc0\\xbe\\x45\\x39\\xcd\\x05\\x29\\xdc\\xc8\\xe8\\xa4\\xfe\\x83\\xeb\\x3c\\x05\\x4b\\x7f\\xb1\\x6c\\xe5\\x02\\x93\\xdb\\x67\\x07\\x14\\xf5\\xd1\\x79\\x6e\\x04\\x22\\x05\\xec\\x19\\x2e\\x41\\x0a\\x88\\xf5\\x04\\x11\\x05\\x45\\x27\\xd2\\x24\\x56\\x21\\x8f\\x15\\x7f\\x48\\x2a\\x52\\xc3\\x85\\x7a\\x44\\x3d\\x71\\xdc\\xc1\\x7f\\x86\\x09\\x5b\\xb0\\x1b\\xdb\\x78\\x35\\x8e\\xf2\\x4f\\x92\\x99\\x8f\\xf0\\xd3\\xb9\\x11\\x7f\\xef\\x93\\x78\\xd6\\xbf\\x6e\\xf4\\x1d\\x40\\xd8\\x07\\xc0\\xda\\xb9\\x11\\xe0\\x20\\xde\\xad\\x0e\\x81\\x59\\x6c\\x0f\\xf1\\x5c\\x8c\\x80\\x68\\x4d\\x22\\x45\\x70\\x84\\x3c\\x3a\\x5a\\x82\\x09\\xa7\\x4f\\x8b\\x29\\x75\\x40\\xd8\\x08\\xc0\\x3a\\xb9\\x11\\x88\\x16\\xfc\\xd2\\x70\\x41\\x39\\x8a\\x1e\\x20\\x20\\x10\\x1c\\xe4\\x18\\x11\\xa8\\x11\\xd4\\xc4\\x00\\x10\\x0d\\xd1\\x0a\\x85\\x3c\\x56\\x22\\x4c\\x53\\xa1\\x10\\xa6\\xa9\\xa0\\x46\\xaa\\x90\\xeb\\xe5\\xf8\\xb7\\x1b\\xf6\\xe3\\x6c\\x9e\\x8f\\x7c\\xe1\\xc6\\x83\\x91\\x3c\\xcf\\x8d\\xf8\\x3f\\x24\\xc6\\x8b\\xcd\\xf8\\x04\\x79\\xc4\\xbf\\x9d\\xcc\\xf6\\x2f\\xe7\\xa7\\x72\\x23\\x41\\xde\\xa8\\x12\\xe5\\x24\\xd9\\xad\\x95\\x12\\x02\\x04\\xeb\\x29\\x0a\\x73\\xc6\\x20\\x19\\xe4\\xb1\\x22\\xbd\\xf5\\x7a\\x14\\xe8\\x80\\x0a\\x3d\\xab\\xe2\\xcf\\xf0\\x8b\\xf8\\x4f\\x51\\x8b\\x7b\\x11\\x13\\xe8\\xc1\\xd1\\x19\\xdc\\xc8\\xa8\\x8f\\x3e\\x2c\\xd8\\xf3\\xe6\\xb1\\x0b\\x6c\\x2d\\x77\\x4c\\x8c\\xc3\\x0a\\xa8\\xfe\\xc7\\x22\\x08\\xe9\\xe9\\x57\\xc5\\x09\\xc6\\x91\\xa6\\x29\\x04\\x2e\\xc7\\xbd\\x10\\xb6\\xb6\\x7e\\xe7\\x89\\x0d\\x1b\\x8e\\x6d\\xad\\xa9\\xd9\\x7a\\x74\\xc3\\xc6\\x13\\x3b\\xeb\\xf9\\xd3\\x49\\x65\\x5d\\xd5\\x9e\\x59\\x05\\x71\\x71\\x05\\xb3\\xaa\\x3d\\x5d\\xa5\\xc9\\x64\\xf1\\xce\\x0b\\x8f\\xce\\x9d\\x7b\\xf0\\xfc\\xce\\x77\\x76\\x5e\\x38\\xd8\\xd9\\x79\\xf0\\xc2\\x4e\\xe2\\xdb\\x37\\x50\\x5a\\x3a\\xb0\\xcf\\xf7\\x97\\xb6\\x7d\\x4b\\xca\\xca\\x16\\xef\\xf3\\x01\\x11\\x75\\xc2\\x4d\\x22\\x6d\\xb5\\x82\\xbf\\x09\\x94\\x43\\x02\\xf4\\xb2\\x7f\\x10\\x72\\x3a\\x00\\xb4\\xf1\\xf2\\x49\\x10\\x0d\\x51\\x7a\\xb9\\x44\\xa6\\xb6\\x89\\x0b\\x0f\\x81\\x24\\xcb\\xb8\\xab\\x67\\xc4\\xc7\\xf9\\xcf\\xf1\\x9b\\xe1\\x17\\xb7\\x4d\\x9e\\xbc\\xed\\xc5\\xe1\\xf7\\xdf\\x2f\\x69\\x2b\\x4e\\x4a\\x2a\\x6e\\x2b\\x79\\x9f\\xa8\\xfd\\xe7\\xb8\\x91\\xea\\xb5\\x87\\x16\\x74\\x3f\\xb4\\xc6\\xf3\\x49\\x6a\\xd9\\xd4\\x0c\\x7b\\x5b\\xa5\\x59\\xa0\\xcf\\x0c\\x7e\\x8c\\xbd\\xc4\\x1d\\x83\\x78\\xc8\\x16\\xe6\\x20\\xa1\\x04\\x28\\xd6\\x0b\\x1b\\x5b\\xfb\\x53\\xb4\\x4a\\x13\\x69\\x25\\x91\\x48\\x35\\x52\\x0c\\x22\\xf3\\xff\\x46\\xb0\\x2d\\xd8\\xd1\\xf6\\xf5\\xd3\\xfc\\x79\\xe3\\x64\\xcb\\x86\\x63\\xdb\\x6a\\x6a\\xb6\\x1d\\xdb\\xb0\\xf1\\xf5\\x9d\\x5e\\x81\\x6c\\xdd\\x35\\xd5\\xb3\\x05\\xb2\\xcd\\xae\\xae\\xe9\\x2e\\x4b\\x22\\x15\\x5b\\xbf\\x68\\xf9\\xeb\\x7d\\x08\\x61\\xe1\\x5d\\x07\\xde\\x1b\\x1e\\xdd\\xf5\\xc5\\xa1\\xae\\xae\\x43\\x5f\\xec\\x22\\xed\\xb7\\x2d\\x29\\x2d\\x5b\\x7c\\x5b\\x3b\\xef\\xd9\\x3c\\xdf\\x5d\\xde\\xbf\\xd9\\x03\\x04\\x36\\x03\\xb0\\x11\\x6e\\x04\\x62\\x03\\xb4\\x9b\\x14\\x88\\x98\\x84\\xf4\\x6a\\xd0\\xc5\\x18\\x67\\xcd\\x54\\xbd\\x55\\x1f\\xd4\\xd7\\xc6\\x09\\xc4\\x93\\xa2\\x4a\\x1f\\x08\\x48\\x98\\x8d\\x46\\xb2\\xec\\xcf\\xfc\\xe7\\x78\\x66\\xcd\\xb1\\x1b\\xbd\\xa6\\xea\\xae\\x12\\x2c\\xe4\\xdf\\xe6\\xe3\\xff\\x30\\x7c\\xed\\x86\\xb5\\xbf\\x27\\x3a\\xff\\x47\\xdc\\x48\\xe1\\x92\\x07\\x07\\x1a\\xd7\\xf7\\xd4\\x6b\\xfd\\x0f\\x47\\x51\\xb6\\x66\\xc1\\xe2\\x35\\x80\\xe0\\x1b\\xfb\\x82\\xed\\xe4\\x8e\\x41\\x39\\xd8\\xdd\\x39\\x57\\xe7\\x33\\x08\\x09\\xc5\\x9e\\x2f\\x3b\\xef\\x25\\x45\\x4e\\x47\\x76\\x66\\xaa\\x32\\x4b\\x22\\x82\\xe1\\xf1\\x4c\\x86\\x48\\xbe\\x90\\x6d\\xbd\\x9c\\xc7\\x30\\x1a\\xb2\\x98\\x43\\x9f\\x4c\\x45\\x3f\\x6f\\x58\\x5b\\xb1\\xa0\\x71\\xee\\x63\\x5b\\x9a\\x1a\\x6f\\x78\\x7e\\xc9\\xf2\\xdf\\x6c\\x6f\\xe0\\xbf\\x24\\x29\\xa5\\x1d\\xa5\\x05\\xad\\x25\\x29\\xe9\\x8d\\x4b\\x6b\\xe6\\xfd\\x62\\x4d\\xd5\\x94\\xed\\xcf\\x2f\\xad\\xde\\xb1\\x7e\\xa0\\x29\\x13\\x95\\xc4\\xea\\x5d\\x50\\x5e\\xd0\\x5a\\xa2\\xc3\\x75\\x16\\x4f\\x71\\xae\\x2a\\xa1\\x71\\xc9\\xde\\xb9\\xb3\\xf6\\x2d\\x2c\\xac\\x1c\\x7e\\xb0\\x3b\\x77\\x5a\\xb1\\x5e\\x9b\\x5b\\x65\\x49\\xaf\\x74\\x64\\x28\\x92\\x5a\\x86\\x6e\\x6e\\xef\\xbc\\x75\\xbe\\x23\\x3e\\xbf\\xb1\\x7f\\x4b\\x73\\xe5\\x9c\\x92\\xc4\\x84\\xac\\x0a\\x40\\xd0\\x02\\xb0\\xc3\\x22\\x0e\\xd3\\xba\\xe3\\x04\\xed\\x7c\\xd9\\x18\\x06\\x0c\\x56\\x50\\xf9\\x05\\x42\\x9b\\xec\\x30\\x5f\\xce\\x7f\\xc6\\x57\\xb3\\x7d\\xec\\x8d\\x4b\\x0e\\xf6\\xc6\\xa7\\xa2\\x0e\\xd9\\x30\\x76\\x81\\x35\\x8a\\x7a\\x54\\xef\\x4e\\x66\\x94\\x88\\x9c\\x1d\\xa4\\x4d\\xb5\\xc0\\xde\\xa0\\x02\\x95\\x51\\x65\\xe2\\x04\\x8a\\x28\\x42\\x42\\xa8\\xd0\\x2b\\xc4\\xe0\\x9c\\x4b\\xc1\\xa6\\x60\\xd5\\xc6\\x67\\x57\\x2e\\x39\\xbc\\xa1\\x1a\\x05\\x95\\xda\\xdb\\x35\\x7f\\x31\\x22\\x37\\x32\\x5a\\x7c\\xcd\\x6f\\x37\\x7b\\x3c\\xd7\\xbd\\x70\\x0d\\x7d\\x65\\xb4\\x78\\xd7\\xee\\xdd\\xbb\\xe8\\x2b\\xc2\\xef\\xa5\\x00\\xb0\\xc7\\x45\\x3f\\x5e\\xe5\\x8e\\x15\\xe6\\x3c\\x61\\xba\\xe3\\xde\\x3b\\xea\\x49\\x2f\\x2a\\xd0\\xc9\\xd7\\xf2\\xa7\\xf8\\x3a\\x74\\xe2\\x6d\\x2c\\xfe\\x62\\xb3\\xa8\\x83\\x12\\x00\\xd8\\xb3\\xa2\\x2e\\xd6\\xb9\\x93\\xc2\\x39\\x82\\x80\\xf5\\x8c\\x8a\\xaa\\x8e\\x04\\xf8\\x29\\x56\\x1e\\x2b\\x97\\x8b\\x86\\x5a\\xa1\\xa7\\x46\\x4a\\x8d\\x54\\xaf\\x50\\xd8\\xa9\\x77\\x21\\x92\\xd7\\xf9\\x1b\\xae\\xe7\\x8f\\x23\\xf6\\xaf\\x3b\\x41\\xaa\\xe8\\xe2\\x8b\\xcd\\x74\\xd6\\xe8\\x83\\xdc\\xc8\\xe8\\xcf\\xe9\\x7c\\x61\\x6e\\xc9\\x00\\xec\\x35\\xd1\\x4e\\xa5\\xb8\\x13\\xc3\\x24\\x94\\x0a\\x37\\xa7\\x38\\xf1\\xde\\xb1\\xb1\\x81\\xcc\\xa1\\xa8\\xe0\\x03\\xff\\x93\\x41\\xa4\\x58\\xcf\\xf7\\xe1\\x83\\xfc\\x73\\xfc\\xb7\\xfc\\xbf\\xf9\\xa7\\xf0\\x41\\x7e\\x3e\\xd6\\xd1\\x87\\x48\\xb8\\x3f\\xcb\\x6f\\x20\\xb1\\xfe\\x2f\\xc9\\xdf\\xc9\\x9f\\x02\\x3a\\x5b\\x0f\\xc0\\x8e\\x73\\x23\\x20\\x83\\x44\\x77\\xbc\\x84\\x8a\\xf3\\x9f\\x48\\x86\\xd8\\xd8\\x71\\x32\\x50\\x3d\\x45\\x3d\\x59\\x81\\x29\\xe8\\xe0\\x9d\\xc8\\x9f\\x41\\xbe\\x14\\xf3\\xa9\\x9c\\xdc\\x33\\x5a\\xc7\\xcb\\x08\\xa3\\x87\\x84\\xfb\\xf9\\x00\\xd8\\xb5\\xa2\\x4e\\x4e\\x77\\x9b\\xc3\\x90\\x50\\x26\\x46\\xc5\\x20\\x68\\x59\\x03\\xe6\\xc4\\x17\\x24\\x71\\x6c\\x80\\x23\\x04\\x7b\\xe2\\x10\\x3c\\x50\\x0d\\x3e\\x41\\xfe\\x74\\xe9\\x3d\\xf2\\xb2\\xdf\\xcd\\x94\\x78\\xfa\\xf4\\x21\\x96\\xf2\\xe9\\xc3\\x81\\x1c\\xc3\\x6e\\xfe\\x30\\x6d\\x92\\xdc\\x11\\xf4\\x66\\x29\\x88\\x69\\x4b\\x40\\x42\\xc4\\x78\\xb5\\x80\\x8c\\x70\\x82\\x37\\x6b\\x94\\xdb\\x05\\x13\\x45\\x9b\\x1e\\x7d\\x94\\xaf\\xc0\\x17\\xb8\\xa3\\xdf\\xbf\\xf2\\xae\\xf4\\xac\\x30\\xbf\\xaf\\xc6\\x36\\x33\\xd5\\x78\\x9c\\x19\\x01\\x87\\x04\\x23\\x0d\\xc1\\x38\\xb3\\x42\\x8f\\xfa\\xaf\\x90\\x11\\x3d\\x3f\\xca\\x8d\\x7c\\xff\\x76\\xf0\\x77\\x9b\\xc7\\x7f\\x17\\x40\\xd0\\x79\\x5d\\x40\\x10\\xc9\\x0c\\x41\\xe7\\xf9\\x00\\x09\\x4e\\x99\\xc8\\xda\\x0e\\xbb\\xdc\\x88\\xbb\\xf1\\x45\\xde\\x7d\\xf0\\xa0\\xe4\\x8e\\xef\\x34\\xef\\x4a\\x8a\\x85\\xdf\\xfd\\x33\\x79\\x82\\x69\\x45\\x3a\\x6b\\xdd\\x71\\x52\\x0c\\x58\\xec\\x09\\x61\\xee\\x80\\x65\\x45\\x23\\xda\\xd1\\x48\\x2d\\x52\\x7c\\xfa\\x23\\x2c\\x3f\\x81\\x65\\x27\\x47\\x54\\x2a\\xf2\\x04\\xc5\\xd1\\x31\\x7c\\xb5\\xa5\\x05\\x10\\x6e\\x19\\xb3\\xb0\\x54\\xb1\\x6e\\xed\\x27\\xe3\\xf5\\x9c\\x20\\x5c\\xa9\\xa3\\x83\\x74\\xf7\\xfb\\xef\\x8b\\xb4\\xbb\\x93\\x3d\\x41\\x37\\x70\\xaf\\x02\\x85\\x4c\\xef\\x48\\x56\\x73\\x9b\\x3b\\x22\\xb4\\x09\\x25\\x02\\xda\\x8f\\xb9\\xfa\\x36\\xbe\\xa7\\x82\\x81\\x7f\\x23\\xea\\xe9\\x86\\x0f\\xf8\\xef\\x30\\x8f\\x3d\\x81\\x1a\\xd1\\xe7\\x1d\\x1a\\xbb\\xc0\\xbc\\xac\\x11\\xd2\\xc0\\x05\\xb7\\x79\\x47\\x62\\x9b\\xdb\\xdc\\xe1\\x59\\x28\\x91\\x52\\x04\\x09\\xa9\\xd7\\x86\\xbe\\x70\\x12\\x52\\xef\\x0b\\x9c\\x4e\\x03\\x4a\\x90\\x50\\x1c\\x04\\x04\\xa9\\x04\\xa5\\x3d\\x40\\x88\\x18\\xf1\\xad\\xf5\\x86\\xa1\\x44\\x02\\x1d\\x32\\x8e\\x04\\xfd\\x8e\\x8c\\x9f\\x1e\\x2a\\x43\\x8e\\x2b\\x0d\\x5e\\x10\\x50\\x05\\x3e\\xb7\\xda\\x9a\\x0e\\x90\\x9b\\x9d\\xee\\xb2\\xba\\x20\\x0d\\x2c\\xa9\\xb1\\x46\\xb3\\x25\\x5c\\x16\\x6f\\xd3\\x9b\\xcd\\x96\\x20\\x56\\xcd\\x77\\xda\\xed\\x62\\xf8\\x60\\x42\\xb8\\x5b\\xae\\x54\\x6b\\x54\\x62\\xac\\xc8\\x11\\x0c\\x8c\\xd1\\xdc\\xf0\\x68\\x4e\\x53\\x32\\xb9\\xcd\\x3e\\xfd\\xc6\\x79\\x05\\x63\\xfe\\x3b\\xfb\\x3a\\x67\\x34\\xf2\\xe7\\x4a\\x57\\x3e\\xb2\\xb8\\xfb\\x91\\x75\\x35\\x6a\\x95\\xff\\x43\\x6b\\x5d\\x91\\x35\\xf2\\xa6\\x8a\\x59\\x45\\x89\\x4d\\xca\\xfc\\xa4\\xf8\\x0c\\xbd\\x22\\x67\\xe6\\x70\\xcd\\xc1\\x5f\\xbb\\x1b\\x3b\\x26\\x97\\x56\\xaf\\x9b\\xe3\\xca\\x99\\xf3\\xb3\\x39\\x7c\\x4e\\xeb\\xf2\\x74\\xf9\\x51\\xa5\\x2e\\x5d\\xf5\\xab\\xf8\\xcc\\x72\\x53\\x41\\xbd\\x48\\xb3\\x9b\\xc7\\x2e\\xb0\\x59\\x12\\x41\\x73\\x59\\xe0\\x1a\\xef\\x48\\x7c\\x73\\x9b\\x7b\\x52\\x14\\x32\\x9a\\x92\\x4c\\x38\\x26\\x13\\xfc\\xfb\\x7a\\xed\\x15\\x47\\x90\\xa3\\x02\\xf5\\x84\\x81\\x5a\\x20\\xa4\\x4c\\x00\\xe4\\xa2\\x4d\\x10\\xe3\\x04\\xd0\\x21\\xc0\\x1b\\x91\\x60\\x29\\x57\\x9f\\x45\\x2c\\xf5\\x86\\xdc\\x51\\x91\\x46\\x61\\xa6\\x74\\xa3\\x5c\\x91\\x2a\\x9a\\x33\\x51\\x5b\\x9a\\x2d\\x52\\xc1\\xac\\x05\\xc3\\xc0\\xfa\\x40\\x38\\x50\\x2a\\x0f\\xe2\\x50\\x36\\xcb\\xb1\\xf0\\xee\\x05\\x73\\x6f\\xcc\\x8b\\xba\\x88\\xea\\x9c\\xcd\\x6d\\x0b\\xef\\x59\\xe8\\xe0\\xcf\\x29\\x73\\x5b\\xca\\x1b\\xe6\\x26\\x24\\xcc\\x6d\\x2c\\x9f\\x96\\xab\\x24\\xb1\\x6b\\x5e\\xdf\\x3b\\xb5\\xd6\\x3d\\x24\\x01\\xff\\x7b\\x05\\x65\\xd3\\xf6\\xbe\\xb1\\xba\\x72\\x95\\x2f\\xdf\\x5d\\xc0\\x4f\\x2d\\x70\\xe7\\xb6\\x0e\\xd7\\x04\\x62\\xd6\\xe7\\x59\\x09\\x6b\\x04\\x1b\\x2c\\x0a\\xf9\\x9e\\x8c\\x43\\x8e\\x89\\x7b\\xcb\\x21\\x2c\\x09\\x99\\xb9\\x5a\\x31\\xb4\\x17\\x0a\\xfb\\x6a\\xff\\x97\\x71\\x75\\xa4\\xc1\\xe7\\x56\\x20\\x18\\x74\\x89\\x5a\\x8d\\x2a\\x32\\x5c\\xc2\\x81\\x0d\\x6d\\xd2\\x60\\x04\\xd0\\xa2\\x57\\x5f\\x05\\xcd\\xa4\\x7a\\xe7\\x04\\xa4\\x41\\x06\\xd2\\xeb\\x0b\\x52\\x08\\x4a\\xc8\\xe4\\x0d\\x0f\\xcf\\xde\\xf0\\xdb\\x8d\\x15\\xee\\x4d\\xbf\\x59\\x3f\\xef\\xd1\\xb5\\x1e\\xc2\\x5f\\x24\\x89\\xce\\x86\\xcc\\xca\\x99\\x76\\x95\\xd2\\xde\\xfa\\x7a\\x5c\\x46\\x99\\xb9\\x65\\x77\\x7f\\xf1\\x8c\\x5b\\x5e\\x5b\\x9e\\xbc\\xfc\\xb5\\x5b\\x66\\x96\\x2c\\xbe\\xb3\\x33\\xad\\x2e\\x3f\\xc5\\xd9\\xbe\\xa2\\x2c\\xb9\\x7c\\xa5\\xcf\\x19\\x88\\x03\\x0d\\x8e\\x5d\\x60\\x05\\xc1\\xfd\\xed\\x76\\x4f\\x92\\x21\\x07\\x29\\xc9\\x84\\x71\\x51\\xc1\\x0c\\x74\\x60\\x1f\\x11\\xcb\\xc6\\xb7\\xa6\\x56\\xd8\\xb3\\x09\\xa9\\xe7\\x94\\xab\\xcf\\x12\\x52\\x3a\\xbe\\xad\\xd5\\xf4\\xca\\x7d\\x0c\\x64\\xf7\\xd5\\x1a\\xb9\\x5e\\x6e\\x0c\\x46\\x7a\\x42\\x59\\x10\\x97\\x3c\\xe8\\x92\\x0d\\x16\\x2e\\xd9\\xdf\\x3b\\xe3\\xda\\x3c\\xd4\\x5c\\x8a\\xb6\\xdf\\xd0\\xd1\\xb3\\x7f\\x71\\x11\\xaa\\x35\\xf9\\xd3\\x8a\\xeb\\xe6\\x26\\x26\\xce\\xa9\\x2d\\x9e\\x9e\\x1f\\x47\\x4c\\x6b\\xdf\\xdc\\xdb\\x5c\\x5a\\x40\\x2c\\x17\\x61\\x59\\x79\\xcd\\xf4\\xbd\\x27\\x56\\x79\\x56\\xb6\\xe6\\x95\\x39\\xf1\\x19\\x57\\xa9\\xdd\\x37\\xec\\x19\\x5f\\x5b\\x3f\\x6b\\x04\\x3d\\x64\\x42\\x95\\xdb\\x9d\\x88\\x94\\x24\\x21\\x50\\x12\\x0a\\x50\\x77\\x49\\x31\\x88\\x40\\x6b\\x03\\xd0\\x4f\\x12\\xe0\\x4d\\xa3\\x01\\x21\\xcd\\x62\\xc8\\x34\\x66\\xc6\\xa9\\x63\\xe5\\x91\\xe1\\xa0\\x47\\xbd\\x4c\\xa6\\xb4\\x71\\x57\\x40\\x40\\x55\\x10\\xad\\xb8\\x34\\xd1\\x94\\x8a\\x21\\x3e\\x47\\x16\\x25\\x77\\xac\\x7f\\x73\\x6f\\x53\\xe3\\xce\\x17\\x97\\xad\\x7c\\x76\\x63\\xa5\\xdf\\x20\\xcb\\x6d\\xe8\\x2e\\x4a\\x9f\\x5a\\xef\\x8e\\xbb\\x31\\x61\\xfa\\xb2\\x1b\\x96\\x65\\x37\\x16\\xa7\\x85\\xe3\\x71\\x92\\x5c\\x30\\x55\\x39\\x6d\\xd7\\x0b\\x8b\\xd3\\xd6\\xbd\\x75\\xcb\\xb4\\x29\\x3b\\x5f\\x19\\x5e\\xe5\\xea\\xa8\\x4c\\x8d\\x49\\xc9\\x4a\\xd9\\x67\\xaa\\x75\\x19\\xe8\\xb5\\xfa\\xb2\\x99\\x0e\\x75\\x46\\x63\\xa1\\x5e\\xc0\\x15\\x00\\xec\\x3a\\x49\\x26\\x68\\xc1\\xe5\\xce\\x9f\\x84\\x94\\xc4\\x20\\x52\\xb1\\xb4\\x82\\x22\\xa1\\x3d\\x9c\\x58\\x8f\\xc3\\x10\\xb1\\xdc\\x2b\\x20\\xd5\\x52\\x89\\x00\\x35\\xb4\\xa0\\x95\\x2b\\x2c\\x26\\xb9\\x5c\\x26\\x78\\x97\\x02\\x68\\x19\\xf7\\x7d\\xa5\\x81\\xa4\\xa0\\x4a\\x70\\x85\\xf0\\x0e\\xc1\\x29\\xf4\\x6c\\x78\\x6a\\xa9\\xb1\\xa2\\xac\\xdc\\x10\\x6b\\xee\\xac\\xb8\\x6e\\x15\\x6e\\xe5\\xaf\\xa1\\x8b\\xdf\\x2a\\x5e\\xf4\\xe0\\x60\\x21\\x27\\x0b\\x97\\xfc\\x55\\x16\\xb9\\x64\\x7e\\xf1\\x5b\\xa3\\x37\\x07\\x78\\x66\\x19\\x3f\\x93\\xd5\\xb2\\x46\\x30\\x81\\x0b\\x6e\\x0d\\xb0\\x88\\x46\\x86\\x12\\xc8\\xce\\x22\\x9c\\x24\\x09\\x19\\xa7\\x46\\xca\\x54\\x48\\x28\\x57\\xaf\\x15\\xcf\\xe0\\x8f\\x9c\\x09\\xea\\x08\\x1d\\x08\\x5a\\x51\\x50\\x0a\\xa2\\x7e\\x08\\xa4\\xd3\\x84\\xdd\\x10\\xa5\\xa5\\x42\\x60\\xb0\\x54\\x10\\x56\\x06\\x41\\xed\\xf9\\x13\\xc3\\x7c\\xee\\x70\\x53\\xba\\xc9\\x62\\x52\\x88\\xee\\x7e\\x88\\xcd\\x5c\\x76\\x79\\x28\\x59\\xe4\\x0a\\x64\\x40\\x1d\\x3f\\xc1\\x74\\xcb\\x4a\\x97\\xdf\\xdf\\x37\\x77\\x7b\\x4e\\x84\\xdf\\xbb\\xed\\x37\\xcb\\x73\\x07\\x97\\x74\\x1b\\xd7\\x3b\\xb6\\x36\\xae\\xdc\\x9c\\xbb\\x79\\x66\\xef\\x7d\\xcb\\x4b\\x51\\xa3\\x2d\\x98\\x59\\x3c\\x79\\x6e\\x62\\xe2\\xdc\\xda\\xe2\\x99\\x85\\x89\\x01\\x0e\\x74\\x17\\xcf\\xbf\\x74\\x76\\xc9\\xa1\\x55\\xa5\\x4a\\x6b\\x45\\xe6\\x23\\x25\\xe5\\xeb\\x87\\xca\\x9c\\x25\\x21\\x6e\\x2c\\xc8\\xc3\\xd7\\xed\\x2e\\x91\\x1b\\x11\\x76\\x01\\xb0\\x99\\x12\\x00\\x8d\\xe8\\x01\\x21\\x01\\x05\\x22\\x21\\xf5\\xc0\\x58\\xd9\\x38\\x46\\xac\\x1d\\x8f\\xf5\\x29\\x4c\\x2a\\x83\\x08\\xbb\\x82\\xaa\\x4e\\xae\\x97\\x87\\x94\\x9d\\xe0\\x0b\\x3e\\xe0\\xbc\\xb3\\x73\\xc6\\x4d\\x7d\\x85\\xfc\\xb9\\x24\\x67\\x43\\x4e\\xcd\\x7c\\x3d\\x7f\\x0e\\xd5\\xf4\\x40\\x53\\xbb\\x7d\\xe0\\x91\\x61\\xff\\x32\\xb2\\xa7\\xa8\\x25\\x3f\\x3e\\x2f\\x73\\xf4\\x9f\\x12\\x71\\xbf\\xde\\x05\\x60\\x93\\xb9\\xd3\\x10\\x06\\xf1\\x90\\xe9\\xb6\\x86\\x0a\\x6f\\xca\\xc6\\xf3\\xac\\xe5\\xe2\\x0f\\x87\\x82\\x3e\\xa9\\x26\\x31\\x7e\\x20\\xd2\\x71\\x3c\\x7a\\x10\\x08\\x58\\xab\\x55\\x4a\\x91\\x7c\\xef\\x92\\x29\\x68\\x1a\\xbd\\x09\\xf3\\xf9\\x37\\x51\\xa7\\xb1\\x16\\xa7\\xd6\\xb7\\xb6\\xd6\\xa7\\x16\\x5b\\x35\\xac\\x68\\xf4\\x17\\xa7\\x4e\\x91\\x95\\xf8\\x9d\\xce\\x65\\x51\\x4f\\xaf\\xa8\\x98\\xae\\xb6\\xb8\\x84\\x39\\x9c\\xe4\\xbd\\x74\\x19\\x77\\x1a\\x34\\x60\\x01\\x87\\x3b\\x2f\\x02\\x09\\x0d\\x0f\\x50\\x20\\xb8\\x9b\\x65\\xa2\\x08\\x06\\x66\\x13\\xf2\\xc8\\x26\\x63\\x43\\xaa\\x49\\x55\\x6d\\x0a\\x45\\xa0\\x82\\x46\\xc0\\x15\\x10\\x3c\\x87\\x5c\\xaf\\xb8\\x62\\x56\\x68\\x27\\xd6\\xb2\\x55\\x8f\\x2e\\xce\\x9c\\x65\\x8d\\x8e\\xb4\\x65\\xa6\\x87\\xa7\\xd5\\xda\\x93\\xf9\\x7f\\xf0\\x9a\\xf4\\xd0\\x04\\xd3\\x35\\xac\\xe8\\xd2\\x63\\x03\\x77\\xf6\\xe6\\x48\\xc3\\x4f\\x51\\x8e\\x62\\xac\\xb5\\x3a\\x9f\\x0e\\x5e\\x35\\x5b\\xc1\\x06\\xec\\x06\\x60\\x87\\x24\\x00\\x91\\x60\\x74\\xeb\\xc4\\x38\\x45\\x20\\x4b\\x26\\xee\\x56\\xf9\\x7f\\x8f\\x55\\xa4\\x6e\\x10\\xf6\\xa3\\x05\\x6d\\xd8\\xc8\\xf7\\xe3\\x1f\\xf9\\x83\\xf8\\xc2\\x4a\\xfe\\x19\\x09\\x8c\\xee\\xed\\xc4\\x3a\\xbe\\xd4\\xbf\\x03\\x10\\x5e\\x03\\x60\\xed\\x12\\x80\\xb0\\x40\\x6c\\x28\\xb0\\x0f\\x65\\x57\\xec\\xc3\\x78\\x94\\xec\\xf2\\x2e\\xbc\\x46\\x66\\xa3\\x73\\x74\\x31\\x7a\\xf8\\xe7\\x25\\x70\\xf1\\xd4\\xa9\\x53\\xac\\x18\\x10\\xbc\\x00\\x6c\\x35\\x6b\\x04\\x0b\\x0c\\x07\\x84\\x2a\\x52\\x82\\x84\\x42\\x6a\\x3c\\x21\\x54\\xc0\\x35\\xe2\\x57\\x69\\xf0\\x6b\\x50\\xee\\xe2\\x39\\x61\\x49\\x40\\xc9\\xa0\\x4c\\x8a\\x54\\xe0\\x3d\\x09\\x23\\x41\\x8d\\x9e\\xc4\\x21\\x95\\x12\\x29\\x25\\x83\\x01\\xb9\\x94\\xa1\\x54\\x5a\\x3e\\x7e\\xde\\x27\\xd6\\x4d\\x58\\xc0\\xa2\\x30\\x29\\x4c\\x2a\\xa3\\x31\\x4c\\xa6\\xb5\\xa1\\x46\\x60\\x54\\x4d\\x88\\x5b\\x8d\\xe3\\xdc\\x3a\\xf1\\x13\\x16\\xc9\\x52\\x16\\x37\\x6e\\x4e\\xd3\\xf5\\xd4\\xe4\\xce\\x28\\x37\\xfa\\xa3\\xd4\\x49\\x93\\x92\\xd2\\x22\\xbe\\x8d\\x54\\x25\\xc6\\xe8\\x2c\\x11\\x7e\\x56\\xb4\\xb9\\x66\\xea\\x90\\xb3\\x34\\xb5\\x69\\x7d\\xfb\\xe8\\x28\\xe5\\x52\\xd2\\x34\\x61\\x5a\\xcd\\xe8\\xab\\x54\\x92\\x92\\xa6\\x0e\\x4b\\x4d\\x1e\\xfd\\x0b\\x2b\\x12\\xf7\\x46\\x90\\xa5\\xe9\\xac\\x11\\x34\\x30\\x2f\\xb0\\x18\\x81\\x93\\x40\\x29\\xb2\\x93\\x56\\xfc\\xc2\\x02\\x5f\\x82\\x6b\\x55\\x88\\x02\\x26\\x06\\x71\\xc6\\x45\\x4c\\xeb\\xd6\\x70\\xc8\\x58\\xf9\\x0f\\x85\\xcf\\xe7\\x8e\\x02\\x41\\x4e\\x35\\xc2\\xea\\xc4\\x08\\x8f\\xe6\\xc7\\xa4\\x10\\x77\\xc8\\x8b\\x1e\\xea\\x9d\\xb6\\xbd\\xc7\\x15\\x90\\xc2\\xda\\x79\\x29\\xfc\\x59\\x56\\xb4\\x6f\\xaa\\x2f\\x67\\xc1\\x81\\x55\\xfe\\x3e\\xb2\\xcf\\x3d\\x3d\\x47\\x51\\x98\\x37\\x3a\\xc6\\x8a\\x80\\xc0\\xfc\\xb1\\xf3\\x6c\\x1e\\x6b\\x14\\xe3\\x33\\x65\\xa1\\x32\\x8f\\x60\\xb8\\xa1\\x76\\x9c\\xe1\\xab\\x51\\x2c\\xf3\\xf8\\xc1\\xf1\\x3a\\x6c\\xf0\\x3d\\x13\\x0a\\xdf\\xfc\\xb0\\x42\\x4e\\xff\\x83\\xea\\xb7\\xf9\\x9e\\xcd\\xbf\\xb9\\x26\\xe0\\x35\\xfe\\x76\\xcd\\x35\\x2f\\x6c\\xf6\\xa0\\x3a\\xa1\\xc0\\x57\\x5e\\xda\\xe6\\x4a\\x48\\x70\\xb5\\x95\\x97\\xb5\\x15\\x24\\x10\\xcb\\xaa\\x13\\xb7\\xb4\\xb4\\xdc\\x72\\x62\\x95\\x6a\\xf8\\xc4\\x2d\\xd3\\xa7\\xdf\\x72\\x62\\xd8\\x33\\xec\\xcb\\xcf\\xf7\\x0d\\x7b\\x54\\x95\\xab\\xda\\xf3\\xf3\\xdb\\x57\\x55\\x06\\xf4\\xfd\\x1e\\xbe\\x93\\xf9\\xc4\\xb9\\x8b\\x18\\x21\\x0a\\x19\\x99\\x00\\xff\\x42\\x18\\x21\\x04\\x0a\\xca\\x2f\\x83\\x38\\x01\\xd3\\x55\\x60\\x10\\xeb\\x95\\x5f\\x8d\\x04\\x27\\x8c\\xf8\\x51\\xac\\x27\\x88\\x94\\xe6\\xa7\\xb0\\x9e\\xcf\\xb5\\xe8\\xee\\xbe\\xd6\\x2d\\xb9\\xfc\\x39\\xc4\\xf0\\xbc\\xed\\x1d\\xf3\\xef\\x1e\\x70\\xf1\\xe7\\xe2\\x1d\\xd3\\x8b\\x27\\xcf\\x4e\\x48\\x98\\xed\\x15\\x51\\x82\\x62\\xd5\\xeb\\x37\\xb7\\x94\\x38\\x79\\xc2\\xfd\\x75\\x61\\x49\\x65\\xd3\\x9e\\x37\\xd6\\x7a\\x86\\x5b\\xf3\\x0a\\xf3\\xf9\\x12\\x7b\\x69\\x7e\\xfb\\x70\\x95\\x68\\xcb\\x3a\\x59\\x61\\x70\\x6d\\x21\\x7c\\x3b\\x01\\x04\\x51\\x26\\xe2\\x5b\\x19\\x72\\x38\\xe1\\xc8\\x38\\xbe\\x0d\\x01\\xda\\xda\\xcb\\x80\\xc7\\x1b\\x32\\x5b\\x29\\x01\\xb3\\x35\\x11\\x35\\x5d\\x31\\xe2\\x47\\x71\\x91\\xcb\\x2e\\xd7\\xcb\\x7f\\xca\\x44\\x15\\x2c\\xbe\\x67\\xfe\\xac\\x1d\\x79\\xf2\\x6f\\xf9\\xb3\\xb9\\xd7\\xcd\\xe8\\xbb\\x7b\\xa0\\x10\\xd5\\x71\\xf9\\xc2\\x8a\\xb5\\xda\\xd9\\xb5\\xc5\\xd3\\x1d\\xf1\\xc4\\xbc\\xf6\\xcd\\x3d\\xcd\\x9e\\xb2\\x25\\x17\\xcd\\x38\\xea\\x2c\\x9a\\x7e\\xf3\\x89\\x55\\x55\\xab\\x7c\\xf9\\x45\\x76\\x7c\\x33\\xcf\\x65\\x6f\\x1b\\xae\\x16\\x7d\\xaa\\x14\\x00\\xd6\\xc5\\x1a\\x41\\x0e\\xfd\\x41\\x7d\\x31\\x49\\x70\\x9e\\xc3\\x19\\x21\\x28\\xea\\x0b\\xe1\\x2b\\x0d\\x7e\\x0d\\xae\\x35\\x56\\x70\\xb1\\x3a\\x68\\x40\\x86\\x20\\xa8\\x28\\xd4\\x40\\x69\\xb9\\x57\\x3c\\xc3\\xf0\\xf2\\x09\\x9f\\x7b\\x12\\x42\\x74\\x54\\x64\\x84\\x4c\\x02\\x72\\x94\\x73\\x32\\xa5\\x0d\\xf3\\xd4\\x1a\\x2a\\xc2\\x0e\\x69\\x70\\x5b\\xe9\\xbe\\xf2\\x45\\xfa\\x74\\xd7\\x50\\xfe\\xca\\x5d\\x46\\xfe\\x1c\\xd2\\xa8\\xca\\xe7\\x58\\xa3\\x3c\\x9c\\x3f\\x1f\\x15\\xd5\\xde\\xe2\\x5f\\xc5\\x8a\\x0e\\xcf\\x5a\\x00\\x08\\xd7\\x8c\\x9d\\x67\\x33\\x58\\x23\\xb8\\xa0\\x3b\\x20\\x35\\xa9\\x3f\\x11\\x7c\\xaa\\x9d\\x18\\x7c\\xd2\\xfe\\x0f\\xc3\\xc4\\xa2\\xc8\\x48\\x67\\x7e\\x4e\\xb6\\x2d\\xdd\\xf0\\x13\\x61\\xaa\\x80\\xf7\\x75\\x45\\x94\\x8a\\x04\\xa2\\x54\\x4e\\x5a\\xab\\x29\\xee\\xf6\\xce\\xdd\\x3f\\x58\\xee\\x5e\\x7d\\x68\\x60\\xd9\\x53\\xeb\\x2b\\xf9\\x73\\x7d\\xfd\\x5d\\x3d\\x4a\\x7b\\x9b\\xa7\\xfb\\x17\\xd7\\x54\\x57\\x6f\\x7c\\x6a\\xe9\\x35\\xbf\\xde\\x50\\x81\\x61\\xd4\\x5a\\x39\\x23\\x73\\xfe\\x00\\xa6\\xc7\\x9b\\xf5\\x89\\xd1\\x8a\\xc2\\xa9\\x0b\\xab\\xab\\xae\\x99\\xe5\\x74\\xcc\\xde\\xe4\\x2d\\x9f\\x51\\x63\\x8f\\x4b\\xd7\\x6b\\xc3\\x63\\xf2\\x9a\\x96\\x35\\xd6\\xad\\x69\\xcb\\x75\\xcf\\xdf\\x5c\\x99\\x51\\x6e\\x89\\xad\\x14\\xe3\\x49\\xe7\\x59\\x23\\x57\\x05\\x29\\xd0\\xe3\\x0e\\x9f\\x84\\x04\\x63\\x90\\x12\\x12\\x2c\\x12\\x4b\\x92\\xa2\\x04\\x24\\xcb\\x99\\x98\\x02\\x10\\x20\\xa0\\xa8\\xca\\x2e\\x13\\xe0\\xbf\\x9c\\x0f\\x94\\x83\\x02\\x40\\x0a\\xa4\\xc8\\x55\\xe9\\x41\\x8c\\x88\\x62\\x22\\x46\\x79\\x65\\x7e\\xd5\\x21\\x37\\x3a\\xec\\x72\\x72\\x23\\xde\\xc2\\x0f\\x68\\xf3\\x6a\\x33\\x74\\x55\\xa5\\x0e\\x85\\x36\\xa9\\xb1\\x6d\\x6e\\x96\\x6f\\xcf\\xfc\\x82\\xff\\xfc\\x87\\xab\\xe2\\xff\\xf3\\x16\\x9f\\x5d\\xdc\\x94\\xad\\x94\\x84\\x85\\x73\\x2f\\xc8\\xe3\\x63\\xc2\\xb2\\x7b\\x7e\\xbe\\x08\\x2f\\xbc\\x85\\x61\\x80\\xb0\\x6f\\xec\\x3c\\xf3\\xb2\\x22\\xd0\\xc0\\xdc\\xa7\\x15\\x48\\x30\\x54\\xe3\\x16\\x4b\\x45\\xbc\\x2a\\x6e\\x0b\\x0b\\xba\\x84\\x81\\x7a\\xd7\\xab\\xcf\\xd4\\x09\\xce\\xa2\\x3a\\x78\\x90\\xb1\\xd2\\x71\\x8d\\x5d\\x07\\x0d\\x3e\\xdf\\xb3\\xe3\\x58\\xc9\\x14\\x14\\x1b\\x79\\x70\\x11\\x4e\\x97\\xe0\\x64\\xd0\\x72\\xd7\\x9d\\xb3\\x5a\\x76\\xce\\x73\\xa1\\x5a\\x61\\xf5\\xe4\\x4e\\xef\\xd7\\xa2\\x66\\xf4\\xf6\\xa9\\xb3\\xf2\\x97\\x3d\\xb1\\x96\\x6c\\xf2\\x6f\\xa8\\x6c\\x77\\xc5\\x95\\xbb\\xc8\\x7f\\x2e\\xbd\\x1a\\xb0\\xfb\\x75\\x00\\xec\\x7a\\x56\\x14\\x88\\x75\\x08\\xb4\\x0b\\x84\\x94\\xca\\xc7\\x23\\x6b\\x0a\\x31\\xd6\\xa1\\x71\\x29\\x02\\xb1\\x35\\x5f\\x74\\xf4\\x97\\x68\\xe0\\x7b\\xf9\\x4b\\x7c\\x0f\\x1a\\xb0\\xa2\\xd1\\x4b\\x46\\x2f\\xbd\\x2a\\x18\\xaa\\x40\\x4c\\xf1\\x6e\\x56\\xf4\\xc3\\xf8\\x5a\\xf9\\x8f\\xc4\\xd7\\xec\\x81\\xf8\\x9a\\x5d\\xa1\\xb0\\xd3\\x8a\\x39\\x63\\x2f\\xff\\xeb\\xa6\\x1d\\xff\\x7a\\x99\\x9f\\xb3\\xfd\\x57\\x38\\x9d\\x7c\\x7e\\xe9\\x55\\x32\\xe2\\x6f\\x66\\x45\\x7e\\x35\\x39\\x17\\x98\\xa7\\x0f\\x80\\xdd\\xcf\\x8a\\x7e\\x18\\x5f\\x2b\\xff\\x41\\x7c\\x4d\\x21\\x80\\x12\\x4a\\x45\\x68\\xb2\\xee\\x4b\\xb4\\xf1\\xb7\\xe2\\x6a\\xfe\\x9d\\xef\\xff\\xc3\\xbf\\x8d\\xab\\xf9\\x7d\\x68\\x23\\x67\\x70\\x9a\\xff\\x0b\\xff\\xfb\\xd8\\xcd\\xdf\\x4d\\x2c\\x44\\x21\\xde\\x3f\\x9f\\xf7\\xb2\\xb7\\x58\\x11\\x24\\x80\\xd9\\x6d\\x8c\\x43\\x42\\x20\\x5a\\x34\\xa9\\x34\\xc4\\x49\\x38\\x2b\\x00\\xd0\\xd4\\xd5\\xa6\\x00\\x04\\xd2\\xa0\\x3e\\x98\\x43\\xb5\\xb8\\xf2\\x44\\x2d\\x6d\\x77\\xa1\\x9e\\xb4\\xeb\\x50\\x87\\x76\\xff\\x07\\xb1\\x85\\x33\\xd7\\xb6\\x28\\x0d\\xba\\x94\\x58\\x83\\xdc\\x11\\xa3\\xb7\\xa7\\xaa\\x59\\x15\\xef\\xc4\\x1c\\x7c\\x75\\x05\\x39\\x73\\x29\\x35\\xbd\\x73\\x5a\\x01\\xe5\\xa4\\xdc\\x3b\\x34\\x2d\\x27\\x6d\\x03\\x8b\\x14\\xe6\\xb0\\x0a\\x80\\x2d\\x65\\x45\\x3f\\x15\\x8f\\x2b\\xff\\xaf\\xf1\\x38\\x15\\x7e\\x43\\xd6\\x8f\\x4a\\xc9\\x1c\\xff\\x08\\xfd\\xd3\\xc9\\x93\\x87\\xc8\\xa1\\x53\\x0f\\x03\\xa2\\x83\\xbf\\x9d\\xfe\\x4e\\x52\\x0a\\x56\\xb0\\xbb\\x73\\xf4\\x81\\xda\\x27\\x0a\\x8c\\x50\\xd6\\x03\\x04\\x90\\x23\\xd8\\x23\\xf6\\x6d\\xb6\\x06\\x15\\x37\\x07\\x4d\\xd6\\x74\\x79\\xbc\\x3c\\x3e\\x46\\x22\\x6c\\x93\\x21\\x8b\\x39\\x1c\\xf9\\x66\\xa3\\x43\\x70\\x25\\xf2\\xcb\\x98\\x5d\\x63\\x16\\x5d\\x73\\xb1\\x88\\x49\\x50\\x14\\x2e\\x7a\\xa8\\x72\\x60\\x46\\x69\\xba\\x62\\xdd\\xc6\\x8d\\xeb\\xe4\\xe6\\xe2\\x19\\x4b\\x6b\\x0c\\xa5\\x95\\xc9\\xdc\\xca\\xb5\\xeb\\x56\\x44\\xa5\\x96\\xe7\\xf1\\xb7\\xa7\\x79\\x66\\xf5\\x2f\\x76\\x3c\\x70\\xfd\\x8a\\xe3\\x2b\\xb6\\x3d\\x90\\xbf\\xa4\\xbf\\xc3\\x93\\xb6\\x9f\\xb8\\xda\\x97\\x3a\\x1f\\x18\\x7e\\x2e\\x27\\xe7\\x99\\xe1\\x07\\x9c\\x4b\\xdb\\x5d\\x04\\x00\\x89\\x8a\\xef\\x23\\x47\\x2f\\xc7\\xfb\\x02\\x79\\x92\\x8a\\x50\\xbc\\x0f\\x8d\\x72\\x3b\\x39\\xfa\\xf8\\xe3\\x7c\\x9f\\xb4\\x3e\\x10\\x67\\x6c\\xe0\\x6f\\xa7\\x9f\\x4a\\x4a\\x21\\x43\\xf0\\x13\\x23\\x90\\xd1\\x40\\x06\\x8b\\x0a\\x6b\\xa2\\xc0\\x40\\x58\\xa3\\xb0\\xac\\x56\\x00\\x10\\x3c\\x00\\xe0\\x9a\\x32\\x6c\\x06\\xbd\\x2e\\x45\\xad\\x52\\x2a\\x62\\x24\\x32\\x95\\x8d\\x53\\x97\\x05\\x3c\\x5c\\x97\\xd9\\x2c\\x82\\x09\\xa9\\x2b\\x2f\\x99\\x89\\x29\\x70\\x95\\xe0\\x31\\x2a\\xa3\\x99\\x11\\x1b\\x72\\xcb\\x53\\xa3\\xb5\\x05\\x33\\x8a\\x57\\x2e\\xe1\\x92\\x2b\\x4b\\x0d\\x35\\x4b\\x5b\\x4a\\xcc\\xf2\\xb5\\x9b\\x36\\xad\\x55\\xa6\\x95\\xb5\\x0c\\x54\\xbe\\x1e\\x58\\x4d\\x51\\x7f\\x7b\\x6d\\x7c\\xde\\xaf\\x56\\x04\\xd6\\xb3\\x3f\\xcd\\xd3\\xd1\\xbf\\x24\\xff\\x81\\x6d\\x2b\\x8e\\xaf\\xb8\\x5e\\x58\\xf6\\x2c\\x4f\\x9a\\xb0\\xc7\\x09\\x78\\x0d\\x5b\\x4d\\x0b\\xc0\\x08\\x59\\x6e\\x9b\\x11\\x08\\x25\\x8a\\x58\\x02\\x48\\xea\\x81\\x22\\xd0\\xd6\\x60\\x06\\x2e\\xd4\\x36\\x40\\xa1\\x29\\x35\\xdd\\x7c\\x45\\x12\\xcb\\x12\\xb4\\x8e\\x96\\xa0\\x05\\x0d\\x01\\x84\\xd5\\x99\\x53\\x97\\x7b\\x32\\xa6\\xd4\\xd7\\x99\\x73\\xdb\\xb3\\xb5\\x79\\x16\\xcd\\x53\\x19\\x53\\x97\\x79\\x5a\\x6f\\xae\\xcf\\xf5\\x65\\x6a\\x73\\x52\\xd5\\xe4\\xab\\xa9\\x37\\xf4\\x14\\xc4\\xe8\\xf3\\x8c\\x69\\x19\\xda\\xcc\\xa2\\x14\\xf5\\xd4\\x6d\\x5d\\x4e\\x4f\\x85\\xd5\\x9a\\x98\\x55\\x2c\\xd6\\x86\\x13\\x3c\\xc5\\x6f\\xa1\\x16\\xd6\\x04\\x14\\x34\\x50\\x1c\\xa8\\x84\\x51\\x85\\x74\\x68\\xed\\x38\\xf3\\x89\\x00\\x27\\x56\\x14\\x1a\\x9c\\x3d\\x7e\\x9a\\x34\\xf8\\x9e\\x49\\x33\\x05\\x43\\xab\\x76\\x85\\x1e\\x27\\x54\\xb8\\x09\\xb6\\x85\\x10\\x7f\\x0c\\x7f\\x0a\\x9d\\x1a\\x5b\\x89\\x58\\xca\\x23\\x96\\xf6\\x94\\xd8\\x34\\xc4\\x31\\xda\\xc4\\x65\\x07\\x4b\\x75\\x74\\xfa\\x42\\x6b\\x5c\\x9c\\xb5\\x10\\x10\\x6e\\x1a\\x8b\\x60\\x33\\x38\\x33\\xe4\\x82\\xd7\\x5d\\x97\\x18\\x4f\\x38\\x1a\\x1d\\x41\\x88\\x20\\x0d\\x57\\x85\\x9c\\x28\\x70\\x8c\\x72\\x3d\\x12\\x14\\xd4\\x64\\xab\\x18\\x77\\xf2\\x01\\x01\\x32\\x05\\x21\\xcd\\x6c\\xd0\\x6b\\x13\\xa2\\x22\\x25\\x1c\\xe4\\x62\\xee\\x15\\x31\\xa7\\x60\\x1b\\xc9\\xe5\\x56\\x93\\xab\\xe2\\x4e\\xd7\\x87\\xe2\\x4e\\x05\\x3d\\xdb\\xa6\\x1c\\xef\\xd9\\x37\\xcf\\x6e\\x9f\\xb7\\xaf\\xe7\\xf8\\xd4\\xed\\x5d\\x8e\\x1f\\x8b\\x3c\\xd5\\x6f\\xea\\xad\\x8a\\x3a\\x73\\x36\\xb6\\xf3\\xa6\\xa7\\x7a\\x93\\x7b\\x9f\\xba\\xa9\\x2b\\xf6\\xe3\\x93\\x51\\xd5\\x8b\\x76\\xb6\\x5c\\x15\\x81\\x42\\x18\\x02\\x60\\xb7\\x8a\\xf9\\xfd\\x32\\x77\\x31\\x48\\xa4\\x4c\\x2a\\x61\\x83\\x32\\x64\\xe1\\x61\\x84\\x02\\xa3\\x5d\\x20\\x95\\x8a\\xce\\xaa\\xc7\\x1b\\x68\\x3b\\x82\\x50\\x0a\\xd6\\x06\\x36\\x55\\xaa\\xd2\\x24\\x57\\xcb\\xe5\\xca\\x08\\x59\\x92\\x0d\\x35\\x4a\\x89\\x54\\x10\\x7e\\x7b\\x19\\x75\\x58\\x8c\\x0e\\xbb\\xe5\\xb2\\x15\\x0f\\xae\\x44\\xa3\\x57\\x91\\x1c\\x49\\x92\\x81\\xdc\\x7d\\xe9\\x63\\x5f\\x5c\\x92\\x9c\\xe3\\xee\\xbf\\x53\\x5a\\xb9\\xfa\\xe1\\x79\\x8b\\x1e\\x5a\\x56\\xcc\\xff\\x33\\x29\\xaf\\x22\\x35\\xb5\\x2c\\x33\\x21\\x0c\\x9d\\x64\\xf2\\x1d\\x65\\x7d\\xe9\\xa7\\x4e\\x49\\x2c\\xce\\xf2\\xe4\\x87\\x3f\\x3c\\x37\\xff\\x81\\xa5\\xc5\\xc5\\x03\\xb7\\xcf\\xb6\\xd7\\x66\\x28\\xb4\\xf9\\x4d\\xf6\\x73\\x1f\\x0a\\xb8\\x78\\xfa\\xd8\\xa7\\x6c\\x3d\\x4b\\x07\\xa3\\x80\\x4e\\xdc\\xba\\x84\\xb8\\xd8\\x18\\x46\\x51\\xaf\\x9d\\x14\\xc6\\x08\\x35\\xc8\\x24\\x14\\x08\\xad\\x8f\\x97\\x13\\xac\\x33\\x4a\\x09\\xd4\\x7a\\x47\\xd4\\x41\\xd4\\x2f\\x62\\xfa\\xf2\\x89\\xb9\\x21\\xad\\x5b\\x01\\x08\\x02\\xec\\xea\\x99\\x70\\xd4\\xe7\\x0e\\xcf\\xcf\\xb3\\xa6\\xa9\\x95\\x06\\x26\\x53\\x05\\x0c\\x9c\\xd9\\x22\\xb5\\x88\\x15\\x92\\x4e\\x97\\xc5\\x25\\xa2\\x63\\xb5\\xc6\\xa5\\x11\\x4b\\x28\\xc5\\x44\\xe5\\x84\\x2a\\x52\\x61\\xcd\\x74\\x7b\\xe9\\x2d\\x53\\xa7\\xde\\x5c\\x36\\x6f\\xd7\\x80\\xd1\\x6c\\x33\\xaf\\xd8\\xb5\\xbc\\xe4\\xc6\\x29\\x53\\x76\\x96\\xac\\xb8\\x69\\xb5\\x39\\xdd\\x64\\x18\\xbc\\xc9\\x5f\\x91\\xd3\\xb2\\xac\\xc2\\xbd\\xac\\x25\\x27\\xa7\\x65\\x99\\xbb\\x62\\x59\\x4b\\x4e\\x63\\x4e\\x5e\\x5e\\x56\\xdf\\xee\\x25\\x25\\x37\\x35\\x4e\\xbf\\xa5\\x6c\\x78\\xf7\\x4a\\x6b\\x66\\x96\\x75\\x78\\xcf\\xda\\xb2\\xbd\\x53\\x1b\\x6f\\x2c\\x59\\xb6\\x87\\x68\\xea\\xd6\\x75\\x38\\x1c\\x1d\\xeb\\xea\\xea\\xd6\\x0a\\x5e\\xc2\\x5a\\x91\\xf5\\x55\\xc1\\x5c\\x8c\\x5a\\xd0\\xab\\x61\\x88\\x32\\x24\\x14\\x49\\xb7\\x14\\xa9\\x04\\x19\\x47\\x59\\x57\\x38\\x06\\xab\\x7b\\x4b\\xb9\\x06\\x41\\xdf\\x84\\x1a\\xb3\\xe4\\xe2\\xe6\\xa1\\x1e\\xed\\x2a\\xbd\\x6a\\xbc\\x77\\x40\\xf8\\x0f\\xf5\\x64\\x29\\xa6\\xa2\\x83\\xbf\\xf6\\x22\\xff\\x34\\x7a\\xf9\\xa7\\xf9\\xcf\\xf9\\x47\\xb0\\x95\\x7f\\x04\\xa3\\xf8\\x4d\\xe8\\xa4\\xd5\\x64\\x91\\xdf\\xf9\\xd0\\xba\\x03\\xfc\\xc7\\x98\\x72\\x60\\xdd\\x43\\xe4\\x75\\x41\\x66\\xcf\\xf0\\xdf\\x90\\x4f\\x45\\x9d\\x29\\x85\\x54\\xb7\\x1e\\x40\\xb0\\x19\\x01\\xb9\\x14\\x73\\x38\\xa4\\x01\\x40\\x2a\\xe1\\x18\\x50\\xa0\\x72\\x4e\\xa6\\xb2\\xa1\\xdc\\x2e\\x97\\x1b\\xe5\\x76\\x3c\\xe3\\xf7\\xfb\\xf9\\x6f\\xa8\\x76\\xf4\\x53\\x7a\\x9c\\xfc\\x5b\\xd8\\xdf\\x99\\xbc\\x8b\\xed\\xe1\\x8e\\x41\\x2d\\xcc\\x82\\x12\\x77\\xe1\\x8c\\x7a\\x33\\x65\\x28\\xa6\\x5f\\x43\\x22\\x47\\x38\\x24\\xe3\\x51\\x5e\\xcf\\xf8\\x86\\x4e\\x86\\x86\\xa2\\x82\\x7c\\x7b\\x76\\x66\\xaa\\xd2\\x2a\\xe2\\xca\\x2b\\x8b\\x5c\\x4d\\x97\\xcb\\xbe\\x45\\xb4\\xe9\\x9c\\xd8\\x85\\xa3\\x9f\\x50\\xe7\\xa9\\x49\\xa6\\x26\\xb3\\x45\\x12\\x40\\xa0\\x6a\\xb5\\xc6\\x29\\x5e\\xc3\\xf6\\xb4\\x34\\x56\\x7a\\x26\\x6f\\xfd\\xcd\\xca\\xde\\xa3\\x3f\\x9f\\x8d\\xea\\x2c\\xef\\xdc\\x9c\\xa1\\x35\\x89\\xd5\\x43\\xad\\x83\\x23\\x6b\\x2b\\x66\\x34\\x56\\x56\\x4f\\xde\\xf6\\xc2\\xca\\xd5\\x2f\\x5e\\x5f\\xc7\\x9f\\x4d\\x2e\\xf1\\x15\\x97\\xb5\\x17\\x69\\xe3\\x2b\\x87\\xda\\x97\\x3f\\x79\\x4d\\xb9\\xff\\xa5\\xc6\\xca\\x8c\\x34\\xe1\\x9b\\xa5\\xce\\x60\\xcb\\x4a\\xaa\\x59\\x81\\x1f\\xcc\\xd9\\x66\\xcb\\xdb\\x31\\xaf\\xfd\\xc6\\xb9\\xb9\\xe9\\x5d\\xf7\\xad\\xc6\\x62\\x6f\\x86\\xbc\\xb9\\x4a\\x9f\\x9f\\x69\\x8b\\x4f\\xae\\xed\\xde\\xd2\\x31\\x6b\\x47\\x86\\x7d\\xc7\\xbc\\x99\\xbb\\x7a\\x9c\\x05\\x8b\\xef\\x9d\\x6f\\xab\\x77\\xe9\\xe2\\xad\\x05\\x29\\x66\\x67\\x66\\x5a\\x9c\\x70\\xbe\\x4b\\x15\\xa7\\x9a\\x92\\x9b\\x56\\x98\\x63\\xd3\\x46\\xa8\\x22\\x35\\x0d\\x39\\xa9\\x05\\x79\\x59\\x01\\xfd\\x19\\xc6\\xde\\xa5\\xdf\\x73\\x7f\\x02\\x05\\x58\\x40\\xe3\\x56\\x0a\\x10\\x0e\\x3a\\x04\\x31\\xf6\\x60\\x43\\x5a\\x5a\\x5a\\x40\\x8d\\x5f\\x55\\x08\\xf9\\x83\\x0e\\x8c\\x30\\x65\\x6a\\x5e\\x72\\x72\\x5e\\xaa\\x32\\xf4\\x8e\\x1f\\x5d\\x7d\\x84\\x9b\\x91\\x90\\x65\\x50\\x28\\x0c\\x59\\x09\\x09\\x59\\x7a\\x85\\x42\\x7f\\xf9\\x5d\\x1b\\x38\\x0e\\x14\\x7c\\x63\\x17\\xd8\\x75\\xac\\x51\\x94\\x55\\x2f\\x34\\xba\\xbd\\xa1\\x32\\xb1\\xf0\\x50\\x99\\x58\\x48\\xfc\\x18\\x80\\x84\\x41\\x0f\\x48\\xa5\\xb2\\x0e\\x90\\xc9\\x6a\\xbd\\x20\\x91\\x84\\x75\\x40\\x58\\x58\\x75\\x58\\x03\\x40\\x5d\\x4d\\x59\\x89\\x20\\x93\\x60\\x04\\x63\\xba\\x21\\x36\\xdd\\x10\\x21\\xc0\\x02\\xe5\\xc4\\xf2\\x00\\xb5\\xca\\x18\\x6c\\xd3\\x53\\x05\\x37\\xda\\x74\\x95\\x54\\x4a\\xaf\\x5a\\x24\\x9d\\xb3\\x6d\\x45\\x49\\x97\\x27\\x35\\xd5\\xd3\\x55\\xb2\\x72\\xdb\\x4a\\x4f\\x55\\xaa\\xd3\\x14\\x1b\\x6b\\x72\\xa6\\x56\\x55\\xf9\\xdf\\xa8\\x5e\\x7d\\xdf\\xac\\x8e\\x7b\\x57\\x57\\x57\\xaf\\xbe\\xb7\\x63\\xd6\\x7d\\xab\\xab\\x3b\\x5a\\xf6\\xbc\\xbc\\x64\\xc9\\xcb\\xbb\\x5b\\x5a\\x76\\x0b\\xef\\x7b\\x5a\\xf0\\x57\\xc3\\x2b\\xac\\x0d\\x0b\\x2b\\xda\\xdd\\x8b\\xa6\\xd8\\x86\\x57\\xd5\\x95\\x27\\xe6\\x55\\xa7\\x77\\x58\\xab\\x73\\x13\\x4b\\xea\\xe7\\xf5\\x1c\\xda\\x58\\x57\\xb7\\xf1\\x50\\x4f\\xcf\\xa3\\x1b\\x6a\\x6b\\x37\\x3c\\xda\\xb3\\xea\\xad\\xdb\\x66\\xce\\xbc\\xed\\xad\\x55\\xc3\\x6f\\xdd\\x3e\\x73\\xe6\\xed\\x6f\\x89\\xfb\\x24\\x27\\x47\\xe8\\xe3\\xdc\\x31\\x30\\x83\\x03\\x9e\\xf6\\x8e\\x18\\x05\\x1f\\x38\\x4e\\x43\\x90\\x64\\x20\\x27\\x21\\xa1\\x1c\\xcf\\x84\\x23\\x2c\\x90\\xe3\\x11\\xd4\\x59\\x8a\\x0c\\x39\\x29\\x23\\xc0\\xc1\\xdc\\x90\\xed\\x13\\xfb\\x22\\x02\\x61\\x75\\x89\\x00\\xea\\x85\\xfb\\x25\\x01\\x82\\x84\\x43\\x49\\xcf\\x8f\\x0c\\x17\\x63\\xbc\\x52\\x64\\x1c\\x70\\x0c\\x06\\x27\\x0c\\x84\\xab\\x86\\xf9\\x7c\\x6e\\x55\\x9a\\x05\\x20\\x3b\\xd3\\xe2\\x48\\x73\\x80\\x19\\xcc\\x16\\xa3\\xd9\\x1c\\x26\\x70\\xd1\\x8f\\x25\\xcd\\x2c\\x13\\x93\\x66\\x57\\xe4\\xcc\\x88\\x7f\\x92\\x24\\x3a\\xdd\\x55\\x63\\x2d\\x99\\x5d\\xae\\x7f\\xf8\\xc1\\x1d\\x85\\xc5\\x15\\x93\\x1f\\xcb\\x98\\xb6\\xbc\\xb6\\x62\\xd1\\x14\\x6b\\x64\\x34\\xbf\\x2d\\xa1\\x20\\xd7\\x24\\xdb\\x6e\\x29\\x4a\\x53\\x16\\x92\\x97\\x6c\\x76\\x95\\x25\\x39\\x56\\x57\\xd2\\x92\\xbf\\x74\\xb5\\xbd\\xac\\xc2\\x9e\\x13\\x6d\\x9f\\x51\\x66\\x34\\x56\\xcf\\xaf\\xe6\\x5f\\xcd\\x6d\\xcb\\xb8\\x4e\\xae\\x35\\xc8\\xe7\\xc7\\x26\\xa7\\xa9\\xad\\x59\\x81\\x67\\xc5\\xfc\\x1a\\x66\\x33\\x8e\\xae\\x23\\x16\\x5c\\x31\\x66\\x1f\\xfb\\x10\\xa5\\xb8\\x02\\x1e\\x1f\\xfb\\x10\\x62\\x0f\\x03\\x3e\\x37\\xf6\\xe1\\x88\\xdd\\x76\\x18\\x83\\x1f\\x44\\xdd\\xf9\\x4b\\x5c\\x45\\x47\\xa9\\x09\\x38\\x28\\xf3\\x8e\\x84\\x37\\xb7\\xb9\\xd5\\x02\\x9a\\x83\\xf9\\x57\\xa7\\x6a\\xb5\\x6e\\x55\\xc0\\x64\\x5e\\x75\\xdc\\xf7\\xf4\\x78\\x0a\\x56\\xd0\\x9d\\x74\\xf4\\xb8\\xff\\x7a\\x5a\\x85\\xab\\x90\\x1d\\x04\\x00\\x06\\x6d\\x63\\xe7\\xd9\\x26\\xd6\\x28\\xca\\xa1\\x03\\xdc\\xb0\\xed\\xe9\\x3c\\x94\\xca\\x42\\x9e\\x58\\xb6\\x04\\x99\\x94\\x48\\x19\\x19\\x04\\x0e\\xc2\\x64\\x5c\\x58\\x0f\\xc8\\xc2\\x51\\xca\\x64\\xd2\\xae\\x9f\\x08\\x50\\xfd\\x9f\\xae\\xa8\\xc3\\x06\\x9f\\x5b\\x99\\x96\\xe6\\x2e\\x2b\\x70\\xa6\\x39\\xd2\\x1c\\x6a\\xbd\\x4a\\x90\\xfd\\x88\\xf1\\x28\\xfd\\x65\\x31\\x70\\x5d\\x25\\x26\\x9c\\xca\\x28\\x0f\\x44\\x77\\xa5\\x0a\\xa3\\x25\\x58\\x00\\x64\\x36\\x1a\\xdb\\x02\\x9c\\x1f\\x92\\x80\\xdd\\x2d\\x1d\\xd5\\xab\\xef\\xeb\\xe8\\xb8\\x4f\\x90\\x91\\xc0\\x3b\\x4e\\x59\\xf6\\xf6\\xd2\\xeb\\x6b\\x2a\\xf7\\xae\\x58\\x39\\xbc\\x5c\\x6d\\xd5\\x29\\x8a\\x26\\x77\\x93\\xa4\\xe1\\x00\\xef\\x0f\\x07\\x79\\x7f\\xb8\\xe7\\xe0\\x86\\xba\\xba\\x0d\\x07\\x7b\\x7a\\x0e\\x0a\\xb2\\x71\\xf0\\xae\\x51\\xb2\\xbe\\xb3\\xab\\xa0\\x51\\xc3\\x7f\\x3c\\xda\\x1b\\xa9\\xd6\\xa9\\x5c\\xd6\\x00\\xae\\x96\\x73\\x91\\xf4\\xfc\\xe5\\xfe\\xae\\xf1\\xf4\\xf3\\xe5\\x16\\x33\\x7a\\xde\\x6f\\x26\\x7f\\xe5\\x22\\x1f\\x14\\xe5\\xa9\\x97\\x3e\\x40\\xd7\\x73\\xc7\\x44\\x7a\\xa7\\xb8\\x13\\x27\\xb4\\xbc\\x22\\x8a\\xf9\\x8a\\xf2\\x9f\\xd6\\x7f\\x57\\xd3\\x00\\x7b\\x6d\\xf5\\xdd\\x05\\xce\\xae\\x3a\\xab\\xb5\\xae\\xcb\\x59\\xd0\\x5d\\x6f\\xdb\\xa3\\x34\\x66\\x26\\xc4\\x67\\xea\\x14\\x0a\\x5d\\x66\\x7c\\x42\\xa6\\x51\\xc9\\x9e\\x2c\\xe8\\xf1\\x66\\x64\\x78\\x7b\\x0a\\x0a\\xbb\\xeb\\xad\\xd6\\xfa\\xee\\x42\\x6d\\xa6\\x5e\\x11\\xab\\xcf\\xd2\\x6a\\xb3\\x8d\\x0a\\x85\\x31\\x5b\\xcc\\xe3\\x02\\x30\\x0b\\xc7\\x20\\x02\\x26\\x81\\xcd\\x9d\\x36\\xb1\\x87\\x0f\\x88\\x94\\x23\\x02\\xd0\\x92\\xf8\\x02\\xa5\\xd9\\xa1\\x96\\x69\\x99\\x2c\\x31\\xd0\\xce\\x27\\xb2\\x95\\xdc\\x2e\\xac\\x94\\xfc\\x4d\\xb0\\xc4\\xdf\\xf2\\x87\\xb0\\xe5\\x5b\\xb4\\x8d\\x3e\\x48\\x67\\xd1\\x03\\x67\\xf8\\x9b\\x70\\xf9\\x19\\x9c\\x7b\\x71\\x54\\xac\\xb9\\x47\\x2b\\xb9\\x93\\x3e\\xc4\\xfd\\x1a\\x12\\x61\\xdf\\xd3\\x81\\x16\\xaf\\x00\\x5b\\x27\\x8c\\x77\\x7a\\x31\\x81\\x2d\\x67\\x87\\x1a\\xa9\\x4a\\x50\\x50\\x13\\x91\\xff\\x65\\x84\\x47\\x1c\\x11\\xfd\\xff\\xb8\\xc7\\x7f\\xbb\\xdc\\xe7\\xf3\\x3d\\x1b\\x97\\x1a\\x6b\\x09\\x96\\x9d\\x3a\\xd0\\xe9\\x0c\\xaa\\x09\\x63\\x28\\x87\\x10\\x4d\\xa4\\x52\\x3d\\x7d\\xc8\\xbf\\x0f\\x53\\x0a\\x73\\x73\\x73\\x0a\\x0b\\x4e\\x58\\x9b\\x07\\x6b\\x6f\\xbe\\x4f\\xeb\\x6c\\x76\\xae\\xc4\\x1e\\x72\\xe7\\x56\\xa4\\x79\\x33\\xe2\\x2c\\x39\\x55\\x99\\x05\\x3d\\x5e\\xdb\\xb5\\xab\\x32\\xea\\x6a\\xea\\x6c\\xb3\\x03\\x3c\\x62\\x22\\x3f\\xa3\\x0f\\x71\\xbf\\x82\\x3c\\x58\\xeb\\x0e\\x67\\x08\\x24\\x01\\xa5\\x40\\xea\\xbd\\x23\\x29\\xcd\\x6d\\xee\\x8c\\x1f\\xb4\\x92\\x49\\x80\\x49\\xd8\\xdc\\xf1\\xc9\\x7b\\x41\\x2a\\x0d\\xc8\\x8d\\xb4\\x41\\xeb\\xb6\\xfe\\x64\\xe7\\xd9\\x55\\x97\\x09\\xa2\\x15\\x91\\x6a\\x50\\x66\\xa5\\xc6\\x9a\\x75\\xe2\\x6e\\x8d\\x77\\x9d\\x85\\xd6\\x25\\x70\\xd6\\x15\\xe0\\xc3\\x2e\\x96\\x33\\x07\\x2a\\xc1\\x68\\x5b\\x49\\x41\\x64\\x7c\\x7a\\x72\\x46\\xc9\\x89\\xdc\\x69\\x03\\x25\\x35\\x2b\\xa6\\x65\\xd5\\x95\\xd7\\x36\\xe5\\xf9\\x56\\xd7\\x14\\x2c\\xf5\\x15\\xbc\\x5e\\x51\\x58\\xea\\xf4\\x94\\xb6\\xb1\\xa5\\xb9\\xe9\\x93\\x12\\x35\\xd1\\x86\\x64\\x57\\x4b\\x61\\x52\\x52\\xe1\\x0c\\x57\\xe9\\x4c\\x8d\\xa2\\x75\\x4a\\xc1\\xcc\\xe2\\x94\\x84\\xe2\\xd9\\x55\\x06\\xbb\\x33\\xd5\\x11\\x94\\x95\\x0d\\xec\\x09\\xba\\xe8\\xca\\x7a\\x8d\\x50\\x8d\\x2a\\x8a\\xf5\\x1a\\xc2\\xd7\\x19\\x41\\x21\\x02\\xbc\\x5c\\xaf\\xa1\\x47\\x23\\x29\\xc4\\x3c\\xfe\\xfc\\x7b\\xdc\\xab\\xfc\\x59\\x51\\x2f\\x1e\\xe2\\x3b\\x59\\x0f\\x2b\\x02\\x35\\xcc\\x76\\x47\\x84\\x21\\xa0\\x22\\x5a\\x74\\x79\\x02\\x71\\xa2\\x38\\x09\\x47\\x44\\x14\\x0d\\x10\\x6a\\x8a\\x06\\xc6\\x2a\\x58\\x83\\xd6\\x9d\\x18\\x3a\\x25\\x1e\\x0c\\x36\\xdf\\xd4\\x05\\x4f\\x07\\x4a\\xbf\\xd5\\xa0\\x8e\\x35\\xca\\x15\\x26\\xb1\\xf4\\x7b\\x42\\xc0\\x28\\xd0\\xf6\\x6c\\x91\\xeb\\xe5\\xf8\\xb2\\x36\\xd7\\x93\\x3e\\xb5\\x57\\x8b\\x1a\\xde\\x2f\\xb1\\x2d\\xab\\x5b\\x34\\x99\\x3f\\xc7\\x8a\\xfc\\xb7\\x34\\xcf\\x2b\\x54\\x16\\xda\\x29\\x5e\\x7a\\xb5\\x2e\\x33\\x27\\x87\\xaf\\xe6\\xfe\\x0a\\x08\\xef\\x01\\xd0\\x7f\\x88\\x35\\x8e\\x82\\xc4\\x07\\xfb\\x4a\\x4b\\xbc\\xc1\\x2c\\x79\\xa0\\x64\\x34\\x4d\\xcf\\x64\\x6a\\x9b\\x5e\\x3e\\xee\\x07\\xea\\xe5\\x54\\x33\\x7d\\xf8\\xb9\\xf5\\x6e\\xf7\\xfa\\xe7\\x86\\xd1\\x46\\x64\\x35\\xeb\\x0f\\xf5\\xce\\x3b\\xb4\\xbe\\xf6\\x62\\xb3\\x40\\xa7\\x2f\\x49\\x1a\\xb5\\xd2\\xe9\\xa0\\x10\\xeb\\x65\\x04\\xc2\\xb5\\x06\\xef\\x0c\\xd8\\x14\\x68\\x58\\xfd\\x41\\x1f\\xc9\\x97\\xea\\xf4\\xe2\\xd4\\xd4\\xe2\\x74\\x75\\xe8\\x9d\\xfc\\x46\\xe7\\x12\\x9c\\x49\\x97\\x4e\\xe7\\x14\\xde\\x9d\\x81\\x7d\\x7a\\x86\\x77\\xd2\\x6c\\xe0\\x40\\x01\\x8d\\x4f\\xa3\\x80\\xd5\\xeb\\xbd\\x23\\x39\\xcd\\x6d\\x6e\\x25\\x13\\x53\\x5d\\x94\\x88\\x2d\\x79\\x41\\x30\\xab\\x75\\xc7\\x4f\\x38\\x0c\\x80\\xad\\xc1\\x93\\x08\\x4d\\x3e\\x77\\x24\\x00\\x28\\x40\\xa1\\x94\\x27\\x70\\x32\\x8d\\xcd\\x14\\xea\\x0d\\xb0\\x88\\x5c\\x66\\x71\\x91\\x07\\x23\\x12\\x9d\\xd6\\x84\\x8c\\xd6\\x4d\\x33\\xa4\\x76\\x4f\\x75\\x43\\x0a\\x57\\xc0\\x69\\xd2\\x4b\\x6d\\x8e\\x99\\xa5\\x86\\x7b\\xcd\\x99\\x56\\x1d\\xb7\\x0b\\x10\\x6f\\x20\\x37\\xd3\\x18\\xee\\x00\\x48\\x20\\xd6\\x3d\\xe9\\x72\\x3f\\xe9\\x02\\xb1\\x9b\\x14\\x8d\\x72\\xa9\\xc3\\x64\\xa7\\x31\\xaf\\xbd\\x80\\x43\\x0a\\x72\\x33\\x49\\xb7\\xdd\\xb5\\x3a\\x80\\x31\\xc3\\xc9\\x93\\xf4\\x85\\x60\\xdd\\x6b\\xa2\\x3b\\x1e\\x88\\x60\\x11\\xe7\\x8e\\xab\\x5c\\x7a\\xb9\\xe8\\xf5\\x7f\\x79\\xae\\x40\\x78\\x4e\\xfb\\xa6\\xe6\\xa9\\x9b\\xda\\x73\\x72\\x7c\\x9b\\x9a\\x9b\\xaf\\x6d\\xcf\\x7d\\x42\\x65\\xab\\xc8\\xb0\\xb9\\xad\\x2a\\x95\\xad\\xc2\\x66\\x73\\xdb\\x54\\x6c\\xe5\\xe4\\xb5\\xbe\\xbc\\x3c\\xdf\\xda\\xc9\\x2b\\x27\\xaf\\x6d\\xcb\\xcb\\x6b\\x5b\\x3b\\x39\\xdd\\x63\\x4f\\x4c\\xb4\\x7b\\xd2\\x57\\xa6\\x79\\xf2\\x92\\x92\\xf2\\x3c\\x69\\x02\\x06\\x38\\x0d\\x1b\\x59\\x06\\xbd\\x9b\\x58\\x70\\xe5\\x58\\xb7\\x20\\xbf\\xb8\\x12\\x3e\\x80\\x00\\x3e\\xa8\\x00\\x60\\x7b\\xb9\\x23\\x90\\x8d\\x2f\\x8d\\x21\\xf9\\x47\\xe1\\x1d\\x60\\xc6\\x55\\xd1\\x32\\x9c\\x84\\xc7\\xb0\\x12\\xa0\\xf0\\x0e\\x90\\x0b\\x48\\x81\\xfc\\x23\\x80\\x14\\x46\\x64\\x81\\x9e\\x2b\\x88\\x13\\xeb\\xf5\\x9e\\x22\\x66\\x5c\\x75\\x42\\x26\\x5c\\xcd\\xbf\\x47\\xbe\\x2a\\xbc\\x03\\x27\\xe1\\x3e\\x5c\\x3a\\x7e\\x9d\\x38\\x5c\\x00\\x18\\xe4\\xab\\xe0\\x75\\x82\\x17\\xf4\\x32\\xf7\\x9c\\x70\\x5d\\xb7\\x70\\xdd\\x31\\x5c\\x2e\\x8c\\xc6\\x49\\x78\\x74\\x4c\\x45\\xce\\x5c\\x71\\x1d\\xc5\\xe7\\xc8\\x19\\x11\\x98\\x10\\x78\\x9d\\x1f\\x66\\x93\\x59\\xbe\\xd8\\x07\\xd5\\xeb\\x1d\\xc9\\x68\\x6e\\x73\\x9b\\x24\\x48\\x39\\xe4\\xe8\\xc4\\x12\\x17\\x31\\x7d\\x1b\\x90\\xc3\\x59\\xa1\\xe4\\x87\\xe1\\x07\\xe3\\x84\\x1b\\x92\\xce\\xf1\\xe1\\x5c\\x20\\x8f\\x78\\x75\\xd3\\x54\\xb0\\x3d\\x2a\\xd0\\xef\\xe7\\xd2\\x87\\x40\\x9d\\xd8\\x4a\\xe5\\xa2\\x57\\xc3\\x66\\x0d\\x17\\x67\\xcf\\xd1\\x55\\xe4\\xeb\\x67\\x7a\\x8d\\xe5\\x39\\x49\\x88\\x1a\\x52\\xb3\\xfa\\xc1\\x39\\x0b\\x0e\\x2c\\x2f\\xcd\\xf2\\xce\\xc9\\x4e\\x49\\x89\\x46\\x64\\x51\\xc9\\x76\\xb3\\x39\\x3f\\x25\\x3a\\x3a\\x25\\xdf\\x6c\\xb6\\x27\\x47\\x91\\x8d\\x9e\\x2e\\xaf\\x3b\\x55\\x5f\\xeb\\x6d\\xb2\\x4e\\x9f\\xaa\\x48\\x73\\x67\\xf6\\xde\\xda\\x9d\\x63\\xef\\xd9\\x3b\\xb7\\x66\\xd5\\xfc\\x59\\x19\\x49\\x19\\x59\\xae\\x34\\xcc\\x4e\\xcc\\x4d\\x55\\xa9\\x52\\x73\\x13\\x13\\x32\\x0d\\x4a\\xa5\\x21\\x53\\x9c\\x7e\\x0e\\x00\\xfb\\x39\\x37\\x02\\x93\\x20\\x16\\x2a\\xdc\\x65\\x72\\xc1\\x09\\xac\\x07\\x0e\\x24\\x32\\x4e\\xd2\\x15\\x86\\x32\\x10\\x50\\xd5\\xc4\\x46\\x0a\\xa9\\x14\\x7c\\xc1\\x4a\\xff\\x98\\x98\\x98\\xd8\\x98\\xd0\\xd3\\x48\\x62\\xc2\\x65\\x89\\x36\\xbd\\x5e\\x6e\\xa4\\x7a\\xd4\\x0b\\x20\\x47\\x65\\x94\\xeb\\x51\\x4e\\xd9\\xcf\\xfd\\x67\\xde\\x9f\\xc3\\x7f\\x86\\x27\\xc9\\xca\\xef\\xde\\x7f\\x1f\\xa3\\xfc\\x67\\xf6\\x61\\x23\\xff\\x24\\x37\\xf2\\x09\\xbf\\xf7\\x34\\x3f\\x1f\\x67\\x11\\xa5\\xff\\x82\\xa8\\x1b\\xf7\\xc3\\xef\\xd9\\x14\\xb6\\x0b\\x22\\x40\\x72\\x24\\x8c\\x62\\x8e\\x4d\\x81\\xe8\\x42\\xd4\\x20\\x4a\\x11\\xf7\\xa3\\x83\\x7f\\xe3\\x00\\xda\\xd1\\x7e\\x80\\x7f\\x03\\x1d\\x07\\xf8\\xb7\\xf8\\xb7\\x70\\x08\\x8b\\xb1\\xf8\\x41\\xfe\\x35\\x2c\\x7c\\x90\\x7f\\x85\\x7f\\xe5\\x41\\x2c\\xe4\\x5f\\x13\\x9f\\xd0\\x03\\x39\\x63\\xf7\\xb1\\x4d\\xdc\\x97\\x90\\x04\\x56\\x70\\x41\\xaf\\x3b\\x36\\x41\\x43\\x38\\x92\\x6d\\xd0\\x53\\xc6\\x45\\xc8\\x08\\x88\\x85\\x40\\x91\\x81\\x42\\x20\\xc0\\x21\\xb1\\xea\\x58\\x50\\x6c\\x57\\x75\\xde\\xa4\\x04\\xce\\x52\\x5a\\xe6\\xbd\\xdc\\xfb\\x38\\x61\\x84\\xcf\\x1d\\x66\\xb3\\x29\\xd2\\xaf\\x2e\\xe8\\x52\\x88\\xa1\\xc6\\x50\\xfa\\x4b\\x30\\x55\\x26\\xb3\\xd9\\x82\\xc1\\x38\\x9e\\x5e\\xa9\\xd6\\x60\\x30\\xc4\\xc7\\x36\\xd5\\xef\\x3c\\xb1\\x61\\xe6\\xee\\xe2\\x8e\\x67\\xf7\\x97\\x94\\xd4\\x6c\\x3d\\xba\\x61\\xea\\xae\\x62\\xcf\\x73\\xd7\\x79\\x6a\\xf9\\xd3\\x28\\x95\\xf1\\x03\\x49\\xcd\\x2e\\x4f\\x57\\x69\\x32\\x3f\\x89\\x31\\xdc\\x9a\\xdc\\x98\\xe7\\x99\\x55\\x10\\x17\\x28\\x52\\xb7\\x59\\xef\\x45\\xf5\\x8c\\x0f\\xb7\\x88\\x85\\xea\\x69\\xe6\\xd5\\x9f\\xcd\\xfc\\xfc\\x06\\x92\\xd9\\x62\\xf6\\x3b\\x52\\xd3\\xca\\x16\\xef\\xf3\\x19\\x2b\\x53\\xc8\\x91\\x64\\x7d\\xe9\\xc0\\x3e\\x5f\\x20\\xe7\\xb9\\x1d\\x80\\xed\\xe3\\x46\\x20\\x06\\x92\\x20\\xdf\\x9d\\x2b\\x08\\x30\\xc7\\x80\\x13\\xdc\\x43\\x24\\x0c\\x7b\\x24\\x62\\x1b\\x47\\x28\\x51\\x0f\\x20\\x4f\\x92\\x27\\x2a\\x63\\x21\\x06\\x62\\xe4\\xc1\\x7e\\x5f\\xf9\\x38\\xab\\x1a\\x05\\x6b\\x22\\x1f\\x47\\x75\\x78\\xcf\\xe9\\x6b\\x5f\\xdd\\x56\\x53\\xb3\\xed\\xd5\\x6b\\x4f\\xf3\\x67\\x51\\x73\\xda\\xd3\\x59\\x9a\\x98\\x58\\xda\\xe9\\xe1\\x46\\xf8\\xaf\\xab\\x56\\x1d\\xe8\\xea\\x3e\\x30\\x5c\\xc5\\x9f\\xe4\\x46\\x78\\x39\\xef\\x36\\x95\\x4d\\xb5\\xd9\\xa6\\x95\\x99\\x85\\x3d\\xbf\\x7f\\xec\\x3c\\xdb\\x2f\\x49\\x80\\x6a\\x58\\xe5\\x0e\\x37\\x21\\x65\\xa9\\x62\\x35\\x53\\xc0\\x1c\\xaa\\x43\\xd5\\xf4\\x81\\x42\\x8a\\x8e\\x20\\xdf\\x69\\x03\\xe9\\xbb\\x84\\x09\\x67\\x01\\x4a\\xc7\\x2b\\x67\\xea\\x04\\x61\\x8d\\x03\\x04\\x46\\x03\\xed\\xcc\\x57\\x9c\\xf2\\xf9\\xdc\\x11\\x15\\xe5\\xb6\\x74\\x5d\\xb2\\x29\\x86\\x13\\x4c\\x97\\x5e\\x7e\\x59\\x04\\x99\\x4a\\x99\\xcc\\xc6\\x7b\\xb1\\xc5\\x9a\\x0c\\x01\\x7b\\x30\\x47\\x7e\\x19\\xbb\\xac\\x51\\x9f\\xe5\\xcf\\x57\\xaf\\x3d\\xd8\\xd7\\xb4\\x7b\\x71\\x45\\x4c\\x7c\\x62\\x7c\\x4c\\x5a\\x71\\x75\\x71\\x9a\\xa3\\xef\\xd6\\xb9\\x96\\x69\\x0d\\x6e\\x95\\x33\\x26\\xab\\xb0\\xd2\\x58\\xea\\x11\\x8f\\xca\\xe3\\x93\\xe3\\xe5\\xf1\\x69\\x79\\xf1\\xc6\\xf2\\x2c\\x2d\\xcb\\x5f\\xf5\\xcc\\xda\\xf2\\xcc\\x59\\x3b\\x66\\xe5\\xd5\\xb9\\x32\\x73\\x0a\\xcc\\x46\\x77\\x45\\xed\\xf4\\xde\\x72\\xdf\\x8d\\x73\\x72\\x65\\x93\\x54\\xd1\\x1f\\x86\\x29\\x63\\x22\\xa6\\x54\\xa4\\x57\\x95\\x57\\x34\\x76\\x57\\x64\\x54\\x3a\\xb3\\xed\\x45\\x16\\x53\\x71\\xba\\x3a\\xa5\\xa2\\xb7\\x06\\x28\\x64\\x8d\\x5d\\x60\\x8f\\xb2\\x26\\x28\\x82\\x6a\\x98\\x86\\x61\\xde\\x11\\x6d\\x73\\x9b\\x3b\\x46\\x87\\x94\\x9b\\xec\\x20\\x32\\xa9\\x93\\x12\\x90\\x09\\x6e\\xed\\x95\\x87\\x22\\x45\\xbf\\x56\\x18\\x9a\\x09\\x8c\\x12\\xca\\xc8\\x60\\x18\\x92\\x08\\x94\\xca\\x88\\xb4\\x27\\x1c\\x29\\xe5\\x3a\\x24\\xc8\\x71\\xb5\\xde\\xe8\\x48\\x22\\x93\\x41\\x07\\x46\\x91\\x50\\xea\\x2a\\xaf\\xb9\\xcd\\x5d\\xf0\\xdf\\x2f\\x82\\xcb\\x97\\x78\\xa3\\x31\\x32\\x72\\xc2\\xf5\\xee\\xd2\\xd0\\xa5\\x10\\x21\\x25\\x11\\xad\\x61\\x48\\x40\\xb8\\xbe\\xeb\\x7f\\xbb\\xde\\xe7\\x73\\x9b\\x6a\\x6a\\x10\\x6a\\xa6\\xd5\\x4c\\x6b\\xa8\\xaf\\x28\\x2f\\x29\\xce\\xcd\\xb6\\xa6\\xa7\\x1a\\x52\\x92\\xe2\\xe3\\xd4\\xca\\x98\\x49\\x61\\x52\\x28\\xc2\\xa2\\x49\\x62\\x0d\\xdb\\x8f\\xb9\\xca\\x81\\xa8\\x8b\\xc6\\xe9\\xd4\\x04\\x2a\\xdb\\x54\\x13\\xd2\\x80\\xd4\\x1e\\xec\\x61\\x55\\x61\\x9e\\xf3\\x72\\xd9\\xe9\\xbc\\xf6\\x6d\\x99\\xb1\\xd9\\xc5\\xd5\\xe9\\x53\\x56\\x4d\\xb5\\x7e\\x72\\x92\\x9a\\xd2\\xb3\\x33\\xf9\\x4b\\xd9\\x6d\\xeb\\x9b\\xf6\\xb4\\x5a\\x97\\xd5\\xd5\\xaf\\x99\\x91\\xcd\\x97\\xc6\\x5a\\x2b\\x73\\x0c\\xce\\xcc\\x34\\x95\\x4b\\x59\\x3a\\xa5\\xfd\\x89\\xa3\\xb6\\x1c\\x43\\xba\\x5a\\xca\\xbf\\x21\\x37\\x4c\\x42\\x5b\\x45\\xa6\\xc6\\xa5\\x2c\\x2b\\x8c\\xcb\\xd0\\x29\\x32\\xa7\\xad\\xaa\\x7b\\xe4\\x99\\x61\\x47\\x61\\xb6\\x33\\xac\\x6e\\xd5\\xb4\\x4c\\x6f\\x6a\\x1a\\x16\\xf4\\xef\\x9b\\xfd\\x6d\\x47\\x6a\\xb1\\x55\\x13\\x16\\x15\\x1b\\xf6\\x62\\x4c\\x92\\x3a\\x8a\\xdc\\x36\\x58\\x58\\x91\\x90\\xe5\\x36\\xf9\\xbf\\x8f\\x8e\\xf4\\x27\\x66\\x97\\x19\\x72\\x8b\\x81\\x80\\x79\\xec\\x3c\\x9b\\xc2\\x9d\\x87\\x54\\x28\\x82\\x19\\x6e\\xb5\\x1a\\x09\\x16\\x89\\x99\\xd2\\x54\\xa3\\x41\\x97\\x92\\xa8\\x4d\\x88\\x0f\\xc3\\xba\\x80\\xb3\\xab\\x00\\x04\\x42\\x91\\xf4\\x5c\\xf1\\x60\\x8d\\x1f\\x1c\\x15\\x3b\\x04\\xc3\\x1c\\x76\\x5b\\x7a\\x5a\\x9a\\x80\\xd9\\x50\\x1d\\xab\\x52\\x5d\\x11\\xc1\\x57\\x6b\\xcc\\xc1\\x50\\xac\\xc5\\xa5\\xd6\\xb8\\x34\\xf4\\x72\\x47\\x43\\x00\\x53\\xd0\\xcd\\x73\\x17\\x4d\\xdf\\xfb\\xda\\xd0\\x8a\\x17\\x77\\x78\\xab\\x37\\x3e\\xb3\\xdc\\xbb\\xcd\\xa9\\xf2\\x64\\x7c\\xd3\\xf8\\xb6\\xbe\\xc6\\xd8\\xf6\\xf0\\x75\\xaf\\x35\\xf2\\x31\\xf6\\xea\\x36\\xa7\\xb3\\xa5\\x38\\x45\\x5f\\xde\\x51\\x5c\\xd2\\x55\\x95\\xca\\xbe\\x1a\\xe2\\x5f\\x7f\\xd1\\xb3\\xed\\xef\\xfb\\x67\\x36\\x5c\\xff\\x64\\xdf\\xe0\\x73\\x9b\\xeb\\xb2\\xac\\x4d\\x1b\\x72\\xaf\\x1f\\x5c\\xa9\\x36\\x44\\xbd\\x6f\\x1d\\x58\\xb2\\xcc\\x5f\\xa5\\x30\\x24\\x4c\\xca\\x69\\xea\\x2f\\x70\\x76\\x4e\\xb6\\x39\\x66\\x5f\\x3b\\x65\\x6e\\x40\\x87\\x0f\\xc0\\x0e\\x36\\xc0\\x7e\\x07\\x14\\x26\\x41\\x12\\x64\\xb8\\xd3\\x43\\xd5\\x81\\x02\\x5e\\x63\\x08\\x5d\\xc0\\x38\\x8e\\xb5\\x06\\x3b\\x96\\x19\\xd7\\x94\\x6a\\x4e\\x35\\x86\\x5a\\xfb\\x1c\\x7a\\xcc\\x77\\x86\\xea\\xa8\\xcc\\x74\\x42\\x51\\x95\\x99\\x0d\\x8c\\x02\\x03\\x7f\\xef\\xb4\\x9a\\xda\\x69\\xd3\\x6a\\x6b\\xa6\\x11\\x55\\x5a\\x81\\x31\\xf8\\xb1\\xf4\\x34\\xea\\x4b\\x9b\\x9b\\x4b\\x4b\\x9b\\x9b\\xfd\\xb1\\xc9\\xf9\\x66\\xf5\\x54\\xe1\\x63\\x60\\x3e\\xf3\\xc7\\x86\\xd8\\x3c\\xf6\\x02\\x68\\xc1\\x02\\x76\\x58\\xe8\\x56\\x84\\x4b\\x09\\x83\\x0c\\x9b\\x2e\\x85\\x71\\x2c\\x4e\\x45\\x88\\x58\\x39\\x22\\x6c\\x89\\x68\\x36\\x96\\x03\\x25\\x74\\x28\\x64\\x2c\\x6a\\x27\\x3e\\x4d\\x41\\xfb\\xdf\\x47\\x88\\x05\\xb5\\x61\\x56\\x6b\\x6c\\x7a\\xec\\x84\\x4a\\x8a\\xa0\\x25\\x09\\xec\\x99\\x45\\x6a\\x74\\x99\\xcd\\x41\\x53\\x12\\x7c\\x20\\x87\\x60\\x61\\xc4\\x8d\\x12\\x2b\\x65\\xfa\\x5b\\x6b\\xf7\\xf7\\x77\\xce\\xf3\\x5c\\xf7\\xdb\\x35\\x73\\xa6\\xd6\\xee\\xef\\x9b\\x3f\\x80\\x6a\\x4d\\x02\\x4e\\xb2\\xe4\\x96\\xb5\\x15\\x24\\xe0\\x1f\\x14\\x4a\\xfe\\x3b\\xa3\\xb9\\xb4\\xcd\\x15\\xac\\x9a\\xd1\\xed\\xf9\\x73\\xfd\\xd9\\xdd\\x62\\xdd\\x4c\\xc2\\xde\\x3f\\xd4\\x7d\\xbd\\xaf\\x72\\x28\\x83\\xd8\\xe4\\xf9\\xed\\xab\\x2a\\x0b\\xe7\\x5b\\xfd\\x9f\\x44\\xe4\\x87\\x6a\\x50\\xc5\\xda\\x19\\x89\\x54\\xac\\x2f\\xe9\\xfb\\x41\\xe9\\x74\\xc0\\x45\\xfa\\x41\\x25\\xf4\\x8f\\xd4\\xcf\\xfc\\xd8\\xc9\\x40\\x00\\xe8\\xbf\\xd6\\xcf\\xfc\\x64\\xad\\xb4\\xcf\\xb5\\x68\\x7f\\x5f\\x9b\\x58\\x3f\\xa3\\xce\\xdd\\xdc\\x3a\\xff\\xee\\x45\\x2e\\xfe\\x5c\\x7c\\x7e\\x4b\\xd1\\xe4\\x39\\x09\\x09\\x73\\xbc\\xc5\\xd3\\xf3\\x35\\xc1\\xf2\\x19\\x17\\x8f\\xd2\\x87\\xfd\\xef\\xb8\\x4a\\xc6\\xeb\\x67\\x1c\\x7c\\x59\\x7e\\xa8\\x7e\\x46\\x03\\xc0\\xde\\xe3\\x46\\x40\\x01\\x1a\\x70\\xba\\xed\\x32\\x09\\x81\\x08\\x8e\\x60\\x38\\x60\\x17\\x84\\x03\\x25\\xe1\\xb4\\x2b\\x0c\\xa5\\xd2\\x40\\x83\\x62\\x29\\x69\\xb8\\xea\\xa9\\x6c\\x91\\xb2\\xa4\\xf1\\xc7\\x8a\\xc8\\xf5\\x72\\xa3\\xc3\\xee\\x10\\x4b\\xdd\\xc4\\xa7\\x4e\\xc8\\x5f\\x7b\\x2d\\xd0\\x08\\x99\\x9b\\x1b\\x68\\x85\\xf4\\x37\\xe2\\x5d\\xfc\\x3c\\xf6\\xf2\\xc1\\x4b\\x67\\xc9\\xb0\\x7f\\x07\\xd3\\x1c\\xfc\\xf2\\xcb\\x2f\\xfd\\x07\\x9f\\x0f\\xd5\\xd3\\x89\\xb9\\xe2\\x09\\xf5\\x74\\xe5\\xff\\x87\\x7a\\xba\\x50\\xe5\\x22\\x10\\xd8\\x30\\xf6\\x85\\xd8\\xc7\\x43\\x21\\x1e\\x9a\\x02\\xe6\\x20\\x01\\x18\\x72\\xc8\\xb8\\xc1\\x40\\xab\\xa2\\xb8\\x09\\xc1\\x1a\\x40\\xad\\xf0\\x7b\\x57\\x9c\\x14\\xad\\xe8\\xe5\\x62\\x14\\x9f\\x3b\\xcc\\xa0\\x34\\x85\\xfa\\x3c\\x8d\\x72\\xbb\\x7e\\xbc\\x2a\\x35\\xe0\\x8d\\x97\\x11\\x07\\xd6\\x1c\\x3f\\x4e\\xdc\\xc7\\xd3\\x67\\x5c\\xdb\\x5a\\x77\\x8d\\x2f\\xf7\\x78\\x5d\\x49\\xba\\x4b\\x1f\\xc5\\x8d\\x5c\\xda\\xdb\\xbc\\xb1\\x2d\\x2b\\xbd\\x65\\x53\\xeb\\x9c\\x99\\xf1\\xd9\\x55\\x56\\x31\\x9e\\xe7\\xe5\\x1b\\x59\\x2b\\xf7\\x22\\x68\\xc4\\xca\\xe6\\x42\\x68\\x72\\x37\\x44\\x20\\x91\\x04\\xea\\x29\\x23\\x31\\x3c\\x3c\\xac\\x23\\x02\\xc3\\xc2\\x3c\\x5e\\x19\\x52\\x0a\\x3e\\x26\\xa6\\xec\\xa5\\xc8\\x71\\x81\\x00\\xcf\\xc4\\xf2\\xca\\x02\\x67\\x5e\\x4e\\x86\\xd5\\x9c\\x2a\\xee\\x86\\xca\\xe3\\x88\\x89\\x12\\x36\\xe4\\x87\\x95\\x96\\x46\\x93\\x5e\\x6e\\x57\\x89\\x0d\\x22\\x8a\\x09\\xaa\\xc2\\x34\\xe1\\x33\\x19\\xc1\\x7b\\x0b\\x97\\xdc\\xdd\\x5b\\x38\\xcf\\x15\\x2d\\xb7\\x3b\\x73\\xa2\\xf3\\xda\\x2a\\x4c\\xef\\xf9\\xef\\xc3\\xc7\\x3e\\xf6\\x0f\\x9c\\xff\\xf4\\xbd\\xa2\\xc2\\xc2\\xe2\\xe2\\xc2\\xc2\\x22\\x52\\x1b\\xfa\\xc4\\x8a\\x2e\\xbd\\xd8\\x7f\\xef\\x40\\x81\\x34\\xfc\\x61\\xca\\x51\\x8c\\x2b\\xee\\xf6\\xd2\\x7d\\x8f\\x8e\\x0e\\x3e\\xfa\\x28\\xf9\\x0c\\x5f\\xcc\\x76\\xbb\\xb3\\xb3\\xca\\xcb\\xb3\\x83\\xef\\x80\\x70\\x8f\\xe0\\xff\\x88\\xf5\\x14\\x57\\xf5\\x8e\\xfe\\x3f\\xea\\x31\\x67\\x3d\\x2c\\x70\\xf9\\x22\\xb4\\xe0\\x6c\\x7e\\x03\\xde\\xca\\xdf\\x85\\x07\\x77\\xf1\\xa7\\x58\\x11\\x6f\\xde\\x88\\x1d\\xbc\\xdb\\xbf\\x15\\x10\\xec\\x00\\x6c\\x58\\xec\\xcb\\x36\\xbb\\x8d\\x11\\xe1\\x61\\x32\\x4a\\x02\\x0f\\xf6\\xae\\xbf\\xba\\x91\\x54\\x25\\x57\\x8a\\xb1\\x56\\x97\\x4a\\x2a\\x56\\xcc\\x48\\x1d\\x2e\\xb9\\x1e\\xdf\\x3a\\x73\\x86\\x3c\\x3a\\x5a\\xb2\\x69\\x13\\x26\\xd0\\x55\\x9e\\xa3\\x1e\\x3e\\xe7\\x34\\xe9\\x32\\x1d\\x35\\x91\\x9d\\x81\\x7a\\x8d\\x3f\\x03\\xb0\\x7e\\x09\\x80\\x1c\\xb2\\xdc\\xb6\\xa8\\xc8\\x88\\xf0\\xc0\\xfd\\x29\\xd6\\x03\\xa5\\xcc\\x27\\x16\\xc0\\x4e\\xcc\\x70\\xca\\x55\\x72\\xb9\\x52\\x8c\\x55\\x99\\x54\\x5c\\x90\\x5d\\x39\\x87\\x49\\x8c\\xef\\xe6\\x61\\x3c\\xff\\x79\\x90\\x6f\\x8f\\x63\\x01\\xff\\x3c\\x99\\x4d\\x2f\\xad\\x3f\\xba\\xde\\xff\\xe8\\xa9\\x53\\xf8\\xd7\\x1b\\x8e\\xde\\x80\\x77\\x9f\\x16\\x7e\\xf3\\x16\\xde\\xcb\\x6a\\xb9\\x11\\x88\\x83\\x62\\x77\\x81\\x26\\x96\\x04\\x4a\\x6e\\xc3\\x10\\x90\\xd6\\xcb\\x91\\xe0\\x64\\x8e\\x91\\x10\\x8a\\xf5\\x4e\\x70\\xf7\\x01\\x20\\x0e\\xe2\\xe4\\x2a\\x93\\x49\\x2c\\x7f\\x1c\\x67\\x86\\x60\\x05\\x75\\xa0\\x1f\\x55\\xce\\x6a\\xf3\\xbb\\x6e\\x6c\\x33\\xbb\\xcd\\xd1\\x6a\\x7b\\x42\\x91\\x9b\\xdf\\xc8\\x7f\\x8e\\xf1\\x78\\x2d\\x37\\x72\\x31\\xbd\\xf3\\xd6\\xde\\x7c\\x69\\xf8\\xdf\\x25\\x5c\\xeb\\x74\\x0b\\x5d\\x36\\xfa\\x33\\x6e\\x64\\xf4\\x26\\xba\\x5c\\xa4\\xc3\\xad\\xbc\\x97\\x15\\x88\\xb5\\xe3\\xdb\\x82\\x85\\x65\\x88\\x14\\x0c\\xc8\\xa8\\x02\\x09\\x8b\\x45\\x24\\xac\\x5e\\x2b\\x1e\\xe4\\xae\\x3c\\x18\\xac\\x43\\x0b\\x44\\x53\\x25\\x1c\\x09\\x96\\xd4\\x5d\\xc1\\xcd\\x5a\\xb7\\x4e\\x40\\x4a\\xe5\\xde\\x09\\x61\\xe8\\xab\\x86\\x04\\xa2\\x3f\\x26\\x30\\x29\\x2c\\xa6\\x74\\xa3\\x18\\xfd\\x19\\x2f\\xef\\xbc\\x72\\x9d\\x13\\x6b\\x3d\\x6f\\x8b\\x72\\xdc\\x35\\xaf\\xe9\\xda\\x59\\xf6\\xfc\\xae\\x1b\\x5b\\x4d\\x15\\xa6\\x68\\x75\\x7e\\x42\\x61\\xb9\\xc6\\xe6\\xb6\\x56\\xcf\\xd3\\xf1\\xe7\\x58\\xd1\\xed\\x53\\x3b\\x72\\x16\\x3c\\x3c\\xec\\xaf\\xe8\\xbc\\x75\\x5e\\xbe\\x34\\xfc\\x23\\x89\\xa4\\xa5\\x85\\xfc\\xb6\\x64\\x5a\\x9e\\x3a\\xd7\\x36\\xfa\\x95\\x58\\xb7\\x4a\\xa0\\x76\\xec\\x3c\\x7b\\x88\\x7b\\x05\\xb4\\x90\\x01\\xef\\x89\\xa8\\xfd\\xe9\\x14\\xf1\\x79\\x0f\\x01\\x90\\x2e\\x7c\\xa1\\x58\\xaf\\x15\\xde\\xc3\\xb0\\xde\\xe7\\x1b\\x7f\\xfe\\x1f\\x48\\xa4\\xa2\\x87\\x19\\x2a\\xb1\\xf4\\x78\\xc3\\x65\\x44\\x2a\\x0d\\xd4\\x1e\\x5e\\x06\\xf9\\xae\\x2b\\x47\\x8a\\xfe\\x97\\xf0\\x31\\xe8\\x8e\\x06\\xae\\x11\\x9f\\xab\\x15\\xf8\\x1c\\x8a\\xcf\\x6b\\xdd\\x79\\xa1\\x2b\\x43\\x0f\\xf5\\x10\\x1d\\xb7\\x89\\x6e\\x6c\\xe0\\x2a\\x94\\xc9\\xc6\\x83\\xfa\\x3e\\xb7\\x22\\x39\\xd1\\xa8\\x4b\\xcc\\x48\\xce\\x10\\x94\\x47\\x6c\\xba\\x21\\x26\\x42\\x74\\x6b\\x43\\x75\\x58\\x41\\x9c\\x34\\xfe\\xd8\\x00\\x2e\\x6f\\xbc\\x94\\x51\\xae\\x4c\\x26\\xec\\x21\\xbe\\xa3\\x7c\\x6b\\xed\\xec\\xbb\\x87\\xdc\\xee\\xe5\\xfb\\x67\\xd7\\x6e\\x2f\\xc7\\x3b\\xf8\\x03\\x98\\xc6\\xbf\\x87\\x7d\\xfe\\xa6\\xac\\x4c\\x4d\\xb6\\x26\\xa3\\x3a\\x27\\x21\\x21\\xb7\\x46\\x16\\x55\\xb6\\xe9\\xe8\\x16\\xfc\\xc3\\x96\\xa3\\x9b\\xca\\xa2\\x64\\xef\\xf3\\x37\\xbc\\xcf\\x77\\xaa\\x28\\x8b\\x25\\x44\\xeb\\x19\\x6a\\xe3\\xb3\\x5a\\x96\\xba\\x13\\x04\\xcc\\x61\\x1e\\xbb\\xc0\\xee\\x63\\x4d\\x90\\x0e\\xc5\\x50\\x0d\\xb5\\x6e\\x8f\\x0c\\xa5\\xa0\\x45\\x4a\\xf4\\x89\\xff\\x1f\\x69\\xef\\x01\\xd7\\xc6\\x95\\xed\\x8f\\xdf\\x33\\x73\\x67\\x86\\x0e\\x42\\x15\\x01\\x12\\x42\\x15\\x84\\x68\\x42\\x12\\x88\\x26\\x3a\\xa6\\x63\\x6c\\x03\\xc6\\x36\\x60\\x6c\\x70\\x37\\xee\\xbd\\x97\\x38\\x8e\\x63\\x27\\xb1\\xbd\\xcf\\x71\\xb2\\xe9\\xdd\\x29\\x38\\xbd\\x57\\x27\\x2f\\xc9\\x66\\xb3\\x9b\\xdf\\xb6\\xe4\\x65\\xb3\\x29\\xeb\\xac\\x13\\xdb\\xc9\\x6e\\xde\\xe6\\x65\\x37\\x31\\xba\\xfc\\x3f\\x73\\x67\\x24\\xc0\\x25\\xc9\\x7b\\xff\\xf7\\x96\\x18\\x34\\x33\\x9a\\x73\\xcf\\xbd\\xf7\\xdc\\x53\\xbf\\x87\\xc1\\x2c\\xdb\\x80\\x22\\x11\\xc3\\x46\\x32\\xfd\\x13\\x98\\x57\\xd7\\x28\\x1a\\x72\\xb8\\x87\\x03\\x8a\\xe2\\x55\\x5a\\x52\\x59\\x51\\x52\\x53\\x5a\\x63\\xb7\\x9b\\xed\\x66\\xb5\\xc5\\x12\\x1d\\x06\\xa4\\xd4\\x4c\\x54\\x8e\\x25\\xef\\x84\\x96\\x7a\\x0a\\xc3\\xc9\\x9a\\xd2\\xe6\\x08\\x19\\x3e\\x56\\xf1\\x3f\\xa2\\xe6\\x6c\\xcb\\x9d\\xbd\\xaf\\xb3\\x6e\\x65\\x56\\xc6\\x92\\xaa\\xb6\\xad\\x9d\\x2e\\x32\\xab\\xad\\x4b\\xef\\x48\\x37\\x2a\\x4a\\xac\\x6b\\xdb\\xee\\x9a\\x9f\\xb5\\xb6\\xb1\\x6b\\xdf\\xec\\x3c\\xe0\\x9c\\x65\\xa5\\xce\\x28\\x5d\\x86\\xd1\\x60\\xd7\\x45\\x31\\x96\\xd4\\x34\\x05\\xbe\\xd3\\xca\\xec\\x58\\x72\\x62\\x5d\\xb9\\x2b\\xd3\\xe9\\x82\\xb2\\xe1\\x5b\\xfb\\xff\\x2b\\x7d\\xe1\\x30\\x1f\\x1d\\x1f\\xf9\\xb8\\x39\\xaf\\x37\\x27\\xb7\\x6c\\xed\\x89\\xa5\\xab\\x37\\xac\\x5f\\xf3\\x56\\x61\\x57\\x49\\x5a\\x5a\\x49\\x57\\xe1\\x79\\xa3\\x7f\\x86\\x6f\\x7a\\x55\\x8b\\xe4\\xdf\\xbb\\x19\\x21\\x6c\\xe5\\x5d\\x48\\x81\\xec\\x01\\x4b\\x24\\x00\\x8a\\x02\\x06\\x98\\x06\\xf1\\x1a\\x83\\x60\\x60\\xdc\\x2f\\xa9\\x40\\x0a\\xab\\x55\\xf2\\x4b\\xca\\x03\\x95\\xcb\\x43\\x14\\x70\\x73\\xf5\\xb6\\x27\\x57\\x66\\x34\\x3b\\x74\\x6a\\x67\\xda\\xa6\\x1d\\xb8\\x79\\xcd\\x63\\x1b\\xca\\x63\\x22\\xff\\xc4\\xf1\\xfb\\xd6\\x5d\\x78\\x4c\\x96\\x2f\\x8b\\x78\\x17\\xca\\x40\\xe5\\x81\\x92\\x34\\xe0\\x39\\x13\\x60\\x3e\\x1a\\x18\\x44\\x53\\xb0\\xa9\\x67\\x04\\x73\\xfc\\x80\\x28\\x9b\\x71\\xb7\\x10\\xca\\xb6\\x0e\\xed\\x44\\xa5\\xd5\\xaa\\x50\\xda\\xad\\x52\\x94\\xc1\\x3c\\xe9\\xc4\\xf1\\xd2\\xb4\\x43\\xcf\\x64\\x7a\\xd4\\x6e\\xf6\\xe4\\xbb\\xbe\\xa1\\xa3\\x73\\x72\\xe7\\xe4\\xc6\\x47\\xd9\\x33\\x1d\\x31\\x53\\xeb\\x6f\\xbf\\xbd\\x62\\xe3\\x23\\xcb\\xdd\\xbd\\x6e\\x5d\\x4a\\x55\\xd6\\xaa\\x15\\xef\\xb2\\x4b\\x47\\xf7\\x0e\\xdd\\xb2\\xc4\\x97\\xa0\\xfe\\x28\\x22\\x26\\x82\\x1b\\xea\\x63\\x37\\xfe\\xba\\x75\\xf0\\x97\\x8b\\x7c\\x3a\\xc5\\xfb\\x71\\x09\\x03\\x73\\x5a\\xe9\\x3e\\x9c\\x3d\\x76\\x1e\\x7f\\xc2\\x7d\\x8c\\x52\\x50\\x3e\\x6a\\x0f\\x44\\x29\\x81\\x05\\x3d\\x60\\x6a\\x49\\xab\\xa8\\x25\\xcd\\xb2\\xd0\\x23\\x9e\\x2b\\x17\\x39\\x38\\xf4\\x92\\x9e\\x76\\x39\\xa8\\x89\\xee\\xa7\\x32\\x32\\xd5\\x19\\x16\\x2a\\xb0\\x27\\x57\\xd7\\xd3\\xa8\\xbd\\x5b\\xc5\\x0b\\x9a\\xcb\\x15\\x8d\\xef\\x9b\\x58\\x65\\xbf\\xf1\\xd5\\x5a\\xbd\\xee\\xd5\\x96\\xc6\\x8a\\x9f\\x2c\\xb5\\xef\\x6a\\x4b\\x1e\\xa8\\xd9\\x72\\xc2\\x79\\xdd\\x73\\x97\\x29\\xb8\\xa7\\x63\\xec\\x15\\x65\\x0d\\xbe\\x89\\x8e\\x71\\x7a\\x20\\x2a\\x02\\x30\\x8a\\x03\\x16\\x87\\xb2\\x47\\xf5\\x92\\x4a\\x3d\\xae\\x4d\\xcb\\x46\\x3f\\xd5\\xb7\\xaf\\x74\\x51\\x54\\xb5\\x9f\\xca\\xc8\\x70\\xaa\\xe8\\x38\\xc3\\xfb\\x42\\x1a\\x9d\\xe6\\xc7\\xd2\\xd1\\x7b\\x45\\x25\\x7b\\xe8\\x9e\\xf2\\x92\\x57\\x5a\\xea\\xac\\xb6\\x9f\\xca\\x49\\x2f\\xf6\\xfa\\x77\\xaf\\xb8\\xcd\\x55\\x79\\x73\\xd7\\x8f\\x65\\xa6\\x03\\xda\\x33\\x76\\x9e\\x7b\\x8a\\xfb\\x1c\\x99\\x50\\x5e\\x20\\x5b\\x1c\\x35\\x87\\xa8\\xdb\\xba\\xac\\x51\\xe0\\x19\\x0a\\x60\\x37\\xae\\x84\\x21\\x84\\x4c\\xc8\\x64\\x56\\x5b\\x55\\x2a\\x29\\xdb\\x55\\x5d\\xc6\\x7a\\xdc\\xaa\\x38\\x46\\xb8\\x5c\\x21\\xf6\\xb4\\x82\\xb2\\xb4\\xc8\\x37\\xed\\xd3\\xaf\\xea\\xbb\\x7c\\x45\\xf6\\x29\\x36\\xbd\\xb4\\xa7\\x64\\xe0\\xe8\\x7c\\x2f\\x1b\\xbc\\xf9\\x32\\xc5\\xd9\\x80\\xd6\\x8e\\x9d\\xe3\\x7a\\xf1\\x71\\x64\\x44\\x73\\x02\\x31\\x29\\x49\\x2c\\xcb\\x32\\xfc\\x04\\x6f\\x8d\\x8e\\x07\\x8e\\xe1\\x56\\x62\\x29\\x5f\\x5e\\x3c\\xad\\x42\\xa2\\x3c\\x90\\x32\\xe9\\x92\\xec\\x91\\x19\\x0f\\xa5\\xc6\\x49\\x79\\xbb\\x4a\\xab\\xda\\xac\\x12\\xa4\\xdc\\x03\\x61\\xbc\\x96\\x6e\\x62\\xf2\\xab\\xda\\xeb\\xf5\\x70\\xbd\\xc7\\x6e\\x1e\\x4d\\xb8\\x34\\x05\\xb6\\x24\\x1f\\x1f\\x7f\\xfa\\x4d\\x7d\\x10\\x5d\\x26\\x15\\xf6\\x7a\\xfd\\xda\\x7e\\x7a\\x56\\x7f\\x46\\x1a\\xd9\\x3e\\x9a\\xbb\\x9b\\x11\\xb0\\x4d\\xa8\\xd8\\xb9\\x5c\\x9d\\x8e\\xba\\x26\\x04\\x0f\\x72\\x69\\x95\\x0e\\x78\\x99\\xcc\\xb2\\x35\\x0f\\x2c\\x75\\xcd\\x72\\xc6\\xc5\\x38\\xb3\\x1d\\xd1\\x8e\\xda\\x02\\x03\\xf9\\xfa\\xb2\\xa5\\x38\\xe2\\xda\\xbd\\x79\\xec\\x3c\\x5e\\x85\\x5b\\x43\\x75\\x7b\\xa9\\xc0\\xa2\\x14\\x60\\xa4\\x8a\\x37\\x0e\\x33\\x5c\\x7f\\xb8\\x58\\xaf\\xae\\x31\\x5c\\xc2\\x57\\x03\\x57\\xac\\xdb\\x83\\x90\\xdb\\xdf\\x4e\\xb7\\xa5\\x0c\\x3e\\x20\\xd8\\xcb\\x58\\x25\\xf5\\x32\\xd3\\x0c\\xb7\\xbe\\x4d\\xaf\\x5f\\xdd\\x50\\xbf\\xfb\\xd9\\x95\\x6b\\x1e\\xdb\\x50\\xc6\\xbc\\x20\\x38\\x6a\\xfa\\xcb\\x8b\\x7a\\x9a\\x2a\\x8d\\xad\\x86\\x69\\x4b\\x76\\x0e\\x66\\x37\\x78\\xcd\\x91\\xa4\\x4b\\x97\\xdf\\x82\\x5b\\xa7\\x1e\\x7a\\x75\\x85\\x63\\xdd\\xdb\\x87\\x3b\\xa0\\x76\\xdb\\xe3\\xcb\\x6f\\x29\\x98\\x55\\x63\\x8f\\xd5\\x18\\x14\\x8f\\xeb\\x5c\\x66\\xcd\\xe8\\x16\\x73\\xe9\\xb4\\xfc\\x24\\x57\\xa3\\xd7\\x48\\x79\\xb8\\x03\\x7f\\xc4\\x2e\\xe2\\xce\\xa3\\x08\\x94\\x1a\\xd0\\xf3\\x2c\\xa2\\x75\\x44\\x00\\x88\\x41\\xab\\x44\\x69\\xc2\\x84\\x8b\\xd4\\xd5\\x66\\xbb\\x60\\xf6\\x58\\xdd\\xec\\xa2\\x8f\\x8e\\xdf\\xf8\\x01\\xa4\\xdf\\x8e\\xbf\\x4f\\xd9\\xb6\\xcd\\xf0\\x0d\\x02\\xf4\\x3d\\xfe\\x88\\xfd\\x37\\xf7\\x95\\x94\\x93\\xcc\\xd3\\x9c\\x64\\xea\\x6a\\x15\\xf5\\xc5\\x32\\x14\\xfe\\x06\\x9f\\x5b\\xcd\\x99\\xad\\x1e\\x37\\xb3\\xfe\\xf0\\x57\\xe4\\xfd\\x47\\xc8\\xfb\\x5f\\x71\\xcb\\xb7\\x2a\\x83\\xa3\\x2a\\x1a\\x9f\\xc4\\x5b\\xd8\\x77\\xb9\\x3b\\x90\\x1a\\x19\\x02\\xc9\\x88\\xa1\\x22\\x42\\x82\\x28\\x00\\x19\\x98\\xc0\\x22\\x6e\\x6b\\xed\\xb8\\xf8\\x0a\\x87\\x47\\xd8\\x77\\x73\\xba\\xb7\\xb6\\xb4\\x6e\\xed\\xce\\x79\\x33\\x3e\\xdd\\x63\\xb7\\x79\\x4c\\xf1\\xdc\\x1d\\x15\\x4b\\x9a\\x9d\\xce\\xe6\\x25\\x15\\xfa\\x3c\\xab\\x46\\x63\\xcd\\xd3\\x8b\\xef\\x78\\x1f\\xbf\\xc9\\x62\\xee\\x63\\x14\\x2d\\xe7\\xab\\x52\\xf1\\x51\\x06\\x4d\\x96\\x74\\x29\\x54\\x35\\x6e\\x2b\\xc0\\xfb\\x6d\\xb5\\xb5\\x6d\\xe2\\x0f\\xd7\\x51\\xda\\xda\\x5a\\x5a\\xd2\\xda\\x8a\\x18\\x38\\x8c\\xe3\\xd9\\x42\\xee\\x30\\x52\\x22\\x23\\x9a\\xd5\\x38\\x62\\x9a\\x58\\x23\\x53\\x12\\x0e\\x9e\\xd7\\x41\\x28\\xa9\\x24\\xf1\\xa2\\x68\\x4f\\x09\\x4b\\x9d\\x99\\x52\\xa1\\xfb\\x00\\xcd\\x92\\xe8\\x94\\x97\\x28\\x03\\xad\\xdd\\xdd\\x4f\\x5a\\x6c\\x57\\x0a\\xba\\x87\\x62\\xa2\\xe9\\x3c\\x1c\\x36\\xf9\\x5b\\xb2\\xb2\\x9a\\x0a\\xd3\\xd2\\x0a\\x9b\\xb2\\xb2\\x5a\\xfc\\xa6\\x95\\x45\\x99\\x99\\x1e\\x4f\\x66\\x66\\x11\\xfe\\x4d\\x66\\x7d\\x81\\xc1\\x50\\x50\\x9f\\x99\\x59\\xe7\\x4e\\x49\\x71\\xd7\\x65\\x66\\x79\\xbd\\x59\\x2e\\x9f\\x0f\\x01\\x6c\\x21\\x5d\\xac\\x1a\\x95\\x20\\xad\\xc8\\xdf\\x18\\x3a\\x47\\xda\\x68\\x86\\xc6\\xb0\\xe8\\xf2\\xac\\x80\\x26\\xab\\x5d\\x64\\x83\\x49\\x0e\\x6f\\x78\\x25\\xfd\\x81\\xfa\\xe1\\x7c\\xcc\\x79\\x57\\x89\\x25\\xde\\x60\\x4d\\x75\\xc4\\xe5\\xa4\\x74\\xd7\\x64\\xb7\\x97\\x98\\x97\\x2c\\x4a\\x74\\x64\\xe5\\x25\\xa7\\xda\\xe3\\xf8\\xe3\\xf1\\xa9\\xc9\\x05\\xcd\\xee\\xe6\\x5f\\xe4\\x4b\\xb6\\xc4\\x76\\xfc\\x05\\xdb\\xc5\\xf3\\x28\\x99\\xca\\x3d\\x60\\x99\\x38\\x40\\xc0\\x34\\x24\\x03\\x53\\x1f\\x0b\\xa8\\x2e\\xc4\\xa8\\xb2\\x70\\xe8\\xb3\\x04\\x35\\x99\\xed\\xe6\\x49\\x69\\xb3\\x13\\x13\\x64\\xc4\\xb1\\xb3\\x5d\\xc6\\xa2\\xd6\\xbc\\xdc\\xba\\xf2\\x32\\xbb\\xc5\\x73\\xc0\\x58\\xd8\\x9a\\xe7\\xa8\\xad\\xaa\\xb6\\x59\\xbc\\xdc\\x19\\x57\\x57\\x4d\\x66\\xb2\\x29\\xb9\\x20\\xdb\\x90\\xd5\\x55\\x9b\\x95\\x6c\\x4a\\x76\\x4b\\xf9\\x5d\\xe8\\xff\\xe1\\xcf\\x71\\x2a\\xf7\\x35\\xcd\\xb5\\x0b\\xe5\\x77\\xd1\\x78\\x47\\xd9\\x44\\xc4\\x0c\\x30\\xb3\\xe2\\x4f\\x0c\\x28\\xc8\\xbb\\xbf\\xdf\\x08\\x1c\\x21\\xef\\x72\\x5f\\x93\\x7f\\x41\\x24\\xf9\\x17\\x62\\xe0\\x19\\x72\\x90\\x65\\xc7\\x9e\\xa3\\x73\\x5e\\x2e\\xa5\\x14\\x29\\xc7\\x67\\x90\\x09\\xf1\\xee\\xc7\\xe6\\x35\\x3c\\xad\\xdc\\x8f\\x4d\\xeb\\x33\\x7a\\x57\\xa9\\x39\\xbd\\x24\\x2b\\x29\\x29\\xab\\x24\\xdd\\x5c\\xea\\xd2\\x2f\\x4b\\x4b\\xd2\\x1a\\x0c\\xda\\xa4\\xb4\\xbf\\x98\\x0a\\x33\\xb4\\xda\\x8c\\x42\\x93\\xc9\\x6b\\xd7\\x68\\xec\\xbe\\x34\\x9d\\xd1\\xa8\\xd3\\x9b\\x4c\\x22\\xaf\\x47\\x8f\\xe1\\x67\\x49\\x2a\\xaf\\x13\\xb5\\x4b\\x49\\xc9\\x8e\\x0e\\x01\\xfc\\x96\\x89\\x54\\x45\\x4a\\x47\\x25\\x42\\x0b\\xc7\\x81\\x07\\x58\\x37\\x49\\x7d\\xe0\\xc3\\x4f\\xf1\\xb3\\x30\\x87\\xce\\x57\\x70\\x18\\x3f\\x43\\x3e\\xe3\\x93\\xa4\\x98\\x78\\xd2\\xc4\\x98\\x78\\xd9\\x8f\\xc7\\xc4\\xdd\\xac\\x99\\x30\\x9f\\xbc\\x73\\x0f\\x9f\\x44\\x6e\\x1b\\x1b\\x1b\\x5d\\x8e\\xbf\\x18\\xab\\xe3\\x79\\x46\\x40\\x77\\x5c\\xf8\\xbb\\xd4\\x63\\x21\\x68\\xc3\\x7f\\x27\\xb7\\xf2\\x7b\\x90\\x52\\xb4\\x2b\\x13\\x45\\x93\\xb8\\x21\\x9c\\x33\\x2d\\xee\\x8b\\x4e\\x91\\x6d\\xdd\\x18\\x58\\xc4\\x36\\x4b\\x71\\x5a\\x85\\x46\\x41\\xf7\\xb9\\x5d\\xca\\x26\\x34\\xfb\\xe4\\xdc\\x07\\x75\\xd0\\x1f\\x3b\\xa5\\x42\\x63\\xf3\\x1a\\x85\\xa7\\x9f\\xd5\\x67\\x7a\\x53\\xf0\\xdf\\xaf\\xe6\\x52\\xd3\\x54\\xc9\\x09\\xc2\\x9e\\x85\\x33\\xcd\\x6e\\xb3\\x0a\\x4b\\xf5\\x60\\x17\\xfe\\x85\\x4f\\x8f\\xb5\\x8c\\xcf\\xfb\\xe4\\x7e\\x00\\x61\\x18\\x0b\\x69\\xe6\\x09\\xfe\\x82\\x7c\\x08\\x3a\\xa6\\xfc\\x93\\xff\\x01\\x05\\x3e\\x0d\\x51\\xe4\\x3b\\x88\\x42\\x10\\x8c\\x25\\x47\\x48\\xfb\\xd8\\x43\\x3f\\x16\\xdb\\xbe\\x78\\x3a\\x83\\xb1\\x52\\x92\\x74\\xa6\\x56\\x9b\\x29\\x25\\x4d\\x7f\\x62\\x28\\x10\\xa5\\x4f\\x81\\xc1\\xe0\\xb6\\xa9\\xd5\\x36\\x37\\x02\\xa6\\x06\\xff\\x37\\xfb\\x00\\xbf\\x43\\xc6\\x98\\xb8\\x88\\xb1\\x8a\\x04\\x46\\xd0\\x38\\xc1\\xc4\\x9a\\x99\\xa3\\xa0\\xfe\\xe0\\x00\\xbf\\x83\\xac\\x40\\x2c\\xb0\\xf8\\x4d\\x5c\\x25\\x44\\xd2\\x3c\\x6f\\x27\\xfa\\x1f\\x29\\x59\\x45\\x8d\\x28\\x4e\\x87\\x04\\xd8\\xc5\\xf4\\x88\\xc7\\x71\\x2e\\x1b\\xca\\x53\\xb9\\xcc\\xc5\\x7c\\x36\\x94\\xa2\\x72\\xc5\\x27\\x13\\x7e\\xec\\xc9\\xc4\\x1f\\x7b\\x32\\xf5\\xc7\\x9e\\x34\\x5e\\xf9\\xc9\\x2b\\x3c\\xd4\\x2d\\xfd\\x5f\\x20\\xd2\\xe1\\x70\\x58\\x15\\x09\\xbc\\xa0\\xa7\\x4c\\xb9\\x98\\xe1\\x17\\xe7\\x62\\x32\\x7b\\x21\\xe1\\xbe\\xc3\\xe4\\x3e\\xb5\\xb5\\x20\\xcd\\x58\\x60\\x55\\xab\\xad\\x05\\xc6\\xb4\\x02\\xab\\x9a\\xb1\\x5e\\xfc\\x89\\x10\\x49\\x9e\\xdf\\x9c\\x92\\x6b\\x56\\xa9\\xcc\\xb9\\x29\\xc9\\xb9\\xe9\\x2a\\x55\\x7a\\x6e\\x6a\\x4a\\x8e\\xf8\\x77\\x4e\\x8a\\xfc\\x39\\x8d\\x85\\x33\\x2e\\xc6\\xc1\\x2e\\x64\\x3b\\x18\\x1e\\xad\\x2d\\x0f\\xd5\\x76\\x16\\x87\\x31\\xbc\\xa4\\xe4\\x75\\xc6\\x21\\x0a\\xff\\x0c\\x09\\x69\\x44\\xd0\\xca\\x28\\x3c\\xb8\\x38\\xb8\\x98\\x9c\\x61\\x1f\\xc6\\xef\\x5c\\x28\\xe0\\x46\\x44\\x79\\x64\\x46\\x88\\x93\\x70\\xb8\\x29\\xb2\\x2d\\x0f\\x14\\xc3\\x0b\\x21\\x07\\x55\\x54\\x66\\x5e\\xf4\\x1d\\x60\\xb2\\x9a\\x80\\x89\\x86\\x14\\xf8\\xe0\\x82\\x19\\x96\\x30\\xc2\\x18\\xe2\\x46\\x7e\\x68\\xfb\\x8c\\x9d\\x2e\\xda\\x92\\x3d\\x63\\xe7\\xf1\\x5e\\xee\\x14\\xf5\\x01\\xe6\\x50\\x9c\\x3c\\x40\\x88\\x03\\x09\\x27\\x4f\\x94\\xa9\\xb9\\x61\\x0f\\x74\\x1e\\xd3\\x94\\x91\\x91\\x11\\xe6\\xa3\\xc7\\xc4\\xfd\\x0c\\x7c\\x2d\\x36\\x9f\\x6c\\x86\\xdd\\x30\\xed\\x67\\xa0\\x6c\\x0d\\x7e\\xfc\\xfe\\xcf\\xc1\\xd9\\x02\\xea\\x8b\\x7d\\x3c\\x84\\x07\\x84\\x00\\x1c\\xd4\\xa3\\x94\\x21\\xa1\\xf9\\x0a\\xe3\\x78\\x40\\xf3\\xc8\\xfb\\xe4\\x43\\x78\\x19\\x52\\xe0\\x15\\xf2\\x5f\\xd8\\x77\\xe1\\x2d\\x71\\xdc\\x88\\x45\\x1b\\x10\\xc2\\xf5\\x72\\xee\\xb4\\x84\\x0d\\x28\\x61\\xc1\\xf5\\x23\\x8e\\xa3\\x2e\\x2a\\x47\\xb8\\xe8\\x21\\x03\\x42\\x28\\x73\\x82\\xde\\xe9\\x33\\xa9\\x4d\\x14\\x9f\\xd9\\xa4\\x36\\x6d\\x60\\x7f\\x33\\x9a\\xb7\\x84\\xf9\\x36\\x18\\xd3\\xcd\\x1e\\x1b\\x5d\\xf0\\xd9\\x67\\x6c\\xfb\\x87\\xac\\xff\\x34\\x3d\\xb7\\xc4\\xef\\xaf\\x0b\\x61\\x2c\\x21\\x00\\xea\\x5f\\x98\\x48\\x64\\x02\\x16\\x74\\x61\\x24\\x3c\\x5c\\x47\\xce\\x90\\x79\\xe4\\x0c\\xfb\\x6e\\x68\\x86\\x29\\x56\\x1d\\x02\\xbc\\x9e\\x62\\x16\\xb9\\x02\\x99\\x02\\x48\\x5a\\x35\\x07\\x80\\xd8\\x86\\x10\\xca\\xe0\\x64\\x2a\\x55\\x0a\\x85\\xf8\\xad\\x00\\xb4\\x30\\x08\\x3c\\x26\\xb5\\x09\\xd8\\x2e\\x72\\x1d\\x73\\xdd\\x85\\x7f\\xc1\\xcb\\x24\\xc0\\x9e\\x0f\\xde\\x00\\x8b\\x99\\xdf\\x93\\xd8\\x4f\\xfe\\x83\\xa9\\x61\\x8a\\x8f\\x9d\\x26\\xa2\\xa4\\xae\\x40\\x08\\x7f\\xcd\\x8d\\xa0\\x24\\x94\\x86\\xec\\x28\\x2d\\x90\\x6a\\xb5\\x18\\x52\\xb5\\xb1\\x51\\x28\\x02\\x01\\x2d\\x04\\xa7\\x6f\\xc9\\x40\\x4d\\x29\\xc9\\x54\\xa6\\x84\\xba\\x71\\x98\\x3c\\xa1\\x86\\x1d\\x26\\x50\\x69\\xb4\\x0a\\x9e\\xe7\\x0a\\x6c\\x76\\x85\\xd7\\xcb\\x5a\\x06\\xef\\xdb\\x50\\x55\\xb5\\xe1\\xbe\\x41\\xf2\\xc5\\xe0\\xfd\\xe2\\x6f\\xf7\\x0f\\x82\\x8e\\xe4\\xcd\\x9d\\x3e\\x7d\\x2e\\xb3\\xab\\x6f\\xda\\xb4\\x3e\\x7c\\x3e\\x7a\\xc6\\x81\\x17\\x56\\x0e\\x3f\\xb3\\x7f\\x7a\\xf4\\x0b\\x2f\\x44\\x4f\\xbb\\xfa\\x99\\xe1\\x95\\x2f\\x5e\\x3b\\x23\\xfa\\x54\\xd0\\xb0\\xe1\\x90\\x8a\\xa9\\x51\\xff\\x62\\xf3\\x96\\xa3\\xea\\xe0\\xf3\\xaa\\xeb\\x64\\x0c\\xe7\\x0f\\x69\\x2f\\x95\\xb4\\x40\\x6a\\x52\\x5c\\x34\\xc2\\xb4\\x00\\x8c\\x61\\xe8\\x72\\xa7\\x43\\x57\\x6b\\xb5\\x2a\\x3a\\x74\\xaf\\x97\\xda\\x05\\x71\\x8c\\xa0\\x30\\x29\\xb2\\x59\\xfa\\x87\\x46\\xab\\x30\\xb1\\xf6\\xa6\\x16\\xd0\\x97\\xad\\xbc\\x7d\\x80\\x7c\\xb1\\xe0\\xfe\\xf5\\x15\\x90\\x34\\x7b\\x9a\\x28\\xaa\\x35\\x47\\xaf\\x63\\xbc\\xc1\\xb7\\xb7\\xbe\\x7c\\x55\\x5b\\x0c\\xb9\\x17\\xba\\xa2\\x9a\\xf7\\xbd\\xb6\\x5d\\xfc\\xe4\\xba\\xa3\\x1a\\x76\\x85\\x34\\x0f\\x33\\x10\\xc2\\x3b\\xb9\\x53\\x28\\x07\\x65\\x06\\xec\\x89\\x88\\x91\\xb7\\x9a\\xbc\\x35\\x44\\x39\\x03\\xdd\\x1c\\x48\\x53\\xa0\\xcf\\x54\\x24\\x39\\xe8\\xe6\\x28\\x63\\x3d\\x72\\xc4\\x91\\xa6\\xb4\\x2b\\x4c\\xa2\\x32\\x3e\\x01\\x52\\x43\\xa4\\xd1\\xa4\\x36\\x31\\x77\\x5b\\xcb\\x5c\\xba\\xf5\\x8b\\x16\\x6c\\x48\\xca\\x0e\\x38\\x88\\x13\\x62\\x4a\\x86\\x9a\\x9c\\x2d\\x07\\x4e\\xad\\x5b\\xf7\\xfa\\xb5\\x2d\\xce\\xc6\\xa1\\x62\\x50\\x90\\x4c\\x48\\x48\\x68\\xd9\\xf9\\xec\\x26\\xcf\\xab\\xaf\\xbe\\xf6\\x8a\\x67\\xf3\\xb3\\x3b\\x9b\\x13\\xc8\\x3f\\x4e\\x3b\\x37\\x1e\\x3d\\x31\\xcb\\xbd\\xef\\xf4\\xdd\\x3d\\x3d\\x77\\x9f\\xde\\xe7\\x9e\\xf5\\xe0\\x91\\x8d\\xce\\xd3\\x88\\x41\\x8b\\xc6\\xce\\xe1\\x43\\xb8\\x85\\xe2\\x35\\xdf\\x21\\x9d\\xc2\\x09\\x06\\xe0\\xd9\\x2c\\x07\\x83\\xf8\\x58\\x81\\x11\\x17\\x50\\x32\\xfd\\x08\\x4f\\xfc\\xa8\\x5b\\x92\\xda\\x49\\x88\\xe7\\xd9\\x1e\\x01\\x33\\x2c\\xeb\\x6e\\xa4\\x78\\x1b\\xb3\\x18\\x00\\xc8\\x83\\x90\\xeb\\xed\\x0a\\x37\\x64\\x81\\x54\\x89\\x89\\xb1\\xb3\\x91\\xde\\x81\\x2e\\xb9\\xde\\xdd\\x1d\\x50\\x20\\x94\\x9b\\x6d\\xb3\\x88\\x66\\x5d\\x86\\xc5\\x62\\x8e\\x10\\xa8\\xd3\\x55\\xe3\\xce\\x97\\x54\\xc4\\x10\\x24\\xee\\x78\\x96\\x04\\xc8\\x36\\x9e\\xad\\xc0\\x13\\xf2\\xa8\\x61\\x6c\\x37\\x25\\x25\\xea\\xd2\\x8a\\xcd\\xdd\\x3b\\xcc\\x79\\xfb\\xe7\\xf4\\x1f\\x1d\\xf4\\x78\\x06\\x7f\\x31\\x77\\xe6\\xde\\xdc\\x42\\x52\\xac\\xca\\x9e\\xe2\\x2d\\x9b\\xa1\\x87\\xe4\\xe9\\xc5\\x9e\\xc6\\x6c\\x35\\xf6\\x07\\x23\\x2b\\xf2\\xb8\\xf7\\x12\\xa2\\x6a\\xea\\x2b\\x1b\\x5a\\xae\\x7d\\x6d\\x8d\\x7a\\xcb\\x7b\\xc7\\xa6\\xd5\\x57\\xac\\x09\\xbe\\x5e\\xb9\\x62\\x6a\\x8e\\xdd\\x1c\\xad\\x8d\\x81\\x4f\\xcd\\x36\\xdf\\x9c\\x2d\\x75\\x32\\x26\\x33\\x59\\x86\\xaf\\xe5\\x5e\\x47\\x7a\\x54\\x88\\xb6\\x05\\xe2\\x22\\x80\\x67\\x33\\x80\\xe3\\x95\\x14\\xef\\x47\\xae\\xcc\\x8d\\x00\\x16\\xf1\\x1c\\xcb\\x0f\\x50\\xd7\\x81\\x00\\x08\\x51\\x21\\x49\\x75\\xb8\\x3c\\x51\\x06\\xbb\\x68\\xaa\\xf7\\xa5\\xb7\\xe5\\x87\\x6f\\xcb\\x92\\x6f\\xeb\\x0e\\x24\\xa5\\x24\\x03\\xf2\\x79\\x5c\\x4e\\x4b\\x7a\\x72\\x61\\x4a\\xa1\\x5a\\xa5\\x88\\x47\\x7a\\xd0\\x47\\x0a\\xb2\\x3d\\x37\\x21\\xab\\x91\\x86\\xba\\x0a\\xca\\x18\\xe5\\x04\\xc8\\x7d\\xc5\\x04\\x6c\\x78\\xb3\\x87\\xd9\\xba\\xf0\\xc1\\x0d\\x95\\xf3\\x66\\x6e\\xdc\\x55\\xbe\\xfa\\x9e\\xc1\\xfa\\x23\\xe5\\xe4\\x5c\\xd3\\xae\\x87\\x7b\\x07\\xbb\\xb4\\x39\\xb5\\xd9\\x59\\x0d\\x5e\\xa3\\x7d\\x45\\x9d\\x77\\x86\\xdf\\x98\\xe2\\x9b\\xea\\x19\\xe4\\x5e\\xf7\\xce\\x3f\\x3c\\x7b\\xe0\\xf6\\x3c\\xe7\\xd3\\xbb\\x16\\xdc\\xb9\\xdc\\x6f\\xcb\\x20\\x05\\xdc\\x6d\\x73\\xef\\x58\\x15\\x08\\xfe\\x62\\x69\\xaf\\xb5\\xba\\x20\\xcd\\x50\\xd8\\x9a\\x37\\x3a\\x6a\\x48\\x37\\xf9\\x5b\\xb3\\x3d\\x9d\\xa5\\xe9\\xef\\x4a\\x7b\\xc2\\x41\\x7a\\xf1\\x93\\xd8\\x8f\\xa2\\x44\\x5b\\x2f\\x92\\x63\\xd8\\x50\\xf5\\xa8\\x53\\xdc\\x91\\x2e\\x68\\x4a\\x4c\\x0c\\x9d\\x3d\\x0a\\x93\\x02\\x4c\\xa0\\xf5\\xb1\\x47\\x20\\x9d\\x54\\x91\\xb3\\xa4\\x06\\xcc\\x90\\x14\\xa7\\xc0\\xfe\\x0b\\x1f\\x90\\x26\\x78\\x1a\\x9b\\x47\\x2f\\x54\\xd4\\xca\\xbe\\xaa\\xed\\x7c\\xba\\x68\\x09\\xa3\\x82\\x40\\x5e\\x04\\x00\\xca\\x54\\x44\\xb2\\x18\\x98\\x06\\x84\\x81\\x05\\x4c\\x91\\x3a\\x01\\x23\\x5a\\x23\\x17\\x3a\\x8f\\xca\\xcb\\x0a\\xf2\\x73\\xec\\x16\\x4e\\xd0\\x86\\xdd\\x34\\x82\\x68\\xf5\\xca\\x95\\x24\\x13\\x82\\xd9\\x54\\x56\\xf9\\x6c\\x36\\xe5\\x44\\x9f\\x8d\\x5d\\xe4\\xe0\\x57\\xbe\\x85\\xff\\xd1\\xd7\\x7a\\xb8\\x2d\\x4b\\xe5\\x29\\xaf\\xb5\\x34\\x76\\xc6\\x58\\x2a\\x3d\\x7f\\xff\\xb6\\xee\\xaa\\x53\\x5b\\xb6\\xbd\\xb1\\xaf\\xce\\x33\\x73\\x7d\\x35\\xd3\\x39\\xb8\\xc7\\x50\\xd6\\x5f\\x59\\x31\\xa7\\x2c\\xd5\\x5c\\x31\\xbb\\xa8\\xb2\\xaf\\xdc\\x80\\xff\\xda\\xb8\\xb6\\xc3\\x99\\x65\\x7a\\x9a\\x57\\x26\\xc4\\x14\\xe5\\xc4\\xa7\\x5b\\x6c\\xca\\x76\\xf2\\xf9\\xff\\x53\\xad\\x7e\\xe3\\xfa\\x8e\\xf6\\x83\\xaf\\xae\\x50\\x4d\\x3b\\xbc\\xaa\\x25\\x21\\x36\\x73\\x6f\\xf0\\x50\\xf5\\x86\\x99\\x1e\\xcf\\xcc\\x0d\\xd5\\xaa\\x82\\x45\\x33\\x03\\xd1\\x9e\\xee\\x35\\x32\\x3e\\xed\\xee\\xb1\\xf3\\xf8\\x66\\xdc\\x8c\\xfc\\xa8\\x25\\xd0\\x98\\x0c\\x48\\x80\\x06\\xc4\\xf1\\x02\\xcf\\x09\\xc3\\x21\\x44\\x4e\\x24\\x44\\x00\\x62\\x04\\x34\\x10\\x6a\\xc1\\xe0\\x6e\\x0c\\x65\\xc5\\xe6\\xb1\\x4d\\x80\\x8a\\x7c\\x39\\xae\\x0c\\x87\\x25\\x5d\\x95\\x18\\x17\\x2b\\x25\\x3f\\xd0\\x85\\x33\\x0e\\x1e\\xef\\x31\\x85\\xc3\\xf9\\x57\\x2c\\xbf\\x71\\xbb\\xd5\\xcc\\xa1\\xad\\xeb\\x52\\x8a\\x67\\x57\\x14\\xcf\\x2e\\x37\\x81\\xba\\xfb\\xfa\\xa7\\xe6\\xac\\x7b\\xe3\\x60\\xcb\\xd2\\x25\\xbd\\x43\\xf5\\x57\\xbd\\xb4\\x7e\\xfe\\xe3\\x57\\xb5\\x90\\xb3\\xe6\\xb2\\x8e\\xbc\\xca\\xce\\x02\\xb5\\xd6\\x33\\xa3\\xfc\\x6f\\xf0\\x76\\xe9\\x14\\x7d\\xae\\x55\\xab\\xb6\\xe4\\xe8\\xbb\\xb7\\x77\\x38\\xb2\\xa6\\x6d\\x68\\x9e\\xb5\\x2d\\xcd\\xb2\\xa1\\xbe\\x79\\x6d\\x6b\\x86\\x6b\\xfa\\xa6\\xe6\\x94\\x2c\\x63\\x82\\xc6\\xec\\xd2\\x26\\x3b\\xd3\\x14\\xcf\\xd3\\xf1\\xb6\\x91\\xcd\\x38\\x8b\\x1b\\x41\\xd9\\xc8\\x16\\x30\\x03\\xc5\\x57\\x4b\\xd6\\x69\\x59\\xda\\x12\\x05\\xba\\x45\\x39\\xe1\\xa0\\x41\\x99\\x6c\\x94\\xed\\xca\\x62\\xc5\\x71\\xa8\\x41\\x6a\\xc8\\xa3\\x0d\\x75\\x81\\xb2\\x7b\\xbd\\x76\\x6f\\x36\\x63\\x0f\\xb5\\x8b\\xf2\\x99\\x3c\\x38\\x8b\\xf4\\x55\\xcc\\xab\\x36\\x6b\\x9c\\x55\\xae\\xe7\\x02\\x8b\\x9a\\x32\\x32\\x2b\\x5a\\xed\\x07\\x73\\xb3\\x19\\x88\\x4e\\x71\\xa5\\x9f\\xec\\xdb\\xd7\\xe9\\x70\\x75\\xed\\xe9\\x3a\\x13\\xbc\\x99\\x1b\\xb9\\x8d\\x4c\\x2b\\x1e\\x18\\x58\\x5a\\x9d\\x53\\x91\\x9d\\x1a\\x69\\x8d\\xb7\\xfa\\xa7\\x95\\x3a\\xe7\\xcc\\x6c\\x4b\\x5e\\xe6\\x9e\\x61\\x54\\x18\\xf5\\x4a\\xde\\x98\\x58\\x31\\x67\\x63\\x63\\xdb\\xf5\\x07\\xaf\\x6b\\xfb\\xd7\\x27\\xd4\\xaf\\x41\\xfa\\x71\\x13\\xc5\\x4d\\x58\\x32\\x01\\x83\\x23\\x91\\xa6\\x5d\\xc8\\x18\\x1c\\xd2\\x1f\\x72\\xdc\\x46\\x3b\\x8e\\xc1\\xe1\\x6e\\x44\\x2c\\x9b\\x21\\x6f\\x89\\xe4\\x40\\x32\\x27\\x89\\x47\\xb9\\x76\\x6a\\xd2\\x55\\x09\\x8b\\x43\\x8d\\xd4\\x4a\\xb3\\xda\\xcc\\x0b\\x17\\x61\\x71\\x84\\xe0\\x04\\x60\\x57\\x6c\\xe1\\xbd\\x8b\\x3a\\xae\\xee\\xf7\\x92\\x2f\\xe6\\xce\\x69\\x5c\\x6a\\x25\\x67\\xb1\\xff\\x97\\x1d\\x73\\xb2\\xe7\\xdf\\xba\\xf2\\xc2\\x53\\x78\\xca\\xbc\\xde\\x6c\\xc7\\xe8\\x97\\xd8\\x2f\\xea\\x75\\x23\\x63\\xe7\\x70\\x1d\\xed\\xbd\\x92\\x8e\\x72\\x50\\xbb\\x5c\\x4b\\x8f\\x30\\x62\\x58\\xcc\\xf4\\x87\\xc4\\x50\\x6e\\x38\\x82\\x94\\x87\\x44\\x09\\x7e\\xf1\\xf5\\xfc\\xf0\\xf5\\x2c\\x09\\xa8\\x4c\\x6d\\x55\\x67\\x58\\xe8\\x11\\x77\\x49\\x0f\\x16\\x08\\x67\\xd3\\x78\\xc0\\x14\\x96\\x4f\\xb8\\xae\\x62\\xdd\\xfd\\x0b\\x17\\x3e\\xb0\\xbe\\xb2\\x62\\x3d\\xfd\\xb7\\x82\\x9c\\x23\\x47\\xb5\\xae\\x1a\\x57\\x56\\x75\\xb6\\x96\\x1c\\x85\\xc5\\xda\\xec\\x1a\\x97\\xab\\xda\\xa5\\x61\\x22\\xf7\\xbc\\x7d\\x75\\x6d\\xed\\xd5\\x6f\\xef\\x81\\xa3\\x7b\\xde\\x3d\\x50\\x5f\\x7f\\xe0\\xdd\\x3d\\xe4\\xc3\\x5b\\x5b\\x17\\x94\\xeb\\xf5\\xe5\\x0b\\x5a\\x61\\xed\\xf6\\x96\\x85\\x15\\x29\\x29\\x15\\x0b\\x5b\\xc4\\x79\\x79\\x6c\\xec\\x1c\\x2e\\xa7\\x3e\\xbb\\x86\\x40\\x54\\x14\\x00\\x1b\\x4d\\xfd\\xfe\\x13\\x10\\x47\\x44\\xbb\\xd3\\x19\\xf6\\xa6\\xe4\\x31\\x21\\xc4\\x91\\xc9\\x9f\\x67\\x31\\x4d\\xdd\\x4f\\xaa\\xed\\x56\\xaa\\x92\\x29\\xc3\\x5e\\xc5\\x30\\x2c\\x80\\xe9\\x31\\xa6\\x40\\xe7\\xf0\\x1a\\x5c\\xad\\xc9\\xae\\xb4\\xb2\\xd2\\xb2\\xb4\\x59\\x07\\x7a\\xf3\\xc8\\xe7\\xd8\\x1f\\xcc\\xf6\\x96\\x18\\x04\\x83\\xe2\\x2d\\x9d\\x21\\x81\\x77\\xcc\\x3c\\x34\\x04\\xdf\\x8a\\x74\\xa5\\x8d\\x7d\\x8d\\xb7\\xf2\\x3c\\xca\\x42\\x9b\\xa5\\x88\\xba\\x22\\x06\\x80\\x71\\x9a\\xa2\\x19\\xcc\\x02\\xd3\\x90\\x0e\\xa8\\x2e\\x79\\xd2\\x67\\xe9\\x80\\x51\\x38\\x1b\\x2b\\x19\\x01\\xc3\\x32\\xc0\\x0e\\x53\\x7d\\x14\\x2d\\x0b\\x83\\x03\\x64\\xc8\\x89\\x87\\x97\\x5c\\x15\\x47\\x93\\xd1\\x88\\x30\\xce\\xc3\\x4d\\xdd\\x4f\\x59\\xa7\\xd8\\xbc\\x09\\x9c\\x90\\xe4\\x34\\x99\\xc0\\x4e\\x05\\xa1\\x60\\x97\\x00\\xf9\\xb5\\x60\\x60\\xdd\\xf9\\xf9\\x5e\\xaf\\x4f\\x90\\x4e\\x59\\x3b\\x2b\\x40\\x33\\xf9\\x1d\\xec\\x30\\xc4\\x5a\\xf3\\x8a\\x2d\\x0a\\x87\\x8a\\x4f\\x70\\x38\\x9d\\xaa\\x29\\x2b\\x3a\\x7c\\x0a\\xe8\\x89\\x4a\\xb1\\xba\\xf4\\x11\\x91\\x11\\x51\\x91\\xbc\\xca\\xa5\\x6a\\x5c\\x3d\\xa3\\x54\\x75\\x4b\\x2a\\x4e\\x6b\\x30\\x55\\x79\\x4d\\x98\\xf9\\x2d\\x8e\\xe4\\x71\\xe1\\xd4\\x7e\\xc7\\xe8\\x01\\x63\\x79\\xbe\\x11\\x00\\xfe\\x8b\\xe7\\x72\\xdb\\x17\\x16\\xc2\\x33\\xd7\\x48\\xb2\\x6d\\x84\\xac\\xc3\\x1b\\xb9\\x53\\xa8\\x02\\x65\\x05\\x32\\x2a\\x00\\xb1\\x05\\x74\\x7e\\x6c\\x56\\x86\\xa9\\xa3\\xa2\\x8d\\xe9\\x0d\\xab\\x51\\xa8\\xa9\\xb4\\xd8\\xe4\\xb0\\x60\\xf1\\xc8\\x98\\x90\\x5e\\xe4\\x56\\x87\\x04\\xf9\\x84\\xdd\\xef\\x29\\xb0\\x5f\\x52\\x4b\\xa8\\xc5\\x7a\\x6b\\x51\\x41\\x7e\\x6a\\xfb\\xf2\\xea\\xd4\\xd4\\x9a\\xd5\\x33\\x8e\\x1e\\x7a\\xeb\\xb9\\xec\\xa9\\xcb\\x2b\\x07\\x4a\\x17\\xb6\\x64\\x65\\x56\\xb4\\xd9\\xaf\\xca\\xb5\\xad\\x2d\\xdb\\xf2\\xf2\\xae\\xaa\\x7b\\x6f\\x59\\xb3\\x75\\xca\\xfe\\xb7\\xb6\\xe7\\xb4\\xd5\\x56\\x98\\xf0\\xb3\\x91\\x71\\x91\\x9c\\xc6\\xee\\x35\\xa6\\x17\\x65\\xea\\xfe\\xb6\\x73\\xbb\\xb7\\xad\\xc8\\x1a\\xad\\x89\\x33\\xf9\\xa6\\x57\\x39\\x7b\\x67\\xb6\\x26\\x2f\\x75\\xb7\\xdb\\xaa\\x0d\\x09\\xc6\\x40\\xdf\\xf5\\xc3\\x07\\x5f\\xca\\xb6\\xed\\xed\\xef\\xbe\\x76\\x6e\\x01\\x1f\\x9b\\x18\\x23\\x8d\\x71\\xde\\xd8\\x57\\xf8\\x7b\\xec\\x47\\xc9\\x68\\x85\\x34\\x7d\\xe2\\x42\\x44\\xd2\\x42\\x4c\\x0e\\xfd\\x81\\x25\\x6c\\x11\\x79\\x76\\xa9\\x27\\x6f\\x98\\x63\\x19\\x84\\x68\\x92\\x82\\x93\\xaa\\x90\\x79\\xa1\\xec\\x1f\\x8c\\x00\\x4f\\xba\\x8a\\x30\\xce\\x68\\x94\\x96\\x6f\\x77\\x20\\x4a\\xa1\\x50\\xa8\\xad\\xd6\\x04\\x41\\x48\\xa6\\x91\\x24\\x79\\xa9\\x86\\x5c\\xe2\\x66\\x9a\\x58\\x62\\xc2\\x0f\\x1f\\x8f\\xd6\\x9a\\x75\\x46\\x87\\xca\\x55\\x36\\x94\\xdf\\xb0\\xac\\xde\\x42\\xc8\\xd9\\xbd\\xb8\\x81\\x9d\\x17\\xfc\\x8b\\x3d\\x5b\\x2b\\xc4\\x46\\xbd\\x68\\x57\\x99\\x9a\\x37\\xf7\\x30\\xf9\\xa3\\x37\\xb3\\xf3\\xfe\\x28\\xe9\\x3d\\x7b\\x48\\x1f\\xee\\x95\\x71\\x7b\\xa6\\x07\\xa2\\xcc\\x80\\xd9\\x08\\x8a\\x40\\x1e\\x8a\\xa3\\xc8\\x87\\xae\\x3b\\x1c\\x0d\\xca\\x0b\\x4b\\xb6\\xcb\\x5c\\xcc\\x0a\\x09\\xb6\\xa7\\x32\\x32\\xac\\x4a\\x8b\\xb8\\x24\\x61\\x92\\x0e\\x33\\xf9\\x10\\x12\\xdc\\xea\\x50\\xc2\\x4e\\xaf\\x77\\xd1\\xcd\\x83\\x7d\\x87\\xdc\\xe4\\x6c\\xfd\\x9e\\xe7\\x56\\xaf\\x7d\\x6c\\x7d\\x29\\x39\\xab\\x71\\xb7\\xfb\\xfd\\x53\\x3d\\x49\\x00\\x86\\x05\\xed\\xc5\\x53\\xdd\\x5a\\x18\\x5b\\xf3\\xda\\xb5\\xad\\x55\\x65\\xc1\\x6f\\xd9\\x4f\\xd6\\xbc\\xba\\xbf\\x79\\xda\\xb1\\xf7\\xb6\\xd4\\x6d\\x99\\xe3\\x13\\xcf\\x56\\xf8\\xd6\\x5d\\x98\\xd3\\xb1\\xa2\\x52\\xd6\\xdf\\xc9\\x74\\x8a\\x71\\x98\\x23\\x9e\\x39\\x46\\x03\\x03\\x75\\x08\\x18\\x58\\x45\\x37\\x16\\x0b\\x08\\xb9\\x99\\x26\\x40\\x14\\x9e\\x30\\x07\\x72\\x70\\x48\\xe9\\x32\\x8d\\xdb\\xb1\\x1a\\xad\\x81\\xd5\\xca\\x9d\\xba\\xec\\x05\\x36\\xbb\\x45\\xd2\\x25\\x98\\x9e\\x45\\x27\\xb7\\xd7\\x92\\x1f\\xf4\\xde\\x8e\\xc2\\xaa\\x9e\\x42\\xdd\\xe6\\x43\\x43\\xc7\\xe6\\xbb\\x19\\x4f\\xe7\\xf2\\xe2\\x8d\\x9a\\xc2\\x5c\\x13\\xcc\\xee\\x1a\\x43\\xdf\\x56\\xed\\x7c\\x15\\xb7\\x14\\x2d\\xb9\\x79\\x20\\x5c\\x0f\\xbe\\xf7\\x96\\x84\\x84\\x8c\\xf2\\xd9\\x55\\x95\\xcb\\x7b\\xea\\x92\\x6e\\x14\\xd2\\xb3\\x0b\\x0d\\x2e\\x77\\x44\\x16\\xb0\\x1f\\x52\\xf4\\x42\\x3a\\x17\\xad\\x63\\xe7\\xf0\\x5e\\xec\\x47\\x3a\\x94\\x8d\\x2a\\x24\\xfe\\x6b\\x70\\x08\\x58\\xd1\\x19\\x0e\\x93\\x88\\x5a\\xf9\\x65\\x2f\\x64\\x51\\xbe\\x5b\\x33\\x32\\xa9\\x28\\x00\\xb3\\x81\\x9d\\xac\\x07\\xb9\\x4d\\x70\\x49\\xe4\\x0a\\xef\\x25\\xb6\\x8a\\x1c\\x7d\\xc5\\xd6\\xa7\\xd7\\x6e\\x7c\\x61\\x67\\x55\\xd5\\x8e\\x17\\x36\\x30\\xa5\\xa3\\x9f\\xe8\\xbc\\x5d\\xe5\\xfe\\xa9\\x05\\x5a\\xad\\x7b\\x6a\\x49\\x59\\xa7\\x37\\x89\\xed\\x32\\x36\\x77\\xcd\\x2d\\x50\\x2f\\x7a\\x76\\x7f\\x5b\\xc7\\x91\\xb7\\xd6\\xa9\\x57\\xbe\\x7a\\xb0\\x3d\\xf8\\x7e\\x38\\x6c\\x55\\xb6\\xbc\\x23\\x2f\\xaf\\x63\\x79\\x19\\xe5\\x7d\\xc5\\xd8\\x39\\x1c\\x85\\xfd\\x28\\x09\\x35\\x4f\\xdc\\x1a\\xf2\\x88\\xa4\\x70\\x29\\xa2\\x67\\xe2\\x44\\x21\\x7d\\xb9\\x0b\\xa2\\x94\\x7e\\x4a\\x21\\x8a\\x69\\x3a\\xa2\\xcb\\x88\\x69\\x8f\\x09\\x47\\x91\\x13\\xda\\x0c\\x9f\\xc9\\x5d\\x67\\x4e\\x4b\\x2b\\x29\\x29\\x4d\\xef\\xda\\xdf\\x97\\x4f\\xee\\x60\\xdf\\x62\\x3b\\x48\\x46\\x49\\xad\\x39\\x4a\\x1b\\xff\\x9e\\x42\\x1d\\xc3\\x39\\xfb\\x8e\\x2f\\x87\\xdf\\x9f\\x91\\x71\\x67\\xa6\\x61\\x3f\\x32\\x86\\x90\\xaa\\x12\\x69\\xa4\\xc0\\x19\\x4e\\xf1\\xa7\\xf4\\x5c\\xfc\\xa1\\x48\\x0b\\xad\\x05\\x11\\xcd\\x18\\xad\\x55\\xd4\\x3d\\x21\\x04\\x27\\xe3\\xb1\\x31\\x76\\xd3\\x04\\x08\\x1d\\x05\\x1c\\x31\\x7a\\x1b\\x5d\\x25\\xd3\\x3c\\x3a\\xc6\\xef\\x82\\x58\\x6d\\x46\\x5a\\x62\\xc1\\xaa\\xe7\\xae\\x5a\\xf9\\xd4\\xf6\\x6a\\xec\\x0f\\x1e\\xaa\\xef\\x2f\\xd1\\x07\\x86\\x76\\x55\\xee\\x05\\xd8\\x92\\xbd\\x7c\\xc7\\x91\\xa9\\x1b\\xff\\x78\\xeb\\xac\\xc2\\x35\\x4f\\x6e\\x61\\x96\\x23\\x06\\x35\\x93\\x74\\xfc\\x6b\\x5c\\x4b\\xab\\x19\\x5d\\x81\\xcc\\x68\\x60\\x90\\xc3\\xaa\\x46\\xa2\\xc4\\x68\\x88\\x02\\x54\\x3f\\xbe\\x92\\x11\\x5d\\xc8\\xee\\x3c\\xbb\\x2d\\x45\\x2f\\x2a\\x4e\\x9c\\xac\\x1e\\x69\\xe3\\x58\\x81\\x1a\\xa0\\x13\\x1b\\x73\\x29\\x4c\\xa2\\x7d\\x2a\\xa9\\xc9\\x40\\xd6\\xdf\\x33\\xe8\\x32\\x95\\x4c\\x73\\x3f\\x6f\\xce\\x4f\\x4f\\x84\\x04\\x4b\\x71\\x56\\x76\\xfb\\xb2\\xf2\\xa5\\xb7\\x0c\\xe5\\x65\\x2f\\xb8\\x6f\\x23\\xf9\\x12\\xb4\\xae\\x32\\x5b\\x02\\xc4\\xa7\\x38\\xf4\\xfa\\xa4\\x48\\xf5\\xb2\\x9b\\x5f\\x1a\\x9c\\x76\\xe3\\xde\\xe5\\x19\\xc7\\xec\\x33\\xfb\\x06\\x72\\xfc\\x0b\\xbb\\xaa\\xd5\\x4c\\x71\\xc5\\xe2\\x66\\xe7\\x9c\\x63\\xaf\\x0c\\x0c\\x3c\\x77\\xe3\\x12\\x15\\x71\\x31\\xaf\\xa8\\xaa\\x3a\\xe7\\x7b\\xab\\x56\\x4d\\xcb\\xb5\\xa4\\x48\\xfb\\xb0\\x86\\xa4\\xe3\\x3f\\x63\\x3f\\x32\\x8b\\xfb\\x30\\x5d\\x9d\\x08\\x58\\x0a\\xef\\x00\\xea\\xc6\\x2c\\xc3\\x22\\xe4\\xa4\\xf1\\x19\\x33\\x32\\x6b\\x93\\x92\\x24\\x9e\\x96\\xb1\\x1e\\x9b\\xcd\\x6e\\x92\\xac\\x9f\\x09\\x26\\xbd\\x38\\x1e\\x36\\x21\\xbf\\xd6\\xa9\\x84\\x8c\\x54\\xe0\\xcc\\x9e\\xdc\\x25\\x23\\xdb\\xc9\\xd9\\xf9\\x77\\xac\\x28\\x05\\x9d\\x36\\xc3\\x6f\\xc6\\xfe\\xd1\\xfb\\xd5\\x75\\xbd\\x2b\\xcb\\xb7\\x7d\\xb7\\xb6\\xfb\\xdb\\x5b\\x96\\xbc\\x79\\xe7\\xb0\\x92\\xb8\\xe0\\x0f\\x89\\x5d\\x87\\x7f\\xbb\\x1f\\xce\\x13\\x45\\xf3\\xda\\x4e\\xbf\\x82\\x9d\\x26\\xd2\\x95\\x3d\\x76\\x1e\\x9f\\xc0\\x7e\\x54\\x28\\x5a\\x1d\\x4e\\xd1\\xbe\\x68\\x40\\xc0\\x22\\x16\\xd0\\xb0\\xc0\\x33\\x2c\\xeb\\xa4\\x6e\\x1b\\x3c\\x4b\\x54\\xde\\xf2\\xb0\\x48\\x62\\x21\\x2a\\xb4\\x64\\x68\\xad\\x6a\\x7b\\x84\\xa8\\x06\\xf1\\x8c\\x10\\x9a\\x7b\\x85\\xe9\\xb2\\xcb\\x20\\x6c\\xd6\\x8a\\x13\\x02\\xf7\\x64\\xb9\\x19\\x3e\\x2e\\x29\\x31\\xd1\\xa8\\x8b\\x03\\x4b\\x9c\\xd6\\x98\\xa8\\x4c\\x8a\\xe7\\x19\\x8f\\x13\\x62\\x34\\xf6\\x54\\x85\\xa9\\x65\\xdb\\xec\\xf6\\x4d\\x0e\\xfb\\xa6\\xb6\\x39\\xdb\\x5a\\x4c\\x89\\xa9\\x76\\x35\\xf6\\x6f\\x21\\x63\\x7b\\x6b\\x77\\xcd\\x2f\\x35\\x54\\x2f\\x6d\\x85\\x6e\\x72\\x6f\\xeb\\xd2\\x6a\\x43\\xe9\\xbc\\x5d\\x75\\x13\\x17\\x4d\\xcf\\x9c\\x9e\\x9e\\x39\\x3d\\xb7\\xfe\\x71\\xe3\\xd4\\x23\\x3b\\x96\\x67\\x23\\x06\\x1d\\x19\\x3b\\x8f\\x7f\\xc3\\x9d\\x42\\x2e\\x54\\x88\\xbc\\x01\\x77\\x9e\\xcb\\xc9\\x02\\xd6\\xb3\\x14\\xbc\\xb7\\x01\\x01\\x66\\x30\\x30\\xc3\\x13\\x7c\\x7c\\xf2\\x2a\\xca\\x43\\x4d\\xd9\\x2e\\xab\\xda\\x41\\xb7\\x19\\xcf\\x0b\\xe3\\x2b\\xd9\\x2a\\xef\\x39\\x8f\\x67\\xa2\\x27\\x43\\xe1\\xf5\\x51\\xf7\\x8f\\xe4\\xec\\xc0\\xbf\\xd1\\xfb\\xd3\\x6a\\xb7\\x3d\\xbe\\x74\\xc9\\xa3\\x5b\\x6b\\x20\\xca\\x58\\x3c\\xcd\\xdb\\xd9\\x37\\xef\\xde\\x0d\\x55\\x85\\xf3\\xaf\\xe9\\x98\\x7e\\x55\\xaf\\xdb\\x9f\\x17\\x7c\\xbc\\x7f\\x4e\\x96\\xcb\\x55\\xc4\\xd4\\x46\\xc4\\xf3\\x73\\x97\\x3e\\xb2\\xb9\\xaa\\x6e\\xdb\\xc3\\x43\\x80\\x80\\x8c\\x79\\xba\\x2b\\x2c\\xdb\\x57\\xf5\\xab\\x7a\\x76\\xdf\\xd7\\xaf\\x99\\x75\\xc3\\xa0\\xb7\\x70\\xd1\\xf1\\xb9\\xe4\\xdb\\xc8\\x18\\x40\\x3d\\xd7\\x9a\\x40\\xdf\\x50\\x15\\xa8\\xa5\\x6b\\xa9\\x12\\x21\\x0e\\xb8\\x37\\x91\\x05\\x3d\\x1e\\x88\\x4d\\xe2\\x19\\x40\\x66\\x45\\x1c\\x2b\\x89\\x96\\x98\\x10\\xb2\\x92\\xa4\\x37\\xd1\\x91\\x65\\x30\\x21\\xaf\\xf4\\x84\\x2b\\xf9\\xe3\\x57\\x54\\x57\\x7c\\x26\\xf9\\x8a\\xcf\\xa4\\x5e\\xe1\\x99\\xcb\\xdd\\x4e\\x9d\\xd0\\x4f\\x59\\x0a\\x54\\xd6\\x74\\xca\\x57\\x09\\xcd\\x42\\x4a\\xf7\\x10\\xa8\\x89\\x2c\\xfd\\x6a\\x97\\x74\\x7e\\xad\\x52\\xeb\\x63\\xab\\x7d\\xb7\\x0d\\xa5\\x57\\x26\\x6b\\xb1\\x31\\xd6\\xec\\x4b\\x20\\xff\\x45\\xbe\\x24\\x1f\\x2b\\x8a\\x4c\\x31\\x46\\x56\\xab\\xaf\\x30\\xbb\\x67\\xb6\\x56\\xa5\\x1c\\x8b\\x8d\\xc3\\x0f\\x1f\\xdd\\x13\\x13\\xf3\\x21\\xc3\\x9a\\xd3\\x83\\x53\\x49\\x12\\xfc\\x93\\xb9\\xc3\\x9c\\xce\\x32\\x7f\\x8e\\x89\\x4e\\xad\\x5c\\xd8\\x44\\x16\\x04\\xca\\x11\\x62\\xc6\\xc6\\xc6\\xce\\xe3\\x31\\x8a\\x71\\x44\\xd7\\x42\\x0c\\x00\\x0f\\x0d\\x48\\x40\\x3c\\x12\\x78\\x49\\xdb\\x90\\xc5\\x6d\\x04\\xf0\\xbc\\x94\\x11\\x92\\x07\\x4d\\x56\\xb5\\x5d\\xa5\\xd0\\x5a\\xec\\x09\\x91\\x42\\xaa\\x13\\xcc\\xe3\\x4e\\x88\\xf1\\x70\\x9e\\xd9\\x63\\x02\\x71\\x8b\\xf2\\x7c\\x78\\x13\\x78\\xc2\\x56\\x00\\x1e\\xdb\\x68\\xb0\\xa6\\xb7\\xec\\x98\\x33\\x7d\\x57\\x46\\xc6\\x8e\\xe9\\xbd\\x3b\\x5a\\xd2\\xad\\xa9\\x4b\\x38\\x44\\x1e\\x67\\xad\\x46\\x92\\x94\\x66\\x65\\xf8\\x84\\x64\\x95\\xda\\x92\\x9c\\x00\\x96\\x84\\x64\\x8b\\x4a\\x95\\x9c\\xc0\\xb3\\x2b\\xe6\\x7e\\xbe\\x7d\\xee\\x5d\\x6b\\x2b\\xe7\\xf6\\xf6\\xce\\xad\\x5c\\x7b\\xd7\\xdc\\xed\\x9f\\xcf\\x7d\\x2b\\x38\\x3c\\x7c\\x46\\xfc\\x5f\\x56\\x5b\\x99\\x55\\xdc\\x03\\xef\\xbe\\x2b\\xee\\x00\\x6b\\x69\\x3b\\xc5\\x86\\x1f\\xfb\\x07\\xed\\xfb\\x63\\x42\\x73\\x9f\\x60\\x00\\x53\\xdc\\x2d\\xa3\\x9c\\x6d\\x4d\\x6b\\x3d\\x78\\x40\\x48\\xe8\\x46\\x82\\xa0\\x91\\xf2\\x3b\\x38\\x60\\x18\\x83\\x38\\x51\\xe6\\xcb\\xdd\\xc1\\x71\\xda\\x70\\x1a\\x88\\x41\\x14\\xf4\\xd1\\x0a\\x85\\xd2\\xa6\\xd0\\x99\\x13\\x22\\xf8\\x14\\xf1\\xe0\\x99\\xd0\\x9a\\xcf\\x2e\\xd7\\x69\\xcb\\x58\\x6f\\x1e\\x13\\xae\\x27\\xc6\\xb8\\x74\\xed\\xf2\\x27\\x76\\xd4\\x65\\x2f\\x19\\xd9\\x09\\x81\\x7a\\x4b\\xc4\\x8a\\xe5\\x2a\\x7d\\x0c\\x39\\x43\\xde\\xc3\\x19\\xf8\\x1d\\xb2\\x87\\x61\\xbd\\xcb\\xee\\x5b\\xd1\\x76\\x6c\\xfd\\x94\\xdf\\xdb\\x8b\\x6b\\x8d\\xcb\\xd6\\x31\\x4c\\xf0\\x08\\x7e\\x47\\xf2\\x1b\\xf7\\x8e\\x9d\\xc7\\xbb\\xb9\\x37\\x90\\x13\\x55\\x04\\xca\\x44\\x43\\x8c\\x65\\xf0\\x70\\x04\\x08\\x1c\\xcf\\x09\\xfc\\x30\\xc2\\x88\\x13\\xf0\\x78\\x0b\\x98\\xd4\\x30\\x54\\xac\\x01\\xc9\\x40\\x31\\x56\\x85\\xd2\\xa2\\xca\\xb0\\x44\\xf2\\xc9\\xe1\\x36\\x3f\\x8a\\x49\\x6d\\x7e\\x24\\x30\\x5c\\x19\\xae\\xc1\\x87\\x77\\x09\\x6d\\xfb\\x9e\\x5f\\xbd\\xe5\\xf5\\xfd\\x53\\x1a\\xf7\\xbd\\xbc\\x7a\\xeb\\x2b\\xfb\\x9a\\xa3\\xc8\\x17\\x9c\\xa9\\xbc\\xb7\\x72\\xc5\\x56\\x78\\x9f\\x38\\x4c\\x15\\x73\\x4a\\x87\\xb7\\x46\\xc0\\x9b\\x4b\\x47\\x36\\x57\\x4d\\xff\\xe5\\x27\\x07\\x20\\xf9\\x9a\\xcf\\x6e\\x99\\x51\\xb5\\xf5\\xc9\\x55\\x95\\x03\\x15\\x69\\x2f\\xbc\\x98\\xfc\\x57\\xe3\\xfc\\xeb\\x67\\x3b\\xd7\\xee\\xa5\\x7a\\x8b\\x4d\\xae\\x1b\\xd3\\x4b\\xd8\\xa7\\x08\\x21\\x01\\x23\\x0a\\x10\\xce\\x75\\x47\\x00\\xc7\\x69\\x68\\xa7\\x5e\\xe8\\x11\\x77\\x88\\x56\\x14\\xf7\\x76\\x9b\\x21\\x05\\xe9\\x91\\xde\\x64\\x56\\x38\\x4c\\x91\\x7c\\xd2\\xe4\\x62\\x22\\xb3\\x22\\x81\\x31\\x9b\\x3d\\x34\\x4d\\x6a\\x42\\x59\\x11\\x1b\\x1d\\xdf\\x75\\x70\\x9e\\xc7\\x33\\xef\\x60\\xd7\\x37\\xfb\\x1e\\x7e\\x3c\\x49\\x55\\xee\\x65\\x66\\x69\\xad\\xbe\\x74\\x85\\xd2\\x56\\x64\\xe5\\x46\\x08\\xae\\xdb\\xfa\\xf0\\xe0\\x82\\x87\\xb7\\xd6\\xe1\\x77\\x82\\x6b\\xc9\\x1f\\xc9\\x17\\x9f\\x3d\\x72\\x92\\x5d\\x16\\x4c\\x27\\x09\\x99\\x35\\x3d\\x79\\x39\\x5d\\x35\\x19\\x88\\x0a\\x3b\\xda\\xa3\\x5b\\x83\\xcc\\x34\\xba\\xcc\\xa0\\x08\\xcc\\x44\\x0c\\x20\\x84\\xb0\\x80\\x70\\x3f\\x0f\\x00\\x9a\\x46\\x24\\x08\\xec\\x2c\\x0e\\x58\\x56\\xcb\\x36\\xe9\\xd2\\x15\\x0a\\x85\\xc3\\xa4\\x48\\x88\\xe4\\x53\\x9d\\xe0\\x56\\xb8\\x27\\x93\\x4a\\x53\\x45\\xc7\\x4b\\x9f\\x66\\x3d\\xf4\\x8d\\x30\\xf3\\xd0\\x7c\\xaf\\x77\\xfe\\xa1\\x99\\xff\\x7e\\x88\\x8c\\x01\\xc0\\x2d\\xf1\\x76\\x9f\\x45\\xa1\\xb4\\xfb\\xed\\x6c\\x3d\\xb3\\x20\\xf8\\x43\\xed\\x96\\x13\\x83\\x83\\x0f\\x6d\\xa9\\x65\\x06\\x83\\xc7\\xb9\\x91\\xa0\\x8e\\xa4\\x38\\xaa\\xbb\\x72\\xb3\\x3b\\xab\\x28\\x5e\\x94\\x1d\\x21\\xda\\xab\\x46\\x89\\xec\\x01\\x4b\\x08\\xb3\\x83\\x03\\xd9\\x30\\xd0\\x50\\xb3\\x41\\x4b\\x73\\xbd\\x95\\x6a\\x45\\x82\\x20\\xce\\xb8\\x49\\x61\\x60\\x25\\x7f\\x81\\x5d\\x5e\\x8f\\x19\\x24\\xb0\\xe4\\xd1\\x6d\\xb5\\xe4\\xcc\\xbc\\x41\\x72\\x86\\xfc\\x09\\x33\\xf8\\x1d\\x72\\x07\\x78\\x16\\xde\\xba\\x84\\x94\\xc0\\xa9\\xa5\\xdd\\x4c\\x70\\x75\\x68\\xed\\x2d\\x25\\xc7\\x68\\x3c\\x2a\\x5a\\xea\\x67\\xc4\\x62\\x9a\\x75\\xa1\\xa1\\xde\\xa6\\x99\\x32\\x0b\\xe4\\x48\\x08\\xaf\\xa7\\x99\\xe5\\xa1\\xff\\x5f\\x0a\\x3a\\xb8\\x19\\xf4\\x64\\x84\\x7c\\x4e\\x7e\\xc9\\x8d\\x5c\\xc8\\xc7\\xef\\xfe\\xd0\\x46\\x8e\\xc1\\x02\\xba\\x26\\x76\\x21\\x84\\x67\\xcb\\xf5\\x65\\x39\\x81\\x2c\\x04\\x3c\\x70\\x18\\x38\\xda\\x51\\xb2\\x1b\\xb1\\xac\\x46\\x42\\xd9\\x46\\xa1\\xd1\\xa4\\x2a\\x52\\xd2\\x15\\x0e\\x53\\x82\\xc0\\x53\\x3d\\x2f\\xcc\\xe3\\xc9\\xfc\\xc5\\xf9\\xc1\\xc5\\x77\\x6d\\x7d\\xeb\\x9a\\x86\\x86\\x6b\\xde\\xda\\x4a\\x2a\\xd9\\x47\\x82\\x8b\\xef\\xaa\\xec\\xaf\\x30\\x1a\\x2b\\xfa\\x2b\\xf1\\x3b\\xe4\\xed\\x8a\\xb5\\xf7\\x0d\\x2e\\x38\\xb1\\xb1\\x9a\\x1b\\x09\\x62\\x92\\x6d\\xab\\xec\\xca\\xcb\\x99\\x5a\\x6a\\x16\\xe9\\x71\\x91\\xe3\\xf8\\x2a\\x4a\\x4f\\x12\\x72\\x06\\x1c\\x0c\\x20\\x16\\xb5\\x23\\x41\\xa0\\x12\\x50\\xd3\\xc8\\x73\\x0c\\xcb\\xd2\\x98\\x8a\\x16\\x9a\\x14\\x1a\\x85\\x86\\xe2\\x03\\xf0\\x29\\x52\\x9f\\x11\\x33\\xeb\\x2e\\x63\\x7d\\x4a\\x93\\xc2\\x0d\\x71\\xac\\x60\\x52\\x98\\x71\\xef\\x7f\\x07\\x3f\\xf8\\x2a\\xcb\\x9b\\x5d\\x9d\\x9d\\xc2\\x3b\\x98\\xdf\\x2c\\x0e\\x3e\\xcd\\x29\\x0d\\x0e\\x1d\\x14\\x3f\\x44\\x8e\\xc3\\x20\\x39\\xce\\xd4\\xeb\\x66\\x1c\\xfe\\xf0\\x16\\x66\\xda\\x85\\x7c\\x66\\xe3\\x9a\\x17\\x6f\\xda\\x94\\xc7\\x9e\\x15\\xf9\\x3d\\xf6\\x6f\\x84\\xf0\\x6b\\xb4\\x87\\x46\\x5e\\x20\\x5b\\x19\\xc1\\x20\\x0e\\x1a\\x04\\xa0\\xd8\\x79\\x1c\\xea\\x8f\\xe0\\x19\\x91\\x9a\\x48\\x51\\xf3\\xd4\\x42\\x93\\x5a\\x45\\x33\\x4f\\x69\\x45\\xa5\\xb8\\xfa\\xc4\\x05\\x67\\x66\\x4d\\x4a\\xd6\\xa4\\xa4\\x0b\\x51\\x69\\x62\\x95\\x26\\x56\\x51\\xf0\\x5d\\xe1\\x21\\xf2\\xfe\\x77\\x9f\\x80\\x6d\\xaf\\xeb\\xbb\\xcc\\x6d\\x60\\xfb\\xf0\\xbf\\xc9\\x1f\\x99\\xc6\\xe0\\x13\\xe2\\x0f\\xcb\\x33\\x0f\\x04\\x6f\\x64\\x86\\xe8\\xcf\\x8c\\xd1\\x1f\\x10\\xa0\\x96\\xb1\\xf3\\xf8\\x08\\xed\\x05\\x5b\\x11\\x28\\xe3\\xa4\\x7e\\x69\\x3c\\x87\\x39\\x1e\\x0f\\x23\\x60\\x19\\x96\\x6a\\x08\\x88\\x05\\xa9\\x7d\\x1a\\x6d\\x6d\\x97\\x1a\\xd6\\x14\\x0c\\xa8\\xc9\\xa2\\x72\\x98\\x6c\\x16\\x55\\x16\\xe5\\x8f\\xa8\\xa3\\x4d\\x28\\xbf\\x0f\\xe7\\xc6\\x15\\xd8\\xe8\\x1e\\x1e\\x47\\x7a\\x08\\x83\\xfc\\xe3\\xad\\x46\\xff\\x34\\xcf\\x86\\x6d\\x1d\\x87\\x7f\\xbd\\x61\\xee\\xcb\\x37\\xf6\\x82\\xde\\x5a\\x3d\\xa7\\xa8\\x72\\xb0\\xd6\\xb2\\x6b\\xdb\\xa9\\x53\\xe5\\xdd\\x45\\xc9\\x86\\xb2\\xde\\x8a\\xfc\\x19\\xe5\\x56\\x72\\xa6\\xe3\\xe0\\x73\\x0b\\x37\\xbc\\x71\\x4d\\x13\\xb6\\xe6\\xcf\\x6a\\xaf\\xd4\\x65\\x9e\\xd8\\x36\\x78\\xdb\\xd2\\xa2\\xbc\\xa1\\xdb\\x86\\x33\\xeb\\xbd\\x46\\x63\\x61\\x63\\xd6\\x9a\\x05\\x7f\\x4e\\xf5\\x36\\x66\\xdb\\xeb\\x0a\\x8c\\xfa\\xdc\\xea\\xcc\\xbe\\x63\\x8b\\x8a\\x3c\\x0b\\x6f\\x92\\x63\\x69\\x08\\x97\\x87\\x7a\\x10\\x45\\x62\\x26\\x04\\x21\\xa8\\xa1\\x10\\x82\\x5a\\x19\\x54\\x8f\\x97\\xdb\\x9e\\xd0\\xff\\xb0\\x56\\xd0\\x93\\xbf\\x91\\x01\\x72\\x06\\x92\\xb8\\x91\\x1f\\xda\\xd8\\xdb\\x47\\x7b\\xb9\\x91\\xd1\\x39\\x28\\xb4\\x37\\x5b\\xc7\\xf7\\x26\\xe0\\x6e\\x51\\x3b\\xd4\\x8c\\xd7\\x23\\x6a\\xa9\\x40\\x56\\x22\\xa5\\xc2\\xaa\\x50\\xf0\\xe2\\x17\\x8b\\x1b\\x85\\xe5\\x19\\x9e\\x17\\x99\\x21\\xae\\x21\\xdc\\x4a\\xfe\\x46\\x7e\\xc7\\xb1\\x9e\\x79\\xbf\\x98\\x57\\xeb\\xc8\\x2b\\x36\\xc5\\x30\\xbc\\xf8\\x22\\xfc\\x4e\\xf0\\xec\\x4b\\xe4\\xdf\\x77\\x37\\x7c\\xc6\\xe5\\x2d\\x7e\\x64\\x37\\x23\\xce\\x13\\x33\\x76\\x0e\\xff\\x41\\x92\\xab\\x01\\x8b\\x2e\\x16\\x58\\x06\\xc5\\x84\\x41\\x0a\\x35\\x61\\x90\\x42\\x03\\x34\\x69\\xec\\xd6\\x44\\x3a\\x10\\xa5\\x0c\\x52\\x18\\x4e\\x4f\\xf3\\xf9\\xc0\\xc4\\xa8\\x7a\\x21\\x17\\xf2\\x83\\x3f\\xe8\\x6b\\xfa\\x77\\x76\\xd5\\x2d\\x4d\\x4f\\x8c\\xb5\\x3a\\x32\\x95\\xb9\\xf5\\x05\\xe6\\xe8\\x14\\x82\\x21\\x97\\x7d\\x9e\\xfc\\x93\\x85\\x0b\\xf3\\x8a\\x97\\x4c\\xcd\\xd5\\x46\\xfe\\x19\\x47\\x46\\x70\\x2a\\x8b\\x3b\\xad\\x0c\\xeb\\x65\\x19\\x71\\x3b\\xfe\\x72\\x5c\\x46\\x00\\x9e\\x2a\\xc9\\x08\\x51\\x9e\\x73\\x33\\xc5\\xb3\\x93\\xbb\\x54\\x46\\xb8\\x59\\x59\\x46\\x5c\\x0b\\xfa\\x17\\x54\\x64\\x74\\xf4\\x66\\x49\\x46\\x5c\\xc8\\x0b\\xbe\\x0c\\xbd\\x72\\x8d\\x2f\\xc2\\xbd\\x34\\xc6\\x97\\x13\\xc8\\xd2\\xd3\\x95\\x47\\x71\\xdf\\x59\\x51\\xee\\xc1\\x00\\x87\\x19\\x86\\xd1\\x34\\xa2\\x10\\x5f\\x93\\x51\\xb2\\x47\\x6d\\x0d\\xf3\\x35\\x6c\\x02\\x86\\x31\\x3d\\x15\\xb8\\x97\\xfc\\x4d\\x5f\\xe8\\x73\\x2b\\x97\\x3c\\xb2\\xa9\\x0a\\x92\\xb4\\xb9\\xf5\\x79\\xaa\\x7c\\x5f\\xa1\\x9e\\x36\\x0c\\x74\\x0a\\xd1\\x02\\xf6\\xad\\x7e\\x62\\x0b\\xbc\\x4e\\x8a\\xa7\\xf4\\x15\\x69\\x59\\x21\\x4a\\x60\\xee\\x44\\x80\\xda\\x11\\xc2\\x87\\xe9\\xf8\\xac\\x81\\x74\\x9e\\x63\\x59\\xf1\\x0c\\xa0\\xea\\xff\\x4c\\x84\\xb1\\x96\\x6a\\xff\\xd1\\x28\\x9a\\x0e\\x51\\x90\\x4e\\x2b\\x71\\x80\\x74\\x98\\x30\\x70\\x00\\x22\\xf7\\x83\\xe2\\xc2\\x8b\\xf2\\xf0\\xa8\\x18\\xe4\\x46\\xc4\\xf1\\xb5\\x93\\x3b\\x38\\x15\\xad\\xa7\\x76\\x05\\x32\\x11\\x87\\xb8\\xa9\\x11\\x82\\xf4\\xe5\\x98\\x61\\x10\\xe2\\x67\\x22\\x9e\\xd7\\x52\\x30\\xfb\\x78\\x14\\x2f\\x57\\x0c\\xd1\\x33\\x3c\\xfc\\xfd\\x94\\x89\\xe1\\x77\\xec\\x50\\x91\\xb1\\xd1\\xa9\\xe3\\xef\\xb9\\x90\\x13\\x7c\\x0d\\xe6\\x48\\xb9\\x01\\x6e\\x84\\xf0\\xbe\\xcb\\xc9\\x5b\\xd9\\xf3\\xf9\\x63\\xf2\\x56\\x39\\x49\\xde\\x9a\\x27\\xc8\\x5b\\x37\\xa3\\xea\\x5e\\xfb\\xe4\\xe6\\x40\\x60\\xf3\\x93\\x6b\\xc9\\xc1\\x0b\\x8c\\xaa\\xbb\\xb0\\x35\\x4f\\xab\\xcd\\x6b\\x2d\\xe4\\x46\\x82\\x4f\\x97\\xaf\\xba\\xad\\xbf\\xef\\xf6\\xd5\\x01\\xfc\\xa7\\xe0\\x08\\xe9\\x36\\xf9\\x5b\\xb2\\xb3\\x9a\\x0a\\xd3\\xa4\\xfa\\xb8\\x06\\x84\\xf0\\x76\\x8a\\x17\\x91\\x88\\x8c\\x74\\xfc\\x48\\x00\\x9e\\x43\\xfc\\x80\\x78\\x82\\x51\\x8d\\x0b\\x66\\xc9\\x0a\\x81\\x52\\xa9\\x34\\x2a\\x0d\\xf4\\x9c\\x4d\\x8b\\xe0\\xf5\\x4e\\x98\\x24\\xfd\\x2f\\x3a\\x61\\x07\\xca\\x7b\\x0e\\xf4\\xe6\\x79\\x16\\x1c\\x1b\\x20\\x6f\\x41\\x12\\x9b\\x2a\\xee\\xd4\\xd1\\xbf\\x66\\x1b\\x9c\\xc9\\x31\\x31\\xc9\\x99\\x46\\xb6\\xaf\\x74\\xf8\\x97\\x94\\x2a\\x71\\xd2\\xb9\\x91\\xd1\\x3f\\x91\\x76\\x73\\x69\\xbb\\x4c\\xd9\\xf8\\xb9\\x14\\x87\\x92\\x69\\x06\\x00\\xe2\\x00\\xb3\\x08\\x8b\\xca\\x0a\\xdd\\xc8\\x74\\x47\\x69\\xa1\\x29\\x3e\\x3e\\x3e\\x39\\x5e\\x9f\\xae\\x70\\xa4\\xd1\\xf5\\x36\\x91\\x22\\xc5\\x04\\x6a\\x7e\\x39\\xe1\\x34\\x02\\x7d\\xf8\\x2c\\x62\\x7f\\x71\\xa5\\x93\\x48\\xf2\\x15\\x9f\\xc7\\x65\\xdc\\x1b\\x28\\x87\\xea\\x7b\\x72\\x5d\\x6c\\x04\\x08\\x80\\x40\\x40\\x34\\x04\\x24\\x30\\x20\\xea\\x7b\\x14\\x19\\x30\\x55\\xdc\\x01\\xb4\\xab\\xa8\\x81\\xae\\x95\\x1c\\x94\\x93\\x61\\x51\\x59\\x15\\x6a\\x49\\xdf\\xe3\\xc3\\x0a\\xb8\\x27\\xec\\x7d\\xd7\\x4e\\xe8\\xa7\\x22\\xa7\\x8a\\x41\\x09\\x9f\\x56\\xde\\xe9\\x2e\\x99\\x5b\\x6d\\x25\\x3b\\x60\\x9b\\xb9\\x62\\x76\\x51\\x69\\x6f\\x59\\x0a\\x47\\xce\\x4c\\xd9\\xf7\\xca\\xfa\\x35\\xaf\\x1d\\x68\\x69\\xba\\xf6\\xad\\x2d\\xcb\\x5f\\xb8\\xba\\x81\\x85\\xd3\\x95\\x0b\\xea\\x6d\\x8e\\xee\\x03\\xf3\\xed\\x7f\\xb5\\xf7\\x1d\\xe8\\xc9\\xb2\\x4d\\x59\\x54\\xb5\\xf0\\xd9\\x03\\xed\\x1d\\xc7\\x3f\\xbe\\x86\\xbc\\x77\\xe0\\xa3\\x1b\\xa7\\x56\\xef\\x7c\\x6e\\x9d\\xe4\\x3f\\x9c\\x36\\x76\\x0e\\x2f\\xa5\\xf1\\x06\\x27\\xea\\x95\\x72\\x7f\\x8d\\x08\\x23\\x10\\x30\\xf4\\xd3\\x88\\xb0\\xa8\\x43\\x68\\x24\\xfc\\x17\\x71\\x4b\\x19\\x10\\xed\\xa1\\x1a\\xba\\x83\\x5e\\x93\\xf1\\xfa\\xe9\\x19\\xa3\\x0d\\x43\\xc5\\x18\\x90\\xa8\\x86\\x67\\xd8\\xcd\\xa2\\xae\\x93\\x4e\\xcf\\x9a\\x04\\xc6\\x9c\\xce\\x28\\x3c\\xe2\\x31\\xe8\\x56\\xb8\\x3d\\x09\\x89\\xee\\xfc\\x44\\x45\\x38\\xf7\\x24\\x6c\\x85\\xe3\\xa5\\x2f\\x9c\\xbc\\xef\\x64\\xf7\\xf7\\xdf\\x77\\x9f\\xbc\\xef\\xe4\\x0b\\x64\\x2c\\x2a\\x29\\x33\\x2d\\xd9\\xaa\\x8d\\x8a\\xd2\\x5a\\x93\\xd3\\x32\\x93\\xa2\\xe0\\x02\\xf9\\x9e\\xfc\\x0b\\x22\\x41\\xe8\\x0f\\xde\\xc5\\x8d\\x04\\xf7\\x6c\\x07\\x01\\x22\\xc9\\xbf\\xc8\\xf7\\xe9\\x8d\\x43\\x81\\x94\\x94\\xc0\\x50\\x23\\x61\\x9b\\x16\\x88\\xbf\\x2d\\x68\\x42\\xcc\\xd8\\x07\\x08\\x61\\x25\\xdd\\xc7\\x3a\\xe4\\x0e\\xe4\\x72\\x97\\xed\\x51\\xa6\\x69\\xe4\\xe5\\x53\\x1b\\x21\\xad\\x5a\\x95\\x28\\xee\\x69\\x87\\x28\\x2f\\xb4\\x4e\\x71\\x4f\\x89\\x06\\x93\\x8c\\x89\\x02\\x2a\\x8d\\xdb\\xad\\x30\\xa7\\xf3\\xcc\\xf7\\x9f\\x92\\xaf\\xc9\\xef\\xa0\\x78\\xf5\\x86\\x86\\x6b\\xde\\xd8\\x04\\x7f\\x0c\\xba\\xb6\\x6e\\x7b\\xfe\\xf9\\x9d\\x9b\\x98\\xd2\\xe0\\x6b\\xcc\\x0d\\x45\\x4f\\xed\\x5c\\x78\\xdb\\x12\\xdf\\x0f\\x6d\\xec\\x3f\\x57\\x2e\\x85\\xa7\\x57\\xca\\x3d\\x7e\\xce\\xe1\\x85\\xbc\\x1a\\x65\\xa2\\x00\\x2a\\x0c\\x78\\x1c\\xa1\\x8c\\x38\\x66\\x25\\x07\\x48\\xea\\xe0\\x1b\\xee\\x3b\\x67\\x80\\xa6\\x2c\\x27\\x20\\x9f\\xc7\\x19\\xc8\\x0a\\x18\\x52\\x63\\xa2\\x50\\x26\\x64\\x0a\\xfc\\x84\\x84\\x61\\x71\\x69\\x94\\xb2\\xde\\x44\\xaf\\xd7\\x17\\x4a\\x17\\x8f\\x63\\x05\\xaf\\x57\\x3b\\x29\\x97\\x47\\x5c\\x56\\xcc\\x9d\\x4b\\xef\\x5f\\x5d\\x52\\xb5\\xe3\\x85\\x0d\\x1b\\x5f\\xd8\\x59\\x45\\x13\\x83\\xbd\\x2d\\x6e\\xdd\\xa7\\xce\\xd9\\xd7\\x0d\\x96\\xce\\x6f\\xf1\\xc6\\x55\\xdf\\xe1\\x2a\\xeb\\xf4\\xea\\x74\\xde\\xae\\xf2\\xb2\\x4e\\x6f\\x52\\x92\\xb7\\x8b\\x25\\xcd\\x57\\x3d\\xbd\\x44\\x3d\\xfc\\xe2\\xfe\\x96\\x69\\x47\\x7e\\xb5\\x5e\\xcd\\xd8\\x5e\\x83\\xf4\\x37\\xd7\\xea\\xa2\\x35\\x86\\x4c\\x43\\xc7\\xea\\x76\\xaf\\x2a\\x36\\xa7\\x69\\x49\\x43\\x55\\xed\\xa7\\xae\\xe6\\xf9\\x85\\xea\\xd2\\x25\\x6d\\xd9\\xd9\\x6d\\x4b\\x4a\\xd5\\x85\\xf3\\x9b\\x5d\\x54\\x86\\xec\\x47\\x08\\xd7\\x63\\xff\\x4f\\xf6\\x76\\xd5\\x8d\\xf7\\x76\\xd5\\x5e\\xbe\\xb7\\x2b\\x1f\\xee\\x2f\\xaa\\x1a\\xef\\xed\\xaa\\x96\\x93\\x27\\xed\\x6e\\x09\\x2b\\xc9\\xbc\\x1f\\x5e\\x59\\x78\\xff\\xba\\xf2\\xb9\\x73\\xca\\x66\\x95\\x1a\\x8a\\x87\\xef\\x5c\\xf8\\xcd\\x37\\xd3\\x9a\\x1b\\x3a\\xbf\\x79\\x76\\x7a\\x4b\\x77\\xf7\\x09\\xec\\xb7\\x36\\xae\\x6c\\x6a\\x5c\\x97\\x16\\x93\\x1b\\x68\\x71\\x36\\xaf\\x6e\\xb6\\xc3\\x6b\\x7f\\xf3\\x17\\x16\\x04\\x5e\\x60\\x0a\\xf2\\x4b\\xbd\\x08\\xd0\\x21\\x84\\x70\\x3e\\xf6\\x4f\\xce\\xed\\xd2\\x35\\xca\\x4a\\xa5\\x22\\x81\\xe5\\xc3\\xb9\\x5d\\xf9\\xc1\\x95\\xe4\\x1c\\x7b\\x27\\xdb\\x35\\x7a\\x1f\\xf6\\x8b\\xf3\\x6a\\x22\\xcf\\xe3\\x4f\\xb0\\x1f\\x25\\x20\\xad\\xb8\\xc6\\x30\\x30\\xc0\\xb4\\x87\\x2a\\x93\\x74\\x8d\\x7c\\x04\\xc7\\xca\\x09\\x45\\x5a\\x56\\x5c\\x61\\x1a\\xb5\\x8a\\x82\\x31\\x28\\x14\\x0a\\x8d\\x68\\x41\\xf9\\x64\\x05\\x95\\x1e\\x18\\x26\\x16\\x78\\x5e\\xd4\\x53\\xaf\\x2f\\x2a\\x35\\x08\\x0c\\xcf\\x26\\x1e\\x57\\x11\\x12\\x5c\\x45\\xbe\\x57\\x33\\xe6\\x08\\xb3\\x0d\\x4a\\xcf\\x7e\\x12\\xdb\\xbd\\xfb\\x9e\\x59\\xb0\\x6c\\xf4\\xee\\xe0\\x47\\x50\\x4d\\x9e\\x67\\x2c\\x70\\xfe\\xd8\\xbf\\x67\\x33\\x2b\\x11\\xa0\\x74\\x84\\xf0\\x5d\\xd8\\xff\\x63\\x3a\\xaa\\xee\\x7f\\xa9\\xa3\\xc6\\x7a\\xbe\\x29\\xd8\\x42\\xce\\x7f\\xfa\\x01\\xe8\\x36\\x67\\x7c\\xe3\\xdc\\x0c\\x49\\x7f\\xfa\\x2b\\x39\\x03\\x37\\x92\\x21\\xf1\\x87\\x29\\x87\\x0b\\xd2\\x6f\\x70\\x23\\x89\\x0e\\x3e\\x87\\x00\\xad\\x1c\\x3b\\x8f\\xe7\\xe0\\x66\\x54\\x28\\xca\\x48\\xf6\\x67\\xe9\\xa8\\xc6\\xc9\\x3a\\xaa\\x4d\\xd4\\x51\\x33\\x25\\x1d\\x95\\xff\\x31\\x15\\xd5\\x7b\\xa9\\x86\\xda\\x38\\x7f\\xe6\\xe0\\x92\\xe6\\x7d\\xcf\\x2d\\xef\\x39\\x79\\xcd\\x0c\\x50\\x1b\\xfd\\x33\\xbc\\xbe\\x0e\\x5f\\xf2\\xca\\x45\\xef\\xbc\\xb3\\xa0\\x5f\\x93\\xd7\\xec\\x75\\x35\\x17\\xa5\\x91\\x73\\x8d\\x3b\\x1e\\x9e\\xbb\\xec\\xc9\\x1d\\x75\\x6c\\x62\\xfd\\x06\\x4b\\xda\\xb6\\x59\\xcd\\x1b\\xa6\\x65\\x39\\x3a\\xb6\\x77\\xeb\\x73\\x2c\\x1a\\xad\\x2d\\x57\\x3f\\xa5\\xfc\\x99\\x2a\\x8f\\xd6\\x65\\xd6\\x24\\x18\\xb3\\x52\\x9a\\x37\\x4d\\x77\\x65\\xb4\\xae\\x95\\xf3\\xc4\\x4a\\x68\\x2d\\xef\\x64\\xbd\\x54\\xf7\\x23\\x7a\\xa9\\x0d\\x34\\xe4\\x2c\\x59\\x48\\xce\\x82\\x06\\xfb\\x2f\\xbc\\xc1\\x3c\\x1a\\x6c\\xc1\\xfe\\x60\\x0b\\x3d\\x4f\\xf6\\x20\\x84\\xdf\\xa1\\x75\\xa3\\xf6\\x80\\x25\\x0a\\xa4\\xa2\\x4b\\xa9\\x0b\\x9b\\x78\\xd8\\xea\\x1a\\x39\\xe9\\x6b\\x13\\xc3\\x3a\\x9a\\xd4\\x3d\\x51\\xe1\\x96\\xea\\x47\\xcb\\xee\\x14\\xbf\\xf6\\x3a\\x30\\xc3\\x1c\\xb2\\x0a\\x1e\\x22\\xd7\\xc1\\x51\\xb2\\x18\\xfb\\xc9\\x5c\\xb8\\x25\\xf8\\xaf\\xe0\\x6f\\xe8\\x3b\\xc4\\x35\\x51\\x8c\\xfd\\x17\\xe9\\xbe\\xba\\xcb\\xe8\\xbe\\xa6\\x89\\xba\\xaf\\x64\\x27\\x53\\x68\\x3b\\xbb\\x02\\x17\\x93\\x2f\\xc9\\x7f\\x39\\x07\\xee\\x5c\\x9f\\xc7\\x98\\x3c\\x15\\xe6\\x18\\x10\\x87\\xc2\\x76\\x9d\\xbb\\xe9\\x8b\\x9b\\x5b\\x3e\\xcf\\x9c\\x73\\x74\\x31\\xfc\\x5a\\x7c\\xd7\\x0a\\x84\\xf0\\xf4\\x10\\xae\\x78\\x84\\x8c\\x2b\\x4e\\xf9\\xc3\\x32\\x8c\\xcc\\xa0\\x44\\x85\\x82\\xe3\\x69\\xdf\\x3e\\x85\\x59\\xc1\\x9a\\x59\\xd1\\x14\\x67\\xfa\\x8f\\xc1\\xac\\xef\\x6e\\x7f\\xee\\xe6\\xef\\x60\\x26\\x34\\x32\\x7f\\xbf\\xf0\\x06\\xd3\\x13\\xbc\\x9b\\x69\\x0a\\x3e\\x2e\\xe1\\x95\\x6f\\x90\\xc7\\x70\\x49\\xbf\\x5a\\x5d\\xa3\\x3c\\x82\\x71\\x2d\\x76\\x52\\xbf\\x5a\\x91\\xee\\x25\\xb4\\x5f\\xed\\x11\\xd0\\xc2\\x5d\\x64\\x16\\xf6\\x93\\x06\\x78\\x12\\x4d\\x98\\xcb\\x49\\x39\\x7f\\x13\\xbf\\x8f\\x4e\\x64\\x38\\xe7\\xaf\\x84\\x7c\\x49\\x16\\x93\\x2f\\xd9\\xd7\\x42\\x3b\\x5f\\xfc\\x8e\\xd9\\x08\\xe1\\x47\\x43\\xdf\\x11\\xee\\xcd\\x38\\x2e\\x38\\x26\\x2c\\x06\\xd1\\xba\\x7f\\x94\\xf4\\x92\\x2f\\xc9\\x00\\x9e\\xce\\xf6\\x8c\\xde\\xcd\\xf6\\x7c\\x4c\\x65\\xa5\\x8f\\xf4\\xe1\\xa3\\x3c\\x92\\xf1\\x08\\xd2\\x02\\xa9\\xd9\\xae\\x74\\x93\\x46\\x19\\xc1\\x45\\x80\\x94\\xb9\\x46\\x8d\\x5b\\x3d\\x34\\xa5\\x6a\\x18\\x5e\\x43\\xb3\\x66\\x7c\\x0a\\xea\\x39\\x98\\xe0\\x65\\x17\\x8f\\x52\\xbb\\xa2\\x8c\\xa5\\x5b\\x44\\xab\\x88\\x63\\xd5\\x3e\\xdf\\xe2\\x9b\\xe6\\x41\\xd2\\xfc\\x9b\\x17\\x17\\x16\\x2e\\xfe\\xe5\\x3c\\x72\\x66\\xde\\x4d\\x8b\\x7d\\xec\\x8c\\x44\\x7b\\xb1\\xc3\\x51\\x6c\\x4f\\x0c\\x3e\\xa6\\xb0\\xfa\\x1d\\x8e\\x22\\x6b\\x22\\x63\\x9f\\xf7\\xe8\\xb5\\xfd\\x6a\\x78\\x99\\x04\\x54\\xfd\\xd7\\x3e\\x3a\\x5f\\x3d\\xff\\xd1\\x6b\\xfb\\x55\\x64\\x08\\x8e\\xab\\xfb\\x0f\\x9c\\x9c\\xaf\\xce\\xed\\x6e\\x29\\x55\\x05\\x8f\\x29\\xcb\\x5a\\x7a\\xf2\\x72\\x67\\xb6\\x94\\xaa\\x98\\xf9\\xaa\\xd2\\xe6\\xee\\x5c\\xca\\x43\\xf2\\x12\\x7e\\x9e\\xce\\xcb\\x44\\xfb\\x42\\xf7\\x33\\xec\\x8b\\x0d\\xa0\\x85\\x75\\xa0\\xbd\\x45\\x54\\x8c\\xff\\x1f\\xf6\\x8b\\xec\\x18\\xbd\\x2b\\xf8\\x29\\x54\\x50\\xbe\\x6e\\xa6\\x7d\\x20\\xe4\\xfa\\x1e\\x35\\xd0\\xc5\\x33\\xc1\\xbe\\x90\\xf6\\x86\\x64\\x5e\\x28\\xad\\x6a\\x73\\x82\\xb8\\xa0\\x4c\\xe1\\xf6\\x14\\x13\\x4b\\x8d\\x70\\x3f\\xf9\\xb2\\x60\\xa9\\x7b\\xcd\\xf3\\xbb\\x6a\\x41\\x93\\x5c\\x38\\xa3\\xb8\\x70\\x41\\x01\\x68\\x61\\x76\\x54\\x74\\xde\\xfc\\x9b\\x97\\xc0\\x34\\xf2\\xa0\\x77\\x4a\\x96\\x32\\x3a\\x1a\\x46\\xc5\\xf7\\x76\\x20\\x84\\xb7\\xd1\\xf1\\x84\\xed\\x09\\xdd\\xcf\\xb6\\x27\\xfa\\xf7\\x00\\xbf\\x07\\xe2\\x2e\\xfc\\x5e\\x1e\\xce\\xdd\\x6c\\x4f\\x08\\x6f\\xbf\\x95\\xbc\\x84\\xcf\\x61\\xff\\x25\\xf6\\x84\\xee\\x7f\\x61\\x4f\\x50\\xac\\x9e\\xd9\\xd2\\x3b\\x86\\x55\\x9f\\x8e\\x76\\x8f\\xbf\\x46\\xe2\\x9c\\x5c\\xcb\\x5b\\x88\\x10\\xbe\\x91\\x9e\\x47\\x92\\x3d\\x81\\x78\\x19\\x1f\\x48\\x06\\x1a\\xd6\\x35\\x86\\xb4\\x0c\\x69\\x89\\x52\\x7b\\x42\\xe1\\x48\\xa3\\xe3\\x99\\xa8\\x2d\\x7b\\x26\\xea\\xcb\\x4c\\xd7\\x35\\x8b\\xee\\x5a\\x5e\\x54\\xb4\\xfc\\xae\\x45\\x64\\x16\\xf9\\x9e\\x49\\xbb\\xc6\\x59\\x62\\x4d\\x48\\xb0\\x96\\x38\\x99\\x93\\xf9\\xdd\\x1b\\xea\\x1b\\x77\\xf6\\x15\\xb2\\xfd\\x1f\\x04\\x6f\\x19\\x43\\x3a\\x5b\\x8e\\x4e\\xed\\xb4\\x68\\x11\\x8b\\x06\\x10\\xc2\\x9b\\xb1\\xff\\x0a\\xb6\\x84\\xee\\xff\\x6e\\x4b\\x2c\\xc9\\x98\\x7b\\x5d\\x6f\\x76\\x76\\xef\\x75\\x73\\xc9\\xbb\\x10\\xc9\\x26\\x50\\x5b\\xe2\\x1f\\x19\\xd9\\x9e\\x64\\x41\\x48\\xf6\\x64\\x33\\xcf\\x78\\x7a\\x36\\x53\\x9a\\x44\\x39\\x85\\xfd\\xc1\\x17\\xc9\\x27\\x22\\x59\\x7a\\x9f\\x2b\\x55\\xe4\\x91\\xa8\\x9f\\x6c\\xa1\\x74\\x5d\\x62\\x4b\\xe8\\x7e\\xc4\\x96\\x30\\x4d\\xb2\\x25\\x4c\\x61\\x6a\\x6e\\x03\\xc5\\xd2\\x07\\xd7\\x94\\x95\\xad\\x79\\x70\\x69\\xf0\\x03\\xd0\\x80\\x22\\xaf\\x26\\x4b\\xa5\\xca\\xaa\\xc9\\x63\\xde\\xf5\\xf4\\xee\\x69\\x6b\\xde\\xd5\\xeb\\xc5\\xfe\\xe0\\x13\\xe4\\xef\\x1a\\x6b\\x6e\\x72\\x8a\\xdb\\xa6\\x09\\xf5\\xb6\\x9e\\x86\\x5b\\x90\\x0b\\xd5\\x07\\x6a\\x10\\x20\\x01\\x81\\x30\\x8c\\x30\\xcf\\xf1\\x98\\x1b\\x46\\x02\\xe2\\xb1\\xc0\\xf7\\x47\\x84\\x62\\xc5\\xc6\\x70\\xc9\\xa0\\x81\\x6d\\x02\\x94\\xe1\\xb0\\xdb\\x26\\x34\\xea\\x73\\x81\\x2b\\x52\\xd4\\x0e\\x27\\x1e\\x85\\x97\\x56\\x3d\\xfa\\x68\\x52\\x2b\\xd3\\x98\\xdd\\x5a\\x64\\x22\\x17\\xc4\\x23\\x70\\xf7\\xa9\\x1d\\x81\\xc0\\x8e\\xd7\\x76\\x2f\\x7a\\x64\\x6b\\x2d\\x70\\x86\\xc2\\xb6\\xfc\\xf2\\x4e\\x5f\\x0a\\x47\\x5e\\x84\\x0a\\x2e\\xa5\\x70\\x06\\xbb\\x54\\xe7\\x2c\\xb3\\x4e\\x3b\\xb4\\xb0\\x78\\x86\\xd4\\xac\\xef\\xf0\\xf4\\xe2\\xa5\\xc7\\xfb\\x32\\xea\\x0a\\x8c\\x19\\xb5\\xb3\\x0a\\x1e\\x76\\x77\\x57\\xda\\xe9\\x9a\\xf3\\x8e\\x9d\\xc3\\x77\\xe2\\x16\\x94\\x8c\\xf2\\xd0\\x35\\x21\\x5b\\x02\\x21\\x96\\x47\\x14\\x27\\x1d\\x7a\\xc4\\x73\\xcc\\x28\\xda\\x0b\\x52\\xa6\\xbf\\x81\\x09\\xa5\\xa7\\x9a\\x2f\\x77\\x1b\\xc6\\x5a\\xe9\\x5e\\x24\\x7b\\xfe\\xed\\xe1\\xbb\\x38\\x4e\\xd7\\x88\\xe4\\x02\\xf1\\x4b\\xef\\xec\\x16\\xed\\x0e\\xab\\x42\\xa1\\xca\\xb0\\x48\\x3e\\x40\\xb7\\x94\\x4b\\x13\\xe6\\x85\\x5d\\xf2\\xfb\\x5e\\x8a\\xaf\\xd7\\xd9\\xc1\\xba\\xe7\\x5c\\x33\\xab\\xef\\x50\\x5f\\x4e\\x4e\\xef\\xc1\\xbe\\xde\\x6b\\x7b\\xf3\\xa0\\x83\\x7c\\x0c\\x26\\xe8\\x89\\xd6\\xbb\\xcc\\xe9\\x2e\\x7d\\x54\\xb4\\x3e\\x3b\\x5d\\xfc\\x97\\x59\\x33\\xf8\\xd0\\xd6\\xfa\\xe6\\xab\\x9e\\x5e\\xbc\\x76\\xf1\\xd3\\x57\\x35\\xd5\\x6c\\xb8\\xab\\x97\\x4c\\xc3\\xfe\\xe0\\xbd\\x85\\x43\\x6d\\x39\\x39\\x6d\\x43\\x85\\x6b\\x7d\\x43\\x6d\\xb9\\xb9\\x6d\\x43\\x3e\\xca\\x9b\\x66\\x84\\x70\\x3b\\xdd\\xfb\\x29\\xa2\\x7e\\x28\\x80\\x04\\xd4\\x2d\\x9d\\x61\\x74\\x52\\xf9\\x89\\x07\\x19\\x42\\x49\\x5a\\x8d\\x0a\\xc5\\xa3\\x38\\x85\\x64\\x83\\x00\\x75\\x63\\x9a\\x94\\xb2\\x15\\xc2\\x8a\\xb4\\x9b\\x14\\xa6\\xf4\\x38\\x06\\xb7\\x93\\xb3\\xa3\\x7f\\x24\\xa7\\xff\\x31\\x77\\x61\\xf9\\xda\\xfb\\x17\\x3f\\xa6\\xce\\x0c\\x64\\x41\\xc4\\x18\\xca\\xae\\xca\\xa2\\xaa\\x06\\x6c\\x22\\x7b\\xe0\\x81\\xac\\xe3\\x03\\x2d\\xbb\\xfa\\xbc\\xe4\\xfa\\xa4\\x7c\\x47\\x12\\xa4\\xe8\\x33\\xdc\\xf4\\xec\\x1a\\x7b\\x97\\x34\\xe2\\x66\\x9e\\x06\\x10\\x03\\x53\\x18\\xc0\\x60\\x07\\x0e\\x6b\\x80\\xe5\\xd4\\xc0\\xb0\\xb8\\x21\\x12\\x04\\x9e\\x9a\\xb5\\xfd\\x21\\x71\\x61\\x6c\\x44\\x11\\x11\\x5c\\xf7\\xa4\\x88\\x8b\\x89\\x69\\xca\\xcb\\x15\\xcd\\xbc\\x0c\\xab\\xd3\\x1c\\x52\\x23\\xe5\\x88\\x8b\\xda\\x7d\\x31\\x3e\\x83\\x79\\x02\\x72\\x81\\x04\\xa8\\xe2\\x66\\x76\\x7e\\x29\\xb7\\x8c\\x03\\x77\\xdf\\x35\\x9d\\x36\\x09\\xc1\\xc0\\x5f\\x0e\\xe1\\xfe\\x71\\x4f\\x3c\\x01\\x9a\\x2f\\xf1\\x3d\\x64\\x4c\\x6a\\x22\\xf7\\x2c\\x81\\xbe\\xc3\\xf3\\x0a\\x84\\xa8\\x0f\\x79\\xbe\\xab\\x23\\x73\\xbc\\xa3\\x1c\\xbe\\xe7\\xf1\\x7b\\xee\\x41\\x80\\x16\\x8f\\x9d\\xc3\\xf9\\xe1\\x7d\\x85\\x39\\x9e\\xc3\\xfc\\xb0\\x38\\x10\\x01\\xd0\\x30\\xe2\\x45\\x01\\x24\\xf4\\x87\\x36\\x93\\xb1\\x31\\xbc\\xc3\\x0c\\xcc\\x15\\xf7\\xd5\\x4f\\x34\\xc0\\x14\\x4c\\x6a\\x93\\x81\\x65\\xe6\\xfe\\x54\\x07\\xcc\\xa2\\xf6\\x82\\x14\\x0c\\xe5\\xe4\\x35\\x3e\\xc5\\xd3\\x72\\xe5\\x3e\\x98\\x99\\x75\\x73\\x0a\\x46\\xf2\\x3b\\x2b\\x6c\\x92\\x9d\\xae\\x46\\x08\\xff\\x91\\xe6\\x2c\\xd9\\xd0\\xa2\\x50\\x6b\\x42\\x8a\\x04\\xce\\x8f\\x07\\x6a\\x74\\x72\\xb9\\xa9\\x2c\\x4b\\x93\\x45\\x49\\x7b\\xc9\\x2d\\x28\\x7c\\x87\\xb4\\x85\\xe4\\x9b\\xbb\\x03\\x89\\x08\\x99\\xd3\\x4d\\x69\\x28\\x19\\x25\\x9b\\xac\\x0a\\x87\\x42\\x0a\\xec\\xc8\\xd6\\x96\\x49\\x61\\x0e\\xeb\\x82\\x5e\\x8f\\x02\\x64\\x4d\\x83\\xf5\\xf7\\x1f\\x5f\\x58\\x58\\xb8\\xe4\\xe6\\x01\\xf2\\xef\\xe5\\x99\\xb3\\xae\\x1f\\xb2\\x33\\xda\\xaa\\x1a\\x36\\x26\\xde\\x94\\x6f\\xb1\\xe4\\x9b\\xe2\\xb1\\x9f\\xdc\\x0e\\xbe\\xbe\\x3d\\xad\\x6d\\x57\\xcd\\xf5\\xca\\x9a\\xe2\\x37\\xcf\\xbe\\x0a\\xbf\\x0e\\xfa\\x92\\xf3\\x6c\\x3a\\x20\\x9f\\x82\\xde\\xe1\\x91\\xe3\\x3a\\xb7\\x52\\x2c\\xd5\\x2b\\xc6\\x75\\x74\\x3f\\x1a\\xd7\\x99\\xec\\x03\\xbb\\x38\\xae\\xb3\\x72\\x13\\x68\\x63\\x7a\\x8f\\x0c\\x7a\\xbd\\x83\\x47\\x7a\\xc9\\x47\\x9b\\xa8\\x32\\x78\\x43\\x8c\\x29\\x3b\\x35\\x36\\x36\\x35\\xdb\\xc4\\xdc\\x08\\xb7\\x93\\xdb\\xbd\\x7d\\x7b\\xdb\\x44\\x3a\\xe1\\x59\\x52\\x8b\\xfd\\xc1\\x57\\xc9\\xa7\\x49\\x19\\x9e\\xd4\\x94\\x7c\\x9b\\x56\\xda\\x2b\\xdf\\xcb\\x3d\\x12\\x8d\\xa8\\x28\\xe0\\x65\\x80\\x05\\x35\\xad\\xfa\\x8d\\x00\\x9e\\x03\\x04\\x3c\\x0a\\x87\\xf8\\x8c\\x22\\xa5\\x4c\\xf7\\x78\\xac\\x47\\x41\\xf5\\x13\\x4a\\x69\\x38\\x14\\x39\\xa9\\x5b\\x9b\\x0c\\x2c\\xc4\\x3c\\x44\\xbe\\xbb\\xb4\\x77\\xe2\\x91\\x23\\xa0\\x81\\x28\\x7c\\x92\\x7c\\x7b\\x69\\x07\\x45\\x7c\\xf2\\xf1\\x9b\\x6e\\xa2\\x3a\\xd8\\x71\\xaa\\xc7\\x4a\\x75\\x31\\x2c\\xc3\\xae\\xa2\\x18\\xb3\\x54\\x3f\\x62\\x66\\xca\\x94\\x5c\\xa2\\xb7\\x8c\\x2b\\xc9\\x70\\x1d\\x1c\\x05\\x2d\\x79\\x80\\x9c\\x25\\xf7\\x4b\\x2a\\xc5\\x85\\x37\\xc8\\x71\\x18\\x0c\\xe9\\xb8\\x75\\x63\\xe7\\xf0\\xbd\\xdc\\x08\\xb2\\x88\\xe7\\x77\\x24\\xb5\\x51\\x04\\x1e\\xb3\\x0c\\xa3\\x69\\x14\\x27\\x44\\xaa\\x0f\\x97\\x02\\x9a\\x16\\x64\\x31\\x2b\\xcd\\x6a\\x8b\\x95\\x9e\\xdf\\x8a\\xc9\\xd1\\x67\\x5a\\xdb\\x41\\x97\\x50\\xf8\\x17\\x7c\\x6f\\xfe\\xcc\\x8d\\xf5\\xf5\\xab\\x6c\\xd6\\xa5\\x55\\x8d\\xdb\\x67\\x17\\x00\\x9b\\x93\\x69\\xcb\\x02\\xec\\x76\\x99\\xed\\xdc\\xc8\\x85\\x57\\xfa\\x6e\\x98\\x9b\\x5f\\x5e\\x5e\\x5e\\x9e\\x3f\\xf7\\x86\\x3e\\x5c\\x7e\\xe1\\x95\\xce\\xe6\\xe6\\xce\\xf1\\x7f\\x11\\xa0\\x9a\\xb1\\x73\\xf8\\x5a\\xec\\xbf\\x94\\x36\\xdd\\xff\\x92\\x36\\xf7\\xa5\\xb4\\x5d\\x9b\\x33\\x63\\x6d\\xdd\\x94\\x95\\x56\\xcb\\xf2\\x9a\\x29\\x9b\\xba\\xf2\\x83\\x99\\x76\\x57\\x26\\xb0\\xd9\\xb9\\xe6\\x74\\xec\\x0f\\xb6\\x0e\\xde\\xb4\\xc0\\x53\\x5d\\x5d\\x5d\\xed\\x59\\x70\\xd3\\x20\\x73\\x32\\xd8\\x3a\\xaf\\xa7\\x67\\xde\\xf8\\xbf\\x72\\xcd\\x17\\xde\\xc4\\xeb\\xe9\\xba\\xf6\\x05\\x0a\\x10\\x87\\xb9\\x95\\x3c\\x60\\x16\\x24\\xe7\\x13\\x44\\x42\\x84\\x00\\x11\\x03\\xe2\\x7a\\x99\\x25\\x39\\x77\\xb5\\x5a\\xad\\x59\\x9b\\x2e\\xae\\x6e\\x85\\xc3\\x94\\x10\\x25\\x85\\xaf\\x27\\xae\\x6d\\x8f\\xfb\\xa2\\xd5\\xcd\\x7c\\x4e\\xfe\\xf5\\x87\\xa5\\x27\\xd6\\x94\\x96\\xae\\x39\\xb1\\x94\\xa8\\xee\\xb8\\x03\\xb4\\x10\\x49\\xfe\\xf5\\x87\\xbc\\x1a\\xa7\\x4a\\xe5\\xac\\xc9\\xc3\\x05\\xe4\\xda\\x82\\xd9\\x3b\\x9a\\x5b\\x76\\xce\\x29\\xc0\\x05\\x8f\\x43\\x3e\\x79\\x77\\xf4\\x07\\x32\\xaa\\x36\\xe7\\x26\\xeb\\x73\\xcc\\xb4\\x04\\x0f\\x15\\x8e\\x7d\\x85\\x1f\\xe2\\x4e\\xa1\\x52\\xf4\\xdb\\x40\\xb4\\x0f\\x04\\x0e\\x1a\\x8a\\x80\\x83\\x29\\x92\\xa8\\xc9\\x45\\x0c\\x8b\\x58\\x06\\x0d\\x23\\x39\\xa8\\x2d\\x9a\\x73\\x9c\\x80\\xe4\\xa8\\x76\\x14\\xc8\\x61\\xed\\x88\\x9e\\x48\\x88\\x88\\x30\\x44\\x84\\x72\\x30\\x0a\\xae\\xfc\\x5c\\x54\\x94\\xa6\\x71\\x52\\x48\\x7c\\xfc\\xd9\\x40\\xe1\\xcf\\x7e\\x2c\\x32\\x52\\x2b\\x3d\\x8b\\xe8\\xa3\\xdd\\xdd\\x81\\x84\\xd2\\x92\\x62\\xbf\\x45\\x65\\x57\\x68\\x2c\\x2a\\x5b\\x42\\x34\\x15\\x0e\\x65\\x1c\\x95\\xd4\\x66\\xe9\\x9c\\xc7\\x6a\\xb7\\xda\\xac\\x56\\xa9\\xe4\\x00\\x8b\\x5b\\x23\\x77\\xf7\\xf7\\x48\\x52\\xa3\\x74\\x10\\x14\\xd6\\x92\\xce\\xd5\\x4d\\x4d\\x07\\x17\\x17\\x47\\x7c\\x1f\\x99\\x9c\\x9f\\x61\\x72\\xa6\\xc4\\xf3\\xf0\\x87\\x3f\\x70\\x71\\x29\\xd9\\x66\\x7b\\xb6\\x2e\\x0a\\xff\\x00\\xa5\\x43\\x57\\x4f\\x69\\x59\\xd7\\x59\\x6c\\x4d\\x18\\x24\\x17\\x80\\x63\\x67\\x37\\x1e\\xbd\\x7a\\x6d\\x67\\x9e\\x7b\\xed\\xcb\\xd7\\x7a\\x7b\\xaa\\x6c\\xd6\\xe2\\xe6\\xb6\\x56\\xe3\\x37\\x71\\x69\\xed\\x1d\\xad\\x65\\x56\\x47\\x55\\x67\\xf6\\xbe\\xe7\\x57\\xbb\\xf3\\x3b\\xd7\\x5f\\x73\\xac\\x39\\x2e\\x78\\x84\\xf6\\xb7\\x6f\\x1e\\x3b\\x8f\\x6f\\xc3\\xed\\x28\\x0f\\xbd\\x29\\x69\\x4b\\x79\\x28\\x32\\x4a\\x88\\x8a\\x1c\\x2f\\x23\\x88\\x06\\x01\\xd3\\x3a\\x02\\x71\\xe0\\x7c\\x4f\\x04\\xf0\\xbc\\x4e\\x2a\\x24\\x10\\x17\\xb6\\x81\\x0d\\xe9\\x4f\\x9e\\x1f\\x79\\x90\\x3e\\x12\\x15\\x45\\x59\\x64\\x9c\\xfc\\x70\\xa0\\xe8\\xe7\\x3f\\x47\\xcf\\x7b\\xb9\\x84\\xc1\\xc0\\x8a\\x9c\\x4e\\xcc\\xcb\\xcd\\xca\\xb4\\x59\\x2d\\x0a\\x85\\x42\\x65\\x49\\xb4\\x24\\xc4\\xd0\\x73\\x5f\\xb6\\xb9\\xdc\\x72\\xab\\x2d\\xd9\\x51\\x21\\x27\\x33\\x9b\\x65\\x68\\x03\\x37\\xbb\\xeb\\xc9\\x08\\x6d\\x96\\x35\\x37\\x8f\\x0b\\xb2\\xa5\\x7d\\x9b\\xab\\xe6\\xdd\\xd0\\x9f\\x8f\\x67\\x91\\xff\\x81\\xe8\\x59\\x9c\\xbb\\xef\\xfa\\x81\\xc6\\x6d\\xbd\\x5e\\x08\\x32\\x31\\x5a\\x5b\\x8a\\xd9\\xa9\\x8d\\x84\\x27\\xe1\\x75\\xcb\\xd4\\x9a\\xec\\x8a\\xb2\\xd9\\xfb\\x7b\\x5c\\x4d\\x3b\\x1f\\xec\\x25\\xc5\\xb8\\x98\\x54\\xcd\\x79\\x60\\x7b\\x63\\xe6\\x9c\\xff\\x58\\x6a\\x2b\\xb2\\xab\\x9d\\xd5\\xad\\x16\\xe9\\xac\\x8c\\x45\\xe2\\x36\\x1b\\x41\\xd1\\x28\\x4e\\x94\\x86\\x71\\xc0\\x53\\xef\\x13\\x43\\x85\\xf4\\x5c\\x1a\\x2f\\xe6\\x64\\xef\\x97\\x0c\\xf3\\x46\\xe3\\xf0\\xb2\\xe7\\x4b\\x2a\\x42\\x64\\xd9\\xee\\x39\\xff\\xe8\\xd8\\x4b\\x3e\\x84\\xaf\\x21\\x15\\xce\\x93\\x0f\\x89\\x0e\\xcc\\xd7\\xc3\\x3d\\x64\\xa6\\xf8\\x43\\x03\\x52\\xcb\\xe1\\x57\\x28\\xac\\xdb\\x3d\\x41\\x65\\x6f\\x82\\xf8\\xbe\\xf8\\x4b\\xde\\xa7\\xfb\\xc9\\xf7\\xb9\\xed\\x76\\x81\\x2d\\xec\\x79\\x79\\x7a\\x2f\\x39\\x0d\\xf7\\x42\\x12\\xdc\\x47\\x4e\\x93\\xe1\\xaf\\x66\\xa6\\xa4\\x42\\x3c\\xf9\\x46\\xfc\\xa1\\xaa\\xdc\\x7f\\x06\\x97\\x2f\\x97\\xde\\x39\\x15\\x21\\xfc\\x22\\x8d\\x65\\xd2\\x8e\\x36\\x1a\\x51\\x4f\\x6b\\x88\\x02\\x41\\xb4\\x24\\x41\\x40\\x73\\xc5\\xa5\\xa2\\x69\\x8c\\xa4\\xc6\\x2b\\xf5\\xf2\\x4d\\x00\\xb5\\x8b\\x1e\\xf7\\xf3\\x99\\x95\\xb2\\x33\\x5e\\xe9\\x06\\x33\\xb8\\x59\\x76\\x7f\\xe6\\xad\\x59\\x5d\\xa7\\x07\\x0f\\x7c\\xfa\\xe9\\xb3\\x2f\\xfd\\x19\\xbc\\x9f\\x93\\xbf\\x3e\\xd8\\x0e\\x4f\\x93\\xfa\\xd0\\x0f\\x37\\x32\\xfa\\x2b\\xd6\\xf3\\x43\\x1b\\xb3\\x09\\xde\\x0a\\xd3\\x41\\xfd\\x4a\\x1a\\xe4\\x09\\xe4\\x4b\\x74\\x48\\xe6\\x6c\\xb7\\xb4\\x5c\\xa3\\x40\\x10\\xa0\\xfb\\x7f\\x4f\\xc9\\x7f\\xe4\\xdc\\x5f\\xd8\\x70\\xba\\x7d\\xdd\\xa7\\x9f\\x3e\\xfe\\x3a\\xa5\\xe4\\x6f\\xf7\\xb4\\x00\\x26\\xa3\\xa1\\x1f\\xec\\x0f\\x5e\\xcb\\xac\\x12\\x99\\x02\\xf9\\x12\\x4f\\xb2\\x11\\xc2\\x2f\\xd0\\x9c\\x22\\x0b\\xca\\x0d\\xb8\\x10\\x27\\x88\\x72\\x6c\\x98\\x05\\x10\\xb5\\xbe\\x65\\xa1\\x0e\\x02\\x72\\xf8\\x4e\\x8b\\x9a\\x12\\x15\\x6a\\xb5\\x49\\x61\\xd5\\x50\\x23\\x41\\x4e\\xc2\\xc8\\x96\\xf0\\x70\\xa5\\x88\\x04\\x4d\\x79\\xf6\\x81\\x09\\x94\\x26\\xb6\\x7f\\xea\\xce\\xee\\x1c\\x72\\x26\\x21\\x2d\\xcf\\xa4\\x26\\x5f\\xb8\\x4c\\x79\\xc6\\x04\\x72\\x26\\x7f\\xce\\xd5\\x9d\\xe4\\x59\\x9c\\x1f\\xfc\\x6e\\x1b\\xf9\\x07\\x1b\\xcb\\xe7\\xf5\\xec\\xef\\x25\\xcb\\xe0\\x86\\xac\\x62\\x73\\x7c\\xf0\\x0f\\x8c\\x33\\xde\\x5c\\x9c\\x25\\xfe\\x3d\\xf7\\xda\\x9e\\x1c\\xcc\\xdc\\x1e\\x3c\\x05\\x33\\x24\\x5a\\x2b\\x10\\xc2\\x2b\\xb1\\x9f\\xd2\\xea\\x0d\\xb8\\x23\\x79\\x86\\x11\\x19\\x07\\x0c\\x0f\\x3c\\x03\\xc3\\x88\\xe7\\x65\\xcf\\xb1\\x10\\x62\\x1c\\x42\\x16\\x33\\x32\\x21\\x93\\x29\\x51\\xad\\xd5\\x46\\xf0\\x49\\x4e\\xb7\\x47\\x26\\xce\\xc0\\xaa\\xd5\\x52\\xec\\x28\\x4c\\xb9\\x1a\\x94\\xa6\\x0a\\x47\\xe3\\xd2\\x5a\\xf2\\x15\\xd6\\x93\\x73\\x95\\x0b\\xeb\\x6d\\xe4\\xcb\\x68\\x9d\\x25\\x29\\x91\\x9c\\x4d\\xd1\\x59\\x74\\x31\\x10\\xb5\\x8b\\xfc\\xf0\\x75\\xf7\\xee\\x6e\\x77\\x04\\x7c\\x48\\xcc\\x51\\x05\\xdd\\x3b\\x3a\\xbf\\xfe\\x3a\\xbb\\xcc\\x1a\\x4f\\x56\\xc2\\xc1\\x78\\x6b\\x59\\xf6\\xd7\\xcc\\x0a\\x88\\x95\\xec\\x3a\\x84\\xf0\\x3b\\xdc\\x08\\xb2\\x22\\x07\\x2a\\x09\\x14\\xc5\\xca\\x1e\\xca\\x08\\x9e\\x41\\x20\\x5a\\xf7\\x51\\x51\\x92\\xae\\xa3\\x69\\x8c\\x8e\\x14\\x38\\x2c\\x53\\xeb\\xb0\\x23\\x2b\\xb2\\x8a\\xd4\\x52\\x05\\x48\\x94\\x0e\\x26\\xb6\\xc0\\x27\\xcd\\xb2\\x89\\x35\\xb1\\x06\\x56\\xcd\\x9a\\x59\\x89\\x6c\\xb3\\x44\\x36\\xab\\x54\\x9a\\x61\\x69\\x84\\x66\\xf0\\xe3\\x8f\\xa1\\xef\\x33\\x56\\xf3\\xd7\\xca\\x81\\x80\\x09\\xff\\x29\\x82\\x4b\\x34\\xa5\\xc4\\xfd\\x2e\\x29\\xd9\\xac\\x12\\xd8\\x4f\\x66\\x3c\\x0c\\x8f\\xf5\\xd4\\x04\\x1f\\xe2\\x46\\x82\\x4b\\x98\\x23\\xc1\\x05\\x11\\x85\\xb3\\xb6\\x34\\x91\\x66\\x78\\xcc\\xe0\\x73\\xea\\x83\\x8f\\x31\\xcd\\x7a\\xa7\\xcf\\x40\\x9a\\xd9\\xb7\\x41\\x2b\\xf1\\xba\\x04\\x21\\xfc\\x06\\xf6\\x87\\xe8\\x8f\\xbb\\x12\\xfd\\xba\\xcb\\xd1\\xaf\\x54\\xab\\x45\\xfa\\x55\\x32\\xfd\\xde\\x09\\x03\\xd0\\x68\\xc2\\x03\\x10\\xc6\\x47\\xe0\\x33\\xc3\\x4e\\x3e\\x3a\\x7a\\xed\\x27\\x9f\\x40\\xfb\\x1b\\xcc\\xd8\\x9b\\xab\\xd6\\xf0\\xbf\\x17\\xf8\\x44\\x93\\x1e\\xd8\\xdf\\x47\\xe9\\xd3\\x12\\x05\\xfe\\xb7\\x53\\xef\\x04\\x2e\\xab\\xd9\\x44\\xfa\\xb1\\x9f\\xa4\\xc3\\x5f\\x48\\xb2\\xfa\\xc4\\x75\\xe2\\x21\\x92\\xea\\xc9\\x4c\\x12\\xc8\\x52\\x38\\x9e\\x94\\xe9\\x49\\x25\\x17\\x98\\x87\\x3f\\x95\\x31\\x3a\\x03\\x38\\x5f\\x58\\x8d\\x0a\\x51\\x05\\x9a\\x16\\x68\\x2f\\x07\\x81\\x57\\x02\\x87\\x98\\x06\\xab\\x85\\x61\\xeb\\x22\\x80\\x17\\xf8\\x95\\x48\\x60\\x84\\x95\\x91\\xe2\\x31\\x49\\xbd\\x3c\\x72\\xfe\\xb5\\x26\\x8c\\xda\\x49\\xfd\\x05\\x15\\x81\\xb2\\xd2\\x62\\xbf\\xcf\\x93\\x93\\x95\\xaa\\x8f\\x89\\x8a\\x14\\x50\\x21\\x14\\x46\\xd1\\x78\\x92\\xe4\\x4d\\x37\\x79\\x4c\\x93\\x4b\\x17\\x43\\x85\\x1c\\x82\\xcd\\x46\\xc1\\x38\\xc6\\xdd\\xee\\xca\\x30\\x9a\\x4b\\x54\\x59\\x57\\xa1\\x7e\\xe5\\x46\\xf2\\x1d\\x44\\xad\\x7a\\x71\\x5f\\xc3\\xc6\\xa5\\x7b\\xae\\xa9\\xdf\\xfd\\xf4\\x70\\x61\\xc0\\x6b\\x70\\xb9\\x55\\x53\\x8f\\xdd\\xcd\\xe4\\xcf\\xda\\xdd\\x5e\\x52\\xd8\\x55\\x92\\x76\\x68\\xff\\xa1\\xdb\\x42\\xd8\\x2f\\xec\\x9c\\x14\\x77\\x4d\\x46\\x4b\\xff\\xdf\\xb2\\xe7\\x5c\\xd7\\xbf\\xfe\\xae\\xac\\xcc\\x13\\x5b\\x07\\x6f\\x5b\\x56\\xe4\\xcd\\x34\\x17\\xd8\\xf4\\x91\\x27\\x2c\\x2f\\x1d\\x68\\x58\\x56\\x6f\\x4e\\x2d\\xa8\\xcb\\x1c\\x5e\\xf9\\x05\\x7b\\x4c\\x02\\x8a\\x61\\xd0\\x13\\xa4\\x05\\xdb\\xb9\\xef\\xfe\\x0f\\xbc\\xd0\\x5d\\x9e\\x17\\x79\\xd9\\xff\\x5b\\x5e\\x64\\xb3\\x32\\x2f\\xbc\\x17\\xb3\\xc2\\x51\\x30\\x25\\x5b\\x3d\\x7f\\x89\\xc8\\x8a\\xa5\\x8f\\x6f\\xaf\\xed\\x9d\\xbe\\x64\\x45\\xe5\\x86\\xfb\\x87\\xf2\\xea\\x4a\\x53\\x32\\x72\\x12\\xa7\\x96\\x2c\\x6a\\xcb\\x81\\x9c\\x19\\x1b\\x1b\\x3d\\x8b\\x56\\x6f\\x5a\\xf3\\xcb\\x53\\x21\\x56\\x30\\x2b\\x55\\x96\\xbc\\xd4\\x82\\xca\\x77\\x2c\\x0d\\x2b\\x9a\\x66\\x6c\\x30\\xa7\\xad\\x9f\\xde\\xbc\\xa1\\x23\\x4b\\x66\\xc5\\x2f\\x55\\x95\\x33\\x87\\x2b\\xaa\\xe6\\x55\\xa4\\x4d\\x29\\xaa\\xaa\\x39\\xc9\\xf2\\x32\\x66\\x0e\\x4b\\xf3\\x80\\x36\\xd0\\xde\\x02\\xe9\\x28\\x47\\x94\\x78\\x3c\\x5c\\x54\\x07\\x96\\x1a\\xae\\x03\\x33\\xa0\\x26\\x8b\\xd9\\x99\\x61\\xce\\xb1\\xe4\\x58\\xd5\\x19\\x16\\x81\\xd7\\x5d\\x0c\\x04\\x66\\x60\\xd4\\xdc\\x78\\x29\\x98\\x75\\x42\\x29\\xd8\\x86\\x4b\\x41\\x00\\x48\\x7c\\xa8\\xfc\\x9f\\xc4\\xc3\\x37\\x21\\x48\\x80\\x8b\\x50\\xc0\\xfa\\x4e\\x9c\\x3f\\xf0\\xac\\x3e\\x04\\x00\\xf0\\x6e\\x44\\x08\\x13\\x40\\xa4\\xbd\\x7f\\xec\\x1c\\x9e\\x43\\xeb\\x56\\xd2\\x90\\x93\\x6a\\xc6\\x52\\x63\\xc0\\x7e\\x1e\\xe4\\x20\\x90\\x71\\x1c\\x3b\\xc9\\x00\\x4d\\xe9\\x26\\xad\\xc6\\x6e\\x33\\x39\\xd3\\x9d\\x29\\xc9\\x9a\\x34\\x6d\\x5a\\x86\\x25\\x42\\x76\\x83\\x4f\\xf6\\x72\\x01\\xb5\\xc4\\xb3\\x59\\x96\\x7a\\xba\\x0c\\x6c\\xff\\x25\\x8d\\xa6\\x89\\xa7\\xad\\xd0\\xc4\\xc3\\x7f\\xf2\\x26\\x5f\\x9b\\xbb\\xa0\\xc5\\x67\\x12\\x88\\x5f\\x30\\x15\\xb6\\x5d\\xa6\\xdf\\x34\\xf4\\xd8\\xab\\x66\\x79\\x3c\\xb3\\xaa\\xec\\xc1\\xd9\\xd6\\x8a\\x6e\\x8f\\xa7\\xbb\\xc2\\x8a\\x00\\xc5\\x20\\xc4\\xb1\\xdc\\xab\\x28\\x11\\x55\\x3c\\x01\\x72\\xcf\\xd8\\xd4\\xb6\\xae\\x80\\x42\\xea\\x41\\x0c\\x08\\x49\\xa1\\xf0\\x50\\xe9\\x9a\\x26\\x0c\\x5e\\x19\\xfa\\xbc\\xfb\\x49\\x85\\xd2\\x64\\xa7\\x51\\x01\\xad\\x4f\\x59\\xc6\\xba\\xb5\\x02\\xcd\\x29\\x36\\x81\\x89\\x59\\xa5\\x56\\xfd\\x5e\\x5f\\xd9\\xb9\\xbc\\x3e\\x83\\x49\\xce\\x2a\\x51\\x90\\x47\\xc8\\x07\\x44\\x0b\\xf9\\x70\\x4d\\x5f\\x0f\\xf3\\xd9\\xb4\\x1d\\x5d\\x2e\\xf8\\x36\\xe0\\xbd\\x70\\x3f\\x05\\x1c\\x00\\x2a\\x9b\\xd7\\xe0\\x16\\xa4\\x42\\x33\\xe5\\x3a\\xc7\\x48\\x5a\\xa1\\x29\\xd5\\x32\\x45\\x4b\\xe4\\x45\\x02\\x0b\\x53\\xe4\\x42\\xc7\\x71\\x22\\x8d\\x93\\x88\\xd4\\x85\\x89\\x34\\x4e\\x20\\xd2\\x6a\\x0d\\x11\\x39\\x39\\xf9\\x59\\x24\\xd4\\xa4\\x52\\xad\\xcf\\xbd\\x7d\\x53\\x6a\\x81\\x56\\x87\\xd3\\x62\\x6c\\x25\\x31\\xe4\\x07\\x32\\x4a\\x76\\x80\\x19\\xae\\x5f\\xb4\\x08\\x36\\xdc\\x7a\\xb7\\x10\\xfb\\x67\\x86\\x29\\xce\\x0c\\xb2\\xd4\\x88\\x64\\x51\\x0d\\x69\\xc7\\x2f\\xd1\\x5c\\x83\\x7c\\x54\\x29\\x6e\\x40\\x2d\\x08\\x4c\\x2e\\x20\\xc1\\x4a\\x6b\\xe9\\x42\\x5d\\xb9\\x52\\x1b\\x39\\xc9\\x2d\\x1c\\x4a\\x24\\xa0\\x1b\\x77\\x16\\x62\\x59\\x13\\xdb\\x64\\x37\\x6b\\x8a\\xd4\\x5a\\x71\\xf6\\x53\\x2e\\x57\\xcb\\xa8\\x55\\xba\\xd9\\x70\\x93\\x57\\xd9\\xdf\\xe9\\x63\\xdd\\x5c\\x41\\x08\\xd7\\x91\\x9a\\x75\\xcc\\xd1\\x8c\\xd6\\x55\\x0d\\x35\\x8b\\xea\\x2d\\xd6\\xba\\x45\\x35\\x53\\x56\\xb5\\x65\\x40\\x94\\xa2\\x77\\xe4\\x6c\\x64\\x5a\\xe1\\x54\\x7f\\x54\\x72\\xb2\\x4e\\xc0\\xbc\\x52\\xad\\xe2\\x52\\xed\\xfa\\x38\\x4e\\x7d\\x6c\\x84\\xf4\\xe4\\x17\\xa7\\x3a\\x74\\x51\\x2e\\x7f\\x71\\x3e\\x7c\\xb4\\xe2\\xe9\\x9d\\x75\\x75\\x3b\\x9f\\x5e\\x01\\xdf\\x85\\x7e\\x23\\xef\\x3d\\xcc\\x54\\x5f\\x30\\xd8\\x7a\\xda\\xbc\\x2c\\xc7\\x33\\xc7\\x18\\x06\\x32\\xfd\\xa5\\x89\\x53\\x71\\x45\\xe9\\xfe\\xff\\xb0\\x37\\x2c\\xae\\x09\\x3e\\x7d\\xcd\\xb1\\x63\\xd7\\x88\\x3c\\x28\\x10\\x79\\x40\\xd7\\x7d\\x3e\\xaa\\x47\\xcb\\x03\\x71\\x5a\\xe0\\x85\\x5c\\x00\\xde\\x0a\\x18\\x42\\xcd\\xca\\x4d\\x34\\x70\\xcc\\x89\\x5a\\x8a\\x2e\\xdc\\xac\\x6c\\x12\\x1b\\x92\\x03\\xd6\\xc9\\x4c\\x32\\x5e\\xfe\\x3e\\xea\\x09\\x1d\\xe7\\xd8\\xa5\\xfb\\xc5\\x7a\\x05\\x8e\\x5d\\xea\\x1c\\x2d\\xb0\\xb5\\x6f\\xe9\\xec\\xda\\xda\\x6e\\xb7\\xb7\\x6f\\xe9\\xec\\xdc\\xda\\x6e\\x67\\x17\\xff\\x18\\xcf\\x82\\xfb\\x23\\x53\\x0a\\xb2\\x9c\\x05\\x29\\x91\\x91\\xa9\\x1e\\xa7\\xd3\\x9d\\x12\\xc9\\xd8\\xd7\\xbc\\x2d\\x6e\\xb0\\xb7\\xd7\\xa8\\x43\\xbf\\xdc\\x70\\x92\\xa9\\xbb\\x2c\\xdf\\x82\\xef\\xb7\\x1e\\x5c\\x5c\\x5e\\xbe\\xf8\\x60\\xab\\xba\\xe5\\xe0\\x92\\xf2\\xf2\\x25\\x07\\x29\\x6e\\x24\\x46\\x6d\\x63\\xeb\\xf1\\x26\\x3e\\x83\\x62\\x80\\xa4\\x22\\x37\\x7a\\x48\\xc2\\x64\\xca\\x46\\xc0\\x71\\x30\\x88\\x10\\xcf\\xf2\\x68\\x01\\x62\\x05\\x81\\x1d\\x44\\x0c\\xc6\\xcc\\xd0\\x84\\xec\\x14\\x41\\xc0\\xb3\\x10\\xc6\\x06\\x1c\\x32\\x9b\\x72\\x26\\x3e\\xc5\\x0e\\x23\\x56\\xe0\\x59\\x61\\x19\\x62\\x30\\xb3\\xea\\xf2\\x8f\\xd1\\xf7\\xc0\\xca\\x9f\\xfd\\x00\\xf5\\x44\\x67\\x64\\x58\\x27\\x64\\xa3\\xba\\x95\\x66\\x85\\xfb\\x52\\xd1\\x7b\\x29\\x02\\x0b\\xf3\\xc6\\xa9\\x53\\xcc\\xa9\\x53\\xf0\\xd8\\x4f\\x43\\xb0\\xe0\\x79\\xf0\\xfa\\xf7\\xad\\xf0\\x5b\\xb0\\xfe\\x1c\\x20\\x16\\xca\\xc7\\x05\\x63\\x4b\\xf1\\x7c\\xfc\\x9f\\x61\\x3e\\x7e\\x26\\x95\\x53\\x64\\x23\\x51\\xe6\\x0e\\x22\\x24\\xb0\\x82\\xc8\\x47\\x9e\\x17\\xf9\\xc8\\x71\\xcc\\x90\\x38\\xaa\\x1e\\x84\\x31\\x5d\\x68\\xdc\\x2c\\xc4\\x71\\x06\\x4e\\xe4\\xa3\\xe6\\x72\\x4f\\x09\\x2c\\xbf\\x0c\\x31\\x1c\\xb3\\xea\\x4a\\x4f\\x69\\x69\\x0b\\x03\\xc0\\x22\\x2f\\x7f\\xe6\\x43\\xf4\\x2d\\xa1\\xfb\\x45\\xde\\xff\\xc4\\x03\\xdd\\x97\\x63\\x3e\\x6b\\x56\\xb8\\xad\\x57\\x0c\\x8d\\x8c\\x2f\\x76\\xe6\\xd9\\x07\\x1e\\xc0\\x27\\x4e\\x04\\x1f\\xbd\\xe4\\xf8\\xb8\\x14\\x13\\x72\\x14\\x7e\\xf5\\xc3\\x3d\\xf0\\xd1\\x47\\x97\\x1c\\x1f\\x97\\x82\\x42\\xb2\\x28\\x67\\xec\\x1c\\xc7\\x0a\\x99\\xa8\\x00\\x35\\xa0\\x19\\x68\\x51\\x60\\xa8\\x1c\\x62\\xa3\\x66\\x50\\xf4\\x4b\\xe0\\xd8\\x86\\x0a\\x88\\x84\\x29\\x28\\x36\\x2a\\x32\\x2a\\x36\\x72\\x18\\xf1\\x98\\xc3\\x3c\\x37\\x8c\\xa2\\x51\\x54\\x6c\\x74\\xd4\\x40\\x1c\\xc4\\xa0\\x48\\x14\\x13\\x39\\x10\\x01\\x18\\x4b\\x32\\x5c\\x43\\x71\\xb3\\xa5\\xda\\x0f\\x03\\x34\\x79\\x3c\\x6d\\xad\\x9e\\x06\\xcf\\x94\\xda\\xea\\xd2\\xe2\\x42\\xaf\\xda\\xac\\xb4\\x2a\\x92\\x2c\\x19\\x09\\xf1\\xa2\\x99\\x35\\x11\\x42\\x78\\x22\\x04\\xae\\x3a\\x9d\\x57\\x5f\\xe2\\xf7\\x2a\\xb0\\x99\\x95\\xea\\x10\\x0e\\x9b\\xda\\xec\\x29\\xa0\\x3e\\x4b\\x37\\x78\\xbd\\x1e\\x8f\\x9b\\x46\\x9c\\xd9\\x96\\x39\\xb7\\xad\\xa9\\x2c\\x59\\x74\\xfd\\x8c\\x9a\\x15\\x0e\\xc7\\x70\\xf5\\x8c\\x1b\\x16\\x15\\x57\\xae\\xbe\\xad\\xb7\\x7e\\x7a\\xb9\\x37\\xd3\\x05\\x31\\xae\\xcc\\x82\\xc0\\x8c\\xda\\x77\\xb4\\x0d\\x9b\\x17\\x74\\x5a\\xb2\\x8b\\xf6\\x6c\\x5e\\x9a\\xdf\\x37\\xb8\\xa2\\x9a\\x24\\x9b\\xcc\\x47\\xb5\\xb6\\xbc\\x24\\x6e\\xc4\\xb7\\xf8\\xd6\\x85\\xc1\\xf9\\xbd\\xd7\\xf5\\xe5\\x15\\x16\\x16\\x16\\xe6\\xf5\\x5d\\xd7\\xcb\\xdc\\xb4\\xf0\\xd6\\xc5\\xbe\\xd3\\xbd\\x43\\xc1\\xf9\\x1d\\x8d\\xcd\\x9d\\xf0\\x12\\xa9\\xe8\\x6c\\x6e\\xec\\x60\\x6e\\x1a\\xea\\x85\\xbf\\xed\\xb5\\xba\\x6c\\xb9\\xde\\x44\\xeb\\xf0\\x42\\x9b\\xcb\\x4a\\xae\\xc9\\xac\\xb3\\xf5\\x0e\\xa6\\x96\\x78\\x5d\\xb1\\x52\\xbe\\xe2\\xd8\\x39\\x7c\\x9c\\xfb\\x0b\\x2a\\x41\\xd3\\x50\\x1f\\x7a\\x2c\\xa0\\xac\\x83\\xc8\\xa8\\xbe\\x30\\x5f\\xa7\\x40\\x2c\\x4c\\x69\\x1c\\x71\\xb4\\x75\\x05\\x4a\\x50\\x6c\\x24\\x8a\\x8c\\x45\\x61\\xf6\\x52\\xb6\\xc6\\xc6\\x44\\x8a\\x86\\x40\\x74\\x0f\\x8a\\x8e\\x4e\\x6d\\x1c\\x67\\xb0\\x71\\x32\\x83\\x93\\x03\\xfe\\x8b\\x1f\\x17\\x67\\x27\\x32\\x34\\x3b\\xb1\\x93\\x66\\xe7\\xa2\\x87\\xbb\\x03\\xfa\\xd2\\xd2\\x99\\xdd\\xa5\\xd3\\x4a\\x3b\\x5a\\x9a\\x6a\\xaa\\x02\\x65\\x5a\\xab\\xda\\xfe\\x73\\x26\\x28\\x74\\x72\\x89\\x2b\\xd4\\x1d\\x6a\\xda\\x49\\x4d\\xd5\\x4b\\x27\\x09\\x4f\\x9a\\x24\\xdb\\x94\\xab\\x86\\x4a\\x7d\\xb3\\xd7\\x07\\xea\\x57\\xa6\\xa7\\xaf\\xa8\\xaf\\x58\\x3f\\xdb\\x57\\xba\\x60\\x6f\\x83\\x21\\x2b\\x35\\xd6\\x9e\\x95\\x64\\xd5\\x44\\x9f\\x8d\\xd5\\xdb\\xf4\\xce\\xb4\\xd8\\x54\\xa7\\xe1\\x57\\xae\\xc6\\x0d\\x03\\x53\\xad\\x39\\xfe\\x7d\\x5b\\x97\\xa7\\x97\\x97\\x07\\xea\\x5a\\xb3\\x49\\x85\\x3c\\x5b\\xb8\\x25\\xb7\\xff\\xf0\\x5c\\xb2\\xa3\\x7b\\x57\\xa7\\xb3\\x65\\xca\\x94\\x16\\x67\\xe7\\xae\\x6e\\xd8\\x36\\xf7\\x70\\x7f\\xee\\x2b\\x89\\x59\\xcd\\x7e\\x72\\x63\\x7b\\x73\\xb4\\xc1\\xeb\\xfc\\xf6\\x5b\\xa7\\xd7\\x10\\xdd\\xdc\\x0e\\x43\\xfe\\xe6\\xac\\x44\\xf8\\x60\\x7c\\xce\\x12\\xf5\\x69\\xfa\\x44\\xb2\\x7b\\xc2\\xac\\x31\\xa8\\x79\\xec\\x1c\\x7e\\x48\\x10\\x90\\x80\\xb2\\xd0\\xea\\x27\\x14\\x80\\x05\\x90\\x21\\x6e\\xad\\x88\\x01\\x1e\\x98\\x05\\x28\\xd4\\x05\\x30\\x3a\\x2a\\x82\\xa5\\x0e\\x0d\\x10\\xb7\\x3a\\x07\\xb2\\x38\\xb6\\x49\\xf7\\xf1\\xc3\\x3f\\x7e\\x63\\x77\\x40\\x15\\x11\\x11\\x91\\x15\\x91\\x95\\x61\\x57\\x9a\\xd5\\x16\\x1b\\x45\\xf6\\xa7\\xce\\x78\\xb5\\x49\\x6d\\xf6\\x98\\xb8\\x9f\\x76\\x52\\x83\\xc0\\x7c\\x41\\xfe\\xf2\\x04\\xf9\\x3b\\x7b\\xcf\\x95\\xbd\\xd5\\x82\\x30\\xbc\\x6d\\xdb\\x99\\x9f\\xf4\\x58\\x8b\\x36\\x1d\\xf5\\x59\\x73\\x27\\xe9\\xd8\\xd7\\x4f\\x1a\\xbb\\x5d\\x1e\\xbb\\x04\\x57\\x48\\x53\\x7f\\xa5\\x41\\xe9\\x2e\\x1e\\xbd\\x23\\x34\\xfa\\x9f\\xba\\xf5\\xa7\\xc6\\xff\\x33\\x1c\\xe1\\xc0\\x86\\xc6\\xbf\\xff\\x8a\\x1e\\x71\\xee\\xe4\\xf0\\xb6\\x6d\\xe4\\xfb\\x9f\\x76\\x8b\\x23\\x40\\x5b\\xc8\\x61\\x3c\\x9d\\x7b\\x1d\\xa5\\xcb\\xd5\\x1c\\x18\\x1a\\x42\\x95\\x53\\xa1\\xe6\\x88\\x21\\x2f\\x2f\\xdb\\x94\\x91\\xae\\x72\\xd2\\xec\\x0e\\x90\\x8a\\x49\\xc7\\xeb\\xd0\\xc7\\xe1\\xba\\xdd\\x6e\\x76\\x2e\\x39\\xb3\\xe8\\x81\\xf5\\x81\\xba\\x5d\\xcf\\xac\\x5c\\xf5\\xd8\\xe6\\x0a\\x72\\x66\\xce\\x12\\x5f\\x87\\x2f\\xc5\\x52\\xb7\\xb0\\xe6\\x71\\x72\\x18\\xfa\\x12\\xe6\\xdf\\xfc\\xab\\x75\\x90\\xbe\\xfb\\xe3\\xdb\\x66\\x56\\x6e\\x7f\\x7e\\xe3\\x81\\x7d\\x85\\xf3\\xaf\\x6e\\x27\\x7f\\x6e\\xdf\\x3f\\xbf\\x88\\xd2\\x74\\x92\\x5c\\x8f\\x67\\xe2\\x16\\x64\\x41\\x1d\\xe1\\xbe\\x90\\x1a\\x0a\\xbf\\x11\\xa2\\x6c\\x3c\\xbe\\x23\\x77\\x70\\xd0\\xcb\\xb8\\xcb\\x97\\xa5\\xdc\\xc8\\x36\\x75\\x3f\\x95\\x61\\x99\\x44\\xfb\\xa5\\x40\\x2e\\x12\\x66\\x02\\xdb\\x41\\xce\\xce\\x3d\\x32\\xe0\\x0e\\x6c\\x79\\x66\\x63\\xff\\x9d\\xab\\x2b\\xc8\\x0f\\xba\\xec\\xaa\\xcc\\xb2\\x0e\\xb7\\x46\\xed\\x9e\\x5e\\x3e\\x42\\xae\\x87\\x01\\x45\\xdf\\xc1\\xc7\\x07\\x27\\xc5\\x08\\x27\\x74\\x2a\\x17\\xe9\\x5f\\x8c\\x10\\xbe\\x9e\\x2b\\x93\\x72\\xbc\\x94\\x89\\x8a\\x84\\xd8\\x98\\xe8\\xa8\\xc8\\x08\\x81\\x67\\x19\\x88\\x97\\x60\\xc1\\x24\\x30\\x48\\x2d\\x6a\\x4a\\x52\\x31\\xbc\\xc6\\x09\\x9c\\x60\\x65\\xcd\\x4a\\xab\\x8f\\xa3\\x3f\\x6e\\x96\\x13\\xac\\x4c\\x37\\x98\\xea\\xc9\\x47\\x4f\\x3c\\xf2\\x29\\xf9\\xb8\\x0e\\xac\\x6f\\x93\\xbf\\x4c\\x01\\xf3\\x33\\x0f\\x9e\\x06\\x6b\\x13\\xf9\\x04\\x5e\\x79\\x70\\xfb\\x03\\xe4\\x15\\x38\\x78\\x62\\xfb\\x09\\x58\\x70\\x62\\xe7\\x09\\xa8\\x25\\x8b\\x4f\\x6c\\x7b\\x80\\x62\\x3d\\xda\\xf1\\x1d\\x63\\x3f\\x70\\x41\\x24\\xa0\\x03\\xd2\\x52\\xd6\\x51\\x2c\\xcc\\x41\\x0a\\xf4\\x38\\x84\\x41\\xae\\xd0\\xd1\\xb0\\x21\\x0d\\x40\\x1b\\xbe\\x8e\\x56\\x5d\\x74\\xd9\\x44\\x81\\xae\\x19\\x60\\x56\\x5e\\x7a\\x35\\x90\\x3c\\x7e\\x01\\x89\\x17\\xa6\\xd3\\x6a\\x27\\x0c\\x2c\\xb0\\x2d\\xe2\\xb1\\x1f\\x83\\x10\\x12\\x90\\xa0\\x50\\x28\\x38\\x5e\\xeb\\x04\\xb5\\xdd\\x67\\xb2\\x6b\\xd5\\xc1\\x0f\\x1e\\x05\\x26\\x1d\\x4e\\x72\\x69\\x5b\\xe1\\xeb\\x25\\xf0\\x67\\x8a\\x9f\\x79\\x81\\xd3\\x8e\\xfd\\xc0\\xab\\xa5\\x1c\\xa3\\x50\\xbd\\x16\\xa6\\x36\\x28\\x27\\x9e\\xaf\\x4c\\x13\\x20\\x8d\\x4a\\x11\\x1f\\x13\\x1d\\xc1\\x23\\x2d\\x68\\x79\\xc9\\x45\\x80\\xdd\\xf9\\x1a\\x41\\x30\\xcb\\x9d\\x87\\xcc\\x66\\x7b\\x30\\x33\\xb7\\xb3\\xad\\xa9\\xa1\\xc1\\xb1\\x7e\\x03\\x03\\xfb\\x8a\\x73\\x9c\\x73\\x57\\xef\\x6b\\xcb\\x61\\xb8\\x5f\\x52\\xc1\\xb7\\x60\\x85\\x35\\xd1\\x9b\\x6b\\x73\\x59\\xf7\\x8a\\x7c\\xfa\\x8e\\x53\\x92\\xaf\\xf8\\x1e\\xc4\\xc9\\xbd\\x04\\x11\\xa6\\x50\\x3a\\x0b\\x15\\xc0\\xab\\x9d\\x60\\xd7\\x0a\\x5a\\x21\\xf8\\x2f\\x78\\x11\\xfc\\x53\\xb9\\x4f\\x37\\x72\\x1b\\x57\\xcd\\x40\\x10\\xfc\\x3d\\xa7\\x24\\xef\\xd0\\x67\\x14\\x81\\x38\\x8e\\x01\\x09\\x7d\\x67\\xa1\\x52\\x7a\\xc4\\x67\\xf7\\x69\\x89\\xb5\\xbd\\x18\\x5e\\x00\\x4e\\x39\\x63\\xd5\\x46\\x6e\\x23\\x42\\x11\\x3f\\x6c\\x23\\xa7\\x18\\x3d\\xf7\\x08\\xcd\\xed\\xae\\x40\\x9d\\x68\\x29\\xda\\x85\\x6e\\x44\\x8f\\x40\\xa9\\x54\\x6a\\x39\\x98\\xc6\\x32\\xc0\\x60\\x06\\xf0\\xb0\\x55\\xab\\x36\\x09\\x1c\\xc7\\x47\\xf0\\x5c\\xc4\\xb0\\x2d\\x39\\x29\\x3d\\x9a\\x8b\\x8c\\x8a\\x89\\x8a\\x8c\\x19\\xb6\\x28\\x19\\x45\\xa2\\x62\\x95\\x0a\\xb0\\x06\\x78\\x0e\\xf3\\x03\\x3a\\x88\\xd0\\x43\\x54\\x64\\x44\\xd4\\x40\\x0a\\xc4\\x18\\x20\\x2e\\x36\\x26\\x6e\\x00\\x25\\xa0\\x44\\x45\\x42\\x62\\xb8\\x35\\xbc\\xa6\\xd1\\x6e\\x4c\\x35\\xc7\\x73\\xb1\\xb1\\xda\\xd8\\xa6\\xe4\\xc0\\xc2\\x9f\\xf3\\x22\\xf9\\x89\\xb8\\x84\\xb8\\xd8\\x84\\xff\\xe3\\x5b\\x99\\xa6\\xee\\x40\\xdf\\xf1\\xe3\\xbb\\x77\\x2f\\x5b\\xd6\\xd5\\x55\\x59\\x99\\x95\\xa5\\xd1\\x20\\x74\\xfc\\x91\\xe3\\x8f\\x9c\\xb8\\xff\\xee\\xbb\\x6e\\xbb\\x65\\xf7\\x8d\\xbb\\x6f\\x3c\\x7a\\xf8\\xd0\\xc1\\xfd\\xfb\\x96\\xed\\x5a\\xb6\\x6b\\xdb\\x96\\x0d\\xeb\\x57\\xaf\\xec\\x5a\\xda\\xb5\\x74\\xe1\\xd0\\xc0\\xdc\\x39\\xb3\\x2a\\x3b\\x2b\\x3b\\x3b\\xda\\x9b\\x9b\\xea\\x6b\\xb3\\x2a\\xb2\\x2a\\x4a\\x8b\\x7d\\xde\\xfc\\x5c\\x8d\\x53\\xe3\\xb4\\x5b\\x4d\\x69\\x29\\x7a\\x19\\x80\\xd8\\x21\\x2e\\xa7\\xd0\\x0e\\x36\\x87\\xd3\\x46\\x2e\\xf9\\x44\\xf9\\x33\\xee\\xf9\\xbf\\x7d\\x72\\xe9\\x37\\x07\\x97\\xa4\\x7a\\x5b\\xf2\\xf2\\x5a\\x7c\\xa9\\xc3\\xd1\\x5a\\x5b\\x72\\xb2\\x55\\x1b\\x05\\x7f\\x49\\xf5\\xb6\\xe4\\xe6\\xb5\\xfa\\x52\\x57\\x44\\xe9\\x6c\\xc9\\x7a\\xab\\x36\\x6a\\x4a\\xaa\\xaf\\x25\\x97\\xde\\x24\\x7f\\x12\\x4d\\x7e\\x45\\x6f\\x9a\\xf8\\x51\\xb0\\x6d\\xd2\\x57\\xd1\\x8f\\x9a\\x53\\x7d\\x17\\x7d\\x3b\\xf9\\xcb\\x25\\xdf\\xe5\\xa1\\x9f\\x4c\\x7c\\x1f\\xfe\\x67\\x46\\x4d\\x7e\\x4a\\x4a\\x7e\\x4d\\x86\\xca\\x92\\xa2\\x50\\xa4\\x58\\x54\\xe4\\xdc\\x25\\x9f\\x44\\x5e\\xfc\\x49\\xf0\\xfb\\x4b\\xee\\x39\\x7d\\xf1\\x27\\x9c\\xfe\\xff\\xf2\\x3d\\x08\\x45\\x7c\\xff\\x36\\x19\\x80\\x48\\xee\\x0d\\x84\\x51\\x24\\x8a\\x43\\x4a\\xa4\\x43\\xa9\\x28\\x1d\\xd9\\xd1\\xd2\\x80\\xd1\\x94\\xa6\\x61\\x59\\xc6\\x9e\\x9e\\xaa\\xd3\\x2a\\x13\\x15\\xf1\\x71\\xb1\\x31\\x51\\xb1\\xc0\\xda\\xac\\x29\\xc9\\x18\\x41\\xa8\\x0f\\x92\\x96\\x82\\x94\\x76\\x53\\xbf\\x2a\\x0e\\x1d\\xb9\\xf4\\x04\\x50\\x23\\x86\\x03\\x16\\x18\\xb6\\x7f\\xe2\\xe7\\xdd\\x81\\x44\\x8e\\x43\\x88\\x8b\\xe4\\x22\\x23\\x04\\x84\\x11\\x4e\\xe4\\x79\\xb5\\x93\\xd3\\xb2\\x66\\x25\\x6b\\x57\\xba\\x59\\xf0\\x71\\x6a\\x2b\\x27\\x58\\x3d\\x1c\\xf8\\xac\\x5a\\x0e\\x04\\xce\\x6e\\x65\\xed\\xac\\x4f\\x09\\x5a\\xa5\\xc0\\x06\\x7f\\x1d\\xbd\\xb1\\xaf\\xd6\\x1f\\xb3\\xb1\\xaf\\x96\\x31\\xc4\\x42\\x13\\xb9\\xf7\\xc2\\xea\\x58\\xf2\\x18\\xcc\\x64\\x6f\\x66\\x20\\x50\\x4d\\x3e\\x1c\\xfd\\x27\\x43\\x5e\\xae\\x01\\x9b\\x53\\x71\\xa4\\xe2\\x0d\\xb6\\x4f\\x71\\xb4\\xf2\\xf5\\x92\\x38\\xf2\\x10\\xf4\\xe3\\x3b\\xe2\\x60\\x2a\\xb9\\x8d\\x28\\x62\\x36\\xcf\\xad\\x2b\\x16\\xff\\x03\\x0f\\x27\\xdc\\x58\\xfd\\xe6\\xe8\\x41\\xc5\\x8d\\x35\\x6f\\x32\\xa7\\x19\\xa8\\xad\\x21\\x7f\\x18\\xfd\\x2b\\x43\\x9e\\xab\\x03\\xa7\\x54\\xef\\x73\\x14\\x21\\x7c\\x90\\x62\\x6b\\x26\\x22\\x23\\xf2\\x06\\xdc\\x2c\\xc3\\xb0\\x18\\x00\\x51\\x40\\x75\\x0e\\x18\\xc4\\x32\\xe1\\xc2\\x84\\x50\\x51\\x17\\xc6\\xc6\\x54\\xb5\\x12\\x27\\x62\\x85\\x49\\xcd\\x8b\\xc7\\x89\\x00\\x3e\\x9a\\x54\\x10\\x2e\\xb5\\x1e\\xc7\\xb8\\xc3\\xb3\\x77\\x90\\x69\\xdb\\x09\\x21\\x67\\xe0\\xbf\\xd7\\xbd\\x7c\\xd5\\x94\\x29\\x57\\xbd\\xbc\\xee\\x83\\x0f\\x4a\\xba\\x8a\\x53\\x53\\x8b\\xbb\\x4a\\x3e\\x80\\xc3\\x45\\x4c\\x59\\x31\\xa9\\x0a\\x9e\\xe5\\x46\\x6a\\x36\\x3d\\xb8\\x70\\xee\\x3d\\x1b\\xaa\\x4f\\x5b\\xca\\xda\\xb3\\xdc\\x5d\\x95\\x36\\xc4\\x4a\\x7d\\xaa\\x70\\x0b\\xc5\\x3b\\x75\\xa2\\x05\\x01\\xb5\\x02\\x30\\x63\\x4e\\x67\\x19\\xcc\\xe1\\x18\\x40\\x9c\\xc8\\x76\\x2c\\xbb\\x4f\\x92\\x51\\xa8\\x11\\x89\\x2e\\xdc\\x8e\\xca\\xd0\\x28\\xa5\\xcf\\x26\\xd3\\x6e\\x56\\xe3\\xbe\\x60\\xe3\\x25\\x77\\x84\\x7a\\x55\\x39\\x78\\x5e\\xef\\xe4\\x04\\xf0\\x59\\x27\\xf4\\xab\\xd2\\x5e\\xa9\\x5f\\x55\\xe5\\x32\\x32\\xb0\\x04\\x9e\\xf4\\x2d\\xbe\\x65\\xb0\\x93\\x76\\xad\\x82\\xa8\\xfc\\x7d\\x3d\\x43\\xb7\\x2c\\xf1\\x91\\xb3\\x49\\x9e\\x8e\\xe2\\x29\\xb3\\xf5\\xfa\\xd9\\x8d\\xc5\\x1d\\x05\\xba\\x88\\x76\\x78\\xad\\xbd\\x8b\\xb6\\xae\\xf2\\x12\\x86\\xfb\\xaf\\x45\\x25\\x95\\xe1\\xce\\x55\\x05\\xa4\\xc4\\x2d\\x75\\xae\\x12\\xcf\\xf3\\x63\\x08\\xe1\\x21\\xc1\\x88\\x22\\xa5\\x2e\\xdd\\x0c\\x6d\\x51\\x23\\xaf\\xbf\\x70\\xe2\\x66\\x2e\\x75\\xd0\\x99\\xd5\\xa1\\x0c\\xe5\\x21\\x53\\x70\\x31\\x39\\xc3\\x3c\\x0d\\x5a\\xfc\\x6b\\xb8\\x50\\xc0\\x8d\\xc0\\x72\\xda\\xd7\\x86\\xd6\\xea\\xad\\xb9\\xcc\\x77\\xe9\\xae\\xfc\\x5d\\xbd\\xf6\\xe0\\x4a\\x72\\x8e\\x79\\x02\\xd4\\x6c\\x37\\x8c\\xde\\x87\\xfd\\x50\\x4c\\x31\\x70\\xc9\\xa3\\xf8\\x61\\x6e\\x44\\xee\\xe3\\x06\\x08\\x73\\x80\\x07\\x28\\xb6\\x15\\x05\\x87\\x92\\x83\\x6c\\xa1\\xbc\\x5f\\x87\\x42\\x67\\x0a\\x15\\x3a\\x87\\xd3\\x18\\x3c\\xf9\\x65\\xd8\\xe3\\xb5\\xd1\\x80\\x15\\x45\\xca\\x7d\\xf0\\xea\\x8f\\x6f\\x99\\x51\\xb4\\xfd\\x9d\\xc3\\x85\\xed\\x45\\x16\\x95\\x00\\xf7\\xde\\xfa\\xa0\\x04\\x9e\\x4b\\xd6\\x37\\x1c\\xfe\\xf3\\x0d\\xcb\\xdf\\xbb\\x6b\\xe0\\x0f\\x69\\x9e\\xfa\\xd6\\x0e\\xdb\\x73\\xcf\\x04\\x6f\\x93\\xea\\xf3\\x8e\\x92\\xcf\\xf0\\x2e\\x9a\\x13\\xe5\\x0c\\x38\\xe2\\x62\\x19\\xb6\\x2e\\xdc\\x27\\x4f\\x86\\x46\\xa0\\x69\\x9c\\x5a\\xb6\\x29\\x59\\x9f\\xa4\\xd3\\xaa\\x4d\\x09\\x9c\\xb8\\x48\\x4d\\x6a\\x4a\\x86\\x26\\x04\\x4c\\x25\\xc7\\xcd\\x4c\\xb8\\x30\\xb8\\xf2\\xc4\\xc6\\x77\\x8e\\x74\\x40\\x66\\xcf\\xc1\\x81\\xe1\\xa1\\x05\\xf6\\x29\\x43\\x81\\x13\\x52\\x99\\xc7\\x2b\\xa5\\x1b\\x9e\\xda\\x50\\xbc\\x6f\\xfb\\x52\\xe3\\x0b\\x99\\xbb\\xe7\\x05\\xe6\\x06\\x4c\\xa4\\x09\\xfb\\x11\\xa0\\xbd\\x08\\x71\\x5a\\x6e\\x04\\xa9\\xd0\\x92\\x40\\x34\\x50\\x84\\x86\\x44\\xe0\\x45\\x5b\\xd3\\x48\\x1d\\x79\\xbc\\x68\\x97\\xf0\\xd0\\x1f\\x19\\xc1\\x70\\x1c\\xad\\xf9\\xa4\\x90\\x05\\xba\\x46\\x2c\\x25\\xfa\\x89\\xeb\\x31\\x74\\x0f\\x12\\x10\\x83\\x04\\x26\\x74\\xaf\\x7c\\x07\\xc5\\xdf\\x44\\x2a\\xa4\\x92\\x83\\xa6\\x89\\x51\\x7c\\x8a\\x33\\x92\\x31\\xb1\\x66\\xb5\\xd9\\x23\\x87\\xd7\\x69\\xdc\\x14\\xff\\x9d\\xfc\\x27\\xf4\\x93\\x9b\\x82\\xa9\\xf7\\xb6\\x93\\xbf\\x81\\xbe\\xfd\\x5e\\xc5\\x57\\xdc\\x48\\x70\\xc5\\xe8\\xc7\\x4c\\xcf\\xe7\\x9f\\x07\\xef\\xe6\\x46\\x82\\xf7\\x03\\x90\\x31\\xa6\\x13\\x01\\xda\\x8d\\x10\\x7e\\x89\\xd6\\xe6\\x14\\x07\\x0a\\x25\\xba\\x23\\xe0\\x62\\x42\\xa2\\x22\\x19\\x8e\\x0b\\x93\\x3a\\x89\\x0a\\x45\\x62\\x34\\x9f\\x7a\\x31\\x19\\x1e\\xb7\\xda\\xad\\xc4\\x27\\xc8\\x1f\\xa1\\x8c\\xdc\\x7c\\x32\\xff\\xc6\\x1a\\x72\\x16\\x34\\x35\\x37\\xba\\xee\\xc7\\xfe\\x60\\x30\\xf8\\x16\\x1c\\x7d\\xf0\\x41\\xa9\\x30\\xe1\\xe5\\x97\\xe1\\x16\\x49\\x67\\x8d\\x47\\x08\\xff\\x86\\xd6\\xf3\\xb9\\x02\\x99\\x31\\x93\\x2b\\xb3\\x18\\x86\\xed\\x96\\xca\\xcf\\xf8\\x09\\x05\\x10\\xe1\\xe8\\xb9\\x94\\x9c\\xec\\x56\\xd2\\x1a\\x88\\x63\\x7e\\xf2\\x05\\x79\\x8b\\x69\\xf5\\xfc\\x0e\\x6a\\xc8\\xef\\xa0\\x9d\\xbc\\xc0\\xb4\\x06\\x4f\\xe2\\x97\\xbe\\x09\\xbe\\xc0\\x54\\x05\\x6b\\x83\\x51\\x08\\x50\\x32\\x42\\xf8\\x2d\\x9a\\xef\\x7b\\xe5\\x77\\xe9\\x7e\\xc6\\xbb\\x1e\\xa9\\x26\\x7f\\x25\\xbf\\x66\\xda\\x6a\\x6f\\x84\\xb9\\xe4\\x2b\\xc8\\x25\\x07\\xe0\\x6a\\xb2\\x8e\\xad\\xff\\x6f\\xb2\\x0c\\x6e\\x20\\x28\\xf8\\x06\\x02\\x54\\x8e\\x10\\x7e\\x90\\xf6\\xeb\\xb2\\x07\\x2c\\xe2\\x72\\x64\\x11\\xee\\xa7\\x1d\\xf1\\x24\\x88\\x82\\x89\\xa5\\xf9\\x61\\x1c\\x00\\x93\\x3a\\x9c\\x90\\x05\\x4d\\x20\\x30\\xdd\\xe4\\x71\\xf2\\x4f\\xf2\\x3d\\xf9\\x27\\xc4\\xb2\\x73\\x98\\xa9\\xdf\\x5c\\xa8\\x90\\x40\\x07\\x64\\x7c\\xdb\\xfb\\xb0\\xff\\x0a\\xdf\\xaf\\xfb\\xe9\\xef\\x5f\\x0d\\x51\\x4c\\x26\\xf9\\x96\\x7c\\x46\\xbe\\x23\\x9f\\x81\\x81\\xb9\\x06\\x1e\\xf9\\x66\\xf4\\x29\\xda\\xbf\\x4e\\x5c\\xd7\\xf9\\xe4\\x2e\\xfc\\x10\\x8d\\xf9\\x66\\x07\\xc4\\x23\\x42\\x2a\\x4c\\x93\\xfb\\x19\\x70\\x9c\\x8c\\xbb\\xc1\\x03\\xcd\\x87\\x17\\x97\\x43\\x8a\\x42\\x9f\\x26\\x25\\xdb\\xd2\\x8c\\x41\\x2c\\xd8\\xcb\\x38\\x4f\\x41\\x36\\xa6\\x19\\x20\\x94\\x81\\xcc\\xdf\\xd5\\x6b\\xee\\x98\\x97\\xad\\x74\\x56\\xf5\\x6d\\x6d\\x63\\xac\\x79\\x46\\x85\\x00\\x4c\\xa4\\xc2\\x90\\x9d\\xa6\\x24\\xdf\\xde\\x4d\\xbe\\x65\\x5e\\x60\\x2b\\x61\\xc1\\xbd\\xef\\x2d\\x6e\\x3a\\xbc\\x6b\\x79\\x7b\\x0e\\x9c\\x06\\x93\\xaf\\xb6\\xb9\\xd5\\x9c\\xdc\\xd8\\xd6\\x52\\x66\\x87\\xe0\\x08\\x7e\\xea\\xc2\\x94\\x10\\xce\\xf2\\x34\\x72\\x8e\\xe2\\xff\\xa4\\x22\\x77\\x20\\x57\\x4d\\xfb\\x19\\x44\\x47\\x31\\x50\\x87\\x44\\xd3\\x00\\xc1\\x30\\x62\\x18\\x59\\x02\\xc8\\xf9\\x8d\\xa9\\x29\\x54\\x08\\x68\\x12\\x38\\x51\\x63\\x0e\\x01\\xd3\\x95\\xb1\\x14\\x4f\\x34\\x4c\\xe2\\x0f\\x83\\xb7\\x2d\\x2f\\x71\\xb4\\xad\\x6d\\x5a\\x93\\xe9\\x35\\xc6\\x44\\xa7\\xf9\\x9c\\xe4\\xdb\\x43\\xe4\\x7f\\x98\\x7b\\x98\\x3b\\xd8\\xa6\\x9d\\x8f\\x0c\\x55\\x1d\\xdd\\x35\\x90\\x78\\x2a\\xa1\\xa8\\x7e\\x6a\\x86\\x73\\x5a\\x8d\\x0b\\x93\\x36\\x76\\xca\\xe8\\x53\\x72\\xce\\x7d\\xd7\\xd8\\x39\\xfc\\x30\\xf7\\x3a\\x8d\\x6e\\xac\\x6d\\x1c\\xc9\\x6c\\xeb\\x0a\\x44\\x7b\\x73\\x19\\xcc\\xb2\\x14\\x91\\x2d\\x79\\xfc\\x2f\\x9e\\x62\\xcb\\x89\\x37\\x24\\x09\\x10\\x42\\x37\\x49\\xa5\\xec\\x0c\\x67\\xab\\x25\\x07\\xcc\\x13\\xaf\\xa1\\xf0\\x25\\x09\\x3f\\x44\\xbe\\xab\\x3b\\x10\\x9d\\x95\\x94\\x91\\xa4\\x48\\x92\\x52\\x9d\\xb9\\xcb\\xfb\\x8e\\x44\\x0b\\xd3\\x66\\x1b\\x37\\x9c\\x15\\x2a\\x5e\\xd0\\xb8\\x41\\x45\\x9b\\xff\\xc8\\x69\\x88\\x6a\\xfc\\xf0\\xf4\\x63\\xd5\\xde\\xf5\\xd5\\x5b\\x7f\\x7b\\xa4\\xbd\\x70\\xe8\\xba\\x4e\\xad\\x59\\x17\\x6b\\xa9\\x9e\\x17\\x88\\x99\\xd2\\x9a\\x3d\\x7d\\xfd\\x94\\xd6\\x1d\\xb3\\xdd\\xc5\\x3e\\x5f\\x2d\\x99\\xe5\\xb0\\xe9\\xf4\\x51\\x89\\x7a\\x45\\x6a\\x8a\\xc2\\x98\\x6a\\x34\\xf5\\xdd\\x77\\x7a\\x37\\x54\\xae\\x79\\xfb\\xc8\\xf4\\xaf\\x72\\xa6\\xad\\xaa\\x22\\xcf\\x4f\\x3f\\x34\\xe4\\xef\\xfa\\x7c\\x1f\\x04\\x16\\x3c\\xba\\xab\\xb1\\xe5\\xda\\x57\\x57\\x93\\xf7\\x36\\xff\\x69\\x46\\x02\\xfc\\x66\\xfa\\x0d\\xc5\\xbe\\xab\\x5a\\xa0\\xa9\\x71\\xb0\\x34\\x79\\xf5\\x3e\\xca\\xb3\\xaa\\xb1\\x2f\\xf0\\xef\\x29\\xce\\x5b\\x05\\xaa\\x0c\\x94\\xbb\\x81\\xe5\\x5d\\xc0\\x89\\x3c\\xe2\\x58\\x49\\x92\\x86\\xd3\\xc5\\x8d\\xe3\\x8d\\x68\\x0c\\xd2\\xa9\\x2d\\xf3\\x20\\x2b\\xc9\\x91\\x94\\x64\\xa1\\x8b\\x9c\\xbb\\x08\\x8d\\x58\\xcd\\x4b\\x50\\xce\\xee\\x70\\x13\\x67\\xea\\xf7\\x9d\\x30\\xfa\\xf1\\x30\\xe7\\xef\\xe7\\x9f\\xa8\\x2f\\xde\\xd3\\xb0\\xe5\\xdd\\xc3\\xed\\xa5\\xcb\\x8e\\xcf\\x29\\xa9\\xb2\\xd6\\x0c\\x94\\x79\\x0b\\x72\\xbb\\xb7\\x34\\xb7\\xed\\x9a\\x95\\x5f\\x1b\\xa8\\x9f\\x41\\x22\\xf2\\x73\\xf3\\x3d\\x71\\x49\\x56\\x9d\\xce\\xaa\\x8f\\xd3\\x25\\xeb\\x75\\xfa\\xe9\\x47\\x7f\\xb5\\x76\\xf6\\xe0\\x43\\xdb\\xeb\\xbf\\x10\\x76\\x2e\\xe8\\xad\\x59\\x3b\\x23\\xaf\\xfa\\xce\\xd9\\x47\\xba\\x6f\\x1c\\x2e\\xaf\\xdb\\x74\\x5f\\xff\\xa1\\xf9\\x0f\\x57\\xc7\\xc3\\xb6\\xfa\\x4d\\xf9\\x19\\xeb\\xa7\\x5c\\x9f\\xd5\\x52\\x64\\x32\\x14\\xd4\\x89\\x67\\x26\\x90\\xdb\\xf1\\x3f\\x68\\x4d\\xaa\\x33\\xe0\\x40\\x3c\\xcb\\x4f\\x95\\xda\\x14\\xe0\\xb0\\x74\\x10\\x66\\x22\\x41\\xd0\\x0a\\x4d\\xa1\\x5c\\x19\\x1a\\xbf\\x31\\x7b\\x4c\\x72\\x33\\x4a\\x5a\\x3f\\xf3\\xe5\\x17\\xcc\\x87\\x1f\\x41\\x25\\x68\\x8f\\x25\\x90\\xef\\x83\\x09\\xf8\\xa5\\x6f\\xbe\\x19\\x2d\\xc2\\x4f\\x5f\\xa8\\x0d\\x9e\\x90\\x6b\\xf4\\x4d\\xe4\\x25\\x2a\\xe7\\x2f\\xf7\\x1e\\xdd\\xcf\\x7e\\xcf\\x47\\xcf\\x33\\x7b\\x1f\\x04\\x05\\x18\\x8f\\x28\\xc9\\xb7\\xc1\\x52\\x76\\xca\\x37\\xdf\\x04\\xef\\x65\\x1b\\x46\\x1f\\x0f\\xbe\\x47\\x6b\\x75\\x18\\x5a\\xc3\\x56\\x47\\xf5\\x47\\x23\\x3a\\x1e\\x88\\x32\\x00\\x07\\x02\\xb0\\x1c\\xd3\\x20\\x75\\x2b\\x30\\x21\\x51\\xe7\\x40\\x0b\\x10\\x87\\x58\\xc4\\xb1\\xf3\\x04\\x09\\x28\\x03\\xd1\\x0c\\x55\\x29\\x0a\\x29\\xe9\\x6e\\xe9\\xd2\\x8d\\xcc\\xf0\\x8f\\xdc\\x19\\xb0\\x22\\xc0\\x1c\\x06\\x6e\\xf8\\x4a\\x37\\x4b\\xf1\\xcb\\xee\\x40\\x3c\\xc6\\xd8\\x88\\x8d\\x1e\\xb5\\x35\\x51\\x1c\\x18\\x2d\\x9c\\x73\\x5f\\x01\\x7c\\x80\\xb9\\xe9\\xee\\xbb\\xe1\\xc1\\xcb\\x03\\x10\\x80\\x91\\xf9\\x16\\x7e\\xf9\\x23\\x20\\x04\\x94\\x07\\xab\\x45\\xad\\x03\\xfb\\x11\\x8b\\x92\\xd1\\x2f\\x02\\x51\\x49\\xc0\\x01\\x3f\\x81\\x07\\xe9\\x22\\xd5\\x1c\\x2c\\xb8\\x88\\x15\\xbc\\x54\\x87\\x17\\x62\\x42\\x02\\x2d\\x87\\x98\\x34\\xbe\\xcb\\xdf\\x1a\\xb0\\x5c\\x89\\x0b\\x13\\x6f\\xeb\\xee\\x0e\\x44\\x29\\xad\\x6a\\xb3\\x7c\\x08\\x58\\xc5\\xf1\\x5f\\xb6\\x44\\x8a\\x79\\xe6\\xee\\xbb\\xe1\\xb6\\xcb\\x95\\x49\\xdd\\xcd\\x6c\\x1f\\xfd\\xf0\\x4a\\xb5\\x52\\xeb\\x10\\xc2\\x73\\xb8\\x11\\xa4\\x45\\x39\\x81\\x2c\\x16\\x58\\xd0\\x48\\x9d\\x90\\x64\\x4f\\x0a\\x75\\x06\\x50\\x20\\x08\\x29\\xfd\\x58\\x8b\\xb4\\x22\\x31\\x3c\\xaf\\x73\\xba\\xc3\\xdd\\x5f\\xb5\\xac\\x89\\x0d\\xe9\\xd3\\xeb\\xc0\\xec\\x1e\\x2a\\x5a\\xfe\\xe4\\xae\\x7a\\xe0\\xc9\\x9f\\x79\\x95\\xab\\xc1\\x5b\\x38\\x54\\xc0\\x8d\\x04\\x3f\\x8a\\x8e\\x2d\\xdf\\xf4\\xe4\\x5a\\x52\\x01\\x2f\\xf9\\xbb\\x4a\\xd2\\x12\\xa2\\x83\\xcb\\x10\\x62\\xc6\\xfe\\x30\\xf6\\x25\\x3e\\xc0\\xbd\\x86\\x9c\\xc8\\x87\\xa6\\x06\\x5a\\xe3\\x81\\x17\\x79\\xce\\x3b\\x00\\xb3\\x19\\x80\\x30\\x6e\\x40\\x3c\\x62\\x31\\xcf\\xf6\\x47\\x80\\x5c\\xe8\\x9d\\x2a\\xaf\\xa5\\x10\\xb8\\xb7\\x01\\x35\\xb9\\xb2\\x00\\xe5\\xe7\\x65\\xf9\\x5c\\x3e\\x4b\\x7a\\x6a\\x8a\\x5a\\x19\\x13\\x8d\\x9c\\xe0\\x8c\\xe4\\x55\\x4e\\x2e\\x3d\\x9b\\xb1\\x7b\\xb2\\x59\\x9f\\x9b\\xd7\\x68\\x69\\x12\\x23\\x56\\x0b\\x26\\xb5\\x81\\xd5\\xca\\x1d\\xf6\\x58\\x9a\\x6f\\x40\\x2b\\xac\\xcf\\x6e\\x3f\\x75\\x55\\x1d\\x94\\xcf\\xab\\x4a\\x89\\x7c\\x1b\\x54\\xa9\\x5c\\xfd\\xd6\\x87\\x16\\x77\\xef\\x1f\\xaa\\xcb\\x52\\x31\\xc1\\x4d\\x90\\x12\\x58\\xd4\\x6a\\xa9\\xaf\\x2c\\xd6\\xe6\\x95\\x3e\\x7b\\x3c\\xb7\\xc6\\xa9\\x06\\xe8\\x8f\\xb6\\x54\\x6b\\xfb\\xef\\xfb\\x6c\\x57\\x51\\x42\\xf5\\xa2\\xeb\\x66\\xd5\\xcc\\xd6\\xaf\\xfa\\xdd\\xed\\x73\\x0a\\x7a\\xb6\\x5c\\x7f\\xfb\\xd4\\x53\\xba\\xea\\x6d\\x73\\x8b\\x21\\x32\\x5e\\x15\\xfd\\xef\\xb4\\x2c\\xfc\\xab\\x92\\xde\\x75\\xfe\\x9c\\x9c\\xf9\\x1d\\x5e\\xc4\\x20\\xf5\\xd8\\x79\\x7c\\x3d\\x6e\\xa1\\x95\\x82\\xd3\\x03\\x53\\xe3\\x80\\xe7\\x38\\x60\\x79\\x0b\\x60\\xd6\\x2a\\x8d\\x19\\x18\\x8e\\x11\\x17\\xc6\\xc5\\x63\\x37\\x4e\\x1a\\x76\\x86\\x03\\x50\\xb6\\xcb\\xe1\\xce\\x70\\xa7\\x19\\xf4\\x49\\xaa\\xc4\\xe8\\x28\\x64\\x07\\x7b\\x78\\xd8\\xe2\\xa8\\x35\\xf2\\xa8\\x19\\xad\\x60\\x92\\xf3\\x65\\xc7\\x07\\x9d\\xcd\\x32\\xdf\\xcc\\xbd\\x6f\\x4b\\x93\\x50\\xda\\x5f\\x99\\xce\\x3c\\xc3\\xd9\\x6c\\x09\\x4d\\x2b\\xff\\xa3\\x67\\xd1\\x1d\\x4b\\x7c\\x00\\xc1\\xc7\\x84\\xb4\\x82\\x3a\\x97\\xab\\xca\\x97\\xad\\x5d\\x5f\\xf3\\xc6\\x01\\x8b\\xc7\\xa2\\xe1\\xc1\\xc1\\x28\\xcc\\x1e\\x55\\xfd\\x8e\\xc7\\x17\\x2b\\x6a\\x07\\x77\\x36\\xd7\\xf4\\xeb\\x7b\\x6e\\x59\\x55\\x39\\xf5\\xe0\\x8b\\x4b\\xf6\\xe6\\x76\\x94\\x9a\\xe3\\xf4\\x66\\xd5\\xcd\\xd3\\x67\\xb3\\x2b\\x2c\\x25\\x2d\\x19\\x7a\\x47\\x8d\\x3b\\x55\\x5c\\x63\\x77\\x91\\x87\\xf1\\x29\\x6e\\x04\\x19\\x90\\x23\\x60\\x45\\x1c\\x62\\x58\\x8e\\xa1\\x7d\\xa3\\x01\\xf5\\xf2\\x21\\x04\\x17\\x59\\xd9\\x71\\x28\\x92\\xa8\\xb2\\x23\\x97\\x2d\\x4c\\xb2\\x33\\xc4\\xa5\\xcf\\x3a\\x7a\\x8f\\x2d\\xf6\\x17\\x6d\\x7f\\xe7\\x48\\x61\\x7b\\x91\\x59\\x25\\xc0\\x0d\\x57\\xff\\x4e\\x54\\x96\\x57\\x41\\x2c\\xcc\\x64\\xf3\\x55\\x3d\\x87\\x5e\\xdb\\xb4\\xec\\xbd\\xbb\\xe7\\xfd\\x29\\xcd\\x5b\\xdf\\x3a\\xd5\\xf6\\xdc\\x53\\x14\\x61\\xe0\\x11\\xa6\\x5d\\xb4\\xc7\\xc8\\xfb\\x78\\x03\\xf6\\xa3\\x14\\xda\\x6f\\x8c\\x6a\\x1b\\x52\\x99\\x6e\\xa8\\x8e\\x8d\\x2a\\x1a\\xb2\\x9e\\xa1\\x56\\x25\\x72\\xbc\\x8a\\x12\\x22\\x5b\\x1a\\xbe\\x82\\xf1\\x7c\\x58\\xa5\\x89\\x75\\x36\\xac\\x9f\\x9e\\x0d\\x19\\x33\\xae\\x9a\\x3d\\xdc\\xd3\\x07\\xe6\\xc0\\xec\\xa2\\xc7\\x44\\x75\\x79\\xcd\\xbf\\x61\\x0e\\x33\\x53\\xd3\\xbc\\xfc\\xba\\x99\\xc5\\x7b\\xb6\\x2c\\x32\\xbe\\x90\\xb9\\xb5\\xbf\\x64\\x66\\xa9\\x89\\x0d\\x95\\xf4\\x4a\\xfa\\xcf\\xb5\\xa4\\x11\\x17\\xd2\\xfe\\x0f\\xc5\\x81\\xc2\\x38\\x60\\xb9\\x58\\x69\\xdf\\x21\\x84\\x39\\x84\\xfb\\x05\\x9e\\xa1\\x66\\xfa\\x45\\x55\\x3a\\x08\\xa1\\x24\\x94\\xa4\\x50\\x5a\\xad\\x0a\\x85\\x94\\x01\\x6f\\x52\\x98\\x2e\\xee\\x2b\\x4a\\xcb\\x01\\xee\\x81\\xf5\\xa0\\x2f\\xe8\\x3f\\xd0\\x69\\xab\\xb0\\xc5\\x69\\x0a\\x92\\x8a\\xcb\\xc9\\x3e\\x72\\x86\\x1b\\x09\\x1e\\x64\\x56\\x4e\\x6a\\xa0\\xca\\xec\\x12\\x39\\x44\\x69\\x3a\\x44\\x1a\\x71\\x1e\\xc5\\x0d\\xbd\\x32\\x4d\\xba\\xff\\x1f\\x34\\xdd\\x0d\\x6b\\x41\\x43\\xeb\\x83\\x02\\xb6\\x78\\x35\\xa5\\x69\\x3f\\x39\\x2b\\xd5\\xf2\\x5e\\xb8\\x45\\xea\\x6c\\xfa\\x11\\x2f\\x74\\x4d\\x83\\x77\\xc8\\x2c\\x59\\x27\\x6b\\x19\\x3b\\x8b\\x57\\xd3\\x38\\x43\\x36\\xaa\\x0a\\x04\\x0c\\xc0\\xa2\\xd4\\xcb\\xf7\\x6a\\x4b\\x9d\\x94\\x6f\\x64\\x31\\x03\\xca\\x70\\x98\\xb3\\x2d\\xd9\\x49\\x5a\\xda\\xab\\x2d\\x1d\\xd2\\x23\\x42\\xd0\\x0b\\x8a\\xf1\\x5e\\x6d\\x21\\xf5\\xe1\\xa2\\x6e\\x6d\\xee\\x83\\xef\\xdf\\x30\\xa5\\xe3\\x86\\xd7\\x57\\xee\\x78\\x6d\\x57\\x15\\x1b\\x6b\\xa8\\x59\\xd9\\x51\\xd8\\xdb\\x5e\\xa1\\xcb\\x8b\\x2b\\x9b\\xbd\\x79\\x65\\x79\\x7f\\x85\\x09\\x48\\xb4\\xbe\\x68\\x36\\xf7\\xfa\\xcc\\xdb\\x3f\\xda\\x4d\\xce\\xef\\x3b\\x7d\\x57\\x0f\\x74\\xde\\xf1\\xf9\\xa1\\x77\\x6a\\x1a\\x76\\xcf\\x2d\\x8a\\x55\\xea\\xa2\\xfe\\x1a\\x91\\x92\\xac\\xbc\\xa0\\xf5\\xcf\\xdb\\xdb\\xdc\\xe3\\x1f\\x6c\\x74\\x4a\\xf3\\xbe\\x79\\xec\\x1c\\xde\\xc5\\x8d\\xa0\\x74\\x91\\xc7\\x18\\x10\\xa4\\x73\\x0c\\x87\\x98\\x06\\x59\\xf6\\x0f\\x53\\x45\\x1d\\x2f\\x0b\\x15\\x0c\\x8f\\xc3\\xc6\\x18\\x98\\x26\\x9b\\x45\\x95\\x21\\xd7\\x8f\\x9b\\x3c\\x26\\x2d\\x5c\\xb1\\xa6\\x9e\\x35\\x04\\x8f\\xb3\\xf7\\x03\\xb9\\xee\\x95\\xdf\\xb6\\x5e\\xfb\\xca\\xaa\\xd9\\x8f\\x1f\\xec\\x82\\x24\\xa3\\x7f\\xaa\\xdb\\x3f\\x2b\\x60\\xba\\xe1\\x9a\\xab\\xf1\\x3b\\xa7\\x9f\\x26\\x0b\\x52\\xcf\\x9c\\x1a\\xbc\\x6d\\x59\\x51\\xde\\xd0\\xed\\x61\\x30\\xa7\\xeb\\xb7\\x3e\\x8d\\x00\\xad\\x24\\x6b\\xf0\\x3a\\x5a\\x8f\\xb1\\x30\\x10\\x2d\\xd2\\x68\\x91\\x68\\x6c\\x1c\\xc9\\x6d\\xeb\\x0a\\x58\\xae\\x40\\xaa\\x2e\\x4c\\xaa\\x5e\\x3c\\xdd\\x4c\\x17\\xdf\\x86\\x11\\x83\\xa9\\x7f\\x41\\xba\\x9b\\xe2\\x9a\\x3b\\x7e\\xce\\x88\\x68\\x87\\x05\\x36\\x36\\x78\\x13\\xfb\\x20\\x90\\x5f\\xbc\\xf8\\x6e\\xeb\\x81\\x57\\x56\\xd2\\x21\\xe9\\x8c\\xfe\\x0e\\xb7\\x7f\\x76\\x79\\xba\\xb5\\x7e\\x71\\xed\\x7e\\xb6\\xeb\\xb3\\xa7\\xc8\\x90\\xe1\\xcb\\x57\\x07\\x6f\\xa5\\x83\\x5a\\x9e\\x31\\xc5\\x6b\\x4c\\xf3\\x35\\x66\\x4d\\x59\\x50\\x69\\x7c\\x1c\\x8d\\x8d\\x21\\x07\\x69\\xc4\\x37\\x70\\x23\\x8c\\x0d\\x3d\\xdc\\x89\\x90\\x1d\\xde\\x26\\x17\\x90\\x16\\x78\\xf8\\xed\\x0b\\x08\\x45\\x9c\\x04\\x18\\xd1\\x8e\\xb8\\x9d\\x63\\x63\\x68\\x0a\\xa9\\xc5\\x5b\\xb0\\x9f\\xb1\\xa1\\x2f\\x1a\\xe9\\x7d\\x63\\x29\\x63\\xc5\\x20\\xc0\\x6f\\xc7\\xb6\\x8e\\x5d\\x40\\x89\\x27\\x01\\x9e\\x1e\\x2b\\x1e\\x71\\x3b\\x4f\\x32\\xf0\\xf4\\xd8\\x85\\x11\\xb7\\x53\\xce\\x21\\x6f\\x91\\x71\\x6d\\x72\\x03\\x2e\\xea\\x70\\xc3\\x8c\\x7c\\x80\\x52\\xf8\\xbd\\x70\\x31\\x2a\\x42\\xf1\\xc9\\xf1\\xfa\\xc4\\x04\\x14\\x87\\x62\\x4d\\x0a\\x81\\xd7\\x48\\x5b\\x26\\xd4\\xfa\\x5f\\xa9\\x08\\x23\\x71\\xb3\\x1e\\x48\\x22\\xc9\\x5b\\xdf\\x3c\\xd0\\xd0\\x70\\xe0\\xcd\\xad\\xef\\xbc\\x53\\xd9\\x1f\\x30\\x1a\\x03\\xfd\\x95\\xec\\x08\\x83\\x7e\\x68\\xab\\xdb\\xfa\\xf0\\x82\\xc1\\x87\\x36\\xd7\\x06\\xf3\\xe1\\x2b\\x47\\x75\\xe7\\xff\\x47\\xdd\\x9b\\x87\\xb7\\x55\\x1d\\x0f\\xc3\\x73\\xce\\x3d\\xf7\\x4a\\xb6\\xe3\\x45\\x96\\x25\\x79\\x97\\x65\\x59\\x92\\x65\\x79\\x97\\x25\\x5b\\x5e\\xe5\\xdd\\xf1\\x96\\xd8\\x49\\xbc\\x24\\x76\\x12\\xc7\\x89\\xed\\x6c\\xce\\xe2\\x2c\\x24\\x21\\x09\\x21\\x40\\x20\\x60\\x02\\x4d\\x80\\x42\\x56\\x42\\x58\\x03\\xd4\\x34\\x49\\x93\\x02\\xa5\\x50\\xa0\\x65\\xa7\\xa5\\xa5\\xc0\\xaf\\xa5\\x40\\x80\\x96\\x2c\\xb4\\x6c\\x01\\x7e\\x24\\xbe\\xfa\\x9e\\x7b\\xce\\xd5\\xb5\\x14\\x87\\xb6\\xdf\\xfb\\x7e\\xff\\x7c\\x79\\x1e\\x5a\\x5f\\xcd\\xdc\\xb9\\x73\\xb6\\x39\\x33\\x73\\xe6\\xcc\\xe4\\xe4\\xcd\\xa9\\xcd\\xa0\\x6b\\xa6\\x07\\x80\\x7c\\x49\\xef\\xfa\\xe4\\x41\\xb1\\xb7\\x10\\x08\\x46\\x98\\xa0\\x95\\x20\\xe9\\xe4\\x88\\x67\\xa9\\x76\\x04\\xc4\\x71\\xd0\\xa3\\x62\\x9e\\x01\\x04\\x79\\xb9\\xe9\\xd6\\xf8\\xb8\\xa8\\x88\\xf0\\x29\\xa1\\x21\\x90\\x86\\xcc\\xd2\\x52\\x51\\x38\\x72\\xb2\\x1b\\x00\\x85\\xee\\x6c\\x9a\\x5e\\x55\\x15\\xc1\\x99\\x2d\\x13\\x4c\\x62\\xed\\xc0\\xe1\\xd5\\x65\\x65\\xab\\x0f\\x0f\\x70\\x28\\xce\\x68\\x2b\\x48\\x89\\x40\\x48\\x1d\\x69\\x88\\x44\\x9a\\xf0\\x78\\x6d\\x28\\xc2\\xee\\xa1\\xbd\\x83\\xe2\\x4b\\x5c\\x7a\\xa9\\x2d\\x26\\xc6\\x56\\x9a\\xee\\xe7\\x1a\\xc3\\xc5\\x7c\\xe4\\xe9\\x59\\x53\\x92\\xb5\\x7e\\xf3\\xfa\\xac\\xac\\xb5\\x9b\\xae\\xca\\xdd\\xf4\\xea\\xed\\xd3\\x4f\\x5f\\xd6\\x96\\x39\\xbe\\x33\\xe4\\x3e\\x21\\x96\\xd6\\xdc\\xad\\xf4\\x96\\xab\\x10\\x07\\x9e\\x0c\\x8c\\x05\\x13\\x22\\x98\\x93\\x0f\\xc4\\x38\\x69\\x9f\\x14\\x56\\xfa\\xd3\\x32\\x1a\\x9b\\x54\\x08\\x63\\x96\\x3a\\x36\\x99\\x34\\xdb\\xad\\x69\\x76\\xbd\\x36\\x3a\\x20\\x7e\\xca\\xa0\\x31\\x69\\x04\\xbd\\xd3\\xed\\x2e\\x74\\x5b\\xfd\\x0d\\x12\\x14\\xbb\\x43\\x2e\\xe1\\xcf\\x8e\\xe9\\x0b\\xad\\xb6\\x39\\xe9\\xcd\\xab\\xa6\\x36\\x16\\x21\\x03\\x8e\\xd3\\x27\\x26\\x71\\x38\\x25\\x19\\x45\\x85\\xc7\\x69\\xc3\\x10\\x2e\\xea\\xdd\\x50\\x3d\\x67\\x47\\x46\\x6a\\x6f\\x59\\xc3\\xca\\xe6\\x74\\x34\\x16\\x9b\\x9a\\x60\\xd1\\x87\\x86\\xe8\\x2c\\x09\\xf6\\x24\\x35\\xc6\\xd3\\x57\\x3c\\xbd\\xa3\\xb9\\x08\\xe3\\x8b\\x4e\\x77\\x03\\x7e\\xec\\x8e\\x85\\xaf\\x2e\\xcc\\xeb\\x5f\\x34\\xe8\\xbc\\xf9\\xcd\\x1b\\x6b\\x70\\x59\\x4d\\x69\\x75\\xdd\\x96\\xc7\\x06\\xd1\\xed\\xb1\\x59\\x2d\\x43\\xc5\\xa3\\xee\\xd9\\x95\\x16\\xa3\\x5d\\x3e\\x07\\xac\\xf0\\x9d\\x21\\xf7\\xf2\\x63\\xe0\\x86\\x22\\xaf\\x2b\\x8e\\xd6\\x6b\\x00\\x1e\\x23\\xcc\\xd3\\x31\\x04\\x82\\x80\\x5e\\x03\\x9f\\xe3\\x4f\\xe3\\xe7\\x4f\\x4e\\x64\\xd3\\xe5\\x98\\xd2\\x4c\\x69\\x74\\xff\\x64\\xab\\x46\\x89\\x71\\x75\\x4e\\xe4\\x5e\\xd1\\x4d\\x34\\x5d\\xaf\\xa7\\x4d\\xcf\\xc6\\x36\\xf4\\x6b\\x9d\\xd5\\x69\\x3c\\xba\\x7a\\xb0\\xbf\\x6b\\xee\\x1b\\x6f\\x2c\\x7f\\x6c\\x5d\\xc5\\x86\\xe5\\xe5\\x1d\\xee\\x58\\x14\\x1f\\x57\\x5c\\xce\\xa3\\x94\\x64\\x14\\x1d\\xef\\xc0\\xb8\\x76\\xe4\\xce\\xf6\\x86\\x91\\xb6\\x1c\\x0e\\x6d\\xc9\\x6b\\xf3\\x18\\x3f\\x5d\\xba\\x64\\x56\\xff\\xdf\\xdd\\x8b\\xf7\\x0e\\xac\\x7b\\x30\\x2f\\xba\\x7c\\xc6\\x80\\x67\\x59\\xa2\\x1d\\x1f\\x95\\x9a\\xba\\xe0\\x95\\xc1\\x5b\\xde\\xb8\\xa9\\x1a\\x9b\\x1a\\x56\\x4f\\x97\\xda\\xd4\\xe4\\x3b\\x4d\\xef\\x07\\x16\\x40\\xa9\\xd7\\xc3\\x21\\x8e\\xa4\\xd0\\x6a\\xa5\\x80\\x78\\xc2\\x23\\x7a\\xf2\\xca\\x01\\xcb\\x25\\x42\\x5b\\x13\\xab\\xa4\\x7d\\x4e\\xc6\\xcd\\xa6\\x34\\x93\\xc5\\xae\\x4f\\xa0\\xed\\x9a\\xd4\\x06\\x65\\xf8\\x68\\x43\\x6d\\xfe\\x16\\xdb\\xa4\\x16\\xe3\\xf3\\xb3\\xda\\xdc\\x53\\xb3\\x62\\x50\\xb2\\x3d\\xde\\x88\\xa5\\x91\\x8b\\x0c\\x8f\\x8b\\x09\\x43\\xd8\\xd5\\xbd\\xa6\\xf2\\x67\\x4f\\x84\\x56\\x94\\xbe\\x85\\x77\\x75\\xb7\\xb4\\x74\\xff\\x4d\\xf8\\x64\\xe9\\x03\\xab\\x4a\\xf0\\x77\\x6d\\x2b\\xd2\\xc2\\xb3\\x4a\\x1a\\xd2\\x73\\xed\\x6e\\x7c\\xd3\\x86\\xd6\\xfb\\x5a\\x6d\\xd3\\xa6\\xb7\\xa5\\xaf\\x7a\\x70\\x45\\x21\\xb7\\x6a\\x7b\\x93\\xb3\\xf0\\x4f\\x15\\x6e\\x4f\\xd3\\xe9\\xcc\\xf6\\x0d\\xd2\\xdc\\x7c\\x48\\x1c\\x26\\x2f\\xf2\\x63\\xe0\\x00\\x0f\\x78\\xbd\\x65\\x3a\\x44\\x20\\x85\\xda\\x0b\\xf9\\x79\\x98\\xab\\x07\\x10\\x90\\xb4\\x6f\\x06\\x06\\x73\\xf3\\xfc\\x44\\x0a\\x19\\x4f\\x11\\x38\\x20\\x23\\xd5\\x64\\xb2\\x9a\\x54\\x82\\xc1\\xa1\\xb5\\xf9\\x33\\xa1\\x98\\x6c\\x01\\x99\\x72\\x68\\xc8\\xb2\\x8e\\x55\\x31\\xb2\\x9a\\x91\\xdf\\xe9\\xe1\\x32\\x9d\\xc7\\x9f\\x5d\\xb7\\x21\\xb9\\xb4\\xb7\\x42\\xfc\\x13\\x8f\\xf2\\x36\\xfd\\x66\\x47\\xc3\\xba\\x91\\xea\\x9e\\xa2\\x38\\x41\\x93\\xa8\\x17\\x3f\\x34\\xc4\\x4d\\xe1\\xd6\\xaf\\xc4\\x6f\\x1b\\xdd\\x4d\\x8e\\xdd\\x5a\\x53\\x6c\\x04\\xe2\\x71\\xfd\\x87\\x4b\\x16\\xe5\\xb6\\x79\\x52\\x3e\\x2c\\x1e\\x3e\\x34\\xb0\\xfa\\x90\\x33\\xa6\\xba\\x7b\\x79\\xd9\\x32\\x43\\xb9\\xb7\\x38\\x5a\\xaf\\xad\\x6b\\xae\\xd6\\x0c\\x2d\\xdf\\x30\\xfe\\x47\\xcf\\x55\\x2b\\x17\\xda\\x9a\\xd3\\x1a\\xdb\\x7b\\x0a\\xcf\\x02\\x86\\x67\\xc5\\xf9\\xe4\\x0e\\x52\\x4c\\xdb\\x58\\xea\\xf5\\xe8\\x68\\xa6\\xe6\\x2b\\xb7\\x2f\\xf6\\x8a\\xed\\x4b\\xf9\\x3f\\x6c\\xdf\\xf7\\xe8\\xdb\\xb9\\x73\\x0c\\xd9\\x75\\xd9\\xe2\\x7b\\x02\\xca\\x5a\\xfa\\xe8\\x55\\x95\\xed\\x6d\\x79\\xd5\\xf6\\x68\\x2e\\x24\\x2a\\x5c\\xfc\\x70\\xca\\x14\\x01\\xcd\\xed\\xc1\\x7b\\x03\\xda\\x87\\x76\\xbc\\x50\\x57\\x9a\\x5c\\x60\\xd3\\xff\\x2d\\xb7\\xfb\\x9a\\xe9\\x6d\\xeb\\x33\\x34\\xae\\xaa\\xe9\\x99\\x2d\\x21\\xb6\\xcc\\x8c\\xd0\\x88\\xd0\\xec\\xbc\\xac\\x90\\xa6\\x96\\xe9\\xe2\\xf5\\x41\\xed\\x43\\x10\\xe9\\x3b\\x43\\x6b\\x9a\\xd9\\xe1\\x36\\xff\\x8d\\x77\\x5e\\x52\\x2d\\xf0\\xca\\x89\\x4c\\x99\\xb4\\xda\\x54\\x8f\\xec\\x57\\x94\\xed\\x5c\\xfb\\x8f\\xa1\\x49\\x52\\x9e\\xfe\\x29\\xf4\\xb0\\x55\\x99\\xe0\\xb5\\x4d\\xc6\\xf5\\x97\\x9e\\x34\\xd0\\xf5\\x2b\\x63\\x4a\\xb6\\x9e\\x4d\\x67\\xd6\\x99\\x2c\\x7e\\xb7\\x65\\x8c\\x9c\\xb9\\x50\\x4e\\x73\\xad\\xcc\\x7a\\xe7\\xc4\\xca\\xc5\\xd9\\x03\\x99\\x7d\\x7b\\x57\\x9a\\x74\\x16\\xb7\\x29\\x0a\\xdf\\x85\\x75\\x7a\\x93\\x99\\xc7\\x86\\x98\\xaf\\xa3\\x8d\\x58\\x92\\x50\\x55\\xb5\\x2b\\x5a\\xb3\\x38\\xf2\\x8a\\xe8\\xfe\\x8d\\xf8\\xc1\\xaf\\xe7\\x7e\\x52\\xb6\\xfd\\xb5\\xdb\\xf0\\xd8\\xc5\\xb5\\x96\\xbc\\xe0\\x85\\x6a\\x6e\\xbe\\x6a\\x16\\x20\\x48\\xf7\\x9d\\x21\\x63\\xa4\\x98\\xf5\\x47\\x04\\xeb\\x0f\\x0e\\x38\\x1e\\x14\\xe6\\x63\\x27\\xf5\\x87\\x81\\xf5\\xc7\\xe5\\x68\\x13\\x49\\xa1\\xe8\\x9d\\x65\\xe5\\x05\\xa9\\x3f\\xae\\x88\\xfb\\x1f\\xfb\\x83\\xc5\\xf1\\x17\\x16\\x5e\\xde\\x1d\\x01\\x82\\x0c\\x47\\xcf\\xb3\\xb4\\x5d\\x37\\xd7\\x49\\x74\\x71\\x66\\x7d\\x08\\x1e\\x45\\x31\\x31\\x46\\x2b\\x5d\\xfa\\x51\\x09\\x19\\x18\\x17\\xcf\\xdb\\x52\\xdb\\xb0\\xba\\x3d\\x9b\\x70\\xb3\\xfe\\x71\\xcf\\x99\\x7d\\xd3\\xbe\\x44\\x8e\\xde\\x5d\\x8b\\xd0\\x6b\\x97\\xc6\\xb3\\xca\\xf0\\x9d\\xdb\\xe7\\x3d\\x3b\\xb7\\xf7\\xd7\\x7d\\xdb\\x7e\\xbd\\xa5\\x02\\x5b\\xda\\xb6\\x76\\x03\\x82\\x06\\xdf\\x19\\xf2\\x33\\x7a\\x27\\x69\\x88\\x35\\xd4\\x0c\\x88\\x17\\x78\\x24\\x50\\xe3\\x0c\\x24\\xe3\\x4c\\xc5\\x4e\\x06\\x24\\x79\\xe5\\xcf\\x8a\\xe0\\xb5\\xfd\\x18\\x16\\x4d\\x75\\x30\\x21\\xda\\xba\\xbd\\x51\\xac\\x72\\xb4\\x46\\xa3\\xd1\\xd9\\x74\\x66\\x96\\x2e\\xe4\\x4a\\x0d\\xd3\\xf8\\x8f\\x0a\\xb8\\x3c\\x14\\x39\\x25\\x25\\x8d\\x0a\\x65\\xad\\x24\\x94\\x4b\\xfa\\xae\\xa9\\xab\\x5d\\x3e\\x2d\\x8b\\x9c\\x90\\x0c\\xa1\\x13\\xfc\\xd8\\xc5\\x65\\xa6\\x0c\\xfc\\xb0\\x3c\\xb8\\x74\\xbb\\xb1\\x75\\xdc\\x38\\x0f\\x45\\x52\\x53\\xe8\\x56\\xbc\\x5a\\x92\\xc7\\x35\\xbe\\x33\\x64\\x27\\xbd\\xbf\\xd4\\xc7\\xda\\x95\\x0a\\x02\\xe6\\xb0\\x40\\x8b\\x9c\\x48\\xe3\\xd3\\x17\\x90\\xdb\\x43\\xe5\\x1f\\x39\\xeb\\x8f\\x20\\xd1\\x81\\xe3\\x79\\x55\\x0f\\xa8\\x54\\xc9\\xaa\\xe6\\x6e\\x6f\\x98\\x4d\\xaf\\xd5\\x04\\xe5\\x70\\x65\\x09\\x50\\xae\\xb8\\xf7\\x9c\\xbf\\x5d\\x3c\\x83\\x0c\\xb7\\x23\\x3d\\x4a\\x49\\x32\\x24\\x60\\xa4\\x8b\\x41\\x11\\x5a\\x23\\xc6\\x85\\xb3\\xd7\\x55\\x36\\x6f\\xec\\xc8\\x27\\xe8\\x31\\x71\\x06\\x29\\x16\\x67\\xa1\\xa3\\x3f\\x3a\\x4e\\xfd\\xbe\\x73\\xe4\\x3e\\xfe\\x45\\x70\\xb0\\x1b\\x42\\x18\\x45\\x22\\x82\\x71\\x23\\x10\\xcc\\x61\\xc2\\xad\\xf4\\xcf\\x2f\\xf9\\x42\\x05\\xcf\\x0c\\x68\\x04\\x69\\xe6\\xe4\\x44\\xad\\x64\\x1e\\x38\\x90\\x43\\x90\\x0d\\x67\\x57\\x50\\xa1\\x7a\\xbf\\xff\\x35\\x90\\x6d\\xbc\\x67\\xf3\\x9b\\x7b\\xda\\xda\\xf6\\xbc\\xb9\\x79\\xcd\\x58\\x75\\x45\\xe5\\xae\\xae\\xaa\\xc1\\x06\\xab\\xb5\\x61\\xb0\\x6a\\xdd\\x26\\x0e\\x27\\x19\\x50\\x74\\x8c\\x0d\\xe3\\x8e\\xdb\\x7e\\xa5\\x9b\\x7b\\xff\\xe9\\xeb\\x91\\x70\\xfd\\xe9\\xfb\\xe7\\x66\\x65\\xfe\\xc1\\x64\\x2e\\x5b\\x3c\\x3a\\x4d\\xfc\\xbe\\xed\\xd6\\x25\\x65\\x78\\xe3\\xd2\\x8e\\xb1\\x8e\\x8e\\xc7\\xbb\\xd6\\x3e\\xb6\\xaa\\x88\\xd5\\x1a\\x3f\\x47\\x6e\\xa2\\xf9\\x0e\\x4a\\xbd\\x1e\\x23\\x22\\x5c\\x0a\\x42\\x84\\x66\\x8c\\x97\\xf6\\xfb\\x95\\x13\\xc7\\x9d\\x7c\\x50\\xa6\\x83\\xb4\\xd4\\xa4\\x84\\xe8\\xa8\\x10\\x35\\x64\\xa1\\x2c\\x89\\x7f\\x4b\\x39\\x57\\x58\\xc0\\x92\\xf7\\xcb\\x2e\\x32\\xd7\\x65\\x8d\\xa1\\xe6\\xcd\\x8b\\x79\\x55\\xe9\\x1a\\xc4\\x47\\xa0\\xc8\\xb0\\x28\\x5c\\xb7\\xe1\\xbe\\xf9\\x37\\xff\\x79\\x77\\x73\\xe3\\xe8\\x9b\\xd7\\xaf\\xb8\\xd7\\x99\\xed\\x1e\\x6d\\x9f\\xba\\xb8\\xda\\x68\\x6a\\x58\\xf9\\x3a\\x8a\\x49\\x73\\x9a\\xb2\\x17\\xe4\\xe4\\x2c\\xc8\\xee\\xdd\\x39\\x27\\xab\\xeb\\x8e\\x17\\x96\\x65\\x2c\\x7b\\x61\\x4f\\x97\\xd9\\xf8\\xd7\\xc4\\xe4\\xa2\\xee\\x95\\x85\\x19\\x9e\\x95\\xb3\\x8b\\xfc\\xf3\\xe9\\x21\\x7a\\xa6\\x98\\x41\\xd3\\x0b\\x4a\\xbb\\xf9\\x4a\\xe6\\xaa\\x64\\x66\\x8c\\x9c\\x4d\\x31\\x99\\x6f\\xb6\\x51\\x6f\\x96\\x5f\\xe9\\xd7\\xfd\\xc8\\xa4\\xb8\\x56\\xfc\\x0d\\x77\\x44\\x3c\\x86\\x8a\\xf2\\xaa\\x6a\\x39\\x6c\\x4a\\x42\\xd1\\xd2\\xfa\\xad\\x1d\\xb9\\xab\\xbd\\x73\\x67\\xbf\\x87\\x90\\x57\\xfe\\xfe\\xf7\\x4b\\x47\\xa7\\xf6\\x2a\\x42\\x8c\\xce\\xf3\\xcc\\xf9\\x77\\x2e\\x61\\x3a\\x54\\x95\\xef\\x0c\\xad\\xe5\\x61\\xba\\x22\\x3f\\xf4\\x5c\\xd1\\x1f\\x68\\x6c\\xd7\\x59\\x82\\xf9\\x09\\x18\\x6e\\x59\\xbb\\x90\\x18\\xea\\x15\\x3f\\xe5\\x6e\\x16\\x1f\\x88\\x4a\\xce\\x4a\\xac\\xa8\\xa6\\x6a\\x60\\x04\\x53\\x26\\x6a\\x56\\xee\\x69\\xeb\\xde\\x35\\x50\\xcc\\x73\\x5d\\xa7\\x4f\\x8b\\x09\\x69\\x65\\x99\\x71\\x78\\x64\\xb0\\xfe\\xce\\x7a\\xf3\\xd4\\xc6\\xc6\\x34\\x49\\x77\\xc0\\x99\\xf3\\xee\\x5c\\xec\\xe7\\xeb\\x1c\\x19\\xe0\\x5f\\x84\\x72\\x96\\x57\\x8d\\x70\\xa8\\x51\\xa9\\x2e\\xe4\\x0f\\x48\\xe5\\x80\\x08\\x1c\\x51\\xe2\\x62\\x92\\x9a\\xfc\\x19\\xd6\\x92\\x55\\xcd\\xd6\\x18\\xab\\x29\\x5d\\xce\\xfd\\xab\\x2d\\x70\\x17\\xb2\\x82\\x13\\x57\\x2a\\x2d\\x66\\x0e\\x2e\\x46\\x46\\xa4\\xd9\\x50\\x75\\xcd\\x55\\xae\\x99\\xc5\\xc6\\xe6\\x5b\\x5e\\xdc\\xb0\\x60\\xec\\xba\\x56\\xf1\\xef\\x46\\x77\\xa3\\xa3\\x6a\\x5e\\x79\\x72\\xbc\\x67\\x76\\xc5\\x8b\\x2f\\x6e\\xb9\\xce\\x52\\x37\\x50\\x95\\x37\\xa3\\xd8\\x84\\xe2\\xec\\xf5\\x7d\\x2b\\x37\\x96\\x6d\\x78\\x6d\\xcf\\x0c\\xf4\\xd3\\xad\\x47\\x33\\x62\\xab\\xda\\x7a\\xf2\\x07\\xf6\\x2e\\x76\\x7b\\x96\\xfe\\x74\\x7e\\x46\\x4d\\x6e\\xbc\\xb1\\xa0\\xde\\x96\\xdd\\xe4\\x4e\\xfa\\xeb\\xd0\\xda\\xcc\\xa6\\x22\\xa3\\xd1\\xdd\\x90\\xd1\\xb8\\x61\\x5e\\x6d\\xa6\\xde\\x33\\x7c\\xc8\\xe7\\x83\\x52\\xdc\\x4d\\xf6\\x72\\xa5\\x50\\x8f\\x6e\\xf4\\x6d\\x02\\x98\\xe1\\xf4\\xd2\\x7a\\xac\\x50\\x84\\xbb\\xc9\\x5d\\xf2\\xef\\xeb\\x03\\x7e\\x3f\\x20\\xa6\\x92\\x6c\\x00\\x6c\\x83\\x4a\\x08\\x15\\x2f\\x22\\x01\\x2a\\x43\\x01\\x42\\x9e\\x00\\x74\\x4a\\xa4\\x26\\x16\\x20\\x74\\x8e\\xfb\\x86\\x4b\\x15\\x1c\\x10\\x06\\x51\\xde\\x70\\x81\\x67\\xd5\\xaf\\x17\\xc7\\x23\\xb5\\x8e\\x06\\xf5\\x14\\x1a\\x04\\x41\\xa7\\x33\\xa3\\x73\\x89\\xf9\\x55\\xb6\\x6b\\xac\\xf9\\x1f\\x90\\x23\\xce\\xe5\\x43\\x3d\\xe6\\x69\\x95\\x77\\xf4\\x3d\\x21\\xbd\\xff\\x16\\xf7\\x09\\xa7\\x16\\x62\\x21\\x0c\\x8c\\xc7\\xa5\\xd7\\xeb\\xe9\\x56\\x7e\\x02\\x68\\x95\\xf3\\x84\\x63\\xb4\\xca\\xf2\\x31\\x46\\xce\\x5f\\xf5\\xc8\\xe5\\xe4\\xd4\\x12\\xb9\\xad\\xd6\\xbc\\x0f\\xf8\\xa5\\xce\\xe5\\x83\\xbd\\xe6\\x69\\x95\\x77\\xf6\\x3d\\x26\\x8d\\x25\\xfa\\xbd\\xf8\\x14\\x37\\x05\\x85\\x4f\\xf0\\x53\\xaf\\xf0\\x63\\x09\\x20\\x10\\x96\\x98\\x57\\x6d\\xbd\\xde\\x9a\\x75\\xa6\\xd2\\xb9\\x4c\\x62\\xa7\\x6a\\x77\\xdf\\xeb\\x52\\x9b\\xd1\\xf3\\xdc\\x27\\xf8\\x07\\x21\\x16\\xea\\xd1\\x10\\x79\\x15\\xe0\\x59\\x60\\x7d\\x81\\xea\\xb8\\x6f\\xb8\\xb7\\x04\\x07\\xb6\\xa1\\x41\\x9f\\x34\\x01\\x54\\x68\\x10\\xe8\\xb1\\x99\\xcf\\x87\\x32\\xb9\\x4f\\xb8\\x97\\x85\\x58\\x6c\\x43\\x43\\xbe\\xd9\\x14\\x36\\x04\\xcf\\xd1\\x5a\\xcd\\x18\\x55\\x8a\\xbf\\xe4\\x5e\\x84\\x73\\x10\\x06\\x06\\x88\\xf1\\x6a\\xa2\\x35\\x02\\x4f\\xa0\\x1e\\x21\\x80\\xc5\\x09\\xf1\\x58\\xad\\x0f\\xe4\\x8a\\x9f\\xf8\\x13\\x5f\\x1d\\x9f\\xe3\\xb5\\xdd\\x6c\\xcd\\x3a\\x83\\xea\\x13\\xf3\\xaa\\x6c\\x37\\x5b\\x9d\\x67\\x2a\\x9c\\xcb\\x86\\x7a\\x53\\xa7\\x55\\xee\\xe9\\x7b\\xec\\xd1\\x89\\x3f\\x01\\xc1\\x12\\xb9\\x86\\xab\\x9c\\x2b\\x8c\\x94\\x36\\xb1\\x84\\x69\\x3c\\xe2\\xb8\\x0a\\x69\\x23\\x28\\x53\\x2a\\xb7\\xaa\\xe3\\x95\\x9c\\x69\\xf4\\x78\\xbe\\x41\\xbc\\x47\\x3c\\x23\\x1e\\x44\\x7d\\xc8\\x80\\x06\\xb8\\xf6\\x4b\\x8f\\x73\\xed\\x9f\\xa1\\x75\\xe2\\x4e\\x56\\x73\\x5c\\x9c\\x4f\\xf3\\xc2\\x6a\\xa1\\xc0\\x9b\\x07\\x82\\x50\\x4a\\x63\\xb8\\xf9\\x6e\\x15\\xe2\\xf9\\x8a\\xa6\\x10\\xc9\\x5a\\xa5\\xa5\\xbf\\xcb\\x9a\\x58\\xc1\\xee\\x80\\x4b\\xc8\\xa1\\xea\\x24\\x39\\xc1\\x9b\\x4b\\xf9\\x98\\x4e\\xfa\\x60\\x2f\\xfd\\xe0\\x21\\x34\\x5f\\xfa\\x4f\\xfa\\x28\\xcd\\x0d\\x3e\\x1f\\x1d\\xfa\\x00\\x6f\\x38\\x2d\\x7d\\xf9\\xf4\\xf8\\x0e\\x69\\x1c\\xf7\\xa0\\xef\\xb9\\x21\\xee\\x02\\xe8\\xae\\x54\\x2b\\xda\\x9e\\xc6\\x8a\\xcb\\x4f\\xba\\xa8\\xb6\\xc7\\x54\\xda\\xe1\\x2e\\xec\\x2c\\x4b\\x49\\x29\\xeb\\x74\\xbb\\x3b\\x4b\\x4d\\x5c\\x74\\xde\\xcc\\xd2\\xd4\\xd4\\xd2\\x99\\x79\\xc5\\x79\\xed\\xa5\\x26\\x53\\x69\\x7b\\x1e\\x9b\\xdb\\xff\\xf2\\x9d\\x27\\x75\\xa8\\x1b\\xdb\\x20\\xca\\x37\\x95\\x86\\x36\\x46\\xa1\\x64\\x36\\x9e\\xb0\\xc8\\x77\\x8e\\x47\\xa8\\x4b\\x82\\x89\\xbf\\xf6\\xf9\\xc0\\x0a\\x51\\xcd\\x3e\\x24\\x61\\xbc\\xe7\\xf3\\x41\\x82\\x34\\xff\\x7d\\xbe\\x31\\xa7\\x83\\x3a\\x1d\\x7c\\x7e\\xa7\\x83\\x8f\\xae\\x08\\x00\\x01\\x9a\\x7c\\xe7\\xc9\\x09\\xfe\\x05\\x30\\x41\\x21\\x94\\x40\\x1b\\x0c\\xc2\\x66\\xb8\\xc1\\x1b\\x55\\x52\\x8c\\x43\\xc3\\x3c\\x6a\\xac\\x82\\x38\\x84\\x05\\xff\\xbd\\x24\\x07\\x42\\x10\\x82\\x54\\x02\\xa8\\xfa\\x21\\x2c\\x8c\\x5e\\xb9\\xa8\\x91\\x84\\x4b\\xe8\\x1c\\x08\\x0d\\xad\\xa0\\x65\\x28\\x58\\xdc\\x4d\\xad\\xa4\\xc3\\xd8\\x21\\x14\\x78\\x08\\xe5\\xfb\\xaf\\xf4\\x56\\x10\\x6e\\xb7\\x37\\x7a\\xc3\\xfa\\xe1\\x65\\xfd\\x7d\\x76\\x7b\\x96\\xdd\\x9e\\x66\\x4f\\x4b\\x9b\\xa2\\x4e\\x92\\xfb\\x4c\\xef\\x0f\\xb9\\xb9\\xac\\x8c\\x05\\x37\\xa9\\x47\\xb5\\x36\\x64\\xe0\\x26\\xdd\\xe4\\xe0\\x27\\x67\\x79\\x9a\\xfc\\x4b\\x85\\xb9\\x7a\\x81\\xb7\\xb8\\x3b\\x25\\x65\\xb6\\xc7\\xdb\\x5f\\x9d\\x9a\\x5a\\xb5\\xc0\\x5b\\x3c\\x3b\\x25\\xa5\\xdb\\x53\\xd9\\x5f\\x6d\\xfe\\xc6\\xe4\\xed\\x2d\\xf3\\xf6\\xd7\\xa4\\x9a\\xab\\x17\\x54\\x94\\xcd\\xad\\x34\\x6d\\xe9\\xe3\\x5c\\x7d\\x07\\x42\\xb5\\xc9\\x31\\xf1\\xc9\\x91\\x44\\x1d\\x9d\\xac\\xd3\\x27\\x47\\xab\\xc4\\x7b\\xa4\\x5f\\xe2\\x92\\xa3\\x26\\x7e\\xf1\\xa9\\xb5\\xc9\\x7a\\x5d\\x52\\xb4\\x5a\\xad\\x65\\xbf\\x20\\xbb\\x67\\xa0\\x25\\x33\\x2d\\x25\\x25\\x2d\\xb3\\x65\\xc0\\x63\\xf5\\x0c\\x34\\x67\\x9a\\x53\\x52\\xcc\\x99\\xcd\\x03\\x1e\\xee\\xa1\\xe2\\x81\\xe6\\xac\\xac\\xe6\\x81\\xe2\\x34\\xcf\\xa2\\x96\\xcc\\xcc\\x96\\x45\\x9e\\xf1\\x99\\x73\\x71\\xc7\\xdc\\x4b\\x6f\\x19\\x1c\\x26\\xad\\xd6\\x94\\x11\\x6b\\x35\\x64\\xd0\\x3f\\x0c\\xd6\\x49\\xbf\\x70\\x73\\xd9\\x4f\\x0e\\x43\\x9a\\xc1\\x61\\x8a\\x89\\x31\\x39\\x58\\xce\\x1a\\x74\\x23\\x5c\\xc3\\x75\\x72\\x07\\x41\\x80\\x64\\x6f\\x02\\x87\\xe4\\x28\\x60\\xa0\\x21\\xb3\\xd0\\x2d\\xad\\x9c\\x16\\xad\\x86\\xce\\x50\\xad\\x19\\xb9\\x90\\x13\\x2f\\xfa\\x8a\\xa9\\x81\\x38\\x52\\x5c\\x85\\x6e\\xd0\\xa2\\x1b\\x18\\x9d\\x6d\\xb0\\x95\\x6b\\xe3\\x0e\\x80\\x00\\x56\\xaf\\x99\\x47\\x58\\x22\\x84\\x11\\xa5\\x84\\x91\\x42\\x8a\\x4e\\x29\\x41\\xcb\\x49\\x22\\x10\\xe9\\x90\\x59\\xcb\\x61\\x37\\x4a\\x10\\x3f\\x3d\\xf1\\xe5\\x97\\xdc\\x01\\x71\\xa3\\x56\\xdc\\x88\\x76\\xa1\\xdb\\x80\\xfa\\xef\\x3e\\xe6\\xee\\x21\\xbf\\x97\\x94\\xdb\\x63\\x18\\x50\\xae\\xc3\\x62\\x43\\x06\\xb4\\x77\\x3b\\xf2\\x6d\\xff\\xb8\\x9a\\x7b\\xa4\\x5a\\x92\\x47\\xe1\\x38\\x97\\xc4\\xf3\\x2f\\x42\\x28\\x44\\x40\\xbb\\x37\\x34\\x1c\\x01\\x51\\x23\\xa4\\x38\\x12\\x75\\x3c\\xf2\\x47\\xfd\\xfb\\x4f\\xfb\\x4b\\x31\\x0d\\xc7\\x26\\x80\\xc9\\xac\\x00\\x28\\x21\\xb8\\x1b\\x30\\xc1\\x2d\\xdd\\xde\\x10\\x96\\xea\\x94\\x0a\\x17\\xa7\\xce\\xac\\x33\\xbb\\x4c\\x36\\xe4\\x44\\x26\\x8d\\x8a\\xbb\\x61\\xcf\\x9e\\x9f\\x89\\xc5\\x04\\xbd\\x78\\x5c\\x6c\\x40\\x21\\xd1\\xdc\\xb2\\xeb\\x4f\\x9e\\xec\\xc7\\x9b\\xc6\\x1f\\x44\\x9b\\xd2\\x68\\x1f\\x38\\xf0\\x28\\xf7\\x47\\xfe\\x49\\x30\\xc0\\xd2\\xa6\\x31\\xab\\xbf\\xa6\\x64\\x0c\\x4d\\xe9\\x2e\\xd7\\x94\\x64\\x0f\\xdd\\x0c\\x1c\\x3f\\x51\\x53\\xb2\\xb4\\x89\\x95\\x97\\x61\\x0f\\x92\\x2a\\x6c\\xf0\\x6f\\xcf\\x0c\\xc4\\xf2\\x71\\x96\\xfa\\x4b\\x4a\\x1a\\xc0\\xa0\\xb5\\xe8\\xcc\\x82\\x3a\\xb0\\xa4\\xe4\\x44\\xe2\\x2c\\xb3\\x06\\xbd\\x99\\x62\\x5e\\xd9\\x54\\xd6\\x57\\x93\\xf6\\x7b\\x8d\\x29\\xd7\\xe8\\xac\\xd2\\xfc\\x81\\x7f\\x6c\\x63\\x45\\x83\\xb9\\x69\\x4d\\x9b\\x28\\xa0\\xa7\\x0b\\xa6\\x66\\xc6\\x64\\x5a\\xc7\\xdf\\xe3\\x52\\x40\\xc9\\xa5\\xbf\\x8b\\x7f\\x01\\x9c\\xd0\\xe4\\x6d\\xf0\\x67\\xfd\\x08\\x43\\xaa\\x29\\x48\\xe0\\x55\\x42\\x5f\\x38\\xe2\\x09\\x4b\\x0f\\xeb\\x4f\\xf9\\x51\\x43\\xd9\\xa2\\x11\\x62\\x65\\xb8\\xd9\\x99\\x9f\\x97\\x9b\\x93\\x6d\\xb7\\x99\\x53\\x2d\\x1a\\x8d\\x46\\xaf\\xd1\\xc4\\x44\\x45\\x48\\x4b\\xd4\\x64\\x88\\x11\\x54\\x26\\x9d\\xc9\\xe5\\x2c\\xe7\\x5c\\x36\\xb3\\xcb\\x49\\xff\\x9b\\xa4\\x51\\x18\\x4c\\x3a\\x93\\xc1\\xc4\\x35\\x8b\\xa7\\x71\\x52\\x2a\\x3e\\x70\\xf1\\xa3\\xee\\xd8\\x24\\x0d\\x8f\\xef\\x3b\\xc0\\xed\\xbd\\x93\\x54\\x5d\\xf5\\xe0\\xc2\\xa5\\x0f\\xac\\x2a\\x11\\xbf\\x4e\\xca\\xaf\\x4a\\x4b\\x2b\\xcf\\x8a\\xe3\\x51\\xb6\\xf8\\x2e\\x8f\\xcc\\xe8\\x6d\\x6b\\xf9\\x80\\xfd\\xf4\\x69\\xc1\\xe6\\xae\\x48\\x76\\xde\\xbd\\xfa\\xee\\xbb\\x06\\xef\\x5b\\x51\\x52\\xb2\\xec\\xa7\\xbd\\xce\\xfa\\x4c\\x6d\\x42\\xc1\\x34\\xe7\\x5d\\x77\\xaf\\x66\\x67\\xaf\\x9b\\x7c\\xe7\\x64\\x3b\\xdc\\x0d\\xef\\x52\\x8b\\xe4\\x44\\x18\\xbd\\xfb\\x9a\\x70\\x22\\x0c\\xf1\\x08\\xf9\\x2b\\x25\\xe7\\x83\\x5a\\x08\\x13\\xd4\\x61\\x2b\\x21\\x14\\x08\\x0a\\x25\\x92\\x48\\xa2\\x1e\\x23\\x69\\x18\\x00\\x54\\xdd\\x21\\x48\\xa5\\xa2\\x1b\\x11\\xee\\xe1\\x65\\x49\\xc6\\x0c\\x9c\\xff\\xb7\\x6f\\x36\\x48\\x73\\xd1\\xfd\\x5f\\xbe\\xc4\\xf3\\x65\\xec\\x4d\\xa0\\x2f\\x76\\x77\\x7b\\xa3\\xdd\\x05\\x99\\x19\\xf6\\x74\\x4d\\x8c\\x49\\x93\\xa6\\xb3\\x58\\xa2\\xa8\\x44\\xbc\\x42\\xf1\\xc0\\x08\\x8e\\xa6\\x4f\\xa0\\x67\\x74\\x34\\x0e\\x0c\\x05\\xc4\\x5c\\x1e\\x7a\\x3c\\x32\\x3e\\x55\\x1b\\x93\\x11\\x96\\xa0\\xef\\x70\\x38\\xbb\\xab\\x2c\\x33\\x43\\x5c\\xdd\\x1b\\x9a\\x0b\\x5f\\xf2\\xb5\\x6c\\xec\\x72\\xa9\\x67\\xbe\\xf4\\xf8\\xa5\\xfb\\x0a\\xed\\xc5\\x69\\x1a\\x4d\\x5a\\xb1\\xbd\\x90\\x3b\\x32\\xbe\\x23\\xab\\x24\\x35\\x22\\x94\\xdc\\x1c\\x63\\x30\\xb7\\x6c\\xec\\xc4\\x57\\xb5\\xdf\\xb8\\xc0\\x3d\\xfe\\x06\\x3f\\x56\\xd8\\xbf\\xb3\\x1d\\x11\\xf1\\x92\\xf8\\xd3\\xbc\\x69\\x83\\xee\\xc2\\xa1\\xb6\\x3c\\x40\\xb0\\xc1\\x77\\x9e\\xcc\\xa6\\xb5\\xaa\\xa6\\x7b\\x5b\\x4c\\x48\\xad\\x4a\\x45\\x82\\x3a\\x04\\x21\\x08\\x45\\x18\\x91\\xc6\\x10\\x24\\x84\\x22\\x49\\x23\\xed\\x0b\\x9b\\x48\\x78\\xa4\\x56\\x53\\x4d\\xb4\\x46\\x29\\x11\\x57\\x8b\\x9b\\xb3\\x32\\x1d\\x19\\xf6\\x74\\x96\\x48\\xc6\\x92\\xc6\\x5a\\x4a\\x4f\\x1b\\x95\\x76\\x4a\\xb3\\xca\\x45\\x2b\\x30\\x04\\x5c\\x42\\x36\\xe9\\x4c\\x3a\\x13\\xb7\\x47\\x7c\\x98\\xcb\\x69\\x5b\\x59\\xeb\\xea\\xcf\\x4a\\x29\\xb9\\xa6\\x6a\\xe3\\xeb\\x77\\x75\\x92\\xa3\\x47\\x8f\\x3e\\xa6\\xee\\xb9\\xfb\\xcd\\x4d\\x65\\x6b\\x4b\\x52\\x1c\\x0b\\xf3\\x77\\x1e\\x99\\x82\\x66\\x89\\x0f\\xa3\\x4e\\xac\\xee\\xdc\\xd0\\x68\\x8a\\xd4\\x7c\\x1c\\x11\\x55\\xb3\\xe3\\xd5\\x1b\\xf6\\x6c\\xd9\\x7d\\xdd\\x4b\\x3b\\x6a\\x34\\x11\\x9f\\x44\\x44\\xff\\xe4\\xf0\\xee\\x2d\\x40\\xc0\\xe5\\x3b\\x4f\\x0e\\x50\\x3b\\xb0\\x12\\x3a\\x61\\x0e\\x84\\x7b\\x43\\x67\\x77\\xb5\\xd5\\x95\\xe4\\x46\\x12\\x92\\x7b\\x85\\x2b\\xf3\\xe6\\x49\\xf7\\x36\\x27\\xdf\\xb1\\x75\\x4e\\xde\\x94\\x6c\\xc8\\x80\\x67\\x9b\\x6b\\x07\\xaa\\xab\\x07\\xeb\\xd2\\xd2\\x6a\\x07\\xab\\x6a\\x06\\x6b\\xcd\\x4f\\x87\\xe9\\x4c\\x7a\\x7d\\x8a\\x3e\\x2c\\x4c\\x6f\\x32\\xe8\\x53\\x74\\xa1\\x7f\\x95\\x30\\x24\\x88\\xb9\\x66\\xb0\\xba\\x7a\\xb0\\x36\\xed\\xc9\\xf0\\xd8\\x94\\x98\\xf8\\x54\\xad\\x3a\\x4c\\x9f\\x4a\\x31\\xc5\\x1b\\x25\\x89\\x49\\xd2\\x5d\\xf3\\xa6\\x3a\\x72\\xdb\\x96\\x97\\xb5\\x94\\x2f\\x6f\\xcf\\x75\\x4c\\xed\\x73\\x69\\x2d\\xc9\\xd1\\x06\\xab\\x33\\xa1\\x25\\x21\\xcf\\x6a\\xd0\\x26\\xa5\\x45\\x8f\\x97\\x95\\x0d\\xb7\\xe5\\xe6\\xb6\\x0d\\x4b\\x38\\xd2\\x1f\\xcb\\xcb\\x13\\xf2\\xad\\x06\\x83\\x35\\x3f\\xa1\\xc5\\xff\\xc7\\xb5\\x4c\\xf2\\x4a\\xeb\\xe9\\x90\\xef\\x1c\\x49\\xe7\\x6f\\x87\\x34\\xc8\\x01\\xf5\\x09\\x87\\x25\\x1a\\x70\\x2e\\xb3\\x6e\\x5d\\x82\\x60\\x76\\xe5\\xbb\\x0b\\x35\\x41\\x55\\xd1\\xd9\\x79\\x03\\x8d\\xa7\\xa1\\x25\\xc5\\xb8\\x81\\xeb\\x5f\\xdc\\xe6\\xcd\\xea\\xcd\\x73\\xf6\\x3a\\xdc\\x0b\\x6f\\xed\\x6e\\xd8\\xd8\\x9d\\x57\\xb4\\xec\\xe0\\xa0\\xc1\\xdd\\x5d\\xf5\\x59\\xf7\\xcc\\x8c\\xe4\\x5c\\x97\\xce\\xbb\\xfe\\xc1\\x81\\x70\\x95\\xea\\x29\\x41\\x85\\x7a\\x17\\x3f\\x30\\x52\\x9a\\xd3\\xbd\\x75\\x7a\\x46\\xc9\\xce\\x9d\\x5b\\x73\\x73\\x8a\\xe7\\x54\\x98\\xd0\\x3f\\x4b\\x0f\\x74\\x65\\x3a\\x8b\\x67\\x74\\x01\\xa1\\x71\\x06\\x57\\xf1\\xcf\\x42\\x08\\x18\\x21\\x0b\\xf2\\xa4\\x71\\xc9\\xcd\\xb6\\xa7\\xc6\\x45\\xf0\\x40\\x72\\x1d\\x26\\x9a\\x40\\xd8\\xa9\\xd5\\x38\\x0d\\x93\\x7a\\xbf\\x90\\xdd\\x60\\x92\\xf9\\xd2\\x9a\\x5c\\x26\\x7c\\xfe\\x99\\xff\\x7d\\xe6\\x99\\xff\\x7d\\xa6\\x4d\\x9f\\x5e\\x92\\x66\\x29\\x49\\xd7\\xeb\\xd3\\x8b\\x2d\\x96\\x62\\xbb\\x7e\\x49\\x4c\\x4a\\x8a\\x36\\x26\\xc5\\x18\\xf3\\xa6\\xf8\\x07\\x94\\xc3\\xad\\xb8\\x74\\x3b\\x3f\\x76\\xe9\\x0e\\x6e\\xe9\\x43\\xe9\\x35\\x79\\x09\\x09\\x79\\x35\\xe9\\x7f\\x4e\\xaf\\x96\\xfe\\xa8\\x4e\\x0f\\xcd\\xca\\xcd\\xcd\\xfa\\x4d\\x66\\x5e\\x5e\\xe6\\xf8\\x87\\x0b\\x68\\x5e\\x77\\xee\\x27\\x64\\x25\\xad\\xfb\\x1f\\x03\\xea\\x13\\xda\\x48\\x01\\xe1\\x5c\\x07\\xe2\\x64\\xbe\\xb4\\x4e\\x8d\\x99\\xe5\\xb9\\x71\\x99\\xb8\\x6f\\x56\\xd7\\xad\\xbe\\xfa\\xee\\xab\\xae\\xb9\\xfd\\x6a\\x51\\x7b\\xdd\\x8d\\x37\\xa2\\x3d\\xe4\\x3b\\x71\\x2f\\x2d\\x3a\\x93\\x2c\\xde\\x82\\xd6\\x8c\\x9f\\x46\\x27\\xc4\\x56\\xf4\\xf3\\xc5\\x74\\x1c\\xf6\\xf8\\xce\\xcb\\x75\\xe1\\xd3\\x41\\x7d\\x22\\x2d\\x25\\x0a\\xe3\\x5c\\x87\\x85\\xae\\x0a\\xe2\\x2a\\x28\\x27\\xac\\xad\\x26\\x1a\\x87\\xec\\x2e\\x44\\x2c\\x9b\\x9c\\xd5\\x4a\\xa2\\x67\\x3d\\xd9\\xdf\\xb0\\x63\\xcd\\xfc\\x1a\\x8b\\x7d\\x6a\\xff\\xda\\x6b\\xaa\\x06\\x8f\\xdf\\xd0\\x3a\\x0e\\x85\\xb7\\xb4\\xce\\xfd\\x65\\xb7\\x78\\x5b\\xd3\\xa8\\x07\\x27\\xba\\x6e\\x9a\\xeb\\x2a\\x4b\\x6f\\x1c\\xd8\\xbc\\xab\\xa5\\x65\\xd7\\xe6\\x81\\xc6\\xf4\\xf6\\xdb\\x7e\\xbb\\x36\\x47\\x3c\\xe5\\x2c\\x29\\xa9\\xe0\\x32\\x2a\\x3d\\xe2\\x39\\x94\\x5c\\x50\\xe6\\xf3\\x41\\x9f\\xef\\x5b\\xf2\\x09\\xff\\x28\\xe4\\xa0\\xe7\\x7c\\x26\\xfc\\x99\\xe7\\x1e\\xb0\\xa2\\x75\\x56\\x40\\x91\\xe8\\x25\\x74\\x18\\xc0\\x73\\x0f\\xb3\\xb3\\xf0\\x67\\x92\\x56\\xe9\\xf3\\x41\\xa2\\xef\\x5b\\xf2\\x11\\xff\\x24\\xe4\\xa0\\xe7\\x7d\\x51\\xf8\\x2c\\xc3\\x37\\x7f\\x47\\xf1\\x0f\\x52\\xfc\\x68\\x8a\\x7f\\xd6\\xaf\\x97\\x7e\\xc7\\xce\\xcd\\x12\\x7c\\x5f\\x93\\x5f\\xf3\\xa7\\x20\\x07\\xbd\\xe8\\x0b\\xc7\\x5f\\xb2\\xf7\\x74\\xec\\x3b\\x9b\\x7d\\xe3\\xca\\x7b\\x5f\\x52\\x35\\x96\\x3b\\xe5\\x1b\\x67\\xef\\xd5\\xfb\\xbe\\x25\\x6f\\xf3\\x3f\\x87\\x1c\\xf4\\x3b\\x5f\\x39\\x3e\\xc7\\xde\\xfb\\x81\\xbd\\xb7\\x3b\\x80\\xbf\\x73\\x54\\xeb\\xc5\\xb0\\xc2\\x77\\x8e\\x2c\\xe4\\x45\\x48\\x87\\x72\\x50\\x9f\\x70\\xda\\x93\\xa2\\xa5\\xb1\\xca\\xd7\\x1b\\xe4\\xec\\x54\\xb4\\xf4\\xae\\xfe\\xf2\\x2a\\xe4\\x97\\xe5\\xd4\\xcf\\xe6\\xf0\\xd4\\xb6\\x5d\\xa5\\x91\\x65\\x9d\\x2b\\x2b\\x6d\\xe5\\x45\\x45\\xa9\\xf6\\x84\\xf2\\xa6\\x39\\x45\\x37\\xfe\\x69\\x77\\x4b\\xf5\\xb6\\x5f\\x6d\\xdc\\xf8\\xf4\\xb6\\xea\\xf2\\x0d\\x4f\\xec\\xa9\\xe8\\x2a\\x8c\\x8d\\x73\\x77\\x96\\x57\\x74\\x16\\xc6\\x86\\xa6\\x15\\x35\\x93\\x50\\x4f\\x69\\xf7\\xed\\x03\\x45\\xc2\\x94\\x98\\xf0\\x57\\xc2\\x13\\x74\\xe1\\xc3\\x7f\\x14\\x5f\\xfb\\x6d\\xc9\\xe8\\x85\\xe3\\x83\\xd3\\x6f\\xfd\\xcd\\x88\\x6e\\xd9\\xa9\\x1d\\xcd\\x1f\\xe6\\xb4\\x2d\\x29\\xa6\\xf9\\xf4\\x3d\\x7d\\xd7\\x4e\\x5d\\x66\\x70\\x66\\x24\\xd0\\x3d\\x7c\\x9f\\x2f\\x84\\x58\\xf8\\x31\\x50\\x81\\x70\\x4c\\x90\\x74\\x26\\xde\\x1f\\xa8\\x6d\\x11\\xcf\\x88\\x0f\\x88\\x9f\\x71\\x37\\x7d\\xc7\\xbf\\xfa\\x83\\x4b\\x78\\x90\\xed\\xf9\\x16\\xf1\\x6b\\xf2\\x24\\x9d\\x93\\xc2\\x31\\x35\\x87\\x72\\x1d\\x08\\x49\\x5b\\x35\\x42\\x2e\\x93\\xce\\x84\\xb8\\x9b\\xc4\\x58\\x2e\\xee\\xe2\\x52\\x5c\\x31\\xfe\\x1c\\x59\\x3e\\x1e\\x85\\xfe\\x81\\x6b\\xc7\\x77\\x7d\\x74\\x17\\x7e\\x0d\\xff\\xe6\\xa7\\x1f\\x8d\\xdf\\xc5\\x68\\xdc\\x81\\xbb\\xb9\\x2f\\xb9\\x52\\xe0\\xa8\\x6d\\x73\\x99\\xe6\\xa8\\x89\\xa2\\x9a\\xa3\\xc9\\x65\\xe2\\xbe\\xbc\\x74\\x84\\xeb\\xc1\\xdd\\x1f\\xd3\\xef\\x02\\x90\\x7e\\x7e\\x0c\\x42\\x41\\x38\\xc6\\xd3\\xef\\x1a\\x0a\\x91\\x13\\x99\\x39\\xb3\\xcb\\x84\\x6d\\x91\\x7a\\x54\\xf0\\xb1\\xd8\\x74\\xf6\\xb9\\xbf\\xa1\\xcd\\xc8\\xdd\\xd8\\x41\\x86\\x7f\\x98\\x8e\\x0d\\x1f\\x03\\x07\\x45\\xf0\\x2d\\x79\\x85\\xfb\\x13\\xd8\\xa1\\x02\\x66\\x41\\xe8\\xc9\\x69\\x35\\x9e\\xec\\x38\\xc2\\x4d\\x88\\x5d\\x5b\\x90\\x4f\\x2a\\x19\\xcb\\xb1\\x29\\x8a\\x10\\x56\\xe9\\x58\\x8c\\xca\\x44\\xae\\x5b\\x97\\x5c\\x97\\x98\\xbc\\x62\\x6b\\x1e\\x69\\xce\\x6d\\xaf\\xf7\\xe8\\x0d\\x9e\\xba\\xf6\\x9c\\xe6\\xd5\\x2d\\x56\\x6b\\xf3\\xea\\xe6\\x9c\\x19\\x75\\x1e\\x83\\xde\\x53\\x3f\\x23\\xb7\\x79\\x75\\xb3\\xed\\xb5\\xb0\\xf8\\x4c\\x53\\x5a\\x89\\x23\\x0e\\xa1\\x38\\x47\\x89\\xd9\\x94\\x15\\x1f\\x36\\x4e\\xc2\\xe2\\xb3\\x52\\x53\\xd9\\x6f\\x19\\x25\\x69\\xd2\\x6f\\xb8\\xbd\\xe5\\x9a\\x1e\\x67\\x8a\\xbb\\xc1\\x66\\x6b\\x70\\xa7\\x38\\x7b\\xae\\x69\\x49\\x6b\\xd9\\xd6\\xeb\\x34\\x16\\xd4\\x58\\xad\\x35\\x05\\x46\\x67\\xef\\xb6\\x96\\x54\\x8f\\x5d\\xef\\x28\\x74\\xaa\\xa3\\x42\\x0a\\x4b\\xb3\\x75\\xe9\\x45\\x69\\x69\\x45\\xe9\\xba\\xec\\xd2\\xc2\\x90\\x28\\xb5\\xb3\\xd0\\xa1\\xb7\\x7b\\x52\\x01\\xc1\\x67\\x62\\x13\\x77\\x41\\xc8\\x82\\x14\\x10\\x8e\\xc5\\x10\\x69\\x3c\\x2f\\x8b\\x7a\\x08\\x74\\xbd\\x09\\x3a\\x0d\\xfe\\x94\\x06\\x3f\\x94\\x59\\xc2\\x62\\xca\\xe2\\x8a\\x8a\\xdd\\x8b\\x6e\\xef\\xb1\\xb7\\xa4\\xc7\\xea\\x32\\x8d\\x8d\\xad\\xa9\\xf3\\xef\\x1c\\x74\\xab\\x42\\xdf\\x57\\x09\\x73\\x67\\x92\\xb7\\x7a\\x6e\\xed\\xcb\\x9f\\x12\\xf2\\x67\\x9e\\x6f\\x6b\\xba\\x98\\x4d\\xe5\\xc8\\xad\\xf0\\x25\\x99\\x4e\\xd4\\x60\\x82\\x6a\\x50\\x9f\\xa8\\xce\\x37\\x45\\xe1\\x5c\\x87\\xd6\\xed\\x76\\xba\\x93\\xb1\\x21\\x78\\xaf\\xcd\\xe6\\x54\\xa9\\x82\\x4a\\xf5\\x6f\\x60\\x3f\\xcd\\xdd\\x58\\x95\\x5e\\xe1\\x71\\xa7\\x24\\x3b\\x5d\\x25\\x96\\xaa\\x35\\xb9\\xa1\\xb9\\xcb\\xab\\x2c\\x25\\x6e\\x67\\x72\\x4a\\xa1\\xa7\\x22\\xbd\\x6a\\x6b\\x6e\\x4c\\xee\\x88\\x1f\\xc3\\x5d\\x62\\xa9\\xda\\x98\\x1b\\x9a\\xbb\\xa6\\xca\\x52\\xe2\\x72\\x26\\xa7\\xb8\\x25\\x8c\\x8d\\xb9\\xdc\\xea\\xda\\x16\\x14\\x16\\x93\\x10\\x15\\x19\\xa7\\x0d\\x6d\\xa9\\xfd\\x63\\x6d\\x4b\\xa8\\x36\\x2e\\x32\\x2a\\x21\\x26\\x0c\\xb5\\xd4\\xfe\\xe5\\xdf\\xc0\\x40\\xbe\\x1b\\xb1\\x8d\\x34\\x92\\x36\\xd0\\x82\\x70\\x6c\\x0a\\x96\\xe6\\x98\\x49\\x65\\x2b\\x34\\xbb\\x4c\\x85\\x26\\x97\\xa9\\xd0\\xa0\\x72\\xea\\x4c\\x2a\\x13\\x69\\x1c\\x7f\\x63\\xc6\\xa6\\xfc\\x4f\\x50\\xef\\x72\\xd1\\x8d\\x6b\\x3a\\x36\\x16\\xbc\\x25\\x1e\\x5f\\x8e\\x7e\\x89\\x92\\xf7\\x57\\xcc\\xfd\\xf8\\xb5\\x4f\\x0e\\x55\\xf4\\x7d\\xf2\\x1a\\xb3\\xa3\\x1f\\x01\\x33\\x31\\x92\\x7f\\xc0\\x20\\x24\\x43\\x04\\x12\\xbc\\xe0\\xb9\\x07\\xa9\\xd0\\x8d\\x90\\x32\\xfe\\x0a\\x93\\x3a\\x48\\x90\\xa5\\xd5\\xf8\\x2b\\x54\\x8c\\xf8\\x7c\\x70\\x14\\x52\\x49\\x0e\\xf9\\x17\\x0c\\x42\\x0a\\x84\\xa2\\x08\\xe5\\x9d\\xf8\\xf1\\x97\\xe5\\x77\\x22\\xfc\\xef\\xbc\\xcc\\x0c\\x6e\\x0c\\xd7\\x02\\x90\\x0e\\x7e\\x0c\\x78\\x08\\x07\\xf5\\x89\\x29\\x6a\\x4e\\xda\\x57\\x91\\x13\\x21\\x33\\x32\\x71\\x36\\x15\\xa7\\x35\\x14\\xa2\\x0b\\xe7\\xd0\\x3a\\xf1\\x96\\x73\\xe2\\xcd\\xf8\\x99\\x5f\\x19\\xe2\\x9e\\x7e\\x4e\\xa7\\xe7\\xc7\\xc6\\x6d\\xe3\\x76\\xfc\\x0e\\x7a\\xac\\xa6\\x46\\x9c\\x21\\x4e\\xaf\\xf6\\x4a\\xf6\\x48\\x8c\\xaf\\x0b\\x27\\xc1\\x0f\\x10\\x06\\xc2\\xb1\\x50\\x5e\\xb2\\xa1\\x02\\x9c\\x32\\x49\\x5a\\x8b\\xc7\\xb6\\xca\\x6a\\x79\\xe6\\x84\\x63\\x5e\\xef\\x2c\\x53\\x73\\xc5\\xf6\\xe6\\x06\\xd0\\x43\\x27\\x84\\x92\\x6b\\x89\\x00\\xe1\\x90\\x08\\x19\\x50\\x0c\\x5e\\xa8\\x83\\x66\\x68\\x87\\x39\\x30\\x0f\\xfa\\x61\\x10\\x96\\xc2\\x0a\\x18\\x81\\x4d\\xb0\\x15\\xb6\\xc3\\x0e\\xb8\\x19\\x76\\xc1\\x6e\\xc8\\xf3\\x66\\xff\\xe4\\xb6\\x5b\\x6f\\xd9\\x79\\xe3\\x0d\\xd7\\x5d\\x7b\\xcd\\x96\\xab\\x37\\xac\\x59\\xb5\\x72\\xf9\\xb2\\xc5\\x43\\x8b\\x16\\xf6\\xcd\\xef\\xed\\xe9\\x9a\\x31\\xbd\\xb5\\xa1\\xbe\\xa6\\xb2\\xb4\\xc4\\x53\\x60\\x35\\xc6\\x45\\x84\\x60\\x7d\\xae\\x03\\xb1\\xcd\\x56\\xc7\\xb6\\x5e\\x03\\x3d\\x53\\xb5\\xc9\\x55\\x3a\\x34\\xb6\\x18\\xc1\\x9c\\x6a\\x75\\xd1\\xeb\\xea\\x7a\\x1d\\xcf\\x9e\\xcc\\xf2\\x2e\\x6d\\x46\\x2e\\xa7\\xce\\x29\\x19\\x14\\x2e\\xa7\\x4e\\xfa\\xdb\\xac\\xb3\\x48\\xff\\xeb\\x42\\xf9\\x7a\\x5d\\x8c\\x60\\x36\\xbb\\x38\\x09\\xc1\\x45\\x51\\x74\\xda\\xc0\\xbf\\x25\\x6a\\x31\\x66\\x33\\x6f\\x76\\x39\\x35\\xf2\\x7f\\x28\\xf0\\xef\\x73\\x75\\x1e\\x4f\\x5d\\xbd\\xc7\\x53\\x7b\\xd0\\xe9\\x49\\x4c\\x34\\x18\\xca\\x0b\\x07\\xbb\\xd2\\xcd\\x69\\x76\\xbb\\xd9\\x6c\\xc7\\x11\\xc9\\x86\\x78\\xa3\\xb3\\x34\\x37\\xab\\x38\\xff\\xd2\\xed\\xe5\\xcb\\xf0\\x3b\\xcb\\xcb\\x2e\\xbe\\xfd\\xc8\\x32\\xae\\xfa\\x91\\x32\\xb1\\x36\\x29\\x21\\x21\\xa9\\x2e\\xed\\xee\\xea\\xbb\\xc7\\xc7\\x7e\\x5a\\xcd\\xfe\\x6f\\xd0\\x69\\x4a\\xa9\\x74\\x8a\\x6d\\xe5\\xf4\\x1f\\xf7\\x79\\x19\\xfd\\x87\\x2d\\xee\\xaa\\x2a\\x77\\xb9\\xf4\\x3f\\xeb\\x1d\\x0e\\x83\\x4d\\x1d\\x92\\xaa\\x73\\xa4\\x8b\\x7f\\x58\\x6f\\x75\\x38\\xac\\xe5\\xd2\\xff\\xcc\\x8a\\x4d\\x8e\\x8d\\xcf\\xce\\xca\\xcf\\xfa\\xfd\\xf8\\x92\\xc7\\x57\\x54\\x54\\xac\\x78\\x9c\\x9b\\xb7\\xdf\\xdb\\xdb\\xeb\\xdd\\xdf\\x2b\\xe6\\xc5\\xeb\\x75\\xb1\\xbd\\xe8\\x4d\\x2f\\xfd\\x77\\xa9\\xa6\\x82\\xfe\\xc3\\x03\\x51\\x86\\xcc\\xf6\\x9d\\xe2\\x83\\x37\\x21\\xfd\\x4d\\xe2\\x83\\xf2\\x1f\\x00\\x3c\\x44\\x8e\\xbf\\x4d\\x7e\\xa6\\x1e\\x01\\x0e\\xec\\x54\\x27\\x72\\x41\\xa4\\x77\\x4a\\x41\\x7e\\x6e\\x76\\x66\\x46\\x34\\xc1\\xc0\\xe7\\x3a\\x42\\x38\\xbe\\xa0\\x1c\\x17\\xb2\\x28\\x77\\x96\\x79\\x91\\xe6\\xf1\\xd1\\xb1\\x4a\\x31\\x3a\\x83\\x59\\xe7\\xe4\\x9c\\x3a\\xb3\\xf4\\x1f\\x5e\\x80\\x5b\\xc6\\x8f\\x8d\\x3f\\x86\\x9f\\x14\\xa6\\x68\\xc2\\xf4\\x59\\x69\\x06\\x4b\\xed\\x80\\xb7\\xa8\\x6f\\xaa\\x03\\xbd\\x8a\\xed\\xb1\\x96\\x14\\x4d\\x6c\\x42\\x68\\x92\\x59\\xa7\\x7e\\xe5\\x95\\x57\\x96\\x11\\x82\\x09\\x11\\xda\\x2f\\xe5\\x5d\\xca\\xe3\\xde\\xbc\\x18\\x67\\x33\\x26\\x45\\x19\\x0b\\x3d\\x5e\\xbb\\x77\\x70\\xaa\\x2d\\xb9\\x72\\x51\\x5d\\x61\\xae\\xb7\\x20\\xde\\x99\\x63\\x0b\\x4f\\x4b\\xb7\\xe6\\xe7\\xce\\x79\\x64\\xbc\\x83\\x84\\x1e\\x20\\x80\\xe1\\x94\\xef\\x0b\\x52\\x44\\xf6\\xd3\\xbc\\x4f\\xea\\x13\\x49\\x86\\x48\\x82\\xaf\\xa4\\x56\\x5b\\x0a\\xa8\\xc4\\x8b\\x71\\xe6\\xbb\\x48\\x51\\xc5\\x9a\\xfb\\x07\\x07\\x1f\\x58\\x5b\\xe1\\xff\\x7f\\xf1\\xec\\xd1\\x8e\\x19\\x47\\x1f\\x46\\x6f\\xad\\x3d\\xbe\\xb1\\xa2\\x62\\xe3\\xf1\\xb5\\x9f\\xac\\xa5\\x35\\xae\\x4e\\xac\\xd3\\x7c\\xb3\\x69\\x83\\x38\\x7e\\xe1\\x02\\xf3\\x59\\xd8\\x01\\xb8\\xfb\\xb9\\x14\\x48\\x84\\x4c\\xaf\\xdd\\x7f\\xc7\\x1c\\x11\\x44\\x6f\\x72\\x03\\xc2\\x1c\\xea\\xf7\\xdf\\xe3\\x2e\\x83\\xe6\\xd8\\xb4\\x68\\x5b\\x14\\xaf\\x8e\\x73\\x98\\x4c\\x2e\\xc4\\xe6\\x6a\\xaa\\xa0\\x33\\x33\\x19\\x4c\\x3b\\x4c\\x65\\xe2\\xee\\x1f\\xbf\\x13\\x19\\x3d\\x79\\x79\\xb9\\x9e\\xa2\\x97\\x33\\xa6\\xaf\\xac\\xdf\\x7d\\x6f\\x82\\x7b\\xba\\x7b\\x2d\\xea\\xbf\\x01\\x71\\xf9\\xb3\\x62\\x6d\\xb9\\xd5\\x59\\x45\\xfd\\x4d\\x8e\\x6d\\xeb\\x32\\x1b\\xea\\x1a\\x1c\\xbd\\xcc\\xaf\\x9a\\x42\\xce\\x72\\x3e\\xe1\\x4b\\x10\\xc0\\x0a\\xea\\x13\\x56\\x3d\\x4f\\xd7\\xbc\\xd9\\xa6\\x32\\x5b\\x9c\\x85\\x72\\xd3\\xe9\\x2e\\xe5\\x37\\x9c\\xe9\\x1e\\xc6\\xf9\\x5e\\x3d\\x72\\xe4\\x35\\x14\\xfb\\xb3\\x47\\x63\\x2c\\x4e\\x63\\xaa\\x3b\\x37\\x27\\x71\\x8a\\x2e\\x32\\x64\\x41\\x4c\\x9a\\xd3\\x98\\xe8\\x2a\\x70\\xc6\\x4f\\xd1\\x47\\x86\\x90\\xb3\\x77\\xde\\xf9\\xfd\\x79\\x93\\x37\\x3f\\x39\\x26\\x36\\x26\\x32\\x2e\\x25\\x3a\\xd1\\xe4\\xcd\\x37\\xc6\\xc4\\xc6\\x44\\x25\\x98\\xa3\\xa5\\x6f\\x47\\x91\\xb3\\xe4\\x19\\xe1\\x18\\x08\\x10\\x0f\\xea\\x13\\x1a\\x55\\xe0\\xb7\\x79\\x9b\\x7c\\xa2\\x5e\\x28\\x37\\xd0\\xc0\\xfd\\x8b\\x7e\\xd3\\xf0\\x04\\x8a\\x46\\x45\\xe5\\xb1\\x19\\x25\\x66\\xb2\\x65\\xb3\\xce\\xe4\\xd0\\x21\\x72\\x76\\x74\\xf4\\xdc\\x92\\xad\\x09\\xf1\\xd1\\x71\\x91\\xaa\\x19\\x2d\\x55\\xc9\\x99\\xc9\\x1a\\xae\\x8c\\xb6\\xcf\\xf7\\x2d\\xf9\\x8e\\x44\\x0a\\xb7\\x83\\x00\\xa1\\x60\\xf7\\x5a\\x31\\xcb\\xaf\\x47\\x30\\x59\\x0d\\x1c\\x06\\xcc\\xc1\\x4a\\x84\\x00\\x56\\x01\\xc6\\xe5\\x34\\x1b\\x72\\x34\\xed\\x66\\x3f\\x13\\x66\\xce\\x49\\x22\\xff\\x7c\\xf7\\xdd\\xef\\x20\\xe3\\x61\\xf1\\xa6\\x23\\x1f\\x7e\\x42\\xbe\\xbb\\xf6\\xda\\x73\\xf3\\x50\\x04\\xc8\\xfc\\xf3\\x0e\\xe1\\x7a\\x4a\\x5b\\x7d\\x22\\x44\\x85\\x99\\xbc\\xe4\\xa5\\x97\\x91\\x93\\x33\\xe3\\x9c\\xc3\\xc8\\xf8\\xce\\xdd\\x77\\xbf\\xc3\\xb9\\x3f\\xfd\\xe8\\x08\\xff\\xf6\\xb9\\x6b\\xaf\\x45\\x7b\\xc5\\x2f\\xe9\\xbb\\x79\\x64\\x27\\xf7\\x7b\\xe1\\x3d\\xd0\\x41\\x1c\\xa8\\x4f\\xc4\\xea\\x09\\x04\\xce\\x35\\xc5\\x2a\\xb3\\x99\\x6d\\x26\\xee\\xf7\\x39\\x9d\\x57\\xb7\\xb4\\x6c\\xee\\xcc\\xf9\\x5d\\xa4\\xa9\\xc0\\x62\\x71\\xa6\\x44\\xa8\\xfe\\xf2\\x26\\x8a\\xe0\\xc7\\x2a\\x97\\xb5\\x3a\\x1c\\xad\\xcb\\x2a\\x63\\x33\\x4d\\x31\\x31\\xa6\\xcc\\xd8\\xe9\\xef\\xd1\\xb9\\xf5\\x2e\\x99\\x8e\\x7f\\x10\\xe2\\x27\\x64\\xaf\\x72\\x82\\xa0\\x32\\xa3\\x77\\xf5\\x36\\x97\\xf1\\xf6\\x84\\x74\\xfc\\x3e\\x79\\xb7\\x60\\xc1\\xcc\\x6a\\x5d\\x6b\\xde\\x35\\xd3\\xae\\xa6\\xf2\\x5f\\x0f\\x40\\x4e\\x91\\x51\\x50\\x41\\x28\\x58\\xbc\\xa9\\xa1\\x88\\x60\\x69\\x56\\x12\\xbc\\x5a\\xbe\\x8a\\xb4\\x80\\x43\\x8a\\x13\\x9c\\xf6\\x93\\xc5\\xa4\\x52\\x72\\x92\\x36\\x8a\\x45\\xd3\\xc5\\x4f\\xd0\\xef\\x50\\x04\\x7a\\x5d\\xfc\\x54\\xcc\\x41\\xf9\\x7b\\xdf\\x7f\\x9f\\x8c\\x5e\\x1c\\x41\\x0f\\xa3\\x43\\xf4\\x1e\\xe7\\xbd\\x00\\x64\\x09\\x19\\xa5\\x35\\x97\\x68\\xb6\\x43\\xb9\\xe6\\x92\\x3f\\x19\\x9e\\x52\\x7b\\xc9\\x7f\\xb8\\x5e\\xc6\\x2a\\x2e\\xa5\\x5b\\x83\\x2b\\x2e\\xa9\\xaf\\x54\\x71\\x49\\xc3\\xa2\\x63\\x6c\\xac\\xe2\\x52\\x36\\x36\\x9b\\xef\\x45\\x6f\\x2e\\x7d\\x62\\x4b\\x6d\\x57\\x6f\\x61\\xab\\x33\\xb6\\xe2\\xaa\\x47\\x97\\x7d\\xfc\\xf1\\x9c\\xde\\x59\\x5d\\xff\\x7c\\xab\\x7d\\x4e\\x5c\\x76\\x75\\xc6\\xab\\x64\\xd4\\x3a\\x6d\\xe3\\xcc\\x19\\xd7\\xa7\\x86\\x17\\xd4\\xb5\\x65\\x74\\x6d\\x6d\\xb3\\xa2\\xb3\\xe2\\x85\\xa9\\x85\\x35\\x75\\xe8\\x57\\xb8\\xb4\\xd2\\xe2\\x34\\x46\\xc8\\xf7\\x79\\x7c\\x5f\\x90\\x0e\\xb2\\x1f\\xec\\xd4\\x7f\\x8f\\x39\\x9e\\xc3\\xfc\\x4a\\x01\\xf1\\x84\\xe3\\xc9\\xb0\\x12\\x4d\\x4e\\x08\\x75\\x99\\xd5\\xd2\\xcb\\x68\\x76\\xb0\\xdb\\x53\\x63\\xec\\x69\\x2a\\x69\\x32\\x5d\\xae\\x19\\xfa\\x53\\x43\\x28\\x0a\\x3b\\x99\\xc1\\xcf\\xba\\xe9\\xd8\\x82\\xd5\\xcf\\xec\\x6c\\x99\\xbe\\xf3\\x97\\x4b\\x56\\x9c\\xbc\\xa1\\x4d\\x2d\\x7e\\xb6\\x75\\x38\\x77\\x66\\x79\\x9a\\xc5\\xdb\\x59\\x90\\xd9\\x5e\\x61\\x41\\xbb\\x96\\xee\\x1f\\xc8\\x6b\\xbc\\xe1\\xe9\\x55\\x4f\\xac\\x7e\\x7a\\x47\\xa3\\x7b\\xe9\\xfe\\x81\\xb9\\x83\\x19\\xcd\\x8b\\xbd\\x3f\\xaf\\x5d\\xda\\x68\\xd3\\x65\\x37\\xba\\xe9\\x18\\xee\\x07\\x20\\x2b\\xc8\\x28\\x84\\x43\\x02\\x3d\\x1d\\x04\\x1e\\x71\\x18\\xe4\\x3e\\x25\\xac\\x4f\\x23\\x22\\x00\\x22\\x12\\x22\\xe2\\x35\\x91\\x10\\x0e\\x53\\x4c\\xc2\\x44\\x7f\\x2a\\x5d\\xe9\\x77\\x08\\xec\\x47\\xbf\\x59\\xfe\\xec\\xae\\x99\\x33\\x6f\\x7d\\x6a\\xe8\\xe4\\xc9\\x82\\xce\\x8a\\x34\\xb3\\xb7\\xa7\\x98\\x8c\\xb6\\x5c\\x7f\\x72\\xe9\\x43\\xcb\\x7e\\x71\\x5d\\x13\\xf7\\xf8\\x78\\x8e\\xad\\x7e\\xc0\\xfb\\x70\\xc9\\xa2\\xc6\\x0c\\xa9\\xaf\\x0e\\x01\\x90\\x22\\x32\\x0a\\x61\\xf4\\xee\\x17\\x07\\x84\\xe7\\x48\\x1f\\xf0\\xc0\\xfc\\x77\\x13\\x4e\\xbb\\xe0\\x73\\x14\\x1d\\xfd\\x4f\\x67\\xe2\\xfe\\x3a\\xfe\\x17\\xbc\\xe9\\xd2\\x30\\xf7\\xd3\\xf1\\xad\\xd8\\x82\\xfe\\x29\\xfe\\xeb\\x7d\\x32\\xfa\\xc1\\x47\\x80\\xe0\\x21\\x00\\x92\\x47\\x46\\x21\\x84\\xd6\\xd7\\x61\\x01\\x88\\x7d\\xca\\x0d\\xb9\\xe0\\x59\\x89\\x94\\x63\\x12\\xee\\xcb\\xf1\\x37\\x25\\xd3\\x63\\x7c\\x17\\xce\\x43\\xaf\\x8b\\x4e\\x32\\xfa\\x81\\x28\\xd2\\x31\\x9d\\xeb\\xfb\\x82\\xcc\\x26\\xfb\\x21\\x07\\x8a\\xbd\\x85\\x0e\\x44\\x78\\xa0\\xf7\\xa0\\x00\\x73\\x02\\x87\\x85\\x95\\xca\\xa8\\x0a\\x40\\xbd\\x44\\x01\\xa3\\xab\\xd1\\xd9\\xd3\\xe8\\xc8\\x26\\x38\\x2c\\x93\\x46\\x56\\x56\\xe9\\xfd\\x23\\x5b\\x28\\x69\\x7d\\x64\\x76\\xc2\\xbc\\x6d\\x07\\x66\\x5f\\xf5\\xec\\x8e\\xc6\\xf6\\x9b\\x9f\\x5a\\x7a\\xf5\\x93\\x9b\\xbd\\x48\\xfc\\x0a\\x99\\x4a\\xda\\xf2\\xf2\\xba\\xaa\\xd3\\x8d\\xe5\\x7d\\x55\\xa9\\x95\\xee\\x8c\\x29\\xe8\\x2f\\xe8\\xcb\\xdd\\xc6\\xe2\\xec\\xc4\\x86\\xeb\\x4e\\xad\\x78\\x71\\xc5\\x2f\\xaf\\x9b\\x5a\\x3c\\xf4\\x93\\xae\\xbc\\xaa\\xf4\\xe8\\xf4\\xa9\\x03\\x65\\xbf\\x2b\\x19\\x68\\x72\\x08\\x61\\x91\\x21\\x4f\\xd1\\x3a\\x46\\xb7\\x02\\x90\\x58\\xda\\xcf\\x97\\xd5\\x1b\\x92\\x8f\\x92\\x20\\xa0\\x87\\x83\\xea\\x0d\\xc5\\x8a\\xe7\\xc4\\x43\\xe2\\x39\\xa4\\x43\\xf3\\x91\\x0e\\xbd\\x28\\x96\\x90\\x51\\xd1\\x80\\xce\\x48\\x34\\x5f\\x01\\x20\\x21\\xe4\\x16\\x99\\x26\\xf0\\xcc\\x43\\x4d\\x90\\x5c\\x96\\xa5\\x8c\\x0b\\xa0\\xa9\\x95\\xc7\\xcc\\x65\\xd2\\x98\\x5e\\xe1\\x2a\\xc4\\x33\\xc8\\x70\\xe9\\x39\\x14\\x25\\x7e\\x41\\x6e\\x39\\x3d\\x5e\\x74\\xfa\\x34\\x7e\\x89\\xad\\x9d\\x43\\xbe\\x2f\\x88\\x9d\\x8c\\x82\\x96\\xde\\xed\\x05\\x0c\\xab\\x01\\x73\\x78\\xb5\\x3f\\x0d\\x49\\x2d\\x6a\\x4e\\x8d\\xb1\\x44\\x11\\x35\\xad\\x41\\xe4\\x37\\xa5\\x4c\\x31\\xf4\\xd4\\x9c\\x8b\\x46\\x86\\x86\\x8d\\x87\\xe7\\x0c\\x3d\\xb4\\xae\\x0a\\x23\\xc3\\x9c\\xae\\xa6\\x5e\\x44\\x46\\xc7\\x33\\x96\\x3d\\xbc\\xb6\\xcc\\xb9\\xe4\\xde\\xe1\\x25\\x03\\x68\\xc3\\x2a\\x40\\x70\\x0f\\x00\\xb9\\x9f\\x8c\\xc2\\x14\\xe9\\x1b\\xa1\\x02\\xe2\\xe4\\x03\\x00\\x04\\xdd\\x1c\\xeb\\x8b\\x68\\xad\\x26\\x9a\\x7e\\x83\\x56\\xd5\\xd6\\x14\\xb2\\xda\\x54\\xf9\\xdb\\x24\\xb6\\x17\\x21\\x2b\\x9a\\x23\\x76\\xa2\\x93\\xe2\\x09\\xf4\\xf4\\x16\\xf1\\x37\\x64\\x54\\xd4\\x5e\\x87\\x16\\x8f\\x5f\\x18\\xdf\\x02\\x88\\xca\\xac\\x41\\x32\\x2a\\xd7\\x5d\\xc3\\x80\\x57\\x4b\\xcd\\x9a\\xed\\x9f\\x71\\x51\\x9c\\xda\\xe0\\xb0\\xd0\\xbe\\x40\\x4f\\xe2\\xc7\\x2e\\x15\\xa3\\x38\\x49\\xe8\\xb1\\xb6\\x5f\\x05\\x40\\xe6\\x52\\xbe\\x6c\\xde\\x34\\x35\\x8f\\x31\\x2b\\xa7\\x47\\x93\\x59\\x13\\x7a\\x5c\\xef\\x97\\xa7\\xb4\\xe4\\x94\\x5a\\x29\\x39\\x65\\x63\\x25\\xa7\\x86\\x9f\\x46\\x05\\xe2\\x9d\\xbf\\x38\\x20\\xa2\\x52\\x3c\\x15\\xd7\\x5c\\x1c\\xc1\\xaf\\x88\\x19\\x08\\x9d\\x19\\x4f\\x95\\xbe\\x80\\xe0\\x20\\x00\\x89\\xa1\\x6b\\x22\\xd9\\x9b\\xa0\\xc2\\x18\\x30\\x6a\\xe4\\x10\\xc6\\xd0\\x8d\\xe4\\x66\\x6b\\xa2\\x69\\xd7\\x9a\\x4c\\x12\\x61\\x13\\xe2\\x4c\\x24\\x46\\x3c\\x2f\\xfe\\x1c\\x89\\xe7\\x51\\x0c\\x6a\\x41\\x48\\x87\\x9f\\x1c\\xaf\\x23\\xa3\\xe3\\xb5\\xf8\\x29\\xc0\\x30\\xe4\\xfb\\x82\\xf4\\x53\\xfd\\xc7\\x01\\x49\\xde\\x78\\xe5\\xc2\\xb2\\x9c\\xa6\\xb3\\x16\\x9a\\xed\\x76\\x7b\\x1a\\xed\\xc7\\xff\\x22\\x47\\x1c\\xe9\\x6f\\xbc\\xe1\\xa9\\x55\\x6b\\x9e\\xbe\\x61\\x6a\\xc3\\x0d\\x4f\\xad\\x59\\xf5\\xd4\\x8e\\x26\\xf1\\x4c\\x72\\x49\\x47\\x51\\x69\\x47\\x51\\x42\\x82\\xa7\\xb3\\xb4\\xb0\\xa3\\x38\\x19\\x7d\\xb2\\xf4\\xe4\\x0d\\xcd\\xcd\\x37\\x9c\\x5c\\xfa\\xfc\\xd2\\x53\\x3b\\x9a\\x9b\\x77\\x9c\\x5a\\x8a\\x4a\\x07\\x9a\\x1d\\x8e\\xe6\\xc1\\x92\\x17\\x4a\\x06\\x9b\\xb3\\x32\\x5b\\x06\\x4b\\xa8\\x5c\\xeb\\xf3\\x55\\x92\\xc5\\x64\\x3f\\xc4\\x42\\xb6\\xb4\\x8f\\x0b\\x92\\x50\\x43\\x8d\\x3c\\xc1\\x50\\x7f\\x65\\x3e\\x6d\\x94\\x4f\\x41\\x50\\x19\\x54\\x36\\xe1\\x3f\\xf2\\xba\\x18\\xf5\\x75\\xfe\\xfc\\xe1\\x37\\x2b\\x6a\\xd7\\xfc\\xfa\\xc6\\xc6\\xc6\\x1d\\xcf\\xac\\x59\\xf5\\xcc\\x4d\\x2d\\xe2\\x67\\x29\\xa5\\x5d\\x9e\\xd2\\xee\\xe2\\xc4\\xc4\\x92\\xee\\xb2\\xa2\\xce\\xd2\\x14\\xf4\\xc9\\xe6\\x97\\x6b\\x0e\\xaf\\x7f\\x26\\xb2\\xe9\\xfa\\x53\\xcb\\x9e\\x5f\\x76\\x4a\\xe2\\xfd\\xd4\\x32\\x54\\x36\\xd8\\x94\\xe1\\x68\\x1a\\x2c\\x7d\\xa1\\x74\\xb0\\xc5\\xe1\\x68\\x19\\x2c\\x65\\x7e\\xca\\xdd\\x00\\x64\\x84\\x8c\\x42\\x34\\xab\\xe1\\x13\\x29\\x6b\\x79\\x34\\xb6\\xbf\\xdf\\x2f\\xbb\\xe4\\x29\\x90\\x66\\xca\\x30\\xc9\\xf2\\xd0\\x1c\\x90\\xa5\\x40\\x85\\x74\\x26\\x24\\xad\\x05\\xc9\\x3a\\xc1\\x8b\\x7f\\x2d\\x9e\\x41\\x1f\\x0c\\x3e\\x7a\\x75\\x4d\\x4a\\x71\\x7b\\x1e\\x0a\\x13\\xdf\\x16\\x17\\xbc\\xd4\\xb5\\x08\\x0d\\x74\\xbd\\x84\\xee\\x12\\x17\\x93\\xd1\\xcc\\xae\\xed\\x5d\\xb5\\x8b\\xa7\\x15\\xeb\\xc5\\x8c\\x30\\xbc\\x0e\\xb5\\xb4\\xb4\\xb4\\x00\\x82\\xed\\xbe\\x2f\\x48\\x0f\\xd9\\x0f\\x15\\xb4\\x7a\\x85\\x9c\\xed\\x04\\x08\\x8f\\x09\\x3f\\x4c\\x95\\x11\\xc0\\xfd\\xfe\\x72\\x23\\xb5\\x5c\\x73\\x69\\xb1\\xdb\\x95\\x93\\x95\\x16\\x93\\x2d\\xa8\\x0d\\x34\\xd8\\xd6\\x36\\x11\\x88\\x61\\x08\\x0c\\xc4\\x30\\xc8\\x7b\\x6f\\x6a\\x36\\xb1\\xf9\\xbd\\x1a\\x5c\\xbb\\xb1\\xbc\\xa7\\x6c\\xe8\\xde\\xe1\\xa2\\xfa\\xab\\x1f\\x9c\\xbf\\xf0\\xf1\\x6d\\x8d\\x58\\x3c\\x93\\xec\\x6e\\xc8\\xc8\\x69\\xc8\\x8f\\x8f\\x2d\\xec\\xf2\\x0e\\x3e\\xb0\\xa6\\x7c\\xea\\xb6\\x27\\x86\\xca\\x36\\xac\\x98\\x5f\\x6f\\x47\\xc8\\x60\\xf1\\x76\\xe4\\x39\\x9b\\x9d\\xf1\\xa8\\xd4\\x98\\x6d\\x49\\x8e\\x48\\x28\\x9c\\xbe\\xb6\\xb3\\x7d\\x6b\\x67\\x56\\x7a\\xe7\\x2d\\xfd\\xa9\\x25\\x19\\xb1\\x31\\xe6\\xac\\x58\\xa3\\xc3\\x94\\x18\\x19\\x5b\\x32\\x6b\\x63\\x57\\xc7\\xd6\\x99\\xf6\\x48\\x73\\xf1\\xcc\\x55\\x8d\\xf9\\xd5\\xe9\\xd1\\xfa\\xb4\\x6c\\x69\\x7f\\x06\\x20\\xf7\\x50\\xbd\\x45\\x5a\\xa3\\x1c\\x46\\xb4\\x3c\\x9d\\xb2\\x29\\xf8\\xa5\\x0b\\xab\\x70\\x76\\x8f\\xb8\\x48\\xfc\\x87\\x38\\x4c\\xea\\xb8\\xc7\\x2f\\xb5\\x73\\x8f\\x7f\\x00\\x08\\xf6\\xfb\\xbe\\x20\\xd5\\x64\\x14\\x74\\x92\\xdc\\x23\\x1c\\x46\\x18\\xad\\xf6\\x9f\\x80\\xb1\\xed\\x5c\\x07\\x92\\xad\\xc7\\x4b\\xfd\\xa1\\x51\\x12\\x7b\\xca\\x8e\\x4d\\x97\\x96\\x54\\xd7\\x6e\\x3a\\x3a\\x38\\xf8\\xe8\\xd5\\xb5\\x48\\x87\\xfa\\xe7\\xcc\\x99\\x27\\x49\\xa9\\x90\\x81\\xfd\\xcb\\x0a\\x0b\\x97\\xed\\x1f\\xc0\\xdf\\x8d\\x87\\x0c\\xcd\\x9b\\x37\\x84\\xbf\\x93\\xd6\\x6c\\x16\\x00\\x79\\x8a\\x8c\\x82\\x1a\\x12\\xbc\\xb1\\x88\\xde\\x0d\\x96\\xf8\\x85\\xd5\\x7e\\x76\\xb5\\x92\\x44\\x41\\x86\\x42\\xa6\\x56\\xe1\\x45\\x11\\xe1\\x48\\x8f\\x2c\\x62\\x8b\\xf8\\x67\\x71\\x1a\\xb2\\xa0\\x4a\\x6f\\x39\\xd7\\x7a\\x51\\x9a\\x55\\x08\\x4c\\x00\\x64\\x17\\x95\\x2f\\x29\\xde\\xa4\\x50\\xb9\\x96\\x1d\\x87\\x25\\xc1\\x82\\xd9\\xac\\x8a\\xd6\\x4c\\x08\\x16\\xce\\xcc\\x71\\x66\\xce\\xa4\\xd5\\x3a\\x39\\x4f\\x3b\\x22\\xaf\\x89\\x2b\\x16\\x8b\\x6f\\x20\\xd5\\xf4\\xb9\\x3e\\x5c\\x8f\\xeb\\x2e\\x8e\\xe0\\xf6\\xf1\\xc7\\xc9\\xe8\\xf8\\xcb\\xb8\\x50\\xe2\\xd3\\x0b\\x40\\x6e\\xa6\\xfb\\x8b\\xd1\\x9b\\x18\\x22\\x70\\x9c\\xbf\\x90\\xe0\\x04\\xed\\xe8\\x68\\x0d\\xed\\x59\\x7a\\xf1\\x9c\\xe3\\xa8\\x48\\xed\\x79\\x07\\x55\\x8a\\x77\\xa1\\x6b\\xc4\\x5f\\x7e\\xf2\\x37\\xf1\\x19\\xb4\\x46\\xbc\\x0b\\x95\\x73\\x11\\x68\\xeb\\xf8\\x33\\xe3\\x27\\xd0\\x0d\\xe2\\x46\\xdc\\x84\\xab\\xa8\\x6c\\x2c\\x06\\x20\\x8f\\xd3\\x7e\\x48\\xf4\\xc6\\x09\\x74\\xcc\\x82\\x3a\\x22\\x3a\\x5a\\x43\\x3b\\x02\\x99\\x10\\xad\\x53\\x88\\xd7\\xa0\\x30\\x94\\x23\\x4e\\x13\\x3f\\x13\\x67\\xa1\\x5c\\x7c\\x1d\\x0e\\x19\\x0f\\x15\\x17\\xa3\\x43\\xf8\\x73\\x26\\x6b\\xef\\x06\\x20\\x4d\\x54\\x16\\xda\\xbc\\x69\\x21\\x48\\xce\\x0f\\xd2\\x08\\x9c\\xa4\\x2b\\xe0\\x3e\\xff\\xd5\\x8c\\x32\\xb9\\x00\\xa2\\x3a\\x96\\x4a\\x6d\\x17\\x8d\\x8a\\xc2\\x80\\x9b\\x2e\\xb5\\xe2\\xea\\xf1\\x3f\\x70\\x7b\\xde\\x7f\\xff\\x56\\x2e\\xe5\\x83\\x9b\\xe9\\xb2\\x28\\x25\\xaf\\x72\\x9f\\x09\\xdf\\x82\\x0e\\xec\\xa0\\x3e\\x91\\xf2\\xa3\\x3a\\xba\\x3f\\x53\\xc3\\x84\\xa9\\xf2\\x59\\x6e\\xd7\\x96\\x69\\xd3\\xb6\\x76\\xe7\\x3e\\xad\\xb1\\x94\\x64\\xd8\\x8b\\x2d\\x9a\\x77\\x54\\x0d\\xde\\x24\\x67\\x7d\\x86\\x6a\\xd7\\x2d\\x71\\xe9\\xae\\x04\\x0d\\x3f\\xe6\\x9c\\x55\\x6a\\x32\\x95\\xce\\x72\\xea\\x6d\\xc9\\x1a\\x4d\\xb2\\x4d\\x9f\\xb8\\x1e\\x1b\\xe2\\xa2\\xe3\\x22\\x84\\xaa\\xe6\\xca\\x04\\x5b\\x7c\\x14\\x97\\x2d\\xb5\\xeb\\x9f\\x00\\x5c\\x0d\\xd9\\x09\\x02\\x08\\xc7\\x78\\x40\\xb9\\xd2\\x66\\xce\\xbb\\x2c\\x4e\\xae\\x46\\x3c\\x2b\\x3e\\x8b\\x8b\\x13\\xb9\\xda\\xe6\\xff\\x39\\xc9\\xfa\\xe0\\x2e\\x00\\x52\\x4c\\xf6\\x53\\x9f\\x9d\\x96\\xe1\\x4a\\xd6\\xa2\\x8d\\xa9\\x9b\\x2a\\xa5\\xec\\x16\\xb3\\x17\\x49\\xf1\\xa5\\xf5\\xe8\\xc1\\xb6\\x59\\xa8\\x7d\\x6a\\x66\\x75\\x56\\x2c\\x12\\xcf\\x56\\xae\\xbb\\x7f\\xd1\\xc0\\x91\\x35\\xe5\\xf6\\xd6\\xd5\\x0d\\x2f\\xe3\\x94\\xa7\\xd1\\xf6\\xba\\x6b\\x72\\x2a\\xa6\\xc6\\x67\\x7b\\x2d\\x33\\x7f\\xb2\\xb4\\x2c\\xb7\\xe7\\x86\\x59\\xde\\xe5\\x43\\x83\\xc5\\xf7\\xca\\x6b\\xa6\\x8c\\xec\\x87\\x52\\x10\\x8e\\xd9\\xb4\\x92\\x8d\\xe1\\xd7\\xbb\\xe9\\xa7\\x64\\xe7\\xa7\\xf4\\x25\\x45\\x48\\xd0\\x0b\\x16\\xfe\\x40\\x69\\x33\\xfa\\x9f\\x6d\\x5d\\xf3\\x62\\x32\\xbc\\x0e\\x53\\x49\\x56\\x3c\\x12\\xcf\\xa2\\x86\\xab\\xf6\\x75\\x2c\\x78\\x70\\x43\\x4d\\x52\\xc1\\xd4\\xac\\xfc\\x76\\x8f\\xb1\\x69\\xdb\\x63\\x0b\\xda\\xee\\xdd\\xd6\\x86\\x50\\x2c\\x4a\\xc8\\xaf\\xc9\\xe8\\x9a\\x9b\\xec\\x6e\\xca\\xda\\x86\\xc7\\xd0\\xd4\\xea\\x84\\xec\\xd4\\x98\\xf0\\x78\\x5b\\x7c\\xdb\\xa6\\x76\\x87\\x63\\xe6\\xe6\\xf6\\xac\\x96\\x8a\\xbc\\xa8\\x88\\xec\\xaa\\x2e\\xcf\\x8c\\x6b\\x3a\\x33\\x6d\\xb3\\x76\\xcc\\x4f\\xca\\x35\\xc7\\x4c\\xab\\xb0\\x7b\\xcc\\x51\\x4c\\x16\\x4b\\xf3\\xa3\\x8b\\x8c\\xd2\\xf3\\x7a\\xf5\\x89\\xf0\\xb0\\x10\\x6a\\xdb\\x3b\\x75\\x66\\x49\\x85\\xb1\\x49\\x4b\\x4d\\xa3\\xe2\\x5e\\xb9\\xf5\\x56\\xf1\\xdc\\xf8\\x57\\x11\\x38\\x0e\\xc5\\x8e\\x7f\\x80\\xa6\\xe8\\xd0\\x5b\\x1f\\x7d\\xf9\\xe5\\x71\\xfc\\xd9\\x78\\x2d\\xea\\x37\\xd1\\x3e\\x3e\\xe2\\xfb\\x82\\xd8\\xc8\\x28\\x64\\x48\\x7d\\x8c\\x50\\xae\\x43\\x2b\\x69\\x42\\xaa\\x89\\xf6\\xb2\\x86\\xca\\xa9\\x57\\xe4\\x9e\\x7f\\xae\\x15\\xbf\\x2b\\x4e\\x31\\x86\\x67\\x14\\x94\\x24\\xcf\\xbb\\x63\\xc0\\xe5\\x59\\xf5\\xe0\\x8a\\x8e\\x83\\x9b\\x5b\\x39\\xa4\\x53\\xf5\\x36\\xe6\\x54\\xa6\\x47\\x2f\\x9c\\x9b\\xe6\\xb6\\xa7\\x84\\x63\\x37\\xee\\xfc\\xf0\\x3d\\x21\\x62\\x4a\\x88\\xb3\\x6f\\xb4\\x7b\\xfa\\x4f\\x56\\x54\\x65\\x77\\x6d\\x9d\\x5e\\xe9\\x4a\\xca\\xaf\\xb2\\xcc\\x58\\x10\\xa6\\xd1\\x85\\x48\\x6d\\x79\\xc2\\xf7\\x05\\x69\\x20\\x07\\xc1\\x08\\xd9\\x92\\xcd\\x9e\\xa2\\xa5\\xf3\\x52\\x47\\x3f\\xe5\\x76\\x17\\x06\\x30\\xc2\\xf6\\x3c\\x2e\\x55\\x50\\xe9\\x62\\xfc\\x1c\\x71\\x5b\\x23\\xdb\\x6f\\x1d\\x6e\\x98\\x92\\xb3\\x7d\\x66\\xf7\\xce\\x79\\xf9\\xd5\\xeb\\x8f\\x2c\\x18\\x7c\\x6c\\x73\\xdd\\xd0\\xc9\\x6f\\x77\\xbd\\x5d\\x35\\xcf\\xd0\\x3b\\x27\\xbd\\x32\\x27\\x7e\\x1e\\x39\\xf8\\x71\\x7c\\xe5\\xb2\\x19\\x59\\x45\\xa8\\x78\\xf0\\xb6\\x59\\x9d\\x7b\\x96\\x96\\x96\\xac\\x7b\\x62\\x6d\\xf3\\xd1\\x6f\\x0f\\x36\\x8f\\xdf\\x9c\\x6f\\x76\\x2d\\x1c\\x4e\\xcc\\xab\\xb2\\xb6\\x75\\x48\\x7d\\x72\\x98\\xd6\\xd2\\x1d\\x65\\x73\\x14\\x31\\x5f\\xbe\\xb4\\xb0\\x48\\x83\\x18\\x2e\\xfe\\x0f\\xfa\\x66\\x7c\\x2b\\xf7\\x00\\xf7\\xe5\\xa5\\x48\\xee\\xe8\\x69\\x6a\\x07\\x9e\\xf4\\x7d\\x41\\x3c\\x64\\x3f\\x98\\xc0\\x05\\x95\\x10\\x7a\\xb2\\xbc\\x28\\xd7\\x9a\\x38\\x85\\xfa\\xd2\\x85\\x80\\xe9\\xe2\\x2a\\x70\\x17\\xca\\x25\\xc5\\xf2\\x93\\x31\\x17\\x18\\x01\\x28\\x6d\\x34\\xcc\\x07\\x42\\x5d\\x73\\x24\\x69\\x76\\x6b\\xe6\\x54\\x67\\x62\\xed\\x86\\x23\\x73\\x7b\\x8f\\x6c\\xac\\x5f\\xda\\xdd\\x3a\\xa7\\x72\\xd5\\x3d\\xdd\\xb3\\xef\\x59\\xed\\xfd\\x21\\x3e\\xbb\\xc2\\x92\\x56\\x9e\\x15\\x1f\\x9f\\x5d\\x6e\\xb1\\x94\\x67\\xc5\\x27\\xb6\\x54\\x57\\x35\\x35\\x57\\x57\\x37\\x71\\x33\\x3a\\xb6\\xda\\x62\\xdc\\xf5\\xb3\\xf2\\x66\\x6d\\x99\\x69\\xb7\\xcf\\xdc\\x32\\xab\\x7f\\x34\\xdd\\xba\\xb5\\xa3\\x7d\\xd3\\x8c\\x8c\\x8c\\x19\\x9b\\xc6\\x4f\\xa4\\x3a\\x53\\x35\\x9a\\x54\\x67\\xaa\\xa9\\xc0\\xac\\xd5\\x9a\\x0b\\x70\\x48\\x69\\x79\\x45\\x49\\x71\\x5d\\x9d\\x34\\x06\\x4f\\xfa\\xbe\\xa2\\x6b\\xcd\\x3f\\x06\\x89\\x1a\\x9c\\x4b\\xab\\x70\\x15\\xca\\xa7\\xdf\\x41\\x67\\x7d\\x66\\x97\\x36\\xdf\\x5d\\x28\\x4f\\x07\\x5d\\x8c\\x1e\\x1d\\x6c\\xbb\\xbe\\xbf\\x2c\\x34\\x7b\\x6d\\x65\\xf7\\xae\\x85\\xae\\xaa\\x75\\xf7\\x2f\\xe8\\x3b\\x72\\x55\\x4d\\xdf\\xcf\\xbe\\xd9\\xa3\\xfb\\xa6\\xb4\\x5d\\x37\\xbb\\x2d\\xbd\\x22\\xd3\\x30\\xfb\\x0d\\x7d\\x51\\x5f\\xb3\\x2d\\xcb\\xd9\\x7f\\x7b\\x6f\\xe7\\xdd\\xab\\xab\\x4a\\xae\\x3a\\x7e\\x55\\xf3\\xd8\\x37\\x3f\\xad\\xf9\\x2b\\x5a\\x9f\\x95\\x3c\\xd0\\xb7\\xc8\\xe8\\x6e\\x48\\x6f\\xeb\\x63\\x7e\\x1c\\xb7\\xef\\x02\\x77\\x80\\x4b\\x01\\x1d\\x98\\x41\\x7d\\xc2\\x18\\xfb\\x23\\xbe\\x2b\\x5b\\x90\\xf3\\x93\\x3b\\x90\\xd5\\xb6\\xaa\\xa6\\x66\\x75\\x7b\\x96\\xff\\xff\\x5f\\x2a\\xc9\\xcf\\xf7\\x14\\x3b\\xf3\\x8a\\x51\\xd1\\x8c\\x8d\\xd3\\xad\\xd6\\xe9\\x1b\\x67\\xdc\\xdb\\xbe\\xa9\\x3d\\x3d\\xbd\\x7d\\x53\\x7b\\xe8\\xcc\\xfa\\xfa\\x99\\xc7\\x3b\\x6a\\x6a\\x3a\\x00\\xa1\\x85\\x00\\xf8\\x2c\\x17\\x1d\\x20\\x97\\xcc\\x1a\\x95\\xcb\\xe2\\xc4\\x67\\x7f\\xf7\\x6b\\x34\\xa2\\xc5\\x76\\xc7\\xbe\\xab\\x24\\xbe\\x32\\xc9\\xcb\\xdc\\x3b\\xc2\\xaa\\xff\\xe8\\xe7\\x70\\xaa\\xcc\\xdc\\x3b\\xb9\\x5d\\x5b\\x5b\\xa7\\x6d\\xe9\\xce\\x7d\\x3a\\xca\\x52\\x92\\x91\\x51\\x9c\\xa6\\x59\\xfe\\xdb\\xc7\\x7e\\x22\\x49\\xca\\xb2\\xd4\\xd4\\xb2\\x59\\x4e\\xbd\\xdd\\x18\\x1d\\x6d\\xb4\\xeb\\x9f\\x7b\\x9a\\xf9\\xd0\\x32\\x7c\\x17\\xb8\\xa3\\x5c\\x0a\\xe4\\x83\\x70\\xcc\\xa4\\xa1\\x32\\xc8\\x5f\\x70\\xd7\\xef\\x1c\\x0b\\xca\\x92\\xcf\\xbe\\xa8\\xf7\\x5f\\xa3\\xc1\\xea\\xae\\xd2\\xa2\\x29\\x71\\xf6\\xe4\\xcc\\xd2\\x97\\xf3\\xda\\x97\\x95\\xd6\\xad\\x69\\xcf\\x6e\\xa8\\xa8\\x9f\\x96\\xdf\\x7d\\x55\\x5d\\xd1\\x8a\\xee\\xa2\\x57\\x2a\\x3d\\x65\\xee\\x9a\\xb2\\x2e\\xf4\\x76\\x9e\\x3d\\x32\\xd1\\x10\\x91\\x9a\\x5c\\x38\\xd3\\x93\\x94\\xe4\\x99\\x55\\x58\\xd6\\x61\\xd0\\x76\\xb6\\x14\\x75\\x94\\x18\\xe3\\x4b\\x7a\\xab\\x53\\x9d\\xee\\x34\\x57\\x06\\x60\\x94\\x06\\xc0\\x3d\\xce\\xe9\\x20\\x0c\\x22\\xa5\\x5d\\x28\\x82\\xea\\x7b\\x93\\x42\\x7d\\xa8\\xf5\\x9b\\x3a\\x39\\xd0\\xc7\\xe5\\x44\\x4e\\x97\\x8a\\x9b\\x31\\x67\\xce\\x2b\\xe2\\x03\\x61\\x68\\xd1\\x2b\\xe2\\xed\\xf7\\x4f\\x41\\xd5\\xf7\\x1d\\x3a\\xb4\\x1d\\x7d\\x81\\xc5\\xec\\x77\\xb4\\x52\\x9b\\x33\\x7d\\x17\\xb8\\x3b\\x38\\x1d\\x58\\x41\\x38\\xa6\\xa1\\x6b\\x4d\\x91\\x3f\\x4a\\x23\\x6d\\xce\\x00\\xf1\\x23\\xa8\\x50\\xb9\\x0b\\x5d\\x10\\x7f\\xa6\\x53\\x25\\x9a\\xed\\xba\\xeb\\x6e\\xb6\\x34\\xaf\\x69\\x2d\\x59\\xd1\\xe1\\x42\\x2f\\xe3\\xe2\\x3c\\xa3\\x3d\\x2e\\xb4\\xbc\\xcc\\xe9\\x8c\\x40\\x9b\\xd1\\x4f\\x0f\\xee\\xe4\\x42\\xd4\\xc2\\x75\\x1b\\x5d\\xfd\\xcd\\x39\\x29\\xa5\\x9d\\x6e\\x7b\\x8a\\x36\\x25\\xc3\\xe0\\x2a\\x4f\\x08\\x63\\x73\\xcc\\xe1\\xbb\\xc0\\x1d\\xe1\\xd2\\x7e\\x44\\xee\\x38\\xff\\x93\\xdc\\x49\\x08\\x73\\xcf\\x9d\\x9a\\x17\\x62\\xec\\xf2\\x94\\xcd\\xf5\\xa6\\x48\\x33\\xae\\x7e\\x7d\\x67\\x5e\\xe3\\x96\\x87\\xe7\\xef\\x76\\x94\\x46\\x94\\x15\\xc7\\xd9\\x93\\xa3\\x4a\\xb9\\xb4\\x23\\x91\\xf6\\x3a\\x77\\x92\\xc5\\x56\\xd7\\x57\\x5c\\xd2\\xdf\\x68\\xb7\\x4e\\xdb\\x30\\xc3\\xb9\\xee\\xa1\\xa5\\xf9\\x62\\xa3\\x51\\x6b\\xab\\xaa\\x88\\x4e\\xb1\\xc7\\xba\\xf2\\xe9\\xf8\\xdb\\xa8\\x0f\\x55\\x17\\x28\\x77\\xcc\\xf4\\xc0\\xef\\x7e\\xf1\\xd8\\x1f\\x51\\x8b\\x38\\x0b\\x6f\\xc1\\x47\\xc6\\x7b\\xf0\\xc8\\x61\\x9a\\x47\\x4c\\x59\\x23\\x46\\x7a\\x23\\x7f\\xff\\x2f\\xb4\\x1c\\xc6\\x3c\\x92\\x33\\x20\\x24\\x28\\xc9\\xa2\\xfc\\x97\\xb8\\x65\\x73\\xa2\\x0c\\x9a\\x13\\x9a\\xc6\\xa6\\xfc\\x3b\\x94\\x5a\\x8a\\x12\\xf1\\x9f\\xa8\\xfc\\x5b\\x02\\xdd\\xdd\\xdd\\xde\\x90\\xb4\\xb4\\x34\\x6b\\x76\\x06\\x9d\\x17\\xc1\\xd3\\xf6\\x32\\x51\\x38\\x21\\xfa\\x82\\xfe\\xbe\\xa5\\xc4\\x55\\x5a\\x97\\xdd\\xbe\\xaa\\xaa\\x6a\\x75\\x7b\\x4e\\x7d\\xa9\\xab\\xd4\\xd1\\xb2\\xa4\\xc2\\xbb\\xb4\\xc5\\xf1\\x8b\\xb2\\xdc\\xdc\\x92\\xd2\\xbc\\xdc\\x12\\x6d\\x56\\x56\\x46\\x76\\x76\\x66\\x66\\x26\\xae\\xf0\\x74\\x24\\x24\\xcc\\xab\\xf2\\x74\\x78\\x12\\x13\\x3d\\x1d\\x9e\\xaa\\x79\\x89\\xf1\\x1d\\x1e\\x36\\xc1\\x67\\x8a\\xeb\\x33\\xa4\\x7f\\xd9\\xd9\\x68\\x45\\x9a\\x3d\\xdd\\x62\\xce\\xcc\\xa4\\xe3\\xef\\xf1\\x5d\\xe0\\x0e\\x71\\x29\\x90\\x04\\x99\\xa0\\x3e\\x91\\x96\\x1c\\x1f\\x19\\x28\\xf3\\xac\\x97\\x8b\\xbc\\xc2\\x60\\x91\\xf7\\xae\\xbb\\xd3\\x9b\\xae\\x32\\x36\\x67\\x6c\\xba\\x59\\x1a\\xfb\\xca\\x95\\x33\\x72\\xab\\x37\\x3c\\xd8\\x1f\\xf9\\xb0\\x25\\x3f\\xbc\\x38\\x3f\\x2e\\x3d\\x21\\xc2\\xb3\\x7b\\x8a\\xb9\\x2c\\x2f\\x2e\\xf1\\xfa\\x6b\\x8b\\x87\\x5a\\xb3\\xad\\xd3\\x36\\xce\\x2a\\xdc\\x74\\xff\\x22\\xc7\\x81\\xf1\\x38\\x4d\\x53\\x65\\x51\\x8c\\x39\\x3b\\xbe\\xa0\\x44\\x1a\\xf7\\x2c\\x7c\\x23\\xf7\\x11\\x3d\\xf7\\x95\\xe3\\xf3\\xe8\\xa0\\x7f\\x34\\xde\\x8c\\x8f\\xe3\\x1b\\x8f\\xb3\\xb1\\x7e\\x8e\\xcc\\xe4\\xc6\\x85\\x5f\\x00\\x07\\x06\\x30\\x43\\xe8\\xc9\\x94\\xf8\\x68\\x35\\x06\\x69\\x8f\\x31\\xf1\\x66\\x55\\x80\\x26\\x24\\x75\\x6f\\xa1\\x22\\x14\\x52\\x05\\xfc\\x2d\\x52\\x89\\xff\\xfb\\x8b\\xad\\x46\\xf7\\x54\\xbb\\xbd\\xde\\x95\\x9c\\xec\\xaa\\xb7\\xdb\\xa7\\xba\\x8d\\xc3\\x4e\\xab\\x35\\x27\\xc7\\x6a\\x75\\x0a\\xbf\\x78\\xed\\x23\\x5b\\x4d\\x5e\\x62\\x62\\x5e\\x8d\\x2d\\xbd\\x3a\\x37\\x3e\\x21\\xb7\\x2a\\xdd\\x9a\\x9f\\x6f\\x4d\\xcf\\xcf\\x07\\x8c\\xbe\\x21\\xdb\\xb9\\x17\\xf9\\x17\\x80\\x07\\x2d\\xa8\\x4f\\x44\\x87\\x11\\x1a\\x6b\\xa1\\x75\\xea\\x38\\xb3\\xad\\x9c\\x2b\\x74\\x46\\x70\\x3a\\x9d\\x19\\x1f\\xef\\x39\\xf1\\xcc\\x8c\\x67\\x51\\x8c\\xd1\\x1c\\xd5\\x1a\\xa6\\x8d\\x50\\x5d\\x4b\\x0e\\xa1\\x34\\x9d\\xf8\\xe7\\x15\\x16\\x6f\\x81\\x3d\\x22\\x3a\\xb7\\xb0\\xdc\\xb8\\x94\\xad\\xb9\\x1e\\xf2\\x5b\\x82\\x85\\xd3\\xa0\\x83\\x3c\\x68\\xf0\\xd6\\xea\\x91\\x4a\\x48\\x43\\x84\\x37\\x23\\x44\\xb8\\xc6\\x3c\\x24\\x34\\xc8\\x1e\\xaa\\x7e\\x50\\x01\\x41\\x2a\\xd2\\x0f\\x58\\xda\\x9e\\xe6\\xa9\\x39\\x8c\\x50\\x29\\x6a\\x06\\xc8\\xc9\\xca\\x48\\x37\\x19\\x95\\x34\\x91\\x21\\x92\\x56\\x3d\\x49\\xfe\\x6a\\x15\\x57\\xbf\\x10\\xe0\\xe9\\x77\\xbb\\x08\\xce\\xe9\\xda\\xd2\\xda\\xba\\xb9\\x3b\\xe7\\xa9\\xa8\\xb4\\x62\\x49\\x26\\x47\\xdd\\x1c\\x9b\\x59\\x96\\x66\\x2b\\x71\\xe6\\xa7\\x24\\xa5\\xaf\\x89\\x75\\x94\\xa5\\x99\\x3c\\x85\\x45\\xc6\\xa4\\x74\\x7e\\xac\\xa0\\xa3\\x3c\\x35\\xb5\\xbc\\xa3\\x40\\x6f\\x4b\\x8e\\x8e\\x4e\\xb6\\xe9\\x51\\x54\\x5a\\x55\\x7e\\x92\\x2e\\x5e\\x97\\x67\\x49\\x49\\xab\\x72\\x26\\xd3\\xbf\\x00\\xa1\\x1f\\xc4\\x7d\\x5c\\x14\\xbc\\xfc\\xa3\\xe7\\xf6\\x34\\x11\\x9a\\xc6\\xc4\\x45\\x89\\x67\\x91\\x5e\\xdc\\x87\\xb3\\x00\\xa1\\x61\\x71\\x1e\\x67\\x87\\x0a\\x88\\x03\\xe1\\x98\\x8a\\xc6\\x64\\xfa\\x57\\x87\\x7c\\x24\\xcd\\xe2\\xca\\x6c\\x78\\xd5\\x82\\x0e\\x5b\\x4d\\x4f\\x41\\x7d\\x4f\\x92\\x59\\x93\\x67\\x36\\x5a\\x63\\x84\\xe8\\x44\\xab\\xb6\\xc2\\x3d\\x5a\\xef\\x9a\\xee\\x4e\\x48\\x8a\\xbc\\x47\\x88\\x88\\xd4\\xc5\\x85\\xc4\\x67\\xd9\\xad\\x5a\\x40\\xa8\\x4a\\x6c\\xe2\\xaa\\xe0\\x02\\x68\\x24\\x0b\\x3d\\x14\\x21\\x1c\\x82\\x00\\xe1\\x46\\x0e\\xd1\\x2c\\xae\\x72\\xd5\\x09\\x13\\x35\\x02\\x35\\xa0\\xb1\\x58\\x88\\xa0\\x77\\x58\\x2e\\xcf\\x00\\xc0\\x55\\xb1\\xca\\xa0\\x69\\x11\\xf4\\xe6\\xff\\x05\\xf1\\x63\\x76\\xe1\\xff\\x43\\x41\\x98\\x39\\x13\\x25\\xd1\\x7a\\x28\\x62\\x23\\x59\\x4e\\x5a\\xa1\\x1c\\x66\\xc2\\x12\\x08\\x3d\\xb9\\xb0\\x7b\\x6a\\x55\\xb1\\x51\\x9a\\x8f\\x66\\xbd\\x3e\\x20\\x7e\\x98\\x5d\\x70\\x08\\x14\\xa5\\x05\\xe5\\x58\\x5e\\xfb\\x85\\x4a\\xa2\\x20\\x83\\x09\\x4d\\x60\\x2b\\x85\\x24\\x27\\x85\\x72\\x91\\xe5\\xd7\\x24\\x19\\xab\\x36\\x3e\\xb2\\x38\\x7d\\xaa\\x79\\x4a\\x94\\xd6\\x9c\\x9d\\x70\\xb2\\xf7\\xf6\\x85\\xae\\xc6\\xd1\\x37\\xae\\xdb\\xf0\\xcb\\x2d\\x5e\\x63\\x41\\xad\\xcd\\x10\\x2b\\xc9\\xf8\\xbe\\xa5\\xd5\\x1b\\x1f\\x5d\\xdc\\xd5\\x8a\\x96\\x8f\\xef\\x8c\\xcd\\xd2\\x25\\xa7\\x27\\x16\\x77\\x96\\xd6\\x0f\\xd5\\x98\\x22\\xcc\\xc5\\x99\\xe2\\x87\\xf1\\x79\\xf5\\x59\\x8e\\xba\\xdc\\xf8\\xf8\\xfc\\x3a\\x47\\x66\\x5d\\x5e\\x3c\\x77\\x28\\x63\\x7e\\xa1\\xbe\\xe5\\xfa\\x85\\x1e\\xb5\\x7a\\x8a\\x49\\x67\\x48\\xd4\\x08\\xb6\\xe6\\x95\\x0d\\xe5\\xd7\\x0c\\x55\\x67\\x35\\x2f\\x2c\\xcc\\x6a\\x2e\\xcf\\x8d\\x36\\x94\\xa5\\xa7\\x16\\xe7\\x58\\xa3\\xf2\\xee\\xed\\xd7\\xb7\\xed\\xe8\\x73\\xc7\\x5c\\x7c\\x8b\\x23\\x51\\x25\\xe9\\xf1\\xb9\\x69\\xba\\xb8\\xf4\\x3c\\x83\\xce\\x92\\x18\\x85\\x7f\\x65\\xf4\\x38\\xe2\\xe3\\x1d\\x1e\\xa3\\x3e\\xc5\\x93\\x11\\x1b\\x9b\\xe1\\x49\\x91\\xe6\\xc0\\x23\\xe2\\x13\\x24\\x96\\xab\\x06\\x03\\x08\\xc7\\x42\\xa5\\xb1\\xd6\\x9a\\x2e\\xcf\\xcd\\x67\\x7a\\x04\\x45\\x4f\\xca\\xca\\x27\\xfe\\x93\\xab\\x9e\\x94\\x90\\x0f\\x30\\xbc\\x03\\xc0\\x15\\xf1\\x1f\\x03\\x0f\\x3a\\x50\\x9f\\x88\\x0a\\xa5\\xe7\\x34\\xac\\xd4\\x37\\xf2\\x1f\\xa1\\x51\\xa5\\xed\\x1d\\xdc\\x22\\xfe\\x43\\x7c\\x0d\\xa5\\x18\\x32\\x4a\\xd2\\x1a\\x3b\\x3b\\x1b\\xd3\\x4a\\x32\\x0c\\xb4\\x8e\\x7c\\x27\\xfa\\x3e\\xa5\\xd0\\xa6\\x9f\\x51\\x59\\x39\\x43\\x6f\\x2b\\x04\\x84\\xf6\\xf9\\xce\\x73\\x17\\x85\\x58\\xd0\\x81\\x70\\x2c\\x82\\xca\\x20\\x25\\x5b\\x8f\\x12\\xff\\x88\\x17\\xc6\\x64\\x37\\x15\\x26\\xba\\xf3\\x1c\\x9a\\x98\\xba\\x1b\\xea\\xe6\\x6d\\x6d\\x35\\x09\\xb1\\x17\\x17\\xd4\\x76\\x17\\xc4\\x84\\x46\\x46\\xa9\\xee\\x49\\x49\\xce\\xe9\\xdf\\xbb\\x8c\\xec\\x06\\x9f\\x0f\\x1e\\x03\\xe0\\xdc\\xfc\\x18\\x16\\x40\\x4b\\xcf\\xef\\x25\\xfb\\xbb\\x82\\x3e\\xc7\\x5d\\x94\\x16\\xf4\\xbd\\xb2\\xfd\\xe2\\xaf\\x07\\x8d\\x80\\x70\\x34\\xb3\\xa1\\x3f\\xfd\\x25\\xdd\\x62\\x00\\x12\\xe2\\x34\\x91\\xec\\xf2\\xbd\\xa0\\x96\\x2f\\xdf\\x5f\\x21\\xe1\\x25\\x3a\\x29\\x9e\\x45\\x7f\\x1f\\x3a\\xba\\xa9\\xba\\x7a\\xd3\\xd1\\xa1\\xdf\\xff\\x3e\\xab\\x36\\x27\\x2e\\x2e\\xa7\\x36\\xeb\\xf7\\x68\\x83\\xb8\\x83\\x8c\\x96\\x2c\\xdd\\xd3\\x3d\\x73\\x74\\xa0\\xf8\\x6f\\x09\\x59\\xc5\\x46\\x4b\\x55\\x7e\\x12\\xb3\\x2f\\x1d\\x62\\x2b\\x59\\x4e\\x1a\\xc1\\x01\\xc2\\x31\\x03\\x1d\\x97\\xfc\\x64\\x62\\x30\\x68\\x4d\\x48\\xab\\xd7\\x1b\\xf4\\xfa\\x18\\xb7\\xd3\\x20\\x08\\xb6\\x6c\\xce\\x66\\xe3\\x4c\\x88\\x63\\x91\\x90\\x36\\xb7\\xfb\\x37\\x45\\xb3\\xeb\\xdd\\xf6\\xa4\\xb0\\xf6\\x0f\\x50\\xbc\\x38\\xfa\\x5a\\x4c\\x91\\x43\\xe0\\xb0\\xca\\x10\\x5f\\x97\\x52\\xb1\\xa0\\xb1\\x40\\x33\\xf3\\x07\\xf1\\x2c\\xda\\xf9\\xb4\\x61\\x4e\\x69\\x58\\x46\\x38\\x9f\\xd6\\x40\\x1a\\xe3\\x33\\x3c\\xa5\\xe5\\x09\\x63\\xe8\\xe7\\xe3\\x79\\x62\\x53\\x5e\\x8d\\x1a\\x21\\x84\\xfe\\xa6\\x22\\x1c\\x5f\\x39\\x77\\x79\\xfe\\x13\\x62\\x02\\xf6\\xa1\\xd1\\x62\\x2f\\x87\\xff\\x18\\x3a\\x45\\xea\\x9b\\xab\\x01\\xc8\\x4f\\x69\\xde\\x89\\x2c\\x50\\x9f\\x70\\x98\\x39\\x2a\\x73\\x69\\xd3\\x89\\xdf\\x04\\x0d\\xbe\\x8b\\x6b\\x9b\\x30\\x43\\xc7\\xc4\\xd7\\xd0\\x47\\x3f\\x20\\x3e\\xad\\xba\\xaf\\xb4\\x6e\\xae\\x27\\x4e\\xd0\\x24\\x1a\\xc4\\x17\\x0c\\xf1\\xe1\\xdc\\xe2\\xe5\\x77\\xdc\\xb6\\x6e\\x55\\x9c\\x7b\\x46\\xf1\\x5e\\xec\\x1a\\x7f\\x95\\x1f\\xfb\\xf0\\xf5\\x8a\\x45\\xd3\\xcb\\x62\\x63\\xaa\\x67\\x0f\\x57\\xf4\\x69\\xcb\\xbc\\xa5\\xd1\\x49\\xd1\\x0d\\xad\\xb5\\x51\\xbd\\x4b\\x56\\x7d\\xbf\\x60\\x4e\\x56\\xb3\\x3b\\x79\\xc2\\x0e\\x7f\\x89\\xc6\\x36\\xd9\\xbc\\x69\\xa1\\x72\\x45\\x2f\\x9a\\x8c\\xa5\\x8f\\x95\\x22\\xe3\\x03\\xd2\\xf8\\xb1\\xcb\\x59\\x4a\\x0e\\x18\\x84\\x4c\\xd8\\xb2\\x56\\xfc\\x07\\x8a\\xab\\x45\\x9b\\x51\\xad\\xd8\\x8a\\x9e\\x17\\x9f\\xc4\\x1d\\xe3\\x8f\\xf0\\x63\\xe3\\x5b\\xf1\\xb6\\xf1\\xea\\x71\\x56\\xf7\\xec\\x7e\\xdf\\x39\\x72\\x0d\\xff\\x31\\xc4\\x51\\xdf\\x44\\x5a\\xb2\\x46\\x9e\\xd3\\xca\\x24\\x54\\xb2\\x48\\x05\\x4f\\xf1\\xfb\\x71\\x6d\\x7c\\x56\\xb1\\x29\\xb1\\xa2\\xc4\\x19\\x95\\xa0\\xaf\\x9c\\xd6\\xe1\\x68\\xdf\\xb5\\xa4\\x4c\\xfc\\x13\\xca\\x0d\\x9e\\xf3\\xe3\\xae\\xbc\\x0a\\x4b\\xa4\\x2a\\x2c\\x9c\\x7f\\x31\\x22\\x36\\x2a\\xc4\\xde\\xbb\\x67\\x29\\xfa\\x47\\xf0\\x22\\xa0\\x6d\\x7d\\xcc\\x77\\x8e\\xec\\x14\\x80\\xca\\x65\\x0d\\x5b\\xab\\xdc\\xe5\\x3c\\x68\\x4d\\x8f\\x61\\x57\\xb2\\xd1\\x5d\\x67\\x33\\x56\\x7b\\xdd\\x9a\\x04\\x43\\x6d\\x7b\\x4f\\x56\\xf7\\xde\\xd5\\x55\\xb1\\xe2\\x59\\x01\\x2e\\x6e\\x75\\xd7\\xda\\xa3\\xd4\\x61\\x53\\xd8\\x97\\x1c\\xf3\\xef\\x59\\xc1\\x1d\\xa0\\xb4\\x7f\\x05\\x40\\x42\\xe5\\x58\\xad\\x10\\x1e\\xe5\\x3a\\x0a\\x99\\xef\\x43\\xe3\\xd4\\x99\\xbe\\x46\\x82\\xf8\\x02\\xae\\x8b\\xfc\\xfe\\xd2\\x99\\xd3\\xdc\\xa6\\xe1\\xaf\\xde\\xbc\\x98\\x7f\\x5a\\xea\\x97\\x8d\\xbe\\x9f\\x92\\xf5\\xe4\\x1c\\x54\\xc0\\x74\\x50\\x9f\\xa8\\xf3\\x16\\xd8\\xa5\\xb9\\x60\\x55\\xae\\x66\\xd0\\x9c\\x0f\\xec\\xba\\xa0\\xc1\\xe0\\xcf\\x1a\\x24\\xd7\\x98\\xb1\\x59\\x95\\x14\\x74\\x7a\\x83\\x8e\\x2a\\x36\\x2e\\xbf\\xc9\\xc9\\x3d\\xa8\\x0e\\x21\\xc6\\x39\\xc5\\xb5\\x43\\xb5\\xe6\\xa2\\x85\\x3b\\xdb\\x1b\\xc3\\xb6\\x0c\\x76\\x6e\\xeb\\xb0\\x63\\x84\\x0b\\x7a\\xaf\\x6b\\x4f\\x28\\x76\\xe7\\x44\\x17\\xc4\\x55\\xd4\\xd6\\xa5\\xec\\xfe\\xc3\\x0d\\x55\\x1c\\xe2\\xea\\x46\\xff\\xb0\\x63\\xf6\\x81\\xb5\\x35\\x51\\x1a\\xf1\\xe6\\x84\\xec\\xb4\\x58\\x21\\x37\\xab\\xc9\\x95\\x1c\\x96\\x90\\x81\\x84\\x08\\xbb\\xc1\\x9c\\x9f\\x35\\x6d\\x49\\x79\\xd3\\x55\\xb3\\xb2\\x16\\x0c\\x55\\x6e\\xfc\\xd9\\x8a\\xd2\\x15\\x47\\x47\\x4a\\x43\\xa2\\x74\\xe1\\x8f\\x6a\\x13\\xb5\\x21\\x0b\\x9f\\xf8\\x6a\\x97\\x63\\xd7\\x97\\x63\\x0b\\x9c\\x8b\\x0f\\x0d\\x8b\\xa3\\xd9\\x03\\xd6\\x88\\x87\\x23\\x62\\x93\\x23\\xdf\\x88\\xb2\\x94\\x38\\x92\\xf2\\xd2\\x62\\x40\\xce\\x1f\\x73\\x9e\\x1c\\xe0\\x5f\\x80\\x1c\\x28\\x05\\xf5\\x09\\x57\\x6e\\x9c\\x8a\\xe9\\xe3\\xfe\\x0c\\x62\\xff\\xe6\\x0a\\x9d\\x4e\\xd6\\x19\\xcb\\x71\\xa1\\x86\\x1c\\xb8\\x27\\x61\\xce\\xd5\\xfb\\x7a\\x16\\x3c\\x74\\x75\\xdd\\xe2\\x35\\x99\\x55\\x59\\x86\\xea\\x0d\\x0f\\xf4\\xf7\\x1c\\x5a\\x5b\\x2d\\x9e\\x8d\\xcf\\x2a\\x4d\\x4d\\xaf\\x70\\xe8\\xf5\\xd9\\xb5\\x39\\x4b\\x36\\x8c\\x2c\\x4c\\x28\\x71\\x67\\x84\\x70\\xad\\x7f\\x12\\x85\\x38\\x97\\x23\\xc1\\xb3\\xfc\\xe0\\xc0\\x9a\\xe3\\x59\\xb1\\x75\\xed\\x73\\xb2\\x07\\xf6\\x2e\\x76\\x15\\x2f\\xfe\\x49\\x77\\xba\\x37\\x2b\\x36\\xd1\\x59\\xef\\xc8\\x69\\xf1\\x18\\xff\\xb4\\x64\\xdd\\xfc\\x61\\x75\\x78\\xa4\\x0a\\x6d\\x97\\xc6\\x73\\xc8\\x77\\x9e\\xec\\xa7\\x31\\xd9\\xc2\\x31\\x7b\\x82\\x24\\x33\\x03\\xfc\\x41\\x2e\\xad\\x1c\\x49\\x66\\xd2\\x44\\x45\\x53\\x57\\x33\\x9a\\xd8\\xe1\\x71\\xee\\x14\\x93\\x3d\\x27\\xae\\x63\\x5e\\x52\\xe1\\x0c\\xf7\\xd6\\x8f\\x52\\xe6\\xb8\\x17\\xad\\x10\\x3f\\xfd\\xf4\\x5c\\xf3\\x4d\\xdb\\x36\\x95\\x8b\\xdf\\x3c\\xfc\\xcb\\xea\\x35\\xfb\\xba\\x7a\\x76\\x14\\xa0\\x50\\x95\\x26\\x22\\x64\\x69\\x6f\\xf5\\x9c\\xa2\\xb8\\xa3\\xa8\\xc9\\x98\\xb5\\x7d\\xf7\\xa5\\x2a\\xee\\x19\\x84\\x10\\x9f\\x5c\\x3e\\xaf\\x52\\xbc\\x29\\xfe\\xdd\\xa7\\x86\\xef\\x1f\\x2e\\x4c\\x89\\x97\\xf8\\xd9\\xed\\x3b\\x47\\x16\\x93\\x7d\\x60\\x87\\x05\\xde\\xf0\\xe4\\xa4\\x88\\x70\\x82\\xb0\\x1d\\x71\\xf4\\x12\\x87\\x61\\x7a\\x97\\x37\\x11\\x10\\x06\\x4c\\x6f\\xa8\\x02\\x46\\x84\\x0a\\x59\\x56\\xa0\\xb4\\x8c\\x6b\\x4e\\xf0\\xa6\\x4c\\x02\\x73\\x5c\\x59\\x13\\x00\\xd0\\xcb\\xa0\\x0d\\x7c\\x73\\xb7\\x37\\x24\\xc3\\xac\\x4d\\xb3\\xa6\\x52\\x85\\x9e\\xe9\\x0a\\xac\\xad\\x85\\x4a\\x5b\\x69\\xa0\\x91\\x81\\x0b\\x68\\x6a\\x83\\xd6\\x9b\\x5e\\x36\\xcd\\xe8\\x69\\x77\\xb6\\x3f\\x14\\x5f\\x95\\x51\\xdb\\x29\\x7e\\xfe\\xfe\\x9f\\x6f\\xfb\\x4b\\xef\\xdf\\xee\\x38\\x52\\xbe\\x78\\x74\\xda\\xb4\\x75\\xd9\\x08\\x47\\x98\\x9a\\xab\\xac\\x2e\\x53\\xe4\\xa9\\x3f\\xc5\\xa7\\x0e\\x0c\\x8e\\xc7\\xe1\\x7f\\xbc\\xf7\\xd7\\x2d\\x6b\\xc5\\xff\\x4d\\x3c\\xbc\\xbd\\x77\\xb4\\x37\\xc7\\x14\\x4f\\xef\\xd3\\x59\\xc8\\x66\\xee\\x0d\\xfe\\x30\\x16\\xe0\\x00\\xdd\\x53\\xe4\\x7f\\x58\\x90\\xa4\\x91\\xcf\\x87\\xe2\\x71\\x34\\x99\\x83\\xbf\\xc6\\x02\\x44\\xd2\\x58\\x89\\x4f\\x01\\xc8\\x4f\\xf8\\x31\\xd0\\xb0\\x7a\\xc0\\xb4\\x0e\\x3c\\xf0\\x88\\xd6\\x5b\\xa5\\xf1\\xf0\\xa5\\xac\\xc4\\xbf\\x9a\\xf5\\x00\\x2d\\xc9\\x6d\\xd4\\xc7\\x68\\xa3\\x41\\x03\\x51\\x26\\x8d\\x46\\x52\\x2d\\x59\\x48\\xd3\\xc4\\x61\\xb2\\xd6\\x1c\\x70\\x9a\\x6c\\xd6\\x38\\xf7\\xfe\\xe2\\x17\\x68\\xc3\\xed\\xe7\\x1e\\x9c\\x33\\xe7\\xc8\\xdf\\x6f\\x5e\\xff\\xf1\\xb2\\x69\\x9b\\x3b\\xb3\\xb3\\xba\\xb7\\x77\\xcc\\xfd\\x18\\x6f\\x3f\\x8e\\x37\\xf4\\x3f\\xf1\\xed\\xee\\xab\\x76\\x5f\\x78\\x62\\x01\\xde\\x2e\\xce\\x2b\\x5d\\x7d\\xdf\\xd0\\xc6\\x05\\xf7\\xae\\xf1\\x8a\\x4b\\xff\\x7f\\xc0\\x1f\\x82\\x30\\x00\\xb2\\xe6\\xdf\\xd6\\xe0\\x56\\xa9\\xca\\x95\\x0a\\xc1\\xf5\\x34\\xd7\\x40\\x59\\x60\\x0d\\x6e\\x75\\x60\\x71\\xfa\\x2b\\xd4\\xe0\\x76\\xe2\\x5f\\x8b\\x93\\x4b\\x70\\x1f\\x3a\\x84\\xf4\\x22\\x79\\x56\\xfc\\xf4\\x0a\\x15\\xb8\\x9f\\x3d\\x7e\\xcb\\x2d\\x94\\xb7\\x04\\x00\\xf2\\x04\\xcd\\xe9\\x68\\xf7\\x5a\\x55\\xc8\\x7f\\x48\\x22\\xd0\\x8b\\x88\\xc0\\xf3\\xa5\\x81\\xf7\\x1b\\x35\\x9a\\x28\\xb5\\x5a\\xbe\\xdb\\x4e\\xbb\\x8b\\x5e\\x1d\\x76\\x72\\xf7\\x9f\\x10\\xff\\xfe\\xe9\\xa7\\x62\\x2d\\xb9\\x53\\xac\\x38\\x81\\x2f\\x8c\\x87\\xe1\\x0b\\xc7\\x51\\xea\\xa7\\x9f\\x8a\\x7f\\xa3\\xdf\\xd8\\xe2\\x3b\\x47\\x5a\\xf9\\x6a\\xb0\\xc1\\xd5\\xde\\x50\\x2d\\x22\\x5c\\x0c\\xe2\\x89\\xb4\\x98\\xa2\\xa6\\x77\\x79\\x6d\\x61\\x28\\x14\\x42\\x57\\xab\\x10\\x16\\x10\\x3d\\xbc\\x57\\xd3\\x03\\xda\\x10\\x04\\x50\\xd1\\x04\\x84\\xd0\\x45\\x53\\xcb\\x37\\x27\\xfc\\x77\\x98\\x74\\x79\\x49\\x72\\xd0\\x06\\x36\\xab\\x45\\xa3\\xd1\\xd1\\x5a\\x4a\\x1a\\x7a\\x3f\\x83\\xc6\\x12\\xd0\\x3a\\xca\\x97\\x6d\\x44\\x2e\\xf9\\xaa\\x86\\x06\\xdf\\x8c\\xf6\\x88\\xcb\\xfe\\xf2\\x97\\x84\\xfc\\xfa\\xcc\\x94\\xea\\x32\\x97\\x36\\x21\\xa9\\xb5\\x6b\\x5e\\x76\\xf7\\xed\\x83\\x45\\xcf\\x3f\\xff\\xdd\\x77\\x7c\\xb5\\xf8\\xdd\\xeb\\x07\\x8e\\x6f\\x2d\\x99\\x96\\x13\\x23\\x84\\x84\\xf2\\xbf\\xd6\\xc4\\x45\\x85\\xe4\\xf4\\xdf\\xbd\\xf4\\x9e\\xe3\\x07\\x5e\\x47\\x21\\x34\\x8e\\x1c\\x80\\xbc\\xa6\\x4a\\xc5\\x56\\x30\\x03\\x20\\x15\\x54\\xf9\\x96\\xa1\\x1e\\x08\\x79\\x02\\xa3\\x53\\xa8\\xc7\\x1f\\x6b\\x4e\\x71\\x8c\\x0a\\xce\\x08\\xdc\\x80\\xba\\x65\\x9c\\xee\\x20\\x9c\\xa9\\x0a\\xce\\x3e\\xb8\\x01\\xf5\\xca\\x38\\xbd\\x41\\x38\\x0b\\x15\\x9c\\xc3\\x30\\x8a\\xe6\\xca\\x38\\x73\\x83\\x70\\x72\\x14\\x9c\\x21\\xdf\\xd7\\x8c\\x0e\\xbe\\x9c\\xce\\x8d\\x0a\\xce\\x21\\x88\\x46\\x17\\x64\\x9c\\x0b\\x81\\x38\\xea\\x0e\\x3f\\x0e\\x7a\\xd5\\xf7\\x15\\x3a\\x24\\xe1\\x70\\xa7\\xd0\\x21\\x19\\x67\\x9a\\x58\\x42\\xd6\\xf3\\x2f\\x62\\x2b\\x58\\x40\\x9a\\xd7\\xeb\\x9d\\x3c\\xcb\\x31\\xc5\\xb3\\x98\\xf7\\xdd\\x00\\x64\\x48\\x15\\x87\\xad\\x60\\x93\\xfb\\x66\\x2d\\x9a\\x01\\x21\\x4f\\x20\\x74\\x0a\\xcd\\x90\\x69\\x30\\x1c\\xbd\\x82\\x33\\x02\\xbb\\xd0\\x74\\x19\\x67\\x7a\\x10\\x8e\\x57\\xc1\\xd9\\x07\\xbb\\xd0\\x4c\\x19\\x67\\x66\\x10\\x8e\\x55\\xc1\\x19\\xf2\\x5d\\x62\\x38\\x78\\x02\\xe7\\x39\\x00\\x12\\x46\\xc7\\xca\\x21\\xf3\\xd3\\x44\\xc7\\x0a\\x05\\x8c\\x15\\xc3\\x31\\x2a\\x38\\x23\\xb0\\x88\\x8e\\x15\\x0a\\x18\\x2b\\x86\\x33\\x55\\xc1\\xd9\\x07\\x8b\\x68\\x1f\\xa3\\x80\\xb1\\x62\\x38\\x39\\x0a\\xce\\x90\\xef\\x2d\\x86\\x13\\x30\\x0e\\x9b\\x00\\x48\\x35\\x1d\\xcf\\x5c\\x79\\x3c\\x37\\xd0\\xf1\\x44\\x01\\xe3\\x39\\xdd\\x77\\x9e\\x6c\\x52\\x15\\x62\\x2b\\xe4\\xc9\\x3c\\xcf\\x46\\xab\\xe4\\x31\\x5f\\x15\\x84\\x53\\xa0\\xe0\\x8c\\xc0\\x1a\\x34\\x2c\\xe3\\x0c\\x07\\xe1\\xcc\\x55\\x70\\xf6\\xc1\\x1a\\xb4\\x5a\\xc6\\x59\\x1d\\x84\\xb3\\x41\\xc1\\x39\\x0c\\x9b\\xd0\\x88\\x8c\\x33\\x12\\x84\\x53\\xa3\\xe0\\x0c\\xf9\\x3e\\x62\\x74\\xf0\\x04\\x9d\\x2d\\xbe\\xf3\\xa4\\x95\\xf6\\x61\\xa1\\xcc\\xf3\\x82\\x49\\x7d\\xc8\\x70\\x12\\x15\\x9c\\x11\\xb8\\x1a\\x75\\xc8\\x38\\x1d\\x41\\x38\\x75\\x0a\\xce\\x3e\\xb8\\x1a\\xcd\\x96\\x71\\x66\\x07\\xe1\\x64\\x2a\\x38\\x43\\xbe\\x33\\x0c\\x07\\x4f\\xe0\\x98\\x24\\x3d\\x9c\\xf2\\x53\\x22\\x7f\\xeb\\x9a\\x49\\xfc\\x8c\\xf8\\xce\\x93\\x26\\xfe\\x43\\x6c\\x85\\x6a\\x99\\xe7\\x7a\\x88\\x07\\xf5\\x13\\x18\\x8d\\xc5\\xfb\\x63\\xa9\\x19\\xce\\xfb\\x32\\x8e\\x00\\x23\\x7d\\x06\\x86\\x21\\xe7\\x54\\xa3\\x70\\x41\\xa5\\xc0\\xf7\\xf5\\x25\\x30\\x78\\x42\\x20\\x3c\\x55\\x81\\x1f\\x1e\\x4a\\x64\\xf0\\xc4\\x00\\x38\\xff\\xb9\\x02\\x1f\\x7a\\x83\\xbe\\x8f\\x83\\xdf\\xaf\\x53\\x78\\x3c\\xe4\\xfb\\x27\\x1c\\x63\\x18\\xc7\\x82\\x78\\x54\\xc5\\xf8\\x69\\xa0\\x57\\x5f\\x9f\\x2b\\x61\\x70\\x63\\x73\\x19\\x8d\\xb5\\x62\\x09\\x29\\x25\\xad\\xd8\\x0a\\xb5\\x57\\x5c\\xb3\\x2b\\x7d\\xe7\\xc9\\x10\\xff\\x11\\xb6\\x42\\xbd\\xdc\\x0f\\xcd\\x10\\xd0\\x0a\\xfa\\x0d\\x86\\xf3\\x37\\x19\\x47\\x80\\x91\\x81\\x58\\x86\\x11\\x1b\\x40\\x43\\x50\\x2b\\xf0\\x7d\\x03\\xc1\\xed\\x64\\xef\\xff\\x53\\x81\\x0f\\xfd\\x31\\x91\\xb5\\x42\\x86\\xff\\x0e\\x80\\xcc\\xe6\\x7f\\x8b\\xad\\xb0\\x93\\x5e\\xd6\\xad\\xba\\x95\\xc5\\xbf\\xb3\\xdf\\x5f\\x60\\xbf\\xd3\\x71\\x7c\\xc8\\x27\\xb2\\x71\\xf4\\x89\\xf2\\x38\\x32\\x9c\\xcf\\x15\\x9c\\x7d\\xf0\\x10\\x20\\xd6\\x42\\xe4\\xe7\\x9f\\xe1\\xfc\\x51\\xc6\\x11\\x60\\x28\\x86\\x62\\x60\\x8a\\xe1\\xf3\\xc1\\x28\\x00\\x99\\x41\\xc7\\x69\\x3a\\x1b\\xa7\\x91\\x44\\x46\\x41\\xe6\\x6f\\x90\\xde\\xcd\\x91\\xe6\\x4a\\x9b\\xdc\\x47\\xf3\\x26\\xcd\\x15\\x86\\xf3\\xbe\\x8c\\x23\\xc0\\xc8\\x86\\xe0\\xb9\\x42\\xe1\\x74\\xae\\x30\\xf8\\xbe\\x0d\\xc1\\x73\\x85\\xc1\\x53\\x95\\x6f\\x1c\\x86\\x6b\\x20\\xa0\\x17\\x03\\xbe\\xf1\\xb9\\x42\\x63\\xe8\\xef\\xc1\\xf3\\xe5\\x4e\\xdf\\x39\\xd2\\xc4\\xbf\\x8a\\xad\\xd0\\x29\\xf3\\xd9\\x07\\x01\\xa3\\x4d\\x69\\x30\\x9c\\x97\\x64\\x1c\\x01\\x46\\x36\\x61\\x86\\x81\\x03\\x69\\x7c\\xa5\\xc0\\xf7\\x6d\\x12\\x18\\x5c\\x08\\x84\\xbf\\xab\\xc0\\x87\\x3e\\x13\\x58\\x5f\\xca\\xf0\\x02\\xb1\\x89\\xbc\\x4e\\xe9\\xcf\\x91\\xc7\\x6c\\x37\\x04\\x7c\\x81\\xf2\\xc0\\x70\\xde\\x95\\x71\\x04\\x18\\x82\\x60\\x1a\\x74\\x2f\\x12\\xbe\\x52\\xf6\\xab\\x61\\x9f\\x88\\xaa\\x64\\xb9\\x54\\x15\\xb4\\x7e\\xc7\\xd8\\xbc\\x07\\x01\\x86\\xdf\\x63\\x73\\x86\\xed\\x75\\x95\\xca\\xbb\\x07\\x00\\xd0\\x41\\xf9\\xdd\\x83\\x41\\xef\\xfa\\x94\\x75\\x77\\xe0\\xaf\\xbd\\xac\\xa7\\x7b\\x59\\xde\\xc3\\x44\\xb1\\x8b\\xd6\\x16\\x4f\\x06\\x13\\xd4\\x78\\x2b\\x4d\\x48\\xe0\\xe3\\x10\\x70\\xe1\\x08\\x41\\x04\\xbd\\x45\\x2a\\x27\\x40\\x5a\\xa0\\x42\\x92\\x02\\x45\\xfc\\x29\\x1c\\xa8\\x2e\\x5a\\x89\\x9b\\x01\\x52\\x8c\\x90\\x0c\\xc9\\x9a\\x58\\x8b\\x4d\\xa3\\x56\\xc7\\x39\\x10\\x32\\x47\\x70\\xcc\\x57\\xaf\\x78\\x89\\x0a\\xdc\\x85\\x9c\\x89\\x33\\x21\\xce\\xc4\\xe1\\xef\\xd1\\x9f\\x6a\\xb3\\x4a\\xd3\\x22\\x93\\x2d\\x49\\xe9\\x11\\x39\\x89\\xdd\\xb5\\xd9\\x6d\\xa5\\xe6\\x9a\\x9a\\x36\\xb1\\xa9\\x43\\x7c\\x17\\xbd\\x1f\\x8f\\xb2\\xef\\xe0\\xc7\\x7e\\x98\\x1e\\x9d\\x9e\\x99\\x97\\x90\\x64\\x8b\\x10\\xee\\x89\\x4c\\x4a\\x28\\x68\\x71\\x96\\x6d\\xc8\\x43\\xa9\\xe2\\xef\\xf9\\xb1\\x4b\\x2b\\x70\\x2c\\x60\\x18\\x11\\xbb\\x48\\x13\\x69\\x85\\x0a\\x68\\x85\\xd9\\xde\\xce\\x5a\\xa4\\x52\\xdb\\x38\\x0c\\xaa\\x02\\xc4\\x83\\x0b\\x09\\x3c\\x69\\x04\\x0e\\x23\\xcc\\xd1\\x94\\x7b\\x6a\\x15\\x52\\xf7\\x03\\xc6\\x34\\xf7\\x41\\x3d\\xad\\xcd\\xc6\\x8e\\x24\\x9a\\xfc\\xf9\\xea\\x2a\\x85\\xe6\\x4a\\x6f\\x43\\x9d\\xb7\\xb5\\xb2\\xd5\\x53\\x98\\x9f\\x9b\\x16\\x6d\\xb6\\xda\\x42\\xd5\\x71\\x0e\\x8b\\xd5\\x6a\\x53\\x2c\\x4d\\xa7\\x53\\x0e\\x4a\\x37\\x15\\x04\\x1a\\xd1\\x57\\x6a\\xaf\\x2d\\xc0\\xb0\\xd6\\x73\\x99\\xea\\x30\\xde\\x50\\x3a\\xb5\\xcb\\x39\\xe3\\xe6\\x85\\x45\\xbe\\xf1\\xbd\\x03\\xf3\\x67\\xb5\\x8a\\x67\\xcb\\xd6\\x3e\\xbc\\x7c\\xc1\\xc3\\x57\\xd7\\xe9\\x75\\xce\\x49\\x1d\\x52\\xf5\\x7c\\x46\\x43\\x71\\xc6\\x94\\x5b\\x2b\\x7b\\x8a\\x13\\xa7\\x85\\x6a\\xb3\\xe3\\xe3\\x32\\x4d\\xda\\xdc\\x8e\\xf5\\x75\\x47\\x9f\\xf2\\xb6\\xce\\x99\\x5a\\x56\\x7b\\xf5\\xdc\\xc2\\xdc\\xb9\\xbb\\xe6\\x8a\\xb9\\x9d\\xab\\xed\\x9a\\xcb\\x3b\\xab\\x74\\xfd\\x99\\x98\\x14\\xbb\\xee\\xc9\\xb8\\xac\\x0a\\x4b\\x51\\x23\\x9d\\x2b\\xd3\\x7c\\xe7\\xc8\\x7a\\x55\\xb2\\xac\\xcf\\x48\\x73\\xf5\\x14\\xea\\x92\\xf7\\x89\\x2e\\x79\\xae\\xac\\xf5\\x9d\\x23\\xa5\\x74\\x5d\\xd7\\xca\\x38\\xdb\\xc0\\x30\\x91\\x59\\x33\\x80\\x4e\\x83\\x42\\x67\\x1f\\x9c\\x9a\\xa4\\x67\\x50\\x3a\\x74\\xfd\\xd7\\xca\\x38\\xdb\\xa8\\x9c\\x45\\x01\\x72\\x96\\xd1\\x69\\x52\\xe8\\x1c\\x84\\x12\\xb4\\x4c\\xa6\\xb3\\x2c\\x88\\x4e\\xa8\\x22\\xcf\\x0f\\x12\\x07\\xa3\\xe2\\x60\\x6b\\x87\\xd1\\x98\\xaa\\xd0\\xd8\\x0f\\xf9\\x3f\\xc2\\x8b\\x5a\\xa1\\xb1\\xff\\x52\\x00\\x27\\x3e\\x1f\\x6c\\x96\\xec\\x19\\xba\\x86\\xac\\x8c\\x86\\xef\\x30\\xd5\\xad\\x70\\x80\\xfe\\xb5\\xd2\\x77\\x5e\\x48\\x11\\x62\\xc1\\x0a\\x75\\x2c\\x63\\x0b\\x17\\x0b\\x8a\\x5e\\x26\\x9c\\x51\\xf4\\xb2\\x61\\x10\\x90\\x47\\xfe\\xbe\\x67\\xe2\\x5d\\x32\\xc4\\x3f\\xa1\\xec\\x07\\xc3\\x7f\\x43\\x6c\\xfd\\xa1\\x40\\x3d\\xb2\\x48\\xa1\\x71\\x00\\x42\\xd0\\x9d\\x32\\x8d\\x3b\\x03\\x69\\x08\\xa0\\xd0\\x38\\xf0\\xd1\\x5c\\x46\\x63\\x6e\\x20\\x8d\\x6a\\x85\\xc6\\x41\\x88\\x46\\x0b\\x65\\x1a\\x0b\\x83\\x68\\x84\\x29\\x34\\x0e\\x9e\\xcd\\x64\\x34\\x32\\x25\\x04\\x04\\xbb\\xc5\\x2e\\x32\\xc4\\x8f\\x81\\x19\\x2a\\xbd\\xe5\\x51\\x88\\xc3\\x1a\\x44\\x38\\xdc\\x08\\x6a\\x00\\xa4\\xa6\\x56\\x1d\\x2d\\x2b\\x43\\x4d\\x28\\xdc\\xcd\\x4b\\x56\\x9d\\x64\\xe5\\xd1\\x15\\x55\\x49\\x2b\\x50\\x18\\x2c\\x36\\x8d\\x86\\xd9\\x77\\x26\\x8d\\xe9\\x8a\\xab\\xa2\\xd0\\x9f\\xd9\\x85\\x1b\\x7f\\x04\\x3f\\xb5\\x79\\xd2\\xac\\x2f\\x29\\x1e\\x3f\\xcc\\xbd\\x35\\xde\\x80\\x3b\\xf0\\x16\\x71\\xd1\\xc7\\x97\\x4f\\x6b\\xcf\\xca\\x5c\\x7e\\xec\\x53\\xf1\\x76\\x00\\x0c\\x2b\\xc5\\x15\\x64\\x88\\xb4\\x42\\x19\\x4c\\x85\\x59\\xde\\x76\\x27\\x22\\x5c\\x59\\x49\\x81\\x81\\xf0\\x24\\x0c\\x01\\x3f\\x85\\x56\\x23\\x02\\x15\\x70\\x44\\x25\\xd9\\x56\\xb2\\xed\\x5c\\x3f\\x61\\x84\\x35\\xc9\\x19\\x62\\x50\\x25\\x6a\\xae\\x28\\xaf\\xa9\\x2e\\x9f\\x5a\\x31\\xb5\\xb8\\x28\\x27\\xcb\\x9e\\x6e\\x36\\x59\\x6c\\x21\\x6a\\xbd\\xc3\\x72\\xa5\\x06\\x04\\x56\\x10\\xd4\\x99\\x02\\x7d\\x6b\\x36\\x77\\xa1\\x92\\x96\\x9b\\xbb\\x76\\x52\\xd3\\x2c\\x96\\x95\\xbf\\xd8\\x56\\xd7\\x7a\\xcb\\xb3\\xab\\xd6\\x9e\\xdc\\x5a\\x35\\x9e\\xaa\\xce\\x6b\\x5e\\x50\\x6c\\x6f\\x6b\\xf4\\xc6\\xde\\x1c\\x3f\\x63\\xd5\\xce\\xe9\\xc6\\x64\\x77\\xc7\\xca\\x9c\\xd6\\x92\\xf4\\x50\\xf4\\x12\\x4e\\x2e\\x6a\\x33\\x5c\\xde\\xf8\\xac\\xd9\\x19\\xa1\\x5d\\x37\\x9f\\x18\\x48\\xbf\\xfa\\xf5\\x3d\\xed\\x2d\\xb7\\xbc\\xb8\\x7e\\x5d\\xe1\\x9c\\xaa\\xb4\\x28\\x63\\xb6\\xf1\\x4e\\x4b\\x7d\\x61\\x2a\\x57\\x9c\\xc1\\xc5\\x9b\\xca\\x3b\\x5c\\xfa\\xcc\\x56\\x8f\\x09\\x26\\xe6\\x27\\x9d\\xdb\\x36\\x79\\x7d\\x84\\x4c\\xb2\\x2d\\xd8\\xbc\\x08\\x51\\xe6\\xc5\\xfe\\x8f\\x82\\xf5\\x99\\x4e\\xdf\\x79\\xb2\\x8c\\xae\\x77\\xbb\\xbc\\x96\\xf7\\x4e\\x5a\\x63\\xab\\xc4\\x0e\\x52\\x4f\\xd7\\xfb\\x54\\xb6\\x8f\\x2e\\x0c\\xde\\xef\\x19\\x0d\\xaf\\x42\\xe3\\x00\\xe8\\xd0\\x01\\x99\\xc6\\x81\\x40\\x1a\\x74\\x9f\\x62\\x34\\x0e\\x7c\\x10\\xb0\\x4f\\x29\\x34\\x9a\\x14\\x1a\\x07\\x21\\x79\\x92\\xbc\\x60\\x7c\\x84\\x2a\\x34\\x0e\\x7e\\xe6\\x60\\x34\\x64\\x79\\xd1\\x29\\xea\\xc9\\x32\\xaa\\x63\\x51\\x1a\\xe8\\x76\\xf8\\x50\\x7c\\x86\\xd1\\x10\\x9f\\x09\\xa2\\x71\\x4c\\xa6\\xa1\\x42\\xfb\\x20\\x0c\\xee\\x66\\x54\\xee\\xf6\\xcb\\x2e\\xc9\\xb6\\xa9\\xa1\\xed\\xc9\\x90\\xfb\\x64\\xe9\\xa4\\x7e\\x95\\xf4\\xac\\x0e\\xd5\\x43\\xd8\\x0a\\x8d\\x32\\x4e\\x13\\x7a\\x5a\\xc6\\x79\\x3a\\xc8\\x8e\\x5a\\xa8\\xd8\\x51\\x87\\x61\\xd9\\x24\\x1b\\x89\\xea\\x73\\x54\\x7e\\xed\\x94\\x71\\x7e\\x36\\x49\\xc7\\xa0\\x74\\xa8\\x0e\\xe1\\x90\\x75\\x88\\xf7\\xa9\\x0e\\x81\\x02\\x74\\x08\\xa6\\x17\\xde\\xa5\\xe8\\x85\\xc3\\xc6\\x7f\\xc8\\xda\\xe5\\x3f\\xd8\\xd5\\x48\\x85\\x9f\\x4a\\x85\\xce\\x01\\xdf\\x87\\x54\\x9f\\x40\\x01\\xfa\\x04\\xa3\\xf3\\xa9\\x42\\xe7\\x40\\x6a\\x35\\xe3\\xa6\\x9a\\xc9\\x91\\xe7\\xc4\\x2e\\x12\\x46\\xe5\\x48\\x89\\xb7\\x28\\x1a\\x11\\x4e\\x4b\\xfd\\x23\\x6a\\x7f\\x59\\xb6\\x52\\x9a\\xdc\\x97\\xeb\\x16\\x10\\x75\\x24\\xca\\xcb\\xb1\\x92\\x6f\\x96\\x05\\x08\\x93\\x20\\xfe\\xc8\\xfb\\x2b\\xca\\x10\\x97\\x49\\x63\\x7a\\x8e\\x6b\\x14\\x3f\\x41\\x89\\xa2\\x78\\x05\\x19\\x22\\xfe\\x1c\\xe9\\xc4\\x73\\xfc\\xd8\\xc7\\x97\\x74\\xa7\\xaf\\x20\\x42\\x4e\\x73\\xe7\\x00\\xc3\\x3b\\x62\\x17\\x99\\xca\\x7f\\x0c\\x26\\xc8\\x83\\x3a\\x6f\\x75\\x80\\xc4\\x0b\\x09\\xa1\\xf9\\x57\\xca\\x69\\x69\\x77\\x89\\xe5\\x0a\\x5a\\x92\\xe8\\x0a\\x42\\x2f\\x3b\\xd3\\xe2\\x17\\x7b\\xa1\\x94\\xe9\\x7f\\xcb\\xf2\\xa4\\x63\\x38\\x64\\x11\\x8f\\x5d\\x89\\xfd\\xb7\\x51\\xc1\\xe4\\xf3\\xb9\\x4b\\x0f\\x5d\\xb1\\x2d\\x78\\xed\\xe5\\xe7\\x15\\xca\\x38\\x36\\x2b\\xe3\\x78\\xd0\\x77\\x06\\x2d\\x97\\xc7\\x71\\xb9\\x3c\\x8e\\x2b\\x7c\\xe7\\x79\\xaf\\xaa\\x0c\\x5b\\x21\\x93\\xcd\\x4f\\xf4\\x67\\xd4\\x26\\xe3\\xb4\\xc9\\x38\\xa7\\xc5\\x26\\x32\\x8b\\xff\\x00\\x5b\\xe1\\x1e\\x79\\x0e\\x9f\\xf3\\x7d\\x2d\\xcf\\x9a\\xaf\\x65\\x9c\\x6d\\xe2\\x14\\x72\\x8e\\xea\\xa6\\x59\\xf2\\x9a\\x7a\\x54\\x3c\\x2e\\xaf\\xa9\\xe3\\x32\\xce\\x6d\\x62\\x38\\x79\\x94\\xee\\x5f\\x2d\\x32\\xce\\x9d\\xe2\\x09\\x19\\xe7\\x84\\x8c\\x73\\xa7\\x34\\xaf\\x54\\x18\\x5b\\x21\\x9b\\xe9\\x1e\\x3e\\x17\\x2a\\x95\\xf9\\x29\\x0d\\x9c\\x7b\\xaa\\x45\\xd8\\x0a\\xad\\xb2\\x7e\\x72\\x64\\xd2\\xfc\\xbc\\x53\\x34\\x93\\xd9\\x94\\x9f\\x6c\\xf9\\x5b\\x4f\\x88\\xaf\\xca\\xdf\\x7a\\xd5\\x4f\\x47\\x4c\\x23\\xb3\\x29\\x3f\\xad\\x32\\xce\\xa7\\xe2\\x6b\\x32\\xce\\x6b\\x81\\xfc\\xd0\\x7d\\x9b\\xd1\\x19\\x02\\xd1\\x77\\xb7\\xdc\\xf6\\xbb\\x03\\xf8\\xb9\\x28\\xf0\\xe0\\xa7\\x33\\x84\\xbe\\xf6\\x7d\\x2e\\xe3\\x7c\\x1e\\x44\\x47\\xe1\\x07\\x0e\\xc2\\xad\\xe3\\xef\\x33\\x9c\\xf1\\xf7\\x03\\xe8\\x3c\\x2a\\x80\\x9f\\x0e\\x1c\\x44\\x0f\\x8d\\xbf\\x27\\xe3\\xbc\\x17\\xe4\\x4f\\x31\\x2a\\xfe\\x94\\x11\\x58\\x3d\\xc9\\xce\\xa7\\xb6\\x1d\\xd5\\xdf\\x98\\x6d\\x37\\xb2\\xcc\\x10\\x94\\x17\\x7d\\x93\\x98\\x48\\xaa\\x29\\x2f\\xb9\\x4a\\xdf\\xbc\\x20\\xb7\\xfb\\x05\\x3f\\x0d\\xd1\\x4c\\x66\\x50\\x1b\\x7a\\xba\\x8c\\xf3\\xf8\\xa4\\xfe\\x63\\xbc\\x34\\x2a\\xbc\\xec\\xf7\\x7d\\x3e\\xc9\\x47\\xc4\\xec\\x4c\\xb5\\xc2\\xcb\\xfe\\x7f\\x04\\xe9\\x5d\\xbe\\x01\\x0a\\xd7\\x29\\xdf\\x19\\x1a\\xdf\\xe3\\x1b\\x97\\xfb\\x6e\\x3c\\xc8\\x1f\\xa3\\x52\\xfc\\x31\\xc3\\xbe\\xf3\\xa8\\x53\\xd6\\xcd\\x3a\\x65\\x1c\\x66\\x27\\x8e\\x31\\x3b\\x51\\xb2\\x8d\\xbe\\x64\\x6b\\x80\\xbd\\xdb\\xa1\\xbc\\x7b\\xc0\\xf7\\x2f\\x74\\x5c\\x7e\\xf7\\x78\\xd0\\xbb\\x3e\\xc5\\xc6\\x3c\\xf0\\x4d\\xf0\\x9e\\x23\\xd1\\xb8\\x5b\\x35\\x5f\\xa1\\x71\\x1f\\x5c\\x3d\\xc9\\x1f\\x24\\xd1\\x38\\x40\\xf7\\xcf\\x36\\x19\\x87\\xe9\\xba\\xb2\\xa5\\x4a\\x79\\xd9\\x0e\\x40\\xc6\\x54\\x5a\\x6c\\x85\\x02\\x79\\xec\\xe6\\xa1\\x16\\x99\\x97\\x16\\x46\\x07\\x19\\x01\\x48\\x1f\\x1d\\xbb\\x99\\x6c\\xec\\xda\\x82\\xc7\\x6e\\xbb\\x68\\x26\\x63\\xb4\\x9d\\x05\\xf2\\xb8\\x3c\\x40\\xc7\\x05\\x4f\\x8c\\x0b\\x0a\\x13\\xcd\\xa4\\x8f\\x8e\\xdd\\x4c\\x86\\xe3\\xfb\\x6e\\xd2\\xd8\\x31\\x5e\\xca\\x15\\x5e\\xf6\\xfb\\xfe\\x87\\xae\\x7b\\x1c\\xb0\\xee\\x5f\\x94\\x78\\xa1\\x63\\xc7\\x78\\xd9\\xff\\x5a\\xb0\\xce\\xdc\\xed\\xfb\\x9c\\xdc\\x42\\x7d\\x72\\x2e\\xbf\\xdd\\x4b\\x7d\\x72\\x28\\xc0\\x27\\xb7\\xd1\\x77\\x8e\\xcc\\xa2\\xed\\x99\\xc5\\xda\\xd3\\x13\\xdc\\x1e\\x46\\x63\\xae\\x42\\x63\\x1f\\xec\\xa6\\x7d\\x8b\\x02\\x7c\\x76\\x94\\x06\\xd5\\x2b\\x18\\x8d\\x7d\\x3d\\x97\\xf1\\x21\\x66\\x91\\x5b\\xe8\\x7e\\xee\\x62\\xfe\\x9e\\x8e\\xef\\xe4\\x19\\xf4\\x9d\\xb2\\xa7\\x6d\\x14\\xb3\\xc8\\x2c\\xda\\x27\\x8c\\xc6\\x7a\\xfd\\x64\\x9c\\x6e\\x31\\x32\\x80\\x8e\\xd4\\xb7\\xef\\x88\\x27\\xe5\\x7e\\x3b\\xe9\\xe7\\x45\\x8c\\x0c\\xa0\\x23\\xe1\\xdc\\x35\\x09\\x87\\xb5\\x69\\x9e\\xd2\\xa6\\xfd\\x10\\xfe\\x23\\x6d\\x52\\x2b\\xfc\\xec\\x7f\\x27\\xb8\\x4d\\x09\\xa2\\x95\\x3c\\x41\\xc7\\xd9\\x2d\\x7f\\xe7\\xa8\\xf8\\x86\\xfc\\x9d\\x37\\xfc\\x7e\\x41\\x31\\x8e\\xb4\\xf2\\x92\\xbe\\xdf\\x21\\xe3\\x7c\\x2e\\x3e\\x27\\xe3\\x3c\\x27\\xe3\\x24\\x88\\xd5\\x01\\x74\\x04\\x58\\x9f\\x11\\xce\\xbe\\x13\\xce\\xbe\\x33\\x53\\xac\\x22\\xf7\\x90\\x51\\x6c\\x45\\x3f\\x63\\xf0\\xbc\\x29\\x0c\\x3e\\x85\\xc1\\xb7\\x88\\xee\\x89\\x6f\\x80\\x00\\xeb\\x97\\xb1\\xbe\\xa2\\x67\\x2c\\xaa\\x7a\\x3f\\x7f\\xb0\\xdf\\xf7\\xcf\\x2b\\xf8\\x2d\\xcf\\x91\\x37\\x84\\xa7\\xc0\\xcf\\xdf\\x10\\xfa\\x2d\\xdc\\xc7\\xa8\\xdf\\xe7\\x5f\\x13\\xcc\\xb7\\xd9\\xa7\\xf8\\x36\\x0f\\xc3\\x76\\x34\\x47\\xa6\\x33\\xc7\\x2f\\x3b\\x7d\\xe7\\x48\\x93\\x10\\xae\\xf8\\x78\\x0e\\xc3\\xb5\\xa0\\x62\\x74\\x54\\x41\\x74\\x84\\x7f\\x29\\x74\\x86\\x7d\\xdf\\xa0\\x0a\\x99\\x4e\\x45\\x20\\x1d\\x7e\\x9f\\xe2\\xc7\\x19\\xfe\\xfa\\xbc\\x3c\\x07\\xce\\x2b\\x73\\x80\\xf1\\x53\\xae\\xd0\\x39\\xe0\\xfb\\x0e\\xed\\x93\\xe9\\xec\\x0b\\xa2\\x73\\x56\\xa1\\x73\\xe0\\xdb\\x06\\xc6\\x4d\\x83\\xdc\\x67\\x94\\xc6\\xf5\\x0a\\x8d\\x43\\xa0\\x46\\x5f\\xc9\\xfe\\xda\\xaf\\x82\\xda\\x94\\xa7\\xb4\\xe9\\x10\\x48\\xfa\\x30\\xf5\\x08\\x1d\\x08\\x6c\\xd3\\xbd\\x54\\xe7\\x2e\\x94\\x65\\xca\\x75\\x93\\xfc\\xbe\\x12\\x9d\\x43\\xfc\\x37\\x0a\\x9d\\xfb\\x60\\x7b\\xa0\\x67\\x89\\x9d\\x55\\x89\\x77\\xd3\\x9a\\x16\\x36\\x28\\xf0\\xe6\\x85\\x23\\xc0\\x11\\xec\\xbe\\x88\\x04\\x43\\xf3\\x05\\x1e\\x73\\x5c\\xa9\\x52\\xf4\\xa3\\x96\\x56\\x82\\xb1\\x81\\xcd\\xac\\xd3\\x5b\\xec\\xf4\\x4e\\xaf\\x56\\x10\\x54\\x82\\x70\\xb9\\x3a\\x23\\xd9\\x40\\x5a\\x93\\x96\\x25\\x3c\\xd2\\x92\\x16\\x84\\x6e\\xbd\\xc1\\x9a\\x1c\\xa4\\xc4\\xd8\\x17\\x3f\\x72\\x55\\x15\\x42\\x71\\x08\\x2d\\xea\\x1b\\x5c\\x8e\\x10\\x3f\\x76\\xa9\\xe4\\xc4\\x17\\xae\\x44\\xaf\\x35\\x40\\x7d\\xa9\\xa9\\xe4\\xea\\xaf\\x7d\\x6a\\x3d\\xf7\\xe2\\xa5\\x92\\xd1\\xdb\\x6e\\x1b\\xe5\\x5e\\xa4\\x7c\\xdd\\x29\\x76\\x91\\x3e\\x52\\x0c\\xd9\\xd0\\xef\\x8d\\x71\\x20\\xc2\\x65\\xc7\\x1a\\x38\\x2c\\x19\\x75\\x78\\x8a\\x5c\\x62\\x36\\x6a\\x7a\\x97\\x37\\x41\\xce\\x57\\xea\\x67\\x9e\\x9a\\x73\\x3d\\xcc\\x9c\\x4b\\xb8\\x1c\\xda\\x10\\x08\\xed\\xf6\\x86\\x68\\x2d\\xba\\x0c\\x8b\\x8d\\xde\\x1a\\xbd\\x92\\xb6\\x66\\xbb\\x42\\x75\\x2e\\x0d\\x29\\x9a\\xa4\\xaa\\x55\\x57\\x45\\x16\\xee\\xed\\x99\\x79\\xcb\\xc2\\x42\\xa4\\xd7\\x66\\xd4\\xe4\\xcd\\x18\\x4a\\x40\\x93\\xcc\\xb6\\xd2\\x0d\\xb9\\xb7\\xb4\\xf5\\x14\\xac\\xfa\\xd9\\x26\\x7c\\xcd\\xf8\\x96\\xaa\\xd9\\x85\\xb1\\x15\\x85\\xf8\\xbb\\x8b\\xbf\\x95\\xc6\\x30\\x1e\\x80\\x9c\\xa4\\xfe\\x0b\\x8f\\x2c\\x03\\x97\\x4f\\xda\\x47\\xa5\\xf5\\x76\\x80\\xfa\\x28\\xbb\\x99\\x0c\\x1c\\x0a\\xf6\\x51\\x32\\xff\\xff\\x54\\xc5\\xff\\xbf\\x0f\\xae\\x99\\x44\\x83\\xf9\\x20\\xbf\\x52\\xfc\\x94\\xfb\\x60\\x37\\x04\\x50\\x81\\x89\\x73\\x84\\x1c\\x85\\xce\\x90\\x7f\\x4f\\x0f\\x38\\xd3\\xe9\\x06\\x20\\xdb\\xe8\\xb9\\x46\\xa9\\x2c\\xf7\\xaf\\x9d\\x74\\xae\\xb1\\x0e\\x80\\xac\\xa0\\x3e\\xd1\\x1e\\x19\\xe7\\xc0\\x24\\x7b\\x85\\xd1\\x99\\xaa\\xd0\\x39\\x08\\x3c\\x5a\\x22\\xd3\\x59\\x12\\x44\\xe7\\x82\\x4c\\x47\\x80\\x83\\x26\\x3d\\xa3\\xa2\\x97\\x65\\x3f\\xa5\\x51\\xaf\\xd0\\xd8\\xef\\x1b\\x9f\\x24\\x87\\x18\\x8d\\xaf\\x15\\x1a\\xfb\\x63\\x83\\xfb\\x2e\\x17\\x80\\xdc\\x4d\\x75\\xaa\\xad\\x32\\xaf\\x7f\\x9f\\x74\\x76\\x99\\xed\\x3b\\x4f\\x1e\\xa1\\xe7\\x01\\xd7\\xc9\\x38\\xfb\\x21\\x16\\xd4\\x4f\\x70\\xec\\x44\\x80\\xb6\\x27\\xd7\\x77\\x2f\\xb9\\x46\\xd5\\x8b\\xad\\xb0\\x4d\\x39\\xa3\\xba\\x0b\\x42\\x9e\\xe0\\xd0\\x29\\x74\\x97\\xa2\\x27\\x8c\\x90\\x85\\xfc\\x7b\\xd8\\x0a\\x3b\\xd8\\x7e\\x38\\x4d\\xcb\\xa8\\x68\\x99\\x3e\\xf4\\x08\\xbb\\xd3\\x8e\\xad\\xe8\\x10\\x95\\x99\\xaf\\x88\\x9b\\x7d\\x43\\x8c\\x17\\xdf\\x10\\xa3\\xf1\\xdf\\xe0\\xf8\\xef\\x09\\xfa\\xe5\\x3a\\x7a\\xe5\\x0d\\x59\\xd3\\xf6\\x9d\\x50\\x64\\x1d\\xcd\\x81\\x20\\xd9\\x70\\x68\\xbf\\xec\\x3b\\xef\\x02\\x23\\xd3\\x7c\\x8c\\xfe\\x36\\x31\\x9c\\xd3\\x32\\x8e\\x00\\x23\\xab\\x83\\xfd\\x02\\x14\\x2e\\x4c\\x51\\xe0\\xfb\\x56\\xa7\\x30\\x78\\x4a\\x20\\xdc\\xa6\\xc0\\x0f\\x6f\\x30\\x31\\xb8\\x29\\x00\\x2e\\xcd\\x49\\x19\\x3e\\xf4\\x41\\x0a\\xd3\\x9a\\x82\\xde\\x6f\\x52\\x78\\x3c\\xe4\\xf3\\xc1\\x29\\x86\\x71\\x2a\\x88\\x47\\x55\\x9c\\x9f\\x06\\x7a\\xf5\\x6f\\xfd\\xec\\x3c\\xa8\\xdf\\xbf\\xc7\\xb9\\x49\\x07\\xd9\\x8f\\xad\\xe8\\x20\\xdb\\xc3\\x62\\x58\\xfb\\xe9\\xfd\\x7d\\xda\\xfe\\x7b\\x95\\xf3\\x30\\x23\\x9b\\x19\\x4a\\xfb\\x19\\xce\\x69\\x19\\x47\\x80\\x91\\xbe\\xe0\\x73\\x12\\x0a\\xa7\\xed\\xbf\\x57\\x3e\\x0f\\x4b\\x61\\xf0\\x94\\x00\\x38\\x6d\\xdf\\xbd\\xf2\\x79\\x57\\x0a\\x93\\xce\\x32\\x9c\\xde\\x43\\x97\\x6c\\x2b\\x74\\xbf\\xcc\\xc3\\x72\\x88\\x63\\x14\\xe2\\xfc\\x3c\\x30\\x9c\\xbf\\x2a\\x38\\x23\\xb0\\x03\\x02\\x56\\xc1\\x04\\x8e\\x20\\x28\\x38\\xfb\\x60\\x07\\x3d\\xaf\\x41\\x01\\xe7\\x35\\x8c\\xce\\x79\\x19\\x47\\x80\\xa1\\x6f\\xe2\\x19\\x2f\\xf1\\x8c\\x17\\x7a\\xc7\\x9a\\x8e\\xd5\\x23\\xca\\x3e\\x6b\\x62\\x34\\x4c\\x7e\\x1a\\xf4\\xde\\x34\\xff\\x25\\xb6\\xa2\\xa3\\x32\\xbf\\xd3\\x21\\xc0\\xbb\\x12\\x80\\xf3\\x4f\\x19\\x47\\x80\\x91\\x25\\xe9\\x0c\\x23\\x9d\\x7d\\x87\\xc2\\x85\\x58\\x05\\xbe\\x6f\\x49\\x80\\x0f\\x52\\x81\\x3b\\x15\\xf8\\xe1\\x55\\x59\\x0c\\x9e\\x15\\x00\\xe7\\x45\\x05\\x3e\\xf4\\x4e\\x26\\x9b\\x11\\xf2\\xfb\\xf4\\x8e\\x2b\\x85\\x8f\\xc9\\x3c\\x8e\\x40\\x11\\x6b\\x47\\x91\\x9f\\x47\\x86\\x73\\x51\\xc1\\x19\\x81\\x51\\x70\\x31\\x1c\\x57\\x10\\x8e\\x60\\x51\\x70\\xf6\\xc1\\x28\\x78\\x18\\x8e\\x27\\x18\\x27\\x4c\\xc6\\x11\\x60\\xe8\\x07\\x0f\\xeb\\x53\\x0f\\xe3\\x85\\xde\\xfd\\xa4\\xf3\\xe7\\x38\\xeb\\x8b\\xe1\\xe0\\xf9\\xc3\\xe6\\xff\\x09\\x65\\xfe\\x0f\\x9f\\xe5\\x59\\x5b\\xf9\\xc0\\xf9\\x4f\\x14\\xf8\\x81\\xcf\\x17\\x30\\xf8\\x02\\x76\\x6e\\xa3\\x17\\xbb\\x68\\x1e\\x93\\x1f\\x3d\\xb7\\x51\\x21\\x5e\\xe0\\x57\\xfb\\x4f\\x6f\\xfe\\x8f\\xcf\\x6d\\x6c\\x26\\x15\\x3b\\xb7\\x39\\x87\\x5e\\xf7\\x5c\\xe1\\xdc\\xa6\\x55\\xce\\x88\\xa2\\x41\\xf9\\x7b\\xc9\\xe8\\xc5\\x91\\x2b\\x9c\\xdb\\xbc\\xf9\\x3e\\x19\\x1d\\x4f\\x94\\x64\\x96\\xb4\\x26\\x7d\\x5f\\x90\\x0e\\x3a\\x47\\x0e\\xb2\\x7e\\xe9\\x4d\\x67\\xfd\\x22\\xcf\\x11\\x0a\\xa7\\x73\\x84\\xc1\\xf7\\xf5\\x66\\x32\\x78\\x66\\x20\\x3c\\x41\\x81\\x1f\\xfc\\xa8\\x94\\xc1\\x4b\\x03\\xe1\\x71\\x0a\\x7c\\xff\\xbb\\xc1\\xef\\x4f\\x97\\x64\\xa8\\xa4\\x53\\x32\\x19\\x0a\\xfb\\x7d\\x9d\\x10\\x20\\xb9\\x02\\xd6\\xfe\\x09\\x65\\xed\\x0e\\xbf\\x17\\x7c\\x8e\\xcc\\xd6\\x3e\\x51\\xe0\\x07\\xfe\\xba\\x80\\xc1\\x17\\x04\\xc2\\x23\\x15\\xf8\\xc1\\x4f\\x73\\x19\\x3c\\x97\\xf9\\xc8\\x0e\\x89\\x5d\\x34\\x7f\\x88\\x19\\x2a\\xbc\\xa5\\x01\\x9e\\x27\\x01\\x54\\x6a\\x41\\xd5\\xa7\\xf8\\xdc\\xff\\xaf\\x3d\\xed\\xfe\\x64\\x23\\xdb\\xaf\\xe4\\x69\\x3f\\x17\\x90\\x80\\xe4\\x0a\\xae\\x25\\x32\\xfa\\xc1\\x47\\x4a\\x5b\\xc2\\x95\\xb6\\xec\\xff\\x6b\\xb0\\x9c\\xa3\\x39\\x46\\xe8\\x78\\xdd\\xc7\\xc6\\x6b\\x63\\x70\\x7f\\x33\\x78\\x94\\x02\\x3f\\x70\\x61\\x98\\xc1\\x87\\x03\\xe1\\x09\\x0a\\xfc\\xa0\\x18\\x3c\\x9e\\x73\\xc5\\x38\\x32\\x9b\\xca\\xf0\\xfb\\x64\\x5b\\xe7\\xf9\\x49\\xb6\\x0e\\xcd\\x13\\x42\\x65\\xf1\\x11\\x79\\xbd\\xfe\\x04\\x02\\xb8\\x0c\\x90\\x93\\x26\\x45\\x4e\\x1e\\x86\\x5b\\x27\\x9d\\x49\\x31\\x39\\x39\\xc6\\x70\\x40\\x80\\x61\\x1f\\x04\\xfc\\x2e\\x2a\\xf2\\xf3\\x00\\xea\\x61\\x6f\\xf6\\xb0\\xf1\\x7c\\x45\\xec\\xa2\\x39\\x45\\xcc\\xe0\\xf1\\xba\\x27\\x7c\\x9e\\x00\\x6a\\x76\\x29\\xee\\xff\\x13\\x8f\\xa7\\x9c\\x80\\xc4\\x07\\x57\\x72\\x19\\x3e\\x35\\x91\\x95\\xe4\\x8a\\x5e\\xc2\\x97\\x02\\xfa\\x20\\x44\\x69\\xc7\\xc1\\xd0\\x0c\\xd6\\x8e\\x0c\\x79\\xde\\xfa\\xbe\\xe0\\xc3\\x05\\x1e\\x5b\\xd1\\x03\\xb2\\x4f\\xf0\\xbe\\x49\\x7b\\xd2\\x3d\\x62\\x0a\\xb9\\x9f\\xea\\x17\\x0f\\xca\\xe3\\xb1\\x41\\x7c\\x49\\x1e\\x8f\\x97\\xe4\\xf1\\xa0\\xf9\\x44\\xf8\\x57\\xb1\\x15\\x3d\\x24\\xfb\\xf2\\xca\\x27\\x9d\\xcd\\xdf\\x2b\\x9a\\xc8\\x20\\xa5\\xf3\\x90\\x4c\\xa7\\x52\\x7c\\x59\\xa6\\xf3\\x72\\x20\\x1d\\x72\\x9b\\x82\\x33\\x04\\x3d\\xe2\\x55\\x32\\xce\\x55\\x41\\x38\\x0a\\x1d\\x38\\x08\\xc6\\xf1\\x4a\\xd9\\x77\\x56\\x29\\xe3\\xd0\\xfd\\x8d\\xca\\xe2\\x47\\xe4\\x38\\x80\\x60\\x59\\x7c\\x50\\x8c\\x23\\x31\\x94\\xc6\\x23\\x32\\x2f\\xbf\\x9a\\x34\\xc7\\xd8\\x1e\\x19\\xae\\xd0\\xd8\\xff\\x6d\\xf0\\x3a\\x60\\x7b\\xd3\\x73\\xca\\xde\\x34\\x7c\\x5a\\xc3\\xa4\\x8a\\x26\\x70\\x6f\\x8b\\x52\\xe0\\x07\\x3e\\x1d\\x66\\xf0\\xe1\\x09\\xf8\\x2e\\x21\\x5e\\x81\\xdf\\xb7\\x3a\\x78\\x6f\\xa3\\x79\\x36\\xe8\\xbe\\xf5\\x18\\x6b\\x43\\xa1\\x8b\\xbd\\xef\\x92\\xe1\\xa2\\x89\\x8c\\xd0\\x36\\x3c\\x26\\xb7\\x61\\x1b\\xed\\x4f\\x1c\\xd0\\x9f\\x94\\x86\\x60\\x55\\x68\\xec\\xff\\xb9\\x87\\xd1\\x90\\xf7\\x2c\\x9a\\x43\\x83\\xca\\xe6\\xc7\\xe5\\xbd\\x71\\x3b\\x04\\x48\\x67\\xe6\\xcb\\x92\\x70\\xe8\\x7a\\x7f\\x5c\\x5e\\x6b\\xdb\\x21\\x60\\xc5\\x33\\x1c\\x31\\x9f\\xf4\\xd0\\x35\\xfb\\x38\\xf3\\x2d\\xb8\\x2e\\xc9\\x3a\\xe8\\x25\\x45\\x07\\x65\\x74\\xe2\\x14\\x9c\\xfd\\xe2\\x65\\x72\\x5e\\xb4\\x04\\xe8\\xb1\\x52\\x7b\\x7e\\x2e\\xbe\\x2e\\x8f\\xc9\\xeb\\x81\\xba\\x2e\\x1d\\x13\\xe6\\xc3\\xd8\\xff\\x75\\xf0\\x98\\xb0\\x3d\\xda\\xab\\xec\\xe3\\x87\\x61\\x0f\\x14\\x33\\x8c\\xe2\\x60\\x7d\\xe0\\x0d\\x65\\x1f\\x1f\\x26\\xc9\\x0c\\x23\\x39\\x90\\x46\\x92\\x02\\x3f\\xa0\\xda\\xc4\\xe0\\x9b\\x02\\xe1\\x0b\\x95\\x6f\\x1c\\x82\\x38\\xf8\\x03\\xd3\\x04\\xfe\\x10\\xf8\\x8d\\x9f\\x53\\xfd\\x6a\\x4c\\xb6\\xd5\\xef\\x80\\x00\\x6d\\x81\\xda\\xbd\\xfb\\xc5\\x07\\x68\\x7e\\x8e\\xcb\\x6c\\x75\\xc9\\x48\\x27\\xdc\\x6a\\xd9\\x64\\xff\\x37\\xb6\\xba\\xe6\\x47\\x6d\\xf5\\xc0\\x1c\\x1e\\x68\\xe7\\xfa\\xa4\\xd8\\x20\\xe1\\x61\\xee\\x3f\\xb2\\xae\\x2a\\x30\\xa5\\xc7\\x9e\\xe7\\xb3\\xe2\\x8b\\x53\\x03\\x04\\x48\\x45\\x19\\xe7\\x59\\xba\\xb7\\x3f\\x30\\xc5\\x87\\x6c\\x2f\\xee\\xa2\\x32\\xf7\\xe7\\xf2\\x3c\\xb8\\x76\\x92\\xcc\\xa5\\x3a\\x10\\xc5\\x61\\x3a\\xd0\\xbe\\xe1\\xe0\\xf1\\x61\\x3a\\xd2\\x57\\x0a\\x7c\\xe8\\x2f\\xc1\\x3a\\x32\\xcd\\x77\\x41\\xd7\\xed\\x09\\x36\\xe7\\x2f\\x8b\\x55\\xa2\\x70\\xba\\xcf\\x32\\xf8\\xc1\\xef\\x02\\xf6\\x59\\x05\\x1e\\xae\\xc0\\xf7\\xff\\x33\\xf8\\xfb\\x2c\\xf6\\x66\\x1b\\x8b\\x9f\\x01\\x15\\x1c\\x1d\\xff\\x48\\xe2\\xdb\\xb7\\x91\\xfe\\xbe\\x1d\\xac\\x60\\x5b\\x28\\xb5\\xed\\xe8\\xb8\\xeb\\x72\\x1b\\xd6\\xb7\\x07\\x80\\x3c\\x24\\x6c\\x05\\x2b\\x64\\xc8\\x38\\xd3\\x2e\\x8f\\xd7\\xf2\\x3d\\x4f\\x75\\x0d\\x89\\x8e\\x43\\xc6\\xd9\\x32\\x89\\xce\\x0d\\xbe\\xf3\\x64\\x97\\xb0\\x0d\\xac\\x90\\x17\\xc3\\x78\\xa8\\xa4\\xbf\\xb7\\x02\\xf0\\x99\\xf4\\xf7\\x92\\x85\\xec\\xf7\\x10\\xfa\\xfb\\x09\\x00\\x72\\x27\\xfd\\xfd\\xa4\\x8c\\xbf\\x92\\xf6\\xf5\\x31\\xdf\\x39\\x52\\x21\\x3c\\x8b\\xad\\xf0\\x2c\\x6d\\xeb\\xa3\\x7f\\xa2\\xde\\x49\\xee\\x94\\xef\\xa4\\xb2\\xe6\\x68\\x7b\\xe9\\x7d\\x2b\\x33\\x7d\\xde\\x26\\xad\\x1f\\xfa\\x9c\\x36\\x71\\x5e\\x4c\\x9f\\x6d\\x13\\x76\\x3a\\x7d\\x2e\\x9d\\x38\\xf7\\xa4\\xcf\\x19\\x13\\xe7\\x4c\\xf4\\xd9\\xa1\\xd0\\x3b\\x47\\x9f\\xb3\\xe8\\xf3\\x56\\x00\\x32\\x9f\\x3e\\xe7\\x28\\xef\\x57\\xd3\\xe7\\xdc\\x09\\x1f\\x3d\\xff\\x02\\x16\\x20\\x8f\\x3e\\xdf\\x01\\x40\\x6e\\xa5\\xf0\\xfc\\x09\\x5f\\x23\\x7d\\x76\\x4f\\xf8\\x28\\xe8\\x73\\x09\\x7d\\x4e\\x06\\x20\\xbf\\xa3\\xcf\\xc5\\x01\\xe7\\x5e\\xff\\x3e\\x2e\\xf5\\xbf\\xf1\\x73\\x2c\\xf1\\x9d\\x23\\xbb\\x84\\x5b\\xb0\\x15\\x4e\\xd1\\xbe\\x3c\\xfa\\x56\\x18\\x93\\x93\\x61\\x6c\\xde\\x5c\\xe7\\x3b\\x4f\\xf6\\x09\\x37\\x63\\x2b\\x3c\\xcd\\xe0\\x5f\\x87\\xb2\\x51\\x0d\\x65\\xf0\\x6d\\x62\\x1f\\x69\\xa6\\xef\\x3f\\xc3\\xe0\\xa7\\xc3\\x18\\x5c\\x7e\\x9f\\x8d\\xd5\\x55\\xca\\x58\\x1d\\xfd\\xf3\\x64\\x9f\\xf4\\x16\\xdf\\x39\\x32\\x53\\x78\\x0d\\x5b\\xe1\\x25\\x36\\x9e\\xbf\\x7a\\x5e\\x1e\\xcf\\xe7\\x15\\x1c\\x69\\x4f\\x3a\\x49\\x8a\\xb1\\x00\\xa3\\x13\\x31\\x73\\xa4\\x15\\x0b\\xd0\\x46\\x9f\\x1f\\x15\\xe7\\x93\\x7e\\x0a\\x5f\\x43\\x9f\\x1b\\x00\\xc8\\xf5\\xf4\\xb9\\x4b\\x19\\xdf\\xc3\\xf4\\x79\\xf6\\xc4\\x1c\\xa2\\xb1\\x6a\\x8c\\xaf\\xa1\\xb3\\xc1\\xb1\\x6a\\x94\\x27\\xfe\\x13\\x85\\xa7\\xa1\\x3f\\x46\\x33\\x78\\x74\\x60\\x5c\\xdf\\x2d\\xca\\x79\\xca\\xe5\\xfd\\xc6\\xda\\xb4\\x5d\\x79\\xff\\xe8\\xaf\\x83\\xe3\\xf1\\xb2\\x7d\\xe7\\xc9\\x51\\xe1\\x06\\x6c\\x85\\x57\\x19\\xfc\\x8f\\x57\\x8a\\xb9\\xfe\\xf7\\x71\\xd0\\xa3\\x00\\xa4\\x84\\xc6\\x5c\\xfb\\xf7\\xb0\\x75\\xc1\\x31\\xd7\\x80\\x98\\x9f\\x9e\\x7f\\x01\\x2a\\xc0\\xe9\\xcd\\xbd\\x3c\\x57\\x54\\x60\\xd1\\x2e\\x9a\\x2d\\x2a\\x39\\x30\\x5b\\x94\\x30\\x29\\x5b\\x94\\xce\\x9f\\x0f\\x2f\\x38\\x59\\x94\\x4b\\x0e\\x0e\\xe1\\xd6\\x27\\x54\\x2e\\x6e\\x9d\\xf7\\xd8\\x75\\xd3\\x5a\\x77\\x3e\\x3d\\xbc\\xfa\\x57\\x37\\x36\\x8b\\xff\\xc4\\xc6\\xb2\\x39\\x65\\x45\\x9d\\xa5\\x46\\x7b\\xeb\\x8a\\xba\\x85\\x0f\\x6d\\xa8\\x6e\\xb9\\xf1\\xe9\\x15\\xb5\\x37\\x6d\\x5e\\x36\\x2d\\x0b\\xc5\\xe0\\x8c\\xa6\\xc5\\x15\\x34\\x0f\\xd7\\xd5\\xb6\\x9a\\x92\\x3c\\x5d\\x7c\\xeb\\xf0\\x4f\\xe6\\xf5\\xdc\\xb9\\xc4\\x53\\xb5\\xfe\\xc8\\x82\\xbc\\xf6\\x12\\x53\\x42\\x5e\\xb5\\xcd\\x5e\\xe5\\xca\\xd4\\x26\\xcd\\x1c\\xd9\\x3d\\x7b\\xfe\\x1d\\x83\\xae\\xb8\\x82\\xd6\\xa1\\xeb\\xa6\\x57\\xcd\\x2d\\x4d\\x8c\\xcf\\xae\\xbc\\xc2\\xba\\xfc\\x6f\\xd6\\xc5\\x0a\\xdf\\x79\\xd2\\x4c\\xdf\\xc9\\xa4\\xef\\xdc\\xe5\\x5f\\x6b\\xe8\\x7f\\x26\\xd6\\x36\\x3d\\xc3\\xca\\x0a\\x3a\\xc3\\x42\\x13\\x67\\x58\\x80\\x7d\\xe7\\xc8\\xdb\\x34\\x96\\xe9\\x2f\\x72\\x9c\\x47\\xca\\xa4\\x58\\xa6\\xff\\x24\\x83\\xe8\\xf8\\xd1\\xe7\\xc7\\xaf\\x28\\x93\\x56\\x00\\x90\\x0a\\x95\\x03\\x5b\\xe1\\x3d\\xd9\\x4f\\xff\\x67\\x74\\x93\\xfc\\x8d\\x9b\\xe4\\x6f\\x5c\\x49\\xee\\x04\\xca\\xad\\xcb\\xe5\\xce\\x06\\x00\\x52\\x4f\\xe1\\xc7\\xae\\x28\\x87\\x68\\x9c\\x19\\xff\\x22\\x16\\xc0\\x72\\x45\\xb9\\x54\\x09\\x40\\xfe\\x49\\x9f\\x4f\\x5c\\x51\\x2e\\xd1\\x18\\x4c\\xba\\x2e\\xab\\x27\\x62\\x8c\\xe9\\x73\\xbd\\xf2\\xfd\\x52\\xfe\\x5b\\x6c\\x85\\xf3\\x4c\\xc7\\x78\\x77\\x26\\x9b\\xf7\\x33\\x03\\xd6\\x55\\xc0\\xba\\xbe\\x5d\\x9c\\x4f\\xba\\xe9\\x73\\x3b\\x55\\x0c\\x68\\x8c\\x1b\\x69\\x05\\x07\\x94\\x78\\x8b\\x80\\xf0\\x88\\x97\\xab\\x45\\x23\\x18\\xf6\\xcf\\x62\\x63\\x93\\x10\\x54\\x78\\x30\\x35\\x25\\x31\\xc1\\xa0\\x9b\\x12\\x2a\\xf0\\xe0\\x40\\x0e\\x95\\x10\\x43\\x93\\x1c\\xd8\\x4c\\xfa\\xcb\\xb2\\xa9\\xa8\\x4c\\xee\\x80\\x44\\x72\\x78\\x99\\xbd\\xb1\\xc8\\x88\\x91\\x80\\xa7\\x6e\\x79\\xb0\\x77\\xcb\\x33\\x5b\\x2b\\xbd\\xd7\\xfc\\x6a\\xf3\\xc2\\x47\\x36\\xd5\\x60\\xf1\\x07\\x9c\\xe8\\x6e\\xce\\xaa\\xea\\x70\\xea\\x62\\x9c\\x9d\\xaf\\xc4\\x66\\x96\\x5b\\x67\\xde\\x36\\x54\\x32\\x6b\\xcf\\xef\\x56\\x27\\xaf\\xfe\\xdd\\x9e\\x8e\\xd2\\xe5\\x7b\\xe7\\xa7\\x37\\x14\\x18\\xdd\\xb3\\xd7\\x94\\x27\\x57\\xac\\xed\\x76\\xc3\\x44\\x7c\\x2c\\x95\\x41\\x73\\xae\\x28\\x93\\xfe\\x53\\x3c\\xf5\\x2e\\x00\\x92\\xcf\\xff\\x09\\x5b\\xe1\\x33\\xa6\\x23\\xac\\x8d\\x60\\x7d\\x17\\xc1\\xe0\\xf4\\xbc\\x8d\\xf6\\xd5\\x2c\\x4a\\xef\\x1d\\x00\\x32\\x95\\xff\\x18\\x0b\\xd0\\xf4\\x5f\\xc5\\x4b\\x7f\\x20\\x36\\x71\\xab\\x28\\x7e\\x33\\xc5\\xbf\\x9e\\xce\\x5f\\xe9\\x7b\\x9f\\xb3\\xef\\x35\\x05\\x7f\\x8f\\xf9\\xda\\xcf\\x2a\\xf1\\xbe\\x07\\xc2\\x83\\xcf\\x88\\x98\\xcf\\x3f\\x55\\xf1\\xf9\\x57\\xf9\\x66\\x4c\\x8a\\xa7\\x62\\x3e\\xff\\x57\\x65\\x9f\\xbf\\x84\\xd3\\x3a\\xc9\\x7e\\x62\\x74\\x8c\\x0a\\x9d\\x11\\x58\\x3e\\x29\\x1e\\x80\\xd1\\x79\\x49\\x39\\x3b\\x18\\x19\\x0a\\x96\\xb7\\x8c\\x46\\x8e\\x42\\x63\\xc8\\xf7\\x3f\\x93\\xe4\\x02\\xa3\\xf1\\xae\\x42\\x63\\xe8\\xed\\xe0\\x3d\\x81\\xed\\xa7\\xa9\\xca\\x7e\\x5a\\xe5\\x1b\\x98\\xd4\\x1e\\xd6\\x27\\xaf\\x2a\\xe7\\x0f\\x55\\xbe\\x0d\\x97\\xb7\\x07\\xbd\\xcc\\x7d\\x84\\x0f\\x0a\\x80\\x05\\xa0\\x7a\\x0e\\x8a\\xe3\\xbe\\xe0\\xae\\xa5\\xcf\\x84\\x3e\\x3f\\xe3\\xfb\\x52\\xf5\\x26\\x3f\\x06\\x56\\x12\\x25\\xe9\\x6a\\x24\\x8a\\xd0\\x1a\\x7c\\x34\\x46\\xa5\\x97\\xc6\\xab\\xdf\\xc3\\x74\\xbc\\x45\\x41\\x11\\x2a\\xf4\\x5d\\xb9\\x6e\\x20\\x16\\xd0\\xd0\\x84\\x5e\\x42\\xfb\\x2e\\xe7\\x47\\x63\\x29\\x9a\\x68\\xbd\\x93\\xf7\\xb1\\x15\\xa6\\xc9\\x38\\x77\\x4d\\x8a\\x85\\x4d\\x14\\x77\\x53\\x59\\xc6\\xe2\\xaf\\x05\\x38\\x82\\x78\\x36\\x37\\xe5\\xfd\\x6a\\x44\\xdc\\x4b\\xd7\\xbd\\x3f\\xf6\\xfa\\xc8\\xaf\\xc2\\x19\\x9c\\x9d\\xc1\\xfa\\x9a\\x25\\x39\\x24\\xcc\\xf4\\xc7\\x17\\xa0\\xd7\\xc6\\xbb\\xe0\\x36\\x86\\x71\\x9b\\xff\\x1b\\xff\\xcd\\x3d\\x23\\x26\\x13\\xa7\\x28\\x32\\xb1\\xca\\x57\\x89\\xea\\x64\\x9c\\xba\\xb1\\xc0\\x38\\xd4\\x7f\\x7f\\xf7\\x81\\xc9\\xa1\\x77\\x64\\x39\\x24\\xe1\\x54\\x83\\x86\\xb5\\x59\\xe3\\xc7\\xa9\\x05\\x20\\x7f\\xa1\\xb2\\xed\\x17\\xec\\x59\\x4c\\x25\\x7f\\xa5\\xeb\\xf5\\x15\\xfa\\x3c\\x05\\x80\\xe7\\x54\\x2b\\xb1\\x15\\xe9\\x28\\x8d\\x87\\x49\\x17\\xba\\x56\\x9e\\x53\\xd7\\xca\\xbc\\x64\\x02\\x90\\xb5\\x42\\x05\\xb6\\x22\\xbd\\x8c\\xe3\\x82\\x36\\x36\\xab\\xda\\xfc\\xdf\\x69\\x15\\x39\\xb2\\x87\\x9e\\xc9\\xbf\\x4b\\xfb\\xe6\\x0d\\xdf\\xfb\\xbe\\x41\\x79\\x64\\x07\\x65\\x3a\\xab\\xc5\\x70\\x32\\x97\\xb4\\x60\\x2b\\x9c\\x53\\x70\\x56\\xc9\\x38\\xfe\\xfb\\x43\\xd3\\xc4\\xe8\\x80\\x7b\\x5c\\x12\\xce\\x69\\xdf\\x3a\\x19\\x67\\x9d\\x8c\\xb3\\x56\\x8c\\x0e\\xb8\\x37\\x72\\x65\\x9c\\xcb\\x75\\xcf\\x74\\x71\\x1e\\xf9\\x05\\x6d\\xf7\\x93\\x57\\xd2\\x85\\x7d\\xdf\\x03\\x90\\xe7\\xe9\\x5e\\xf8\\x8e\\xbc\\x4f\\x5d\\x98\\xb4\\x17\\xa6\\x02\\x90\\x23\\x54\\xee\\x9f\\x95\\x7d\\xbc\\xc1\\x72\\xff\\xf2\\x7d\\xfc\\xff\\x3a\\xde\\xff\\xbf\\xbc\\x43\\xf7\\x9f\\xee\\xea\\xd0\\x73\\x33\\xca\\xd7\\x56\\x50\\xce\\xc8\\xc8\\x34\\x2c\\xc0\\x75\\x01\\x73\\xf6\\xff\\x2e\\xa6\\xb9\\xd5\\x77\\x96\\xac\\x11\\xbe\\xc7\\x56\\x54\\x2d\\xf3\\xf9\\x25\\xb2\\xca\\x7c\\x5a\\x65\\x1a\\xfb\\x7c\\xe7\\xc9\\x08\\xfd\\xee\\x5e\\x50\\x9e\\xe9\\x5e\\xb1\\x97\\xf1\\x3d\\x1e\\xb4\\x57\\xc8\\x63\\x62\\x55\\xc6\\x64\\xc8\\xf7\\x8f\\x49\\xfa\\x23\\x1b\\x93\\x4f\\x94\\x31\\x19\\xfa\\x20\\x58\\xc7\\x6d\\xf5\\x9d\\x27\\x7b\\x54\\xd9\\xfe\\x79\\x49\\x69\\xf4\\xc8\\x34\\xfc\\xf2\\x6e\\xb5\\xef\\x3c\\x99\\xcb\\x9f\\x97\\xe7\\xa5\\x00\\x43\\x1f\\x07\\x9f\\xb7\\xd0\\xf5\\x2a\\xfc\\x55\\x59\\xaf\\xc3\\xbe\\x3f\\xa2\\x4c\\xb9\\x7f\\x32\\x65\\x1a\\x6c\\x2d\\x3e\\xa4\\xe8\\x04\\xc3\\x6f\\x7f\\x2f\\xcf\\xc8\\xef\\x15\\xfd\\x9f\\xad\\xfb\\x38\\x85\\xce\\x90\\xef\\x25\\xf4\\xff\\x30\\xf7\\xee\\x71\\x51\\x95\\xdb\\xff\\xf8\\x7a\\x2e\\x33\\xdc\\x11\\xbc\\x27\\x6a\\x83\\x23\\x68\\x30\\x20\\x77\\xc1\\xd0\\x60\\x2e\\xa0\\x42\\x48\\x08\\x0a\\x6a\\xca\\x00\\x83\\x60\\xc0\\xd0\\x00\\xde\\x32\\xb3\\x8b\\x66\\x78\\xbf\\x23\\x22\\x22\\xde\\x10\\x6f\\x1b\\xb2\\x4e\\x75\\xcc\\x63\\x1d\\x2b\\xf3\\xb4\\xcd\\xcc\\x2e\\xc7\\x53\\x1d\\x33\\x2b\\x3f\\xe6\\xe9\\x94\\xa7\\xac\\x4c\\x67\\x7e\\xaf\\xbd\\xf7\\x9a\\x61\\x40\\xed\\x7c\\xbe\\xdf\\xd7\\xef\\x8f\\xaf\\xbe\\x36\\xeb\\xd9\\x7b\\xaf\\xe7\\xfd\\x5e\\x6b\\x3d\\xd7\\xfd\\xcc\\xbe\\xa4\\xa3\\x2d\\xe9\\xdd\\x70\\x2e\\xbb\\x70\\xca\\x4e\\x77\\xf7\\xe7\\x7f\\xf3\\xcc\\xdb\\x7f\\x7b\\x16\\x47\\x8a\\xc9\\x02\\x69\\x3e\\x45\\x94\\xf7\\x7a\\x98\\x1d\\xdf\\xf1\\x99\\xd2\\x98\\x4b\\xfa\\x2a\\x6d\\x59\\x3a\\xef\\x11\\x42\\x43\\xa5\\xf3\\x32\\xc7\\x15\\xb9\\x0f\\x63\\xb4\\xab\\x0f\\x93\\xf3\\xa8\\x7e\\xa1\\xa1\\x52\\x1e\\x89\\xe3\\x5c\\x08\\x78\\x76\\x30\\x2a\\x84\\x28\\x1c\\x1a\\xc7\\x35\\x3e\\x4e\\x8e\\xfb\\x57\\x88\\x71\\xf8\\x8e\\xb8\\x4b\\x73\\xd8\\x5c\\xd9\\xce\\xdf\\x15\\x8c\\xf3\\x41\\x8a\\xaf\\x68\\xa7\\x3c\\x3f\\x95\\xef\\xd7\\x57\\xe6\\xa7\\x55\\x30\\xe4\\x8e\\xfb\\xf5\\x95\\xb1\\xaa\\xc9\\x35\\x7e\\x57\\x79\\xdf\\x79\\xaf\\x88\\x32\\xcf\\x0d\\x75\\xe1\\x94\\x41\\xef\\x3b\\xea\\xd1\\x7f\\x7b\\xee\\x47\\xc1\\xd0\\xbb\\x30\\x76\\xc1\\xe1\\x7b\\x60\\xfc\\xe4\\x1a\\x37\\x77\\xc1\\xb6\\xee\\xf7\\x78\\x38\\x1c\\xf2\\xbb\\xd0\\x67\\xc9\\xb6\\x7c\\x8e\\x71\\x39\\x71\\x07\\xce\\x22\\xf9\\xde\\x32\\xa9\\x0e\\xfc\\xac\\xd8\\x12\\xd4\\xbd\\x0e\\x4c\\x04\\xe0\\x4b\\xe4\\x3e\\xe1\\x4b\\xc4\\x38\\x26\\xf7\\x09\\xcc\\xad\\x4f\\x28\\x06\\xe0\\x8b\\x64\\x7f\\x7e\\x53\\x30\\xe4\\xdf\\xd2\\x99\\xcb\\x9f\\xa1\\xf6\\x0c\\x55\\xb6\\x3c\\x16\\x8e\\x91\\x9f\\x91\\x38\\x4b\\xfd\\xf1\\xde\\xaa\\x0c\\xee\\xe0\\x63\\x68\\x28\\x28\\x5f\\xbb\\x3d\\x4b\\x5e\\x77\\xcd\\xeb\\x12\\xe5\\xf1\\x3d\\x4d\\xde\\x1f\\x61\\xcf\\x50\\x15\\xcb\\xf9\\x2f\\x60\\xfe\\x60\\xf9\\xf8\\x30\\x7b\\x86\\xea\\x11\\x39\\xff\\xf7\\x78\\xbc\\x17\\x8e\\xbd\\x5b\\xdd\\xc6\\x5e\\x0f\\x68\\xe7\\x27\\xc1\\xed\\x17\\x34\\x65\\xde\\x6d\\xdf\\xe9\\x36\\xfe\\x4a\\x3a\\x4f\\x81\\x9f\\xa2\\xe3\\xe7\\x1a\\xc3\\xe5\\xfe\\xf0\\x1d\\x17\\x4e\\x1b\\xff\\xf4\\xee\\xcf\\x5f\\xa9\\x97\\xe2\\xf3\\x57\\x92\\xce\\x8b\\xce\\xbc\\xaa\\xc1\\x1e\\x5f\\xb9\\x9e\\x23\\x6e\\x74\\xfc\\xa8\\x3c\\xb3\\x4c\\xbb\\xee\\xdf\\x96\\xf2\\xfe\\xa2\\xde\\xe9\\x7a\\x66\\xb1\\xf1\\xbd\\xee\\x7d\\xd2\\x39\\x99\\xff\\x9c\\x0b\\x63\\xab\\xe3\\x33\\x92\\x8a\\x18\\xb8\\x7e\\xed\\x38\\x24\\xf3\\xaf\\x73\\x3e\\xff\\x45\\xb6\\xfe\\xc9\\xfd\\xf9\\xaf\\x1f\\x5c\\x79\\x1b\\x1c\\xd7\\xc9\\x58\\xcc\\x3b\\xd6\\x8d\\x7f\\x85\\xfa\\x88\\x8b\\xbf\\x41\\xbc\\xa5\\x68\\xb8\\xad\\xc5\\x2a\\xcf\\x43\\xeb\\x5c\\x38\\x5b\\x1c\\x57\\xc8\\x83\\x88\\xf3\\x60\\xb7\\x18\\x7c\\xe7\\xc2\\xd9\\xf2\\xd7\\x9b\\x88\\x73\\xb3\\x0b\\x47\\x2a\\x13\\xe7\\x73\\xde\\x30\\x42\\x79\\xce\\xdb\\x55\\x36\\x81\\xae\\xe7\\xbd\\x3b\\x18\\x16\\x92\\xb3\\x8c\\x9c\\xcf\\x95\\x42\\x28\\x34\\x99\\x83\\x5c\\x25\\x15\\xe0\\x9c\\x9d\\x48\\x19\\xfc\\xdc\\xc7\\xaf\\xd7\\x5d\\xb6\\xbe\\xe9\\xf8\\x99\\x64\\xa2\\xad\\x99\\xdd\\x6c\\x7d\\xc2\\x65\\xeb\\x9b\\x67\\xbd\\x95\\x98\\x7b\\xbb\\x61\\x78\\x3e\\xe7\\xc2\\xd8\\xe6\\xb8\\x45\\x0e\\x20\\xc6\\x01\\x77\\x0c\\xb9\\x7d\\x2a\\x18\\xdb\\x3e\\x29\\x57\\x30\\xca\\xdd\\x31\\x62\\x5d\\x18\\x2f\\x3b\\x2e\\xde\\x35\\xf6\\x19\\xf2\\x7d\\xf9\\x0a\\xc6\\xcb\\x7f\\xbe\\x57\\xec\\xb5\\x2e\\x1c\\xd1\\xf1\\x76\\xcf\\xf2\\x47\\x9c\\x4b\\xae\\xf2\\x17\\x77\\xba\\xc7\\x3b\\xd5\\x15\\x6f\\x79\\x3e\\xd0\\x23\\xde\\x3b\\xee\\x16\\x6f\\xe7\\xfc\\x00\\x42\\xa5\\xf9\\x41\\xf7\\x78\\x3f\\xda\\x3d\\xde\\x1b\\xec\\xcd\\xf2\\xf5\\xb7\\x73\\x2c\\x6f\\xe7\\x9f\\x81\\xdb\\x6a\\x97\\xd2\\x96\\xed\\x1b\\xe5\\xeb\\x59\\x79\\x2c\\x07\\x49\\xe7\\x43\\xb7\\x79\\xc0\\x71\\x57\\xde\\x36\\xfe\\xe5\\xdd\\x9f\\x8f\\x92\\xd7\\x7c\\xd2\\x51\\xe7\\x15\\x70\\x7b\\x42\\xca\\x0d\\x67\\xba\\x0b\\xa7\\x15\\x36\\x93\\x3c\\xc4\\xc9\\xeb\\x86\\xa3\\x75\\xcd\\x27\\x5a\\x2b\\x87\\x28\\x28\\x43\\x5c\\x6b\\x47\\xaa\\x10\\x8f\\x0b\\x4e\\x0c\\xd2\\xe8\\xb8\\xa9\\x60\\xd0\\xee\\x18\\xb7\\xd4\\xad\\x4e\\x0c\\xd2\\xf8\\xc1\\x10\\xa5\\xcc\\x15\\x0c\\xc7\\x3f\\x64\\x3b\\xde\\x75\\x61\\x6c\\x75\\x7c\\x4d\\x12\\x11\\x23\\x11\\xdb\\x6a\\xa7\\x6c\\xc7\\x3a\\x8c\\x85\\x9a\\x6c\\x3d\\xd6\\xf5\\x2c\\xce\\xab\\x1e\\xdf\\xba\\xf2\\x36\\x38\\x7e\\x27\\x71\\x98\\x37\\xce\\x8d\\x7f\\xad\\x5a\\x70\\xf1\\x37\\x9c\\xbb\\x8d\\xf5\\xe5\\xb6\\xab\\xbe\\xc8\\xb1\\x90\\xeb\\xcb\\x08\\x6c\\xab\\x3f\\x92\\x18\\xc4\\x89\\xe9\\x16\\x8b\\x6b\\x2e\\x9c\\x2d\\xa7\\x7e\\x47\\x9c\\xdf\\xbb\\x70\\xa4\\x72\\x75\\xbe\\x77\\x40\\x6e\\xab\\x6b\\x48\\xae\\xab\\x7c\\x03\\x5d\\xcf\\xb2\\x48\\x21\\xf4\\x76\\xe2\\x4a\\xe5\\xec\\x7c\\xf6\\x59\\x6a\\xab\\xa5\\x83\\x09\\x96\\x76\\xb7\\x7b\\x83\\x94\\xf5\\xa6\\x77\\x5c\\xeb\\x4d\\x6d\\xfc\\x4f\\x77\\x7f\\x1e\\x45\\x5d\\xe1\\x7a\\xae\\xa5\\x8d\\xdf\\x74\\x74\\x7b\\x22\\x45\\xc2\\xb1\\x37\\xcb\\xf3\\x5f\\x27\\x4e\\x3b\\x3f\\x72\\x47\\xdd\\xfb\\xc4\\xde\\x2c\\x5f\\xcf\\x87\\x4a\\x57\\x6c\\xb2\\xce\\xbf\\x65\\x1d\\xea\\xa6\\x93\\x6d\\x5f\\x21\\xaf\\xf7\\x38\\xe7\\x38\\xed\\xfc\\x4d\\xc7\\x2f\\x78\\xdf\\xd4\\x2f\\xce\\x39\\x8e\\x7d\\x99\\xbc\\xc6\\xe2\\xbc\\x8f\\xbb\\x9d\\xbf\\xee\\xb8\\x8e\\x3a\\xce\\x7b\\x37\\x95\\xb9\\xd2\\x67\\x2e\\x9c\\x36\\xfe\\xf6\\xdd\\xef\\x47\\x97\\xc7\\x8a\\x47\\x70\\xac\\xf8\\x9b\\x73\\xcd\\x49\\xe5\\xed\\xf1\\xab\\xeb\\x5a\\xaf\\xd1\\xf1\\x4f\\xe5\\xfd\\x03\\xb4\\xeb\\xfd\\x03\\xb3\\x1d\\xdf\\xa9\\x7a\\xc9\\x63\\xc5\\x23\\x4a\\xfd\\xbb\\xdc\\x7d\\xac\\x38\\x21\\xf3\\x7f\\xeb\\xc2\\xd8\\xea\\x38\\x2d\\xdf\\x7f\\x27\\x61\\xe0\\xfd\\x77\\x8e\\xb7\\x64\\xfe\\x75\\xce\\xfb\\xe1\\xc9\\xd6\\xf7\\xbb\\xee\\x87\\x6f\\xf6\\x54\\xb9\\xf2\\x36\\x38\\x2e\\x92\\x1c\\xcc\\x9b\\xe3\\x66\\xfb\\x2e\\x79\\xac\\x50\\xf8\\x1b\\xbe\\xbe\\xb3\\xbf\\x92\\x63\\xe0\\x99\\xea\\xc2\\xd9\\xe2\\xf8\\x58\\x5e\\x5f\\x95\\x70\\xb2\\xbb\\xc5\\xe0\\x3b\\x17\\xce\\x96\\x7f\\xdc\\x39\\x56\\xc8\\x65\\xe2\\x7c\\x67\\x83\\x5c\\xff\\x6a\\x89\\xcd\\x55\\x36\\xbd\\x5d\\xef\\x6e\\xe8\\x60\\x5d\\xdf\\xa7\\x94\\xcb\\xc8\\xf9\\x5c\\xb9\\x54\\xff\\x16\\x04\\xb9\\x4a\\x2a\\xd0\\x6d\\xac\\xc0\\x12\\x93\\x79\\x1e\\x75\\x5c\\xe3\\x17\\x3d\\x46\\xd0\\x50\\xd8\\x8c\\xd7\\xf1\\x4f\\x11\\x33\\x96\\x99\\x19\\xed\\x9d\\xe5\\xf8\\x8e\\xef\\x95\\xaf\\xf5\\xb7\\x28\\xeb\\x24\\xd6\\xee\\xcf\\xb3\\x2b\\x18\\x61\\x2e\\x0c\\xbd\\xc3\\x22\\x3f\\x5f\\x49\\xdd\\x9e\\xaf\\x54\\x30\\x2e\\x22\\x86\\xa4\\x93\\x77\\xc7\\x73\\xf3\\x0a\\xce\\xfb\\x2e\\x9c\\x36\\xfe\\x01\\x99\\x88\\x38\\x13\\xdd\\x71\\xe4\\xfa\\xb3\\x05\\xeb\\xcf\\x1b\\x6e\\x79\\x2b\\x5c\\x79\\x5b\\x61\\x19\\x29\\xc5\\xbc\\xa5\\xdd\\xf2\\x0e\\x73\\xf9\\xd1\\x3a\\xb7\\xfb\\x3d\\x7b\\x8f\\xda\\x37\\xf2\\x8b\\xf2\\xf3\\x3c\\x9b\\xb1\\x9f\\x3e\\x2a\\x63\\xcf\\xb2\\xaf\\xe0\\x7b\\xf9\\x36\\x97\\xed\\xed\\xfc\\xd5\\x3b\\xda\\xc7\\x62\\xfb\\x2a\\x9e\\x25\\xb7\\xc5\\xd1\\xa8\\xf3\\x67\\xc7\\x6f\\xd8\\x5e\\x7f\\x13\\x9c\\xcf\\xde\\x6c\\xe4\\x19\\xf2\\x5c\\x6d\\x2a\\xe2\\x3f\\x8a\\xbf\\x65\\x5c\\xe3\\x59\\x1e\\x27\\x5d\\x79\\xdb\\xf8\\x99\\xbb\\xdf\\xa3\\xad\\x7e\\xdc\\x75\\x3f\\x73\\x1b\\x17\\x1d\\xdd\\x66\\xde\\x0e\\x07\\x2c\\x75\\x5c\\x53\\x29\\x6b\\x5e\\x0d\\x58\\x96\\x4b\\xef\\x58\\xb7\\x99\\xeb\\xf8\\x4e\\x35\\x4b\\x5e\\xf3\\xda\\x8a\\xbf\\x19\\x76\\x5f\\xf3\\x52\\x30\\x86\\xb9\\x30\\xf4\\x8e\\xc7\\xee\\x58\\xaf\\x52\\x30\\xfe\\x86\\x18\\x92\\x4e\\xc1\\x1d\\xeb\\x6f\\x0a\\xce\\x3b\\x2e\\x9c\\x36\\xfe\\xc9\\x1d\\x7d\\x9c\\x8c\\x23\\xfb\\xb4\\x15\\x75\\xde\\xba\\x87\\x4f\\x25\\x2e\\x9c\\x56\\x58\\x79\\xc7\\x33\\x80\\x0a\\x8e\\x9f\\xcb\\xa7\\xd6\\x85\\x6e\\x77\\xc1\\x4b\\x18\\xf6\\x15\\xaa\\x3f\\xc9\\xcf\\xe4\\x35\\x60\\xd9\\xbc\\xef\\xe8\\xf6\\x8b\\x92\\x84\\x61\\xdf\\xa8\\x9a\\xc5\\x1b\\x15\\x0c\\xb9\\x6c\\x94\\xf5\\xd5\\x60\\xfb\\x9f\\xe5\\x75\\x0d\\xe7\\xfa\\x5d\\x3b\\x3f\\x0d\\x23\\x14\\xf4\\x11\\x82\\xeb\\x1d\\x06\\xc3\\xe4\\x35\\x5a\\xe7\\x75\\x48\\xbb\\xea\\x6b\\xc7\\x6a\\xc4\\x5f\\xdd\\xed\\x77\\xb5\\x77\\x5c\\x38\\x6d\\xfc\\xdc\\x1d\\xf1\\x90\\xaf\\x67\\xe4\\x78\\x4c\\x47\\x9d\\xaf\\xef\\x88\\x87\\x82\\x53\\xe2\\xc2\\x69\\x85\\xe7\\xef\\x88\\x87\\x82\\xe3\\xe7\\xc2\\x69\\x85\\xc6\\xee\\xcf\\x05\\x00\\x95\\xc7\\xc0\\x2f\\xd5\\x00\\x43\\x60\\x14\\x3c\\x91\\xd2\\xab\\x1f\\xf1\\x62\\x23\\x42\\xa9\\xa7\\x17\\x27\\xc4\\x93\\x4d\\xcc\\x10\\xee\\xcb\\xce\\x4f\\x09\\xf1\\x90\\xbf\\xba\\xce\\x54\\xf2\\xdb\\xb5\\xc6\\x65\\x80\\x97\\x97\\xbc\\x56\\x9e\\x9e\\x01\\x9e\\x9e\\x64\\x3a\\x7e\\x03\\x22\\x28\\xe5\\x81\\x7b\\xeb\\x11\\x32\\x56\\x52\\x76\\xfe\\x2a\\x5f\\x90\\xe2\\x1f\\x2e\\xbf\\xa4\\xa9\\xcf\\x03\\x5a\\xe5\\xa1\\x40\\xa2\\x0d\\xd4\\x3a\\x6f\\x28\\x8f\\xc7\\xef\\x89\\xc6\\xe3\\x9b\\xae\\x88\\xf3\\xf6\\x72\\xe5\\x5d\\x7d\\xfd\\xf8\\x97\\xfb\\x7f\\xf7\\x8f\\xad\\x9f\\x5e\\xbc\\xbd\\x72\\x4c\\x52\\xd5\\x76\\x4b\\xde\\xd3\\x31\\x3f\\xfd\\x44\\x06\\xec\\xbf\\xb5\\x67\\x40\\x5c\\xce\\x83\\xe3\\x67\\x0d\\x1e\\x3c\\x33\\xfd\\xc1\\xc9\\x71\\x03\\xf9\\xc9\\xdf\\x93\\x1f\\x7f\\x28\\x6d\\xf2\\xfa\\x77\\xe7\\xf6\\x7b\\xe2\\xbd\\xf5\\xd9\\x63\\x13\\xbf\\x3b\\xba\\x7c\\xf9\\xad\\x06\\x63\\xdd\\xd4\\x98\\x71\\x09\\xe4\\xe5\\xd1\\x63\\x63\\x0b\\xe6\\x19\\x01\\xe7\\x66\\xc7\\xe5\\x38\\x28\\xcf\\xae\\x8f\\x20\\xa7\\x09\\xd0\\x64\\xa2\\x86\\xd4\\x98\\x2d\\x4a\\x2f\\x4b\\x93\\x9d\\x9d\\xe6\\x16\\x67\\x79\\x6f\\xb1\\x6f\\x57\\x05\\xc8\\xf7\\x41\\x5d\\x50\\xd6\\xc3\\x28\\xdc\\xf1\\x9e\\x91\\xa5\\xf6\\x26\\x55\\x9a\\x5c\\x27\\xfe\\x25\\x5f\\x97\\x9d\\xa1\\xca\\x6f\\x21\\x4f\\xd8\\x9b\\xf8\\x2f\\x72\\x7d\\x0a\\x53\\x8e\\x93\\x6f\\x95\\xb5\\x45\\xe9\\xb8\\xac\\xff\\x43\\xb7\\xe3\\x41\\xf6\\xa6\\xae\\xe7\\x54\\xa4\\xe3\\xb0\\x4c\\xe9\\xef\\xec\\x4d\\xbc\\x53\\xd6\\xbf\\x8e\\xc7\\x95\\xeb\\xc6\\xa1\\xf6\\x26\\x7e\\xc3\\xed\\x3a\\xf3\\x0c\\xf9\\x06\\xaf\\x33\\x9b\\xf8\\x1e\\xb7\\xeb\\xcc\\x33\\x64\\x93\\x72\\x7d\\x6c\\x6f\\x52\\xdd\\x27\\xeb\\x7f\\x8e\\x76\\xca\\xeb\\xcb\\xb0\\xc8\\xde\\xa4\\x1a\\x22\\xeb\\xff\\x8c\\xc7\\xfd\\x9c\\xfa\\x7c\\x96\\xbb\\x3e\\xac\\x74\\xea\\x73\\xb3\\xbb\\x3e\\xac\\x51\\x7e\\xaf\\xb2\\x37\\xc9\\xbf\\x57\\xc9\\xbf\\x37\\x4a\\xc7\\x1d\\xca\\x6f\\x34\\x6b\\xec\\x4d\\x3c\\x46\\xd6\\xbf\\x82\\xc7\\x83\\x94\\x75\\x41\\x7b\\x93\\x6a\\x9c\\xac\\xff\\x09\\xf2\\x46\\xe2\\x75\\x6e\\x93\\x2a\\x41\\xd6\\xbf\\x8a\\xc7\\x43\\x65\\xfd\\x8f\\xec\\x01\\x7c\\xa5\\xea\\xaf\\x34\\x94\\x8c\\x55\\xca\\x02\\x0a\\x1d\\xb5\\xd8\\x37\\xd7\\x62\\x7b\\xe8\\x67\\xef\\xc3\\xd7\\x49\\x73\\x17\\x32\\x0e\\x75\\xca\\x1c\\xf3\\x50\\x67\\x9e\\xdb\\xef\\xa2\\x53\\xe4\\xeb\\xed\\x89\\x72\\xfb\\xe8\\x07\\xc0\\x9f\\xe4\\x63\\xa0\\xbf\\xf2\\x9e\\x39\\x75\\xd7\\x17\\xe2\\x89\\x17\\x51\\xde\\x97\\xa1\\x52\\x0d\\xcc\\x00\\x0f\\x0f\\xf9\\x9b\\xf8\\x03\\x68\\xe6\\x80\\x01\\x03\\xb4\\x03\\x86\\x0d\\x0b\\x0c\\x0c\\x0c\\x1c\\x19\\x1c\\xe0\\xad\\x1e\\x1c\\x4e\\x82\\xfb\\xb9\\x5e\\xbc\\xea\\x7c\\x7d\\x5b\\x30\\x09\\x0c\\x76\\xbe\\x82\\x95\\xbe\\x6b\\xff\\x84\\x04\\x56\\x1e\\xac\\x1b\\x37\\xae\\xee\\x60\\xe5\\xed\\xbf\\xd7\\xd5\\x91\\xfe\\xe4\\x01\\xe9\\x58\\xb4\\x49\\xd7\\xb7\\xaf\\xce\\x14\\xcd\\xb4\\x79\\xf1\\xb3\\x96\\x66\\x3f\\xfc\\xec\\xac\\x04\\xa6\\x3d\\x5a\\x5c\\x6c\\x1f\\x68\\xff\\x77\\xff\\x90\\xa8\\xa0\\xc1\\xb1\\xa1\\xfd\\x95\\x6f\\x1b\\x7e\\x08\\xc0\\x1f\\x55\\x09\\x7f\\x6c\\x67\\xff\\xff\\x62\\xa7\\xb6\\x5f\\x6c\\x4f\\x3b\\x63\\xf1\\x0b\\x70\\xb2\\x9d\\xcf\\x5f\\xdd\\xbd\\xf8\\xdd\\x15\\x13\\x27\\xae\\x78\\x77\\xb1\\x5d\\x2f\\x08\\x64\\xd0\\xd5\\xab\\xbb\\xf5\\xe6\\xd4\\xfb\\xef\\x4f\\x35\\xeb\\xb9\\xfe\\x60\\xea\\xdc\\xb6\\xd2\\xb2\\x03\\x0b\\x8d\\x5c\\x7f\\xf4\\xb5\\xd7\\x6e\\x1f\\xb7\\x47\\x86\\xea\\xf3\\xa3\\x47\\xe5\\x8c\\xd5\\xfe\\x3f\\x6f\\x1f\\x71\\x7c\\xab\\xfc\\x9e\\x0a\\x7e\\x30\\x22\\x65\\xb8\\xda\\xf5\\x4e\\x3c\\x50\\xa9\\x78\\x01\\x70\\xde\\x5f\\xea\\xc2\\x06\\x38\\x5f\\x89\\x17\\xe0\\xa1\\x0e\\x72\\x7b\\x23\\x5e\\xbf\\xe0\\xc0\\x58\\xba\\xed\\x67\\xfb\\xb7\\x7b\\xf7\\xb2\\xc3\\xb7\\x1f\\xfb\\x99\\x6e\\xb9\\x5d\\x4e\\xb7\\x1c\\xa5\\x96\\xcb\\xf6\\xa7\\x00\\x88\\xec\\x7b\\x0c\\x1f\\x73\\x2f\\xec\\x81\\x7f\\x8c\\xdd\\x2f\\x96\\x3e\\xff\\x95\\xfd\\xbb\\x63\\xc7\\xd8\\xae\\xdb\\xb6\\xaf\\xc8\\x3b\\xf6\\x24\\xf2\\xce\\x51\\xf2\\x97\\x4b\\x52\\xbb\\x23\\x8e\\x7f\\x01\\xf0\\xcf\\x54\\x02\\xf4\\x85\\x84\\x94\\xd8\\xde\\x04\\x3c\\xc8\\x44\\x15\\x61\\x6a\\x42\\x3d\\x18\\x35\\x83\\x87\\xdc\\xef\\x9b\\x3d\\x89\\xe4\\x81\\x97\\xf2\\xa6\\xd9\\xbe\\x7d\\x02\\x9d\\x2f\\xf6\\xf3\\x56\\x0f\\x71\\x51\\xc5\\xcb\\xaf\\xc9\\x73\\xbe\\x76\\x36\\xa9\\xce\\xfe\\xed\\xf1\\xe3\\xe4\\xbe\\xcf\\x3f\\xef\\xf1\\xea\\x59\\xfe\\xf8\\xd1\\x15\\x2b\\x8e\\xda\\x8f\\xbb\\x5e\\x3f\\x0b\\xc4\\xf1\\x39\\x00\\x3f\\xa1\\x06\\xe8\\x2b\\x95\\x6c\\x6f\\x7f\\xc2\\x40\\x4d\\x26\\x72\\x42\\x55\\x84\\xa8\\x29\\x31\\x03\\x63\\x50\\xe0\\x41\\x00\\x06\\x64\\x80\\x5a\\x3d\\x30\\x43\\x4e\\xca\\xdf\\x61\\x93\\xfe\\xf5\\xf6\\x94\\x4a\\xd6\\xa3\\x9b\\x11\\xf8\\x4d\\xb6\\xc4\\xc5\\xf6\\xab\\xef\\xbc\\x43\\xfa\\x7f\\xf2\\x49\\x2e\\x09\\x27\\x59\\xf6\\x32\\xf2\\x81\\xfd\\x00\\xf9\\x4b\\x9d\\xfd\\x65\\xfe\\xca\\xd1\\x8d\\x1b\\x8f\\xde\\xbe\\x50\\x48\\xc6\\xdb\\xc7\\xde\\x7e\\xc1\\xe1\\x00\\xab\\x7d\\xba\\x4a\\xe3\\xfc\\xbd\\x5b\\xba\\xc6\\x77\\x7c\\x4c\\x5e\\x20\\x1e\\xe0\\x4f\\x0b\\x1c\\x3f\\x42\\x6f\\xd7\\xef\\xde\\x72\\x63\\xff\\x51\\x99\\x0f\\x2c\\xb0\\x4f\\x57\\x0d\\x75\\xfe\\x9e\\x2c\\x5d\\xe3\\x7f\\x9a\\x2b\\xe7\\x98\\xea\\xf8\\x51\\xbe\\xb2\\x13\\x72\\xdd\\x33\\x00\\xf6\\xdb\\xd3\\x55\\x43\\x9c\\xfd\\xb6\\xac\\x3d\\xc5\\xf1\\x23\\x8e\\xcd\\x3f\\x3a\\xd7\\x92\\x25\\x1d\\x67\\x1f\\x7e\\x0f\\x9d\\xa7\\xec\\xd3\\x55\\x13\\x64\\x9c\\x51\\xa8\\xf3\\xcc\\x1d\\x3a\\x8f\\xdb\\xa7\\xab\\x92\\x64\\x9c\\x7f\\xa3\\x8e\\xed\\x0e\\x9d\\x11\\xf6\\xe9\\xaa\\x51\\xce\\xf5\\x40\\x59\\xa7\\xec\\x0e\\x9d\\x61\\x2e\\x7b\\xbe\\xbf\\xbb\\x3d\\xf8\\xfd\\xa8\\x53\\x2a\\x01\\x02\\x20\\x22\\x25\\xcc\\x97\\x30\\x4e\\x95\\xfb\\xea\\x9c\\xb5\\xb5\\x48\\x45\\xdc\\x5a\\x41\\xef\\xc0\\xc0\\xe0\\xde\\x58\\x53\\x3d\\x58\\x30\\x1b\\xa1\\x8d\\x57\\x2a\\x0e\\x89\\x65\\x6f\\xff\\xc5\\x8b\\xd8\\xaf\\x10\\x7e\\x66\\xbe\\x7d\\x0b\\x89\\x23\\xf7\\x93\\xfb\\x49\\xbc\\x7d\\x53\\x39\\xf5\\xe9\\x63\\xf7\\xa4\\xdc\\xe3\\x28\\xfd\\xf1\\xb6\\x99\\xee\\xb8\\xdd\\x4b\\x79\\x67\\x30\\xfe\\x3e\\x04\\x01\\x10\\x9e\\x32\\xd2\\x47\\xfe\\x06\\xa8\\xc4\\x34\\x30\\x43\\x4d\\x18\\x83\\x69\\x54\\xa9\\x36\\x84\\x0c\\x22\\x99\\x81\\x7d\\x5d\\xed\\x23\\x04\\x2b\\x2d\\x09\\x56\\xbe\\x8e\\x15\\xcb\\xce\\x7e\\x62\\xbf\\xfa\\xce\\x33\\xf6\\x7a\\xa2\\x25\\xf7\\xf9\\x07\\x92\\x40\\x32\\xcc\\xfe\\xc2\\x3a\\x0f\\x7b\\x3e\\x69\\x3b\\xca\\x9e\\xba\\xf5\\x7b\\x6a\\x1a\\x83\\x5b\\x4f\\x03\\x71\\xde\\x73\\x00\\x81\\x30\\x2a\\x45\\xe7\\x47\\xb8\\x4a\\xf9\\x36\\x94\\x87\\xb3\\x3f\\x2a\\x52\\x13\\xa9\\x1f\\xa2\\xc4\\xe5\\x68\\x60\\xef\\xc0\\x00\\xb9\\x8e\\x6a\\x15\\x0f\\x65\\xda\\x3e\\x32\\xe9\\xb9\\x67\\xc9\\x7c\\xfb\\x2b\\xf6\\x9f\\xed\\x37\\xec\\x47\\xc9\\xbc\\x79\\x73\\xec\\x3b\\xc9\\x78\\x07\\x61\\x64\\xa2\\xbd\\xa5\\x8e\\xae\\xbd\\x5d\\x4d\\x7b\\xdf\\xfe\\x9e\\xae\\x3d\\x4a\\x2b\\x6e\\xdf\\xa0\\xde\\xb7\\x37\\xca\\xf7\\xd4\\x28\\xbf\\xdb\\xff\\x31\\xff\\xc0\\x7b\\xf1\\x33\\xe6\\xe4\\xef\\x23\\xf1\\x9f\\x99\\x43\\xc6\\xd9\\xcf\\xff\\xf6\\x8b\\xfd\\x43\\x32\\x76\\xd1\\x3c\\xfb\\xc7\\x24\\xfc\\xea\\xf7\\x24\\xdc\\xfe\\x51\\x09\\xf9\\xc0\\x3e\\x8a\\x14\\xd9\\x9b\\xc9\\x07\\x47\\xc9\\x4b\\xf6\\xc3\\x24\\xc7\\x9e\\xe1\\xbc\\x1f\\x8b\\x3f\\x4c\\xd5\\x70\\x4c\\xae\\xcb\\x00\\xc0\\x2b\\xe5\\xba\\x33\\x12\\x94\\xe7\\xa4\\x3e\\xb4\\xe3\\x73\\x6a\\x76\\xe7\\x73\\x6a\\x89\\xb4\\x80\\x6f\\x61\\xc9\\x90\\x4e\\x96\\x3b\\xe6\\x01\\x4c\\x8e\\x4d\\x51\\xbe\\x45\\x70\\xdc\\xf1\\x23\\xa3\\x2a\\x41\\xfe\\xa6\\x82\\xfc\\x35\\x47\\xe5\\x9b\\x5a\\xc9\\x19\\x40\\xa9\\xf3\\xe3\\x71\\x23\\x43\\xf0\\x7b\\x6b\\x5a\\x86\\x6f\\x75\\xe8\\x7a\\x95\\x3d\\xfd\\xe7\\xed\\x00\\x32\\xc4\\xfe\\x7e\\xff\\xb0\\xe4\\xd0\\x90\\xe4\\xb0\\x01\\x03\\xc2\\x92\\x43\\x42\\x93\\xc3\\xfa\\x93\\xdb\\xec\\xc5\\x9b\\x9f\\x06\\x27\\x4a\\x47\\x12\\x83\\x35\\x89\\x23\\x07\\x0c\\x18\\x99\\x08\\x44\\x1e\\x8b\\x53\\xe7\\x6c\\x4e\\xcd\\x9a\\xd5\\x2b\\xf9\\x67\\xf0\\xf1\\x94\\xdf\\x5e\\x7b\\xf2\\x87\\xc0\\x48\\x49\\x7e\\xf0\\xcc\\x8b\\xd3\\x7f\\x3b\\x7d\\xfb\\x23\\x8f\\xf7\\x3d\\x9f\\x03\\x02\\x5e\\x40\\xf1\\xf5\\xb6\\x04\\xc0\\xb3\\xe8\\xf6\\x47\\x00\\x5e\\x8d\\xbf\\x9d\\xbe\\xfd\\x8d\\xc7\\xfb\\x32\\x92\\xdb\\x3f\\x0e\\x5c\\xc4\\x94\\xe8\\xdc\\xc8\\x7d\\x5c\\x84\\x07\\xb8\\x08\\x4f\\x71\\x11\\xb4\\x5c\\x84\\x0c\\x2e\\x92\\x77\\xb9\\x48\\x0a\\xb8\\x48\\x92\\xb9\\x08\\x8d\\x5c\\x84\\x62\\x2e\\x92\\x32\\x2e\\x92\\x41\\x5c\\x24\\x7b\\xb9\\x08\\x9f\\x71\\x11\\x56\\x71\\x11\\x0e\\x71\\x11\\xd2\\xb8\\x08\\x85\\x5c\\x84\\x07\\xb9\\x08\\x75\\x5c\\x84\\x72\\x2e\\x82\\x89\\x8b\\x50\\xc9\\x45\\x30\\x73\\x91\\x1c\\x55\\x36\\x68\\xe2\\x22\\x34\\x73\\x11\\x76\\x72\\x11\\x5a\\xb8\\x08\\x21\\x5c\\x84\\xc1\\x5c\\x84\\xa7\\xb9\\x08\\x93\\xb8\\x08\\x4f\\x72\\x11\\x36\\x70\\x11\\x36\\x71\\x11\\xa6\\x72\\x11\\x9e\\xe0\\x22\\xbc\\xc1\\x45\\xb0\\xa2\\xce\\x66\\xb4\\x51\\x3a\\x9e\\x8d\\x7a\\x79\\x5c\\x84\\x67\\xb9\\x08\\x05\\x5c\\x84\\x20\\x2e\\xc2\\x62\\x2e\\xc2\\xfd\\x5c\\x84\\x41\\x5c\\x84\\xa1\\x5c\\x84\\x60\\xe5\\x1c\\x59\\xcb\\x45\\xf8\\x01\\xe5\\x47\\x5c\\x84\\x8d\\x5c\\x24\\xdb\\xb8\\x08\\x35\\xc8\\x29\\xd9\\x5d\\x8d\\x9b\\x84\\xf1\\x38\\xfa\\xf7\\x09\\x17\\xe1\\x9f\\x5c\\x04\\x29\\xdf\\x3b\\x4a\\x6c\\xe4\\xe3\\xb3\\xb9\\x08\\xeb\\x14\\x3d\\x22\\xf1\\x2d\\xc4\\x7c\\x92\\x8d\\xe3\\xd1\\x16\\xc9\\xa6\\x38\\x2e\\xc2\\x5c\\x2e\\x92\\x78\\x2e\\xd2\\x7e\\x5c\\x24\\x99\\x8a\\x6d\\xe4\\x12\\x17\\x61\\x35\\xf2\\x4f\\xe6\\x22\\x48\\xe7\\xae\\x70\\x11\\xa6\\x70\\x91\\x78\\xa1\\xcd\\x81\\x5c\\x84\\x3f\\x73\\x11\\x5e\\xe5\\x22\\xe4\\x2b\\xfb\\xc4\\xa2\\xd8\\x4b\\xc2\\xb8\\x48\\x42\\xb8\\x48\\x24\\xce\\x83\\x5c\\x84\\x4f\\xb9\\x48\\xbe\\xe7\\x22\\x79\\x99\\x8b\\xa4\\x9e\\x8b\\xc4\\x9b\\x8b\\xf0\\x15\\x17\\x21\\x95\\x8b\\x30\\x10\\xe3\\x70\\x9a\\x8b\\x10\\xc5\\x45\\xd8\\x8e\\x72\\x39\\x17\\xa1\\x95\\x8b\\x10\\xc9\\x45\\x08\\xe5\\x22\\x54\\xb8\\xf9\\x35\\x00\\xfd\\x5d\\x8c\\x3e\\xef\\xe0\\x22\\xc4\\x76\\xc5\\x4e\\x8e\\x7d\\xba\\x92\\x8f\\x34\\xe1\\xb1\\x47\\xb9\\x08\\xb3\\xb8\\x08\\x4b\\x15\\x9f\\xe1\\x12\\x96\\xb9\\x54\\x76\\xbf\\xa1\\xbd\\x92\\x9d\\x92\\xfd\\x52\\x59\\x2f\\xe1\\x22\\x9c\\xe3\\x22\\x79\\x95\\x8b\\xb7\\x1a\\xb8\\x78\\xbb\\x9a\\x8b\\xb7\\xac\\x5c\\xbc\\x1d\\xca\\xc5\\xdf\\x7f\\xe1\\xe2\\x6d\\x3f\\x2e\\x52\\x13\\x17\\x09\\xe3\\x22\\x8d\\xc0\\xb8\\x4b\\xf5\\x73\\x3a\\xda\\xb7\\x00\\x37\\x2b\\xfa\\x69\\x52\\xe2\\x07\\x73\\xb0\\x9e\\x8d\\x44\\x9b\\x9e\\xc3\\xfa\\x22\\xd9\\x21\\x70\\x11\\x5e\\xe4\\x22\\x68\\x30\\x5d\\x82\\xf6\\x4e\\xc1\\x3a\\x98\\x8a\\x3e\\x3f\\x8c\\x78\\x91\\xe8\\x9b\\x9e\\x8b\\x0e\\x07\\xd6\\xad\\x59\\x18\\x2f\\xc9\\x8e\\x11\\x58\\xcf\\xa5\\x3a\\x18\\xc1\\x45\\xc7\\xaf\\x5c\\x84\\x2c\\xb4\\x49\\x3a\\x47\\xf1\\xbc\\x14\\xf3\\x47\\x70\\x93\\xe2\\x38\\x11\\xf3\\x48\\x76\\xe4\\x72\\xd1\\xf1\\x77\\xac\\x0b\\xf5\\x5c\\x84\\x35\\x58\\x5e\\xc3\\xb8\\x08\\x36\\xf4\\x71\\x29\\xee\\x3f\\xee\\xe6\\xb7\\xe4\\xdb\\x68\\x4c\\x2f\\xc2\\x7a\\x24\\xf9\\x90\\xa8\\xb4\\x57\\x19\\x4b\\xb2\\x23\\x41\\xf1\\xc7\\x71\\x86\\x8b\\xf0\\x98\\x52\\xd7\\x24\\xdb\\x1d\\xbf\\x61\\xde\\x74\\xf4\\x55\\x8b\\x79\\x25\\xdf\\xfd\\x50\\xe6\\xe0\\x16\\x89\\xb1\\x91\\xb0\\x92\\xb1\\x8e\\xbc\\x84\\xbe\\x9a\\xb9\\x08\\xbe\\x78\\xce\\x84\\x75\\x5e\\x8a\\x77\\x19\\x17\\x61\\x14\\xfa\\xea\\x8c\\xa7\\x54\\xee\\x1d\\x92\\x1d\\x00\\xb7\\x47\\x00\\xdc\\xfa\\x1d\\xe0\\xf6\\x0d\\x80\\xdb\\xe7\\x01\\x6e\\x3e\\x05\\xf0\\xdb\\x69\\xac\\x5b\\x12\\x7e\\x03\\xa6\\x57\\xa1\\x5c\\x86\\x65\\xd9\\x0b\\xdb\\xd7\\x43\\x58\\x6e\\x31\\x4a\\x0c\\xa5\\x36\\x02\\x06\\x2e\\x02\\xc1\\xf8\\x49\\x31\\xab\\xe5\\x22\\xcc\\xe3\\xa2\\xe3\\x23\\xf4\\x7b\\x37\\xe2\\xae\\xc2\\x38\\x67\\x61\\xec\\x6c\\x58\\x5f\\x26\\xa0\\xad\\x33\\xb0\\x7c\\x1f\\xc2\\xfa\\xdf\\xc6\\x45\\x38\\x81\\xdc\\x23\\xb1\\x8d\\x1b\\x31\\xce\\x4b\\x31\\xad\\xc7\\x0d\\xfe\\x0f\\xb7\\x64\\x8c\\x7b\\x33\\x17\\xc9\\x77\\x5c\\x24\\x52\\x9b\\x38\\xcb\\x45\\xf2\\x57\\x2e\\x92\\x34\\x2e\\x12\\x1d\\x17\\x49\\x2a\\xd6\\xeb\\x25\\x5c\\x24\\x52\\x7d\\xfc\\x37\\x17\\xc1\\x82\\x7d\\xf5\\x72\\x2e\\x92\\xa7\\xb9\\x48\\x06\\x72\\x91\\xf8\\x71\\x91\\x84\\x63\\xb9\\x3f\\x81\\xe5\\x1b\\x8f\\xfd\\xed\\x3c\\xac\\x63\\x1b\\xb1\\xcc\\x06\\x63\\x1c\\xd3\\x51\\xbf\\x09\\xfb\\xe4\\x4d\\x28\\x25\\x9b\\xae\\x60\\x3f\\x25\\xc5\\xac\\x9d\\x8b\\x70\\x80\\x8b\\xf0\\x0c\\x17\\x49\\x5f\\xb4\\x7d\\x2a\\xc6\\xe4\\x15\\x2e\\x92\\x07\\xb8\\x48\\x34\\x5c\\x24\\x01\\x5c\\x74\\xdc\\x50\\x24\\x89\\x56\\xda\\x3c\\xf4\\xc7\\x7e\\x3f\\x17\\xdb\\x42\\x0b\\xc6\\x74\\x26\\xe2\\x9f\\xc6\\x63\\x8d\\xa8\\x37\\x1f\\xfb\\x9c\\x32\\xb4\\x75\\x03\\xb6\\x17\\x67\\xfe\\x08\\x2c\\xe3\\x14\\x2e\\xc2\\x18\\x2e\\xc2\\x56\\x1c\\xab\\xbe\\xe7\\x22\\x6c\\x41\\x9d\\xad\\x58\\xde\\x1d\\xd8\\xcf\\xfd\\x89\\x8b\\xf0\\x1a\\x17\\x49\\x02\\x17\\x49\\x09\\xc6\\x55\\xea\\x47\\x87\\x63\\x3a\\x9c\\x8b\\x64\\x04\\x9e\\x4f\\xe2\\x22\\x89\\xe0\\x22\\x79\\x83\\x8b\\xe4\\x27\\x2e\\x92\\x19\\x5c\\x24\\x37\\xb9\\x48\\xaa\\xb8\\x48\\xf4\\x58\\x6f\\xda\\x95\\xf1\\x41\\xee\\xff\\x0e\\xa1\\x2d\\x92\\xed\\xe1\\x58\\xa7\\x24\\x3b\\xf6\\xe0\\xb9\\xd7\\x71\\x8c\\xc8\\x42\\x9f\\x36\\x28\\xfd\\xa1\\x3c\\xfe\\x0e\\xe2\\xdf\\x39\\xbe\\x56\\x36\\xf0\\x71\\x1b\\xc7\\x06\\xff\\xc1\\x36\\x09\\x63\\xe2\\xbe\\xbd\\xd1\\x63\\x73\\x8e\\x93\\x3d\\xb7\\xc5\\x3d\\xb6\\x60\\xac\\x17\\xf7\\xda\\xdc\\xc7\\x46\\xe7\\xf6\\x4e\\x8f\\xcd\\x39\\x26\\xf6\\xdc\\x36\\xf7\\xd8\\xe2\\x70\\x1b\\x8c\\xd8\\x3d\\xe5\\x24\\xe4\\xbb\\x97\\x7c\\x52\\x55\\x2c\\xf3\\x6f\\x40\\x3b\\xfe\\x9b\\x9c\\x8a\\x7d\\xe6\\xbd\\xe4\\x13\\x68\\xfb\\x1b\\xe8\\xc7\\xdd\\xe4\\x27\\x6e\\xf3\\x90\\x4b\\x38\\x8e\\xac\\x45\\x7f\\xde\\x71\\x97\\xaa\\x62\\x94\\xfb\\x65\\xe9\\xc4\\xee\\x21\\x1d\\xa5\\x58\\x0e\\xb3\\xef\\x22\\x9f\\xc5\\xf9\\x84\\x24\\x7d\\xb0\\xce\\xbf\\x85\\x73\\x89\\x85\\xff\\x0b\\xe9\\xac\\x3b\\x41\\xd8\\x56\\x94\\xf4\\xcf\\xae\\xb2\\xde\\xfc\\x7f\\x20\\x07\\x21\\x4e\\x30\\x96\\x19\\xce\\xa5\\xe4\\xb1\\xbd\\xa7\\x8c\\xc2\\x31\\x22\\x4a\\xf1\\xc3\\xd1\\xae\\x6c\\xb2\\x0d\\xfd\\xff\\x60\\xcb\\xc5\\x76\\xef\\xbe\\x9d\\xee\\xb1\\x39\\xfb\\x81\\x9e\\xdb\\xf6\\x1e\\xdb\\x98\\xbb\\x60\\xbb\\x6f\\xd9\\x77\\xe1\\x6a\\xc1\\x3e\\xc8\\x7d\\x5b\\x7d\\x17\\x1b\\x7a\\xf6\\x4f\\xee\\xdb\\x0e\\xb7\\xcd\\xdd\\x3e\\xf7\\xb6\\xf9\\x6c\\x8f\\x2d\\xd7\\xad\\x2f\\xbb\\xdb\\x16\\x8c\\xfe\\x60\\xdf\\xe6\\xda\\x06\\xab\\xa2\\x1d\\x0b\\x55\\xd1\\x8e\\x8d\\xaa\\x68\\xc7\\x5f\\xf9\\x97\\x8e\\x65\\xaa\\x68\\x47\\x16\\xff\\xd2\\xf1\\x12\\xce\\x6b\\x9c\\xf3\\xe9\\x0d\\x58\\x36\\xce\\x39\\xf4\\xd3\\x77\\x99\\x3b\\x3b\\xcb\\x76\\x28\\xea\\x04\\xe3\\x18\\xf3\\x1c\\xea\\xbf\\x88\\x75\\x61\\x07\\xd6\\xcd\\x83\\x38\\xee\\x15\\xb8\\x9d\\x9b\\x8d\\x32\\x12\\x39\\x57\\xe1\\xf9\\x37\\xdc\\xda\\xcc\\x16\\xc4\\xa3\\x6e\\xf6\\xad\\x42\\x7d\\x6b\\x0f\\xbb\\x16\\xa0\\x6d\\x93\\xd0\\xbe\\x54\\xb4\\xaf\\x06\\xdb\\xf3\\x02\\xb7\\x39\\x6a\\x1d\\xd6\\xcb\\x02\\x3c\\xb7\\x06\\xdb\\xc0\\x27\\xd8\\x1e\\xff\\x89\\x63\\x73\\x9c\\x5b\\x5d\\xee\\x29\\xb1\\x6e\\xcb\\xd7\\x3b\\xf7\\x79\\x35\\x92\\xe3\\x4a\\x1b\\x97\\xc6\\x60\\xd9\\xae\\x8c\\xae\\xbe\\xc9\\x91\\xe9\\x66\\xb3\\xd3\\x16\\x13\\x6e\\xd2\\xfc\\x47\\x87\\xfd\\xbb\\xcd\\xad\\xbf\\x0a\\xc6\\xf9\\xc2\\x1b\\x38\\x37\\x1c\\x86\\x71\\xe9\\xd9\\xef\\x45\\xb9\\xc5\\xb0\\x1a\\x71\\x9a\\x94\\xcd\\x95\\xcf\\x89\\x6d\\x75\\x9b\\xf7\\x2e\\x70\\xeb\\x3b\\x9c\\x73\\x31\\xa7\\xd4\\xa0\\x0e\\xc5\\x18\\xf4\\x94\\xdb\\x71\\x9c\\x9a\\x88\\xf3\\x98\\xa1\\x6e\\xb1\\x1c\\x81\\x9c\\xf7\\xe8\\xa7\\x1d\\xe7\\xb8\\xe8\\x38\\xf4\\x07\\xfd\\xf8\\xff\\x56\\xfe\\x97\\xfe\\xdb\\xf1\\x0f\\x2e\\x3a\\x3a\\xff\\x40\\xaf\\x67\\x3f\\x7d\\x8f\\x7e\\xd5\\x71\\x82\\x8b\\x8e\\xb7\\xfe\\xa0\\xdf\\x75\\x5e\\xbb\\xfc\\x37\\xd9\\xb3\\x8f\\x74\\x5e\\xeb\\xfc\\x37\\xe9\\xde\\x87\\x76\\xc9\\xef\\xa0\\x5a\\xde\\x94\\x36\\xb2\\xd4\\x6d\\xce\\x16\\x84\\x9c\\xce\\x32\\x71\\x96\\x95\\x53\\xe2\\xfc\\xd5\\x59\\x37\\x5c\\xf3\\xdb\\x55\\x8a\\x74\\x7c\\x88\\xdb\\xb7\\xb2\\xfc\\xd2\\xf1\\x2f\\xfe\\xa5\\xe3\\x73\\xa9\\x3e\\xc0\\x02\\x78\\x02\\x16\\xc0\\x53\\xf0\\x38\\x8c\\x80\\x61\\x10\\x0c\\x23\\x61\\x28\\x14\\xc0\\x73\\x00\\x90\\x28\\x2f\\x21\\x1c\\xef\\xb6\\x60\\x30\\x1c\\x36\\x12\\x7f\\xd2\\x4e\\x73\\x69\\x15\\x6d\\xa6\\x67\\xa8\\x9d\\x85\\xb1\\x4c\\x56\\xca\\xd6\\xb2\\x36\\xee\\xcd\\x43\\xb9\\x8d\\x5f\\x51\\x0d\\x55\\x2d\\x52\\x5d\\x51\\xfb\\xaa\\xeb\\xd5\\xbf\\x7a\\x78\\x7b\\x0c\\xf6\\x48\\xf4\\x98\\xe9\\x31\\xdf\\xe3\\xaa\\xe7\\x61\\xcf\\x2f\\xbc\\xc6\\x78\\xed\\xf5\\xba\\xe2\\xdd\\xdf\\x7b\\x9c\\x77\\x93\\xf7\\xdb\\xde\\x3f\\xf8\\x84\\xfa\\xe4\\xfa\\xd8\\x7c\\xda\\x7d\\xce\\xf9\\x6a\\x7c\\x8b\\x7c\\x8f\\xfb\\x51\\x3f\\x9b\\xdf\\x46\\xbf\\xf7\\xfc\\xae\\xf9\\x0f\\xf2\\xcf\\xf4\\xaf\\xf5\\x6f\\xf1\\x3f\\xe9\\xff\\x59\\x2f\\xe8\\x35\\xbc\\xd7\\xb8\\x5e\\x25\\xbd\\xec\\x01\\xf3\\x03\\xbe\\x0f\\x9c\\x11\\x78\\xa2\\xb7\\x67\\xef\\xd6\\xde\\x17\\xfb\\x0c\\xeb\\xb3\\xb0\\x4f\\x7b\\x9f\\xb3\\x7d\\xc7\\xf7\\x6d\\xed\\x07\\xfd\\xaa\\xfa\\x5d\\xe9\\x3f\\xae\\xff\\xb1\\x01\\x43\\x07\\xcc\\x1d\\xd0\\x34\\xe0\\xf4\\x80\\x9b\\x03\\x93\\x07\\x96\\x0e\\x3c\\x36\\xf0\\xfc\\x7d\\x91\\xf7\\x2d\\xba\\xef\\xcd\\x41\\x91\\x83\\x56\\x06\\xf5\\x0e\\x9a\\x12\\xb4\\x68\\xf0\\xe0\\xc1\\x45\\x83\\x7f\\x18\\xd2\\x30\\x44\\x18\\x72\\x71\\xe8\\x92\\xa1\\x0d\\x43\\x2f\\xdd\\x3f\\xf0\\xfe\\xf5\\x9a\\xfe\\x9a\\x64\\xcd\\x7a\\xcd\\x31\\xcd\\xd5\\xe0\\x98\\xe0\\xac\\xe0\\xc6\\xe0\\xb6\\xe0\\x93\\xc1\\x17\\x83\\x6f\\x0d\\x7b\\x6e\\xd8\\xe9\\x61\\x3f\\x68\\x17\\x6a\\x4f\\x0e\\x9f\\x16\\x92\\x1d\\x72\\x2e\\x74\\x50\\x68\\xf3\\x08\\xff\\x11\\x39\\x23\\xe6\\x8f\\x38\\x35\\xd2\\x38\\xd2\\x36\\xb2\\x75\\xe4\\x67\\x0f\\x84\\x3e\\xb0\\x3b\\x2c\\x37\\xec\\x42\\xb8\\x6f\\x78\\x59\\xf8\\x05\\x5d\\xa6\\xae\\x51\\x77\\x2b\\x22\\x31\\xa2\\x39\\xe2\\x44\\xc4\\xa5\\xc8\\xbe\\x91\\x71\\x91\\xeb\\x23\\x4f\\x8d\\xf2\\x1d\\x15\\x39\\x6a\\xf1\\xa8\\x96\\x51\\x27\\x47\\x9d\\x89\\xf2\\x8c\\x0a\\x8b\\x9a\\x12\\x55\\x1d\\x1d\\x19\\x9d\\x10\\x9d\\x1b\\xbd\\x30\\xfa\\x7c\\xf4\\x4f\\x31\\xc3\\x63\\xd2\\x62\\x16\\xc6\\x9c\\x8e\\xf5\\x8e\\x2d\\x8a\\xa3\\x71\\x1b\\xe3\\x8e\\xc7\\x27\\xc6\\x0b\\x09\\xde\\x09\\xa5\\x09\\x1f\\x8f\\x1e\\x36\\x7a\\x6f\\xe2\\xc0\\xc4\\xc5\\x89\\x57\\x93\\x8c\\x49\\x6d\\x49\\xbf\\x8e\\x19\\x3f\\xe6\\xf0\\x98\\x9b\\x0f\\x96\\x3e\\x78\\x3e\\xb9\\x22\\xf9\\xc2\\xd8\\x94\\xb1\\x2d\\x63\\x6f\\x8c\\x4b\\x1b\\xb7\\x78\\x5c\\xfb\\xb8\\xeb\\x0f\\x25\\x3c\\x34\\xff\\xa1\\x6b\\x29\\x7d\\x53\\x32\\x53\\xd6\\xa6\\x1c\\x4b\\x85\\x54\\x5d\\x6a\\x51\\x6a\\x7b\\xea\\x0d\\x7d\\xa2\\xbe\\xd9\\x10\\x60\\x98\\x62\\x78\\xcf\\x38\\xdc\\xa8\\x37\\x2e\\x37\\x9e\\x36\\x25\\x9a\\x0a\\x4d\\xeb\\x4d\\xa7\\x4c\\x3f\\xa5\\x0d\\x4d\\x4b\\x49\\x2b\\x4a\\x3b\\x91\\x76\\x2d\\x7d\\x64\\x7a\\x6e\\x7a\\x7d\\xfa\\xd9\\xf1\\x83\\xc7\\xcf\\x1c\\x7f\\x72\\x42\\xce\\x84\\xe6\\x89\\xde\\x13\\x6d\\x13\\x2f\\x65\\xc4\\x65\\x3c\\x93\\xd1\\x99\\x09\\x99\\x59\\x99\\xad\\x0f\\xcf\\xc8\\xf2\\xcc\\x4a\\xc9\\x5a\\x98\\x75\\x7c\\x12\\x9f\\x34\\x6d\\x92\\x90\\x1d\\x90\\x5d\\x9d\\x7d\\xe3\\x91\\x45\\x8f\\x5c\\xc8\\x49\\xcc\\x59\\x9c\\x73\\x7e\\xf2\\x94\\xc9\\x37\\x72\\x1b\\xf3\\xa6\\x4c\\xa1\\x53\\x3e\\x9b\\x3a\\x6d\\xea\\x85\\xfc\\xe1\\xf9\\xcf\\xe5\\x9f\\x2c\\x18\\x5a\\x90\\x5f\\x60\\x2b\\x58\\x39\\xbd\\xef\\xf4\\xd6\\xe9\\xd7\\x67\\x54\\xcc\\x58\\x3f\\xe3\\x95\\x19\\xb7\\x1e\\x1d\\xf7\\x68\\xe3\\xa3\\x5f\\xcc\\xec\\x3b\\x73\\xe2\\xcc\\x85\\x33\\xdb\\x67\\xde\\x9c\\x65\\x9c\\xf5\\x45\\xe1\\xb4\\xc2\\xd5\\x85\\x6f\\x9a\\x8d\\xe6\\xe3\\x66\\x7b\\xd1\\xfc\\xa2\\x1f\\x8a\\xe3\\x8a\\x17\\x16\\x9f\\x2c\\xf1\\x2f\\x99\\x5b\\x72\\xca\\x12\\x67\\x19\\x6f\\x29\\xb2\\xb4\\x95\\xfa\\x97\\x2e\\x2f\\xbd\\x3e\\x7b\\xc6\\xec\\x33\\x65\\xe3\\xca\\xde\\x2e\\xcf\\x2a\\x7f\\x6d\\xce\\xb0\\x39\\xcf\\xcc\\xb9\\xf4\\x58\\xd8\\x63\\x73\\x1f\\xbb\\x7a\\xcf\\xff\\x37\\x2a\\x68\\x45\\xdf\\x8a\\xb8\\x8a\\x19\\x15\\x8b\\x2a\\x96\\x57\\x6c\\xae\\xd8\\x5d\\xf1\\x71\\x25\\xad\\x4c\\xa9\\xac\\xae\\x5c\\x5c\\xd9\\x5c\\xb5\\xba\\xaa\\xb3\\xea\\x42\\xd5\\x35\\x6b\\x9c\\x75\\x7d\\x35\\xad\\x3e\\xf6\\x78\\xe8\\xe3\\xed\\x8f\\x5f\\xb7\\xe9\\x6d\\x55\\x36\\xc1\\x76\\xca\\x76\\xb9\\x06\\x6a\\x06\\xd6\\xd4\\xd6\\xac\\xac\\x39\\x5c\\x73\\xaa\\xe6\\x72\\xed\\x8c\\xda\\xf5\\xb5\\x37\\xeb\\x86\\xd5\\x25\\xd7\\x4d\\xa9\\x5b\\x54\\xb7\\xb9\\x6e\\xf3\\xdc\\x45\\x73\\x3f\\x9e\\xe7\\x3b\\x2f\\x7b\\xde\\xea\\x79\\x27\\xe6\\x7d\\x3f\\xdf\\x77\\xfe\\x98\\xf9\\x53\\xe6\\x2f\\x9b\\x7f\\x69\\x41\\xe2\\x82\\xf9\\x0b\\x76\\x2f\\x78\\x6f\\xa1\\x6e\\xe1\\x94\\x85\\x4b\\x16\\x76\\x2e\\xbc\\xb8\\xd0\\xfe\\x44\\xe4\\x13\\x53\\x9e\\xd8\\xfd\\x84\\x7d\\x91\\x7e\\x51\\xe7\\xa2\\x73\\x4f\\x7a\\x3e\\x19\\xf9\\xe4\\x8c\\x27\\x57\\x3e\\x79\\xf4\\xc9\\x2f\\x16\\x6b\\x16\\x27\\x2c\\xae\\x58\\x7c\\x72\\xf1\\x95\\xa7\\xc2\\x9e\\xb2\\x3d\\x55\\xff\\xd4\\xb5\\x25\\x71\\x4b\\x2a\\x96\\x2c\\x59\\x72\\x78\\xc9\\x8d\\xa7\\x47\\x3e\\x5d\\xfa\\xf4\\xe1\\xa7\\xdf\\x7e\\xa6\\xf4\\x99\\xf6\\x67\\x8e\\x3d\\xf3\\xeb\\xb3\\x9a\\x67\\xeb\\x9f\\xdd\\xfd\\xec\\xd9\\xe7\\xf8\\x73\\x8d\\xcf\\xbd\\xf9\\xdc\\xb5\\xa5\\x7d\\x97\\x0e\\x5e\\x3a\\x7c\\x69\\xe9\\xd2\\xce\\xa5\\x37\\x97\\xe9\\x96\\x55\\x2f\\x6b\\x5e\\xf6\\xca\\xf3\\x91\\xcf\\x2f\\x7b\\xfe\\xcc\\xf2\\x71\\xcb\\xd3\\x96\\x67\\x2d\\x9f\\xb2\\x7c\\xef\\xf2\\x1b\\x2f\\x18\\x5f\\x98\\xfb\\xc2\\xb5\\x17\\xec\\xf5\\x01\\xf5\\xc3\\xea\\xe3\\xea\\xd3\\xea\\xf3\\xeb\\xe7\\xd4\\x2f\\xac\\x5f\\x59\\xdf\\x5c\\x2f\\xd4\\xbf\\x59\\x7f\\xbe\\xfe\\x9b\\xfa\\x5f\\x57\\x78\\xaf\\x18\\xbc\\x22\\x72\\x45\\xca\\x8a\\x9c\\x15\\x25\\x2b\\xe6\\xae\\x58\\xbe\\xa2\\x71\\xc5\\xc1\\x15\\xc7\\x57\\x9c\\x5d\\x71\\x69\\xc5\\xf5\\x95\\x74\\x65\\xef\\x95\\xc3\\x56\\xc6\\xad\\x34\\xae\\xcc\\x5d\\x59\\xba\\x72\\xee\\xca\\x65\\x2b\\x37\\xaf\\x6c\\x5d\\x79\\x74\\xe5\\xdb\\x2b\\x3f\\x5e\\xf9\\xcd\\xca\\x5f\\x57\\x79\\xae\\x1a\\xb8\\x2a\\x6c\\xd5\\x98\\x55\\x99\\xab\\x66\\xac\\xaa\\x58\\xb5\\x68\\xd5\\xea\\x55\\xcd\\xab\\x84\\x55\\xc7\\x56\\x9d\\x59\\xf5\\xc5\\xea\\x31\\xab\\xcf\\xad\\xbe\\xbc\\xfa\\xc6\\x1a\\xcf\\x35\\x83\\xd6\\xe8\\xd6\\x24\\xaf\\xc9\\x5a\\x33\\x73\\x4d\\xf5\\x9a\\x45\\x6b\\x56\\xaf\\x69\\x5e\\x23\\xac\\x39\\xb1\\xe6\\xdc\\x9a\\x4b\\x6b\\xc7\\xac\\x7d\\x6f\\xed\\x17\\x6b\\xbf\\x5f\\x07\\xeb\\x02\\xd6\\x0d\\x5b\\x17\\xb3\\xce\\xb8\\x2e\\x77\\x5d\\xe9\\xba\\xf9\\xeb\\xea\\xd7\\x35\\xad\\x3b\\xbc\\xee\\xc4\\xba\\x73\\xeb\\x2e\\xaf\\xbb\\xb1\\x5e\\xbd\\x7e\\xda\\xfa\\x53\\xeb\\x2f\\xac\\xbf\\xb6\\xde\\xbe\\x21\\x60\\xc3\\xb0\\x0d\\x71\\x1b\\xd2\\x36\\xe4\\x6f\\x98\\xb3\\x61\\xd1\\x86\\xd5\\x1b\\x5a\\x36\\x74\\x6e\\x38\\xb9\\xe1\\xfc\\x86\\x6f\\x36\\xfc\\xba\\xd1\\x7b\\xe3\\xa0\\x8d\\xba\\x8d\\xe3\\x36\\x4e\\xdc\\x38\\x63\\x63\\xc5\\xc6\\xc5\\x1b\\xd7\\x6e\\x6c\\xdd\\xd8\\xb9\\xf1\\xe4\\xc6\\x8f\\x37\\x5e\\xd9\\xf8\\xeb\\x26\\xef\\x4d\\x83\\x36\\xe9\\x36\\x25\\x6f\\xca\\xda\\x54\\xb8\\xc9\\xb6\\xe9\\xb9\\x4d\\x9b\\x37\\xed\\xdd\\xf4\\xca\\xa6\\xd3\\x9b\\x2e\\x6c\\xba\\xba\\xe9\\xc6\\x66\\xcf\\xcd\\x83\\x36\\xeb\\x36\\x8f\\xdb\\x9c\\xbd\\xb9\\x68\\x73\\xed\\xe6\\xe7\\x36\\x6f\\xde\\xdc\\xb6\\xf9\\xb5\\xcd\\xef\\x6d\\x09\\xdd\\xd2\\xb4\\xe5\\xf0\\x96\\xe3\\x5b\\xce\\x6e\\xb9\\xb4\\xe5\\xa7\\x06\\x75\\xc3\\xc0\\x86\\xb0\\x86\\x31\\x0d\\x99\\x0d\\x33\\x1a\\xaa\\x1a\\x96\\x34\\xac\\x6f\\x68\\x6d\\x38\\xda\\xf0\\x76\\xc3\\xa7\\x0d\\x57\\x1b\\x6e\\x6e\\xf5\\xde\\x3a\\x68\\x6b\\xd8\\xd6\\xe4\\xad\\x99\\x5b\\xf3\\xb7\\xce\\xd9\\xba\\x70\\x6b\\xfd\\xd6\\xc6\\xad\\x07\\xb7\\x1e\\xdf\\x7a\\x76\\xeb\\xc5\\xad\\xd7\\x1b\\x79\\x63\\xdf\\xc6\\xe1\\x8d\\x71\\x8d\\xc6\\xc6\\x29\\x8d\\x65\\x8d\\x0b\\x1b\\xeb\\x1b\\x1b\\x1b\\xdb\\x1b\\x5f\\xdb\\xd6\\x7f\\x5b\\xe8\\xb6\\x84\\x6d\\x69\\xdb\\xa6\\x6c\\x2b\\xdb\\x36\\x7f\\xdb\\xf2\\x6d\\x0d\\xdb\\xbe\\xdf\\x66\\x6f\\xf2\\x6f\\x1a\\xda\\x14\\xd9\\x94\\xd2\\x94\\xd3\\x54\\xd2\\x54\\xdd\\xb4\\xa4\\xe9\\x7c\\xd3\\xe5\\xa6\\x1b\\xdb\\x3d\\xb7\\x0f\\xda\\xae\\xdb\\x3e\\x6e\\x7b\\xf6\\xf6\\xc2\\xed\\xb6\\xed\\xcf\\x6c\\x5f\\xbf\\xbd\\x75\\x7b\\xe7\\xf6\\x37\\xb7\\x9f\\xdf\\x7e\\x79\\xfb\\x8d\\x66\\xcf\\xe6\\x41\\xcd\\x61\\xcd\\xc9\\xcd\\x99\\xcd\\x33\\x9b\\xab\\x9a\\x17\\x37\\xaf\\x6d\\x6e\\x6d\\xbe\\xb9\\xc3\\x77\\xc7\\xe0\\x1d\\xba\\x1d\\xc9\\x3b\\x32\\x77\\xcc\\xd8\\x51\\xb6\\x63\\xe1\\x8e\\x95\\x3b\\x9a\\x77\\xb4\\xef\\x78\\x79\\xc7\\x9b\\x3b\\xce\\xef\\xf8\\x6c\\xc7\\xe5\\x1d\\xd7\\x76\\xfc\\xb4\\xe3\\x56\\x0b\\x6f\\xf1\\x6d\\xe9\\xdb\\x32\\xb8\\x65\\x78\\x8b\\xae\\x25\\xae\\x25\\xb9\\xc5\\xd8\\x32\\xa5\\xa5\\xac\\x65\\x7e\\xcb\\xf2\\x96\\x86\\x96\\xf6\\x96\\x63\\x2d\\x27\\x5b\\xde\\x6b\\x39\\xdf\\xf2\\x59\\xcb\\xe5\\x96\\x9f\\x76\\xf2\\x9d\\x7d\\x77\\x0e\\xdf\\x19\\xb7\\x33\\x6d\\x67\\xfe\\xce\\x53\\x3b\\xcf\\xee\\xbc\\xb4\\xf3\\xea\\xce\\xeb\\xad\\xbc\\xb5\\x7f\\xeb\\xd0\\xd6\\xd0\\xd6\\xc8\\xd6\\x84\\xd6\\xf1\\xad\\xd9\\xad\\xf9\\xad\\x85\\xad\\x65\\xad\\xd5\\xad\\xf3\\x5b\\x97\\xb4\\x2e\\x6f\\x5d\\xdb\\xda\\xd0\\xda\\xd2\\x2a\\xb4\\xbe\\xd2\\x7a\\x62\\xd7\\xd0\\x5d\\xa1\\xbb\\x22\\x77\\x8d\\xdb\\x95\\xb5\\x6b\\xca\\xae\\x99\\xbb\\xaa\\x76\\xcd\\xdd\\xb5\\x6c\\xd7\\xe6\\x5d\\x6d\\xbb\\x5e\\xdb\\xf5\\xde\\xae\\xcf\\x76\\x7d\\xbf\\xcb\\xbe\\x3b\\x60\\xf7\\xb0\\xdd\\x61\\xbb\\x63\\x76\\x8f\\xdb\\x9d\\xbd\\x3b\\x7f\\xf7\\x9c\\xdd\\x8b\\x76\\xaf\\xdc\\xdd\\xb4\\xfb\\xf0\\xee\\x13\\xbb\\xcf\\xed\\xbe\\xbc\\xfb\\xc6\\x6e\\xfb\\x1e\\xf5\\x9e\\x81\\x7b\\xc2\\xf6\\x24\\xef\\xc9\\xda\\x53\\xb8\\xc7\\xb6\\x67\\xe1\\x9e\\x67\\xf6\\xd4\\xef\\x69\\xda\\x73\\x70\\xcf\\xd1\\x3d\\x6f\\xef\\xf9\\x78\\xcf\\x95\\x3d\\xbf\\xee\\x85\\xbd\\x9e\\x7b\\x07\\xed\\x0d\\xdb\\x9b\\xbc\\xd7\\xb8\\x37\\x77\\x6f\\xe9\\xde\\xb9\\x7b\\x97\\xef\\x6d\\xd8\\xdb\\xbe\\xf7\\xd8\\xde\\x33\\x7b\\xbf\\xd8\\xfb\\xc3\\x3e\\xd8\\xe7\\xb9\\x2f\\x60\\xdf\\xb0\\x7d\\x31\\xfb\\x8c\\xfb\\x72\\xf7\\x95\\xee\\x9b\\xbf\\xaf\\x7e\\x5f\\xe3\\xbe\\x83\\xfb\\x8e\\xef\\x3b\\xbb\\xef\\xe2\\xbe\\xeb\\x6d\\xb4\\xcd\\xbf\\x6d\\x50\\xdb\\xb0\\xb6\\xc8\\xb6\\x31\\x6d\\x99\\x6d\\x33\\xdb\\xaa\\xdb\\x16\\xb5\\xad\\x6e\\x6b\\x6e\\x13\\xda\\x8e\\xb5\\x9d\\x69\\xbb\\xd8\\x76\\x7d\\x3f\\xdf\\x3f\\x74\\x7f\\xc2\\xfe\\xf1\\xfb\\xf3\\xf7\\xcf\\xd9\\xbf\\x70\\xff\\xca\\xfd\\xcd\\xfb\\x85\\xfd\\xc7\\xf6\\x7f\\xbc\\xff\\xfb\\x76\\x68\\xf7\\x6d\\x1f\\xda\\x1e\\xd5\\xae\\x6f\\xcf\\x69\\x2f\\x69\\xaf\\x6d\\x5f\\xd6\\xbe\\xbe\\x7d\\x77\\xfb\\xcb\\xed\\xa7\\xda\\x2f\\xb4\\xff\\x74\\xc0\\xf3\\xc0\\xa0\\x03\\xba\\x03\\xe3\\x0e\\x64\\x1f\\x28\\x3a\\x50\\x7b\\x60\\xd9\\x81\\xf5\\x07\\x76\\x1f\\x38\\x7a\\xe0\\xed\\x03\\xe7\\x0e\\x5c\\x3e\\x70\\xe3\\xa0\\xe7\\xc1\\x41\\x07\\xe3\\x0e\\x66\\x1d\\x2c\\x3c\\x58\\x7d\\xf0\\x99\\x83\\x1b\\x0f\\xee\\x3d\\xd8\\x79\\xf0\\xe4\\xc1\\xf3\\x07\\x2f\\x1e\\xbc\\x7e\\x88\\x1f\\x0a\\x38\\x34\\xec\\x50\\xdc\\xa1\\xb4\\x43\\x53\\x0e\\x95\\x1d\\x5a\\x78\\x68\\xe5\\xa1\\xe6\\x43\\xc2\\xa1\\x13\\x87\\xce\\x1d\\xfa\\xe2\\xd0\\x0f\\x87\\xe9\\xe1\\xbe\\x87\\x43\\x0f\\x27\\x1e\\x9e\\x78\\xf8\\xcc\\xe1\\x2b\\x87\\x6f\\x1e\\x51\\x1f\\xe9\\x7d\\x64\\xe8\\x91\\xb0\\x23\\x09\\x47\\xf4\\x47\\xb2\\x8e\\x4c\\x3b\\x52\\x7a\\xc4\\x76\\x64\\xf1\\x91\\xfa\\x23\\x9b\\x8f\\xb4\\x1e\\x39\\x7c\\xe4\\xc4\\x91\\x73\\x47\\x2e\\x08\\x91\\xc2\\x62\\xe1\\x8c\\x70\\xab\\x23\\xac\\xa3\\xa2\\xe3\\x70\\xc7\\xa9\\x8e\\x4b\\x1d\\x3f\\x75\\xaa\\x3b\\x07\\x76\\x86\\x75\\x26\\x77\\x66\\x75\\xd6\\x77\\xbe\\xf9\\x22\\x7d\\x31\\xe5\\xc5\\xf1\\x2f\\x4e\\x7b\\xb1\\x54\\xfe\\xdf\\x0c\\x04\\x80\\x07\\x82\\x00\\xfd\\xc1\\x0a\\x2a\\xa0\\x90\\x0d\\x85\\x30\\x0f\\x00\\x3e\\xf7\\xd9\\x02\\x4c\\xfe\\xdd\\xc1\\x0f\\x5a\\xa5\\x14\\xf7\\x02\\x80\\x99\\x00\\x98\\x26\\xd0\\x1f\\x66\\x62\\x9a\\x82\\x27\\xd4\\x62\\x9a\\x41\\x24\\x2c\\xc2\\x34\\x07\\x0d\\xb4\\x63\\x5a\\x05\\xb9\\x70\\x1a\\xd3\\x6a\\x18\\x4a\\x86\\x62\\xda\\x03\\x26\\x92\\x64\\x4c\\x7b\\x81\\x2f\\x59\\x86\\x69\\x1f\\xe8\\x4b\\xd6\\x63\\xda\\x17\\x42\\xc9\\x5e\\x4c\\xfb\\xc1\\x0c\\xf2\\x1e\\xa6\\xfd\\x21\\x97\\x8e\\x04\\x03\\x58\\xa1\\x1a\\x16\\x80\\x0d\\xca\\x61\\x36\\x94\\x41\\x2d\\x68\\x20\\x06\\xa2\\x20\\x1a\\xe2\\x41\\x03\\xe9\\x60\\x05\\x2b\\xcc\\x86\\x0a\\xb0\\x80\\x06\\x26\\x40\\x15\\x14\\x43\\x24\\x68\\x20\\x15\\x2a\\xa0\\x02\\x34\\x90\\xe3\\xca\\x55\\x23\\xef\\x59\\xa0\\x06\\x2c\\x60\\x83\\xb9\\x60\\x81\\x12\\x88\\x84\\x1c\\xb0\\x42\\x11\\x58\\xa1\\x16\\xac\\xa0\\x81\\x87\\xc1\\x0a\\x55\\x60\\x05\\x3d\\x58\\xa1\\x02\\x4a\\xba\\xa1\\x8f\\xb9\\x87\\xee\\x18\\x97\\x35\\x77\\x3f\\xaf\\x71\\xa1\\x4d\\x91\\x99\\x6b\\xa0\\x5c\\x3e\\x23\\x79\\x11\\x09\\x51\\xf2\\xff\\x24\\x48\\x84\\x78\\x78\\xd0\\xcd\\x33\\x29\\x5d\\x0b\\xb5\\x50\\x0a\\x66\\xa8\\x93\\x11\\xcb\\xa0\\x1c\\xaa\\x64\\xef\\x47\\xc2\\x5c\\x88\\x86\\x48\\x88\\x85\\x07\\xba\\x71\\x3a\\x19\\x23\\x5c\\x8c\\xf7\\xb2\\xa8\\x5c\\x8e\\x86\\x59\\xe6\\xb0\\x81\\x19\\x4a\\xc0\\x02\\x95\\x60\\x06\\x1b\\x3c\\x06\\x1a\\xb0\\x42\\x69\\x8f\\xc8\\x46\\x76\\xdb\\xeb\\x7e\\xa6\\x18\\xac\\x50\\x09\\x06\\x28\\x93\\x4b\\xa8\\x06\\x6a\\xa1\\x1c\\xcc\\xb2\\x7f\\x0a\\xbb\\xe4\\xb3\\x14\\x7d\\x89\\x3b\\x13\\xca\\xa1\\x18\\x2c\\x50\\x25\\x97\\x42\\x09\\x68\\xa0\\x0e\\xaa\\x64\\x76\\x9b\\x6c\\x4b\\x99\\x5c\\x8a\\xa9\\x50\\x0d\\x66\\x28\\xc6\\xbd\\xee\\x79\\x74\\xa0\\xb9\\x47\\x1c\\xcb\\xe4\\x78\\x55\\xc3\\x18\\x18\\x05\\xa3\\x60\\x9e\\xfc\\x3f\\x12\\xcc\\x6e\\x58\\x91\\x60\\x05\\x1b\\xcc\\x86\\x51\\x50\\xd1\\x0d\\xb3\\x06\\x46\\x41\\x26\\x4c\\x00\\x03\\x98\\x20\\x0b\\x26\\x83\\x09\\x22\\x10\\x13\\x9c\\xbf\\xd9\\x39\\xe6\\x40\\x09\\xdc\\xe5\\x1f\\x0f\\x04\\xf9\\x1b\\x9b\\xc0\\x40\\x05\\x6a\\xf0\\x00\\x4f\\xf0\\x02\\x6f\\xf0\\x01\\x5f\\xf0\\x03\\x7f\\xe8\\x05\\x01\\x10\\x08\\xbd\\xa1\\x0f\\xf4\\x85\\x7e\\xd0\\x1f\\x06\\xc0\\x40\\xb8\\x0f\\x06\\x41\\x10\\x0c\\x86\\x21\\x30\\x14\\xee\\x07\\x0d\\x04\\xc3\\x30\\xd0\\xc2\\x70\\x08\\x81\\x50\\x18\\x01\\x23\\xe1\\x01\\x08\\x83\\x70\\xd0\\x41\\x04\\x44\\xc2\\x28\\xb9\\x36\\xc4\\x40\\x2c\\xc4\\x41\\x3c\\x24\\xc0\\x68\\x48\\x84\\x24\\x18\\x03\\x0f\\x42\\x32\\x8c\\x85\\x71\\xf0\\x10\\xa4\\x40\\x2a\\xe8\\xc1\\x00\\x46\\x30\\x41\\x1a\\xa4\\xc3\\x78\\x98\\x00\\x13\\x21\\x03\\x32\\xe1\\x61\\xc8\\x82\\x49\\x90\\x0d\\x8f\\x40\\x0e\\x4c\\x86\\x5c\\xc8\\x83\\x29\\x30\\x15\\xf2\\xa1\\x00\\xa6\\xc1\\x74\\x98\\x01\\x8f\\xc2\\x4c\\x98\\x05\\x85\\x60\\x86\\x5d\\xf0\\x1c\\x2c\\x85\\xd7\\x61\\x33\\x5c\\x81\\x65\\xb0\\x1a\\x56\\xc0\\x76\\xd8\\x0f\\xbb\\xa1\\x9e\\x30\\x78\\x16\\x36\\xc0\\x75\\xf8\\x0f\\xac\\x82\\x2d\\xb0\\x9c\\x70\\xf8\\x02\\x7e\\x84\\x66\\x68\\x87\\x9f\\xe1\\x27\\xb8\\x01\\xad\\xb0\\x16\\x7e\\x80\\x75\\xf0\\x2f\\x78\\x01\\x5a\\xe0\\x2a\\xbc\\x02\\x3b\\xe1\\x7b\\xa2\\x82\\x4f\\x88\\x9a\\x78\\x10\\x4f\\xb8\\x04\\x5f\\x11\\x2f\\xe2\\x0d\\x02\\x74\\x10\\x1f\\xd8\\x4b\\x7c\\x89\\x1f\\xf1\\x27\\xbd\\x48\\x00\\x09\\x84\\x4f\\xe1\\x4b\\xf8\\x07\\x7c\\x06\\x9f\\xc3\\x45\\xf8\\x3b\\xfc\\x93\\xf4\\x26\\x7d\\x48\\x5f\\xd2\\x8f\\xf4\\x27\\x03\\xc8\\x40\\x72\\x1f\\x19\\x44\\x82\\xc8\\x60\\x32\\x84\\x0c\\x25\\xf7\\x13\\x0d\\x09\\x26\\xc3\\x88\\x96\\x0c\\x87\\x1d\\x24\\x84\\x84\\x92\\x11\\x64\\x24\\x79\\x80\\x84\\x91\\x70\\xa2\\x23\\x11\\x24\\x92\\x8c\\x82\\x6d\\x24\\x8a\\x44\\x93\\x18\\x12\\x4b\\xe2\\x48\\x3c\\x49\\x20\\xa3\\x49\\x22\\x49\\x22\\x63\\xc8\\x83\\x24\\x99\\x8c\\x25\\xe3\\xc8\\x43\\x24\\x85\\xa4\\x12\\x3d\\x31\\x10\\x23\\x31\\x91\\x34\\x92\\x4e\\xc6\\x93\\x09\\x64\\x22\\xc9\\x20\\x99\\xe4\\x61\\x92\\x45\\x26\\x91\\x6c\\xf2\\x08\\xc9\\x21\\x93\\x49\\x2e\\xc9\\x23\\x53\\xc8\\x54\\x92\\x4f\\x0a\\xc8\\x34\\x32\\x9d\\xcc\\x20\\x8f\\x92\\x99\\x64\\x16\\x29\\x24\\x66\\x52\\x44\\x8a\\x49\\x09\\xb1\\x90\\x52\\x32\\x9b\\x94\\x91\\x72\\x32\\x87\\x3c\\x46\\x2a\\x48\\x25\\xa9\\x22\\x56\\x52\\x4d\\x1e\\x27\\x36\\x52\\x43\\x6a\\x49\\x1d\\x99\\x4b\\xe6\\x91\\xf9\\x64\\x01\\x59\\x48\\x9e\\x20\\x8b\\xc8\\x93\\x64\\x31\\x79\\x8a\\x2c\\x21\\x4f\\x93\\x67\\xc8\\xb3\\xe4\\x39\\xb2\\x94\\x2c\\x23\\xcf\\x93\\xe5\\xe4\\x05\\x52\\x4f\\x56\\x90\\x95\\x64\\x15\\x59\\x4d\\xd6\\x90\\xb5\\x64\\x1d\\x59\\x4f\\x36\\x90\\x8d\\x64\\x13\\xd9\\x4c\\xb6\\x90\\x06\\xb2\\x95\\x34\\x92\\x6d\\xa4\\x89\\x6c\\x27\\xcd\\x64\\x07\\x69\\x21\\x3b\\x49\\x2b\\xd9\\x45\\x76\\x93\\x3d\\x64\\x2f\\xd9\\x47\\xda\\xc8\\x7e\\xd2\\x4e\\x0e\\x90\\x83\\xe4\\x10\\x39\\x4c\\x8e\\x10\\x81\\x74\\x90\\x4e\\xf2\\x22\\x39\\x4a\\x5e\\x22\\x2f\\x93\\x3f\\x91\\x57\\xc8\\xab\\xe4\\x35\\xf2\\x67\\x72\\x8c\\xbc\\x4e\\x8e\\x93\\xbf\\x90\\x13\\xe4\\x0d\\xf2\\x26\\xf9\\x2b\\x39\\x49\\xde\\x22\\x6f\\x93\\x77\\xc8\\x29\\xf2\\x2e\\x39\\x4d\\xfe\\x46\\xde\\x23\\x22\\x39\\x43\\xde\\x87\\x4e\\x78\\x91\\x9c\\x85\\x97\\xe1\\x4f\\x70\\x92\\x7c\\x00\\x47\\xe1\\x25\\x78\\x0b\\x9e\\x81\\x37\\xe1\\x79\\x72\\x0e\\x0e\\xc0\\xdb\\x70\\x1c\\xfe\\x02\\xc7\\xc8\\x87\\xe4\\x3c\\xf9\\x88\\x7c\\x4c\\x3e\\x21\\x9f\\x92\\xbf\\x93\\x0b\\xb0\\x92\\xfc\\x83\\x7c\\x46\\x3e\\x27\\x5f\\x90\\x7f\\x42\\x03\\x34\\xc2\\x56\\xf8\\x37\\xec\\x81\\xf5\\xd0\\x04\\xfb\\x60\\x0d\\x6c\\x84\\x4d\\xf0\\x2a\\xb9\\x48\\xbe\\x24\\x97\\xc8\\x57\\xe4\\x32\\xf9\\x9a\\x7c\\x43\\xbe\\x25\\x57\\xc8\\xff\\x90\\xab\\xe4\\x3b\\x72\\x8d\\xfc\\x8b\\x7c\\x4f\\xfe\\x4d\\x7e\\x20\\x3f\\x92\\xeb\\xe4\\x3f\\xe4\\x27\\xf2\\x33\\xb9\\x41\\x7e\\x21\\xbf\\x92\\xdf\\xc8\\x4d\\xf2\\x3b\\xb9\\x45\\x6e\\x13\\x3b\\x71\\x50\\xa0\\x84\\x52\\xca\\x28\\xa7\\x2a\\xaa\\xa6\\x1e\\xd4\\x93\\x7a\\x51\\x6f\\xea\\x43\\x7d\\xa9\\x1f\\xf5\\xa7\\xbd\\x68\\x00\\x0d\\xa4\\xbd\\x69\\x1f\\xda\\x97\\xf6\\xa3\\xfd\\xe9\\x00\\x3a\\x90\\xde\\x47\\x07\\xd1\\x20\\x3a\\x98\\x0e\\xa1\\x43\\xe9\\xfd\\x54\\x43\\x83\\xe9\\x30\\xaa\\xa5\\xc3\\x69\\x08\\x0d\\xa5\\x23\\xe8\\x48\\xfa\\x00\\x0d\\xa3\\xe1\\x54\\x47\\x23\\x68\\x24\\x1d\\x45\\xa3\\x68\\x34\\x1c\\xa4\\x31\\x34\\x16\\xfe\\x87\\xc6\\xd1\\x78\\x9a\\x00\\x87\\xe0\\x5d\\x78\\x07\\x0e\\x43\\x11\\x14\\xd3\\xd1\\x50\\x02\\x7f\\x03\\x0b\\x9c\\x82\\xd3\\xf0\\x3e\\xbc\\x07\\x22\\x9c\\x81\\x52\\xf8\\x10\\xce\\xc2\\x07\\x70\\x04\\x66\\xc3\\xc7\\x70\\x1e\\x3e\\x82\\x32\\xf8\\x0e\\xe6\\x40\\x39\\x3c\\x06\\x95\\x50\\x01\\x55\\x34\\x11\\xac\\xf0\\x38\\x54\\xcb\\xfd\\x94\\xd4\\x7f\\xcf\\x85\\x79\\x30\\x1f\\x16\\xca\\xd7\\xf5\\x4f\\xc2\\x22\\x78\\x0a\\x16\\xc3\\x12\\x78\\x1a\\xae\\xc1\\x6b\\x34\\x89\\x8e\\xa1\\x0f\\xd2\\x64\\x3a\\x96\\x8e\\x83\\xdb\\x60\\xa7\\x0f\\xd1\\x14\\x9a\\x4a\\xf5\\xe0\\x20\\x40\\x0d\\xd4\\x48\\x4d\\x34\\x8d\\xa6\\xd3\\xf1\\x74\\x02\\x9d\\x48\\x33\\x68\\x26\\x7d\\x98\\x66\\xd1\\x49\\x34\\x1b\\x7e\\x85\\xdf\\xe8\\x23\\x34\\x87\\x4e\\xa6\\xb9\\x34\\x8f\\x4e\\xa1\\x53\\x69\\x3e\\x2d\\xa0\\xd3\\xe8\\x74\\x3a\\x83\\x3e\\x4a\\x67\\xd2\\x59\\xb4\\x90\\x9a\\x69\\x11\\x2d\\xa6\\x25\\xd4\\x42\\x4b\\xe9\\x6c\\x5a\\x46\\xcb\\xe9\\x1c\\xfa\\x18\\xad\\xa0\\x95\\xb4\\x8a\\x5a\\x69\\x35\\x7d\\x9c\\xda\\x68\\x0d\\xad\\xa5\\x75\\x74\\x2e\\x9d\\x47\\xe7\\xd3\\x05\\x74\\x21\\x7d\\x82\\x2e\\xa2\\x4f\\xd2\\xc5\\xf4\\x29\\xba\\x84\\x3e\\x4d\\x9f\\x81\\xdf\\xe1\\x16\\x7d\\x96\\x3e\\x07\\x97\\xe1\\x6b\\xba\\x94\\x2e\\xa3\\xcf\\xd3\\xe5\\xf4\\x05\\x5a\\x4f\\x57\\xd0\\x95\\x74\\x15\\x5d\\x4d\\xd7\\xd0\\xb5\\x74\\x1d\\x5d\\x4f\\x37\\xd0\\x8d\\x74\\x13\\xdd\\x4c\\xb7\\xd0\\x06\\xba\\x95\\x36\\xd2\\x6d\\xf0\\x67\\xda\\x44\\xb7\\xd3\\x66\\xba\\x03\\xbe\\x81\\x6f\\x69\\x0b\\xdd\\x49\\x5b\\xe9\\x2e\\xba\\x9b\\xee\\xa1\\x7b\\xe9\\x3e\\xda\\x46\\xf7\\xd3\\x76\\x7a\\x80\\x1e\\xa4\\x87\\xe8\\x61\\x7a\\x84\\x0a\\xb4\\x83\\x76\\xd2\\x17\\xe9\\x51\\xfa\\x12\\x7d\\x99\\xfe\\x89\\xbe\\x42\\x5f\\xa5\\xaf\\xd1\\x3f\\xd3\\x63\\xf4\\x75\\x7a\\x9c\\xfe\\x85\\x9e\\xa0\\x6f\\xd0\\x37\\xe9\\x5f\\xe9\\x49\\xfa\\x16\\x7d\\x9b\\xbe\\x43\\x4f\\xd1\\x77\\xe9\\x69\\xfa\\x37\\xfa\\x1e\\x15\\xe9\\x19\\xfa\\x3e\\x3d\\x4b\\x3f\\xa0\\xe7\\xe8\\x87\\xf4\\x3c\\xfd\\x88\\x7e\\x4c\\x3f\\xa1\\x9f\\xd2\\xbf\\xd3\\x0b\\xf4\\x1f\\xf4\\x33\\xfa\\x39\\xfd\\x82\\xfe\\x93\\x5e\\xa4\\x5f\\xd2\\x4b\\xf4\\x2b\\x7a\\x99\\x7e\\x4d\\xbf\\xa1\\xdf\\xd2\\x2b\\xf4\\x7f\\xe8\\x55\\xfa\\x1d\\xbd\\x46\\xff\\x45\\xbf\\xa7\\xff\\xa6\\x3f\\xd0\\x1f\\xe9\\x75\\xfa\\x1f\\xfa\\x13\\xfd\\x99\\xde\\xa0\\xbf\\xd0\\x5f\\xe9\\x6f\\xf4\\x26\\xfd\\x9d\\xde\\xa2\\xb7\\xa9\\x9d\\x3a\\x18\\x30\\xc2\\x28\\x63\\x8c\\x33\\x15\\x53\\x33\\x0f\\xe6\\xc9\\xbc\\x98\\x37\\xf3\\x61\\xbe\\xcc\\x8f\\xf9\\xb3\\x5e\\x2c\\x80\\x05\\xb2\\xde\\xac\\x0f\\xeb\\xcb\\xfa\\xb1\\xfe\\x6c\\x00\\x1b\\xc8\\xee\\x63\\x83\\x58\\x10\\x1b\\xcc\\x86\\xb0\\xa1\\xec\\x7e\\xa6\\x61\\xc1\\x6c\\x18\\xd3\\xb2\\xe1\\x2c\\x84\\x85\\xb2\\x11\\x6c\\x24\\x7b\\x80\\x85\\xb1\\x70\\xa6\\x63\\x11\\x2c\\x92\\x8d\\x62\\x51\\x2c\\x9a\\xc5\\xb0\\x58\\x16\\xc7\\xe2\\x59\\x02\\x1b\\xcd\\x12\\x59\\x12\\x1b\\xc3\\x1e\\x64\\xc9\\x6c\\x2c\\x1b\\xc7\\x1e\\x62\\x29\\x2c\\x95\\xe9\\x99\\x81\\x19\\x99\\x89\\xa5\\xb1\\x74\\x36\\x9e\\x4d\\x60\\x13\\x59\\x06\\xcb\\x64\\x0f\\xb3\\x2c\\x36\\x89\\x65\\xb3\\x47\\x58\\x0e\\x9b\\xcc\\x72\\x59\\x1e\\x9b\\xc2\\xa6\\xb2\\x7c\\x56\\xc0\\xa6\\xb1\\xe9\\x6c\\x06\\x7b\\x94\\xcd\\x64\\xb3\\x58\\x21\\x33\\xb3\\x22\\x56\\xcc\\x4a\\x98\\x85\\x95\\xb2\\xd9\\xac\\x8c\\x95\\xb3\\x39\\xec\\x31\\x56\\xc1\\x2a\\x59\\x15\\xb3\\xb2\\x6a\\xf6\\x38\\xb3\\xb1\\x1a\\x56\\xcb\\xea\\xd8\\x5c\\x36\\x8f\\xcd\\x67\\x0b\\xd8\\x42\\xf6\\x04\\x5b\\xc4\\x9e\\x64\\x8b\\xd9\\x53\\x6c\\x09\\x7b\\x9a\\x3d\\xc3\\x9e\\x65\\xcf\\xb1\\xa5\\x6c\\x19\\x7b\\x9e\\x2d\\x67\\x2f\\xb0\\x7a\\xb6\\x82\\xad\\x64\\xab\\xd8\\x6a\\xb6\\x86\\xad\\x65\\xeb\\xd8\\x7a\\xb6\\x81\\x6d\\x64\\x9b\\xd8\\x66\\xb6\\x85\\x35\\xb0\\xad\\xac\\x91\\x6d\\x63\\x4d\\x6c\\x3b\\x6b\\x66\\x3b\\x58\\x0b\\xdb\\xc9\\x5a\\xd9\\x2e\\xb6\\x9b\\xed\\x61\\x7b\\xd9\\x3e\\xd6\\xc6\\xf6\\xb3\\x76\\x76\\x80\\x1d\\x64\\x87\\xd8\\x61\\x76\\x84\\x09\\xac\\x83\\x75\\xb2\\x17\\xd9\\x51\\xf6\\x12\\x7b\\x99\\xfd\\x89\\xbd\\xc2\\x5e\\x65\\xaf\\xb1\\x3f\\xb3\\x63\\xec\\x75\\x76\\x9c\\xfd\\x85\\x9d\\x60\\x6f\\xb0\\x37\\xd9\\x5f\\xd9\\x49\\xf6\\x16\\x7b\\x9b\\xbd\\xc3\\x4e\\xb1\\x77\\xd9\\x69\\xf6\\x37\\xf6\\x1e\\x13\\xd9\\x19\\xf6\\x3e\\x3b\\xcb\\x3e\\x60\\xe7\\xd8\\x87\\xec\\x3c\\xfb\\x88\\x7d\\xcc\\x3e\\x61\\x9f\\xb2\\xbf\\xb3\\x0b\\xec\\x1f\\xec\\x33\\xf6\\x39\\xfb\\x82\\xfd\\x93\\x5d\\x64\\x5f\\xb2\\x4b\\xec\\x2b\\x76\\x99\\x7d\\xcd\\xbe\\x61\\xdf\\xb2\\x2b\\xec\\x7f\\xd8\\x55\\xf6\\x1d\\xbb\\xc6\\xfe\\xc5\\xbe\\x67\\xff\\x66\\x3f\\xb0\\x1f\\xd9\\x75\\xf6\\x1f\\xf6\\x13\\xfb\\x99\\xdd\\x60\\xbf\\xb0\\x5f\\xd9\\x6f\\xec\\x26\\xfb\\x9d\\xdd\\x62\\xb7\\x99\\x9d\\x39\\x38\\x70\\xc2\\x29\\x67\\x9c\\x73\\x15\\x57\\x73\\x0f\\xee\\xc9\\xbd\\xb8\\x37\\xf7\\xe1\\xbe\\xdc\\x8f\\xfb\\xf3\\x5e\\x3c\\x80\\x07\\xf2\\xde\\xbc\\x0f\\xef\\xcb\\xfb\\xf1\\xfe\\xf0\\x0b\\x1f\\xc0\\x07\\xf2\\xfb\\x80\\xf3\\xac\\xbc\\xcc\\x4c\\x75\\xa5\\xb9\\xd8\\x66\\xad\\xf2\\xaf\\xb6\\xd8\\xca\\xad\\x25\\xc5\\x96\\xaa\\x5a\\x8b\\xcd\\x52\\xc2\\xc7\\x17\\x99\\x6d\\x74\\xc2\\x44\\x5a\\x3e\\xc7\\xf7\\xb1\\xd9\\x36\\x8b\\xa5\\xaa\\xc2\\x5c\\x55\\x52\\x5e\\xcc\\x4c\\x55\\xb3\\x99\\xa5\\x6a\\xb6\\xaa\\xc2\\x5a\\x35\\xbb\\x46\\x35\\xa9\\xcc\\x6a\\xab\\x52\\x59\\xe5\\xbf\\x79\\xf2\\xdf\\x3a\\xe9\\xaf\\x47\\x5d\\x55\\x79\\x54\\x4c\\xec\\x68\\x55\\x4d\\x71\\xd9\\x3c\\xb3\\xb2\\x97\\x16\\xeb\\x35\\xdb\\x66\\x9e\\x6b\\x29\\xb6\\x56\\x16\\x79\\x99\\x8b\\xeb\\x6a\\x95\\x54\\x6d\\x79\\x45\\x89\\x9c\\xe2\\x65\\x56\\xeb\\x63\\xb2\\x6a\\x6c\\x54\\x9a\\x67\\x89\\xb5\\xb6\\xc8\\x52\\x61\\x9d\\xa7\\xaa\\xb5\\x56\\x59\\x6b\\xfc\\x4a\\xca\\x2d\\x36\\x4b\\x4d\\x79\\x8d\\xbc\\xe7\\x65\\xae\\xb2\\xd6\\x5a\\x2a\\x2c\\xe5\\x66\\x55\\xba\\xb9\\xb2\\xd2\\xac\\x32\\x5a\\x2a\\x6a\\xcd\\xaa\\xdc\\x32\\x4b\\xad\\x59\\x9d\\x69\\xae\\x2c\\x2a\\x31\\xd3\\xfc\\x72\\x9a\\x5d\\xae\\x9a\\x5c\\x3e\\xbb\\xd2\\xcc\\xb2\\xcb\\xca\\x59\\x76\\x4d\\xb9\\xca\\x5c\\x51\\x5d\\x66\\xe6\\x45\\x96\\x5a\\xb3\\x6a\\xb6\\x9c\\xaf\\x44\\xca\\xe7\\x61\\xa9\\xae\\x29\\xaf\\xb0\\x56\\xf1\\x85\\x96\\x5a\\x33\\x93\\x4e\\xd6\\x4a\\x40\\xbc\\xdc\\x5a\\x6b\\x56\\x57\\x28\\x68\\xf3\\xcb\\x99\\xad\\xcc\\xaa\\xae\\x91\\xe0\\xa2\\x55\\xb2\\x60\\xb5\\xe6\\x3a\\x8f\\x3a\\x25\\x2b\\xab\\x2e\\x2b\\x67\\xd5\\x35\\xe5\\x2a\\x6b\\xa5\\x65\\xb6\\xe2\\x6e\\xac\\x31\\x1a\\x65\\x0c\\xca\\x04\\x59\\xc6\\x45\\xc5\\xa0\\x8c\\x43\\x99\\x84\\x32\\x15\\xa5\\x1e\\x65\\x9a\\x22\\xa3\\xa3\\x51\\xa2\\x7e\\x34\\xe2\\x44\\x8f\\x46\\x99\\x88\\x12\\xf3\\xc5\\xc4\\xa2\\x44\\xbd\\x18\\xd4\\x8b\\x41\\xbd\\x18\\xe4\\x8b\\x41\\xbe\\x18\\x67\\x3e\\x03\\x4a\\x23\\x4a\\x13\\x4a\\xb4\\x23\\x16\\xed\\x88\\x45\\xfb\\x63\\x91\\x27\\x16\\xed\\x8a\\x45\\xbe\\x58\\xe4\\x8b\\x45\\xbe\\x58\\xe4\\x89\\x45\\x9e\\x58\\xe4\\x89\\x45\\x9e\\x58\\xc4\\x8f\\x43\\xdc\\x38\\xc4\\x8b\\x43\\xbc\\x38\\xc4\\x8b\\x43\\xbc\\x38\\xb4\\x3f\\x0e\\x71\\xe3\\x10\\x37\\x0e\\x71\\xe3\\x10\\x37\\x0e\\xed\\x8f\\x43\\xfc\\x78\\xc4\\x8f\\x47\\xfc\\x78\\xc4\\x89\\x47\\x9c\\x78\\xc4\\x89\\x47\\xfd\\x84\\x28\\x94\\xe8\\x77\\x02\\xfa\\x9b\\x80\\xf9\\x13\\xe2\\x51\\xa2\\x9d\\x09\\x68\\x67\\x02\\xda\\x99\\x80\\xf8\\x09\\x88\\x9f\\x80\\xf8\\x09\\x68\\x67\\x02\\xda\\x99\\x80\\x76\\x26\\x20\\xef\\x68\\xb4\\x73\\x34\\xf2\\x8d\\x46\\xbe\\xd1\\xc8\\x37\\x1a\\xf1\\x47\\x23\\xfe\\x68\\xc4\\x1f\\x8d\\xf8\\xa3\\x11\\x7f\\x34\\xe2\\x8f\\x46\\xfc\\xd1\\x88\\x9f\\x88\\x7e\\x25\\xa2\\x5f\\x89\\xc8\\x97\\x88\\x7c\\x89\\xc8\\x97\\x88\\x7c\\x89\\xe8\\x5f\\x22\\xf2\\x26\\x22\\x6f\\x22\\xe2\\x26\\x22\\x6e\\x12\\xe2\\x26\\x21\\x6e\\x12\\xe2\\x24\\x21\\x4e\\x12\\xda\\x95\\x84\\x76\\xa5\\xa2\\x7e\\x2a\\xea\\xa7\\xa2\\x7e\\x2a\\xea\\xa7\\x22\\x6f\\x2a\\xc6\\x35\\x15\\xf9\\x53\\x91\\x5f\\x8f\\xfa\\x7a\\xd4\\xd7\\xe3\\x79\\xbd\\xf3\\x3c\\xc6\\x45\\x8f\\xbc\\x7a\\xe4\\x35\\xa0\\x9f\\x06\\xcc\\x6f\\x40\\x7c\\x03\\xe6\\x37\\xa2\\x34\\xa1\\x7d\\x26\\xb4\\x2f\\x0d\\xf1\\xd2\\x94\\x38\\xc7\\x47\\x45\\xa1\\x8c\\x41\\x19\\x8b\\x32\\x0e\\x65\\x3c\\xca\\x04\\x94\\xa3\\x51\\x26\\xa2\\x4c\\x42\\x99\\x8a\\xd2\\x89\\x6b\\x40\\x69\\x44\\x69\\x42\\xa9\\xc4\\x39\\x3e\\x5a\\xe6\\x8d\\x89\\x8a\\x72\\xca\\x68\\x94\\x31\\x28\\x63\\x51\\xc6\\xa1\\x8c\\x47\\x99\\x80\\x72\\x34\\xca\\x44\\x94\\x49\\x28\\x53\\x51\\xea\\xfd\\xea\\xaa\\x4a\\x2c\\xb6\\x9a\\x62\\xab\\xcd\\x52\\x52\\x54\\xe1\\xf7\\x78\\x9d\\x55\\x1a\\x11\\xe6\\x5a\\x6c\\x35\\x96\\x12\\x45\\x27\\x06\\x31\\x47\\xc7\\x79\\x55\\xd5\\xd4\\xc9\\x03\\x87\\x8d\\x57\\x94\\xdb\\xcc\\xea\\x6a\\x4b\\x8d\\xd4\\x77\\x9a\\xea\\x6c\\x56\\x59\\x25\\x1a\\xe9\\xa3\\xa3\\x63\\x51\\x26\\x78\\x59\\x6a\\x6a\\xcb\\x2b\\xcd\\xb5\\x96\\x12\\x2f\\x6b\\x95\\xc5\\x52\\x3e\\xbb\\xac\\xb6\\xcc\\xb7\\xb6\\xcc\\x66\\xc1\\x74\\x8d\\x4f\\x69\\xf9\\x5c\\x67\\xda\\xb7\\xc6\\x32\\xd7\\x52\\xe5\\x3c\\x51\\x6c\\xad\\xac\\x34\\x9b\\x8b\\xa5\\x31\\x4a\\x42\\x4b\\x33\\xa5\\xc9\\x41\\x49\\x4b\\x4b\\x33\\xa0\\x34\\x7a\\x2d\\xb4\\xd8\\xac\\x91\\x35\\x95\\xc5\\xd5\\x1e\\xb5\\xf3\\xac\\x91\\x35\\x75\\xd5\\x7d\\x8a\\xcb\\x6d\\xc5\\x75\\x95\\xa5\\x15\\x96\\xf9\\xae\\xb1\\xa6\\x77\\xd7\\x31\\x69\\xd4\\x91\\x0e\\xb9\\xa9\\xb9\\x86\\x29\\xb7\\x63\\xae\\x01\\xcb\\xbf\\x48\\x8a\\x85\\x4b\\x25\\xd0\\xcd\\x26\\x9b\\xb5\\xd6\\x5c\\x6b\\x51\\xa7\\xca\\xf4\\x6a\\xbd\\x22\\x0c\\x8a\\x30\\x2a\\xc2\\xa4\\x88\\x34\\x45\\xa4\\x2b\\x62\\xbc\\x22\\x26\\x28\\x62\\xa2\\x22\\x32\\x14\\x91\\xa9\\x88\\x87\\x15\\x91\\xa5\\x88\\x49\\x8a\\x78\\x44\\x11\\x39\\x8a\\x98\\xac\\x88\\x5c\\x45\\xe4\\x29\\x62\\x8a\\x22\\xa6\\x2a\\x22\\x5f\\x11\\x05\\x8a\\x98\\x26\\x0b\\x3f\\xd9\\x1f\\x67\\x14\\x3c\\xad\\x55\\x16\\xf9\\xb0\\xa7\\x1c\\xbd\\xca\\xe2\\x6a\\x6f\\xb9\\x68\\xe4\\xa4\\x57\\xa9\\xb5\\xce\\x86\\xa9\\xf2\\xb9\\xa8\\x57\\x53\\x3e\\x5f\\xd1\\x93\\x4b\\x4a\\x49\\xca\\xe5\\xa5\\x28\\x56\\x95\\x3b\\x01\\x95\\x82\\xa9\\xab\\xf6\\x90\\x29\\xea\\xaa\\x95\\x40\\xba\\x4d\\x04\\x14\\x9e\\xba\\x6a\\x4f\\x85\\x46\\x4a\\xc8\\x2c\\x75\\xd5\\x1e\\x32\\x49\\x5d\\xb5\\x17\\x72\\xd4\\x55\\x7b\\x21\\x45\\x5d\\xb5\\xa7\\xc2\\x50\\x57\\xed\\x59\\x6c\\xb3\\xd6\\xd4\\x14\\x99\\x6d\\x5e\\xb6\\xf2\\xaa\\xd9\\x32\\xae\\x57\\x89\\xb9\\xa6\\xdc\\x6c\\x9d\\x5f\\x6e\\x56\\xc8\\x5c\\xe5\\xef\\x53\\xbc\\xc0\\x56\\x5e\\x51\\x51\\x5e\\x5c\\x5b\\x5e\\x1c\\xe0\\x4c\\x4b\\x31\\xa8\\xb0\\x94\\xd6\\xfa\\xba\\x1f\\x50\\xcd\\x8e\\x34\\x57\\xd4\\xfa\\x57\\x98\\x6d\\xb3\\x2d\\x36\\xb9\\x1a\\x4a\\x07\\xcb\\xa5\\x83\\xaa\\x0a\\xe9\\xaf\\x1c\\xb1\\x8a\\xaa\\xba\\x4a\\x0c\\x80\\x94\\x54\\x67\\x2b\\x35\\xb0\\xb8\\x4c\\x51\\xcc\\x91\\xff\\x66\\x48\\x7f\\x79\\x79\\x64\\x79\\x2d\\xaf\\x88\\x2c\\xaf\\x95\\xe3\\x60\\xae\\xa8\\x55\\x9b\\x6b\\x25\\xe1\\x67\\xae\\xac\\xb6\\xd8\\x6a\\xcc\\x55\\x25\\xd2\\x9e\\x77\\xba\\xc5\\x56\\x69\\xae\\x2a\\x29\\xaa\\xa8\\xe9\\xd5\\x95\\x54\\x0a\\xcc\\x69\\x9e\\xec\\x92\\xdc\\x29\\x44\\xa5\\x1a\\xd5\\xc6\\x62\\x9b\\xd5\\x5c\\xcb\\xcb\\x8a\\xcc\\x36\\x9e\\x2b\\xfd\\xa9\\x2d\\x32\\xdb\\xbc\\x53\\x5d\\xb1\\xf0\\x36\\xbb\\x92\\x1e\\xa9\\xca\\x94\\xcf\\xc3\\xac\\x48\\x75\\xaa\\x0c\\xa5\\x36\\x2b\\x88\\xa9\\xd6\\xd9\\xd6\\x2a\\xcb\\x63\\x1e\\x66\\x45\\xfa\\x18\\xba\\x5a\\x81\\x4f\\x71\\x57\\x5a\\x66\\x8e\\xc6\\xee\\x2b\\x3a\\x4a\\xaf\\x36\\x16\\x9b\\x25\\xb0\\x12\\x59\\x78\\x98\\x90\\xc3\\x82\\x1c\\x26\\x85\\xc3\\x22\\x0b\\x6f\\x53\\x89\\xb5\\x56\\x69\\x34\\xde\\x16\\x57\\xd2\\xc3\\x84\\xcc\\x16\\x45\\xaa\\x4d\\x0a\\xa2\\x45\\x16\\x3e\\xe9\\x6e\\x76\\xcc\\xee\\x69\\x47\\x4c\\x14\\xca\\x68\\xdf\\x74\\xb7\\x26\\xe9\\x3b\\xdb\\x6d\\xc7\\x67\\xbc\\x1b\\x42\\x59\\x57\\x5a\\x3d\\x41\\xae\\x18\\xea\\x72\\x59\\x78\\x4c\\x40\\xcb\\xcb\\xd1\\xf2\\x09\\x8a\\xe5\\xe5\\x4a\\x74\\x26\\xa0\\x8d\\xe5\\x8a\\xf4\\x9e\\xe0\\x32\\xdf\\x67\\xa2\\x1b\\xfc\\x9c\\xae\\xb4\\x6f\\x86\\xbb\\x41\\x8f\\xb9\\xed\\xa8\\x33\\xe5\\xf2\\x50\\x57\\xc8\\xc2\\x37\\xd3\\x5d\\xaf\\xa2\\x9b\\x9e\\x12\\x88\\x0a\\x59\\xf0\\xcc\\x12\\x6b\\x2d\\xaf\\x28\\xb1\\xd6\\xaa\\xb3\\x94\\xfc\\x55\\x4a\\xfe\\x2c\\xf7\\xfc\\x55\\xee\\xf9\\xb3\\x94\\xfc\\x55\\x4a\\x20\\xab\\xcc\\xd5\\xd6\\x9a\\x5a\\x9b\\xb5\\xba\\xcc\\xe2\\x31\\x09\\x9d\\xb5\\xa2\\xb3\\x93\\x14\\x67\\xad\\xb2\\xf0\\x9b\\x54\\x56\\x57\\x35\\xdb\\x6c\\xab\\xab\\xac\\x30\\xd7\\xd5\\xfa\\x59\\xdd\\xf7\\xd4\\x39\\x0a\\xb7\\x4d\\xe1\\xce\\x71\\xe7\\xb6\\xb9\\x73\\xe7\\x28\\xdc\\x36\\x45\\x4c\\x56\\x72\\xd5\\xc8\\xc2\\x67\\xb2\\x5b\\xc4\\x6a\\x7a\\x14\\x69\\x0c\\xce\\x6c\\x63\\xa2\\x93\\x50\\xa6\\xa2\\x54\\x46\\xca\\xe8\\x84\\x18\\x5f\\x94\\x4a\\x6b\\x53\\x76\\x62\\xd5\\xb9\\x0a\\x53\\xad\\x22\\xf2\\x94\\xb2\\xad\\x53\\xca\\x36\\x0f\\xdd\\xad\\x43\\x77\\xf3\\x14\\x77\\xeb\\x64\\xa1\\xca\\x93\\x9a\\x88\\xaa\\x4e\\xfa\\xeb\\x97\\xd7\\xcd\\xf5\\x3a\\xf7\\x3d\\x8f\\x3c\\xac\\x03\\x75\\xd8\\x42\\xa6\\xba\\xb9\\x31\\xcf\\x2d\\x5d\\xe0\\x96\\x5e\\xe0\\x56\\xdf\\xa6\\x29\\x41\\x58\\xa8\\x34\\xcc\\x69\\x5d\\x6d\\x61\\x61\\x57\\x5b\\x48\\x35\\x29\\x6d\\xd5\\xac\\x74\\x91\\x3e\\x93\\x6a\\x2a\\xcc\\x35\\x65\\x4a\\xda\\xea\\x96\\x56\\xda\\xbd\\xd2\\xc5\\x9a\\x6a\\xcb\\x94\\x5e\\x57\\xea\\x00\\xe4\\x94\\x4f\\xaa\\x3c\\x52\\x61\\x5a\\xce\\x21\\xa7\\x03\\x52\\xbb\\xcc\\xc1\\x93\\x72\\x80\\xe4\\xb4\\x7f\\xaa\\xf3\\x72\\x4b\\xe9\\xce\\xe5\\x4e\\x44\\x4e\\xf6\\xea\\xea\\x4f\\x94\\xbe\\xc8\\x50\\x6c\\x29\\x29\\xaf\\xa8\\x30\\x2b\\x18\\x26\\x37\\x32\\x93\\x1b\\x99\\xa9\\x07\\x99\\xbf\\xa9\\x1b\\x81\\xcf\\x04\\xb7\\x7c\\x13\\xdc\\xf2\\x4d\\xe8\\x99\\x6f\\x42\\xf7\\x7c\\x59\\x5d\\x36\\xfb\\x4c\\x72\\xc3\\x98\\xe4\\x86\\x31\\xa9\\xa7\\xa3\\x93\\xdc\\x1c\\x9d\\xd4\\x1d\\x2f\\xcf\\x0d\\x23\\xcf\\x0d\\x23\\xaf\\xa7\\x1d\\x79\\xdd\\xf3\\x15\\x74\\xe9\\xfa\\x62\\xdf\\x8a\\x41\\x95\\xeb\\x15\\x9e\\x50\\x2a\\x8b\\x72\\xc2\\xe0\\x86\\x6e\\xe8\\x81\\xee\\x8b\\x1d\\x2b\\x6a\\xca\\xd5\\x58\\x49\\x1b\\xbb\\xd2\\xbe\\x26\\x77\\x1e\\x53\\x17\\x4f\\xaf\\xae\\xae\\x15\\x15\\xdd\\x79\\x4d\\x5d\\x08\\x01\\xe9\\x3d\\x23\\x93\\xee\\x66\\x2d\\x76\\xaa\\xf2\\x4e\\xa0\\x7b\\x8f\\xaa\\xe4\\x1d\\xdf\\x33\\xef\\x84\\xae\\xa8\\xfa\\x4e\\x70\\x37\\x6d\\x82\\x1b\\xe8\\x04\\x37\\x53\\x7a\\x4d\\xe8\\x6e\\x67\\xc0\\xc4\\x1e\\x90\\x81\\x19\\x3d\\x59\\x7d\\x32\\xbb\\xa2\\x16\\x98\\x79\\xe7\\xd9\\x2e\\xdf\\xbc\\xa4\\x2e\\x12\\xeb\\x88\\x5b\\x9e\\xac\\x3b\\xf2\\x64\\xb9\\x45\\x74\\x92\\xbb\\xd9\\x93\\xba\\xcc\\xee\\xdd\\xad\\x17\\x54\\x4e\\xe7\\xb8\\xa1\\xe6\\xdc\\x81\\x9a\\xe3\\x56\\x66\\x93\\xdd\\x4a\\x7a\\x72\\x0f\\x17\\xfd\\x26\\x77\\x6b\\x3e\\x93\\xbb\\xb2\\x05\\xe6\\xde\\x01\\x9a\\xeb\\x06\\x9a\\xe7\\x16\\xed\\x3c\\x77\\xb3\\xf3\\xba\\xcc\\xf6\\xce\\x73\\x35\\xdb\\xde\\x79\\x77\\x78\\xe0\\x9b\\xe7\\x56\\x16\\x01\\x53\\x7b\\x18\\x16\\x50\\xd0\\xb3\\xc6\\x17\\x74\\xaf\\xf1\\xd3\\xba\\xbc\\xea\\x35\\xad\\x7b\\x41\\xfa\\x4c\\xeb\\x32\\xd4\\x3b\\xb5\\xa2\\xba\\xcc\\x2c\\x2f\\xda\\xf8\\x9a\\x94\\xb5\\x12\\x79\\xc7\\xd3\\x54\\xab\\x1c\\xf5\\x9a\\x60\\xc5\\x94\\xef\\xa4\\xca\\x72\\xc9\\x0f\\x65\\x27\\xcf\\x4d\\xd9\\x7b\\x52\\xa5\\x65\\xb6\\xa2\\x14\\x58\\x6e\\xad\\x35\\x77\\x5b\\x0b\\x52\\xc9\\x0c\\x5c\\x6f\\xa9\\x35\\x7b\\x20\\x03\\x9f\\x66\\xa9\\x35\\x33\\x53\\xad\\x99\\x4b\\xe0\\xaa\\x0c\\x73\\x75\\xb5\\x99\\x3e\\x5c\\x47\\xb3\\xea\\x3c\\x90\\x83\\xe5\\x94\\x59\\x59\\xae\\xb9\\xce\\x03\\x69\\x98\\xa1\\xac\\xdc\\x77\\x82\\x1b\\x74\\x2f\\x3c\\xe1\\xdc\\xf7\\x36\\x77\\xf9\\x61\\x71\\xf7\\xc3\\xe2\\xf4\\xa3\\xdc\\xe9\\x47\\xdf\\xba\\xee\\x59\\x15\\x2b\\x1f\\x93\\x8c\\xf0\\xb0\\x2a\\xf4\\xf2\\x48\\x15\\xab\\x37\\xd0\\xaa\\x3a\\x56\\x5c\\x56\\xee\\xeb\\xee\\x54\\xaf\\x1e\\xd9\\x7d\\xad\\xee\\x61\\xa9\\x73\\x0f\\x8b\\xd5\\x15\\x16\\xe5\\xca\\x34\\x0a\\xaf\\x54\\xf1\\x4a\\x34\\x0e\\xaf\\x40\\xe3\\xa2\\x9c\\x2b\\x4f\\x78\\xa5\\x1b\\xe5\\x5c\\x31\\x72\\xae\\x38\\xe1\\x15\\x32\\x5e\\x69\\xc6\\x45\\xe3\\x95\\x6f\\x34\\xae\\x0c\\x44\\x23\\x5e\\x34\\xe2\\xe1\\x78\\x1c\\x17\\x8d\\xf9\\xa2\\xf1\\xca\\x3a\\xda\\x99\\x1f\\x57\\x04\\x70\\x4a\\x16\\x17\\x83\\x76\\xc5\\x20\\x5e\\x0c\\x5e\\x79\\xc7\\x20\\x5e\\x2c\\xea\\xc5\\x3a\\xf7\\x11\\x3f\\xd6\\xb9\\x82\\x83\\xe7\\xe3\\x10\\x27\\x0e\\xed\\x89\\x43\\xfd\\x78\\x3c\\x1e\\x8f\\xc7\\xe3\\x9d\\xc7\\xd1\\xef\\x78\\xf4\\x3b\\x1e\\xfd\\x8e\\x47\\xbb\\xe3\\x4d\\xea\\xa9\\x72\\x87\\xaf\\x9e\\xa7\\x88\\xa9\\xca\\xb0\\x3c\\x4f\\xb9\\x76\\x98\\xea\\x2c\\x02\\xaf\\x79\\xce\\x94\\xba\\x40\\x51\\x5c\\xa0\\x88\\xca\\xf2\\x2a\\x79\\x2e\\x63\\x29\\xb6\\x56\\x95\\x78\\x59\\xe6\\x17\\x57\\x98\\x2b\\x4b\\x8a\\x2a\\x94\\x89\\x48\\x9a\\x62\\x75\\x8c\\xb2\\xfe\\x10\\x6d\\x52\\xbc\\x89\\x36\\x29\\xeb\\x5d\\xd1\\x26\\xe5\\xfa\\x3d\\xda\\xa4\\x94\\x5a\\x74\\x9a\\x73\\xdd\\x0a\\xd7\\x15\\xe2\\xf0\\xfa\\x3f\\x2e\\x1e\\xf7\\xe3\\x9d\\xeb\\x39\\xb8\\x3f\\x1a\\xbd\\x1e\\x8d\\x5e\\x8e\\x46\\x2f\\x93\\xd0\\xcb\\x24\\x8c\\x62\\x2a\\x96\\x72\\x2a\\xae\\x0f\\xa5\\x62\\x54\\x53\\xb1\\x94\\x0c\\x88\\x67\\x40\\x3c\\x03\\x96\\x92\\x01\\xcf\\x1b\\xf1\\x3c\\xae\\x67\\xc6\\xe1\\x7a\\x66\\x9c\\x11\\xa3\\x6d\\xc4\\xd2\\x34\\x62\\xd4\\x9d\\xeb\\x9c\\x46\\xb4\\xc7\\x88\\xfc\\x46\\xb4\\xc7\\x88\\x76\\x18\\xb1\\x14\\x8c\\xe8\\x97\\x11\\xed\\x32\\x22\\xaf\\x09\\x79\\x4c\\xc8\\x63\\x42\\x1e\\x13\\xf2\\x98\\x90\\xc7\\x84\\x3c\\x26\\xe7\\xba\\x0d\\xf2\\x98\\x90\\xd7\\x84\\x7c\\x26\\xe4\\x33\\x21\\x9f\\x09\\xf9\\x4c\\xc8\\x87\\xe5\\x15\\x97\\xe6\\x5c\\xef\\x41\\xfe\\x34\\xe4\\x4f\\x43\\xfe\\x34\\xe4\\x4f\\x43\\xbe\\x34\\xe4\\x4b\\x43\\xfc\\x34\\xe7\\xba\\x8d\\x82\\x13\\x8f\\xad\\x28\\x5e\\x69\\x45\\xd1\\xa6\\x54\\x2c\\x77\\x65\\xdd\\x2b\\xda\\x94\\x1a\\x83\\xd2\\x79\\x3e\\x0e\\x65\\x3c\\xca\\x04\\x94\\xa3\\x51\\x26\\xa2\\x4c\\x42\\x99\\x8a\\x52\\x8f\\x12\\xeb\\x5b\\xaa\\x11\\x25\\xd6\\xbb\\x54\\xac\\x77\\x7a\\xe4\\xd7\\x23\\xbf\\x1e\\xf9\\xf5\\xc8\\xaf\\x47\\x7e\\x3d\\xf2\\xeb\\x91\\x5f\\x8f\\xfc\\x7a\\xe4\\xd7\\x23\\xbf\\x1e\\xf9\\xf5\\xc8\\xef\\xac\\xef\\x7a\\xe4\\xd7\\x23\\xbf\\x1e\\xf9\\x0d\\xc8\\x6f\\x40\\x7e\\x03\\xf2\\x1b\\x90\\xdf\\x80\\xfc\\x06\\xe4\\x37\\x20\\xbf\\x01\\xf9\\x0d\\xc8\\x6f\\x40\\x7e\\x03\\xf2\\x1b\\x90\\xdf\\x80\\xfc\\x06\\xe4\\x37\\x20\\xbf\\x01\\xf9\\x8d\\xc8\\x6f\\x44\\x7e\\x23\\xf2\\x1b\\x91\\xdf\\x88\\xfc\\x46\\xe4\\x37\\x22\\xbf\\x11\\xf9\\x8d\\xc8\\x6f\\x44\\x7e\\x23\\xf2\\x1b\\x91\\xdf\\x88\\xfc\\x46\\xe4\\x37\\x22\\xbf\\x11\\xf9\\x4d\\xc8\\x6f\\x42\\x7e\\x13\\xf2\\x9b\\x90\\xdf\\x84\\xfc\\x26\\xe4\\x37\\x21\\xbf\\x09\\xf9\\x4d\\xc8\\x6f\\x42\\x7e\\x13\\xf2\\x9b\\x90\\xdf\\x84\\xfc\\x26\\xe4\\x37\\x21\\xbf\\x09\\xf9\\xd3\\x90\\x3f\\x0d\\xf9\\xd3\\x90\\x2f\\x0d\\xf9\\xd2\\x90\\x2f\\x0d\\xf9\\xd2\\x90\\x2f\\x2d\\x49\\x5d\\x22\\x5f\\x6a\\x78\\xc8\\x4b\\x7f\\xce\\xee\\x24\\x09\\x9b\\x59\\x92\\xb3\\x7b\\xc1\\x66\\x93\\x8a\\xcd\\x26\\x15\\x9b\\x45\\x2a\\x36\\x3b\\x3d\\x9e\\xd7\\xe3\\x79\\x3d\\x36\\x63\\xbd\\x73\\x19\\x16\\x71\\x0c\\xce\\xe6\\x84\\xe7\\xd3\\x9c\\xdd\\x1b\\xee\\x27\\xe1\\xbe\\x1e\\x9b\\xb1\\x1e\\x9b\\xb1\\x1e\\xf3\\x27\\x22\\x5f\\xa2\\x73\\xb9\\x1d\\x79\\x93\\x9c\\x12\\xf9\\x93\\x30\\x7f\\x92\\x73\\x79\\x1c\\xfd\\x49\\x74\\xda\\x81\\xcd\\xdb\\x80\\xc7\\x0d\\xce\\x65\\x64\\xcc\\x67\\xc0\\xee\\xc0\\xe0\\xf4\\x03\\xbb\\x11\\xbd\\xb3\\x1b\\x41\\xbd\\x34\\xe7\\xf2\\x2d\\x2e\\xd7\\xe2\\x60\\x8a\\xcb\\xb6\\x51\\x51\\x51\\x49\\xca\\xf3\\xf7\\xc4\\xe1\\x80\\x5e\\x77\\xbb\\x9f\\xa7\\xe7\\x3f\\xd2\\x9f\\xf4\\x87\\x8b\\x70\\x51\\x25\\x00\\xf0\\x31\\x00\\xf6\\x42\\xcf\\xa2\\xdb\\x1f\\xa9\\xde\\x72\\x5c\\xe3\\x59\\x8e\\x6b\\xf6\\x0c\\x69\\xcf\\x5d\\x47\\x25\\xf0\\x31\\x8e\\xef\\x50\\xeb\\xa4\\xe3\\x9a\\xea\\x2d\\x9e\\xe5\\xdc\\xef\\xa6\\xf7\\xa3\\x1b\\x9a\\xa4\\xf7\\xa3\\xac\\x27\\xe3\\x41\\x0c\\xc4\\x08\\xa0\\xd3\\x08\\x90\\x97\\x6f\\x2a\\xd0\\x68\\x32\\x5e\\x01\\xff\\x47\\x32\\x04\\xf5\\xe4\\x69\\xf9\\x42\\x5c\\x90\\x30\\xb2\\xa0\\xb0\\x54\\x53\\x9f\\x97\\x2f\\xd0\\x10\\xf3\\xab\\x9e\\xe0\\x09\\xc5\\xc5\\xda\\xa2\\xa0\\xe0\\x60\\x01\\x0a\\x04\\x30\\x68\\x8d\\x9d\\x40\\xc0\\x50\\xa8\\x8f\\x10\\x88\\x4e\\xd0\\x14\\x96\\x46\\x08\\x54\\xa7\\x29\\xd1\\x08\\x27\\xb2\\x05\\x1e\\x3a\\xad\\x73\\x24\\xf1\\x36\\x98\\x8a\\x4d\\x39\\xd3\\xf3\\x83\\xb5\\xc1\\x41\\xf5\\xf9\\x1a\\x21\\x3b\\x3b\\x3f\\x58\\x48\\x29\\x08\\xd2\\x08\\x89\\x52\\x2a\\xb1\\xa0\\x40\\xd3\\xa1\\x28\\x99\\x4b\\x84\\x91\\xd9\\xf9\\xc1\\xb8\\xa7\\x11\\xa2\\xa4\\xf3\\x51\\x92\\xe6\\x89\\xec\\x7c\\x4d\\xa9\\xa6\\xbe\\xde\\xac\\x11\\xbc\\xb3\\xf3\\x0b\\x83\\x34\\x82\\x46\\x3a\\xe7\\x2d\\xa5\\x12\\xa4\\x54\\x42\\x61\\x50\\x61\\x41\\x41\\x41\\x90\\x40\\xc2\\x0b\\x0a\\xb4\\x02\\x64\\xe7\\x5b\\x0a\\x0a\\x22\\x04\\xa6\\xd3\\x98\\x34\\x02\\x0f\\x31\\x97\\x68\\x04\\x95\\x21\\x3b\\x5f\\x50\\x69\\xf5\\x82\\x5a\\xab\\x0f\\x0a\\x0e\\x2e\\x10\\x48\\x61\\x84\\xc0\\x75\\xda\\x60\\x6d\\xb0\\xa6\\xa4\\x43\\x55\\xa4\\xd7\\x48\\x67\\x14\\x72\\xe9\\xaf\\xc0\\x0b\\x4d\\xc5\\x02\\x0b\\x0b\\xd6\\x08\\x6a\\x83\\xa6\\x5e\\x53\\x2f\\x90\\xf0\\x8e\\x28\\x55\\x88\\xc0\\x43\\x1f\\xc9\\x2f\\xcc\\x0e\\x32\\xe7\\x14\\xe4\\x6b\\x0b\\x82\\x35\\x42\\xca\\xe4\\x7c\\x81\\x84\\x07\\x49\\x4e\\x21\\x73\\x84\\xa0\\xd2\\x09\\x1e\\x86\\xf0\\x4e\\xa0\\x4a\\x68\\xd4\\x3a\\xc1\\x43\\xab\\xd7\\x6a\\x04\\xd0\\xea\\xcd\\x02\\x2d\\x2a\\x15\\x48\\xb1\\x40\\x0a\\x05\\x55\\x58\\x84\\xe0\\xa1\\xd3\\x48\\x46\\xfa\\x18\\x8a\\x5f\\xe1\\x50\\xa4\\x91\\x10\\x84\\x94\\xc2\\x02\\x49\\xa5\\xd0\\x28\\x1b\\xe9\\xa9\\xeb\\xf4\\xf0\\x01\\x83\\x49\\x1f\\x16\\xec\\x0a\\xb6\\x97\\xae\\x7b\\xf0\\xbd\\x15\\x14\\x12\\xae\\x15\\xc0\\x20\\xf0\\x90\\x42\\x8d\\xa9\\x5e\\x6b\\x96\\x0a\\x42\\x8e\\x14\\x04\\x49\\xd1\\x14\\x34\\x41\\x42\\x8a\\x2b\\x3e\\x02\\x0b\\xd1\\x9a\\x8d\\x0a\\x85\\xcf\\x3d\\xb2\\x0b\\xc3\\xb3\\xf3\\xa5\\xcc\\x29\\x77\\xcb\\xe4\\xab\\x93\\x1d\\xea\\xf4\\xf1\\x66\\xa6\\xfc\\xe0\\x20\\x6d\\x70\\x41\\x58\\x70\\x84\\xe0\\xa7\\xeb\\xa0\\xd4\\x24\\x94\\x98\\x8d\\x11\\x82\\xbf\\x4e\\x20\\x85\\x1a\\x8d\\xe0\\x6b\\x98\\x28\\x65\\xd7\\x08\\xbe\\x5a\\x7d\\x81\\xe0\\x27\\xed\\xe5\\xe4\\x6b\\x04\\x3f\\xad\\xbe\\x20\\x42\\xe8\\xa5\\xd3\\x08\\x01\\x72\\x48\\x34\\xaf\\x70\\x28\\xae\\xd7\\x9a\\x05\\x7f\\x43\\xa1\\xa6\\xbe\\x50\\x23\\xf8\\x6b\\xf5\\xda\\x08\\x21\\x40\\x97\\x91\\x9b\\xdf\\xc1\\x4b\\x8c\\x05\\xc3\\x05\\x3f\\x8b\\x76\\x7e\\x84\\x10\\xa8\\xcb\\x78\\x24\\x3f\\x63\\xb2\\x72\\x30\\x28\\xb8\\x60\\xb8\\xd0\\x47\\x3e\\xde\\x5b\\xd7\\x01\\xbd\\x0c\\x79\\xf9\\x1d\\xbd\\x7a\\x19\\x04\\x62\\xd6\\x0b\\xbd\\xc2\\xa5\\x4a\\x2a\\xd0\\x10\\x7d\\x87\\xaf\\xf4\\xc7\\x8f\\x86\\xe8\\x05\\xd2\\x5f\\xab\\x11\\x58\\x48\\x76\\x7e\\x87\\x14\\x3c\\x81\\x87\\xe8\\xeb\\xeb\\x35\\x32\\x6d\\x58\\xb0\\x56\\x20\\x66\\x67\\x3a\\x48\\x39\\x2f\\x65\\xa1\\x21\\xf2\\x91\\x02\\xc1\\xd7\\x90\\x2e\\xf8\\x19\\xd2\\x0b\\x05\\xda\\xbd\\xa8\\xee\\x51\\x80\\x1d\\x00\\x7d\\xb4\\x46\\x81\\x18\\x04\\x18\\xd7\\x49\\x08\\x91\\xcb\\xaa\\x8f\\x0e\\x3a\\x80\\x9a\\x72\\xf3\\x85\\x5e\\x5a\\xbd\\xc6\\x24\\xf8\\x68\\xf5\\x82\\xb7\\x56\\xe0\\x85\\x7a\\x4d\\xa1\\x40\\xcc\\x2f\\x05\\x04\\x10\\xf0\\x07\\xbd\\xbe\\xbe\\xb0\\xa3\\xb7\\x3a\\x5c\\xa8\\x0b\\x0f\\x1a\\x56\\x10\\x21\\xf4\\xd5\\x75\\x40\\x9f\\xf0\\x08\\xa1\\x9f\\xae\\x83\\x48\\xb2\\xbf\\xae\\x83\\x4a\\x72\\x80\\xae\\x83\\x49\\x72\\xa0\\xae\\x83\\x4b\\xf2\\x3e\\x5d\\x87\\x4a\\x92\\x83\\x74\\x1d\\x6a\\x49\\x06\\xe9\\x3a\\x3c\\x24\\x39\\x58\\xd7\\xe1\\x29\\xc9\\x21\\xba\\x0e\\x2f\\x49\\x3e\\xa0\\xd3\\x44\\x0a\\xe4\\xd1\\x08\\x21\\x4c\\x4e\\x3c\\x1e\\x21\\x84\\xcb\\x09\\x5b\\x84\\x30\\x54\\x07\\x82\\x5f\\xf8\\xff\\x85\\x8d\\xf7\\xeb\\x3a\\x60\\x68\\x78\\x84\\xa0\\xd1\\x75\\x10\\x49\\x06\\xeb\\x3a\\xa8\\x24\\x87\\xe9\\x3a\\x98\\x24\\xb5\\xba\\x0e\\x2e\\xc9\\xe1\\xba\\x0e\\x95\\x24\\x43\\x74\\x1d\\x6a\\x49\\x86\\xea\\x3a\\x3c\\x24\\x39\\x42\\xd7\\xe1\\x29\\xc9\\x91\\xba\\x0e\\x2f\\x49\\xea\\x74\\x9a\\x64\\xb9\\xaa\\x45\\xe8\\x34\\x85\\x42\\x40\\xa1\\xc6\\xa0\\x15\\x48\\xa1\\x41\\x2e\\x0e\\x52\\x28\\xe8\\xa4\\xfa\\x16\\xa9\\x13\\x22\\xc2\\x85\\x88\\xb0\\x08\\x61\\x94\\x4e\\xa3\\x49\\xd7\\xdc\\xa3\\x24\\xb4\\xe6\\x44\\xad\\xd4\\x8d\\xfd\\xa1\\x46\\x50\\x70\\x41\\x84\\x10\\xe5\\x2a\\x1e\\xd2\\x5f\\x18\\x15\\xd6\\xa1\\x22\\xfd\\x4c\\xf9\\x51\\x05\\xb2\\x83\\xd1\\xee\\x91\\xb9\\xf3\\x74\\x8c\\x4e\\x13\\x2f\\xdb\\x1b\\xab\\x03\\x81\\x98\\xee\\x24\\x11\\x48\\xf8\\x5d\\xc9\\xa5\\xe3\\xd0\\xff\\xa8\\x3c\\x06\\x18\\xc7\\x69\\x13\\x3b\\x62\\x48\\xbf\\xb0\\x08\\x21\\x4e\\xa7\\x49\\xd6\\xa4\\xdf\\xc3\\x5e\\x01\\x0c\\xe6\\xc4\\x08\\x21\\x5e\\x17\\x39\\x20\\x39\\x42\\x48\\xf8\\x6f\\xaa\\x02\\x31\\x14\\x27\\x46\\x08\\xa3\\x75\\x1d\\x14\\xfa\\x87\\x68\\x22\\x35\\xe9\\x52\\xe3\\x15\\x68\\xc8\\x84\\xfa\\xfa\\x74\\x6d\\xba\\xd6\\xac\\xc9\\x2f\\x0a\\x92\\xba\\x45\\xad\\xbe\\x33\\x81\\x90\\x7e\\x7d\\xc3\\x22\\x84\\x44\\x9d\\x00\\xfd\\x05\\x1e\\x22\\xf0\\x10\\x59\\x45\\xf0\\x32\\x84\\x5b\\xea\\x23\\xb5\\x1a\\x4d\\x72\\x7d\\x62\\x84\\x90\\xd4\\x75\\x5a\\x13\\xa9\\x60\\x08\\x5c\\xab\\x97\\xb4\\x34\\x42\\xa1\\xd4\\xde\\x53\\x1e\\xc9\\x7f\\x91\\x6a\\x98\\x26\\xe8\\x45\\x1a\\xca\\x06\\x15\\xe8\\xa5\\x3e\\xd0\\xd3\\xa0\\xa9\\xd7\\xca\\xda\\xda\\xb4\\x42\\x81\\x1b\\x7a\\x36\\xa5\\x42\\xa9\\x1f\\x52\\x3a\\x7b\\x6a\\x28\\x2c\\xd1\\x0a\\xcc\\x60\\x2e\\xc9\\xce\\x17\\xa8\\xc1\\x1c\\x24\\x30\\x43\\xa1\\xd4\\x07\\xf5\\xcc\\x63\\xd6\\x6a\\x34\\x02\\x0f\\xd5\\xa6\\x99\\x13\\x83\\xb4\\x82\\xa7\\x21\\x4d\\xa0\\x21\\x82\\xa7\\x41\\x66\\x29\\xd4\\xdc\\x8d\\x44\\xab\\xf4\\x76\\xdc\\x50\\x28\\xc5\\x5e\\x15\\x62\\x16\\x54\\x77\\xa0\\x0a\\x3c\\x54\\xf2\\x28\\x44\\x36\\x22\\xa4\\xb0\\x24\\x5b\\xe9\\xe5\\xba\\xb8\\x0a\\x22\\x84\\x31\\x52\\x0c\\x34\\x1a\\x8d\\xa0\\x0a\\xc5\\x18\\x68\\x93\\x13\\x23\\x84\\x07\\xe5\\xc3\\x82\\xa7\\x56\\xaf\\xd1\\x68\\xd2\\xb4\\xe9\\x12\\x99\\x54\\x5a\\xc9\\x72\\xc8\\x24\\x07\\x30\\xa2\\x90\\x9b\\x1f\\xa9\\x49\\xd6\\x06\\x07\\x49\\x16\\xe3\\x41\\x8d\\x64\\x8b\\x33\\xe4\\xea\\x10\\x41\\x15\\x32\\xc1\\x7d\\xf4\\x55\\x0a\\xea\\x6e\\x35\\x18\\x4b\\x46\\x2b\\x55\\xe3\\xb1\\x68\\x81\\xc1\\x59\\x34\\x85\\xd2\\xf0\\xdc\\xd3\\x45\\x67\\x51\\x8e\\xd3\\x69\\x35\\x91\\x52\\xd4\\xd2\\x72\\xf2\\x35\\xc9\\x05\\x91\\x1d\\x91\\xa4\\x6f\\x78\\x84\\xf0\\x90\\xeb\\x70\\xb6\\xfb\\xe1\\x94\\xee\\xda\\x77\\xd5\\x49\\xd5\\x09\\x89\\xe1\\x77\\x05\\xd5\\xeb\\x84\\xa4\\xf0\\x7a\\x8d\\x26\\x59\\xaa\\x2c\\xf5\\x89\\x77\\xd1\\x11\\xb8\\x21\\x52\\x88\\x0c\\x8f\\x10\\x0c\\xae\\x1a\\xe6\\x8c\\xae\\x54\\xb9\\xb4\\x9a\\x64\\x4d\\xa4\\x36\\x11\\xe1\\x8c\\xba\\x0e\\x4f\\x1e\\xa2\\xff\\xbf\\xa8\\x8a\\xe9\\xff\\x7f\\xd5\\x3e\\xc9\\x7c\\xa9\\x7f\\x49\\xd6\\x26\\x06\\x05\\xbb\\x95\\x77\\x70\\x01\\xda\\x68\\x92\\x82\\xe1\\xf4\\x3f\\x4d\\xf2\\x3f\\x58\\x8b\\x01\\x40\\x3f\\x5c\\x2e\\xa7\\xeb\\x04\\xe8\\xa7\\x34\\xce\\x4e\\x90\\xda\\x61\\x9f\\x48\\x21\\x2e\\x2c\\x42\\x18\\x7f\\x8f\\xe3\\x13\\x74\\x1d\\x40\\xfa\\xf6\\x11\\xe2\\xc3\\x22\\x84\\x89\\x3a\\x61\\x74\\x58\\x84\\x90\\x21\\x45\\xcd\\xa4\\xd5\\x44\\x6a\\xd2\\xea\\xb5\\x66\\x67\\x9c\\x32\\x75\\x52\\x75\\x14\\x32\\xc2\\x23\\x84\\x87\\x75\\x9d\\x00\\xc6\\xf0\\x08\\x21\\x4b\\xd7\\x09\\x44\\x4a\\x4c\\xd2\\x75\\x12\\xf9\\x48\\xb6\\xae\\x93\\xc8\\x47\\x1e\\x91\\x74\\x4c\\xe1\\x11\\x42\\x8e\\xa4\\x23\\x25\\x26\\x4b\\x3a\\x52\\x22\\x57\\xd2\\x91\\x12\\x79\\x92\\x4e\\x6a\\x78\\x84\\x30\\x45\\xd2\\x91\\x12\\x53\\x25\\x1d\\x29\\x91\\x2f\\xe9\\x48\\x89\\x02\\x49\\xc7\\x10\\x1e\\x21\\x4c\\x93\\x74\\xa4\\xc4\\x74\\x49\\x47\\x4a\\xcc\\x90\\x74\\xa4\\xc4\\xa3\\x92\\x4e\\x5a\\x78\\x84\\x30\\x53\\xd2\\x91\\x12\\xb3\\x24\\x1d\\x29\\x51\\x28\\xe9\\x48\\x09\\xb3\\xa4\\xa3\\x0f\\x8f\\x10\\x8a\\x24\\x1d\\x29\\x51\\x2c\\xe9\\x48\\x89\\x12\\x49\\x47\\x4a\\x58\\x74\\xc2\\x18\\x57\\x98\\x4b\\xa5\\x1d\\x61\\x5c\\x78\\x84\\x30\\x5b\\x4e\\x3d\\x14\\x1e\\x21\\x94\\xc9\\xf5\\x69\\x4c\\xb8\\x90\\x12\\x1e\\x21\\x94\\xeb\\x84\\x07\\x5d\\xda\\x73\\xa4\\x1d\\x59\\xfb\\x31\\x39\\x25\\x69\\x57\\xc8\\x29\\x49\\xb5\\x52\\x27\\x24\\xbb\\x54\\xab\\xa4\\x1d\\x59\\xd5\\x2a\\xa7\\x24\\xd5\\x6a\\x39\\x25\\xa9\\x3e\\xae\\x13\\xc6\\xba\\x54\\x6d\\xd2\\x8e\\xac\\x5a\\x23\\xa7\\x24\\xd5\\x5a\\x39\\x25\\xa9\\xd6\\xe9\\x5e\\xf4\\xe2\\xd4\\x39\\x79\\xd2\\x87\\x0b\\x9e\\x16\\x81\\x0d\\xcf\\x9e\\xef\\x1c\\x53\\x22\\x00\\x32\\x5e\\x81\\x53\\x39\\xf9\\x1d\\x84\\xac\\x2e\\x10\\x88\\xd2\\x01\\x54\\x77\\x80\\x5a\\xff\\x12\\xa4\\xc7\\xde\\xcf\\x21\\x4c\\x4a\\xa7\\x78\\x3f\\x4c\\xc6\\x78\\x86\\x7a\\xf6\\xf5\\xe0\\x9e\\x78\\x20\\x0b\\x8c\\xea\\x28\\xf5\\x10\\x95\\x7c\\xc0\\x5b\\xff\\x7a\\x9f\\x25\\xfe\\x27\\xbc\\x4e\\xa8\\x52\\x80\\x83\\x57\\x58\\x07\\xf8\\xeb\\x5f\\x07\\x80\\x14\\xf9\\xbf\\x7c\\x84\\x81\\xb1\\x63\\x38\\x59\\xfe\\x48\\xbe\\x90\\xb2\\x3c\\xbf\\x83\\x95\\x18\\x3b\\x42\\xa5\\xbd\\xd7\\x3c\\x97\\x00\\xe1\\x29\\xcb\\x8b\\x73\\xf3\\x25\\x95\\x82\\x82\\x82\\x02\\x09\\x3b\\xd9\\x73\\xa4\\x67\\x7f\\x0f\\xee\\x1b\\xf6\\x0a\\x71\\x2c\\x15\\xf8\\xaa\\x0e\\x0a\\xc6\\x0e\\x55\\x89\\x11\\xe0\\xff\\x0b\\x00\\x00\\xff\\xff\\xed\\x3e\\xaf\\x0a\\x40\\xc0\\x01\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_ttf() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_ttf,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.ttf\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x5c\\x97\\x53\\x70\\xe0\\x8f\\xcf\\xee\\xbf\\xb5\\x6d\\x6b\\xcb\\xad\\x6d\\x6c\\x6d\\x6c\\x6d\\xdb\\xb6\\x6d\\x6d\\x6d\\x1b\\x5b\\xbb\\xdd\\xda\\xb6\\x6d\\xdb\\x67\\x7e\\x73\\xfe\\x57\\x6f\\x26\\xcf\\x4d\\x26\\xc9\\x64\\x72\\xf3\\x99\\xc7\\x4d\\x5e\\x4c\\x0c\\x00\\x01\\x00\\x00\\xf8\\xd0\\x07\\x90\\x01\\x00\\x00\\xe9\\x15\\x04\\x40\\xfe\\x7f\\xe5\\xff\\x86\\xb8\\x88\\xa8\\x18\\x00\\x80\\x58\\x03\\x00\\xc0\\x05\\x00\\x80\\x20\\x1c\\x13\\x1c\\xb3\\xf8\\x6f\\x95\\x5f\\x00\\x00\\x52\\x06\\x00\\x20\\xdc\\x00\\x00\\x2a\\x71\\x84\\xb2\\x8d\\x26\\xff\\x9b\\x81\\x19\\x00\\x40\\x0f\\x00\\x00\\x50\\x02\\x00\\x40\\xbf\\x13\\xe4\\xcc\\xcd\\xc8\\xc6\\xc0\\x1e\\x00\\xc0\\x38\\x01\\x00\\x62\\x1f\\x00\\xa0\\x2d\\x7f\\x1f\\x17\\x30\\x18\\xb9\\x3a\\x13\\x03\\x00\\x0c\\xfe\\xff\\xfa\\xb2\\x8c\\x41\\x30\\x15\\x4c\\xed\\xcd\\x6c\\x00\\x00\\xc6\\x1e\\x00\\x20\\xa2\\x01\\x00\\x2e\\x75\\x17\\x7d\\xfd\\xc6\\xcc\\xc0\\xc9\\x1e\\x00\\x10\\x3f\\x00\\x00\\x80\\xfe\\x9f\\x90\\xcd\\xac\\x3d\\x4c\\x01\\x00\\x09\\x1c\\x00\\x66\\xe8\\x00\\x10\\x33\\x5e\\x4b\\xbd\\x06\\x59\\x73\\x13\\x03\\x63\\x00\\xd8\\x66\\x05\\x00\\x80\\xfd\\x3f\\x3d\\xd3\\x21\\x93\\x98\\x9b\\x9b\\x18\\x00\\xc0\\xf6\\x7f\\x37\\x13\\x03\\x00\\xf0\\x03\\xe6\\x0b\\x46\\xd5\\xdc\\xc6\\xd9\\x1d\\x00\\xb6\\xa3\\x01\\x00\\x02\\x06\\x00\\x90\\x49\\x89\\x26\\x3a\\x9c\\xac\\xed\\x8c\\x0c\\x00\\xe0\\x20\\x0d\\x00\\xa0\\x86\\x01\\x00\\xfa\\x87\\x94\\x53\\x21\\xb4\\x8d\\x81\\xbb\\x3d\\x00\\x5c\\xe8\\xff\\x6f\\x96\\x18\\x62\\x01\\x01\\xc7\\xd6\\xc0\\xc6\\x04\\x00\\x2e\\xfc\\x01\\x00\\xc4\\x0c\\x00\\xc0\\x08\\xc5\\xea\\x6d\\xcc\\xed\\xed\\x9c\\x9c\\x01\\xe0\\xf2\\x04\\x00\\x10\\x96\\x01\\x80\\x6c\\xf6\\xf0\\x57\\xe9\\xa9\\xbd\\xa3\\x89\\x3d\\x00\\xbc\\xf7\\x02\\x00\\x90\\x0d\\x00\\x40\\x0d\\x87\\x0b\\x4f\\x8f\\x3b\\x88\\x91\\xbe\\xb1\\xbe\\xfe\\x8e\\x81\\x3f\\x40\\x01\\x89\\x18\\xca\\x22\\x38\\x32\\x52\\x36\\x52\\x86\\xf8\\x83\\x0c\\x3b\\x29\\xc0\\x18\\xc2\\x08\\x22\\xbe\\xca\\xa4\\x0a\\x2c\\x11\\x21\\x1a\\x41\\xd0\\x11\\x75\\x1f\\x9d\\xd8\\x23\\x14\\xa5\\x0c\\x15\\x18\\x22\\x83\\x76\\x04\\x00\\xc0\\x1d\\x24\\x7b\\x1c\\x0c\\x1e\\x5d\\x1f\\x1f\\xe2\\xe6\\x59\\x77\\xa9\\xaa\\x8a\\x5a\\x76\\xd5\\xd6\\xd2\\x76\\x82\\x8d\\x01\\xcf\\x28\\x2d\\x93\\x79\\x8a\\xbd\\xc1\\x66\\x9d\\xdd\\x74\\xdf\\x73\\x7d\\x72\\xcb\\xa7\\x47\\xde\\x2f\\x00\\xe0\\x2e\\x44\\x0a\\x0d\\x64\\x31\\x9d\\xcc\\x09\\x8a\\x35\\x87\\xab\\x15\\x03\\x7b\\xe8\\x6f\\x1a\\x4f\\xad\\x71\\x44\\x9c\\x1c\\x69\\x3a\\x5a\\x47\\xd9\\xe3\\xea\\x34\\xf0\\x17\\x0a\\xc5\\x36\\x0d\\x56\\x1c\\xc2\\x36\\x0b\\x94\\x2c\\x49\\x33\\x0d\\xd5\\x38\\x7a\\xc9\\xf2\\xc0\\x54\\x37\\x8e\\x30\\x51\\x55\\x37\\x89\\x71\\x21\\xb4\\xb1\\x38\\x2a\\x44\\x3c\\xcd\\x9b\\x36\\xe0\\x29\\xf0\\x0f\\x84\\xa5\\xae\\x0a\\x2f\\x88\\xa4\\xae\\x09\\x4e\\x94\\xa2\\xae\\x8e\\xfe\\x3b\\x46\\x5d\\x1b\\x18\\x49\\x53\\x5e\\x15\\x59\\x51\\x51\\x5e\\x53\\xc8\\xbd\\xb4\\xb7\\x60\\x47\\xd0\\x82\\xe6\\x3a\\x27\\xb7\\x6a\\xc1\\x63\\x75\\x7c\\xd1\\xa9\\x53\\x17\\xe5\\x3a\\x4a\\xbf\\x8e\\xd1\\x61\\xb9\\x7c\\x19\\xba\\xd9\\xa8\\xe5\\xba\\x7e\\xb5\\xa2\\xb3\\xd9\\xf0\\xfe\\xd4\\x4b\\xb8\\x46\\xe6\\x65\\x2d\\x7f\\x51\\xce\\xd7\\x70\\xfc\\xf4\\x4f\\x77\\xed\\xa7\\x97\\x8d\\xdd\\x45\\x75\\x57\\xc3\\xf3\\x53\\x5f\\xf3\\x0a\\xe5\\xbb\\xb5\\xde\\x45\\xa5\\x4f\\xc3\\xf5\\x53\\xbf\\xef\\x1a\\xc3\\x7b\\xb5\\xc0\\xd3\\xf2\\xd7\\xaa\\x10\\xf4\\x26\\x23\\x32\\x1a\\x20\\x33\\xcc\\xfb\\xd0\\xeb\\x8a\\x17\\x90\\xcd\\x9e\\xa8\\xf7\\x8a\\x50\\xf8\\x22\\x1c\\xc4\\x24\\xd6\\xcf\\x0a\\xa3\\xc5\\xa6\\x02\\x57\\x2f\\x1d\\xd5\\x04\\xe9\\x51\\xbd\\x0c\\x99\\x35\\x6f\\x6a\\x33\\x04\\x61\\xb3\\x48\\xa8\\x6d\\x7d\\xdf\\x36\\x69\\xd6\\xf9\\x85\\xb4\\x99\\xd5\\xc5\\xf8\\xdf\\xef\\x8c\\xf4\\x4d\\xb9\\xa6\\x1b\\xc3\\x02\\xfe\\x04\\x04\\xb8\\x60\\x56\\x32\\x81\\x81\\x15\\xf2\\x06\\x9b\\x76\\x8f\\xc4\\x0f\\x0d\\xf8\\xc3\\x13\\x32\\x32\\x7e\\x62\\xe9\\x2b\\x84\\x43\\x32\\x63\\x08\\x7e\\x04\\x8e\\x15\\x18\\x22\\x9f\\x7f\\xeb\\xc5\\x16\\xf5\\xa8\\xe1\\x60\\x73\\x26\\xa6\\x35\\x62\\x60\\x63\\x1f\\xbf\\xb3\\x30\\x33\\xd6\\xa9\\xd7\\xdb\\x02\\x95\\x46\\xe0\\xc0\\x3a\\x02\\x32\\xca\\x7f\\x3b\\x93\\x93\\xc0\\xea\\xc8\\xb4\\xd0\\x45\\x9f\\xb9\\xde\\x29\\xa6\\x9b\\xdf\\x5c\\x98\\x9b\\x6d\\xd6\\x9f\\x5a\\x6c\\xd6\\x9b\\xff\\x4b\\x4a\\x9c\\xe9\\x86\\xec\\x87\\x9e\\xed\\xa1\\x8b\\x0a\\x8c\\x42\\xb5\\x45\\x1d\\xe0\\x85\\x65\\x10\\x19\\xb8\\xb9\\x06\\x7e\\xf9\\x7a\\xdb\\x7e\\x24\\x81\\x04\\x3b\\x80\\x7e\\xac\\x80\\xf8\\x93\\x82\\x50\\x43\\xef\\x70\\x6e\\xf8\\x7b\\xd9\\x33\\xe4\\x0c\\x5b\\xb9\\x13\\x65\\x2a\\xc6\\xa4\\x15\\x49\\x86\\x3a\\x27\\xd8\\xce\\xe9\\x61\\x8e\\x72\\xaf\\xea\\xc4\\x26\\xed\\x1f\\x92\\xb6\\x29\\x12\\xc6\\xe3\\xde\\x36\\x4a\\x84\\x9d\\xc2\\xfa\\x88\\xe9\\x2d\\x73\\x3c\\x6a\\x55\\x97\\xc6\\xcb\\xe8\\xe3\\xf2\\xdc\\xd2\\xe6\\xf4\\x47\\xb9\\x93\\x11\\xed\\x24\\x79\\x27\\x5d\\xdf\\x92\\xf9\\x9a\\xb6\\xa7\\xf9\\x9a\\x46\\xa6\\x9b\\xb9\\x32\\xbf\\x67\\xf6\\x4f\\x5a\\x1c\\xf1\\xdd\\xb7\\x45\\xa4\\x89\\xe5\\xbe\\xcc\\xf9\\x68\\xc4\\x72\\xee\\x67\\xfd\\xce\\xd6\\x2c\\xdd\\xb2\\xa0\\xcb\\xde\\xa7\\x68\\xe3\\xaa\\xd9\\x87\\xdc\\xac\\xb1\\xf5\\x73\\x8b\\xe7\\x99\\x23\\xb8\\x94\\x73\\x45\\x72\\x88\\x73\\xb3\\x73\\xb0\\x73\\xbb\\x86\\x79\\x01\\xd5\\x08\\xd8\\x10\\x64\\x9c\\x61\\x9b\\xe1\\xa8\\x63\\x2f\\x13\\xf2\\x63\\xa4\\x4b\\xc3\\xa1\\x85\\xe7\\xee\\xd3\\xed\\x3b\\xed\\x23\\x08\\xec\\x70\\xf5\\xa8\\x3c\\x3d\\x4c\\x3b\\x16\\xe5\\x43\\x7a\\x59\\x9c\\x11\\x9d\\xc1\\xdd\\x32\\x47\\xb8\\xee\\x87\\x73\\x27\\x20\\xd2\\x87\\xb3\\xdc\\x91\\x6c\\x37\\x96\\x52\\x3b\\xa5\\x07\\x33\\xae\\xbf\\x20\\xf6\\xfa\\x30\\x77\\x0f\\xda\\xb0\\x43\\x58\\x67\\xfd\\x36\\xeb\\x5f\\xae\\xda\\xc5\\x5a\\x42\\xee\\xc1\\xcd\\x31\\x44\\x98\\xde\\x1f\\xec\\x4c\\x47\\xba\\xa3\\xee\\x1e\\x44\\xaa\\x26\\x91\\x51\\x9b\\xdf\\x96\\x61\\xbb\\x9f\\x9c\\x3a\\x02\\x9c\\x82\\xb9\\xfa\\x3b\\xed\\xba\\x19\\xcf\\x65\\x93\\xe4\\x7d\\x70\\x10\\xb3\\xea\\xa7\\x60\\xa6\\x10\\xe4\\xb2\\xe7\\xf5\\x11\\x76\\x4d\\xdb\\x3c\\x6a\\xce\\x5d\\xeb\\x43\\xc1\\x36\\x51\\x7a\\x70\\xb7\\xac\\x11\\xae\\xbf\\x82\\x76\\x2b\\x72\\x11\\x58\\x7c\\xcd\\x5a\\xc7\\xa7\\x43\\x09\\x96\\x14\\x64\\xfe\\xde\\x7a\\xc5\\xf8\\xb7\\xe8\\x52\\x78\\x30\\x8c\\x30\\x5e\\x7b\\x08\\x7a\\x6a\\xb6\\xab\\x83\\xa6\\x28\\x49\\x47\\x90\\x8f\\x27\\x9e\\x1f\\xba\\x47\\xb3\\x0d\\x36\\x8f\\x3a\\x02\\xe1\\x97\\xf8\\x99\\xe1\\x4e\\x85\\xb9\\xa2\\x76\\x31\\xdd\\x98\\x3e\\x33\\x5b\\x5b\\xa8\\x5d\\xfc\\x9e\\x2a\\x0f\\xce\\xbd\\xeb\\x9b\\xeb\\x08\\x40\\x81\\x83\\x3f\\x47\\x75\\x61\\x57\\x21\\xc4\\x89\\xfb\\x84\\x63\\xee\\xa1\\xe9\\xf8\\xa3\\xe0\\xc5\\xaf\\x71\\x8f\\xa7\\x5b\\x56\\xfd\\xf9\\x0b\\xd9\\x51\\xbc\\xdc\\x4d\\xf5\\x6e\\x87\\xbe\\x21\\x1b\\x3c\\xf2\\xbf\\xf8\\xe1\\x13\\x51\\x13\\x31\\x13\\xb1\\x32\\x6b\\xf1\\x18\\x38\\x4d\\x24\\xd4\\xcc\\x8c\\xff\\xec\\x7f\\x22\\x7f\\xad\\x38\\xba\\xbb\\xd7\\xde\\x10\\xee\\xb2\\xe5\\xc3\\xf5\\xc3\\xf5\\xeb\\x08\\x53\\xfa\\xb9\\x99\\x9d\\xdc\\xcc\\x18\\xe4\\x7f\\x0a\\xbf\\x07\\xbb\\x42\\xcb\\x22\\x3e\\xc2\\x3c\\x7e\\xbc\\x35\\x0d\\x3c\\x3f\\x18\\xb6\\xe1\\x07\\xea\\x3d\\x41\\xf8\\xae\\x43\\x01\\xdd\\xa0\\x03\\xea\\x59\\xdb\\xf5\\x60\\xbe\\x1c\\xab\\x92\\x4f\\x7d\\x02\\x32\\xaa\\x5f\\x1f\\x11\\xfb\\x40\\x1b\\xbc\\x80\\x5c\\x55\\x3a\\x2b\\xc8\\x99\\xfa\\x90\\x96\\xa9\\x16\\x7f\\x83\\x75\\x73\\xe3\\xae\\xfc\\x3c\\xcd\\xc7\\xe4\\x43\\x07\\xd1\\x6a\\xce\\x6c\\x91\\x74\\x7a\\xb2\\x74\\x88\\xb2\\xd4\\x1f\\xe5\\x7d\\xf7\\x55\\x5a\\x9b\\x39\\x7a\\x02\\xd4\\x3f\\x69\\xee\\x9c\\x20\\x94\\x34\\xca\\xca\\x7f\\x2c\\xed\\x51\\xe5\\x54\\x73\\xdf\\xd8\\xe4\\xf6\\xd9\\x84\\xd0\\x1c\\x60\\xe5\\x16\\xf1\\x27\\x17\\x79\\xbd\\x54\\xe1\\x1a\\x91\\x4b\\x77\\x9d\\xd7\\x4d\\xea\\x53\\xca\\x0a\\x8b\\x39\\x85\\xd9\\x1d\\xc0\\xa6\\x92\\xe9\\x38\\xe1\\xcc\\xf6\\xf1\\xb3\\x2b\\xef\\x9d\\xbb\\xe9\\x7b\\xdb\\xda\\x15\\xb0\\x4e\\x0d\\x75\\x0a\\xa4\\x5d\\xd2\\xe9\\x97\\x31\\x38\\x91\\x8e\\xcf\\xa5\\x74\\x8a\\x2b\\x5d\\x62\\x6a\\x16\\x5d\\xda\\xc1\\xe8\\x7b\\x43\\xda\\x0b\\xaf\\x8a\\x78\\xce\\xe9\\xdb\\x2b\\xaf\\x42\\xa3\\xec\\xeb\\x09\\x2b\\xc2\\x4e\\x13\\x3c\\x1b\\x09\\x0b\\x87\\xc7\\x54\\x57\\x29\\xd8\\x32\\x8a\\x52\\xcf\\x4c\\x3c\\xdb\\x74\\xf3\\xa1\\xce\\x49\\x3c\\x5b\\x09\\x03\\x3a\\x1c\\xe2\\x54\\xf7\\x75\\xab\\x67\\x35\\xab\\xfb\\x7d\\x5a\\xf5\\xb4\\x9a\\x64\\xd7\\x6f\\xfd\\x5d\\xcd\\xd1\\x91\\x2c\\x65\\xf8\\x78\\x45\\x76\\x0c\\x60\\x09\\xf3\\x13\\xdd\\x93\\x21\\xe3\\x76\\x1d\\xde\\x4e\\xcc\\xf0\\xf7\\x6d\\x0c\\x22\\x64\\x0c\\x99\\x75\\x8d\\x69\\xe6\\x6f\\x50\\x7f\\xdf\\x30\\xeb\\xf6\\x55\\xba\\x23\\xd4\\xee\\x23\\x74\\x8e\\x3a\\x77\\x86\\xb4\\x70\\xc5\\xb5\\xb9\\xe7\\x7a\\xbc\\xf8\\xbf\\xd2\\xea\\x93\\x44\\xdd\\x90\\xf0\\xff\\x1b\\xa6\\xdd\\xf5\\xe6\\x7e\\x09\\x2e\\x7e\\x49\\xa6\\x07\\x7b\\x89\\x16\\xf2\\x8e\\x65\\xb8\\x29\\xae\\x6e\\xc6\\xd6\\xab\\x67\\xe9\\xa8\\xfb\\xd9\\x51\\xcf\\xe3\\x55\\x47\\xd9\\x6d\\xca\\xf0\\x64\\x4a\\x64\\x3d\\x84\\x69\\x3d\\xc8\\xfe\\x24\\x8a\\x33\\xa6\\xd8\\xe7\\x5b\\x26\\x82\\x51\\xa1\\xd8\\xff\\x55\\x76\\x08\\x20\\x8a\\x10\\x40\\xe5\\xe7\\x04\\xb5\\xf9\\x0b\\x23\\xef\\x2b\\xb8\\xe3\\x0f\\xed\\xe2\\xf7\\x25\\x80\\xa2\\x28\\xc6\\xee\\xfd\\x8a\\xc5\\x8c\\x44\\x21\\x5a\\x6f\\x0d\\x8f\\x22\\x97\\xfe\\x4b\\x2e\\xee\\xd8\\x16\\x2c\\x5d\\x5c\\xe9\\x5c\\x68\\xd6\\xab\\xda\\x2c\\xe1\\x76\\x4a\\xc2\\x57\\x8c\\xb5\\xbe\\x4a\\xd2\\x55\\x8c\\x74\\xbe\\xda\\x6b\\xa2\\x3d\\x25\\xbb\\x41\\xeb\\x53\\x4c\\x54\\x18\\x2d\\xe9\\x87\\xd3\\x4b\\xb7\\x41\\x03\\x66\\x12\\x0f\\x9f\\x42\\xc2\\xac\\x1c\\xea\\x00\\xa1\\xe6\\x88\\x37\\xde\\x1a\\x59\\x29\\x9b\\x15\\x61\\xc6\\xf5\\xd3\\xb8\\x35\\x5a\\x9f\\xbc\\xd2\\xb8\\x28\\x3a\\x71\\xd6\\x3a\\x85\\x89\\x39\\x25\\xc6\\x7a\\x0f\\xb7\\xe6\\x90\\x1b\\x87\\x72\\x3f\\x66\\xfa\\xc5\\x24\\x50\\x86\\xd5\\x30\\x79\\xb1\\x8a\\x89\\x55\\x8c\\xc2\\x81\\xe1\\x6a\\xb4\\xab\\x0d\\xe9\\xf9\\xd0\\x77\\x43\\x8f\\x62\\x1c\\x7d\\xe9\\x6f\\x6c\\xe9\\x8d\\x72\\x3a\\xcd\\xbc\\x3b\\xae\\x3c\\x07\\x0c\\x85\\x62\\xc9\\x3d\\x7c\\xd2\\x00\\x8b\\x47\\xca\\x05\\x69\\x47\\x06\\x7a\\x12\\xad\\xb8\\x63\\x21\\x3e\\x42\\x0f\\x05\\xa8\\x3f\\x10\\x28\\x20\\x97\\xd7\\x53\\xe4\\xef\\x97\\xfb\\xe1\\xf8\\x66\\xb0\\x13\\x44\\xe4\\x10\\x2e\\x0e\\x8a\\x9a\\x10\\x6c\\x5c\\x44\\x8c\\x61\\x21\\x21\\x0e\\xc9\\x9c\\x10\\x62\\x7d\\x40\\x8c\\xe5\\x31\\x22\\x0e\\x02\\xab\\x18\\x6c\\x98\\xdc\\x2b\\x44\\xad\\x0d\\x8e\\x2c\\x42\\xe9\\x2c\\x86\\xe5\\x2c\\xca\\xe1\\x2c\\x8e\\xf4\\x20\\xc2\\xf0\\x20\\x46\\xf4\\x20\\x2a\\xf0\\x30\\x0c\\xc0\\x0f\\x10\\xc3\\x0f\\x21\\xc3\\x0f\\x32\\xc2\\x0f\\x43\\x47\\x0f\\x50\\x45\\x0f\\x61\\x47\\x0f\\x72\\x46\\x0f\\x83\\xcb\\x0c\\xfc\\x90\\x19\\x42\\x97\\x19\\x64\\x95\\x19\\x86\\x9f\\x18\\xa0\\x9d\\x18\\xc2\\x9f\\x18\\xe4\\x9d\\x18\\x06\\xa5\\x1d\\x20\\xa5\\x1d\\x42\\xa5\\x1d\\x64\\xa6\\x1d\\x86\\xad\\x1a\\xa0\\xa9\\x1a\\xc2\\xad\\x1a\\xe4\\xbe\\x00\\xc2\\xe9\\x54\\x2d\\x8b\\x75\\xd7\\x06\\x7e\\xaf\\xd1\\xfb\\x34\\x4f\\x80\\xaf\\x9b\\x16\\x50\\x58\\x55\\x94\\x98\\x67\\x94\\x58\\x95\\x98\\x9a\\xa7\\x98\\x5a\\xc5\\x56\\xb3\\x2e\\xbb\\x6a\\x9a\\x4b\\xd3\\x35\\xff\\x59\\x13\\xeb\\xb9\\xce\\xa3\\x85\\xc5\\x83\\x05\\xa8\\x52\\x3e\\x70\\xd2\\x1b\\x99\\x58\\x58\\x58\\xf6\\x6d\\x78\\x41\\xf8\\x54\\x05\\x17\\x93\\xd3\\xdb\\x9a\\x6e\\x74\\x51\\xb1\\xd4\\x8d\\x83\\x15\\x29\\x74\\x0c\\xb3\\x7f\\x1f\\xa5\\x3f\\xc5\\xab\\x94\\x74\\x1e\\xc7\\x1b\\xd9\\xa9\\xdf\\xf5\\x89\\x0f\\x69\\xdc\\x6f\\x48\\x33\\x84\\xbb\\x8f\\xc3\\xaf\\x07\\x73\\xed\\x27\\x82\\x85\\xa6\\xdf\\x67\\xb8\\x5d\\x43\\x33\\x8d\\xc7\\xfe\\x84\\xc7\\x66\\xb1\\xa8\\x34\\xb3\\xbe\\xe6\\x30\\xcb\\x76\\x9a\\xa3\\xa6\\xf7\\x86\\x85\\x0c\\x82\\xe2\\xd8\\x70\\x99\\x74\\x01\\xb0\\x56\\xed\\xd7\\x3c\\xd4\\x64\\xd5\\x19\\x6d\\x67\\xb3\\x4c\\x7e\\xaa\\xd2\\x3d\\xc2\\x82\\x2f\\xbd\\x5f\\x06\\xe0\\xf1\\xbf\\x18\\x05\\x30\\x74\\xbf\\x1a\\x24\\xf9\\xf9\\xbe\\x5e\\x00\\xcc\\xc9\\x0b\\xae\\xff\\x71\\x83\\x18\\x94\\x31\\x92\\x29\\x92\\x89\\x57\\xdf\\xbd\\xb7\\x3d\\x20\\x20\\x60\\x30\\x32\\x60\\x57\\x0f\\x54\\x7c\\x6e\\xbb\\xb2\\x4a\\xfc\\xbb\\xc7\\xe0\\xf6\\xfd\\xfb\\x28\\x97\\x23\\x3c\\xac\\x2a\\xd4\\x05\\x2c\\x6a\\xf1\\x7b\\x59\\x41\\x45\\xfc\\xab\\xc7\\x80\\x6f\\x6c\\x0f\\x6a\\xcf\\xa8\\xec\\x1d\\x9a\\x1d\\x21\\xff\\x8a\\x4c\\x82\\x60\\x80\\x17\\x92\\x0c\\x92\\x0c\\x30\\x60\\x67\\xce\\xff\\x8f\\x1b\\x55\\x2a\\x87\\x19\\xfb\\x23\\x88\\x74\\x61\\x19\\x06\\xd8\\xde\\x42\\x39\\x19\\x0f\\x97\\x99\\xc9\\x7c\\x13\\xd6\\xc3\\xa3\\x37\\xac\\xbe\\xb9\\x56\\xb3\\xb6\\x6f\\x5d\\x9d\\xef\\xf0\\xbe\\xb8\\x5c\\xe3\\xdf\\x4f\\xb3\\x4f\\x23\\x92\\x4e\\xcf\\x8e\\xc2\\xca\\xc5\\x4a\\x92\\xe2\\xe2\\x4a\\x21\\x7f\\x48\\x54\\x2b\\x25\\xad\\x23\\x74\\x3f\\x8b\\x4a\\xb0\\xf4\\x1c\\x8c\\x5e\\xbb\\x82\\xed\\xda\\x79\\xed\\xe6\\xe9\\xc6\\xd4\\xd0\\x6a\\x58\\x1b\\x72\\xc5\\x17\\xcb\\x34\\xf5\\x96\\xad\\x6a\\x8e\\xeb\\xff\\x56\\x91\\x6e\\x9e\\xfe\\x14\\x17\\xb5\\x38\\x69\\x30\\x4a\\x9b\\xa3\\xcb\\xfd\\x19\\xca\\x1e\\xee\\xa7\\xb1\\xb3\\xb6\\xe1\\xf5\\xe9\\x61\\xc6\\x1b\\xb9\\xbc\\x5f\\xfc\\x8c\\x26\\xef\\x65\\x9b\\x83\\xcc\\x40\\xfb\\x83\\x50\\xa0\\x89\\xfe\\x56\\x47\\x63\\xb3\\x29\\x25\\x32\\x40\\xb1\\xb9\\xef\\x5e\\x01\\xc1\\x6d\\x40\\xed\\xf0\\x83\\x86\\x76\\x97\\x96\\xc4\\x7f\\x84\\x65\\xef\\x36\\xe4\\x47\\x48\\xe8\\x81\\xb5\\xb6\\x6a\\x8b\\x89\\x0b\\x8f\\xcb\\x6f\\xab\\xea\\x71\\xb9\\x75\\xcd\\x49\\x4b\\x92\\xd5\\xc6\\xa5\\xe3\\x0a\\x92\\x97\\x72\\x36\\x16\\xa0\\x42\\x1c\\x0e\\x66\\xd9\\x65\\x04\\x81\\x00\\xb4\\xdb\\x84\\xf2\\xb1\\xcd\\x94\\xd5\\x7e\\x56\\x4c\\x51\\x0f\\x4e\\x52\\x0e\\xb2\\xef\\x30\\xc9\\xca\\xa2\\x73\\x6a\\x31\\x05\\xca\\x47\\x84\\xeb\\xf0\\x46\\x47\\xbb\\x9a\\x23\\x61\\xc9\\x30\\x91\\xbe\\x75\\x35\\x51\\xb6\\x71\\xf0\\x74\\xfe\\x10\\x5c\\x9c\\x3e\\x71\\x2d\\xf6\\xc2\\x69\\xf3\\x46\\x62\\xe1\\xaa\\x72\\xcc\\x3f\\x03\\xb2\\x99\\x7b\\x61\\x40\\x2a\\x0c\\x47\\x6d\\xa9\\x79\\x45\\x43\\xdc\\xbb\\xa6\\xc5\\x9b\\x90\\xe9\\x07\\x31\\x65\\xc1\\x63\\xae\\xa5\\x65\\xcc\\x00\\x98\\x80\\x6c\\x75\\x5a\\x51\\x36\\xea\\x41\\xd9\\x69\\x9c\\x4c\\x19\\x15\\xa2\\xd6\\x16\\xe2\\xaa\\x91\\xa9\\xc0\\xeb\\x7e\\x31\\xd6\\xce\\xcc\\x0c\\xd9\\x7e\\xf2\\x9e\\xb6\\x59\\x23\\x93\\xb1\\x54\\xdb\\x3f\\x8a\\x24\\xb8\\xf8\\x75\\xaa\\xb6\\xb5\\x05\\x0d\\x33\\x64\\xc3\\xbd\\xb4\\x73\\x6f\\x9c\\x16\\x74\\x5b\\x02\\x17\\x8b\\xb9\\x64\\x98\\x47\\xca\\xa1\\x4a\\x87\\xbd\\xb6\\xb5\\x06\\xba\\xe9\\x63\\xea\\xdf\\xca\\x34\\x4c\\x76\\xc6\\x04\\xb9\\xa5\\x08\\xf0\\x11\\xee\\xcc\\x9e\\xd4\\xcb\\xf5\\x33\\xf9\\x87\\xd4\\xab\\x74\\x06\\x1c\\x21\\xd9\\xd3\\x2c\\xf6\\x2c\\x5a\\x4a\\xbf\\xf4\\xf5\\x09\\x1c\\x3c\\xb8\\xa5\\xa8\\xe5\\x23\\x4a\\x85\\x32\\xa6\\x1b\\x8e\\x16\\xa5\\x94\\x16\\xd8\\xb9\\x9f\\x98\\xe5\\x6d\\xce\\xec\\xbc\\xf9\\x0d\\x74\\xe9\\x28\\x6a\\x53\\xa0\\xa4\\x96\\x83\\xbe\\x94\\xcb\\x05\\x2c\\x60\\xd9\\xd0\\xaa\\x29\\x06\\x27\\x64\\x06\\xe4\\x30\\xef\\x64\\xb4\\x32\\xd0\\xab\\xf1\\x30\\x93\\xee\\x98\\x42\\x90\\x5c\\xa7\\x2c\\x7f\\x11\\xc2\\x49\\x92\\x1c\\x90\\xac\\x33\\x4e\\x97\\xc3\\xaf\\xdf\\xb1\\xd6\\xd8\\xd4\\x6e\\xf6\\x71\\xd5\\xec\\xf4\\x2c\\xa8\\x1b\\xcf\\x81\\x7d\\x11\\x36\\xbe\\x4b\\xbb\\xc8\\x80\\xc0\\x15\\xcb\\x59\\xd4\\x61\\xd4\\x7b\\x6e\\xb8\\xe1\\x97\\x56\\x2d\\x52\\x17\\xc2\\xaa\\x44\\xa8\\xa1\\xe6\\xcc\\x92\\x0c\\xf2\\xe6\\x0b\\x13\\x2e\\x9f\\xb4\\xc4\\x2b\\x05\\x7f\\xfb\\xba\\x2e\\x29\\xce\\xd3\\xc0\\xdf\\x37\\x72\\xae\\x9a\\xdf\\xa7\\xda\\x3c\\xa3\\x9a\\x73\\xc7\\x6c\\xc8\\x35\\xf9\\xf0\\x1b\\xc1\\x8a\\x1f\\x68\\xdc\\xd0\\xde\\x65\\x51\\x57\\x90\\x4e\\x67\\x16\\x50\\xdc\\x05\\x52\\x9f\\x91\\x32\\x64\\x14\\x90\\xcc\\xb1\\x0d\\x86\\x8f\\xf8\\xa5\\x1b\\x2a\\x1f\\xf4\\xc8\\x32\\x51\\xdc\\x7d\\x87\\x82\\xba\\xf2\\x3f\\xb4\\xa9\\xd0\\xf3\\x3f\\xb6\\xe9\\xd0\\xf3\\xdf\\xbf\\x0a\\x88\\xdd\\x2a\\xbf\\x33\\xe8\\x7f\\x30\\x30\\x7e\\x41\\x75\\xc3\\x60\\x8b\\x7a\\xf6\\x52\\xdd\\xa1\\x32\\x46\\x2e\\xf4\\x52\\xdd\\x31\\x33\\x46\\x5a\\x83\\x16\\x8e\\x70\\xe9\\xa3\\xbf\\x0a\\xe8\\xa3\\x73\\x21\\x45\\x93\\xc6\\xe4\\x87\\x99\\x54\\xbe\\x42\\x1a\\x98\\xfd\\x8e\\x64\\x6d\\x4e\\x48\\x06\\x4b\\x8c\\x79\\xd0\\xd2\\x5f\\xb1\\x6b\\x88\\x93\\x6c\\x37\\x0c\\xf7\\x74\\x96\\x21\\x77\\x76\\x55\\x1b\\x67\\x79\\xca\\xc4\\x34\\x27\\xcf\\xad\\xbd\\x4a\\x1e\\xe6\\x1a\\x57\\xd3\\x14\\xdd\\xe4\\x42\\xa3\\x54\\xb3\\x49\\xdf\\x69\\x4a\\x4c\\x37\\x8a\\xab\\xc5\\x6b\\x57\\xd9\\xeb\\x02\\xe1\\xa1\\xe4\\xc7\\x07\\x47\\x0b\\xdd\\x11\\x3f\\x5f\\x5c\\xbd\\x4e\\xfe\\x70\\x26\\x3c\\xef\\x18\\x74\\x39\\x86\\x67\\x6e\\x8f\\xf8\\x28\\x77\\x83\\xd7\\x55\\x55\\x74\\x5d\\x3e\\xd6\\xa2\\xe0\\x7c\\x9e\\x39\\x5e\\xef\\x31\\x1b\\x93\\x6b\\x44\\xbc\\xe7\\xa1\\x8a\\xe0\\x5e\\x2f\\xf2\\xf7\\xac\\x6a\\x74\\x7e\\x8a\\xe2\\xbd\\x3e\\xcd\\x99\\xa2\\xd2\\x10\\xfe\\xba\\xd0\\x2f\\xb0\\xe3\\x99\\x4a\\x9f\\x0f\\xf7\\x5b\\x06\\x30\\x20\\xc1\\xfd\\x8a\\x61\\xe2\\x44\\x2f\\x27\\x79\\x67\\x44\\x90\\x9c\\x5e\\xda\\x5b\\xbc\\x64\\xfa\\x7a\\xa1\\x96\\x9d\\xa9\\x54\\x07\\xca\\x27\\xde\\xe7\\x07\\x0f\\xd6\\x61\\x55\\x46\\x3f\\x9b\\x99\\xd5\\xba\\xcc\\x85\\x3d\\xc0\\xc4\\xc9\\xc6\\x5c\\x2c\\xaa\\x3b\\xd2\\xf8\\x95\\xef\\x01\\x4d\\x50\\xbc\\xa0\\xe1\\x6e\\xd4\\x62\\xbc\\x8c\\x4a\\xc5\\xe6\\xfa\\x78\\xfd\\xa4\\x36\\xf5\\xd2\\x3b\\x48\\x82\\xce\\x24\\x8b\\x5f\\x27\\x5c\\x9b\\xa2\\x08\\x6c\\xa4\\xce\\x09\\x58\\x22\\x38\\xe4\\xc5\\x85\\x81\\xe6\\x11\\x05\\x0e\\x89\\xbf\\x1c\\x09\\x10\\x54\\x04\\x0e\\x30\\x08\\xc9\\x0b\\x4d\\x61\\x40\\x73\\xe1\\x82\\xd4\\x6c\\x39\\x30\\xa5\\x7c\\xf5\\x38\\x89\\xcd\\xcf\\x9c\\x84\\x11\\x1f\\x84\\x15\\xee\\x05\\x17\\x46\\x54\\xc2\\x38\\xcf\\xcf\\x72\\xc0\\x93\\x2c\\xf9\\xd0\\x7d\\xd2\\x7b\\xe3\\x15\\x9b\\x12\\xc1\\x1f\\x14\\xbc\\xe8\\x59\\xd7\\xa5\\x38\\xd7\\x8b\\x3b\\x67\\x07\\xae\\x06\\xb7\\xec\\xb6\\x85\\xf2\\x63\\xcf\\x76\\x0c\\x4c\\x1a\\x1b\\x6f\\x0b\\x49\\x02\\xcd\\x3b\\x58\\xcb\\xbd\\xf9\\x88\\x64\\x1c\\x3a\\x92\\xe3\\x62\\x4a\\x04\\xd5\\xcf\\xf7\\x0c\\x7c\\xcd\\x83\\x48\\xed\\xe5\\x8c\\x80\\xdc\\x8b\\x32\\xac\\xa7\\x8a\\xdc\\xab\\x16\\xfe\\xb9\\xa3\\xf4\\xdd\\x8e\\x4b\\xb2\\xec\\xd0\\xd0\\xeb\\x26\\x27\\xf0\\x14\\x53\\x90\\xb5\\x7e\\x76\\x2a\\xe9\\x5e\\x10\\x99\\xc2\\x6c\\x44\\xb0\\x0e\\x1e\\xba\\xb2\\xd9\\xb3\\x80\\x6e\\x1e\\xe7\\xe5\\xbe\\xc2\\x00\\x8e\\x0f\\x86\\x46\\xc3\\xeb\\xdc\\x33\\xfe\\x80\\xdc\\x4d\\x08\\xda\\x18\\x4a\\x63\\xf9\\x2e\\x3e\\x9e\\x01\\x6c\\x38\\x9c\\xf5\\x57\\x37\\x72\\x3f\\x79\\x24\\x98\\x19\\xb7\\xe7\\xd2\\x0d\\xe1\\x31\\x33\\xc8\\xfe\\x55\\x35\\xe6\\xb0\\x52\\xd0\\xee\\x08\\x0d\\x6f\\xdf\\xe8\\xaf\\x10\\xea\\x64\\xa7\\x37\\xf4\\xed\\x7f\\x6f\\xc5\\xbb\\x3c\\xc8\\xb5\\xc1\\x4d\\xd8\\x9d\\x4a\\x1c\\x50\\x91\\x7a\\x5e\\x55\\x50\\x07\\xd0\\xa0\\xc4\\xfe\\x05\\x4c\\x57\\x09\\x86\\xdc\\x58\\xe1\\x97\\x4d\\x93\\x1a\\xeb\\xc3\\xb8\\xda\\xf6\\xef\\x71\\x91\\xb5\\x95\\x5f\\x69\\x5f\\xa6\\xdf\\x21\\xeb\\xb3\\x1f\\xbf\\xc5\\x06\\x96\\x9e\\xa3\\x49\\x2b\\x38\\xc1\\x99\\xea\\x91\\x90\\x04\\xb5\\x1d\\xa0\\x51\\x59\\x89\\x22\\x7f\\x20\\x48\\xcc\\xfa\\xb3\\x22\\x8c\\xcc\\x74\\x52\\xfd\\x65\\x25\\x16\\x07\\xbb\\x63\\xcd\\x13\\xbc\\x2f\\xa1\\x9a\\xf3\\x47\\x45\\xa0\\x9a\\xf7\\x87\\x9d\\x2c\\x2d\\x90\\x02\\xb3\\x64\\xcd\\x93\\x03\\xc3\\x65\\xad\\x8d\\xa4\\x40\\x30\\x9f\\xf5\\x67\\x47\\x60\\x1c\\xe8\\x44\\x90\\x77\\x0a\\xeb\\xf3\\x56\\x76\\xd1\\xe1\\x2b\\xf7\\xcc\\xc2\\x09\\x35\\x23\\x78\\x33\\xdc\\x0a\\x79\\xf4\\xef\\xab\\x0e\\x1b\\xa9\\x16\\x1f\\x91\\x1d\\x36\\xdc\\x0a\\x3b\\x0d\\xee\\x93\\x2d\\x1d\\x91\\x35\\x1b\\x91\\x3d\\x36\\xe4\\x0f\\x3e\\x0d\\xec\\x93\\x4d\\x1d\\x91\\x55\\x1b\\x91\\x5d\\xde\\xd3\\xce\\xc1\\x87\\x10\\x90\\xaf\\x5d\\x3e\\x0a\\x31\\x20\\xd4\\x1b\\x74\\xeb\\xe3\\x38\\x34\\x45\\xf2\\xf0\\x97\\xb5\\xfe\\xcf\\xe7\\x7e\\x7f\\x03\\x48\\xee\\x20\\xd1\\x1a\\x50\\x82\\x5a\\xc3\\x7f\\xb3\\x57\\x37\\xbd\\x20\\xe8\\xb1\\x49\\x82\\x4f\\xec\\x15\\xc1\\xc0\\xb1\\x91\\x13\\xa9\\x40\\xa3\\x10\\x7f\\xe9\\x6f\\xd0\\xd9\\xe7\\xaf\\xb4\\x1a\\x6d\\x74\\xf3\\x44\\xec\\x6f\\xdd\\x11\\xbc\\xf3\\xf1\\x74\\xb9\\x71\\xe0\\xf3\\x74\\x3d\\x77\\x7e\\xe9\\x66\\xec\\x3f\\x6c\\x79\\xc5\\x09\\x68\\x7f\\x5d\\x41\\xa0\\x50\\xf6\\xac\\x95\\x6d\\x75\\x35\\x34\\x98\\x99\\x4d\\x65\\x69\\x80\\xf4\\x71\\xbe\\xb1\\x75\\x89\\x40\\xea\\x23\\x23\\x52\\xe8\\xb1\\x0a\\x01\\xf0\\x4a\\x22\\xb4\\x41\\xfe\\xfc\\x52\\xb5\\x66\\x06\\xf5\\x88\\x45\\xa6\\x5d\\xbf\\x51\\xe5\\x5f\\x14\\xe7\\xca\\x7b\\xf6\\x55\\x22\\x4a\\xbf\\x28\\x3e\\x85\\xb2\\x45\\x49\\x53\\x23\\x29\\x01\\xe2\\x78\\x90\\xde\\x66\\x69\\x9f\\x78\\x80\\xba\\xae\\x3d\\x7f\\x7a\\x81\\x77\\xde\\x2c\\x0e\\x5b\\xf6\\x04\\xfb\\x17\\x40\\xdd\\x18\\x96\\x4f\\xeb\\x85\\x37\\x14\\x43\\x1a\\x2d\\xd9\\x67\\x4f\\x90\\x50\\x04\\x83\\x60\\x84\\x52\\x8f\\x0e\\x06\\xc3\\x5f\\xf9\\xf2\\x4b\\xbb\\x10\\xf5\\xfc\\x85\\xc1\\x2d\\x64\\x08\\xc2\\xe7\\x96\\x7a\\x54\\x32\\x02\\xe6\\xd6\\xa1\\xbe\\x04\\xdb\\xa8\\x31\\xc0\\x8b\\xe3\\x81\\x81\\x99\\x99\\x76\\x34\\xc0\\xd4\\x92\\x3d\\x4d\\x27\\xf2\\xc9\\x5e\\xa9\\xd4\\x1d\\x7b\\x72\\x2d\\x48\\x00\\x6f\\xc2\\xf8\\x39\\xf7\\x4c\\x7e\\xb9\\x27\\xae\\x68\\x87\\x05\\xde\\xae\\x75\\xfc\\x9b\\xf2\\x3b\\x3d\\xd4\\x49\\x00\\xa3\\x93\\x4d\\xc1\\xaf\\x7d\\x5f\\x7e\\x4a\\x60\\xf7\\x8f\\x25\\x96\\xae\\x07\\x54\\x09\\xc1\\xe0\\xf9\\x22\\xfb\\x2d\\x67\\x45\\xb7\\x47\\xd8\\x9a\\x28\\x0d\\x13\\x02\\xb0\\x5b\\x20\\x04\\xa5\\x45\\xa7\\x87\\x88\\x96\\xb7\\xa6\\x86\\xc2\\x16\\x8b\\x3c\\x42\\x24\\x5f\\x26\\xf2\\xe1\\x1f\\x8c\\x62\\xcc\\xd7\\xfb\\xe3\\x5f\\x91\\x2d\\x08\\x24\\xe8\\x29\\x78\\x84\\x92\\x05\\xa4\\x04\\x2a\\x02\\xe8\\x1f\\x73\\xa3\\xf4\\x96\\x99\\xa4\\xd4\\x4c\\x6c\\x22\\xab\\x39\\xf1\\x31\\x83\\x59\\x44\\xda\\x11\\x92\\x27\\xfc\\x33\\x1a\\x2a\\x32\\xc2\\xd4\\xf9\\x34\\x99\\x18\\xa9\\x80\\xc9\\x2c\\x4c\\xa1\\xe8\\xd9\\xd1\\x81\\x01\\x01\\x31\\x71\\xe4\\xec\\xd9\\x8b\\x3d\\x61\\xf4\\xaf\\x18\\x96\\x6d\\xd9\\xe3\\x21\\x8f\\x40\\xb4\\xa3\\xed\\xf6\\x21\\xb5\\xce\\x97\\x9b\\xaa\\x73\\x2d\\xc4\\x89\\xe7\\xb2\\x5c\\xd7\\x69\\x07\\xf6\\x83\\x0c\\x99\\x9c\\x94\\xb1\\x57\\x8e\\xda\\x74\\x85\\xce\\x87\\x3b\\xae\\x65\\xd9\\x0e\\xdf\\x42\\x22\\xd9\\xf4\\x3f\\xf3\\x0d\\xa9\\xce\\x46\\x76\\xa6\\x6d\\x3c\\x3c\\x43\\x73\\x9d\\xee\\x7e\\xef\\x8d\\x9f\\x70\\x3e\\xbb\\x66\\xd3\\x31\\xb7\\xb5\\x5d\\x06\\x5b\\x6f\\x93\\x30\\x1e\\x18\\xae\\x5e\\x16\\x7d\\x2f\\xea\\xeb\\x45\\xe4\\xef\\xeb\\xa6\\x57\\xd7\\x34\\x08\\x7e\\x67\\xe5\\x75\\x89\\x39\\x85\\xe7\\x67\\x6b\\x51\\x86\\xc7\\x20\\xfe\\xe0\\x47\\x7d\\xd3\\xab\\x04\\x73\\xf3\\xfa\\xe0\\x50\\xc9\\xfd\\xf0\\xe6\\x21\\xcc\\x7a\\x92\\x56\\x70\\x24\\xac\\xe1\\x7f\\x63\\x19\\xb2\\x01\\xe6\\xc0\\xec\\x5e\\x41\\x4a\\x16\\x1d\\x4a\\x85\\xb1\\x61\\x40\\x99\\xcd\\x9f\\x56\\xba\\x9a\\x58\\x72\\x51\\x89\\xd8\\xe8\\x24\\x97\\x9c\\x96\\x76\\xd6\\x60\\xa7\\xd2\\xe5\\x88\\x12\\xad\\x50\\x3d\\x9b\\x8b\\x2e\\xac\\x35\\x6b\\x6d\\x6d\\x2c\\x7c\\x7c\\xf0\\x76\\x26\\x25\\xee\\x3b\\x8e\\x29\\x91\\x40\\xd6\\xd4\\xe9\\x32\\x71\\xed\\x8d\\x9c\\xcd\\xd4\\x69\\x72\\xaf\\xbd\\x9d\\xbc\\x29\\x25\\x4c\\x2c\\xdd\\x1a\\x06\\x66\\x29\\x4d\\xb1\\x50\\x66\\x69\\x00\\x3c\\xca\\x02\\x9d\\xb0\\x0e\\x1e\\x49\\xb2\\xf2\\x50\\x38\\xe5\\x8e\\xc4\\x68\\xaf\\xca\\x81\\xba\\xd9\\x3c\\x1d\\x49\\x52\\xa2\\x6e\\x30\\x5a\\x49\\xed\\x9a\\xd4\\xa3\\x63\\xa5\\x7e\\xaf\\x46\\xd0\\xd5\\x35\\xaf\\xb2\\xb5\\xde\\xdc\\xd7\\x48\\x55\\x75\\xff\\x83\\x34\\x49\\x98\\x09\\x1b\\x3d\\xac\\x9c\\xe9\\xa1\\xe4\\x3b\\xa5\\x80\\xde\\xa1\\xbc\\xb2\\xac\\xbc\\xec\\x67\\xfc\\x1f\\x8c\\x13\\x5c\\xc2\\x24\\x9c\\x75\\xe3\\xb1\\x85\\xad\\xb4\\xa7\\x14\\x16\\x55\\x44\\x74\\x5c\\x48\\x01\\x23\\x06\\xc7\\x0d\\xe6\\x7c\\x68\\xd0\\xba\\x35\\x33\\xaa\\x98\\x3f\\x54\\x52\\xfb\\x4e\\x4a\\xfb\\xd8\\xc2\\x2c\\xa8\\x62\\x9f\\xc2\\xd4\\x89\\x43\\x4c\\xb0\\x42\\xa1\\x12\\x9a\\xd4\\xa8\\x4a\\x6b\\xc4\\x64\\x46\\xfd\\xd7\\x30\\xd3\\xb1\\x0b\\xdb\\x88\\xb0\\xbf\\xcc\\xe1\\x6d\\x20\\xa4\\xce\\xa9\\xe4\\xa3\\x1d\\x34\\x62\\xdf\\x34\\xc5\\x15\\x55\\x13\\xb8\\xb8\\xb9\\xa4\\xb1\\x30\\x2b\\x49\\x2e\\xeb\\x57\\xb5\\x49\\x18\\x45\\x59\\x4f\\xe1\\x6d\\x39\\xa0\\x7e\\x2f\\xa5\\xa3\\x77\\xd0\\xc2\\x99\\x17\\x7b\\xb7\\x40\\xb9\\xa0\\x28\\x0f\\xe0\\xc7\\xc4\\x32\\x79\\x8c\\x49\\x08\\x41\\x1f\\x40\\x5a\\x2d\\x6e\\x24\\x26\\x3a\\xca\\x2f\\x07\\xe8\\xf7\\x0f\\xe1\\xb4\\x95\\x87\\x20\\xc4\\x1e\\xe5\\x2a\\x4d\\xea\\x2d\\x71\\xf0\\x15\\xf1\\x2b\\x12\\xb6\\x5a\\xf4\\x7d\\xe0\\xa9\\xb9\\xdf\\xd6\\x07\\x7a\\x70\\x9d\\x31\\x18\\x8c\\xb2\\x17\\xd2\\xb3\\x5b\\x05\\x8e\\x66\\x70\\xf3\\x90\\xbb\\x58\\x8b\\x74\\x2e\\x1a\\xd3\\x4b\\xcc\\xef\\x57\\x44\\x5e\\xb5\\xfd\\x66\\x09\\x5c\\x96\\xcd\\xec\\xae\\xed\\x3f\\xcc\\xe9\\xca\\x1f\\x5b\\x65\\xae\\xa7\\x28\\xd6\\xf6\\xf9\\x6b\\xae\\x36\\x7f\\xc5\\x70\\xe4\\xcd\\x37\\x78\\x4a\\xa3\\xeb\\xae\\x2f\\x65\\xc8\\x2b\\x97\\x9a\\x04\\x0b\\x37\\x84\\x37\\x5f\\x79\\x87\\x7a\\x4a\\xbe\\x5a\\x3d\\x75\\x66\\x1e\\xc6\\x47\\xce\\xcb\\x3e\\x8c\\x8a\\x96\\x79\\x0a\\x22\\xf8\\x81\\xe6\\x13\\xa6\\x5d\\x7a\\x9b\\xdc\\x47\\x89\\x0d\\x15\\xc4\\x38\\xa0\\xe8\\x89\\x8a\\xc9\\x32\\xa0\\x70\\xd0\\x3e\\x00\\xa5\\x9b\\xa2\\x5a\\x31\\x2e\\x09\\x1b\\x8e\\x82\\xad\\xcc\\xe7\\x1c\\xc5\\x0b\\x81\\x2a\\xc8\\x4f\\x50\\xdd\\xaf\\x0d\\x15\\x47\\x77\\xc4\\x24\\x8a\\x8c\\xa2\\xad\\xc8\\xc4\\x44\\xa1\\x13\\x7b\\xf0\\x2f\\xaf\\x7f\\x7b\\xb5\\x6b\\x68\\x9f\\xfe\\x02\\x06\\x13\\x13\\xd2\\x0b\\x76\\x33\\x87\\x6d\\x33\\xdb\\x17\\xca\\x62\\xeb\\x7b\\x1c\\x8e\\xd2\\x75\\x22\\xb6\\x63\\xc3\\x61\\x55\\xe3\\x71\\xf3\\x7d\\xef\\x5a\\x6d\\x9b\\xcf\\x6b\\xc6\\x81\\xd3\\x76\\xea\\x09\\x8d\\xe1\\xc3\\xbb\\xbc\\xee\\xfa\\xf0\\x49\\xed\\x63\\xc8\\xd7\\x19\\x7c\\x7e\\x75\\x5c\\x02\\x1d\\x49\\xc5\\xb0\\x61\\x95\\x6f\\x34\\x31\\xa1\\x66\\x04\\x76\\x42\\xaf\\xad\\x66\\xe4\\xf0\\xd4\\x82\\x9a\\xd6\\x56\\xe3\\xca\\x15\\xa3\\x5a\\x8b\\x4b\\x20\\x5e\\x34\\xd2\\xed\\xfb\\x66\\x6f\\x74\\xd3\\xc6\\x21\\x8c\\x05\\xa9\\x3b\\xba\\xfc\\x79\\x78\\x3b\\xac\\xbc\\x16\\x7f\\xe2\\xc3\\x48\\x7b\\xfd\\x2a\\x89\\xe1\\xab\\x0e\\x0f\\xd8\\x95\\x3a\\x31\\x52\\xab\\x9b\\x47\\x06\\xb9\\xe5\\xff\\x3d\\xb0\\xc2\\x54\\x28\\x1e\\x12\\x76\\x6a\\x2c\\x65\\x0f\\xbf\\x00\\xda\\x5b\\x60\\x0e\\xcf\\xc2\\x3d\\x73\\x96\\x50\\x96\\xa4\\x29\\x8b\\x7a\\x46\\xd5\\x94\\xc4\\xea\\xa2\\x03\\x51\\xd3\\xd4\\x69\\x3a\\xbc\\x88\\x71\\x26\\x85\\xef\\xb4\\x0c\\xc7\\x90\\x45\\x91\\xb9\\xfe\\xe5\\xfa\\x33\\x47\\xf9\\x93\\xe3\\xb3\\x52\\xc5\\xc7\\x1d\\xae\\x46\\x35\\xce\\x1a\\x3c\\x58\\x8e\\x73\\xe4\\x6c\\x95\\x8f\\x11\\xd7\\x9a\\x9f\\x45\\x42\\xb0\\xc8\\x02\\x3e\\x80\\x14\\xb5\\xd7\\x35\\xfe\\x07\\x8a\\x25\\xaa\\x05\\xfe\\x9e\\x3a\\x17\\xed\\x56\\x40\\xa4\\xe2\\xec\\xfd\\x37\\xfd\\x17\\x71\\xad\\x41\\x8b\\xa7\\xc2\\xa7\\x64\\x17\\x7c\\xaa\\x11\\xe7\\xa4\\xd2\\xa2\\x87\\x7b\\x53\\xa4\\x17\\xe0\\x90\\xdf\\x9e\\xc6\\x0b\\xb7\\xdd\\xa7\\x1e\\xfe\\x10\\xf3\\x87\\x9c\\xf9\\xc0\\xa6\\xe0\\x66\\x69\\x0c\\x2c\\x81\\x4c\\x44\\x87\\x3e\\x84\\x37\\x69\\xcf\\xd6\\x1e\\x9f\\x99\\xaa\\x1e\\x85\\x6a\\x10\\xbd\\xfa\\x3c\\xdd\\x0c\\x49\\xfd\\x23\\xc9\\xcc\\x83\\x1f\\x63\\x65\\x28\\x89\\x6a\\x49\\xaa\\x1b\\x0c\\xb6\\x9e\\x9f\\x8c\\x18\\x90\\x03\\x13\\x81\\x86\\xd5\\xc6\\x7d\\x4c\\x58\\x2b\\x71\\x12\\x50\\xb7\\xfa\\x2e\\x6c\\xcc\\x12\\xe9\\x22\\xbb\\x6a\\x73\\xb9\\x71\\xca\\x88\\x15\\x62\\x0c\\x36\\x2c\\xc2\\x40\\xae\\x64\\x8a\\xb7\\x45\\xe9\\xaf\\xee\\x6f\\x43\\xde\\xc3\\xe8\\x64\\xe3\\xef\\xa1\\xe7\\xe9\\xa0\\x67\\x20\\x21\\x91\\xef\\x3c\\x1a\\xde\\xd6\\xaf\\x9d\\x90\\x96\\x1a\\xab\\x6c\\x5c\\xa7\\xb9\\x43\\x45\\xbb\\xa7\\x19\\xd0\\xae\\x45\\xb2\\x35\\x21\\x7e\\x04\\x21\\xf8\\x1b\\x51\\x27\\x65\\xcd\\x0b\\x19\\xaa\\x1d\\x8f\\xae\\x7c\\x43\\xe7\\xe2\\x4f\\x25\\xc1\\x31\\xbe\\x2a\\x68\\x20\\x30\\xfd\\xe9\\x18\\xc3\\x92\\xd4\\x0b\\xfb\\xd8\\x7d\\x93\\x6c\\xfc\\x1b\\xbe\\x10\\xdc\\x63\\x48\\xfc\\x2e\\x9a\\x03\\x94\\x24\\x43\\x4f\\x05\\x81\\xa4\\xbd\\x2a\\x54\\xf0\\x9f\\xdf\\xb3\\x0f\\x01\\x78\\xe0\\xf3\\xca\\x1c\\x0b\\xad\\x26\\x02\\x62\\x7d\\x3e\\x7f\\x23\\x3c\\x8c\\x4d\\xa7\\xfe\\xc8\\x07\\x1b\\x45\\x68\\x2a\\x14\\xd6\\x4f\\x86\\xed\\x99\\xe5\\xae\\x2a\\x3b\\x23\\x93\\xc1\\xa1\\xa4\\xf1\\xf6\\x77\\x76\\x55\\xf8\\x89\\x7e\\x9b\\xc6\\xea\\xea\\x2e\\x84\\x96\\xf2\\xcc\\xa2\\x66\\x2e\\x02\\x27\\xc9\\xa3\\xaf\\x86\\xd4\\xd7\\xcf\\xd4\\xec\\xcd\\xb8\\x86\\x5f\\xd7\\x5b\\xe2\\x87\\x33\\xc5\\x61\\xb5\\xfc\\x25\\xdd\\x3e\\xfa\\xd7\\x87\\xcb\\x00\\x31\\x3e\\x54\\x9e\\x6d\\xb7\\x29\\x4e\\x81\\x8f\\x67\\x04\\xcf\\x74\\x2b\\x03\\x50\\x8c\\x1c\\x8e\\xee\\x55\\x46\\xe5\\x39\\x6a\\xe2\\xa2\\xd4\\xf2\\x96\\xe0\\xe9\\x6f\\x8d\\x3d\\x6c\\x6a\\xf7\\xfe\\x04\\xe6\\xa0\\x87\\x00\\x54\\xa6\\xe4\\x04\\xb2\\x8e\\xdc\\x72\\x41\\x83\\x0a\\x0b\\x20\\x1b\\x4b\\xa8\\x23\\x11\\x5b\\x5a\\x0f\\xaa\\x0d\\x63\\x83\\x87\\x55\\x0d\\x6a\\x15\\xe0\\x27\\x28\\xa9\\xe3\\xb7\\x9c\\xfc\\x63\\xe6\\x1e\\xe0\\xfd\\xab\\xd8\\x16\\xdf\\xa8\\x60\\xb0\\xf8\\x49\\xed\\xbe\\x84\\x86\\x6d\\x27\\xe3\\xbc\\xc4\\xad\\x5a\\xad\\x20\\x70\\x7b\\xed\\xed\\xfc\\x78\\x57\\x58\\xd9\\xb9\\xfa\\x5b\\x75\\xb9\\x42\\x2f\\x31\\x8a\\xb0\\xef\\x7e\\x2b\\x56\\x92\\x4d\\x4a\\xb7\\xf7\\x8f\\xfb\\x6d\\xc5\\xd3\\x7e\\x2a\\x6b\\xf2\\xa3\\x36\\x4b\\x8b\\xed\\xf9\\xe0\\xfa\\xf9\\x22\\x07\\x48\\x7e\\xcc\\x72\\x3d\\xf7\\x55\\xaa\\xda\\xc2\\x95\\xf1\\x42\\xc0\\x11\\x16\\x71\\x00\\x61\\xbc\\xf3\\x5f\\xb9\\x44\\x2f\\x40\\x90\\x32\\xa0\\xe6\\x1e\\x54\\xc0\\x24\\xbd\\x09\\xd4\\x68\\x91\\x76\\x87\\x8e\\x7e\\x64\\x7a\\x74\\xaa\\x4e\\xab\\xc0\\xa6\\xdc\\xc0\\x90\\x81\\x73\\x83\\x24\\xe3\\xa3\\xba\\x65\\x94\\x15\\x5d\\x27\\xbf\\xa2\\x3a\\x86\\x65\\x9f\\x4e\\x5c\\xd5\\x75\\xf8\\x90\\x83\\x9b\\xe5\\x9c\\xaf\\xfc\\xac\\xf4\\x11\\x8b\\x28\\xb7\\xe5\\x61\\x62\\xb0\\x29\\xe2\\xea\\x28\\x70\\x4e\\xdf\\xc1\\x70\\xbe\\x06\\x2a\\x75\\x8a\\xbf\\xc9\\x0c\\x76\\xa8\\x28\\x85\\xf5\\x98\\x5e\\x37\\x55\\x75\\x4b\\xd3\\x39\\x58\\x4e\\x97\\x6d\\x5d\\xf1\\x5c\\x26\\x7a\\xf2\\xa9\\x18\\x0a\\x89\\x9e\\xc6\\x95\\xae\\xbd\\xc2\\xca\\xfb\\xfc\\xe0\\xac\\x35\\xad\\x02\\x07\\x2e\\xaa\\xa3\\x46\\x4f\\xf5\\x40\\xdb\\xfe\\x71\\x6f\\x42\\xd3\\x4c\\x49\\x5e\\x6b\\x54\\xd9\\x8d\\xd7\\x9c\\xbb\\x0a\\xdc\\xdf\\xe5\\xa6\\x0b\\x0f\\x02\\x65\\xe7\\xa6\\x38\\x4e\\x54\\xdf\\x20\\x5c\\xf0\\x63\\xae\\x36\\x7d\\x32\\xad\\x05\\xa4\\x71\\xaf\\x20\\x0e\\x57\\xd2\\x86\\x3e\\x59\\xc4\\x72\\x5d\\x51\\x48\\xb4\\xb6\\xf0\\x79\\xdb\\x21\\xec\\xed\\xb4\\x57\\xb6\\x70\\x94\\x37\\x9a\\x88\\x33\\x98\\x05\\x55\\x62\\x8e\\xe7\\xec\\xf7\\x09\\x9f\\x50\\xee\\xa9\\x9e\\x58\\xa2\\x23\\x08\\xf2\\x92\\xbd\\xb6\\xd5\\x8b\\x76\\xfa\\xce\\x23\\x86\\x24\\x55\\x92\\x8c\\x31\\xf3\\x2d\\x58\\x12\\x79\\xba\\x24\\x9f\\xa0\\xa0\\xa9\\xc8\\x15\\xfe\\x94\\xd6\\x4e\\x92\\x54\\x62\\xa8\\x2d\\x1b\\x42\\x51\\xa9\\x68\\x69\\xe6\\xa3\\xa7\\x8e\\x7a\\x60\\xd0\\xb2\\x5c\\xe1\\xaf\\xcd\\x2b\\xb8\\xa4\\xf9\\x9a\\xf0\\x3c\\x7a\\x32\\x92\\x34\\x17\\x35\\xd9\\xfc\\x53\\x30\\xa4\\xcc\\xdf\\xaa\\x6f\\x58\\x9b\\x7f\\xff\\x69\\x75\\x5e\\xe5\\xc8\\x3a\\xc9\\x5d\\x65\\x88\\x31\\x59\\x2e\\x64\\x2c\\xfd\\x8b\\xf0\\x28\\xf9\\x61\\x27\\x6d\\x11\\xca\\x31\\x8c\\x2a\\xf9\\x25\\xb6\\xf5\\xae\\xed\\x43\\x3b\\xa6\\xba\\xea\\x35\\x5d\\x11\\xdb\\x4d\\x20\\x1b\\x22\\x5d\\x9b\\x2e\\xe0\\x66\\x50\\xd2\\x53\\x59\\xd4\\xda\\x35\\x84\\x89\\x92\\x84\\x4e\\x6d\\xaf\\x39\\xe0\\xf3\\x2c\\x8d\\x14\\x00\\x0a\\xb1\\x73\\xff\\xe7\\x2c\\x3e\\x1f\\x83\\x9c\\xe2\\x01\\xdf\\x8f\\x81\\xe4\\x1c\\x1c\\x58\\xa3\\x29\\xc4\\x84\\x4b\\x14\\xd1\\x0c\\x88\\xb7\\x44\\x65\\x2c\\x05\\x31\\x36\\x29\\xc1\\x48\\x83\\x13\\x0c\\x58\\x78\\x70\\x26\\xa7\\x9d\\x38\\x10\\x2c\\x3c\\x32\\xc2\\xe9\\xb2\\x87\\xe9\\x84\\x14\\x69\\xa3\\x93\\xcb\\xa0\\x38\\x17\\xf1\\x41\\xa8\\x0e\\xa5\\x8f\\xbb\\xe8\\x36\\xb2\\x71\\x69\\x1d\\x5d\\x67\\x9c\\x6f\\xbb\\xa9\\x08\\x99\\xaa\\xd8\\x62\\xe1\\xb3\\x22\\x5c\\xd3\\xe4\\x39\\x06\\x89\\xee\\x7e\\xaf\\x0c\\x55\\x91\\x8c\\x74\\x73\\xb4\\xd5\\x75\\x32\\x70\\x74\\xdc\\xfd\\x71\\x9a\\x1f\\x17\\x89\\xf5\\x9d\\xcf\\x46\\x3f\\x4d\\xc8\\xe3\\x70\\x7c\\x3a\\x35\\xf8\\x7c\\x61\\x9e\\xe5\\x70\\x08\\x97\\x99\\x8a\\x2f\\xfe\\xbe\\xfa\\x08\\xd6\\x36\\x89\\x46\\xc1\\x51\\x9b\\x99\\x96\\xa3\\xb8\\xac\\xa1\\xc4\\x5c\\xcb\\x0f\\x06\\xe4\\xe3\\xfa\\xab\\x58\\xb4\\x65\\xee\\x49\\x83\\x8b\\x04\\x7e\\xc5\\x9b\\xef\\xbc\\x58\\x59\\x0c\\xb7\\x64\\xc1\\x96\\x2a\\xce\\x62\\x37\\x5a\\xee\\xc8\\x9f\\x59\\x15\\xd9\\xf7\\x4a\\x41\\x91\\xef\\xbf\\x4e\\xaf\\x6c\\x6f\\x81\\xe5\\xd5\\x45\\xef\\xff\\x1e\\x72\\x12\\x03\\xa1\\x6c\\x39\\xbd\\x3b\\xc4\\xa3\\x26\\x41\\xe5\\xa0\\x08\\x88\\xef\\xca\\xee\\x5d\\xf1\\x2b\\xae\\x87\\xd5\\x73\\x30\\xb0\\x95\\x6b\\xa7\\xe3\\x62\\xfa\\x8d\\x59\\x1c\\x61\\x15\\x93\\x96\\x86\\xc2\\xeb\\xfb\\x53\\xd2\\x9c\\x2a\\xa0\\x60\\x50\\x0c\\xc9\\x2f\\x59\\x58\\xa2\\x3e\\x99\\xbc\\x01\\xcb\\xce\\x76\\xc5\\x73\\x39\\x30\\xa4\\xb4\\x85\\x8d\\x6a\\xcb\\xa2\\x66\\x35\\xaa\\x72\\x69\\x7b\\x69\\xd5\\xe3\\x7d\\xe8\\x2c\\x37\\x89\\x2f\\xa6\\xad\\x2d\\xe6\\xea\\xe0\\xcf\\x25\\x17\\x88\\xbc\\x94\\xd2\\xc7\\xcb\\xd8\\x84\\x45\\x83\\xe1\\xab\\x93\\xa9\\xa8\\x1c\\xfe\\xb8\\xae\\xb7\\xb4\\xee\\x57\\xfa\\x23\\x5c\\x8d\\xee\\x81\\x2b\\x43\\xbb\\x67\\x80\\x9b\\x64\\x1d\\x3b\\xfd\\x73\\xca\\x60\\xb6\\x38\\x66\\xbb\\x36\\x5c\\x1c\\xfc\\xc9\\x7d\\x66\\x54\\x62\\x52\\x54\\xc6\\xfd\\x71\\xb5\\x0c\\x4d\\x96\\x84\\x9c\\xc9\\x22\\x17\\x1a\\x56\\xb3\\xe9\\x22\\xd6\\x0f\\x72\\x8c\\x05\\xa4\\x43\\x85\\xf7\\x9d\\x67\\x6b\\x5e\\x3d\\x2f\\x58\\x74\\xc1\\xe2\\x69\\x33\\x51\\x0a\\xc9\\x70\\x5e\\x76\\xe7\\x11\\x20\\xc0\\xc0\\x8c\\x8a\\xb8\\x02\\xd7\\x18\\x1c\\x7a\\xb0\\x31\\x31\\x92\\x97\\x5d\\x09\\x2e\\x39\\xf0\\x40\\x24\\x88\\x5f\\x1b\\x8a\\x3a\\x0d\\x75\\xa8\\xa9\\xfb\\x0f\\xc3\\x08\\xd9\\x78\\x3f\\x71\\xf0\\x02\\x5d\\x42\\xfa\\xea\\xc5\\x2f\\x07\\x3a\\xf4\\x43\\xc3\\x47\\xec\\x93\\x36\\x0f\\x0f\\x0b\\xf7\\xa3\\x66\\x2e\\xb8\\x5a\\x9d\\xbd\\xf2\\x0b\\xbe\\xcd\\x86\\xbb\\x9c\\x28\\x9a\\xd2\\x5c\\x45\\x01\\x9f\\x8d\\x70\\xc5\\x66\\xc7\\x54\\x9f\\x68\\xa5\\x8d\\xe4\\xec\\x65\\xf5\\x78\\xec\\x6b\\x4b\\x5f\\xb2\\x16\\x97\\xf3\\x64\\x19\\x3b\\xfd\\xf5\\x53\\x88\\x28\\xa2\\x0d\\x0e\\x8b\\xa3\\xa6\\x5a\\xdd\\x39\\xd7\\x5f\\x3e\\x9f\\xc5\\x4d\\xb9\\x3b\\xf7\\x4c\\xae\\x6a\\x52\\x66\\xf7\\xed\\x47\\x0f\\xb7\\x68\\x58\\xe8\\x98\\x8e\\x21\\x70\\x41\\x41\\xee\\xa1\\xcb\\x12\\x1c\\x3c\\x22\\xd6\\xc8\\x38\\x20\\x65\\x41\\x12\\xe1\\x79\\x83\\xc8\\xbe\\xb0\\xb7\\xfc\\x9a\\x1b\\xc7\\xce\\xe6\\x46\\x0b\\x83\\xce\\xec\\x44\\x46\\xc7\\x6a\\x3a\\x8d\\xd8\\x26\\xe1\\xd0\\x00\\x11\\x58\\x3e\\x93\\xbf\\x3d\\x1b\\xbe\\xbe\\x27\\x3b\\xca\\xbf\\xd6\\xa7\\x59\\xa6\\x7c\\x1f\\x67\\x0a\\xc9\\x38\\xfa\\x85\\x7d\\x2c\\x15\\x95\\x81\\xb9\\x9e\\xd4\\x1a\\x12\\x9e\\x7d\\xc3\\x6b\\x95\\x9e\\xbe\\xc3\\xeb\\x1d\\xc7\\xc7\\x75\\x12\\xeb\\xda\\x41\\xe3\\x25\\x19\\x79\\x10\\x08\\x82\\xa2\\x57\\x25\\xc1\\xde\\xb0\\x19\\xc4\\x64\\x64\\x6e\\x04\\x2a\\x8c\\x04\\x29\\xb6\\x49\\x94\\xf2\\x3f\\x7c\\xf9\\x6c\\x2f\\x41\\x6c\\xcf\\x1c\\xb3\\x1d\\x03\\x41\\x1f\\x97\\x9f\\x01\\x26\\xd7\\x01\\x37\\xbb\\x90\\x2f\\x6e\\xa6\\x04\\x4f\\x01\\x24\\xcf\\x7d\\x79\\xe2\\x64\\x67\\xd5\\x84\\xef\\x08\\xce\\x5a\\xdf\\x14\\x4a\\x9a\\x67\\xc5\\x18\\x9c\\xaa\\x7c\\x2f\\x84\\x58\\xd4\\x28\\x71\\xa2\\xe2\\x60\\x01\\xe7\\xaf\\x5b\\xec\\xb7\\x6f\\xd6\\x61\\xa8\\x54\\x0f\\x6d\\x40\\x00\\xe8\\x1c\\x21\\x0e\\x35\\xd8\\x98\\xc8\\x3b\\x7b\\x67\\x7d\\xaf\\x7a\\x59\\x08\\x08\\x95\\xf3\\xb1\\xf1\\xad\\x96\\x3b\\xc4\\xc8\\x5c\\xc4\\x02\\x4a\\x3e\\x2d\\x6c\\x8a\\xec\\xb8\\xd7\\xe1\\xf2\\x00\\x96\\x21\\xae\\x1f\\x03\\x6b\\xf7\\xfc\\x20\\x56\\xb4\\x7c\\xe5\\x5d\\x91\\xcb\\x44\\xbd\\x72\\x1b\\xba\\xb2\\x80\\x90\\xdf\\x75\\x76\\xf6\\xf8\\xfb\\xd2\\xbb\\x23\\xd8\\xa5\\xc7\\xa8\\xc5\\x7e\\xda\\x9b\\x98\\x4c\\xc9\\xb2\\x29\\xdd\\x24\\x6b\\x3a\\xb3\\x74\\x35\\xbb\\x9d\\x29\\x3c\\xbf\\xc2\\xe6\\x92\\xba\\xad\\x6c\\x79\\x0d\\xd2\\x8a\\x66\\x29\\xae\\xbb\\xb9\\x1b\\x41\\x7a\\x6a\\xea\\xb6\\x47\\x5d\\xb5\\xeb\\xe4\\x87\\xaa\\xb8\\xa3\\x9c\\xad\\x62\\xfb\\x1b\\x43\\xb1\\xc4\\x86\\x62\\x51\\x11\\x66\\x49\\xa6\\xcc\\x69\\x88\\x30\\xb6\\x16\\x94\\x9f\\x69\\x58\\x31\\x5e\\x3e\\x88\\xa6\\x7e\\x18\\x03\\x3b\\x66\\xff\\xe8\\x83\\x20\\x7e\\xf1\\xae\\x01\\xf4\\x42\\x10\\x2a\\x7a\\x01\\xad\\xa4\\x76\\xfc\\x0f\\x07\\xa1\\x44\\x94\\x50\\x74\\x94\\x1f\\xb0\\xa4\\xa5\\x2e\\xd5\\x79\\xf3\\x0e\\x05\\xd0\\x48\\xcb\\xfa\\x65\\x18\\x0b\\x94\\x2d\\x81\\xb4\\xa9\\x63\\xda\\x45\\x2b\\x01\\x82\\x9c\\xe4\\xbb\\xd9\\xdf\\x97\\x7c\\x3d\\xb1\\xf0\\x6f\\xa4\\x81\\x2c\\x6d\\x8e\\x92\\xf2\\x2d\\xa5\\x5a\\xb4\\x85\\x22\\x6e\\x84\\x42\\x93\\x16\\xcd\\xbb\\xcd\\xfd\\x64\\x37\\x91\\x4c\\x8a\\x1e\\x69\\x18\\x9b\\xfd\\xf8\\x02\\x1f\\xe9\\x3f\\x9d\\x2b\\x10\\x9c\\xc4\\x11\\x30\\x20\\x92\\x43\\x7a\\x6f\\xd1\\x5b\\x75\\x20\\xf3\\xdd\\x57\\x84\\x2c\\xcb\\x2f\\x6d\\x9d\\xe5\\x22\\x64\\xb3\\x53\\xae\\x6d\\xa8\\x59\\x43\\x63\\xe8\\x2d\\x57\\x91\\xcd\\xcf\\x64\\x1c\\x90\\x37\\x5b\\x4f\\x14\\x6f\\x63\\x95\\xf9\\x9c\\x26\\xd6\\xe6\\xe7\\x5c\\xe6\\x2b\\x60\\x29\\x62\\xae\\x79\\xe7\\x12\\x94\\x98\\xf2\\x47\\x92\\x71\\xf5\\x4e\\x9f\\x4b\\x09\\xbc\\x1d\\xa6\\xc1\\x25\\x33\\xbc\\xc6\\x3b\\x3a\\xbe\\x2e\\x13\\xaa\\x31\\xc0\\x6c\\x1c\\x75\\x75\\xad\\xbb\\x61\\x6c\\xf6\\x49\\xcd\\x26\\x8a\\x73\\xb8\\x9e\\x89\\x2c\\x5d\\x8e\\x4c\\xb1\\x5a\\x8f\\xf5\\xb8\\x0b\\xa3\\xdc\\x16\\xb8\\x46\\xc1\\xb6\\x7f\\x14\\x8b\\x31\\xbb\\xad\\x3f\\x45\\xe0\\xc9\\xd5\\xd2\\x5b\\x77\\xdd\\x56\\x5f\\xf2\\xe4\\xac\\xeb\\xa2\\xb0\\xd3\\x7b\\x4e\\xc8\\x09\\x17\\x90\\x74\\x5e\\xd6\\xf4\\x9d\\xd7\\x0c\\xa6\\xf9\\x55\\x21\\x6c\\x3d\\x74\\xbf\\x5d\\x56\\x2c\\x3a\\x60\\x56\\x14\\xbe\\x50\\xf1\\xc1\\x83\\xa3\\x82\\xac\\xe8\\x71\\x61\\x9d\\xeb\\xa3\\xab\\xfb\\x58\\x14\\xc6\\xc3\\xb0\\x9b\\x02\\x23\\x79\\xc2\\x64\\xc6\\xdc\\xce\\x7f\\xf3\\x61\\xac\\x49\\x82\\x15\\xf2\\x61\\xb9\\x21\\x98\\x7e\\x73\\x2b\\xda\\xa4\\xd5\\x74\\x07\\xda\\xc1\\xef\\x45\\x9d\\xfd\\xb4\\x84\\x39\\xfa\\x40\\x71\\x5a\\xf4\\x93\\xf2\\x39\\xce\\x94\\x84\\x8d\\x80\\xc8\\xab\\x83\\xf0\\xd7\\x19\\xbd\\x14\\x17\\x46\\x5d\\x11\\xb1\\xe3\\x87\\xa5\\x46\\x63\\x39\\x89\\x47\\x15\\xe3\\x11\\xf6\\x29\\x54\\xbd\\xac\\x57\\x21\\xcc\\x98\\x30\\x07\\xaf\\xd3\\x50\\x4a\\x8a\\x91\\x1c\\x1a\\x58\\xc1\\xf6\\x6d\\x10\\x82\\xd9\\x37\\xbe\\x5c\\xf8\\x49\\x6a\\x6a\\xc2\\xf5\\xc3\\xb0\\x6c\\x6b\\xf4\\x5d\\xb4\\x65\\xd2\\xf6\\xb0\\x36\\x07\\x34\\x73\\xb3\\x13\\x42\\x40\\xe3\\xfd\\x20\\x07\\x52\\xfb\\xaf\\xfd\\xbf\\xaa\\xb9\\xa2\\x76\\x82\\xb8\\xea\\xf7\\xc3\\x8f\\x8a\\xc7\\x95\\x2e\\x29\\xbe\\xef\\x5a\\xb6\\xae\\x95\\x8e\\x14\\xaf\\xd4\\x75\\x87\\xd6\\xca\\xf3\\xa1\\x09\\x89\\xed\\x68\\x88\\x1c\\xd1\\x65\\x06\\x97\\x24\\xe9\\x05\\x57\\xed\\x2d\\xe6\\x5a\\xa8\\xef\\x40\\x9b\\x86\\x8e\\x40\\x68\\x68\\xb4\\x36\\x31\\xdd\\xca\\x43\\xfd\\xe5\\x78\\xaa\\xe6\\xc8\\x8c\\x5f\\x11\\x03\\xf3\\x0a\\x86\\xca\\x7b\\x16\\x12\\x16\\x65\\xed\\x8c\\xec\\xa4\\x89\\xdf\\x02\\xfb\\x67\\x82\\x22\\x44\\xfe\\x23\\xaa\\x39\\x35\\x38\\x98\\xd9\\xfe\\x2e\\x54\\x79\\xda\\x24\\x4f\\x6c\\xd4\\x5c\\xca\\xfb\\x5a\\x46\\x8d\\x98\\x1a\\x17\\xdb\\xce\\x49\\xae\\x7c\\x8d\\x8e\\xe3\\x4e\\x1d\\x67\\xa0\\xef\\x39\\x9b\\x8d\\x57\\x7d\\x36\\x01\\x8a\\x67\\xc3\\xb4\\xc5\\x3f\\xd4\\x55\\xb7\\xd8\\x49\\x3c\\x3e\\x97\\xae\\xa2\\x5c\\x5e\\xb4\\xdd\\xb6\\x4b\\xc6\\xda\\xc4\\x7b\\xf8\\x6f\\x16\\x4c\\xf4\\x88\\x32\\xb5\\x16\\xbd\\xa6\\xc7\\xee\\x62\\x1d\\x43\\x2a\\xa3\\x3c\\xa6\\xb3\\x3e\\xdf\\x33\\xaa\\x05\\xf5\\x59\\x00\\xad\\xc9\\x67\\x23\\xda\\x1f\\x82\\x29\\x0c\\xc2\\xbf\\xa4\\x18\\x06\\x72\\x11\\x76\\x89\\xfa\\xba\\xa2\\x24\\xc2\\xc3\\x97\\xe3\\xf6\\xc1\\x86\\xa9\\xee\\x6a\\x57\\xc2\\xf4\\x89\\xb8\\xce\\x57\\xa2\\xcf\\x19\\xde\\x2f\\x9a\\x97\\x96\\x32\\x05\\x36\\x3a\\x9c\\x4f\\x07\\x26\\x59\\x1c\\xff\\x06\\x69\\x95\\x4a\\xfb\\x64\\x97\\xfa\\xf2\\x36\\x5e\\xcd\\x20\\x95\\x72\\xaf\\xe8\\xbd\\x1b\\x75\\xfe\\xb4\\xd3\\x6c\\xcd\\xdf\\x0f\\x5d\\xe4\\x9f\\xe1\\xbc\\x45\\x06\\xb4\\x46\\x7c\\xb0\\x11\\x70\\xf8\\xf1\\x24\\x00\\xaa\\x00\\x05\\xef\\x3d\\xec\\x48\\x4f\\x3f\\x3e\\x41\\xe2\\x00\\xb8\\x75\\xee\\x2e\\x43\\x7c\\x5f\\x46\\x6e\\x7b\\x4a\\x8f\\xba\\x6d\\xa1\\x5c\\xa2\\x32\\xb2\\x79\\xc9\\x5a\\xee\\x6f\\xbe\\xf2\\x6b\\xb0\\x47\\x66\\x83\\xf7\\x38\\xc0\\x1a\\xa7\\x85\\x00\\xd1\\x54\\xef\\xcc\\x1e\\xbf\\xc5\\xa9\\x81\\xc4\\xe5\\xf6\\x5d\\x7d\\x29\\xcc\\xba\\x04\\x1e\\x5f\\x41\\xa0\\xa8\\x16\\x5e\\x39\\x9e\\x70\\x8e\\xdb\\x3e\\x8a\\xb1\\x15\\x17\\xd9\\xd4\\x3e\\xa6\\x3e\\x79\\x59\\x23\\x6c\\x26\\xce\\xd5\\x18\\x95\\x18\\x1a\\x42\\xac\\x4c\\x26\\x62\\x03\\x8c\\x59\\x42\\x26\\x65\\xed\\x7b\\x5d\\x7f\\x06\\xef\\xd2\\x62\\xed\\x8a\\x82\\xb3\\xea\\xdb\\xc4\\xcd\\xa6\\x39\\x7f\\xf3\\x90\\xae\\x7b\\x07\\xcd\\xe1\\xc7\\x48\\x0a\\xc5\\xc4\\xaa\\xe3\\x67\\x95\\xec\\xb4\\xce\\x1a\\xe7\\xe9\\x36\\x91\\x5e\\xfd\\xed\\xd6\\xd6\\xda\\xec\\x59\\x2a\\x8a\\xb4\\xe7\\x46\\x43\\xc5\\x9c\\xc3\\x30\\xe1\\xa0\\xda\\x09\\x76\\xcc\\x76\\xfc\\x0d\\x0f\\x86\\xdc\\x02\\x8b\\xdd\\xe7\\x51\\xa4\\x59\\xcd\\xcb\\xd1\\x53\\xba\\x89\\x95\\xad\\xde\\x42\\xc3\\xbf\\x86\\x97\\x0c\\x88\\xe9\\xcf\\x47\\xfc\\xd8\\x48\\xe6\\x98\\xc1\\xba\\x63\\x08\\x4c\\xbc\\x30\\x97\\x25\\x73\\x05\\xef\\x51\\xc6\\x1f\\x70\\x6b\\xe4\\xe8\\xd8\\x68\\xf0\\xa3\\x55\\x06\\xde\\x1e\\xfd\\xac\\x77\\xb9\\x2a\\xe5\\xb9\\x15\\xf7\\xee\\x10\\x8c\\xbb\\x8b\\xd8\\xc2\\x4b\\x88\\x17\\x29\\x6f\\x90\\xb1\\x89\\x16\\xff\\x8e\\xf6\\x01\\xeb\\xc6\\x3a\\xea\\x9b\\x3f\\xf6\\x22\\xec\\x2c\\x3f\\x44\\xd6\\x7b\\x94\\x3c\\x03\\x54\\xfa\\x6f\\x72\\x22\\x40\\x5f\\x39\\x1f\\x2b\\xaf\\x8d\\x0c\\xbf\\xf9\\xcc\\x95\\x05\\x92\\xde\\xb6\\xce\\x39\\xba\\xdf\\xe9\\x3f\\x65\\x56\\xb4\\xa7\\x98\\x10\\xed\\x33\\xc5\\xaa\\xd7\\x50\\xf3\\x04\\xcd\\xe3\\x4c\\xff\\xac\\xc3\\xb1\\x8d\\x58\\xcc\\x2e\\xed\\x5a\\x5a\\x85\\xe7\\xf5\\x24\\x6c\\xb3\\x12\\xed\\x23\\xe3\\xb9\\x6d\\x74\\xd5\\xbd\\x4f\\xa4\\x70\\x0f\\xb8\\x5f\\x68\\x26\\xae\\x6b\\xa7\\x91\\x3e\\x3e\\xc6\\x69\\xb9\\x3b\\xff\\x56\\xd9\\xbd\\x5b\\x57\\xab\\xd2\\x30\\x7e\\x84\\xc8\\xf6\\xc7\\x25\\xba\\x5d\\x35\\x88\\x9e\\xc9\\x29\\x34\\x2e\\xf2\\x3f\\xa1\\x0c\\xa7\\x0a\\x97\\xeb\\xff\\x31\\x96\\x17\\x37\\x47\\x31\\x67\\x61\\xee\\xae\\x20\\xa4\\x1c\\x7e\\x2e\\xf5\\x28\\x1c\\xbd\\x1d\\x4a\\xc0\\xf9\\x3b\\xa6\\xcf\\xf7\\x91\\x9e\\xf9\\x13\\xd1\\x05\\x76\\xd8\\xe4\\x4b\\xe7\\x65\\xb4\\xb7\\xe4\\x0b\\x0b\\x64\\x97\\x11\\xb0\\xda\\x6d\\x26\\x0f\\xbf\\x1f\\x0c\\x1e\\xa0\\x6d\\x0e\\x36\\xa4\\x57\\xa2\\xd2\\xac\\x0c\\x85\\x7e\\x4a\\xe0\\x79\\xef\\xc2\\xfe\\x26\\x44\\xda\\xc8\\xcf\\x6a\\x85\\xf6\\x6f\\xba\\x45\\x42\\x29\\x60\\x20\\x20\\x1f\\x51\\x3c\\x07\\x40\\x02\\xf4\\xe3\\x06\\xa0\\x7b\\xa1\\xd1\\xc0\\x6e\\x14\\x51\\x20\\xaf\\x4a\\x68\\x37\\x58\\xb1\\x83\\x33\\x21\\x2d\\x4b\\x20\\xbf\\x22\\x6b\\xaf\\xdb\\x20\\xcd\\x2a\\xcf\\xd2\\xc4\\x9f\\x09\\x09\\x0a\\x2b\\x36\\xfa\\x38\\xc2\\x5f\\xbd\\x59\\x72\\x7e\\xb8\\xc1\\x5f\\x90\\x36\\x40\\xa9\\x56\\x24\\x15\\x75\\xef\\xae\\x94\\x2d\\xdc\\xfd\\x58\\x4d\\xcd\\x23\\x03\\x87\\x7e\\xa3\\x86\\xcd\\x75\\xc0\\x86\\xf4\\x49\\x0e\\x6d\\x29\\xc8\\xeb\\x05\\x41\\x80\\xad\\x54\\x16\\x50\\x4d\\x2d\\x23\\xd2\\x07\\x25\\x3c\\xa0\\x9a\\x2f\\xfc\\x9c\\xe7\\x1c\\x10\\xf2\\xc4\\x03\\x02\\x4c\\xbb\\xc3\\xf0\\x3c\\x72\\xb0\\xfb\\x48\\xe2\\x3f\\xed\\xe4\\x91\\x99\\x99\\x7d\\xdd\\xe4\\x18\\x0b\\x58\\xab\\x49\\x1c\\xb8\\xe6\\x42\\xea\\x62\\xbe\\x7c\\xfc\\xce\\x2e\\x7d\\x2c\\xc5\\x65\\x27\\x63\\x29\\xbd\\x18\\xde\\xe6\\xf9\\x7b\\xde\\x74\\x95\\x34\\xbc\\x5c\\x16\\xab\\xfe\\xad\\xac\\xfc\\xd3\\x58\\x54\\xb9\\x2c\\x1e\\x35\\x5e\\xed\\x9e\\xbe\\xce\\xe2\\x79\\x3e\\x31\\x7b\\xd7\\xdd\\x78\\x7e\\x9d\\x6d\\x6e\\x2e\\xcc\\xbd\\x26\\xeb\\xeb\\x97\\x96\\x96\\x4e\\x25\\x44\\xec\\xe6\\xbd\\xb7\\x77\\xd3\\x58\\xfd\\xdb\\x2f\\x44\\x8c\\x4b\\xa9\\x5d\\x61\\x90\\x49\\xfc\\x26\\x9b\\x87\\x8a\\x9a\\xd7\\xf3\\x04\\x95\\x5f\\x02\\x46\\x4c\\x12\\xcb\\xa2\\x0b\\x1e\\xad\\xf2\\xf0\\x97\\xb3\\x13\\x05\\x0e\\x29\\xe2\\xc7\\xbb\\x44\\xa5\\xd9\\x10\\xda\\x99\\xf8\\xcb\\xe5\\xda\\xb0\\xeb\\xd2\\xf2\\xb5\\xb7\\xf5\\x65\\x9b\\xd3\\x56\\x3a\\xb9\\xa4\\x24\\x39\\x4b\\xd7\\xb1\\xc4\\x44\\x6f\\xa9\\x92\\xde\\xe3\\x90\\x51\\x14\\xb7\\xad\\x8e\\xde\\x63\\x77\\xb1\\xb5\\x52\\x8a\\x93\\x69\\x88\\xec\\x0e\\x8b\\x2c\\x81\\x71\\x9c\\x93\\xf7\\x9e\\x7e\\xe7\\x8d\\x50\\x09\\x38\\xd5\\xdb\\xe0\\xd0\\xd2\\x97\\xbc\\x7a\\xb1\\x95\\xfa\\xad\\xa1\\xd9\\xdc\\xed\\xf1\\x37\\x5a\\x9d\\xcd\\x0a\\xf7\\x7d\\x66\\xc7\\xe2\\xf4\\xc4\\xe3\\xd3\\x56\\xa9\\xeb\\xd2\\xc2\\x85\\x77\\xc5\\x73\\x81\\xc0\\xb5\\x15\\x72\\x9d\\xcb\\x82\\xf2\\x34\\x66\\xdd\\x64\\x4d\\xcd\\x29\\x95\\x34\\xe9\\x21\\x4f\\x77\\xda\\xdb\\x19\\x02\\xf4\\x6e\\xe1\\x9a\\x9d\\x87\\x89\\xcd\\xf7\\x17\\x43\\x6c\\x53\\x0b\\xd1\\xbb\\xa1\\x80\\x05\\xd7\\x9c\\x8e\\x66\\xf3\\x85\\x44\\x94\\x66\\x93\\x4b\\x80\\xdd\\xbf\\x7f\\xd5\\x2a\\x82\\xfa\\x3f\\x81\\xf3\\xfd\\x15\\x51\\x04\\x03\\x0e\\x39\\x1e\\x26\\x98\\x5b\\xcb\\xb2\\x41\\x6c\\x18\\xd9\\xa8\\xc4\\x72\\xf8\\xfb\\xa6\\x57\\xd0\\x1b\\x67\\x73\\xe5\\x50\\xc4\\x1f\\xd6\\xa6\\x2c\\x1a\\xb7\\xa8\\x61\\xd7\\xfb\\x8f\\xf2\\x97\\x36\\x75\\xaa\\x2d\\x5e\\xf5\\x12\\x3e\\x42\\x31\\xef\\xc7\\x6b\\x74\\x5d\\x78\\xdf\\x42\\x4a\\x50\\x5b\\x29\\x6f\\x91\\xed\\x76\\xba\\x6b\\x8d\\x6d\\xf3\\xb9\\x8c\\xf6\\xeb\\xea\\x63\\x4b\\x0c\\x9a\\xcd\\x84\\xc8\\x81\\x41\\x7a\\x75\\x3e\\xf8\\x3d\\x30\\x3b\\x0f\\x87\\x5f\\x5f\\xcf\\xf0\\xbf\\x7e\\x99\\x4d\\xf7\\xb0\\x5f\\x6f\\x19\\xb6\\x58\\x79\\x37\\x93\\x73\\x8b\\x23\\xb2\\xc4\\x7c\\x24\\xa2\\x04\\xc6\\x2d\\x2f\\x6d\\x7f\\xc6\\xf6\\xed\\x9a\\xd0\\x93\\xa7\\xc3\\xd2\\x9e\\xae\\x05\\xdf\\x89\\xca\\x3a\\xc5\\xd9\\x65\\xae\\x34\\x1e\\xe7\\x5f\\xfd\\x41\\xba\\x86\\xbd\\x41\\xcb\\x4a\\x9e\\x5b\\x9a\\xfb\\x87\\xb3\\x95\\x1c\\x5d\\x72\\xc8\\x76\\x6f\\xab\\xa7\\xb7\\xda\\x7a\\x9e\\x7f\\xb8\\xd8\\xc1\\xc1\\x90\\x9d\\x16\\x33\\xfb\\xa3\\xc1\\x60\\x16\\xdc\\x97\\x09\\x83\\x63\\xb5\\x52\\xea\\x2e\\xfa\\x56\\x76\\x13\\xea\\x78\\x8a\\xbb\\xb3\\xb5\\xcc\\xf0\\x72\\x92\\xc0\\x23\\x49\\x3a\\x19\\xdc\\x57\\x3f\\x55\\x71\\x77\\x8c\\xf9\\x87\\xac\\x8e\\x4b\\x59\\xf1\\x65\\x1c\\x9c\\xb6\\x03\\x84\\x2c\\x5c\\x0b\\x9b\\xda\\xc4\\x2d\\xc5\\xd0\\x71\\x32\\x98\\xa3\\x73\\x40\\xf6\\x9c\\xb3\\x7a\\x20\\x43\\x0a\\xb1\\x60\\x19\\xb6\\x65\\x6b\\x6c\\x23\\x6e\\xbf\\x78\\xe6\\x45\\x32\\xb7\\xd0\\xa7\\x42\\xb5\\x69\\xd8\\xaa\\xde\\x57\\xff\\xe0\\xd7\\x5d\\xc0\\x10\\x49\\x17\\x2f\\x54\\x26\\x78\\x1c\\x6c\\xb7\\x59\\x32\\xb1\\xa5\\x0a\\x1f\\xba\\x12\\xf0\\x11\\x39\\x6b\\xdd\\x28\\x05\\x8a\\x22\\x4c\\x05\\x83\\x10\\x49\\x22\\xf6\\x1b\\x1b\\x72\\x29\\xfc\\x0f\\xd6\\x66\\x47\\xc9\\xbb\\xb2\\x1d\\x1b\\xac\\x54\\xf6\\x76\\xb7\\x3e\\x0e\\xe9\\xf4\\x6d\\x22\\x42\\x9c\\x75\\x75\\x45\\xfb\\xc1\\x2c\\xc2\\xc3\\xe9\\x57\\xe2\\x27\\x14\\xe2\\x45\\xa9\\x7c\\xd4\\xab\\x12\\xb0\\x02\\x53\\x1d\\xc7\\xf1\\x56\\x10\\x3c\\x4d\\xe2\\xc6\\x70\\xb1\\xa5\\x48\\x72\\x3f\\xeb\\x6f\\xdb\\xa4\\xea\\xa3\\x56\\x2d\\xcc\\x41\\x68\\xe0\\x70\\x9c\\xc9\\x86\\x18\\x09\\xa5\\xff\\x6c\\xa9\\x9d\\x75\\x26\\x8d\\x4b\\x8e\\x02\\xfe\\xc0\\x52\\xa1\\x48\\x20\\x34\\xa9\\x90\\xcc\\xf9\\x31\\x0b\\xdb\\x24\\x94\\x6f\\x3a\\xf6\\x8d\\x1e\\xd4\\x27\\x89\\x87\\x49\\xf6\\xda\\xd0\\x6e\\xd6\\xf1\\x86\\xbf\\xf7\\x4f\\xd6\\x8f\\xf4\\x8f\\xf3\\xea\\xab\\x29\\x77\\xe5\\xb7\\xe9\\xd5\\x39\\x86\\x73\\xc0\\x0d\\x1d\\x8e\\x3f\\xdf\\xcf\\xb3\\x64\\xfd\\x42\\xfb\\x74\\x25\\x83\\xac\\xbd\\x90\\xe6\\xc2\\x82\\x07\\xdc\\x92\\xb2\\xe8\\x8f\\x04\\xc2\\xa2\\x13\\xb5\\x8e\\x1b\\xd3\\x47\\xfe\\x47\\xa8\\x47\\xf1\\x47\\x78\\xbf\\x16\\xe0\\xfc\\xa4\\xda\\x78\\x41\\x70\\x4a\\x10\\x37\\x02\\xf7\\x25\\xb1\\x53\\x32\\x87\\x68\\xcf\\x1a\\xc2\\x9f\\x6f\\xf8\\x18\\x3a\\x48\\x44\\x2f\\x4b\\x86\\xed\\x9b\\x21\\x38\\x40\\x1e\\x39\\x30\\x80\\x26\\x59\\x4b\\x2f\\x86\\xfa\\x44\\x69\\xb3\\xcc\\x37\\xda\\x92\\x1a\\x53\\x81\\xaf\\xad\\xa6\\x47\\x0e\\x81\\x2c\\x9a\\x10\\x6c\\x86\\x86\\x7a\\x9d\\x94\\x53\\xe3\\xa4\\xc0\\xfe\\x47\\xb2\\x45\\xa9\\x21\\xa3\\xb6\\x46\\xd8\\x98\\xa4\\x3d\\xf6\\x1e\\x15\\x1d\\x69\\xa3\\xe7\\x1e\\x2a\\x41\\x59\\xc4\\xef\\x8f\\xfb\\xef\\x5b\\x58\\x0f\\xc3\\xde\\xe1\\x82\\xdb\\xae\\xe7\\xd8\\xfa\\x64\\x24\\xdb\\xf9\\x8f\\x01\\xb0\\x33\\x6a\\x6e\\xc5\\x6e\\xc7\\xd6\\xcc\\xe2\\xbc\\x4f\\x6b\\x18\\x09\\x68\\x39\\xbc\\x25\\x4d\\x77\\x21\\x0e\\xab\\x25\\x1e\\xd1\\x88\\x02\\xb4\\xeb\\xce\\xdf\\x74\\xc3\\xe2\\xc5\\x94\\x7e\\x1e\\x6f\\x55\\x57\\x68\\xbb\\xdb\\xcb\\x1f\\x59\\xab\\x9c\\x8e\\x53\\xd1\\xfe\\x95\\x22\\x09\\xa1\\xbb\\x4e\\xa6\\x41\\x81\\x63\\xcb\\x23\\xe1\\x05\\x4f\\xd2\\x3e\\x3d\\x9d\\x8c\\xbc\\x76\\xf7\\x23\\x9d\\x40\\xe0\\xfd\\x5a\\x00\\x71\\xa2\\x85\\x60\\xb8\\x3a\\x4c\\xdf\\x10\\x9c\\xf0\\xfa\\xe1\\x42\\xe6\\x2d\\xc0\\x5f\\xf2\\x16\\x4b\\xf8\\xa7\\xf6\\x63\\xd5\\x59\\x95\\x1e\\xe5\\xbe\\x5b\\x44\\xee\\x2f\\x78\\x40\\xc3\\x08\\x02\\x01\\xa2\\xca\\x45\\x82\\xd1\\x95\\x82\\x89\\x28\\x0b\\xf7\\xac\\xcc\\x25\\x77\\xe7\\xbb\\x4d\\xd6\\x0d\\x25\\xad\\x57\\xe5\\xb4\\xf9\\x0f\\x4a\\xea\\x27\\xa4\\x3d\\x96\\xdf\\xa5\\xa0\\xff\\x88\\x20\\x2f\\x27\\x40\\x6f\\x7a\\xb2\\x97\\xa5\\x49\\xdb\\x68\\x3f\\xf9\\x1e\\x7a\\xdb\\x9c\\x70\\x5d\\xd5\\xea\\x93\\x1a\\xd5\\x3c\\x21\\xa9\\x8c\\x39\\x1e\\x0e\\x6f\\xf8\\xf5\\x9d\\xcd\\xd1\\x3a\\x7f\\x5d\\x8a\\x7f\\x6d\\xc9\\xdc\\x44\\x9b\\x4a\\xb8\\x17\\xce\\x6c\\x2d\\x2f\\xe4\\x32\\xe5\\x66\\x8b\\x24\\x2d\\xdd\\xd7\\xec\\xbd\\xae\\xf6\\x66\\x10\\x13\\xf0\\xda\\x17\\xe5\\x33\\x44\\x6a\\xe1\\xfd\\x09\\xfa\\x1b\\x4b\\x3a\\x32\\x90\\x8b\\xfc\\x46\\x7c\\x8b\\x24\\x74\\xf9\\xb7\\x4c\\x05\\x1c\\xe6\\x53\\x5e\\xaa\\x1b\\xb4\\x2e\\x86\\x6c\\xd3\\xcf\\xd4\\x55\\x55\\x3f\\xd2\\x44\\x23\\xd1\\x26\\x7d\\xc0\\x18\\x59\\x43\\x3f\\xd1\\x78\\x3c\\x85\\x84\\x89\\xe5\\x87\\x83\\x35\\xa5\\x45\\xbf\\x3e\\xcf\\xb2\\x7e\\xba\\x13\\x02\\xeb\\x60\\x51\\xda\\x53\\x13\\xf5\\x41\\x9e\\xfd\\x8a\\xee\\x7d\\x8d\\xbb\\x07\\x7c\\x48\\xff\\x43\\xde\\xcd\\xd7\\xf0\\x8a\\x7a\\xe6\\xf7\\x44\\xe0\\xc5\\x8a\\xc5\\x76\\xd7\\x2f\\xd5\\x0e\\x9e\\xc2\\x8b\\x0b\\xef\\xed\\x89\\xeb\\x77\\x9f\\x1e\\x79\\x7b\\x1e\\x7f\\x41\\xfa\\xa0\\xe0\\x77\\xd1\\x70\\x33\\x6f\\xb4\\x4b\\x29\\xaa\\xa4\\x00\\x45\\x88\\xa8\\x81\\xd6\\xc2\\x8b\\xfb\\x4c\\x1a\\xe2\\xf1\\xa5\\x5b\\x82\\xa2\\x62\\x7d\\xce\\x0a\\x17\\x6e\\xe0\\x46\\x99\\x3b\\x70\\x8a\\xb8\\x0e\\x2c\\x93\\x6b\\xd8\\xb8\\xa9\\x58\\x31\\x23\\xb3\\x28\\x58\\xa4\\xea\\x0c\\xe9\\xc5\\xdb\\x79\\x50\\x57\\xc6\\xad\\x52\\x02\\x52\\xce\\x68\\xf7\\x95\\x38\\x01\\xdb\\x88\\xd7\\x42\\xa3\\xaa\\xa6\\xd9\\x65\\x64\\xd9\\xeb\\x5d\\xf9\\x44\\xe9\\x2e\\xe0\\xd1\\xea\\x9d\\xa7\\x55\\xfe\\xcc\\x34\\x67\\xed\\xef\\x55\\xb9\\xcf\\xa4\\xa6\\xec\\x9d\\xf8\\x54\\x8a\\xa5\\xd9\\xd0\\xee\\x8a\\xba\\x8b\\x81\\x59\\x4d\\x0f\\x55\\xcf\\x44\\x9e\\x2b\\xd2\\x04\\x5b\\xee\\xab\\x6a\\xa3\\x51\\x63\\x53\\x8d\\xc5\\xf6\\x59\\x9e\\xd7\\x63\\xaa\\x9a\\xd3\\x55\\x5f\\x36\\xe2\\x62\\xdb\\x86\\x52\\xd8\\x51\\xe6\\xeb\\x21\\x8a\\x74\\x59\\x8c\\x9f\\xd9\\xf0\\x08\\x0f\\x5e\\xd2\\xec\\x9f\\x71\\xc8\\x1a\\x0b\\x81\\x4c\\x79\\xdd\\xb1\\x48\\x99\\xf0\\xf4\\x44\\xc3\\x01\\x43\\x88\\x98\\xeb\\xf5\\x87\\x54\\x9d\\x80\\x83\\xb1\\xba\\x19\\x05\\x24\\xe4\\x0a\\x3b\\x28\\x43\\xd4\\xc4\\x63\\x98\\x5e\\xaa\\xe0\\x3d\\xb8\\x9f\\x1a\\x9e\\x58\\xff\\xb8\\xf3\\x23\\x1e\\x62\\x93\\x31\\xc3\\x24\\x8b\\xd9\\xe7\\x2f\\x65\\xfc\\x69\\x55\\x33\\xb3\\x6c\\xad\\x48\\x11\\xac\\x91\\x4f\\x04\\xdb\\xa4\\x06\\xf2\\xdd\\xab\\xce\\xce\\x7e\\xab\\x55\\xb7\\x6d\\x66\\xbe\\xe2\\x2c\\xb4\\xd7\\x12\\xb5\\xbf\\xe5\\x57\\x56\\xb6\\xca\\x3b\\xf2\\xf9\\x24\\xfc\\xb1\\x82\\x85\\x5d\\x72\\x16\\xf1\\xe4\\x6d\\xa3\\x3a\\x96\\xb6\\x23\\xba\\x94\\x13\\x71\\x1b\\x15\\xbc\\xdb\\x54\\xf0\\x99\\x9e\\x75\\x7b\\x62\\x9d\\x40\\x7c\\x2f\\x24\\xa9\\xe1\\x41\\x7f\\x84\\x9f\\x62\\x83\\xcb\\x7a\\x2c\\x6d\\x4d\\x59\\x89\\x80\\xb3\\x4e\\x34\\x94\\x9f\\xf8\\x85\\x79\\xef\\x34\\xfe\\xab\\x4e\\x65\\xed\\x08\\x95\\xb7\\x89\\x72\\xb6\\xfb\\xad\\xa7\\x54\\x07\\x8e\\x14\\xec\\xb7\\xb0\\x3e\\x2d\\xdd\\xc2\\x39\\x2b\\x8e\\x05\\x33\\x66\\x6b\\x9e\\x34\\x3d\\xa3\\x3f\\xfa\\x6f\\x86\\x00\\x53\\x47\\x61\\x7d\\x94\\x39\\xc1\\x4c\\x02\\x9b\\x7c\\x54\\x70\\x93\\xb2\\xc7\\xde\\xa4\\x7d\\xa8\\x6e\\x2f\\x46\\x4c\\xbe\\x87\\xec\\xcf\\xdf\\xf2\\xd7\\x31\\x64\\x57\\x2c\\xca\\xd8\\xea\\x1a\\x5b\\x8c\\x3b\\xf3\\x07\\x6f\\x90\\xdb\\x53\\x3f\\x2b\\x5b\\x9e\\x36\\x9b\\xea\\x4b\\xbe\\x5f\\xf0\\x78\\xa2\\xdc\\xba\\x1d\\xbc\\xf3\\x5c\\xc7\\xc1\\xac\\x2e\\xe9\\xbe\\x12\\x7b\\x47\\xae\\xde\\xf6\\x46\\x26\\xec\\x05\\x77\\x02\\x9a\\x93\\x5e\\x11\\x22\\xee\\x3b\\xe8\\xdb\\x03\\xd3\\x68\\x88\\xd1\\x22\\x56\\x65\\xf8\\xc1\\xe8\\x26\\xc9\\x82\\x1f\\xcb\\xcb\\x49\\x58\\x5c\\x34\\xce\\xda\\x8c\\x4f\\x75\\x1c\\xf9\\xd8\\xaa\\x65\\x27\\x0e\\xef\\xa9\\x8c\\x9f\\x9b\\xb8\\x99\\xa3\\x28\\x12\\x4e\\x13\\xfe\\x12\\x0b\\xfd\\xc1\\x4e\\xb4\\x41\\xb2\\xe3\\xe3\\xda\\xf4\\xab\\xc6\\x3a\\xa3\\x37\\x7d\\xb5\\xc5\\xcb\\xe6\\x6d\\x2b\\xc6\\xb5\\x74\\xf9\\xca\\xc9\\x48\\x61\\x0b\\x09\\xa9\\x44\\x63\\xeb\\xfa\\xe2\\x35\\x5e\\x7d\\x0f\\x2a\\xd4\\x71\\x21\\x31\\x7e\\x87\\xbf\\x08\\x67\\x7d\\x26\\xf4\\xb1\\x62\\xe7\\x67\\x39\\xa9\\x46\\xea\\xc5\\x0a\\x72\\xe9\\xde\\x6d\\x73\\xb7\\xb4\\xc6\\x1b\\xe5\\xc5\\x15\\xe4\\x3a\\x34\\x87\\x23\\x09\\x8a\\x24\\xd6\\x8f\\x17\\x51\\x90\\x1f\\xc9\\x0f\\x17\\x44\\x03\\x7d\\x48\\x82\\x69\\xb6\\x60\\xfe\\xa5\\xdf\\x82\\x33\\x2e\\x7b\\xe8\\xb1\\x86\\xaf\\x22\\x86\\x4b\\xfc\\xf3\\xe7\\xa1\\xf9\\xea\\x38\\x71\\x9e\\x98\\xc8\\xcf\\xe4\\x48\\x43\\xf7\\xc8\\x38\\x68\\xa6\\x99\\xcf\\x77\\x3f\\xfb\\xc6\\x86\\xfd\\x58\\x35\\xb7\\x89\\x4e\\xe7\\x3a\\x12\\x0b\\x65\\x77\\xd5\\x9a\\x4a\\x57\\xe7\\x16\\xd1\\x7b\\x5b\\x86\\x93\\x4d\\x87\\xf5\\xd8\\xb1\\x58\\x5c\\x2f\\x5c\\x6f\\x34\\x94\\x2d\\xfe\\x96\\xe3\\x29\\xb5\\xe6\\x95\\xe7\\x6c\\x81\\xad\\x86\\xb3\\xd8\\xeb\\xe9\\x49\\x48\\x71\\xbc\\x89\\x55\\x72\\x0c\\x72\\x4a\\xda\\x88\\xbc\\x84\\xb6\\x25\\x05\\x01\\x85\\x62\\xba\\x73\\x68\\x3c\\xaa\\x1a\\x00\\xd0\\xa3\\xfc\\x09\\xe5\\x89\\x1c\\xfd\\xa6\\x26\\x08\\x69\\x22\\x2c\\x21\\x2e\\x44\\x42\\x6b\\x48\\xa1\\xa1\\x1b\\x27\\x9c\\x1e\\x24\\xd1\\x81\\x7f\\x77\\x80\\x0b\\x14\\xd5\\xeb\\x16\\x37\\x6b\\x28\\xd3\\x40\\x78\\x5c\\xf2\\x9a\\x4b\\x0e\\x76\\x3b\\x92\\x50\\x97\\xe5\\xe7\\x23\\x77\\xe6\\x42\\x86\\xfc\\xe8\\xa9\\x9b\\x44\\xaf\\x8c\\xc3\\x76\\xaa\\xb2\\x32\\x5a\\x9e\\xfc\\x97\\xd9\\x6a\\x95\\x46\\x77\\x6c\\xc5\\xce\\xd7\\xcd\\x37\\x41\\x33\\x67\\x7c\\xfd\\x93\\xb9\\xd9\\xb6\\x8c\\x4b\\xc0\\x4f\\xa6\\x2e\\x9d\\x60\\x03\\x90\\x8b\\x7f\\xb6\\x04\\x11\\xb2\\x6f\\xd1\\x27\\xe5\\x86\\x48\\x0e\\x18\\x83\\x1d\\x18\\x8b\\x24\\x36\\x6d\\x8a\\xef\\xc3\\x0d\\xc7\\x6e\\x96\\x9d\\xde\\x0e\\x18\\xbf\\x96\\xb0\\x12\\xa1\\x8e\\x1f\\x0d\\x16\\x0d\\xd0\\x23\\x0a\\x76\\xc6\\xcd\\x46\\xd8\\xd2\\x32\\x5c\\xe8\\x9d\\xf0\\x8f\\x8d\\xb6\\x83\\xe2\\x6f\\x59\\xb5\\x67\\x9d\\xdc\\xab\\x5b\\xa1\\xb5\\xc4\\xbd\\x2a\\x9d\\xa0\\x3d\\xf9\\x2d\\x39\\x5a\\x90\\x17\\x0f\\x52\\xfd\\x86\\x5f\\xb8\\xae\\xd8\\x72\\x3f\\xfb\\x68\\x65\\xeb\\x50\\x4a\\xb9\\x6e\\xf7\\x35\\x25\\x37\\xfd\\x54\\x7d\\x2e\\xf3\\x5e\\x69\\x7b\\x96\\xd6\\xb6\\xe5\\xf4\\xd9\\xfb\\x40\\xc6\\x73\\x9e\\x27\\x47\\x84\\x5b\\x66\\x41\\x8e\\xd9\\x4a\\xa1\\xc8\\x82\\x4c\\x8f\\x4e\\xcb\\xa8\\xd9\\xb0\\xbb\\x37\\xac\\x95\\x9b\\x5e\\x3d\\xee\\x32\\x34\\x96\\x5b\\x11\\x73\\xb1\\xad\\x42\\x54\\xf6\\xa7\\x8a\\xe9\\x20\\xc4\\xee\\x3d\\xb0\\x93\\xed\\x97\\x3d\\x25\\xe0\\x2e\\x08\\xe9\\x1f\\x1b\\xe7\\x4f\\x0c\\x6a\\x09\\x8d\\x32\\x19\\xb4\\xfb\\x86\\x2e\\x26\\x53\\xd4\\xca\\xdf\\x24\\x6a\\x74\\x60\\x90\\xda\\xba\\x80\\xe2\\x96\\x80\\xc9\\x83\\x0b\\xc7\\x8f\\xe9\\xae\\x6f\\xf3\\xbd\\xfb\\x68\\x70\\x95\\x54\\xd0\\x2b\\xe5\\x76\\x0f\\x09\\xf6\\x0c\\xb3\\xc0\\x5c\\xca\\x23\\xee\\x9d\\x99\\x9b\\x21\\x7d\\x25\\x28\\x5e\\xf1\\xfe\\xf1\\xba\\x75\\xf7\\x2a\\x30\\xf2\\xf2\\xfa\\x66\\x07\\xd8\\xff\\x7c\\x27\\x51\\x08\\xf4\\x56\\x20\\x74\\x91\\xfa\\x97\\xf9\\xa6\\x9c\\xc3\\xf6\\xeb\\x7b\\x0f\\xfd\\xd4\\xa8\\xf9\\xe6\\x03\\xe4\\x9b\\xf0\\xf7\\x05\\x08\\xfa\\x56\\x19\\x45\\xaa\\x9f\\xcf\\x77\\x8c\\xaa\\xd0\\xf8\\x87\\xc1\\xc9\\xb1\\x2f\\x20\\xed\\x32\\x85\\xeb\\xb4\\xbe\\xa3\\x9f\\xd9\\x36\\x54\\xde\\xbf\\x78\\xff\\x6d\\xbf\\x0b\\x9a\\x11\\xe0\\x47\\x87\\xb0\\xd6\\xd8\\x55\\xaf\\x5e\\xbb\\x84\\x59\\x34\\x7d\\x83\\x56\\x93\\xbd\\x2a\\x94\\x23\\x04\\x65\\xcd\\xfa\\x3b\\x19\\x11\\x25\\x69\\xa8\\x07\\xc4\\x82\\xfd\\xfc\\xd4\\x3a\\x52\\x9e\\x4c\\xd4\\xb8\\x3a\\x9e\\x37\\xba\\x64\\x94\\x94\\x49\\x61\\x8f\\x02\\x19\\x1d\\xbf\\x56\\xca\\x44\\x41\\xef\\x49\\x79\\x26\\x2c\\xeb\\xb1\\x41\\xde\\x8e\\x9a\\xc8\\xc9\\xd4\\xa4\\x75\\x8c\\xc0\\xe2\\x29\\xb8\\x36\\xed\\x1d\\xa1\\xd4\\x49\\x02\\xe9\\x84\\x18\\xc9\\xfd\\x76\\x75\\x12\\x49\\xa6\\xe3\\xd0\\x02\\x0b\\x3b\\x25\\x80\\x6b\\x8a\\x42\\xa0\\xc1\\x67\\x74\\x1e\\x14\\xe8\\xd3\\x01\\x76\\xcc\\x8c\\x01\\x63\\x85\\x9c\\x90\\x63\\xea\\x60\\x5a\\x1c\\x01\\xad\\x04\\x86\\x23\\x9a\\x09\\xa8\\x13\\xef\\x07\\x21\\xac\\x8b\\x1d\\xf6\\x7f\\x7e\\x87\\x53\\xbd\\x6a\\xa6\\xad\\x58\\x26\\xfa\\x5f\\x27\\x9a\\x2b\\xff\\x16\\xc9\\xed\\x20\\x90\\x3b\\x85\\xda\\x60\\x71\\x00\\x29\\xdc\\x9f\\x12\\xf7\\x0a\\x7e\\xab\\xbc\\x12\\xb4\\xab\\x05\\x1a\\xee\\x60\\x31\\xfd\\xbd\\x1f\\x98\\xd8\\xc7\\xdd\\x74\\x60\\xb9\\x3a\\xad\\xf6\\x20\\xcb\\x00\\xf4\\x1a\\x48\\xaf\\x57\\xb8\\xc0\\x5a\\x6f\\xd6\\x8e\\x32\\x0e\\x73\\x38\\xb6\\xfe\\x94\\x78\\x78\\x7e\\x6b\\xa8\\xc0\\x1f\\xb8\\xd2\\xc4\\xed\\xc3\\x06\\x67\\x09\\x7f\\xa1\\x75\\x0c\\xc7\\x11\\x85\\xf5\\x24\\x83\\x1f\\x35\\x27\\xa2\\x07\\x39\\xf8\\xa3\\xa3\\x7c\\x7d\\x0c\\x18\\x0a\\xf4\\x71\\x45\\x57\\x48\\xe2\\x0d\\x10\\x67\\xca\\x36\\x24\\xa6\\x96\\xcc\\xd4\\x11\\xd9\\x82\\x04\\x6c\\xca\\xd9\\xc6\\xd5\\x14\\xa3\\x9a\\x0c\\xef\\xe0\\x95\\x18\\xe4\\x5a\\xdc\\x35\\x2d\\xa9\\x72\\xec\\x5e\\x6f\\x64\\x25\\xc6\\x25\\xcd\\xe6\\xa2\\x09\\x7c\\x9f\\xf2\\x38\\x19\\xff\\x2e\\x94\\xb4\\x3c\\x51\\xd5\\xf4\\xb6\\x37\\xba\\x7e\\x2a\\x98\\x5d\\x6d\\x08\\x30\\x0b\\x4c\\xd7\\x91\\xbb\\x66\\x2b\\xd5\\x66\\xfa\\x65\\x27\\xfc\\x59\\x69\\x92\\x72\\xba\\xfd\\xf0\\xdb\\xb5\\x04\\x44\\xf4\\xce\\xc8\\xf7\\x17\\x03\\xa8\\x0d\\x18\\x17\\x12\\x05\\xe9\\xed\\xe4\\x3c\\xbf\\xc0\\xe7\\x93\\x16\\xd4\\x17\\x3b\\x83\\xea\\xb1\\xe9\\x1c\\x99\\xfe\\x32\\xd6\\x23\\xef\\x8f\\x38\\x1e\\xe3\\xc5\\x9a\\x82\\x9e\\x95\\x72\\x73\\x73\\xe7\\xec\\xce\\xea\\x8c\\xc2\\xed\\x56\\x57\\x9c\\x51\\x96\\x78\\xd9\\xa6\\xc3\\xc3\\xea\\xa6\\xa5\\xd1\\xec\\xf2\\x0f\\x2d\\x52\\xb6\\x87\\x6d\\xaa\\x65\\xe7\\xc8\\xd6\\x88\\x53\\x16\\x74\\xd9\\xba\\xac\\xf0\\xf8\\x45\\xf0\\xb2\\x81\\xe2\\x41\\x97\\xa4\\xfd\\x23\\xe0\\x15\\xf8\\xcd\\x30\\xca\\x8b\\x6d\\x6a\\x30\\x9d\\xec\\xce\\xfe\\xf9\\xa7\\xa6\\x45\\x90\\xf4\\x3e\\xfe\\x24\\xf3\\x10\\x96\\xab\\x9f\\xf9\\x71\\x3d\\xf4\\xe5\\x71\\xbb\\x4d\\x2c\\x1c\\xb7\\xe7\\xbd\\xd8\\x4a\\xb7\\x8d\\x1f\\xb1\\x09\\x22\\x7f\\x57\\x62\\x53\\xa1\\x2e\\x8f\\x98\\x13\\xbd\\x9c\\x08\\x16\\x83\\x78\\xfd\\x42\\x6b\\xf8\\xfd\\x2d\\xb6\\x87\\xad\\x32\\xdd\\xeb\\xdc\\xdd\\xee\\xfa\\xb6\\xe5\\x68\\xcf\\xa9\\xdf\\x57\\x40\\xa3\\x96\\x15\\xa1\\x81\\xcc\\xf7\\x7b\\xc4\\x3a\\xa8\\x6e\\x8b\\x68\\x77\\x69\\xcf\\x60\\x83\\xc4\\x20\\x58\\x26\\x7c\\x96\\xf4\\x85\\xd2\\x00\\x1c\\x06\\x5d\\x04\\x53\\x10\\x7f\\xd0\\x99\\x89\\xca\\xb0\\x6b\\x04\\x74\\x49\\x6b\\x6d\\x6f\\x4c\\x3d\\xae\\x3d\\xf9\\xea\\xbe\\x6e\\xcb\\xde\\x7e\\xbe\\xfc\\x31\\x88\\xc3\\x3d\\xbc\\xb4\\x8f\\xf5\\x9a\\xae\\x10\\x4f\\xce\\x86\\x02\\x2d\\x41\\x6f\\x51\\x6b\\x9e\\x5b\\x57\\x81\\x71\\x6b\\xaa\\x10\\xfc\\xf1\\x62\\x7d\\xf8\\xcd\\x12\\x0c\\xdf\\x70\\xbb\\xa7\\xbd\\x39\\xff\\x7e\\x84\\xc7\\x6b\\xdf\\x29\\x68\\xab\\x2e\\xb7\\xf2\\x71\\xf1\\x55\\xfc\\x08\\xf7\\xb5\\xcb\\x9a\\x0e\\x71\\x3f\\x76\\xf0\\xc5\\x95\\x09\\xda\\x90\\x71\\xb0\\xe5\\x01\\x56\\x46\\x47\\x23\\xd8\\x8e\\x5c\\x30\\x53\\x1d\\xe0\\x75\\x9e\\x32\\x44\\xa5\\x97\\xea\\x8a\\x3a\\xa4\\xab\\x89\\x8e\\x0a\\xe4\\x67\\x3e\\x9b\\x5e\\x2f\\xf8\\xa5\\x45\\xb8\\xc6\\xe8\\x5a\\xa9\\xf6\\x48\\x79\\x65\\x34\\xed\\xf2\\x79\\x2e\\x6f\\x83\\x28\\x6c\\x93\\x93\\x1b\\xab\\x5e\\x4b\\x44\\xd9\\x5a\\x46\\x43\\xa4\\xf1\\xfc\\xb5\\x23\\xa1\\xd6\\xe9\\x7b\\x6e\\xa6\\xca\\x49\\x54\\x76\\xc5\\xf7\\xb4\\x64\\x4d\\x16\\xd0\\xb2\\xc8\\xff\\x02\\x66\\x37\\xc3\\xc1\\xba\\x3c\\x30\\xac\\x9c\\xcc\\x91\\x46\\x6c\\xa4\\x1a\\x10\\xb3\\xe7\\x59\\x1f\\x08\\x39\\x6d\\x81\\x4d\\x22\\xc1\\x17\\x2e\\x60\\x12\\xfc\\xdb\\xa2\\x8a\\x0b\\xf8\\xc5\\x38\\x06\\xcd\\x0f\\x3e\\x10\\xf2\\x4b\\x3a\\x54\\x38\\x54\\xe2\\x5a\\x3f\\xad\\x5d\\xa8\\x29\\x14\\x59\\x81\\x2e\\xe3\\x17\\xa4\\xb2\\xc2\\xa0\\x12\\xf5\\xcf\\xc9\\xc3\\xdb\\x3a\\x61\\x7a\\xb9\\x9f\\x4e\\xa4\\x7f\\x47\\x77\\xa0\\xaf\\xee\\xa6\\x37\\x2c\\x48\\x93\\x46\\x8c\\xd9\\x3b\\xa3\\x79\\x94\\x2d\\x36\\x4a\\xd3\\xd3\\xc9\\x7c\\x46\\x35\\xb4\\x3f\\xff\\xd4\\x57\\x02\\xe0\\xcb\\xc8\\x3d\\xa7\\x94\\xd3\\xb8\\xe0\\xe7\\xe0\\xb5\\x4c\\x7e\\x88\\xaf\\xc9\\xea\\x32\\xfc\\xa7\\xdf\\xb1\\xa6\\x9d\\x54\\xcc\\x64\\x3b\\x6e\\x6a\\xed\\xf8\\x43\\xd3\\xf9\\xe5\\x2f\\x27\\xe7\\x8e\\x29\\xb0\\x30\\xb4\\x2a\\xfe\\x92\\x27\\x96\\x4b\\x4d\\xb5\\x5c\\x6d\\x7c\\xa8\\x9b\\xf7\\x13\\x47\\x04\\x7a\\xdb\\xdb\\xbd\\x3e\\x7f\\x7d\\xf7\\x07\\x8c\\x6b\\xec\\xa8\\xba\\xaf\\x88\\x6a\\x2c\\x2c\\xb9\\x5f\\x1e\\x6d\\x96\\xbd\\xcf\\x05\\xe1\\x69\\x70\\xcc\\x84\\xfd\\x5e\\x43\\x27\\x67\\x12\\xec\\xd8\\xd0\\x4d\\xcb\\xfb\\x37\\xd5\\x38\\xd8\\x74\\x59\\x30\\xcb\\x70\\x05\\x16\\x08\\x4f\\xed\\x9e\\x0e\\xb9\\xe0\\xdf\\x1a\\xad\\xed\\x8e\\x63\\x63\\x53\\x18\\x10\\x3c\\x0a\\xf0\\x6a\\xec\\xa8\\xa2\\x56\\x1c\\x71\\xa9\\xae\\xc8\\x8c\\xae\\xf5\\xf1\\x84\\x60\\xd2\\xa2\\x4b\\xaa\\xfd\\xa1\\x4d\\x85\\x21\\x49\\x14\\x7f\\xa8\\xfe\\x08\\x63\\x26\\x5e\\x8f\\x78\\x45\\x07\\xe0\\x06\\x6d\\x58\\x1e\\x41\\xbb\\x4f\\xba\\x89\\xa1\\x20\\xfc\\xbd\\x1d\\x22\\xa4\\xf6\\x91\\x99\\x48\\x0f\\xd0\\x98\\xda\\x52\\x8f\\xd5\\x2a\\x95\\x29\\x7e\\xc1\\xe6\\xad\\xef\\x3a\\xd8\\x36\\x6c\\x65\\x52\\xfd\\xb4\\xa9\\xaa\\x54\\x3a\\x8f\\xe2\\x0e\\x5d\\x52\\x86\\x27\\x5a\\x45\\x7e\\x1b\\xd7\\x5b\\x11\\xbb\\x62\\x38\\x6e\\x1b\\xcb\\x98\\x1a\\xd3\\x4e\\x67\\x8e\\xf1\\x11\\xfd\\x93\\x5b\\x5d\\x95\\xd5\\x69\\x87\\xf6\\x91\\x7b\\xaf\\x20\\xc9\\xe5\\xc1\\x1c\\xea\\xaa\\x8d\\xe0\\xac\\x3f\\x09\\x67\\x19\\x9e\\x57\\xe4\\x30\\x9e\\x5f\\x59\\xdd\\xfa\\x66\\xc8\\xf4\\xa3\\xc8\\x73\\xf9\\xd0\\x4d\\x13\\x68\\x62\\xbd\\x25\\x1d\\x72\\x79\\x90\\xa3\\x89\\xe1\\xf8\\x50\\x82\\xfd\\xa9\\x21\\xd2\\x42\\xf2\\x44\\xce\\x8d\\x88\\xc0\\x9c\\x26\\x71\\x13\\x50\\xdf\\xcd\\x53\\x12\\xa8\\x50\\xe9\\x3a\\xc4\\xd7\\x85\\xf7\\xa8\\xc0\\xe1\\x67\\xf7\\x9c\\xe6\\x37\\x7c\\xef\\x35\\x9b\\x7f\\x10\\x10\\x9a\\xa0\\xaf\\xfb\\x23\\xfc\\xcb\\xf1\\xd6\\xc5\\x60\\xdb\\x2e\\x1f\\xd7\\x45\\x9b\\xce\\x9e\\x00\\x59\\x2a\\x59\\xe9\\xc7\\x60\\x55\\xb9\\x47\\x8d\\x30\\x96\\x32\\xdc\\xc6\\x9a\\xbd\\xea\\x52\\x6d\\x7e\\x42\\xe6\\x11\\xbd\\x63\\xd2\\x0c\\xb4\\x11\\xc1\\xa5\\xf9\\xd7\\xde\\xf9\\x01\\x9c\\x88\\xdc\\x2d\\x7a\\x8d\\xee\\x54\\xad\\x68\\x4d\\x6f\\xed\\x2b\\xb8\\xef\\xa4\\xf8\\x6b\\xd3\\xca\\x99\\x74\\xed\\xe7\\xed\\x4d\\xb5\\x9f\\x77\\x8c\\x96\\xcf\\x38\\x87\\x01\\xc3\\xdb\\xe2\\xe0\\xf2\\xec\\xaa\\x31\\x56\\x8d\\x9c\\xe5\\x2c\\x25\\x20\\xa1\\xbd\\x58\\xd8\\xea\\xc9\\xd5\\x83\\xa9\\x31\\x54\\x9b\\x40\\x59\\xdc\\x66\\x48\\x98\\x71\\xf1\\xce\\xe6\\xec\\xe0\\xd6\\xcf\\xb7\\xe1\\xf7\\x71\\xc9\\xb0\\xd1\\x93\\xb4\\x0f\\x73\\xf2\\x8b\\xa8\\x2f\\xe7\\xe0\\x5b\\xba\\x1b\\x6a\\xd9\\xa1\\x34\\x1e\\xa1\\xfc\\xf5\\xfa\\xd9\\xe9\\xf2\\x85\\xf7\\xf5\\x0b\\xb4\\xe2\\x7d\\x22\\x08\\x3a\\x80\\xd6\\x57\\xda\\xe4\\x87\\x74\\xa0\\x11\\xa8\\xe0\\x3c\\xbb\\x06\\x38\\x74\\x51\\x10\\x24\\x95\\x69\\x68\\xa0\\xae\\xef\\x9f\\x27\\x14\\xde\\x60\\x31\\x29\\x03\\xea\\x07\\x72\\x81\\x11\\x18\\xa4\\x8b\\xcb\\x71\\xb6\\x94\\x94\\x03\\x6c\\x15\\x95\\x55\\xc8\\x5c\\x8d\\x28\\xbc\\x36\\xc0\\xb9\\x7f\\xd9\\xad\\x30\\x8e\\x3e\\x83\\xc0\\xca\\xeb\\x17\\xfc\\x4f\\xb3\\xef\\xa0\\xfa\\x8e\\x4b\\x28\\x7b\\x48\\x9f\\x50\\x0d\\xe0\\x86\\x5d\\xfb\\xd3\\xc3\\x5b\\xfb\\x00\\xee\\x95\\x13\\xe1\\x83\\x6f\\x4d\\x80\\x41\\xbc\\x32\\xc9\\x2c\\xdd\\xef\\x7d\\x54\\x3e\\x47\\x68\\x5a\\xdb\\x1d\\x55\\x50\\x7d\\x70\\x73\\xfc\\x23\\xa9\\x0a\\x91\\x93\\x3a\\xce\\x06\\xb9\\x51\\x1e\\xbe\\x37\\xbc\\x2f\\x09\\x00\\x19\\x21\\xa5\\xd9\\x00\\xf1\\x27\\x40\\xc7\\xb2\\xc5\\x74\\xe6\\x26\\xa8\\xf0\\x36\\x5c\\x62\\xe6\\x96\\x4d\\x2e\\x2e\\xc9\\x92\\xf9\\xc3\\x21\\x48\\x26\\x74\\x31\\xaf\\x61\\x61\\x4e\\x1f\\x9e\\x76\\xf2\\x0b\\xc5\\x38\\xc7\\x62\\x65\\x43\\xef\\x58\\xe1\\x9a\\xc7\\xdd\\x3e\\x77\\x4c\\x73\\xbe\\xa7\\x7a\\x55\\x7d\\x59\\x61\\x62\\xea\\x62\\xb3\\x85\\x67\\x1e\\xff\\xd6\\xf1\\x79\\x6d\\xdf\\x08\\xaf\\x45\\x99\\xcf\\x75\\xff\\x8a\\xc3\\x6d\\xfb\\x23\\xcd\\xef\\x7c\\x68\\xb6\\xf5\\xf3\\x07\\x2c\\xea\\xec\\xb5\\x91\\x13\\x43\\xc7\\x26\\xc3\\x14\\x1f\\xe6\\x0a\\x3b\\xaa\\x08\\x20\\x58\\xb4\\xbb\\x54\\xe8\\x84\\xba\\x4d\\x79\\x28\\x69\\x88\\xba\\x0d\\x55\\x9e\\xf5\\xba\\xe1\\x34\\xed\\x70\\x7e\\x68\\x03\\x3a\\xdd\\x9a\\x18\\x7d\\x89\\x65\\x6c\\x6d\\xc2\\x2a\\x27\\x13\\x96\\x86\\xc2\\xac\\x0e\\x4f\\x80\\x06\\xc6\\x98\\x67\\x54\\xd4\\x8f\\x0b\\x0e\\xcc\\x40\\x03\\x75\\xd9\\x26\\xf4\\x85\\xf9\\x8d\\xc1\\xaa\\x52\\xc6\\xf3\\x3f\\x58\\x2a\\x8b\\x89\\x7f\\xa1\\x1b\\x28\\x32\\x92\\x20\\x79\\x46\\x31\\xe5\\x82\\x2e\\x63\\x9b\\xa0\\xdb\\xeb\\xa3\\x69\\x9f\\x46\\xa4\\x35\\x3c\\xe4\\x7f\\x65\\xa4\\x57\\x5b\\x3b\\x08\\x67\\xd7\\x7b\\x68\\xe9\\x55\\xab\\x34\\x3d\\xcf\\xe4\\x77\\xb5\\x3d\\xbd\\x75\\x4f\\x22\\xd8\\xc1\\x15\\x96\\x6f\\x71\\x26\\x8e\\x3c\\xfb\\x3a\\xb5\\x30\\xe6\\x24\\x3d\\xbd\\x9c\\x0c\\x55\\x7f\\x0d\\xdb\\x52\\xf4\\x77\\x27\\x20\\x66\\x16\\x29\\x83\\x1c\\xe6\\xed\\xb2\\xb9\\x23\\xa1\\x81\\x52\\x64\\xb8\\xb1\\x28\\xea\\xc4\\x71\\x43\\x81\\x84\\x8f\\x54\\x09\\xf6\\xc2\\x47\\xe2\\x70\\x96\\x5b\\xfb\\x83\\x64\\x9b\\x86\\x3d\\xfe\\xfd\\x91\\x22\\xbb\\x41\\x60\\xb3\\x87\\x48\\x03\\x12\\xcc\\x77\\xb8\\xc9\\xb3\\x6f\\x52\\xb9\\xa6\\x59\\x95\\x93\\x20\\xd5\\xb5\\x5c\\xf2\\xee\\xa9\\xf1\\x1c\\xfb\\xb2\\x53\\xcf\\x3e\\x6d\\xdf\\xb6\\x65\\xb3\\x54\\xb0\\xed\\xba\\xcd\\x8e\\x33\\xc6\\xee\\x2e\\xfb\\xc4\\xec\\xe3\\xe1\\x12\\xd1\\xfc\\x7e\\x14\\x21\\xc8\\x7b\\xe4\\x8c\\xa9\\xba\\x70\\xb3\\x66\\x0f\\xce\\x60\\xcf\\xc1\\xc8\\xbe\\x01\\x83\\x9d\\x07\\xc6\\x16\\x88\\x2a\\x46\\x56\\x9d\\x0f\\x33\\xfa\\x02\\xee\\x9f\\x24\\x3c\\x0d\\xe0\\xcb\\x6f\\x8a\\x81\\xd7\\xad\\xd2\\x91\\x36\\x9d\\xfd\\xc6\\x2b\\x1a\\xfe\\xf3\\x84\\x19\\x9c\\xb8\\xba\\x01\\x81\\x3d\\xd3\\x66\\xe9\\x41\\x8d\\xc4\\x70\\x59\\xee\\x72\\xaa\\xb0\\xe8\\x4d\\xa9\\x45\\x2d\\xe5\\x22\\x15\\xe1\\x4c\\xc9\\x30\\x8d\\x03\\x89\\x8c\\xdf\\x9d\\x1c\\xfb\\xae\\xf1\\xf3\\xc6\\xff\\xc9\\x5c\\xda\\x80\\xdf\\x10\\x47\\x09\\x2c\\xa8\\x8c\\x83\\x36\\x3f\\x0b\\x5b\\xd0\\x04\\x29\\x89\\x59\\x22\\x75\\x54\\x28\\xc7\\xad\\x80\\x8b\\xb3\\x11\\x16\\xb4\\x63\\xd1\\x7c\\x06\\xcb\\xd8\\x74\\x44\\x7d\\x27\\x20\\x67\\x30\\x2b\\x49\\x59\\xec\\xaf\\x82\\xe5\\xdf\\x60\\xb7\\x76\\xc5\\xbd\\xec\\x5f\\x49\\x1c\\xb5\\x9e\\x4e\\x77\\x03\\xc9\\xd3\\x1c\\x2e\\x86\\x77\\x93\\x57\\x5a\\x14\\x15\\x35\\x03\\xbc\\x4d\\x04\\x19\\xb6\\x13\\x1f\\x27\\xfb\\x59\\x4d\\x61\\x3d\\xfc\\x3a\\xbc\\x9f\\x8f\\xfd\\x68\\x5c\\x02\\xef\\x92\\xa6\\xf3\\x25\\x3c\\x6f\\x29\\x8c\\x0a\\xc9\\xc2\\x90\\x2f\\xb6\\x19\\xdb\\xa5\\x6b\\xe8\\xc4\\x49\\x46\\x6d\\xf0\\x76\\x6a\\x82\\x59\\x25\\x22\\xf0\\xbd\\x13\\xe0\\xf1\\xe3\\xaf\\xfa\\x6c\\x5b\\xb1\\x3b\\x81\\x2d\\x60\\x82\\xdc\\xad\\xac\\x47\\xda\\x51\\x52\\x95\\x4a\\x87\\x25\\xbf\\x1f\\xe3\\x63\\x39\\x49\\x5c\\x7c\\x89\\x50\\x74\\x56\\x47\\x6a\\x4c\\xb4\\x56\\x06\\x07\\x13\\x4e\\xe0\\x71\\x0f\\x52\\x30\\x70\\x66\\xcb\\xa3\\x04\\xf0\\xa6\\x7e\\x2a\\xd5\\x5f\\x14\\x22\\x8d\\xe0\\x3d\\xf1\\x72\\x35\\x9d\\x46\\x10\\xb0\\x6d\\x10\\x45\\x76\\x32\\x35\\xb4\\x75\\x77\\x0a\\xc2\\x80\\x95\\x3d\\x7e\\xbd\\x3d\\xc6\\xc2\\x61\\x19\\x37\\x0b\\x16\\xbd\\x8c\\x12\\xf9\\xfc\\xdd\\xad\\xb7\\x61\\x63\\xcb\\xbc\\x26\\x78\\x26\\x1f\\x5b\\xf0\\xf4\\x2b\\xbd\\x4e\\x22\\x52\\xd4\\xde\\xf0\\x3a\\xc5\\x72\\x17\\x70\\x05\\xd0\\x44\\x29\\x67\\xe7\\x02\\x79\\x13\\xeb\\x4d\\xf2\\x84\\x7a\\x7e\\x45\\xa0\\x18\\x29\\x8f\\x98\\x13\\x76\\xd1\\xe9\\x85\\xe8\\x47\\x49\\xc6\\x42\\xdf\\x71\\x56\\x62\\x28\\x0a\\x0c\\x3e\\xcc\\x61\\x52\\x9e\\xaa\\x2e\\x00\\xa0\\xb0\\x1d\\x14\\x58\\x35\\x4a\\x4a\\xfd\\xd7\\x2e\\x6b\\x4d\\x6d\\x62\\x32\\x2e\\xb7\\xcc\\x38\\xf2\\x01\\x6b\\xee\\x21\\xc6\\xc4\\xe6\\x70\\x4a\\xce\\x32\\x42\\x85\\xb1\\xa9\\x0a\\x77\\x11\\x52\\xd4\\xa8\\xc8\\xc3\\x13\\x1b\\x4a\\x6e\\x9d\\x1d\\xef\\xea\\x9f\\x0b\\xd9\\x99\\xb2\\xaa\\xa9\\x2e\\xcf\\xd9\\x3c\\x56\\x76\\x7a\\x4d\\x67\\xb1\\x6b\\x9b\\x61\\xcf\\xea\\x04\\x98\\xfb\\x4f\\xfd\\xa3\\x69\\x1d\\x76\\xe2\\xb4\\xed\\x85\\xd3\\xb2\\xb1\\xb3\\xd8\\x5c\\xae\\xad\\x5d\\x5b\\x91\\x8f\\x6e\\x36\\xd5\\x7c\\x1b\\xb3\\x5e\\x9d\\xbe\\x57\\x35\\x38\\x66\\x1e\\x21\\x4e\\x57\\x23\\x5b\\x6f\\x85\\x9b\\x04\\x2d\\xcb\\x57\\x9c\\x81\\xce\\x74\\xef\\x62\\x95\\x15\\x62\\xcf\\x4d\\x8d\\x17\\xc5\\x8a\\xff\\x74\\xb7\\x1e\\xd8\\x0c\\xe9\\xc5\\xa4\\x97\\x55\\xc8\\x83\\x61\\xc7\\x42\\x0a\\x5d\\x1c\\x47\\x46\\x88\\x4d\\x71\\x78\\x13\\x20\\x45\\x5d\\xec\\x08\\x3a\\x12\\x6b\\x38\\x68\\x4e\\x89\\x7c\\xef\\xf2\\x40\\xde\\xa8\\x88\\xc8\\x17\\x11\\x67\\xfc\\xf2\\x41\\x6c\\x82\\x4c\\xd5\\x07\\x75\\xde\\x71\\x9e\\x41\\xad\\x8f\\x75\\x89\\x35\\xef\\x4a\\x77\\x88\\x5f\\x05\\x92\\x78\\xc0\\xc1\\x64\\xd0\\xd6\\x92\\xe1\\x79\\xeb\\xaf\\x59\\x9f\\x59\\xd4\\x1d\\x3d\\xb7\\xd1\\x4e\\x6c\\xce\\x1a\\x88\\x1c\\x7a\\xc4\\x7b\\x76\\x96\\x65\\xb8\\x18\\xc5\\x2d\\x42\\xa1\\x95\\x7a\\x64\\x0e\\xed\\x91\\xeb\\x09\\xda\\xa2\\x07\\x8b\\x40\\x0a\\x0d\\xcb\\x01\\x95\\xc3\\xdf\\xe5\\xe6\\xab\\x6b\\xe2\\xa3\\xc6\\x89\\xef\\x7c\\x85\\xb9\\xdf\\x10\\xf7\\x14\\x6f\\x2c\\xd9\\xdb\\x20\\xf4\\xe1\\x71\\xc8\\xeb\\x32\\xfe\\x4c\\x15\\xfc\\xa7\\x76\\x0d\\xcc\\xd8\\x86\\xad\\x23\\x87\\xc8\\x70\\x8a\\x91\\x87\\x31\\xa5\\x14\\x8d\\x18\\x55\\x55\\x88\\xaf\\x3e\\xac\\x9f\\xa7\\x45\\xad\\x8e\\x11\\x23\\x8b\\xa4\\x63\\xdd\\xe4\\x8d\\x38\\x79\\x68\\xed\\x0b\\x9a\\xa2\\x0b\\x16\\xf9\\x81\\x9c\\x5f\\x2c\\x28\\x15\\xe0\\x2f\\xfc\\x2f\\x12\\x7a\\xe2\\xc2\\x9d\\x8f\\x25\\xd7\\x13\\x32\\xb9\\x1d\\x76\\xf8\\x96\\x3f\\xd7\\x96\\x5b\\xdd\\x7c\\xca\\xeb\\x2c\\x96\\x77\\x9e\\x1a\\xbc\\x8c\\x3e\\x09\\x10\\x64\\xab\\x39\\x7a\\x98\\x1b\\x8e\\x17\\xf1\\xb4\\x5a\\xe3\\xa2\\xac\\xc2\\xac\\xce\\xc4\\x2b\\x1e\\x5f\\x11\\x3a\\xc4\\x5c\\x7d\\x1f\\x33\\x24\\xee\\xbc\\x08\\x10\\x4c\\x5c\\x3d\\x4d\\xad\\x98\\xda\\x69\\x22\\x33\\xdc\\xfa\\x91\\x54\\xb7\\x2f\\xee\\xb6\\xb8\\xd9\\x1c\\xdf\\x71\\xe3\\x8c\\xf6\\x12\\xf8\\xea\\x4a\\xba\\x64\\x16\\x17\\xcd\\x6f\\x52\\x3b\\xee\\xa2\\xd0\\xce\\x6d\\xb1\\x09\\x3a\\x9a\\x26\\xdc\\xce\\x17\\x7a\\xb3\\x93\\x02\\x66\\x52\\xc2\\x38\\x5a\\xd7\\x02\\x8b\\x5f\\xa7\\x14\\x22\\xd8\\x14\\x6c\\xa7\\x0b\\x9f\\x29\\x59\\x3d\\x32\\x54\\x08\\xbd\\x56\\x2e\\xe7\\x4a\\xad\\x98\\x9d\\x7f\\x6e\\x1e\\xc5\\xb7\\xfc\\x52\\x17\\xf8\\xf3\\xd2\\x93\\xde\\x53\\xff\\x0d\\xb9\\xd0\\x2b\\x76\\x0e\\x89\\x23\\x01\\x06\\x71\\x36\\xe4\\xd0\\x3a\\x67\\xdb\\x72\\x3f\\xfe\\xa2\\x44\\x72\\xf0\\x17\\x16\\xde\\xa4\\x66\\x55\\x4b\\xfb\\x82\\xed\\x58\\x4a\\xfc\\x65\\xbe\\x58\\x6d\\xe5\\x2b\\x10\\xb6\\x50\\xd3\\xa6\\x8a\\x8a\\xaa\\x2c\\x4f\\x45\\x15\\x4e\\xbc\\xcb\\x9e\\x80\\x51\\x3f\\xcd\\xbe\\x6f\\x79\\x17\\x71\\x4b\\x6d\\x5d\\x48\\xbc\\x51\\x27\\x31\\xa2\\x58\\x92\\x99\\x69\\xf4\\x93\\x11\\x60\\x86\\xa7\\x08\\xd0\\xae\\xc1\\x86\\x80\\x15\\x0d\\x64\\x8e\\x1b\\x53\\xcc\\x53\\x66\\xa7\\x8e\\xb8\\x6c\\x64\\x5d\\x5e\\x56\\xca\\xfd\\xa1\\x67\\xec\\x88\\xed\\x84\\x3f\\xe4\\x0c\\x0b\\xe7\\x88\\x35\\x0e\\xd6\\x88\\x9b\\xa4\\x87\\x8e\\x15\\x81\\x66\\xa3\\xb1\\xf7\\xe7\\x8e\\x3c\\xc8\\x58\\x75\\xbb\\xb3\\xc3\\x95\\xd4\\x96\\x7d\\x98\\xd2\\xd2\\xcc\\x36\\x27\\x82\\x23\\x03\\x2c\\x25\\x0b\\x5f\\xba\\x77\\x63\\x25\\xcd\\xbb\\xd4\\x62\\x9a\\xcc\\xa8\\x10\\xe9\\xda\\xc2\\x72\\xed\\xfe\\xe6\\x64\\x85\\xcc\\x2b\\x43\\xec\\x3d\\xb6\\xb3\\xd9\\xe5\\xdc\\xca\\xed\\xf1\\x71\\x53\\x34\\x4e\\xfc\\x6d\\x87\\xe3\\xd8\\x95\\x47\\x4d\\x97\\x00\\x2f\\xc2\\x56\\xf3\\x30\\x23\\xd3\\x26\\x02\\xdd\\x33\\x13\\xbf\\x70\\x8a\\x42\\xde\\xc0\\x66\\x7d\\xe1\\x80\\x05\\x4a\\x4b\\x13\\x91\\x9f\\x85\\xeb\\xf5\\x21\\x40\\x24\\x10\\x5a\\xca\\x6c\\x7a\\x9b\\x85\\xd1\\x7e\\xfa\\x75\\xb5\\xed\\xfe\\x19\\x11\\x7e\\xc3\\x2b\\x27\\x97\\x12\\xe3\\x0d\\xf7\\x1e\\xbf\\xde\\xe9\\x67\\x19\\x28\\x43\\x63\\x2e\\xdb\\x2c\\x36\\xa7\\x7c\\x18\\x31\\x4d\\x61\\x1b\\x23\\xf5\\x70\\xc3\\x09\\x6c\\x09\\x17\\xa1\\x01\\xd7\\x4f\\x45\\x41\\xd5\\x58\\x14\\xfd\\x3e\\x5c\\xff\\x99\\x5f\\x3a\\xc1\\x82\\x95\\x68\\x42\\x65\\x37\\x3e\\xa2\\x00\\x28\\x0e\\x9c\\x49\\x92\\x9a\\xf9\\x94\\x53\\xa7\\xb2\\x02\\x92\\x3a\\x7c\\x33\\x83\\x25\\x74\\x0a\\x2b\\x1e\\x61\\xac\\xe5\\x05\\x3b\\x40\\x33\\x6e\\xa3\\xf2\\x44\\xa3\\x0f\\x21\\x62\\x67\\xde\\x44\\x53\\x8e\\xa1\\x43\\x6d\\x61\\xaa\\x95\\xc5\\xda\\x41\\x6b\\x16\\x9a\\xf8\\xd3\\x58\\x23\\x56\\xbf\\xa1\\xc1\\x95\\xd7\\xd0\\xfd\\xee\\x56\\xab\\x9f\\xad\\x7e\\xc9\\x6c\\xdc\\xd3\\x95\\xc2\\x30\\x53\\x95\\x8b\\xe5\\x6f\\x6b\\x26\\xdc\\x2f\\xc2\\xa8\\x3d\\x4c\\xad\\x26\\x3e\\x8e\\xe8\\xee\\xe3\\x3b\\x0b\\xeb\\x41\\xae\\xe2\\x26\\x9f\\x2f\\x1b\\x2f\\xef\\x47\\xa6\\x5c\\x9e\\xf1\\x65\\x3d\\x3b\\x66\\x36\\x1b\\xf3\\x3d\\xdd\\x67\\xf8\\x3f\\x3a\\xa5\\x73\\x78\\x2a\\x78\\x8e\\x91\\x97\\x9a\\x94\\x4d\\xef\\xd2\\xa9\\xbd\\x2d\\xbd\\x9c\\xa6\\xe9\\x3e\\x23\\x90\\x6e\\x7a\\x77\\x3a\\x6f\\x28\\xc9\\xfd\\x9b\\x3b\\x6d\\xd2\\x02\\xa0\\x5c\\xca\\x04\\x3e\\xa7\\xe2\\x22\\x04\\x9f\\x18\\x54\\xbe\\x3b\\xcb\\x53\\x76\\xbd\\x1a\\xa6\\x39\\xf5\\x40\\x0a\\xb3\\xb0\\xc5\\x81\\x8d\\x05\\x75\\x06\\x18\\x5e\\x4a\\x89\\x25\\x35\\x9b\\x48\\xcb\\x44\\xf1\\x72\\x98\\x9e\\x44\\xb1\\xfe\\xe9\\xda\\xe8\\x44\\x4f\\x7a\\x67\\x82\\x45\\x70\\x03\\x72\\x2e\\x08\\xa0\\xcf\\x28\\x62\\x58\\x27\\xdc\\x1a\\xf4\\xdc\\x4f\\x83\\x0c\\xc1\\xd1\\xb3\\x13\\xe2\\x18\\x82\\x1e\\xa1\\x32\\x46\\x9c\\x42\\xc6\\x4c\\xbd\\x0e\\x02\\x97\\x0c\\xab\\xca\\x05\\x83\\x6e\\xa1\\x10\\x8b\\x71\\x17\\xf1\\x13\\x4d\\xf9\\xbb\\x85\\x30\\xb9\\x3d\\xf2\\x68\\xed\\x72\\xf6\\x4d\\xa1\\x57\\xae\\x44\\xd6\\x6a\\x46\\x61\\x5b\\xbe\\xf4\\xe2\\x0e\\x95\\x03\\x9a\\xde\\x01\\x2d\\x25\\x39\\x13\\xfa\\xa2\\x46\\xdb\\xe6\\x2f\\x0c\\x28\\x71\\x85\\x3e\\x4e\\x41\\x0a\\x83\\x07\\xc0\\x17\\x8b\\x4a\\x84\\x43\\x40\\xde\\x4d\\x42\\xb0\\x5b\\x41\\xf0\\xdd\\x7d\\x39\\x74\\x14\\x5a\\xd8\\x61\\x76\\xe4\\x6a\\x99\\x5d\\x7c\\x76\\xb6\\xe4\\x52\\x66\\x2e\\x57\\xf7\\xc9\\x35\\xfb\\x74\\x4c\\x31\\x8d\\x6f\\x6e\\xc1\\x65\\x6f\\x9a\\x88\\x1f\\x61\\x97\\xe5\\x61\\x9f\\xb3\\xd0\\x2b\\x1b\\xcc\\xed\\xbc\\x31\\x7d\\x54\\xca\\xd2\\x58\\x9c\\x91\\xf7\\xbb\\x77\\x91\\x86\\x3d\\xe8\\x55\\xf9\\xdf\\x6e\\xd4\\xdc\\x34\\x1c\\xb9\\xe9\\x44\\xa9\\xe4\\x4f\\xcf\\xdc\\x49\\xf7\\xac\\xe7\\x52\\x8b\\x23\\x26\\x53\\x81\\x5b\\xca\\xb7\\xee\\x72\\xcc\\x28\\x03\\xcc\\x65\\x3b\\x25\\x1a\\xeb\\xdb\\xb7\\xe7\\xc1\\x6b\\x40\\xae\\x63\\x6d\\x29\\x04\\x14\\x8d\\x4e\\xce\\x6c\\x5c\\x84\\xb8\\xb1\\x66\\xd2\\xe5\\xc7\\xb2\\xb2\\x6e\\xbc\\x9e\\x6e\\x85\\x6a\\x6a\\xca\\x31\\x56\\x72\\xa6\\xe3\\xad\\x9a\\x70\\xd2\\xa5\\x89\\xc9\\x65\\x52\\xfe\\x4d\\x3b\\x7b\\x69\\x83\\x8d\\x8e\\xba\\x9e\\xad\\xc2\\x31\\x36\\xcd\\xc3\\x9b\\x54\\x92\\xa6\\x4d\\x05\\x38\\x70\\x9b\\x21\\x8f\\x17\\x25\\xc4\\xad\\x2e\\xc4\\x82\\x1c\\x65\\xf5\\x02\\x24\\x36\\x84\\x83\\xd2\\xad\\xd6\\x11\\x4f\\xa6\\x48\\x95\\x58\\x70\\xd1\\xeb\\x4d\\x0d\\x67\\xfe\\x19\\x13\\x17\\x8f\\xf4\\x95\\x70\\xdb\\x13\\x70\\x98\\xee\\xed\\x16\\x10\\x5a\\xfe\\xd8\\x9f\\xc0\\x76\\x7a\\x23\\xbb\\x62\\xdc\\x78\\x45\\xd1\\xbe\\x5f\\xe5\\xad\\x6d\\x0b\\x93\\x7b\\x00\\xee\\xc1\\xdf\\xe9\\x14\\xa0\\xe5\\x3a\\x89\\x93\\xdd\\x61\\x4c\\x75\\xe2\\x2b\\x1e\\xfe\\x2d\\xd0\\x0e\\x17\\xff\\xaa\\xd0\\x94\\x48\\x8d\\x88\\x66\\x30\\x47\\x39\\xd6\\x32\\xfe\\x64\\xd8\\xbe\\x15\\xdd\\x0c\\x83\\x51\\x89\\x37\\x9b\\xaa\\x8f\\xf8\\x3b\\x4f\\x83\\x0d\\x1d\\x3e\\x1e\\x2c\\xa9\\xde\\x18\\x72\\xa7\\x06\\x76\\x2f\\x72\\x07\\x4e\\x0b\\xe3\\xc5\\x7b\\x65\\x7f\\x42\\x67\\xb6\\xfc\\x34\\x50\\x2f\\xfe\\x10\\x50\\xd3\\x0b\\x9f\\x25\\x82\\xb4\\x01\\x8e\\x63\\xe7\\x97\\x33\\xb9\\xa9\\x2e\\xa7\\xdb\\x7a\\xbe\\xb6\\xfa\\x37\\xe5\\x08\\x73\\xb9\\x55\\x9f\\x0c\\xf3\\xc1\\x84\\xf9\\xc8\\x0e\\x94\\x61\\x05\\x4f\\xb6\\x1f\\x39\\x0f\\x94\\x0a\\x2a\\xb9\\x92\\x9a\\x04\\x49\\xa7\\xb9\\x2a\\x59\\x06\\xb2\\x0e\\xbe\\x56\\x92\\xcf\\x9b\\xc7\\xe3\\x3d\\x70\\x7b\\x64\\x94\\x31\\x2b\\x57\\xcd\\xa3\\xb9\\x11\\xcf\\xa5\\xda\\x99\\x85\\xa4\\x76\\x82\\xab\\xf1\\xac\\xca\\x3e\\xff\\x2c\\x3a\\x56\\xfa\\x6f\\xd5\\x78\\x5f\\x18\\x83\\x5a\\xa6\\x52\\x20\\x93\\x70\\x53\\x7e\\xb4\\xb7\\xb8\\x83\\xc6\\xa5\\x56\\x4e\\xce\\x64\\xd3\\x64\\x87\\x17\\x8d\\x26\\x69\\x84\\xdc\\xf5\\x4d\\xce\\xd1\\x4c\\xf3\\xee\\xcc\\x7a\\xbd\\xbd\\x0e\\xb1\\x2e\\x47\\x70\\x8b\\x07\\xfe\\x4f\\x58\\x17\\x8d\\xa1\\x3d\\x7d\\xbd\\xd6\\x32\\xaa\\x0d\\xa2\\x2a\\xbc\\x99\\x72\\x28\\xb5\\x84\\x60\\x75\\x49\\xa1\\x49\\xf7\\xc2\\x59\\x2c\\x46\\xb5\\x88\\x6e\\x47\\xff\\x13\\x36\\x76\\x9d\\x9a\\xe5\\x78\\xd6\\x8a\\xf8\\x65\\xab\\x99\\x79\\xdf\\xd9\\x08\\x40\\x7b\\xc6\\x0a\\x3b\\x0f\\x26\\x24\\x3f\\xf5\\xfd\\x41\\xe7\\xc9\\xe5\\xca\\x68\\x0d\\xe0\\x15\\x6e\\x5d\\x95\\xd4\\x46\\x68\\xd4\\xe7\\xcd\\xa8\\x09\\x06\\x2a\\x1a\\x5e\\xe2\\xc5\\x77\\x22\\xee\\x8c\\x69\\xf7\\x14\\x59\\x01\\x25\\x45\\xd6\\x5e\\xce\\xd0\\xd1\\x6d\\x25\\xaa\\xcd\\x3d\\x06\\x50\\xe2\\x3a\\xdd\\x3d\\x1b\\xa1\\xb7\\x6a\\x88\\x35\\xfc\\x5f\\xdd\\x9a\\xee\\xa7\\xcf\\xa4\\xff\\x24\\xa8\\xbc\\x4a\\x36\\x58\\xbc\\x65\\xaf\\x23\\x78\\xda\\x4b\\x1f\\x15\\x86\\xc9\\x4d\\x6a\\x08\\xe8\\x32\\x35\\xdb\\xe4\\xa1\\x21\\x9c\\x3a\\xad\\x68\\xb2\\xf0\\x9e\\x98\\x6e\\xf6\\xce\\xe9\\x0e\\x6d\\x39\\x96\\x07\\xba\\x91\\x88\\xdd\\xb1\\x80\\x23\\x8e\\xce\\xa1\\x04\\x4f\\x5e\\xa0\\xa0\\x4e\\x71\\x22\\x11\\x2e\\x51\\xb1\\x03\\x24\\x29\\x01\\x57\\xb9\\x9c\\x73\\x26\\xcf\\xd0\\xb9\\xcb\\x89\\xe1\\x3a\\x4e\\xec\\xb9\\x87\\x17\\x4a\\x47\\x62\\xb6\\xf3\\x3b\\xfd\\xb4\\xdc\\xec\\x89\\x92\\xff\\xbc\\xe0\\xfa\\x74\\x79\\x64\\x8a\\x33\\x5d\\x37\\xaf\\xc4\\x13\\xc7\\x13\\x04\\x3e\\x72\\x1b\\x5e\\xbf\\x54\\xa1\\xae\\xbd\\x2a\\xf6\\x60\\x59\\x33\\xf1\\x82\\x34\\x82\\xbe\\xda\\x59\\x64\\x9b\\x1a\\x61\\x4e\\x9f\\x59\\x5d\\x13\\x37\\x6f\\xd8\\x9f\\x51\\x9e\\xc1\\x11\\xa4\\x04\\xb5\\x4e\\x10\\x81\\x5b\\xd7\\x1f\\x99\\x69\\x41\\x7c\\xf3\\xa0\\xfa\\xc8\\x90\\x7f\\x51\\x74\\x31\\x1d\\x59\\x4a\\x5f\\x95\\x68\\x52\\xcf\\x19\\x07\\xe0\\xa4\\xda\\x0a\\xce\\x4b\\xb2\\x2f\\x03\\x66\\x1c\\xd7\\xb4\\x55\\x40\\xa4\\x21\\x9a\\x95\\x6c\\xfc\\x63\\x5a\\x98\\xb5\\x90\\xf9\\x72\\x74\\xb1\\xed\\x31\\x93\\x11\\x08\\xcf\\x52\\xdf\\xf7\\x64\\x7f\\x4a\\xaf\\x20\\x57\\x3a\\x2d\\xb4\\x55\\x40\\x9e\\x45\\x23\\x69\\x8d\\x67\\x17\\x5f\\x64\\x03\\xff\\xd6\\x67\\x98\\x28\\x32\\xf9\\x10\\x8c\\x89\\x29\\xdb\\x0d\\xf3\\x73\\x1e\\x68\\x34\\x65\\xa5\\x9e\\xd9\\xb8\\xaa\\x29\\x26\\x7d\\xf7\\x31\\x5a\\xa5\\x63\\x62\\x49\\xc2\\xce\\xfb\\xf8\\x40\\x87\\x64\\x84\\xf5\\x4c\\x74\\x51\\x9c\\x6b\\x95\\x21\\x20\\xa9\\xdc\\x80\\xe5\\xa2\\x14\\x6d\\x53\\xa1\\x87\\xb7\\xe7\\x8f\\x1a\\xc1\\x0c\\xaf\\x03\\x05\\xb5\\xe7\\x7c\\x94\\x16\\xaf\\x17\\x05\\xb5\\xe5\\x26\\xb2\\x9c\\x63\\xb6\\x1a\\xf5\\xf4\\x9f\\x67\\x0b\\xf1\\x85\\xe3\\x18\\x2e\\x16\\x37\\x32\\xe7\\x5b\\x06\\xb5\\x6e\\xee\\x76\\x3f\\x5f\\x19\\x0f\\x1e\\x11\\x2f\\x6d\\x5c\\x06\\x7c\\x42\\x42\\xba\\x5b\\x8d\\x86\\x08\\x9f\\x31\\x31\\x3c\\xf6\\x5d\\x23\\x41\\xf8\\xc1\\xa1\\x1c\\x70\\x84\\x5f\\x58\\x39\\x9d\\x2c\\x08\\x1e\\xf5\\x38\\xc1\\xf8\\x01\\x50\\xfe\\x70\\x10\\xff\\xb8\\xbf\\x7a\\x60\\x7f\\x6e\\xbc\\x52\\x89\\xdf\\x64\\x5f\\x7c\\xf5\\x43\\x1a\\x34\\x60\\x5b\\x41\\xbf\\xc8\\xac\\x01\\xff\\xac\\x4a\\x2a\\x25\\xc1\\x1e\\x94\\xf8\\x7f\\x1a\\x10\\x5c\\x73\\xbe\\x1e\\x9d\\xba\\xd7\\xe7\\xe1\\x8d\\xbe\\xd2\\x42\\x5e\\x4e\\xd7\\x05\\xdb\\xa1\\xd7\\x94\\x9f\\x72\\xbd\\x36\\x4a\\x02\\x6b\\xda\\x00\\xf6\\x49\\x8b\\xa1\\x00\\x2e\\x44\\xd7\\x50\\xb7\\xcc\\x7b\\x75\\xe1\\xe7\\x17\\xca\\x15\\xb8\\xff\\xb5\\xdb\\x55\\x22\\xa4\\x8f\\xb3\\x86\\x40\\xe8\\xc3\\x7b\\xf8\\x13\\x18\\x74\\xe7\\xe4\\xe4\\xae\\xea\\xc5\\xf1\\x79\\x5e\\xc9\\xfa\\x74\\x8a\\x22\\x79\\x34\\x3c\\x33\\xad\\x71\\x3a\\xfa\\x36\\x71\\xb1\\x1d\\x84\\x00\\x7e\\x52\\x22\\xd1\\x90\\xc9\\xe5\\x09\\x56\\x41\\x53\\xf9\\x11\\xed\\x24\\x19\\x3d\\x43\\x06\\xea\\x58\\xe1\\x80\\x67\\x4f\\x9e\\x10\\xa8\\x8b\\x37\\xb5\\x4a\\xbc\\x06\\x6c\\xa6\\x8b\\x75\\xce\\xb4\\x0e\\xee\\x3d\\x1e\\xe4\\x9a\\x2c\\x8a\\x1b\\x4a\\x30\\xf7\\x42\\xe7\\xf1\\xed\\xa2\\x5a\\xf6\\x96\\x86\\xda\\x6c\\x77\\xfb\\xdf\\xa2\\x1f\\x70\\xbf\\xb2\\x34\\x2e\\x1a\\x34\\x3f\\xc9\\x35\\x34\\xc8\\x7d\\x2b\\x17\\xd5\\xb2\\x22\\x10\\x87\\x28\\xd7\\x0a\\x4d\\x85\\x0b\\xba\\xe6\\x57\\xd7\\xab\\x9b\\xc5\\xc7\\x4b\\xaf\\x75\\x8f\\x9f\\x64\\x09\\x75\\xe6\\x79\\x3b\\x0c\\xaa\\xaa\\xca\\xaa\\x48\\xcd\\xc3\\xfe\\x84\\x10\\x36\\x88\\x19\\x3d\\xa1\\x63\\x26\\xe3\\x39\\x39\\xc5\\x1c\\x7e\\xec\\x77\\x80\\xf4\\x3e\\xa3\\x10\\xe9\\x81\\x38\\x0a\\xd2\\x6a\\xd6\\x06\\xd2\\x1e\\x45\\x11\\x98\\xc0\\xaa\\xb2\\xe7\\x07\\xc3\\x0a\\x2a\\xfe\\x51\\x96\\x20\\xa1\\x3f\\xeb\\x2f\\x98\\x13\\xe0\\xe1\\xe1\\xa1\\xe4\\x11\\x5f\\xd3\\x98\\x1f\\xd1\\xb4\\xc9\\xbb\\x68\\x04\\xc1\\xa5\\x1a\\xc9\\x77\\x69\\x52\\x18\\xdc\\x79\\x4f\\x24\\xea\\x6a\\xc9\\x80\\xde\\xf4\\x0b\\x34\\xfd\\x7a\\xdb\\xf2\\x62\\x64\\x79\\x9d\\x85\\x59\\xe9\\xf3\\xf9\\xc3\\xf7\\xee\\xa4\\x99\\xd7\\x0c\\x12\\x9b\\xbf\\x71\\xf0\\x7d\\x63\\xb5\\x2f\\x79\\x33\\xed\\x8e\\xd1\\x8d\\x56\\x94\\xd4\\xce\\x4e\\x2e\\x7c\\xbe\\x46\\x0c\\xff\\xab\\x2c\\x48\\x01\\x71\\x57\\x52\\x7d\\xb0\\xcb\\x09\\xf7\\x2d\\xef\\x9a\\xf5\\x19\\xb1\\x8a\\x7b\\x32\\xfb\\x78\\xaa\\x5f\\xa7\\x0e\\x72\\x89\\x77\\xaa\\x0b\\xa4\\x3f\\xce\\x69\\xfb\\xb8\\xfb\\x9b\\x13\\xde\\xc9\\x0e\\xd0\\x8d\\x39\\xee\\x7e\\x80\\xe6\\x1f\\xf8\\xc2\\x45\\x07\\xa1\\x84\\x0e\\x3c\\x35\\x97\\x0b\\x40\\xac\\x2f\\x9b\\x33\\xd7\\x67\\xcc\\xac\\x11\\xf4\\x87\\x0d\\x78\\xb9\\xd4\\x60\\x08\\x47\\xd4\\x50\\x55\\xb7\\x4f\\x55\\xde\\x4a\\x86\\x76\\xc3\\x29\\xd1\\xa5\\x09\\x95\\x6d\\x8a\\x07\\xd7\\xa1\\x4f\\x5d\\xab\\x57\\x9e\\x29\\x2e\\x51\\x36\\xa2\\xf9\\x14\\x6d\\xa1\\x81\\x9b\\xed\\x15\\x4a\\x18\\x66\\x41\\xbe\\x40\\x14\\x8d\\x44\\x22\\x2a\\xc8\\x78\\x08\\xe8\\xb0\\x14\\xd3\\xe3\\xd6\\xd0\\x92\\x76\\x39\\xdd\\x74\\x5b\\x1a\\xd0\\xeb\\xa6\\xcf\\xd9\\xe1\\xff\\x51\\x9b\\xb3\\xae\\xbd\\x80\\x51\\xd4\\xee\\x6c\\x0b\\x31\\x74\\x53\\xb2\\x87\\xc8\\x80\\x51\\x09\\x47\\xea\\x92\\x7a\\x6f\\x50\\x76\\xf9\\x3d\\x8b\\xd0\\xa9\\xb0\\x69\\xbb\\x79\\x3f\\x1e\\xa0\\xb7\\x19\\x3a\\xf6\\x5e\\x35\\x4a\\xd3\\x90\\x5d\\xb1\\x20\\x8b\\x40\\x7e\\x62\\x35\\x08\\x59\\xa1\\x8d\\xe5\\x98\\xd3\\x02\\xf8\\xcb\\xc7\\xb7\\x4d\\x41\\x8a\\xf6\\x12\\x3d\\x2a\\x40\\x99\\x32\\xe9\\x5b\\xb8\\x43\\xa3\\x84\\x06\\xeb\\x15\\xb2\\xd0\\x92\\x9f\\x81\\x28\\x60\\x94\\xc3\\x3a\\x39\\x49\\xdc\\x5b\\xff\\x51\\xbf\\xae\\x94\\x4a\\xa7\\x59\\xac\\x12\\x52\\x81\\x5d\\xec\\x0b\\xe3\\xef\\x7c\\x72\\xa1\\x41\\xf6\\xfb\\x5c\\x43\\xb2\\x48\\x18\\x0e\\xbb\\x6d\\x72\\x09\\x09\\x71\\xb1\\x92\\x2c\\x87\\x7e\\xee\\x18\\x5a\\x9d\\x47\\x3b\\x97\\x9b\\x66\\x73\\x14\\x20\\x31\\xa3\\xa1\\xb7\\x2c\\xbf\\x76\\x6d\\xf3\\x3c\\xab\\x76\\x9e\\x22\\x22\\xe7\\xfc\\x2a\\xaa\\x02\\x58\\x03\\x34\\x0a\\x5c\\x03\\xe0\\xd9\\x85\\x7b\\x25\\xd6\\xf3\\x55\\x95\\xe6\\x97\\xe1\\x34\\x29\\x66\\xaf\\x1e\\x7e\\xbd\\xd5\\xe8\\xcf\\xea\\x38\\xf2\\x15\\x67\\x59\\xe4\\x4f\\x65\\x40\\x11\\xf7\\xc2\\x0f\\x24\\x49\\xdb\\x21\\xa0\\xb9\\xa3\\x44\\xb5\\xe2\\x17\\x0f\\x62\\x06\\x66\\x36\\x2e\\x18\\x63\\x69\\x23\\x27\\x9d\\x60\\x4a\\xd7\\x50\\x99\\x33\\x53\\x3d\\xf5\\x26\\x63\\xea\\xa9\\x2b\\xea\\xed\\xf1\\xdb\\xac\\x79\\x99\\xfa\\x1c\\xeb\\x68\\x19\\xae\\xbe\\x86\\xbc\\xae\\x3e\\x65\\x94\\xe0\\x7a\\x2d\\xbe\\x75\\x2c\\xaf\\x78\\xaa\\x8a\\xb1\\x05\\x5c\\x44\\xda\\x07\\x95\\xd3\\x4f\\xe9\\xa9\\x1c\\x62\\xa1\\xe5\\x6c\\x5e\\x4d\\x72\\x88\\xd2\\x3c\\xac\\x08\\xbc\\xef\\x6d\\x49\\xbc\\xae\\x54\\x1b\\x6d\\xa5\\xe8\\xb7\\xf1\\x18\\xb3\\x89\\x1a\\x45\\x6c\\x9d\\x8e\\xdc\\x5c\\x56\\xf2\\x45\\x62\\x64\\x54\\x11\\x51\\x3b\\x35\\xcc\\xab\\x0d\\xe2\\xc7\\x24\\xa8\\x0f\\xb7\\xab\\x6b\\x08\\xe7\\xcd\\xa9\\xd9\\x34\\xc4\\x7f\\xd6\\xfc\\x60\\xdf\\x84\\xc7\\x56\\x10\\xda\\xfb\\x2c\\x75\\xa0\\x2c\\x83\\x94\\xcd\\x83\\xa2\\x59\\x9f\\x3e\\x1b\\xd5\\x1a\\xa1\\x0f\\x81\\x5f\\xd7\\x0c\\x41\\xbf\\x03\\x82\\xfc\\x03\\x83\\x9b\\xa4\\xe9\\x4d\\x6e\\x1c\\xe8\\x6c\\x34\\x11\\x19\\x83\\xb0\\xa3\\x9b\\x7f\\x92\\x48\\x51\\x0e\\x85\\x1c\\x24\\x59\\xc4\\x1b\\xac\\x28\\xe2\\x18\\xaf\\x8a\\x78\\xa9\\x42\\x2a\\x51\\xf5\\x52\\x4d\\x88\\x28\\x9d\\x8d\\x49\\x73\\x87\\x74\\xb7\\xa2\\xa9\\x9f\\xcc\\xe5\\x40\\xb0\\x30\\x63\\x3e\\xc6\\x2d\\x49\\xea\\x08\\xb5\\xe3\\x17\\x23\\x25\\x32\\x00\\x8d\\xdf\\x03\\xdb\\x8b\\xb9\\x72\\xc9\\xc5\\x6d\\x38\\x81\\x47\\x39\\x47\\x39\\x7f\\x6c\\xea\\x25\\x6c\\x62\\x4a\\xe7\\x4e\\x19\\xf1\\xa4\\xff\\x1f\\x00\\x00\\x40\\xff\\xbf\\x8a\\xf2\\xf3\\xb4\\xb9\\xd9\\x2b\\x94\\x72\\x50\\x0d\\xab\\x57\\xf0\\x1a\\xb6\\x2b\\x85\\xca\\x02\\xeb\\x42\\xf8\\x25\\x9d\\xa0\\x6c\\xd3\\x2c\\x4a\\x03\\x32\\xb4\\x91\\x30\\x99\\xde\\xc0\\x82\\xec\\x74\\x6a\\xe4\\xe6\\xf2\\x9c\\xca\\x9a\\x26\\xc7\\xaa\\xd9\\x6e\\xe7\\xcf\\x7f\\xc2\\x58\\x1c\\x95\\xe5\\xdc\\xc5\\xca\\xa1\\xfd\\x9d\\x47\\x06\\x9d\\x3b\\x5a\\xda\\xbe\\xd4\\x5f\\xc9\\xd5\\xe5\\x38\\x1b\\xdc\\x46\\xc2\\x14\\x69\\x82\\xb9\\x75\\xab\\x46\\x9e\\x3f\\xe7\\x72\\x1b\\x1d\\x5a\\x39\\xf7\\x8e\\xca\\xb8\\x02\\xba\\x62\\xe5\\xba\\x60\\x6e\\x7d\\x38\\xaf\\xac\\x54\\x5d\\xde\\x33\\xdb\\xf2\\xd4\\x8b\\x73\\x55\\xe1\\xca\\x80\\xb2\\x65\\xb6\\xa7\\xbc\\xdd\\x6c\\x87\\xa1\\x8d\\x27\\xc6\\xff\\x34\\x4a\\x45\\x45\\xca\\xcc\\x1c\\xe5\\xab\\xd9\\x45\\xda\\x4c\\x74\\xcf\\xf6\\x70\\xac\\xa0\\x22\\x6a\\x49\\xfe\\x2d\\x2b\\x23\\x59\\x58\\x59\\x6f\\xf4\\xd4\\x00\\x04\\xac\\xc4\\x2f\\x56\\xb1\\x9f\\x02\\x33\\x99\\xed\\xfe\\xa8\\x56\\x0b\\x11\\xac\\xe6\\x33\\xa5\\x66\\x13\\xc9\\x37\\xd1\\x1f\\x83\\x52\\xc2\\x16\\x21\\xd8\\xa5\\x2c\\x2b\\x25\\x26\\x27\\x17\\xff\\xb0\\xc6\\xf2\\xab\\x2d\\xfc\\x6a\\x55\\xe5\\x73\\x91\\xf2\\x54\\x8a\\xd9\\xa0\\x36\\x27\\x85\\x1b\\xa4\\xb5\\xca\\x2a\\x52\\xb1\\xb6\\x20\\x65\\x60\\x19\\xa9\\xa2\\x41\\xc2\\x14\\xcc\\xf5\\x6b\\x36\\xf5\\x1e\\x7d\\x63\\xd7\\xee\\x57\\x6f\\x6d\\x6f\\x3a\\xf8\\xe2\\xce\\xf6\\x9b\\x03\\x9a\\x78\\xd9\\xef\\x3b\\xfe\\xdd\\xd0\\x6c\\x1a\\x7a\\xf2\\xba\\x37\\x3a\\xb8\\x6c\\x5f\\xd3\\x50\\x20\\xd0\\x57\\x53\\x62\\x88\\x8c\\xd6\\xd4\\x4e\\x34\\x9a\\xf1\\x6f\\x77\\x71\\x6f\\xbf\\x1a\\xbf\\xf9\\xc7\\x27\\x07\\x56\\xde\\xf8\\xd5\\xf5\\xdb\\x5f\\xbe\\xbe\\xa5\\xc2\\xd9\\x79\\xc0\\x73\\xe3\\xf6\\x19\\xad\\x31\\xf3\\x3d\\xe7\\xe6\\xad\\x3b\\x92\\x8d\\x6a\\x63\\xc1\\x0a\\x77\\xe7\\xc6\\x50\\x60\\x6d\\xab\\xab\\x6a\\xfc\\xda\\x55\\x6b\\x84\\x35\\x7c\\x33\\xb8\\x15\\x6f\\xc6\\xff\\x44\\x3e\\xad\\x00\\x45\\xb4\\xb2\\x50\\x52\\x07\\x02\\x48\\x39\\x50\\x5a\\xdf\\xc7\\xb2\\x78\\x50\\xac\\x58\\xc6\\x6c\\xa7\\xd9\\x6a\\x36\\x89\\xa5\\x22\\x94\\x6b\\xf5\\x07\\x24\\x1d\\x95\\x95\\x6e\\xb3\\xa9\\x13\\xbc\\x79\\x1e\\x60\\x90\\x9c\\xee\\x69\\x4e\\xf4\\xf4\\x24\\x9a\\x7b\\x90\\xc6\\x1e\\x32\\x89\\x1f\\xeb\\x3e\\x84\\x86\\xba\\xae\\xae\\x3a\\xf2\\x7f\\x32\\xa7\\xd8\\x6f\\xd5\\x76\\xd3\\x8f\\xc2\\xf3\\x6c\\xb8\\xb4\\x0b\\x4f\\xe1\\x57\\x80\\x1e\\xd8\\x80\\x0f\\x5c\\x1d\\x55\\xa7\\xc9\\x11\\x06\\x65\\xae\\xd2\\x12\\xcc\\xe2\\x3c\\x0d\\x42\\x2c\\x23\\xf0\\x0f\\xc2\\xb6\\xb1\\x13\\x30\\x88\\xd9\\x05\\x30\\x5e\\x48\\xd2\\xa7\\x64\\xb5\\x5f\\xdc\\x82\\x17\\xd4\\x2a\\x9d\\xce\\x1c\\x47\\xce\\x22\\x25\\x85\\xb8\\x93\\x08\\x73\\x46\\x36\\x19\\x32\\x4f\\xe2\\x56\\x22\\xfe\\x20\\x07\\xdd\\x61\\xf8\\x89\\xe2\\x95\\x32\\x1b\\x07\\x13\\x27\\x37\\xae\\x9d\\xa2\\x62\\x99\\xd5\\xdd\\x89\\x93\\xeb\\x49\\xb6\\x5e\\xab\\x2b\\x80\\x2b\\x6c\\x1e\\xaa\\x94\\x81\\xff\\xa2\\xce\\xe5\\xfe\\x6a\\xb2\\x52\\xf5\\x8c\\xa0\\x9a\\x29\\x3d\\xf2\\x9f\\x6d\\x1f\\xdf\\xc5\\xeb\\x66\\x0a\\x8e\\xfe\\x4b\\xcb\\xef\\x4e\\x34\\xec\\x2a\\x43\\x2e\\x15\\x95\\xcc\\x84\\x37\\x38\\x93\\x3f\\x4f\\xa7\\x2a\\x9a\\x05\\xed\\x8c\\x4c\\xce\\xeb\\x4b\\xd6\\x2f\\x93\\x4e\\xf3\\x21\\xd2\\x72\\x25\\xf4\\x72\\xfd\\xcc\\x15\\x6f\\xf2\\x04\\xd0\\x17\\xeb\\x67\\x54\\x5f\\xa0\\x9f\\x39\\xb9\\x7e\\x88\\xd7\\xcf\\x68\\x3d\\xd7\\x0f\\x6e\\x38\\xb5\\x89\\xca\\x67\\xfc\\x7d\\xd5\\xad\\xab\\x0b\\x0a\\x56\\x53\\xf9\\x8c\\x4e\\x94\\xcf\\x04\\x39\\x28\\x7f\\x32\\xf9\\x1f\\xc1\\xda\\x94\\x7e\\xa6\\x8a\\xab\\xf7\\x4b\\xfa\\x19\\x1d\\x00\\xf8\\x5d\\xb2\\x4f\\xaa\\xc9\\xa7\\x40\\xd4\\xa7\\x90\\x21\\x90\\xce\\x22\\x98\\x46\\x99\\x85\\x34\\xc0\\xa0\\x34\\x86\\x20\\x23\\x5a\\xfa\\x8d\\x85\\x48\\x68\\xc9\\xaf\\xb2\\x65\\x50\\xf2\\x9f\\x87\\x3f\\xf4\\x5f\\x2a\\x36\\xa8\\xe2\\xa5\\x6e\\xd4\\x26\\xb1\\xea\\x8d\\x37\\x84\\x42\\x48\\x8f\\x47\\x28\\x85\\x4c\\x76\\xc0\\x07\\xb9\\x29\\xfc\\xda\\x99\\x8b\\x1f\\xd3\\xaa\\x48\\xac\\x3b\\xf3\\xeb\\x5f\\xff\\x3a\\x79\\xe6\\xdb\\x92\\x9e\\x0e\\x57\\x5f\\xae\\xa7\\x8b\\xfc\\x1f\\xf4\\x74\\x92\\x72\\x11\\x20\\x70\\x80\\xd4\\x3a\\x75\\xf0\\x7c\\x4f\\x3e\\xe8\\x14\\xb6\\x83\\x02\\x80\\x21\\x0b\\x31\\xbb\\x5d\\x28\\x55\\xe4\\x27\\x81\\x11\\x77\\xd8\\x68\\xf1\\x92\\x9b\\xe4\\x32\\x6d\\xb1\\x48\\x00\\x4d\\x8a\\x27\\xa5\\x3a\\x4f\\x82\\xf6\\x0c\\x3e\\xd5\\xe2\\x68\\x9c\\xce\\x07\\x6c\\x7e\\xf3\\x4d\\x14\\x7d\\xd3\\xd1\\x7f\\xed\\x60\\xcb\\x35\\xc3\\x9e\\x37\\x5b\\x6a\\x1d\\x41\\x43\\x26\\x7b\\xf6\\xe2\\xd1\\xae\\x83\\x43\\x15\\x8e\\xbe\\x43\\x83\\xab\\x07\\xf2\\x2b\\x1b\\x9d\\x3c\\x9f\\xd7\\xce\\x75\\xe0\\x41\\xf6\\x55\\xa0\\xe3\\x95\\xcd\\x61\\xd0\\x19\\x5d\\x99\\x0e\\x91\\x4c\\xd0\\x53\\x66\\xc0\\xb4\\x34\\xe5\\x68\\x3a\\x54\\x2a\\xe3\\xed\\x0a\\x48\\x25\\x95\\x98\\x4f\\xd9\\xcb\\x21\\xcb\\x0a\\x04\\xcf\\x62\\x79\\x65\\x28\\xe0\\x75\\x97\\x39\\xad\\x66\\x7e\\x36\\x34\\xf1\\xaa\\xec\\x4c\\x3a\\x21\\xcb\\x95\\x96\\x26\\x8b\\x81\\xa0\\x54\\xbe\\x40\\x44\\xbd\\x68\\xa9\\xb0\\x2c\\xfa\\x8c\\xce\\xc2\\x87\\xc3\\x5b\\x4f\\x4d\\x87\\xa7\\x82\\x59\\x2a\\x5f\\xc0\\x9d\\xe5\\x1d\\x8a\\x59\\xde\\x4d\\x3e\\x02\\x9f\\xfd\\x59\\x72\\xf3\\xa7\\xbf\\x78\\xb7\\x3a\\x1c\\xae\\xa9\\x09\\x87\\xab\\x51\\x42\\xfa\\x44\\xb4\\x98\\xaf\\x6e\\x7c\\x78\\x73\\x48\\x9e\\xf6\\x24\\xd5\\x62\\xe6\\x11\\x3d\\x0d\\x73\\xe2\\xe9\\xf9\\xed\\x4f\\x3f\\x8d\\x7e\\x09\\x5f\\xad\\x8c\\x46\\x2b\\x2b\\x22\\x91\\x4a\\xf1\\x08\\x20\\x78\\x88\\xc6\\x3f\\xb8\\x7a\\x79\\xed\\xe8\\xff\\xa2\\xc7\\x1c\\x7b\\x92\\x5a\\xf9\\x26\\x68\\x83\\xe3\\xdc\\x01\\x78\\x37\\xf7\\x20\\x3c\\x73\\x27\\x77\\x01\\x57\\x73\\xd6\\x83\\x70\\x94\\x8b\\x26\\x6f\\x02\\x10\\xf8\\x00\\xc0\\x73\\xb4\\x2e\\x9b\\xea\\x1d\\xe8\\x8f\\x68\\x51\\x45\\x94\\x82\\x8a\\x3e\\x97\\x16\\x92\\x12\\x3a\\x99\\xe7\\x5a\\x83\\x1a\\x39\\xaf\\x98\\x91\\x57\\x11\\xde\\x00\\x9e\\xff\\xe8\\x23\\x5a\\x52\\x7a\\xe8\\x10\\x2c\\x60\\x66\\xe3\\xe7\\xe2\\x9c\\xfb\\x43\\x34\\x61\\x39\\x67\\x41\\x77\\x00\\xc0\\xd7\\xd0\\xd0\\x9a\\x6b\\x19\\x00\\x2a\\x9a\\xe7\\xa6\\x3f\\xd3\\x25\\x7c\\x3f\\x43\\xe5\\x07\\x0c\\x1e\\xa6\\x02\\xd8\\xcb\\x32\\x9c\\x2a\\x0d\\xc9\\x6b\\xf2\\x5c\\x95\\x45\\xc3\\x8a\\xe6\\xca\\x56\\x59\\x28\\x11\\x47\\xeb\\x6d\\xb9\\x5f\\x89\\x76\\xfb\\x26\\x0c\\x71\\xdf\\x46\\xe3\\xcc\\xc5\\xfd\\xe7\\xf6\\x27\\x9f\\xbe\\x70\\x01\\xbe\\x7f\\xdb\\xb9\\xdb\\xe0\\xa9\\x0f\\x01\\xad\\xb7\\xe1\\xda\\x71\\x82\\x8c\\x29\\x0f\\xd4\\x44\\x43\\xba\\x1c\\x24\\x48\\x6e\\x29\\x91\\xc2\\xb4\\xa9\\x20\\x82\\xad\\x2c\\x46\\x12\\x8a\\x6d\\x5f\\x14\\xee\\x03\\x40\\xba\\xe4\\xa9\\x34\\x16\\x0b\\x2f\\x7f\\x94\\x8c\\x41\\x52\\x50\\x0b\\xf5\\xa8\\x2a\\x9c\\xf0\\x4f\\xdc\\x3e\\x64\\x8d\\x5a\\xb3\\xb4\\xbe\\x82\\xea\\x28\\x77\\x90\\x3c\\x53\\x3e\\x24\\xf5\\x53\\x9f\\x39\\xd6\\xde\\x3d\\xed\\x97\\xa7\\xfd\\x58\\xc6\\x0e\\xf6\\xda\\x98\\x1d\\xf3\\x5f\\x26\\x65\\x61\\x87\\x99\\x9d\\x80\\xaf\\x0f\\x27\\xcf\\x14\\xe2\\xb5\\xe3\\x37\\x8b\\xc2\\x32\\x08\\x19\\x60\\x84\\x98\\x51\\x43\\x84\\xc9\\x09\\xc2\\x6d\\x7a\\xfe\\x22\\x7b\\xd9\\x45\\x49\\x87\\x26\\xb0\\xa9\\x32\\x16\\x89\\x92\\xba\\xcb\\xac\\x59\\x1f\\x2d\\xa5\\x48\\x29\\x22\\x15\\x72\\x2e\\x6f\\x22\\xb2\\x3f\\x16\\x60\\x51\\xdb\\xc8\\x8a\\x49\\xd9\\x9f\\x94\\xbc\\x73\\xc9\\x38\\x17\\x6b\\x3d\\xef\\xc9\\xac\\x7a\\x70\\xaa\\xf3\\xda\\x31\\x1f\\x19\\xf2\\xa0\\x25\\x66\\xc9\\xd2\\xfa\\x0b\\xc2\\x11\\x1d\\x21\\x06\\x9a\\xa6\\x4a\\x29\\x2b\\x74\\x6f\\xf7\\xa8\\xfb\\xaa\\x27\\xe7\\x92\\xb1\\xb5\\x77\\x4f\\x91\\xa1\\xff\\x54\\x26\\xeb\\xeb\\x43\\xdf\\xad\\xed\\xf1\\x6a\\x3d\\xae\\xf9\\xdf\\xf2\\xba\\x55\\x04\\x12\\x04\\xa7\\x3c\\xc1\\x7e\\x9f\\x56\\xfe\\x83\\x77\\x79\\xd4\\xfe\\x42\\x09\\xff\\x7b\\x0f\\x02\\x48\\xa7\\x27\\x0c\\x39\\xa1\\x47\\x25\\x6c\\x1b\\x1e\\x4e\\xfd\\xfe\\x1f\\x90\\xc9\\xf9\\x08\\x13\\x63\\x29\\xf0\\x4a\\x53\\x20\\xca\\x18\\xc2\\xcb\\x40\\x7e\\xf0\\xf2\\x96\\x80\\x36\\x54\\x42\\x29\\x1c\\x15\\xfa\\x08\\xbf\\xab\\x25\\x7c\\x96\\xf8\\x79\\x7d\\xd4\\x2b\\xf5\\x04\\x4a\\xa5\\xd8\\x71\\x49\\x18\\x2b\\xf4\\x82\\x0a\\x85\\xd8\\x89\\x42\\x4e\\x75\\x71\\xa1\\xa9\\xb4\\xb0\\xac\\xb8\\x8c\\x2e\\x1e\\x24\\x15\\x96\\x9d\\xce\\x87\\xb5\\x92\\x0e\\x4b\\xc4\\x49\\xa9\\x9f\\x0d\\x60\\xbd\\x29\\x29\\x23\\x25\\xdc\\xf0\\x13\\xdc\\x68\\xe4\\xa6\\xc4\\xf8\\xa9\\x5d\\xd1\\xe8\\xce\\x93\\xe3\\x89\\x5b\\x22\\xa4\\x16\\xe1\\x34\\xb4\\x73\\xef\\xc2\\xf5\\xc9\\xce\\x8a\\x72\\x5d\\xa5\\xae\\xac\\xc9\\x5d\\x50\\xe0\\x69\\x56\\x64\\xd6\\x1f\\x3a\\x77\\x03\\xfc\\x97\\x1b\\xce\\x1d\\xaa\\xcf\\x54\\xbc\\xc7\\xdd\\xf6\\x1e\\xb7\\x56\\xc3\\x60\\x62\\xd0\\xfa\\xf8\\xae\\x21\\xae\\xa2\\x6f\\x5b\\xb4\\x80\\x62\\x0e\\x2b\\xc1\\xfc\\x8f\\xe0\\x4e\\xe0\\x00\\x35\\xa0\\x09\\x24\\xa2\\x71\\x05\\x94\\x03\\x3d\\x64\\x90\\xa1\\x10\\x61\\x86\\x69\\x03\\x4a\\x80\\x18\\x25\\x9a\\x58\\xf4\\xf2\\x68\\x65\\x0e\\xc3\\xe0\\x51\\x16\\xf2\\xbf\\xe2\\x55\\x57\\xdb\\x10\\xab\\x6d\\xaa\\x6b\\xb2\\xd9\\x4c\\x36\\x93\\xc6\\x6c\\xa6\\x03\\x92\\xa4\\x99\\x29\\x70\\x2c\\xb1\\x13\\x3a\\x3a\\xd0\\x85\\x22\\x16\\xc1\\x39\\xa4\\xc0\\xc7\\x42\\xff\\xa0\\xc8\\xf9\\xff\\x93\\xf6\\x1e\\x80\\x51\\x55\\xd9\\xff\\xf8\\x3d\\xaf\\x4d\\x7a\\x32\\xc9\\xb4\\x4c\\xca\\x64\\x32\\x3d\\x93\\x49\\x32\\x99\\xcc\\xa4\\xf7\\xde\\x1b\\xa4\\x90\\x46\\x12\\x48\\x28\\x01\\x42\\xe8\\x20\\x4d\\x10\\x90\\x2a\\x82\\x2e\\xa2\\x22\\x2a\\x56\\x2c\\xb0\\xf6\\xde\\x77\\x6d\\x6b\\xd9\\xaa\\x6b\\x57\\x5c\\x5d\\x75\\x8b\\xbb\\x76\\x98\\xc7\\xff\\xde\\xfb\\x66\\x26\\x81\\x80\\xeb\\xef\\xfb\\x8f\\x86\\x4c\\xb9\\xef\\xbd\\x73\\xcf\\xbd\\xf7\\xdc\\x73\\x4f\\xf9\\x1c\\x73\\x46\\xdf\\x8e\\xce\\xea\\x89\\x54\\xdb\\x58\\x79\\xcb\\x86\\x4e\\x87\\xd8\\xdb\\xd2\\xa5\\xb5\\x26\\xeb\\xe4\\x05\\xa6\\x95\\x2d\\xc7\\xe6\\xa6\\xae\\xac\\xef\\xda\\xd1\\xe7\\x04\\xde\\x5e\\x54\\x68\\x0f\\xd1\\xd8\\x74\\x89\\x16\\x4d\\x08\\x63\\x4c\\x48\\x92\\x73\\x37\\x9b\\x98\\xcd\\x63\\xc7\\x57\\x15\\x3b\\x52\\xec\\x0e\\x28\\x1a\\xbf\\x61\\xf0\\xaf\\xc9\\xf3\\xc7\\x85\\xd0\\xc8\\xe0\\xfb\\x0d\\xce\\x81\\xf4\\x8c\\xa2\\x95\\xc7\\x17\\x2d\\x5f\\xb3\\x7a\\xc5\\x4b\\x39\\x5d\\x05\\x49\\x49\\x05\\x5d\\x39\\x5f\\xe9\\xf2\\x3a\\xb2\\x67\\x96\\x37\\x49\\xf6\\xbd\\xeb\\x10\\xe2\\x4c\\x82\\x03\\xc9\\x91\\xa5\\xc4\\x18\\x0c\\x80\\x42\\x80\\x44\\x73\\x92\\xef\\x18\\x04\\xc3\\x01\\xbb\\x24\\x6e\\x20\\x37\\x99\\x24\\xbb\\xa4\\xd4\\x51\\x7f\\x7a\\x88\\x1c\\xae\\xab\\xc0\\x7a\\xab\\xad\\xd1\\xaa\\x51\\xda\\x93\\xd6\\x6d\\xe6\\x1a\\x57\\xdc\\xb7\\xa6\\x38\\x2c\\xf8\\x2f\\xbc\\xb0\\x63\\xd5\\xe9\\xfb\\x7c\\xf2\\x65\\x01\\x7e\\x86\\x0d\\x15\\x97\\x14\\x24\\x81\\xc0\\xeb\\x81\\x13\\x42\\x81\\x41\\x34\\x04\\x9b\\x5a\\x46\\x38\\x5e\\xc0\\xcf\\xc2\\xb4\\x74\\x93\\x5c\\x9b\\x73\\x22\\xfb\\x63\\x4c\\x26\\x92\\xa0\\x22\\x79\\x19\\x0c\\xe7\\xec\\x38\\x1e\\x37\\xd5\\x04\\xce\\xa5\\x47\\xe9\\x62\\x4f\\xbe\\x96\\x3d\\x7a\\x55\\x7f\\x46\\x7f\\x46\\x64\\x88\\x25\\xc5\\x1a\\xd6\\x56\\x73\\xe3\\x8d\\xa5\\x6b\\xef\\x5d\\xe2\\x1a\\x70\\x69\\xe2\\xcb\\x53\\x97\\x2d\\x7d\\x8d\\x5d\\x74\\x66\\x1b\\x89\\x04\\x8e\\x52\\xbe\\x17\\x14\\x16\\xc4\\x8f\\xce\\x66\\xd7\\xfe\\xae\\x79\\xe4\\xfa\\x05\\xd9\\x1a\\xf9\\x5b\\x11\\x51\\xc3\\xfd\\xcd\\x74\\x1d\\xf6\\xe1\\x79\\xf2\\x21\\xff\\x01\\x8a\\x47\\x99\\xa8\\xb5\\x24\\x24\\x06\\x58\\xd0\\x02\\x47\\x4f\\xd2\\x0a\\x7a\\x92\\x26\\x11\\x1a\\x0c\\x4c\\x83\\x16\\xd1\\x52\\x3d\\xed\\x82\\x50\\x13\\xdd\\x0f\\xd9\\x52\\x94\\x36\\x23\\x15\\xd8\\xfe\\xbd\\xdd\\x4f\\xbf\\x0f\\x51\\x53\\x75\\xa1\\xa4\\xf1\\x1d\\x53\\xb3\\xec\\xd7\\x3e\\x5b\\xa5\\xd5\\x3c\\xdb\\x54\\x5f\\xfa\\x3f\\x53\\xed\\xbb\\x5a\\xe2\\x86\\x2b\\xd7\\x1f\\xb7\\x5f\\xf1\\xd8\\x05\\x12\\xee\\x69\\x1f\\x07\\x88\\xac\\xe1\\xae\\xa5\\x7d\\x9c\\x59\\x12\\x12\\x04\\x1c\\x8a\\x00\\x96\\xf3\\x47\\x8f\\x6a\\xa9\\x4a\\x3d\\x45\\x9b\\x66\\xd9\\x80\\xbe\\x7d\\xd1\\x2f\\x6b\\x18\\xd2\\x4f\\x9b\\x5d\\x41\\xfa\\x19\\x58\\x17\\xbe\\xde\\xa9\\x7e\\x2e\\x1c\\x7d\\x80\\x28\\xd9\\xa3\\xb7\\x16\\x17\\x3c\\xd3\\x54\\x6d\\x32\\xff\\xaf\\x98\\xf4\\x7c\\x4f\\xde\\xd6\\xa5\\x47\\x1d\\x65\\xd7\\x75\\xfd\\x5c\\x64\\x3a\\xa0\\xcb\\xce\\x7e\\xc5\\x3f\\xc4\\x7f\\x8a\\xf4\\xc8\\x59\\x92\\x46\\x7a\\xcd\\x23\\x66\\x98\\xda\\x38\\x64\\x02\\xc3\\x71\\xe7\\x60\\xc9\\x21\\x84\\x9b\\xe9\\x71\\xf2\\xb5\\x42\\x21\\x45\\xbb\\x2a\\x71\\x98\\x90\\x8b\\x98\\x1b\\x2f\\x94\\x88\\x3d\\x23\\xab\\x28\\x29\\xf8\\x45\\xcb\\xcc\\xed\\xb3\\x2f\\x9c\\x91\\xfd\\x3c\\x9b\\x5c\\xd8\\x53\\x30\\x7c\\xd5\\x5c\\x0f\\xeb\\xbd\\xee\\x02\\xc9\\xd9\\x80\\x56\\x9e\\xfd\\x92\\x1f\\xe0\\x0e\\x23\\x1d\\xea\\x2f\\x09\\x8b\\x8f\\x65\\x31\\x0b\\x85\\x29\\xd6\\x1a\\x8d\\x00\\x3c\\xc3\\x4f\\x10\\xa5\\xd8\\xb7\\x5b\\x81\\x5f\\x9b\\x8c\\x9f\\xf2\\x55\\xc0\\x58\\x33\\xe9\\x4a\\x8d\\x90\\xe2\\x76\\x49\\x72\\x82\\x42\\x46\\xa7\\x1b\\x49\\xae\\xb0\\x5c\\x20\\xf8\\x55\\x89\\x27\\x1e\\x3f\\x70\\xe8\\xba\\x33\\x51\\xd3\\x43\\x60\\x0b\\x32\\xb9\\xc3\\x0f\\xbf\\xa8\\xf5\\xa2\\x0b\\x84\\xc2\\xee\\xd7\\xae\\x1c\\xa4\\x7b\\xf5\\xc7\\x62\\x3d\\x3b\\x9b\\xc4\\xee\\x92\\xf8\\xcb\\xc9\\x8c\\x9d\\x0b\\xe6\\xe9\\x28\\x2b\\x29\\x3c\\xc8\\x05\\xb3\\x74\\xc0\\x83\\xf3\\x72\\x56\\x90\\xbc\\x1c\\x3b\\xce\\xcb\\x49\\xb3\\x86\\x5a\\xab\\xb2\\x12\\xc5\\x7f\\x5e\\x30\\x15\\x87\\xcc\\xdd\\xeb\\xf0\\xfa\\x5c\\xc6\\x35\\xfb\\xf3\\xf6\\x12\\x80\\x45\\xf1\\xc0\\x48\\x19\\x6f\\x3c\\xc7\\xf0\\x92\\x97\\x59\\xa0\\xe2\\x3b\\x90\\xc2\\x57\\x09\\x17\\xcd\\xdb\\x03\\xbf\\xd9\\xdf\\x42\\x97\\xa5\\x0f\\x7c\\x80\\x40\\x8c\\xc6\\x50\\x2b\\x33\\x8d\\x70\\x9b\\xbd\\xee\\x85\\xcb\\xeb\\x6a\\xb6\\x3e\\x3a\\x81\\xa5\\x5c\\x11\\xf3\\x84\\xcc\\x5a\\x39\\x58\\x9c\\xdb\\xd3\\x50\\xa6\\x6b\\x4e\\x9c\\x31\\x76\\xe9\\x48\\x5a\\x9d\\xc7\\x10\\x2c\\x76\\x69\\x32\\x9b\\xb8\\xe6\\xb6\\x7d\\xcf\\x2e\\xb5\\xae\\x7a\\xf9\\x40\\x3b\\x54\\xe1\\x20\\xef\\x23\\x59\\xbd\\x95\\x96\\x70\\x55\\xa2\\xfc\\x7e\\x8d\\xc3\\xa0\\x3a\\xb3\\xde\\x50\\x38\\x23\\x33\\xd6\\x51\\xef\\xd1\\x51\\x1e\\x6e\\xe6\\xde\\x63\\x17\\xf0\\x5f\\xa1\\x20\\x94\\x50\\xa2\\x15\\x58\\x44\\xf3\\x88\\x00\\x48\\x36\\x32\\x91\\x26\\x4c\\x20\\x49\\x5d\\x69\\xc0\\xc7\\x54\\xe2\\xe4\\x58\\xf0\\xde\\xe1\\x6b\\xde\\x86\\xe4\\x1b\\xb9\\x1f\\xe3\\x37\\x6e\\x4c\\xfc\\x1a\\x01\\xfa\\x11\\xdf\\xe3\\x07\\xfe\\x1f\\x52\\x4c\\xb2\\x40\\x63\\x92\\xa9\\xa9\\x95\\xe8\\x8b\\x45\\x28\\x70\\x87\\x6c\\x97\\x92\\x37\\x98\\xdc\\x2e\\x66\\xf5\\x81\\x7f\\x88\\x6f\\xdd\\x2b\\xbe\\xf5\\x0f\\x7e\\xc9\\x86\\x18\\xef\\x19\\x05\\xf5\\x4f\\x72\\xeb\\xd9\\xd7\\x30\\xde\\x97\\x92\\xe0\\x8d\\x20\\x86\\x8a\\x08\\x09\\xa2\\x00\\x7c\\xc0\\x04\\x46\\xbc\\xac\\xc9\\x6d\\xa6\\xb9\\x47\\xd8\\xd7\\xd2\\xbb\\x37\\x34\\x35\\x6f\\xe8\\x4e\\x7f\\x31\\x32\\xd9\\x6d\\xc1\\x07\\xe9\\x48\\xfe\\xa6\\xd2\\xb1\\x46\\xbb\\xbd\\x71\\xac\\x54\\xeb\\x34\\xa9\\x54\\x26\\xa7\\x96\\x3c\\xe3\\x2d\\xee\\x45\\x96\\xc3\\x72\\x35\\xd4\\x17\\xaf\\x4a\\xc5\\x47\\x11\\x34\\x18\\x93\\x89\\xab\\x6a\\xaa\\x89\\x01\\xde\\x6a\\xa9\\xaa\\x6a\\x21\\xbf\\x7c\\x7b\\x61\\x73\\x73\\x61\\x41\\x73\\x33\\x62\\xe0\\x00\\x17\\xc9\\xe6\\xf0\\x07\\x50\\x0c\\x9e\\xe0\\xbd\\xf5\\x27\\xf4\\x53\\x73\\x64\\x0a\\x02\\xce\\xf3\\x6a\\xf0\\x07\\x95\\x44\\x9f\\xe7\\xed\\x29\\x60\\x89\\x31\\xd3\\x97\\xe8\\x3e\\x4c\\xa3\\x24\\x3a\\x7d\\x53\\x94\\x81\\xe6\\xee\\xee\\x07\\x8d\\xe6\\x8b\\x38\\xdd\\x03\\x3e\\xd1\\x64\\x01\\x0e\\x60\\xe8\\x3c\\x8c\\xdd\\x9c\\x93\\x94\\x94\\x83\\x31\\x9c\\x9b\\xf2\\xf4\\x13\\xb9\\x29\\x29\\x6e\\x77\\x4a\\x4a\\x2e\\xf7\\x7a\\x4a\\x4d\\x56\\x62\\x62\\x16\\xf6\\xc5\\x57\\x13\\x97\\x4f\\x75\\x4a\\xaa\\xc7\\x93\\xea\\xc8\\xce\\x46\\x00\\xeb\\xc5\\x2e\\x56\\x89\\x0a\\x90\\x9a\\xf0\\x37\\x8c\\x8e\\x91\\x3a\\x94\\xa1\\x3e\\x2c\\xe8\\x91\\x0e\\xe9\\x26\\x0b\\x61\\x83\\xde\\xe7\\xde\\xf0\\x10\\xfd\\xc1\\x67\\x87\\xcb\\x66\\xbe\\x72\\x14\\x18\\x23\\x13\\x4d\\x09\\xd6\\x88\\xf4\\xf8\\xee\\xca\\xb4\\xd6\\x02\\xc3\\xd8\\x82\\x68\\x6b\\xaa\\x33\\x2e\\xc1\\x12\\x21\\x1c\\x8e\\x4c\\x88\\xcb\\x6a\\x74\\x35\\x5e\\x9d\\x29\\x9d\\x25\\x36\\x71\\x9f\\xb3\\x5d\\x82\\x80\\xe2\\xa8\\xdc\\x03\\x96\\x89\\x00\\x44\\x12\\x37\\x80\\xa9\\x09\\x07\\x54\\xed\\x67\\x54\\x51\\xc0\\xf5\\x89\\x63\\x15\\xb0\\x3e\\x73\\x4e\\xd8\\xec\\xd4\\x00\\x19\\xd2\\x77\\xb6\\x4b\\x97\\xdb\\xec\\xcc\\xa8\\x2e\\x2e\\xb2\\x18\\xdd\\xbb\\x75\\x18\\x2e\\xd3\\x5a\\x55\\x5e\\x61\\x36\\x7a\\xf8\\xcf\\x1c\\x5d\\x95\\x29\\x71\\xfa\\xb8\\xac\\xb4\\xc4\\xd4\\xae\\xaa\\x54\\xfc\\xca\\x25\\xc5\\x77\\xa1\\xdf\\x73\\x9f\\x72\\x09\\xfc\\x3f\\x49\\xac\\x5d\\x20\\xbe\\xab\\x9b\\x4e\\xca\\xa9\\x88\\x19\\x60\\x60\\xc9\\x6f\\x18\\xc8\\xc5\\xd7\\xfe\\xb8\\x16\\x78\\x51\\x7c\\x8d\\xff\\xa7\\xf8\\x3d\\x04\\x8b\\xdf\\x23\\x06\\x1e\\x11\\xf7\\xb2\\xec\\xd9\\xc7\\xe8\\x98\\x17\\x4b\\x21\\x45\\x31\\x93\\x23\\xc8\\xf8\\x78\\xf7\\xb3\\xe3\\x1a\\x18\\x56\\xfe\\xe7\\x86\\xf5\\x11\\xad\\xa3\\xd0\\x90\\x5c\\x90\\x1a\\x1b\\x9b\\x5a\\x90\\x6c\\x28\\x74\\x68\\x17\\x27\\xc5\\xaa\\x13\\x13\\xd5\\xb1\\x49\\xef\\xeb\\x73\\x6c\\x6a\\xb5\\x2d\\x47\\xaf\\xf7\\x58\\x54\\x38\\x01\\x30\\x49\\xa3\\xd3\\x69\\xb4\\x7a\\x3d\\xe1\\xf5\\x99\\x43\\xdc\\xa3\\x62\\x82\\xa0\\x21\\xda\\xa5\\xa4\\x64\\x87\\xfa\\x01\\x7e\\x8b\\x08\\x55\\xc1\\x74\\xab\\x24\\x8e\\xca\\x49\\xe0\\x01\\xd6\\x25\\x26\\xdc\\xf9\\xce\\x47\\xdc\\xa3\\xd0\\x4f\\xc7\\xcb\\x3b\\xce\\x61\\x5c\\x68\\x21\\x56\\xf2\\x89\\xc7\\x4e\\xf5\\x89\\x17\\xfd\\xbc\\x4f\\xdc\\xc5\\x1a\\x44\\xe6\\xc3\\x57\\x6f\\x15\\x62\\xc5\\xa3\\x67\\xcf\\x9e\\x59\\xc2\\x7d\\x7e\\xb6\\x5a\\x10\\x18\\x19\\xba\\xe9\\xf4\\xbf\\x90\\x74\\x6f\\x33\\xf7\\x2f\\xf1\\x06\\xe1\\x32\\x14\\x43\\xce\\x95\\xd1\\xc0\\x4e\\xa2\\x16\\x0d\\x23\\xb2\\x2e\\x3a\\x09\\xdb\\xba\\x89\\xf7\\x96\\x6d\\x94\\xfc\\xb4\\x38\\x62\\x96\\xae\\x73\\x8b\\x14\\x4d\\x68\\xc8\\xf6\\xc5\\x3e\\x28\\xbd\\x79\\xe1\\xb5\\xa5\\x2a\\xb3\\x47\\x27\\x7b\\xf8\\x51\\x6d\\x8a\\x27\\x9e\\xfb\\xd7\\xe5\\x7c\\x42\\x92\\x22\\x2e\\x4a\\x76\\xd9\\xfc\\x59\\x06\\x97\\x41\\xc1\\x49\\xf9\\x60\\xa7\\xbf\\xe7\\x4e\\x9d\\x6d\\x92\\xc6\\x7d\\x7a\\x3d\\x80\\x00\\x8c\\x85\\x34\\xf2\\x22\\xf7\\xb9\\xf8\\x0e\\x68\\x98\\xe2\\x0f\\xbf\\x05\\x39\\x77\\x0a\\x42\\xc4\\xef\\x88\\x71\\xc8\\x1b\\x2e\\x1e\\x14\\x5b\\xcf\\xde\\xfd\\x33\\xbe\\xed\\x69\\xc3\\xe9\\x0d\\x97\\x82\\xa4\\x09\\x9a\\xa1\\x14\\x34\\xfd\\x61\\x62\\x16\\x91\\x3e\\x78\\x4d\\xba\\xcc\\x4a\\xa5\\xd9\\x85\\x80\\xa9\\xe4\\xfe\\xc3\\xde\\x29\\x6c\\x96\\x30\\x26\\xce\\x67\\x2c\\x66\\xab\\x8c\\x84\\x1a\\xb0\\x06\\xe6\\x2a\\x50\\xbe\\xbd\\x5b\\xd8\\x2c\\x2e\\x45\\x2c\\xb0\\xdc\\x8b\\x5c\\xb9\\x2c\\x98\\xc6\\x79\\xdb\\xd1\\xb7\\x52\\xb0\\x8a\\x92\\x5c\\xc6\\x22\\x09\\xb0\\x8b\\xe9\\x21\\xdb\\x71\\x06\\x4b\\xe3\\x54\\x2e\\xfc\\x65\\x26\\xfd\\x32\\xe2\\xe7\\xae\\x8c\\xfa\\xb9\\x2b\\xa3\\x7f\\xee\\xca\\x84\\x9f\\xbb\\x52\\x77\\xf1\\x2b\\x2f\\x72\\x51\\xb7\\xf4\\x53\\x12\\x6c\\xb5\\x92\\x18\\x75\\x41\\xa6\\xa5\\x4c\\xe1\\xff\\x47\\x2c\\x26\\xb3\\x0d\\xa2\\x6e\\x3f\\x20\\xde\\x8e\\x15\\xd9\\x24\\x5d\\x96\\x49\\x89\\xff\\xea\\x92\\xf0\\x5f\\xc6\\x74\\xfe\\x27\\xb2\\x60\\xf1\\xf1\\x4b\\xe2\\x33\\x0c\\x0a\\x85\\x21\\x23\\x3e\\x2e\\x83\\xb8\\x50\\x33\\x12\\xe2\\xd3\\xc9\\xfb\\xf4\\x78\\xdf\\xe7\\xd4\\x17\\xce\\x38\\x18\\x2b\\x3b\\x9f\\x6d\\x67\\x04\\xb4\\xb2\\xd8\\x9f\\xdb\\x99\\x1f\\xc0\\xf0\\x92\\x82\\xd7\\x19\\x2b\\x11\\xfe\\x36\\x09\\x69\\x44\\xa6\\xf6\\xa1\\xf0\\x70\\xf9\\xde\\x85\\xe2\\x67\\xec\\x3d\\xdc\\xab\\xa7\\xb3\\xf0\\x05\\x88\\x41\\x06\\x84\\x78\\x8a\\xc3\\x2d\\x21\\xdb\\x0a\\x40\\x31\\xbc\\x10\\xb2\\x52\\x45\\x65\\xd6\\x79\\xf7\\x00\\xbd\\x49\\x4f\\xdc\\x34\\xf1\\xf0\\xf6\\x69\\x03\\x8c\\x31\\xb2\\xb3\\x88\\x00\\x27\\x7e\\xcc\\xe2\\x09\\x83\\xf7\\x13\\xac\\x83\\x6c\\xe3\\x9f\\xa7\\x36\\xc0\\x74\\x8a\\x93\\x07\\x88\\x38\\xb2\\x07\\xfd\\x96\\xd8\\x8c\\x80\\x05\\xda\\xc9\\x90\\x20\\x83\\x00\\x1f\\xdd\\x7a\\xfe\\x17\\xe0\\x6b\\xb1\\x99\\xe2\\x25\\xb0\\x15\\x66\\xfc\\x02\\x94\\xad\\x91\\x0f\\xde\\xfa\\x25\\x38\\x5b\\x40\\x6d\\xb1\\xf7\\xfb\\xf1\\x80\\x10\\x80\\x95\\x5a\\x94\\x6c\\x12\\x9a\\xaf\\x6c\\x12\\x0f\\x68\\x8e\\xf8\\x16\\x5e\\x93\\x4f\\xe3\\x9e\\x3f\\x23\\xfe\\x95\\xcb\\x3e\\xfd\\x12\\xe9\\x37\\xee\\xe9\\x1a\\x7c\\x7d\\x8d\\x2f\\x76\\x9a\\x62\\x03\\xfa\\xb0\\xe0\\x08\\xce\\x14\\x35\\x51\\x59\\x03\\x49\\x0f\\x84\\x91\\xe4\\x87\\xf6\\x19\\x6b\\x50\\x7a\\x8a\\xcf\\x8c\\x7f\\xd7\\xb0\\xaf\\x9f\\x71\\x8e\\x31\\xdf\\x78\\xc3\\xba\\xd9\\x43\\x67\\xe6\\x61\\x88\\xb9\\xd6\\x77\\xd8\\xbc\\x53\\xe4\\x3a\\x7a\\xff\\x6a\\x3f\\xc6\\x12\\x02\\xa0\\xf6\\x85\\xa9\\x44\\x46\\x71\\x32\\x4d\\x00\\x09\\x8f\\xab\\xc6\\xf1\\xde\\x73\\xf0\\x08\\xbf\\xe6\\x1f\\x61\\x8a\\x55\\x87\\x80\\x5b\\x4d\\x30\\x8b\\x48\\x26\\xbb\\x0c\\x24\\xad\\x9a\\x07\\xfc\\x4f\\x9d\\x1f\\x65\\xf0\\x5c\\x2a\\x15\\x72\\x39\\xb9\\x2b\\x00\\x4d\\x0c\\x02\\x62\\x5e\\x06\\xb6\\x4b\\xbc\\x82\\xb9\\xe2\\xf4\\xf7\\x04\\xe9\\x86\\xfd\\xca\\x7b\\x25\\x2c\\x64\\xfe\\x28\\x86\\x7f\\xf8\\x2b\\xa6\\x92\\xc9\\x3f\\x74\\x4a\\x24\\x92\\x9a\\xc4\\x68\\xfc\\x13\\x3f\\x27\\x16\\x25\\x21\\x0b\\xc9\\xdf\\x32\\x19\\x13\\x13\\xd4\\xe1\\x21\\x28\\x88\\x18\\x1d\\x29\\x73\\x11\\x25\\x3b\\x3e\\x8e\\xca\\x14\\x7f\\x35\\x0e\\xbd\\xdb\\x5f\\xb0\\x43\\x0f\\xd8\\xdf\\x20\\x17\\x04\\x1e\\xfb\\x1a\\xb0\\x19\\x9e\\x35\\x8e\\x60\\xd4\\xaa\\xf2\\x35\\xb7\\x8f\\x88\\x9f\\x8f\\xdc\\x41\\x5e\\xdd\\x31\\x02\\x1a\\xd1\\x39\\x34\\x73\\xe6\\x10\\xb3\\x65\\xf6\\x8c\\x19\\xb3\\xb9\\xaf\\x42\\x3b\\x76\\x3f\\x31\\x31\\xfe\\xc8\\xce\\x99\\xa1\\x4f\\x3c\\x11\\x3a\\xe3\\xf2\\x47\\xc6\\x27\\x9e\\xdc\\xd3\\x11\\xfa\\xbc\\x37\\x71\\xcd\\x3e\\x05\\x53\\xa9\\xbc\\xfa\\x92\\xf5\\x57\\x29\\xbd\\x8f\\x2b\\xae\\xf0\\x61\\x38\\xbf\\x43\\x6a\\xa9\\x10\\xda\\x62\\x23\\x42\\x11\\x47\\x13\\xc0\\x18\\x06\\x21\\xff\\x6a\\x51\\xaa\\xd5\\x0a\\xda\\x75\\x8f\\x87\\x9c\\x0b\\x08\\x79\\xf8\\x4f\\x1a\\x4b\\xdf\\x10\\x08\\x0e\\xd6\\xd2\\xd0\\x04\\xda\\xa2\\x89\\x1b\\x87\\xc5\\xcf\\xe7\\xdd\\xb1\\xba\\x14\\x62\\xfb\\x66\\x10\\x51\\xad\\xba\\xea\\x0a\\xc6\\xe3\\x7d\\x79\\xc3\\xd3\\xdb\\x5b\\xc2\\xc4\\xdb\\xa0\\x2b\\xa4\\x71\\xc7\\x73\\x9b\\xc8\\x27\\x57\\x5c\\xa5\\x62\\x97\\x4a\\xe3\\xd0\\x41\\x30\\x29\\xf0\\xfa\\x48\\x47\\x29\\x25\\x96\\x68\\xc4\\xf8\\x96\\x9a\\x6f\\x69\\x70\\x40\\x7c\\x13\\x3c\\x48\\x43\\xa0\\x4d\\xc1\\x6e\\x5d\\xba\\x38\\xf0\\x99\\xcb\\xe7\\x71\\xa4\\x21\\xed\\xc4\\x9a\\xe9\\xcb\\x3a\\x09\\x84\\xe6\\x90\\x1c\\x0e\\xe6\\x16\\x53\\x91\\x43\\xb3\\x7a\\xc1\\xbc\\x35\\xb1\\x69\\x25\\x56\\xd1\\x0e\\x61\\x05\\xa3\\x0d\\xf6\\xa6\\xdd\\xcf\\xaf\\x5a\\xf5\\xc2\\x9e\\x26\\x7b\\xfd\\x68\\x3e\\xc8\\xc5\\x14\\x88\\x8a\\x6a\\xba\\xf4\\xd1\\x75\\xee\\x67\\x9f\\x7d\\xee\\x19\\xf7\\x25\\x8f\\x5e\\xda\\x18\\x25\\xfe\\xfb\\x94\\x7d\\xed\\x55\\xc7\\x7b\\x5d\\x3b\\x4e\\xdd\\xd2\\xd3\\x73\\xcb\\xa9\\x1d\\xae\\xde\\xbb\\x0e\\xae\\xb5\\x9f\\x42\\x0c\\x5a\\x80\\xcf\\xc3\\xfb\\xb8\\x26\\x8a\\xd7\\x7c\\x93\\xb4\\x0b\\x47\\x25\\x82\\xc0\\xa6\\x5a\\x19\\x24\\x84\\xcb\\x18\\x32\\x81\\xe2\\xe8\\x47\\xdc\\xd4\\x8f\\xba\\x25\\xa9\\x1d\\x8b\\x04\\x81\\xed\\x91\\x11\\x73\\xa9\\xab\\x9e\\xe2\\x6d\\xf4\\x32\\x00\\xe0\\x04\\x6a\\x7a\\xbb\\x78\\x83\\x54\\x90\\x32\\x31\\x39\\xce\\x5e\\x4f\\x5b\\xa0\\x69\\xdf\\x63\\x31\\x2c\\x47\\x28\\x23\\xcd\\x6c\\x24\\xc7\\x3a\\x9b\\xd1\\x68\\x08\\x22\\x63\\x26\\x27\\xba\\x0b\\x55\\x11\\x03\\x90\\xb8\\x93\\x51\\x12\\xe0\\x3b\\xe3\\x99\\xb3\\xdc\\x7e\\x8b\\x1a\\xc7\\x59\\xf4\\xb1\\xd1\\x9a\\xa4\\x7c\\x43\\xf7\\x66\\x83\\x73\\x67\\xff\\xe0\\x55\\x23\\x6e\\xf7\\xc8\\xd5\\x43\\xb3\\xb6\\x65\\xe4\\x88\\xf9\\x8a\\xb4\\x5a\\x4f\\x51\\x87\\x16\\xe2\\x66\\xe6\\xbb\\xeb\\xd3\\x94\\x5c\\x9e\\x37\\xb8\\xd4\\xc9\\xbf\\x19\\x15\\x52\\x59\\x53\\x56\\xd7\\xb4\\xe7\\xb9\\x15\\xca\\xf5\\x6f\\x1e\\x9a\\x51\\x53\\xba\\xc2\\xfb\\x42\\xd9\\xd2\\xb6\\x74\\x8b\\x21\\x54\\x1d\\x06\\x1f\\x19\\xcc\\xd9\\xfd\\xeb\\xab\\x7d\\x98\\xcc\\xe2\\x62\\x6e\\x0f\\xb6\\x5d\\x6a\\x51\\x0e\\xda\\x58\\x12\\x11\\x84\\x59\\x67\\x03\\x5e\\x88\\x01\\x08\\x38\\xf2\\x8c\\x41\\xc0\\x22\\x81\\x67\\x85\\x61\\x6a\\x3a\\x90\\x01\\x42\\x54\\x48\\x52\\x1d\\xce\\x49\\x64\\xb0\\x83\\x86\\x7a\\x4f\\x6f\\x96\\x19\\x68\\x96\\xea\\x6b\\xd6\\x5d\\x12\\x1b\\x1f\\x07\\x28\\xdb\\xed\\xb0\\x1b\\x93\\xe3\\x72\\xe2\\x73\\x94\\x0a\\x79\\x24\\xd2\\x82\\x36\\x58\\x46\\xcf\\x73\\x81\\xa8\\xc6\\x80\\xab\\x0b\\xf3\\x26\\x66\\x0a\\xe4\\xbe\\x7c\\x0a\\x36\\xbc\\xc1\\xcd\\x6c\\x98\\x7f\\xd7\\x9a\\xb2\\x39\\xb3\\xd6\\x6e\\x29\\x5e\\x7e\\xeb\\x48\\xcd\\xc1\\x62\\xf1\\xcb\\x86\\x2d\\xf7\\x0c\\x8c\\x74\\xa9\\xd3\\xab\\xd2\\x52\\xeb\\x3c\\x3a\\xcb\\xd2\\x6a\\x4f\\x47\\x9e\\x2e\\x3e\\xbb\\xcd\\x3d\\xc2\\xbf\\xe0\\x99\\x7b\\xa0\\x6f\\xf8\\x46\\xa7\\xfd\\xe1\\x2d\\xf3\\x6e\\x5e\\x92\\x67\\xb6\\x89\\x59\\xfc\\xd1\\xa1\\x9b\\x96\\x95\\x78\\xaf\\x5e\\x34\\x60\\xaa\\xc8\\x4a\\x4a\\xc4\\xea\\xf1\\x99\\x33\\x89\\xc9\\xfa\\xbc\\xe6\\x34\\x77\\x67\\x61\\xf2\\x6b\\xd2\\x9a\\xb0\\x8a\\x03\\xdc\\x83\\x5c\\x1e\\x0a\\x21\\x67\\xbd\\x60\\x9e\\x61\\xfd\\xd9\\xa3\\x76\\xb2\\x22\\x1d\\x24\\x25\\xd3\\xbf\\xf7\\x60\\x82\\xf1\\xbf\\xea\\x6c\\xf6\\x20\\x24\\x8b\\xe5\\xd8\\xcb\\x55\\x09\\x06\\x88\\x8d\\x90\\xe3\\x33\\xf1\\xdb\\x62\\x03\\x3c\\xcc\\x19\\xce\\x9c\\x2e\\xad\\xf2\\xd9\\xaa\\x36\\x09\\xc9\\xe4\\x24\\x4c\\xe2\\x50\\x08\\x4e\\x7f\\x8a\\x3c\\x98\\xe5\\x80\\x64\\x7e\\x01\\x0b\\x1c\\x45\\xea\\x04\\x0e\\xd1\\x1c\\x39\\xff\\x7e\\x54\\x5c\\x94\\x95\\x99\\x6e\\x31\\xf2\\x32\\x75\\xc0\\x4c\\x23\\x4b\\x63\\xfd\\xb9\\xcc\\x53\\x9d\\xd9\\x54\\x56\\x61\\xef\\x68\\xcc\\x54\\x9b\\x8d\\x85\\x70\\xf0\\x1f\\xd9\\xf3\\x7f\\x35\\xbb\\xf9\\x40\\x4b\\xaa\\xc2\\x5d\\x5c\\x65\\xac\\xef\\x0c\\x33\\x96\\xb9\\xff\\xf5\\x4d\\xf5\\xf6\\xe7\\xd7\\x6f\\xfc\\xcd\\x8e\\x6a\\xf7\\xac\\xd5\\x15\\x4c\\xe7\\xc8\\x65\\x89\\x45\\x83\\x65\\xa5\\xfd\\x45\\x09\\x86\\xd2\\xbe\\xdc\\x32\\x8c\\x83\\xcb\\x7d\\x52\\xbf\\xb2\\xdd\\x9e\\xaa\\x7f\\x58\\x88\\x89\\x0a\\xcb\\x4d\\x8f\\x4c\\x36\\x9a\\x63\\x5a\\xc5\\x4f\\x7f\\xaf\\x58\\xfe\\x9b\\xfd\\xed\\xad\\x7b\\x9f\\x5d\\xaa\\x98\\x71\\x60\\x59\\x53\\x54\\x78\\xca\\x36\\xef\\xbe\\x8a\\x35\\xb3\\xdc\\xee\\x59\\x6b\\x2a\\x14\\x59\\x0b\\x66\\x95\\x84\\xba\\xbb\\x57\\xf8\\xf0\\x69\\xb7\\xe2\\x3e\\x5f\\xc7\\x35\\xa2\\x3c\\x92\\xa7\\x11\\x07\\x48\\x46\\xa2\\xac\\x04\\x99\\xc0\\xcb\\xc6\\xfd\\x88\\x9c\\x48\\x16\\x84\\xff\\xca\\xd0\\xb0\\xbf\\x04\\x83\\xab\\xde\\x1f\\x15\\xeb\\x64\\x1b\\x00\\xe5\\x66\\xa7\\x3b\\x6c\\x56\\x1c\\x1a\\x1b\\x1d\\x11\\x2e\\x05\\x3f\\xd0\\x89\\x33\\x09\\x1e\\xef\\xd6\\xfb\\x39\\x70\\xf1\\xf4\\x1b\\x97\\x4b\\xc9\\xec\\xdb\\xb0\\x2a\\x3e\\xbf\\xaf\\x34\\x1f\\x27\\x0a\\x80\\xb2\\x7b\\xff\\x43\\xfd\\xab\\x7e\\xb3\\xb7\\x69\\xd1\\xd8\\xc0\\x68\\xcd\\xf6\\xa7\\x56\\xcf\\xbd\\x7f\\x3b\\x86\\xda\\x32\\x14\\xb5\\x3b\\xcb\\x3a\\xb3\\x94\\x6a\\x77\\x47\\xf1\\xdf\\xe0\\xe5\\xc2\\x5a\\x6d\\x86\\x49\\xad\\x34\\xa6\\x6b\\xbb\\x37\\xb5\\x5b\\x53\\x67\\xac\\x69\\xec\\xdd\\x98\\x64\\x5c\\x53\\xd3\\xb8\\xb2\\xd9\\xe6\\x98\\xb9\\xae\\x31\\x3e\\x55\\x17\\xa5\\x32\\x38\\xd4\\x71\\x18\\x82\\xfa\\x71\\xda\\xdf\\x16\\xf1\\x12\\x2e\\x15\\xcb\\xf2\\x34\\xe2\\x7b\\x02\\x8a\\xaf\\x16\\xa7\\x51\\xb3\\xa8\\x9a\\xee\\x63\\x44\\x4e\\x58\\xa9\\x53\\x26\\x0d\\xa5\\x39\\x52\\x59\\xd2\\x0f\\x25\\x48\\x05\\x79\\xd4\\xfe\\x2a\\x50\\x58\\x99\\xb7\\x78\\xf0\\xc0\\xf9\\xcb\\x45\\x65\\xeb\\xdd\\x5c\\xaa\\x38\\xbb\\x74\\x4e\\x85\\x41\\x65\\x2f\\x77\\x3c\\x56\\xb2\\xa0\\xc1\\x96\\x52\\xda\\x6c\\xd9\\x9b\\x91\\xc6\\x40\\x68\\xbc\\x23\\xf9\\xe4\\xec\\x1d\\x9d\\x56\\x47\\xd7\\x65\\x5d\\x9f\\x79\\xaf\\xe3\\x4f\\x1c\\x15\\x67\\xe4\\x0f\\x0f\\x2f\\xaa\\x48\\x2f\\x4d\\x4b\\x08\\x36\\x45\\x9a\\xf2\\x66\\x14\\xda\\xfb\\x67\\xb5\\xc4\\x2d\\x76\\x75\\xe8\\xe4\\x3a\\x6d\\x8c\\xa0\\x8b\\x2e\\xed\\x5f\\x5b\\xdf\\xb2\\x7f\\xef\\x15\\x2d\\xdf\\x7f\\x48\\xed\\x1a\\xe2\\x20\\xd7\\x40\\x71\\x13\\xc6\\xa6\\x60\\x70\\x44\\x03\\x3b\\x89\\xc1\\x41\\xdf\\xf8\\xfd\\x36\\xea\\x49\\x0c\\x0e\\x17\\x31\\x68\\xd9\\x7c\\x4b\\x22\\xae\\x24\\x8e\\xa7\\xe2\\x91\\x7e\\x8f\\xce\\xfd\\x96\\x62\\x71\\x50\\xe3\\x44\\x8c\\x41\\x69\\x10\\x64\\xe7\\x61\\x71\\xf8\\xe1\\x04\\x60\\x4b\\x78\\xce\\x6d\\x0b\\xda\\x2f\\x1f\\xf4\\x88\\x9f\\x0f\\xf5\\xd7\\x2f\\x32\\x11\\x8f\\xcc\\xf5\\xed\\xfd\\x69\\x73\\x6f\\x98\\x38\\xfd\\x10\\x57\\x3b\\x67\\x20\\xcd\\x7a\\x06\\x63\\x73\\x10\\xbd\\xee\\x04\\xde\\x07\\xaa\\x69\\xed\\x95\\x64\\x94\\x8e\\x5a\\x7d\\xb9\\xf4\\x88\\x43\\x24\\xf8\\x66\\xd0\\x2f\\x86\\x32\\x02\\x1e\\x24\\x27\\x31\\xc9\\x4d\\xfb\\x3e\\x33\\xf0\\x7d\\xaa\\x04\\x54\\xa6\\x34\\x61\\xeb\\x2f\\xd9\\xe2\\xa6\\xd7\\x60\\x01\\x7d\\x60\\xce\\x81\\x3e\\x20\\x9f\\xb8\\xea\\xd2\\x55\\x77\\xcc\\x9f\\x7f\\xe7\\xea\\xb2\\xd2\\xd5\\xf4\\x6f\\xa9\\xf8\\xa5\\x78\\x95\\xda\\x51\\xe9\\x48\\xad\\x48\\x53\\x8b\\x57\\xc1\\x42\\x75\\x5a\\xa5\\xc3\\x51\\xe1\\x50\\x31\\xc1\\x97\\xbd\\x7c\\x79\\x55\\xd5\\xe5\\x2f\\x5f\\x06\\x57\\x5d\\xf6\\xda\\xee\\x9a\\x9a\\xdd\\xaf\\x5d\\x26\\xbe\\x73\\x43\\xf3\\xbc\\x62\\xad\\xb6\\x78\\x5e\\x33\\xac\\xdc\\xd4\\x34\\xbf\\x34\\x3e\\x1e\\x23\\x66\\x92\\x71\\xb9\\x0f\\xf7\\xaf\\x98\\xda\\xec\\xea\\x4a\\x42\\x42\\x00\\xd8\\x50\\x6a\\xf7\\x9f\\x82\\x38\\xd2\\x8d\\x7c\\x02\\xc9\\x2f\\x2c\\xe2\\x2e\\xf4\\x79\\x2a\\x49\\x60\\x55\\x5a\\x4c\\x54\\x25\\x8b\\x09\\x58\\x15\\x03\\xb0\\x00\\xfa\\xfb\\x98\\x2c\\x8d\\xd5\\x93\\xe8\\x68\\x8e\\x73\\x24\\x15\\x15\\x16\\x25\\xf5\\xee\\x1e\\x70\\x8a\\x9f\\xe2\\x9d\\x25\\xcd\\x53\\x90\\x28\\x4b\\x94\\xbf\\xa4\\x49\\x8c\\x12\\xac\\xb3\\xf6\\x8d\\xc2\\x37\\x84\\xae\\xa4\\xb3\\xff\\xe4\\x36\\x08\\x02\\xe6\\xd7\\x25\\x92\\x47\\x5d\\x1e\\x06\\xc0\\xd8\\xf5\\xa1\\x0c\\xc7\\x62\\xfa\\x92\\x01\\x55\\xc7\\x9d\\xf3\\x59\\x32\\x70\\x28\\x10\\x8d\\x15\\x87\\x88\\xfd\\x0f\\xd8\\x71\\xaa\\x8f\\xa2\\xc5\\x01\\x70\\x00\\x1b\\x0d\\x3c\\x9c\\xfe\\x2d\\xed\\x8d\\x8d\\x58\\xe8\\x9d\\x1c\\x36\\x5a\\x9b\\x6a\\xcd\\x9e\\x28\\x5e\\x46\\xaa\\xc8\\x80\\x85\\x0a\\x42\\x62\\xfd\\xa3\\x60\\x58\\x40\\xcc\\x94\\x99\\x18\\xbd\\x5c\\x26\\xed\\xb2\\x16\\x56\\x06\\x8d\\x38\\x35\\x7e\\x73\\x62\\xb8\\xc9\\x99\\x6f\\x94\\x5b\\x15\\x42\\x94\\xd5\\x6e\\x57\\xd4\\x2e\\x6d\\xcf\\x96\\x43\\x4f\\x48\\xbc\\xc9\\xa1\\x0d\\x0a\\x0e\\x0a\\x09\\x16\\x14\\x0e\\x45\\xfd\\xf2\\x8e\\x42\\xc5\\x91\\x04\\x2e\\xa9\\x4e\\x5f\\xee\\xd1\\x73\\xcc\\x1b\\x5c\\xb0\\xc0\\xe5\\xb4\\x0d\\x5a\\xcf\\xec\\xd6\\x15\\x67\\xea\\x00\\xe0\\xaf\\x02\\x9f\\xd1\\x3a\\x3f\\x07\\x1e\\xd9\\x25\\xc9\\xb6\\x13\\x38\\xa6\\x76\\x2d\\xd6\\x9b\\x4a\\x49\\x8c\\x4e\\x29\\x20\\x36\\x8b\\x8e\\x8f\\xd9\\xc4\\x30\\xd5\\x54\\xb4\\x31\\x03\\x01\\x35\\x0a\\x35\\x14\\xe6\\xeb\\xb1\\x69\\x83\\x6c\\x19\\x84\\xe8\\x80\\x54\\xc2\\xf4\\x9f\\xbf\\xfa\\xdd\\x59\\x96\\x69\\xb9\\x84\\x6a\\x4e\\x6b\\xca\\xcd\\xca\\x4c\\x68\\x5d\\x52\\x91\\x90\\x50\\xb9\\xbc\\xe3\\xaa\\x7d\\x2f\\x3d\\x96\\xd6\\xb6\\xa4\\x6c\\xb8\\x70\\x7e\\x53\\x6a\\x4a\\x69\\x8b\\x65\\x7b\\x86\\x79\\x65\\xd1\\xfa\\xa7\\xb7\\x94\\xdf\\x76\\x64\\xc5\\x86\\xda\\x9d\\x2f\\x6d\\x4a\\x6f\\xa9\\x2a\\xd5\\x73\\x8f\\x06\\x47\\x04\\xf3\\x2a\\x8b\\x47\\x97\\x8c\\xd3\\x8f\\xff\\x76\\xe9\\x26\\x4f\\x4b\\xae\\x29\\x54\\x15\\xa1\\xc7\\xde\\x25\\xfb\\xc0\\xac\\xe6\\xb8\\x45\\xae\\x56\\x73\\x45\\x62\\x94\\xae\\x64\\xf6\\xfe\\xf1\\xbd\\x4f\\xa5\\x99\\xb7\\x0d\\x76\\xef\\x19\\xca\\x12\\xc2\\xa3\\xc3\\xa4\\x3e\\xce\\xc1\\xf1\\x13\\x3f\\xe2\\x39\\x18\\x87\\x96\\xd2\\xe1\\xa3\\x13\\x11\\x49\\x13\\x31\\xce\\xff\\x86\\x03\\x66\\xca\\xe8\\x52\\x4b\\xde\\x38\\x4f\\xc0\\x11\\x68\\x90\\x82\\x9d\\xaa\\x90\\x4e\\x7f\\xf4\\x0f\\x87\\x80\\x9b\\xfa\\x2d\\x19\\x58\\x3c\\xba\\xa4\\x05\\x49\\x92\\x25\\xb1\\x0b\\x26\\x53\\x94\\x4c\\x16\\x67\\x07\\x43\\x60\\xaa\\xfa\\x4d\\xe2\\x06\\x1a\\x58\\xa2\\xe7\\xee\\x39\\x1c\\xaa\\x36\\x68\\x74\\x56\\x85\\xa3\\x68\\x34\\xb3\\x6e\\x71\\x8d\\x51\\x14\\xbf\\xd8\\xc6\\xd5\\xb1\\x73\\xbc\\xef\\x5b\\xd2\\xd4\\xb2\\xf0\\x90\\x27\\x2d\\x0a\\x7d\\xe3\\x25\\x3d\\x4c\\xe6\\x99\\xeb\\xd8\\x39\\x7f\\x96\\xf4\\x9e\\xcb\\xc4\\xd9\\xdc\\x80\\x84\\xdb\\x43\\xfc\\x28\\x06\\xe0\\xd8\\x20\\x40\\x93\\x7e\\x14\\xff\\xa6\\xeb\\x0a\\x78\\x83\\x9c\\x01\\xc9\\x76\\x81\\x2f\\x53\\x7d\\x5f\\x12\\x3f\\x0a\\xc6\\x2a\\x23\\x53\\x72\\x4a\\xb8\\xce\\xb4\\x4d\\x48\\xe6\\x52\\xfa\\x03\\x76\\x06\\x3c\\x0b\\xae\\x1b\\x99\\xbd\\xcf\\x25\\x7e\\x51\\x73\\xd9\\x63\\xcb\\x57\\xde\\xb7\\xba\\x50\\xfc\\x42\\xe5\\x6a\\xcd\\xcb\\x6b\\x73\\xc7\\x02\\x24\\xce\\x6b\\xcd\\x6f\\x73\\xa9\\xe1\\xec\\x8a\\xe7\\xf6\\x34\\x97\\x17\\x79\\xbf\\x61\\x3f\\x5c\\xf1\\xec\\xce\\xc6\\x19\\x87\\xde\\x5c\\x5f\\xbd\\xbe\\x3f\\x9b\\xec\\xad\\xf0\\x8d\\x2b\\x27\\xbd\\x7d\\x69\\x99\\x4f\\x7f\\x17\\x67\\x52\\x8c\\xc3\\x74\\xb2\\xe7\\xe8\\x12\\x19\\xc0\\xb3\\x8f\\x01\\x62\\x93\\x96\\x02\\x5b\\x5c\\x4c\\x03\\x20\\x0a\\x4f\\x98\\x0e\\xe9\\x9c\\x5f\\xe9\\x0a\\x10\\x86\\x4d\\x98\\x78\\xf2\\xa9\\x7d\\x95\\xba\\x2c\\xf8\\x88\\x63\\x94\\x74\\x09\\xa6\\x67\\xc1\\xc9\\x4d\\x55\\xe2\\x4f\\x5a\\x4f\\x7b\\x4e\\x79\\x4f\\x8e\\xe6\\x92\\x7d\\xa3\\x87\\xe6\\xba\\x18\\x77\\xe7\\x92\\xfc\\xb5\\xaa\\x9c\\x0c\\x3d\\xf4\\x75\\x9d\\x45\\xdf\\x94\\x5f\\xfa\\x2c\\xd7\\x94\\x3b\\x76\\xdd\\x70\\x20\\x1f\\x7c\\xdb\\x91\\xa8\\x28\\x5b\\x71\\x5f\\x79\\xd9\\x92\\x9e\\xea\\xd8\\x6b\\x64\\xc9\\x69\\x39\\x89\\x0e\\x57\\x50\\x2a\\xb0\\xef\\x50\\xf4\\x42\\x32\\x16\\xb4\\x26\\xc0\\x36\\x3c\\xaf\\x34\\x28\\x0d\\x95\\x4a\\xfc\\x57\\x71\\x7e\\x60\\x45\\x7b\\xc0\\x4d\\x42\\xb4\\xf2\\x0b\\x7e\\x91\\x4a\\xf9\\x6e\\xb2\\xa5\\x50\\x51\\x00\\x86\\x44\\xf6\\x5c\\x3d\\xc8\\xa5\\x87\\x69\\x9e\\x2b\\x6e\\x9b\\x68\\x2e\\x4d\\xd7\\x96\\x6e\\x78\\x78\\xe5\\xda\\x27\\x2e\\x2d\\x2f\\xdf\\xfc\\xc4\\x1a\\xa6\\xf0\\xcc\\x87\\x1a\\x4f\\x57\\x71\\x5e\\x5b\\x96\\x5a\\xed\\x6a\\x2b\\x28\\xea\\xf4\\xc4\\x62\\xf3\\x69\\x63\\xd7\\x50\\x96\\x72\\xc1\\xa3\\x3b\\x5b\\x88\\xbf\\x4a\\x39\\xf1\\xec\\xde\\x56\\xef\\x5b\\x01\\xb7\\x55\\xd1\\x92\\x76\\xa7\\xb3\\x7d\\x49\\x11\\xe5\\x7d\\x29\\xee\\x47\\x08\\xee\\x47\\x2c\\x6a\\x9c\\xba\\x34\\x7c\\x3d\\x22\\xdc\\xa7\\xa7\\xed\\x73\\x85\\xf4\\x05\\xbf\\x48\\x25\\x1e\\x39\\x39\\x11\\xd3\\xb4\\x47\\x17\\x10\\xd3\\x78\\xde\\x87\\x88\\xc7\\xd5\\x38\\x9a\\xc8\\x55\\x6d\\xc0\\x7e\\xe2\\x82\\xc2\\xe4\\xae\\x9d\\xb3\\x33\\xc5\\x9b\\xd8\\x97\\xd8\\x76\\xd1\\x56\\x50\\x65\\x08\\x51\\x47\\xbe\\x29\\x57\\x86\\xf1\\xf6\\xd9\\x87\\x97\\xc0\\x1f\\x3f\\xf3\\xe1\\xce\\xcc\\xc0\\xf4\\xe9\\xfc\\x48\\x55\\xd1\\xd4\\x53\\x60\\x0f\\x84\\xf8\\x13\\x7a\\xa6\\x7d\\x48\\x68\\x21\\xb9\\x20\\xf4\\x18\\xa3\\x36\\x11\\xdd\\x13\\xe4\\x7e\\x7e\\x9a\\x19\\x8b\\x7e\\x0a\\x84\\x8e\\x1c\\x0e\\xe2\\xc2\\x6e\\x8e\\x82\\x19\\x6e\\x0d\\x93\\xe7\\x80\\x70\\xb5\\x2d\\x29\\x3a\\x6b\\xd9\\x63\\xdb\\x27\\x1e\\xda\\x54\\x81\\xb7\\x90\\x7d\\x35\\x83\\x05\\x5a\\x82\\x84\\xb3\\x0d\\x60\\x7d\\xda\\x92\\xcd\\x07\\xdb\\xd6\\xfe\\xf9\\x86\\xde\\x9c\\x15\\x0f\\xae\\x67\\x96\\x20\\x06\\x35\\x8a\\xc9\\x18\\x9b\\xa4\\x8a\\x64\\x33\\x12\\x2b\\x00\\xf1\\x38\\x5b\\x4d\\x4a\\xc4\\x11\\xe7\\x54\\x08\\xa0\\x9a\\xc9\\x99\\x8c\\xe8\\x44\\x76\\x39\\x2d\\xe6\\x78\\x2d\\x51\\x9c\\x78\\x49\\x3d\\x22\\xfc\\x91\\x11\\x01\\x1a\\x58\\x71\\xd2\\xe1\\x98\\x9c\\x4f\\x25\\x35\\x19\\xc4\\xd5\\xb7\\x8e\\x38\\xf4\\x05\\x33\\x5c\\x8f\\x1b\\x32\\x93\\xa3\\x21\\xca\\x98\\x9f\\x9a\\xd6\\xba\\xb8\\x78\\xd1\\x91\\x51\\x67\\xda\\xbc\\xdb\\xd7\\x92\\xb8\\x6d\\x47\\x91\\x39\\x0a\\x22\\xe3\\xad\\x5a\\x1c\\x5f\\xaa\\x5c\\x7c\\xdd\\x53\\x23\\x33\\xae\\xd9\\xb6\\xc4\\x76\\xc8\\x32\\x6b\\xf6\\x70\\x7a\\xde\\xfc\\xae\\x0a\\x25\\x93\\x8f\\xf3\\x49\\xed\\xfd\\x87\\x9e\\x19\\x1e\\x7e\\xec\\x9a\\x31\\x85\\xe8\\x60\\x9e\\x51\\x94\\x77\\xce\\xf5\\x94\\x2f\\x9b\\x91\\x61\\x8c\\x97\\xd6\\x61\\x25\\xee\\xcb\\xbb\\x98\\xd7\\x06\\xb2\\x0e\\x93\\x95\\xd1\\x40\\xcf\\xf1\\xd4\\x3e\\x4c\\x02\\x82\\x11\\xb2\\x53\\xff\\x8c\\x01\\x19\\xd4\\xb1\\xb1\\x12\\x4f\\x31\\x91\\x66\\x33\\x41\\xdf\\x57\\x9e\\x7b\\xa4\\x27\\xfd\\x61\\xa3\\x32\\xab\\xec\\x31\\x60\\x4b\\x00\\xde\\xe0\\xce\\x18\\x3b\\xb1\\x49\\xfc\\x02\\xd7\\x60\\x2c\\x04\\x8d\\xda\\x96\\x67\\xc0\\x21\\x6e\\x77\\x28\\xab\\x07\\x26\\x8a\\x37\\x7e\\xb7\\xb2\\xfb\\x9b\\x23\\x63\\x2f\\xde\\x3c\\x1e\\x23\\x3a\\xe0\\x4f\\xd1\\x5d\\x07\\xde\\xd8\\x09\\x5f\\x89\\xf2\\xc6\\x95\\x9d\\x79\\x72\\x76\\x06\\xa1\\x8b\\xc4\\x4f\\x1f\\xc7\\x74\\xe5\\x90\\x53\\x87\\x1d\\x38\\x4a\\x14\\x8b\\x58\\x40\\xe3\\x32\\x81\\x61\\x59\\x3b\\x35\\xdb\\x70\\xbd\\x3c\\xd0\\x2d\\x16\\x21\\xdc\\x32\\xc7\\x88\\xc7\\x5d\\x69\\x09\\x22\\x6a\\x90\\xc0\\x10\\x06\\xfb\\x1c\\x80\\x17\\x9c\\x06\\x81\\x63\\x2d\\x19\\x10\\xb8\\x35\\xd5\\xc5\\x08\\x11\\xb1\\xd1\\xd1\\x3a\\x4d\\x04\\x18\\x23\\xd4\\xba\\xe8\\x98\\xd8\\x48\\x81\\x71\\xe3\\xb3\\xbf\\xca\\x92\\x20\\xd7\\x37\\x6d\\xec\\x6b\\x5d\\x67\\xb5\\xac\\x6b\\xe9\\xdf\\xd8\\xa4\\x8f\\x4e\\xb0\\xe0\\x33\\xec\\x7a\\xf1\\xec\\xb6\\xaa\\x2d\\x73\\x0b\\x13\\x2b\\x16\\x35\\x43\\xb7\\x78\\x5b\\xf3\\xa2\\x8a\\xc4\\xc2\\x39\\x5b\\xaa\\xa7\\x4e\\x9a\\x9e\\xfe\\x1e\\xfc\\xff\\x0d\\x7f\\x5e\\xdb\\x76\\x70\\xf3\\x92\\x34\\xc4\\xa0\\x83\\xb8\\x5f\\xaf\\xe3\\xfd\\xd7\\x81\\x72\\x48\\xbc\\xa2\\xd3\\x61\\x67\\x81\\xd3\\xe2\\x8e\\xd1\\xe8\\x08\\xe0\\x18\\x0e\\x98\\xf1\\x29\\x36\\x3e\\x86\\xf1\\xab\\x81\\x69\\x0e\\x93\\xd2\\x4a\\x97\\x99\\x20\\xc8\\x26\\x67\\xb2\\xc9\\xb7\\xe6\\xdc\\xee\\xa9\\x96\\x0c\\xb9\\x27\\x9b\\x9a\\x7f\\x24\\x63\\x07\\xf7\\xba\\x36\\x2f\\x09\\xfb\\x0a\\x17\\x8d\\xfd\\x1a\\x3b\\x92\\x43\\x74\\xb8\\x14\\x5b\\xe7\\xec\\x39\\xb7\\xad\\x29\\xcf\\x99\\xbb\\xab\\x7d\\xe6\\xf6\\x01\\x57\\x9e\\xd3\\x7b\\xff\\x60\\x7f\\xaa\\xc3\\x91\\xcb\\x54\\x05\\x45\\x0a\\x43\\x8b\\xee\\xbd\\xa4\\xbc\\x7a\\xe3\\x3d\\xa3\\x80\\x40\\x3c\\xeb\\xee\\x2e\\x35\\xe2\\x92\\x75\\x8a\\x9e\\xad\\xb7\\x0f\\xaa\\x7a\\xaf\\x1c\\xf1\\xe4\\x2c\\x38\\x3c\\x24\\x7e\\x13\\x1c\\x06\\xa8\\x67\\x8f\\x1e\\xb4\\x75\\xe5\\x25\\x55\\x74\\x2e\\x95\\x11\\x0b\\x25\\xff\\x22\\x32\\xa2\\xfb\\x4b\\xc2\\x63\\x49\\xe6\\xb6\\x41\\x1e\\xc1\\x4a\\xa2\\x25\\xcc\\x8f\\xac\\x24\\xe9\\x4d\\xb4\\x67\\x36\\x86\\x5a\\xa5\\xcf\\xfd\\x26\\x73\\xf2\\x1b\\xc5\\x45\\xaf\\x89\\xbb\\xe8\\x35\\x09\\x17\\xb9\\xe6\\x42\\xcd\\xa9\\x11\\xfa\\x21\\x63\\x96\\xc2\\x94\\x4c\\xf9\\xea\\xf1\\x4c\\x86\\x7b\\xc8\\xe8\\x11\\x59\\x7a\\x69\\x91\\x74\\x7e\\x75\\x0c\\x3e\\x2f\\x57\\x64\\x1f\\x1d\\x4d\\x2e\\x8b\\x53\\x73\\xba\\x70\\x43\\x76\\x94\\xf8\\x57\\xf1\\xef\\xe2\\x07\\xf2\\x5c\\x7d\\x98\\x8e\\x55\\x6b\\x4b\\x0d\\xb8\\x76\\x68\\x79\\xfc\\xa1\\xf0\\x08\\xee\\x9e\\xab\\x2e\\x0b\\x0b\\x7b\\x87\\xc1\\x6b\\xd9\\xdb\\x26\\xc6\\xc2\\x7f\\x99\\x9b\\x0c\\xc9\\x2c\\xf3\\x6e\\x58\\x68\\x42\\xd9\\xfc\\x06\\x71\\x5e\\x49\\x31\\x42\\xcc\\xd9\\xb3\\x78\\x2e\\x10\\x74\\x3e\\xad\\x34\\x17\\xc2\\x00\\x04\\x3c\\xcb\\x65\\x48\\x40\\x32\\x81\\x68\\x1b\\x01\\x71\\x1b\\x04\\x24\\xa1\\xdd\\x67\\xf1\\xc1\\x33\\x5c\\x21\\x57\\x1b\\x2d\\x51\\xc1\\x32\\x52\\x51\\x78\\xd2\\x08\\x31\\xe9\\xce\\xc3\\xda\\x06\\x90\\x25\\x8a\\x27\\x4a\\x60\\x43\\x09\\x9c\\x02\\xb8\\xb3\\x6b\\x13\\x4d\\xc9\\x4d\\x9b\\xfb\\x67\\x6e\\xb1\\xd9\\x36\\xcf\\x1c\\xd8\\xdc\\x94\\x6c\\x4a\\x18\\xe3\\x91\\x78\\x3f\\x6b\\xd2\\x89\\xb1\\x49\\x26\\x46\\x88\\x8a\\x53\\x28\\x8d\\x71\\x51\\x60\\x8c\\x8a\\x33\\x2a\\xb0\\x03\\x46\\x60\\x97\\x0e\\x7d\\xba\\x69\\xe8\\xd8\\xca\\xb2\\xa1\\x81\\x81\\xa1\\xb2\\x95\\xc7\\x86\\x36\\x7d\\x3a\\xf4\\x92\\x77\\x7c\\xfc\\x33\\xf2\\x7f\\x6a\\x4b\\x91\\x89\\xac\\x81\\xd7\\x5e\\x23\\x2b\\xc0\\x54\\xd8\\x4a\\xb1\\xe1\\xcf\\xfe\\x9b\\xd6\\xfd\\xd1\\xa3\\xa1\\x07\\x18\\xe0\\x00\\x7c\\xa9\\xa8\\x3a\\x7f\\xae\\x07\\x71\\x9f\\xcb\\xba\\x91\\x4c\\xa6\\x92\\xe2\\x3b\\x78\\x60\\x98\\x44\\x32\\x50\\x86\\x0b\\xb5\\xe0\\x79\\xb5\\xd4\\x0c\\x91\\x56\\x24\\xed\\x14\\x23\\x61\\x99\\xe5\\x1a\\x43\\x54\\x90\\x10\\x4f\\x36\\x9e\\x29\\xa5\\xf9\\x2c\\xa4\\xbf\\x81\\xc3\\x19\\xd9\\x81\\x6a\\x44\\x5d\\x44\\xb2\\x7a\\xc9\\x03\\x9b\\xab\\xd3\\xc6\\x4e\\x5c\\x0a\\x25\\x35\\xc6\\xa0\\xa5\\x4b\\x14\\xda\\x30\\x6c\\xe0\\x7d\\x93\\xb3\\x71\\xaf\\x8a\\x97\\x31\\xac\\x67\\xf1\\xed\\x4b\\x5b\\x0e\\xad\\xae\\xfd\\xa3\\x25\\xbf\\x4a\\xb7\\x78\\x15\\xc3\\x78\\x0f\\x72\\xaf\\x4a\\x76\\xe3\\x01\\x3c\\x4e\\x5b\\x71\\x4e\\xa9\\x9d\\x64\\x5d\\x91\\x83\\x18\\xcb\\x10\\x8c\\x18\\x19\\x2f\\xf0\\x78\\xa0\\x10\\x87\\x78\\x19\\x37\\x59\\x02\\x26\\x21\\x00\\x15\\x9b\\x88\\x7c\\x40\\x31\\x38\\xd0\\x88\\x94\\xf9\\x09\\x16\\xe2\\x02\\x65\\x7e\\xe4\\x53\\xcb\\xfc\\xf8\\xc0\\x70\\x95\\xbe\\xdd\\x93\\xdb\\x22\\x6b\\xd9\\xf1\\xf8\\xf2\\xf5\\x2f\\xec\\xac\\xad\\xdf\\xf1\\xf4\\xf2\\x0d\\xcf\\xec\\x68\\xc4\\xa5\\x7e\\x78\\x7d\\xf1\\x40\\xd9\\xd2\\x0d\\xf0\\x96\\x68\\xd5\\x97\\xf6\\x17\\x8e\\x6f\\x08\\x82\\x17\\x17\\xe1\\x72\\x3f\\x33\\xaf\\xff\\x70\\x37\\xc4\\xed\\xfa\\xf8\\x48\\x07\\xa9\\x26\\x58\\x36\\x5c\\x9a\\xf4\\xc4\\x93\\x71\\x9f\\xe8\\xe6\\xee\\xef\\xb3\\xaf\\xdc\\x46\\xf5\\x16\\xb3\\x2f\\x6f\\x4c\\x2b\\x61\\x9f\\x92\\x6c\\x40\\x0e\\x51\\x80\\x70\\xbe\\x9b\\x60\\x83\\xab\\x68\\xa5\\x5e\\xe8\\x21\\x2b\\x44\\x4d\\xc4\\xbd\\x05\\x57\\xc7\\xc3\\xad\\xb5\\x7a\\x03\\x4e\\x26\\x0a\\x16\\x62\\xcf\\x4d\\x26\\xc2\\x61\\xfb\\xc4\\xa6\\x45\\x64\\xce\\xd4\\xb4\\x22\\x36\\x34\\xb2\\x6b\\xef\\x1c\\xb7\\x7b\\xce\\xde\\xae\\xaf\\x77\\xdc\\x73\\x7f\\xac\\xa2\\xd8\\xc3\\xf4\\xaa\\x4d\\xd9\\xc9\\x78\\xa0\\x72\\x4d\\x38\\x9b\\x88\\xab\\xde\\x70\\xcf\\xc8\\xbc\\x7b\\x36\\x54\\x73\\xaf\\x7a\\x57\\x8a\\x7f\\x16\\x3f\\xff\\xf8\\xde\\x93\\xec\\x62\\x6f\\xb2\\x18\\x95\\x52\\xd9\\xe3\\x4c\\xef\\xaa\\x24\\x39\\x03\\x3d\\xbe\\x1a\\xdd\\x2a\\x64\\xa0\\xde\\x65\\x06\\x05\\x71\\x4c\\x10\\xc9\\x0c\\xe2\\x64\\x88\\x1b\\x14\\x00\\x40\\x45\\x22\\x02\\xd9\\x5e\\xe2\\x51\\x52\\xb3\\x0d\\x9a\\x64\\xb9\\x1c\\x53\\x29\\x8f\\x0a\\x16\\x48\\x28\\xb7\\xdc\\x75\\x0e\\xa9\\x64\\x02\\x4c\\xa1\\x11\\x7a\\xef\\xfe\\x5a\\x36\\x6b\\xdf\\x5c\\x8f\\x67\\xee\\xbe\\x59\\x3f\\xdc\\x2d\\x9e\\x05\\x80\\x23\\x91\\x96\\x6c\\x23\\x8e\\x04\\xcb\\xb3\\xb0\\x35\\xcc\\x3c\\xef\\x4f\\x55\\xeb\\x8f\\x8f\\x8c\\xdc\\xbd\\xbe\\x8a\\x19\\xf1\\xe2\\x09\\xec\\xd5\\x88\\xf1\\xd6\\x8a\\xae\\x8c\\xb4\\xce\\x72\\x8a\\x17\\x65\\x41\\x88\\xd6\\xaa\\x89\\x21\\x71\\x6d\\x7e\\xcc\\x0e\\x1e\\x7c\\x07\\x03\\x15\\x3d\\x36\\xa8\\x69\\xac\\x77\\x8c\\x12\\x63\\xd8\\x92\\x11\\xd7\\xcb\\x13\\x59\\xc9\\x5e\\x60\\xf1\\xcd\\x47\\x9b\\x58\\x32\\xf6\\xeb\\x8d\\x55\\xe2\\x67\\x73\\x46\\xf0\\x14\\xfc\\x0b\\xc7\\xe0\\x29\\x78\\x13\\xb8\\xe7\\xdf\\x30\\x26\\x16\\xc0\\xf3\\x8b\\xba\\x19\\xef\\x72\\xff\\xdc\\x5b\\x24\\x1e\\xe2\\xf2\\xfd\\xf5\\x76\\x10\\xc7\\x72\\x34\\xea\\x42\\x45\\xad\\x4d\\xb3\\x24\\x16\\xf8\\x3d\\x21\\x82\\x96\\x1c\\x94\\x03\\xff\\x2d\\x02\\x0d\\x5c\\x07\\x5a\\xf1\\x84\\xf8\\xa9\\x78\\x3d\\x8e\\xe4\\xce\\xe4\\x5e\\xfb\\xa9\\x45\\x3c\\x04\\xf3\\x10\\xf2\\xd5\\xf5\\xe8\\xf3\\xe5\\x97\\xa5\\x97\\xa4\\x22\\x20\\xe5\\xaa\\x80\\x27\\x8c\\xa6\\x6e\\x11\\x95\\x84\\xb2\\x8d\\x7c\\xbd\\x21\\xe9\\x65\\xc9\\x98\\xcd\\xb8\\x47\\x54\\xcf\\x0b\\xf0\\xf8\\x5c\\xfe\\x72\\x99\\xde\\x85\\xc7\\x36\\xbc\\xb4\\xab\\xae\\x6e\\xd7\\x4b\\x1b\\xc4\\x32\\xf6\\x5e\\xfc\\xb6\\x6c\\xb0\\x54\\xa7\\x2b\\x1d\\x2c\\xc3\\x7d\\x7c\\xb9\\x74\\xe5\\xed\\x23\\xf3\\x8e\\xaf\\xad\\xc0\\x7c\\xe5\\xc4\\x34\\x73\\x59\\x97\\x33\\xbd\\xad\\xd0\\x40\\xe8\\x71\\x88\\x87\\xb9\\xed\\x94\\x9e\\x58\\x82\\x0f\\x40\\x8c\\xdf\\xa8\\x15\\x8f\\x33\\x95\\x80\\x78\\x82\\xf2\\x0c\\xcb\\x42\\x37\\xa2\\x13\\x14\\x7b\\x90\\x55\\xa4\\xc7\\x74\\xe9\\xd3\\xd3\\x15\\xeb\\xc2\\xe9\\x99\\xb8\\xf3\\x2e\\xc0\\x8a\\x15\\x7e\\xcf\\x0d\\xfc\\xc7\\xfb\\xf6\\x3f\\x52\\x3d\\x69\\x15\\x69\\xf1\\x82\\x95\\x79\\x7d\\xa1\\xf7\\x61\\x3e\\x26\\xd1\\xaa\\x81\\xfc\\xbb\\xc5\\xc3\\x30\\x22\\x1e\\x66\\x6a\\x34\\x1d\\x07\\xde\\x39\\xc2\\xcc\\x38\\x9d\\xc9\\xac\\x5d\\xf1\\xe4\\xb5\\xeb\\x9c\\x2c\\x01\\xb6\\x83\\xb3\\x3f\\x20\\xc4\\x11\\xcc\\x33\\x25\\x99\\x7d\\x31\\x41\\x0c\\xe2\\xa1\\x4e\\x06\\x3c\\x03\\xb4\\x48\\x55\\x90\\xc0\\x10\\x6a\\x82\\x59\\x86\\x12\\xa2\\x54\\xd0\\xc8\\x53\\x9a\\x51\\x49\\x66\\x1f\\x99\\x70\\xa4\\x44\\x05\\xfe\\x9f\\x4e\\xc4\\x18\\x3d\\x8b\\xff\\x97\\x67\\x7d\\x97\\xb3\\x4f\\x7c\\xeb\\xbb\\x0f\\xc1\\xbc\\xcd\\xf1\\x5d\\xca\\x46\\x30\\xbf\\xf3\\x1f\\xf1\\xcf\\x4c\\xbd\\xf7\\x01\\xf2\\xcb\\x0a\\xcc\\x9d\\xde\\x6b\\x98\\x51\\xfa\\xdb\\x71\\xe6\\x27\\x04\\xa8\\x09\\xcb\\x9b\\x83\\xa4\\x16\\x2c\\x91\\x37\\xbc\\x54\\x2f\\x4d\\xe0\\x39\\x5e\\x20\\x35\\x6a\\x59\\x86\\xa5\\x1a\\x02\\x62\\x41\\x2a\\x9f\\x46\\x4b\\xdb\\x25\\x90\\x2d\\xcd\\x2f\\x74\\x8c\\x0a\\xab\\xde\\x8c\\x33\\x5a\\x29\\x7f\\x88\\x8e\\xa6\\x52\\x4d\\x8f\\x8d\\x23\\x09\\xf8\\x6e\\xf2\\x6a\\x5a\\x95\\x58\\x6e\\x83\\x2e\\x6f\\x86\\x7b\\xcd\\xc6\\xf6\\x03\\xbf\\x5b\\x33\\xf4\\xf4\\x35\\x03\\xa0\\x35\\x55\\xf4\\xe7\\x96\\x8d\\x54\\x19\\xb7\\x6c\\x7c\\xfe\\xf9\\xe2\\xee\\xdc\\xb8\\xc4\\xa2\\x81\\xd2\\xcc\\x8e\\x62\\x93\\xf8\\x59\\xfb\\xde\\xc7\\xe6\\xaf\\xf9\\xcd\\xae\\x06\\xce\\x94\\xd9\\xdb\\x5a\\xa6\\x49\\x39\\xbe\\x91\\x14\\x7d\\x75\\x8e\\x1e\\x1d\\x4f\\xa9\\xf1\\xe8\\x74\\x39\\xf5\\xa9\\x2b\\xe6\\xbd\\x9b\\xe0\\xa9\\x4f\\xb3\\x54\\x67\\xe9\\xb4\\x19\\x15\\x29\\xb3\\x0f\\x2d\\xc8\\xc5\\x55\\x62\\x7d\\xbe\\x34\\xc4\\x15\\xfb\\x6b\\x10\\x05\\x73\\x8c\\x1f\\x42\\x50\\x45\\x21\\x04\\xd5\\x3e\\x50\\x3d\\xc1\\x57\\xf6\\x84\\xfe\\xc3\\x9a\\x40\\x8b\\x0b\\x9f\\x0c\\x93\\x58\\x6f\\xe2\\x35\\x64\\x6f\\x3c\\x33\\x80\\xa3\\xbb\\xfb\\x91\\x7f\\x6d\\x36\\x4f\\xae\\x4d\\xe0\\xba\\x79\\x20\\xc3\\x15\\xc8\\x47\\x54\\xa3\\x06\\x5f\\x0c\\x02\\x4e\\x87\\x10\\xc8\\x8d\\xc9\\x42\\xc1\\x23\\x20\\x08\\x84\\x19\\x64\\x0e\\x71\\xcd\\xf8\\xf6\\x7f\\xe0\\x59\\xf7\\x9c\\xab\\xe7\\x54\\x59\\x9d\\xf9\\xfa\\x30\\x46\\x20\\x0f\\xc2\\x32\\xeb\\x8b\\xa7\\xc4\\x1f\\x6e\\xa9\\xfb\\x98\\x77\\x2e\\xbc\\x77\\x2b\\x43\\xc6\\x89\\xc1\\xe7\\x94\\x3f\\x11\\xb9\\x4a\\x9e\\xa7\\x09\\x07\\x92\\xc0\\x17\\x00\\x29\\x54\\x05\\x40\\x0a\\x13\\xa1\\x41\\x65\\x31\\x45\\xd3\\x8e\\xc4\\xf8\\x40\\x0a\\x03\\xe1\\x69\\xd9\\x04\\xa3\\x50\\x31\\x00\\x19\\x90\\xe9\\xfd\\x49\\x5b\\x39\\x78\\x69\\x57\\xf5\\xa2\\xe4\\xe8\\x70\\x93\\x35\\x25\\x26\\xa3\\x26\\xcb\\x10\\x1a\\x2f\\x72\\x90\\xc1\\x3e\\x2e\\xfe\\x97\\x85\\xd3\\x73\\xf2\\xc7\\xda\\x32\\xd4\\xc1\\xef\\x72\\x18\\xf3\\x44\\x61\\x74\\x25\\x15\\x71\\x5a\\x9f\\x8c\\xb8\\x91\\xfb\\xfb\\xa4\\x8c\\x00\\xae\\x4d\\x92\\x11\\x44\\x9e\\xf3\\xb3\\xc8\\xde\\xc9\\x4f\\x97\\x11\\x2e\\xd6\\x27\\x23\\xf6\\x80\\xf6\\x09\\x85\\x78\\xe6\\xcc\\x75\\x92\\x8c\\x38\\xed\\xf4\\x3e\\x0d\\x03\\xbe\\x1c\\x5f\\xc4\\x0d\\x10\\x1f\\x1f\\x91\\x10\\x5a\\x3a\\xf3\\x28\\xee\\x3b\\x4b\\xe4\\x1e\\x0c\\xf3\\x04\\x90\\x19\\x77\\xd3\\xcf\\xd7\\x38\\x14\\xe7\\x56\\x9a\\x02\\x7c\\x0d\\x1c\\x01\\x03\\x98\\x9e\\x72\\x6e\\x40\\xfc\\x9b\\x36\\x27\\xdb\\x15\\x33\\x76\\xef\\xba\\x72\\x88\\x55\\x67\\xd4\\x38\\x15\\x99\\xd9\\x39\\x5a\\xc2\\x60\\xc6\\x2e\\x0b\\x95\\x71\\xd9\\xcb\\x1f\\x58\\x0f\\x2f\\x88\\xf9\\xb5\\xb3\\x73\\xd5\\xac\\x2c\\x44\\xc6\\xdc\\x8c\\x00\\xb5\\x62\\x3a\\x0e\\x90\\xfe\\x91\\x0a\\x85\\x02\\xcf\\xb2\\x00\\x2a\\x49\\xfd\\x9f\\x85\\x38\\x4e\\x4d\\xb5\\xff\\x50\\x14\\x4a\\xbb\\x28\\x93\\x76\\x2b\\xd2\\x41\\xda\\x4d\\x18\\xde\\x0d\\xc1\\x3b\\x41\\x7e\\xfa\\x49\\xa9\\x7b\\xe4\\x97\\x96\\x9f\\x21\\xf7\\x15\\x6f\\xe2\\x15\\x34\\x9f\\x9a\\xa0\\x92\\xf3\\x88\\x6f\\x0b\\x92\\x49\\x37\\xe7\\x18\\x62\\xea\\x99\\x85\\x25\\xba\\x9a\\x82\\xd9\\x47\\xa2\\x48\\xb9\\xf4\\x43\\xf7\\xf0\\xc0\\xfd\\x5d\\xec\\xd4\\x67\\x6c\\x56\\x88\\x67\\xcf\\xb4\\x4d\\x3e\\xe7\\x74\\xba\\xf7\\x39\\xe8\\xa7\\xb1\\x01\\x34\\xbf\\x63\\xc7\\x85\\xe4\\xad\\xcf\\xf2\\xf9\\x73\\xf2\\x36\\xe6\\x1c\\x79\\x6b\\x98\\x22\\x6f\\x5d\\x8c\\xa2\\x7b\\xe5\\x83\\x97\\x94\\x94\\x5c\\xf2\\xe0\\x4a\\x71\\xef\\x69\\xfc\\x8e\\xd4\\x19\\x56\\x3b\\x9b\\x73\\xb0\\x84\\x7d\\xb8\\x78\\xd9\\xd1\\xc1\\xd9\\xb8\\xea\\x1e\\xf7\\x17\\xef\\x09\\xb1\\x1b\\x87\\x95\\xa5\\x91\\xb0\\x32\\x29\\x3f\\xae\\x0e\\xd3\\xb3\\x89\\xe2\\x45\\x44\\x23\\x1d\\xed\\x3f\\x92\\x81\\xc0\\x23\\x61\\x98\\xec\\x60\\x54\\xe3\\x82\\x5e\\x9f\\x42\\x10\\x13\\x13\\xa3\\x8b\\x49\\xa4\\xfb\\x6c\\x52\\x10\\x9e\\x41\\x70\\x8e\\xf4\\x3f\\x6f\\x87\\x1d\\x2e\\xee\\xc1\\x96\\x58\\xf7\\xbc\\x43\\xc3\\xe2\\x4b\\x10\\xcb\\x26\\x90\\x95\\x7a\\xe6\\x93\\xb4\\x44\\x7b\\x5c\\x58\\x58\\x5c\\x8a\\x8e\\x9d\\x5d\\x38\\x7e\\x3d\\xa5\\x8a\\x0c\\x3a\\x5e\\xba\\x7f\\x11\\x5b\\x0d\\x85\\xad\\x94\\xb2\\xa9\\xfb\\x52\\x04\\x8a\\xa3\\x11\\x00\\x88\\x07\\x8e\\x45\\x1c\\x51\\x56\\xe8\\x42\\x26\\x2b\\x8a\\xd0\\x14\\x19\\x19\\x19\\x17\\xa9\\x4d\\xc6\\x14\\xd1\\xf9\\x36\\x95\\x22\\xf9\\x14\\x6a\\xae\\x9f\\xb2\\x1b\\x81\\x36\\xb0\\x17\\xb1\\x57\\x5f\\x6c\\x27\\xa2\\xb6\\x62\\x5a\\x57\\xf8\\x37\\x28\\x9d\\xc8\\x5f\\x5f\\x5e\\x2c\\xd1\\xf7\\x80\\x14\\xa3\\xa5\\x2e\\x20\\x19\\x03\\x44\\xdf\\xa3\\xc8\\x80\\x09\\x64\\x05\\xd0\\xaa\\xa2\\x89\\x74\\xae\\xa4\\xa3\\x74\\x1b\\x01\\x06\\x54\\x4a\\xfa\\x9e\\x10\\x50\\xc0\\xdd\\x01\\xeb\\xbb\\x7a\\xb2\\x9e\\x8a\\x3f\\x54\\x0c\\x0a\\x84\\xa4\\xe2\\x4e\\x57\\xc1\\x50\\x85\\x49\\xdc\\x0c\\x1b\\x89\\x3b\\xab\\x70\\xa0\\x28\\x9e\\x17\\x3f\\xab\\xdd\\xf1\\xcc\\xea\\x15\\xcf\\xed\\x6e\\x6a\\xd8\\xf3\\xd2\\xfa\\x25\\x4f\\x5c\\x8e\\x85\\xcb\\xa9\\xb2\\x79\\x35\\x66\\x6b\\xf7\\xee\\xb9\\x96\\x4f\\x2c\\xb3\\x77\\xf7\\xa4\\x9a\\x6b\\x17\\x94\\xcf\\x7f\\x74\\x77\\x6b\\xfb\\xe1\\x0f\\x76\\x89\\x6f\\xee\\x7e\\xef\\x9a\\xb6\\x8a\\x4b\\x1f\\x5b\\x25\\xd9\\x0f\\x67\\x60\\x19\\xb5\\x88\\xfa\\x1b\\xec\\x68\\x40\\x8a\\xfd\\xd5\\x21\\x0e\\xf7\\x80\\x83\\x41\\xea\\x11\\x26\\x3a\\x04\\xd5\\xa8\\x24\\x11\\x99\\x88\\x48\\x0d\\xd5\\x40\\x0b\\xfa\\x9d\\x20\\xf8\\x3a\\x4a\\x66\\x27\\x69\\xea\\xdb\\x68\\x88\\x1a\\x6e\\xb3\\x18\\x88\\xae\\x93\\x4c\\xf7\\x9a\\x28\\xdc\\x17\\x46\\xee\\x26\\xdb\\x20\\xde\\xfd\\xdc\\x51\\xd1\\xae\\xcc\\x68\\x79\\x20\\xf6\\x24\\x70\\x0a\\xe7\\x16\\x3d\\x71\\xf2\\xf6\\x93\\xdd\\x3f\\xfe\\xd8\\x8d\\xff\\x3c\\x21\\x9e\\x0d\\x89\\x4d\\x49\\x8a\\x33\\xa9\\x43\\x42\\xd4\\xa6\\xb8\\xa4\\x94\\xd8\\x10\\x38\\x2d\\xfe\\x48\\x02\\xf4\\x40\\x36\\xe8\\x3d\\x86\\x07\\xe8\\xb2\\x4d\\x20\\x23\\xe1\\x7a\\xe2\\x8f\\xc9\\xf5\\xa3\\x25\\xf1\\xf1\\x25\\xa3\\xf5\\x22\\xdb\\x30\\x8f\\xbc\\x9a\\xd7\\x80\\xa5\\xf0\\xdb\\x08\\x71\\x31\\x74\\x1d\\x6b\\x08\\xfa\\x1f\\x7f\\xc1\\x1a\\x65\\x58\\x87\\xf0\\xed\\xda\\x08\\xa9\\x95\\x8a\\x68\\xb2\\xa6\\xad\\x44\\x5e\\xa8\\xed\\x64\\x4d\\x91\\x03\\x93\\x0f\\x13\\x05\\xb0\\xeb\\xdb\\x25\\xc7\\x4a\\x39\\xf3\\xe3\\x47\\xe2\\x3f\\xb1\\x29\\x3e\\x7f\\xf9\\x9a\\xba\\x5d\\xbf\\x59\\x07\\x7f\\xf6\\x3a\\x36\\x6c\\x7c\\xfc\\xf1\\x4b\\xd7\\x31\\x85\\xde\\xe7\\x98\\x2b\\x73\\x1f\\xba\\x14\\x57\\x0f\\xcd\\xc6\\x9b\\xd0\\x7f\\x27\\x16\\xc1\\xc3\\x13\\xbe\\x1a\\x3f\\x5f\\x72\\xf3\\x05\\x25\\x4a\\x41\\x25\\xa4\\x76\\xaf\\xd5\\x1f\\x11\\xc7\\x4c\\x60\\xb2\\xa4\\x0a\\xbe\\x81\\xba\\x73\\x78\\x63\\x48\\xb5\\x13\\x27\\xb3\\xbd\\x24\\xb5\\x24\\x31\\x01\\x07\\x0c\\xa7\\x40\\x8a\\x4c\\x08\\x04\\x0c\\x4b\\x53\\xa3\\x90\\x25\\x35\\x66\\xb3\\xfd\\xe1\\xe2\\x58\\xc1\\xc1\\x99\\x20\\xe7\\xc4\\xf2\\x90\\x69\\xc5\\xdc\\xbc\\xe8\\x8e\\xe5\\x05\\xc4\\x3c\\x48\\xcc\\x84\\x34\\x30\\xd8\\xd3\\xe4\\xd2\\x7c\\x64\\xef\\xbb\\x62\\xa4\\x70\\x6e\\x93\\x27\\xa2\\xe2\\x26\\x07\\x36\\x14\\x6a\\x88\\xe1\\x90\\x18\\x0c\\x63\\x3d\\x5d\\xac\\xd8\\xb8\\xfd\\xe1\\x31\\xe5\\xf8\\x93\\x3b\\x9b\\x66\\x1c\\x7c\\x65\\xb5\\x92\\x31\\x3f\\x07\\xc9\\x2f\\xae\\xd4\\x84\\xaa\\x12\\x53\\x12\\xdb\\x97\\xb7\\x7a\\x14\\xe1\\xe9\\x0d\\x63\\x75\\xe5\\x55\\x1f\\x39\\x1a\\xe7\\xe6\\x28\\x0b\\xc7\\x5a\\xd2\\xd2\\x5a\\xc6\\x0a\\x95\\x39\\x73\\x1b\\x1d\\x54\\x86\\xec\\x24\\xf1\\x3a\\x5c\\xde\\xff\\xac\\xed\\xaa\\x99\\xac\\xed\\xaa\\xbe\\x70\\x6d\\x57\\x21\\x50\\x5f\\x54\\x31\\x59\\xdb\\x55\\xe9\\x0b\\x9e\\xb4\\xb8\\x3c\\xf4\\xaf\\x61\\x27\\x3c\\x33\\xff\\x8e\\x55\\xc5\\x43\\xfd\\x45\\xbd\\x85\\x89\\xf9\\xe3\\x37\\xcf\\xff\\xfa\\xeb\\x19\\x8d\\x75\\x9d\\x5f\\x3f\\x3a\\xb3\\xa9\\xbb\\x1b\\x1b\\x8b\\x4c\\xf5\\x13\\x0d\\xf5\\xab\\x92\\xc2\\x32\\x4a\\x9a\\xec\\x8d\\xcb\\x1b\\x2d\\xf0\\xdc\\xdf\\x30\\x0c\\x62\\xc9\\x13\\x4c\\x56\\x66\\xa1\\x07\\x01\\xda\\x87\\xe9\\xcd\\xe4\\xf2\\xce\\x8d\\xed\\xc2\\xc4\\x51\\xb2\\x48\\x5c\\x96\\x10\\x88\\xed\\xca\\xf4\\x4e\\x88\\x5f\\x62\\x18\\xad\\xae\\x33\\xb7\\x73\\x79\\x64\\x5c\\xf5\\x38\\x43\\xf3\\x43\\xfc\\x32\\x0a\\xa9\\xc9\\x1c\\xe3\\x88\\xc5\\xb4\\x95\\x66\\x26\\xd1\\x0e\\x0a\\x41\\x3c\\xeb\\x0b\\x28\\x52\\x93\\x60\\x7f\\x92\\x66\\x4a\\xc1\\x18\\xf0\\x8f\\x8a\\x9c\\xa0\\xb2\\x7d\\x0a\\x2a\\x4b\\xef\\xcf\\x82\\x20\\x10\\x3d\\x75\\x7f\\x6e\\x61\\xa2\\x8c\\x11\\xd8\\xe8\\xc3\\x0a\\x51\\xf4\\x2e\\x13\\x7f\\x54\\x32\\x86\\x20\\x83\\x19\\x0a\\xbf\\xf8\\x30\\xbc\\x7b\\xeb\\xad\\xbd\\xb0\\xf8\\xcc\\x2d\\xde\\xf7\\x48\\x7a\\x28\\x63\\x84\\xaf\\x0e\\xfd\\xd0\\xc7\\x4c\\x20\\x40\\xc9\\xb8\\x1f\\xc7\\xb8\\xbc\\x9f\\xd3\\x51\\x35\\xff\\x8f\\x3a\\x6a\\xb8\\xfb\\xeb\\xac\\xf5\\xe2\\x57\\x1f\\xbd\\x0d\\x9a\\x4b\\x6c\\x5f\\xdb\\x2f\\x81\\xd8\\xbf\\x7c\\x82\\x25\\xf7\\x35\\xe2\\x28\\xf9\\x65\\x8a\\xe1\\x34\\x7d\\x45\\x7e\\x43\\xbd\\x8f\\x21\\x40\\x13\\x58\\x46\\xf6\\x73\\x8d\\x28\\x87\\xc8\\x48\\xf6\\x17\\xe9\\xa8\\xba\\x73\\x75\\x54\\x33\\xd1\\x51\\x53\\x24\\x1d\\x55\\xf8\\x39\\x15\\xd5\\x33\\x5d\\x43\\xad\\x9f\\x3b\\x6b\\x64\\xac\\x71\\xc7\\x63\\x4b\\x7a\\x4e\\xee\\xea\\x00\\x25\\xce\\x3c\\xf2\\x64\\xb7\\x67\\xc7\\x4d\\x2c\\x78\\xf5\\xd5\\x79\\x83\\x2a\\x67\\xa3\\xc7\\xd1\\x98\\x9b\\x24\\x7e\\x59\\xbf\\xf9\\x9e\\xa1\\xc5\\x0f\\x6e\\xae\\x66\\xa3\\x6b\\xd6\\x18\\x93\\x36\\xf6\\x36\\xae\\x99\\x91\\x6a\\x6d\\xdf\\xd4\\xad\\x4d\\x37\\xe2\\xfc\\xf9\\x0c\\x6d\\x6d\\xf1\\x23\\xe5\\x6e\\x35\\x8e\\x9a\\x8f\\xd2\\xa5\\xc6\\x37\\xae\\x9b\\xe9\\xb0\\x35\\xaf\\xf4\\xc5\\x89\\x15\\x70\\x79\\xd3\\xf4\\x52\\xcd\\xcf\\xe8\\xa5\\x66\\x50\\xe1\\x28\\x8a\\xf9\\x24\\xd1\\x93\\xcb\\xc3\\x70\\xd9\\xbf\\xf6\\x36\\x61\\x43\\x72\\x13\\xa2\\x79\\x22\\xa4\\xc6\\x32\\xc9\\x1b\\x25\\x7a\\x62\\x08\\x90\\xa4\\x4b\\x7f\\x15\\x36\\x0e\\xc8\\x0c\\xe4\\xa5\\xdb\\x46\\x07\\x74\\x34\\x30\\x48\\x3a\\x9a\\x94\\x3f\\x5a\\x74\\x33\\xb9\\xed\\x15\\x60\\x80\\x7e\\x71\\x19\\xdc\\x2d\\x5e\\x01\\x57\\x89\\x0b\\xb9\\x3c\\x71\\x08\\x8e\\x78\\xbf\\xf7\\xbe\\x8e\\x90\\x6f\\x4e\\xe4\\x73\\x79\\xe7\\xe9\\xbe\\x9a\\x0b\\xe8\\xbe\\xfa\\xa9\\xba\\x2f\\x65\\xba\\x54\\xdb\\xd2\\x22\\xe7\\xf2\\xb1\\x35\\xeb\\xaf\\xf6\\xe1\\x9b\\x57\\x3b\\x19\\xbd\\xbb\\xd4\\x10\\x06\\xa4\\x2b\\x6c\\xd7\\x97\\xd7\\x7e\\x7e\\x5d\\xd3\\xa7\\x29\\xfd\\x57\\x2d\\x84\\xdf\\x91\\x67\\x2d\\xc5\\xcf\\x9a\\xe9\\xc7\\x15\\x0f\\xf2\\xe1\\x8a\\x53\\xfe\\xb0\\x0c\\xe3\\x63\\x10\\xc1\\x15\\x17\\x68\\xdd\\x3e\\x3c\\xdf\\x58\\x03\\x4b\\x8e\\xe2\\xcc\\xe0\\x21\\xe8\\xfd\\xee\\xc6\\xc7\\xae\\xfb\\x0e\\x66\\x41\\x3d\\xf3\\x2f\\xcc\\x26\\x5c\\x69\\x97\\x69\\xf0\\xde\\x2f\\xe1\\x95\\xaf\\x91\\xfa\\x30\\xbd\\x5e\\x2d\\x61\\x3c\\xed\\x41\\x40\\x8b\\x3d\\xb7\\x5e\\x2d\\xa1\\x7b\\x8c\\xd6\\xab\\x3d\\x88\\x7f\\x8f\\x89\\xbd\\x98\\x39\\x75\\xf0\\x20\\x9a\\x1c\\xcb\\xa9\\x31\\x7f\\xe7\\xde\\x8f\\x0e\\x64\\x20\\xe6\\xaf\\x00\\xdf\\x69\\xa1\\xf8\\x77\\xf6\\x39\\xff\\xca\\x27\\xf7\\xe8\\xc3\\xf7\\xf8\\x35\\x97\\x77\\x5e\\x6d\\xc6\\x80\\xe0\\xf0\\xdd\\x23\\x50\\x9b\\xf1\\xd7\\xe2\\x00\\xbe\\xcb\\x30\\x37\\x93\\xed\\x39\\x73\\x0b\\xdb\\xf3\\x01\\x95\\x95\\xd9\\xe2\\x6c\\xee\\x2a\\x01\\x49\\x78\\x04\\x84\\x6f\\x69\\x8e\\x64\\xbd\\x2a\\x26\\x88\\x0f\\x22\\xdc\\xf3\\x07\\x0c\\x6a\\xa1\\x21\\x41\\xc5\\x08\\x2a\\x1a\\x35\\x93\\x2d\\xa7\\x96\\x83\\x29\\x56\\x76\\xb2\\x95\\x5a\\x88\\xfd\\x5d\\x4f\\x8d\\xed\\x38\\x06\\x23\\x3b\\x7b\\xe1\\xb5\\x73\\x20\\x76\\xee\\x75\\x0b\\x73\\x72\\x16\\x5e\\x3f\\x07\\x5b\\x14\\xae\\x5d\\x98\\xcd\\x76\\x44\\x5b\\xf2\\xad\\xd6\\x7c\\x4b\\xb4\\xf7\\x3e\\xb9\\x29\\xcf\\x6a\\xcd\\x35\\x45\\x33\\x96\\x39\\xbf\\xde\\x33\\xa8\\x24\\x11\\x87\\x8a\\xc1\\x3d\\xbf\\x9e\\xab\\x9c\\x8b\\xdf\\x2a\\xf0\\x82\\x3e\\xac\\x1c\\xdc\\x7d\\x72\\xae\\x32\\xa3\\xbb\\xa9\\x50\\xe1\\x3d\\x14\\x53\\xd4\\xd4\\xe3\\xcc\\x98\\x85\\x5f\\x33\\x73\\x31\\x64\\x46\\x77\\x06\\xe5\\xa1\\xf8\\x14\\x87\\xf3\\xd3\\xcf\\x3b\\x5f\\x68\\x7e\\xc1\\xf9\\x62\\x0d\\xa8\\x61\\x15\\xa8\\x8f\\x10\\xc5\\xf8\\xf7\\x5c\\x1e\\x61\\xc7\\x99\\x63\\xde\\x8f\\xa0\\x94\\xf2\\xf5\\x12\\x52\\x07\\xc2\\x9f\\xdf\\xa3\\x24\\xd1\\x1a\\xe7\\x9c\\x2f\\xe8\\xda\\xf0\\x1d\\x2f\\x48\\xba\\x51\\x14\\x9e\\x50\\x64\\xa4\\x2e\\x90\\x6a\\xc4\\x0d\\x8a\\x7f\\xcf\\x5a\\xe4\\x5a\\xf1\\xf8\\x96\\x2a\\x50\\x91\\x42\\x49\\x39\\xf3\\xb2\\xf0\\xa3\\xfb\\x42\\x42\\x9d\\x73\\xaf\\x1b\\x83\\x19\\xe2\\x5d\\x9e\\xda\\xd4\\x98\\xd0\\x50\\x38\\x43\\x9e\\xdb\\x8e\\x9f\\xbb\\x91\\xcb\\x9b\\x7a\\x9e\\xd0\\xfc\\xe2\\xf3\\xc4\\xe0\\x65\\x20\\x5c\\x06\\x11\\xa7\\xff\\x28\\x75\\x87\\xfc\\xfa\\xf1\\xf6\\x9b\\x31\\x9f\\xbe\\xe4\\xf2\\xa6\\x9d\\x27\\x34\\xff\\x0f\\xe7\\x09\\x8a\\xd5\\xd3\\x27\\x3d\\x63\\x5c\\xf1\\xd1\\x99\\xee\\xc0\\x63\\x7c\\x9c\\xf3\\xe5\\xf2\\xe6\\x10\\x9b\\x1e\\x97\\x17\\x38\\x4f\\x20\\xc1\\x87\\x0f\\xc4\\x30\\xfe\\xd9\\xe9\\xd3\\x32\\xd4\\x10\\x38\\x4f\\x60\\x6d\\x99\\xf6\\x67\\xaa\\xb6\\xec\\x9e\\xaa\\x2f\\x33\\x5d\\xbb\\x16\\x1c\\x5b\\x92\\x9b\\xbb\\xe4\\xd8\\x02\\xb1\\x57\\xfc\\x91\\x49\\xda\\x85\\xe1\\xc1\\xa3\\xa2\\x30\\x30\\x38\\x73\\x32\\xb3\\x7b\\x4d\\x4d\\xfd\\xa5\\xb3\\x73\\xd8\\xc1\\xb7\\xbd\\x47\\x30\\x18\\x98\\x39\\x1d\\xe7\\x65\\x1a\\xd5\\x88\\x14\\xd8\\x47\\xdc\\x25\\x5c\\xde\\x45\\xce\\x12\\x9a\\xff\\xfb\\x59\\x62\\xcc\\x36\\x74\\xc5\\x40\\x5a\\xda\\xc0\\x15\\x43\\xe2\\x6b\\x10\\xcc\\x46\\xd1\\xb3\\xc4\\xbf\\x6d\\x69\\xee\\x38\\xec\\x6a\\x77\\xa7\\x31\\x8f\\x10\\x14\\x68\\x42\\x13\\x91\\x53\\x58\\xdc\\x3e\\x29\\x7e\\x48\\xc8\\xd2\\x66\\x3b\\x12\\x08\\x8f\\x88\\x7e\\xb2\\x9e\\xcb\\xbb\\xd0\\x59\\x42\\xf3\\x33\\x67\\x09\\xfd\\x39\\x67\\x09\\x7d\\x80\\x9a\\xa3\\x20\\x5f\\x74\\xd7\\x8a\\xa2\\xa2\\x15\\x77\\x2d\\xc2\\xc5\\x0a\\x54\\x20\\x77\\x56\\xa6\\x2a\\x14\\xa9\\x95\\x4e\\xe6\\x35\\xf7\\xc0\\x65\\x2d\\x8d\\x5b\\x06\\x3c\\x98\\x86\\x07\\xc4\\x7f\\xa9\\x4c\\x19\\x71\\xf1\\x2e\\xb3\\xca\\x5f\\xdb\\x7a\\x06\\xd7\\x84\\x1c\\xa8\\xa6\\xa4\\x12\\xbf\\x97\\x21\\x90\\xe1\\x9d\\x51\\xe0\\x05\\x8e\\x1f\\x27\\xb6\\x7e\\x4e\\x26\\x0c\\x06\\xf9\\x7d\\xc5\\xba\\x40\\xca\\x60\\x22\\x89\\x22\\xb3\\x59\\x2d\\xe6\\x29\\x85\\xfa\\x1c\\xe0\\x08\\x26\\xda\\x21\\xdd\\x0a\\x2f\\x5a\\x84\\x27\\x9b\\x06\\xb5\\x32\\xf5\\x69\\xcd\\xb9\\x7a\\xf1\\x34\\xd9\\x02\\xb7\\x3e\\xbf\\xb9\\xa4\\x64\\xf3\\x73\\x5b\\x17\\xdc\\xbb\\xa1\\x0a\\xf8\\xc4\\x9c\\x96\\xcc\\xe2\\xce\\x6c\\x7c\\xb4\\x78\\x12\\x4a\\xf9\\xf8\\x9c\\x0e\\x76\\x91\\xc6\\x5e\\x64\\x9a\\xb1\\x6f\\x7e\\x7e\\x87\\x54\\xac\\xef\\xc0\\xcc\\xfc\\x45\\x87\\x67\\xdb\\xb0\\xc5\\xc6\\x56\\xd5\\x9b\\x75\\x8f\\xab\\xbb\\xcc\\x42\\xe7\\x9c\\x07\\xeb\\xb6\\x37\\x73\\x4d\\x24\\xef\\x07\\xed\\xf2\\x9f\\x25\\x10\\x62\\x05\\x44\\x71\\xd2\\xa1\\x87\\xec\\x63\\x3a\\x72\\x5e\\x90\\x22\\xfd\\x13\\x19\\x7f\\x78\\xaa\\xe1\\x02\\xcd\\xc8\\x52\\x93\\xda\\x22\\x9f\\xe5\\xdf\\x12\\x68\\xc5\\xf3\\x9a\\x7a\\xda\\x14\\x5d\\xa8\\x25\\x81\\x85\\x22\\x55\\x43\\xb0\\x49\\x5d\\xb2\\x01\\x62\\xcb\\xcd\\x39\\xbc\\xb0\\x48\\x76\\xdf\\xe9\\xf8\\x7a\\x9d\\xed\\xac\\xab\\x7f\\x57\\xef\\xec\\x7d\\xb3\\xd3\\xd3\\x07\\xf6\\xce\\x1e\\xd8\\x33\\xe0\\x84\\x76\\xf1\\x03\\xd0\\x43\\x4f\\x28\\x86\\x32\\x4d\\x76\\x68\\x43\\x42\\x31\\x96\\x33\\xf9\\xcb\\xac\\x18\\xb9\\x7b\\x43\\x0d\\xd6\\x90\\x17\\xae\\x5c\\xf8\\xf0\\xf6\\x86\\xca\\x35\\xc7\\x06\\xc4\\x19\\x78\\x7c\\x6f\\xcb\\x19\\x6d\\x49\\x4f\\x6f\\x19\\xcd\\x59\\x99\\x3d\\xda\\x92\\x91\\xd1\\x32\\x9a\\x4d\\x79\\xd3\\x88\\x10\\xd7\\x4a\\xd7\\x7e\\x3c\\xd1\\x0f\\x65\\x40\\x80\\xba\\xfd\\x7b\\x18\\x1d\\x54\\x61\\xea\\x46\\x86\\x50\\xac\\x5a\\xa5\\xc0\\xad\\x23\\xa8\\x8c\\x51\\x93\\xdd\\x98\\xaa\\x65\\xbe\\x53\\x08\\x4b\\x68\\xc7\\x7d\\xc0\\x54\\x73\\xad\\xe2\\x17\\x67\\xfe\\x2c\\x9e\\xfa\\xf7\\xd0\\xfc\\xe2\\x95\\x77\\x2c\\xbc\\x4f\\x99\\x52\\x92\\x0a\\x41\\x67\\x51\\x5a\\x79\\x2a\\x55\\x35\\x60\\x9d\\x78\\x19\\xdc\\x99\\x7a\\x78\\xb8\\x69\\xcb\\x6c\\x8f\\xb8\\x3f\\x36\\xd3\\x1a\\x0b\\xf1\\x5a\\x9b\\x0b\\x51\\x7b\\xe6\\x6b\\x62\\x3d\\xd7\\x28\\x50\\x07\\x62\\x49\\x2d\\x71\\xc4\\x58\\x80\\xe7\\x54\\xc0\\xf2\\xa4\\x0a\\x1e\\x57\\x17\\x0c\\x32\\x81\\x1c\\x6b\\x69\\x5e\\x81\\x9f\\xdd\\x41\\x41\\x7c\\xf7\\x39\\x1e\\x17\\x3d\\xd3\\xe0\\xcc\\x20\\xc7\\x3c\\x9b\\xc9\\x6e\\xf0\\xab\\x91\\x3e\\x8f\\x8b\\xd2\\x75\\x3e\\x3e\\x43\\xa0\\xe6\\x56\\x00\\x50\\xc5\\xc5\\x5c\\xfa\\x77\\x5f\\xc9\\x38\\x70\\xcd\\xde\\xd5\\x69\\x96\\x10\\x0c\\xf2\\x8a\\x21\\x50\\x3f\\xee\\x81\\x07\\x40\\xf5\\x77\\x9c\\x92\\x7f\\x56\\x2a\\x22\\xf7\\xa8\\x08\\xb3\\x0f\\x10\\x24\\x83\\x77\\x04\\xa1\\xab\\x3d\\x65\\xb2\\xa2\\x1c\\x77\\xeb\\xfd\\xb7\\xde\\x8a\\x00\\x2d\\xc4\\x73\\x31\\x33\\xb0\\xae\\x38\\x5e\\xe0\\x39\\x61\\x9c\\x74\\x44\\x06\\x68\\x1c\\x09\\x44\\x00\\xc9\\x06\\xfd\\x8b\\x49\\x57\\x1f\\x58\\x61\\x89\\xcc\\x45\\xd7\\xd5\\xcf\\x17\\xc0\\xa4\\x81\\xe1\\x89\\x2c\\x33\\xf4\\xbf\\x2a\\x60\\xe6\\xb6\\x66\\xc5\\x73\\x50\\x2c\\x3e\\x27\\xc4\\xbb\\x9b\\x2e\\x5e\\x07\\x33\\xa5\\xba\\x3f\\xeb\\x44\\x66\\x67\\xa9\\x99\\x9e\\xd3\\x29\\x7e\\xfd\\x9f\\x69\\xcc\\x92\\x19\\x2d\\xf0\\x97\\x26\\xa4\\x48\\xe0\\xc2\\xa4\\xa3\\x46\\x53\\x2f\\x9b\\xea\\xa8\\x21\\x48\\xad\\xd3\\x9b\\xa0\\x40\\x0b\\xb2\\x84\\x02\\x8d\\xbb\\x49\\x8d\\x08\\x03\\xae\\xb6\\x41\\xec\\x74\\x58\\x07\\xb4\\xca\\x25\\xc7\\x4e\\x22\\xeb\\xb7\\x2b\\x05\\x74\\x41\\xe2\\xd7\\xf1\\x69\\x1a\\x6c\\xde\\xe0\\xe1\\xf9\\x39\\x39\\x38\\x52\\x46\\xfc\\x61\\x49\\x4a\\xef\\xfe\\x51\\x0b\\xa3\\x2e\\xaf\\x64\\xc3\\x22\\xf5\\x99\\x46\\x63\\xa6\\x3e\\x92\\xcb\\x13\\x6f\\x84\\xec\\xd9\\x97\\x35\\xb7\\x6c\\x1f\\xf2\\xf8\\x34\\xc5\\xaf\\x1f\\x7d\\x16\\x7e\\xe7\\xcd\\x8e\\x73\\x9a\\x35\\x20\\x7e\\x04\\x5a\\xab\\xdb\\xe7\\xd7\\xb9\\x81\\xcb\\xfb\\x39\\xbf\\x8e\\xe6\\x67\\xfd\\x3a\\x53\\x6d\\x60\\xd3\\xfd\\x3a\\x13\\xeb\\x40\\x1d\\x36\\x70\\x70\\xc4\\xe3\\x19\\x39\\x38\\x20\\xbe\\xb7\\x8e\\x2a\\x83\\x57\\x86\\xe9\\xd3\\x12\\xc2\\xc3\\x13\\xd2\\xf4\\xcc\\x35\\x70\\xa3\\x78\\xa3\\x67\\xf6\\xb6\\x16\\x42\\x27\\x3c\\x2a\\x56\\xe1\\x95\\xfc\\xac\\xf8\\x51\\xac\\xcd\\x9d\\x10\\x9f\\x69\\x56\\x4b\\x6b\\xe5\\x47\\x5f\\x8d\\x44\\x1d\\xca\\x2d\\xf1\\x30\\xc0\\x82\\x92\\x66\\xfd\\x06\\x81\\xc0\\x03\\x02\\x01\\x05\\x5c\\x7c\\x3a\\x42\\x29\\xd3\\x3d\\xe9\\xeb\\x91\\x53\\xfd\\x84\\x52\\xaa\\x97\\x4f\\xaf\\xd6\\x16\\x00\\x16\\x62\\xee\\x16\\xbf\\x9b\\x5e\\x3b\\xf1\\xe0\\x41\\x50\\x41\\x08\\x77\\x52\\xfc\\x66\\x7a\\x05\\x45\\xee\\xe4\\xfd\\xd7\\x5e\\x4b\\x75\\xb0\\xc3\\x54\\x8f\\xa5\\x79\\x31\\x14\\x8a\\x8a\\x62\\xcc\\x52\\xfd\\x88\\x99\\x25\\x51\\x32\\x5d\\x6f\\x99\\x54\\x92\\x01\\x1f\\x1a\\x40\\x2d\\xde\\x89\\x0f\\x29\\x77\\x70\\x79\\x92\\xd6\\x42\\x5c\\x21\\x7e\\x1d\\x97\\x60\\x83\\xdc\\x86\\x6d\\x28\\x46\\xb2\\x7f\\x07\\xd3\\x33\\x8a\\x4c\\xe0\\x58\\x62\\x37\\xe1\\x41\\xca\\x0f\\xf7\\x3b\\x34\\x8d\\xc8\\x68\\xc0\\xf1\\xb0\\x46\\x13\\xdd\\xbf\\xfd\\xab\\x7f\\x8a\\x56\\x46\\xc4\\xc0\\x94\\x17\\xdc\\x6d\\x99\\xb3\\xd6\\xd6\\xd4\\x2c\\x33\\x9b\\x16\\x95\\xd7\\x6f\\xea\\xcb\\x02\\x36\\x3d\\xc5\\x9c\\x0a\\x9c\\xcb\\x61\\xb0\\x60\\x63\\xe9\\x33\\xb3\\xaf\\x1c\\xca\\x2c\\xc6\\x3f\\x99\\x43\\x57\\xce\\xe6\\x8a\\x4f\\x3f\\xd3\\xd9\\xd8\\xd8\\x39\\xf9\\x97\\xc4\\xa8\\x60\\xda\\xf6\\x70\\x79\\xd3\\x69\\xd3\\xfc\\x3f\\xd2\\xe6\\x9a\\x4e\\xdb\\x9e\\xf4\\x8e\\x95\\xd5\\xb5\\x13\\x26\\xe3\\x92\\x4a\\x82\\xa7\\xea\\x4d\\xb1\\x38\\x52\\x80\\x4d\\xcb\\x30\\x24\\xe3\\x19\\xd2\\x3c\\x72\\xed\\x3c\\x77\\x05\\xfe\\x71\\xcf\\xbb\\x76\\x84\\x39\\xe9\\x6d\\x9e\\xd3\\xd3\\x33\\x67\\xf2\\xaf\\x2f\\xe7\\x8b\\x5b\\x27\\x68\\xc9\\xbc\\x26\\x55\\x6f\\x08\\xb4\\xd9\\x84\\x00\\x1c\\x0b\\x92\\xf1\\x09\\x82\\x21\\x48\\x06\\x41\\xc3\\x64\\xbe\\xf4\\x4a\\xc6\\x5d\\xb5\\x5a\\x6d\\x50\\x27\\x93\\xd9\\x4d\\xec\\xbb\\x21\\x64\\xff\\x3a\\x77\\x6e\\xbb\\x5d\\xe7\\xcd\\x6e\\xe6\\x53\\xf1\\xfb\\x3f\\x2d\\x3a\\xbe\\xa2\\xb0\\x70\\xc5\\xf1\\x45\\xa2\\xe2\\xa6\\x9b\\x40\\x0d\\xc1\\xf8\\x23\\x67\\xa5\\x5d\\xa1\\xb0\\x57\\x3a\\xb9\\x2c\\x71\\x4f\\x16\\x86\\x62\\x6b\\xba\\xb4\\x3f\\x8b\\xcb\\xba\\x1f\\x32\\xc5\\xd7\\xce\\xfc\\x24\\x9e\\x51\\x1a\\x32\\xe2\\xb4\\xe9\\x06\\x25\\x1d\\xdf\\x1c\\x1c\\x13\\x79\\x37\\xf6\\x29\\x15\\xa2\\x37\\x4a\\x42\\xb3\\x41\\xc6\\x43\\x5d\\x2e\\xf0\\x50\\x2b\\x89\\x9a\\x0c\\x12\\xb7\\xca\\x12\\xc4\\x67\\x9f\\x53\\x9b\\x1c\\xe7\\x78\\x19\\xf2\\x79\\xb5\\x43\\xc0\\xe7\\xd6\\x0e\\xea\\xc1\\xfd\\x09\\x4a\\x0c\\xf2\\xc7\\x60\\x64\\x5d\\xfc\\xba\\x90\\x10\\x95\\x2f\\xf0\\x6d\\xda\\xb5\\x25\\x39\\xbf\\xf8\\xb2\\xe0\\x60\\xb5\\x74\\x2d\\x22\\x97\\x92\\x9d\\x3f\\xaa\\xb0\\x20\\x3f\\xcf\\xa8\\xb0\\xc8\\x55\\xd8\\x84\\x10\\x15\\x4a\\x85\\x43\\x11\\x4f\\x25\\xb5\\x41\\xda\\xe7\\x39\\xa5\\x4b\\x89\\x85\\x99\\xc2\\xe7\\x60\\x71\\xa9\\x7c\\xd5\\xfd\\xdd\\x92\\xd4\\x28\\x1c\\x01\\xb9\\xa9\\xa0\\x73\\x79\\x43\\xc3\\xde\\x85\\xf9\\x41\\x3f\\x06\\xc7\\x65\\xda\\xf4\\xf6\\xf8\\x48\\x01\\xfe\\xf4\\x27\\x3e\\x22\\x3e\\xcd\\x60\\x49\\xd3\\x84\\x70\\x3f\\x41\\xe1\\xe8\\xe5\\xb5\\x4d\\xab\\x3a\\xf3\\x4d\\x51\\x23\\xe2\\x69\\xe0\\xd9\\xbe\\xfa\\xab\\x2e\\x5f\\xd9\\xe9\\x74\\xad\\x7c\\x7a\\x8f\\xa7\\xa7\\xdc\\x6c\\xca\\x6f\\x6c\\x69\\xd6\\x7d\\x1d\\x91\\xd4\\xda\\xde\\x5c\\x64\\xb2\\x96\\x77\\xa6\\x61\\x8f\\xbd\\x2b\\xb3\\x73\\xf5\\xae\\x43\\x8d\\x11\\xde\\x83\\xb4\\xbe\\x7d\\x23\\xd6\\xfd\\x8e\\x72\\xad\\xc8\\x89\\x5e\\x94\\xb4\\x25\\x27\\x0a\\x0e\\x91\\x85\\x04\\x4f\\xa6\\x11\\x84\\x82\\x8c\\xa3\\x79\\x04\\xa4\\xe3\\x42\\x0f\\x89\\xf3\\xa0\\xc7\\x4a\\xc9\\x2c\\x9b\\xc8\\xfa\\xf5\\x27\\xf7\\xcf\\x5c\\x48\\x2e\\xc1\\x57\\x53\\x16\\xe9\\xce\\xbd\\xb8\\x24\\xf7\\x97\\x5f\\x47\\xf7\\x7b\\x00\\x9f\\xf2\\x49\\x38\\x1d\\xed\\x24\\xd0\\x5c\\x26\\x82\\xcd\\xa5\\x30\\x46\\x1b\\xa3\\xc2\\xe8\\xbe\\xef\\x3b\\x73\\xb9\\x7c\\xa5\\xb6\\x7c\\x86\\x0a\\x5f\\x30\\xb3\\xc1\\x07\\x6d\\xe0\\x62\\xb7\\x3c\\x18\\xa4\\x4e\\x35\\x65\\x38\\x79\\x2f\\x5b\\x38\\xfb\\x92\\xf2\\x39\\x57\\x0e\\x66\\x72\\xbd\\xe2\\xb7\\x10\\xda\\xcb\\xbb\\x66\\xef\\x1f\\xae\\xdf\\x38\\xe0\\x01\\x2f\\x13\\xa6\\x36\\xc7\\x1b\\xec\\xea\\x60\\x78\\x10\\x5e\\x30\\xb6\\x55\\xa6\\x95\\x16\\xf5\\xed\\xec\\x71\\x34\\x5c\\x7a\\xd7\\x80\\x98\\xcf\\xe5\\x8b\\xe5\\xfd\\x77\\x6e\\xaa\\x4f\\xe9\\xff\\xd5\\x22\\x73\\xae\\x45\\x69\\xaf\\x68\\x36\\x4a\\x7b\\x65\\x38\\x42\\x3c\\x47\\xfd\\x41\\x11\\x44\\x1a\\x46\\x80\\x40\\xad\\x4f\\x0c\\x15\\xd2\\x43\\xd4\\x5f\\xcc\\xb3\\x3e\\x43\\x04\\xfd\\x21\\x7e\\xf8\\x80\\xe5\\x0b\\xe8\\x7f\\x2c\\xdb\\xdd\\xff\\xef\\xf6\\x6d\\xe2\\x3b\\xf0\\x4f\\x48\\xc0\\xb1\\x67\\xef\\x88\\x1a\\x30\\xec\\x87\\x5b\\xc5\\x59\\xe4\\x97\\x3a\\xa4\\x96\\xc0\\x2b\\x28\\xa0\\xdb\\x3d\\x40\\x65\\x6f\\x14\\x79\\x5e\\xe4\\xb4\\xe7\\x69\\xfe\\xe7\\xf3\\x5c\\x16\\x8b\\x8c\\xcd\\xe9\\x79\\x7a\\xe6\\x80\\x78\\x0a\\x6e\\x83\\x58\\xb8\\x5d\\x3c\\x25\\x8e\\xff\\x63\\x56\\x7c\\x02\\x44\\x8a\\x5f\\x93\\x5f\\xaa\\xca\\xfd\\xd6\\xbb\\x64\\x89\\xf4\\xcc\\x36\\xfc\\xcc\\x27\\xa9\\x2f\\x93\\x56\\xb4\\x51\\x11\\x3d\\xad\\x8e\\x14\\x39\\x60\\x18\\xa2\\xe5\\x0c\\x91\\xa9\\x82\\x1d\\xd1\\x3c\\xcb\\xd2\\xe7\\x9e\\x03\\x6a\\x17\\x3a\\x69\\xe7\\x33\\xc4\\xf8\\x8c\\xf1\\x31\\x2e\\x52\\x1f\\x9f\\x65\\x77\\xa6\\xdc\\x90\\xda\\x75\\x6a\\x64\\xf7\\x47\\x1f\\x3d\\xfa\\xd4\\xbb\\xe0\\xf9\\x54\\xfc\\xe4\\xae\\x56\\x78\\x58\\xac\\xf1\\xff\\x62\\x8f\\xcc\\x2b\\xac\\x1b\\xf7\\x7e\\x1d\\xbc\\x14\\xa0\\x83\\xda\\x95\\x54\\x24\\x76\\x44\\xa2\\x43\\x3a\\xce\\x76\\x4b\\xd3\\x15\\x13\\x25\\x83\\xee\\xff\\x77\\x4a\\x7e\\x95\\x7e\\x47\\x4e\\xdd\\xa9\\xd6\\x55\\x1f\\x7d\\x74\\xff\\x0b\\x94\\x92\\xbf\\xdd\\xda\\x04\\x9c\\x78\\xc6\\xff\\x8b\\xe5\\xef\\x1e\\x66\\x19\\x61\\x0a\\x64\\x4a\\x3c\\x49\\xc3\\xb4\\x3c\\x41\\x63\\x8a\\x8c\\x28\\xa3\\xc4\\x81\\x25\\x06\\x91\\x63\\xe3\\x2c\\x00\\xd1\\xfa\\x16\\xfb\\x2b\\x08\\xf8\\xdc\\x77\\x6a\\x84\\x0d\\x6a\\x38\\xae\\x46\\x6e\\x52\\xd1\\x43\\x42\\x22\\xeb\\xdf\\x92\\xc9\\x9c\\xa5\\xe7\\x01\\x29\\xe4\\x99\\xa0\\xb4\\x61\\x13\\xe8\\x60\\xdb\\xa5\\xdd\\xe9\\xe2\\x67\\x51\\x49\\x4e\\xbd\\x52\\xfc\\xdc\\xa1\\x77\\xea\\xf0\\x79\\x33\\xb3\\xff\\xf2\\x4e\\xf1\\x51\\x6c\\x0e\\xfe\\x6e\\xa3\\xf8\\x6f\\x36\\x5c\\x70\\xf6\\xec\\x1c\\x10\\x17\\xc3\\x95\\xa9\\xf9\\x86\\x48\\xef\\x9f\\x18\\x7b\\xa4\\x21\\x3f\\x95\\xbc\\x1f\\xda\\xd3\\x93\\xce\\x31\\x37\\x7a\\x9f\\x87\\x0e\\x4a\\x2b\\xcd\\xdf\\x9c\\xe0\\xf2\\x08\\xad\\x24\\xb6\\x2b\\x58\\x60\\x18\\xc2\\x38\\xc0\\xff\\x0a\\x78\\x1d\\x62\\x32\\x7d\\x96\\x63\\x99\\x9f\\x71\\x08\\x6f\\x5d\\x04\\x23\\x46\\x1f\\x8d\\x13\\x27\\x83\\xf0\\xf6\\xed\\x72\\xfb\\x88\\x23\\x46\\x20\\xbd\\xfb\\x1c\\xca\\x95\\x98\\xe2\\x52\\x6b\\xfd\\xa2\\x2a\\xf1\\x1f\\x9c\\x56\\xfc\\xb2\\x6c\\x7e\\x8d\\x59\\xfc\\x7b\\xa8\\xc6\\x18\\x1b\\x2d\\x7e\\x11\\xaf\\x31\\x6a\\xc2\\x20\\x64\\x8b\\xf8\\xd3\\x3f\\xbb\\xb7\\x76\\xbb\\x82\\xe0\\x1d\\xd1\\x10\\x92\\xd5\\xbd\\xb9\\xf3\\x9f\\xff\\x4c\\x2b\\x32\\x45\\x8a\\x13\\xb0\\x37\\xd2\\x54\\x94\\xf6\\x4f\\x66\\x29\\x84\\x4b\\xe7\\x3a\\x62\\x9f\\xc4\\x7c\\x35\\x21\\x2b\\xa9\\x33\\x14\\xee\\xb3\\x50\\x12\\x2c\\x45\\x20\\xa7\\xfb\\x90\\x10\\xa6\\x5b\\xf2\\x0a\\x86\\x06\\xcb\\x78\\xce\\x47\\xad\\xd5\\x42\\x60\\xcc\\x08\\xb5\\x54\\x01\\x22\\xd2\\x41\\xcf\\x66\\x65\\x4b\\xa3\\xac\\x67\\xf5\\x2c\\x26\\x9b\\x35\\xb0\\x12\\xd9\\x06\\x89\\x6c\\x16\\x97\\x83\\x80\\x45\\x41\\xaa\\x91\\x0f\\x3e\\x80\\xd9\\x1f\\xb3\\xaa\\x4f\\xca\\x86\\x4b\\xf4\\xdc\\x5f\\x82\\xf8\\x68\\x5c\\x99\\xf2\\x0f\\xb1\\x71\\x18\\x52\\x86\\xfd\\xb0\\xe3\\x1e\\xb8\\xaf\\xa7\\xd2\\x7b\\x37\\xf6\\xfc\\x8c\\x31\\x07\\xbd\\xf3\\x82\\x72\\x7a\\xd7\\x37\\x88\\x8d\\x70\\x5f\\x62\\xb6\\x5d\\xeb\\xbd\\x8f\\x69\\xc4\\x19\\xbf\\x89\\x62\\x23\\xfb\\x32\\xa8\\x25\\x5e\\x17\\x60\\xfa\\xf1\\xf1\\xdf\\x4f\\x7f\\xc4\\xc5\\xe8\\xd7\\x5c\\x88\\xfe\\x18\\xa5\\x92\\xd0\\xaf\\xf0\\xd1\\xef\\x99\\xd2\\x01\\x95\\x2a\\xd0\\x01\\xd9\\x64\\x0f\\xb2\\x0d\\x70\\xa9\\x10\\x1a\\xba\\xf2\\xc3\\x0f\\xa1\\xf5\\x37\\xcc\\xd9\\x17\\x97\\xad\\x10\\xfe\\x28\\x13\\xa2\\xf5\\x5a\\x60\\xff\\x18\\xa2\\x4d\\x8a\\x96\\x09\\x6f\\xb4\\xdd\\x0c\\x7c\\x6a\\xa3\\x5e\\xc4\\xc6\\x2d\\x31\\x19\\xde\\x17\\xe3\\x94\\xc7\\xaf\\x20\\x9b\\x48\\x82\\x3b\\x25\\x56\\x26\\x2e\\x82\\xc3\\xb1\\x29\\xee\\x04\\xf1\\x34\\x73\\xcf\\x47\\x3e\\x8c\\xce\\x12\\x2e\\x53\\xb6\\x9c\\xd8\\xd2\\xd1\\x8c\\x92\\xd6\\x62\\x90\\x09\\x31\\xc0\\x23\\xa6\\xce\\x64\\x64\\xd8\\x6a\\xbc\\xca\\x64\\xc2\\x04\\x92\\x31\\xb2\\x89\\x60\\x40\\x88\\x5a\\x79\\xfc\\xf1\\xd7\\xd4\\x6b\\x1c\\xb0\\x17\\x10\\x53\\x7c\\x61\\x7e\\x5e\\xb6\\x3b\\x3d\\x35\\x41\\x1b\\x86\\xc5\\x3e\\xca\\x81\\x9c\\x10\\x62\\x31\\xf0\\x59\\xd3\\xb1\\x65\\xe0\\xdc\\xd4\\x45\\x5f\\x22\\x07\\x89\\x79\\xa4\\x60\\x1c\\x93\\x66\\xf7\\x98\\x00\\x9a\\x4b\\x08\\x01\\x46\\x9a\\x58\\x4b\\x70\\x13\\x96\\x3d\\xb9\\xa3\\x6e\\xed\\xa2\\xcb\\x76\\xd5\\x6c\\x7d\\x78\\x3c\\xa7\\x04\\x27\\xdf\\xb8\\x14\\x6d\\x87\\x6e\\x61\\x32\\x7b\\xb7\\xb6\\x16\\x10\\x18\\xb0\\x7d\\x3b\\xf7\\x1d\\xf5\\x63\\xbf\\xb0\\xfd\\xf1\\xae\\x4a\\x5b\\xd3\\xe0\\xdf\\xd2\\xfa\\xaf\\x18\\x5c\\x7d\\x2c\\x35\\xe5\\xf8\\x86\\x91\\xa3\\x8b\\x73\\x3d\\x29\\xb8\\x38\\x91\\x36\\xf8\\xb8\\xf1\\xa9\\xdd\\x38\\x05\\xc2\\x90\\x90\\x55\\x9d\\x32\\x3e\\xf1\\x39\\x7b\\x48\\x02\\x8a\\x61\\xd0\\x03\\x62\\x13\\x67\\xe1\\xbf\\xfb\\x3f\\xf0\\x42\\x73\\x61\\x5e\\x38\\xd3\\xfe\\x5f\\x79\\x91\\xc6\\xfa\\x78\\xe1\\x39\\x9f\\x15\\xd6\\xac\\xda\\x34\\xe5\\xdc\\x31\\xc2\\x8a\\x45\\xf7\\x6f\\xaa\\x1a\\x98\\x39\\xb6\\xb4\\x6c\\xcd\\x1d\\xa3\\xce\\xea\\xc2\\x78\\x5b\\x7a\\x74\\x5b\\xc1\\x82\\x96\\x74\\x48\\xef\\x58\\x5b\\xef\\x5e\\xb0\\x7c\\xdd\\x8a\\xeb\\x9f\\xf7\\xb3\\x82\\x99\\x50\\x18\\x9d\\x09\\x59\\x65\\xaf\\x1a\\xeb\\x96\\x36\\x74\\xac\\x31\\x24\\xad\\x9e\\xd9\\xb8\\xa6\\x3d\\xd5\\xc7\\x8a\\xeb\\x15\\x65\\xb3\\xc6\\x4b\\xcb\\xe7\\x94\\x26\\xd5\\xe6\\x96\\x57\\x9e\\x64\\x05\\x1f\\x66\\x0e\\x4b\\xe3\\x80\\xd6\\xf0\\xcf\\x4b\\xb9\\x62\\x44\\xe2\\x09\\x70\\x5e\\x1e\\x58\\x02\\xd1\\x95\\x02\\x2e\\x15\\x83\\xdd\\x66\\x48\\x37\\xa6\\x93\\x54\\x30\\x19\\x31\\x64\\x4d\\x83\\x01\\xe0\\x27\\x53\\xc1\\x4c\\x53\\x52\\xc1\\xd6\\x4c\\x07\\x01\\x10\\x23\\xfd\\xe9\\xff\\x62\\x24\\x7c\\xed\\x87\\x04\\x60\\x16\\x4d\\x03\\x02\\x78\\x54\\xeb\\x07\\x00\\x78\\x2d\\xc8\\x8f\\x09\\x40\\x68\\x1f\\xc4\\x3a\\x7b\\x3f\\xcd\\x5b\\x49\\x42\\x76\\xa2\\x19\\xfb\\x0a\\x03\\x0e\\x0a\\xe0\\x73\\x02\\xe9\\xc8\\x61\\x36\\xe0\\x08\\x4d\\xd6\\xab\\x55\\x16\\xb3\\xde\\x9e\\x6c\\x8f\\x8f\\x53\\x25\\xa9\\x93\\x6c\\xc6\\x20\\x41\\x75\\x81\\x52\\xd3\\x40\\x4f\\xe2\\x69\\x2c\\x4b\\x2d\\x5d\\x89\\xec\\xe0\\xb4\\x42\\xd3\\xa2\\xbb\\x25\\x47\\x2f\\xc0\\x6f\\x05\\x7d\\x76\\x8b\\x2b\\xab\\x29\\x5b\\x2f\\x13\\xf3\\x64\\xfa\\x9c\\x96\\x0b\\xd4\\x9b\\x86\\x1e\\x4b\\x79\\xaf\\xdb\\xdd\\x5b\\x6e\\xf1\\xf6\\x99\\x4a\\xbb\\xdd\\x38\\xd2\\xd9\\x84\\x00\\x85\\x21\\xc4\\xb3\\xfc\\xb3\\x04\\x65\\xff\\x01\\xf0\\xd5\\x8c\\x25\\x71\\xc5\\x72\\x04\\x20\\x65\\xa7\\x48\\xae\\x70\\x7f\\xea\\x9a\\xca\\x0f\\x5e\\x19\\xf8\\xbc\\xfb\\x41\\x79\\x8c\\xde\\x42\\xbc\\x02\\xa4\\x52\\x2b\\x56\\x8e\\xd4\\x32\\x72\\x10\\xa4\\xe8\\x07\\xcb\\x94\\x8a\\x3f\\x6a\\xcb\\x3a\\x97\\xd4\\xd8\\x98\\xb8\\xd4\\x02\\xb9\\x78\\xaf\\xf8\\xb6\\xa8\\x86\\x4c\\xd8\\x35\\xbb\\x87\\xf9\\x78\\xc6\\xe6\\x2e\\x07\\x7c\\x53\\xe2\\x39\\x7d\\x07\\x05\\x1c\\x00\\x2a\\x9b\\x57\\x60\\x3e\\x2a\\xd0\\x2c\\x5f\\x9e\\x23\\x01\\xd3\\x03\\x5f\\x2e\\x53\\xa8\\x44\\x5e\\x30\\xb0\\x50\\x4b\\x13\\x1d\\xa7\\x12\\xa9\\x3b\\x87\\x48\\x4d\\x80\\x48\\xdd\\x14\\x22\\x4d\\x26\\x3f\\x91\\x81\\xe0\\xe7\\x00\\xa1\\x7a\\x85\\x62\\x75\\xc6\\x8d\\xeb\\x12\\xb2\\xd4\\x1a\\x2e\\x29\\xcc\\x5c\\x10\\x26\\xe2\\x43\\x85\\xb8\\x19\\x0c\\xb0\\x7f\\xc1\\x02\\x58\\x73\\xc3\\x2d\\xb2\\xf0\\x77\\x19\\x26\\x3f\\xc5\\xcb\\xd2\\x43\\x24\\x8b\\x2a\\xc5\\x56\\xee\\x29\\x1a\\x6b\\x90\\x89\\xca\\xc8\\x02\\x54\\x83\\x8c\\xc9\\x00\\x24\\x33\\xd1\\x5c\\x3a\\x24\\x08\\xbe\\x49\\xcb\\x53\\x61\\x1c\\x08\\x24\\xa0\\x0b\\xb7\\x17\\xd3\\xa8\\x67\\x1b\\x2c\\x06\\x55\\xae\\x52\\x4d\\x46\\x3f\\xfe\\x42\\xb9\\x8c\\xea\\x18\\x17\\x1b\\x28\\xf2\\xea\\xb3\\x77\\x66\\xb3\\x2e\\xde\\x87\\x10\\xee\\x3b\\xd6\\x31\\x57\\xd9\\x9a\\x97\\xd5\\x55\\x2e\\xa8\\x31\\x9a\\xaa\\x17\\x54\\xd6\\x2e\\x6b\\xb1\\x41\\x88\\x7c\\xe0\\xc4\\x17\\xc1\\x49\\x39\\x6d\\x79\\x21\\x71\\x71\\x1a\\x19\\x27\\xc4\\x28\\x15\\x7c\\x82\\x45\\x1b\\xc1\\x2b\\x0f\\x9d\\x10\\x7b\\x32\\xf3\\x13\\xac\\x9a\\x10\\x47\\x5e\\x7e\\x26\\xbc\\xb7\\xf4\\xe1\\x4b\\xab\\xab\\x2f\\x7d\\x78\\x29\\x7c\\xe7\\x7f\\x25\\xbe\\x79\\x0f\\x53\\x71\\x3a\\xd1\\xdc\\xd3\\xe2\\x61\\x79\\x81\\x39\\xc4\\x30\\x90\\x92\\x57\\x18\\xdd\\xc6\\x95\\x16\\xee\\xfc\\x95\\xa5\\x6e\\x61\\xa5\\xf7\\xe1\\x5d\\x87\\x0e\\xed\\x22\\x3c\\xc8\\x22\\x3c\\xe0\\x9a\\x28\\x0f\\x6a\\xd0\\x92\\x92\\x08\\x35\\x08\\xb2\\x0c\\x00\\x01\\xf3\\x00\\xfc\\xc5\\xca\\xf5\\xd4\\x71\\xcc\\x33\\x0c\\x51\\x00\\xfc\\x6c\\x39\\x87\\x0d\\x71\\x25\\xa6\\x73\\x99\\xa4\\xbb\\x70\\x3b\\x6a\\x09\\x0d\\x70\\xec\\x02\\xeb\\xc5\\x74\\x11\\x8e\\x4d\\x37\\x8e\\x66\\x99\\x5b\\xd7\\x77\\x76\\x6d\\x68\\xb5\\x58\\xf0\\xdf\\x4e\\xfc\\x97\\x5d\\xf8\\x73\\x3c\\xf3\\xee\\x0c\\x8e\\xcf\\x4a\\xb5\\x67\\xc5\\x07\\x07\\x27\\xb8\\xed\\x76\\x57\\x7c\\x30\\x63\\x59\\xf1\\x32\\x59\\x60\\x2f\\xaf\\x50\\xfa\\x5f\\x5c\\x79\\x92\\xa9\\xbe\\x20\\xdf\\xbc\\x6f\\x35\\xef\\x5d\\x58\\x5c\\xbc\\x70\\x6f\\xb3\\xb2\\x69\\xef\\x58\\x71\\xf1\\xd8\\x5e\\x8a\\x1b\\xc9\\xa1\\x96\\xb3\\xab\\xf1\\x79\\xda\\x46\\x31\\x40\\x12\\x90\\x0b\\xdd\\x2d\\x61\\x32\\xa5\\x21\\xe0\\x79\\x18\\x41\\x48\\x60\\x05\\x34\\x0f\\xb1\\x32\\x19\\x3b\\x82\\x18\\x8e\\x63\\x46\\xa7\\x44\\xa7\\xc8\\x64\\x5c\\x2f\\xe6\\x4d\\x22\\xe7\\x3f\\x36\\xa5\\x4f\\xbd\\x8a\\xa4\\x67\\xca\\x04\\x56\\xb6\\x18\\x5f\\xc7\\x2c\\xbb\\xf0\\x65\\xf4\\x39\\x30\\xf1\\x8b\\x2f\\x20\\x96\\x68\\x82\\xbd\\x32\\x25\\x1a\\xd5\\x15\\x83\\x7f\\xe1\\x17\\x20\\xb0\\x30\\xbf\\x79\\xfe\\x79\\xe6\\xf9\\xe7\\xe1\\xbe\\xff\\x0d\\xc1\\xc2\\xcd\\x81\\x17\\x7e\\x6c\\x86\\x37\\xc0\\xf4\\x4b\\x80\\x58\\x28\\x1f\\xe7\\x9d\\x5d\\xc4\\xcd\\xe5\\x7e\\x1b\\xe0\\xe3\\xc7\\x34\\x9d\\x82\\xf4\\x8f\\xe3\\x08\\x47\\x64\\xac\\x8c\\xf0\\x51\\x10\\x08\\x1f\\x79\\x9e\\x19\\x25\\xbd\\x22\\x89\\xec\\x74\\xa2\\xf1\\xbd\\xb8\\xa7\\x89\\x3c\\xe1\\xa3\\xea\\x42\\x57\\xc9\\x58\\x01\\x73\\x85\\x67\\x96\\x5d\\xec\\x2a\\x35\\x2d\\x61\\x00\\x1c\\x4c\\xfc\\xe2\\x8b\\xc8\\x53\\x02\\xed\\xd9\\xf1\\xff\\x79\\x41\\xf7\\x85\\x98\\xcf\\xe2\\xdf\\x00\\x6c\\xd0\\xcf\\x00\\x42\\x32\\x8f\\xde\\x79\\x27\\x77\\xfc\\xb8\\xf7\\xd7\\x81\\xed\\xe3\\xe2\\x98\\x90\\x67\\xe0\\x95\\x9f\\x6e\\x85\\xf7\\xde\\x0b\\x6c\\x1f\\x17\\x07\\x85\\x64\\x51\\x3a\\xc6\\x5d\\x64\\x65\\x29\\x28\\x0b\\xd5\\xa1\\x0e\\x8c\\x3b\\x3f\\x5a\\x0c\\xe1\\x21\\x1d\\x04\\xfd\\x92\\x22\\x55\\x94\\x42\\x30\\xd4\\xa2\\xf0\\x90\\xe0\\x90\\xf0\\xe0\\x71\\x02\\x4f\\xca\\x09\\x3c\\x2e\\xb9\\x80\\x42\\xc2\\x43\\x43\\x86\\x23\\x20\\x0c\\x05\\xa3\\xb0\\xe0\\xe1\\x20\\xe0\\x38\\x49\\x86\\xab\\x28\\x6e\\x36\\xc9\\xfd\\xa0\\xbb\\xa4\\xdb\\xdd\\xd2\\xec\\xae\\x73\\xd7\\x56\\x55\\x14\\xe6\\xe7\\x78\\x94\\x86\\x18\\x93\\x3c\\xd6\\x68\\x8b\\x8a\\x24\\xc7\\xac\\xa9\\x10\\xc2\\x53\\x21\\x70\\x49\\xe1\\xe4\\x69\\x76\\x2f\\x2c\\x2f\\x63\\x94\\x7e\\x1c\\x36\\xa5\\x81\\xd4\\x62\\x20\\xc2\\x81\\x40\\xb5\\xb8\\x5d\\xd4\\xe3\\xcc\\x36\\xf5\\x1f\\x5d\\x51\\x56\\xb0\\x60\\x7f\\x47\\xe5\\x52\\xab\\x75\\xbc\\xa2\\xe3\\xca\\x05\\xf9\\x65\\xcb\\x8f\\x0e\\xd4\\xcc\\x2c\\xf6\\xa4\\x38\\x20\\xcc\\x91\\x92\\x55\\xd2\\x51\\xf5\\xaa\\xba\\xee\\x92\\x79\\x9d\\xc6\\xb4\\xdc\\xcb\\x2e\\x59\\x94\\x39\\x7b\\x64\\x69\\x85\\x18\\xa7\\x37\\x5c\\xa5\\x36\\x3b\\x71\\x74\\x6e\\xf6\\xc2\\x1b\\xe6\\x7b\\xe7\\x0e\\x5c\\x31\\xdb\\x99\\x83\\x7f\\x9c\\xb3\\xaf\\x18\\x60\\xae\\x9d\\x7f\\xc3\\xc2\\xec\\x53\\x03\\xa3\\xde\\xb9\\xed\\xf5\\x8d\\x9d\\xf0\\x94\\x58\\xda\\xd9\\x58\\xdf\\xce\\x5c\\x3b\\x3a\\x00\\x7f\\xdb\\x66\\x72\\x98\\x33\\x3c\\xd1\\xa6\\xf1\\xf9\\x66\\x87\\x49\\xdc\\x95\\x52\\x6d\\x1e\\x18\\x49\\x28\\xf0\\x38\\xc2\\xa5\\x78\\x45\\xac\\x4f\\x1c\\xe6\\xdf\\x47\\x05\\x68\\x06\\x9a\\x8d\\xee\\x2b\\x89\\xa9\\x86\\xe0\\x90\\xd9\\x01\\xbe\\xd6\\x42\\x38\\xb1\\x65\\x59\\xf1\\xb4\\x2b\\x40\\xe1\\xc1\\x28\\x38\\x1c\\x05\\xd8\\x4b\\xd9\\x1a\\x1e\\x16\\x4c\\x0e\\x02\\xa1\\x3d\\x28\\x34\\x34\\xa1\\x7e\\x92\\xc1\\xba\\x73\\x19\\x1c\\x57\\x92\\x77\\xfe\\xe5\\x64\\x74\\x82\\xf1\\xe8\\x04\\x6e\\x73\\xd1\\x8b\\xbb\\x4b\\xb4\\x85\\x85\\xb3\\xba\\x0b\\x67\\x14\\xb6\\x37\\x35\\x54\\x96\\x97\\x14\\x91\\x6c\\xb4\\x5f\\x30\\x40\\x81\\x9d\\x8b\\xcc\\x50\\x17\\x11\\x10\\x01\\xfc\\xe7\\xe9\\x83\\xc4\\x9d\\x33\\x48\\xe6\\xda\\xed\\xa3\\x85\\xd9\\x7d\\xab\\x4b\\x6a\\x26\\x92\\x93\\x97\\xd6\\x94\\xae\\xee\\xcb\\x2e\\x9c\\xb7\\xad\\x2e\\x31\\x35\\x21\\xdc\\x92\\x1a\\x6b\\x52\\x85\\x7e\\x11\\xae\\x35\\x6b\\xed\\x49\\xe1\\x09\\xf6\\xc4\\x57\\x1c\\xf5\\x6b\\x86\\xdb\\x4c\\xe9\\x79\\x3b\\x36\\x2c\\x49\\x2e\\x2e\\x2e\\xa9\\x6e\\x4e\\x13\\x4b\\x7d\\xa3\\xc5\\x35\\x65\\x0c\\x1e\\x18\\x12\\x37\\x77\\x6f\\xe9\\xb4\\x37\\xd5\\xd6\\x36\\xd9\\x3b\\xb7\\x74\\xc3\\xc6\\xa1\\x03\\x83\\x19\\xcf\\x44\\xa7\\x36\\xe6\\x89\\xd7\\xb4\\x36\\x86\\x26\\x7a\\xec\\xdf\\x7c\\x63\\xf7\\x24\\x86\\x36\\xb6\\xc2\\x68\\x5e\\x63\\x6a\\x34\\xbc\\x3d\\x39\\x66\\xd1\\xda\\x24\\x6d\\xb4\\xb8\\x75\\xca\\xa8\\x31\\xa8\\x11\\x8f\\xd9\\xdd\\x78\\xff\\x92\\xa1\\x54\\xb4\\xfc\\x01\\x39\\x70\\x32\\xf0\\x41\\xdc\\x9a\\x10\\x03\\x02\\x30\\xf3\\x90\\xbf\\x0a\\x60\\x68\\x48\\x10\\x4b\\x0d\\x1a\\x40\\x96\\x3a\\x0f\\x3e\\x71\\x6c\\x96\\xda\\x09\\xe3\\x3f\\xdb\\x90\\x14\\x78\\x0c\\x0a\\x0a\\x4a\\x0d\\x4a\\xb5\\x59\\x88\\xf1\\xd7\\x4c\\x91\\xfd\\x09\\xcb\\x49\\x52\\x0d\\x4e\\x86\\xe2\\xff\\xb7\\x91\\x1a\\x64\\xcc\\xe7\\xe2\\xfb\\xd8\\x79\\xcb\\xde\\x7a\\x71\\x6b\\xb5\\x4c\\x36\\xbe\\x71\\xe3\\x67\\xff\\xd3\\x62\\x8d\\x10\\x23\\xd9\\xac\\xf9\\x93\\xb4\\xef\\xab\\xcf\\xe9\\xbb\\xc5\\xd7\\x77\\x16\\x00\\x7c\\xa1\\xbf\\x52\\xa7\\x34\\xe7\\xf7\\xde\\xea\\xef\\xfd\\x85\\x9b\\xfe\\xf2\\xfe\\xff\\x02\\x43\\x38\\xb0\\xfe\\xfe\\xef\\xbc\\xa8\\x45\\x9c\\x3f\\x89\\xbb\\x2f\\xfe\\xf8\\xbf\\xcd\\xe2\\x08\\xd0\\x7a\\xf1\\x00\\x37\\x13\\xeb\\x82\\xc9\\xbe\\x6c\\x0e\\x0e\\xea\\xa4\\xcc\\xa9\\x40\\x71\\xc4\\x80\\x95\\x97\\x6d\\xb0\\x25\\x2b\\xec\\x34\\xba\\x03\\x68\\x98\\xcb\\x94\\x3c\\x74\\xf3\\x64\\xe4\\xa8\\x8b\\x1d\\x12\\x3f\\x5b\\x70\\xe7\\xea\\x92\\xea\\x2d\\x8f\\x4c\\x2c\\xbb\\xef\\x92\\x52\\xf1\\xb3\\xfe\\x31\\x1c\\xf5\\x15\\x6f\\xac\\x9e\\x5f\\x79\\xbf\\x78\\x00\\x66\\x47\\xcd\\xbd\\xee\\x95\\x55\\x90\\xbc\\xf5\\x83\\xa3\\xb3\\xca\\x36\\x3d\\xbe\\x76\\xf7\\x8e\\x9c\\xb9\\x97\\xb7\\x8a\\xef\\xb6\\xee\\x9c\\x9b\\x4b\\x69\\x3a\\x29\\xee\\xe7\\x66\\x71\\x4d\\xc8\\x88\\xda\\x03\\x75\\x21\\xc9\\xf6\\x96\\x10\\xa0\\x2c\\xe0\\xdf\\xf1\\x57\\x70\\xd0\\x52\\xdc\\xe5\\x8b\\x50\\xae\\x63\\x49\\x3e\\xb7\\xf1\\x1c\\xda\\xa7\\x03\\xb9\\x28\\x25\\xe2\\xdb\\xc5\\x2f\\x86\\x0e\\x0e\\xbb\\x4a\\xd6\\x3f\\xb2\\x76\\xf0\\xe6\\xe5\\xa5\\xe2\\x4f\\x9a\\xb4\\xf2\\x94\\xa2\\x76\\x97\\x4a\\xe9\\x9a\\x59\\x7c\\x42\\xdc\\x0f\\xc3\\x72\\x5c\\xad\\x7c\\x24\\xe0\\x23\\x3c\\xb7\\x52\\x39\\xa5\\x7f\\x21\\x7e\\xfa\\x7e\\xbe\\x48\\x8a\\xf1\\xc2\\x56\\xb6\\x28\\x82\\xe3\\x1f\\x1c\\x24\\x23\\x81\\xad\\x91\\x12\\x2c\\x18\\x82\\x09\\x29\\x60\\x26\\x56\\x41\\xc2\\x88\\x80\\x97\\x99\\x58\\xbc\\x4b\\x64\\xf3\\xf4\\xd7\\xc5\\xe2\\xf7\\x4c\\x37\\xe8\\x6b\\xc4\\xf7\\x1e\\xb8\\xf7\\x23\\xf1\\x83\\x6a\\x30\\xbd\\x2c\\xbe\\x5f\\x0b\\x86\\x47\\xee\\x3a\\x05\\xa6\\x06\\xf1\\x43\\x78\\xe6\\xae\\x4d\\x77\\x8a\\xcf\\xc0\\xde\\xe3\\x9b\\x8e\\xc3\\xbc\\xe3\\x97\\x1e\\x87\\x2a\\x71\\xe1\\xf1\\x8d\\x77\\x52\\xac\\x47\\x0b\\x77\\xd3\\xd9\\x9f\\x78\\x2f\\x92\\xa1\\xdd\\xd2\\x54\\xd6\\x50\\x2c\\xcc\\x11\\x0a\\xf4\\x38\\xca\\x81\\x2f\\x43\\x47\\xc5\\xfa\\x35\\x00\\x75\\xe0\\x7b\\xb4\\xec\\xbc\\xaf\\xf5\\x14\\xe8\\x9a\\x01\\x66\\x62\\xfa\\xb7\\x25\\x71\\x93\\x5f\\x20\\xf2\\xc5\\x4c\\x9a\\xed\\x84\\xdb\\x00\\x8b\\x23\\x3d\\xa5\\x2c\\x6f\\x2c\\x56\\xe4\\x24\\xc6\\x8c\\x40\\xd7\\x5a\\xb2\\xf5\\x16\\xb5\\xd2\\xfb\\xf6\\xaf\\x81\\x49\\x86\\x93\\x7c\\xd2\\x06\\xf8\\xe7\\x18\\xbc\\x4b\\xf1\\x33\\x4f\\xf3\\xea\\xb3\\x3f\\x09\\x4a\\x29\\xc6\\xc8\\x9f\\xaf\\xc5\\x01\\x05\\x83\\x21\\xfb\\x2b\\x71\\x07\\xab\\x30\\xb6\\x53\\x58\\x68\\x90\\x80\\xd4\\xa0\\x16\\x24\\x13\\x01\\x87\\x0f\\x43\\x32\\x99\\x81\\xa6\\x11\\x52\\xaf\\xa8\\x37\\x25\\xa3\\xb3\\xa5\\xa1\\xae\\xce\\xba\\x7a\\x0d\\x03\\x3b\\xf2\\xd3\\xed\\x43\\xcb\\x77\\xb4\\xa4\\x33\\xfc\\xf5\\x54\\xf0\\xcd\\x5b\\x6a\\x8a\\xf6\\x64\\xe0\\x7d\\x6b\\x1b\\xe1\\xd3\\x77\\x7c\\x8c\\xf8\\x0f\\x01\\x2b\\x8b\\xbe\\x5a\\x82\\x88\\xa3\\x50\\x3a\\xf3\\xe5\\x80\\xe3\\x5c\\xc1\\xa2\\x96\\xa9\\x65\\xde\\xef\\xe1\\x49\\xc8\\x6b\\xe3\\x3f\\x5a\\xcb\\xaf\\x5d\\xd6\\x81\\xaf\\xf9\\x23\\xbe\\xe6\\x55\\x7a\\x8d\\xbc\\x24\\x82\\xc7\\x44\\x4a\\x97\\xc4\\x48\\x97\\x90\\x5a\\xeb\\xa2\\xa9\\x35\\x1f\\x9e\\x00\\x3e\\xa6\\x63\\x19\\xbe\\x08\\xa1\\xa0\\x9f\\x36\\x8a\\xcf\\x33\\x5a\\xfe\\x5e\\x1a\\xdb\\x5d\\x8a\\x3a\\xd1\\x22\\xb4\\x05\\x5d\\x83\\xee\\x85\\x42\\x29\\xd5\\x72\\x24\\x89\\xe4\\xde\\x72\\x0c\\x70\\xe3\\x18\\x0f\\x48\\x2f\\xe3\\x79\\x21\\x48\\xe0\\x83\\xc6\\xcd\\x71\\xb1\\xc9\\xa1\\x7c\\x70\\x08\\xb6\\x8a\\x84\\x8d\\x1b\\x63\\x18\\x1c\\xcd\\xb8\\x4c\\x01\\x9c\\x0a\\x88\\x0f\\x7d\\x58\\x03\\x41\\x5a\\xc0\\xb3\\x2a\\x64\\x38\\x1e\\xc2\\x12\\x21\\x22\\x3c\\x2c\\x62\\x18\\x45\\x21\\x3c\\xdb\\xa2\\x03\\xa5\\xe1\\x55\\xf5\\x16\\x5d\\x82\\x21\\x92\\x0f\\x0f\\x57\\x87\\xe3\\xe1\\x9a\\xff\\x4b\\x1e\\xe4\\xbb\\x22\\x22\\x2a\\x22\\x3c\\xea\\xff\\xf8\\x54\\x92\\xf7\\x39\\xfb\\xf0\\xe1\\xad\\x5b\\x17\\x2f\\xee\\xea\\x2a\\x2b\\x4b\\x4d\\x55\\xa9\\x10\\x3a\\x7c\\xef\\xe1\\x7b\\x8f\\xdf\\x71\\xcb\\xb1\\xa3\\x47\\xb6\\x5e\\xb3\\xf5\\x9a\\xab\\x0e\\xec\\xdb\\xbb\\x73\\xc7\\xe2\\x2d\\x8b\\xb7\\x6c\\x5c\\xbf\\x66\\xf5\\xf2\\x89\\xae\\x45\\x5d\\x8b\\xe6\\x8f\\x0e\\x0f\\xf5\\xf7\\x96\\x75\\x96\\x75\\xb6\\xb7\\x36\\x36\\xd4\\x54\\xa5\\x96\\xa6\\x96\\x16\\xe6\\x67\\xe3\\xca\\x23\\x2a\\xbb\\xca\\x6e\\x31\\xe9\\x93\\xe2\\xb5\\x3e\\x00\\x62\\x2b\\x99\\x4e\\xfe\\x15\\x6c\\xf0\\xaf\\xe0\\xe9\\x9f\\xc4\\x4c\\x6f\\xf3\\x7f\\xff\\xe4\\x7f\\xdc\\xd9\\x3b\\x96\\xe0\\x69\\x72\\x3a\\x9b\\xb2\\x13\\xc6\\x43\\xd5\\xe6\\x38\\x12\\x28\\x0f\\xef\\xe3\\x8f\\x32\\x9c\\xcd\\xd9\\x09\\x4b\\x43\\x34\\xe6\\x38\\x2d\\xfe\\xa8\\x36\\x21\\x1b\\x7f\\x42\\x1a\\xf9\\x3e\\x09\\x15\\x5f\\xa1\\x8d\\xa6\\x7e\\xe4\\x6d\\x39\\xe7\\x56\\xf4\\xa3\\x46\\x7c\\xe1\\xb9\\x77\\x17\\xdf\\x9f\\x76\\x2f\\x37\\xfd\\x64\\xea\\xf3\\xb8\\xff\\xda\\x2a\\x33\\xe3\\x49\\xa5\\x6f\\x85\\x31\\x5e\\x2e\\x8f\\x37\\x2a\\xc4\\x2f\\xa7\\x7d\\x12\\x7c\\xfe\\x27\\xde\\x1f\\xa7\\xb5\\x39\\x75\\xfe\\x27\\xbc\\xf6\\xff\\x72\\x1f\\xbc\\x1e\\x7e\\x7c\\x59\\x1c\\x86\\x60\\x9c\\xb7\\xc1\\xa1\\x60\\x14\\x41\\x90\\x5d\\x51\\x02\\x4a\\x46\\x16\\xb4\\xa8\\x44\\xa7\\x4f\\x52\\xb1\\x2c\\x63\\x49\\x4e\\xd0\\xa8\\xb1\\xe0\\x8c\\xc4\\xf3\\x2b\\x24\\x1c\\x58\\xb3\\x29\\x3e\\x8e\\x43\\xe0\\x00\\x06\\x40\\xf9\\xbf\\xaf\\x83\\xa4\\xe6\\xc1\\x07\\xe1\\x48\\xf2\\x38\\x01\\x26\\x77\\x00\\x25\\x62\\xf0\\x77\\xc0\\xb0\\x83\\x53\\x3f\\xc7\\x2e\\x32\\x9e\\x14\\x09\\x0f\\xe6\\xb1\\x10\\xc6\\x4f\\xe5\\xa2\\x05\\xbc\\x5a\\x79\\x35\\x96\\xb8\\xac\\x05\\x0b\\x5b\\xc8\\xe6\\x95\\x26\\x2c\\x71\\xdd\\x3c\\x64\\x9b\\xf0\\xcd\\x65\\xbc\\xc5\\xc4\\x5a\\x70\\x1c\\x38\\xa8\\x63\\x64\\xac\\xf7\\x77\\xa1\\x6b\\x67\\x57\\xe5\\x85\\xe1\\x7f\\x98\\xc4\\x70\\x68\\x10\\x6f\\x3b\\xbd\\x3c\\x5c\\xbc\\x0f\\x66\\xb1\\xd7\\x31\\x50\\x52\\x21\\xbe\\x73\\xe6\\xbf\\x8c\\xf8\\x74\\x25\\x98\\xed\\xf2\\x83\\xa5\\xbf\\x61\\x67\\xcb\\xaf\\x2a\\x7b\\xa1\\x20\\x42\\xbc\\x1b\\x06\\xb9\\x9b\\x22\\xa0\\x4d\\x3c\\x2a\\xca\\xc3\\x2e\\x19\\xaa\\xce\\x27\\xff\\xc0\\x3d\\x51\\xd7\\x54\\xbc\\x78\\x66\\xaf\\xfc\\x9a\\xca\\x17\\x99\\x53\\x0c\\x54\\x55\\x8a\\x7f\\x3a\\xf3\\x09\\x23\\x3e\\x56\\x0d\\x76\\x29\\xdf\\xe7\\x2a\\x84\\xb8\\xbd\\x04\\x5b\\x93\\xc4\\xe8\\x11\\x8f\\x04\\xcb\\x30\\x2c\\x07\\x80\\x28\\xa0\\x3a\\x0f\\x0c\\x62\\x99\\x40\\x62\\x82\\x3f\\xa9\\x8b\\xe3\\x74\\x09\\xca\\x18\\x2e\\x9a\\xc3\\x81\\xc2\\x02\\xd9\\x4e\\x64\\x90\\x4d\\x83\\x0a\\x02\\xa9\\xd6\\x93\\x18\\x77\\x5c\\xdf\\x66\\x71\\xc6\\x26\\x51\\xc4\\x31\\x7a\\xff\\x59\\xf5\\xf4\\xf6\\xda\\xda\\xed\\x4f\\xaf\\x7a\\xfb\\xed\\x82\\xae\\xfc\\x84\\x84\\xfc\\xae\\x82\\xb7\\xe1\\x40\\x2e\\x53\\x84\\x3d\\x7a\\xde\\x2f\\xf8\\x13\\x95\\xeb\\xee\\x9a\\x3f\\x74\\xeb\\x9a\\x8a\\x53\\xc6\\xa2\\xd6\\x54\\x57\\x57\\x99\\x19\\xb1\\x52\\x9d\\x2a\\xae\\x89\\xe2\\x9d\\xda\\xd1\\xbc\\x12\\xa5\\x1c\\x38\\x86\\xe4\\xcc\\x73\\x3c\\x17\\x06\\x88\\x27\\x6c\\xe7\\x7c\\xe6\\x93\\x38\\x9a\\x2a\\xc5\\xfa\\x63\\x0b\\xfd\\x46\\x24\\x00\\x2d\\xad\\x55\\x75\\x8e\\x2d\\x58\\x37\\xad\\x85\\xbf\\x56\\x95\\x95\\x04\\xab\\xf2\\xb8\\x47\\xa6\\x29\\xf5\\xaa\\xd4\\x17\\xab\\x57\\x55\\xb6\\x58\\x1c\\x1e\\x83\\x07\\xb3\\x17\\x1e\\x19\\xe9\\xa4\\x55\\xab\\x20\\x24\\x73\\x47\\x0f\\xa9\\xf5\\x80\\xcb\\x56\\xb9\\xdb\\xf3\\x6b\\xfb\\xb4\\xda\\x3e\\x52\\xb6\\x4a\\x13\\xd4\\x0a\\xcf\\xb5\\x76\\xd1\\xd2\\x55\\x1e\\x91\\xe1\\xff\\xba\\xa0\\xa0\\x2c\\x50\\xb9\\x2a\\x4b\\x2c\\x70\\xd1\\xca\\x55\\x74\\x3f\\x3f\\x84\\x10\\x37\\x2a\\xd3\\xa1\\x60\\xa9\\x4a\\x37\\x43\\x4b\\xd4\\xf8\\xe6\\x5f\\x20\\x70\\x33\\x83\\x1a\\xe8\\x0c\\x4a\\x7f\\x84\\xf2\\xa8\\x9e\\xc0\\xce\\x32\\x0f\\x83\\x9a\\xfb\\x1d\\x10\\x5c\\x52\\x58\\x42\\xeb\\xda\\xd0\\x5c\\xbd\\x15\\x17\\xb8\\x97\\xe6\\xe2\\xf7\\x1a\\xb0\\x90\\x34\\x07\\xe6\\x01\\x50\\xb2\\xdd\\x40\\xe2\\x9d\\x21\\x9f\\x62\\xe0\\x8a\\xbf\\xe6\\xee\\xe1\\x4f\\xf8\\xea\\xb8\\x01\\xe2\\x78\\xe0\\x86\\x29\\xb6\\x15\\x33\\x80\\x02\\x99\\xce\\xfe\\xb8\\x5f\\xab\\x5c\\xa3\\xa7\\x0e\\xcf\\xa9\\x61\\x0c\\x6e\\xbc\\x85\\xba\\x3d\\xd8\\x7a\\xee\\x47\\xca\\xbd\\xeb\\xf2\\x0f\\x8e\\x74\\xe4\\x6e\\x7a\\xf5\\x40\\x4e\\x6b\\xae\\x51\\x21\\x83\\xdb\\x6e\\xb8\\x4b\\x02\\xcf\\x15\\x57\\xd7\\x1d\\x78\\xf7\\xca\\x25\\x6f\\x1e\\x1b\\xfe\\x53\\x92\\xbb\\xa6\\xb9\\xdd\\xfc\\xd8\\x23\\xde\\xa3\\xf8\\xe1\\xa4\\x4f\\xe2\\xc7\\xdc\\x16\\x12\\x13\\x45\\x74\\xc8\\x88\\x70\\x86\\xad\\x0e\\xd4\\xc9\\xf3\\x41\\x23\\xe0\\xbe\\xd1\\x60\\x21\\x5c\\x62\\x4f\\x83\\x77\\x1e\\xac\\x87\\xa9\\x88\\xd2\\x4b\\xc9\\x50\\xf9\\x81\\xa9\\xd2\\x18\\x1f\\x19\\x39\\xde\\x89\\xe3\\x6b\\x5f\\x3d\\xd8\\x0e\\x29\\x3d\\x7b\\x87\\xc7\\x47\\xe7\\x59\\x6a\\x47\\x4b\\x8e\\x4b\\x69\\x1e\\xcf\\x14\\xae\\x79\\x68\\x4d\\xfe\\x8e\\x4d\\x8b\\x74\\x4f\\xa4\\x6c\\x9d\\x53\\x32\\x54\\xa2\\x17\\x1b\\xf0\\x93\\x01\\xe1\\x0d\\x9d\\x57\\x63\\x72\\x14\\x68\\x8c\\x58\\x5b\\x09\\x42\\x43\\x34\\xfe\\xa7\\x56\\xda\\x62\\xf5\\x48\\x60\\x81\\xf8\\xf4\\x06\\x83\\x83\\x18\\x9e\\xa7\\x39\\x9f\\x14\\xb2\\x00\\x87\\xfc\\xd2\\x40\\x3f\\x32\\x1f\\x03\\x6d\\x90\\x0c\\x31\\x48\\xc6\\xf8\\xda\\xfa\\x5b\\x50\\xfc\\x4d\\x7c\\x7f\\x85\\x5c\\xfa\\x89\\x26\\x21\\x21\\xc1\\x8c\\x9e\\x35\\x60\\xd5\\xdd\\xe7\\x5e\\xa7\\x7e\\x53\\x8c\\xb4\\xfd\\x5b\\x18\\x14\\xaf\\xf5\\x26\\xdc\\xd6\\x2a\\xfe\\x0d\\xb4\\xad\\xb7\\xc9\\xff\\x81\\x7d\\x64\\x4b\\xcf\\x7c\\xc0\\xf4\\x7c\\xfa\\xa9\\xf7\\x16\\xfc\\xfa\\x0e\\x00\\xf1\\x2c\\xd3\\x49\\x30\\x0c\\x11\\xe2\\x9e\\x22\\xb9\\x39\\xa4\\xf6\\x92\\x44\\x77\\x10\\x9c\\x4f\\x48\\x48\\x30\\x26\\x24\\x40\\x6a\\x80\\x0a\\x89\\x0c\\xe2\\xbb\\x3d\\x8f\\x0c\\x7c\\xea\\xc4\\x64\\x1c\\x17\\xff\\x0c\\x45\\xe2\\x75\\x27\\x33\\xaf\\xa9\\x24\\x79\\x09\\x95\\xd7\\x38\\x70\\x44\\x91\\xd7\\xeb\\x7d\\x09\\xae\\xba\\xeb\\x2e\\x29\\x31\\xe1\\xe9\\xa7\\xe1\\x88\\xa4\\xb3\\x46\\x62\\x3a\\x5e\\x27\\xf9\\x7c\\x24\\x76\\x27\\xec\\xdc\\xcc\\x2c\\x12\\xaa\\x2c\\xa5\\x9f\\x09\\x81\\x04\\x88\\x29\\xde\\x73\\x1a\\x9c\\x8c\\xfb\\x4d\\x73\\x20\\x0e\\xe5\\x89\\x9f\\x8b\\x2f\\x31\\xcd\\xee\\x3f\\x40\\x25\\x4e\\xc9\\x6a\\x15\\x9f\\x60\\x9a\\xbd\\x27\\xb9\\xa7\\xbe\\xf6\\x3e\\xc1\\x94\\x7b\\xab\\xbc\\x21\\x08\\x50\\x1c\\x7e\\xd6\\x4b\\x5c\\xde\\xcf\\x3e\\x4b\\xf3\\x0b\\x9e\\x75\\x6f\\x05\\x76\\x80\\xfc\\x8e\\x69\\xa9\\xba\\x06\\x86\\xc4\\x7f\\x40\\x86\\xb8\\x1b\\x2e\\x17\\x57\\xb1\\x35\\xff\\x21\\x9e\\x5e\\x11\\x79\\x7f\\x83\\x00\\x15\\xe3\\x67\\xdd\\x45\\xea\\x75\\xd1\\x7c\\x0b\\x84\\x88\\x96\\x47\\x9e\\x02\\xdd\\x12\\x44\\xc1\\x64\\x6a\\x7e\\xe0\\x29\\xbe\\x32\\x44\\xd2\\x7f\\xd0\\x00\\x32\\xa6\\x5b\\xbc\\x5f\\xfc\\x2f\\xce\\x75\\xfb\\x2f\\x84\\xb3\\xfd\\x4c\\xdb\\xd7\\xa7\\x4b\\x25\\xd0\\x01\\x1f\\xbe\\x2d\\x5e\\x90\\x17\\xb9\\xbf\\xe6\\x7f\\xdf\\x7f\\x39\\x84\\x30\\x29\\xe2\\x37\\xe2\\xc7\\xe2\\x77\\xe2\\xc7\\x90\\xc8\\xec\\x82\\x7b\\xbf\\x3e\\xf3\\x10\\xad\\x5f\\x47\\xe6\\x75\\xa6\\x78\\x8c\\xbb\\x9b\\xfa\\x7c\\xd3\\x4a\\xc8\\x16\\x41\\x13\\xd3\\xfc\\xf5\\x0c\\x78\\xde\\x87\\xbb\\x21\\x00\\x8d\\x87\\x27\\xd3\\x21\\x5e\\xae\\x4d\\x92\\x82\\x6d\\x69\\xc4\\x20\\x87\\x71\\xb7\\x78\\x52\\x6e\\x95\\x46\\x80\\x50\\x06\\x32\\xff\\x52\\xae\\xb8\\x69\\x4e\\x5a\\x8c\\xbd\\x7c\\xf6\\x86\\x16\\xc6\\xe4\\xd4\\xc9\\x65\\xc0\\x04\\xcb\\x13\\xd3\\x92\\x62\\xc4\\x6f\\x6e\\x11\\xbf\\x61\\x9e\\x60\\xcb\\x60\\xde\\x6d\\x6f\\x2e\\x6c\\x38\\xb0\\x65\\x49\\x6b\\x3a\\x9c\\x02\\x7d\\x76\\x55\\x63\\xb3\\x21\\xae\\xbe\\xa5\\xa9\\xc8\\x02\\xde\\x13\\xdc\\x43\\xa7\\x6b\\xfd\\x38\\xcb\\x33\\xc4\\x2f\\x29\\xfe\\x4f\\x02\\x89\\x7e\\x50\\xd2\\x7a\\x06\\xa1\\x21\\x04\\x25\\x8c\\x1c\\x0d\\x10\\x8c\\x23\\x86\\xf1\\x49\\x00\\x5f\\x7c\\x63\\x42\\x3c\\x15\\x02\\x2a\\x2c\\x03\\x94\\xd4\\xd9\\xef\\xc3\\x06\\xa3\\x78\\xa2\\x01\\x12\\x7f\\x1a\\x39\\xba\\xa4\\xc0\\xda\\xb2\\xb2\\x61\\x45\\x8a\\x47\\x17\\x16\\x9a\\x94\\x6d\\x17\\xbf\\xd9\\x27\\x7e\\xcb\\xdc\\xca\\xdc\\xc4\\x36\\x5c\\x7a\\xef\\x68\\xf9\\x55\\x5b\\x86\\xa3\\x9f\\x8f\\xca\\xad\\x69\\xb3\\xd9\\x67\\x54\\x3a\\x38\\xb1\\x85\\xad\\x3d\\xf3\\x90\\x2f\\xe6\\xbe\\x0b\\x9f\\xe9\\xef\\xe1\\x5f\\xa0\\xde\\x8d\\x95\\xf5\\x27\\x52\\x08\\x92\\xbe\\x27\\x83\\x94\\x76\\xa2\\x88\\x6c\\x71\\x93\\xef\\x04\\x8a\\x2d\\x47\\x1a\\xc4\\xca\\xc0\\x8f\\x6e\\x92\\x40\\xd9\\x19\\x88\\x56\\xc3\\x48\\x27\\x53\\xbf\\x43\\x81\\xaf\\x24\\xfc\\x10\\x00\\x7f\\x8a\\x65\\x6a\\xac\\x0d\\xd7\\xa5\\x95\\x42\\x9d\\xf9\\x0b\\xdb\\x8e\\xc8\\x09\\xd3\\x6c\\x9e\\x3c\\x38\\xcb\\x89\\x5b\\xd3\\x45\\x10\\x80\\x3c\\x81\\x42\\x62\\x4a\\xee\\x9e\\x99\\x87\\x2a\\x3c\\xab\\x2b\\x36\\xbc\\x71\\xb0\\x35\\x67\\xf4\\x8a\\x4e\\x0c\\x46\\x17\\x6e\\xac\\x98\\x53\\x12\\x56\\xdb\\x9c\\x36\\x73\\x75\\x6d\\xf3\\xe6\\x3e\\x57\\x7e\\x76\\x76\\x95\\xd8\\x6b\\x35\\x6b\\xb4\\x21\\xd1\\x5a\\x79\\x42\\xbc\\x5c\\x97\\xa0\\xd3\\xcf\\xbe\\xfd\\xd4\\x56\\x28\\xc3\\x26\\xfd\\x99\\xff\\x48\\x9f\\xb1\\xac\\x5c\\x7c\\x7c\\xe6\\xbe\\xd1\\xbc\\xae\\x4f\\x77\\x40\\xc9\\xbc\\x5f\\x6f\\xa9\\x6f\\xda\\xf3\\xec\\x72\\xf1\\xcd\\x4b\\xfe\\xd2\\x11\\x05\\xaf\\xcf\\xbc\\x32\\x3f\\x7b\\x7b\\x13\\x34\\xd4\\x8f\\x14\\xc6\\x2d\\xdf\\x41\\x79\\x56\\x7e\\xf6\\x73\\xee\\x8f\\x14\\xe7\\xad\\x14\\x95\\x95\\x14\\xbb\\x80\\x15\\x1c\\xc0\\x13\\x1e\\xf1\\xac\\x24\\x49\\x03\\xe1\\xe2\\x3a\\x22\\xcc\\x03\\x3c\\xe0\\xf9\\x00\\x0f\\x52\\x63\\xad\\xb1\\xb8\\xff\\x64\\x92\\xf3\\xe7\\xa1\\x11\\x2b\\x05\\x09\\xca\\x99\\xf4\\x7e\\x12\\xc6\\x79\\x6a\\xef\\x27\\xdd\\x9c\\x7f\\x9c\\x7b\\xbc\\x26\\xff\\xb2\\xba\\xf5\\xaf\\x1d\\x68\\x2d\\x5c\\x7c\\xb8\\xbf\\xa0\\xdc\\x54\\x39\\x5c\\xe4\\xc9\\xca\\xe8\\x5e\\xdf\\xd8\\xb2\\xa5\\x37\\xb3\\xaa\\xa4\\xa6\\x43\\x0c\\xca\\xcc\\xc8\\x74\\x47\\xc4\\x9a\\x34\\x1a\\x93\\x36\\x42\\x13\\xa7\\xd5\\x68\\x67\\x5e\\xf5\\xca\\xca\\xbe\\x91\\xbb\\x37\\xd5\\x7c\\x2e\\xbb\\x74\\xde\\x40\\xe5\\xca\\x0e\\x67\\xc5\\xcd\\x7d\\x07\\xbb\\xaf\\x19\\x2f\\xae\\x5e\\x77\\xfb\\xe0\\xbe\\xb9\\xf7\\x54\\x44\\xc2\\xc6\\x9a\\x75\\x99\\xb6\\xd5\\xb5\\xfb\\x53\\x9b\\x72\\xf5\\x89\\x59\\xd5\\x64\\xcf\\x04\\x9c\\x93\\xff\\x6f\\x92\\x93\\x4a\\xf6\\x2e\\xe2\\x4e\\x68\\x93\\xca\\x14\\x70\\x01\\xe9\\x20\\x9b\\x85\\x64\\xf8\\x24\\x48\\x97\\xb0\\xdf\\x84\\x1d\\x83\\x8d\\x35\\x4a\\xc3\\x64\\xfe\\xcc\\xdf\\x3f\\x67\\xde\\x79\\x0f\\xca\\x40\\x7d\\x28\\x0a\\xdb\\x5d\\xa2\\xb0\\xb8\\xfb\\xfa\\x4c\\x2e\\xf7\\xf0\\xe9\\x2a\\xef\\x71\\x5f\\x8e\\xbe\\x5e\\x7c\\x8a\\xc8\\xf9\\x0b\\x3e\\x47\\xf3\\x8b\\x9f\\xf3\\xde\\xe3\\xcc\\xb6\\xbb\\x40\\x0e\\xba\\x83\\x78\\xa9\\x7a\\x0b\\xd9\\xda\\xaf\\xbf\\xf6\\xde\\xc6\\xd6\\x9d\\xb9\\xdf\\xfb\\x26\\x94\\x4a\\x38\\x84\\x3e\\xec\\x74\\x16\\xe9\\xd0\\xe1\\x92\\x90\\x44\\xe0\\x41\\x06\\x2c\\x4f\\xa0\\x9d\\x42\\xe8\\x46\\x48\\x74\\x0e\\x34\\x0f\\xf1\\xc4\\xcf\\xcb\\xce\\xa1\\x05\\x90\\xa8\\x16\\xa3\\xf1\\x7b\\x21\\x25\\xdd\\x2d\\x59\\x6a\\xc8\\x8c\\xff\\x4c\\x4b\\x6c\\x1e\\x04\\x8e\\x64\\xc7\\x8f\\x5f\\xac\\x31\\x69\\x47\\x9c\\x2f\\x91\\x1c\\xc7\\xe9\\x38\\x1d\\x86\\x1d\\x88\\x26\\x1d\\xd3\\x52\\x1f\\xc0\\x45\\xc0\\x07\\x98\\x6b\\x6f\\xb9\\x05\\xee\\xba\\x30\\x00\\x01\\xe8\\x98\\x6f\\xe0\\xfa\\x9f\\x01\\x21\\xa0\\x3c\\x58\\x4e\\xb4\\x0e\\xcc\\x6b\\x16\\xc5\\xa1\\xab\\x4b\\x42\\x62\\x81\\x07\\x61\\x0a\\x0f\\x92\\x09\\xd5\\x3c\\xcc\\x3b\\x8f\\x15\\x64\\xd1\\x07\\xba\\x26\\xc1\\x5d\\x19\\x02\\xfd\\xfb\\x99\\xa6\\x25\\xc6\\xe9\\x5c\\x98\\xd6\\x8c\\x30\\x21\\x84\\x04\\x1f\\xfb\\x36\\x01\\x13\\xe9\\xff\\x05\\x53\\xa4\\x98\\x47\\x70\\xf7\\x8f\\x5e\\x28\\x4d\\xea\\x16\\x66\\xd3\\x99\\x77\\x2e\\x96\\x2b\\xb5\\x0a\\xf7\\x99\\x40\\x18\\xa8\\x49\\x96\\x11\\x0b\\x2c\\xa8\\x68\\x4c\\xb4\\xdf\\x92\\x42\\x8d\\x01\\x3c\\xc7\\xf8\\xc3\\x8f\\xd5\\x48\\x4d\\x88\\x21\\x79\\x34\\xae\\x40\\xf5\\x57\\x35\\xab\\x67\\xfd\\xfa\\xf4\\x2a\\x30\\xb8\\x46\\x73\\x97\\x3c\\xb8\\xa5\\x06\\x04\\xf1\\x5d\\x8c\\x61\\x5a\\xe7\\xc9\\x19\\xc5\\x5a\\xac\\xf7\\xbd\\xd0\\xf0\\xe2\\x75\\x18\\xc5\\xa0\\x14\\x9e\\xca\\xc3\\xa1\\x24\\x51\\xa1\\xde\\xc5\\x04\\x23\\xeb\\x4f\\x67\\xff\\xce\\xed\\xe6\\x9f\\x23\\x31\\x04\\xa8\\xad\\xa4\\x39\\x12\\x04\\xc2\\x73\\xc1\\x0a\\x1c\\x6b\\x03\\xc4\\x71\\x75\\x48\\x40\\x2c\\x27\\xb0\\x83\\x41\\xe0\\x4b\\xf4\\x4e\\x90\\xe6\\x52\\x00\\xdc\\x1b\\x0b\\x10\\x47\\x2a\\xa0\\x4c\\x67\\x6a\\xb6\\x23\\xdb\\x98\\x9c\\x10\\xaf\\x8c\\x09\\x0b\\x45\\x76\\xb0\\x93\\x98\\x7f\\x9e\\xf8\\x45\\xdd\\x69\\x6c\\xb6\\x4b\\x50\\xa9\\x69\\x10\\x23\\xa7\\xc4\\x81\\xfe\\x89\\xac\\xda\\x57\\x61\\x8f\\xa5\\xf1\\x06\\x34\\xc3\\xfa\\x8b\\x4d\\xcf\\x6f\\xaf\\x86\\xe2\\x39\\xe5\\xf1\\xc1\\x2f\\x83\\x22\\x81\\xaf\\xd9\\x70\\xf7\\xc2\\xee\\x9d\\xa3\\xd5\\xa9\\x0a\\xc6\\xbb\\x0e\\xe2\\x4b\\x16\\x34\\x1b\\x6b\\xca\\xf2\\xd5\\xce\\xc2\\x47\\x0f\\x67\\x54\\xda\\x95\\x80\\x8d\\xd5\\xc6\\x0a\\xf5\\xe0\\xed\\x1f\\x6f\\xc9\\x8d\\xaa\\x58\\x70\\x45\\x6f\\x65\\x9f\\x76\\xd9\\x1f\\x6e\\xec\\xcf\\xea\\x59\\xbf\\xff\\xc6\\xb6\\xe7\\x35\\x15\\x1b\\x87\\xf2\\x21\\x38\\x52\\x11\\xfa\\x43\\x52\\x2a\\xf7\\x4a\\xc1\\xc0\\xaa\\xbc\\xf4\\xf4\\xb9\\xed\\x1e\\x92\\x0b\\x80\\xe3\\x3e\\xf6\\x73\\x4d\\x34\\x53\\x70\\x66\\x49\\x5b\\x04\\x08\\x3c\\x8f\\xfb\\x6c\\xc4\\x7d\\x36\\x49\\x7d\\x06\\x86\\x67\\xf0\\xc4\\x98\\xd6\\x77\\xdd\\x39\\xdd\\xb6\\x59\\x01\\xa5\\x39\\xac\\x2e\\x9b\\x2b\\x29\\x51\\x1b\\xab\\x88\\x0e\\x0d\\x41\\x16\\xb0\\x04\\xba\\x4d\\x7a\\xad\\xf2\\xf5\\x9a\\x51\\xcb\\xf4\\x34\\x5e\\x76\\x6a\\xa7\\xd3\\x58\\xe6\\xeb\\xa1\\xdb\\xd7\\x37\\xc8\\x0a\\x07\\xcb\\x92\\x99\\x47\\x78\\xb3\\x39\\xaa\\x61\\xe2\\x57\\x3d\\x0b\\x6e\\x1a\\xcb\\x06\\xf0\\xde\\x27\\x4b\\xca\\xaa\\x76\\x38\\xca\\xb3\\xd3\\xd4\\xab\\x2b\\x7f\\xb3\\xdb\\xe8\\x36\\xaa\\x04\\xb0\\x32\\x38\\x7e\\x59\\x51\\xb3\\xf9\\xfe\\x85\\xf2\\xaa\\x91\\x4b\\x1b\\x2b\\x07\\xb5\\x3d\\x47\\x96\\x95\\xb5\\xed\\x7d\\x72\\x6c\\x5b\\x46\\x7b\\xa1\\x21\\x42\\x6b\\x50\\x5c\\x37\\xb3\\x8f\\x5d\\x6a\\x2c\\x68\\xb2\\x69\\xad\\x95\\xae\\x04\\x32\\xc7\\x8e\\x89\\xf7\\x70\\xcf\\xe3\\x39\\x96\\x88\\xac\\x78\\xe9\\xf3\\x88\\x61\\x79\\x52\\x47\\x8d\\x42\\x6f\\x09\\x12\\x82\\x4b\\x40\\xd9\\xc1\\x55\\xda\\xa9\\xb2\\x93\\xc8\\x4e\\x3f\\x67\\x90\\xa9\\xcf\\x5a\\x07\\x0e\\x2d\\xcc\\xc3\\x07\\x8d\\x83\\xf8\\xa0\\x81\\xc3\\xc9\\xe0\\xca\\xcb\\xff\\x40\\x94\\xe5\\x65\\x10\\x0e\\xb3\\xd8\\x4c\\x45\\xcf\\xbe\\xe7\\xd6\\x2d\\x7e\\xf3\\x96\\x39\\x7f\\x49\\xf2\\xd4\\x34\\xb7\\x99\\x1f\\x7b\\x88\\x22\\x0c\\xdc\\xcb\\xb4\\x92\\xf3\\x98\\xf8\\x16\\xb7\\x06\\xaf\\xef\\x78\\x62\\x2b\\xa4\\xda\\x86\\x2f\\x4d\\x97\\x18\\x0c\\x03\\xe7\\x28\\x9f\\x9e\\x81\\x21\\x04\\x78\\x41\\x41\\x08\\xf1\\x9f\\x34\\xb2\\xb3\\x02\\xf1\\xb0\\x24\\xab\\xda\\x5e\\xb7\\x7a\\x66\\x1a\\xd8\\x3a\\xb6\\xf7\\x8d\\xf7\\xcc\\x06\\x43\\x49\\x5f\\xee\\x7d\\x44\\x5d\\x5e\\xf1\\x03\\xf4\\x33\\xb3\\x54\\x8d\\x4b\\xae\\x98\\x95\\x7f\\xd9\\xfa\\x05\\xf8\\xbc\\xb1\\x61\\xb0\\x60\\x56\\xa1\\x9e\\x95\\x34\\x67\\xbf\\xde\\xbc\\x87\\xd4\\x29\\x25\\xf5\\x1f\\x88\\xfe\\x1e\\x01\\x2c\\x1f\\x2e\\xad\\x3b\\x84\\x38\\x1e\\x71\\x83\\x58\\x10\\x92\\x7d\\xe4\\xfc\\x2c\\x1d\\x84\\xf0\\x05\\xb1\\x24\\xac\\x43\\x2e\\xa7\\xe2\\x90\\x52\\x73\\x6e\\x7e\\x0e\\xfd\\x08\\x6e\\x85\\xd5\\xa0\\xcd\\x1a\\xdc\\x8d\\x73\\x71\\xcc\\x38\\x17\\x27\\x36\\xbf\\x58\\xdc\\x21\\x7e\\x86\\x59\\xb1\\x97\\x99\\x38\\xa7\\x80\\x2a\\xb3\\x85\\x70\\x88\\xd2\\xb4\\x0f\\xd3\\xe4\\xe4\\xf2\\x7e\\x96\\x26\\xcd\\xff\\x0f\\x9a\\x6e\\x81\\x95\\xa0\\xa2\\xf9\\x41\\x38\\xc8\\x56\\x49\\x69\\xda\\x29\\x7e\\x21\\xe5\\xf2\\x9e\\x3e\\x22\\x55\\x36\\x7d\\x4f\\x90\\x75\\xcd\\x80\\x57\\xc5\\x5e\\x9f\\x4e\\xd6\\x74\\xf6\\x0b\\x6e\\x39\\xf5\\x33\\xa4\\x91\\x5a\\x6d\\x89\\xc0\\xa2\\x84\\x0b\\xd7\\x6a\\x4b\\x38\\x27\\xde\\xc8\\x68\\x20\\x69\\x40\\x86\\x34\\x63\\x5a\\xac\\x9a\\xd6\\x6a\\x4b\\x86\\xe4\\x20\\x3f\\xf4\\x82\\x3c\\x50\\xab\\x8d\\xae\\xfc\\x0b\\x54\\x6b\\x73\\xed\\x7d\\xeb\\xca\\xda\\xf6\\x2b\\x5f\\x98\\xd8\\xfc\\xdc\\x96\\x72\\x36\\x3c\\xb1\\x72\\xa2\\x3d\\x67\\xa0\\xb5\\x54\\xe3\\x8c\\x28\\xea\\xbb\\x64\\xa2\\x78\\xb0\\x54\\x0f\\x62\\xa8\\x36\\xb7\\x8f\\x7f\\x61\\xd6\\x8d\\xef\\x6d\\x15\\xbf\\xda\\x71\\xea\\x58\\x0f\\x74\\xde\\xf4\\xe9\\xbe\\x57\\x2b\\xeb\\xb6\\x0e\\xe5\\x86\\xc7\\x68\\x42\\x3e\\x09\\x8a\\x8f\\x8b\\x39\\xad\\xce\\x9b\\xb3\\xad\\xb1\\x27\\x6f\\xa4\\xde\\x8e\\xa4\\x9c\\x58\\xac\\x63\\x6e\\xc1\\xfc\\x4e\\x26\\x3c\\xe6\\x00\\x41\\x32\\xcf\\x90\\xf0\\x37\\x9f\\xec\\x1f\\xa7\\x8a\\x3a\\xb7\\xd8\\x9f\\x30\\x1c\\x80\\x8d\\x21\\x89\\x4d\\x38\\x9f\\xde\\xe6\\xcb\\x1f\\xc7\\xa7\\x19\\x35\\x5c\\x34\\xa7\\x9e\\x4d\\xf4\\x1e\\x66\\xef\\x00\\xf1\\x8a\\x67\\xde\\x68\\xde\\xf3\\xcc\\xb2\\xbe\\xfb\\xf7\\x76\\x41\\xac\\x2e\\xaf\\xcd\\x95\\xd7\\x5b\\xa2\\xbf\\x72\\xd7\\xe5\\x18\\x7c\\xec\\x61\\x71\\x5e\\xc2\\x67\\xcf\\x93\\x88\\x3d\\xe7\\xe8\\x8d\\x01\\x30\\xa7\\xfd\\x1b\\x1e\\x26\\xb9\\xff\\xe2\\x0a\\x6e\\x15\\xcd\\xc7\\x98\\x5f\\x12\\x4a\\x68\\x34\\x12\\x1a\\xc9\\x36\\x98\\x41\\xca\\x30\\x5c\\x84\\x54\\x4d\\x80\\x54\\x2d\\xd9\\xdd\\xf4\\xe7\\x37\\xe3\\x48\\x98\\xc5\\x40\\xa0\\x35\\xc5\\x35\\xb7\\xfe\\x92\\x1e\\xd1\\x0a\\x0b\\x6c\\xb8\\xf7\\x5a\\xf6\\x2e\\x10\\xaf\\x7e\\xf2\\xb5\\xe6\\xdd\\xcf\\x4c\\xd0\\x2e\\x69\\x74\\x79\\xed\\xae\\xbc\\xbe\\xe2\\x64\\x53\\xcd\\xc2\\xaa\\x9d\\x6c\\xd7\\xc7\\x0f\\x89\\xa3\\x89\\x7f\\x7f\\x76\\xe4\\x06\\xda\\xa9\\x25\\xb6\\x5a\\x8f\\x2e\\x29\\xbb\\x3e\\xb5\\x76\\x5e\\x99\\xee\\x7e\\x5c\\x0b\\x08\\x59\\xf1\\xfc\\xbe\\x92\\x3f\\xc1\\x98\\xd1\\x3d\\x9d\\x08\\x59\\xe0\\x65\\xf1\\x34\\x52\\x83\\x00\\x6f\\x3c\\x81\\x50\\xd0\\x49\\x80\\x13\\xea\\x13\\x2e\\x3b\\x6e\\x57\\x2b\\x56\\x91\\xbc\\x52\\xdc\\xee\\xf3\\x7a\\xda\\xee\\x6c\\xfc\\xd9\\x7c\\x90\\xc1\\x1b\\x67\\x37\\x9c\\x3d\\x8d\\xa2\\x71\\xcb\\x87\\xcf\\xe6\\xe3\\xa6\\x27\\x19\\xfc\\xe2\\x34\\x7e\\xe1\\x8b\\x21\\x6f\\x92\\x70\\x6d\\x48\\x24\\x1f\\x35\\xb8\\x71\\x8c\\x6f\\x03\\x25\\x42\\x6e\\x32\\x19\\x15\\x21\\x92\\x8e\\x1a\\x1d\\x85\\xdb\\x86\\xeb\\x71\\x22\\x8f\\x4a\\x5a\\x32\\xfe\\xd2\\xff\\x31\\xf2\\x00\\x12\\x37\\xeb\\x86\\x58\\x31\\x6e\\xc3\\x8b\\xbb\\xeb\\xea\\x76\\xbf\\xb8\\xe1\\xd5\\x57\\xcb\\x06\\x4b\\x74\\xba\\x12\\x0c\\x6f\\x73\\x82\\x41\\x3f\\xb5\\x60\\xb8\\xbd\\x79\\x23\\x77\\x5f\\x52\\xe5\\xcd\\x84\\x7f\\x58\\x2b\\x3a\\xd3\\x9d\\x3d\\x95\\x29\\x74\\xcd\\xf4\\x62\\x5a\\xbe\\xa6\\xb9\\x3e\\x4e\\x94\\x57\\x92\\x8d\\x38\\x62\\xbd\\x87\\x71\\x44\\x74\\x72\\xa0\\x29\\xc4\\x84\\x24\\x96\\x45\\xbd\\x32\\xc9\\x32\\x00\\xc8\\x99\\x61\\x35\\x6b\\x63\\xa3\\x88\\xdd\\x34\\x18\\x19\\xc1\\x40\\x96\\x4a\\x80\\x22\\x97\\x94\\x01\\x90\\xed\\x49\\xa3\\xf0\\xaa\\x32\\xac\\x7c\\x99\\x26\\x89\\x64\\x62\\x46\\x6e\\x9a\\x28\\x2c\\x9c\\xb8\\x69\\x84\\xc5\\x93\\xcc\\x92\\x95\\x14\\x01\\x10\\x14\\xa9\\x8e\\x04\\x79\\xb8\\x36\\x26\\x04\\x18\\xcf\\xbc\\x6b\\x47\\xc5\\x17\\x59\\x6b\\x81\\x45\\xa1\\xb0\\x14\\x58\\xfd\\x54\\x33\\xe8\\x74\\x26\\xe4\\xf6\\x2e\\xcf\\x77\\xac\\x5a\\xbf\\xca\\xe1\\x58\\xb1\\x6e\\x75\\xc6\\xba\\x57\\xf6\\xb7\\x7c\\x7c\\x5e\\x5f\\x7a\\xb0\\x7e\\x70\\xb3\\xa0\\x21\\x35\\x77\\x49\\xc4\\x99\\x0c\\x58\\x94\\x9b\\xc2\\x30\\x82\\x1e\\x30\\x77\\x7d\\x0e\\x31\\x96\\xec\\x93\\x02\\x89\\xb9\\x0e\\x04\\x1e\\x32\\x0c\\xd7\\xeb\\x73\\x9e\\xda\\xcc\\x46\\x9b\\x2a\\x26\\x7a\\x4a\\xfc\\x94\\x1a\\xf7\\x47\\x50\\xb9\\xb0\\x44\\xf7\\x98\\xfd\\x1d\\x12\\x02\\xe7\\x0e\\x30\\x4f\\x89\\xe3\\xc9\\x36\\x5b\\x7a\\xac\\x0d\\x4b\\x6b\\xeb\\x72\\x40\\xcd\\xc4\\xaa\\xe2\\x13\\x58\\x26\\x29\\x11\\xa2\\xc2\\x63\\x63\\x42\\x81\\xc9\\xe9\\x5b\\x53\\xde\\xb3\\x3d\\x25\\xb9\\xaf\\xb0\\x66\\xbc\\xc1\\x0a\\x27\\x34\\xc9\\x71\\x26\\x55\\x48\\xb0\\xd2\\x14\\x67\\x4b\\x08\\x62\\x98\\x96\\x25\\x8f\\x6f\\x6f\\xc8\\x61\\x98\\xd3\\x2e\\x4f\\x0d\\x73\\xf7\\x55\\x73\\x5e\\x99\\xe3\\x1c\\x9e\\x3b\\xea\\xda\\xf5\\xfa\\x8e\\x0a\\xa6\\xb0\\xa2\\xa0\\xbc\\x6a\\xc3\\xdd\\xa3\\xb0\\x5f\\xe3\\x68\\x9c\\x97\\xb7\\xc7\\x33\\xab\\xd4\\xa4\\xb3\\xf9\\xfc\\x80\\xc5\\xb8\\xcf\\x37\\xe2\\xf1\\xf3\\x10\\x84\\x99\\x58\\xa0\\x9e\\x3f\\x9e\\x01\\x86\\xa7\\x63\\x88\\x38\\x40\\x34\\x0d\\xbc\\xc7\\x0f\\xe3\\xe7\\x07\\x27\\xb2\\x28\\xd3\\xf5\\x46\\xbd\\x91\\xee\\x9f\\xd2\\xaa\\x09\\xc4\\xb8\\xba\\x26\\xb1\\x57\\x94\\x93\\x5d\\x57\\xa9\\x68\\xd7\\xf1\\xb0\\xc2\\x53\\xb8\\xbc\\x99\\xee\\xf8\\xc4\\xe8\\x70\\x57\\xff\\x6b\\xaf\\x2d\\xba\\x7b\\x65\\xf1\\x9a\\x45\\x45\\x1d\\x1e\\x0d\\x68\\x63\\xf3\\x8a\\x78\\xc0\\x7d\\x8e\\xd6\\xda\\x19\\xa6\\x72\\xd9\\xd5\\x6d\\x35\\xcb\\x5a\\xd3\\x59\\xd8\\xe0\\x6c\\xcd\\xd5\\x7d\\xba\\x70\\xc1\\xcc\\xe1\\xbf\\x79\\xe6\\x5f\\x3b\\xb2\\xf2\\x36\\x67\\x74\\x51\\xfb\\x48\\xee\\x58\\xbc\\x8d\\x39\\x4e\\xba\\x3a\\xf4\\xf2\\xe8\\xee\\xd7\\x2e\\x2f\\x67\\xf4\\x35\\x13\\x2d\\xa4\\x4f\\xf5\\x67\\x3f\\xa6\\xf9\\x81\\x59\\x24\\x82\\x9b\\xe0\\x89\\x24\\x01\\xa2\\x7a\\x26\\x4f\\xac\\x8f\\x14\\x4b\\x04\\x49\\x58\\x22\\xb4\\x37\\x9a\\x00\\xec\\x33\\x96\\x7b\\xb8\\x53\\x26\\x9b\\x2a\\x8e\\xf6\\x2b\\xd0\\x87\\x69\\xc3\\x47\\x3b\\x6a\\xf1\\xf7\\xd8\\x42\\x7a\\xcc\\x7c\\x35\\xb3\\xd5\\x53\\xeb\\x50\\x40\\xa2\\x4d\\xab\\x63\\xc8\\xc8\\x45\\x86\\xc7\\x2a\\xf0\\xc8\\xb9\\xbb\\x97\\x97\\xde\\x7b\\x32\\xa4\\xb8\\xe0\\xf7\\xcc\\xbe\\xee\\xc6\\xc6\\xee\\xf7\\x85\\x53\\x0b\\x6f\\x5d\\x9a\\xcf\\x7c\\xdf\\xba\\xc4\\x18\\xee\\xc8\\xaf\\xb1\\x66\\xd8\\x3c\\xcc\\xe5\\x6b\\x9a\\x6e\\x6e\\xb2\\x34\\xb7\\xb4\\x5a\\x97\\xde\\xb6\\x24\\x9b\\x5d\\xba\\xa5\\xde\\x95\\xfd\\xc7\\x62\\x4f\\x6e\\xfd\\xc7\\xa9\\x6d\\x6b\\xc8\\xdc\\xbc\\x5d\\x5c\\xcc\\xbd\\x80\\xc7\\xc9\\x8e\\x72\\x51\\x49\\x49\\xa1\\x12\\x38\\x94\\x44\\xcf\\x0b\\x99\\x4e\\x62\\xcb\\x44\\x02\\x90\\x7d\\x73\\x6a\\x30\\x37\\xcf\\x4f\\x42\\xc8\\xe4\\xe6\\xe0\\x0b\\x53\\x92\\xf5\\x7a\\xb3\\x9e\\x24\\x08\\xc7\\x58\\xfc\\x48\\x28\\x7a\\xcb\\x14\\xa4\\x1c\\x1a\\xb2\\xac\\x24\\x55\\x8c\\x48\\xb7\\xc0\\x6f\\xf4\\x70\\xeb\\xbf\\x62\\x3e\\xdf\\xba\\x26\\xb1\\xa0\\xaf\\x58\\xfc\\x23\\x0f\\xce\\x75\\xcf\\x6e\\xaf\\x59\\xb9\\xac\\xbc\\x37\\x27\\x56\\x90\\xc7\\xab\\xc4\\x0f\\xd5\\xb1\\x61\\xec\\xaa\\x71\\xe6\\x4f\\x18\\x05\\xdb\\x7e\\x20\\x46\\xaf\\x89\\x00\\x9e\\xa9\\xfe\\x70\\xc1\\xdc\\x8c\\xd6\\xdc\\xa4\\x0f\\xf3\\x16\\x1f\\x1d\\x99\\x38\\xea\\x52\\x94\\x77\\x2f\\x2a\\x1c\\x53\\x17\\x95\\xe4\\x45\\xab\\x62\\xaa\\x1a\\xca\\xe5\\xf3\\x16\\xad\\xf1\\xfe\\x21\\x77\\xf5\\xf8\\x1c\\x4b\\x83\\xb1\\xae\\xad\\x37\\xfb\\x0b\\xdc\\xc7\\xa7\\x09\\xae\\x05\\x97\\x47\\xfa\\x48\\x46\\x8e\\xf4\\x11\\x2e\\xd2\\x3f\\xcd\\x05\\xfb\\x97\\xf4\\x7f\\xec\\xdf\\x0f\\xf0\\x5d\\x7f\\x8f\\x3a\\xad\\x2a\\x4d\\x7c\\x5b\\x00\\xc7\\xc2\\xbb\\x56\\x97\\xb6\\xb5\\x3a\\xcb\\x6d\\xd1\\x6c\\x70\\x54\\xb8\\xf8\\x61\\x58\\x98\\x00\\xfd\\xbd\\xcc\\xb5\\x53\\xfa\\x07\\xdb\\x9f\\xaf\\x2a\\x48\\xcc\\xb2\\xa8\\xde\\xcf\\xe8\\xde\\xd4\\xd2\\xba\\x2a\\x45\\xee\\x2e\\x6b\\x49\\x6d\\x0c\\xb6\\xa4\\xa6\\x84\\x44\\x84\\xa4\\x39\\x1d\\xc1\\xf5\\x8d\\x2d\\xe2\\x65\\xe7\\xf4\\x0f\\x50\\x24\\x5e\\x6b\\xa4\\xa6\\x99\\x0d\\x5d\\xe1\\xcf\\x78\\xe7\\x89\\x6a\\xc1\\x8c\\x07\\x90\\x32\\xa5\\x6a\\x53\\xbd\\x92\\x5d\\xd1\\x7f\\xce\\xb5\\x5d\\xac\\x19\\x91\\xf2\\xf4\\xa5\\xd0\\x4b\\x57\\x25\\xc9\\x7b\\x9f\\xd6\\x36\\x50\\xd9\\x56\\x4d\\xd6\\xaf\\xbf\\x25\\x39\\xeb\\x59\\x94\\xd8\\x7c\\x6f\\xf2\\x9b\\x2d\\x15\\x3e\\xe4\\x42\\xb2\\x0f\\x4e\\x15\\x5a\\xae\\xc9\\x95\\xcb\\xa4\\x8d\\xa4\\x0e\\x5e\\x3b\\xae\\x57\\x9a\\x3c\\xfa\\x28\\xe6\\x57\\xd8\\x2e\\xae\\x37\\xf0\\x8c\\x5a\\xf1\\xdf\\x68\\x1d\\x43\\x24\\x54\\x59\\xe5\\x92\\x26\\x07\\xcb\\xbd\\x2c\\x7a\\x9e\\x15\\x3f\\x78\\xaa\\xff\\x54\\xe1\\x96\\x57\\xaf\\x60\\x4e\\x9c\\x5e\\x61\\x72\\x9e\\xbb\\x50\\x0d\\x0d\\xab\\x67\\x92\\x1a\\x43\\x98\\x1f\\x27\\xb8\\x3c\\x89\\x1f\\x11\\x12\\x3f\\x58\\xc4\\xf2\\x28\\x40\\xbc\\x66\\x1a\\x3f\\xd4\\x84\\x1f\\xd3\\x9b\\x05\\x40\\xa1\\x68\\x27\\x03\\x17\\x10\\x7e\\x4c\\x6f\\xfb\\x8b\\xf8\\x21\\xc5\\xf1\\x67\\x67\\x07\\xd8\\x31\\x5d\\x90\\x31\\xd1\\x03\\xa6\\xd6\\xad\\xfd\\x2e\\x4e\\x19\\x6b\\x50\\x05\\x33\\x7b\\x40\\xa1\\xd0\\x99\\x19\\x2a\\xb4\\xe3\\x52\\x18\\x26\\x6f\\x60\\x43\\x65\\xcd\\x44\\x5b\\x1a\\xc7\\xce\\xfc\\xec\\xf0\\xdf\\xaf\\x6b\\xfe\\x1a\\xec\\x7d\\xfb\\xe6\\xc2\\xab\\x67\\xbc\\x8e\\x42\\xe6\\xea\\x2d\\x03\\x4f\\xf7\\xf7\\x3d\\x35\\xb8\\xf9\\xa9\\x0d\\xc5\\x8c\\xa9\\x75\\x23\\xa9\\x79\\x57\\x83\\xf9\\x71\\x2f\\xcd\\x49\\x9a\\x27\\x75\\xd4\\x80\\x80\\x17\\x78\\x10\\xe8\\xe1\\x0c\\x91\\xc3\\x99\\x8c\\x5a\\xfb\\xa9\\xbc\\xe2\\x20\\x00\\x75\\x70\\x91\\x56\\x1c\\xa7\\x9e\\x2a\\xda\\x70\\xbe\\xa3\\x54\\x39\\x9a\\x94\\x98\\xc0\\x7d\\xa5\\x70\\x21\\x17\\xec\\x98\\xdc\\xef\\x2a\\x60\\x9d\\x10\\x19\\x96\\x64\\xa4\\x42\\x39\\x86\\x08\\xe5\\xfc\\xc1\\x4d\\x55\\x95\\x8b\\x9a\\x1d\\xdc\\x03\\xe4\\x20\\xf4\\x00\\x4e\\xb9\\x1d\\xd3\\xa7\\x30\\x77\\xf8\\x06\\x97\\x6e\\x37\\x96\\x8e\\x1d\\x03\\x10\\xe9\\x3d\\x26\\xe9\\xff\\x44\\x1e\\x57\\xe0\\x7e\\xed\\xa4\\xf9\\x4b\\x83\\x52\\xbf\\x92\\x91\\xc0\\xb0\\x8c\\x40\\x8b\\x9c\\x90\\xf1\\x19\\x9c\\x82\\xed\\x21\\xf3\\x8f\\x9c\\xf9\\x22\\x8d\\xf0\\xd7\\xa4\\xa5\\xac\\x17\\xc9\\x64\\x89\\x32\\x62\\xd4\\xb4\\xa8\\x62\\x02\\xd6\\x28\\xf0\\x93\\x7e\\xe1\\x21\\x83\\xaf\\xf6\\x93\\x74\\xee\\xfd\\xa0\\x82\\xa4\\x04\\x75\\x1c\\x03\\x4a\\x05\\x44\\xc4\\xe0\\xd9\\x9b\\x3d\\x6b\\x65\\x69\\xc3\\xda\\x8e\\x4c\\x0e\\xee\\x16\\xdb\\xb9\\x3c\\x71\\x26\\x1c\\xbf\\xe8\\x38\\x0d\\x13\\xec\\x0a\\x7c\\x4e\\xb0\\x4b\\x19\\x42\\x0c\\x44\\x02\\x47\\x5c\\x9f\\x1c\\x43\\xa0\\xca\\x88\\x39\\x79\\x6a\\x42\\x05\\x2f\\x1d\\xa0\\x01\\x19\\x0d\\x89\\xf1\\x31\\xe4\\x78\\x60\\x07\\xbb\\xe0\\x3b\\x38\\xbb\\xa7\\x16\\xaa\\x0f\\xd8\\x5f\\xa7\\x92\\xcd\\x1c\\x5c\\xff\\xfa\\xc1\\xd6\\xd6\\x83\\xaf\\xaf\\x5f\\x7e\\xa2\\xbc\\xb8\\x74\\x5f\\x57\\xd9\\x68\\x8d\\xd9\\x5c\\x33\\x5a\\xb6\\x72\\x1d\\xcb\\x24\\xa8\\x21\\x5a\\x61\\x61\\x98\\x8e\\x2b\\x9e\\x50\\xf6\\xdf\\xf2\\x31\\x81\\x7a\\xf9\\xf8\\x96\\x7e\\x47\\xea\\x9b\\x7a\\x43\\xe1\\xfc\\x3d\\xcd\\xe2\\x0f\\xad\\x7b\\x17\\x14\\x32\\x6b\\x17\\x76\\x9c\\xe8\\xe8\\xb8\\xa7\\x6b\\xc5\\xdd\\x4b\\x73\\x28\\x86\\x14\\xa6\\xff\\x72\\x82\\x77\\x40\\xe8\\xd7\\x01\\xc7\\x26\\x01\\x70\\x14\\x31\\x9e\\xec\\xf7\\xe3\\x93\\xee\\x4e\\xfe\\x1c\\xa4\\x03\\x6c\\xef\\x88\\x8b\\x8e\\x0a\\x0e\\x22\\x18\\x07\\x84\\x7e\\x13\\x56\\xd3\\xb2\\x24\\xf0\\x7e\\x9f\\x89\\xcc\\x7d\\x5e\\x67\\xe8\\xf1\\xe6\\x05\\x67\\x99\\x55\\x0e\\x7c\\x04\\x44\\x86\\x46\\x31\\x55\\x6b\\x6e\\x9e\\xbd\\xeb\\xcf\\x07\\x1a\\xea\\xf6\\xbc\\x7e\\xd9\\x92\\x1b\\x5d\\x69\\x9e\\x3d\\x6d\\xb5\\xf3\\xcb\\x75\\xfa\\x9a\\xf1\\xdf\\x01\\x86\\x21\\xd5\\xa7\\x0d\\xa5\\xa7\\x0f\\xa5\\x91\\xc4\\xcd\\xae\\xab\\x9e\\x1f\\x4b\\x19\\x7b\\xfe\\x60\\x97\\x41\\xf7\\x6e\\x7c\\x62\\x4e\\xf7\\x78\\x76\\x4a\\xee\\xf8\\xac\\x1c\\xff\\x7c\\xba\\x9d\\xf8\\x14\\x49\\xbd\\x3e\\xdf\\x6e\\x3e\\xce\\x40\\xe0\\x18\\xe3\\x43\\x53\\x24\\x81\\xbd\\x78\\x9a\\xcb\\x27\\x95\\x7e\\xe5\\x45\\x26\\xc5\\xa5\\xe2\\xb3\\xec\\x31\\xec\\x2e\\xcf\\x71\\x96\\x55\\xb2\\x8c\\x3e\\x01\\xa2\\xe3\\x52\\x88\\x02\\xf2\\xab\\xb6\\xce\\x9d\\xc3\\xb9\\x1c\\xf7\\xf2\\xdf\\xfe\\x76\\xe6\\x78\\x6d\\x1f\\x73\\x7c\\xea\\x3c\\x4f\\x9d\\x7d\\xf5\\x02\\x24\\x61\\xd5\\x63\\x7a\\xb6\\x91\\xf9\\x7d\\x41\\x7a\\xa8\\x5f\\xd1\\x1f\\x68\\x6c\\x53\\x9a\\xce\\xa5\\x67\\xca\\x70\\x27\\xb2\\x01\\x82\\xfa\\xc4\\x4f\\xd9\\x5d\\xe2\\xad\\x51\\x89\\x8e\\xf8\\xe2\\x72\\xaa\\x06\\x46\\x48\\xca\\x44\\xc5\\xf8\\xc1\\xd6\\xee\\x7d\\x23\\x79\\x3c\\x3e\\x81\\x7c\\x2c\\xc6\\x19\\x0b\\x53\\x63\\x99\\x65\\xa3\\xd5\\x57\\x57\\x1b\\x6a\\xeb\\xea\\x8c\\x44\\x77\\x60\\x52\\x07\\xae\\x9e\\xef\\xa7\\xeb\\x4b\\x6e\\x04\\xcf\\xd3\\x22\\x09\\x57\\x8d\\x63\\xa1\\xce\\x57\\x5d\\x28\\x10\\x90\\x4a\\x68\\x15\\x58\\x2e\\x10\\x17\\x93\\x40\\x97\\x56\\x8f\\xb4\\xb4\\xcc\\x18\\x57\\xcd\\xea\\xc3\\xfe\\x8d\\xc1\\xd9\\x6c\\x69\\xec\\xc5\\x4a\\x8b\\x19\\xce\\x2d\\x46\\xc6\\x91\\xd9\\x50\\xb6\\x69\\xb5\\x7b\\x46\\x9e\\xae\\x61\\xf7\\x0b\\x6b\\x86\\x4e\\x6c\\x6d\\x12\\xff\\xa6\\xf3\\xd4\\xd9\\xcb\\x06\\x8a\\x12\\xb5\\xb9\\xb3\\x8a\\x5f\\x78\\x61\\xc3\\x56\\x53\\xd5\\x48\\x99\\xb3\\x3d\\x4f\\x0f\\xb1\\xb6\\xea\\xc1\\xf1\\xb5\\x85\\x6b\\x88\\x3b\\xf5\\xd0\\xc6\\xe3\\x29\\x9a\\xb2\\xd6\\xde\\xcc\\x91\\x6b\\xe7\\x7b\\x72\\x17\\x1e\\x9a\\x9d\\x52\\x91\\xa1\\xd5\\x65\\x55\\x5b\\xd2\\xea\\x3d\\x09\\xef\\xce\\x5b\\x91\\x5a\\x9f\\xa3\\xd3\\x79\\x6a\\x52\\xea\\xd6\\x0c\\x54\\xa6\\xaa\\x72\\x17\\xe3\\x5a\\xc2\\xa8\\x80\\xe9\\xe6\\xae\\x65\\x0b\\x50\\x35\\xec\\x38\\xbb\\x0e\\xa1\\x76\\x57\\x09\\xad\\xc7\\x8a\\x72\\xf0\\xe7\\xbf\\xf2\\x7d\\xbe\\x6a\\xca\\xe7\\x47\\xc4\\x64\\x2e\\x0d\\x21\\xc6\\x82\\x4a\\x51\\x88\\x78\\x1a\\x04\\x54\\x1a\\x82\\x50\\xf0\\x49\\x04\\x0f\\x8b\\xf4\\x88\\x85\\x00\\xbe\\x64\\xbf\\x61\\x93\\x05\\x3b\\xc9\\xd3\\x2d\\x09\\x17\\x78\\xa9\\xfa\\xf5\\x7c\\x2d\\x04\\x29\\xb1\\xbe\\x4b\\x2d\\x5b\\x24\\x8c\\x16\\xbe\\x8c\\xcf\\x2c\\xb3\\x6c\\x32\\x67\\x7e\\xc0\\x1d\\x73\\x2d\\x9a\\xd7\\x6b\\x68\\x2e\\xbd\\x6a\\xf0\\x24\\xb9\\xfe\\xf7\\xec\\x29\\x36\\x48\\xd0\\xe0\\xeb\\x75\\xf7\\x93\\xcb\\xab\\xe9\\x56\\xfe\\x00\\xa2\\x55\\xce\\xe3\\xee\\xa3\\x55\\x96\\xef\\x93\\x6e\\xe7\\xaf\\x7a\\xe4\\x76\\xb1\\x41\\xe4\\x76\\x1b\\xcd\\xce\\x0f\\xf8\\x85\\xae\\x45\\xa3\\x7d\\xf8\\x76\\x57\\x0f\\xde\\x8d\\xc8\\xfd\\xde\\x10\\x1f\\x63\\xc3\\x20\\x7c\\x92\\x9e\\xea\\x00\\x3d\\xa6\\x29\\x37\\x08\\x8d\\x77\\x96\\x9b\\x2f\\x33\\x3b\\xfe\\x5e\\xea\\x1a\\x23\\xe4\\x94\\x1d\\x18\\xfc\\x1d\\xe9\\x33\\x3c\\xc7\\x9e\\x62\\x7e\\xc2\\xf4\\x54\\xc3\\x3c\\x0e\\xa7\\x22\\x3f\\x8d\\x24\\x5e\\x40\\x15\\xee\\xe7\\xef\\x05\\x3b\\x63\\x81\\xd1\\xb3\\x64\\x02\\xc8\\x60\\x14\\x9d\\x40\\xd2\\x77\\xa9\\xb8\\x0f\\x2f\\x09\\x1a\\xfc\\xdd\\xbc\\xb3\\xb3\\xe8\\x77\\xf3\\xd0\\x33\\x88\\xfc\\x30\\x50\\x2a\\x3e\\xc2\\xbe\\x80\\xbe\\xc4\\xf4\\xa8\\x91\\xa2\\x04\\x07\\x60\\x09\\x3c\\x87\\x6f\\x0e\\x98\\xa8\\x38\\x2d\\x13\\xa4\\x9a\\x4a\\x15\\x3f\\xf9\\x92\\xb9\\x44\\x9b\\x5e\\x62\\xd9\\x85\\x09\\x84\\xea\\x78\\x67\\x19\\x7e\\xe5\\xfa\\x7b\\x31\\x26\\xb5\\x2f\\xb9\\xb9\\xf4\\xe0\\xe0\\xdd\\x77\\x4d\\xbe\\x44\\x80\\x16\\xd0\\x1a\\xae\\x01\\x2c\\x62\\xae\\x80\\x22\\xde\\x48\\xbe\\xd7\\x62\\xb2\\x11\\x14\\x06\\x2a\\xb7\\x06\\x69\\x03\\x98\\x69\\xe4\\x5f\\xae\\x46\\x3c\\x8c\\x71\\xd3\\x6e\\x80\\x41\\x50\\xc3\\x08\\xdb\\x76\\xe6\\x1e\\xb6\\xed\\x73\\x58\\x29\\xee\\x94\\x6a\\x8e\\x8b\\xb3\\x29\\x2e\\x6c\\x0c\\xa9\\x07\\x82\\x04\\xa1\\x80\\xc6\\x70\\xf3\\xdd\\x24\\x00\\xbb\\xb8\\x3e\\x18\\xdf\\x5d\\x2a\\xfd\\x5d\\x58\\x2f\\x15\\xec\\x9e\\x92\\x84\\x1c\\x12\\x84\\x33\\x3b\\x03\\x0f\\x22\\xbf\\x92\\xa3\\x94\\xeb\\xa3\\x0f\\x3c\\x0a\\xb3\\xc9\\x2f\\x79\\x28\\xc5\\x06\\x9f\\x0d\\x47\\x3f\\x60\\xd6\\x7c\\x4c\\x9e\\xfc\\xb1\\x77\\x3b\\x19\\xc7\\x83\\xf0\\x03\\x3b\\x8f\\xfd\\x16\\x29\\x2f\\x54\\x2b\\xda\\x46\\x6b\\x45\\xc3\\xf4\\x44\\xb5\\x83\\xfa\\x02\\x8c\\x4a\\xd8\\x59\\x98\\x94\\x54\\xd8\\xe9\\xf1\\x74\\x16\\xe8\\xd9\\x68\\xe7\\x8c\\x82\\xe4\\xe4\\x82\\x19\\xce\\x3c\\x67\\x5b\\x81\\x5e\\x5f\\xd0\\xe6\\x94\\xe6\\xf6\\xbf\\xb0\\xbd\\xb7\\x0a\\xba\\xf1\\xdc\\x8e\\x3a\\x5b\\x4b\\x43\\x1b\\xa3\\x20\\x11\\x49\\xdf\\xcd\\xc5\\xf9\\x04\\x00\\x5d\\xe4\\x3b\\xf1\\x29\\xfc\\xde\\x8c\\xa2\\x1a\\xce\\x02\\x69\\xf1\\x36\\x7e\\x17\\x47\\xe6\\xff\\xd9\\xb3\\xc4\\xd6\\x00\\xfe\\x17\\x8c\\xef\\x05\\xb9\\x81\\x80\\xea\\xf1\\xbd\\x1f\\xc0\\x39\\x84\\x7a\\x94\\x8d\\xf2\\x51\\x2b\\x1a\\x45\\xeb\\xd1\\xb6\\x92\\xa8\\xfc\\x3c\\x26\\x24\\x34\\x37\\x88\\x91\\xa1\\x58\\x60\\x04\\x7f\\x5e\\x92\\x1d\\x00\\x11\\x44\\x20\\x52\\x1c\\x20\\x34\\x94\\xa6\\x5c\\x54\\x10\\xe1\\x12\\xd2\\x83\\x43\\xe7\\x8b\\x69\\x19\\x0a\\x29\\xee\\xa6\\x92\\xe8\\x30\\x36\\x14\\x82\\x78\\x14\\xc2\\x0f\\x5f\\xe8\\xaa\\xa9\\x6d\\x49\\xa0\\xd4\\x9a\\x55\\x8b\\xc7\\x86\\x07\\x6d\\x36\\x87\\xcd\\x66\\xc4\\x45\\x46\\xc3\\xf0\\x98\\x80\\x6f\\xe7\\xf1\\x03\\x09\\x9d\\x1b\\xa3\\xcc\\x4e\\xe3\\x68\\x8c\\x05\\xd4\\xec\\xb4\\x4c\\x0e\\x7e\\xda\\x27\\x30\\xfd\\x93\\x62\\x43\\xf9\\x50\\x49\\x5e\\x77\\x52\\xd2\\xac\\xdc\\x92\\xe1\\xf2\\xe4\\xe4\\x32\\xfc\\x6e\\x56\\x52\\x52\\x77\\x6e\\xe9\\x70\\xb9\\xe1\\x1b\\x7d\\x49\\x5f\\x61\\xc9\\x70\\x45\\x32\\x6e\\x54\\x5c\\xd8\\x5f\\xaa\\xdf\\x30\\xc8\\xba\\x07\\x8f\\x84\\xc4\\x24\\x2a\\xb4\\x89\\x91\\x5c\\x50\\x74\\xa2\\x52\\x95\\x18\\x2d\\x13\\x0f\\x93\\x4f\\x62\\x13\\xa3\\x26\\x3f\\x39\\x1b\\x14\\x93\\xa8\\x52\\x26\\x44\\x07\\xe1\\xbf\\xf4\\x13\\xb0\\xe5\\x8e\\x34\\xa6\\x1a\\x93\\x92\\x8c\\xa9\\x8d\\x23\\xb9\\xe6\\xdc\\x91\\x86\\x54\\x5c\\xf4\\xc8\\x90\\xda\\x30\\x92\\xcb\\xde\\x9e\\x37\\xd2\\xe0\\x70\\x34\\x8c\\xe4\\x19\\x73\\xe7\\x36\\xa6\\xa6\\x36\\xce\\xcd\\xf5\\xce\\xe8\\x67\\x3a\\xfa\\xcf\\xfc\\x1e\\x23\\xd0\\xc6\\xc4\\xe8\\x53\\x34\\x66\\x75\\x0a\\x7d\\xa1\\x36\\x4f\\xfb\\x84\\xed\\x97\\x3e\\xb2\\xab\\x8d\\xf8\\x85\\x42\\x81\\x5f\\xd0\\xfd\\x02\\x76\\xa0\\x4d\\x6c\\x27\\x7b\\x03\\x12\\x08\\x56\\x25\\x0b\\xbe\\x28\\x60\\x04\\x33\\x7d\\x25\\xde\\x01\\x35\\xc6\\xc8\\xe9\\x0c\\x8d\\x31\\x80\\x1b\\x5c\\xcc\\xdc\\xff\\x48\\x6a\\x20\\x13\\x29\\x2e\\x85\\x6d\\x31\\xb0\\x4d\\xba\\xcf\\x66\\xb4\\x91\\x6d\\x65\\x8f\\x20\\x81\\xd4\\x01\\xe2\\x81\\x21\\x37\\x62\\x80\\xde\\x89\\x81\\xc0\\xad\\xe8\\x94\\x12\\x62\\x58\\x22\\x02\\x41\\x09\\x86\\x18\\x96\\xf1\\x40\\x9c\\xf8\\xe9\\x03\\x5f\\x7f\\xcd\\x1e\\x11\\xd7\\xc6\\x88\\x6b\\x61\\x1f\\x5c\\x81\\xa8\\xfd\\xee\\x13\\xf6\\x30\\xf7\\x06\\x51\\x6e\\xef\\x63\\x10\\x64\\xd8\\x4d\\x78\\xf4\\xe0\\xda\\x2d\\x70\\x76\\xcb\\x27\\xe5\\xec\\x9d\\xe5\\x44\\x1e\\x85\\x33\\x19\\x9c\\x16\\xef\\x75\\x21\\x28\\x02\\xfb\\x76\\x42\\xc2\\x01\\x71\\x41\\x00\\x01\\x43\\xa2\\x92\\x07\\x7f\\xd4\\xbf\\xdf\\xdb\\x5f\\x40\\xe6\\x9d\\x96\\x9a\\x0a\\x67\\x4e\\xf9\\x96\\xe3\\x48\\xa4\\x13\\xc7\\x34\\x62\\x93\\xa1\\x3c\\x3a\\x20\\x5c\\xf0\\x1e\\x47\\xa2\\xdf\\x2d\\x40\\x5c\\x62\\x32\\x76\\xdb\\xc1\\x83\\xf7\\x8a\\x79\\x1c\\xbc\\x70\\xbf\\x58\\x03\\xc1\\xd1\\xec\\xd8\\x65\\x0f\\x3d\\x34\\xcc\\xac\\xf3\\xde\\x06\\xeb\\x8c\\x94\\x07\\x76\\x66\\x0f\\xfb\\x07\\xfe\\x51\\xa4\\x46\\x0b\\xeb\\x4f\\x98\\xfd\\x35\\x25\\x15\\x00\\x93\\x35\\x25\\xa5\\x37\\xdd\\xd2\\xd7\\xda\\xc9\\x9a\\x92\\x05\\x34\\x0c\\xc1\\xff\\x86\\xa8\\xc2\\x6a\\xff\\xf6\\x4c\\xbe\\xf2\\xe3\\x71\\x16\\xf8\\x4b\\x4a\\xaa\\x91\\x9a\\x78\\xed\\x84\\xa0\\xa9\\x25\\x25\\x03\\xc0\\x59\\xf8\\x15\\xbc\\x9e\\x64\\x18\\xaf\\x2f\\x1c\\xac\\x30\\xbe\\x21\\xd7\\x67\\xe8\\x5c\\x65\\xf2\\x37\\xf9\\xbb\\xd7\\x16\\xd7\\x18\\xea\\x97\\xb7\\x8a\\x02\\x3c\\x9e\\x55\\x9b\\xaa\\x48\\x35\\x7b\\xdf\\x66\\x93\\x50\\x00\\x4b\\x7f\\x1f\\x5e\\xe7\\x2e\\x54\\x5f\\x52\\xe3\\x47\\xfd\\x08\\x05\\x59\\x18\\x10\\x80\\x95\\xc1\\x70\\xe0\\x39\\x09\\x1e\\xd6\\x0f\\xf9\\x51\\x41\\xc9\\xa2\\x11\\x62\\x85\\x4c\\x83\\x2b\\xd3\\x99\\x91\\x9e\\x86\\xc1\\x9c\\x93\\xb1\\xae\\x43\\xaa\\x2b\\x28\\xa2\\x22\\xc8\\x12\\xd5\\xab\\x15\\x02\\x01\\xbe\\x22\\xe0\\xf8\\x6e\\x0b\\x3e\\x69\\xd2\\xdf\\x69\\x1a\\x85\\x1a\\x37\\x51\\xe3\\x74\\x44\\xf1\\x63\\x26\\x21\\x99\\x39\\x72\\xfa\\xa3\\x6e\\x4d\\x82\\x9c\\x67\\x6e\\x3e\\xc2\\x5e\\x7b\\x35\\x57\\xb6\\xfa\\xb6\\x39\\xc4\\x7a\\x22\\xfe\\x37\\x21\\xb3\\xcc\\x68\\x2c\\x72\\xc4\\xf2\\x90\\x26\\xbe\\xc5\\x83\\x01\\xfe\\x64\\x2e\\x1a\\xb1\\x7d\\xfc\\xb1\\x60\\xf1\\x14\\x27\\xba\\xae\\x99\\xb8\\xe6\\x57\\xa3\\x37\\x2f\\xc9\\xcf\\x1f\\x3b\\xd4\\xe7\\xaa\\x4e\\x8d\\x89\\xcb\\x6a\\x76\\xfd\\xea\\x9a\\x09\\xc9\\xf7\\xba\\xee\\xec\\x97\\xbe\\x73\\xb8\\x07\\xbd\\x45\\x4f\\x24\\x0f\\x84\\xd2\\xdc\\xd7\\x38\\xfc\\x97\\x07\\xf0\\x57\\x4a\\xce\\x44\\x41\\x42\\xa8\\x10\\x14\\x3a\\x8e\\x67\\x15\\x07\\x21\\x1c\\x11\\x49\\xd4\\x62\\x44\\x86\\x81\\xd4\\x93\\x21\\x89\\x13\\x74\\x23\\x62\\x7a\\x79\\x9f\\x24\\x23\\xb7\\xfb\\x7f\\xbf\\xb2\\x86\\xcc\\x45\\xcf\\x2f\\xbc\\x88\\xe7\\x0b\\xa5\\x2b\\x11\\xbd\\x90\\xa0\\xab\\x78\\xb2\\x52\\x53\\x6c\\x56\\xb9\\x42\\x2f\\x37\\x92\\xe2\\x81\\x44\\x22\\x5e\\xa8\\x78\\x60\\x04\\x4b\\xe1\\x13\\xa8\\x8f\\x8e\\xc6\\x81\\xc1\\x94\\x98\\xcb\\xa3\\xf7\\x60\\xdc\\xc2\\x18\\x45\\x4a\\x68\\x9c\\xaa\\xc3\\x8e\\x71\\xfa\\x4c\\x33\\x82\\xdd\\xdd\\x6b\\x1a\\xb2\\x5f\\x3c\\xdb\\xb8\\xb6\\xcb\\x1d\\x34\\xe3\\xc5\\x7b\\xce\\xdc\\x9c\\x6d\\xcb\\xc3\\x10\\x2e\\xc6\\x3c\\x5b\\x36\\x7b\\xcc\\xbb\\xdd\\x91\\x9f\\x1c\\x11\\xc2\\xed\\x52\\xa8\\x0d\\x8d\\x6b\\x3b\\x99\\xd5\\x6d\\x3b\\x86\\x3c\\xde\\xd7\\x70\\xae\\xd6\\xf0\\xce\\x36\\x02\\xba\\x21\\x1e\\x72\\x36\\x8f\\x7a\\xb2\\xe7\\xb5\\x3a\\x09\\xe6\\x14\\xde\\x3b\\x66\\xd1\\x5a\\x55\\x2d\\x25\\x8d\\x7a\\x08\\x92\\x25\\x83\\x10\\x44\\xd2\\x8f\\x43\\x80\\x01\\x82\\x1d\\x27\\x84\\x00\\xd1\\x48\\x07\\x43\\x27\\x01\\x8f\\x82\\x82\\xa8\\x26\\x5a\\x11\\x28\\x11\\x87\\x19\\xec\\x48\\xb5\\xe3\\x9e\\x4a\\x40\\x32\\x26\\xa3\\xd4\\x53\\xea\\x6d\\x0c\\xf4\\x93\\xcc\\x2a\\x37\\xad\\xc0\\x30\\x25\\x09\\x99\\x24\\xaf\\xe8\\xd9\\x83\\xe2\\x1d\\x6c\\x7a\\xeb\\x78\\xa5\\x7b\\xd8\\x91\\x94\\xbf\\xa9\\x6c\\xed\\xef\\x7e\\xd5\\x89\\x13\\xf7\\x8e\\xdf\\x1d\\xd4\\x7b\\xcd\\xeb\\xeb\\x0a\\x57\\xe4\\x27\\xd9\\xe7\\x64\\xee\\x3c\\x16\\x06\\x33\\xc5\\x3b\\xa0\\x93\\x09\\xea\\x5c\\x53\\xa7\\x8f\\x94\\x7f\\x12\\x11\\x55\\xb1\\xfd\\x95\\x6d\\x07\\x37\\x1c\\xd8\\xfa\\xe2\\xf6\\x0a\\x79\\xc4\\xa9\\x88\\xe8\\x2b\\x6f\\x3a\\xb0\\x01\\x71\\xc8\\x8d\\xfb\\x74\\x84\\x7f\\xc1\\x17\\x31\\xdf\\x83\\xc2\\x4b\\x42\\x66\\x75\\xb5\\x56\\xe5\\x67\\x44\\x72\\x5c\\xc6\\x05\\x52\\xe6\\x0d\\xd3\\xf2\\x36\\xa7\\xe7\\xd8\\xba\\xa6\\x6f\\x4a\\x58\\xd8\\x31\\xb3\\x0c\\x95\\x23\\xe5\\xe5\\xa3\\x55\\x46\\x63\\xe5\\x68\\x59\\xc5\\x68\\xa5\\xe1\\xf1\\x50\\x25\\x3e\\xc1\\x24\\xa9\\x42\\x43\\x55\\x38\\xdb\\x3d\\x49\\x19\\xf2\\x2e\\x69\\x41\\xbe\\x31\\x54\\x8c\\xe2\\x96\\x95\\xc6\\x47\\xc3\\x35\\x49\\x0a\\x3c\\xa2\\x41\\xa1\\xaa\\x64\\xda\\x52\\xdc\\x41\\x24\\x26\\x67\\x75\\x0f\\xd4\\xda\\x33\\x5a\\x17\\x15\\x36\\x16\\x2d\\x6a\\xcb\\xb0\\xd7\\x0e\\xba\\x63\\x4c\\x89\\xd1\\x6a\\xb3\\x2b\\xae\\x11\\xc3\\xac\\xa9\\x63\\x12\\x8c\\xd1\\xde\\xc2\\xc2\\xc5\\xad\\x19\\x19\\xad\\x8b\\x49\\x1b\\xf2\\x62\\x51\\x51\\x1c\\x46\\x36\\x53\\x9b\\x33\\x71\\x1b\\xdf\\x8b\\x4b\\xa9\\xe4\\xa5\\xeb\\xe9\\x28\\x5e\\x4f\\x56\\x7e\\x3f\\x32\\xa2\\x74\\x14\\xf4\\x80\\xdd\\x14\\x8d\\x98\\x0c\\xe9\\x74\\xeb\\xc6\\x43\\xe2\\x26\\x21\\x03\\xe7\\x54\\x45\\xa7\\xdd\\x67\\x3d\\x1e\\x7f\\xfd\\x74\\x76\\xe4\\xb2\\x17\\x36\\x97\\x38\\xfa\\x9c\\xae\\x3e\\xbb\\x67\\xce\\xde\\xee\\x9a\\xb5\\xdd\\xce\\x9c\\xb1\\x1b\\x46\\xd5\\x9e\\xee\\xb2\\xcf\\xbb\\x67\\xa4\\x24\\x66\\xb8\\x95\\x25\\xab\\x6e\\x1b\\x09\\x97\\xc9\\x1e\\x13\\x64\\xd0\\x37\\xff\\xd6\\x65\\x05\\xe9\\xdd\\x1b\\x5b\\x52\\xf2\\x77\\xee\\xdc\\x98\\x91\\x9e\\xd7\\x53\\xac\\x87\\x7f\\x16\\x1c\\xe9\\x4a\\x75\\xe5\\xb5\\x77\\x21\\x8e\\xc6\\x19\\xac\\xe6\\x9f\\x26\\xf1\\xab\\x78\\xbe\\x39\\xc9\\xb8\\x64\\xa4\\xd9\\x92\\x63\\x23\\x78\\x84\\xc7\\x45\\x4f\\x01\\x84\\xb1\\xeb\\xc3\\xa5\\x9e\\xc6\\xfd\\x6c\\x92\\xc1\\x14\\xa0\\x2b\\x06\\x2b\\x78\\xcc\\x57\\x4f\\xfe\\xf8\\x24\\xfe\\xbf\\x55\\x65\\xcd\\x37\\x9a\\xf2\\xad\\x2a\\x95\\x35\\xcf\\x64\\xca\\xb3\\xa9\\x16\\x28\\x92\\x92\\x62\\x14\\x49\\x3a\\xc5\\xeb\\xe2\\x9b\\x90\\xce\\x2e\\x39\\xb3\\x1f\\xc3\\xdd\\x5c\\xc5\\x2e\\xbc\\xdd\\x5a\\xe1\\x8c\\x8b\\x73\\x56\\x58\\xff\\x6c\\x2d\\x27\\x2f\\xca\\xad\\x21\\x8e\\x8c\\x0c\\xc7\\xb3\\xa9\\x4e\\x67\\xaa\\xf7\\xc3\\x21\\x8a\\xeb\\xce\\x5e\\xc9\\x8d\\xd3\\xba\\xff\\x0a\\xcc\\xaf\\x98\\x48\\x01\\x30\\xbf\\x80\\xf5\\xd1\\x85\\xa1\\xb4\\x0d\\x12\\xce\\x8d\\x5b\\xcf\\x7e\\x33\\x51\\x35\\x71\\xc9\\x35\\xab\\x37\\xed\\xbf\\x44\\x8c\\xd9\\xba\\x63\\x07\\x1c\\xe4\\xbe\\x17\\xaf\\xa5\\x45\\x67\\x12\\xc5\\xdd\\xb0\\xdc\\xfb\\x31\\x60\\x90\\x0b\\xf8\\x35\\x39\\xf0\\xd1\\x7a\\x70\\xbe\\xba\\xf0\\x56\\x7c\\x5f\\x63\\x52\\x14\\x83\\xef\\x6b\\xa2\\xab\\x82\\xc3\\x93\\x90\\x93\\xfa\\xaa\\x97\\x53\\x3f\\x69\\x36\\x48\\x68\\x72\\x66\\x33\\x17\\x3d\\xf3\\xd1\\xe1\\x9a\\xed\\xcb\\x67\\x57\\x98\\x6c\\xb5\\xc3\\x2b\\x36\\x95\\x8d\\xde\\xbf\\xad\\xc9\\x8b\\xb2\\x77\\x37\\xf5\\x3f\\xd2\\x2d\\x5e\\x51\\xbf\\x27\\x97\\x89\\x77\\x5f\\xde\\xef\\x2e\\xb4\\xd6\\x8d\\xac\\xdf\\xd7\\xd8\\xb8\\x6f\\xfd\\x48\\x9d\\xb5\\xed\\x8a\\xdf\\xac\\x48\\x17\\x1f\\x76\\xe5\\xe7\\x17\\xb3\\x29\\xa5\\xb9\\xe2\\x97\\x90\\x98\\x55\\x88\\xb5\\xc8\\xc1\\xb3\\xdf\\x71\\xa7\\xf8\\xbb\\x50\\x3a\\x3c\\x73\\x56\\xcf\\x7c\\x9e\\x7b\\x18\\x99\\x61\\xa5\\x19\\x41\\x24\\xbc\\x08\\x37\\x21\\x84\\xdf\\xd3\\x73\\x16\\xf3\\x39\\xd1\\x2a\\x71\\xfb\\x78\\xdc\\xfe\\x23\\xfe\\x51\\xdc\\xfe\\xb9\\xb3\\x51\\xcc\\x17\\x52\\x7b\\xc3\\xf7\\xb4\\xfd\\x0d\\xb4\\x7d\\x34\\x6d\\xff\\x85\\x5f\\x2f\\xfd\\x5e\\xf2\\x9b\\xc5\\x9d\\xfd\\x2f\\xc6\\x07\\x78\\x18\\x5f\\xf7\\xc2\\xd9\\x70\\xe6\\x6b\\xe9\\x3a\\xa5\\xf4\\x9c\\xf5\\x67\\xbd\\x81\\xeb\\xbe\\xa6\\x6a\\x2c\\xfb\\xf0\\x59\\xaf\\x74\\x5d\\x35\\x7e\\xde\\x9f\\xf8\\x5f\\xe3\\xeb\\x7e\\x7b\\xb6\\x88\\xf9\\x52\\xba\\xee\\x27\\xe9\\xba\\x03\\x53\\xe8\\xfb\\x92\\x6a\\xbd\\x0c\\x5a\\x82\\xe7\\xf6\\x1c\\x5e\\xc4\\x1c\\x2d\\xc2\\x3c\\x75\\xd9\\x12\\xa2\\xc9\\x58\\x61\\xc1\\xe2\\x43\\xa7\\xb2\\x50\\x31\\x73\\x7e\\x15\\xf2\\xf3\\x30\\xf5\\xd3\\x58\\xa6\\xb6\\x75\\x5f\\x41\\x64\\x61\\xe7\\x78\\xa9\\xa5\\x28\\x27\\x27\\xd9\\x16\\x57\\x54\\xdf\\x93\\xb3\\xe3\\x8f\\x07\\x1a\\xcb\\x37\\xe3\\x9c\\xe1\\xc7\\x37\\x97\\x17\\xad\\x39\\x79\\xb0\\xb8\\x2b\\x5b\\x13\\xeb\\xe9\\x2c\\xc2\\x88\\xaa\\x9a\\x10\\x63\\x4e\\x03\\x17\\x92\\x5b\\xd0\\xbd\\x7f\\x24\\x47\\x08\\x53\\x84\\xbf\\x1c\\x1e\\xa7\\x0c\\x5f\\xfc\\x07\\xf1\\xd5\\xdf\\xe4\\xef\\xf9\\xf6\\xfe\\xd1\\x96\\xbd\\xcf\\x2e\\x53\\x8e\\x61\\x2c\\xd1\\x0f\\xd3\\x5b\\x17\\xe4\\x51\\x3c\\xfd\\xdc\\xc1\\x4b\\x6b\\xc7\\xd4\\xae\\x94\\x38\\xba\\x87\\x5f\\x77\\x36\\x98\\x33\\xe1\\x39\\x26\\xc3\\x3a\\x93\\x40\\x74\\x26\\xde\\x1f\\xa8\\x6d\\xc2\\xe7\\x94\\x5b\\xc5\\xcf\\xd9\\xcb\\xbf\\xe7\\x5f\\xf9\\xc9\\x2d\\xdc\\x86\\x68\\x7b\\x93\\xf8\\x5f\\xee\\x51\\x32\\x27\\x71\\xfb\\x20\\x16\\xb7\\x07\\x20\\x5b\\x35\\x00\\xb1\\x52\\x00\\x7b\\xb9\\xa8\\x61\\x63\\x4f\\x2f\\x64\\x8a\\xbd\\xcf\\x70\\x8b\\xbc\\x51\\xf0\\x19\\x53\\xe9\\xdd\\xf7\\xd1\\xaf\\x98\\x57\\x99\\x67\\x0f\\x7d\\xe4\\xfd\\x95\\x74\\x8f\\xab\\x98\\x6e\\xf6\\x6b\\xb6\\x00\\xb1\\xe4\\x6c\\x73\\xbe\\xe6\\x28\\x8f\\xa2\\x9a\\x23\\x5e\\x52\\xec\\xd7\\x67\\x8e\\xb1\\xbd\\x4c\\xf7\\x27\\xf4\\xb9\\x08\\x71\\xc3\\xf8\\xb9\\x21\\xf8\\xb9\\x3c\\x7d\\xae\\x3a\\x1b\\x5c\\x60\\x60\\xf1\\xec\\x67\\x2c\\x91\\x2a\\xc8\\xfa\\x44\\xac\\xff\\xe2\\x99\\xf7\\x61\\x3d\\x78\\xea\\x3a\\xb8\\xc5\\x38\\xae\\x4a\\xfd\\x09\\x7e\\x42\\x0e\\xfa\\x8e\\x7b\\x99\\xfd\\x23\\xb2\\xa1\\x62\\x34\\x13\\x85\\x3c\\xd4\\x5c\\x91\\x9b\\x16\\xcb\\xb1\\x93\\x62\\xd7\\x12\\xc1\\x9e\\x23\\x7d\\x7d\\xb1\\x29\\x01\\x21\\x2c\\x53\\xd2\\x18\\x95\\x29\\x58\\xb7\\x6e\\x5f\\x5d\\x62\\xee\\x65\\x4b\\xc3\\xb2\\x86\\x8c\\xb6\\xea\\x5c\\x95\\x3a\\xb7\\xaa\\x2d\\xbd\\x61\\xa2\\xd1\\x6c\\x6e\\x98\\x68\\x48\\x6f\\xaf\\xca\\x55\\xab\\x72\\xab\\xdb\\x33\\xf0\\x1b\\xcb\\xab\\xa1\\xda\\x54\\xbd\\x31\\xdf\\x1e\\x0b\\x10\\x6b\\xcf\\x37\\xe8\\x1d\\xda\\x50\\x2f\\x87\\x81\\x5f\\x93\\x93\\xa5\\xcf\\x52\\xf2\\x8d\\xe4\\x33\\xa6\\xad\\x71\\x53\\xaf\\x0b\\x07\\x88\\x58\\x2c\\x35\\x9e\\x24\\x57\\xef\\xa6\\x46\\x63\\x23\\x0e\\x8e\\xd4\\x65\\x55\\x98\\xcd\\x15\\x59\\x3a\\x17\\x86\\xda\\x4b\\xce\\xb5\\xa9\\xec\\xd9\\xae\\xa0\\xa8\\xe0\\xec\\x82\\x34\\xa5\\x35\\xc7\\x68\\xcc\\xb1\\x2a\\xd3\\x0a\\xb2\\x83\\xa3\\x82\\x5c\\xd9\\x76\\x95\\x2d\\x37\\x19\\x01\\xfa\\x5c\\xac\\x67\\xbf\\x15\\x1c\\x28\\x09\\xf3\\x49\\xc1\\x91\\xf1\\x3c\\x37\\xea\\x61\\xaa\\x1d\\x91\\x24\\x69\\x33\\x9f\\xd2\\xe0\\x87\\x42\\x53\\xa8\\xa2\\x30\\x36\\x27\\xcf\\x33\\x77\\x7f\\xaf\\xad\\xd1\\xaa\\x51\\xa6\\xea\\xea\\x9a\\x92\\x67\\x5f\\x3d\\xea\\xc1\\xe1\\x0f\\x32\\xa1\\x7f\\x06\\xf7\\xfb\\xde\\xbd\\x83\\x99\\x61\\xc1\\x7f\\xe6\\xf9\\xd6\\xfa\\xd3\\x69\\x54\\x8e\\xec\\x45\\x5f\\x73\\x2d\\x5c\\x10\\xd2\\xa3\\x72\\x3c\\xe7\\xcb\\x33\\xf5\\x51\\x78\\xce\\x13\\x50\\x0f\\x0f\\x66\\xe3\\xb9\\x7b\\x6d\\x1a\\x2b\\xc3\\x62\\x44\\xf6\\x33\\xdf\\x1d\\xca\\x58\\x5b\\x66\\x2d\\xce\\xf5\\x24\\x25\\xba\\xdc\\xf9\\xa6\\xb2\\xe5\\x19\\x21\\x19\\x8b\\xca\\x4c\\xf9\\x1e\\x57\\x62\\x52\\x76\\x6e\\xb1\\xb5\\x6c\\x63\\x86\\x22\\x63\\x99\\xbf\\x85\\x07\\xb7\\x58\\x8b\\x5b\\x2c\\xc7\\x2d\\xdc\\xb8\\x85\\x07\\xb7\\xc0\\x1f\\xb0\\x13\\x95\\x8d\\x10\\x8a\\x8b\\x07\\x46\\xc6\\xc6\\x84\\x34\\x56\\xfe\\xa1\\xb2\\x31\\x04\\x57\\xd4\\xc4\\x95\\x05\\x43\\xa1\\xb1\\xf2\\x9d\\x9f\\xf9\\x0e\\xf9\\x72\\x23\\x36\\x73\\x75\\x5c\\x2b\\x8a\\xc1\\xbc\\x0b\\x63\\xc8\\x1c\\xd3\\xcb\\x2c\\xa4\\xb0\\x61\\xb6\\x1e\\xff\\xaa\\x65\\x2e\\x9c\\x67\\xa6\\xe7\\xea\\xbc\\xaf\\xb5\\xaf\\xcb\\x3c\\x05\\x7d\\x8b\\x44\\x0f\\x53\\xd1\\xb1\\x36\\xeb\\xf7\\xe2\\xfd\\x8b\\xe0\\x11\\x48\\xbc\\xbe\\xb8\\xff\\x93\\x57\\x4f\\x1d\\x2d\\x1e\\x3c\\xf5\\xaa\\x74\\x8e\\xbe\\x13\\x19\\x38\\x1d\\xf7\\x19\\x1a\\x45\\x89\\x28\\x02\\x84\\x12\\x2c\\x35\\x40\\x06\\x3b\\x50\\x92\\xf7\\x65\\x49\\xea\\x80\\xe0\\x93\\x56\\xde\\x97\\xf1\\x0b\\x7a\\xcd\\x71\\x94\\xcc\\xa5\\x73\\xff\\xc2\\xd7\\x24\\xa1\\x10\\x88\\x08\\x5c\\xa3\\xf5\\xbe\\xe4\\xbb\\x26\\xc2\\x7f\\xcd\\x4b\\xf8\\x05\\x1d\\x87\\x4b\\x09\\x86\\x28\\x5e\\x1b\\x3c\\x0a\\xc7\\xe3\\x10\\x16\\xc4\\x92\\x7d\\x15\\x5c\\x00\\x06\\xd0\\xb3\\x16\\x19\\x1b\\x83\\x97\\xca\\xb7\\x5f\\xc2\\x4a\\x71\\xf7\\x97\\xe2\\x2e\\xe6\\xc9\\x27\\xd4\\xb1\\x8f\\x3f\\xa3\\x54\\x61\\xbb\\xbb\\xc5\\x6b\\x63\\xfe\\x02\\x77\\x57\\x54\\x88\\xed\\x62\\x4b\\x79\\x09\\x42\\x00\\x8a\\xb3\\x5d\\x4c\\x02\\xfa\\x09\\x85\\x62\\x1e\\x84\\xf0\\x90\\x31\\xd5\\x3e\\xc3\\x24\\xc4\\x98\\x72\\x2d\\x4b\\xcd\\xa6\\x27\\x1f\\xb0\\x0f\\xf4\\xcd\\xd4\\x37\\x14\\x6f\\x69\\xa8\\x41\\x2a\\xd4\\x89\\x42\\xb8\\x4b\\x39\\x01\\x3f\\x3d\\x1e\\xa5\\xa0\\x3c\\x54\\x82\\xaa\\x50\\x03\\x6a\\x43\\x3d\\x68\\x00\\x0d\\xe3\\x9e\\x2c\\x44\\x4b\\xd0\\x32\\xb4\\x0e\\x6d\\x44\\x5b\\xd0\\x76\\xb4\\x0b\\xed\\x43\\x07\\x08\\x1e\\xeb\\x95\\x57\\xec\\xdd\\xbd\\x73\\xc7\\xb6\\xad\\x97\\x6e\\xda\\x70\\xc9\\x9a\\xe5\\x4b\\xc7\\x17\\x8d\\xcd\\x9f\\x37\\x77\\xce\\xe0\\xec\\xbe\\xde\\xae\\xf6\\x96\\xa6\\x9a\\xea\\x8a\\xd2\\x82\\xfc\\xdc\\x2c\\xb3\\x2e\\x36\\x22\\x98\\x51\\xe1\\x0e\\x49\\x9b\\xad\\x52\\xda\\x7a\\xd5\\xd4\\xa7\\x6a\\xf1\\x55\\xe9\\x90\\x5b\\x14\\x78\\x2e\\x91\\x70\\x5c\\x82\\x28\\xa3\\xe4\\xa5\\x77\\x06\\xdf\\x2e\\x6d\\x00\\x92\\x44\\x40\\x0e\\x14\\xf8\\x2f\\x79\\x6d\\x50\\x9a\\xc8\\xbf\\x6e\\xc0\\x6d\\x15\\xc4\\x99\\xc5\\x92\\x06\\x6e\\xda\\x44\\x19\\x33\\xf5\\xb5\\x8b\\xb4\\x30\\x18\\x78\\x02\\x90\\xe9\\xfb\\x85\\xa9\\xaf\\xbf\\xac\\xca\\xcd\\xad\\xaa\\xce\\xcd\\xad\\xbc\\xc1\\x95\\x1b\\x1f\\xaf\\x56\\x17\\x65\\x8f\\x76\\x59\\x0d\\x46\\x9b\\xcd\\x60\\xb0\\x31\\x11\\x89\\x6a\\xad\\xce\\x55\\x90\\xe1\\xc8\\xcb\\x3c\\xb3\\xbf\\x68\\x8c\\xf9\\xcb\\xa2\\xc2\\xd3\\x7f\\xba\\x73\\x8c\\x2d\\xbf\\xb3\\x50\\xac\\x4c\\x88\\x8b\\x4b\\xa8\\x32\\x5e\\x53\\x7e\\x8d\\xf7\\xc4\\xa1\\x72\\xe9\\xcf\\xa8\\x4b\\x9f\\x54\\xea\\x12\\x5b\\x8b\\xe8\\x0f\\xfb\\x8f\\x42\\xfa\\xc3\\x98\\x3c\\x65\\x65\\x9e\\x22\\xf2\\xcf\\x2a\\xbb\\x5d\\x6d\\x09\\x0a\\x4e\\x56\\xda\\xad\\xe2\\x9b\\xab\\xcc\\x76\\xbb\\xb9\\x88\\xfc\\x33\\x53\\x93\\xa8\\xd1\\xa6\\x39\\x32\\x1d\\x6f\\x78\\x17\\xdc\\xb3\\xa4\\xb8\\x78\\xc9\\x3d\\xec\\xc0\\xf5\\x25\\x7d\\x7d\\x25\\xd7\\xf7\\x89\\x4e\\xad\\x4a\\xa9\\xe9\\x83\\xd7\\x4b\\xe8\\xcf\\x99\\x8a\\x62\\xfa\\xc3\\x8c\\x44\\xa9\\x53\\xdb\\x76\\x8a\\xb7\\x5d\\x0e\\xaa\\xcb\\xc5\\xdb\\x7c\\x2f\\x10\\xe2\\x11\\x46\\x98\\xe3\\xee\\x0d\\x5a\\x86\\x58\\x64\\xa3\\x3a\\x91\\x1b\\x45\\x96\\x84\\x65\\x65\\x66\\xa4\\xa5\\xa6\\x44\\x73\\x0c\\xe2\\x33\\xec\\xc1\\x2c\\x4f\\x0c\\x9b\\x45\\x6c\\x20\\x4c\\xc9\\xe5\\xa1\\x5c\\x97\\x2a\\xc5\\x28\\xd5\\x06\\xa5\\x8b\\xc5\\xdc\\x25\\xbf\\xcc\\x10\\xd3\\xe8\\xbd\\xcf\\x7b\\x37\\xf3\\xa8\\x10\\x26\\x0f\\x55\\x39\\x8c\\x6a\\x53\\xe5\\x48\\x49\\xce\\x60\\xad\\x1d\\x5e\\x61\\x6c\\x1a\\x53\\x92\\x5c\\x13\\x17\\x92\\x60\\x50\\x06\\xbd\\xfc\\xf2\\xcb\\x63\\x1c\\xc7\\x70\\x9c\\xd0\\x76\\xc6\\x79\\xc6\\xc9\\xbe\\x7e\\x3a\\x16\\x27\\x6f\\x46\\xe9\\xb2\\x73\\x4b\\x6c\\x25\\xa3\\xb5\\x96\\xc4\\xd2\\xb9\\x55\\xd9\\x19\\x25\\x59\\x5a\\x57\\xba\\x25\\xdc\\x68\\x35\\x67\\x66\\xf4\\xdc\\xe9\\xed\\xe0\\x42\\x8e\\x70\\x88\\x41\\x0f\\xe3\\xba\\x9f\\x39\\xdc\\xf5\\x04\\xf7\\x09\\xcf\\xff\\x04\\x75\\x24\\x47\\xe6\\xff\\x05\\xe0\\x50\\xa8\\xc4\\x53\\xb8\\x32\\xdd\\x5c\\x4e\\xf1\\xf2\\x5b\\x46\\x47\\x6f\\x5d\\x51\\xec\\xff\\x2b\\x7e\\x71\\xbc\\xa3\\xfd\\xf8\\x1d\\xf0\\xfb\\x15\\xf7\\xaf\\x2d\\x2e\\x5e\\x7b\\xff\\x8a\\x53\\x2b\\x68\\x8d\\xab\\x07\\x56\\xca\\xbf\\x59\\xb7\\x46\\xf4\\x7e\\xfb\\xad\\x64\\xb3\\xb0\\x21\\xc4\\xde\\xc2\\x26\\xa1\\x78\\x92\\xa7\\xe4\\xcf\\x31\\x07\\x0e\\x68\\x26\\x37\\xb1\\x9a\\xc3\\xb0\\x3f\\x8f\\xbb\\x10\\x35\\x68\\x8c\\xd1\\x96\\x28\\x3e\\x88\\x94\\x10\\x70\\x03\\x9d\\xab\\x84\\x04\\x03\\xa1\\xc8\\xc7\\x30\\x99\\x9e\\xbd\\xc5\\x7b\\x35\\xe8\\x72\\x9d\\xce\\x8c\\xdc\\x9c\\x97\\x52\\x5a\\xc6\\xab\\x0f\\xdc\\x18\\xe7\\x69\\xf1\\xac\\x80\\xe1\\x6d\\xc0\\x66\\xce\\xd4\\x58\\x32\\xca\\x1d\\x39\\xc3\\xf5\\xf6\\xcd\\x2b\\x53\\x6b\\xaa\\x6a\\xec\\x7d\\x92\\x5d\\x35\\x89\\xfb\\x82\\x3d\\x2b\\x7c\\x4d\\x6c\\x27\\xb8\\xcf\\x66\\x15\\x4f\\xd7\\x3c\\x86\\x0b\\x30\\x98\\x5c\\xd9\\xbe\\xae\\xd3\\x5d\\xca\\x7f\\x70\\xa6\\x7b\\x18\\x7b\\xf6\\x95\\x63\\xc7\\x5e\\x05\\xcd\\xbd\\x77\\x29\\x4c\\x2e\\x5d\\xb2\\x27\\x23\\x3d\\x3e\\x4c\\x19\\x19\\x3c\\x84\\x5d\\x2a\\xba\\x78\\x77\\x96\\x4b\\x1b\\xa6\\x8a\\x0c\\xe6\\xbe\\xb8\\xfa\\xea\\x1f\\xbe\\xd2\\x97\\x64\\x26\\x2a\\x34\\x8a\\xc8\\xd8\\xa4\\xe8\\x78\\xfc\\x5a\\x87\\x5f\\x47\\xc5\\x19\\xa2\\xc9\\xb3\\xa3\\xb8\\x2f\\xb8\\x27\\x85\\xfb\\xf0\\xb3\\xb5\\xf8\\xd9\\x72\\xd9\\xd4\\x67\\xf3\\x16\\x9f\\x47\\x3d\\xdb\\xd7\\x41\\x35\\xfb\\x2f\\xfa\\x4c\\xf5\\x49\\x88\\x86\\x9c\\x22\\x4d\\x4a\\xbe\\x81\\xdb\\xb0\\x5e\\xa9\\xb7\\x2b\\x81\\xfb\\x62\\xcf\\x9e\\x2f\\x17\\x6c\\x8c\\xd3\\x46\\xc7\\x46\\xca\\xda\\x1b\\xcb\\x12\\x53\\x13\\xe5\\x6c\\x21\\xed\\x1f\\xd6\\xbe\\xbe\\xe7\\x22\\x85\\xfd\\xf8\\x19\\x21\\x24\\x32\\x92\\x91\\xf0\\xf5\\x38\\x86\\x9b\\x40\\x2c\\x43\\xa0\\x5c\\xc7\\x01\\x10\\x5a\\x8a\\x18\\xa6\\x88\\xa1\\xb9\\x22\\x84\\xcd\\x01\\x22\\xf0\\xe4\\xe3\\x22\\xff\\x7c\\xcd\\x35\\x7f\\x01\\xdd\\x4d\\xe2\\xe5\\xc7\\x3e\\x3c\\xc5\\x7d\\x7f\\xe9\\xa5\\x5f\\x0e\\x40\\x04\\xf2\\xd1\\xcf\\xdb\\x85\\xcb\\xc8\\xbd\\x31\\xfd\\xc1\\x32\\x46\\x92\\x97\\x3c\\xb9\\x18\\x5c\\xac\\x81\\x49\\xbf\\x09\\x74\\x7f\\xc1\\x57\\xb3\\x9e\\x4f\\x3f\\x3a\\xc6\\xff\\xe9\\xcb\\x4b\\x2f\\x85\\x6b\\xc5\\xaf\\xe9\\xb5\\x4e\\x6e\\x27\\xfb\\x86\\xf0\\x36\\x9e\\x6b\\xb1\\xf8\\x5a\\x8d\\x8a\\xa3\\xd7\\x4e\\x3b\\x95\\x59\\x0c\\x16\\x3d\\xfb\\x46\\x7a\\xe7\\x25\\x8d\\x8d\\xeb\\x3b\\xd3\\x7f\\x1b\\xa9\\xcf\\x32\\x99\\x5c\\x49\\x11\\xb2\\x77\\x5e\\x87\\x08\\xfe\\x44\\xe9\\x58\\x93\\xdd\\xde\\x34\\x56\\xaa\\x49\\x25\\x66\\xb5\\x54\\x4d\\xcb\\xdb\\x74\\x6e\\xbd\\xc5\\xb5\\x60\\xdb\\xbb\\x76\\x52\\xf6\\x06\\x3c\\x08\\x98\\xae\\xb7\\x54\\x16\\xb7\\x6e\\x7f\\x9c\\x95\\x79\\x8f\\x7b\\x2b\\x6b\\x68\\x46\\xb9\\xb2\\xc9\\xb9\\xa9\\xf9\\x12\\x2a\\xff\\x55\\x08\\x71\\x0f\\x73\\x7b\\x90\\x0c\\x85\\x90\\xea\\x12\\x21\\xc0\\x31\\x64\\x56\\x72\\xcc\\x84\\x2f\\x15\\x69\\x88\\x85\\x80\\x11\\x9c\\xf2\\xc9\\xa4\\x97\\x05\\x30\\x49\\xeb\\xc4\\x9c\\x16\\xf1\\x14\\xfc\\x16\\x22\\xe0\\x77\\xb8\\x6c\\x67\\x3a\\x64\\x5e\\xfb\\xde\\x7b\\xdc\\x9e\\xd3\\xcb\\xe0\\x0e\\x38\\x4a\\xf3\\x38\\x6f\\xc4\\xf7\\x5f\\xc0\\xed\\xa1\\x35\\x97\\x28\\xda\\xa1\\xaf\\xe6\\x92\\x0f\\x0c\\x2f\\x50\\x7b\\x29\\xe0\\x5c\\x2f\\x94\\x2a\\x2e\\x59\\xcd\\xe7\\x56\\x5c\\x0a\\xba\\x50\\xc5\\x25\\xb9\\x4b\\x92\\xe4\\x16\\x97\\x3f\\x6f\\xee\\x46\\x78\\x7d\\xe1\\xc9\\x0d\\x95\\x5d\\x7d\\xd9\\xb8\\x98\\x54\\xf1\\xea\\xbb\\xc6\\x3e\\xf9\\xa4\\xa7\\x6f\\x66\\xd7\\x3f\\x7f\\xdf\\xd6\\x13\\x8b\\xf1\\x0b\\x5e\\xe1\\xf6\\x98\\x9b\\xd7\\xce\\x68\\xbf\\x2c\\x39\\x3c\\xab\\xaa\\x35\\xa5\\x6b\\x63\\xab\\x19\\xbe\\x10\\xbf\\xad\\xcd\\xae\\xa8\\x82\\x27\\x98\\x82\\x52\\x3c\\xb1\\x23\\x7c\\xf9\\x3c\\x58\\x2e\\x74\\x60\\xb9\\x60\\xa3\\xf6\\x7b\\x86\\xe5\\x59\\x86\\x1f\\x17\\x80\\x40\\xc2\\x71\\x8b\\x03\\xd1\\xe4\\x1c\\x47\\x4d\\x66\\x95\\x34\\x19\\xcd\\x86\\x6c\\x18\\x18\\x02\\x63\\xd9\\x91\\xc9\\x74\\xbe\\x66\\xe8\\x87\\x86\\x08\\x28\\xec\\x5c\\x3b\\x3f\\xf3\\xf2\\xfb\\x86\\x26\\x9e\\xdc\\xd9\\xd8\\xb2\\xf3\\x91\\x05\\x4b\\x1e\\xda\\xd6\\x1a\\x24\\x7e\\xbe\\x71\\x71\\xc6\\x8c\\x22\\xa3\\xa9\\xa4\\x33\\x2b\\xb5\\xad\\xd8\\x04\\xfb\\x16\\x5e\\x3f\\xe2\\xac\\xdb\\xf6\\xf8\\xd2\\x93\\x13\\x8f\\x6f\\xaf\\xf3\\xe0\\x77\\xfd\\xa3\\x29\\x0d\\xf3\\x4b\\x7e\\x5d\\xb9\\xb0\\xce\\xa2\\x4c\\xab\\xf3\\x90\\x31\\xa4\\x75\\x0f\\x97\\x60\\x1e\\x87\\xa3\\x38\\xea\\x1d\\x44\\x3c\\xb0\\x0c\\xf2\\xf1\\x94\\x93\\x78\\x1a\\x81\\xfb\\x15\\x11\\x17\\xa1\\x95\\x47\\xe2\\x66\\x61\\x7a\\x61\\x92\\x9f\\x01\\x56\\xfa\\x0d\\x02\\xd7\\xc3\\xb3\\x8b\\x9e\\xde\\x37\\x63\\xc6\\xde\\xc7\\xe6\\x3d\\xf4\\x50\\x56\\x67\\xb1\\xd1\\x50\\xd2\\x9b\\xc7\\xed\\x69\\xbc\\xec\\xa1\\x85\\xb7\\x8f\\x3d\\xb8\\xb5\\x9e\\xbd\\xc7\\x9b\\x6e\\xa9\\x1e\\x29\\xb9\\x23\\x7f\\x6e\\x5d\\x0a\\xe1\\x15\\x1e\\x69\\x2e\\x07\\x3f\\x3f\\x94\\xe6\\x7e\\xb1\\x88\\xe3\\x59\\x6e\\x10\\xf1\\x48\\xb2\\xdf\\x05\\x8c\\x76\\xe7\\xf9\\x51\\x94\\xe4\\x97\\x58\\x4c\\xde\\xf5\\xbe\\xc3\\xac\\x3b\\xb3\\x98\\x3d\\xe4\\xdd\\xc8\\x98\\xe0\\x9f\\xe2\\xbf\\xf0\\x0c\\xfa\\xe0\\x23\\x04\\xe8\\x76\\x7c\\x5f\\x27\\xbe\\x6f\\x30\\xad\\xaf\\x23\\x05\\x20\\x0e\\x06\\x32\\xe4\\xce\\x9d\\x95\\x10\\x70\\x93\\xb0\\x5f\\x7b\\x5f\\x27\\x47\\x0f\\xef\\x3e\\xc6\\x89\\x67\\xa5\\x0b\\xdf\\x4c\\x14\\xe9\\x98\\xf6\\xe3\\x31\\x9d\\x85\\xc7\\x34\\x9d\\x44\\x11\\xda\\x49\\xb0\\x0f\\xcd\\x83\\x42\\x0c\\x2b\\xb0\\x8c\\x30\\x1e\\x18\\x55\\x01\\x51\\x2b\\xd1\\x94\\xd1\\x95\\x63\\x88\\x42\\x3a\\xb2\\x38\\x63\\x61\\xda\\xc8\\xa6\\xb1\\xe7\\x8c\\x6c\\x36\\xd1\\xfa\\xb8\\x59\\x71\\x03\\x9b\\x8f\\xcc\\x5a\\xfd\\xf4\\xf6\\xba\\xb6\\x5d\\x8f\\x2d\\xbc\\xe4\\xd1\\xf5\\x25\\x20\\xfe\\x07\\xf4\\xf9\\xad\\x4e\\x67\\x57\\xb9\\x55\\x57\\x84\\x23\\xd4\\x4b\\x3d\\x29\\x61\\xf0\\x0e\\x7c\\x7d\\x40\\x97\\x97\\x16\\x8f\\x21\\x2a\\x97\\xbc\\xb0\\xe4\\x91\\xad\\xb5\\x79\\xf3\\xae\\xec\\xc2\\xde\\xec\\x68\\x6b\\xed\\x48\\xe1\\x6f\\xf3\\x71\\x9c\\xad\\x10\\x1a\\x19\\xfc\\x18\\xad\\x63\\xb4\\x17\\x21\\x4e\\xc3\\xed\\x99\\x5e\\x6f\\xc8\\xe7\\x4a\\x42\\x01\\x0e\\x9f\\x57\\x6f\\x48\\x23\\x7e\\x29\\x1e\\xc5\\xc7\\x67\\x25\\xcc\\x06\\x25\\xc9\\x14\\xe1\\xf6\\x88\\x6a\\xf8\\x3b\\xb9\\xe7\\xcb\\xf8\\x9e\\xc1\\xdc\\x6e\\xdf\\x3d\\x11\\x2f\\x59\\xa8\\x39\\xf0\\x95\\x65\\x29\\x64\\xa7\\xdc\\x33\\xc6\\x37\\x66\\xc4\\x25\\xf5\\x32\\x5b\\x4c\\x82\\x1c\\xce\\x3c\\x03\\x51\\xe2\\xbf\\xb9\\xdd\\x1f\\x7b\\x73\\x3e\\xfe\\x98\\x79\\x11\\x21\\x3a\\x1f\\x30\\x9f\\x6d\\x98\\xce\\x18\\x9a\\xdb\\x8b\\x18\\x34\\x41\\x52\\x71\\x27\\xfc\\x30\\x24\\x95\\xd0\\x90\\xac\\x30\\x61\\xb7\\x04\\xad\\x41\\xe4\\x3f\\x4a\\xe9\\x15\\xd4\\x6b\\xce\\x46\\x83\\xba\\x66\\xed\\x4d\\x3d\\xf3\\x6e\\x5f\\x59\\xc6\\x80\\xba\\xa7\\xab\\xbe\\x0f\\xb8\\x3d\\xde\\x94\\xb1\\x3b\\x56\\x14\\xba\\x16\\xdc\\xb8\\x78\\xc1\\x08\\xac\\x59\\x8a\\x00\\x1d\\xc6\\x74\\xdf\\x82\\x9f\\x11\\x46\\x9e\\x11\\x22\\x00\\xeb\\x73\\x00\\x00\\xea\\x66\\x25\\x5e\\x44\\xc7\\xc8\\xa3\\xe9\\x33\\x64\\x94\\x0b\\xd9\\x52\\x6d\\xaa\\xcc\\xcd\\x84\\xec\\xb9\\x60\\x86\\x1e\\xb1\\x13\\x1e\\x12\\x1f\\x80\\xc7\\x37\\x88\\xcf\\x62\\x7e\\xc4\\x6c\\x85\\xf9\\xde\\x6f\\xbd\\x1b\\x10\\x50\\x99\\x35\\xca\\xed\\xf1\\xd5\\x5d\\x23\\xb5\\xf0\\x48\\xb7\\x66\\xf9\\x67\\x5c\\x14\\x1b\\xa4\\xb6\\x9b\\x28\\x2f\\xe0\\x51\\xe6\\xee\\x33\\x79\\x10\\x4b\\x84\\x9e\\xd4\\xf7\\xd5\\x24\\xff\\x84\\xd0\\x45\\xd6\\x42\\x10\\x81\\xcc\\x83\\x3a\\x3f\\x98\\x35\\x47\\xdd\\xf5\\x7e\\x79\\x4a\\x4b\\x4e\\x05\\x05\\x4a\\x4e\\x59\\xa4\\x92\\x53\\x8b\\x1f\\x87\\x2c\\xf1\\xea\\x07\\x8f\\x88\\x50\\xc0\\xd4\\x62\\x10\\xbf\\x65\\xcc\\xcb\\x62\\x0a\\xc0\\xdf\\xbd\\xc9\\xe4\\x09\\x80\\xb0\\xbd\\x82\\x53\\xe0\\x97\\xb4\\xd6\\x97\\x8c\\xc1\\xc4\\x91\\x5a\\x5f\\xf8\\x6f\\x37\\xf8\\xba\\x2d\\x8f\\xa6\\xac\\xd5\\xeb\\xc9\\x8d\\xf5\\xc0\\xea\\x39\\x85\\xf8\\x95\\xf8\\x6b\\x10\\xbf\\x02\\x05\\x34\\x02\\x60\\x2c\\x31\\x6f\\x15\\x66\\x69\\x25\\xf3\\x18\\x26\\x6c\\x1e\\x1e\\xab\\x61\\xaa\\xff\\xd8\\x51\\x42\\x89\\x36\\x90\\xb0\\xcc\\xb2\\xfe\\xb9\\x6f\\xc3\\x1e\\x30\\x72\\xc3\\x5f\\x82\\x11\\xc7\\x0d\\xd7\\x6d\\x7b\\x6c\\xe9\\xf2\\xc7\\xb7\\xd5\\xd6\\x6c\\x7b\\x6c\\xf9\\xd2\\xc7\\xb6\\xd7\\x8b\\x7f\\x4f\\xcc\\xef\\xc8\\x29\\xe8\\xc8\\x89\\x8b\\xcb\\xed\\x2c\\xc8\\xee\\xc8\\x4b\\x84\\x53\\x0b\\x1f\\xda\\xd6\\xd0\\xb0\\xed\\xa1\\x85\\xcf\\x91\\x42\\x25\\x0d\\xb8\\x62\\x09\\x14\\x8c\\x34\\xd8\\xed\\x0d\\xa3\\xf9\\xcf\\xe7\\x8f\\x62\\xeb\\x6b\\xe3\\x68\\x3e\\x95\\x6b\\x83\\x67\\x4b\\xb9\\xf9\\x98\\x36\\x0d\\x4a\\x23\\xfb\\xb8\\xc0\\x32\\x64\\x23\\x27\\x2e\\x8b\\xea\\x0b\\xd3\\x69\\xa1\\x74\\x0a\\x02\\x4e\\x1f\\xb3\\x08\\xff\\x93\\xd6\\xf9\\x30\\xd8\\xf9\\xeb\\x3b\\x5e\\x2f\\xae\\x5c\\xfe\\xd4\\x8e\\xba\\xba\\xed\\x4f\\x2e\\x5f\\xfa\\xe4\\xe5\\x8d\\xe2\\xe7\\x49\\x05\\x5d\\xd8\\x24\\x92\\x17\\x1f\\x9f\\xdf\\x5d\\x98\\xd3\\x59\\x90\\x04\\xa7\\xd6\\xbf\\x54\\x71\\xd3\\xaa\\x27\\x23\\xeb\\x2f\\x7b\\x78\\xec\\xb9\\xb1\\x87\\x09\\xed\\x0f\\x8f\\x41\\xe1\\x68\\x7d\\x8a\\xbd\\x7e\\xb4\\xe0\\xf9\\x82\\xd1\\x46\\xbb\\xbd\\x71\\xb4\\x00\\x51\\x9a\\x0f\\x20\\xc4\\x2d\\xc3\\xe3\\x13\\x2d\\xd5\\xf0\\x89\\x24\\x6b\\xd4\\x1f\\xdb\\x3f\\xec\\x97\\x5d\\xbe\\x29\\x60\\xd4\\xa7\\xe8\\x7d\\xf2\\xd0\\x30\\x05\\xa5\\x40\\x06\\x4a\\x3d\\x90\\xb5\\x40\\x4e\\x27\\xcc\\xfc\\xa7\\xf0\\x84\\xfd\\x60\\xf4\\xae\\x4b\\x2a\\x92\\xf2\\xda\\x9c\\x10\\x2a\\xfe\\x49\\x1c\\x7a\\xb1\\x6b\\x2e\\x8c\\x74\\xbd\\x08\\xbf\\x12\\xe7\\x73\\x7b\\x52\\xbb\\xb6\\x74\\x55\\xce\\x6f\\xce\\x53\\x89\\x29\\xa1\\xcc\\x4a\\x68\\xc4\\x3f\\x08\\xd0\\x16\\x3c\\xae\\xbd\\x98\\x77\\xc5\\xb4\\x7a\\x85\\x0f\\xed\\x04\\x71\\x3c\\xc3\\xf1\\x8b\\xa9\\x32\\x82\\x98\\x61\\x7f\\xb9\\x91\\x4a\\xb6\\xa1\\x20\\xcf\\xe3\\x4e\\x77\\x18\\x15\\x69\\x42\\x10\\x41\\x14\\xa1\\x27\\xeb\\x80\\x84\\x9b\\x12\\x88\\x41\\xce\\xdf\\x3e\\x2b\\x14\\x67\\xf1\\x5b\\x35\\xd8\\x36\\x1d\\xae\\x70\\x38\\xef\\xc6\\xc5\\x39\\xd5\\x97\\xdc\\x36\\x7b\\xce\\x3d\\x9b\\xeb\\x18\\x3c\\xec\\x38\\x80\\x22\\xbd\\x26\\x53\\xab\\xc9\\xee\\x2a\\x19\\xbd\\x75\\x79\\x51\\xed\\xe6\\x93\\xf3\\x0a\\xd7\\x2c\\x99\\x5d\\x6d\\x03\\x50\\x9b\\x4a\\x3a\\x9c\\xae\\x06\\x97\\x16\\x0a\\x74\\x69\\xa6\\xc4\\x88\\xb8\\xec\\x96\\x15\\x9d\\x6d\\x1b\\x3b\\x1d\\xd6\\xce\\xdd\\xc3\\xc9\\xf9\\x29\\x1a\\x85\\xc1\\xa1\\xd1\\xd9\\xf5\\xf1\\x91\\x9a\\xfc\\x99\\x6b\\xbb\\x3a\\x36\\xce\\xb0\\x45\\x1a\\xf2\\x66\\x2c\\xad\\xcb\\x2c\\xb7\\x46\\xab\\x8c\\x69\\x64\\x7f\\x46\\x88\\x3b\\x4c\\xf5\\x16\\xb2\\x46\\x59\\x06\\x10\\xb0\\x53\\x36\\x05\\xba\\x04\\x02\\x15\\xce\\x0e\\x8b\\x73\\x71\\xdd\\xf2\\xc5\\x5c\\x15\\x7b\\xcf\\x99\\x36\\xf6\\x9e\\x0f\\x48\\xad\\x60\\xcc\\x9f\\x72\\x7c\\xbd\\x92\\xc8\\x3d\\x0e\\x5f\\xcf\\x00\\x96\\x52\\xcc\\x94\\xed\\x5c\\x89\\xc8\\x59\\x8f\\x27\\xfc\\x90\\x07\\x80\\x3d\\x7d\\x86\\x4d\\x77\\x0c\\x57\\x5e\\xb9\\xee\\xf8\\x28\\x1e\\x96\\x4a\\x50\\xc2\\x70\\x4f\\xcf\\x00\\x91\\x52\\xc1\\x23\\xd7\\x8f\\x65\\x67\\x8f\\x5d\\x3f\\xc2\\x7c\\xef\\x0d\\x9e\\x37\\x30\\x30\\x8f\\xf9\\x9e\\xac\\x59\\x07\\xa6\\xf5\\x31\\xfc\\xac\\x20\\x52\\x8f\\x0d\\x68\\x6e\\x30\\xa1\\x17\\x4d\\xf8\\xc9\\x8d\\x61\\xc9\\x53\\xd4\\xd9\\x92\\x5a\\xc5\\xcc\\x8d\\x08\\x07\\x15\\x98\\xc4\\x46\\x5c\\x74\\xbe\\x19\\x4c\\x40\\x22\\x6b\\x9a\\x4e\\x93\\x59\\x05\\x48\\x4f\\xfc\\x66\\xf8\\x15\\xad\\x65\\x17\\xe2\\xab\\x65\\xc7\\x32\\x44\\xb0\\x30\\x74\\x56\\x11\\x01\\x10\\x10\\x2c\\xac\\x81\\xc5\\xff\\xeb\\xb1\\xbd\\x97\\xcd\\x6d\\x03\\x0c\\x5e\\xb0\\x64\\xbe\\xf8\\x1a\\xc8\\x5a\\xfa\\xcf\\x32\\xd5\\x4c\\x15\\x16\\x2e\\x6d\\xde\\x7b\\x30\\xdd\\x2f\\x31\\xd9\\x84\\xce\\x12\\x7c\\xef\\x5d\\x64\\x7f\\x21\\x32\\x35\\x58\\x60\\x59\\xa9\\x90\\xe0\\xd4\\x7b\\x63\\xa1\\x45\\x39\\x4b\\x13\\xcf\\x59\\x96\\x8a\\xd4\\xde\\xbf\\x40\\xa9\\xf8\\x2b\\xd8\\x24\\x3e\\x72\\xea\\x7d\\xf1\\x49\\x58\\x8e\\x5f\\x17\\xb1\\x11\\xb0\\xd1\\xfb\\xa4\\xf7\\x01\\xd8\\x26\\xae\\x65\\xea\\x99\\x32\\x2a\\x1b\\xf3\\xf0\\xfd\\xef\\xa1\\x7c\\x88\\x2f\\x89\\x15\\x58\\xe6\\x7c\\x46\\xe0\\x9b\\x53\\x46\\x80\\x1e\\x68\\x9d\\x42\\x66\\x39\\x84\\x42\\xba\\xd8\\x8c\\x33\\xe9\\x67\\x42\\x06\\xb3\\x95\\x09\\xf6\\x86\\x88\\xf3\\xe1\\x28\\xf3\\x0f\\x49\\xd6\\x5e\\x83\\xef\\x57\\x4f\\x64\\x21\\x91\\xb5\\xc1\\xe0\\xc3\\x07\\x21\\xf5\\xd8\\x08\\x3a\\xc8\\xa0\\x3f\\x35\\x83\\x0a\\x5b\\x3a\\x23\\xa8\\xd4\\x76\\xd3\\xa8\\x28\\x06\\x31\\xf5\\x67\\x9a\\x70\\x2a\\xfe\\x9b\\xec\\xc1\\xf7\\xde\\xdb\\xcb\\x26\\x7d\\xb0\\x8b\\x2e\\x8b\\x02\\xee\\x15\\xf6\\x73\\xe1\\x3b\\x3c\\xfa\\x36\\xac\\xa3\\x27\\x5d\\x54\\x47\\xb7\\x78\\xce\\x3f\\xaa\\x7c\\x9e\\xd1\\xb5\\xa1\\xb9\\x79\\x63\\x77\\xc6\\xe3\\x72\\x53\\x7e\\x8a\\x2d\\xcf\\x24\\xff\\x8b\\xac\\xa6\\x24\\xc1\\x55\\x9d\\x22\\xdb\\xb7\\x3b\\xd6\\xea\\x8e\\x93\\xf3\\x27\\x5c\\x33\\x49\\x1c\\xc5\\x4c\\x97\\xca\\x92\\x28\\x97\\x27\\x5a\\x54\\xf1\\xab\\x18\\x75\\x6c\\x74\\x6c\\x84\\x50\\xd6\\x50\\x1a\\x67\\xd1\\x46\\xb1\\x69\\xa4\\x5f\\xff\\x44\\x88\\xad\\xe0\\x76\\x22\\x81\\xd8\\x2b\\x11\\x64\\x90\\xcd\\x9c\\x77\\x9b\\x5c\\x6c\\x85\\xf8\\x85\\xf8\\x34\\x93\\x17\\xcf\\x56\\x36\\xfc\\xf5\\x21\\x89\\x07\\xd8\\x2c\\xca\\xe5\\x71\\xd7\\x53\\x9b\\x5d\\x0c\\x6d\\x4b\\x4f\\x8b\\x16\\x49\\xdd\\x94\\x05\\xca\\x6e\\x49\\xe7\\x45\\x5c\\x49\\x65\\x15\\xdc\\xd6\\x3a\\x13\\xda\\x6a\\x53\\xcb\\x1d\\x1a\\x10\\xbf\\x28\\x5d\\x79\\xcb\\xdc\\x91\\x63\\xcb\\x8b\\x6c\\x4d\\x13\\x35\\x2f\\x31\\x49\\x8f\\xc3\\x96\\xaa\\x4d\\xe9\\xc5\\xb5\\xda\\xb4\\x12\\xd3\\x8c\\x2b\\x17\\x16\\x66\\xf4\\x6e\\x9b\\x59\\xb2\\x68\\xde\\x68\\xde\\x8d\\xbe\\x35\\x53\\x88\\x9f\\x55\\x80\\x9f\\x65\\x89\\x21\\x67\\x0c\\xbf\\xde\\x4d\\x1f\\x55\\xc4\\x06\\x9e\\x14\\x10\\x12\\x34\\xc1\\xc2\\x1f\\x28\\x6d\\x80\\xbf\\x6e\\xee\\x1a\\x50\\xa4\\x94\\xd8\\xf5\\xf9\\x0e\\x2d\\x7e\\x38\\xd4\\xac\\xbe\\xae\\x63\\xe8\\xb6\\x35\\x15\\x09\\x59\\xb5\\x8e\\xcc\\xb6\\x5c\\x5d\\xfd\\xe6\\xbb\\x87\\x5a\\x6f\\xdc\\xdc\\x0a\\xa0\\x81\\xb8\\xcc\\x8a\\x94\\xae\\xfe\\x44\\x4f\\xbd\\x63\\x33\\x73\\x02\\x6a\\xcb\\xe3\\xd2\\x92\\x15\\xe1\\x5a\\x8b\\xb6\\x75\\x5d\\x9b\\xdd\\x3e\\x63\\x7d\\x9b\\xa3\\xb1\\xd8\\x19\\x15\\x91\\x56\\xd6\\x95\\xdb\\xbe\\xa9\\x33\\xd5\\x32\\x73\\xfb\\xec\\x84\\x0c\\x83\\xa2\\xb9\\xd8\\x96\\x6b\\x88\\xa2\\xb2\\x98\\xce\\x8f\\x2e\\x6e\\x0f\\xf1\\xd7\\xe3\\xb1\\x0c\\x0f\\x0d\\xe6\\xe8\\x59\\x8d\\x44\\xe0\\x12\\x2f\\xbb\\x9e\\x7a\\xd9\\x5f\\xde\\xbb\\x57\\xfc\\xd2\\xfb\\x9f\\x08\\x26\\x16\\x34\\xde\\x0f\\x20\\x4c\\x09\\xbf\\xff\\xe8\\xeb\\xaf\\xef\\x67\\x3e\\xf7\\x56\\xc2\\xb0\\x9e\\xf2\\xf8\\x18\\xee\\xb7\\x05\\xdf\\x27\\x85\\xf0\\x18\\x70\\xbf\\x63\\x88\\x26\\x24\\x0b\\xf4\\xd7\\xd7\\x51\\x1f\\xf4\\x8a\\x8f\\xf3\\xcf\\x34\\x31\\x6f\\x89\\x61\\xba\\xf0\\x94\\xac\\xfc\\xc4\\x81\\xab\\x46\\xdc\\xb9\\x38\\x70\\xae\\xe3\\x86\\xf5\\x4d\\x2c\\x28\\x65\\x7d\\x75\\xe9\\xa5\\xd6\\xe8\\x39\\xfd\\x46\\x8f\\x2d\\x29\\x9c\\xf1\\x30\\x9d\\x1f\\xbe\\x2d\\x44\\x84\\x05\\xbb\\x06\\xf7\\x74\\xb7\\x5c\\xb9\\xa4\\x2c\\xad\\x6b\\x63\\x4b\\xa9\\x1b\\x3b\\x9f\\x4d\\xed\\x43\\xa1\\x72\\x65\\x30\\xe9\\xcb\\x49\\x4c\\x43\\x0d\\x77\\x03\\xd2\\xa1\\x34\\x72\\x66\\x4f\\x8a\\xa1\\xf3\\x52\\x49\\x1f\\x85\\xb7\\x0a\\x3f\\x21\\x81\\x3d\\x8f\\xc5\\x66\\x51\\xa5\\xc2\\x4f\\x11\\xbb\\x31\\xb2\\x6d\\xef\\xe2\\x9a\\xb0\\xf4\\x2d\\x33\\xba\\x77\\x0e\\x64\\x96\\xaf\\x3a\\x36\\x34\\x7a\\xf7\\xfa\\xaa\\x79\\x0f\\x7d\\xb7\\xef\\x4f\\x65\\x03\\xea\\xbe\\x1e\\x6b\\x69\\xba\\x76\\x80\\xbb\\xe1\\x13\\x6d\\xe9\\x58\\xbb\\x23\\x07\\xf2\\x46\\xaf\\x98\\xd9\\x79\\x70\\x61\\x41\\xfe\\xca\\x93\\x2b\\x1a\\x8e\\x7f\\x77\\x43\\x83\\x77\\x57\\xa6\\xc1\\x3d\\x67\\x31\\x0e\\xa7\\x32\\xb7\\x76\\x10\\x9e\\xdc\\x44\\x6b\\xe9\\xee\\x91\\xe6\\x28\\x48\\xb6\\x7c\\x20\\xb2\\xb6\\x46\\x0c\\x17\\xff\\x0a\\xdf\\x78\\x37\\xb2\\xb7\\x62\\x23\\x7c\\x24\\x7b\\xfc\\x63\\x7a\\x0e\\x7c\\x08\\xd3\\x9f\\x8b\\xe7\\x8e\\x1e\\xb9\\x49\\x44\\xdc\\x43\\x45\\x39\\x19\\xe6\\xf8\\x30\\x36\\xc3\\x97\\x01\\x11\\x20\\x1e\\x87\\x00\\x9a\\xcd\\xfe\\x9d\\x87\\x0d\\x6c\\x3c\\xbe\\x8d\\x86\\xda\\x40\\x24\\x2b\\x1e\\x97\\x30\\xab\\x29\\xb5\\xd6\\x15\\x8f\\x0b\\x9d\\xf5\\xf7\\x1d\\x5b\\x5b\\xbd\\xb0\\xbb\\xa9\\xa7\\x74\\xe9\\xe1\\xee\\x59\\x87\\x27\\x4a\\x7e\\xd2\\xa6\\x15\\x9b\\xb0\\xe3\\x5e\\xab\\xc5\\x05\\x04\\x4c\\xf8\\x6f\\x7c\\x63\\x79\\x59\\x7d\\x43\\x79\\x79\\x3d\\xdb\\xde\\xb1\\xd1\\xa2\\xf0\\x54\\xcf\\x74\\xce\\xdc\\x30\\xc3\\x66\\x9b\\xb1\\x61\\xe6\\xf0\\x1e\\xab\\x79\\x63\\x47\\xdb\\xba\\xf6\\x94\\x94\\xf6\\x75\\xde\\x07\\x92\\x5d\\xb8\\xd2\\x0d\\xfe\\x47\\x9f\\x65\\xc0\\xd8\\xff\\x59\\x4c\\x70\\x41\\x51\\x71\\x7e\\x5e\\x55\\x15\\x19\\x83\\x47\\xcf\\xfe\\x87\\xac\\xb5\\xc0\\x18\\xc4\\xcb\\x89\\xef\\x8b\\xa8\\xfc\\x3e\\xef\\xf7\\x54\\x5f\\x1f\\x01\\x62\\xc7\\x86\\x6a\\xdf\\x74\\xc0\\x34\\xc3\\x0d\\xad\\x97\\x0d\\x17\\x86\\xa4\\xad\\x28\\xed\\xde\\x37\\xc7\\x5d\\xb6\\xf2\\x96\\xa1\\xc1\\x63\\xab\\x2b\\x06\\xef\\xfd\\xe6\\xa0\\xf2\\x9b\\x82\\x36\\xe5\\xac\\x56\\x6b\\x71\\xaa\\x7a\\xd6\\x6b\\xaa\\x9c\\xc1\\x06\\x8b\\xc3\\x35\\xbc\\xbf\\xaf\\xf3\\x9a\\x89\\xb2\\xfc\\xd5\\xf7\\xaf\\x6e\\x38\\xf1\\xcd\\xa1\\x8a\\x77\\x61\\x95\\x23\\x71\\x64\\x70\\x2e\\x8e\\x4b\\xb4\\xb6\\x0e\\x4a\\x76\\x1c\\xcf\\xd9\\x6f\\xd9\\x23\\x6c\\x12\\x52\\x22\\x03\\xa6\\x47\\xa7\\xb9\\x88\\xed\\xca\\x72\\x8e\\xf1\\x93\\x3d\\xe2\\x68\\x5d\\x5a\\x51\\x31\\xd1\\xe6\\xf0\\xff\\x7d\\x31\\x3f\\x33\\x33\\x37\\xcf\\xe5\\xcc\\x83\\x9c\\xf6\\xb5\\x2d\\x66\\x73\\xcb\\xda\\xf6\\x1b\\xdb\\xd6\\xb5\\x59\\xad\\xf8\\x9f\\x90\\x19\\xd5\\xd5\\x33\\xee\\xef\\xa8\\xa8\\xe8\\x40\\x00\\x73\\xf0\\x43\\xbf\\x60\\xa3\\xa7\\xc8\\x25\\x83\\x5c\\x86\\xe5\\x12\\xf3\\xc5\\x6f\\x9f\\x82\\x65\\x31\\x8c\\xcd\\x7e\\xdd\\x6a\\x42\\x57\\x2a\\xf7\\x12\\xfb\\x17\\x61\\xe9\\xff\\xb4\\x73\\xb8\\x64\\x06\\xf6\\x2f\\x19\\x5d\\x1b\\x9b\\x9a\\x37\\x60\\xa9\\x19\\x85\\xa5\\x66\\x0a\\x76\\xfd\\x2f\\xfa\\xcd\\xdd\\x57\\x12\\x49\\x59\\x98\\x9c\\x5c\\x88\\x25\\xa5\\x4d\\x17\\x1d\\xad\\xb3\\xa9\\x9e\\x79\\x5c\\xb2\\xa1\\xa5\\xe0\\x3e\\x1f\\xc7\\x7d\\xce\\xc4\\x34\\xe8\\xe5\\x64\\xde\\xf9\\xa5\\x4b\\xc0\\x38\\x16\\x40\\xc9\\x0f\\x3c\\x51\\xea\\x39\\x55\\xa7\\x82\\xba\\x0a\\x72\\xc2\\x62\\x6d\\x89\\xa9\\x05\\x2f\\x39\\xdb\\xc6\\x0a\\xaa\\x96\\xb7\\xa5\\xd5\\x14\\x57\\x37\\x67\\x76\\xaf\\xae\\xca\\x59\\xd2\\x9d\\xf3\\x72\\x69\\x6e\\xa1\\xa7\\xa2\\xb0\\x0b\\xfe\\xe4\\xb4\\x45\\xc6\\xab\\x23\\x92\\x13\\xb3\\x67\\xe4\\x26\\x24\\xe4\\xce\\xcc\\x2e\\xec\\x50\\xc7\\x74\\x36\\xe2\\x1c\\x74\\x9d\\x36\\xbf\\xaf\\x3c\\xd9\\xe5\\x31\\xba\\x53\\x10\\x03\\x46\\x84\\xd8\\x7b\\x58\\x25\\x0a\\x45\\x91\\x64\\x17\\x8a\\xa0\\xfa\\xde\\xb4\\x50\\x1f\\x7a\\xfa\\x4d\\x9e\\x1e\\xe8\\xe3\\x76\\x81\\xcb\\x2d\\x63\\xdb\\x7b\\x7a\\x5e\\x16\\x6f\\x0d\\x85\\xb9\\x2f\\x8b\\xfb\\x6f\\x09\\x83\\xf2\\x9b\\x8f\\x1e\\xdd\\x02\\xff\\x66\\xc4\\xb4\\xbf\\xc4\\x90\\x3e\\xa7\\xe2\\x3e\\x5f\\x85\\x9f\\x61\\xc6\\x7d\\x96\\xd3\\xb5\\x16\\x90\\x3f\\x81\\x4e\\x5a\\x5c\\x53\\xc4\\x8f\\x20\\x83\\x22\\x37\\x7c\\x2b\\xde\\xab\\x94\\xc5\\x1b\\x6c\\xca\\xad\\xbb\\x4c\\x0d\\xcb\\x9b\\xf2\\x97\\x74\\xb8\\xe1\\x25\\x26\\xcf\\xa9\\xb3\\xc5\\x86\\x14\\x15\\xba\\x5c\\x11\\xb0\\x1e\\x0e\\xdd\\xb0\\x93\\x0d\\x0e\\x12\\xb6\\xae\\x75\\x0f\\x37\\xa4\\x27\\x15\\x74\\x62\\x81\\x14\\x93\\x94\\xa2\\x76\\x17\\xc5\\x85\\x4a\\x73\\xcc\\x8e\\x9f\\x7d\\x8c\\x35\\x5e\\x44\\xee\\xb8\\xfe\\x97\\xdc\\x89\\x0b\\xf5\\xf4\\xd7\\x3a\\x83\\x75\\x5d\\xb9\\x85\\xfd\\x25\\x49\\x64\\xc6\\x55\\xaf\\xea\\x74\\xd6\\x6d\\xb8\\x63\\xf6\\x01\\x7b\\x41\\x44\\x61\\x1e\\x1e\\x89\\xa8\\x02\\xd6\\x78\\x2c\\xd2\\x56\\xe5\\x49\\x30\\x59\\xaa\\x06\\xf3\\xf2\\x87\\xeb\\x6c\\xe6\\xe6\\x35\\xed\\xae\\x95\\xb7\\x2f\\xcc\\x14\\xeb\\x74\\x31\\x96\\xb2\\xe2\\xe8\\x24\\x9b\\xc6\\x9d\\x49\\xc7\\xdf\\x42\\x6d\\xa8\\xca\\xa9\\x72\\xc7\\x40\\x1d\\x7e\\xb7\\x88\\xf7\\xfd\\x01\\x1a\\xc5\\x99\\xcc\\x06\\xe6\\x98\\xb7\\x97\\x59\\x76\\x13\\xa1\\x9f\\x0d\\xac\\x11\\x1d\\xcd\\xc8\\xbf\\xfe\\xc1\\x18\\x96\\x61\\x78\\xf0\\x21\\x20\\xc4\\x05\\xc0\\xa2\\xa4\\x24\\xee\\xc0\\x71\\xa2\\x10\\x91\\x28\\x9b\\xb0\\x9f\\x6b\\x52\\x49\\x9b\\x44\\xfc\\xaf\\xbb\\xfc\\xec\\x0d\\x08\\x36\\x64\\xb0\\xd1\\x68\\x34\\xa7\\xa5\\xd0\\x79\\x41\\xa7\\xed\\x85\\x45\\xe1\\x54\\xd1\\x77\\xce\\xeb\\xdd\\xf9\\xee\\x82\\xaa\\xb4\\xb6\\xa5\\x65\\x65\\x13\\x6d\\xe9\\xd5\\x05\\xee\\x02\\x7b\\xe3\\x82\\xe2\\x92\\x85\\x8d\\xf6\\x07\\x0b\\x33\\x32\\xf2\\x0b\\x9c\\x19\\xf9\\x31\\x0e\\x47\\x4a\\x5a\\x5a\\x6a\\x6a\\x2a\\x53\\x9c\\xdb\\x11\\x17\\x37\\x50\\x96\\xdb\\x81\\xfd\\x0d\\xf8\\x9f\\xb2\\x81\\x78\\x6d\\x47\\xae\\x34\\xc1\\x67\\x88\\xab\\x52\\xf0\\x0f\\x6e\\x08\\x4b\\x8c\\x38\\xf8\\xc5\\x90\\x9a\\x4a\\xc7\\x3f\\x17\\xf3\\xef\\x28\\x9b\\x44\\xb0\\xb5\\x88\\xbf\\x3f\\x51\\x1b\\x39\\x55\\xe6\\x99\\xcf\\x17\\x79\\xd9\\xe7\\x8a\\xbc\\xb7\\x3c\\x9d\\x25\\x56\\x99\\xae\\x21\\x65\\xdd\\x2e\\x32\\xf6\\xa5\\xe3\\xed\\x19\\xe5\\x6b\\x6e\\x1b\\x8e\\xbc\\xc3\\x94\\x19\\x9e\\x97\\x19\\x6b\\x8d\\x8b\\xc8\\x3d\\x10\\x66\\x28\\x74\\xc6\\xc6\\x5f\\x76\\x69\\xde\\xbc\\xa6\\x34\\x6c\\x9c\\x9b\\x99\\xbd\\xee\\x96\\xb9\\xf6\\x23\\xde\\x58\\x79\\x7d\\x69\\x8e\\xc2\\x90\\xa6\\xcd\\xca\\x27\\xe3\\xee\\x60\\x76\\xb0\\x1f\\xb1\\x05\\x93\\xf1\\x79\\x74\\xd0\\x3f\\xf2\\x36\\x30\\xf7\\x33\\x3b\\xee\\x97\\xc6\\xfa\\x19\\x6e\\x06\\xeb\\x15\\x1e\\xc4\\x6d\\xd4\\xc8\\x80\\xf7\\x18\\x0c\\x74\\x19\\xc4\\x20\\x96\\xb4\\xe5\\x0d\\x32\\x3f\\xa5\\x3e\\xf6\\xfa\\xc2\\x30\\x28\\x2b\\x99\\xef\\x40\\x26\\xfe\\xf8\\xe0\\x46\\x9d\\xa7\\xd6\\x66\\xab\\x76\\x27\\x26\\xba\\xab\\x6d\\x24\\xdb\\x76\\x31\\x86\\x69\\x49\\x4f\\x37\\x9b\\x5d\\xc2\\x83\\xaf\\x7e\\x64\\xa9\\x70\\xc6\\xc7\\x3b\\x2b\\x2c\\xd6\\xf2\\x0c\\x6d\\x5c\\x46\\x19\\xf6\\x23\\x64\\x9a\\xad\\x99\\x99\\x88\\x81\\x6f\\xb8\\x2d\\xec\\x0b\\x38\\xee\\x88\\x47\\x31\\x98\\x47\\xd1\\xa1\\x1c\\x30\\x64\\x8d\\xba\\x94\\xac\\x01\\xbb\\xee\\x49\\xe9\\x29\\x1c\\xc6\\xcd\\xdc\\xdf\\xfb\\xc0\\x93\\xed\\x4f\\x83\\x42\\x67\\x88\\x6a\\x0a\\x8d\\x89\\x90\\x5d\\xca\\x1d\\x05\\xa3\\x52\\xfc\\xf3\\x12\\x53\\x49\\x96\\x2d\\x22\\x3a\\x23\\xbb\\x48\\xb7\\x50\\x5a\\x73\\xbd\\xb8\\x3a\\x0c\\x23\\x7c\\x4c\\xea\\xa5\\x93\\x6a\\x91\\xa4\\x86\\x91\\x11\\x38\\xde\\x00\\xc0\\xb1\\x75\\x4e\\x10\\x6a\\x7c\\x16\\xaa\\x61\\x24\\x43\\x1c\\xc8\\x48\\x64\\x3d\\xd9\\x9e\\x06\\x82\\x58\\x06\\xa0\\x80\\xd4\\x8a\\x49\\x77\\xa4\\x58\\xf5\\xba\\x00\\x4c\\x64\\x70\\x90\\xfa\\x02\\xf2\\x37\\x26\\x60\\xea\\x17\\x02\\x96\\x7e\\xc2\\x12\\x8e\\x49\\xef\\xda\\xd0\\xd4\\xb4\\xbe\\x3b\\xfd\\xb1\\x28\\x63\\x1e\\x91\\xc9\\x51\\xbb\\x34\\xa9\\x85\\x46\\x4b\\xbe\\x2b\\x33\\x29\\xc1\\xba\\x5c\\x63\\x2f\\x34\\xea\\x73\\xb3\\x73\\x74\\x09\\x56\\xfe\\x44\\x56\\x47\\x51\\x72\\x72\\x51\\x47\\x16\\xd6\\x68\\xa3\\xa3\\xb1\\x46\\x0b\\x51\\xc6\\xb2\\xcc\\x04\\xa5\\x56\\xe9\\x34\\x25\\x19\\xcb\\x5c\\x89\\xf4\\x15\\x02\\xf8\\x49\\xbc\\x8e\\x8d\\x42\\x2f\\x5d\\xd4\\x6f\\x2f\\xa8\\xe8\\x71\\x8d\\x8d\\x22\\x98\\x03\\xe2\\x75\\x8c\\x03\\x01\\x2c\\x16\\x07\\x58\\xe2\\x7b\\x8f\\xc5\\x63\\x2e\\xa3\\x31\\x99\\x64\\x75\\x04\\x5c\\xd2\\xfe\\xb8\\x32\\x0b\\xb3\\x74\\xa8\\xc3\\x52\\xd1\\x9b\\x55\\xdd\\x9b\\x60\\x90\\x3b\\x0d\\x3a\\xb3\\x42\\x88\\x8e\\x37\\xc7\\x14\\x7b\\xf6\\x54\\xbb\\x5b\\x3c\\x71\\x09\\x91\\x87\\x85\\x88\\x48\\x65\\x6c\\xb0\\xd6\\x61\\x33\\xc7\\x20\\x80\\x32\\xb1\\x9e\\x2d\\x43\\xdf\\x22\\x39\\x39\\xa1\\x93\\x30\\xc9\\x60\\x40\\xc0\\x10\\x33\\x0a\\x30\\x13\\xfe\\xaa\\x13\\x7a\\x7a\\x08\\x94\\x23\\x39\\x29\\x39\\x81\\x43\\xcd\\xcf\\x47\\x00\\x60\\xcb\\xa4\\xca\\xa0\\xc6\\x08\\x9a\\xf9\\xff\\xad\\xf8\\x89\\x94\\xf0\\xff\\xa1\\x20\\xcc\\x98\\x01\\x09\\xb4\\x1e\\x8a\\x58\\xc7\\x2d\\xe2\\x9a\\x50\\x11\\x9a\\x81\\x16\\xe0\\xf9\\x38\\xa7\\xbb\\xb6\\x2c\\x4f\\x47\\xe6\\xa3\\x41\\xa5\\x9a\\x12\\x3f\\x4c\\xd5\\x9b\\xa9\\x73\\x93\\xac\\x2a\\xdf\\xda\\xcf\\x0e\\x00\\x05\\xa9\\xf5\\x10\\x68\\x1d\\x08\\xa9\\x9b\\x1e\\x3b\\xcc\\x2d\\xda\\x94\\xa0\\x2b\\x5b\\x7b\\xe7\\x7c\\x6b\\xad\\x21\\x2c\\x2a\\xc6\\x90\\x16\\xf7\\x50\\xdf\\xfe\\x39\\xee\\xba\\x3d\\xaf\\x6d\\x5d\\xf3\\xc8\\x86\\x12\\x5d\\x56\\xa5\\x45\\xad\\x21\\x32\\x7e\\x70\\x61\\xf9\\xda\\xbb\\xe6\\x77\\x35\\xc1\\x22\\xef\\x4e\\x8d\\x43\\x99\\x68\\x8d\\xcf\\xeb\\x2c\\xa8\\x9e\\x57\\xa1\\x8f\\x30\\xe4\\xa5\\x8a\\x1f\\x6a\\x9d\\xd5\\x0e\\x7b\\x55\\x86\\x56\\x9b\\x59\\x65\\x4f\\xad\\x72\\x6a\\xd9\\xa3\\x29\\xb3\\xb3\\x55\\x8d\\x97\\xcd\\xc9\\x0d\\x0a\\x0a\\xd3\\x2b\\xd5\\xf1\\x72\\xc1\\xd2\\x30\\x5e\\x53\\xb4\\x69\\x5e\\xb9\\xa3\\x61\\x4e\\xb6\\xa3\\xa1\\x28\\x23\\x5a\\x5d\\x68\\x4d\\xce\\x4b\\x37\\x47\\x39\\x6f\\x1c\\x56\\xb5\\x6e\\x1f\\xf4\\x28\\x4e\\xff\\x9e\\xe5\\xa2\\xf2\\xad\\xda\\x0c\\xa3\\x32\\xd6\\xea\\x54\\x2b\\x4d\\xf1\\x51\\xcc\\x13\\xba\\x5c\\xbb\\x56\\x6b\\xcf\\xd5\\xa9\\x92\\x72\\x53\\x34\\x9a\\x94\\xdc\\x24\\x32\\x07\\xee\\x14\\x4f\\x72\\x1a\\xb6\\x1c\\xa9\\x89\\xff\\x02\\x11\\x1d\\x5b\\x7f\\x3e\\x36\\x9f\\xfe\\x4e\\x88\\x9e\\x86\\xca\\x27\\xfe\\x93\\x2d\\x9f\\x06\\xc8\\x87\\x18\\xf4\\x17\\x84\\xd8\\x1c\\xfe\\x13\\xc4\\x23\\x25\\x5e\\x93\\x51\\x21\\xc4\\x4f\\xe3\\x2b\\xf5\\x0d\\x7e\\x17\\x1a\\x55\\xda\\xfe\\xc2\\x34\\x62\\xdb\\xc0\\xab\\x90\\xa4\\xc6\\xd1\\x14\\x75\\x9d\\x9d\\x75\\xc6\\xfc\\x14\\x35\\xad\\x23\\xdf\\x09\\x3f\\x24\\x65\\x5b\\x54\\xed\\xa5\\xa5\\xed\\x2a\\x4b\\x36\\x02\\xb8\\xee\\xec\\x57\\xec\\x69\\x41\\x83\\x94\\x98\\xc6\\x08\\x2a\\x83\\x02\\x68\\x3d\\x81\\xf8\\x47\\x66\\x8e\\x22\\xad\\x3e\\x3b\\xde\\xe3\\xb4\\xcb\\x15\\x55\\xdb\\xaa\\x06\\x36\\x36\\xe9\\x05\\xcd\\xe9\\xa1\\xca\\xee\\x2c\\x45\\x48\\x64\\x94\\xec\\x70\\x52\\x62\\xfa\\xf0\\xb5\\x63\\xdc\\x01\\xe2\\xaf\\xbf\\x1b\\xd3\\xe8\\xc1\\xf9\\xfb\\x02\\x8a\\x41\\xe4\\x3d\\x39\\x7f\\x17\\xd3\\xf7\\xb1\\xa7\\xc9\\x82\\xbe\\x51\\x3a\\xbf\\x04\\xea\\x41\\x03\\xe2\\x58\\xb2\\x91\\x04\\xe0\\x2f\\xe9\\x16\\x83\\x50\\x5c\\xac\\x3c\\x52\\x4a\\xbe\\x17\\x48\\xf8\\xcb\\x45\\x00\\x2f\\xe1\\x21\\xbc\\xb4\\xfe\\x36\\xef\\xf8\\xba\\xf2\\xf2\\x75\\xc7\\xe7\\xbd\\xf1\\x86\\xa3\\x32\\x3d\\x36\\x36\\xbd\\xd2\\xf1\\x06\\xac\\x11\\xb7\\x73\\x7b\\xf2\\x17\\x1e\\xec\\x9e\\xb1\\x67\\x24\\xef\\xfd\\x38\\x47\\x9e\\xce\\x84\\xd7\\xb0\\x74\\xbe\\xb4\\x8b\\x4d\\x78\\x0e\\xd7\\x21\\x3b\\xee\\xb3\\x9a\\x8e\\x0b\\x86\\x9c\\x51\\xab\\x63\\xf4\\x10\\x83\\xb1\\x58\\x54\\x2a\\x85\\xc7\\x85\\xfb\\x8e\\xad\\x45\\x16\\x0b\\xab\\x07\\x96\\x46\\x86\\x10\\x97\\xff\\xb3\\x39\\xb3\\xaa\\x3d\\xb6\\x84\\xd0\\xb6\\x0f\\x40\\x2b\\xee\\x79\\x55\\x91\\x63\\x17\\x58\\x46\\xa6\\xd6\\x56\\x25\\x15\\x0f\\xd5\\x65\\xc9\\x67\\xfc\\x84\\x89\\xd9\\xf9\\xb8\\xba\\xa7\\x20\\x34\\x25\\x9c\\x37\\xd6\\x70\\x75\\xda\\x94\\xdc\\x82\\xa2\\xb8\\x13\\xf0\\x6b\\xaf\\x53\\xac\\x77\\x56\\x04\\x01\\xfe\\x79\\x5f\\xc6\\xb1\\x7c\\x69\\xff\\xa2\\xcc\\x93\\x62\\x1c\\x73\\x16\\xf6\\xe4\\x95\\xb0\\xcc\\x1f\\x42\\xc2\\x08\\x6f\\x48\\x2d\\xf6\\x43\\x14\\x77\\xc2\\x41\\xe2\\x01\\x0d\\x2c\\x95\\xb9\\xb4\\xeb\\x1c\\xe9\\xf9\\xf4\\x5c\\x5c\\xcb\\xe4\\x31\\xf4\\x04\\x1e\\xef\\x8f\\x7e\\x02\\xde\\x58\\x3e\\x58\\x50\\xd5\\x9f\\x4b\\x72\\x8c\\xd5\\xe2\\xf3\\x6a\\x6d\\x38\\x3b\\x7f\\xd1\\x55\\x57\\xac\\x5c\\x1a\\xeb\\x69\\xcf\\xbb\\x96\\x71\\x7b\\x5f\\xe1\\x4f\\x7c\\xf8\\xbb\\xe2\\xb9\\x2d\\x85\\x1a\\x45\\xf9\\xac\\xc5\\xc5\\x83\\x31\\x85\\x25\\x05\\xd1\\x09\\xd1\\x35\\x4d\\x95\\x51\\x7d\\x0b\\x96\\xfe\\x30\\x84\\x4b\\xff\\x79\\x12\\x27\\xcf\\xe1\\x2f\\x62\\x7a\\xa8\\xdd\\x37\\xc4\\x57\\xd1\\x0b\\x51\\xa3\\x94\\x54\\x8a\\x8c\\x0f\\xc0\\xf8\\xf9\\x93\\xb3\\x02\\x18\\x30\\xc4\\x88\\x62\\x5a\\x41\\x8a\\x85\\x57\\xc2\\x7a\\xa8\\x14\\x9b\\xe0\\x39\\xf1\\x51\\xa6\\xc3\\x7b\\x27\\x0e\\xb3\\xd8\\xc8\\x6c\\xf6\\x96\\x7b\\xa5\\xba\\x67\\xb7\\xe0\\x38\\xb1\\x4d\\x78\\x4e\\xc7\\x22\\x1b\\xdd\\x8b\\xe5\\xbe\\x39\\x1d\\x98\\x84\\x3e\\xd7\\xc4\\xf9\\x53\\xfc\\x16\\xa6\\x52\\xeb\\xc8\\xd3\\xc7\\x17\\xe7\\xbb\\xa2\\xe2\\x54\\xa5\\xcd\\x1d\\xf6\\xb6\\x7d\\x0b\\x0a\\xc5\\x3f\\x42\\xc6\\xb9\\x73\\xde\\xeb\\x76\\x16\\x9b\\x22\\x65\\xa1\\xe1\\xfc\\x0b\\x11\\x9a\\xa8\\x60\\x5b\\xdf\\xc1\\x85\\xf0\\xd9\\xb9\\x8b\\x80\\xf6\\xf5\\x6e\\x4c\\xc7\\x4e\\x01\\x51\\xb9\\x2c\\x97\\xd6\\x2a\\x7b\\x3e\\x0d\\x31\\xfa\\xbb\\x19\\x77\\xa2\\xce\\x53\\x65\\xd1\\x95\\x97\\x78\\xe4\\x71\\xea\\xca\\xb6\\x5e\\x47\\xf7\\xb5\\x13\\x65\\x1a\\xf1\\x0b\\x01\\x9d\\xde\\xe8\\xa9\\xb4\\x45\\x05\\x85\\x86\\x49\\x4f\\xb2\\xcf\\x3e\\xbc\\x84\\x3d\\x42\\xef\\xfd\\x04\\x42\\x5c\\x88\\x2f\\x56\\x2b\\x98\\xf8\\x31\\xb3\\x25\\xdb\\x87\\x1c\\x07\\x55\\xfc\\x17\\x04\\xf1\\x79\\xa6\\x2a\\xf2\\x87\\x33\\x7f\\xff\\x98\\x5d\\xb7\\xf8\\x3f\\xaf\\x9f\\xce\\xfc\\x98\\xf0\\x65\\xed\\xd9\\x43\\xdc\\x2a\\xee\\x4b\\x54\\x8c\\x5a\\x30\\x5f\\xaa\\xf0\\x76\\x4a\\xe6\\x82\\x39\\x90\\x9a\\x41\\x31\\x1f\\xa4\\x74\\x41\\x35\\xb6\\x5f\\x4e\\xa5\\xd3\\x62\\x31\\x07\\x20\\xe8\\x54\\x58\\x3e\\xd1\\x18\\x2d\\xff\\x91\\x93\\xbd\\x2d\\x28\\x98\\xd3\\xf5\\xe4\\x55\\xce\\xab\\x34\\xe4\\xcc\\xd9\\xd9\\x56\\x17\\xba\\x61\\xb4\\x73\\x73\\x87\\x8d\\x01\\x26\\xab\\x6f\\x6b\\x5b\\x5c\\x9e\\x27\\x3d\\x3a\\x2b\\xb6\\xb8\\xb2\\x2a\\xe9\\xc0\\x9b\\xdb\\xca\\x58\\x60\\xab\\xf6\\xbc\\xb9\\x7d\\xd6\\x91\\x15\\x15\\x51\\x72\\x71\\x57\\x5c\\x9a\\x51\\x23\\x64\\x38\\xea\\xdd\\x89\\xa1\\x71\\x29\\x20\\x44\\xd8\\xd4\\x86\\x4c\\x47\\xf3\\x82\\xa2\\xfa\\xd5\\x33\\x1d\\x43\\xf3\\x4a\\xd7\\xde\\xbb\\xa4\\x60\\xc9\\xf1\\x65\\x05\\xc1\\x51\\xca\\xf0\\xbb\\x62\\xe2\\x63\\x82\\xe7\\x9c\\xfc\\xcf\\x3e\\xfb\\xbe\\xaf\\x4f\\x0c\\xb9\\xe6\\x1f\\x5d\\x2c\\xee\\x49\\x1b\\x31\\x47\\xdc\\x11\\xa1\\x49\\x8c\\x7c\\x0d\\x9f\\x8b\\xec\\x09\\x4e\\xa3\\x02\\xf9\\xf0\\x63\\x48\\x3c\\xf0\\xf3\\x28\\x1d\\x15\\xe0\\xbe\\xba\\x33\\x62\\x65\\x92\\x3e\\xee\\x47\\x10\\xfb\\x99\\x14\\x3a\\xa5\\x4f\\x67\\x24\\xe0\\x62\\xdc\\x91\\xc3\\x71\\x3d\\x97\\x5c\\xd7\\x3b\\x74\\xfb\\x25\\x55\\xf3\\x97\\xa7\\x96\\x39\\xd4\\xe5\\x6b\\x6e\\x1d\\xee\\x3d\\xba\\xa2\\x5c\\xfc\\x42\\xeb\\x28\\x48\\xb6\\x16\\xdb\\x55\\xaa\\xb4\\xca\\xf4\\x05\\x6b\\x96\\xcd\\x89\\xcb\\xf7\\xa4\\x04\\xb3\\x4d\\x7f\\x14\\x85\\x58\\xb7\\x3d\\x2e\\x77\\xd1\\x0d\\x23\\xcb\\xef\\x77\\x68\\xaa\\xda\\x7a\\xd2\\x70\\xfe\\x9c\\x3b\\x6f\\xfe\\x95\\xdd\\xd6\\x12\\x87\\x26\\xde\\x55\\x6d\\x4f\\x6f\\xcc\\xd5\\xfd\\x71\\xc1\\xca\\xd9\\x8b\\x83\\xc2\\x23\\x65\\xb0\\x85\\x8c\\xe7\\x3c\\x4c\\xef\\xf5\\x24\\x26\\x1b\\x8f\\xa7\\x2d\\x8e\\xc8\\xcc\\x29\\xf6\\x20\\x77\\x8c\\x2f\\x92\\x0c\\x9b\\xc1\\xa3\\xa9\\xa9\\x19\\x26\\x77\\x78\\x26\\x23\\x4c\\x6f\\x4b\\x8f\\xed\\x18\\x48\\xc8\\x6e\\xf7\\x6c\\xfc\\x28\\xa9\\xc7\\x33\\x77\\x89\\xf8\\xe9\\xa7\\x5f\\x36\\x5c\\xbe\\x79\\x5d\\x91\\xf8\\xcd\\x1d\\x8f\\x94\\x2f\\xbf\\xae\\xab\\x77\\x7b\\x16\\x84\\xc8\\xe4\\x11\\xc1\\x0b\\xfb\\xca\\x7b\\x72\\x62\\x8f\\x43\\xbd\\xce\\xb1\\xe5\\xc0\\x99\\x32\\xf6\\x49\\x00\\xe0\\x13\\x8b\\x06\\x4a\\xc5\\xcb\\xb5\\x6f\\x3d\\xb6\\xf8\\x96\\xc5\\xd9\\x49\\x5a\\x42\\xcf\\x01\\x3c\\x77\\xe7\\x73\\xd7\\x21\\x1b\\x1a\\x2a\\x09\\x4f\\x4c\\x88\\x08\\xe7\\x80\\xb1\\x01\\x8b\\x98\\x3a\\x29\\xaa\\x3e\\x1e\\x01\\x83\\x18\\x9a\\xa1\\x8a\\xff\\x70\\x54\\xc8\\x4a\\x05\\x4a\\x0b\\x09\\xd2\\x7b\\xd2\\xb4\\xaf\\xf1\\x17\\x24\\x01\\x9a\\x26\\x83\\xd6\\xf0\\x04\\x04\\x26\\xc5\\x10\\x63\\x34\\x27\\x53\\x85\\x5e\\xa5\\x9a\\xec\\x6b\\x76\\xa0\\xaf\\x34\\xd0\\x48\\xcd\\x4e\\xe9\\x6a\\x4d\\x4c\\x89\\xb5\\xb0\\x59\\x97\\xdb\\xe6\\x6a\\xbb\\x5d\\x5b\\x96\\x52\\xd9\\x29\\xfe\\xe3\\xbd\\x3f\\x5f\\xf1\\x4e\\xdf\\xfb\\x57\\x1d\\x2b\\xc2\\x39\\xb6\\xcd\\x2b\\xd3\\x80\\x89\\xd0\\x37\\x94\\x99\\xdd\\xfa\\xc8\\x87\\xff\\xa8\\x4d\\x1e\\x19\\xf5\\xc6\\x32\\x9f\\xbd\\xfd\\xee\\x86\\x15\\xe2\\x8f\\xf1\\x37\\x6d\\xe9\\xdb\\xd3\\x97\\xae\\xd7\\xd2\\x7c\\x3a\\x13\\xb7\\x9e\\x7d\\x8d\\xbf\\x89\\x11\\xd0\\x11\\xba\\xa7\\xf8\\x7e\\xf0\\x7b\\x96\\x7e\\xaf\\x65\\xa2\\xb9\\x1e\\xe6\\xbf\\xf8\\x7d\\x24\\x8d\\x95\\xf8\\x14\\x21\\x82\\x21\\x83\\xe4\\x52\\x3d\\x60\\x5a\\x07\\x1e\\xf1\\x80\\x06\\xfd\\xf5\\xeb\\x0b\\xa4\\x12\\xff\\x41\\x12\\x07\\x68\\x49\\x6e\\x9d\\x0a\\xd7\\xcc\\xc4\\x57\\x44\\xe1\\x2c\\x6f\\xa2\\x5a\\x92\\x70\\xa6\\xa9\\xce\\xe4\\x18\\xc3\\x14\\x6f\\x32\\x7e\\x7d\\xed\\x83\\x0f\\xc2\\x9a\\xfd\\x5f\\xde\\xd6\\xd3\\x73\\xec\\x6f\\xbb\\x56\\x7d\\x32\\xd6\\xbc\\xbe\\x33\\xcd\\xd1\\xbd\\xa5\\xa3\\xff\\x13\\x66\\xcb\\xfd\\xcc\\x9a\\xe1\\x93\\xdf\\x1d\\x58\\x7d\\xe0\\xdb\\x93\\x43\\xcc\\x16\\x71\\xe0\\xff\\xab\\xee\\x3b\\x00\\xab\\x28\\xba\\xb6\\x67\\xf6\\xee\\xee\\x4d\\x02\\x01\\xd2\\x13\\x12\\x08\\x49\\x4c\\x02\\x24\\xd4\\x10\\x08\\xa4\\x27\\xf4\\x60\\xa4\\x06\\x42\\x09\\x52\\xc4\\xab\\x42\\x94\\x44\\x40\\xec\\xbd\\xd7\\x57\\x24\\x22\\x29\\x18\\x7c\\xfd\\xb0\\x7c\\x4a\\x09\\xe2\\xf7\\xda\\x7b\\x05\\x7b\\x17\\x3b\\x16\\x10\\x54\\x8a\\xf8\\x0a\\x77\\xf7\\x9f\\x3d\\x73\\xee\\xc9\\x4e\\x6e\\x10\\xff\\xfe\\xff\\x56\\xf6\\x9e\\x67\\x9e\\x39\\xd3\\x67\\xce\\xcc\\x9c\\x29\\xa8\\xdb\\xe8\\xbb\\x70\\xe1\\xbd\\xe7\\x97\\x58\\xe7\\xfc\\x7f\\xa0\\x1f\\x67\\x5d\\x84\\x7e\\xe7\\xff\\xe5\\x1b\\xdc\\x5e\\x6f\\x11\\xbd\\x10\\x3c\\x0e\\x7c\\x0d\\x14\\xba\\xdf\\xe0\\x96\\xd7\\x28\\x4e\\xfc\\x06\\x77\\x8e\\xf6\\x8c\\x15\\xfc\\x04\\xf7\\x86\\x0d\\x3c\\xd6\\xd2\\x9f\\xb5\\xf6\\x74\\xf2\\x02\\xf7\\xb3\\x6d\\x37\\xdf\\xcc\\x18\\xfa\\x97\\xdd\\x02\\x3e\\x1d\\xc5\\xec\\xc1\\xcb\\x03\\x9b\\x24\\x26\\x5c\\x44\\x14\\xb9\\x56\\x40\\xf7\\x1b\\xd1\\xd3\\x62\\x08\\xde\\x6d\\x87\\xec\\x82\\xab\\xc3\\x39\\x9e\\x7f\\x8a\\xeb\\x57\\x7b\\xf6\\x58\\x63\\xf4\\xb5\\x56\\xf1\\x76\\xed\\x88\\xbf\\x8b\\x76\\xa4\\x8d\\xa7\\x8a\\x5f\\xbe\\x80\\x38\\x2e\\x15\\xed\\xa9\\xd2\\x28\\x67\\x99\\xec\\x62\\xe1\\xd8\\x8f\\xeb\\x9e\\x68\\x6e\\x88\\x3d\\x75\\x79\\xb9\\x25\\xb3\\x0b\\x0f\\x63\\x61\\x75\\x5e\\xae\\x99\\x1c\\x36\\xef\\x43\\x60\\x83\\x36\\x94\\x33\\x56\\xec\\xb8\\x0e\\x80\\x46\\x33\\x46\\xbc\\xa5\\x74\\x72\\x24\\x35\\x2f\\xa7\\x1f\\xcc\\x64\\x99\\x19\\xe2\\xde\\x4f\\x0c\\xbc\\xa5\\x14\\x01\\xf7\\x33\\xe0\\x2c\\x81\\x63\\x57\\xe9\\x38\\x10\\xe5\\xe2\\x55\\x8d\\x08\\xed\\x26\\xbe\\xc6\\x5a\\xfa\\xd9\\x67\\x89\\x43\\xc7\\x65\\xf7\\x29\\x2f\\xcc\\x8d\\x4a\\xec\\x55\\x39\\x6b\\xfe\\xc0\\xea\\x3b\\xce\\xcc\\x7b\\xe1\\x85\\xa3\\x47\\x8d\\x72\\xeb\\xe8\\xce\\xe6\\xb6\\xcb\\xf2\\x4f\\x1b\\x14\\x6d\\x86\\x86\\x19\\xcf\\x44\\x24\\xf4\\x08\\x1d\\xb4\\x68\\xdd\\x39\\xf7\\xb4\\x35\\xef\\xe4\\xa1\\x70\\x8e\\xdc\\x79\\x77\\xd4\\x9b\\xaa\\x65\\x88\\xba\\xc8\\xb8\\x97\\x95\\xd9\\x4b\\xf9\\x5c\\x16\\xea\\xdc\\x60\\xe4\\x73\\xf1\\xac\\xb9\\xc4\\x24\\x13\\xa6\\x9e\\x5d\\xcb\\xab\\x11\\x53\\xad\\x60\\x26\\x10\\xa6\\x51\\x60\\xe6\\x21\\x66\\x9e\\x82\\x59\\x4c\\x98\\x56\\x76\\x0b\\xaf\\x41\\x4c\\x8d\\x82\\x19\\x44\\x18\\x9f\\x7d\\x48\\xf2\\x68\\x1d\\x79\\xae\\x27\\xcc\\x06\\x16\\xc9\\x8f\\x20\\xe6\\x88\\x1b\\x13\\x52\\x15\\xc0\\xf0\\x37\\xec\\x83\\x7c\\x83\\x83\\xf1\\x3c\\xce\\x37\\x20\\xe6\\x34\\x2b\\x5f\\x5f\\x65\\xbc\\x24\\x30\\xe9\\x02\\x63\\xb2\\x55\\x39\\x86\\xf4\\x31\\x65\\xc0\\x99\\x77\\xd8\\xf7\\xf4\\x79\\x13\\x84\\x3c\\x13\\xf3\\x66\\x05\\x9f\\x26\\x38\\xb8\\xd0\\x77\\x1a\\x72\\x48\\x4c\\x2c\\x61\\xea\\xd9\\x6d\\x7c\\x32\\x62\\x26\\x2b\\x98\\x12\\xc2\\x34\\x0a\\xcc\\x74\\xc4\\x4c\\x57\\x30\\x19\\x84\\xf1\\xd9\\xc7\\x25\\x46\\x6b\\xc7\\x3c\\x27\\x30\\x5d\\xa0\\xac\\xb2\\x50\\x9f\\x0a\\x3e\\x17\\x79\\xe6\\x2a\\x98\\x64\\xc2\\xd4\\xb3\\x33\\x78\\x35\\x62\\xaa\\x15\\xcc\\x04\\xc2\\x34\\x0a\\xcc\\x3c\\xc4\\xcc\\x53\\x30\\x83\\x08\\xe3\\xb3\\xdf\\x95\\x18\\x57\\x39\\x5c\\x24\\x30\\xe5\\x50\\x9e\\x83\\xb1\\x3c\\x57\\x43\\x79\\x72\\x57\\x79\\x4e\\x16\\x63\\xe5\\x45\\xde\\x11\\x02\\x33\\x04\\x75\\x9e\\xcd\\x97\\x63\\x99\\x2f\\x57\\x30\\xc3\\x08\\x53\\xcf\\xce\\xe7\\xb5\\x88\\xa9\\x55\\x30\\x35\\x84\\x69\\x14\\x98\\x3a\\xc4\\xd4\\x29\\x98\\xd5\\x84\\x69\\x65\\x17\\xf1\\x7a\\xc4\\xd4\\x2b\\x98\\xd1\\x84\\xf1\\xd9\\x5f\\x4b\\x1e\\xad\\x9d\\xe7\\x52\\x81\\xa9\\x84\\x3c\\x1c\\x81\\x3a\\x2f\\x54\\xf3\\x90\\x30\\x49\\x84\\xa9\\x67\\x17\\xf3\\x2a\\xc4\\x54\\x29\\x98\\xb1\\x84\\x69\\x14\\x98\\xd9\\x88\\x99\\xad\\x60\\xb2\\x09\\xe3\\xb3\\x7f\\x92\\x18\\x8d\\x30\\xb0\\x3f\\xfa\\x2a\\xe8\\x93\\x8f\\x71\\x5d\\x1e\\xa4\\x4f\\xbd\\xe0\\xa9\\x30\\xbe\\x12\\x98\\x72\\xd4\\x79\\x9c\\x73\\x1a\\x51\\xa4\\x7d\\x73\\x4f\\x07\\xd2\\x8e\\xd9\\x8d\\x18\\x93\\xd5\\x2f\\x88\\x93\\x08\\xf4\\xa9\\x06\\x72\\xd3\\x4b\\xf2\\xc6\\x05\\x89\\x52\\x9e\\xe8\\x96\\xa7\\x92\\xbc\\xd5\\x97\\x24\\xe5\\x49\\x2e\\xb9\\xb1\\x9f\\xe4\\xbe\\x5d\\x10\\x5e\\x53\\xc3\\x8f\\x25\\x1d\\x37\\xd8\\x07\\xd8\\x36\\x89\\xd8\\xa6\\xe8\\xe8\\x8d\\x0e\\x70\\xf0\\x37\\x76\\xd6\\x38\\x08\\xcf\\xe6\\x1a\\xc9\\xb1\\x42\\xb4\\xd9\\x02\\xbd\\x52\\xc8\\xc7\\x74\\xda\\x66\\xcf\\x13\\xe1\\x7d\\xc6\\xd7\\x42\\x3e\\x0e\\xf3\\x61\\x12\\x73\\xa5\\x82\\x31\\xc2\\x7c\\x01\\x18\\xc8\\x87\\x25\\xf1\\x12\\x11\\xef\\xe2\\x30\\x43\\x48\\xde\\xb8\\x44\\x49\\x27\\x86\\x3f\\x40\\x72\\xdf\\x7b\\x20\\xd7\\x02\\xf2\\x57\\x18\\x13\\x77\\xf6\\x5e\\x16\\xf2\\x1b\\xe1\\xb2\\x6e\\xd9\\xad\\x8c\\x31\\xfa\\xfd\\x45\\xf8\\x5d\\x96\\xe3\\x26\\xdb\\x92\\xe5\\x68\\x5b\\x8e\\x72\\x84\\xd9\\x4f\\x98\\x46\\xb6\\x89\\x71\\x99\\x42\\x0e\\xfa\\x13\\xe6\\x3d\\xc0\\x40\\xfc\\xd1\\x80\\xd0\\x00\\x21\\xe4\\xb7\\x08\\xf9\\x34\\x28\\xa7\\xc9\\xb2\\x9c\\xea\\x1d\\xfd\\x38\\xe9\\x7f\\xa6\\x73\\x37\\x07\\xea\\xca\\x14\\xcc\\xa3\\xf9\\x6a\\x5d\\x21\\xcc\\x6e\\xc0\\x40\\x1e\\xad\\x56\\xeb\\x0a\\xc8\\x4d\\x2f\\xc9\\x1b\\x57\\x53\\x2e\\xbb\\xe4\\xa9\\x14\\x47\\x2b\\xbb\\x9c\\x51\\x2e\\x2a\\x71\\xec\\x27\\x0e\\xdf\\xf7\\x6a\\x7d\\x59\\x2b\\xe4\\x15\\xc6\\x1b\\x42\\x3e\\x13\\xf5\\x5c\\xc0\\x5c\\xa5\\xcd\\x18\\x61\\x5e\\x05\\x0c\\xe8\\x79\\x91\\x26\\x11\\x9a\\x9b\\xe3\\x20\\xc9\\x1b\\x2f\\x32\\xa5\\xdc\\x74\\xcb\\x3f\\x26\\xb9\\xef\\x47\\x90\\x6b\\x01\\xf9\\x30\\xab\\x42\\xdf\\x09\\xfc\\x73\\xb0\\xcc\\xee\\x64\\xae\\x18\\x18\\x23\\xcc\\xc7\\x80\\x01\\x0e\\xa6\\x72\\xc0\\x58\\x64\\x1e\\xa4\\xf1\\xaa\\xd6\\xb6\\x78\\x19\\xf6\\x4b\\x65\\x4a\\xfb\\xdd\\x2c\\xeb\\xbd\\x08\\x5f\\xeb\\x1c\\x81\\xa5\\xb1\\xae\\x94\\xc2\\x36\\x33\\xc6\\x5b\\x30\\x6c\\x8b\\x12\\xd6\\xa6\\x76\\xd7\\xfc\\xf9\\x3c\\x99\\xd3\\xd0\\x51\\x6b\\x2c\\xc9\\x9a\\x05\\x6f\\x8b\\xf7\\x66\\x29\\x6c\\x74\\x49\\x69\\x0a\\x37\\x8d\\x04\\xce\\xcc\\xb7\\x55\\x50\\xdd\\xc1\\x12\\xff\\x79\\x80\\xe0\\x0e\\xc1\\xdd\\x43\\x70\\x77\\x87\\x00\\xc1\\x42\\x70\\x77\\x87\\xe0\\xee\\xee\\xee\\x76\\x70\\x77\\x77\\x3f\\xb8\\xbb\\xbb\\xbb\\x1c\\x5c\\xb7\\xee\\xbd\\xff\\x7d\\xd8\\xda\\xd7\\x7d\\xd8\\xa7\\xdf\\xaf\\xa7\\xab\\x7b\\xba\\xba\\x6b\\xbe\\x9f\\x19\\xfe\\xdd\\xac\\x86\\x7f\\x76\\x91\\xdf\\x89\\x48\\x19\\xee\\x1d\\xcc\\x20\\x8b\\x60\\xb5\\xb9\\x7b\\xb5\\x1b\\x17\\x6e\\x89\\xd7\\x68\\x34\\xbe\\x5d\\x11\\xa1\\xe7\\x00\\xf1\\xd0\\xf7\\xb2\\xfa\\x77\\xf6\\x7e\\x57\\x36\\x2e\\x06\\x26\\xc3\\xe1\\x58\\x00\\xbf\\x0f\\x6b\\x27\\xec\\xcd\\x7e\\xee\\x5c\\xc7\\xe2\\xfd\\xb1\\xfb\\xfd\\xb4\\x75\\xda\\xf5\\xea\\x42\\x90\\xa4\\x2c\\x60\\xba\\x93\\x14\\xd0\\x38\\x5b\\x50\\xa2\\x8e\\xa5\\xb2\\x34\\xec\\xe5\\xaa\\x20\\x78\\xc3\\x78\\xec\\xfc\\x35\\xd2\\xbd\\x2a\\x86\\xe1\\x69\\xe2\\xc2\\x76\\x7d\\xba\\x45\\x67\\xbf\\x52\\xc6\\x13\\x5c\\x11\\x7a\\xa3\\x7c\\x6e\\x63\\x4f\\x72\\xa3\\xcd\\xb0\\xd5\\x76\\x4d\\x73\\x5f\\x3d\\x43\\xa7\\xc1\\x52\\x61\\xdc\\x20\\x63\\x1a\\xb3\\xbb\\x15\\x27\\x1b\\x3b\\xd4\\x39\\xd0\\xda\\xe7\\x20\\x41\\x1e\\xb4\\x37\\x45\\x86\\x83\\xda\\xba\\x81\\x78\\x7b\\x87\\x76\\xec\\xf4\\xe3\\x59\\x10\\x17\\xd6\\xb6\\x61\\x94\\x21\\x3c\\xc2\\xaf\\xa7\\xfd\\xaf\\xe3\\x5f\\x8b\\xd1\\xe7\\x3a\\xaa\\xe4\\xa2\\x64\\x0a\\x49\\x24\\x22\\xaf\\xdf\\xc6\\x9a\\xbf\\x4c\\xd3\\x1c\\x9f\\xd5\\x2a\\xcb\\x2d\\x8a\\xd2\\x13\\x03\\x43\\xe7\\x94\\x42\\xda\\x70\\x66\\xb3\\x8b\\xb8\\xe6\\x9b\\x6a\\x63\\x1e\\x8c\\x43\\x9d\\x58\\xf6\\x10\\xa8\\x27\\xc6\\xd2\\x5d\\xe6\\xf7\\xf8\\xd7\\x7b\\x7c\\x46\\x4f\\xd9\\x7e\\x56\\x75\\x05\\xd3\\x11\\xab\\x37\\xdf\\xf8\\x47\\x0e\\x47\\xe0\\x0c\\x05\\xb0\\x16\\x5e\\x04\\x7f\\xee\\x4b\\x3e\\x5c\\x7b\\x58\\x9d\\x6e\\x28\\x4a\\x97\\x04\\x4b\\x20\\x5f\\xa4\\xc7\\x65\\x63\\x70\\xb4\\x5a\\x2e\\xae\\x84\\x02\\x7f\\x94\\x65\\xb1\\xe5\\xd9\\x4d\\x0c\\x72\\x50\\xc0\\x2c\\x6f\\xa8\\x1a\\x21\\x03\\x35\\x96\\x99\\xf2\\x8d\\x4c\\xb1\\x2a\\x5f\\x69\\xdb\\x15\\x7a\\xd2\\x7c\\xa9\\x90\\x7e\\xc8\\x4f\\x67\\x8e\\xe8\\x0b\\x52\\x9c\\xdd\\xfd\\xb4\\xb5\\xe5\\xc9\\xf1\\x6f\\x7f\\xe5\\xce\\x09\\xde\\x07\\xd1\\x57\\xd2\\xd1\\x7d\\x2b\\x06\\xac\\x3d\\xe0\\x82\\xb4\\xfb\\xf6\\xd6\\x04\\xac\\xda\\xdd\\x86\\x30\\x15\\x0a\\x76\\x14\\x8f\\xf1\\x46\\x8c\\x3c\\xc2\\x4b\\x14\\x6f\\x28\\x7f\\x03\\xc5\\x93\\x4b\\x02\\xdc\\x34\\xd5\\x05\\xf5\\x22\\xf8\\x65\\xb0\\x80\\xcc\\x67\\xd3\\x5a\\xf7\\xf4\\xa3\\x09\\x54\\x00\\x10\\x8b\\x3f\\x77\\xc6\\xca\\x0c\\xe6\\x09\\x86\\x28\\xa1\\xdc\\xb0\\x34\\xe6\\x4e\\x2b\\x48\\x63\\x5a\\x98\\x60\\x2c\\x8e\\xd0\\x85\\x6e\\xa2\\x8a\\x3d\\xc3\\x57\\x24\\xe7\\xdf\\x23\\xcb\\x3e\\xb4\\x61\\xe5\\xfd\\xca\\x5e\\xb8\\x19\\x3b\\x13\\x9b\\x6f\\xbe\\xbb\\x06\\x03\\xdb\\x8b\\x54\\x94\\x6f\\x21\\x52\\xe4\\x7e\\x1f\\x36\\x3e\\xaa\\x65\\xcf\\x4e\\xfd\\x87\\xfd\\x13\\x3f\\x6b\\x2c\\x77\\x86\\xc6\\x0f\\xbd\\x48\\x42\\xab\\x4d\\x42\\x6a\\x8a\\x98\\xa3\\x1a\\x2b\\x4a\\xc9\\xe8\\xcc\\x82\\x2c\\x6e\\x4d\\x75\\x4a\\xbd\\x28\\xc2\\x48\\xac\\x18\\x46\\xd0\\x6c\\x3d\\x97\\x96\\x83\\x31\\x1f\\x60\\xea\\xaa\\xd1\\x14\\x5e\\x80\\xab\\x81\\x7d\\xb8\\x46\\x11\\xf5\\x6a\\x96\\xbc\\xf5\\xea\\xd9\\x15\\x09\\xfd\\x04\\x4d\\x7d\\xb1\\xaf\\x81\\x15\\x7a\\xe6\\xb1\\x02\\xd9\\x4c\\xe5\\xb8\\xf2\\x2e\\x57\\x22\\xb9\\x1f\\xf1\\xbb\\x7d\\x3e\\x54\\x98\\xdf\\x03\\x51\\x96\\xcb\\x55\\x23\\x0e\\x9c\\x9b\\xcb\\xed\\x33\\xc9\\x02\\xb0\\x95\\xb2\\x74\\xe9\\x38\\xf6\\xae\\xc5\\x63\\xeb\\x21\\x76\\xb9\\xbc\\x51\\xa6\\x8a\\xad\\xfb\\x52\\xbd\\x4a\\x12\\xc8\\xb5\\xb2\\xd2\\x39\\xdc\\x1e\\xc8\\x12\\x9d\\x6d\\x96\\x5d\\xf1\\x26\\xfe\\xc6\\x64\\x8c\\x49\\x48\\xb2\\xc1\\x23\\xba\\xde\\xff\\x6e\\x60\\xdf\\x9e\\xe7\\xba\\x3b\\x71\\x82\\x50\\x83\\xce\\xc2\\x04\\x3e\\xd1\\x35\\xb3\\x09\\xb6\\x3a\\xb6\\xbf\\x8c\\xac\\x45\\x38\\x25\\x83\\xf1\\x9a\\xfd\\x8e\\x13\\xcd\\xc8\\x94\\xf1\\x87\\xdf\\x40\\x79\\x2b\\x17\\xa2\\xff\\xd8\\xee\\xb7\\x87\\x69\\xe9\\xbe\\x75\\x49\\xc3\\xb7\\x56\\x3d\\xb4\\x28\\x69\\xfb\\xf5\\x25\\xd6\\xd0\\x58\\xd2\\x96\\x0d\\x20\\x5d\\x60\\x42\\x0a\\xd0\\x67\\xcb\\x48\\x2d\\xaa\\xaa\\xf3\\x65\\xf5\\x90\\xce\\x45\\x5b\\xf5\\x48\\x01\\x19\\x8f\\xd5\\x62\\xb7\\xd4\\x47\\x89\\x3a\\x05\\xb4\\xbd\\xe0\\xb8\\x76\\x47\\x40\\x43\\xf3\\x44\\xac\\xeb\\xbc\\x95\\x3b\\xf6\\xde\\x6d\\xf0\\xae\\x52\\xe5\\xba\\x95\\xd4\\x1a\\x13\\x4e\\xc2\\xdc\\xe1\\xbb\\x52\\x99\\xd9\\xcc\\x74\\xea\\x79\\x3b\\xc5\\xa1\\xa4\\xd0\\xf5\\x52\\xa4\\x42\\x27\\x39\\x41\\xcb\\x57\\x24\\x79\\xd7\\x7b\\xd0\\x74\\xba\\xff\\xab\\xd0\\xe3\\xd7\\xc3\\xd3\\xbd\\x2c\\x6d\\xf9\\x58\\xb4\\x33\\x31\\x8f\\xfe\\xe5\\x03\\xe6\\x99\\x0b\\x75\\x73\\xec\\x1f\\x67\\x1b\\x91\\x07\\xf2\\xa4\\x33\\x89\\xf9\\xe5\\x33\\x2f\\xd3\\xe2\\x38\\xa6\\xe0\\xc7\\x2d\\xd4\\xf5\\xbb\\xd7\\x5c\\xce\\xe6\\x8d\\xf2\\xb9\\x61\\x11\\xcf\\x1c\\xd2\\xe1\\xd9\\xc1\\x31\\xb7\\x58\\x42\\x2a\\xd0\\xec\\x84\\xa1\\x1b\\x9b\\x03\\x7b\\x07\\x0f\\x52\\x26\\x77\\x46\\x4f\\xa1\\xfd\\xd8\\xa0\\xa2\\x08\\x21\\x43\\x65\\xcb\\x9a\\x5e\\x1c\\xb1\\x01\\x68\\xf6\\xce\\x28\\xe5\\x60\\x44\\x14\\x85\\x4e\\x55\\x0f\\xc1\\x91\\x7e\\x67\\xc7\\xb5\\xb6\\xa6\\xb2\\x84\\x2a\\xf4\\xa1\\xb1\\xbf\\x0e\\x99\\xa7\\xb3\\x33\\xde\\xd9\\xe0\\x9c\\x72\\x9c\\x17\\x16\\x43\\x7d\\x3d\\x2a\\xe4\\xfe\\x7e\\x98\\x9f\\x47\\x72\\x52\\x2d\\xcb\\x4c\\xc5\\x9d\\x0b\\x7e\\x42\\x1c\\xa4\\x7c\\x43\\x83\\x0e\\x2e\\xac\\x8f\\xd1\\x94\\x3d\\x2f\\x55\\x6d\\x56\\xd6\\xa0\\x98\\xf5\\x42\\x79\\xad\\x21\\x40\\x07\\x97\\xb2\\x0e\\x93\\x12\\x83\\x49\\x6f\\x17\\xd6\\x3a\\xdc\\xf1\\xee\\x92\\x68\\x1d\\x87\\x61\\x32\\x70\\x96\\xa8\\xbf\\x48\\xd1\\x1f\\x51\\x85\\xe7\\xab\\x15\\x68\\x6f\\xd9\\xd7\\xf5\\x6e\\xb1\\x0f\\x2c\\x14\\xdd\\x1e\\xd1\\x14\\x1c\\x2d\\xdb\\x16\\x8a\\xb5\\x1f\\x29\\xa6\\xc3\\x7d\\x0a\\x11\\xef\\x29\\xfa\\x85\\x5c\\x0a\\xcd\\x93\\x15\\xf5\\x49\\xe2\\x8f\\x90\\x6f\\x9a\\xf7\\x82\\x1b\\x1e\\x8b\\x8d\\x7a\\xf2\\x8f\\xd4\\x2d\\x65\\xfb\\x51\\xbe\\x79\\xa0\\xf1\\xba\\x6f\\x5b\\x90\\x24\\xd0\\x89\\x4f\\xbb\\x53\\x6b\\x6e\\xdf\\x52\\x8e\\x9f\\x15\\xa2\\xd6\\x35\\xdf\\xe1\\x5a\\xe5\\xd4\\xbd\\xac\\xef\\xb3\\x6c\\x3b\\xcd\\x05\\x7b\\xed\\xaf\\x1e\\x5f\\xa4\\xc2\\x0b\\xd0\\x84\\x75\\x05\\x7f\\xe7\\x0c\\x8a\\x66\\xa0\\x75\\x7d\\x70\\xcb\\xcb\\xdb\\xf1\\x2d\\x1a\\x71\\x97\\x24\\x54\\x66\\xac\\x66\\x76\\x2f\\xc9\\xde\\xea\\xbd\\xb8\\x17\\x6e\\xc1\\x81\\xf9\\xfd\\x55\\x34\\x26\\xb2\\x6e\\xc7\\xbf\\xb9\\xb6\\x94\\xfe\\x4a\\x72\\x63\\xd0\\xf7\\xe6\\x38\\xcc\\xe5\\x9c\\x81\\x6d\\x13\\x5c\\xaf\\xb7\\xcb\\x38\\x2c\\xad\\x1c\\xc3\\x60\\xb8\\xd9\\x8a\\x34\\x6e\\x8f\\x97\\xb2\\xdf\\xf6\\x38\\xfd\\x2b\\xbc\\xe5\\x8f\\x7e\\xbd\\xc9\\xc7\\x01\\xc9\\x1d\\x6d\\x58\\x7a\\x40\\x9a\\x2d\\x68\\xc3\\x39\\xe4\\xb6\\xa8\\x77\\x83\\x82\\xc5\\x3a\\xc7\\x1b\\xce\\x6a\\x92\\x0c\\xa4\\x6d\\xe0\\xbc\\xf8\\xd4\\xb7\\xe1\\x04\\x68\\x2e\\x0b\\xad\\xe2\\x0c\\xaf\\x5b\\x43\\x73\\xec\\xc0\\xaa\\x16\\x42\\xda\\x5f\\x2e\\x0b\\xd3\\xb0\\xb2\\x91\\x9c\\x70\\x01\\x55\\x3a\\x9f\\x25\\xab\\x61\\xa6\\xf9\\x3b\\x5c\\x19\\x1c\\xdf\\x41\\x2e\\x94\\xf4\\xea\\x3c\\x75\\x9a\\xc1\\xc9\\x16\\x81\\x6a\\xdf\\x78\\x97\\x14\\xfa\\xb2\\xa8\\xcf\\x8e\\x4d\\x47\\xa1\\xec\\x6d\\xea\\xb6\\x7a\\x5b\\xb7\\xe0\\x6e\\xd4\\x4b\\xc2\\x38\\x07\\x29\\x51\\xf5\\x1f\\xd5\\x6d\\xc9\\x8f\\xe4\\x5a\\x04\\x87\\xb0\\xf7\\x6e\\x59\\xc6\\x75\\x43\\x2d\\xf4\\x8e\\xe7\\x8e\\xd3\\x2c\\x6a\\x01\\xb1\\xb1\\x24\\xf5\\x4f\\x14\\xa6\\x3d\\xfd\\x50\\xaf\\xfa\\x3d\\xce\\x15\\xbe\\x2d\\xa0\\x67\\xd7\\x0e\\x37\\xf1\\x4f\\x00\\xaa\\xfe\\x33\\xf5\\x17\\x4d\\xd8\\x8b\\x78\\x5d\\x09\\x65\\xa2\\x40\\x11\\x70\\x11\\xba\\x0a\\x6c\\x60\\x63\\x76\\x51\\xdc\\xa4\\xf3\\xf1\\x77\\xf9\\x62\\x72\\xb7\\x36\\xe1\\xde\\x61\\xc6\\x84\\xf9\\x70\\x32\\x32\\xed\\x0a\\x07\\x8a\\x90\\xfc\\xab\\xf8\\x34\\x39\\x01\\x8a\\x39\\xb6\\xf4\\x45\\xb2\\x5d\\x96\\x52\\x27\\xe3\\xe2\\xa3\\x3c\\x3a\\x6c\\x29\\x9d\\xac\\x50\\x66\\x1e\\x75\\xac\\x73\\x5c\\x17\\xf2\\x0e\\x37\\x62\\xf8\\x58\\xcf\\xe8\\x8d\\xe5\\xfa\\x3d\\x42\\x60\\x48\\xe6\\x31\\x4d\\xf3\\xcd\\x4c\\x10\\xf3\\xd8\\x94\\x0d\\x22\\xf0\\x5c\\x5c\\x6a\\xfe\\x7b\\x1b\\xa7\\x43\\x35\\xf1\\xdf\\x95\\x9f\\x08\\xeb\\xd6\\x5f\\xfd\\xeb\\xcc\\xd6\\x99\\x18\\x4b\\xc5\\x1c\\xa6\\x60\\x03\\x93\\x09\\x88\\x18\\xe7\\xad\\xf9\\x70\\x23\\x8a\\x0e\\xf5\\x26\\x58\\x32\\xc9\\x06\\xbc\\x9f\\x3c\\x00\\x47\\x68\\xc7\\x2a\\x65\\x91\\xd4\\x0a\\x71\\x4d\\x2e\\xcf\\x82\\x6f\\xa6\\xb8\\x29\\x9b\\x5e\\x3e\\x3f\\xcf\\x1c\\xca\\x0f\\x76\\x47\\x21\\x1b\\x00\\x63\\xff\\xda\\xe9\\x3b\\x68\\x2d\\x57\\x75\\xa8\\xc6\\x24\\x2a\\xad\\xa9\\x60\\x93\\xc6\\x3f\\xfe\\x30\\x6a\\x7a\\xb6\\xdd\\x30\\xfe\\xcf\\x09\\x5a\\x91\\x5c\\xac\\xa7\\xd0\\x89\\xa0\\x44\\x4d\\xda\\x2c\\x99\\xb9\\xe2\\x50\\xeb\\xf0\\x1d\\x9d\\x1d\\x44\\x22\\xd3\\xc9\\xd8\\x52\\x3e\\x9e\\x58\\x7c\\xf4\\xf9\\x30\\xad\\x1d\\x3d\\x84\\x59\\xea\\xd2\\x4f\\xdc\\x67\\xcc\\xdc\\x08\\x26\\xd7\\x33\\x15\\xf6\\x30\\x1d\\xb9\\x9f\\x50\\x99\\x0b\\x24\\xe4\\x00\\xcd\\xfe\\xe0\\x3e\\x8b\\x2b\\x98\\x9a\\x34\\xf0\\x08\\x2f\\xb0\\xff\\x07\\x2b\\x50\\x09\\xf1\\x3a\\xc9\\x0c\\x3c\\x0e\\xf0\\x52\\x59\\x54\\xac\\x14\\x91\\x24\\x3b\\xf7\\x17\\xd3\\x37\\x3d\\x49\\x06\\xd5\\xfd\\xe4\\x84\\xa3\\x70\\x6b\\xc7\\x8c\\x9d\\x58\\x8f\\xad\\x24\\x4a\\xb3\\xe5\\x83\\x6c\\x87\\x43\\xba\\x05\\x14\\x8b\\x0c\\xfe\\xc9\\x38\\x52\\xca\\xc8\\x50\\x7f\\x86\\x9f\\xfb\\x2e\\xfa\\xca\\xee\\x5d\\x58\\x4c\\x3b\\x3b\\x36\\xd3\\x22\\xcc\\x83\\x3a\\xec\\x46\\x5c\\xef\\x62\\xc0\\xdf\\x11\\xb7\\xff\\x97\\xae\\x6f\\x35\\x10\\x2d\\xed\\x27\\xe8\\xa2\\x05\\x28\\x36\\xe1\\x88\\x41\\xe1\\x36\\x16\\x0e\\x3b\\xb7\\x29\\xa4\\x3d\\x84\\xc9\\xb8\\x9f\\xfe\\x2f\\x99\\xe7\\x49\\xba\\x11\\xe9\\xb3\\x34\\x09\\xf5\\xf4\\xe7\\xa1\\x8e\\x08\\xe3\\x1e\\xee\\x16\\x31\\x2c\\xe6\\x5d\\x11\\x6b\\x8d\\x7e\\xec\\x20\\x9f\\xfc\\x9d\\xe8\\x07\\x0f\\x9a\\x75\\xcb\\x77\\x8b\\x0d\\x13\\xc1\\x3e\\xc8\\xd7\\x97\\xe7\\x71\\xeb\\x02\\xe3\\x6d\\xb8\\x74\\xf9\\xe6\\x49\\x68\\xe3\\x75\\x6b\\x13\\xb5\\x5b\\x9e\\x11\\x36\\x49\\xbf\\x11\\x1f\\xa3\\x90\\xc0\\x0f\\x09\\xc3\\x6a\\x63\\xdd\\xd1\\x7d\\x15\\xb7\\x09\\xbd\\xb0\\x92\\x25\\xc1\\x89\\xc8\\xf8\\x92\\x95\\x49\\x23\\xf6\\x04\\xa2\\x92\\xc7\\x99\\x69\\x75\\x58\\x1f\\x98\\x0c\\x17\\xef\\x88\\xb0\\x92\\x55\\xc1\\x31\\x82\\xf8\\x12\\xc5\\xdd\\x55\\x19\\xfe\\xc9\\x9e\\xd8\\xd4\\xb5\\x28\\x1c\\xc0\\x5e\\x6b\\x08\\x37\\x67\\x2d\\x9a\\x0f\\xda\\x65\\x13\\x6c\\x32\\x3b\\x72\\x3c\\xa1\\x1f\\xba\\xbd\\x74\\xe4\\x9f\\x06\\x3e\\xb9\\x27\\x8f\\x61\\xcc\\xe9\\x5f\\x2e\\x4d\\x96\\x4f\\x12\\x40\\xe4\\x21\\x83\\x51\\xa8\\xb4\\x8a\\x8d\\x14\\xaa\\x36\\x35\\x93\\xaa\\x40\\x2e\\x06\\xd6\\x6c\\xbe\\xae\\xdd\\x2c\\x8b\\xcd\\x9d\\x6e\\xb8\\x91\\xe7\\xd3\\xe2\\x3c\\x77\\x7e\\xe8\\x9b\\x13\\xd8\\x57\\x88\\x44\\x3e\\x39\\x0b\\x96\\xba\\xd3\\x8f\\x4e\\xbb\\x9c\\x21\\xf6\\xae\\xe2\\x55\\x7b\\xde\\xfd\\x4a\\xff\\xfc\\xbf\\xf9\\x86\\xbb\\xcb\\x3f\\x3e\\x94\\xa7\\x6c\\xbb\\x38\\x0b\\x5a\\x58\\xc3\\x4f\\x5d\\x97\\x02\\x71\\x92\\xec\\x81\\xbd\\x2f\\x78\\x88\\x53\\xda\\x43\\x6d\\xb5\\x6b\\x07\\xb6\\x5f\\x1c\\x5c\\x65\\x94\\x03\\x1c\\xde\\x78\\x3a\\x67\\x78\\xae\\x87\\x98\\x15\\xfc\\x4c\\x44\\xd3\\x3d\\x87\\x8f\\xeb\\xb6\\xb7\\x9d\\xdf\\x3c\\xaa\\x9a\\x4c\\xc3\\x05\\xad\\xbf\\x13\\x8c\\x60\\x27\\x8b\\x9b\\xd9\\x6f\\xb2\\x31\\x0b\\x4e\\x15\\xf0\\x44\\xf2\\x22\\x63\\x3b\\xb7\\xce\\xa7\\xc0\\x7d\\xfe\\x96\\x76\\x6f\\xcb\\xca\\xa4\\x4b\\x75\\x0c\\x27\\x2a\\xda\\xdf\\xfc\\x5b\\x67\\xc0\\xc0\\x49\\xfe\\x56\\x62\\xd6\\x5f\\x35\\x3b\\x65\\x6a\\x95\\x9e\\xdd\\x39\\x85\\x95\\x77\\x0c\\x2d\\xb7\\x38\\x36\\xde\\x1e\\xab\\x2e\\xe4\\xfa\\x3a\\x19\\x29\\x79\\xb3\\x52\\xfa\\x59\\x10\\x2a\\x0b\\xa6\\xba\\xcb\\x35\\xd1\\xea\\x3b\\xeb\\xe3\\x52\\x48\\xe7\\xb3\\x7e\\x29\\xc0\\xb1\\x48\\x7d\\x63\\x62\\xc8\\x14\\x20\\xef\\x76\\x0b\\x72\\xb9\\x5f\\x19\\x97\\xc7\\x7b\\x34\\x96\\xdd\\x86\\x78\\x8c\\x8c\\x5f\\x81\\x65\\x54\\x1a\\x56\\xb4\\xb6\\x9d\\xd4\\x2f\\xa8\\x4c\\xf1\\xce\\x55\\x68\\x52\\x0c\\xf8\\x20\\xe1\\xbe\\x8b\\xdf\\x77\\x08\\x0e\\xb4\\x8e\\xeb\\x65\\xa1\\x99\\x59\\x66\\xc5\\x41\\x34\\x02\\xb1\\x85\\xb9\\x79\\x3d\\x7e\\xe6\\x0a\\x64\\x5b\\xfa\\xb7\\x41\\x3e\\x72\\x20\\xd4\\x6e\\xf7\\xb0\\x9a\\xeb\\x19\\x15\\xf5\\x66\\x21\\x72\\xce\\xb6\\x85\\x59\\xa8\\x2e\\xd3\\x81\\xd8\\xfc\\xdd\\x34\\xd3\\xfa\\xa6\\x7f\\x01\\x1b\\xb0\\x80\\x14\\xbd\\x50\\x56\\x6d\\x49\\xea\\xa3\\x18\\x74\\x00\\x10\\x4b\\x0c\\x77\\x86\\x75\\xcf\\x1a\\x2a\\xfa\\x30\\xd9\\x9e\\x79\\x84\\x1a\\xf8\\x5f\\x6d\\x5c\\x4d\\x20\\xcf\\xa2\\x49\\xe9\\xf9\\x93\\x88\\x67\\x2a\\x94\\x84\\x96\\x17\\xda\\x23\\x54\\xf5\\x2f\\x59\\xcc\\x48\\x1c\\x7a\\xe2\\x36\\x8a\\xde\\xb4\\x01\\xa3\\xed\\x0a\\xbd\\xab\\x6c\\x1a\\x66\\xb5\\x19\\x62\\x95\\xc0\\x9d\\x5b\\x38\\x20\\x4c\\x06\\xcd\\x42\\x64\\xdb\\x10\\x0d\\xa4\\x63\\x36\\x21\\xaa\\x42\\x64\\x02\\xbd\\xa2\\x83\\xe0\\x7d\\x6e\\x01\\xdd\\xfd\\x30\\x41\\xee\\xb4\\xd7\\x66\\x3b\\xe8\\x51\\x5a\\xc7\\x9a\\xc4\\xee\\x9d\\x01\\x69\\x0b\\xb3\\xd0\\x27\\xbb\\xa7\\x1b\\xd1\\x6c\\xed\\xd1\\xe5\\xec\\xbc\\x17\\x36\\xa0\\x21\\x64\\x5f\\xce\\x9c\\x2f\\x67\\x30\\xe1\\x70\\x82\\x06\\x4f\\x38\\xe8\\x05\\x86\\x39\\xd7\\x36\\xdb\\x12\\x07\\xd0\\xb6\\x9a\\x7c\\x10\\xed\\xec\\x5d\\xd8\\x19\\xab\\x05\\x94\\xbe\\x5b\\x5a\\xa4\\xfd\\x0b\\xdc\\x4b\\x20\\x80\\x95\\xbe\\x7a\\xc3\\xe8\\xb7\\xb2\\x7c\\x46\\x98\\xb3\\x0f\\x7c\\xbe\\xb4\\x0f\\x77\\xd3\\x9e\\x9d\\xcd\\x44\\xdb\\xd9\\xb1\\xf5\\xaa\\x93\\xba\\x82\\x65\\x40\\x88\\xb2\\x1f\\x20\\xca\\x81\\x11\\xdd\\x22\\x1f\\xae\\x35\\x4f\\xf7\\x69\\xed\\x41\\x3d\\xed\\x49\\x7d\\x1c\\xc8\\xba\\x07\\x0b\\xbf\\xc2\\x83\\xa3\\x41\\xbd\\x3e\\x69\\xed\\x0a\\x90\\x0e\\x52\\x3d\\x49\\x5c\\x8c\\x27\\x50\\x0e\\x33\\x39\\xfd\\x24\\x94\\x6d\\xb6\\x38\\x23\\xb4\\xde\\x76\\xa8\\x9b\\x1a\\x5a\\xb7\\xbe\\xf9\\x28\\xe3\\xea\\x01\\xc6\\x52\\x00\\x22\\x38\\x30\\x8f\\xc1\\x99\\xc4\\x66\\x9e\\xea\\xce\\x50\\x1a\\xb5\\x01\\x3e\\x74\\x71\\x09\\xe8\\x5e\\xd9\\xdd\\x07\\x06\\xe9\\xc4\\x01\\x17\\x0d\\x9f\\x34\\x88\\xf0\\x4a\\x5d\\x4c\\x43\\x40\\x6a\\xdf\\x3a\\xe2\\x40\\x4a\\x04\\xc5\\xdd\\x76\\xed\\x59\\x4e\\x9f\\x58\\xd4\\x9b\\x86\\xad\\xbe\\xfa\\x47\\x1a\\x94\\x9f\\x3f\\x3f\\x5f\\x47\\x8d\\xf8\\x3d\\x56\\x98\\xdf\\x46\\x14\\x8d\\xfb\\xfe\\x2a\\x23\\x01\\xe5\\xa8\\xa3\\xd4\\x56\\xbb\\x97\\x5f\\x12\\xaa\\xdd\\x28\\x72\\xe4\\x41\\x77\\x2c\\x69\\x67\\xc8\\xee\\x21\\x91\\x5a\\x9c\\xed\\x2f\\xa2\\x73\\x0d\\xa0\\xac\\x24\\xf1\\x89\\x54\\x9a\\x51\\x50\\x19\\x0e\\x5d\\xb2\\x76\\xf8\\xa8\\x0a\\xb3\\x29\\xaf\\x01\\x3e\\xb4\\x69\\x21\\x28\\x4a\\x99\\x45\\x07\\x00\\xd5\\xfe\\x0e\\x0f\\x87\\x8c\\x26\\x8a\\xe2\\x2a\\x94\\xf7\\xd9\\x38\\xda\\x59\\xaa\\x72\\x86\\xba\\xf4\\x75\\xa9\\xfc\\x65\\xf5\\x84\\xcf\\x5a\\x15\\xd2\\xf1\\x79\\x4e\\x69\\xbb\\xd5\\xf3\\x67\\x0c\\x67\\xcc\\x3b\\x53\\xdd\\x0a\\xfb\\x99\\x85\\x67\\xb7\\x3b\\x3a\\x95\\xa0\\x58\\x11\\x67\\xa5\\xeb\\x85\\x64\\xab\\x65\\x54\\xf6\\x76\\xcc\\x3b\\xd3\\xdb\\xeb\\x78\\x44\\xfe\\xd1\\xe6\\xe7\\x2c\\xc5\\xef\\x20\\xbb\\xe0\\x3d\\x6e\\xd1\\x53\\xe3\\xed\\x23\\x86\\x5d\\xfa\\xde\\x1c\\x10\\x97\\x70\\xb7\\x7f\\x0e\\x7a\\x29\\x05\\x03\\xab\\xde\\x11\\x8f\\x73\\x90\\x12\\x11\\x44\\x1b\\x9e\\xc2\\xdd\\x90\\xfb\\xea\\x5f\\xe0\\x65\\x0a\\x4d\\x42\\xe7\\xe1\\x39\\x24\\x2d\\x93\\xdd\\x38\\xa6\\xd4\\xd6\\x7d\\x1d\\xbe\\x4f\\xfd\\x7c\\x68\\xc6\\xee\\x4c\\xe8\\x98\\xbd\\x11\\x75\\x01\\x50\\xc6\\xe2\\x6d\\xbd\\xec\\x72\\xc9\\x27\\xff\\x8a\\x22\\x70\\x63\\x41\\x7a\\xeb\\xfd\\x45\\x94\\x56\\xef\\x24\\xc5\\x95\\xc6\\x7d\\x1c\\xd8\\xf7\\x57\\x50\\x7d\\x6d\\x84\\x53\\xbd\\xa1\\xd7\\x57\\x0a\\x9f\\x8e\\x91\\xd6\\x4e\\x03\\x28\\x7b\\x84\\xcc\\xd2\\x85\\x38\\x72\\xf4\\x29\\x64\\x65\\x41\\x63\\x46\\xa1\\xe6\\x6c\\x6a\\xb1\\x7d\\xec\\x20\\x3c\\x17\\x6e\\x31\\x7a\\x2b\\x2d\\x6a\\x01\\x5f\\xd2\\xc8\\xee\\x5d\\xfd\\xe8\\xb8\\x63\\xf4\\x6d\\xcc\\xaa\\x80\\xbe\\x06\\x31\\xf9\\xfd\\x97\\x3b\\x6a\\x02\\x17\\x49\\x59\\xf2\\x9d\\x66\\x0b\\x7f\\xfc\\x01\\x43\\x8a\\x26\\x90\\x43\\x35\\x60\\x7f\\xe0\\xdb\\x81\\x43\\x15\\x58\\x74\\x46\\x13\\xf6\\x3d\\x48\\x58\\xcf\\x8b\\xa4\\x79\\xd9\\x97\\x79\\xee\\xef\\x29\\x8d\\x52\\x69\\x8e\\x35\\x56\\x9e\\xf9\\x61\\xd1\\x7d\\x62\\x26\\x04\\x54\\xf3\\xb7\\xcc\\x36\\x9f\\x96\\xd2\\x2f\\xeb\\x23\\x47\\x93\\x91\\xb6\\x7a\\x7e\\xbd\\x16\\x53\\x7f\\x85\\x78\\xf6\\x63\\x59\\xed\\x8e\\xc9\\xc4\\x3a\\x34\\x77\\xda\\x2b\\x5f\\xff\\xc1\\x44\\xc2\\xb8\\x95\\x4a\\xb6\\xc4\\x5d\\xcc\\x83\\xe4\\x42\\x47\\xba\\xdd\\x8a\\x6a\\x7e\\xb8\\x22\\xa7\\xc6\\xa0\\x87\\xd4\\xd3\\x93\\xd8\\x87\\xa5\\xcf\\x45\\x38\\x2e\\x64\\xb2\\x1e\\x12\\x9b\\x00\\x82\\xc0\\xa1\\x42\\xcf\\x4a\\xc1\\x18\\x12\\x0c\\xff\\x17\\x54\\xfa\\xd8\\xc5\\xa5\\x0a\\x75\\xe2\\x1a\\x43\\x77\\x3f\\x21\\x74\\x33\\x5b\\xa0\\xad\\xa8\\x96\\x6e\\x7c\\x3d\\x17\\x2a\\x2e\\xdd\\xe0\\x2d\\x0f\\x39\\x4b\\xaf\\x92\\x65\\x57\\x08\\x7f\\x4d\\x9b\\xfb\\xfd\\x3a\\xfc\\xbe\\x91\\x63\\x15\\x22\\x9a\\xa3\\x7f\\x00\\x19\\xf1\\x52\\x7f\\xc2\\x47\\x11\\xc6\\x3e\\x13\\x34\\x52\\x8c\\xed\\x0c\\x8e\\x50\\xd8\\x31\\x60\\xa1\\xbb\\x55\\x62\\xa1\\xce\\x7c\\xc7\\x0d\\xcd\\xd9\\xfd\\x77\\x95\\x11\\xfb\\xaf\\x10\\x4c\\xc9\\xf9\\xeb\\xdf\\x7c\\xbd\\x75\\xa7\\x3c\\xf8\\x99\\x96\\x3d\\xe1\\x71\\x5d\\xbf\\x83\\x64\\xfe\\x3d\\x92\\xba\\x83\\x81\\x9a\\xb4\\x35\\x36\\xa9\\xdb\\xa6\\x8f\\x94\\x2f\\x43\\xbc\\xce\\xd6\\x50\\x42\\x04\\xcc\\xff\\x3e\\x4a\\x64\\x07\\xc2\\xb4\\xf1\\x04\\x71\\x0e\\x55\\x23\\xf6\\x43\\xc5\\xc6\\xc8\\x90\\xd5\\x84\\x7d\\x2c\\x93\\x72\\x46\\x0c\\x4c\\xd1\\x24\\xe7\\x97\\xe2\\x13\\xa0\\x86\\xe9\\x6f\\xf2\\x20\\xbc\\xc1\\x14\\xdc\\x9c\\xba\\x83\\xda\\x5d\\x6c\\x46\\x10\\x51\\x78\\x0a\\x69\\xbf\\xfc\\xe1\\x1b\\xdd\\xfa\\xd5\\xc5\\x88\\xf4\\x08\\xfd\\x20\\xd6\\x45\\xaf\\xec\\xb3\\x02\\x89\\x61\\xa5\\xf8\\x14\\x20\\x0d\\x32\\x2a\\x51\\x3e\\x3a\\x93\\xe5\\xc1\\xea\\xe9\\xc0\\xaa\\x25\\x79\\xfa\\xc4\\xec\\xab\\xb6\\x6a\\x3c\\x14\\xdc\\x1d\\xee\\xc2\\x24\\xf8\\x98\\x59\\x2a\\xf6\\x98\\x96\\x7a\\x0e\\xeb\\x24\\xf1\\xa8\\xbf\\xc7\\x50\\x1d\\xe6\\x84\\x35\\x8b\\x9e\\x32\\xe2\\xb6\\x5c\\x92\\x4c\\x09\\x5c\\x9e\\x4c\\x09\\x77\\x91\\x1b\\x77\\x83\\xdf\\x87\\x61\\x66\\x0d\\xb7\\xe2\\xd9\\xfc\\x5d\\x37\\xec\\xad\\x39\\xd8\\xe0\\x1b\\xe2\\x37\\x07\\xcd\\x9b\\xfd\\xac\\x1e\\xa8\\xcf\\x7d\\x6e\\xa6\\x67\\x0d\\xaa\\xae\\xe8\\xe7\\x9c\\x15\\x88\\x18\\x57\\xbf\\x0c\\xab\\x88\\xed\\xf3\\x9b\\xda\\xf7\\x06\\x02\\xb7\\x5b\\xcb\\xd5\\x3a\\xe7\\xdc\\x0b\\x19\\xda\\x6d\\x4d\\xd2\\xd7\\x8b\\x86\\x33\\x70\\x60\\xee\\x09\\x93\\xcf\\xce\\x84\\x23\\x10\\x05\\x28\\xa6\\x35\\x7a\\x46\\x2e\\xf7\\xa0\\x96\\x23\\x5b\\x44\\x72\\x3a\\xb0\\xce\\xfb\\x92\\x45\\xbc\\x19\\x27\\xfc\\x01\\xf3\\xd4\\xc3\\x21\\x9a\\xa2\\xad\\x47\\x52\\xff\\x11\\x05\\xd9\\x6c\\x8a\\xc0\\x1e\\x44\\xf3\\x96\\x75\\x93\\x6c\\xb5\\xa9\\x9f\\x79\\x1b\\x17\\xf2\\x77\\x29\\x05\\xd5\\xf6\\x29\\x07\\xbb\\x94\\xb6\\xbc\\xb9\\xa0\\x58\\x33\\xdb\\xea\\xb8\\x63\\xb3\\xb4\\x54\\x81\\x83\\xaf\\xb5\\xd9\\xf5\\x6e\\x34\\x9f\\x9e\\x08\\x93\\xda\\x89\\xc1\\x28\\xbe\\x9e\\x63\\x17\\xed\\x81\\x35\\xab\\x6f\\xa6\\x89\\xee\\xe9\\xbd\\xf7\\x92\\x13\\x16\\x44\\xd3\\x56\\xab\\x4c\\xdc\\x8e\\xc8\\x3b\\xa3\\xa2\\x13\\x45\\x22\\xfc\\xcb\\xbc\\x9f\\x45\\x93\\x74\\xdf\\x4c\\xa5\\x1a\\x17\\xf2\\xbe\\xfb\\xd4\\x18\\x4f\\x8c\\x84\\x6c\\x83\\x71\\xc6\\xb7\\xc5\\x76\\x5d\\xe3\\x31\\xbc\\x19\\xde\\xbb\\xa1\\x6e\\x8f\\x45\\x74\\x6d\\x31\\x1f\\x73\\x0d\\xc1\\x1a\\xf1\\x29\\x66\\x64\\x55\\xa8\\x3d\\xa8\\x4b\\xd2\\xbb\\x85\\xee\\xb0\\x4d\\x3c\\x52\\x4c\\x1b\\x2d\\xbf\\x03\\xaf\\xe9\\xb2\\x1e\\xa1\\xb6\\x4b\\x1a\\xaf\\x71\\x06\\x5c\\x4d\\xdf\\x78\\x89\\xba\\x11\\xd7\\x9e\\x04\\x76\\x3b\\x7c\\xdf\\x04\\x31\\xbd\\xcc\\xd0\\xb7\\x05\\x9f\\x89\\x01\\xdb\\xa9\\xe1\\xd7\\xf3\\xbb\\x9e\\x68\\xc1\\x4c\\xa1\\xd7\\x7d\\x97\\x9c\\x1e\\xfb\\x12\\xb7\\x02\\xdf\\xba\\xaf\\x31\\xee\\xb4\\x44\\x04\\x1b\\x37\\x97\\xe0\\xb6\\x07\\xd6\\x6d\\xbe\\xdf\\x64\\xa3\\x6e\\x77\\x0d\\x3e\\xd1\\xdd\\x08\\x44\\x7c\\x64\\x3b\\x96\\xf9\\x2e\\x4f\\xd9\\x37\\x77\\x29\\x24\\x8d\\x4e\\x42\\x82\\xb9\\x0f\\x0e\\xc5\\xae\\x5d\\xe2\\x3f\\x8c\\x71\\x34\\x6c\\xab\\xb1\\x3d\\xb8\\x32\\xb8\\xe0\\x5f\\x12\\xff\\xfa\\xfc\\x90\\x4d\\xb1\\x4c\\x4b\\xd2\\x33\\x60\\x98\\xa1\\x11\\x79\\x2e\\x29\\x7a\\xcf\\x64\\x24\\x0d\\xbd\\x51\\x56\\xc5\\xf9\\xa3\\x21\\x70\\x6f\\x10\\x27\\x87\\x6f\\x5d\\x3a\\x3f\\xc9\\x05\\x7d\\xa4\\xa2\\x01\\x54\\xe8\\xf2\\x3b\\x7c\\x81\\x34\\x3c\\x48\\x6b\\x14\\x23\\xa1\\x9a\\xf3\\x95\\x79\\x4b\\xe7\\xe9\\xfa\\xeb\\xa5\\xe0\\x7f\\x1d\\x5a\\x35\\xff\\x20\\x41\\x2a\\x44\\xd2\\x3d\\x8c\\xf8\\xce\\x71\\x23\\x10\\x39\\xd6\\x82\\xd5\\x6d\\xd6\\xb2\\x4c\\xb6\\x6f\\x34\\x37\\xde\\xa2\\x26\\x50\\x01\\xc3\\x8b\\xb7\\x1d\\x2f\\xdf\\xfd\\x44\\x5e\\xc4\\x3f\\xe7\\x5c\\x8d\\x3a\\x27\\x40\\xc5\\xbd\\xfd\\x43\\x4e\\x4d\\xf1\\x39\\x14\\x68\\xdf\\x04\\xd3\\xd8\\xc4\\x6f\\xac\\x4b\\x77\\x60\\x2b\\xf5\\xe2\\x39\\xd6\\xf9\\x66\\x7c\\x9c\\x6b\\xb1\\x4d\\x4b\\x32\\xa5\\x0d\\x3b\\x54\\x9b\\x7c\\x96\\x6e\\x35\\x54\\x94\\xbd\\xe5\\x16\\x8f\\xd5\\x90\\x95\\xd0\\x47\\xe4\\x25\\x41\\x1b\\xeb\\xe2\\xdf\\x52\\xba\\xf5\\xcf\\x56\\xd1\\x34\\xae\\xe5\\xc7\\x71\\xb7\\x0e\\xcd\\x54\\xbe\\xc3\\xad\\x5d\\x98\\x99\\x8a\\xe1\\xa9\\x46\\x32\\xf8\\x0b\\x7c\\x36\\xff\\xd3\\xd6\\xab\\xbe\\xf9\\xaa\\xec\\x9c\\x46\\x03\\xb6\\xf1\\xa0\\x9f\\x27\\xa6\\xa2\\xea\\xc0\\x27\\xf9\\x38\\x46\\xa7\\xd3\\xc2\\xf9\\xa5\\x6c\\x59\\xc8\\xfd\\x2a\\x8d\\x80\\x51\\xc3\\x63\\x0d\\x40\\x5c\\xf5\\x50\\xc3\\x5d\\x81\\xfb\\x6e\\xa7\\x93\\xc5\\xc3\\xeb\\x2b\\x25\\x3b\\x3d\\xb6\\xe6\\x3b\\x91\\xd3\\xf1\\x78\\x11\\x6f\\xd2\\x1f\\x3e\\x1a\\x57\\xf6\\x42\\xdb\\xff\\xe1\\x6d\\xda\\x53\\xbf\\x71\\x51\\xaa\\x3b\\x7f\\x7e\\x9d\\xe5\\xfd\\xaa\\x63\\x76\\x44\\x8d\\x54\\x71\\xaf\\x23\\xd0\\x56\\x59\\x4c\\x5a\\x76\\xdc\\xfb\\xb7\\x49\\xe7\\x73\\xd2\\x05\\xe2\\xad\\xef\\x95\\x12\\x2e\\x11\\xd9\\x00\\x1f\\xd2\\x26\\xda\\x77\\x6d\\xab\\xd9\\x00\\xd5\\xca\\xaf\\x3e\\x74\\x70\\xfd\\xa9\\x36\\x8d\\x7a\\xec\\x09\\x8a\\x7b\\xfc\\x1e\\x0f\\x08\\x3e\\x29\\xc8\\x32\\xe1\\xd5\\x20\\x11\\x3f\\x84\\xdd\\x8e\\x75\\x5a\\xa2\\xe9\\xe3\\xfb\\x39\\xb8\\x45\\x8f\\x3e\\x4c\\x63\\x5e\\xf2\\x15\\xb7\\xed\\x67\\xbf\\xe1\\x67\\xff\\xed\\x89\\x6f\\xc1\\xd6\\x79\\xed\\xba\\x12\\xfb\\xce\\x9e\\x74\\x1b\\x7b\\x01\\x75\\x56\\x83\\x63\\x9f\\xea\\x36\\x7b\\xcb\\xa2\\x47\\xf9\\x67\\x37\\x6a\\xef\\xd3\\x63\\xae\\x4f\\xf8\\x94\\xbe\\x68\\x07\\xbd\\xad\\x90\\x11\\xd2\\xf6\\xfe\\x8f\\x4f\\xc8\\x7d\\xd7\\xf8\\xe2\\x9c\\x43\\xc2\\xfd\\xfd\\xd3\\xfa\\x2d\\xbe\\xe4\\xf6\\x44\\x17\\xef\\x50\\xf3\\xe5\\xc5\\x1b\\x01\\x2c\\x6a\\x18\\xbb\\x21\\xb9\\x1a\\x63\\x8d\\xa9\\x74\\xc4\\x62\\x82\\x8d\\xde\\xe5\\x7c\\x9e\\x0a\\xe4\\x85\\xbd\\x03\\x04\\x25\\x77\\x37\\xe6\\x26\\x85\\xbf\\x86\\xda\\xb2\\xcb\\xcc\\xf3\\x76\\x40\\xf9\\xfb\\x8c\\xd9\\x9d\\x03\\x61\\xee\\x87\\xd3\\x1d\\xb9\\xc1\\x4c\\xd6\\x8d\\x43\\x29\\x79\\xad\\x35\\x5b\\x43\\xdd\\xfa\\x21\\x39\\x9b\\xfe\\xa2\\x2f\\x96\\xeb\\xb9\\x12\\x26\\x3a\\x86\\xb6\\xf7\\x32\\x19\\x6c\\x21\\xb7\\x59\\xf3\\xc9\\x57\\x25\\x19\\x7c\\x41\\x0b\\x61\\x0d\\x15\\x79\\x59\\xa7\\xa9\\x89\\xe5\\xfd\\x86\\x48\\xd6\\xe2\\xed\\xab\\xf1\\x9c\\xba\\xa3\\xe4\\xf6\\x2d\\xe7\\x9a\\xca\\xb2\\x9f\\xea\\xcd\\x9f\\xf7\\xdd\\xfb\\xa1\\x54\\xa8\\x39\\xde\\x3e\\x8a\\xd7\\x7b\\x58\\x8b\\xe4\\xe7\\x23\\x9c\\xc8\\xde\\x33\\x59\\x3b\\x82\\xa7\\xb6\\x59\\x25\\xdd\\x72\\x3b\\xa1\\xf8\\xd7\\x88\\x2f\\xb1\\xa4\\x35\\x7a\\xb3\\x72\\x47\\x3a\\x5c\\x71\\xe3\\x1f\\x9c\\x23\\x15\\x78\\xbd\\x4f\\xe8\\x46\\x53\\x6d\\xa8\\xb7\\x3a\\xb7\\x2d\\x53\\x32\\xbe\\x16\\x2a\\x6e\\x29\\x50\\x3e\\x18\\x3b\\x35\\xf6\\x67\\x4c\\xa0\\x16\\xbd\\x21\\xb5\\x3c\\x50\\x68\\xf3\\x63\\x97\\xd3\\x56\\x0b\\x8f\\xf6\\x2a\\x85\\x68\\xa6\\xef\\xcf\\xd5\\xf7\\xf1\\x0b\\x8b\\x33\\xf7\\x9f\\xf5\\x2f\\x3d\\x10\\x9c\\xbe\\xe1\\x65\\xca\\xcb\\x0a\\xa0\\x44\\x59\\xfe\\x07\\xeb\\x74\\x0f\\x62\\x3f\\x37\\x5d\\x68\\xe2\\x99\\xc5\\x92\\xfb\\x96\\x11\\x96\\x30\\x6e\\xaf\\xc7\\x12\\xcb\\x1e\\x61\\x42\\x12\\xcc\\xd0\\x6b\\x28\\x67\\x59\\xbf\\xdb\\xef\\x73\\x89\\xb1\\xed\\x8c\\x8a\\x73\\x62\\x26\\x48\\xa7\\xe9\\x81\\x69\\x8b\\x44\\xf3\\x03\\x7a\\x60\\xaf\\xaa\\xa6\\x34\\xd9\\x03\\xc7\\x1f\\x5e\\x34\\x6e\\x3e\\x0f\\xda\\xf0\\xdb\\xbc\\x5e\\x42\\x36\\x5f\\x47\\xde\\xe3\\x2b\\x13\\xac\\xf7\\xc4\\x53\\xda\\x72\\xd7\\x79\\xd7\\xc6\\xfe\\x6c\\x3f\\xc1\\x3b\\x9d\\xaf\\x02\\x0e\\x31\\xae\\x21\\x0e\\xa2\\xd0\\xfd\\x7b\\x1d\\xfe\\x19\\xa3\\xde\\x97\\x60\\x8c\\x91\\x0e\\x11\\x1a\\x7e\\x19\\x45\\x32\\x66\\x9c\\xde\\xcf\\x07\\x8b\\x30\\x0b\\x38\\x5e\\xc4\\x4c\\xe3\\x4d\\x78\\xef\\x74\\x7e\\x5f\\x9b\\xfa\\xb7\\x56\\xb2\\x73\\xea\\x18\\xb5\\x87\\x25\\x8f\\x92\\xcd\\xf9\\xd5\\xf3\\x37\\x20\\x42\\xea\\x9d\\x5d\\xdc\\x7a\\x62\\x96\\xcf\\x48\\x16\\x31\\xb7\\x5e\\xef\\xf6\\xfd\\xb4\\x61\\x8b\\x0c\\xe8\\x12\\x77\\x78\\xf4\\x1a\\x4f\\x31\\x67\\x05\\xeb\\x55\\x3c\\x9c\\xf6\\xd0\\x08\\x9d\\x0d\\x9b\\x85\\xa6\\xeb\\x4d\\xf8\\x63\\x46\\x72\\x06\\x55\\x5a\\x96\\x27\\x32\\xce\\x22\\x06\\x4e\\x7f\\x08\\x6e\\xc2\\x6c\\xa6\\x45\\x80\\xba\\xa7\\x4a\\xf9\\xc3\\xd1\\xbc\\xa6\\x66\\xc0\\x55\\x6d\\x08\\x29\\xf6\\x89\\x9f\\x21\\x70\\x18\\x30\\x0c\\xf5\\x4a\\xef\\x43\\xb5\\x54\\x46\\xa7\\x98\\x6a\\xdd\\x57\\xd7\\x4f\\x8f\\x9d\\xa6\\x0e\\x3a\\xa8\\xa7\\xad\\x57\\x95\\x83\\x07\\x29\\x59\\xb8\\xdf\\x73\\xd4\\xd2\\x7c\\xb1\\x1c\\x4c\\x32\\x7a\\xb6\\x78\\x53\\xa7\\x5c\\xa4\\x8f\\x28\\x99\\x05\\x9f\\x73\\xbc\\x96\\x41\\x36\\xc4\\x32\\x8f\\xa3\\x37\\x64\\x5d\\xd9\\x4b\\xcc\\x09\\x30\\x86\\xbf\\x0c\\xe9\\x86\\xa7\\x25\\x87\\x69\\x90\\x31\\x3b\\xd9\\x16\\x3a\\xca\\xce\\x6c\\x34\\xd4\\x70\\xe8\\xf9\\x22\\xcd\\x7d\\xd4\\x4c\\x1d\\xf5\\x3f\\x92\\xec\\xbd\\x41\\xe3\\x22\\x0a\\xf5\\xdb\\x9f\\x49\\xcd\\xa8\\xa7\\xfd\\x64\\x7e\\x12\\xe9\\xe9\\xc1\\xb1\\xe9\\xfc\\xdd\\x53\\x63\\xf7\\xc9\\xc4\\x73\\xfd\\xc5\\x75\\x3d\\x93\\x7d\\x51\\x8d\\x72\\x91\\xe9\\xaf\\x9b\\xca\\xb2\\x46\\x31\\xaf\\x80\\xb9\\xad\\xc6\\xf6\\xd8\\x73\\x22\\xeb\\x58\\xd4\\xa5\\xb6\\xc1\\xf6\\x21\\xb6\\x10\\xef\\xb0\\x00\\xe6\\x02\\xfa\\x7b\\x98\\x92\\x4a\\x16\\xec\\x94\\x86\\xba\\x2d\\xb3\\xbd\\x86\\xd4\\x19\\x76\\x2d\\xac\\xd7\\x44\\x61\\xa9\\x53\\xe3\\xd5\\xcb\\xfa\\x81\\x61\\x9d\\x3f\\xa5\\x4c\\xee\\x88\\x92\\xc3\\xaf\\x65\\x4c\\x62\\x10\\x9f\\x66\\x97\\xdd\\x60\\x0d\\xbb\\x92\\x08\\x1d\\xa9\\x60\\x1f\\x5c\\x9d\\x21\\x95\\x8c\\xde\\x91\\x1e\\x30\\xb8\\xbb\\x55\\x9e\\xb4\\x72\\xbb\\x32\\x72\\x94\\x3c\\xab\\x9a\\xb6\\xf7\\x57\\xd3\\x84\\xf4\\xc5\\xf3\\x9a\\x5b\\xc3\\x8f\\xbe\\x35\\x91\\xbc\\xfb\\x73\\xdc\\xa1\\xc2\\xee\\x66\\x20\\x52\\xa1\\xc5\\x4e\\xfb\\x24\\xc7\\x8a\\xe9\\x0c\\xd1\\xf2\\x6f\\xa3\\xc7\\x5e\\x3b\\x73\\x08\\xd0\\xf4\\x80\\x5d\\xe6\\x3a\\xb8\\xe3\\x68\\x2a\\xb2\\x5f\\xbe\\xa7\\xfa\\x08\\x60\\xc3\\x79\\x45\\xb3\\x1d\\xdd\\x99\\x3f\\xc3\\xb4\\x2d\\xaf\\x2a\\x84\\xf7\\x73\\xfb\\x04\\x09\\x4e\\x14\\x8c\\x0a\\x46\\xf5\\xe3\\x4a\\x42\\x53\\x6b\\x0e\\xdd\\xfe\\xe3\\x45\\x44\\x0f\\x9b\\x3c\\x65\\x8d\\x11\\x0c\\x28\\x80\\xbb\\xfb\\xd0\\x3a\\x70\\x13\\x9f\\x74\\xcd\\x1a\\x90\\x87\\x15\\x88\\x95\\x8e\\x79\\xea\\xeb\\x97\\xf1\\xe8\\x7f\\x5f\\x78\\x0f\\x3f\\x2a\\x69\\xaa\\x4c\\xf5\\xd0\\xcd\\x19\\x2a\\xff\\x85\\xdf\\x63\\x35\\x10\\x30\\x1d\\x01\\x88\\xe5\\x0a\\x74\\xf3\\xa2\\xff\\x5b\\x25\\x49\\xd3\\xf1\\x24\\x46\\x68\\x02\\xaa\\x8b\\x17\\x70\\x80\\x8c\\x19\\xe8\\x25\\x63\\x39\\x0f\\x0f\\xb6\\x96\\x89\\x3a\\x05\\x8b\\xa4\\x6e\\xa6\\x31\\x4d\\xc3\\xdc\\x6a\\xd3\\x33\\x23\\xe6\\xa2\\x10\\xc6\\xb7\\x53\\x96\\x3b\\xeb\\xe7\\xc7\\xe9\\xa1\\x78\\xf7\\x2f\\x8f\\xdc\\x52\\xde\\xc3\\x13\\xab\\xe5\\xd4\\x4a\\xe9\\x33\\x86\\xdc\\xbf\\x6b\\x39\\xf4\\xea\\xb6\\x87\\xce\\xcd\\xaf\\x97\\x33\\x53\\x0f\\xa8\\x73\\x23\\x5c\\x49\\x75\\x56\\x39\\x27\\x82\\x79\\xe2\\x61\\xb4\\x48\\xa8\\x7c\\x72\\x18\\x7c\\x8f\\x15\\x66\\x3b\\x19\\x51\\x87\\x9e\\xea\\x6e\\xb2\\x69\\xfb\\x99\\x02\\x6e\\x72\\x0c\\x9f\\xbf\\x3f\\x0b\\xa8\\xbc\\x0b\\x42\\xf7\\x93\\xf4\\x6e\\x77\\xec\\xaf\\x74\\x4c\\x71\\x3c\\x7a\\xac\\x06\\xbe\\x46\\x4e\\x34\\x05\\xc2\\xa4\\x79\\x9c\\xeb\\xe2\\xfb\\x52\\x1d\\xb1\\x62\\x33\\xb2\\xec\\xfa\\xe5\\x7d\\xde\\x60\\xed\\xad\\x16\\xfa\\x6e\\xbc\\x7c\\xd0\\x81\\xf1\\x47\\x07\\x08\\x27\\x9a\\x85\\xd5\\x29\\x46\\xdf\\x6c\\x48\\xe9\\x7b\\x24\\xef\\x15\\x39\\x56\\x5c\\x2c\\xb5\\x0d\\x62\\x33\\x9e\\xe6\\xb2\\x07\\x3d\\xb7\\x94\\xdf\\x0a\\x5d\\xc9\\x3e\\x5d\\xc3\\x8d\\xb2\\x3f\\x78\\x98\\x24\\x50\\x1a\\xf5\\xd6\\xbf\\xe0\\x6f\\xb7\\xfd\\x6f\\x33\\xbd\\x36\\x51\\x8e\\xe6\\x3e\\xd4\\x10\\x3c\\x5b\\xbc\\xe3\\x70\\x0c\\x57\\x44\\xd5\\xde\\xb9\\xd2\\x63\\xff\\xbe\\xbb\\x5e\\xf3\\x33\\xa2\\x1b\\x47\\x4a\\x00\\xe3\\xac\\xf7\\x2c\\xd0\\x2e\\xd9\\x48\\xdc\\xef\\x92\\xf9\\x57\\x24\\xf9\\x91\\x99\\xde\\xc3\\xf9\\x7d\\x79\\xe1\\x7e\\x62\\xb6\\x1f\\x4f\\xb2\\x1e\\x0a\\xd8\\xfe\\xcc\\x84\\x6b\\xbf\\xee\\x1a\\x0c\\x0c\\x0e\\x32\\x11\\x7f\\xfa\\xad\\x11\\xe2\\x58\\x93\\xf4\\xbb\\x1c\\x76\\x42\\x9e\\x59\\xb8\\xd5\\xf3\\xdd\\x23\\xc2\\xc9\\x5b\\x37\\xaa\\x22\\xf1\\xcf\\xb2\\x74\\x44\\x35\\x4e\\x7c\\xf5\\x74\\x0f\\x11\\x35\\x98\\x7f\\x62\\x10\\xdd\\x81\\xc3\\xbe\\xb2\\x25\\x16\\x1c\\x1a\\xb7\\x4f\\xc6\\x15\\xda\\x12\\xc5\\xbd\\xe4\\xeb\\x94\\x72\\xc0\\x3d\\x3e\\x19\\x2f\\x46\\x18\\xbb\\xaa\\x57\\xe6\\xae\\xe0\\x41\\x48\\x19\\x33\\x0c\\xe4\\x56\\xdc\\x2a\\x41\\x9f\\x96\\x7f\\x33\\x69\\x7a\\x0f\\x3f\\x26\\xf8\\xf9\\x95\\xfd\\xd4\\x0e\\xee\\x48\\xba\\x23\\x38\\x82\\x22\\xba\\xeb\\x28\\x6a\\x78\\xe7\\xb4\\x1e\\xb3\\x65\\x11\\xfa\\x03\\xf6\\x04\\x66\\x6c\\xbb\\x6a\\x4e\\xd6\\x7e\\x86\\xd4\\x11\\xc6\\xe5\\xb0\\xa5\\x36\\xc9\\x34\\x9b\\x58\\x21\\x57\\x9a\\x19\\xd0\\x9b\\xa1\\x1c\\x09\\x2c\\xf3\\xef\\x58\\x20\\x74\\x48\\x7f\\xb5\\x83\\xdf\\x14\\xf5\\xc1\\x78\\xa1\\x69\\xc3\\xe9\\xe7\\x21\\x49\\x91\\x66\\x28\\xb7\\x8d\\xf5\\x4d\\x5e\\x30\\x77\\x13\\x7f\\xdc\\xe6\\xcc\\x05\\x67\\xdb\\x2b\\x53\\x8d\\x4f\\x25\\x9a\\x29\\x28\\x36\\xdf\\x68\\xed\\x46\\x9a\\x5f\\x4b\\x0e\\x66\\x94\\x63\\xf6\\x4d\\xe9\\xec\\x84\\xb5\\xbc\\x61\\xb9\\xd9\\x0f\\x6a\\x85\\xa0\\x04\\x74\\x29\\x62\\x9c\\x1f\\x89\\x81\\xa1\\x84\\xee\\x2b\\xaa\\x2d\\x01\\xc4\\xae\\x00\\xd8\\xc6\\x45\\x1a\\xbc\\xa2\\xdd\\x9e\\x4e\\xa1\\x3f\\x2b\\x1d\\x97\\x46\\x5e\\xb8\\x21\\x44\\x47\\x11\\x5f\\x2e\\x8e\\x6c\\x83\\xbe\\x4f\\x1d\\x3e\\x95\\x4c\\x3e\\xb0\\x22\\xfc\\xdd\\x71\\xec\\x7b\\x16\\x68\\xde\\x53\\x7f\\x0e\\xf0\\xca\\x0f\\x06\\xa7\\x41\\xf3\\x37\\x67\\x2c\\x07\\x3c\\x21\\xfc\\xf5\\xda\\xa3\\xd7\\x80\\xf1\\x24\\x1f\\xd8\\x52\\x2f\\x8a\\x13\\xc6\\xc8\\x11\\xd1\\x1f\\xe6\\x3f\\xcd\\x3a\\xdf\\x90\\x6c\\x9c\\xa5\\x31\\x86\\xe7\\x8a\\x1b\\x44\\xd8\\x6d\\x83\\x05\\x39\\x10\\xc7\\x9d\\x24\\x8f\\x9f\\x14\\x27\\x8a\\x6a\\xaf\\x52\\xd2\\x84\\x6c\\x0e\\x7f\\x45\\x0c\\x18\\x71\\x0c\\xbc\\xe3\\xb8\\x91\\x16\\x4b\\x06\\x9e\\x6d\\x49\\x42\\x52\\x2c\\x81\\x21\\x95\\xfc\\xd3\\xf4\\x00\\x05\\x6d\\xcc\\x89\\x55\\x99\\xbd\\x5b\\x50\\x8e\\x84\\xbd\\xfc\\xb6\\x24\\x83\\x8e\\x4a\\x92\\x50\\x8e\\x84\\xe7\\x9a\\xb5\\x75\\xbd\\x84\\xb0\\xcc\\x0a\\xab\\xb0\\xe8\\x8e\\x7f\\x78\\x62\\x3f\\xdb\\x0e\\x20\\xb2\\xf5\\xae\\xde\\xf9\\x79\\xa3\\xb0\\x94\\xec\\x2a\\xdd\\x02\\x0d\\xd4\\x29\\x26\\xde\\x42\\x91\\x10\\x1f\\xae\\x65\\x74\\x63\\x2f\\x3b\\xbb\\x05\\x2a\\x67\\x89\\x86\\x22\\x68\\xeb\\x3f\\xbd\\x4b\\x62\\xb0\\xa6\\x45\\xdf\\x85\\xd0\\x86\\x79\\xdf\\x9c\\x75\\x83\\x09\\x55\\xd4\\xbf\\x74\\x03\\x9e\\xaf\\x01\\x28\\xa5\\xbe\\xb6\\x2c\\xf5\\xee\\x1c\\xa1\\xb8\\xdf\\x1f\\xff\\xcd\\xea\\xc9\\x0d\\xd6\\x2a\\xe9\\xb4\\xdb\\xb2\\x93\\x14\\x3d\\x5f\\x6f\\x15\\x3c\\xaa\\x25\\xc1\\x92\\x15\\x81\\xe6\\x49\\x2f\\x6c\\x13\\xe3\\xcd\\xea\\x13\\x60\\xdf\\xc2\\x4a\\x76\\xd9\\x4c\\x2a\\x73\\x59\\xc9\\x72\\x90\\xe9\\x95\\x5e\\xad\\x73\\xeb\\xc3\\x29\\xb7\\x91\\xb5\\xf8\\xd5\\xa5\\xea\\xa3\\x4e\\x74\\x79\\x16\\x7a\\x16\\xc3\\x95\\xff\\xa2\\x57\\xd7\\x41\\xfe\\x46\\xda\\x4f\\xa7\\xb9\\xff\\x18\\xcb\\xa4\\xed\\xaf\\x1c\\x74\\x7e\\x37\\xf1\\x82\\x48\\x59\\x85\\x5c\\x70\\xed\\x9e\\x79\\xf2\\x51\\x3f\\xe7\\x92\\xe2\\x1b\\x6d\\x1b\\xf3\\x76\\x39\\x38\\x51\\x20\\x34\\x79\\xc4\\xf3\\x62\\x71\\xa0\\x57\\xe5\\xee\\x86\\x44\\x09\\x4f\\xcf\\xdb\\xca\\xa4\\x01\\xb6\\x84\\x99\\x25\\x7e\\xa2\\xe4\\x84\\xf1\\x63\\x6e\\xf2\\xff\\xf1\\xc5\\xaf\\xfd\\xe4\\x3f\\x46\\xe8\\x48\\xea\\x6f\\x8e\\xa8\\x73\\x86\\x0f\\xd1\\xc9\\x0f\\x92\\x2b\\x72\\x6a\\xac\\x56\\x9e\\xbe\\x98\\xc4\\xbc\\x7c\\xa2\\xdb\\x97\\xd9\\x89\\xfb\\x70\\x22\\x08\\xb4\\xcb\\xa7\\xbf\\x5a\\x5e\\x36\\xe2\\x3e\\x7e\\xfa\\x42\\xb0\\x24\\x49\\xd5\\x6c\\x39\\x49\\x9e\\xc1\\x96\\x24\\x3d\\x82\\x7f\\xdb\\x5e\\xd1\\xfd\\x8a\\x4e\\x6b\\x0a\\xe8\\x81\\x3c\\xb2\\x64\\x8b\\xf7\\x05\\x9e\\x5b\\x3f\\x44\\x7e\\x77\\x49\\xec\\xae\\x00\\xb3\\xad\\x1d\\x39\\xc0\\xd1\\xb1\\xf0\\xd9\\x64\\xb8\\x53\\x1c\\xe1\\xcf\\x86\\x14\\x4e\\x9e\\xff\\xa3\\x1f\\xb7\\x0a\\xb8\\xe0\\xa4\\x93\\x20\\xc8\\x40\\xe5\\xac\\x71\\x6e\\x35\\x2b\\x5d\\xe9\\x8c\\xa3\\x48\\xe6\\x1e\\xbb\\x70\\x54\\xf6\\xc4\\xb2\\xef\\x84\\x20\\xc4\\x50\\xaa\\x5a\\xab\\x08\\x3b\\xc6\\x1a\\x85\\x7a\\xf5\\x29\\xbc\\xb7\\x07\\x41\\x59\\x68\\x86\\xa6\\xa5\\xca\\xc7\\x15\\x0f\\x82\\xe6\\xc7\\xfe\\xa9\\x5e\\x03\\x30\\x14\\xb8\\x8b\\xca\\x1e\\x44\\x79\\xa1\\x99\\xe6\\x8d\\x37\\x8d\\x2f\\x98\\x1f\\xd1\\x86\\x03\\x5f\\xb5\\x9a\\x3d\\x25\\xe1\\xb9\\x2b\\x39\\x86\\xbc\\x3e\\x88\\x47\\x21\\x4c\\x28\\x2e\\x2b\\x68\\x97\\x30\\xf5\\x97\\x01\\x6f\\x44\\x41\\xde\\xd9\\x26\\xbf\\x1f\\x27\\x5c\\x48\\x60\\xca\\x62\\xa2\\x53\\x96\\xc8\\x50\\xf1\\x3d\\x2f\\xb4\\xe2\\xbf\\x54\\x4d\\xf4\\x2e\\xff\\xa3\\x08\\x3d\\x15\\x07\\xb0\\x55\\x66\\xa4\\x42\\x47\\xa4\\xa6\\xb1\\x19\\x24\\xa0\\x86\\x34\\x37\\xcd\\x55\\x67\\x4b\\x1f\\x34\\x05\\xee\\x1b\\xa9\\x09\\x81\\xb3\\x2e\\x40\\x71\\x1f\\xee\\x73\\xd3\\xa8\\x3a\\x13\\x67\\x98\\x8e\\xf2\\x9c\\x40\\x48\\xa8\\x07\\x2b\\x1b\\xfb\\xee\\x76\\x0c\\x18\\x2d\\x96\\x5b\\x1c\\x48\\x8a\\x12\\x5f\\xe2\\xb9\\xbb\\xe8\\x1c\\x0b\\xb1\\xd5\\x14\\xf1\\x13\\xb4\\x28\\x54\\x9b\\x1c\\x5b\\xa1\\x4f\\x46\\xe6\\x85\\xd2\\x0d\\x11\\xaf\\x3e\\x77\\x0d\\xe2\\xf6\\xb7\\xeb\\xf5\\xd7\\x79\\x39\\x4b\\xf8\\xa7\\xb1\\x53\\x48\\x5b\\xae\\x97\\xd1\\xf9\\xfd\\xa4\\x93\\x97\\x90\\xfb\\x0f\\x30\\xf2\\x3a\\xfc\\x28\\xbf\\x84\\x8e\\x98\\x5b\\x17\\x48\\x46\\x04\\x77\\xae\\x27\\x64\\x57\\xa9\\x35\\x15\\xed\\x88\\xcd\\xc1\\x40\\xc0\\x51\\xdf\\x7c\\x1a\\x85\\xa7\\x86\\x24\\xe0\\x95\\x36\\x2c\\x60\\xf7\\x9e\\x63\\x3f\\x50\\x7c\\x14\\x9b\\x93\\x93\\xa4\\xcc\\xc6\\xe8\\xbb\\x56\\xeb\\xf6\\x31\\x68\\x04\\x3d\\x1e\\x39\\x2c\\xff\\x36\\x6c\\x45\\x67\\xc4\\xe8\\x01\\x26\\x49\\x44\\x04\\x3f\\x36\\xe9\\xf8\\x7e\\xdc\\x76\\x48\\xd6\\xa4\\xf1\\x34\\x9a\\x73\\xfb\\x5a\\x8b\\x1b\\xc8\\x3f\\x94\\xcf\\x22\\x1d\\x9b\\x2a\\x88\\x09\\x8e\\x74\\x9c\\xa7\\xbf\\x3b\\x4f\\x35\\x42\\xfe\\xab\\x9f\\xcb\\x43\\xae\\x4f\\x5d\\x44\\x80\\xcc\\x36\\x15\\xcb\\xed\\x24\\xa8\\xa4\\x2e\\x80\\xcd\\x0a\\x7c\\x55\\x5e\\x1b\\x60\\x2f\\x7e\\xc5\\xf3\\xe7\\x5d\\x36\\x8f\\x0a\\xe6\\xad\\xd3\\xbb\\xe1\\x4d\\xdb\\x75\\xa8\\x19\\xb4\\x5c\\x88\\x15\\xf5\\x3e\\x63\\xf2\\x3d\\x16\\x92\\x5a\\xcf\\x07\\xf3\\xed\\xf8\\xaa\\xf8\\x28\\x34\\xe2\\x9f\\x02\\x11\\xde\\xa7\\xaa\\x93\\x3f\\xb2\\x9f\\xbd\\xe9\\x76\\x50\\xf7\\xae\\x1d\\x36\\x57\\xb4\\xde\\x3f\\xf9\\x76\\x24\\xc9\\xa6\\x9f\\x1c\\xb2\\x69\\x7d\\xbe\\x4a\\xb4\\xcd\\xf6\\xae\\x5d\\x47\\x1f\\xea\\x66\\xd8\\x20\\x6e\\x3a\\x14\\xa7\\xff\\x3c\\x7f\\x18\\xde\\x7a\\x32\\xf5\\x92\\xf4\\x6d\\x0f\\x40\\xb9\\x79\\x77\\x13\\x4c\\xff\\x43\\xd9\\x79\\x80\\xfe\\xc7\\xdf\\x21\\x77\\xa5\\x16\\xbe\\x0d\\x86\\xf8\\x0a\\x7b\\xdf\\x4c\\xf1\\x64\\x6f\\x09\\xdf\\x0e\\x85\\xfc\\x94\\x7c\\x17\\x50\\x5c\\x83\\x96\\xe8\\x94\\xf0\\xfb\\x82\\xdb\\x27\\x82\\x7b\\x56\\xbe\\x7d\\xb3\\xeb\\xbd\\x1e\\xdc\\x66\\x03\\x7c\\xf9\\x2f\\x8a\\x5d\\xa8\\x74\\x93\\x8e\\xe5\\xff\\x49\\x81\\xe6\\xdb\\x14\\x24\\x79\\x3b\\x02\\xd7\\x09\\x80\\xd4\\x15\\x5f\\x89\\xa6\\x36\\x82\\x71\\xc8\\x86\\xcc\\x6a\\x44\\x27\\x7e\\x3e\\x79\\x1b\\xab\\xdb\\x2a\\x04\\x3d\\xa2\\x53\\x74\\x33\\xcd\\x4a\\xd6\\xa9\\x9f\\x9a\\x4d\\x59\\xfb\\x92\\x01\\x43\\x1d\\x4e\\x99\\x06\\x98\\xf7\\xb2\\xf9\\x6a\\x6f\\xa8\\x7d\\xb2\\x38\\x69\\x19\\x19\\x19\\x19\\x18\\x17\\xed\\xcf\\x88\\x67\\xb9\\x8a\\x24\\xd3\\xd2\\x93\\x06\\x95\\x0c\\x47\\x6e\\x2d\\x7b\\xbd\\x33\\xc1\\x49\\xd2\\xbd\\xd0\\x15\\x8f\\x19\\x0f\\xe8\\xb1\\xea\\x8f\\x37\\x11\\xf9\\xf9\\x58\\xa8\\x4c\\x60\\xdf\\x7a\\x43\\xe8\\xd8\\xc3\\x8f\\xac\\xed\\x90\\xa8\\xd1\\x98\\x98\\x29\\x62\\x36\\x50\\x22\\x27\\x85\\xeb\\x27\\x47\\xa2\\x42\\x97\\xe5\\xa7\\x9d\\x82\\xe6\\x7a\\xbe\\x84\\x6a\\xe7\\x83\\x8c\\xf5\\xeb\\x0e\\xa8\\x30\\x2b\\x4a\\xfd\\xa5\\x79\\xd7\\x33\\x0a\\xfe\\xed\\xf3\\xa8\\x67\\x89\\xed\\x91\\xd2\\x23\\x42\\x8d\\x93\\xef\\x2c\\x3d\\x90\\xa9\\xd7\\x1f\\xb8\\x7c\\xd9\\x75\\x3d\\xb7\\xfc\\x2f\\x83\\xfb\\xb6\\x78\\x99\\xb1\\x69\\x8c\\xd3\\xf6\\x48\\xe0\\xe9\\xaa\\xab\\xc6\\x5a\\xc4\\xc2\\xc1\\xe1\\x34\\x80\\xb5\\xeb\\x62\\x77\\x2e\\x39\\x33\\xe5\\x99\\xb8\\xdd\\xae\\x51\\x77\\xe9\\xb1\\xc6\\xf7\\x25\\xa7\\x19\\xc6\\x34\\x69\\x12\\x9f\\xd5\\xdc\\xd2\\x60\\xed\\x0b\\xfc\\x6a\\xff\\x06\\xdb\\x96\\x33\\xd6\\x4f\\x24\\x54\\x45\\xfd\\x02\\xc2\\xfc\\x7d\\xba\\x28\\xbb\\x1c\\x6c\\xba\\x53\\x8c\\x25\\xb0\\xe7\\x3e\\x09\\x72\\x89\\x75\\xdb\\x41\\x55\\xd0\\xf2\\x05\\xbd\\xee\\x7e\\xbe\\x0d\\x12\\xb8\\x1d\\x13\\xce\\xe2\\xbf\\x9b\\x59\\x20\\xdb\\xac\\xe1\\x6d\\x6b\\x4c\\x05\\xc3\\x4b\\x75\\x94\\xee\\xd3\\xec\\xc5\\x7c\\xc9\\xfc\\x8b\\x17\\xbf\\x6c\\xb7\\xad\\xf2\\x56\\x10\\x3c\\x5d\\x3d\\xa9\\x79\\x4b\\xe9\\x31\\x8c\\x3e\\xa8\\x69\\xbc\\x35\\xeb\\x5e\\x9d\\x24\\xbc\\xfa\\x08\\x78\\x73\\xcc\\x73\\x65\\x27\\xd0\\x4d\\xc0\\x1c\\x4d\\x5f\\x76\\x37\\xe9\\x35\\x72\\x98\\x3c\\xef\\x74\\xda\\x0f\\xf6\\xf1\\x15\\x81\\x73\\xfd\\x8b\\x36\\x46\\x96\\x71\\x52\\x0a\\xf7\\x2e\\x63\\xfc\\xd3\\xa9\\x33\\x29\\x95\\xc5\\x02\\xa2\\xa5\\x81\\x22\\x78\\x7d\\xb5\\x24\\xc7\\x85\\x98\\xf9\\x7c\\xc7\\x43\\x55\\x6f\\xcb\\x65\\x5e\\xce\\x66\\x69\\xfe\\xc4\\x07\\xdb\\x09\\x2d\\xe3\\x64\\x3a\\x23\\x4a\\x82\\x8f\\x8a\\x60\\x55\\xae\\x70\\xf2\\x00\\xd3\\xb9\\x1a\\x2f\\x2b\\x13\\x5f\\xaf\\x37\\x2b\\xf4\\xa4\\x33\\xab\\xae\\x15\\xc1\\x34\\xe3\\x16\\xeb\\x46\\x92\\x93\\xf6\\xef\\x19\\x3a\\xde\\x5e\\x52\\xa5\\x9a\\x22\\xe4\\xb6\\xf1\\x78\\xc7\\xc2\\xda\\xdb\\x18\\x1d\\xff\\x63\\x41\\x6c\\x31\\x98\\x5e\\xd7\\xe2\\xe5\\x99\\x6f\\x49\\xec\\x3d\\x1d\\x6b\\xc9\\xe8\\x75\\xdf\\xc6\\x6a\\xa9\\xf1\\x45\\x48\\x20\\x3b\\xb6\\x05\\xe1\\x83\\x8b\\x9b\\x53\\xce\\x2a\\x66\\x96\\xa6\\x76\\x7b\\x92\\xf5\\xd0\\xa7\\x45\\xca\\x93\\xab\\x6a\\xed\\x33\\x5a\\x62\\xae\\x9b\\x8b\\xfd\\x71\\xfb\\xc0\\x4b\\xbf\\x09\\x6e\\x9e\\xaf\\x36\\x67\\x82\\x35\\xeb\\xc3\\x18\\x8e\\x45\\x29\\x28\\xcc\\xef\\x03\\xda\\x15\\x40\\xfd\\x66\\x83\\x5e\\xac\\x96\\xbb\\x0d\\xe3\\x94\\x2c\\x3c\\xd0\\x4a\\xa7\\x38\\xb2\\x8e\\xf8\\x76\\x83\\x69\\xc0\\x88\\x99\\x06\\xdf\\xcb\\x06\\xc7\\xa2\\x06\\x63\\x90\\x82\\x38\\x21\\xb5\\xf3\\x02\\xcd\\xe2\\x2c\\x92\\x26\\xeb\\x8f\\x17\\xf4\\x28\\x1c\\x7e\\x0b\\x6d\\xf0\\x57\\x3a\\x07\\x2a\\xfb\\x7c\\xc0\\x4d\\x7f\\x3b\\xe4\\x41\\x1f\\xea\\xf7\\xab\\xab\\xb3\\x17\\x43\\x7f\\x1b\\x6f\\x79\\x15\\x22\\xf2\\x95\\x25\\x74\\xbf\\x96\\xfd\\x6f\\xca\\x25\\xe5\\x1a\\x9a\\xc1\\x44\\xda\\x31\\x94\\xb1\\xa8\\x63\\x37\\x5d\\x1f\\xea\\x24\\x2d\\x21\\x07\\xef\\x65\\x68\\x55\\x28\\x92\\xa1\\xc4\\xc1\\xed\\xb6\\x25\\x1d\\x33\\x0b\\x9d\\xfc\\x4a\\x34\\xb9\\xa7\\x66\\x8b\\x9e\\x17\\x1c\\x73\\x86\\xcf\\xab\\x3f\\xae\\x90\\x6f\\x62\\xe4\\x5b\\x95\\x09\\xdd\\x3a\\xe2\\x9d\\xf2\\x1f\\xce\\x6b\\x41\\x61\\xab\\x03\\xa6\\x56\\xf5\\x6b\\x76\\x5b\\x4a\\x20\\x7c\\xb9\\x4b\\x0a\\xa2\\x9f\\x0c\\x20\\x3c\\x2e\\x48\\x43\\xef\\x37\\x0a\\x45\\xb5\\xea\\xc6\\x7f\\x07\\x16\\xfc\\x79\\x5a\\xdf\\x62\\x77\\xca\\x96\\x90\\x5d\\xdd\\xaa\\x34\\xbc\\x94\\x32\\x8f\\xeb\\xf7\\x87\\x7f\\x0f\\x7b\\xac\\xdc\\xd2\\xe1\\xa2\\x66\\xf1\\xe8\\xa3\\x5b\\xff\\x91\\x76\\xe1\\x5e\\x46\\x26\\x9a\\x3b\\x45\\xbe\\x97\\x44\\x94\\xbb\\xba\\x17\\xc3\\x2f\\x09\\xe2\\xb5\\x15\\x17\\x21\\x92\\x4b\\xa4\\x0d\\x32\\x2f\\x20\\x9d\\x73\\xad\\xd9\\xc3\\x51\\x8f\\xd5\\x92\\xac\\xdc\\xae\\xe2\\xec\\xb6\\x5c\\x5c\\x5d\\xea\\xf2\\xea\\x9c\\x14\\xf0\\xca\\x6f\\x32\\x08\\x76\\xe9\\xf8\\xe2\\x67\\x98\\xf3\\x15\\xee\\xe8\\x92\\xd3\\x3a\\xfb\\xd2\\x41\\x04\\xd7\\xd8\\xcf\\x45\\xbe\\x3d\\xfa\\x12\\xf9\\xbe\\x87\\xef\\x3d\\xb9\\x41\\xde\\x4a\\xf2\\xdc\\x5e\\xf3\\x66\\xe2\\x68\\x5c\\x7f\\xbd\\x95\\x3e\\x10\\x33\\x75\\xba\\x25\\x3f\\x90\\x4d\\xaf\\x79\\xfa\\x99\\x69\\x90\\xd0\\x63\\x23\\x9b\\xa0\\xe9\\x99\\x73\\x80\\x5d\\xd7\\x9e\\x5d\\xce\\xd1\\x05\\x17\\xcb\\xe1\\xb2\\x86\\x31\\xde\\xfc\\xa8\\x3d\\x59\\x77\\xa0\\x54\\xf5\\x60\\x9c\\x4b\\x98\\xb6\\x12\\x3d\\xa6\\xfb\\x3d\\x2d\\x55\\x77\\x80\\x9a\\x40\\xd5\\x2a\\x2e\\x37\\x84\\x15\\x6e\\x9f\\x2e\\x5c\\xba\\xd5\\xc6\\x2c\\x0c\\x5c\\xdb\\x2c\\x6f\\xd3\\x58\\xea\\xbb\\xd9\\x81\\xbd\\x1d\\x0e\\x49\\x2f\\xa5\\x8a\\xdc\\x00\\x0b\\xcd\\x9d\\xdb\\xd6\\xee\\xd3\\xe7\\x2d\\xcd\\x8c\\x3f\\x1d\\x03\\x6c\\x88\\x6b\\xa9\\x9f\\xc4\\x9d\\xa9\\x0f\\xaa\\xd6\\x5f\\x01\\x51\\xf7\\x01\\x9f\\xf6\\xf6\\x1f\\x88\\x73\\x6c\\x08\\xaf\\xc3\\x0e\\x3d\\x66\\xeb\\x39\\x24\\x25\\x07\\x3c\\x3d\\x07\\x45\\xf7\\xa3\\xe7\\x04\\x38\\xcb\\x5c\\xd7\\x3d\\x10\\x30\\xba\\x02\\xcd\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x20\\x01\\x22\\x96\\x29\\x22\\xf2\\x7a\\xa8\\xfc\\x0f\\x00\\x44\\xb8\\xff\\xac\\x02\\x40\\x37\\xe8\\x8c\\xff\\xf9\\xce\\x06\\x34\\x68\\xbd\\x8c\\x7d\\x2c\\xc2\\x4e\\xc3\\x05\\x01\\x20\\x00\\xf0\\x00\\xc8\\xff\\xba\\x01\\x6e\\x10\\x46\\xfa\\xc6\\xfa\\x3b\\x52\\xaf\\x9e\\xc9\\xfe\\xfe\\x8e\\x4b\\xd3\\x4a\\xbe\\x39\\x75\\x39\\xb0\\x11\\xb9\\x00\\x6c\\x18\\x40\\xe3\\x3b\\xac\\xa1\\x1b\\x44\\xf2\\x32\\x54\\x1c\\xa5\\x34\\xc1\\xd0\\xed\\x85\\xc6\\xba\\xe9\\x74\\xa5\\xcd\\x7a\\xb3\\xcd\\x75\\x8c\\xaa\\xd1\\xf4\\x13\\xd1\\x10\\xe7\\x54\\xf3\\x7f\\x4c\\xbd\\xcd\\x1e\\x26\\x60\\x6b\\xe9\\x48\\x18\\xb1\\x35\\x88\\x09\\x48\\x6f\\xd2\\xa5\\x91\\x9c\\xa9\\x33\\x7f\\x43\\x0b\\xbe\\x16\\xfa\\xcb\\xbf\\x39\\xd2\\x17\\x26\\x86\\x96\\x52\\x7f\\xcd\\x62\\x3d\\xc4\\xde\\x1c\\x59\\x97\\xfa\\x48\\xe6\\x34\\x3c\\x68\\xdd\\x13\\xce\\xae\\x1d\\x0c\\xbd\\x12\\x5c\\xc6\\x1d\\x3c\\x90\\x16\\xbb\\xbf\\x32\\xf9\\xc2\\x05\\x59\\xfc\\xfd\\xb0\\x54\\x94\\xea\\xb5\\x80\\x06\\xa3\\x16\\x83\\x65\\x44\\x84\\x98\\x93\\x1c\\xe1\\x89\\x4c\\xfd\\xf8\\x80\\x42\\xfe\\x4d\\xed\\xb4\\xf3\\x41\\xaa\\xdf\\xf4\\x5e\\x98\\xfe\\x35\\x97\\xcf\\x63\\x00\\x31\\xc6\\x9d\\x75\\xd4\\x36\\x99\\x89\\x2c\\xd5\\x05\\x1e\\x2f\\x86\\x70\\x91\\x88\\xbc\\x0e\\x4e\\x02\\x5f\\xb7\\x8f\\x6f\\x04\\x44\\xa1\\x5e\\xfe\\x01\\x1b\\x0f\\x3d\\x05\\xbe\\x27\\xa3\\x70\\xd6\\x11\\xc4\\x2e\\x4b\\x99\\xc4\\x0d\\x9d\\xcf\\x62\\xeb\\xde\\x55\\x82\\xc8\\x1e\\x31\\xe9\\x5e\\x1b\\x79\\x1a\\x75\\xda\\xf4\\x65\\xf0\\x1a\\x16\\xa4\\xe2\\x8a\\x9b\\x54\\x76\\xe4\\xbb\\x43\\xd9\\x08\\x91\\xeb\\xb6\\xb9\\x28\\xc9\\x16\\x43\\x11\\xf1\\x7d\\xbe\\x72\\xa7\\xd2\\x2d\\xfa\\xe0\\xf8\\x37\\xd4\\x66\\x3e\\xd5\\x8d\\xca\\x4c\\xa0\\xb3\\x3b\\xb8\\x8f\\x1b\\xcc\\x7a\\xf8\\xa5\\x18\\x8d\\x8e\\xeb\\x67\\x54\\x6d\\xef\\x3c\\xeb\\x66\\xc4\\x71\\x84\\x10\\x15\\x0c\\xcc\\x1e\\x1d\\x10\\xb5\\xcb\\x2e\\x51\\x7e\\x6b\\x36\\xa2\\xf9\\x6b\\x87\\x7f\\x5d\\xf0\\x1d\\xfe\\x59\\xee\\xa1\\x3b\\x82\\x10\\x54\\xcb\\x44\\x3c\\x3d\\x6f\\xea\\xe5\\x8b\\xcd\\xe9\\x75\\x56\\x83\\xc6\\x9a\\x56\\x38\\x2d\\xe4\\x43\\xa6\\x75\\x3b\\x71\\xe4\\xd8\\x09\\xc1\\xa3\\x3d\\x2d\\x00\\xa7\\xa5\\xa2\\x17\\xf4\\xcd\\x2a\\x0b\\x5c\\x07\\x21\\xc9\\x3e\\x0d\\x53\\x56\\x6c\\x5c\\xf9\\x97\\x68\\x79\\x0f\\xe6\\x5e\\xc5\\x93\\xe4\\xaf\\xd3\\xe6\\xef\\x07\\xcc\\xc8\\xc3\\x33\\xdb\\xa0\\x21\\xce\\x92\\x5d\\xa5\\x98\\x82\\xb6\\x26\\x4c\\x28\\xe5\\x61\\xe1\\x49\\x30\\xe5\\x9f\\x02\\x30\\x5d\\x1b\\x64\\x1f\\x2f\\x76\\xee\\xbe\\x89\\x3a\\x83\\x51\\x9d\\xf8\\xf2\\xfd\\x20\\x6f\\xb5\\xa7\\x9c\\xe3\\xae\\xb6\\x71\\x6f\\xa4\\x70\\x10\\x19\\x24\\xed\\x1a\\x8a\\x44\\x90\\xf5\\xb0\\x78\\x53\\x01\\x47\\xac\\xaa\\x21\\xc6\\x63\\x79\\x8d\\xbe\\x2c\\x60\\xdf\\x1e\\x48\\x1d\\x9b\\x8f\\x59\\xba\\xf9\\x22\\xb7\\xcc\\xb8\\xa0\\x1e\\xe8\\x74\\xe9\\xd0\\xf8\\xb7\\x3a\\x1e\\x3d\\xad\\xaa\\xbb\\x98\\x0c\\x91\\xcb\\xa2\\xb2\\x63\\xf6\\xef\\xf0\\x91\\x51\\x16\\xf0\\x89\\x2c\\x0a\\x84\\xb1\\x0c\\x8e\\xea\\x73\\xe6\\xb6\\x9c\\xd0\\x83\\x8a\\x7e\\x01\\xa3\\xde\\x99\\x75\\x9a\\x4f\\x5c\\xdb\\x0f\\xbd\\x3f\\xb6\\x1e\\xa9\\x62\\x23\\x2c\\xca\\x2b\\x15\\x93\\xe3\\xd9\\xcc\\x40\\xb1\\xd5\\x41\\x18\\xd5\\xa2\\x64\\x32\\xe3\\x10\\xbb\\xc5\\x07\\x24\\x72\\x0f\\xa8\\xeb\\xcd\\xb5\\x32\\x29\\xf7\\x58\\x8c\\xfc\\xf9\\x98\\x85\\x1b\\x20\\xa5\\x57\\xad\\x5a\\xaf\\x55\\x79\\x52\\x8f\\x90\\xb1\\x67\\x5a\\x3b\\xe9\\x94\\x48\\x0b\\xed\\x92\\x52\\xf4\\x8c\\x49\\xf3\\xc8\\x08\\x91\\xd6\\x9f\\xf2\\xe8\\xee\\x05\\xbb\\x61\\xa3\\xea\\x43\\x84\\x18\\x34\\x1f\\x39\\xf3\\x5f\\x6a\\xdf\\x11\\x5c\\x2c\\x6b\\x7e\\xf8\\x52\\xe6\\xd2\\x69\\x1a\\x94\\x6e\\x79\\x7e\\x27\\x67\\x26\\x4e\\xe6\\x0e\\xb4\\x3b\\x30\\xe4\\xf2\\xc8\\x87\\xc5\\x3e\\x7b\\xff\\x7b\\x2f\\x09\\x74\\xc0\\x10\\x94\\x68\\x07\\xae\\x1e\\xb6\\x42\\x86\\x6f\\x14\\x14\\x58\\x6e\\x97\\x9a\\x39\\xd0\\xbd\\xc1\\x14\\x30\\xad\\xdd\\x75\\xfa\\x3e\\x52\\xfd\\xda\\x57\\x89\\x71\\x5d\\x6a\\xef\\x41\\x31\\x29\\x5d\\x60\\xdb\\xcc\\xfb\\x24\\x59\\xee\\x36\\xcc\\x76\\xc5\\xc6\\xe2\\x2e\\xd4\\x74\\x8c\\x3b\\x68\\xf7\\xe1\\xee\\x4c\\x0b\\xa6\\xfd\\x31\\x67\\xbb\\xb8\\xfc\\x63\\x86\\x47\\xa2\\xf5\\x0f\\xb8\\x0a\\xbf\\x65\\xc7\\x65\\x2a\\xd3\\xcf\\xdb\\xa3\\x5a\\x6c\\x46\\xe1\\x32\\x0f\\xb7\\x74\\x3f\\x91\\x85\\xf0\\x69\\x57\\xd2\\x7a\\xe0\\x9a\\xdb\\x9f\\x27\\x83\\x2b\\x75\\x1f\\xab\\xca\\x57\\xcd\\x20\\xc5\\x92\\x24\\xc2\\x7c\\xd1\\x3e\\x3e\\x66\\x33\\x58\\x4a\\xc7\\x55\\xca\\xca\\xcd\\x77\\x2e\\x6e\\x93\\xc0\\x67\\xd7\\xeb\\x5b\\x1a\\x76\\xf5\\x76\\x1d\\x90\\x43\\x3d\\x9c\\x70\\xdc\\x1b\\xfb\\x43\\x3e\\x82\\x74\\x69\\x4f\\xc2\\x0d\\x59\\x9e\\x0c\\x74\\x17\\x26\\xd1\\x13\\x4e\\x3e\\xd2\\x12\\x95\\x08\\x3c\\x5b\\x9f\\x4a\\xe6\\x56\\x11\\x1b\\x62\\x5f\\xb3\\x12\\x65\\xdf\\x6a\\x3f\\xf8\\x15\\xb4\\x14\\xa7\\x58\\xfe\\x21\\xc8\\xbf\\x47\\xa3\\xa7\\x08\\xb3\\xef\\x4d\\x49\\xaa\\xb4\\xef\\x0e\\xca\\x8e\\x7e\\xfc\\xc9\\x44\\xb1\\xc8\\x55\\xe9\\x84\\x72\\x22\\x40\\xd8\\x88\\x29\\xdd\\x7d\\x0d\\x6f\\x82\\xa8\\xb7\\x47\\x66\\xfd\\x8b\\xd2\\x52\\x7e\\x92\\xe8\\xb0\\xfd\\x6b\\x4d\\x28\\xfe\\x55\\xb0\\x4c\\xd2\\x45\\x4d\\x48\\x37\\x4a\\xe9\\xdf\\x90\\x05\\x1f\\x0b\\x02\\x45\\x52\\xd4\\x40\\xdb\\x86\\x24\\x87\\x53\\x75\\x1f\\xaf\\xb2\\x26\\x71\\x8b\\x39\\x11\\x9a\\x48\\xba\\x49\\xc4\\x66\\x8b\\x49\\xf2\\x6b\\xcb\\x65\\xad\\xb9\\x00\\xc6\\xca\\x79\\x62\\x91\\xe8\\x05\\xaf\\xa3\\x76\\x02\\xfd\\x79\\xe1\\x04\\x2a\\x53\\xb1\\x54\\xbc\\xcc\\xf4\\xaf\\x82\\x6c\\xa9\\x83\\x3d\\xff\\x90\\x6b\\x9e\\xb2\\x03\\x84\\x3b\\x6a\\xef\\xe5\\x7b\\xf1\\x80\\xab\\xb6\\xd5\\x07\\xe4\\x6c\\x7d\\x5f\\xbe\\x8e\\x2d\\x1b\\xdb\\x8d\\x92\\x47\\x74\\x4a\\x0a\\x91\\x8f\\x41\\x4b\\x6d\\x58\\x7b\\x2a\\x6c\\x83\\x86\\xf3\\x15\\x91\\x43\\xb8\\x4d\\x36\\xb9\\xe1\\xeb\\x44\\xfd\\xef\\xa5\\x3d\\x00\\x35\\x6f\\x0b\\x5e\\xa1\\x95\\x72\\x3a\\xd1\\xa6\\x2a\\x65\\xef\\x06\\x15\\x3d\\x6e\\x51\\xb4\\xdd\\xd7\\x5f\\x02\\xc1\\xf6\\x2b\\x95\\x46\\x78\\x61\\x20\\x3a\\xb7\\x6f\\xd7\\xa4\\x12\\xc7\\xe6\\x8c\\x74\\x55\\x6d\\x55\\x3d\\xae\\xed\\x1c\\x74\\x8f\\x1b\\x93\\x8f\\x6f\\x8d\\x39\\x6a\\x3a\\x32\\x79\\x4d\\xa3\\x1a\\x47\\xe5\\x1a\\x4d\\x69\\x2f\\x73\\x18\\x03\\xb5\\x90\\x06\\xd5\\x0f\\x63\\x91\\x22\\xad\\x0a\\xdb\\x21\\xfe\\xb9\\x36\\x35\\x9e\\xaf\\x5f\\x05\\xce\\x32\\x1f\\x49\\x90\\xed\\xf2\\xde\\x14\\xb8\\xe8\\xd5\\x0b\\x6b\\x79\\xb6\\x2c\\x54\\xaf\\x67\\x59\\x80\\xa8\\x06\\x4c\\x93\\xb0\\x21\\x8c\\x0b\\x09\\xdb\\xe5\\x06\\xc2\\x30\\xe1\\xaf\\xf3\\x46\\x30\\x7f\\x75\\xfd\\xd3\\xb2\\x90\\x95\\x56\\x4f\\x36\\x97\\x9d\\x37\\xf2\\xf1\\xea\\x79\\x63\\x8e\\xf3\\x62\\x1b\\x0e\\xea\\x8b\\x50\\x75\\x8f\\x8e\\xa5\\x82\\x67\\xb4\\x6c\\xdf\\xe9\\x9a\\x12\\x78\\x62\\x8a\\x09\\x17\\xea\\xde\\x97\\x72\\xf0\\x61\\x72\\x49\\xec\\x69\\x81\\x6f\\xb6\\xe3\\xaf\\xe8\\x76\\x4d\\x06\\xc1\\x6b\\xf7\\xa2\\xcf\\x9c\\xbb\\x88\\xe0\\x2d\\xd5\\xf9\\x80\\x9a\\x5b\\xa4\\x51\\x1f\\x75\\xbf\\x38\\xd9\\x54\\x50\\x86\\x3f\\xf5\\x8c\\xdb\\x24\\xe9\\xfc\\xba\\x35\\xe7\\xe8\\x50\\x9a\\x34\\x33\\xb0\\xe3\\x0b\\xe2\\x30\\x8a\\x52\\xf1\\xbf\\x5a\\x29\\xde\\xc7\\x96\\xab\\x0d\\x0f\\x00\\xf4\\x36\\xd9\\xac\\x7b\\x3c\\x6b\\xae\\x3f\\xea\\x58\\xaf\\x37\\xdb\\xac\\x9b\\x12\\xac\\x37\\xcf\\x82\\x9a\\x95\\x4c\\x61\\x6e\\x63\\x61\\x58\\x70\\xa4\\xc5\\xfe\\xfd\\x4a\\x56\\xdc\\x54\\x1c\\x57\\x3c\\x56\\xec\\x99\\xa5\\x76\\xc2\\xdf\\x24\\x16\\xc0\\xec\\x42\\x17\\xeb\\x3f\\x61\\xee\\x62\\x51\\xa8\\x63\\xbd\\xf8\\x73\\xa1\\x44\\x08\\xcd\\x85\\xf7\\x84\\xa5\\xd0\\x2f\\x73\\xe3\\xe2\\xe5\\xf8\\x2e\\xfc\\xee\\xd8\\xef\\xd2\\xef\\x9d\\x9f\\xd8\\x0a\\x7c\\x4e\\x02\\x51\\xb8\\x4b\\xcb\\x48\\x0f\\x4b\\xdb\\x8e\\xf2\\x3a\\xa4\\x6f\\x64\\x76\\xa6\\x7b\\xa5\\xe7\\xe7\\x36\\x16\\x5f\\x94\\xe4\\x97\\x76\\x95\\x39\\x96\\x99\\x95\\x31\\x59\\x90\\x6b\\x66\\x2c\\xa5\\x36\\x27\\xb8\\x24\\xb9\\xa4\\xc6\\xe4\\x5a\\x9d\\xe8\\x7a\\x68\\xbd\\xda\\x0e\\x09\\x0f\\x59\\x99\\x2a\\x1d\\x89\\x60\\xfb\\x37\\x65\\x3c\\xc4\\x55\\x19\\xa2\\x9a\\xda\\x9a\\xea\\x1d\\x80\\x78\\x2a\\xda\\xe0\\xfe\\xb9\\x5e\\x29\\x01\\x53\\x5b\\x52\\x99\\xf6\\x9f\\x8e\\x99\\x0e\\x73\\x8e\\x7c\\x71\\x5a\\xa1\\x2f\\xa1\\x3d\\xa1\\xd5\\x82\\x39\\x77\\xff\\xec\\x1a\\xc4\\xcb\\xb1\\xab\\x4c\\x60\\xa8\\x0d\\x8a\\x51\\x61\\x48\\x5b\\x8d\\x6a\\x9d\\x8a\\x9e\\xca\\x9f\\x8a\\xad\\x4a\\xad\\x8a\\xae\\x1a\\xb5\\x09\\x0b\\x6a\\xf5\\x29\\xb5\\x62\\x35\\x60\\x79\\x62\\x4d\\x27\\xd7\\xb2\\x56\\x68\\x57\\x6e\\x94\\xf2\\x97\\x7b\\x95\\xbe\\x97\\xe1\\x57\\xf0\\x56\\x79\\x54\\x10\\x57\\x0a\\x96\\x5b\\x54\\x4e\\x5a\\x31\\x9d\\x8b\\xb7\\x1f\\x7a\\x64\\x74\\x97\\x92\\x94\\x0a\\x59\\xc0\\x11\\x78\\x10\\xa8\\x12\\x5c\\xe1\\x3b\\x0f\\x35\\x15\\xd7\\x9f\\x36\\xa7\\x1b\\x5e\\x99\\x77\\xdb\\x48\\x6b\\x61\\x6b\\xf9\\x68\\x5e\\x2e\\x1d\\x2e\\x05\\x2e\\x0d\\x73\\xc6\\x54\\x2d\\x71\\xae\\xbb\\x60\\xe4\\x02\\x38\\xf5\\xb9\\x6b\\x31\\xb8\\x11\\xb2\\x60\\xe1\\x73\\xe1\\x2b\\x03\\x04\\xc8\\x08\\x94\\x51\\x93\\xf3\\xfa\\x66\\x54\\x4e\\x28\\x2a\\xfd\\x0b\\x6e\\xf4\\x9f\\x9d\\x90\\xcb\\x8a\\x9d\\x19\\xca\\x5d\\xfe\\x5d\\x7e\\xf2\\x7a\\x6e\\x4e\\x79\\xfc\\xf5\\x7e\\x7b\\x3d\\x47\\x2e\\x0f\\x79\\x70\\xf1\\xf7\\x6e\\xfd\\x68\\xa3\\xb8\\x58\\x39\\x79\\x3e\\x8b\\xe2\\x6b\\xe1\\xeb\\xe9\\x58\\xeb\\xa8\\x6e\\xef\\x68\\xb7\\xf5\\x7c\\x07\\x26\\x03\\xa7\\xb7\\x4a\\x5d\\x5b\\x5d\\x1b\\x9e\\xba\\x6a\\xb6\\xb8\\x66\\x9e\\xe6\\xa6\\x6f\\x4b\\x3e\\xd8\\x3e\\x3c\\xa1\\xc2\\xfc\\xa8\\x66\\x78\\x6b\\x79\\x6e\\x78\\xcc\\x51\\x19\\x51\\x59\\x44\\x17\\x67\\x56\\x6b\\xa9\\x09\\x91\\x14\\x90\\x72\\x62\\x56\\x28\\x18\\x28\\x1a\\x28\\x68\\x28\\x48\\x0a\\xea\\x4b\\x85\\xd6\\x78\\x3d\\x98\\x5f\\x59\\x4d\\xc3\\x92\\x8d\\x12\\x8d\\x70\\xf6\\x13\\xdc\\xc0\\xcf\\xb3\\xe2\\x2c\\x75\\xfc\\xd2\\xbf\\x1f\\xe5\\x05\\xe5\\x17\\x8b\\x7f\\x95\\xb8\\x94\\xa0\\x9f\\x5a\\x7b\\x38\\x17\\x5b\\xa4\\xc4\\x3d\\x98\\xc1\\x9a\\x3d\\x1d\\x33\\xb7\\x0d\\xb5\\x65\\xbb\\xff\\xea\\x36\\xfb\\x74\\x34\\x30\\xdf\\x75\\x99\\xd5\\x25\\xd4\\xed\\xd4\\x2c\\x4f\\x11\\x4c\\xc5\\x51\\x2b\\x57\\x59\\xd0\\x6b\\xdf\\x81\\x50\\xad\\x26\\x05\\x00\\xf4\\x6d\\xd6\\x9b\\xf3\\xd7\\x9a\\x03\\x1a\\xaa\\x04\\xf6\\x57\\xb7\\xd6\\xfe\\x8b\\xcf\\xf5\\x5f\\x17\\x42\\x05\\x3d\\x36\\xcc\\x04\\xff\\xf0\\x09\\xf0\\x24\\xf6\\x0d\\x94\\x88\\x12\\x67\\x93\\x58\\xa3\\x9b\\x95\\xeb\\xe9\\x1b\\xbd\\x1a\\x21\\xcf\\xc5\\xcf\\x5d\\xce\\x6d\\xb5\\x5c\\xd7\\x65\\xd7\\x75\\x3c\\xa9\\xde\\xf4\\xf9\\xfe\\xe9\\x59\\x7c\\x9d\\x9e\\x9c\\xb7\\x9e\\xb3\\xf3\\x0d\\xf3\\xa2\\xb6\\xbf\\xb6\\x3f\\xb6\\x7f\\xb6\\x2b\\x3e\\x79\\x2a\\x68\\xa1\\x5e\\xf1\\x5c\\x30\\xec\\x4f\\xba\\xc7\\xbe\\xad\\xbd\\xc2\\xbc\\x6e\\x74\\x1f\\x7e\\xb2\\xfa\\x2c\\x7e\\xb1\\xe8\\x23\\x67\\x21\\xbb\\xa0\\x12\\x23\\x23\\xa3\\x5e\\x22\\x71\\xc1\\x81\\x77\\x43\\xe3\\xb1\\xe3\\xb5\\x0f\\x4c\\x80\\x3d\\x01\\x90\\xb9\\x18\\xe6\\x88\\x95\\x7e\\xdf\\x7e\\xa6\\x21\\x60\\x07\\x56\\xcc\\x42\\xce\\x02\\x67\\xc5\\x93\\x62\\xa6\\xa2\\xa3\\xa3\\x6d\\xa2\\x36\\xa3\\xba\\x62\\x5a\\xa2\\x15\\x64\\xbf\\x4b\\x5d\\xc8\\x73\\x4a\\x57\\xcb\\xfa\\xc8\\x3e\\xc8\\x0f\\xfe\\x3d\\x57\\x1a\\x56\\x8a\\x9d\\x7f\\x99\\x5b\\x9c\\x4b\\xbf\\x3f\\xb9\\x5f\\xbb\\xbf\\xbd\\xdf\\x8f\\xe2\\x60\\x63\\x01\\xb3\\xad\\x93\\xae\\x73\\x54\\x4c\\x27\\xac\\x96\\xad\\x96\\xf1\\xb0\\xba\\x62\\xd1\\x06\\x47\\x89\\x0f\\x91\\xbf\\xc5\\xb7\\x98\\xd3\\x36\\xb2\\x95\\x4b\\x9a\\xdc\\x93\\x2d\\xa1\\x8b\\xd5\\x0d\\xae\\x58\\x74\\x62\\x55\\x0f\\x6b\\x78\\x51\\xf8\\x90\\x7c\\xc9\\x34\\x92\\xdd\\x83\\x0c\\xf7\\x98\\x56\\x33\\x37\\xa4\\x74\\x0b\\x23\\x14\\x6d\\x7e\\xd0\\x71\\x64\\xac\\xc9\\x6e\\x16\\x9d\\xcf\\x5e\\x5a\\x08\\x93\\x14\\xe7\\xb0\\x31\\xa4\\x7d\\x87\\x4a\\x5f\\xb6\\xd6\\xc2\\xae\\xa5\\xef\\x48\\xf9\\x18\\xe3\\xd8\\x7f\\xdf\\xd0\\xbc\\xfa\\x71\\x7d\\xac\\x76\\xd7\\xf1\\x72\\x2d\\x2a\\x00\\x81\\x10\\x19\\x0c\\x36\\x24\\xb3\\x2f\\x76\\xfb\\xe3\\xc5\\xa0\\x92\\x60\\x29\\x1d\\x4d\\xd9\\xd3\\xa8\\xf8\\x4a\\xdb\\x92\\x80\\x79\\xa7\\xed\\xde\\x31\\xf7\\x2b\\x3e\\xb9\\xc1\\xd2\\xb5\\xa9\\x87\\x57\\x7b\\xb1\\x42\\x66\\xb1\\x46\\x53\\x8f\\xa1\\xa4\\x6b\\xe9\\xb3\\xdf\\xa1\\x16\\xc2\\x1a\\xf1\\x4d\\x8c\\x02\\x49\\x8c\\x30\\x26\\xc4\\x71\\xd7\\xc3\\x0d\\x4d\\x37\\x44\\x61\\xd7\\x37\\x60\\x07\\x02\\x90\\x80\\x06\\x00\\xec\\xac\\xff\\x6f\\x2a\\xcd\\x97\\x96\\x1d\\xaa\\x6d\\x5b\\xff\\x35\\x3c\\x8f\\xf8\\xc2\\x60\\x59\\xfd\\x44\\x73\\x11\\xcc\\x61\\x3c\\xfc\\x14\\xf5\\x51\\xd0\\xf4\\x39\\x56\\x10\\xa7\\x02\\x43\\x77\\x28\\xa2\\x60\\x12\\xfb\\xac\\x6b\\xbf\\x55\\x42\\x68\\xf5\\xea\\xda\\x7d\\xcf\\x82\\x16\\x6b\\x45\\xfb\\x17\\x22\\xb9\\xab\\xf2\\xfc\\xdd\\x47\\xd2\\xfe\\x0f\\x7e\\x12\\x6a\\xb2\\x18\\xf2\\x1f\\x58\\x76\\x80\\x9c\\x30\\x0a\\xab\\xb9\\xc0\\x5a\\xf4\\x54\\x7e\\x87\\x3c\\xcf\\x71\\x3e\\x78\\xe5\\x25\\x62\\x7f\\xc7\\xa9\\x15\\x50\\xed\\x47\\xb0\\x2b\\xef\\x06\\x07\\xf4\\x23\\xb2\\xbe\\xf1\\xe8\\x24\\xd1\\x03\\xa1\\x52\\x1c\\x92\\x97\\x50\\xb8\\x52\\xd8\\x4a\\x7f\\x4f\\x08\\x32\\xa6\\x18\\x94\\x42\\x9e\\x0b\\xb8\\x27\\x37\\x1a\\xe1\\xcf\\x1f\\xd1\\xac\\xcf\\xd1\\xa6\\x8c\\x1d\\x55\\xe3\\x4a\\x59\\x9f\\x12\\xb8\\xda\\x72\\xd2\\xeb\\xf0\\xed\\xa2\\xd4\\xe5\\xac\\x09\\x52\\x1b\\xb7\\xda\\x7f\\x00\\x53\\xbb\\xc5\\x70\\x6d\\xaf\\x9f\\x10\\x3d\\x32\\x7a\\x2a\\x74\\x5d\\xfb\\xf0\\x0b\\x65\\xeb\\xf5\\xd6\\x1c\\x2c\\x83\\xf9\\x9e\\xa1\\xde\\xa5\\x7d\\x40\\x7a\\x27\\xb6\\xf7\\xa8\\x6f\\x6a\\x1f\\xc7\\x9f\\x4f\\xa4\\xba\\x71\\x8c\\x3f\\xd0\\x94\\xe1\\xf0\\xa1\\x75\\x02\\x0c\\xfa\\xa2\\x48\\x91\\x52\\x60\\xd6\\x03\\x13\\xfb\\x26\\x77\\x4c\\x6e\\x38\\xa2\\x30\\x8b\\x11\\x11\\x83\\x92\\xfb\\xa9\\x0d\\x5a\\xec\\xc4\\xb9\\x29\\x90\\x06\\x0e\\x77\\xa7\\x6e\\xd8\\x27\\x25\\xb0\\x74\\x64\\x9e\\xe6\\xc0\\xf7\\x64\\x1f\\x13\\x86\\x75\\xec\\xf4\\x24\\x74\\xc3\\xf8\\xb5\\x28\\xd6\\x68\\x99\\xfd\\xda\\xcd\\x71\\x36\\xa6\\x92\\xab\\xce\\x8f\\x09\\x1f\\x07\\xb7\\x6e\\xbc\\xc0\\x58\\xb5\\x1d\\x64\\x37\\x82\\xad\\xd8\\xd8\\x7d\\x70\\xeb\\x4e\\xc5\\x8b\\xae\\x0f\\x70\\xfb\\x98\\x44\\x02\\x29\\x5e\\xf4\\x00\\x8d\\x4a\\x1c\\x79\\xf6\\xf7\\x3d\\xfa\\x3e\\x88\\x9f\\x0c\\xf4\\xbb\\x4e\\xa9\\x38\\xa1\\xcd\\x98\\x56\\x43\\xa6\\x39\\xc1\\xfb\\x00\\x97\\x47\\x92\\xf5\\x45\\xf5\\x53\\x25\\x5c\\x99\\x5a\\x45\\x4a\\x45\\x71\\x52\\x19\\x95\\x43\\x5c\\x4e\\x31\\x75\\xd1\\xe8\\x41\\x65\\x78\\xf6\\xd4\\x09\\x42\\x47\\x9a\\x6b\\x56\\xe7\\x9e\\x59\\x40\\xae\\xc3\\x23\\x6f\\xab\\x14\\xf5\\x6c\\xfc\\xb5\\xee\\xd3\\x72\\x2f\\xcd\\x89\\x3a\\xa7\\x4c\\x1f\\x3f\\x4d\\xde\\x34\\x2e\\xdd\\x98\\xdc\\x34\\xef\\xc5\\x02\\x73\\x05\\xa9\\xd9\\xaf\\x4a\\x9f\\x60\\x05\\xa5\\x39\\x96\\xc8\\x2c\\x8f\\xc3\\xa5\\x68\\xd3\\x12\\x75\\x6d\\xfc\\xb1\\xd9\\xdb\\x5a\\x6f\\xfd\\x8b\\xa8\\x0f\\x2a\\x77\\x93\\x19\\x00\\xe8\\x5d\\xfd\\x3f\\x23\\xb6\\x59\\x97\\x32\\x2a\\x41\\x6d\\xf8\\xcf\\xdf\\x67\\x47\\x2c\\x81\\x6f\\x80\\x39\\x29\\xb1\\x14\\xcc\\x9c\\xbf\\x35\\x29\\xc9\\x0f\\x98\\x31\\x7f\\xcb\\x5c\\xe8\\x13\\xe8\\x5f\\xfe\\x1a\\xfa\\x58\\x71\\xfa\\x34\\xdc\\x70\\xf2\\x01\\x91\\x3b\\xd4\\x6e\\x70\\x82\\x1e\\xb3\\x9d\\xc6\\xba\\x9c\\x35\\x69\\x6a\\x03\\x56\\x87\\x44\\x0f\\x53\\x1e\\x4f\\x5d\\xc7\\x5b\\x9e\\xb8\\xc8\\xc5\\x7e\\x78\\xfa\\x28\\xea\\x80\\x14\\xbf\\x26\\x7d\\x8a\\x15\\x04\\x97\\x80\\xae\\x1d\\x52\\x6e\\x04\\xf9\\x80\\x86\\x1d\\xf2\\x56\\x04\\xc8\\x93\\x81\\x2a\\x3b\\xa6\\x31\\x3f\\x87\\x5c\\xc8\\x52\\x48\\x4b\\x3f\\xcd\\x5c\\x14\\x73\\x00\\xbe\\xbf\\x69\\x2e\\x56\\x58\\xc1\\xe5\\x09\\x65\\x7b\\xb8\\x6e\\xc1\\x36\\x37\\xfa\\x54\\x00\\x78\\x87\\xbc\\x15\\xf2\\x5f\\x90\\xd6\\xae\\xa0\\x1b\\x21\\x30\\x74\\xd9\\x20\\xf2\\x69\\x0f\\xfc\\x4c\\xf6\\x19\\xe5\\x9b\\x88\\x4b\\x89\\x35\\x2a\\x36\\x16\\x0f\\x53\\x88\\x89\\x27\\x3a\\x14\\x47\\x6b\\x8c\\xa2\\x21\\xc9\\x0e\\x9f\\x38\\x70\\xc0\\xea\\xfe\\xbb\\x7b\\x4e\\x8a\\x1d\\x5b\\x4e\\x0c\\x3c\\xe3\\xd0\\x88\\x6f\\xf3\\xcb\\x73\\x06\\xdd\\x09\\x5b\\x47\\x82\\x6a\\x53\\x5a\\x61\\x7e\\xfd\\x9e\\x21\\x12\\x64\\x58\\x27\\x4e\\x8f\\x48\\xd7\\x5f\\x5e\\x67\\x5a\\x09\\x4b\\x30\\x78\\x54\\xcb\\x21\\xdb\\xb0\\x79\\x41\\xdf\\x31\\xbe\\x05\\xfe\\xc1\\x0f\\xa1\\x30\\xd0\\x70\\x03\\xd9\\x89\\x54\\x33\\xcc\\x77\\x23\\xe2\\x45\\xa8\\xd7\\xcb\\x65\\x97\\x73\\x7d\\x50\\xf2\\xa2\\xf3\\xa9\\x2b\\x8e\\x89\\x27\\x0e\\xaf\\x28\\xd3\\x88\\xe1\\x0d\\xc2\\x65\\x51\\xb0\\x46\\xeb\\x5e\\xa1\\x65\\x8c\\x5c\\x66\\x4d\\x88\\xa2\\x61\\x1b\\x11\\xad\\x8f\\xb0\\x26\\xef\\x18\\x35\\x70\\x08\\xd1\\x26\\xaf\\xdb\\xa0\\x8f\\x1d\\x3b\\xbf\\x2b\\x88\\x28\\x9a\\x2b\\xf5\\x2a\\x0f\\xb0\\x2c\\x6c\\x2f\\x35\\xb0\\x0c\\xd1\\xcc\\xaf\\x45\\xa8\\x18\\x38\\xeb\\xf4\\x28\\x15\\x3c\\x57\\xe7\\x8d\\x66\\x2c\\x26\\x38\\x91\\xf7\\x88\\x03\\xe6\\xa7\\x5a\\x94\\x07\\xbe\\xe6\\x76\\x97\\x5e\\x9f\\x3d\\x51\\x67\\x48\\x1b\\xd7\\xa7\\x19\\x16\\x87\\x58\\x18\\x78\\xa4\\xb3\\x98\\x02\\x57\\xf5\\xbd\\x1a\\x96\\xb3\\xb8\\x5a\\x26\\xb5\\x08\\x06\\xa9\\x1b\\x78\\xac\\x69\\xb5\\x86\\x81\\xcd\\x0a\\x97\\xae\\x38\\x03\\x54\\xf6\\x78\\xda\\xc4\\x6a\\xfd\\x2a\\xf6\\xc8\\xda\\x04\\xcb\\x03\\xc8\\xf6\\x98\\x1b\\x84\\x2d\\xfd\\x22\\x66\\x9b\\xba\\xae\\x5b\\x3a\\x4f\\x88\\xcf\\x98\\xef\\xf3\\x9f\\xd3\\xc2\\x40\\xe1\\x1e\\x3f\\x64\\x42\\xe4\\x0d\\x54\\x2f\\xa4\\x21\\xb8\\x62\\x84\\x23\\xf8\\x14\\x44\\x4e\\xb8\\x29\\xf8\\x2b\\x54\\x09\\x78\\x15\\x84\\x45\\x84\\x26\\xf8\\x87\\xb0\\xd6\\x5d\\x26\\xf3\\xf5\\xad\\xa2\\xff\\xbe\\x95\\xbe\\xa1\\x03\\x6a\\x01\\xd8\\x00\\x5b\\x00\\x34\\x00\\x12\\xf0\\x07\\xa0\\x0f\\x70\\x05\\x00\\x00\\x9b\\x88\\xa9\\x00\\x28\\x00\\x84\\x1b\\x04\\xfd\\x50\\x11\\x84\\xa8\\x22\\x20\\x64\\xf6\\x7a\\x94\\xa3\\x92\\x14\\x99\\x56\\xca\\x10\\x92\\x9a\\x74\\x3b\\x44\\x56\\x84\\x92\\x0d\\x40\\xb0\\x53\\x0f\\x5f\\x8f\\xf9\\x9a\\xe3\\xe4\\xc7\\xaa\\xc5\\x9a\\xc0\\x0f\\x70\\x9c\\xc1\\xc4\\x9f\\x78\\xf8\\x3e\\x2d\\x3a\\x8d\\x5b\\xbf\\xe0\\xc8\\xab\\xed\\x2c\\x76\\x50\\xad\\xa5\\x29\\x2d\\xe3\\x1a\\x95\\x18\\x4f\\xfc\\x83\\x8a\\xae\\x4b\\x8a\\x41\\xe3\\x9c\\xca\\x63\\x54\\x91\\x89\\x4d\\x0e\\xe8\\x11\\x9c\\x86\\xe2\\xb6\\x2c\\x81\\x5d\\x5e\\x07\\xfa\\x83\\xfb\\x49\\x4c\\x75\\xd2\\xd5\\xb4\\xe8\\x11\\xdf\\xde\\xb1\\xcb\\x2a\\xd8\\x90\\x42\\xc4\\xe0\\xfd\\x46\\x8c\\x82\\xa6\\x1a\\xbe\\x6e\\xdb\\xd6\\xcb\\x7a\\x98\\x1a\\x10\\x15\\x94\\x84\\x20\\x16\\x8b\\xa2\\xf3\\xc8\\xbc\\xa1\\x5f\\x44\\x19\\x15\\xc6\\xbc\\xc1\\x42\\x96\\x1b\\xbc\\x1b\\x15\\xff\\x7d\\xa0\\xc3\\x53\\xe5\\xec\\x67\\x7e\\x92\\xea\\x0c\\x1a\\xfa\\xdc\\x1e\\x51\\x24\\x53\\x55\\x82\\xa9\\x5b\\x3f\\x6b\\xbc\\x0b\\xa3\\x8d\\x38\\x77\\xa8\\x4f\\xe7\\xd1\\x55\\x9d\\x52\\xc3\\xeb\\x06\\x77\\xa3\\xad\\x09\\xe3\\x68\\x1c\\xa6\\xf3\\x6c\\x7e\\xc1\\x61\\x98\\xd8\\x23\\x77\\x1f\\xcf\\xbc\\x3b\\x15\\xd5\\x50\\x81\\x2a\\x28\\x29\\x2a\\xbc\\xfd\\x4b\\x41\\x2c\\x15\\xdb\\x9b\\xd3\\x94\\x87\\x68\\x3f\\xc6\\x48\\xbb\\xe4\\xc7\\x3c\\x3b\\xff\\xe1\\x8f\\x1b\\xb8\\x70\\xdc\\x7d\\x45\\x66\\x90\\x7e\\xf8\\x71\\x62\\x11\\x47\\x4b\\x86\\x10\\x7c\\x6d\\x54\\x1b\\x69\\xd1\\x9f\\x8d\\x08\\x24\\x85\\x0f\\xda\\x0e\\x8f\\xea\\x1f\\xc9\\x6f\\xf1\\x51\\x7e\\x61\\xf0\\x45\\x47\\xb6\\xa5\\xe9\\x3f\\x3c\\xf3\\x34\\xff\\x92\\x7f\\x74\\xd0\\x12\\x43\\xb4\\x67\\xf8\\x0e\\x70\\x9a\\xca\\xc5\\xd0\\x26\\x27\\xd1\\x0e\\x37\\x16\\xbd\\x9b\\x5b\\xec\\x4e\\xea\\x37\\xd5\\x7e\\xa7\\x6c\\xc4\\x9b\\x34\\x48\\x69\\x74\\x3f\\x88\\x41\\xac\\x76\\x3b\\x12\\x7b\\x25\\xfa\\x0e\\x46\\xf5\\xa3\\x71\\x53\\x05\\xb8\\x41\\x58\\xf7\\x05\\x3a\\x8b\\x41\\x00\\x00\\xbd\\xe7\\x35\\x9b\\x7a\\xff\\x39\\x8e\\x11\\x2f\\x49\\x4d\\xac\\xe6\\xf5\\xc2\\x57\\xdf\\x84\\xcb\\x48\\x6b\\x02\\x32\\xe2\\xca\\x85\\x73\\x35\\xab\\x78\\x1f\\xf0\\xd9\\x2d\\xe7\\x2a\\x25\\x2a\\x38\\x2f\\x79\\x83\\x78\\x9d\\x4f\\x97\\x0a\\xd4\\x72\\x7c\\xa0\\x60\\x90\\xf1\\x38\\x0d\\x17\\xd2\\xec\\x31\\xa9\\xe5\\xd2\\x39\\x8d\\x96\\xb2\\xdc\\x11\\xb1\\x19\\x34\\x9a\\x0d\\x17\\x33\\x9c\\x09\\x38\\x6d\\x56\\x9b\\x8d\\x96\\x81\\xde\\xb0\\x28\\x44\\x3c\\x2e\\x7b\\x0b\\xe9\\x8e\\x38\\x8c\\x3a\\x6d\\x2e\\xfb\\x4b\\xd9\\x9e\\xa8\\xc4\\x02\\xee\\x8f\\x7b\\x8b\\x99\\xae\\x24\\x82\\xde\\x2f\\x8f\\xfb\\xcb\\x39\\xbe\\xe8\\x8a\\x2c\\xf6\\xf0\\xd2\\xb4\\x16\\x78\\x12\\x26\\x01\\x3b\\x64\\x0c\\xb8\\x00\\x80\\xdf\\xc9\\xc4\\x13\\xc5\\x7a\\xb3\\xfb\\x90\\xf5\\xfa\\x52\\xb9\\xea\\x0b\\xfe\\x6a\\xb3\\xd5\\xa6\\x27\\xc7\\x42\\xbd\\x1c\\x89\\xeb\\xc2\\xec\\x2f\\xb6\\x02\\x7a\\x56\\xb1\\x44\\xdf\\xd2\\xe2\\x4c\\x54\\x41\\x8b\\xa2\\x1c\\x98\\x2f\\x87\\x7e\\x3e\\x23\\xfa\\xdb\\x49\\x1c\\x21\\xd9\\xd9\\x3e\\x82\\x6c\\xfe\\xf9\\x91\\x6f\\xa8\\x95\\x2c\\xa3\\x91\\x5f\\x2b\\x0f\\x3d\\x10\\x30\\x0e\\x7d\\x45\\x22\\x30\\x0d\\x13\\x11\\x64\\x13\\x78\\x96\\x69\\xbb\\xbf\\x70\\x2d\\xbe\\x7b\\x66\\x39\\x8e\\xa0\\x0f\\x67\\xd5\\x4d\\x97\\xcd\\x0e\\xe1\\x5a\\x65\\xdd\\x52\\xa7\\x99\\x27\\x8c\\x16\\xa7\\x59\\x66\\x9c\\x9a\\xa6\\x59\\xa4\\xac\\x1e\\xa5\\x8d\\xb7\\xba\\x1f\\x69\\xe9\\xe7\\x49\\x60\\x6b\\x19\\x96\\x99\\xa4\\x68\\xf5\\xd5\\x26\\xf7\\x7c\\xeb\\x0b\\x8c\\x87\\x02\\x00\\x00\\xb5\\xe3\\x52\\xb6\\xeb\\x9c\\x96\\xeb\\xcd\\x38\\xb6\\x86\\x03\\xc5\\x0c\\xeb\\x2e\\x17\\x6b\\x0d\\xd7\\xbd\\x79\\x14\\xc3\\xf2\\x59\\xbc\\x8e\\x57\\xfd\\x45\\x74\\xcb\\xff\\x36\\xda\\x1d\\xaf\\xfb\\x0a\\x68\\xa6\\x75\\x3b\\x3d\\xc0\\x57\\x03\\x25\\x4c\\xdb\\x3e\\xef\\xaf\\x60\\x26\\xd2\\x1f\\x94\\xf4\\xe4\\x3f\\xa9\\x19\\xc9\\x68\\xa9\\x18\\x28\\xe8\\x68\\x6a\\x72\\x4b\\x0b\\x2b\\xf3\\xcb\\x8b\\xab\\xf3\\xca\\x8a\\xaa\\x0a\\x2a\\x4a\\x6c\\xf5\\xcd\\x8d\\xad\\x0d\\x2d\\x4d\\xff\\x19\\x58\\x34\\x51\\xc3\\x11\\xa3\\x51\\x40\\xf8\\x01\\xfc\\xe4\\x80\\x3e\\xcd\\x36\\x0b\\xff\\x91\\xc9\\xba\\xa6\\x64\\xb7\\x93\\xf8\\x61\\xa0\\xdb\\x59\\xfa\\xb1\\xae\\xdb\\x69\\xf2\\xf2\\x96\\xdb\\x79\\xf6\\x93\\xe0\\xf3\\x49\\xe2\\x74\\xf7\\xf3\\x59\\xe6\\xb5\\xcf\\xf3\\x69\\xea\\xf6\\xe7\\xf3\\x79\\xce\\x57\\x02\\xa5\\x4c\\xfc\\x4f\\xb9\\x76\\xa4\\xf4\\x7a\\xe3\\xf1\\x78\\x3a\\x85\\x6e\\xc8\\xe0\\x88\\xef\\x74\\x8a\\xe5\\xb2\\x6d\\x08\\xc9\\xe5\\xca\\x15\\x8a\\x15\\xf2\\x5d\\x30\\xd1\\x19\\xec\\x56\\xb3\\xe5\\x72\\x1d\\x28\\xd9\\xed\\x4e\\xe7\\xb3\\x15\\x4c\\x08\\x05\\x52\\xbe\\x49\\xbf\\x34\\xd8\\x09\\xc2\\xf6\\x7e\\x84\\xa7\\xb4\\x92\\x44\\xdf\\x82\\xf4\\x8d\\x25\\xac\\x16\\x7e\\xe9\\x28\\x13\\xb0\\x5a\\x83\\x4a\\x59\\xf6\\xa9\\x65\\x87\\x64\\x94\\x8a\\x27\\xd3\\x38\\x70\\xf4\\xf6\\x3d\\xbd\\x22\\xc5\\x0b\\x41\\x6f\\xcf\\x78\\x16\\xb7\\xd4\\x82\\x43\\x25\\xa5\\xcc\\xb6\\x7d\\xf9\\x54\\xe3\\xaa\\x95\\x9a\\x0d\\xff\\xfe\\xd7\\x90\\xdf\\x2b\\xff\\xaf\\x8e\\x6c\\xa1\\x7f\\x53\\x80\\x5d\\x05\\x00\\x00\\x12\\xd7\\xae\\xbe\\xc6\\xeb\\xcd\\x36\\x31\\x09\\x36\\x1d\\xee\\x73\\x9e\\x88\\xc6\\x46\\x21\\xec\\xa2\\xbc\\x92\\x48\\xa5\\xbe\\xef\\xe7\\x42\\x5f\\x04\\xc6\\xb5\\x64\\x21\\xf8\\xa6\\xad\\xe8\\xbf\\xf0\\x4d\\x1a\\x59\\x86\\xf0\\xcd\\x3a\\xe1\\xa9\\x33\\x8c\\xeb\\x69\\x8b\\x33\\x4c\\xdb\\xf1\\x4c\\x33\\x4c\\x9a\\x79\\x8e\\x32\\xcc\\xba\\xa1\\xb1\\x35\\x8d\\xeb\\xa8\\x52\\x34\\x4d\\xdb\\xb0\\x54\\x35\\x4d\\x9a\\x38\\x2e\\xb4\\xac\\x88\\x6a\\x96\\xd6\\xf5\\x29\\x60\\xb3\\xec\\xfb\\xc9\\xbc\\xef\\xd7\\x41\\x00\\x1c\\x24\\x87\\x31\\x1e\\x2e\\x6d\\x87\\x41\\x0e\\x31\\x7e\\xbb\\x71\\x22\\x49\\x24\\xf0\\x04\\x85\\x42\\xd4\\xcd\\x14\\x6e\\x41\\x14\\xdb\\xe8\\x37\\x25\\x4e\\xb6\\x49\\x7a\\xb6\\x09\\x96\\x69\\x72\\x44\\xfa\\xba\\x09\\x04\\xab\\xca\\xfa\\x29\\x6a\\x02\\xeb\\x86\\x41\\x94\\x0e\\x2f\\x3b\\xeb\\xc8\\xaa\\xe6\\xd5\\x7f\\xa1\\xd9\\x5e\\xb7\\x36\\xa9\\x9b\\x8f\\x2b\\xe3\\x0a\\x7e\\x7a\\x01\\x3b\\x7d\\x61\\xfe\\x00\\x00\\x60\\x45\\x4f\\xb5\\xc2\\x66\\xbd\\xb9\\xc9\\xd5\\xd3\\x9a\\xfc\\xff\\x31\\x4b\\x12\\xaf\\xc0\\x9c\\x80\\xfc\\x84\\xfa\\x88\\xf2\\x8c\\xf6\\x90\\xe2\\x94\\xe6\\x98\\x6a\\x60\\xb7\\x7f\\x5e\\x7c\\x5d\\x78\\x59\\x7a\\x5b\\x70\\x51\\x72\\x53\\x74\\x55\\x76\\x57\\x60\\x41\\x62\\x43\\x64\\x45\\x66\\x47\\x68\\x49\\x6a\\xcb\\x74\\x0e\\xa9\\x5b\\x6f\\x0c\\x3d\\x00\\x00\\x78\\xd4\\x43\\xe9\\x6e\\xee\\x6a\\xb2\\xb1\\xb2\\x5c\\x77\\xe1\\x2b\\xb7\\xa1\\x01\\xba\\x5f\\x05\\xa7\\xea\\x42\\xb7\\xf4\\x65\\x2f\\x6f\\x7d\\x8b\\x27\\x3d\\xab\\x72\\xdd\\x7a\\xdb\\x29\\x50\\x10\\x7c\\xdb\\xab\\xb0\\xed\\x7e\\xdb\\x2d\\xd1\\xf3\\x79\\xdb\\xaf\\xf1\\xfd\\x94\\x89\\xfb\\x21\\xed\\x80\\x96\\x40\\xae\\x92\\x71\\x4f\\x8a\\x0d\\x32\\x19\\x49\\xa2\\xd2\\x8a\\xd1\\x76\\xbf\\xc3\\xfa\\xa1\\x5c\\xa8\\x1e\\xfe\\xd7\\x64\\x4c\\xa5\\x54\\xb9\\x48\\x33\\x5a\\xd3\\xf9\\x8c\\xc3\\x7c\\x81\\xb2\\x50\\x23\\x52\\xd5\\x66\\xcd\\xf9\\x64\\xa1\\x48\\x2b\\x56\\xd7\\xfb\\x15\\x19\\x97\\xdd\\x78\\x25\\x4c\\xd1\\x68\\x48\\x2e\\x8d\\xdd\\x64\\x2d\\x4a\\xc3\\xf1\\x88\\x41\\xbd\\xd1\\x78\\x35\\x42\\xc5\\x6a\\xc9\\x66\\xe5\\x3b\\x36\\x3a\\x16\\x66\\x8b\\xc9\\x7a\\x8c\\x8e\\xe7\\x23\\x11\\xb7\\xd3\\xc1\\x4a\\xb8\\x92\\xd9\\x94\\x4e\\xab\\xd3\\xe1\\x5a\\xb4\\x96\\xeb\\x95\\x00\\xfa\\x37\\x54\\x38\\x74\\x00\\x00\\xd0\\x7b\\x96\\xf2\\x7f\\xe8\\xdd\\x2d\\x60\\xdd\\xe3\\x2f\\x24\\x12\\x00\\x8d\\x46\\xae\\x9c\\x66\\x87\\x4e\\x2e\\x11\\x8e\\x4d\\xa1\\x9a\\xe5\\x06\\x8f\\x41\\x25\\x9d\\x42\\xae\\x92\\xe1\\x84\\xc7\\x6a\\x32\\x9a\\x42\\xa1\\x06\\xf4\\x82\\x46\\xc0\\xa2\\x55\\xcd\\x57\\x4e\\x77\\xc0\\xfa\\xa9\\x52\\xa6\\x5a\\xa0\\x9a\\xed\\x81\\x8c\\xcf\\x61\\xb1\\x94\\xaf\\x92\\xe9\\x42\\xf4\\xff\\xa1\\x9e\\x7c\\xd2\\xc0\\x01\\x31\\x44\\x21\\x00\\x00\\x3f\\xef\\x8b\\xb5\\xe9\\x91\\xff\\x73\\xc9\\xb0\\x02\\x4f\\xba\\x0a\\xbd\\xdf\\x8f\\xdb\\xfa\\xbe\\x3f\\x4c\\xfb\\x42\\x40\\x42\\xc3\\x63\\xff\\xff\\xa1\\xdc\\x1e\\xb8\\x80\\x48\\x28\\x80\\x28\\x00\\x20\\x8c\\xa3\\x5d\\xd2\\xf6\\x95\\xe2\\x03\\x1d\\x38\\x6b\\x3c\\x64\\xd8\\xb4\\x4a\\x24\\x9f\\xba\\xbe\\xff\\xf0\\x02\\xad\\x98\\x80\\xe5\\x6c\\xce\\x3b\\x2a\\x96\\xac\\xc3\\x07\\xe7\\x45\\xd3\\x3b\\x59\\xe1\\xa3\\xaa\\xaa\\x68\\x8b\\xf3\\xc7\\x35\\x75\\x5b\\x3a\\x0d\\x6a\\x1e\\x51\\x16\\x25\\x6e\\xed\\xa8\\x26\\xce\\x3e\\xd5\\xb9\\x8d\\x8c\\xeb\\x4b\\xda\\xfd\\xc9\\xc3\\x91\\xed\\x6e\\xe6\\x17\\x4a\\x05\\xd1\\x2f\\xc3\\x4d\\xc3\\x11\\x5c\\xc5\\xf1\\x48\\x18\\x43\\x67\\x77\\x95\\xd9\\xe3\\xbb\\x15\\x71\\xd0\\x0e\\xa9\\xb9\\xe5\\xa0\\x05\\x33\\x64\\xa0\\x62\\x4c\\xa0\\xf4\\xd9\\x96\\x03\\x52\\x44\\xa4\\x17\\x43\\x7d\\xce\\x78\\x3b\\x6a\\x63\\x57\\x87\\x6b\\xe1\\x5f\\xab\\x1e\\x83\\x9b\\xa9\\x47\\x6c\\xd9\\x20\\x26\\xeb\\x55\\x2e\\xc4\\x99\\x47\\xf7\\x5a\\x56\\x1e\\x1d\\x7a\\x8b\\xf4\\xe1\\x22\\x27\\xdb\\xb7\\x8b\\x9e\\xa3\\x8d\\xdc\\x7d\\xdb\\x64\\x1e\\x3b\\xcd\\xd9\\x20\\x74\\xcc\\xa2\\x3d\\x06\\xe1\\x9d\\x28\\x14\\xf8\\x05\\x1e\\x37\\xd4\\xb3\\x6f\\x3a\\x30\\x0f\\x86\\x2c\\x03\\x27\\x30\\x5e\\x05\\x79\\xaf\\xb9\\x67\\xfe\\x0b\\x6c\\x78\\xa8\\x7b\\x7d\\x09\\x6e\\x52\\x85\\xbd\\xce\\xd8\\xc6\\x81\\x78\\x49\\xb4\\xde\\x1e\\x5b\\x6a\\x46\\xa9\\x23\\xf6\\x71\\xbe\\x69\\x22\\x13\\x89\\xee\\x82\\x52\\x18\\xd3\\xc5\\x6d\\x06\\x6b\\xa8\\xe1\\xe6\\xee\\x49\\x47\\xfb\\x2e\\xca\\x8a\\xe4\\x62\\x7a\\x4f\\x62\\x15\\x27\\xf4\\xe1\\xe9\\x65\\x2b\\x05\\x78\\x5b\\xd9\\xf5\\xdc\\xcb\\x30\\xd8\\xbd\\x7f\\x90\\x7a\\x55\\x11\\xc4\\xf0\\x5e\\xdf\\x6c\\x9d\\x4a\\x7f\\x8b\\x08\\x1d\\x13\\xa4\\xaf\\x7c\\xd2\\x93\\xd5\\xd9\\x39\\xd8\\x83\\xc1\\xb6\\x51\\xf4\\xd6\\x17\\x84\\xf7\\x4c\\x26\\x9c\\x2e\\x28\\xf2\\x8c\\xff\\x88\\x75\\x05\\xcf\\xe2\\x29\\x30\\xd9\\x10\\x09\\xf8\\x60\\x71\\xb8\\x50\\x99\\x0e\\x53\\x41\\xfd\\x43\\x53\\x7d\\xa3\\x83\\x93\\x03\\xe3\\x92\\x2f\\x1c\\xff\\x89\\x99\\x7f\\xc3\\xc6\\x4d\\xd7\\x50\\x5f\\x5d\\xe1\\xe1\\x6e\\x6b\\x75\\x77\\x7b\\x31\\xff\\xa7\\x30\\x41\\x5f\\x49\\x98\\xa5\\xbd\\xc1\\xdf\\xe9\\x95\\x24\\x04\\xf9\\x9f\\x68\\x3a\\x02\\x58\\x1a\\x92\\xc3\\xa9\\xde\\x91\\xfe\\x31\\xb1\\x2e\\x55\\x7d\\x63\\x03\\x13\\xa3\\xe3\\xdc\\x97\\x8e\\x5a\\x07\\x3b\\x87\\xdb\\x99\\x8d\\x44\\x8d\\x95\\xd3\\xaf\\x43\\xc4\\x85\\xeb\\x86\\xd6\\xaf\\x4a\\x32\\x66\\x96\\x86\\xda\\xfa\\x3a\\xc7\\xff\\x54\\x73\\x73\\x77\\x0b\\xb6\\x45\\xea\\x29\\x46\\xc3\\x25\\xff\\x6f\\x12\\x3e\\x58\\x1a\\x9c\\x27\\x2e\\x19\\x15\\x67\\x3f\\xe6\\xef\\x20\\x3b\\x33\\x9c\\x2c\\xf8\\x95\\x82\\x94\\x35\\x30\\xe6\\x92\\xe4\\x9b\\xa3\\xcf\\xa8\\x5e\\xbd\\x9a\\x9e\\x7f\\x2b\\x52\\x50\\x79\\xed\\x5b\\xa1\\x88\\xb0\\x5b\\x00\\xee\\xe2\\xd7\\x11\\xbb\\xfe\\x16\\x93\\xd5\\xf4\\x2b\\x1b\\x4a\\xc6\\x6a\\xcc\\x9d\\xc4\\x37\\xdf\\x26\\x70\\xde\\x77\\x1f\\x9a\\x61\\xff\\x4f\\x37\\x7e\\xd4\\x97\\x66\\x18\\x99\\x63\\x07\\x91\\x26\\x14\\xe2\\x93\\x0c\\xd5\\xb5\\xec\\xc6\\x20\\x2e\\xbc\\xa3\\xbc\\x2c\\x4e\\x4c\\xd0\\x6d\\x3a\\x2e\\xa5\\xe5\\xab\\xa3\\xf1\\x8f\\xb2\\x79\\x13\\xb4\\x6f\\x5c\\x6d\\xb4\\x36\\x67\\x12\\x29\\xbb\\x82\\x88\\xa0\\xd2\\x56\\x81\\x0f\\x57\\xd7\\x2f\\xac\\x16\\x72\\xa5\\xfb\\x75\\x2b\\x2d\\x67\\x19\\x32\\x9e\\xeb\\xad\\xb1\\xb7\\xdf\\x57\\x87\\x63\\x37\\xc5\\x9a\\x61\\x7f\\x17\\x9b\\x24\\x0a\\x85\\x0a\\x1a\\x9b\\xd3\\x85\\x32\\xf1\\xa6\\x4c\\x31\\xf7\\x1a\\x3f\\x08\\xcd\\x4e\\x43\\xbd\\x88\\x6c\\x36\\xf7\\x44\\xe0\\x0f\\x1f\\x75\\x28\\x1b\\x4a\\xb5\\xb7\\xa9\\x6f\\xf7\\xaf\\x1a\\x8e\\xaa\\xb2\\xe7\\x73\\x78\\x3d\\x22\\x6c\\x06\\x86\\x95\\xbd\\xff\\x3d\\xf9\\x3f\\xdc\\xd5\\x4c\\x0d\\xfe\\x1b\\x27\\x38\\x52\\x4a\\xc1\\xfe\\x49\\x3f\\xcc\\x76\\x94\\x2d\\xa6\\x0f\\x29\\x0b\\x41\\x92\\x06\\xe1\\xb8\\xc3\\x57\\x0b\\x88\\xf1\\x33\\xda\\xf9\\xc6\\x0d\\x3d\\xe5\\x07\\x68\\x05\\x30\\xfa\\xd3\\xed\\xe0\\xc3\\xf9\\x93\\xf4\\x2a\\xec\\xe0\\xdc\\x10\\x3c\\x1b\\xcd\\x70\\xdd\\x2a\\x6b\\x98\\x97\\x25\\xa4\\x9d\\xa6\\x4c\\x01\\xb1\\x79\\x8b\\xd9\\x7f\\x59\\x6f\\x17\\x9b\\xc0\\x48\\xa7\\xc2\\xbd\\x39\\xbc\\x84\\x79\\x17\\xff\\x45\\x93\\xeb\\xaa\\xb5\\xa7\\xa0\\x0b\\xfe\\x21\\xdb\\xe6\\x9c\\x0c\\x2f\\x47\\x39\\xe7\\x83\\xee\\x47\\xd4\\x34\\x13\\x80\\x47\\xd5\\x1b\\xc1\\x9b\\x1f\\x65\\xde\\x6c\\x20\\x26\\xc3\\x9c\\xc7\\xd5\\x17\\x80\\x91\\x4f\\x3f\\x09\\xee\\x21\\xb7\\x32\\x73\\x68\\x60\\xf7\\x58\\xe7\\x22\\x4f\\x25\\xf7\\x4e\\x82\\x1c\\x72\\x79\\xb8\\xfe\\xa5\\x90\\x2e\\x8b\\x81\\x87\\xc5\\xea\\xa1\\x33\\xca\\x0b\\x2b\\xed\\xa5\\x75\\xff\\x2c\\xee\\xf8\\x22\\x42\\x39\\x38\\x2e\\x6e\\x3c\\xce\\x3d\\xcf\\x39\\x59\\xb8\\x90\\x38\\x29\\x2e\\x24\\x37\\x94\\x20\\xd7\\xf6\\x0b\\x32\\xea\\x24\\x6b\\x1f\\x39\\x4a\\x75\\xc5\\xcd\\x02\\x38\\xfc\\xba\\x1a\\x47\\x62\\x3c\\x2b\\xb5\\x20\\x76\\x2c\\x32\\xcd\\x9d\\x3f\\x73\\x12\\xd9\\xd4\\x2e\\xd5\\xb6\\xb2\\x71\\xa2\\x68\\x46\\x6c\\x66\\x45\\xf5\\x25\\x77\\xa7\\xa6\\x2a\\xde\\xf7\\xf3\\x49\\x56\\xaa\\x98\\x16\\xa9\\xb3\\x8c\\x4d\\x65\\x37\\x32\\xbf\\xee\\x2f\\xbc\\xb9\\xf6\\xb9\\x64\\x1e\\x31\\x91\\x6d\\x6a\\x64\\xcc\\x4a\\x78\\x75\\x68\\x8d\\x57\\x35\\x80\\x68\\xba\\xd4\\xe1\\x1b\\xbb\\xc7\\xe9\\xdf\\x36\\x97\\x63\\x84\\x5a\\xbe\\xba\\x96\\x5c\\x02\\x8d\\x55\\x75\\x62\\x14\\xfe\\xbd\\xbc\\x3b\\x61\\x73\\x13\\x2e\\x98\\x6a\\x05\\x4e\\xc3\\x99\\x5b\\x03\\x0a\\xce\\x93\\x67\\x2e\\x0b\\x7f\\x99\\xf9\\x70\\xd7\\xfc\\xf3\\xc4\\x43\\x5c\\x27\\x2f\\xf3\\x28\\xe4\\x76\\xc7\\xa3\\x61\\x87\\xed\\xd8\\x59\\x3f\\xee\\x8b\\xc9\\xd5\\xe4\\x0b\\x86\\xd5\\xdc\\xb7\\x6c\\x0b\\x75\\x8d\\x55\\x8d\\x34\\x9c\\x81\\x78\\x98\\xab\\x00\\xfe\\xd4\\xdc\\x06\\xbf\\xe3\\xbf\\x62\\x55\\x09\\xb1\\x18\\x17\\xf4\\x2e\\x57\\xae\\xb1\\x69\\xaf\\x5f\\x95\\x1b\\x7c\\x47\\x28\\x9b\\x75\\xfe\\x8e\\x86\\x67\\xbb\\x94\\x30\\x5d\\x98\\xdd\\x4c\\x65\\x97\\x62\\xe4\\x18\\x81\\x43\\xe1\\xac\\xab\\x52\\x0b\\x03\\x3c\\x03\\x2f\\xc8\\x53\\x39\\xb7\\x60\\x02\\x9f\\x4f\\xa4\\x63\\x2e\\xa9\\x83\\x5f\\xd6\\xf3\\xda\\xce\\x15\\x97\\x3f\\x5d\\xa0\\x10\\x38\\xa1\\xb3\\x01\\x7d\\xc5\\x30\\x1f\\xfa\\x2a\\xe5\\xae\\xd4\\x74\\xcb\\xe1\\x3f\\x22\\x7d\\xc6\\x24\\xa7\\xa8\\xac\\xcd\\x6a\\xbd\\x47\\x6d\\xcc\\x36\\x1e\\xa9\\xac\\xcd\\x7a\\xb1\\xe4\\x0f\\x61\\x36\\xe9\\x52\\xea\\xbc\\x6a\\x0a\\x0b\\x76\\xd5\\xf6\\xb8\\xf2\\x25\\xf9\\xc5\\xcb\\x84\\x62\\x3d\\xc4\\x37\\x38\\x91\\x86\\xa6\\x38\\xe8\\xb1\\x84\\xc3\\xd6\\x52\\x4a\\x6d\\xa4\\x76\\x53\\x72\\x31\\xc9\\x37\\xe6\\x72\\xf1\\xce\\xe8\\xe6\\xe8\\x1f\\x1a\\x48\\x96\\x44\\x99\\x5e\\x46\\x90\\x4f\\x89\\x7e\\xf4\\x5d\\x29\\x60\\x0f\\x41\\x25\\xfa\\xb2\\xbd\\x8c\\x8e\\x4d\\x91\\x50\\xee\\xae\\xe6\\x82\\x87\\xb7\\x82\\xcd\\x3c\\x71\\xf8\\x49\\x5c\\x55\\x40\\x52\\x2a\\x71\\x34\\xe4\\x7a\\x22\\xf2\\xe9\\x51\\x9e\\xb1\\xd8\\xe7\\x38\\x74\\x4e\\x3a\\x9b\\x80\\xa8\\x85\\x87\\x09\\x1a\\xac\\xd1\\xd7\\x6f\\x07\\xcb\\x40\\xe7\\x50\\x6c\\xe7\\x80\\xda\\xe7\\xb9\\x0a\\x9f\\x7f\\xe9\\x64\\x19\\x61\\xe8\\x7a\\x78\\xb3\\xe5\\xa7\\x0a\\xf9\\xcf\\xbf\\xa8\\xc3\\xfd\\x50\\x72\\xf0\\xc0\\xe9\\x2c\\xbe\\xd3\\x2b\\x32\\x3d\\xa6\\xb9\\x1d\\xfa\\xc7\\xd8\\x17\\x1b\\x86\\x5f\\x1b\\xf9\\x3e\\x57\\x13\\xaf\\x1b\\xc8\\x69\\x31\\x7e\\xa7\\x70\\x8f\\x50\\xc8\\xea\\xb9\\x22\\x3a\\x7a\\x23\\x4e\\x41\\xb2\\x92\\xad\\xd7\\x92\\xea\\x42\\x4f\\xeb\\x57\\x97\\x8a\\xb6\\x83\\x90\\xf8\\x74\\xd8\\xa5\\x55\\x86\\x06\\xfd\\x8d\\x0d\\x9f\\x11\\xd9\\x0b\\xea\\x16\\x66\\x94\\x2e\\x67\\xc5\\xaa\\x57\\x2f\\x1b\\x31\\xb6\\x97\\x9d\\xf5\\x55\\xc9\\x9c\\x0e\\x1d\\x27\\xa5\\xb5\\x7c\\xdb\\xd3\\x13\\x59\\xee\\x32\\x72\\x8b\\x48\\x5b\\x37\\x31\\x11\\x0d\\xdb\\x4f\\xd3\\xf9\\xc1\\x7b\\xf4\\x1c\\x7f\\x34\\xf5\\x7f\\x97\\xb9\\xf6\\x2b\\xb0\\xcb\\x57\\x24\\x38\\x2b\\xa8\\x1f\\xda\\x60\\xb6\\xcf\\x30\\xd6\\x79\\xdc\\x5d\\x97\\x47\\x57\\x55\\x69\\x51\\x76\\x51\\x5c\\x20\\xd9\\xc6\\x35\\x8e\\xb1\\xe2\\xdb\\xb5\\x40\\x9d\\x3f\\x6a\\x6d\\x41\\x9f\\x6e\\x50\\xcd\\x8f\\x69\\x91\\x54\\xd5\\x67\\xe8\\xd4\\xfd\\xd6\\xbb\\x0c\\x5e\\xe9\\x29\\xd7\\xc9\\xa1\\xf3\\xbc\\x98\\x7c\\x10\\xfa\\x5d\\x93\\x3e\\x17\\x67\\x92\\xa9\\x89\\xcf\\xa0\\xde\\xc2\\x57\\x9c\\x49\\x16\\xa0\\xc9\\x56\\x60\\x54\\x89\\x5d\\xa3\\x01\\x35\\x00\\xba\\xfe\\xe0\\xfa\\x74\\xfd\\x88\\x96\\x84\\x15\\x23\\xb3\\xf9\\xca\\xe7\\x38\\x37\\x1f\\x9e\\xf7\\x6d\\x4b\\x13\\xb2\\xf1\\x10\\xfc\\xa4\\x63\\x81\\x5a\\x2c\\x63\\x5e\\xd7\\x2d\\xa4\\x2c\\xbb\\x97\\x21\\x82\\x85\\x21\\x5b\\xdf\\x80\\x5f\\xba\\xc5\\xc8\\xdc\\x92\\x6a\\xea\\x7a\\xd4\\xfb\\x33\\xaf\\x6e\\x4e\\x38\\x14\\x6c\\x37\\x2a\\xba\\x1f\\x8b\\x4f\\xf8\\x03\\x11\\xb9\\xaa\\xd3\\x9d\\xbe\\x59\\xeb\\x76\\xaf\\xd1\\xcb\\x5e\\xb5\\xdd\\x78\\x7f\\xc7\\x21\\x99\\x58\\x3b\\x72\\x8e\\x8a\\x0d\\x36\\x31\\xf9\\x82\\x21\\xed\\x4c\\xad\\xf1\\x4f\\x34\\x5f\\xff\\x10\\x3a\\x98\\x7b\\xef\\x27\\x4a\\x7a\\xc2\\x7d\\x37\\xc8\\x63\\x73\\x9c\\xef\\x32\\x28\\xb3\\x9f\\xff\\x13\\x8d\\x37\\xab\\x73\\x25\\x09\\x36\\xbe\\x9e\\xbe\\xed\\xb0\\x6b\\xbf\\x2b\\xa9\\xa4\\xe8\\xc0\\x42\\xda\\xd5\\x22\\xcf\\x37\\x2a\\x04\\xc4\\x72\\x8b\\x79\\xcb\\x76\\x8b\\x78\\x4b\\xc7\\x7d\\x6f\\xce\\x4f\\xf6\\xca\\x2e\\x44\\x1a\\x13\\x66\\xb4\\x47\\xb3\\xc7\\xb5\\x17\\xc4\\x4d\\xf5\\x0a\\xc2\\xe3\\xc6\\x47\\x0b\\x05\\xa1\\xdf\\x52\\xc4\\xdf\\x47\\xc3\\x82\\x2c\\xdf\\xa3\\x4f\\x02\\x49\\x60\\x41\\x64\\xf6\\xb2\\x85\\x1f\\x39\\x21\\x20\\x96\\xba\\x8c\\x2f\\xd9\\x77\\xd1\\xf7\\xdf\\x59\\x68\\xde\\xc7\\x25\\x16\\xcf\\x53\\x50\\x37\\x98\\x24\\xe3\\xa8\\x30\\x97\\x39\\x2a\\xf0\\x6b\\xa8\\xc9\\x07\\xef\\x43\\x43\\x34\\xfa\\x0c\\x5c\\x1e\\xbe\\xc4\\x92\\xe5\\xba\\x97\\xcf\\x2c\\xbf\\x41\\x9a\\xde\\x72\\x5f\\x3d\\xd0\\x1d\\xcd\\xd8\\xf4\\x21\\x79\\x80\\x34\\x1b\\x81\\x10\\x49\\x94\\xe8\\x64\\xeb\\x2f\\x06\\x7a\\x2f\\x39\\xf6\\xe3\\xe2\\x5f\\xd2\\x8a\\x61\\x59\\xf7\\x46\\x78\\xe0\\x1e\\xf7\\xe5\\x49\\xcc\\x62\\xd0\\xfb\\x7e\\x5b\\x8a\\x8e\\x54\\xd2\\xb5\\xf8\\x8b\\xdc\\x84\\xd7\\x73\\xc8\\xa5\\x11\\xa2\\xe7\\xf1\\xce\\x11\\xbc\\x99\\xa1\\xe9\\x2e\\xbc\\x9a\\xa1\\xa9\\xc1\\xe1\\x60\\x26\\xaa\\x9e\\x0b\\xe7\\x7f\\xe0\\x01\\xb4\\xc3\\x51\\xd5\\xed\\x7c\\xb9\\x39\\x1c\\xfe\\x1f\\x32\\x30\\x81\\xa0\\x89\\xfe\\xb1\\x48\\x2e\\x21\\x4e\\xf9\\x8c\\xf5\\x42\\xc2\\xa3\\x7e\\xfc\\xb7\\xcd\\xff\\xe8\\x3a\\xd3\\x96\\xd7\\xf3\\x9d\\x91\\xd1\\xf1\\xce\\xc1\\xde\\x11\\xbc\\xe4\\xff\\x9d\\xc3\\xc7\\xfa\\xe2\\xbf\\x10\\xd9\\x95\\x9d\\xa0\\xaf\\xec\\x74\\x03\\xef\\x8e\\xc7\\x46\\x67\\x07\\x26\\x46\\x66\\xd2\\x68\\x87\\xa7\\x07\\x27\\xe3\\xd8\\x0a\\x7a\\xbd\\xd4\\xfd\\x8f\\x13\\x41\\x7c\\x2c\\x0d\\xb5\\x77\\x7b\\x93\\xa1\\x4c\\x42\\xff\\xc3\\x16\\xf0\\x86\\xd2\\xf4\\x7f\\x3b\\x3f\\x9e\\x3f\\x29\\x54\\xa0\\x17\\xf4\\x5c\\x69\\x36\\xc9\\xb7\\xe1\\xa8\\xca\\x57\\xdb\\x7d\\x57\\x15\\xf4\\x1a\\xe0\\xe1\\x1e\\x00\\xdf\\x20\\xaf\\x8b\\xb9\\x5b\\x13\\xc7\\xdc\\x68\\x65\\xed\\x2a\\xf5\\x0f\\xa9\\xb6\\xb9\\xf7\\xd7\\x38\\x06\\x35\\xd4\\x39\\xda\\x83\\x8f\\x30\\x63\\x40\\x84\\xc0\\xc9\\x7d\\x3c\\xe6\\xea\\x87\\xf4\\x62\\xe5\\x95\\x4f\\x48\\xf9\\xf6\\x4d\\x10\\xc0\\x0d\\xc2\\xe8\\x66\\xab\\xcf\\x8e\\xfc\\x87\\x21\\x05\\x85\\x91\\xde\\x01\\xcc\\x50\\x36\\x21\\x12\\x21\\xd2\\x28\\x34\\x01\\xde\\x4a\\x56\\x33\\x6b\\x2b\\xc1\\x78\\x03\\xb3\\xb9\\xff\\x0a\\x8a\\x76\\x77\\x94\\x2a\\xa1\\x25\\x21\\xf9\\x05\\x3d\\xe1\\x1f\\x08\\x21\\x18\\x1c\\x4e\\x28\\x4e\\x0d\\xd5\\x5a\\x40\\xea\\xbc\\xee\\x2e\\x4c\\x37\\x54\\x16\\xac\\x3a\\x11\\xae\\x3a\\x2e\\xb7\\x3f\\xb9\\x97\\xbc\\x27\\x1e\\x2e\\x2e\\xa1\\x1f\\xda\\xcf\\xfe\\x89\\x9d\\x7a\\xc5\\xe0\\x3a\\x0a\\x66\\xc3\\x40\\x31\\x49\\xd0\\xaf\\xa3\\xef\\xa9\\xd1\\x96\\xa4\\x5b\\x8c\\x31\\x30\\x30\\xbf\\xb0\\x43\\x63\\x0e\\xe2\\xe0\\xe2\\x12\\xa4\\x48\\x01\\xe9\\x36\\x03\\x79\\x7d\\x64\\x43\\x53\\xfd\\x05\\x4d\\x81\\xb7\\xbe\\xe7\\x30\\x29\\x5b\\xd1\\xb2\\xc2\\x97\\x95\\xb4\\x8c\\x80\\xe0\\x2a\\xda\\x10\\x00\\x00\\xf0\\x7f\\x05\\x00\\x00\\xff\\xff\\xd1\\x91\\x8a\\x14\\x60\\xfc\\x00\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.woff\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff2 = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x00\\x12\\x40\\xed\\xbf\\x77\\x4f\\x46\\x32\\x00\\x01\\x00\\x00\\x00\\x00\\xc8\\x0c\\x00\\x10\\x00\\x00\\x00\\x01\\xc0\\x40\\x00\\x00\\xc7\\xac\\x00\\x02\\x00\\x41\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x40\\x1c\\x84\\x48\\x06\\x60\\x00\\x90\\x6a\\x08\\x81\\x1c\\x09\\x97\\x17\\x11\\x08\\x0a\\x85\\xce\\x3c\\x85\\x84\\x09\\x01\\x36\\x02\\x24\\x03\\xa0\\x22\\x0b\\x90\\x24\\x00\\x04\\x20\\x05\\x86\\x1e\\x07\\xc7\\x51\\x0c\\x81\\x2e\\x5b\\xce\\x91\\x91\\x01\\xad\\x0d\\x3d\\xc9\\x0c\\xe8\\xa1\\xed\\xdb\\xaa\\x9e\\x19\\xc6\\x7f\\xb3\\x1d\\x60\\x63\\xd3\\x68\\xee\\xf5\\x66\\x45\\x4c\\x46\\xa2\\x5f\\xac\\xc1\\x9b\\x2e\\x2d\\xb9\\x6d\\x04\\xd6\\xdd\\x0d\\xf6\\x5e\\x94\\xfd\\xff\\xff\\xff\\xff\\x9a\\x64\\x21\\x63\\xfb\\x7b\\xc6\\xfd\\x7e\\x63\\x03\\x42\\x50\\x21\\x49\\x49\\xab\\x4a\\x68\\x4a\\x8c\\xe6\\x14\\xd2\\x24\\xe5\\xd8\\xb1\\x78\\x82\\x9c\\x6a\\xef\\x30\\x8c\\x06\\x4e\\x19\\xbb\\x5e\\x62\\x35\\x8e\\xf6\\x46\\x77\\x33\\x26\\x82\\x29\\x93\\x7e\\x0a\\x34\\xab\\x3d\\x83\\x26\\xd3\\xdc\\xc9\\x46\\x8b\\x7e\\xd6\\xa9\\x2e\\x6c\\x7c\\xe9\\x70\\x64\\xe6\\x85\\x38\\x8e\\x67\\xbf\\x3a\\x98\\xc4\\xe2\\x5e\\x56\\x97\\x94\\xb7\\xed\\xfd\\x96\\xd3\\x70\\x3d\\xa3\\xf9\\x50\\x47\\x99\\x28\\xe5\\x12\\x23\\xe1\\x2d\\x4f\\x13\\x85\\x3b\\x50\\x37\\x24\\x12\\x49\\xa8\\xf2\\x21\\x55\\xf7\\x30\\xa5\\x62\\x31\\x34\\xe5\\x4e\\x88\\x54\\x49\\xa0\\x44\\x33\\x31\\x2b\\x66\\xea\\x83\\x68\\x98\\x99\\xe2\\x51\\xba\\xcf\\x2c\\x1b\\x3c\\x73\\x7c\\x95\\x12\\xaf\\xf8\\xa5\\xc6\\xaa\\x1a\\xd5\\xad\\x01\\xf5\\xbb\\x7a\\x93\\x22\\x43\\x85\\xda\\xbb\\xc4\\x49\\x6e\\xf2\\xd2\\xbf\\x55\\x52\\xa5\\xfe\\x63\\x2a\\x77\\xf5\\x54\\x8f\\x87\\xf2\\x7c\\xc7\\x15\\xce\\x01\\xd7\\x76\\x2c\\x60\\x01\\x2d\\x7c\\x29\\xe8\\x83\\x3c\\xdb\\xe3\\xea\\xfd\\x79\\xc4\\x1d\\x2c\\x0a\\x65\\xc5\\x43\\xfa\\x8e\\x48\\xa1\\x4c\\xca\\x6a\\x47\\xc0\\x0c\\xa7\\x26\\x26\\x9d\\xc6\\xd6\\xcd\\x38\\x33\\xe8\\x8e\\x1f\\xc8\\xdf\\x6f\\x32\\xd0\\x92\\x1f\\xc3\\x63\\x93\\x59\\x2c\\xbd\\xe4\\x77\\x96\\xbd\\x35\\xde\\x60\\x57\\x39\\x2c\\xf6\\x3a\\x8d\\x45\\xba\\x16\\xff\\xe9\\x03\\xb5\\xff\\x16\\x5b\\xdb\\x1e\\x20\\x1e\\xdb\\x41\\x09\\xd5\\x64\\xc8\\x9e\\x2b\\xf2\\x98\\xe6\\x23\\xcf\\x3f\\x6f\\xf7\\xd1\\xaf\\x7d\\xbb\\xba\\xde\\x40\\x7c\\x3d\\x36\\xb2\\x09\\xc1\\x10\\x0a\\x32\\x19\\x1f\\x60\\xd5\\xd9\\x5a\\x23\\xf7\\xf6\\x19\\xa9\\x44\\x32\\x2a\\x26\\x0f\\xb2\\x68\\x3b\\xbe\\xd3\\x24\\x7b\\x93\\x02\\x80\\x90\\x9d\\xfa\\x3a\\xfc\\x79\\x7e\\x6e\\x7f\\xee\\x5b\\xb0\\xd1\\x16\\x35\\x1c\\x73\\x4a\\xa6\\x30\\xf6\\x95\\x91\\x22\\x21\\x7c\\x06\\x12\\x35\\x98\\x32\\xb2\\x6c\\xd2\\x1c\\x06\\xca\\x00\\xb3\\x71\\x66\\x13\\xf5\\xd0\\x26\\x07\\x6d\\x6d\\xa4\\x15\\xfb\\xc9\\xbf\\x72\\x5e\\xd2\\xcd\\x04\\xe5\\x41\\xdc\\x3d\\x48\\x83\\x08\\xa5\\xbb\\xc3\\x74\\x55\\xca\\x73\\xe4\\xbf\\xc6\\x20\\xc2\\x00\\x6c\\x53\\x30\\x30\\x66\\x93\\x21\\x21\\x88\\x81\\xa0\\x20\\x16\\xb4\\x4a\\x08\\x22\\x29\\x02\\x22\\x60\\xf7\\x74\\x6e\\x3a\\x17\\xae\\x74\\xe1\\x22\\x5d\\xba\\x70\\x9b\\xcb\\xfc\\xa2\\xbe\\x7c\\xed\\x9b\\xd3\\x2f\\xea\\xcb\\xef\\xb1\\x6f\\xf4\\x3c\\x6e\\xb0\\x77\\x63\\x03\\x2c\\xcd\\x18\\x2d\\x2d\\x59\\x54\\xbf\\xf9\\xad\\x81\\x3f\\xb9\\x9d\\x24\\x05\\x02\\xb6\\x28\\x1c\\xb3\\xa5\\x94\\x4f\\xb8\\x2a\\xf4\\xf4\\x7c\\xab\\x80\\xff\\xbf\\xb5\\xca\\xd6\\x66\\x71\\x79\\x3b\\x5b\\x6a\\x98\\x7b\\x99\\x26\\x48\\xb5\\xeb\\x72\\x54\\x4e\\xa0\\x72\\x88\\x33\\xe2\\x98\\x00\\x58\\x5c\\xcb\\xd6\\xaa\\x03\\xa4\\x27\\x80\\x48\\xb1\\x59\\x01\\x68\\xc4\\xa0\\x90\\xc1\\x1d\\x3b\\xa6\\x9a\\xa2\\x09\\x42\\xd4\\x49\\x51\\xa8\\x72\\x15\\x42\\xb9\\x57\\x71\\x2e\\x9d\\xda\\xa5\\x3d\\x0b\\x45\\x40\\x39\\x10\\x00\\x30\\x00\\x73\\xab\\x61\\xa2\\x87\\x45\\xb4\\xd4\\x46\\x2d\\x58\\x44\\xb3\\x35\\xac\\x18\\x1b\\x1b\\xb1\\x41\\x8f\\xde\\x06\\x8c\\x88\\x12\\x5a\\x4a\\x05\\x03\\x05\\xac\\xc0\\x8a\\xbb\\xd3\\x8b\\xd6\\x3e\\xff\\xbc\\xf0\\xfe\\xdf\\x8b\\x9c\\xb8\\xe6\\x8d\\x07\\x68\\x55\\x40\\x43\\xfa\\xca\\x5c\\xd5\\xd0\\xba\\x9a\\x0b\\x39\\x41\\x5c\\xc1\\xa1\\x7e\\xfe\\x2c\\x57\\x80\\x40\\x08\\x14\\x80\\x00\\xfc\\x43\\x87\\xec\\x5f\\xf7\\xde\\xbf\\xc6\\xf2\\x6d\\x59\\xa0\\x9b\\xe3\\xc4\\x12\\x0d\\x2c\\xa2\\x30\\x0b\\x24\\xc3\\xf6\\xbc\\x39\\xad\\x97\\xec\\x90\\xed\\x24\\x96\\x64\\xcb\\x84\\x92\\x4c\\x01\\x2c\\xa0\\x06\\x70\\x09\\xbb\\x1f\\x88\\xae\\x7c\\xbb\\xb7\\x2f\\x9b\\xe9\\xfd\\xf8\\xe1\\xff\\x99\\xad\\xd7\\xca\\x94\\x62\\x44\\x2e\\xff\\x45\\x8c\\x89\\xd9\\xc4\\x58\\x8b\\x0a\\x44\\x61\\xbf\\x14\\x75\\x8a\\x7a\\xba\\xea\\x30\\x71\\xf8\\x7f\\x4d\\xfb\\xdd\\xf3\\x9a\\x9d\\xcc\\xe4\\x97\\x56\\x69\\x7d\\x87\\xd8\\x5a\\x62\\x0d\\xfe\\xff\\xa7\\xcd\\xba\\xf7\\xbe\\xf0\\x25\\x01\\x76\\xae\\x92\\x03\\x85\\x9d\\x71\\xea\\x14\\x09\\x13\\xcc\\x14\\x56\\xa7\\xc0\\x11\\x45\\x07\\x59\\x1d\\x66\\xe5\\xa3\\x53\\xac\\x37\\xb3\\x9c\\xff\\xb3\\xb3\\xff\\xdf\\x75\\x33\\x65\\x00\\xf5\\x57\\xb5\\xd7\\xb9\\x04\\x3b\\xa8\\x29\\x02\\xee\\x06\\x5e\\x4f\\xc0\\x03\\xb8\\x53\\xdc\\xa5\\x20\\xf8\\x1d\\x19\\xf3\\x4c\\x33\\xe0\\x79\\xd2\\x59\\xf5\\x7e\\xb1\\x64\\x94\\x81\\xd4\\x6c\\x6e\\x44\\x83\\x06\\x7b\\x66\\x75\\x44\\x75\\x08\\x21\\x60\\x90\\x6e\\x16\\x1d\\x04\\xc9\\x42\\x81\\x6b\\x55\\x57\\xb2\\x44\\xd9\\x23\\x1c\\xc0\\x1c\\x91\\x7c\\xdf\\xc2\\x99\\x5f\\xc6\\x56\\x35\\x7b\\x03\\xe4\\x70\\x72\\xc6\\x69\\x5f\\xf9\\x91\\x71\\x95\\xae\\xaa\\x4a\\x06\\x50\\x1a\\xa9\\x19\\xce\\x18\\xfb\\xda\\xb8\\xc7\\xd7\\x7f\\xa5\\x12\\x2d\\xd1\\xd0\\x1e\\x1a\\xc6\\xc4\\x1c\\xb3\\x0b\\x52\\x7e\\xa4\\xbb\\x9f\\xf4\\x1d\\x6b\\x77\\x7b\\x9d\\xf1\\x34\\xa0\\xe2\\xf6\\x0e\\x25\\x0c\\x92\\xf0\\xf7\\x6b\\x0d\\x2a\\x94\\x26\\x3e\\x9d\\xe9\\x84\\x84\\xb7\\x4c\\x26\\x8b\\xed\\x9e\\xf9\\xfa\\xb9\\xfe\\x5d\\x7f\\x72\\x92\\xf0\\x8b\\x7b\\xc9\\xd7\\x76\\xf7\\x97\\x66\\x7e\\x74\\x29\\x1d\\x25\\x80\\x19\\x0f\\x08\\x55\\x4f\\x02\\x04\\x08\\xe4\\x40\\x00\\x41\\x0c\\xd8\\xf7\\xdb\\x9a\\x4e\\x0e\\x84\\x04\\xa1\\x75\\xf5\\x7d\\xf2\\x05\\xb1\\x76\\x77\\xe8\\x5c\\x53\\xdd\\x36\\xcb\\x30\\x45\\xb8\\x87\\xa3\\x45\\xca\\x81\\xba\\x85\\x1e\\x5a\\xa4\\xc4\\xb6\\x4e\\xab\\xa4\\x84\\xc0\\x10\\x98\\xf7\\xae\\xa9\\xff\\xa2\\x7c\\xfe\\xf6\\xd4\\x3b\\xc4\\x1b\\x7c\\x0b\\x38\\x32\\x30\\xb3\\x7b\\xff\\x53\\x95\\xfa\\x5b\\x77\\xef\\xc9\\x1a\\x1d\\x6b\\xc0\\x00\\x96\\xc0\\x42\\xe6\\xd3\\x3f\\x2b\\xf9\\x91\\x2e\\x53\\xca\\x92\\x95\\xb1\\xd5\\xed\\xa4\\x6b\\xa3\\x94\\x2d\\x54\\xc6\\xaa\\x8e\\x31\\x60\\x11\\x2d\\x04\\x6d\\x25\\x90\\xc1\\xfc\\xeb\\x34\\xd7\\xff\\x15\\x52\\xae\\x64\\xa7\\xe4\\xbb\\xa2\\x37\\xdf\\x4d\\x85\\x61\\xe1\\xb7\\xf7\\x75\\x58\\xbb\\x0c\\x92\\x6c\\xf7\\x59\\x0a\\xc9\\x0e\\xdb\\x85\\x20\\x58\\x87\\x52\\x09\\x70\\x98\\x70\\xec\\x7b\\x52\\x50\\xb2\\xd3\\x57\\xc9\\x49\\xf3\\x64\\x97\\xbe\\x8a\\x76\\x51\\x3a\\x74\\xae\\x84\\x34\\xdd\\xb0\\x15\\xb6\\xae\\x93\\x7d\\x53\\x01\\x87\\x71\\xa3\\x99\\xff\\xbe\\x54\\xad\\x6b\\x37\\x40\\x50\\xe4\\x44\\x7a\\x42\\x8a\\x9a\\xc3\\x8d\\x69\\x73\\x3e\\x5d\\xf8\\xdf\\x0f\\x8d\\xee\\xdf\\xc1\\x8d\\x06\\xc0\\x6d\\x04\\x4a\\x24\\x48\\x8d\\x00\\x92\\xb2\\x01\\x06\\x0d\\x29\\x99\\xee\\x6e\\x34\\x35\\xe8\\x06\\xe4\\x02\\x21\\xd9\\x45\\x52\\x1b\\x28\\x7b\\x76\\x4a\\xf2\\x26\\x4e\\x0c\\x20\\x28\\xd9\\x12\\x65\\x59\\x61\\x43\\xca\\xa7\\x10\\x1d\\x36\\x84\\x74\\xda\\xd3\\x69\\x6f\\x7b\\xdd\\xe3\\x6d\\x6b\\xce\\xc7\\xbd\\x5f\\x17\\x5e\\x9f\\x93\\xf4\\x37\\xb3\\x59\\xc1\\x34\\x95\\xe5\\x95\\x60\\x3c\\x97\\x81\\x4c\\xce\\xf8\\xae\\xa6\\x29\\xf5\\xcd\\x4a\\x2e\\x5d\\x6e\\x17\\xea\\x7a\\xe9\\x00\\x1b\\x1a\\x9a\\x41\\xe9\\x74\\x6e\\xbf\\x5a\\x17\\xb9\\xdc\\xd8\\x67\\xfd\\xa6\\xf5\\x73\\xab\\x29\\x4a\\x80\\xc2\\x7e\\x82\\x7e\\x8c\\x02\\x70\\x00\\x0a\\x6b\\x3c\\xfd\\xda\\xf3\\xcb\\xe2\\x1e\\x0d\\xba\\xd1\\xd0\\xc2\\x93\\x37\\x17\\x04\\x37\\x4e\\xfc\\x26\\xa5\\x0b\\xcf\\xd3\\x5a\\xaa\\x5f\\xc2\\x46\\xa6\\x65\\x79\\xc2\\x95\\xa5\\xcf\\xdf\\xde\\x84\\xe6\\x15\\x67\\xcb\\xc2\\x1c\\xb9\\x12\\xed\\x94\\x36\\x61\\x59\\x67\\x51\\xc8\\xfa\\xe5\\xde\\x66\\x19\\xb2\\xd7\\x8c\\x40\\x48\\x84\\xdf\\xc4\\xba\\x9f\\x72\\xa5\\x14\\xe1\\x28\\xcd\\x95\\xa6\\xf6\\x50\\x2f\\x4b\\x35\\x12\\x63\\x90\\x68\\x81\\x8d\\x29\\x76\\xa7\\xf5\\x97\\xef\\x00\\x02\\x81\\x14\\xb3\\x64\\x18\\x9b\\x8e\\xf5\\x7b\\xa9\\x8b\\x54\\x90\\x4c\\x1f\\x85\\x05\\x6e\\xd8\\x20\\xd4\\x1f\\x1b\\xb2\\xf0\\x38\\xdf\\xb4\\x4f\\xfe\\xed\\xce\\xc3\\x04\\x93\\x99\\x60\\x8c\\x7a\\x5c\\x5e\\xf0\\x82\\x10\\xfb\\xaf\\xef\\xf6\\xf5\\xf5\\x7d\\xe2\\xcc\\x7e\\xef\\x6c\\x45\\x23\\x4d\\x21\\x8d\\x88\\x48\\x90\\x10\\x82\\x04\\x11\\xf1\\x6d\\x1f\\x7f\\x6f\\x10\\x37\\xfb\\x5f\\x2a\\xf0\\x86\\x6c\\x3b\\x85\\xbb\\x1b\\x45\\x6a\\x4e\\x53\\x4f\\x1a\\x6f\\xe1\\x8b\\x6e\\xe6\\xca\\xc9\\x62\\x19\\x0e\\xc2\\xe4\\x98\\x24\\x5b\\x4a\\x7a\\xef\\x5a\\xc8\\x66\\x3d\\x3d\\x31\\xfe\\xdc\\x03\\xde\\x16\\xa8\\x38\\x96\\xec\\xce\\x1c\\x3d\\x3f\\xb7\\x8d\\xc1\\xfb\\x45\\x63\\x10\\xbb\\xd9\\x3b\\x57\\x38\\x0b\\x58\\x14\\x4d\\xaa\\x9f\\xcb\\x57\\xa1\\x2c\\x40\\x0b\\x25\\x34\\xf1\\x50\\x0a\\xf0\\x18\\x28\\xeb\\xb3\\x01\\xca\\x26\\x3c\\x06\\xca\\x9e\\xec\\x85\\xd2\\x8e\\x1a\\xf4\\xb5\\xce\\x7c\\xaa\\x99\\x41\\xbb\\xed\\xa1\\xcc\\x03\\x50\\x24\\x72\\x94\\xfc\\xee\\xb5\\xb9\\xf4\\xfc\\xa2\\x1a\\x00\\x85\\x3b\\xa3\\x17\\xae\\xff\\xe5\\xa7\\xf2\\x79\\x00\\x19\\x36\\x86\\x21\\x50\\x18\\x1c\\x81\\x44\\xa1\\x31\\x58\\x1c\\x9e\\x40\\xf4\\x40\\x22\\x53\\xa8\\x34\\x3a\\x83\\xc9\\x62\\xa3\\x17\\x8f\\x6f\\xaf\\x6b\\x73\\x5f\\xfe\\x9f\\x80\\xc2\\x91\\x68\\x2c\\x9e\\x48\\xa6\\xd2\\x99\\x6c\\x2e\\x5f\\x28\\x96\\xca\\x95\\x6a\\xad\\xde\\x68\\xb6\\xda\\x1d\\x8c\\xd1\\xa7\\x2e\\x10\\xc2\\xc3\\x00\\x5f\\x20\\x14\\x4b\\xa4\\x32\\x00\\x10\\x04\\x86\\xc0\\xe0\\x08\\x24\\x0a\\x9d\\x61\\x71\\x78\\x02\\x91\\x44\\xa6\\x50\\x69\\x74\\x06\\x93\\xc5\\xe6\\x70\\x79\\x7c\\x33\\xa1\\x48\\x2c\\x91\\xca\\xe4\\x0a\\x65\\x7b\\x7f\\xd5\\x5e\\x7b\\xe3\\xad\\x9c\\x5a\\x86\\x61\\xb2\\x34\\x60\\x03\\xbb\\x8a\\xa4\\xa3\\x64\\x60\\xb7\\x53\\x86\\xca\\x3e\\x7f\\xe4\\x29\\x87\\x3c\\x6f\\x8c\\x1c\\x5b\\xcc\\x4a\\x6f\\x6d\\xe3\\xb4\\x18\\xc2\\xc6\\x6b\\x59\\x2e\\xb4\\xdc\\x96\\xe7\\x41\\x2b\\x84\\x88\\x47\\xad\\xbd\\xed\\xf5\\x78\\x66\\x12\\xe3\\xd2\\x8b\\xd0\\x3d\\x6b\\xc7\\x91\\xb8\\xd9\\x3b\\x66\\x6d\\x83\\xac\\x5c\\x9f\\xc3\\xcc\\x87\\x56\\x37\\x58\\xc4\\xf4\\x03\\xac\\x16\\x89\\x71\\x2c\\xb0\\x0a\\xe0\\xa2\\xab\\xeb\\xea\\xf7\\xbc\\xfa\\xfb\\xc6\\x0d\\x6f\\x40\\x44\\x69\\xa6\\x9f\\x40\\xf7\\x1e\\x18\\xc0\\x75\\xdb\\x9c\\x31\\x94\\x1e\\xc4\\x99\\x59\\x17\\xaf\\x70\\x66\\xd7\\x9f\\x54\\x1c\\xcd\\x42\\xc4\\xde\\x9d\\xa8\\x29\\x37\\x21\\xbb\\x06\\x34\\x69\\xb2\\xd4\\xd9\\xe0\\x88\\x0b\\x2e\\x7a\\xa8\\xd1\\x33\\xef\\x4c\\xfa\\x87\\xd4\\xd0\\x2c\\x14\\x34\\xf1\\x74\\x89\\x49\\x42\\x36\\x64\\x63\\xf6\\xe4\\x68\\xc4\\x99\\x22\\x6f\\xcb\\x2f\\xee\\x32\\xb7\\x7b\\xad\\xa9\\x5d\\x6e\\x0f\\xdb\\xc7\\xd0\\x39\\x30\\x49\\x66\\xa9\\x99\\xea\\xa7\\xce\\x69\\x5b\\xda\\x91\\xf6\\xa4\\xa3\\x49\\x9c\\x6e\\xa7\\x96\\xab\\xe3\\x7a\\x79\\xbd\\xdd\\xfa\\xb4\\xa4\\x07\\x2b\\x88\\x23\\x9d\\x7c\\xca\\xd9\\xb1\\x3b\\xf7\\xd0\\xfe\\x9a\\x40\\x6d\\xa0\\x73\\xda\\x41\\xfa\\xf8\\xe4\\x7f\\x17\\xef\\x71\\xdf\\x70\\x7f\\xf0\\x73\\x69\\xd4\\xae\\xb8\\x57\\x47\\xb5\\xa1\\x93\\xba\\xa8\\x2b\\xba\\xad\\x5e\\x53\\x49\\x73\\x43\\xd6\\x95\\x8d\\x5c\\x6d\\xbd\\xda\\x79\\xed\\xbb\\xa0\\x71\\xee\\xe4\\x45\\x2e\\xf2\\x45\\xfe\\xfd\\xc2\\x8b\\x69\\xcc\\xfa\\xcc\\x46\\x45\\x50\\x24\\x45\\x57\\xbc\\x2e\\x1c\\x85\\x9b\\x5f\\xb9\\x9d\\x1b\\xbf\\xef\\xef\\xed\\xcd\\x72\\x4a\\x3b\\x3b\\x03\\x26\\x3c\\x7a\\xe9\\xea\\x78\\xe4\\xa6\\x0f\\x7c\\xeb\\x2d\\x40\\x8e\\x17\\x91\\xd9\\x62\\x20\\x46\\x62\\x2d\\xdc\\x11\\x3b\\x04\\x03\\xfb\\x11\\xb9\\xb4\\xfa\\xbf\\x86\\x80\\x8d\\xb0\\xab\\x00\\x00\\x4b\\xa5\\x2b\\x52\\x65\\x3a\\x9e\\x2e\\xa7\\x3b\\xa9\\xf5\\x7a\\x31\\x30\\x0e\\x88\\x06\\xb4\\xa2\\x27\\x01\\xc4\\x93\\x41\\x01\\x5b\\xf8\\x6c\\x77\\xed\\xe1\\xfd\\x2d\\xbd\\xb4\\x61\\x3b\\x40\\x7f\\x27\\xff\\xbc\\x58\\x7f\\xf1\\x01\\xf7\\x7d\\x10\\x06\\x60\\xdc\\x32\\x37\\x9b\\x34\\x07\\x6b\\x6e\\xb2\\x73\\xb8\\x69\\xd3\\xa3\\x79\\xdf\\xd9\\x64\\xc3\\x3c\\x17\\xfc\\xcb\\x4a\\x2d\\x62\\x1d\\x5a\\xb6\\x8a\\x7f\\x04\\x35\\x4c\\x5c\\xa7\\x71\\xe7\\x21\\x82\\xac\\x13\\x64\\xcd\\x20\\xab\\x06\\x59\\x39\\xc8\\x8a\\x41\\x16\\x0f\\xb2\\xd4\\xcc\\x1b\\xc2\\xf8\\x3d\\xfe\\x26\\x26\\xc0\\x18\\x9f\\x2b\\xc2\\xe1\\x93\\xe1\\xe4\\x70\\x63\\xb8\\xbc\\x8d\\x77\\x6e\\x98\\x1a\\x46\\x87\\x66\\x50\\x09\\xe5\\x01\\x0c\\x0a\\xe0\\xca\\xeb\\xff\\xbf\\xff\\xff\\x6f\\xf0\\xff\\x1b\\x6b\\x58\\x07\\x8f\\x3b\\x0f\\x83\\x71\\x37\\x5d\\x71\\x34\\xd6\\x0b\\xf8\\xc5\\x7e\\x5f\\x41\\x53\\xcf\\xfe\\x5c\\x3a\\x1a\\xf8\\xf9\\x62\\x14\\x4d\\x1c\\x85\\xe0\\xc7\\x03\\xdf\\xd4\\x6f\\xca\\x37\\xf1\\x07\\x78\\x68\\x62\\x24\\x63\\x62\\x93\\xa1\\x84\\xa2\\x1e\\xff\\x03\\x30\\xf8\\x0a\\x5c\\x73\\xf9\\x8f\\xcb\\x1e\\x97\\x3c\\x2e\\x78\\xb4\\x78\\x30\\xf7\\x31\\xf5\\xd1\\xcc\\xfe\\xed\\x03\\xcd\\x8f\\x9a\\x1e\\x55\\x3f\\xaa\\x78\\xe4\\x78\\x24\\x79\\x14\\xf3\\x88\\xf1\\xeb\\xc5\\xc0\\x1b\\x2c\\x7e\\x9d\\x88\\x22\\xd7\\x0d\\x8e\\xf0\\x5a\\xdc\\xfd\\x1b\\xd8\\x0f\\x20\\x02\\xd0\\xc1\\x11\\x63\\x07\\xb6\\x89\\x38\\xb3\\x55\\x09\\x6f\\xed\\x79\\x0c\\xa8\\xba\\xd6\\x5e\\x37\\xe0\\xdb\\xf6\\xa2\\x83\\x5c\\x06\\xf2\\x1d\\xe8\\x6d\\xa0\\x77\\x83\\xa3\\xfa\\xb5\\xe1\\xd6\\x35\\x51\\x65\\xfd\\xeb\\xfd\\x0a\\x20\\x3b\\xc4\\xa7\\x97\\x2a\\xb5\\x46\\xab\\xab\\x8d\\xbf\\xbd\\xbc\\x7d\\x7c\\xfd\\xfc\\x0b\\xdd\\x01\\x43\\xc2\\xd2\\x6f\\x05\\xc5\\xfa\\x93\\xd4\\x1a\\x2d\\x5a\\xb5\\xa1\\xd4\\xf0\\x79\\xc3\\x86\\x8f\\x18\\x39\\x4a\\xb9\\xf1\\xb4\\x31\\x63\\xc7\\x8d\\xb7\\xa5\\xb1\\x2b\\x6a\\xda\\xfb\\x66\\xe6\\x16\\xfb\\x17\\x14\\x16\\x6d\\xf9\\xff\\x25\\xa5\\x65\\xe5\\x15\\x95\\x2a\\x6f\\x65\\x7d\\x78\\xd5\\x6a\\xd5\\x6b\\xd4\\xac\\xb5\\x8d\\xed\\xbc\\x3a\\x75\\xeb\\xd5\\x6f\\xb0\\x9d\\x7d\\x5f\\x46\\x4e\\xff\\x5f\\xf6\\xda\\xad\\xbb\\x5f\\x85\\xbe\\xa9\\x7e\\x56\\x95\\xa8\\xea\\xb2\\xdb\\x75\\xec\\x34\\x91\\xf4\\x64\\xf2\\x53\\x0d\\x8d\\x53\\xa8\\xff\\xec\\xd5\\x7b\\xda\\x7f\\xfa\\x4e\\xff\\x5f\\xff\\x67\\xc8\\x25\\x00\\x06\\xa1\\x03\\xb3\\xd1\\x45\\x44\\xaf\\x3a\\x92\\xdb\\xe3\\xc5\\xab\\x37\\xef\\x3e\\x70\\x69\\xa7\\x6f\\x5c\\xd9\\x81\\xeb\\xea\\x6b\\xa8\\xb1\\xa6\\x9a\\x6b\\xb1\\xbb\\x2b\\xb5\\x91\\x81\\x75\\x93\\x5f\\xb7\\xf8\\x43\\x42\\x41\\xf7\\x63\\x2f\\x7b\\x65\\x2f\\x0d\\x5c\\x77\\x85\\x76\\x4f\\x18\\x62\\xf7\\x45\\xf4\\xa0\\xae\\xba\\x01\\x61\\xfa\\x05\\x08\\x05\\x15\\x4d\\x14\\x3a\\x46\\xbf\\x82\\x60\\x8a\\xe9\\x69\\xef\\xfb\\xd0\\x47\\x71\\xbd\\x4c\\x9a\\x0c\\xbc\\x37\\x4d\\x34\\xd9\\x14\\xa2\\xf7\\x48\\x09\\x7d\\x40\\xf7\\x11\\x43\\x2b\\xb1\\x6f\\xb8\\xbe\\x6f\\x89\\x27\\x19\\x7f\\x00\\x4e\\x28\\xbf\\xc8\\x95\\xba\\x37\\xc3\\xf2\\x7f\\x09\\xf2\\x02\\x0f\\x19\\x3a\\x8c\\x9e\\x21\\xea\\x34\\xdf\\x35\\xf3\\xf4\\x5b\\x31\\xd3\\x67\\x1c\\xed\\x3f\\x7f\\x05\\x3d\\xc6\\x47\\xff\\xa7\\x61\\xf2\\x87\\x57\\xc7\\x1d\\xe7\\x7f\\xff\\x84\\x98\\xe5\\x99\\xd7\\xa3\\x66\\xcf\\x39\\xf1\\xa4\\xb9\\xcc\\x2c\\x5e\\xf8\\x8e\\x9e\\x75\\xbf\\x2c\\xfe\\xe5\\xfb\\x09\\x27\\x7b\\xe3\\xc7\\x49\\xa7\\x9c\\xea\\x4b\\xd4\\xd3\\x7d\\xf6\\x0b\\x03\\x1b\\x7b\\x19\\x0b\\xf6\\x4d\\xf3\\x35\\xd1\\xc0\\xc8\\xff\\xbc\\x7d\\x63\\xc2\\xb7\\xca\\x94\\x2a\\x57\\xa1\\x52\\x95\\xea\\x24\\x49\\xbd\\xf7\\x5f\\x0d\\xca\\xf2\\x4c\\xae\\xcf\\xe6\\xa9\\xd9\\xf8\\x49\\xff\\x4a\\xfe\\x61\\x5b\\xfc\\xdc\\x07\\xe7\\xe0\\x77\\x53\\x08\\xc4\\xd2\\x6b\\x02\\x82\\x92\\xaa\\xcc\\xbb\\xd7\\xb1\\xd8\\xa2\\xac\\xc8\\x5f\\xae\\xf7\\x94\\x36\\x16\\xab\\xcd\\xee\\x70\\xba\\xdc\\x1e\\x4c\\x2c\\x9b\\x3a\\xae\\xe7\\x07\\x61\\x14\\x27\\x69\\x96\\x17\\x25\\xe3\\xa2\\xaa\\x9b\\xb6\\x9b\\xcd\\x17\\xcb\\xd5\\x7a\\xb3\\xdd\\xed\\x4f\\x4e\\xcf\\xce\\x2f\\xe0\\x60\\x58\\x8e\\x17\\x44\\x49\\x56\\x54\\x4d\\x37\\x4c\\xcb\\x76\\x5c\\xcf\\x0f\\xc2\\x28\\x4e\\xd2\\x2c\\x2f\\x4a\\xe5\\x4a\\xb5\\x56\\x6f\\x34\\x5b\\x28\\x5b\\xa7\\xe2\\x01\\x9f\\x8d\\xfa\\x03\\x97\\x5a\\xa5\\xd1\\xaa\\x45\\x9b\\x0e\\x5d\\x3a\\x75\\xeb\\x21\\xd8\\xb2\\xa9\\xeb\\xe4\\x28\\x1d\\xcc\\xe8\\xe8\\x99\\x9c\\xce\\xd7\\xb6\\xae\\x4a\\xba\\x38\\xf1\\x12\\x92\\x21\\x57\\x89\\x54\\x89\\xd9\\x28\\x9b\\x20\\x42\\x1b\\x15\\x65\\x9b\\x8c\\x54\\x64\\xa7\\x55\\x72\\x52\\x96\\xcd\\x29\\xf7\\x34\\xf3\\x24\\x29\\x74\\x53\\xa9\\xcd\\x36\\xe0\\x49\\xc9\\x56\\xfb\\xb2\\xc3\\x25\\xc9\\xd6\\x24\\x0b\\x21\\x9f\\xf2\\x26\\xdf\\xb2\\x95\\xf2\\x59\\xcc\\x49\\x4e\\x4a\\x12\\x22\\x50\\x9e\\x5d\\x8d\\xb1\\x16\\x24\\x2f\\x6b\\x93\\x93\\xdc\\x41\\x42\\xb9\\x50\\x5e\\x12\\x93\\x9a\\xec\\xc8\\xf2\\x89\\x34\\x9f\\xcd\\xf8\\xee\\x87\\x9f\\xbe\\xf5\\x3e\\x4d\\x41\\xfe\\xd7\\xef\\xbc\\xe0\\x82\\xbb\\xde\\x01\\xc7\\xa4\\x39\\xe4\\xb0\\x23\\xf2\\x1d\\x77\\xd4\\x41\\x0b\\x36\\x4b\\x29\\xde\\x60\\x3f\\xb3\\x63\\xa0\\xdb\\x26\\x18\\x63\\xbf\\xb6\\x84\\xcd\\x5e\\x28\\xd9\\x56\\x5b\\xe0\\xdf\\xe7\\x6c\\x4f\\xed\\x73\\xcc\\x3e\\xd0\\xb1\\x46\\x3a\\x03\\xe7\\xfd\\xe7\\xc2\\xcc\\x7b\\xbe\\x67\\x70\\xc0\\xbf\\x50\\xa2\\x40\\xce\\x7b\\xf7\\x0b\\x6b\\x6f\\x79\\xa4\\x08\\x01\\x82\\xfb\\x34\\xcb\\xd2\\xd3\\x7f\\x6c\\x5d\\x3f\\xc5\\xdd\\x7e\\x4a\\xdc\\x26\\x2c\\x9e\\xcb\\x8e\\x86\\xef\\x3f\\xa1\\xac\\xfe\\x0f\\x82\\xf9\\xa8\\xdb\\xb4\\xa5\\xf3\\x1e\\x9e\\x81\\x36\\x1d\\x09\\xc2\\x12\\x03\\x02\\x0e\\xea\\x9d\\x80\\x82\\xb6\\xc4\\x57\\x57\\x98\\xf2\\xd3\\xb8\\x08\\x6b\\x9c\\x6d\\xce\\xde\\x7c\\x4e\\xde\\xbc\\x1b\\x7e\\x14\\xf9\\xd6\\x55\\xf2\\x14\\xcf\\x4e\\x3c\\xee\\xbb\\x1f\\x9f\\xb3\\x1a\\x44\\x43\\xdd\\x62\\x71\\xe9\\x3d\\xab\\x13\\x97\\xe3\\x00\\x97\\x48\\xe0\\x2b\\x5a\\x02\\x08\\xbe\\x6c\\x47\\xd2\\xab\\x54\\xae\\x98\\x83\\xfb\\x4c\\xba\\xc7\\xee\\xc1\\x3d\\x5b\\xb2\\x68\\x71\\x88\\xe7\\x6c\\x70\\x95\\xb6\\x73\\x0e\\x68\\x88\\x46\\x9d\\xb1\\x2a\\x8c\\xa4\\xe5\\xab\\x84\\xd5\\x88\\xd3\\x28\\xba\\x30\\x23\\x75\\xc0\\xc0\\x64\\x9a\\x59\\x5b\\xcd\\xb6\\x51\\x77\\x3d\\x8c\\xa9\\xad\\x10\\x53\\xcf\\x36\\xd1\\x33\\x7f\\xaf\\x96\\x1a\\x34\\xfc\\x3f\\xd8\\xdb\\xe5\\xa2\\x51\\xb2\\x7c\\x9d\\xca\\x2b\\x57\\xdf\\xe4\\x64\\xb9\\xa5\\xae\\xb8\\x4d\\x73\\xc6\\x29\\xe4\\xe5\\x3a\\x58\\xc0\\x02\\xcf\\x73\\x23\\x73\\x66\\xa1\\xdd\\x69\\x22\\x1a\\x4d\\xa0\\xb1\\xa2\\xda\\x1d\\xa4\\x43\\x6a\\xec\\x2c\\xe0\\x21\\x01\\x77\\x52\\xe1\\xe6\\x3f\\x23\\xad\\xb0\\x1b\\x29\\xea\\xdc\\x5c\\x51\\xa6\\xc3\\x91\\x02\\x46\\xbf\\x2e\\x9c\\xc5\\xb3\\xde\\xd0\\x47\\x91\\xc0\\xf0\\x25\\x29\\x85\\x48\\xe2\\x06\\xc4\\x58\\xd1\\x6c\\x18\\x37\\x4e\\xd0\\x8a\\xad\\x94\\x20\\xb1\\xa4\\xcd\\x41\\x22\\x20\\x9b\\xcc\\x43\\x9b\\xd5\\x29\\xf9\\x46\\x2a\\x5d\\x4d\\x26\\x18\\x4d\\x24\\x6a\\xb9\\x1e\\x85\\x2a\\x28\\xf3\\x63\\x34\\x56\\xd6\\xe6\\xab\\xe4\\x9d\\xf9\\x7c\\xd6\\x07\\x6a\\x68\\x6a\\xae\\xe2\\xb7\\xcd\\x34\\x50\\x07\\x52\\x4b\\x54\\xf9\\xa4\\x2b\\xda\\x95\\x34\\x66\\x6a\\x67\\xe2\\x8d\\x58\\x9b\\x1b\\x68\\x40\\x34\\xcd\\x21\\x4b\\x7b\\xb9\\xe3\\xf9\\x13\\x46\\x9d\\x45\\xc3\\x2f\\x23\\x75\\x8d\\x16\\x68\\xe2\\xe9\\xbb\\xd4\\xcc\\xd7\\x34\\x1f\\xa7\\xf6\\x6d\\x3f\\x02\\x19\\x9e\\xbe\\x4e\\x4f\\xdf\\xde\\x30\\x9d\\x7f\\x88\\xb6\\x5f\\xb3\\x85\\xc6\\x36\\xdf\\xc7\\x1b\\x71\\x79\\xa4\\x89\\x34\\x3c\\x03\\x51\\x16\\x5b\\x75\\x23\\xd6\\x76\\x42\\x7a\\x26\\xb4\\xbd\\x4a\\xcd\\x70\\x45\\x8c\\xc5\\xc1\\xb5\\xc0\\x72\\xd1\\xcc\\x1b\\xd2\\x1c\\x55\\xd7\\x06\\xf0\\x96\\xb2\\x67\\x39\\x6b\\x21\\x2f\\x64\\x97\\x17\\x77\\x3c\\xdc\\xe4\\xc7\\x79\\x02\\x7e\\x34\\x64\\xb7\\x4d\\x11\\xc2\\xe9\\x28\\x32\\x7e\\xfa\\x83\\x36\\x56\\x9a\\xe6\\xaa\\x77\\x89\\x86\\x46\\xcd\\xa8\\x68\\x24\\x55\\x4c\\x1d\\x55\\x90\\xe6\\x77\\x73\\x67\\x55\\xb6\\xe4\\x32\\x0e\\xbf\\xfc\\x6b\\x2d\\x39\\x7f\\x77\\xb7\\x91\\x03\\x1d\\x34\\xf6\\xcf\\x05\\xba\\x68\\x52\\xd3\\x93\\xa2\\x2f\\xcd\\x40\\x86\\xa1\\x2c\\x23\\x39\\x72\\x79\\x76\\x14\\xd8\\x55\\xf2\\xb1\\x84\\x3a\\xe4\\x3d\\x70\\x3c\\xe1\\xe7\\x38\\xe1\\xf7\\xd5\\x7b\\x58\\x61\\x71\\x20\\x7d\\xb5\\x5f\\x79\\x1d\\x58\\x72\\x88\\xc9\\x11\\x26\\x63\\x4c\\x26\\x98\\x4c\\x31\\x99\\x61\\x32\\xc7\\x64\\x81\\xb9\\x4e\\x6d\\xaf\\x26\\x61\\xc6\\xd9\\xb3\\xd0\\xac\\x35\\xb1\\xd3\\x9d\\xb8\\x02\\x92\\x09\\xa9\\x39\\x8d\\xb5\\x3f\\x37\\xe7\\xe0\\xcc\\x39\\x9b\\x05\\x2e\\x20\\x2d\\xe4\\x85\\x09\\xab\\x37\\xad\\x84\\xf9\\x6f\\x45\\x61\\x74\\x20\\x70\\xe9\\x9a\\x76\\xd2\\xe3\\x62\\xd6\\x6c\\x38\\x9c\\xa5\\x12\\x04\\xca\\x05\\xae\\xac\\x52\\xa5\\xa9\\x70\\x0d\\x5d\\x93\\xf5\\x3d\\xb8\\xc1\\x0a\\x54\\x0c\\xce\\x8c\\x38\\x63\\xb8\\x37\\x41\\xef\\x17\\x8b\\x3f\\x3f\\xd3\\x7b\\x76\\xb3\\x5d\\x87\\xc3\\xb3\\x81\\x5b\\xa8\\xd7\\x42\\xd6\\xbf\\x48\\xc0\\x7a\\x33\\x70\\x87\\x6e\\x7f\\x1f\\xb8\\x87\\x1b\\x47\\xb8\\x09\\x7b\\x99\\x07\\x34\\x25\\xbd\\x13\\xea\\xb4\\x00\\x8d\\xea\\xc3\\x8f\\x87\\x2f\\x0d\\x55\\xbb\\x2a\\x95\\xf4\\xeb\\xcc\\x88\\xc6\\xf1\\x3e\\x84\\xc3\\x3d\\x67\\x03\\x8f\\x80\\x1e\\xc6\\x56\\xb8\\xb9\\x2d\\x09\\xcf\\x6d\\x0f\\xe7\\x2a\\xf5\\x03\\x9d\\x9a\\xa7\\x26\\x4b\\xdd\\xac\\x24\\x8c\\x46\\x84\\x8c\\xf8\\x65\\xae\\xbf\\x6d\\x71\\x9d\\x7e\\xaa\\xb8\\x1e\\x5d\\xec\\x51\\xae\\x8f\\x72\\x8c\\x26\\x02\\x35\\x8c\\x11\\xdf\\x4d\\x9b\\x17\\x0c\\xd3\\x68\\xa6\\x08\\xf1\\x42\\xdf\\x46\\xb1\\x6c\\x19\\x9a\\x75\\xab\\x69\\x5c\\xb1\\xba\\xa3\\x52\\xfa\\x1f\\x4f\\xf4\\xa5\\xd5\\x24\\x4c\\x69\\x73\\xff\\xc9\\x46\\x7d\\x7c\\x8e\\xb2\\x0a\\x73\\x38\\x65\\xd1\\x58\\xb5\\x9e\\xce\\x36\\x2c\\xf5\\x38\\xd6\\xea\\xda\\x13\\x02\\x51\\x03\\x6d\\xb8\\x09\\x80\\xb6\\xea\\xab\\x1e\\xce\\xc1\\x67\\x22\\x07\\x9e\\xf5\\x8f\\x4b\\xf2\\xd8\\x12\\xcc\\xb1\\xfe\\x66\\xe0\\xe5\\xd6\\x38\\x41\\xe3\\xfd\\xf8\\x9c\\xc0\\x08\\x3c\\xc5\\x57\\xe6\\x02\\xe1\\xa9\\x35\\x97\\x72\\x97\\x3a\\xf5\\xe6\\xdd\\x15\\x7b\\x50\\x24\\x07\\x33\\xb7\\xe9\\xec\\x2c\\xf0\\xf8\\x83\\x97\\x38\\xa9\\x6a\\xf4\\x52\\xaf\\x20\\xf9\\xf2\\x81\\x35\\x77\\x9d\\x6e\\x51\\xca\\x7b\\xb3\\xa7\\x7a\\xcc\\x8d\\xa5\\x0d\\x4c\\x9d\\xc5\\x1e\\x6e\\xfe\\x26\\xa9\\xcf\\x5d\\x3b\\x0f\\x07\\xe7\\x02\\xdb\\x5b\\x03\\x5e\\x85\\x14\\x88\\xd5\\xdb\\xbf\\xf9\\x37\\xe0\\xd1\\x09\\x96\\xbd\\x05\\x4f\\x3e\\x30\\x85\\x40\\x41\\x92\\x56\\x19\\x3e\\x00\\x86\\x1d\\xe7\\x1e\\x78\\x17\\x5d\\xcc\\xb2\\x10\\x58\\x45\\x53\\xaf\\x2e\\x41\\x08\\xa9\\xf7\\xef\\xf7\\x68\\x61\\xc1\\x62\\x18\\xfe\\xb7\\x58\\x44\\x1e\\x88\\x0e\\x7d\\x8b\\xd9\\x5b\\xf9\\x70\\xfa\\x3a\\xe5\\xb3\\x7c\\xca\\x07\\x43\\x30\\xdd\\x23\\x1f\\x53\\xde\\x26\\x54\\x07\\x49\\x5d\\xf1\\x55\\x3d\\x4c\\xcc\\xc4\\x48\\x0e\\x7e\\x54\\x76\\x77\\xdc\\xce\\x02\\x9f\\xee\\x1d\\xfe\\x8c\\x46\\x38\\x4c\\xee\\xc6\\xe3\\x5f\\x80\\x87\\x4a\\x28\\x97\\xd2\\x9b\\x99\\x3a\\xcd\\x07\\x09\\xe8\\x34\\xf1\\x35\\x84\\xa2\\x49\\xf9\\xac\\xff\\xf1\\x75\\x8c\\xd2\\x07\\xd8\\x6d\\x57\\x86\\x10\\xe6\\x49\\x50\\xd6\\x90\\x35\\xc0\\x6e\\xc0\\xee\\x71\\x10\\xc2\\x5d\\x22\\x1e\\x03\\x7e\\x03\\x76\\x4e\\x80\\x10\\xe1\\x12\\x89\\x18\\x88\\x1b\\xb0\\x6b\\x12\\x84\\x48\\x97\\x48\\xc6\\x40\\xde\\x80\\x3d\\x52\\x20\\x44\\xb9\\x44\\x2a\\x06\\xea\\x06\\xec\\x92\\x06\\x21\\xda\\x25\\xd2\\x31\\xdc\\x3d\\xc4\\xe2\\x2e\\x86\\x40\\x19\\xbe\\x99\\xa1\\x7e\\x44\\x47\\x51\\xe3\\xd3\\xb9\\x84\\x44\\xd4\\x85\\xd9\\x90\\x32\\x95\\x05\\x0c\\x5f\\x3f\\x00\\xbe\\x01\\xb7\\xc2\\xbe\\x4f\\x56\\x8e\\x3b\\x0c\\x3f\\x03\\xc0\\x2f\\x00\\xe1\\xde\\xa7\\x28\\xcf\\x1d\\x86\\xbf\\x01\\xe0\\x1f\\xc0\\xa2\\x1f\\x57\\x05\\x22\\xf6\\xc7\\xe9\\x22\\xbb\\x44\\x8b\\xf9\\xaa\\x07\\x2c\\xfa\\xba\\xaa\\x9f\\xb4\\x59\\x1f\\x90\\xa8\\xca\\x45\\xf7\\x89\\x6e\\xd1\\x97\\x1f\\xca\\x3c\\xab\\x05\\xed\\x0f\\x60\\xdb\\xa7\\x00\\xc7\\x6c\\x09\\xb0\\xfc\\xed\\x80\\x45\\x5f\\x71\\x70\\xe9\\x2d\\x21\\xb7\\x87\\x62\\x24\\x49\\x82\\x78\\xc2\\x86\\x9a\\xa7\\xe0\\x3a\\x3a\\x81\\xaf\\xaa\\x7a\\x40\\xd0\\x12\\x92\\x2a\\x88\\xf9\\xe1\\x46\\x86\\x67\\xa9\\x8d\\xde\\x5c\\xad\\xbe\\xdb\\xc2\\x22\\x11\\x79\\x5f\\xf5\\x1f\\x03\\x55\\x9b\\x52\\xbe\\x7e\\xd1\\x82\\x31\\x60\\x7b\\x8d\\x1a\\x61\\x09\\x3a\\x7b\\xad\\x09\\x0c\\x52\\x65\\x40\\x59\\xc9\\x8e\\x3c\\x61\\xb7\\x61\\xd6\\xb9\\xda\\xc3\\x64\\xaa\\xe3\\xb3\\x87\\x16\\x57\\x47\\x1f\\x06\\x68\\x92\\xbe\\x8a\\x01\\xd4\\xb7\\x5a\\x4f\\xc6\\xa0\\x46\\xe5\\xfa\\x6d\\x98\\xfc\\x11\\xa2\\x3b\\x4c\\x72\\x41\\xac\\xea\\x9b\\x7b\\xea\\x51\\x85\\x77\\x57\\x69\\x1c\\xbe\\xb5\\xfa\\xf9\\x45\\x87\\x89\\x49\\x1a\\xac\\x94\\xb4\\x2e\\x9f\\x70\\x1f\\x6f\\x50\\x4e\\x70\\x19\\x65\\x48\\xca\\xf6\\x04\\xe8\\x29\\x0d\\x66\\xd2\\x57\\xe5\\x77\\x1f\\x2e\\x75\\xcf\\x90\\xd3\\xed\\x61\\x74\\x62\\x23\\x12\\xe2\\xed\\x0a\\xb7\\x93\\xa5\\xf4\\xbf\\xd4\\x2f\\x97\\x8d\\xfe\\xca\\xe5\\xdd\\x92\\xec\\x67\\x35\\x9f\\x33\\x7c\\xce\\xad\\xdb\\x1b\\x55\\x7b\\xdb\\x6d\\x7f\\x11\\xf0\\xf9\\x16\\xfe\\x35\\x83\\x9c\\xaf\\x78\\xbf\\xf6\\xa3\\x49\\xd9\\x8b\\xa5\\xb4\\xd7\\x85\\x3d\\xe7\\x18\\x33\\x58\\x4c\\xaf\\x22\\x28\\x9b\\x02\\x9e\\xb9\\x1e\\xb6\\x72\\xd6\\x08\\x0a\\x89\\x02\\x0c\\xb0\\xef\\x7b\\xdd\\x43\\x04\\xdb\\x76\\xe6\\xb5\\x5a\\xd7\\x49\\x00\\x10\\xac\\xcc\\xbf\\x5c\\xec\\x7f\\x88\\x8a\\x57\\x08\\x0c\\x27\\x44\\x26\\x57\\x86\\xcc\\x92\\x32\\x9e\\x05\\xcf\\xfe\\xb9\\x47\\x18\\x84\\x3e\\xf8\\x90\\xed\\x6b\\xc9\\x7a\\xda\\x0a\\x2d\\x16\\xa3\\xb6\\xa1\\xb2\\x8a\\xc2\\x95\\xe5\\xe0\\xd3\\xaa\\x43\\x5f\\xd7\\x36\\x20\\xcc\\xc3\\x2d\\x1c\\xf4\\x60\\x4e\\xa7\\xde\\xa4\\x00\\xdf\\x89\\x31\\x55\\x6f\\x96\\xd2\\x75\\x9b\\x88\\x20\\x1c\\xa1\\x3c\\x83\\x54\\x52\\xab\\xc7\\xbc\\x32\\x6a\\x1f\\x17\\x44\\x31\\x7d\\xde\\x45\\x34\\x30\\xa0\\x28\\x58\\xab\\xd6\\x06\\x42\\x60\\x1b\\x22\\x92\\xd0\\xf3\\xb1\\x88\\x37\\x3a\\xd4\\x9b\\x92\\x55\\xa9\\xad\\x6d\\x8b\\x41\\xc0\\x68\\xd0\\x16\\x00\\x84\\x48\\x85\\xdc\\x2b\\xbe\\x71\\x61\\x1f\\x98\\x3d\\x10\\x44\\x3e\\x65\\x9e\\x57\\x1c\\xd7\\x49\\xbe\\x88\\x0e\\xf9\\xee\\x88\\x99\\xc8\\x1e\\xbc\\x16\\xcc\\xc7\\x73\\xce\\xea\\x95\\xe8\\x6f\\x0e\\xa3\\xe1\\x45\\x7d\\x3b\\xe5\\x94\\x92\\xc1\\x98\\xe2\\x80\\x1f\\x42\\x93\\x63\\x81\\x2a\\x26\\x09\\x43\\x40\\xc7\\xcc\\x2a\\xd8\\xb2\\x41\\x24\\xdd\\xd8\\xe3\\x9b\\x90\\x0c\\xa1\\xef\\x0b\\x56\\x83\\xb6\\x1d\\x3f\\x2c\\x58\\x3a\\x0d\\xd7\\x28\\xa5\\x1a\\x87\\x81\\xf7\\x78\\x8a\\xfb\\xe8\\x98\\x7d\\x85\\x2d\\x1c\\xf1\\x9b\\x80\\xe4\\xcc\\xe3\\x28\\x9a\\x25\\x5c\\xaa\\xed\\x67\\x10\\x90\\x5a\\xf3\\x2e\\x18\\x1f\\x2c\\xfa\\x83\\xee\\xaa\\x1b\\x8c\\x6f\\x5d\\x97\\x17\\x79\\x4e\\x32\\x40\\x12\\xb0\\x0e\\xc3\\x45\\x91\\x24\\x52\\x0a\\x31\\x2e\\xce\\xd4\\xb1\\x56\\x0a\\x0a\\xb0\\x76\\xc2\\x15\\x56\\x65\\x96\\x75\\xd8\\x0d\\x92\\x06\\xda\\xe8\\xab\\x8b\\x49\\x70\\x80\\xcd\\xa6\\x6d\\xa7\\xc3\\x45\\xfb\\x84\\xa0\\xc1\\x70\\xcb\\x7c\\x24\\xd9\\xf3\\x20\\x02\\x7b\\xbe\\xa1\\xc3\\x89\\xb3\\x86\\x21\\x0a\\x59\\x00\\xf9\\x75\\xb0\\x66\\x9f\\x20\\xda\\xf0\\xff\\xa9\\x12\\xad\\x71\\x7d\\x14\\x52\\x28\\x77\\x44\\x3a\\x99\\x02\\x2b\\xfa\\x40\\x8f\\x6b\\x3e\\x47\\xa5\\x57\\x7b\\xc6\\x03\\x0d\\x32\\x60\\xa8\\x4c\\x89\\x36\\xe0\\x18\\x18\\x48\\x25\\xf3\\x29\\x16\\x34\\xb2\\xf1\\x9a\\x10\\xc3\\x6b\\xc9\\x1a\\x0c\\x21\\x0b\\x8f\\xe1\\x0c\\x61\\x79\\xd1\\x59\\x23\\x2e\\xa4\\xdf\\xe2\\x75\\x05\\x17\\x90\\xe9\\x27\\x66\\xeb\\x2a\\x96\\x34\\x75\\x11\\x65\\x2a\\x8b\\x9e\\xe3\\x63\\x3a\\xdc\\xe8\\x85\\x68\\xad\\x56\\xd5\\xfe\\xb3\\xac\\x1f\\xb1\\x6f\\x7f\\xbe\\xa3\\xb5\\xd3\\xbe\\x5f\\x3d\\x4f\\x0b\\x9d\\xd2\\x32\\xa2\\x10\\x49\\x12\\xc7\\x5a\\x83\\xe1\\xba\\x59\\xba\\xe0\\xe2\\xd6\\x86\\x9d\\xc2\\x6a\\x4a\\x41\\xf3\\xba\\x08\\xbb\\xb8\\x82\\x02\\x49\\xe8\\x63\\x0a\\x52\\x52\\xce\\x2c\\x2e\\x17\\x36\\x28\\xd9\\x29\\x34\\xaa\\xa3\\x68\\x88\\x4a\\xc2\\x15\\x78\\x14\\x2a\\xf4\\x4f\\xcd\\x2e\\xd9\\x02\\xd8\\x44\\x15\\x68\\x48\\x3f\\x17\\xc3\\x46\\x52\\xb3\\xc4\\x08\\x90\\x7a\\xee\\x6e\\x0c\\xe0\\x6a\\xbe\\x3e\\x16\\x92\\x38\\x7c\\xd2\\x6a\\xcb\\x1c\\xea\\x52\\x96\\x46\\xa4\\x6a\\x08\\x39\\x38\\xa3\\x75\\xb6\\x8c\\x44\\x29\\x6a\\xe9\\x9a\\x54\\x1e\\x1c\\x6a\\xec\\xec\\x0f\\xd7\\x9f\\xe5\\x1e\\xa0\\x11\\x19\\x0a\\x97\\xf8\\x76\\xcd\\x43\\xfb\\xdf\\x39\\x1c\\x3c\\xcd\\x01\\xa0\\x37\\xba\\x57\\x60\\x57\\xfc\\xa8\\xca\\x9d\\x52\\x0b\\x2d\\x3e\\x2a\\xe6\\x60\\x26\\x80\\x90\\x88\\x4b\\xd1\\x67\\xa4\\xbe\\x20\\x55\\x6c\\xb4\\x5e\\x09\\x3f\\x91\\x41\\x00\\x84\\x2e\\xc1\\x88\\xf3\\xe6\\x4b\\xb5\\xdf\\x41\\x97\\x5b\\x63\\x56\\xe3\\x8f\\x79\\x90\\x18\\x9a\\x6d\\xc7\\x5b\\x09\\x76\\x77\\xa2\\xcd\\xbd\\x30\\xe9\\x1a\\x61\\x45\\x16\\xd9\\xa4\\xd9\\xe6\\x53\\x5d\\xea\\x87\\xcd\\x93\\xcc\\xfe\\x40\\xb3\\xac\\xe9\\xf6\\x4e\\xc9\\x79\\x51\\xb1\\x2c\\x93\\x91\\x0d\\xe4\\xce\\x40\\xc2\\xa2\\xef\\x01\\x6c\\x6d\\x82\\xc7\\x87\\x4b\\x2b\\x87\\xd0\\xd6\\xae\\x2d\\xfb\\x87\\x36\\x79\\x9b\\xfa\\x14\\x76\\xd6\\xf4\\xf0\\x5b\\x7a\\x94\\x6f\\xa8\\xb6\\x83\\x20\\x03\\x34\\xd2\\xdd\\x40\\x60\\xbd\\x4d\\x47\\x99\\x78\\x3a\\xab\\x9e\\xff\\x78\\xef\\x61\\xe7\\xe7\\x42\\x18\\x0f\\x32\\x21\\x1c\\x0c\\x82\\x0a\\xc4\\xa7\\x7d\\x3d\\xee\\xee\\x9c\\xdd\\xbf\\x0c\\x06\\x6d\\xe5\\x77\\x1f\\xc5\\xf5\\x3d\\x82\\x31\\x32\\x9c\\x8f\\xa6\\x9a\\x05\\xcb\\xab\\xc9\\xdb\\x81\\x5e\\x14\\x54\\xcc\\x37\\x7d\\x34\\xb2\\xb0\\x17\\x04\\x5d\\xee\\xec\\x7f\\xd2\\xab\\xa0\\x53\\xc5\\x06\\xed\\xf6\\x48\\xe5\\x9c\\xc4\\xd7\\x6d\\x29\\x80\\x42\\x83\\xbc\\x81\\x25\\xef\\x6a\\xd7\\x94\\x99\\xc8\\x28\\x54\\xe0\\xf6\\xe5\\xed\\x0d\\xee\\xd3\\x1e\\x39\\x15\\xae\\x32\\x7e\\x7b\\x97\\x64\\xb3\\x78\\xad\\x3b\\x0b\\xa8\\x0b\\xae\\xd5\\x1f\\x0c\\x7a\\x58\\x73\\xda\\x5f\\x22\\x6e\\x1c\\x04\\xcb\\xb1\\xfc\\x5e\\x18\\x9d\\xb0\\x72\\x2d\\x96\\x7b\\x64\\x67\\xbd\\x83\\xd8\\x99\\x9a\\xdb\\xa7\\xfe\\xf3\\xef\\x21\\x76\\x72\\xec\\x55\\x31\\xc1\\x8e\\x5f\\x55\\x95\\xd2\\xea\\x07\\xb4\\x7c\\xd8\\xc9\\xf1\\xd0\\x2b\\xcd\\xf3\\x67\\x52\\x2f\\x3f\\xa9\\x00\\xda\\xe4\\x01\\x57\\xab\\xcf\\xda\\xfe\\x42\\x8d\\x64\\xfb\\x63\\x92\\x3c\\x49\\xac\\x2e\\xde\\xd4\\xbb\\xf8\\x1d\\xaf\\xd2\\x7a\\x6c\\x2d\\xac\\x64\\x48\\xd2\\x85\\x3d\\x8e\\x84\\xe3\\x0d\\xd1\\xa1\\xfa\\x79\\xb1\\xf2\\x6c\\xcc\\xc7\\x8b\\x86\\x72\\xd1\\x51\\x7e\\x62\\x7a\\x1e\\x75\\x0f\\x49\\x5d\\x12\\xcc\\x68\\xcc\\x7d\\x14\\x96\\x03\\x75\\x37\\xde\\x37\\x76\\xb6\\x6f\\x21\\x61\\x93\\x6f\\xd7\\x3d\\xa2\\xd4\\x41\\x10\\xec\\x04\\x26\\xfc\\x01\\x46\\x4b\\x1b\\x10\\x73\\xea\\x82\\x14\\xa1\\x91\\xcc\\x1b\\x2e\\xc2\\x93\\x25\\x58\\x7c\\x2b\\x50\\x6b\\x12\\x09\\x0b\\xac\\x40\\x7c\\x87\\xf6\\x8d\\x3c\\x46\\x95\\x4e\\xd1\\x49\\xfb\\x7a\\x1e\\xff\\x60\\x4a\\x41\\x07\\x1d\\x72\\x09\\xa7\\xc8\\x0e\\xbb\\x8c\\xb9\\x84\\x1a\\xac\\xd6\\x34\\x37\\xaf\\x5a\\x65\\x8b\\x98\\x12\\xf2\\x99\\x59\\x68\\xa1\\x55\\xc6\\x43\\x1e\\x65\\xb4\\xc3\\xb6\\x3d\\xcb\\xc6\\x80\\x33\\xb2\\x07\\x3d\\xe8\\x6f\\x34\\x4c\\x74\\x28\\x6f\\x74\\x74\\x27\\x4f\\x3f\\xbd\\x66\\xbb\\xd4\\x8d\\x05\\x9c\\x32\\x61\\xef\\x88\\x4c\\xd5\\x70\\xa2\\x71\\xff\\xfe\\xb2\\x20\\x1a\\x85\\xdb\\xcf\\xd1\\x59\\x3b\\x83\\xc9\\xcc\\xfc\\x81\\xa2\\x3c\\x8b\\xd0\\x10\\x90\\x5b\\xf0\\x65\\x10\\x36\\xd3\\xed\\x00\\xae\\xd5\\xa5\\x13\\x33\\x83\\xc7\\xae\\xa3\\xdf\\x57\\xda\\x4a\\x6a\\x91\\x47\\xba\\x23\\xd9\\x00\\x29\\x8a\\x5b\\x6c\\x21\\xd3\\xcc\\x1c\\xa7\\x9c\\xa5\\x32\\x21\\x5f\\x21\\x0b\\xb4\\x47\\x99\\xf0\\xe8\\x80\\xc6\\x23\\x9a\\x8c\\xf9\\x58\\x36\\xef\\x52\\x3f\\x67\\xab\\xed\\x78\\x4c\\x8b\\xaf\\x3b\\x91\\x40\\x86\\xaa\\xa7\\x41\\xf6\\x83\\xf5\\x65\\x34\\x0a\\x4c\\x40\\x30\\x83\\xc4\\x84\\x59\\xcc\\x7f\\x30\\xd8\\xe7\\xf6\\xe5\\xa4\\xf5\\xd0\\x4e\\xc0\\x24\\xc1\\x37\\x57\\x01\\xd9\\xd5\\x2a\\xb0\\x4d\\x9d\\xac\\x39\\xee\\xd8\\x74\\xef\\x92\\x06\\xb4\\xfe\\x1b\\x6f\\x86\\x20\\xec\\xbc\\x1b\\xa3\\x7c\\xa7\\xf5\\xb4\\xb5\\xe4\\x53\\x6a\\xdd\\xd7\\x0b\\x27\\x1f\\xf9\\x2a\\x47\\xe9\\x86\\x61\\x18\\xd0\\x6e\\xde\\xde\\x6e\\xc3\\xe5\\x0c\\xcc\\x57\\xa5\\x2a\\xa2\\xf3\\x3d\\xf6\\x33\\x90\\xa1\\x27\\x1c\\x95\\x57\\xfe\\x2d\\xf7\\x64\\xd2\\x2d\\x51\\x70\\x2a\\x7b\\xd6\\x1e\\xaf\\x64\\x7d\\x9d\\xf8\\x91\\xf3\\x4d\\xd2\\x0c\\x39\\x1d\\x0c\\xba\\xc2\\x17\\x74\\x3b\\xa2\\x58\\x51\\x83\\xdb\\x5b\\x27\\x62\\x6c\\x59\\x3c\\x39\\x1a\\x97\\xc6\\x06\\x35\\xf7\\x94\\xac\\x9e\\xf2\\x0e\\xb9\\x25\\x4a\\x19\\x0e\\xcb\\xa4\\x04\\xf1\\x9d\\x73\\x69\\x58\\x1e\\x26\\x11\\x15\\x50\\x1a\\xf4\\x80\\xf8\\x41\\x77\\x7c\\xae\\x2a\\xd8\\xdd\\xf7\\x06\\x4d\\x4a\\x51\\xf8\\x6e\\x06\\x88\\x8d\\x39\\xbb\\x07\\x24\\x41\\x46\\x6a\\xc2\\x23\\x89\\xb8\\xa5\\x9e\\x9e\\x65\\xf9\\x9a\\x0d\\x68\\x96\\x72\\xab\\x36\\xda\\x30\\x1f\\xc4\\x8e\\xea\\xa1\\x48\\x52\\x45\\x52\\x42\\xe7\\xa9\\xbd\\xc1\\xbb\\x6d\\x0d\\x47\\xb5\\xb3\\x7f\\x94\\xdc\\x0a\\x52\\x9c\\x5e\\xf4\\x2d\\x90\\x5c\\x65\\xc6\\x98\\xa0\\x3e\\x41\\x85\\xd4\\xe8\\xea\\x7e\\x70\\xf2\\x98\\x50\\x87\\x3c\\x8e\\x56\\x2a\\x4b\\xe5\\x2d\\x4d\\xc8\\x2a\\x80\\xc8\\x6d\\x5a\\x54\\x5e\\xb7\\x48\\x01\\xf8\\xda\\xf0\\x96\\x90\\x96\\xa9\\xcd\\x14\\x98\\x7c\\xd0\\x1c\\x0e\\xeb\\xcd\\xc5\\x60\\x83\\x46\\x5b\\xde\\xe6\\x5d\\x76\\xec\\xc3\\xf1\\x3d\\x2e\\xb7\\x60\\x1a\\xc5\\x83\\xad\\xd3\\x33\\xc0\\x9e\\x7e\\xef\\x75\\x70\\x63\\x80\\xb3\\xf4\\x09\\x49\\xd7\\x9c\\x46\\x26\\x51\\x6b\\x7b\\xd4\\x6a\\xb5\\x60\\x5c\\x4f\\x49\\xed\\x39\\x32\\x8d\\x37\\x53\\xdf\\x9a\\x9e\\xe5\\xdb\\x2a\\x93\\xd7\\xf9\\xba\\x24\\xac\\x6b\\x16\\x3e\\xb4\\x4e\\x46\\x1f\\xac\\x5f\\x6c\\xcd\\x1e\\x42\\x15\\xa8\\xb3\\x73\\xa7\\x41\\x70\\xeb\\x7d\\xd8\\x14\\xea\\x52\\x81\\x0a\\x63\\xa6\\xe3\\x1a\\x3f\\x41\\x9a\\x2c\\x51\\xd5\\x09\\x4e\\x4d\\x58\\xd6\\x1e\\xcc\\x18\\x42\\x51\\x52\\x90\\xbf\\x51\\x58\\x5f\\xef\\xdc\\x3e\\x67\\x38\\xc3\\x8c\\xc4\\xd8\\x18\\x68\\x80\\x9c\\xf2\\x25\\x21\\x32\\x37\\x7e\\xf3\\x96\\xb2\\xd2\\x76\\x54\\xc0\\xb0\\x92\\x78\\xa4\\xf8\\x90\\xca\\xca\\x68\\x40\\xa3\\x59\\x04\\xdc\\xfc\\x83\\x7b\\x14\\x8a\\x58\\xc9\\x67\\x84\\x2b\\x5a\\x0d\\x4d\\xfc\\x8e\\xca\\x92\\xa7\\x4c\\x1c\\x7d\\x99\\xea\\xd1\\x59\\x89\\xa3\\xf0\\x6d\\x46\\x05\\x8c\\x47\\xe1\\x03\\xf6\\x1d\\x37\\x02\\x9a\\x89\\xfc\\x53\\x0e\\x45\\x47\\xb2\\xfe\\xf6\\x28\\x8f\\x79\\xaf\\x89\\x8d\\x26\\xb8\\x68\\xfc\\xb5\\x9d\\xe2\\xeb\\xa0\\x34\\x74\\x68\\xa8\\x58\\x1f\\x0c\\xdf\\xa4\\x40\\xd7\\xa4\\x33\\x0f\\x97\\xf1\\x4b\\xf0\\x70\\xf2\\x79\\x74\\xbd\\x9a\\x37\\x27\\x4b\\x75\\x5a\\x26\\x45\\x80\\xf2\\x54\\x9d\\x4a\\x5a\\x79\\xde\\x6a\\xbf\\xd0\\x48\\x79\\x04\\xe5\\xa0\\x31\\x72\\x84\\xb6\\xd4\\x3b\\x39\\xac\\x10\\x8a\\xae\\x70\\xf1\\x8a\\xed\\xeb\\x47\\x17\\x3b\\x0f\\xef\\x83\\x39\\x25\\x3a\\xd0\\x4c\\x96\\x6d\\xd7\\xe2\\xd2\\xb7\\x78\\x2b\\x8c\\x3b\\x12\\x6c\\xb8\\xaa\\x37\\xa8\\xaa\\x9e\\x68\\x72\\xf2\\xb6\\x02\\x57\\x51\\xfc\\x9d\\xa6\\xeb\\x60\\x0c\\xd6\\xf5\\x76\\x1b\\x4b\\x17\\x83\\xf8\\x3a\\x90\\x12\\xac\\xca\\x14\\x4e\\xc7\\x65\\x5c\\x79\\x63\\x4d\\x04\\xbc\\x1a\\x05\\x8e\\x26\\x40\\xf1\\xc1\\x25\\x94\\x31\\x55\\x01\\x82\\x1b\\xbe\\x3d\\xdc\\x72\\xc8\\x82\\x75\\x04\\xe5\\x4f\\xab\\x47\\x2a\\x3b\\x06\\x57\\x1e\\x9c\\x5f\\x38\\x01\\x71\\xa6\\x3b\\x12\\x06\\xe1\\x5d\\x10\\x07\\x60\\x7e\\xb2\\x9e\\x26\\xb7\\xc8\\xbc\\x06\\xb8\\x7a\\x3e\\xeb\\xa5\\xed\\xa2\\xb4\\x33\\x71\\x36\\xc1\\x50\\xd9\\xcd\\x5f\\xdc\\x7b\\x8c\\xed\\xb4\\x52\\xbf\\xfa\\x68\\xf1\\x58\\xc0\\x0d\\xf5\\x0e\\x7a\\x17\\x58\\xca\\x6d\\xe1\\xb7\\x00\\x83\\x43\\x98\\xbb\\xf9\\x52\\x80\\xca\\x0c\\x3f\\x86\\xf7\\x90\\xcd\\xf9\\x0e\\x73\\xf1\\x02\\x68\\xca\\x63\\x04\\x41\\x45\\xd9\\x95\\x94\\x29\\xb9\\xfe\\x9e\\xe3\\xe2\\x13\\xfe\\x84\\x4b\\x9c\\x14\\x74\\xbe\\x0d\\x5d\\x92\\x40\\x81\\x85\\xdf\\xae\\xca\\xff\\x75\\x7b\\xe9\\x70\\x3f\\xde\\x1b\\x46\\xbb\\x7b\\xe1\\xfe\\xee\\x36\\xdd\\xba\\x1a\\x42\\xba\\x6e\\x26\\x56\\x62\\x0c\\x41\\xc3\\xec\\x75\\x2a\\x1f\\x3d\\x3e\\x6b\\x8b\\xa8\\xc0\\xa2\\xc9\\x23\\x3a\\xb0\\xd6\\x9a\\x19\\x19\\x4a\\x22\\xbd\\x67\\xe1\\x10\\x21\\xb7\\x81\\xc9\\x9b\\xd8\\x77\\xfd\\x54\\x10\\x78\\x80\\xa1\\x12\\x5c\\x1c\\xab\\x8f\\xcf\\x35\\x6f\\x35\\xd0\\xc7\\x43\\x58\\xfa\\x42\\x66\\x0c\\x4b\\xe3\\xec\\x29\\xcb\\x82\\x9a\\xc9\\x2a\\x9a\\x3c\\x14\\xc0\\x6e\\x23\\x8c\\x9e\\xd1\\x81\\xce\\xe4\\xd3\\x9b\\xcc\\x46\\xef\\x12\\xa4\\x0a\\x7d\\xfa\\x4b\\xea\\xf9\\x9b\\x71\\x28\\xba\\xeb\\x4f\\xbd\\xb1\\x5a\\xe5\\x46\\x9c\\x4b\\x46\\x75\\xdd\\xa4\\xa1\\x82\\x0e\\xe8\\xdd\\x82\\x40\\x1e\\x59\\x84\\xd1\\x61\\xa0\\xf6\\x52\\x26\\xbb\\x83\\x47\\xf2\\x0a\\xb9\\xe3\\xa3\\x28\\x8e\\x7a\\x97\\x5d\\x78\\x4d\\xed\\xc9\\x62\\x39\\xa6\\x3b\\xff\\x2d\\xd9\\xb4\\xad\\xa1\\x6b\\x86\\x4e\\xa3\\x15\\xaf\\x3e\\x4d\\x19\\x2d\\x7f\\xf2\\x39\\x84\\xd8\\x82\\xe4\\xda\\x26\\xaf\\x9c\\xe6\\x71\\x49\\xed\\xa3\\xe7\\xcb\\x73\\xdb\\xa5\\x61\\x3a\\xd3\\x82\\x0a\\x5a\\xd0\\xf3\\x8f\\xe1\\x81\\x46\\xcd\\x8a\\x35\\x9f\\x61\\x4d\\xc6\\xf9\\x5c\\x06\\xc1\\xc0\\xe2\\x13\\xe1\\x5d\\x24\\x9c\\x7f\\x10\\x8e\\x98\\x9d\\x8d\\xef\\x4d\\x83\\x8d\\xfe\\xf5\\x37\\xe1\\x24\\x37\\x50\\xf9\\x1a\\x5d\\x48\\xcb\\x88\\xd4\\x01\\x2a\\x7c\\x5c\\x85\\x8f\\xfe\\x82\\xe1\\x7e\\xa6\\xc7\\x56\\x26\\x56\\x21\\x7a\\xee\\xe4\\x86\\x3a\\x76\\x59\\x76\\xd4\\xa6\\x53\\xef\\x0a\\x7b\\x53\\xef\\xd8\\xa4\\x03\\x8c\\x67\\xce\\xdc\\x31\\xa0\\x55\\x12\\x34\\xb2\\xad\\x6d\\xda\\x6f\\x09\\x2e\\x90\\xc4\\xa5\\x6e\\x49\\xbe\\x18\\xae\\xa0\\x75\\x34\\xdf\\xac\\x43\\xef\\xb9\\x8f\\xca\\x8c\\x4c\\xe3\\xaf\\xf3\\x8e\\xd7\\x37\\xde\\x83\\xb5\\x89\\x53\\xac\\x4d\\xc8\\x74\\x4b\\x60\\x64\\xee\\xd1\\xaa\\xaf\\xde\\xaf\\xe3\\x8d\\x59\\xf3\\x9a\\xe9\\xc6\\xdd\\xc8\\x94\\xf4\\x5c\\x53\\x94\\x29\\x3f\\xe8\\x54\\x95\\xff\\x21\\xe3\\x99\\x7e\\x5e\\x38\\x2d\\x57\\x58\\xf1\\x2c\\x6a\\x09\\x34\\xda\\xa7\\x0f\\x22\\x9a\\x23\\xd0\\x04\\x8d\\x02\\x92\\x5b\\x08\\x1f\\x04\\x5a\\xf5\\x10\\xad\\x27\\xd9\\xa3\\x7e\\xbb\\x2f\\xa0\\x2d\\x61\\x0b\\xf5\\xdb\\x34\\xab\\x86\\x2d\\x39\\xf5\\xa1\\xc7\\x06\\xdc\\xa7\\x52\\x74\\x03\\x43\\x83\\xc9\\x39\\x73\\x03\\x0c\\x48\\x78\\x87\\xd4\\xa7\\x0c\\x18\\xad\\x46\\x54\\x4e\\x94\\x8f\\xe9\\xe0\\x76\\x9d\\x95\\x8d\\xe6\\x51\\xb6\\x76\\x57\\x8e\\x95\\x9a\\x29\\x5d\\x96\\xd5\\x52\\x81\\x09\\x41\\x5d\\xbd\\xab\\x18\\xd5\\x26\\x6c\\xeb\\xa1\\x17\\xb1\\x48\\x4c\\x1f\\x77\\x5b\\x9d\\x32\\xca\\xc6\\xa8\\x27\\x89\\x82\\xac\\x28\\x02\\x8d\\x1a\\x0f\\xb5\\xf1\\x2f\\xbe\\x64\\x7f\\xe4\\x01\\x2a\\xb4\\x61\\x8e\\x46\\x77\\x6d\\x8c\\x2e\\x2a\\x35\\x53\\x31\\x07\\x4e\\x4b\\x03\\xb9\\x40\\x0d\\xcb\\xc9\\xb7\\x7a\\x5b\\x4a\\xf6\\xfb\\x3a\\x57\\x14\\x68\\x5d\\xc2\\x52\\x21\\x55\\x79\\x0f\\x12\\xcc\\xb1\\x0b\\xb9\\x59\\x29\\x94\\xc5\\xde\\x1d\\x8e\\xdb\\x84\\x9c\\x95\\xd7\\xaa\\x1c\\xf6\\xf9\\x74\\x08\\xf5\\x8e\\xdf\\x26\\xf6\\xb9\\x0b\\x5f\\xeb\\x6d\\xda\\xd5\\x7a\\x9b\\xcf\\xcb\\xf6\\xfd\\x16\\x49\\xbb\\x22\\x3e\\xbe\\x8e\\xed\\x04\\xb9\\x90\\xe6\\x2d\\x27\\x0e\\x58\\x83\\xb6\\x9c\\x51\\xdc\\x56\\x6b\\x12\\x28\\x3f\\x3f\\x14\\x3a\\xe4\\x51\\x65\\xca\\x2e\\x90\\xb1\\x27\\x63\\x4d\\x9e\\x36\\xef\\x09\\x3f\\xd5\\x4c\\x9a\\xcc\\xba\\x09\\x1e\\x15\\xc8\\xdc\\x05\\x3d\\x28\\x89\\x3b\\x2b\\x95\\x2b\\x5d\\x7a\\x48\\xf5\\x56\\x8b\\xec\\xa5\\x28\\xcc\\xb2\\x26\\x4f\\x5f\\x14\\x2a\\x2c\\xb8\\x8f\\x62\\x81\\x5a\\xbb\\x2c\\xd2\\xfc\\x85\\xd3\\x01\\xe7\\x36\\xcb\\xac\\x48\\x9c\\x62\\x48\\xea\\x4e\\xf4\\xfe\\x27\\xb8\\x22\\x2e\\xe4\\xa9\\x78\\xd4\\x87\\x6d\\x3a\\xce\\xbf\\xa2\\xfd\\x04\\x28\\xc6\\xad\\x74\\x62\\xa0\\xec\\xaa\\x45\\x16\\x4e\\xb9\\x1e\\x10\\xa6\\x63\\xdb\\x8c\\x42\\x8d\\x97\\xd1\\x4a\\x14\\x41\\x0b\\xcf\\x13\\x8b\\xc8\\xbf\\xb1\\x28\\x96\\xf2\\xb3\\xe1\\x83\\x2b\\x7c\\xfd\\x6e\\xa0\\x42\\x9a\\xfe\\x2e\\xe8\\x6b\\x7c\\xbd\\x3f\\xf1\\xfd\\xa5\\xb9\\x2e\\x31\\xd1\\x59\\x6d\\x0a\\xb9\\x41\\xcc\\x37\\x38\\xc8\\x7a\\xde\\x13\\x7b\\x3d\\xb1\\xf7\\x24\\x1f\\xb9\\x15\\x1e\\x8b\\xa8\\x44\\xed\\xae\\x90\\x76\\x1b\\x7e\\xfa\\x75\\x45\\x74\\xc4\\xef\\xa7\\xdf\\xbc\\xab\\xc5\\x57\\x7e\\x5a\\xa3\\x59\\x33\\xf5\\xeb\\x62\\x5f\\xab\\xb5\\xa9\\x16\\x79\\xa5\\xcb\\xd4\\x80\\x47\\x85\\x35\\xed\\x12\\xc7\\xb3\\x01\\xf6\\x59\\xc2\\x4b\\x81\\x53\\xe8\\x43\\x6d\\xb8\\xa0\\x25\\x3a\\x5c\\x04\\x02\\xf9\\x8a\\xc4\\x24\\x86\\xd8\\x7b\\x9b\\x14\\xae\\x2c\\xbf\\xb9\\x50\\x1f\\x2e\\x65\\xaf\\xb6\\xec\\x92\\x7e\\xf9\\x8e\\xd6\\x6f\\xc9\\xa4\\x29\\xbc\\x6b\\xa5\\xbc\\x5d\\x77\\x12\\xca\\x0b\\xb3\\x07\\xaa\\x22\\x38\\x32\\x47\\x50\\xb1\\x4a\\x9b\\x68\\xcd\\x86\\x70\\x9f\\x50\\x3e\\xff\\x1d\\x89\\x5e\\xc5\\x25\\xe0\\x14\\x52\\xb3\\x4b\\xeb\\x7a\\x28\\xfa\\x4c\\x97\\x1c\\x0d\\x0d\\x6a\\x82\\xee\\xd8\\xa8\\x8d\\x0e\\x35\\xb1\\x2b\\xeb\\xfe\\x81\\xef\\xa0\\xb2\\x53\\x6e\\x5c\\x4b\\xc4\\x1d\\xbf\\xb1\\x58\\xc1\\x40\\xee\\xf2\\x90\\xe7\\x5c\\x17\\x97\\xc4\\x97\\x6e\\x16\\x37\\x93\\xf0\\x32\\xfc\\x21\\x2d\\x3a\\x8d\\x60\\xae\\x0f\\x4b\\x64\\x15\\xf8\\x69\\xa2\\x06\\xf6\\x8d\\xea\\x36\\x40\\xfb\\x30\\xac\\x85\\xa5\\xe3\\xfc\\xb8\\xc7\\x35\\xea\\x6e\\x2d\\x5b\\xe5\\x5a\\xf4\\x1a\\x28\\x55\\x5a\\x75\\xab\\x01\\x97\\x7a\\xcc\\x5a\\x34\\x61\\xcb\\x76\\x5b\\x8a\\xf9\\x4c\\xaa\\x32\\x5c\\x1b\\x9f\\x3e\\x6c\\xe2\\x1c\\x4f\\x24\\xab\\xcf\\x66\\x6b\\x89\\xce\\x0e\\x34\\x65\\x61\\xe8\\xaf\\x05\\xcf\\x68\\x5d\\xfa\\xb7\\x61\\xf7\\xb5\\x4f\\x6b\\xb3\\x15\\x01\\x0e\\x3a\\xce\\xed\\x90\\xbb\\x93\\xda\\xf6\\x8d\\xd9\\x3b\\x96\\xc7\\xe0\\x74\\x79\\x28\\xd0\\x5e\\xf2\\x61\\x78\\xb2\\x40\\x66\\x97\\x7b\\xcd\\xf7\\xd6\\x97\\xd6\\x85\\xe7\\xb3\\xa4\\xb2\\x4b\\x47\\xa9\\x39\\x7e\\xfc\\x84\\x8b\\xab\\xb4\\xde\\x3c\\x94\\xf5\\x3d\\x66\\xeb\\xbf\\xfc\\xb5\\x40\\x93\\xfb\\x0b\\xd0\\x32\\x5a\\x0a\\xa7\\xc3\\xb4\\xc0\\x27\\x22\\x94\\xd9\\x72\\xd0\\xac\\x0a\\xd4\\x50\\xf5\\x41\\xd5\\xf2\\xbf\\x24\\xeb\\x42\\x1d\\xd9\\x71\\xb3\\x62\\xa1\\xd1\\x5c\\x5a\\xef\\x30\\x3a\\xf5\\x16\\xe2\\x2d\\xb1\\x71\\x98\\x89\\x60\\x6a\\x2e\\x44\\x80\\xc4\\x25\\x1e\\x38\\xff\\x5b\\x63\\xd0\\xaf\\x36\\x34\\xef\\xbf\\xac\\x7a\\xde\\xc0\\xbb\\x4a\\x61\\x41\\x17\\x9d\\x74\\x82\\x7b\\x36\\x09\\x1f\\x24\\x67\\xc8\\x3a\\x3a\\xa1\\xcc\\x82\\xc6\\x23\\xdd\\x28\\xe7\\x16\\x7b\\x9c\\xd1\\x66\\x03\\x89\\x5f\\xd3\\xb9\\x24\\xed\\x33\\x96\\xbf\\xb1\\x2c\\x03\\xdb\\xb7\\xa0\\x8f\\xb3\\x5b\\x2e\\x06\\x41\\x0b\\x1f\\x58\\x7c\\x94\\x77\\x72\\x13\\x04\\x9c\\xa8\\x84\\x5e\\xb6\\xcf\\x1b\\x6d\\xc8\\x0c\\xb8\\xe7\\x99\\x82\\xb0\\x7a\\x32\\xcd\\x0e\\x17\\x86\\xf4\\xa1\\x26\\x4f\\x54\\xf7\\x57\\xa0\\xd8\\x95\\xa6\\x7e\\xb7\\x1b\\x92\\xa5\\xb1\\xd4\\x5b\\x18\\xa5\\x52\\x27\\x3e\\x44\\xcd\\xef\\xa6\\xac\\x0b\\xcf\\x9f\\x32\\xcb\\x33\\xfe\\x92\\xfb\\x72\\x1e\\x4a\\x5f\\x0b\\x7b\\xf2\\x9a\\xb7\\x03\\xee\\xdd\\x89\\x80\\x83\\x50\\x81\\xfe\\x88\\xcf\\x57\\x6a\\x70\\xa5\\x85\\x69\\x64\\x6f\\xe8\\x31\\xe4\\x2f\\xcd\\x83\\xfa\\x13\\xd7\\x14\\x6c\\xf0\\xe0\\x7e\\x60\\x1e\\x94\\xe9\\xc1\\x5c\\x9a\\x3c\\xb7\\xcb\\xf5\\xd9\\x3f\\x48\\xf2\\x0a\\x02\\xce\\xf4\\x35\\x0d\\x17\\x12\\x89\\x59\\x28\\x26\\x95\\x41\\x46\\xaf\\x49\\xde\\x9a\\x2c\\x15\\xfd\\xd7\\x51\\x6d\\xcf\\x6a\\x70\\x40\\xd0\\x41\\xfd\\xff\\x1d\\xa9\\x37\\x67\\xb6\\xc1\\xd8\\x84\\x55\\xe0\\x33\\x7f\\x0e\\x45\\x6c\\x07\\x2e\\x30\\xfe\\x1c\\xce\\xd4\\xa3\\x98\\x17\\x48\\xd0\\x86\\x0a\\xa4\\x87\\x84\\x3e\\xee\\xb8\\xf2\\xd6\\x8a\\x0f\\x35\\x7e\\x8a\\x8d\\x94\\xf7\\xbe\\x6d\\xba\\x52\\x66\\x63\\x71\\xe7\\xc6\\x88\\xc7\\x96\\x49\\x7d\\x1f\\x8e\\xa0\\x7d\\x2a\\x51\\x44\\x67\\xca\\xe0\\x5c\\x96\\x89\\xdf\\x20\\xaf\\x1d\\x62\\x85\\xb5\\x22\\x6d\\x37\\xa6\\xf1\\x72\\xbe\\x45\\xfd\\xe9\\x82\\x28\\xbb\\x20\\x60\\x81\\x1b\\xf5\\xa7\\x3c\\x48\\x78\\x1d\\x6d\\xb4\\x30\\xe5\\xee\\x06\\x79\\xfd\\x3a\\x1b\\x1e\\xe3\\x74\\x7d\\x28\\xc0\\x0e\\xa1\\xdd\\x67\\x8d\\x1c\\x75\\x68\\x91\\x3b\\x22\\x8f\\x9d\\x29\\x80\\xec\\x04\\x0e\\xd9\\x9b\\x59\\x69\\x51\\x93\\x84\\x9f\\x9b\\xf6\\xdf\\x0c\\xb7\\xa7\\x03\\x6e\\x81\\xdb\\x83\\xbe\\x03\\x1e\\x77\\xc8\\xa6\\xac\\x26\\xdb\\x7f\\x12\\x4d\\x6a\\xaf\\x2c\\x3f\\x0a\\x4d\\xd2\\x1d\\x80\\x99\\x13\\x36\\x4b\\x88\\x87\\xaa\\x5a\\x2a\\x25\\x99\\xdc\\xa0\\xf3\\x6a\\xa4\\x71\\x5f\\x69\\x65\\xdc\\x97\\xfc\\xb7\\xd3\\xdc\\xe0\\x26\\xf7\\x14\\x61\\x1f\\x86\\x8d\\xc1\\x75\\xa6\\xa5\\x2a\\xe6\\x6c\\x96\\x06\\xc6\\x8f\\xfc\\x0e\\xb4\\x8e\\x79\\x7f\\x91\\x73\\x01\\xd6\\x78\\x33\\x41\\x41\\x09\\x50\\x82\\xf7\\x7d\\xc2\\xe1\\x64\\x99\\x84\\x0b\\x4c\\x12\\x60\\x8b\\x72\\x4f\\xcc\\x4c\\x71\\x6a\\xd7\\x9b\\x94\\xfa\\xb1\\xe9\\x7b\\x40\\xe0\\x84\\x23\\xfb\\x7f\\xef\\xea\\x0f\\x4b\\x05\\x09\\x0f\\x6d\\x5b\\x6d\\xcf\\xe7\\xb1\\xb3\\xb6\\x86\\x34\\xdf\\x26\\x63\\xee\\xe1\\x2a\\x15\\xe7\\xd3\\x7a\\x87\\x83\\x02\\xf5\\x27\\x5a\\xf7\\x45\\x61\\xe2\\x33\\xa9\\x3a\\x83\\x4e\\xb4\\x68\\x29\\xf5\\x54\\xd8\\xe4\\x2e\\xf9\\x58\\x7a\\x24\\x6c\\x93\\x9f\\x78\\x60\\x1f\\xac\\x8a\\x5a\\xa1\\xe5\\xb6\\x34\\x6b\\x20\\x49\\xa9\\x3f\\x76\\x17\\x20\\x31\\x5c\\xac\\x64\\x45\\xb7\\xd6\\xeb\\xa5\\x75\\x34\\x66\\xb5\\xb0\\xd8\\x6d\\xc0\\xce\\xca\\xe4\\xd9\\x93\\xdb\\x7a\\x11\\xa1\\x3e\\x7b\\x15\\x6d\\xd6\\x67\\xaa\\xdd\\x1b\\xc5\\xa2\\x40\\x94\\xf2\\xf4\\x8d\\x38\\xb3\\x90\\xc5\\xde\\x32\\x47\\x51\\x91\\xd9\\xe5\\x2d\\xe5\\x98\\xf6\\xc4\\x19\\x48\\x4d\\xbe\\xd5\\xc1\\x9c\\xc7\\x2d\\x0f\\xc9\\xf1\\xab\\xa5\\x38\\x26\\x23\\xe7\\xa2\\x13\\x8d\\xe1\\x24\\x3e\\xa3\\x18\\x3d\\xf4\\x8b\\xa2\\xdb\\x89\\x17\\x16\\x2f\\x5e\\x44\\xc1\\xcb\\x41\\xef\\x16\\x05\\xfd\\x9d\\xa8\\x3a\\x3a\\xaf\\x02\\xa1\\x02\\x55\\x58\\x4c\\xb2\\x24\\xeb\\x2b\\xf0\\xe8\\x08\\x81\\x6b\\xb5\\x9f\\x14\\x98\\xb3\\x7b\\xe1\\x1a\\x5c\\x2c\\x65\\x8d\\xb5\\xcc\\x19\\x06\\xd7\\x87\\x0f\\xb3\\x99\\x2e\\xc5\\xed\\x09\\x0a\\x6d\\xc3\\x98\\x93\\x87\\xb3\\xfb\\x68\\x4c\\x78\\x37\\x21\\x3d\\x3c\\x12\\xc1\\x06\\x0a\\x66\\x30\\xc6\\x24\\x4c\\xf1\\x34\\x3f\\x02\\xe2\\xbe\\x64\\x67\\x8a\\x49\\xe9\\x0e\\x43\\xb9\\xda\\x50\\x4d\\xa8\\x09\\xf0\\xac\\x13\\x5b\\x2b\\xc6\\x9d\\x33\\x29\\xa1\\xfe\\x9b\\xdb\\xef\\xec\\xca\\x9b\\x42\\xcb\\x61\\xf7\\x08\\xbc\\x23\\xac\\x0d\\xb9\\x3c\\x0e\\x4d\\x52\\xe2\\xa4\\x7c\\xd1\\x7e\\x05\\xee\\xb7\\x7b\\xa9\\xb2\\x5d\\x48\\x66\\x0e\\x5b\\x1d\\xcc\\x51\\x8c\\x97\\x24\\x05\\xdd\\xe2\\x8a\\x0e\\x9c\\x67\\x71\\x12\\x74\\xdf\\x28\\xdf\\xe9\\x5e\\xa2\\xca\\x9f\\xa7\\x06\\x31\\x88\\x2a\\xbf\\x57\\x4c\\x9a\\x41\\x37\\xa0\\x03\\x58\\xc7\\x93\\x75\\xe1\\x52\\xbc\\x27\\x1d\\x33\\x8e\\x82\\xf6\\xdf\\xbe\\x15\\xb3\\x9a\\x1d\\x56\\x58\\x18\\x36\\x7f\\x22\\x77\\xaf\\xc0\\xc7\\x91\\x55\\xf3\\x26\\x69\\xde\\xc0\\x36\\xca\\xf5\\x41\\xd9\\xab\\x43\\x89\\x80\\xed\\xab\\x5e\\x93\\x65\\xd8\\x1a\\x40\\x70\\xe3\\x93\\xf9\\xb7\\x30\\x21\\x4a\\x27\\xd5\\x8d\\xac\\x72\\xba\\x4a\\xd6\\x53\\xcc\\x23\\xf8\\x10\\x52\\x1d\\x69\\xcf\\xd9\\x8b\\x06\\x38\\xbf\\x1a\\x19\\xcf\\xee\\x39\\xc6\\xb8\\xce\\x80\\x71\\x3b\\xae\\x6c\\x8b\\x73\\xdc\\x2c\\x49\\xf6\\xa9\\x10\\xfb\\x68\\x53\\xc3\\x92\\x5f\\x39\\xa3\\x3b\\xf3\\xa4\\x8e\\x74\\x09\\x38\\xb3\\x10\\x8c\\x83\\x8d\\xd9\\xb7\\xbb\\x6a\\xe8\\x02\\xca\\x33\\xb7\\xf2\\x5c\\xbb\\xcb\\x4e\\xee\\x67\\xb8\\xa9\\x14\\x69\\x13\\x13\\x18\\x3b\\xaa\\xaa\\x5e\\x61\\xf5\\x4d\\x59\\x96\\x2c\\x4e\\x55\\x06\\x20\\x3d\\x5f\\xa0\\x40\\x97\\x7f\\x42\\xb2\\xfb\\x26\\x83\\x46\\x55\\x68\\x17\\x89\\x5a\\xb1\\xdb\\x21\\x7c\\x4c\\x65\\x05\\x9f\\xd8\\x50\\x03\\x43\\xcb\\xcb\\xd9\\x95\\x84\\xa7\\x20\\xb3\\x9d\\x4c\\xb0\\x59\\xa5\\xec\\xf8\\x72\\x9e\\xef\\xed\\x40\\xd1\\x8d\\xbb\\x4f\\x99\\xfe\\x61\\x29\\x57\\xad\\x87\\xf4\\x0c\\x8e\\x7b\\xee\\xbe\\x10\\xba\\xe8\\x90\\xd6\\x04\\xe3\\x07\\xea\\xa0\\x6f\\x31\\x96\\xe0\\x74\\x2b\\xdc\\xee\\x42\\xaa\\x10\\x81\\xbf\\x9a\\xd8\\x3d\\xbd\\x48\\xae\\x4c\\x1c\\x98\\x48\\xe5\\xb5\\x1a\\xcb\\xd1\\x9f\\x00\\xb7\\x8c\\xb5\\xf5\\xc1\\xdc\\x44\\x61\\x23\\x5f\\x3c\\xd6\\x14\\xe5\\x8c\\xc7\\x04\\x94\\x72\\x0b\\xde\\xdc\\x77\\x23\\x07\\xfd\\x88\\xa1\\xcb\\x43\\x8f\\x86\\x5e\\xf9\\x68\\x68\\xe8\\xde\\xd0\\x75\\x73\\xf6\\xdd\\x9c\\x9a\\xf9\\xf7\\x32\\xd9\\xf6\\xf4\\xf7\\xb7\\xd4\\xf6\\xfc\\x3b\\xdb\\x7a\\x4b\\xbe\\x2f\\x0b\\xf2\\xf7\\xea\\xfc\\x07\\x9b\\x66\\xa7\\xff\\xbb\\x24\\x5e\\xcf\\x7e\\xbb\\x1e\\x26\\x12\\x8e\\xe3\\xdd\\x43\\xe7\\x6f\\x8b\\x2c\\xdc\\x8f\\x77\\x76\\xd9\\x32\\x02\\x8a\\x33\\xc9\\x04\\x36\\xff\\x46\\x23\\x14\\x04\\x6e\\xcc\\xae\\xe8\\x4a\\xd1\\x9b\\xbc\\x02\\x70\\x48\\x9f\\x13\\x5f\\x25\\x88\\xb7\\xc6\\xa8\\x59\\x35\\xa8\\x58\\xa8\\x67\\xfe\\x28\\xa3\\x3e\\x28\\xb0\\x16\\xdc\\xc1\\x64\\x89\\x81\\x1c\\x82\\xe1\\x10\\x62\\x28\\x4a\\x1a\\x15\\xa6\\x07\\xdd\\x8a\\x07\\x4d\\x12\\x38\\xc0\\x58\\x00\\xb8\\x00\\xa9\\x00\\x84\\x03\\x6e\\x73\\x01\\xbb\\x81\\xa2\\xd6\\xf1\\xfe\\xf8\\x84\\xed\\x60\\x45\\x51\\xd6\\xa8\\xa0\\x99\\x86\\xa6\\xe5\\x17\\x29\\x72\\xb4\\xf9\\xcc\\xf3\\xb3\\x60\\x85\\x0a\\x0c\\xc5\\x98\\xa5\\x40\\x2b\\x35\\xba\\x99\\x29\\x77\\x04\\x0a\\x0c\\xef\\xfe\\xb2\\x8a\\xf8\\x47\\xd2\\x54\\xd3\\x11\\x4c\\x0f\\xb1\\x55\\x2c\\x8c\\x3a\\x27\\xd8\\x2f\\x70\\xe2\\x59\\xd9\\x2a\\x3c\\x6f\\x91\\x8a\\x09\\x97\\xf2\\x77\\x69\\xfd\\x3d\\xa1\\xf5\\x26\\x71\\x2c\\x7a\\x54\\x54\\xfd\\x92\\xf8\\xec\\x3a\\x5b\\x2c\\xa0\\x03\\x05\\x0d\\xd7\\x42\\xf5\\x1f\\xeb\\x0e\\xf4\\x7b\\xaf\\xfa\\x53\\x70\\x71\\xe8\\x6e\\xc8\\xa7\\xec\\x1a\\xc9\\xe0\\xa1\\x8c\\x25\\xaf\\x7d\\x68\\x8e\\xe3\\x5d\\x74\\x5b\\x59\\xd3\\xce\\xde\\xb6\\xcd\\xf5\\x07\\x3f\\x6e\\x13\\xb8\\xe0\\x26\\xa3\\x5d\\xa1\\x35\\x0a\\x7d\\xf5\\x73\\x9c\\xd5\\x6c\\xe5\\x46\\x72\\x1f\\xd1\\x9e\\x19\\xc0\\xe3\\x4a\\x8a\\xf0\\x4f\\x2e\\xcf\\x3e\\xe2\\x81\\x49\\x16\\xfa\\xd7\\x60\\x5f\\x31\\xee\\xc4\\xa2\\xc5\\xdb\\x73\\x6c\\x8f\\x2a\\xdd\\x72\\x9d\\x7c\\x31\\x9e\\xcc\\x53\\x7c\\x66\\xd8\\xc1\\x09\\xc7\\xb1\\xb7\\x82\\xc8\\xe7\\xcc\\xac\\x70\\x64\\x52\\x96\\x97\\x74\\x84\\x66\\xf4\\x34\\x08\\x82\\x22\\x28\\x3b\\xac\\x45\\x6d\\x63\\xa1\\x70\\x6a\\x4b\\x4a\\xa1\\xd6\\xb4\\x55\\x34\\xa2\\xd8\\x70\\xc1\\xa1\\x3e\\xcd\\x5a\\x91\\xd0\\xfa\\x45\\x42\\xa7\\x8e\\x76\\x5f\\xb8\\x24\\x59\\xe6\\xd5\\xc4\\x73\\x73\\x47\\x89\\xac\\xa1\\xbd\\x8b\\xe6\\x0d\\x7b\\x9f\\xa2\\x26\\x88\\x32\\xd1\\xbd\\xc7\\x20\\x84\\x3d\\x35\\x37\\x96\\x9a\\x72\\xbe\\x86\\x5a\\x97\\x2e\\x3e\\x4c\\xbc\\xed\\xba\\xcb\\x4e\\x25\\x89\\xe9\\x93\\xef\\x5c\\xb6\\xbb\\x89\\xe4\\x21\\x16\\x2b\\xe1\\x7c\\x6b\\x15\\xad\\x1c\\x5b\\x08\\xd7\\xd0\\xc9\\xe1\\x23\\x36\\x53\\x55\\x90\\xac\\x70\\x7d\\xfd\\x68\\x48\\xdf\\x53\\xff\\x86\\xd3\\x2f\\x8a\\x22\\x94\\x8f\\x7f\\xce\\xa8\\x8b\\x15\\xfa\\x61\\x69\\xf9\\x23\\xa6\\xb7\\xb8\\xc1\\x67\\x3e\\x98\\xe0\\x1d\\x53\\x57\\xf5\\xc6\\x1c\\x1d\\x43\\x00\\xf8\\x61\\x82\\x83\\xa1\\xc2\\xa8\\xd1\\x6e\\x3e\\x3e\\x37\\x67\\x30\\x19\\xb4\\x82\\xd6\\x2b\\x55\\x91\\x50\\xd5\\x88\\xa2\\x47\\x8e\\xb2\\x83\\xf7\\xff\\xe3\\x9a\\x9a\\x16\\x02\\x77\\xc2\\x19\\x74\\x7d\\x1c\\x97\\x16\\x37\\x78\\xfe\\x79\\xb9\\x54\\x18\\x78\\x7a\\x4a\\xc0\\x2a\\x7c\\x76\\xb1\\x1e\\x07\\x37\\x68\\xa5\\x36\\xfa\\x62\\x10\\xfb\\xa3\\x0b\\x7a\\xb7\\xe2\\xdf\\xbb\\x18\\xeb\\xec\\xa0\\x31\\x2c\\x8f\\x4c\\x67\\x6e\\x5d\\x95\\x42\\x35\\x7b\\x95\\xa6\\xdc\\xe1\\x8a\\x3c\\x2d\\x9b\\x8b\\x07\\x4f\\x80\\x9d\\x8d\\x2c\\x5c\\xda\\xb9\\xe0\\x2a\\xb3\\xfd\\xe8\\x43\\xe5\\x15\\xf2\\x72\\xf6\\xeb\\xa0\\x17\\x51\\x6d\\x58\\x08\\x3f\\xb1\\x7f\\x19\\x49\\xfa\\x65\\x4d\\xa1\\x8b\\x0a\\x68\\xb7\\x71\\xc2\\x11\\xab\\x48\\x88\\xc3\\x59\\x75\\x2d\\x19\\xda\\xdf\\x7f\\x5a\\xb2\\xf8\\x04\\x5d\\x91\\x83\\x30\\x52\\x0a\\x43\\x81\\x2c\\x5b\\x92\\xd4\\x68\\x8d\\x25\\x06\\x20\\x49\\x8a\\x34\\xe6\\x8d\\x45\\x0b\\x42\\x4a\\x82\\x60\\x76\\xd8\\xac\\x14\\xd0\\x4c\\xfa\\xa7\\xff\\xa9\\xfe\\x5b\\x74\\x02\\xac\\x30\\x01\\xa2\\x75\\x04\\xf4\\x9a\\x7b\\xba\\x55\\x91\\xc3\\xfc\\x08\\x87\\x99\\x82\\x61\\x22\\x5b\\x35\\x3d\\x8a\\x7a\\xa5\\x9a\\x0f\\x4b\\xa9\\x7e\\x8e\\x96\\x2d\\xdb\\x30\\x12\\xcd\\x0b\\x49\\xe4\\x39\\xa8\\x9c\\x7c\\xa7\\xd2\\x42\\xcd\\x11\\xa8\\x7e\\x25\\x76\\x19\\x28\\x5f\\xea\\xb8\\x0e\\xfb\\x7a\\x88\\xb2\\xa7\\x76\\x21\\x4d\\x76\\xc2\\xbb\\xba\\xa0\\x02\\x05\\x9a\\xcc\\x04\\x47\\x6c\\xff\\x45\\x22\\x45\\xa4\\x72\\x0b\\xec\\x92\\x3e\\x8f\\xd6\\xef\\xba\\xd5\\x81\\xa6\\xd0\\x4f\\x25\\x1e\\x22\\xbf\\xf2\\x2d\\xf5\\x50\\x46\\x11\\x0b\\x38\\x95\\xc6\\xbb\\xfc\\x16\\x96\\xb1\\x8c\\x0b\\x8b\\x1d\\x9e\\x98\\x80\\x0f\\xce\\x46\\x4f\\x75\\x0e\\xeb\\x18\\xad\\x9d\\x04\\xa1\\xa3\\x6a\\x4a\\x0d\\x45\\xbd\\x3e\\x44\\x22\\xeb\\x6f\\xea\\xea\\x5d\\x9d\\x91\\x40\\x92\\xa9\\xd1\\x88\\x92\\x64\\xa3\\xf8\\x06\\x10\\x2e\\x1c\\xd5\\x9c\\xf7\\x4a\\x5d\\x6a\\x73\\xb8\\xc1\\xff\\x56\\x12\\xa5\\x04\\x53\\x5b\\x62\\x62\\x2f\\x20\\x35\\xab\\x66\\x41\\xf2\\xe7\\xba\\xf6\\x56\\x7d\\xb6\\x4f\\x95\\xc2\\x16\\x4f\\x10\\x65\\x79\\xb4\\xba\\x1c\\x0a\\x20\\x6f\\x80\\x60\\xd6\\xc4\\xa8\\x64\\x3f\\xef\\x86\\x7b\\xdd\\x29\\x9e\\xed\\x84\\xcf\\x40\\x2c\\x7a\\x7a\\x89\\x8a\\xba\\x34\\x6c\\x0d\\xea\\x7b\\x59\\xa6\\x5a\\x1d\\x2c\\x70\\x71\\x3d\\x45\\x07\\xf6\\xa7\\x84\\xe8\\x82\\x63\\x52\\xba\\xae\\x64\\x1b\\xa1\\xb5\\x66\\x75\\xca\\x57\\x12\\x79\\x05\\xeb\\x56\\x60\\x7f\\x23\\xb2\\xc6\\x8d\\xa5\\x34\\xe9\\xbc\\x40\\xa4\\xd7\\x3c\\x24\\x9c\\x55\\x11\\x5c\\x54\\x61\\x50\\x2d\\xb9\\x3c\\x4a\\x99\\x5d\\x12\\xfa\\x86\\xf0\\x19\\xb9\\x5d\\xa5\\x95\\xb3\\x07\\x74\\x47\\xf9\\x07\\x32\\x9d\\x88\\xe8\\x51\\x44\\xce\\x07\\xd2\\x21\\x85\\x52\\xb7\\x5d\\x6d\\xb1\\xb9\\xed\\xc9\\xe2\\xc6\\xe5\\x76\\xbc\\xed\\x79\\xaa\\x57\\xe7\\xf4\\xcb\\x64\\x69\\xaa\\x7e\\xc9\\x1f\\xef\\xf9\\x5f\\x98\\xf4\\x79\\xe3\\x2a\\x35\\xed\\x0c\\x9b\\x8f\\x6c\\x55\\xf8\\xa2\\xe8\\xf3\\xed\\x5e\\x9c\\x46\\xa3\\x75\\xf7\\x0c\\x6c\\x2d\\x11\\xb9\\x3d\\x18\\x8b\\xd5\\x3f\\x38\\xde\\x67\\xa1\\xde\\x0a\\x68\\xa8\\xfd\\x24\\x88\\x1f\\x9a\\x18\\x34\\xc7\\xa4\\x83\\x38\\x0a\\x51\\x51\\xc8\\x82\\x07\\x23\\x18\\x07\\x89\\x09\\xbb\\xeb\\xd1\\x7d\\xad\\x3a\\xf2\\xae\\x31\\x11\\x54\\x41\\x62\\x8e\\x8d\\x6a\\x0f\\x4a\\x25\\xf8\\x90\\xaa\\x1a\\x72\\x09\\xcb\\x14\\x1d\\x52\\xf5\\x50\\x97\\x7d\\x5a\\x77\\x53\\x5e\\x9e\\x27\\x55\\x11\\xa1\\xc8\\x5f\\xfb\\x08\\x34\\xcc\\x35\\x2a\\x54\\x81\\xc6\\x83\\x9c\\x7f\\xcb\\x80\\x92\\x1f\\x45\\xbd\\x5b\\x17\\xc0\\x59\\x06\\x74\\x72\\x13\\xe9\\xa2\\x5f\\x9b\\xfd\\x69\\x3f\\xc0\\x3a\\x03\\x70\\x00\\x9b\\xa0\\xd1\\x02\\xa2\\x5d\\x9b\\x81\\x3f\\xa6\\x64\\xf3\\xfc\\x44\\x19\\xcb\\xb6\\x4d\\x8f\\x8e\\xfd\\x2f\\xa4\\x67\\x4c\\xbc\\x93\\x08\\x10\\x22\\x16\\x05\\x41\\xff\\x58\\xa7\\x30\\x1f\\x57\\x19\\x28\\xec\\xa1\\x82\\x1c\\x15\\xc8\\x76\\xa2\\xbf\\xde\\xfb\\xc8\\x2a\\x0e\\xeb\\xfd\\xb6\\xbc\\x4a\\x39\\x98\\x10\\x76\\x30\\x26\\x9e\\xa0\\xc6\\xca\\xef\\xef\\xe7\\xdc\\x74\\x2a\\x05\\x79\\x69\\x42\\xf3\\x88\\x2c\\x20\\x75\\x2e\\xcb\\xa1\\x93\\xad\\x5b\\xa6\\x16\\xfc\\xce\\xd9\\xf2\\x60\\xe0\\xff\\xe5\\xe5\\xca\\x4d\\x48\\x50\\x70\\xeb\\xd3\\x06\\xc1\\x6e\\x8a\\x64\\xe4\\xb0\\xa9\\x8f\\xec\\xb8\\x82\\x01\\xc3\\xfd\\x6f\\x5f\\x4b\\xf4\\x14\\x72\\x95\\xa4\\x90\\x71\\xb2\\x96\\x13\\xf6\\x69\\xb7\\xee\\xb2\\xba\\x78\\xc2\\x18\\xad\\x7d\\xc8\\xea\\x86\\x95\\x13\\x5f\\x21\\xcd\\x82\\x23\\xe1\\x9c\\x22\\x77\\xa4\\x75\\x45\\x4f\\x54\\x80\\xe6\\x63\\x30\\xf4\\xa1\\x7a\\x7b\\x74\\x71\\x86\\x9c\\x09\\xbf\\x31\\xd5\\x33\\x17\\xa5\\x14\\x24\\x76\\xa3\\x8e\\xe8\\x7e\\x26\\xa7\\xe0\\xc5\\x48\\xe7\\x50\\x75\\xb0\\x46\\x07\\xf2\\xba\\x59\\x8f\\x67\\x54\\xd7\\x67\\x74\\x4d\\x62\\x8e\\x37\\x8c\\x7b\\xee\\xa0\\x2f\\xad\\x4b\\x24\\x72\\xef\\x09\\xf3\\x9e\\x41\\xd8\\xc0\\x0e\\x20\\xec\\xa9\\x63\\x15\\x68\\x00\\x5f\\x8d\\xf2\\x66\\x66\\x6f\\x63\\x54\\x1a\\x6f\\x02\\xcc\\x4d\\x5f\\xf5\\x0c\\x80\\x9c\\x51\\x56\\x34\\x63\\x10\\x37\\x89\\xa3\\x23\\xf2\\x19\\x03\\x1b\\x06\\x53\\x61\\x11\\xd9\\x27\\x07\\x2c\\x53\\x28\\x72\\x7f\\x89\\xcf\\x88\\xf9\\x4c\\x00\\x22\\x6b\\x6b\\xdb\\xaa\\x06\\x3d\\xa1\\x32\\xec\\xf9\\x20\\x27\\xcc\\xaa\\x06\\x3e\\xe5\\xce\\x2c\\xba\\xa9\\xfd\\x6b\\x9b\\x9a\\xaa\\xff\\xd9\\x95\\x96\\xeb\\x9b\\x7e\\x54\\xec\\xbb\\x6c\\x18\\x4c\\xa0\\x48\\x51\\xe4\\x7f\\xce\\x9e\\xbc\\x15\\xcc\\xca\\xea\\x67\\x67\\x54\\xef\\xfb\\x7a\\x8e\\xf3\\x25\\x4a\\x3b\\x87\\x12\\xc0\\x5a\\x9f\\x22\\x2d\\xcf\\x54\\x63\\x64\\x1b\\x7c\\x14\\x02\\x45\\xe1\\x85\\xfa\\x7d\\x78\\x4d\\x05\\x5a\\x07\\x26\\x6f\\x1b\\xda\\xe6\\x6f\\xb2\\x58\\x41\\xec\\x08\\xa8\\xad\\xfd\\x10\\xf6\\xe0\\x54\\xf9\\x6f\\xf5\\x32\\xae\\x43\\x04\\x20\\x8a\\x4c\\x20\\x79\\xa4\\xea\\x52\\x12\\x79\\x36\\x5f\\xea\\x68\\xe5\\x73\\x85\\x87\\xe4\\x5b\\x75\\xca\\x74\\x8b\\x56\\xe0\\x73\\x48\\x29\\x7b\\xc0\\x51\\xd0\\xf4\\x93\\x5a\\xa0\\x5a\\xe6\\x6e\\xdc\\xd2\\x7d\\x79\\x67\\x63\\x08\\x53\\x05\\x38\\x86\\x91\\xec\\x30\\xd4\\xb8\\x8b\\xfa\\x07\\xc3\\x94\\x4b\\x95\\xe7\\x04\\xd2\\x8e\\x9d\\x5d\\x8d\\xd7\\xe2\\x90\\xdb\\xc3\\xba\\x59\\x86\\xc9\\x65\\x25\\x7a\\xaa\\xca\\x47\\x17\\x53\\x00\\x78\\x4e\\xb7\\x5a\\x14\\xea\\x81\\xf3\\x72\\x39\\x82\\x09\\xe9\\x00\\xb4\\x98\\xff\\x78\\xf5\\x99\\x97\\x3e\\x51\\x2e\\xf5\\x92\\x09\\x1b\\x75\\xf5\\x19\\xef\\x4a\\x49\\xc9\\x4f\\x00\\x30\\x90\\x95\\x15\\xfe\\x59\\xa2\\xe6\\x10\\x54\\x2b\\xc5\\x42\\x5c\\x8b\\x92\\x24\\xc1\\x1c\\x1c\\x0b\\x02\\xf5\\xc2\\xb3\\x78\\x13\\x42\\x29\\x95\\x48\\xa2\\x2b\\xc5\\xc7\\x08\\xc4\\xdf\\x4d\\x5f\\xa6\\xa8\\xba\\x60\\x6e\\x98\\xec\\xdc\\x84\\x17\\xcb\\x3c\\x0f\\x08\\x8a\\x35\\xcf\\x61\\x8a\\x54\\x8c\\xc8\\x2c\\xae\\x06\\xc8\\x60\\x1b\\x23\\x84\\x60\\xd0\\x84\\xba\\x89\\x4f\\x65\\x9e\\xd7\\x8f\\xb1\\x99\\x7a\\x3b\\xab\\xc2\\xb8\\xe9\\x59\\x54\\x44\\x0b\\x5b\\x6c\\x81\\xc7\\xf1\\x21\\xd3\\x7d\\x36\\xb1\\xf7\\x5a\\x18\\x76\\x69\\x01\\x42\\xb2\\x13\\x43\\x8f\\xa8\\xcd\\xae\\x93\\xcf\\x43\\xf0\\xb0\\xe2\\x89\\xe7\\x55\\x2d\\x78\\x77\\x20\\x03\\x21\\xdb\\x6c\\xcc\\x95\\x47\\x77\\x78\\x5c\\xe8\\xa7\\x87\\x1c\\x86\\xba\\xc7\\x58\\xf3\\x14\\x28\\x3a\\x4e\\x82\\x39\\x43\\x12\\x08\\xa1\\xbc\\x95\\xbe\\xf5\\x16\\x2b\\x60\\xec\\x4d\\x28\\x4a\\xc3\\x5a\\x6f\\xd8\\x61\\x61\\xa2\\x0d\\xb3\\x95\\x8b\\x3e\\x83\\x41\\xcc\\x62\\xd6\\xfb\\xcc\\x12\\xf5\\x22\\x97\\x58\\x7f\\x1a\\x5d\\xe7\\xde\\x4f\\x92\\x34\\xba\\x0b\\xf5\\x1f\\xec\\xcc\\x6e\\xd3\\xab\\xec\\x92\\x3c\\x43\\xb8\\xb2\\xf4\\xe6\\x45\\x5e\\xd8\\xc0\\xff\\x57\\x0d\\xcc\\x4f\\xeb\\x1c\\x04\\xe0\\x28\\xcc\\x88\\x7a\\x10\\x99\\x81\\x0c\\x85\\x38\\x45\\x4c\\x0a\\xb9\\x20\\x68\\x96\\xae\\x3a\\x76\\xf2\\x41\\xae\\x40\\x92\\xb8\\x76\\xb8\\x2a\\x08\\xc5\\xdc\\x3f\\x7d\\xa8\\x16\\xaa\\x35\\x39\\x2f\\x5b\\x1f\\x6b\\x91\\x3a\\x8a\\x38\\xd5\\x5f\\x62\\xc2\\xe3\\xf3\\xf0\\x87\\x90\\xf2\\x01\\xd5\\x36\\xe1\\x3f\\x5b\\xce\\x2e\\x78\\x93\\xed\\xba\\x3e\\x6e\\x9b\\x10\\xbe\\x75\\xde\\xbe\\x02\\xeb\\xb0\\x87\\x08\\x7d\\x85\\x40\\x22\\xef\\x9a\\x67\\x36\\x90\\xa6\\x7a\\x07\\x54\\xc8\\x33\\x26\\x7b\\x7a\\xae\\x29\\x8b\\x46\\x32\\x6d\\xe9\\x54\\x01\\x53\\x46\\x5d\\x39\\x88\\x52\\xe3\\x28\\x2e\\x76\\xc1\\x96\\xc5\\xe9\\x3d\\xa7\\x3b\\x4c\\xea\\xd8\\x1d\\x08\\x85\\x20\\x9a\\x26\\xd6\\x75\\xf5\\xae\\x06\\xd1\\x05\\x8d\\xee\\x00\\xbc\\x61\\x00\\x96\\x89\\x4e\\x56\\x6d\\xef\\xe4\\x94\\x55\\x15\\x3e\\x21\\x3b\\x74\\x09\\xfd\\x29\\xb3\\x49\\x77\\x14\\xb9\\x05\\x62\\x8c\\xf0\\x7f\\xaa\\xca\\xbe\\x6b\\x9a\\xb4\\x78\\x47\\x6c\\xc9\\x40\\x45\\x4c\\x49\\x16\\x10\\xbd\\x1f\\xcc\\xb9\\x2f\\x97\\xe5\\xc5\\x1e\\x7e\\x02\\x09\\xe3\\xb3\\x40\\x00\\xe3\\xf0\\xe3\\x2c\\xb5\\xe6\\xcf\\x18\\xf2\\x71\\xeb\\x6e\\x8d\\x2d\\x97\\x70\\x9c\\x87\\xab\\xb3\\x6f\\xc5\\x4c\\x0e\\x3a\\x87\\xa8\\x11\\x8a\\x8b\\xd3\\xdc\\xa2\\x93\\x08\\x6c\\xab\\xcd\\xcc\\x78\\xb7\\xb3\\x05\\xd1\\x97\\x34\\xa7\\x2d\\x5e\\x96\\x92\\x83\\x8d\\x74\\x8a\\xd5\\x87\\x2c\\x61\\x83\\xad\\x6a\\x50\\x0c\\x82\\xf8\\xf5\\xe8\\x71\\x52\\x70\\x14\\x8d\\x23\\x08\\x98\\xff\\xcc\\x98\\xe2\\x24\\x7e\\x88\\xc3\\x16\\xb7\\x4b\\x6c\\xe5\\xed\\xba\\x3c\\xe9\\x84\\x2d\\xe4\\x59\\x27\\xa1\\x35\\x83\\x87\\xb9\\x49\\x6d\\xe8\\xba\\x5d\\x67\\x3e\\x47\\x64\\x0d\\x29\\xa1\\xb6\\xda\\x74\\xb4\\x96\\x77\\x45\\xdb\\x2d\\x41\\x09\\x4f\\x21\\xa0\\x40\\x4f\\xd5\\x62\\xd5\\xf6\\xda\\xac\\x65\\x29\\x2e\\x6c\\x5a\\x38\\xe5\\x3b\\xda\\x1a\\xed\\x93\\x84\\xc2\\xeb\\xcc\\x43\\x4e\\x81\\xd5\\x4f\\x62\\x2c\\x57\\xba\\xa0\\x39\\xca\\xbd\\x65\\xf0\\x83\\x2e\\xf5\\xbf\\xb7\\xb7\\xc7\\x7c\\xe0\\x04\\x1a\\x34\\x0e\\x04\\x2b\\xe5\\xd9\\x13\\x9e\\x5b\\xc8\\xd2\\x2c\\x7c\\xbb\\x6b\\x43\\xd9\\xc3\\x0b\\xe5\\xe1\\x7b\\xd9\\x3e\\xaf\\xa7\\xbc\\x1b\\xf3\\x99\\x72\\x9e\\xab\\x55\\x72\\x15\\x52\\xfd\\x79\\x07\\x00\\x21\\x8d\\x43\\xc1\\x9b\\xf6\\xee\\xbe\\xb1\\x32\\x19\\xfd\\x93\\x77\\x1d\\xde\\x3f\\x7c\\x3b\\x73\\x78\\x65\\xcb\\xbc\\xd8\\x8e\\xb1\\x89\\xaf\\x46\\xa9\\xd9\\xeb\\x4e\\x08\\xd7\\xdd\\x86\\x6f\\xb5\\x04\\x9f\\x8f\\x7e\\x67\\x13\\x1f\\x6d\\xff\\x6b\\x97\\xbe\\x66\\xd1\\xed\\x04\\xe2\\xe5\\x86\\xc4\\x9f\\xa7\\x33\\xfc\\x05\\x6e\\x2d\\xf4\\xa5\\x2b\\x72\\x3e\\xa7\\x21\\x8b\\xde\\x51\\xa8\\x27\\x76\\x94\\x16\\x0f\\xd2\\xf3\\xfd\\x1f\\xac\\xef\\x36\\x4f\\x5b\\xe8\\xed\\x2a\\xc3\\x4d\\xbb\\x60\\x8e\\xca\\x4a\\x23\\x3a\\x1e\\xf5\\x16\\x26\\xa4\\x45\\x57\\x14\\xe9\\xe2\\x58\\xf0\\x74\\xca\\xac\\xa6\\x21\\x9b\\xd6\\xe1\\x30\\x11\\x3b\\xca\\xdd\\xc3\\x94\\x02\\xff\\xf3\\xeb\\xea\\xf3\\xfc\\xd6\\xb1\\xda\\xaa\\x85\\x8b\\x76\\xb8\\x80\\x6e\\x12\\x11\\x54\\x70\\x58\\x79\\x65\\x1a\\x77\\x03\\x67\\x27\\x9f\\xe4\\x96\\x89\\xb2\\xa1\\xfc\\x2c\\x63\\xb9\\x8a\\x8e\\x93\\x2f\\x49\\x8e\\x70\\x49\\xc5\\x59\\x10\\x41\\x66\\x36\\x84\\xa7\\x04\\xa6\\x27\\x9f\\x87\\xaf\\x74\\xe4\\x06\\x05\\x89\\x34\\xa3\\x7e\\x2a\\x63\\x7d\\x51\\x70\\x50\\x82\\x43\\x02\\xe9\\x9d\\x9f\\x0c\\x74\\xcb\\xc4\\xd9\\x10\\x5f\\x36\\x08\\x57\\xd9\\x90\\x2c\\x4d\\x0e\\x0f\\x86\\x02\\x20\\xc7\\xae\\x00\\x66\\x88\\x1e\\xed\\x66\\x21\\x43\\x73\\xe3\\x75\\x08\\x29\\x7c\\x04\\xe2\\x41\\x41\\xb9\\x9a\\x11\\xbf\\x79\\x73\\x9b\\x19\\x91\\xde\\x3e\\x9e\\x99\\xd2\\xe3\\xeb\\x58\\xa0\\x3c\\xb1\\xd1\\x98\\x70\\x90\\x64\\x12\\x4c\\xaa\\x0c\\xb8\\x76\\x77\\x61\\x37\\xc6\\xac\\x70\\x62\\xd5\\x56\\xb8\\x43\\x82\\x0e\\x35\\x73\\xa5\\xd9\\xdc\\xa3\\x32\\xc1\\x2f\\xa9\\x7f\\x93\\x66\\xab\\xdf\\xce\\x59\\xf6\\x5a\\x55\\x70\\xee\\xa7\\x74\\x41\\xae\\x08\\x35\\xc3\\x29\\x76\\xef\\x27\\xd6\\x14\\x93\\xbb\\x4f\\x29\\x39\\x69\\xe8\\xcf\\x41\\xfa\\xc6\\xaf\\x8c\\xe2\\x7c\\x9f\\x18\\xb8\\x78\\xec\\x0d\\xb0\\xbe\\x07\\x46\\xb6\\x7c\\xb0\\x4a\\x9e\\xff\\xdb\\x88\\x0f\\x40\\x3c\\x1c\\xf4\\x80\\x03\\xb9\\x48\\x50\\x03\\xfd\\x5d\\x1d\\xba\\xe7\\x68\\xe8\\x7d\\xb0\\x29\\xa7\\x13\\xfc\\x77\\xd6\\x6d\\xe7\\xae\\xbc\\xde\\x12\\x6b\\x26\\x76\\xb8\\xad\\xba\\x47\\x7b\\x9f\\x8b\\x3d\\x8c\\x3a\\x82\\xa4\\x98\\xee\\x57\\x2f\\x76\\x26\\x0e\\x96\\x34\\x18\\xf2\\x1a\\x52\\x77\\x09\\x6f\\x33\\xbe\\x2c\\x00\\x71\\x23\\xf8\\x73\\xa2\\x3f\\x29\\xee\\xb8\\x76\\x17\\xf6\\x97\\xdb\\x5b\\x30\\x4b\\x4b\\xab\\x7b\\x75\\xf7\\xb8\\xf8\\x23\\xa8\\xc3\\xc9\\x78\\xf3\\x83\\xaa\\xc3\\xcf\\x19\\xb8\\x48\\xbc\\x98\\x3b\\x7d\\xb7\\xe8\\x4e\\xf4\\xa7\\x39\\x20\\x62\\xc7\\xec\\x14\\xe1\\xbd\\xa6\\xcd\\xc0\\xdd\\xbf\\x52\\x0f\\xd4\\x6f\\x64\\xde\\x1a\\x08\\x9f\\x26\\xda\\x5b\\xf3\\xb0\\xfe\\x76\\xc9\\x3e\\x27\\x0a\\xb6\\x9f\\x59\\xf5\\xad\\x6a\\xf5\\xb6\\xd5\\xe9\\xdf\\xaa\\xe7\\x6e\\xa3\\x5e\\x80\\x26\\xe3\\x9a\\x13\\x0b\\xb2\\xd3\\x16\\xfa\\x44\\x91\\x61\\x59\\x70\\x45\\x70\\x3e\\xf7\\x3b\\xdf\\x30\\xe9\\x3e\\x4f\\xe1\\x84\\x10\\x31\\xbf\\x3e\\x1a\\x29\\x0a\\xe3\\x63\\x60\\x31\\x26\\x01\\x40\\x89\\x68\\x51\\x28\\x21\\x40\\x8e\\x3e\\x51\\x8f\\xde\\x8d\\x14\\x82\\xbf\\xe9\\xf0\\x26\\xc1\\x62\\xbc\\xc1\\x92\\x08\\xf0\\x80\\xe0\\x7e\\xeb\\xa2\\x63\\xc2\\xaa\\x3c\\xf2\\xdb\\x7a\\x58\\xf7\\x07\\x22\\x07\\x98\\xf7\\xab\\xf1\\xa8\\xb0\\x32\\xdf\\x02\\x98\\xa8\\xf7\\x3f\\x9f\\xc9\\xf0\\x5a\\x12\\x33\\x60\\x2a\\x4c\\x19\\x1c\\xaf\\x5f\\xaa\\x0f\\xf5\\x59\\x18\\x33\\xd7\\xe8\\x34\\x0e\\x4f\\x08\\x93\\x02\\x0a\\xaa\\xeb\\xff\\xdb\\x3a\\x15\\x0a\\x91\\x4e\\x9c\\x7c\\xfb\\x4f\\xb2\\xc2\\x1c\\x27\\xff\\x99\\x89\\x88\\x44\\x2b\\xc8\\x3c\\x34\\xa4\\xbe\\xa6\\xba\\xd8\\xcf\\x9c\\x75\\xb8\\xa9\\xf6\\x62\\x7c\\x43\\xc1\\x22\\xb5\\xae\\x9a\\x3c\\x6e\\xcf\\x84\\xd6\\xe5\\x76\\x15\\x37\\xf0\\x32\\xf7\\x84\\x77\\xc5\\x06\\xea\\x72\\x87\\x8b\\x2a\\x8b\\x0c\\x10\\x7f\\x59\\x84\\x18\\x8d\\x66\\x64\\xc2\\x73\\xbf\\xc7\\xc0\\xcc\\x99\\xbd\\xd5\\x25\\x87\\x89\\xae\\x8a\\x15\\x4c\\x7e\\xd3\\xe4\\x8d\\x5a\\xe2\\x82\\x2c\\x89\\x8a\\x1c\\x0e\\xe1\\xba\\x49\\x4c\\x54\\xa3\\xad\\x7c\\x8b\\x6a\\xaa\\x39\\xf7\\x28\\xa1\\xa2\\x60\\x19\\x35\\xc7\\x93\\x3b\\x96\\x0d\\x03\\xe3\\x65\\x1b\\x65\\x18\\x44\\x59\\x73\\x81\\x89\\x1c\\xae\\x13\\x60\\x93\\x90\\xc4\\xe5\\xd2\\x94\\x3e\\xec\\xf6\\x89\\xed\\x6c\\x58\\x6a\\x41\\xe0\\x2e\\x03\\xf1\\x45\\x14\\xf5\\xce\\xe0\\x4a\\xec\\xb1\\xe8\\x95\\xd7\\x72\\x9f\\x44\\xbd\\x16\\x93\\xe8\\x13\\xb5\\x94\\xf8\\xd2\\x39\\x56\\x4d\\x15\\x79\\xad\\xde\\x49\\x3c\\xd6\\xdc\\xbb\\x26\\xe9\\x30\\x1e\\xc5\\xcf\\x2e\\xcf\\x1b\\xdf\\xe0\\x8a\\xd8\\x66\\x6b\\xb0\\xea\\x09\\x52\\x3a\\x22\\x0b\\x96\\x91\\x42\\xc2\\x38\\x52\\xb8\\xe6\\x48\\x2a\\xfd\\xc4\\xbd\\xd4\\xef\\xec\\xa4\\xcf\\xc7\\x9f\\x85\\x55\\x6d\\x23\\x36\\x95\\x72\\xfa\\xdd\\x2d\\x25\\xcb\\xf1\\x54\\x0d\\x1c\\x5d\\xb2\\x52\\x5a\\xdc\\x84\\xda\\x57\\x54\\xc6\\x5e\\xab\\xea\\x5d\\x11\\xd7\\x94\\x9e\\x53\\xf7\\x8c\\xf0\\x6e\\x77\\x96\\x1f\\x31\\x50\\xcf\\xdc\\x07\\xb7\\x1c\\xf8\\xf1\\xa6\\xa2\\x4e\\xf6\\x20\\x57\\x13\\x56\\x9e\\x22\\xd5\\x46\\x23\\x58\\x39\\x51\\x78\\x39\\x36\\x35\\x85\\x8c\\x2d\\xe2\\x0a\\x34\\x31\\x0c\\x09\\xd7\\x07\\xd8\\x08\\x8d\\x8c\\x9c\\x75\\xfd\\xd7\\xc9\\xef\\x3f\\x17\\x7e\\x8a\\x29\\x2b\\x9b\\x4b\\x8e\\xcf\\x62\\x55\\xee\\x77\\x14\\xc7\\x8f\\xd5\\x65\\xee\\xc5\\x16\\x97\\x9c\\xc0\\xce\\x2c\\xf9\\x47\\x65\\x4d\\x0d\\x2b\\x4b\\xd1\\xe6\\xf1\\x04\\xc9\\xf0\\xac\\x91\\xec\\x22\\xf6\\x90\\xbd\\x78\\x01\\x53\\x54\\x74\\x00\\xd3\\x56\\xcc\\x19\\xfa\\xf5\\x6d\\x02\\x36\\xa7\\x44\\xbc\\x17\\x11\\x6f\\x3e\\xed\\x6d\\xfd\\x84\\xf4\\xda\\x42\\x73\\x9c\\x08\\x63\\xc5\\x49\\x31\\xcb\\x4c\\xa4\\xfc\\x89\\x08\\x0d\\xd6\\xe7\\x5b\\xf5\\x50\\xbf\\xcc\\x49\\x11\\x06\\xcc\\x10\\x62\\x1e\\x21\\x32\\x13\\x45\\xbf\\xd5\\x6c\\x82\\x57\\x59\\x28\\x75\\xfe\\xb9\\xc3\\xf5\\x64\\x5b\\xc9\\x84\\xa8\\xac\\x1e\\xb7\\xaf\\xb8\\x8c\\x75\\xb6\\x6a\\xde\\x09\\x79\\x4d\\xd1\\x9a\\x66\\xfa\\x04\\xeb\\xe7\\x9e\\xd8\\xdd\\xaa\\xc8\\x95\\xbb\\xd0\\xa6\\x33\\xd0\\x17\\xe1\\x3f\\x52\\x05\\x50\\x9e\\xeb\\x62\\x5a\\x56\\x0c\\x49\\x96\\xa9\\xa2\\x61\\x2c\\x65\\x2c\\x5a\\x8d\\xb6\\xf0\\x08\\x48\\x37\\x47\\x94\\x03\\x65\\x07\\x04\\xc8\\xfa\\xdc\\x10\\x6c\\x38\\xf0\\x60\\x28\\x57\\x5b\\xfd\\x54\\x53\\xb7\\x13\\xe4\\xe1\\x75\\x7d\\xdf\\xe8\\xbe\\xca\\x13\\xcf\\xf7\\x31\\x03\\xc1\\xa2\\x60\\x9e\\xb0\\xea\\x39\\x7e\\x1d\\xaa\\xde\\x99\\x7a\\xea\\xdc\\x7e\\xf2\\x87\\x23\\x52\\x90\\x1d\\x29\\x66\\x33\\xa6\\x70\\x62\\x09\\x4e\\x40\\x14\\x51\\xf5\\x85\\x09\\x46\\x10\\x3b\\x42\\x48\\x60\\x06\\xc3\\x01\\xee\\xac\\xa1\\xaa\\xa2\\x43\\x88\\xa2\\xea\\x63\\xc8\\x16\\x27\\xbd\\xd7\\x21\\x87\\x97\\x28\\xd2\\x4d\\x49\\xdb\\x1f\\x62\\xff\\xe4\\x45\\x91\\x62\\x89\\xa6\\xe1\\x93\\x51\\x94\\x8b\\xc3\\x02\\x62\\x58\\xf1\\xf2\\x1b\\x14\\xea\\xc1\\xe5\\x1a\\x9e\\x30\\x12\\xef\\x55\\x10\\x79\\x5a\\xb6\\x24\\xcf\\x22\\x41\\x2b\\x13\\xaa\\xbf\\xe6\\xb1\\x51\\xa9\\xe6\\x44\\xbc\\x0b\\xd2\\xe9\\x67\\x08\\x74\\xf3\\x66\\xcd\\x0d\\x0e\\x9a\\x58\\x9d\\x0a\\xfb\\x81\\x11\\x82\\xa9\\xfe\\x93\\x1d\\x88\\xda\\x8c\\xb7\\x87\\x35\\xe4\\x78\\xb7\\x32\\x4e\\xe4\\xd7\\xb7\\xe2\\x2d\\x9e\\x99\\xa4\\xba\\xfd\\xcc\\xdf\\xbd\\x67\\x11\\x7b\\x2d\\x7e\\x70\\xce\\x1a\\x62\\x3a\\x43\\x99\\x7e\\x6f\\x67\\x26\\xe3\\x9b\\x96\\xb0\\xd0\\xc2\\x08\\xa1\\x3f\\x69\\xc9\\x1d\\xfb\\x9c\\xe3\\xb4\\x6f\\x3e\\x6b\\x89\\x6b\\xa2\\xa1\\x73\\x37\\x26\\x9a\\xfa\\xcb\\x4e\\x68\\x7b\\x66\\x98\\x93\\xeb\\x54\\x7c\\xb3\\xe2\\x8b\\x59\\xfe\\x88\\x22\\x6f\\x10\\x41\\xff\\xe4\\x93\\x30\\xa3\\x6d\\xb0\\x09\\xf3\\x3e\\xfe\\x80\\x3e\\x2e\\x06\\x7b\\x6f\\x4c\\x8e\\x95\\x8e\\xc5\\x9c\\xc7\\xc5\\x0e\\xc1\\x29\\x33\\x00\\xbe\\xe2\\x8f\\xcd\\x67\\xe3\\xe6\\x14\\x66\\x0f\\x5a\\x00\\xee\\xb2\\xfd\\x56\\xfa\\x4f\\xf9\\x19\\x14\\x03\\xc6\\xc2\\xcd\\x92\\x4f\\x35\\xe6\\x9c\\xc2\\xb6\\xfc\\x3d\\x63\\xdd\\x1f\\x75\\x80\\x96\\xaa\\x24\\x40\\x51\\x65\\x41\\x11\\xc0\\xb7\\xf5\\xc7\\x06\\x40\\xa7\\x1d\\x60\\xf5\\x54\\x69\\xcb\\x00\\xb7\\x96\\xc8\\x0b\\x6f\\x81\\x2a\\x35\\xc7\\x9a\\x2b\\x8e\\xb1\\xea\\x6a\\x6f\\xda\\x66\\x2f\\xf2\\xff\\x5c\\x54\\xbf\\xd8\\xe7\\xcf\\x79\\xe7\\x6f\\xd8\\x3a\\xec\\x67\\xd9\\x33\\xab\\x14\\x6b\\xdb\\x6a\\x11\\x1b\\x05\\x38\\x33\\x9f\\x61\\x0a\\xa3\\x09\\xed\\x78\\x5a\\x39\\x76\\xdc\\x75\\xf1\\x41\\xcb\\xf5\\x99\\x69\\x5d\\x25\\x5b\\x7a\\x56\\x77\\x26\\xc0\\xf8\\xc2\\xc5\\xdf\\x39\\xb7\\x2c\\x27\\x7d\\x1e\\x6c\\x19\\x4c\\xfa\\xb4\\x69\\xec\\x65\\xe1\\xbc\\x2d\\xe7\\xaf\\xbd\\xac\\xc8\\xa9\\x24\\xab\\x6b\\x61\\x33\\x25\\x6d\\xa9\\xd0\\x69\\x53\\x7d\\x1d\\xdd\\xc0\\x64\\x24\\xb8\\x0c\\x63\\xe7\\x9e\\xdf\\x73\\x2f\\xf9\\xf2\\x8f\\xc3\\xe9\\x86\\x58\\xe6\\x87\\xfc\\x1a\\x7d\\xe0\\x67\\xeb\\x75\\xfd\\x71\\x72\\x87\\x2d\\x92\\x77\\x7a\\xc7\\x11\\x83\\xb8\\x06\\xb7\\x8e\\x68\\xed\\xb8\\x69\\x1c\\x98\\x17\\xbf\\x1b\\xbe\\x38\\x1c\\xf0\\x6e\\xc1\\xd6\\xcb\\xc6\\xda\\x8a\\x93\\xd4\\xce\\x06\\xde\\x81\\xed\\x25\\x11\\x3b\\xaa\\xcb\\x6c\\x36\\x9c\\x3e\\x89\\x5d\\x1a\\x3d\\x5e\\x7c\\x09\\x70\\xb7\\xac\\x6b\\x0e\\x10\\xff\\xa9\\xdd\\x72\\x18\\xe0\\x37\\x7d\\x3b\\x20\\x55\\x02\\x2b\\x5f\\x5d\\x0e\\x0f\\xef\\x86\\xd7\\xd4\\xaf\\x56\\xc1\\xc2\\x83\\xa0\\x63\\xd9\\x93\\x98\\x57\\x98\\x27\\xd9\\x4f\\xa0\\xaf\\xa0\\x91\\x6c\\xca\\x18\\x12\\x00\\x7e\\x0f\\x48\\x50\\x2e\\x36\\x56\\x8c\\xb3\\x4b\\xf2\\x57\\xf0\\xdd\\x55\\xf2\\x03\\x80\\x1a\\x14\\xa0\\xc1\\x9d\\x99\\x83\\x90\\x91\\xab\\x71\\x5a\\x76\\x04\\x47\\x3f\\x7c\\xf0\\x48\\xa2\\x62\\xd1\\x59\\x35\\xf3\\xb8\\xf9\\xb9\\xe9\\xc5\\x4c\\xbd\\x73\\x4c\\x35\\xfe\\xd8\\x93\\x1d\\x23\\xe7\\xaf\\x08\\x91\\xd8\\x0b\\x63\\x5b\\x23\\x56\\x93\\x0a\\x3e\\x49\\x63\\x7b\\x94\\xb6\\x3d\\x28\\x9f\\xb7\\x98\\x3c\\x6d\\xe0\\xd2\\x86\\x57\\x81\\x85\\x18\\x11\\xa0\\x1b\\x5d\\x0a\\xfa\\xad\\x9b\\x86\\x8c\\xdc\\x0a\\x00\\x6f\\x45\\xe1\\xe4\\xfb\\xf2\\xe6\\x0b\\x5f\\xcd\\x3b\\x7b\\xcb\\x36\\xdd\\x75\\xd5\\xd6\\xbb\\xc8\\x7d\\x39\\xff\\xf5\\x7c\\x8f\\x57\\xa5\\x77\\xdd\\x3e\\xbd\\xfa\\x96\\x7d\\xde\\xa2\\xf0\\xd5\\x7c\\x5d\\xa0\\x19\\x33\\x98\\x56\\xee\\xa0\\x70\\x25\\x7a\\x0a\\xbe\\x1c\\x3e\\x68\\xbe\\x6f\\x72\\x0d\\xdc\\xca\\x7c\\x2a\\x57\\x62\\xa2\\x52\\x2a\\xb0\\x83\\x66\\xfc\\x11\\x28\\x0c\\x19\\xa6\\x49\\x66\\x9a\\x4f\\x71\\xfa\\x9c\\x99\\x4b\\x59\\x4e\\xc1\\x7c\\x93\\xfd\\x14\\xbb\\xf9\\xb3\\xc9\\x9f\\x53\\x8d\\x91\\x47\\x30\\x1a\\x26\\x1a\\x63\\xe4\\x33\\x8d\\x91\\x94\\x9f\\xa3\\x33\\x45\\x4c\\x40\\x6f\\xd2\\x6b\\xa3\\xee\\xed\\xcf\\xe3\\x47\\xbc\\xbf\\x1b\\x65\\x06\\xd0\\xa6\\x9f\\x73\\xf4\\xcd\\x71\\x1f\\x34\\x7f\\x1d\\x90\\xbe\\xee\\x3b\\x7f\\x5c\\xf5\\xd3\\xab\\x6f\\x3b\\xe6\\x2d\\xc5\\xbf\\x1e\\xd0\\x05\\x5a\\x30\\x43\\x69\\x95\\x85\\x14\\x9e\\x34\\x99\\x8a\\xaf\\x80\\x0f\\x59\\xbe\\x49\\xe0\\x75\\x5c\\x8f\\x95\\xce\\x95\\x99\\x69\\xd4\\x62\\x4c\\x9d\\x24\\xda\\x86\\xff\\x98\\x10\\x71\\xb6\\xfd\\xd0\\x7a\\x8e\\x37\\xb7\\x32\\x7b\\x36\\x57\\x0d\\xaa\\x94\\xa4\\x9a\\x84\\x67\\x09\\xa6\\xe0\\x18\\x5c\\xbd\\xcf\\xad\\xe6\\x6e\\x7b\\x69\\x5e\\x95\\xbd\\xe2\\xfd\\x68\\x6e\\x6d\\x47\\x74\\xa0\\x58\\x40\\xca\\x8c\\x97\\x40\\x8c\\xc8\\xc3\\xaa\\x99\\x79\\xea\\xde\\x14\\xab\\x64\\xb0\\x35\\xeb\\x18\\xa1\\xaa\\xee\\x3c\\x73\\x76\\x99\\x62\\x36\\x35\\x62\\x37\\x4e\\x7b\\xc5\\x42\\xa0\\xf2\\x0c\\xa8\\x65\\x9c\\x88\\x16\\x1b\\x25\\x54\\x61\\xf2\\xa3\\xb9\\x11\\x69\\x98\\x03\\xba\\x96\\x22\\x56\\x5f\\x92\\x43\\x3c\\xd0\\x6c\\x39\\x86\\xa9\\x96\\xb6\\xf8\\x77\\xb0\\x73\\x54\\x52\\x2b\\xb4\\x5e\\x03\\x71\\x13\\xd2\\x0d\\xd9\\xe4\\x4c\\x34\\x9d\\x67\\x40\\x5e\\xc0\\x0b\\xd8\\x22\\xc8\\xdd\\x33\\x57\\x51\\x57\\x8f\\x8d\\x2d\\xa3\\x49\\xee\\x8d\\x01\\xf8\\x42\\x9b\\xe8\\x82\\xab\\xe7\\x24\\xbb\\x31\\x7f\\x99\\xdd\\x59\\xcb\\x39\\xe9\\xb4\\xd2\\xc8\\x6f\\x12\\x80\\x8e\\xf4\\x85\\xe6\\xe2\\xdc\\x6e\\xc0\\x7c\\x3d\\xc9\\x44\\xd7\\xb2\\x3d\\x1c\\x64\\x12\\x7a\\xe9\\x58\\x08\\xba\\x77\\x0c\\x07\\xe5\\xec\\x13\\x83\\x36\\xa5\\x7a\\x05\\x9d\\x14\\xff\\xe3\\xbf\\x29\\xd2\\x5f\\x67\\xfd\\x27\\xa8\\x57\\xec\\x06\\x2a\\x49\\xf0\\x3b\\x57\\x7c\\x99\\x40\\xf3\\xde\\x82\\x05\\x2c\\x1f\\xfe\\x70\\x93\\x24\\x33\\x30\\x3c\\x20\\x5c\\x99\\xa9\\x5b\\xf1\\x22\\x13\\x1f\\x2d\\x0e\\x0f\\x59\\x9b\\x88\\xd9\\x74\\x18\\xf0\\xc5\\x02\\xbc\\x75\\xd9\\x3b\\x39\\x98\\xdd\\x4f\\x6e\\x4f\\x46\\xed\\x64\\x92\\xf1\\xa7\\xff\\x80\\x00\\xb6\\xc4\\x72\\x3e\\x9f\\xdb\\x01\\x20\\xe7\\x1d\\x0f\\x4e\\x81\\xdf\\xc7\\x53\\xcc\\x50\\x5f\\x31\\x71\\xd0\\xe4\\xf8\\x80\\x91\\xa0\\x95\\x8f\\xce\\xea\\x4e\\x3f\\x18\\xb5\\x91\\x1f\\x25\\x8d\\xef\\x7e\\x02\\xfe\\x08\\xbc\\x0c\\x9e\\x04\\x3e\\xda\\xd3\\x00\\xd1\\xe9\\xfa\\x68\\x96\\xe0\\xf3\\x45\\x99\\x42\\x8b\\x3b\\xb5\\xa7\\xd7\\x0f\\x96\\x10\\xc3\\x1a\\xbc\\xa3\\x2c\\x39\\x27\\x20\\x68\\x22\\xd0\\xba\\xb9\\xf0\\x22\\x3d\\xbe\\x4c\\xb6\\xf4\\xcf\\xd1\\xff\\x57\\x09\\xd4\\x19\\x49\\x26\\x95\\x44\\x40\\xf5\\x95\\xa6\\x56\\x34\\x18\\x0e\\xe2\\x2a\\x9d\\x07\\xe1\\xed\\x05\\xdc\\x2e\\xe3\\x2d\\x23\\xb4\\x30\\x73\\x4f\\xc4\\x59\\x86\\x1c\\x3c\\xb5\\x62\\xf5\\x6c\\x17\\x33\\xdf\\x7f\\xfc\\x64\\x24\\x4f\\x9d\\x35\\xcc\\x3d\\x1b\\xd1\\xca\\xb9\\x5d\\xba\\x78\\x42\\x5e\\x9a\\xd2\\xc6\\xc3\\x7b\\xd4\\xfd\\x0b\\x20\\x03\\x2c\\xea\\x4b\\x4f\\x9a\\xa9\\x6c\\x52\\x51\\xda\\x8b\\xb9\\xd2\\x02\\x63\\x81\\x4b\\xe3\\xb5\\x3a\\x34\\x5d\\x69\\xa3\\x0f\\xef\\x19\\x76\\xab\\x4b\\x33\\x14\\xf1\\x08\\x03\\xb8\\x4c\\xe6\\xcc\\xb9\\x4d\\xcf\\x82\\x57\\xbc\\x81\\x82\\x80\\x41\\x99\\xdd\\x55\\xc5\\x0b\\xa4\\x82\\xe9\\x17\\x12\\xa7\\xf7\\x33\\x2e\\xd6\\xe1\\x8a\\x32\\x6e\\x74\\x0d\\x9e\\x57\\x75\\xa6\\x1f\\x22\\xb7\\x55\\xb0\\x47\\xdd\\xec\\x20\\x38\\x5a\\xae\\x13\\x85\\xc0\\x44\\x7a\\x2c\\xca\\x0c\\x29\\x4e\\x0f\\xc9\\x00\\x37\\x24\\x68\\x0d\\xd8\\x9c\\x6a\\x50\\x05\\xef\\x6e\\xe5\\xe2\\x71\\x99\\x5b\\x55\\x43\\x81\\xd3\\xe0\\x91\\x7f\\x87\\xfc\\x8f\\x6a\\x62\\x5b\\xa5\\xf9\\x69\\xe3\\xca\\x8a\\x5e\\xe2\\xa5\\x26\\x18\\x07\\x56\\xc2\\x56\\x6b\\x91\\xe4\\x4c\\x1b\\x75\\xed\\xe0\\x49\\x43\\x2a\\x3f\\x45\\x99\\x80\\x36\\xc1\\xcb\\x24\\xa9\\x23\\x5e\\x9d\\x57\\xb5\\x8b\\x3b\\xa4\\x27\\xf3\\xa2\\x2a\\x55\\xf7\\xe6\\x55\\x5e\\x52\\xd4\\x96\\x9e\\x14\\x4f\\x6f\\x67\\x9e\\x6f\\x6e\\xfa\\xa6\\x29\\x3e\\x49\\xc1\\x34\\x03\\x49\\x74\\x4d\\x68\\x16\\xee\\xef\\xe9\\x73\\x07\\x07\\x94\\x32\\x1b\\xae\\x95\\xe8\\x07\\x9e\\x11\\xa7\\x22\\x1c\\xa1\\xe9\\x87\\x6e\\xc1\\xd0\\x58\\x55\\x8b\\x3c\\x8c\\xbd\\x32\\x0f\\x73\\x1f\\x93\\x52\\x2e\\x9e\\xad\\xaa\\x5e\\x21\\x54\\x47\\x32\\x7c\\x1e\\xbc\\x80\\x86\\xff\\x6c\\xb4\\xbf\\x27\\xec\\x29\\xad\\xb4\\x92\\x9b\\xae\\xf7\\xa5\\x72\\x6d\\xe4\\x8a\\xd4\\xbb\\xb5\\x8b\\xf7\\xcb\\x3c\\x29\\xcd\\xf4\\x7f\\x03\\x3d\\xff\\xc3\\xab\\xb2\\x97\\x9a\\x4a\\x8f\\x53\\xea\\x58\\x05\\xe0\\x3c\\xba\\x59\\x00\\xad\\xdc\\x26\\xea\\xa5\\xa9\\x1b\\xeb\\x2a\\xeb\\x69\\x9b\\x7b\\x9c\\x0d\\xee\\x69\\x65\\x6d\\x2f\\xe5\\x52\\x13\\x9c\\x83\\x2a\\xe1\\xaa\\xf5\\x48\\x72\\x96\\x0d\\x7f\\xfc\\xca\\xbe\\xe8\\x24\\x7e\\x8a\\x2a\\x81\\x60\\x42\\x97\\x49\\x06\\x03\\xd9\\x9b\\x13\\xd5\\x2b\\x75\\x0e\\x55\\x27\\xca\\x5d\\x4e\\x38\\xd8\\xbc\\xd0\\x77\\x31\\x1f\\xa3\\xd3\\x89\\xfc\\x11\\x32\\x0f\\xd2\\x23\\x58\\xa3\\x22\\xd4\\x47\\x07\\x37\\xf0\\x25\\xa6\\xc8\\x67\\x75\\x4f\\x38\\x8d\\x9c\\xd0\\x2f\\x04\\xcf\\xb2\\x79\\x50\\xb6\\x41\\xc9\\x64\\x9a\\x61\\xf1\\xa0\\xf9\\x65\\x96\\x18\\x2f\\x0e\\x9f\\xa1\\xab\\xa0\\x8e\\x36\\xba\\x0e\\xc1\\x2b\\x63\\xf4\\xa0\\x61\\x95\\x89\\x7d\\x27\\xd6\\xbb\\x15\\xa3\\x64\\xe1\\xb1\\x58\\x09\\xc7\\x16\\xfe\\xb7\\x87\\x4d\\xf5\\xed\\xac\\xcf\\x92\\x08\\x3c\\xd9\\xd9\\x10\\x1f\\xb6\\x52\\x95\\x2e\\x05\\xcc\\x57\\x0f\\xaf\\xdf\\x6a\\xd2\\x03\\x3d\\x9a\\x00\\xfd\\x57\\x7a\\xd1\\x93\\x9e\\x0c\\x0e\\x4b\\x52\\x38\\x44\\xaf\\x11\\xbe\\x5f\\x0f\\x5d\\x5a\\x21\\x97\\xd6\\x47\\xd7\\x7d\\x76\\xa6\\xf2\\x58\\x89\\x91\\x34\\x35\\xa9\\xd2\\xb2\\xe9\\x7f\\x5f\\xfc\\x0f\\x86\\x4b\\xa1\\xd8\\xb6\\x2d\\xa4\\xcf\\x20\\xfc\\x21\\xe9\\xe1\\xdd\\x84\\xa2\\x5d\\xe0\\xff\\xf9\\xcd\\x88\\x01\\x7e\\xd8\\xd2\\x64\\xcd\\x66\\xad\\x5b\\xd9\\x0c\\x77\\x96\\xe0\\xe6\\x9a\\x56\\xfa\\x2e\\x13\\x60\\x94\\x76\\x91\\x27\\x42\\x5e\\x44\\x78\\x0a\\x84\\xf3\\x5d\\x9e\\xa8\\x32\\xf1\\xad\\x9e\\xca\\xf3\\x09\\x6d\\xce\\x0b\\x09\\xd9\\xce\\xbe\\xd4\\x04\\x2d\\xf7\\x9d\\xcc\\xa8\\xbc\\xa0\\x6c\\x75\\x5e\\x54\\x5a\\xd4\\x37\\xc3\\x38\\xc8\\x32\\xae\\xd6\\x84\\xa6\\xa7\\x19\\xd9\\x38\\x13\\xb2\\x4c\\xe2\\xc3\\x42\\x96\\x26\\xe9\\x8c\\x00\\xe9\\x2c\\xde\\xdc\\x86\\x8a\\x68\\xdc\\x25\\x5e\\x4d\\x49\\xb7\\xcb\\x96\\x4c\\x24\\x78\\x34\\xf5\\x64\\xdf\\x6f\\x30\\x80\\x6f\\x0f\\x30\\x20\\x11\\xdd\\x2c\\xcc\\xb7\\x4e\\x48\\xcb\\x7b\\x70\\x57\\xda\\x61\\x1c\\x44\\x19\\x47\\x9d\\x5b\\xea\\x06\\x58\\x09\\xfd\\xe7\\x97\\x44\\xa6\\x8a\\x52\\x94\\x6c\\xb4\\x19\\x5e\\x26\\x4e\\xb5\\x45\\x56\\x70\\xef\\x56\\x2c\\x9a\\x94\\x15\\x27\\xb7\\xb0\\xb1\\xbb\\x2b\\x3f\\xfb\\x94\\x84\\x7f\\xf5\\x9d\\xe1\\xa4\\xf7\\x4c\\x28\\xcb\\xfb\\x08\\x30\\xc7\\x65\\xc3\\x4b\\xd9\\xda\\x5c\\xf4\\x66\\x26\\xe2\\xcc\\xb5\\x0d\\x91\\x49\\x20\\x4b\\x63\\x8c\\x88\\x32\\xa9\\x93\\x98\\xae\\xa6\\x67\\x87\\x6d\\x8b\\x82\\x54\\xd4\\x79\\x70\\x1a\\xe7\\xeb\\x48\\x09\\x73\\x7d\\xf9\\xde\\x41\\x62\\x4e\\xfe\\xa9\\xcc\\x12\\x4c\\x21\\x3d\\xc0\\xbd\\xde\\x8c\\x8e\\x0f\\xb6\\x45\\x8c\\xf3\\xaa\\x35\\xb4\\x2c\\x29\\x9b\\xee\\x68\\xd6\\x2f\\x61\\x2b\\x6a\\x57\\x30\\x1d\\x56\\x66\\xb5\\xc8\\x97\\xee\\xce\\xcb\\x34\\xa7\\x72\\xd1\\xfe\\x3c\\x82\\x11\\xc5\\x0e\\x28\\x0c\\xdd\\x6a\\xdd\\xaa\\xe6\\xd8\\xa4\\x02\\x8e\\xdd\\xa5\\x59\\x41\\x54\\xb7\\x9d\\xa5\\x77\\x7a\\x18\\x75\\xac\\x80\\xe8\\xb5\\x42\\x6a\\x62\\x38\\xac\\xb8\\x9c\\x99\\x1a\\xb3\\x26\\x0e\\x18\\xc2\\x87\\x5e\\xa4\\xa0\\xd4\\x38\\x1e\\x18\\x4a\\x10\\xf9\\x5e\\xca\\x22\\x07\\x9e\\x3c\\xad\\x42\\x68\\x42\\x6d\\xfe\\xb1\\xe6\\x45\\x71\\x1e\\x27\\x7e\\x5f\\xf9\\xeb\\x2f\\xf8\\x17\\x6a\\x11\\xfb\\xed\\x8a\\x24\\xcd\\x4a\\xbd\\x35\\xb1\\x1d\\x5d\\x54\\x83\\x5b\\xa0\\x9e\\x0a\\xdf\\x1e\\x51\\x84\\x6e\\x19\\x1b\\x8e\\xd4\\x15\\xd3\\x16\\xbe\\xc0\\xf9\\x5f\\xed\\x26\\xc6\\x0e\\x55\\x70\\xf6\\x9b\\xff\\x98\\xc8\\x71\\xbe\\x2f\\xf2\\x2e\\x9f\\x84\\xe6\\x84\\xeb\\x0a\\x5e\\x7d\\xa7\\x9a\\xff\\x69\\x60\\x4f\\xcb\\xb1\\xff\\x1f\\x55\\x7e\\x2b\\x78\\x31\\xfb\\xe3\\x51\\x46\\xfb\\xb3\\x37\\xda\\xe8\\xec\\x88\\x72\\x2a\\xf4\\xef\\xc2\\xbf\\x0a\\x63\\x3e\\x66\\xcb\\x8a\\x80\\xe0\\xcd\\x17\\xf0\\xf5\\xf8\\x6f\\xd9\\xa4\\xbc\\xdf\\x10\\x3c\\xbb\\x5e\\xe1\\xc4\\x27\\x42\\x3c\\x3f\\x3d\\x85\\x10\\xef\\x84\\x8b\\xc2\\xc2\\x69\\x19\\x46\\x1f\\x51\\x67\\xf0\\x5c\\x50\\x3c\\xf5\\xfd\\xef\\x9d\\x8f\\xfe\\xb9\\x50\\x30\\x2a\\x7f\\x72\\x7b\\xab\\x31\\xff\\x4c\\x89\\x28\\x27\\x3a\\x51\\x4c\\xd1\\x47\\x59\\x23\\x72\\x13\\x67\\x7b\\x2b\\xea\\xab\\x6f\\x75\\x79\\x2a\\x9b\\x67\\x31\\x61\\x95\\x14\\x2b\\x3f\\x29\\x8f\\x9d\\x1f\\xcd\\x23\\x8e\\x9f\\x11\\x26\\xed\\x35\\xfb\\x54\\x25\\xcd\\x36\\x37\\x9c\\x72\\xc6\\x55\\xc4\\x15\\x1f\\x28\\xdf\\x84\\x0b\\xaa\\x8a\\xd4\\x3d\\x0d\\x67\\x9f\\x1d\\xae\\x03\\xf8\\x2d\\xdf\\xed\\xa5\\xb8\\x0c\\x7c\\x1a\\x69\\x0e\\x76\\x80\\x92\\x8f\\x2a\\xe6\\xea\\xf2\\x78\\x07\\x4b\\x58\\x79\\x47\\x4a\\x36\\xe1\\x7c\\xaa\\xb0\\x3a\\x21\\xee\\x0a\\x71\\xb5\\xac\\x2a\\x3a\\x41\\x4c\\x4e\\xa2\\x58\\xc3\\xf2\\x38\\xb3\\xb3\\x9d\\xf5\\x35\\xb7\\xba\\xb9\\x00\\x36\\xce\\x62\\xc0\\x95\\x34\\x6b\\x9a\\x5e\\xc7\\xce\\x89\\x66\\x71\\xf9\\x3d\\x6f\\xb5\\xcc\\x56\\x8d\\xb3\\x10\\xcf\\x61\\x8a\\x43\\xb3\\x08\\x7c\\x96\\xd2\\xcf\\x1c\\x0d\\x47\\xa3\\x2a\\x4a\\x43\\x57\\xa0\\xda\\xe8\\x26\\x8d\\xc3\\x86\\xe5\\x18\\xfb\\xd8\\x59\\x8c\\x6d\\x26\\x3a\\x0c\\xfd\\x5f\\x9a\\x05\\x1f\\x07\\xe4\\xfc\\x0f\\xf4\\xbe\\x4c\\x07\\xbb\\xe3\\xc2\\x8a\\xb7\\x9e\\x44\\x11\\x69\\x02\\xda\\x08\\x4e\\xf5\\x1d\\xda\\x9e\\x99\\xd2\\xd0\\x27\\xaa\\xf5\\xe6\\x56\\x3b\\xd3\\x9b\\x58\\x4a\\x8f\\xe7\\x97\\x5e\\x38\\xc3\\x07\\xed\\x45\\x9d\\xa8\\xfd\\x6e\\x5c\\xc6\\x24\\xea\\xf1\\x35\\x68\\x72\\xee\\x79\\x7a\\xe9\\x91\\x26\\x68\\xb6\\xbb\\x23\\x1b\\xd3\\x0e\\xd4\\xf5\\x8e\\xa6\\x15\\xc5\\x09\\x7c\\x87\\x97\\x60\\xdc\\x88\\xc9\\x27\\xf8\\x27\\xe6\\xc6\\x1b\\xbe\\x6a\\xdc\\xa6\\x2d\\xc7\\xbe\\x5e\\x45\\x7e\\x51\\x2c\\x9c\\x29\\xaf\\x5a\\x20\\xb9\\xca\\xe7\\x49\\x35\\xe5\\xa4\\xe1\\x82\\x60\\x36\\x46\\x86\\x66\\x44\\x80\\xc8\\xbf\\x9c\\x43\\xaa\\xd9\\xee\\x2f\\x92\\x1e\\xa6\\xf3\\xba\\xd5\\x37\\x07\\xad\\xb5\\xda\\x3e\\xe4\\xc3\\x22\\x77\\x47\\x77\\x4e\\x25\\x24\\x72\\x40\\xad\\x03\\xf7\\x17\\xd4\\x97\\x3d\\x44\\x0a\\x1b\\xce\\xb4\\x41\\x55\\xaa\\x76\\xd8\\x11\\xc8\\x74\\xf6\\x94\\xb7\\x19\\x62\\x7a\\xb5\\x6a\\x50\\x1b\\xba\\xba\\x06\\x62\\x17\\x7d\\x33\\xe3\\x2a\\x74\\x49\\x36\\x0c\\x53\\x60\\x6c\\x82\\xe5\\x2b\\x92\\x29\\x80\\x3b\\x75\\x3a\\x1b\\x9a\\x21\\x24\\x9b\\x60\\xe6\\x64\\x70\\x46\\xfd\\x4f\\x1a\\x99\\x9d\\xe8\\xba\\xfc\\xef\\x29\\x45\\x87\\x68\\x5e\\x84\\x0f\\xc0\\x1b\\x37\\x6b\\x3a\\x34\\x0b\\x3b\\xba\\x2e\\x27\\xb1\\x9f\\x05\\xa3\\xff\\x47\\x5f\\xfa\\xff\\xdb\\xdf\\x45\\x59\\xe1\\x5f\\xda\\x74\\x4d\\x12\\x06\\x93\\xc5\\xee\\x4f\\xb7\\x08\\xda\\x1a\\x8d\\xc7\\x11\\x8d\\xee\\xf5\\xa8\\x15\\x0e\\xeb\\xb4\\x1d\\x0a\\x48\\x89\\xc9\\xce\\x86\\x18\\xc3\\x10\\xf5\\x2d\\x32\\x76\\xf8\\x8a\\x84\\x59\\xc4\\x50\\x23\\x0a\\xb0\\xc7\\x64\\x6d\\x66\\x46\\x3d\\xec\\x2e\\x2d\\x2d\\x92\\x68\\x66\\x02\\xa7\\x3f\\xdd\\x20\\xe8\\x68\\x4a\\x3d\\x89\\x6d\\x6c\\xb9\\x84\\x9f\\x55\\x21\\x9f\\xb2\\xc2\\x21\\xd8\\xac\\x83\\x5a\\x3c\\x39\\xdd\\x8c\\x18\\xd9\\x1a\\x4a\\xed\\x15\\x32\\x8b\\x68\\x3a\\x78\\x21\\xf6\\xb8\\xac\\xd5\\x4c\\xab\\x4f\\x77\\xa8\\xbc\\x99\\xf0\\x55\\x9a\\x92\\x15\\xd3\\x2f\\x8c\\x2b\\x62\\xe8\\x50\\xd9\\x72\\xef\\xa0\\x2d\\x31\\x8a\\x78\\xd0\\x0f\\x52\\x56\\x71\\x0c\\x25\\x6c\\xa9\\x1e\\x45\\x65\\x45\\xe0\\x70\\x11\\xac\\x34\\x14\\x2a\\x2d\\xfe\\x57\\x5b\\x7c\\xda\\x23\\xa4\\x59\\x8d\\x42\\xdf\\x42\\x08\\x4f\\x9c\\x38\\x9a\\xdf\\x57\\xdc\\x40\\x31\\xd1\\xd9\\x0a\\x60\\x96\\x30\\x89\\x01\\xcc\\x16\\x8b\\x4d\\x60\\x4a\\x63\\x5f\\x59\\x53\\xa9\\x80\\x4d\\x63\\x93\\xf5\\xc2\\x3d\\x1c\\xba\\x9e\\xe1\\x5c\\x81\\x1e\\xc4\\x16\\x91\\xe3\\xc9\\x27\\x51\\xce\\x52\\xf9\\xf4\\x69\\xbe\\x55\\x3f\\xc5\\x6f\\x76\\x35\\x79\\x2a\\x76\\xa8\\xbc\\x73\\x8a\\x97\\x9f\\x3c\\xcd\\x6b\\xae\\xa2\\x58\\x92\\xb3\\x2c\\xe1\\xde\\xa2\\xaa\\x2b\\xfa\\xaa\\x7c\\x63\\x17\\x0e\\x91\\x6d\\x6a\\x66\\xe5\\x42\\xd1\\x29\\xbe\\x68\\x78\\xbe\\x54\\x7f\\x3d\\xfd\\x32\\xf7\\x6e\\x5f\\xaa\\x74\\x0f\\x38\\xd5\\x8a\\x7f\\x43\\xd0\\x71\\x0a\\xb6\\x94\\x8f\\xb4\\xa2\\xd3\\x79\\x82\\x14\\x66\\x26\\x0a\\xb1\\x33\\x98\\x1d\\x9d\\xa7\\xa5\\x16\\x92\\xf8\\xc2\\xec\\x08\\xb1\\x24\\xd6\\x22\\x25\\x21\\xa7\\x19\\x7f\\x6d\\x99\\x11\\x58\\x13\\x28\\xac\\xb1\\xb6\\x44\\x2f\\xee\\xe4\\xfa\\x32\\x06\\x0e\\x78\\x66\\x9c\\x69\\xba\\xe4\\xd3\\x3e\\xca\\x4e\\xd7\\x60\\x82\\xdf\\x63\\x74\\x9b\\x6c\\x86\\x0b\\xc5\\x2c\\x4d\\x69\\x9c\\xc5\\xf2\\xce\\x69\\x7e\\xbe\\x7e\\x92\\x09\\xac\\x5c\\x4c\\x3b\\x85\\x3c\\x8c\\xf7\\x2d\\x4f\\xbc\\xea\\xaf\\xda\\xce\\x47\\xd5\\xb3\\x52\\x0a\\x09\\x5c\\x15\\xd3\\xb7\\x17\\xd7\\xd0\\xf0\\x67\\x93\\xab\\xc8\\x77\\xec\\x73\\x1c\\x94\\x3b\\x9c\\xe5\\x6c\\xa6\\x1d\\x08\\xfa\\x65\\xa4\\x07\\x0c\\xcb\\xdb\\x47\\x60\\x38\\xb3\\xe2\\xcd\\x10\\x42\\x92\\x23\\x9a\\x9f\\x1d\\x9b\\xca\\x23\\xd2\\x0b\\xe5\\x42\\x53\\x2c\\x8e\\x57\\x48\\x17\\x66\\x81\\xcd\\x8b\\x08\\xe8\\x54\\xc2\\x59\\x14\\xf2\\xcc\\x3b\\x73\\x34\\x3a\\xf6\\xc3\\x59\\x24\\xea\\x2c\\x29\\x1d\\x1f\\x73\\x6e\\xb3\\xcf\\x73\\x45\\xdd\\xbb\\xba\\xbc\\xd7\\x79\\xf6\\x77\\x11\\x07\\x7c\\xac\\x93\\xd6\\x68\\x92\\x73\\x55\\x76\\x5f\\x88\\xd7\\x0c\\xab\\x3c\\x44\\x74\\x68\\x7c\\x32\\x57\\x14\\x73\\x9b\\x47\\x77\\xe6\\xc4\\x17\\x80\\xf9\\x83\\xd3\\x35\\x65\\xcc\\x40\\x79\\x22\\x37\\x87\\x9f\\x54\\x92\\x9c\\x36\\x14\\xc6\\xa9\\x36\\x51\\x6c\\xf4\\x5d\\xc7\\xca\\x3b\\x43\\x98\\x7b\\x71\\x97\\xb9\\xf1\\x3a\\x2d\\x21\\x07\\x43\\x91\\xd5\\x07\\x2b\\x78\\xb0\\x3c\\x2e\\x55\\xae\\x7f\\x25\\x8b\\x90\\x1a\\x24\\x04\\xa4\\xde\\x44\\x2a\\xc7\\xf1\\x78\\xf9\\x48\\x2d\\x1f\\x6f\\x15\\xdf\\x21\\x09\\x12\\x88\\x69\\x7a\\x32\\x56\\x4c\\xa7\\x9a\\xda\\x81\\x83\\x17\\x13\\x20\\xb0\\x9f\\x62\\x30\\x64\\x7e\\x85\\x26\\x30\\xcd\\x5f\\x0c\\x8e\\xd5\\xba\\x08\\x33\\x63\\x56\\x7f\\xde\\xbe\\x5e\\x3b\\x6d\\x71\\x82\\x72\\x01\\xfc\\xdc\\x38\\x23\\x5e\\x00\\x77\\xd7\\x35\\x9f\\xe2\\x76\\x54\\xd2\\x97\\xdc\\x2e\\x23\\xb2\\xe1\\x14\\xaf\\x19\\x82\\x0c\\x8f\\xa6\\xf7\\xe6\\x38\\xc3\\x30\\x7b\\x01\\x44\\xde\\x32\\x5b\\x4d\\x08\\xd3\\xff\\x4a\\x9a\\x0a\\x31\\xeb\\xb3\\xf5\\x9a\\x7a\\xc5\\x38\\x24\\x31\\x5a\\x6f\\xa0\\x54\\x13\\x55\\xa0\\x75\\xb6\\x62\\x0a\\x8c\\x21\\xc1\\x8b\\x7c\\x70\\xf3\\xd5\\xac\\x0d\\x83\\x4d\\xf4\\x93\\x8c\\xd5\\x75\\xcd\\x5e\\x9e\\x61\\x23\\x8d\\x59\\x70\\xa7\\x59\\x5b\\x8d\\x94\\x6b\\x67\\xa7\\xce\\x04\\x77\\x66\\x59\\x0a\\x4d\\x1a\\x5c\\x53\\x83\\x1b\\x11\\xb2\\xc7\\x62\\x21\\xe2\\x8d\\x0c\\x34\\x34\\xfa\\xbf\\x25\\x10\\x31\\xbd\\x34\\xca\\x45\\x37\\x30\\x30\\x90\\xe8\\xaf\\x1b\\x20\\xe2\\xa8\\xe0\\x70\\x49\\x2f\\x56\\x5d\\x17\\x67\\x93\\x03\\x1e\\x1f\\xf7\\xbf\\x77\\x2e\\x32\\x74\\x3c\\x41\\xca\\x48\\xd0\\xcb\\x45\\xc0\\x67\\x5f\\x9e\\x05\\xc1\\x81\\x2e\\xe9\\x40\\x79\\xe1\\x2c\\xdc\\x56\\x3a\\x87\\xaa\\x75\\x52\\x7a\\xed\\x32\\x58\\x00\\x00\\x40\\xff\\xbf\\x69\\xb6\\xc5\\xa0\\x7f\\xf3\\xfa\\xd5\\x43\\x90\\x1f\\xc1\\x02\\x73\\xfa\\x0e\\x99\\x4a\\xe5\\x4c\\xde\\xc2\\xa0\\x7e\\x9b\\x60\\x53\\xa9\\x91\\x3f\\x5e\\x73\\x0f\\xfb\\xab\\x7f\\x2e\\x50\\x05\\xee\\xfd\\x3c\\xd6\\x38\\xf5\\x77\\xda\\xcf\\x93\\x3f\\x0f\\xab\\xc0\\xf3\\x21\\x83\\x60\\xe1\\xea\\x22\\x0e\\x49\\x1d\\x23\\x9b\\x50\\x3c\\x22\\xf6\\xf0\\x67\\x47\\x50\\xa6\\x17\\x79\\x73\\x31\\xea\\x6e\\xf0\\x76\\xcb\\xba\\x53\\xe3\\x3e\\x29\\x79\\x29\\x5f\\xcd\\x22\\x72\\xae\\x80\\xa2\\x23\\x7a\\xb3\\xb8\\xf9\\x74\\xed\\x4b\\xb1\\x9e\\xf7\\x6a\\xae\\x2e\\x30\\x88\\x1c\\xd4\\xd8\\x7f\\xe7\\x5c\\x0e\\x0d\\xff\\x36\\xdc\\xfb\\x48\\x6f\\x61\\x7a\\xe3\\xbe\\xaf\\x55\\x04\\xd4\\x04\\x48\\xda\\x1d\\xf0\\x6e\\x2c\\x74\\x72\\x46\\x83\\xa8\\xaf\\x54\\x3a\\x37\\x7c\\xd6\\xce\\x35\\x95\\x75\\x70\\xc6\\x73\\xe2\\xf4\\xee\\x97\\x07\\x8d\\xb7\\xa7\\x27\\x25\\x76\\xd0\\x7d\\xb4\\x26\\x1a\\x82\\xd6\\x5e\\xb7\\x53\\x38\\x9c\\x53\\x50\\x4e\\x93\\x64\\xcd\\xd9\\xb6\\x48\\xf3\\xe4\\x74\\x43\\x2b\\xf2\\x19\\x2d\\xc9\\x09\\xbb\\xe4\\x7d\\xe7\\xbb\\x7f\\xa5\\x46\\x76\\xf1\\x19\\x12\\x1e\\x49\\x49\\x4b\\xcf\\xd0\\x71\\xda\\xdc\\x05\\x03\\x08\\x3b\\x4d\\xe1\\xa7\\x08\\xf9\\xa4\\x4a\\xfc\\xea\\xef\\x57\\x0b\\x39\\x81\\x91\\x69\\x62\\x25\\x33\\x36\\x5a\\xb4\\x9b\\x23\\x20\\x49\\x68\\x66\\x21\\x74\\xb7\\xb0\\xf7\\x9b\\x1e\\x2a\\x8d\\x32\\xb7\\x05\\x1a\\x10\\xf9\\x36\\x46\\x80\\x4a\\x97\\x95\\xe1\\x18\\x90\\xa4\\x3e\\xea\\x25\\xf8\\xab\\x3d\\xee\\x11\\xb1\\xaa\\x46\\xa8\\x5c\\x1b\\x5b\\x9a\\x79\\xe8\\xf9\\x81\\x01\\xef\\xe6\\x44\\x01\\x1d\\x7e\\x23\\xc9\\xc7\\x7f\\x59\\x6c\\xa9\\x51\\x51\\x09\\x95\\x2d\\x56\\x67\\xf7\\xdb\\x68\\x7c\\x40\\x76\\x0b\\x3e\\xb1\\x38\\x6e\\xb0\\xe0\\xf3\\xb9\\x7c\\x72\\xe0\\xb0\\x10\\x86\\x20\\x99\\xae\\xd5\\x66\\xe2\\x2e\\x65\\x5c\\x53\\x42\\x75\\x41\\xbb\\xab\\xae\\xd6\\x24\\x83\\x05\\xf1\\x11\\x73\\x0a\\xaa\\x23\\x31\\xa0\\x70\\xec\\xab\\xff\\x51\\xb4\\x00\\xfd\\xa0\\x92\\x84\\x2c\\xfb\\xee\\xf1\\xc7\\x79\\x67\\xab\\xcb\\xc6\\x5e\\x96\\xcc\\x56\\x3e\\x5c\\x7c\\xe0\\x86\\xbe\\xbe\\xe4\\x92\\xa8\\xbf\\x21\\x7e\\xaf\\xa5\\x86\\x73\\xca\\xd5\\xb3\\xc6\\xaf\\x13\\x35\\xc1\\xcc\\x10\\xa9\\xb8\\x6a\\xf9\\xe7\\x59\\xaa\\xea\\x87\\x0d\\xbe\\x52\\x22\\xd4\\xf8\\xd3\\x16\\xe3\\x19\\xe5\\x17\\x2b\\x55\\xb6\\xbf\\x8f\\x7f\\x20\\x4a\\x90\\x9a\\x90\\xa4\\x24\\x5d\\x1c\\x49\\x8d\\xb3\\xf2\\x70\\x04\\x7b\\xba\\xc0\\x02\\x26\\xa7\\x3a\\x38\\x2c\\x2b\\xb0\\x46\\x65\\x57\\xf1\\xd6\\xd3\\x00\\x93\\x30\\x1a\\x96\\xa6\\xcd\\xe1\\xf1\\x8d\\xa6\\x1e\\x70\\x3e\\x6f\\x18\\xb7\\x37\\x38\\x71\\x63\\x29\\x90\\xaf\\x95\\x9f\\x1d\\x00\\x8a\\xc1\\x8d\\x9c\\xa9\\x0e\\xe5\\x2d\\x9a\\xb0\\xde\\xb5\\x67\\xa5\\xbd\\x5e\\x84\\xc6\\x4d\\xd0\\x28\\x0f\\xe0\\x2d\\x9e\\xc8\\xb8\\xe9\\x91\\xe7\\xbc\\x5d\\x06\\x13\\xc1\\x8a\\x56\\xed\\x64\\x38\\x58\\xa8\\xdb\\x6e\\x3f\\x48\\x8e\\xf0\\x24\\x6f\\x45\\x33\\xa8\\xc8\\x5d\\x59\\x36\\x2e\\x07\\xc6\\x81\\x16\\x07\\x7d\\x17\\xf8\\x9d\\xd6\\x60\\x82\\x7a\\x9c\\x8d\\x46\\x7e\\xd9\\x90\\x6c\\xb5\\x0e\\x49\\xca\\x2a\\x20\\x0c\\x9c\\x1d\\x8c\\x7a\\x01\\xb0\\x9d\\x59\\x98\\xde\\xeb\\x3f\\x8c\\x36\\xc1\\x27\\xfa\\x63\\xf3\\x63\\x8d\\xb2\\xde\\xc2\\xdf\\xae\\x9e\\x80\\xed\\xcd\\x5b\\x7d\\x7e\\x1c\\x17\\xd4\\xc0\\x37\\x98\\xd0\\x59\\xd0\\xe8\\xe7\\x5d\\x82\\x12\\xb3\\x36\\x0b\\x2e\\x55\\x69\\x62\\x5c\\x79\\x9a\\x1a\\x98\\x31\\xd3\\x11\\xa3\\xd5\\x21\\xaa\\x8d\\xb7\\x6c\\x72\\x15\\x25\\xb6\\x24\\x24\\xc8\\x95\\x21\\x8b\\xde\\xc4\\x5f\\x2f\\x28\\x21\\x4c\\x55\\x96\\x4f\\xe0\\xdd\\xc9\\x69\\xa0\\xd2\\xe0\\x2d\\x18\\x39\\xf7\\x5d\\x48\\x82\\x11\\xce\\xe0\\x83\\x0a\\x15\\x43\\x9f\\xd9\\xb6\\x1f\\xe9\\x79\\xba\\x63\\xef\\xe2\\x9b\\xa7\\x7f\\x3c\\x38\\x65\\xb9\\x2e\\x39\\x79\\x4f\\x5c\\xec\\xee\\x38\\xe1\\x5a\\x59\\xec\\x27\\x3d\\x39\\xf9\\x8b\\x0b\\x1d\\x21\\x30\\x3e\\xec\\x97\\xb2\\xe9\\x51\\x49\\x05\\xb5\\x97\\x06\\x1c\\xae\\xd0\\xe0\\x3b\\x4d\\xcf\\xc4\\xe7\\x36\\x7d\\x8b\\x6d\\x50\\x5f\\xd8\\x05\\xba\\xca\\x0d\\x76\\xa0\\xa8\\xec\\xc8\\xff\\x10\\x1d\\xe7\\x8a\\x0d\\x49\\xac\\xff\\x85\\x3b\\xe7\\x1c\\xaf\\x92\\xb5\\x9c\\xc9\\x82\\x58\\x4e\\xe3\\x32\\xc0\\xb7\\xd3\\xc1\\x1e\\x70\\xb8\\xda\\xd0\\x26\\xea\\x2f\\xe6\\xe0\\x87\\x7a\\x72\\x20\\x3f\\xc3\\xa0\\x8b\\xf6\\x07\\xd7\\xd6\\x4e\\xbe\\x7d\\xda\\x15\\x63\\x5d\\x1d\\x39\\xa0\\x81\\xef\\xb1\\xdc\\x4e\\xb3\\x2a\\xc9\\x25\\xab\\x81\\xe7\\x97\\xa0\\x16\\x9a\\x4f\\xf9\\x00\\x45\\x68\\x8d\\x14\\x06\\x28\\x2b\\xf8\\x91\\x3e\\x31\\x30\\x39\\x5d\\x97\\x77\\x91\\x02\\xd3\\x6e\\x78\\xc7\\x90\\x16\\x21\\xfe\\x08\\x83\\xf1\\x67\\x6f\\x99\\xff\\xb6\\x57\\x59\\x5e\\x30\\x41\\xad\\xeb\\xa2\\xaf\\xcf\\x7a\\x3e\\xcb\\xd3\\xb7\\xb6\\x6b\\x9c\\x5a\\x20\\x6f\\xf6\\x78\\xb6\\xb2\\x3b\\xbf\\x29\\xe6\\xf3\\xa8\\xf5\\x9e\\x31\\xef\\xd8\\xb3\\x11\\x85\\x13\\x70\\xa6\\x04\\x05\\x17\\x23\\x8b\\x4c\\x0f\\xf3\\x90\\xf9\\xa1\\x52\\xe4\\x67\\x94\\xee\\x8a\\xb8\\x45\\x6b\\x53\\x33\\xcd\\x28\\x2f\\x84\\x9e\\x99\\x9b\\xc3\\x64\\x01\\x34\\x9d\\x54\\x75\\x35\\x74\\xb2\\xf0\\x97\\x11\\x66\\x69\\x4e\\x81\\x36\\xb0\\x14\\xf5\\xa3\\x7f\\xca\\x7e\\x51\\x23\\x42\\x3e\\x92\\x6e\\xbb\\x58\\x1a\\x27\\x32\\x35\\x53\\xad\\x8d\\x88\\xc5\\x4a\\xdf\\x06\\x86\\x3d\\x9d\\xca\\x68\\x6e\\xbc\\xcd\\x0b\\x30\\xb6\\x77\\x87\\xe2\\xaa\\xdb\\xd3\\x2a\\x3c\\xe0\\x2b\\xec\\xb7\\x00\\xef\\x60\\xee\\xac\\x5e\\x0c\\x92\\xc8\\xc7\\x25\\x8d\\xec\\x13\\xae\\x96\\x35\\x5a\\x1d\\x5d\\x3c\\xad\\x05\\xfe\\x89\\x64\\x73\\x58\\x7b\\x77\\x73\\xb9\\x2a\\x9a\\x0c\\xae\\xbc\\xd1\\x56\\x8c\\x9b\\xf0\\x94\\x0f\\xe0\\x6c\\xf1\\x86\\xd0\\x4f\\x21\\xbf\\x2d\\x4f\\x5e\\x5e\\x12\\x94\\x2b\\xb7\\x98\\x9c\\xfb\\xef\\x13\\x67\\xaf\\x83\\x8c\\x71\\x47\\xe9\\x51\\x5c\\x35\\xdb\\x08\\x0f\\x83\\x3f\\x38\\xe1\\x1a\\xca\\xac\\xaf\\x49\\x35\\xca\\x1e\\x64\\x64\\xf6\\x50\\x5d\\x5e\\x40\\x9d\\x57\\x8c\\x52\\xd9\\xa8\\x9f\\x53\\xba\\xde\\xa9\\x5a\\x8c\\x67\\x30\\x16\\x9e\\xa3\\xbf\\xd4\\x68\\x8d\\x2d\\xe0\\xc9\\xdb\\x3a\\x4f\\xfa\\xe3\\x48\\xe9\\x95\\x5a\\xd5\\x14\\x8f\\x09\\x12\\x52\\xc6\\x4c\\x13\\x9a\\x17\\x6a\\x15\\x97\\xbb\\x7c\\x2d\\xe1\\xc7\\xaf\\x14\\x4b\\xea\\xad\\x22\\xea\\x40\\x9e\\xab\\x09\\x6b\\xf7\\x02\\x14\\x51\\x30\\xee\\xff\\x2c\\xfd\\xa7\\x95\\x87\\x87\\x6f\\xae\\xd2\\x06\\x7c\\x95\\xcb\\xf1\\xfe\\x5d\\x2c\\x3e\\x82\\x6c\\x2c\\x34\\x7a\\xa5\\x13\\x8c\\x79\\x0d\\xd8\\xf6\\x19\\x1f\\xd6\\x4c\\x8b\\x92\\x86\\x13\\xd3\\x35\\x22\\x96\\xea\\x93\\xd3\\x7e\\x4d\\xdb\\xdf\\x25\\x3c\\x53\\x1b\\x55\\x2e\\xbf\\x3d\\x73\\xcf\\x19\\x65\\x2d\\xa0\\x71\\x1f\\xb7\\xc5\\x45\\x5d\\xa9\\x5e\\x7b\\x21\\x8d\\xa6\\x97\\x70\\x4c\\x51\\xf4\\x64\\x4b\\x90\\x02\\xca\\xc4\\x3e\\x51\\xef\\xff\\x54\\xc7\\xcc\\x21\\xd5\\x42\\x41\\x45\\x33\\xe3\\xb2\\x48\\xc9\\xa4\\x84\\x19\\x07\\x03\\x62\\xe0\\xd9\\x50\\x09\\x8e\\x9d\\x34\\xf7\\x0f\\xe6\\xe1\\xf0\\x86\\x15\\xae\\x9f\\x71\\xc4\\x77\\x1b\\xb0\\xb4\\xde\\xea\\x25\\x55\\x6f\\xc0\\xb4\\xaf\\x7b\\x68\\xff\\x41\\xde\\xa0\\x53\\xff\\xd8\\xc8\\x89\\xcd\\x31\\x89\\xab\\xc0\\xd2\\x1c\\x23\\x92\\x68\\x75\\xc2\\x5b\\xa8\\xc7\\x10\\x29\\x2d\\x4a\\xea\\xf3\\x18\\x85\\xc3\\xf6\\xea\\xd2\\x64\\x6a\\x1e\\x6f\\x54\\x52\\x29\\x1a\\x3a\\xaf\\x00\\xce\\x4d\\x06\\x41\\x3e\\x28\\xc1\\x42\\x99\\x0a\\x6c\\x31\\x9e\\xcf\\x00\\xe3\\x65\\x75\\xa2\\x20\\x28\\x53\\x85\\xee\\x23\\xc8\\x6a\\x63\\xa1\\xbd\\x0c\\x86\\x94\\x09\\x93\\xc5\\x0f\\xb2\\x3e\\xeb\\xeb\\x33\\x87\\x9c\\x1f\\xa3\\xb1\\xf7\\x29\\xd8\\xce\\x7b\\xb1\\xc3\\x27\\xb5\\x18\\x6e\\xac\\x1c\\xb5\\x42\\x52\\xb2\\x25\\xe5\\x83\\x59\\xac\\x90\\xc4\\xde\\x67\\x31\\x38\\x23\\x8f\\xa3\\x8e\\x45\\xc6\\xcb\\x50\\x4f\\x7e\\xa1\\x91\\xc5\\xb1\\xed\\x58\\x26\\xce\\xc8\\xe5\\xaa\\x21\\xc8\\x28\\x29\\x8a\\x45\\x60\\xa3\\xa2\\xc8\\xb9\\xb1\\xc8\\xf8\\x0b\\x6f\\xc3\\x59\\xfe\\x77\\x5b\\xfd\\x7d\\x11\\xa5\\x03\\x7e\\xf8\\x21\\x71\\xf9\\xa5\\x8b\\x91\\xa4\\x83\\x87\\x9b\\xc3\\x89\\xbd\\x07\\xd7\\x22\\x22\\x2f\\x5c\\x5c\\x96\\x8a\\xf7\\xff\\x86\\x84\\xff\\x8e\\x40\\xdd\\x82\\x23\\xdf\\x65\\xe0\\x38\\x47\\x77\\x7c\\x51\\x30\\x41\\xc5\\x3f\\x45\\x3e\\xbe\\x6a\\xdf\\x02\\x63\\xba\\xfe\\x0c\\xea\\x5f\\xe6\\x23\\xc0\\x84\\x41\\x2c\\x76\\x75\\xe8\\x96\\x59\\xb7\\xce\\x64\\x5a\\x80\\x7d\\x4b\\x12\\xf6\\xb3\\x62\\x43\\xcf\\x4f\\x3d\\x27\\x07\\x20\\xd2\\x03\\x1e\\x7f\\xa2\\x86\\xc3\\x3f\\x3c\\xc2\\xe9\\x86\\xd6\\xa2\\x28\\x07\\x86\\xd2\\x70\\x21\\xce\\xa5\\xab\\x91\\xd4\\xf1\\xa5\\x4a\\x44\\xac\\x61\\x86\\xcf\\x4f\\x0b\\x76\\xf8\\x47\\x15\\x07\\x84\\x6d\\x15\\x0f\\x6a\\xda\\x83\\x65\\x22\\x74\\x18\\x9e\\x2d\\xca\\x09\\x0e\\xca\\x11\\xa2\\x43\\x09\\x6c\\x61\\x0e\\x28\\x18\\xa3\\xbe\\x10\\x50\\x07\\xdf\\x22\\x01\\xc1\\x99\\xde\\x89\\xc7\\xef\\x2d\\x6d\\xef\\x28\\x5e\\xba\\xd7\\x05\\x10\\x0e\\x8c\\x05\\x63\\x97\\x8e\\x7d\\x5d\\x3e\\xe1\\x17\\xe6\\xad\\xc7\\xa3\\x49\\x9e\\x59\\x8f\\x67\\x05\\x3d\\x60\\x45\\x5e\\x5d\\xf4\\x28\\x09\\xd7\\x73\\x16\\x97\\x82\\xf1\\x1d\\xd3\\xc5\\x40\\xc7\\xa8\\xd0\\x96\\x89\\x9b\\x4f\\x6e\\x82\\xce\\x69\\x3f\\xfd\\xfa\\x89\\x34\\xc8\\x5a\\x31\\xb5\\xc2\\x58\\x8e\\xbc\\xb7\\x3a\\x11\\x88\\x3b\\xd0\\x89\\x3d\\x77\\xab\\x3f\\x2c\\x7a\\x1c\\xb0\\xfc\\x21\\xe7\\x14\\x69\\xc5\\xeb\\xa9\\xaa\\xb2\\x57\\x31\\x09\\x92\\xd7\\xee\\xc0\\xad\\xc1\\x2d\\xed\\xac\\xe3\\x45\\x35\\xac\\xd3\\xf6\\x39\\x07\\x12\\xdd\\xdb\\x4f\\x68\\x9d\\xf0\\x8c\\xb2\\x2d\\xa8\\xa5\\x85\\x75\\xd8\\x56\\xc7\\xba\\x60\\x9f\\x7f\\x50\\xe5\\xde\\x7e\\x1e\\x71\\x63\\xa2\\xb5\\xb0\\x2b\\x11\\xcc\\xcd\\xf3\\x36\\x2f\\xad\\xab\\xe8\\x4c\\x19\\x48\\x80\\x70\\x74\\x5e\\x29\\x0b\\xc3\\x12\\xea\\x32\\x44\\x50\\xc9\\x50\\x0f\\x0e\\x95\\x34\\x3d\\xed\\x52\\x6d\\xdf\\xb4\\xcc\\xf9\\x9e\\x19\\xa1\\x2d\\xde\\xb6\\xcd\\xb7\\xb9\\x99\\x71\\xb6\\xdb\\x01\\x99\\xb4\\xc8\\x3a\\x94\\x00\\x2d\\x44\\x84\\x8d\\x84\\xe6\\xa4\\x49\\x98\\xb5\\xf0\\x23\\xed\\x89\\xeb\\xcd\\x67\\xca\\x4a\\xec\\xeb\\x67\\x12\\x3b\\x10\\x67\\x62\\x66\\x64\\x28\\xbb\\x76\\x7f\\x3c\\x15\\x74\\x74\\x75\\xab\\x68\\x00\\xbc\\xc3\\xca\\x6e\\x51\\x4d\\xce\\x3b\\x71\\xd5\\xd2\\x5c\\x7e\\xcd\\x32\\x7f\\xae\\x33\\x65\\xbf\\xad\\x95\\xb1\\x94\\x3d\\x68\\x69\\x5d\\xdc\\x33\\x75\\x9f\\x21\\x90\\x90\\x7e\\x15\\x3a\\xc2\\x03\\x20\\xf0\\x5b\\xdf\\x1f\\x36\\x73\\x37\\x87\\xc4\\x8f\\x67\\xce\\x11\\xda\\xcc\\x03\\x12\\x77\\x07\\xe6\\x6c\\x23\\xb4\\x8a\\xf3\\x81\\x7b\\xf9\\x60\\x82\\x33\\xa9\\x91\\x1f\\xc7\\xe0\\x96\\x9c\\xe7\\x8b\\xc0\\xb6\\x18\\x45\\x66\\x1c\\x2e\\x5d\\x4f\\xed\\x0b\\x84\\x07\\x4d\\x6c\\xe4\\x52\\xc8\\x89\\xd9\\x49\\xb0\\x02\\x48\\xa5\\x7c\\x26\\xfa\\x8f\\x0b\\xa5\\xa3\\xd8\\x16\\x17\\xb3\\xcf\\x50\\x94\\x36\\xad\\x8b\\x77\\x30\\xea\\x0e\\xd5\\x67\\xa6\\xcf\\xd4\\x57\\xcd\\x13\\x3d\\x99\\xfd\\x91\\xcf\\xaf\\x41\\x01\\xbe\\x47\\xe2\\x14\\xfb\\xeb\\x8a\\x76\\xd1\\x6d\\xa5\\x16\\x4d\\x6e\\x4a\\xa4\\xaf\\x78\\x52\\x8a\\x8f\\x63\\x66\\x61\\x35\\x38\\x29\\x6b\\x53\\x65\\x4d\\x38\\x3f\\x49\\x45\\x18\\x81\\x74\\x2c\\x16\\x6d\\xa8\\x50\\x84\\x63\\x3d\\x37\\xba\\x92\\x39\\xd3\\xfb\\x6c\\x73\\x97\\x36\\x0e\\x3b\\x8c\\x1e\\x8f\\x8c\\x0c\\x1f\\xf4\\x0d\\x76\\x09\\xe3\\x62\\x77\\xde\\x9d\\x54\\x24\\x95\\x96\\x28\\x87\\xc0\\x8e\\x9c\\x3e\\x48\\x0e\\x01\\x72\\x28\\x51\\xf4\\xa7\\x74\\x1a\\x59\\x61\\x20\\xc0\\x43\\xf7\\xda\\x0a\\x29\\xac\\xb7\\x9a\\x8f\\xa8\\xdb\\x90\\x06\\xd9\\xf5\\xbe\\x5d\\x57\\x73\\x3b\\xab\\xaf\\x6b\\x66\\x77\\xf2\\xce\\xd4\\x42\\x12\\x39\\x7d\\xe6\\xba\\x72\\x09\\x7b\\x17\\xc6\\x40\\xcf\\xe8\\x6d\\xb0\\x49\\xf6\\xda\\xd3\\x74\\x0e\\x0c\\x4b\\x68\\xc0\\x50\\xcd\\x18\\xbb\\xc4\\x1b\\x43\\x2a\\x15\\xe8\\x92\\xe9\\x6d\\x22\\x3b\\x86\\x66\\xc2\\x96\\x08\\x30\\x5d\\x97\\xa7\\x37\\x51\\x84\\xa8\\x4b\\x23\\xc9\\x30\\x66\\x4a\\x32\\xe4\\x79\\x08\\x0a\\x8a\\xe0\\x7e\\x3b\\xe8\\x51\\x1e\\x8c\\xb6\\x35\\x5f\\x8f\\x1e\\xd0\\xa9\\xec\\x92\\xe4\\x5c\\x57\\x4e\\xa8\\x31\\xd2\\xd2\\x22\\x90\\xf0\\x4b\\x9b\\xa4\\x27\\x63\\x5a\\xdc\\x2b\\xd0\\xbe\\x3c\\x95\\x53\\xe2\\x1b\\x1c\\xfd\\x7b\\x6e\\x28\\x4b\\x64\\xf0\\x41\\x29\\xe1\\x41\\x65\\x39\\xaa\\xdd\\xf4\\xa7\\xc7\\xfd\\x45\\xd7\\xc7\\x8e\\x4c\\x2d\\x31\\xf8\\x69\\x4e\\x76\\x6a\\x44\\xae\\x04\\xee\\x23\\xd8\\xc5\\xc2\\xdc\\x3a\\xba\\xe8\\x5b\\x29\\x59\\x94\\x1c\\xa3\\x4b\\x83\\xd0\\x0b\\x04\\x3a\\xa9\\x2c\\xbb\\x33\\xef\\x43\\x8c\\x1e\\x07\\xd8\\x7d\\x66\\x1d\\x3a\\x86\\xb3\\x87\\x37\\x0b\\x0c\\x86\\x68\\x87\\x42\\x0e\\xed\\x31\\x0e\\x34\\x74\\x6b\\x72\\x5e\\xfd\\xc5\\x7f\\x4c\\x45\\x70\\xf8\\x41\\xab\\x17\\xe7\\x6e\\x31\\x94\\x25\\xb4\\xc0\\x1c\\x2e\\xec\\x64\\x5d\\x96\\xbf\\xd0\\x65\\x36\\x1a\\x45\\xb9\\x30\\x3e\\xdc\\x97\\x5f\\x21\\x29\\xda\\xd6\\xeb\\x72\\xb9\\xa9\\xff\\x20\\xb7\\x34\\xeb\\x10\\xb7\\xb9\\x85\\x79\\xb9\\x77\\x5f\\x23\\xe3\\x7a\\xf3\\xbc\\x83\\x7c\\x8b\\x8f\\x9f\\x44\\x1b\\xd7\\x3b\\x97\\x5c\\xbe\\x4e\\x06\\xb3\\xde\\x90\\x20\\x61\\x4c\\x31\\xf2\\x1b\\x58\\x71\\x4e\\x76\\x69\\x4e\\x8d\\x14\\x96\\x19\\xc3\\x90\\x04\\xc1\\x62\\xc4\\x68\\xa8\\x00\\x9a\\xa9\\x56\\xbc\\x87\\x24\\x7f\\xeb\\xbf\\x9d\\xd4\\xde\\xa9\\x0e\\x81\\xa9\\xb1\\xd3\\xcc\\x4b\\x5f\\x24\\x37\\xef\\x11\\xac\\xf3\\xa2\\x6d\\x66\\x44\\x57\\xf1\\x27\\x74\\xb6\\x0a\\xe6\\x0f\\x21\\x60\\xb3\\x4e\\x93\\x45\\xbe\\xeb\\x17\\x85\\xd7\\xb3\\x36\\xdf\\xfc\\x58\\xb0\\x79\\xd6\\x3b\\xab\\x06\\xaf\\xd4\\xe2\\x4c\\x7e\\xd0\\xfd\\x0d\\x6b\\x2f\\x32\\x6f\\xa0\\xfc\\x03\\x32\\x16\\xd5\\x6c\\xfe\\x39\\xf1\\x3c\\x44\\x51\\x0f\\x57\\x69\\x28\\x99\\xdc\\x89\\xc3\\xc1\\x73\\x3b\\x84\\x73\\x67\\x05\\x03\\x04\\x08\\x56\\x5b\\xe5\\xc3\\xa6\\x5e\\xc7\\x93\\x2e\\x49\\xe8\\xc5\\x70\\xf5\\xd2\\x57\\x0b\\x5b\\x8e\\x16\\xd5\\xe0\\x62\\x72\\xb4\\x84\\x7c\\x32\\x33\\xd0\\x09\\xbd\\x5f\\x42\\x90\\x24\\x41\\xf2\\xc4\\x90\\x58\\x9b\\x40\\x27\\x93\\x66\\x37\\xe5\\x7e\\xa0\\x68\\xa8\\x9c\\xc6\\xbd\\x8f\\x3b\\x70\\x97\\x32\\x7a\\xec\\xa2\\x1e\\xdb\\x82\\x85\\x8b\\x13\\xb0\\x06\\x4a\\x55\\xaf\\xd9\\x2c\\xe8\\x68\\x35\\x5f\\x62\\x77\\xc7\\xe5\\xf8\\x4a\\x83\\x04\\xe1\\xef\\x31\\xb3\\x27\\x5d\\x2b\\x23\\x68\\xbb\\x3c\\x54\\x7f\\x7c\\x47\\x32\\xf4\\xc4\\x7d\\x0f\\x18\\x95\\x5d\\x19\\xc6\\x57\\x02\\x2b\\xf2\\x51\\xff\\xb8\\x60\\xe9\\x7d\\x9f\\x64\\xd7\\x72\\x7f\\xfe\\xbe\\xc7\\xae\\x97\\xce\\x1f\\x93\\x7a\\x4c\\x5d\\xac\\x18\\x0f\\xd8\\xe3\\x46\\xf9\\x95\\x59\\x5b\\xcf\\x8a\\x1b\\xca\\x4e\\x24\\x34\\x0f\\x53\\x6e\\x75\\xc2\\xf8\\xd0\\xca\\x04\\x83\\x06\\x47\\xe2\\x6b\\x39\\x18\\x13\\xa2\\x44\\x00\\x00\\x7e\\xb9\\x5d\\xcc\\x55\\xa4\\x28\\x62\\x51\\xb9\\x30\\x9b\\x48\\x15\\xb9\\xaa\\x2e\\x5b\\x26\\x74\\x95\\x73\\xc7\\xd2\\x40\\x51\\x48\\xb9\\x4e\\x19\\x42\\x10\\x5b\\xb0\\x78\\x33\\x9c\\x39\\x62\\xf9\\xbe\\xf6\\x35\\x5d\\xbb\\x3c\\xa1\\xcb\\x8d\\x5c\\xe9\\x28\\x2b\\x50\\x24\\xc2\\xe4\\x1b\\x92\\xf2\\x79\\x07\\x1d\\x2b\\xd4\\xb5\\x7f\\xfb\\x05\\x9b\\x5b\\x13\\x34\\x7e\\xdf\\xfd\\xa3\\xd7\\xaf\\xb8\\x3a\\xd1\\x8d\\x19\\x95\\x57\\xf4\\x54\\x41\\x91\\xf6\\x1f\\x9b\\x40\\x1c\\xa7\\x41\\x9a\\x39\\x3e\\x65\\x82\\x33\\x55\\x73\\x4e\\xc9\\x9a\\x9c\\xe7\\x95\\x33\\xfa\\x59\\x97\\x9a\\xa1\\x45\\xa2\\x2b\\xdd\\xc2\\xf3\\xf2\\x56\\x2a\\xca\\x2b\\x4a\\x02\\x2f\\x4b\\xd4\\x8e\\xca\\x1c\\xbe\\x96\\x8d\\x36\\xc1\\x86\\xe9\\xc9\\x40\\x83\\x55\\x25\\x28\\xb5\\x08\\x4a\\xba\\x21\\x1e\\x9b\\x8b\\xc8\\x4f\\x67\\x0a\\x66\\x13\\xf4\\x9f\\xa6\\xc2\\xa4\\x3d\\x59\\x44\\xb4\\x0c\\x16\\x87\\xbf\\xf5\\xee\\xda\\xb1\\x6b\\x24\\xd3\\x1c\\xb0\\xdd\\x8e\\x1c\\xa9\\xbe\\x6b\\x7b\\x76\\x59\\x85\\xe4\\xf0\\x0b\\x33\\x43\\x4c\\xf9\\xf1\\x01\\xb0\\x54\\x5d\\x06\\xc6\\x03\\xaf\\x13\\x01\\x7b\\x9d\\x00\\xcc\\x8e\\xe0\\xca\\xa8\\x7c\\x7c\\x4d\\xf8\\x60\\x6e\\x1b\\xfa\\xe3\\xba\\xb5\\x67\\xf5\\xb3\\x8b\\x0e\\xe2\\xbb\\x1a\\xb8\\xbd\\x99\\xb5\\x9a\\xf6\\xb7\\x7f\\x33\\x64\\xbe\\xd2\\x3d\\x06\\x3d\\xe9\\xc9\\x0b\\xdb\\x97\\xd2\\xab\\xab\\x8a\\x39\\xb7\\x3c\\x8a\\x65\\x26\\xa6\\x84\\xa7\\x86\\xf0\\x43\\x4b\\x22\\x35\\x7c\\xf6\\x38\\x59\\x18\\x93\\xad\\x11\\xe7\\x81\\xe9\\x95\\x6b\\x0c\\x9e\\x61\\xc4\\xe9\\xa2\\x22\\xd8\\xd9\\xe2\\x15\\x07\\x72\\x5a\\xbd\\x1e\\xc1\\x61\\xa7\\xcf\\xa5\\x89\\x28\\xea\\x50\\x57\\x12\\x40\\x14\\x52\\x87\\x4e\\xe8\\x0a\\x0c\\x9c\\x89\\x89\\x61\\xf9\\xf0\\x8d\\x10\\xae\\x0c\\x6c\\x8c\\x28\\xcc\\x00\\x4c\\x8f\\x7a\\x87\\x69\\xf4\\x25\\x99\\x38\\xff\\x5b\\x5b\\x11\\x77\\xb3\\x7c\\xe3\\xb1\\x82\\x2e\\xcf\\x47\\xb0\\x7b\\xae\\xf0\\xfd\\xc6\\x9a\\x3e\\xca\\xcd\\xb9\\x32\\xc4\\x9f\\x2a\\x58\\x69\\x94\\x7a\\x38\\x2c\\x8f\\x1a\\xe8\\xe2\\x43\\x3a\\x12\\x00\\xc0\\x32\\x4f\\xdf\\x1e\\x15\\xd7\\x7c\\xcf\\x88\\x37\\x70\\x71\\x70\\x45\\x8e\\x0e\\xa4\\xcb\\xb9\\x34\\xc3\\xd8\\x6f\\x22\\xc0\\xf3\\x43\\x8a\\x7c\\x7b\\xbc\\x80\\xbd\\x76\\x00\\x46\\x47\\x50\\x01\\x35\\x1f\\x53\\x13\\x96\\x29\\x99\\xb0\\x8f\\x55\\x6b\\x5d\\x16\\x83\\xc2\\x69\\x88\\x4e\\xa2\\x26\\x05\\x2b\\x37\\x3e\\x32\\xac\\x64\\x32\\xec\\x5e\\x5b\\xee\\x9e\\x7e\\x4c\\x37\\xb5\\x4a\\x85\\x11\\x7f\\x90\\x2d\\x9f\\x7c\\xe7\\xac\\xe4\\x1e\\x75\\xb5\\xaf\\xb0\\x2a\\x73\\x8f\\xf3\\x3a\\x5d\\x9c\\x23\\x56\\x40\\x00\\x00\\xed\\x71\\x26\\x3e\\x43\\x07\\xc4\\x19\\xed\\xd5\\xc5\\xe6\\x34\\xaf\\x05\\x4b\\x4b\\x3d\\x6b\\xab\\x19\\x96\\xcc\\xed\\x75\\xb9\\xdb\\xb0\\x3a\\x7d\\x13\\xde\\x56\\x8a\\x1a\\x71\\x06\\xad\\x50\\x52\\x7c\\xd7\\x9b\\x3a\\x0c\\x84\\xc0\\xec\\x68\\x56\\x0c\\x6c\\xa1\\x2c\\x09\\x23\\xd9\\x8d\\x1b\\x5a\\xd7\\x60\\x25\\x31\\xa7\\x8d\\x6a\\xfc\\xc2\\x7a\\x12\\x1c\\xe9\\x7c\\x4f\\xd9\\xf5\\x0c\\xfe\\x91\\xb0\\xc1\\x6b\\xc6\\x82\\xa0\\x27\\x44\\xd8\\xaf\\xab\\x5c\\x02\\x23\\xd9\\x66\\x8c\\x54\\xc8\\xca\\x0c\\x12\\x2d\\x1f\\x7e\\xff\\xf7\\xf1\\x15\\x1f\\x6b\\xdb\\xf6\\x9a\\xc9\\x2f\\xba\\xe3\\x88\\xb3\\xaa\\xc6\\x1a\\xa6\\x4d\\x55\\x67\\x8e\\x32\\x6a\\x7d\\xb7\\x59\\x9f\\x42\\xed\\xaa\\xd2\\xf0\\x59\\x67\\x37\\x68\\x0a\\x53\\x58\\x71\\x5b\\x03\\x00\\xf8\\x2c\\xdc\\x50\\x4d\\x7e\\x85\\xab\\x7e\\x86\\xff\\xa9\\x06\\x58\\xcd\\xdc\\x9c\\xf3\\xff\\x08\\x04\\x9a\\x86\\x12\\x87\\x56\\xe4\\x3c\\x20\\xdf\\xc8\\xc1\\x8d\\x8d\\x62\\xa7\\x79\\x43\\x46\\xbe\\xfa\\x6a\\x92\\x38\\xb3\\xee\\x4d\\xb4\\xff\\x18\\x01\\xaf\\x1e\\xc7\\x76\\x57\\xca\\x0e\\x14\\x6a\\x60\\xc3\\xe5\\xcd\\xc7\\x04\\x3d\\x80\\x3b\\x2e\\xf2\\x28\\x92\\x9f\\x14\\x9f\\x5f\\x53\\x56\\xe0\\xdd\\xbb\\x37\\x17\\x79\\x2f\\x6e\\x8a\\xee\\xcc\\x44\\xde\\x02\\x55\\xe4\\x08\\x5f\\x55\\x37\\x54\\x5d\\xcb\\x9b\\x33\\x2e\\x78\\x34\\x9f\\x36\\x2f\\x7b\\x62\\xf6\\xc1\\x4b\\xaa\\x06\\xd7\\x65\\xd1\\xec\\x2a\\x25\\x90\\xd7\\x21\\x36\\x09\\x09\\xa9\\xe9\\x0c\\x5b\\x28\\xab\\xb6\\xea\\xfc\\xc5\\xa0\\x9f\\x26\\x7f\\xc2\\xbb\\x09\\x3d\\x02\\xab\\x01\\x4c\\xad\\xe9\\x2c\\xdd\\xda\\xcb\\x89\\x5f\\x1b\\xfb\\x2b\\xd4\\x34\\xc0\\x2b\\xaa\\xc2\\x1c\\xf1\\x94\\x18\\x91\\x44\\x27\\xcb\\xf4\\xf3\\xb5\\xfe\\x6d\\xe0\\x5d\\xf0\\x71\\xe4\\x13\\x48\\x46\\xe2\\xee\\xbd\\xf9\\xf9\\x5f\\xbf\\xd3\\xa4\\x94\\x12\\x39\\x61\\x49\\x2c\\x78\\x84\\x91\\xc2\\xe9\\x8f\\x4c\\x84\\x9e\\xcb\\xdc\\x95\\xf9\\x1e\\xe4\\x17\\xbe\\x80\\xeb\\xaa\\xc4\\x2e\\x7a\\x3c\\xd8\\xc3\\x24\\xc8\\xb1\\xfc\\xe6\\xd9\\x65\\x01\\x8e\\xd7\\x37\\x18\\x5a\\xf3\\x7e\\x2a\\x94\\x56\\x1c\\xc9\\x0e\\xd3\\xc4\\xc7\\x45\\x18\\xa8\\xac\\xe5\\xd1\\x2c\\xd1\\xd0\\xbd\\xd3\\xb6\\x72\\xc0\\x5e\\xcc\\xf4\\x12\\xee\\x64\\xee\\x79\\xe4\\xf9\\xca\\x22\\x6d\\x86\\xdb\\x7c\\xed\\x6b\\xf4\\x29\\x2f\\x1a\\xe8\\xde\\x98\\xd6\\x8d\\xd5\\x1d\\x42\\xd3\\xf8\\x02\\x4a\\x82\\x32\\x8b\\x80\\x6c\\xf2\\xbd\\xa5\\x0e\\x23\\xd3\\x2f\\x09\\xe6\\x96\\x66\\x1d\\xb0\\x94\\x08\\x17\\xdb\\x1c\\x97\\xc4\\xd3\\x2f\\xfe\\x95\\xdd\\x2f\\x0d\\xfc\\x79\\x7b\\xc4\\xd5\\x11\\xc9\\x10\\x86\\x68\\x58\\x70\\x9c\\x56\\x40\\x31\\x91\\x58\\x71\\xdc\\xf7\\x9e\\x0f\\x1e\\x9a\\xe5\\x4d\\xb4\\x3c\\xe9\\x53\\xb1\\x1e\\xd6\\x87\\xfe\\xc5\\x77\\x8d\\xa1\\xee\\xe6\\x8d\\x72\\xb9\\x63\\x53\\x43\\xc4\\x05\\xec\\x4a\\x5a\\x5b\\x0d\\xf9\\xbb\\x5d\\xa6\\xac\\x08\\x05\\x47\\xf4\\x97\\x82\\xd7\\x95\\x1d\\xb5\\xab\\x08\\xf4\\x68\\xbb\\x41\\xaf\\x27\\xc6\\xfa\\x57\\x31\\xc3\\xe5\\x89\\xfa\\x62\\xbb\\x5a\\x24\\x88\\xc1\\x92\\x4f\\x51\\x12\\x70\\xf9\\xc9\\x72\\x1d\\x93\\x6f\\x8f\\x75\\xed\\xa8\\xf6\\x28\\xa7\\xfa\\x72\\xaf\\xf1\\x5a\\x9d\\x97\\x10\\x2b\\x3c\\xb6\\x29\\x1b\\x0a\\x4c\\x96\\x8b\\xb1\\x06\\x1c\\x51\\xe4\\x0e\\xe1\\x72\\x81\\xd9\\xcc\\xd2\\x1e\\x6b\\xd7\\xb5\\xdf\\xce\\x67\\x98\\x30\\x8d\\xa8\\xec\\xd8\\x68\\xac\\xec\\x8e\\x0d\\xc7\\x4c\\x50\\x21\\x7f\\x22\\x8b\\x19\\x01\\x8e\\xdc\\xe1\\xce\\xac\\xa3\\x84\\xd2\\xd6\\xeb\\x9c\\xb9\\x25\\x8a\\xd1\\x6b\\xcc\\x58\\x06\\xbb\\x74\\x36\\x20\\xef\\x6c\\x20\\xc7\\x3a\\x37\\xe2\\x24\\x9f\\xc7\\xce\\x16\\x8e\\x6b\\x31\\x3e\\x50\\xaf\\x93\\x76\\x7e\\x45\\x23\\x83\\x42\\x17\\xef\\x59\\x94\\xcf\\x7a\\x46\\xd9\\xb4\\xdd\\x68\\x26\\xe9\\x1f\\x1a\\x51\\x7c\\xdc\\x18\\x04\\xf6\\x06\\xda\\x10\\x5c\\xab\\x47\\x39\\xe5\\x26\\x45\\x2d\\xdc\\x24\\xcf\\xf5\\xf5\\x0f\\xff\\xf5\\x5c\\x66\\xf3\\x80\\x57\\xbc\\x1c\\x8c\\x26\\xed\\x39\\x11\\x7a\\x1e\\x15\\x5f\\x88\\x60\\x60\\x97\\x37\\x4f\\xcc\\xc9\\xf0\\xb1\\xbb\\x80\\xdc\\x80\\x0d\\x8c\\x5e\\xd6\\xe6\\x01\\x7a\\x55\\xec\\xc6\\xb5\\xd5\\xb3\\x56\\xab\\x2e\\x20\\x2f\\x64\\xc1\\x52\\xfe\\x96\\xc3\\x90\\x90\\x08\\x4f\\xeb\\xd0\\x2c\\x1c\\x96\\x38\\x76\\x63\\x7e\\x47\\xc0\\x8d\\xb9\\x1d\\xe1\\x2e\\x69\\xd7\\x6f\\x07\\xd4\\xb7\\x72\\x7f\\x9c\\x31\\x27\\x15\\x68\\xdb\\xfd\\x8a\\x9b\\x7b\\xdf\\xc0\\x90\\x4c\\x73\\xd9\\x1a\\xad\\xbd\\x8e\\x3e\\x55\\xe8\\xa0\\x4f\\xb7\\xd7\\xaf\\xd1\\x9b\\xea\\x3e\\xfd\\x6f\\x4e\\xce\\x56\\x1d\\x4f\\x4a\\xd8\\x06\\x53\\xc5\\x42\\x61\\x0a\\x3f\\x35\\x9e\\x10\\x07\\x63\\x3b\\x32\\xf4\\xf3\\x28\\xb6\\x6a\\xc4\\x78\\xa1\\x03\\x33\\x5d\\x5c\\x3f\\x4c\\x2f\\xe2\\x66\\xb7\\x89\\x75\\x6f\\x4c\\xfb\\xf0\\x9c\\xbe\\x43\\xdf\\x13\\x8b\\xdb\\xb8\\xf3\\x3d\\x4d\\x2c\\x74\\x9a\\x62\\xeb\\x54\\x68\\x0c\\xf2\\xce\\xb2\\xea\\x3e\\x1a\\x9d\\xaf\\x86\\xb5\\xe9\\xe4\\x49\\x5f\\x21\\xde\\x9a\\xce\\x37\\x44\\xa2\\x53\\x0b\\x69\\x6c\\x13\\xa8\\xdd\\x4d\\xab\\x9e\\xec\\xa2\\x99\\x48\\xed\\x02\\x4b\\x32\\x84\\x98\\x66\\xa3\\x50\\x33\\xd1\\x59\\x3e\\x22\\x64\\x56\\xe6\\x99\\xe6\\xf6\\xcb\\x9a\\x96\\xd2\\xf5\\xdc\\x79\\x23\\x92\\xdf\\xe7\\x59\\xce\\x57\\xfc\\x36\\xbf\\xfa\\x96\\xb6\\xb3\\xe0\\x3c\\xbb\\xbf\\x56\\x78\\x74\\x43\\x93\\x90\\xf7\\xe1\\x7f\\x0a\\xc7\\x29\\x7b\\xcf\\x2c\\xbb\\xfb\\xf1\\xcc\\xc9\\xbf\\xc7\\xd7\\xfe\\xb3\\xdd\\x5c\\xb3\\xf5\\xd4\\xb7\\xed\\xf2\\x79\\x77\\x3f\\x20\\x2a\\x02\\x3c\\x0b\\xc7\\xc2\\xd0\\x8a\\xea\\x6d\\x1e\\xc5\\xdf\\xca\\x80\\xe2\\x6a\\x51\\x50\\xd8\\xaa\\x85\\x19\\xb3\\x32\\xe5\\xf7\\xb4\\x89\\xf0\\xd4\\x18\\xfe\\xe2\\x7a\\x9e\\xfd\\x60\\x5d\\x56\\xd6\\x54\\x5b\\xce\\x85\\xa4\\xf6\\xfb\\x05\\x65\\x08\\xfb\\x63\\x5d\\x67\\x6e\\xf5\\xf9\\xd3\\xe7\\xeb\\x9c\\xb5\\x68\\x30\\xfb\\x5b\\xe5\\x36\\x71\\x7d\\x13\\xf9\\x50\\x05\\xd4\\x26\\xba\\x50\\xd3\\x7a\\x5e\\xd2\\xea\\x3c\\x9f\\x30\\x96\\x7c\\x8b\\xb8\\xd2\\x02\\xdd\\x40\\x05\\x9c\\xf5\\x20\\xba\\x7e\\xd8\\x9f\\x5b\\xe5\\x97\\xa4\\xf2\\x81\\xb5\\xe2\\x9e\\xea\\x18\\xc5\\x56\\x79\\x37\\xd6\\x0d\\xbe\\xe7\\x8a\\x95\\x28\\xb0\\x39\\xc1\\x59\\x62\\xd6\\x7e\\x2e\\xf3\\x49\\xba\\x81\\x89\\x55\\xc2\\xd3\\x79\\x3e\\x69\\xf0\\xf2\\x44\\x99\\x11\\x46\\x4f\\x37\\xc4\\x60\\x73\\x10\\x39\\x69\\x3e\\x3c\\x84\\x2b\\x51\\x6c\\x84\\x12\\xe6\\xf2\\xcf\\x94\\x6e\\x03\\x35\\x65\\xd3\\x0a\\x95\\x22\\x73\\x99\\x21\\xf4\\xcb\\xfc\\xb8\\xf7\\xb1\\xaa\\x68\\x09\\xbf\\xb8\\x5a\\x3c\\x13\\x55\\xfa\\xee\\xec\\xd3\\xf7\\x5c\\x25\\x91\\xc0\\xc9\\xca\\xd0\\xbc\\x3b\\x7e\\x34\\x11\\xa8\\x62\\xa3\\xd2\\x4c\\x89\\xba\\x51\\x9a\\x38\\x52\\xbb\\x40\\x0b\\x25\\x6d\\x42\\x2e\\x7a\\x34\\x9f\\x6d\\xc2\\xd6\\x83\\x36\\xa3\\x7c\\xdf\\xca\\x08\\xfd\\x4a\\x2f\\x92\\x97\\x64\\x80\\xe3\\x07\\x89\\x24\\xbd\\xf2\\x5b\\xce\\xfc\\x42\\xb1\\xa6\\x15\\xbd\\x64\\xc7\\xff\\x38\\x6c\\x3f\\xfc\\x7e\\x98\\xd3\\xb1\\xc2\\xfb\\x71\\xfa\\x4f\\xff\\x6a\\xb5\\xaf\\x88\\xd5\\x7d\\xd1\\x97\\xb9\\x03\\xee\\x7f\\x1a\\x96\\x20\\x91\\x92\\xfd\\x9e\\x99\\x2e\\xbb\\x0e\\x98\\x81\\xcf\\x99\\x9e\\x2c\\x11\\xdb\\x9b\\x13\\x8e\\x42\\xaa\\xf3\\x97\\xa3\\xe7\\xe6\\xea\\xab\\x75\\x3e\\x81\\x6f\\x07\\x83\\xa1\\x38\\x6e\\x2e\\x2c\\x63\\x4f\\x60\\x56\\x2d\\x2d\\xfb\\xda\\x91\\xf6\\x12\\x07\\x0b\\xeb\\x67\\xf5\\x52\\x42\\x71\\x31\\xca\\xd0\\x05\\xbf\\x31\\x50\\x55\\xb6\\xb3\\x26\\x71\\x17\\xd4\\x59\\xb5\\x16\\xd3\\xad\\x96\\x95\\x32\\x51\\xe9\\x7c\\x5f\\x0d\\xee\\x5b\\x76\\xfc\\x47\\x07\\x2e\\x6d\\x68\\xd3\\xa0\\x9e\\x6e\\x6b\\x17\\x45\\xac\\xb1\\xcd\\x77\\xdf\\x69\\x55\\x43\\x63\\x8f\\x93\\xf8\\x70\\x13\\xf5\\xcd\\x2a\\x93\\x67\\xce\\x55\\x33\\x92\\x16\\xa4\\xdb\\x14\\x31\\x51\\x40\\x8f\\x28\\x98\\x36\\x04\\x65\\xd7\\x69\\x8e\\xec\\xe1\\x1f\\xad\\xfc\\x5f\\xf2\\xd7\\x27\\x1d\\x1b\\x13\\x29\\x7f\\xe1\\x5b\\x08\\x64\\xf8\\xc8\\xd0\\x9c\\x1f\\x1f\\x7e\\x70\\xe8\\xa4\\x1f\\x31\\x15\\x6e\\x5a\\xaa\\x85\\x93\\xce\\xa1\\x15\\x91\\xfa\\x0d\\x7a\\xb8\\x7e\\xcd\\x63\\x3d\\x1a\\x47\\x75\\x25\\x1d\\x2f\\x9b\\x3f\\x6a\\x2a\\xf2\\xbe\\x8c\\x3c\\xed\\x02\\x8f\\x39\\xfe\\x38\\xf8\\xbd\\x6e\\x68\\x06\\xf7\\x0a\\x18\\x77\\xf5\\x1a\\x41\\xae\\x2c\\x82\\x8c\\xca\\xb7\\xe3\\xc6\\xdc\\x89\\x26\\x28\\x22\\xdc\\x44\\x95\\xec\\x2c\\x2e\\x29\\x3a\\x72\\x59\\x29\\x3c\\x89\\x25\\x89\\xdf\\x6d\\x26\\x4b\\x56\\x17\\xbb\\x8b\\x3b\\x40\\xca\\x70\\x6d\\x7c\\x98\\xdf\\x10\\x0b\\x9e\\xdf\\xac\\xf7\\x4b\\x5e\\xeb\\x85\\x03\\x0a\\x63\\x81\\x85\\x70\\x43\\x72\\x6e\\x20\\xbb\\xf1\\x18\\xa2\\xc7\\x25\\x1d\\xcb\\xcd\\xf3\\x4d\\x4c\\x0a\\xcc\\x6c\\x57\\x79\\x92\\x79\\xc5\\x81\\xfc\\xaf\\x70\\x3a\\x0c\\xc2\\xcf\\xef\\xd5\\x83\\xbe\\xcd\\x1b\\xc2\\x67\\xf2\\x29\\xd0\\xbb\\x9f\\xad\\x61\\xad\\xf1\\x0a\\x99\\x10\\x6e\\x25\\xc5\\x18\\xc7\\xda\\xb3\\x37\\x21\\xab\\x4c\\x04\\x7b\\xa6\\x88\\x50\\x5b\\x65\\x9f\\xc5\\x97\\x8d\\x98\\xfd\\x7e\\x26\\x38\\x01\\xf3\\x20\\x87\\xa4\\xdf\\x10\\xd0\\x7f\\xc5\\x07\\x21\\x71\\xe5\\x87\\x63\\x9d\\x0b\\x31\\x36\\x0b\\xac\\x22\\x53\\x04\\xab\\xb5\\xd9\\xbb\\xf1\\xce\\x04\\x52\\xc0\\x30\\xef\\x43\\xaa\\x4e\\x96\\x97\\x88\\x10\\x1b\\x2b\\xdf\\x9c\\x8f\\x08\\xf4\\xec\\x14\\xc7\\xc2\\xd6\\x5d\\x0f\\xaf\\x1c\\xc5\\x34\\xd8\\xa8\\x0d\\x1a\\x15\\xb5\\x2e\\xb9\\x4b\\xd8\\x4a\\x1a\\x09\\xa6\\xa0\\x13\\xf3\\x24\\xd0\\xd5\\x0c\\x34\\x26\\xe1\\x00\\x2f\\x03\\x92\\x4e\\xde\\x5f\\x19\\x2b\\x85\\xb7\\x05\\x53\\x7c\\xf3\\xb2\\xbb\\x6a\\x32\\x77\\x91\\x9c\\xb3\\xae\\xea\\xbb\\xfb\\xe9\\xfc\\x7c\\x63\\xba\\xf7\\xac\\xe7\\xcd\\xca\\xde\\x4d\\xea\\xac\\xe0\\x8e\\x98\\x7c\\xe9\\x58\\x59\\xbd\\x2c\\x04\\x95\\x61\\x88\\xc2\\x49\\xd1\\x7a\\x31\\xeb\\x28\\x53\\x14\\xa4\\xe5\\x32\\x31\\x2c\\x95\\x86\\x92\\x84\\x0d\\xee\\x84\\xc3\\x05\\x9d\\x6d\\x7c\\xab\\xa9\\x4b\\x6c\\x6f\\x8a\\x3b\\x54\\xde\\x94\\xe3\\x3a\\x6d\\x7d\\x9d\\x22\\x47\\x4a\\x07\\xc7\\x66\\x47\\xcc\\x02\\x6c\\xba\\xc3\\xe1\\x7c\\xa2\\xc5\\x44\\xd8\\xee\\x41\\xca\\x6e\\x44\\x92\\x6e\\xac\\xce\\x00\\x0f\\xaf\\x8c\\xfb\\x79\\xda\\x23\\x12\\xe9\\xe6\\x3b\\x9e\\xdb\\x2e\\x85\\x90\\xf8\\xb0\\xf6\\xaf\\xf7\\xda\\x30\\x3f\\x6d\\xe7\\x45\\x67\\x0e\\xa7\\xa9\\x69\\x75\\x8d\\xf6\\x83\\xd8\\xf2\\x7d\\xf9\\x48\\xe6\\xf2\\xdf\\x98\\xfe\\x18\\x40\\xac\\x08\\x79\\x3a\\x97\\x1d\\x43\\xde\\xf2\\x02\\xc8\\x49\\x9f\\xf9\\xa8\\xdb\\xf7\\x1a\\xd5\\x67\\xa7\\x7f\\x61\\x54\\xf8\\xcb\\xb9\\xe0\\xa7\\x1b\\x75\\x60\\x37\\x0e\\x7b\\xfb\\x96\\x03\\xab\\x6b\\x0b\\x71\\x5a\\xbf\\x50\\x16\\xaa\\x32\\x4c\\x92\\x64\\x0d\\x1d\\x2d\\x43\\x1b\\xd8\\xf4\\xb1\\x34\\x2d\\x5a\\xcd\\x61\\xa8\\x22\\x05\\xec\\x39\\xbe\\xdd\\x01\\x18\\xc6\\x95\\xd8\\xf1\\x0d\\x39\\x1a\\x7c\\x53\\x79\\xe1\\x18\\xb6\\xc8\\xdf\\x54\\xfd\\x66\\x95\\xf1\\xb3\\xfc\\x55\\x3d\\x92\\xe2\\x68\\xb7\\x77\\x70\\xb1\\xe4\\xcc\\xfa\\xf5\\xf8\\xb3\\x97\\xd1\\x8f\\x7d\\xe1\\xf1\\xf8\\x78\\xa4\\xdf\\x54\\x59\\xed\\xbe\\x8a\\x0d\\x7e\\xf6\\x20\\xfb\\x20\\xd6\\x6d\\xc7\\x36\\x6a\\x34\\xd8\\x26\\x77\\x61\\x3f\\xd6\\x1e\\x79\\xb6\\xfd\\x68\\x4d\\x7e\\x5e\\x5f\\x9c\\x86\\x0f\\x22\\xfe\\x74\\xe9\\x3c\\x16\\x73\\xe6\\xc2\\x7d\\x22\\x8b\\x71\\x77\\xaf\\x62\\x90\\xda\\x80\\x65\\xf6\\x0e\\xad\\x0e\\x8c\\xf9\\xae\\x0a\\x4c\\x46\\xfa\\xf0\\xf3\\x97\\xea\\xe1\\x24\\x83\\xc7\\xd7\\x62\\x24\\xc5\\x66\\x37\\x2e\\xd3\\x1d\\xac\\x5e\\x73\\xa1\\x03\\x29\\xc8\\x2c\\xa2\\x19\\xd5\\xb9\\x34\\xb6\\xa2\\x1a\\x99\\x5c\\x88\\xee\\x75\\x64\\x6c\\xcc\\x30\\xc6\\x8a\\x19\\x51\\xd1\\x4a\\x23\\x7d\\x53\\x86\\x31\\x41\\x1c\\x03\\xa4\\xfe\\x46\\x05\\xcb\\xbc\\xcb\\xdf\\xeb\\x89\\x1d\\xd5\\x17\\x97\\x62\\xf8\\x59\\x85\\x6c\\x10\\x3b\\x92\\x5d\\xc5\\xe6\\x0a\\x9d\\x18\\x4d\\x31\\x72\\xd4\\xb3\\xf7\\xef\\xbd\\x2e\\x7a\\x12\\x0d\\x66\\xb5\\xae\\xe3\\x1b\\xe9\\x8c\\x49\\x8a\\x07\\x12\\x55\\xc1\\x62\\xf3\\x38\\xdb\\xea\\xef\\x55\\xee\\x40\\x37\\x58\\x29\\x35\\x2a\\x35\\xa5\\xb6\\xa1\\x60\\x4d\\xd2\\xca\\xd7\\x9c\\x8d\\xe3\\x33\\x28\\x78\\x42\\x40\\xd8\\x20\\xc8\\xe7\\x0d\\x4b\\x02\\x99\\xc9\\x40\\xa3\\xd2\\x37\\x4a\\x20\\x48\\x2e\\xf8\\x4e\\x81\\x07\\x90\\x1d\\x36\\x40\\xee\\x4f\\x69\\x34\\xa8\\x8b\\x11\\x62\\x65\\x27\\xaa\\xac\\x91\\x74\\xc9\\x6f\\xfe\\xcf\\x24\\x7f\\x0b\\x8a\\x05\\x8d\\x25\\x8e\\x1c\\xdd\\xa9\\xf4\\xcd\\x01\\xa8\\xf1\\x1f\\xbf\\x7f\\x13\\x42\\xd0\\xfa\\xe4\\x06\\xab\\x4f\\x7c\\x14\\x49\\x7b\\x00\\x17\\x05\\x18\\xd2\\xfe\\x00\\x6c\\xa6\\x1c\\xf3\\xd4\\xb7\\xa0\\xb2\\xd4\\x65\\x48\\xb5\\x81\\x54\\x4e\\x6e\\x0b\\x5d\\xee\\x17\\xe2\\xa9\\xd8\\xdc\\x69\\x67\\x21\\xd2\\x2d\\x1e\\xeb\\xc2\\xc1\\x45\\x7e\\x5a\\x18\\xe7\\x44\\x64\\x7c\\xbc\\x40\\xf5\\xb7\\x97\\x35\\xb5\\xd5\\x6e\\xa9\\x80\\xb2\\x5d\\xbd\\x22\\x47\\x2d\\x72\\xd4\\xdb\\x66\\xbd\\x3e\\x2d\\x65\\xda\\x89\\x48\\x9f\\x82\\x84\\x43\\xf6\\xae\\x9e\\xf8\\x22\\x91\\x2b\\xd6\\x58\\x80\\x1d\\x02\\x54\\xfc\\x0f\\x3d\\xec\\xc9\\x0b\\x06\\xee\\x80\\x89\\xfd\\xd5\\xde\\x07\\x9b\\x13\\x17\\x6f\\x31\\x6e\\x79\\xbb\\x45\\xd7\\x3b\\x1f\\x89\\xfb\\x63\\x6c\\x3e\\xee\\xc2\\x98\\xfe\\xb3\\xaa\\xc8\\x9e\\x2b\\x74\\xf6\\x8c\\xd0\\xfc\\xd0\\xd3\\xa1\\x7a\\xdb\\x4e\\x0c\\xaa\\x81\\x1f\\x80\\x9a\\xc5\\xc7\\x2c\\xbc\\xf8\\xc6\\xfc\\x15\\x5d\\x85\\xc9\\xa7\\x13\\x36\\x1c\\x06\\x1f\\x5e\\x77\\x1a\\x6a\\x3c\\xf4\\xc2\\x7d\\xa8\\xe3\\xf4\\xd3\\x04\\x59\\x6e\\x28\\xf1\\xe8\\xb4\\x8f\\x89\\xbf\\x81\\xdd\\x63\\x2f\\x31\\x6d\\x3b\\xe5\\x97\\xd8\\xc9\\xb5\\x3e\\x71\\x3e\\xdb\\x89\\xbc\\x2c\\xef\\x29\\x8d\\x77\\xb3\\xcf\\x04\\x7f\\xa2\\x7e\\xfc\\x5a\\xdd\\x6f\\x60\\x17\\xff\\x25\\xf2\\xe2\\x16\\x3f\\x16\\x36\\x09\\x1c\\xac\\xf5\\x9d\\x61\\x65\\xb2\\xc4\\xb5\\xda\\x97\\x04\\x2c\\x61\\xfe\\xfb\\x41\\x95\\x08\\x8d\\x46\\x44\\xc7\\x10\\x43\\x9e\\xfc\\x6b\\x76\\x66\\xa4\\x93\\xd5\\x51\\x60\\x69\\x89\\x33\\x78\\x4b\\xd7\\xa3\\x02\\x52\\xa6\\xeb\\x77\\x23\\x84\\x6f\\xcd\\xb4\\xfa\\x6c\\x53\\x2e\\x8a\\xeb\\x17\\xf1\\x0b\\x0a\\xf2\\x9b\\x30\\xa0\\x84\\xcd\\x37\\x45\\xd6\\x18\\x19\\xe4\\xf1\\xc6\\xee\\x6a\\x48\\x0f\\x88\\x58\\x00\\x5b\\x80\\x41\\xa4\\x37\\x9c\\x88\\x7b\\x1b\\x50\\xd3\\xe3\\x01\\x72\\xa8\\xf4\\xdb\\x17\\x01\\xe5\\x78\\x12\\x1e\\x27\\xef\\x37\\xfb\\xc0\\x50\\xec\\xc4\\xa0\\xc6\\x93\\xe5\\x1c\\x3f\\x27\\x97\\x9e\\x4f\\xa8\\x54\\x6e\\xdc\\xd7\\xe9\\xb7\\x8f\\x2e\\x43\\x6d\\xc3\\x84\\xa8\\xee\\xa8\\x90\\x41\\x74\\xbe\\x07\\xb7\\x61\\x9f\\xaa\\x77\\xab\\x1e\\x76\\x34\\xb5\\xc7\\xd7\\xc7\\x2c\\x50\\xb9\\xbe\\x6c\\xdd\\x13\\xfe\\xe3\\xdf\\xb5\\x17\\x1e\\x7e\\xff\\x70\\xaa\\x0e\\x52\\xb2\\xa3\\x67\\xb3\\xcf\\x6b\\x90\\xcf\\xfc\\x3c\\xa4\\x3b\\x0a\\x48\\x1d\\xbc\\xbb\\x52\\x11\\xf5\\x37\\xd2\\x85\\xdd\\xec\\xf3\\x6c\\x57\\xe0\\xe3\\x4d\\x6c\\xc2\\x26\\x5b\\xba\\x06\\x5d\\x84\\xe4\\xd0\\xa5\\xb5\\x26\\xe7\\xf6\\xa7\\x81\\xf5\\x27\\x60\\xb3\\x0b\\xb2\\xba\\xcd\\x2d\\x8e\\xd9\\xdc\\xe8\\x06\\xfa\\xdc\\x1d\\x2e\\x0f\\x7f\\xaa\\x3e\\xef\\x10\\xa1\\x86\\xc7\\xd0\\x83\\x81\\x77\\x2e\\xd0\\x79\\xda\\x1d\\xc3\\xc0\\x91\\x93\\x6e\\xf3\\x96\\xb3\\xf2\\xf2\\xf9\\xf5\\x11\\xda\\x54\\x82\\x11\\xb3\\x82\\x97\\x31\\x6c\\x0b\\x0a\\xe7\\x76\\xbf\\x0e\\xf4\\xae\\x66\\x2e\\x2e\\x93\\xf2\\x68\\x85\\x1c\\x01\\xf8\\x91\\x00\\x8b\\x71\\x09\\x73\\xb7\\x5f\\x0b\\xac\\xdc\\x0f\\xec\\xca\\xe2\\xda\\xc4\\x6a\\xa3\\x3d\\x31\\x22\\x07\\x6f\\x6b\\x56\\x49\\x98\\x76\\xbb\\xf2\\x20\\xa4\\x98\\xc5\\xbf\\xc0\\x88\\xdc\\xdf\\xfb\\x1f\\x84\\x76\\xf5\\x4a\\x96\\x50\\xa6\\x8b\\x2b\\x00\\x08\\xc4\\x71\\x69\\x7a\\x86\\x23\\x54\\x94\\x98\\x5d\\x2f\\x20\\xb2\\xdb\\x38\\xa5\\x13\\xc7\\x3d\\xc4\\xa0\\xa0\\x8f\\xad\\xbc\\x4f\\x95\\xef\\x24\\x8f\\xbc\\x47\\x51\\xcb\\xce\\xf2\\xdd\\xf5\\xf7\\x14\\x86\\xda\\xb1\\x8c\\x37\\x29\\xc6\\x88\\xfe\\x6f\\x49\\x94\\x51\\xf1\\x22\\x82\\x3e\\xef\\x66\\x9e\\x37\\x24\\xb1\\x72\\xa2\\x64\\xd1\\xf9\\x2a\\x32\\x4e\\x40\\xd0\\xba\\x6e\\xb8\\x88\\x90\\xcb\\xc8\\x01\\xe1\\xeb\\xe6\\x7a\\xdb\\xc1\\x49\\x77\\x26\\x90\\x3a\\x61\\x8d\\xda\\x98\\x0f\\x15\\x74\\xbb\\x7d\\x44\\x33\\x4f\\xf9\\x42\\x21\\x46\\x5a\\xc8\\xd2\\x31\\x94\\x90\\xd0\\x03\\x2e\\xd5\\x24\\x34\\xdb\\xe1\\x93\\xeb\\xe7\\x2a\\xb0\\xb8\\x0a\\xf8\\x97\\xac\\xf7\\x41\\xd4\\xa3\\x47\\x36\\x7f\\xf5\\x81\\x7f\\xe2\\x47\\x5a\\x86\\xbe\\xaa\\x8d\\x3a\\xa5\\x9e\\x51\\x24\\x8b\\xe7\\x66\\xf1\\xf8\\xb5\\xc0\\x43\\xb5\\x7f\\xd5\\x92\\x4f\\xc9\\x66\\x1c\\x61\\x5c\\x61\\x11\\x4f\\x56\\xfb\\xb2\\x90\\xd6\\x06\\xc4\\x86\\xed\\xb2\\x89\\x97\\x77\\x8e\\x0c\\xf7\\xea\\x59\\xb8\\x32\\x2d\\x96\\x14\\xb8\\xf1\\x44\\x69\\xe1\\xc6\\xe5\\x64\\xa2\\x30\\x7e\\x33\\xb6\\x74\\xf8\\x2b\\x21\\x44\\x11\\x30\\x8b\\x33\\x36\\x47\\x99\\xcb\\x5a\\x96\\x82\\x6d\\x82\\x0b\\x03\\xca\\xa4\\x82\\x76\\xe8\\x72\\x7e\\x0a\\x6b\\xf9\\x3c\\x26\\x3b\\xaa\\x91\\x72\\x5b\\x33\\x58\\xa9\\xd3\\x68\\xab\\x12\\xe4\\xfd\\x51\\x97\\x1b\\xa1\\xa5\\x54\\x4b\\x9e\\xe6\\x82\\x4d\\x5a\\x5e\\xb2\\x7b\\xcc\\x26\\x0b\\x5f\\xac\\x94\\x26\\xf3\\x1f\\xa0\\x95\\xa5\\x43\\xa3\\xd3\\x83\\xb8\\x6b\\x57\\x40\\xa5\\xce\\xd3\\x2d\\x57\\x43\\x20\\xb1\\xe8\\x72\\x3e\\xa5\\xfb\\x57\\x43\\xd3\\x5d\\xd7\\x2e\\x9c\\x07\\x44\\xed\\x3d\\x7f\\xeb\\xfc\\xbe\\x45\\xd4\\xce\\xa7\\xe8\\x5d\\x67\\xfe\\xdc\\x71\\x75\\x07\\x48\\x2d\\x4b\\x5f\\x8f\\xfa\\xfd\\x26\\xd1\\x94\\xf4\\x67\\x9c\\x3f\\xc6\\xa2\\xd7\\xe1\\x1a\\xca\\x98\\x93\\x59\\xab\\x52\\x52\\xba\\x4b\\xed\\x3d\\x08\\x83\\xd4\\x86\\x2f\\x6f\\x2e\\xc0\\x73\\x0c\\xbd\\x88\\x52\\x3b\\xa9\\xdb\\xbe\\x2a\\x4b\\x38\\x59\\x5c\\x36\\x85\\xb3\\x4f\\x65\\xe6\\x19\\xad\\x63\\x09\\xe9\\xf1\\x49\\x60\\xa6\\xd2\\x78\\xc9\\xe3\\xd4\\xca\\xcb\\x74\\x0c\\x4c\\x46\\xb6\\x6e\\xcc\\xaa\\x37\\xf2\\xee\\xfe\\xd1\\xa7\\x99\\xdd\\x0e\\xb2\\x32\\xd5\\x14\\x50\\xec\\xc2\\xa4\\x88\\x5e\\x4a\\x4d\\x7b\\x66\\x1e\\x2a\\x85\\x92\\xc1\\xb4\\x91\\x39\\x53\\x0d\\x01\\x24\\x19\\x35\\x65\\xa9\\x05\\x9b\\xa3\\xf7\\x98\\x9f\\x94\\x90\\xae\\x16\\x36\\xc1\\x3d\\x0e\\x4a\\x9f\\xb3\\x4b\\x87\\xab\\xb3\\x1a\\xca\\xc1\\x8c\\xcc\\x42\\x49\\xb8\\x40\\xeb\\x6b\\x24\\x02\\xe6\\x63\\x59\\x94\\x6c\\xc0\\xd5\\x99\\xbb\\x52\\x29\\x7d\\xc5\\x8e\\x46\\x78\\xf6\\x19\\xdc\\xde\\xab\\x41\\x4a\\xbe\\x55\\x1b\\x25\\x66\\x06\\x64\\x17\\xcc\\x43\\x3e\\xbd\\xfc\\x64\\x7a\\x61\\x4d\\x38\\x0a\\x82\\x57\\x6a\\xad\\x24\\x0f\\xe5\\xd5\\x0d\\xf4\\x2b\\x3f\\xf5\\x99\\x2b\\x5a\\x40\\xa9\\x4c\\x05\\x25\\x32\\x6e\\x5d\\x52\\x44\\x3f\\xa5\\xa6\\x33\\xb3\\x20\\xe2\\xe9\\x8b\\xef\\x7f\\x0f\\x90\\x86\\xc7\\x9d\\x6c\\x8f\\xfc\\x49\\xf4\\xea\\xee\\x66\\xbf\\xe7\\x35\\xa4\\xea\\x03\\xd5\\xe1\\x24\\xc7\\xb3\\xb1\\xa9\\xa5\\x24\\x0c\\xbb\\xd7\\xe7\\x69\\x4c\\xd8\\xe0\\x37\\x4a\\x59\\xc0\\x9e\\x14\\x5e\\x89\\x34\\x95\\xee\\xda\\xce\\x6f\\x1e\\xa3\\x5f\\x69\\x26\\x35\\xc8\\x7e\\xef\\x39\\x7c\\x5a\\x57\\x57\\x7c\\x82\\xd9\\x5e\\xcd\\x38\\xe7\\x44\\x76\\x14\\xcc\\xce\\xe5\\x2a\\xb9\\x38\\x17\\xba\\x45\\x4b\\x56\\x44\\xb6\\xca\\x5c\\x99\\x04\\xee\\x38\\x24\\x91\\x55\\x0d\\x4b\\x2b\\xdc\\xdd\\x6f\\x77\\xaa\\xf4\\x30\\x1e\\x04\\x21\\x91\\x8e\\xc1\\xd3\\xaa\\x36\\xf3\\x0c\\xb9\\xbe\\x82\\x31\\x6a\\x02\\x45\\xc1\\xe5\\x77\\x44\\x38\\x70\\x7a\\x6e\\x22\\xca\\x0c\\x55\\xe6\\x81\\x10\\x34\\x79\\x58\\xfa\\x98\\xce\\x74\\x99\\x30\\x2a\\xef\\x8a\\x38\\x34\\x4e\\xdb\\xf3\\x78\\x80\\xb1\\x43\\xd6\\x05\\x5a\\xbc\\x5c\\x4c\\x5c\\xcc\\x9c\\x11\\xb1\\xe3\\x30\\x77\\xe7\\xf3\\xa1\\x33\\xf9\\x8a\\xe9\\xa1\\x87\\x68\\xa4\\x46\\x82\\x6b\\x2f\\x00\\x30\\xce\\x04\\x94\\x8f\\x01\\x7e\\xdb\\x61\\xee\\x5e\\x83\\x30\\x84\\xcb\\x90\\x22\\xbc\\x10\\x29\\x0c\\x8f\\x69\\x69\\xb1\\xba\\xd5\\xf8\\xf4\\xcf\\x4e\\xda\\x13\\x17\\x5d\\x48\\x29\\x66\\x36\\x93\\x35\\x71\\x6e\\xbd\\xc6\\x84\\xa5\\x13\\x00\\xc7\\x89\\x4d\\xa6\\x94\\x5c\\xa4\\x55\\x79\\xee\\x3d\\x00\\xd6\\xe8\\x49\\x45\\x80\\xd6\\xe3\\xef\\xa2\\xe1\\xb1\\x92\\x8f\\x74\\x8c\\x44\\x2b\\x09\\x42\\xb2\\x38\\xba\\x19\\xc3\\xa1\\xdb\\x20\\xb3\\xe5\\x9a\\xa0\\x20\\x41\\x79\\xbf\\xf7\\x43\\xc8\\xe5\\x55\\x11\\x2c\\xb5\\xa3\\x10\\xd2\\xdf\\x8e\\x05\\x16\\x66\\xfe\\x85\\x15\\x6e\\xeb\\xc3\\x0b\\x5a\\x67\\xbd\\x39\\x20\\xb0\\xd7\\xe0\\x68\\xf7\\xa0\\xe3\\x71\\x83\\xed\\xa2\\x13\\x51\\xa1\\xed\\x5d\\x1a\\x0e\\x0d\\x31\\xa2\\x83\\x2f\\x4c\\x9e\\xee\\xef\\x2e\\x28\\xf2\\xae\\xd6\\x5c\\x13\\xd7\\xb4\\x71\\xe4\\xd8\\x05\\x87\\xd6\\xc4\\x4d\\xd9\\xfb\\xe3\\x55\\x45\\x7b\\xaa\\x96\\x27\\xb8\\x9c\\x72\\x55\\x59\\xb2\\x3a\\x1e\\xf1\\xca\\x6e\\xbd\\x8c\\x15\\x62\\x31\\xe8\\x66\\xfc\\x9d\\xba\\xb0\\xf5\\x61\\x8c\\x44\\x12\\x79\\x93\\x31\\x09\\x1c\\xf4\\x10\\x70\\xae\\x33\\x92\\xbc\\xb1\\xc0\\x21\\x77\\x21\\xef\\x1a\\xa3\\x52\\xfa\\xe1\\xe0\\x26\\xc2\\x68\\x5a\\x17\\xdf\\xed\\xb8\\x74\\xf5\\x43\\x52\\x92\\x84\\xe0\\x5e\\xa9\\x19\\x5f\\x2f\\xd7\\xac\\x69\\x54\\x12\\x67\\xcb\\xe4\\x95\\xdc\\x27\\x02\\xc5\\x34\\x3b\\xbd\\x55\\x00\\x0f\\x95\\x7e\\x34\\xd3\\xdc\\xa6\\x6e\\x8d\\x07\\x52\\xa0\\x78\\x01\\xce\\x55\\xb3\\xe5\\x70\\xeb\\x37\\x59\\x6b\\xfa\\x54\\xbf\\x2e\\x49\\xe7\\x7d\\xd0\\xb5\\xe9\\xae\\x73\\xf0\\x63\\x9e\\x06\\xdf\\x10\\x29\\x07\\x4b\\x41\\xb9\\x54\\xc0\\xd1\\x85\\xd3\\x53\\x87\\x4d\\x3e\\x0d\\xac\\x83\\x8a\\x67\\x6a\\x17\\x5c\\x19\\x5d\\x73\\x35\\x75\\xb0\\x25\\xf7\\xa4\\x23\\x90\\x3e\\xdb\\xd2\\xd5\\x99\\xeb\\x0c\\x29\\x38\\x6e\\xa1\\x5b\\x67\\xa6\\x0b\\xa2\\xcc\\x99\\x74\\x0b\\x81\\x31\\xba\\x4a\\x16\\x46\\x8f\\x56\\x7f\\x1e\\xe3\\x2d\\x80\\x81\\x89\\xee\\xaf\\x16\\xec\\xcb\\xad\\x63\\x5a\\x19\\xfc\\xb1\\xeb\\x18\\xb5\\x6e\\x5b\\x51\\xf8\\x6b\\x43\\x45\\xfc\\x2a\\x89\\xee\\x95\\x96\\xe4\\x1a\\x1b\\x40\\xed\\x1c\\x3e\\xcc\\x25\\xce\\x52\\x2c\\x3d\\x3d\\xfc\\x28\\x66\\xdb\\x1a\\xf2\\x72\\x35\\x5f\\x86\\xb8\\xc4\\x7d\\x9f\\x23\\xc6\\x3e\\x14\\x49\\xa1\\x67\\x34\\x9f\\xc5\\x31\\x47\\xfb\\x39\\x73\\xf6\\x66\\xb2\\xff\\xab\\x59\\xc2\\x5b\\xd1\\x9b\\x1a\\xf1\\xaf\\x65\\x72\\x43\\x8c\\xf7\\x39\\x9b\\x5f\\xae\\xf9\\x67\\xe5\\xa9\\x1d\\x1e\\x3f\\x4f\\x70\\xd0\\xd6\\x51\\xa1\\xd5\\xcf\\xdd\\xbe\\xc7\\xe4\\x7d\\x50\\x16\\x6e\\x3c\\x70\\x35\\x9d\\x8f\\xa3\\xc5\\x7e\\x14\\x41\\x4b\\x00\\x1b\\xac\\x45\\x0b\\xb0\\x5b\\xe5\\x4a\\xcf\\x3e\\x46\\x8f\\xa8\\x2a\\x45\\x5e\\x15\\x27\\x03\\x00\\x47\\x04\\x80\\xa7\\xea\\x52\\x90\\x12\\xa0\\x8e\\x0c\\x02\\x66\\xfb\\xe7\\x84\\x49\\x1e\\xde\\x7f\\x37\\x47\\x13\\x74\\xe8\\xe4\\x29\\x8f\\x70\\xfe\\x0a\\xf3\\x7e\\xdc\\x3f\\x1b\\xdc\\x5e\\xeb\\x7c\\xaa\\x6a\\xc9\\xbb\\x8b\\xc5\\xd1\\x03\\x39\\x3d\\xa5\\x4e\\xd1\\x9e\\x92\\x73\\xeb\\x42\\x71\\xfc\\x69\\x5a\\x3a\\x24\\x50\\x87\\xe7\\x54\\xcc\\x2e\\x7b\\x64\\x2d\\x14\\x4e\\xe3\\x6f\\x61\\x67\\x3f\\x0e\\xd7\\x2f\\x0f\\x11\\x63\\x8c\\xcd\\x61\\x9c\\xe9\\xef\\xdb\\x07\\x0f\\xc8\\x27\\x67\\xb9\\x36\\xe2\\x6f\\x7b\\x06\\xbb\\x13\\x8d\\x3f\\xc0\\x63\\xe1\\xba\\xa0\\x3a\\x31\\x47\\x05\\xec\\x12\\x7b\\xd2\\x88\\x8c\\xa0\\x4c\\xa3\\xf4\\x45\\xbf\\x4b\\x09\\xec\\x78\\x5e\\x4f\\x79\\xb6\\x50\\x56\\x23\\xb1\\x76\\xa0\\xce\\x34\\xc4\\x55\\xf2\\x3f\\x49\\xd2\\x57\\xf3\\x66\\x1f\\xe8\\x69\\xbd\\x96\\xa6\\x80\\x26\\xb5\\x52\\xb4\\xcd\\x8d\\x19\\x0d\\xc7\\xa2\\xeb\\xfb\\xcb\\x54\\x0c\\xff\\x8c\\x1d\\x81\\x72\\xe4\\x81\\x59\\x01\\xd9\\x9d\\xf7\\xf3\\x96\\x0c\\xc8\\xaf\\x34\\x15\\x58\\x28\\x87\\x2b\\xbb\\x46\\xf8\\xb6\\xd7\\x07\\x5d\\x67\\x64\\xda\\xb9\\xa0\\x52\\x89\\x2a\\x15\\x41\\x4b\\x14\\xb3\\x67\\x0a\\x86\\x74\\x71\\xfb\\x4c\\xd5\\x95\\x34\\x89\\xa6\\x8e\\x97\\xef\\x44\\x1e\\x28\\x5c\\x98\\x21\\x3d\\x42\\x17\\xcb\\x77\\x1a\\xbe\\x4c\\xcf\\x44\\x3a\\xdf\\x23\\x38\\xcd\\x59\\xbd\\xd0\\x60\\x55\\x3f\\x03\\xe1\\xaf\\x1a\\xdc\\x21\\xa3\\xb3\\x42\\x86\\x1e\\xbe\\x7e\\xdf\\xfb\\x5e\\xf2\\x83\\xe8\\xb0\\xdf\\xd1\\x15\\xbb\\xf2\\xfc\\xec\\xef\\xa2\\x83\\xef\\x64\\x1d\\xff\\xb9\\xef\\xfd\\x4e\\x73\\x78\\x3c\\x5e\\x3c\\xe4\\x19\\x1b\\x24\\x3c\\x17\\xbd\\x12\\xb7\\xf9\\xd3\\xe6\\xd1\\x71\\x6a\\xd1\\x85\\x31\\x7a\\x7a\\x6e\\xbe\\x66\\x3e\\xd0\\x9b\\x42\\xba\\xfa\\x97\\x35\\xbf\\xab\\x58\\x18\\xc9\\xf0\\x04\\x25\\x57\\x1f\\xa0\\xf5\\xb4\\xc9\\xd7\\x00\\x8d\\xbe\\x27\\x17\\x6d\\x45\\x16\\xd8\\x78\\x35\\x0b\\x8f\\xe3\\x79\\x42\\xf9\\x4b\\xe2\\x5e\\xc0\\xba\\xe7\\x16\\x64\\xef\\x03\\xbc\\x09\\x40\\x1d\\xf1\\xcf\\x22\\x31\\x2b\\x2b\\xa8\\xdb\\x3f\\xff\\x0a\\x80\\x03\\x4e\\xbe\\xec\\x53\\x27\\x7f\\xd8\\xb9\\xfe\\xb0\\xa1\\x5c\\xd7\\x8a\\xf6\\x58\\x78\\x95\\x90\\x1e\\xf0\\xfa\\x5c\\xe0\\xb9\\x5e\\x2d\\x80\\x18\\xed\\xca\\x30\\x97\\x92\\xa4\\x00\\xb2\\xdc\\x5f\\x18\\xb2\\x29\\x29\\xfe\\xd7\\x9b\\x47\\x4c\\x03\\x46\\xda\\xe2\\x25\\x29\\x60\\x1b\\xa4\\x2c\\xa0\\x30\\x0e\\x1e\\xe8\\x8a\\x54\\x8a\\xb1\\xca\\x77\\x60\\xe7\\x56\\x7e\\x47\\x8d\\x68\\xff\\x96\\xb2\\xd3\\x0e\\x29\\x33\\x23\\xbc\\x16\\xa8\\x3c\\xb2\\x49\\x42\\x31\\x99\\x77\\x59\\x14\\x13\\x85\\x75\\x43\\xcc\\xfc\\xec\\xfd\\x8a\\xf2\\x4e\\xdc\\x09\\x40\\x39\\xa0\\x57\\x52\\x1d\\xaa\\x4c\\xe5\\x91\\x60\\x31\\xa2\\xe0\\xd2\\xdb\\x45\\xcd\\x63\\x9c\\xbc\\xeb\\x56\\xff\\x73\\xb5\\x64\\x76\\x8a\\x8f\\xca\\x14\\x13\\x08\\x0f\\x93\\x90\\xc4\\x7a\\x54\\x7d\\x82\\x0d\\x3c\\x6c\\x29\\xeb\\x22\\x9e\\x6d\\xaf\\x6a\\x58\\xce\\x91\\xbb\\x45\\x43\\x9f\\x4e\\x69\\x24\\x41\\x6d\\x57\\xef\\xc9\\xd6\\x47\\xd6\\x56\\x11\\x87\\xb6\\xde\\x43\\x63\\x89\\x41\\xed\\xb3\\x64\\xf9\\x94\\x2b\\x13\\xf3\\x61\\xdd\\x96\\xc0\\xa8\\x59\\xfa\\x8e\\xa6\\x2c\\xeb\\x7b\\x94\\x24\\x7a\\x4a\\x27\\xc0\\x91\\x1a\\x61\\xfe\\x6a\\x25\\xd4\\xed\\x6f\\x28\\xc3\\x36\\x7e\\x59\\x63\\xa3\\x07\\xba\\xc7\\x8a\\x5a\\x8a\\x02\\xa5\\x39\\x8a\\xdb\\x49\\x52\\x6a\\xeb\\xe0\\x04\\xa4\\xa4\\x07\\xeb\\xed\\xd6\\xd5\\xa0\\xce\\xa8\\x3c\\xfe\\xc9\\xa6\\x83\\xbe\\x4e\\x07\\x6a\\x60\\xe2\\xca\\xf9\\xc5\\x1c\\xf2\\x9b\\x34\\xc9\\x3e\\xcb\\x19\\xf3\\xee\\x35\\x8d\\xf8\\xf2\\x53\\x22\\x13\\x2f\\x2c\\xe8\\x34\\x2f\\x9e\\x16\\xfc\\x36\\x6b\\x6e\\x7f\\xee\\xe4\\xe2\\xe3\\xd7\\x2c\\xb5\\x80\\x19\\xeb\\x86\\x9e\\xfd\\xac\\xa9\\x85\\xed\\xc1\\xd2\\xec\\xbd\\xf5\\x92\\xc2\\x42\\x42\\x02\\xcf\\x18\\xa4\\x89\\x60\\xc0\\x1d\\xf1\\xcf\\x1e\\xfc\\x6a\\x45\\x55\\x44\\x6c\\x25\\xbf\\xc8\\x70\\x24\\x33\\x8a\\xc2\\x1a\\x01\\xca\\xcf\\xf9\\xfc\\x00\\x37\\x2f\\xde\\x0a\\x66\\xb3\\x5e\\x5c\\xf3\\x4c\\x6d\\x87\\x43\\x05\\xcb\\x2f\\x63\\x6e\\x3e\\x3d\\xef\\x51\\x4f\\x75\\xe4\\x9d\\xe6\\xd5\\x17\\xac\\x20\\x06\\x3c\\xc6\\x69\\x1b\\x12\\x8c\\x93\\x2f\\x55\\xe0\\xd0\\xfc\\x7c\\xdc\\xaf\\x84\\x6c\\x66\\xef\\xe2\\xaa\\x79\\xad\\xa7\\xc9\\xf1\\x77\\x4c\\xee\\x67\\x3b\\xe1\\x60\\xd6\\x8a\\x0b\\x7b\\xaf\\x3f\\x3f\\xeb\\x51\\x4f\\xb6\\x7b\\xc8\\xab\\x9b\\xbe\\x00\\x11\\x8b\\xcb\\x5c\\xaa\\x74\\x58\\xf1\\xaf\\x88\\x91\\x85\\x64\\xab\\x9c\\x99\\x1d\\xc2\\x9b\\xbb\\x9a\\xe5\\x1f\\xc1\\xd6\\x8d\\x01\\x32\\x69\\xec\\xd8\\xf4\\x1f\\x64\\xf3\\xaa\\xb2\\x8e\\x64\\x7a\\x84\\x87\\xdb\\x2b\\x7e\\x90\\x4e\\xbf\\x7b\\xfd\\xcd\\x35\\x91\\x23\\x9a\\x2e\\xc6\\xa9\\xe3\\x90\\x38\\x4b\\x06\\xc7\\x11\\xcb\\x8a\\xf7\\xf2\\x6c\\xe0\\xd5\\x56\\x51\\x5c\\x68\\xa0\\x1c\\xae\\x6d\\xdf\\xcf\\xf5\\x6c\\x04\\x20\\x6f\\xe0\\x1d\\xbc\\xd0\\xfc\\xe0\\xfa\\x07\\x38\\xc7\\x9f\\x17\\xd2\\x01\\x2b\\x7b\\x1d\\x7e\\x0d\\xd9\\x10\\xe1\\x0c\\x68\\x0e\\x05\\xae\\x49\\xbc\\x53\\xbc\\x68\\x54\\x56\\x8c\\x7f\\xfa\\xc6\\x3b\\xea\\x10\\x55\\x0c\\x0e\\xc6\\x72\\x60\\x0b\\x95\\x73\\x24\\x86\\x6f\\xc9\\x29\\x88\\x3e\\xa7\\xe8\\xb3\\x29\\x84\\xf1\\xe5\\x1b\\xe0\\xd7\\xa1\\x08\\x39\\xec\\x38\\x66\\xa7\\xd7\\x10\\x2a\\xc2\\xdf\\xc1\\x16\\x85\\x5d\\x46\\x38\\x23\\xd2\\x03\\x3d\\x5e\\xc0\\x6d\\x8b\\x6f\\x58\\x67\\xdb\\xc5\\xec\\x24\\xb7\\x3e\\x36\\x5d\\x8c\\x4e\\x16\\x51\\x05\\xd5\\x5c\\x51\\x55\\xf4\\xe1\\xe2\\x3d\\x3d\\xe5\\xa4\\x20\\x25\\x94\\x4a\\xb8\\x20\\xf0\\x3b\\x93\\xfc\\xcd\\x10\\x86\\x24\\x28\\xf6\\x46\\x0b\\x94\\x79\\xb2\\x8a\\xe5\\xad\\x31\\xc5\\x85\\x8e\\xfe\\x51\\x57\\x9c\\x9a\\x9d\\xad\\xd2\\xa4\\x1a\\x1f\\x3c\\xbd\\x51\\xb9\\x13\\xdb\\x58\\x42\\x1b\\xf5\\x34\\xd9\\x17\\x72\\xe3\\x3f\\xd4\\xa7\\x61\\x73\\xe1\\x19\\xc9\\xb9\\xd3\\x56\\x68\\x2f\\x4e\\xdb\\xe1\\x33\\x04\\x31\\xfe\\xb9\\x1a\\x11\\x50\\xc8\\xb8\\x0d\\xf4\\x00\\xe7\\xb9\\x5f\\xaf\\xeb\\x1f\\x64\\xe5\\xf2\\xdd\\xea\\x08\\x72\\x79\\x5c\\xa1\\x57\\x0e\\xef\\xcd\\x5f\\x81\\x79\\xf9\\x72\\x60\\x72\\x26\\xf4\\x0e\\x58\\x1e\\x85\\xf0\\xbf\\x47\\x5f\\x8c\\xeb\\x07\\xb6\\x00\\x55\\xf8\\x19\\xac\\x2a\\xf4\\x22\\x42\\x0d\\x96\\x05\\x6a\\xfc\\x80\\x19\\x9c\\x05\\x53\\x55\\x31\\x8e\\xb9\\x7b\\xc3\\x58\\x46\\x40\\x8f\\x0f\\xfb\\x55\\xea\\x6d\\xe0\\x9d\\x85\\x61\\x4a\\x1a\\x2e\\x59\\x99\\xad\\xfb\\xc6\\x77\\x62\\xaa\\x7c\\x33\\xa4\\x46\\x4b\\xb2\\xa7\\xbe\\x91\\x01\\x1f\\x3d\\x9f\\x55\\x50\\x9a\\x81\\xd8\\xab\\x39\\x9c\\x8c\\xa7\\x33\\x7d\\x1e\\xb1\\xda\\xcf\\x24\\xf7\\x55\\xca\\xa7\\x2c\\x75\\xa5\\x53\\x45\\x09\\x2c\\xb0\\x5e\\x84\\xd7\\x22\\x72\\xd3\\x72\\xe1\\x86\\xd0\\x23\\x81\\xb0\\x30\\x27\\x82\\x3b\\x4d\\xe1\\x25\\x0a\\xcf\\xac\\x2c\\xb3\\xdb\\x3e\\x62\\xce\\x10\\xfd\\x6c\\x15\\x7c\\xe9\\x03\\x9c\\xfb\\x16\\x6d\\xe1\\x52\\x42\\x8a\\xee\\x4b\\xa1\\x71\\x34\\xdf\\x87\\x31\\xe5\\xa3\\xf0\\x66\\x13\\xa3\\x5a\\xae\\x50\\x94\\xc9\\x63\\x01\\x22\\x4e\\x8c\\x30\\x5c\\xc6\\x94\\x04\\x50\\xe7\\xfd\\x73\\x39\\x84\\x70\\xe4\\x84\\x3c\\x28\\xc0\\x47\\x65\\x90\\x25\\x8f\\x3a\\x03\\xd3\\x90\\x4a\\x9a\\xba\\xe2\\xb9\\x72\\x36\\x9a\\xe0\\x38\\x39\\x6a\\xa8\\x09\\x7f\\x01\\xa5\\x34\\x20\\xa9\\xd0\\xab\\x8b\\xc4\\xc3\\xed\\xde\\x02\\x98\\x1b\\xa9\\xd8\\x06\\x40\\x45\\xb0\\x3b\\xe0\\xa2\\x8f\\xe1\\x85\\xb8\\x97\\xc5\\x7e\\xf1\\x75\\x6b\\xbf\\x5d\\xc4\\xe2\\xb8\\x55\\x91\\x24\\x0a\\x68\\xb9\\x57\\xde\\xa2\\xf0\\x48\\xbd\\xfd\\xdb\\x95\\x8b\\x9e\\x6b\\x56\\xd5\\x4b\\x6d\\xe8\\x8d\\xef\\x04\\x48\\x30\\xd4\\xea\\xbf\\x60\\xd5\\xb5\\x01\\x42\\x10\\x1b\\x32\\x41\\x59\\x0a\\xec\\x41\\x36\\xfc\\x25\\x6c\\x41\\x58\\xa0\\x95\\x7e\\x11\\xe8\\x00\\x76\\x3b\\x9d\\xb4\\x75\\x56\\xd1\\xb8\\x72\\xb7\\x5a\\xb2\\x42\\x03\\x73\\x79\\x9b\\x16\\xa1\\xa1\\x63\\x43\\x80\\x17\\xca\\xef\\x23\\xb7\\x55\\x53\\x1e\\x78\\x5c\\x73\\x59\\x37\\x1c\\xb3\\xab\\xc5\\x3c\\x8e\\x5b\\x05\\x55\\xaa\\x87\\x36\\x7b\\xdb\\x42\\x0f\\xf4\\x08\\xda\\xea\\x0e\\x14\\x95\\xbc\\xd9\\xb9\\xfb\\x88\\x1f\\x1f\\x3e\\xba\\x78\\xc9\\xd7\\x3b\\xe8\\x0f\\xb6\\x10\\x15\\xd1\\x00\\x60\\x83\\x5c\\x02\\x17\\x84\\x44\\x58\\x71\\x2f\\x0a\\x0e\\x27\\xcd\\x9d\\xa5\\x34\\xa6\\xc2\\xad\\x95\\xac\\xd2\\x20\\x5f\\xc4\\x0b\\xfb\\xbd\\x3b\\x6f\\x14\\x0c\\xce\\xc9\\x27\\x7a\\xc9\\xbd\\x4e\\x14\\x71\\xe8\\xe9\\x2c\\x39\\x06\\x15\\x45\\xd3\\x6e\\x09\\x08\\x5d\\x24\\x93\\xc8\\x42\\xe1\\x97\\x44\\x76\\xe4\\xf8\\x6b\\x29\\x9d\\xf2\\x52\\x98\\x9e\\xd5\\xe8\\xd6\\xd6\\xba\\xa1\\x0c\\xa8\\xc7\\x1c\\x83\\xe9\\x23\\xbc\\xf4\\xd4\\x23\\x40\\x23\\xb0\\x41\\x7f\\xb8\\xdb\\x76\\x1c\\x9f\\x7a\\xfe\\x1a\\x80\\x09\\x2e\\xf6\\x02\\xc4\\xfa\\x14\\xfe\\x1e\\xba\\x5b\\xad\\x30\\xd6\\xcd\\x2a\\x6d\\xb5\\x5b\\x66\\xa0\\x8e\\x79\\x1f\\x1b\\x97\\x0c\\x88\\xce\\x55\\x30\\x72\\xb3\\xae\\xce\\xaf\\x7c\\x60\\xec\\x2d\\x58\\x1f\\x11\\x1b\\xf3\\x6b\\xfe\\xfc\\xbd\\xb9\\x59\\x99\\x78\\x96\\x29\\xa4\\x80\\x0b\\x4e\\x26\\x54\\xcb\\x75\\x19\\x0b\\x05\\x41\\xbe\\x92\\xfe\\x74\\xe4\\x9d\\x4a\\x0f\\xc8\\xe4\\x26\\xb3\\x98\\x40\\xc9\\x8e\\x46\\xb2\\x33\\xc2\\x1d\\x4c\\x51\\x44\\x60\\x21\\xbd\\x08\\x96\\xff\\xee\\x37\\xea\\x66\\x0f\\xb1\\x73\\xd5\\x6e\\x73\\x4c\\x9d\\x76\\xc2\\xa0\\x77\\x29\\xc3\\xe7\\x8e\\x09\\xfd\\x6c\\xde\\xb0\\xe5\\x0f\\xf2\\xd7\\x5f\\x2f\\x61\\x26\\x44\\x75\\x1b\\x3c\\x40\\x19\\x7e\\x10\\x2b\\x0b\\x39\\x8b\\xc8\\x04\\x0b\\x03\\xb3\\xbc\\x81\\x19\\xe2\\x85\\x82\\xaa\\x7e\\x9c\\xd6\\xe4\\xb6\\xc0\\xd4\\x6d\\x23\\x0e\\xfa\\x94\\x30\\x98\\xcb\\xab\\xbb\\x16\\xcb\\xe9\\x7c\\x1d\\x93\\x28\\xc7\\xe9\\x13\\x2c\\x8a\\xd1\\xf6\\xcc\\xf3\\x89\\xad\\xce\\x63\\x84\\x99\\x65\\xaa\\x61\\x13\\x0a\\x8c\\x13\\xdb\\x85\\x01\\x10\\x91\\x2d\\xe4\\x11\\x56\\x46\\x8b\\x43\\x66\\xf7\\xea\\x30\\xf4\\x0b\\xbf\\x5d\\x98\\x3e\\xd3\\xda\\x08\\x05\\x65\\x4b\\xf1\\x19\\x38\\x16\\x4b\\x89\\x1b\\x24\\xc8\\x19\\x01\\xd9\\x51\\x76\\x99\\xd1\\xc4\\x29\\x80\\x38\\xa0\\xd4\\xd6\\xab\\xbc\\xc1\\xca\\xdc\\x29\\x66\\x00\\x6e\\x7c\\x04\\x8d\\xae\\x60\\x59\\x85\\xfa\\xd4\\x6a\\x69\\x24\\x83\\x35\\x50\\xb8\\xf7\\x71\\x58\\x7c\\x6f\\xf9\\x05\\xa7\\x45\\x98\\x9c\\xea\\xda\\x60\\xfc\\x60\\xe1\\xae\\xc7\\xf8\\xf8\\x31\\xa1\\x6b\\x79\\xbc\\x55\\xa4\\x57\\x36\\x68\\x60\\x32\\xfb\\x0a\\xaf\\xbf\\x08\\x6b\\x4f\\x47\\x23\\xcb\\x63\\xad\\x19\\xc9\\x85\\x6d\\x8e\\x70\\x66\\x7f\\xe8\\x3f\\xb2\\xd1\\x55\\x89\\xd0\\x8a\\x25\\x24\\x04\\x91\\xcc\\x54\\x7a\\x94\\x7e\\xca\\xc2\\xd7\\x85\\x4d\\x7e\\x65\\x1e\\xa0\\xc1\\x33\\xed\\xb7\\xde\\xf1\\xc8\\xd1\\x6a\\x7a\\xe6\\x58\\xe9\\x7d\\xe6\\x69\\xb5\\x60\\x02\\xc4\\x11\\x48\\x82\\xee\\x98\\x8a\\x88\\xe3\\x1a\\x88\\x77\\xf1\\x3a\\x16\\x89\\x85\\xd7\\x5e\\x35\\x10\\x70\\x49\\x86\\xe0\\x1c\\x41\\xcb\\xf2\\x47\\xa7\\x47\\x25\\x93\\xdc\\x22\\xb1\\x19\\xc2\\xe0\\x6b\\x23\\xff\\x95\\x67\\x20\\x51\\xe0\\x84\\xb0\\x94\\xe1\\x19\\xc9\\x51\\xc9\\x1e\\x10\\x8a\\x2e\\xe2\\x3a\\xd2\\xd4\\x14\\x41\\x14\\xe2\\x8a\\x88\\x58\\x77\\x89\\xb7\\x91\\x08\\xee\\x0c\\x91\\x15\\x4a\\x15\\x38\\xa1\\x6c\\x45\\x78\\x06\\x1f\\x94\\x4c\\x72\\x05\\x20\\x4b\\x4f\\x2b\\x88\\x66\\x28\\xc3\\xd2\\x93\\xab\\x46\\x4d\\x05\\x68\\xa5\\x61\\x5c\\x8a\\x6d\\x93\\xb1\\xf0\\x95\\x84\\xdb\\x10\\xd4\\xed\\xc7\\xc9\\x08\\x2a\\xbc\\x35\\xec\\x21\\x14\\x76\\x3b\\xac\\x14\\x9e\\x41\\xb9\\xb4\\x55\\xe4\\xed\\x77\\x0a\\xbb\\xc1\\x36\\xb8\\x93\\xf0\\x10\\x06\\x3d\\x1b\\xd6\\x06\\x07\\xfd\\x96\\x7d\\x04\\x85\\xdd\\x09\\x2b\\x83\\x37\\xb9\\x42\\xde\\x2f\\x38\\x10\\xd0\\x0b\\xde\\x61\\x07\\x42\\x22\\x8b\\xd6\\x06\\xde\\x00\\x25\\xfa\\x76\\xc1\\xbb\\x85\\xd4\\x95\\x4f\\x7a\\x5c\\xf1\\xff\\xdb\\xe1\\x9f\\x2e\\x20\\x5e\\x51\\xc5\\x40\\xe3\\xc0\\xa9\\x63\\xa7\\x6e\\x78\\x3b\\xcf\\xb7\\x8d\\x9f\\xd2\\x06\\xb4\\x83\\x95\\x98\\x77\\xbb\\xf0\\xad\\xb1\\x05\\x72\\x11\\xd5\\x44\\x62\\x67\\x03\\x8b\\xb5\\x7f\\xdc\\x3a\\x6e\\x17\\x96\\x39\\xed\\x23\\x9e\\x2d\\x8c\\xde\\x4c\\xfb\\x91\\x50\\xce\\xb9\\x72\\x0f\\x07\\x9d\\xed\\x70\\x5f\\x7b\\x6e\\x1a\\x9e\\xdc\\x50\\xbb\\x6a\\x64\\x68\\xe3\\xb2\\x19\\x0f\\x39\\x4c\\x80\\xb8\\xea\\x37\\x2d\\xb3\\x18\\x8e\\xf2\\xa9\\x8d\\x14\\x65\\x6f\\x1c\\xa9\\x73\\xc4\\x7c\\xb7\\x78\\x3e\\x18\\x32\\xbc\\x29\\x70\\xae\\x4e\\xef\\x0b\\x61\\x9b\\x48\\x4c\\x25\\xc8\\x61\\xb4\\x27\\xba\\x6b\\x39\\xcd\\xa6\\x42\\x3b\\x56\\xcc\\x45\\xc9\\x82\\xa6\\xb7\\x5c\\xe5\\xc0\\x69\\x9c\\x98\\x56\\x3f\\x6d\\xde\\xa6\\x4b\\x3e\\xbb\\xed\\x7f\\x2c\\xe1\\xc6\\x2e\\x8a\\x54\\x87\\x59\\x92\\xf0\\x61\\xc5\\x91\\xf2\\x45\\xb1\\xdc\\x9f\\x92\\x45\\xfe\\x46\\x2f\\x43\\xac\\x5d\\x23\\x2c\\x08\\xe3\\x26\\xa6\\x86\\x9c\\xc6\\x3f\\xd9\\xb5\\x31\\x54\\xd4\\x76\\x4f\\xbc\\xac\\x49\\x7d\\xc5\\xbb\\xf7\\xfc\\xc0\\x92\\x6b\\xb4\\xff\\xc8\\xd6\\x99\\x11\\x3f\\xac\\x28\\x7f\\x20\\x6e\\xa7\\x96\\x84\\x1d\\xc1\\x4f\\xee\\x8a\\x0f\\x47\\xcd\\xdd\\xd4\\xfb\\xde\\x86\\xe0\\x41\\xcd\\x74\\x8d\\x3c\\x72\\x2e\\x2a\\x91\\x64\\x93\\x08\\x32\\xc0\\x6c\\xb1\\x05\\xce\\xd5\\x00\\x73\\xd3\\x24\\xe9\\x33\\x09\\x12\\x85\\x05\\xce\\x92\\x58\\xc0\\x9c\\xcc\\x08\\x53\\xe2\\x79\\xf0\\x88\\x0a\\x08\\x83\\xfd\\xa5\\xdf\\x18\\xa4\\x42\\x4f\\xeb\\x41\\x70\\xd8\\x07\\xe5\\xa0\\xe7\\xaf\\x67\\xd3\\x48\\x95\\x12\\x79\\x06\\x9c\\x2d\\xb1\\xc0\\x39\\x9a\\x26\\x3d\\x39\\x22\\x2a\\xc4\\x72\\x2a\\x14\\xc8\\x91\\x4a\\x3f\\x8b\\x3e\\xd3\\xf8\\x17\\x04\\x05\\xa3\\xd4\\x82\\xe0\\x7e\\x3d\\xcc\\x7f\\xcb\\x86\\xa0\\xe6\\x19\\x77\\x62\\x7e\\x0b\\x4e\\x72\\x40\\x1b\\xcf\\x67\\x74\\x37\\x65\\x2c\\x78\\x82\\x2f\\x5a\\x41\\xac\\x63\\x6c\\xab\\xef\\x96\\xa8\\x52\\xec\\x7c\\x51\\x5d\\x27\\xd9\\x9c\\xe9\\x88\\xd3\\x9a\\x10\\x2e\\x0d\\x98\\xcc\\x9d\\x53\\x3e\\x67\\xd2\\xe5\\x81\\xc3\\xf9\\x30\\x8b\\x4d\\x1b\\xc6\\x7a\\xf6\\xc6\\x94\\x92\\xb0\\x46\\xcb\\x44\\x0f\\xe3\\xe2\\x39\\xb9\\x26\\xf7\\xd7\\x27\\xd5\\x06\\xd3\\xab\\x79\\x77\\xe4\\xd1\\x4c\\xc9\\xe5\\x17\\xe5\\x5b\\x63\\xa0\\xe2\\x9a\\x45\\x10\\x65\\x47\\x0d\\x94\\x1d\\xf5\\x49\\x14\\x54\\x54\\x33\\x1a\\x49\\x59\\xd9\\xed\\x23\\x8a\\xca\\x0a\\x88\\xc9\\x20\\x10\\xe2\\x62\\xce\\x32\\xe3\\x09\\xf8\\x78\\xe6\\x0d\\x7c\\x9c\\x33\\x6e\\x47\\x86\\xe4\\x4b\\xad\\x8b\\x57\\x98\\x61\\xa9\\x0c\\x19\\x69\\xae\\xaf\\x2e\\xee\\x0d\\xe9\\x78\\x3d\\x5e\\x7a\\xa2\\x45\\xb3\\x53\\xd6\\x90\\xbb\\x90\\x60\\xcc\\xc3\\x9c\\x49\\x2d\\xca\\x6c\\x8a\\xae\\xcf\\x4a\\xc9\\x60\\x57\\x82\\xba\\x54\\xaa\\x98\\xae\\xcc\\x8e\\xd4\\x8c\\x12\\x61\\x75\\x34\\xab\\x78\\x45\\xd1\\xdb\\x2d\\xb9\\xd0\\x18\\x07\\xc8\\x74\\xb6\\x93\\xd4\\xb6\\xd3\\x24\\x53\\xba\\x9f\\x37\\x43\\x31\\x9f\\xd1\\xef\\x83\\xc1\\x89\\xfb\\x29\\xfe\\x01\\xb3\\x23\\x02\\xc8\\x43\\x81\\xda\\x05\\x84\\x63\\x21\\xa6\\xd4\\x1e\\x83\\xbb\\x00\\xcf\\xa4\\x7d\\xdc\\x5e\\x1f\\x1c\\x73\\x79\\x67\\x4f\\x36\\x24\\x29\\x88\\xd7\\x7f\\xa7\\x72\\xc9\\x43\\x25\\xfb\\x46\\xca\\x80\\xe8\\x53\\xf7\\xfe\\xf3\\x96\\x36\\xe7\\x39\\x59\\x77\\x27\\xeb\\x4c\\x3d\\x34\\x37\\xed\\x54\\x4b\\xdf\\xb2\\x68\\xf0\\x71\\x86\\x31\\x16\\xa7\\x81\\x67\\xf1\\x7d\\xd2\\x10\\x82\\xb8\\x38\\x0c\\x30\\x5a\\x86\\x81\\x87\\x73\\xc0\\x6b\\xb3\\x2a\\x86\\x50\\xad\\x8a\\x40\\x77\\x91\\xe6\\x57\\x38\\xc0\\xb7\\xcd\\xf2\\xcd\\x3c\\x08\\x00\\xe8\\xf4\\xd6\\x2d\\xbc\\x25\\xd2\\x67\\x35\\xc8\\xa7\\x4b\\x45\\xb4\\xab\\xe9\\x67\\x56\\xa4\\x4e\\xbc\\x7b\\x57\\x02\\xca\\x88\\x30\\x5b\\x9f\\x5b\\x11\\x51\\x89\\x21\\x59\\x50\\x15\\x98\\x53\\xf5\\x1c\\xad\\x1f\\xfb\\xee\\x34\\xec\\xf7\\xc9\\x4e\\x90\\x72\\xa3\\x52\\x15\\x55\\xad\\xd0\\x17\\xa1\\xc4\\xf1\\x0a\\x3c\\x2f\\x91\\x20\\x37\\x58\\xa0\\x45\\x8a\\x55\\xe0\\xe1\\xca\\x5a\\x94\\x38\\x3f\\xb2\\x5a\\x05\\x92\\x50\\x6a\\x14\\xd6\\x4f\\xfc\\x38\\x25\\x8e\\xcb\\x26\\x88\\xdd\\x2a\\x76\\xc8\\xd0\\x4a\\x1c\\xe2\\xe6\\x82\\x27\\xb2\\x46\\xd5\\xa8\\xae\\x91\\xb6\\xad\\x58\\x0b\\x27\\xef\\xd8\\x52\\xb7\\x35\\xcc\\xbf\\xef\\xfc\\x11\\x20\\xf1\\xfc\\xf2\\xd3\\xa0\\xaf\\xe4\\xad\\xcb\\xaf\\x91\\x48\\xbb\\x46\\x9b\\xdc\\xc3\\xfc\\x7a\\xaa\\x16\\x41\\xc4\\x0b\\x2b\\xce\\x44\\x04\\x4e\\x11\\x1d\\x09\\x83\\x76\\x4f\\x1b\\xd6\\x48\\xbd\\x91\\x15\\xf8\\x5b\\xd2\\x05\\x24\\x2f\\xb9\\x20\\xef\\xa1\\x35\\xb1\\xd3\\xe5\\xe8\\x41\\x5a\\x55\\x6b\\x51\\x7c\\x2c\\x19\\x0f\\xcd\\x56\\xc9\\x45\\x0f\\x41\\x01\\x25\\x59\\x71\\x9c\\x56\\x31\\xcb\\xf6\\xdd\\xcc\\xf0\\xef\\xdf\\x44\\x89\\xb6\\x47\\x8a\\xea\\xc5\\x70\\x4e\\xc0\\xed\\xa1\\x54\\x21\\x66\\x45\\x1e\\xca\\x8d\\xfa\\xe6\\xfb\\xb8\\xfe\\xbb\\x1a\\x91\\xeb\\x0a\\x0e\\xfe\\xa2\\xbc\\xce\\x1d\\xcc\\xcd\\x6b\\xc5\\xea\\xa1\\x08\\x4b\\x28\\xa0\\xcb\\x5f\\xb2\\x21\\x24\\x21\\x77\\xb5\\x33\\x1d\\x59\\x30\\x35\\x59\\x50\\x71\\xf7\\xca\\x94\\x44\\x3f\\xe5\\x48\\x47\\x3b\\x6e\\x4f\\x29\\x1f\\x49\\x3b\\x42\\x8e\\x88\\xc0\\xeb\\xc7\\xde\\x34\\xfe\\x54\\x7f\\xff\\x55\\xc3\\xfd\\x93\\xf7\\x0e\\xfb\\x8a\\x11\\xec\\x63\\x87\\x2f\\xef\\x99\\x2b\\xb2\\xbb\\x63\\xc6\\xa3\\x23\\x6c\\xe4\\x64\\x5e\\xa2\\xc3\\x26\\x32\\x82\\xea\\x94\\x99\\x17\\xb7\\xbc\\x24\\x27\\x49\\x85\\x44\\xa2\\x35\\xe0\\x68\\x49\\xb2\\x23\\x90\\xe8\\x9b\\x6c\\x62\\xb7\\x45\\xc3\\x0f\\x1e\\xca\\x2c\\xf4\\x81\\x3c\\xe0\\x16\\xc7\\x69\\x9a\\xa2\\x9c\\x91\\xa0\\xb9\\xd4\\x74\\xea\\xdc\\xc8\\xc8\\x2b\\xd5\\xc1\\x79\\x88\\xaf\\xe1\\xa8\\x67\\x28\\x76\\xec\\xf1\\xf8\\x98\\xc5\\x31\\xb7\\x12\\x92\\x3e\\x2c\\xdb\\x4d\\xab\\xae\\xa0\\x7f\\x9a\\x51\\x59\\x4d\\x3d\\x2a\\xda\\x9f\\xb2\\x66\\x91\\x51\\x61\\xc0\\x20\\x0a\\x04\\x8b\\x13\\xd4\\x82\\xa3\\x0f\\xb0\\xdb\\x61\\xd0\\xad\\x58\\x59\\x01\\xf0\\x81\\x60\\x98\\x21\\xd6\\xa4\\x34\\x8c\\x7d\\x0c\\x1f\\xf6\\xf1\\x8c\\xe1\\x0c\\xf1\\x8b\\x56\\x4d\\xc6\\xbe\\x0c\\x8f\\x1b\\x1d\\xfe\\x5d\\x93\\x29\\x64\\x1f\\xd5\\xa6\\xb7\\xa5\\x9b\\xd3\\x5b\\xd3\\x61\\x2f\\x2e\\xe9\\x3f\\x9a\\xd3\\xda\\xd2\\xec\\xad\\x69\\x30\\x2e\\x8b\\x4a\\xcd\\x25\\x3f\\xba\\xf9\\x55\\x03\\x85\\x7d\\xf3\\xc8\\x2f\\xa4\\xe1\\xa4\\xc7\\x9e\\xe8\\x8b\\xbc\\x6a\\x3a\\x83\\x6c\\xe9\\x0b\\x90\\x44\\x31\\x78\\x26\\xac\\x40\\x00\\x4e\\x07\\x48\\xaf\\xc2\\x16\\x22\\x28\\xdf\\xed\\x50\\x5e\\xd3\\xb7\\x8c\\x5f\\xa5\\x49\\x6b\\x11\\xb7\\x2d\\x57\\x76\\xb4\\x96\\x6f\\xdf\\x24\\x75\\xc0\\x58\\xfb\\x43\\x5e\\xcd\\x6d\\xc6\\xc3\\xc6\\xf4\\x95\\xfa\\xd6\\x39\\x5a\\x71\\xf1\\x3c\\xad\\xa1\\xb5\\x85\\x8d\\x53\\x8d\\xe9\\x6b\\xf5\\xed\\x73\\x74\\xcb\\x8b\\x0b\\x7a\\x43\\x3b\\x6d\\xb5\\x09\\xba\\xfb\\xd3\\xa8\\x21\\xd7\\xe9\\xd8\\xf8\\x79\\x74\\xfb\\x3b\\xff\\xcd\\xf3\\x67\\xc2\\xa1\\xf4\\x4f\\x2f\\xaf\\x6e\\xda\\xa7\\x57\\xd9\\x3d\\xf8\\x97\\x3d\\xa3\\x6f\\x88\\x19\\xc2\\x98\\x50\\x92\\xee\\xcb\\x24\\x26\\x48\\xfd\\x7c\\xe1\\xec\\x42\\x74\\x78\\x06\\x2b\\x16\\x8f\\x11\\x73\\x81\\xa8\\x20\\xfb\\xcb\\x9e\\xd9\\xfe\\xe9\\x4e\\x7d\\x3b\\x88\\xe2\\x1e\\xec\\xe5\\xde\\x59\\xa5\\x80\\xe9\\xbc\\x2f\\x50\\x11\\x2d\\x6b\\x17\\x80\\xde\\xb9\\xd3\\x2b\\xc5\\xac\\x10\\x51\\xf0\\x7a\\xd7\\x20\\x7f\\x97\\x4f\\x5f\\xde\\xae\\x28\\x82\\xdc\\xa7\\xb8\\x97\\x1b\\xf3\\x6c\\x73\\x8f\\x83\\xa7\\xe8\\xa4\\xcf\\xf7\\x36\\x3e\\x8a\\x1f\\x5c\\x51\\xcd\\x2e\\x5c\\xf5\\xf2\\x71\\xc8\\x08\\x25\\xcd\\x77\\x8c\\x13\\x9b\\x63\\x90\\x54\\x80\\x25\\xaa\\x4a\\xb0\\x5a\\xf5\\xfd\\x66\\x2f\\xbc\\x89\\x78\\x05\\x40\\x53\\x28\\x91\\xef\\x7e\\x45\\x80\\x72\\x7e\\xbd\\xf1\\x53\\x88\\xff\\xfc\\x59\\x3f\\x71\\xa0\\x85\\xd4\\x04\\x0e\\x6b\\x6a\\x91\\xdf\\xfa\\xe8\\xae\\x1c\\xb7\\xf6\\x87\\x20\\xce\\xfa\\x87\\x97\\x72\\x7e\\xc3\\x60\\x1a\\x06\\x76\\x62\\xee\\x0e\\xd0\\x6e\\x6d\\xb3\\x59\\xb9\\x2e\\x72\\xc3\\xc0\\xfb\\xe5\\x63\\x91\\x9d\\x6a\\x8e\\x23\\x31\\x41\\xd3\\x90\\x4c\\xcc\\x55\\xa1\\x51\\x52\\xb8\\x9c\\xa1\\x4d\\x77\\x35\\xcb\\x97\\x22\\x2b\\x9e\\xbc\\x98\\x36\\x99\\x6f\\x15\\xe0\\x39\\x79\\x5c\\x0d\\xe0\\xcd\\xbd\\x97\\x5a\\xa0\\x25\\x85\\x49\\xa9\\xfb\\x5d\\x14\\xcc\\xb8\\x9a\\x2a\\x65\\x75\\xfb\\x94\\xe5\\x8d\\xb7\\x64\\xec\\x43\\x38\\xeb\\x2e\\x08\\xe7\\x34\\x8a\\x8f\\x15\\xee\\x2d\\xca\\x39\\xd7\\xda\\x74\\x5a\\x58\\x56\\x70\\x12\\xdb\\x5b\\xa6\\x19\\xdf\\xea\\x46\\x18\\xa7\\x5b\\xf2\\x11\\x09\\x74\\xaa\\x22\\x32\\x53\\x70\\x82\\x4b\\xce\\xce\\x10\\x1a\\xa2\\x30\\x4c\\x2d\\xe4\\x07\\x72\\x56\\x12\\x66\\xcd\\xc0\\x7a\\xe5\\x29\\xf1\\x82\\x86\\x84\\x83\\x39\\xdb\\x72\\x75\\x6b\\x9d\\xf5\\x67\\xe3\\x4b\\xde\\xab\\xdf\\xfd\\xe1\\x21\\x3b\\x03\\x95\\x26\\x8b\\xcc\\x10\\x1c\\x22\\x93\\x5c\\x19\\xc2\\xfc\\x58\\x12\\x23\\xed\\xcc\\x5b\\x4a\\x78\\xfb\\xc3\\x25\\xc2\\x7d\\x8f\\x67\\x0c\\x51\\x68\\x19\\xe1\\xd7\\x59\\xd7\\x11\\x03\\x73\\x1e\\xd7\\x7a\\xb1\\x88\\xd2\\xf5\\xfd\\x47\\x8d\\xc9\\x35\\x31\\x6b\\xd0\\x96\\x96\\x4b\\xfc\\xbe\\x7a\\xe1\\xa1\\x82\\x0b\\xd5\\xda\\xd3\\x6d\\xf5\\x67\\x05\\xe5\\x95\\x67\\x88\\x1d\\xc5\\xf4\\x5e\\x80\\x31\\x04\\x40\\x10\\x6e\\x95\\x87\\x23\\x59\\x46\\x1a\\x2b\\x33\\x3a\\x23\\xed\\x66\\x0a\\xce\\x11\\xc5\\x3b\\xc0\\x2c\\x12\\xc3\\xd7\\xb2\\xf6\\x34\\xe0\\xe8\\x97\\xd7\\xdf\\xb3\\x10\\xd0\\x0b\\x8e\\x0b\\xd0\\x01\\xe8\\x0b\\xc7\\x0b\\x28\\x31\\x68\\x64\\x07\\xfd\\x09\\xfc\\x12\\xfc\\xc9\\x4a\\xc3\\xb0\\x4b\\x61\\x44\\x16\\x79\\x00\\x7e\\xbf\\x42\\x7e\\xd0\\xd1\\xb0\\x9f\\x92\\x5f\\x72\\x00\\xd5\\x58\\xca\\x9c\\x76\\xab\\x84\\x67\\x5b\\x32\\xb4\\xf1\\x00\\x6b\\x0b\\xa0\\x06\\x8f\\x3c\\xd6\\x5d\\x95\\xee\\x37\\x00\\x7f\\xe3\\x9a\\x19\\x59\\x92\\x7f\\x70\\xfb\\xc1\\x22\\x11\\xfe\\xcc\\x6f\\xbb\\x24\\x17\\x07\\xb4\\x91\\x95\\x99\\xe7\\xd8\\x9c\\xce\\x6f\\x57\\x96\\xbe\\x39\\x00\\x6b\\x5e\\xff\\xfe\\x4d\\x98\\x4a\\x83\\x40\\x54\\x47\\x00\\x47\\xbc\\x07\\x20\\xca\\xa3\\x80\\xa3\\x3e\\x38\\x19\\xeb\\x45\\x79\\xd6\\xc9\\xc6\\xc6\\xb3\\xa2\\xda\\x92\\x73\\xa2\\x14\\x17\\x1c\\xcc\\x39\\x57\\x2e\\x3f\\xd5\\xd8\\x74\\x56\\xd4\\x50\\x68\\xb2\\x7d\\x4d\\xf1\\x87\\x72\\x60\\x80\\x54\\xac\\x9b\\x2f\\xd2\\x83\\x09\\xa9\\x08\\xc7\\x2b\\x50\\x96\\x94\\x6b\\x29\\x13\\x1d\\x4f\\x64\\x80\\x52\\xb8\\xfa\\x68\\xa2\\x12\\x6b\\x49\\xd9\\x2b\\x5b\\xfc\\x02\\x50\\xe9\\xb8\\x65\\x10\\x1f\\xdf\\x7f\\xb0\\xec\\xc6\\x89\\x09\\x69\\xc3\\xc5\\xf8\\xd9\\x0d\\xc2\\x43\\xb9\\xe7\\x2a\\x50\\xd7\\xd4\\x78\\x21\\x24\\x62\\xa8\\xef\\x6f\\x14\\x1f\\xca\\x85\\x03\\xd2\\xf0\\x9e\\x94\\x78\\x63\\x2c\\x31\\xd5\\xc4\\x20\\x66\\xa3\\x2d\\xa9\\xd7\\x52\\x47\\x86\\xe6\\x8b\\x4d\\x60\\x2a\\xcf\\xc0\\x20\\x2b\\xf1\\x96\\xd4\\xd8\\x92\\x65\\x97\\x86\\xfd\\x06\\x1e\\x15\\x8f\\x42\\xda\\x8d\\xec\\x3a\\xad\\x34\\x34\\x33\\x59\\xaa\\x25\\x6e\\x0e\\x7c\\x33\\x2d\\x7a\\x4d\\xe3\\x25\\x23\\xc0\\xa5\\x04\\x28\\x55\\x19\\x62\\xed\\x2d\\x7a\\x22\\x31\\x15\\xff\\xe6\\x6e\\x3e\\xf6\\x7e\\x31\\x6a\\x3a\\xa9\\x32\\x07\\x5f\\x62\\x54\\xf2\\x5c\\x15\\xea\\x05\\xa8\\xc3\\x75\\x24\\xba\\xdb\\x90\\xd5\\xee\\xe6\\x84\\x47\\xfc\\x62\\x96\\xfb\\x81\\xe3\\xe4\\x60\\xcf\\xd5\\x08\\x7c\\x9b\\x43\\x13\\xf4\\x8f\\x07\\x3e\\xcf\\xaf\\xcf\\xa3\\x3a\\x4c\\x6a\\x81\\xab\\x26\\x61\\x2c\\xa6\\x24\\xcd\\x1e\\x52\\x45\\x4a\\x49\\xe6\\xe9\\x62\\x6c\\x80\\x2c\\x38\\x8a\\x2c\\xfa\\xa2\\x0f\\x47\\xb2\\x15\\x50\\xe0\\x1a\\x56\\xd6\\xa6\\xa3\\x63\\x47\\x03\\x76\\x2f\\x79\\x2c\\x43\\x72\\x38\\x9d\\x5f\\x3c\\x92\\x71\\x67\\xf9\\x22\\xae\\xb8\\x78\\x09\\xd7\\x5e\\xde\\xa6\\xb2\\x7c\\x81\\x7e\\x01\\x24\\x38\\x8d\\x7a\\xbd\\xd1\\x98\\x09\\xf8\\xab\\x71\\x09\\x1e\\x5f\\x0f\\x2f\\x52\\x47\\x06\\x71\\x06\\x18\\x68\\xc8\\x00\\x05\\xcd\\x5e\\x22\\xd7\\x72\\x37\\x05\\xd5\\x0f\\xfc\\xab\\xd2\\x66\\x2a\\xfe\\x09\\x9a\\x1a\\x50\\xc8\\x49\\x32\\x24\\xfd\\xcb\\xa0\\x9c\\x0b\\xb9\\x3f\\x5d\\x98\\xc9\\xac\\x8e\\xe7\\x3f\\xef\\x95\\xf4\\xba\\xd6\\xc7\\x03\\x31\\x2d\\xb4\\x7e\\xe6\\x76\\x7f\\xcb\\xb1\\xcf\\xcb\\x11\\xeb\\x77\\x7c\\x1f\\x8f\\xf9\\xde\\xa7\\x78\\xb8\\xaf\\x02\\xc4\\x26\\xc4\\x3d\\x1a\\xda\\x1e\\x9d\\xde\\x3b\\x86\\x8e\\xcb\\x33\\x92\\xab\\x08\\xb2\\x1c\\x57\\x98\\x36\\x05\\xbf\\xf0\\xb0\\xcf\\xc3\\x40\\xaa\\xf5\\x60\\xfa\\x22\\x15\\x08\\x76\\x1f\\x0d\\x6a\\x92\\xbb\\xfd\\x85\\x8c\\xb8\\x14\\x23\\xf3\\x65\\x80\\x84\\x0b\\xdb\\x45\\xc2\\xa0\\xa6\\xd6\\x9c\\x99\\x1d\\xfe\\xee\\x30\\x6e\\x86\\xe8\\x97\\xe4\\x83\\x18\\x10\\x7f\\xce\\xf1\\x85\\x3a\\xb9\\x34\\xb1\\x7a\\x67\\x86\\x36\\x53\\x08\\x65\\x21\\xef\\x77\\xf9\\xc0\\xf2\\x04\\xbd\\xa5\\x65\\x73\\x14\\xb7\\x67\\x16\\x5e\\x9f\\x4f\\x6d\\xd4\\x0b\\x62\\x72\\x55\\xd6\\x42\\x0b\\x9f\\x78\\x6b\\x3d\\x03\\xf4\\xf3\\x9e\\x22\\x0d\\xc0\\x96\\xc9\\x0e\\xa2\\x2e\\xfe\\x18\\x4d\\xdc\\x79\\x79\\x19\\x15\\x06\\xd0\\xc8\\x9d\\xe5\\x8a\\x31\\xb0\\xc1\\xb9\\x00\\x6e\\xd1\\xb1\\x2b\\x95\\xb0\\x60\\x65\\xba\\x20\\xfe\\x7d\\xac\\x36\\x86\\x20\\xc4\\x69\\x92\\x13\\xb2\\xab\\x6b\\xd4\\x3b\\x21\\x4e\\xed\\x74\\x54\\x77\\x9e\\xa6\\x09\\x60\\x47\\x78\\xec\\x99\\x2d\\x06\\x83\\x4d\\x05\\x52\\x7a\\xec\\x4f\\xb9\\xd9\\xbb\\x62\\x66\\x80\\x52\\x37\\xdc\\x5e\\x30\\xb4\\x60\\x1a\\xfa\\x3e\\x24\\xf8\\xaa\\xd6\\x33\\x04\\xe1\\x68\\x50\\x91\\xc0\\xfd\\x74\\xa2\\xca\\xf0\\xd9\\xe3\\x4f\\xf4\\x9f\\x2e\\xac\\x71\\xde\\x86\\xb3\\x0f\\xa1\\xdc\\x0e\\x4c\\x87\\x59\\x43\\xe8\\xad\\xa9\\x5a\\x60\\x56\\xab\\x27\\x61\\x1d\\x46\\x89\\x6b\\x43\\x0e\\x74\\x8b\\xc0\\x8a\\x89\\x8f\\x63\\x60\\x0a\\xc3\\x99\\x94\\x84\\x22\\xb3\\x11\\x94\\xd4\\xfd\\xff\\x4b\\x20\\xee\\xa7\\x75\\x93\\xa1\\xb9\\x03\\x01\\x95\\x02\\x7e\\xce\\x7b\\xb9\\xaf\\x7b\\x16\\xeb\\x00\\xe6\\x39\\x44\\x9b\\x07\\xd9\\xad\\x37\\xb2\\xfa\\xcb\\xca\\x66\\xc9\\xce\\xe2\\xc3\\xa4\\x8e\\x46\\xee\\x72\\xa9\\x72\\xc9\\xfa\\xf9\\xe0\\xda\\x77\\x8a\\x85\\x1f\\x35\\x88\\x8c\\xc8\\xd4\\xc4\\x74\\x6b\\x9e\\x3e\\x86\\x81\\x7e\\x82\\x14\\x52\\x15\\x36\\x95\\xbb\\x64\\xe6\\xcf\\x78\\xf6\\x7b\\x2a\\x5e\\x3c\\x5a\\xfb\\x6c\\x0b\\x59\\x78\\x47\\x67\\xd0\\xb9\\x24\\x51\\x2b\\x99\\x89\\x28\\x19\\x3a\\x91\\xa5\\x92\\x54\\xd9\\x13\\x66\\x63\\x6c\\x05\\x43\\x75\\xab\\x8e\\x57\\xa5\\x4a\\xcb\\xee\\xd0\\xd2\\x24\\x94\\xa4\\xe9\\x6a\\x25\\xc3\\x69\\x53\\x8e\\xc4\\x9a\\x2d\\xc8\\x00\\xb5\\xb9\\x74\\xe7\\x3f\\xd9\\xa4\\xbe\\x1f\\x1f\\x53\\xc8\\xb7\\xce\\x2c\\x61\\x12\\x07\\x6f\\xdf\\xa6\\x50\\x6e\\x9f\\x1d\\xa4\\xf9\\xa7\\x2a\\xd3\\xd8\\xa2\\x78\\x1a\\x99\\xaf\\x90\\xb2\\xd9\\xf1\\xdc\\xed\\x6b\\x71\\xed\\x2c\\x1f\\x27\\x97\\xe2\\x08\\x50\\xdc\\x6f\\x60\\x32\\xcd\\x5d\\xa8\\x22\\x27\\xa6\\xa7\\xc0\\xc8\\xdc\\x57\\x5a\\x3b\\xc7\\x74\\x9a\\x67\\x49\\xcd\\xcd\\xec\\x15\\xbb\\x72\\xd9\\xf4\\x71\\xf7\\xf2\\xff\\x89\\x87\\x7c\\x7e\\xfb\\x98\\x97\\xaa\\x60\\x4a\\x3c\\x66\\x5d\\xba\\x22\\xe6\\xc7\\x03\\x1a\\xf2\\x28\\x85\\xd9\\xe4\\x9e\\x3c\\xc1\\xd3\\x31\\x1d\\x1a\\x99\\x2d\\x92\\x23\\x29\\x8c\\x54\\xe4\\x50\\xa8\\xdb\\xaf\\x64\\x3a\\x35\\x0a\\x5b\\xb4\\xa5\\x36\\x5a\\xa1\\xa5\\x7c\\xee\\xcd\\x80\\x3c\\x3e\\x2f\\x01\\xc5\\x93\\xe5\\xad\\xaa\\x93\\xd9\\x6c\\xe4\\xdc\\xc1\\xe0\\xfe\\x72\\x61\\x63\\x68\\x4b\\x5a\\x63\\xdd\\xda\\x38\\xc5\\x45\\x94\\xe6\\x54\\x85\\x6b\\x53\\x5f\\x42\\xff\\xad\\xde\\x00\\x66\\x2c\\x4e\\xf7\\x87\\x55\\x9c\\xbe\\xb8\\xf3\\x6e\\x9f\\xbb\\xdf\\xeb\\x79\\x9c\\xdf\\x8c\\x41\\x89\\x2c\\x71\\xfe\\xac\\x7e\\xfd\\x9d\\xf5\\xe1\\x81\\x3d\\xfc\\x3f\\xbd\\xae\\x54\\xfd\\xb8\\xb9\\x73\\x9f\\x61\\x5a\\x07\\x67\\xf8\\xf3\\x3a\\x2d\\xa4\\xd5\\x79\\x38\\xba\\x17\\x3a\\x6b\\x6e\\xbd\\x33\\x11\\xe4\\x54\\x88\\x8a\\xe3\\xa4\\x29\\xf9\\x78\\x55\\x0a\\xc6\\xe0\\x7b\\x19\\xb1\\x8e\\x85\\xef\\x59\\x38\\xe2\\x97\\xf8\\x30\\x8d\\xcd\\xf8\\x05\\xc4\\xda\\x4f\\x1e\\x99\\x96\\x54\\x10\\x92\\x19\\x85\\x90\\xf6\\x7e\\x6f\\x24\\x13\\xd3\\x0a\\xa8\\x74\\x29\\xde\\xc4\\x27\\x33\\x9d\\x1a\\xa1\\x2d\\x86\\x23\\x2f\\x8b\\x54\\xab\\x11\\x76\\x1d\\xba\\x2c\\xeb\\x40\\x55\\xd9\\x41\\xa4\\x63\\xc9\\x1a\\xe4\\xe4\\x6d\\x9a\\xe8\\x06\\x1f\\x39\\xe3\\xd1\\xdf\\x5a\\x89\\x7b\\xfd\\xf9\\xb9\\x23\\xe2\\x4d\\x8f\\x94\\x75\\x4b\\x33\\x2e\\x10\\xef\\x6c\\x46\\x32\\x5f\\x9f\\x7d\\x96\\x6b\\x63\\x11\\x61\\x7a\\x2d\\xc1\\x86\\x66\\x89\\x0a\\x83\\x14\\xbc\\x38\\x7d\\x32\\x4b\\x66\\x3c\\x27\\x4c\\x51\\x25\\xe3\\x19\\x3a\\x25\\x21\\x0b\\x43\\x17\\x94\\x05\\x8b\\x79\\x60\\xdd\\x81\\x16\\xf0\\xe5\\xf8\\xf8\\xed\\x0c\\xc6\\x09\\x56\\xfc\\xae\\x88\\x2a\\xf2\\xad\\x18\\xc6\\x03\\x4a\\xe4\\xaf\\x4c\\xe6\\xb1\\x35\\x9f\\x2e\\x71\\x30\\x4c\\xfb\\xd0\\xe1\\x78\\xad\\x40\\x83\\xdb\\xe7\\x36\\xd4\\x91\\x98\\xc5\\x1a\\x89\\x0d\\xc6\\x11\\x16\\x44\\x2a\\xd5\\x70\\x87\\x1e\\x5f\\x21\\x9a\\xb3\\xbb\\x16\\xc0\\x45\\xa1\\x6b\\xcf\\xfc\\x45\\x41\\x9c\\x56\\x08\\x87\\x51\\xc8\\xfa\\x8d\\x5f\\xa3\\x38\\x73\\xfd\\xd3\\x23\\xfa\\xc7\\x05\\xf1\\x96\\x38\\xcf\\xc1\\xad\\xa0\\xb6\\x83\\x1b\\x1e\\xd3\\x70\\x62\\x8d\\x20\\x28\\x96\\x2e\\x43\\x33\\xb0\\x6c\\x5a\\x0c\\x56\\x94\\xc3\\x0b\\x88\\xa5\\x67\\xa2\\x52\\x70\\xcc\\xca\\xe8\\x28\\x22\\x95\\x3a\\x41\\x8d\\xda\\x44\\xa5\\x22\\x30\\x5a\\xb2\\x5e\\x1f\\xb9\\x06\\x3d\\x41\\xd7\\x9d\\xca\\xf7\\xc9\\x98\\x8c\\xfa\\x5f\\xbd\\x01\\x7e\\xbf\\x12\\x9f\\xd3\\xe3\\x2e\\xa0\\x2c\\x73\\x62\\xf5\\x46\\x6a\\x15\\x51\\xaa\\xae\\x0c\\xd7\\xa6\\xc5\\xe9\\x39\\xe7\\x60\\x7f\\xa5\\x2d\\xae\\x58\\xd3\\xae\\x2f\\xed\\x2f\\xd8\\xdc\\x50\\x32\\x5c\\xb8\\xf7\\x1e\\x99\\x36\\x42\\x87\\x10\\xb0\\x35\\x94\\x62\\xfc\\xe9\\x5b\\x6c\\xbc\\x4f\\x26\\xce\\x2a\\x6d\\x08\\xbd\\xb4\\x80\\xe5\\xe6\\x82\\xc1\\x60\\x88\\x9a\\x74\\x73\\xa2\\x6a\\x3e\\x3f\\x31\\x4a\\x9c\\xf0\\xc3\\xd1\\xa3\\x30\\xf2\\xfc\\xe0\\x07\\xa4\\x61\\xdf\\xe0\\x85\\x78\\x1b\\x47\\x1b\\x80\\xc2\\x1c\\xd6\\x93\\xb6\\x70\\x08\\x9f\\xb1\\xd4\\xd1\\x72\\x06\\x28\\x39\\xf8\\x91\\x34\\xd1\\xfc\\x5f\\x45\\x97\\xb7\\x37\\x56\\x76\\x67\\xfd\\xa6\\xdb\\x38\\x3b\\xd7\\x57\\x25\\x6c\\x70\\x14\\x1d\\x22\\x94\\x46\\x09\\xfc\\x68\\xc7\\xde\\x41\\xe1\\xd1\\x84\\x7b\\xe8\\x43\\x05\\x8b\\xa2\\x8a\\x14\\x98\\x82\\x4c\\x9a\\xb0\\xab\\xc3\\x7a\\x5d\\x34\\xcb\\x71\\x18\\xda\\xa9\\xa0\\xa7\\x71\\x61\\x38\\x45\\x1a\\x27\\xce\\xec\\xa9\\x8c\\x89\\xa0\\x7f\\x5b\\x5a\\xed\\x40\\x64\\xaf\\x4f\\x83\\x29\\x44\\x4d\\x0e\\xc7\\x12\\xb6\\xd4\\x24\\xf1\\xca\\xa3\\xa5\\xc7\\xfa\\x9f\\x15\\x3f\\x6a\\x8b\\x0a\\x3c\\x35\\xa8\\x86\\x50\\xe4\\xc5\\xfe\\x6c\\x1a\\x00\\x0e\\xbd\\x1b\\xbd\\x8e\\x89\\x3f\\x8e\\x5f\\x11\\x28\\x43\\xc2\\xa2\\xa5\\xc8\\x3f\\x56\\xe0\\x61\\x84\\x15\\x48\\x29\\x1c\\xc2\\xb4\\x8f\\xd9\\xb6\\x15\\x8c\\xc0\\xc0\\xe3\\x6e\\x11\\xfc\\x9a\\x84\\x27\\x88\\xf3\\x80\\x8f\\x33\\xf2\\x03\\x8c\\x70\\x8f\\x4f\\x39\\xfe\\x54\\x19\\x62\\x52\\x0a\\xd6\\xde\\xc9\\x06\\xe3\\x31\\xe6\\x90\\x3d\\x64\\xf0\\xb0\\x14\\xdf\\x88\\x95\\xd9\\x5d\\x71\\x12\\x67\\xd8\\x68\\xc5\\xe0\\x96\\x83\\x05\\xad\\xbe\\x9d\\x4f\\x4b\\x76\\x90\\xda\\xca\\x58\\xfd\\xba\\x3c\\x56\\x87\\xd3\\xbd\\x48\\x2c\\xb9\\xf9\\xf0\\x56\\x8c\\x04\\xf5\\xfd\\x1c\\x3d\\x0a\\x42\\x38\\x21\\xc1\\xc0\\x6e\\xd1\\x83\\xc8\\xd9\\x3c\\x1d\\x92\\x47\\xd7\\xce\\xbb\\xbf\\x23\\x70\\xcf\\x37\\x7b\\x75\\xea\\x6e\\x5c\\x1d\\xb7\\xe2\\x8a\\xb7\\xca\\x09\\x6e\\x61\\x7e\\xb0\\x87\\xcb\\x3c\\xbc\\x3f\\x4c\\x15\\x0a\\x84\\x06\\x74\\x2e\\x50\\x37\\xf6\\xfb\\x14\\x6c\\xce\\xb7\\x63\\xf3\\xb3\\x2c\\x74\\xca\\xb4\\x25\\x8f\\x7d\\x6e\\x27\\xcb\\xa7\\x81\\x2e\\xd9\\x25\\x72\\x6c\\x56\\x7e\\x9e\\xff\\x25\\x3e\\xba\\x9e\\x11\\xe9\\x12\\xc9\\x4c\\x94\\x53\\x52\\xb0\\x41\\x44\\xd0\\x21\\xf2\\x32\\xcc\\xe0\\xe4\\xd0\\x63\\x3c\\x2c\\xa5\\x10\\xc9\\x0f\\x52\\x79\\x49\\xc2\\x0c\\x65\\x99\\xb6\\xbc\\x81\\x5f\\x17\\x35\\xd5\\x98\\xf5\\x30\\x7f\\x85\\x5e\\xb9\\x97\\xb4\\xca\\x9f\\xac\\x6f\\x54\\xbb\\x88\\xfe\\x67\\x37\\x43\\xda\\x51\\xc3\\xdd\\x7b\\x7e\\xfd\\x83\\x27\\x6d\\x7b\\x1e\\x9f\\x7b\\x95\\xb5\\xf6\\xfc\\xda\\x05\\x98\\xa7\\x3b\\xcc\\x3e\\xa1\\xce\\x17\\x08\\xfc\\xa4\\xa1\\x7a\\xff\\xe8\\xdc\\x05\\x31\\xa5\\x56\\x4a\\x7f\\xf9\\x33\\x66\\x5c\\x91\\xfc\\xba\\x08\\x7c\\x0b\\xc0\\x02\\xa7\\x66\\x38\\xe0\\x24\\x26\\xee\\x2e\\x1a\\x5e\\xe4\\xf7\\x6f\\xbe\\x0f\\xea\\x7c\\xa5\\xc4\\x4f\\x11\\x9a\\xef\\x1f\\x63\\x5e\\x09\\xae\\xb5\\x33\\x47\\x0a\\x80\\x33\\x0f\\xf9\\x82\\x3e\\x4c\\x80\\xda\\x53\\xf2\\x3e\\x48\\x6f\\x84\\xde\\xf8\\x7b\\x18\\x0e\\xe2\\xd7\\x82\\x3a\\xfb\\x71\\x4f\\x2c\\x2c\\x92\\xb4\\x18\\xca\\x51\\x47\\x64\\xa5\\x8b\\xb8\\xe5\\x45\\x89\\xad\\xd0\\xdc\\xec\\xed\\x85\\x9d\\x56\\xab\\xa6\\x86\\xa1\\x77\\xc4\\x1c\\x05\\x56\\x4d\\xdb\\xdf\\x53\\xf6\\xa2\\xb5\\xae\\x9e\\x9c\\x8b\\xde\\x67\\x9f\\xc2\\xb0\\x47\\x7b\\xde\\x48\\x22\\xb8\\xfe\\x84\\xc1\\x5b\\x45\\xbd\\xcb\\xcc\\xf7\\x5e\\x0b\\x14\\xf1\\xff\\x40\\x3c\\xde\\xcd\\xdf\\xf3\\x41\\xe1\\xec\\xa4\\x35\\xa8\\x86\\x12\\xf6\\x54\\x7e\\x7d\\xdc\\x2e\\xb7\\x6f\\x48\\xce\\xb6\\xa0\\x87\\xdc\\x4e\\xdb\\x83\\xf8\\x98\\xec\\x50\\xc9\\x2f\\xd1\\xd8\\xf5\\x9b\\xfa\\xdd\\xb3\\x26\\xd5\\x77\\x57\\xfe\\xda\\x66\\xe1\\x54\\x30\\xc6\\x50\\x56\\xe7\\x01\\x42\\x7b\\x05\\x77\\xd2\\xd2\\x90\\xb9\\x52\\xcc\\x3c\\x25\\x94\\x42\\x15\\xb0\\xa4\\x58\\x8b\\x68\\xd4\\x5e\\x32\\x8f\\x29\\xb2\\x4e\\x11\\x1b\\x4a\\x58\\xbd\\x3a\\x58\\xcc\\xba\\x6b\\x87\\x98\\x51\\xaf\\x36\\xce\\x93\\x45\\xc3\\xa1\\xca\\x9f\\x24\\x38\\xf8\\xdd\\xb2\\x96\\xac\\x32\\x53\\x51\\x5e\\x7a\\xd0\\x01\\xeb\\xda\\xa6\\x7a\\xf7\\xb8\\x80\\x83\\x30\\xf0\\x1a\\x69\\xb0\\x65\\x1b\\xd8\\xc1\\x49\\xc5\\x4a\\x7f\\x5c\\xd7\\xe8\\x93\\xec\\x6f\\x16\\x26\\xce\\x5d\\x55\\xd7\\x7f\\x31\\xe8\\x24\\x70\\xca\\xe7\\x95\\xb2\\x7f\\x6f\\x77\\x5a\\x9b\\x8d\\xca\\x98\\xd6\\xb4\\x2d\\xe0\\xf0\\x83\\x63\\x69\\xa2\\xb9\\xe2\\xca\\x31\\x9c\\xc9\\xda\\x14\\x9a\\x0c\\x92\\x03\\x63\\xde\\x45\\xa5\\xa9\\x15\\xac\\xa8\\x17\\xdd\\x81\\x21\\xec\\xdc\\xc3\\x07\\x1e\\x0d\\x73\\x88\\x60\\xa9\\x21\\xc3\\xfa\\x2d\\xf8\\xd9\\xcf\\xbf\\xfd\\x7a\\x7f\\x51\\x4f\\xa7\\xb5\\xe4\\x6b\\xd0\\x10\\x6d\\xd3\\x86\\x7a\\x43\\x5a\\x47\\x89\\xb5\\x23\\x2e\\x27\\xa7\\x34\\xec\\x73\\xe7\\xaa\\xfa\\x93\\xab\\x27\\x1d\\xb8\\xaf\\xaf\\xa1\\xac\\xe7\\xf9\\x86\\x77\\xb2\\x6d\\xf0\\x39\\xd7\\xf8\\x5b\\x1e\\xfd\\xe9\\xf4\\x37\\x9a\\x9d\\xdb\\x75\\x9d\\x5e\\x7f\\x6d\\xba\\xc3\\x77\\xfe\\xb7\\x64\\x7e\\xee\\xe7\\x03\\x9f\\x51\\x9f\\xff\\x18\\x1f\\x23\\xe1\\x9f\\x66\\xc7\\xce\\x90\\x0e\\xd0\\x91\\x29\\xdf\\x9a\\x43\\x5f\\x8e\\xf7\\x76\\x61\\x53\\x4a\\x2b\\xaf\\x8e\\x3f\\x5d\\x8b\\x4e\\x49\\x76\\x04\\x5c\\x7e\\x0e\\x14\\x6a\\x7f\\x8a\\xfb\\x15\\x3a\\xfa\\x68\\x51\\x29\\x96\\xbd\\x63\\x7b\\xa5\\x63\\x5c\\xb9\\xe1\\x42\\xaa\\xb8\\x85\\x8d\\x90\\x13\\xc9\\x6d\\x7f\\xb8\\xa3\\x4d\\xbb\\xe3\\x86\\xe0\\x92\\x84\\xcb\\x81\\x75\\xbb\\x84\\x38\\xa7\\x86\\xd0\\x69\\xdc\\x3f\\x45\\xd8\\xb4\\xfe\\x1c\\xf5\\x94\\x4f\\xda\\xe6\\x7f\\x45\\xee\\x29\\x7c\\xad\\xa1\\xce\\x18\\x8e\\x10\\xf9\\xd5\\xeb\\x8c\\x64\\xb6\\x77\\x88\\x49\\x08\\x83\\xff\\xea\\x0f\\x2f\\x18\\xd9\\x9c\\x55\\xb0\\xed\\xc0\\xca\\xee\\x36\\xee\\xb8\\x85\\xc2\\xf4\\xe1\\x69\\xf0\\x0f\\xcd\\xfa\\xd8\\xad\\xde\\x3a\\x2c\\x26\\x43\\x95\\x49\\x8d\\x52\\x01\\x06\\x05\\xda\\xd6\\xb0\\x57\\x4e\\x15\\x29\\xd1\\x4d\\x4b\\x81\\x25\\x35\\xac\\x32\\x6a\\x04\\x42\\x52\\x0a\\x93\\x55\\xb4\\x74\\x13\\xa4\\x3c\\xe0\\x2f\\x06\\x52\\x08\\x6b\\xec\\x23\\x03\\xac\\x76\\xfe\\xd4\\x6b\\x97\\xff\\x88\\x9a\\xe6\\x63\\xca\\x89\\x62\\x94\\x6c\\xd8\\xee\\xd9\\x5c\\xcb\\x3c\\x5a\\x2e\\xdf\\x3d\\x3d\\x0e\\xaf\\x2a\\xdf\\x07\\xa2\\x16\\x26\\x7c\\xe7\\x3c\\x9c\\x4f\\x6d\\x51\\xb9\\xb2\\x4c\\xf9\\xbd\\xb4\\x2d\\xc6\\x07\\xea\\xca\\x8d\\x3b\\x4d\\xa6\\x29\\xc9\\x8d\\xdd\\x6a\\x73\\xf7\\x64\\x8d\\x5a\\xe7\\x04\\xa3\\xb5\\xd5\\x86\\x67\\x8e\\x5d\\xd5\\x67\\x57\\x56\\xcf\\x98\\x47\\xa4\\xdd\\xcd\\x86\\x01\\x21\\x14\\x6e\\x5d\\x74\\x34\\xd9\\x7f\\x9c\\xb2\\x90\\xec\\x45\\xa1\\xd4\\x8c\\x3e\\x32\\x40\\x65\\xeb\\x7a\\x13\\xf3\\x76\\x2b\\x29\\x82\\x47\\x83\\xce\\x74\\x7a\\x6d\\x72\\x6c\\x2c\\x63\\x8e\\xa6\\xed\\x30\\x19\\xe7\\xf3\\x2b\\x29\\x12\\x3a\\x66\\xfe\\xa7\\x50\\xa9\\x64\\x3a\\x3c\\xcd\\xbc\\xdd\\x89\\x69\\x3a\\x79\\x38\\xd8\\xac\\x4c\\x87\\x46\\x9a\\x2e\\x5d\\x57\\x75\\xa8\\x4f\\xd8\\x10\\x1f\\xa7\\x66\\x85\\x7d\\x39\\x52\\x0e\\x03\\xf4\\x86\\x44\\x25\\x2d\\xff\\xd2\\xb3\\xc3\\x27\\x2c\\x16\\x37\\xbb\\x7b\\xf7\\xa8\\x14\\x7f\\xc8\\xb5\\xed\\xf5\\xbc\\x36\\xc0\\x07\\x82\\x02\\xdd\\xee\\x6f\\xaf\\x3e\\x5d\\xfb\\xd4\\x0f\\xef\\xdf\\x8e\\xdd\\x5f\\x82\\x71\\xbb\\x0f\\x2a\\x3c\\xdd\\x03\\xa8\\x66\\x83\\x91\\x74\\xbd\\x8d\\xfa\\xbd\\x00\\x6c\\x1c\\x2f\\x2d\\xf2\\x4d\\xa3\\xc7\\x3c\\x73\\x54\\x3f\\x0f\\xdc\\xa8\\x06\\xd1\\x77\\x3b\\x65\\x25\\xf7\\x01\\x6b\\x6c\\x75\\xf9\\x6c\\xe0\\xd1\\x97\\x2f\\x84\\xda\\x92\\xfd\\xde\\x3c\\xf1\\xd1\\x65\\xef\\x96\\x23\\x97\\x6f\\x59\\x5d\\xc8\\xd8\\xfd\\x62\\x69\\xd1\\x3b\\x5a\\xdf\\xc5\\xc9\\x1f\\xa0\\x3f\\x1c\\xbf\\x76\\xfe\\xd2\\xec\\xb3\\x05\\x92\\x49\\x1a\\x6f\\x7b\\x66\\xa4\\xc2\\x93\\xab\\x17\\xdb\\x03\\xe6\\x3d\\x1c\\x97\\x88\\xb6\\x6a\\x2a\\x92\\xf0\\x88\\xb5\\xbb\\x73\\xfa\\x87\\xf1\\xa6\\x21\\x8d\\xa1\\x07\\xe3\\x9d\\x54\\xd0\\x1a\\x8d\\x2f\\x4e\\xf7\\x65\\x17\\xdb\\x39\\xed\\x54\\x31\\x32\\x90\\xef\\x70\\x63\\xbc\\xa0\\xe4\\x2d\\x07\\xb7\\x56\\x27\\x90\\x58\\xf6\\xae\\x34\\x86\\x0a\\xf0\\xeb\\xdc\\xa6\\xb1\\xed\\x87\\xf1\\x62\\xbf\\xa2\\x2e\\xb9\\xee\\x28\\x61\\xff\\x32\\xe1\\xf5\\x5d\\xbd\\x90\\x34\\xd2\\xa2\\x99\\xe5\\x0b\\xf9\\x83\\xe3\\x6d\\xea\\x2e\\x1f\\xcf\\xb6\\xe5\\x08\\xfe\\x09\\xf0\\xa2\\x2e\\xb7\\xe7\\x94\\xc2\\x29\\x13\\x3f\\x96\\xa5\\x7d\\x80\\xea\\x92\\xa0\\xdc\\xea\\x18\\x2f\\xa7\\xaf\\x46\\xbf\\xd0\\x12\\xbc\\x22\\x83\\xc7\\x5d\\x71\\xdb\\x7e\\xff\\xfa\\x17\\x79\\x5f\\x9d\\x0f\\x86\\x46\\x11\\x8d\\xac\\xd3\\xa2\\x83\\xc3\\xd6\\x9c\\x93\\xca\\x78\\x9f\\x10\\x31\\x6a\\xea\\x0b\\x01\\xa2\\x09\\xe4\\x52\\x9d\\x61\\x2d\\x5a\\xe6\\x8a\\xc0\\x5e\\x16\\x08\\xb2\\xf7\\x83\\xcd\\x69\\x28\\xf6\\x48\\xf8\\x1d\\x5c\\x1d\\x99\\x86\\x37\\x96\\x13\\x98\\x28\\xd4\\xab\\x76\\xc3\\x9c\\x29\\xd4\\x26\\xb7\\xae\\x85\\x41\\x9a\\x16\\xa2\\x20\\x35\\x54\\x1f\\x11\\x00\\x59\\xe0\\x4d\\xff\\x92\\x63\\xec\\x6a\\xef\\xc8\\xec\\x1a\\x55\\x49\\xc7\\x4e\\x09\\x9e\\x4f\\x1d\\x91\\x70\\x3e\\xad\\x79\\xeb\\x79\\xc2\\x0a\\x60\\xff\\xfb\\x09\\xb4\\x1e\\x8e\\x77\\x04\\x6c\\x5a\\xdd\\x91\\x02\\x73\\xb9\\x32\\xfe\\xa6\\x19\\x10\\x7a\\xfe\\xec\\xfb\\x15\\x3e\\xec\\xeb\\x52\\xba\\xe3\\xcc\\x2f\\x6a\\x6d\\xa8\\xff\\xf2\\xca\\x96\\x5a\\x0b\\x0e\\xdd\\xd4\\xc5\\x9d\\x9b\\xdf\\x3f\\x36\\x17\\x87\\xe2\\xf8\\x13\\x32\\xcc\\xcd\\x47\\x33\\x0a\\xba\\x36\\xf0\\x82\\x26\\xc5\\x95\\xaf\\xa1\\x31\\x81\\x58\\xba\\x6a\\x49\\x59\\x8a\\x04\\x1e\\x4f\\x4b\\xbd\\xbc\\xd7\\x96\\x1b\\x9c\\xcb\\xe8\\x94\\x5c\\x7d\\x70\\xbf\\x02\\x66\\xe8\\x9f\\x1f\\x94\\x72\\x66\\x81\\x68\\x0a\\x85\\x53\\x28\\x6a\\xce\\x46\\x32\\x7b\\xaf\\x7b\\xe2\\x5c\\xa9\\xaf\\x97\\x5d\\xab\\x7f\\x0f\\xd7\\x4d\\x5c\\x28\\x95\\x36\\xdd\\xb5\\x24\\x0c\\x76\\xd6\\xff\\x13\\x3f\\xd4\\x92\\xf5\\x2a\\xf8\\x2f\\x0e\\xd6\\x9f\\x4b\\x40\\xa7\\x1a\\xb2\\xcb\\x7d\\x8e\\x14\\xd0\\x16\\x8c\\x21\\xf6\\x5e\\x31\\x28\\x46\\xf5\\xb0\\xce\\x10\\x6d\\x20\\x28\\x30\\x2e\\x2f\\xfb\\xdf\\x2b\\x6a\\xc0\\x04\\x88\\x9c\\x3f\\x4f\\x5b\\x08\\x32\\x81\\xf9\\xaa\\x48\\xe4\\x53\\x91\\xf2\\x84\\x09\\x6e\\x8b\\x52\\x46\\x98\\xe8\\x66\\xa8\\x8f\\xf9\\xa9\\xd8\\xec\\x7c\\xbe\\x03\\xb5\\xd5\\x8c\\x23\\x42\\xff\\x75\\x0f\\x27\\x9b\\x92\\x02\\x19\\x76\\xe2\\xc6\\x04\\x85\\x18\\xef\\x4c\\x00\\x04\\xb7\\x71\\x07\\xa1\\xbe\\x92\\x69\\x0b\\x2a\\x04\\x1a\\x8a\\xc1\\x2a\\x03\\xc1\\x6d\\x51\\x83\\x50\\xb7\\xc9\\x4a\\x2e\\x14\\x92\\x35\\x03\\x5b\\x92\\x49\\x31\\xce\\x49\\x1a\\x04\\xb7\\x65\\x29\\xb3\\x36\\xd9\\x0e\\x6a\\x22\\x4f\\x8b\\x09\\x9d\\x9d\\x4d\\x50\\x64\\x5d\\x42\\x04\\xb7\\x85\\x0f\\x42\\xbd\\x20\\xe7\\x2a\\xdc\\xd4\\x42\\x6e\\x0c\\x85\\x9c\\x4e\\x58\\xec\\xd9\\x93\\xe1\\x0f\\xc9\\x27\\x27\\xd2\\xce\\x4a\\xb7\\xe0\\xbd\\xdc\\xc9\\x09\\xc4\\x35\\xd1\\xd5\\xcf\\x3b\\xa8\\xed\\x5d\\x7d\\x55\\x0f\\xa3\\x43\\xaf\\x42\\x89\\x96\\x2c\\xf6\\xec\\x19\\x88\\x87\\xe4\\x33\\xd2\\x4e\\xf8\\xf8\\xd6\\x36\\x60\\x68\\xfe\\xe6\\x52\\xa9\\x7c\\xa6\\xfe\\x85\\x16\\xee\\x81\\x92\\xfa\\xda\\x12\\x01\\x02\\x72\\xbb\\xb4\\x95\\x02\\xbb\\xa1\\x5d\\x51\\x10\\x68\\xaf\\x86\\x07\\xe6\\xab\\x93\\x0a\\x65\\x36\\xd1\\xcd\\xe1\\x97\\x59\\x5a\\xd9\\x5a\\x14\\x22\\x25\\x09\\xec\\xb5\\x5e\\x0f\\xc9\\xd7\\x2e\\x75\\xc2\\xaf\\x29\\x42\\x60\\x51\\x09\\x0b\\x49\\xd6\\x22\\xfb\\xf1\\x1d\\xd6\\x37\\xae\\xf6\\x9c\\xd2\\xc3\\x2f\\x01\\xe4\\x15\\xe4\\x5e\\x4b\\x0b\\xfd\\x26\\xca\\xa7\\x9a\\xa9\\xb8\\x95\\x50\\x1b\\x75\\xc2\\x45\\x34\\xf3\\x82\\xdb\\x22\\x05\\xb7\\xd1\\x7c\\xe0\\x9c\\x0a\\xfb\\x39\\x74\\xa6\\x0f\\x16\\x36\\x0d\\x4f\\x7a\\x90\\xff\\x7f\\xca\\x0c\\xe8\\x4a\\x1d\\xc3\\x5c\\x06\\x3c\\x97\\x4c\\xc7\\x8c\\xd6\\xbc\\xf3\\x3d\\x22\\xc7\\x69\\x38\\x8c\\xdf\\x01\\x83\\x52\\xd4\\x54\\x49\\xfd\\x31\\x5a\\x05\\xb3\\xe3\\x92\\xe1\\xb7\\x66\\x4e\\x50\\xe7\\xc8\\x20\\x97\\x1f\\x6d\\x27\\x63\\x05\\xb8\\x5f\\x18\\x78\\x33\\x9f\\x96\\x04\\xa5\\xe6\\x65\\xad\\xd4\\xef\\xa3\\x5c\\x40\\xd7\\x69\\x30\\x12\\x7e\\x6d\\xfa\\x00\\xda\\x6d\\x70\\x7c\\xb0\\x7f\\x82\\x0e\\x50\\x72\\x2f\\x90\\x49\\x17\\x4c\\xee\\x4f\\xcb\\x13\\xf6\\xc9\\xbd\\x79\\x75\\x26\\x65\\x42\\x69\\x1b\\xf0\\xd2\\x30\\x4d\\xde\\x61\\x3d\\x1c\\xa0\\xf1\\x1c\\xe3\\xca\\xef\\xb3\\x4e\\x6b\\x90\\x0c\\xa4\\xae\\xc6\\xa5\\x30\\x73\\xa2\\x12\\xcc\\x46\\x39\\x6f\\xa3\\xa5\\x5a\\x8a\\xa4\\xf5\\x99\\xcc\\xc5\\x46\\x17\\xc6\\x55\\xf2\\x4b\\xa2\\xaa\\x71\\x0d\\x2d\\x30\\x4a\\x95\\x28\\x35\\xf3\\xc7\\xba\\x13\\x9d\\xd2\\xfc\\x43\\x68\\xb7\\xcb\\xe3\\xdd\\x84\\x78\\x6c\\x6c\\xc7\\x43\\x02\\xff\\xe4\\x35\\x68\\x4a\\x90\\xcf\\x33\\xfe\\x10\\x04\\x15\\xc3\\xd7\\xb1\\x97\\x39\\x33\\x7c\\xbe\\xa6\\x1c\\xc9\\x5a\\x0d\\x66\\xa2\\xea\\x74\\x1e\\x3c\\x9b\\x76\\xa2\\x6b\\xd0\\xc0\\xba\\xbe\\xa6\\xc1\\x49\\x8d\\xaf\\x3a\\x03\\x96\\x5f\\xd1\\x6a\\xbc\\x60\\xd8\\x5b\\x7f\\xd7\\xd7\\x3b\\xac\\xd7\\x8c\\xf3\\xd6\\x82\\xf1\\x2f\\x90\\xf5\\x5a\\x93\\xc6\\x27\\x91\\xf5\\xef\\x06\\xb8\\x07\\xd6\\xad\\x3c\\x0a\\x4c\\x8c\\xdb\\xc9\\x8e\\xa2\\x98\\xf8\\x21\\x17\\x75\\x3a\\x18\\x9e\\x7d\\x8a\\x76\\x3b\\x25\\x2d\\xe3\\x26\\x5d\\xf5\\xdd\\x34\\x38\\xa9\\x9e\\x31\\x18\\xe4\\xf2\\x0e\\x57\\x68\\x8f\\x95\\x8b\\x38\\x0b\\x86\\x3d\\x0e\\x9e\\x15\\xdc\\x96\\xb5\\xc5\\xc7\\xd5\\xfb\\x1e\\x4e\\x8e\\xf8\\xf2\\x69\\xe4\\x64\\xa9\\xef\\x0f\\xa0\\xdd\\x3a\\xc7\\x9b\\x3a\\x01\\x91\\x61\\x9a\\x2d\\x54\\x3a\\xe5\\x73\\x72\\xa8\\x89\\xce\\x8f\\x0f\\x28\\x84\\x8a\\xf1\\xf1\\x71\\xfe\\x6a\\x0f\\x27\\xeb\\xa8\\x78\\x19\\xd8\\xf3\\xd8\\xd8\\x58\\xb9\\x62\\x09\\x36\\xcf\\x03\\x3c\\xb4\\xae\\x17\\x13\\x2c\\x5a\\xbd\\x20\\x8d\\x8e\\x6f\\x01\\x6f\\x4a\\x12\\xb1\\xe0\\xbc\\x29\\xa6\\x90\\xf7\\x58\\x9f\\x2c\\x7d\\x32\\xfe\\x4d\\xf6\\x50\\x5a\\xdf\\x1d\\x90\\xfa\\x4f\\x81\\x8f\\x51\\x32\\xc3\\xa5\\x62\\x0a\\xd4\\x3d\\x50\\xba\\x71\\x4c\\x7e\\xf4\\x81\\x12\\x64\\x72\\xb2\\x11\\x53\\x9d\\x92\\x85\\xc1\\x9e\\xb5\\xb4\\x99\\x04\\xaf\\x44\\x2d\\xd4\\xc4\\xee\\x8a\\x3c\\x81\\xbf\\x88\\x3d\\x24\\x2c\\xde\\x76\\x14\\x99\\xf0\\x21\\x58\\x7e\\x32\\x20\\x25\\x69\\xb1\\x67\\x57\\xed\\x3d\\x9c\\xd4\\x5f\\x41\\x06\\xb9\\x2c\\xf3\\xa0\\x8d\\xcd\\xf8\\xce\\xf3\\x54\\x9a\\x44\\x07\\x69\\x85\\x45\\x51\\x4e\\x44\\xd9\\x66\\x47\\xb4\\x1f\\x08\\xee\\xb4\\xfe\\x97\\x51\\xeb\\xb8\\x7e\\x25\\x48\\x87\\x13\\x5b\\x7b\\xef\\xfa\\x27\\x5a\\xb3\\x4d\\x0a\\x13\\x3d\\x4a\\x60\\x2f\\xc1\\x04\\xc9\\x97\\x44\\x69\\x57\\x1f\\x6d\\xc1\\xf7\\x39\\xbd\\x63\\xeb\\x72\\x6f\\x9f\\xb1\\xb5\\xef\\xe2\\x91\\xad\\x1b\\xba\\x58\\xc2\\xda\\xb0\\xc7\\x49\\x2f\\xd1\\x58\\xc1\\x3c\\x62\\x2b\\x11\\x9d\\xf0\\x1e\\x6d\\xae\\xe6\\x4a\\xda\\x4f\\x45\\x36\\xd3\\x10\\x1c\\xea\\x3c\\xe9\\x01\\xfe\\x4e\\x2b\\x3b\\x3c\\xa3\\x25\\xd2\\x68\\x7b\\xa1\\x61\\x9a\\x2c\\xf6\\xec\\x39\\x51\\x0f\\xc9\\xe7\\x40\\xda\\xc5\\x27\\x39\\x7c\\x9e\\xa3\\xb1\\x46\\xae\\xe7\\x98\\x28\\x22\\x64\\x2f\\x38\\x74\\x7a\\xd2\\x03\\xfc\\x37\\xc0\\x78\\x03\\x5d\\x60\\x9d\\xc4\\xdf\\xfa\\xee\\xea\\x1f\\xe2\\x4c\\xd1\\x65\\x7b\\x7c\\x54\\x90\\x7c\\x3c\\x64\\xf8\\x91\\x5d\\x97\\x2f\\xcc\\xc6\\x16\\x6b\\xaa\\x95\\x0c\\x62\\xfc\\xd2\\x17\\x52\\xbf\\x89\\x93\\xe1\\x17\\x56\\xb9\\x7c\\x53\\x0b\\x9b\\x98\\xaf\\x01\\xa4\\xfe\\x23\\x7f\\x38\\x8c\\x94\\x37\\x13\\xb4\\xdb\\xd3\\x39\\xde\\x34\\xa2\\xac\\x61\\x8f\\x21\\x4c\\x98\\x0a\\xb4\\x53\\x7a\\x58\\x00\\xd3\\x59\\x13\\x79\\x47\\x61\\x3e\\x13\\xda\\xb2\\x4b\\xf0\\xf8\\xd8\\x68\\x2b\\x6f\\x54\\x38\\x36\\xc3\\xb6\\x0f\\x54\\xe9\\x91\\x92\\x24\\x30\\x67\\x6c\\xc1\\x94\\x40\\xe4\\x58\\x70\\x0c\\x02\\xbd\\x61\\x62\\xa8\\xfa\\xc8\\x21\\xcc\\xad\\x1b\\xf0\\xbe\\x50\\x93\\x65\\xf9\\x67\\xd8\\xe8\\x18\\x7f\\x0a\\xbf\\xa5\\xfe\\x22\\x2d\\x7f\\x70\\x89\\x7e\\xd8\\x55\\xd0\\x96\\xf6\\xd0\\x2c\\x58\\xd4\\xdb\\x64\\x73\\x79\\x68\\x84\\xb4\\x7b\\xd4\\x5c\\xc2\\x28\\x11\\x1c\\x9a\\xf9\\x1e\\x4e\\x36\\xff\\xf3\\x29\\x97\\x31\\x47\\x7b\\x98\\xf8\\xca\\x78\\x7f\\x01\\xb2\\xfc\\x2d\\xcc\\x2b\\xca\\xec\\xc5\\x62\\xec\\xe8\\x37\\xeb\\x64\\x6d\\x85\\x8f\\x69\\x7b\\xf1\\x74\\x0f\\xec\\xf3\\x17\\xed\\xeb\\x8e\\xc5\\xe3\\x30\\x0e\\x6b\\xe0\\x0b\\xee\\x4e\\xf8\\x1a\\x0e\\xd4\\xe8\\xc8\\x9c\\x83\\x0c\\xff\\x42\\xac\\xc9\\x1f\\xcb\\xff\\x6f\\x21\\x30\\xf1\\x62\\x78\\x0a\\x4c\\x19\\x9e\\x46\\xf1\\xf5\\x20\\x16\\xd3\\xcc\\xe4\\x41\\xd9\\xbe\\x65\\xc0\\x14\\x5d\\xf9\\x0d\\xeb\\x25\\x5a\\x80\\xd9\\xe2\\x9c\\x12\\x6c\\xa3\\x9b\\x74\\xd8\\x06\\xb4\\x69\\x8f\\x3a\\x8d\\xbd\\xfc\\xe4\\x66\\x23\\x3f\\x6d\\x3d\\x34\\xbe\\x42\\x0b\\x4c\\x42\\x3b\\x74\\x40\\x17\\xf4\\x40\\x2f\\xf4\\x41\\x3f\\x0c\\xc3\\x04\\x8e\\x73\\x97\\xfc\\xed\\xa5\\x64\\xed\\xe2\\xad\\xbe\\xdb\\x2f\\x3e\\x52\\x7a\\x64\\xf7\\xee\\x8e\\xbf\\x6d\\x0f\\x1e\\xd8\\x9f\\x94\\xa4\\x6d\\xbf\\xf8\\xec\\x3b\\xa0\\x79\\xfb\\xe5\\xb3\\x2f\\x03\\xee\\xc2\\x1e\\x1c\\xc2\\xb9\\xea\\x05\\x45\\x0c\\xbf\\x05\\x35\\x30\\x7c\\x1c\\x71\\x0a\\x98\\x6e\\x41\\x73\\xc7\\xf3\\x2d\\x68\\xfb\\xf1\\xc7\\xa4\\xbf\\xa7\\xcd\\xfb\\xaa\\xc8\\x4b\\x80\\xfe\\x12\\x3d\\x3b\\x64\\xe8\\x7c\\xae\\xa3\\x9e\\xec\\xf7\\xe6\\x27\\x04\\xf5\\x1e\\x9c\\x37\\x31\\xb2\\xcc\\xd8\\x95\\xd7\\xf6\\xee\\x4e\\xeb\\xae\\x78\\x59\\x6f\\xcd\\x31\\x75\\x7a\\x7b\\xf5\\x83\\xb5\\xd5\\x26\\x83\\xdb\\x3e\\xb9\\x1e\\x16\\x5e\\x71\\x85\\x2b\\x93\\x39\\xd4\\x7e\\xc1\\xb5\\x06\\xf6\\xa7\\x5f\\xfc\\x62\\x98\\x1a\\x24\\xfc\\xc0\\x61\\xba\\x3c\\x04\\x23\\xc3\\xe9\\x71\\xd8\\xf8\\xcc\\x10\\x39\\x32\\x6c\\x0e\\x60\\x9c\\x69\\xdf\\x10\\x5b\\xc2\\xba\\xe0\\xb2\\x1e\\xec\\xe6\\x4b\\xb7\\xe4\\xa6\\xb0\\x08\\xd5\\x86\\xc7\\xa4\\x1d\\x49\\xed\\x85\\xa6\\x3f\\x33\\x9d\\xe5\\x95\\x6c\\x86\\xfa\\xa5\\x73\\xcf\\x80\\x4f\\xdd\\x7c\\x79\\x4a\\x85\\x11\\xa2\\xd5\\x91\\x21\\x4d\\xdd\\xef\\x12\\x39\\xd3\\x2e\\x2c\\x30\\xf9\\x9e\\xef\\xeb\\x60\\x19\\x7c\\xb9\\x07\\x39\\xfd\\x1f\\x23\\x23\\xc1\\x00\\x0a\\x40\\xf5\\xbf\\xe0\\x7b\\xcb\\xe5\\x27\\xad\\x88\\x72\\x91\\x1b\\x5c\\x98\\xc9\\x0f\\x43\\xb2\\x4b\\xf5\\x87\\xcf\\x2e\\xb8\\x40\\xfc\\x65\\xd4\\x3e\\x84\\xb2\\xcb\\xdc\\x53\\x77\\x74\\xb3\\x30\\x9e\\x56\\x94\\x64\\x1c\\x16\\x9b\\xd5\\x40\\xf0\\x59\\xe1\\xe1\\x1f\\xa0\\x4d\\x41\\x93\\xaf\\x9f\\x75\\xa1\\x29\\x96\\x10\\xd6\\x6f\\x5f\\x60\\x67\\x5d\\x77\\xa0\\x8e\\x92\\x4c\\x42\\x9b\\x74\\x39\\xd3\\x66\\x25\\x14\\xc3\\x93\\xc7\\x3c\\xf3\\xcd\\xb5\\xf2\\xbd\\x25\\x8b\\x69\\x9d\\x67\\x10\\x7e\\x35\\x51\\xc1\\x27\\xfb\\x07\\xee\\xd8\\x37\\x1a\\xc4\\x12\\xdf\\xe3\\x33\\x4b\\xee\\x40\\x70\\xbd\\x74\\xf5\\x8e\\x7d\\xfb\\x9a\\x49\\xdb\\x24\\x9e\\x7a\\xf8\\x3d\\x83\\x05\\x82\\xfb\\x99\\xc9\\x8b\\x2e\\x60\\x07\\x5d\\x55\\x0e\\xea\\x59\\x2b\\x19\\xea\\xf0\\x7d\\xc4\\x96\\xa7\\x49\\xb2\\x92\\x60\\x7f\\x86\\xda\\xcb\\x1e\\xeb\\x0e\\xe6\\xd9\\xcc\\xf8\\xe9\\xdf\\xa2\\xa0\\x2e\\x91\\xdf\\x0c\\x6f\\x45\\x78\\x1a\\x9f\\x59\\xf0\\x75\\x10\\xf2\\x8b\\x0e\\xa0\\xb9\\x41\\x9b\\x7e\\xa5\\x19\\xb5\\xe7\\x47\\x53\\x0f\\xb5\\x1c\\xfb\\x88\\x82\\x51\\x1b\\x49\\xe2\\x6e\\x25\\xc1\\x6f\\xfb\\x09\\xba\\x85\\x1d\\x9a\\x6f\\x5d\\x83\\x08\\x3b\\x9f\\x2c\\x38\\x30\\x7b\\xbb\\xbe\\xb0\\xea\\x46\\xe4\\x03\\x75\\x3a\\xc2\\xfd\\x37\\x24\\xa9\\x82\\xa7\\xc9\\xbe\\x52\\x5b\\x5e\\x7f\\x38\\x84\\xc7\\x8f\\x43\\xf0\\x33\\x5d\\x52\\x5e\\x66\\x01\\x93\\x3c\\x6f\\x21\\x37\\x59\\x78\\x74\\x29\\x27\\x40\\xeb\\x61\\x79\\x18\\xf4\\xac\\x37\\x22\\xe1\\xc4\\x17\\x9e\\xd8\\x8b\\xe7\\x5d\\xbd\\x73\\x5d\\x0b\\x6f\\xa4\\x22\\xfc\\xb4\\xeb\\x72\\x15\\xb4\\xd8\\xab\\x6e\\x9e\\xa2\\xda\\x9a\\xb6\\xb1\\x29\\x2f\\x51\\xed\\x3b\\xba\\xc9\\x89\\x9a\\xea\\x23\\x6c\\x21\\x6b\\x1e\\xe7\\xab\\x6b\\xc6\\x7f\\xf9\\xb2\\xfa\\xdd\\x3f\\x4b\\xa2\\xfd\\xbe\\x92\\x22\\x43\\xa2\\x97\\x7f\\x6d\\x98\\xf3\\xe5\\x4a\\x34\\xe6\\xa6\\xbe\\x51\\xa9\\xd2\\x53\\xe8\\x49\\x7d\\xe5\\x3b\\x9d\\x9f\\x7c\\xa0\\xb8\\x56\\xfb\\xeb\\x8f\\xf3\\x72\\xff\\xe7\\x89\\xcd\\x37\\x6a\\x50\\xcd\\x8c\\x1b\\x4f\\x37\\xe3\\xd5\\xb8\\x05\\x8c\\xdf\\x8f\\xb4\\x55\\xca\\x49\\x5a\\xe6\\x73\\xc8\\x70\\x4f\\xe6\\x7d\\x14\\x3c\\xf1\\x02\\xa2\\xea\\xab\\x86\\xe1\\xa7\\xdd\\x90\\xeb\\xa1\\xa5\\xe1\\x96\\x1b\\x65\\xaa\\x12\\x3c\\x62\\xe7\\x67\\x3f\\xa1\\xda\\xfa\\x95\\x9c\\x85\\x6a\\x3f\\x9c\\xa8\\xa9\\x31\\x3c\\xbd\\xc7\\xed\\x33\\x88\\xf1\\x6f\\x76\\xf9\\xb2\\xfa\\xa3\\xbf\\x31\\x9e\\x66\\x13\\x86\\x44\\x6f\\xfc\\x4e\\x49\\xfc\\xc9\\x32\\xf5\\xb5\\xa9\\x93\\x56\\x41\\xdb\\x10\\x9a\\xae\\xdc\\xf4\\x2c\\x34\\x0d\\xbf\\xe6\\xc6\\x3d\\xef\\x2e\\x4d\\x24\\x9f\\x08\\x26\\x43\\x6b\\x7e\\x52\\xdf\\xed\\x76\\x8c\\xef\\xd7\\x4c\\x9a\\x9f\\x76\\x8d\\xf6\\x5d\\x8b\\x6d\\x73\\xf3\\x14\\xd5\\xd6\\x80\\x5b\\x99\\xf2\\x12\\xd5\\xfe\\x5c\\x37\\xe9\\x6a\\xaa\\xd5\\xaa\\x25\\xe8\\xad\\xb7\\xef\\x03\\x31\\x1e\\x94\\x9b\\x2f\\xab\\x7f\\xf1\\x27\\x86\\x6f\\x5d\\xd9\\x2c\\x90\\x8d\\xaf\\x7f\\x85\\x94\\xc4\\x23\\x2d\\xd1\\xa8\\xa5\\xf1\\xea\\x44\\x29\\x54\\x8d\\x92\\x8d\\xe1\\x65\\xa2\\x1e\\x66\\x2f\\x84\\x27\\xdd\\x7c\\xb9\\x5d\\x2a\\x12\\x45\\xa8\\xf7\\x0b\\x4d\\x7a\\xe2\\x69\\xf7\\x22\\xd9\\x35\\x82\\x8f\\xb7\\xcf\\x88\\x37\\xe5\\x59\\x5d\\x6c\\xc8\\xae\\x48\\xd3\\xf3\\x07\\xae\\x19\\xdc\\xf3\\xee\\xb6\\x2e\\x5a\\x1c\\xed\\xde\\xad\\x9f\\x56\\xb8\\x06\\x8c\\xca\\x32\\x69\\x7e\\xda\\x75\\xd8\\x6e\\x1d\\x72\\xbc\\x6e\\xa8\\x5a\\x3b\\x96\\xf5\\xc1\\xac\\x06\\x7b\\xa9\\x57\\x32\\x86\\xe5\\x73\\x1e\\xd5\\x80\\xe6\\x73\\x9d\\xaa\\xc1\\xce\\x63\\x1e\\xd6\\x54\\x1b\\x8a\\x39\\xb3\\x63\\x5e\\x30\\x48\\xbb\\x66\\xd9\\x3d\\xef\\x9e\\xa9\\x4d\\xa8\\xc1\\x2c\\x3a\\xc8\\x39\\xcd\\xad\\x0c\\xe7\\x44\\xff\\x7c\\x76\\xac\\x2a\\x70\\x4f\\xbb\\x97\\x95\\x52\\x04\\x23\\xac\\x31\\xa6\\xce\\xda\\xcc\\x9c\\x32\\xb5\\x14\\x9c\\xc6\\x77\\xcf\\xe5\\x4a\\x00\\x7e\\x3b\\x20\\x98\\xdb\\x44\\xc4\\x0c\\xfc\\xd2\\x2b\\x07\\x1b\\xa0\\xcd\\xa6\\xc7\\x81\\x28\\x4a\\xaa\\x1f\\x9b\\xe0\\xe6\\x59\\xc7\\x29\\x70\\x70\\x95\\xe3\\x8c\\x75\\x1f\\x58\\xf7\\xe6\\xe9\\xfc\\x5b\\x67\\x2d\\x05\\x89\\xdb\\x02\\xf0\\xeb\\x5d\\xc1\\xe9\\x63\\xec\\x70\\xed\\x84\\x3a\\xb7\\x02\\xe5\\x03\\x3d\\xb4\\x7e\\x1e\\xe0\\xb6\\x58\\xfc\\x54\\xa5\\x26\\xd2\\xb6\\x6d\\x4a\\x6c\\x35\\x80\\xe9\\x17\\x0a\\xaa\\xb9\\x91\\x61\\x7d\\x49\\x19\\xcc\\x5e\\x01\\xc4\\xc9\\xec\\x16\\x56\\xef\\xbb\\x65\\xc0\\xe0\\x17\\xdc\\xa1\\xb5\\x92\\x9d\\xcc\\x2c\\xbb\\x85\\x44\\x1d\\xa7\\xd0\\xd2\\x2a\\xc6\\x49\\x2b\\x0b\\x7b\\x2c\\xc1\\xca\\x1c\\x97\\x26\\xa6\\x64\\x20\\xdc\\xab\\x2f\\x46\\x2e\\xc6\\x23\\x77\\x46\\xc3\\x7f\\x56\\x2b\\xe0\\xea\\xa1\\xfe\\x7a\\x72\\x08\\x1b\\x48\\x06\\x11\\xf7\\x57\\x4e\\x80\\xec\\x3b\\x6e\\x00\\x05\\xef\\x9a\\xfd\\x05\\xc7\\xcf\\xff\\xcf\\xf9\\x3d\\x77\\xfc\\xff\\xfd\\x5d\\xfc\\xef\\x70\\xf4\\xd2\\xa7\\x3b\\x56\\x35\\xbd\\x3c\\xf4\\xf1\\xff\\x7d\\xd7\\x4f\\x3e\\xd9\\x6d\\x3c\\x03\\x8c\\x6b\\x59\\x36\\x1d\\x58\\x29\\xd7\\xaa\\xa4\\x19\\x45\\x25\\xee\\x72\\xfe\\x34\\x29\\x1d\\xc9\\x88\\x6a\\xcd\\xd2\\x21\\x70\\x00\\xf6\\xe8\\x55\\x68\\x01\\xdc\\xd4\\x6b\\x58\\x00\\xf0\\xe4\\xdc\\xfa\\x2f\\x9d\\x0f\\xe3\\x55\\x72\\xd1\\xb7\\x30\\xba\\xf6\\x97\\x22\\x28\\x46\\x29\\x72\\x3e\\x47\\x0c\\xef\\x64\\xac\\x87\\x05\\xf6\\x31\\x8c\\xfd\\x89\\x0d\\xc7\\x37\\x25\\x7a\\xfd\\xa1\\x98\\xb4\\x00\\x8c\\xa7\\xd7\\xe8\\xfa\\x55\\x08\\xf1\\xbc\\x4a\\x99\\xc5\\xdb\\xb7\\xa9\\x98\\xdd\\xf6\\xd5\\xf2\\x1b\\x98\\x2c\\x19\\x9e\\x23\\x2c\\xab\\x26\\x15\\xc9\\x8a\\xf0\\xf6\\x8d\\x53\\xe7\\x02\\x74\\xa5\\x7c\\xe2\\xdc\\x01\\x6d\\x1f\\x79\\x4a\\x6f\\xc1\\x8b\\x5f\\xbf\\x77\\xae\\xe0\\x1c\\x0b\\xd5\\xe3\\xfb\\x96\\x60\\x6a\\xc9\\xc9\\x8e\\x00\\xd3\\x41\\xc5\\x70\\x01\\x58\\xea\\x7a\\xd1\\xe7\\xfa\\xd9\\x71\\x8e\\xe1\\xfe\\xbd\\x43\\xa7\\x98\\xcd\\x88\\x8d\\xcf\\xd2\\x05\\x68\\x7f\\x98\\xa0\\x1e\\x7a\\x23\\x1f\\x2d\\x61\\xcb\\x77\\xbc\\x21\\x59\\x51\\x0a\\xf3\\x6d\\xa8\\x1f\\x40\\xb0\\xb4\\x57\\xa8\\x81\\x2e\\x6b\\x0d\\xf0\\xd8\\x28\\x95\\x66\\xb0\\x3d\\xce\\x5c\\xdb\\x1f\\x6b\\x9f\\xe7\\xb6\\xf8\\x09\\x98\\x8c\\xb5\\x6b\\xf1\\x0a\\xed\\x30\\x1a\\x0b\\xd7\\xba\\x67\\x83\\xf1\\x2f\\xc1\\xa0\\x2e\\x7a\\x46\\x66\\xc7\\xc2\\x34\\x8f\\xa9\\xec\\xdc\\xc7\\x41\\x01\\x89\\x5f\\x05\\x61\\x22\\xe3\\x31\\x78\\x4e\\xad\\xb9\\xc8\\xdd\\xa6\\x82\\x4d\\xff\\x64\\x90\\x0b\\x1c\\x7a\\x83\\xfe\\xb4\\x14\\xae\\x9f\\xe8\\x26\\x00\\xe1\\x36\\x82\\xf5\\x38\\xbe\\xf6\\x55\\x9d\\x26\\xa8\\x46\\x91\\x30\\x29\\x7c\\x0d\\x2c\\x20\\x21\\x98\\x70\\x6c\\xed\\x78\\x43\\xb9\\x8f\\x6d\\x60\\x33\\xce\\xb4\\x76\\x85\\x49\\x01\\x9e\\x62\\xe2\\x2e\\xe8\\x8f\\x20\\xbd\\x67\\x34\\x88\\x78\\x34\\xc2\\x49\\xbb\\xe4\\xa8\\xa5\\xc8\\x5f\\x74\\xe4\\x46\\xc3\\xee\\xc9\\x29\\x2c\\x9b\\xb4\\x4d\\x81\\x0f\\x45\\xde\\xff\\x29\\x58\\x0f\\x90\\xc3\\x75\\x69\\xfd\\x2d\\xc3\\xb4\\x46\\xd9\\x7e\\xd4\\x7e\\x2e\\x8f\\xf6\\x38\\x5a\\x72\\x20\\xe5\\x46\\x09\\x87\\x35\\x8f\\x52\\xb1\\x92\\x4c\\x4a\\xef\\xbd\\x99\\x19\\xf0\\x62\\x02\\x17\\x5f\\x39\\xf8\\x90\\x94\\x91\\x95\\xc1\\xf8\\xd6\\x47\\x57\\x3d\\x62\\xdc\\x6b\\xcf\\x17\\x02\\x84\\xac\\x33\\xde\\x89\\xb7\\x58\\x9d\\x94\\x92\\x7a\\xf6\\xd5\\x53\\xe4\\xfb\\x44\\x1c\\xfb\\xf5\\x39\\x49\\x9f\\x4c\\x97\\xf5\\x1f\\x86\\x47\\x05\\xc1\\x0e\\x54\\x9b\\xb2\\xcf\\xe7\\x23\\xc6\\xae\\x54\\x7c\\xee\\x19\\x08\\x6a\\x93\\x85\\xb5\\xb4\\xac\\x55\\xa9\\x6a\\x61\\x6b\\x21\\x46\\xd3\\x48\\xee\\xd1\\x28\\xb9\\x5e\\xce\\x7f\\x97\\x6f\\x4a\\x18\\x04\\x68\\x65\\x2f\\xc7\\x7a\\xa3\\xbf\\x4c\\x49\\x15\\x61\\xe8\\x46\\x46\\xc8\\x91\\x07\\xe1\\x5f\\x82\\xe5\\x33\\xa5\\xe4\\xd5\\x51\\xe6\\x79\\xbb\\xe1\\x89\\x54\\x71\\x8a\\x21\\x96\\x7c\\x7d\\x8d\\xc7\\xbe\\xfe\\x90\\x51\\x51\\x02\\x20\\xf6\\x39\\xa2\\x07\\x80\\x47\\xa6\\x9e\\xbb\\x10\\xab\\x58\\x94\\x62\\xce\\xc3\\xbf\\xb4\\x6e\\x09\\x1a\\x4a\\x4b\\x41\\xd8\\xc6\\xd9\\xe1\\x76\\x58\\x43\\x26\\xb8\\x96\\x53\\x88\\xb6\\xab\\x60\\x17\\x63\\x6b\\x3d\\xc5\\xd1\\x60\\xfc\\x81\\xa1\\x10\\xaa\\x03\\xc6\\xbc\\x9e\\x02\\x5a\\x54\\x5e\\x56\\x31\\x36\\x84\\xa4\\xbf\\x6e\\xb0\\xc4\\xad\\xdc\\x44\\xd4\\x52\\x98\\x83\\x24\\x1b\\xe8\\x73\\x2f\\xe7\\x4d\\x4a\\xc7\\x7d\\x77\\x46\\x63\\x9e\\xa7\\x93\\xaa\\x90\\xd7\\x49\\xcf\\x03\\x24\\x99\\x81\\x9f\\xa0\\xcc\\xad\\xf5\\xfa\\xa3\\xbe\\xec\\x69\\x47\\xf4\\x8b\\x74\\x00\\x6e\\xba\\x77\\x8f\\xfc\\x90\\xce\\xcc\\xbe\\x78\\xcf\\x48\\x18\\xde\\x6f\\x89\\x30\\x80\\x22\\xd7\\x45\\x1e\\x40\\xba\\xcd\\x2f\\xe8\\x8d\\x5f\\xd1\\xab\\xec\\xb3\\xac\\x00\\x6a\\x5c\\x0f\\x16\\xa4\\xce\\xbd\\x19\\xb1\\x0d\\xdc\\xe4\\x51\\x49\\x58\\x36\\x7c\\xbb\\xe7\\x5c\\xcd\\x10\\xc2\\x38\\x03\\x2e\\xa0\\xf9\\x7c\\x0d\\x80\\x5b\\x3a\\x06\\x18\\xf6\\x4d\\x59\\x0c\\x73\\x38\\x03\\x3e\\x53\\xae\\x0d\\xae\\x55\\x97\\x87\\x70\\x10\\x47\\x00\\x1c\\x5b\\x39\\xc0\\x30\\x81\\xd3\\xeb\\x67\\xd4\\x0a\\x00\\x55\\x3f\\x11\\xbc\\x4f\\xcd\\xd0\\xfa\\xa5\\x29\\x80\\xb9\\x3d\\xce\\x17\\x6c\\x8a\\x45\\x4e\\x13\\x4c\\xf8\\xd5\\x12\\xdb\\xdc\\xda\\x7f\\x3a\\xd8\\x2b\\x06\\xfc\\xf6\\xab\\x7f\\xa1\\x12\\x58\\x00\\x75\\x1a\\x7c\\xbd\\x3e\\x4a\\x04\\xb7\\x64\\x0c\\x9c\\x3a\\x10\\x18\\x48\\xbb\\x5e\\x1b\\x01\\x00\\xe9\\x55\\x91\\x1c\\x5f\\x87\\x6f\\x44\\x54\\x1b\\x55\\x41\\x74\\xad\\xb1\\xb4\\x32\\xa1\\x7a\\x85\\x66\\x87\\x7c\\x0e\\x07\\x51\\x01\\xa0\\x65\\xca\\x1a\\xb1\\xa3\\x04\\xa4\\xca\\x7d\\x4e\\x4d\\x1c\\xd9\\x94\\x06\\x9b\\xa2\\x36\\x06\\x4f\\x52\\x88\\xa3\\x2f\\x23\\x09\\xb6\\xb1\\x5b\\x10\\xa6\\x29\\xbb\\x10\\x0b\\x2d\\xea\\xd3\\x61\\xd4\\xa3\\x67\\x6e\\x9a\\x98\\x4a\\xf0\\x7d\\x6c\\xa9\\x97\\x2f\\x34\\x1d\\x54\\x02\\x64\\xfb\\x5b\\x95\\x5c\\x2a\\x5b\\xd3\\x54\\x0d\\x50\\x42\\x4d\\xab\\x13\\xd1\\xae\\x96\\x9d\\x4d\\xca\\x41\\x0a\\x46\\x1a\\x51\\x3c\\xa1\\xbd\\x41\\xdc\\x6c\\x69\\xec\\x12\\x53\\x3b\\x52\\x99\\x0f\\x8b\\x9f\\xed\\x33\\x43\\xcf\\x36\\x77\\x9a\\xb2\\xf5\\x21\\x6d\\xd5\\x19\\xd5\\x6c\\xf0\\x71\\xd8\\xaf\\x9a\\xa8\\xec\\x82\\xac\\x28\\xaf\\xc1\\xda\\x92\\xbc\\xf7\\xc4\\x19\\xdb\\xf8\\xff\\x74\\x04\\x45\\x49\\x2e\\xcf\\x32\\xae\\xd6\\xa2\\xec\\x1f\\xd0\\x8c\\xf6\\x5c\\x07\\x50\\x75\\x0d\\xae\\x4e\\xca\\x52\\x7b\\xd4\\xba\\xf5\\x88\\x51\\x64\\x6a\\xa1\\x57\\x37\\x41\\xcf\\x04\\x41\\xaf\\x5e\\x82\\x5e\\xa1\\x8d\\x1a\\x25\\x55\\x1b\\x25\\xb6\\xd4\\xe3\\xb6\\xb2\\x2e\\xb3\\xbe\\x41\\x80\\x0a\\xe8\\xd9\\x27\\xe8\\x19\\x24\\x9c\\xa6\\x03\\x34\\x71\\x0c\\x7b\\xff\\xd9\\x1c\\x4d\\x9a\\x54\\xda\\xeb\\x76\\xa0\\x74\\x32\\x0e\\xd8\\x76\\x14\\xc5\\xc3\\x37\\x65\\x44\\x05\\xab\\x23\\xe3\\xb6\\x7d\\x44\\xcd\\x9b\\x64\\xad\\xc4\\xb3\\xf0\\xcf\\x85\\x62\\x5d\\x06\\x0b\\xcb\\x00\\xca\\xa2\\x0a\\x53\\xc7\\x74\\x8b\\xa7\\x5d\\x89\\xa3\\xb5\\xc4\\xc5\\x1c\\x51\\xc9\\x4c\\x4f\\x9c\\xb7\\xf2\\x13\\x45\\x09\\x27\\x9c\\x5d\\x43\\x5b\\x28\\xad\\x48\\x9f\\x0c\\x5f\\x88\\x48\\xba\\xd6\\xfc\\x97\\x9f\\x39\\xc0\\xe4\\x52\\xde\\x3c\\x8e\\x96\\x69\\x8e\\x5b\\xad\\x53\\xe9\\x8f\\x2e\\x75\\x53\\x8b\\xda\\xbb\\x2b\\x87\\xf2\\x0a\\xad\\xd2\\x3b\\x78\\xd8\\x06\\xcb\\x14\\xa7\\xfd\\x84\\xde\\xed\\xe1\\x69\\x42\\x31\\x68\\x9d\\x60\\xeb\\x37\\x2b\\xd4\\x6e\\x13\\x46\\x7a\\xf5\\xdd\\x4a\\xe1\\xc9\\xa2\\xba\\x9b\\x36\\xfa\\x7a\\x85\\xbf\\x04\\xff\\x74\\x02\\xe0\\xed\\x08\\x8a\\xc7\\xa3\\x62\\x66\\xa6\\x51\\xa3\\x26\\x79\\xbd\\x42\\xe5\\xd3\\x8a\\x45\\xa6\\xb4\\x05\\xd4\\xc3\\x66\\xb4\\x94\\xae\\x91\\x0a\\xb3\\xf5\\x75\\x6d\\x5a\\xae\\xa1\\x75\\xd8\\x00\\x69\\xa7\\x29\\xef\\x89\\xcb\\x1f\\xe4\\x69\\xbf\\x79\\xc4\\x3b\\xb8\\x88\\x72\\xd0\\xcb\\x93\\x57\\x51\\xb4\\x45\\xc4\\xa9\\x7c\\x96\\x17\\x28\\x29\\xb8\\x41\\x6b\\xc7\\xb2\\x5b\\xa5\\xb9\\xf6\\xef\\x3b\\xb1\\xb6\\xdc\\x93\\x93\\xa9\\x57\\xf9\\x54\\x63\\x2b\\x7e\\xa7\\x33\\x2e\\x40\\xef\\x11\\xc3\\x23\\x12\\xfb\\x36\\x0b\\xca\\x00\\x12\\xfc\\x40\\xcc\\x5e\\xbe\\x36\\xb7\\x4b\\xe1\\x9f\\xb7\\xcf\\x39\\xad\\xaf\\xa8\\x60\\x9f\\x75\\xf8\\x65\\x45\\x11\\x96\\x9b\\xd2\\x38\\xc1\\xa6\\xbf\\x57\\x2f\\x34\\xca\\xce\\x0d\\xb2\\x3c\\x51\\xcb\\x3f\\x2e\\x7f\\xfa\\x38\\x82\\x09\\x70\\x22\\x34\\x72\\x77\\x3e\\xbd\\xc2\\x93\\x39\\x3c\\x31\\xf5\\x2e\\xf1\\x54\\xfc\\x60\\xae\\x38\\x9d\\xda\\x3e\\xec\\x13\\x39\\xfd\\xa1\\x03\\x26\\xbb\\xa4\\x63\\xea\\x44\\x2f\\x34\\x30\\xa3\\x35\\x47\\xcb\\xd8\\xeb\\x16\\xc8\\x6a\\x46\\x2b\\xd3\\x9e\\x5a\\x9f\\x66\\x39\\x63\\x85\\x68\\xa7\\xbd\\xa3\\x27\\x73\\x78\\x62\\x06\\xad\\x45\\xa1\\xf5\\x99\\xd1\\x8c\\xc6\\x3f\\xf5\\x96\\xfe\\x56\\xbf\\x8b\\x61\\x96\\x70\\x07\\x9e\\x37\\xdc\\x5a\\xed\\xf1\\xf4\\xfe\\x38\\x42\\x39\\x10\\x7a\\x0d\\x4e\\x50\\x4e\\xd1\\xb5\\xf5\\x8b\\x0e\\x02\\xc4\\x94\\xa2\\x75\\x27\\xc9\\xeb\\x46\\x8b\\x07\\xd8\\xe4\\x96\\x88\\x07\\x58\\x57\\xdb\\x36\\x24\\x85\\x01\\x8a\\x11\\x26\\x72\\x4f\\x16\\x8e\\x06\\x70\\x91\\x53\\xf1\\x15\\x66\\xcd\\xc0\\x5c\\xb7\\xe1\\x91\\x57\\x37\\x34\\xac\\x84\\xa6\\x81\\x96\\xa5\\xdb\\xd5\\xf5\\x91\\x13\\xdf\\x6b\\x43\\x7e\\x59\\x5a\\xff\\x72\\x2e\\xca\\xee\\x5a\\x6b\\xaa\\xb9\\xdd\\x2e\\x51\\xfa\\x9a\\xb5\\xc6\\x52\\x6e\\xef\\xf1\\xf6\\xab\\x80\\xf7\\x65\\x6d\\x80\\x52\\xd2\\xc6\\x01\\x6d\\x65\\x26\\xc5\\x85\\x32\\xcc\\x05\\x9c\\x65\\xca\\x61\\xdf\\xa1\\xd9\\xcf\\x32\\x1a\\x9a\\x51\\x1e\\x35\\x3e\\x08\\x57\\x8e\\x44\\xa4\\xd5\\x85\\xdb\\xd5\\xf7\\x9e\\x13\\x7f\\x6a\\x63\\xee\\x2d\\xad\\x6f\\x99\\x2b\\xd5\\xdd\\xdb\\xb9\\xed\\xef\\xd3\\x5d\\xb6\\x5a\\xa8\\x37\\xb7\\xc6\\xb2\\x5e\\xde\\x72\\x09\\x4f\\x61\\xcf\\x5f\\xda\\x4d\\xa1\\x52\\xe0\\x51\\xd3\\x19\\x83\\x59\\xcf\\xe4\\xcd\\x5b\\x3d\\x99\\xb5\\xbe\\x95\\xc1\\x1e\\x81\\xbe\\x81\\x96\\xa5\\xdb\\x54\\xf4\\xdf\\xfd\\xaa\\x59\\x1b\\x3d\\x2a\\xad\\x7f\\x3f\\x0d\\xd5\\xdd\\xdb\\x38\\x54\\x83\\xd4\\xcf\\x71\\x04\\x21\\x5f\\xbb\\xc9\\x69\\x8d\\xa5\\xdc\\xde\\x8a\\xa6\\x60\\xa2\\xb0\\x77\\xf0\\x31\\x44\\x4c\\x7e\\x4a\\x25\\x29\\x9a\\xe0\\x20\\x3c\\xf3\\xad\\x0c\\x53\\x2a\\x4c\\xd2\\x34\\x32\\x78\\x06\\x10\\x67\\xf9\\x29\\xee\\xc7\\x86\\x06\\xf0\\x57\\x8c\\xaa\\x5c\\xee\\x03\\xeb\\x44\\xc4\\xfa\\x35\\x99\\x29\\xeb\\x76\\x35\\x75\\xe5\\xe9\\x37\\x06\\x9c\\x22\\x13\\xdb\\xa0\\xa9\\xb3\\x56\\xf8\\xa8\\xa8\\xd8\\x6d\\xb7\\x75\\xcc\\x6e\\x68\\x19\\xb5\\x58\\xd0\\xb1\\x55\\x90\\xd9\\x45\\x5a\\xa9\\xbc\\xda\\xa0\\x89\\x5a\\x39\\x45\\x7e\\xdd\\xeb\\x32\\x3a\\xc9\\xd0\\x0d\\xf0\\xd2\\x41\\xd5\\x55\\xcc\\x55\\x76\\x40\\x4f\\x58\\x58\\xdb\\x6a\\xbe\\x53\\x77\\x61\\x24\\x28\\x5a\\xb0\\xe2\\x4d\\x94\\x60\\xd4\\x15\\x45\\x8f\\xbe\\xb5\\x46\\x9d\\x3a\\x59\\x39\\x58\\x53\\xbb\\xb2\\xce\\x73\\xbe\\x47\\x4c\\x0d\\x9e\\x12\\x06\\xbd\\xc6\\xec\\xa4\\x62\\x63\\xe7\\xbf\\x07\\x5d\\xd2\\x42\\xa3\\xab\\x75\\xa0\\xfc\\xde\\x5f\\x18\\x77\\xe8\\xd3\\x7c\\x02\\x73\\x37\\xda\\x3a\\x95\\x14\\xe0\\xa9\\x7c\\x19\\x6e\\xaa\\xa1\\xc8\\x97\\xae\\xdf\\x34\\xad\\xcf\\x77\\x3e\\xbd\\x11\\x66\\x23\\xc6\\x1b\\x93\\x89\\x71\\xc2\\x18\\x12\\x59\\x96\\xe4\\x31\\xdd\\xa3\\x2f\\xa3\\x5f\\x20\\x21\\x35\\xd5\\xf0\\x34\\xa6\\xe6\\xc1\\xd3\\x3f\\x5b\\xe1\\xde\\xd3\\x91\\x5e\\x23\\x4d\\x49\\xca\\x81\\x46\\xd6\\xc2\\xb8\\xd7\\xdb\\xfc\\xde\\x7d\\xfa\\xf1\\xd7\\xb2\\xaa\\xaf\\x64\\x9b\\x12\\x68\\x18\\x02\\x99\\x7b\\x36\\x67\\xb9\\x47\\x9f\\x34\\x45\\x1c\\x7a\\x02\\x66\\xda\\x67\\xe4\\x05\\xbf\\xa0\\xee\\x9f\\x8d\\x85\\xbf\\xc6\\xf0\\xa2\\x28\\x46\\x19\\xec\\x27\\x71\\x14\\x06\\xbe\\xe7\\x3a\\xd4\\xb6\\x18\\x79\\x16\\x42\\x84\\x46\\xe7\\x59\\x3e\\x25\\x8d\\xd1\\xed\\xef\\xbd\\x57\\xc5\\x43\\x1d\\x94\\x8b\\x3e\\x91\\x90\\xc7\\x1b\\x80\\x22\\x34\\x52\\x66\\x71\\x42\\x85\\xf5\\x38\\xec\\xab\\xcd\\xea\\xec\\x74\\xbd\\x8a\\x02\\xcf\\xc5\\x68\\xd0\\xaf\\x65\\x79\\xf9\\x93\\x6f\\x14\\xb3\\x5e\\xaa\\xa8\\x43\\xa0\\x8b\\x23\\x41\\x49\\x2f\\x23\\x36\\xac\\x00\\xef\\x4b\\xd0\\x19\\x2b\\x2a\\x8e\\xec\\x58\\x82\\xcb\\xc0\\x46\\xfd\\x76\\x96\\xd6\\xda\\xeb\\x3b\\xe3\\xed\\x97\\xcc\\xef\\x05\\xef\\x63\\x6e\\x9d\\x1d\\x5a\\x0b\\x32\\x3a\\x5e\\x04\\xa9\\x95\\x46\\xda\\xf7\\x00\\xf7\\x23\\x1d\\x4c\\x70\\x10\\x19\\x44\\x75\\xcf\\x98\\x6b\\x2b\\x6c\\xc7\\x5a\\x7b\\x05\\xf3\\x4d\\x7e\\xf3\\xaa\\x7b\\x9a\\x9d\\x97\\x76\\x32\\x1b\\x9a\\x79\\x17\\x12\\x21\\xa4\\xc7\\xf6\\x43\\x64\\x4a\\x9f\\xe5\\x83\\x3d\\xe4\\x9d\\x6d\\x34\\xe9\\xd6\\x97\\xcd\\x8d\\xa6\\xae\\x4a\\x9a\\xb8\\xf9\\x97\\x7e\\x22\\x7f\\xea\\x48\\xbf\\x9e\\x65\\x49\\x42\\xf1\\x93\\x01\\x46\\x0a\\x1c\\xa8\\xe0\\xb7\\x5d\\xe8\\x2b\\x8b\\xda\\x06\\xfd\\x66\\xf3\\xa4\\x42\\x18\\x39\\x3b\\xb1\\x50\\x00\\xe4\\x27\\x48\\xf4\\x40\\xf0\\x55\\xd6\\x1c\\x7a\\x44\\x80\\xab\\xde\\x23\\x19\\x8b\\xc9\\xa5\\x5d\\x70\\x0e\\xf6\\xbc\\x08\\x42\\xed\\xf2\\xde\\x75\\x7a\\x2e\\x9a\\x04\\xaa\\x26\\x8a\\x09\\x83\\x04\\x5e\\xcb\\xfa\\x3f\\x60\\x85\\xbd\\xbb\\x07\\x3e\\xcd\\x1c\\xdf\\x8d\\x75\\xc3\\x7a\\x1a\\x73\\xb0\\x0d\\x93\\xbf\\xce\\x02\\xd6\\x1a\\x4d\\xb1\\xc6\\xd0\\x29\\xe0\\xec\\x10\\x9d\\xf2\\x09\\xd2\\x66\\x64\\xf7\\xe6\\x38\\x7a\\x24\\xc1\\x68\\x42\\x3a\\xd4\\xef\\x37\\x42\\xa5\\x29\\x91\\x06\\x44\\xf2\\xd5\\x07\\x3e\\xdc\\x2a\\x59\\x22\\x27\\x80\\x0f\\x94\\x11\\x33\\xd6\\x4e\\x5f\\x11\\x3f\\x32\\x63\\xf5\\xbc\\xdb\\x2c\\xe6\\x4d\\xc5\\x6c\\x91\\x8d\\x44\\xb8\\x5b\\x75\\x0d\\x78\\x45\\x42\\x9d\\xb5\\x61\\x57\\x7c\\xcf\\xc0\\x9f\\x54\\x32\\x78\\x8d\\x78\\x79\\xce\\x2d\\xa9\\xa7\\x44\\xaa\\x23\\x19\\xe9\\x31\\x21\\xa4\\x2b\\x47\\x43\\xd2\\x60\\x54\\x54\\x70\\xd4\\x7c\\xa4\\xc7\\xe2\\xc8\\xae\\x4b\\x8c\\x87\\xfd\\x56\\x96\\xd7\\x1e\\xe7\\x43\\xd2\\xf1\\x68\\x1e\\x07\\x0a\\xfa\\x08\\xd0\\x2b\\x87\\x74\\xb6\\x0a\\x5d\\x07\\xd2\\x91\\x1a\\xe3\\x23\\xa0\\xd3\\xb1\\xd8\\x95\\x3b\\x70\\xad\\xab\\xbe\\xce\\x47\\x7d\\x9e\\x65\\x04\\x14\\xbb\\x80\\xaa\\xdc\\xb3\\x21\\x48\\xb9\\x18\\xb5\\x89\\xb3\\xe9\\xaa\\xa6\\x98\\xdc\\x07\\x05\\x59\\x68\\x24\\xee\\x90\\x7e\\xdf\\xca\\x8b\\xc7\\xd5\\xa2\\x16\\x49\\xd4\\x0e\\x2c\\x3d\\x21\\xc9\\x25\\x22\\x48\\x57\\xe7\\x71\\x10\\xce\\x51\\x88\\xb9\\x5e\\x96\\x03\\x00\\x2d\\xea\\x0e\\x0f\\xa0\\x3c\\x4a\\xd9\\x2e\\xdf\\x25\\x91\\x85\\xb5\\x86\\x1d\\x2e\\x17\\x89\\xc6\\x7b\\x80\\xe8\\xff\\x33\\xac\\xff\\xdb\\xca\\x03\\xc1\\xc3\\x90\\x18\\xaf\\x22\\x29\\x00\\x9a\\x18\\xc0\\x4c\\xb2\\x9f\\xb0\\x89\\x5c\\x6c\\x31\\xc9\\x20\\xd7\\x07\\x0f\\x3d\\x84\\x02\\xf7\\x03\\x1a\\x68\\x93\\xc3\\x1c\\xe6\\x29\\xee\\xe1\\xbd\\x03\\x88\\x67\\xa7\\x10\\x3c\\xfe\\x2c\\x66\\xe0\\x51\\x2e\\x23\\xd3\\x85\\xd4\\x55\\xb3\\x37\\x80\\x93\\x7e\\xfe\\x9a\\xaf\\xbd\\xae\\x08\\xfb\\x98\\xc4\\x27\\x54\\x44\\x40\\xc2\\xb2\\x9f\\x26\\x60\\x24\\xc2\\x60\\x05\\x50\\x6c\\x53\\xf6\\x2a\\xd6\\x9a\\x2c\\x58\\xda\\x2a\\xb2\\xa1\\x73\\x7f\\x16\\xa4\\xa0\\xf2\\x0b\\xe6\\x3d\\x46\\x6d\\xaa\\x47\\x74\\x07\\x52\\x31\\xca\\xe9\\xbf\\x1f\\x45\\x6e\\x65\\x5d\\x57\\x35\\x63\\x7a\\x5f\\xb5\\x57\\x91\\xe2\\x62\\x47\\x00\\x71\\xbc\\xf6\\x89\\xaa\\xf6\\x72\\x38\\xf5\\x70\\x84\\xbe\\xf4\\x32\\xc5\\x7c\\x45\\x0a\\x4d\\x6e\\x63\\xef\\x80\\x83\\x2b\\xc7\\x95\\x43\\xbd\\x8e\\x6e\\x17\\x68\\x56\\x67\\x09\\x8d\\x69\\xe4\\x39\\x60\\x4f\\xbb\\x3e\\x4f\\x5e\\xcf\\xf9\\x25\\xf0\\xab\\x5b\\x98\\x62\\x72\\x84\\x5b\\xf8\\x1b\\x6c\\xae\\x6d\\x8a\\xe7\\xdb\\x6a\\x51\\x20\\xff\\x26\\xe4\\x54\\x30\\x24\\x9a\\x64\\x1a\\x36\\x94\\xaf\\xa7\\xb1\\x01\\x93\\xa8\\xcb\\xec\\x55\\xdf\\x00\\xea\\xb7\\x76\\x27\\xc9\\xd4\\x16\\x36\\xef\\x46\\xcc\\x32\\x41\\x02\\x12\\x48\\x90\\x6d\\xac\\xc7\\xb6\\x57\\xe6\\x9a\\xc3\\xe8\\x73\\xb4\\xcc\\x26\\xda\\xe0\\x79\\x2e\\x28\\xb7\\x5d\\x5e\\xf3\\x7c\\x0e\\x23\\xc0\\xbf\\xc3\\xea\\x90\\xa5\\x29\\x27\\x1a\\xe1\\x19\\x83\\x7a\\x85\\xac\\x5b\\x15\\xf2\\x0a\\xb7\\x92\\x09\\xe1\\x9a\\x19\\x2c\\xfc\\xd3\\x0a\\xc9\\x20\\xf1\\x1e\\xb5\\x64\\x64\\xa1\\x87\\x24\\xe8\\x9a\\xfd\\xd8\\x7c\\x6c\\x8a\\xc1\\x20\\x9b\\x66\\x8c\\xdd\\x9c\\x23\\x19\\x47\\x1d\\x1e\\xa2\\x97\\x91\\x51\\x5a\\x34\\x90\\x9d\\x82\\xf4\\x2c\\xe6\\x50\\x68\\xb5\\x31\\x69\\xd2\\x9d\\x3c\\x4c\\xcb\\xa9\\x5e\\x1c\\x25\\x63\\x79\\x97\\x36\\x9a\\x30\\xd9\\x41\\x20\\xc4\\xc9\\x86\\xe8\\xd3\\xd0\\x38\\x08\\xa8\\xab\\x7c\\x95\\x44\\x64\\xd0\\x13\\xfa\\x0a\\x88\\x9d\\x86\\x94\\x06\\x19\\xa4\\x32\\xc2\\xbf\\xfa\\x7e\\x34\\xf5\\x0a\\xe6\\x0a\\x9f\\x3e\\x48\\x8d\\x07\\x05\\x93\\x78\\xa6\\x19\\x76\\x06\\xf9\\x15\\x36\\x75\\x01\\x5b\\x77\\xd3\\x40\\x71\\x3f\\xbe\\x6a\\xe7\\x82\\xb1\\xb3\\x21\\x2c\\x2b\\xec\\xaa\\xd5\\x86\\x1a\\x66\\xcb\\x47\\x75\\x82\\xd4\\xf9\\xa9\\xc9\\x61\\x9b\\x4f\\x60\\xe8\\xca\\x4c\\xa7\\x25\\xfb\\xe7\\x50\\x84\\x1d\\x56\\xcf\\x27\\xfb\\xe5\\x9c\\xd9\\x8b\\x81\\xec\\x6e\\x51\\x00\\x82\\x43\\x56\\x04\\x19\\x68\\x5f\\x62\\x1c\\xda\\x4f\\x2b\\xd8\\xf9\\x03\\xdf\\x00\\x5d\\xed\\x57\\x94\\xf7\\x8b\\x45\\x88\\x33\\x0f\\x9e\\xea\\x62\\x9c\\xa6\\x68\\x58\\xc6\\xc7\\xb8\\x4b\\x41\\xc5\\x67\\x61\\x2c\\x64\\xa5\\x28\\x29\\xb3\\xd8\\x35\\x9a\\x8b\\xd0\\xc2\\x35\\xf6\\xfa\\x0e\\xed\\x5c\\xe5\\xa2\\x1d\\x0e\\x2e\\x28\\x12\\x64\\x4e\\x42\\x1d\\x02\\x44\\xe6\\x3b\\xd6\\x6b\\xad\\x4e\\x77\\x4e\\x71\\x40\\x0c\\x03\\x94\\x8c\\xab\\xa0\\x26\\x51\\xe1\\xa1\\xfd\\x4a\\xc0\\x73\\xc0\\x4a\\xb6\\xf4\\x72\\x29\\x42\\x0b\\x36\\x20\\x52\\x3f\\xdd\\xce\\xe9\\xa1\\x98\\xa3\\xd7\\xf3\\xb8\\x5d\\x0e\\x3b\\x4c\\x05\\xcc\\x8f\\x19\\x5f\\xfc\\xde\\xfd\\xe1\\xc7\\x5f\\x4b\\xa3\\x7b\\x28\\x22\\x9e\\xd7\\xeb\\x4e\\x97\\x8e\\xdf\\xde\\x45\\x7d\\x51\\xfd\\x1d\\x55\\x8c\\x48\\x75\\xf9\\x03\\x31\\xd4\\x18\\x77\\x53\\x35\\x2e\\xca\\x38\\x41\\x94\\x64\\x19\\x91\\xcc\\xe9\\x85\\x96\\xa5\\x46\\x26\\x56\\x21\\xa5\\x80\\x1a\\x9c\\xa5\\x9b\\x1d\\x11\\xb1\\x9f\\x9a\\x73\\xbb\\xde\\x28\\x9d\\xe3\\x06\\xe8\\xea\\xb5\\x39\\x6d\\x4f\\xc1\\x93\\x1e\\x6b\\x52\\x8a\\x4a\\xaf\\x2c\\xfb\\xbd\\xfb\\x79\\x9c\\x97\\x32\\x17\\xba\\xed\\xdc\\x2b\\xe9\\x15\\x11\\x96\\x2e\\xd7\\x33\\x91\\x6a\\x4c\\xb5\\x30\\xc4\\x74\\x60\\x00\\xb2\\xb0\\x7a\\x9f\\xc2\\x4a\\xe8\\x4e\\x68\\x9a\\x90\\x23\\xf7\\xe3\\x59\\x1b\\x2a\\xb5\\xfb\\xa1\\xc4\\x16\\x13\\x65\\xa6\\x6f\\xa7\\x23\\x18\\xde\\x87\\x43\\x41\\xbc\\x59\\xc7\\x7c\\x69\\x14\\x99\\xa1\\x3e\\xe9\\x3c\\x8b\\x70\\x7c\\x43\\x51\\x5a\\xa2\\x7b\\x8f\\x51\\xe8\\xd2\\xf1\\x9c\\x81\\x67\\xbc\\xce\\x81\\x6a\\xd1\\xec\\x0c\\xe4\\x24\\x1f\\xb1\\x05\\x33\\xc9\\x9b\\x03\\xf0\\xa0\\x6b\\x08\\xb8\\xf1\\x65\\x68\\x9a\\x00\\x81\\x06\\x2e\\x2d\\x8e\\x74\\x4f\\x2e\\x26\\x65\\x24\\xae\\x6d\\x64\\x02\\x06\\xf9\\xc1\\x73\\xed\\x5a\\x5a\\x8e\\xeb\\x8d\\x8d\\x8f\\xa0\\x76\\xbb\\x62\\x5e\\xce\\x3d\\x87\\xe0\\xf1\\x8c\\xbb\\x5c\\x2f\\x5a\\x58\\xbe\\x6b\\x60\\xba\\xc4\\xf7\\x9b\\xed\\x10\\x8c\\xb2\\xd1\\x02\\x48\\x6f\\x20\\x0f\\x3d\\xc4\\x36\\x76\\x06\\xe4\\x3a\\x4d\\x56\\xc5\\x31\\x1e\\x8d\\x21\\xf4\\xe3\\x7a\\xdd\\x40\\xe2\\xed\\x17\\x25\\x73\\x9b\\x88\\x19\\xee\\xd7\\x31\\x8b\\xbb\\x08\\x91\\x43\\x91\\xce\\x66\\x22\\x43\\x40\\x2c\\x61\\x70\\xc9\\x0a\\xec\\x26\\x97\\x00\\x8f\\xa7\\xf2\\xcf\\x51\\x48\\x30\\xea\\xc6\\x59\\x1a\\xe3\\x72\\x7c\\x94\\xfa\\xfd\\xc0\\x2b\\x6e\\x59\\x8c\\x76\\x35\\x08\\x57\\x41\\xea\\xde\\x8d\\x03\\x0d\\x63\\xbc\\x1a\\xed\\xe7\\xb7\\x39\\x2d\\xf4\\xd6\\x3f\\x30\\x0e\\xa0\\x27\\xdf\\x66\\x60\\x76\\xce\\x9a\\x4c\\xaf\\xb8\\xca\\x9e\\x4d\\xe5\\x49\\xd6\\xd0\\x36\\x20\\x2f\\x23\\x68\\xc0\\xf4\\xac\\xf9\\x4a\\x36\\x79\\xfa\\x82\\x5b\\x27\\x6c\\x58\\x08\\xa4\\xc3\\xed\\x08\\x3f\\x34\\x2e\\x7a\\x52\\xef\\xc0\\x8d\\x64\\x3e\\xc9\\x48\\xed\\x34\\x2e\\xca\\xf0\\xe0\\x4a\\x31\\x93\\x5d\\xfc\\x30\\x56\\xe8\\x54\\x5e\\xc6\\xb7\\x18\\x04\\xd3\\x14\\x1a\\xad\\xb7\\xf9\\x41\\x48\\x98\\xca\\x63\\x8b\\x15\\x95\\xeb\\x64\\xaa\\x6f\\x1b\\x51\\xca\\x61\\x12\\x8f\\x5e\\x41\\x7c\\x5e\\xcf\\x09\\x1f\\xa7\\x65\\xa9\\xe5\\x95\\x54\\x07\\x81\\x85\\x6b\\x3d\\xe6\\xf9\\x83\\x2e\\xa7\\xf5\\x71\\x6b\\x64\\xb1\\xd1\\x93\\xde\\xa3\\x2a\\xff\\x66\\x2c\\xee\\x87\\xa3\\x7e\\xfb\\x28\\x27\\x02\\xfd\\xa0\\x06\\x3e\\x70\\x3f\\x89\\x6f\\x41\\x0d\\x93\\xf1\\x3a\\x82\\xd6\\x91\\x9c\\xbc\\xa3\\xcc\\x63\\x01\\x92\\x49\\x04\\x25\\x51\\x2b\\xb5\\xc1\\xde\\x30\\x39\\xaa\\x39\\xdc\\xfc\\x0b\\x4a\\x40\\xfe\\x53\\x4e\\xa1\\x87\\x1a\\xc4\\x99\\xe8\\x75\\xc2\\xda\\xc9\\x29\\xbd\\x96\\x79\\x80\\xce\\xfa\\x53\\x0a\\x98\\x3a\\xaa\\x79\\x95\\x54\\xbd\\x14\\xe3\\xae\\xd4\\xb5\\xdd\\xdd\\x89\\xd5\\x1a\\xed\\x34\\xde\\x34\\x11\\x8d\\x4b\\x9c\\x71\\x78\\x18\\x33\\x1a\\xcc\\x27\\x40\\xac\\xf4\\xe4\\x6b\\x60\\xa1\\xc7\\x1d\\xdc\\x76\\x10\\xd9\\x64\\xb8\\x94\\xa2\\x34\\x81\\x9b\\x59\\x5e\\x25\\x2e\\xb3\\x3d\\x6d\\xf5\\x64\\xf2\\x1b\\x61\\xa6\\x7d\\xc0\\xeb\\xc9\\xe6\\x69\\xb0\\xeb\\x7b\\x87\\xf1\\xb7\\xaf\\xd5\\xb2\\x6b\\x0a\\x10\\x70\\x01\\x7d\\x93\\xe2\\x25\\x5c\\xf2\\x25\\x1f\\x2a\\xf6\\x24\\x72\\x6d\\x20\\xd1\\x5b\\x36\\x8e\\xa3\\x0e\\xbf\\x49\\xb8\\xea\\xc3\\xa6\\xc0\\x7e\\xf9\\x44\\x1b\\x1d\\xb4\\xe0\\x68\\x41\\x23\\x2b\\xb6\\x88\\x56\\x57\\xb8\\x5b\\x9a\\xb1\\x0c\\xc4\\xb5\\xf7\\x8c\\x14\\x3f\\xa5\\x0a\\x27\\xe4\\x40\\x7c\\x7f\\xb5\\xa2\\x8b\\xeb\\xe2\\xdd\\xa3\\x8a\\x18\\xf3\\x04\\xd4\\x10\\xdb\\x9e\\x21\\xcb\\x2c\\x40\\xf2\\x69\\xd9\\x0e\\xbe\\x9d\\x5b\\x0e\\xa0\\x09\\x17\\xb6\\x93\\xae\\x07\\x99\\xe4\\x99\\x0a\\xc9\\xf5\\x3e\\x70\\xed\\x50\\x0d\\x9a\\x0c\\x7d\\x98\\x5c\\x1d\\xba\\x8f\\x37\\x63\\xb8\\xcc\\x47\\x04\\x86\\x38\\x52\\x00\\x99\\xf2\\xc9\\xb0\\x02\\x16\\xdf\\x1c\\x2f\\xb1\\x5f\\x02\\x0d\\x5a\\xa7\\x23\\x20\\x69\\xbc\\xc1\\x2a\\x33\\xbb\\x0a\\x6e\\x90\\x56\\xb1\\x82\\x13\\x86\\xa3\\x22\\xf8\\x68\\x9e\\x60\\xca\\xab\\xd7\\x65\\xf1\\xcd\\xe9\\x49\\x91\\x67\\x29\\xbf\\xc3\\x91\\xc7\\xf0\\x9d\\xe9\\xc6\\xc0\\x4c\\x57\\x8f\\x8a\\xa8\\x0e\\x13\\x76\\x82\\x8a\\x19\\x21\\x33\\x47\\xe3\\x9b\\xc9\\x52\\xc8\\x2d\\x71\\xe0\\x74\\xba\\xa4\\xc6\\xb2\\x2f\\x78\\x83\\xde\\x89\\x20\\x04\\xfc\\x25\\x4e\\x56\\x4d\\x3e\\xb5\\xe2\\x03\\x7c\\x74\\x5f\\x47\\x43\\x25\\xed\\xc2\\x86\\x04\\x75\\x76\\xb9\\xdc\\x08\\xb7\\x18\\x57\\xe3\\x12\\x4e\\x7e\\x5e\\x07\\x54\\x8f\\xa0\\xaf\\x44\\xbb\\x6d\\x91\\x87\\xc1\\x64\\xfd\\xfe\\xf4\\x77\\xf9\\x78\\xb3\\x97\\x54\\xf1\\x92\\x3e\\x05\\xbc\\xa9\\x65\\x70\\x1b\\x98\\x62\\x0f\\x92\\x2f\\x4b\\xca\\x8c\\x4c\\xef\\x65\\x01\\x27\\x7a\\x3d\\x63\\x36\\xc7\\x0e\\xc6\\xb6\\xe1\\x18\\xfe\\xa4\\x64\\x23\\x8f\\xa0\\x9e\\xf3\\xee\\x8d\\x39\\xb9\\xec\\xde\\xa2\\x0c\\xb2\\x6e\\x98\\x29\\x1c\\x8f\\xbd\\x61\\x59\\xde\\xb3\\x6e\\x13\\x28\\x89\\x1d\\xf3\\xe3\\x3e\\xb8\\x05\\x30\\xd1\\xc6\\x88\\x9d\\xa2\\xd4\\xbf\\x7c\\xb4\\xb5\\x63\\x17\\xbd\\xe9\\xfc\\xce\\xae\\x12\\x58\\x51\\x46\\xbd\\xf6\\x58\\xd2\\xc3\\x7c\\x48\\x61\\x20\\x32\\xfb\\xd3\\x31\\xf6\\x3a\\xfe\\x84\\x5b\\x74\\x24\\x47\\x86\\x23\\x87\\x51\\xec\\x88\\x1d\\x81\\xcf\\x70\\x18\\xec\\xf2\\xb4\\xcc\\xb9\\xe7\\xdf\\x7f\\x2b\\x74\\x10\\xf8\\xb3\\xb1\\x13\\x64\\x08\\xd6\\x18\\x2f\\x3b\\x29\\x7c\\x9e\\x78\\x7e\\xdc\\x6d\\x31\\x7d\\xb4\\x7d\\x30\\x5b\\x43\\x62\\xa5\\x00\\xde\\xcb\\x58\\x8c\\xe8\\x61\\xfd\\x3d\\xa7\\xb4\\x3b\\x65\\x3d\\xfb\\x31\\x08\\xe0\\x1c\\x23\\x53\\xaa\\x15\\x4b\\xb5\\x2c\\x41\\x67\\xbd\\x62\\xad\\x8f\\x92\\x01\\x3e\\x7d\\xbc\\x59\\x0d\\xf6\\x56\\x70\\xdb\\xd7\\x0e\\x05\\x79\\xb9\\x61\\xee\\xc4\\xee\\x62\\xe6\\xd1\\x85\\x82\\x9e\\x93\\x29\\x54\\xe8\\x7c\\xa6\\x7a\\x00\\xa3\\x7b\\xb1\\x34\\x10\\xc5\\x85\\xc0\\x6f\\xc2\\x82\\xd9\\x20\\x82\\x7e\\x14\\x27\\xfb\\x50\\xd5\\x47\\x16\\x03\\x32\\x98\\x63\\x5a\\x0c\\x34\\x3e\\xb8\\xc7\\x03\\xe1\\x98\\x52\\x85\\xe1\\xf6\\xa0\\xf1\\x4e\\xd2\\x45\\x05\\x74\\xf1\\x5c\\xed\\xeb\\x3d\\x78\\xa8\\xd8\\x95\\x42\\x68\\xd9\\x07\\x72\\xa4\\xb7\\x24\\x40\\x97\\xe0\\x5f\\xca\\x7b\\xff\\xe5\\xee\\x87\\x29\\x1d\\x24\\xc4\\xdf\\xc0\\x1f\\x6c\\x1b\\x86\\xfa\\x5e\\x51\\xa9\\x78\\x84\\xfd\\x47\\x8e\\x1b\\xd8\\x2a\\x8d\\xf6\\xef\\xc9\\xd2\\xe1\\x45\\xc5\\x35\\x51\\xa8\\xab\\xa8\\x47\\x96\\x86\\xc5\\xab\\x32\\x58\\xce\\x13\\x97\\x19\\x6c\\xea\\x52\\x69\\x2f\\x6a\\x79\\xf3\\x78\\x52\\xe7\\x29\\xe3\\xe4\\x74\\x51\\x15\\x03\\xf3\\xd4\\x22\\x07\\x83\\x6a\\x87\\xda\\x88\\x61\\xed\\x23\\xb5\\x5e\\x3a\\x14\\x83\\x40\\x4d\\x55\\x96\\xa0\\x12\\xda\\x50\\xc9\\xec\\x19\\x16\\xc6\\x05\\x03\\x11\\xab\\x1e\\x99\\x40\\x32\\x4a\\x46\\x40\\x08\\x9a\\xc1\\x57\\xfd\\x17\\x66\\x2f\\xb1\\xc7\\xe2\\x35\\x8a\\x89\\xd1\\x97\\x27\\x23\\x8a\\xfb\\xce\\x1b\\x8f\\x9b\\x79\\xb4\\x8c\\x54\\x84\\xc5\\xfe\\x7a\\x10\\xba\\x49\\x83\\x5d\\xde\\x57\\x41\\x86\\xcf\\xd8\\xc7\\x45\\x0d\\x4f\\xff\\xed\\x22\\xec\\x25\\xa7\\x4c\\xa7\\xec\\x23\\x69\\xac\\x25\\x2b\\xbd\\xf2\\xc0\\x98\\x9b\\xc6\\xdd\\x28\\x99\\x60\\x84\\xa8\\x34\\x6e\\xfb\\x74\\x8c\\xd2\\xe0\\x04\\xcf\\x91\\x10\\x64\\x0e\\x46\\xc1\\xa0\\x83\\x34\\x26\\x82\\x57\\x77\\xa6\\x56\\x8a\\x69\\xc1\\x73\\x29\\x25\\x93\\x06\\xdc\\x75\\x11\\xc4\\xff\\x69\\x82\\xd0\\xa3\\x70\\x1c\\x42\\x59\\x3f\\xed\\x38\\x8e\\xb0\\x45\\xc5\\x9e\\x0e\\x8e\\xe5\\x98\\x87\\x03\\x3d\\x22\\x8a\\x53\\x7b\\x76\\x4a\\x08\\x9d\\x91\\xd9\\x2d\\x7a\\xcd\\x72\\xda\\x21\\xed\\x24\\x45\\x0e\\xfc\\x86\\x4c\\x2e\\x1d\\x21\\x92\\x2d\\xa6\\x78\\x3c\\x6e\\x1b\\xec\\x75\\x91\\x69\\x84\\x54\\x25\\xeb\\xf3\\xc2\\x0f\\x9b\\x02\\xe4\\x24\\x66\\x2f\\xc1\\x37\\x51\\x8e\\x05\\xda\\xda\\x3d\\xc5\\x01\\x0b\\x50\\x63\\xd2\\xc7\\xea\\x9f\\x6e\\x77\\xf2\\x31\\x50\\xfc\\x6d\\xfd\\x19\\x9a\\x23\\x01\\xe9\\x7b\\x52\\x9b\\x4c\\xfe\\x6f\\x1e\\xbe\\x92\\xfc\\x94\\xe1\\xc5\\xc0\\xd4\\x13\\x51\\x15\\x3f\\x64\\xde\\xbb\\x9f\\xbc\\x40\\xdb\\x61\\xe6\\x00\\xc3\\xe0\\x9e\\x8c\\xa2\\x7e\\x06\\xdf\\xc2\\x8b\\x2c\\x47\\x01\\x05\\xfd\\x9e\\x56\\x9d\\xc2\\x68\\x4f\\x1e\\x73\\xfa\\x26\\x83\\xe9\\xb4\\xed\\x23\\xcb\\x2a\\x72\\x48\\xa8\\xc0\\x52\\x91\\x5b\\x9b\\x9a\\x82\\x9e\\xdc\\x8a\\x37\\x37\\x46\\x10\\xd9\\x22\\xa2\\x9e\\x39\\x68\\x04\\x1a\\x75\\x4f\\x32\\x72\\x95\\xd4\\xdb\\x65\\xae\\x46\\x6c\\x54\\x82\\x27\\xd9\\x85\\xb7\\x80\\xe7\\x64\\xb9\\xbd\\xf8\\x42\\xa4\\x41\\xc2\\x16\\xdb\\x81\\x79\\x5f\\x67\\x22\\xd2\\x5f\\xf8\\x9a\\xad\\xe6\\xa6\\xd6\\xc8\\x33\\x1c\\x31\\x12\\x50\\xce\\xd1\\xd1\\x39\\xea\\x91\\x5c\\x18\\x28\\xbb\\xc3\\x91\\x4d\\xc0\\x96\\xb6\\x12\\x6d\\xbd\\x52\\xbf\\xc7\\xfd\\x01\\xb2\\x35\\xa8\\x3b\\x1c\\x15\\xf1\\x8e\\xb4\\xd5\\xa0\\xd4\\x1c\\xaf\\xd6\\x06\\x09\\x07\\xc0\\xda\\x8f\\x53\\x8e\\xa7\\x77\\x9e\\x07\\x70\\xe3\\xcd\\xdd\\xe1\\x72\\x6c\\x26\\xc7\\xfe\\xde\\x9e\\x34\\x59\\xc2\\x51\\x9f\\xd1\\x10\\xf3\\xcb\\xa1\\x03\\xe8\\xf1\\xea\\x4e\\xf5\\xf2\\x51\\x34\\x54\\x16\\xc2\\xe3\\x29\\xdf\\x7c\\x0b\\xe9\\xae\\x71\\x4e\\x98\\xcc\\x35\\x25\\x68\\x83\\xa5\\x52\\x19\\x53\\xec\\x5c\\x7d\\xe5\\x88\\x58\\x96\\xd3\\xb5\\xaa\\x0a\\x2b\\x59\\x04\\x18\\xc5\\xd3\\x93\\x38\\xcb\\x51\\x03\\x6e\\xe7\\x96\\x53\\x36\\x37\\x8b\\xa6\\x8b\\xeb\\x7c\\x65\\xec\\x45\\x1b\\x27\\x5b\\x05\\xa7\\x4f\\x87\\x01\\x65\\xf5\\xf6\\xfc\\xe3\\x4b\\xa8\\xff\\x7c\\xa7\\xef\\xcb\\xfb\\x6f\\x9f\\xdc\\xae\\x2e\\xd7\\xcb\\xb6\\x61\\x45\\x1a\\xfb\\x9e\\x63\\x23\\x73\\x2a\\xf8\\x8c\\x5f\\x7b\\x04\\x73\\x59\\xa7\\x07\\x8d\\x9f\\xe1\\x52\\x37\\x19\\x17\\x59\\x7a\\xf0\\x96\\xd3\\x38\\xb6\\x1a\\x1f\\xda\\x02\\xc8\\xa8\\xf1\\xd8\\xc6\\x3b\\x02\\xde\\x15\\xa5\\xf6\\xf5\\xb3\\x63\\x7c\\x63\\xd9\\xd6\\x1b\\x12\\x40\\xe4\\x02\\x86\\x18\\x48\\x84\\x9f\\xf0\\xf5\\x0b\\x3d\\xbe\\x99\\xcc\\x58\\x49\\x0d\\xf6\\x59\\x69\\x7b\\x09\\x9e\\xe7\\x2c\\x9d\\xf6\\xf6\\x4c\\x31\\x47\\x0c\\x1a\\xc6\\x62\\x27\\xac\\xc7\\x64\\xe7\\xc2\\x16\\x78\\xdd\\x07\\x39\\x89\\x3c\\x11\\x73\\x2a\\xf3\\xb4\\x97\\x91\\x34\\x44\\x30\\x3d\\x99\\x22\\xa2\\x2b\\xeb\\xa6\\xb4\\x90\\x97\\xcb\\x57\\x35\\x86\\x18\\x5c\\xef\\xd3\\x0d\\xcb\\x6d\\x28\\x61\\x23\\xc4\\x06\\x1c\\xd8\\x60\\x6a\\x6c\\x48\\xd8\\x2b\\x50\\x7b\\x6a\\xd0\\xeb\\x58\\x33\\x32\\x6e\\x20\\xe1\\x0f\\x9c\\x4e\\xbc\\x9a\\xaf\\xfc\\x79\\x0c\\x7a\\x4c\\x54\\x33\\xee\\x88\\xa6\\xb7\\x06\\xe4\\x77\\xc7\\xe0\\xf5\\xef\\x70\\xbf\\x50\\x0a\\x11\\xcd\\x9a\\xd1\\xda\\x33\\xef\\x1b\\x28\\xc9\\x88\\xcb\\x54\\x69\\x9a\\x7a\\x55\\xa1\\xae\\x5f\\x96\\x23\\x5e\\x27\\x0c\\xd7\\xc9\\x21\\x11\\x36\\xd7\\xc5\\x4d\\x2c\\x7f\\xbc\\xdf\\xac\\x66\\xad\\x60\\xf8\\x53\\x89\\x3e\\xdf\\x37\\x27\\x6d\\x77\\x73\\xe0\\x83\\x1f\\x2a\\xe5\\xee\\x24\\x5a\\xbd\\x9b\\xa8\\x20\\x76\\x84\\xf8\\x33\\xba\\x99\\x0d\\xbb\\x98\\x24\\x83\\x68\\x05\\x9b\\xf7\\x1c\\x89\\x0b\\x46\\x4f\\x67\\x5d\\x8c\\x6d\\x1b\\x3b\\x79\\xd6\\x27\\x0a\\x9f\\xd2\\xb6\\x26\\x68\\x5d\\x26\\xc6\\x57\\x56\\xa3\\xba\\xa6\\xd6\\x26\\x63\\x17\\xc0\\x40\\x47\\x89\\x72\\xce\\x1a\\x60\\xc7\\xb7\\xad\\x60\\xb8\\x47\\xd8\\x55\\xcc\\x3f\\x15\\xe4\\x5d\\x1e\\x32\\x48\\x50\\x3f\\x99\\x40\\x96\\xa4\\xcb\\x80\\x7a\\x7b\\x6c\\x44\\x32\\x79\\x91\\x6d\\xc7\\xe6\\x43\\x23\\x23\\xaf\\x78\\x62\\x20\\xed\\xa9\\xee\\x99\\x5f\\x89\\xa6\\x0c\\xb0\\xa6\\x9b\\x7f\\xac\\x60\\x88\\x9d\\x62\\x83\\x07\\xa2\\xc1\\x4f\\xa1\\x1e\\x8d\\x77\\xfb\\xca\\x0a\\x50\\xc0\\xe8\\x90\\x1c\\x24\\xcf\\x7f\\x59\\xea\\x5d\\xa5\\x90\\x05\\x0e\\xc5\\x18\\x72\\x9a\\x49\\xe1\\x02\\x7f\\xa8\\x91\\x20\\xd9\\xcd\\x1e\\x83\\xfc\\x65\\xd8\\x6d\\x2c\\x2f\\x36\\x85\\xd8\\x1e\\x18\\xd6\\xf0\\x2e\\xe3\\x42\\x0a\\x8c\\x51\\x55\\x97\\xf6\\xf1\\x4e\\x5a\\x7b\\x51\\x99\\x45\\xb3\\x64\\x86\\x3f\\x10\\xee\\x9d\\x40\\xc6\\x0e\\xf9\\x5f\\xfb\\xf3\\x11\\x05\\xb7\\x70\\xdd\\xbd\\x55\\xc2\\xac\\x63\\x85\\xac\\xd6\\xd0\\xde\\x0e\\xaf\\xe5\\x00\\x33\\x5f\\x59\\xf6\\x5c\\x3f\\xd9\\x7a\\xf5\\xf4\\xc9\\xd5\\x87\\xeb\\x0f\\xd5\\xbc\\x2c\\x4b\\x19\\x2b\\xe3\\xaf\\x83\\x25\\x10\\x0d\\x45\\x75\\x00\\x11\\x38\\xe2\\x88\\x97\\x67\\xda\\x6e\\x78\\xd9\\xd5\\x01\\xac\\xb8\\xab\\x4f\\x6f\\x50\\x68\\xe6\\xcb\\xa4\\x80\\x10\\x8b\\x35\\x80\\xe9\\x3d\\x99\\xc4\\xe6\\x21\\xd3\\x9e\\x72\\x0e\\x12\\x03\\xc8\\x63\\xa5\\xbe\\x8b\\xf3\\x26\\x61\\x7a\\xa2\\xa6\\xc7\\xad\\xb5\\x62\\xef\\x4c\\x0d\\x94\\x44\\xd5\\x5d\\xa7\\x97\\xc4\\xc7\\x75\\x4b\\x09\\xf6\\x5b\\xd1\\xe9\\xb8\\x40\\x73\\xba\\x42\\x0d\\x14\\x94\\x43\\x37\\x51\\x93\\x84\\xb5\\x97\\xaf\\x18\\x50\\x5c\\x33\\x8f\\xeb\\xa6\\xb3\\x4b\\x9c\\xbb\\x40\\xa8\\x00\\x0e\\x9a\\x3e\\xf0\\xb0\\x74\\xf8\\xec\\xd8\\xd8\\x07\\x01\\x87\\x21\\xfe\\x87\\x65\\xdb\\x8c\\xc6\\x61\\x39\\x3e\\xbb\\x52\\xd7\\xac\\xb4\\xa9\\xc7\\x79\\x8e\\x50\\xac\\x0d\\xb1\\x05\\xef\\x63\\xb2\\xb6\\x88\\xc2\\xe9\\x07\\x07\\xb0\\x57\\xa7\\x84\\x09\\xb0\\x6e\\xdc\\x86\\x76\\xb5\\x82\\xca\\xac\\x4a\\x60\\xc2\\x0d\\x6f\\x7a\\x53\\xc6\\x9b\\xdc\\x6d\\x8c\\x17\\xbe\\x2d\\x5c\\x31\\xf0\\xc9\\xa3\\xaf\\x25\\xcb\\x7c\\x9a\\x47\\x42\\x2d\\xb7\\x0b\\x9c\\xc3\\x20\\x76\\xc2\\x8b\\x72\\x3e\\x03\\x46\\xd8\\x79\\x41\\xf9\\x79\\x38\\x82\\x1d\\x04\\xcf\\x15\\xc0\\x46\\xe1\\xc7\\x85\\x18\\xa0\\xf0\\xdb\\x51\\x91\\xc6\\x01\\x91\\x52\\x8f\\x26\\x02\\x3a\\xd2\\x0c\\x33\\x1b\\xc6\\xe4\\x68\\x97\\x23\\xd0\\x70\\x89\\xc6\\xca\\x33\\x49\\x2f\\xc5\\x01\\x0c\\x23\\xd0\\xd1\\x5a\\x45\\xbc\\x41\\xaa\\x57\\xc2\\x99\\x11\\x00\\xb4\\x93\\x12\\xb8\\x83\\xf8\\x4d\\xbc\\x7b\\xd7\\x0b\\x82\\xc6\\x0a\\xab\\x69\\xcc\\xf6\\x2b\\x86\\x8a\\xe2\\x0c\\x0b\\xff\\x4c\\x4c\\xe7\\xb1\\x7e\\x97\\xe4\\x02\\x4c\\x17\\x08\\xaa\\xcb\\xc5\\x8e\\x6b\\x60\\xf9\\x6a\\x1c\\x60\\xda\\xf6\\x9e\\x46\\xc3\\x20\\x41\\x11\\x12\\x3a\\xd2\\xd7\\x6c\\xc4\\x62\\x64\\x32\\x5b\\x63\\xa5\\x45\\x57\\x1c\\xbe\\x53\\x28\\x19\\xa4\\xfb\\xd0\\x0d\\x75\\x0e\\xe5\\xc0\\x8b\\xaa\\xc1\\xe6\\x3a\\xf0\\x27\\x51\\x50\\x60\\x3e\\xc1\\xf8\\x34\\x6c\\xb6\\x74\\x2d\\xe8\\x02\\xce\\xe9\\x11\\x68\\x43\\xf9\\x8f\\xd3\\xbd\\xc1\\x60\\x5f\\x21\\xeb\\x4f\\x4f\\x0e\\xf6\\x52\\x33\\xa2\\x59\\xf2\\x45\\x28\\xd0\\x6b\\xce\\x28\\xd1\\x2a\\xd5\\x66\\x44\\xf3\\x7c\\x8a\\x10\\x83\\xe8\\x77\\x85\\x56\\x06\\xe9\\x9d\\x48\\x06\\x56\\xbb\\x91\\x7e\\x2f\\x4e\\x01\\xfd\\xf9\\x1a\\xb6\\x1a\\xb6\\x1e\\x76\\x39\\xcc\\xca\\x8f\\x07\\x35\\x7e\\xf4\\x49\\xed\\x69\\x17\\x8e\\xd1\\xa0\\xdd\\xcc\\xd2\\x81\\x51\\x35\\x5f\\xbb\\x06\\xe4\\x13\\x0e\\xa0\\xd8\\xda\\x44\\x0e\\x81\\x1d\\xe0\\xaa\\x25\\x0d\\xb8\\xce\\x5b\\xf3\\x05\\x00\\x96\\xa2\\x7a\\x71\\x65\\xbc\\x83\\x3c\\x25\\xde\\x0d\\x84\\x11\\x0b\\xbc\\x13\\x01\\xee\\x5a\\x01\\x58\\x56\\x0b\\xf5\\x49\\x84\\xe3\\x23\\xac\\x8a\\x91\\xda\\xd8\\xa5\\xc4\\xe1\\xf0\\xd1\\x07\\xf1\\x29\\x7a\\x78\\x24\\x71\\x79\\xb7\\x51\\xaf\\xdd\\xdb\\x5c\\xeb\\xe9\\xa4\\x16\\x05\\x09\\xeb\\x64\\x01\\x3c\\x42\\x11\\x3a\\xd8\\xe1\\x1e\\xf1\\x94\\x25\\xb1\\x3b\\x99\\x51\\x81\\xec\\x92\\xc3\\x81\\x91\\xd8\\xc9\\xab\\x7d\\x0f\\x19\\x0f\\xa7\\x2b\\x38\\xc1\\x4e\\x9b\\xb2\\x8b\\xfd\\x3e\\xbf\\xdb\\x77\\xed\\xa9\\xaa\\x05\\xac\\x28\\x68\\x4e\\x8f\\xeb\\x21\\xb1\\xb7\\xc4\\x51\\x1a\\xb5\\xd8\\xaf\\xf7\\xa4\\x8e\\xef\\x85\\xf6\\x60\\xd9\\xf3\\x5e\\x51\\x6e\\x15\\x11\\xc4\\x01\\xb2\\x0e\\x70\\x35\\xd6\\x8a\\xef\\xba\\x4f\\xa5\\xad\\x7c\\xc8\\xec\\x7d\\xf7\\x01\\xe4\\x4c\\x41\\xbe\\xcb\\xc0\\xec\\xe7\\x66\\xf2\\x39\\x34\\xeb\\x82\\xfb\\x33\\x6f\\xc3\\x59\\xed\\x10\\xef\\x24\\x46\\x97\\x2f\\x82\\x75\\xc1\\xa5\\x81\\xb1\\x72\\x94\\x8f\\x07\\x9c\\x76\\xa6\\x3d\\x21\\xf3\\x2a\\x20\\xcc\\x1d\\x58\\xc0\\x90\\x61\\x39\\x1a\\x05\\x0f\\x50\\x99\\x02\\x8f\\x21\\xdf\\x35\\x90\\x5e\\xb0\\xaa\\xaa\\x38\\xd9\\x77\\x1d\\x7b\\xfe\\x7d\\x89\\xd2\\xdf\\x09\\xa1\\x3e\\xfe\\x9e\\x77\\xac\\x08\\xcf\\xa2\\x33\\x6a\\x63\\x53\\x37\\x39\\x59\\xb6\\x4e\\xf9\\x50\\x92\\x32\\xb6\\x76\\xe4\\xc4\\x7c\\x01\\x20\\x30\\xf5\\xfd\\x59\\x07\\x88\\xa7\\x49\\x73\\xa7\\x3a\\x42\\xa3\\xdb\\x04\\x10\\x07\\x3d\\x97\\x41\\xd7\\xb2\\xed\\x66\\xb7\\x59\\x56\\xac\\xef\\xfe\\x6a\\xef\\x85\\xa2\\xc2\\x8e\\xca\\x92\\x51\\x26\\xb9\\x88\\x95\\x4c\\x45\\xa8\\x60\\x54\\xd1\\x4a\\xbf\\x6f\\xf6\\x47\\xbb\\x77\\xe3\\x10\\x7d\\xfa\\xbb\\x9c\\x37\\x35\\x15\\x24\\x47\\xa6\\xcb\\xa4\\x06\\x27\\xed\\x7b\\x56\\x0a\\x20\\xbb\\x7c\\xe0\\xaa\\x5a\\x02\\xa4\\x57\\x90\\xbb\\x1a\\x80\\xf3\\xec\\xe7\\x99\\xea\\xc2\\xc9\\xa5\\xfa\\x42\\x57\\x70\\xf2\\x89\\x82\\x7e\\x2e\\x8a\\x36\\x6f\\x7b\\x92\\xcf\\xc9\\xbc\\x08\\xed\\x3d\\xa3\\xac\\x4e\\xb7\\x0d\\xe1\\x56\\xbd\\xb4\\xab\\xfd\\x93\\xb2\\xbb\\xad\\x8c\\x09\\xc8\\x5c\\x43\\x41\\x1b\\xef\\x20\\x8c\\x89\\x2b\\xd5\\x02\\x4f\\xbb\\x7d\\xef\\xa9\\xa7\\x42\\xe8\\xf8\\x59\\x56\\xc3\\x1a\\x54\\xaf\\x3e\\x6f\\xbb\\x41\\x51\\x9d\\x20\\x2c\\xd5\\x73\\x2f\\x58\\xf9\\xd6\\xcd\\xaf\\x99\\xcf\\x83\\x2e\\x27\\x18\\x10\\xef\\x25\\x4b\\xcc\\xff\\x26\\x71\\x15\\xea\\x59\\x61\\x98\\x1b\\xd5\\x1d\\x89\\x96\\xf9\\xf9\\x5b\\xef\\x11\\x98\\x0c\\x5f\\x29\\x04\\x99\\x68\\x13\\x86\\x0c\\xa2\\x1c\\xd5\\x34\\x6b\\x3c\\x29\\xf3\\xb6\\x31\\x7b\\x8c\\x32\\x83\\xf8\\xbb\\x13\\xbc\\xe6\\xb5\\x87\\x37\\xe2\\x1e\\xf5\\xdb\\x9c\\xe6\\x0d\\x94\\x7d\\x90\\x83\\x07\\x9c\\x4d\\x15\\x5b\\x42\\x88\\xfa\\xad\\x75\\x5e\\x40\\x63\\xfd\\x92\\xd7\\xac\\xd7\\xe6\\x69\\x84\\x2c\\x77\\x41\\xcf\\x3f\\xa9\\x2e\\xd0\\xa2\\xa9\\xea\\x04\\x81\\x9a\\xac\\x0b\\x20\\x5e\\xf8\\xb3\\x16\\x9e\\x7c\\x37\\x68\\xe7\\xc3\\x41\\xb7\\xb1\\x41\\x1c\\x60\\xdb\\x4c\\x94\\xfa\\xa4\\xe6\\x35\\x38\\x47\\xc3\\x76\\xeb\\x83\\xea\\xb7\\x84\\x55\\x04\\x26\\x47\\x21\\xd7\\x78\\x1f\\xf9\\x33\\xae\\xea\\x42\\xb5\\x1b\\xfa\\xe9\\x06\\x61\\x72\\x48\\xc0\\x8c\\x73\\x5b\\x5e\\xee\\x27\\x0a\\x4b\\x4c\\x7e\\x5e\\x64\\xa2\\x9e\\xbe\\x09\\x43\\xc4\\xf9\\x3f\\xf2\\x36\\xef\\x27\\x4d\\xb0\\x96\\x76\\x8c\\x8c\\x80\\xf1\\x0c\\x1f\\x83\\xee\\xa4\\xfa\\x45\\xfe\\x3c\\x8a\\xe7\\xf3\\xa6\\x45\\xce\\x32\\xa2\\x01\\x11\\x64\\x98\\x53\\x5f\\x5d\\x75\\xa3\\xea\\x45\\xd8\\x26\\x1e\\x63\\x13\\x02\\x22\\x9e\\x8f\\x26\\xc6\\x45\\x3e\\xa3\\x6a\\x61\\x8f\\x9e\\x17\\xc0\\x13\\xa6\\xc3\\x41\\x3f\\x65\\xb9\\xbc\\x59\\xff\\x35\\xb4\\x15\\x84\\xdd\\x86\\x82\\xa0\\xd4\\xa5\\xe0\\x38\\xe7\\x1c\\x63\\xee\\xcd\\x55\\x25\\xa2\\x40\\x6d\\xb5\\x33\\x47\\x94\\xc0\\xc0\\xe9\\x76\\x22\\x7a\\xe3\\x32\\xe0\\x84\\x4d\\x7c\\x5c\\xf6\\xc2\\xf7\\x83\\x2b\\xac\\x4f\\x60\\xdc\\xee\\x68\\x30\\x62\\xf2\\x25\\xb3\\x67\\x03\\x4b\\xc1\\x9c\\x59\\x6a\\xd8\\x41\\xc0\\x63\\x72\\x9d\\x80\\x0c\\xad\\x46\\x8d\\xa5\\xd3\\xf6\\x6a\\xde\\xa9\\xf8\\xcd\\x28\\x9b\\x52\\x6c\\x4f\\x97\\x53\\xd3\\xb0\\x47\\x13\\x73\\xcc\\x95\\xc6\\xf9\\x19\\xa7\\x75\\x19\\xee\\x32\\x39\\x9e\\x19\\x71\\x3f\\x4d\\xfd\\x55\\x47\\x51\\x20\\x81\\x76\\xec\\x23\\xfd\\x24\\x60\\x07\\xce\\xab\\xfd\\xae\\x1b\\x33\\xee\\x87\\x97\\x0f\\xa7\\xac\\xea\\x54\\x89\\x1f\\x73\\x1e\\xfb\\x9d\\xcd\\x8b\\xf4\\x5e\\x61\\x5b\\x85\\xc9\\x8e\\x41\\xa2\\x24\\xa4\\xd3\\xbb\\x3b\\x39\\x22\\x73\\x72\\x63\\xbf\\xcb\\x28\\x95\\xe5\\x36\\x76\\x59\\x85\\xb4\\xb6\\xcd\\x4c\\xcf\\x3b\\x49\\xb3\\xd6\\x53\\x36\\xda\\x2e\\x0e\\xc0\\xf7\\x4c\\x99\\x11\\x26\\x25\\x8b\\xb4\\x48\\x42\\xdd\\xd2\\xf6\\x40\\xc5\\x7c\\x02\\x23\\x2e\\xbe\\x97\\xd2\\xd8\\x4e\\x96\\xc0\\x5e\\x89\\x46\\x75\\x3b\\xcb\\x1b\\xcc\\xdc\\xe4\\x53\\xa0\\x44\\x46\\xb2\\xb6\\x21\\x88\\xe2\\xca\\x7c\\xc6\\xb6\\xbc\\x46\\x7c\\x0f\\x11\\x9a\\x65\\x1a\\x6c\\xa9\\x21\\xf6\\x69\\x75\\x6b\\xee\\x06\\xe1\\x1d\\x2a\\x43\\xd7\\x1d\\x7d\\x20\\x62\\xe6\\x01\\xee\\x5c\\x69\\xc8\\x39\\x03\\xcc\\xe5\\x57\\x3b\\x81\\x13\\x9d\\x14\\x25\\xae\\x73\\xad\\xa6\\x4e\\xaf\\x61\\xa8\\x5c\\xd5\\xf7\\x0e\\x98\\x02\\x1f\\x1c\\xe4\\xcc\\x60\\x8a\\x9d\\x59\\xcc\\xe6\\x71\\x0c\\x8e\\x30\\x76\\x7a\\x18\\x23\\xad\\xb6\\xe9\\x4c\\xf8\\x94\\xb2\\x74\\x10\\x7c\\xd6\\x7d\\x08\\x73\\xe4\\xa4\\xc7\\xa2\\xca\\x30\\x21\\xd3\\x19\\x61\\x3e\\xe9\\x58\\xd8\\x33\\x20\\xed\\x34\\x20\\x8a\\xf4\\x88\\xb5\\x7c\\x06\\xc9\\x70\\x46\\xbc\\x18\\xfb\\x41\\xce\\xe8\\xc4\\x9c\\x84\\x34\\x1e\\xe3\\xa8\\x88\\x15\\x85\\x86\\x52\\xd9\\xa1\\x56\\xc0\\xf0\\x1d\\x53\\x2a\\x0a\\xe5\\xeb\\xf5\\x53\\x66\\xec\\x31\\xb3\\xde\\x97\\x91\\x91\\x62\\xbc\\xb1\\x45\\x7b\\x64\\x08\\x76\\x9e\\x10\\xc1\\xc0\\x10\\x4a\\xce\\xb3\\x9a\\xcb\\xa5\\xd9\\xed\\xac\\x88\\x74\\xb2\\xa2\\x67\\x28\\x7e\\x03\\xcb\\x99\\xda\\x1d\\xfe\\x36\\x67\\x82\\x26\\xab\\xf9\\x39\\x18\\x95\\x4e\\xb1\\x4c\\xab\\xb1\\xdd\\x02\\x84\\xbd\\xc3\\x93\\x4e\\x9d\\x8b\\x3f\\x9f\\xc5\\x76\\x28\\x4c\\x42\\xa2\\xe8\\x68\\x4f\\x9b\\x73\\x8f\\xc5\\x5a\\xc6\\x80\\xde\\x5b\\xa2\\x97\\xa8\\xb6\\x42\\x9f\\xe2\\xf7\\x05\\x8e\\xf1\\xc0\\xc9\\xd1\\x83\\x09\\x26\\x6c\\x8a\\xac\\xf7\\xf5\\xc4\\x85\\x38\\x07\\x30\\x2f\\x23\\xe8\\xdf\\x17\\xeb\\x23\\x55\\x21\\xe3\\x94\\x8a\\xf9\\xf4\\x85\\x8f\\x52\\x8f\\xbe\\x5f\\xbd\\xc3\\x20\\x8c\\xa3\\x0d\\x49\\x33\\x83\\x48\\xdf\\x20\\xd7\\xe9\\x37\\xe5\\xa5\\xc2\\xa5\\xd9\\x3d\\xef\\xa0\\x00\\x98\\x53\\xe2\\xf3\\xee\\x21\\x5e\\x09\\x07\\x88\\xcb\\xfe\\xb8\\x96\\x44\\x7c\\x1f\\x9a\\xab\\x1d\\x7b\\x26\\xc0\\x9d\\xd2\\x39\\x9f\\x99\\xf1\\x46\\xea\\xe5\\x0f\\x5c\\x0f\\x9d\\xd5\\x4a\\xc7\\x56\\xff\\xa0\\x63\\x8b\\x3c\\x33\\x90\\xa3\\x21\\x85\\x53\\x15\\x3c\\xab\\xb1\\xf1\\xf6\\xb2\\xa9\\x95\\xd4\\xbf\\x44\\x36\\xca\\x58\\x27\\x81\\x2c\\xdd\\xe0\\x23\\xee\\x2c\\x5b\\xf1\\xa0\\x4d\\xbc\\xb1\\xf1\\x5b\\xfb\\x93\\x72\\x87\\xb3\\xa4\\xdf\\x30\\x89\\x8f\\x09\\x14\\x82\\x05\\x48\\x93\\x50\\x12\\x03\\xdb\\x3d\\xa8\\xd8\\x36\\x00\\x6e\\x45\\xe7\\x22\\x07\\xf1\\x8b\\x94\\x41\\x0c\\x9d\\xa0\\x4c\\x23\\x94\\x81\\x63\\x53\\x02\\x2c\\xce\\x01\\xfd\\xb4\\x2c\\x30\\x9a\\x9c\\x72\\x07\\xad\\x3d\\x49\\x41\\x33\\x5b\\x7c\\x9d\\x4a\\x3e\\x61\\x48\\x31\\xe6\\xc2\\x2b\\xe4\\x0a\\xb5\\xf6\\xcc\\x73\\x57\\xb6\\x10\\x5e\\x80\\x53\\xaf\\xac\\x92\\x68\\x7e\\xe6\\x01\\x8c\\x56\\x80\\xfe\\x99\\x4d\\xca\\x55\\xd8\\x5d\\x3c\\xac\\x79\\x96\\xfb\\x05\\xc1\\x38\\xa3\\xb5\\x05\\x92\\xdf\\x92\\xec\\x6a\\x69\\xc1\\x38\\x3d\\xc1\\x48\\x51\\xe1\\x3f\\x2e\\x8b\\x64\\x77\\x3c\\xe3\\x29\\x2f\\xf3\\xba\\xa6\\x46\\xdd\\x6f\\x30\\x8c\\x79\\x73\\x5d\\x27\\x9e\\x90\\x53\\x52\\xab\\x91\\x06\\x49\\x59\\xbc\\x32\\x88\\xfa\\x8e\\x01\\xb6\\x60\\xe0\\x41\\x0f\\x9b\\xca\\x24\\xe6\\x31\\xed\\xd9\\x73\\x6a\\xf3\\x33\\x90\\xae\\x3a\\x9d\\x8d\\x8f\\x76\\x39\\xcc\\xf6\\xd3\\xae\\x07\\xd9\\x89\\x88\\xc1\\xdb\\x21\\x06\\xc9\\x14\\x76\\x2a\\x51\\x3e\\x15\\x4d\\xae\\x75\\xdf\\x41\\x4d\\xab\\x35\\x39\\x9a\\xef\\x50\\x6d\\x77\\x91\\x8a\\x83\\xd4\\x0a\\x8e\\x27\\xaf\\x9a\\x4c\\xd0\\x5a\\xd5\\x0d\\xb5\\xeb\\x68\\xbb\\xa6\\xaf\\x56\\x2b\\x11\\x82\\xae\\x1b\\x24\\x95\\x0e\\xb9\\x5f\\xc7\\x3d\\xa0\\x97\\x77\\x88\\xcf\\xe7\\x45\\xee\\x58\\xa3\\xac\\x22\\x66\\x84\\xa1\\x70\\xf3\\xbc\\xdd\\x9e\\x52\\xb3\\xee\\x62\\x58\\x83\\x5e\\xd1\\x1d\\x28\\x52\\x0e\\x64\\x03\\xcc\\x2d\\x8e\\x92\\x4f\\x3b\\x8a\\x4f\\x9f\\xf6\\xd3\\xd8\\x46\\x24\\x82\\x4a\\x56\\xa4\\x5b\\xc3\\x33\\xc9\\x21\\xd6\\x51\\x93\\xae\\x06\\x3e\\xbd\\xda\\xe1\\xb6\\x77\\x7e\\x01\\x88\\x02\\x96\\x69\\x71\\x8a\\x38\\x87\\x4a\\x0e\\x01\\x93\\x34\\x76\\xb6\\xc2\\x62\\x5b\\xd1\\x93\\xbe\\x12\\x52\\xa9\\x47\\xbd\\xe0\\xed\\xb2\\xae\\xf5\\x17\\xaf\\x21\\x74\\xc2\\x6e\\x99\\x42\\x93\\xf4\\x98\\xec\\xa4\\x51\\xa4\\x17\\x81\\xe4\\xad\\x5b\\x3a\\xc9\\xc5\\xe7\\xee\\x54\\x8c\\xd1\\xa2\\x72\\x51\\xa8\\x68\\x0d\\xea\\x62\\x28\\xb1\\x6f\\xb1\\x1b\\x8c\\x71\\x01\\x15\\x81\\x67\\x78\\x88\\xe1\\x0d\\xa7\\x3c\\xe0\\xea\\x5c\\x19\\x18\\x5e\\x38\\xb6\\xfe\\xe4\\x0b\\x97\\xbf\\x3f\\x6f\\x14\\x9c\\x8f\\x49\\x9f\\xe1\\x71\\x1d\\x33\\xef\\x12\\x4a\\x12\\x2c\\x2c\\x10\\x16\\xed\\xd9\\x4b\\x15\\x3d\\x32\\x23\\xdc\\xbd\\xe5\\xea\\x12\\x4f\\x36\\xbc\\x2b\\x1b\\xed\\x27\\x79\\x01\\x12\\x19\\x9e\\x13\\xca\\x51\\x88\\x89\\xfe\\x39\\x96\\x65\\x28\\xc2\\xd1\\x1d\\x97\\x2b\\x4a\\xba\\xcf\\xd2\\x24\\x0a\\xad\\xdb\\x08\\xe7\\x48\\xc4\\x46\\x6b\\x29\\xa4\\x14\\x28\\x79\\x9d\\xf0\\xbe\\x6d\\x00\\x83\\x14\\x1a\\x75\\x58\\x16\\x25\\x41\\x63\\x29\\xab\\x71\\x70\\xaa\\xd3\\x86\\x7b\\x9a\\x35\\x46\\x84\\x86\\xdb\\x96\\x4e\\x14\\xc6\\x22\\x7a\\x2d\\x75\\x81\\x8c\\xd1\\x04\\xaa\\x86\\xc0\\x96\\x29\\xea\\x11\\x23\\x8e\\x1b\\x10\\xf6\\x74\\xac\\xc0\\x65\\xe7\\x2e\\x15\\xf6\\x14\\x50\\xa7\\x4e\\xbc\\x1b\\xd1\\x0e\\x09\\x30\\x76\\xbe\\xdc\\x46\\x05\\x32\\xd7\\x24\\x2d\\xa0\\x7f\\xe3\\x13\\xdd\\x55\\x04\\xb4\\xc5\\x38\\xa4\\xbb\\x1d\\x7e\\x5a\\xda\\xdd\\x76\\xa4\\xc7\\xda\\xe1\\xc6\\xa1\\xa7\\x8c\\x35\\xab\\xc2\\x8c\\x5b\\x53\\x08\\x15\\x61\\x1e\\xef\\x2f\\x53\\xba\\x45\\x76\\x91\\x89\\x2a\\x54\\xb8\\xbd\\xab\\xf1\\x9d\\x16\\xec\\x9e\\x24\\xf9\\xea\\xbe\\x5c\\x60\\x85\\x19\\x4c\\x98\\xc0\\x59\\x6d\\x03\\xcc\\x18\\x52\\x29\\xa6\\x59\\xad\\x02\\x1f\\xab\\x16\\x0b\\xb4\\xbe\\xc1\\x9d\\x9f\\xb3\\xb7\\x66\\x66\\x8c\\xd7\\xe1\\xef\\x9e\\x29\\xce\\xbc\\xe4\\xd6\\x7a\\x0e\\x38\\x06\\x6a\\x1b\\x6d\\xd0\\xfa\\xea\\xf2\\x82\\xd9\\x15\\x76\\x46\\x87\\x29\\x64\\xd4\\x76\\x5b\\xdd\\x6e\\xcd\\xd4\\x94\\xa6\\x66\\xaa\\x14\\x2a\\x14\\x37\\x21\\xc0\\xf9\\xb9\\x0a\\x64\\xb6\\x5b\\xcb\\xd2\\xf6\\x69\\xeb\\x6d\\x74\\xef\\x09\\x3b\\xb7\\xb6\\x26\\xea\\x90\\x1d\\x8f\\xf7\\x50\\x71\\xee\\x07\\xb7\\x30\\xca\\xd0\\x41\\xfe\\x50\\x0e\\x12\\xe4\\x4a\\xc4\\xa8\\x70\\x73\\x8e\\xcd\\x08\\x43\\xe3\\xda\\x94\\xad\\x93\\x43\\x24\\x57\\x0d\\xe4\\xaf\\xd1\\x63\\xad\\x3f\\x9e\\xf2\\xec\\x83\\x60\\xe5\\xad\\x45\\xc3\\xd1\\xd0\\xed\\x4b\\x56\\x3d\\xd8\\xf2\\x26\\x52\\x8a\\x4b\\x60\\xc1\\xeb\\x40\\xe6\\xcc\\x5a\\xdf\\x8f\\x47\\x69\\xa7\\x98\\x56\\x31\\xf6\\xea\\xc6\\x39\\xe9\\xeb\\xd5\\xbe\\xc4\\xde\\xab\\x3a\\xa5\\xb0\\xf7\\x70\\x70\\x4e\\x16\\x17\\x0b\\x4e\\x1a\\xa2\\x10\\x6f\\x14\\x9a\\x28\\x86\\xd9\\xa9\\xaf\\xd1\\xca\\x28\\xcd\\x31\\x77\\xba\\xb4\\xd2\\x36\\x29\\x29\\x06\\x99\\x1f\\x0b\\x53\\x9c\\xe8\\x44\\x3d\\xf4\\xa1\\x76\\x3b\\x30\\xa9\\xc0\\x75\\x15\\x05\\xa1\\xae\\x3b\\x6a\\x44\\x4f\\x3c\\xaf\\xed\\x8e\\xab\\x14\\x68\\x18\\xd9\\x9a\\x86\\xb9\\x70\\x66\\x63\\x2a\\xe1\\x7e\\x5e\\x67\\xd1\\x81\\x7b\\xdd\\xe3\\xd6\\x8a\\xcb\\xf5\\xb4\\xce\\xeb\\xfe\\x86\\x6c\\x9f\\x66\\x51\\x1a\\xb5\\x7f\\xa0\\x9f\\xdc\\x4a\\xcb\\xab\\x24\\xd4\\x4d\\x27\\x8a\\x2f\\x03\\x59\\x72\\xcd\\xa8\\xac\\x13\\x80\\x21\\x8f\\x52\\x15\\x8c\\x19\\xa7\\x1d\\x8f\\x2e\\xd7\\xf7\\xcf\\xe2\\x66\\x7d\\x79\\x71\\xba\\x5f\\xce\\xe2\\x60\\x3c\\xd7\\x05\\x9f\\xf0\\x63\\xb5\\x3e\\x71\\xe1\\x0d\\xa3\\xfd\\xec\\xd6\\x8b\\xcd\\xe6\\x0e\\xda\\xda\\xbe\\x6d\\xc0\\xa6\\x2a\\xc7\\x5d\\x53\\x2e\\xd9\\xf2\\x5d\\x19\\x8e\\x95\\xda\\x4e\\x1d\\x54\\x18\\x28\\xce\\x55\\xb3\\x2f\\xb0\\x12\\x16\\xdf\\xa1\\xa3\\x43\\xd7\\xa9\\x44\\xde\\x15\\x5d\\x14\\x3a\\x99\\x9b\\x35\\x6c\\x54\\x2a\\x4c\\x29\\x72\\xa6\\xa1\\x89\\x59\\xcd\\xac\\x34\\x00\\x9e\\xcc\\x58\\x71\\xc6\\x8c\\x3b\\xcd\\xae\\xad\\x88\\xef\\x62\\x2b\\xaf\\x7a\\xb5\\x5d\\xa0\\x4f\\x24\\xc8\\xe2\\x52\\x8d\\xf0\\x66\\x13\\x8c\\xaf\\x58\\x92\\x8e\\x50\\x07\\xee\\xef\\x6b\\xfb\\xef\\x3f\\x81\\xf3\\xab\\xca\\x9b\\x3e\\x6c\\x7a\\x07\\x95\\x87\\x04\\xac\\x53\\x72\\xcc\\x6d\\xbb\\x8f\\x62\\x30\\x24\\x1e\\x17\\xa6\\x78\\x26\\xdc\\xad\\x98\\x8f\\x9d\\x73\\xea\\xe6\\x0b\\x41\\xe5\\xc5\\xa7\\x87\\x54\\x79\\x07\\xf2\\x21\\x41\\x95\\x79\\x25\\xf7\\x53\\xe8\\xad\\x09\\xd1\\xa6\\xe1\\xb9\\xfd\\x6f\\x92\\x17\\x3c\\xf4\\x06\\xf6\\xdd\\xe0\\xa1\\xdd\\x11\\x15\\x11\\x67\\xfd\\x33\\x2e\\x20\\x82\\x7f\\x01\\x67\\x89\\xff\\xe2\\x52\\xec\\x2f\\xe4\\xae\\xbf\\x49\\x90\\x95\\x53\\xfc\\x8c\\xf8\\x62\\xd2\\x65\\x05\\x96\\x3e\\x4c\\x9b\\xcc\\xf1\\xb4\\xf2\\xc6\\x3c\\x0d\\x9d\\x03\\x1c\\xc7\\x3d\\xc3\\xb5\\x63\\x8c\\x87\\x28\\xc3\\x9a\\x63\\x40\\x68\\x3c\\xa5\\x05\\xb8\\x47\\x99\\xf1\\x56\\x12\\xfa\\x84\\xcc\\xde\\x08\\xe4\\x6d\\xc4\\x08\\x9c\\xed\\xca\\x38\\xa3\\x62\\x31\\xd5\\xea\\xb2\\x0f\\xbb\\x58\\x6e\\xc4\\xf0\\x03\\xa0\\x3b\\x97\\xe7\\x00\\x12\\x7b\\x22\\x36\\x38\\x06\\xe6\\x16\\x32\\xb7\\x1a\\x2d\\x34\\x6e\\xe7\\xca\\x5f\\xdc\\xca\\xd2\\xfc\\x2c\\xdc\\xfe\\x31\\x65\\x58\\xf7\\x06\\x4e\\x7c\\xc5\\xd9\\xd4\\xcd\\x56\\x3d\\xd1\\x1e\\x9e\\x31\\xb1\\xa3\\xd9\\xda\\x68\\xc6\\x3a\\x9b\\xa8\\xb1\\x59\\x8f\\x81\\x15\\x21\\xf3\\x13\\x43\\x1a\\x9d\\xa5\\xd8\\xdf\\xf0\\xdd\\xdd\\xc7\\x1f\\xed\\xbf\\xd8\\x7f\\x7e\\xf9\\xfc\\xfa\\xe5\\xec\\x84\\x96\\x16\\xc7\\x3e\\x6b\\x90\\xd9\\x9d\\x1c\\x65\\xbd\\xc2\\xa9\\xf9\\x3d\\x96\\xbe\\xcf\\x70\\x51\\xca\\xff\\x38\\x34\\x77\\x96\\x57\\x2c\\x35\\xea\\x2d\\x44\\x86\\x23\\x11\\xb7\\x7e\\x1f\\x6c\\xcd\\xc6\\x8a\\x7d\\x63\\xdb\\xfb\\x41\\xf6\\x37\\xcd\\x8b\\x0b\\xaf\\x90\\xd6\\xee\\x7a\\xe0\\x96\\xd7\\xee\\x52\\x51\\x06\\xeb\\xeb\\x6f\\xee\\xae\\xbf\\x77\\xfd\\xdd\\x0f\\xdf\\x7f\\xf1\\xac\\x21\\x21\\xd6\\x99\\x94\\xdc\\x05\\x47\\x0c\\xa3\\x50\\x86\\x60\\x25\\xc7\\x98\\xd4\\x7f\\x51\\x64\\x2d\\x54\\xe6\\xca\\x06\\x15\\x85\\x52\\x4e\\x59\\xe0\\x4d\\x15\\x6e\\xee\\x46\\x4e\\xe6\\xc1\\x28\\xed\\xb0\\xf8\\xf3\\x12\\x43\\x85\\xd8\\x28\\xe2\\x6e\\x84\\x8e\\xe3\\x8b\\x55\\xba\\x5e\\xd4\\x9a\\xec\\x79\\x3f\\x68\\xdb\\x5d\\xaf\\xca\\x99\\xaf\\x3d\\xa6\\x52\\x8d\\x39\\x3b\\x5a\\x1e\\x53\\x88\\x65\\x38\\x89\\x19\\xc7\\xf2\\x0d\\xde\\x91\\x51\\x92\\x8a\\xae\\xc8\\x46\\xec\\xd8\\x81\\x3b\\x52\\xa5\\x27\\x6d\\x24\\x61\\x51\\x3d\\xb0\\xc4\\x4e\\x04\\x1a\\xdb\\x9b\\x92\\x0d\\xad\\xb5\\xe8\\x99\\x07\\xea\\x45\\x41\\x20\\x11\\x53\\xc7\\xfb\\x66\\x87\\x1d\\xa5\\x66\\x6d\\xf1\\xb5\\x3c\\x8c\\xd4\\x02\\x6d\\xf8\\xdb\\xc0\\x48\\x4b\\xcf\\x62\\xfb\\x31\\x5c\\xbb\\x56\\x38\\x37\\xc4\\x46\\x74\\x4e\\xa1\\xb5\\xd1\\x54\\x84\\x17\\x23\\x88\\x3f\\x2d\\xb3\\x53\\x83\\xd1\\xbe\\x6e\\x34\\xe5\\x63\\x01\\x8f\\xb2\\x4e\\xf5\\x8b\\xcb\\x5a\\x30\\xd1\\x48\\xb9\\xbd\\xb0\\xb2\\x00\\xbd\\x30\\x44\\xb3\\x53\\x6c\\x2e\\xa8\\x99\\x98\\x73\\x38\\x1b\\x9f\\xe6\\x99\\xe9\\x06\\x7f\\x1c\\xc3\\x2d\\x99\\xd4\\xcc\\x34\\x45\\xb3\\x44\\xda\\x84\\x3a\\x3b\\xf5\\xf3\\x4c\\xdb\\x72\\x9a\\xeb\\x9b\\xf6\\x69\\x3e\\xcc\\xc8\\x2a\\xa3\\x9a\\x66\\xb9\\x5f\\x18\\x59\\x37\\x83\\xde\\x75\\x6f\\x4e\\x93\\xb6\\xb2\\x7d\\xc4\\x7f\\xb1\\x25\\x66\\x54\\x78\\x8e\\x03\\xe9\\x37\\x29\\xb2\\x4b\\x35\\xe3\\x8e\\xac\\x17\\x6c\\x6c\\x6d\\x5e\\x18\\x79\\x54\\x94\\x06\\x59\\x46\\xd0\\xb6\\xe7\\x6a\\x3f\\x2e\\xcd\\xdc\\xda\\x9a\\x6f\\x33\\x79\\xd2\\xbf\\x8a\\x84\\xba\\xfe\\xf6\\xb8\\x70\\x69\\xb7\\x5c\\x8a\\xf1\\x5a\\xc3\\x88\\xb2\\x04\\xa6\\xd1\\xd1\\x86\\x86\\xfc\\x2a\\xad\\x96\\xc5\\x82\\x42\\x61\\x30\\x00\\xa0\\xf6\\x58\\xfb\\x2d\\x1d\\x9a\\x9f\\x9b\\x9e\\x6c\\x18\\xd9\\x6f\\xb0\\xbf\\xbb\\xab\\xad\\x25\\x7f\\xe6\\x7e\\xd5\\x9d\\x0e\\x7b\\x49\\x91\\x36\\x6f\\xbf\\x2c\\x6b\\x5a\\xaa\\x31\\x99\\xa5\\xd9\\x2f\\x41\\x21\\x11\\x0b\\x78\\x50\\xa6\\x9d\\x46\\xe6\\xaa\\xa8\\xdd\\x0a\\x8b\\xb6\\x80\\xa6\\xbd\\x96\\xe7\\x59\\x14\\xc8\\x7d\\xf4\\xd6\\x83\\xb6\\xe9\\x61\\xe6\\xa8\\xae\\xc7\\x65\\xec\\xb9\\x30\\x24\\x9b\\x09\\xb9\\x58\\xb3\\x45\\x7b\\xd4\\x44\\x61\\x4f\\x94\\x09\\xcc\\xbb\\x16\\x2e\\xf4\\xd8\\xcc\\xbd\\x06\\x82\\xe1\\x53\\xa0\\xef\\x2a\\x68\\x94\\x0d\\xd7\\xde\\x36\\x4a\\x62\\x13\\xb0\\x75\\xcf\\xa9\\x0a\\x3c\\x71\\x65\\x76\\xdf\\xf2\\x5b\\x6d\\x73\\x6f\\x90\\xe9\\x39\\x0b\\x9b\\x51\\x29\\x2f\\x61\\x62\\xe7\\x8e\\x5a\\xbd\\x9d\\xc9\\x76\\x41\\x07\\x05\\xfe\\x76\\xd3\\x0c\\x86\\xee\\x97\\xaa\\x79\\xf8\\x26\\x11\\x24\\xe1\\xf3\\xd3\\xf6\\xb5\\x91\\xbd\\xee\\x9b\\xfb\\xda\\xf0\\x1d\\x5b\\x06\\x78\\x4d\\x0b\\x59\\x14\\xe1\\xb2\\x35\\xcb\\x6b\\xdf\\xcc\\xc2\\x2b\\x3c\\xc1\\xe3\\xd6\\xa0\\xed\\x64\\x03\\x78\\x4a\\x45\\xc1\\x90\\x09\\xeb\\x28\\x36\\xcb\\x58\\x2e\\x93\\x35\\xf6\\x72\\x14\\xfb\\xa8\\xba\\xbe\\xc8\\x96\\x52\\xa3\\x94\\x13\\x81\\x74\\x4c\\x6a\\xe2\\xa7\\xbd\\x4c\\xd0\\x1c\\xf5\\x33\\xbe\\xc4\\x80\\x4c\\x76\\xad\\xef\\xea\\xab\\x5a\\xbe\\x57\\x4e\\x19\\xa9\\xe4\\x90\\x74\\x45\\x50\\x8b\\xb1\\xa8\\x21\\xd7\\xba\\x47\\xde\\x43\\xa6\\x99\\xfd\\x62\\x06\\x42\\x91\\x3b\\xba\\xc3\\xfc\\xf3\\x19\\x3a\\xda\\x4b\\x1f\\x9c\\x90\\x78\\xea\\x59\\x3c\\x2d\\x03\\x1e\\x7b\\xd3\\x49\\x0a\\xda\\xfd\\x66\\x61\\x82\\xcc\\xb7\\x68\\xab\\x2c\\xcd\\x49\\xc9\\x7a\\x96\\x69\\xed\\x80\\xa5\\x46\\x09\\x0c\\x5f\\x0e\\x87\\x6c\\xfb\\x18\\xca\\x18\\xdc\\x49\\x92\\x3d\\x9f\\xc2\\xc5\\x55\\xf0\\xa7\\x0d\\xd9\\x8a\\x1d\\x61\\x9d\\x52\\xc9\\xa5\\x54\\x85\\x98\\xc6\\x1a\\xc0\\xd0\\x82\\xdc\\x4c\\x46\\x38\\xc8\\x18\\x29\\x42\\x57\\xc0\\x43\\x56\\x66\\x71\\x09\\x14\\x05\\x4e\\x48\\x15\\x45\\xa9\\x0a\\xec\\xf1\\x3c\\x16\\xea\\x77\\x44\\xe2\\xa6\\x83\\xf1\\xed\\x4d\\x09\\x33\\xc2\\x11\\x55\\x76\\x42\\xe6\\x87\\xc3\\xcd\\x31\\xdf\\xc3\\x39\\xe2\\xdb\\xb1\\x4a\\xe4\\xfa\\x86\\xbc\\x28\\xaf\\x1b\\xc0\\x30\\xbc\\xbc\\x97\\xd0\\x94\\x17\\xbc\\xb9\\x6a\\x7c\\xec\\xd3\\x7c\\xae\\x70\\x7b\\x03\\x3d\\x5f\\x90\\x66\\x44\\x58\\x4d\\x91\\x28\\x4f\\x35\\x3b\\xaa\\x6d\\x35\\x7b\\xcb\\xbc\\x51\\x08\\xe3\\xa7\\xc3\\xda\\xf7\\x4d\\xe0\\xf1\\x56\\x0a\\xa6\\x15\\x92\\x79\\xca\\xa4\\x80\\xb7\\x2b\\xa7\\x4c\\x99\\xcf\\x17\\x99\\x40\\x44\\x9e\\xce\\x86\\xd9\\x5e\\x40\\xbf\\x20\\x59\\x68\\xa1\\x45\\x29\\x57\\xce\\x91\\x96\\xe1\\xbf\\x14\\x0c\\x61\\x7f\\x78\\x0e\\x8d\\x02\\x42\\xa0\\x18\\x3b\\x69\\xd4\\x6a\\xe1\\xe8\\x74\\x35\\x99\\x8f\\xa3\\x82\\x83\\x87\\x33\\xa6\\x57\\xbc\\x3b\\x1c\\xef\\xa4\\x19\\x8b\\xef\\x84\\x04\\x1f\\x0a\\x49\\x95\\x78\\x53\\x3c\\xee\\x9f\\x1f\\x56\\x01\\x1e\\xc1\\xff\\x26\\x4e\\x75\\xb4\\x5f\\x96\\x2c\\x51\\x85\\x94\\x31\\xfa\\x70\\x76\\x5a\\x05\\x4b\\x97\\xcb\\x09\\xda\\x28\\x3a\\x73\\x88\\xc1\\xe6\\xbc\\x99\\xc6\\x38\\x53\\x0e\\x64\\x0b\\xbe\\x16\\x83\\x9e\\xfb\\x21\\x3a\\x51\\xa6\\xaf\\x43\\xc7\\x98\\x7a\\x39\\xfe\\x91\\x49\\x7e\\xb9\\x1e\\xcb\\x5d\\xc2\\x9e\\x20\\xf7\\x8e\\x86\\x79\\xda\\x9e\\xf2\\x15\\xb4\\xed\\xe2\\x62\\x52\\x2d\\x37\\xbe\\xa7\\x71\\x76\\x0a\\xf5\\xde\\xfb\\xec\\x74\\x7e\\xca\\x8a\\x38\\xa2\\xd6\\x78\\x85\\x67\\xbc\\x52\\xdd\\xae\\x24\\x3f\\x9d\\x92\\x11\\xb4\\x7c\\x40\\xd8\\xc3\\xd0\\x26\\xa8\\x50\\x1e\\x3c\\x43\\x0d\\xee\\x04\\x78\\x93\\xcb\\x05\\xd4\\x5b\\xcf\\xf5\\xb6\\xd9\\x66\\x49\\xe0\\xdb\\xc4\\x98\\xf1\\x98\\xc7\\x17\\x83\\x3f\\x65\\x67\\x31\\x01\\xc1\\x6f\\x4e\\x20\\x46\\x1b\\xe6\\xd3\\x6b\\xec\\xab\\xa2\\x91\\x11\\x9a\\x3c\\x63\\xf2\\xe2\\x8d\\xf4\\x04\\xac\\x04\\xe9\\x07\\x36\\xef\\xac\\x8e\\xc5\\x56\\x11\\x75\\x00\\x26\\xe0\\x83\\x2f\\x0d\\x1f\\x5e\\xd4\\xc9\\x0a\\xc0\\x50\\xc7\\xa4\\x9e\\x85\\x71\\x95\\xfb\\xf2\\xf6\\x69\\x6c\\x7b\\x64\\x72\\x1a\\xd8\\x96\\xdd\\x0c\\xee\\x4e\\x82\\x3b\\x4e\\xc6\\x50\\x4f\\xfa\\x72\\xc1\\x16\\xbe\\x0b\\x0a\\xf7\\xb8\\x59\\x24\\x7a\\xa9\\x01\\xbc\\x37\\xb5\\x80\\x49\\xea\\xc2\\xe8\\xc4\\x83\\x7c\\x08\\x26\\x25\\x71\\xcc\\x84\\x05\\xe2\\x66\\x68\\x0d\\xa5\\xde\\x34\\x02\\xa8\\x0f\\xbc\\x91\\xe5\\x40\\x8d\\x30\\xdf\\xfb\\x5a\\xe1\\xe6\\xa6\\x79\\x91\\x3b\\x29\\x04\\xf2\\xb1\\x89\\xb8\\xc4\\x2a\\x34\\xc6\\x53\\x24\\x47\\x1e\\x20\\xfa\\xdf\\xd2\\xcb\\xee\\x14\\xe7\\xa3\\xa8\\x88\\xbf\\x8b\\x72\\x6e\\x91\\xa6\\x09\\x22\\xb7\\x0c\\x70\\x67\\xaa\\x27\\x80\\x75\\xf2\\x88\\x9e\\x9e\\xd2\\x3b\\xac\\x05\\xa7\\x84\\xa8\\xf9\\xa4\\x39\\x63\\x70\\xee\\xcc\\x01\\x5a\\xf2\\xcc\\x8f\\x23\\xcb\\x45\\xef\\xbe\\xd5\\x22\\xf0\\x11\\xce\\x31\\x5d\\xe3\\x01\\xb7\\x65\\xf4\\x50\\x37\\x1e\\xc3\\xa7\\xa3\\x62\\x79\\x97\\x90\\x21\\xb2\\x8b\\x8d\\x84\\xe5\\x24\\x0c\\x87\\xa9\\x48\\x52\\x52\\x6d\\x10\\x16\\xf3\\x97\\x33\\xd6\\x38\\x16\\x21\\xc9\\xb3\\xfb\\x21\\x44\\x80\\xa7\\x4b\\x54\\x44\\xfe\\x3c\\x18\\x02\\xa3\\x01\\xb8\\x80\\x19\\x07\\xf0\\xf0\\xbc\\xbb\\xcc\\x59\\x18\\xfe\\xe6\\x9d\\x6b\\xcc\\xef\\x3c\\xfd\\x61\\x9a\\xe1\\x41\\xbc\\x3b\\x69\\x10\\x38\\x61\\xd7\\x46\\xab\\xd6\\x21\\x2c\\x90\\xa7\\x02\\x6f\\x9c\\xf0\\xf5\\x25\\xd7\\x5d\\x18\\xe8\\xf1\\x78\\x64\\xd7\\x57\\x8a\\x2f\\x81\\xa3\\x07\\x9c\\xcd\\x43\\x1e\\xc3\\x46\\xb8\\x64\\x9d\\x9e\\xfe\\xc0\\xab\\x5e\\xca\\x3c\\x17\\x39\\x15\\x5e\\x39\\xf7\\xdb\\x08\\xfd\\x0d\\xdd\\xc6\\x32\\xc6\\x7f\\xd8\\x2e\\x21\\x84\\x26\\xce\\xfa\\x82\\x1e\\x12\\xcf\\x86\\x54\\xaa\\x35\\xd4\\x38\\x91\\x31\\xf0\\xef\\x64\\x9e\\x95\\x0a\\x70\\x21\\xbc\\xdd\\x31\\x25\\x5a\\xa4\\xa5\\xe3\\xae\\x10\\x98\\xab\\x3f\\x9e\\x95\\x34\\xe7\\x9d\\x18\\x51\\x1b\\xbd\\x53\\x4a\\x1a\\x2c\\xe0\\x31\\xbc\\x4d\\x4b\\x57\\xea\\xe9\\xc4\\x21\\x9c\\x84\\x08\\x1c\\x8e\\x21\\x2d\\xd5\\xdd\\xad\\x0e\\x40\\x24\\xfb\\x95\\x10\\x19\\x4c\\xa1\\x15\\x74\\x63\\x6a\\x43\\x9e\\x0e\\x01\\x75\\xc6\\xa3\\x41\\xc1\\xfb\\x71\\x81\\xc5\\x2e\\x8e\\xfb\\x4e\\x1e\\xf3\\x90\\x39\\xd4\\xb5\\x72\\x14\\x8a\\xc7\\xc1\\x3b\\x9e\\x5b\\x50\\x32\\xa5\\xaa\\xd7\\x28\\xac\\x70\\x71\\x11\\xa8\\xe0\\x99\\xcf\\x45\\x23\\xc2\\x01\\xde\\xf4\\x55\\x94\\xe7\\x4c\\x59\\xcc\\xcf\\x91\\xc6\\xe3\\xb9\\x35\\x9a\\xee\\x7f\\x5e\\x47\\xbc\\x48\\xd7\\x0a\\x22\\x93\\xdb\\x94\\x79\\x4a\\xb9\\xb3\\x2c\\xe6\\x84\\xe8\\x41\\xf5\\xf0\\xb1\\x39\\xe3\\x19\\xcf\\x78\\x25\\xa3\\xfe\\x3a\\xce\\xf7\\x61\\xd8\\x1d\\x70\\x75\\xd0\\xe1\\xc4\\x84\\x17\\x07\\xfb\\x22\\x19\\x34\\x28\\x94\\x42\\x82\\xb4\\x2e\\x8c\\xc1\\xfe\\xb4\\xaa\\x09\\x18\\xd3\\xd2\\x13\\xdc\\x7b\\x63\\x1a\\x50\\x61\\x31\\x1d\\xf3\\xf1\\x0b\\x77\\x52\\x55\\x8e\\xa3\\x51\\xb4\\xed\\x3a\\x7b\\xd6\\xb2\\xcb\\x93\\x37\\x5a\\x1a\\xcf\\x1c\\xe3\\x58\\xeb\\x43\\xc1\\xf0\\x14\\xdc\\xeb\\x6a\\x0d\\xa4\\x9d\\xbd\\xa8\\x28\\xe4\\x59\\x17\\xaf\\x56\\xdb\\x5f\\x4c\\x3f\\x00\\xff\\x1f\\x97\\x4a\\x18\\xd9\\x17\\x39\\x8e\\x8c\\x94\\x6f\\x5f\\xab\\x4b\\x05\\xc9\\xb2\\x9d\\xd8\\x68\\xe4\\xff\\xff\\xc6\\x8a\\x87\\x23\\x27\\xe1\\x8f\\xbc\\x5d\\x82\\x5b\\x78\\x90\\x8e\\xa5\\x57\\xc0\\x9f\\xf2\\x91\\x2b\\x35\\xcf\\x98\\x76\\xa4\\xef\\x35\\x65\\x21\\x40\\xac\\xd9\\x87\\x86\\x35\\xbd\\xa6\\x72\\xaf\\x61\\x25\\x1b\\xbd\\x57\\xbb\\x98\\x1a\\x07\\x44\\x79\\x48\\xc5\\x52\\xce\\x56\\x6f\\x8c\\x40\\xf3\\xb6\\xdd\\x8e\\x2e\\x61\\x38\\xd2\\x25\\x5f\\xe4\\x76\\xcb\\xe1\\xf1\\xaa\\x12\\xbd\\x5c\\x28\\xf3\\xc6\\xa7\\x0b\\x2b\\xb8\\x81\\x65\\x0b\\xe3\\x1e\\x9d\\x80\\x9a\\x25\\x51\\x46\\xf6\\x8d\\xa6\\x2a\\x0c\\x90\\x12\\x9a\\xec\\xd6\\x1c\\x5a\\x35\\x91\\x5a\\x11\\x96\\x55\\x7c\\xa4\\x0d\\x33\\x02\\x4d\\x8c\\x21\\xdc\\x66\\x9f\\x34\\x4a\\xf2\\xef\\x7f\\xfc\\xfe\\xb7\\x3f\\xf9\\x51\\xb3\\x9c\\xef\\x38\\x53\\xce\\xf4\\x58\\xc9\\x50\\x2f\\x4d\\xbd\\xa8\\x48\\x89\\x76\\x76\\x38\\x2b\\x4b\\x8b\\xd4\\x4e\\xf0\\xd3\\xa8\\xe2\\x60\\x09\\xc0\\x21\\xaf\\xc6\\x22\\x96\\x0f\\xff\\xb7\\xbc\\x93\\xa5\\x4e\\x10\\x24\\x2b\\xb1\\x5a\\x0a\\x12\\xa4\\x5b\\xd6\\xea\\x9e\\x14\\xe4\\xdc\\x80\\xfc\\xa7\\x1f\\xfa\\xe2\\xda\\x4e\\xae\\xaf\\xa2\\xd4\\x40\\x83\\x5f\\x8f\\xf7\\xee\\x47\\xb8\\x0a\\x7c\\x57\\x13\\x78\\xd1\\x15\\x7b\\x05\\x33\\xa2\\xee\\x4e\\x67\\xe4\\x73\\xd2\\xe3\\x5f\\x6f\\x8f\\xb1\\x92\\x96\\xaf\\x7b\\x70\\xda\\x57\\x28\\x9b\\xcc\\x28\\x39\\xd4\\x88\\xa3\\x5e\\x06\\x3d\\x0f\\xbe\\x94\\xac\\x95\\xdd\\x5c\\xaf\\x57\\xcb\\x85\\x0d\\x88\\x59\\xf0\\x23\\xe0\\x1d\\xe4\\xd1\\xb4\\x77\\x41\\x95\\x8e\\x11\\x12\\x05\\x4e\\x47\\x0c\\x14\\xa4\\xe3\\xf4\\x65\\x37\\xf4\\xdc\\xc8\\x6a\\x63\\x62\\x83\\xb3\\xf1\\x72\\xc2\\xeb\\x1d\\x02\\x54\\xcb\\xfa\\x3e\\x01\\xce\\x2c\\x00\\xa4\\xce\\x6c\\xe5\\x92\\xc5\\xce\\x09\\x0d\\x85\\x45\\xa2\\x77\\xc5\\x49\\x80\\x5c\\xc5\\xfe\\x40\\x92\\x90\\xee\\x48\\xee\\x77\\xb3\\xb6\\xa9\\xb1\\x9d\\x63\\xe6\\x20\\x8a\\xa7\\x92\\x95\\x1f\\xe4\\xd2\\xcb\\x3d\\xaa\\x92\\x2b\\x55\\x7a\\x97\\x90\\x0d\\x67\\xec\\xa6\\xa1\\xd2\\xf1\\x68\\x2d\\xd5\\x0c\\xed\\x50\\xbd\\xa3\\x61\\xb0\\xcf\\x4e\\xbb\\xb8\\x48\\x1f\\x57\\x92\\x33\\xef\\x06\\xf4\\xff\\xe1\\x7b\\xd4\\xca\\x52\\xe2\\x4d\\x22\\x07\\xf4\\x3e\\xbe\\x52\\x08\\xc0\\x26\\xa0\\x65\\x56\\xfd\\x9a\\xc2\\x9f\\x92\\xf0\\xc9\\x73\\x77\\x43\\xc9\\x52\\x3c\\xde\\x11\\x90\\xf2\\x80\\x95\\xcb\\x91\\x0f\\xf0\\xa8\\x7f\\x9a\\xa3\\xf4\\xef\\x1f\\x22\\xd3\\x3d\\x46\\xe8\\xfe\\x2b\\x4a\\x8b\\xc7\\xcf\\xf4\\x98\\x84\\x1c\\x3f\\x14\\xa0\\xbb\\xde\\x4e\\xf0\\x05\\x0c\\x4b\\x1c\\xf2\\x87\\x25\\x8f\\x7f\\x39\\xc9\\xb1\\x7e\\x8f\\x60\\xd8\\xbb\\xe7\\x53\\x3a\\xfe\\x41\\x11\\x51\\xe8\\xdc\\x1a\\x93\\x1c\\xa4\\x84\\x9c\\xf0\\x93\\xff\\x6f\\x4d\\x8b\\xea\\x07\\xb1\\xa5\\x74\\x5c\\x53\\x12\\x8c\\x7b\\x67\\xd2\\x8f\\xb6\\x5c\\x14\\xd6\\xb7\\xa8\\xab\\xa3\\xad\\xa5\\xa9\\xa1\\xae\\xc6\\xd5\\xe1\\x28\\x29\\xb4\\xe5\\xe5\\x66\\x65\\x66\\xa4\\x9b\\x4d\\x86\\x64\\x6d\\x82\\x5c\\x2a\\xe0\\x73\\x98\\x14\\xf2\\xc4\\x7e\\xbe\\x13\\xa9\\x3f\\x9d\\x34\\xdb\\x6f\\x3b\\xfe\\xf2\\xb1\\x5a\\xcc\\x5a\\xd2\\x33\\x44\\xda\\xcf\\x8d\\x5d\\x33\\x5a\\xc9\\x06\\x0b\\xba\\xbd\\x41\\x19\\xc7\\x43\\x49\\x9d\\x5f\\x3a\\x0a\\xa7\\xaf\\x62\\xb3\\xf0\\xf0\\x21\\x27\\x85\\xea\\xf4\\xba\\x72\\xe4\\x6b\\x2c\\xc8\\x30\\x09\\xc0\\x9f\\x75\\x46\\x50\\x37\\x26\\x81\\x9e\\xae\\x29\\x68\\xbd\\xe7\\xf4\\xb2\\xcf\\x10\\x8f\\x87\\xe4\\x5a\\x73\\x1e\\xbd\\xbd\\xd8\\x39\\xeb\\xb3\\x92\\xec\\x93\\xbc\\x00\\x8f\\x9f\\xfd\\xa2\\x6d\\x2d\\xd7\\xcc\\x46\\x09\\x8d\\x21\\xa9\\xcf\\x56\\x00\\x96\\x7a\\x1e\\x0a\\x5c\\xa3\\x5d\\xa1\\x23\\x49\\x02\\xe4\\x17\\xd6\\xb8\\x1f\\xc3\\xe1\\x61\\xce\\xa0\\x8d\\xd5\\xfd\\x64\\xc2\\x46\\xf0\\x08\\x59\\xfb\\x85\\x97\\xff\\x39\\x9c\\x9e\\xb0\\x3c\\x32\\x60\\xa3\\x0b\\xd3\\xf8\\x39\\x37\\x4c\\x52\\xb1\\xbb\\xd3\\x4d\\xca\\x2e\\x0a\\xfd\\x40\\x1a\\xcd\\x88\\x03\\x71\\x7d\\xf7\\xb4\\x3e\\xff\\x9c\\xd0\\xcb\\x08\\x54\\xc5\\x3b\\x8b\\x85\\xd4\\xbe\\x61\\xa4\\x49\\xfa\\xbe\\xad\\x13\\x8c\\xb4\\x0b\\xcd\\xf8\\xd9\\xa2\\xaf\\x17\\xe8\\xa7\\x25\\x3f\\x28\\x68\\x8b\\xd5\\x7f\\xd5\\x55\\x51\\x9f\\xd4\\xc0\\xf4\\xb1\\x04\\xaa\\x90\\x16\\x1b\\x5b\\x40\\x91\\xfd\\xf8\\xb6\\x83\\x0f\\x08\\x93\\xb0\\x0a\\x65\\xf1\\x4b\\x27\\xae\\x1d\\x58\\xa3\\x2f\\x2d\\xb1\\x26\\xaa\\x0b\\x9f\\x9e\\xe3\\xa7\\x6a\\xac\\x45\\x29\\x5a\\xe6\\xf5\\x67\\x04\\x57\\x56\\x6f\\xf0\\x53\\xc7\\x6c\\xfe\\xb4\\xfb\\xc0\\xbb\\xa8\\xd5\\x5b\\x59\\x15\\xc7\\x89\\x52\\xed\\xfa\\xa8\\xc0\\x37\\x39\\x91\\x59\\x26\\xe0\\x1d\\xf3\\x78\\x73\\xb6\\x12\\xd1\\xd8\\xbf\\xea\\x8d\\xf0\\x6d\\xc7\\xd4\\x33\\x23\\x0e\\x69\\xae\\x7f\\x42\\x8e\\x2d\\x56\\x2f\\x11\\xef\\x35\\x35\\x9e\\x6d\\xba\\x8f\\x4e\\x71\\xc0\\x89\\x24\\xdf\\x59\\x30\\x5e\\xd2\\x08\\x63\\x84\\x8d\\xa8\\xac\\xc5\\x80\\x56\\x3e\\x51\\xf5\\x36\\x8c\\xdf\\xa7\\x3f\\xa0\\x59\\xf3\\x1f\\x83\\xff\\xc0\\x58\\x47\\x16\\xbf\\x93\\x8c\\x58\\xb4\\x99\\x2d\\x1d\\x59\\x12\\x98\\xd9\\xc4\\x1b\\x2e\\x95\\x8f\\x59\\x40\\x46\\x86\\xe2\\x78\\x2e\\x31\\x82\\xdf\\x29\\xf9\\xc2\\x91\\x96\\x0f\\x88\\xb8\\x0f\\x6e\\xdd\\x95\\xd4\\xf1\\xec\\x6d\\x8f\\x8c\\x2f\\x97\\x14\\x88\\xf0\\x72\\x5f\\x38\\xea\\xe2\\xb9\\xad\\xf3\\xb4\\x15\\xbe\\x21\\x8d\\x4d\\x29\\x54\\xe2\\x30\\x4c\\x33\\x2d\\x85\\xae\\xfb\\x16\\x75\\x3a\\xad\\x75\\x8f\\x76\\xd3\\xa1\\xd4\\xbf\\xe8\\xb7\\xcb\\x1e\\x7f\\xfa\\xfc\\xe6\\xe9\\xc5\\xbe\\xba\\x30\\xc6\\x25\\xf4\\x74\\xa4\\x9b\\x3a\\x8d\\x42\\xe2\\x41\\x48\\x4d\\xef\\xd5\\xc9\\xa7\\xd6\\xc1\\x0d\\x98\\xed\\x4a\\x75\\xf4\\xaa\\x39\\x4b\\x0e\\x31\\x43\\xe3\\xe9\\x09\\x18\\x44\\x70\\xe6\\xa0\\x91\\x82\\x3f\\xf7\\xe5\\xf9\\x6e\\x59\\x3a\\xee\\x57\\xfe\\xf0\\xeb\\xde\\x26\\x7c\\x40\\x39\\xb9\\xb8\\x9b\\x2e\\x4e\\x3d\\xc1\\x69\\x2b\\x73\\x22\\x10\\xb4\\x43\\x52\\x80\\xe8\\xd9\\x22\\xae\\x33\\x91\\xfd\\xf0\\xec\\x3b\\xf4\\xa9\\x66\\x82\\x56\\x36\\x8e\\x2d\\xdb\\xe0\\xe5\\x95\\xc5\\x44\\x31\\x6f\\xe7\\xa1\\x53\\xc8\\x47\\xad\\xe5\\xa8\\x40\\x58\\x0d\\xb1\\x61\\x47\\x30\\x33\\x75\\xdc\\x52\\x5e\\x02\\xb6\\xb5\\x55\\xe0\\x0a\\x78\\x7b\\x04\\xf1\\xe1\\x10\\xd6\\x34\\x45\\x1e\\xad\\x2f\\x61\\x07\\x8e\\x41\\xa4\\xa7\\x3d\\x4b\\x1b\\xee\\x76\\x22\\x36\\x50\\xc1\\xfd\\x65\\x6c\\x1f\\x90\\x65\\xdf\\x16\\x76\\x8d\\xd4\\xdd\\x74\\xac\\x2a\\x34\\x68\\xd6\\x1e\\x25\\xd7\\x43\\xf3\\x03\\x24\\xfa\\x04\\x7c\\xe6\\x80\\x41\\xdf\\x05\\xb9\\x11\\x1e\\x7b\\xaa\\x0d\\x2e\\xcc\\xb5\\xa9\\x1d\\x8e\\x79\\x70\\x23\\x02\\x5b\\x5f\\x0b\\x1e\\x0c\\x95\\x12\\x59\\x1f\\x49\\x4b\\x98\\xdd\\xbb\\xee\\xa8\\x68\\xb4\\x8e\\x5d\\x21\\x10\\xfd\\x2a\\x10\\x22\\x47\\x26\\x41\\xa1\\xe3\\xb1\\x52\\x82\\x40\\x77\\x40\\x94\\xdb\\x8d\\x31\\x36\\xdd\\x74\\x93\\x06\\x03\\x12\\x3f\\x04\\xba\\x33\\xbb\\xd3\\xba\\xb3\\xf4\\x6c\\x51\\xc2\\xb3\\x88\\xe9\\x21\\x43\\x3d\\x9c\\x6a\\x30\\xbc\\x7d\\xca\\x50\\xb4\\xaa\\x63\\xcd\\x63\\xad\\xa3\\x6d\\x34\\xec\\xfc\\xe9\\x58\\x3c\\xd9\\x40\\x88\\x75\\x6a\\x3a\\x51\\xc3\\x5a\\xe0\\xe0\\x7a\\x16\\x54\\xe6\\x7f\\xd0\\x5c\\x40\\x0c\\x63\\x50\\x27\\x82\\xb9\\xc3\\xae\\xa9\\x28\\x80\\x66\\xb4\\x82\\x76\\x8f\\x9e\\x1f\\x31\\x54\\x8a\\xeb\\xae\\xeb\\xb0\\x12\\x16\\xfd\\x0e\\xc8\\x27\\x44\\x20\\x59\\x5b\\x0a\\x10\\x54\\x44\\xa0\\x8a\\x0a\\xe9\\x30\\x94\\x64\\x01\\x32\\x9b\\x16\\x82\\x48\\xbd\\x37\\xa5\\x65\\x8f\\x0a\\xbd\\x5d\\xe0\\xfc\\x01\\xe8\\x55\\x5c\\x3d\\x5e\\xe1\\xd1\\x28\\x76\\x1d\\x5f\\x49\\x81\\x0a\\x35\\xba\\x27\\x0c\\x0a\\x76\\x42\\x82\\xfd\\x81\\xac\\x01\\x38\\x1e\\x6f\\x4b\\xd4\\x0c\\x25\\x00\\x53\\x0a\\xf6\\xf0\\x10\\x4a\\x59\\x7b\\xb8\\x89\\xf5\\xbd\\x11\\x64\\xca\\x04\\x6a\\xa1\\x3a\\x99\\xbb\\x59\\x3d\\xdd\\x16\\x57\\x8a\\x16\\x9a\\x99\\xb0\\xe6\\x50\\xc2\\x4a\\x21\\x5f\\x4a\\x8a\\x59\\xbf\\xb7\\x6d\\xb3\\x21\\x08\\xd3\\x9c\\xf2\\xad\\xcb\\x46\\xab\\xb2\\x74\\xaf\\x8b\\xf1\\xc5\\x3e\\xdf\\x1d\\x79\\x13\\x06\\x09\\x45\\x43\\x21\\xa6\\x62\\x56\\x28\\x00\\x83\\x82\\xa7\\x70\\xd1\\xe7\\x79\\xab\\x3e\\x1f\\xca\\x22\\x10\\x72\\xc6\\x27\\xf2\\x91\\x64\\xb7\\x50\\x54\\xdc\\xc8\\xbf\\x4f\\x9f\\xb2\\x81\\xc4\\x34\\x76\\xf4\\xce\\xed\\x91\\x58\\x5b\\x40\\x52\\x16\\x01\\x71\\x79\\x14\\x80\\x40\\xf4\\xd6\\x48\\x3b\\x1a\\x63\\xfa\\x06\\x15\\x88\\x63\\x59\\xfc\\x0e\\x57\\xe9\\xcf\\x9f\\xa5\\x67\\xdd\\x66\\x5d\\xf0\\xe6\\x76\\x96\\xca\\x9c\\x57\\x1a\\xc3\\x40\\x6a\\x3b\\x0c\\x26\\xa4\\x4d\\xad\\x95\\x48\\xed\\xa1\\x7b\\xec\\x28\\xa2\\x7e\\x96\\xaa\\x1e\\x58\\x42\\x2e\\x37\\x48\\xa4\\x05\\xef\\x35\\x36\\x47\\x0d\\xa3\\x35\\x48\\x20\\x9d\\xdf\\x9f\\x75\\x1d\\x36\\x63\\xb2\\x91\\x95\\x67\\x11\\x0f\\x0d\\x81\\xbe\\xaa\\x66\\xf3\\xb9\\xe2\\xd1\\x21\\xda\\x42\\xb7\\x4d\\x33\\x19\\x9f\\x88\\x96\\x12\\x35\\x6b\\x9f\\x95\\xb3\\x45\\xa5\\x12\\xd3\\xc6\\xb8\\x47\\x6e\\xf0\\x2b\\x0e\\x61\\xb5\\xa2\\x1e\\xbb\\x64\\xf2\\xb5\\xa8\\xe3\\xd4\\xe8\\xa9\\xc9\\xd2\\x03\\x13\\x1a\\xfb\\x9c\\xae\\xae\\x1d\\x63\\xd7\\x5b\\x09\\x3b\\x0f\\x63\\x65\\xd5\\x06\\x62\\xed\\x4f\\xc9\\x35\\xb1\\xf1\\xa7\\xfc\\x2f\\x09\\xeb\\xee\\x60\\x24\\x18\\x6d\\x59\\xd5\\x87\\xc5\\xba\\x30\\xe9\\xfe\\x10\\x22\\x54\\xb0\\xb4\\xac\\x3c\\x06\\xae\\xdd\\x31\\xa9\\x03\\x93\\xfa\\x1c\\xb4\\x09\\xf8\\xc5\\x11\\xb0\\xa4\\x62\\x50\\x63\\x59\\x96\\x00\\xe9\\x20\\x5d\\xcd\\x67\\xb0\\x2c\\x42\\x20\\xbb\\x8e\\x9f\\x6d\\x75\\xd3\\xdb\\x43\\xba\\xea\\x00\\xda\\xe3\\xab\\x5a\\xdd\\x43\\x48\\x9d\\x3e\\x76\\x0c\\xc5\\x5d\\x43\\x8b\\xb0\\x74\\xbb\\xbe\\x34\\x52\\x5d\\xb6\\xed\\x3a\\x90\\x8e\\x19\\xfd\\xb3\\x3a\\x73\\x6c\\x11\\x37\\x3a\\x6c\\xd2\\xad\\xcd\\x97\\xeb\\x60\\x04\\x4c\\x15\\x0f\\x1e\\x59\\x61\\x00\\x8a\\x9d\\x2b\\x66\\x8c\\xe1\\x85\\x08\\x53\\xc9\\xd8\\x36\\xfd\\xa4\\x0e\\x6f\\x88\\xc2\\x1d\\xec\\x68\\x48\\x4c\\xfd\\x5a\\xb8\\x2a\\xd6\\x20\\xbb\\x30\\x32\\xb6\\x6a\\x68\\x86\\x1f\\xf3\\x88\\x9b\\x62\\x57\\x64\\xe8\\x91\\xcd\\x80\\x19\\x08\\x09\\x41\\x83\\x7b\\xa6\\xe5\\x15\\x70\\x57\\x75\\xa8\\xdd\\xfd\\x70\\x1b\\xd4\\x42\\x43\\xda\\x98\\x96\\x64\\x09\\x6d\\x56\\x8c\\x41\\x1b\\x8d\\x35\\x1f\\x65\\x64\\xd7\\x34\\x91\\x45\\x6b\\x6c\\xbb\\x36\\x0b\\x8e\\x22\\xb8\\xc6\\x9f\\x6d\\x28\\xda\\x0f\\x28\\x79\\x14\\x1d\\x0e\\x5a\\xc7\\x9a\\x46\\x4e\\x9f\\x8e\\x45\\x99\\x27\\xc4\\x66\\x3d\\xd0\\x7e\\xa0\\xd2\\xf0\\xa3\\xe1\\xf6\\x5e\\x40\\xd1\\x32\\xc5\\x64\\x20\\x4b\\x81\\x1d\\x58\\xd8\\xb4\\xfb\\x41\\x5a\\x6d\\x8f\\x8e\\x16\\x80\\xd6\\x37\\x4e\\x7c\\x3a\\x05\\x8a\\x11\\x20\\x36\\x54\\x1b\\x19\\x56\\xd8\\xc8\\x01\\x33\\xa6\\x8d\\x6c\\x1a\\xce\\x16\\x2d\\xa4\\xa6\\x87\\x06\\xb5\\x55\\x82\\xd4\\x03\\xe9\\x8a\\x71\\x16\\x28\\xc6\\x9c\\xb2\\xf2\\x72\\x0e\\xc2\\xb1\\x4d\\xe2\\x80\\x66\\x79\\xd5\\x91\\x4d\\x90\\x41\\x81\\x32\\x13\\x82\\x0d\\x1e\\xab\\x1c\\x32\\x1c\\xc5\\xea\\x88\\x3a\\x64\\x5f\\x12\\x1c\\x0d\\x2e\\xa4\\x43\\x93\\x34\\x63\\x8d\\xd1\\x24\\x4f\\xfa\\x60\\x33\\xb0\\xfe\\x26\\x17\\x40\\xbc\\xdd\\xfd\\x3c\\x80\\xa2\\xd7\\x9d\\xdc\\xac\\xac\\x9a\\x51\\xb9\\x74\\xd5\\x72\\x8c\\x15\\xb4\\xf8\\x9f\\x03\\x15\\x5e\\x29\\x9b\\x32\\x14\\x0d\\x0f\\x81\\x7d\\x95\\xab\\x59\\xa5\\xea\\x16\\xde\\xa8\\xa1\\xad\\x57\\xd1\\x6f\\x56\\xe6\\x3f\\x96\\x56\\x15\\x9e\\xf9\\xd8\\x28\\xad\\xdd\\x46\\x3b\\x0c\\x29\\xb5\\xef\\x20\\xc6\\xd5\\x55\\x40\\x1f\\xc1\\xa9\\xd6\\x03\\x3d\\x86\\x4f\\xdd\\x15\\xbe\\x27\\xb4\\xd7\\xb6\\xb9\\xe3\\x2e\\x37\\xa1\\x05\\xaa\\x47\\x2c\\x02\\x21\\xe4\\x66\\xbb\\x67\\xc7\\x29\\x43\\x51\\xdb\\x99\\x56\\xeb\\x10\\x52\\xbb\\x3f\\x46\\xfe\\x82\\x4f\\xf1\\xbb\\xcd\\xb0\\x68\\xb4\\x0b\\x16\\x77\\xc9\\x85\\x58\\x8b\\x01\\xfe\\xfe\\x0e\\x14\\x81\\x93\\xa5\\x4e\\x0e\\xd0\\x8a\\xdc\\xbc\\x83\\x0a\\xfa\\x21\\x4c\\xb0\\x8d\\x6d\\xe5\\x4b\\xc6\\x7d\\x3f\\xcf\\xf8\\xef\\xd7\\x1e\\x0b\\x98\\xbc\\xde\\xd0\\xde\\x89\\x1c\\xb7\\x8a\\x7a\\x38\\x71\\xb0\\xde\\x50\\xe0\\x44\\xec\\x42\\x75\\xd4\\x0d\\x2b\\x4a\\xd5\\xd1\\xe7\\x7a\\x3a\\x97\\x70\\x01\\x8f\\x11\\x3b\\x69\\x98\\x6d\\xd2\\xb0\\x51\\xec\\x45\\x86\\xc5\\x29\\x89\\x78\\x09\\xf1\\xc4\\xb1\\x08\\x54\\xcf\\x82\\x95\\x52\\x1c\\xa3\\x84\\x70\\xe8\\x09\\xc7\\xee\\xcc\\x41\\xf3\\x58\\x29\\x9e\\x32\\x96\\x20\\xe6\\x2e\\xc2\\xca\\x31\\x90\\xbb\\xb1\\x55\\xb0\\x5d\\x63\\x10\\xd3\\x0b\\xa9\\xc2\\x29\\x6c\\x80\\x25\\x24\\xb2\\x0b\\x1e\\x2d\\xa5\\x41\\xe9\\x3f\\x6e\\x07\\xbd\\xe0\\xc9\\x13\\xe9\\x48\\x39\\x96\\xfb\\x7b\\x75\\x2c\\xba\\x86\\x18\\x6c\\x8d\\x58\\x3b\\xc6\\x71\\x67\\x2a\\x4e\\xce\\x2c\\x7a\\xa3\\x28\\x62\\x51\\x61\\xd6\\xad\\x93\\xca\\x90\\x48\\x18\\x03\\x9b\\x7c\\x32\\xa2\\x68\\xac\\x14\\xce\\x31\\xf6\\x1f\\xe9\\x2f\\x10\\x48\\x8b\\xf3\\x99\\xfe\\x2b\\x08\\x12\\x87\\xd7\\xa4\\x4d\\x77\\x20\\x60\\x9a\\xef\\x56\\xaf\\x65\\x89\\x9d\\x6f\\x70\\x67\\x14\\x41\\xce\\x3d\\x74\\x86\\x3c\\x60\\xad\\xa3\\x7d\\x57\\x9b\\x8c\\xc4\\x82\\xf5\\xb6\\xa5\\x43\\x2c\\xfd\\x30\\xdd\\xf1\\xa8\\xdb\\xc5\\xad\\xff\\x3d\\xeb\\xb6\\xd1\\x7f\\x07\\x15\\xe3\\x06\\x6a\\x8d\\xf6\\x55\\x91\\x78\\xc9\\x96\\x1e\\x68\\x97\\x03\\xc7\\xd8\\x0c\\x45\\x51\\x0d\\x8c\\xbc\\x76\\x14\\x7b\\x77\\xc8\\xe0\\xff\\x0f\\x1e\\xd0\\x95\\x25\\x85\\xce\\xb6\\xce\\x58\\x34\\xde\\x55\\xbd\\xb9\\x85\\x4d\\xc9\\xf4\\x56\\x40\\x5f\\xae\\x87\\xac\\xc6\\x63\\x9c\\x78\\x6c\\x83\\x3f\\x11\\x4c\\x8f\\xfe\\xa2\\x6a\\x8f\\x12\\xee\\xea\\x3e\\x16\\x1d\\xe2\\x7d\\xf2\\x18\\x8a\\xee\\x96\\xbb\\xa0\\xc2\\xe3\\xd5\\x24\\x45\\x9a\\xfb\\x4c\\xf6\\xb8\\x55\\x7a\\xed\\x64\\xc5\\xd7\\x3d\\x96\\x7b\\xc2\\x09\\x0b\\x0a\\x94\\x72\\x70\\x1b\\x24\\x6d\\x0c\\xb7\\x39\\x42\\xe2\\x7a\\x8f\\xff\\x1a\\xa2\\xc1\\xc6\\x04\\xff\\x61\\x4b\\x7a\\xa9\\x56\\x62\\x23\\xb4\\xa6\\xaf\\x8d\\x39\\xb2\\xe5\\xea\\x4a\\xea\\x46\\x82\\x92\\x6e\\xec\\x71\\xad\\x8a\\x3c\\x32\\xe1\\xc1\\x78\\xd3\\x73\\x1e\\xc5\\xfc\\x53\\xca\\x9d\\x5e\\x90\\xca\\x52\\xfd\\x8a\\x06\\xfd\\x04\\xf9\\x6f\\x38\\xfb\\x37\\xca\\x5c\\x33\\x1a\\x83\\x6f\\x39\\x2d\\x78\\x1d\\x4e\\xa2\\x55\\x7e\\x33\\x54\\xfb\\x7d\\xd9\\xb6\\xa0\\x0a\\x3b\\x8b\\x25\\x55\\x4c\\x03\\x03\\x48\\xc1\\x10\\x88\\xd3\\xd2\\x38\\x70\\xf0\\xe2\\x89\\xf8\\xd5\\xde\\xb5\\xa6\\x03\\xa2\\x52\\x4b\\x04\\x0f\\xb0\\x7b\\x58\\x6f\\xef\\xb1\\x2a\\x11\\xe4\\xab\\x44\\xdb\\x46\\x42\\x29\\xc4\\x73\\xac\\x3d\\xa1\\xb0\\xc3\\xa6\\xd7\\x02\\xec\\xdd\\x89\\x7e\\x04\\x3b\\xdb\\x9c\\xb9\\x36\\x70\\xd8\\x30\\x6b\\xaf\\x89\\x14\\x4c\\x10\\x9f\\xc3\\x39\\x19\\xde\\x97\\xd5\\x15\\xcc\\xa1\\x30\\xb0\\x8d\\x56\\xf2\\x54\\xe5\\x19\\x3b\\x4a\\x37\\x65\\x9d\\x82\\x99\\x33\\xab\\xe1\\xe1\\x71\\xea\\xbe\\xa4\\x32\\xaf\\x1d\\x25\\xe4\\x50\\xda\\xe7\\x31\\x26\\x0e\\x2b\\xfe\\x7e\\x3b\\x64\\x8b\\xb7\\xe7\\x60\\x19\\x42\\xa8\\xd9\\xd1\\xde\\x89\\xf9\\x37\\xb5\\x60\\x7f\\xef\\x82\\x1b\\x02\\x00\\x28\\x55\\x39\\x70\\xee\\x3b\\xc4\\xfa\\x9a\\xec\\x1f\\xfe\\xd3\\x6a\\xe0\\xe3\\xa5\\xef\\x7f\\x0e\\xef\\x07\\x1e\\xf2\\xe3\\x3a\\xb6\\xfa\\xfd\\xca\\x70\\x6f\\xf2\\xec\\x2d\\x05\\x02\\xea\\x7f\\x55\\xd0\\xdc\\x00\\xf8\\xef\\xdf\\x6a\\x6e\\xd5\\xda\\x08\\x4f\\x3d\\xff\\xd3\\xfb\\x4d\\x01\\x44\\x3c\\xcf\\xf6\\xa6\\xe3\\xd7\\xdb\\xdd\\x45\\xb4\\x89\\x17\\x4b\\x35\\xc0\\x35\\x91\\xb8\\x16\\xc2\\xd6\\xd8\\xc4\\x1b\\xdd\\x4a\\x7b\\x6e\\x09\\x80\\xce\\xda\\x29\\xe2\\x7d\\x45\\x27\\x47\\xe0\\x61\\x82\\x4c\\x29\\x59\\x70\\xc9\\x3b\\x63\\x16\\x77\\x6d\\xb5\\x71\\x26\\xd9\\xcf\\x34\\x91\\x04\\x53\\x8b\\x8c\\x2a\\xfa\\x19\\x44\\x43\\x05\\x57\\x2c\\x28\\x3b\\x24\\x2f\\x72\\xca\\x6b\\x50\\x51\\x8f\\x8e\\x20\\x5c\\x84\\x12\\x48\\x48\\x0e\\xcf\\xaf\\xda\\xe5\\xdb\\x38\\xf8\\x71\\x87\\x37\\x20\\x6e\\xbf\\xc5\\xfd\\x42\\xb2\\xb6\\x2b\\xda\\x2d\\xd4\\xc6\\xa7\\x3c\\x8e\\x96\\x7c\\xd3\\x96\\x26\\x87\\x35\\xf7\\xd6\\x6c\\xeb\\xa5\\xb3\\x25\\xe4\\x29\\x90\\x11\\x72\\xc0\\xfc\\xbd\\x4c\\x9c\\x3d\\xf1\\x35\\x8f\\x38\\x5f\\x59\\xab\\x86\\xed\\xea\\x4d\\x42\\xe4\\xf9\\x80\\x5a\\xaa\\x5c\\x66\\xad\\x9d\\x13\\xef\\x4c\\xd6\\xa6\\xc5\\x2a\\xa9\\x77\\x99\\x00\\xfd\\xe8\\xc7\\xe1\\xad\\xcf\\xc0\\xc4\\xff\\xdd\\x20\\x6e\\x1b\\x71\\x8a\\x7c\\xd5\\xf3\\x0e\\x8f\\x29\\x9e\\xbf\\x05\\x6b\\x77\\x3a\\x3c\\x84\\x13\\x91\\x16\\x66\\x88\\x23\\xaa\\x9f\\xab\\x49\\x3f\\xad\\xba\\xf4\\x32\\xd5\\x43\\xdb\\xd6\\xd8\\x9e\\xf9\\x2d\\xad\\x03\\xef\\x31\\x90\\x92\\x1b\\xf5\\xb6\\x3d\\x1b\\x37\\xb5\\xfe\\x2e\\x35\\x24\\x86\\xf4\\x37\\xd7\\x83\\x57\\x23\\xde\\x43\\x7a\\xf3\\x36\\xf1\\xdf\\x15\\xe0\\x7f\\x35\\x91\\xea\\x35\\x2a\\xf1\\x9f\\x2f\\x83\\xc1\\x3e\\xaf\\x96\\x07\\x38\\x82\\xe6\\x96\\x03\\x54\\x2f\\x4d\\xc7\\x65\\x81\\xc6\\xcc\\xb5\\xae\\x2d\\xdb\\x63\\xc6\\xc8\\xb1\\xc1\\x2b\\x41\\x2c\\xb3\\x62\\xd8\\x6d\\xba\\xd4\\x68\\x51\\xc6\\x81\\x4b\\x09\\x97\\x71\\xba\\x66\\x2c\\xf1\\x91\\xfb\\xca\\x14\\xab\\xd0\\x1b\\xed\\xf1\\xc1\\x7a\\xf1\\x60\\xe2\\xf3\\x43\\xa9\\x9c\\xc8\\xbb\\xa1\\xc4\\x84\\x8a\\x0b\\xb4\\xf1\\xf5\\x21\\x61\\x96\\x28\\x3e\\xdd\\x3e\\xa0\\xcd\\xee\\x51\\x11\\x61\\x91\\x3e\\x1b\\xd3\\x7e\\xa1\\xe6\\xd0\\x25\\x9e\\xac\\xf4\\xd0\\x54\\x26\\x1e\\x61\\x56\\x1b\\x9e\\x69\\x81\\x78\\x38\\x2d\\xcf\\x4d\\x07\\x78\\x39\\x3e\\xbb\\x9b\\x1e\\xfe\\x0c\\xf2\\x75\\x0a\\x6c\\x5b\\xaf\\x6b\\xdb\\x11\\x55\\x5e\\xc6\\xd9\\x12\\x3c\\x52\\xfc\\xe1\\x9a\\xce\\x99\\x59\\x3c\\x8f\\xbc\\x5c\\xbf\\x7f\\x28\\x17\\x2f\\x53\\x3c\\x38\\x25\\x2b\\xc7\\x55\\xe2\\x1d\\x97\\xf0\\x06\\xf0\\x1b\\x0d\\xf8\\xf9\\x33\\x6e\\xfd\\x72\\x7d\\xf8\\x11\\xc0\\x57\\x75\\xe0\\xf3\\x8e\\xaf\\x82\\xdb\\x7d\\xb7\\x9d\\xd1\\xa6\\x31\\xba\\x6b\\xb6\\xa4\\x8f\\x2c\\xa3\\xec\\xfb\\x47\\x5a\\xf1\\xd8\\xe2\\xb9\\x59\\xf7\\xef\\x46\\xf1\\x4a\\xc4\\x2b\\x17\\x9f\\x37\\x9a\\x9d\\xe3\\xb4\\xd3\\x62\\xa5\\xb6\\x05\\x66\\x31\\xe2\\x09\\x65\\x9a\\x3c\\xda\\xe0\\xff\\x50\\x24\\xde\\x41\\xf1\\x2e\\xf7\\x8d\\x9a\\x99\\x40\\x3c\\x8e\\xc5\\x36\\xde\\xb2\\xae\\x1b\\x09\\x90\\x62\\xf9\\x68\\x52\\x9c\\x14\\x31\\x0f\\x5b\\xcf\\xc1\\x53\\x3c\\x31\\x93\\xe3\\xe9\\xbf\\xd7\\x88\\xdb\\x4b\\xbc\\x9f\\x3a\\xbc\\x0c\\x59\\x77\\x6d\\x21\\x8a\\xd0\\x42\\x45\\xd3\\x91\\x5b\\x31\\xda\\x82\\x75\\xd5\\x5a\\xee\\x2f\\x07\\xc6\\x65\\xb0\\x85\\xf2\\x6b\\xcb\\xb8\\xeb\\xd8\\xc1\\x18\\x72\\x7c\\xbd\\xa2\\x7e\\xbd\\x4f\\xbc\\x45\\xf1\\x96\\xc4\\xab\\x83\\x73\\x65\\xab\\xb1\\x63\\xeb\\x34\\x30\\x86\\x31\\x55\\x27\\x3e\\xdf\\x62\\x61\\x3d\\xef\\xcf\\xf2\\x75\\xe5\\x9b\\x38\\x07\\x4e\\xdb\\xa9\\x91\\xdb\\x3b\\xef\\x1d\\xad\\xd1\\xbe\\x6e\\xcc\\x94\\x69\\xff\\xac\\xa4\\x56\\x61\\xe3\\xfd\\x90\\x21\\x1e\\x49\\xbc\\x91\\x3d\\x35\\xfb\\xb1\\xc3\\x1b\\x2e\\x3b\\x32\\xea\\x72\\xdc\\x15\\xf7\\xef\\x53\\xe2\\x9d\\x15\\xe7\\x40\\x1c\\xdf\\xd2\\x58\\xa1\\x2e\\xba\\x31\\xd5\\xb0\\x84\\x13\\xe6\\x3c\\xe6\\x0b\\x91\\xfc\\x22\\x4d\\x57\\xcf\\xdc\\x5f\\x74\\x37\\x34\\xab\\xcf\\x23\\x32\\x66\\xfb\\xc5\\x83\\xf8\\x29\\x24\\x38\\x9f\\x2f\\x17\\xdc\\x0f\\x4a\\xf5\\xe4\\xfe\\x55\\x78\\x3f\\xc0\\x3e\\x7d\\x26\\x9d\\xb1\\xeb\\xa7\\xde\\x23\\xee\\xb0\\x83\\x06\\x43\\x99\\x1d\\x1d\\x5c\\xe9\\x4a\\xda\\x91\\x55\\x5c\\xc9\\x65\\xb8\\x27\\xbe\\x0a\\x9d\\xbd\\x98\\x70\\xa5\\x9b\\x69\\x1f\\x56\\x71\\xa5\\xa1\\x45\\x8c\\xc1\\xbc\\xd5\\xa8\\xac\\xd7\\x57\\xe1\\x69\\xd5\\x29\\xbe\\xb7\\xfd\\x12\\xbe\\x89\\x8a\\xc6\\x75\\xf9\\x55\\xb0\\x42\\xb6\\x57\\x34\\x7c\\x91\\x16\\x3f\\x2d\\x05\\xee\\xb3\\x52\\xeb\\x29\\xe0\\x50\\x79\\x23\\xac\\xcb\\xba\\x89\\xf9\\xb3\\x89\\xb7\\x86\\x76\\x56\\x8f\\x60\\x3f\\x2b\\xac\\x3f\\x25\\x02\\x0b\\x4a\\xcf\\xba\\xde\\x9d\\x11\\x87\\x75\\x22\\xf9\\x26\\x70\\x3b\\xf1\\xbe\\xfd\\x75\\xcc\\x47\\x35\\x44\\x06\\x72\\x18\\x3e\\xae\\xe1\\x19\\xd5\\xec\\xf5\\x6a\\x2c\\x08\\xf7\\x43\\x60\\x6a\\x15\\x9f\\x73\\x57\\xd3\\xff\\xa0\\xbe\\x88\\xd2\\x5e\\xd3\\xb8\\xd2\\x9d\\xb4\\x02\\xaa\\xb8\\xd2\\xc4\\x7e\\x24\\xde\\x0e\\xf6\\x93\\xf7\\x09\\x5c\\xc9\\xb8\\x5f\\x57\\xff\\xea\\x6a\\xea\\xd0\\xa5\\x53\\x1d\\x69\\x9d\\xb9\\xdc\\xab\\x9e\\x92\\x9c\\x83\\x4c\\xc0\\x70\\x2d\\xc3\\xb5\\xb6\\x41\\x6b\\xc1\\x27\\xeb\\xdc\\xc6\\xd0\\xe8\\x1c\\x43\\x53\\x1e\\x51\\x97\\xeb\\x3c\\x69\\xd2\\x29\\x6d\\xff\\x58\\xd2\\xf9\\x1c\\xef\\xab\\x67\\x73\\x1a\\xab\\x21\\xe5\\xb8\\x4b\\xb6\\xfb\\xd5\\x5a\\x2e\\x5d\\x9a\\x8a\\xd5\\x13\\x53\\x01\\x67\\xca\\x6b\\x8d\\xc6\\xf5\\xb3\\xb3\\xd4\\xbf\\x32\\x2f\\x8b\\xc3\\xfd\\x0d\\xd2\\xec\\xac\\xdd\\xab\\x40\\x92\\x0e\\x59\\xca\\xc2\\x22\\xd3\\xe2\\x59\\x3e\\xe1\\xf0\\x3c\\xb5\\xd4\\x93\\xea\\xf2\\x76\\xfb\\xdf\\x4f\\x67\\xb1\\x3c\\xee\\xf6\\x72\\x1f\\xe3\\xe3\\x6a\\x1c\\xfa\\xba\\xf9\\xbb\\xce\\x54\\xbb\\x66\\xad\\x3c\\x98\\xef\\xd8\\xbf\\x8d\\xa4\\x87\\x22\\xd7\\xd2\\xc9\\xf1\\x95\\x9b\\x64\\xc8\\xbd\\x9e\\xf3\\x20\\xbe\\x0a\\xea\\x6a\\x3f\\x51\\xe4\\xaa\\x2a\\xe1\\x9e\\x0a\\x5e\\x39\\x0b\\x73\\xc4\\x5d\\x5f\\x79\\x7d\\x84\\x7d\\xda\\x38\\xf2\\xf8\\xb5\\xd1\\x92\\x78\\x4f\\x14\\x78\\xf2\\xf6\\x1d\\x6b\\x23\\x9d\\x61\\x29\\x1a\\x56\\x76\\x83\\xfe\\x2a\\x31\\x41\\x25\\xf1\\xa6\\x59\\x9c\\x6c\\x34\\xba\\x1f\\x23\\xf8\\x59\\xd1\\xe6\\xbc\\xbc\\x1a\\xbc\\x58\\x3a\\x31\\x71\\x35\\xab\\xdb\\x9c\\xde\\xd0\\xe8\\x95\\x1a\\xcf\\x15\\xed\\x67\\xa5\\x9a\\xf3\\x28\\x34\\xd8\\x50\\x92\\xfe\\xde\\xb2\\xaa\\xe8\\xb9\\x1e\\xd9\\xdf\\x73\\x56\\x45\\xae\\xf5\\xe9\\x40\\x56\\x9a\\xed\\x22\\xf3\\x01\\x75\\xec\\x5c\\xd3\\x82\\xfa\\xb1\\x71\\xb0\\x31\\xb1\\x48\\x4f\\x57\\xe6\\x0b\\xe9\\xb4\\x55\\x3b\\x43\\x6a\\x5e\\x5d\\xfc\\x3d\\xec\\xa1\\x19\\xc7\\x5b\\x4a\\xc0\\x9d\\x7c\\xe9\\x0a\\xad\\xfd\\xc5\\xda\\x28\\x93\\x21\\xa6\\x05\\x8c\\xd0\\x85\\x29\\x05\\xb6\\x02\\xe4\\x39\\x88\\xeb\\x16\\x4d\\x4c\\x43\\x3a\\x12\\x6f\\x57\\xac\\x7c\\xe0\\xdb\\xf9\\x97\\xff\\x6f\\x39\\x67\\x16\\x64\\x6f\\x77\\xe8\\xa8\\xe0\\x9c\\x00\\x3e\\xdb\\x91\\xe2\\xcf\\x04\\xaf\\xf4\\x52\\x1d\\xbe\\x32\\x41\\xb7\\x75\\xaf\\x4c\\x54\\xeb\\xdc\\x2b\\x93\\x9c\\xd2\\xfa\\xca\\x64\\xd5\\xc1\\xbd\\x32\\xc5\\x7a\\xd8\\x23\\xf2\\x99\\x29\\xc7\\x2b\\x33\\x14\\x66\\xc9\\x2b\\x33\\x35\\x67\\xcb\\x2b\\xb3\\x5c\\x4a\\xfb\\xf7\\x3e\\xdb\\xa9\\x66\\x94\\x9b\\x74\\x19\\x0a\\x65\\x49\\x94\\x40\\x20\\x07\\x83\\x0d\\x2b\\xd6\\xec\\xdf\\x6c\\x2f\\xe9\\xbf\\x8b\\x09\\x52\\xac\\x0a\\xe5\\xde\\xd2\\xc4\\xb3\\x20\\x9b\\x23\\x85\\x0e\\x30\\xfc\\xdf\\xc0\\xb3\\x83\\xbd\\x4a\\xf6\\x65\\x67\\xc9\\x7b\\x5d\\xca\\x67\\xe1\\x7f\\xe9\\xe2\\x20\\xe6\\xd8\\x0c\\x7e\\x90\\xd3\\x20\\xba\\x6e\\x4c\\xc1\\x67\\x6e\\x84\\x55\\x67\\xb0\\x84\\xf8\\x28\\x19\\x0c\\x26\\x1e\\xd2\\x35\\x9b\\x2d\\x31\\x0b\\x0a\\x64\\x8b\\xcf\\xf0\\x7b\\x7b\\x27\\x8e\\xec\\x39\\xab\\x82\\x5b\\xce\\xa1\\xe9\\xd5\\x78\\x72\\xd9\\x6c\\x81\\xc4\\x4f\\xa0\\xfc\\x16\\x23\\x79\\xe7\\x5b\\xb0\\x65\\xdc\\x8f\\x7d\\xda\\x67\\xee\\x4b\\x0c\\x4f\\x34\\x82\\xf3\\xf8\\xe5\\xac\\x4f\\x32\\x9f\\xe4\\xd4\\x58\\xcc\\x92\\x8c\\x81\\xb0\\xd5\\xa6\\x06\\x2d\\x12\\x8f\\xac\\x18\\x3f\\x9d\\xca\\x8d\\x60\\x38\\x72\\xf6\\xa7\\x6c\\x22\\x9e\\x36\\xd2\\x19\\xf4\\x82\\xf1\\x80\\xa2\\xaf\\x44\\xf1\\x4f\\x9e\\x36\\x80\\x11\\x36\\x43\\xee\\x0d\\x9d\\x79\\x96\\x0c\\x2e\\x18\\xa0\\xcd\\x91\\x01\\x2d\\x3e\\xf1\\xa8\\x17\\xcd\\x7c\\x58\\x08\\xe3\\x2d\\xcf\\x91\\x81\\xc5\\xf2\\x77\\x34\\x7f\\xbd\\x05\\x1e\\x8f\\x6c\\x41\\x76\\x96\\x84\\x42\\x30\\x85\\x4f\\xce\\x7e\\xd7\\xce\\x97\\x37\\x37\\x1e\\xfc\\x05\\xbd\\x6a\\xe6\\x44\\xbf\\xd0\\x7b\\xfc\\x35\\x56\\x12\\xfe\\xff\\x31\\x77\\x8b\\x06\\x69\\xe0\\x25\\xf4\\x5b\\x89\\xe7\\xb8\\x52\\x65\\xee\\xab\\xf2\\x41\\xb9\\x0a\\xdb\\x1d\\x74\\xd6\\x09\\xdb\\x42\\x80\\xdb\\x2a\\xcd\\xc0\\x67\\x10\\x12\\xd9\\x12\\x22\\xfc\\x36\\x0d\\x87\\x9c\\xf3\\x15\\xbe\\xc0\\x37\\x38\\x66\\x97\\x29\\xd8\\x6d\\xdc\\x56\\x47\\x7c\\x72\\xcb\\x51\\x13\\xf1\\x85\\x5f\\x01\\x21\\x05\\x44\\x81\\xff\\x46\\x12\\x80\\x14\\xe1\\xad\\xcb\\x51\\x82\\xc7\\xbf\\x49\\xf6\\x5d\\x57\\x45\\x6a\\x48\\x5d\\x78\\x5d\\x86\\xf4\\xea\\x23\\x31\\xa8\\xdb\\x40\\x22\\x90\\xcc\\x3f\\x25\\xe0\\x10\\x90\\x50\\xd0\\x30\\xb0\\x70\\xf0\\x08\\x88\\x48\\x22\\x91\\x3b\\x1c\\x7d\\x54\\x34\\x2e\\xf3\\x0e\\x98\\x62\\xc4\\x8a\\xeb\\x84\\xb7\\xff\\x76\\x19\\x99\\x27\\xe3\\x95\\xec\\x62\\x86\\x40\\xc4\\xfc\\x6b\\x84\\x44\\xa6\\x50\\x69\\x74\\x06\\x93\\xc5\\xe6\\x70\\x79\\x7c\\x81\\x50\\x24\\x96\\x48\\x65\\x72\\x85\\x92\\xb2\\x8a\\xaa\\x9a\\xba\\x86\\xa6\\x96\\xb6\\x8e\\xee\\xea\\x60\\x60\\x68\\x64\\x6c\\x42\\x47\\xde\\x79\\x6e\\x61\\x69\\x65\\x6d\\x63\\xdb\\x9e\\x0e\\x8e\\x4e\\xce\\x2e\\xae\\x6e\\xee\\x50\\xec\\xef\\x0b\\x28\\x52\\xac\\x44\\xa9\\x32\\xe5\\x36\\xdb\\x62\\xab\\x6d\\xb6\\xdb\\x41\\xa8\\x4f\\xfe\\x0f\\xc4\\x2e\\xbb\\xed\\x51\\x69\\xaf\\x7d\\xaa\\x88\\x54\\xab\\x51\\x6b\\xbf\\x03\\x1c\\xef\\xaa\\x7d\\xaa\\xba\\xe1\\xa6\\x5b\\x6e\\xbb\\xe3\\xae\\x7b\\xee\\x7b\\xe0\\xa1\\x47\\x00\\x20\\x08\\x0c\\x81\\xc2\\xe0\\x08\\x24\\x0a\\x8d\\xc1\\xe2\\x32\\x98\\x3d\\xcf\\xe1\\xaa\\x08\\x59\\x6c\\x75\\x3d\\x45\\xe3\\x5e\\x26\\x6a\\x4a\\xa4\\xa2\\x5e\\x91\\x29\\x54\\x1a\\x9d\\xc1\\x6c\\x51\\x2f\\x9b\\xc3\\xe5\\x75\\x71\\x73\\xf5\\x16\\x6d\\x07\\xc2\\x5a\\x3b\\x38\\xf2\\x1b\\x14\\x08\\x45\\x62\\x23\\x77\\x8f\\x6c\\x8d\\x42\\x41\\xfd\\x10\\x7a\\x83\\xd1\\xd9\\xc5\\xd5\\xc5\\xde\\x2c\\xcb\\x4e\\x0d\\xb5\\xc3\\x42\\xed\\x92\\x50\\x1f\\xa3\\x5d\\x87\\x4e\\x5d\\x7a\\x66\\x19\\x0f\\xd9\\x92\\x88\\xda\\xe1\\xa1\\xfe\\x2d\\x9d\\xe5\\x45\\xc9\\xb8\\xa8\\xea\\xa6\\xed\\x66\\xf3\\xc5\\x72\\xb5\\x7e\\x96\\xbd\\xa4\\x68\\x7f\\x25\\x36\\xce\\xab\\x16\\x37\\x1d\\x15\\xa7\\x28\\xa1\\xe7\\xaa\\x0c\\x97\\xdc\\xf1\\xbe\\x7b\\xee\\x7b\\xc0\\xe2\\x8e\\x0f\\x7c\\xe8\\x98\\x04\\xf7\\x7d\\xe4\\x63\\x99\\x5e\\xc9\\x56\\xaa\\x5c\\xa5\\x0a\\x55\\x49\\x4b\\xb5\\x6a\\x1e\\xa8\\x4e\\x8d\\x1a\\x34\\x69\\xd6\\xa2\\xed\\xad\\xb6\\x3b\\x75\\xcc\\x2f\\xe4\\x74\\xdd\\x8a\\xc8\\x9c\\x9d\\x49\\xc9\\x29\\xa9\\x69\\xfe\\xfd\\x6a\\x19\\xa5\\xb2\\xef\\x58\\xac\\xd6\\xea\\x8d\\x66\\xab\\xdd\\xe9\\xf6\\xc0\\xd5\\xef\\xa6\\xbf\\x3d\\xdb\\xe3\\x71\\xb9\\xb4\\xd5\\x37\\x7d\\x78\\x74\\x7c\\x72\\x7a\\x76\\x7e\\x71\\x79\\x75\\x7d\\x23\\xad\\xde\\x6d\\xff\\xf0\\xf8\\xf4\\xfc\\x82\\xaf\\xfe\\xe4\\x8b\\x71\\xb5\\xde\\xec\\xee\\xf9\\xbd\\x7f\\xba\\xfa\\x07\\x46\\x7d\\x3d\\x1e\\x1d\\x9f\\x9c\\x9e\\x9d\\x5f\\x5c\\x5e\\x5d\\xdf\\xdc\\xde\\xdd\\x3f\\x98\\xac\\x31\\x66\\xfc\\x29\\xee\\xbe\\x33\\xbd\\xf3\\x63\\x16\\xe7\\x2e\\x58\\x1c\\xb8\\xe2\\x3c\\x8a\\xa7\\x54\\x71\\x0e\\x3a\\xc5\\x6d\\x04\\x8d\\xe3\\x46\\x71\\x8d\\x02\\x8a\\x73\\x4e\\x27\\xce\\x45\\x9a\\x38\\x57\\x5c\\xe2\\x5c\\x47\\x89\\x73\\x4b\\x24\\xce\\x5d\\x8e\\x38\\x0f\\x2c\\xe2\\x3c\\x86\\x88\\xf3\\x4c\\x21\\x4e\\x0c\\xe2\\x20\\x10\\x57\\x3b\\xe5\\xf5\\xae\\x5f\\xdf\\x3f\\xbf\\x7f\\xff\\xd2\\x6b\\x08\\x7a\\x14\\xbf\\x3c\\x60\\xcb\\x76\\x84\\xd7\\x4f\\xf0\\x79\\x55\\x3f\\xb1\\x9e\\x99\\x84\\x53\\xd8\\xf5\\x9f\\x4a\\x51\\x2e\\xaa\\xba\\x69\\x3b\\xcd\\x35\\xe9\\xbb\\x70\\x78\\x74\\x7c\\x72\\x7a\\x76\\x7e\\x71\\x69\\xb7\\xfe\\x79\\xbb\\xbb\\x7f\\x78\\x7c\\x7a\\x96\\x64\\x45\\xd5\\x74\\xc3\\xb4\\x6c\\xc7\\xf5\\xfc\\x20\\x8c\\xe2\\x24\\xcd\\x72\\xb5\\x35\\x28\\xad\\x73\\xd5\\x9a\\xc9\\xfa\\xaf\\xa9\\xd5\\xee\\x74\\x7b\\xfd\\xc1\\x70\\x34\\x9e\\x78\\xac\\x7f\\xcc\\x56\\xeb\\x00\\xf0\\x07\\x0f\\xf8\\xcd\\x76\\xb7\\x3f\\x1c\\x4f\\xe7\\xcb\\xf5\\x76\\x7f\\x3c\\xa1\\xdb\\xeb\\xfb\\xac\\x41\\x67\\x9d\\x98\\xc8\\xac\\x3f\\x25\\xcf\\x17\\xcb\\xd5\\x7a\\xb3\\xdd\\xed\\x0f\\xc7\\xd3\\xf9\\x72\\xbd\\xdd\\x21\\x18\\x41\\x31\\x9c\\x20\\x29\\x9a\\x61\\x39\\x5e\\x10\\x25\\x59\\x51\\x35\\xdd\\x30\\x2d\\xdb\\x71\\x3d\\x3f\\x08\\xa3\\x38\\x49\\xb3\\x24\\xcd\\xf2\\xa2\\xac\\xea\\xa6\\xed\\xfa\\x61\\x9c\\xe6\\x65\\x05\\xb1\\xa8\\xb1\\xce\\x6f\\xfb\\x71\\x5e\\xf7\\xf3\\x7e\\x82\\x6c\\xb0\\x63\\x63\\x33\\x76\\xe6\\xf7\\xd7\\x62\\x03\\x0d\\x1b\\x73\\xb0\\xc1\\x94\\x0d\\xa7\\xf2\\xfe\\x78\\xbe\\x7c\\xd9\\xa0\\xca\\xde\\x31\\xe8\\xef\\x44\\x44\\xc4\\x82\\x89\\xfc\\xfa\\x0d\\x9a\\x6c\\xe0\\x61\\xff\\x56\\x62\\x6d\\xd6\\x61\\x5d\\xd6\\x63\\x7d\\x36\\xe0\\x2c\\xce\\xe6\\x1c\\xce\\xe5\\x3c\\x6a\\xe0\\xfb\\x26\\x38\\xb5\\xa8\\x0d\\x22\\x71\\xde\\xef\\xf6\\xdf\\xdf\\xbf\\x7a\\x84\\x20\\x5c\\x4e\\x77\\x14\\xe2\\x35\\x60\\x69\\x28\\xb8\\x2a\\x7b\\x01\\x19\\xf0\\xf7\\x20\\xff\\xfb\\x7e\\x13\\xc4\\x92\\xa0\\xac\\x14\\x46\\x28\\xdb\\x58\\x95\\x6d\\x1a\\xb8\\x6c\\x75\\xe2\\x91\\xa5\\x4c\\xca\\xe8\\x36\\x4a\\x11\\x7d\\x05\\xa3\\x0b\\x7d\\x38\\xb0\\x7f\\xd6\\x10\\x1f\\x70\\x76\\xe5\\xfb\\xfc\\xd7\\x08\\xdc\\x31\\x70\\x5e\\xac\\x08\\xbd\\xed\\x9f\\xbf\\x51\\x5a\\xa7\\x55\\xcb\\xfc\\x0c\\x77\\x7d\\x47\\xb8\\x43\\xc9\\x6d\\xc1\\xc4\\x8f\\x69\\xe3\\xc2\\xf5\\x58\\x92\\x40\\xd9\\x4a\\x75\\xf4\\x60\\x56\\x14\\x6e\\x98\\x90\\x60\\xb2\\x20\\xe7\\x78\\x8e\\x89\\xa9\\xf5\\x25\\x11\\xaf\\x55\\x7b\\x90\\x97\\x15\\x86\\x0b\\x0d\\x67\\x9a\\x62\\xda\\x32\\x8c\\xe7\\x48\\xd6\\xae\\xd2\\x24\\xd2\\x1e\\x41\\xe5\\x88\\xc6\\x1b\\x9c\\x48\\x59\\x34\\xd5\\x5e\\x49\\x13\\x53\\x7d\\x6e\\x2a\\x63\\x83\\xb2\\x11\\xb1\\x95\\x64\\x4a\\x5d\\xc3\\xb2\\x17\\x8d\\x4b\\x64\\xbd\\x4e\\xac\\x8f\\x5f\\xd5\\xbc\\x71\\x83\\x6e\\x74\\x37\\x73\\xbc\\x53\\x5f\\xa1\\xa7\\xfb\\xaf\\xca\\xb8\\xa9\\xfa\\x40\\x19\\x0f\\xd6\\xe8\\xd9\\x3e\\x04\\x88\\x48\\xe5\\xad\\xdb\\x88\\x84\\x71\\x11\\x9c\\x12\\x13\\x82\\x71\\x21\\xd5\\xa0\\x8d\\x8d\\x06\\x5c\\x26\\xc1\\x84\\x71\\xa1\\x3c\\x6d\\x52\\xba\\x42\\x10\\xc6\\x85\\x54\\x9e\\x36\\x36\\x50\\x5a\\x4d\\x94\\x97\\xdc\\x1a\\x00\\x31\\xa1\\x8c\\x8b\\x04\\xc6\\xb6\\xb5\\xb1\\xa9\\x59\\x27\\xc1\\x84\\x46\\x38\\xe7\\x9c\\x73\\xde\\x00\\x20\\xc2\\x84\\xb2\\x04\\xd1\\x58\\x52\\x52\\xca\\xa6\\x40\\x75\\x34\\xb5\\x00\\x48\\x28\\xe3\\x22\\xb5\\xfb\\x04\\x2a\\x66\\x4c\\xe9\\xd4\\x6c\\xb3\\x10\\x9e\\xa9\\x67\\xd8\\x0b\\xd1\\xd6\\x2b\\xee\\x7d\\xfc\\x50\\x00\\x10\\x26\\x94\\x71\\x21\\xd5\\x94\\xd4\\xc6\\xde\\xf2\\xa6\\xf8\\x43\\x00\\x02\\x11\\x26\\x94\\x71\\x21\\x55\\xa0\\xf6\\x53\\x35\\x1f\\x3f\\x6b\\x45\\xa9\\x81\\x05\\xd7\\x25\\x1d\\xe7\\xce\\x0d\\x05\\xef\\xe2\\x74\\x99\\xe0\\xda\\x2e\\x44\\x6f\\x99\\xcb\\x6f\\xaa\\xfd\\x5d\\xe3\\x09\\xa2\\x06\\x12\\xd0\\x77\\xac\\xfd\\xe6\\x0c\\x74\\xe1\\x66\\xd9\\xb3\\xce\\xf7\\xc8\\xf5\\x27\\xda\\xaf\\xaa\\x8d\\x32\\x34\\x5c\\xad\\x2a\\x88\\xb4\\xc5\\x16\\xfd\\x4e\\x05\\x8f\\x87\\xaa\\xab\\xe9\\xbe\\xc6\\xaf\\xd8\\x53\\x6e\\x3e\\xa9\\xe0\\x9c\\x01\\x42\\xc0\\xd2\\x28\\xcd\\x7c\\xff\\xf6\\xfd\\x7b\\x5d\\x17\\xf9\\x02\\x5e\\xf3\\xd5\\x7e\\x50\\xf8\\xdd\\x9a\\xc3\\x6e\\xb6\\xc7\\xe4\\xe5\\x7d\\x7f\\x53\\x90\\x84\\x9e\\x9f\\x12\\xbe\\x7c\\xcc\\xac\\xb8\\x5d\\x07\\x1f\\x38\\xc1\\xe3\\xad\\x30\\x9d\\xef\\x51\\xb7\\x5e\\x77\\xbe\\x5b\\x0d\\x9c\\x72\\x3b\\x74\\x36\\xaf\\xbc\\xca\\x73\\x95\\x70\\x83\\x86\\x9a\\xb1\\x4e\\xf4\\xa9\\x02\\x03\\x4c\\x00\\xf8\\x07\\x0b\\x6c\\x40\\x70\\xc0\\x05\\x0f\\x7c\\x08\\x80\\x43\\x08\\x11\\xc4\\x90\\x00\\x41\\x0a\\x19\\x5c\\xe0\\x6a\\xdd\\xa2\\xa3\\x2e\\xa1\\x05\\x66\\x0e\\xaa\\xe0\\xad\\xe8\\x60\\xb9\\x13\\x80\\x76\\x7c\\x76\\x0b\\x3e\\xcc\\xda\\x9a\\xbb\\x8c\\x53\\x74\\x47\\x79\\xc6\\x4a\\x2f\\xd8\\x4b\\x64\\x84\\x7d\\x45\\xa0\\x9e\\x39\\x51\\x21\\x4e\\xc9\\xf6\\xdd\\x90\\x4f\\xf6\\xdd\\x88\\xce\\x4f\\x01\\x84\\x47\\xae\\xef\\x87\\x31\\xec\\xf0\\xe3\\x08\\xb9\\x79\\xcc\\xf7\\xdd\\x8e\\xd1\\x9e\\x3e\\x22\\x08\\xf2\\x88\\x76\\x9d\\x0b\\xe1\\x5a\\x17\\x10\\xbb\\x50\\xd9\\x68\\xee\\x62\\x4b\\xa8\\x04\\xfc\\x42\\xc0\\x48\\xf2\\xfd\\xc5\\x5d\\xf1\\x2a\\x94\\x12\\x85\\x46\\xe1\\x72\\x04\\xfd\\xcf\\x4b\\xf8\\xd4\\xfc\\x45\\xe7\\xa9\\x79\\x27\\x52\\x3b\\x0d\\x20\\x1b\\x4a\\x08\\xc2\\x8d\\x88\\x4c\\x4c\\xc3\\x16\\x5b\\x6b\\x6a\\x28\\x3d\\x2b\\x0f\\x87\\xa4\\x3e\\x47\\x5f\\xb2\\x88\\x50\\x3c\\xda\\x46\\xdc\\x83\\x4a\\xbe\\x93\\x2e\\x0e\\xd8\\x06\\xe8\\x2a\\xa3\\x45\\xab\\x76\\x38\\x8a\\xbc\\xa3\\x54\\x28\\xeb\\x5b\\x71\\xb6\\x50\\xf2\\x71\\xcb\\x92\\xea\\x79\\x4c\\x9c\\xc5\\x44\\xc3\\xea\\xe0\\x82\\x70\\xf9\\x5d\\x7d\\xd5\\x66\\x10\\x86\\xa6\\xda\\x05\\x44\\x25\\x1b\\x71\\x1b\\x9d\\x99\\x1d\\x46\\x67\\x71\\x48\\x1a\\xf6\\x79\\x2f\\x69\\x44\\x6d\\x69\\x46\\xc6\\xd2\\xa2\\xda\\xc5\\x30\\xde\\xb8\\xe0\\xb3\\x11\\xc3\\x3f\\x02\\x38\\x23\\x03\\xc0\\x15\\xc7\\xc0\\xb5\\xb7\\x2f\\x5d\\x07\\xfb\\x82\\x7b\\x1b\\x08\\x75\\xca\\x6a\\x66\\x80\\x7e\\xa9\\x22\\x30\\xd5\\xc9\\x0c\\x2b\\xb7\\x84\\x59\\xcc\\xd5\\x61\\x66\\x80\\x2b\\x55\\x53\\x0d\\xd4\\x4c\\x05\\xce\\x7a\\x51\\x5d\\x23\\xc3\\x8c\\xa0\\xfe\\x8e\\x7f\\x2b\\x1d\\xd1\\x37\\x27\\xe8\\x6c\\x6c\\xd6\\x4e\\x34\\x06\\xc5\\x44\\xcb\\x6a\\x66\\x50\\xea\\x92\\x24\\x34\\x72\\x66\\x50\\x3e\\x92\\x8b\\x19\\x45\\x47\\xe7\\xbc\\xb2\\x2e\\xf3\\xae\\x30\\xbc\\x9f\\x68\\xcf\\x17\\x13\\x3d\\x54\\x99\\xf7\\x50\\xec\\x21\\x1a\\xc1\\x0c\\x23\\xe5\\xb1\\x1b\\xa9\\x61\\x33\\xd5\\x01\\x2e\\x4d\\x56\\x60\\x4d\\x14\\x98\\xe9\\x0f\\x37\\xc1\\xce\\xb5\\x09\\xef\\x11\\x0d\\x57\\xb4\\xa4\\x88\\x1b\\xf5\\xaf\\x23\\x8f\\xbd\\x6c\\x20\\x3d\\x27\\xe8\\xed\\xa8\\xce\\xa6\\x3a\\xe2\\x4b\\x8b\\x15\\x59\\x0b\\x45\\xdd\\xa5\\xea\\xc6\\x18\\x66\\x45\\x17\\x5b\\xeb\\xb5\\xd5\\x9d\\xbd\\xc3\\x97\\xda\\xdd\\x01\\xb3\\x2e\\x95\\x79\\x47\\x7b\\xa3\\x7f\\xcc\\xb4\\x78\\xb2\\xe5\\x6f\\xc2\\xa5\\xbb\\x55\\x5d\\xf2\\x2b\\xe9\\x12\\x95\\x34\\x91\\xd1\\xe3\\x89\\xd2\\x63\\x3c\\xe9\\x6d\\x7e\\x24\\xb5\\x2d\\x3d\\x33\\xe4\\x7f\\xd2\\xe8\\x32\\x15\\xe4\\xf3\\x49\\x5e\\x8f\\xec\\x3d\\xd5\\x37\\x03\\x98\\x0f\\xcc\\xb7\\x3c\\x60\\x9f\\x09\\xfb\\xd6\\xb2\\x31\\x02\\xeb\\x9b\\x8e\\xd7\\x04\\x35\\x1e\\xb9\\x8a\\x39\\x1f\\xcb\\xeb\\x06\\x5a\\xdc\\xb5\\x6d\\xf2\\x87\\xfd\\xc4\\xb1\\x0f\\xa9\\xf4\\x12\\x90\\x03\\x80\\x0b\\x13\\x25\\x35\\x04\\xe3\\x04\\x30\\x3f\\xb1\\xef\\x5a\\xe1\\x39\\x16\\x90\\xf0\\xb8\\x38\\x33\\x10\\x46\\xb7\\x8f\\x46\\xc0\\x95\\x52\\x82\\x07\\x74\\xc0\\x88\\x83\\x0b\\xf2\\x13\\x10\\x47\\x87\\x38\\x1c\\x9d\\xe8\\x40\\x11\\xc8\\x8b\\x8e\\xe3\\x73\\xee\\xe2\\xe8\\xb8\\x92\\x36\\x47\\x47\\x80\\x93\\x8b\\x94\\x13\\xe1\\x88\\x2b\\x5a\\xcf\\xf7\\xab\\xc9\\xa0\\xe1\\x35\\xdd\\x8c\\xcf\\x11\\x48\\x83\\xb2\\xcb\\xe8\\xf9\\xa2\\x9a\\x90\\xc2\\x6b\\x3c\\x32\\x33\\xf3\\xc0\\x83\\x81\\x38\\x97\\xd5\\x04\\xf5\\x8c\\xa7\\x00\\x6c\\xed\\x62\\x01\\x74\\x96\\xa4\\xa9\\xa0\\x06\\xb0\\x77\\x7d\\x8d\\x78\\x4e\\x5b\\xa0\\x45\\x33\\x8f\\x62\\x31\\x44\\x8f\\x62\\x28\\x67\\x94\\x51\\xbb\\x38\\xe4\\xd4\\xab\\xcb\\x11\\x9c\\x67\\xb1\\x37\\xae\\x5e\\xcb\\x13\\xbd\\xda\\xb6\\x3c\\xc6\\x3b\\x32\\x40\\x77\\x07\\x2c\\xc8\\x3c\\x17\\x99\\xf1\\xfd\\x5b\\x0f\\x18\\x9b\\x64\\x44\\xd1\\x1d\\xb1\\x08\\x5d\\xec\\x65\\x57\\x9c\\x1f\\xe3\\xd4\\x11\\xf1\\x93\\x7e\\x4d\\x08\\xf2\\x44\\x92\\xa5\\x2d\\x62\\xb4\\x98\\x29\\x65\\xf5\\x1b\\x49\\x8f\\x9e\\xfc\\xa0\\x5d\\x32\\xa1\\xb4\\xcb\\xf5\\x49\\x39\\x5d\\xa3\\x9d\\xdd\\x94\\xf3\\xcd\\x89\\xe0\\x6e\\x42\\x8e\\x67\\xf6\\x7b\\x4b\\xf8\\xc5\\x66\\xea\\xe1\\x6f\\x92\\x70\\x52\\xf4\\x52\\xf1\\xce\\xce\\x22\\xef\\x0b\\xd3\\x1f\\x52\\x7c\\x93\\x04\\x79\\x32\\xf3\\x8c\\xdb\\xac\\x76\\x95\\xcf\\xff\\x06\\xea\\x4c\\xd4\\x8f\\xa9\\x13\\x36\\x30\\x23\\x75\\x3b\\x69\\x8d\\xa0\\xad\\x08\\xff\\x3e\\xb9\\xb0\\xef\\x30\\xf8\\x7d\\x08\\xba\\x79\\xb9\\x3f\\x46\\x91\\xc7\\x04\\xba\\x79\\xf8\\x71\\x34\\x22\\x79\\x24\\xdb\\x3b\\xdf\\xac\\x9f\\xc3\\x2c\\x74\\xb0\\xaa\\x72\\x55\\x96\\xca\\x5b\\xdd\\x2d\\x4a\\xd8\\xee\\x05\\x98\\x1a\\xc5\\x3a\\xfe\\x1a\\x74\\xf9\\x7d\\x19\\xa6\\x3e\\x16\\x5c\\x2d\\xf9\\x52\\xd7\\xcc\\x2b\\x93\\x58\\x7a\\xf6\\x57\\x15\\x92\\xdd\\xa2\\x03\\x0c\\xdf\\x30\\x0d\\xe0\\x05\\x4e\\xc5\\xa7\\xe5\\x6c\\xea\\x00\\x08\\x53\\xa9\\xcd\\x4c\\x5d\\x57\\x02\\x20\\x22\\x29\\x55\\x06\\x26\\x96\\x91\\x0a\\x08\\xc4\\xc9\\xad\\x22\\x78\\x52\\x8c\\x0b\\x1d\\x75\\xb6\\xea\\xd3\\xd9\\xaf\\x7d\\xa2\\x9f\\xaf\\x51\\x76\\x53\\xbf\\xb4\\x0c\\xd9\\x6c\\xf7\\x0f\\xd9\\xe7\\x47\\xa2\\xaf\\x3f\\x8a\\xdf\\x61\\x6c\\xa4\\x92\\x5b\\xbe\\x62\\xe0\\xb2\\xda\\xea\\x25\\x24\\xc8\\x7f\\xd1\\x75\\xe1\\x04\\x6b\\x78\\x8a\\x63\\xf2\\x1e\\x12\\xdc\\x2d\\xa1\\x37\\x38\\xb6\\xee\\x84\\x66\\x08\\xcf\\xb3\\xe2\\x14\\x05\\x3a\\x9e\\x11\\x90\\x98\\x6f\\x47\\x96\\x2d\\x94\\xef\\x99\\xad\\x0a\\x9e\\x5d\\xb7\\x1b\\x20\\xca\\x98\\x31\\x66\\x0f\\x13\\xca\\xb8\\x92\\x9e\\x36\\x36\\x35\\xbb\\x24\\x98\\x50\\xc6\\x85\\x0c\\xdd\\x87\\x36\\x36\\xb5\\x72\\xac\\x1e\\x72\\x28\\x08\\x13\\x1a\\x71\\xbd\\x66\\x3c\\x9b\\x85\\x69\\xa0\\xa5\\x7f\\xb8\\x05\\x02\\xd1\\x8c\\x11\\xca\\xb8\\x90\\xca\\xd3\\xc6\\xae\\xeb\\x03\\x20\\xc2\\x84\\x32\\x2e\\xa4\\xf2\\xb4\\xb1\\xa9\\xad\\xb5\\xd6\\x5a\\x6b\\xad\\xb5\\xd6\\x5a\\x6b\\x6d\\x8c\\x31\\xc6\\x18\\x63\\x8c\\x31\\xc6\\x18\\x63\\xad\\xb5\\xd6\\x5a\\x6b\\xad\\xb5\\xd6\\x5a\\xeb\\x5c\\x4f\\xa0\\x8c\\x8b\\xaf\\x34\\xf5\\x9f\\x5d\\x9f\\x66\\xdc\\x74\\xbf\\xe9\\x4a\\x9a\\x75\\xc8\\xe9\\x0d\\xcb\\x97\\x86\\xf5\\x9a\\xfd\\x08\\xb3\\xa1\\xc1\\x9e\\x07\\xa6\\x29\\x1d\\x03\\xb1\\x6b\\x1a\\xc8\\xe9\\x0d\\x5b\\x97\\xe6\\xe2\\xb7\\x31\\x20\\x61\\xd4\\x48\\x1b\\x0d\\xdb\\x80\\x1d\\x15\\xfd\\x86\\xb1\\x4b\\x57\\xc6\\xd2\\xc9\\xc3\\x01\\x30\\x5d\\x88\\x1d\\xda\\xed\\xc2\\x6f\\x04\\xa1\\xd9\\x56\\x0b\\xc0\\x9f\\x99\\x06\\xfe\\x1f\\x29\\xd4\\x35\\x1f\\x92\\x16\\xed\\x35\\x9f\\x58\\xb9\\x1c\\xfe\\xbb\\xec\\x8b\\xfc\\xf6\\x0a\\xd9\\xf5\\x55\\xbc\\x5e\\xf8\\xc3\\x98\\xfc\\x19\\xf2\\x3a\\xd0\\x6f\\xb0\\x6a\\x18\\xd4\\x98\\xeb\\xc4\\x1a\\x16\\x8e\\x7f\\xdc\\xcf\\x56\\xf6\\x1f\\x10\\x81\\x02\\x4a\\x8a\\xae\\x6f\\xfb\\xdd\\x1b\\x8f\\x3e\\x1e\\x1d\\x97\\x10\\x81\\x6a\\x02\\x55\\x9f\\xac\\xf8\\xfa\\x8b\\x5b\\x13\\x77\\x70\\xff\\x1f\\x03\\xb7\\x2c\\xd4\\x8e\\x9d\\xb7\\x3c\\x5d\\x80\\x8f\\x95\\x12\\x47\\x57\\x36\\x01\\x11\\x27\\x3c\\x77\\x89\\xef\\x15\\xe0\\xfe\\xcf\\x82\\x41\\x86\\xab\\x81\\x7d\\x31\\xaa\\xa1\\xe1\\xc4\\x3a\\xbd\\x4a\\xe4\\x65\\xe1\\xc2\\x47\\xf2\\x1a\\x5c\\xe4\\xdf\\x03\\x00\\x01\\x00\\x00\\xff\\xff\\x3b\\x5e\\x60\\x39\\x0c\\xc8\\x00\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff2() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff2,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.woff2\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_eot = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x7c\\x8e\\x63\\x70\\x24\\x0e\\xd0\\xa7\\x27\\x13\\x7b\\x62\\x27\\x33\\xb1\\x6d\\x4e\\x6c\\xdb\\xb6\\x6d\\xdb\\x36\\x36\\x4e\\x36\\xd8\\x68\\xc3\\x8d\\xed\\x8d\\x37\\xb6\\x9d\\x6c\\xb8\\xc8\\x5e\\xdd\\xbf\\xde\\x0f\\x57\\x77\\x55\\xf7\\xf4\\x87\\xee\\xea\\xee\\xfa\\xd5\\x13\\xbb\\x0f\\x00\\x84\\xef\\x01\\x00\\x40\\x00\\x10\\x00\\x07\\xf8\\x3f\\x81\\x01\\xa4\\xc1\\xfc\\xef\\xae\\xa4\\xf6\\x0f\\x08\\xd8\\x37\\x04\\x03\\x40\\xe0\\xff\\xb9\\x7c\\x82\\x01\\x80\\x01\\x00\\x18\\x55\\xda\\x98\\x9d\\x1c\\xc0\\xff\\x03\\x3e\\x40\\x03\\xe0\\x0a\\xb0\\x00\\xb8\\x02\\xbc\\x00\\xae\\x00\\x30\\x40\\x19\\xe0\\x0a\\x70\\x01\\xb8\\x02\\x00\\x00\\x0c\\x80\\x06\\xc0\\x1a\\x60\\x0b\\xf0\\x06\\x38\\x01\\xcc\\x01\\x1e\\x00\\x00\\x40\\x0b\\xa0\\x03\\xb0\\x06\\x78\\x00\\x3c\\x01\\xf6\\xff\\x7d\\x81\\x01\\x9c\\x00\\x56\\x00\\xfb\\x7f\\x25\\x00\\xe0\\x07\\xf0\\x00\\x84\\xfe\\xdb\\xb1\\x03\\x38\\xfe\\x67\\xf6\\x02\\x78\\x01\\x6c\\x00\\xe6\\x00\\xef\\xff\\xd2\\xed\\x00\\xf6\\x00\\x17\\x80\\x17\\x00\\x0c\\xa0\\x07\\xf8\\x00\\x38\\x00\\xac\\x00\\x2e\\x00\\xc3\\xff\\xd7\\x01\\x00\\x90\\xd0\\x94\\x55\\xfb\\xbf\\x9d\\x61\\x61\\xa4\\xe4\\x00\\xcd\\xee\\x80\\xef\\x7c\\x80\\x2c\\x6a\\xdc\\xb9\\x8b\\xa4\\xef\\xab\\x71\\x44\\xad\\x05\\x11\\x4f\\xb7\\xf7\\x8f\\x4a\\xa4\\x05\\xa4\\x76\\xdc\\xdc\\xb7\\x76\\x69\\x8b\\x18\\x95\\x40\\xd8\\xdf\\xfc\\xe3\\xaf\\x70\\x79\\x01\\xbc\\x35\\x69\\x49\\x79\\x37\\x59\\x45\\xed\\x70\\x55\\x24\\xea\\x12\\xbe\\xc8\\xbb\\xde\\x2e\\xd5\\x45\\x2a\\xbd\\x63\\x0c\\xf6\\xb6\\xb1\\x9c\\x43\\xdc\\xdd\\x84\\xea\\x24\\xfa\\x5c\\x0c\\xed\\x3e\\x05\\x60\\xfb\\x92\\x5b\\xe7\\x04\\xf9\\xdd\\x96\\x96\\x13\\xfd\\xcd\\x70\\x59\\x4d\\xff\\x56\\x8d\\xb9\\xc3\\xb9\\x49\\x2e\\x6d\\xb6\\x91\\x09\\x97\\x88\\x35\\xfa\\x57\\x13\\x4b\\xc6\\xf9\\x73\\xd5\\x51\\x1b\\x89\\x6f\\x6c\\x75\\xc6\\xfb\\xfb\\x5d\\x0b\\x54\\x53\\xb8\\xf2\\x5c\\xc9\\x23\\x1b\\x15\\xbf\\x9d\\xfe\\x79\\x91\\xff\\xbe\\xdc\\xf0\\x56\\xe4\\xdf\\xfd\\x6a\\x24\\xf2\\xfe\\x03\\x2c\\x7f\\xd7\\x73\\x3d\\x39\\xc3\\xf7\\x5b\\x42\\x6e\\x47\\xd7\\x6a\\x10\\x98\\xfc\\xdb\\xb8\\x69\\xc2\\x85\\x50\\x17\\xf2\\xf9\\xc3\\x30\\x46\\xf7\\x35\\x68\\xe0\\x0c\\x64\\x14\\x68\\x57\\xd4\\x57\\x4d\\xaf\\xfd\\xf4\\xc5\\xe3\\x90\\x07\\xd3\\x22\\x3f\\x74\\xa6\\x91\\x0b\\x88\\x8e\\x47\\x06\\x95\\x40\\x46\\x5f\\x48\\xa8\\x89\\xc8\\xf4\\x82\\xdc\\x37\\xff\\x76\\x87\\x4d\\x47\\x28\\x9f\\x8d\\x49\\x7e\\x22\\xea\\x2c\\x7b\\x47\\x3b\\xe0\\x1a\\x4d\\xc0\\x66\\xa6\\xdf\\xa7\\x1a\\x2c\\x85\\x5b\\x47\\x1b\\xe4\\x0a\\x87\\x39\\xc7\\x31\\x24\\xde\\x5e\\x46\\x78\\xb3\\xcf\\x74\\x21\\xd3\\x2f\\x4d\\x46\\x70\\x1d\\x09\\x29\\x5a\\xaf\\x3e\\x39\\xf7\\xe7\\x92\\xc8\\x02\\x48\\x29\\x40\\xc2\\x5b\\xf2\\x94\\x33\\x80\\x20\\x5c\\xe8\\x30\\x22\\x08\\x1a\\x21\\x85\\x4b\\x4b\\x89\\x0a\\x32\\x8b\\x94\\x22\\x05\\x3f\\x20\\x21\\xc9\\xc0\\xe5\\x29\\x17\\x36\\x57\\xa0\\x34\\xb7\\xa1\\x36\\x8f\\xa0\\x35\\x2f\\xbf\\xc5\\xec\\x26\\x51\\xfb\\xc8\\xc9\\x5a\\x47\\x86\\xd4\\xf2\\x5d\\x85\\x79\\xc6\\x21\\x66\\x99\\x0c\\x2a\\xee\\xe8\\x07\\xd6\\x17\\x86\\x8c\\xb8\\x6e\\x3a\\x4f\\x24\\xf6\\x48\\x5c\\x9b\\x30\\x5f\\xc3\\x17\\x47\\xb5\\xe5\\x6b\\x5d\\x7a\\x72\\xb4\\xda\\x22\\x73\\xce\\x32\\xcf\\x4e\\x22\\xe5\\xc3\\x70\\x41\\xa4\\x26\\x51\\xb3\\x61\\x32\\x4a\\x79\\xa5\\x10\\xe5\\xc2\\xde\\x71\\x85\\xe3\\xb0\\xd2\\x81\\x1a\\x60\\xe5\\x51\\x14\\xf6\\x30\\x27\\xb0\\x7e\\x14\\x6a\\x73\\x78\\x0c\\x88\\x73\\x98\\x38\\x0f\\xba\\x85\\x44\\x6a\\x0e\\xdb\\x00\\xf6\\x8f\\xc2\\x6c\\x8e\\x40\\x00\\x49\\x0c\\x23\\xe5\\x89\\x93\\x13\\x56\\xbb\\x29\\x46\\xe1\\x98\\x53\\xbf\\x21\\x1f\\xf6\\x0b\\xe1\\x43\\xab\\x28\\x96\\x42\\xb6\\xda\\xd7\\x33\\xa5\\x26\\x02\\xf1\\xaf\\x03\\x56\\x49\\x11\\x5a\\x8e\\xa2\\xf8\\x8b\\x74\\xc8\\xe6\\x15\\xc7\\x22\\xd7\\x9b\\x07\\x46\\xf1\\x98\\x06\\xc8\\x3e\\xd8\\xd3\\xfb\\xcb\\xdc\\xf6\\xb0\\x85\\x1b\\xcb\\x64\\x61\\xaf\\x70\\x8b\\x04\\x83\\x52\\x54\\xa2\\x7f\\x51\\x97\\xe3\\x4c\\xeb\\xfe\\x99\\x73\\xe3\\x26\\x60\\xdc\\x55\\xd0\\xeb\\x77\\xfe\\xe9\\x45\\x2c\\x06\\x97\\x27\\xd9\\xdb\\xa6\\x82\\x23\\xe2\\xce\\x45\\x97\\x8c\\x3a\\xc4\\xbd\\x24\\x80\\x85\\xf6\\x7d\\x3a\\x42\\xb2\\x9c\\xd9\\x72\\x90\\x44\\xa1\\xe5\\xb8\\x3b\\xbd\\x63\\xea\\x46\\x04\\xde\\x72\\x79\\x91\\x2c\\x77\\x4d\\x2a\\xf9\\xf7\\x4b\\xbf\\x52\\x83\\x81\\x6d\\xc4\\xae\\xcf\\xf1\\x84\\xf0\\x94\\x3b\\x45\\x40\\x34\\xc2\\x4d\\x84\\xd2\\x47\\xc4\\xc9\\xbb\\xe4\\x5e\\x94\\x61\\x8c\\x46\\xb3\\x8a\\x8b\\x24\\x2a\\x51\\x84\\xae\\xd9\\x67\\x41\\x7a\\xf9\\x2e\\x76\\x3a\\x40\\x85\\xa2\\x8f\\x76\\xcc\\x4a\\x3b\\x7c\\xe7\\xe3\\xe5\\x56\\xb3\\xc1\\xb2\\x9b\\xfe\\x90\\x0d\\xc5\\x21\\xa1\\x4f\\xcc\\xb6\\xec\\x8e\\xcf\\xe7\\xc5\\x14\\xde\\xde\\x7e\\xa9\\x06\\x63\\x77\\xdb\\xf7\\xf9\\x4f\\x0c\\x72\\x28\\xad\\xfa\\x62\\x61\\x29\\x57\\x29\\x2e\\x32\\xcd\\x3a\\x40\\x3d\\x51\\xd9\\x66\\x36\\xb4\\xf4\\x5f\\x5c\\xc3\\x5d\\x2c\\x02\\x2b\\x91\\xa2\\x1b\\x6c\\x7f\\x0f\\x38\\x49\\xcc\\x2b\\xd1\\xbb\\x7a\\x50\\x21\\x5d\\xc4\\x57\\x56\\x1d\\xcf\\x92\\x33\\x4f\\xe5\\x34\\x93\\x22\\xf0\\x5f\\x99\\x21\\x1a\\x49\\xa3\\xef\\x54\\xe1\\xcd\\xd8\\x6e\\x16\\x89\\x46\\x5a\\xa3\\x66\\x2a\\xf0\\x4a\\xea\\x48\\x58\\x46\\xf8\\x91\\xfb\\x64\\xe3\\xb6\\x60\\xe0\\x46\\x52\\x55\\x78\\xef\\xef\\x29\\x68\\x64\\x57\\x4d\\xab\\x93\\xcf\\xed\\xe0\\xbc\\x6d\\xd3\\x57\\xe3\\xa7\\x44\\x97\\xe0\\x13\\x30\\xda\\x07\\x06\\x0b\\xa7\\x31\\x12\\x1e\\x36\\x98\\xf9\\xb8\\x3a\\xb5\\xab\\x89\\xae\\xfd\\x84\\x55\\xb7\\xd7\\x97\\x42\\x7f\\xad\\x33\\x37\\x8e\\x75\\xd7\\x08\\xcc\\x53\\xf4\\xf9\\x8b\\x8d\\x11\\x40\\x38\\x5d\\x45\\x39\\xe6\\x8a\\x14\\x23\\x7a\\x44\\xd3\\x1d\\x5c\\x4d\\x8f\\x73\\x5c\\x63\\xf5\\xee\\xbd\\x4a\\xeb\\x8f\\x04\\xb3\\xab\\xa2\\x30\\xd6\\xcd\\xd5\\x68\\x13\\xc2\\x4d\\x8d\\xd1\\x1f\\xbd\\x60\\xcd\\x4d\\xf9\\xa8\\x9d\\x63\\x1d\\xe3\\x2e\\x42\\x40\\x6c\\x5b\\xa2\\x1d\\x19\\xfd\\x35\\x58\\xf8\\x78\\xb2\\xb8\\x8d\\xe0\\x8c\\x6c\\x62\\x62\\x37\\x3c\\xf5\\xf1\\x4c\\xc9\\xf5\\xde\\x92\\x9d\\xbb\\xe9\\x6b\\xaa\\x16\\x12\\x63\\x1e\\x9a\\x48\\xc3\\xfd\\x19\\x3b\\x11\\x00\\x19\\x77\\x81\\x42\\x49\\x0a\\x0a\\x8f\\x7f\\xdf\\x75\\xcc\\x4c\\x8a\\xa2\\xdf\\x9f\\xa0\\x9a\\x6e\\x19\\xa1\\x07\\x04\\xe9\\x6a\\x8b\\xa1\\x68\\x57\\xde\\x2b\\x27\\x4a\\x57\\x95\\x7b\\x34\\xa2\\x95\\x83\\x69\\xe0\\x32\\x07\\xfb\\x82\\x05\\x20\\x51\\x54\\x0c\\x69\\x28\\x9c\\xa3\\x8e\\xe9\\xcd\\x30\\x30\\x95\\xb3\\x27\\x25\\xec\\x2d\\x90\\xb6\\x82\\x39\\x42\\x61\\x85\\xb2\\x91\\x12\\xae\\x88\\xfe\\xa8\\x09\\xc6\\x02\\x3c\\xa8\\x6c\\xf0\\x90\\x7e\\x43\\x46\\x27\\x76\\x47\\xda\\x40\\xc7\\x70\\x07\\x04\\x85\\xa8\\xf6\\x45\\xe0\\x84\\x63\\x3e\\x22\\x7b\\xb7\\x3b\\x9a\\xcc\\x3a\\x49\\x28\\x17\\xea\\x70\\x47\\xde\\x4d\\xa7\\x55\\x78\\x68\\x80\\x58\\x43\\x9e\\xa4\\x74\\x8f\\x59\\xaa\\xb4\\x22\\xd8\\xa5\\x18\\x78\\xbb\\x35\\x8e\\x0b\\x6c\\xf9\\x33\\x68\\x5c\\x95\\x93\\x60\\xd6\\x03\\x37\\xc1\\x1b\\x79\\xc7\\xfb\\xe2\\x3a\\x73\\xe0\\x52\\xaf\\x95\\x22\\x21\\xbf\\x62\\xae\\x4c\\x09\\x16\\xfc\\xab\\x66\\x8f\\x01\\x24\\xd8\\xa2\\x99\\x72\\x59\\x58\\x71\\xb7\\x76\\xe2\\xb8\\x70\\x67\\x0e\\x86\\xa5\\xfb\\xac\\x9b\\x3d\\x47\\xe9\\x81\\xec\\xf9\\xa5\\x70\\x10\\x95\\x0f\\x58\\xb2\\xc8\\x2b\\x54\\xfe\\x76\\x36\\xf3\\x2a\\x5e\\xcf\\xc5\\x2b\\xf3\\x22\\xfd\\x22\\xc1\\x6e\\x7c\\x1a\\x04\\x05\\x98\\x74\\xe7\\x46\\xfe\\xec\\xed\\x83\\x67\\xa7\\x2a\\x22\\x40\\xbb\\xa4\\xed\\xd8\\x55\\xb0\\xfa\\x01\\x3b\\xf3\\xc0\\x67\\xfe\\x23\\x08\\x91\\xc2\\x87\\x7c\\x28\\xf9\\x2b\\xf1\\x67\\x39\\x73\\xa3\\x7e\\xd1\\xad\\x48\\x7c\\xf4\\x4d\\x53\\x95\\xfb\\xf4\\x70\\xae\\xf0\\xf0\\xe1\\xee\\x34\\x24\\xb5\\x09\\xcf\\xfc\\x1f\\x2c\\xb5\\x1d\\x49\\xe1\\x18\\xd5\\x56\\x30\\x94\\x76\\xf7\\x4d\\x6c\\xf9\\x2c\\x84\\x6c\\x98\\xaa\\x76\\x1c\\xed\\x26\\x20\\x69\\x27\\xab\\x04\\x4a\\x13\\xb2\\x61\\xdc\\xf8\\x4e\\x03\\x03\\x76\\x8b\\xf1\\xae\\x26\\xdb\\x8d\\x1a\\x4c\\x57\\xed\\x69\\x6c\\xca\\x32\\xf4\\x5e\\xee\\x93\\xa4\\xb4\\xed\\xe8\\x66\\x16\\xac\\x7c\\xef\\x39\\xb2\\x9b\\x1c\\x42\\xb6\\x96\\xe9\\x2e\\x08\\x38\\xd3\\x4e\\x15\\x51\\x6a\\x30\\xa1\\x3a\\xc9\\xea\\x17\\xdc\\x5c\\x48\\xb5\\x87\\xcd\\x2d\\x6e\\x06\\xb3\\x66\\x48\\x6d\\x1e\\x29\\x3d\\x09\\x3f\\xf1\\x1f\\x12\\xf0\\x46\\xf9\\x2c\\x93\\x9f\\xf4\\xe1\\x34\\x2b\\x25\\x61\\x9c\\xb3\\x51\\x81\\x88\\x5c\\x1b\\x11\\x92\\xb9\\x5f\\xe9\\x68\\x1e\\xa4\\xfd\\x0e\\xb4\\xdb\\xad\\xc5\\x2a\\xe7\\xde\\xf0\\x3c\\x89\\x16\\x89\\xcf\\x7a\\x5e\\xf7\\xb3\\xaa\\xe1\\x81\\x41\\x90\\x5a\\x8b\\x8d\\xdc\\x5d\\x05\\x13\\xce\\x03\\x7d\\xfa\\xab\\x46\\x54\\x22\\x61\\x2a\\x5f\\x6d\\x44\\xc5\\xe0\\x9e\\x74\\x9f\\x25\\x31\\x62\\x2d\\x1d\\xee\\x13\\x01\\x93\\x8c\\xbd\\xa7\\xe5\\xf5\\xdb\\xe1\\x3a\\x7f\\x47\\x44\\x05\\x27\\x5c\\xd8\\xec\\x43\\x59\\xf3\\x32\\xb6\\x73\\xb3\\xd2\\x8f\\x21\\x5d\\x4d\\x12\\x84\\xb9\\x5c\\x09\\x07\\x8d\\xc3\\xdf\\xd6\\x0e\\xdb\\x66\\x2c\\x99\\x31\\xe3\\x24\\x32\\x26\\xec\\x61\\xb5\\xf3\\x07\\x4b\\x37\\xbe\\xdc\\x45\\xf6\\x49\\x10\\x16\\x79\\x30\\xe5\\x43\\xac\\x92\\x4b\\x62\\x70\\x06\\x16\\x2e\\x68\\x0b\\xb7\\xd2\\x70\\x8a\\x93\\x4c\\x06\\x86\\x00\\xa9\\xb5\\x2f\\xca\\x02\\x6c\\x50\\xb4\\x60\\x1b\\x87\\x03\\x8f\\xd3\\xd5\\x9c\\x01\\x18\\xb9\\x66\\x45\\x72\\x1d\\xc5\\x96\\x27\\x05\\x03\\x60\\x68\\x9e\\xfe\\xce\\x1d\\x03\\x60\\x8f\\xfe\\x84\\x09\\xff\\xa3\\xd9\\x39\\x2a\\x54\\x36\\x99\\x1b\\x8d\\xf8\\xa0\\xc4\\x04\\x79\\x97\\xe9\\xfe\\xec\\xea\\x98\\x54\\x32\\x5d\\x85\\xd7\\x88\\x8b\\xbd\\x40\\x97\\x69\\x79\\x48\\x4c\\xd0\\x40\\xfe\\xbd\\xff\\xc8\\xfa\\xef\\x45\\x67\\x5b\\x3c\\x5b\\xd1\\xba\\xb1\\x2b\\xac\\x8d\\x56\\x46\\xf3\\x65\\xaf\\x8d\\xb9\\xac\\xf3\\x86\\x55\\x9c\\xeb\\x02\\x61\\xed\\x37\\xf0\\xc6\\x9e\\xd8\\x76\\x11\\xd6\\x8b\\x35\\xc6\\x32\\x4e\\x05\\x24\\xc5\\xc8\\xff\\x9c\\x98\\xfe\\x91\\x89\\x1a\\x58\\x2d\\x96\\x37\\xeb\\xe7\\x31\\x4b\\x73\\x32\\x33\\x58\\xb5\\x7e\\x31\\x9d\\x32\\x55\\xab\\x1b\\x23\\xb8\\x44\\xb2\\xf8\\x32\\x68\\x4b\\x53\\xd8\\x93\\x22\\x15\\x16\\x1b\\x9a\\xe9\\xfa\\x39\\xd1\\xb3\\x68\\x8f\\xcd\\x6a\\xf7\\x85\\x7b\\x31\\x2a\\x25\\xe8\\x87\\xcb\\xf7\\x0c\\x55\\x1f\\x6f\\x65\\xd0\\xa3\\x44\\xaf\\xda\\x3d\\xd4\\x72\\x88\\x9d\\x3c\\x34\\x02\\x60\\x1a\\x71\\xc9\\x3a\\x3f\\xb8\\x59\\xbc\\xaf\\xa8\\xe2\\xe3\\x81\\xb4\\x81\\xed\\xa3\\x16\\x69\\x1e\\xbe\\x91\\x2a\\x75\\xb6\\xa7\\x17\\x71\\x98\\xa9\\xd7\\x7e\\x63\\x78\\x9b\\x67\\x6c\\x4e\\xed\\xe4\\x46\\xd2\\x50\\xdb\\xb5\\x9f\\x8c\\xb0\\xdb\\x47\\x85\\xb5\\x53\\x6e\\xb5\\x2d\\x14\\xc6\\x99\\x7f\\x53\\x5e\\x90\\xdf\\x59\\x59\\x03\\x90\\x5d\\x99\\xe9\\x4e\\x1a\\x4a\\x8b\\x56\\x30\\xc9\\xc2\\xfa\\xbc\\x37\\x48\\x32\\x83\\xcc\\xa3\\x55\\xb3\\x90\\xf5\\xa2\\x99\\x3f\\xb6\\xd9\\xe9\\x33\\x5a\\xe2\\xcc\\x79\\xa0\\xa4\\x11\\xa2\\xae\\x4e\\xba\\x28\\x52\\xba\\x3f\\xb7\\x3d\\x4f\\x1e\\x59\\xcc\\xa0\\xcd\\x92\\x45\\xe1\\x28\\xdc\\x13\\x04\\x9c\\x52\\x5d\\xb4\\x3d\\xf9\\x5b\\x77\\xd7\\xad\\x0a\\x8f\\x7a\\x2f\\x22\\x81\\x80\\xb8\\x37\\x0f\\x07\\xbb\\x76\\x6f\\xf6\\x03\\x61\\xf8\\xcb\\x6b\\xc1\\xc4\\x4e\\x8f\\x94\\x9d\\x68\\x2e\\xc3\\x62\\x98\\x8e\\x9d\\xf0\\x12\\x1f\\xbd\\xe9\\x64\\x03\\xeb\\x11\\xc1\\x35\\x5b\\x65\\x2b\\x60\\x81\\x46\\x27\\xd2\\xdb\\xfc\\xa8\\x67\\x30\\x5b\\x5c\\xdb\\x44\\x74\\x23\\x47\\x47\\x9c\\x5e\\x52\\x0b\\x05\\xcc\\x79\\x4d\\x78\\xb1\\x66\\x45\\x65\\x54\\x3c\\x42\\xb3\\x6a\\x46\\x92\\xae\\x3f\\x0b\\xdf\\x42\\x71\\x4c\\x7e\\x85\\xdd\\x89\\x64\\x35\\x9a\\xce\\x4d\\x51\\xc6\\xdf\\x60\\x46\\xb1\\xa5\\xdd\\x19\\x4f\\xb3\\xb1\\x1f\\x15\\xe5\\x3a\\x11\\xa5\\x82\\xb7\\xdd\\x81\\x82\\x2e\\xb7\\x8a\\xa4\\x3e\\x87\\xa0\\x6e\\x60\\x3e\\x9a\\xd5\\x87\\xb7\\x78\\x09\\x66\\x87\\xc9\\x02\\x70\\x24\\xdc\\x27\\x2a\\x94\\x85\\x38\\x79\\x51\\xd9\\xb2\\x7b\\x65\\x78\\x73\\x4f\\x39\\xd3\\xa2\\x33\\x11\\x6b\\x4f\\x2d\\x37\\x25\\xd0\\x94\\x2e\\xe8\\x20\\x6d\\x60\\xc0\\xfb\\xd5\\xbd\\xcd\\x7f\\xc5\\x68\\x68\\x5b\\xd0\\x8b\\xc6\\x9b\\x39\\xaf\\x8c\\x57\\xca\\x74\\x0a\\x80\\xad\\xc0\\x39\\x5a\\xd4\\x68\\xa2\\xc7\\xed\\xd1\\xfe\\x85\\xc7\\xa4\\xbd\\x31\\x3a\\x5d\\x9c\\xf9\\xb5\\x43\\xa8\\x13\\x4b\\x73\\x67\\xa6\\x43\\x83\\x63\\x0a\\x74\\x0f\\x1e\\xd4\\xb1\\x35\\x2e\\xae\\x52\\x22\\xe5\\x32\\x94\\x9b\\xa1\\x21\\x6d\\x38\\xf1\\xb8\\x54\\x61\\xbe\\x6a\\xe1\\x72\\x80\\xaa\\xb9\\x8b\\xa7\\x96\\xce\\xd2\\x18\\xb4\\xee\\xc6\\xb8\\xf8\\x0a\\x15\\x3e\\x9f\\x28\\x19\\xf1\\x3e\\xd0\\xfb\\x20\\x94\\x79\\x78\\x1e\\x62\\x3c\\xfd\\x34\\x5f\\x8f\\x6f\\x98\\x54\\x64\\x47\\x33\\xfb\\xd9\\xc4\\xf4\\xc6\\xe9\\xe9\\xaa\\xe2\\xc3\\xf0\\x46\\xc8\\xeb\\x9f\\xdb\\xce\\x4b\\x36\\xfa\\x03\\x69\\x6f\\x0c\\x23\\x25\\x02\\x56\\xbb\\x35\\xa5\\xff\\x9c\\x4a\\xb2\\xe5\\xb9\\x13\\x6b\\xa4\\xf1\\x8a\\x28\\xb5\\x25\\xd2\\x8b\\x68\\xd9\\xef\\x47\\x8f\\xb1\\x2e\\x8a\\xca\\x4a\\xc4\\x1a\\x70\\xf7\\xbb\\x22\\xfc\\x1e\\x89\\x93\\x12\\xd0\\x19\\xfd\\xda\\x77\\xcc\\x92\\x46\\xd4\\xc5\\xf3\\x74\\xb7\\xc5\\x2f\\x20\\xa3\\x84\\xa5\\xd7\\x7e\\x88\\xb7\\xcd\\xd5\\xab\\xce\\x4a\\x0b\\x20\\xc3\\x9c\\xb2\\xdd\\xae\\x1d\\xac\\xf5\\x26\\x44\\x9e\\x96\\x65\\x99\\x71\\x7c\\x7b\\x2a\\xc1\\xd9\\x44\\xd4\\x53\\xb8\\x9e\\xb2\\x58\\x19\\xc0\\x74\\xef\\xfb\\xcd\\x4a\\x60\\x3a\\x4d\\xa1\\x90\\x09\\x77\\x2f\\x6b\\x6a\\x86\\xca\\x4b\\xd6\\xd1\\x97\\x8a\\xfd\\x4f\\x35\\xd6\\xd8\\xfe\\xf9\\xfe\\x2c\\xd6\\x87\\x54\\x96\\xca\\x93\\xa0\\xe9\\x7e\\x15\\x64\\x6a\\xf8\\x30\\xb2\\xe6\\x4c\\xb5\\x0b\\x29\\xc5\\xc3\\xdf\\xa7\\xe3\\xc3\\x47\\xc9\\x41\\x32\\xc2\\x58\\x06\\x64\\x9f\\x53\\x44\\xb9\\xcb\\xb0\\x3b\\xe3\\x58\\x7f\\xcb\\x2d\\xad\\x22\\xfb\\x13\\x39\\xbd\\x51\\xc6\\x68\\x84\\xa3\\x09\\x75\\xd8\\xc1\\xc3\\xde\\x77\\xbb\\xf5\\x7b\\xb9\\x71\\xa0\\x6d\\x96\\xf5\\x6a\\xdd\\xdf\\xcd\\xc7\\x2c\\x23\\xe5\\xfc\\x63\\x53\\xa9\\x34\\x88\\xee\\x01\\xde\\x7d\\x04\\xf0\\xe8\\xe7\\x9a\\x66\\x5d\\x50\\x9f\\xeb\\x58\\xba\\x2e\\x73\\xca\\x05\\x03\\x85\\x06\\xae\\x97\\xdd\\xbc\\x64\\x39\\xcc\\x56\\xfe\\x66\\xf1\\x3b\\xae\\x18\\xc1\\x1c\\xd1\\x3b\\xc1\\x15\\x81\\xfc\\x47\\x14\\x29\\xd6\\xa3\\x20\\x7d\\x2e\\xb2\\x16\\x4f\\x67\\x3d\\x3f\\xd5\\xd4\\x73\\x07\\xdd\\xf2\\x49\\xec\\x7a\\xb8\\x0a\\x58\\xc3\\x5c\\xbf\\xe5\\x59\\x68\\x6e\\x62\\x19\\x2f\\x28\\xe4\\x52\\x76\\xee\\xe4\\x94\\xd8\\xa6\\x4a\\xe5\\x14\\x25\\x9c\\x7c\\xdc\\x66\\x48\\x83\\xed\\xc1\\x1c\\xea\\xd3\\x43\\xbb\\x6e\\x70\\x2e\\x62\\x0e\\xf4\\xc3\\x4f\\xe2\\x31\\xd0\\xeb\\x60\\x31\\x80\\x33\\xd4\\x2c\\x1e\\x3b\\x88\\xe6\\x2f\\x9b\\x94\\x18\\x9b\\xd0\\x31\\xa3\\xf8\\xc1\\xce\\x62\\x0d\\xa7\\xd2\\x40\\x34\\xcc\\x59\\xa6\\x62\\x50\\x81\\xb1\\x9e\\xdc\\x01\\xe7\\xa2\\x81\\xf4\\x5a\\xdd\\x9e\\xc3\\xaf\\x87\\x31\\xc0\\xf8\\x7e\\xa3\\x66\\xae\\xdd\\xb7\\x6a\\x5c\\x49\\xe7\\x9c\\xf8\\xbb\\xc5\\x65\\x63\\xc0\\xc9\\x93\\x7b\\x2e\\x82\\x8d\\x61\\xfb\\x79\\x88\\xfc\\xae\\x2d\\x02\\x8e\\x43\\x8a\\xb7\\x14\\xfb\\xca\\xac\\x8a\\xc4\\x8c\\x5d\\xcf\\xba\\x60\\xed\\xa6\\xb2\\xe0\\x8a\\xd0\\x25\\x07\\x7d\\x7b\\x9c\\x68\\x61\\x07\\xcf\\x6f\\x29\\x66\\x9f\\x64\\xcc\\x9c\\x64\\xdf\\x91\\x0c\\xcd\\x51\\x2a\\x45\\x18\\xc2\\xa2\\xb7\\x10\\x81\\x6c\\x07\\x18\\x69\\xc5\\xae\\x86\\xca\\x76\\x60\\x57\\xbf\\xcb\\x26\\x1d\\x01\\x6b\\x86\\x4f\\x5d\\xc0\\x23\\xdb\\x88\\xfc\\x48\\x4c\\xc5\\x8b\\xba\\x70\\xc4\\x6f\\xd7\\xa1\\x59\\xba\\x55\\x53\\xf6\\x41\\x79\\x23\\x7e\\xbf\\x60\\x31\\x78\\x21\\xf2\\x81\\xc4\\x6f\\x7f\\xfb\\x92\\xdd\\x5c\\xbb\\x93\\xe9\\x03\\xe6\\x2d\\xa5\\xf0\\xf1\\x1f\\x8a\\x93\\x45\\x84\\x6d\\xa9\\xd4\\x54\\x89\\xa0\\xb3\\x99\\xe3\\x0a\\x7c\\x4d\\x76\\x40\\xee\\x35\\x79\\x24\\x08\\x39\\x6a\\x1f\\xb7\\x31\\x19\\x46\\xec\\x71\\x73\\xa5\\x47\\xec\\x85\\x14\\x9e\\x04\\x0a\\x1f\\x68\\x76\\x7a\\x24\\xa4\\xc1\\x64\\x82\\x6b\\x5d\\x8b\\xf3\\xde\\xcd\\x1a\\xf3\\x24\\x5d\\x13\\xbb\\x5e\\x33\\x36\\x32\\xc2\\x43\\x19\\xec\\x20\\x16\\xdf\\xf1\\x8e\\x09\\xa0\\xd2\\xa8\\x6c\\x6a\\xc1\\xae\\xe8\\x0a\\x39\\x26\\xc4\\x16\\xc0\\xb8\\xa4\\x4d\\xaa\\x1f\\xaf\\x49\\xe1\\xd7\\x41\\xce\\xfb\\xc2\\x1c\\xa3\\x9d\\x70\\xd5\\xee\\xe4\\x04\\x7d\\x85\\xc9\\xb8\\x70\\x03\\x25\\xc6\\x6c\\xc4\\x87\\x62\\xe8\\x87\\x21\\xe7\\x88\\x2b\\x0a\\x85\\xbd\\x78\\x52\\x55\\x23\\xe5\\xa8\\x0f\\xbd\\x75\\xc9\\x34\\x3e\\x31\\xce\\x70\\xff\\xc5\\x61\\xf9\\x0b\\x4f\\xdf\\x0d\\xcf\\x7a\\x8e\\x43\\x66\\x4f\\x2c\\x05\\x43\\xd1\\x9a\\x11\\xc4\\x2e\\xcc\\x4f\\x05\\xa7\\x12\\x62\\x45\\x7b\\x10\\xdf\\x75\\x68\\x04\\xc2\\x5e\\xe7\\x65\\x47\\x41\\xfc\\x89\\x6d\\x9e\\x7a\\xec\\x92\\xf4\\xe5\\x56\\x07\\xac\\x0a\\xd1\\x3e\\x57\\x6f\\xf8\\xf0\\x1f\\x9f\\xa5\\x2c\\xe5\\xf1\\xfe\\x3a\\xe9\\x67\\x03\\xff\\x5d\\xca\\x88\\x50\\x2e\\x7c\\x5d\\x09\\x89\\xd6\\x67\\x30\\xb8\\xf4\\x26\\xb4\\x14\\x06\\xb5\\xb6\\x50\\x6e\\xff\\x95\\xd9\\x90\\x22\\xbd\\x52\\x95\\x42\\xe7\\x93\\x05\\x35\\x6c\\x7e\\x13\\x04\\xa8\\x8a\\x69\\x01\\xb3\\x0f\\xf6\\xf9\\xa6\\x38\\x32\\xfa\\xa4\\x14\\x81\\xcc\\xeb\\x66\\x3f\\x2b\\xcd\\xbe\\x7c\\xf3\\xd6\\x25\\x23\\x2e\\x3a\\xf5\\x43\\x5d\\xaa\\x25\\x7c\\x42\\x26\\xce\\x7e\\x54\\x50\\x81\\x6e\\x61\\xb7\\xd2\\x7e\\x66\\xc6\\x92\\x33\\x6d\\x96\\x50\\x21\\x5d\\x24\\x55\\x63\\x99\\xb5\\xba\\xa4\\x14\\x91\\x48\\x19\\xa5\\xe3\\x84\\xb2\\x8f\\x57\\xfa\\x90\\x3e\\x14\\xd8\\xc9\\x94\\x65\\x58\\x7f\\x4e\\xa4\\x7c\\x2d\\x81\\x94\\xdc\\x6f\\x14\\x6d\\x77\\xb7\\xa0\\x27\\x0c\\x49\\xa9\\xdc\\x78\\x5a\\xc9\\x68\\xd4\\x9a\\x91\\xb8\\xa0\\x9e\\x47\\x1a\\x95\\xdb\\x48\\x47\\xdf\\xab\\x1f\\xb5\\xa0\\xfd\\x05\\x4b\\xac\\xaa\\xcb\\x9d\\xce\\x70\\x58\\x72\\x44\\x2a\\x30\\x24\\xbd\\xae\\x40\\x6d\\xee\\x21\\xc4\\xc9\\x1a\\x9c\\xf4\\x78\\xe0\\x40\\x08\\xe6\\x9a\\x3e\\x99\\xba\\x81\\x97\\xcf\\xb2\\xcc\\xe0\\x27\\x1a\\x6f\\x6f\\x17\\xd1\\x71\\x37\\x09\\xbb\\xfa\\xd2\\xec\\x9d\\x33\\xba\\xed\\x81\\xa9\\x97\\x4e\\x5b\\x75\\x9a\\x6a\\x17\\x63\\xd5\\xa5\\x2f\\x5a\\x8a\\x92\\x6c\\x84\\x93\\x19\\x75\\xe9\\x24\\x52\\x9f\\xa1\\xce\\x4f\\x50\\x65\\x98\\xa9\\xb8\\x89\\x6d\\xf2\\xc1\\xca\\xf5\\xd5\\xe8\\x93\\x68\\xf9\\x8a\\x99\\x3e\\x4f\\xb7\\x0c\\x29\\xbd\\xc7\\x25\\x2e\\xd5\\x3f\\xad\\x4b\\x84\\x1f\\xb0\\x04\\x20\\xf2\\xf2\\x77\\xa3\\x94\\xd1\\x55\\x7d\\x77\\x1e\\xbf\\xe4\\xfc\\x30\\x81\\x0e\\x7e\\x60\\x12\\x8c\\x18\\x91\\x9c\\x24\\xc7\\x97\\xe6\\x40\\xc2\\xd1\\x38\\x62\\xa2\\x6d\\xaa\\x5b\\x02\\xa7\\x84\\x60\\x52\\xc6\\xf9\\x8c\\x7c\\x77\\x40\\xbc\\x68\\x76\\xb5\\x73\\xb2\\xa5\\xe8\\x6d\\xf4\\x21\\x13\\xee\\xc8\\x0e\\xbe\\x4f\\x96\\xd1\\x0c\\xa0\\xbc\\x60\\x6e\\xc8\\x21\\xfc\\xc7\\x7c\\x5f\\xf7\\x83\\x47\\xa2\\x69\\x77\\x5b\\x58\\x27\\x50\\xf8\\xe5\\x48\\xee\\x93\\x4d\\x41\\x6e\\xcd\\x1d\\xca\\x42\\x86\\x11\\x52\\x9d\\xf7\\x2a\\xa1\\xb6\\xc4\\x4c\\x57\\x0f\\x69\\x95\\x38\\x05\\xac\\x92\\x31\\x7d\\x0d\\x74\\xb9\\xc0\\xea\\x9c\\x18\\x36\\x27\\x36\\x52\\x58\\xd2\\x8c\\x5f\\xd0\\xde\\x93\\xd6\\xb5\\xf4\\x3b\\xe8\\xd2\\x0f\\xc1\\x2b\\xd2\\x3d\\x92\\x10\\x9a\\x2b\\x3e\\x67\\x34\\x3f\\x03\\x1e\\x05\\x9d\\xa9\\x11\\x6a\\x50\\xcb\\x99\\x0d\\x67\\x43\\x00\\x84\\x1c\\x9e\\x0c\\x09\\xe2\\x61\\xf4\\x73\\x72\\xec\\x70\\xd1\\x20\\xb1\\x04\\x09\\x90\\x79\\x5d\\x49\\x78\\x73\\x50\\x9a\\x7b\\x69\\x00\\xde\\x60\\xb3\\x3f\\xde\\x54\\x7b\\x1c\\x69\\x3a\\x15\\x4a\\x7c\\x59\\x4d\\x42\\x42\\x50\\x1c\\xc3\\x0d\\x84\\x72\\xa8\\x16\\x76\\x81\\x10\\x3e\\xd5\\xed\\x84\\x1d\\x15\\x6a\\x84\\x71\\x6d\\xa4\\x54\\x39\\x3a\\x54\\x45\\xcc\\xc6\\x0e\\x25\\x3f\\x66\\xfb\\x84\\x1d\\x79\\xe4\\xeb\\xaf\\x93\\xec\\x4b\\x4e\\x48\\xe1\\x3c\\x2e\\xe0\\xf6\\x27\\xfa\\x78\\x45\\x01\\xdd\\x88\\x3c\\x9a\\xf5\\xb6\\x79\\xc8\\x85\\x45\\x2f\\xd4\\xe5\\xa2\\xb0\\xed\\x0e\\x40\\x84\\xcd\\x39\\xd0\\xc5\\x61\\x13\\xd5\\x9e\\x98\\x78\\x63\\x47\\x2f\\x30\\x5c\\x1a\\x13\\xc5\\xc6\\xd7\\x6e\\x15\\x3f\\x2e\\xcd\\x8e\\xac\\x61\\xe2\\x47\\xa6\\xbf\\x14\\x5b\\xc0\\x67\\x52\\x39\\x4b\\x3d\\xc4\\x67\\xfa\\xdd\\x40\\xa6\\x7c\\x46\\xa1\\x85\\x18\\x6e\\x23\\xad\\xdd\\xf8\\xeb\\xc1\\xb0\\xbe\\x85\\xf1\\x22\\xbf\\x94\\x2e\\x5c\\x8d\\x6d\\xe4\\xe4\\x6e\\x7a\\xab\\x50\\xcf\\xef\\x60\\xfd\\xa5\\x1f\\x8d\\x5a\\xaf\\x45\\xe9\\x2a\\xbd\\x6b\\xd9\\xf4\\x53\\x4c\\x57\\xa4\\xfd\\x2d\\x72\\x58\\x2e\\x5b\\x87\\x19\\x69\\xab\\x59\\xee\\xf6\\x3e\\x86\\x4e\\x71\\x5d\\x84\\xc6\\xb4\\x9f\\x0b\\xc7\\x52\\x48\\x7a\\xd0\\xe5\\x1b\\x8a\\x30\\x40\\x84\\x97\\x1f\\x9d\\x61\\xa3\\x18\\xc8\\x04\\x7c\\x05\\xe2\\x77\\x3e\\x74\\x90\\x06\\x47\\x48\\x07\\x0e\\x7d\\xee\\x94\\x2d\\x0d\\x83\\xdf\\x49\\x2f\\x10\\x21\\x13\\x02\\x31\\xd8\\xe7\\x6b\\x21\\x14\\x0c\\x75\\xa7\\xc2\\x8b\\x59\\x6f\\xba\\x5b\\x27\\xad\\xc8\\x2e\\x69\\xf7\\xc1\\x24\\xae\\x72\\xd2\\x53\\x5b\\x8d\\x8c\\xf9\\x21\\x1c\\x41\\x37\\x28\\x15\\xba\\xd9\\xc9\\x0c\\xb0\\x20\\xa2\\xdc\\xbc\\xab\\x2e\\x1c\\xcc\\xf9\\xdc\\x51\\xf7\\x92\\xb0\\x3d\\xea\\x67\\x96\\x21\\x5b\\xa5\\x72\\x96\\x49\\xfa\\xcd\\x50\\x20\\x04\\x1b\\x93\\x5d\\xca\\x2d\\x37\\xab\\x90\\x7f\\x00\\xd3\\x09\\xd0\\x45\\x6e\\x24\\x29\\xac\\x9d\\x8e\\x08\\x74\\x73\\xb7\\x50\\x81\\x60\\xbc\\x7c\\xc0\\x0b\\x61\\xd1\\x8a\\x0d\\x3e\\x06\\xc0\\x2a\\xde\\xbc\\x8d\\xa3\\x48\\x8f\\xf7\\x07\\x50\\x94\\xff\\x72\\x04\\x31\\xea\\xc9\\x8d\\x29\\xfe\\x09\\xa2\\x22\\x24\\xc3\\xde\\x47\\x7d\\xd3\\x10\\x0b\\xee\\xcb\\x04\\xfc\\x74\\xb3\\x86\\x19\\x28\\x48\\xc2\\xba\\xbb\\x0a\\x8f\\x5e\\x88\\x1d\\x99\\xa4\\x66\\x8b\\x7e\\x3a\\x11\\xd7\\x7a\\xef\\xd3\\xc5\\x81\\x34\\x0b\\x45\\x1a\\xf9\\x95\\x40\\x27\\x01\\xc4\\x7c\\x69\\xa8\\x1c\\x39\\x84\\x7e\\x4b\\x49\\x8d\\xef\\x3c\\xc2\\x7b\\xa1\\x54\\x1d\\x29\\xe5\\x3a\\xc4\\xd5\\x12\\xbe\\x16\\x2f\\xaa\\x40\\xd5\\xd1\\x9c\\x11\\xcb\\xda\\xc0\\x89\\x5a\\x0b\\x50\\x26\\x99\\xde\\x06\\x36\\x07\\x39\\x38\\x81\\xa0\\x99\\x4c\\x88\\x8a\\xc6\\x56\\x08\\x3a\\xdc\\xb2\\x18\\xd7\\xf2\\x6d\\x36\\x36\\xaa\\x44\\xc9\\x88\\xfe\\x90\\x05\\x33\\xce\\x8d\\x24\\xad\\x42\\xab\\x15\\x38\\xb6\\x96\\xfe\\x4f\\x1c\\x11\\x1d\\x7e\\x14\\xd1\\xe0\\x85\\x99\\x69\\x5a\\xfe\\x3e\\x08\\xcb\\xea\\x5c\\x24\\xda\\x68\\x81\\x55\\x4e\\x90\\x82\\x77\\x30\\x25\\x27\\x9b\\x36\\xf1\\x8b\\xa8\\xfb\\xcf\\x73\\x65\\xc1\\x72\\x20\\xcc\\xdb\\x0e\\x13\\xd8\\x8c\\x5e\\x07\\xaa\\x7e\\x6e\\xab\\xe5\\x41\\x4a\\x8d\\xc2\\x55\\xb7\\x00\\xeb\\x48\\x79\\xd4\\x08\\x91\\xb7\\x33\\xf8\\x5b\\x33\\x8c\\xd2\\xc6\\x22\\x0e\\xc3\\xb3\\xc7\\xbb\\xb5\\xc9\\xd0\\x88\\xa7\\x41\\x8b\\x1d\\xfe\\xc5\\x99\\xdb\\xf0\\x0b\\x3a\\xcb\\xee\\x09\\xdc\\xd7\\xda\\x4d\\x7c\\x9e\\x03\\x7e\\xa1\\xfc\\xe5\\xc1\\x8c\\x3f\\x03\\xa9\\x09\\x13\\xb8\\xf9\\x01\\x11\\xd7\\x7a\\xb2\\x44\\x19\\xe8\\xa8\\xa8\\x74\\x53\\x15\\xe5\\xdd\\x84\\xe3\\x22\\x00\\x08\\x4b\\xe3\\x04\\xcc\\xf8\\x4e\\xa5\\x6d\\x6c\\x1a\\xd9\\xd7\\x83\\x09\\xaf\\x9f\\xb4\\xe5\\x5e\\x10\\x0a\\x26\\xfb\\x6d\\x4d\\x76\\xa9\\x71\\xbb\\x0e\\x53\\x7a\\x7c\\x9d\\x71\\x59\\xf4\\x5c\\xfd\\x07\\x0c\\x8b\\x98\\x8a\\xc4\\x99\\xd0\\x02\\x0b\\x81\\x24\\xb7\\xa3\\x8c\\xcf\\x61\\xb2\\x93\\x96\\xa6\\x88\\x6e\\x6b\\x53\\x86\\x5a\\xd6\\x0a\\xdb\\x99\\xf8\\xcc\\xe2\\x08\\x11\\xc3\\x9a\\xbe\\x09\\xce\\x1c\\x6b\\xa3\\x88\\x80\\xd5\\xca\\x71\\x49\\x18\\x22\\x44\\xde\\xa2\\x39\\x0b\\x0a\\x05\\x49\\xea\\x24\\x1f\\x96\\x60\\xed\\x17\\x31\\x41\\xc1\\x75\\x5a\\x65\\x1a\\xc9\\x48\\xf4\\xcf\\x6f\\x43\\xa7\\xcf\\x65\\xa7\\xa3\\xad\\x64\\x3c\\xf9\\xf3\\x9d\\x8b\\xf3\\x35\\xd4\\x82\\x77\\x9f\\x8a\\x55\\xfc\\x2d\\x27\\x05\\x7a\\xbe\\x3d\\xa1\\x20\\xd0\\x61\\x00\\xd0\\xe0\\xe7\\x99\\x5b\\x70\\xcd\\xd2\\xc5\\x2d\\x52\\x44\\x91\\x39\\x2c\\x86\\x75\\x30\\x25\\x92\\x42\\x70\\x39\\xe2\\x67\\x57\\xf6\\x65\\xda\\x48\\xd0\\x72\\xb3\\x0a\\xff\\x2a\\xb0\\x5b\\x87\\x53\\xc2\\x03\\xc0\\x70\\x40\\xe4\\x5f\\x3e\\x4b\\xb0\\xcc\\x06\\x60\\x2c\\xb4\\x93\\x51\\xcb\\x62\\x7d\\x50\\x0f\\xbf\\x80\\xec\\x84\\xd9\\xc2\\xf7\\x5f\\xa5\\xb4\\x4a\\x5f\\x92\\x02\\x59\\x35\\x90\\x30\\x68\\x6b\\x71\\x62\\x02\\x23\\xbe\\x4d\\x61\\x73\\x50\\xdc\\x05\\x50\\x70\\x20\\xb2\\x5b\\x5f\\xa5\\x8a\\x21\\xc4\\x7d\\xd7\\x5a\\xd7\\x2d\\x31\\x3d\\xfe\\x93\\x5b\\x42\\x87\\xbc\\x2d\\x9b\\x00\\xba\\x09\\x56\\xca\\x80\\x96\\xad\\xc7\\x90\\x55\\x97\\xb1\\xd2\\xbf\\xb9\\x78\\xf1\\x53\\x0b\\x65\\x65\\xe1\\xf9\\xaa\\x39\\x2b\\x9c\\xd5\\xd6\\x46\\x98\\xec\\x20\\x59\\x2d\\x2a\\xd9\\x0c\\xf8\\x88\\x45\\xa5\\x8f\\xdc\\x69\\x26\\xea\\x79\\x41\\x30\\x56\\xa9\\x48\\xb0\\x0c\\xa2\\xd4\\x52\\x6c\\x23\\x97\\xd7\\xa9\\x89\\xf5\\xfa\\x71\\x49\\xea\\x1e\\xe5\\xe0\\xe0\\x2f\\x85\\xec\\xe8\\x80\\xa9\\xdf\\x17\\xd4\\x62\\x59\\xfd\\x06\\xc2\\x4a\\x85\\x15\\x90\\xc9\\x12\\x7b\\x8d\\xff\\x8e\\xcb\\x1c\\xcd\\x9a\\x8c\\x8c\\x49\\x84\\xcd\\x2c\\xe6\\x1d\\xd3\\x4b\\x90\\x7a\\x86\\xd1\\x2b\\xec\\xcc\\xdd\\x77\\x00\\x68\\xb1\\x88\\xf2\\x11\\xf4\\x36\\x1b\\x4f\\xc2\\x39\\x6c\\x86\\xe3\\x30\\x2b\\x6d\\x93\\xdc\\xef\\xb9\\x60\\x86\\xd3\\x6c\\xdb\\x2e\\x25\\xde\\xde\\x86\\xe4\\xcc\\x63\\x2c\\x35\\xdf\\xb1\\x50\\xae\\x31\\xd2\\x35\\x42\\xd0\\xf0\\xdf\\x5d\\xdf\\x68\\x1d\\x93\\xda\\x57\\x9c\\x98\\x49\\xe9\\xf5\\xef\\x1d\\xb1\\xac\\x38\\xc8\\x92\\xbe\\x1e\\x91\\x7c\\xed\\xfd\\xea\\x2e\\xc7\\x86\\x31\\x9e\\xe4\\xb5\\x53\\x94\\x9f\\x3e\\x09\\x0c\\x13\\x8f\\x80\\x09\\xb2\\x05\\x1f\\x12\\x92\\x5f\\xb7\\xf2\\xd9\\xdc\\xc7\\x4d\\x50\\x62\\xb7\\x25\\x99\\xd7\\x3c\\x7a\\xd5\\x20\\xdc\\xe3\\x1e\\xa6\\x25\\xc7\\x11\\x85\\x3f\\x3e\\x29\\x30\\xdc\\x9c\\xfa\\x3f\\x88\\x45\\xa8\\xab\\x4b\\x64\\x0c\\x58\\x50\\x7b\\xa6\\x83\\xe7\\xf4\\xb2\\x7e\\x99\\x6e\\x12\\x86\\x7f\\xce\\x5b\\x7b\\x5e\\x0f\\x58\\xc2\\xba\\xf6\\x4a\\xc9\\xad\\x0d\\x74\\x54\\x4a\\xd3\\x94\\x48\\xd7\\x2b\\xd5\\x88\\x02\\x87\\x76\\x25\\x24\\x1f\\x78\\xfc\\xc1\\x5f\\xa4\\x95\\xbb\\x3f\\x85\\xe4\\x3a\\x52\\xd4\\x81\\xa2\\x85\\x86\\xac\\xe4\\x91\\x6a\\x45\\x38\\xd2\\xba\\x68\\xcc\\xa3\\x29\\x3b\\xd8\\x10\\xa4\\x47\\x87\\x40\\x26\\x74\\xf7\\xa3\\x93\\x12\\x3c\\xc6\\x3e\\x98\\xbd\\xa7\\xf6\\xbd\\xcb\\x7c\\x85\\x48\\xee\\x29\\x9a\\xe2\\x91\\x7a\\x24\\x91\\x17\\x21\\x4a\\x79\\x3a\\xec\\xb1\\x39\\x8f\\xee\\x39\\x74\\x0e\\xda\\xe0\\x46\\x6f\\x9a\\xc5\\x49\\x82\\xee\\x15\\xe1\\x32\\xc9\\xa4\\xdd\\xec\\x64\\x77\\xf4\\xb8\\xd1\\x02\\x9b\\xaf\\xc1\\xf2\\xd4\\xe5\\xb6\\xd5\\x65\\x3d\\xd4\\xe5\\xe0\\xbd\\xb1\\x47\\x88\\x99\\x47\\xb9\\x27\\x4c\\x3e\\xda\\x6c\\x1b\\x5b\\xe9\\x05\\x87\\x1a\\xd8\\xba\\x94\\x49\\xa0\\xa8\\xf6\\x36\\xf5\\x57\\xda\\x64\\xf6\\x2f\\xdc\\x14\\xd8\\x29\\x6a\\xb2\\x33\\x1f\\x72\\x82\\x0a\\x0a\\xee\\x14\\xf2\\x8a\\x7f\\xd3\\x58\\x7b\\xc9\\x73\\x00\\xbb\\x39\\x06\\xe1\\x9c\\x9f\\x62\\x64\\xce\\x47\\x7f\\x17\\xce\\x93\\x38\\x31\\xaa\\x01\\xa3\\xec\\x56\\x58\\xb1\\x0a\\x0d\\x72\\x42\\xd0\\x22\\x76\\xf1\\x9c\\x18\\x3f\\x7e\\x4a\\x6b\\x05\\xb5\\x9f\\x6e\\x74\\xaf\\x75\\xdd\\x70\\x32\\xcc\\x7f\\xc6\\x60\\x8f\\x69\\x96\\xf4\\x2c\\x66\\x07\\xd5\\xa4\\x12\\x38\\x79\\xa6\\x17\\xa4\\xba\\xa3\\x14\\xf1\\xb7\\xa2\\xdc\\x95\\xfc\\x15\\xcb\\xeb\\x02\\x92\\x29\\x12\\x88\\xac\\x59\\x64\\xca\\x4d\\x33\\x68\\xc7\\x1d\\xf1\\xe7\\x76\\xa2\\xfe\\x8a\\x4a\\x0f\\x12\\x25\\x1e\\x58\\x7e\\x5a\\x22\\x11\\xca\\x3a\\x21\\xbd\\x8b\\x25\\x45\\x3c\\xe6\\xe7\\xcc\\xa3\\x7f\\x9c\\x5f\\x5d\\xc2\\x6c\\xa3\\xf7\\xcc\\xd9\\x9d\\xa8\\x96\\xdf\\x14\\x86\\xb2\\x69\\xfa\\x19\\xf9\\xf2\\x2d\\x69\\x1e\\x86\\x64\\x47\\xb0\\xfd\\x06\\x89\\x7a\\xaf\\x44\\x41\\xad\\x8c\\xa8\\x0e\\x4a\\x33\\x2b\\x60\\x30\\xb5\\xc2\\x04\\x95\\x9f\\x1b\\xbe\\xa6\\x13\\x86\\x5d\\xc9\\xd4\\x57\\xb9\\x70\\x9f\\x08\\x13\\x1c\\x56\\xc5\\x5e\\xf2\\xdc\\x7b\\xfd\\xe9\\x93\\xe0\\x21\\xb8\\x92\\x7b\\x1a\\x36\\x0c\\xbb\\x9c\\x31\\xe5\\x59\\x5e\\xa6\\x5a\\xa3\\x8a\\x50\\xd1\\x57\\xbf\\x0c\\x65\\xcc\\xa9\\xaa\\xcf\\xab\\xa2\\xfa\\xdc\\x4d\\x7c\\xa0\\x89\\xb2\\x96\\x89\\x03\\x4a\\x7b\\x5f\\xea\\x71\\x07\\x17\\xbb\\xae\\x77\\x83\\x76\\xb7\\x63\\xb3\\xa8\\x1b\\x1b\\xb0\\x0e\\x34\\x3e\\x05\\xba\\x61\\xcd\\x9a\\xc0\\xb8\\x97\\xe3\\x72\\x7a\\xb6\\xdd\\x6d\\xee\\x6b\\x11\\xfc\\x0d\\x40\\x30\\x8c\\xe1\\x87\\xf2\\x10\\x3f\\x3e\\x81\\xdf\\xde\\xc3\\x60\\xe7\\xc2\\xd9\\x08\\xaa\\xde\\xb5\\x4c\\xbf\\x6f\\x65\\x0b\\x0c\\x0a\\x24\\x10\\xa8\\x07\\xfa\\x69\\x96\\xc9\\x9a\\xe6\\xea\\xc8\\x75\\x77\\x26\\x4b\\xda\\x45\\x6a\\x51\\x73\\x58\\xce\\xe7\\xf7\\xb6\\x36\\x03\\x9c\\x5a\\xd6\\x4e\\x3c\\xdc\\x60\\xe6\\x60\\xa8\\x22\\x34\\x6c\\x99\\xbf\\x71\\x1e\\xe2\\x66\\x11\\xfd\\xf0\\xaf\\x2b\\xba\\xad\\xd1\\xc6\\xf6\\x46\\x56\\x26\\xc5\\x56\\xd3\\x3f\\xb5\\x40\\x58\\x66\\x30\\x95\\x3e\\x2e\\x64\\x26\\xf0\\xe0\\x2a\\xed\\x3e\\xc5\\xb1\\x53\\x8e\\x45\\x1b\\xf3\\xeb\\x8d\\x6c\\x45\\x68\\xa4\\xc5\\x2d\\xd5\\x26\\x36\\x53\\x2f\\xcf\\xb4\\x57\\xeb\\xe2\\xd9\\x3a\\x47\\x2f\\x88\\x88\\x84\\x93\\xa3\\xf2\\xe6\\x5b\\x61\\x71\\x9a\\xec\\x04\\xc6\\x7a\\x60\\xf0\\x46\\x1b\\x13\\x4e\\x8a\\x8f\\x91\\xc3\\x2c\\x07\\xb7\\xcb\\x64\\xb2\\xe0\\x06\\xd4\\x2b\\xc1\\x37\\x83\\x1e\\x19\\xd6\\x95\\x59\\x59\\x06\\xa1\\x0c\\x38\\x6a\\x83\\xdf\\x20\\x8e\\x44\\xa1\\x1e\\xd9\\xc3\\x7a\\xb8\\x26\\xba\\xf1\\x1c\\x9c\\xc8\\x42\\x4e\\xd1\\x26\\xab\\x4a\\x30\\x79\\x4f\\x28\\xc6\\x75\\xfd\\x93\\x49\\x82\\x36\\x32\\xaa\\xed\\x97\\x4a\\x47\\x0d\\x3c\\x6c\\x4b\\x6f\\x2b\\x99\\xe1\\xb7\\x27\\x42\\xdc\\x4d\\x59\\x6b\\x7e\\x50\\xbb\\x94\\x18\\x5e\\xde\\x45\\x17\\x97\\x25\\xb8\\x13\\xb4\\xaa\\x78\\x8a\\xce\\xb5\\xea\\xce\\x7f\\x5d\\xb2\\x67\\xf6\\x24\\x38\\x98\\x96\\xec\\x3f\\xce\\x85\\xf4\\x5e\\x03\\xb4\\x5d\\xdb\\x5e\\x67\\x89\\x3e\\x7f\\x88\\xbc\\xac\\xfa\\x21\\xd1\\xaf\\x10\\x5d\\x1e\\x5f\\xa7\\xa3\\xe3\\xe4\\x61\\x75\\xe5\\x9e\\x98\\x32\\x19\\x48\\xa1\\xaa\\x55\\x8f\\x09\\x88\\xea\\x36\\xc4\\x48\\xcb\\x9d\\x55\\x3b\\xac\\xaf\\x18\\x4c\\x63\\xe1\\xde\\x7c\\x68\\xbc\\xfe\\x32\\x23\\xa9\\x37\\x52\\x17\\x1c\\xbb\\x80\\xf3\\xe4\\x09\\xf9\\x63\\xe1\\x75\\x54\\xb0\\xb0\\xb7\\x2a\\x5b\\xa9\\x7c\\xa1\\x37\\x27\\xb8\\x18\\x58\\x90\\xec\\x55\\x9c\\x8b\\xf2\\x74\\x14\\x63\\x1a\\xd9\\xf6\\x71\\xda\\x91\\x5c\\xc5\\xfd\\x6a\\x92\\xab\\xbd\\x20\\x11\\x62\\x04\\x4e\\x7c\\xfb\\x52\\x33\\x99\\x02\\x77\\xcf\\x1c\\xbe\\xcd\\xa7\\x89\\x4b\\xff\\xf0\\xb9\\xae\\x64\\xda\\xc0\\x1a\\x35\\x97\\xbf\\xf7\\x68\\x2b\\xdd\\x23\\x32\\xf5\\x50\\xeb\\xdc\\xe3\\x22\\x2e\\xab\\x35\\xae\\x9e\\x7c\\x2c\\xaa\\xf0\\x24\\x84\\x77\\x57\\x70\\xbb\\x12\\xc1\\x81\\x01\\x62\\x66\\xa8\\x9b\\x29\\x9f\\xc7\\xf5\\xe5\\x08\\x22\\x18\\x1d\\x1b\\x25\\x64\\xb3\\xca\\x44\\x9f\\xdd\\x7d\\xc3\\x8a\\x5a\\xbe\\xb7\\x8b\\x05\\x2f\\x97\\x2a\\x46\\x30\\xab\\x67\\x4c\\x9f\\xb5\\x5c\\xec\\x27\\x8f\\xb7\\xd1\\x27\\xea\\x60\\x5b\\xd7\\x04\\xf8\\x48\\x92\\x26\\x73\\x50\\x22\\x01\\xbe\\xae\\x7f\\xef\\x16\\xf1\\x66\\x67\\x83\\x8f\\x60\\x6c\\x23\\x9a\\xb7\\xfc\\xcb\\x77\\x7e\\xaf\\x73\\x5c\\xa7\\x34\\x6f\\xc8\\x40\\x06\\x5d\\x93\\x85\\xb0\\x1b\\x57\\xd5\\xc0\\xa5\\xe7\\x2b\\x96\\x50\\xc6\\x05\\x0d\\x04\\x0c\\x18\\x6d\\xdd\\x4f\\x81\\xaa\\x8a\\x47\\x24\\x70\\x1d\\xa6\\x66\\x65\\x54\\xf7\\x5f\\xe3\\x39\\x11\\x66\\x89\\xf6\\xda\\xfe\\x91\\xc4\\xdd\\x5d\\x49\\xa1\\x44\\x41\\xa4\\x78\\x6a\\x39\\xc9\\x7f\\xd2\\x88\\xdb\\xcc\\x8d\\x76\\xf5\\xbb\\xdf\\xd7\\xab\\xd6\\x5d\\x67\\xc4\\xf6\\x2a\\xac\\xfe\\xec\\x78\\x2d\\xd9\\x79\\x50\\xe7\\x09\\x6c\\x61\\x84\\xc5\\x0d\\x28\\x50\\xb7\\xa0\\x60\\xee\\x33\\xbe\\x62\\x1e\\x60\\x35\\xba\\x56\\x52\\xef\\xd4\\x34\\x35\\x13\\xb9\\xb8\\x26\\xea\\xb4\\xf7\\xb6\\x8f\\x25\\x3d\\xcd\\x43\\x73\\x43\\xc2\\xa5\\xa9\\xd9\\x2c\\x34\\x6e\\xb6\\xf1\\xb4\\x0f\\xf7\\x6e\\xf9\\xc0\\x30\\xdf\\xc6\\xb7\\xc5\\x49\\x57\\x62\\xe5\\x2c\\xcc\\x6a\\x88\\x1a\\xc4\\xa7\\x4e\\x90\\xbe\\x61\\xcd\\x7f\\xe9\\x16\\xfa\\x16\\x2e\\xd3\\xf0\\x81\\x25\\xcc\\x72\\xe4\\x20\\x3b\\xe9\\xaa\\x3f\\x6d\\xc0\\xcd\\xc2\\x3e\\x1c\\x14\\x1e\\x68\\x1a\\xc5\\x9a\\x8d\\xeb\\x81\\xd9\\x23\\x7f\\xa0\\x4e\\x53\\xbf\\x20\\xae\\xa7\\x56\\x48\\x5b\\x5b\\xdf\\xf5\\x8f\\x92\\x84\\x84\\x82\\xb8\\xd6\\xbc\\xf5\\xc3\\x6d\\xd1\\x6c\\xcd\\x5f\\x46\\x45\\xd5\\x82\\x48\\x88\\x5a\\x64\\x47\\x74\\x88\\x8b\\x1a\\x58\\xe0\\x52\\x72\\x5e\\x7a\\x80\\x24\\xfd\\xb7\\x96\\x4a\\x9b\\x4e\\x59\\xd2\\x59\\x15\\xaa\\x5c\\x9e\\x39\\x67\\x5c\\x9b\\x96\\x71\\xb9\\xbf\\x36\\x3b\\xe2\\x0d\\x24\\xe1\\x95\\x1a\\x47\\xd1\\x37\\xba\\xe9\\xa7\\x92\\xb0\\xc3\\xa4\\x8d\\x5c\\x47\\x5c\\x0b\\x58\\x9a\\xf7\\x2a\\x4f\\x26\\x6c\\x01\\x66\\xcf\\x7e\\x73\\xe7\\x11\\x8d\\x0e\\xe7\\x32\\xd2\\x2d\\x41\\x3f\\x7e\\xc6\\xb7\\xbb\\x99\\x84\\xff\\x1a\\x63\\x69\\x87\\x13\\x9c\\xd0\\x0c\\x87\\x7d\\xe9\\x5f\\x1e\\xf1\\xcf\\x5c\\x5a\\xc7\\x00\\x5c\\x24\\x8c\\xa2\\xb1\\x96\\x06\\x21\\xa5\\xda\\xe2\\xfe\\x7b\\x02\\x03\\xcc\\x3d\\xc8\\x44\\x81\\x0d\\x8d\\xff\\xcd\\xf5\\x3b\\x48\\x83\\x4f\\x54\\x25\\x85\\xb6\\xd2\\xc4\\xca\\xa7\\xe2\\x9c\\x86\\x08\\x9e\\xf2\\x8b\\xf0\\xfd\\xa6\\x4f\\xac\\x18\\xc8\\x2a\\xe2\\x4b\\xf6\\x8c\\x60\\x1a\\x3b\\x9a\\x47\\x7b\\xa0\\xf0\\x3a\\x57\\x42\\x94\\x2b\\x3f\\x49\\x36\\xbf\\x0f\\xb1\\xc4\\x9b\\xe2\\x0f\\xd6\\x0c\\xad\\x31\\x13\\x4a\\xd5\\x22\\x06\\x05\\x77\\x64\\xa6\\x17\\xf1\\x76\\xe4\\xf3\\x63\\xb5\\x0c\\x54\\x1d\\x76\\x2f\\xa8\\x08\\xe0\\x98\\x38\\xe7\\x6f\\x86\\xad\\xe7\\xe7\\x6e\\xb3\\x67\\xde\\xf1\\x1b\\x17\\x37\\xcd\\x21\\xbc\\xab\\x49\\xc1\\xd2\\x6d\\x99\\x67\\x21\\xc8\\xa9\\x76\\x05\\xcb\\x75\\xde\\xf6\\x9f\\x83\\xd6\\x34\\x26\\xf2\\xcb\\xf0\\x74\\xfd\\x2e\\xcb\\xc7\\xe0\\xb6\\xf3\\xa0\\x1a\\x3a\\x00\\x0c\\x7b\\x1f\\xe5\\x41\\x02\\x75\\xd8\\x74\\x1d\\x97\\xb2\\x33\\x1c\\x6d\\x26\\x95\\xaa\\x96\\xe6\\xc5\\xd0\\xfb\\x75\\x24\\x4f\\xd2\\xbc\\xd1\\x45\\xdd\\x5e\\x72\\x4a\\x83\\x0d\\x17\\xcf\\xd5\\xa7\\xe7\\x15\\xd7\\x2e\\xcc\\x16\\x3f\\x95\\x07\\x81\\x4b\\xf8\\x91\\x3a\\x7e\\xfb\\x46\\x8d\\x70\\xfc\\x4f\\x8e\\x56\\x8b\\x05\\x24\\xea\\x2e\\x85\\x6a\\x32\\xde\\x50\\x7e\\x35\\x4a\\x7c\\xb6\\x13\\xd9\\x62\\xb8\\x5f\\x38\\xd1\\xc8\\x5a\\x14\\xcd\\xa8\\x37\\x64\\xfc\\x36\\x0e\\x78\\xbe\\xf0\\x6c\\x99\\x08\\xcd\\xf4\\xc9\\x61\\xea\\x68\\xdb\\xd9\\xe9\\x69\\xa3\\x29\\x8a\\xab\\x0f\\xde\\xc1\\x6a\\xd8\\xf9\\xa8\\xcb\\x6f\\x1d\\x13\\x55\\x01\\x54\\x2d\\xc5\\x31\\x49\\xa3\\x42\\x70\\xd1\\x01\\x83\\xfc\\x54\\x2e\\xb6\\x9d\\xd4\\x3d\\x98\\x7a\\x73\\xb7\\xd1\\xc8\\xd9\\x1b\\xad\\xfb\\xe6\\x76\\x7b\\x92\\x43\\x5a\\x4c\\x56\\x6c\\x29\\xa1\\x67\\xd8\\x78\\x08\\x50\\xd4\\x65\\x05\\x44\\xdd\\x48\\xb3\\xe8\\x42\\x16\\x11\\x07\\x44\\x00\\x8b\\xcc\\x32\\x0d\\xe5\\x00\\x8d\\x1b\\x37\\xeb\\x5d\\xfe\\xfd\\xd5\\xcf\\x61\\x67\\x19\\x47\\x4b\\x4e\\x7a\\xb1\\xa1\\xf4\\xb0\\x4e\\x0b\\xa2\\xdb\\x7d\\xc5\\x6f\\x71\\x13\\xb3\\x0c\\x3f\\xf1\\x1b\\x6f\\x3b\\x1f\\xed\\x3d\\xe8\\x3d\\x42\\xd6\\x54\\x59\\x09\\x81\\x88\\x4c\\xa9\\x8d\\x76\\xa8\\xba\\xc9\\xc7\\xb0\\x13\\x19\\x31\\x18\\x26\\xbd\\xa8\\xae\\x90\\x0a\\xa6\\x11\\xa2\\xce\\xac\\x2d\\x5b\\x03\\xc6\\x86\\xdb\\xe9\\xfa\\x38\\x9f\\xe5\\x18\\x7f\\xe0\\xc6\\xc8\\xd0\\x3f\\xbf\\x96\\xfb\\x8e\\x4a\\x9a\\x0b\\x24\\x79\\x07\\xa6\\x03\\xfc\\xf3\\x63\\x2a\\x93\\x54\\x0f\\x0c\\x8b\\xf0\\xc3\\x52\\xc7\\x48\\x2f\\xf6\\xa2\\x1b\\x20\\x61\\x2e\\xda\\xbf\\x74\\x08\\x2d\\xa2\\xef\\xee\\x30\\xc9\\xbd\\x39\\xff\\x84\\xce\\x37\\x5a\\x8f\\x7b\\xaf\\x98\\x25\\xa6\\x8d\\x9c\\x49\\xb1\\x98\\xaf\\x24\\x9b\\xad\\xfd\\x6d\\x40\\x16\\x2d\\x29\\x73\\x81\\xc1\\x73\\xaa\\x3d\\x75\\x71\\xa9\\xea\\x00\\x58\\x4b\\xec\\xf5\\x6d\\x24\\xc2\\xe5\\x2e\\xbf\\xe0\\x39\\x9d\\x5e\\xc9\\xd1\\x74\\x42\\xaa\\x66\\x8e\\x95\\x97\\x52\\x58\\x10\\x9e\\x9b\\x6b\\x14\\xef\\x40\\xe8\\xf9\\x5f\\xff\\x81\\x83\\x41\\xa4\\x74\\xfa\\x3f\\x88\\x8a\\x95\\x8c\\x30\\xe8\\x30\\x7a\\x4a\\xa4\\x83\\x26\\x27\\x31\\x4f\\xdd\\xb2\\xc2\\x32\\x78\\x08\\x89\\x4a\\x5e\\x78\\xc0\\xed\\x53\\x14\\x71\\xf1\\x75\\xd5\\x8a\\xc9\\xca\\x08\\xa4\\xa5\\xeb\\xb7\\xcf\\x16\\x32\\x39\\x66\\xac\\xc8\\x9b\\xbf\\x32\\xe7\\xa2\\xdc\\x80\\x80\\xc7\\x90\\xbd\\xb5\\x55\\x87\\x29\\x84\\x68\\x86\\xaf\\x14\\x33\\xb1\\xfa\\xf2\\x5d\\x4c\\xb7\\x5d\\xa7\\x22\\x73\\x2c\\x8d\\xa4\\x58\\x25\\x2b\\x26\\xb6\\xee\\x7f\\x38\\xc8\\xae\\x0a\\x8b\\x9d\\xf4\\xca\\x5d\\x52\\x04\\x50\\x8b\\xe3\\x4b\\x43\\x85\\xdf\\xa9\\xca\\x93\\xdd\\x92\\x41\\xd9\\xa6\\x27\\xe3\\xf6\\xa9\\x4f\\xf3\\x29\\x4e\\x56\\xcb\\xa0\\xbd\\xaf\\x1f\\x03\\xda\\xbc\\x19\\x1e\\x35\\xc3\\xde\\xc3\\x35\\x4b\\xcb\\x68\\x5d\\xbf\\xe2\\x0a\\x66\\x64\\xbd\\xd4\\xf2\\x5b\\x8d\\x4c\\x1e\\x4c\\x8b\\x48\\xee\\x13\\x7a\\x2e\\xe0\\xc2\\xca\\x3d\\x33\\x7e\\x0b\\x71\\xac\\xab\\x95\\xbe\\xab\\x78\\xa0\\xd5\\xb3\\xda\\x09\\xe6\\x26\\xc6\\xb1\\x54\\xca\\x77\\x99\\xc5\\x98\\xa7\\x42\\xf8\\xf8\\x11\\x95\\xf8\\x2f\\xec\\x69\\x96\\x1b\\xa1\\x11\\x5f\\x3e\\xba\\x7f\\x86\\x31\\x85\\x95\\x39\\x1d\\x77\\xf6\\x7c\\x3f\\x12\\x62\\x81\\xa3\\x50\\x2e\\x91\\x67\\x01\\x35\\x6c\\xa0\\xca\\x30\\x35\\xb6\\x22\\xc6\\x32\\x43\\x1b\\x16\\x1b\\x48\\x28\\xf1\\xda\\x9f\\x87\\x9b\\xfc\\x5d\\x2b\\xb3\\xae\\x63\\xc8\\xce\\x35\\x7b\\x97\\x82\\x25\\x0f\\x63\\x64\\xa7\\x8e\\xee\\x0d\\xde\\xd4\\x56\\x1b\\xe6\\x3c\\xab\\x1f\\x15\\xaf\\x65\\x3a\\x10\\x57\\x82\\x5c\\x08\\xb1\\x37\\x83\\x3c\\x8b\\x8e\\x83\\xb6\\xa8\\x36\\xe3\\xda\\xd9\\x39\\xd8\\xa3\\x1d\\x7f\\xf4\\x85\\x5a\\x3b\\xb8\\x6b\\xc2\\x43\\xdc\\xd4\\xe6\\x74\\xf9\\x2d\\x70\\x5f\\xee\\xfb\\x93\\x4b\\x31\\x72\\x68\\x63\\xc0\\xa3\\x89\\x43\\xc6\\x76\\xf3\\x48\\xc3\\xf9\\x7c\\x46\\x7e\\x72\\xac\\x18\\x8f\\x1b\\xcc\\x11\\x50\\x84\\x09\\x1f\\x8e\\x34\\x96\\xab\\xdf\\xca\\xce\\x91\\x56\\x4f\\x68\\x62\\x6e\\x56\\xc7\\xd1\\xe9\\xaa\\x1f\\xf8\\xb5\\xd0\\x00\\x09\\x3e\\xe8\\xdc\\x43\\x5b\\x49\\x96\\x04\\xe3\\xfa\\x26\\x9e\\xb6\\xb5\\xbe\\x2b\\x1f\\x19\\xb7\\x95\\xe9\\x07\\x33\\x2b\\xa6\\x47\\xda\\x05\\x49\\x5d\\x5c\\x90\\x1a\\x83\\xa5\\x9d\\xad\\x9a\\x8c\\x4b\\xd8\\x08\\xc8\\x20\\x44\\x09\\x2f\\x2e\\x92\\xd1\\xd3\\xf8\\xb4\\x82\\x57\\xd6\\x04\\x7b\\x5d\\xad\\x77\\x1f\\xc0\\xbe\\x33\\x0a\\x35\\x92\\x4a\\x5c\\xee\\x8d\\x5c\\xb1\\xbb\\x49\\x05\\x96\\x02\\x80\\x89\\xf2\\x82\\x61\\x45\\x5b\\x2b\\x93\\x9d\\xc1\\xcf\\xa6\\xcf\\x06\\xd1\\x51\\x71\\x78\\x28\\x08\\xdc\\x8c\\x62\\x31\\xf1\\x0d\\x7d\\x9b\\x7a\\x05\\x5d\\x7a\\xac\\x2f\\x21\\x6a\\x11\\xee\\x68\\x29\\x19\\xd4\\xea\\x67\\xe2\\xc2\\x61\\x6e\\x48\\xe1\\x42\\x3f\\xf8\\x7a\\xf9\\x68\\xfa\\xc1\\x12\\xaa\\xbb\\x51\\x95\\xca\\x9d\\x85\\x9a\\xc6\\xd9\\x70\\xa8\\x7d\\x07\\x99\\xd2\\x1f\\xb4\\xb7\\xe2\\x24\\xeb\\xd3\\xbd\\x28\\xee\\x1c\\x18\\xa4\\x32\\x3f\\x17\\xa8\\xdb\\x2c\\xe5\\x48\\x3f\\x84\\x6c\\xb4\\x98\\x94\\x3f\\x88\\xfa\\x1d\\xc6\\x30\\xd7\\xae\\x6d\\x0c\\x9b\\x3b\\xf7\\xe5\\xc8\\x03\\x42\\x64\\x04\\xd7\\x66\\xde\\x68\\x22\\xcf\\xb3\\xe3\\xfd\\x1a\\x8e\\x42\\x57\\xae\\x61\\xc4\\x0e\\xa3\\xb1\\x19\\x70\\xc3\\x24\\x5a\\x6c\\x80\\x1a\\x89\\x33\\x25\\xa8\\x4f\\x22\\x2b\\x05\\xf9\\x89\\x2f\\x0f\\x81\\xdf\\xe0\\x72\\x01\\xc1\\xa7\\xf0\\x83\\xaf\\x7b\\x03\\x8c\\x94\\x50\\x95\\xc5\\x37\\x16\\x6f\\x6f\\x1f\\x35\\xf5\\xde\\x0c\\x7a\\x34\\x87\\x5f\\x45\\x25\\x80\\xd2\\x42\\x36\\xfb\\x33\\x5d\\x05\\x1b\\x5a\\xc4\\x0f\\x32\\x0b\\xbd\\xa0\\xc6\\x38\\xe7\\xf8\\x25\\x2d\\xe9\\x66\\xef\\xd8\\x21\\x39\\xea\\x11\\x82\\xd1\\x17\\xe7\\xec\\xa3\\xa0\\xa3\\x53\\xe8\\x48\\x26\\xfe\\x4a\\x44\\x24\\x16\\xb9\\x99\\x9b\\x5a\\xb9\\x45\\xe0\\xaf\\xdc\\xa7\\xa1\\xbf\\xdf\\xcc\\x74\\xeb\\xf1\\xef\\xfc\\x48\\x9b\\xd3\\x66\\xc2\\x5e\\x80\\xff\\x5a\\x41\\x74\\x77\\x61\\xe3\\xef\\xca\\x67\\x3f\\x76\\xc2\\xd3\\xe6\\x0f\\xab\\xe5\\xcf\\x15\\xc8\\x00\\x42\\x2e\\x58\\xf1\\x48\\x55\\xc6\\x4c\\x50\\x26\\xc0\\xa7\\x80\\x50\\x16\\xd8\\x50\\x6a\\xf7\\x07\\xf3\\xa1\\xc5\\xcd\\xee\\x41\\xd4\\x5b\\x46\\x3f\\x7b\\x34\\x39\\x8f\\xd8\\xf6\\x6f\\xe3\\x12\\xc6\\x37\\x4e\\x85\\x6f\\x82\\x9f\\x7b\\xb8\\xfa\\x67\\x75\\xab\\x4c\\x10\\x7f\\xc8\\x0a\\x96\\x04\\x3f\\x71\\x9d\\xd4\\x22\\xa3\\x9e\\xd4\\x0f\\xe6\\x50\\x4b\\x4f\\xa1\\xbb\\x7a\\xd1\\x30\\xd7\\xd4\\x00\\xa5\\xa2\\x11\\xa3\\x79\\x3d\\x92\\x6e\\xdc\\xd5\\x38\\x0d\\x38\\x71\\x86\\x7b\\xcf\\x5d\\x8c\\x16\\xcc\\x1d\\xff\\x2e\\xf0\\x3c\\xbc\\xab\\x9e\\x83\\xb3\\xe2\\x4d\\xdb\\x40\\x45\\x85\\xea\\xe3\\x4b\\xeb\\xf7\\xc0\\x5f\\x0b\\x61\\x83\\x38\\x00\\xb4\\xb0\\x2a\\xe2\\x19\\xa8\\x5c\\x26\\x8c\\x50\\x85\\x6e\\x92\\xd4\\xb0\\xa5\\x2f\\xd1\\xa7\\x55\\xaf\\x53\\xf0\\x11\\xae\\x57\\x5b\\xf3\\x3a\\x26\\xad\\x2d\\xd6\\x05\\xc0\\x56\\x20\\xcc\\xf1\\x72\\x00\\xc9\\xad\\xf4\\x9f\\x73\\xd0\\x72\\xf8\\x50\\xfe\\xcc\\x84\\x19\\xbb\\x24\\x18\\x11\\xe0\\x53\\x11\\x46\\x94\\xfc\\xed\\x48\\x4d\\xc9\\x18\\x73\\x62\\x0f\\x1a\\xf8\\x69\\x2c\\xff\\x93\\xa6\\x15\\x1a\\x1e\\x3d\\x9b\\x01\\x9a\\x5f\\x76\\xf9\\xea\\x36\\x89\\x98\\x16\\x07\\xd9\\x90\\x36\\xae\\x25\\x06\\x8e\\x5c\\xe6\\x88\\x25\\x53\\x12\\x35\\x1a\\x9d\\x3e\\xe1\\xd0\\x8d\\x16\\xef\\x1e\\xee\\x27\\xd6\\x15\\xd2\\x96\\xce\\x2f\\x8a\\x29\\x99\\x6d\\xf7\\x02\\x2b\\x9d\\x35\\xee\\x1f\\xbe\\xb1\\xbe\\x0b\\x55\\xcd\\x7d\\xb5\\x68\\xcf\\xb6\\x09\\xba\\x5a\\xea\\x56\\x13\\xd6\\xb9\\xdc\\x9d\\x9f\\x73\\x98\\x1c\\xf4\\xda\\xf6\\x26\\xfe\\xb9\\xab\\x64\\x4c\\xfc\\x9a\\x9a\\x4d\\xef\\x45\\x23\\xbd\\x83\\xa7\\x5f\\x95\\x1e\\xd7\\x52\\xbe\\x39\\xa1\\xfd\\x13\\x4d\\xcf\\xeb\\xcd\\xe1\\x7a\\x4b\\xc5\\x96\\xe7\\x68\\xc0\\x10\\xcf\\xf0\\xa9\\x97\\x84\\x91\\xe0\\xb6\\xf7\\xf0\\xaa\\xec\\x6d\\xf1\\xf6\\x1c\\x70\\x83\\xe2\\x41\\x28\\x59\\x2d\\x41\\x46\\x1d\\xf8\\xf3\\x7b\\xe2\\x9c\\x96\\x1b\\x95\\xec\\xd0\\x73\\x14\\xc3\\xdc\\xb8\\xda\\xac\\xf6\\xfc\\x91\\xb5\\x86\\xae\\x1e\\x7b\\xd7\\x01\\x57\\x0f\\xef\\x3b\\xef\\xb7\\x43\\x4f\\xb6\\xb1\\x39\\x3a\\xed\\x29\\xc9\\x06\\xfe\\xe2\\x00\\xa3\\xd7\\xe2\\x67\\xb4\\x1b\\xce\\xc9\\x36\\x99\\xe4\\xd8\\x7c\\x76\\xd8\\xd3\\x9b\\x9d\\x76\\x45\\xa1\\x6e\\x23\\x4d\\x7e\\x15\\x1e\\x50\\x29\\x07\\x37\\x08\\x6d\\x50\\xa6\\xeb\\xfa\\xc1\\x77\\xc1\\xa2\\xfc\\x25\\xed\\x74\\xc7\\xcb\\x3d\\xf7\\xdc\\xf4\\xca\\x47\\x10\\x9e\\xb9\\xe1\\x5a\\xe2\\x27\\xf3\\xba\\x34\\x72\\x86\\x2c\\x8a\\x3a\\x36\\x48\\xb9\\xea\\x0b\\xd7\\x27\\x14\\x8b\\x73\\xb1\\x5e\\x6b\\x38\\xda\\xe4\\x9b\\xfe\\x29\\x90\\x28\\x09\\xa1\\x8c\\x94\\x59\\x11\\xee\\xea\\x54\\x56\\x95\\x99\\xfc\\x68\\xa2\\xe6\\x71\\x46\\x57\\x55\\x8e\\xdf\\xcb\\x3a\\x86\\x8d\\xbe\\x2c\\x7f\\xae\\x0c\\x2e\\xcc\\x68\\x0a\\x64\\x5e\\x16\\x66\\x79\\x62\\x3a\\x99\\xfe\\x2d\\xbd\\xa3\\xbd\\x40\\x93\\xf1\\xea\\x1a\\xec\\x1c\\x2a\\xb4\\xb8\\x93\\x5b\\xfd\\xfb\\xc0\\x87\\x53\\x8d\\x92\\xff\\x58\\x02\\x41\\x2d\\xb1\\x7a\\x23\\x45\\xb5\\x81\\xa2\\x81\\x73\\x58\\x20\\x22\\x9e\\xfa\\x18\\xdd\\x81\\x8f\\xb5\\xd3\\x6e\\x22\\x5e\\x75\\x7a\\x30\\xb6\\xef\\xac\\x84\\xda\\xa8\\xea\\xcc\\xc2\\xae\\x6b\\x88\\xbb\\xad\\x35\\x57\\xe9\\x4c\\x85\\xc4\\x48\\x32\\xd1\\x45\\xf9\\x01\\x87\\x66\\x18\\x81\\x09\\xec\\xe2\\x4e\\x92\\xf4\\x6e\\xd6\\xa6\\xee\\x9c\\xf0\\xf3\\xd8\\xfa\\x6e\\x83\\x6e\\x90\\x55\\x78\\x75\\xbf\\x45\\xa8\\x3b\\xe9\\xba\\x98\\xfe\\x90\\xb9\\xdf\\xc4\\xc1\\x3a\\x1f\\xda\\x43\\x2d\\x61\\xc3\\x6b\\x38\\x71\\xd1\\x3d\\x95\\x9c\\xba\\x49\\x75\\xc4\\xee\\x63\\x39\\x29\\xcf\\xd1\\xfd\\x7d\\xf3\\xd0\\x85\\x81\\xff\\xfc\\x8c\\xff\\x16\\x95\\x9f\\x70\\x15\\x23\\x8c\\x8a\\xe8\\xbc\\x6a\\x6d\\x06\\x19\\xb1\\xa5\\x63\\x72\\x5a\\x79\\xf7\\x96\\xf8\\x9b\\xb4\\xc3\\xbb\\xf8\\xed\\x6c\\x88\\x2c\\x5f\\x5f\\x67\\x13\\x07\\x30\\x57\\x00\\xa9\\x7c\\xdf\\x09\\xe0\\xf7\\x07\\x95\\x76\\x10\\x9d\\x28\\xb7\\x5c\\x26\\x72\\x49\\xa4\\xa1\\x73\\x1b\\x5f\\xc0\\x3b\\x92\\x5a\\x1a\\x16\\x72\\x16\\x2d\\x0a\\x0e\\x0b\\x37\\xc6\\x2b\\x75\\x95\\xf4\\x0a\\xdb\\x8a\\x53\\xdd\\x90\\x83\\x35\\x87\\xc2\\xe0\\x1f\\x09\\x1e\\x62\\x18\\x18\\x25\\x9f\\x69\\x0a\\x4d\\xc8\\x9e\\x4e\\xfa\\x65\\x26\\x78\\x5b\\x4c\\xd3\\x98\\x9b\\x9d\\x18\\x56\\x92\\xd2\\x2d\\xa7\\x9b\\x2d\\x28\\x17\\x93\\xa8\\x52\\x1b\\x69\\x8f\\x2c\\x4f\\x1a\\xa6\\xb1\\xb2\\x47\\x13\\xd3\\x1f\\x55\\x88\\xa7\\x33\\x23\\x5e\\xf3\\xde\\x60\\x6b\\x6e\\xec\\xcd\\xf0\\x02\\xaa\\xfa\\x0a\\xe8\\x9f\\xe8\\x5e\\x51\\xaf\\x5c\\xf6\\xe1\\x2b\\xef\\x36\\x4e\\x93\\xc0\\x3e\\x0f\\x7e\\x8b\\x78\\x79\\x70\\xd9\\x65\\xbe\\xd6\\x3a\\x4d\\x66\\xf3\\xb9\\xb3\\x5e\\x6e\\x7f\\xbe\\x0c\\x44\\x4e\\xa4\\x3b\\xad\\xf1\\x65\\xe0\\x13\\xb2\\xff\\x14\\xde\\xe6\\x51\\xc5\\x9b\\x20\\x97\\x83\\x4d\\x8e\\x9b\\xc2\\xc4\\x21\\x86\\xc1\\x05\\x64\\x13\\x0d\\xc2\\xe1\\x3e\\xc2\\x96\\xb9\\xd0\\xc8\\xfc\\x76\\x4f\\x33\\xed\\x3b\\xff\\xa0\\xd7\\x58\\x11\\xd1\\xfc\\xdb\\xc2\\x33\\xe5\\x5a\\xfb\\xc3\\x0a\\x93\\xf5\\x82\\xa1\\xdd\\x0d\\x81\\x1b\\x6c\\x9d\\x0a\\x91\\xb5\\xa7\\xb0\\x22\\x8c\\x4f\\x7b\\x63\\xa0\\x20\\x3c\\x96\\xd9\\xf2\\xab\\x8a\\x13\\xe3\\xff\\x5b\\x85\\x0c\\xd3\\x23\\x44\\x35\\xc7\\x15\\x46\\x97\\x4b\\x7d\\xf7\\xbc\\xef\\xd1\\xac\\x14\\xd6\\x9a\\xe2\\x91\\x3d\\x6e\\x7b\\x00\\xc2\\x52\\x15\\x38\\x66\\x67\\xe5\\xcf\\xb7\\x22\\x00\\x50\\xbc\\x62\\xba\\xe1\\x76\\xbb\\x00\\xc2\\x17\\x91\\x95\\x24\\xb0\\x62\\x91\\x26\\x22\\x9b\\x98\\x91\\xa5\\xc2\\xff\\xc0\\x09\\xf6\\x29\\xb7\\xa4\\x76\\x7e\\xcd\\xda\\x53\\xa4\\xec\\xa6\\x8f\\x4a\\xbb\\x3f\\xe2\\xb8\\x6c\\x97\\x82\\x2f\\x5f\\x32\\x46\\x7c\\x9f\\x85\\x3e\\x84\\xff\\xd8\\xd8\\x96\\x19\\x92\\x6d\\x25\\x33\\xbe\\x8f\\xfa\\xd8\\x45\\x21\\xf6\\x06\\xb8\\x9e\\xcf\\xc6\\x25\\x96\\x6f\\x97\\x41\\x94\\xe2\\x87\\xe1\\x04\\x1f\\x9a\\x61\\xf8\\x2d\\x3c\\xe1\\xb4\\x0e\\x3e\\x05\\x6b\\x34\\xf2\\x63\\xe1\\xa8\\xf1\\xd7\\x78\\x8e\\x2a\\x06\\xe9\\xd6\\x53\\xd6\\xf0\\x6f\\x8a\\x7d\\x7a\\x76\\xa1\\xde\\x7a\\x8c\\x16\\x40\\x25\\xc1\\x26\\x08\\xde\\xa0\\x06\\x12\\x50\\x9f\\xdc\\x7f\\xaf\\x4a\\x74\\x19\\x54\\x42\\xc7\\xca\\xaf\\x22\\x72\\xd7\\xa7\\x07\\xd7\\x94\\x40\\xb6\\xe5\\x72\\xd7\\x31\\xe0\\x85\\x09\\xf1\\x58\\xe3\\x0c\\x72\\xf9\\xb8\\xfb\\x6a\\xd1\\x02\\x7e\\x5f\\x8a\\xec\\xee\\x1b\\x35\\xe0\\xfd\\x1b\\xf4\\xf6\\x74\\xb8\\xce\\x9c\\xb0\\x0d\\x82\\xb9\\x34\\x8c\\xc8\\x2e\\xa6\\x53\\x9a\\xc6\\xf0\\xad\\x67\\x0d\\xd4\\x6b\\xcb\\x87\\x3d\\x1c\\x4a\\xa1\\x1e\\xec\\x02\\xd3\\xf4\\xbd\\x3e\\xb4\\x47\\x2c\\x30\\x8b\\x37\\xb7\\x20\\xe1\\x43\\x7e\\x98\\xf8\\x93\\x1e\\x40\\x40\\xa1\\xe8\\x6c\\x89\\x58\\x36\\x60\\x9a\\x6f\\xe5\\x37\\x52\\x0c\\x51\\x0a\\x51\\x87\\x4b\\xa5\\x59\\x34\\xd4\\xbb\\xb3\\x5f\\x04\\x20\\x36\\xc1\\xa7\\xc2\\x2e\\x18\\xa4\\xf6\\xab\\x82\\x51\\x55\\xc2\\x26\\x98\\x16\\xc4\\xd6\\x95\\xe6\\xf3\\x64\\x7f\\x0e\\x46\\xf7\\x0a\\x46\\x1b\\xe9\\xc6\\x03\\x2f\\x72\\x92\\xfd\\x00\\xd2\\x51\\xef\\x57\\xf6\\xab\\x30\\x63\\xe7\\x13\\x7b\\x3f\\x2f\\x6f\\x0a\\x62\\x11\\x6c\\x54\\xdb\\x9a\\x6a\\x3b\\x1e\\x0f\\x71\\x2a\\xdb\\x0c\\x41\\x9d\\x79\\xfd\\xbf\\x65\\x67\\x54\\xb5\\xeb\\xc4\\xd1\\xe9\\x77\\x39\\xcb\\x75\\x4b\\x7f\\x7d\\xdb\\x2f\\x90\\x75\\xb1\\xa1\\xaf\\xad\\xf3\\xda\\x7a\\x1e\\x8d\\x67\\x77\\xe9\\x31\\xd2\\x51\\x5c\\x57\\xfa\\x3d\\x60\\xa6\\xcf\\xbc\\x81\\x35\\x41\\x35\\xa1\\x13\\xa5\\x86\\xd8\\xcf\\xf8\\x77\\x23\\x39\\xd7\\x7a\\xb1\\x97\\xd9\\x53\\x92\\xde\\x24\\xbb\\x85\\x8e\\x60\\x23\\xc8\\xa7\\x9f\\x08\\x5c\\x05\\xa0\\x9c\\xa4\\xdf\\x9e\\x5c\\xfc\\x3d\\x6d\\x6e\\xef\\xdc\\x6d\\x1a\\x06\\xe7\\x61\\x50\\x43\\xeb\\xf4\\x69\\x4b\\x62\\x37\\xe9\\xcb\\x4b\\x27\\x1f\\x26\\xd0\\xe6\\xd9\\x6c\\x04\\x73\\xc1\\x62\\xc8\\xeb\\xd9\\xef\\xc7\\x68\\xdb\\x65\\x73\\x81\\xb3\\xb8\\x16\\xf1\\xe4\\xfe\\xcc\\xf9\\x98\\x0e\\x9a\\xd1\\xf6\\x5e\\x53\\xc9\\x13\\xb1\\x94\\x92\\x0f\\xff\\x98\\xb3\\x66\\xbd\\xf3\\xbd\\x95\\x75\\x52\\xbc\\x7e\\xc7\\x23\\xf3\\x9b\\x9a\\xb6\\xe4\\xa8\\xc4\\x67\\xdd\\xd7\\xb2\\x9c\\x39\\x7a\\xe8\\x9f\\x74\\x09\\x6e\\xe1\\xcf\\x26\\x99\\x75\\x82\\xdf\\x35\\x9c\\x9f\\x73\\x8d\\x93\\xd5\\x26\\x73\\x42\\x1f\\x9b\\xe7\\x96\\xc8\\x52\\x64\\x5a\\x45\\x08\\x43\\xbe\\x50\\x2d\\x69\\x1f\\x2b\\x95\\x2b\\xe0\\x90\\x37\\xc7\\xc0\\xbb\\x92\\x4a\\xe4\\x9e\\x14\\x22\\x80\\x4f\\x74\\xbf\\x71\\xe4\\x9b\\x34\\x06\\xae\\xba\\x39\\xaa\\x7e\\xd7\\x98\\xd5\\x8e\\xb0\\xd9\\x9a\\x3f\\x35\\x41\\x17\\x30\\x90\\xb6\\xa0\\x1a\\xf4\\x8c\\x9b\\x4e\\xa7\\xe6\\x97\\xa0\\x5b\\x53\\xcd\\xf8\\x96\\xc2\\xbb\\x0c\\xa7\\xb2\\xfd\\x75\\xaa\\xc4\\x85\\x2e\\x76\\x7f\\x0d\\xb6\\x2f\\x9c\\xa1\\x25\\x6b\\xb1\\x14\\x2d\\xdc\\x62\\xf2\\xbc\\x1d\\x1b\\xf2\\xf8\\x5a\\x4a\\xd3\\x86\\x8c\\x4c\\x94\\x28\\xee\\x6b\\x2d\\xdd\\x90\\x83\\x54\\x4f\\x05\\xab\\x42\\x4e\\x98\\xc0\\xa8\\xa6\\x46\\xfe\\x44\\x42\\xcf\\xfe\\x6e\\x69\\xe7\\x3b\\x5b\\xa8\\x2d\\x3d\\xc4\\x19\\x00\\x9e\\xbb\\xd4\\xa6\\x49\\xe8\\xe8\\x6c\\x42\\x2e\\xfd\\x4a\\x86\\x3c\\x7d\\xc2\\x8b\\x33\\x33\\x39\\xf9\\xf8\\x78\\x3a\\x0f\\xc1\\x58\\x92\\x88\\x36\\x83\\x33\\x63\\x55\\xfe\\xd6\\x2d\\x12\\x21\\xe8\\x0a\\x1c\\x1c\\xf8\\x1b\\xf0\\x91\\x7c\\x4d\\xf8\\xa2\\x35\\x07\\x99\\x3e\\x8b\\xeb\\x04\\xec\\x3e\\xec\\xf2\\xb4\\xba\\x19\\xae\\xa3\\xa7\\x48\\x15\\x42\\x9e\\xde\\x46\\xd4\\x07\\xda\\x9c\\xbb\\x4a\\x3e\\x3d\\xcb\\xf2\\x4e\\x12\\x5b\\xd0\\xb6\\xe8\\x6b\\xe6\\x55\\x53\\x59\\x80\\xd9\\xd6\\x15\\x30\\xbe\\x6b\\x94\\x73\\x1b\\xd4\\x4d\\x17\\x90\\x21\\x79\\x4b\\x4a\\x36\\xa5\\xda\\xd7\\xa7\\x03\\x74\\xca\\x61\\x98\\x37\\x2c\\x8d\\x62\\x48\\xd2\\x66\\xea\\x99\\x6b\\xec\\xcc\\xf3\\xe0\\x69\\xa3\\xeb\\x3f\\x9a\\xe1\\x51\\x0d\\x86\\x85\\x39\\x6b\\x0d\\x64\\x80\\x26\\x5f\\x44\\x74\\x47\\x47\\x82\\x41\\xa0\\xeb\\x18\\x69\\xb4\\x09\\xbb\\x53\\x95\\xc9\\x2a\\xa7\\xf9\\x9b\\xf8\\x63\\xec\\x86\\x12\\xbb\\xa7\\x7b\\x7d\\x3d\\x00\\x0d\\x43\\xce\\xa3\\x0a\\x96\\xf6\\x77\\x04\\x8d\\x8f\\x14\\x4c\\x59\\x56\\x40\\xc6\\x26\\x28\\xa2\\xda\\xba\\x2d\\x79\\xc0\\x6a\\xae\\xd5\\x2e\\x94\\xcf\\x5c\\x97\\x54\\xb4\\x6f\\xa0\\x08\\xbb\\x71\\xe3\\x3b\\x11\\x93\\xf3\\x0a\\xa7\\x62\\xac\\x44\\x0c\\x38\\x59\\x86\\x4c\\x11\\xf8\\xf8\\x13\\x16\\x86\\x8f\\xff\\x02\\x31\\xad\\x0c\\x67\\xbd\\x10\\xeb\\x2e\\x32\\x9a\\x59\\xa4\\x39\\x4b\\x09\\xbe\\xb4\\x34\\x7b\\x29\\xd8\\xae\\xd9\\x22\\x5b\\xc6\\xcb\\x26\\x0c\\xbf\\x6e\\x3b\\x59\\x79\\xc4\\x40\\x89\\x84\\xb1\\xe6\\xcc\\xd1\\xae\\xb8\\x11\\x0a\\x15\\x68\\x5d\\x7c\\xca\\xb3\\xc0\\x47\\x3e\\xa6\\x28\\x61\\xa2\\xbb\\x31\\x29\\x9a\\x5d\\x33\\x35\\x3b\\xe7\\x5d\\x40\\xf3\\x5f\\xf8\\x32\\xd8\\x2d\\x26\\x65\\x56\\x18\\x1d\\x9f\\xcc\\x6e\\xa3\\x6e\\xa3\\xe8\\x07\\xb6\\xd3\\x4d\\xe0\\x44\\x10\\xbf\\xbd\\x77\\xce\\x40\\xcc\\x6e\\xe8\\x2d\\x5e\\x70\\x5a\\xa8\\x41\\xc0\\xc0\\x55\\x92\\x79\\xe3\\x32\\x8f\\xf9\\xfc\\x27\\x64\\x43\\x83\\xf2\\x4b\\x8e\\x93\\x8a\\xe6\\x1a\\xbe\\x0d\\x7b\\xbc\\x2c\\xe8\\x96\\x64\\xd8\\x47\\x8d\\xe2\\x2d\\x83\\xeb\\x55\\x83\\x72\\x33\\x7a\\xc5\\x4e\\xcb\\xc1\\x27\\x3b\\x35\\x55\\x39\\xf7\\x3c\\x9a\\x99\\x4f\\x85\\x79\\x6c\\x05\\x97\\x78\\xbe\\x95\\xde\\x42\\x01\\xb7\\x10\\x35\\x2b\\x51\\x0d\\x74\\x50\\x59\\x79\\x67\\x5b\\xec\\x22\\x11\\xd1\\xd0\\x39\\xe3\\xc4\\xca\\x83\\x51\\x48\\xab\\xac\\x12\\x6a\\x9d\\x90\\x00\\x45\\x43\\xb4\\x9d\\x4f\\x26\\xf6\\x1f\\x51\\x38\\x5a\\x7a\\x5c\\x5e\\xfc\\xa6\\xcc\\x40\\xf5\\x4c\\xa5\\x1d\\xe6\\x36\\x0b\\x0a\\x00\\xbc\\x05\\x1a\\x2f\\xd2\\x77\\x76\\xe5\\x08\\xf5\\xdf\\xf8\\x84\\x22\\xda\\xdc\\x6a\\x91\\xf8\\xc7\\x24\\x5a\\xe0\\x66\\x21\\x64\\xb6\\x6f\\xce\\x64\\x12\\x69\\xde\\xd0\\x8c\\x1c\\x26\\xd8\\x76\\x98\\x3c\\x9a\\xd8\\x3f\\x5b\\x12\\x8f\\x0b\\x61\\xc5\\x1b\\xc2\\x92\\xab\\xa2\\x96\\xc8\\x8c\\xca\\x3f\\x3b\\xf8\\x87\\x54\\x6a\\x20\\x8b\\xaa\\xe3\\x95\\x66\\x9d\\xf3\\x5b\\x14\\x7e\\xbf\\xee\\xa1\\x84\\x23\\x4a\\xa1\\x47\\x0e\\x97\\x39\\x94\\x60\\xba\\x29\\xa5\\x5f\\x70\\xbf\\xdf\\x80\\x46\\xa1\\x07\\x6a\\xe8\\x2a\\xed\\x52\\xab\\x9f\\x57\\xea\\xf6\\xa1\\x22\\xc9\\xc6\\x47\\x89\\xdc\\xeb\\x49\\x19\\xa0\\xc2\\xe8\\x0d\\xe2\\xbe\\x1f\\xc2\\xdd\\x9e\\xb7\\xf5\\xb6\\xd2\\x96\\x75\\x1e\\x71\\x0c\\x38\\xbb\\xa1\\xd0\\xdb\\xb8\\xa6\\xc5\\x8c\\x14\\x78\\xc0\\x7c\\x72\\xc7\\x9d\\xe9\\x4b\\x10\\xb3\\xf9\\x89\\x30\\x73\\x3f\\xe1\\xaa\\x8c\\xf9\\xa9\\x4c\\x9b\\x60\\x51\\x63\\x46\\x33\\x7c\\x23\\xa8\\xbd\\x76\\x3b\\xac\\xe5\\xba\\x2c\\xcc\\x7f\\x6c\\xfe\\x0d\\xef\\x35\\xa8\\xb4\\x99\\x78\\xf3\\xb4\\x5e\\xd0\\x2e\\xd2\\x6c\\x48\\xbe\\x7d\\x6d\\xd1\\xc6\\x25\\x2b\\xe5\\xc2\\x6e\\xb4\\x23\\x09\\x95\\xc9\\xa5\\xc2\\x82\\x9b\\xbb\\xf4\\x6b\\xcd\\x0d\\x08\\x7b\\x11\\x91\\x1f\\x1d\\xd5\\xdc\\x98\\xe1\\x86\\xfe\\xea\\x95\\x98\\x8e\\x76\\x8e\\xea\\x89\\x14\\x4d\\xdc\\xf2\\xdc\\xc8\\x59\\xcb\\x02\\x7b\\x2e\\xfd\\x4f\\x6c\\x34\\x9b\\x3c\\xfa\\x3c\\x18\\x18\\x95\\x49\\x1a\\x69\\x36\\x98\\x31\\x58\\xaa\\xaa\\xb7\\x80\\x95\\xdf\\xfb\\xef\\x4a\\xc9\\x7f\\x15\\x25\\xf2\\x0e\\x99\\xf0\\xfe\\xcd\\x7c\\x5a\\x4c\\x64\\xa2\\x76\\xa2\\x6c\\xf0\\x53\\x32\\x1a\\x54\\x39\\x5c\\x1a\\xb1\\x1f\\x02\\x73\\x05\\xef\\xd3\\x04\\x09\\x47\\x11\\x97\\x61\\x94\\x71\\x4e\\xf5\\x5c\\xcf\\x0b\\x8f\\x4c\\x41\\x9c\\x6e\\x42\\x0e\\x09\\x5a\\x46\\x83\\xb0\\x0b\\x0e\\x85\\x71\\x70\\xa0\\x24\\x20\\x76\\xd5\\x49\\xc4\\x19\\x7f\\x39\\x0f\\x31\\xc2\\xe6\\xdc\\x4b\\xbd\\x00\\xed\\x24\\x4f\\x5c\\xda\\x99\\xf6\\xaa\\x85\\xf3\\x16\\x92\\x37\\x66\\x10\\x6b\\xb1\\xed\\x72\\xfd\\x41\\x6f\\xb6\\xce\\x17\\x0d\\x2c\\x9c\\x22\\xd6\\xd6\\xfe\\xf5\\x0b\\x5f\\x30\\x57\\x51\\x81\\x3b\\xb4\\xb5\\x2d\\x28\\xb0\\x76\\x92\\x58\\xd8\\x1d\\xc7\\xe6\\x3e\\x03\\x4f\\x85\\x70\\xe7\\x2b\\x15\\x17\\x07\\x1a\\x53\\xef\\x8b\\x82\\xac\\x42\\xc6\\x6c\\x0b\\x24\\x4a\\xa9\\x0d\\x5d\\x3e\\x28\\x7e\\x2a\\x5a\\x4e\\xd8\\x52\\x5d\\xd4\\x2d\\x68\\x8c\\x71\\xec\\xdb\\xe6\\x21\\xe0\\xf9\\x53\\x48\\xce\\xd0\\x3d\\xe8\\x68\\x5d\\xb1\\xb9\\x21\\x3a\\x49\\x83\\x6a\\x09\\xa2\\xb6\\x5f\\xca\\x31\\x7d\\xc6\\xc4\\xcf\\xbd\\x9b\\xdd\\xfd\\xfe\\xef\\xd7\\xe6\\x8f\\x20\\xfa\\x7a\\x66\\x5a\\x71\\x4f\\x56\\xa3\\xec\\x12\\x2d\\xd5\\x40\\xc0\\x8c\\xa5\\x79\\xc1\\x12\\x7d\\xbf\\xf6\\xa1\\xfc\\x66\\xe4\\x28\\xae\\x3f\\x76\\x00\\xf2\\x24\\x7e\\xfe\\x42\\x38\\x58\\x6d\\x8b\\x97\\x94\\x8e\\x29\\x6d\\x63\\xf9\\xd8\\x20\\x44\\x02\\xfb\\xb9\\x51\\x5a\\x69\\x41\\x50\\xeb\\xc9\\x5d\\xcf\\xda\\x8b\\xad\\xe7\\x51\\xcf\\xaf\\x28\\x6a\\x2b\\x04\\xaa\\xa4\\x80\\x25\\x07\\x6f\\xe2\\x4c\\x57\\xf7\\x9b\\xb6\\x3f\\x16\\x1a\\x3f\\x08\\x8a\\x50\\xaa\\x55\\x70\\x58\\xa3\\x46\\xe1\\xd7\\xb6\\x76\\xb9\\xa1\\x29\\xa2\\xb9\\x30\\x23\\x5e\\x7d\\x46\\xef\\xf9\\x8a\\x96\\x3f\\xc6\\xcd\\x56\\xba\\x8f\\xd9\\x9e\\xa8\\x22\\xc0\\x16\\x83\\x2b\\x26\\xcd\\xd0\\x61\\x86\\x6b\\x21\\x93\\xe3\\x31\\x04\\xf7\\x57\\x59\\xe1\\x2d\\xf0\\x47\\xba\\xa1\\x59\\x26\\xc0\\xcc\\x8c\\x61\\x14\\xb5\\x75\\x33\\xda\\x76\\xa2\\xd1\\xa8\\xdb\\x6a\\x4a\\x13\\xcb\\xe6\\x10\\x76\\xfb\\x2d\\x05\\x55\\x16\\x14\\x35\\x7f\\xd0\\x2c\\x82\\xcf\\x32\\xf9\\x99\\x05\\x18\\x51\\x5a\\x1d\\x7c\\xab\\xba\\x34\\x5a\\x26\\xf6\\xed\\x2b\\xa6\\xca\\x99\\x95\\x65\\x79\\xb3\\x62\\xe5\\x03\\x71\\xda\\xb1\\xd5\\x6d\\x73\\xe4\\x17\\x1a\\xb8\\x41\\x1b\\x91\\x16\\x09\\xfe\\x2a\\x2b\\x42\\x0e\\xf4\\xf8\\x35\\x43\\xf5\\x51\\x48\\x36\\xee\\xcb\\x07\\x07\\x28\\x02\\x0a\\x35\\xc2\\xf1\\xa5\\x25\\x29\\xc9\\xf3\\xa3\\x14\\xc6\\xdb\\xba\\x47\\xbc\\xc3\\xad\\xf9\\x9b\\x6c\\x4b\\x56\\x74\\xdd\\x6c\\x14\\xb9\\xdd\\x92\\x98\\x60\\xa4\\xcf\\x2d\\xfc\\xd4\\x80\\x2d\\x05\\xfb\\x99\\xbd\\x3c\\xd3\\x14\\x7f\\xc1\\xd0\\x8b\\xfd\\x2e\\x6c\\x13\\x0e\\xd4\\x24\\xd9\\x96\\xb8\\x65\\xf2\\x02\\xf7\\x31\\xea\\x8a\\x57\\xa3\\x68\\x33\\x75\\x6b\\x16\\x78\\xd8\\x4d\\x04\\x0f\\x8f\\x2c\\x4f\\x8a\\xd3\\xbc\\xb7\\xc2\\x64\\x1d\\x14\\x55\\x32\\x0a\\x90\\x95\\x80\\xa4\\x31\\x51\\xec\\xc9\\x46\\xd1\\x7e\\x08\\xb5\\x31\\xd2\\x74\\x41\\x59\\x9b\\x1c\\x37\\xc6\\x20\\xd1\\xcc\\xfc\\x56\\x16\\x17\\x66\\x55\\x96\\x76\\x12\\xa1\\x0e\\x51\\x12\\x3a\\x24\\x21\\xba\\x81\\x67\\x30\\xd4\\xc9\\xc7\\xfd\\xab\\xbf\\xdd\\x23\\xc3\\x64\\xb0\\x0f\\x29\\xb3\\x9c\\xdd\\x14\\x73\\xc6\\x86\\x2c\\xce\\x26\\x61\\xf3\\x4c\\xf7\\xcd\\x11\\x82\\xb1\\xb2\\x9b\\x0c\\x26\\xf8\\x54\\xc6\\x2e\\xe4\\x12\\xbf\\x5c\\x62\\xf9\\xdc\\xec\\x01\\xa7\\x11\\x4d\\x6c\\x4d\\x86\\x33\\xe5\\x20\\xf2\\x91\\x6f\\xbc\\x84\\xb3\\x38\\x44\\x6d\\x64\\xd5\\x03\\xad\\x55\\xf4\\x51\\xc1\\xc5\\x06\\xb8\\x04\\xb4\\x09\\x46\\x51\\x1e\\x68\\x93\\x9e\\xdf\\xa8\\xb0\\xf9\\xcb\\xce\\x1a\\x1b\\xad\\x14\\x6d\\x3c\\xe9\\x72\\xc2\\x55\\x07\\x30\\x93\\xb6\\x94\\xa6\\xa8\\xf9\\x02\\x37\\x11\\x20\\x59\\xd4\\xf6\\x09\\x68\\x16\\x26\\x79\\x47\\x09\\x86\\x7a\\x86\\xc9\\x87\\x6e\\x1e\\xf6\\x27\\xe6\\xaf\\x91\\x30\\x36\\x48\\x56\\x2f\\xfc\\xf1\\x91\\x79\\x1b\\x1f\\x5f\\x29\\x92\\x63\\x27\\x9c\\x9c\\x0e\\x49\\x28\\x1c\\x6e\\x76\\x9c\\x31\\x3a\\x3f\\xfb\\xc2\\xd2\\x5a\\xfd\\x56\\xfe\\xfb\\x33\\x2e\\x9c\\xdd\\xf1\\x72\\x66\\x98\\xfd\\x72\\xbb\\xca\\xcd\\xe9\\xd6\\xe0\\xe4\\x44\\x02\\x29\\x4a\\x3a\\xe6\\x8c\\xee\\x37\\xd2\\x5a\\xdd\\xda\\x3b\\x25\\x1d\\x95\\xe2\\xf5\\xb0\\x71\\x81\\xa8\\x68\\xdb\\x39\\xe1\\xde\\x42\\xe2\\xf0\\x76\\x50\\xe4\\x07\\xc5\\xdb\\x87\\x3e\\xca\\xa3\\x13\\x9c\\x26\\xf4\\xf5\\x6a\\x04\\xec\\xf7\\xb0\\xcc\\x6d\\x9d\\x20\\x37\\x11\\x9d\\x04\\x46\\x5a\\xc0\\x61\\x09\\x93\\x45\\x46\\xca\\xfd\\xb3\\xcf\\xfb\\x6d\\xb0\\xc7\\x31\\xa5\\xeb\\xe4\\x4b\\x77\\x92\\xec\\x94\\xa5\\x6f\\x12\\xc6\\x45\\x24\\xb2\\x8a\\xa0\\x43\\x57\\x80\\x64\\xc6\\x7b\\x18\\xfb\\xdc\\x3d\\xe9\\xec\\x5b\\xa5\\x7c\\x7f\\xe9\\xef\\x46\\x55\\x4b\\x75\\x22\\x67\\xa4\\x36\\xa3\\x55\\xca\\x7f\\x9f\\xe4\\xfb\\x1e\\x95\\x16\\x0f\\x58\\xa6\\xa9\\xec\\xa3\\x20\\xcf\\xb8\\x2a\\xb6\\xa8\\x42\\xb1\\xfb\\x84\\x2b\\xb2\\x27\\x88\\xc1\\x4d\\x14\\xf7\\x14\\xea\\xb8\\xa7\\x5d\\x2f\\xb6\\xec\\xc2\\x61\\x19\\x53\\x76\\x02\\xd1\\x0e\\x74\\x00\\xf1\\x08\\xca\\x6d\\xfb\\x37\\x14\\x33\\xfa\\x84\\x74\\x1e\\xd8\\xe2\\x76\\x3a\\x38\\x99\\xfc\\x49\\x2a\\x6d\\x4e\\x38\\xbe\\xb0\\xa1\\x18\\xe7\\xb4\\x8c\\x0b\\x36\\xde\\x4a\\xe5\\x01\\x9d\\x30\\x96\\x52\\xce\\x0e\\xff\\xb4\\x74\\xd9\\xf0\\x32\\x8d\\xaf\\x08\\xf4\\x30\\x02\\x4d\\x3b\\xd3\\x9b\\x03\\xda\\x70\\xeb\\x63\\xf0\\xc7\\xf7\\xdb\\x57\\x47\\xd8\\x9f\\x62\\x1b\\x65\\x92\\xbd\\x2f\\x70\\xc2\\xf8\\x66\\x5b\\xcf\\xf4\\xec\\xbe\\x79\\x84\\x5a\\x90\\x97\\xd6\\x66\\x5c\\xdd\\xda\\xef\\x41\\xf1\\xd5\\xe8\\xa4\\xcc\\xee\\xf6\\x17\\x10\\x79\\xca\\x60\\x45\\xed\\x63\\xbd\\xbe\\x9a\\x29\\x7d\\x9e\\xa5\\xf4\\xde\\x02\\x3a\\xce\\x2b\\x53\\xa6\\x17\\x1e\\x47\\x38\\xc7\\x3a\\xc9\\xab\\x87\\xc1\\xda\\x1e\\xae\\x7b\\xb7\\x24\\xb8\\x33\\x2e\\x66\\xc2\\x4a\\xac\\x70\\xca\\xa2\\xc0\\xe7\\x02\\x1d\\xe6\\x9d\\xcc\\xe1\\x1e\\xf6\\x41\\x36\\x46\\x4c\\x75\\x71\\xb3\\x9f\\xa5\\x92\\xdf\\x4b\\x45\\x7b\\x61\\x6b\\xa7\\x6e\\xa7\\xb7\\xa6\\xc3\\xe9\\xcc\\xb9\\xb8\\xdb\\xf8\\xd9\\xd1\\x39\\x27\\xe7\\x90\\x12\\xc1\\xa2\\x64\\x5c\\x89\\x9e\\x02\\x94\\xb4\\x8b\\xb2\\x86\\x98\\x7a\\x04\\x9e\\xde\\x49\\x65\\xea\\x92\\x0d\\x54\\x88\\x59\\x48\\xff\\xd2\\x5a\\x25\\x09\\xae\\x61\\xfd\\xc8\\x21\\x94\\x76\\xc1\\xa8\\xb8\\xb8\\x88\\x2c\\x11\\x73\\x58\\x57\\x98\\x89\\xe6\\x34\\xf3\\x44\\xd3\\x73\\xb7\\x43\\x2d\\x4f\\x6a\\xf4\\xf9\\x85\\xee\\x3f\\x94\\x17\\xb1\\x63\\xad\\x79\\xe3\\x82\\x1f\\x4d\\xa0\\x8e\\x88\\xd6\\xf8\\x2c\\x55\\xa1\\x7d\\x7c\\x7b\\x23\\x96\\xcd\\x2e\\xdc\\x44\\x97\\x68\\x6e\\x81\\x4b\\x45\\x5d\\xc6\\x4d\\x60\\xe7\\x3a\\x30\\xf3\\x33\\x61\\x38\\xee\\x10\\xbf\\x00\\x29\\xdc\\x3f\\xbe\\xce\\x08\\x10\\x8b\\x18\\xa4\\xe7\\x2e\\x8f\\x50\\x10\\x16\\x5d\\x99\\x36\\x3c\\x8e\\x00\\xdd\\x8a\\x6e\\x3f\\x02\\x44\\x0f\\x67\\x15\\x86\\x75\\x9a\\x26\\x0c\\x44\\x0d\\x33\\xe1\\x02\\x65\\x1d\\x7c\\xa9\\xdd\\x14\\x76\\x97\\x43\\xf4\\x21\\x42\\xea\\x1b\\x4e\\x42\\x91\\x9b\\x46\\xe3\\x34\\x68\\xf3\\xed\\x33\\x47\\xd9\\x92\\x44\\xaa\\xf7\\xd8\\x29\\x93\\xda\\xa2\\xda\\x96\\x9c\\x45\\x80\\x26\\x4d\\xa4\\x59\\x7b\\xb0\\x40\\x1a\\x1a\\x6d\\x42\\x4c\\x3b\\xde\\xd4\\x62\\x03\\x63\\xa9\\x79\\xc9\\x71\\xdd\\x09\\x86\\xc3\\x9e\\x92\\x38\\x58\\x47\\xea\\xeb\\x0d\\xae\\xa2\\xa1\\x76\\xda\\x55\\xe9\\x32\\x79\\x4b\\x8a\\x2a\\xd2\\x78\\xbc\\x32\\xef\\x9c\\xe4\\x1d\\xb9\\xed\\xcc\\x85\\x4a\\x8a\\x66\\x67\\x42\\x8d\\xda\\x60\\x6d\\xf5\\x6a\\x76\\x57\\x40\\xe0\\x1b\\x52\\x21\\xb4\\x3d\\x26\\x43\\x37\\xb7\\xd7\\xe2\\xe6\\xb7\\xfe\\x97\\xa6\\xd1\\x28\\xfc\\xde\\xa0\\x61\\xc4\\xa3\\xb3\\xc5\\x71\\xb0\\x05\\x41\\x0a\\xe3\\xef\\xd7\\x05\\x64\\xc0\\x8c\\x86\\xef\\x18\\xcc\\xfe\\xce\\xdd\\xf9\\xe1\\x12\\xd7\\xfd\\x77\\x34\\xa0\\x9b\\xd4\\xab\\x9a\\x9f\\x92\\xa1\\xb6\\x0a\\xdb\\xeb\\x74\\x0b\\x6d\\x51\\xe0\\x53\\xc8\\x1d\\xc0\\x67\\x54\\x36\\x82\\x6d\\x81\\x32\\x0b\\x1c\\xfe\\x87\\xd3\\x0e\\xf8\\x7b\\xe8\\x6b\\xb4\\xeb\\x5c\\x04\\x67\\x25\\xa1\\xb8\\xb3\\x62\\xb3\\x94\\xeb\\x04\\x80\\xd6\\xbe\\x7d\\x4a\\xf7\\x3e\\x7a\\xac\\x7a\\x6b\\xee\\xbc\\xa8\\x25\\xad\\x4b\\x91\\x55\\xc8\\xe4\\x21\\xf5\\x61\\xf6\\xc4\\x7f\\x7e\\x7c\\x3d\\x61\\xe7\\x5f\\x2c\\x08\\x9d\\x96\\x17\\x37\\x7e\\x8f\\x41\\x97\\x9d\\xd6\\x5c\\x13\\x26\\xd3\\x6c\\x39\\xb2\\xba\\xe2\\x37\\x3f\\x7b\\xae\\xf3\\xf0\\x2a\\xe5\\x64\\x53\\x92\\xf1\\xc2\\x0b\\xb3\\x0b\\x02\\x11\\x5a\\x1d\\xc0\\x73\\x1c\\x9d\\x9d\\xe4\\x32\\xec\\x1b\\x88\\x1a\\xc8\\x81\\x63\\xfe\\x34\\x84\\x5f\\x8a\\x77\\x23\\xb3\\x55\\x31\\xda\\x91\\x2e\\x67\\xf7\\xb8\\xc8\\x6e\\x61\\x16\\x38\\x91\\x8e\\x3d\\xf3\\xfb\\xb0\\xfd\\xd2\\x5e\\x89\\xe4\\x8f\\x23\\x39\\x5c\\x1b\\x2b\\x6a\\x97\\x4e\\x6d\\x20\\xd2\\x70\\x97\\x30\\x61\\x8a\\x19\\x1a\\xda\\x0e\\xd7\\xdd\\xe9\\xb5\\xe6\\xad\\x12\\xf9\\x22\\xef\\xcf\\x74\\x2c\\x55\\xaa\\x31\\x34\\xce\\x2f\\x3f\\x54\\x75\\xd5\\xd8\\x19\\x0c\\x96\\x5e\\x0f\\x2f\\x39\\xff\\xce\\xc2\\x40\\x16\\x61\\x8a\\x61\\xb7\\x69\\x30\\x3b\\x05\\x85\\x30\\x65\\xc9\\x23\\x75\\x82\\xff\\x58\\xff\\x6d\\x07\\xf1\\x28\\xfa\\x11\\xad\\xa2\\xf2\\xe4\\x61\\xc3\\xb1\\xd6\\x99\\x28\\x51\\xf7\\x70\\xf5\\xd1\\xe2\\xbb\\xc9\\x52\\x0c\\x44\\x37\\x68\\x46\\x66\\xa2\\x72\\xcf\\xc2\\x2e\\xfe\\x30\\xb7\\x72\\x14\\xcd\\xee\\x1c\\x6a\\xbe\\xc0\\xfa\\x6c\\x38\\x81\\xc2\\x26\\x2d\\x5b\\x70\\xe3\\x3d\\xd1\\xde\\x4a\\xaf\\x15\\x4a\\x83\\x2b\\x03\\xdd\\x72\\xf6\\x65\\xcb\\x68\\x83\\x85\\x01\\x60\\x28\\xd4\\x56\\x0c\\xec\\x35\\xb9\\x0a\\x5d\\x58\\xb0\\x57\\xd4\\x2c\\xb0\\x09\\x9d\\x0e\\x19\\xaa\\x54\\xb4\\xbd\\x61\\xc7\\x8b\\x1d\\x3d\\x53\\x92\\x51\\x5c\\xa9\\x20\\xc0\\x41\\xc5\\xe2\\xbf\\x7c\\x54\\xca\\x05\\xf8\\xd7\\x61\\xed\\x25\\xf7\\xde\\x39\\xe7\\xea\\x4d\\x39\\xbc\\x10\\xd1\\x41\\x72\\xe8\\xe9\\x75\\x22\\x5c\\xc4\\xd1\\x56\\xd4\\x3e\\xc4\\x88\\xe7\\xc2\\x67\\x9f\\x4d\\x58\\x4d\\xec\\xd9\\x7a\\x2e\\x03\\x53\\x2a\\xce\\x4d\\x87\\x2c\\xd8\\xa2\\xff\\x22\\x75\\x87\\x28\\xba\\x15\\xe0\\x7d\\xd7\\x43\\x5d\\x77\\xab\\x20\\xaa\\xcc\\x4a\\xd5\\x2d\\x5d\\xa9\\x8e\\x43\\x2f\\x37\\xf4\\xd2\\x0d\\x1e\\xb3\\x26\\x44\\x5f\\x7b\\x33\\x63\\x18\\xa6\\x0c\\x9b\\x4e\\x13\\xd3\\x94\\xff\\x8d\\x6d\\x97\\xb7\\x1b\\xa8\\x02\\x29\\x5d\\x53\\x37\\x46\\x26\\xf9\\x5a\\xa2\\x2c\\x70\\x4e\\xe0\\xa6\\xed\\xeb\\x5f\\xc2\\x52\\x4a\\xc0\\x83\\x25\\xa8\\xd5\\x16\\x32\\x95\\x20\\x6d\\xa3\\x7b\\xd3\\x10\\x26\\x21\\x2f\\xb7\\x67\\x9e\\x89\\x36\\xe5\\xa1\\xe1\\x84\\x79\\xf6\\x4e\\x5c\\x07\\x02\\x8f\\xcc\\xd8\\x58\\xc0\\x77\\x75\\x63\\x8b\\xfc\\x08\\xe4\\x9e\\x31\\x74\\x93\\xe1\\x7e\\x15\\x0a\\xdb\\xc7\\x1a\\x21\\xee\\x91\\xaa\\x15\\xed\\xc9\\xad\\x42\\xd1\\x4a\\xfb\\x9a\\x9e\\xef\\x76\\xc8\\x7f\\xfc\\x78\\x9f\\xa6\\xd0\\xf8\\xdd\\x42\\xc6\\xba\\x43\\x36\\x77\\x01\\x47\\x35\\xfa\\xc4\\xb7\\xaf\\xee\\x7b\\x1f\\x56\\x23\\xc8\\xcc\\x77\\x0a\\x7b\\x59\\x26\\xac\\xb8\\x8e\\x93\\x51\\xbf\\x63\\x7c\\x05\\x69\\xec\\xf5\\xcc\\x33\\xca\\x99\\x2f\\x6f\\x46\\x9e\\x6a\\xee\\xc6\\x8e\\x8e\\x11\\xd8\\x58\\x39\\xaf\\x60\\x5a\\xb8\\x61\\x87\\x48\\x31\\x3e\\x77\\x7e\\x5c\\x66\\x63\\xeb\\x62\\x09\\x30\\xfc\\x75\\x7a\\xb4\\xb1\\x24\\xee\\x4a\\xa3\\x68\\xd4\\x88\\xe4\\xd8\\xd4\\xcf\\xa7\\x89\\x35\\x96\\x35\\x45\\x4b\\xc0\\xc4\\x98\\x65\\xee\\x07\\x0b\\x6c\\x1c\\x4d\\xff\\xe9\\xf8\\xa9\\xfb\\x06\\xbd\\xc8\\xa2\\x54\\x23\\x72\\xb8\\xa5\\x21\\x2e\\x42\\x6d\\xf0\\xd3\\x3d\\x4b\\xe1\\x5b\\xe9\\xea\\xcf\\x13\\x00\\xc2\\x4f\\x04\\xba\\x44\\x18\\x34\\x58\\x0c\\xe3\\x0b\\x91\\x42\\x92\\x87\\xa8\\xed\\x19\\x38\\x1c\\x64\\x2c\\xd1\\x83\\xa3\\x53\\x62\\x52\\x60\\x00\\xa7\\x90\\x5c\\x2c\\xe2\\x31\\xa3\\x2c\\x22\\x8e\\xf1\\x34\\x82\\x1d\\x61\\x0a\\xa3\\x65\\x96\\x52\\xe8\\x3c\\x35\\x97\\x27\\x38\\x34\\x92\\x56\\xed\\xfc\\x82\\x1f\\xaa\\x26\\x95\\x1c\\xb1\\x8d\\x30\\x33\\x12\\x8d\\x7a\\x47\\xaa\\xa0\\x73\\xb1\\x20\\x33\\x2a\\x71\\x4c\\xd4\\xd1\\x33\\x53\\xb1\\xf0\\xa1\\xcc\\x85\\xd0\\x70\\xb8\\x32\\xb4\\x2d\\x90\\xf3\\xed\\x14\\x8f\\xd4\\x7e\\x4e\\x20\\x00\\xbb\\x9e\\xa4\\x7e\\xb2\\xa1\\x9e\\x63\\xb9\\x50\\x12\\x87\\xad\\x24\\x33\\xa2\\x8e\\x9a\\x83\\xe9\\xd1\\x90\\x98\\xd6\\xc9\\x3a\\x5a\\x39\\xc3\\x55\\xe5\\x1c\\x37\\x1f\\xcc\\xbe\\x07\\x47\\xad\\xa9\\x28\\x4a\\xba\\x42\\xf1\\x6b\\x00\\xfa\\xe2\\xa4\\xd0\\xf7\\xfc\\x8c\\x18\\x42\\xa0\\x33\\xd8\\x07\\x4d\\xdf\\x52\\x28\\x64\\x5e\\x92\\xd3\\x9c\\x0a\\x0f\\x2c\\x65\\x78\\x5b\\x51\\x98\\x1e\\xac\\x3f\\x45\\x0e\\x4b\\xf6\\xc2\\xb5\\x85\\x66\\xac\\x02\\xc2\\xff\\xda\\xdd\\x63\\xd8\\xcc\\xb0\\xb4\\x6c\\x55\\x14\\x64\\x14\\xad\\x32\\x5e\\x68\\xd5\\x0d\\x7d\\xae\\x88\\xd3\\x35\\xe7\\xff\\x53\\x0a\\x16\\x46\\x50\\x60\\xfb\\x5b\\xab\\x9b\\xd0\\x99\\x82\\xd2\\xcb\\x81\\x1a\\x00\\xc4\\xaa\\x54\\x35\\x57\\x43\\xa2\\x95\\x89\\x31\\x28\\xe5\\x0c\\xad\\xbe\\x14\\xb9\\x29\\xe4\\xe7\\x46\\x8d\\x28\\xf2\\x32\\xf8\\xf4\\x7d\\x1e\\x6d\\xf4\\xab\\x51\\x9c\\xbd\\x68\\x5d\\x00\\x96\\xe6\\xd4\\x71\\x1d\\xbc\\x5a\\x25\\x76\\x22\\x6d\\xdc\\xa1\\xa4\\x09\\x10\\x56\\x73\\x71\\x5f\\xd2\\xb1\\x1d\\xf8\\x3e\\xc8\\x68\\x8b\\x07\\x53\\x71\\x7a\\xf4\\x5d\\xe0\\x4b\\x80\\x4d\\x9d\\xf8\\x21\\xf5\\x48\\x10\\x30\\x85\\x7c\\x4f\\x6a\\x3c\\x17\\x17\\xfe\\x18\\x2a\\xc7\\x2e\\x40\\x4f\\xe1\\x68\\x8e\\x53\\x00\\x14\\x11\\x86\\x0d\\xef\\x56\\xb0\\x37\\x8e\\x83\\x4d\\x95\\x70\\x5b\\xf6\\xa2\\xba\\x81\\x19\\x48\\x1c\\xed\\x4e\\xc5\\xd4\\xb8\\x58\\xb7\\xf0\\x81\\xe9\\x9f\\xa4\\xf4\\x91\\x86\\x4e\\x2a\\x52\\xce\\x4a\\x58\\x3c\\x5e\\xd4\\x67\\x99\\xd7\\x7c\\x2f\\xfb\\x8c\\x59\\x21\\x48\\x38\\x64\\x35\\xe2\\x0c\\x63\\x33\\x64\\x5b\\x1b\\x92\\x2d\\xc6\\xda\\x86\\xdd\\xf5\\x30\\x5f\\x33\\xd4\\xb5\\x4f\\x8f\\xbd\\x3d\\xbd\\x98\\xb4\\x42\\x67\\x40\\xf5\\x1d\\x2d\\xea\\x4e\\xe4\\x72\\x10\\x38\\x75\\xf4\\x07\\xcd\\x05\\x89\\x53\\xfe\\x17\\x26\\x1d\\x98\\x72\\x1e\\x0d\\x33\\x77\\xe6\\xf4\\xa6\\x9e\\xa7\\xbb\\xf2\\xbd\\x59\\x5f\\x94\\x6a\\x2b\\xba\\x0c\\x6b\\xbb\\xe8\\xf8\\xd8\\x35\\x9c\\xf8\\x83\\x11\\x4e\\xa7\\x8b\\x9e\\xe9\\x73\\x9b\\xa6\\x39\\x3c\\x12\\xe1\\xf4\\x6e\\x67\\xed\\x3b\\x57\\xd9\\x06\\x1c\\xba\\x92\\x24\\x6a\\x22\\x08\\x7f\\x7d\\x2c\\xe0\\x04\\x25\\x3d\\xc1\\x7c\\xce\\xb9\\x20\\x39\\xc6\\xa1\\x22\\x9f\\x23\\xd3\\x19\\x46\\x53\\x70\\x2f\\x1c\\x0b\\x45\\x9a\\xe9\\x27\\xb5\\x65\\x03\\x87\\xe8\\x31\\xfe\\xdf\\x49\\x24\\x39\\x57\\xd0\\x4c\\x6d\\x5b\\x6e\\x38\\x55\\xdc\\x66\\x7b\\xb8\\x37\\x2e\\xa1\\x19\\xf7\\xf7\\x40\\x05\\x8d\\x03\\x7e\\xed\\x9d\\x91\\x5b\\xa2\\x5f\\x73\\x05\\xf1\\xd9\\x6e\\x6a\\x03\\x44\\x28\\x55\\x9e\\xf1\\xce\\x0a\\xdf\\x4c\\x89\\x2e\\x70\\xed\\xe4\\x46\\x17\\x19\\x80\\xb8\\xc8\\xee\\x40\\x19\\xa2\\xec\\xef\\xa0\\x5d\\xc0\\xea\\xf4\\x7a\\xb9\\xc4\\x75\\x46\\xb0\\x8d\\x6b\\x02\\xb0\\x8b\\x20\\x59\\xa2\\xe8\\x0e\\xad\\x79\\xad\\x5a\\xff\\x85\\xef\\x9f\\xe8\\x1f\\x5a\\x32\\x29\\x67\\x5d\\x9d\\xb1\\x9a\\x64\\x32\\xa4\\x9c\\x4c\\xe5\\x4d\\xae\\xea\\xba\\xe9\\x1e\\x8b\\x13\\xbb\\x4b\\x6a\\xea\\x98\\x59\\xb4\\x0c\\x5d\\xf7\\x45\\xad\\x81\\xc7\\xa6\\xf0\\x65\\xdf\\xb2\\x2e\\x7a\\x0c\\xfa\\xe4\\x13\\xf8\\xee\\x8d\\x32\\x0f\\xa4\\x1a\\xd8\\xa8\\xa3\\xb2\\x85\\x9a\\xda\\xc4\\x52\\x64\\x52\\xef\\x27\\x22\\xed\\x19\\x7b\\x13\\x68\\xfb\\xf7\\x7d\\x2b\\xaf\\x64\\x2b\\x3a\\x06\\x07\\x77\\xe6\\xb5\\x38\\x1a\\x36\\x57\\xa9\\x57\\xdb\\x1e\\x9e\\x4a\\x17\\x2b\\xee\\x00\\x33\\xca\\x2a\\xf6\\x50\\xc5\\xae\\x43\\x67\\xc9\\x69\\xc9\\xc6\\x33\\x5d\\xe1\\x80\\xc1\\xe3\\x74\\x8d\\x98\\xa8\\xf0\\xb0\\x69\\xd5\\x6a\\xb3\\x1c\\xcb\\x11\\xdd\\x9d\\x00\\x0f\\x8f\\xaa\\x35\\x18\\x94\\xab\\x4a\\x4e\\xd9\\x3c\\xf3\\xe7\\x33\\x71\\x66\\x63\\x7c\\x18\\x29\\xb1\\x67\\xd8\\x4c\\x33\\xd9\\x8a\\x5f\\x29\\xb2\\x8c\\x04\\x49\\xb2\\x89\\xc8\\xc9\\xe9\\x07\\xd5\\x71\\x4e\\xc3\\x61\\xbd\\x21\\x7e\\x88\\x38\\x31\\xe2\\xab\\xb6\\x51\\x0e\\xa5\\x6f\\xbc\\xad\\x41\\x6c\\xd7\\x3e\\x76\\x0a\\x27\\xcb\\x14\\xf3\\x1a\\x3e\\x0a\\x72\\xa5\\x8c\\x7b\\xed\\x4f\\x33\\x75\\xff\\x5c\\x4b\\x76\\xe0\\x8e\\x45\\x6e\\xd7\\xa8\\x61\\x69\\xbf\\xa9\\x3f\\xee\\xa3\\x40\\x6c\\xa4\\x5a\\xe0\\x24\\xec\\x31\\x36\\xcc\\x91\\xdb\\x38\\xbd\\x14\\x5c\\xf1\\xdb\\x9f\\xcc\\x1c\\xe7\\xe9\\x38\\x44\\x63\\xf1\\x9e\\xd2\\xce\\xc6\\x66\\x3e\\x9b\\x9b\\x1c\\xed\\xd7\\xab\\x22\\xc0\\x61\\xfa\\x44\\x4d\\xc9\\xe3\\xa5\\x21\\x39\\x1b\\x39\\x54\\xb2\\xf6\\xd8\\xa3\\xf8\\xff\\x94\\x36\\x5c\\x52\\xef\\x49\\x33\\xb4\\x59\\x80\\xb2\\x60\\x3d\\x9c\\xf6\\xc6\\x3c\\x98\\x88\\x79\\xa3\\x29\\x59\\xd0\\xec\\xa4\\xfc\\x43\\xf2\\x22\\x97\\xf6\\xf4\\xb0\\x37\\xfe\\x84\\x31\\x4f\\x08\\x13\\x42\\xf8\\x31\\x26\\x67\\x97\\xe1\\x07\\xdd\\xec\\x1d\\xb5\\xe3\\x8f\\x88\\xad\\xdf\\x5c\\xd1\\x57\\x30\\xcb\\xb4\\xfa\\xfd\\x64\\x40\\xc3\\xa5\\x11\\xec\\xb4\\xbe\\x84\\xcc\\x9b\\x56\\xc6\\x82\\x59\\x58\\x12\\x3f\\xb7\\x2a\\x98\\x43\\x6a\\x07\\xbb\\x8e\\x2e\\xfb\\xac\\xc8\\xfc\\x35\\xc1\\x41\\x57\\x50\\xef\\x0e\\x61\\xfc\\xd8\\xf2\\xd5\\xae\\x0d\\xa6\\x19\\x5f\\x90\\x5b\\x33\\x5d\\x8d\\x9a\\x6a\\x7c\\xe7\\xae\\xcd\\x31\\xcc\\xc1\\x90\\xbb\\x52\\x88\\x47\\x6f\\xc9\\xbf\\xf0\\x80\\x34\\xb2\\xda\\x56\\x5d\\x7f\\xe5\\x4d\\x9e\\x51\\xa6\\x75\\xa7\\x00\\x91\\xad\\x52\\xfb\\x75\\x09\\xa9\\x6a\\x77\\x2f\\xe2\\xc0\\xb9\\x89\\x92\\x44\\x27\\x92\\xa0\\x04\\x95\\x0b\\x9f\\xbb\\xb6\\x9c\\x99\\x86\\x8b\\x85\\xff\\xef\\xb4\\xee\\x1b\\xf4\\x14\\x33\\xe8\\xcd\\x87\\x37\\xff\\x60\\xed\\x01\\x03\\x41\\x01\\xec\\x94\\xa5\\x3a\\xe1\\x32\\xd2\\x13\\x2d\\xbd\\x85\\x4f\\x88\\x88\\x4d\\x8b\\xbe\\x20\\x3f\\x00\\xbf\\xf8\\x76\\xc9\\x34\\xca\\x3a\\x22\\xc7\\x56\\xa2\\x5f\\x9b\\x03\\x77\\x49\\xbd\\x3b\\x02\\x58\\x0b\\xb8\\x2d\\x5d\\xdd\\x4c\\x09\\xef\\x25\\xc6\\x27\\xc4\\x59\\xaf\\xf0\\x90\\x98\\xf4\\x09\\x6a\\x01\\x76\\x14\\x51\\x6c\\x62\\x1e\\x72\\x8a\\x17\\xed\\x94\\x74\\xe0\\xdf\\x35\\xd1\\xa1\\x49\\xbd\\x01\\x23\\x6d\\x2b\\x59\\x4c\\x71\\xc6\\xe5\\xac\\xb7\\x4d\\xf5\\x9d\\x63\\x27\\xaf\\x12\\xeb\\x1d\\xa2\\x23\\x3b\\xcb\\x7c\\x25\\x57\\x04\\x26\\xaa\\x5a\\xc7\\xa6\\x4b\\x68\\x4e\\x7c\\x52\\x12\\x1c\\xa3\\x91\\xb3\\x97\\x74\\x5b\\x9d\\xeb\\x0a\\x13\\xcc\\x02\\x35\\x62\\x7c\\xb5\\xc6\\xb6\\x49\\x4a\\xb7\\x0d\\x50\\x4c\\x86\\xcd\\x2d\\xf2\\x03\\x59\\x88\\xfd\\x7b\\xd4\\xa9\\xa5\\xd8\\xc1\\x1c\\xbf\\x6b\\xdd\\x42\\xe0\\xfd\\x94\\xd8\\x53\\x84\\x3a\\x91\\x0e\\xac\\x05\\x65\\xb9\\x28\\xc7\\x44\\x53\\x58\\x7b\\x04\\x53\\x38\\xc5\\x99\\x4e\\x18\\xab\\xe5\\xbb\\xfc\\x73\\xe8\\xf5\\xea\\xd7\\xe5\\xa9\\x12\\x60\\x1d\\x87\\x87\\x7a\\xcf\\x49\\xe6\\x19\\xd6\\x8a\\x30\\x79\\xf3\\xe9\\xbf\\xde\\x1b\\xfb\\x92\\xab\\xd0\\x8e\\x62\\xca\\x14\\x7e\\xa8\\xe8\\xa9\\x2f\\x5d\\x52\\xe5\\x9f\\x11\\xeb\\x5a\\x07\\xa1\\xea\\xe8\\x0e\\xd2\\xa6\\x50\\x68\\xaa\\x2f\\x24\\xf9\\x56\\xe0\\x38\\xe5\\xc4\\xe1\\xf7\\x13\\x68\\xdc\\x67\\x92\\xde\\xea\\xf8\\x61\\xc8\\x97\\xf8\\x46\\xfd\\xb0\\xca\\x61\\xf6\\xb8\\x6f\\xf7\\xd3\\xfa\\xa6\\x78\\x31\\xbe\\xbc\\x37\\x84\\xa0\\x59\\x18\\x9d\\x1a\\xa7\\x4b\\x0b\\xea\\x38\\xdd\\xe5\\x30\\x42\\xd8\\x83\\xcb\\xd8\\xc8\\x0b\\x80\\x18\\x86\\xf3\\x5d\\x44\\x46\\xe8\\xdd\\x35\\x07\\x36\\xc8\\xd1\\x63\\x33\\x7e\\xcb\\x3f\\xda\\x07\\xb5\\x51\\x8d\\xd4\\xb2\\x3e\\xba\\xb4\\x92\\x95\\x84\\x43\\x5d\\x61\\xe1\\x0b\\x2e\\xb2\\x82\\x99\\x13\\x23\\x93\\xdb\\x2c\\xea\\x25\\xc3\\x5b\\x33\\x02\\xaa\\x2a\\xf5\\x61\\x2d\\xe3\\xdd\\xb2\\xd8\\xbf\\x2c\\x64\\x58\\xda\\xa5\\x56\\x99\\x9b\\x26\\x4f\\x27\\x9b\\x3f\\x21\\x20\\xe1\\x93\\xc1\\xf4\\xa6\\x02\\x91\\x7e\\xd4\\x6a\\xb5\\xd6\\x41\\xc3\\x78\\xe6\\x86\\x30\\xa3\\xd4\\xc2\\x0e\\x17\\x89\\x0d\\x55\\xdd\\x0a\\x08\\x47\\x00\\xce\\xea\\xad\\xfa\\x54\\x65\\xc8\\x48\\x02\\x3f\\x27\\x92\\x88\\x5e\\xdc\\x82\\x17\\xd6\\x89\\x93\\x4d\\x87\\x67\\x50\\xc4\\xd0\\x1c\\x05\\x39\\xca\\xfc\\xc6\\xe0\\x42\\xc5\\x5d\\xf9\\xd2\\xe3\\xfc\\xaf\\x80\\x5e\\x68\\xad\\x64\\x9c\\x5c\\x1b\\x69\\x9f\\x11\\x55\\x52\\x71\\xf9\\xd9\\xc6\\x66\\xfc\\x02\\x72\\xe5\\xcb\\x69\\x7f\\x19\\xed\\xee\\x42\\x7e\\xfd\\xb2\\x63\\x69\\x44\\xe0\\xd0\\xb1\\x55\\xf7\\x67\\xb7\\x41\\x41\\x59\\xca\\x47\\xe1\\x8e\\x59\\x8d\\x0c\\x94\\x9c\\x9e\\x7e\\xfe\\xf6\\x2b\\x53\\x5b\\xf2\\x5e\\xfc\\x7b\\xb7\\x0a\\x0d\\x34\\xa7\\x3c\\x5b\\x3c\\xc5\\xa8\\x6a\\xf5\\x05\\x6e\\x49\\xd4\\x1a\\x54\\x7e\\x6f\\xc5\\x41\\x73\\x1a\\x0d\\x5d\\x5b\\xc2\\x08\\x59\\x0d\\x17\\x6b\\xf5\\xf6\\x70\\xc4\\x1f\\x38\\x43\\x35\\x59\\xd5\\xae\\x9f\\x51\\xac\\xc5\\xe0\\x8d\\x1d\\x9e\\xd6\\x23\\xf0\\xff\\xc3\\x8b\\xe3\\x5e\\x48\\x4c\\x16\\xf2\\x0e\\xc7\\x54\\x92\\xf1\\xd0\\xc0\\x64\\xa8\\x19\\x1f\\x91\\x90\\x1f\\x95\\x8e\\x4c\\xa7\\xc4\\x61\\x37\\x6f\\x84\\xfb\\xd6\\xbb\\x23\\x20\\x1c\\x93\\xc1\\xc6\\xbd\\x5b\\x1d\\x5d\\x4d\\xaf\\x0c\\x66\\x25\\xba\\x36\\xd2\\xad\\x7e\\x0c\\xba\\x3f\\x81\\xfb\\xe4\\xf0\\xb3\\xd8\\x5f\\x0c\\xec\\x4e\\x40\\x9d\\x27\\x93\\xb1\\xc9\\x8a\\xe2\\x17\\x30\\xcc\\x30\\x83\\x75\\xd7\\x02\\xb1\\x94\\xf5\\x0b\\x01\\x69\\x12\\xc6\\x16\\x02\\x91\\xcd\\x93\\x4d\\x56\\xc5\\x9e\\x55\\x7b\\x53\\x55\\x18\\xe5\\x21\\x9c\\xc3\\xc8\\x0b\\x11\\x9e\\xbb\\x3c\\x5a\\x76\\x29\\xf2\\x6d\\xea\\xcf\\xb6\\x38\\xd5\\x9f\\x63\\x14\\x2d\\x16\\xd7\\xaf\\x1b\\x8a\\x5e\\xf9\\xd1\\xd4\\xc3\\xa9\\x6b\\x5f\\xd1\\xfa\\xe8\\x23\\x28\\x5f\\x69\\x33\\x3f\\xf3\\xbb\\x52\\x82\\xc4\\xec\\x2c\\xb4\\x3f\\xcc\\x25\\x75\\x1e\\xd5\\xe4\\xed\\x6e\\x3a\\xd3\\x67\\x6e\\xcc\\x79\\xeb\\x48\\x24\\x50\\xc2\\x55\\x3d\\x32\\x84\\x1c\\x3b\\x92\\x30\\x91\\x19\\x3d\\xd8\\x1d\\x96\\xf3\\xd0\\xe8\\xfe\\x6c\\x68\\x24\\x78\\x94\\x27\\xb6\\x80\\xf8\\xa5\\xa0\\x6e\\x87\\x2b\\x3e\\xe4\\x48\\x33\\x63\\x19\\xb2\\xa3\\x67\\x48\\x8f\\x32\\x95\\xb8\\x52\\x2a\\xf0\\xf8\\x45\\x56\\x01\\xf9\\x3e\\x90\\xe3\\x23\\xbe\\x20\\x57\\xf2\\x78\\x6a\\xfe\\xd2\\x0d\\x23\\x87\\x38\\xde\\x3f\\x6e\\x8c\\x37\\x83\\x49\\xd3\\xcb\\x6d\\x3f\\x2a\\x31\\x05\\x7f\\xe1\\x52\\x3a\\xd7\\x7a\\xe7\\xb3\\x9e\\xda\\x20\\xde\\x61\\x80\\x85\\x6e\\xca\\x16\\x91\\x6e\\x19\\x89\\x8c\\x70\\x94\\x7d\\x63\\xfe\\xa5\\x12\\x8e\\xe2\\xed\\xc8\\xc6\\x52\\x8d\\x0d\\xae\\xe8\\xa7\\xd1\\x3e\\x4d\\x4a\\x7a\\xc8\\xd0\\x3e\\xcb\\xf5\\xb7\\x1b\\xd8\\x49\\x0a\\x29\\x45\\x2f\\x2c\\xa6\\xd5\\x6a\\x69\\xc7\\x4a\\xf3\\xd8\\x1f\\xd7\\x81\\x62\\x97\\xbe\\x02\\x55\\xa5\\x8d\\xb2\\xe5\\x28\\x81\\x86\\xec\\x2f\\x19\\xe8\\x08\\x92\\xb7\\xd5\\xec\\xb0\\xfd\\xee\\xa9\\x9f\\x2b\\x27\\x44\\xf2\\x66\\x6d\\x04\\x2b\\xd5\\xf7\\x37\\x63\\x42\\x11\\x91\\xb3\\xe4\\xe3\\x79\\xff\\xed\\x5e\\x6f\\xcb\\x0b\\xe4\\xa5\\x53\\x29\\x65\\xd7\\x1d\\x03\\xa4\\xa4\\x64\\xeb\\x6a\\xd4\\xbc\\x1f\\x9c\\x72\\x17\\xe0\\xe1\\x6d\\x26\\x0d\\x4c\\x79\\x97\\x7c\\x5d\\x14\\x63\\xc4\\x19\\x70\\x42\\x5f\\xa5\\x51\\xed\\x79\\x39\\x35\\x32\\x50\\x7e\\x11\\xa3\\xc4\\x4f\\x7e\\x18\\x24\\x4c\\xf3\\x44\\x96\\xad\\xff\\xf0\\x17\\xfd\\x44\\x16\\x46\\xe8\\x0c\\x51\\x84\\x63\\xf0\\x34\\x8f\\x24\\x9a\\x95\\xff\\x59\\xdf\\x11\\x20\\x85\\x36\\xba\\xe9\\xf8\\xb4\\xe9\\x67\\x9b\\x54\\xc2\\x4e\\x1d\\xcb\\x25\\xd9\\xa6\\x92\\xaa\\x41\\x55\\xe3\\xdf\\x3e\\x34\\x15\\x55\\xe2\\x50\\x87\\xf1\\xca\\x0b\\xad\\x43\\x3b\\xab\\x4a\\x90\\x1b\\xb2\\xb2\\xdc\\xe5\\x8e\\x22\\x8b\\x54\\xe6\\x09\\x7b\\x0c\\xbe\\x4c\\xb5\\x3b\\x4f\\xef\\xa7\\x92\\x0b\\xf3\\xc1\\x59\\x82\\xa7\\xe8\\x93\\xdd\\x89\\x9c\\x22\\x14\\x5a\\x41\\x41\\xeb\\x88\\xbf\\x84\\xef\\xe9\\x80\\x90\\x60\\x34\\x14\\xfe\\x7c\\x94\\xe0\\x5a\\x1d\\x45\\x06\\x57\\x6a\\xee\\x48\\xa9\\xf3\\x40\\xe5\\xc1\\x62\\xa9\\x85\\x66\\xc1\\x4e\\xef\\xca\\xbf\\xd7\\xab\\x54\\x7e\\xd9\\x7b\\xf2\\xf7\\x66\\x73\\xc9\\xb2\\x7f\\xe6\\x41\\x4c\\xc8\\x05\\x62\\x46\\xef\\x75\\x2e\\xd2\\xee\\x58\\x34\\xd8\\xe9\\x62\\x90\\xc9\\x62\\x7d\\x17\\x30\\xb8\\x0a\\x9f\\xf2\\x24\\x2d\\x6f\\x2c\\x6c\\xb5\\x55\\x48\\x63\\x48\\x5f\\x17\\xe9\\xc8\\x50\\xe0\\xa4\\x69\\x4a\\xfb\\x3d\\x36\\xa3\\xb6\\x05\\xbd\\x8b\\x1c\\x76\\xc3\\x10\\x8d\\x71\\xda\\x48\\xaa\\xa1\\xc0\\x2f\\x8d\\x5f\\x25\\xbd\\x6f\\x67\\xda\\xce\\xb7\\x8a\\xa8\\x6b\\xe4\\x55\\x5b\\xe3\\x84\\x53\\xa7\\xd1\\xb6\\x0d\\xc7\\xc2\\x7a\\x9c\\x1c\\x5c\\x54\\x65\\x14\\xd0\\x4d\\x8f\\x0b\\x73\\x26\\x7f\\x5e\\x4b\\x9c\\x80\\x73\\x51\\x45\\x5c\\x6f\\xd8\\x1d\\x50\\x53\\xd2\\x9a\\x80\\xa6\\x14\\x41\\x3e\\xb7\\xae\\xda\\xe5\\x55\\x94\\xfa\\xbf\\x90\\x97\\xf6\\xec\\x68\\xa4\\x32\\xc3\\xc1\\x68\\x1b\\xd9\\xb1\\x1c\\x3b\\x51\\xc7\\xf4\\x49\\x3b\\x1c\\xb2\\xc5\\x36\\x9d\\x11\\x5c\\x7e\\x6b\\x48\\x60\\xd6\\x6c\\xc8\\xb6\\xdf\\x67\\x11\\xed\\x92\\x92\\xad\\x70\\xc4\\xf6\\xaa\\xc4\\xa4\\x23\\x68\\xe6\\xf2\\x42\\xe5\\x4e\\x79\\x39\\x24\\xa5\\x25\\x28\\x41\\xaa\\x1e\\x77\\x3e\\x86\\x67\\x50\\x43\\x1a\\xf0\\xea\\xd3\\xf9\\xbb\\x77\\xc3\\xfb\\x6f\\x85\\x6a\\xe7\\x21\\xb2\\xc6\\x41\\x00\\x91\\x8b\\xc1\\xb2\\x6e\\xfc\\x92\\xd1\\x87\\xf7\\x1e\\x89\\x43\\xff\\x9f\\x99\\x08\\x30\\xd5\\xa7\\x93\\x6c\\x38\\xdd\\x8d\\xab\\xee\\x6c\\xf7\\x24\\x6b\\x0a\\x86\\x96\\xdc\\xe6\\x6f\\x3b\\x7e\\xe2\\x18\\x93\\x43\\x4c\\xc2\\x99\\x96\\x82\\x22\\x23\\xf3\\x65\\x99\\xbf\\x7a\\x85\\x06\\x48\\x83\\xc5\\x18\\x96\\xa4\\x65\\x1a\\xa0\\x61\\xe5\\x94\\xeb\\xbe\\xf3\\x0a\\xd8\\xa7\\x86\\xec\\xd0\\xa9\\x5a\\x03\\xb0\\x8b\\xd7\\xf4\\x93\\x2b\\x7a\\x0e\\x65\\xb8\\x7b\\x42\\xe9\\xbb\\xac\\xdf\\xe3\\xf1\\x57\\xf8\\xe9\\xbf\\x58\\x6d\\xb5\\x3b\\x7c\\x5f\\xc7\\x95\\xc6\\xa4\\xf8\\x05\\xeb\\x3f\\xcc\\x47\\x36\\xb1\\xb1\\xc9\\xc9\\x87\\x6a\\xde\\xab\\x71\\x56\\x9b\\x02\\xc0\\x62\\xa5\\x9d\\xc8\\x37\\xf3\\x8a\\x5c\\x9b\\x4a\\x13\\xec\\xee\\xfd\\xf1\\x8f\\xca\\x67\\x0d\\xbf\\xe7\\x84\\xc1\\xb6\\x23\\xe1\\x54\\x82\\x8b\\x04\\x39\\x89\\x60\\xb6\\xcb\\xe9\\xc7\\xe8\\x24\\x26\\x9b\\x44\\xc3\\x03\\xfc\\x42\\xc6\\xfb\\x47\\x8c\\xca\\x8e\\xfc\\x6f\\x46\\x4b\\x33\\xc4\\xa8\\x6f\\xd9\\x1e\\x8e\\xcd\\x7c\\x81\\x2c\\x24\\x46\\x2a\\xef\\xf3\\xdc\\xb0\\x98\\xcb\\xeb\\xca\\xbb\\x5d\\x69\\xd9\\x97\\xe3\\x8c\\x3c\\x5a\\x9a\\xfd\\xa9\\xdc\\xfc\\xa5\\xb2\\x4b\\xc1\\x01\\x4a\\xc1\\x94\\x3f\\xcd\\xb3\\x1f\\x8a\\xfc\\x4a\\xd7\\xa7\\x0a\\x48\\x4f\\x7b\\xfa\\xe7\\x69\\x59\\x60\\xb2\\xaa\\x17\\x29\\x2d\\x52\\x53\\x54\\xa5\\x39\\x94\\xb6\\x08\\x7a\\x0f\\x1e\\xe9\\x4e\\xf3\\x06\\x43\\x6e\\x02\\xa8\\x3f\\xc6\\x14\\x69\\xcc\\x53\\xba\\x79\\x16\\x71\\x1d\\x92\\xd9\\x02\\xe6\\x17\\xf5\\xd2\\xd0\\x41\\x4a\\x86\\xcc\\xdb\\xa4\\x96\\x3f\\x12\\xa6\\xdd\\xac\\x50\\xc1\\xb7\\x0a\\x18\\x7c\\xd8\\x27\\xf7\\x1e\\xae\\x33\\xf4\\x56\\x38\\xb9\\xf6\\x56\\x9a\\x0c\\x56\\x96\\x8c\\xeb\\x9d\\x62\\x11\\x6a\\x38\\xb1\\x4a\\x73\\x17\\x16\\x87\\x9b\\xf6\\x7e\\xdd\\x53\\xba\\xc4\\x57\\xa8\\x5a\\x07\\xcf\\x37\\x89\\x4f\\x2e\\xb0\\x1b\\xef\\x13\\xb7\\x27\\xfa\\x6b\\x2c\\xb1\\x3b\\x2b\\x0b\\x91\\xc6\\xe2\\xc9\\x48\\xc1\\xe3\\x3b\\xc5\\x5e\\x94\\xbb\\x16\\xb3\\x96\\x96\\x4b\\xdc\\xfd\\x07\\xf6\\xa3\\xf0\\xc1\\x4c\\x7d\\xa0\\x1a\\x2d\\x4f\\xb6\\x14\\xe7\\x64\\xd6\\xaa\\xe0\\xbf\\xfc\\x55\\xb5\\x2d\\x0f\\x8d\\xf7\\x2d\\xb7\\x3a\\x53\\xe6\\x0f\\x7b\\x1c\\x06\\x7d\\x62\\xc4\\x9d\\x14\\x57\\x32\\x68\\x31\\x23\\x8f\\x7d\\x5a\\x6e\\xd7\\x12\\xd7\\x6d\\x4d\\xa8\\x0e\\xfa\\x01\\xa5\\x8a\\xc9\\x53\\x01\\xdc\\xe5\\x97\\x22\\x4e\\xb8\\x04\\xa8\\x71\\x14\\x26\\x29\\x38\\x73\\xf8\\x0c\\x97\\xa2\\x9b\\xb6\\x3a\\x88\\x1c\\xc7\\x67\\xdb\\xb8\\x71\\x3b\\xc3\\x2d\\xd4\\xaf\\xe4\\x9a\\x8c\\x30\\x1c\\x5a\\x44\\x7e\\x21\\x99\\xe0\\x02\\x6b\\x29\\x33\\x1d\\xea\\xb1\\xac\\x03\\x82\\x6f\\xc4\\x36\\xcd\\x42\\x73\\x33\\x32\\x81\\x35\\x00\\x43\\x58\\x5e\\x6e\\x13\\x0d\\xd6\\x7a\\x3c\\xf9\\x96\\x8e\\xba\\x46\\xc3\\xbd\\x98\\xc7\\x93\\x34\\x20\\xcf\\xad\\xa7\\xf6\\xef\\x99\\x5b\\x84\\x2c\\xb6\\x55\\x8b\\x87\\xa9\\x88\\xfd\\xaa\\x93\\x46\\xc6\\xef\\x7d\\xeb\\xe9\\x1c\\xe0\\x1e\\x55\\x05\\x4c\\x46\\x98\\x72\\x1c\\x0d\\x78\\xcc\\x02\\xca\\x33\\x95\\x05\\xfb\\x32\\x09\\x81\\x41\\x78\\xcf\\x81\\x33\\x12\\x61\\x81\\x8e\\xc6\\x6a\\xc6\\xaf\\xe6\\x7b\\x2d\\xe5\\xee\\xd1\\x1e\\x8f\\x03\\x2d\\x63\\x71\\xe3\\x48\\x70\\x10\\x2f\\x27\\x7c\\x01\\x4e\\xa6\\x18\\x99\\x77\\x26\\x0b\\xb5\\xf8\\xab\\x0b\\x71\\x07\\x0d\\x48\\xc3\\x0b\\x6e\\x1f\\xda\\x69\\x43\\x64\\x7c\\x54\\xc5\\xb0\\x96\\x79\\xda\\xb0\\x68\\xf5\\xa4\\xe9\\xad\\xf0\\xba\\x1f\\x0f\\x16\\x85\\x93\\xea\\xa6\\x24\\xf3\\x92\\xb4\\x12\\xe3\\x65\\x4e\\x2e\\x5e\\x9c\\x70\\x57\\xe4\\xc1\\x0b\\xfe\\x7a\\x9f\\x1e\\x15\\x86\\x8f\\xc9\\x9d\\xc3\\x52\\x0c\\x99\\xc4\\x13\\x65\\xb8\\x26\\xa3\\x4c\\x86\\x7c\\xa7\\xc8\\xaa\\xcc\\xbe\\xd0\\x5f\\xe4\\xe5\\xaf\\x43\\x6d\\x9a\\xb0\\xf0\\x12\\x20\\xc2\\xac\\x94\\xb7\\x7d\\x37\\x23\\x36\\x6c\\x7b\\x05\\xa4\\x5d\\x0f\\x8e\\x0c\\xb5\\x2a\\x05\\x81\\xa6\\x8c\\x13\\x92\\x25\\xde\\x93\\xb3\\x07\\x84\\x7a\\xbc\\xb6\\xb6\\x5f\\x2f\\x30\\x23\\xe1\\x40\\x06\\x2e\\xa8\\xd9\\xd2\\xb0\\x3e\\xa6\\x74\\xdc\\x74\\xf0\\xb6\\x40\\x21\\x18\\x33\\x72\\x88\\xc6\\xe8\\x11\\x01\\xec\\x5b\\xfc\\xf4\\xce\\xee\\x9f\\x54\\xd5\\x56\\x21\\xe4\\x94\\x93\\xdf\\xad\\x3c\\x9d\\x14\\x28\\x1f\\x18\\xb7\\xf7\\x92\\xe6\\xb7\\x37\\xad\\xd5\\x8a\\x16\\xaa\\x40\\x5a\\x70\\xa4\\xbf\\x3c\\xb8\\x3f\\xf2\\x07\\xc7\\xdb\\xef\\x27\\x7d\\x24\\x86\\xab\\xd5\\x54\\xa8\\xe6\\x63\\xe0\\x03\\x4e\\x00\\xbd\\xf3\\x7c\\xf1\\x9f\\x83\\xb1\\xba\\x36\\x29\\xe2\\x9d\\x88\\xb0\\x7d\\xd6\\x62\\x24\\x37\\x12\\x09\\x32\\x9d\\x76\\xbd\\x9d\\x6c\\xce\\x3c\\xa9\\x7b\\x04\\xa2\\xbc\\x18\\x1c\\x8e\\xf5\\xcc\\xba\\x69\\x49\\x4b\\x6d\\xc7\\xd6\\xf9\\x8c\\xc6\\x20\\x00\\x6c\\x64\\x05\\xcc\\x40\\x03\\x0a\\x2c\\x39\\x93\\x61\\x36\\x17\\x72\\x39\\x86\\xd3\\x0c\\x97\\x70\\xc7\\xd4\\x13\\x30\\x95\\x50\\x3d\\x21\\xa9\\x2e\\xf4\\xd1\\x9d\\x12\\x27\\xfe\\x81\\xbc\\xcf\\x1d\\x1b\\x88\\x7e\\x35\\x8d\\x9d\\xf4\\x7d\\x51\\xf9\\xdf\\x57\\xde\\xa5\\xb8\\x8d\\x56\\x1b\\x2f\\x53\\x83\\x74\\x5c\\x9a\\x28\\x2d\\x53\\x7b\\x75\\x45\\x5b\\xaf\\x5c\\x40\\x77\\xa2\\x91\\x3d\\x90\\x3f\\x24\\x06\\xb6\\x14\\xff\\x5f\\xa6\\x87\\x0a\\x7f\\xac\\x6f\\x78\\x91\\x54\\xc6\\xe0\\x9f\\x3e\\x4f\\xd6\\x80\\x42\\xce\\x86\\xe2\\xb5\\xd9\\x6e\\x76\\x91\\x3d\\x5b\\x53\\xf0\\x59\\x7a\\x0b\\x67\\x8d\\x22\\xef\\x16\\x4d\\x0a\\xf6\\xf3\\x29\\x57\\x88\\xce\\x9a\\x45\\x91\\xb5\\x5b\\xbc\\xec\\x40\\xc4\\xd1\\x96\\x6e\\x9d\\x65\\xe3\\xcc\\xd9\\x09\\x86\\x62\\x0e\\x28\\xea\\xa1\\xea\\x07\\x65\\x00\\xc1\\x69\\xe6\\x83\\xcd\\x5f\\xdd\\x33\\x4c\\x29\\xfa\\xd4\\x7b\\xb7\\xcc\\xbf\\xb9\\x3f\\x3d\\xaa\\x36\\x60\\xcc\\x97\\x51\\x11\\x03\\x6a\\x83\\xee\\xa7\\xe4\\x44\\xc8\\x04\\x2a\\x8a\\xc2\\x9e\\x63\\x78\\x6e\\x6d\\x30\\xb7\\x6d\\x04\\xba\\xd3\\x8b\\x74\\xf7\\x58\\xa9\\xd6\\x87\\xca\\x56\\x7f\\x59\\xfd\\x0c\\xa0\\x83\\x6f\\xc9\\xa7\\x9a\\x32\\x7a\\x5e\\xbe\\xd3\\xad\\x53\\xed\\x3a\\x19\\x18\\xbf\\xef\\xe2\\x6b\\xbd\\xa6\\x6e\\x8c\\xd6\\x7d\\x27\\xe7\\x52\\xd2\\x51\\x42\\x94\\x38\\x42\\x93\\x96\\x1b\\x49\\x78\\xab\\x62\\x4c\\xf7\\xce\\xa8\\xe7\\xb2\\x79\\x65\\x2f\\x3b\\x92\\x5f\\x11\\x0c\\xda\\xa6\\x37\\xfc\\xe3\\xcf\\xd3\\x90\\x72\\xbd\\x80\\xcf\\xb4\\x16\\xde\\x85\\xaa\\x90\\xe1\\xc5\\x58\\x3d\\x03\\xe9\\x19\\xc6\\xa8\\x2d\\x45\\x83\\x42\\x42\\x96\\xe8\\xf6\\x3e\\x55\\x7d\\x00\\xee\\xb2\\x97\\xd1\\x3d\\xc2\\x6f\\x26\\x1c\\x4b\\xe1\\x87\\x99\\x0e\\xaf\\x7b\\xc4\\xa9\\x3b\\x42\\xdc\\xa4\\x03\\xc4\\x22\\x80\\xb5\\x6c\\xc4\\x1b\\xeb\\xfa\\xbf\\x68\\x13\\xbe\\x6d\\x2b\\xf9\\xbe\\x58\\xdc\\x8a\\xa6\\x56\\xb5\\x7f\\x8b\\x1f\\x0b\\xb1\\xc5\\xe5\\xf7\\xe6\\x21\\x34\\xba\\x13\\x8f\\xf9\\x34\\x8a\\x84\\x0e\\x67\\x25\\xc9\\xb8\\x10\\xfa\\x86\\x25\\xe8\\xc3\\x39\\xed\\xda\\xaf\\x89\\xbd\\x65\\x5f\\x04\\x87\\x04\\x61\\xa8\\x82\\xe1\\x67\\x26\\xd2\\x89\\xbb\\x53\\x69\\xd8\\x75\\x1b\\x72\\xcf\\xf6\\x2a\\xae\\xf2\\x82\\xa0\\xfa\\xd3\\xc5\\xda\\x05\\xc5\\x49\\xc4\\xc7\\xa1\\x2e\\x4d\\xa7\\x53\\x8f\\x53\\xea\\xb2\\x34\\x22\\x6d\\x25\\x24\\xaf\\x66\\x04\\xe0\\x1b\\x2d\\x12\\xfa\\x62\\xc7\\x73\\x78\\xbc\\x2d\\x48\\x58\\xbf\\x51\\xd8\\x5d\\xff\\x66\\xaf\\x9e\\xbb\\xd4\\x58\\x4f\\x55\\x02\\xc8\\x44\\xd2\\xe5\\x28\\x61\\x65\\xea\\x9d\\xa7\\x77\\xb8\\xc2\\xa2\\x2a\\x3c\\xed\\xa8\\xa1\\x63\\x72\\xc9\\x0f\\x50\\x6a\\x76\\x1b\\xd8\\xba\\xe7\\x56\\x7e\\x60\\x21\\xbe\\x48\\x42\\x58\\x72\\x70\\x6f\\xab\\x0d\\x06\\x3b\\x50\\x04\\x03\\x13\\x08\\x79\\xb9\\x10\\xdd\\xb3\\x0a\\x79\\x5e\\x51\\x35\\xd4\\xc7\\xdd\\xa8\\x88\\xf3\\xd4\\x0e\\x4b\\xc5\\xc3\\xcf\\x3a\\x99\\xd9\\xbb\\x2b\\xbe\\xeb\\xe4\\xf1\\xe1\\x3f\\xbb\\x42\\x17\\x9a\\x26\\xbc\\xbb\\xfa\\x03\\x98\\x8a\\x79\\xbe\\xd9\\xd1\\x9e\\xce\\x5d\\x4f\\xac\\x0c\\xa2\\x16\\x93\\xcb\\x61\\xf8\\xa9\\x19\\xf3\\xd7\\x39\\xfe\\xd2\\xa2\\xcd\\x5a\\xeb\\xfa\\x29\\x2f\\x29\\x56\\x1c\\x20\\xb6\\x04\\x1c\\x4a\\xa6\\x74\\xe9\\x00\\xcc\\xe9\\xd9\\xc9\\xff\\x95\\x0e\\x3d\\xb8\\x14\\x3b\\x93\\xdf\\xa3\\xb3\\xe4\\xf0\\xa8\\xca\\xd5\\x2d\\x13\\xce\\x94\\x72\\x44\\x96\\xbf\\x31\\x9c\\xe1\\x97\\x6f\\xea\\x26\\xb4\\x3f\\xf5\\xbe\\xd4\\xf4\\x59\\x80\\xf7\\x4f\\x3d\\x56\\x04\\x22\\xe6\\xba\\xe5\\xb0\\x0b\\xf5\\x88\\x25\\x71\\x90\\xd2\\xf6\\x90\\x6f\\xc6\\xd8\\xfc\\xaa\\x9c\\x4a\\x49\\x2f\\x93\\x76\\xba\\xf8\\xa9\\x9f\\x31\\xab\\x11\\xf8\\x34\\xef\\xee\\x67\\x1c\\x5f\\xa6\\xea\\x6a\\xa9\\x66\\xa7\\xa1\\x99\\x45\\xe3\\x9b\\x05\\x7b\\xf9\\xfb\\x83\\xcd\\x44\\x26\\xcd\\x4d\\x81\\xb7\\xb4\\x2c\\x20\\x38\\xba\\xd8\\x6b\\x8e\\xdc\\x88\\x6a\\x16\\x64\\x21\\xe7\\x2c\\xda\\x22\\x3e\\x47\\x76\\x8f\\xa8\\x6a\\xbb\\x66\\xd8\\xb7\\x33\\x67\\xae\\x68\\xe5\\xad\\xc1\\x11\\x2c\\x0a\\x06\\xbb\\x1e\\x99\\x6b\\x1b\\x9f\\xfe\\xc5\\x68\\x8f\\xf3\\x5c\\x05\\x51\\xd9\\x65\\xe9\\x00\\x4e\\x86\\x2d\\xca\\x10\\x89\\xa7\\x43\\x01\\x7e\\x29\\x3d\\xc3\\xae\\x0c\\x5b\\x2b\\xb0\\xdf\\x9f\\x35\\xb2\\xaf\\x26\\xb2\\xa3\\x2a\\x94\\xd4\\x42\\xd8\\xb1\\xd1\\x24\\x19\\x32\\x47\\x13\\x36\\xb1\\x1a\\x12\\xe5\\xde\\xba\\x87\\x8d\\x28\\x37\\xaa\\x71\\x59\\x6b\\xcc\\x5e\\x8f\\xf0\\xb0\\x5e\\xdd\\xb4\\x3f\\x3f\\x77\\xc2\\x5c\\x88\\xe2\\x7c\\x1f\\x1a\\x81\\xe9\\x77\\xda\\x0c\\x34\\xef\\xf8\\x51\\x64\\x48\\x57\\x8f\\x9c\\xf2\\xbf\\x00\\x00\\x40\\xff\\xbf\\x2e\\xc9\\x8e\\xeb\\x6e\\x72\\x82\\x56\\x29\\x56\\x44\\x59\\x4f\\x1e\\xf6\\x12\\xcf\\x30\\x89\\xe8\\x85\\x69\\x55\\x8e\\x15\\xd0\\xb5\\x76\\xc3\\xe5\\x58\\x88\\x1f\\x07\\x2a\\x31\\x0d\\x4c\\xf3\\x3a\\x8c\\xea\\x12\\x6b\\x74\\xe0\\x9f\\x11\\xb1\\x76\\x27\\x6b\\xfc\\xce\\x8f\\xd5\\xe5\\xe3\\x50\\xc1\\x17\\x2f\\xbe\\xcb\\x32\\xfa\\xac\\xfa\\x83\\x29\\x2a\\x04\\x4b\\xc3\\x99\\xd3\\xad\\x96\\x43\\xb3\\xab\\x39\\x74\\x4a\\x24\\x99\\x80\\x9d\\x65\\x67\\x76\\x94\\xe4\\x45\\x00\\x2a\\xcd\\x39\\x1d\\xa8\\xd7\\xe2\\x04\\x94\\x9c\\x69\\xa5\\x21\\x7a\\x03\\x3c\\xc2\\xbd\\x4f\\xa0\\x34\\xcf\\x63\\x13\\xdd\\x85\\xd9\\x00\\xe6\\xa8\\x73\\x31\\xb2\\x86\\x3a\\x57\\x99\\x05\\x0b\\x1c\\x84\\xc7\\xd0\\x48\\x7d\\x4c\\xab\\xf3\\x8f\\xb6\\x3b\\xff\\x58\\x6f\\x8b\\x2e\\x0e\\xc2\\x4e\\xd8\\x50\\x95\\x47\\xa8\\xd9\\xab\\x87\\x02\\xa9\\x01\\x1c\\x01\\x4d\\x36\\x55\\x95\\xb3\\x40\\xf8\\x67\\x59\\xe2\\x15\\xd5\\xe5\\x08\\x81\\xed\\x39\\x4e\\xf3\\xc7\\x1b\\xcc\\xa9\\x81\\xb7\\x40\\x17\\x27\\x2f\\xf7\\x00\\xc1\\x3a\\x6a\\x8d\\xfb\\x15\\xab\\xf6\\xa6\\x14\\xbe\\x18\\x90\\x8e\\x49\\x4b\\x86\\x62\\xc8\\x35\\xf1\\x2b\\x76\\x35\\x2e\\x34\\x73\\xca\\x98\\x83\\x51\\x7d\\xeb\\x5c\\xd2\\x75\\xe3\\x01\\x4b\\xe2\\xeb\\xb4\\x2e\\x80\\x39\\x66\\x6e\\xfc\\x1c\\x71\\xe4\\x50\\x16\\x7f\\xd2\\xc6\\x5b\\x81\\xf4\\xdc\\xd5\\x16\\xf5\\x1f\\xd2\\x82\\xb9\\x59\\xa8\\x58\\x7e\\x21\\x8a\\xad\\x55\\xf5\\x9e\\x98\\x69\\xb4\\xd0\\x69\\x55\\x39\\xf7\\x9d\\x91\\x3c\\x9b\\xba\\xe5\\xc3\\x57\\x61\\xfb\\x08\\xe0\\xb1\\x2d\\x4d\\x1e\\x95\\xd8\\x1f\\x57\\x0e\\x3d\\xf8\\xb9\\x90\\x6e\\x95\\x5a\\x4f\\x26\\x01\\x96\\xc9\\xc7\\x9d\\xd8\\x16\\x45\\x0e\\x93\\x60\\xfe\\xc7\\xf2\\x7f\\xd5\\xa5\\x0b\\x03\\xc5\\x87\\x9f\\xb4\\x6b\\x69\\xbf\\x6a\\x1b\\x55\\xdd\\x48\\x11\\x8c\\x6f\\xb9\\xce\\x6d\\xd6\\x94\\xe8\\xfe\\xa8\\x6d\\x5e\\xa2\\x3e\\xe1\\x75\\x76\\x92\\x18\\x03\\x67\\x4a\\x18\\x90\\x16\\x0e\\x61\\x43\\x85\\x3b\\xb2\\x12\\x69\\x60\\x8a\\x6a\\xbf\\xea\\x27\\x91\\x58\\xd6\\xb9\\x19\\xaa\\xc2\\x7c\\xf8\\x2c\\xb2\\x2c\\x4d\\x9d\\x6f\\xec\\xd1\\x9e\\x25\\x12\\xcc\\xe6\\x9b\\x91\\xc9\\x18\\x73\\x66\\x54\\x80\\x3c\\xce\\x00\\xaa\\x01\\x59\\x4d\\x44\\xe6\\xa3\\xc8\\xe4\\x76\\x49\\xe2\\x6d\\x7c\\x5b\\xfc\\xb5\\xdd\\x07\\x69\\xfb\\x35\\x12\\x39\\xc8\\xe5\\xbd\\x16\\xf8\\x8a\\x88\\x2a\\x58\\x84\\x89\\x4d\\xc0\\x49\\xe9\\xa6\\xc6\\xc9\\x2a\\x17\\x6b\\xc5\\xe9\\x64\\x07\\xc4\\x53\\xd3\\xa6\\x5a\\xdb\\x26\\x8c\\xd6\\x9d\\xa2\\x06\\x33\\xce\\x24\\x65\\x94\\xc2\\x54\\xa3\\x14\\x06\\xcf\\x72\\xde\\xf7\\xa5\\xe5\\x1d\\xd5\\x56\\x12\\xdd\\x14\\x93\\x56\\xf7\\x68\\x47\\xd8\\x66\\x37\\x83\\x67\\xb5\\xe2\\xaa\\x8c\\xad\\xca\\xf1\\xe2\\x17\\x63\\x01\\xf7\\x58\\x2d\\x58\\x5c\\x69\\x36\\x01\\x6b\\x5d\\xcb\\x4b\\x12\\x51\\x50\\xb5\\xb2\\x3f\\x50\\x76\\x72\\x83\\x53\\x12\\x4b\\x9e\\xa2\\xd9\\x58\\x58\\x11\\x29\\x05\\xae\\x7a\\x02\\x26\\xed\\x7b\\x0b\\x96\\x2b\\xf8\\x92\\xec\\x9c\\xdb\\x41\\x91\\x7a\\x4c\\x78\\xe5\\x99\\x6f\\x75\\x2d\\x80\\x95\\x07\\x90\\x94\\x89\\x3a\\x14\\xd3\\xba\\x95\\x38\\x1f\\x54\\x72\\x30\\xb7\\x34\\x34\\x29\\xa0\\x6e\\xaa\\x61\\x68\\xd9\\xf2\\x50\\xa6\\xd3\\xb6\\x1a\\x4f\\x93\\x0f\\x29\\xc9\\xb8\\xb6\\x7c\\x26\\xf9\\x2e\\xd8\\xb8\\xa1\\x7a\\x1b\\x9e\\x71\\x2b\\xe0\\x7c\\xca\\x19\\xe2\\x8c\\x11\\x52\\xf7\\x83\\x47\\xc2\\x5d\\xd7\\xc4\\x7e\\x68\\x04\\x91\\xb3\\xb0\\xff\\x7f\\xba\\x2c\\xae\\x83\\x49\\x34\\xf9\\xcc\\x9c\\x49\\x20\\x85\\xa2\\x54\\xd9\\x7c\\x61\\x61\\xce\\x74\\x15\\x93\\x05\\x3f\\xaa\\x72\\xc7\\x77\\xf9\\x86\\xef\\x6c\\x20\\x7f\\x71\\x93\\x38\\xfa\\x64\\xef\\xe9\\xb9\\x1b\\x8e\\x94\\xbc\\x60\\x84\\xd4\\x87\\x62\\x40\\x73\\x29\\x6e\\x24\\x47\\x56\\x42\\x0e\\x17\\x18\\x8a\\x0a\\x1b\\x84\\xb1\\x8c\\xb9\\xf3\\x45\\x70\\x8b\\x0b\\x94\\x08\\xa4\\xb2\\xe8\\xb0\\xf0\\xfe\\x5d\\x06\\x34\\x7f\\x00\\x7c\\x29\\x38\\xb1\\x0a\\x85\\x63\\x5b\\xcb\\x08\\x36\\x42\\xb1\\xf9\\xd4\\x3a\\x6e\\x00\\x90\\x78\\x0b\\x3d\\x4a\\x8f\\x9c\\xc4\\xdf\\x5b\\x4b\\xc0\\x54\\xcd\\x55\\xba\\x5d\\x2e\\x01\\x65\\xd0\\xc9\\x5d\\x87\\xd6\\xd5\\x91\\xc8\\xcc\\xcd\\x9d\\x81\\x8b\\x16\\x46\\x61\\xb1\\x1c\\xf5\\x5b\\x09\\x95\\x16\\xc3\\x4b\\xd4\\x57\\x7f\\x7b\\x05\\x87\\x79\\xab\\xa7\\x33\\x1e\\xc1\\x5b\\x2f\\x8e\\x23\\x79\\x89\\xa4\\x05\\xeb\\xf4\\x18\\x79\\x95\\xd4\\x98\\xa4\\x2a\\xf8\\x20\\x2d\\xa0\\x3e\\xae\\x29\\xb2\\xc4\\xeb\\x0b\\xe6\\xaa\\xe0\\x2f\\x8b\\x28\\xc1\\x54\\x25\\xcb\\xed\\x05\\x80\\xf6\\xf7\\x28\\xf8\\xd7\\x22\\xaa\\x60\\x95\\x44\\x06\\x45\\xea\\x36\\x88\\x6a\\xaf\\xc8\\x86\\xce\\x44\\x7e\\x18\\x96\\x84\\xf9\\x77\\x01\\x31\\x72\\x37\\x25\\x36\\x4d\\xa0\\x43\\x41\\xb4\\x3b\\x39\\x66\\xe3\\xa7\\x6d\\x06\\x54\\x0d\\xc5\\x51\\xbf\\xce\\x05\\x73\\xa9\\xe9\\x6b\\x89\\x8a\\x18\\x2e\\x68\\x60\\xff\\xc2\\x22\\x22\\xc2\\xb4\\x08\\xf4\\x19\\xb1\\x7a\\x23\\x62\\x1c\\x9a\\xa0\\x30\\x00\\xa2\\x5b\\x32\\x39\\x72\\x52\\x7d\\x47\\xb4\\xbc\\xf8\\xfa\\xbe\\xb4\\x4a\\x45\\xc6\\x99\\x0a\\xd8\\x72\\xe8\\xa0\\xb9\\x8d\\x8b\\xfb\\xb7\\x7e\\xa6\\xcc\\xcc\\x3f\\x56\\xca\\x44\\x11\\x7a\\x06\\x1b\\x85\\x14\\x54\\x20\\xae\\x5d\\xca\\xd9\\x25\\xa0\\x5f\\xe7\\x79\\xf2\\x29\\x96\\x56\\x2b\\x38\\x92\\x11\\x54\\x54\\xdc\\x58\\x25\\x31\\x52\\xfd\\xba\\x4f\\x02\\x7f\\xa1\\x03\\xf9\\xd6\\xa4\\xa7\\x5b\\x86\\xaf\\x84\\x8a\\xef\\x33\\xcd\\xa2\\x48\\x86\\x2c\\x5b\\x35\\x8e\\x9b\\x32\\x27\\xfb\\x11\\x18\\x16\\xc3\\x46\\x56\\x30\\x93\\xdd\\x4f\\x95\\x36\\xaf\\x96\\xc8\\xd1\\x8c\\xeb\\x3b\\x8e\\x6b\\xc7\\x72\\x99\\x36\\x75\\xaf\\x6b\\x26\\x27\\x37\\x25\\x6f\\x11\\x5a\\x99\\x66\\x34\\xf0\\x75\\x55\\x59\\x16\\x67\\xbb\\x3b\\x44\\xa6\\x48\\x96\\xe9\\x55\\x14\\xda\\x86\\x9b\\x3c\\xa8\\x01\\x6b\\xc1\\x42\\x27\\xfb\\xa0\\xad\\x61\\xa3\\x25\\x93\\x1b\\x12\\x63\\x7f\\x93\\xb9\\xad\\x30\\xb4\\x40\\x47\\x92\\x53\\x72\\x2a\\x33\\x4f\\x63\\x6d\\xf4\\x17\\x04\\xd4\\x53\\x95\\x6e\\x5d\\x5a\\x40\\xbc\\x50\\x9a\\x66\\x1e\\x87\\xe2\\x76\\x6d\\x82\\xb8\\x8b\\x49\\x7f\\xfd\\x67\\xb1\\xcc\\x54\\xd0\\x2c\\x08\\xc2\\xf4\\x06\\x2f\\xa9\\x26\\x27\\xdd\\x6b\\xf7\\x14\\x02\\xff\\xa9\\xb0\\x0a\\xe0\\x7e\\xf0\\x88\\x58\\x48\\x5f\\x5f\\x7f\\xcb\\x60\\xad\\x4d\\x26\\x58\\x78\\x8c\\xa7\\xcb\\x67\\xb6\\x48\\x3c\\x86\\x68\\xd9\\xd0\\xb6\\x3d\\xee\\x81\\x1d\\x81\\xb5\\xa1\\x7c\\xe3\\x40\\x51\\x67\\x68\\x54\\x30\\x6e\\xce\\x09\\x70\\x36\\x6e\\xd1\\x55\\xa7\\x31\\x99\\x9c\\x06\\x59\\x38\\x53\\x8b\\x81\\x12\\x39\\x80\\xaa\\x33\\x9a\\x0e\\x52\\xe5\\x3f\\x3c\\x12\\x45\\xef\\xc9\\x68\\xcc\\x82\\x81\\xee\\xf5\\xf8\\x72\\x51\\xa5\\x3d\\x0c\\xec\\x44\\x4c\\x68\\x3a\\x96\\x50\\x7a\\xa0\\x47\\x3e\\xbf\\x6d\\x3f\\x29\\xcd\\x35\\xc5\\x25\\x07\\x94\\xe8\\xa3\\xe8\\x4c\\x91\\x10\\x2b\\xe1\\xc4\\xc2\\x06\\x90\\xa6\\xf9\\xb3\\x53\\x77\\x74\\x92\\xa6\\x22\\x8a\\xa9\\x83\\x87\\x07\\xb8\\xbf\\x97\\xd9\\x50\\xea\\x22\\x61\\x51\\x25\\x05\\x40\\xe4\\xb5\\xdb\\x44\\x17\\x12\\xa8\\xae\\xe3\\x29\\xb3\\x14\\x1c\\x5e\\x2c\\x77\\x16\\xd6\\x7a\\x30\\x0b\\x14\\x27\\x18\\xa3\\xd4\\x44\\x55\\x72\\x02\\x3c\\x2d\\x17\\x15\\x33\\x55\\xee\\x3b\\x54\\xb8\\x5d\\xc4\\xb0\\x43\\x50\\x2d\\xae\\x56\\xe6\\xc2\\xbb\\x05\\xdb\\x83\\xec\\x2c\\xb5\\x05\\x8f\\x67\\x63\\xb4\\x21\\x26\\x72\\xa2\\xc3\\xa1\\xf0\\xac\\x96\\xac\\x54\\x2a\\x4d\\x7e\\x19\\x57\\x2b\\xe1\\x90\\xb1\\xe1\\xf2\\xa0\\xf6\\x6e\\x30\\x16\\x67\\x1a\\xe8\\x53\\xff\\x96\\x11\\x84\\x62\\xa7\\x28\\xa2\\x00\\x42\\x0e\\x53\\x51\\xf0\\xde\\x31\\x23\\x2a\\x95\\x36\\x9c\\x68\\xa9\\x64\\x20\\x41\\x8a\\x90\\x46\\x9e\\x88\\x57\\xf4\\x8b\\x08\\x10\\xcb\\x60\\x53\\x37\\x12\\x29\\x5b\\x2c\\x8c\\x16\\xf2\\x87\\x1e\\x3a\\xa8\\xb2\\xb4\\xc9\\xa7\\x89\\x3d\\x0f\\x2e\\x92\\x6f\\x11\\xdc\\x29\\xdf\\x26\\xf2\\xde\\x24\\xe1\\xdd\\xf1\\xd9\\x22\\xc3\\x9e\\x8d\\x1b\\xd2\\x9f\\x83\\xe0\\xce\\xcd\\x4e\\x2d\\xbe\\x9a\\x4c\\x98\\xc4\\x43\\xad\\x87\\x26\\x61\\xd1\\x35\\x6c\\xde\\x1d\\x24\\x68\\xe2\\x8b\\xa6\\x60\\x11\\xdf\\x66\\x50\\x68\\xd3\\x25\\xd4\\xed\\x76\\xd2\\x9a\\x0f\\xad\\xb6\\x8a\\x27\\x1c\\xbf\\x1f\\x1d\\x21\\x7a\\x76\\x3d\\x10\\x21\\x7d\\x1a\\x50\\x1d\\x88\\x22\\xb4\\x4c\\xce\\x56\\x51\\xc2\\xec\\x34\\xc3\\x52\\x1a\\xa3\\x2f\\xbd\\xfc\\xd8\\x7c\\x2a\\xc5\\xb6\\xb0\\xce\\x99\\x26\\xf3\\x38\\xb8\\x72\\x6c\\x24\\x73\\x97\\xb9\\xde\\xa8\\x8b\\x84\\x91\\x15\\xe6\\xa8\\xb0\\x7c\\x60\\x2e\\xc9\\x28\\xa1\\xa9\\x28\\x70\\x94\\xc9\\x41\\x84\\xd8\\xa4\\x91\\x6f\\x0b\\x52\\xb0\\x11\\xa6\\xad\\x58\\xde\\x0d\\x3d\\xaf\\xd0\\xe8\\x00\\xc7\\x9f\\x68\\xc9\\xa4\\x41\\x49\\xe6\\x53\\xfa\\x1a\\x15\\xf8\\x4f\\xe4\\xce\\x98\\x19\\x92\\xf3\\x39\\xa4\\x08\\x91\\xbf\\x64\\x39\\x08\\x34\\x72\\xa4\\xa3\\x01\\x32\\x59\\x1e\\x78\\x05\\x23\\x15\\xc8\\x28\\xf8\\xc9\\x88\\x9d\\xa5\\x8f\\xa9\\x2b\\xd0\\xb5\\x4a\\x9b\\x5f\\xd7\\xf0\\x34\\x60\\x89\\x0e\\x95\\x30\\xb9\\x98\\x25\\xca\\xa9\\xf4\\x98\\xc3\\xf3\\x83\\xba\\x13\\x4c\\xef\\x49\\x27\\xdb\\x77\\x3c\\x99\\xcd\\x80\\xb5\\x4f\\xee\\x24\\xad\\xe7\\xa0\\x4a\\x1b\\x64\\x3e\\x56\\x5c\\x14\\xca\\xd6\\x3e\\x5f\\x9e\\x28\\x85\\x99\\xb3\\xd3\\xe2\\xb7\\x18\\x21\\xb1\\xdc\\x12\\xe8\\xcd\\xe9\\x0c\\xac\\x50\\x22\\x5d\\x2f\\xbf\\x1c\\xd0\\x7f\\x15\\x9a\\xcc\\xe0\\x50\\x6e\\xb8\\xab\\x60\\x6e\\xd8\\x14\\x8e\\x4f\\xbc\\xab\\xb6\\x54\\x4b\\x77\\x55\\xa4\\x1d\\xde\\x62\\xba\\x25\\x5d\\xec\\xb3\\xab\\x11\\x2b\\xd6\\xcb\\x2a\\x7f\\x4f\\x10\\xcf\\xef\\xc9\\x1b\\x6a\\x9e\\x2f\\x46\\x9c\\xed\\xe3\\xb5\\x48\\x29\\xc8\\x35\\x2e\\x4c\\xff\\x6a\\x65\\x80\\xbb\\x53\\x2c\\x1b\\x09\\x14\\x17\\xd2\\xce\\xfd\\xe5\\x69\\xb1\\x3d\\xe3\\xd6\\x64\\x6e\\xac\\xac\\xaf\\xff\\xcb\\x25\\x65\\x29\\x5b\\x41\\x76\\x45\\x4c\\x05\\x40\\x8f\\xbd\\x9a\\x46\\x85\\xac\\xc7\\x57\\x71\\x42\\x22\\xae\\x41\\x8e\\x6a\\x98\\x18\\x6d\\x54\\x22\\x20\\x4b\\x7f\\x2d\\xdb\\x27\\xe6\\x4c\\x7e\\xea\\x0f\\xf0\\x8d\\x36\\xad\\xb8\\x1a\\x88\\x47\\x96\\x68\\x07\\x10\\x2a\\xd3\\xd9\\x76\\x30\\x65\\x49\\x52\\x53\\x66\\xd9\\xf3\\x70\\xe1\\x7e\\x24\\x9c\\x84\\xe3\\x60\\x1c\\x33\\x06\\x68\\x94\\x2f\\xac\\x87\\x72\\xa5\\x1e\\x4d\\xd8\\x77\\x44\\x59\\x19\\x44\\x65\\x92\\x9a\\x28\\xee\\xfb\\xc1\\x39\\x85\\xdc\\xfd\\x18\\xf5\\xcf\\x2b\\x65\\x02\\x26\\xf1\\xe6\\xec\\x2e\\x62\\x34\\xc0\\xd3\\x1a\\x18\\x29\\x20\\x6e\\xca\\x93\\x92\\x75\\x8e\\x88\\x55\\x9d\\x3f\\x86\\x98\\xb6\\x48\\x33\\x66\\x70\\xb8\\x37\\x8f\\x82\\x9a\\xaa\\xc6\\xef\\xbb\\x32\\xb9\\xfe\\x8f\\x3c\\x88\\x35\\x10\\x88\\xd9\\xa0\\x54\\x4a\\x68\\x51\\x30\\x48\\x21\\x4d\\x3d\\x20\\x7a\\x11\\xa2\\xba\\x0e\\xa6\\x89\\x37\\x19\\x70\\xa3\\x71\\xb1\\x75\\x8b\\x96\\x1a\\xaa\\x40\\x19\\x07\\x03\\x75\\x9f\\x87\\x9d\\x48\\x36\\x29\\x32\\xbd\\x99\\x93\\x89\\xc2\\x50\\x00\\xdc\\x59\\xa1\\x53\\xfc\\x28\\x25\\x99\\x17\\x09\\xde\\xf8\\xc0\\xc4\\x81\\xda\\x08\\x40\\xe2\\x0d\\x1c\\x98\\x44\\x18\\xce\\x34\\x03\\x0d\\x01\\x97\\x54\\x8e\\xee\\xe0\\xfc\\x97\\xf4\\x12\\xa6\\x4a\\x06\\x03\\xe4\\x6c\\xce\\xa5\\x83\\x5c\\x90\\x14\\x74\\x1c\\xe1\\x59\\x08\\xfb\\x0d\\x04\\x7f\\xe6\\x34\\xe9\\x77\\x0e\\x3a\\x35\\x48\\x52\\xd1\\x6d\\x90\\xa8\\x74\\xe7\\x3c\\x94\\x50\\x56\\x45\\x05\\xf3\\x27\\xbd\\xbf\\x33\\x7b\\x14\\x95\\x88\\x4f\\x58\\xe5\\x04\\x94\\x49\\x42\\xa3\\x44\\xaf\\xe9\\xdb\\x08\\x42\\xab\\x22\\x0f\\x1a\\x56\\x37\\x61\\xd5\\x1f\\x98\\x4c\\x50\\xfb\\x19\\x82\\x41\\x8c\\xad\\xee\\x08\\xcb\\xbc\\x76\\x1a\\x58\\x52\\x00\\x82\\x17\\xc2\\xb2\\xba\\x5a\\x7e\\x2a\\x10\\x68\\x96\\x68\\x3d\\x28\\x1a\\x25\\x03\\x12\\x4a\\x89\\x40\\x9c\\x92\\xbb\\x65\\x5c\\xa0\\x22\\x13\\x3b\\xcc\\x99\\x28\\x98\\x04\\x94\\xc6\\x91\\xd2\\x2c\\xf2\\x23\\x95\\x9d\\x00\\x5a\\x2a\\x33\\xdd\\xf7\\x85\\x63\\x5e\\x9c\\xe9\\x6d\\x00\\x14\\x08\\x72\\x38\\x89\\x54\\x94\\xe1\\xcc\\xb9\\x30\\xab\\xcf\\x90\\xbd\\x6c\\x00\\x6a\\x5f\\x66\\xd4\\xe3\\x03\\xf3\\xfe\\x85\\x26\\x70\\x70\\xbd\\x54\\x9a\\x12\\x19\\x0c\\x47\\x2a\\xe9\\x18\\x70\\xc2\\x91\\x6e\\x4d\\x03\\xcf\\xeb\\x21\\x2b\\xf8\\xf0\\x0b\\x8c\\x99\\x78\\x45\\x4a\\xf7\\xb8\\xef\\xe5\\xe6\\xbb\\xa8\\x89\\x2d\\x92\\x2e\\x07\\x09\\x42\\x0e\\x92\\xf4\\x32\\x14\\xf1\\x14\\x1c\\x2e\\xe2\\x1c\\xa4\\xcd\\x72\\x25\\x0a\\xdb\\x40\\x03\\xb5\\xc0\\x71\\xbc\\x5d\\x70\\x37\\x1b\\x94\\xba\\x73\\x20\\x22\\x5d\\x9d\\x00\\xdb\\x9d\\x35\\x94\\xa2\\xf2\\xa6\\xcc\\x52\\x2f\\x36\\x35\\x3e\\x7f\\xa0\\xec\\x5e\\x1e\\xc9\\x2e\\xe0\\xbe\\x4c\\x35\\xdc\\x91\\xd8\\x94\\x24\\xcd\\x9c\\x05\\x63\\xe7\\xbb\\xe7\\x88\\xe7\\xa3\\xb2\\x62\\x1a\\x98\\xcc\\xae\\x12\\x82\\x41\\x47\\xeb\\x3e\\x1f\\x8b\\x48\\x58\\x2a\\x56\\xb8\\x46\\x8a\\x8a\\xab\\xdb\\x58\\x2d\\x12\\x6e\\xd7\\x34\\xda\\xed\\x9d\\x0a\\xd2\\xec\\x48\\xaa\\xbf\\x75\\xf3\\x54\\x62\\x87\\x84\\x8d\\x35\\x0c\\x27\\x25\\x26\\xd8\\x5a\\x6a\\x2f\\xe0\\x61\\x44\\x83\\x31\\x60\\x50\\x06\\xb2\\x94\\x1d\\x45\\x37\\x19\\x41\\xf5\\x0b\\x5c\\x91\\xba\\x21\\x26\\x40\\x01\\x58\\xbb\\x68\\x0b\\xe6\\x15\\x99\\x23\\x38\\x9c\\xdb\\x96\\xb7\\x72\\x33\\x0d\\x71\\x44\\xa5\\x0e\\x16\\x86\\xf2\\x6d\\x78\\xe6\\xac\\xc1\\x27\\xcd\\x02\\x42\\xff\\xe4\\x91\\x2d\\x49\\x2c\\x12\\x01\\x16\\xd1\\xca\\x15\\xdc\\x62\\x3f\\x14\\xbf\\x2e\\x93\\x96\\x17\\x54\\xc6\\x0d\\x2d\\x4a\\xb3\\x32\\xf4\\x32\\x3b\\x26\\xbe\\x56\\x0f\\xb0\\x61\\x99\\xed\\x98\\xc0\\x33\\x01\\x9c\\x29\\x0b\\xce\\x68\\xa4\\x77\\xc7\\x00\\xa6\\x50\\xc9\\xb2\\xf7\\xf8\\x2b\\x99\\x22\\x11\\xc4\\xa1\\x12\\xd9\\xc4\\x16\\xf8\\x45\\x39\\x19\\x48\\x24\\xe2\\x16\\xd9\\x22\\x8b\\x7e\\xa3\\x78\\x73\\xe4\\xdd\\xe5\\x5c\\x58\\x10\\x2f\\xe8\\xa7\\xe4\\x17\\xdb\\xd8\\xeb\\x76\\x27\\xf4\\x65\\x80\\xba\\xf3\\xb2\\x71\\x11\\xcf\\xfc\\x52\\x3b\\xfb\\xbf\\x40\\xbb\\xcb\\x91\\x33\\x3a\\xcb\\x26\\x27\\x3e\\x50\\xb1\\x31\\xa0\\x01\\x75\\xcc\\x8f\\x40\\x6a\\xcf\\xdf\\x4e\\x3a\\xd5\\xc9\\xb3\\x2e\\x89\\x4e\\xdc\\xa7\\x2c\\x4d\\xb2\\x44\\xa2\\xf6\\x7b\\x7f\\x41\\xc8\\x92\\x50\\x9f\\x87\\xa8\\x5e\\x68\\x49\\xf0\\xc0\\xff\\xba\\xe5\\x71\\x8e\\x4a\\x56\\x5a\\x1b\\x1a\\x22\\x64\\x4b\\x88\\xb2\\x3d\\x2b\\x87\\x98\\x54\\xb9\\xf3\\x0b\\xe9\\x0c\\x9d\\x6f\\xfc\\x97\\x19\\xb3\\x20\\x3b\\xce\\x9a\\x72\\x2c\\x89\\x77\\xd1\\xc6\\x35\\xd6\\x62\\xd3\\xeb\\x2c\\xe7\\x17\\x9d\\x45\\xdf\\x4a\\xd7\\xa9\\xa2\\xf4\\xbe\\x0a\\x4a\\x26\\x51\\xb6\\xb6\\xae\\x27\\xbd\\x10\\x66\\x9d\\x0b\\xc3\\x40\\x06\\xbb\\xc8\\x29\\xb9\\x61\\x7f\\x83\\x1d\\x2a\\x09\\x2f\\x68\\xb3\\x32\\x4a\\xb7\\x38\\xc0\\x6e\\x03\\x8c\\x59\\x3c\\xcb\\x38\\x62\\x79\\x8b\\xa4\\x95\\x5b\\xed\\x22\\x05\\x4b\\xdc\\xb3\\x1d\\x32\\x1f\\x4b\\x11\\xc9\\xc6\\x44\\xe7\\x2a\\xda\\x44\\x43\\x9a\\xaf\\xff\\xa9\\x3b\\xbf\\x8e\\xb4\\xf5\\x44\\x2b\\xd6\\xa3\\x1a\\xda\\x29\\x61\\x43\\x85\\x42\\x01\\xac\\x3f\\x03\\xd8\\x87\\x14\\x75\\x1b\\x2c\\x79\\xfd\\x25\\xaa\\x8c\\x79\\x74\\x8d\\x4b\\x99\\xbe\\xc3\\x6f\\x66\\x72\\x97\\x3c\\xf3\\xc2\\x61\\x77\\xf9\\x38\\xf5\\xd5\\x88\\xf4\\x2b\\xa0\\xd1\\x74\\x68\\xac\\xf7\\xa6\\xd6\\x9c\\x99\\xff\\xc9\\x8c\\x46\\xe4\\xa1\\xd4\\x4d\\xd1\\xcf\\x03\\x96\\x5f\\x2d\\x6f\\x15\\x4f\\x61\\x4f\\x0c\\x2d\\x12\\xdc\\x29\\xc8\\x14\\x2b\\x5a\\x82\\x21\\xa1\\x48\\xcb\\xcc\\x86\\xb0\\x54\\x1a\\xa6\\xa4\\x34\\xc8\\x1b\\x32\\xe9\\x73\\xb2\\x0e\\xe1\\x9b\\x6a\\xe9\\xcb\\xc8\\x84\\x94\\x4a\\xbb\\x4f\\x62\\xa6\\x13\\x08\\x81\\x68\\x20\\x39\\x3f\\x35\\x68\\x4d\\x75\\xd6\\x63\\xd8\\x35\\xd4\\x23\\x93\\xb0\\x48\\xbd\\xa4\\xb6\\x1d\\xc2\\x46\\x32\\x84\\x80\\x4a\\x52\\xa0\\xb6\\x08\\xbd\\x20\\xa7\\x4b\\x01\\x04\\xed\\x7c\\x72\\xb1\\x2a\\x9a\\xba\\xf4\\x84\\x17\\xc1\\x6c\\x44\\xd6\\xab\\x29\\x28\\xe3\\xa9\\xdf\\xdf\\x3b\\xca\\xa5\\xae\\x7f\\x5b\\x1a\\xfd\\x45\\xeb\\x8b\\xa1\\xf0\\x42\\x69\\x4e\\x9f\\x11\\x2b\\x36\\xdf\\x9a\\x4f\\xa2\\xea\\xc7\\x67\\x43\\x76\\x11\\x09\\x39\\x67\\xd6\\x0d\\xcc\\xf7\\xd3\\xf1\\xa8\\x93\\x4c\\x52\\x1a\\xf7\\x9c\\x25\\x62\\x59\\x59\\xe8\\x46\\x28\\x27\\x36\\x98\\xa1\\x1b\\xf1\\x51\\xab\\x85\\x83\\x65\\xfc\\x03\\xf5\\xf2\\x70\\x50\\xa6\\xaf\\x46\\xe0\\xf4\\x95\\x41\\xaa\\x17\\x24\\x61\\x5b\\xe9\\x31\\x13\\x05\\x9b\\x70\\x9b\\x38\\xc3\\x62\\x05\\x0e\\x08\\x8e\\xc3\\xe8\\x63\\x80\\x1d\\x73\\x06\\x19\\x7b\\x93\\x5a\\xfa\\x19\\x22\\xc3\\xb2\\x8d\\xdc\\xc3\\xb2\\x25\\x4f\\x20\\x59\\x91\\xa1\\x31\\x7e\\x16\\xf6\\x11\\xc1\\x10\\x9a\\x48\\x95\\xea\\x4d\\x06\\x1c\\x03\\x32\\x1a\\xd6\\x1a\\x8e\\xf9\\x20\\x22\\x63\\x45\\xea\\x24\\x90\\xaf\\x3b\\x93\\x63\\xeb\\xcc\\xcd\\x2a\\x75\\x03\\x8d\\x08\\xa8\\x4b\\x11\\xbb\\x44\\x49\\x7d\\x3f\\x78\\x0d\\x45\\x54\\xb7\\xc2\\x70\\x05\\xc2\\xac\\x9a\\x75\\xaf\\xde\\x4d\\x85\\xdc\\xa0\\x69\\xba\\x21\\x44\\xea\\xc6\\x17\\x21\\x86\\x92\\xfd\\xb5\\x34\\x5b\\xf4\\xe0\\x7b\\xab\\x85\\x2a\\xab\\x13\\x51\\x13\\x41\\xda\\x39\\xf5\\x7e\\x24\\x49\\x9d\\x8a\\x80\\x7c\\x08\\x79\\x88\\x11\\x1f\\x51\\x1e\\xf7\\xbd\\xa3\\x73\\x6a\\x37\\x88\\x79\\x87\\x2f\\xde\\x07\\x57\\x02\\x5f\\xb0\\xc7\\x08\\x19\\x7b\\x20\\x22\\x41\\x08\\x87\\x92\\xf9\\xd9\\xc8\\x3d\\x07\\x0e\\x85\\x76\\x9b\\x37\\x51\\x6c\\x0d\\x39\\xb8\\xc0\\x90\\x47\\x38\\x77\\x09\\x67\\xed\\x64\\xf1\\x48\\x62\\xb6\\x35\\x32\\x60\\x4d\\x2f\\x5a\\x78\\x3e\\x11\\x40\\x5a\\xca\\x8e\\x8f\\x34\\x91\\x98\\x32\\xc3\\xab\\xc0\\x60\\xae\\xdd\\x21\\x1a\\xab\\xf2\\x6e\\x9d\\xf9\\x2c\\x51\\x22\\x43\\x1e\\x87\\x6e\\xd4\\xf7\\xe4\\x8a\\x8e\\x49\\x31\\xf5\\xec\\x66\\xc6\\x23\\xc7\\x98\\x08\\xef\\x17\\xdd\\x1a\\x95\\xb2\\x4c\\x2e\\x57\\x04\\x6e\\x61\\xc8\\x36\\x7b\\x35\\x52\\xa0\\x51\\x1a\\xa5\\xd7\\xd8\\x10\\xea\\x11\\x47\\x08\\xbf\\x69\\x30\\x68\\xd5\\x02\\xda\\xdb\\x4f\\x6c\\xb5\\xdb\\xdb\\xe5\\xc9\\x92\\x23\\xcc\\x7f\\xa0\\x24\\x26\\x12\\x72\\xfa\\x7b\\x8d\\x65\\x18\\xed\\xbf\\xb6\\x9c\\xb1\\x1f\\xa1\\x4d\\xae\\x80\\x05\\x29\\x5c\\x59\\x38\\xb5\\x17\\x82\\xf0\\x34\\xc2\\x06\\x18\\x84\\xc5\\xe3\\x04\\x9b\\x21\\xe8\\x7e\\x12\\x6e\\x6c\\x40\\x01\\x06\\x79\\x05\\x6d\\x66\\x55\\xd1\\x00\\x1c\\xdb\\x62\\x03\\xb3\\x2e\\xc3\\x08\\x2f\\x8b\\x0d\\x24\\xb1\\xf0\\x6c\\x76\\x54\\x8f\\x10\\x3e\\xc3\\xc4\\x2b\\xba\\x3a\\x4d\\x88\\x64\\x81\\xd6\\x85\\x11\\x0e\\x5a\\x16\\x08\\xf3\\xfd\\x47\\x91\\x14\\x4d\\x39\\x53\\x4d\\x49\\x81\\x21\\x48\\xc7\\x08\\x4b\\xf9\\xd9\\xa2\\x65\\x8c\\x3a\\x1f\\xe0\\xc0\\x97\\xe6\\xda\\x20\\x1c\\xc8\\x20\\x46\\xa1\\xd1\\xd0\\x93\\x27\\x8d\\x26\\x8e\\x81\\x5b\\xb0\\x95\\x50\\x9a\\xb3\\x12\\x40\\x31\\x89\\xea\\xc1\\x92\\x5e\\x05\\xf6\\x76\\x6c\\x26\\x15\\xa2\\x5b\\x46\\x15\\x59\\xa3\\x17\\xbe\\x63\\xed\\xe0\\xa4\\x72\\x38\\xd3\\x52\\x0b\\x9d\\x8a\\x60\\x14\\x2c\\x21\\x6c\\x59\\x03\\x08\\x1f\\x55\\x0d\\x6f\\x1e\\xf5\\xe2\\x20\\x05\\xb5\\x5e\\x46\\x80\\x00\\x2c\\x82\\x0d\\xae\\x65\\x7b\\x98\\x5a\\x4a\\x02\\x4f\\x4f\\x57\\xd0\\x83\\x74\\xde\\x76\\x94\\x62\\x26\\x72\\xce\\x17\\xbc\\xbb\\x38\\x29\\xc8\\x5e\\xd9\\xa4\\x6d\\x95\\x48\\x48\\xfb\\xdb\\xd6\\xb2\\x50\\x69\\x66\\x34\\x3d\\xda\\xf8\\x45\\x37\\xe0\\x22\\x2c\\x53\\xd1\\x10\\xe4\\xcf\\xde\\x4a\\x62\\xee\\xc5\\x12\\x14\\x13\\xa9\\x52\\x7e\\x1b\\x37\\xde\\x91\\x3b\\x97\\x8a\\xbb\\x57\\xf1\\x07\\x6f\\x19\\xa8\\x0d\\x40\\xd1\\x04\\x67\\x1d\\x39\\x37\\xcd\\x09\\xcb\\xce\\xd2\\x01\\xe4\\xa2\\x11\\x65\\xaf\\x55\\xc9\\x3d\\xe8\\xc9\\x0d\\x5c\\x89\\x56\\xa7\\x3a\\x11\\x1b\\xd4\\x41\\xbe\\x82\\x20\\x8f\\x57\\x96\\x44\\x68\\xcf\\x2d\\xba\\x9c\\x9a\\xc0\\xb5\\xe4\\x30\\xa8\\xa6\\x23\\x55\\x4d\\x1d\\xc9\\x89\\x75\\xf0\\x88\\x73\\x07\\xea\\x66\\x99\\xac\\x06\\x0c\\x79\\xf0\\xae\\x66\\xf6\\x5c\\x9c\\x36\\xf0\\xb4\\xc4\\x43\\x12\\x31\\x2d\\xb3\\x41\\x22\\x08\\x9c\\x08\\xe9\\x11\\xd8\\x79\\x3a\\x7d\\x44\\x6a\\x00\\x92\\xe5\\xd9\\x96\\xb2\\x15\\x1e\\x15\\x30\\x4b\\x9b\\xef\\x50\\xc8\\xd4\\xe1\\x44\\x56\\xe0\\x0d\\xed\\x00\\xc7\\x7e\\xd3\\x80\\x9b\\x22\\x7a\\xbf\\x29\\xee\\x9b\\x82\\xae\\x4c\\x99\\x22\\xad\\x5d\\x3c\\xc5\\x61\\xff\\xe3\\xa4\\x22\\xd8\\x8c\\x22\\xaf\\x76\\x0e\\xa9\\x87\\x33\\xa4\\x72\\x62\\x10\\xfd\\x26\\x13\\x05\\x65\\xfc\\x30\\xc9\\x03\\x61\\x46\\xb1\\x43\\x62\\xeb\\x6a\\x3b\\xcd\\x88\\x97\\xdf\\xfa\\x51\\x44\\xc8\\xa0\\xd7\\x12\\xea\\xc4\\x35\\x44\\x3c\\x88\\xc2\\x63\\xcc\\x69\\x98\\x74\\xbe\\x32\\x90\\xf4\\x20\\x43\\x3d\\xd0\\x39\\x2e\\xb3\\x30\\x0c\\x99\\x94\\x27\\x80\\x15\\x08\\xb7\\x47\\xf9\\xc5\\x50\\x2c\\x8d\\x82\\x27\\x40\\x4c\\xd6\\x9b\\xf8\\xc2\\xfa\\x1a\\x0b\\xab\\x08\\x41\\xc1\\x01\\x39\\x21\\x4a\\xf7\\xed\\x65\\x2d\\x80\\x48\\x88\\x4b\\x68\\x9a\\xf0\\x13\\xb9\\x87\\x90\\x68\\x08\\xbf\\x0a\\x96\\xe0\\x8b\\xf4\\x75\\x04\\xa0\\x6e\\xbf\\x14\\x92\\x02\\xb3\\xec\\x40\\x34\\xe4\\x2b\\x99\\x4b\\x18\\xee\\x05\\x29\\xe9\\x1b\\x35\\x0c\\x8f\\x88\\x48\\xb2\\x6b\\x8b\\x80\\xb3\\x89\\x5c\\x9c\\xcf\\x75\\x00\\x6e\\x83\\x83\\x57\\x34\\xa0\\x1e\\x59\\x6e\\x40\\x3c\\xf6\\x1e\\x2b\\xf4\\xf2\\xc1\\x8a\\xc2\\xee\\xde\\xad\\x03\\x27\\x48\\x52\\xa4\\xf0\\xe6\\xdd\\xdf\\xf4\\x16\\x6b\\xe4\\x16\\x68\\x24\\x66\\x5c\\x23\\x2c\\xc4\\xdc\\x2d\\xb6\\x22\\x64\\x36\\x80\\x47\\x8f\\x68\\x16\\xbe\\x55\\x44\\x90\\xa5\\x1b\\xbd\\xa4\\x38\\x19\\x75\\xb0\\x6b\\x33\\x25\\xdc\\x3b\\x8f\\xc1\\x15\\xbf\\xf7\\xa4\\xd5\\xa0\\x88\\x0e\\x85\\x93\\x05\\x71\\x2b\\x80\\x5b\\xbf\\xd5\\x72\\x5a\\x2b\\x19\\x69\\x1d\\x64\\x9f\\x9b\\x3c\\xf8\\x03\\x17\\xb3\\x01\\x04\\xe0\\xf9\\x68\\x98\\xa6\\x69\\xec\\x06\\x02\\x16\\x90\\xcf\\x2e\\xa3\\x18\\x91\\xc4\\x15\\xc0\\x24\\x85\\x04\\xef\\x44\\xca\\x6c\\x6b\\xbe\\x22\\xcb\\x2e\\x8a\\xba\\xc3\\x45\\x6e\\xc1\\x7e\\xad\\x83\\xf7\\xa5\\x9e\\xe0\\x26\\x1b\\x06\\x17\\x2a\\x20\\x52\\xc4\\xd0\\xcf\\x41\\x15\\xbe\\x0c\\xbd\\xe0\\xf5\\x03\\xf9\\xb2\\xc9\\x0a\\x4a\\x4d\\x7b\\x0e\\x5c\\x4f\\xe7\\x53\\x94\\x18\\xd0\\x81\\x9d\\x83\\x91\\x0d\\x01\\x24\\x0d\\x22\\xe3\\x79\\x18\\x03\\x74\\x92\\xb3\\xbc\\x90\\x19\\x9d\\x0d\\x17\\xf0\\x5d\\x4b\\x0c\\x61\\xc1\\xa9\\x33\\xeb\\x32\\x4d\\xef\\x50\\x44\\x48\\x79\\x0c\\xe1\\x9b\\xfe\\x1b\\x68\\x02\\x80\\x12\\x90\\x34\\x5b\\xc2\\x3a\\xce\\x45\\xa4\\x1d\\x3a\\xa0\\x5d\\xc3\\x85\\xd4\\xae\\xfc\\x66\\xda\\x3a\\x2b\\x52\\xa2\\x86\\x80\\xc3\\x70\\xfe\\xc1\\x05\\x10\\xc3\\xc8\\xe2\\x1c\\x21\\x91\\x91\\x2a\\xd8\\x39\\x3b\\x09\\xe4\\x96\\xf4\\x47\\x38\\x0b\\x20\\x39\\x70\\xd4\\x47\\xdf\\x50\\x63\\x08\\x2f\\x65\\xd4\\xa2\\x97\\x7d\\xaf\\x07\\x43\\x65\\x79\\x03\\xbd\\x08\\xba\\xad\\xee\\xcf\\xdc\\x07\\x38\\xb3\\xf9\\x98\\x4c\\x61\\x9b\\x8a\\xd4\\x5a\\xb8\\xd0\\xe6\\x8c\\xb4\\xde\\x0b\\x12\\x44\\x27\\x40\\xc9\\xd1\\x51\\x1e\\xdd\\xe7\\x34\\x5a\\xef\\xc2\\xd2\\x21\\x1b\\x18\\x45\\x23\\x7b\\x17\\x2b\\x80\\xe9\\x01\\x25\\x71\\x69\\x1d\\x0d\\x3c\\x07\\x05\\x56\\x35\\x2f\\x55\\xcb\\xf5\\xcc\\x09\\xd3\\xd5\\x62\\x10\\x83\\xdd\\x48\\xe2\\x31\\x6d\\xf9\\x93\\xb4\\x70\\x24\\x04\\xc6\\xb5\\xd9\\x81\\x8f\\x62\\xf3\\x40\\x57\\xcf\\xfc\\x1f\\x77\\x23\\x0a\\xf1\\x00\\x2d\\x08\\xe3\\x77\\xc7\\x54\\xc2\\x6f\\x9a\\x2e\\x96\\xeb\\x9b\\x06\\xa1\\x06\\xeb\\xf3\\x2c\\xd2\\x1d\\x0c\\x69\\x33\\xc2\\xf4\\x5a\\x2c\\xaf\\x31\\x5c\\xc1\\xeb\\x6c\\x6c\\xe3\\x7a\\xd4\\x60\\xcd\\x6a\\x24\\x06\\xb0\\x24\\x98\\x35\\x08\\xcf\\x1a\\x2d\\x24\\x8a\\xa4\\x89\\x81\\x5c\\x9c\\xb5\\x54\\x60\\x88\\x42\\x98\\x14\\xcb\\x30\\x43\\x8f\\x22\\x17\\xcc\\x57\\xad\\x99\\xb8\\xea\\x75\\x97\\x45\\x8b\\xaf\\xae\\xc8\\x4c\\xa8\\xa6\\xee\\xa5\\x68\\x27\\x08\\x2a\\x41\\x73\\x06\\x8a\\x6d\\xda\\xda\\x11\\xa2\\xa9\\xa7\\x0f\\x6b\\x6c\\x12\\x8a\\x98\\xb8\\xd6\\x1f\\xed\\xc4\\x95\\x12\\xb6\\xb3\\xda\\x5e\\x7a\\xe6\\x18\\xdb\\xae\\xeb\\xac\\x01\\xac\\x39\\x9f\\x08\\x60\\x5a\\x53\\x04\\x30\\xe6\\x66\\xc8\\x2c\\x7c\\x8b\\x05\\xc0\\x67\\xd9\\x21\\x3f\\x62\\xff\\xd5\\x88\\x16\\xc6\\xba\\x3b\\x1e\\x0e\\x82\\x6b\\xec\\x01\\x9b\\xd9\\x20\\xa6\\x27\\x56\\x2f\\x56\\x25\\x15\\x03\\x28\\xe6\\xec\\x40\\xd2\\xd2\\x9a\\x0a\\x7e\\xb1\\xaa\\xd3\\x5c\\xa3\\x75\\x02\\x9c\\x92\\x73\\x0a\\xdd\\x4d\\x57\\x1e\\x96\\x88\\x1d\\x6b\\xd2\\x01\\xaa\\x24\\x19\\xe2\\xa8\\x56\\x06\\x2d\\xe5\\x3b\\xef\\x56\\x37\\xec\\x3b\\x7d\\x85\\x10\\xa7\\x87\\x16\\x4f\\xc0\\x23\\x72\\xc7\\x83\\x9f\\xc9\\xc2\\xba\\x55\\xf1\\x0a\\xb3\\x26\\xbe\\xfc\\x27\\xc7\\x76\\x32\\x35\\xcd\\xed\\x64\\x7c\\xb3\\x8c\\x9c\\x73\\xb7\\xf8\\x1a\\x6e\\x13\\xa0\\x15\\x3d\\x46\\xca\\x9f\\x9c\\x2b\\x4e\\xfb\\x4d\\x09\\x3c\\x24\\x0e\\xbb\\xf6\\x30\\x19\\xa1\\x27\\x30\\xdf\\xa4\\x3e\\xc4\\x33\\xc3\\xd9\\x8c\\x4b\\x98\\xc1\\x83\\x30\\x7f\\x93\\x70\\xfc\\x1f\\xa2\\x86\\x29\\x25\\x62\\x76\\xe0\\xb5\\x82\\x68\\x54\\x0e\\x54\\xca\\x30\\x09\\xd4\\x29\\x8f\\xbc\\xaa\\x16\\xde\\x1c\\x8b\\x78\\x49\\x10\\xa6\\xcc\\x0c\\x4c\\x33\\x0d\\xc6\\x80\\xa5\\x94\\x00\\x7c\\xc7\\x42\\x7a\\xeb\\x54\\xf0\\x11\\x4a\\xc0\\x3f\\x5a\\xf9\\x99\\xee\\xf8\\x3e\\x24\\xf0\\x5c\\x9a\\x93\\x60\\x10\\x0c\\xc5\\x3c\\x58\\x71\\xf9\\x68\\x57\\x09\\x25\\xa1\\x5f\\x29\\x30\\xeb\\x2c\\x41\\x4c\\xa5\\x96\\x9a\\x8f\\x32\\x90\\x0f\\x9b\\x5e\\xd6\\x32\\xf7\\x09\\x77\\x4c\\x79\\xfe\\x25\\x1c\\x98\\xc6\\x3a\\x66\\xab\\x03\\x88\\x78\\x97\\x26\\x0a\\x13\\x11\\x07\\xc5\\xb0\\x00\\xb3\\xca\\xe6\\x1a\\x07\\x54\\x7c\\x58\\xba\\x54\\x2c\\x53\\xdb\\x60\\xf3\\x5d\\xb4\\xb0\\x70\\x6f\\xcc\\x03\\xec\\x51\\x48\\x37\\x48\\xb5\\x1c\\xe9\\x1b\\xbc\\xc2\\x02\\xfb\\x0d\\x72\\xd3\\x5a\\x45\\xa6\\x38\\x91\\x7e\\x01\\x75\\x90\\x27\\x22\\xeb\\x0d\\xb7\\xe8\\xa6\\x03\\x08\\xb4\\xe8\\xcc\\x35\\xf8\\x62\\x35\\x1a\\xe1\\x12\\xe2\\x4d\\xa3\\x27\\xa6\\x32\\xe6\\x0e\\x55\\x81\\xfe\\xb4\\x4c\\x88\\x08\\x0e\\xf1\\xa0\\x9b\\x4d\\x1f\\x46\\x81\\x75\\x78\\x9c\\xe9\\xb8\\xde\\xc7\\x69\\xa3\\x71\\xa1\\xb2\\xcd\\x80\\x2f\\x2a\\x85\\x65\\x06\\x6c\\x13\\x54\\xfb\\x9c\\x9a\\xcd\\x80\\xd3\\x33\\xb0\\x7e\\x31\\xc5\\xe8\\xca\\xbb\\x18\\x6c\\x51\\x2d\\x72\\x31\\x97\\x95\\x1c\\x55\\x84\\xd1\\x0b\\x51\\xbb\\xe3\\x79\\x56\\x52\\xe9\\xab\\xc3\\x56\\x88\\x4b\\x60\\x39\\x7a\\x04\\x31\\x46\\x2c\\xae\\x52\\xc7\\xe8\\xe8\\x07\\x80\\x34\\xc3\\x45\\xd8\\x7e\\x0a\\x62\\x10\\xa1\\x27\\x57\\x31\\x49\\x59\\x6d\\x4f\\x26\\x7a\\xa7\\x05\\x89\\x40\\xef\\xb4\\x10\\x78\\x97\\xb2\\x80\\xa5\\x3f\\xee\\xf3\\xc9\\x58\\x71\\xd3\\xb7\\x88\\xa7\\x8c\\x3f\\xd9\\x99\\x74\\x1a\\x32\\xc6\\x98\\xbf\\xc6\\xeb\\xbb\\x3b\\x25\\x41\\x8d\\x5e\\x7c\\x39\\x9e\\x95\\x68\\xbe\\xe9\\x57\\x56\\xd1\\x76\\x04\\xeb\\x22\\xbe\\x36\\xd4\\xf1\\xe7\\xe4\\x5f\\x83\\x8a\\xc6\\x77\\xbe\\x99\\x55\\x03\\x78\\x90\\x1d\\x86\\x5f\\xbb\\xec\\x01\\x5f\\x85\\x80\\x34\\xea\\xe5\\x24\\xe8\\x64\\xe8\\x25\\x20\\xb1\\xe4\\x81\\x18\\xdc\\x3f\\x11\\x2b\\x4e\\x43\\xb2\\x8e\\x79\\x67\\xba\\xb4\\x40\\x1e\\xa1\\x66\\x6f\\xcd\\x81\\x9e\\xba\\x75\\xa5\\x2e\\x57\\xf9\\x80\\x5d\\x05\\xda\\xb8\\x4c\\x20\\x84\\x7c\\xa0\\x91\\x05\\xca\\x70\\x19\\xd2\\xed\\xb9\\x89\\xd8\\xe6\\x96\\xe1\\x1b\\xb0\\x30\\x0c\\x13\\x19\\x84\\xb8\\xc1\\xa8\\xa8\\x02\\x9b\\x1b\\x72\\x00\\x17\\x09\\x09\\x80\\x2e\\x8b\\xed\\xe7\\xca\\x51\\xf7\\x9f\\xa7\\x3e\\xbc\\x68\\x4c\\x46\\x27\\x32\\xe6\\x42\\x85\\x19\\x80\\x8d\\xc6\\xa5\\x9a\\x53\\xe3\\xcd\\xf8\\xee\\x3d\\x1a\\x79\\xb5\\x71\\x62\\x13\\x9d\\x0a\\x1f\\xd7\\x67\\x8a\\x25\\xd7\\x14\\x15\\x92\\xc2\\x2e\\x34\\x9d\\x2b\\x87\\xda\\xa9\\x4e\\x98\\x9a\\x71\\x18\\xc0\\x44\\x4c\\x3f\\xcf\\x00\\x8c\\xa8\\x64\\xe2\\x18\\x1e\\x3e\\xd3\\x3c\\x67\\x30\\x3a\\xc4\\x3a\\x52\\x46\\x27\\xe5\\x3c\\xb2\\xcb\\x74\\xe2\\x3f\\xe4\\x82\\x99\\x36\\x2c\\x11\\x33\\xe9\\x58\\x64\\xef\\xd7\\x08\\x17\\x8e\\x79\\x69\\xea\\xfa\\x8d\\x94\\x4f\\x80\\xc9\\x1c\\x90\\x1d\\x8a\\x13\\x32\\x14\\xf9\\xd6\\x0a\\xeb\\x82\\x61\\x8b\\x08\\x32\\x6a\\x6e\\xd5\\x03\\xec\\x3a\\x44\\xfb\\xb2\\x50\\x0e\\x91\\x10\\x3a\\x3b\\xf7\\x1c\\x1f\\xb4\\x98\\x46\\xa7\\x35\\xbc\\x52\\xaa\\xad\\xd5\\x52\\x80\\x35\\xd1\\x60\\x4e\\x49\\x04\\xb7\\x7d\\x07\\xf6\\x5e\\x28\\x5a\\xf7\\x6b\\xa0\\x4c\\x6a\\x43\\x75\\x6d\\xc5\\x6d\\x72\\x0d\\x15\\xfa\\x0e\\xd6\\x86\\x40\\x32\\x3f\\x29\\x02\\x5b\\x21\\xbd\\x43\\x80\\xbb\\x4d\\x02\\x15\\x73\\x77\\x7a\\xb2\\xb6\\x7f\\x81\\x05\\xda\\x1d\\xd6\\x41\\xba\\xdf\\xb3\\x40\\x80\\x18\\xb2\\xb9\\x05\\x12\\xe7\\xeb\\x7e\\xf3\\x5e\\xbf\\x2e\\x81\\x33\\x87\\x4a\\xc3\\x50\\x32\\x38\\x07\\x65\\x33\\x39\\x89\\x76\\x3a\\x9d\\xfb\\xd2\\x95\\xfb\\x36\\xc5\\xcd\\xbf\\x06\\xa7\\x02\\xfd\\x1e\\x41\\x93\\x53\\x70\\x2a\\xc3\\x49\\xd2\\x0d\\x90\\xe3\\xb2\\x75\\xfb\\x63\\x67\\x11\\x49\\x79\\x17\\x32\\xd9\\x5a\\x89\\x46\\xd8\\x4a\\x0c\\xc0\\x2b\\x41\\x96\\x68\\x5c\\x6c\\xa9\\x80\\xb0\\xf3\\xef\\xe9\\xb9\\x7a\\x7f\\x75\\x78\\xf0\\x67\\x6c\\x70\\x75\\xb8\\x96\\xe1\\x6f\\xa0\\x60\\xd6\\x83\\x2c\\x91\\xc0\\xb3\\x53\\x89\\xe3\\xe5\\x03\\xc4\\xd8\\xdb\\x93\\x25\\xfc\\x83\\x49\\xac\\xd2\\xcc\\x39\\x3f\\xd7\\x74\\x11\\xb3\\xc1\\x56\\x1a\\x36\\xdb\\xff\\x5b\\x16\\x62\\x21\\x17\\x2a\\x6f\\xc6\\x48\\x03\\x82\\xb2\\x18\\x56\\xf0\\x4d\\xc4\\x3c\\x9b\\x4a\\x01\\x85\\xbc\\xc2\\x2e\\xe8\\xd4\\x68\\xcf\\xdf\\x1f\\x7e\\x67\\xb6\\xa9\\xae\\xbb\\x1e\\x54\\x90\\x05\\x49\\xee\\x19\\x8d\\x00\\x0b\\x66\\xd7\\x21\\x4a\\xb4\\x8d\\x53\\x2a\\xa2\\x6c\\x7c\\x80\\xb3\\xf1\\x8c\\x41\\x52\\x2d\\x68\\x41\\x43\\x42\\x80\\xaf\\xb3\\x9b\\xbe\\x69\\x21\\xce\\x67\\x2f\\x8f\\x83\\xeb\\xfa\\x2c\\x89\\x60\\x34\\x0f\\xf4\\xa7\\x6a\\x24\\x72\\x80\\xd3\\xac\\x43\\xb5\\x56\\x1c\\x16\\x23\\x80\\x82\\x7f\\x46\\xac\\x22\\x00\\x65\\x3c\\x3d\\x05\\x8d\\xd8\\x07\\xfb\\x0f\\x97\\x03\\x2c\\x35\\x80\\xd7\\x19\\xff\\x36\\x3f\\x51\\x34\\x74\\x29\\x1b\\x41\\x8b\\x3a\\x34\\x50\\x9d\\x3b\\x06\\x35\\x98\\x88\\xc8\\x85\\x18\\xbb\\xbb\\x42\\x7f\\x4c\\xb9\\x39\\x2e\\xba\\x87\\x79\\x6d\\x88\\x1e\\x1b\\x8c\\x30\\x7f\\xc1\\x07\\x00\\x6a\\xc0\\x33\\xa4\\x0f\\x11\\x6d\\x3a\\xa7\\x0b\\xe4\\x3f\\xd5\\x7a\\x8e\\x10\\x49\\x33\\xd8\\xd6\\x31\\x8e\\x28\\x2e\\x67\\x90\\x6a\\x18\\x52\\x0d\\xd3\\x50\\x04\\x30\\xfc\\x6e\\xfe\\x2f\\x48\\xb7\\x83\\xcb\\x33\\x35\\x5e\\xe3\\x84\\x29\\x46\\xd3\\x6d\\x61\\xe5\\x1a\\x2f\\x01\\xcd\\x27\\x58\\x74\\x75\\x0d\\xeb\\xbf\\xe1\\x20\\x47\\xf4\\xe4\\x24\\x32\\xe0\\x58\\x4d\\xcd\\x63\\x4a\\x19\\x27\\xbc\\xec\\xdf\\x55\\x76\\x66\\x90\\xed\\x4b\\x96\\x10\\x9e\\x9c\\xac\\xee\\xe3\\x22\\x24\\x5d\\xc0\\x16\\xbb\\x8e\\xc9\\x0c\\xd5\\xfc\\x50\\x4d\\x46\\x44\\xf5\\xcc\\x2f\\x60\\x22\\x45\\xfc\\xa6\\x0c\\xbc\\xe8\\x7c\\xad\\x52\\xf9\\x82\\x8c\\xb0\\x51\\x5e\\x49\\x75\\xea\\x2b\\x57\\x2a\\x61\\x9e\\x94\\x01\\xe2\\x83\\xa2\\x2a\\x0e\\x10\\x56\\x38\\x08\\x52\\x31\\x31\\x64\\x12\\x5c\\xd7\\xc6\\xcb\\xe3\\xff\\xe6\\xff\\x82\\x2d\\xca\\xab\\x7a\\x42\\x9c\\x13\\x58\\x8e\\x00\\xc5\\x2a\\x69\\x73\\x48\\x1b\\x0e\\x39\\xa5\\x5b\\xf6\\x00\\xd2\\x44\\xef\\x5e\\x44\\x63\\xfc\\x8e\\x80\\x7c\\xfe\\x9d\\x45\\xbe\\x3d\\x83\\x43\\x98\\xb7\\xce\\x35\\x54\\x19\\x34\\xdc\\xdd\\x6b\\x0d\\xd4\\x15\\x50\\x8d\\xef\\x69\\x22\\xa3\\xe6\\x33\\xd5\\x18\\xf2\\x61\\x50\\x90\\x72\\x01\\x51\\x38\\xe4\\x45\\xa1\\x9b\\x2b\\x79\\x23\\x4c\\xa2\\xc1\\x68\\x1c\\x5f\\x30\\xd5\\x0a\\x03\\x23\\x20\\xf4\\x88\\xff\\x01\\xfc\\x29\\x42\\x85\\xd1\\x16\\xc6\\x12\\xeb\\x3b\\x1c\\xe5\\x8d\\x24\\xcb\\x82\\x92\\x05\\xd4\\x12\\xfd\\x04\\xd5\\x08\\xe2\\x44\\x9f\\xe3\\xc6\\xfe\\x8c\\x96\\xe2\\x09\\xc6\\xa0\\x63\\x47\\x00\\xa9\\xf5\\xf1\\x56\\xd5\\x8e\\xfc\\x7c\\x64\\x58\\x8f\\x66\\x10\\xc9\\xc0\\x0a\\x14\\x27\\x00\\xf3\\x7f\\xb1\\x59\\x60\\xb8\\x40\\x59\\xa6\\xfa\\x86\\x32\\x5f\\x74\\xbf\\xab\\x34\\x9f\\x03\\x8e\\xa0\\x96\\x69\\x16\\x59\\xc7\\x31\\x81\\x19\\xf1\\x70\\xbe\\x90\\x15\\x28\\xc4\\x5b\\x7c\\x03\\xb1\\x70\\xfa\\x49\\x81\\xbb\\xf2\\xa0\\xa0\\x99\\x01\\x14\\x64\\x53\\xe1\\x43\\x40\\x93\\xd9\\x98\\x45\\xdd\\x14\\xb5\\xa9\\x4b\\xf3\\xb4\\x6b\\xd8\\x01\\xc8\\x4e\\x7a\\x02\\x0a\\xbe\\x65\\x81\\x67\\xf9\\x6b\\x5a\\x6d\\x6a\\xe4\\x80\\x84\\x31\\x24\\x1e\\x1a\\xcc\\x75\\xf5\\x50\\x45\\x78\\xeb\\x68\\x2c\\x2d\\x37\\x62\\x46\\x96\\xaf\\x16\\x2d\\x6b\\x2c\\x34\\xf8\\xad\\x83\\x2d\\x18\\x58\\x2b\\x3e\\x3b\\x81\\x6e\\xbd\\xcb\\x8c\\x56\\xef\\x74\\x76\\xcc\\x0d\\x61\\x60\\xf3\\x13\\xd8\\xc1\\x10\\x89\\x15\\xa1\\x92\\xb7\\xc3\\x09\\xd0\\x6f\\x8d\\xa6\\x63\\xd5\\x03\\x2a\\xed\\x58\\x3e\\x39\\xf4\\xd7\\xd1\\x95\\x4c\\x8f\\x9b\\x10\\x6e\\x41\\x15\\x10\\x3b\\x48\\xc0\\xb4\\x6d\\xcd\\x60\\x39\\x42\\x63\\x9d\\xc6\\x5e\\x0d\\xe2\\xdd\\x74\\x79\\x9e\\x44\\x72\\x4f\\x39\\x38\\x02\\x80\\xbc\\x16\\x8e\\x4a\\x62\\x40\\x3e\\x23\\x0f\\xce\\x26\\x31\\x31\\x69\\x59\\x44\\xb9\\x76\\x99\\x52\\x06\\x71\\xc8\\x11\\x40\\x03\\x02\\x26\\x57\\x4a\\xe2\\xc1\\xa3\\x29\\x16\\x0f\\x23\\x28\\xd2\\xe0\\x3f\\xd4\\xdf\\x72\\x9c\\x92\\xaf\\x58\\xc1\\x8c\\xc4\\x9f\\x62\\xf4\\x97\\x94\\xc7\\x42\\x3e\\x4a\\x49\\x68\\x46\\x81\\xd8\\xd3\\xb3\\x27\\x01\\x1d\\xa7\\x70\\x56\\xb9\\x04\\x8c\\x04\\xc5\\x8a\\x4e\\x78\\xea\\x64\\xf1\\x91\\x0e\\x6c\\x06\\xa1\\xfe\\x14\\x20\\x27\\x22\\x00\\xa0\\x13\\xa5\\x02\\x21\\x87\\xfc\\x80\\x4b\\xa2\\x31\\xb6\\x90\\x09\\x1a\\xdb\\x36\\x71\\x36\\xb2\\xe3\\x30\\xfb\\x47\\x61\\x61\\x5c\\x9e\\x87\\x30\\x40\\x3e\\x9c\\x99\\xb5\\xd2\\x02\\x88\\x86\\x95\\xa1\\x6a\\x26\\xa4\\xbd\\x23\\xaa\\xb4\\xf2\\x1b\\x0b\\x17\\x56\\x89\\x3a\\x61\\xa8\\xb1\\x1c\\x6f\\x25\\xc4\\x23\\x3f\\x42\\xee\\xfd\\x96\\x07\\x0e\\x56\\x91\\x85\\x28\\x39\\x8b\\xed\\xb6\\xe6\\x4d\\x42\\xb1\\x5b\\x61\\x73\\x63\\xa0\\xfc\\xc8\\xcc\\xd5\\x4c\\xef\\xa2\\x64\\xdc\\x41\\xc0\\xc2\\xea\\x38\\x0e\\x66\\x5a\\x92\\x08\\x3f\\xbe\\x26\\x03\\x53\\x05\\x4e\\x5e\\xc2\\xf3\\x82\\xc4\\xd2\\x94\\x4f\\xcd\\xf2\\x63\\x99\\x26\\x4d\\x33\\xc2\\x8e\\x26\\x1d\\xab\\x27\\xd4\\xa0\\x29\\x11\\x2c\\x90\\x63\\x12\\x12\\x54\\x66\\x3b\\xc3\\x14\\x2b\\x65\\x7e\\xd1\\xb7\\xd7\\x42\\xc1\\x80\\x87\\x78\\x96\\xd8\\xa4\\x56\\x05\\x0a\\x10\\xe1\\x0e\\x00\\x05\\xdc\\x4c\\xd5\\x48\\x0e\\x76\\xdf\\x1e\\xb9\\x5e\\xc1\\xdf\\x47\\x4a\\x61\\x29\\x1a\\x5f\\x44\\x66\\x73\\x98\\x71\\x18\\xff\\x5f\\x18\\xa3\\xda\\x9a\\xcd\\xea\\xdc\\x88\\xa2\\x14\\xcf\\x0b\\x42\\x45\\x03\\x5e\\x33\\x5a\\x75\\x4f\\xe1\\xd8\\x88\\x63\\x10\\xc8\\x2b\\x55\\xeb\\x81\\x81\\xb1\\x24\\xf0\\x4a\\xad\\x7e\\xfc\\x01\\x81\\x3f\\xbb\\x79\\x8a\\x32\\xaf\\xf9\\x0b\\x65\\x7d\\x4d\\xd9\\xa7\\x21\\x49\\xfe\\x0b\\xc0\\x74\\xfa\\xd3\\x42\\x5f\\xf1\\x46\\x3e\\x78\\x64\\x82\\xf0\\x56\\xde\\x6e\\x18\\x6a\\x60\\x9e\\x99\\x95\\xf3\\x58\\x2d\\x5e\\x58\\x0f\\x2f\\x8a\\x67\\x4d\\x36\\xa6\\x35\\xe5\\x40\\x17\\x35\\xcd\\x8f\\xbd\\xda\\xcf\\x8e\\x06\\x08\\x05\\x65\\x71\\xdf\\x3b\\xce\\x48\\x7f\\x7f\\x1e\\x58\\xcc\\xc3\\x15\\xbd\\x0c\\x97\\x7e\\x18\\xad\\xf1\\x1c\\xe8\\x2e\\xc0\\xe0\\xcc\\xe8\\x03\\x54\\x20\\xe3\\xda\\x6d\\xee\\xe1\\x95\\x93\\xbe\\x4d\\xe4\\x77\\x02\\x24\\x55\\x11\\xfb\\x20\\x1f\\xeb\\xd6\\x62\\x20\\xf1\\x4a\\xeb\\x97\\x97\\xac\\x94\\x70\\x2e\\xd2\\x9c\\x82\\x74\\x8f\\xbd\\xe1\\x5e\\xee\\xac\\x5c\\xa9\\x87\\x78\\x0b\\x67\\xb0\\x2a\\xb4\\xa5\\xd1\\xec\\x8a\\x9f\\x98\\x40\\x27\\x44\\x22\\xf4\\x7c\\xe4\\xcf\\xd4\\x58\\x43\\x04\\x63\\x79\\xb4\\xda\\x99\\x7f\\x56\\x2f\\x17\\xd7\\x00\\x22\\x59\\x2e\\xca\\x22\\x8f\\x75\\xfb\\x1a\\x13\\x89\\x3d\\x5b\\x22\\x7f\\xeb\\x4c\\xd1\\x68\\xe2\\x8c\\x4f\\x53\\xb7\\xb6\\x44\\x78\\x70\\x64\\xbc\\x68\\xc4\\xed\\x5b\\xdb\\xe7\\x0c\\x96\\x21\\x30\\x84\\xb9\\x5a\\xd2\\xb6\\x5f\\xc4\\x44\\x79\\x56\\x77\\x8e\\x7b\\xb2\\x0e\\x6e\\xba\\xa4\\x39\\xb7\\x0d\\x5e\\x6c\\xee\\xe6\\x65\\xab\\xb0\\x8b\\x9c\\x7b\\x74\\xe3\\x51\\x87\\x76\\x22\\x06\\xe6\\xfc\\xd1\\x10\\xfa\\x43\\x03\\x91\\xc7\\x59\\x98\\xb8\\xf6\\x5f\\x17\\x95\\xe5\\xe2\\xf6\\x60\\x62\\xc2\\x43\\x1c\\x37\\xe0\\x1c\\x7e\\xb2\\x58\\xcd\\xa5\\x81\\x8f\\x0b\\x9a\\xd8\\x08\\xa5\\x82\\xe2\\xdd\\xd4\\x10\\xa3\\x88\\x1c\\x9f\\xd9\\x0d\\xc2\\x3f\\xb1\\x27\\xf2\\x66\\xad\\x17\\x09\\x3e\\xac\\x81\\x38\\x9b\\x30\\x01\\x0a\\x4e\\x9e\\x1b\\x06\\x52\\x4e\\x55\\x4f\\x67\\x3d\\x6c\\x81\\xf7\\x5a\\x15\\xb0\\xfa\\x86\\x0a\\xfa\\x34\\x6d\\x51\\xf4\\x55\\xd2\\x67\\x53\\x1a\\x41\\x0d\\x40\\xba\\x75\\x65\\xba\\x5e\\x2a\\x5b\\x51\\x59\\xad\\xa3\\x8f\\xce\\xfb\\x1a\\x62\\x16\\x46\\x66\\x1a\\x2a\\x0e\\x66\\x6c\\xd4\\xe5\\xae\\x40\\x39\\x00\\x99\\xd4\\xec\\xa3\\x64\\x56\\x49\\x23\\x6c\\x3e\\x40\\x0f\\x40\\xd0\\xaa\\x04\\x35\\xf1\\x54\\x08\\xfc\\x04\\xc6\\xcd\\xc0\\xc9\\x33\\x72\\xca\\xb8\\x1e\\xdf\\xbb\\x82\\xe3\\x67\\xe0\\x06\\xd7\\xa6\\x7a\\x3c\\xcb\\xc1\\xab\\x18\\x11\\x11\\x7d\\xf7\\x6e\\x36\\x68\\x93\\xc8\\x47\\x12\\xf6\\x6e\\x7b\\xf6\\x0e\\x4e\\x2c\\x23\\x8a\\x91\\x80\\x14\\x68\\x96\\x39\\x61\\x5b\\x81\\x67\\xd6\\x7b\\x86\\x54\\x64\\x91\\x61\\xb6\\x06\\x48\\xda\\x41\\x66\\x88\\xbd\\x4a\\x81\\xb6\\xd6\\xbc\\x9a\\x18\\xa0\\x86\\x22\\x47\\x4e\\xbb\\x0e\\x4d\\x2a\\x37\\x05\\xc8\\x06\\xf1\\xaa\\x73\\xd3\\xda\\xe2\\xeb\\x14\\x7b\\xcf\\x1f\\xaa\\x63\\x25\\xff\\xb1\\xd0\\x09\\xf4\\x3d\\x42\\xcd\\x7e\\x8e\\x29\\x30\\x48\\x20\\xa1\\xcf\\xa3\\xf7\\x18\\xcc\\x39\\x5b\\x3f\\xf8\\x75\\x96\\x80\\xf8\\x44\\xfa\\xe3\\xd2\\x20\\x65\\x0e\\x67\\xe2\\xba\\x34\\x5c\\x43\\xd2\\x67\\x77\\x0f\\x68\\xc0\\x33\\x83\\xcc\\x11\\xff\\x95\\x80\\x4a\\xc3\\x91\\xb0\\x01\\xeb\\x3a\\x60\\x28\\x79\\x91\\xbd\\x63\\xe2\\x3b\\x2c\\xd6\\x9e\\x8a\\xaa\\xe4\\xec\\x68\\xe3\\xa1\\x1b\\x61\\x2f\\x8b\\xdb\\xec\\xd2\\x4d\\xce\\x0b\\x36\\xf4\\x8e\\xce\\xa8\\x36\\xb7\\xb8\\x61\\xf0\\xcb\\xe8\\xcc\\x6c\\x44\\x14\\x78\\x4f\\x6f\\xb9\\x86\\x34\\x87\\x14\\xeb\\x0d\\xdf\\xfc\\x0f\\xb0\\xd9\\x1e\\x85\\xb1\\x21\\x89\\x9b\\xfa\\x16\\x2e\\xb4\\xc6\\x38\\x8e\\xbb\\xd0\\xa3\\x82\\x12\\x58\\xa0\\x74\\x3c\\x8d\\x03\\xdc\\x0a\\x23\\x90\\x56\\x3b\\xad\\xc6\\x51\\xf2\\x16\\x0d\\x96\\x68\\x5c\\x4e\\x6b\\xc2\\x0e\\x0c\\x11\\x8f\\x84\\x1d\\xb0\\x5d\\x66\\x38\\x3a\\x44\\x34\\x79\\x02\\x5f\\xcb\\x4c\\x05\\xa8\\x4f\\x33\\xce\\xd5\\x60\\x40\\x98\\xae\\x8e\\xa2\\x84\\xa7\\xec\\x8e\\x25\\x8d\\xaf\\x2a\\x73\\x34\\xbd\\x77\\xc8\\x98\\xde\\x3c\\xbd\\x44\\x8e\\xc8\\x12\\xc9\\x17\\x32\\x1f\\xae\\x84\\xb5\\x49\\x41\\xf4\\x8d\\x62\\xf6\\xf1\\x75\\x71\\x1e\\xc8\\xb2\\xb4\\x73\\xd3\\x6a\\x38\\xc5\\x1e\\x20\\x07\\xb5\\x2d\\x57\\xa0\\xe1\\xdc\\x58\\xfa\\x51\\x2d\\xfd\\x0e\\x20\\xe6\\x0c\\xda\\x94\\xd0\\x99\\xfd\\x91\\x04\\x85\\xe1\\x05\\xbb\\x13\\x44\\xbf\\x5e\\x07\\xde\\x70\\xba\\x5d\\x42\\x76\\x5d\\x5a\\xd0\\x16\\x4b\\x82\\x0d\\x75\\x63\\xeb\\x2b\\x96\\x08\\x50\\x3f\\x21\\x42\\x99\\x49\\x48\\x5f\\x0a\\x59\\x76\\x2a\\x44\\x6d\\xe9\\x5e\\xd4\\x04\\xe9\\x42\\x49\\xdf\\xe6\\x24\\x77\\x6c\\x77\\x17\\x69\\x3e\\xa2\\x6d\\x9b\\xfa\\x5d\\xb9\\xe6\\x84\\x8c\\xa1\\x13\\x2a\\x54\\x24\\xf8\\x57\\x48\\xf0\\x06\\xd0\\x1f\\xa2\\x44\\x83\\x1a\\xb7\\x47\\x7e\\x4b\\x14\\x0c\\x56\\x91\\xa4\\xdf\\x23\\x6a\\xd4\\x50\\x2a\\x39\\xd9\\x16\\xe8\\xf8\\x6e\\x2d\\xaa\\x18\\x21\\x10\\x68\\xb7\\x93\\xf2\\x31\\xb3\\x70\\x3a\\xf5\\x2e\\x42\\x33\\xf7\\x03\\x1f\\x76\\x8c\\xd7\\x36\\x0c\\x98\\xba\\x73\\x61\\xe3\\xfb\\x58\\x6b\\x9d\\xdc\\x5a\\xd5\\x26\\x20\\x54\\x50\\xd4\\xb0\\x26\\x32\\x68\\x32\\x07\\x65\\xf6\\x57\\x2a\\x2e\\xd9\\xc9\\x06\\xf0\\x47\\xdf\\xad\\x07\\x67\\x1d\\x1b\\xaa\\x22\\xdc\\xb6\\xb1\\xf7\\x69\\x46\\x65\\x36\\xce\\x5a\\xc9\\x21\\x58\\x25\\xc0\\x65\\xde\\x65\\x2a\\x4a\\x34\\xd2\\x2c\\x0e\\x19\\x16\\x08\\xb7\\xdc\\x8c\\x4e\\x50\\x34\\xf9\\x57\\x9c\\x5b\\xa6\\xce\\x62\\x2e\\xbd\\x4d\\x47\\x1d\\x92\\x10\\x11\\xdc\\xc0\\x60\\xa6\\xca\\xce\\xb3\\xfc\\xc8\\x53\\x3a\\xf4\\x6c\\x10\\x9e\\x56\\xc0\\x1e\\x91\\xb4\\x89\\x35\\xd2\\xe4\\x33\\x48\\x3b\\x71\\xff\\xfe\\xa2\\xe7\\xed\\xec\\x93\\x78\\xd5\\x8b\\x78\\x6e\\xbc\\xdd\\x3c\\x1e\\xd0\\xd1\\x13\\x9e\\xb8\\x0d\\x77\\x68\\xa4\\x5d\\x53\\xea\\x21\\x37\\xc6\\x00\\x58\\x86\\xe2\\x31\\x63\\x28\\x32\\x08\\x71\\x26\\x35\\x63\\x63\\x9b\\x82\\xb0\\x5e\\x59\\xa4\\xd5\\xe8\\x3d\\xa9\\x11\\x18\\x05\\x8a\\xcc\\x51\\x83\\x9d\\x22\\x62\\xa7\\x25\\x11\\xc8\\x3d\\x91\\xb7\\x3a\\x76\\xcc\\x0d\\xc1\\x17\\xf0\\x69\\x92\\x8c\\x54\\xe9\\xe0\\xa9\\xc5\\xf4\\x76\\xa0\\xa9\\xaa\\xb0\\xf9\\x6b\\x4f\\x63\\x42\\x68\\x61\\x8d\\x15\\x38\\x72\\xf9\\x93\\x1a\\xcd\\xcc\\xcf\\xba\\x59\\xb0\\xda\\x34\\xcf\\xba\\xd8\\x18\\xb9\\xc8\\xb1\\xec\\x18\\x4d\\x53\\x64\\xc6\\xa3\\xa2\\x8a\\x5f\\xbc\\xc9\\x06\\x60\\x0c\\xec\\x2f\\x67\\xe4\\x20\\xf0\\x10\\x61\\x29\\x0b\\xbc\\xa4\\x25\\xb5\\xe6\\x92\\x87\\x01\\x95\\x24\\xc9\\xbe\\x2c\\xd0\\x71\\x47\\x2e\\x42\\x17\\x4f\\xb3\\x5e\\xf3\\x04\\xdd\\x3b\\x80\\x55\\xed\\x6a\\x5e\\x9c\\x33\\xb4\\xc6\\x33\\xd9\\xb0\\x6d\\x57\\xe1\\x63\\x9b\\xfc\\x93\\xb9\\x2a\\x7a\\x02\\x37\\xb6\\x8a\\x2c\\x45\\x6d\\x3c\\xb5\\x88\\x52\\x1e\\x89\\x86\\x29\\xfd\\x30\\x85\\x3a\\xd4\\x4c\\xbe\\x7c\\xc4\\x3c\\xf4\\x55\\x30\\x14\\x84\\x39\\x9d\\x15\\x8c\\x55\\x88\\xa0\\x0c\\x24\\x6d\\xa0\\x4d\\xdd\\xcc\\x38\\x78\\x8f\\xad\\xe7\\xca\\x96\\xb6\\x44\\x7e\\x28\\x4a\\x06\\xed\\x82\\x73\\xba\\x81\\x5a\\x78\\xb7\\x21\\x03\\x43\\x08\\xbb\\xc8\\x9c\\x0d\\x1b\\x0d\\xe6\\x90\\xb8\\xd7\\xb7\\x0f\\x9a\\xa1\\x12\\x88\\xcf\\xb2\\x0e\\xf3\\x93\\xa1\\x24\\x48\\x7f\\x21\\x44\\x85\\x93\\x96\\x8b\\xe3\\x23\\x08\\xd6\\x61\\xf4\\x21\\xf1\\xd1\\x01\\x58\\x30\\xd5\\x9c\\xdf\\x0f\\xe2\\x61\\x51\\xd5\\xcc\\xc5\\xc1\\x4e\\x6a\\x95\\x7b\\xb0\\x68\\xd8\\x19\\x5a\\x71\\xd9\\x50\\x62\\xc0\\x78\\x19\\xfb\\x03\\x19\\xfb\\xbc\\x6c\\x50\\xc7\\x58\\x30\\x0a\\xf9\\x65\\x50\\x88\\x4a\\x9d\\x70\\xdc\\xdc\\xac\\x08\\x06\\xc5\\xbc\\x0a\\x98\\x5e\\xfb\\x21\\x03\\x47\\x06\\x22\\x2e\\x71\\x61\\xb2\\x68\\x30\\xb9\\x11\\xc8\\x84\\x32\\x2c\\x19\\x82\\x1c\\xd9\\xc8\\x0f\\xe7\\x77\\x6a\\x58\\x06\\x9c\\xe1\\x65\\x5c\\x0a\\x06\\xd8\\x5a\\xbb\\x4e\\x17\\xd3\\x26\\x04\\xc9\\x0c\\x2c\\x7d\\x7c\\xce\\x21\\x56\\xe1\\xd3\\x18\\x74\\xe9\\xa0\\x65\\xbe\\x40\\xf7\\xf9\\xc1\\xc5\\x8c\\x41\\x65\\xcc\\x41\\xe6\\x90\\xdb\\x06\\x20\\x1d\\xe2\\x6a\\x44\\xab\\x07\\x87\\xdc\\x0b\\xba\\x53\\xb3\\xee\\x0d\\x23\\x9b\\x80\\x23\\x2d\\x4f\\x15\\x40\\x1e\\x05\\xc2\\x7f\\xd8\\x2f\\x22\\x76\\x3b\\x9f\\x35\\x7c\\x98\\x91\\x0b\\xc7\\x7d\\x05\\x99\\x01\\x3c\\xc0\\x00\\xf8\\x94\\x9e\\x4f\\x59\\xb5\\xe7\\x77\\x64\\xbe\\x40\\x48\\x11\\x95\\x69\\xa5\\x84\\x3b\\xdf\\xf3\\x10\\x7c\\x45\\x00\\x35\\x8f\\x54\\x4b\\xfd\\xae\\x20\\xd5\\xfa\\x97\\xea\\xc6\\xde\\x85\\xc9\\xc3\\xe4\\xb1\\x33\\x13\\xe0\\xd6\\x42\\x0a\\xab\\xac\\xdb\\x48\\xd5\\x3b\\xa8\\x68\\xd7\\xcd\\xdf\\x71\\xee\\x47\\x0e\\x39\\x64\\x44\\xa0\\x3d\\x7f\\x15\\xe3\\x48\\x6b\\xed\\x13\\x84\\xc5\\x2a\\xc1\\x00\\x68\\x07\\xc5\\xc2\\xde\\xca\\x3e\\xf5\\xe2\\xb1\\x12\\x6d\\x09\\x5c\\xba\\xaa\\x03\\x6c\\x38\\x51\\xc4\\xab\\x5d\\x03\\x1d\\x63\\x09\\xc0\\x7c\\x65\\xd7\\x13\\x7e\\xe5\\xe2\\x7d\\x63\\xc6\\xbd\\xe1\\x0a\\x93\\x4b\\x27\\x0a\\x18\\x58\\xac\\x40\\xb0\\xca\\x34\\xda\\x40\\x4a\\x1b\\x81\\x28\\xa3\\x8e\\x6d\\xaa\\x4c\\xc8\\x22\\x65\\x02\\xd6\\x7c\\x84\\x6d\\xde\\xaa\\xf0\\x51\\x6b\\x44\\x36\\xed\\x2b\\x41\\x74\\x59\\x48\\xa7\\x11\\x98\\xcd\\x3d\\x92\\x45\\x02\\x63\\xc2\\x86\\xe2\\xa2\\x26\\x31\\x87\\x81\\x55\\x2e\\x3f\\x4a\\xcb\\x59\\x08\\x2c\\x66\\x64\\x71\\x41\\x9d\\x7b\\xb4\\xa0\\x02\\x7c\\x8d\\x72\\x52\\x6f\\x2e\\x29\\xf6\\xac\\xfd\\x25\\x22\\xd6\\xd7\\x52\\xc8\\x40\\x2c\\xad\\x33\\xad\\x4e\\xdb\\x00\\xcd\\x49\\xdc\\x16\\x54\\xcb\\xaa\\x20\\x30\\x20\\x6b\\x78\\xfa\\x79\\x2a\\x1c\\xf6\\xe2\\x17\\xf0\\x4e\\xc5\\x36\\x0f\\x00\\xc3\\xee\\xbe\\x96\\xf1\\xb4\\x42\\x31\\x26\\x00\\xb9\\x07\\x58\\x78\\x9d\\xe9\\xe6\\x2f\\x2d\\xff\\x8a\\x2a\\x83\\x51\\xad\\x72\\xae\\x51\\xcc\\x7f\\x14\\x1b\\xd2\\xb0\\x67\\x2c\\x53\\x51\\xa3\\x48\\x6f\\xc3\\x5f\\xe6\\x49\\xec\\x1d\\x7b\\x1b\\x20\\x2b\\x88\\x18\\x08\\xd8\\x43\\x4c\\x8d\\x25\\x2e\\xb3\\xd6\\xb4\\x8a\\xb3\\xff\\x88\\x96\\x02\\xc4\\x51\\xf3\\xc6\\x8d\\x67\\xc9\\x36\\xd1\\xdb\\x20\\xbc\\xf6\\x47\\xcb\\x9c\\x90\\x22\\xc6\\x64\\xbb\\x97\\x15\\xf6\\x87\\x84\\x3c\\x74\\x9b\\x19\\x48\\xcf\\x74\\xa9\\x34\\x3c\\x7c\\x5e\\xf7\\xc2\\x59\\xd7\\xf9\\xe3\\x1a\\xb4\\xf6\\xe7\\x23\\x3f\\xd7\\x01\\x08\\x9f\\xfb\\x84\\xa7\\x9e\\xb6\\xa3\\x73\\x75\\x29\\x42\\x7b\\x54\\x83\\xa5\\x8f\\x4f\\xc9\\xa9\\x18\\x10\\xbb\\xbc\\x00\\x29\\xed\\x67\\xb3\\x73\\xb0\\xde\\x38\\x02\\xe1\\xf9\\xa4\\xa6\\xb4\\xbf\\xe2\\x33\\x51\\x39\\x05\\x25\\x69\\x66\\x04\\x9e\\xf7\\x7a\\x78\\xeb\\x2a\\x70\\x92\\x8c\\x3b\\xe7\\x8f\\x0a\\x59\\x7c\\x68\\x36\\x4a\\xd9\\x59\\xf4\\x6e\\xe4\\x12\\x94\\xa3\\xdd\\x37\\x00\\x28\\xb3\\x46\\xde\\x8c\\x2f\\x0e\\x20\\x39\\xf6\\x87\\xbd\\x1b\\x16\\x15\\x69\\x21\\x80\\x3d\\xdf\\x41\\xff\\x75\\x1c\\x4c\\xb6\\x66\\x19\\x61\\x2c\\xa0\\x80\\x30\\xf0\\x32\\xa2\\x30\\x54\\x03\\xd9\\x30\\x86\\x40\\xc8\\x00\\x2d\\xc7\\x29\\x39\\x64\\x4d\\xaa\\xa1\\x9e\\xe5\\x61\\xfe\\x44\\xa8\\x1d\\xce\\x21\\x32\\xfb\\x42\\xe7\\x15\\x37\\xed\\x8d\\x93\\x94\\x8a\\x80\\xc6\\x65\\x29\\xa6\\x01\\x39\\x70\\xa3\\x59\\x4e\\x6b\\x96\\xe1\\x67\\xd2\\x06\\x31\\xe7\\x4d\\xd8\\x9a\\x8f\\x1d\\xd6\\x25\\x6c\\x26\\xc5\\x89\\x6f\\xda\\x7a\\x70\\xc8\\xfe\\xbd\\x4c\\x03\\x47\\x5c\\x83\\x89\\x78\\x24\\xb3\\x3a\\x2d\\xa0\\xc7\\xa1\\x3f\\xb3\\xfc\\x2f\\xeb\\x40\\x02\\xdb\\x22\\x94\\x43\\xd9\\x40\\x40\\x3f\\xa4\\x88\\xcc\\x45\\xfe\\x4f\\x09\\x80\\xb4\\x73\\xe2\\x95\\x3f\\x70\\x7d\\x03\\x0d\\x24\\xbe\\x93\\x38\\x1f\\x60\\x60\\xdd\\x49\\xe4\\x26\\xf2\\xe3\\xa0\\xa5\\x42\\x63\\x41\\xd1\\xc3\\x99\\xec\\xbc\\xf3\\x05\\x29\\x9c\\x38\\x35\\x5f\\x63\\x79\\x18\\x1a\\xad\\xe8\\x58\\xc2\\x4b\\x00\\x54\\x98\\x47\\x53\\xe6\\xda\\x6d\\x43\\x94\\x7c\\x47\\x84\\x8e\\x06\\x21\\xb5\\x9c\\x8a\\x02\\xef\\x4b\\x3b\\x7a\\xe0\\x8c\\x7f\\x50\\x8d\\x12\\xb6\\xb8\\x2c\\x1b\\xd3\\xe2\\x7b\\x95\\xef\\x16\\x0d\\x49\\x7a\\x1d\\x64\\x1f\\xf5\\x83\\xab\\x9d\\x41\\x1c\\xf8\\x95\\xb9\\xfe\\x36\\xe0\\xd1\\xe4\\x99\\x9d\\xfa\\x39\\xe0\\x69\\x34\\x8a\\x32\\x5d\\x86\\x69\\x15\\x3e\\xae\\xc1\\x56\\x94\\x95\\x6d\\x91\\xb8\\x6e\\x07\\xa1\\x4b\\xd5\\x36\\xde\\xb1\\x42\\xe5\\x62\\xbd\\xeb\\x23\\x06\\x6e\\x29\\x9d\\xa5\\xe3\\x4d\\x75\\x02\\x73\\xa8\\x6d\\x28\\x96\\x21\\xc8\\x9f\\xfd\\x51\\x01\\x7a\\x97\\xfc\\xd1\\xc7\\xcb\\x59\\x14\\x66\\x88\\x99\\xde\\xe1\\xb4\\xb2\\x08\\x17\\x6d\\x34\\x53\\x8f\\xbc\\x97\\x73\\xb3\\x11\\x41\\x8b\\x4a\\x20\\x9c\\x4d\\x40\\x0a\\xb4\\x5f\\xd8\\xa0\\xac\\x80\\xc5\\x38\\x4a\\xb8\\x85\\x72\\x83\\x60\\xda\\x29\\xc8\\xff\\xa2\\x30\\xf6\\xa0\\x20\\xf9\\x3a\\x9d\\x9b\\xa1\\xdd\\xa7\\x50\\xf8\\x3d\\x00\\xa2\\x49\\xa9\\xcc\\xde\\x34\\xb5\\x1b\\x30\\x8e\\xda\\xe5\\xe4\\x79\\xdc\\x68\\xd5\\x66\\x90\\x29\\x22\\x8a\\xa8\\x85\\x7a\\x79\\x61\\x4e\\x29\\x08\\x99\\x93\\x91\\x4a\\x48\\xdf\\x97\\x25\\x2c\\x0a\\xb1\\x34\\x1b\\x8b\\x6a\\x74\\xe2\\x36\\x50\\x6f\\x43\\xc0\\x38\\x6a\\xb7\\x65\\xb0\\x84\\xe0\\x58\\x39\\x7e\\x58\\x99\\xb9\\xce\\x6e\\x68\\xc7\\x85\\x32\\xe4\\x13\\x27\\x44\\xb7\\x5f\\x74\\x9f\\xf3\\xf9\\xd1\\xf7\\xa8\\xd9\\x0b\\xb0\\x9b\\xf7\\x88\\x1f\\x2e\\x83\\x79\\x88\\x62\\x42\\x8a\\x02\\xbd\\x47\\x59\\x60\\x70\\x0f\\xd9\\xb9\\xad\\x38\\x13\\xdf\\x70\\x5f\\xbe\\xea\\x41\\x71\\x1a\\xac\\x28\\x2b\\x2e\\x1d\\x3b\\xa9\\x17\\x13\\xe4\\x6a\\x82\\x38\\x08\\x68\\xd5\\x60\\xe4\\x09\\x26\\xdd\\xed\\x0d\\x9d\\x89\\xc2\\xb8\\x10\\x0e\\x71\\x91\\x79\\x6b\\x6d\\x8f\\x66\\x28\\x9d\\xe4\\xd4\\x0b\\x83\\x23\\x50\\x71\\x0b\\x71\\x27\\xaa\\x18\\xe0\\x16\\x08\\x00\\x4b\\x6d\\xc8\\xd6\\x25\\xa7\\xa8\\x47\\x61\\x76\\x86\\x5e\\x8e\\x35\\x7f\\xbc\\xa8\\x30\\xd9\\x4b\\x03\\xda\\xc3\\x75\\xc0\\x1d\\x23\\x90\\x1c\\xaa\\x18\\xe9\\x0d\\x9e\\xf0\\x4c\\x1e\\x44\\x98\\xd5\\xca\\x6b\\xde\\x70\\x69\\x0a\\x08\\xff\\x82\\xb0\\x57\\x74\\xef\\x10\\x72\\x02\\x65\\xce\\x5e\\x9f\\x47\\x6e\\xbf\\x9c\\x07\\x9a\\x07\\x50\\x41\\x15\\xcc\\x4b\\x1e\\x08\\x10\\xfa\\x1b\\x72\\x1a\\x8f\\x91\\xf5\\x48\\x9c\\x98\\x36\\x62\\x55\\x87\\x30\\xb7\\xd0\\x42\\x37\\x12\\x27\\xed\\x7d\\xc3\\xa7\\x35\\x90\\xd6\\x01\\x7a\\x06\\xfe\\xa1\\x16\\x42\\x20\\xca\\x79\\xc4\\xd9\\x50\\x95\\x53\\x84\\x6a\\xd4\\x08\\xc5\\xe2\\xf4\\xf0\\xa9\\x1f\\x2c\\x42\\x00\\x28\\x63\\x2f\\x52\\x6f\\x70\\x00\\xb7\\x57\\xd2\\xd5\\x0b\\x06\\x52\\xc4\\x3a\\x1a\\x02\\x82\\x04\\x6d\\x31\\x7d\\x1a\\x70\\x98\\xa9\\xde\\xb2\\xc0\\x3c\\x40\\x96\\xe3\\x53\\x22\\x50\\xf5\\x31\\x34\\x1d\\x45\\xad\\xb9\\xd2\\x2f\\x8b\\xa7\\x87\\xd2\\xd1\\xdc\\xe0\\xc2\\xa6\\x67\\xe3\\xb5\\x35\\x3d\\x0d\\xf6\\x5b\\x4c\\x35\\xf1\\x0f\\xec\\xcb\\xd4\\x1a\\x35\\xbf\\x30\\xca\\x4c\\x03\\x1f\\x3c\\x4c\\x3b\\x69\\xc3\\x17\\x1b\\x0f\\xd1\\x6d\\x41\\x04\\x2e\\x25\\x9d\\x5e\\xfc\\x48\\x07\\x9f\\x8a\\xb0\\xf6\\xc1\\x97\\x51\\x3c\\x8f\\x64\\x09\\xb4\\x80\\xfa\\x45\\x18\\x9f\\x6e\\x05\\x42\\xac\\x86\\x29\\x12\\x6e\\x3e\\x0b\\x61\\x6b\\xc3\\x5c\\x32\\x51\\xb1\\x1c\\x8e\\x2e\\xd2\\x76\\x48\\x4e\\xcf\\x68\\x01\\x20\\x10\\x5b\\x39\\xc2\\x93\\xe3\\x6a\\x48\\x9d\\x28\\x76\\x94\\xa1\\xd9\\xed\\x4c\\x04\\xd6\\x34\\x31\\x75\\xb0\\x88\\x02\\xd5\\x10\\x14\\xf8\\x34\\xdf\\x48\\x8e\\x40\\x32\\x82\\x35\\x41\\x3c\\xc7\\x4c\\x0f\\x36\\x30\\x21\\xc0\\x6a\\x61\\x47\\x18\\x2c\\xa7\\x62\\x0f\\x37\\xd4\\x30\\x31\\x66\\xd0\\xf1\\xb8\\x69\\x9a\\xfe\\x5c\\xed\\x70\\xd8\\x13\\x4a\\x0f\\xc6\\x12\\x67\\xf8\\xc2\\x7d\\x72\\xaa\\xf7\\x4e\\xcc\\x5f\\xb9\\x64\\x0e\\x85\\xb7\\x3f\\xa1\\x73\\x44\\xdb\\x88\\x10\\x26\\x73\\x9d\\x60\\xab\\xfc\\x21\\xa9\\xea\\xfc\\x31\\x6c\\x9c\\x52\\xf6\\x4c\\x50\\xd4\\x62\\x00\\x4b\\x10\\x78\\xac\\xd0\\xc7\\xf3\\x28\\xb0\\xc1\\x38\\xcc\\xcb\\x70\\x1c\\x3c\\x8d\\xe0\\xed\\xfe\\x0d\\xc3\\x08\\xc4\\x1b\\xa5\\x14\\xb2\\xe3\\x94\\x49\\xb4\\x43\\x23\\x19\\x59\\xf4\\xe0\\x39\\x16\\x64\\x5c\\x00\\x7c\\xb3\\x0b\\x5d\\x63\\xd7\\x96\\xb0\\xd2\\x9c\\x50\\x27\\xd8\\x67\\xf7\\xec\\x58\\xce\\x71\\x09\\x05\\xe5\\xde\\x5a\\x40\\x53\\xb5\\x01\\x88\\x2a\\xa8\\x70\\x96\\xa8\\xa3\\x4e\\xc9\\x0e\\x8e\\xb4\\x31\\x8b\\x35\\xbd\\x47\\x72\\x60\\xfd\\x51\\x46\\xd1\\x26\\x88\\xae\\xce\\xc5\\x45\\xee\\x55\\xb9\\x01\\x18\\x48\\xd1\\xfe\\x69\\x80\\x71\\xa5\\x6f\\x77\\xc4\\xec\\x96\\x8f\\xb2\\x86\\x37\\x6b\\xdd\\xc4\\x45\\xa5\\x5d\\x87\\x3b\\xe0\\x7f\\xdb\\xc7\\x38\\xc9\\xf1\\xe7\\xb2\\x54\\x3b\\x19\\xa1\\x65\\x89\\xa5\\xa8\\x7a\\x41\\xe3\\xde\\x3b\\x0e\\x32\\x2c\\x6b\\xb1\\x0c\\x75\\xfa\\xde\\x90\\x67\\xe5\\x5e\\x73\\xc4\\x05\\xe3\\x2c\\x7c\\xe5\\x89\\x33\\x54\\xcc\\x10\\x81\\xa8\\x60\\xf3\\x2f\\x00\\x12\\x9e\\x71\\xe4\\x0c\\xa4\\x42\\xf9\\x88\\xd6\\x61\\xf2\\x41\\xd1\\x46\\x2e\\x85\\x47\\x19\\x42\\xe4\\xc1\\x94\\x25\\x59\\x59\\x3b\\xb5\\x6a\\xa3\\x9b\\x78\\x34\\x56\\xab\\x6d\\x2a\\x52\\xd7\\x1a\\x1e\\x54\\x67\\xc2\\x3b\\x94\\x8b\\x14\\xfd\\xd6\\xa2\\xbc\\x12\\x20\\xa9\\xe6\\xd9\\x52\\xe7\\xa6\\x95\\x63\\x9d\\x51\\xe6\\x33\\x99\\x8d\\x3b\\x6b\\x80\\x78\\xc7\\x19\\x3a\\x1d\\xcf\\xac\\x76\\x8f\\x6e\\x91\\x8f\\x72\\xa4\\xd9\\x24\\xfe\\x68\\x22\\x36\\x5f\\xa2\\x74\\x6c\\x64\\xc4\\xf8\\x68\\x8c\\x7a\\x33\\x29\\x9b\\x7f\\x75\\xd4\\xbf\\x94\\x33\\xdd\\x32\\x19\\x07\\x6e\\xc4\\x6c\\x96\\xf5\\xac\\xed\\x18\\x78\\x59\\xc0\\xdb\\x9f\\x78\\x68\\x96\\x87\\x8b\\x98\\x63\\x01\\xfe\\xf0\\x36\\x9c\\xfa\\xab\\x74\\x8c\\x51\\xed\\x99\\xcb\\x6e\\x93\\x60\\xd0\\xef\\x72\\x37\\x74\\x9c\\x53\\x22\\xc2\\x1a\\xeb\\x11\\x41\\x51\\x76\\x8a\\x64\\xaa\\xf3\\xb0\\x0e\\x92\\xac\\xd5\\x7b\\x14\\xc6\\x80\\x4f\\x76\\xd5\\xeb\\xd3\\x3f\\x8f\\xd4\\x74\\xed\\xd4\\x87\\x82\\x8a\\x97\\x17\\x66\\x6e\\x01\\xb4\\x37\\x42\\x03\\x55\\x31\\x04\\x52\\x06\\xdf\\xa1\\x1e\\x7f\\x10\\x71\\x35\\x5b\\x33\\x16\\x1e\\xf5\\x40\\xff\\x50\\x8a\\x34\\xfc\\x04\\x74\\xcc\\xd0\\xb0\\x61\\x1d\\x68\\x0c\\xd6\\xf2\\x7d\\x78\\x6d\\xf5\\x48\\x4a\\x72\\x01\\x8b\\x2f\\x33\\x7b\\xb2\\xad\\x46\\x6f\\x25\\x6c\\xae\\x17\\xa0\\xbf\\xb1\\xeb\\x23\\x62\\x35\\x3a\\xf8\\xb7\\x92\\xfb\\x90\\xaf\\x10\\x7e\\xf5\\xea\\x5a\\x4b\\x57\\xcc\\xdf\\x84\\x3b\\x3e\\xc8\\x66\\x6e\\x0c\\x5c\\x03\\x25\\x10\\x72\\xec\\x6f\\xbe\\x23\\x64\\xd3\\xb3\\xa0\\x98\\xab\\x09\\xaf\\x07\\x2f\\xc2\\x65\\xd7\\x9b\\xaf\\x45\\xca\\x95\\x6c\\x28\\x68\\x95\\x78\\xc4\\xb7\\xdb\\xc5\\x72\\x91\\x80\\x2f\\xea\\x83\\x47\\xe8\\x90\\x14\\x87\\xda\\xef\\x1d\\x9a\\x65\\x5d\\x91\\x8f\\xbe\\x88\\x3e\\xe0\\x99\\x04\\x88\\xf8\\xc1\\x2a\\x43\\x94\\x23\\xdd\\x4e\\x86\\xba\\xa6\\x08\\xf5\\xe2\\x62\\x66\\x86\\xa1\\x0b\\xa6\\xb9\\xbf\\xe6\\xcc\\x41\\x7d\\x52\\xd1\\x31\\xa4\\xdb\\x1c\\x8c\\xd6\\x42\\x18\\x0a\\xd2\\x00\\xbd\\x74\\xe6\\x57\\x69\\x2e\\xdc\\x33\\x26\\x23\\x3f\\x89\\xf2\\x5b\\x9b\\xa9\\xbd\\xca\\x12\\xe2\\x2d\\x83\\x3a\\xd4\\x27\\x45\\x18\\x26\\x15\\x1f\\x13\\x86\\x69\\x64\\x4d\\x52\\xf1\\x2e\\xd3\\x9c\\x0b\\xef\\x84\\xec\\x53\\xb6\\x1e\\xd0\\xef\\xc4\\x06\\x86\\x0f\\x71\\xb4\\x0c\\x0e\\xf0\\x8a\\x28\\xb9\\x43\\xd5\\x32\\xb6\\x7a\\x96\\xa3\\xdd\\x5b\\x90\\x22\\x01\\xd1\\x72\\xd9\\x41\\xf0\\x0b\\x50\\x6d\\x58\\x66\\xdc\\x96\\x26\\xd6\\x00\\x91\\xb2\\x14\\xea\\xe1\\x61\\xfd\\xad\\x9a\\x88\\x95\\xb2\\xe0\\xf2\\xd6\\xe3\\x68\\x83\\x75\\xc0\\xb0\\x8b\\x84\\x48\\x0a\\x1c\\x13\\x92\\xc9\\xc6\\x16\\x8c\\xa1\\x2c\\xb3\\x30\\xbc\\x1d\\x44\\xf0\\x3b\\x0c\\x1c\\xe9\\xe8\\x12\\x18\\x4b\\xf1\\x22\\x5b\\x4f\\x37\\xb8\\xb4\\x29\\xe2\\x45\\xa9\\x89\\x89\\x99\\xe1\\xc7\\x1b\\x41\\xa0\\x32\\x40\\xfc\\x7d\\x49\\x84\\xe4\\xf5\\x28\\xea\\x1a\\x5f\\xa9\\xc3\\xbd\\x5b\\x4c\\xf8\\x68\\xc2\\x5c\\x9e\\xe0\\xd8\\x57\\x33\\xb2\\xfb\\x32\\x9e\\xbd\\x28\\xd9\\x08\\xd9\\xe6\\xc8\\x26\\x71\\x7c\\xc3\\xed\\xcc\\xf8\\xd2\\xd0\\xce\\x0e\\xe2\\x0c\\xf7\\x94\\xc2\\x86\\x4f\\x60\\x00\\xe1\\x0f\\x2f\\x3e\\x08\\x63\\x3f\\x81\\xc2\\xbb\\x31\\x86\\x20\\x73\\x18\\x48\\xed\\xba\\x80\\x46\\x86\\xba\\x00\\x37\\xc7\\x79\\x89\\xc4\\x8f\\xc1\\x04\\x31\\x68\\xee\\x31\\x36\\x5a\\x90\\x61\\x38\\x04\\x29\\x29\\x3b\\x98\\xc2\\x4b\\x41\\xc0\\x63\\x7a\\x82\\x40\\x70\\x7d\\xce\\x94\\x1a\\x32\\xfe\\xb4\\xe5\\x5b\\xd2\\xc0\\x51\\xad\\xa9\\x08\\x5a\\x88\\xdb\\x9c\\xe0\\xfa\\xa7\\x93\\x66\\xfe\\x20\\xce\\xb3\\xa0\\xcb\\xf4\\x8b\\xf9\\xdf\\x37\\x25\\x7c\\xc1\\x72\\x6d\\xa0\\xfd\\xcd\\xec\\x31\\x54\\x22\\x03\\xce\\x60\\x97\\x71\\x74\\xfb\\x9a\\x06\\xa4\\xe4\\x48\\x45\\xe6\\x2b\\xe1\\x7e\\x03\\xe5\\x4d\\x14\\x77\\xbb\\x12\\x45\\x22\\x0d\\x92\\x63\\xf2\\x4a\\x6c\\x55\\xba\\x29\\x0d\\xca\\x01\\xc5\\x4b\\x93\\xea\\x3a\\xad\\xc1\\x58\\x45\\xc0\\x74\\x5e\\x21\\x2c\\x0a\\xf0\\x4c\\xeb\\x8f\\x3a\\x0f\\x03\\x40\\xa2\\x6c\\x30\\x28\\x9b\\x75\\xd0\\xaf\\x95\\x66\\xd1\\xe7\\x35\\x62\\x8d\\x99\\xb7\\x32\\x36\\x6e\\x09\\x95\\xe1\\x2a\\xee\\x26\\xcd\\xf0\\x8b\\xe4\\x18\\x24\\x73\\xc8\\x7d\\x86\\xc4\\xbb\\xe7\\x9f\\xdf\\xae\\x55\\x23\\xe3\\x0d\\xa0\\x3d\\x5c\\x74\\xa1\\x7d\\x82\\x62\\x1c\\x0b\\x38\\xb6\\x8e\\xa5\\xdd\\x0c\\x01\\xf5\\x7a\\x3b\\x39\\xb0\\x19\\xc2\\x82\\xff\\xa4\\xde\\x2a\\xb7\\x41\\xa8\\x64\\x19\\xa3\\xd0\\x8e\\x7f\\xb0\\x29\\x87\\xb8\\x48\\x6a\\x00\\x5d\\x79\\x79\\x7c\\x0b\\xf6\\x05\\x13\\x5c\\x6e\\x76\\x80\\xfb\\xc3\\xbb\\xaf\\x70\\xe9\\xa3\\x9a\\xd4\\x90\\x1b\\x2e\\x3d\\x9e\\x95\\x50\\xc4\\x41\\x1c\\xa2\\x21\\x31\\x80\\xce\\x25\\x4c\\x49\\x65\\x1a\\x13\\xc0\\xda\\xd0\\x26\\x54\\xb9\\xa5\\x33\\x41\\x08\\x8b\\x4d\\xc3\\x12\\xa1\\x5e\\xd2\\x02\\xd9\\xa2\\x2c\\xcc\\xd1\\x04\\xf3\\x62\\xf3\\xb9\\xd8\\x0f\\x62\\xd1\\xa1\\x34\\x09\\x17\\x47\\xfb\\x65\\x96\\x1c\\x0b\\x82\\xe2\\x91\\xc0\\x71\\x01\\x69\\x73\\x9e\\x9d\\x2e\\x91\\x09\\x3f\\xb0\\x2d\\xae\\x1a\\x6c\\x90\\x5b\\x6b\\x59\\x30\\x46\\xa4\\xa8\\x44\\x96\\xaf\\x85\\x57\\xfe\\xa8\\xa1\\x8d\\x61\\xcd\\x02\\x61\\x44\\x67\\xe4\\xb4\\x48\\x53\\x10\\x4e\\x69\\x85\\x49\\x22\\x20\\x80\\x11\\xa2\\x4e\\xc8\\x60\\xf1\\x2b\\x17\\xc3\\x08\\xc1\\x45\\x36\\xaa\\x78\\x10\\x8b\\x34\\x05\\x1e\\xd3\\x50\\xb4\\x26\\xa9\\xe2\\x1b\\x2b\\x10\\x13\\xf8\\xa2\\xdd\\xd5\\xcb\\x47\\x4e\\xe1\\x1a\\x62\\x08\\x84\\x08\\x85\\xde\\x98\\x19\\x34\\x7d\\xbc\\x48\\x27\\x88\\xf8\\xbc\\x49\\x81\\xde\\x24\\x13\\x47\\x0d\\x2d\\x4d\\xb9\\xf6\\xbe\\x44\\x24\\x82\\x4d\\xaf\\xda\\x98\\xd7\\xfe\\x58\\x71\\x31\\xa5\\x5d\\xd8\\x14\\x05\\x77\\x0b\\xe6\\x70\\x02\\x64\\x4c\\x72\\xbe\\x79\\x24\\x06\\x21\\xa4\\x1a\\xf4\\xce\\x2c\\x73\\x52\\x5b\\x5f\\xea\\xc2\\x3d\\xc2\\x40\\x4d\\x95\\xf7\\xb7\\xe8\\xc1\\x66\\x94\\x69\\xf1\\x21\\xcb\\x90\\xba\\xa7\\xe2\\x63\\x84\\xda\\x81\\xe2\\xa2\\x82\\x58\\x28\\x99\\xbf\\x5f\\xa2\\x68\\x00\\x0c\\xad\\xa8\\x41\\xe3\\x9d\\x7a\\x01\\xea\\xc1\\x08\\xdd\\xf9\\x08\\x8a\\xfb\\xe2\\xc5\\x6d\\x42\\x81\\x3f\\x21\\x44\\x23\\x6c\\x52\\xb2\\x10\\xbe\\xb6\\x86\\x68\\x4e\\xc6\\xf0\\xe7\\x14\\x58\\xd9\\xa0\\x53\\xe5\\xfc\\x64\\x14\\xe6\\x6f\\x07\\xaf\\x73\\x37\\x04\\xac\\xda\\x01\\xc0\\x3c\\x97\\xac\\x37\\xc9\\x19\\xc7\\x5b\\x2a\\xe5\\xdd\\xc9\\x34\\x32\\xcd\\x5f\\x51\\x96\\x40\\x72\\x61\\xfc\\xaa\\x95\\xbb\\xb6\\x94\\x65\\x49\\xa3\\x75\\xa8\\xc3\\xd3\\x40\\x8d\\x51\\x88\\x48\\xe8\\x11\\x62\\x74\\xa1\\x4d\\x4d\\x80\\x3c\\x99\\x57\\x90\\x93\\x29\\x32\\x65\\xd3\\x22\\xb3\\xa7\\x10\\x9e\\x1b\\x9e\\x3e\\xa2\\xdb\\xba\\xc5\\x3a\\x6c\\xe5\\x90\\x0a\\xc1\\x11\\x99\\xf7\\x0b\\x12\\x56\\xe0\\xc3\\xce\\x63\\x88\\xdc\\x2b\\x11\\xde\\xed\\x0f\\x6a\\x0d\\x9c\\xe6\\x1a\\xcf\\x4e\\x49\\xc9\\x80\\x57\\xb5\\xbd\\x10\\xaf\\xd7\\xf8\\x31\\x38\\x44\\x6f\\xb8\\x94\\x55\\xf4\\x93\\xa3\\x5b\\x64\\x70\\xcd\\x81\\x4b\\x74\\x30\\x21\\x35\\xac\\xb6\\xde\\x49\\x9e\\x69\\xb0\\x40\\x13\\xff\\xd1\\xb5\\xac\\x05\\x79\\x07\\xe5\\xb9\\xb8\\xa9\\xb5\\x69\\x86\\x50\\x08\\xcd\\x32\\xa9\\x85\\xa7\\xaa\\x45\\xdb\\x19\\x74\\x5e\\x81\\x32\\xbf\\xa1\\x47\\xf6\\x2b\\x17\\xcc\\x47\\xe4\\x02\\xc3\\xe7\\x1f\\x5f\\x97\\xac\\x85\\x02\\x82\\x01\\xee\\xf6\\xa1\\x59\\x28\\x86\\x01\\xd7\\x61\\x08\\xd7\\x23\\xc5\\x60\\xbc\\x56\\x22\\x01\\xa5\\x8d\\x4c\\x4b\\x2d\\x69\\x8d\\x34\\xa9\\x54\\x90\\x0a\\xc2\\x06\\x4a\\xb2\\x46\\xb1\\x25\\x21\\x60\\x48\\x18\\x50\\x64\\x3f\\x5e\\x91\\x04\\x5c\\xa6\\x34\\x6d\\xec\\x9d\\x1c\\x61\\x90\\xd8\\x32\\xb4\\x50\\x8b\\x1c\\xbc\\x3b\\x15\\x83\\x94\\x1e\\xd9\\x5b\\x0c\\xc6\\x40\\xc7\\x7c\\x64\\xa0\\x85\\x92\\x80\\xdc\\x13\\x4c\\xb8\\x64\\x4f\\x24\\x81\\xa0\\xed\\xcb\\x88\\x77\\x18\\x8e\\x7f\\x34\\xaa\\x29\\x82\\x88\\xd5\\x1d\\x43\\x35\\x03\\xcb\\x1e\\x90\\x7c\\xb9\\xc9\\x6b\\x86\\x9c\\xaf\\x3b\\x26\\xb7\\x55\\xa8\\x96\\x26\\xf2\\x81\\xe0\\x30\\x2e\\x41\\xc1\\x86\\x2a\\x47\\x40\\x45\\x15\\x38\\x73\\xe0\\xd6\\x22\\x5b\\xce\\x2e\\x06\\x3d\\x83\\x26\\x0a\\x16\\x2c\\x14\\x79\\xcc\\x8d\\x6a\\xa5\\xd1\\xd1\\x2c\\x8a\\x38\\xbc\\x47\\xcd\\x76\\x64\\x74\\xca\\x41\\xef\\x3c\\xe7\\xda\\x9e\\xbd\\x38\\x26\\x20\\xb7\\xbf\\x8e\\x81\\x79\\x17\\xd5\\x0c\\x96\\x9a\\xa9\\xd2\\x26\\x51\\xeb\\x39\\x64\\xc8\\xe3\\x23\\xbd\\x1c\\xfa\\xe5\\x70\\x78\\xfc\\x1a\\x85\\x57\\xd8\\xd5\\x0c\\xda\\x17\\x37\\x9f\\x1c\\x1b\\xe2\\x50\\xcf\\x11\\x46\\xff\\x7a\\x1e\\xff\\x04\\x38\\xf6\\x32\\x3f\\x5d\\x07\\x94\\x6c\\x58\\x6d\\xad\\x12\\x5a\\xe8\\xf9\\x3a\\x51\\x37\\x05\\xd1\\xc0\\xd5\\xa0\\xb4\\x49\\x1a\\x20\\x1e\\x7c\\xaf\\x63\\x59\\x0d\\xc2\\x3b\\xb4\\x34\\xa0\\x58\\x31\\x05\\x0c\\x10\\xe3\\xa6\\x1a\\x99\\x34\\xcc\\xb0\\x43\\xd9\\x1e\\x37\\x0c\\x91\\x82\\x32\\x04\\x6f\\xa0\\x99\\x41\\xbf\\x72\\xa0\\x82\\xc4\\x9d\\x78\\x2c\\x12\\x5a\\x1f\\x92\\xf4\\x08\\xc6\\xa8\\x59\\xa3\\xd2\\xf7\\xd9\\x7b\\xef\\x8e\\x4e\\x65\\x43\\x2f\\x6d\\xd5\\x2b\\x20\\x9f\\x7c\\x25\\x25\\x11\\x2f\\xd0\\x3f\\xbb\\xdc\\x55\\x6c\\x5e\\x23\\xf5\\x41\\x5e\\xb0\\x24\\x08\\x8a\\x08\\x3b\\x74\\xd7\\xa3\\x92\\x00\\x37\\xc6\\x6b\\x1b\\xe8\\x11\\x62\\x5a\\x11\\x42\\x4e\\x6a\\x14\\xf1\\xbb\\x62\\x5a\\xc6\\xd9\\xe7\\x1f\\xa0\\xe5\\xf4\\x2b\\x91\\xd3\\xb8\\xb2\\x17\\x6f\\xa0\\xc5\\xf0\\xdd\\xe3\\xb2\\xb6\\xf2\\x5f\\xa2\\x06\\xf9\\x88\\xe2\\x18\\x9f\\xc4\\x02\\xae\\x19\\x2a\\x91\\x37\\xc7\\xdf\\x46\\xdd\\x5b\\x0d\\x9f\\x49\\x91\\xba\\x26\\x70\\x95\\x92\\xcf\\xb1\\xe8\\x84\\xe0\\x25\\x90\\x97\\x25\\x32\\x1a\\xe7\\xed\\xd8\\x0e\\x03\\xc1\\x02\\x07\\xad\\xfc\\x2d\\x66\\x47\\x82\\x41\\x89\\x46\\xc5\\x24\\x72\\x6e\\x73\\x46\\x13\\xe2\\xa4\\x02\\x99\\xb1\\xcc\\x93\\xc0\\x00\\x0f\\x84\\x0a\\xa6\\xe2\\x3f\\xbd\\x97\\xd2\\xd4\\x94\\xd6\\x0a\\x3c\\x56\\x15\\xed\\xcc\\x10\\x72\\x6f\\xb9\\xef\\x58\\x0c\\xf4\\xa6\\xb9\\xc4\\x8a\\x6c\\xd1\\xb2\\xca\\x80\\x7e\\xc0\\x81\\x6c\\xe6\\x0a\\x53\\x13\\x90\\x92\\x60\\x3b\\xab\\xe5\\xf8\\x24\\x28\\x7b\\x0f\\xdb\\xf0\\x4a\\x75\\x4a\\x3d\\x7a\\x2b\\x09\\xbb\\x86\\xa1\\x57\\xed\\xba\\x5f\\x7e\\xb3\\xc1\\x89\\xa6\\x14\\xba\\x21\\xc4\\x34\\xbb\\x25\\x66\\x6c\\x61\\x2e\\x7a\\x00\\x9c\\x7c\\x75\\xf9\\x1e\\xc2\\x9a\\xc6\\x8a\\x46\\xa1\\x89\\x95\\x4d\\xf5\\x93\\xef\\x10\\x45\\x5e\\xce\\xe4\\x3d\\x2e\\x76\\xa0\\x18\\x58\\x72\\x0e\\x54\\x22\\x16\\x87\\x01\\xec\\x57\\xbb\\xcb\\x49\\xed\\xaf\\xd5\\x34\\x66\\x04\\x2b\\x6c\\x3d\\x7d\\x2f\\xb5\\x45\\xb9\\xc2\\x1f\\x46\\x00\\x26\\xf8\\xb6\\x58\\xbc\\x6a\\xbd\\x87\\xa4\\xe1\\x6c\\x14\\x0b\\x50\\x69\\x46\\xd3\\xc0\\xc0\\xf5\\x24\\xae\\xde\\xcc\\xeb\\x34\\x0a\\x44\\x1a\\xf6\\x6f\\x20\\x30\\x42\\x8e\\x37\\xef\\xa2\\xb9\\xc0\\x1c\\xa0\\xf3\\xea\\xee\\x4e\\xb2\\x86\\xa3\\x9d\\x91\\x82\\xe1\\x24\\x27\\xa2\\xdc\\x7c\\x5c\\x91\\xce\\x0b\\xd1\\x4e\\xb2\\xd1\\x31\\x67\\xe2\\xcf\\x44\\x50\\xf9\\x26\\xfa\\x09\\x12\\x2e\\x7e\\x03\\xe0\\xe3\\x05\\x6d\\xa7\\xd8\\x15\\xbe\\x4d\\x32\\x79\\x86\\xba\\xbd\\xdb\\x69\\xf2\\x04\\x6f\\x93\\x08\\xc1\\x5d\\xa4\\xe5\\xd9\\x1f\\x7c\\x1d\\x7a\\x9a\\xcc\\xcf\\x30\\xd5\\x93\\xd6\\x24\\xbb\\xd2\\xbf\\xc3\\x38\\x89\\xa6\\x6b\\xcd\\xd8\\x8c\\xed\\x1b\\x0d\\xa6\\x44\\x70\\xb8\\x61\\x4a\\x32\\x84\\x1a\\xaa\\x34\\xd4\\x17\\x9e\\x2e\\xc5\\x62\\x75\\x34\\x43\\x99\\x82\\x35\\xec\\x76\\x8c\\x63\\x55\\x62\\xe5\\x53\\xa9\\xe4\\x32\\x15\\x1c\\x8a\\x1c\\xb4\\xeb\\xdb\\x18\\xdb\\x51\\x71\\x8b\\x4a\\x66\\x80\\x92\\x30\\x85\\xb8\\xc7\\xdd\\x4e\\x06\\x27\\x25\\xdd\\x82\\x0a\\xe1\\x46\\x20\\x66\\x29\\x57\\x76\\xe3\\xfc\\x47\\x5b\\x90\\x29\\x27\\x12\\x6e\\x90\\x9c\\xb7\\x94\\x9f\\xd3\\x78\\x22\\x45\\x08\\x79\\x0f\\x4a\\x4d\\xc0\\xa0\\x05\\x0b\\x53\\xd5\\x1c\\xf1\\x6e\\xc4\\xae\\xa4\\x97\\x8e\\x6c\\x31\\x4c\\x6c\\x32\\x01\\xa4\\x9f\\xad\\xb5\\x2c\\x05\\x08\\x6e\\x9f\\xb3\\xcd\\xbd\\xca\\x1a\\x59\\x31\\x3f\\x64\\xfd\\x51\\x15\\x13\\xb1\\xcb\\x2d\\xe3\\xa6\\xfa\\x04\\x0d\\x2b\\xc7\\xad\\x8e\\xae\\xca\\x4a\\x5a\\xe0\\xab\\xe5\\xea\\xe5\\xd0\\x3b\\xb5\\xb5\\x23\\xa9\\x4a\\x2d\\xfe\\xee\\xd3\\x03\\x92\\x15\\x40\\xcc\\x55\\x23\\x5f\\x8c\\x94\\x6a\\x78\\x59\\x4f\\x6a\\xce\\x79\\x84\\x3e\\x0c\\x15\\x7a\\xfe\\xcb\\x6b\\xa1\\x09\\x4b\\x87\\x81\\x02\\x0e\\x61\\x2d\\xa9\\x15\\xd1\\xe8\\x46\\x46\\xfa\\x70\\xd8\\x1c\\x51\\xe2\\x64\\x62\\x07\\x23\\x74\\x18\\xa6\\xb8\\x13\\x22\\xa9\\x18\\xa6\\x6f\\xab\\x13\\x5f\\x16\\x31\\x99\\xbc\\x53\\xe8\\x7e\\x79\\x6b\\xdf\\xeb\\x7c\\x99\\x8e\\x18\\x17\\x9a\\x7b\\x0a\\xdf\\x43\\xa5\\x65\\xa6\\xc8\\xed\\x4c\\x94\\x7d\\x62\\xb7\\xfc\\x78\\xe8\\x2c\\x37\\x4a\\xa9\\xcb\\xa8\\xa5\\x21\\xeb\\x45\\x48\\x3f\\x1d\\x8d\\x53\\xd8\\x21\\x37\\x82\\x1b\\x52\\x9e\\x5b\\xbf\\x39\\xd4\\x23\\xac\\x37\\x0e\\xe2\\x13\\x1b\\xb8\\xa9\\xf3\\x5a\\xc6\\x43\\x68\\x5e\\x64\\x6c\\xb4\\x1d\\x07\\x81\\x21\\xb3\\x17\\x12\\x9b\\x11\\x98\\x73\\xc9\\xf6\\x3b\\xe0\\x26\\x1f\\x88\\xa8\\x8a\\xba\\xa1\\x59\\x9a\\x66\\xc6\\x3d\\xf7\\xba\\xc8\\xa0\\x35\\x3f\\xc1\\x3f\\xb5\\xc3\\xa7\\x2c\\xe1\\x45\\xa5\\xc8\\x13\\xe8\\x3e\\x92\\x72\\x86\\x1a\\x18\\xd2\\xe9\\x19\\x98\\xe4\\x75\\xf4\\x41\\x25\\x07\\x52\\xaa\\x47\\xcb\\x18\\x9c\\xf3\\x39\\xe4\\x84\\x47\\x7a\\xfe\\x28\\x8e\\x18\\x01\\x82\\x75\\x3d\\x20\\x2d\\xae\\xcc\\x8b\\x90\\x4d\\xc3\\xed\\xfd\\x94\\x21\\xf8\\x47\\x18\\x0d\\x0a\\xda\\xd1\\x24\\x30\\x7b\\xf2\\x00\\x53\\x6c\\x67\\x5a\\x63\\x34\\x32\\xa1\\x55\\xac\\x0b\\xdf\\xb4\\x03\\xa6\\x45\\x09\\x9c\\xb5\\x04\\x47\\xcc\\x4b\\x3f\\x20\\x00\\x09\\xa4\\x1d\\x48\\x1a\\x4f\\x2b\\xf0\\x03\\x18\\xb2\\x54\\x67\\x15\\x38\\xb3\\xb3\\xe9\\x15\\x43\\x25\\xc7\\xb2\\x22\\xf3\\x1c\\xf5\\xb1\\x64\\xf5\\x48\\x0b\\x57\\xbd\\x96\\x8b\\x96\\x0c\\x4a\\x3c\\xbf\\xed\\x4b\\x13\\x7e\\xd4\\xc2\\x42\\x85\\x48\\xc9\\x8f\\x10\\xe4\\x8a\\x97\\x92\\x38\\x52\\x82\\x6a\\x4a\\xb8\\x3e\\x0a\\xca\\x4a\\x2b\\xd6\\x17\\x6e\\x4f\\x3f\\x20\\x6c\\x86\\x19\\x5b\\x96\\x12\\x13\\x95\\x1a\\xa2\\x47\\xaf\\xd4\\xd4\\xa9\\xb2\\x26\\xb7\\x30\\x00\\xec\\xb0\\xba\\x61\\x44\\xd3\\xca\\xd5\\xaf\\xfd\\x23\\x97\\x2d\\xc6\\xf5\\x12\\x9d\\x50\\xa8\\xe4\\x4f\\x41\\xa7\\xac\\x40\\x2f\\x38\\x43\\xa3\\x02\\xc1\\xe9\\x5a\\x98\\x17\\x00\\x3d\\x81\\x28\\x8c\\x0f\\x3d\\x17\\x22\\x6d\\x6a\\x88\\x46\\x73\\xb0\\x00\\x90\\xbe\\xfd\\x12\\xa3\\x3e\\x25\\x28\\xde\\xa3\\x11\\x0c\\xbc\\x65\\xa6\\xba\\x42\\xc8\\x1e\\x2d\\xab\\x44\\x23\\xf6\\x1b\\x8b\\x87\\xb9\\xee\\x33\\xd0\\x84\\x2d\\xed\\xa1\\x9b\\x7a\\xe9\\xb5\\xff\\x92\\x22\\x12\\xd1\\x5a\\x0e\\x91\\x01\\xe3\\x1a\\x33\\x20\\xb0\\xa9\\x59\\x9b\\xc3\\xd8\\x76\\x3e\\x97\\x86\\x2d\\xd4\\x25\\xbe\\x43\\x21\\xae\\x82\\x29\\xe3\\x4e\\x36\\x93\\x32\\x84\\x14\\xba\\xf1\\x29\\x3b\\xcc\\x27\\x31\\x5f\\x7c\\xe5\\x4e\\x40\\x34\\xae\\x5d\\x0c\\xec\\x05\\x13\\x7d\\xb5\\x51\\x26\\x22\\xf8\\x90\\x12\\x33\\x8e\\x33\\xc0\\xab\\x54\\x98\\x60\\x21\\x75\\x92\\xab\\x2a\\x0b\\x8a\\x62\\x6e\\x93\\xd2\\xba\\x79\\x45\\x8d\\xc1\\xd4\\x5f\\xab\\xf9\\x04\\x52\\xfa\\x83\\x42\\x53\\x88\\x18\\x3e\\x85\\x48\\x31\\x09\\x08\\xdb\\x96\\x8b\\x10\\xd5\\xe6\\x51\\x62\\x41\\xbe\\x1b\\xae\\x3f\\x8e\\x05\\x8b\\x4a\\xc6\\x2f\\x14\\x9a\\x15\\x9e\\x28\\x54\\x61\\x9f\\xf8\\xa6\\xc0\\xb2\\x35\\x6a\\x33\\x42\\xc4\\x67\\x08\\x44\\xea\\x12\\x85\\x65\\x67\\x84\\xa5\\x1a\\x0c\\x3b\\x51\\x78\\xa0\\x99\\x05\\x04\\x25\\xa0\\x43\\x9d\\xdd\\xc4\\x15\\x45\\xf9\\x88\\xf6\\x20\\xa7\\x40\\xb1\\x0e\\x36\\x83\\x75\\x2f\\x36\\xba\\x70\\xd3\\x23\\xff\\xc0\\x4b\\x75\\x4d\\x46\\x20\\xa8\\x89\\xe6\\x13\\x58\\xca\\xf6\\x0b\\xdf\\x1b\\x54\\x16\\xed\\x78\\x9d\\xe0\\x5e\\xe9\\xa2\\x96\\x7d\\x1e\\xa1\\x54\\x05\\x21\\xa7\\x00\\x0a\\x30\\x90\\xb4\\xeb\\xdc\\x1d\\xac\\x0a\\x1d\\x97\\x86\\xe3\\xcc\\xb8\\xa9\\xdb\\xf6\\xfa\\x18\\x79\\x4d\\x27\\x5e\\xef\\xa5\\xd7\\x38\\xa0\\x2b\\x0a\\xf6\\x2a\\x17\\x3f\\xcc\\xd4\\x52\\xc2\\x2a\\x10\\x50\\xf7\\x9e\\x39\\xef\\x04\\xb5\\xab\\xcf\\x57\\x4e\\x6f\\x02\\xc8\\x33\\xa0\\xeb\\x9c\\x85\\xde\\x49\\x1e\\xa2\\x93\\xad\\x72\\x0e\\xd1\\x9e\\x65\\xee\\x76\\xc5\\x3e\\xdb\\x5c\\x3e\\x02\\x89\\x64\\x56\\xab\\xe5\\xd9\\x80\\x1d\\x38\\x21\\xb6\\x85\\x6d\\xf6\\xaa\\x35\\x21\\x4b\\x47\\x90\\x35\\x29\\x64\\x58\\xc2\\xcb\\x13\\x44\\xf9\\x16\\x0f\\x49\\x2e\\x55\\xf0\\x25\\xd3\\xe6\\x92\\x10\\x36\\x84\\xfb\\x5a\\x52\\xca\\x00\\xd8\\x4e\\xbf\\x99\\x4a\\x50\\x53\\x97\\x33\\xe6\\xb0\\xf8\\x4e\\x19\\xce\\x79\\x04\\x7c\\x05\\xd8\\xc2\\xb9\\x51\\xbb\\x48\\x22\\xe6\\x99\\x7a\\x9f\\x2f\\x11\\x7f\\x01\\xf8\\x61\\x26\\xe8\\x63\\x6d\\x7e\\xe7\\x8c\\x22\\xc9\\x78\\x5b\\xbd\\x30\\xc7\\xae\\x9f\\x0e\\x4b\\x0b\\x72\\x89\\x10\\x6d\\xaf\\x71\\xcd\\x16\\x09\\xa1\\xa4\\xf0\\xb0\\xcb\\x08\\x29\\x90\\xa1\\xb4\\xf8\\x47\\x42\\xeb\\x12\\xdf\\x39\\x58\\xb1\\x9e\\x0d\\x11\\x48\\x95\\x4d\\x1a\\x40\\xbc\\xd1\\x05\\xa4\\x15\\x32\\x7d\\x24\\x14\\xf8\\x72\\x3f\\x2a\\x44\\x14\\xfd\\x6e\\x9c\\x24\\xa6\\x41\\xc0\\x96\\xfd\\x12\\xad\\x51\\x92\\xa9\\x92\\xc1\\x00\\xe2\\xc1\\xc0\\x82\\x65\\x90\\x1c\\x07\\x63\\x87\\x02\\xed\\x36\\x2a\\x15\\xf2\\x7d\\x62\\x5f\\xdb\\xc3\\x51\\x4b\\x9c\\x3d\\x24\\x12\\x65\\xd4\\x67\\x60\\xa4\\xbb\\x4c\\xa9\\xe9\\x03\\x6d\\x9a\\xca\\x9f\\x79\\xd1\\x5c\\x40\\x67\\xaf\\x11\\x58\\xe9\\x2a\\x3d\\x74\\xd7\\xd4\\xa8\\x09\\x3b\\xbd\\xad\\x27\\xae\\xca\\x69\\x54\\x98\\xf7\\x42\\xf0\\xbf\\xc3\\x27\\x93\\x87\\xa3\\x07\\x03\\xa3\\xd2\\x1a\\x8e\\x83\\xdc\\x80\\x52\\x0f\\xef\\xde\\xec\\xe0\\x61\\x1e\\x38\\x5d\\x35\\xcb\\x78\\x74\\x48\\xac\\x63\\xbf\\x08\\xbb\\x67\\x50\\x4a\\xb2\\x3c\\x3b\\xef\\x07\\x7d\\x81\\xf7\\xa5\\xb2\\x85\\x08\\xe5\\xea\\x53\\x2e\\xa7\\x09\\x90\\x8b\\xc7\\xfb\\x4c\\x1f\\x95\\x50\\xbc\\xa8\\x74\\x09\\x6a\\xe6\\x53\\x9a\\x5c\\x40\\x7e\\xc1\\x47\\x72\\xa0\\x30\\x58\\x99\\x78\\x0b\\x78\\x26\\x4e\\xb7\\xa5\\x67\\x96\\x98\\x4c\\xd4\\x91\\x54\\xbe\\x10\\x58\\x11\\x66\\x5e\\xc9\\x8f\\x48\\x8c\\x64\\x8a\\x5d\\x76\\x65\\xaa\\x5f\\x6a\\x55\\x72\\xc4\\xd2\\xa2\\x1c\\xc7\\x95\\xa6\\x10\\xd0\\x81\\xd7\\x4c\\x15\\xad\\x16\\xc4\\xce\\xe3\\xd0\\xc9\\x11\\x98\\xde\\x5b\\x67\\x61\\xa9\\x13\\xa9\\xa1\\x6d\\x18\\x24\\xd9\\x7b\\xf4\\xba\\x9c\\xcc\\x45\\xb2\\x79\\x9f\\xf4\\x03\\x41\\x5e\\xca\\x38\\x59\\x89\\x8e\\xa4\\xdc\\x86\\xde\\x8a\\x4f\\x3f\\x73\\x8c\\xf5\\x98\\x58\\x41\\x2a\\xb8\\xfc\\x33\\xb6\\x6a\\x61\\x12\\x89\\x8e\\x2a\\x5a\\x08\\x62\\x66\\x5e\\x48\\x24\\x15\\x08\\x6b\\x7b\\x7b\\x37\\xd2\\x85\\x6e\\xac\\xc8\\x52\\xaf\\xe2\\x05\\x89\\xa2\\x96\\x10\\xc3\\x02\\x9d\\x19\\x16\\xf1\\xa4\\x27\\x1b\\x9b\\x63\\xc6\\x76\\x70\\x4e\\x66\\xa6\\xca\\xa4\\x61\\x36\\x5c\\x8e\\x88\\xc8\\xc4\\x73\\x76\\x3a\\xab\\x07\\xe3\\xab\\x5e\\xf8\\x65\\xd7\\x1b\\xc6\\xcf\\x6b\\xa7\\x27\\xe0\\xf0\\x2b\\x63\\x28\\xa4\\x28\\xbd\\x6c\\xaf\\xaf\\x48\\xea\\x28\\xa8\\x1f\\xca\\x30\\xbf\\x1c\\x7e\\x6e\\x48\\x71\\x04\\xa3\\x5f\\x7e\\xbc\\x5c\\xb6\\x6e\\x4a\\xff\\xb9\\xaa\\x5f\\x1a\\xd6\\xec\\xad\\x37\\x68\\xa7\\x7d\\x5b\\x37\\x8a\\xc4\\xf7\\x53\\x37\\x7c\\x94\\xee\\x9b\\xf6\\xea\\x95\\x94\\x88\\xc5\\x41\\x9c\\xbe\\xea\\x50\\xbf\\xd5\\xca\\x89\\xaa\\xb1\\x89\\xcf\\x0c\\x15\\x88\\xcc\\x97\\xf6\\x77\\x47\\x57\\xb7\\x8e\\x04\\xbc\\x8b\\x9e\\xa8\\x14\\x02\\x8c\\x4c\\xbf\\x0a\\x8c\\x5a\\xec\\x6c\\x2d\\x98\\xb4\\x78\\x3c\\x60\\xc5\\xbd\\x31\\x68\\x98\\xc9\\xd2\\x8e\\xf6\\x99\\x97\\x12\\x17\\xcc\\x48\\x67\\x11\\x1f\\xc6\\x4a\\x3b\\x5a\\x7d\\xff\\xea\\x10\\xe6\\x4d\\x89\\xfb\\xd7\\xab\\x27\\x96\\xb6\\x67\\x97\\xc8\\x1a\\x7a\\x2d\\x3d\\x03\\x1b\\xc9\\x0f\\x72\\x62\\x6a\\x5e\\x26\\x64\\x45\\x86\\x53\\xba\\xf8\\x16\\x6c\\x8c\\x65\\x12\\xa3\\xa7\\x9e\\xce\\xd9\\xd7\\xbd\\x2c\\x1b\\x30\\xb4\\xe9\\xf4\\x5b\\x44\\xaf\\x47\\x07\\xfe\\xb5\\xda\\x87\\x44\\x42\\xf1\\x7f\\x69\\x3f\\x4e\\x2c\\xaf\\xce\\x38\\xe8\\x88\\x5d\\xe3\\x0f\\x94\\x17\\x6d\\x3a\\x48\\xf8\\x91\\x79\\x13\\x34\\x9e\\xaf\\xeb\\xc5\\x3c\\xe7\\x68\\xf2\\x47\\x32\\xe4\\x59\\xc5\\x83\\x4d\\xe4\\x0b\\xc6\\x35\\x7e\\x63\\x79\\x68\\xb6\\xce\\x00\\x08\\xbc\\xb1\\x67\\xfa\\xe0\\x9f\\x6d\\xf5\\xa4\\x17\\x08\\x70\\x5f\\xd5\\x5e\\x47\\x70\\x6e\\x9e\\x00\\x22\\x45\\x93\\xb4\\x82\\xff\\xd8\\xa1\\x11\\x57\\x08\\xee\\xa1\\xb6\\x1a\\x1c\\xee\\x60\\x62\\xe0\\x3b\\x49\\x95\\xc9\\xec\\x80\\x66\\xa8\\x8d\\x6b\\xd2\\x41\\x93\\x16\\x89\\x1c\\xc3\\xba\\x06\\x95\\x04\\x08\\xbe\\xfc\\x64\\x5a\\xac\\xc1\\x0f\\x9b\\x2e\\x98\\x82\\xa6\\x36\\xbe\\xe3\\x59\\x0e\\xca\\x20\\x57\\x51\\x25\\x9f\\x7d\\xe4\\x5c\\xaa\\xc4\\x41\\xd5\\xf1\\x16\\x97\\xd6\\x20\\x80\\x29\\x64\\xdd\\xc7\\xe4\\x65\\x5e\\x11\\x24\\x72\\x32\\x7d\\x1a\\x53\\x9a\\x4a\\xb7\\x0f\\x07\\xb3\\xcb\\x3a\\x63\\x05\\x85\\x59\\xac\\x47\\x1b\\xf6\\x97\\xe4\\xea\\x27\\xf4\\x2f\\xdd\\xa4\\x7e\\x30\\x20\\x4e\\x8c\\xe1\\x63\\x3a\\x5c\\x50\\x59\\x29\\xa6\\x01\\x83\\x18\\xe9\\x34\\x35\\x5b\\xc0\\x73\\xba\\x71\\x8d\\xa8\\x53\\xdf\\x4a\\x26\\x4b\\x15\\x37\\x9a\\x06\\xbb\\x24\\xb8\\xcc\\x38\\x0c\\x87\\xf3\\xe1\\x64\\x8c\\xd9\\xa2\\x80\\x32\\x61\\x1a\\xb6\\x73\\x8e\\xfa\\xee\\x40\\xf4\\x60\\xe3\\xd4\\x26\\x51\\xd4\\x1c\\x09\\x5a\\x60\\x8d\\x81\\x3b\\x90\\xe0\\x24\\xe7\\x64\\x4c\\x1e\\xf6\\x06\\x36\\x4f\\x11\\x17\\xbf\\x8d\\x45\\xb7\\xa0\\xf6\\xc0\\xa6\\xcb\\x71\\x1e\\xe7\\x9f\\x2e\\x88\\xee\\x5e\\xf7\\x4a\\x98\\x52\\x3e\\xaa\\x13\\x89\\x40\\xa4\\x0c\\x0e\\xbb\\xd1\\xdf\\x15\\xce\\x90\\x95\\xd1\\xab\\xe1\\x3e\\xe8\\xbd\\xff\\x44\\x23\\x20\\x06\\xe7\\x30\\x98\\x24\\x17\\x67\\x28\\x0f\\x20\\x0f\\xdd\\x82\\xd6\\x1c\\xeb\\xbc\\x08\\x2b\\x42\\xf3\\x45\\xe0\\xd4\\x4d\\x00\\xda\\xfc\\x2a\\x12\\x50\\xda\\x28\\xfd\\x66\\x80\\xd5\\x5b\\x12\\x12\\x1c\\x8f\\xa6\\x82\\x89\\x4b\\x1f\\xec\\x17\\x28\\xf1\\x8f\\xa9\\xac\\x3a\\xf7\\xf4\\x3e\\xd5\\xf7\\x52\\x5b\\x12\\xbc\\x32\\x3b\\xc8\\x73\\x46\\x9d\\xb4\\x55\\x4a\\x4f\\x78\\xb2\\x20\\x3c\\xde\\xbd\\x06\\x18\\xee\\x2b\\xa9\\x85\\xf6\\x6a\\x05\\xcd\\x72\\xb6\\x87\\x08\\x04\\x8f\\xc4\\xdf\\x71\\x34\\x32\\x80\\x23\\x38\\xc3\\x5b\\x85\\x4a\\x96\\x43\\x04\\x46\\x96\\x3d\\x62\\xd6\\x89\\x8d\\x2a\\xb5\\xc3\\xc3\\x22\\x51\\x07\\xb6\\x98\\x6e\\x88\\xa3\\x13\\xb9\\xc6\\x82\\x07\\x76\\x3b\\xa8\\xf5\\x33\\x16\\x2c\\x3f\\xd0\\x85\\x48\\x94\\x1e\\x52\\x60\\x13\\xf2\\x30\\x1f\\x10\\xea\\x6b\\x59\\x82\\x2c\\x52\\xf9\\x04\\x54\\xed\\xa1\\xd2\\xea\\x43\\x9d\\x49\\x2d\\xf9\\xad\\xd0\\xf6\\x8c\\x94\\x95\\xf1\\x53\\x91\\xd7\\x07\\x2f\\xe9\\x99\\x02\\x57\\x0a\\xf8\\x43\\xd7\\xcb\\x9c\\x41\\x72\\x1e\\x73\\x35\\xe5\\xb1\\x3a\\x0b\\x31\\xdb\\xd6\\x56\\x74\\xab\\x89\\x1b\\xad\\xd8\\xf2\\xd2\\xe1\\x30\\x26\\x40\\xa4\\xc4\\x57\\xd2\\x9c\\xd4\\x83\\xe4\\x51\\xd2\\xc5\\x7d\\xae\\x33\\x6a\\x28\\x9f\\x14\\x77\\xb8\\x44\\x39\\x6f\\x23\\xe9\\x2c\\x81\\x11\\xe1\\x04\\x63\\x45\\x64\\xc4\\xba\\x24\\xdc\\xa4\\xd4\\x8c\\x9d\\xa3\\x9c\\xe2\\xf7\\xa6\\x47\\xee\\x1b\\xb7\\x9e\\x66\\xcf\\xe7\\x68\\x68\\x0d\\x5c\\xcd\\x46\\xae\\xa0\\x23\\xb8\\x75\\xfe\\xfa\\x08\\xcc\\x23\\x8a\\x70\\xef\\x33\\x6e\\x06\\xb2\\xd8\\xd9\\xaf\\x1b\\xbb\\x90\\xce\\xd5\\x5d\\x76\\xf8\\x81\\x4a\\xae\\x23\\x37\\xa0\\x87\\x7b\\x08\\x74\\x97\\xd4\\xf1\\x2b\\x18\\x50\\x49\\x8f\\x32\\xdb\\x35\\x24\\x64\\x62\\x17\\x1f\\xf5\\x8c\\xef\\x41\\x16\\x5c\\xd7\\x8d\\x63\\xe2\\x36\\xcc\\xb8\\xd6\\x1b\\x52\\x37\\xb7\\x66\\x24\\xb7\\x66\\x0e\\x3b\\x70\\xf1\\xc1\\x6c\\x31\\x6d\\xae\\xda\\xe8\\x3d\\x83\\xc5\\x8d\\x31\\x14\\xe0\\x07\\x93\\xf3\\x92\\x8d\\x1a\\x0c\\xc6\\x43\\xc1\\xe1\\xda\\xf3\\xc0\\x24\\x88\\x7c\\x89\\xb9\\xfd\\x15\\x30\\xf6\\x70\\x74\\x22\\xe1\\x63\\xee\\xcb\\x90\\xf2\\xc7\\xfc\\x2d\\x10\\x45\\x2d\\x56\\x30\\xf0\\xd4\\x32\\x4d\\xc4\\xd6\\xd9\\xb9\\xdf\\xc8\\xdb\\x82\\xb0\\xa5\\x87\\xb3\\xff\\xfe\\x49\\x77\\x23\\xcf\\x0c\\x9b\\x55\\x0e\\xc0\\x71\\xc8\\xfe\\x34\\x48\\xea\\x19\\x5d\\xc4\\x31\\x18\\x05\\xfa\\x39\\x6e\\x23\\x0b\\x6f\\x44\\x5a\\x60\\xfd\\xcc\\x8c\\x9e\\xd1\\x63\\x90\\xe2\\x2a\\x28\\xeb\\xb1\\xd5\\x7a\\xe0\\x40\\x10\\x80\\x9b\\xf1\\x37\\xcd\\x28\\xcd\\x8d\\x61\\x32\\x4d\\x31\\x03\\xbf\\x1a\\xc4\\xc0\\xd9\\x2c\\x31\\x58\\xfe\\x26\\x65\\x70\\x7b\\xe8\\x97\\x29\\xaa\\x23\\x88\\x75\\x37\\x39\\x18\\xc2\\x12\\x80\\x33\\x08\\xab\\xb9\\x7c\\x31\\x80\\x51\\xbc\\xda\\x28\\x56\\xb2\\xbc\\x2c\\x68\\x22\\x3e\\x5d\\x16\\xd9\\x5c\\xa5\\x8b\\x67\\xf5\\x4a\\x71\\x1b\\xee\\x74\\xd3\\xc4\\x67\\xa3\\xb8\\xb2\\xed\\xf7\\xdd\\x49\\x45\\xc0\\x9b\\x89\\x1a\\xba\\x9f\\x83\\x1c\\xb1\\x3d\\x9a\\x74\\x1a\\xb8\\x68\\x2f\\xc2\\x9d\\x0f\\x58\\x1c\\xd6\\xda\\xca\\x10\\x7f\\xb5\\xc6\\xf5\\xbd\\xa2\\x42\\x74\\x13\\x4b\\xb2\\x2f\\x18\\xec\\x8f\\x66\\x3e\\xfa\\x58\\x59\\xce\\xe5\\xad\\xcb\\xc9\\x97\\x2a\\xc1\\x22\\x1c\\xd6\\x40\\x72\\xbd\\x5d\\xc5\\x98\\xfb\\xa0\\xc0\\xaf\\xdb\\xb5\\xa7\\xa0\\x65\\x7c\\x0a\\x13\\x21\\x34\\x9b\\x72\\x9e\\x78\\x4c\\x3c\\x4c\\x41\\xb2\\xae\\x17\\xa2\\x26\\xe2\\x28\\x95\\x97\\xc0\\x44\\x2b\\xf3\\x35\\x02\\x21\\x33\\xa5\\x78\\x6f\\x38\\xe7\\x86\\x3f\\x18\\x74\\xbf\\x6b\\xd9\\x6b\\xe1\\xa7\\xb4\\x58\\x3b\\x01\\x90\\x68\\x62\\x43\\x6c\\x25\\x4a\\x4b\\x08\\xe6\\x19\\x5b\\x07\\x7f\\x7f\\xc0\\x65\\x42\\x49\\x48\\x85\\x95\\x66\\xbb\\xa9\\x7f\\x0f\\xd0\\x9c\\x8a\\xde\\xbc\\xcd\\xae\\x28\\x6c\\x01\\x02\\x02\\xdc\\x4a\\x00\\x40\\x12\\x62\\x59\\x9f\\x92\\x5b\\xc6\\xd2\\x1a\\x3d\\x26\\x2b\\x82\\x47\\x83\\x08\\x69\\x68\\xbf\\xec\\x51\\x5f\\xb3\\xfd\\x3f\\x25\\xcb\\x55\\x99\\xef\\x44\\xe1\\x59\\xd4\\x4b\\x7b\\xe0\\xbb\\x43\\x0c\\x16\\x21\\x8c\\xab\\xd4\\xe8\\x73\\x8e\\x29\\xc4\\x7d\\x3b\\x5a\\xef\\x12\\x40\\xb4\\xeb\\x61\\xfa\\x45\\x71\\x21\\x78\\x26\\xd5\\x22\\x09\\x29\\x56\\x8d\\xfd\\x74\\xd6\\x54\\x20\\x00\\x8e\\xc1\\x2d\\xa4\\x04\\x26\\x07\\x10\\x60\\x3d\\x1d\\xda\\x85\\xf8\\x4e\\x21\\x2b\\x50\\xda\\xf8\\xe7\\x82\\x3c\\x14\\x01\\x21\\x2f\\x6f\\x89\\x6d\\xf8\\xdb\\xb0\\x15\\xe5\\x66\\xa6\\x0e\\x1f\\x5f\\x6e\\x32\\x49\\xc6\\xc3\\x8a\\x26\\x03\\x55\\x9c\\x23\\xf0\\x45\\xbc\\x37\\x3c\\x14\\x54\\xcd\\xa2\\x28\\xd4\\xb1\\xf3\\x56\\x17\\x5d\\xd4\\x94\\xa0\\x17\\xb1\\xba\\xb3\\x9e\\xc6\\x08\\x41\\x26\\x98\\x4b\\x40\\xf6\\x88\\x35\\x6d\\x7e\\xca\\x2d\\x65\\x21\\x40\\x23\\xcc\\x3d\\x17\\x0d\\x4a\\x9c\\xeb\\x18\\x69\\xa8\\x46\\xc3\\x93\\x4d\\xa0\\xab\\xf2\\x7b\\xac\\xcd\\x47\\x17\\x84\\xa8\\x30\\xb9\\x5b\\x34\\x8b\\x90\\x59\\x0b\\x4e\\x02\\x18\\x0d\\xa9\\x34\\x16\\x4e\\x92\\x57\\xe6\\x0f\\x84\\x77\\x63\\xb2\\x16\\x60\\x3c\\xb5\\x3e\\x02\\x18\\x0c\\x06\\x89\\xc6\\x0d\\xf7\\x39\\x30\\xe3\\x81\\xc4\\xbb\\x21\\x95\\x24\\x86\\x2a\\x80\\x01\\x0a\\x80\\x91\\xc7\\x94\\x1e\\x9c\\x29\\x90\\xdb\\x36\\x9d\\xf5\\xa8\\xba\\xda\\x86\\xce\\xb6\\xfb\\x76\\xbe\\x01\\x2f\\xba\\xf1\\xc8\\x3b\\x82\\x89\\xd5\\xe9\\xa3\\x22\\x60\\x91\\x24\\x26\\xca\\xe3\\x6b\\x0f\\xfb\\xd9\\x2d\\x32\\x5c\\x1a\\x11\\xd1\\xb8\\x1a\\xc2\\x55\\x8b\\x04\\x17\\xf4\\x75\\x05\\xe3\\x7b\\x38\\xaf\\xd4\\x60\\x8c\\xfa\\x3a\\x10\\xa0\\x94\\xc1\\x03\\x5d\\xfa\\x3a\\x2d\\x53\\x95\\x93\\x5a\\xce\\xec\\xa4\\x7a\\x89\\x61\\x2a\\xcf\\x7d\\x0a\\x16\\x77\\x58\\x8e\\xa8\\x6c\\x50\\x9b\\xba\\xc2\\x4d\\x61\\x0c\\x4f\\x12\\x64\\x5a\\xd6\\x5e\\xde\\x4b\\x28\\x72\\x03\\x7b\\xc6\\xd8\\x38\\x90\\x08\\xd5\\xa8\\x92\\xb3\\x7a\\xfb\\xd2\\x77\\x7d\\x5e\\x00\\x2b\\x6e\\xf6\\x4b\\xba\\xb3\\x9f\\xa7\\x58\\xa3\\x9f\\xe4\\x21\\xaa\\x3f\\xab\\x08\\x3c\\x94\\x0f\\xb3\\xaf\\x49\\x22\\xc5\\xe1\\xa6\\xd0\\x7d\\x8c\\xd2\\xc1\\x2e\\x6a\\x69\\x18\\x7a\\xe3\\x22\\xf9\\x99\\x3c\\x11\\x06\\xc6\\x38\\x24\\x74\\x7f\\xb2\\xb1\\x2b\\x9f\\x6b\\x0f\\x09\\xe4\\xdc\\x95\\x45\\x66\\xec\\xe8\\x0a\\xbc\\x86\\xea\\x98\\x67\\x03\\x92\\x38\\x4a\\x04\\x84\\x28\\xa3\\xd9\\xcb\\x34\\x6b\\x98\\x24\\x0f\\xc8\\xf0\\x85\\x38\\x48\\x8e\\xb5\\x03\\xf3\\x53\\x6b\\x1a\\xe5\\x84\\x90\\x80\\x0a\\xa2\\x5f\\x63\\xc5\\x8b\\x7e\\x32\\xcd\\xdd\\x54\\x7f\\xdb\\x70\\x9b\\xa6\\xef\\xa1\\x16\\xf7\\x68\\x47\\x60\\xa3\\x85\\xfe\\x5d\\xdb\\xcd\\xe3\\x28\\xaf\\xb9\\x8a\\x7b\\x27\\x18\\xce\\xf0\\x69\\x1b\\x7d\\xea\\xe2\\xa5\\x0e\\xa8\\xdc\\x69\\xa3\\x09\\x2a\\xbc\\x60\\xe8\\x08\\x84\\x8a\\xca\\xdf\\x50\\x3f\\x0c\\x03\\xb5\\x74\\x02\\xff\\x22\\x97\\x36\\x17\\x33\\xd9\\x8b\\x58\\x9a\\xc7\\xa1\\xae\\x45\\x72\\xca\\x52\\xe9\\x08\\x04\\xc1\\x1d\\x55\\x6c\\x5a\\xd1\\x18\\xa4\\x0f\\x2d\\xd1\\xf0\\xb2\\xf0\\xc3\\xf9\\x51\\x68\\x28\\x35\\x51\\xe1\\xf8\\x1c\\x28\\x90\\xd4\\x32\\xb5\\x31\\x1c\\xf6\\x6a\\x93\\x8d\\x19\\xb7\\x67\\xe8\\x14\\xfd\\xdc\\x62\\x6d\\x08\\xec\\xdb\\x9a\\x6c\\xb8\\x24\\x07\\x1f\\x84\\x2c\\x4b\\x2d\\x35\\xa7\\x47\\x70\\x28\\x5e\\x2e\\xe2\\x1d\\xfc\\xe8\\x15\\x3f\\x7a\\x1a\\x73\\x42\\x18\\xb9\\xa2\\x34\\x80\\xe7\\x62\\x05\\xa1\\x4f\\x31\\x87\\x2d\\x45\\x5a\\xe1\\x54\\x93\\x62\\x69\\xa3\\x4b\\xcf\\xfa\\x57\\x13\\x06\\xc0\\x21\\xb0\\xee\\xfd\\xc3\\xb6\\x90\\x53\\xc1\\xe9\\xf1\\x82\\x01\\xd3\\x77\\x4f\\x55\\x1e\\x67\\x75\\x34\\x1b\\x8a\\xf2\\xec\\xdc\\x66\\x21\\x38\\x6e\\xa0\\xc4\\x2e\\xe0\\x51\\x92\\xe4\\x16\\xf2\\x90\\x12\\x17\\x99\\x0b\\xd0\\x26\\x71\\xf5\\x2d\\xb4\\xc5\\x78\\x9a\\x6b\\x1e\\x6b\\xed\\xb9\\x30\\xd8\\xf2\\x06\\x4b\\xc7\\x5f\\xe9\\x1d\\xa7\\x63\\xe2\\x96\\x43\\xeb\\x61\\xf8\\xb8\\xe2\\x50\\x10\\xe1\\x69\\xb5\\xd9\\xeb\\x1d\\x51\\xaa\\x94\\x9a\\x81\\x8c\\xc3\\x8c\\x5d\\x67\\xf4\\x01\\x7d\\x1d\\xae\\xc4\\xe7\\x47\\x1c\\x91\\x34\\x35\\x44\\x89\\xbc\\x9c\\x2c\\x68\\x31\\x52\\xb0\\xd4\\xbc\\x50\\x9c\\x34\\x71\\xe6\\x2f\\x89\\x44\\x26\\x1b\\xa2\\x90\\x3f\\x54\\xb4\\x87\\x2f\\x15\\x1a\\xdc\\xea\\x51\\x8f\\xd2\\x63\\x17\\xa7\\xbf\\x2d\\x34\\xd6\\x9f\\x5e\\x09\\xb6\\xe1\\xc4\\x6b\\x41\\x2b\\x64\\x0b\\x82\\x8f\\x41\\x4b\\xfc\\xb6\\xe1\\xb1\\x32\\xe6\\x6c\\x13\\x22\\x87\\x69\\x5d\\xc6\\x6b\\xdb\\x68\\xf4\\x7f\\x90\\x0d\\x06\\x1f\\x72\\xd1\\x79\\x38\\x10\\xe9\\xde\\x52\\x92\\x20\\x5b\\x62\\x25\\xa5\\x21\\x54\\x5a\\xd4\\x04\\x1c\\xe8\\x13\\x86\\xc4\\xd2\\xb5\\x47\\xfb\\x44\\x8f\\x9e\\xdb\\xe9\\x8d\\x1d\\xf3\\x58\\x01\\xa9\\x70\\x37\\x2c\\x79\\xb4\\x9b\\xee\\x41\\xca\\xfd\\xb3\\xdb\\x11\\xac\\xcb\\xd0\\x4e\\xd2\\x31\\xb4\\xa3\\x62\\xad\\x71\\x99\\x9d\\x18\\x9f\\x93\\x79\\x1e\\xda\\xa6\\x36\\x07\\x36\\x24\\x43\\xb6\\x74\\x4b\\xa2\\x18\\x81\\xba\\x48\\x14\\x64\\xc3\\x4f\\x9e\\xaa\\x24\\x8f\\x23\\x2c\\x1b\\x12\\xbb\\x27\\xea\\xa2\\x2f\\x1c\\x71\\xb8\\x8a\\x15\\x54\\x0b\\x32\\x80\\x7b\\x62\\x2f\\x11\\x63\\xb5\\x39\\xcc\\x74\\x13\\x22\\x6c\\x0b\\xbf\\xd9\\xb6\\x2c\\x5f\\x61\\x69\\xaf\\xb1\\x61\\x3f\\x17\\x1f\\x2a\\x1d\\x15\\xe8\\x15\\x12\\x17\\xfb\\x78\\x06\\x1f\\xb5\\x10\\x69\\x38\\xfc\\x3a\\xa1\\x05\\x90\\x99\\x09\\xb0\\x1a\\x5d\\xec\\xda\\x0e\\xb0\\x77\\x52\\x14\\x0e\\xb3\\xba\\xd8\\x1e\\x8d\\x0d\\x00\\x81\\x37\\x5b\\xb5\\x69\\x00\\x1f\\x79\\x20\\x57\\xbc\\xa9\\xd3\\x1e\\x13\\x91\\x71\\x04\\x5c\\x5e\\xa6\\x29\\x01\\xc0\\x12\\xee\\x3e\\x7a\\x16\\x29\\xd3\\xa9\\x4b\\x66\\xe0\\xd6\\xfd\\x14\\x14\\x64\\xcd\\x5b\\x4a\\xaa\\xd9\\x41\\x6b\\x8b\\xc4\\x8a\\x79\\xd5\\x77\\x65\\x50\\x55\\x23\\x44\\x49\\xeb\\x95\\xa7\\xd2\\xcf\\xc3\\x28\\x11\\x32\\x2f\\xe4\\xc5\\xd1\\x04\\x81\\x08\\x91\\x22\\xcc\\xfc\\x22\\x43\\x60\\xab\\xc8\\x24\\x48\\x11\\xb4\\x6e\\x39\\x68\\x71\\xb9\\x66\\x84\\x24\\x44\\x4d\\x0a\\x5d\\x50\\x60\\xb8\\xd2\\x81\\xe2\\x67\\x63\\xa1\\xba\\xb8\\x3b\\xf5\\x3b\\xb5\\x5f\\x41\\xd4\\x75\\x30\\x04\\xfa\\xe4\\xb8\\x71\\x7a\\x00\\x65\\x8a\\x58\\x25\\x04\\xa6\\xe3\\x44\\xa0\\xea\\x89\\xc9\\xd7\\xdd\\x98\\x40\\xca\\xd6\\x73\\x88\\x9f\\x1f\\x42\\x44\\x9b\\x8e\\xdf\\xd9\\xe6\\xde\\x8e\\x84\\x76\\xe1\\xce\\x65\\xa0\\x7e\\x0c\\x11\\xb4\\x1d\\x3f\\x79\\x46\\x85\\x71\\xd2\\x8c\\xe8\\xe1\\xe8\\x98\\x9a\\xe9\\x8e\\x71\\xd1\\x26\\xb4\\xac\\x39\\x75\\xc5\\x45\\xa2\\xcb\\xf0\\xae\\x5c\\x73\\x5a\\xa8\\xfe\\x66\\x79\\x13\\x45\\x5d\\x11\\x16\\x92\\xab\\xf7\\x5c\\xcf\\x72\\x67\\x9a\\x65\\xcb\\xfc\\x1f\\x5f\\x9d\\x11\\x38\\x86\\x5f\\x95\\xdb\\x1f\\x94\\xa8\\xa1\\x8b\\x2e\\x16\\x13\\x83\\x47\\xc9\\x84\\x55\\x38\\xcb\\x47\\x9f\\x39\\xe9\\xc7\\xb1\\x0c\\x10\\x43\\x01\\xcc\\x72\\x51\\x8e\\x04\\x74\\x52\\xce\\x26\\x32\\x60\\xd0\\xb9\\xec\\xa3\\xe8\\xfa\\x70\\x4f\\xf3\\xa5\\x93\\xeb\\x57\\x31\\xdf\\xdf\\x28\\x0c\\x84\\xee\\x64\\x5b\\x4a\\xd2\\x6d\\x08\\x81\\x88\\x06\\xab\\x40\\x48\\x7a\\x46\\x9e\\x0f\\x23\\xb6\\xa7\\x37\\x35\\xd0\\x4a\\xa2\\x22\\xc7\\x07\\xe2\\x77\\x78\\x99\\xe8\\x22\\x2c\\x2f\\xc6\\xc4\\x01\\xdd\\xe2\\x4d\\xee\\x91\\x50\\xa1\\xd8\\xac\\x23\\xf5\\x2d\\x0a\\xfb\\x37\\x72\\xea\\x96\\xbd\\x89\\xf2\\xb6\\xfe\\x21\\x9b\\x97\\x20\\x1d\\x3a\\xa6\\x3c\\x93\\xdc\\xa8\\xd9\\x62\\xec\\xc8\\xcb\\x19\\xd8\\x6f\\x9f\\xfc\\xfc\\x08\\xe3\\x15\\x83\\xd9\\xb1\\x2b\\x87\\x62\\x5d\\x66\\x56\\x73\\xe5\\x8e\\xf2\\x5a\\x99\\xf3\\x11\\x50\\xd1\\x70\\x28\\x4d\\xf7\\xb0\\x94\\x25\\xe2\\xfa\\x6c\\x8b\\x1c\\x52\\xd1\\x08\\x7d\\x9d\\xe6\\xe6\\xc8\\x8a\\x1c\\x8b\\x59\\x8e\\xd8\\xc6\\xdc\\x76\\xc0\\xa3\\x0b\\x51\\xa3\\xc8\\x45\\x2d\\xce\\x09\\xb0\\x9b\\xc3\\xc8\\x50\\x65\\x8a\\x28\\x2b\\x9b\\xbd\\x58\\xb3\\x31\\xf3\\x96\\x60\\x2c\\x7e\\x69\\x97\\xb7\\xb4\\xa9\\x63\\x5b\\x3d\\x83\\x25\\x7e\\x1a\\xb8\\xc3\\x08\\x80\\x43\\x87\\x4c\\x13\\x68\\x3c\\x1d\\x82\\x43\\x9d\\xdb\\x06\\xa6\\x13\\x00\\x6c\\xa5\\xbf\\x34\\x16\\x58\\x22\\x10\\x4d\\x3f\\x34\\x9a\\x35\\x52\\x7a\\x2e\\xe9\\xa8\\x8f\\x1b\\x04\\xb7\\xcc\\xfd\\xfa\\xda\\x40\\x6b\\xfd\\x38\\x70\\x8e\\x19\\xae\\xfb\\x04\\x12\\xaf\\x02\\x22\\x72\\x17\\xd7\\x32\\x8b\\xb0\\x38\\xd9\\xa8\\x47\\x72\\xb6\\xfb\\xad\\xd0\\xde\\xe8\\x8c\\xb2\\x0a\\xf5\\x40\\x9b\\x8c\\xd6\\x15\\x53\\xa7\\x03\\xa3\\x7c\\xda\\x2e\\xd7\\xeb\\x2e\\xf3\\x6d\\xd6\\xa2\\x79\\x34\\x96\\x5b\\x05\\x27\\x84\\xd0\\x3c\\x49\\x10\\x5c\\x05\\x3a\\xc0\\x77\\x88\\x03\\xd9\\x76\\x2c\\x48\\x8b\\x87\\x89\\xa4\\x1f\\x67\\xb1\\xd4\\x52\\x1c\\x04\\x76\\xba\\xe3\\x5f\\xf3\\x5d\\x2f\\x86\\xaf\\xfa\\xce\\xd8\\xed\\x49\\x54\\xe4\\xaa\\x9a\\x05\\x68\\x3d\\x3f\\x43\\xcf\\xcf\\x1b\\x0d\\x3d\\xe6\\x44\\x34\\x3d\\x7d\\x59\\x88\\xf0\\x2d\\x0f\\x49\\x03\\xe4\\xeb\\x05\\xef\\x89\\xd7\\x77\\xd7\\xdf\\x04\\x76\\x80\\xf8\\x70\\x24\\xa7\\x5e\\x9a\\x8f\\x4c\\x87\\x52\\x73\\xe8\\xce\\x30\\xd8\\xc4\\x42\\xe6\\x8a\\xef\\x6c\\xc6\\x8d\\x4c\\x0c\\x47\\xd1\\xf0\\x00\\x13\\x21\\x72\\x3d\\x09\\xa4\\x20\\xe1\\x8c\\x0d\\xef\\xf9\\x37\\xb7\\xf1\\xb2\\x19\\x0f\\x21\\x2a\\x8b\\x71\\x3e\\xc5\\xd7\\x54\\xfc\\x3e\\x7f\\xd2\\x18\\x60\\x05\\x8b\\xdf\\x0f\\x83\\x71\\x39\\x1d\\xae\\x3d\\x30\\x9d\\x32\\xc3\\xef\\x02\\x05\\x25\\xf9\\x1c\\xf2\\x48\\x8e\\x27\\x8d\\xef\\xbe\\xf8\\x26\\x86\\x04\\x88\\xf9\\x62\\x2d\\x67\\xed\\x45\\xc9\\xb0\\x63\\xfc\\x6d\\xa9\\x17\\x94\\x09\\x00\\xd3\\xea\\x89\\xd4\\xde\\x51\\x87\\xe9\\xa6\\x0d\\xe5\\x78\\x18\\x9e\\x60\\x77\\xa4\\x65\\x24\\xe3\\xdb\\xe0\\x8e\\xb5\\x81\\x9a\\x43\\x18\\x97\\x6d\\x0e\\xc7\\x21\\x3b\\x00\\xf1\\x04\\x33\\x40\\x5b\\x17\\x92\\x39\\xea\\x2b\\x05\\x36\\xf6\\x0a\\xf1\\x4f\\x42\\x5b\\x77\\x5f\\xd6\\x6d\\x1d\\xda\\x65\\x3b\\x4b\\x77\\x69\\x3d\\x84\\xb6\\x18\\x13\\x2b\\x82\\xff\\xe6\\x14\\x80\\x8e\\x06\\x96\\xbe\\x1b\\x1c\\x3a\\x8c\\x18\\xff\\xb0\\x8b\\x2e\\x2b\\xb9\\x90\\x0d\\x8a\\xcd\\xa2\\x90\\x43\\xf7\\x48\\xdc\\x53\\x8d\\xaf\\x47\\x35\\x3a\\x43\\x41\\xad\\x58\\x40\\x2b\\x80\\x81\\x19\\xa9\\x50\\xcc\\x03\\x86\\x9d\\xc2\\x8a\\xfb\\x89\\xde\\xd1\\xc8\\xcd\\x97\\xe0\\x98\\xcd\\xed\\x4f\\x57\\xde\\x7d\\x27\\x64\\xc8\\x18\\xe3\\x8d\\xe0\\xe0\\xb6\\x6a\\x38\\xa4\\xe8\\xe8\\x4e\\xaa\\xa7\\x10\\xdf\\xf2\\x4e\\x28\\x23\\x38\\xdd\\xbd\\x27\\x1d\\x38\\x95\\xe1\\xf5\\x59\\xc3\\x99\\xf5\\xe7\\x41\\xa5\\x02\\xda\\x40\\x8f\\x89\\x32\\x05\\xb4\\x87\\x10\\x1e\\x50\\xe4\\x6a\\xa7\\x81\\x10\\x89\\x82\\x0b\\x8c\\x56\\xc2\\x51\\x98\\x08\\xc6\\x56\\x97\\x18\\xad\\x87\\x87\\x25\\xce\\xed\\xdf\\x23\\x47\\x15\\x42\\x1f\\x64\\x75\\x20\\x39\\xf0\\x3f\\xc1\\x18\\xb2\\x38\\x07\\x35\\xb5\\xde\\xc6\\xb2\\x3b\\xbd\\x65\\x3e\\x8b\\x36\\x3e\\x24\\x24\\xc3\\x23\\xad\\x1e\\xdb\\x28\\x48\\x07\\x27\\x89\\x4a\\x3d\\xb9\\x17\\xa4\\x68\\x1b\\xa8\\xcc\\xa9\\xf1\\x10\\x45\\x25\\x94\\xe8\\xa7\\x74\\xb8\\x7f\\xd5\\xec\\xd5\\x58\\x91\\x6f\\x56\\x06\\x3a\\x30\\x6f\\x06\\x62\\x24\\x42\\xe6\\xc7\\x58\\x89\\xae\\x6b\\x58\\x98\\x20\\xaa\\x13\\x8e\\x8c\\x8b\\x14\\x89\\x65\\x11\\x33\\x79\\x71\\xd3\\x55\\xa4\\xae\\x47\\x00\\x00\\x40\\xff\\xbf\\x01\\xd4\\x2c\\x85\\xd7\\xe7\\xf0\\xa4\\xe9\\x45\\xc5\\x4d\\x25\\x86\\x8e\\x81\\x58\\x48\\x89\\x90\\x2c\\xc0\\x4c\\x3f\\x3b\\xc7\\xd5\\x5d\\xea\\xf4\\xc3\\xd4\\xab\\xf2\\x66\\x35\\xf5\\x48\\xab\\x35\\x81\\xcc\\x95\\xf3\\x26\\x26\\x05\\x40\\x83\\xd0\\xc2\\x7b\\x8a\\xc2\\x6c\\xd8\\x09\\xc7\\x7f\\x1a\\x23\\x40\\xa0\\xb6\\x44\\x6c\\xf3\\x36\\x87\\x07\\xe3\\xc6\\xa2\\x0a\\xa4\\xb2\\x2f\\xb5\\x2f\\x37\\x85\\x88\\x28\\x2f\\x94\\x5a\\x98\\x0d\\xd5\\xd6\\x07\\x19\\x53\\x29\\x54\\x38\\x88\\x7a\\x71\\x83\\xea\\x30\\x58\\xec\\xa3\\x21\\x27\\x65\\x19\\x7f\\x32\\x7d\\x82\\x15\\xdb\\x77\\x8c\\xde\\xca\\x32\\x14\\xdb\\xea\\x27\\xf9\\x0b\\x13\\xf7\\x4b\\xfa\\xc5\\xda\\x7b\\x8b\\xe0\\x91\\xd4\\x2e\\xa6\\x10\\x2f\\x13\\x43\\xfc\\x99\\xc8\\x7c\\x99\\xdf\\x6c\\x9d\\x26\\x82\\xf6\\xdc\\xdc\\x6f\\x4e\\xf0\\xa3\\x60\\xea\\x12\\xf8\\xdf\\x10\\x3a\\x37\\x1c\\x28\\x22\\xde\\x64\\xa4\\x40\\x29\\xd0\\x92\\x96\\x0f\\xad\\x65\\x43\\x3c\\x52\\x30\\x7d\\xe0\\x91\\x87\\x52\\x52\\x41\\xd8\\x27\\x60\\xf5\\x2c\\x19\\x78\\x30\\x22\\xa2\\x85\\x2f\\xf9\\x80\\x98\\x15\\xf3\\x64\\x61\\x89\\xdf\\x3e\\x66\\x03\\xef\\xff\\x8d\\x11\\x14\\xa7\\x74\\xe7\\x98\\x0e\\xbf\\x3e\\x60\\xc6\\xb5\\x3f\\xef\\xd0\\x61\\x3a\\xc5\\xa7\\xd9\\x22\\x14\\xcf\\xc3\\x0f\\x35\\xdc\\xec\\x11\\xf6\\xb0\\x2c\\xf2\\x71\\x0d\\x90\\x82\\x7b\\xd3\\xe6\\x78\\xbe\\x93\\x91\\xdf\\x24\\x0a\\x9e\\x5f\\x17\\xa2\\x7f\\x4c\\x5b\\xda\\x9a\\x06\\xe8\\x28\\x75\\x1a\\x78\\x3c\\x1c\\xa9\\xc6\\xf1\\x33\\x07\\xcd\\xa2\\xac\\xf4\\xda\\x99\\xaa\\x27\\x4c\\x18\\xc9\\xea\\xcf\\x97\\x85\\xb9\\x78\\x33\\x25\\x84\\x2f\\xc1\\x60\\x11\\x4b\\x3c\\xc7\\x47\\x90\\xd4\\xc2\\xd6\\x7e\\xb3\\x64\\x60\\xde\\xf8\\x83\\x02\\xf4\\x10\\xb2\\x81\\x06\\x46\\xef\\xcb\\xe3\\xc4\\x13\\xc6\\x92\\x00\\x96\\xd2\\x69\\xc8\\xfb\\xb6\\x20\\x59\\xfc\\x05\\xfc\\x46\\x6d\\x49\\x13\\x73\\x31\\xe7\\x0e\\x60\\xa1\\x47\\xdb\\x01\\x88\\x7b\\x20\\x69\\x80\\x64\\x9c\\xab\\xb7\\x2c\\x99\\x1c\\xbd\\xb7\\x59\\x92\\x4a\\xbb\\xd4\\xff\\x27\\x41\\xbb\\x2c\\x04\\x75\\xaa\\xef\\x1e\\xfe\\x7b\\x17\\x81\\x88\\xaa\\x6a\\xb7\\x50\\xad\\x6f\\x5f\\xf0\\x0f\\xcd\\x3f\\x97\\xc9\\xa4\\xca\\xb3\\x73\\x7e\\x9c\\x3d\\x2b\\x0b\\x8f\\x7a\\x46\\x57\\x5a\\x29\\x7e\\xe1\\x64\\xfc\\x89\\xc5\\x6b\\x7c\\x06\\x4b\\xd5\\x52\\xcb\\xab\\x13\\xa2\\x8b\\x00\\xa9\\x56\\xfb\\xe6\\xd0\\x4c\\x26\\xe6\\x39\\x11\\x7d\\x45\\xf2\\xac\\x36\\x06\\x36\\x24\\x09\\xdf\\xd2\\xda\\x6e\\x89\\x8e\\xea\\x7b\\x81\\xe1\\x78\\x54\\x79\\x9e\\x5b\\xba\\xdc\\x3e\\xc8\\xa2\\xfa\\x0e\\x06\\x1f\\xdb\\x43\\x72\\x85\\x70\\x70\\x9c\\xbc\\x70\\xf4\\x7c\\x1c\\xc8\\xb1\\x26\\x4e\\x93\\xd0\\x93\\x20\\xe1\\x2e\\x98\\x93\\x16\\x70\\x0c\\x9c\\x72\\x32\\x6d\\x6c\\x08\\x24\\x65\\x7b\\x2d\\x0b\\x8b\\x1e\\x0b\\xe4\\x57\\xf9\\x5e\\x05\\xf6\\x13\\x22\\xc9\\x15\\xf9\\x29\\xc0\\x2d\\x99\\x6a\\x90\\x4d\\x20\\xf0\\x01\\x74\\xf5\\x3d\\xd2\\xdb\\xbc\\xf7\\xfa\\x40\\x78\\x22\\x5c\\x0c\\x9a\\xa8\\x04\\x72\\x06\\xb6\\x47\\x7f\\x73\\x54\\x7d\\xdb\\xde\\x94\\xda\\x1a\\x23\\x43\\x43\\x8a\\xb5\\x67\\x6c\\x75\\x93\\x6a\\xb6\\x78\\xda\\xdd\\x0c\\x45\\x65\\x73\\x06\\xd9\\x2f\\x61\\x95\\x59\\x66\\x3f\\xe5\\x72\\x64\\xd5\\x57\\x2a\\xa2\\x06\\x2a\\x88\\xaf\\xd3\\x47\\x46\\x20\\x2d\\xbc\\xd4\\x01\\x87\\x63\\x41\\x71\\x41\\x61\\x4e\\x15\\x21\\xcc\\x6a\\x3a\\xc1\\x01\\x20\\xab\\x35\\x87\\x8d\\x4f\\xae\\xb8\\x28\\xe8\\x47\\x4e\\x1e\\x90\\x80\\x23\\x78\\xe6\\x90\\x88\\x79\\x39\\x23\\xb8\\xad\\x3d\\x1a\\xa3\\xfb\\x93\\x45\\x4a\\x30\\x05\\x65\\x4e\\x1f\\x52\\x14\\x9d\\x19\\xc8\\xc5\\x0a\\xa0\\x97\\x08\\x83\\x92\\x48\\xad\\x18\\x02\\x62\\xd9\\x56\\xf1\\xe6\\x92\\xc9\\xe4\\x36\\xe7\\x8e\\x4a\\x8c\\xdb\\xc3\\x9c\\x8c\\x40\\x2e\\xb8\\xef\\x37\\x50\\x0e\\x63\\x04\\x25\\x1b\\x2d\\xb4\\x84\\x51\\xf0\\x6d\\xc9\\xa8\\xab\\x3f\\x9a\\x2b\\x36\\xb3\\x16\\xfe\\x11\\x45\\xf3\\x24\\x12\\x79\\x32\\x5b\\x3b\\x7c\\x41\\x2b\\xb3\\x79\\x08\\xb6\\x46\\x0c\\x65\\xd9\\xf8\\xc9\\xc8\\xee\\x39\\x27\\x74\\x4b\\xc4\\x96\\x46\\xc5\\x6a\\xc4\\x4e\\x52\\xd9\\x1c\\x90\\x84\\xd8\\xb8\\x60\\xfe\\x27\\xc0\\xa1\\x36\\xa5\\x00\\x92\\xde\\x6e\\xca\\x26\\x44\\x2e\\x60\\x5f\\x80\\x25\\x60\\xf3\\xaf\\x2b\\xcf\\x83\\x4c\\x4e\\x5c\\xcb\\xa6\\xd4\\x5f\\x32\\xb6\\x09\\x99\\x4a\\xca\\x3e\\x41\\x92\\x78\\xc1\\x88\\x61\\x47\\x6d\\xae\\xe9\\x43\\x87\\x74\\xae\\x4b\\xda\\x61\\xfa\\xb1\\x59\\x82\\xa3\\xe3\\x11\\x55\\x7d\\x93\\x3e\\x5f\\xd1\\x54\\x9a\\x86\\x19\\xb2\\xb9\\x20\\xbc\\x95\\xb8\\xd4\\xef\\xaf\\x96\\x4c\\xad\\xc4\\xb1\\x40\\x8a\\xcc\\x2b\\xf9\\x4d\\xf5\\x21\\x31\\x78\\x09\\x10\\xd2\\xb5\\x94\\xd4\\x95\\xec\\x68\\xa3\\x14\\xe7\\xce\\x95\\x54\\x13\\x8d\\xbc\\x13\\x84\\x37\\x74\\xf1\\x2e\\x77\\x96\\xc1\\x12\\x65\\xa6\\xb0\\xe2\\xa6\\x1e\\x84\\x53\\x48\\xe8\\x90\\xbb\\x68\\x6d\\x75\\x02\\x8b\\x9e\\x6b\\xc8\\xe3\\x8a\\xc2\\xa1\\xa8\\xde\\xec\\xe8\\xd6\\x5c\\x24\\x11\\xa8\\xd4\\x17\\x1c\\xab\\xbc\\x1c\\x24\\xa3\\x15\\x26\\x54\\x16\\x57\\x94\\x18\\xb1\\x26\\xc7\\xfe\\xc6\\x56\\x4c\\xb6\\xea\\xf7\\x58\\x73\\x6a\\xba\\x34\\x88\\xe8\\xbb\\x9c\\x2e\\x8d\\x3c\\x35\\x17\\x73\\xc0\\x6e\\xe4\\xa2\\x04\\x12\\xee\\x80\\x75\\xb8\\x93\\xc8\\xb5\\x92\\x87\\x7a\\xd7\\x5a\\xcd\\x28\\x27\\x39\\x1b\\x69\\x61\\x5c\\x4c\\xc8\\x75\\xc9\\xe8\\x79\\x5c\\x9b\\xca\\xbe\\xa3\\x59\\x2c\\x0b\\x88\\x01\\x11\\xab\\x73\\x29\\x83\\x23\\x04\\x55\\x6c\\xad\\x78\\x11\\x52\\x78\\x00\\x41\\x86\\x42\\xb6\\x56\\xb5\\xdf\\xaa\\x88\\x4a\\x50\\x53\\xca\\x60\\xc6\\x20\\x9a\\x12\\xa5\\x58\\x0a\\x88\\x49\\x6d\\x67\\xda\\x24\\x4b\\x60\\xe6\\xc2\\x77\\x8c\\x74\\xbf\\xf4\\x1c\\xa9\\x15\\x07\\x38\\x0b\\x30\\x25\\x14\\x94\\x59\\x70\\x1a\\x69\\x93\\x67\\x75\\xfa\\x12\\x94\\xbf\\x70\\xde\\x89\\x2d\\x08\\xed\\x31\\x24\\xdc\\x40\\xfa\\x2a\\xf1\\x70\\x16\\x4b\\x35\\x4e\\x90\\x52\\x1e\\x9b\\x60\\xee\\x70\\xdb\\x29\\x4d\\x0c\\x46\\xd3\\x7c\\x72\\x4b\\xc2\\xf1\\xb0\\xb0\\x38\\xb8\\x52\\x82\\x05\\x9a\\x2e\\x4a\\x4c\\x87\\x3e\\x08\\x98\\xe5\\x8e\\x53\\x74\\x84\\xce\\x82\\x23\\x09\\x73\\x4b\\x97\\x87\\xd6\\xc8\\x99\\x24\\x2c\\x71\\x95\\xa0\\x11\\x8e\\x5e\\x80\\x00\\xc0\\x3f\\x35\\xca\\xd0\\x2a\\xef\\x6d\\x60\\x0d\\x36\\xa2\\x85\\x26\\x5a\\x8e\\xc6\\x6b\\xd0\\x27\\x45\\x9a\\xa6\\x2b\\x51\\xd9\\x56\\xc3\\xa6\\xa2\\xcb\\x1f\\x37\\x44\\x12\\x27\\xda\\x02\\xfc\\xc1\\x78\\x4a\\x69\\x1d\\x18\\x30\\x81\\x72\\x98\\x04\\xbf\\xfb\\x3a\\x8e\\xae\\xc4\\xa2\\xb2\\x1d\\x8d\\xe0\\xa9\\x27\\x65\\x01\\x1d\\x04\\xfd\\x63\\x79\\x6f\\x11\\x70\\x09\\xb1\\x09\\xe9\\x85\\xc4\\xb3\\x06\\x85\\x0c\\xf2\\x61\\x7d\\xd9\\x6f\\xc7\\x8b\\x82\\x12\\xa0\\x29\\x5a\\xa4\\x5f\\xe6\\x33\\x2b\\x91\\x7c\\xfc\\x64\\x5e\\xed\\x43\\x32\\x56\\x22\\xa3\\x38\\x34\\x1d\\x7c\\x02\\xc0\\x8b\\x81\\x8e\\xfa\\x5d\\x71\\x30\\x32\\x29\\x34\\x72\\x31\\xda\\xeb\\x95\\x7f\\xcf\\x16\\x82\\xf2\\x65\\x72\\x4a\\x2e\\xe5\\xf1\\x53\\x14\\x8a\\x0f\\x68\\x27\\x8a\\xa3\\x13\\x00\\xf2\\x1b\\x1e\\x52\\xa4\\x1d\\x13\\xc4\\x22\\xc8\\xf6\\xc3\\xad\\xcd\\x25\\x53\\x27\\x6b\\x84\\xa9\\x8c\\x8e\\x21\\x0c\\x21\\x36\\x1d\\x62\\x68\\x3c\\x88\\xd0\\xc6\\x04\\x78\\x2f\\x0a\\x43\\xee\\x0a\\x62\\x41\\x6b\\x3d\\xcf\\xd4\\xf9\\x05\\xac\\x8e\\x60\\x80\\x81\\x93\\x5f\\x00\\xdb\\x72\\xa0\\xfa\\x0e\\x87\\xa9\\xcb\\xca\\xba\\x1a\\x5f\\xa2\\x74\\x35\\x07\\x59\\x3d\\x91\\xa9\\xad\\x08\\x89\\x40\\xc4\\x42\\x28\\x0c\\x81\\x90\\x89\\x32\\x45\\xc0\\x31\\x09\\x9c\\xcb\\x56\\xa6\\x8b\\x4d\\x90\\xb2\\x39\\x94\\x0b\\x58\\x64\\xf2\\x93\\xf2\\xb4\\xe1\\xaa\\x03\\xc8\\x8d\\x38\\x46\\x13\\x08\\x18\\x32\\xd5\\x11\\x84\\x14\\x36\\x68\\xb4\\x36\\x69\\x52\\x74\\x3c\\xc4\\x67\\x12\\x01\\xc3\\xa6\\x7a\\x20\\xb3\\x14\\x43\\x63\\xbc\\x29\\xbc\\x88\\x71\\xd1\\x7d\\xc9\\x6e\\x22\\xab\\xde\\x90\\x06\\x6f\\x89\\xe4\\xd3\\xf9\\xe3\\x71\\xde\\x6c\\x72\\x34\\x2b\\x03\\xcc\\x69\\x2d\\xc7\\x14\\xfa\\x20\\x16\\x62\\x54\\xec\\x75\\xb2\\x72\\xc9\\x76\\x28\\x0a\\x19\\xc8\\x83\\x19\\x59\\x00\\xda\\xcb\\xb2\\x02\\x98\\x92\\xc4\\x17\\xca\\xd9\\x1e\\xb1\\x6c\\xa5\\x9f\\x08\\xc1\\xed\\x14\\x48\\xed\\xd2\\x90\\x21\\xd3\\x14\\xca\\x85\\xc6\\x4e\\x37\\x30\\xaf\\x09\\xd1\\xd3\\x4d\\x38\\xd2\\x2e\\x9a\\x11\\xcf\\x43\\x51\\xac\\xf8\\x14\\x0c\\x1c\\xd5\\x08\\xd7\\x49\\xb1\\x1e\\x49\\x36\\x23\\xf9\\xc7\\x59\\x26\\x75\\x31\\x28\\xae\\x60\\xd8\\x0c\\x26\\x44\\x79\\xbc\\x97\\xf8\\x38\\xa5\\x91\\xae\\x42\\x76\\xdc\\x13\\x54\\xc0\\x4e\\x99\\x4c\\xe0\\x25\\x72\\x11\\x5c\\x46\\xcf\\x02\\xa2\\xce\\xa6\\x1f\\x9e\\x86\\x26\\xa4\\xd3\\x31\\x4b\\x38\\x35\\x11\\xc8\\x04\\x75\\x56\\x04\\xfb\\x8d\\x27\\x24\\xf8\\x56\\x33\\x38\\xe3\\x38\\xcb\\x28\\x2c\\x82\\x06\\x88\\xc2\\xf7\\x1e\\x20\\x08\\xa2\\x87\\x62\\x85\\xdb\\x23\\x86\\x20\\x8c\\xc3\\x01\\x7b\\x0d\\x04\\x45\\x90\\xf4\\x41\\xfa\\x02\\x50\\xd8\\xb9\\x38\\xe6\\x7d\\x34\\x0c\\x10\\xc8\\x62\\xc0\\x32\\x17\\xeb\\xb1\\xb1\\x18\\xfa\\x8c\\xf2\\x73\\xec\\x68\\x0b\\x10\\x80\\x6a\\x3e\\x68\\xc4\\x79\\x07\\xc5\\xef\\x8b\\x00\\xa0\\xa1\\xfe\\x30\\xc2\\x0f\\x25\\x40\\xbd\\x96\\x10\\xaf\\xdb\\xa1\\x7c\\x02\\x28\\xa5\\x0a\\xdc\\x4e\\x11\\xf5\\xf4\\x1e\\x42\\x1d\\x57\\x81\\x20\\x31\\x3e\\x7a\\x29\\x51\\x08\\xd8\\x50\\x18\\xc0\\x24\\x0e\\xee\\x18\\xbb\\x6f\\xc5\\x68\\xfb\\x06\\x15\\xbe\\x2f\\x30\\xd6\\x07\\x6e\\x2b\\x60\\x66\\xb6\\x2c\\xdb\\x73\\x0f\\x20\\x08\\xb6\\x19\\x14\\x4d\\x13\\x74\\x5a\\x55\\x81\\x1f\\xdd\\xb6\\x68\\xb2\\xfe\\x4b\\x1c\\x01\\x7a\\x47\\x19\\xe9\\xa0\\x20\\x65\\xba\\x72\\x22\\x29\\xeb\\x68\\x4f\\xa6\\x4c\\x40\\x32\\x26\\x25\\xef\\x3d\\xa0\\x40\\x28\\x59\\xdc\\x63\\x3a\\x1a\\x12\\xb7\\x4e\\x2d\\x72\\x22\\x1a\\xc3\\x5f\\xb0\\x74\\x22\\x2c\\x83\\x92\\x82\\x2a\\x83\\xf9\\x3e\\xe2\\x39\\x04\\xd1\\x48\\x8e\\x08\\x4c\\x8d\\x91\\xd1\\x95\\x87\\x41\\x90\\x00\\xb1\\x4b\\x11\\x6d\\x3f\\x01\\x86\\x06\\x47\\x8a\\x22\\x94\\xae\\x37\\x96\\x36\\x49\\x27\\xd0\\x0c\\x6c\\x88\\xac\\x1f\\x6c\\xdc\\x06\\x09\\x17\\xfc\\x6d\\x91\\xe6\\xb5\\x0c\\x05\\xdf\\xf1\\x8d\\x91\\x0b\\x14\\x29\\x13\\x9b\\xf3\\xd3\\x2f\\xf8\\xc6\\x66\\x78\\x96\\x03\\xb9\\x0b\\x40\\x94\\xdf\\x8a\\x10\\x4c\\x0d\\xb3\\x1f\\x92\\x9c\\xf2\\x50\\x59\\x7b\\xc3\\x2c\\x4b\\x5a\\x45\\x68\\x79\\xa2\\xed\\xdf\\x10\\x69\\x8d\\xaf\\x37\\xd8\\xde\\x64\\xa7\\xdf\\xa2\\x19\\xd6\\x06\\x3b\\x51\\xb0\\xc0\\x44\\x79\\xdc\\xa9\\x08\\x1f\\x79\\x0e\\x69\\x79\\x2c\\x32\\x1c\\x1a\\xa5\\x9b\\x50\\x99\\x3e\\x17\\xef\\x13\\xab\\x53\\x98\\xe0\\x00\\x64\\xb4\\x20\\xd6\\x6c\\x29\\xd0\\x31\\x9a\\xc4\\xa5\\xa6\\x01\\x55\\xfc\\x88\\x52\\xc5\\x8f\\x9b\\x61\\x60\\xc8\\xc3\\xec\\x5e\\x8e\\x95\\x2b\\x4e\\x4e\\x1e\\x73\\x87\\x9a\\xf2\\x27\\x1d\\x8c\\x90\\x34\\xed\\x0a\\x82\\xee\\xdc\\x3c\\x56\\xfd\\x50\\x39\\xfd\\xee\\x06\\x80\\x90\\x30\\x05\\xa9\\x7a\\x39\\xc1\\xf2\\x9c\\x73\\x5a\\x91\\xb0\\x4a\\xa3\\x0e\\x09\\x10\\x6e\\x71\\x04\\x08\\x05\\xbd\\xc0\\x5f\\x15\\x99\\x48\\xe3\\xe4\\xb8\\xfe\\xb7\\x7e\\x84\\x99\\x9d\\xe0\\x9d\\x37\\xe4\\x98\\x40\\xef\\x28\\x25\\x2a\\x8d\\x9c\\x4f\\x75\\x84\\x0c\\xd8\\x58\\xe9\\x7d\\x34\\x7d\\x05\\x01\\x83\\xf8\\x08\\xa4\\x7a\\xc5\\x2a\\x62\\xc8\\xe0\\x0c\\x3c\\xc2\\x4b\\x6f\\x20\\x88\\x52\\x32\\xa8\\xd5\\xe9\\x03\\x08\\x1f\\x18\\xc0\\xb8\\x9f\\x81\\x67\\x1f\\x80\\x50\\xa9\\xdb\\x18\\x10\\x3e\\xa5\\x5f\\x41\\x0e\\x71\\x27\\x4c\\xaf\\x42\\x37\\x07\\xd4\\xa0\\x19\\x7c\\x50\\x16\\x94\\x75\\xe7\\x8e\\x38\\x81\\xd8\\xd7\\xc4\\x56\\xf1\\xc5\\x86\\xa8\\xd2\\x25\\x68\\xcb\\xe6\\x95\\xa4\\x97\\x4c\\x80\\x36\\x03\\x64\\x53\\x20\\x44\\x6a\\x47\\x6e\\x70\\xa4\\x80\\x00\\x2c\\x1a\\x92\\x59\\x4e\\x04\\xc7\\xa6\\x9d\\x65\\x20\\xe2\\x4c\\x3f\\x9d\\x99\\xd3\\xb4\\x97\\xcf\\x26\\x9a\\x91\\x98\\xce\\x42\\x6f\\x87\\xc5\\x00\\x06\\xa5\\x8a\\x03\\x2a\\x03\\x70\\xb9\\x11\\x2a\\xc1\\x55\\x7c\\xd7\\x10\\x0f\\xf0\\x04\\xc5\\x26\\x13\\xc2\\x10\\x73\\xdb\\x81\\x7a\\x75\\xc6\\x73\\x44\\x75\\x3f\\xdb\\x80\\x42\\xc8\\x97\\x31\\x21\\x43\\xe6\\x75\\x3b\\xd7\\xf3\\x17\\xce\\x49\\x90\\xae\\x29\\x2b\\x6c\\x92\\xb9\\x63\\x1e\\x55\\x1d\\xa8\\x69\\x02\\x0d\\xbd\\xfb\\xfb\\xd4\\xf3\\xd7\\xf6\\x3a\\x35\\x7d\\x20\\xd8\\x4c\\x5a\\xff\\x6b\\x82\\x7f\\xdf\\x56\\x56\\xd2\\xd2\\xf5\\xbb\\x3b\\x50\\x01\\x7a\\x38\\x47\\x26\\xbf\\x07\\x55\\x0c\\x20\\x84\\x00\\x4b\\x79\\xa3\\xa2\\x71\\x9b\\x6b\\xb6\\x88\\xa9\\x1a\\xdf\\x78\\x75\\x2d\\x27\\x7a\\x69\\x2d\\xaf\\x5b\\xaf\\x9c\\x5a\\xe3\\x98\\xa9\\xc3\\xb4\\xc5\\x1a\\xde\\x6f\\xd3\\x7e\\xb8\\x08\\x46\\x06\\xe3\\x87\\x83\\x66\\xa8\\xe2\\x34\\xac\\xe1\\x14\\xbd\\xc6\\x83\\x51\\x2c\\x46\\xe7\\x62\\x0e\\x37\\x3a\\xbb\\x65\\xf6\\xb6\\x78\\xa4\\x94\\x30\\x05\\xcb\\x71\\x80\\xd7\\xad\\xc6\\x02\\x2e\\x50\\xd2\\x22\\x1a\\x27\\x49\\x13\\x1b\\x50\\x1f\\x34\\xad\\x84\\x43\\xdd\\xe7\\x3a\\x15\\x7a\\x3a\\x2d\\xcb\\xeb\\x32\\x34\\x96\\x7b\\x60\\xd0\\x80\\xa1\\x45\\x55\\x90\\x21\\xe6\\xf9\\x1d\\x19\\xcb\\x4b\\x94\\xd4\\x8c\\x07\\x3d\\x80\\x66\\x85\\xef\\x19\\xe2\\x54\\x45\\x04\\x34\\xd6\\x80\\xce\\x25\\x29\\x92\\x1e\\xa3\\x19\\xc3\\x90\\x61\\xa6\\x94\\x07\\x8a\\xd9\\x0c\\x16\\x2b\\x60\\x58\\xda\\x45\\x17\\x02\\x0e\\x37\\x39\\xf3\\x05\\xe5\\xa6\\xdf\\x59\\x50\\x74\\xed\\x69\\x13\\xcf\\x3d\\x6a\\x62\\x9a\\xd7\\x02\\x77\\x82\\xba\\x68\\xef\\x9d\\x1a\\x87\\x6e\\xf0\\x62\\xa9\\x37\\xcf\\xd8\\x00\\xe5\\x49\\x09\\xc6\\x58\\xe4\\x33\\xa7\\x83\\x12\\xd0\\x4d\\x32\\x2a\\x18\\xff\\xbf\\xc1\\xb6\\x00\\x04\\xb0\\x17\\xa0\\xd0\\x98\\xa1\\x99\\x2b\\xe0\\x48\\xb0\\x19\\x01\\x24\\x87\\xd8\\x0d\\xfa\\x83\\xa2\\x13\\x6d\\x45\\x04\\x3a\\x5e\\x54\\x4d\\x7d\\x68\\x7f\\x4a\\xed\\xe3\\xc9\\x8d\\xbb\\xc0\\xbc\\x28\\x48\\xda\\x24\\x8b\\x8e\\xdf\\x02\\x00\\x64\\xfa\\x42\\x72\\x43\\x6f\\x83\\xf0\\xf8\\x23\\x9e\\x6b\\x47\\x0a\\x0c\\xe7\\x1a\\x21\\xda\\xbf\\x11\\x66\\xff\\x2b\\xb6\\xa8\\x13\\xb4\\x0a\\xdd\\x40\\xef\\x95\\x64\\x23\\xb6\\x38\\x30\\x96\\xc9\\xb3\\x80\\xc6\\xe0\\xab\\xc0\\x98\\x85\\x60\\xe0\\xc0\\x00\\x01\\x00\\x96\\xc0\\x05\\x4c\\x3c\\x11\\xd4\\x00\\x15\\x19\\x37\\x3e\\x2d\\xb0\\x4c\\x99\\x59\\x70\\x63\\xb8\\x83\\x23\\xdf\\xd3\\x78\\xc2\\xc4\\x4c\\xe1\\x2f\\xfd\\x0f\\x38\\x9a\\x8c\\x27\\x0c\\xd1\\xe9\\x80\\x84\\x6e\\xa7\\x05\\xea\\xc3\\x32\\x55\\xa2\\x1e\\xc4\\xa9\\xde\\x94\\x4f\\x69\\x03\\x63\\x8a\\x76\\xca\\x04\\x03\\x3f\\xee\\x08\\xa7\\xfb\\x5f\\x71\\xd2\\x08\\xcb\\x43\\xdd\\x40\\xec\\x84\\xe1\\xfa\\xa4\\x77\\x31\\xf0\\xa2\\x4c\\xe7\\x97\\xe3\\x84\\x5a\\x30\\x27\\x6e\\x53\\xa6\\x84\\x71\\x6f\\xc7\\x08\\xb4\\xe0\\xad\\x24\\x91\\x86\\x9a\\x3c\\x17\\x15\\x85\\x7e\\xd8\\x42\\x7e\\xd4\\x00\\xcd\\x4c\\x58\\x34\\x49\\x4c\\x14\\xde\\x52\\x35\\x30\\x13\\x44\\xab\\xba\\x09\\x02\\xfe\\x79\\xfb\\xcd\\x01\\x44\\x23\\x4f\\x29\\xe1\\xa5\\x79\\xd5\\xf2\\xa5\\x0c\\x57\\x0a\\x36\\xdd\\xbc\\xcc\\x93\\x5d\\xfb\\x09\\x4d\\x56\\x88\\x1b\\x9d\\x5e\\x48\\x86\\xea\\x74\\x2b\\xc5\\xc9\\x3d\\xe6\\x20\\x95\\x57\\x8a\\x02\\x5f\\x1a\\x39\\x2e\\xc8\\xdf\\x48\\xe8\\x5b\\x66\\x52\\xcc\\xfb\\xfb\\xa1\\x6d\\x99\\x44\\x47\\x12\\xca\\x02\\x9c\\xde\\x78\\xf8\\x46\\x55\\x23\\xed\\x68\\x20\\x50\\x3f\\x35\\xf1\\x79\\xae\\xef\\x89\\x82\\x21\\x7a\\xd2\\x75\\xc6\\x67\\x8f\\xb2\\x31\\xca\\xe8\\x5b\\x35\\xaa\\x49\\x92\\xd5\\xa3\\xf8\\x77\\x38\\xf6\\xf3\\x90\\x39\\x51\\x89\\x2f\\x45\\xd8\\xb1\\x3b\\x3e\\xc1\\x39\\xa4\\x67\\x8e\\xf7\\x0c\\x50\\xe0\\xaf\\x00\\x97\\xa1\\xc0\\x1c\\x9f\\xc1\\x01\\x94\\xcd\\xab\\x47\\xc4\\xf3\\x5e\\x83\\x45\\xfe\\xe6\\xf7\\x27\\xb9\\x75\\x77\\x11\\x34\\xd2\\x08\\x30\\x57\\x83\\x86\\xa8\\xe1\\xb6\\xaa\\x44\\x53\\xe1\\x62\\x7c\\x13\\xa1\\x7d\\xeb\\xb5\\x17\\x16\\x19\\x7f\\xa6\\x84\\x92\\x53\\x64\\xd4\\x6f\\x79\\xb0\\x7f\\x44\\x1e\\x50\\x4e\\xbc\\x0a\\xc0\\x9a\\x77\\x7e\\xf6\\x70\\xd3\\x4f\\xef\\x9d\\x36\\xf8\\x45\\xb8\\x03\\xd3\\xb6\\x24\\x13\\xb6\\x3d\\xe9\\x1a\\x56\\x46\\x8b\\x20\\x21\\xeb\\xa1\\x16\\x1f\\xc8\\x99\\x02\\x6b\\x7a\\xe8\\x8c\\x83\\x79\\x74\\x89\\x6f\\xb7\\x51\\x4a\\xf7\\xc9\\xb2\\x68\\x9d\\x66\\xca\\x3f\\x96\\x44\\x9f\\xb9\\xf8\\xb6\\x1a\\xc2\\xe2\\xd9\\x34\\xdf\\xe3\\x03\\xe1\\x80\\xb4\\xee\\x0a\\xe7\\x79\\x41\\x91\\x0a\\x82\\x3e\\x38\\x89\\x19\\x5e\\x4a\\x15\\x38\\xe5\\x5a\\x6e\\x30\\xd8\\xed\\x21\\x17\\x0c\\xdc\\xe1\\x59\\x90\\x89\\xca\\xf0\\x72\\x18\\x77\\xf0\\x42\\x4b\\xf2\\xaf\\xd0\\xa5\\xcf\\x36\\xd2\\xdc\\x60\\x91\\x49\\x38\\xd5\\x22\\x46\\x3f\\x9e\\x2f\\x09\\x26\\x9a\\xc1\\x99\\xaa\\x8a\\x5b\\x53\\x80\\x3e\\xfb\\xe0\\x48\\x92\\x6b\\x71\\xa6\\x62\\xc0\\xaf\\x22\\x8f\\x09\\xce\\x3c\\x48\\xd3\\x02\\xac\\xf0\\x8d\\x1b\\x6a\\xdd\\xac\\xc7\\xc6\\xd9\\xe3\\xa2\\x69\\xad\\x4f\\x06\\xc9\\x11\\x37\\x6c\\x9c\\xc7\\x6d\\xfc\\x2d\\xbf\\x20\\x7b\\x71\\x78\\xb8\\x60\\x10\\x50\\x4b\\x7f\\xb0\\x9c\\x96\\x65\\x9c\\xa9\\x25\\x8c\\xe4\\x51\\xbb\\x89\\x35\\xcb\\x8c\\x6e\\x00\\xe5\\xe6\\x78\\xfc\\xed\\x90\\x32\\x7c\\xd0\\xa7\\x0d\\xd1\\xbb\\x40\\xb7\\xee\\x26\\x0b\\x2c\\x58\\x67\\x06\\x16\\x38\\x97\\xa9\\xbd\\x7d\\xed\\x93\\xf1\\xe9\\x35\\x32\\x4a\\x84\\x63\\x80\\xc9\\xf7\\x89\\x3c\\xb3\\x4c\\x09\\x2e\\xcf\\x01\\x41\\x97\\xce\\x20\\xf1\\x83\\xc5\\x22\\x36\\x32\\xfd\\x00\\xe3\\x06\\x69\\x6a\\x92\\xbb\\xcb\\x50\\xa8\\xc9\\x0c\\xdc\\x0e\\x20\\x4b\\x63\\x8e\\xcb\\x8f\\x59\\xf9\\x20\\xd4\\x3b\\x63\\x54\\x62\\xb1\\x88\\x00\\x1e\\xc3\\x02\\x06\\xeb\\x02\\x8b\\xdd\\x18\\x2e\\x1f\\x4f\\xbc\\xbe\\xb2\\x5a\\xbd\\x31\\x84\\x1d\\x7b\\x2a\\x35\\x84\\xba\\x65\\x73\\x5c\\xe9\\xca\\xfd\\xe0\\x8a\\xd3\\x72\\x6a\\x4b\\x4b\\x96\\xe3\\x03\\xbc\\x8a\\x4d\\xb2\\xe4\\xa5\\x01\\x8a\\x44\\xe8\\xf8\\xc0\\xda\\xd3\\x3a\\x75\\xfb\\x18\\x49\\x8c\\x21\\x18\\x29\\xc9\\xb5\\x96\\x6b\\x08\\x84\\x72\\x84\\x88\\x64\\xf1\\xb8\\xdf\\xda\\x91\\xc5\\x28\\xf1\\xd8\\x43\\xcf\\x7a\\x46\\x99\\x19\\x2c\\x7d\\xf8\\x66\\x6c\\xb3\\x7a\\x27\\x72\\x48\\xb6\\xc8\\x32\\x83\\x20\\x4b\\x2a\\xf8\\x45\\x43\\x39\\x00\\x20\\xf3\\x08\\x71\\xc4\\x1b\\xdb\\x3c\\x8c\\x5d\\x93\\xeb\\x23\\xaf\\x0d\\xd2\\xeb\\x70\\xa2\\x34\\x7c\\x88\\xeb\\x84\\x9a\\xe8\\x2a\\x06\\x32\\x58\\xad\\xc6\\x65\\x21\\xfa\\x61\\xe1\\x96\\x8c\\x6e\\x21\\x30\\x71\\x29\\x8c\\x58\\x07\\x21\\xfa\\x88\\x68\\xe7\\xd1\\x12\\xe9\\x3f\\x88\\xa2\\x3d\\x41\\x82\\x23\\xd5\\x4a\\xdc\\x5b\\x06\\x8a\\x37\\x63\\x78\\xd1\\x47\\x75\\x3c\\x91\\x95\\x2a\\x37\\xb9\\x47\\xf1\\x55\\x40\\x30\\x35\\x87\\x14\\x21\\x27\\xd5\\x00\\x19\\x0d\\x13\\xd5\\x43\\x28\\x6b\\x82\\x12\\x67\\x07\\x52\\x95\\x0a\\xc9\\x04\\xab\\xa1\\x30\\x8c\\x8c\\x81\\x52\\x4c\\x85\\x90\\x1b\\xb0\\x10\\x1e\\x94\\x50\\x91\\xd2\\x09\\x51\\x28\\xe3\\xf8\\x1c\\x09\\x87\\x67\\x08\\x25\\x49\\xca\\x0b\\xea\\x28\\x8e\\xd2\\x30\\xed\\x42\\x88\\x80\\x11\\x08\\xc4\\x09\\x1a\\x80\\x8e\\x3d\\xa1\\x4e\\x28\\xf3\\xb7\\x40\\xf6\\x0a\\xd7\\x2d\\xfb\\xf8\\x05\\x1c\\x39\\x58\\x09\\x85\\x1a\\xb6\\x42\\x0a\\xc6\\x75\\xa9\\x1f\\xb4\\xdd\\x13\\x36\\x7e\\x85\\x64\\x94\\xb2\\xf1\\xd1\\x0c\\xb2\\xcf\\x3e\\xa0\\xa3\\x61\\x49\\x4b\\xac\\xa8\\xd8\\x52\\x98\\x4d\\xaa\\x58\\x0a\\x8a\\xf3\\x46\\xcf\\xe6\\xe6\\xab\\x9a\\x88\\x45\\x91\\x45\\x5f\\xa1\\x0f\\xd9\\xca\\x81\\xe5\\x3d\\x12\\x69\\x77\\x64\\xee\\x74\\x82\\xc6\\xb2\\x8f\\x80\\xc5\\xcf\\x1c\\xa4\\x58\\x00\\x8b\\x6a\\xb3\\x16\\xf7\\x8e\\x18\\x89\\x9e\\x54\\x42\\x53\\x46\\x35\\x03\\xa7\\x05\\xb9\\x21\\x6f\\x20\\x80\\xc6\\xc8\\xf2\\x02\\x2e\\xc8\\x08\\x3a\\xb8\\x22\\xe0\\x08\\xc4\\x0a\\x92\\x17\\x0c\\x58\\x93\\xd1\\x84\\x53\\x01\\x0a\\x24\\xc1\\x16\\x21\\x76\\x54\\x43\\x48\\xf5\\x96\\x83\\x04\\x58\\x85\\xe7\\x67\\x64\\xcf\\x33\\x3c\\x7e\\xb2\\xc9\\x80\\xaf\\xd2\\x41\\xfd\\xb2\\x48\\xa7\\x11\\x6b\\xc6\\x99\\xee\\x78\\xdd\\x49\\xc6\\x0f\\xcb\\xfc\\x8d\\x72\\x33\\x2f\\x84\\x0e\\x61\\xb6\\x75\\x4a\\x26\\x49\\xd9\\x0f\\x59\\x60\\xb1\\x07\\x3d\\xb1\\xa8\\x59\\xe2\\x40\\xaf\\x7a\\x2c\\x48\\x1d\\xcc\\xcc\\xc0\\xb2\\xa0\\x02\\xf7\\x30\\x47\\xac\\x32\\x39\\x26\\x46\\x33\\xee\\xcb\\xc3\\xfa\\xb3\\xd3\\xf2\\xa4\\xf4\\xc7\\xd7\\xe9\\xa1\\x3e\\x0a\\xa0\\x44\\x7f\\x33\\x23\\xae\\xbc\\x9c\\x68\\xbb\\xa1\\xa1\\x8e\\x56\\x8b\\x09\\x58\\x85\\x38\\xda\\xe6\\x4d\\x32\\x36\\x83\\xc6\\xae\\xdd\\x0a\\x4b\\x76\\xc0\\x38\\xd4\\xc2\\xea\\xdf\\x0b\\x06\\x30\\x75\\x0f\\xc1\\xba\\x63\\x04\\x1a\\x99\\xef\\xbd\\x7d\\x93\\x74\\xc6\\x08\\x05\\x46\\xf6\\x30\\x43\\xa8\\x96\\x46\\x20\\x18\\x07\\x3f\\xc6\\x5e\\x92\\x9d\\xbb\\xeb\\x9f\\x22\\xf2\\xaf\\xb1\\x97\\x4c\\x28\\x9e\\x46\\x85\\x42\\x4b\\x4c\\x14\\x60\\x41\\xe1\\x82\\x81\\x74\\xc1\\x47\\x6c\\x2d\\xed\\x47\\x68\\x65\\x00\\xcf\\x19\\x36\\xf3\\x35\\xf9\\xf8\\xd2\\x8f\\xcd\\xd5\\xe7\\xe4\\x4f\\x61\\xe8\\xe0\\x80\\x26\\xf0\\x95\\x2a\\xff\\x73\\x3e\\x42\\x8b\\xbc\\x43\\xab\\xbb\\xd2\\x22\\xd7\\x94\\xee\\xb5\\x51\\x70\\x9f\\x7d\\x45\\x90\\xb1\\x0e\\x5b\\x84\\x09\\xfa\\xe4\\x17\\xf9\\x1e\\xa1\\x32\\x33\\x04\\x69\\x20\\x89\\x07\\x31\\x02\\x70\\xc3\\xc1\\x77\\x8e\\xf4\\x82\\x87\\xac\\x9a\\x7e\\x13\\xd9\\x03\\x45\\xc8\\x53\\x6f\\x69\\x3f\\xba\\x29\\xbe\\xdb\\x07\\xb9\\x19\\x10\\x83\\x86\\x0f\\x76\\xbf\\x9f\\x47\\xcf\\x4d\\x01\\x5a\\xbc\\xc6\\x4b\\x66\\x4e\\xd8\\xa0\\xde\\xb3\\xa2\\x2d\\x91\\x60\\x91\\x86\\x66\\x69\\x34\\x7e\\x94\\x5e\\x37\\xae\\x75\\x43\\x87\\x4e\\x6d\\x43\\xe5\\x94\\xf2\\x6a\\x48\\x3e\\x5e\\x02\\x54\\x95\\x72\\x13\\x89\\xc4\\x81\\xac\\x1e\\x47\\xe8\\xc0\\x4b\\x46\\xd9\\x01\\x49\\x30\\x15\\xb4\\x61\\xb4\\xce\\x6f\\x33\\xad\\xb0\\xaf\\xad\\x69\\x85\\x6a\\x22\\x4a\\x55\\xb3\\x12\\x2c\\x4f\\xba\\x39\\xb7\\x70\\x7b\\xd9\\xe8\\x49\\x92\\xa0\\x0c\\xbd\\x36\\x5c\\xf1\\x7a\\x32\\x03\\xa3\\x43\\x7d\\x5b\\x67\\x06\\x5d\\x60\\x76\\xce\\x35\\x0f\\x98\\x1c\\xf3\\xd6\\x80\\xe5\\xb3\\x9e\\x4c\\x07\\x45\\x82\\x63\\xb3\\x44\\x4b\\x07\\x68\\x62\\x60\\xbf\\x6f\\x1e\\x8a\\xbc\\xd4\\xe1\\xf8\\x57\\x3e\\x41\\xe4\\xf4\\x48\\x32\\xe8\\xde\\x43\\x28\\x86\\x47\\xa8\\x71\\x8b\\xdd\\x3f\\x98\\x3f\\xc9\\xd3\\xf2\\x0c\\x59\\x9a\\xe2\\xc3\\xd2\\xf9\\xd3\\xe2\\x64\\x18\\xb3\\x38\\x09\\xe0\\xea\\x15\\xcb\\xf3\\xe0\\xcd\\x98\\x80\\x3c\\xf6\\x46\\xeb\\x88\\x0c\\xec\\x45\\x78\\xaa\\x44\\x10\\xcc\\xed\\xf8\\xfa\\xa9\\x59\\xc4\\x1a\\xad\\x67\\x10\\x78\\x87\\xb0\\xb3\\x2f\\x71\\x3a\\x2b\\x88\\xe1\\x14\\x58\\xca\\x8c\\x95\\xe3\\x19\\xce\\x33\\x28\\x34\\x4d\\xb1\\x99\\xec\\xfa\\xeb\\x92\\xe8\\xb8\\x3f\\xd1\\x75\\x6d\\xdc\\xd7\\x3d\\xd0\\xbb\\xeb\\x54\\x55\\x17\\x21\\x99\\xbc\\xe0\\x1b\\x67\\x69\\x26\\xa1\\x0b\\x10\\x58\\xeb\\x29\\x47\\xdb\\x9c\\x67\\xbd\\xc5\\x90\\x5a\\x52\\xc4\\x8f\\x8a\\xca\\xfd\\x73\\xb0\\xbc\\x93\\x4f\\x12\\x3b\\x0f\\x3e\\x04\\xfc\\x8f\\x17\\xc9\\x90\\xf1\\x47\\x19\\x59\\x34\\x92\\x8c\\x81\\x59\\x6e\\x31\\x08\\xc1\\x8d\\x94\\x8e\\x59\\x62\\xbf\\xcb\\x8a\\x45\\x45\\x4f\\xe3\\x7f\\x00\\x20\\xc2\\x65\\x38\\x83\\x06\\x83\\x66\\x79\\x4a\\x14\\x22\\x60\\x02\\x02\\x93\\xb8\\x78\\x55\\xe4\\x6e\\xb2\\x66\\x2a\\xfa\\x51\\xa8\\x29\\xc8\\xf6\\x2c\\xcc\\x6b\\x94\\x7c\\x4e\\xa7\\x51\\xc4\\xa0\\x09\\xc9\\xee\\x26\\x44\\x35\\x4e\\x31\\x90\\xc1\\xa4\\x44\\x7a\\x13\\x18\\x46\\x1b\\xe3\\x17\\xbc\\x4c\\x27\\xe8\\x48\\x98\\x4c\\xf4\\x44\\x68\\x77\\x13\\x66\\x89\\xa0\\x45\\x05\\xb4\\xa9\\x3c\\xe4\\x27\\xa2\\xa5\\x73\\xe1\\x5b\\x6f\\x51\\xd7\\x64\\x94\\x15\\x3f\\x97\\x29\\x54\\x30\\x74\\x2a\\xb0\\x62\\x91\\x19\\x9b\\xc2\\x94\\xbb\\x4f\\xc6\\x79\\x5f\\xa7\\x53\\x58\\xbe\\xd7\\x17\\x94\\xd5\\xd9\\x15\\x1e\\xa3\\xd6\\x0f\\x68\\x2e\\x5a\\x30\\x67\\xb6\\x00\\xe9\\x69\\xa4\\x90\\x1c\\x69\\xec\\xca\\x9f\\xd0\\x95\\x35\\x99\\x34\\xd9\\x12\\x2c\\x7a\\x14\\xb5\\xba\\xa8\\x98\\x98\\xd8\\xee\\x34\\x9c\\xda\\x17\\x69\\x73\\xc3\\x1b\\x63\\x21\\x03\\x70\\xeb\\x01\\x11\\x80\\x71\\xf8\\xfc\\xc0\\x3e\\x06\\xc4\\xa8\\x21\\x0d\\x8d\\x31\\x19\\x6a\\x59\\x27\\xe4\\xd5\\x12\\x1b\\xb4\\xeb\\xd9\\x38\\xa7\\xd2\\x6b\\x90\\xed\\x41\\x10\\x21\\x5c\\x48\\x26\\x32\\xac\\xcf\\x20\\x72\\x8d\\x02\\x51\\xfe\\xbf\\x54\\x9b\\x50\\x55\\x0e\\x54\\xf8\\xd6\\x14\\x51\\x47\\x5d\\x25\\x5f\\xf1\\xb5\\x45\\xe9\\x58\\x1f\\xa4\\x25\\xac\\xec\\x00\\x05\\x9e\\x44\\xd1\\x78\\x82\\x59\\x61\\x39\\xf2\\x37\\x9d\\x8e\\x24\\x2a\\x04\\x45\\x89\\xb3\\x47\\xe4\\x82\\xad\\xd3\\x11\\x0d\\xd7\\xaa\\xe0\\x48\\x6e\\xa6\\x4e\\x06\\x58\\xf1\\x95\\x20\\x9b\\x66\\x63\\xbb\\xf5\\x1a\\x4d\\x33\\x8b\\xdb\\x48\\x09\\xe0\\x64\\x77\\x1e\\xc2\\x04\\xd5\\x0a\\x9d\\x67\\x21\\xab\\xa4\\xd4\\x1a\\xdf\\x2c\\x1e\\x42\\x63\\x1a\\x3e\\x42\\xd4\\xb6\\xd8\\xd6\\x73\\x30\\x0e\\x68\\xdc\\xeb\\x86\\xfb\\x07\\xa3\\x33\\x5c\\xcc\\x08\\x55\\x70\\x2e\\x93\\x1c\\x22\\xfa\\xd4\\x6e\\x72\\x03\\x95\\x6c\\xdb\\x2a\\x2e\\x4a\\x85\\x1c\\x69\\x45\\x4b\\x05\\x02\\x37\\x80\\xa2\\xc5\\x40\\xce\\x7c\\x23\\x85\\x29\\xe5\\x35\\x2c\\xc3\\x54\\xe2\\x74\\xc7\\x19\\x31\\xbb\\x26\\x3f\\x52\\x62\\x09\\xf5\\x4e\\xf8\\xaf\\xc6\\x46\\xe6\\x0c\\x15\\xe4\\xae\\x99\\x42\\xeb\\xb1\\x80\\x9e\\xa6\\x0d\\xca\\x72\\x55\\x12\\x86\\x6a\\xdc\\x6f\\xf4\\xc9\\x05\\x43\\xf6\\x79\\x4d\\xea\\xf0\\xb0\\x93\\x61\\x12\\xe5\\x99\\x2e\\xb9\\x83\\x57\\x85\\x81\\x30\\x55\\x53\\x3d\\x2d\\x8a\\xd3\\x24\\x66\\x0f\\xe5\\x4b\\x92\\x35\\x22\\x63\\x00\\xa2\\x20\\xd0\\xca\\x5a\\x60\\x61\\xcd\\xa0\\x38\\xbb\\xe6\\x71\\x31\\x90\\xe3\\x3b\\xc1\\xc5\\x27\\xae\\xba\\x63\\xaf\\x2b\\x52\\x04\\x78\\x8e\\xba\\xcb\\x80\\xf6\\xaa\\xcd\\x04\\xb2\\xbc\\x2f\\x89\\xd1\\xf5\\xe6\\x81\\x43\\x1c\\xcd\\x5e\\x16\\xe8\\xf0\\x51\\x1e\\xc5\\x1a\\x55\\x84\\x0b\\xa2\\xc6\\x15\\xc3\\x95\\x0c\\xba\\xbe\\x0a\\x70\\x81\\x72\\x92\\xa8\\x8c\\x74\\x20\\x92\\x0b\\xb2\\xba\\x99\\x18\\xe8\\x41\\x2e\\xe3\\x4a\\x51\\x67\\xce\\x11\\xf9\\x57\\x4a\\xa8\\xf0\\x21\\x0a\\x1e\\x70\\x8d\\x71\\xf5\\x83\\x46\\x84\\xff\\xa1\\x00\\x15\\x14\\xe2\\x55\\x01\\xf9\\xce\\x3c\\x63\\x12\\x91\\x63\\xc0\\x41\\x4d\\x2b\\x2a\\xe3\\x3a\\x13\\x67\\x8e\\xd4\\xae\\x1c\\xca\\xf5\\xc4\\x44\\x30\\x51\\x85\\xbb\\x60\\x95\\x4d\\x11\\x2c\\x75\\x70\\x1e\\xa1\\x08\\xf3\\x38\\x77\\x17\\xca\\xba\\x5c\\x6a\\x49\\x46\\x09\\x13\\x19\\x5a\\xc7\\x19\\x24\\xc8\\x16\\x42\\x6c\\x16\\xe8\\xf1\\xa2\\x16\\x93\\x05\\x79\\xa5\\xd8\\x2c\\xf3\\x40\\xec\\x02\\x06\\xa7\\xb0\\xf3\\x4d\\x71\\x84\\xbc\\x49\\xa2\\x83\\xd9\\x1c\\xd1\\xde\\x95\\x7d\\x37\\x66\\x9c\\x22\\x51\\xe1\\x1f\\x4e\\x13\\x74\\xc6\\xc2\\x05\\xb2\\xce\\x02\\xa2\\xc2\\x3d\\x65\\x95\\x04\\x39\\x26\\xdb\\x2b\\x06\\x88\\x05\\xf2\\x64\\xf8\\x69\\x6c\\x3c\\x9e\\x91\\xa4\\x96\\xb4\\x38\\x5e\\x75\\xb3\\x8d\\x33\\x6e\\x26\\x36\\x0d\\x00\\x0a\\xf4\\xb5\\xe0\\x51\\xd8\\x64\\x04\\x6a\\x07\\x3f\\x85\\x79\\x19\\xde\\xe3\\xf0\\x52\\xbb\\x8e\\xd2\\x2d\\xd2\\xce\\x7a\\xc3\\xc6\\x0c\\x3e\\xc7\\x00\\xd2\\xbb\\x91\\xe3\\x2f\\x9b\\xbc\\x8d\\x04\\xca\\x56\\x4c\\xec\\xae\\x3a\\x27\\xe1\\x24\\x7a\\x27\\x9e\\xc0\\xf1\\x87\\x00\\x09\\x0c\\x09\\x44\\x70\\x71\\x10\\x2c\\x53\\xb2\\xcb\\x4a\\x76\\x4a\\xa7\\xa2\\x06\\xa3\\x07\\x9e\\x7f\\x04\\xce\\x16\\xae\\x1c\\x0f\\x74\\x8c\\x63\\xba\\x9e\\x2e\\x13\\x93\\xae\\xd2\\xc8\\x8e\\x9a\\xec\\x42\\x11\\x10\\x08\\xb7\\x11\\x5b\\x98\\x51\\xe4\\xb4\\x1e\\x7a\\x39\\xc3\\xca\\x64\\xf4\\x99\\x92\\xa7\\x01\\xa2\\xf8\\xfb\\x09\\x01\\x3e\\xcd\\x4b\\xa7\\x73\\x78\\x25\\x98\\xaf\\x1c\\xfb\\x2c\\x5b\\xd1\\xa2\\x11\\xbc\\x16\\xc8\\xc8\\xe6\\xfc\\xdc\\x68\\x0e\\x3b\\x8c\\x44\\x6a\\x83\\x2a\\x38\\xd4\\x8b\\xa6\\x99\\xc1\\x2c\\x6b\\x7c\\xca\\x61\\x3b\\xd9\\x1c\\xeb\\x9f\\x17\\xac\\x31\\x4e\\x82\\x4c\\x61\\x16\\xc7\\xa4\\x3a\\xea\\xf8\\x87\\x0a\\xff\\x04\\xef\\x01\\x8c\\x22\\xd8\\x4a\\x5c\\x6f\\x25\\xd6\\xc1\\x3c\\x97\\xc2\\xf1\\x77\\xb5\\x44\\xa3\\x79\\x2d\\xe2\\xdf\\x32\\x2e\\x02\\xf1\\x01\\x44\\x53\\x8a\\x8c\\xf0\\x2f\\x17\\xc2\\xb5\\x17\\x84\\xb5\\x0e\\x28\\x50\\xc5\\x1b\\x56\\x8b\\x61\\x5a\\x2b\\x4e\\x10\\xcd\\xb1\\x4e\\x62\\x5b\\x8c\\xe7\\xbb\\xc4\\x94\\x33\\x60\\x3c\\x05\\x8c\\xa4\\xe6\\x4d\\x1d\\xf1\\xc2\\x64\\xd6\\x2b\\x64\\x0a\\x09\\xad\\x42\\xd8\\x1a\\x6e\\xbc\\x09\\x10\\xd0\\x15\\x0f\\xa1\\xa0\\x2a\\xac\\x31\\x8c\\xee\\x9b\\xba\\xb0\\x80\\x92\\x87\\x21\\xfd\\x67\\xdf\\xb5\\xa0\\x5b\\x2c\\x02\\xd2\\x30\\xf1\\x85\\x02\\xf2\\xc0\\x29\\xf0\\xb6\\x16\\x92\\xef\\x78\\x28\\x63\\x22\\x98\\x4a\\xc1\\x40\\x92\\x06\\x20\\xc9\\xa0\\xee\\x92\\x0a\\xd7\\xf6\\x26\\x3a\\x40\\xa0\\x28\\x82\\x78\\x24\\x2c\\x92\\x8f\\xb1\\x06\\x4c\\x00\\xcf\\x27\\x82\\x59\\x10\\x38\\xb1\\x2c\\xf0\\x7f\\x5e\\xd0\\x6e\\x21\\xb9\\x34\\x6c\\xb6\\x37\\x23\\x31\\xe5\\x58\\x55\\x9d\\x35\\x93\\x38\\x9e\\x16\\xd9\\x72\\x1f\\xb1\\x90\\x0f\\x8c\\x00\\xe8\\xa4\\xee\\x94\\x89\\x00\\xba\\xd0\\x80\\x0f\\xc3\\x18\\x44\\x99\\x26\\xed\\x64\\x8e\\x89\\xbe\\xa8\\x10\\x68\\xa8\\x1e\\x91\\x43\\xb7\\x82\\x8a\\x4f\\x8f\\x46\\xb9\\x80\\x07\\x51\\x04\\x1c\\x16\\x15\\x00\\xf8\\xfe\\x98\\xa0\\x0d\\x34\\xf3\\x6c\\x10\\x76\\x89\\x01\\x29\\xf1\\x20\\x24\\x60\\xa4\\xa7\\xc4\\x24\\x45\\xc7\\x91\\x76\\x12\\x3e\\x43\\x62\\x08\\x43\\x63\\xa0\\x39\\xc7\\x10\\x02\\x87\\xa1\\xee\\x47\\x21\\xd0\\x62\\xf1\\x24\\x37\\x16\\x3d\\xf1\\xd8\\x49\\xf1\\x4d\\x28\\x80\\x15\\x00\\x00\\xb2\\x25\\xa7\\x01\\x3a\\x48\\x5b\\xd6\\x2c\\x5f\\x80\\x6d\\x82\\x43\\x50\\x24\\x0b\\x9f\\xcd\\x0b\\x99\\xce\\x5b\\x98\\xcc\\x15\\x1c\\x59\\x13\\x8e\\x56\\x39\\x37\\x10\\xf6\\x2e\\x8e\\x88\\x98\\x82\\x72\\xca\\x3c\\xbe\\x25\\x0d\\x30\\x7b\\x16\\x24\\x84\\x0e\\x23\\x49\\x39\\x17\\x6c\\xb0\\x51\\x80\\xf1\\x53\\xcd\\x80\\x4a\\x60\\x60\\x09\\x9c\\x1c\\x8c\\x2e\\x9a\\x39\\xd1\\x8e\\x33\\x7b\\x58\\x60\\xc0\\x45\\x9e\\x85\\x90\\x62\\xdb\\x55\\xc8\\x19\\x82\\x46\\x88\\xbc\\x5b\\xd4\\x24\\xdc\\xca\\x75\\xc1\\x0b\\xe0\\x0a\\xa8\\x59\\x06\\x01\\x00\\xb4\\x09\\x54\\x56\\x08\\xe5\\x21\\x09\\xd0\\x9b\\x75\\x90\\xaa\\x98\\x56\\x08\\xd2\\x0e\\xd5\\xce\\x84\\x41\\x75\\x95\\x97\\xf8\\x5c\\x4a\\xa4\\xad\\x31\\x4d\\x54\\x89\\x00\\xb2\\xe9\\x4c\\x93\\x68\\x64\\x4f\\x32\\x4a\\xc2\\x5b\\x91\\x2a\\x35\\x24\\x4c\\xc3\\x22\\x8d\\x09\\x13\\x04\\x44\\x11\\xad\\xf8\\xc9\\xa5\\xa9\\xa6\\xb5\\x1e\\x0f\\x69\\x2c\\x89\\xc2\\x03\\xae\\x17\\x53\\xb9\\xd9\\x93\\x55\\x17\\x10\\x2a\\xcb\\x4a\\xb3\\x92\\x6f\\x0a\\x16\\xa0\\x04\\xf6\\x52\\x38\\x2f\\x8b\\x24\\x08\\x3d\\xdd\\x8e\\xa2\\xd4\\xe6\\x81\\xc9\\xbd\\xc1\\x60\\x50\\x76\\x2d\\x68\\x9c\\x5f\\x30\\x94\\x03\\xc7\\x45\\xd6\\xba\\x78\\xad\\x8a\\x30\\xb2\\x5a\\x8d\\x70\\x0f\\xfc\\xce\\x08\\x5a\\xe0\\x19\\xe8\\x93\\xba\\x67\\x7d\\x28\\x0c\\xe0\\x5e\\xe8\\x08\\x76\\x12\\x73\\xa6\\xe1\\xa2\\x23\\x18\\x26\\xfc\\x21\\x31\\x82\\xef\\xb7\\x0d\\x24\\x98\\xc2\\xf3\\x60\\x27\\xd0\\x49\\xc2\\x06\\xbd\\x6b\\x2f\\x80\\x59\\xb3\\x43\\xb0\\x5c\\x29\\x69\\xea\\x1c\\x5b\\x64\\x10\\xb1\\x43\\xb0\\x52\\x59\\x96\\x8d\\x12\\x46\\x62\\x75\\xf9\\x7e\\x86\\x4e\\x05\\xfe\\x1e\\xf1\\xa5\\x06\\xd0\\x14\\x81\\x1c\\x1b\\xa0\\x02\\xb6\\xbb\\x4e\\x27\\x62\\xe5\\xfb\\x5b\\x44\\x4c\\xb6\\x1a\\x92\\xb8\\x16\\xd7\\xe5\\x15\\x10\\xf8\\x44\\x0d\\x97\\x59\\x22\\xb8\\x1d\\x1c\\x49\\x74\\x20\\xee\\x6c\\x5a\\xab\\x29\\x86\\x6d\\x5b\\x95\\x9c\\x39\\x8c\\xf6\\xc3\\xac\\x82\\x98\\x39\\xf5\\xb9\\x44\\xe2\\x0e\\x2c\\x60\\xd1\\x11\\x6e\\x38\\x46\\x62\\x95\\x6c\\x14\\xc6\\x06\\x40\\x59\\xee\\x48\\x44\\xcc\\x92\\xb4\\xb7\\x80\\x05\\x1a\\xe4\\xa2\\x74\\x39\\xae\\xd0\\x73\\x54\\x59\\x43\\x95\\x81\\x1b\\x2c\\x31\\x50\\x59\\xa3\\x34\\x00\\x7a\\x39\\x08\\xf0\\x07\\x50\\xd5\\x4b\\x65\\x67\\x12\\x72\\x3c\\x0b\\x5a\\x00\\x01\\x63\\x0d\\xb1\\xc9\\xc7\\x80\\x08\\x2a\\x10\\xec\\xb8\\xca\\x25\\x10\\x52\\x5c\\xfe\\x84\\x78\\x09\\xa9\\x27\\xab\\x65\\xc0\\xbd\\x68\\x66\\x93\\xa9\\xd2\\x97\\x20\\x4a\\x14\\x67\\xb3\\x2a\\xc1\\x61\\x74\\x11\\x84\\xaf\\x19\\x42\\x02\\xdd\\xaa\\xf9\\x45\\x49\\x64\\x2e\\x39\\x76\\x9c\\xaf\\xa3\\x3f\\x49\\xa7\\x26\\x66\\x25\\xc8\\x25\\x53\\xd1\\xf3\\xe9\\x81\\x74\\x18\\xd2\\x63\\x76\\x23\\x73\\xb2\\x8d\\xa5\\x47\\xae\\x94\\xc5\\xee\\xc7\\x48\\x5a\\x56\\x88\\x68\\xa8\\x30\\x13\\xd1\\x44\\x62\\xba\\xb2\\x0a\\xf6\\x6e\\xa2\\xc2\\x15\\xc6\\x6d\\x59\\x1b\\x7b\\x41\\x50\\x90\\xf2\\x90\\xfd\\x15\\x64\\xf4\\x44\\x48\\x3b\\xc2\\xf2\\x72\\x5b\\xcd\\x48\\x88\\x61\\x19\\xe8\\x88\\x56\\xe3\\x9a\\xa6\\x25\\xa7\\x23\\x96\\x72\\x2e\\xe9\\xea\\x22\\x17\\x02\\x7a\\x02\\xd4\\xd6\\xd8\\x90\\x71\\x1c\\x0f\\x5c\\x12\\xa2\\xd8\\x18\\x23\\x30\\x6c\\x86\\x28\\x76\\xf7\\xd3\\x44\\xee\\x6e\\x2e\\x51\\xb8\\xcb\\x84\\xbe\\x43\\x16\\xa3\\x3f\\x50\\x45\\x5c\\x31\\x0b\\x09\\x29\\x29\\x0a\\x20\\x48\\xa7\\x4a\\x68\\x1f\\x3a\\xdc\\x28\\x2c\\x22\\xc1\\x95\\xc4\\xda\\x68\\xaa\\x1c\\xdd\\x21\\x64\\x42\\x88\\x12\\x21\\x30\\x15\\x55\\x25\\x90\\xe2\\xbf\\x8a\\xa0\\x1e\\xde\\x91\\x42\\xa5\\x87\\x12\\x98\\xa8\\x0f\\x4b\\x7a\\x45\\xc1\\xb0\\x47\\x59\\x19\\xb6\\x2d\\x18\\x29\\x3c\\x05\\xbc\\x31\\xa1\\x28\\x63\\x52\\xd2\\x65\\x26\\xc9\\x40\\x2d\\x40\\x63\\x43\\x41\\x8d\\x37\\x1c\\x64\\xf0\\x21\\x07\\xed\\xc0\\xac\\x4f\\x1a\\x65\\xe0\\x42\\x05\\x5a\\xae\\x43\\x6c\\xb6\\xab\\x6b\\xbc\\x37\\xa7\\x03\\x30\\x1e\\x74\\x31\\xd5\\x97\\xe7\\x39\\x1a\\x96\\xa7\\x88\\x14\\x0a\\xc8\\xb2\\xff\\x1f\\x74\\xaa\\x6e\\xe1\\xfa\\x4b\\x29\\x62\\xc0\\x8d\\x11\\xfb\\xba\\x42\\x8d\\xa7\\x35\\x05\\xd9\\x4f\\x1c\\x03\\xa5\\x0a\\x4a\\xd1\\x08\\x85\\xd2\\x40\\xe5\\x72\\xb9\\xb6\\x62\\x41\\x3c\\x56\\x1a\\x2b\\xb8\\x4b\\x43\\xff\\xed\\x28\\x84\\x4a\\xaa\\xc3\\x88\\x05\\x03\\x61\\x1f\\xb3\\x05\\x79\\xd7\\x70\\x6f\\xf2\\xcc\\xf4\\x11\\x22\\x5d\\xe3\\x12\\x14\\xc8\\x82\\xcc\\x16\\xcb\\x8c\\x0f\\x13\\x57\\xcf\\x40\\x03\\x6f\\x16\\x55\\x12\\x25\\xa2\\x82\\xad\\x47\\x04\\xa7\\x89\\xf9\\xf9\\x78\\x0b\\x06\\x40\\x07\\x66\\xb0\\x12\\x06\\x83\\x1e\\x9c\\x22\\x3a\\x60\\x9d\\xb1\\x54\\x73\\x00\\x02\\x4f\\x17\\x33\\xa4\\x88\\xda\\xfc\\xb4\\x93\\xd4\\x89\\xa1\\x91\\xcf\\x5c\\x61\\x12\\x8d\\x37\\xf9\\x39\\x05\\x92\\xd8\\x14\\x0e\\xa8\\x31\\x2a\\x97\\x02\\xf4\\xad\\x2e\\x87\\xac\\xc6\\x57\\x2b\\x89\\x78\\x12\\x8d\\x95\\x11\\x1d\\x66\\x32\\x4a\\x4a\\xef\\xe7\\x98\\x61\\x43\\xd3\\xcc\\xdb\\xe8\\x79\\x79\\x62\\xc8\\x81\\x35\\xdc\\xe2\\x6a\\x4a\\x33\\xda\\x44\\xff\\x20\\x4c\\x89\\xa9\\xf2\\x41\\x28\\x34\\x05\\x10\\x32\\x8f\\x97\\x5a\\x22\\x69\\x6c\\x7b\\x5d\\xf2\\xe3\\x74\\x94\\x21\\x6d\\x0a\\xb0\\x57\\xdc\\xef\\xcc\\x4c\\x51\\x33\\x53\\x68\\x03\\x9e\\xaa\\x80\\x9f\\x70\\xc8\\x42\\x60\\x2f\\x3c\\x8b\\x22\\x66\\x84\\xf0\\xce\\x22\\x9e\\x01\\x5c\\x6c\\x8b\\xcd\\x7d\\xd9\\x16\\x42\\x72\\x50\\x40\\x27\\xf1\\xfe\\x8f\\x11\\x66\\x06\\x65\\x8d\\x3a\\xb1\\x8b\\xd2\\x8f\\xc2\\x8c\\x77\\x90\\xa5\\xcd\\x1c\\x43\\x94\\xab\\x88\\x6e\\xce\\xfa\\x43\\x89\\x96\\x55\\x82\\x43\\x5f\\x3c\\x8d\\x61\\xfc\\x15\\x0f\\xea\\x16\\xc6\\x90\\x58\\xde\\x2a\\xeb\\x95\\x65\\x49\\x51\\x24\\x52\\xd7\\xca\\x5b\\xf2\\x8e\\x9e\\xa1\\x9a\\xb3\\x70\\x73\\xec\\x1d\\xc0\\x71\\x4f\\x48\\xea\\x58\\xc8\\xda\\xb8\\x69\\x75\\x01\\x73\\x5f\\x6f\\x6f\\x92\\xbb\\xd5\\x64\\x10\\xc0\\x4c\\x74\\x1d\\xa0\\x50\\x31\\x83\\x48\\x82\\x39\\xde\\xe5\\x2d\\x86\\x10\\x79\\x9c\\x23\\x33\\x6c\\x3e\\x6b\\xbb\\xc3\\x2f\\xab\\x12\\xc7\\x35\\x41\\x86\\x78\\x8d\\x92\\x19\\xaf\\x43\\x2b\\x90\\xaa\\xd5\\xbc\\x40\\xb9\\xf4\\xc2\\xa1\\x98\\x4f\\xce\\x57\\x01\\x05\\x7b\\x2a\\xb3\\x14\\xea\\x41\\xb4\\x01\\x53\\x94\\xa1\\xca\\x03\\x41\\x3b\\x21\\x84\\xee\\xe1\\xb4\\xfd\\x0e\\x44\\x1c\\xe5\\x1a\\xbc\\x9b\\x16\\x9a\\xe0\\x2e\\x05\\x3a\\x7c\\x38\\x8c\\x06\\xb0\\x4e\\x2a\\x14\\x10\\x6e\\x22\\xce\\x30\\xe6\\x11\\x5a\\x1c\\xb0\\x7b\\x61\\x0e\\xb1\\xd3\\xe8\\xfb\\x07\\xbc\\x35\\x1c\\xcd\\x1a\\x76\\xb0\\xe8\\x0f\\xc7\\x17\\x69\\xb4\\xd4\\x6d\\x52\\x8b\\xe0\\x58\\x77\\x02\\x4b\\x26\\x2f\\x93\\x4d\\x40\\x58\\x06\\x5d\\x13\\x4b\\x38\\x14\\xe4\\x66\\x76\\xa0\\x77\\x02\\x44\\xf6\\x19\\xa2\\x61\\x64\\x2d\\x50\\xb0\\xce\\x89\\x17\\x4e\\x5f\\x44\\xb2\\x21\\x14\\x58\\x02\\xb9\\xd4\\x0c\\x67\\x5c\\x14\\x46\\xa4\\x96\\xe8\\x8a\\x13\\x08\\xb0\\xea\\xb4\\x26\\xe2\\x09\\x14\\x3d\\x1e\\x04\\x18\\x4b\\xe6\\x71\\x41\\xdc\\x10\\x41\\x73\\x0e\\x43\\x83\\x10\\x88\\x62\\x02\\x0a\\xc5\\x55\\x31\\xaa\\x0b\\x4a\\x22\\xd3\\x21\\x8e\\xba\\x4f\\x58\\xd0\\x27\\xb6\\xc6\\xfa\\x60\\x69\\xc6\\x11\\x60\\x43\\x62\\x22\\x23\\x8b\\x71\\x58\\xa5\\x29\\x4d\\x12\\xa7\\x80\\xb0\\x34\\xc0\\xf0\\x04\\xac\\x10\\x5d\\x67\\xd8\\x98\\x7f\\xee\\xff\\x63\\xaa\\x88\\x88\\x71\\xc4\\x01\\x0c\\x3c\\x11\\x03\\xc1\\xd4\\xc3\\x2a\\x44\\x50\\x50\\xa1\\xa0\\x52\\x0c\\xca\\x64\\x06\\x09\\x01\\xd3\\xd6\\x86\\x33\\x3c\\x69\\x86\\x20\\xa8\\x78\\x26\\x20\\x08\\xb1\\x81\\xa4\\x8a\\x9a\\x43\\x42\\x0c\\xea\\x14\\x16\\x34\\x81\\xc4\\xa0\\xcc\\x82\\xa4\\x10\\x8e\\x3f\\x01\\x8f\\xa1\\x87\\x4d\\xbb\\x6d\\x56\\xc0\\x82\\x20\\x1f\\x02\\x24\\x1d\\x60\\x58\\x3a\\x71\\x09\\xf8\\x12\\x55\\x78\\x0c\\x76\\x00\\xb4\\x01\\x61\\x2a\\x59\\xa2\\x8f\\xf5\\x88\\x12\\x80\\xce\\x6e\\x00\\x00\\xc3\\x9d\\xfa\\x21\\x7d\\x99\\x1e\\xa7\\x11\\xf0\\xfa\\x8c\\xa0\\x00\\x19\\xf4\\x00\\xc0\\x01\\xc0\\x37\\xd1\\xd0\\xdc\\xbf\\x20\\xb0\\x13\\x5c\\xff\\x35\\x19\\xed\\x6b\\xd5\\x20\\x0c\\x53\\x80\\xd4\\x7f\\x08\\x25\\x43\\x64\\xd9\\x51\\xf4\\x1a\\xf9\\x59\\x4f\\x92\\x3e\\x85\\x20\\xec\\xf9\\x47\\x83\\xf4\\x77\\x6c\\x9c\\x49\\xea\\x20\\x79\\xae\\x82\\x88\\x21\\x3c\\x4d\\x41\\x5b\\x9f\\xa5\\xcb\\xf1\\x3b\\x36\\x4c\\x72\\xf1\\x39\\x60\\x97\\x3e\\xf6\\xa3\\xa6\\x33\\x05\\x6e\\xf5\\xdf\\xb4\\xa2\\xfc\\x08\\x02\\xdf\\x68\\x1e\\x15\\xf9\\x64\\x69\\x67\\xe4\\x91\\x49\\xf1\\x57\\x6b\\x92\\xe4\\x46\\x86\\x66\\x74\\x2e\\x98\\x54\\x1a\\x4b\\xa3\\x5d\\x67\\xeb\\xf9\\x03\\x33\\xfd\\x1b\\x6f\\x28\\xfc\\x42\\xb8\\xb0\\x22\\xb8\\x64\\x68\\x10\\x65\\xce\\xfd\\xc8\\x10\\xb8\\xe6\\xdc\\xe9\\x3b\\xf4\\x91\\x7d\\x59\\x14\\x22\\x6a\\x57\\xa5\\x55\\xe8\\xeb\\x5f\\xd1\\x0c\\xa7\\xe8\\x00\\x0a\\x8e\\x55\\x45\\xea\\x80\\xa0\\x22\\x5d\\x66\\x5b\\xca\\x05\\xa4\\xda\\xfc\\x0f\\x47\\xd9\\xbf\\x0d\\x69\\xf5\\x8f\\x7e\\x24\\x95\\xdc\\xb5\\x4a\\xde\\xa8\\x09\\x1d\\x8f\\x73\\x8d\\x59\\xe0\\x3d\\x08\\xe5\\xa8\\x1b\\x8e\\x19\\x10\\x12\\x38\\x66\\x21\\x5f\\xba\\xb3\\x70\\xee\\xe7\\x0c\\xb4\\xb9\\x23\\x12\\x7e\\x89\\x72\\x3f\\xd0\\xd1\\x8d\\xd8\\x84\\x21\\x7b\\xa2\\x07\\x5c\\x29\\x4c\\x3b\\xeb\\x9c\\x5b\\xb1\\xb9\\xe9\\xbb\\x31\\xb7\\x74\\xc0\\x45\\xcb\\xf4\\x30\\x0d\\x13\\x4c\\xcf\\x33\\xce\\x59\\xe4\\x7f\\x02\\x60\\x25\\x66\\x9f\\x87\\xdf\\x12\\x11\\x0a\\xdf\\x32\\x28\\xf8\\x28\\x38\\x5b\\xb9\\xe0\\x01\\x9a\\x5c\\x66\\xa9\\x78\\xa9\\x05\\x8c\\xe2\\x7c\\xc4\\x52\\x71\\x5c\\xa2\\xbd\\x64\\x77\\x0d\\xdb\\x0d\\x77\\xf1\\x40\\x48\\x17\\xbc\\x55\\xbe\\x00\\x4e\\x5e\\x24\\xb3\\xe0\\xf8\\x2c\\x21\\x54\\xe5\\xde\\xb0\\x85\\x57\\x46\\xcc\\x25\\x54\\x6a\\x72\\xb7\\x8c\\x52\\xda\\x84\\x96\\xf0\\x8d\\x6d\\xb7\\xa5\\x13\\x46\\x82\\x82\\xaf\\x45\\x0f\\x02\\xc3\\xe0\\x11\\x89\\xe4\\xc5\\x1d\\xb7\\x4a\\xd1\\x95\\x61\\x34\\x69\\x82\\x3f\\x17\\xef\\xc0\\x8e\\x11\\xec\\x26\\x04\\xe6\\x3e\\x94\\xbd\\x5e\\xf6\\x0e\\x18\\xfe\\xc1\\x80\\x5e\\x8e\\x0f\\xbb\\x40\\xbb\\x6f\\x45\\xa3\\x67\\xa0\\x6e\\xcd\\x76\\xad\\x76\\xa4\\x5b\\x50\\x55\\x98\\x02\\xcd\\x2b\\xd9\\x85\\x50\\x10\\xa4\\x9b\\x30\\x92\\x99\\x68\\xec\\xd5\\x5f\\xe1\\x85\\xb6\\x03\\x46\\xc4\\x23\\xd8\\x8e\\x5c\\xd8\\xb9\\x42\\x78\\x87\\xd8\\xb0\\x03\\xaf\\x6b\\x98\\xb0\\x53\\x73\\xb4\\x0f\\x76\\x00\\x25\\x49\\x80\\x2c\\xec\\xdd\\x81\\xa4\\xe6\\x2c\\x02\\x04\\x07\\x6c\\x19\\x80\\x39\\x0a\\x0c\\xe0\\xe0\\x4f\\x92\\xb5\\x5a\\x2f\\x80\\xd1\\x23\\x06\\xb9\\x61\\x83\\x04\\x0c\\xf6\\x18\\x61\\x1b\\x75\\x21\\x01\\xad\\x59\\xaa\\xa8\\x20\\x5e\\xd7\\x66\\x58\\x43\\x5f\\x13\\x42\\xc8\\xc7\\x0c\\x21\\x47\\xf7\\x36\\x46\\x02\\xaa\\x05\\xc9\\xa1\\x02\\xae\\x8c\\x37\\x86\\x6c\\x57\\x75\\x1a\\xb4\\x2a\\x4c\\x2e\\x87\\xd2\\x8b\\x4c\\x98\\x27\\x0d\\x7c\\x4e\\x4c\\xfd\\xe1\\xfd\\x9d\\xc8\\xc9\\x9f\\x49\\x55\\x02\\xb4\\xe4\\xc7\\x4a\\xb7\\x36\\x3e\\x12\\xf0\\x63\\x0d\\xd1\\x05\\xb5\\x86\\x4f\\xd8\\x7e\\x04\\x64\\xe7\\x39\\x2f\\x9f\\x27\\x5a\\x68\\x64\\x3a\\x2c\\x7e\\x2d\\xf5\\x67\\xb6\\x0a\\x19\\x00\\x21\\xa5\\x4b\\x2e\\x76\\xc7\\x91\\x1d\\xbe\\x8c\\x6b\\x44\\x8a\\x50\\xe8\\xca\\xa5\\x68\\xc1\\x17\\xa4\\x21\\x85\\x9e\\x1f\\x98\\xc6\\xab\\x2b\\xa1\\x0a\\xa6\\xe3\\x05\\xb8\\x47\\x6f\\x0a\\x34\\x93\\x04\\x08\\xf7\\x4a\\xdc\\x34\\xac\\x25\\x59\\xc7\\x06\\xc2\\x53\\xae\\x98\\x14\\x22\\x11\\x42\\x3a\\xea\\x60\\x7b\\x1d\\xa9\\x2a\\x30\\xc6\\x1c\\xb6\\x8c\\x6b\\xc8\\xc9\\xd1\\x03\\xb9\\x6e\\x62\\x03\\x30\\x75\\x0a\\xe1\\x16\\x71\\x18\\x62\\x86\\x41\\x7d\\x89\\xcf\\xd9\\x5a\\x3c\\x6b\\x70\\x44\\x90\\x58\\x19\\x1f\\x4a\\xe1\\x05\\x04\\xc4\\xe3\\xb6\\x83\\x46\\x1f\\xdd\\x56\\x06\\xd0\\xcd\\xa7\\xb1\\x08\\x20\\xae\\x61\\x19\\xe8\\x58\\x8b\\x4b\\x2b\\x5c\\xcc\\x18\\x75\\x43\\x5a\\xe6\\x60\\xc3\\x9a\\x1d\\xab\\x08\\x83\\x0d\\x68\\x6c\\xb2\\xbe\\xec\\xb5\\xb2\\x08\\xeb\\x33\\xf4\\x32\\x81\\xb4\\x92\\xe0\\x95\\x9c\\x47\\x89\\xf2\\x14\\xc1\\xb0\\xd3\\xa5\\x6a\\xf9\\x85\\xb3\\xc4\\x2a\\x9f\\x51\\x1d\\x62\\x73\\xb6\\xc2\\x59\\xdb\\x69\\x31\\xb5\\x1e\\x05\\xf3\\x41\\x9f\\xcb\\x00\\xbc\\x67\\x68\\x7a\\x8f\\x98\\xd6\\x9c\\xb3\\x5e\\x9d\\x35\\x55\\xaa\\x35\\xb9\\xb1\\x9d\\xd6\\x11\\xa3\\xd8\\x72\\xff\\x01\\x0c\\x73\\x28\\xe0\\x59\\xfa\\xcc\\x09\\x30\\x17\\x33\\x01\\x10\\x4a\\xab\\x2a\\x18\\x2a\\xc1\\xab\\xa2\\x6a\\x58\\xa8\\x64\\xa3\\xa8\\x69\\x10\\x18\\x32\\x3d\\x41\\x83\\xa0\\x31\\x00\\x9a\\x22\\x6b\\x13\\x91\\xcc\\xd7\\xa1\\x55\\xd4\\x58\\x46\\x9d\\xbc\\x1f\\x86\\xf2\\x12\\x17\\x09\\x83\\xf5\\x38\\x5b\\x25\\x3d\\x07\\xc9\\x80\\x23\\x70\\x4b\\x46\\x61\\x1e\\x74\\x21\\x8f\\x4c\\xe7\\x85\\xe4\\x18\\x11\\x97\\x47\\xf1\\x7d\\xb6\\xbe\\x8b\\xb9\\x1e\\x10\\x79\\x1a\\xb4\\x64\\x6a\\x02\\xa6\\x61\\xa3\\xd6\\x44\\x01\\x9d\\xc8\\x46\\x18\\xf2\\x7b\\x3a\\xc6\\xec\\x95\\x9c\\x09\\x0f\\x9d\\x83\\x21\\x1d\\x8e\\xcd\\x91\\xc5\\x32\\xa4\\x09\\x4c\\x84\\x90\\x26\\x60\\x0a\\xe8\\x78\\xb6\\x8c\\xc4\\xd4\\xb2\\x7f\\x68\\x4d\\x23\\x7f\\x00\\x04\\x50\\xb8\\xe1\\xe5\\xe6\\x91\\x01\\x03\\x07\\x44\\x92\\xe1\\xc9\\x00\\x8c\\x10\\xbe\\x13\\x49\\x21\\xdc\\x47\\x56\\x90\\xec\\x12\\x40\\x0f\\xbb\\xa0\\x90\\x49\\x90\\x9f\\x75\\x43\\x6f\\xd3\\x98\\xa4\\x60\\x54\\x0b\\x1e\\xd1\\x53\\x11\\x9c\\x3f\\x23\\xf3\\x8d\\x1e\\x19\\x1b\\x1d\\x13\\x31\\x15\\x93\\x83\\x7b\\x36\\xd0\\xd0\\x85\\xb8\\x92\\x30\\x00\\xa3\\xc5\\xa7\\xc7\\x00\\x70\\x1a\\x9e\\x68\\x65\\xcc\\x29\\xf2\\xc3\\x66\\x9a\\xd8\\x56\\xa4\\x29\\xbe\\x20\\xaf\\xa1\\xf5\\xf8\\x9c\\xb5\\xc9\\xdf\\x4d\\x64\\x28\\x0e\\x05\\x61\\x03\\xae\\xe4\\xa3\\x77\\x9b\\x11\\xd0\\xcd\\x55\\x18\\x86\\xc0\\x0d\\x85\\x93\\x10\\x43\\xf1\\x84\\xe7\\x42\\x52\\xb1\\xb4\\xda\\x76\\x0e\\xc6\\x0e\\x11\\x25\\xbe\\xa2\\x50\\x42\\x8e\\x66\\x88\\xf5\\x81\\xb3\\x29\\x1f\\x8d\\xb1\\x60\\xa2\\x55\\x4a\\xf0\\x84\\xdd\\xf9\\x02\\xb6\\x9b\\x64\\x11\\xa2\\xa6\\x69\\x04\\xa6\\x4e\\x40\\x0f\\xf1\\x0e\\xa8\\x34\\x08\\x64\\x7f\\x62\\xa7\\x73\\x6f\\xfd\\x90\\x1a\\x25\\x40\\xfd\\x90\\x19\\xfc\\x6f\\x94\\x3a\\x4e\\x92\\x59\\x94\\xc4\\x87\\x20\\x6e\\xa5\\xb9\\x0c\\xe5\\x89\\xe3\\x50\\xe7\\xb4\\x2f\\xc9\\x06\\xfe\\x17\\xe6\\x23\\x19\\x35\\x46\\x8a\\x28\\x91\\x0c\\x88\\xfc\\x45\\x23\\x6c\\x25\\x7e\\x37\\x6a\\x0f\\x15\\x84\\xbe\\x6e\\x33\\x18\\xbe\\x11\\x70\\x08\\x9a\\xa7\\x7d\\x05\\x12\\x60\\x48\\x0d\\x28\\x23\\xa8\\x88\\x86\\x75\\x80\\x8e\\xfd\\xb3\\xc4\\x7a\\x08\\xe1\\x51\\x2e\\x2f\\x04\\x72\\x04\\x41\\xa3\\xd7\\x04\\x74\\x0d\\x97\\x21\\x07\\x02\\x3a\\x9a\\x26\\xe8\\x6a\\x80\\x9d\\xf9\\xd2\\xa0\\xe9\\x01\\x3b\\xb4\\x6c\\x10\\x1b\\x40\\x9d\\x3f\\x1a\\x08\\xc8\\x60\\x2f\\xb7\\x47\\x71\\xfc\\xac\\x40\\x3f\\x77\\x10\\x60\\xc4\\x96\\x36\\xc6\\x1c\\xc6\\x34\\x0c\\x60\\xa3\\xab\\x16\\xf7\\xfd\\xdd\\x64\\x46\\x23\\xd0\\x15\\xd0\\xa9\\x02\\x5b\\xd1\\x1b\\x10\\x97\\xe7\\xce\\x56\\x71\\x22\\x0f\\x21\\xe3\\x08\\x41\\x3c\\xc6\\x87\\x98\\xc2\\x83\\xc3\\x17\\x81\\x30\\x03\\x00\\x6b\\x3c\\xa2\\x17\\x61\\xff\\x04\\x24\\xb2\\x5f\\xb7\\x10\\xec\\x65\\x43\\x8a\\x68\\x77\\x55\\x3b\\xb9\\x44\\xba\\xed\\x2d\\xbb\\x83\\xb0\\x2f\\x74\\x91\\x6b\\x44\\x41\\x82\\x25\\xc9\\x18\\x40\\x0b\\x89\\x04\\x5f\\xf2\\x01\\x76\\xff\\x2f\\x8a\\x6b\\x2b\\xc8\\x34\\x0b\\xf1\\x06\\x70\\xc0\\x11\\x75\\x58\\x45\\x2c\\x31\\x29\\x92\\x38\\xa4\\x16\\x82\\x8a\\xf8\\xdf\\xc9\\xc2\\xa4\\x57\\xcd\\x28\\x85\\x20\\x55\\x5e\\x88\\x19\\xc9\\xe4\\x33\\x21\\x46\\x92\\x8c\\xc1\\x0b\\x90\\x5f\\x32\\xde\\x6d\\x43\\x00\\xbe\\xea\\xb1\\x82\\x74\\x02\\xee\\x64\\x4b\\xa6\\x10\\x4e\\x81\\xc0\\x21\\x29\\x93\\x90\\x08\\x50\\x9d\\x0e\\x4e\\x1a\\xaf\\x42\\x26\\x59\\x37\\xc1\\x76\\xcd\\x38\\x25\\x72\\x3e\\xc2\\x5b\\x50\\x0b\\x2d\\x53\\xb9\\x44\\x4a\\xd3\\x95\\x68\\x14\\xa2\\x02\\x40\\x20\\xa3\\x40\\x4c\\x11\\x49\\x81\\x21\\x54\\x50\\x46\\x9b\\x81\\xba\\x40\\x1d\\x36\\x1c\\x21\\x16\\xe3\\x51\\x4e\\x26\\x83\\x04\\xd8\\x21\\xe0\\x6c\\x0e\\x28\\x17\\xc6\\x04\\x40\\xe1\\xbe\\xb6\\x32\\x71\\x77\\xc7\\x38\\x48\\xa9\\xdb\\xe3\\x11\\x26\\xa2\\xe2\\x64\\x24\\xba\\xee\\x34\\x0e\\x50\\xc4\\xba\\x6f\\x04\\x95\\x90\\xdb\\x85\\x7d\\xb9\\x91\\x9a\\x1d\\x20\\x8e\\xcc\\x22\\x63\\x52\\x38\\x4f\\x37\\x14\\x0b\\x1a\\x2a\\xfe\\xfb\\x61\\xaa\\x9f\\xa0\\x2c\\x26\\xc2\\x20\\x53\\x07\\xc3\\x81\\x34\\x57\\x6f\\x2d\\xbc\\x85\\xfc\\x38\\xfb\\xf0\\xcb\\x31\\x12\\x47\\x3f\\x12\\xc4\\x75\\xe8\\xd9\\x62\\xea\\x88\\xce\\x3f\\xd1\\x3d\\xc0\\xd3\\x0c\\x33\\xe5\\x2f\\xbb\\x8d\\x39\\x06\\x5a\\x00\\xf0\\x8e\\x63\\x3b\\x0e\\x49\\xf1\\x57\\xb3\\x07\\x3b\\xf0\\xbc\\x82\\xd9\\xec\\xca\\x85\\xc8\\x5b\\xc2\\x3c\\xe3\\x13\\xc9\\x77\\x26\\x79\\x05\\x8c\\x79\\xe2\\xaf\\x93\\xa1\\x56\\x81\\x8e\\x0a\\x31\\xf4\\x06\\x30\\x1a\\xfd\\xe6\\x61\\xe9\\x27\\x42\\xac\\x4a\\x04\\x87\\x61\\x19\\xb4\\xdd\\x4b\\xd5\\x8e\\x4d\\xaa\\x3c\\xcc\\x0b\\x42\\x3d\\xdf\\xa4\\xea\\xf8\\x58\\xee\\xfd\\xef\\x17\\x77\\xa5\\x75\\x7d\\x68\\xaf\\xcc\\xdb\\xd1\\x6d\\xbf\\xd7\\xe6\\x64\\x5a\\x6f\\x76\\x5b\\xda\\x70\\x88\\x14\\x05\\x20\\x35\\x06\\x88\\x24\\x81\\x64\\x2c\\x74\\xe8\\x72\\xf8\\x27\\xc3\\x52\\x1e\\xe0\\x41\\x0b\\x14\\x13\\x30\\x52\\x84\\x64\\x26\\xe1\\xe7\\x07\\xc8\\x35\\x42\\x8d\\xf2\\x0f\\x0c\\x3e\\xd9\\xf4\\xef\\x8a\\x7d\\x13\\xf2\\x3d\\x33\\x8f\\xf9\\xeb\\x37\\x8b\\xdf\\xe0\\xfc\\xc7\\x8d\\xde\\x83\\x79\\x41\\xe2\\x27\\xd8\\x9f\\x6a\\x7e\\xc1\\xf1\\x37\\xe1\\x3c\\x66\\xea\\x66\\x98\\x3a\\xe7\\xe1\\x09\\xb7\\x96\\x9f\\x22\\x7a\\xe5\\xe9\\x07\\x99\\x1e\\x29\\x79\\x45\\xf3\\x8e\\xb9\\xe4\\x55\\x7a\\xe1\\xfb\\x37\\x83\\xf1\\xeb\\x5c\\xf8\\x16\\x31\\x46\\x7c\\x4f\\xd4\\xfb\\x7b\\xa9\\x8e\\x2b\\x70\\x8d\\xd8\\x07\\x43\\x1d\\x9b\\x70\\x88\\xee\\xbb\\xb6\\x6d\\xde\\x19\\xe1\\xdc\\xf8\\x76\\x1d\\xd9\\x77\\x72\\x1c\\x28\\x3b\\xbc\\xea\\x0b\\x68\\xa3\\x5b\\x07\\x6c\\xdc\\x06\\xb6\\x80\\x38\\x8a\\xd1\\x72\\xee\\x07\\xef\\xb6\\xe9\\x9d\\xbd\\xdc\\x33\\xf5\\xb1\\x03\\x6c\\xec\\x3c\\x98\\x8c\\x58\\xdd\\x5a\\xfe\\x0c\\x8a\\x60\\x96\\x23\\x15\\x08\\x0e\\xe6\\x3a\\x14\\x76\\xc4\\xee\\xf3\\x79\\x8d\\x89\\x36\\xea\\xd1\\xe5\\xb1\\x6b\\x88\\xa0\\xa1\\xac\\x4d\\x4d\\xac\\x5b\\xb2\\x35\\x43\\x6c\\xd7\\xa7\\xab\\x55\\xce\\x21\\xd6\\xf7\\x07\\x5f\\x2b\\x59\\xe7\\x2e\\xa2\\xc9\\xfa\\xcc\\x8d\\x13\\xb4\\xac\\xed\\xd4\\xd8\\x61\\xb1\\xd3\\x65\\x56\\xa0\\xb4\\x27\\x9c\\x44\\x6d\\xc9\\xee\\x54\\x23\\x8a\\x7f\\x2c\\x22\\x00\\x0d\\x0a\\x5a\\xfe\\x35\\x55\\x68\\x18\\xd1\\x71\\xaa\\x8b\\x2c\\xe7\\x56\\x84\\x10\\x93\\x78\\x21\\x10\\x17\\x65\\xd9\\x47\\x98\\x37\\xa5\\x95\\xae\\x56\\xca\\xa4\\xd8\\x59\\x8b\\xcc\\x4c\\xb3\\xd8\\x36\\x76\\xc0\\xd9\\xb3\\xd2\\xdc\\x58\\x8a\\x20\\xb6\\x1f\\xd2\\xd7\\x07\\xfd\\x6f\\x59\\x88\\x60\\xd2\\xcd\\x7b\\x00\\xd6\\x00\\x61\\xf6\\x95\\x69\\x9d\\xd5\\xf9\\xd6\\xae\\x0f\\xd5\\x0b\\x5f\\x39\\x7b\\x60\\xdc\\x94\\x28\\xbf\\x50\\xdd\\xd2\\x0b\\x94\\x0d\\xca\\x51\\x10\\x4a\\x0b\\xbe\\xf3\\x0b\\xf4\\x7f\\xde\\x7b\\x13\\x30\\xf0\\x5f\\xaa\\x75\\xcf\\xae\\x29\\x79\\x96\\xed\\x5a\\x35\\x62\\xd5\\xb7\\x57\\xde\\xbc\\x85\\xc7\\x4b\\x13\\x21\\x43\\xe3\\x0f\\x41\\x51\\x66\\x4a\\xdc\\xf8\\xcb\\xd3\\xda\\x93\\x27\\x85\\x4d\\x7f\\xe3\\x6f\\x4c\\x99\\x75\\x3c\\x87\\x67\\xf1\\xb6\\xb1\\x53\\x90\\x66\\x66\\x2d\\x4f\\x2a\\x4d\\x56\\xb2\\xbd\\x55\\x1e\\xab\\x35\\x4a\\x29\\x3d\\x51\\x8a\\x9b\\x57\\x9a\\xa1\\x64\\x2f\\x33\\x31\\x76\\x9b\\x33\\x92\\xb6\\x55\\x12\\xa1\\xd5\\x3c\\x5d\\x59\\x9c\\xcd\\x4c\\xb5\\x0a\\x55\\xda\\xac\\x74\\x8f\\x33\\xbb\\x92\\xe4\\xa8\\x41\\xa4\\x98\\x8c\\xb5\\x4c\\x30\\x8c\\x3c\\x9a\\xd2\\x6b\\xe9\\xd8\\x26\\x0e\\x9c\\x14\\x8c\\x13\\x0d\\x48\\x0d\\x2f\\xc4\\x94\\x52\\x54\\x4c\\x6d\\x2b\\x54\\x25\\x10\\x58\\x8d\\x26\\x67\\xca\\xd0\\x66\\x99\\xd9\\xdd\\xe1\\x23\\x34\\xa3\\x27\\x38\\x44\\x5e\\x2f\\x6c\\xf3\\x5b\\x28\\x8d\\x9a\\x52\\x2b\\x80\\x59\\xa4\\x61\\x09\\x12\\xdc\\xd2\\x36\\xf4\\x33\\x58\\x89\\x38\\xe2\\x33\\x58\\xc1\\xbb\\x9a\\xc8\\xb6\\x8a\\xbb\\x35\\x92\\x96\\x7b\\xbc\\xd6\\x04\\xec\\xb9\\xad\\x88\\xb5\\xe3\\x73\\x5b\\x69\\x1b\\x35\\xa1\\xe2\\x03\\x7c\\xd6\\xab\\x88\\x32\\xcd\\x7a\\x48\\xb7\\xbc\\xd7\\x06\\x51\\xb4\\xe6\\xb3\\x1b\\x45\\x0f\\xe6\\x97\\x9a\\x84\\x49\\xdd\\x29\\x9a\\x87\\xc6\\xb3\\x51\\x06\\x36\\x0c\\x99\\xa8\\x0a\\xdb\\xcd\\x40\\x9c\\xe0\\x10\\xcc\\xd9\\x68\\xf7\\xa0\\x4b\\x42\\x8e\\x8b\\x01\\x00\\x25\\x17\\xb6\\x49\\xcc\\xd8\\xf4\\x67\\x33\\x63\\xca\\x5c\\xcd\\x89\\x99\\xeb\\x6d\\x3e\\x59\\xa0\\x55\\x03\\x68\\x70\\x42\\x72\\x1d\\x90\\x4a\\x88\\xa4\\x3c\\xa1\\x4d\\x1a\\x68\\xf4\\x66\\x7c\\xcf\\x3d\\x12\\xe8\\xf1\\x44\\x2a\\x1d\\x91\\x42\\x88\\xf3\\x86\\x4f\\x6a\\x7a\\x03\\xc3\\x9e\\x60\\xfa\\x0e\\x96\\x3b\\x98\\xec\\x33\\x8a\\x4f\\xd0\\x7c\\x53\\x8e\\x0e\\x8f\\x33\\x39\\x9e\\x06\\x39\\xf3\\x3d\\xb3\\xe9\\x07\\x3e\\x67\\xa6\\x71\\x69\\xe1\\x07\\x01\\x9d\\xde\\x72\\x79\\xca\\x07\\x8d\\x9d\\x54\\x64\\x81\\x8a\\x26\\x13\\x98\\xa2\\x69\\xc3\\x7a\\x98\\xb0\\x65\\xc1\\xb6\\x06\\x06\\x9b\\xe8\\xd7\\x66\\x61\\x18\\xb4\\x62\\xd9\\x8a\\x26\\x7a\\x98\\xee\\x64\\x81\\xb7\\xa6\\xa3\\x99\\x54\\x64\\x39\\x98\\x66\\x23\\x1a\\xb8\\x6d\\x21\\xa2\\xa6\\x59\\x98\\xe0\\xcf\\x23\\x2f\\xcc\\xcc\\x34\\x20\\xd7\\x53\\x7b\\x0b\\x6d\\x2c\\xf8\\xa6\\x45\\x11\\x96\\xe8\\x57\\xf9\\x74\\xa5\\x01\\x4b\\xbc\\x2e\\xd0\\xa2\\xc9\\x6e\\xa5\\x79\\x16\\xf6\\x5b\\xf9\\x75\\xc5\\x0d\\x8b\\xb7\\x2c\\xa0\\xb7\\x92\\xe9\\x0b\\x97\\x2f\\xd8\\xbf\\x62\\x8a\\x05\\xee\\x17\\xa6\\x51\\xcc\\xb5\\x52\\x6a\\xc9\\xb4\\x24\\x24\\x96\\xd2\\x0e\\x64\\x88\\xc8\\x6e\\x92\\x42\\x24\\xa6\\x4c\\x70\\x8a\\xb9\\x24\\x42\\x58\\x24\\x72\\xc9\\x0f\\x92\\x44\\x21\\xb0\\x30\\x73\\x31\\x06\\x2e\\x73\\x31\\x67\\x61\\x66\\x63\\x0b\\xde\\x48\\x7c\\x48\\xe6\\x62\\x6c\\x25\\xe6\\x64\\x8a\\x8f\\xcc\\xc8\\xc0\\x14\\x67\\x1e\\x7e\\x7e\\x66\\x26\\xc1\\x41\\x2d\\xc2\\x4c\\x6d\\x88\\x8f\\x2b\\x70\\x8b\\x9f\\x91\\x9c\\x7b\\xdd\\xb3\\xa3\\x32\\x02\\x9b\\x1f\\xf6\\x19\\xfc\\x56\\xeb\\xf5\\x3c\\xf9\\x06\\x79\\xe8\\xcc\\xcd\\x02\\x4c\\x6d\\x32\\x16\\x31\\x52\\xfe\\x58\\xb1\\x3e\\x9c\\x63\\xa2\\x62\\x75\\x2a\\x1f\\xc4\\x8e\\x63\\x02\\xce\\x03\\x70\\x62\\x03\\xa8\\x21\\xfa\\x5e\\x74\\xd2\\x0f\\x3c\\xc3\\xce\\x16\\x63\\x4a\\x0e\\x39\\x49\\x46\\xbb\\x53\\xbc\\xb6\\x51\\xfe\\x99\\x65\\x15\\xfa\\x75\\x4e\\xc6\\xa5\\x11\\x04\\x9e\\x99\\xb9\\x1a\\xbd\\x45\\xe5\\x20\\x5a\\xeb\\x13\\x27\\x63\\x1c\\xf4\\x4c\\x31\\x26\\xba\\x23\\x28\\xdb\\x0c\\x81\\x63\\x3a\\x97\\x01\\x3b\\xbe\\x0c\\x82\\xc7\\x91\\x21\\xe4\\x99\\xc0\\x02\\xe9\\x64\\x27\\x02\\x6b\\x99\\xc4\\xb0\\x6a\\x3e\\x84\\x63\\x82\\x14\\x91\\xe7\\xcc\\xa4\\xc8\\x75\\xa4\\xcb\\x0b\\x30\\xc8\\x3b\\x5b\\x07\\x6c\\x99\\x28\\xda\\x61\\x1c\\xa0\\xd8\\xaf\\x8a\\xfe\\xdb\\x78\\x43\\xca\\xe0\\x5f\\xeb\\x81\\x75\\xa4\\xbb\\x17\\x45\\x28\\x16\\x92\\x91\\xfd\\xeb\\xe2\\x52\\x9f\\xb0\\xc5\\x01\\xdf\\xd9\\xe9\\x8f\\x19\\xb1\\xaf\\xb4\\x1c\\xcf\\x72\\x1c\\x63\\x70\\x83\\x5a\\x8d\\xd7\\x74\\x06\\xa6\\x29\\xf6\\xff\\x6c\\xdb\\xcc\\x52\\x96\\x59\\x25\\xa1\\x86\\x00\\x6d\\x1f\\xb9\\x9d\\x92\\x5b\\x3c\\x27\\x58\\x39\\x2b\\xba\\xca\\xa9\\x0c\\x4c\\x83\\xc8\\xd0\\xf1\\x52\\x49\\x30\\x10\\xbd\\xa3\\xe9\\x5a\\x54\\xb8\\x34\\x73\\x9b\\x88\\xbd\\xa2\\x3e\\x1e\\xb2\\x0d\\x52\\x9f\\x3e\\x84\\x4c\\xcb\\x77\\x46\\xd3\\x90\\x0a\\x40\\x65\\x2a\\x56\\x42\\x0e\\x33\\xe7\\xb8\\xf1\\xb7\\x0c\\x14\\x14\\xae\\xb9\\xe0\\x99\\x72\\x04\\x09\\x4c\\xe2\\x4e\\xa4\\x02\\xdf\\xc4\\x40\\x59\\x5b\\x82\\x08\\x40\\x02\\x5c\\xc0\\x04\\x6f\\xfa\\xf3\\x73\\x5e\\xe4\\x04\\x0a\\x5b\\x02\\x3a\\x59\\x93\\xd8\\x95\\x3d\\x88\\x08\\x57\\x0c\\xa7\\x51\\x01\\x1d\\xc0\\x04\\x76\\xc8\\x11\\xdb\\x18\\x10\\x5a\\x38\\x10\\x59\\x80\\x21\\x1f\\x1e\\x92\\xd7\\xca\\x5b\\x78\\x8b\\x03\\x3a\\x47\\x03\\x3a\\x3b\\x03\\x1a\\x26\\xf2\\x74\\x45\\xe7\\xd0\\xd7\\x9f\\x42\\x5e\\x7c\\xff\\x79\\xf3\\xed\\xe4\\xe7\\xcb\\xc9\\xcf\\x57\\x93\\x9d\\xaf\\x27\\x3a\\xde\\x4a\\x74\\xbc\\xb9\\xca\\xe2\\xa6\\x9b\\x8a\\x99\\x6e\\x2a\\x63\\xb8\\xa9\\x76\\xe3\\x19\\x62\\xe2\\xe5\\x5b\\x8b\\x94\\xae\\x2e\\x51\\xb8\\xb9\\x42\\xe3\\x19\\x3a\\xe2\\x52\\xcd\\xa4\\xa5\\x9b\\x49\\x4a\\xd6\\x91\\xca\\x76\\x9a\\x94\\xac\\x35\\x28\\xd8\\x74\\xac\\x79\\xc2\\x56\\x08\\xa5\\x4b\\x00\\xe5\\x30\\x00\\xca\\x49\\x7c\\x05\\x61\\xb9\\x42\\xc3\\x72\\x75\\x66\\xe4\\x3a\\xc9\\x48\\x35\\x92\\x8f\\xeb\\x25\\x1f\\xd6\\x6e\\x3c\\xa8\\xdc\\x71\\x51\\xb8\\xda\\xa3\\x73\\x15\\x46\\xe6\\x0a\\x88\\x25\\xaa\\x87\\x4a\\xf4\\x90\\x4a\\xb4\\x12\\x95\\x28\\x25\\x29\\xd0\\x4a\\x4d\\x9c\\x94\\x9b\\x39\\x29\\x1a\\x72\\x52\\x14\\xe4\\xa4\\x09\\xc9\\x4a\\xd3\\x8b\\x95\\xa7\\x17\\x2a\\xce\\x3e\\x54\\x98\\x82\\x52\\x98\\x82\\x50\\x98\\x82\\x45\\x98\\x4a\\x43\\x98\\x5c\\x83\\x30\\xb9\\x06\\x62\\xe3\\xd9\\x8b\\xae\\x66\\x2e\\xb6\\x94\\xba\\xca\\x52\\x3a\\xca\\x52\\x3a\\xba\\x53\\xea\\xb9\\x4f\\x84\\x00\\x01\\x07\\x80\\x02\\x0f\\x00\\x04\\x1c\\x00\\x08\\x2a\\x52\\x28\\x26\\x40\\x38\\x22\\x42\\x18\\x22\\x42\\x1b\\x98\\x00\\x2e\\x7f\\x81\\x73\\xfc\\x57\\x2f\\xa2\\x39\\x07\\xdb\\xe4\\x1d\\x6f\\x8c\\x75\\xce\\x31\\x3b\\x9f\\xc0\\xdc\\xa3\\x25\\x72\\xf8\\x1b\\x56\\xc9\\x6d\\x8c\\xd5\\xb6\\x23\\x51\\xbc\\x45\\x46\\xf1\\x20\\xf4\\xb2\\x7c\\xad\\x21\\x1b\\x0d\\x7e\\x51\\x37\\xa2\\x23\\x61\\xef\\xca\\x27\\xff\\xc8\\xd7\\x58\\x90\\x33\\x48\\xe7\\x20\\xa8\\xf1\\x4a\\x26\\xf4\\x22\\x45\\x2c\\xf9\\x61\\x96\\x7c\\x12\\xdb\\x80\\x4a\\x37\\xe8\\x53\\x2b\\xfd\\x63\\xa5\\x3b\\xbe\\x87\\x2d\\x7a\\x58\\xd7\\x84\\xe5\\x74\\x49\\x36\\xe4\\x7f\\x66\\x46\\x76\\x64\\x7d\\x5a\\x47\\x15\\x85\\x41\\x48\\x41\\x14\\x25\\xc9\\xfb\\xf2\\x5a\\x1b\\x7c\\x61\\x48\\x79\\x0c\\x8c\\xda\\xe5\\x23\\xf7\\x5c\\x83\\xba\\x94\\x71\\x04\\x81\\xe7\\xc4\\x5f\\x28\\x89\\x11\\x40\\x78\\x92\\x03\\x4d\\x61\\x8e\\x32\\x46\\x4d\\xec\\x56\\x8a\\xd5\\xb1\\x34\\x1e\\x2d\\x71\\x4e\\xc4\\xf6\\x46\\xbc\\x3b\\x2f\\xae\\x4e\\x22\\x13\\x8f\\x8e\\x89\\xfb\\xf2\\x33\\x01\\x70\\xe9\\x4b\\x49\\x11\\x26\\xc6\\x96\\x00\\x0d\\x69\\x83\\x29\\x6d\\x1a\\x11\\x25\\x09\\x51\\xfc\\xee\\x33\\x40\\x02\\xcf\\x69\\x6b\\x00\\x94\\xdc\\x74\\xa4\\x29\\x11\\x23\\xfd\\x38\\x32\\x36\\xf8\\x21\\x12\\x4a\\xa1\\x6c\\xc6\\xeb\\x36\\xd4\\x45\\xef\\x3f\\xd9\\x37\\xcd\\x96\\x7f\\x59\\xd1\\x87\\x46\\xb7\\x6c\\x87\\x8c\\x0a\\xaa\\x91\\xba\\x80\\x51\\x72\\xf5\\x08\\xb5\\xae\\x08\\xb1\\x32\\x12\\xb4\\x22\\xd4\\x49\\x22\\x9a\\x08\\x84\\xdb\\x4e\\xa2\\xcf\\x61\\x07\\x89\\xa4\\x8b\\x44\\x0f\\x29\\x1c\\x58\\x1e\\x29\\x06\\xdc\\x7f\\x6b\\xca\\x1c\\x9d\\x34\\x06\\x46\\x03\\xc3\\x48\\x00\\xcb\\xa1\\xcf\\xb9\\x4d\\x36\\xe9\\x86\\xcf\\x2c\\xda\\x24\\xd8\\xd2\\x45\\x8a\\xa3\\x58\\x5e\\x19\\x8a\\xa0\\xd9\\x31\\xfd\\x9a\\x1f\\x98\\xc1\\xf1\\x9d\\xde\\x59\\x25\\xe1\\x9c\\x1d\\x59\\xe1\\xc5\\xa9\\x1a\\x9a\\xc1\\x99\\x83\\x98\\x9b\\xda\\xfb\\x01\\xae\\x37\\x75\\x96\\x6b\\x56\\x66\\x25\\x56\\x70\\x3c\\xa7\\xd5\\xaa\\x51\\x44\\x25\\x9e\\x50\\xb3\\x3b\\xfc\\xc5\\xac\\x68\\x05\\xe9\\x69\\x64\\xb6\\xaf\\x39\\x26\\x78\\x26\\x45\\x41\\x14\\x26\\x7f\\x2f\\x5a\\xa8\\xa2\\xf9\\x7a\\xc2\\x60\\xa2\\x82\\xc1\\xcf\\xe5\\xa4\\x4a\\x58\\xa5\\x50\\xa5\\xa8\\x29\\x7a\\x65\\x72\\x2f\\xca\\x14\\x0d\\x23\\xd0\\x88\\xc2\\x4e\\xe3\\x1c\\x78\\x59\\xc5\\x50\\x57\\x38\\x21\\x1a\\xb9\\x9f\\xe5\\xe1\\x09\\x20\\x80\\x30\\x92\\x61\\x1f\\x0b\\x27\\x00\\x82\\xb4\\x69\\x65\\x60\\x2b\\xc9\\x75\\x13\\x8c\\xda\\x95\\x5a\\xe8\\x5a\\x11\\xe0\\x4c\\x41\\x9e\\x7b\\xfe\\x16\\x63\\x0e\\x24\\x3d\\x90\\xe4\\xf7\\x6a\\x76\\x76\\x8d\\x06\\x3f\\xfb\\x69\\x36\\x31\\xa6\\x67\\x36\\x2b\\x25\\x1d\\x4a\\xf7\\xe0\\x20\\xb4\\x3a\\x88\\x4c\\xc5\\xe2\\xcc\\x07\\xb1\\xb2\\x85\\x93\\x61\\x6f\\x8e\\x33\\x9f\\x3d\\xe4\\xd2\\x85\\x4d\\x4b\\x00\\x94\\x71\\xfe\\x52\\x01\\x0e\\x50\\x13\\xa2\\xb5\\x6a\\x16\\x7e\\x8b\\xf2\\xd5\\x2b\\xcc\\x4d\\x03\\x7c\\x53\\x7c\\xc9\\xfa\\x90\\x85\\xa9\\x66\\x82\\x42\\x72\\xe4\\x40\\xdd\\x3e\\xb7\\x23\\x2e\\x16\\x06\\x61\\x58\\x3c\\xf2\\xff\\x15\\x6f\\x71\\xa1\\x29\\x76\\x31\\x56\\x51\\xa6\\xb4\\x09\\x02\\x82\\x78\\xa8\\x51\\x16\\xf4\\x67\\xc1\\x19\\x4d\\x88\\x51\\x0b\\x0e\\x87\\x14\\x45\\x28\\x84\\x84\\xc3\\x46\\x34\\x34\\x2f\\xc8\\x24\\x1b\\x35\\xdd\\x32\\x6f\\xd3\\x01\\xaa\\x31\\x00\\xa6\\x4a\\x92\\xe6\\xa0\\x69\\xda\\x8c\\x03\\x20\\x69\\x81\\x32\\x31\\x0f\\x5d\\x33\\xba\\x69\\x0f\\xdf\\x82\\x3e\\x79\\xf7\\x3d\\x5e\\x2e\\x59\\xf7\\x20\\xa5\\xe3\\x42\\x0e\\x23\\xe1\\x10\\xc1\\xaa\\x96\\x96\\x03\\xa0\\xd1\\x01\\x20\\x14\\x80\\x90\\x67\\x81\\x91\\x10\\x02\\x7e\\xd9\\x96\\x42\\xcc\\x22\\xb9\\x91\\xf6\\x6d\\x0f\\xf6\\x2d\\xf2\\x24\\x28\\x82\\xfb\\x16\\xfb\\x4c\\x4f\\x93\\x7d\\x8a\\x47\\xa4\\x20\\xbf\\x5b\\xc8\\x4f\\x10\\xf8\\xfc\\x89\\x48\\x3b\\x76\\xc5\\x1d\\x0a\\xe2\\xc1\\x3e\\xc2\\xe0\\xb0\\x85\\x09\\x44\\xb9\\x69\\x59\\x54\\x7b\\x2c\\x9e\\xb5\\x3c\\xf9\\x5b\\xe6\\x4a\\x71\\xf3\\x24\\x52\\xfb\\x93\\x9a\\x7d\\x68\\xca\\x1e\\x34\\x13\\x47\\xaf\\xd4\\x75\\xed\\x1d\\xd1\\x30\\x74\\x5b\\xf1\\x37\\x4f\\x40\\xcc\\x3a\\x99\\x84\\xc9\\x88\\x30\\xa1\\x86\\xa7\\xb4\\x14\\x26\\x85\\x6a\\x78\\xbc\\x15\\x13\\x8a\\x03\\xe9\\x3c\\xb3\\x51\\x14\\x5f\\x12\\x2e\\x1e\\xc7\\x12\\x87\\x85\\x96\\x24\\xfa\\x8e\\x89\\xea\\x3a\\x48\\x0e\\x13\\x44\\x01\\x42\\x68\\xbe\\xa3\\x91\\xe4\\x0d\\x11\\x2e\\x0b\\xc9\\xf6\\xb1\\xa5\\x42\\x12\\x9d\\x6a\\x78\\x4c\\x98\\xdd\\x13\\x26\\xa7\\x52\\x73\\x04\\xfc\\xdf\\x99\\xd0\\x20\\x82\\xc6\\x53\\x0b\\xfc\\x4c\\x30\\x63\\x70\\xaf\\xcb\\xa3\\x9a\\x65\\x54\\xae\\xb1\\x13\\x0b\\xac\\x45\\x46\\x32\\x91\\x1a\\xf0\\xba\\x44\\x74\\x2e\\xb1\\x13\\x67\\x0d\\x5d\\xea\\x46\\xab\\x30\\x3e\\x95\\x57\\x6d\\x66\\xa8\\xfd\\xb5\\x3c\\x34\\xe0\\x5b\\x82\\x14\\xa6\\xc4\\x04\\x64\\x49\\xa9\\xb7\\x1c\\x65\\x85\\x36\\x5e\\x49\\x98\\x86\\x5c\\x8b\\xa9\\x48\\x6b\\x8c\\xdc\\x09\\x6b\\x7f\\x71\\x1c\\x9f\\xdc\\x47\\x2f\\xee\\x03\\x83\\xeb\\x80\\xe1\\xf1\\xb5\\x04\\xef\\x16\\x34\\x2f\\x6a\\x66\\x1a\\x57\\x61\\x4e\\xf7\\xe0\\x55\\xa0\\x26\\xb1\\x9d\\x39\\xce\\xe9\\x5b\\x73\\x41\\x5b\\xf4\\xf8\\x27\\x31\\x77\\x1f\\x59\\x31\\xf8\\xa5\\x27\\x72\\xd3\\x07\\x46\\xd2\\x2a\\x8d\\x1a\\x2d\\x3a\\x25\\xe6\\x7d\\x11\\x57\\xce\\x01\\x64\\x38\\x54\\xca\\x44\\x5d\\xa0\\xe6\\xca\\x9f\\x02\\x18\\x9c\\x7c\\x3e\\x92\\xe7\\x44\\x48\\x50\\x96\\x7f\\x82\\x0c\\x90\\x07\\x27\\x59\\x29\\x4c\\x22\\x06\\xf1\\x73\\x02\\x2b\\x5b\\x01\\xe0\\x0c\\xc6\\x31\\xd6\\x98\\x08\\x81\\xfb\\xd1\\xea\\x5a\\x65\\xed\\xe1\\x80\\xa3\\x08\\x18\\x9c\\xe3\\x45\\x7c\\x66\\x5c\\xe9\\x24\\x7f\\x19\\x1a\\x79\\x97\\x07\\x04\\x96\\x42\\xfd\\x84\\xfa\\x89\\x64\\x0f\\x13\\xf1\\x87\\x09\\xf8\\xa8\\xe2\\x45\\x87\\x88\\x31\\xdb\\xe6\\x3c\\x09\\x35\\x8f\\x02\\x0d\\x63\\x83\\x3d\\x00\\xc6\\xc5\\x79\\x0d\\x10\\x0c\\xe1\\xf3\\x63\\x01\\x03\\x2f\\x80\\x81\\x97\\xa7\\x58\\x94\\xb6\\x05\\x12\\x25\\xa9\\x0d\\x8f\\xef\\xf6\\x0d\\xdb\\xc8\\x1b\\xac\\x43\\x21\\x3e\\xb9\\x5d\\x0d\\x8b\\xbd\\x7c\\xda\\x37\\x0c\\x1b\\x02\\x22\\x8a\\xd7\\xa7\\x99\\x61\\x5e\\xba\\xe0\\x01\\x2d\\x6e\\x79\\xcf\\x46\\x12\\xcc\\x80\\x3e\\x0d\\x0f\\xca\\x87\\x52\\xcd\\x95\\x3c\\xd6\\x20\\x0c\\x93\\xc4\\x00\\x64\\x51\\xe8\\xbc\\x3b\\xc1\\xfe\\xf2\\x07\\x87\\xb1\\x13\\xd2\\x29\\x67\\xe3\\xb2\\x9f\\x43\\x69\\x13\\x84\\x45\\x9b\\xcb\\xb7\\x30\\x32\\xf1\\x22\\x16\\xc1\\x90\\x18\\xd7\\x6a\\x13\\x96\\x18\\xec\\x9c\\x22\\xfc\\xe5\\x62\\xdc\\x66\\x67\\x1a\\x2c\\xbe\\xba\\xf3\\xd3\\x95\\x12\\x37\\x96\\xc8\\x95\\xc9\\x97\\x23\\x04\\x1d\\x5e\\x49\\x87\\x94\\xcf\\x6d\\x5f\\xda\\xa3\\x68\\x7c\\x73\\x45\\xe9\\x02\\x43\\xba\\xdb\\x47\\x7a\\x60\\x18\\xab\\xe8\\x4c\\x12\\xae\\x6a\\xcf\\x06\\x5a\\xcd\\x0d\\xe2\\xaa\\x0c\\xa2\\x94\\xf2\\x15\\xc3\\x4e\\xe4\\x04\\x15\\x3d\\x7b\\x67\\x53\\x97\\x62\\xdb\\xc5\\x2d\\x7c\\x99\\x74\\x7d\\x08\\x06\\x38\\x69\\x2d\\xeb\\x0d\\xc6\\x2b\\xed\\x88\\x03\\x5d\\xaf\\xa6\\x0b\\xad\\xf3\\x80\\x77\\xea\\x82\\x44\\x04\\x0c\\xe8\\x3d\\x79\\x52\\x9c\\xef\\x02\\x3b\\x33\\xe0\\xc4\\x77\\x96\\xc0\\xee\\x92\\x7b\\x05\\x5f\\x26\\xda\\x6e\\xd5\\x38\\xa6\\x8a\\x8e\\x9a\\xd5\\x77\\x08\\x5f\\x70\\x1b\\x11\\x80\\x0d\\xdc\\x64\\x47\\x23\\x85\\x87\\x18\\x38\\x92\\x30\\xbe\\xc7\\xc7\\x3e\\xd1\\x47\\x07\\x44\\x48\\x05\\xcd\\x28\\x7d\\x0e\\x23\\xc7\\xa8\\x7f\\x75\\x5b\\x11\\x87\\x91\\x6b\\x1e\\xc4\\x65\\xd6\\x92\\x31\\x11\\x45\\x53\\x20\\x12\\xe8\\x10\\xa2\\x52\\xad\\x92\\x42\\x4c\\xa1\\x6c\\xd0\\x94\\x84\\x40\\x72\\x52\\x23\\x20\\x3c\\xcc\\xc2\\x41\\x27\\xd6\\x61\\x13\\xa6\\x69\\x56\\xc9\\x01\\x9c\\xd9\\xc2\\xdb\\x81\\xa0\\xfa\\xc4\\xd9\\x33\\x31\\xd8\\x6d\\x2f\\x1c\\x29\\x6c\\x59\\xc4\\xf8\\x7f\\x92\\x3e\\xe0\\xb6\\x6e\\x24\\x25\\x65\\x31\\x62\\x4d\\xc4\\x67\\x2e\\xd4\\x46\\x77\\xcc\\x9c\\x98\\x13\\x46\\x86\\x68\\x73\\x38\\x22\\x07\\xa9\\x87\\x64\\xd1\\xcb\\xa6\\xc1\\x04\\x66\\x13\\x14\\x32\\x31\\x0d\\x64\\x55\\x0e\\xdc\\x42\\x38\\xb5\\xba\\x98\\xe5\\xe1\\x93\\x4b\\xe5\\x86\\xb7\\x13\\xe6\\xa9\\x46\\x0d\\x93\\xa8\\xd1\\x23\\x8c\\x91\\x90\\xb9\\x22\\x8b\\x93\\xe2\\x8c\\x3f\\xfe\\x15\\xa4\\x58\\xb0\\x78\\x72\\x20\\xa9\\x5f\\x8a\\x13\\x45\\x51\\x8d\\x15\\x18\\xa2\\xb8\\x21\\xe0\\x54\\x5e\\x71\\x32\\xee\\x09\\x9c\\x89\\x3d\\xfb\\x44\\x75\\xfb\\x47\\xd7\\xcd\\x15\\x5e\\x14\\x3c\\x99\\x2a\\x75\\xec\\x73\\x7f\\x72\\x36\\x49\\x4d\\xac\\x95\\x2a\\xf6\\x29\\x51\\x92\\x39\\x3d\\x93\\xa4\\xbe\\xc0\\x91\\xfb\\x39\\x1b\\xb3\\x8f\\xfa\\x99\\xb0\\x22\\x8e\\xd8\\x11\\x47\\x0c\\x08\\xa3\\x56\\x0c\\xa3\\x3c\\x04\\x9f\\x07\\xd3\\x51\\x25\\xc0\\x73\\x7c\\x30\\x45\\xd6\\xed\\x63\\xef\\xf6\\xc4\\x29\\x77\\xda\\x07\\x4c\\x81\\x83\\xa5\\xa9\\x70\\xe6\\x8c\\x93\\x47\\x1f\\x68\\xc4\\x21\\x59\\xa3\\xac\\x6f\\xa5\\xa3\\x3d\\x7f\\x66\\x08\\x18\\x13\\x64\\xc1\\xc8\\xdd\\x75\\x67\\x75\\xcd\\x4c\\x14\\x46\\x05\\x0a\\x85\\x4c\\xd8\\x31\\xc9\\x44\\x87\\x82\\x0a\\x17\\x6c\\x00\\xf4\\xac\\x8f\\xa7\\xe0\\x87\\x45\\x19\\x70\\x51\\x8e\\xe5\\x22\\xee\\x52\\x0c\\x30\\x61\\x19\\x84\\x12\\xe2\\x43\\x48\\x8a\\x10\\x4b\\x8c\\x47\\xff\\xe0\\x52\\xe4\\x08\\x58\\x00\\xc9\\x70\\x90\\xe8\\x5c\\xab\\x42\\xe5\\x5a\\x2e\\x00\\xcb\\x71\\x59\\xf7\\x15\\x9f\\x51\\x59\\xb5\\x15\\x95\\xb0\\x0c\\x8a\\x04\\x44\\xe0\\x44\\xb9\\xd6\\x55\\x8e\\xb2\\x2c\\x43\\x64\\x58\\xeb\\x1a\\xc6\\x76\\x3c\\xe0\\x44\\xb0\\xbb\\x0a\\xc7\\xd8\\x56\\x3e\\xc0\\xb1\\x3a\\xfa\\xc4\\xeb\\xea\\x93\\xaf\\x2a\\x4e\\xbc\\xa9\\x3a\\xea\\xa4\\xeb\\xaa\\x88\\xab\\x8a\\x93\\xad\\xaa\\x45\\x5b\\x50\\x82\\xb4\\xa1\\x05\\x69\\x42\\x0a\\xba\\x64\\x15\\x64\\xc8\\x24\\xc2\\x08\\x01\\x26\\x27\\x1a\\x26\\x43\\x1a\\x26\\x43\\x19\\x26\\x43\\x18\\x24\\x43\\x13\\xa4\\x41\\x13\\x24\\x2e\\x21\\x48\\x94\\x42\\xf4\\x8c\\x88\\xd2\\x63\\xc9\\xd0\\xb3\\x11\\x25\\x23\\x80\\xcd\\x3d\\x5f\\xa7\\xc0\\x45\\x08\\x04\\x56\\xff\\xcb\\x58\\x8d\\x3f\\xf1\\x11\\x7e\\x23\\x3f\\x84\\x7b\\xec\\x91\\x3d\\x15\\x27\\xa2\\xfb\\xe8\\xb8\\x7a\\x2c\\xfe\\x0b\\x0f\\x82\\x2f\\x82\\x42\\xd1\\x5c\\x12\\x21\\xb6\\x24\\x43\\x69\\x48\\x86\\xd2\\x91\\xab\\x4a\\x24\\x36\\x84\\x48\\x6d\\x08\\x90\\xd9\\xd1\\x21\\xb3\\x20\\x43\\x65\\x40\\x86\\xcb\\xf7\\xc1\\x64\\xec\\x59\\xf9\\x96\\x1e\\x24\\x5e\\x24\\x81\\x0d\\x9c\\xf2\\x1b\\x31\\xe4\\x36\\x63\\x88\\x6c\\xa7\\x10\\xd9\\x4e\\x21\\xb1\\x1c\\x43\\x62\\x38\\x86\\xc4\\x71\\x0d\\x88\\xe2\\x1b\\x11\\xa4\\x36\\x0f\\x9b\\x4b\\x26\\xc2\\xc1\\xb0\\xb0\\xea\\x22\\xe9\\x23\\x48\\x62\\x39\\x5c\\x10\\x34\\x86\\x23\\x95\\xc1\\x03\\x48\\x61\\xf9\\x5b\\xf0\\x34\\x86\\x1d\\x95\\xbe\\x03\\x48\\x6c\\x26\\x90\\xc3\\x72\\xb7\\xc1\\xef\\x49\\x63\\xd0\\x57\\xf4\\x16\\x1c\\xe4\\x5c\\xe4\\x69\\x0d\\x54\\xd2\\x1a\\xa9\\xa4\\x35\\x53\\x48\\x6a\\x66\\x90\\xd4\\xcc\\x21\\xa9\\x98\\x43\\x53\\x30\\x86\\xa4\\x61\\x0d\\x48\\xc2\\x1a\\x81\\x84\\x34\\xff\\x79\\x8b\\x1e\\x62\\xbf\\x90\\xb0\\x64\\x22\\xe4\\x23\\x30\\xc3\\x5f\\xef\\x40\\xcc\\x30\\xc4\\xbd\\xd8\\x19\\x82\\x1e\\x33\\x04\\x3c\\x4e\\x08\\x70\\x9c\\x10\\xdd\\x30\\x31\\x1c\\x55\\x94\\xc5\\x87\\x72\\xa2\\xe9\\x8d\\x0f\\xbc\\x77\\x6a\\x8c\\x31\\x5d\\x83\\x4e\\x3b\\x7b\\x15\\xc1\\x89\\xf2\\x6d\\x8e\\x4d\\x71\\x17\\x58\\xb8\\x07\\x97\\x01\\x12\\x6e\\xde\\xd6\\x49\\x2e\\xae\\x01\\x17\\x98\\xeb\\x5a\\x0d\\x6a\\x2c\\xb1\\x6e\\x03\\x38\\x6e\\xb1\\x50\\xef\\xe1\\xa4\\xd3\\x4d\\xc9\\xfb\\x39\\x80\\x0c\\x9f\\x19\\xbd\\x62\\xcc\\x6b\\x15\\x00\\x9c\\x53\\xbc\\x84\\xf5\\x95\\xc1\\x75\\xed\\xd2\\x2e\\xdc\\xd6\\x48\\xab\\xd5\\xb8\\x11\\xf4\\x51\\x08\\xb7\\x03\\xfc\\xc4\\x74\\xd5\\x84\\xfd\\xa0\\xf3\\x6c\\x09\\x0d\\x1d\\xff\\x44\\xb5\\x9b\\x91\\x22\\x1b\\x21\\x63\\x45\\x59\\xeb\\x8e\\xfa\\x66\\x5e\\xa1\\xab\\xd7\\xc3\\xd8\\x14\\xdd\\xc4\\xda\\xd6\\x4b\\x42\\xdd\\x24\\xc7\\x9a\\x70\\xc5\\x9a\\xec\\x4b\\xa7\\x54\\xa4\\xc5\\x3d\\x3f\\x2f\\x18\\xd6\\x55\\x2e\\x2c\\x14\\x06\\xdd\\x2e\\x78\\x9a\\xf9\\x22\\x11\\x73\\x91\\xcc\\x5b\\xeb\\x1e\\xde\\xbb\\xf3\\x33\\x9b\\xc6\\x54\\x61\\x4e\\xb8\\x27\\x70\\x2a\\x39\\x7c\\x66\\x65\\x8e\\xed\\x29\\x74\\xb0\\xdf\\xab\\xee\\x70\\xae\\xe8\\x41\\xbd\\x28\\x09\\x6d\\xdc\\xdd\\xab\\x7b\\xb5\\x45\\x25\\xc6\\x9a\\xdf\\x70\\x39\\x59\\xbe\\xa3\\x06\\x85\\xfd\\xeb\\x89\\x78\\x62\\x43\\x8c\\x3a\\xad\\x48\\x82\\xc8\\x49\\x08\\xc5\\x3a\\x56\\x17\\x02\\x45\\xaa\\x02\\x21\\x98\\x40\\x90\\x51\\xa8\\x5b\\x94\\x4d\\xc8\\x00\\x1f\\x45\\x9a\\xcd\\x05\\x34\\x51\\x5a\\xca\\xb1\\xe5\\x43\\x62\\x57\\x53\\xa1\\x61\\xe5\\xb4\\xad\\x1e\\x6d\\x41\\x55\\x10\\xaf\\xab\\x99\\x48\\xba\\x90\\xa3\\x2c\\x31\\xc9\\x69\\x90\\x5d\\x39\\x04\\x9e\\x3d\\x61\\x18\\x6c\\x28\\xf0\\x69\\x4d\\x97\\xcb\\xc5\\xa4\\x7a\\x5c\\xc9\\x0a\\x53\\x2d\\xa6\\xcc\\xc6\\x58\\xa2\\x5a\\xba\\xf5\\xa0\\x56\\x34\\x15\\xd5\\x36\\x94\\x09\\x65\\xf3\\xfa\\x6f\\x87\\x28\\xf0\\x04\\xf3\\x40\\xd6\\x26\\x74\\xdf\\x2f\\x5a\\xf2\\xa9\\x25\\x4b\\xcb\\x5a\\xeb\\xda\\xd5\\x42\\x77\\xd3\\x2b\\x4e\\x21\\x5a\\x08\\xe7\\x2c\\xd6\\xca\\x73\\x3b\\x41\\x1c\\x9d\\xf1\\x59\\x5f\\x1c\\xae\\x64\\x56\\x67\\xb4\\x5d\\x8b\\x44\\xaa\\x70\\x6d\\x16\\x15\\x1a\\xd2\\x38\\xb3\\xde\\xa2\\xa2\\x03\\xa4\\x28\\x75\\x0b\\xe0\\xfd\\x1c\\xb4\\x2e\\xf0\\x48\\x8b\\xc1\\xb0\\x2f\\x7b\\xc1\\x71\\x18\\x10\\x5f\\xef\\x0f\\x68\\x38\\xbd\\x0b\\xe1\\xec\\x13\\x7e\\x3a\\x55\\xdf\\xcc\\x29\\xa2\\xe8\\x52\\xc1\\xe0\\x45\\x56\\xa2\\x91\\x1d\\xb2\\xca\\x10\\x19\\x9c\\xf1\\x9b\\x5b\\xb1\\x49\\x44\\xf0\\xdc\\x60\\x63\\x51\\xc2\\xb9\\x3c\\x12\\xea\\xf0\\x2d\\x54\\x00\\x2e\\x38\\xcd\\x46\\xce\\xd5\\xae\\x47\\xc7\\xc6\\x7e\\x74\\x71\\x89\\xf8\\x22\\x5f\\xb4\\x98\\xf4\\x05\\xb8\\x39\\xb6\\xc5\\xb7\\x73\\x9c\\xe0\\x06\\x13\\x4f\\xd5\\x02\\x2f\\x49\\x99\\x1a\\xeb\\x31\\x25\\x2b\\x3b\\x61\\xa4\\x89\\x10\\x57\\x10\\x82\\x70\\xe7\\xc9\\x42\\x31\\x19\\x65\\xac\\xda\\x33\\x24\\x28\\x2b\\xb8\\x7e\\x0d\\x89\\xf2\\xf0\\x09\\x29\\x13\\x41\\xe8\\x3b\\x48\\x74\\x43\\xbf\\x10\\xc0\\x75\\x43\\x74\\x68\\x2d\\x7c\\x99\\x56\\x50\\x53\\x00\\x8a\\xec\\x32\\x97\\x8d\\xfc\\x19\\x7a\\x26\\x1f\\xce\\xd9\\xa5\\xfd\\xf3\\xca\\xaa\\x68\\x63\\x05\\x90\\x72\\x9a\\x9d\\xd0\\x2b\\x62\\x28\\x5f\\x5f\\xea\\x2f\\xba\\xdc\\xd3\\x82\\x16\\x45\\xcc\\x0c\\x10\\x56\\x50\\x41\\x9f\\xa5\\x0e\\xe0\\xf5\\x6e\\xe4\\x44\\x45\\x4d\\x6c\\x23\\xa2\\x0e\\xee\\x41\\x25\\x1b\\xd4\\x1f\\x76\\x10\\xf9\\x16\\x5e\\x90\\x6a\\xae\\x69\\x61\\x61\\x10\\xa6\\x71\\xeb\\x78\\xb2\\xe4\\x3b\\x85\\xa8\\x23\\xfa\\x48\\xcb\\xa4\\x20\\x44\\x94\\xab\\x58\\x29\\x63\\xd8\\xb2\\x71\\xf7\\x37\\x74\\xc9\\x8e\\x02\\xa8\\xc3\\x27\\xd9\\x1e\\xb0\\xaa\\x00\\x17\\x68\\x5a\\x27\\x86\\x7d\\x96\\x72\\x8a\\x42\\xe4\\xd1\\xeb\\x4a\\x28\\x76\\xda\\xd9\\x65\\xbd\\x25\\x4e\\x73\\xdc\\x05\\x56\\xd6\\x12\\xd9\\x67\\xe3\\x04\\x71\\x76\\x22\\x08\\xb3\\x62\\x72\\xc4\\xd4\\xf9\\x28\\x5b\\x95\\x4a\\x8c\\x91\\x0d\\x2d\\x68\\x6c\\x98\\x86\\x3c\\x8f\\x66\\x9c\\xb8\\xe5\\xc8\\x03\\x64\\x93\\x61\\x4a\\xbf\\x18\\x9b\\x67\\x1e\\xb2\\xad\\x5b\\xd1\\x19\\x12\\x47\\x3d\\x27\\x45\\xc3\\x2d\\x15\\xd7\\x17\\x5d\\xfd\\x7a\\x16\\x36\\x34\\xae\\x1a\\x5f\\x1d\\x2d\\x21\\xeb\\x53\\xa3\\x8a\\x10\\x20\\x1c\\xe6\\x6a\\x61\\xc2\\x1d\\x0b\\xda\\x40\\x56\\x1c\\xd9\\x6f\\x6f\\xb4\\xa3\\x74\\xda\\x17\\x43\\x1c\\x14\\xd0\\x3d\\x88\\x62\\x5a\\x47\\x89\\x18\\xe6\\xa3\\x90\\xe4\\xb2\\xd7\\x2b\\x1f\\xd3\\x8b\\x99\\x3e\\xba\\x7e\\xc2\\x47\\xc0\\x14\\x39\\x09\\x2c\\x4c\\x94\\x63\\xb6\\xaa\\x08\\x31\\x6e\\x95\\xab\\x4e\\x16\\xc7\\x58\\xa7\\x7c\\x07\\xad\\x61\\x46\\x06\\x18\\xe5\\xaa\\xba\\x3a\\xa5\\x8d\\x01\\x4f\\xa5\\x10\\x20\\xf4\\x1b\\x00\\xdb\\x39\\xd3\\x46\\x29\\x52\\xe6\\xc3\\xc1\\x06\\x25\\x19\\x7e\\xfa\\xa7\\x64\\x87\\xf2\\x90\\x45\\x3f\\xa0\\x9a\\xcf\\xe4\\x21\\x6c\\xc1\\x2d\\x04\\x39\\x5e\\xc0\\x21\\xd1\\xb9\\xe2\\xb2\\x21\\x46\\x03\\x95\\x32\\xfa\\x69\\xcd\\x15\\x6e\\x9a\\x4c\\xc9\\x77\\xbd\\x6e\\xd8\\x61\\x4a\\x46\\x40\\x49\\x54\\x78\\x27\\x7a\\x73\\xe5\\xed\\xd9\\xcc\\xf0\\x05\\x21\\x23\\x40\\x1f\\x85\\xe2\\x08\\x16\\x00\\xf6\\xc8\\x25\\xa9\\x31\\x04\\x9d\\x3e\\x44\\x49\\x08\\x91\\xa5\\xd4\\xa0\\x10\\xe0\\xc8\\xd2\\x71\\x08\\x11\\x3f\\x6a\\x8b\\x3f\\xd1\\x97\\xbc\\x5b\\x1a\\xa2\\x7c\\x8c\\xe6\\x52\\xbf\\x20\\x3b\\x33\\xdc\\xc0\\x6a\\x55\\xf9\\x19\\xb9\\xa3\\x42\\x6a\\x6b\\xf4\\xaf\\xe8\\x51\\xaa\\xe2\\x18\\x31\\xc2\\x62\\x17\\x97\\xed\\xfa\\x0a\\xa5\\x84\\xa3\\x4f\\x02\\xf4\\x82\\x8c\\x08\\xed\\x58\\x86\\xff\\xd2\\x46\\x18\\xc2\\x8f\\xbe\\x0d\\x1e\\xcf\\x06\\x36\\xa1\\xd1\\xa6\\xc8\\x7d\\xf9\\x74\\x1d\\xbc\\x1b\\x13\\x62\\x10\\x98\\xa1\\x6a\\xc4\\xb7\\x50\\x83\\x63\\xe8\\xa5\\x01\\xaa\\xbe\\x15\\x93\\x29\\x56\\x18\\x00\\xbd\\x57\\x7e\\x61\\x5c\\xc0\\xd5\\x79\\x90\\x57\\xb3\\x97\\x21\\x56\\x58\\x1e\\x08\\xa1\\xcb\\x3e\\x4f\\x07\\x81\\xcb\\x8d\\x62\\x02\\xba\\x35\\x46\\x2c\\x41\\xc5\\x5a\\xf6\\xd6\\x47\\x3d\\x04\\xbb\\x42\\xc4\\x8e\\x6c\\x47\\xdf\\xe8\\xb4\\x10\\x10\\x4a\\x6c\\x68\\xcd\\xa8\\x4f\\xc1\\x1b\\x6c\\xd0\\x9a\\xe5\\x13\\x69\\x00\\xab\\x31\\xdf\\x50\\x54\\xe5\\x9b\\x21\\xd3\\x0f\\x5f\\xbf\\x71\\x12\\x33\\xa8\\x9c\\x00\\x1d\\xda\\x10\\x05\\x08\\x0c\\x10\\x17\\x82\\x9c\\xff\\x0e\\xd4\\x03\\x72\\x27\\xaf\\xd6\\xa6\\x8a\\x3a\\x17\\xd8\\x67\\x50\\x59\\x60\\xa9\\xaa\\x48\\x39\\x7d\\x70\\x9b\\x10\\x7a\\xce\\x5d\\xc8\\x66\\x5d\\x07\\x01\\x8a\\x5b\\x07\\xd6\\x74\\xd4\\x40\\xe9\\xd1\\x3c\\x5d\\x03\\xe2\\xdd\\x94\\x7e\\x94\\xb4\\x18\\xc4\\xa3\\x1f\\x1e\\x16\\x73\\x99\\x06\\x72\\x48\\xc8\\xce\\xed\\xc9\\x64\\x70\\x44\\xe4\\xdd\\xd3\\x44\\x03\\xe8\\xb0\\x5a\\xd1\\x1a\\xca\\x58\\xa5\\x13\\x78\\xd3\\xca\\x74\\x38\\x30\\x71\\xef\\x92\\x47\\x2c\\xcc\\x7d\\x5e\\xa4\\xfa\\x45\\xe1\\xc2\\xb1\\x31\\x26\\x85\\x02\\xe2\\xf8\\xb8\\x94\\x06\\x78\\x64\\x36\\x30\\x54\\x08\\x91\\x0b\\x62\\xe9\\x72\\xdd\\x95\\xd8\\xd1\\x05\\x45\\xff\\x4a\\x52\\x34\\xb0\\x36\\xb4\\xbf\\x84\\x78\\x11\\x67\\xc1\\xdc\\x7b\\x4f\\x60\\x02\\x82\\x78\\xf0\\x61\\xfd\\x54\\x58\\x93\\xf2\\x2f\\x44\\xcf\\xff\\x6d\\x3a\\x82\\x34\\xec\\x60\\x65\\x98\\x4a\\x67\\x40\\x74\\xd8\\xe1\\x57\\x4c\\x95\\x22\\x44\\x7e\\xc9\\x09\\xd0\\x6c\\xcd\\x0c\\xb1\\x18\\x3a\\x8c\\xe3\\xd2\\x48\\x98\\x80\\x60\\x54\\xa8\\xaa\\x73\\xdc\\x51\\xd0\\x22\\x14\\x93\\x94\\xe6\\x00\\x4d\\x94\\xb1\\x4f\\x2e\\xc3\\xcc\\x8b\\x33\\x1e\\xf3\\x88\\x2b\\xed\\xc8\\xaf\\x7d\\xa4\\xff\\xa2\\x8d\\x99\\xae\\xb1\\x49\\x76\\xa2\\x84\\x43\\x2b\\x1e\\x4a\\x70\\x75\\x95\\xcf\\xcb\\x28\\xf3\\xd6\\x84\\x8d\\xc4\\x19\\x38\\x00\\x6b\\xb0\\x68\\x61\\xbb\\x3f\\x20\\x2b\\x8a\\x2c\\x04\\x6d\\xea\\x4e\\x1b\\x83\\xaa\\x77\\x37\\x74\\x80\\xe3\\x0e\\xb2\\x96\\x75\\x6e\\xc7\\x92\\x6a\\xc2\\x01\\xee\\x60\\x01\\x56\\x08\\xe6\\xb3\\xb6\\x02\\x62\\x0f\\xbe\\x86\\x71\\x10\\x4c\\x5a\\x92\\x88\\x9e\\xb7\\x55\\x64\\xa9\\x94\\x90\\x79\\x6a\\x70\\x63\\x06\\x30\\x89\\xc7\\x17\\x28\\x1d\\x3e\\x93\\x0f\\xf6\\x58\\x50\\x3e\\xf3\\x55\\xbf\\x5a\\x91\\xb6\\xd1\\xd5\\x54\\x44\\xaa\\x18\\x0b\\x80\\x4d\\x4b\\xfe\\xa1\\x0d\\x2e\\xce\\x50\\x37\\xac\\x50\\x1e\\x02\\x45\\x3f\\xc0\\x6a\\x61\\xd2\\x88\\x68\\x6c\\x4e\\xa6\\x71\\xdd\\x02\\x5c\\x04\\x3a\\x3e\\xaa\\x68\\xd3\\x25\\x6b\\xd0\\x27\\x0a\\x7a\\x8a\\xdb\\x61\\x74\\x27\\xe1\\xec\\x3f\\x8c\\x81\\x9e\\x57\\x95\\x4b\\x91\\xea\\xa0\\x27\\xab\\xba\\xd7\\x99\\x68\\x4b\\x45\\x4d\\x8a\\xc8\\x9b\\x24\\x67\\xea\\x4e\\xb7\\x21\\xba\\x68\\xb9\\x0f\\xc6\\xcb\\x8f\\x53\\x95\\x88\\xd5\\x20\\x77\\xab\\x27\\xd0\\x31\\xd5\\x8f\\x18\\x57\\x63\\xa7\\xa2\\x4c\\x20\\xd3\\x22\\xc8\\x4b\\x41\\xa8\\x48\\x28\\x03\\x32\\x8c\\xc3\\xc9\\xf8\\xe0\\x7a\\xb8\\x6d\\xcc\\xc7\\x4d\\xd9\\xd0\\x07\\x4c\\x36\\x48\\x50\\x26\\xb2\\x66\\x81\\xf1\\xd5\\x60\\x22\\xd0\\x39\\xc7\\x1d\\x92\\x0b\\x4e\\x4e\\x23\\xb0\\xc7\\x86\\x63\\x9d\\x57\\x0a\\x01\\x01\\xd4\\x2b\\xb5\\x11\\x23\\x63\\xc4\\x59\\xe0\\x9e\\x82\\xb0\\x27\\x34\\xc8\\xce\\x8e\\x4c\\x2c\\x52\\xd3\\x0a\\x50\\x76\\xcd\\xc1\\xdf\\x0e\\xda\\xb1\\xd1\\x5a\\xfb\\xb1\\xa5\\x6b\\x2a\\x58\\x3e\\x97\\xa1\\x94\\xae\\x10\\xc4\\xf4\\x25\\x15\\x0a\\x98\\x06\\x37\\x3d\\x23\\x6c\\x65\\xde\\x57\\x22\\x3e\\x58\\x8e\\x59\\x75\\x45\\xc3\\x03\\x83\\xf0\\x6a\\x3b\\x17\\x49\\xc8\\x7f\\xe3\\xd3\\x6f\\xa3\\xc1\\x11\\x80\\x6f\\x2a\\xcb\\xb3\\x1b\\xb4\\x8b\\x02\\xea\\xef\\x13\\x97\\xc7\\x42\\xd5\\xdb\\xbd\\x05\\x19\\xc3\\x9f\\x8c\\x7d\\x5d\\xe6\\x38\\xe8\\x95\\x8c\\x17\\x12\\x1d\\xd7\\x74\\xfa\\xe2\\xee\\xd3\\x4a\\xdd\\x0e\\x13\\xda\\xb4\\xca\\x05\\x4d\\xab\\x5d\\x13\\x48\\xfe\\xb3\\xb9\\xaf\\xb7\\xc6\\xa6\\xf1\\x16\\x90\\x99\\xb7\\x0e\\x9e\\x13\\x07\\xcc\\x57\\x77\\xa1\\xba\\xe4\\xb4\\x1f\\xd2\\xc5\\x61\\x9c\\x9b\\xb0\\x59\\x50\\xf3\\x02\\x01\\x03\\xee\\xb5\\x50\\xb0\\x77\\x82\\x45\\x0d\\xe3\\xf4\\x75\\xe2\\x59\\x94\\x82\\x75\\xe6\\x08\\x0b\\x24\\xb1\\xc7\\x9b\\x84\\x7c\\x9f\\x25\\x28\\x6f\\x3a\\x7f\\x6b\\x92\\xd9\\x89\\x83\\xcf\\xe9\\x4b\\xd7\\x68\\xd1\\x11\\x26\\x9f\\xc0\\x85\\xca\\xc8\\x1c\\x27\\x8b\\x04\\xe8\\x66\\xd3\\x3e\\xd2\\x5a\\xdc\\x2a\\x58\\xa5\\xd6\\x71\\x70\\xa6\\x41\\xd6\\x23\\xd9\\x5e\\xb9\\xd7\\xff\\x43\\x22\\x63\\x8c\\xed\\x67\\xda\\xbc\\xb0\\xd3\\x70\\x79\\x42\\x93\\x63\\xee\\x1c\\x95\\xbd\\x78\\x5b\\x35\\x7a\\xd4\\xd7\\x3c\\xe2\\x7c\\x28\\x8f\\x1f\\xb6\\x51\\x22\\xb8\\x15\\xd9\\xe3\\xfa\\x4a\\xfa\\x20\\xa5\\x93\\x1d\\x8f\\xb0\\x5f\\xf6\\x98\\xa1\\x1a\\x53\\x7b\\xe0\\x69\\x43\\xfb\\xc6\\x23\\x9e\\x0c\\xa0\\x06\\x0f\\xbf\\x48\\x4d\\xaf\\x31\\x19\\x63\\xa7\\x00\\x3c\\x6b\\x3f\\xc0\\xea\\x18\\x68\\x04\\x00\\x34\\x0f\\x91\\x34\\xa3\\x2f\\x5f\\x1c\\x85\\x9b\\xe9\\x5a\\x0c\\x6b\\x25\\x23\\xd6\\x3e\\x15\\x1f\\x72\\xe3\\xfd\\xd2\\x38\\x38\\x44\\xb8\\xc9\\x31\\xa1\\x09\\xe2\\xb3\\xc6\\x46\\xe6\\x89\\x68\\xf2\\x70\\x0e\\x69\\xdd\\x81\\xc4\\x6c\\x40\\xc2\\x53\\xcb\\x54\\x40\\x43\\x07\\x5e\\xf5\\x74\\x90\\x08\\x21\\x21\\xe0\\x71\\x10\\xfa\\x4b\\x61\\xf2\\x0c\\x65\\x89\\x00\\x58\\xdc\\x4e\\x1e\\x44\\xb1\\x07\\xb8\\x24\\x3c\\x00\\xb0\\xa0\\xd1\\xf1\\x92\\x93\\x05\\x7c\\x30\\x7a\\x1c\\x41\\x08\\x3b\\x27\\x25\\xb4\\x63\\x84\\xc5\\x99\\xbf\\x88\\x63\\x25\\x50\\x8f\\x7f\\x93\\x42\\xb0\\x80\\x18\\x48\\x2b\\x34\\x80\\x17\\x3e\\x65\\x3e\\xb6\\xed\\x49\\xaf\\xab\\xaf\\xa6\\x13\\x8d\\x1f\\xca\\x83\\xda\\x9d\\x66\\x25\\x82\\xea\\x91\\x01\\xc0\\xe3\\x00\\xf1\\xfd\\x16\\xb6\\x0a\\xc1\\xc8\\x4b\\x0a\\x9a\\xb2\\xb4\\x41\\x4b\\x3f\\xc9\\x7e\\xb5\\x0b\\xcf\\x70\\xfa\\x9c\\xc3\\x34\\x39\\x4f\\x63\\xc0\\xd2\\xa7\\xd0\\x29\\x3d\\xea\\x29\\x13\\x21\\x43\\x6f\\x7d\\xe4\\x8a\\x31\\x3c\\x0e\\xe7\\x37\\x22\\xab\\xd2\\xba\\xba\\x86\\x2d\\xb2\\xd8\\x1d\\x33\\xf6\\xbd\\x41\\x2c\\x10\\xa1\\x61\\xce\\x07\\x20\\xf0\\x06\\x2f\\xf0\\x31\\x96\\x09\\xf1\\xfa\\x52\\x73\\x18\\x28\\x70\\x61\\x87\\x59\\xd9\\x88\\x1b\\xcc\\x51\\xac\\x54\\xab\\x63\\x97\\xac\\x6e\\x6a\\x32\\x98\\x1b\\x64\\x17\\x67\\x60\\xe8\\xa7\\xe6\\xd9\\x39\\x05\\x72\\x05\\x26\\xd0\\x9d\\xf3\\x6b\\xe7\\xb5\\xad\\xbf\\xa1\\x5d\\x8d\\xc0\\x06\\xc7\\xf3\\xe7\\x25\\xd2\\x1e\\x27\\x1e\\x44\\xd9\\x80\\x80\\xc0\\xc8\\x4a\\x4e\\x01\\x70\\x00\\xae\\x7e\\x1e\\xbf\\x81\\x19\\x30\\x87\\xc1\\xf4\\xf3\\x19\\x63\\x65\\xfa\\xf3\\x7a\\xf5\\x7c\\x4b\\x80\\x3e\\xea\\x25\\x83\\x21\\xf1\\xbc\\xa1\\x6b\\x1e\\xa0\\xa6\\x97\\x0d\\x47\\xdb\\x60\\xed\\x42\\x0d\\xd6\\x02\\x83\\x28\\x7d\\xbe\\x5f\\x12\\x73\\x3c\\x95\\xe7\\x21\\xf3\\x76\\x8a\\xc6\\x71\\x26\\x1d\\x6a\\x9a\\x5b\\x36\\x11\\xf5\\xb5\\xa9\\xb4\\xb8\\xd6\\x17\\xd5\\x91\\x22\\x1c\\xc0\\x52\\x17\\x2e\\x59\\xf2\\x4b\\x3f\\x10\\x8c\\x46\\x6f\\x6b\\xe2\\x9a\\x8e\\x77\\xf8\\x18\\x90\\x5b\\x9f\\xc4\\x81\\x60\\x55\\x40\\x54\\x5a\\x19\\x88\\xa4\\x4f\\xa6\\x0a\\x7b\\x85\\x5d\\xd6\\x18\\x5d\\x21\\xab\\x61\\xda\\x6d\\xaa\\x10\\x34\\x20\\x34\\xb0\\x01\\x44\\x66\\x34\\x9c\\xd9\\xee\\xd2\\xc1\\x49\\x31\\x00\\x7f\\xb4\\xe6\\x53\\x93\\x43\\xb9\\x8d\\x20\\x61\\xb9\\xdb\\x70\\x17\\x81\\x4d\\x30\\x61\\x86\\x30\\x4a\\xb7\\x42\\xa3\\x46\\x57\\xcb\\xd7\\x2d\\x59\\x0e\\xb9\\x28\\x8f\\x01\\x71\\x30\\x27\\x10\\x89\\x30\\x57\\x7b\\xb3\\x0b\\xbc\\xa4\\x3d\\x6b\\x85\\xb7\\x2e\\xba\\xa1\\x30\\x08\\xaa\\x89\\x55\\x29\\x0f\\xcb\\x12\\x44\\x48\\x2a\\xe5\\xe1\\x75\\x7c\\x3b\\x16\\xbe\\xb9\\x4e\\xf0\\x12\\x26\\xcc\\xfa\\x7c\\x02\\x40\\x82\\xf6\\x8e\\x80\\x41\\x11\\xaa\\xe5\\xc8\\x0b\\x3e\\x2e\\xe2\\xf5\\x70\\x54\\xc7\\xd1\\x29\\x45\\x09\\x43\\x49\\xbb\\xa1\\x0e\\x05\\xde\\xe4\\xa6\\x5c\\x12\\x42\\xe4\\xe0\\x86\\x6e\\xe5\\x13\\x93\\x78\\xc1\\xe7\\x08\\xf6\\xc8\\xe1\\x82\\x40\\x79\\x40\\xb9\\x9a\\x8b\\xa0\\x34\\xb1\\xa7\\xda\\x2b\\x11\\x1a\\xac\\x68\\xcb\\x5c\\x4d\\x16\\xcd\\xa1\\xd8\\x81\\xd6\\x52\\x8a\\xa1\\x06\\xa8\\x3c\\x9a\\x69\\xd2\\x14\\x62\\x5a\\x82\\x0f\\xa3\\x68\\xa9\\x58\\xa7\\x01\\xdd\\x01\\x46\\xf6\\xcc\\x53\\x16\\xe0\\x7e\\x79\\x72\\xcb\\x7e\\x15\\xbc\\x62\\xd1\\x2a\\xed\\x2f\\x56\\x48\\x03\\x6f\\x00\\x7d\\x1b\\xc7\\x7a\\x89\\xbd\\x11\\x2a\\x2f\\x34\\xa5\\x56\\xb2\\xc0\\x8d\\x4b\\x0c\\x88\\xdf\\x54\\x30\\xa0\\x1e\\x3f\\xe0\\x13\\x6c\\x12\\xd1\\x26\\xa8\\x72\\x0d\\x94\\x31\\x3b\\x13\\x52\\x8e\\xc6\\x1f\\x58\\x1a\\x18\\xf8\\x0a\\x8b\\x49\\x20\\xc3\\x1c\\x83\\xda\\x3d\\x57\\x30\\xee\\xdf\\x98\\xc4\\x57\\x88\\x72\\x89\\x5d\\xca\\xfa\\x4c\\x8a\\xce\\x80\\x84\\x25\\x71\\x50\\x1d\\x0e\\x51\\x0b\\xca\\xa9\\x13\\x79\\xea\\x12\\x52\\x02\\xf2\\xc2\\x20\\x5a\\x50\\x66\\x62\\xd5\\xeb\\x82\\x0c\\x7c\\xb2\\x41\\xdb\\x56\\x8e\\xb3\\x40\\x4a\\x97\\x32\\x18\\x64\\x02\\x8e\\xc9\\x49\\xd1\\x78\\x52\\x2b\\x9f\\xb1\\xf6\\x14\\x08\\x00\\xf8\\x93\\x89\\x8b\\x64\\x70\\x12\\x30\\xa8\\x08\\x23\\xa6\\x68\\x89\\x66\\x53\\x6c\\xce\\xbc\\xa8\\xbe\\x03\\x10\\x01\\x2e\\x88\\x82\\x1a\\xc4\\x7c\\xb4\\xe0\\xe7\\xcb\\xb8\\xf8\\x04\\xcf\\x20\\x11\\xf7\\x13\\x1b\\x71\\x04\\xc0\\x2c\\xb3\\xdc\\x9a\\x58\\x8a\\x74\\x11\\xfc\\x44\\xd5\\x79\\x68\\xbd\\x95\\x89\\xad\\xe0\\xd4\\x3b\\xf7\\xfa\\x7d\\xda\\x9f\\xe9\\xa0\\xaf\\x03\\x95\\x11\\xa9\\x84\\x1c\\x30\\x54\\x81\\x47\\x47\\xa6\\xf4\\x81\\xf2\\x71\\xab\\xfc\\xa3\\x00\\xa2\\x19\\x48\\x2e\\x09\\x1f\\x78\\x6a\\xc5\\x92\\x82\\x00\\x11\\x1a\\x2d\\x90\\xd7\\xc1\\x0a\\x85\\xe6\\x46\\x01\\x40\\xfa\\x29\\x27\\x93\\x37\\xe3\\x8e\\x51\\x35\\x31\\x11\\x9d\\xda\\xb2\\x30\\xb0\\x09\\x89\\x1e\\x32\\x73\\x96\\x53\\xab\\xfb\\xf5\\x15\\xc8\\xbf\\x5c\\x66\\xae\\xb9\\x3c\\xc0\\x08\\x3b\\x06\\xac\\x45\\xec\\xfb\\x46\\xb3\\xd5\\x03\\x92\\xd5\\x42\\x4f\\xc5\\xf1\\x8e\\xc9\\xd1\\xf8\\xad\\xd9\\x15\\xb0\\x6d\\x02\\xe2\\xa9\\x61\\xf6\\x4a\\xda\\xc4\\xdc\\x89\\x65\\x9b\\xaa\\xb1\\xa2\\x05\\xa7\\xa2\\xef\\xac\\x5f\\x02\\x66\\x27\\x9a\\xc1\\x39\\x83\\xb9\\x74\\x3c\\x9c\\xd2\\x21\\x1a\\xd4\\xf0\\x60\\xae\\x10\\x33\\x20\\x5b\\x57\\xee\\x4c\\xca\\x39\\x97\\x63\\xc9\\xc2\\x2d\\xf9\\x9b\\x9a\\x82\\x50\\xe5\\xe2\\x10\\x52\\x89\\x2a\\x23\\xbb\\xc8\\xda\\x2e\\x60\\xd1\\xa9\\x6f\\x50\\x47\\xce\\x81\\xfa\\x20\\xed\\xd3\\xa0\\x60\\x76\\x68\\xc6\\x16\\xba\\x7e\\xba\\xc1\\x42\\xf1\\x8e\\x56\\xa1\\x04\\xde\\xb8\\xb1\\x56\\x85\\x4f\\x7e\\x1c\\xe9\\x74\\x10\\x42\\x76\\x08\\x40\\xc4\\xee\\x04\\x38\\xa9\\x84\\xfc\\xb8\\xce\\x12\\x8a\\x32\\x16\\x8c\\xac\\x68\\x02\\x47\\xd5\\xc3\\x9a\\xc6\\xef\\x2e\\x87\\x39\\x64\\x52\\x51\\x4f\\x44\\x1a\\x0f\\xeb\\xa8\\xc6\\xeb\\x89\\x81\\xd6\\x8a\\x44\\x39\\xb6\\x8c\\x20\\xbe\\x5b\\x70\\xda\\xa1\\xc8\\x74\\x42\\x28\\x06\\x68\\x89\\xe3\\xa8\\xc4\\xbc\\x49\\xa2\\xb1\\x08\\x84\\x7a\\x7b\\xb0\\x0c\\xa8\\x00\\x03\\xfe\\xf1\\xf8\\xf9\\xd9\\x28\\x35\\xbd\\x4a\\x47\\x22\\x97\\xbb\\x51\\x07\\xc1\\x25\\x68\\xed\\x94\\x0b\\x52\\xda\\x22\\x50\\xb2\\xa9\\x03\\x53\\xe9\\x01\\x54\\x2e\\x6d\\x51\\x2c\\x21\\x3a\\x1a\\x81\\x31\\xd2\\x75\\xf4\\x64\\xbd\\x42\\x56\\x5b\\x3a\\x66\\xbc\\xf4\\xac\\x8c\\x50\\x8d\\x87\\x43\\x65\\x9b\\xc4\\xf2\\x7e\\xf0\\x1c\\x5b\\xa9\\x0a\\xa5\\x58\\x6c\\x45\\xe5\\xb6\\x93\\x45\\x24\\xe5\\xc3\\x95\\xcc\\xbe\\x1a\\xe0\\x4d\\x92\\xdf\\x8b\\xe5\\x45\\xdd\\x12\\x45\\x24\\xde\\x13\\x12\\x84\\x0c\\x0d\\x82\\x54\\x21\\xe5\\xb0\\x5b\\x9b\\xad\\x2d\\xb7\\x24\\x50\\x06\\x29\\x51\\xe1\\x4b\\x70\\xd7\\x02\\x2e\\x07\\xcd\\x68\\x84\\xb6\\xff\\x47\\xe9\\x6b\\x9b\\x4f\\xd9\\x13\\x87\\x39\\x36\\x2c\\x92\\x25\\x0c\\x59\\xcd\\x67\\x73\\x92\\x8c\\x79\\x2a\\x6c\\x8f\\xb0\\x5e\\xfd\\xa7\\xc8\\xfa\\x16\\x4a\\xbe\\x54\\x94\\x7e\\x46\\xe8\\x70\\x78\\xe8\\x82\\x3a\\x6d\\x74\\xe6\\x23\\xd6\\xc5\\x3f\\x98\\x2e\\x29\\x02\\x04\\xe8\\xe1\\xd5\\xdb\\x78\\x50\\x27\\x2f\\x46\\x8c\\xb5\\x01\\x6e\\x82\\xd9\\x39\\x51\\x64\\x8b\\xa0\\xce\\x56\\x87\\x10\\x35\\x58\\x1a\\x01\\x8f\\x38\\x03\\x07\\xd6\\xc7\\x56\\xe8\\x5e\\x64\\xa0\\x6c\\xd1\\x6f\\xd6\\x67\\x75\\xc5\\x89\\x73\\x1e\\xb3\\xbb\\xe6\\xce\\xcc\\x00\\x5c\\xb8\\x10\\xc1\\xd9\\x97\\xd2\\xc6\\x70\\x7a\\x95\\x6b\\x04\\x09\\x56\\x5f\\xbd\\x1b\\x25\\x5e\\xb6\\x26\\x37\\x27\\xdd\\xf2\\x41\\x41\\x57\\x62\\x8f\\x2d\\x70\\x81\\x23\\xda\\xa6\\x8e\\xbd\\x55\\x7d\\xa0\\x50\\x43\\x8b\\x8a\\x67\\xa2\\xfc\\x94\\x99\\x5b\\x3f\\x4b\\x6f\\xfc\\xe3\\x47\\xe5\\xd6\\xc4\\x7c\\x28\\x63\\x6e\\x91\\x40\\x80\\x46\\x23\\x37\\x04\\x7a\\x71\\x49\\x75\\xc4\\x52\\x51\\x50\\x02\\xf9\\x88\\xae\\x4e\\x55\\xd7\\x8e\\x3f\\xe7\\xab\\x88\\xbe\\xb2\\x1f\\x10\\x47\\xbb\\xf6\\x39\\x60\\x8d\\xcf\\x96\\x52\\xe3\\x58\\xde\\xd9\\xaf\\x3b\\x02\\x04\\xe6\\x95\\x50\\xd4\\x12\\xeb\\x7f\\xf9\\x0d\\x30\\x2c\\x25\\x36\\x2e\\x86\\x55\\x59\\x57\\xd7\\xb7\\xb5\\x1a\\x61\\xac\\x6e\\x26\\x42\\x94\\xbf\\xcd\\xa0\\x06\\xca\\xbc\\x71\\x5b\\x5e\\xac\\x19\\x64\\x02\\xf2\\x0b\\x22\\x2f\\x0b\\x95\\xce\\x0d\\x09\\x4a\\xa1\\x84\\xf9\\x6b\\x89\\x36\\x15\\x1d\\xd6\\x6d\\x81\\xf6\\x41\\x82\\xcf\\x8a\\xe5\\xd2\\x4e\\x9e\\x20\\x13\\x95\\x9c\\x78\\xb6\\x8c\\x9e\\xe0\\x47\\x32\\x34\\x28\\x9c\\xe8\\x3d\\x7b\\x9a\\x2f\\x06\\xb1\\x0b\\xaa\\x78\\xdb\\xba\\x8a\\x3e\\xc5\\x14\\x1a\\x87\\x87\\x40\\x41\\xcc\\x9f\\x50\\x71\\x5a\\x77\\x65\\xf8\\x4b\\xae\\x08\\xf3\\x39\\x8e\\xf1\\x4b\\x13\\xa6\\x8c\\x05\\xd9\\x17\\x1a\\x26\\xe2\\x20\\x90\\xa4\\xcd\\x35\\xc4\\xf0\\x94\\x08\\x94\\x45\\xce\\xc6\\xd6\\x3d\\x80\\xd2\\xec\\xae\\xba\\x05\\xf8\\x6d\\x4d\\x46\\x3d\\x61\\x31\\x95\\x43\\x95\\xec\\x3d\\x02\\xd4\\xa0\\x4b\\xe2\\xc1\\x99\\x21\\x11\\x82\\x39\\xda\\xd9\\xe7\\x80\\x71\\x72\\x66\\xdf\\x91\\x1f\\x5e\\x54\\x46\\x47\\x12\\x65\\x59\\x60\\xe1\\x9c\\x4b\\x3d\\x2f\\x8d\\xa8\\x07\\xd6\\x0e\\x2d\\x0c\\x73\\x00\\x26\\x2f\\x88\\x30\\x14\\xab\\xab\\x38\\xd4\\xfd\\xae\\x54\\xe2\\xbc\\xae\\x10\\x00\\x94\\xff\\x87\\x3d\\xf8\\x8f\\x99\\xf6\\xee\\xf6\\x98\\x2b\\x18\\xab\\x5f\\x54\\x10\\xc3\\x05\\x80\\x00\\x2d\\xb5\\xce\\x2c\\x4b\\x9b\\x66\\x3c\\x1e\\xc6\\x9e\\x8b\\xe9\\x24\\x67\\x65\\x26\\x5e\\xcc\\xf8\\x46\\x29\\x60\\x11\\x8a\\xb3\\xf9\\x17\\x9c\\xcc\\x1c\\x89\\xc2\\xd0\\x8a\\xd9\\x28\\x72\\x5a\\xd5\\x90\\x0e\\xfa\\xa4\\x34\\x01\\x5f\\xc5\\x58\\xc1\\x07\\x8b\\x4f\\x31\\xd5\\x8a\\x3d\\x92\\x7a\\xf1\\xf9\\x45\\x88\\xa3\\x26\\x5b\\xf4\\x80\\x8c\\xa6\\xa2\\x8d\\x69\\x01\\x61\\x60\\xef\\x21\\x04\\x17\\xd5\\x41\\xb0\\xe8\\xa9\\x30\\xda\\xbd\\x42\\x1d\\xb5\\xd3\\x51\\x21\\x23\\x44\\xf9\\x5e\\xeb\\x3d\\xf8\\xc3\\x74\\x80\\xef\\x43\\x3b\\xac\\x21\\x4f\\x07\\x20\\x78\\x0f\\xb6\\xdc\\x77\\xa1\\x26\\x30\\x03\\x32\\xff\\x40\\x32\\x32\\x5b\\x67\\xbc\\x68\\x29\\xa5\\x84\\xba\\xe6\\xc7\\x1f\\x76\\x88\\x6e\\xb3\\xac\\x78\\xdb\\x6e\\x69\\x0a\\xa8\\x31\\xf7\\x2d\\x4b\\x9c\\x2f\\x24\\x3c\\x1d\\x8f\\x70\\x46\\xf4\\x02\\x89\\x28\\xa1\\x37\\x91\\x64\\xec\\xf7\\x65\\xa6\\xe9\\x39\\x6b\\x8f\\x9e\\x76\\x96\\x9e\\x06\\x88\\x0d\\xcd\\x04\\x47\\x52\\x79\\xae\\xcb\\x0c\\x7b\\xab\\xfb\\x4d\\xfe\\x28\\x23\\x14\\x2a\\x54\\xd0\\xf2\\x2c\\x07\\x66\\x42\\x8b\\xaf\\xb1\\x84\\x8b\\x00\\xad\\x78\\xbd\\x88\\x51\\xe0\\x63\\x64\\xc7\\x39\\xe9\\x77\\xf1\\x37\\xf7\\xe7\\x20\\x80\\xf0\\x89\\x7f\\x16\\x51\\x35\\xed\\x20\\x6a\\x84\\x45\\x71\\x1d\\xd9\\xb3\\x79\\x44\\xed\\x7a\\x3c\\xa7\\x09\\x1f\\x87\\x05\\x28\\x9a\\x5e\\x37\\x3d\\x00\\x78\\x50\\x1b\\x72\\x1c\\xc8\\xbf\\x77\\xe6\\xdf\\x01\\x10\\xab\\x46\\x97\\xcc\\x8d\\xec\\x0a\\x3b\\x21\\x57\\x22\\x5a\\x4b\\x6e\\x3a\\x24\\xe2\\xb5\\xcc\\xc6\\xc2\\xd4\\x76\\xeb\\xfa\\x09\\x88\\x75\\x16\\x21\\x27\\xe0\\x3c\\xa6\\x7a\\x91\\xf4\\x79\\x6e\\xd4\\x99\\x4b\\x56\\x6d\\x6d\\xbc\\x83\\xa4\\xed\\xff\\xcc\\xda\\x77\\x36\\x7c\\x80\\x4b\\xa5\\x79\\x07\\x69\\xb4\\xa1\\x66\\x59\\xb5\\xc4\\x4d\\xa1\\x27\\x1f\\x20\\x25\\x81\\x31\\x07\\x05\\x7b\\x7f\\x1b\\x52\\x14\\xa2\\xdf\\x7c\\x7d\\xa0\\x9f\\x6a\\xf1\\x81\\xf6\\x00\\x22\\x20\\xdd\\xdf\\x76\\x61\\x95\\x17\\x4f\\xcb\\x7d\\x02\\x42\\xdc\\xd7\\xe4\\x8f\\x96\\x5f\\x48\\xe8\\xa1\\x71\\x79\\x2f\\xb9\\x0d\\xcc\\x5f\\x81\\xb4\\xb0\\x37\\xa9\\x4e\\x08\\x1b\\x9d\\x12\\x52\\xce\\x8e\\x77\\x8d\\xaf\\x98\\x11\\x07\\x5e\\x1c\\x27\\x48\\x90\\x0c\\xc5\\x76\\xe0\\xfa\\xc2\\x42\\x3b\\x7a\\xc6\\x00\\x75\\x88\\xc2\\x4f\\xab\\x08\\xee\\x0b\\x95\\xbe\\x75\\xe5\\xb1\\xea\\x13\\x17\\xf4\\x03\\x36\\x11\\xc1\\x82\\x6b\\x05\\x20\\x3c\\x38\\x61\\xd7\\xa7\\x8c\\xb0\\x4d\\x71\\x4b\\x2c\\x13\\x3f\\xc7\\x3c\\x1e\\x22\\x45\\x86\\x76\\xbb\\xad\\x60\\x76\\x58\\xaa\\x0c\\xdc\\x17\\x79\\x18\\x5e\\x85\\x8f\\x96\\x1c\\x5b\\x5a\\xec\\x63\\xf9\\x91\\x4b\\xa6\\xea\\x63\\x12\\x11\\x4f\\x8b\\x85\\x0c\\x15\\x76\\x72\\xf0\\x20\\x08\\x2d\\xa7\\xec\\x08\\x48\\xd7\\x2c\\x2f\\xa1\\xea\\x58\\x57\\x69\\xce\\xc5\\xcd\\x06\\x78\\xd4\\xc7\\x4c\\x65\\xb3\\x5e\\x2d\\xfe\\x28\\x52\\x41\\x85\\x42\\x7a\\xff\\x07\\xbd\\xc6\\xa2\\x20\\xce\\x71\\x49\\xe4\\x46\\x54\\x4c\\x88\\x50\\xc9\\x4f\\x37\\x30\\x1d\\xd9\\x6d\\x38\\xbe\\xc4\\xc8\\xcb\\xe2\\x12\\x89\\x43\\x40\\x12\\xdd\\x5d\\x72\\xfd\\xe7\\xc9\\x56\\xa5\\x78\\x31\\x5a\\xe6\\x98\\xb1\\xc1\\x69\\x1b\\x26\\xcb\\x56\\xda\\x89\\x29\\x51\\x98\\x4b\\x81\\x81\\xd2\\xf3\\x51\\xe0\\x2c\\xa4\\x3d\\xeb\\x70\\x57\\xc1\\x4d\\x08\\x8a\\x85\\x05\\x15\\x31\\xeb\\x89\\x32\\x12\\x50\\xe0\\x50\\x62\\xc1\\x43\\xc3\\xb9\\x98\\x3b\\x2d\\x68\\x66\\x24\\xfd\\x16\\xaf\\xf2\\xd6\\x91\\xc8\\xc9\\x90\\x5e\\x51\\x4d\\xd3\\xbc\\x86\\xfe\\x48\\xbb\\xf6\\xf7\\xe5\\x57\\x5a\\x13\\x37\\x59\\x6d\\x4f\\x11\\xe2\\xd3\\x11\\x01\\xfb\\xf1\\x60\\x96\\x15\\xd6\\xe0\\x67\\x22\\xe9\\x1d\\x19\\xea\\xd2\\x6c\\x67\\xad\\xf5\\x44\\x07\\xdf\\xbe\\xb5\\xdc\\xf1\\x88\\xe5\\x9b\\x89\\x32\\xc0\\xf7\\xc0\\x75\\xb9\\x6a\\x6a\\x4e\\x80\\x44\\x4b\\x03\\xd2\\x69\\xf1\\x21\\x31\\xe7\\xc9\\xf4\\x2c\\x05\\x6d\\xd0\\xaf\\x15\\x74\\x84\\xa2\\x2c\\xf2\\xdb\\x22\\xb6\\x16\\x26\\xfb\\x52\\xd0\\xe9\\xa5\\x2d\\x89\\xbc\\xae\\x10\\x26\\x6a\\x00\\x94\\x60\\x8d\\x6c\\x4f\\x6e\\xad\\x7b\\x3d\\x59\\xdc\\x95\\xb7\\xa8\\xcd\\x40\\xac\\x13\\x91\\x13\\xcb\\x78\\xf6\\x97\\xe4\\x60\\x0e\\xe6\\x3b\\xa7\\x82\\x30\\xc4\\x7d\\x4a\\xa9\\xa9\\x1f\\xba\\xf3\\xb4\\xf6\\x77\\xa9\\x3d\\x3f\\x65\\x92\\x98\\x5f\\x56\\x90\\x88\\x68\\x90\\x5e\\x35\\x11\\xb2\\x9f\\xeb\\x87\\x6f\\x16\\xb4\\xe6\\x1a\\x8c\\x74\\xd2\\xfa\\xa2\\xef\\xda\\x8d\\xb3\\x79\\xfe\\x67\\x3a\\x63\\x16\\x67\\x62\\x8f\\xa2\\x98\\xea\\x50\\xd1\\xed\\x54\\xc0\\x87\\xba\\x29\\x09\\x7d\\x83\\xa4\\x4d\\x9a\\x41\\x09\\x6f\\xe8\\x17\\xc1\\xbe\\xd0\\xed\\x33\\xc0\\x5e\\x56\\x43\\x3f\\x70\\x4c\\xc0\\x56\\xa0\\x19\\x7c\\x19\\xa3\\x56\\x1f\\x2a\\x99\\x24\\x9c\\x31\\xed\\x22\\x63\\xd7\\xe9\\x60\\xb7\\x11\\x4a\\x40\\xb2\\x00\\x3b\\xf6\\x9c\\x49\\xd4\\x3e\\x94\\x7d\\xb8\\xc7\\x8a\\xac\\xa1\\xa9\\x9c\\x12\\x95\\x59\\xed\\x9b\\x45\\x1c\\xf1\\x0a\\x68\\xe7\\x9b\\xe8\\x6e\\xfd\\x3e\\x9e\\xc2\\xb8\\x71\\x95\\xf8\\x72\\x49\\x97\\x99\\x3d\\x97\\x40\\x04\\x00\\xde\\x80\\x1f\\x99\\x69\\x57\\xe9\\x49\\x11\\xcd\\x28\\x10\\xc5\\x23\\x07\\xca\\x0d\\xfc\\x9e\\x63\\xdd\\xb7\\x06\\x46\\xf1\\x15\\x77\\xee\\x27\\x84\\xbe\\x78\\x4b\\x90\\xc5\\x94\\x71\\x3a\\x5c\\x03\\xe6\\x27\\x83\\x22\\x6b\\x5f\\x02\\x4b\\x45\\x1e\\xf2\\xdd\\x91\\x20\\x55\\x95\\x7e\\xb0\\x3d\\x79\\x03\\x18\\xa3\\x77\\x58\\x06\\xe6\\x89\\x0a\\xe3\\x53\\x42\\x33\\xc0\\x65\\x89\\xf6\\x20\\xa3\\x21\\xab\\x55\\x59\\x7e\\xe5\\x06\\x20\\x3a\\xf5\\xc6\\xb1\\xdb\\xd8\\xce\\x01\\xfc\\x2e\\xf9\\x78\\xd7\\xe2\\xf0\\x00\\x57\\xe5\\x5d\\x83\\x17\\x0c\\xf7\\x6b\\x41\\xd2\\xed\\x74\\xc5\\x54\\x43\\x5d\\x54\\x82\\x2c\\x2b\\x6d\\xa3\\x76\\x80\\x08\\x18\\xc1\\x66\\x74\\xc8\\x8a\\x20\\xbe\\x8a\\x0c\\x29\\xdf\\x34\\x73\\xc4\\x2f\\x4c\\x05\\xc3\\xff\\x08\\x89\\xa5\\xaa\\xe4\\xe9\\x3a\\xe8\\x9a\\xa5\\xa9\\x0d\\x8f\\x9b\\x10\\x70\\xf8\\xda\\x42\\x57\\xc2\\xac\\x78\\xcb\\x20\\x99\\x1c\\xfa\\x4d\\xdf\\x2f\\x0a\\x14\\xc1\\x62\\x95\\x90\\xa3\\x35\\x80\\x81\\x76\\x68\\x86\\x9c\\x65\\x89\\x16\\x95\\x01\\x41\\xde\\x3e\\x2c\\x40\\xce\\xe9\\xa2\\x0f\\x8b\\xcc\\x14\\x44\\xa1\\x79\\xaa\\x57\\x7e\\x3f\\x8a\\x28\\xea\\xa2\\x39\\x5b\\x36\\x5e\\x2b\\x8a\\xe8\\x1f\\x2a\\xd4\\x05\\xa5\\x95\\x12\\x8c\\xad\\xff\\xcf\\xd0\\x46\\x96\\x23\\x4c\\x10\\xe8\\x10\\x91\\x07\\x5f\\xe6\\xb7\\xcb\\x1a\\x0b\\xda\\x8c\\x56\\x23\\x24\\x63\\xb4\\xb3\\xc2\\x2e\\x53\\x8e\\x09\\xe5\\x3f\\x12\\x57\\x6d\\x8d\\xdb\\xa2\\x4a\\xd0\\xe7\\xdd\\x41\\x13\\x50\\x2e\\xe2\\x5d\\xf2\\x46\\x9e\\x6b\\x19\\xd8\\x2a\\xbe\\xf6\\x72\\x47\\xef\\xe6\\x4a\\x67\\x10\\x99\\x81\\x2a\\x82\\x5c\\x2e\\x4a\\x97\\xd0\\x46\\x95\\xe2\\xed\\x1e\\xad\\xf2\\x4f\\x33\\x1c\\x91\\xb1\\x61\\xe4\\xea\\x79\\xd2\\x4b\\x9c\\x4e\\xee\\xfe\\x69\\x21\\x62\\x01\\xb1\\xf3\\xdc\\xe6\\x4b\\x4d\\xdf\\xda\\xa8\\x22\\xe2\\x80\\x22\\xd3\\x5d\\x2b\\xe3\\x17\\x68\\xa0\\x1f\\x9a\\x40\\x90\\xac\\x20\\x03\\x37\\x1d\\x32\\x75\\x58\\x31\\x49\\x6c\\x8b\\x1b\\x50\\xb6\\xae\\xbc\\x1f\\x53\\x53\\xd0\\x29\\x0b\\x02\\x61\\xc9\\x07\\x0c\\xce\\x20\\xf6\\xb0\\x87\\xf4\\x06\\xcf\\x47\\x51\\xbf\\x83\\xc2\\xcf\\xa4\\x5f\\xc8\\x56\\x37\\x00\\x35\\xdd\\x8e\\x26\\xb4\\xe2\\x0d\\x56\\xd5\\xda\\x44\\x52\\xa3\\x83\\xb6\\x20\\x99\\xe4\\x1b\\x6a\\xdb\\x86\\x3c\\xf2\\xfb\\xa7\\xb0\\xc6\\x71\\x82\\x4f\\x1f\\xcd\\x89\\xc5\\x8c\\x69\\xc2\\x84\\xdd\\x90\\xdc\\xf2\\x4b\\xc3\\x40\\x36\\x2e\\x75\\x76\\xb8\\xd9\\x1e\\x80\\xbf\\x4d\\x4a\\x3b\\x05\\x74\\xd0\\xb1\\xca\\xf6\\x74\\x25\\xae\\x52\\xd9\\xa9\\x85\\xc2\\xe3\\xe5\\x85\\x7f\\xd4\\x76\\x90\\x95\\xc0\\x88\\xd1\\xfd\\x88\\x08\\xf0\\x0f\\x93\\x2f\\x73\\x46\\x71\\x4a\\x0d\\xe6\\xb7\\x99\\xc3\\x44\\x48\\x36\\x00\\xf9\\x0d\\xba\\x39\\xf2\\xd2\\x14\\xd0\\x02\\x58\\x41\\x91\\x9d\\xa5\\x4e\\xb4\\x0c\\xc0\\x97\\x90\\x58\\x32\\x01\\x3a\\xd3\\xd3\\x6c\\x33\\x22\\x9c\\x15\\x14\\xb6\\x11\\x87\\x5f\\x92\\xbc\\x3b\\xe0\\xce\\x87\\xa9\\xc4\\x44\\xf0\\xea\\xf6\\xab\\x85\\xbc\\xaa\\x4e\\x44\\x72\\xaf\\x3d\\x05\\x38\\x81\\xd5\\x66\\x7e\\x1c\\x38\\x00\\x60\\xd9\\xaa\\x09\\x6c\\x28\\xa5\\x3c\\x00\\x58\\xa6\\x31\\xa8\\x99\\x52\\x0d\\x15\\xe9\\xbd\\x60\\x00\\x72\\x60\\xe1\\x91\\x1f\\xbd\\xba\\xf4\\x78\\x78\\x5c\\x1a\\x0e\\x68\\x73\\x48\\x77\\x7b\\xa0\\xba\\x08\\x62\\x9f\\xfc\\x6e\\xa4\\x44\\x85\\xf1\\x8a\\xa3\\xa5\\x65\\x67\\xd1\\x1c\\xe3\\x3d\\x20\\xdf\\x97\\x92\\xa9\\x95\\x50\\xe9\\xe3\\xdc\\x36\\x5c\\x4d\\x2f\\x1f\\x5a\\x5a\\x7f\\xb9\\x5a\\xba\\xce\\x6d\\xa7\\x81\\xda\\x98\\x96\\xdf\\x2f\\x3c\\xef\\xab\\xb6\\x33\\xb1\\x04\\x91\\xd7\\xfd\\xf4\\x73\\xf1\\xa6\\x4c\\x28\\x90\\x7a\\x41\\x03\\xa4\\xce\\x26\\x9a\\xba\\xf3\\xf0\\xcf\\xe9\\x1f\\x19\\x12\\x3e\\x96\\x3b\\x9f\\x11\\x28\\x25\\x3d\\xbf\\x4c\\x11\\x36\\xec\\x64\\x35\\xab\\xca\\xf3\\x41\\x63\\x63\\x0c\\x5b\\x06\\xf0\\x08\\xe0\\xdb\\x1f\\x61\\x19\\x43\\xaf\\x8a\\x1a\\xeb\\x13\\x0d\\xa1\\x51\\xb3\\xea\\xe1\\x93\\xb5\\x84\\x9c\\x19\\xfa\\xb6\\x0f\\x2b\\x79\\x61\\xfa\\x84\\xfe\\xc0\\x3d\\x50\\xbf\\x25\\x74\\xb9\\xed\\xb5\\xb2\\xd1\\xbc\\xb2\\x18\\x15\\x04\\x9f\\x18\\x1e\\x5a\\xfc\\x00\\xd8\\x7a\\xfa\\x06\\x11\\x30\\x27\\x4c\\x98\\x58\\x3a\\x23\\x39\\xa8\\x02\\x0e\\x3e\\xef\\x64\\xc7\\xfd\\xcd\\xc4\\x48\\xb2\\xbf\\x71\\xe0\\x9d\\x59\\x37\\x1a\\x9c\\x88\\xa4\\xd5\\x3c\\x2f\\x4b\\x70\\xbf\\x24\\xa8\\x41\\x9c\\x3f\\xc3\\xb0\\x8f\\xb2\\x84\\x1b\\xaa\\xe0\\xac\\x34\\xea\\xab\\x38\\xc1\\x92\\x75\\x20\\x79\\x3b\\xad\\x35\\x62\\x70\\x2e\\x92\\xb7\\x4b\\x08\\x4d\\x47\\xea\\x08\\x01\\x61\\x77\\xac\\x9f\\x29\\x52\\x42\\x2d\\x2a\\xc9\\x58\\x60\\x25\\x11\\x2f\\x88\\xd9\\xb6\\x46\\xe9\\x9e\\xef\\x41\\xad\\x43\\x68\\x7e\\x89\\x8e\\x74\\x95\\xa1\\x43\\xd9\\x58\\x25\\x43\\x3a\\x3e\\xef\\x7c\\xba\\x16\\x08\\x24\\x36\\xc2\\xda\\xb8\\x28\\x76\\xa8\\xa1\\xa3\\x29\\x51\\xca\\xe7\\x62\\xe3\\x6c\\x5c\\x74\\x27\\x1d\\xf4\\x08\\xba\\x31\\xd6\\x7c\\x1a\\x8a\\x9a\\x8f\\xbb\\x86\\x0a\\x25\\xf9\\x58\\xb3\\x99\\x5d\\x45\\x6e\\x86\\x53\\x33\\xfd\\x52\\x3f\\x7c\\x80\\x97\\x01\\x99\\xd0\\xa2\\x48\\x15\\x03\\xd4\\x04\\xa4\\x77\\x2c\\x6b\\x2d\\x34\\x68\\x58\\x29\\x89\\xc7\\x76\\x8f\\x40\\x40\\x01\\xde\\x4d\\x58\\x1f\\xa2\\x9c\\x32\\xcc\\xc6\\xf7\\xd1\\x75\\xe1\\x7a\\xcd\\x03\\x36\\x73\\xd8\\xee\\xaa\\x93\\x69\\x4c\\xbe\\xca\\x65\\xfe\\xcd\\x84\\x05\\x4f\\x46\\x2b\\xac\\x06\\xe2\\xa0\\xe8\\x2e\\x43\\x27\\x77\\xc2\\x8f\\x61\\xb1\\xa3\\xf2\\x8e\\xed\\x0c\\xbe\\xab\\xaf\\x61\\xa3\\xb1\\xa3\\x55\\x63\\xb1\\x57\\xfe\\x8d\\x6d\\x55\\xd3\\xf9\\x8f\\x22\\x58\\x61\\xdf\\x86\\xd6\\x12\\xee\\x57\\x13\\x90\\xe2\\x0d\\x88\\x50\\xaa\\xc6\\x48\\xfd\\xb6\\xb9\\x86\\x39\\x58\\xda\\x3d\\xab\\x96\\x7f\\x61\\x09\\xfc\\x7b\\xdf\\x4c\\x13\\x2b\\x55\\x34\\xc5\\xe4\\xc8\\x5f\\xd1\\xed\\x4a\\x7b\\xbb\\xec\\x87\\xa6\\xb8\\x75\\xa1\\x61\\x9c\\x21\\x7d\\xc1\\x94\\x25\\x8c\\xb5\\x0f\\x56\\x1c\\x94\\x30\\xc9\\xba\\xc4\\xc1\\xfc\\xfa\\x53\\x57\\x30\\x1a\\xf1\\x1e\\x83\\x86\\x35\\xc2\\x71\\xdd\\xd6\\xfe\\xa0\\x09\\x1e\\x54\\xae\\xb9\\x86\\x79\\x5e\\x80\\xca\\x5d\\xfd\\x05\\x2a\\xb2\\x4a\\xed\\x80\\xd3\\x4f\\x6b\\xe0\\x10\\x2d\\x52\\x23\\x20\\x26\\xd1\\x4d\\x81\\x57\\x3a\\x29\\x95\\xd4\\x0b\\x7d\\x56\\xce\\x59\\xe0\\x7f\\xe2\\x8d\\x03\\xe4\\x93\\x6a\\x61\\xae\\x22\\x24\\x2b\\x6e\\x35\\xf9\\x08\\xdf\\x11\\x3c\\xfc\\xe1\\x96\\x9e\\xa7\\xa0\\x8e\\xa6\\xd1\\x49\\xf7\\xe8\\x5d\\x38\\xa4\\xaf\\x55\\x52\\x26\\x02\\x1e\\x86\\xdd\\xd0\\xfd\\x19\\x30\\x18\\x0c\\x8a\\x39\\x38\\xa9\\xad\\x76\\xc2\\x57\\xec\\x0a\\x8c\\xc5\\x9d\\xae\\xdc\\xb2\\x4a\\x3f\\x8c\\xd7\\xe9\\xfb\\x73\\x31\\x73\\x1c\\x4c\\x15\\xcb\\x2b\\xa9\\x58\\x0d\\x64\\x4a\\xcb\\xc5\\xfa\\x27\\x11\\x01\\xd4\\x42\\x08\\x18\\x0a\\xe8\\xb4\\x29\\x00\\xe5\\x72\\xfd\\x46\\x37\\xe7\\xbd\\x18\\xd4\\x1d\\x6f\\x5b\\x7a\\x83\\x95\\x26\\x6b\\x39\\xfc\\x89\\xe6\\x70\\xa7\\x54\\xbf\\x1e\\x06\\x1e\\xd7\\x60\\xca\\x21\\x8d\\xa6\\x70\\xe4\\xf3\\x08\\x63\\x01\\xee\\x4f\\x70\\x44\\xc9\\xaf\\x55\\x72\\x32\\xa8\\x13\\xd8\\x8b\\x63\\x9d\\x22\\x60\\x35\\x04\\x8a\\x58\\xcb\\x00\\x93\\x1a\\x60\\x85\\xab\\x93\\x10\\xc8\\x2c\\x58\\xfd\\x95\\x4c\\x25\\xc4\\x23\\x58\\x01\\xe4\\x56\\x30\\x9f\\xe9\\xac\\x83\\xc9\\x37\\x69\\x66\\xe3\\xaf\\xe6\\x0b\\x8a\\x09\\x70\\xc5\\x02\\x01\\x67\\x08\\x7d\\x62\\xd8\\x4d\\x92\\x93\\x82\\x33\\x05\\x37\\x09\\x54\\x47\\x35\\x54\\x19\\x76\\x00\\x0b\\xac\\x04\\xd5\\x33\\x50\\xe4\\x2f\\x1e\\xfe\\xe1\\x58\\x20\\x90\\x92\\xd2\\x15\\x29\\x76\\x3e\\xe6\\x8b\\xe8\\x06\\x62\\x7c\\x6a\\xe1\\x80\\xe5\\xc1\\x14\\xf9\\x60\\x36\\x34\\x67\\xc6\\xf6\\x2e\\x3a\\x87\\x42\\xc4\\x57\\x7a\\xa9\\x3c\\x01\\x2d\\x78\\x6b\\xf0\\x33\\x58\\x16\\x70\\xdd\\x9e\\x47\\x77\\xa1\\x5e\\x1e\\xa0\\xb3\\xd7\\xe5\\xb4\\xba\\x7b\\x8c\\x74\\xa6\\x0a\\xd6\\x79\\x9f\\xb8\\x0e\\xa8\\xd6\\x4e\\x1a\\x1e\\x80\\xbc\\xd6\\x97\\x35\\x83\\x69\\x98\\x9b\\x76\\x49\\xd2\\x61\\xe2\\x25\\x3b\\x5d\\xaa\\xff\\x3a\\x9b\\xb1\\x91\\xf7\\x95\\x40\\x5b\\x86\\xb4\\x50\\x53\\x5d\\x35\\xa5\\xd7\\xbb\\xf8\\xf1\\x02\\x92\\x41\\xb5\\xf8\\x96\\x60\\xaa\\xe3\\x1e\\xd8\\xe6\\x0e\\x94\\xe3\\x3e\\xed\\xef\\x1e\\xa8\\xf3\\x4e\\x70\\xe6\\x8e\\x6f\\xe3\\xfd\\xbb\\xd3\\x4e\\x9d\\x88\\x87\\x65\\xee\\x58\\xe6\\xde\\xfe\\x5a\\xea\\xae\\xf7\\xc8\\xf4\\x3d\\x0b\\x9a\\xba\\xbb\\x34\\xde\\x78\\x43\\xbc\\x83\\xc0\\x8e\\x0e\\x4c\\x83\\x38\\xe9\\x9b\\xd9\\x90\\xc0\\x50\\x22\\xb9\\x92\\x96\\xc0\\x9d\\xbd\\xf8\\x07\\xa2\\x08\\xdd\\xa8\\x22\\x14\\x20\\x75\\x58\\x7a\\x05\\x17\\xb0\\x7c\\x20\\x75\\x82\\x98\\xa1\\x89\\xab\\x8a\\x31\\xc5\\xf0\\x84\\x88\\x80\\x53\\x0e\\x6e\\x08\\x8a\\x87\\xc3\\xaf\\xdf\\xe2\\x13\\x1e\\x4e\\xed\\x3a\\x73\\xc8\\x92\\x75\\x61\\x82\\x4e\\x8c\\x35\\x99\\x2a\\xc0\\x27\\x78\\x2b\\xdb\\x30\\x51\\x77\\xce\\x99\\x6b\\xcb\\xa2\\x30\\xa2\\xf2\\x91\\x86\\x86\\xb1\\x3f\\xe8\\xe7\\x40\\x6c\\xb9\\x60\\x12\\x8e\\xb5\\x45\\xd1\\xac\\xdb\\x0e\\x64\\x13\\x81\\xd2\\xee\\x0d\\x92\\xa3\\xc4\\xfc\\xce\\xc5\\xc8\\xb9\\x25\\x86\\x52\\x73\\x62\\x9c\\xbb\\xd4\\x2c\\x17\\x2a\\x99\\x0e\\x91\\x00\\xdc\\x47\\x2f\\x97\\x2d\\x94\\x2d\\x85\\xca\\x1d\\x47\\x67\\xa2\\xee\\xe7\\xe1\\x72\\xde\\xa2\\x4c\\x26\\x2e\\x58\\x71\\x11\\x78\\xf1\\xed\\xdc\\xc2\\xde\\xa8\\x9c\\x6c\\xb9\\x1b\\x9e\\x72\\x10\\x4d\\xd8\\x14\\xb3\\xd9\\x70\\x37\\x7e\\x06\\xa2\\xe4\\x83\\x8a\\x0e\\x76\\x2e\\x48\\x3c\\x3d\\xa2\\x17\\x29\\xe1\\x6b\\x99\\xd5\\x8c\\x8a\\x78\\x16\\x14\\x94\\x40\\x5c\\x80\\xee\\xd9\\x00\\xb9\\x39\\x60\\x44\\xca\\x52\\x2b\\x7e\\x0c\\x43\\x2e\\x72\\xf9\\x70\\x9c\\x93\\x80\\x5c\\xf9\\x95\\x7f\\x4d\\xb0\\xd0\\x97\\xc2\\xc2\\x27\\x09\\x8d\\x55\\x08\\xca\\x26\\xa2\\xdd\\xce\\x7f\\xcb\\xed\\xf7\\x5b\\x55\\x20\\x05\\xb8\\x69\\x72\\xeb\\xe0\\x81\\x68\\xc6\\x1c\\x5c\\x13\\xa1\\x61\\x05\\x60\\xb0\\xb4\\x24\\x51\\x38\\x3f\\xd4\\xc2\\x65\\x1e\\x88\\x82\\xe6\\xb5\\x10\\xc0\\xdc\\x8b\\x0a\\xc5\\xe8\\x05\\xc1\\x61\\x6e\\xfe\\x34\\xeb\\x97\\x05\\xd4\\xe5\\xa4\\x67\\xe5\\x54\\x57\\x45\\x44\\x01\\x7b\\x83\\x86\\x7b\\x69\\x66\\x0f\\x1a\\x36\\x89\\x10\\x13\\x46\\x79\\x89\\x43\\x19\\x2b\\x04\\x52\\x9a\\x90\\x9e\\x6c\\x9c\\xe3\\x2f\\x2c\\xd8\\x5f\\x58\\xbb\\x48\\x73\\xc5\\x3d\\x12\\xae\\x06\\xd1\\x05\\x6a\\x04\\x8a\\x42\\xe0\\x81\\x70\\x58\\x0f\\x38\\x0f\\xa1\\xfe\\x17\\x45\\x8c\\xae\\xd4\\x82\\x77\\xb2\\x32\\x01\\xa9\\xa2\\x87\\x42\\x24\\x86\\xc6\\x7b\\x4d\\xbc\\x06\\x7b\\x78\\x0f\\x72\\xa2\\x03\\x29\\xf8\\x67\\x8b\\x09\\x92\\xda\\x5f\\x78\\x91\\x37\\x4a\\x99\\x44\\x85\\xb6\\xd1\\x40\\x3d\\x41\\x42\\x39\\x23\\x47\\x25\\x41\\xa1\\xa3\\x47\\x3a\\xf2\\xe9\\x27\\xbc\\xcc\\x2b\\x4e\\x0d\\x85\\x58\\x2d\\xac\\x40\\x87\\xeb\\x98\\x4d\\xb5\\xc0\\x53\\x3c\\xb2\\xa5\\xd7\\xfb\\x89\\x11\\xb2\\x17\\x08\\xd1\\x30\\x46\\xe9\\x5c\\x80\\xc2\\x07\\xa1\\x00\\x42\\x04\\xb4\\x21\\x72\\x9f\\x8b\\xaa\\xe7\\x78\\x19\\x69\\x71\\xa3\\x3e\\x1f\\xe8\\xa8\\x90\\x1b\\x3a\\x49\\x18\\xd3\\x43\\xc3\\x2f\\x2d\\x31\\xd0\\xf8\\xa3\\x6f\\x8a\\xb5\\xcd\\xd3\\x71\\x74\\xee\\x1f\\xc2\\x38\\x00\\x36\\x0a\\x10\\xd0\\x60\\xdb\\xdd\\xb6\\xe5\\x23\\xd4\\x08\\x63\\xf6\\x70\\xa2\\x04\\xce\\x58\\x74\\x62\\x16\\x04\\xc3\\xe2\\x00\\xfa\\x2d\\x45\\x15\\x36\\x4f\\x98\\x14\\x66\\x28\\xfd\\xc8\\x5b\\x3c\\x89\\xa3\\x23\\x9b\\x96\\x40\\xbc\\xf2\\x12\\xbd\\x8c\\xd5\\xc4\\x1e\\x14\\xab\\xa4\\xf1\\xc0\\x88\\xdf\\x46\\x22\\x00\\x3b\\xe7\\x81\\xed\\xbb\\x54\\x32\\xe2\\xb8\\xe0\\xe8\\xd8\\xcb\\x29\\x64\\x00\\xb0\\x73\\x42\\xca\\xed\\x81\\x81\\x74\\x19\\xaf\\x0e\\x85\\x98\\xb3\\x3a\\x29\\xc7\\x82\\x2f\\x48\\x61\\x66\\x69\\x03\\x8b\\x4a\\xcf\\x5c\\x20\\xd7\\x26\\x7d\\x88\\xb4\\xbe\\xc5\\x68\\xca\\xaa\\x1f\\x6d\\x05\\xb6\\x31\\x12\\xe9\\x04\\x42\\xf3\\x8b\\xe4\\x78\\x2a\\xe3\\x18\\x4e\\xd7\\xc0\\x37\\x5d\\xb8\\x3c\\x94\\x3c\\x40\\x5f\\xe2\\x07\\x42\\x94\\x31\\x83\\x8f\\xa1\\xd6\\x23\\xff\\x38\\xfd\\xbc\\x8b\\x7c\\xf7\\x46\\x15\\xc0\\x97\\x2a\\xdd\\xc1\\xd4\\x12\\xc1\\x14\\xd7\\xf1\\xd3\\xe8\\x98\\xd7\\x96\\xf8\\xd5\\x51\\x7a\\x10\\x0f\\xf4\\x83\\x73\\x4b\\x0a\\x27\\xce\\x0c\\x12\\x0b\\x29\\x41\\xd8\\xe2\\x1a\\x0d\\x84\\x40\\x50\\x06\\x21\\x44\\x86\\xc2\\xa6\\x2b\\x4f\\xf7\\x5f\\x6a\\xa9\\x81\\xd1\\x6b\\xa7\\x92\\x9f\\xa2\\x70\\xc9\\xe1\\xce\\x35\\x84\\xb3\\xdd\\x35\\x27\\x3f\\xb9\\x02\\x81\\xbf\\x5d\\x6e\\xf8\\xb5\\x6b\\xe9\\x00\\x0d\\x4e\\x36\\x14\\xd5\\xe0\\xf1\\x83\\x03\\x69\\xfd\\x44\\xeb\\x3c\\x04\\x46\\x12\\x3d\\xf2\\xb9\\xeb\\x30\\x93\\x66\\x1e\\x8f\\xbc\\x96\\x68\\x00\\x03\\xca\\x42\\x58\\x39\\x1c\\xa9\\xca\\x2a\\x15\\x11\\x89\\x45\\xb7\\x69\\x85\\xb6\\xc3\\x20\\xd5\\xf8\\x76\\xa6\\x71\\xea\\xc9\\x6c\\xc3\\x90\\x1c\\xfe\\xdd\\x61\\xd8\\xa0\\x77\\x3a\\x64\\xab\\x20\\x61\\x82\\xe2\\x5b\\x65\\x8a\\x3e\\xb0\\x71\\x7d\\x27\\xd2\\x18\\xd3\\x6c\\xa1\\x37\\x83\\x02\\x78\\xba\\x78\\x29\\x1e\\x6c\\x1f\\x32\\xc4\\x7e\\xc4\\x38\\x79\\xc1\\x85\\x51\\x97\\xba\\xa2\\x9f\\xcd\\xdb\\x22\\x39\\x54\\x6e\\xc2\\x80\\x8d\\x61\\xb3\\xc0\\xf4\\xbe\\x03\\xd1\\x51\\x16\\xa1\\xc4\\xe6\\x53\\xcd\\x19\\x54\\x7a\\x64\\xd6\\x35\\x35\\x9d\\x6e\\x82\\xc4\\x2a\\xc0\\x43\\xee\\xc4\\x1b\\xeb\\xfa\\xb9\\x5c\\x29\\x1b\\x46\\x70\\x18\\xb9\\xa8\\xc4\\xd6\\x6f\\x42\\xd9\\xef\\x81\\xb6\\x1e\\x06\\xd0\\xd9\\x2a\\x09\\x8c\\x35\\x7c\\x4c\\xaf\\xf8\\x7d\\x71\\x40\\x0f\\x3e\\x90\\x4b\\xd1\\x8d\\x9a\\x4c\\x7b\\x12\\x4d\\x2a\\xa7\\xd8\\x93\\xae\\xd2\\x81\\xaa\\x89\\x1a\\xee\\x80\\xd1\\xa5\\x9e\\xac\\x64\\xe7\\x52\\x73\\x6b\\xc3\\x40\\x7a\\x63\\x88\\x25\\x2e\\x25\\x94\\xcb\\x06\\xfe\\x62\\x08\\x10\\x00\\x3a\\xaf\\x26\\x0f\\x04\\x23\\x92\\x3f\\x84\\x6a\\x83\\x85\\x11\\x60\\x4a\\x67\\xd5\\x82\\xab\\x6c\\x9a\\xbc\\xd7\\x16\\xe9\\x11\\x88\\x2a\\x2b\\xd1\\x5c\\x5f\\xe1\\xe3\\x85\\x05\\x9b\\x4c\\x93\\x9f\\xce\\xd9\\x18\\x15\\xa7\\xea\\x77\\x59\\xd2\\x23\\x9f\\x4c\\x0b\\x6e\\xc6\\xc2\\x8f\\xfb\\xf5\\x6e\\x63\\x52\\x01\\xe8\\x05\\x93\\x50\\xb6\\xe8\\xdc\\xdd\\xdf\\xbb\\xb9\\xb3\\x4d\\x58\\x60\\x8e\\x12\\xd0\\x63\\xe1\\x40\\x25\\x8b\\x04\\xe0\\xfc\\x9e\\x22\\xf3\\x9e\\xdc\\x20\\x64\\x0b\\x1b\\x13\\xf3\\xeb\\xbc\\xe4\\x0c\\x10\\xa3\\x6b\\x18\\x30\\x58\\x80\\x89\\x2c\\x20\\xad\\x20\\x38\\x42\\x6a\\xc4\\x02\\x04\\x46\\x44\\x36\\x75\\x4a\\xc1\\x4f\\x11\\x10\\x0e\\x42\\xfd\\x29\\xd5\\x34\\x28\\x33\\x68\\xa9\\x35\\x32\\xbb\\x79\\x09\\xb4\\x89\\xb9\\xa6\\xb8\\x3e\\x03\\xa2\\x61\\x7c\\x89\\xae\\x51\\x8b\\x98\\xdf\\x22\\xbe\\xc2\\x5d\\xa6\\xae\\x37\\x8a\\xa9\\xf3\\xf1\\x8c\\xe7\\x4b\\x2d\\x6f\\x6c\\xe7\\x47\\x40\\x39\\x4d\\x77\\x7f\\x2b\\x61\\x3b\\xc9\\x49\\x66\\xee\\x91\\xc3\\x46\\x0e\\x13\\xc9\\x01\\x4c\\xbb\\xe4\\x3d\\x91\\x8a\\xeb\\x64\\x23\\x76\\x8c\\x17\\xd0\\x04\\x6d\\xf2\\x1b\\x5a\\x30\\x07\\x05\\x0d\\x1e\\x4d\\xc6\\x89\\xbf\\xe2\\xff\\x32\\x4f\\xbd\\x07\\x7e\\xaf\\x90\\x56\\x4b\\xf3\\xfd\\xb4\\x27\\x30\\xed\\xb9\\x0f\\xe8\\xe7\\xfa\\x07\\x16\\xde\\x41\\x8b\\x1a\\x65\\x1d\\xa7\\x9a\\x32\\x98\\xdc\\x12\\xaf\\x2a\\x6d\\xc1\\xc0\\xd4\\xeb\\x85\\x0a\\x45\\x28\\x6f\\xc2\\x8c\\x7e\\x01\\x81\\x83\\x57\\xbd\\x10\\xb4\\xdd\\xa6\\xf8\\xdf\\xc4\\x5e\\x47\\x91\\x77\\xd4\\x0c\\x39\\x98\\x5f\\xab\\x82\\x9d\\xed\\x73\\xad\\x02\\x8e\\xdb\\xec\\xaa\\x37\\x57\\x0c\\xc9\\xc2\\x9a\\x1b\\xf3\\x0e\\xa0\\x1e\\x9c\\x09\\xfe\\x04\\xaf\\x86\\x0e\\x7b\\x8c\\x63\\x7e\\x7b\\x7f\\x1d\\x58\\x00\\xc1\\x97\\xed\\x4c\\xc3\\xb1\\x88\\x73\\x2b\\x5a\\x1c\\x1b\\x91\\x67\\x06\\xdf\\xde\\xcb\\x46\\x86\\xe5\\x14\\x79\\x63\\x45\\x63\\x41\\x47\\x5d\\xde\\xe0\\xbb\\x62\\x8a\\xa4\\x60\\xd6\\x85\\x50\\x47\\xb8\\x01\\x3a\\x83\\x9f\\x55\\xcd\\x90\\xde\\x5b\\xf2\\xae\\x51\\x91\\x88\\xd6\\x8b\\xa8\\x4a\\x4e\\x78\\x39\\xeb\\x05\\x3b\\x3f\\xad\\x95\\x8d\\x76\\xdf\\x81\\xc5\\x19\\x3a\\x25\\xb1\\xe5\\x25\\x84\\x25\\x00\\x21\\xba\\x44\\x40\\x6d\\xba\\x16\\x17\\xfb\\x13\\x49\\xc9\\x52\\xc0\\x52\\xc4\\x4c\\xc9\\xc7\\xb8\\xd7\\x77\\xb7\\xfc\\xf1\\xff\\xe1\\x74\\xce\\x19\\xbb\\xcf\\xa8\\x00\\x98\\x33\\x6e\\xea\\x42\\x7b\\x90\\xbe\\x09\\xaf\\x5a\\xfb\\x33\\x71\\x3d\\xf9\\xd7\\xd3\\xc6\\x0d\\x4a\\x72\\xa4\\xe8\\x88\\x03\\xb5\\x7c\\x02\\x71\\xcb\\x36\\x88\\x2f\\xb4\\x12\\xcc\\xda\\x3d\\xdd\\x0b\\x53\\x2a\\x13\\x50\\x0d\\x47\\x8c\\x50\\x01\\x0b\\x70\\x4d\\x0f\\x56\\x99\\x5c\\x15\\x00\\x04\\xbc\\x7b\\x90\\xa6\\x6d\\xb1\\x03\\xe9\\x07\\x3e\\xa6\\xa7\\x96\\x23\\x27\\x7a\\xad\\xec\\xf5\\x32\\x29\\xf2\\x9d\\x3f\\xa1\\x1a\\x79\\x60\\x4f\\xd9\\x19\\xa8\\xf9\\x22\\xc7\\xfe\\xa4\\xd0\\xc6\\xed\\xc2\\x81\\xeb\\xb2\\x85\\xa9\\x6d\\x47\\x82\\xc6\\xb1\\x69\\xdb\\x96\\xa1\\xe8\\x3f\\x92\\xe5\\x60\\xc0\\x30\\xa2\\x28\\xb0\\x30\\x93\\xc8\\x32\\xff\\x18\\x59\\xa4\\xc9\\x10\\x4f\\x59\\x27\\x82\\x61\\x9f\\x7c\\x6b\\xc6\\xfa\\x82\\x82\\xe0\\x37\\x96\\xb1\\x6b\\xfe\\xa8\\x03\\x48\\x0c\\x24\\x27\\xbb\\x93\\x78\\x07\\x02\\x25\\xc1\\x3c\\x1c\\x16\\x5a\\x67\\xf6\\xc7\\x5e\\x57\\x1a\\xbb\\x01\\xfc\\x5a\\xc9\\x22\\x67\\xeb\\x85\\x41\\x27\\x21\\x83\\x3d\\x94\\x90\\xc1\\xa0\\x65\\x88\\xc1\\xc4\\xdc\\x41\\x74\\x2a\\xdf\\x60\\xb7\\x4e\\x75\\x8e\\xd3\\x32\\xb8\\x97\\x3f\\x70\\x46\\x9f\\xcd\\x84\\x01\\xec\\xd8\\x16\\xf2\\x6d\\x6a\\xa7\\x75\\x36\\x8e\\x4e\\xe6\\xc8\\xd3\\xa7\\x4b\\x89\\xcd\\x04\\x06\\xeb\\xc9\\x90\\x2b\\x10\\x70\\x2f\\x2d\\x41\\xa6\\x77\\x7b\\x7a\\x0a\\x73\\x43\\x8b\\x9e\\xf9\\x35\\x36\\x61\\xde\\x74\\x09\\xc6\\x85\\x45\\xc3\\x58\\xda\\x6f\\x16\\x24\\x16\\xa3\\x58\\x32\\xa6\\x28\\xbe\\x2c\\xea\\x88\\x63\\x7d\\x4a\\x0f\\x16\\x62\\x30\\xe1\\x22\\xfa\\xfe\\x81\\xcb\\x43\\xb9\\x25\\x8c\\xcf\\x54\\x72\\x55\\xab\\x55\\xce\\xae\\x39\\x28\\xd2\\xb0\\x81\\xc1\\x08\\x51\\xd2\\xbd\\x2f\\x3c\\xbd\\xd4\\x20\\x2e\\xeb\\x70\\x10\\x99\\x1b\\x5f\\x46\\x03\\x93\\x9b\\xe5\\x01\\xe7\\xfb\\x8f\\x85\\xcf\\x45\\x8a\\x0d\\x90\\x51\\xa7\\xbc\\xe8\\x8d\\x33\\xd9\\x75\\xa7\\xeb\\xec\\xdc\\xfb\\x67\\xbc\\x00\\xc6\\xeb\\xef\\x78\\x51\\x28\\xf8\\x55\\x6d\\x84\\x27\\x36\\x41\\x66\\xa5\\x52\\x2f\\xc7\\x77\\x20\\xa0\\x8e\\x2d\\x41\\x2a\\xef\\x14\\x3d\\xae\\xeb\\x22\\x95\\x66\\x84\\x44\\x02\\xc3\\xde\\x7b\\xe8\\xbc\\x24\\x4c\\x09\\x85\\xbb\\x82\\x87\\x4c\\x8b\\x7f\\x59\\x56\\x81\\x50\\x98\\x8e\\x07\\x79\\xdd\\xdf\\xdc\\x96\\x12\\x6b\\xeb\\xad\\xaf\\x9c\\xb1\\x18\\x48\\x1e\\x9a\\xe8\\x4d\\x67\\x03\\x84\\xfb\\x4d\\x43\\x96\\xe5\\x73\\x7b\\xfb\\x08\\xa9\\x5c\\xe9\\x67\\x27\\x3a\\xd6\\xd7\\xe4\\x96\\x90\\x40\\x00\\x14\\xc8\\xbb\\x6d\\xa6\\x3d\\xc1\\xb5\\x96\\x8a\\x62\\xc2\\x1a\\x46\\x42\\x15\\x11\\x08\\x19\\xa4\\x56\\xee\\x5e\\x3c\\x3c\\x16\\x71\\xa0\\xb8\\x01\\xad\\x14\\x44\\x14\\xc1\\x25\\x61\\xe1\\x87\\x0a\\xd7\\x28\\x15\\xbb\\x41\\xbc\\x1b\\x06\\x6c\\x8d\\x5b\\x36\\x90\\x84\\x29\\x9f\\x21\\x0b\\x1c\\xb4\\xac\\x89\\x55\\xc4\\x62\\x99\\xfa\\x41\\xf9\\x5a\\x6e\\x54\\x21\\xaf\\x4e\\xb8\\x69\\x94\\xe6\\xb8\\xb6\\xd9\\x94\\xd0\\x4f\\x56\\x44\\x82\\x70\\xf1\\xb2\\x2a\\xa5\\x33\\x97\\x78\\x71\\xd4\\x8d\\x23\\xa6\\x42\\x38\\x58\\x53\\x28\\x56\\x33\\x53\\x9e\\x12\\xa8\\xcf\\x38\\x55\\x15\\xd0\\x03\\x43\\x62\\x39\\xb4\\x88\\x8a\\xa2\\xd0\\x6d\\xc0\\xad\\x07\\x81\\xae\\xb8\\x38\\x85\\x73\\x2e\\xa9\\x19\\x37\\x6a\\xd0\\xb5\\x2d\\x25\\x97\\xad\\xc9\\x3f\\x44\\xd3\\xba\\xea\\x87\\x2d\\x32\\xe7\\x9a\\xc0\\xc1\\x79\\x61\\x39\\x8d\\x5f\\x18\\x97\\x62\\xfa\\x6f\\xdf\\x55\\xfb\\xb0\\x30\\xfa\\x67\\x16\\xa6\\x6a\\xa9\\x58\\x61\\xcd\\x2b\\x78\\x0a\\x71\\x10\\x56\\x2d\\xa3\\xea\\x50\\xf7\\xac\\xb9\\xfb\\x3d\\x32\\x08\\x80\\xba\\x5d\\x6b\\xbc\\xe5\\x7c\\xb5\\xb8\\x73\\x60\\xe0\\x2b\\x38\\x95\\x19\\xe3\\x43\\x45\\x24\\x2c\\x58\\xa8\\x24\\x1d\\x0c\\xfa\\x35\\x80\\x39\\x7a\\xd6\\x1e\\xd4\\x16\\xaa\\x7a\\x22\\x50\\x83\\x02\\x84\\x7f\\x0b\\x66\\x55\\xdd\\x60\\xe2\\xf2\\xa2\\x43\\x42\\x14\\x02\\x84\\x45\\x07\\xcf\\x62\\xec\\xe6\\xb5\\xb0\\x9f\\x26\\xb7\\xb9\\xcd\\xe8\\x88\\x09\\x9c\\x69\\x04\\x22\\x32\\xe4\\xbb\\xc1\\x0a\\xda\\x0b\\x5d\\xe9\\xc0\\x0f\\xcc\\x09\\x3f\\x75\\xe3\\xf7\\x46\\x0a\\x5f\\x6c\\x36\\x47\\xe2\\x81\\x34\\x87\\xe5\\xa8\\xa6\\x19\\xf2\\x29\\x1a\\x80\\xca\\x8e\\x2f\\xfe\\x8b\\x92\\x8e\\x20\\x92\\x0b\\x1a\\x10\\x19\\x92\\x92\\x71\\x25\\x61\\xe3\\xa4\\x98\\x90\\x03\\x4a\\x5d\\x5c\\xd2\\xcf\\x56\\x8f\\x0a\\x38\\x65\\xb3\\x04\\x64\\xc5\\x07\\x1b\\xc5\\x76\\x26\\x0b\\x8e\\x08\\x78\\xdc\\x12\\xc1\\x17\\xa4\\xaa\\xc0\\xb9\\x54\\xe7\\x46\\xed\\x7c\\x09\\x45\\x58\\x08\\x29\\x35\\xe1\\x7e\\xbf\\x3a\\xfd\\x92\\x08\\x00\\x2a\\x7f\\xa1\\x13\\x00\\x95\\x93\\x91\\x02\\x25\\xbe\\xa4\\x5a\\xc3\\x48\\x79\\xe3\\x8c\\x62\\x94\\x4c\\xb6\\x74\\x65\\x99\\x5a\\xed\\xc7\\x4b\\xc3\\xac\\x03\\xf1\\x0d\\x60\\x62\\x5c\\x6c\\x0c\\x56\\x85\\x31\\x1e\\x35\\x70\\xd1\\x18\\x98\\x70\\x11\\x7e\\xd5\\xc7\\x9f\\x14\\xa7\\x70\\xe7\\xd5\\xb6\\x43\\x9c\\x6c\\x6b\\x1a\\x5c\\xf2\\x55\\x22\\x0a\\xc9\\x8c\\x72\\x1a\\x61\\x5b\\x16\\xa0\\xb0\\x7d\\x4a\\x4a\\x10\\x7e\\xf5\\xc6\\xd9\\x97\\x22\\x93\\x3c\\x2a\\x68\\x4c\\x99\\xae\\xcd\\xb5\\x76\\x60\\x50\\x27\\x2c\\xdd\\xcf\\xc2\\x0c\\xb6\\x4a\\xac\\x48\\x56\\xf7\\x41\\x5d\\xc1\\x8a\\x32\\x9a\\x29\\x67\\x53\\x41\\xb4\\x0f\\x15\\x70\\x72\\x51\\x47\\xa3\\x00\\x21\\x3c\\x59\\x66\\x0b\\x84\\xb3\\xd7\\x64\\xb0\\xa2\\x61\\xe2\\xc0\\x92\\x3b\\x58\\x18\\xd3\\xdf\\x51\\x65\\x80\\x63\\x0a\\xd4\\x70\\x56\\xc4\\xf1\\x9b\\xb6\\xdc\\x8d\\x8a\\x95\\x81\\x12\\x01\\xf0\\xc0\\x82\\x63\\x10\\xd5\\x30\\x95\\x34\\xd4\\x21\\x90\\x9a\\xa4\\x9f\\xc5\\xb0\\x46\\x00\\x1c\\x5d\\xa7\\x58\\x0b\\x68\\x40\\x6f\\xde\\x72\\xf5\\x8d\\xc7\\xbd\\x62\\x52\\x25\\x5b\\x71\\xea\\xd1\\xea\\x75\\xf4\\x75\\xd2\\xd7\\x45\\x87\\x99\\x54\\xb0\\xf3\\x30\\xde\\x13\\xb3\\xf0\\x2d\\xfa\\xd9\\x06\\x97\\x09\\x4e\\x71\\xea\\xfd\\x3d\\x08\\xa2\\x30\\x14\\xb6\\x4d\\x23\\xd2\\xb5\\x12\\x45\\x53\\x80\\xb7\\x1b\\x3f\\xd2\\x79\\xce\\x07\\x95\\x56\\x33\\xeb\\x12\\x51\\x36\\x72\\xa2\\x54\\x03\\x4c\\x61\\xeb\\x36\\x78\\xd9\\xb4\\x3d\\xd0\\x10\\xe7\\xe1\\x5a\\x22\\x58\\x85\\x24\\xeb\\x15\\x41\\x27\\xe7\\x23\\xca\\x75\\x62\\xfd\\x53\\x44\\x4f\\xa0\\x5b\\xe6\\x56\\xcc\\x46\\x7d\\x5c\\x3b\\x8a\\x30\\x4e\\x83\\x49\\xc6\\x60\\xf8\\x37\\x08\\x44\\xc9\\x60\\x73\\x3f\\x0c\\xe5\\x10\\x0d\\xee\\xb1\\x82\\x0a\\xf3\\x19\\x97\\xa0\\x85\\x70\\x8f\\xcc\\x8b\\x97\\x23\\xea\\x6e\\x26\\x40\\x22\\x04\\xfd\\x92\\x2a\\x9c\\x03\\x89\\xc7\\x1b\\xec\\xe1\\x1c\\x5d\\x7b\\x2c\\xed\\xcf\\x7c\\x38\\xab\\xf1\\x08\\x1b\\x59\\x47\\x04\\x82\\xae\\x77\\xbf\\xea\\x1c\\xe7\\xc1\\x1d\\xb8\\x36\\x4c\\x8d\\x3e\\xb9\\x15\\x73\\x8a\\x2b\\xc8\\xeb\\x80\\xa5\\x53\\x50\\xce\\xb5\\x19\\x11\\x62\\x9f\\x69\\xf5\\xce\\x30\\x6d\\x53\\x41\\x96\\x87\\xf8\\x53\\x28\\xf2\\x1a\\xdc\\x85\\x3b\\x1e\\x70\\x00\\x01\\xbf\\x3e\\xe2\\xdb\\x6a\\x09\\x0c\\xbb\\x89\\xab\\x50\\x13\\xf7\\x48\\xc8\\x82\\x42\\x1c\\xff\\x16\\x80\\x48\\x5a\\x68\\x00\\x34\\x28\\x33\\x51\\x23\\x67\\x06\\x7a\\xb1\\x29\\x82\\xb9\\x47\\x56\\x01\\x9b\\x00\\x11\\xb9\\xb2\\x1e\\x01\\x9c\\x0b\\x07\\x97\\x1f\\xd8\\x48\\x65\\xb4\\x39\\x3e\\xf3\\xc0\\x1d\\x73\\x6b\\x04\\x2c\\xbd\\xec\\x04\\xce\\x06\\x55\\x44\\xf9\\xd9\\x5c\\x85\\xa4\\x64\\x99\\x18\\x1a\\x0b\\xf6\\x26\\x03\\x28\\x64\\x9c\\x1b\\x08\\x11\\x6a\\x36\\x18\\x20\\x14\\x02\\xe5\\x6f\\x02\\x18\\xd3\\xac\\x73\\x95\\xe0\\x05\\xeb\\x7a\\xea\\x90\\xf4\\x40\\xae\\xd1\\x64\\xf4\\x15\\x97\\x3f\\x4c\\x40\\xac\\x3b\\x0e\\x30\\x69\\xe4\\xc2\\x0c\\x91\\x9f\\xdb\\x44\\xdb\\xf6\\x7c\\x48\\x19\\xe6\\xe5\\x7e\\x62\\xe0\\x6b\\x51\\xb1\\x59\\x21\\xcc\\xc1\\x40\\x1a\\x76\\x92\\x04\\x2d\\x41\\x31\\xe2\\x57\\xb0\\x17\\x83\\xa1\\x31\\xdf\\x40\\xd0\\x08\\xb7\\x59\\x35\\xb6\\x1f\\x3b\\x58\\x19\\x88\\x61\\xa2\\x1b\\x61\\x1c\\xd9\\xed\\x9a\\x39\\xe2\\x12\\x01\\x30\\x3f\\xc3\\x3e\\xc8\\x50\\x83\\x51\\xb6\\xd4\\x21\\x17\\x6a\\x3c\\x75\\x44\\x42\\xf2\\xb9\\xb2\\xcc\\x57\\x98\\x22\\x0b\\x25\\x16\\x81\\xe8\\xb6\\x51\\x52\\x24\\x31\\xd9\\x04\\x5e\\x64\\x58\\x88\\x54\\x74\\x89\\xe6\\x55\\x58\\x05\\xc1\\xe7\\x9a\\xbe\\xdd\\x00\\x23\\xa5\\xd3\\x3a\\x4c\\xc8\\x00\\x19\\x26\\x53\\xab\\xba\\xde\\x38\\x22\\x82\\x1f\\x0c\\xcc\\x10\\x57\\x14\\xe7\\x2a\\x46\\x1c\\xf6\\x8d\\xdd\\xea\\x31\\xdf\\x06\\x5d\\x42\\x8c\\x85\\xfc\\x66\\xf9\\x57\\x06\\x65\\xdd\\xe7\\x8f\\x3f\\x7b\\x17\\xc1\\x8f\\x3a\\x3f\\xcc\\xb2\\xc4\\xaa\\xd0\\xeb\\x4e\\x1f\\x07\\x9b\\x15\\x82\\x3b\\x7b\\xe9\\x78\\xda\\x33\\xd2\\x6b\\x1b\\xe1\\xbd\\x05\\xd4\\x92\\x20\\x1f\\x35\\x38\\x92\\x01\\xb7\\x99\\x73\\x0e\\xcc\\x4b\\x04\\x81\\x88\\x78\\x92\\xe4\\x4f\\x43\\x3f\\xdc\\x0f\\x0c\\x52\\xf1\\x27\\x2f\\xc1\\x0e\\x2b\\xf8\\xfe\\x57\\x04\\x0c\\xff\\xc0\\xd6\\x4f\\x47\\x4e\\x1c\\xd8\\xdd\\xe8\\x27\\x72\\x38\\x02\\x41\\x3a\\x01\\xe2\\x47\\xc6\\xb2\\xca\\xae\\x97\\x55\\xe8\\x71\\xe9\\x1c\\xf4\\xee\\x46\\x20\\x5f\\x44\\xf9\\x6c\\xe0\\x54\\x40\\x41\\xcf\\x86\\xcb\\xd1\\x44\\x27\\x00\\x82\\x2b\\x22\\x98\\x32\\x32\\x5a\\x77\\xd8\\x16\\x6a\\xb2\\x91\\x5f\\x24\\x9b\\x60\\xa6\\x5b\\x80\\x4b\\x5a\\x06\\xb5\\xd0\\x15\\x89\\xf0\\x21\\x9c\\x8c\\x0d\\x8b\\x51\\xbb\\xb8\\x42\\x9c\\xdf\\xd9\\x47\\xee\\xe9\\x5a\\x0e\\x6d\\x0c\\xa3\\xa3\\x75\\xca\\x63\\x99\\xc3\\x28\\xe3\\xd5\\x49\\x6e\\xe1\\xf8\\x92\\xfc\\xed\\x43\\x7a\\xa4\\x94\\x4c\\x83\\xc0\\x2a\\x77\\x9e\\xe0\\x90\\xf8\\xbb\\x20\\x60\\xe6\\xa3\\x5f\\x57\\x48\\x9b\\xe4\\x13\\xa0\\xda\\x14\\xe9\\xc6\\x01\\xc0\\x81\\x6b\\x51\\xb2\\x2b\\x74\\x5b\\x76\\x1a\\x1a\\xf1\\x70\\xf7\\x84\\x34\\x78\\x12\\x22\\x38\\x58\\x10\\xf1\\x0f\\xad\\x7c\\xbb\\xf2\\x32\\x94\\x0b\\x5d\\x84\\x31\\x50\\x69\\x89\\x3e\\xb9\\x4f\\xac\\x75\\xcd\\x76\\x16\\x4d\\x14\\xb2\\xb6\\x53\\xe3\\xa9\\x7e\\xdc\\x5a\\xae\\xba\\x9a\\xd1\\xca\\xc9\\x33\\x72\\x80\\x4b\\x8f\\xac\\xaa\\x29\\x85\\xd0\\xf4\\xdb\\xbb\\x43\\x30\\x65\\xcc\\x5c\\x2f\\x1c\\x90\\xde\\x8a\\x4a\\x4e\\x64\\x88\\x25\\x26\\xa9\\xa8\\x39\\xb3\\xc8\\x52\\x05\\x36\\x93\\x54\\xe5\\x0a\\xdd\\x31\\x67\\xd2\\x38\\x00\\xf9\\xc4\\xb9\\x12\\x09\\xda\\xa9\\xb7\\xde\\x58\\x79\\xe6\\x82\\x72\\x56\\x52\\x86\\x55\\x6e\\x22\\x0c\\x1a\\x6d\\x49\\x19\\x71\\x04\\xd1\\xa5\\x62\\x54\\xb7\\x4c\\x01\\xc6\\x4c\\x99\\x23\\x91\\x38\\x84\\x55\\xd8\\x8d\\x9a\\x51\\xd7\\x85\\x52\\x20\\xe2\\xb3\\xed\\x74\\xd2\\x08\\x8d\\xa0\\x2e\\x7a\\x28\\x73\\xde\\x44\\xf2\\x2a\\xe1\\x2b\\x05\\x8e\\xbf\\x6e\\xbc\\x73\\xb2\\xdc\\x30\\x23\\x50\\x2f\\x5d\\x12\\x2c\\x23\\x39\\x05\\x88\\x4a\\x88\\xa6\\xc8\\x9a\\x17\\x59\\x6a\\xd2\\x3d\\x4a\\x94\\x43\\x58\\xa2\\x05\\x19\\x81\\xb6\\xd7\\x1b\\x2b\\xb2\\xa8\\x80\\xb7\\xa0\\x6e\\xe3\\xd2\\x6e\\xd5\\x95\\x43\\x58\\x04\\xb4\\x5c\\xeb\\x81\\xdc\\xc2\\xca\\x0c\\x69\\xbb\\x46\\x21\\x4c\\x88\\xe0\\xcc\\xab\\x5b\\x02\\x6d\\x47\\x97\\xe1\\xcd\\x3a\\xe0\\xd4\\xf1\\x6e\\xa9\\x84\\x45\\xcc\\xe4\\xfd\\xca\\xc3\\xd2\\xeb\\x56\\x12\\xb7\\x77\\x6f\\x19\\xa0\\x99\\x0b\\x4c\\xe3\\xe7\\x38\\xc1\\x65\\x9c\\xc9\\x49\\xe6\\xc2\\x66\\x06\\xc3\\x67\\x01\\x03\\x12\\x29\\x96\\x30\\xb3\\xa5\\x84\\xfa\\x44\\x9a\\xb4\\x84\\x3e\\x0a\\xdd\\x0a\\xdb\\x87\\x7d\\x1b\\x67\\xe9\\xd2\\xa2\\xe4\\x03\\x71\\x3c\\x0d\\x2d\\x43\\xcd\\x70\\x60\\x59\\x25\\x81\\x18\\x21\\xd0\\xe1\\x73\\xb6\\xe1\\x4a\\x0e\\x04\\x99\\xe1\\xce\\x20\\x44\\x74\\x56\\xcf\\xb1\\xd0\\x0b\\x2b\\x74\\x82\\x66\\x02\\x64\\x0d\\x2b\\x4e\\x0c\\xad\\x53\\xcc\\x20\\x7d\\x88\\x67\\x2c\\x1a\\x3e\\xe2\\xce\\xf8\\xff\\x61\\x56\\xd2\\xb0\\x67\\xca\\xd5\\xae\\x75\\xb9\\xa0\\xcf\\x30\\xc0\\xe2\\x00\\xb3\\x17\\xb2\\x64\\x4e\\x01\\xb7\\xa6\\xbd\\xa7\\x74\\xee\\xdd\\x55\\x20\\xe8\\x56\\xaa\\xfd\\xce\\xa7\\xc3\\xd1\\x01\\xfa\\xfe\\x6d\\x21\\x0d\\xe4\\xd9\\x4f\\xe7\\xaf\\x17\\x42\\x11\\x27\\x4a\\x77\\x50\\xc9\\x5a\\xb8\\xd7\\x95\\xbb\\x23\\x80\\xab\\x6a\\x1d\\xc2\\x72\\xe3\\x35\\x20\\x6c\\x03\\x40\\x21\\xd9\\xb2\\xe9\\x8d\\x6b\\xe3\\x76\\xd5\\x51\\xc5\\x5d\\x4c\\x4e\\x06\\x2c\\xf5\\xc8\\xbb\\x3f\\x4c\\xae\\xb4\\x0d\\x94\\x2f\\x95\\xb3\\x4f\\x5b\\x70\\x0a\\xe0\\x80\\x0f\\xb5\\xcd\\xde\\xcd\\x21\\x68\\xdb\\x1b\\x4d\\xf8\\x4d\\xbb\\x9e\\xd5\\x70\\xe2\\x8a\\x16\\x01\\x1d\\xa7\\xee\\x08\\x46\\xa8\\x0e\\x3c\\x58\\x74\\x08\\x7b\\x5a\\xc8\\xac\\x29\\x4f\\xd2\\x85\\xac\\x44\\xf5\\x41\\x1e\\x15\\x3d\\x08\\x25\\xd8\\x55\\xd9\\x0f\\x97\\xc4\\xdb\\x63\\x96\\x06\\x40\\xed\\x97\\x20\\x02\\x9e\\x17\\x60\\x0b\\xc0\\x5a\\x13\\x15\\xe4\\xf3\\xf4\\xde\\xdf\\x1a\\x6d\\xfe\\x3e\\x46\\x2e\\x27\\x28\\xf8\\x20\\xd2\\x01\\x22\\x7a\\x7a\\xb0\\x95\\x83\\x0a\\x17\\x47\\xcd\\xfb\\xf8\\xea\\xef\\x67\\x63\\x1b\\x73\\x3a\\x16\\xae\\x89\\xde\\xab\\x31\\x3d\\x4e\\x5d\\x9e\\x46\\x38\\xa6\\xc9\\xda\\x65\\x54\\x60\\x8f\\xda\\x6b\\xdf\\x66\\x7d\\xb7\\x73\\xc0\\x82\\x53\\xfc\\x17\\x93\\x80\\x49\\x82\\x16\\xb7\\x82\\x11\\x0c\\x01\\xe7\\x60\\xf0\\x16\\x61\\xd7\\xf9\\x39\\x69\\x97\\xb0\\x2f\\x9b\\x39\\xa7\\x5c\\x30\\x34\\x23\\x54\\xc4\\xbe\\x00\\x89\\xf0\\x60\\xd1\\x04\\xc0\\x2c\\xac\\xd0\\x8c\\x52\\xb0\\x73\\x94\\x53\\xb0\\x89\\xb2\\xf2\\x33\\x09\\xcb\\x08\\x13\\xc9\\x43\\x20\\x1e\\x0b\\x2b\\x1b\\x96\\xe5\\x57\\x5a\\xe4\\x95\\x4f\\xa2\\x84\\xac\\x45\\x6b\\xec\\x49\\x54\\x1d\\x39\\x52\\x2b\\x91\\xa1\\x25\\x61\\x3f\\x1f\\x5f\\x88\\x6e\\x24\\x1a\\xa9\\x0b\\xbb\\x60\\xd5\\x00\\x9f\\x12\\x8c\\x45\\xbc\\xae\\x5c\\x4b\\x43\\x87\\x29\\x09\\xa5\\x26\\xdc\\x01\\x3f\\x6d\\xde\\xc7\\x36\\x29\\x63\\x60\\xfb\\xc0\\x40\\x74\\x8a\\x38\\xf5\\x9c\\x61\\x18\\x1c\\xda\\xa3\\x9c\\xf5\\x6a\\xf5\\xee\\x83\\xe9\\x49\\xc1\\xf7\\xef\\xf5\\x8b\\xa6\\xa6\\x00\\x30\\x08\\x10\\x35\\xa5\\x3e\\x60\\x4f\\xd1\\xb6\\xb3\\xae\\x68\\x81\\x02\\xc8\\x00\\x19\\x0c\\x01\\x24\\x68\\x04\\x20\\x2e\\x73\\x3b\\xda\\x05\\xe0\\x7e\\xd9\\x68\\xbc\\x3c\\x78\\x59\\x46\\x34\\xda\\x0c\\x1d\\x91\\x7a\\x9c\\x11\\x7b\\x2a\\xd7\\x68\\x94\\x61\\xb2\\xa9\\x41\\xbf\\xf9\\x39\\x58\\x3d\\x94\\x37\\xc2\\x3b\\x10\\x44\\xc0\\xe0\\x4c\\x11\\xa0\\x13\\xdd\\xc9\\x15\\xb3\\x91\\x26\\xea\\x3e\\x28\\x46\\x49\\xd0\\x76\\x7b\\xa4\\x1a\\xd6\\x3d\\x94\\x90\\x00\\xa7\\x38\\x2c\\x0e\\x3e\\x8d\\x91\\x45\\x49\\x37\\xe0\\xe6\\x01\\x14\\x4c\\x0e\\xa0\\x9b\\xb8\\x22\\x47\\xbb\\x76\\x44\\xfb\\xf2\\x22\\x68\\x89\\x24\\x0e\\x35\\x79\\x4f\\x42\\xc7\\x95\\xaa\\xa8\\x51\\xd5\\x94\\xe0\\x16\\x7d\\xf0\\x74\\x1b\\x3c\\xf9\\x33\\x3f\\x4f\\x7f\\xc2\\xd8\\xf9\\xbb\\x09\\x2a\\xbb\\xeb\\x97\\xe0\\x7d\\x89\\x2c\\x04\\xb0\\x86\\x3c\\x9c\\xaa\\x82\\xed\\x5b\\x0e\\x87\\xcb\\xf0\\x89\\xda\\xd6\\x76\\x9f\\xb8\\x92\\x06\\x1a\\x1a\\xa0\\xc9\\x24\\x3e\\x5c\\xa0\\x06\\x43\\x44\\x35\\xda\\x7b\\x35\\xf8\\x1b\\x02\\xc4\\xde\\x3f\\x83\\x5e\\x46\\xc8\\xa4\\x7d\\x1b\\x24\\xdc\\xff\\xe5\\xc4\\x30\\x1b\\x93\\x4d\\x36\\xe3\\xd5\\xc5\\x9a\\x67\\x8c\\x89\\xcf\\x05\\x12\\x98\\x8f\\xe5\\xa5\\xc8\\x78\\x3f\\x39\\x46\\x86\\xa5\\x34\\x0e\\xd4\\x7f\\x61\\x91\\x40\\xae\\x21\\x14\\x23\\x14\\x7b\\x26\\x1c\\x32\\x1c\\x26\\x0e\\x87\\x0f\\x0c\\x22\\x8a\\xb2\\x30\\x95\\xd7\\x8a\\x01\\x87\\x47\\x3a\\x85\\x27\\x74\\x88\\xd2\\x26\\x65\\xb9\\xa6\\xe1\\xca\\x07\\x49\\x76\\xdf\\xaa\\xf7\\xd6\\xb5\\x2e\\x50\\xf4\\x9a\\xc6\\x2a\\xd7\\x9a\\xf7\\xa3\\x11\\xa2\\xaa\\x0e\\xb0\\xc4\\x6f\\xfe\\x94\\x5d\\x0b\\xaf\\x13\\xb7\\xb5\\x02\\x46\\xc3\\x2e\\x9a\\x29\\x75\\xe4\\xdc\\xf8\\xb1\\x32\\x55\\x09\\xdb\\x9c\\xc3\\xf6\\xe4\\x90\\x9c\\x38\\x51\\x7d\\x0a\\xb6\\x61\\x68\\x1f\\x75\\xc5\\x64\\xe0\\x6f\\xfb\\xfc\\xd7\\x31\\x93\\x0a\\xe9\\xd6\\xdb\\x1a\\x56\\x71\\x27\\x47\\xec\\xd4\\xed\\xed\\x06\\x46\\x8e\\x17\\x7f\\x1a\\xc4\\x43\\x72\\x76\\x41\\x5e\\xe1\\x16\\xf5\\x0a\\x6b\\x2f\\x84\\x22\\x16\\x52\\x4a\\xd9\\x2e\\xe9\\x5a\\x16\\x36\\xbb\\x1e\\x49\\xf4\\xcc\\x5e\\x8a\\xd0\\x85\\xa0\\xd0\\xdd\\x35\\x14\\xc3\\x20\\xae\\x95\\x8e\\xca\\x9d\\x39\\x21\\xbb\\x22\\x92\\x08\\xd1\\x06\\xab\\x7d\\x81\\x57\\x0a\\xb6\\x90\\xf9\\x41\\x05\\x1a\\x6b\\x91\\x21\\x40\\x8f\\xe7\\xa1\\x51\\x57\\x13\\x44\\xfa\\x13\\x8b\\x6f\\x2c\\x21\\x16\\xe2\\xa8\\x73\\x0e\\x34\\xc3\\x61\\xb8\\xf1\\x04\\x7a\\xba\\xf7\\x83\\xfc\\x21\\x4d\\xeb\\xb4\\x48\\x62\\xfc\\xa0\\x01\\x0a\\x4b\\x03\\xe1\\x75\\x01\\xde\\x4d\\x9a\\x2e\\x32\\x2f\\x48\\xfd\\x12\\x30\\x09\\x4e\\xf6\\x6c\\x89\\x9a\\x28\\x88\\x2c\\xf3\\x06\\x41\\x0a\\x37\\xec\\x2e\\x9d\\x4d\\x18\\x2f\\xf6\\x64\\x72\\x4b\\x79\\x57\\x9e\\x03\\xa9\\xac\\x11\\xe5\\xb0\\x78\\x62\\x0e\\x45\\xf8\\x2c\\xc1\\xd3\\x8d\\x52\\x7d\\x72\\x7f\\x20\\xf6\\x00\\x9f\\xba\\x9f\\xe4\\xeb\\x74\\x51\\x7b\\x50\\x33\\x20\\xb1\\x44\\xa1\\x64\\x92\\x2c\\x08\\x21\\xb7\\xd2\\xbf\\x79\\x52\\xa4\\xbc\\x3c\\xa5\\x93\\x61\\x02\\x33\\x9e\\x98\\xfa\\x10\\x66\\x6d\\x14\\x62\\xbb\\xc0\\xe5\\x2e\\x03\\xa6\\x79\\x1b\\x1d\\x63\\xa5\\xe0\\x64\\x0b\\x7a\\x45\\xc1\\x05\\x51\\x04\\x1f\\x1a\\xa2\\x05\\x96\\x44\\x40\\xba\\xe9\\xce\\x86\\x56\\x57\\x90\\x6d\\xc4\\xab\\xc1\\x3c\\xfe\\x88\\xdb\\x33\\x8b\\x0e\\x09\\x55\\x39\\xd7\\x05\\xb8\\x9a\\xf6\\x00\\xa6\\x7e\\x6b\\xf0\\xa0\\x8f\\x50\\x98\\xaa\\x35\\x15\\x05\\x1c\\x0d\\xed\\xb1\\xba\\x3a\\x62\\xeb\\x43\\xfc\\x1e\\x6c\\xa3\\x44\\x87\\xad\\x1a\\xae\\xa1\\x68\\x7c\\x85\\xae\\x59\\xfd\\x3f\\x4a\\x23\\x52\\x12\\x4d\\x50\\x54\\x11\\x8a\\x0c\\x73\\x06\\x3c\\x99\\x31\\x14\\x1e\\x5b\\x41\\x75\\x61\\xce\\x84\\x46\\xf2\\xea\\x94\\x2a\\x13\\x80\\x56\\x05\\xd3\\x9e\\xc6\\xd8\\x61\\x7d\\x7d\\x8c\\x65\\x34\\xd1\\x3e\\xd3\\x1d\\x9b\\xf3\\x49\\x46\\x84\\x52\\xe3\\x65\\xed\\x86\\xa9\\x70\\x55\\xa3\\x9a\\xc4\\x4f\\x5d\\xf8\\xba\\x8c\\x42\\x47\\x91\\x53\\xf5\\x24\\x1b\\x66\\xca\\x3d\\x8a\\x6b\\x4c\\x12\\x86\\x19\\x35\\x92\\xe9\\x0a\\x08\\x6e\\x42\\x52\\xf6\\x96\\x83\\x02\\xbe\\x8e\\x2d\\xa5\\x32\\x85\\x96\\x86\\x6c\\xb6\\xb4\\x58\\x42\\x2b\\x60\\x16\\xab\\x50\\x05\\xa1\\xa1\\xf3\\x9d\\x6d\\x33\\x88\\xdd\\xea\\xe5\\x9d\\x8f\\x0c\\x7e\\xe9\\x48\\x51\\x98\\xfd\\x18\\x85\\x04\\x78\\x1d\\x39\\xcb\\xc3\\x25\\x4b\\x1c\\x9c\\x8b\\x7e\\x60\\xe0\\xc9\\x88\\xe8\\x22\\x68\\x78\\x45\\x83\\x1c\\x08\\xd4\\x27\\xdf\\x06\\x20\\x83\\xe2\\x83\\xa8\\x47\\xdb\\x0c\\x13\\xa3\\x0f\\x24\\x6d\\xa5\\xc9\\x80\\x1c\\x69\\x92\\xdf\\xb7\\x3b\\x21\\xab\\x75\\xa0\\xa6\\x9c\\x43\\x42\\xa2\\xa7\\xf8\\x0a\\x94\\x3f\\x24\\x45\\x6a\\xce\\xc6\\x33\\xed\\x84\\x73\\xde\\x04\\xcd\\x08\\x82\\x0e\\xf2\\x41\\xd3\\xdd\\x4e\\x34\\x60\\xb4\\xe4\\x28\\x8d\\xdf\\x64\\x16\\x78\\xa5\\x10\\x32\\xb8\\x83\\xb8\\x2f\\x10\\x42\\xa1\\x9e\\x44\\x7d\\xb5\\x85\\x46\\x41\\xfb\\xa8\\xc2\\xad\\xc1\\x8a\\xce\\x48\\xf5\\x53\\xd2\\x08\\xd3\\x4a\\x39\\xd0\\x5e\\x31\\xc1\\x61\\x2f\\x13\\x51\\xf1\\x53\\x3f\\x86\\x60\\xdc\\x33\\xea\\x8a\\xcb\\x28\\xf9\\x93\\x11\\x93\\xa8\\xf8\\xb4\\x27\\x93\\x32\\xf6\\x72\\xfc\\x61\\xd4\\x1c\\x7d\\xe8\\x34\\x6b\\x4b\\x3b\\x30\\xd3\\xaa\\xa5\\x4f\\x93\\xd8\\x1b\\x98\\x7b\\xd6\\xd2\\x95\\x51\\x21\\xc7\\x19\\x40\\x83\\x9b\\x05\\x50\\x73\\xc2\\xc7\\xd3\\x4a\\x31\\xb8\\x10\\x55\\x17\\x47\\x7d\\x03\\x6f\\xd1\\x3c\\x8e\\x92\\x11\\x52\\x0b\\xb0\\x9b\\x77\\xe0\\x44\\x93\\x23\\x2f\\x25\\x1a\\x87\\x22\\x51\\x1e\\xb3\\x07\\xb1\\x5e\\xcb\\x90\\x75\\x49\\x43\\xeb\\x84\\x1c\\xb7\\x28\\x66\\x81\\x37\\x8f\\x21\\xba\\xe5\\x13\\x1b\\x53\\x25\\x38\\x68\\xe1\\x6e\\xec\\x00\\xc2\\x9b\\x73\\x95\\x8f\\x84\\x0b\\xec\\x05\\x91\\x43\\x0a\\x1e\\xe9\\xbf\\xd9\\xf7\\x51\\x4c\\x33\\x97\\xea\\xfc\\x34\\xec\\x6c\\xc0\\xb2\\x8a\\x44\\x75\\x28\\xfc\\x09\\x23\\xb7\\x82\\x77\\x0e\\xf9\\xb2\\x77\\x0e\\xb3\\x78\\x77\\x0b\\x77\\x7f\\x6c\\x6e\\x19\\xb4\\x79\\x26\\xd3\\x26\\xf0\\x46\\xae\\xd5\\xdb\\x1a\\xd3\\xae\\x6c\\x45\\x15\\x67\\xba\\x2b\\x59\\xde\\x29\\x36\\xbf\\xdd\\x9a\\x0d\\xaf\\x29\\x3b\\xc8\\x77\\xf3\\x69\\x59\\xdd\\x6d\\xe1\\x1b\\x65\\x2b\\x59\\xb8\\xd7\\x78\\x99\\x4d\\x40\\xd9\\x88\\xd7\\x6c\\x6b\\x2b\\x4a\\x22\\xe2\\x8d\\xab\\xc8\\xeb\\x4c\\xac\\x06\\xd9\\x62\\x6e\\x24\\xbd\\xbe\\x09\\x66\\x0a\\x00\\x8c\\xc2\\x54\\xf0\\x22\\x9f\\x7d\\x69\\x65\\x58\\x60\\x44\\x82\\x82\\xbc\\x45\\x0f\\x3a\\xb5\\x08\\xa2\\x16\\x4a\\xa8\\x21\\xf6\\xda\\x08\\x4c\\xd4\\x44\\x20\\x63\\x3a\\xa6\\x08\\x77\\x44\\x32\\x75\\xd8\\xbf\\x84\\x1c\\xce\\x2e\\x82\\xbd\\x99\\x8d\\xfa\\x50\\x41\\xe9\\x27\\x98\\x97\\x6a\\x24\\x39\\x73\\x17\\xd2\\xcd\\x20\\x46\\xbf\\xde\\x5d\\x62\\xb7\\xa4\\x30\\xe6\\x76\\x07\\x25\\xa8\\xcb\\xcd\\x0f\\x99\\x47\\x1a\\xac\\x58\\x03\\xc1\\x00\\x9e\\x05\\xcf\\xda\\x20\\x84\\x57\\x36\\xa6\\x8a\\x3c\\x0f\\x31\\xc4\\x15\\x70\\xc9\\x2e\\xb1\\x32\\x82\\x05\\xeb\\x98\\xe1\\x77\\xf7\\xe1\\x52\\x0d\\x16\\x60\\xa6\\x64\\xc4\\x82\\xf1\\x59\\xc7\\x7d\\x11\\xef\\xea\\xfe\\x6e\\xed\\xad\\x3b\\x44\\x62\\x5f\\x02\\x4e\\x53\\x0c\\x66\\xd7\\xf4\\xeb\\x3b\\x8a\\x09\\x9d\\xba\\x1c\\xbe\\x09\\x24\\x88\\x94\\x4e\\x61\\xa3\\x14\\xc6\\x95\\x0a\\x4a\\xe3\\x64\\x62\\xb0\\x5c\\xf8\\x40\\xa3\\x40\\x8d\\x2b\\xdb\\x75\\xfa\\x5e\\x25\\x9b\\x83\\x1e\\x88\\x61\\x64\\xaa\\x31\\x04\\x53\\x43\\xa3\\x57\\x53\\x8f\\x15\\xba\\xa2\\x02\\x72\\xf9\\x6a\\x45\\x38\\xe6\\xdf\\xd1\\xd9\\xda\\x01\\x42\\x07\\x91\\xda\\x51\\xc8\\x9a\\xf1\\xd8\\xa3\\x46\\x90\\xb0\\xd5\\x71\\x60\\xdd\\xee\\x7a\\x95\\x44\\x48\\x3c\\x70\\x8a\\x24\\x42\\xe3\\xb3\\x54\\x53\\x76\\x2b\\xae\\x3f\\xa3\\x91\\x86\\xcf\\x69\\x8d\\x59\\x99\\x41\\xc9\\x29\\xc6\\x98\\xc6\\xf6\\x08\\x74\\xf9\\x0c\\xb3\\x60\\xb0\\x24\\xee\\x82\\x2a\\x55\\x72\\x1b\\xaa\\x84\\x98\\x9e\\x54\\x69\\x24\\x3a\\x9f\\xb7\\xd4\\xc6\\xe2\\x9a\\x99\\x5b\\xce\\x38\\xec\\x76\\x57\\x03\\x8c\\xe4\\x8e\\xc3\\xa5\\x5d\\x19\\x94\\x4e\\x80\\x9c\\x8b\\x56\\xed\\x60\\xa8\\xec\\xe5\\xb9\\xa9\\x07\\x76\\x6d\\x3e\\x40\\x10\\xc1\\x2f\\x62\\xa4\\xb5\\x14\\x8b\\x3b\\xd0\\x13\\x9e\\x3a\\x44\\xc8\\xd7\\x00\\x89\\x9e\\x61\\x4e\\x33\\x7d\\x50\\x84\\x8e\\x26\\x48\\xde\\x28\\x44\\x60\\xcb\\xb9\\x18\\x32\\x70\\x7e\\x8d\\xa3\\xab\\x1b\\x60\\x24\\x71\\x02\\xc4\\x2f\\xa3\\x20\\x23\\x71\\x62\\xd1\\x99\\x11\\xf2\\x20\\x76\\xe0\\xda\\x1d\\x71\\x33\\xf5\\x05\\xb3\\xc5\\x89\\x32\\x99\\x04\\x4b\\x9b\\x49\\x39\\xa0\\xac\\x41\\x85\\x86\\x34\\x36\\x54\\xe3\\x40\\xce\\x35\\x64\\x3a\\xc5\\x38\\xe2\\xc4\\x47\\xcd\\x22\\xda\\x63\\x1b\\x16\\x97\\x0f\\x60\\x0d\\x55\\x21\\xeb\\x1a\\x3b\\xec\\xa2\\xee\\x49\\x2f\\xa4\\x8e\\x80\\x3c\\xaf\\xb8\\x0f\\x09\\x34\\x5f\\x4a\\x18\\xc0\\xa6\\xc9\\xe1\\x33\\xe4\\x0e\\xa3\\xd5\\xed\\x2b\\x50\\x77\\x0c\\x0d\\x33\\x08\\x41\\x7f\\xa7\\x49\\xcd\\xde\\x5e\\x6e\\xc5\\x46\\x25\\xf8\\x7c\\xfa\\x3d\\x66\\xec\\xc5\\x22\\xc7\\x98\\x5b\\xd2\\x73\\x3d\\xfc\\xc0\\xa3\\xcc\\x2d\\xb6\\x3a\\xa6\\x8b\\x4d\\xe8\\xb1\\x00\\x02\\xe7\\xc4\\x28\\x3a\\x9c\\x95\\xde\\xec\\x24\\xf1\\x79\\x96\\xc9\\xde\\x87\\x26\\x79\\x11\\xe6\\x45\\x10\\xdc\\xac\\x69\\x94\\x73\\x80\\x7a\\xa6\\x80\\xcf\\x0a\\xb8\\x38\\x6c\\xff\\xb1\\xcc\\x7e\\x9e\\x91\\x81\\x69\\x74\\xc2\\x17\\x60\\x64\\x61\\x8b\\xd6\\x8b\\x2b\\xed\\x04\\x54\\xc0\\x9b\\x70\\xd5\\x22\\x96\\xd9\\x7c\\x36\\x48\\x2b\\x87\\xc2\\x05\\x76\\x61\\xad\\xce\\xe5\\x82\\x21\\xbc\\x30\\x78\\x5e\\xbd\\x60\\x3c\\x72\\x8f\\x11\\x49\\x17\\x23\\x2c\\x7e\\x58\\x66\\xe5\\x9e\\xfd\\x34\\x2b\\x43\\x43\\x13\\xe9\\x55\\x50\\x71\\x8e\\x44\\x7a\\x61\\xa4\\x7c\\x58\\x5d\\xb9\\xa1\\x24\\x72\\x08\\xa9\\xd7\\x2b\\x89\\x11\\x3e\\x14\\x16\\x54\\xec\\x19\\x4d\\x03\\x82\\xc1\\x54\\x99\\x74\\xaf\\xb9\\x30\\x35\\x8f\\x8e\\xa0\\xa4\\x2c\\xae\\x12\\x76\\x0c\\x91\\x28\\x44\\x36\\x46\\xcb\\x1b\\xab\\x38\\xfb\\x57\\xdd\\xdf\\x1d\\x26\\x79\\x5d\\x3f\\x6a\\xa8\\x48\\x08\\x6d\\x00\\x02\\xdc\\x88\\x76\\x33\\x85\\xb5\\x38\\x33\\x2d\\xe1\\x0d\\xe0\\x01\\xa9\\x48\\x07\\x94\\x80\\x85\\x4d\\x3b\\xca\\xa3\\x82\\xa9\\x6d\\x88\\x6b\\x11\\xd8\\x46\\x8d\\xd1\\xe3\\x70\\xac\\x60\\x97\\x2e\\x88\\xd4\\xf1\\x9b\\x25\\xc0\\x24\\xdc\\x38\\xda\\x60\\x02\\x32\\x64\\x9b\\xa2\\x04\\xad\\xd4\\xc0\\xf9\\x3d\\xc8\\xdb\\x95\\x24\\x77\\x21\\xf3\\x2a\\x58\\x91\\x4b\\x10\\x50\\x1b\\xc7\\xfa\\x73\\x20\\x73\\x92\\xd7\\x07\\x11\\xaf\\x11\\x2d\\x88\\xcd\\x30\\x55\\x62\\x50\\x7e\\x82\\x90\\x91\\x4c\\xbf\\xf9\\xe6\\x6b\\x10\\xa0\\x8f\\x63\\x07\\xdd\\x14\\x13\\xa0\\xe2\\x08\\x05\\x57\\xdb\\x7a\\x24\\xf6\\x1b\\xda\\x14\\x21\\x0a\\xa9\\xbc\\x56\\xf4\\x3c\\x35\\x1c\\x6e\\xff\\x03\\x9e\\xaa\\xf9\\xb4\\x81\\xe7\\xbf\\xe9\\xf1\\x2f\\xc6\\x1b\\x50\\xd7\\x20\\x65\\xc0\\xb9\\xa3\\xa9\\xcd\\xde\\xe9\\x8a\\xb2\\xd2\\xb4\\xfa\\xf4\\xc6\\x57\\x07\\xc7\\xe6\\xc0\\x76\\xba\\x81\\x75\\x81\\xf7\\x82\\xed\\x06\\x26\\x3f\\x2d\\x76\\xba\\xa6\\x67\\x78\\x2a\\xf0\\xe3\\x06\\x99\\xbe\\x26\\xf0\\x69\\xbc\\x1b\\x93\\x95\\x61\\xde\\xab\\x40\\x01\\x00\\x00\\xff\\xff\\x97\\xe3\\x57\\xcc\\x87\\xe0\\x00\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_eot() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_eot,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.eot\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_svg = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xec\\xbd\\x79\\x97\\x65\\xc7\\x71\\x1f\\xf8\\x7f\\x7d\\x8a\\x34\\x3c\\xe3\\x33\\xdb\\x13\\x32\\xf6\\x0c\\x4b\\x90\\x87\\x26\\x69\\x3d\\xda\\xb7\\x44\\x5d\\x2b\\xf5\\x6c\\xd7\\xac\\x8d\\x46\\x13\\x6c\\xab\\xd1\\x0d\\x75\\x03\\x5c\\x3c\\xcb\\x67\\x9f\\x13\\xbf\\xbc\\x0f\\x60\\x17\\xeb\\x15\\x74\\x4c\\xe9\\x0f\\x8d\\x74\\xfa\\x9c\\xbe\\xb7\\xde\\xdd\\x72\\x8b\\x88\\x5f\\x44\\xc6\\xf2\\x27\\xff\\xea\\x37\\x5f\\xbd\\x69\\xbf\\x7a\\xf5\\xfe\\xc3\\xeb\\x77\\x6f\\x3f\\xfb\\x84\\xfe\\xa8\\x7f\\xd2\\x3e\\x7c\\xf3\\xe2\\xed\\x17\\x2f\\xde\\xbc\\x7b\\xfb\\xea\\xb3\\x4f\\xde\\xbe\\xfb\\xe4\\x5f\\xfd\\xe9\\xdd\\x9f\\xfc\\xb3\\x9f\\xfc\\xfc\\xc7\\xf3\\x3f\\xfd\\xc5\\x4f\\xdb\\x87\\x5f\\x7d\\xd9\\xfe\\xe2\\xaf\\xfe\\xf5\\xf6\\xb3\\x1f\\xb7\\x4f\\x4e\\x9f\\x7e\\xfa\\x1f\\xe4\\xc7\\x9f\\x7e\\xfa\\x93\\xf9\\x93\\xf6\\x97\\x97\\x3f\\x6b\\xf4\\x47\\xf4\\xe9\\xa7\\x3f\\xfd\\xf3\\x4f\\xda\\x27\\xbf\\xfc\\xe6\\x9b\\xaf\\xff\\xe5\\xa7\\x9f\\xfe\\xfa\\xd7\\xbf\\xfe\\xa3\\x5f\\xcb\\x1f\\xbd\\x7b\\xff\\xe5\\xa7\\x7f\\xf6\\xfe\\xc5\\xd7\\xbf\\x7c\\xfd\\xf2\\xc3\\xa7\\x7f\\x79\\xf9\\xb3\\x4f\\xeb\\xc6\\x9f\\xcc\\x9f\\x7c\\xfa\\xe1\\x57\\x5f\\x12\\xfd\\xd1\\x17\\xdf\\x7c\\xf1\\xc9\\x9f\\xde\\xfd\\x49\\xbd\\xf9\\x37\\x5f\\xbd\\x79\\xfb\\xe1\\xb3\\x27\\x1e\\xe7\\xde\\x7b\\xdd\\x5e\\x37\\x7e\\xf1\\xea\\x17\\x1f\\xda\\x9f\\xde\\xfd\\xc9\\x2f\\xde\\xbd\\xfd\\xa6\\xbd\\xfe\\xe2\\xb3\\x4f\\xfe\\xfd\\xbb\\xcf\\xdf\\x7d\\xf3\\xee\\xfe\\xdd\\xdb\\x77\\x9f\\xb4\\x5f\\xbe\\x7b\\xff\\xfa\\xbf\\x9c\\x5e\\x7c\\xf1\\xab\\xd3\\x6f\\x3e\\xfb\\x84\\x58\\xfa\\x27\\xed\\x4f\\x71\\xe7\\xe9\\x17\\x2f\\x5e\\xbe\\xba\\x6b\\xad\\xb5\\xe3\\xaf\\xaf\\x5e\\xbf\\xf9\\xed\\xf5\\xd9\\x86\\x87\\x71\\xf5\\xdb\\xb7\\xaf\\xbf\\xf9\\x70\\xfa\\xfa\\xd5\\xfb\\xd3\\xab\\xaf\\x3e\\xfb\\x84\\xbb\\x8e\\xf5\\xfb\\xd7\\x2f\\xde\\xbe\\xfb\\xf0\\xea\\x44\\x9f\\x7d\\xd2\\xdb\\xef\\xfd\\x5b\\xb7\\xbc\\xf8\\xf0\\xf2\\xd5\\xdb\\x6f\\x3e\\xfb\\x84\\x49\\x7d\\xfd\\xf2\\xc5\\xab\\xe3\\xa7\\x93\\x99\\x1d\\x37\\xbd\\xf9\\xfa\\x97\\x2f\\x3e\\x7f\\xf5\\xcd\\xeb\\x97\\x9f\\x7d\\xd2\\x3f\\x69\\x9f\\xfe\\xe9\\xdd\\x9f\\x7c\\xf9\\xe6\\xb7\\x5f\\xff\\xb2\\x3e\\xfc\\xf2\\xdd\\x17\\xaf\\x3e\\xfb\\xa4\\x7d\\xd2\\xf0\\xcb\\xe9\\xed\\x8b\\xaf\\x5e\\x7d\\xf6\\xc9\\x87\\xaf\\x5f\\xbc\\x7c\\xf5\\x7b\\x1d\\xe3\\x7c\\xf2\\xd9\\x7f\\xf6\\xf1\\xb3\\xaf\\x7e\\xf3\\xf2\\xcd\\x8b\\xaf\\x9e\\x7c\\xf8\\x8b\\xcf\\x3e\\xb9\\xf7\\xec\\x4d\\x83\\xce\\xd6\\xf5\\x42\\x6a\\x7e\\xf6\\xec\\x17\\x0d\\x7a\\xb8\\xd7\\xe1\\x2d\\x63\\xaf\\x03\\xa9\\x35\\x23\\x6d\\x14\\x31\\xbd\\xf7\\xc6\\x3d\\x77\\xb7\\xa8\\x63\\xf3\\xba\\x1e\\x31\\x83\\x70\\x7b\\x1d\\x8c\\x9a\\x8f\\xba\\x8a\\x9b\\x4f\\x44\\xbb\\xa9\\xd4\\xb1\\x19\\x59\\xfd\\xbc\\x5e\\xfd\\xf0\\x64\\xf3\\xff\\xc5\\xdf\\x7c\\xfb\\xee\\x9b\\x3f\\xfe\\xb8\\x0f\\xf5\\xd3\\xab\\x2f\\x3e\\x7f\\x73\\xb3\\x17\\xd6\\xad\\x91\\x72\\x6c\\x3a\\xb4\\x51\\xb7\\x38\\x8b\\xe9\\x26\\x56\\xbf\\x12\\x5d\\xc8\\xc4\\xcf\\xd6\\xed\\x52\\xf7\\x3c\\xdc\\x0f\\xe7\\x75\\xf7\\x50\\x5a\\x77\\x07\\xf1\\x16\\x24\\xbf\\x73\\xf7\\x70\\xd9\\xae\\xf7\\x3d\\xdd\\xd0\\x7f\\xfe\\x71\\x1b\\xdf\\x7e\\xfb\\xd5\\xe7\\x45\\x42\\x5f\\xbe\\xbd\\xd9\\xca\\xe8\\xd1\\x94\\xfa\\x59\\x55\\x36\\x71\\x69\\xfd\\xcc\\xdc\\x37\\xe9\\x1d\\xbf\\x3a\\x5d\\x4c\\xe3\\x2c\\xec\\x9b\\xa4\\xb5\\xec\\x74\\x26\\x89\\x0b\\x75\\xed\\x67\\x65\\xde\\xac\\x6b\\x5b\\x33\\xa4\\xb1\\x99\\x5b\\xc3\\x95\\xc1\\xb9\\x25\\xd1\\xba\\x42\\xdd\\x74\\xcb\\xe0\\x75\\x89\\x28\\xe2\\x52\\xaf\\x49\\xb5\\x6d\\x84\\xb7\\x7a\\x3d\\x51\\xe7\\x4b\\x7d\\x6e\\x58\\xdf\\x22\\x7a\\xeb\\x67\\xe7\\xd8\\x8e\\xa6\\x3d\\xdc\\xab\\x27\\xee\\x0b\\x91\\x6d\\x74\\xbe\\xab\\xe7\\x4d\\xc6\\x76\\xfc\\xfe\\xf4\\x50\\xfc\\x37\\x1f\\x0f\\xc5\\x17\\xef\\xde\\xbc\\x79\\xf1\\xfe\\xe6\\x30\\x64\\x8f\\x26\\x61\\x7b\\xf6\\xd1\\xd4\\xbd\\xd5\\x2c\\x98\\xd0\\x74\\xf6\\xe6\\xaa\\xbb\\x89\\x34\\x0f\\x69\\x6a\\xa3\\x05\\xd1\\x14\\xe9\\x6d\\x74\\x9a\\xac\\xd1\\x92\\x79\\x32\\x8d\\x46\\x3d\\x72\\xc7\\x09\\xb9\\x34\\x56\\x69\\xc4\\x42\\x53\\xc8\\x1a\\x89\\xe6\\x54\\x1e\\x8d\\x54\\x68\\x5a\\xd4\\xf2\\x0d\\xbe\\x90\\x27\\x9f\\x83\\x6b\\x0d\\x04\\xef\\x23\\x6b\\xb2\\x35\\x5b\\xd6\\xf2\\x15\\xa1\\x49\\x7d\\xf4\\x46\\xbd\\x8f\\xf3\\x48\\xdf\\x47\\x7a\\x7d\\xc3\\xda\\xa8\\x5f\\x49\\x68\\x0e\\xe1\\x3b\\x62\\x1e\\x33\\x4c\\x1b\\x71\\xf2\\x74\\xcd\\x46\\x42\\xb6\\x5b\\x7d\\xac\\x3e\\x5d\\xbd\\x21\\x36\\x9e\\xda\\xa5\\x51\\x1f\\xbc\\xaf\\x13\\xe1\\xa6\\x94\\x2d\\x53\\x66\\x8d\\x63\\x75\\xc2\\x6c\\xb4\\xe1\\x32\\x8b\\xfe\\x46\\xcf\\x3d\\x86\\xb6\\x88\\xd1\\x86\\x65\\x0b\\xed\\xb3\\xda\\xe5\\x56\\xcd\\x72\\x6b\\x26\\x32\\xa9\\xa7\\x34\\x89\\xd8\\x71\\xc2\\x59\\x8d\\x75\\x6f\\xcc\\x34\\x73\\xd4\\x80\\xc8\\x1c\\x1e\\x8d\\x65\\x46\\x1f\\xed\\x44\\x7e\\x39\\x71\\x1f\\x67\\xb3\\xbc\\x9c\\xa8\\xc8\\x98\\xda\\x29\\x6b\\x8e\\x1b\\xe5\\xe4\\x51\\xcd\\xea\\x93\\xd2\\x1a\\x8b\\x4d\\x72\\x6e\\xca\\x79\\x16\\x8d\\x5d\\x34\\x9a\\xa8\\x35\\x09\\xbe\\xe3\\xec\\x53\\xc5\\x1b\\x77\\x9a\\xc6\\xde\\xc8\\x74\\x3a\\x47\\x23\\xed\\xbb\\x67\\x51\\x47\\x6f\\xa1\\xda\\xc8\\xbc\\x06\\xa8\\x71\\xe7\\x39\\x8a\\xf4\\xc3\\xe7\\x31\\xcd\\x4f\\xaf\\x98\\xff\\xf6\\xe3\\x15\\xf3\\xf5\\xab\\xf7\\xc5\\x24\\x6f\\x2e\\x99\\xfa\\x04\\xa5\\xee\\x75\\xe4\\x62\\x2f\\xd4\\x48\\x3a\\x4f\\x22\\x6e\\x24\\x29\\x93\\x12\\x5c\\x4a\\xa7\\x80\\x16\\x22\\x76\\x89\\xc0\\x49\\x53\\xb4\\xd7\\x6c\\x5a\\x5d\\xaa\\x9b\\xad\\xe8\\x5a\\xba\\x4c\\xc3\\xe4\\xa6\\x5e\\x88\\x28\\x76\\xfc\\xd5\\xbd\\x37\\x73\\x8c\\x4e\\x4e\\x23\\x6e\\x59\\xfc\\x8a\\x31\\x31\\x53\\x48\\xda\\x10\\xdf\\x59\\x47\\x1d\\x1b\\x65\\xfd\\x3e\\x26\\x91\\xb4\\xa4\\x9c\\xf5\\xde\\x7a\\x4e\\xf5\\xae\\xde\\x78\\xa9\\x77\\x3f\\xdc\\xd3\\xe0\\x86\\x0f\\xe0\\xa4\\xd7\\x82\\x1b\\x59\\x7c\\x67\\x4c\\x26\\x3c\\x11\\x93\\x8d\\x5b\\x06\\xe1\\x0b\\x69\\x35\\x09\\xa3\\x8e\\x35\\x09\\x2d\\xa3\\x4f\\x5d\\x37\\xfa\\x54\\x59\\x0c\\x6e\\xaa\\xae\\xb7\\x5e\\x8e\\x81\\xe1\\x46\\xcc\\xd6\\x54\\xac\\x86\\x48\\xd7\\x13\\xd2\\x7d\\xd6\\x2b\\x48\\x94\\xd7\\xd0\\x88\\xf9\\xce\\x45\\x13\\x62\\xde\\xea\\xab\\x24\\x2a\\xab\\x1d\\xd2\\x63\\xa2\\x65\\x6c\\x36\\x57\\xa3\\x8f\\xa1\\x79\\xb8\\xf7\\x5a\\x10\\x32\\x76\\x1c\\xd3\\x9a\\xd7\\x82\\x51\\x9f\\x41\\xda\\x4c\\x7c\\x46\\x8e\\x3b\\xcb\\x98\\x49\\xd2\\x9c\\xfb\\x9e\\x91\\x75\\x6c\\xd4\\x39\\x9b\\x65\\x0d\\x11\\x09\\xee\\x24\\x72\\xc5\\xa3\\x54\\x9f\\x10\\x19\\x17\\xf6\\xbe\\xe3\\x0f\\x2e\\x62\\xa1\\xe2\\x6c\\xc6\\xeb\\x01\\xaf\\x75\\x2f\\xbd\\xf1\\x4c\\xb2\\x76\\x62\\xda\\x87\\x66\\x1d\\x5b\\x64\\x36\\xc2\\xe7\\x9d\\xa7\\xd7\\x84\\x59\\x51\\xa4\\x35\\xf6\\x7e\\x11\\x19\\x0f\\xf7\\x31\\xa4\\xfe\\xd8\\x71\\xe4\\x6c\\x91\\x25\\xb8\\xfa\\x1c\\xe0\\xf3\\x39\\x47\\xd1\\x31\\x09\\xde\\x9c\\xb9\\xa7\\xf5\\x96\\xd9\\x32\\xea\\x57\\x9e\\xd4\\x4b\\xde\\xe9\\xa8\\xef\\x3b\\x9e\\xa3\\xae\\x72\\x7d\\xfb\\x5e\\x7f\\xdc\\x89\\xd7\\x34\\x8a\\x37\\xa9\\x0e\\xd6\\x03\\xaa\\x39\\xb3\\x58\\xd7\\x30\\x0c\\x85\\x66\\xee\\xa3\\xd6\\x60\\x66\\x1b\\x56\\xbf\\x3b\\xbe\\xaf\\xd6\\x67\\xb5\\xa7\\x1e\\xac\\xf6\\x1d\\xc3\\xf0\\x70\\x2f\\x39\\x1a\\x8d\\xb1\\x71\\x11\\x91\\xf5\\x0d\\x8d\\xe4\\x11\\x5b\\xd6\\xb0\\x30\\xdb\\x76\\xdc\\x71\\x43\\x78\\xbe\\xf8\\xea\\xeb\\x47\\xb2\\xf3\\xc5\\x57\\x5f\\xbf\\x7a\\xff\\xe1\\xc5\\xdb\\x2f\\x6e\\x12\\x17\\x81\\x50\\x65\\xaf\\xa3\\x6a\\x6f\\xc4\\xd5\\xe0\\x5a\\x0b\\xd2\\xbc\\xcb\\x64\\xcf\\xe6\\x19\\x53\\x46\\x6f\\x31\\x6c\\x07\\x15\\x84\\x37\\x0e\\xad\\x35\\x3a\\x59\\x30\\x64\\xbe\\xe3\\x84\\x89\\x1a\\x5b\\xad\\xa2\\xf0\\x29\\x52\\xeb\\x6a\\xf8\\x54\\xb5\\x45\\x9f\\x06\\xc6\\x1b\\xb1\\xbb\\xeb\\xa2\\xcf\\xe0\\xe2\\x23\\xc6\\x73\\xd4\\x7a\\x91\\x61\\x73\\x14\\x77\\xe2\\x51\\x2c\\xc4\\x6a\\x41\\x8c\\x7d\\x9d\\x90\\xdd\\x0d\\xf0\\xbd\\xe0\\x39\\x4a\\x18\\x64\\x9f\\x31\\xa8\\x25\\x8d\\xe9\\x18\\x61\\xda\\xbc\\x5b\\x8b\\xa0\\x2d\\x89\\x9b\\xd4\\x93\\x1a\\x4d\\x85\\x5b\\x7a\\x34\\xeb\\x03\\xbc\\xd2\\x83\\xcf\\x44\\x66\\x7b\\xfd\\xd7\\x0c\\xcc\\x85\\xb2\\x48\\xa7\\x66\\x91\\x1b\\x4b\\x6c\\x44\\x59\\x02\\x3a\\x83\\xb7\\x51\\x34\\x41\\x7d\\x1f\\xc5\\xe1\\xab\\xbd\\xc5\\x6a\\xa6\\x49\\x2d\\xc4\\xbe\\xd7\\x88\\x9d\\xb8\\x37\\xf1\\xde\\x72\\x32\\x6b\\xcb\\x3e\\x49\\x46\\x63\\xd2\\x79\\x0c\\xed\\xc3\\x7d\\xdd\\x4d\\xd2\\x77\\x2f\\xfe\\x2b\\xbd\\x79\\x91\\xa0\\x15\\xdd\\x64\\x63\\xe9\\x9b\\x86\\x37\\x77\\xda\\x54\\x47\\x73\\x89\\xbd\\x66\\xd9\\xd2\\x9b\\x78\\xdc\\x99\\xc5\\x14\\xee\\x4d\\x87\\x4e\\xce\\xd1\\x94\\x69\\x72\\x32\\xe6\\x0c\\x47\\xe6\\x26\\x7d\\x34\\x8e\\x31\\x0b\\xf2\\x14\\xb3\\xae\\x2e\\xd7\\x22\\x3f\\xbe\\xfb\\x70\\xaf\\x35\\xb8\\xc4\\x63\\xc7\\x49\\x8f\\x22\\xdf\\x82\\x10\\xd5\\x13\\xb2\\x36\\xb2\\x6f\\x5e\\xc3\\x34\\x64\\xf7\\xc5\\xfe\\xb4\\x39\\xa4\\x04\\x07\\xc8\\x8c\\x7a\\xc8\\x0c\\xae\\xa1\\x60\\x9a\\x81\\x39\\xf7\\xb1\\xaf\\x93\\x1c\\x2d\\x18\\x0b\\xd4\\xa7\\x67\\xac\\xc9\\x77\\x70\\x17\\xa2\\x35\\xe7\\xc2\\xb6\\x9b\\x75\\x9c\\x34\\x2b\\xc9\\x2d\\xc5\\x29\\x6b\\x15\\xb0\\x17\\x5f\\xa3\\x46\\xdc\\x75\\x2a\\xf7\\xbb\\x6a\\xe8\\xad\\x05\\xfe\\xf5\\xbb\\x0f\\x4f\\xa1\\xc3\\x0f\\xaf\\xdf\\x7e\\xf9\\xe6\\x69\\x8c\\x0c\\x98\\x6b\\xb5\\xec\\xd8\\xd0\\x49\\x40\\x3e\\x4d\\xdd\\x34\\x6b\\x55\\xf6\\x5c\\x90\\xcf\\x4d\\x0a\\x20\\xde\\x90\\x58\\xff\\xdd\\x23\\x89\\xf5\\xe2\\xfd\\xab\\xb7\\x6f\\x5e\\xfd\\xe2\\xb6\\xcc\\x12\\x8b\\x66\\x49\\x7b\\x1d\\x6b\\x94\\x24\\xb2\\x0d\\xef\\x13\\x24\\xd6\\x4b\\x0c\\x95\\x60\\x2a\\x09\\xeb\\xd5\\x77\\xd5\\x31\\xa3\\xf0\\xa8\\xb9\\xcf\\xa1\\xde\\xc8\\x55\\xb6\\x31\\xc0\\x0d\\x69\\x1f\\x0c\\xba\\xd1\\x16\\x7e\\x88\\x3c\\x0c\\x2f\\x65\\x4c\\x0b\\x69\\x59\\x50\\x47\\xb9\\x59\\xca\\xc5\\x22\\xf7\\x3a\\x97\\xe4\\x66\\xc1\\x8d\\x95\\xa6\\x1b\\xb5\\x13\\xfb\\x0c\\xaf\\x23\\xeb\\xac\\x17\\x9f\\xc4\\x0a\\x03\\x7b\\x3b\\x69\\xf4\\x3d\\xd2\\xef\\x4e\\x25\\x47\\xaa\\x15\\x27\\x49\\x45\\xbb\\x4e\\x35\\x93\\xd5\\xd2\\x13\\xd1\\x40\\xdb\\x6b\\x95\\x8d\\xde\\x84\\x78\\xa2\\x8b\\x83\\x2e\\x96\\xf4\\xf4\\xa0\\xfd\\xf7\\x4f\\x0c\\xda\\xfb\\xd7\\x5f\\xfe\\xf2\\xf6\\xa8\\x15\\x7f\\xb7\\xb1\\xf8\\xbc\\xca\\x68\\x83\\x03\\x9f\\x0a\\xf7\\x16\\x39\\x3d\\xb2\\x5a\\x52\\x9d\\x2e\\x79\\x10\\x36\\xd5\\xab\\x23\\x29\\x53\\x2c\\xd1\\x91\\xad\\x68\\xa5\\xba\\xb6\\xcb\\xe0\\x76\\x2a\\xa9\\xa7\\xa5\\x7e\\x30\\xe7\\x34\\xab\\x93\\x9c\\xb5\\x0a\\x58\\x3b\\x04\\x87\\x45\\x5e\\x2c\\xd7\\xb2\\x8f\\xd1\\x5b\\xf5\\x3a\\x85\\xa7\\x15\\xbc\\x2b\\x40\\x53\\xcd\\x20\\xed\\x0c\\x22\\x24\\x93\\xbe\\xd5\\xa7\\x6a\\x7a\\x76\\xed\\x79\\x47\\x0e\\xe4\\xa7\\x6b\\xe6\\xac\\xe4\\x47\\xcd\\xa5\\xc7\\x58\\xb3\\x5b\\x2d\\xa7\\x9e\\x3a\\x07\\x3b\\x16\\x00\\xba\\x98\\x74\\xb1\\x71\\x63\\xd4\\xfe\\x87\\x47\\x1c\\xfc\\xc3\\x37\\xaf\\xde\\xbf\\xfe\\xf0\\xd7\\xb7\\xb5\\x1f\\x89\\xa2\\xd5\\x8d\\xbc\\xb7\\x88\\xdc\\x98\\x8a\\x31\\xeb\\x66\\xb5\\xe2\\xba\\x6c\\x06\\x21\\xc2\\x7a\\x0e\\xe1\\x2d\\xba\\xb4\\xc8\\xd8\\x80\\x1e\\x53\\x8b\\xd3\\x71\\x6f\\xe1\\xb9\\x85\\x14\\x6b\\xb4\\x2d\\x53\\x9b\\x18\\x6d\\x43\\x47\\xad\\x9d\\xcd\\x45\\x9b\\x77\\xdd\\x94\\x19\\x32\\xa9\\xe0\\x83\\x98\\x6f\\xc7\\x67\\x9f\\xee\\xc3\\xff\\xf8\\x68\\xe6\\xdf\\x7c\\xfb\\xe1\\xb6\\x5e\\x44\\xb5\\xaa\\xe8\\x0c\\x38\\x63\\x59\\xea\\x58\\xbf\\x90\\xfa\\xd9\\xd8\\xf0\\x37\\x51\\x5e\\xea\\x86\\xfa\\x9b\\xb8\\x3b\\x6e\\x88\\x5b\\xc3\\xf7\\x3f\\x7d\\xfc\\xe9\\x97\\xef\\xbe\\xfa\\xea\\xc5\\x6d\\xc6\\xa0\\xd2\\x54\\xf6\\x3a\\x9c\\xb4\\xd5\\xba\\x38\\x15\\x54\\xcc\\x82\\xd0\\x16\\x13\\x8a\\x2b\\xe0\\x94\\x67\\x3b\\x89\\xf8\\x26\\xa6\\xb5\\xf0\\x6a\\xee\\xb9\\x18\\xbf\\xb4\\x1a\\x97\\x13\\xb1\\x02\\x92\\x69\\xbf\\x30\\xe5\\xd9\\x55\\x2e\\x7a\\x63\\x68\\x4e\\x1f\\xb7\\xef\\x97\\xbf\\xfd\\xfa\\x97\\xaf\\xde\\x1e\\xaa\\xd1\\x90\\x66\\x4e\\x67\\xa6\\x71\\x09\\x92\\x73\\x0e\\xb9\\x98\\xdf\\xe8\\xe7\\x1f\\xfd\\x1e\\x86\\x7e\\xfd\\xee\\xb6\\x94\\xd7\\x42\\xc8\\x25\\xaf\\xea\\x68\\xbd\\x41\\x65\\x2e\\xda\\x16\\x81\\x12\\x61\\x31\\x0a\\x0f\\x4e\\x57\\x6a\\xec\\xb2\\x7b\\x44\\x1d\\x5b\\x74\\xc5\\xef\\x61\\xbd\\x31\\xf3\\x2c\\x25\\xa5\\x9e\\x8b\\x52\\x3a\\xb8\\xe0\\xd5\\x68\\x49\\xb5\\xee\\x9a\\xfb\\x0c\\xa3\\x56\\xe2\\xa1\\x5b\\x3b\\x0d\\xbc\\xeb\\x44\\xb9\\x97\\x50\\x3e\\x51\\xb6\\xfa\\xc6\\x29\\xd7\\x27\\x69\\x5a\\x2f\\x15\\x67\\x1e\\x0d\\x7b\\xba\\x8f\\x9f\\x3e\\x32\\x84\\xbc\\x79\\xf1\\xe1\\x97\\xb7\\xbb\\x48\\x35\\x6b\\x6c\\x67\\x36\\xde\\x86\\xf7\\xab\\x52\\xcc\\xb6\\x5d\\x2f\\x3d\\xfd\\x95\\xfe\\xf1\\x57\\xfe\\xcb\\xab\\xf7\\xbf\\x6f\\x46\\xfa\\x1e\\x2d\\x8d\\xd1\\xcc\\x4a\\x0f\\x1b\\xa3\\x29\\x74\\x51\\xf3\\x56\\x72\\x2e\\x8b\\x09\\x48\\x21\\xcc\\x68\\x05\\x49\\xea\\x9b\\xdc\\x77\\xeb\\x01\\x84\\x00\\xc9\\x3b\\x26\\x47\\x49\\xba\\x9c\\x14\\xa3\\x09\\xf5\\x09\\xe3\\x8a\\xc5\\x65\\xe4\\xd8\\x09\\x32\\x59\\xa2\\x51\\x69\\x2f\\xa4\\x0a\\xf0\\x45\\xc2\\x3e\\xb5\\x5e\\xaa\\x52\\xaf\\xf5\\x85\\xa0\\x02\\x3a\\x6e\\x44\\x2b\\x60\\x42\\x2a\\x39\\xd3\\x65\\xdd\\x8c\\x26\\x11\\x69\\x01\\x9a\\x31\\xda\\xc8\\x71\\x31\\x8b\\x87\\x7b\\x11\\xba\\xb3\\xd4\\x6d\\x14\\x88\\xec\\x9c\\xfb\\x00\\xcc\\x0f\\x6d\\xa3\\x44\\x3c\\x6b\\xae\\xd7\\x97\\xb0\\xd6\\x38\\x84\\xb5\\xf6\\x6a\\x30\\xc7\\x14\\x70\\xc6\\xe2\\x96\\xfa\\x70\\x9f\\x9d\\xdb\\x30\\xde\\x44\\xbc\\x94\\xdb\\x5d\\x4c\\x0a\\x81\\x34\\x65\\x69\\x25\\xc7\\x7d\\x89\\xf8\\x3d\\x0a\\xb8\\x96\\x06\\x5f\\x93\\x2e\\x7d\\xd6\\x73\\x46\\xe3\\x32\\x8c\\x9f\\x9e\\x0c\\xfa\\x78\\x32\\xde\\xbd\\xbd\\x2d\\xd5\\x23\\xb4\\xf5\\xb3\\x8d\\xbc\\x10\\x73\\xdf\\xb8\\xc3\\x30\\x50\\x3c\\x42\\x75\\x8b\\x62\\xd2\\xb5\\x00\\x22\\xf4\\x72\\x63\\x79\\xf1\\xc7\\xdf\\xfa\\xe6\\xd7\\xcf\\xcd\\xbb\\x47\\xeb\\x67\\x22\\xb9\\x90\\xc8\\x66\\xd9\\x9b\\x17\\x99\\x98\\x42\\xba\\x17\\xea\\x89\\x91\\xe0\\xf6\\x23\\xfb\\x1c\\x5d\\x5a\\xc6\\x98\\x18\\xd7\\xee\\xba\\xe3\\x84\\x68\\x14\\xf3\\x85\\x96\\x33\\xa3\\x84\\x3c\\x97\\xa8\\x58\\x43\\x24\\xd3\\x2c\\x6a\\xc8\\x75\\x87\\x19\\x4b\\x58\\x1b\\x60\\x51\\x5d\\x12\\x28\\x78\\xb5\\x20\\x80\\x46\\xad\\xaf\\x75\\xd4\\x39\\xce\\xc3\\xf6\\x61\\x0b\\xc2\\x52\\x2d\\x92\\x52\\x56\\xb8\\xe7\\xd2\\xec\\xc4\\xe2\\x8e\\x54\\xfb\\x7a\\xb7\\x86\\xef\\x0e\\xc2\\x08\\x6f\\x51\\xaf\\x2c\\x4d\\x0c\\x8b\\x40\\xbc\\x16\\x70\\x89\\x3c\\x18\\x1b\\xfa\\x42\\x89\\xfb\\x71\\xd6\\xa3\\x7a\\xd3\\x52\\x75\\x26\\x65\\x1b\\x34\\xa0\\xef\\x7b\\xfa\\x0c\\x8e\\x66\\x61\\x58\\x08\\x64\\x74\\xae\\x81\\xba\\x35\\xde\\xf2\\x68\\xbc\\x7f\\xf9\\xfe\\xd5\\xed\\xd9\\x95\\xec\\x6d\\x50\\x9c\\x8d\\x79\\xb7\\xe4\\x3a\\x6f\\xa5\\xe1\\x8d\\xd2\\x37\\xc5\\xda\\x18\\x63\\x46\\x52\\x41\\xfb\\x39\\x08\\xba\\xfb\\xd8\\x71\\x42\\x69\\x2d\\x14\\x8a\\x70\\xc9\\x7c\\x3b\\x06\\x35\\xfd\\x18\\x54\\x1d\\x4b\\xdb\\x15\\x28\\x55\\xe6\\x4b\\x35\\xa6\\x08\\xe0\\x6a\\xea\\xa1\\xd5\\x8b\\x9d\\x7a\\x11\\x11\\xe6\\xa4\\x78\\x9d\\xf4\\xc9\\x52\\x34\\x61\\x63\\x4a\\x00\\xb2\\xe9\\x7a\\x3b\\x86\\x15\\x08\\x33\\xfc\\x0e\\x88\\xb8\\x14\\xbc\\x11\\x45\\x8d\\x41\\x8b\\x2c\\x59\\x79\\x66\\xe1\\xcd\\x5a\\x0c\\xeb\\x84\\x0b\\x6f\\x97\\x7e\\x1f\\x33\\x95\\xd7\\xb2\\x09\\x69\\x83\\xfa\\x8c\\xa0\\x16\\x1a\\xfb\\x28\\x3c\\xc6\\xda\\x4a\\x07\\xf1\\x11\\xb3\\xd4\\x40\\xef\\xa5\\x58\\x74\\x6b\\x56\\x0a\\x7b\\xa7\\x68\\x8a\\xc6\\x52\\x34\\xe9\\x8a\\x57\\x32\\x1b\\x10\\x5e\\xf2\\x0c\\xc9\\x56\\x83\\xe0\\x4b\\x5b\\xf1\\x43\\x5b\\xa9\\xf9\\x9f\\xa5\\x16\\x0f\\x9f\\x24\\xc5\\xb4\\x65\\x96\\xdc\\x1f\\x7a\\xe6\\xc8\\x9d\\x23\\x9b\\x70\\xb4\\xd2\\x37\\x78\\xf4\\x59\\x52\\xaf\\xd6\\x95\\x16\\x42\\xd5\\xf5\\x3e\\x12\\xda\\x9d\\xf2\\xae\\x1e\\xf7\\xc0\\xa2\\x9a\\x51\\xa3\\x95\\xb5\\xec\\xb9\\xf1\\x60\\x2c\\x12\\xed\\xbc\\xe3\\x18\\x35\\x9f\\xbd\\x19\\xe5\\x0c\\x8d\\xe6\\x7d\\xd9\\xd0\\xdc\\x68\\x1a\\x73\\x73\\x8f\\xb3\\x64\\xbf\\x0c\\xba\\x61\\x66\\xd4\\x8f\\x57\\xcf\\x2f\\xde\\x7d\\xfb\\x8c\\x91\\xb1\\xe6\\x79\\xe4\\x99\\x88\\xa3\\x34\\xf6\\x73\\xb2\\x5e\\xfa\\x39\\x24\\xf1\\x57\\xd8\\x45\\x35\\xb6\\x58\\xb6\\x21\\xc7\\x55\\x1d\\xf9\\x70\\xcf\\xa3\\xe3\\xb9\\xba\\x91\\x98\\xfa\\x16\\x1d\\xf4\\xa6\\xdb\\x71\\xe5\\xe9\\xa6\\xd9\\xa3\\xa6\\xbd\\xfe\\xd5\\xed\\x75\\xcd\\x05\\xa2\\x0b\\x45\\xc2\\x10\\x01\\x09\\xe5\\xfd\\x52\\x2a\\xd3\\x59\\x3d\\x37\\x18\\x9b\\xc6\\xd8\\x35\\x4a\\xb3\\x95\\x66\\x07\\x1e\\xad\\x21\\x4e\\xa3\\xbd\\x96\\x46\\x1a\\x95\\xb6\\xdb\\x92\\x7c\\xe6\\x08\\xd0\\x63\\x29\\x68\\xcd\\x5d\\x27\\x51\\x81\\x12\\xd7\\x1d\\x27\\xa5\\x97\\xc2\\x92\\xc9\\xb5\\x12\\xb3\\xd6\\xf9\\x98\\x05\\xed\\x28\\xa6\\xeb\\x5a\\x15\\xc5\\x1b\\x20\\xa1\\x62\\x34\\x9b\\x52\\xb0\\xbb\\xd6\\x7a\\x34\\xee\\x3e\\x69\\x44\\x93\\x21\\x67\\x71\\xd9\\x65\\xf4\\xbb\\x52\\xee\\xb5\\x10\\x65\\x1a\\x5e\\x50\\xcb\\x20\\x60\\x3f\\xa2\\x16\\x30\\xc4\\x28\\xde\\x0f\\xcb\\x64\\xef\\xad\\xe4\\x51\\xd2\\x68\\xea\\xbc\\xd7\\xd1\\x4a\\x18\\x64\\xa1\\xfc\\x9c\\xb5\\xbc\\x3d\\x09\\xb0\\x21\\xbc\\xc3\\xb6\\x18\\xc3\\x76\\x1b\\x54\\xc7\\x66\\x3a\\x0a\\x59\\x4c\\x1d\\x81\\xeb\\x2a\\xa5\\x4b\\xd1\\x94\\xd2\\xe2\\x93\\xb7\\x63\\x28\\x9f\\x9e\\x13\\x7f\\x84\\x1d\\x5e\\xff\\xe6\\xb6\\xd6\\x61\\x30\\x1f\\xc6\\x85\\x38\\xe9\\x3c\\xb4\\xef\\xa1\\x80\\xef\\xb4\\x34\\x75\\x8e\\xd2\\x07\\xea\\x17\\xee\\x13\\x9d\\x27\\x65\\xb4\\x82\\x7a\\x9d\\xe8\\x68\\xc9\\x79\\x58\\xaa\\x4b\\x16\\x7a\\x1b\\xda\\x1b\\x38\\x58\\x29\\xb7\\x2e\\x2d\\x69\\xbd\\x22\\x55\\xa6\\x6b\\x01\\x74\\xdb\\xc3\\xa4\\x8e\\xad\\xa8\\x23\\x49\\x67\\x3a\\xb7\\x01\\xea\\x2e\\x68\\x6d\\x7d\\x52\\x77\\x6a\\x1a\\xb6\\xe3\\x44\\x02\\xc6\\x64\\x69\\x3c\\x8a\\x58\\xe3\\x8e\\xd8\\xe7\\x28\\x26\\x55\\x62\\xbb\\xaf\\xa9\\x84\\xce\\xd6\\x61\\x8a\\x16\\x34\\xcc\\x6d\\x72\\x51\\xa5\\xe5\\xa4\\x2c\\x19\\x6d\\x93\\x4c\\x9b\\xd6\\x77\\x60\\x79\\x1f\\x17\\x67\\xdb\\xeb\\x1c\\x3a\\xbc\\x49\\x1b\\x6c\\xcb\\xa2\\xda\\x81\\x57\\x4a\\x5e\\x65\\x9f\\x5a\\x88\\x51\\xa4\\xcf\\x92\\x7d\\xa4\\x2c\\xb3\\xfa\\x58\\xc3\\x76\\x1e\\xe6\\x0f\\xf7\\x4e\\xda\\x46\\xa7\\xdd\\x3c\\xea\\xd8\\x8c\\x4b\\xa1\\x72\\xf0\\x8c\\x50\\x9d\\x12\\xda\\x3c\\x72\\x0a\\x8f\\x66\\x69\\x17\\x13\\xd9\\xeb\\xbc\\x26\\x55\\x8c\\x9a\\xb8\\x4c\\xa5\\x42\\x09\\x31\\xad\\x4b\\xa3\\x5a\\x10\\xb0\\x97\\x14\\x1a\\xc5\\xb7\\xef\\x56\\x0b\\xc7\\x1c\\x3d\\x5b\\x41\\x92\\x51\\xc3\\x22\\x3c\\x47\\x64\\x75\\x79\\xaf\\x23\\x16\\x58\\x29\\x76\\xc5\\x4f\\xa9\\x44\\xf3\\x98\\x51\\x8b\\x33\\x64\\x1e\\x6d\\x7c\\x7a\\xc1\\xc4\\xa3\\x05\\xf3\\xea\\x57\\xaf\\x6e\\x6f\\xe6\\x50\\x87\\x38\\x31\\xde\\x14\\x96\\x22\\xce\\xdc\\x6a\\xb9\\x13\\xa7\\x16\\xd7\\xb9\\x1c\\xa4\\x9d\\x7e\\xa9\\xbb\\x9e\\xfe\\xe2\\x78\\xb4\\x57\\xf7\\xac\\x6a\\x4c\\x3d\\x40\\xca\\x10\\x4c\\x09\\x8b\\x16\\x75\\xa2\\x36\\x8a\\xcf\\x5a\\xc9\\xf3\\xdc\\x93\\x18\\xb3\\x98\\x16\\xcd\\xb3\\x16\\x90\\x94\\xc0\\x28\\xee\\x50\\xe4\\x54\\x27\\x60\\x0a\\x29\\x8b\\x3b\\x70\\x02\\x9e\\x44\\x63\\x2a\\xe1\\x52\\x9c\\x67\\x0e\\xa6\\x76\\x60\\xf7\\x5a\\x50\\xd0\\x80\\x7a\\x53\\xcb\\x16\\x53\\x88\\x4b\\x62\\x70\\x4d\\x13\\xf9\\x2c\\x98\\x8a\\x77\\x45\\x1c\\x3c\\x41\\xf1\\x11\\x56\\xc1\\x57\\x85\\xfb\\x5d\\x35\\x43\\x99\\x5a\\x58\\xdf\\x6b\\x05\\x17\\x68\\x13\\xa9\\x69\\x88\\xc9\\xf8\\x22\\x4f\\x66\\x6f\\x19\\x32\\xb9\\xe4\\x70\\xf5\\x90\\x97\\x40\\xa6\\x63\\x6b\\x47\\x0d\\xe0\\x13\\xd2\\x14\\x9b\\x2c\\x5a\\x48\\x15\\x7a\\x79\\xf8\\x1e\\x72\\x20\\x9a\\x5a\\x15\\xb8\\x94\\xe0\\x4b\\x41\\x8b\\x92\\x88\\xb5\\x20\\xf1\\x31\\x7a\\x0f\\xf7\\xc5\\x85\\x24\\x03\\xdc\\x48\\x0d\\xf0\\xb8\\x59\\x4f\\x2c\\x67\\x2b\\x44\\x63\\xdc\\xdc\\x64\\xba\\x64\\xf3\\x90\\xdd\\xc2\\xb1\\x21\\x65\\x6c\\xf8\\x5d\\xa5\\x16\\x70\\x4c\\x29\\x6d\\xad\\xe7\\x14\\x17\\xbc\\x0f\\x47\\xd1\\x3b\\x29\\x09\\x3c\\x0c\\xf7\\xad\\x9d\\x13\\x83\\xd0\\xac\\x21\\x05\\xb7\\xec\\x07\\xb7\\xb4\\xc3\\x12\\xad\\x1d\\xf7\\x8d\\x8c\\xc6\\x43\\xe7\\xd1\\xbe\\x87\\xfb\\x31\\x96\\xdd\\x6d\\xc7\\x09\\x95\\x60\\xa8\\xce\\x53\\xe8\\x04\\xe6\\x67\\x93\\x19\\xd5\\x41\\xe9\\xb6\\x86\\xa3\\x70\\x8e\\x5d\\xc1\\xa3\\x69\\x5f\\x38\\x67\\x59\\xd9\\xac\\x94\\x08\\x5b\\x38\\x47\\x0a\\x84\\xd6\\x9b\\xd7\\x09\\x15\\x86\\x57\\xec\\x40\\xd4\\xbd\\x23\\x65\\x9a\\x52\\x1b\\xe0\\x55\\xbd\\xf8\\xc1\\xee\\x09\\xbe\\xd0\\xa2\\xa4\\x83\\x32\\x1a\\x30\\x92\\xe7\\x70\\xbf\\xab\\xe7\\xae\\x6d\\x7d\\x7a\\xa1\\xe7\\xa3\\xcd\\xd2\\xd7\\xcf\\xa0\\x7a\\xb0\\x39\\xd7\\x5d\\x83\\xeb\\xd8\\x4c\\x4b\\x9d\\xa2\\x09\\x8d\\x54\\x68\\x46\\xf4\\x26\\xdd\\xe7\\x90\\x5e\\xd8\\x62\\x0e\\xb7\\x66\\x24\\xe0\\x01\\x2e\\xb2\\x0f\\xab\\x25\\x5f\\xad\\xd5\\x66\\x11\\xd8\\xb0\\x33\\xe9\\xd3\\x7d\\x34\\xcd\\x9c\\xe6\\x05\\x0d\\x62\\x57\\xf3\\x3a\\x36\\x29\\xa9\\xc7\\x39\\xb9\\x98\\xa5\\xd2\\xa4\\x80\\x85\\x64\\x92\\x66\\xcb\\x82\\xc0\\x9a\\x4b\\x82\\x2e\\xa5\\xcc\\x7d\\x32\\x6c\\x70\\xa5\\x94\\x15\\x9b\\x52\\xb1\\xe9\\xbd\\xdf\\x2d\\x18\\x38\\xf4\\x40\\xd7\\x86\\x4d\\xd9\\x6a\\x16\\xcc\\xda\\x63\\x26\\xac\\xe2\\x20\\x4a\\x40\\x75\\x2f\\xaa\\x2c\\xa2\\xe9\\x72\\xec\\xf3\\x8d\\x11\\x97\\xc1\\x7d\\xc7\\x1f\\xc0\\x26\\xa5\\xc7\\xb9\\xd4\\x23\\x4c\\x4d\\x95\\xb0\\xb2\\x39\\x3a\\x88\\x94\\x60\\xc9\\xd2\\x26\\xc5\\x5b\\xa5\\x9d\\xe8\\x2c\\xa6\\x17\\x72\\x3d\\x2f\\x9b\\x73\\x6a\\x73\\xed\\x7b\\x2d\\xbb\\x9a\\x45\\x1f\\xb5\\x7c\\x6d\\x86\\x17\\x6f\\xc8\\x39\\x44\\x5b\\x78\\xc1\\xff\\x02\\x13\\x7c\\x49\\xe2\\xbd\\xce\\xa9\\xf7\\xc4\\x3e\\x64\\xf1\\x8c\\x19\\xa5\\x2a\\x16\\x3a\\x04\\x10\\xe2\\xd4\\xe9\\xa5\\x0f\\x4a\\x81\\x72\\xf1\\xbb\\x3a\\x69\\xf0\\x11\\xe0\\xac\\xf1\\x58\\xdb\\x50\\x53\\x6a\\xcc\\x88\\x0e\\x9d\\x71\\xf0\\x8e\\x63\\xad\\x6b\\x8d\\x36\\xac\\x16\\x60\\x41\\xf4\\x98\\xa5\\xbf\\x7a\\x94\\x4c\\x41\\x63\\x9f\\x5e\\x3d\\xff\\xf2\\xb1\\x45\\xe7\\xcd\\xbb\\xdb\\x8c\\xd9\\x74\\x19\\x3a\\x70\\xb4\\xde\\x80\\xd0\\xc3\\xa7\\x8d\\x65\\xe8\\x70\\x3e\\x0c\\x1d\\xb9\\x0c\\x1d\\x35\\xce\\x30\\x74\\xd8\\x32\\x74\\x8c\\xbe\\x0c\\x1d\\x83\\x97\\xa1\\x63\\xc8\\x32\\x74\\xd4\\x31\\xa9\\x0d\\x86\\xa1\\xa3\\x04\\x1c\\x17\\x70\\x59\\x86\\x8e\\x3c\\x0c\\x1d\\xb6\\x0c\\x1d\\xf5\\x8d\\x53\\xae\\x4f\\x12\\xc0\\xb2\\xdb\\x3c\\x1a\\xf6\\x80\\x16\\x66\\xfa\\x6a\\x61\\x67\\xaf\\x26\\xde\\x51\\x37\\xc6\\x03\\xd4\\x33\\xd0\\xc8\\x22\\x78\\xbc\\x99\\x48\\x12\\xcd\\xac\\x13\\xb4\\x13\\x97\\x06\\x34\\xb3\\x02\\xdb\\x0c\\x23\\x04\\xa3\\xa9\\xf5\\x62\\x1c\\x4b\\x0a\\x73\\xb6\\x2c\\x5a\\xed\\xd4\\x46\\x06\\x5a\\x3b\\x7c\\xbd\\x74\\x58\\xa0\\xb9\\xa3\\x24\\x05\\x38\\x4b\\xe0\\xf3\\x75\\x5f\\x35\\x38\\x95\\xe6\\xd1\\xd0\\xa7\\x27\\xe5\\x8f\\x1f\\x4b\\xcb\\xaf\\x5e\\xff\\xc0\\xc4\\x48\\xac\\x6e\\x17\\xc7\\x42\\xb7\\xd1\\xff\\xea\\x76\\xe8\\xd1\\x6d\\x10\\x46\\x75\\x1b\\x76\\x89\\xea\\x36\\xf6\\xf8\\xab\\xdb\\xa5\\xcf\\xd5\\xa5\\x52\\xf9\\x56\\xb7\\x29\\x8f\\x6e\\x57\\x37\\xab\\xdb\\x9c\\x47\\xb7\\x3b\\xba\\x1d\\xa5\\x34\\x56\\xb7\\xd5\\x57\\xb7\\x07\\xaf\\x6e\\xd7\\xdf\\xd5\\xed\\xd2\\x64\\xab\\xdb\\xa1\\xab\\xdb\\x1a\\xab\\xdb\\xab\\xa1\\x0f\\xf7\\x11\\x76\\xa7\\xb2\\x47\\x58\\x3b\\x15\\xad\\x28\\x8c\\x83\\x25\\x6e\\x60\\x1c\\x74\\xd8\\xa0\\x6d\\x51\\x04\\x8c\\x83\\x45\\x08\\x30\\x0e\\x9a\\xe8\\x32\\x0e\\x9a\\xe9\\x32\\x0e\\xd6\\x47\\x0e\\xe3\\x60\\x94\\xf6\\x71\\x83\\x51\\xfe\\x8b\\x37\\x8f\\x9d\\x5f\\xde\\xbc\\xfa\\x70\\xdb\\x74\\xaa\\xdd\\x9b\\xbb\\x6c\\x62\\xd2\\x5c\\x7d\\xc3\\xdf\\x3c\\xb6\\x42\\x6e\\x4d\\x92\\x2f\\x94\\xbe\\x51\\xf4\\xd2\\xd0\\x2f\\xc1\\xb4\\x2e\\x50\\xcf\\xbc\\x64\\x97\\xed\\x78\\xfc\\xe9\\xa6\\x7c\\xf6\\x08\\x9c\\xfc\\xcd\\xb7\\x2f\\x6e\\x7b\\xe0\\xc0\\x9c\\x1c\\xa3\\x9f\\x29\\xe4\\x92\\x0a\\x33\\x80\\x5f\\x62\\xf4\\x87\\x75\\x49\\xdc\\x70\\xc9\\xd8\\xd6\\x25\\xf1\\x1b\\xc6\\xb8\\x7f\\xf1\\xe5\\xe3\\x11\\xf8\\xf2\\xfd\\xab\\x17\\xdf\\xbc\\xba\\xad\\xeb\\x51\\x8c\\x96\\x3d\\x2f\\x44\\xbd\\x6f\\x40\\xca\\xc1\\x7c\\xb1\\xa8\\x9e\\x8f\\x46\\x19\\x17\\x19\\xb9\\x95\\xf0\\x72\\x59\\x5b\\x2a\\x6e\\x7d\\xfd\\xed\\xb9\\x1d\\x4f\\x3f\\xdd\\x98\\x7f\\xf5\\x78\\xab\\xe9\\xd5\\x87\\x6f\\x5e\\x3f\\xb7\\xc6\\x89\\x9a\\x52\\xdf\\x8d\\x8a\\x2b\\x72\\x33\\x8a\\x66\\x3c\\xa6\\xc9\\x68\\x4e\\x34\\x4b\\x36\\x7b\\xc9\\x32\\xaf\\xf5\\x44\\xbb\\xe7\\x68\\x91\\xde\\x42\\xa4\\x0d\\x11\\x70\\xdb\\xa4\\x7e\\x6c\\x6f\\xfa\\x1c\\x6b\\xf3\\x80\\x76\\x9c\\x70\\x2f\\xfd\\xa2\\x00\\x51\\xad\\x3e\\x96\\xc3\\xfd\\x04\\xdb\\xf9\\x64\\xcd\\xb0\\xdb\\xda\\x75\\x6a\\x01\\x0b\\xf6\\xb1\\xc4\\x3c\\xc3\\x09\\xa0\\x70\\x03\\xf9\\x99\\x92\\x76\\x4a\\x5e\\xef\\x62\\xf6\\xd2\\x21\\x0a\\xd6\\xc1\\xc8\\xd1\\xd7\\x93\\x6a\\xb4\\xde\\x0e\\x70\\xc5\\x7a\\x05\\x57\\xc7\\xa5\\x04\\xd0\\x88\\x82\\x54\\xcc\\xab\\x2d\\xd4\\x0d\\x44\\x19\\xfb\\x71\\xc6\\xb6\\x48\\x3c\\x9d\\x97\\x56\\x53\\x5c\\x28\\x0a\\x3d\\xf8\\x84\\xa9\\x58\\x6d\\x8f\\xd2\\xfd\\x69\\xf5\\xbd\\xb0\\x7a\\xf4\\x52\\x0e\\x63\\xd6\\x98\\xe8\\xe8\\xd3\\xd3\\xe1\\x18\\x65\\x44\\x0f\\xf7\\x9a\\x1d\\xde\\x68\\x50\\x3d\\x8e\\x0d\\x44\\x78\\xa3\\xe9\\xf2\\x46\\x73\\x5a\\xde\\x68\\x75\\xbd\\x64\\x3e\\xe3\\xf6\\x3a\\x18\\x35\\xb0\\xfa\\x8e\\x9b\\x97\\x37\\x5a\\xdc\\x2d\\x6f\\xb4\\x84\\x37\\x1a\\x5e\\xfd\\xf4\\xfc\\xff\\xcf\\x8f\\xb6\\x62\\x9e\\x41\\xe7\\x54\\x00\\x79\\xe4\\x4e\\x54\\x58\\x1c\\x56\\x83\\x12\\xba\\xb0\\xc6\\x26\\x37\\x0d\\x58\\x6d\\x06\\xd4\\x9c\\x31\\xa4\\x49\\xc9\\x14\\xe6\\x3a\\xb6\\x18\\xdc\\xc4\\x78\\x06\\xac\\x53\\xb4\\xfb\\xc8\\x26\\xb5\\x4e\\x65\\x34\\x31\\x99\\xc6\\x8a\\xfb\\x35\\x0c\\xf7\\xab\\x64\\x13\\xf5\\x29\\xa3\\x96\\x5b\\x4e\\x29\\x39\\x57\\x7a\\xb1\\x96\\x34\\x55\\x28\\xa0\\xa5\\x3f\\xcb\\xd0\\x36\\xa2\\x16\\xc4\\x92\\x34\\xd3\\x1c\\xdb\\xc0\\x0c\\xbf\\xa3\\x6a\\xe9\\x1e\\x16\\x77\\x68\\x72\\x09\\x09\\x82\\xf9\\x1a\\x86\\x45\\x8f\\x6d\\x70\\x34\\x73\\xd9\\x01\\xa4\\x98\\x21\\x4e\\x34\\x63\\x0e\\x95\\xa6\\x16\\xf0\\x37\\x52\\x09\\xe0\\x56\\x15\\xde\\x53\\xf4\\xd8\\x6b\\xe7\\xa6\\x0e\\x9c\\xd3\\x31\\xa3\\xd4\\x25\\x0f\\x6f\\x26\\xeb\\x6b\\x90\\x0a\\xf8\\x24\\xf9\\x72\\x10\\xa1\\x5e\\xda\\x47\\x2d\\x3d\\x82\\xfe\\x01\\x34\\x61\\xd3\\x61\\xb9\\x13\\xde\\xb1\\x81\\x25\\x30\\x21\\x15\\xea\\x19\\x36\\x85\\x61\\x9a\\x63\\x58\\xe4\\x52\\x4b\\xb5\\xc5\\x34\\xef\\x34\\x20\\x4e\\x1b\\x53\\x87\\x37\\x06\\x1c\\x29\\xa2\\x34\\x10\\x86\\xe2\\xe8\\x04\\x6d\\x76\\xf7\\x52\\x9f\\x4b\\x52\\x63\\x9b\\x4e\\x60\\x26\\x23\\x38\\xb2\\x14\\x6a\\xa8\\x3e\\x5a\\xa3\\xa1\\xdb\\x00\\x3e\\xd9\\x87\\x15\\x3d\\x43\\xb2\\x88\\x4e\\x00\\x77\\x82\\x3c\\x39\\x2d\\x9d\\xf2\\x34\\x76\\xf5\\x68\\xa7\\x9a\\x5e\\x6e\\x2a\\x93\\x6a\\x7c\\x0b\\xf4\\x15\\xd7\\xcf\\x09\\x17\\x0a\\xda\\x81\\x2c\\xb5\\x65\\xc9\\x1b\\x9a\\x04\\x52\\x09\\x9d\\x5c\\x1f\\x67\\x4e\\x6c\\xdf\\x93\\x18\\xcd\\xb5\\x33\\x5d\\xa0\\xd5\\x4a\\xc9\\xb1\\xb1\\xc7\\xc0\\xca\\x1f\\xad\\xc8\\x88\\x94\\xa0\\xdb\\x14\\xac\\x2f\\x7d\\xbe\\xb4\\x09\\xea\\xb0\\xfd\\xac\\x55\\xf8\\x70\\xaf\\xd1\\xb1\\x14\\xb4\\xd0\\x71\\x54\\xeb\\xe3\\xce\\xc8\\x60\\x07\\xae\\xf7\\x79\\x77\\x28\\x3f\\x25\\x0c\\xb5\\x70\\x1e\\x39\\xcc\\xb8\\x85\\x11\\xa8\\x73\\x5f\\x80\\xa3\\x8b\\xc0\\xb4\\x5d\\x27\\xbb\\xab\\x1e\\xbf\\x74\\x83\\xab\\x1c\\xd8\\x5a\\x8a\\xa3\\xb9\\x83\\x65\\x1e\\x1f\\x7d\\x9a\\x96\\x7e\\xf4\\x31\\x2d\\xfd\\xe8\\xb6\\x35\\xc6\\xb3\\x49\\xc4\\x59\\x86\\x6c\\xec\\xde\\xfa\\x79\\xd0\\x66\\x76\\x38\\x39\\x46\\xf7\\xad\\xc0\\x73\\xeb\\xe7\\xac\\x09\\x5a\\x37\\x3f\\xdc\\x6b\\xb1\\x11\\x19\\xe7\\xc1\\x7d\\x5b\\xf0\\x29\\xfa\\x76\\xfc\\xf8\\x74\\x83\\xfe\\xf5\\xc7\\x0d\\xfa\\xd7\\xcf\\x08\\x18\\x6e\\xfd\\x70\\x8f\\xed\\xa5\\x0a\\xc1\\x99\\xc5\\x5a\\x14\\x5a\\x56\\x91\\x59\\x2b\\x9f\\x04\\xde\\x4a\\xa5\\xe3\\x71\\x2d\\x80\\xe5\\x4f\\xe8\\x63\\xa7\\x1e\\xb9\\x34\\x75\\xea\\x5e\\xd4\\xa1\\xcb\\x59\\x68\\x8c\\xbe\\xec\\xbe\\xa4\\xb3\\x74\\x96\\x70\\xdf\\x93\\xa4\\xf4\\xf8\\x96\\x25\\xc4\\x60\\xd4\\x53\\x6b\\xae\\x5c\\x3c\\x24\\x9b\\x95\\x76\\x02\\x57\\x95\\x52\\x12\\xa8\\x16\\x23\\xa4\\xf9\\xe8\\xd8\\xcd\\xce\\x52\\x9c\\x4a\\x78\\x14\\x5f\\x83\\x7e\\x7c\\x57\\xf2\\x98\\x1f\\xee\\xa5\\x26\\x7a\\xd0\\x85\\x2c\\xce\\x5e\\x88\\xa6\\x68\\xdd\\xc6\\xd2\\x40\\x0b\\xe3\\xaa\\x35\\xe6\\x31\\xb3\\xf8\\x53\\xcf\\x99\\xf0\\x58\\x1c\\x7b\\x8a\\x14\\x2b\\x6e\\x49\\x0c\\x31\\x56\\x64\\xe0\\x3d\\x67\\xb8\\x34\\x77\\x9a\\x5e\\xb0\\x63\\x94\\xde\\x31\\xd6\\x47\\x86\\xd8\\xd9\\xc9\\xf7\\xd2\\xb5\\x86\\x78\\xf5\\xa1\\x0d\\xa3\\x39\\x7a\\xb4\\x51\\xf2\\x2c\\x7a\\x4b\\xcf\\x39\\x96\\xdd\\x21\\x77\\x9c\\x60\\x7f\\x28\\xa0\\xf1\\xcb\\x1c\\x7d\\xac\\x11\\x0c\\x6c\\x66\\x0c\\x9d\\x4e\\xd0\\x75\\x46\\x7d\\xe6\\x32\\xe4\\x06\\x6e\\xf8\\xf1\\xc7\\xb3\\xf9\\xe3\\x67\\x38\\x35\\x15\\xbf\\x1a\\x3b\\x51\\xd7\\x26\\x40\\xa3\\x6e\\xad\\x94\\x69\\xec\\xe0\\xf5\\x82\\x96\\xf0\\xf1\\x71\\xb6\\xc3\\xa8\\x66\\x87\\x51\\x8d\\xdb\\xb2\\x44\\x84\\x4f\\x2e\\x69\\x3b\\x78\\x52\\x69\\xfd\\x64\\x93\\x4a\\x11\\x72\\x18\\x1a\\x8a\\xeb\\x5f\\x06\\x17\\x9b\\x83\\x38\\x2f\\x05\\xaa\\xe5\\x48\\xf8\\x59\\x96\\x58\\x98\\x0c\\x77\\x97\\x10\\x98\\x0c\\x97\\xe4\\x75\\x5a\\xdb\\x06\\xce\\x76\\x35\\x6b\\x5c\\x25\\x2f\\x17\\xe9\\x6b\\x35\\x6f\\xdc\\x91\\xc0\\x29\\xcd\\x8f\\x8d\\x1e\\x74\\xa6\\x18\\xed\\x39\\x8b\\x03\\x97\\xd4\\xee\\xe1\\x2d\\x17\\x33\\x17\\x58\\x58\\xb1\\xa5\\x13\\xf0\\xc6\\xe9\\xc7\\xfb\\x97\\x37\\x4e\\x1e\\xde\\x38\\xd8\\x2c\\x82\\xef\\x0d\\x1f\\xc6\\x96\\x6a\\x0c\\x59\\x4e\\x61\\x78\\x48\\xdb\\x94\\xde\\x61\\xba\\xe4\\x2c\\xa0\\x42\\x17\\x67\\xdf\\xeb\\x1c\\x0e\\x26\\xb5\\x34\\xc9\\x70\\x33\\xfc\\x24\\xbc\\x37\\xce\\x80\\xd5\\x87\\x0b\\xf4\\xd4\\x8c\\x96\\xc6\\x85\\x2f\\x77\\x80\\x9e\\x9a\\x72\\xa8\\xc8\\xb6\\xda\\x08\\xfb\\x53\\x27\\x8c\\x24\\x56\\x9f\\x0c\\xf8\\x03\\x3c\\x7c\\x72\\xf7\\xc4\\x5c\\xff\\xe4\\xe3\\xb9\\xfe\\xc9\\xed\\xb9\\x36\\xbb\\x52\\xae\\x26\\x2f\\x0e\\xa6\\xa6\\xcb\\x50\\xad\\xdd\\xe6\\xf2\\xab\\xf3\\x92\\x51\\x79\\x74\\x95\\xa8\\x16\\xee\\xa0\\x4b\\xb1\\x4f\\x22\\xb1\\x56\\xe2\\x77\\x09\\xf1\\x4e\\x33\\x1d\\x0e\\x9c\\xb3\\xd4\\x01\\x70\\x6a\\x6e\\xfd\\x4c\\x66\\x0f\\xf7\\xa2\\x82\\x71\\xbc\\x90\\xd1\\xfa\\x5c\\x4d\\xbd\\x61\\x9b\\xac\\x51\\x2e\\xfd\\x4c\\xba\\xcc\\xc4\\x52\\x19\\x33\\x0b\\x9b\\x84\\x5e\\x62\\x08\\xfc\\x0f\\x8b\\x18\\x12\\xbb\\x42\\xa3\\xee\\xbd\\x83\\x84\\xc3\\xc3\\xec\\x8c\\x2f\\xd5\\xeb\\xcf\\x72\\x4b\\x79\\xf8\\xe9\\xc7\\xc3\\xf2\\xd3\\xdb\\xbb\\x23\\x61\\xcd\\x43\\xce\\xe2\\x01\\x9e\\x50\\x6b\\xe6\\xd2\\xcf\\x34\\xbe\\x33\\x5b\\x3a\\x6c\\xe1\\x03\\x77\\x0c\\xe9\\xe7\\x0c\\xbb\\xf8\\x2d\\xeb\\xce\\xbf\\xf9\\xf8\\xbb\\xff\\xe6\\xf6\\x77\\x0b\\xfe\\xaa\\x9c\\x25\\x46\\x7d\\x2e\\xe9\\xfa\\xb9\\x61\\xc7\\xe7\\x62\\x5c\\x46\\x07\\x67\\xbf\\xf8\\xad\\x6e\\xfe\\xd9\\xc7\\x9f\\xfb\\xb3\\xe7\\x28\\xbd\\x06\\x9e\\x76\\xea\\xac\\x6d\\x48\\xcb\\x6e\\x4d\\x08\\xf6\\xf7\\xb5\\xef\\xa1\\x50\\xd7\\x35\\x60\\xdb\\x54\\x59\\xfb\\x1e\\xa5\\x33\\xf4\\x45\\xd7\\x85\\xde\\x8a\\x5b\\x8c\\x42\\x33\\xbd\\xda\\x7e\\x19\\xc4\\x3b\\x41\\xa1\\x2e\\x6e\\xab\\xb0\\x5b\\x12\\xb6\\xdb\\x79\\xc0\\x90\\x49\\xec\\x07\\x40\\x91\\xb0\\xa9\\x76\\xd8\\x24\\xbf\\xa7\\x6b\\x8e\\x83\\xae\\xb1\\x01\\xa4\\x76\\xec\\xdb\\xd7\\xd2\\xeb\\x80\\xf9\\x54\\x82\\x9c\\xf4\\xae\\xc0\\xd1\\x39\\x85\\xf6\\x84\\xd3\\xde\\x52\\x67\\xd7\\xbe\\xfe\\x80\\x5d\\x53\\x02\\x3b\\x69\\xb0\\xbd\\x38\\xbe\\x48\\x63\\x07\\xc6\\x2b\\xc1\\x60\\xcb\\x62\\xe3\\x13\\x9e\\x07\\x2c\\x06\\x87\\x2d\\x22\\x2d\\xc0\\xef\\x08\\x12\\x00\\x3d\\x27\\xfb\\xe4\\x51\\xed\\xc1\\xa0\\xef\\x85\\x99\\x6c\\x8c\\xc6\\x69\\x30\\x9c\\xc1\\xc4\\x53\\xf4\\xed\\x4b\\x3a\\xa8\\xd8\\x72\\x19\\xa9\\x8e\\x94\\x14\\x28\\xac\\x24\\xb1\\xc3\\x5f\\xb0\\x68\\x07\\x2a\\x43\\x9f\\xa3\\x60\\x82\\x15\\xd3\\x1f\\x0b\\x0b\\xd5\\x73\\xca\\x5b\\x4a\\xe1\\xca\\x3c\\xbb\\xd2\\x25\\x4a\\x1f\\x24\\x92\\xad\\xe6\\xea\\x8e\\x6e\\x39\\x92\\x9d\\x3f\\x9e\\xf2\\xf3\\x73\\xee\\x19\\x51\\xc8\\x80\\xf8\\x82\\x05\\x4e\\x56\\x0b\\x4d\\x8f\\x85\\x56\\x7f\\x62\\x35\\x7f\\x6f\\x9f\\x1f\\x37\\x37\\xab\\x7f\\xf6\\xf1\\x37\\x7f\\xf6\\x0c\\x3c\\xd0\\xef\\xe3\\x2f\\x6a\\x1d\\xdb\\x39\\xba\\x5d\\xc8\\xfb\\xfa\\xa5\\x84\\xb0\\xe2\\x4f\\x23\\x5b\\xd7\\xf1\\x83\\xda\\x0d\\xd3\\xca\\xbf\\xfd\\xf8\\xcb\\xff\\xf6\\x99\\x7d\\xab\\xb8\\x7e\\x59\\xfd\\xa2\\x2a\\x3b\\x75\\xd5\\x06\\x67\\x81\\xd2\\x35\\x4a\\x37\\x2b\\x99\\x4e\\x44\\x33\\x6a\\x59\\x18\\xbc\\x05\\xb1\\x13\\x1c\\x6b\\xa3\\x08\\x9b\\x58\\x04\\x8b\\x7d\\xe6\\x24\\xd5\\xc6\\x32\\xe6\\x72\\x33\\x3d\\xf3\\xf0\\x9d\\x4b\\x17\\xf1\\x82\\x1a\\xbd\\x49\\x1f\\x53\\x3c\\x1b\\xd3\\x98\\x8a\\x4d\\xa5\\x81\\x17\\x62\\xf6\\x81\\xa0\\x03\\xca\\x56\\xad\\x8a\\x52\\xf3\\x0a\\x53\\x0c\\x29\\x9d\\xc5\\x66\\xb5\\x55\\x55\\x9e\\xe9\\xf6\\xbf\\xfb\\xb8\\xdb\\xff\\xee\\xb6\\x96\\xcd\\xd2\\x3c\\x7c\\x2b\\x31\\xa5\\xc9\\x18\\xe0\\x63\\x42\\xc5\\xe9\\x12\\x6a\\x9b\\x75\\x6e\\xc9\\xb4\\x25\\x1f\\x5e\\x20\\xd8\\xc3\\x85\\xfb\\x00\\xe5\\x56\\x7a\\x46\\xad\\x12\\x97\\xed\\x78\\xd7\\xd3\\x2d\\xda\\x3e\\x6e\\xd1\\x76\\xdb\\x66\\x5d\\x4b\\x1f\\x8c\\x34\\xb1\\xe0\\x72\\x1c\\xcd\\x19\\x52\\x0c\\xf6\\xe9\\xb7\\xdf\\x7f\\xfc\\xf6\\xfb\\x67\\x2c\\xe2\\x6b\\x9a\\xb7\\x52\\x35\\x82\\xc7\\x06\\x9b\\xf2\\xea\\x55\\xef\\x97\\x7e\\x4e\\xee\\x17\\x1b\\xb4\\x15\\x85\\x11\\x8d\\xdc\\xdc\\xbd\\x69\\xb7\\xb3\\xf9\\xb1\\xcf\\x4c\\x3e\\x36\\x6c\\xbc\\x0d\\x02\\x41\\x5c\\xdb\\x17\\x37\\xda\\xf6\\xe7\\x1f\\xb7\\xed\\xcf\\x9f\\x23\\x38\\x20\\xf4\\x1c\\x9b\\x08\\xa2\\x5e\\xea\\xa4\\x97\\x4c\\x3c\\x26\\xfb\\x2c\\x42\\xdb\\x48\\x6f\\x12\\x7d\\x1b\\x79\\x9d\\x8f\\x3e\\xfc\\x16\\xe5\\xfd\\xfc\\xe3\\x8f\\xff\\xfc\\x19\\x06\\xcf\\x84\\x98\\x21\\x80\\x61\\xc3\\xe6\\x48\\x1f\\xa5\\xeb\\x4c\\xec\\x91\\xc9\\xf2\\x65\\x11\\x6c\\x56\\x67\\xf7\\x36\\x04\\x0e\\x6c\\xa5\\x07\\x1e\\xd0\\x8e\\x0f\\x68\\x67\\x52\\x22\\x00\\x62\\x62\\x72\\x31\\xb6\\xb4\\x49\\xb5\\xec\\x45\\x27\\xc1\\xfb\\x1a\\xef\\xac\\xaf\\x5d\\x06\\x75\\x78\\xcb\\x0f\\xd0\\x0e\\x8c\\x8e\\xb3\\xe0\\x34\\x5c\\xa3\\x99\\x0f\\xc7\\x93\\x62\\x9b\\x24\\xc1\\x53\\xad\\x1f\\x3e\\xa1\\x74\\x35\\xaa\\x74\\xb9\\x5b\\xbb\\x04\\x71\\x6c\\x66\\xc1\\xc3\\x5d\\x02\\xcd\\x2d\\x68\\xe8\\xd8\\x12\\x18\\x4b\\x59\\xa7\\xfa\\x58\\xfa\\x98\\xe8\\xef\\xa0\\x7e\\x71\\xd5\\x87\\xfb\\x94\\xd1\\x4a\\x1a\\x15\\x3f\\x1d\\xae\\x2d\\x85\\x10\\xae\\x82\\x78\\xb0\\x8e\\x5d\\x51\\x58\\x51\\x97\\x3b\\x06\\x5c\\xb8\\x20\\x7b\\x78\\x1c\\x4d\\x11\\x18\\x43\\x10\\xc5\\x44\\xcd\\xb0\\x79\\x39\\xc6\\xda\\x24\\x82\\xbf\\x57\\xa9\\x82\\xf5\\x38\\xcc\\x43\\xf5\\x42\\x4e\\xc7\\x17\\x78\\xe0\\xcb\\xd5\\x0c\\xf0\\x07\\x43\\x48\\x92\\x21\\xc0\\xa3\\x6e\\x56\\xd6\\x29\\xf0\\x8a\\x8b\\xa9\\xe4\\xe0\\x03\\xd6\\xe9\\x8e\\xdc\\x31\\xf2\\xa4\\xb2\\x3b\\x14\\x5a\\x69\\xf0\\x29\\x77\\xc7\\x56\\x2d\\xb6\\x74\\xa3\\xf0\\xb4\\xa3\\x17\\xca\\x3c\\xab\\x57\\x26\\x06\\xb3\\xd3\\x1a\\xfc\\x1b\\x9b\\xa9\\x7f\\xf1\\xf1\\xaa\\xf9\\x8b\\x67\\xc8\\xc9\\x9b\\x0d\\xfd\\x5d\\x04\\xe2\\x2e\\x7b\\x2c\\x04\\xae\\x0d\\xde\\x11\\xca\\x25\\x8e\\xb1\\x53\\x07\\xad\\xab\\xc3\\xfe\\x56\\xe8\\x70\\xf9\\xcd\\xe7\\x8e\\xb3\\x84\\x5b\\x57\\xad\\x05\\xd1\\x75\\xbf\\xe7\\x80\\x8b\\xaf\\x97\\x02\\xe1\\x52\\x5f\\x3a\\x4b\\xf8\\x03\\x3e\\x1b\\x72\\x7c\\x8b\\xa3\\x85\\x04\\x34\\xc8\\x80\\x88\\x2c\\xc6\\x54\\x9d\\x2d\\x3d\\x29\\x67\\xc2\\x6b\\x83\\x62\\x5f\\x27\\x05\\x5d\\x80\\x07\\xa5\\x6e\\xf5\\xe5\\x68\\x1f\\xa3\\x26\\x75\\xc8\\x0a\\x7f\\x01\\x30\\x0c\\xbf\\x84\\xdc\\xe0\\x65\\xfb\\xc7\\xc3\\xb3\\x3f\\x43\\x54\\xa2\\xf0\\x6d\\x2b\\x05\\xa2\\x19\\x2c\\xf1\\x45\\x5d\\x88\\x81\\x19\\x54\\xd2\\xa5\\x14\\x58\\x81\\x43\\x50\\x29\\xac\\x43\\x37\\x44\\xf5\\x9c\\x88\\x6d\\xc3\\x8e\\xeb\\x89\\xd5\\xb7\\x40\\xa8\\xce\\xee\\x63\\x39\\x97\\x7c\\x4f\\x71\\xbc\\x28\\x4e\\x8b\\x0e\\x6b\\xb5\\x60\\x43\\x39\\xb0\\x05\\x4a\\x3a\\x9a\\x68\\x8d\\x64\\xc1\\x17\\x9a\\x89\\x96\\x5c\\x22\\x69\\x4f\\x5b\\x3a\\x62\\xa9\\x54\\x26\\xb8\\x93\\x4a\\xae\\x31\\xf9\\xda\\x09\\x95\\x42\\x4c\\xe2\\x39\\x55\\x41\\x54\\x01\\xcb\\xcc\\x41\\x6f\\x07\\xe4\\x5a\\x1a\\xbb\\x0e\\xb4\\x9b\\x24\\xfa\\x8a\\xf8\\x58\\x21\\x4f\\xd0\\xd8\\x11\\xfc\\x53\\xfd\\x4d\\x2b\\x14\\x26\\xda\\x22\\xe9\\xe2\\x2e\\x0f\\xf7\\x05\\xd1\\x23\\x65\\x4f\\x4d\\xac\\x91\\x54\\x6d\\xd9\\x63\\x26\\xd4\\x83\\xc3\\xa9\\xbe\\x1e\\x99\\xf0\\xd6\\x67\\x36\\xf8\\xa9\\x1d\\xf4\\xa6\\x57\\x7a\\xf3\\x45\\x6f\\x30\\xf1\\x80\\xde\\xaa\\x71\\x6b\\xd3\\xcc\\x97\\xd2\\x26\\xdd\\xd7\\x0b\\x79\\x18\\xbe\\xc0\\x31\\xea\\xcb\\xd5\\x8c\\xbd\\xce\\xbd\\x67\\xe3\\xa1\\xcd\\xac\\xd7\\xcd\\x77\\x2a\\x3c\\x11\\xb3\\xc7\\x8c\\xd7\\xb1\\xf4\\x65\\x42\\xf2\\xf8\\x1d\\x7a\\xd3\\x45\\x6f\\xd5\\xa4\\xa2\\x37\\x2e\\x7a\\x4b\\x34\\x5a\\x98\\x66\\xe9\\x8e\\x2a\\x35\\xe4\\xd2\\xac\\x46\\xc8\\xfa\\x31\\xf6\\x37\\x60\\xf8\\xbf\\xff\\x78\\x41\\xfd\\xfb\\x67\\x82\\x2f\\xbc\\x59\\xea\\x59\\x1c\\xb2\\x71\\x5c\\x69\\xae\\x8f\\x3d\\xa8\\x1f\\x34\\xd7\\xe1\\x53\\x12\\x33\\xe1\\x6f\\x87\\x0d\\x7b\\xb8\\xcd\\x11\\x88\\x8f\\xaf\\x24\\x57\\x62\\x5d\\x61\\xf3\\xe0\\x36\\x4a\\xa3\\xee\\x6c\\x2d\\x46\\x51\\xce\\x8a\\x52\\xc2\\xfe\\x9c\\xd4\\x8a\\xc4\\xbe\\x5d\\x1d\\x01\\x08\\x95\\xb7\\xa3\\x1d\\x0f\\xf7\\xe2\\xd6\\x42\\xfd\\xec\\xb4\\x3c\\x4b\\x0a\\x43\\x47\\x29\\xa4\\x6e\\xcb\\x4b\\x9f\\x72\\x8e\\xe4\\xbb\\xec\\x3a\\x0f\\x23\\x25\\xed\\xeb\\x24\\xbf\\x03\\xfe\\x82\\x4f\\x21\\xec\\x34\\x84\\x97\\x59\\xd2\\xfb\\x38\\x28\\xd1\\xed\\x12\\x7a\\x83\\x12\\xff\\xf2\\xe3\\x81\\xfb\\xcb\\xdb\\xea\\x92\\xf8\\x0a\\x62\\x12\\x47\\x60\\x5f\\x49\\x30\\x1d\\x34\\x61\\x98\\xb5\\x31\\x83\\x19\\xbb\\x0a\\x4e\\x25\\x05\\x13\\xbb\\x4e\\x1e\\xda\\x60\\x9b\\xea\\x39\\x0b\\xb2\\x45\\xda\\xe4\\x2e\\x2d\\xa9\\xe4\\x19\\xad\\xc8\\x59\\x9c\\x50\\x14\\x09\\x43\\xe3\\x8f\\x23\\x38\\xb0\\x84\\x95\\xcb\\xd5\\xbd\\xe2\\x4a\\x3c\\x80\\x50\\xd0\\x57\\xe2\\xd0\\x57\\x00\\xf9\\xac\\xe6\\x08\\x3c\\x88\\x20\\x99\\x96\\xeb\\xf2\\x39\\xc5\\xf6\\xe4\\xb8\\x2b\\x68\\xd2\\xb2\\x17\\x7b\\x34\\x82\\xcd\\x98\\x58\\xfb\\xb2\\x9d\\x72\\xc6\\x7a\\x3f\\xf4\\x95\\x41\\x87\\xbe\\x72\\x75\\x76\\x85\\x97\\x21\\xc3\\xcd\\xb2\\x88\\x7c\\x28\\xfc\\x0f\\x11\\x50\\x0b\\x99\\xd4\\x29\\x9b\\x20\\x86\\xdc\\xe1\\xaf\\x90\\x9d\\x27\\xbc\\x8e\\x4a\\x5d\\x0e\\x78\\x8a\\xee\\x51\\xf3\\xd8\\xfb\\xe2\\xb0\\x91\\x08\\x4b\\x0d\\xce\\x99\\x83\\x9b\\xc3\\x4c\\x63\\xd9\\xac\\x84\\x3a\\x11\\x1c\\xfb\\xaa\\x0b\\x59\\x18\\x65\\xc7\\x09\\xc7\\x35\\x58\\x33\\x57\\x4c\\x1f\\x9c\\x79\\xa3\\xd9\\xf4\\xe5\\x11\\x03\\x4a\\xbe\\x42\\x07\\x2a\\x99\\x18\\x77\\xe9\\x93\\x10\\x84\\x5b\\xac\\xa3\\x20\\x74\\x3f\\x4b\\x8f\\xbd\\xb4\\x2d\\x31\\x2e\\xce\\xd6\\xa4\\xf7\\x25\\x12\\x89\\xa6\\xd5\\x80\\x9a\\xe3\\x8d\\x80\\xd0\\xa5\\xdd\\x95\\x54\\x28\\x99\\x6c\\x7d\\x0d\\x5a\\xf2\\x4c\\xea\\x8d\\x5d\\xe7\\xb1\\x1e\\x9e\\x5e\\x55\\xf3\\xe3\\x55\\x35\\x9f\\xdb\\xa9\\xf0\\x65\\x4f\\x8b\\x5e\\x5a\\xbf\\xb1\\x2f\\xe5\\x3b\\xfc\\x72\\x85\\xca\\xeb\\x97\\xa7\\x3f\\xf4\\x57\\x1f\\x7f\\xe8\\xaf\\x9e\\x77\\x95\\x07\\x6e\\xa5\\x8e\\x34\\x03\\x7d\\x39\\xcd\\x97\\x1e\\x49\\x1d\\xfe\\xe2\\x39\\xb3\\x26\\xb4\\x78\\x67\\x01\\xa0\\x5c\\xc6\\x74\\x38\\xcd\\x8f\\xc3\\x69\\x9e\\x96\\xd3\\x3c\\x00\\xcc\\x24\\x38\\x32\\x8e\\x49\\x52\\x5a\\x7b\\xdf\\x48\\x0f\\xab\\xb0\\x50\\x6c\\xb0\\x3f\\x45\\xdf\\xa1\\xaf\\x96\\xa6\\xaf\\x25\\xac\\x0c\\xbb\\x60\\x2c\\x39\\xb5\\x9a\\xe3\\x76\\xf0\\xe2\\xd2\\x57\\x6d\\x0d\\xb7\\x20\\x9c\\x07\\xf4\\x5c\\xca\\xcf\\x18\\x76\\x57\\xcf\\x81\\xdc\\xa2\\x6f\\xd9\\xbf\\xc7\\xac\\x37\\xc6\\xe4\\xf2\\xf1\\x98\\x5c\\x6e\\xf3\\xc2\\x9a\\xca\\x1c\\x5b\\x9a\\x7e\\xa7\\x97\\xd0\\xe6\\x30\\x22\\x99\\xd0\\x16\\x47\\x7f\\xd8\\x73\\x3b\\xee\\x7d\\xfa\\x8b\\xff\\xe1\\xe3\\x2f\\xfe\\x87\\xdb\\x3a\\x62\\x21\\xef\\xd4\\x0d\\x4e\\xdc\\xc7\\x27\\x07\\x6f\\xf0\\x20\\xee\\xe7\\x41\\xbe\\x39\\xb6\\x60\\x32\\x36\\xd5\\xc2\\xed\\x6c\\x7d\\x8b\\xc3\\x35\\x95\\x35\\x37\\x28\\x7f\\xa9\\x1b\\xfc\\x70\\x96\\x05\\x7e\\x6c\\xc7\\x5b\\x9f\\x6e\\xdb\\x7f\\xfc\\xb8\\x6d\\xff\\xf1\\xf6\\x68\\xb0\\xb5\\x31\\x6c\\x2b\\xe6\\x7d\\x1d\\x8d\\xd8\\x42\\xe0\\x53\\x5f\\xa0\\x02\\xac\\xbb\\x06\\x88\\x8b\\x58\\x79\\x2b\\xc9\\xd8\\xcf\\x23\\x36\\x63\\xc2\\x3d\\x39\\xae\\xf3\\x6f\\xdb\\xf1\\xb6\\xa7\\xdb\\xf4\\x9f\\x3e\\x6e\\xd3\\x7f\\xba\\xdd\\xa6\\x5e\\x98\\xd4\\x96\\x2e\\xb5\\xda\\xa4\\x86\\x19\\x32\\x95\\xcd\\x47\\xd6\\x4c\\x51\\x6c\\x46\\xba\\x7e\\xb9\\xce\\x58\\xf0\\x76\\x3c\\xfb\\x74\\x0b\\x1e\\x3e\\x6e\\xc1\\xc3\\x6d\\x7c\\x0a\\x27\\x47\\x58\\xe5\\xb2\\x04\\x26\\xf9\\x46\\x40\\x32\\xba\\x0d\\xec\\x14\\xe5\\x38\\x13\\xc7\\xd5\\x82\\x61\\x7d\\xa3\\xbe\\x62\\x2d\\x6d\\x3b\\x9e\\x7d\\xba\\x05\\xff\\xcb\\xc7\\x2d\\xf8\\xfc\\xfd\\x8b\\x97\\x7f\\xfd\\xea\\x9b\\x67\\xa3\\x18\\x07\\xf6\\xcd\\x88\\xcf\\xde\\xe9\\x72\\x22\\xef\\xe7\\xc1\\x7c\\x39\\x09\\xf1\\x59\\x8b\\x6f\\xb8\\x2b\\x7e\\xa9\\x7b\\x9e\\xfe\\xe8\\xff\\xfa\\xe8\\xa3\\x2f\\x5e\\xfe\\xf5\\xf3\\x61\\x3c\\xb0\\x8d\\x63\\x4e\\x73\\xd4\\x32\\xf5\\x15\\xd4\\x33\\x24\\xb7\\xeb\\xa5\\xa7\\xbf\\xf4\\xbf\\x3d\\xd9\\xbd\\xe7\\xe3\\x0d\\xe1\\xd4\\x8a\\x4e\\xf4\\x6b\\xb7\\xba\\xad\\x8e\\x7a\\x0d\\xb1\\x1d\\xbf\\xd4\\x3d\\x4f\\x7f\\xf5\\x7f\\x7f\\x1c\\xad\\xf7\\xf2\\xf5\\xeb\\x97\\xaf\\xdf\\xbf\\xfc\\xf6\\x76\\xd2\\x15\\xed\\xd2\\x3c\\xe2\\xcc\\xf2\\x3b\\xfb\\x5a\\x1e\\x63\\xcb\\x0c\\x5c\\x18\\xec\\xc7\\x1e\\x96\\xd7\\x02\\x5b\\xd9\\x2d\\x36\\xcb\\xe3\\x97\\xe3\\xf9\\xa7\\xdb\\xf3\\x7f\\x7c\\xdc\\x9e\\x6f\\xdf\\x7e\\xf1\\xea\\xfd\\x87\\x97\\xef\\xde\\xdf\\x76\\xb8\\x43\\x38\\xf0\\x09\\xb1\\x1b\\x06\\x84\\xd6\\x83\\x2f\\xf5\\xf7\\xd3\\x1f\\xf8\\x3f\\x1f\\x7b\\x67\\xbc\\x78\\xc6\\xd9\\x1d\\x36\\x4e\\x26\\x2b\\xad\\x67\\x83\\x66\\xa9\\x83\\xce\\x2e\\x63\\xbb\\x5e\\x79\\xfa\\x23\\x2f\\x1e\\x8d\\xea\\xed\\x0f\\x0c\\x6b\\x7d\\x1f\\xa1\\xad\\x54\\x63\\x1f\\xcd\\x78\\x0e\\xe8\\xe2\\x63\\x1f\\x52\\x08\\x04\\x0e\\x16\\x6e\\xf0\\x09\\x60\\x5a\\x51\\xad\\x39\\x0f\\x47\\xe9\\x5d\\xd5\\xbe\\x8b\\x88\\xb0\\xc9\\x36\\x5a\\x30\\x42\\xdf\\xe9\\xb0\\xeb\\x4a\\xef\\x3b\\x8e\\x23\\x1b\\x25\\x35\\x35\\x47\\x98\\x88\\x79\\xcc\\x15\\xae\\xad\\x6b\\x1f\\xcc\\xfc\\x3c\\xac\\x60\\x1f\\xc1\\x05\\x31\\xb2\\xb7\\x21\\x70\\xc2\\x9a\\x31\\xbc\\x8d\\xb4\\x19\\xdd\\x4b\\x91\\x9b\\x96\\x79\\x97\\x26\\xbb\\xc1\\x11\\x5c\\x4a\\xd5\\x69\\x59\\x12\\x8a\\x03\\x60\\x46\\x06\\x95\\x86\\x31\\xc5\\xb5\\xc0\\xed\\x99\\x62\\xec\\x14\\x89\\x54\\x29\\xdc\\xe1\\xb1\\x0a\\xcb\\x2d\\xf5\\xbe\\xb2\\x53\\x60\\x1b\\xd9\\xe1\\x74\\xd0\\x79\\x6d\\xef\\x15\\x54\\xc6\\xa6\\x71\\x1f\\xfd\\x40\\xb1\\xc8\\x6b\\x80\\x9d\\x38\\xec\\x2c\\xf6\\x92\\x7c\\x17\\x16\\xdf\\xf1\\xc7\\x4a\\x4f\\x61\\x7d\\x09\\xda\\x5e\\xd0\\xab\\xe0\\x41\\x71\\xd4\\x7b\\xc3\\x36\\x34\\xed\\x5e\\xca\\x92\\x52\\x73\\x2b\\x84\\x62\\x13\\xc9\\x3f\\x92\\xe7\\x20\\x6a\\xac\\x6b\\x1f\\x53\\xba\\xc3\\xcd\\xc7\\x87\\xec\\xc5\\xa6\\x0d\\x69\\x29\\xe8\\x4e\\x23\\x26\\x44\\x32\\xfb\\x5e\\x47\\x1e\\x85\\x8a\\x96\\xd3\\x9d\\x94\\xb2\\x92\\xba\\xd0\\xa7\\xd9\\x3c\\xbe\\xf7\\xf4\\xda\\xf8\\xfc\\x11\\x9d\\x3f\\xe7\\xa3\\x5d\\x9f\\xcf\\x1d\\x27\\x5a\\x0b\\xae\\x63\\xb7\\x4e\\x66\\x02\\x74\\x8e\\x23\\x52\\x01\\x21\\x58\\x80\\x1d\\x7e\\xb8\\xcf\\x17\\x34\\x88\\x05\\x3b\\x59\\xb6\\xd2\\xad\\xfa\\x99\\xc2\\x56\\xa4\\xb8\\x78\\xbf\\xa4\\xfb\\xbe\\xde\\x28\\xdc\\x80\\x2c\\x7a\\x29\\x5b\\x2e\\xc7\\x14\\x78\\xac\\x29\\x18\\x8a\\xfd\\x45\\xc2\\x17\\x53\\x63\\xe9\\x35\\x01\\x4b\\x4f\\xb5\\xce\\xfa\\xc5\\x38\\x1f\\xee\\x0b\\x6c\\x98\\xf5\\x3d\\xbb\\xdf\\x95\\xb4\\x1b\\x49\\x2d\\x7a\\x61\\x40\\x6a\\x83\\x97\\x53\\x72\\x92\\xc0\\x81\\x21\\xd5\\x76\\xf3\\xac\\x63\\x75\\xaf\\xa5\\xc8\\x3c\\x1c\\x99\\xe1\\x82\\x39\\xb0\\x85\\xd7\\x5b\\xc4\\xb8\\x48\\xb7\\xbd\\x60\\x34\\x7b\\xb6\\xba\\x06\\x20\\x54\\xb3\\x37\\x0c\\x34\\x50\\x38\\x13\\x6e\\x77\\xc0\\x9f\\xf6\\x3d\\xfe\\x74\\xec\\x41\\x35\\xb6\\xd2\\x6b\\x0b\\x18\\x27\\x00\\x91\\x71\\x5e\\xcc\\x6e\\x18\\xee\\x5e\\x3e\\x72\\xd4\\xbc\\x2d\\x64\\xe5\\xd8\\x0a\\x1c\\x2b\\x3a\\x10\\x1a\\x94\\xfa\\x0a\\x9d\\x44\\x1c\\x94\\x1f\\xc6\\xeb\\x5e\\x30\\xae\\x58\\x92\\xed\\xb5\\xc8\\xd1\\x0f\\xea\\xf0\\xac\\xd6\\x99\\xda\\xdb\\xc8\\xc3\\x13\\x72\\xba\\x1c\\x93\\x48\\xfc\\x5d\\xc0\\x65\\x29\\xd1\\x35\\x15\\x5a\\xd8\\x51\\x9b\\x90\\xce\\x52\\x82\\x8d\\xfb\\xc5\\x9c\\xf7\\x3a\\xf7\\x7a\\x23\\x22\\xeb\\x63\\xb2\\xfb\\x41\\x88\\x7d\\x65\\x68\\x41\\x43\\x31\\xa1\\xb2\\x68\\xea\\x6e\\x2c\\x1f\\x75\\x86\\x82\\x8c\\x4d\\xdd\\xae\\xdc\\x06\\x76\\xf5\\x4b\\x97\\xa4\\x7e\\xce\\xde\\xf7\\x91\\xd9\\xc2\\xb2\\x0d\\x04\\x61\\x33\\x4c\\x02\\x23\\x72\\x86\\x76\\x44\\xeb\\xd7\\x8b\\xd3\\x3a\\xec\\x6f\\xf5\\x26\\xcd\\x15\\xce\\x23\\xe9\\x98\\xef\\x5a\\x72\\xd1\\x69\\x4a\\x21\\x1f\\xe7\\x8b\\x71\\x01\\xdb\\x6c\\xaa\\xb9\\xf4\\x88\\xd1\\x41\\x35\\x6c\\x36\\xb5\\x58\\x53\\x01\\xdb\\x35\\xaa\\x4f\\xcf\\xcd\\x17\\x8f\\x92\\x34\\xdd\\xa6\\x1a\\x49\\xac\\x44\\x82\\xfb\\x3b\\x35\\xf2\\x6c\\x11\\x3c\\x19\\x5e\\xa1\\x31\\x05\\x8c\\xc7\\x69\\x1a\\xcc\\x8b\\x9d\\x77\\x8c\\x20\\xf8\\x0d\\x12\\x6a\\x45\\x87\\x6b\\x50\\x5e\\xc9\\xa5\\xd0\\x09\\x18\\x09\\x6f\\x03\\xe9\\x55\\x74\\x1f\\xa0\\xb1\\xe5\\xd4\\xa9\\xd3\\xa2\\x1f\\x7b\\x12\\x6b\\xe2\\xea\\x0b\\xcc\\x2b\\x6c\\x45\\xc6\\xa4\\x58\\xe9\\x06\\xd0\\xb0\\x63\\xf9\\xdd\\xc3\\xc1\\x9d\\x73\\x47\\x40\\x9f\\x61\\x95\\xdc\\xd5\\x1a\\xc5\\xb3\\xa6\\x13\\x21\\x94\\x7e\\x8d\\x67\\x8d\\x95\\xd5\\xa2\\xd6\\x76\\xf1\\x46\\x1d\\xf0\\x22\\xa7\\xd2\\x0b\\x79\\xb9\\x3e\\x20\\x79\\x52\\xf2\\x25\\x52\\xf7\\x21\\x25\\x4a\\x8a\\x7e\\x3a\\xd8\\xb1\\xd3\\x58\\x34\\x57\\x73\\xa7\\x06\\xee\\x50\\xb4\\x28\\xa9\\x6d\\xf0\\xe2\\x6a\\x6b\\xae\\xf4\\x3b\\x82\\x7e\\x72\\x0e\\x5e\\x3d\\x72\\xa9\\x7c\\xc6\\x64\\xc2\\x87\\xe7\\xc1\\xa1\\x06\\x41\\x13\\x9c\\x1c\\x05\\xff\\x06\\x5c\\xd4\\x39\\x75\\x62\\x73\\xba\\xcb\\xc5\\xd4\\xf6\\x3a\\x47\\xb0\\x52\\x04\\x14\\x5e\\x1e\\x03\\x36\\x2c\\x58\\xc3\\xba\\xeb\\xe1\\x53\\x5c\\x4b\\x59\\xed\\xe0\\x4d\\x48\\x86\\xe1\\x3c\\x11\\xdb\\xb9\\xe2\\x8d\\x4a\\xe0\\xd0\\xca\\x36\\x65\\x41\\x17\\x1d\\xe3\\x2c\\x58\\x7a\\x82\\x10\\x01\\x81\\x81\\x2e\\xa7\\xd2\\x68\\x2c\\xbe\\x62\\x1b\\x2c\\xa7\\xc3\\x25\\x9e\\xf6\\x70\\x42\\x40\\x20\\xbc\\xa6\\x63\\xed\\x96\\x73\\xc4\\xb6\\x9c\\x60\\x96\\xe7\\x57\\x91\\xfa\\x68\\xcb\\xf0\\x46\\xb4\\x82\\xc3\\x14\\xae\\x8f\\x27\\x9e\\x47\\xcf\\x1f\\xee\\xab\\xb9\\x20\\x90\\x60\\x10\\x88\\x31\\xb7\\x94\\x8e\\xd4\\x26\\x23\\x3a\\x82\\x37\\x8b\\x8d\\x0a\\xd2\\x86\\x15\\xd1\\x8d\\x8b\\x9b\\x22\\x57\\x4c\\x74\\xc4\\xd0\\xb5\\x70\\x9a\\x43\\xbc\\x0d\\x5b\\xa1\\xe9\\xc9\\x6b\\x18\\xf2\\x16\\x03\\xfb\\xc5\\xa3\\x38\\xbe\\x03\\xaf\\x59\\x6f\\xfd\\x92\\x92\\x67\\x32\\xbe\\x50\\x1f\\x7c\\x56\\xeb\\x17\\x22\\x1b\\x3b\\x8c\\xfb\\xec\\x0c\\x3f\\x19\\x12\\xed\\x13\\xdb\\x10\\x1a\\x3c\\xa3\\xd8\\x92\\x15\\x1e\\xa9\\x55\\x6f\\x91\\x7b\\xf1\\xab\\x3a\\x69\\xcb\\xb2\\x6c\\x30\\xe9\\x83\\x09\\x6b\\xdf\\x88\\xe0\\x87\\x31\\x62\\x5f\\x96\\x7f\\xc4\\x5d\\xaf\\x34\\x44\\xb4\\x82\\x43\\x48\\xf9\\x90\\x2c\\x08\\xa8\\x81\\x71\\xda\\x7c\\xba\\xc0\\x19\\x6e\\xac\\x96\\x95\\x66\\x8d\\xb6\\xba\\x94\\xf8\\xd6\\x5b\\x5d\\xfd\\xf2\\x11\\x8c\\xbb\\xcd\\x0f\\xb4\\x2f\\x7e\\xa0\\xfd\\x11\\x3f\\xb0\\x83\\x1f\\xd0\\x63\\x7e\\x70\\x9c\\xc0\\xb0\\x06\\xb9\\x58\\xfc\\x3c\\x5d\\x57\\x3e\\x93\\xef\\x5a\\xc9\\xb2\\xc3\\x0e\\x70\\x42\\xec\\x08\\xf7\\x76\\x22\\x8f\\x99\\xec\\xed\\x24\\x7d\\x20\\xb7\\xcf\\x49\\xd2\\xa7\\xa5\\xb5\\x93\\xb2\\xef\\xc8\\xdf\\xa1\\xec\\x48\\xa8\\x74\\xd2\\x92\\xd0\\xd9\\xdb\\x49\\x86\\x23\\xa5\\xd9\\x49\\x8a\\x36\\x52\\xdb\\x89\\x4b\\x59\\xc8\\x7e\\x77\\x22\\x1e\\x60\\x11\\xa7\\x6a\\x75\\xc9\\xc4\\x13\\x65\\x4c\\x15\\x69\\x27\\x56\\x99\\x2b\\x36\\x1f\\xae\\xef\\xc8\\x75\\x62\\xbb\\x6b\\xe0\\xa4\\x84\\x6f\\x3b\\x31\\x72\\xf4\\x80\\x3b\\x11\\xb0\\xc2\\x09\\x0e\\x56\\x98\\x9e\\x0b\\xf5\\x40\\x58\\x77\\x71\\x6a\\x84\\xf6\\xfc\\x0e\\x23\\x3b\\x36\\x57\\x93\\x16\\x23\\xf3\\x8f\\x19\\x59\\x8d\\xe8\\xf7\\x8c\\xcc\\x0e\\x46\\x66\\x57\\x46\\xd6\\x9e\\x67\\x64\\x7a\\x30\\x32\\x3e\\x18\\x19\\x21\\x3c\\x66\\xb0\\x23\\x3c\\x66\\xf8\\xb8\\xe3\\x34\\xd8\\xcc\\x87\\x21\\x78\\xa7\\xc1\\xa8\\x69\\x82\\x7b\\xb3\\xd3\\xac\\x67\\x0b\\x34\\xfc\\x30\\x63\\xe3\\x83\\xb1\\xd9\\xf3\\x8c\\xed\\x97\\x8f\\x72\\x5a\\x3c\\x93\\x15\\x27\\x5b\\x32\\xed\\x48\\x67\\x50\\xba\\x9d\\xc1\\xb6\\x6b\\x32\\x3d\\xaf\\xd0\\x29\\xc6\\xef\\x42\\xa7\\x18\\xcb\\xe5\\xa6\\x77\\x5a\\xee\\x75\\x03\\x56\\x7b\\x5f\\x1e\\x6d\\x25\\x56\\xe4\\x52\\x50\\x73\\x0c\\x69\\x83\\x96\\xb7\\xd4\\x18\\x84\\x78\\xa8\\xd5\\xb7\\x05\\x94\\x34\\x0e\\x6c\\x0d\\x0f\\x49\\xbf\\xee\\xca\\x03\\xcf\\x59\\x5e\\x92\\x6f\\xa0\\xcd\\xd7\\x1f\\x77\\xed\\xf5\\x6d\\xbd\\xf5\\x48\\xfa\\x77\\x0e\\xf3\\xb5\\xf9\\x4f\\xbd\\xf4\\x77\\xee\\xb2\\x36\\xff\\x83\\xea\\x2b\\xeb\\xef\\x3e\\xf8\\xe1\\x1e\\x16\\x15\\x71\\xdf\\x97\\x69\\x85\\xb8\\x1d\\xe9\\x63\\xe4\\xf0\\xfb\\x0c\\xdb\\x57\\x5a\\xca\\x38\\x96\\x98\\x16\\xa3\\x44\\x4a\\x08\\xf7\\x7d\\x9d\\x14\\x27\\x80\\xbd\\x34\\x69\\x3d\\xc5\\x4e\\xbb\\xc3\\xae\\xeb\\xd4\\x2c\\x6c\\x5d\\xba\\x7e\\xeb\\xe9\\x4e\\xfe\\xe7\\x8f\\x3b\\xf9\\x9f\\x6f\\x77\\x32\\x73\\x75\\x72\\xa8\\x5d\\x4e\\xb1\\x8f\\x52\\x9f\\x88\\x08\\xc6\\xe1\\x13\\xe5\\x4a\\x0d\\x75\\x12\\xb6\\x15\\x15\\xa1\\x7d\\xc0\\xad\\xec\\xa4\\x12\\x7b\\xb1\\xec\\x13\\xc2\\x3d\\xc9\\xeb\\x44\\x11\\xf0\\x77\\x52\\xee\\x1b\\x17\\x8d\\xb2\\x8f\\x9d\\x11\\x77\\x18\\xd4\\x0a\\xb6\\x9d\\xe0\\x22\\x47\\x59\\x27\\x31\\x05\\xd4\\x15\\x39\\xb5\\xd7\\x2f\\xa3\\xef\\x0a\\xb8\\x3e\\x7a\\xfb\\x1d\\x3a\\xae\\x93\\x52\\xf3\\xb4\\x68\\x5d\\x0a\\x92\\xf7\\x76\\x8a\\x35\\xf2\\x99\\xc7\\xc8\\xbb\\x60\\xaf\\x28\\xf6\\x65\\xe5\\x26\\x6e\\x0e\\x3b\\x8e\\xca\\x52\\x69\\x6a\\xe4\\xd7\\x96\\x44\\x14\\xf5\\x8c\\x35\\xf2\\x08\\x13\\x16\\xb8\\x03\\x23\\x95\\x00\\xaf\\x4b\\x9c\\xbc\\x9e\\xc2\\xc8\\x8f\\x35\\x05\\xeb\\x85\\x98\\x94\\xe5\\x1c\\x7a\\x43\\x5d\\xff\\xeb\\x8f\\x47\\xfe\\x76\\x96\\x1f\\x45\\x94\\xa2\\x6d\\xe2\\xdc\\x24\\x96\\x57\\x89\\x5f\\xf5\\x11\\xbe\\x58\\xfa\\xa6\\x43\\x5a\\xb0\\x6f\\x10\\xbe\\x8b\\xcb\\xba\\xc0\\x2c\\xe6\\x42\\x1b\\xdc\\x2c\\xfb\\x79\\xa4\\x6d\\xc7\\xbb\\x9e\\x6e\\xd1\\x9b\\x47\\xf1\\x27\\xcf\\x2f\\xf8\\xfa\\xfe\\x33\\x0b\\x9e\\x24\\x6c\\xfd\\x60\\xb7\\x36\\x26\\xbf\\xfa\\xf8\\x7b\\xb7\\xcd\\x26\\xbc\\x62\\xd2\\x78\\x63\\xd7\\x96\\xa3\\xef\\xbc\\x3c\\x93\\xa3\\x89\\xc1\\xd7\\x36\\x27\\x84\\x30\\x44\\x10\\x1f\\x90\\xd4\\x03\\x49\\x3e\\xf7\\x58\\x9b\\xe2\\x63\\xb9\\xfe\\x75\\xf8\\xa0\\x2e\\x44\\xbf\\xc3\\x4f\\xfd\\xd8\\x64\\x42\\x24\\x12\\xe7\\xc4\\xf6\\xd1\\xe8\\xe3\\xd2\\xcf\\xe9\\x8c\\x1d\\xff\\x74\\x6e\\xa9\\x0e\\xa5\\xbe\\x18\\xcb\\xe8\\x0a\\xc6\\x52\\x4a\\x76\\x8a\\x2f\\x64\\x4f\\x3c\\x83\\xac\\x8d\\xf0\\x19\\x1d\\x31\\x1d\\xb0\\xb0\\xc7\\x65\\x10\\xed\\xc6\\x71\\x57\\x92\\x50\\x11\\xe5\\x41\\x53\\xbb\\xe3\\x4d\\x88\\x1f\\x57\\x03\\x59\\x20\\xc3\\xa9\\x67\\x1b\\x5e\\xcc\\x2d\\x17\\xab\\x38\\xb3\\xdd\\x60\\xbc\\x6f\\x1f\\x05\\x56\\xde\\x66\\xbc\\x48\\x3b\\x36\\x18\\xa1\\x42\\xc9\\xbc\\x5f\\x53\\x4a\\xa2\\x35\\x07\\x07\\xee\\x57\\x0e\\x7c\\x05\\x88\\xf0\\xf8\\x06\\x07\\x86\\xb1\\x01\\xe9\\x18\\x07\\x42\\x0a\\xe0\\x33\\xeb\\x23\\xc0\\x81\\xfb\\xc1\\x81\\x7b\\x5b\\x21\\x66\\xda\\x46\\x37\\x28\\x73\\x63\\xf8\\xc7\\x2a\\x0f\\x38\\x32\\x1f\\x1c\\x99\\xb1\\xd9\\x0d\\x8e\\x1c\\xdf\\x71\\xe4\\xea\\xaf\\xdc\\x0a\\x05\\x7c\\xf7\\x28\\x3b\\xcc\\x6d\\xd4\\xc2\\xdc\\xcc\\x68\\x27\\x64\\x96\\x18\\x0d\\x51\\x19\\x3e\\x26\\x57\\xf7\\x55\\xa6\\x22\\x59\\x4c\\x21\\x57\\xba\\xca\\x1d\\xbe\\xca\\x1d\\x04\\x96\\x79\\x9f\\x19\\x8a\\x7b\\x61\\x20\\x0b\\xcf\\xe5\\x06\\x60\\x46\\x17\\x18\\x15\\xea\\x8f\\x35\\x8a\\xc1\\x90\\xeb\\x89\\x28\\xf5\\x81\\x4c\\x86\\xcc\\xdf\\xfb\\x98\\xf4\\x95\\x74\\x43\\x11\\xb4\\x3e\\x19\\xd1\\x0c\\x63\\x19\\x97\\x0a\\x0d\\x54\\x4b\\x81\\x06\\xe8\\xe1\\x5e\\x7a\\xdc\\x01\\x0d\\x20\\x19\\x63\\xb6\\x42\\xb7\\x12\\x2b\\xd6\\x98\\xf5\\x58\\xe0\\xbe\\xde\\xbd\\x7c\\x69\\x69\\x29\\xd0\\x85\\xa8\\x9d\\x67\\xcd\\x18\\xc3\\x9f\\xa4\\xb8\\x84\\xcf\\x84\\x01\\x06\\x2f\\xdf\\xeb\\xdc\\x61\\x12\\x2b\\xa9\\xbe\\xee\\x1d\\xd2\\x67\\x3d\\x9b\\x14\\x18\\x09\\x20\\x6e\\xf1\\xa5\\x92\\x16\\xe9\\xd0\\x98\\x88\\x22\\x81\\x1f\\xa0\\xb7\\xe8\\x32\\xab\\x6d\\xc7\\x20\\x3c\\x3d\\x49\\x5f\\x3f\\xca\\x4c\\xf5\\xbc\\xb7\\xde\\x32\\xd0\\x8c\\x38\\x0c\\x34\\x96\\xcb\\x40\\x13\\x71\\x18\\x68\\x74\\x19\\x68\\x0e\\x85\\xc8\\x8f\\x70\\x74\\xb0\\xd9\\x29\\x86\\x14\\x0c\\x97\\x93\\x92\\x23\\xbe\\xec\\x58\\x3d\\xb5\\xcc\\xa9\\x10\\xe7\\x0e\\x03\\x6f\\x17\\x6a\\x8a\\xd0\\x56\\xf7\\x09\\xdb\\xd5\\xb2\\xd1\\xc8\\x75\\x99\\x1f\\x1a\\x6d\\x7d\\x74\\xd9\\x68\\xb0\\x24\\xe1\\xc5\\x1f\\xbf\\x6b\\xa3\\xe1\\xc3\\x46\\xc3\\xcb\\x46\\x33\\x6c\\xd9\\x68\\xe4\\xb0\\xd1\\x20\\x44\\x54\\x10\\x68\\x84\\x85\\x4e\\xb6\\x16\\x7a\\x21\\xe5\\xae\\x68\\x6d\\x64\\x5c\\x38\\x7c\\x2f\\x88\\xc5\\xc4\\x2b\\x6c\\x3e\\x78\\x7a\\x3f\\x32\\xaa\\xc0\\x89\\x92\\x8e\\x4d\\x29\\xc1\\xbb\\xd9\\x56\\x7c\\xb5\\x14\\x25\\x76\\x7e\\xde\\x06\\xf3\\x37\\x8f\\x42\\xd6\\xfe\\x2b\\x70\\xbd\\x3e\\xc6\\xf5\\x71\\xc5\\xf5\\x72\\xc5\\xf5\\x7e\\xe8\\xf9\\x45\\x21\\x61\\xdb\\x58\\xa9\\x6d\\x79\\xe9\\xfa\\x98\\x8d\\xe1\\x71\\xc9\\xb1\\x23\\xdd\\xe9\\x01\\x51\\xe8\\x48\\xdb\\xf7\\xbb\\x9a\\x3e\\x2f\\x92\\xb0\\xbf\\x35\\x40\\xbe\\x2b\\x50\\x5a\\x23\\x21\\xe9\\x18\\x19\\x1d\\x81\\xed\\x3b\\xe4\\x9b\\x45\\x78\\x7d\\x1e\\xc9\\x48\\x12\\x2a\\x28\\x34\\xfb\\xb0\\xcb\\xe8\\xb9\\x17\\x84\\x1f\\x88\\x68\\xd7\\x36\\xdc\\x80\\xa5\\x92\\xfa\\x01\\x88\\x73\\x3a\\xf3\\x61\\x95\\xb1\\x45\\x02\\x23\\x41\\x1a\\x92\\xcb\\x90\\x2b\\x2a\\x7f\\x3b\\x40\\xfc\\xfe\\xe3\\x59\\xb8\\x1d\\xbc\\x88\\x64\\xa7\\x35\\xb8\\x79\\x58\\x6f\\x5b\\x0a\\x86\\x9b\\x66\\x22\\xd9\\x69\\xfa\\x91\\xc5\\xa0\\xc3\\x03\\x2d\\x96\\x87\\xff\\x46\\xbd\\xba\\x92\\xb6\\x67\\xc2\\x0b\\x05\\xa2\\xa9\\xc4\\x4f\\x11\\x4c\\xd2\\xd8\\x83\\x70\\x6c\\x05\\x3f\\x86\\x25\\xd2\\x7c\\x7a\\x16\\x6e\\x10\\x5e\\x30\\xe8\\x5c\\x70\\xc2\\x70\\x5b\\x47\\xf6\\xe3\\xcc\\x6c\\xd0\\xdd\\xba\\xf5\\x79\\x6d\\xd8\\xd3\\xfd\\xfb\\xf0\\x28\\xfa\\xf7\\x99\\xed\\x47\\x69\\x3c\\x02\\x19\\xb7\\x05\\xd0\\xbc\\x23\\x74\\x6d\\x20\\x6f\\xae\\x21\\x3a\\x1f\\x11\\xf4\\x1c\\x4d\\x7d\\xf9\\x30\\x14\\x71\\xab\\x8d\\x23\\xa8\\x20\\x9a\\x45\\x4e\\x56\\x64\\x08\\x42\\xaa\\xe2\\x18\\xb6\\xd7\\x71\\xd8\\x4a\\x10\\x91\\x7d\\xac\\x40\\x0a\\x24\\x5f\\x86\\xa8\\x8a\\xc3\\xc1\\x60\\x99\\xee\\xf4\\xca\\xd8\\x21\\xce\\x1c\\xa6\\x3b\\xea\\x2b\\xd3\\x8a\\x23\\xf6\\x17\\x11\\x15\\xe1\\x7a\\x1e\\x83\\xf7\\x31\\xf8\\x2e\\x32\\x97\\x20\\x13\\x86\\x6b\\xda\\x40\\x2e\\xa5\\x68\\x29\\x8a\\x37\\x2f\\xd3\\xc4\\x5a\\x25\\x2b\\x45\\x4f\\xc0\\x25\\xb6\\x54\\x0c\\x5d\\x6d\\xc3\\xaa\\x29\\x35\\x0c\\x47\\x4b\\x08\\x80\\x10\\x85\\x43\\xa0\\x8f\\x9c\\xc6\\xb9\\x12\\x4d\\x98\\x35\\x2f\\xd5\\x1e\\x99\\x0b\\xa8\\x0d\\xd1\\xd2\\x04\\xe6\\x35\\x69\\x2d\\x75\\xcd\\xa6\\x2b\\xc7\\xcf\\x58\\x1b\\x12\\x75\\xc2\\x30\\xfc\\x23\\x55\\xe8\\xda\\x47\\xf7\\x15\\xb9\\xb2\\x32\\x57\\x2c\\x5f\\xab\\xfc\\xce\\x7c\\x94\\x48\\x1e\\x3b\\x62\\x72\\x8f\\x95\\xd0\\x38\\xac\\x89\\xc8\\x59\\xbc\\xef\\xe2\\x7a\\x87\\xbc\\x8e\\xd9\\x91\\x7f\\x05\\x01\\x83\\xa1\\x13\\xc9\\x71\\xb5\\x4f\\x3f\\xf2\\xd7\\x06\\x80\\xef\\xa2\\x1f\\x04\\xeb\\xac\\xd9\\x7d\\x7a\\x8d\\x7c\\xf3\\x28\\xdb\\xd7\\x33\\x9b\\xe2\\x70\\xb3\\xd3\\xab\\x01\\x83\\x75\\x19\\x30\\x88\\x2f\\x62\\x6b\\xd3\\x81\\xc7\\x40\\x98\\x3a\\x6b\\xc0\\xc5\\x83\\x46\\x4d\\x07\\x0c\\x2d\\x2b\\xc7\\x9a\\x94\\x2e\\xb2\\x34\\x63\\x78\\xc8\\x69\\x5f\\x81\\xaa\\x25\\x0b\\x73\\xd9\\xa8\\x10\\x86\\x48\\x9e\\x1b\\xb0\\xcb\\xca\\xe2\\xcc\\x0d\\xce\\x5b\\xd8\\xe1\\x87\\xf7\\xdd\\x69\\x6d\\x62\\x9c\\xc8\\x67\\xf8\\x4a\\xe0\\xe7\\xb9\\x1c\\x3d\\x6a\\xda\\xfb\\x5c\\x59\\x40\\xa6\\x9a\\xdc\\xd1\\xe8\\x53\\x4b\\x40\\x1b\\x2d\\xeb\\x90\\x5e\\xad\\x43\\xec\\x97\\xea\\x50\\x75\\xe1\\xe9\\xb1\\xf9\\xf6\\xd1\\x2e\\xdd\\x6d\\xfa\\x41\\x67\\x12\\xa1\\xa2\\xc5\\xa0\\xb5\\xc4\\xc1\\x44\\xe4\\x02\\xf2\\x79\\x1d\\x13\\xdc\\x7b\\xf3\\xc9\\xa3\\x00\\xd5\\x9a\\x60\\xa1\\x49\\x03\\x91\\xa2\\x87\\x4c\\x74\\xbb\\x5c\\x75\\x30\\x51\\xd8\\xf3\\x5b\\x69\\x27\\x70\\xb0\\xc8\\x5c\\x36\\x64\\xeb\\x2b\\x05\\x81\\x38\\x3a\\x0d\\x67\\x7e\\x37\\x0c\\x36\\xe2\\xec\\xba\\x7f\\x67\\x63\\x32\\x00\\xbf\\xd8\\x8e\\xf6\\x3d\\xdd\\xcb\\x5f\\x7d\\xdc\\xcb\\x5f\\xdd\\xf6\\xe8\\xce\\xd1\\xd8\\x7d\\x03\\xac\\xc9\\xdc\\x5c\\x04\\x7f\\x67\\x4d\\x31\\xbe\\x48\\x6c\\x9b\\x0f\\xe4\\xfb\\x53\\xc1\\xb6\\x3f\\x70\\xf1\\x18\\xdb\\xf1\\xec\\xd3\\x2d\\xf8\\xf5\\xc7\\x2d\\xf8\\xf5\\x6d\\x7c\\x2c\\x08\\x98\\x87\\xb7\\x03\\x4b\\x6c\\x32\\x02\\x7f\\xdb\\x72\\xc0\\xe4\\xb3\\x47\\x6e\\xc5\\x70\\xea\\xc7\\x62\\x62\\xcc\\xbc\\x21\\xc7\\x7d\\xf2\\x46\\x1d\\xc1\\x92\\x68\\x67\\xd2\\x96\\x4e\\x70\\xad\\xb0\\xcd\\x75\\xc5\\xe7\\x3b\\x8d\\x36\\xb0\\x85\\x4b\\xf8\\x5b\\xb9\\x7a\\xc2\\x31\\x36\\xbd\\xf6\\x84\\x78\\x3b\\xda\\xf0\\x74\\x4f\\x7e\\xf3\\x71\\x4f\\x6e\\x27\\xb3\\xf2\\x82\\x79\\x83\\x36\\x04\\x9e\\x1d\\x63\\x17\\x5b\\x20\\x21\\x4c\\x2c\\xbf\\xb8\\x7e\\x4e\\x56\\x28\\x86\\x5a\\x9f\\x65\\x47\\x66\\xc3\\xbe\\xd9\\xf5\\x26\\x84\\x7d\\xd5\\xaa\\x11\\xdb\\x8e\\xf7\\x3d\\xdd\\xaa\\xdf\\x7e\\xdc\\xaa\\xdf\\xde\\x9e\\xe1\\xc2\\xc8\\xa3\\x3e\\xda\\x1b\\x9b\\x6c\\x8b\\x05\\xa3\\x75\\x16\\x9b\\xaf\\x9a\\x05\\xb1\\xdb\\xc0\\x82\\xce\\x66\\x7e\\x98\\xdf\\x4a\\x18\\x9c\\x90\\xca\\x30\\x7b\\x3b\\x29\\xf5\\x59\\xda\\x35\\xec\\x09\\xac\\x63\\xd9\\x13\\x58\\x60\\x61\\xf0\\xc9\\x05\\xb5\\x55\\x18\\x48\\xe2\\xa4\\xec\\x93\\xb4\\x68\\x9a\\x69\\xa3\\x80\\x3d\\xa1\\xef\\x34\\x90\\xc1\\xb5\\x37\\x02\\x5d\\x07\\x4d\\x66\\x5a\\xa6\\x06\\x86\\x4b\\x57\\xe8\\x64\\x5f\\xe9\\x85\\x77\\xe9\\x72\\x07\\x73\\xa0\\x20\\xa3\\x83\\xe9\\x6a\\x06\\x32\\x55\\xd7\\x47\\x49\\x75\\x22\\xa9\\x5e\\xca\\x56\\xa2\\xcb\\x68\\xf3\\xeb\\x8c\\x86\\x6d\\x47\\xaf\\x9f\\x1e\\xbb\\xff\\xf2\\x28\\xed\\xe8\\x33\\x99\\x10\\xaf\\xa9\\x15\\x07\\xf6\\xe7\\xbd\\x5f\\x48\\x7c\\x1b\\xa5\\x3e\\x72\\x9e\\xc9\\xf3\\x4a\\x96\\x9a\\x97\\x34\\xda\\x8e\\x07\\x9e\\xfe\\xec\\xff\\xf5\\xfb\\x6e\\x12\\xaf\\x9e\\xf5\\x01\\xc9\\xa8\\x19\\x38\\xa2\\x53\\x4f\\x52\\x42\\xb1\\x7a\\x2c\\xb0\\x45\\xd5\\x38\\x65\\x87\\xf5\\xee\\xc4\\x44\\xd3\\xb5\\x46\\x85\\x0c\\x4e\\x89\\xa7\\x84\\x15\\x28\\xf3\\xc2\\x3e\\xf6\\x3a\\x85\\x91\\x4b\\xa4\\x61\\x33\\x98\\xa5\\x99\\xca\\xc5\\xc7\\xd8\\xd5\\xb5\\xf9\\x18\\xc8\\x61\\x10\\xc6\\xeb\\x31\\xe7\\x0b\\x91\\x30\\x1e\\x24\\x1a\\xd6\\x10\\x50\\xc7\\x72\\xe4\\x7e\\x12\\xb5\\x89\\xf2\\x33\\xaa\\x3c\\xc3\\x10\\x64\\x48\\x73\\x98\\xde\\x91\\x85\\x61\\x53\\x83\\x2c\\x63\\x4b\\xc4\\x1c\\x0c\\xde\\x13\\x91\\x57\\xa3\\x03\\xb8\\xc3\\x0d\\x18\\x69\\x74\\xc4\\x63\\x46\\xca\\xf2\\x02\\x8e\\x81\\x3c\\x2b\\x7c\\x49\\xe7\\x1d\\xfb\\xf6\\xca\\x0d\\xe9\\xc3\\x8c\\x11\\x3e\\xef\\xa4\\xbb\\x87\\x37\\xf3\\x81\\xdf\\x35\\x06\\x1e\\x62\\x1f\\x97\\xcc\\x3d\\x90\\x51\\x08\\x59\\x3e\\x4f\\xac\\x80\\xef\\x27\\x12\\x9b\\x03\\x8b\\x8d\\x62\\x56\\x6b\\x4e\\x6c\\xb4\\x5d\\x87\\xf5\\xe9\\x59\\xfa\\xbf\\x1f\\xbb\\xcd\\xdc\\x86\\x90\\x5e\\x34\\x23\\x39\\xce\\xa6\\xd7\\x28\\xe5\\x91\\x97\\xfa\\xe5\\xe9\\x57\\xff\\x3f\\x4f\\x2c\\x80\\xe7\\xbd\\x64\\x6a\\xa6\\xaa\\xcd\\xbb\\x80\\x76\\x0a\\x8d\\x20\\x6e\\x82\\x02\\xd9\\x13\\x4e\\x74\\xec\\x04\\x9d\\x4a\\x34\\x95\\xf6\\xb8\\x26\\xbc\\x4e\\x8b\\x8f\\x16\\xd7\\xab\\x09\\x0f\\xe7\\x35\\x7c\\xe0\\x8a\\x84\\xdf\\xc3\\x68\\x3d\\x72\\x9d\\x6c\\xc3\\x6e\\x46\\x0a\\xf2\\xb8\\x61\\x4a\\x60\\x22\\x16\\x24\\x89\\x1f\\x6b\\xda\\x04\\x11\\x66\\x83\\x37\\x41\\xf1\\x91\\x8c\\xb5\\x15\\x6f\\x69\\x4d\\x3d\\xd6\\xf4\\x1b\\x52\\x72\\xf3\\x32\\x3b\\x60\\x89\\xc0\\x03\\x5a\\x50\\xb5\\x82\\x0f\\x67\\x54\\xa6\\xdf\\x99\\x6c\\x5e\\x56\\xcc\\xc8\\xde\\xc2\\x04\\x13\\xe5\\x63\\x5c\\x4c\\x65\\x1f\\x96\\xcd\\x6a\\x21\\xc0\\x8f\\x31\\xf0\\xe0\\x75\\xc2\\x21\\x40\\x9b\\xd7\\xb4\\x96\\x62\\x0e\\xbf\\x12\\x38\\x77\\x62\\x43\\x82\\x66\\xb5\\xb1\\xe6\\x79\\xbb\\x8e\\xe2\\xd3\\xb3\\xf2\\xff\\x3e\\xe1\\x47\\xf4\\xcd\\xeb\\x37\\x5f\\x3c\\xe3\\xb7\\x53\\x02\\x3e\\x14\\xd5\\x33\\x10\\x77\\x8f\\x5d\\xa0\\xe6\\x04\\xdf\\x02\\x6f\\xd6\\x6d\\x85\\x93\\x28\\xb2\\x3a\\xe4\\xf7\\x99\\x38\\x4b\\x85\\x4b\\x6e\\x4a\\x34\\xa3\\xf4\\x33\\x19\\xd3\\x25\\x9a\\x0e\\x9e\\xb6\\x7a\\xba\\x5b\\xd7\\x66\\x63\\xa5\\x75\\xab\\x37\\x22\\x95\\xa0\\x24\\xaa\\x3f\\x14\\x1a\\xe4\\x21\\xcd\\xd9\\x90\\x80\\xc1\\x86\\xa3\\x94\\x8c\\xf1\\x40\\xe1\\x10\\x35\\x2f\\xb9\\xa6\\x21\\xbb\\x16\\x49\\x67\\x8b\\xde\\x2c\\x73\\x92\\xd0\\x5d\\x74\\x45\\x98\\x64\\x84\\xe1\\xa5\\xa3\\x33\\x94\\xe1\\xd1\\x19\\x4e\\xce\\x91\\x32\\x8d\\x00\\x3c\\xa6\\x25\\xb7\\xa8\\x29\\xf4\\x6c\\x2b\\x6c\\xc2\\x11\\x47\\x10\\xa1\\x2b\\xbd\\x5f\\x94\\xa0\\xb0\\x3d\\x49\\xeb\\x08\\x8f\\x7c\\x1b\\xa5\\x39\\x45\\x73\\x86\\xb5\\x4a\\x9a\\x8f\\x1a\\x06\\xf5\\x16\\x36\\xb6\\xeb\\x98\\xdd\\xc8\\x3d\\xf3\\xcf\\x7f\\xf3\\x82\\xfe\\xf8\\xa9\\x02\\x5a\\x5f\\xbc\\xfb\\xf5\\x33\\x59\\x5f\\x96\\x1f\\xf6\\x39\\x7a\\x5c\\x4e\\x12\\x7c\\x36\\xe6\\x8b\\x13\\x3d\\xdc\\x07\\x8f\\x96\\xd9\\x61\\x5b\\xaa\\xc6\\xd5\\x2a\\x59\\x5e\\x1c\\xd2\\xc6\\xa0\\xdd\\xcc\\xeb\\xd8\\x8c\\x03\\xca\\x1b\\x2c\\x83\\xd9\\xf7\\x65\\x93\\x93\\x81\\x0b\\xd0\\xb4\\x0f\\x33\\x95\\x5c\\x37\\xdb\\xa5\\x21\\x8c\\xba\\x07\\xcd\\xe3\\x23\\xb7\\xbb\\xc4\\x8f\\xba\\xf4\\x6c\\xad\\x9d\\x2b\\xd4\\x2f\\xae\\xb2\\x5c\\x33\\x7c\\xb9\\x66\\x60\\x9d\\x97\\x5e\\xd8\\x0f\\xd7\\x0c\\xbd\\xba\\x66\\xe4\\xa1\\x8f\\x44\\xb5\\x55\\xb3\\x31\\xe5\\x4c\\xc4\\xf3\\x0b\\xc2\\xfe\\x84\\x67\\x20\\x01\\xb7\\x5c\\x4e\\xac\\x76\\x36\\x91\\xcb\\x89\\xfa\\x5e\\xa2\\x7b\\x34\\x41\\x86\\x8a\\xc9\\x45\\xca\\x31\\x26\\x95\\xc8\\x94\\x80\\xe0\\xfe\\xde\\x4d\\x23\\x9a\\x5b\\x94\\x3a\\x8f\\x54\\x92\\x8c\\xc8\\x0b\\x99\\xa5\\xb6\\x20\\x50\\xc2\\x10\\x7a\\x96\\x7c\\x21\\xa1\\x71\\x0e\\x1a\\x97\\xa2\\x80\\x3d\\x16\\x4e\\x54\\x68\\x72\\xd0\\x6a\\xb1\\xd3\\x0d\\x5f\\x0d\\x63\\xb8\\x58\\x61\\x63\\x7a\\x39\\x6d\\xe8\\x9e\\x5d\\x96\\xd3\\xc6\\x90\\xc3\\x69\\x23\\x0e\\xa7\\x0d\\x3d\\x2c\\x98\\xb9\\x14\\x3f\\x24\\xee\\xec\\x88\\xe1\\x48\\xf2\\x59\\xf0\\x7b\\x39\\x6d\\xe4\\x32\\x0f\\x88\\x7c\\xef\\xb4\\x51\\xd2\\x0e\\x4e\\x1b\\xe3\\x70\\xda\\xc8\\xe5\\xb4\\x51\\x12\\x07\\x4e\\x1b\\x79\\xdb\\x69\\xa3\\x66\\x4f\\x1e\\x67\\xda\\xfa\\xe6\\xd5\\xfb\\x37\\xaf\\xdf\\xde\\xde\\xb0\\x2d\\x0d\\xd8\\xd9\\x37\\x0d\\x2a\\xc5\\x00\\xbb\\x91\\x52\\x92\\xca\\x4a\\x4a\\xd9\\x44\\x11\\xa8\\x82\\x13\\xa4\\x45\\x10\\xba\\xf2\\x5a\\xc3\\xd9\\xf1\\x4c\\xc9\\x3b\\x53\\x22\\x3b\\x04\\x4b\\x34\\x1a\\x0e\\x07\\x1a\\xb6\\x0e\\xf5\\x42\\x38\\x10\\x2b\\xac\\xbd\\x6f\\x88\\x44\\x61\\x47\\x4e\\xec\\x88\\x71\\xe6\\x10\\x98\\xe6\\x4b\\xcf\\xda\\x71\\x42\\xa5\\xad\\x20\\x07\\x11\\x33\\x80\\x13\\x89\\x2d\\xd7\\x3b\\x24\\x9e\\x8e\\x9e\\x2b\\x6b\\x1e\\x9c\\xbf\\x11\\x62\\x70\\x8d\\xcf\\x59\\x2a\\x99\\x78\\x69\\x6d\\xf5\\x5c\\xe9\\x7d\\x48\\x9f\\x4d\\x7d\\xe4\\xca\\x75\\x20\\x8c\\x14\\x30\\x48\\x92\\x4b\\x84\\x64\\x49\\xd8\\x8a\\x4f\\x94\\xd4\\x41\\xe5\\x91\\x65\\x1d\\x65\\xdb\\x5d\\xaf\\x95\\x47\\xa0\\xd6\\x74\\x9f\\x46\\xa8\\x74\\xd4\\x91\\xd9\\x9f\\xc8\\xfb\\x0a\\xd3\\xeb\\x92\\x1b\\x0a\\x8f\\xc5\\x38\\x47\\x8c\\x4b\\xf5\\x4f\\x6f\\x65\\xc8\\xaa\\xd9\\xd1\\xc7\\xb4\\xf5\\xed\\xfb\\xf7\\xaf\\xde\\xbe\\xbc\\x0d\\x84\\x53\\xa8\\x0d\\xdd\\xa1\\x4f\\x29\\xd2\\xc1\\x2c\\x53\\xc5\\x0a\\x29\\x38\\xd4\\xb9\\xb0\\x16\\x2b\\x11\\x2f\\x6f\\x8c\\x8b\\xbe\\x11\\xf6\\x17\\x73\\x63\\xb2\\xc6\\xac\\x48\\xba\\xc9\\x85\\x56\\x8a\\xc2\\xbc\\xcf\\x52\\x7d\\x8d\\x6c\\x47\\x10\\x2e\\x12\\x7c\\x20\\xbd\\xcd\\x64\\x96\\x36\\xb8\\xe3\\xf9\\x54\\xc5\\xfb\\x6a\\xd5\\x2f\\x13\\xa9\\x95\\xec\\x44\\xd2\\x3f\\x42\\xc6\\x2a\\xea\\x6c\\xcb\\x74\\xd2\\x35\\xf7\\x40\\x14\\xba\\x62\\xc7\\x74\\x5d\\x4a\\x1a\\x2d\\x0d\\x71\\x5e\\x2b\\xf5\\xc8\\x46\\x85\\xb5\\xeb\\xc5\\x60\\xb2\\x83\\x7c\\x47\\xdc\\x04\\x12\\x4e\\x50\\x1f\\xcd\\xc3\\x27\\xf6\\x9e\\xd0\\xb8\\x3a\\x41\\x91\\x2a\\xa2\\xde\\x56\\xca\\x14\\xd3\\xc6\\x3c\\xd6\\x7b\\xaa\\x83\\x78\\xf5\\x89\\x63\\x5b\\x43\\xf5\\x70\\x2f\\x1d\\x09\\x26\\xf6\\x3a\\xaa\\x12\\xb0\\x38\\x62\\xeb\\x3b\\x37\\xf6\\x3e\\x51\\xcb\\x60\\x1c\\x3b\\x6d\\x46\\x7b\\x60\\x63\\x8a\\x56\\xad\\x94\\xd1\\x67\\x51\\x3f\\xdb\\x4a\\x6b\\x52\\xcf\\xa5\\xad\\x91\\xc2\\x71\\xc0\\x7f\\x0e\\x99\\x11\\x07\\x5c\\x4a\\x7a\\xe1\\x94\\xbb\\x71\\x84\\xc0\\x8c\\x18\\x7b\\x89\\x96\\x11\\xa3\\x59\\x2f\\x38\\x98\\x48\\xfb\\x18\\x51\\x64\\xae\\x78\\xee\\x68\\xdf\\xed\\x45\\x62\\x8f\\x16\\xc9\\x6f\\x9f\\x49\\x2c\\x8b\\x18\\xdf\\xc8\\x2d\\xc7\\x35\\x3d\\x34\\xa5\\x6d\\x25\\xf1\\x02\\xbe\\x54\\x59\\xa2\\xc5\\xce\\xd1\\x15\\xb5\\x3c\\x9c\\xe4\\xa2\\x7a\\x5c\\x10\\xf6\\x73\\x74\\x6c\\x39\\xd1\\xc0\\x5f\\x24\\x03\\x97\\xeb\\xef\\x7a\\xac\\xfe\\xae\\xf7\\xa8\\xe9\\x26\\xdf\\x39\\xf9\\xdb\\x76\\x7c\\xf5\\x76\\x17\\xfc\\x8f\\x1f\\xa3\\xc6\\x77\\x7f\\xfd\\xea\\xed\\x73\\xb0\\xd4\\x08\\x5a\\x55\\xbf\\x18\\xd3\\xd9\\xd3\\x2f\\xf5\\xc7\\xca\\xe6\\xe5\\xe9\\x25\\xbe\\xea\\x8f\\x6b\\xd5\\x49\\xbf\\xf8\\x2d\\xbc\\x5a\\x9f\\x8f\\xdf\\x4b\\x37\\xf8\\xf2\\xd9\\x44\\x6c\\x48\\xbe\\xa5\\x42\\x3b\\x4e\\x04\\xeb\\x19\\x09\\x1f\\x6b\\xf6\\x51\\xab\\x65\\xa7\\x8e\\x6c\\x29\\x6b\\x1b\\xa8\\x69\\x5f\\xa0\\x09\\x1e\\x23\\xeb\\x0c\\x91\\x85\\x7d\\x6d\\x31\\xeb\\x2c\\xa5\\xfe\\x24\\x99\\xc8\\x65\\x73\\xd2\\x12\\xc9\\xa5\\xb4\\x6a\\xda\\x6e\\xd4\\x71\\xd2\\x94\\x70\\x49\\x26\\x5b\\xfd\\xd2\\x8b\\x28\\x79\\x6d\\x4c\\x8f\\x68\\x27\\xd7\\x8d\\x83\\x0b\\x26\\xee\\x38\\xa2\\x69\\x9d\\xef\\x4e\\x94\\x82\\xa2\\x3a\\x27\\x1e\\xfd\\x50\\x78\\x79\\xac\\xf7\\x8b\\xca\\xee\\xb1\\x4e\\xda\\xb1\\xb7\\xbe\\xa2\\xdc\\x4e\\x3c\\x64\\x0e\\x68\\xa3\\x47\\xb8\\xec\\xa9\\xe4\\x36\\x4e\\x60\\x08\\x2a\\x9d\\x38\\xa0\\x81\\x90\\xcf\\x60\\x69\\x41\\x2b\\x01\\x18\\xfb\\x8e\\x6d\\x07\\xb3\\x15\\x8b\\x33\\x72\\x72\\xa9\\xe5\\x21\\x93\\x18\\x9e\\xce\\xb3\\xf0\\xb7\\xd1\\x9e\\x82\\x94\\xfb\\x48\\x0e\\x4d\\x3a\\x19\\xbb\\xe1\\xb6\\x97\\x82\\x0e\\xa7\\x26\\x6c\\x90\\x31\\xea\\x5d\\x15\\x41\\xef\\xeb\\x24\\x61\\x1c\\x5c\\x51\\xcc\\xbc\\xd2\\x03\\xc4\\x3c\\xea\\xf0\\xf5\\xe9\\xec\\x8b\\xeb\\x87\\x5e\\xf3\\xf6\\x5e\\x0b\\x20\\x25\\xdc\\x41\\x1d\\xb1\\x98\\xb2\\x52\\xee\\x1f\\x4c\\x5f\\xed\\x9c\\x22\\x48\\x48\\x04\\xf0\\xb3\\x98\\xbe\\xe9\\x1c\\x88\\x27\\x53\\x59\\xa9\\xe7\\xa5\\xcb\\x91\\x08\\x03\\x09\\x6e\\xe8\\xa8\\x60\\x01\\xbf\\xd6\\x9e\\x90\\xd3\\xc4\\xae\\xab\\x9c\\x42\\xc9\\x8c\\xc2\\xe4\\x44\\xc4\\x70\\x70\\x43\\xf5\\xbf\\xb5\\x51\\xca\\x0a\\xeb\\x6d\\x1e\\xdc\\x25\\xfb\\x32\\x3b\\x0e\\x53\\x64\\xe2\\x5a\\xfb\\x07\\x8e\\x92\\x0f\\xf0\\xd1\\x8a\\xee\\x2b\\x4c\\xdb\\x92\\xe7\\x75\\xf1\\x3d\\xc0\\xae\\xe5\\x59\\x38\\x4f\\xee\\x8a\\x5a\\x4b\\x29\\x08\\x32\\xa4\\xd0\\x08\\xe5\\x55\\x1c\\x8a\\x15\\x79\\x9c\\x3c\\x14\\x81\\x9e\\x66\\x2b\\xc8\\xd3\\x7a\\x6f\\x9c\\xde\\xd4\\x05\\xa1\\xd8\\x92\\x2b\\x93\\xaf\\x94\\x2a\\x23\\xdc\\x78\\x24\\x14\\x51\\x0e\\x6f\\x41\\x8e\\x08\\xb1\\x52\\x63\\x59\\x06\\xa4\\x0b\\xdb\\x40\\xe2\\x26\\xe9\\x31\\xd3\\xbc\\x29\\x8f\\x1d\\xc7\\xf0\\x96\\xe2\\xcd\\x88\\x11\\x6c\\x6d\\x05\\x70\\x4a\\x33\\x93\\x55\\xf8\\xc6\\x6f\\x25\\xe1\\x28\\x3a\\x1c\\x8f\\xe8\\xf0\\x8b\\xd7\\xaf\\xde\\xbf\\xfa\\xf0\\xfa\\xb6\\xfd\\x1f\\x12\\x4a\\x82\\x90\\x55\\x84\\x94\\xbc\\xc9\\x8a\\x65\\x59\\xae\\xae\\xa8\\x64\\xb2\\x02\\xe4\\x23\\x90\\x80\\x1e\\x91\\xbb\\xd6\\x57\\x02\\xe7\\x7d\\x9d\\xb0\\xaf\\x4b\\x9c\\xc7\\x53\\xec\\xbe\\xaf\\x92\\x18\\x5e\\x2f\\xb4\\x75\\xe9\\xfa\\xad\\x87\\x7b\\xe4\\x8e\\x12\\x2f\\x01\\x86\\xaf\\xea\\x2a\\x53\\xa9\\xba\\x02\\x3c\\x17\\xe8\\x18\\xc7\\xf2\\x43\\x86\\x0c\\xc4\\x35\\x22\\xa1\\xad\\x27\\x02\\x2e\\xb1\\x72\\x70\\x89\\xf3\\x78\\x8a\\x5d\\xf7\\x40\\x24\\x9a\\xeb\\x51\\x60\\x22\\x75\\x5e\\xbf\\x75\\x7b\\xd0\\xf2\\x31\\x46\\x78\\xf7\\xf5\\x6f\\x7f\\xa0\\x0c\\x16\\xea\\x2b\\xca\\x5e\\x47\\xe1\\x65\\x4e\\x60\\x5f\\x61\\xfb\\xdc\\x07\\x96\\x36\\x23\\x46\\x7a\\x55\\x55\\x41\\x6d\\xa6\\xec\\xa8\\x4b\\x21\\x83\\xa7\\x98\\x34\\xcd\\x71\\xb1\\x61\\xfb\\xca\\x0d\\x1a\\xad\\xae\\x45\\x5f\\xf7\\x42\\xc9\\xea\\x52\\xeb\\x79\\xe9\\x22\\xc8\\x37\\x45\\x30\\x9d\\xd7\\xb7\\x06\\x15\\x9c\\xaa\\xe7\\xe8\\x1c\\x26\\x7b\\x09\\xf3\\xd2\\x9a\\x83\\x90\\x89\\x15\\xcf\\x44\\x49\\xc6\\xb0\\xbb\\xa8\\xb5\\xaa\\xd1\\xc2\\x65\\x6a\\x66\\x0b\\x24\\x82\\xa3\\xe6\\xce\\x13\\x19\\xb3\\x86\\x5f\\x34\\xc7\\x5e\\xe7\\x05\\x41\\x01\\x4b\\x99\\x71\\xaf\\xf8\\xca\\x32\\x2b\\xbc\\x34\\x1c\\xe9\\x06\\x9f\\x70\\xe9\\x86\\xdc\\x61\\x22\\x03\\x9e\\xef\\xaa\\x72\\x1e\\xce\\x0f\\xf7\\x05\\x7a\\x4a\\x3d\\x45\\xc6\\x71\\xd5\\xc6\\x44\\x0d\\x05\\x39\\xba\\x35\\xee\\x71\\x78\\xbb\\x1a\\xf2\\x57\\xfa\\xc0\\xf4\\xfb\\x68\\x4b\\x0f\\x30\\xf8\\x8b\\x33\\xaa\\x66\\x14\\x82\\xb0\\xb1\\xfc\\xc8\\xf0\\x3e\\x38\\x94\\x09\\x7c\\xcb\\xb5\\x48\\x72\\xf9\\x96\\x87\\xa2\\x44\\x5f\\x86\\xae\\x8c\\x98\\x1d\\x5e\\x1c\\xe3\\x0e\\xe9\\xdc\\x54\\xe1\\xe4\\x8c\\x6f\\xd7\\x9d\\xd5\\x96\\x60\\x9b\\x47\\x1b\\x1f\\xee\\xb3\\xe3\\xdd\\xd9\\x8f\\x5a\\x98\\xa0\\x2d\\x44\\xe1\\x8e\\xd2\\x9c\\x55\\xb0\\xe7\\x28\\x2b\\x63\\xa6\\x4f\\x8d\\xe5\\xdf\\xb2\\x3e\\xb5\\x76\\xae\\xfc\\xea\\xa9\\x2b\\xcb\\x1f\\x1d\\x38\\xad\\x9e\\x22\\x22\\xa4\\x10\\x9d\\x47\\x11\\x43\\x5e\\xd5\\x0c\\x95\\x01\\xad\\xb4\\x09\\xd4\\x5f\\xf8\\x08\\xea\\x5c\\xc5\\x77\\xf0\\xde\\x13\\xd3\\x92\\x57\\xbc\\x22\\x22\\x58\\x96\\xe6\\xa5\\x82\\x3a\\x20\\xc2\\x3c\\x57\\xb3\\x6f\\x2f\\xe7\\x17\\x8f\\x96\\xf3\\xbb\\xf7\\x5f\\xfc\\xe2\\xd5\\x57\\xaf\\x9f\\x4d\\xea\\x5d\\x4c\\x33\\xba\\xa1\\x1c\\x50\\xe8\\xe1\\x1a\\x0f\\xa7\\x8b\\x75\\xee\\x01\\xd7\\x25\\x28\\x72\\xc5\\x30\\x15\\xbb\\x95\\x04\\xcf\\x9e\\x30\\x9e\\x3c\\xd6\\xae\\x26\\xc3\\x55\\x54\\x7a\\x13\\x80\\xc5\\x91\\xcb\\x13\\x82\\x34\\x97\\x17\\x12\\x77\\xc2\\x36\\x1a\\x18\\x03\\x12\\x11\\x49\\x2f\\x60\\x88\\x32\\x02\\x0e\\xf7\\x81\\x3a\\x41\\x71\\x02\\x12\\x2a\\x69\\x4b\\x2b\\xba\\x0a\\xd5\\xdd\\x58\\x65\\x17\\xa6\\xbb\\x22\\xec\\xb6\\xf2\\x79\\x49\\xc0\\x4f\\x07\\x4e\\xb8\\x47\\x0d\\xe6\\x5c\\x2f\\x44\\xbe\\xef\\xb4\\x6b\\x35\\x9d\\xb1\\x2e\\x21\\x44\\x4f\\x7b\\x4c\\x14\\x59\\x12\\xe4\\xe3\\x40\\x25\\xb9\\x7e\\x19\\xc3\\x77\\x94\\xcf\\x91\\xd1\\x92\\xad\\xc0\\xff\\x84\\x07\\x51\\xb7\\x33\\x52\\xe5\\x5a\\xc0\\xa5\\x6c\\xb7\\x4c\\xb8\\x96\\x21\\x31\\xb3\\xf8\\xf4\\xd2\\x47\\x2d\\xa1\\xe9\\x63\\x23\\xd2\\xbc\\x25\\x97\\x92\\x2b\\x81\\x7c\\x7b\\x2b\\xa7\\xb2\\x44\\x43\\x92\\xb0\\xde\\x97\\xdb\\x37\\xdc\\x7c\\x0a\\x93\\x1f\\xac\\x75\\x98\\xcc\\xe3\\x13\\xb7\\x67\\xf7\\xf3\\xc7\\xd9\\x77\\xbf\\x7d\\xfd\\xe6\\xcd\\xab\\xaf\\xde\\x3d\\x1f\\x27\\x58\\xca\\x9d\\x61\\xc3\\x03\\xa1\\x57\\x67\\xeb\\xb1\\x31\\x71\\x41\\xe6\\x8b\\xb1\\x6d\\xd6\\xa3\\x25\\xe9\\xd9\\x75\\x6c\\xc7\\xbd\\x0f\\xf7\\x81\\x52\\x90\\xb6\\xa0\\x2e\\x8d\\xf3\\x50\\x46\\x94\\xe9\\xf5\\xa1\\xa1\\xa8\\x8b\\x71\\xce\\x21\\xdb\\x71\\xef\\xed\\x76\\xbf\\x7c\\x9c\\x37\\xf9\\xdd\\x97\\xaf\\x5f\\xbe\\x78\\xf3\\xf6\\xdd\\x73\\x15\\x15\\x28\\x4b\\x21\\x38\\x0f\\xd1\\x8b\\x4b\\x9e\\x69\\x24\\xd2\\x8f\\xd5\\x85\\xcb\\xcd\\xe2\\xc5\\xf5\\xb5\\x2f\\xfe\\xf8\\x71\\x98\\xdd\\xeb\\xde\\x7f\\xf4\\x93\\xff\\x8a\\x32\\x6e\\xf5\\xb6\\x57\\x8f\\xde\\xf6\\xfe\\xd5\\x97\\xaf\\x4b\\xcd\\x7f\\x75\\x3b\\x4a\\x63\\x14\\x8f\\xe9\\xfb\\x38\\x0c\\x23\\x3c\\x8a\\x8c\\x26\\xc3\\xd5\\x6a\\xc0\\x43\\x12\\x65\\x82\\xc1\\x78\\xa8\\x88\\x62\\x21\\x27\\x6a\\x43\\x8e\\xd0\\x96\\xcc\\x81\\x7b\\x89\\x68\\x55\\x5f\\x81\\x36\\x6d\\xb0\\x27\\x16\\xcb\\x5d\\xc8\\x88\\x56\\x72\\x08\\x98\\xd0\\x05\\x39\\xf7\\xc1\\x48\\xfa\\x62\\x24\\x70\\xbb\\x44\\xca\\xe3\\xc5\\x48\\x68\\x45\\xda\\xf0\\x00\\x47\\x5f\\x6d\\x2c\\xa6\\xad\\x77\\x78\\x6f\\x68\\x53\\x65\\x48\\x2e\\xb1\\x98\\x52\\xfa\\x1b\\x98\\x36\\xb0\\x17\\x5e\\x0b\\x99\\xad\\xd8\\xea\\x5c\\xd5\\x92\\xb0\\x2b\\x7b\\x30\\xed\\xe2\\x07\\x7e\\xd4\\xc4\\xd6\\x23\\x4f\\x3e\\xb6\\x02\\xea\\x12\\x98\\x36\\xb6\\x7f\\x05\\x69\\x5c\\x33\\x56\\x43\\xa9\\xd3\\xca\\xf3\\x03\\x3f\\xbf\\x12\\x1a\\xc5\\xce\\xeb\\xdb\\x60\\xda\\x7d\\xe0\\xc9\\x6a\\x1b\\x1a\\x6b\\x48\\x20\\x64\\x17\\x16\\x3e\\x6b\\xa7\\xcb\\xf0\\x22\\x31\\xde\\xdd\\xa3\\x0d\\x8f\\x16\\x44\\x6d\\x60\\xa3\\xe0\\x48\\x14\\x51\\x50\\xae\\xe8\\xde\\xb8\\x79\\x18\\x52\\xc5\\x3a\\xe5\\x1d\\x92\\x05\\x8c\\xbe\\x12\\xab\\x52\\x6e\\x25\\x4e\\xeb\\x9d\\x61\\x82\\xed\\x4d\\x1d\\x76\\xb6\\x3e\\xd6\\x07\\x6d\\xf0\\xd9\\x39\\x90\\x8d\\xc2\\x46\\x61\\xc4\\xde\\xbc\\xfb\\x2c\\x90\\xe1\\x41\\x08\\xd9\\x08\\x2e\\x9c\\x57\\xec\\xb3\\x70\\x00\\x97\\xa6\\x5a\\x2f\\xb8\\xd8\\x78\\x86\\x57\\xff\\xe2\\xd1\\xca\\xfa\\xea\\xc5\\xcb\\xf7\\xcf\\xa8\\x4d\\xb0\\xda\\x09\\xc9\\x99\\xed\\x88\\x2f\\x4e\\x38\\x71\\xd2\\x6d\\x0b\\xc8\\xe7\\xfd\\x31\\x24\\x7c\\xf5\\xe5\\xb3\\x65\\xbd\\xe0\\x17\\x4b\\xbe\\xaf\\x13\\xcf\\x26\\x2b\\x01\\x84\\xa3\\xd4\\x38\\x95\\x8a\\x85\\xc4\\x08\\x6a\\x76\\x2d\\x76\\xe7\\x18\\xfd\\xc5\\x67\\x11\\x81\\x08\\xb7\\x7c\\xd4\\x1f\\xef\\xab\\x58\\xaa\\x50\\xac\\x64\\xd9\\xf5\\xe6\\x55\\x25\\xc3\\xa5\\xe1\\x12\\xd1\\x71\\x73\\x17\\x83\\xb9\\x3b\\x47\\xc7\\x8b\\xd3\\xfb\\x6e\\xae\\x75\\x44\\x42\\xe9\\xfa\\x5d\\x17\\x23\\xd5\\x29\\xab\\x6a\\x37\\x72\\x61\\xde\\xd5\\x5b\\x1f\\xee\\x11\\x14\\x58\\xef\\xc7\\x09\\x8d\\x5c\\x8a\\x05\\xb9\\x4f\\x88\\x13\\x62\\x9b\\xab\\x30\\x7f\\x1e\\x65\\xfa\\xfa\\x18\\x28\\x2d\\x89\\xb4\\x07\\xbe\\x72\\x79\\x07\\xa2\\x40\\x89\\x58\\xe7\\xa2\\x49\\x94\\x82\\x93\\xf5\\xe6\\x75\\xa2\\xab\\xa6\\x1c\\x52\\x78\\x23\\x75\\x0d\\x6c\\x59\\x8e\\x4a\\xf5\\xd7\\x40\\x00\\x4d\\xec\\x95\\xd6\\x09\\x4c\\xdf\\xb8\\x84\\x44\\x95\\x75\\xf3\\x2a\\xaa\\x08\\x87\\xd8\\xd5\\xe6\\xdb\\xd3\\xf7\\xd8\\xde\\xfd\\xf5\\x9b\\x6f\\x3f\\x7c\\xf5\\xfa\\xed\\x73\\xf5\\x3a\\x51\\x1f\\xc2\\x56\\x9c\\x70\\x74\\x39\\x47\\xcf\\x0b\\x8f\\x3c\\x9b\\x12\\xfe\\x26\\xf3\\x4b\\xdd\\x50\\x7f\\x13\\x7b\\xe0\\x86\\x61\\xf6\\x70\\x0f\\xd1\\x4d\\x67\\x4a\\xbb\\x90\\xf1\\xb9\\xfe\\xbc\\xdc\\xe6\\x8b\\x9f\\x3f\\x36\\x5c\\x7f\\xf3\\xeb\\x77\\x1f\\xbe\\x45\\xa1\\xcb\\x67\\x2a\\x7f\\x21\\x7b\\x51\\x9c\\x45\\xec\\x12\\x61\\xdb\\xc2\\x6d\\xea\\xcb\\x33\\x9b\\xfa\\x52\\x96\\x0a\\x31\\x1c\\x4e\\xdb\\x3c\\xf6\\x75\\x12\\x8b\\xb8\\x51\\x32\\x65\\x39\\x93\\xc9\\x38\\xf2\\xf5\\xc8\\x68\\xab\\x7c\\x7c\\xa7\\xa9\\xa5\\xf8\\x72\\xb7\\xb3\\xd4\\x22\\x5e\\xd9\\x87\\x72\\xe5\\x91\\x45\\x51\\x39\\x24\\xf1\\xc8\\x3e\\x35\\x0f\\x33\\xe7\\x5a\\xc4\\x1e\\x3b\\xaa\\x1a\\x68\\xf1\\x90\\x95\\x5b\\x80\\xe6\\x60\\xbb\\x23\\xed\\x72\\xd4\\xe0\\xe3\\xe5\\xb8\\x59\\x8a\\xef\\x8e\\x13\\xca\\xde\\x56\\xfd\\x69\\xb3\\x39\\xd6\\x96\\x79\\xb1\\x1e\\x24\\x14\\xae\\xd5\\xdc\\x5b\\x6a\\xdf\\x0c\\xfb\\x26\\xa5\\x22\\xeb\\xc5\\x6f\\x79\\x9a\\xd7\\x80\\x3e\\xb6\\x25\\xa3\\x02\\xdf\\x0f\\x0e\\x29\\x4a\\xff\\x13\\xdb\\xd9\\xa9\\xaf\\xbc\\x5d\\xc4\\x0b\\x9f\\x43\\x05\\x87\\x53\\x10\\x8b\\x2e\\xef\\x20\\x0e\\xa8\\x00\\x35\\x18\\xe3\\x48\\x52\\x2f\\xb1\\xdb\\x5a\\xbd\\xf0\\xf6\\x04\\x87\\x59\\xc3\\xc3\\x6a\\x67\\x11\\xdd\\x61\\xa0\\x29\\x65\\x57\\xcc\\x0f\\xcc\\x05\\x16\\xd0\\x7d\\x65\\x8f\\x5d\\x76\\x83\\xc2\\x5c\\x7e\\xad\\xb1\\x52\\xf8\\x0e\\xfb\\x81\\x28\\x7c\\x41\\x28\\xe4\\x3c\\x47\\xd2\\x5d\\xcd\\xd6\\xca\\xef\\xc4\\x4a\\xfb\\x32\\x14\\x8c\\x65\\xc0\\x43\\xee\\xdd\\x88\\xb5\\xa5\\xb2\\xb6\\x83\\x3b\\x17\\x16\\x83\\xa3\\x32\\x7e\\x58\\x31\\xe3\\xda\\x62\\x04\\xa0\\x5c\\x69\\xeb\\xa1\\x54\\x5c\\x78\\xc2\\x13\\xc2\\x0c\\x4c\\xc3\\x0b\\x75\\x53\\x69\\x39\\x03\\xf9\\x5c\\x82\\xfa\\x32\\xff\\x0f\\x81\\x51\\x61\\x8c\\x71\\xd6\\x41\\xbb\\x0e\\x64\\xbf\\x6f\\x86\\xdd\\xc5\\x65\\x9d\\x88\\x21\\xbb\\x67\\x7d\\x43\\x10\\xf9\\x5a\\xbf\\x87\\x67\\x1b\\xa9\\x08\\xea\\x48\\x5b\\x65\\xc6\\x73\\xc8\\xaa\\x80\\xd5\\x7b\\xae\\x34\\x2d\\x37\\x4b\\x98\\xd6\\xe4\\x3e\\x36\\x45\\xbf\\x78\\xf9\\xed\\x37\\xb7\\xf9\\xb0\\xa5\\xae\\x60\\xfc\\x41\\x63\\x43\\x65\\x6e\\x26\\x3b\\x2b\\xf5\\xed\\x7a\\xe5\\xf6\\x97\\x1e\\xdb\\x33\\xbf\\xba\\xed\\xbf\\xb4\\x8a\\x96\\x0d\\xbe\\xa8\\xaf\\xfa\\x4f\\x48\\x27\\x32\\xb2\\x21\\x31\\xa9\\xac\\x3a\\x72\\x0b\\x57\\x1f\\xd5\\xe1\\xa5\\xef\\x88\\x9c\\x43\\x42\\x26\\x5e\\x2e\\x9c\\xa6\\x8d\\x87\\x7c\\xe7\\xe5\\xd0\\x2f\\xfd\\x3c\\x42\\x36\\x6c\\xeb\\x14\\xc3\\x5f\\x79\\xfe\\xb1\\xfe\\x7c\\x05\\x9e\\x70\\xdf\\xd5\\xae\\xa1\\xfd\\xd2\\x4c\\x0e\\x1f\\xe1\\x71\\x84\\xc9\\xc9\\xad\\x64\\xb6\\xd5\\xbf\\xc7\\xc6\\xce\\xaf\\x5f\\xbc\\x7f\\xf1\\xe5\\xfb\\x17\\x5f\\xdf\\x8e\\x6b\\x8a\\xec\\xad\\x5f\\x8c\\xfb\\x39\\xba\\xec\\x36\\xac\\x19\\xf7\\xa6\\xa9\\xcd\\xcc\\xa6\\x20\\xff\\x3d\\x43\\xd3\\x1a\\xbd\\x43\\x53\\xcc\\x31\\x56\\x99\\xab\\x5e\\x83\\x51\\x7c\\x9f\\x0a\\x96\\x60\\x37\\x08\\xda\\x31\\x2a\\x96\\x77\\x84\\x11\\x1c\\x92\\xd8\\x2f\\xfd\\x1c\\xcf\\x6c\\xf4\\x7d\\xfe\\xd8\\x4a\\xba\\x6a\\x02\\xbf\\x7c\\xf5\\xf6\\x79\\x2c\\x59\\xc3\\x1f\\x9c\\xd8\\xf3\\x2d\\xea\\x28\\x25\\x6c\\xf4\\x44\\x5c\\xf8\\x50\\x02\\x2a\\x19\\x88\\x71\\x55\\xfc\\x8e\\x04\\x2d\\x9c\\x70\\xac\\x2c\\x9e\\x16\\xdd\\x90\\xde\\xbf\\xee\\x77\\xca\\xdd\\xb0\\xcf\\x9f\\x78\\x8f\\x5b\\x9f\\xc7\\xfb\\x6f\\xb7\\xfb\\xb1\\x55\\xe9\\xe5\\xab\\x2f\\x5e\\xbf\\x79\\xf3\\x4c\\xd5\\x66\\xe9\\xad\\xc3\\xa9\\xea\\x64\\xbc\\x42\\xf6\\x0c\\x95\\x0f\\xda\\xc9\\x13\\xa6\\xce\\x13\\x75\\x82\\x4f\\xc8\\x89\\x8c\\x10\\xf7\\x76\\x62\\x36\\x14\\x4f\\x3c\\x09\\x5c\\xe9\\xb8\\x9d\\x24\\xc6\\x54\\x87\\x0f\\x91\\x6d\\x88\\x25\\x12\\x1e\\x7b\\x09\\xf5\\x13\\x72\\x65\\x32\\x4e\\x04\\x0e\\xd0\\x27\\xd4\\xd8\\x22\\x59\\x55\\xc7\\x9d\\x11\\x66\\x94\\xfb\\x3a\\xe9\\xda\\x1c\\xf1\\x4f\\xe3\\x88\\x40\\x22\\xef\\xf0\\x6a\\x38\\x15\\x68\\x56\\xf7\\xbb\\x13\\x89\\x6e\\x9a\\xd1\\xfa\\xd9\\x9f\\xd9\\xec\\xfb\\xfc\\xb1\\xa9\\xe8\\xdd\\xdb\\x1f\\x66\\xcf\\xd5\\x4d\\x77\\x43\\x8a\\x96\\xd2\\x7b\\x37\\x41\\x3d\\xa6\\x9e\\x97\\xe2\\xa4\\xdb\\x32\\xb3\\x9a\\x9e\\xc3\\xc6\\xc5\\x6f\\x96\\x5d\\xf9\\xe7\\xbf\\xf9\\xfc\\x09\\xc5\\xfe\\xab\\x17\\x1f\\x5e\\x7e\\xfb\\xe6\\x39\\xcd\\x1e\\xa9\\x99\\x48\\x69\\x5f\\x39\\x9a\\x48\\x61\\xb4\\x44\\x5d\\x02\\x41\\xa8\\xe2\\x28\\x91\\xc9\\x47\\x59\\x91\\x6b\\x46\\x3e\\x44\\xfb\\xad\\x3a\\x59\\x7e\\x88\\xc2\\x75\\x33\\x63\\x97\\x86\\x18\\x5e\\xba\\x90\\xd3\\x74\\xa1\\xce\\x0a\\xd3\\x65\\x1a\\xe2\\x16\\x51\\x3d\\x01\\x9b\\x35\\x25\\x0c\\x6d\\x80\\x49\\x97\\x94\\xf5\\x5c\\xd1\\x0b\\x0e\\x37\\x8d\\x65\\x6a\\x45\\x9c\\xf0\\xd0\\xc9\\xe9\\x77\\x23\\xfb\\x4a\\x25\\xd5\\x59\\x2f\\xf5\\xea\\x87\\x7b\\xec\\x45\\xd5\\xfb\\x91\\x60\\x6d\\x70\\x83\\xe2\\x8c\\xca\\x54\\x70\\xf0\\xc7\\x34\\x0e\\x55\\xbc\\x7f\\xd4\\x8c\\x7b\\x5f\\x45\\xa0\\x52\\xf0\\x7b\\xe8\\xba\\x2f\\x06\\xc2\\x83\\x66\\xa4\\x7e\\xff\\xfe\\x1d\\x7f\\x51\\xd1\\x08\\x0c\\xda\\x14\\xb8\\xbf\\x84\\xe4\\x0a\\x78\\x2c\\xe5\\x6a\\xe5\\xa3\\x82\\x75\\x22\\x0f\\xeb\\xc4\\xb2\\x3f\\xd2\\x0a\\xf7\\xc0\\xa6\\x00\\x8a\\x47\\xd1\\x98\\x6b\\xef\\xec\\x18\\x94\\xdb\\x53\\x79\\x53\\x8b\\xff\\x01\\x47\\x9f\\x21\\x2d\\x35\\x37\\x2f\\x2e\\xe0\\xfd\\x62\\x4a\\xdb\\xca\\x6d\\xcb\\x67\\x56\\xda\\x34\\x91\\x1b\\x60\\x2b\\x4d\\x2f\\x35\\xcf\\x32\\xe4\\x70\\x72\\xd0\\xdc\\x50\\x0f\\xe6\\xfa\\x14\\xa2\\x69\\x8c\\xcf\\x36\\x7c\\x1b\\x8a\\xb8\\xf8\\xcd\\x86\\xe3\\xa9\\x78\\xc6\\xfe\\xf0\\xf9\\x63\\x3d\\xfe\\xdd\\xdb\\x57\\x7f\\xf3\\xed\\x8b\\xf7\\xcf\\x15\\x00\\xaa\\x16\\x86\\xd1\\x99\\x95\\x2f\\xc4\\xc9\\x70\\xaa\\xe4\\x1a\\x23\\x31\\xdf\\x04\\xaa\\x83\\x13\\x92\\xf1\\x86\\xd1\\xc3\\xbd\\x1b\\xca\\x93\\x6e\\xa6\\xd6\\x78\\xc4\\x56\\xea\\x30\\x1e\\xd8\\x88\\xb0\\x9a\\x0b\\x36\\xae\\x7b\\x50\\xbe\\x08\\xd9\\x33\\xce\\x44\\xae\\x07\\x6a\\x75\\xc4\\x85\\x21\\x3f\\x50\\xf5\\x30\\x37\\x1b\\xda\\x58\\x75\\x4b\\xec\\xb2\\xf4\\x75\\x0b\\x7b\\xd6\\xe0\\x38\\x9e\\xae\\xbb\\x8d\\x73\\x4b\\xe2\\x3b\\xeb\\xba\\x1d\\xbf\\xdf\\x1e\\x87\\xc7\\x16\\x86\\x77\\x6f\\x5f\\xfd\\xf2\\xc5\\x9b\\x5f\\x3c\\xef\\x42\\xcb\\xb4\\x15\\xe2\\xaf\\x4e\\x65\\x7e\\xd7\\x27\\x3a\\xfa\\x74\\xdc\\xf2\\x70\\x2f\\xab\\xbc\\xf0\\x99\\x0b\\x7e\\xf3\\x18\\x9b\\x00\\xc1\\x05\\x4a\\x55\\x6e\\xc8\\xb1\\xa7\\x16\\x67\\x09\\xba\\x84\\xc6\\xc3\\x3d\\x4a\\x84\\x17\\xe7\\xb2\\x4b\\xc6\\x36\\x60\\x1b\\xa3\\xbd\\xa8\\x51\\xd2\\x5a\\x46\\x34\\x5d\\xe9\\x4f\\xa5\\x59\\xb7\\x7d\\x9d\\xa0\\x7c\\x9e\\x34\\x0b\\x47\\xa8\\x9d\\x77\\xdd\\x51\\x73\\xa9\\x84\\x41\\xca\\x9d\\x61\\xa3\\xb5\\x37\\x1d\\x7a\\x76\\x1a\\xbb\\x23\\x03\\xa0\\x34\\xaf\\xf5\\x1f\\x8e\\x68\\x34\\x07\\xef\\x76\\xf8\\x54\\x20\\x9e\\x9f\\xfb\\x9e\\x5a\\xe0\\xa8\\xb7\\x2c\\x00\\x05\\x0f\\xa7\\xb0\\xe6\\x2e\\x93\\x88\\x03\\xf5\\x1b\\x91\\x98\\xd5\\x7a\\xac\\x0c\\xad\\xba\\x1c\\x51\\xa4\\xa9\\xc0\\x99\\x60\\xb4\\x55\\xbb\\x48\\x8f\\x44\\x30\\xc1\\x8d\\xd5\\x37\\x14\\x54\\x24\\x3b\\x57\\x57\\x6f\\xe5\\x25\\xae\\x69\\x79\\x6c\\xaa\\x01\\x82\\x3e\\x16\\xe8\\x33\\x75\\xba\\x3c\\x1b\\x73\\xdf\\x0a\\xde\\x72\\x51\\x04\\x2a\\x6d\\x6b\\x3f\\x4c\\x5f\\xa1\\xdb\\x71\\x47\\x8d\\x75\\xa7\\x63\\xbd\\xe5\\x5a\\x60\\xf5\\x0b\\xe2\\x10\\x3b\\xfe\\x74\\xe6\\xad\\xa4\\x0d\\xd6\\x9b\\xf9\\x5a\\x6f\\x75\\xcb\\x5a\\x6f\\x96\\x6b\\xbd\\x79\\x5f\\xeb\\x0d\\x63\\xb1\\xca\\xa1\\xe3\\x06\\x86\\xcf\\x9b\\xc5\\x99\\xd3\\x77\\x41\\x2c\\x94\\xa1\\x8a\\x67\\xf1\\x29\\x99\\xca\\xe3\\x8e\\xd8\\x6c\\xd7\\x15\\xda\\xea\\x4d\\x96\\x1d\\x93\\xa7\\x20\\xbb\\xa5\\x8e\\x7d\\x25\\xe6\\x40\\xe6\\x1c\\x94\\x9a\\x8c\\x59\\xca\\x30\\xb1\\xdb\\x59\\xc7\\x8e\\xea\\xda\\x85\\x8c\\xd7\\xdd\\x93\\x50\\x4a\\x8a\\xfa\\xe4\\x7e\\x54\\xc6\\x16\\xb8\\x7b\\xb8\\xa2\\x62\\x66\\x9d\\x34\\xb8\\x20\\xe8\\x77\\x85\\x6f\\x48\\xe6\\xca\\x4b\\xac\\x39\\xc1\\x14\\xd9\\x79\\x71\\xc7\\x42\\x4c\\x30\\x76\\x16\\x2c\\x04\\x53\\xa4\\x7e\\xa4\\x90\\xec\\xd1\\x9b\\x21\\xc9\\x0e\\xe3\\x87\\x81\\x24\\x4d\\x7d\\x59\\x3d\\x91\\x0c\\xa9\\x90\\xba\\xc2\\x7e\\x22\\xa5\\x06\\x8a\\xee\\x6c\\x56\\xc7\\x3b\\xee\\xd1\\x42\\x7d\\x12\\x13\\x84\\x85\\x13\\x36\\xfa\\x11\\x42\\xae\\x67\\x1a\\x7d\\xa7\\x7a\\x73\\xe7\\xc6\\x25\\x06\\x62\\x95\\x0c\\x1f\\x9a\\xbb\\x44\\xe1\\xfb\\x6c\\xda\\xd7\\xef\\x2a\\x59\\x3c\\x6e\\x57\\xec\\x25\\x74\\x78\\xca\\xac\\x90\\x52\\x88\\xc5\\x6e\\x72\\x66\\xa6\\x0b\\xdd\\x4c\\xd2\\x56\\x8b\\xec\\xb1\\xd5\\xe6\\x5a\\x77\\xec\\x59\\x2f\\xb4\\x60\\x45\\xb9\\xd2\\x82\\x3f\\xde\\xd7\\x5e\\x8d\\x59\\x11\\x52\\xa2\\xfa\\x54\\x69\\x2c\\xda\\x6d\\x5a\\x38\\x72\\x30\\x81\\xfb\\x25\\x35\\x23\\x5e\\x89\\x06\\xac\\xc0\\xb6\\x21\\x81\\xec\\xa8\\xbe\\x67\\x3b\\xc5\\x8e\\x03\\x91\\x63\\xb7\\xe3\\x44\\x47\\x0d\\xdd\\x13\\x0b\\xed\\x8e\\xb2\\xd1\\x42\\xa8\\x10\\x74\\xe2\\xc2\\xaa\\x5e\\x37\\x0f\\x45\\x04\\xe4\\x89\\x98\\xa1\\x42\\x9d\\x64\\x05\\x75\\xac\\x1d\\xf7\\x7a\\xd9\\x5d\\x16\\xfc\\xaa\\xe5\\x96\\x1d\\x0e\\xc4\\x0e\\x32\\x3f\\x89\\xaf\\xa4\\xbd\\x27\\x49\\xde\\xad\\x10\\x95\\x24\\xc3\\xe5\\x03\\x97\\x04\\x89\\x7d\\x92\\x51\\x7b\\x05\\x6d\\x61\\x94\\xf4\\x92\\xbd\\x8e\\x86\\x92\\xc0\\xa8\\xe6\\x84\\xaa\\x4f\\x2a\\xc8\\x55\\x8f\\x6c\\x25\\xc5\\x67\\x94\\x77\\x1d\\x09\\x7e\\x60\\xdd\\x9a\\xa6\\x4f\\x63\\x6c\\x5d\\xa1\\xe2\\x9f\\x77\\x9d\\xb6\\x2a\\xbe\\x9e\\x83\\xf5\\xe1\\xde\\x7a\\x02\\xa4\\xa3\\x8c\\x42\\x87\\x54\\x46\\x96\\xa7\\xd2\\x6a\\x75\\x19\\x55\\x7d\\xd0\\x32\\xaa\\x06\\x1d\\x01\\xc8\\x28\\xb7\\x3e\\xc6\\x8e\\xa3\\x32\\x2e\\x24\\x95\\xea\\xa8\\x77\\x23\\x72\\x15\\x47\\x46\\x91\\xe2\\x55\\xe8\\xed\\xf8\\xc8\\xcd\\xa5\\xf0\\xf2\\xb1\\x75\\xed\\x47\\x3f\\x90\\x6f\\xed\\xef\\xbe\\x76\\xd2\\x3d\\x3a\\x67\\x4e\\x47\\x36\\x79\\x04\\xdf\\xc4\\xd9\\xc4\\xb6\\xeb\\x95\\xdb\\xcd\\x7f\\x6c\\x5d\\xfa\\xd1\\xf3\\x4a\\xe9\\xdf\\x4b\\xf3\\x6b\\x51\\x0c\\xd6\\x95\\x48\\x12\\x60\\xc6\\x06\\xa2\\x48\\xae\\x57\\x6e\\x37\\xff\\xb1\\x01\\xea\\x47\\x2b\\xb3\\xdf\\x2f\\xde\\xbc\\x7a\\xa6\\x98\\xf8\\xdf\\x43\\x1f\\xe0\\xf7\\xe0\\x05\\x2a\\x2d\\xf3\\x1c\\x91\\x2b\\x69\\x67\\x58\\xdf\\x00\\x11\\xeb\\x57\\xe1\\x71\\x21\\x67\\xdb\\x50\\x91\\x61\\xb8\\x9e\\x1d\\xa9\\x35\\xd7\\x93\\xb7\\xfb\\xf8\\xd8\\x26\\xf4\\xa3\\xe7\\xbd\\x8e\\xff\\x5e\\xba\\x87\\x16\\xab\\xee\\x38\\xc1\\x8e\\x6b\\x21\\xb2\\xb0\\x31\\xb3\\xe4\\xb2\\x8f\\x58\\xd6\\x2f\\x97\\x81\\xfa\\xb5\\xe4\\xdc\\x57\\x5c\\x9f\\x73\\x47\\xba\\x1f\\x72\\x8e\\x89\\x9c\\x0b\\xae\\x47\\x2c\\xa8\\x23\\x1f\\x04\\xdf\\x91\\x67\\x9f\\x28\\x86\\x1c\\x7d\\x2c\\xbb\\x53\\x90\\xed\\xc5\\xd0\\xea\\xa4\\x29\\x21\\xdd\\x99\\x80\\xe5\\x91\\x77\\xdd\\x78\\xd4\\x47\\x79\\xec\\xeb\\x24\\xa4\\x49\\x71\\xf1\\x20\\x45\\x04\\x28\\xc5\\x88\\x95\\xb6\\x7b\\xc8\\xf1\\xc2\\x61\\xb1\\xc3\\x09\\x75\\x58\\xac\\x42\\x04\\x43\\x97\\x33\\x38\\x0d\\xea\\x13\\xdb\\x84\\x01\\x17\\xf8\\xfa\\x28\\x42\\x0b\\x50\\x5e\\x96\\xdb\\xa8\\xf7\\x44\\xd0\\xda\\x38\\x8c\\x34\\x14\\x35\\xa7\\x01\\x9f\\xed\\xde\\x68\\x84\\x6e\\xd7\\xf1\\xb9\\x3d\\x89\\x8f\\x6d\\x3f\\x3f\\xfa\\x41\\xc7\\x8c\\xbf\\x8f\\x79\\x94\\x0e\\x7b\\xcd\\xd8\\xd7\\x09\\x2a\\xe8\\xa0\\x53\\x32\\x21\\xe1\\x07\\xaf\\x82\\x74\\x75\\xd2\\x60\\xe1\\x88\\xd4\\x69\\x4c\\xeb\\x29\\x9c\\xd4\\x68\\x2f\\xdf\\x58\\x3d\\x9e\\x72\\x92\\x5d\\x2c\\xee\\x08\\x1e\\x02\\xd2\\xd7\\xa5\\xeb\\xb7\\x1e\\xee\\x91\\x3c\\x2e\\xc8\\xf7\\x75\\xe2\\x84\\x1d\\x65\\x8a\\x64\\x64\\xcf\\xa3\\xc1\\xb2\\x8f\\xc4\\x57\\xa5\\xa1\\x44\\x56\\x5d\\x4a\\xa3\\xf5\\x14\\x4e\\x3c\\x78\\x5d\\x72\\x3d\\x9e\\x72\\x22\\x04\\x73\\xd4\\x49\\x43\\xf1\\x14\\xd7\\x23\\xd5\\x77\\x3c\\x63\\x4f\\x7f\\xf9\\xd8\\x36\\xf6\\xa3\\xf7\\xcf\\xf9\\xea\\xfe\\x7d\\xcc\\x82\\xae\\xe0\\x4c\\xde\\xd7\\x49\\x58\\x53\\xa4\\x77\\x24\\x5a\\xc9\\x84\\x06\\x02\\x3b\\x91\\xcd\\xd2\\x27\\xf8\\x48\\x96\\x34\\x2f\\x9c\\x9c\\x42\\x0d\\x3b\\x0e\\x75\\x69\\x65\\x16\\x0a\\x5b\\xc5\\xc6\\x07\\xc1\\xce\\x7a\\x87\\x37\\x2f\\xa7\\xb2\\x91\\x0d\\x97\\x1c\\xa9\\x85\\xb8\\xd8\\x10\\xa3\\x8c\\x27\\xb2\\x5e\\xe1\\xcd\\x26\\x85\\xce\\x02\\x27\\x0d\\x56\\xc6\\xba\\x84\\x5d\\x09\\x4b\\x5a\\x99\\xbe\\x51\\x53\\xfd\\x68\\xf3\\x03\\x8a\\xbb\\xe0\\x1b\\xeb\\x84\\x56\\x78\\x2d\\x79\\x12\\xa2\\x1e\\xc9\\x6d\\x4c\\x43\\x26\\x67\\x44\\x0d\\x27\\x28\\x7f\\x77\\x4c\\x22\\xc7\\xca\\xe6\\x57\\x97\\x90\\x1f\\xc9\\x2d\\x50\\x54\\x13\\x2c\\x60\\xcd\\x9d\\xf0\\xb1\\x4e\\xe0\\x91\\x20\\x07\\x7d\\xd6\\x7b\\x86\\x12\\x2c\\x77\\x75\\x82\\xc2\\xbd\\x18\\x32\\x63\\x41\\x9f\\x6f\\xcf\\xf8\\x63\\x6b\\xe1\\x8f\\x6e\\x17\\xde\\x22\\x4a\\x2b\\x45\\xca\\x75\\xf3\\xa2\\x0e\\x93\\xb3\\x98\\x6c\\x8c\\xcc\\x2c\\xc2\\x9b\\x25\\x5f\\x9d\\x3e\\x83\\x2f\\x48\\x25\\x3f\\xc4\\x36\\xe4\\x11\\x15\\x39\\x13\\x49\\x5e\\x7c\\xf0\\x79\\x48\\xac\\x2c\\x2f\\x70\\xe3\\x4e\\xbb\\xf4\\x87\\xfb\\xc2\\xb6\\xc6\\x81\\x4c\\xab\\x2b\\xf9\\x8c\\xc8\\x76\\xfc\\x78\\xbb\\xf1\\x8f\\x4d\\x86\\x3f\\xfe\\x21\\xdb\\xdb\\x3f\\xa0\\xf2\\x79\\x77\\xbf\\x57\\x3e\\xaf\\xfd\\xff\\xbb\\x7c\\xde\\xdd\\xef\\x95\\xcf\\xbb\\x47\\xcc\\xec\\x56\\xec\\xed\\x64\\x2b\\x33\\xec\\x09\\xbb\\x0b\\x63\\x99\\x4a\\x23\\x96\\xa9\\x74\\xd0\\x4a\\x01\\x8c\\x7c\\x88\\x30\\x95\\x8e\\x65\\xfd\\x5c\\xc9\\x1e\\x60\\x2a\\xb5\\x95\\xc7\\xc9\\x36\\xa3\\x65\\x21\\x5d\\xfe\\xea\\x30\\x95\\x46\\x2e\\x53\\x29\\xc2\\x9f\\x60\\x2a\\x5d\\xe9\\x9b\\x6c\\x3a\\x32\\xab\\x71\\xee\\xeb\\xa4\\x2b\\x92\\x4d\\xc0\\x54\\xea\\x05\\xec\\x61\\x2a\\x45\\x10\\x99\\xca\\x34\\xe8\\x0d\\xa2\\x60\\x81\\xfd\\xec\\xb7\\x42\\x27\\x6b\\xe5\\x3e\\x36\\x1a\\xff\\xf4\\x79\\x64\\xfc\\x5f\\x5f\\xf3\\xee\\x7e\\x25\\xf2\\x2b\\x00\\x6c\\x7d\\x83\\xdc\\x01\\x00\\x66\\xdb\\xae\\x57\\x6e\\xb7\\xf2\\xb1\\x41\\xf7\\xa7\\xcf\\x03\\xe0\\x3f\\xa4\\x95\\x74\\xc5\\xb9\\x4a\\x1b\\x52\\x75\\x00\\xe7\\x8a\\x6c\\xd7\\x2b\\xb7\\x5b\\xf9\\xd8\\xf2\\xfb\\xd3\\xbf\\x05\\xce\\xfd\\x03\\x9a\\xba\\x24\\xed\\x77\\x70\\x16\\xb9\\xee\\xaf\\x70\\x36\\xae\\x70\\x96\\xae\\x70\\xd6\\xaf\\x70\\x36\\x6c\\xbb\\x3e\\x79\\xbb\\x2b\\x8f\\x2d\\x9f\\x3f\\xfd\\x41\\x24\\xf4\\x07\\x74\\x84\\xf3\\x00\\x3c\\xeb\\x04\\xbc\\xec\\x0a\\x78\\xfa\\x15\\xf0\\xd8\\x15\\xf0\\x8c\\x2b\\xe0\\xa1\\x2b\\xe0\\xa1\\x2b\\xe0\\x19\\x57\\xc0\\xd3\\xaf\\x80\\x47\\x01\\x3d\\x56\\xd2\\x0c\\x5c\\xe2\\xe4\\xbb\\x03\\xf0\\xf0\\x15\\xf0\\xf0\\x15\\xf0\\xe8\\x15\\xf0\\xc8\\x15\\xf0\\x8c\\x2b\\xe0\\xa1\\x2b\\xe0\\xd1\\x2b\\xe0\\xd1\\x2b\\xe0\\xa1\\x2b\\xe0\\x91\\x2b\\xe0\\x89\\x2b\\xe0\\xb1\\x2b\\xe0\\xe1\\x1f\\x02\\x3c\\x8f\\x0d\\xb6\\x3f\\x7b\\x9e\\x0e\\xff\\x90\\x6a\\x79\\xf7\\x70\\x2f\\x2b\\x4a\\xd4\\x1c\\x1b\\x5b\\x5f\\x94\\xa8\\x21\\xdb\\xf5\\xca\\xed\\x76\\x3e\\x36\\xa8\\xfe\\xec\\x79\\x4a\\xfc\\xc3\\xda\\x79\\x80\\xdc\\xf3\\x18\\x89\\x00\\x7a\\xd0\\xa2\\x0e\\xda\\xae\\x57\\x6e\\xb7\\xf3\\xb1\\x85\\xf1\\x67\\x7f\\x0b\\x5a\\xfc\\x83\\x1a\\x8b\\xb2\\x4a\\xdf\\x53\\x23\\xc5\\x66\\xd0\\x52\\x8a\\x1a\\x69\\x2c\\x6a\\x64\\xf7\\x83\\x1a\\x81\\xe3\\x8b\\x1a\\x59\\xb6\\xeb\\x93\\xb7\\x3b\\xf3\\xd8\\x92\\xf5\\xb3\\x1f\\xa4\\xc6\\x3f\\xa8\\x2b\\xac\\x07\\x65\\xad\\x13\\x97\\xc6\\x25\\xf4\\x8b\\x1e\\x65\\xad\\x16\\xdd\\xb5\\xeb\\x41\\x8f\\x80\\x81\\xb9\\x02\\xf8\\xf1\\x14\\x4e\\x40\\x8f\\x75\\x09\\x5a\\x06\\xe8\\x80\\x64\\x87\\xf5\\x0e\\xee\\xd7\\x00\\x98\\x0a\\x6f\\xb7\\x83\\x1e\\x01\\x9d\\x8b\\xb2\\xd6\\x89\\xd3\\x8a\\xcd\\x2c\\xa2\\x43\\x06\\x76\\xd0\\xa3\\xe8\\xa2\\xc7\\x81\\x3d\\xed\\x22\\x55\\xd4\\xaa\\x27\\xdf\\x71\\x82\\xe8\\x02\\xe7\\x45\\x8f\\x78\\x0a\\xf4\\xc8\\xbe\\xe8\\xd1\\x33\\x17\\x3d\\x5e\\xbf\\x75\\x73\\xc8\\xbf\\x78\\x6c\\x31\\xfa\\xe9\\x37\\xbf\\xbf\\x6d\\x6d\\xd7\\xc1\\x1e\\xd6\\xfa\\xc5\\xdd\\xcf\\x27\\x94\\x56\\x8b\\x33\\x0d\\x5b\\x5c\\xcf\\x98\\x77\\x8f\\x6b\\xbd\\xdc\\xbc\\xd6\\xcb\\xcd\\x6b\\xbd\\x5c\\xe2\\xef\\xea\\xe5\\xfa\\xef\\xd6\\xcb\\xf5\\xa3\\x5e\\x2e\\x00\\x1d\\xb2\\x18\\x1d\\xf5\\x72\\x13\\xf5\\x72\\x0b\\x44\\x14\\x6f\\xb5\\x87\\x7b\\x4b\\x69\\xf5\\x69\\x09\\x41\\xec\\x21\\xbe\\xa8\\xab\\x64\\x2e\\x3a\\x5e\\x83\\xe4\\x47\\xc9\\x5c\\x3b\\x4a\\xe6\\x0e\\xba\\xfb\\xae\\x64\\xee\\x38\\x4a\\xe6\\xda\\x51\\x32\\x17\\xf5\\xf2\\x50\\x46\\xff\\x28\\x99\\x6b\\x7c\\x2d\\x99\\x1b\\x82\\xde\\x19\\x8a\\x68\\x3d\\x33\\x78\\x8f\\xed\\x55\\x7f\\xfe\\x03\\x21\\xd8\\x7f\\x58\\xf5\\x43\\x38\\x2b\\x2d\\xc3\\x47\\x9d\\xc0\\xf0\\xb1\\x04\\xe1\\x58\\x75\\xde\\x60\\xf8\\x80\\x90\\x90\\x01\\xef\\x5f\\x18\\x3e\\x60\\x4d\\x80\\xb3\\xa4\\xe7\\x61\\xf8\\x60\\x5e\\x86\\x0f\\x58\\xc2\\x61\\xf8\\x50\\x59\\x5a\\x8f\\x95\\x44\\x81\\xe1\\xc3\\x20\\x3f\\x6c\\x47\\xea\\xbb\\x20\\x6b\\x82\\x65\\x36\\xae\\xab\\xbc\\xeb\\xc6\\xc8\\x26\\xc4\\x45\\x3f\\xbe\\x28\\x81\\x9d\\x0e\\xc3\\x47\\xd7\\x65\\xf8\\x58\\x21\\x43\\x32\\x96\\xc1\\x78\\x58\\xec\\x9a\\x7a\\x18\\x3e\\x60\\x50\\x53\\x46\\xe0\\xf6\\x52\\xac\\x90\\x48\\x08\\x11\\xf3\\xe3\\x30\\x7c\\x40\\x54\\x39\\xb7\\x00\\x65\\x06\\xad\\xf4\\xed\\x30\\x7c\\x54\\x2f\\x60\\xf8\\x80\\x14\\x0b\\xdd\\xae\\xe3\\x73\\x7b\\xc2\\x1e\\x5b\\xe8\\x7e\\xfe\\x03\\xd2\\xe7\\x1f\\x5c\\xc5\\xc8\\xbb\\x6b\\xc5\\xc8\\xf6\\x8f\\xa8\\x62\\xe4\\xdd\\x51\\x31\\xb2\\xfd\\x5d\\x55\\x8c\\xbc\\x0f\\xd2\\x46\\x36\\xf8\\x6c\\xae\\x1b\\xbc\\xf6\\x86\\x16\\x3a\\xce\\xed\\x7a\\xe5\\xf6\\x1a\\x7b\\x6c\\x21\\xfd\\xf9\\x0f\\x20\\x87\\x7f\\x5a\\x63\\xff\\x48\\xd7\\x18\\xd8\\x96\\xda\\x39\\xcd\\x36\\x5f\\xa1\\xd9\\x79\\x36\\x8d\\xed\\x7a\\xe5\\xf6\\x1a\\x7b\\x6c\\xc0\\xfd\\xf9\\xdf\\x06\\xf5\\xfd\\x43\\x59\\x68\\x77\\xbf\\x57\\xfe\\xf6\\x1f\\xc3\\x42\\xbb\\x7b\\x54\\xfe\\xf6\\xef\\x6e\\xa1\\x21\\x45\\xa4\\x6b\\xa1\\x62\\xee\\xe7\\x18\\x2b\\xa2\\xa0\\x84\\xe9\\xb6\\xd2\\xc5\\x73\\x3f\\x8b\\xf0\\x85\\x5c\\x7d\\x43\\xfa\\xce\\x31\\xec\\xec\\x23\\xb7\\xeb\\x93\\xb7\\x17\\xe2\\x63\\xfb\\xf5\\xcf\\x7f\\x28\\x09\\xcd\\x3f\\x90\\x35\\xf8\\x4f\\xcc\\xee\\xef\\x78\\x0d\\x62\\x59\\xb9\\xed\\xeb\\x84\\x7b\\x4b\\x68\\x36\\x91\\x2b\\xe0\\xad\\x20\\xe7\\x58\\x06\\xfb\\x5c\\x5b\\x09\\xae\\xb4\\xc3\\x65\\xdb\\x11\\x4e\\x0e\\xc4\\x3a\\x50\\x7a\\x89\\xdc\\x6d\\xed\\xaa\\xfb\\x18\\xd3\\x46\\x61\\x46\\xa2\\x95\\x7d\\x32\\x38\\x97\\x57\\x48\\x88\\xef\\x8a\\x4d\\x1b\\xf1\\x15\\x9d\\x14\\x5d\\x57\\x35\\x9a\\x52\\x4c\\x19\\x9b\\x77\\x9a\\xfb\\x3a\\x49\\xbd\\x5b\\x88\\x55\\x6c\\xc2\\x96\\x32\\x0a\\x02\\x43\\x79\\xb5\\xe3\\x85\\x48\\xed\\x80\\x1c\\x27\\x31\\x9a\\x61\\xaf\\xcd\\x65\\xa5\\x8b\\x1a\\x42\\xf0\\x9b\\xa0\\xc8\\xa3\\xc2\\x42\\x29\\x1c\\x88\\x22\\x09\\xd4\\x19\\xa0\\xeb\\xfe\\x12\\x36\\x10\\x1c\\xde\\x88\\x34\\x8c\\x56\\xad\\x8f\\x91\\xb6\\x5d\\xc7\\xe7\\x36\\xa5\\x3d\\xde\\x37\\xf8\\xf9\\x0f\\xeb\\xc6\\xff\\x44\\x6c\\xff\\x38\\x89\\x0d\\x15\\xa1\\x43\\x72\\x5f\\x27\\x43\\x1b\\xd4\\xcd\\x41\\xba\\x9a\\x3f\\xd4\\x90\\x0b\\xb4\\x4e\\x9a\\x66\\xad\\x3c\\xb2\\x55\\x9c\\xa7\\x9e\\xc2\\x89\\xa7\\xae\\x4b\\xee\\xc7\\x53\\x2e\\xba\\xa2\\xb0\\x5c\\x74\\xe5\\xc8\\xa8\\x4b\\xd7\\x6f\\x15\\x9e\\xc1\\x59\\xac\\x38\\xe4\\x18\\xbc\\x92\\xe7\\x0f\\x92\\x59\\xdf\\x81\\xe2\\x0a\\x95\\x76\\xa8\\xde\\x21\\x9a\\xa2\\x2e\\xa1\\xa2\\x6b\\x3d\\x85\\x13\\x4f\\x41\\x7c\\x05\\xb9\\x1f\\x4f\\xb9\\xf0\\x1e\\x89\\xaf\\xd6\\x0b\\xf1\\xd5\\x23\\x99\\x6b\\xc8\\xed\\x9d\\xaa\\x2f\\x1e\\xef\\x54\\x7d\\xf5\\xed\\x9b\\x6f\\x5e\\x7f\\xfd\\xe6\\x76\\xa6\\x1d\\x1a\\xd4\\x84\\x73\\x5b\\x61\\x1a\\xbe\\x11\\x62\\x87\\x7b\\xdf\\xa4\\x23\\x5a\\xab\\xa4\\x26\\xb5\\x18\\x63\\x43\\x95\\xf5\\xfa\\x61\\x95\\x29\\xaa\\x7b\\xc2\\x8e\\x87\\x3a\\xb2\\x1e\\xe5\\x96\\x2e\\x8d\\xbb\\xe3\\x19\\x53\\xd9\\xa4\\x77\\xfc\\x7d\\x7c\\xe5\\x76\\xbb\\x1f\\xef\\x53\\xfc\\xfc\\xf9\\xf2\\x97\\x44\\x24\\x07\\x8d\\x13\\x5f\\x69\\xfc\\x3b\\x7a\\x24\\xd0\\x38\\xac\\x30\\xa5\\x30\\xe7\\x58\\x24\\xde\\x8b\\xc4\\x11\\x8c\\xd9\\x77\\xa3\\xa3\\x2e\\xb1\\x22\\x89\\x10\\x45\\x1b\\xb2\\x31\\x49\\x3b\\xa5\\x9c\\x83\\x56\\x11\\xcd\\x88\\x9d\\x32\\x1a\\x73\\x8d\\x3a\\x37\\x1e\\xbc\\xc2\\xbf\\x51\\x19\\xd0\\x9b\\x15\\x59\\x8d\\xef\\x88\\x3f\\xf3\\xa0\\x7d\\x3a\\x68\\xbf\\x1f\\xb4\\x4f\\x71\\xb7\\x68\\x7f\\xa5\\xe0\\xe5\\xa9\\xca\\x07\\xed\\x77\\xfb\\xbd\\xda\\xeb\\x47\\x1e\\x3e\\xd8\\xf0\\x45\\xc7\\x72\\x18\\x26\\x23\\x87\\x6f\\xed\\xb6\\x38\\x17\\x57\\xd7\\x3b\\xaa\\xad\\xa1\\xbc\\x43\\x71\\x7c\\x52\\xa4\\x04\\x59\\x15\\xa6\\x8b\\x3d\\x18\\x4a\\x39\\x61\\xa8\\xbe\\x63\\x0f\\x3c\\x7a\\x5b\\x04\\xba\\xca\\x9e\\x70\\x72\\xd3\\x1c\\x48\\xc6\\x25\\xd6\\xb7\\xb1\\xde\\x29\\xcb\\x27\\x9b\\xd5\\x57\\x8e\\x75\\x8e\\xa3\\xb1\\x8b\\x3b\\xd0\\xb5\\x3a\\x3b\\x7f\\x54\\x9d\\x3d\\x96\\x10\\x01\\x77\\xe8\\x79\\xb7\\xb8\\xc3\\x18\\x07\\x77\\xe8\\x57\\xee\\x50\\x4c\\xaa\\x2f\\x26\\xc5\\xd9\\x46\\xf4\\x96\\x28\\x5b\\xa5\\x73\\xac\\x68\\x56\\xda\\xb4\\x6b\\x63\\xa1\\x1d\\x5b\\xdf\\xb9\\x0a\\xbf\\xa1\\x4e\\x3b\\xc6\\x49\\x56\\xf1\\x24\\xf0\\x89\\xc5\\x3f\\x46\\xf7\\xc5\\x27\\xdc\\x16\\x9f\\xe8\\xb2\\xf8\\x04\\xcb\\xc1\\x27\\xfa\\x77\\x7c\\xe2\\xe6\\x1a\\x7c\\xbc\\x0b\\xf5\\x57\\x3f\\x60\\x25\\xf9\\x87\\x57\\xb9\\xf9\\xee\\xa8\\xdc\\xdc\\x6e\\x57\\x6e\\xbe\\x47\\x24\\x84\\x69\\x9e\\x2d\\xfb\\x86\\xf4\\x21\\x83\\xec\\xff\\x63\\xef\\x7b\\x7a\\x24\\xc9\\x6d\\xec\\xef\\xf9\\x29\\x84\\xdf\\x3d\\xf1\\x13\\x49\\x51\\xa4\\x2e\\x7b\\x8e\\x43\\xd4\\x21\\x80\\x70\\x02\\x5b\\xb7\\x9e\\x9d\\xea\\xd9\\x06\\xc6\\xd3\\x58\\x8f\\xdb\\x80\\xbf\\xfd\\x82\\x8f\\x8a\\x5e\\x6f\\xd8\\x99\\xd9\\x33\\x58\\x0f\\xd0\\xe3\\x3e\\xa5\\xaa\\x94\\x11\\x8a\\x54\\x50\\x14\\xc5\\x3f\\xef\\x2d\\xda\\x75\\x3d\\x7a\\xee\\xcf\\xe0\\x39\\x42\\xf6\\x87\\x27\\x3e\\x80\\xdf\\xe9\\x0c\\x2a\\x94\\x3c\\x2f\\xc3\\x69\\x05\\x35\\x91\\xb6\\xbe\\xa8\\xc9\\x7a\\xf4\\xdc\\x9f\\xc1\\x73\\x60\\xee\\x0f\\x5f\\x72\\xc2\\xfd\\x7a\\xa6\\xf1\\x72\\xa2\\x10\\x7f\\x34\\x8d\\xa0\\x53\\xe9\\xc4\\x37\\x52\\xb7\\xc5\\xeb\\x58\\x41\\x4a\\x61\\xe2\\xab\\x22\\xa5\\xd2\\x6d\\x11\\xf5\\x1b\\x75\\x12\\x90\\x4a\\x93\\x2b\\x2f\\x46\\xba\\x1e\\x57\\xde\\x9f\\xe6\\x73\\x38\\xee\\x0f\\xcf\\xad\\xca\\xdf\\xe7\\x24\\x0b\\xc2\\x3b\\xb5\\x6f\\xd9\\x50\\x2a\\xc8\\x76\\x37\\x9f\\x69\\x47\\xa1\\xa5\\xf3\\x1c\\x10\\xfb\\x2c\\xce\\x13\\xc0\\x3f\\xa5\\xbc\\x0a\\x0d\\xa0\\xd4\\x22\\xe4\\x2c\\x47\\xb2\\x52\\xa5\\x4d\\x90\\x16\\x56\\x09\\xb5\\x8c\\xe8\\x3a\\xc6\\x7a\\x7d\\xc9\\x92\\xc5\\xda\\xb6\\x6c\\xa0\\x22\\x14\\xa3\\xd6\\xdd\\x93\\xa9\\x8d\\xb6\\xc1\\x18\\x95\\xc0\\xfd\\x8b\\x2e\\xd0\\xd1\\xc6\\x55\\x23\\xfd\\xf7\\x35\\xbb\\x3a\\x92\\x00\\xe9\\x42\\x3a\\xc6\\x06\\x6e\\x54\\x1d\\x03\\x20\\xb4\\xd4\\x39\\x51\\x9b\\xe2\\xaa\\xfb\\xc2\\x70\\x8e\\x79\\xfe\\xfb\\x63\\xad\\xf5\\x7f\\xc1\\x7d\\xfe\\x82\\x0d\\xdf\\x59\\x96\\x21\\x84\\x2c\\x27\\x52\\xb5\\x45\\x59\\xd6\\xa3\\xe7\\xfe\\xf3\\x9e\\x63\\x9f\\xfb\\x7f\\x7e\\xfc\\xd3\\x03\\x4e\\x23\\xcd\\xd2\\xc8\\x1b\\x51\\x97\\xa5\\x4b\\xdd\\x40\\x38\\x88\\xca\\x7f\\x49\\x18\\xe7\\x49\\xa2\\xd1\\x5a\\xda\\x0f\\xa3\\x8e\\x44\\x14\\x33\\x24\\x30\\x91\\x27\\xbc\\x59\\xf5\\x0e\\x3e\\xe7\\x31\\xa8\\x34\\x11\\x10\\xdf\\x02\\x5d\\x5a\\x6a\\x11\\x42\\x8e\\x16\\x70\\xb7\\x7d\\x86\\x74\\x54\\x5e\\x73\\xf0\\x4a\\x74\\x6b\\x5d\\x73\\xec\\x38\\x89\\x75\\x05\\x62\\x7e\\x43\\xc2\\xea\\x40\\x72\\xf9\\x20\\x05\\x49\\xf4\\x10\\xb9\\xc4\\x19\\x76\\x88\\xe0\\x15\\xc6\\xff\\x5d\\x06\\x60\\x2b\\x47\\x9c\\x55\\x7a\\x47\\x18\\x0b\\xd8\\x32\\x95\\x08\\xc3\\xdc\\x9d\\xa9\\x73\\x60\\xf5\\x87\\xb7\\x3f\\xfd\\xf1\\xdd\\x4f\\xdf\\x7f\\xf7\\xe3\\xfd\\x75\\x1e\\x4f\\x5c\\x0f\\xb4\\x70\\xdb\\x08\\xc0\\x97\\x61\\xbe\\xa3\\x52\\xc8\\x0d\\x86\\x0c\\x35\\xd1\\x1d\\xa4\\x39\\xca\\x7d\\xd7\\x90\\x30\\x55\\xdf\\x7a\\xcc\\xa7\\xaa\\x27\\xed\\xa0\\xca\\x91\\xe4\\x65\\x0a\\x0e\\x08\\x12\\xab\\xe0\\x1a\\x22\\xe6\\x0a\\xa2\\x21\\x60\\x7f\\x22\\x8f\\xaa\\xba\\x03\\x05\\x76\\x8c\\x64\\xd2\\x00\\x47\\x16\\x08\\x06\\xd3\\x14\\x33\\x03\\xde\\x54\\xb1\\x56\\x71\\x18\\xea\\xdd\\xf7\\xd1\\xec\\xa2\\xb0\\x45\\xc1\\x5f\\x04\\x3e\\x6a\\x2b\\x4d\\x68\\x87\\x31\\x2c\\xd4\\x37\\x34\\x60\\xcb\\x56\\x43\\x8a\\x70\\x9e\\x7c\\xe3\\x94\\x31\\x5a\\xa9\\x20\\x16\\xb9\\x32\\x81\\x40\\xef\\x1a\\xc7\\x66\\xd4\\x26\\xf4\\x5d\\x5d\\xcb\\x95\\xf6\\xd0\\xb3\\xcc\\x20\\xba\\x50\\x02\\x21\\x1a\\xc7\\xa2\\x8f\\x1f\\x35\\x80\\xa7\\x84\\xec\\xb4\\x8e\\xfc\\x1e\\x9b\\xe0\\x0b\\xbe\\xdb\\xe4\\x2d\\x36\\x94\\xeb\\xd7\\x92\\x93\\x20\\x79\\xf2\\x74\\x02\\x28\\x2e\\x4b\\xbe\\x73\\xa9\\xb6\\xe1\\x53\\x5b\\x01\\xfb\\x09\\xd2\\x33\\x7a\\xc8\\x08\\x56\\x6e\\x18\\x6f\\xdd\\xbd\\x74\\xca\\x44\\x61\\xab\\xba\\xf7\\xea\\x17\\x67\\xdd\\x7a\\x75\\x1c\\x71\\xc1\\x1b\\x30\\x6c\\xef\\x4d\\xca\\xd0\\xb1\\x77\\xd4\\xae\\x53\\xdf\\xb3\\xe0\\xc0\\x24\\xcf\\x4d\\x24\\x6d\\x07\\x27\\x0f\\x87\\xe2\\x41\\x43\\x1b\\xd0\\xc9\\x93\\x81\\x6e\\x80\\x29\\xb4\\x25\\x53\\xa8\\x8c\\x44\\x01\\xa2\\x56\\xfb\\xd6\\x0c\\x81\\xdd\\x0e\\x72\\x57\\x12\\x9c\\x63\\x11\\xc7\\xb4\\x07\\x45\\x50\\x6f\\xe7\\x10\\xf3\\xbb\\x27\\x45\\x09\\x5f\\x19\\x47\\xfb\\x65\\x72\\xb4\\x97\\x7f\\x15\\x8e\\xf6\\xcb\\xe4\\x68\\x2f\\xbf\\x86\\xa3\\xfd\\x05\\x7e\\x3f\\x96\\xb1\\x38\\xf1\\x9a\\xb0\\xeb\\x00\\xb4\\xb2\\xf5\\xe8\\xb9\\x2f\\x49\\xe7\\x78\\xfb\\xbb\\x27\\xf5\\x21\\xdf\\x24\\xe9\\xf7\\x2c\\x49\\xc0\\x0d\\xd1\\xca\\xcb\\x68\\xb6\\x76\\x90\\x5d\\x4b\\xcf\\x20\\xed\\xec\\xb9\\x2f\\x49\\xe7\\x44\\x80\\x77\\x5f\\x52\\xaa\\xf3\\x95\\x88\\xd3\\x65\\x8a\\x53\\xf9\\x26\\x4e\\xbf\\x48\\x31\\x01\\x6b\\xa6\\xf2\\x8d\\xd8\\x6c\\x49\\x30\\xa0\\x30\\x6c\\xd9\\xd7\\x66\\xc0\\x28\\xb0\\x45\\xb8\\xdd\\x48\\xaa\\xac\\x28\\x2f\\xd5\\xc6\\x0b\\xb8\\x73\\xe6\\x95\\xf7\\xc5\\xed\\x9c\\x13\\xf0\\xee\\x49\\xd5\\xd4\\x57\\x22\\x69\\xdf\\x14\\xd7\\xaf\\xdc\\x02\\x63\\x20\\xe6\\x0d\\x0d\\x50\\x4d\\x2b\\x40\\x35\\xd3\\xaf\\x0f\\x4c\\xe3\\x89\\x53\\xd6\\x77\\x38\\xd1\\x79\\xf8\\x66\\x60\\x38\\x19\\x0e\\x60\\x15\\x42\\xd6\\x3c\\x2a\\xab\\xc1\\x1d\\xda\\x93\\xe0\\x46\\xe3\\x07\\x4a\\xf7\\x3d\\x31\\x21\\xbc\\x27\\xdf\\xa1\\x0c\\xd9\\x00\\x9b\\x27\\x43\\x0a\\x9c\\xf9\\xd2\\x69\\x17\\xa0\\x7d\\x39\\xaf\\x0c\\x48\\xb5\\xda\\xb7\\x6c\\x28\\x25\\x28\\x47\\x98\\xa0\\x40\\x98\\x09\\x1b\\xb4\\x55\\xb9\\x90\\xd2\\xbc\\xa1\\x8a\\x82\\x2e\\x2e\\x1a\\x25\\xcd\\x7e\\xae\\xc0\\x39\\xa1\\x16\\x87\\x12\\x80\\x59\\xc5\\x54\\xa2\\x64\\xbb\\x85\\x09\\x0c\\xcc\\x9e\\x5a\\x1c\\xc1\\x9d\\x96\\x48\\x78\\xd4\\x2c\\x39\\x1f\\x48\\xab\\x27\\x22\\x9b\\x2a\\xaf\\xc7\\xfc\\xdc\\x5f\\x4f\\x7f\\x07\\x5e\\xf4\\xbc\\x80\\xed\\xdb\\x92\\xfa\\x3d\\x2f\\x29\\x46\\x99\\xcb\\xe8\\x1b\\x1a\\x80\\xfd\\xcf\\xd2\\x1e\\x4a\\x9f\\xbc\\x56\\x06\\xff\\x77\\x34\\xc0\\xd3\\x49\\xcd\\x38\\x91\\x03\\xe3\\xaa\\x6c\\x28\\x65\\x17\\xb0\\x54\\xe0\\xc9\\x1f\\x04\\x40\\xe4\\x68\\x80\\x5c\\x17\\x5d\\xc7\\x58\\x89\\x65\\x42\\x32\\x5a\\xb2\\x01\\x37\\x19\\x60\\x34\\xa6\\x66\\x75\\x87\\x4b\\x41\\x2b\\x6d\\x20\\x8e\\xc6\\x8b\\xa3\\x91\\x5d\\x03\\xe4\\xea\\xa3\\x6d\\x71\\x6e\\x25\\xd1\\x9a\\x5d\\xc0\\xc0\\x14\\x44\\x20\\xc7\\x96\\x00\\x30\\x3e\\x12\\xf1\\x46\\x28\\xd1\\x5c\\xe3\\xaa\\xfb\\x8b\\xe2\\x9c\\x8b\\xf1\\xee\\x71\\x2d\\xe1\\xb7\\x05\\xf1\\x7b\\x5e\\x10\\x0d\\x75\\x6c\\x54\\xb7\\x6c\\xa8\\x14\\xe0\\x65\\x36\\x9f\\xac\\xd0\\xaa\\xbc\\x6b\\x43\\x61\\x65\\xd6\\xde\\x51\\xaf\\x23\\x81\\x33\\x63\\x3a\\x92\\x14\\x63\\xb4\\x2c\\x41\\x56\\x95\\x4c\\x2c\\x6e\\xa3\\x82\\xe6\\x06\\x77\\x46\\x43\\xba\\x65\\x82\\x83\\x08\\x81\\x03\\x93\\xd8\\xea\\x8e\\x2d\\x8a\\x65\\x16\\xc0\\x31\\xf5\\x4d\\x13\\xd1\\xa8\\x17\\x40\\x24\\x02\\x85\\xdc\\x69\\xa2\\x4e\\x02\\x0c\\x51\\x68\\x6f\\x5c\\x2f\\x71\\xe7\\xd7\\x17\\xf0\\xad\\xc4\\x18\\x68\\x88\\x4f\\x6a\\x23\\xe9\\x63\\x47\\x59\\xa8\\x48\\xdf\\x15\\x04\\x5d\\x00\\xc9\\x83\\x9b\\x45\\x01\\xed\\x15\\x8d\\x82\\x2c\\x11\\x74\\x61\\xa9\\x4a\\xca\\x30\\x36\\xc6\\x5c\\xa9\\x54\\xe7\\x92\\x55\\xcf\\x64\\x79\\xec\\x5a\\x71\\x1f\\xa5\\x91\\x00\\x21\\x0a\\x40\\x8c\\x9a\\x53\\x76\\x3c\\xcf\\xfd\\xc5\\x77\\x4e\\xcf\\x78\\xf7\\xc0\\xba\\x4b\\x86\\xd0\\xcd\\x46\\xb2\\x53\\x1b\\x12\\x60\\x20\\xdb\\xc4\\x3d\\xb9\\x75\\xad\\x68\\x2c\\x85\\xc4\\xe6\\xe4\\xb6\\x37\\x96\\x72\\xf5\\x5d\\xb2\\x38\\x12\\x7c\\x39\\x57\\x2c\\xcb\\x5a\\x78\\x27\\x1a\\x05\\xb9\\x28\\x20\\x2e\\x6d\\x52\\xd8\\x75\\x6b\\x52\\x90\\xff\\xd2\\xac\\x68\\x93\\xb9\\xe2\\x14\\x24\\x1a\\x16\\x02\\x06\\x60\\xda\\x51\\x42\\x18\\xc0\\x36\\xed\\x04\\xb2\\x22\\x01\\x63\\x4b\\x2d\\x6c\\x03\\xfe\\x4f\\x0e\\x69\\x1f\\xbc\\x76\\xba\\x78\\xad\\x5b\\x0f\\x5d\\x31\\x8a\\x4b\\x86\\x54\\x1b\\x1c\\x4c\\xf1\\xad\\xa4\\x77\\xd9\\xc5\\xe6\\x52\\x6a\\xa8\\xbe\\x04\\xfd\\x34\\x08\\x64\\x14\\x58\\x86\\x63\\x68\\x52\\x52\\x81\\x61\\xeb\\x58\\x7f\\x3e\\xbf\\xbb\\x8d\\x26\\x07\\xb5\\x7e\\x9d\\xe4\\xbb\\x94\\x9c\\x1b\\x95\\x76\\x22\\xa3\\xe2\\xde\\x76\\xf0\\xbd\\x99\\xd0\\xad\\x0d\\x5b\\xba\\xfb\\xad\\x11\\x01\\xaf\\x53\\x80\\x8e\\x1d\\xd6\\x8b\\x60\\x81\\x71\\x55\\x60\\x8b\\x90\\xd6\\xc4\\x09\\x93\\xba\\x0d\\x4b\\xb0\\x40\\x60\\x14\\x8b\\x25\\xb5\\x13\\x69\\xdb\\xa9\\x66\\xd5\\x7d\\xb2\\xcf\\x70\\x05\\x55\\x4d\\xbf\\x74\\x54\\x29\\x48\\x51\\x10\\x14\\xd5\\x64\\xfe\\x80\\x2c\\x27\\x60\\xfa\\x95\\xea\\x64\\xeb\\xab\\xaf\\x00\\xe2\\x8f\\x49\\x74\\x32\\x4c\\xa2\\xb9\\x82\\x09\\x2a\\xc1\\xf2\\x7d\\xb7\\x1a\\x06\\x10\\xc1\\x91\\x67\\x75\\xdc\\x7a\\x03\\x7a\\xb4\\xdd\\xac\\xfb\\x16\\x8d\\x34\\x8f\\xa0\\x6a\\x44\\x41\\x30\\xee\\x43\\xf6\\xc1\\x9e\\x51\\xe1\\xbc\\x7d\\x22\\x32\\xc5\\x8f\\x41\\x6e\\xbe\\x54\\xa0\\x90\\x91\\xd2\\x0e\\x70\\x96\\xca\\xc8\\x61\\x68\\x43\\x97\\x16\\x2f\\x74\\x18\\x90\\x67\\x45\\x15\\xec\\x83\\xec\\x0d\\xae\\xd1\\x78\\xb1\\xd2\\x65\\x67\\x6e\\x85\\x9d\\x36\\x7c\\x6a\\xbd\\xb0\\x48\\x61\\x96\\x3d\\x53\\xf9\\x15\\xfc\\xed\\xd4\\x78\\x9f\\x63\\xde\\x5f\\x01\\xe7\\x8c\\x8b\\xff\\x78\\x8e\\xcb\\x37\\x4b\\x54\\x11\\xb1\\xa9\\x00\\xb7\\x04\\x77\\x58\\x6c\\xc6\\xe0\\x6b\\xeb\\x93\\x3b\\xac\\x1e\\xdc\\x61\\xba\\x85\\xc0\\x64\\x55\\x4d\\x15\\x2f\\x5c\\x27\\xf4\\xfe\\xc8\\xba\\x80\\x8a\\x84\\xac\\xcc\\x6b\\xe0\\x19\\x6a\\xaa\\xb1\\x7e\\xb8\\xe7\\xaf\\x20\\x6b\\x45\\x28\\x24\\x57\\xfe\\x86\\x2f\\x4c\\xb2\\x36\\xc2\\x5a\\xb1\\x6e\\x3b\\xf7\\x3e\\x37\\x95\\x89\\x7d\\xdd\\x45\\x2f\\x13\\x61\\x9f\\x0e\\x6e\\x68\\x78\\x92\\x19\\xdc\\xd0\\x28\\x36\\xae\\x8d\\x8b\\x83\\x2a\\xcc\\x74\\x32\\x84\\x55\\xa4\\xbb\\x00\\xbb\\xde\\xc6\\x64\\x08\\x93\\xc9\\x10\\x56\\x27\\x43\\x98\\x4e\\x02\\xf1\\x31\\x19\\xc2\\x08\\x0c\\x61\\x32\\xfa\\x64\\x08\\xd3\\x49\\x20\\x3e\\xfe\\x87\\x21\\x8c\\xc7\\x64\\x08\\x6b\\x93\\x21\\x4c\\x93\\x21\\x0c\\x89\\x6c\\xba\\xcf\\x59\\x7d\\x7d\\xb1\\xaa\\xa5\\xae\\xa0\\xda\\x54\\x46\\xf1\\x1f\\x6a\\x79\\xdb\\xc8\\x5a\\xde\\xe1\\xb3\\x96\\x57\\x64\\xd6\\xf2\\x82\\xce\\x94\\x75\\x43\\x43\\x98\\x2f\\xa1\\xfb\\xb3\\x96\\xb7\\xc9\\xac\\xe5\\x95\\x3e\\x6b\\x79\\xad\\x66\\x2d\\x6f\\xaf\\x75\\xd6\\xf2\\x2a\\xcf\\x5a\\x5e\\xf7\\xac\\xe5\\xb5\\x58\\x1e\\xcc\\x63\\xcb\\x46\\x6d\\x89\\xa3\\x88\\x5a\\xde\\xce\\x59\\xcb\\x0b\\xde\\x4f\\xd4\\xf2\\xa2\\xba\\x57\\x1a\\x48\\x50\\xeb\\x62\\xf5\\x7e\\x2a\\xdc\\xdb\\x39\\x47\\xe6\\xed\\xb1\\x43\\x19\\x4f\\x86\\xca\\x72\\xff\\xcc\\x6f\\x1d\\x3a\\x0b\\x1e\\x23\\xdf\\xc9\\xa4\\xf0\\x68\\x3b\\xc5\\x51\\xa6\\xca\\x4d\\x9b\\x6e\\xd1\\xee\\x86\\x62\\x94\\x62\\x36\\x32\\x79\\x43\\xdb\\x24\\x8c\\x00\\x7d\\xbc\\x4f\\x93\\x21\\xf6\\xd0\\x24\\x5d\\x08\\xb5\\xd5\\x39\\x49\\xe3\\x34\\xd4\\x04\\x8c\\x10\\x0a\\xcd\\x22\\x45\\x8d\\x6e\\xcd\\x7d\\x11\\xbc\\x42\\x81\\x07\\x1d\\x24\\x6f\\x6d\\xec\\x8d\\xbc\\xf0\\x24\\xc5\\x0c\\x0d\\xde\\x3b\\x5f\\xc0\\x4d\\xdf\\x91\\x5f\\x02\\x06\\x00\\x32\\xda\\x47\\xef\\x85\\xcd\\x66\\xde\\x91\\x8f\\x2d\\x95\\x17\\x74\\x2f\\x50\\xdb\\x08\\x84\\x5b\\xad\\xe5\\xdb\\xe5\\x7d\\xfe\\xf2\\xd7\\x97\\x78\\xdc\\xe4\\x20\\xe7\\xe4\\x20\\x47\\x9e\\x49\\x05\\x2b\\xad\\x5b\\x4d\\xd8\\x43\\x93\\x3d\\x6c\\xdc\\x50\\x4a\\xa3\\xfa\\xad\\x6b\\xdb\\x46\\x55\\xe0\\xa5\\x00\\x4e\\xad\\x13\\x22\\x12\\xae\\x7d\\x37\\x25\\x6c\\x00\\xf3\\xbe\\xaf\\x2f\\x03\\xb0\\xf2\\xad\\x2e\\x5e\\x6d\\x45\\xb1\\xbb\\xd6\\xbe\\x98\\xf3\\x7a\\xf4\\xdc\\x7f\\x9d\\xe7\\x74\\x93\\xb7\\x27\\x61\\xc7\\x6f\\xaf\\xf3\\x9f\\xfe\\x3a\\x81\\xd6\\xac\\x55\\x96\\xd1\\x78\\x45\\x5d\\x1f\\x8b\\x2d\\x2a\\x6d\\x3d\\x7a\\xee\\xbf\\xce\\x73\\xee\\xcb\\xdb\\x17\\xb8\\x56\\xbf\\xa6\\x77\\x7a\\x99\\xef\\xb4\\x7c\\x65\\xef\\x74\\x24\\xbf\\x89\\xdc\\x88\\x41\\x57\\x58\\xd7\\xc4\\xc8\\xe6\\x01\\xee\\x47\\xfc\\x57\\x68\\x00\\x47\\x64\\x06\\x66\\x9a\\x2c\\xdd\\xfa\\x3a\\xb8\\x5d\\xe2\\xca\\xfb\\xef\\xfc\\x9c\\xad\\xf3\\xf6\\xd4\\x1f\\xf3\\xed\\x8d\\xff\\xf3\\xdf\\x38\\x4e\\xba\\x32\\x0c\\xe0\\x21\\xd4\\x1a\\x27\\x3c\\x40\\x33\\x06\\x19\\x62\\x2c\\xe3\\xad\\x69\\x47\\xa3\\xa0\\x14\\xa4\\x99\\x84\\x11\\x79\\xc1\\x55\\x61\\x42\\x91\\x28\\x67\\x17\\x60\\xa6\\x01\\x37\\x3f\\x78\\x13\\x60\\xa6\\x8e\\xb8\\x21\\x65\\xd7\\x31\\xd6\\x0c\\xcb\\xc8\\x50\\x40\\x0b\\xc2\\xe7\\x67\\xc9\\xd8\\x15\\x4f\\xca\\xe9\\x8a\\x71\\xef\\xe9\\x8a\\x19\\x09\\xf1\\x4b\\xfb\\x68\\x9c\\x57\\x65\\x23\\x7e\\x4a\\xc6\\x98\\xe7\\x55\\x3c\\xea\\x66\\xc9\\xea\\x35\\xc1\\x4c\\x84\\xeb\\x7e\\x8c\\x75\\x5f\\x32\\xcf\\x09\\x4e\\x1f\\x1e\\xdb\\x0a\\x5c\\x13\\x80\\x3c\\xf9\\x81\\x3a\\xb0\\x32\\xc7\\xad\\x2e\\x1c\\xeb\\xa6\\xd7\\x25\\x24\\x66\\x30\\xe5\\xdf\\xd5\\xf9\\xf5\\x65\\xe6\\xa1\\x92\\x2f\\xae\\xb2\\x66\\x22\\xab\\xb7\\xc5\\xd9\\xd7\\xcf\\x5d\\xf7\\x1f\\xef\\x9c\\x72\\xf3\\xe1\\xf1\\xde\\xf7\\xcb\\x1f\\x0f\\x29\\xd3\\xcd\\x69\\x19\\xee\\x2b\\x4e\\xc1\\x4c\\xba\\xa8\\xd7\\xf5\\xe8\\xb9\\xff\\x70\\xe7\\xfc\\x9a\\x0f\\x5f\\xa0\\xc9\\x7f\\xf9\\x13\\xe2\\x44\\xc6\\x4e\\x37\\x62\\xed\\x8b\\x53\\x5f\\x91\\x3f\\xd1\\xc2\\x90\\x88\\x93\\x40\\xfc\\x57\\xba\\xde\\xe0\\xaa\\x06\\xc0\\xbd\\x32\\x2d\\xc6\\xbc\\x1e\\x57\\xde\\xff\\x05\\xe7\\xbc\\x97\\x0f\\xcf\\x19\\xe8\\x7e\\xf1\\xf3\\x27\\x08\\xbb\\xe9\\x96\\xbe\\x72\\x8e\\x63\\x55\\x4f\\x78\\xa1\\x06\\x9a\\x27\\xa7\\x0d\\xa4\\xe4\\xcd\\x29\\x69\\xca\\x5b\\x1c\\xd5\\xd4\\xf3\\xaa\\x6c\\x48\\xcd\\x2e\\xa9\\xf3\\x2a\\xb6\\x0a\\xa2\\xeb\\x68\\x14\\x80\\x12\\x47\\xd7\\x31\\x56\\xbc\\xd7\\x71\\x21\\x31\\x01\\x05\\x00\\x85\\xb2\\xb2\\x31\\xab\\x25\\xc0\\x5d\\xd0\\xbc\\x26\\xe9\\x2d\\x0e\\xf8\\xbd\\xce\\x42\\x0a\\xc7\\xa8\\xb2\\x65\\x83\\x47\\x76\\xf1\\x98\\x57\\x71\\xf7\\xcd\\x39\\xc9\\x44\\x40\\xed\\x46\\x3c\\x1c\\x40\\x9d\\xf4\\x08\\x02\\xff\\xfd\\x39\\xc5\\xe3\\xed\\x1f\\xa0\\x08\\x7c\\x76\\x7f\\x80\\x0a\\xcf\\xfb\\x36\\x1a\\xb8\\x74\\x3d\\x0f\\xbc\\xe0\\xa1\\xa2\\xda\\x7b\\xe9\\x22\\x37\\x35\\xda\\xf0\\x47\\x43\\xa1\\x3c\\x8f\\x22\\xdc\\xf6\\xdc\\xc2\\x1c\\xc9\\x4f\\x4c\\xa0\\x4f\\x49\\xe8\\x7e\\x4b\\x57\\x24\\x80\\x28\\x80\\x97\\x4f\\x0c\\x15\\x5f\\xd8\\xfa\\x6e\\x52\\x5a\\xb7\\xcd\\xa4\\x28\\x3c\\x75\\x03\\x24\\xb3\\xf1\\x2d\\x17\\xdb\\xe3\\x65\\x8d\\x56\\x77\\xed\\x54\\x86\\xd9\\xd6\\x81\\x44\\x6c\\xc5\\x58\\x01\\xc2\\xe4\\x3a\\x2e\\xae\\xb2\\x39\\x68\\xe7\\xa5\\xa0\\x18\\xa1\\x36\\x4b\\x82\\x78\\x1a\\x2d\\x61\\x2f\\x6a\\xe3\\x55\\x5a\\xa2\\x6d\\x03\\xe0\\x39\\xf6\\xd3\\x0d\\x75\\xf5\\x52\\x35\\xeb\\x47\\x84\\x27\\x9d\\xb2\\x74\\x5e\\x1b\\x1c\\x6b\\x4c\\x9b\\xb6\\x38\\x9a\\x8e\\x81\\xf4\\x1d\\x6a\\x5d\\x76\\x53\\xe4\\x48\\x4d\\xaa\\x2b\\xad\\xc0\\x9c\\x9e\\x4b\\xe2\\x98\\xbd\\xd7\\x17\\x77\\x2a\\x5d\\x74\\xc3\\x67\\x73\\xb0\\x21\\xf7\\x9e\\x94\\xdb\\xdd\\x75\\xf3\\x78\\x58\\x8a\\x3d\\x50\\x8b\\x49\\x66\\x8c\\x99\\xf3\\x0e\\x7c\\x7e\\x12\\xfc\\x60\\x67\\xdd\\xda\\xe0\\xf8\\x84\\x7f\\xd0\\x06\\x5c\\x8d\\x17\\x8b\\xad\\x38\\xee\\x53\\x75\\x67\\x1d\\x98\\x3f\\x7c\\x56\\x2d\\xf1\\x7f\\x24\\x60\\xb6\\x8a\\xec\\x25\\xb8\\xef\\x7a\\x4d\\xe8\\xdd\\x38\\xce\\x23\\x2b\\xbe\\x26\\xaa\\x45\\x67\\xb0\\x2b\\x71\\x9c\\x2f\\x75\\x14\\x01\\x25\\x38\\x61\\xe3\\xed\\x72\\x5f\\x6d\\xbf\\x3f\\x67\\x7a\\xfc\\xf4\\x38\\x60\\x9a\\x34\\x9c\\xce\\xab\\xa8\\x24\\x91\\x19\\xf1\\x04\\xd4\\x4d\\x32\\x3f\\x01\\x42\\x74\\x1a\\x07\\x76\\x18\\x07\\x0d\\x3e\\x26\\xdf\\x91\\x26\\x5b\\x2b\\x18\\xe0\\x1d\\x3c\\x4f\\xc9\\x15\\xe5\\x06\\x37\\x6e\\xbd\\x75\\x17\\x10\\x40\\x9a\\x2a\\x12\\xad\\xbc\\x2a\\xbc\\x14\\xee\\xfd\\x7f\\x9f\\xe5\\x9b\\x6e\\xda\\x38\\x3e\\x4b\\x33\\x2e\\x3e\\xc6\\x2e\\x3a\\x8a\\x25\\x44\\x90\\xb5\\xc9\\x26\\xd1\\xc2\\x1c\\x6b\\xe3\\x92\\x41\\xc0\\x76\\x04\\x01\\x65\\x06\\x01\\x11\\x32\\x40\\x10\\x90\\x8f\\x20\\x60\\x3b\\x82\\x80\\x34\\x83\\x80\\x90\\x3e\\x1c\\xb7\\x65\\x06\\x01\\x93\\xac\\xba\\x4d\\x1f\\x30\\x82\\x80\\x74\\x04\\x01\\xfb\\x11\\x04\\xe4\\x19\\x04\\x84\\xdf\\x18\\x41\\xc0\\x7e\\x04\\x01\\xfb\\x11\\x04\\xec\\x47\\x10\\xd0\\x8e\\x20\\x20\\xcd\\x20\\x60\\x82\\xbb\\xd3\\xbc\\x21\\x82\\x80\\xf5\\x08\\x02\\xb6\\x23\\x08\\x58\\x8f\\x20\\xa0\\x1d\\x41\\xc0\\x76\\x04\\x01\\x7b\\xbb\\xa4\\x41\\xe0\\x47\\x10\\x90\\x8e\\x20\\xa0\\x1c\\x41\\xc0\\x76\\x04\\x01\\xdb\\x93\\x20\\xe0\\xfb\\x73\\x0e\\xc7\\xc7\\x27\\x65\\x0a\\xcc\\x60\\xa9\\x8d\\xcf\\xde\\x81\\xff\\x53\\xac\\xfb\\xce\\x21\\x32\\x00\\x53\\x4a\\x72\\xdf\\x83\\x3c\\x9f\\xd3\\x45\\x9c\\xee\\x9e\\x01\\xba\\xd7\\x7d\\x80\\xc2\\x36\\x04\\xc5\\xb8\\x58\\x1f\\x3b\\x28\\x82\\x54\\xe9\\xa6\\x3c\\x36\\xfc\\x91\\x92\\x67\\x5c\\x84\\xc2\\xec\\x54\\x28\\x2c\\x67\\xe4\\x0f\\x7e\\xae\\xab\\xab\\x35\\x8d\\xde\\xd0\\x50\\xbc\\xb3\\xa6\\x5a\\x43\\xb4\\x84\\x78\\x27\\xe6\\x8b\\xf2\\xb8\\xa9\\xd2\\xeb\\x8b\\x54\\xd0\\xe0\\x6c\\xf1\\x09\\xbf\\x0f\\xf7\\x22\\x66\\x78\\x17\\xdc\\xa6\\x37\\xbf\\xe7\\xbd\\x13\\xf0\\x2d\\x97\\x1f\\x28\\x06\\x3b\\xef\\x21\\xe5\\xdc\\x92\\x2a\\x48\\xac\\x23\\xef\\x72\\xde\\x1c\\xa9\\x97\\x1d\\xb1\\x1e\\x2e\\x56\\xf3\\xbb\\x2e\\x75\\x8f\\x6b\\x07\\x19\\x66\\x02\\x16\\x6a\\xe8\\x3e\\xad\\xa5\\xd9\\x28\\x83\\x7c\\x17\\xcf\\xef\\xc5\\xb3\\x58\\x15\\xf8\\x08\\xe7\\x24\\xbc\\xbe\\x00\\x21\\x13\\x09\\x5e\\x95\\x56\\x55\\x99\\x09\\x5e\\x71\\x8e\\x98\\x3d\\xf7\\x5f\\xe9\\x39\\x4f\\xe2\\xe3\\x93\\xba\\x89\\x6f\\xaf\\xf4\\x37\\x79\\xa5\\x28\\xbf\\x45\\xa6\\x95\\x84\\x75\\xe6\\x33\\xd3\\x8a\\x7d\\x3d\\x7a\\xee\\xbf\\xd2\\x73\\xa8\\xfe\\xe3\\x97\\x14\\x72\\x7c\\x7b\\xaf\\xbf\\xcd\\x52\\x25\\xff\\xdb\\x94\\xa7\\xde\\xd6\\xa4\\x5c\\x61\\x5f\\x01\\xbc\\x8b\\x94\\x27\\x92\\x99\\xf2\\x14\\xdb\\x0a\\x52\\x9e\\xac\\xae\\x83\\xfc\\xf2\\x30\\xe5\\xe9\\xfd\\x39\\x1a\\xfd\\xf1\\x09\\x32\\xc0\\xb7\\x57\\xfe\\x1b\\x69\\x67\\x9f\\xb9\\x47\\x88\\x14\\x87\\xd9\\x81\\xed\\x59\\x3a\\xe2\\x2c\\x69\\x76\\x20\\x84\\x10\\x66\\x87\\xf2\\x61\\x76\\x8c\\x4b\\x9a\\x1d\\xc9\\xb9\\xa5\\x7b\\x47\\x7e\\x52\\xcc\\x1a\\xaa\\x21\\xc3\\xec\\x80\\x91\\x11\\x66\\x07\\xe2\\xb1\\x61\\x76\\xa4\\x01\\x21\\x1b\\x00\\xd2\\x90\\x7b\\x84\\xd4\\xa5\\x30\\x3b\\xe0\\x53\\x0c\\xb3\\x23\\xe3\\x71\\x7d\\xcb\\x46\\x98\\x1d\\x08\\x07\\x85\\xd9\\x81\\x08\\x6d\\x98\\x1d\\x83\\xa7\\xd9\\x11\\x37\\x84\\xd9\\x01\\x2f\\x64\\x98\\x1d\\x80\\x35\\xe5\\x3a\\x69\\xf3\\xc2\\xec\\x40\\x59\\x42\\x98\\x1d\\x70\\xc3\\x84\\xd9\\x61\\x87\\x1f\\x02\\x78\\xb9\\x61\\x76\\xf0\\xf4\\x75\\xa4\\xb5\\x01\\xec\\x01\\x9d\\x66\\xc7\\x9c\\x9f\\xd7\\xff\\x77\\xb9\\x23\\xd8\\xe7\\x48\\xef\\xc7\\xe7\\x25\\x53\\xdf\\x64\\xfb\\x37\\x91\\xed\\x64\\x74\\x1f\\x7d\\xb2\\xc7\\x37\\x9a\\xec\\xf1\\x46\\xc9\\x03\\x8f\\x24\\x20\\xa0\\x4a\\x57\\x9e\\xec\\xf1\\xc6\\xbb\\xd6\\x7e\\xc9\\x24\\x20\\xb0\\xc7\\x2b\\x65\\x97\\xf0\\xbc\\x0a\\x49\\x40\\x40\\xf6\\x1d\\x94\\xec\\xf1\\x48\\x02\\x9a\\x63\\x1d\\xec\\xf1\\xa3\\x4d\\xf6\\x78\\x19\\x93\\x3d\\xde\\x6a\\xda\\xef\\x48\\x02\\x42\\xca\\x45\\xa5\\xc9\\x1e\\x6f\\x75\\x4f\\xd2\\xf8\\xd1\\x26\\x7b\\xbc\\xd6\\xec\\x42\\x12\\x10\\x00\\xe9\\x7c\\x4c\\xf6\\x78\\x1f\\xc9\\x1e\\x8f\\x24\\xa0\\x39\\xd6\\x7d\\xb5\\x7b\\x8e\\xc2\\x7e\\xff\\xe1\\x2f\\x1f\\x1e\\x02\\xb2\\x90\\x94\\x5e\\xeb\\x42\\xa4\\x37\\xf3\\xb6\\xc4\\x3f\\x6e\\xbd\\x82\\xda\\xd6\\xc0\\x40\\x0a\\xde\\x5e\\xa2\\xc6\\x45\\xe3\\x80\\x92\\xa4\\x1e\\xb3\\x7a\\xa4\\xc3\\x03\\x83\\xc8\\x9e\\x67\\x17\\xd0\\xf4\\xe2\\xaa\\x6c\\x28\\x67\\x57\\x9d\\x59\\x8a\\x63\\x30\\x08\\xdf\\xc6\\x40\\x49\\x4b\\x76\\x1c\\x23\\xc5\\x98\\x71\\xbe\\xe4\\x2d\\x3e\\x85\\xad\\xa8\\x30\\x98\\xd7\\x63\\x5b\\x12\\x1f\\x5b\\xef\\x7e\\x11\\x1f\\xa5\\x83\\xfc\\xd1\\x81\\xd6\\x1d\\xdf\\xc7\\xa7\\x38\\xfe\\xcf\\x35\\xbf\\x4f\\x66\\x9b\\x02\\xab\\x31\\x39\\xea\\xb8\\xda\\x3e\\xef\\x7f\\x7f\\xfa\\xce\\xa1\\xc5\\x8f\\x4f\\xca\\xef\\x7f\\xf1\\xca\\xc6\\x8c\\x21\\xc5\\x08\\xd1\\x65\\xa4\\x00\\xf5\\xac\\xf5\\x06\\x75\\x27\\xd7\\xb1\\x50\\x25\\x5e\\x13\\xa7\\xa2\\xb6\\x8d\\x2a\\x0a\\xd8\\x41\\xd1\\x1c\\x27\\x77\\xfe\\xb5\\x4b\\xbf\\xd3\\xe5\\x0a\\xea\\xc3\\x56\\xae\\x44\\x48\\x29\\xa1\\xbe\\x4a\\x1b\\xe5\\x4a\\xa2\\x0b\\x73\\x5f\\x63\\xce\\xad\\x6e\\x9c\\xe9\\x6c\\x05\\x85\\x99\\x1d\\x6a\\xa1\\xfc\\x63\\xb5\\x20\\x5e\\x44\\x50\\xda\\xb8\\xb7\\x2a\\x85\\xb9\\xad\\x21\\xac\\x83\\x62\\xcf\\xe8\\xa0\\x5f\\x8b\\x93\\xea\\x68\\xf4\\x2b\\xb7\\xab\\xd0\\x19\\x9f\\xf5\\x45\\x2f\\x88\\xa8\\x03\\x5b\\x3e\\xce\\xef\\xba\\xa2\\xf2\\x5e\\x7b\\x3a\\x51\\xa4\\x96\\x93\\x2e\\xba\\x7c\\x81\\x2e\\xba\\x2f\\x0c\\xe7\\xc0\\xe4\\xa7\\x27\\x85\\x4b\\x80\\x2b\\x19\\x9b\\x83\\x31\\xb0\\x58\\xa3\\xc2\\x0a\\x18\\x7a\\x38\\xa9\\xfa\\x98\\x9a\\xb7\\x96\\xbe\\xb3\\x73\\xf1\\xb1\\x73\\xb5\\xc2\\x42\\x3b\\x79\\x2d\\x4d\\xc6\\x74\\x0f\\x74\\xbd\\x35\\xb1\\x2d\\x8e\\xe6\\xf1\\x76\\xc4\\x46\\xe1\\x41\\x80\\xf8\\xa6\\x31\\x32\\xd2\\xaf\\x75\\x47\\x4a\\x95\\xf4\\xad\\xe3\\xe0\\xdf\\x51\\x4a\\x48\\xce\\x3b\\x80\\xff\\x6b\\x3f\\xf8\\x2f\\x55\\xe1\\xc5\\xb0\\x75\\x3e\\x5f\\xd8\\x00\\x70\\x03\\xc7\\x09\\xad\\xae\\xaa\\x7c\\xa1\\xe6\\x8a\\x8c\\xf7\\xa3\\xe7\\xfe\\x9c\\x9c\\xa3\\x7b\\x9f\\x9e\\x94\\xe0\\x7c\\x2d\\x73\\x02\\x2e\\xdf\\xe6\\x71\\xc4\\xd1\\xb5\\x77\\x03\\x8b\\xf3\\xa2\\x6c\\xeb\\xd1\\x73\\x7f\\x4e\\xce\\xd1\\xaf\\x4f\\x5f\\x52\\x4c\\xf2\\xb5\\x4c\\xcc\\x00\\x6a\\x87\\xc7\\x19\\x41\\xe3\\x8c\\x20\\x6b\\x22\\xb3\\xd5\\x38\\x23\\x84\\x11\\xa7\\x71\\x46\\x88\\x6e\\x8f\\x33\\x02\\x9c\\x9a\\xbc\\xf4\\x3e\\xd6\\x01\\xef\\xfd\\xa3\\x89\\x3b\\x07\\x67\\x3e\\x3d\\x4f\\xe3\\xfe\\x5a\\xa6\\x8d\\xdd\\x2e\\x24\\x76\\xd8\\x22\\x7c\\xd8\\x22\\x3a\\xad\\x8a\\xe6\\xd3\\x16\\x69\\x7e\\xd8\\x22\\x0a\\x5b\\xa4\\xe0\\xaa\\x6c\\xc8\\x61\\x8b\\xd4\\xc3\\x16\\xb1\\xc3\\x16\\xb1\\xc3\\x16\\xa9\\x87\\x2d\\x62\\x9f\\x6d\\x11\\x3b\\x6c\\x11\\x3a\\x6c\\x11\\x9d\\x56\\x45\\xf3\\x69\\x8b\\x34\\x3f\\x6c\\x11\\x3d\\x6c\\x11\\x3b\\x6c\\x11\\x39\\x6c\\x91\\x7a\\xd8\\x22\\xfd\\xb0\\x45\\xfa\\xb4\\x45\\x78\\x1c\\xb6\\x88\\x3d\\xb0\\x45\\xce\\xc1\\xad\\xbf\\x3e\\xe1\\x18\\x8e\\xfd\\xcb\\x1b\\xc2\\xd2\\xac\\x92\\xca\\x08\\xf3\\x4b\\x6a\\x6b\\xaf\\x5e\\xae\\xd4\\x0d\\x44\\xe6\\x57\\xae\\x03\\x74\\x6d\\x57\\xd6\\x0e\\x08\\x80\\xab\\x34\\xd9\\x65\\xd4\\x72\\x05\\x79\\x5c\\xa7\\x72\\x8d\\xf7\\xcb\\x0d\\x84\\xad\\x21\\x01\\xa0\\x23\\xe8\\x3b\\x87\\x05\\xdc\\x84\\x77\\xb2\\x68\\x70\\x47\\x16\\xe3\\xb5\\x31\\xad\\x61\\x29\\x5c\\xd9\\xea\\x46\\xde\\xd0\\x28\\x84\\xcc\\x3e\\xa3\\x9d\\x99\\xa2\\x21\\x3b\\x23\\x4b\\xca\\xda\\xce\\x5d\\x2f\\x57\\x36\\xdd\\xa4\\x26\\xcd\\x2b\\x30\\x91\\xae\\xac\\x2d\\x1f\\x83\\x6b\\x43\\x24\\xf7\\x4a\\x2d\\x31\\xa3\\xaf\\x43\\xd6\\xb0\\xa0\\xc0\\x2b\\x95\\x3f\\x8c\\x4d\\xd7\\xf9\\xab\\x27\\x1e\\x24\\x34\\xd0\\x81\\x07\\x09\\x0d\\x74\\xe0\\x41\\x3e\\xd4\\x40\\x7f\\xcf\\x33\\xf8\\xa8\\x12\\x9e\\xaa\\xe7\\x16\\x8e\\x46\\x8b\\xe5\\x5c\\x7b\\x4d\\x82\\x43\\xaf\\x69\\x3b\\x80\\xaf\\x6f\\x0f\\x9b\\x26\\x6d\\x87\\x19\\xa5\\x07\\x0d\\xf7\\x2e\\x8a\\xcc\\xcd\\x49\\x92\\x0c\\x40\\x66\\x75\\x60\\x50\\x0c\\xab\\x5b\\xde\\x50\\x5a\\x26\\xd3\\x83\\x02\\xad\\xeb\\x3c\\xd7\\xf4\\x71\\xf8\\xde\\xc1\\x8e\\x46\\x18\\x70\\x34\\xa0\\x15\\x55\\x44\\xbb\\xf3\\xe1\\xb4\\xce\\xfd\\xbf\\xf2\\x45\\x35\\xf9\\xcd\\x3b\\x83\\x3b\\xb5\\x58\\xc8\\xa5\\x08\\x32\\xe4\\xac\\x01\\x98\\x1e\\xc4\\xd7\\xf0\\xbe\\xd3\\x48\\xef\\xbb\\x5a\\xa6\\xb5\\x2a\\x02\\x63\\x37\\x36\\xdf\\x62\\x05\\x31\\x09\\xfa\\xc8\\xc2\\x30\\xca\\x88\\x3e\\xa8\\xde\\x85\\x0a\\xfc\\xd4\\x5d\\x70\\x6f\\x04\\x2c\\x5c\\x8b\\x98\\xc3\\x66\\x48\\x5b\\xe1\\x7e\\x12\\xd3\\xfb\\x73\\xa4\\xf1\\xaf\\x4f\\x55\\xd9\\xbf\\xb8\\xb8\\xcb\\xa1\\xea\\xd0\\x80\\x82\\x14\\x99\\xb4\\x8e\\x88\\x0a\\x84\\x82\\x44\\x6c\\x33\\x14\\xe4\\xb0\\xa9\\x20\\xe1\\x5b\\x08\\x05\\x89\\x46\\x28\\x48\\x30\\xe8\\xd7\\x79\\x15\\x14\\x24\\xe8\\x6c\\x42\\x41\\x4a\\x9b\\xba\\x73\\x8e\\x35\\x41\\xca\\xa0\\x20\\x91\\x0d\\x1f\\x0a\\x12\\x25\\x4a\\xa1\\x20\\x9b\\x4e\\x05\\x99\\x09\\xe1\\x54\\x06\\xdb\\x25\\x15\\xa4\\xea\\x54\\x90\\x68\\x48\\x4d\\x90\\x32\\x28\\x48\\xa8\\xc3\\x50\\x90\\x83\\xa6\\x82\\xc4\\xae\\x18\\x0a\\x72\\x8e\\x75\\x57\\x68\\xb8\\xd2\\xd9\\xe1\\xfd\\xf6\\xd3\\xf7\\x8f\\xe1\\xbe\\x74\\x94\\xae\\xb4\\x58\\xbb\\x79\\x85\\xa8\\x8c\\x5b\\x7f\\x60\\xc3\\x72\\xa5\\xb3\\x03\\xf6\\xed\\x8f\\x4f\\x86\\x00\\x5f\\x3d\\x2d\\x36\\xe6\\x10\\xbd\\x3d\\x1b\\xe2\\x7c\\x6a\\xfa\\xaf\\x4f\\x1f\\xff\\xfc\\xf6\\xe3\\xdb\\xfb\\xfb\\xd4\\xc1\\xb0\\xdb\\xc9\\x33\\xfa\\x48\\x21\\xad\\x8a\\x5c\\x09\\x6f\\xa0\\x57\\x84\\xfb\\x28\\xe9\\x8d\\x5c\\x12\\x4f\\x01\\xc0\\x4b\\xc8\\xe2\\x1d\\xb2\\x59\\x66\\x2e\\x31\\xc8\\x24\\xc1\\xd2\\x03\\x0a\\x93\\xe4\\x6b\\x97\\xb1\\xb4\\xc1\\xb7\\xb8\\xfd\\xa3\\x87\\x3e\\x5b\\xf7\\x78\\xe8\\xc7\\x84\\xc7\\x53\\x68\\x28\\xa5\\x07\\x45\\x26\\x10\\x43\\xe2\\x2c\\x79\\x63\\x24\\x20\\xf7\\x12\\x87\\xe8\\x44\\xc3\\xa8\\x42\\xe0\\x0a\\x27\\xaa\\x02\\xf8\\x1b\\x90\\xe3\\x82\\xa3\\x8a\\x9b\\xef\\x8a\\x72\\xa1\\xea\\xa9\\x40\\x4d\\xfa\\x2d\\x6e\\xff\\xe8\\xa9\\xcf\\xf6\\x37\\x9e\\xfa\\xe7\\x0f\\x3f\\xfd\\xf0\\xe3\\x77\\xef\\x7e\\xbe\\xbf\\xb7\\x1a\\x4b\\xb1\\x8e\\x94\\x1c\\xc6\\x09\\xaa\\x5c\\x43\\xbd\\x5b\\x28\\x19\\xa4\\x0c\\x49\\x72\\x72\\x26\\x47\\x4f\\x95\\xb5\\x35\\xf0\\x76\\xd6\\x2d\\x54\\xfe\\x95\\xfa\\x3c\\x37\\xc6\\x6b\\x11\\x2f\\xd6\\x6e\\xcc\\xba\\x18\\xcb\\xcd\\xee\\xe3\\xe3\\x73\\xa5\\xb3\\x85\\x87\\xc7\\xfd\\xfe\\xbb\\x1f\\x1f\\x0a\\x07\\x68\\xe0\\x42\\x38\\xd0\\x08\\xe1\\x40\\x7c\\x37\\x84\\x03\\x7e\\x43\\xf8\\x16\\x79\\xa4\\x70\\x40\\x6e\\x42\\x38\\x3a\\x08\\x63\\x87\\x6c\\x30\\x42\\x43\\x38\\xe0\\xaf\\x08\\xe1\\x00\\x4c\\xd2\\x67\\xe1\\x10\\x1e\\x29\\x1c\\x2f\\x1d\\x59\\xfd\\xae\\x1b\\x1a\\x31\\x50\\xcf\\x70\\x68\\x4b\\x3c\\xcf\\x18\\xc8\\x50\\x9a\\xe9\\xb2\\x3b\\x38\\xaa\\xbb\\x66\\xb9\\x6f\\x0c\\xe4\\x1e\\x47\\x27\\x66\\x14\\x52\\x60\\x20\\x78\\x4e\\x3f\\x0f\\xd4\\xb5\\x3d\\x95\\xc2\\xb3\\x8d\\x74\\x4c\\xd0\\x63\\x41\\x54\\x9b\\x82\\x88\\x46\\x08\\xa2\\xf6\\x29\\x88\\x29\\x5b\\x54\\xd3\\x59\\x1a\\x82\\x88\\xac\\xad\\x10\\x44\\xa9\\x53\\x10\\x91\\xbe\\x85\\x54\\x78\\x9b\\x82\\x88\\x78\\xf0\\x67\\x41\\x54\\x9b\\x82\\xf8\\x92\\x36\\x22\\xd1\\x96\\x16\\x61\\x6f\\xc5\\xb1\\xe2\\xe2\\x08\\x8e\\xc2\\x54\\xaa\\xbb\\x43\\xac\\x49\\xc0\\xf4\\x8f\\x81\\x80\\x2f\\x1c\\x03\\x75\\xaf\\x17\\x0c\\x64\\x09\\xd6\\xe7\\x89\\xb1\\xf9\\x79\\xa0\\x11\\x8d\\x27\\x12\\x7f\\xb6\\x6d\\x8e\\x19\\x7a\\x28\\xef\\xea\\x5c\\x4c\\xb7\\xf8\\x00\\xe1\\x54\\x6c\\x67\\xa9\\x5a\\xae\\xc4\\xb1\\x85\\x62\\x01\\x30\\x1c\\x34\\x57\\xa9\\xba\\xe6\\xb6\\x26\\xbc\\x89\\xd6\\x90\\x77\\x2e\\x62\\x52\\xae\\xee\\x00\\x9a\\x32\\xbe\\x31\\xcb\\xa2\\xce\\x37\\xd3\\xd7\\x17\\x37\\xdc\\xdd\\x81\\x85\\x58\\xbc\\xe7\\xdd\\x9d\\xe7\\xdd\\xc3\\x56\\xc6\\xdd\\xfb\\x98\\x77\\xd7\\x31\\xef\\xde\\xdb\\xbc\\x7b\\xef\\x79\\xf7\\xee\\x76\\x99\\x77\\x77\\xc3\\xdd\\xef\\x4f\\x05\\x9f\\x23\\xde\\xdf\\x7d\\xfa\\xf1\\xc7\\xb7\\x07\\x4a\\x96\\x6a\\xb1\\x11\\x06\\x59\\x2d\\x61\\xd4\\x34\\x6e\\xc5\\xfb\\xd8\\x5b\\xd7\\x32\\x84\\x41\\x68\\x3b\\xe0\\xce\\x13\\xd0\\xd0\\x02\\x49\\xca\\x1d\\x1e\\xbb\\xf8\\xbf\\x75\\xc6\\xf7\\xbc\\x0a\\x12\\x12\\x9d\\x2c\\xee\\x77\\x03\\xa7\\x1f\\x59\\x01\\xa5\\x5f\\x95\\x02\\x46\\xbf\\x2e\\x45\\x47\\xe2\\xe0\\xaa\\x56\\x78\\xe0\\xe0\\xa9\\xef\\x06\\x47\\x9f\\x4a\\x2d\\x0a\\x72\\xdd\\x5e\\x74\\xd4\\xbd\\xb1\\xe2\\x3a\\x3c\\xa3\\xf0\\xcd\\xc6\\x7d\\xe3\\x8a\\xab\\x9c\\x95\\xf5\\x0f\\x9f\\x3e\\xfc\\x08\\xad\\xf7\\x50\\x91\\xa8\\x25\\x95\\x7c\\xe6\\x1d\\xca\\xd2\\x07\\xad\\x61\\x05\\x6a\\xa3\\x9b\\xf6\\xba\\x86\\xd2\\x1e\\x6d\\x2c\\x2e\\xbc\\xce\\xef\\x3e\\x7a\\x88\\xb3\\xee\\xfd\\xfc\\x10\\x4f\\x16\\xab\\x24\\xe3\\x7d\\x3c\\xc5\\x41\\x78\\x0f\\x76\\x60\\xe5\\x45\\x46\\x5f\\x43\\xf9\\x80\\x2b\\x6c\\x24\\xe1\\xbd\\xca\\x91\\x30\\xf8\\xff\\xdf\\x7f\\xfc\\xe9\\xcf\\xf1\\xf9\\xfd\\xdb\\xfb\\x9f\\xe3\\xf3\\xe7\\xbf\\xfc\\xf0\\x6f\\x97\\xff\\x0e\\x00\\x00\\xff\\xff\\x35\\xfe\\xc0\\x29\\x83\\x0d\\x01\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_svg() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_svg,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.svg\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_ttf = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x9c\\xbc\\x07\\x7c\\x5b\\xd5\\xf9\\x3f\\xfc\\x3c\\xe7\\x9c\\x2b\\xc9\\x76\\x3c\\x64\\x59\\x52\\xbc\\x64\\xc9\\xb2\\x25\\xdb\\xb2\\xbc\\x64\\x49\\x96\\x87\\x7c\\xbd\\xf7\\xca\\xb2\\x1d\\x67\\x78\\xdb\\x19\\x76\\x9c\\x38\\xce\\x0e\\x09\\x59\\x84\\x0c\\x32\\xc8\\x22\\x40\\xc8\\x20\\x40\\x48\\x48\\x1c\\x20\\x10\\x87\\x32\\x0a\\x81\\x32\\x4a\\x17\\x14\\x28\\x94\\x32\\xda\\x02\\x85\\x30\\x4a\\x5b\\x0a\\xc4\\x92\\xdf\\xcf\\xbd\\x92\\x1c\\x27\\xa1\\xfd\\xf7\\xfd\\x09\\x14\\x4b\\xf7\\x9e\\x7b\\x74\\xcf\\x73\\x9e\\xf1\\x7d\\xd6\\x05\\x04\\x80\\x10\\x04\\x60\\x00\\x65\\xc5\\x25\\xa5\\x01\\xe9\\x01\\x19\\x00\\x38\\x09\\x00\\xf8\\xb2\\xa9\\xd3\\x0b\\x3f\\x91\\x7f\\xa0\\x00\\xc0\\x6a\\x00\\x52\\x5e\\x37\\x35\\x35\\xe3\\xd2\\xef\\x3f\\x3f\\x00\\x40\\xf7\\x01\\x40\\x6b\\x47\\x5f\\xdb\\xc0\\xd4\\x4f\\x8f\\xa7\\x02\\xd0\\x7f\\x02\\xc8\\xe6\\x77\\x2c\\x5b\\xaa\\x6d\\xfb\\x36\\x6c\\x36\\xe0\\xa3\\x7f\\x04\\x80\\x7b\\xba\\x07\\x7a\\xfa\\x3e\\x0a\\x7b\\xef\\x1b\\xc0\\xc7\\x56\\x00\\x04\\x1c\\xec\\x69\\x1b\\x1c\\x10\\x7e\\x0d\\xf0\\xd1\\x37\\x01\\x40\\xd6\\xb3\\x70\\x65\\x77\\x7e\\x26\\x17\\x04\\x30\\xa9\\x15\\xb0\\xfb\\x67\\xbd\\x5d\\x6d\\x9d\\x3f\\xa4\\x87\\x84\\x00\\x0e\\x46\\x01\\x80\\xad\\xb7\\xb7\\xab\\x6d\\x12\\xa5\\x1f\\x03\\x0e\\x4e\\x03\\x80\\xb8\\xde\\xbe\\xa5\\x2b\\xa2\\x5f\\xcd\\x6a\\x01\\x1c\\x5c\\x01\\x10\\x12\\xbb\\x70\\x51\\x47\\xdb\\x47\\xff\\x72\\x7c\\x0b\\xb8\\xf1\\x1e\\x00\\x59\\x5c\\x5f\\xdb\\x8a\\x01\\xee\\xcd\\xc0\\x08\\xc0\\xed\\xcf\\x01\\x80\\xb6\\xbf\\xad\\xaf\\xab\\x64\\xe1\\xa2\\xe7\\x00\\xb7\\x7f\\x08\\x40\\xb5\\x03\\x8b\\x06\\x97\\xfe\\xb5\\xf0\\xc1\\xbf\\x01\\xee\\x02\\x00\\xfd\\x6f\\x07\\x96\\x74\\x0d\\xd8\\x87\\x72\\x9e\\x05\\x7c\\x36\\x04\\x00\\xce\\x8a\\xb4\\x10\\x56\\x2e\\xbc\\x08\\xc8\\xe0\\x97\\xf0\\x4b\\x40\\xd4\\xa1\\x11\\x10\\x9b\\xb0\\x03\\x10\\x57\\xe0\\x0a\\x40\\x5c\\x8b\\xb7\\x00\\xe2\\x7a\\x5c\\x0f\\x88\\x7b\\x71\\x1f\\x20\\xfe\\x12\\x7f\\x09\\x28\\x5e\\xef\\x0f\\x1a\\x48\\x06\\x2c\\x2e\\xad\\x9e\\x06\\x32\\x81\\xaa\\x00\\x63\\x63\\xe2\\x19\\x1c\\xec\\xeb\\x18\\x00\\x99\\xf0\\x49\\x7c\\x33\\xef\\x5f\\x19\\x10\\x7c\\x06\\xfe\\x88\\xf7\\xe2\\x11\\xbc\\x0f\\x8f\\xe2\\x31\\x3c\\x8e\\x27\\xf0\\x7e\\x3c\\x89\\x0f\\xe0\\x83\\xf8\\x10\\x9e\\xc2\\x87\\xf1\\x34\\xbe\\x8d\\x67\\xf0\\x11\\x3c\\x8b\\xe7\\x70\\x18\\xcf\\xe3\\xa3\\xf8\\x18\\x3e\\x8e\\x17\\xfe\\x4f\\xd7\\x7c\\x44\\x0e\\x93\\xbb\\xc8\\x61\\x72\\x37\\xb9\\x9b\\xdc\\x43\\xee\\x25\\x47\\xc8\\x7d\\xe4\\x28\\x39\\x46\\x8e\\x93\\x13\\xe4\\x7e\\x72\\x92\\x3c\\x40\\x1e\\x24\\x0f\\x91\\x53\\xe4\\x61\\x72\\x9a\\x9c\\x21\\x8f\\x90\\xb3\\xe4\\x1c\\x19\\x26\\xe7\\xc9\\xa3\\xe4\\x31\\xf2\\x38\\xb9\\x40\\x9e\\xf8\\x3f\\x5e\\xf5\\x05\\x79\\x92\\x3c\\x49\\x2e\\x92\\x8b\\x64\\x84\\x8c\\x90\\x4b\\xe4\\x12\\x79\\x8a\\x3c\\x45\\x9e\\x26\\x4f\\x93\\x67\\xc8\\x33\\xe4\\x59\\xf2\\x2c\\x79\\x8e\\x3c\\x47\\x7e\\x4e\\x7e\\x4e\\x9e\\x27\\xcf\\x93\\x17\\xc8\\x0b\\xe4\\x32\\xb9\\x4c\\x5e\\x24\\x2f\\x92\\x5f\\x90\\x5f\\x90\\x97\\xc9\\xcb\\xe4\\x15\\xf2\\x0a\\x79\\x95\\xbc\\x4a\\x5e\\x23\\xaf\\x91\\x5f\\x92\\x5f\\x92\\xd7\\xc9\\xaf\\xc8\\xaf\\xc8\\xaf\\xc9\\xaf\\xc9\\x6f\\xc8\\x6f\\xc8\\x6f\\xc9\\x6f\\xc9\\xef\\xc8\\xef\\xc8\\x1b\\xe4\\x0d\\xf2\\x26\\x79\\x93\\xfc\\x9e\\xfc\\x9e\\xbc\\x45\\xde\\x22\\x6f\\x93\\xb7\\xc9\\x3b\\xe4\\x1d\\xf2\\x07\\xf2\\x07\\xf2\\x2e\\x79\\x97\\xbc\\x47\\xde\\x23\\x7f\\x24\\x7f\\x24\\xef\\x93\\xf7\\xc9\\x9f\\xc8\\x9f\\xc8\\x07\\xe4\\x03\\xf2\\x21\\xf9\\x90\\xac\\x22\\xab\\xc8\\xc7\\xe4\\x63\\xf2\\x67\\xf2\\x67\\xf2\\x17\\xf2\\x17\\xf2\\x57\\xf2\\x57\\xf2\\x09\\xf9\\x84\\x7c\\x4a\\x3e\\x25\\x9f\\x91\\xcf\\xc8\\xdf\\xc8\\xdf\\xc8\\xe7\\xe4\\x73\\xf2\\x05\\xb9\\x42\\xae\\x90\\x2f\\xc9\\x97\\xe4\\x2b\\xf2\\x15\\xb9\\x0b\\x08\\x04\\x82\\x1e\\x72\\x01\\xa0\\x08\\x66\\x41\\x04\\x6c\\x84\\x8d\\x90\\x09\\x9b\\x61\\x33\\x58\\xf1\\xaf\\xf8\\x09\\xd8\\xf0\\x33\\x92\\x04\\x59\\xc4\\x4c\\x9c\\xb0\\x9a\\x14\\x90\\xb9\\xb0\\x93\\xb4\\x91\\x25\\x70\\x86\\x0c\\x91\\x65\\xf0\\x0c\\x59\\x49\\x56\\xc2\\x73\\x64\\x35\\xd9\\x07\\x3f\\xa7\\x7f\\xa6\\x7f\\x86\\xf7\\x80\\xb2\\x5f\\xe1\\x6e\\xe0\\x00\\xb8\\xc3\\x9c\\x05\\x00\\x63\\x3c\\x7f\\xe9\\x6f\\xa1\\x9b\\xc0\\xc4\\xd7\\x87\\x40\\xc6\\x42\\x40\\xdb\\x22\\x70\\xbb\\xf0\\x7d\\x60\\xe5\\x92\\x41\\xe0\\x01\\xc6\\x5c\\xb2\\x76\\xd7\\xef\\x01\\x64\\xed\\xc4\\xa4\\x05\\xbc\\xaf\\x4e\\x10\\xf0\\x6c\\x6e\\x58\\x1c\\x27\\x70\\x1d\\xf5\\xbe\\xa3\\xc4\\x6f\\x20\\x69\\x05\\x2a\\x7e\\x8a\\x02\\x26\\x29\\x16\\x27\\x5e\\x0f\\x12\\x68\\x15\\xe5\\xc0\\x0f\\x02\\x41\\x07\\xb7\\xc0\\x51\\x38\\x03\\x8f\\xc0\\xb3\\xf0\\x12\\xfc\\x1a\\x3e\\x81\\xaf\\xc1\\x8d\\xc1\\x28\\xc7\\x78\\x34\\x62\\x1a\\x4e\\xc5\\xb9\\xd8\\x83\\xb7\\xe0\\x3a\\xdc\\x8b\\xc7\\x70\\x18\\xbf\\xc1\\x31\\x12\\x49\\xec\\xa4\\x99\\xfc\\x8c\\xfc\\x82\\xbc\\x42\\xde\\x27\\xff\\xa0\\x48\\x29\\xf5\\xa3\\xc1\\x54\\x4f\\xb7\\xd1\\x1d\\x74\\x2f\\x3d\\x46\\x87\\xe9\\x08\\x7d\\x85\\xfe\\x8a\\xfe\\x8e\\xbe\\xc5\\xe2\\x59\\x2a\\x2b\\x61\\x75\\xac\\x9d\\x2d\\x62\\xcb\\xd9\\x16\\xf6\\x2b\\xf6\\x36\\xfb\\x88\\xfd\\x8b\\x43\\x2e\\x84\\x53\\x68\\x50\\x93\\xaf\\xd9\\xac\\xf9\\xbb\\xe6\\x1f\\x9a\\x1f\\x62\\x6a\\xb4\\x01\\x5a\\xa5\\x56\\xa3\\x8d\\xd5\\x1a\\xb4\\x69\\x5a\\x8b\\x36\\x5b\\x9b\\xab\\x2d\\xd6\\x2e\\xd5\\xae\\xd3\\xde\\xaf\\x7d\\x50\\x7b\\x46\\xc7\\xe9\\x14\\x3a\\x95\\x2e\\x56\\x67\\xd0\\xa5\\xe8\\xe6\\xc4\\x92\\x58\\x49\\x6c\\x70\\x6c\\x68\\x6c\\x44\\xac\\x26\\xd6\\x14\\x5b\\x1e\\xdb\\x1a\\xdb\\x15\\xff\\xea\\x77\\x2f\\xb8\\xc7\\xc6\\x5c\\x63\\x63\\x5e\\x49\\x17\\x56\\xa8\\x85\\x58\\x38\\x0a\\xc7\\xe0\\x11\\x38\\x0b\\xcf\\xc1\\x2f\\xe0\\x37\\xf0\\x29\\x7c\\x03\\x63\\x18\\x82\\xa1\\x68\\xc0\\x04\\x4c\\xc7\\x69\\xd8\\x8a\\xbd\\xe2\\x0a\\x8f\\xe2\\x39\\xfc\\x06\\x7f\\x24\\x93\\xbd\\x2b\\x7c\\x89\\xbc\\x42\\xde\\x21\\xff\\xa0\\x30\\xbe\\xc2\\x4d\\x74\\x07\\xbd\\x83\\xde\\x49\\x4f\\xd0\\xf3\\xf4\\x12\\x7d\\x95\\xfe\\x96\\xbe\\xc5\\x80\\x19\\x58\\x1a\\x2b\\x65\\xf5\\xac\\x83\\x0d\\xb0\\x15\\x6c\\x2b\\xfb\\x35\\x7b\\x87\\x7d\\xcc\\xbe\\xe3\\x08\\x27\\xd7\\x80\\xc6\\xa9\\x59\\xaf\\x39\\xaa\\xf9\\x56\\xf3\\xcf\\x98\\x1a\\x2d\\x68\\x15\\x5a\\xb5\\x56\\xab\\x8d\\xd7\\xa6\\x69\\x33\\xb4\\x8e\\xf1\\x15\\x9e\\xd0\\x3e\\xa8\\x3d\\x7d\\xdd\\x0a\\x5b\\xbc\\x2b\\x94\\x4f\\x58\\x61\\xa7\\x77\\x85\\xa3\\x82\\xe6\\x61\\x93\\x98\\x64\\xec\\x5f\\x00\\x63\\x1f\\x63\\xd1\\xd8\\x73\\x68\\x1f\\x7b\\x16\\x00\\x93\\x00\\x30\\x1e\\x00\\x75\\x02\\x77\\x01\\x60\\x34\\x00\\x0a\\x7a\\x5e\\x35\\xa6\\x1c\\xa3\\xee\\xef\\xdc\\x7f\\xc3\\x26\\x81\\x34\\xee\\x0e\\x77\\x21\\xec\\x74\\xbd\\xe5\\x3a\\xe9\\x7a\\xc9\\x75\\xde\\x75\\xd2\\x75\\xbf\\xeb\\x3e\\xd7\\x61\\xd7\\x6d\\x00\\x63\\x3d\\x63\\xdd\\xc2\\x08\\x97\\x14\\x60\\xac\\x6c\\xf4\\xea\\xe8\\xf7\\x00\\xa3\\x4f\\x00\\x8c\\x9e\\x05\\x18\\x3d\\x01\\x30\\x7a\\x1f\\x80\\x7b\\x0f\\x80\\xfb\\x0e\\x80\\xd1\\x32\\x80\\xbf\\x56\\xff\\x75\\xd2\\x5f\\x9e\\xfe\\xcb\\x17\\x7f\\x69\\xf8\\xcb\\xdf\\xfe\\x82\\x1f\\x35\\x01\\x7c\\x54\\xf7\\x51\\xed\\x47\\xd5\\x1f\\x15\\xfd\\x59\\xf1\\x51\\xce\\x9f\\x03\\x3e\\xca\\xf8\\x88\\x7e\\xf8\\x03\\xc0\\x87\\x6f\\x00\\x7c\\xb8\\xfc\\xc3\\xf9\\x1f\\xf6\\x7e\\x38\\xfb\\x83\\x3d\\x1f\\x4e\\xf9\\xd0\\xf0\\xc1\\xc6\\x3f\\x9d\\xfa\\x60\\xf9\\x07\\xcb\\x3e\\x58\\xf4\\xc1\\xc2\\x0f\\x5a\\x3f\\x28\\xfe\\xc0\\xfc\\x41\\xd2\\x7b\\x2f\\xf9\\xff\\x8a\\xdc\\x89\\x07\\x3d\\xdc\\x2b\\xbe\\xde\\x99\\x20\\x16\\xbf\\x01\\x80\\x77\\x01\\x90\\x01\\xa0\\x66\\xc2\\xbb\\x75\\xa2\\xec\\x60\\x3b\\x2e\\x84\\xff\\xf0\\xc2\\x99\\xde\\x11\\xb7\\x00\\xe0\\x01\\xef\\xb1\\xb3\\x00\\xf8\\x1d\\x00\\xd1\\x00\\x10\\x1e\\x80\\x08\\x36\\xf1\\x2d\\x00\\xf2\\x09\\x00\\xf9\\xf1\\xc6\\x19\\xc8\\x57\\x3f\\x35\\x2f\\xf9\\x93\\xe7\\xfd\\xff\\xe3\\x45\\x59\\x08\\x7e\\x8e\\x5f\\xe0\\x15\\xfc\\x12\\xbf\\xc2\\xaf\\x61\\x1d\\x7e\\x82\\x3f\\xe2\\x55\\x1c\\x45\\x17\\xba\\x71\\x0c\\xd6\\xc3\\xad\\x04\\x08\\x12\\x42\\x28\\x61\\xb0\\x01\\x36\\x12\\x8e\\x48\\x88\\x94\\xc8\\x88\\x1f\\xf1\\x87\\x4d\\xb0\\x99\\x28\\x89\\x8a\\xa8\\xc9\\x64\\x12\\x4e\\x22\\x60\\x0b\\xdc\\x46\\x22\\x49\\x14\\x89\\x26\\x1a\\x12\\x03\\x5b\\xf1\\xaf\\xf4\\xcf\\x70\\x3b\\x7e\\x0a\\xdb\\x60\\x3b\\xec\\x20\\xb5\\xa4\\x8e\\xd4\\x93\\x06\\xd8\\x49\\xa6\\x90\\xa9\\x64\\x1a\\x99\\x4e\\x66\\x90\\x46\\xd2\\x44\\x9a\\xe1\\x0e\\xd8\\x45\\x66\\x92\\x16\\x32\\x8b\\xcc\\x26\\x73\\xc8\\x5c\\xd2\\x0a\\xbb\\x61\\x0f\\x69\\x23\\xed\\xa4\\x83\\x74\\x92\\x2e\\xd2\\x0d\\x7b\\xe1\\x4e\\x41\\x9f\\x91\\x95\\x64\\x35\\x59\\x43\\xd6\\xe2\\x67\\xf8\\x37\\xfc\\x86\\x04\\x90\\xfd\\xe4\\x00\\x39\\x48\\x0e\\x91\\x41\\xb2\\x94\\x2c\\x27\\x2b\\xe0\\x34\\x9c\\x21\\x5f\\xc3\\x23\\xe4\\x1b\\xf2\\x77\\xf2\\x2d\\x9c\\x85\\x73\\xe4\\x07\\xf2\\x23\\xb9\\x0a\\xc3\\x64\\x94\\xb8\\xe0\\x3c\\x71\\x93\\x31\\x78\\x94\\x02\\x3c\\x46\\x11\\x1e\\xa7\\x84\\x52\\xb8\\x40\\x19\\x3c\\x01\\x4f\\x52\\x8e\\x4a\\xa8\\x94\\xca\\xa8\\x1f\\xf5\\xa7\\x01\\x74\\x12\\xfc\\x9c\\x06\\xd1\\x60\\x78\\x9e\\x06\\xc2\\x0b\\x70\\x19\\x5e\\x84\\x97\\xe0\\x17\\xf0\\x32\\xbc\\x42\\x43\\xe0\\x55\\x78\\x8d\\xd6\\x51\\x15\\xfc\\x9a\\xaa\\xe1\\x37\\x74\\x32\\x0d\\xa7\\x11\\x34\\x12\\x7e\\x0b\\xbf\\x83\\x37\\x68\\x34\\xad\\xa7\\x1a\\x78\\x93\\xc6\\xc0\\xef\\xa9\\x96\\xea\\xe0\\x2d\\x1a\\x0b\\x6f\\xc3\\x3b\\xf0\\x07\\xaa\\xa7\\x51\\xf0\\x2e\\x8d\\xa3\\xf1\\xd4\\x40\\x8d\\x34\\x81\\x26\\xd2\\x24\\x78\\x8f\\x9a\\x68\\x32\\x35\\xc3\\x27\\xf0\\x29\\x7c\\x06\\x7f\\xa3\\x29\\xf0\\x39\\x7c\\x01\\x57\\x68\\x2a\\x7c\\x09\\x5f\\xc1\\xd7\\xf0\\x0d\\x4d\\x83\\xbf\\xd3\\x74\\x9a\\x01\\xdf\\x52\\x0b\\xfc\\x83\\x66\\xd2\\x06\\x6a\\x05\\x37\\xb5\\xc1\\x18\\xb5\\xd3\\x2c\\xea\\xa0\\xd9\\x08\\x88\\x48\\x68\\x0e\\x9d\\x42\\x73\\x91\\x22\\x43\\x8e\\xfe\\x48\\xa7\\xd2\\x69\\xa8\\xc0\\x30\\x54\\xa2\\x8a\\x4e\\xa7\\x33\\xd0\\x80\\x46\\x3a\\xc6\\x80\\xfe\\x40\\xbf\\xc7\\x04\\x4c\\xc4\\x24\\x34\\xd1\\xab\\x74\\x14\\x93\\xd1\\x4c\\xff\\x41\\xff\\x49\\x1b\\x69\\x13\\xfd\\x2b\\xfd\\x04\\x53\\x30\\x95\\xba\\xa8\\x1b\\xd3\\x30\\x9d\\x7e\\x4a\\x3f\\xc3\\x0c\\xb4\\x60\\x26\\x5a\\xd1\\x86\\x76\\xda\\x4c\\x67\\xd2\\xbf\\xd1\\xcf\\x69\\x0b\\x9d\\xc5\\xa4\\x4c\\x46\\xbf\\xa0\\x57\\x30\\x0b\\x1d\\xf4\\x4b\\xfa\\x15\\x66\\x63\\x0e\\xe6\\xd2\\x7f\\x63\\x1e\\x3a\\xe9\\xbf\\xe8\\x77\\x74\\x36\\x9d\\x43\\xe7\\x62\\x3e\\xf2\\x8c\\x63\\x12\\x2c\\xc0\\x42\\x86\\x8c\\xd0\\xaf\\xe9\\x37\\x8c\\x32\\x86\\x45\\x74\\x3e\\x9d\\x47\\x17\\xd0\\x85\\xb4\\x8f\\xf6\\xd3\\x45\\x58\\x8c\\x25\\xf4\\xef\\xf4\\x5b\\xba\\x89\\x6e\\xc6\\x52\\x2c\\xa3\\x5b\\xe8\\x6d\\xcc\\x8f\\xf9\\x63\\x39\\xdd\\xca\\x02\\xe8\\xed\\x74\\x1b\\x76\\x62\\x17\\x0b\\x64\\x93\\x70\\x25\\xfd\\x0b\\xae\\x06\\x09\\xf1\\x07\\x0f\\xcc\\xc1\\x1b\\x05\\x0b\\x7c\\x06\\x8c\\xfc\\x3f\\xf8\\x1e\\x7d\\xdc\\x0f\\x0c\\x38\\x90\\x80\\x14\\x64\\xe0\\x07\\xfe\\x10\\x00\\x93\\x20\\x10\\x82\\x20\\x18\\x42\\x40\\x0e\\xa1\\xa0\\x80\\x30\\x50\\x82\\x0a\\xd4\\x30\\x19\\xc2\\x21\\x02\\x22\\x21\\x0a\\xa2\\x41\\x03\\x31\\xa0\\x05\\x1d\\xc4\\x82\\x1e\\xe2\\x20\\x1e\\x0c\\x60\\x84\\x04\\x48\\x84\\x24\\x30\\x41\\x32\\x98\\x21\\x05\\x52\\x21\\x0d\\xd2\\x21\\x03\\x2c\\x90\\x09\\x56\\xb0\\x81\\x1d\\xb2\\xc0\\x01\\xd9\\x90\\x03\\xb9\\x90\\x07\\x4e\\xc8\\x07\\x1e\\x0a\\xa0\\x10\\x8a\\xa0\\x18\\x4a\\xa0\\x14\\xca\\xa0\\x1c\\x2a\\xa0\\x12\\xaa\\xa0\\x1a\\x6a\\xa0\\x16\\xea\\xa0\\x1e\\x1a\\x60\\x0a\\x4c\\x85\\x69\\x30\\x1d\\x66\\x40\\x23\\x34\\x41\\x33\\xcc\\x84\\x16\\x98\\x05\\xb3\\x61\\x0e\\xcc\\x15\\xac\\xa7\\x20\\xb1\\xf8\\x77\\xfc\\x07\\xfe\\x88\\x63\\x84\\x12\\x09\\xe1\\x88\\x94\\xf8\\x11\\x19\\xf1\\x27\\x93\\x48\\x10\\x09\\x24\\xc1\\x24\\x84\\x84\\x12\\x39\\x51\\x90\\x30\\xa2\\x24\\x6a\\xa2\\x22\\x93\\x49\\x04\\x09\\x27\\x51\\x24\\x52\\x90\\x51\\xec\\x87\\x45\\xd0\\x0e\\x1d\\xd0\\x83\\x03\\x30\\x04\\x1b\\xa1\\x0f\\xe6\\xe1\\x3a\\x18\\x84\\x5e\\xdc\\x09\\xeb\\xe0\\x56\\xdc\\x06\\x03\\x78\\x07\\xee\\x82\\x2e\\x58\\x8a\\x9b\\xf1\\x36\\xdc\\x02\\x2f\\xe0\\x76\\x98\\x0f\\x2b\\xe1\\x49\\xd8\\x04\\xb7\\xc1\\x2d\\xd0\\x06\\x0b\\xf1\\x76\\xd8\\x8f\\x3b\\xe0\\x1c\\x2c\\x80\\x55\\xb8\\x04\\x28\\x7e\\x8e\\x5f\\xa2\\x5b\\x90\\x58\\x61\\xdf\\x70\\x01\\x2e\\xc4\\x1e\\xec\\x85\\x2d\\xb8\\x9b\\x68\\xc9\\x1d\\xb8\\x0c\\x57\\xe3\\x52\\x1c\\x12\\x37\\x61\\x11\\x2c\\xc3\\x79\\xd8\\x87\\x83\\x78\\x05\\xff\\x89\\x5f\\xe0\\xbf\\xf0\\x5b\\xfc\\x37\\x7e\\x8f\\x3f\\xe0\\x77\\x82\\x06\\x02\\xc0\\xab\\xa2\\xee\\x01\\xd8\\x06\\xf7\\xc0\\x71\\xe8\\x87\\x23\\x70\\x1f\\x1c\\x85\\xe5\\x70\\x02\\x8e\\xc1\\xbd\\xc2\\x3e\\x63\\x3b\\xd3\\xd1\\xb9\\x12\\x00\\x0e\\x02\\x20\\xb3\\x6a\\x58\\x57\\xdf\\xc4\\x07\\x12\\x81\\x37\\x9a\\x29\\x22\\x3a\\xa1\\x3a\\x92\\x57\\x50\\x14\\x0e\\x4c\\x17\\x0e\\x40\\x33\\x11\\x90\\x74\\x4d\\xf3\\x13\\xa1\\xa1\\xa1\\x72\\x26\\x9b\\x6c\\x42\\xaa\\x57\\x58\\x2d\\x9c\\xf8\\x2f\\xfe\\xa0\\xdc\\x80\\x07\\xb0\\x4b\\x79\\x2b\\x1e\\xe0\\xee\\x74\\xdf\\x81\\xed\\x6b\\xfb\\xc4\\x7f\\x3d\\x3c\\x95\\x07\\xc0\\xee\\xe2\\x86\\x21\\x12\\x62\\x60\\x69\\xd5\\xb0\\xba\\xbe\\x89\\x37\\x06\\x05\\x10\\x3a\\x89\\x10\\x40\\x0a\\x6d\\x32\\x94\\x48\\x72\\xab\\x82\\xfd\\x09\\x63\\x5c\\xb3\\x9f\\x94\\x70\\x5c\\x7e\\x55\\x20\\x22\\xe6\\x61\\x75\\x24\\x1f\\x2f\\x1c\\x10\\xce\\x51\\x8e\\xb5\\xdf\\x7c\\x95\\x77\\x5c\\x33\\x1f\\x11\\xa3\\x89\\x8e\\x8a\\x8c\\x08\\x9f\\xac\\x56\\x29\\xc3\\x14\\xa1\\x72\\xef\\x2b\\x24\\x44\\x16\\x6d\\x42\\x1d\\xd5\\x2b\\xf4\\x56\\x9d\\x42\\x67\\xd5\\x29\\x2c\\x54\\x78\\x5b\\x94\\x7a\\xf1\\xad\\xa7\\x3a\\x85\\x8e\\xbc\\xe0\\xfe\\xbe\\x7e\\x57\\xfd\\xd7\\xe8\\x57\\xe2\\x76\\x63\\xf4\\x94\\x5d\\x53\\x50\\x36\\x65\\xd7\\x94\\xd7\\x3f\\x2b\\xf9\\x78\\xb4\\x7e\\xd7\\x11\\x94\\x95\\xb8\\xbf\\xc7\\xc3\\xee\\x6e\\x3c\\x7c\\x3b\\xb6\\x6f\\xc7\\xa3\\xee\\x56\\xe1\\xbd\\xdd\\x7d\\xe4\\x76\\x77\\x37\\xd1\\x63\\x3b\\x20\\x1c\\x1f\\x4b\\x63\\x25\\x92\\x7b\\x20\\x0f\\x0a\\xf9\\xfc\\x90\\x40\\x42\\x20\\xc5\\x44\\x28\\x47\\x2a\\x01\\x09\\x23\\xc8\\x06\\x80\\x71\\x84\\x71\\xfd\\x22\\xf1\\x81\\x74\\x00\\x47\\x29\\xd7\\x08\\x1c\\x47\\x9b\\x81\\x72\\xb4\\x26\\x3b\\x2b\\xd3\\x62\\x4e\\x8e\\x0b\\xd3\\x48\\x64\\x6a\\x13\\xda\\x0c\\xc6\\x14\\x6a\\xcd\\x74\\x12\\xbb\\xd5\\xa2\\x54\\xa9\\xd4\\xfa\\xcc\\x14\\xa2\\x8f\\x95\\x48\\xc3\\x34\\x44\\xad\\xa1\\xca\\xb0\\x20\\x22\\x55\\xea\\xad\\x29\\xd4\\x6a\\x09\\xd3\\x10\\x4b\\x86\\x93\\xd0\\xed\\x78\\xdb\\x9d\\xb3\\x0f\\x2c\\xc8\\xb6\\xcc\\xde\\xdc\\xb0\\xff\\xa1\\x4b\\x78\\x51\\x97\\x3f\\x2b\\x67\\xe5\\x1a\\xd4\\x96\\xf4\\xd5\\xcc\\x39\\xd0\\x6b\\xb7\\x77\\xee\\x6a\\xdc\\x5f\\xbb\\xab\\xbf\\x70\\x24\\xa3\\xae\\xd3\\x52\\xd0\\x5b\\x6e\\xc4\\xe5\\x2d\\x1b\\xd2\\xa2\\xab\\xe7\\x6d\\x6d\\x9e\\xb6\\xb5\\xcb\\xe9\\xff\\xc7\\x3f\\xaa\\xbf\\xfc\\x65\\xd1\\xe2\\x86\\x94\\x5b\\x16\\x64\\xd4\\xf2\\xf6\\x88\\x98\\xea\\xee\\x2d\\xcd\\x8d\\xdb\\x3a\\x72\\xfd\\x9e\\x7b\\x56\\x96\\xb5\\xe0\\xf8\\xe2\\x69\\x8b\\x0a\\xa3\\xb4\\x79\\x8d\\xc0\\x41\\xf2\\xd8\\x17\\xec\\x08\\xf7\\x22\\x28\\xc1\\x04\\x05\\xd0\\x08\\x2d\\xe0\\xe4\\x73\\x5a\\x66\\x12\\x42\\x9b\\x51\\x22\\x25\\x95\\x40\\x00\\x19\\xc1\\x0e\\x60\\x20\\x95\\x30\\x69\\x07\\x50\\x0a\\x02\\x1a\\x2e\\xae\\x02\\x89\\x84\\x6b\\x01\\x8e\\x2b\\xe1\\xaa\\x13\\x3d\\xaf\\x38\\x99\\x2c\\xca\\xa4\\xc8\\x74\\x12\\x4b\\x86\\x86\\x28\\x85\\x95\\xe9\\x63\\x53\\xc8\\xf8\\xba\\xac\\x56\\x71\\xe5\\x41\\x44\\x89\\xff\\xc3\\x18\\xce\\x88\\xea\\x64\\x7d\\x51\\x67\\x41\\x61\\x57\\x91\\x5e\\xf8\\x5b\\xd0\\x55\\xac\\xdf\\x16\\xa4\\x4d\\x8f\\xd3\\xa7\\x6b\\x82\\x83\\x63\\x84\\xbf\\x31\\x41\\xf8\\x6b\\x7d\\x71\\x67\\x41\\x61\\x67\\xb1\\x5e\\x5f\\xdc\\x51\\x50\\x28\\x0c\\x09\\x8e\\xc9\\x10\\x86\\x04\\x05\\xc5\\x64\\xe8\\xe3\\xd2\\x63\\x82\\xdc\\xeb\\x16\\x11\\xfb\\x22\\xf6\\xb0\\xa3\\xa7\\xd6\\x6c\\xae\\xed\\x71\\xd4\\x38\\xba\\x6b\\xcc\\xe6\\x9a\\x6e\\x47\\x8c\\xc3\\x1c\\x19\\x69\\x76\\xc4\\xd4\\xc4\\xe4\\x08\\x1f\\x72\\x62\\x46\\x1f\\x72\\x74\\x0b\\x63\\xba\\x1d\\xb5\\xe3\\x63\\xb2\\x85\\x53\\xd9\\x31\\xb5\\xbe\\x0f\\x07\\x9c\\x2c\\xd0\\x09\\x14\\x16\\x8c\\x5d\\x61\\xa7\\xb8\\x17\\x21\\x09\\x1c\\x50\\x0d\\x4b\\x79\\x45\\xde\\x64\\x8e\\x22\\x97\\x9a\\xa2\\x0d\\x67\\x0c\\xf5\\x48\\x18\\xad\\xac\\x1a\\x0e\\xaf\\x6f\\xe2\\x63\\x81\\xe3\\x7c\\x24\\x43\\x24\\x2d\\x14\\x09\\xc9\\xab\\x92\\x20\\x63\\xde\\xcf\\xa4\\x3a\\x92\\xd7\\x5e\\x3f\\xa8\\x19\\x7c\\x63\\x68\\x0b\\x50\\x5a\\x42\\xab\\x9b\\xf9\\xe0\\x64\\x53\\x45\\x99\\xc9\\x91\\xec\\xd0\\x87\\x69\\x92\\xa5\\xb2\\xc9\\x22\\xa5\\xed\\x06\\x83\\xd5\\x47\\x4c\\x81\\x93\\xa4\\x68\\xb3\\xd9\\x2d\\x61\\x12\\xa9\\x5a\\x6f\\x94\\x48\\x04\\xd2\\x72\\x19\\x36\\x3b\\x4a\\x83\\xa8\\x32\\x4c\\x43\\x68\\x98\\x4a\\x6d\\x77\\x52\\x1f\\x8d\\x17\\x24\\x94\\x77\\xe6\\x15\\xd5\\x59\\xe6\\x6c\\x9a\\x52\\xb6\\xb4\\x21\\x39\\xc6\\x5e\\x9d\\x3c\\x07\\x2d\\xfa\\x04\\x7c\\xb0\\xa2\\xf4\\xc2\\xfb\\x53\\x2b\\x1f\\x6d\\xef\\x38\\x3a\\x90\\x87\\xc3\\x65\\x9b\\x1c\\xee\\xa7\\xa3\\x32\\x9c\\xba\\x00\\xad\\x73\\x56\\x76\\x86\\x79\\x28\\x26\\x41\\xe5\\xa7\\x88\\xcf\\xd4\\x99\\x0a\\x4c\\x2a\\x1c\\x2a\\x5a\\xd2\\xd1\\x6c\\x6a\\x39\\xde\\x34\\x7d\\x63\\x73\\x4a\\xc6\\xf4\\x01\\xa7\\xb5\\xb1\\xba\\x58\\x57\\xef\\xee\\xe3\\x0f\\x35\\xad\\x7f\\xaf\\xe9\\xcb\\xfe\\xfc\\xa2\\xec\\xde\\x3d\\xf7\\x66\\xa6\\xe1\\xb9\\xc9\\x89\\xb5\\x25\\x0e\\x85\\xa5\\xa9\\xd0\\x40\\x3f\\xc9\\x1a\\x2a\\x98\\xad\\x4c\\x49\\x4d\\x53\\x6b\\x1c\\xa6\\x48\\xad\\xad\\x0c\\x10\\xbf\\x62\\x3a\\xb2\\x53\\xd4\\x63\\x66\\x8f\\x16\\x0b\\x10\\x34\\x64\\x33\\x78\\x75\\x58\\x88\\x68\\xef\\xa6\\x83\\xa0\\xc1\\x40\\x54\\x60\\x8f\\x87\\xca\\x89\\x4c\\xe5\\x55\\x5f\\x64\\xa7\\x72\\x1b\\x1e\\xe1\\xf6\\xb8\\x77\\x63\\xeb\\x3a\\xe1\\x42\\xec\\x72\\x27\\xd1\\x21\\xc9\\x02\\x88\\x04\\xc9\\x63\\x61\\x52\\x4c\\x33\\x61\\xa6\\x93\\xd9\\xd5\\x41\\x44\\x60\\xbc\\x50\\x95\\x4a\\x2d\\x4d\\xe1\\xac\\xd8\\x65\\xae\\xee\\xe8\\xeb\\xcf\\x30\\x3a\\x57\\xb7\\xe5\\xe5\\xb5\\xad\\x76\\x1a\\x33\\x16\\xf5\\x75\\x54\\x99\\x49\\xdd\\xae\\xd1\\xb7\\x1f\\xdd\\xd6\\x1e\\xb5\\x2a\\xf5\\xf8\\xa7\\xee\\x37\\x9e\\x0a\\x7a\\xca\\xfd\\xbb\\xcf\\x4e\\x66\\x2c\\x8e\\x6a\\xdb\\x7e\\xfe\\xed\\xd1\\x5d\\xc2\\xfc\\xbc\\x3b\\x89\\x36\\x5c\\x37\\x7f\\x58\\x10\\x93\\x1a\\x9d\\x24\\xd4\\x6a\\xcd\\x24\\x06\\x83\\xd1\\xae\\xe1\\x94\\xb4\\x41\\x98\\x7f\\x91\\x67\\x7e\\xbe\\x6b\\xa5\\x43\\x9c\\xbf\\xda\\x4c\\x4a\\x76\\x8d\\xbe\\x7d\\x7e\\x7b\\x5b\\xd4\\xe2\\x94\\x93\\x9f\\x63\\xda\\x53\\x41\\x4f\\x61\\xfa\\x17\\xf7\\xa7\\x2c\\x8e\\x6a\\xdf\\xf6\\xa8\\x67\\x7e\\x38\\x0a\\x7f\\x67\\xad\\xec\\x65\\x08\\x82\\x08\\x5e\\x1d\\x14\\x38\\x29\\xc0\\xdf\\x4f\\x26\\x95\\x50\\x82\\x93\\xa0\\x0c\\x00\\xe6\\x85\\xa1\\x4c\\x69\\xc2\\x78\\x3b\\x47\\x2d\\x34\\x5e\\xcd\\xa1\\x94\\x52\\x23\\x09\\x77\\xdf\\x66\\xc3\\xbe\\xf0\\x47\\xa3\\x71\\x81\\xcd\\xbd\\x01\\x61\\xef\\x5b\\x6f\\xee\\x25\\xa7\\x5b\\xcf\\x1d\\xc4\\x93\\xee\\xe9\\x07\\x1e\\x9d\\xe3\\xfe\\x59\\x3f\\x2e\\x70\\x1f\\x99\\x0f\\x08\\xcb\\x61\\x2f\\x9b\\xcd\\x9e\\x80\\x00\\x30\\xf0\\x7a\\xe0\\x80\\x70\\xd3\\x19\\x02\\x45\\x24\\x80\\x6d\\xc0\\x71\\x02\\x1b\\x72\\xa4\\xc6\\xa3\\x7b\\x25\\xb2\\x08\\x13\\xea\\x94\\x3a\\xb9\\x5e\\xae\\xb3\\xea\\xe4\\x16\\xf2\\x12\\x1e\\x74\\xcf\\x1b\\x71\\xcf\\xc7\\x03\\x23\\x34\\xf0\\xa2\\x3b\\x0f\\x5f\\xb8\\x88\\xa7\\x44\\xba\\xb7\\xbb\\x87\\xc9\\x46\\x78\\x0f\\x02\\x20\\x84\\x0f\\x94\\x70\\xc4\\x73\\xb7\\x11\\xc2\\xdd\\xc6\\x0b\\x4c\\x6a\\xb4\\xd9\\xac\\x56\\x0b\\xd9\\xa8\\x36\\xf3\\x49\\x83\\x69\\x09\\xaf\\x98\\x52\\x7b\\xba\\x66\\xc5\\xe5\\x97\\x1e\\x99\\xfe\\x98\\x88\\x4b\\xde\\x25\\xe9\\xf4\\x6d\\xf2\\x0a\\x50\\x98\\xcc\\x2b\\x6f\\xdc\\x74\\x79\\x88\\xb8\\xe5\\x3a\\xab\\x8e\\xbe\\xed\\xa2\\xc4\\x45\\xd2\\x0f\\x09\\xbf\\xf9\\xcd\\xd8\\x97\\x34\\x0c\\xa5\\xa0\\x00\\x05\\x1f\\x22\\xcc\\xd2\\x02\\x88\\x25\\x58\\x9d\\x10\\x27\\x0c\\x8f\\x9f\\x20\\x23\\x82\\x50\\xe0\\x37\\x8a\\x38\\x5b\\x5c\\x9c\\x3d\\x5e\\xa1\\x88\\xb7\\xc7\\xc5\\xd9\\xe2\\x14\\x2b\\x34\\x99\\x46\\x95\\xca\\x98\\xa9\\x89\\xb6\\x18\\x94\\x4a\\x83\\x45\\xf8\\xad\\xd1\\xb1\\x8d\\x0c\\xb9\\x61\\xa0\\x9e\\x39\\x11\\x06\\x01\\x31\\x17\\xab\\x3d\\xb7\\xc0\\xe9\\xd1\\x82\\xc7\\x1f\\x20\\xad\\x27\\xd7\\x4a\\xcc\\xa2\\xb7\\xbf\\x67\\xec\\x0a\\xe3\\x45\\x5d\\x1a\\x0d\\xf1\\x90\\xc0\\xc7\\xc7\\x68\\xd4\\x2a\\x46\\x09\\x56\\x02\\x21\\xe2\\x0d\\x15\\x57\\xf9\\xf4\\x67\\x09\\x54\\x1b\\x12\\x12\\xe3\\x44\\xeb\\xeb\\x53\\x82\\x72\\xdf\\x5d\\x22\\x1a\\x0c\\xfa\\x58\\x89\\x92\\x43\\x95\\xca\\x92\\x61\\xb3\\x32\\x9e\\x5f\\x71\\x76\\x60\\xd1\\xb9\\x55\\x05\\xfc\\xca\\x73\\x8b\\x06\\xce\\xad\\xe4\\x5d\\x01\\xc4\\x1e\\x72\\xfb\\xad\\x7b\\xb7\\x93\\x1c\\xd7\\xab\\xf2\\x1d\\x6b\\xef\\xbc\\x9d\\x98\\xb7\\xbf\\x7d\\x67\\x75\\xf5\\x9d\\x6f\\x6f\\xc7\\xe9\\xdb\\xdf\\xde\\x57\\x53\\xb3\\xef\\xed\\xed\\xee\\xdf\\xe0\\x63\\x7b\\x0e\\xbe\\xf8\\x74\\xa3\\xbb\\x6e\\xe7\\xbe\\x97\\x7f\\x26\\x2c\\xe1\\x37\\x00\\x54\\xc2\\x0d\\x83\\x04\\xc2\\x78\\x39\\xc7\\x04\\x97\\xa6\\x1c\\x00\\xf2\\xa0\\x3a\\x44\\xd8\\x1f\\x9d\\x5e\\xce\\x59\\xe3\\x2d\\x54\\x32\\xe2\\xde\\x48\\x8c\\xc1\\xec\\xf2\\x9e\\x53\\x6f\\x8a\\x7b\\x32\\x1d\\x80\\x99\\xb8\\xcb\\x10\\x07\\x29\\xbc\\x89\\x20\\x30\\x61\\x51\\xc8\\x90\\xb0\\x01\\x40\\x14\\xb5\\x54\\x71\\x15\\x30\\x26\\xec\\x92\\x30\\x5b\\x44\\x5c\\x98\\x29\\x84\\x93\\x85\\x9b\\x74\\x3a\\x2b\\x5e\\x53\\x39\\x4a\\xfd\\x44\\x6d\\x85\\x3a\\x66\\x1a\\x2d\\xc5\\xf7\\xf9\\x19\\x99\\x2a\\x7d\\xd1\\xdc\\xdc\\x8a\\x05\\x65\\xfa\\x4b\\xfc\\xca\\x73\\x03\\x3d\\x27\\x97\\xe4\\x25\\x57\\x75\\xd8\\xdd\\x2b\\xc9\\x7b\\x9b\\x49\\x68\\x59\\xff\\xec\\xa9\\xc9\\xb6\\xb9\\xa5\\x89\\x49\\x35\\xfd\\xc5\\xb3\\x4e\\xac\\x2a\\xcf\\x5b\\xb8\\xaf\\xb1\\x60\\xdd\\x9a\\x95\\xb9\\xee\\x26\\x40\\x98\\x33\\x76\\x85\\xfe\\xc0\\x5d\\x06\\x27\\x94\\xf0\\x85\\x1a\\x94\\x82\\x78\\x6f\\x80\\x04\\x06\\x80\\x93\\x4a\\xa4\\x9c\\x64\\x00\\x00\\xa4\\x1c\\x48\\x3b\\x26\\xdc\\xab\\x44\\xc2\\x5a\\x80\\xb1\\x12\\x56\\xed\\xcc\\xcd\\xcc\\x48\\x31\\x27\\x1a\\xe3\\xc2\\x0c\\x5a\\x99\\xb0\\x21\\xa2\\x25\\xca\\x34\\xdc\\x7c\\xc3\\x1e\\x7b\\x7d\\xbd\\xc5\\x12\\x56\\xa6\\xc7\\x2d\\x9b\\x4a\\x17\\x54\\x18\\x36\\xac\\xcd\\x69\\x2b\\x31\\x5c\\x2a\\x58\\x76\\xb2\\xab\\xfd\\xf8\\x52\\x3e\\xc2\\x36\\x3d\\xa7\\x6c\\xae\\x43\\x5d\\xba\\xe6\\x54\\x7b\\xeb\\xa9\\x35\\x15\\x23\\xc6\\xf2\\x9e\\xfc\\xfc\\xee\\x72\\xa3\\xb9\\x61\\xb0\\x64\\x13\\x4d\\x37\\x14\\xce\\xb2\\xaf\\xbb\\x55\\x5f\\x38\\xcb\\x31\\xf5\\xce\\xbe\\x7c\\x6b\\xef\\xe1\\xae\\xa4\\x99\\xd3\\xab\\xc2\\xd5\\x95\\xb3\\xba\\x33\\xba\\x8f\\xf4\\x39\\x6c\\xbd\\x07\\x5a\\x1d\\x73\\x0a\\xe3\\x74\\xc5\\x5d\\x25\\xc5\\x1d\\x85\\x5a\\x20\\x50\\x05\\xc0\\x7a\\xb8\\x61\\xf0\\x87\\x20\\x30\\xf1\\x09\\x81\\x08\\x4c\\x86\\x08\\xa4\\x92\\xf3\\x49\\x6e\\x3b\\x30\\x96\\x5b\\x05\\xa2\\x61\\x91\\x87\\x8e\\x8b\\xae\\x45\\xa9\\x17\\x45\\x17\\x2d\\xa8\\x93\\x4b\\xe9\\x3d\\xaf\\xbd\\x36\\xe2\\xea\\x25\\x3b\\x5e\\x74\\xad\\xc1\\xd7\\x34\\xf8\\xb7\\x83\\xee\\xb3\\x38\\xa5\\x8f\\xfe\\x7d\\xd4\\x41\\x7e\\x9b\\x05\\x08\\x4f\\x8d\\x5d\\x61\\x75\\xdc\\x30\\x24\\x41\\x2e\\xef\\xe0\\x50\\x42\\x92\\x90\\x49\\x48\\x25\\x30\\x09\\x27\\x61\\xdc\\x00\\x10\\x90\\x30\\x22\\xe9\\xf0\\xca\\x25\\xe4\\x56\\x09\\xf0\\xc7\\x6b\\xab\\x12\\x62\\xc3\\x12\\xf4\\x72\\xb9\\x54\\x16\\x69\\x52\\x28\\x74\\x4a\\x1d\\xb5\\xd9\\x26\\x0a\\x9f\\xd1\\x22\\x70\\xb5\\x97\\x72\\xb1\\x41\\x44\\xfa\\x4d\\x05\\xf9\\xc2\\x75\\x3e\\xd1\\xb4\\xa2\\xae\\xeb\\xe8\\x40\\x6e\\xd6\\xe2\\x33\\x4b\\x9b\\x8f\\xac\\xae\\xf3\\x1f\\x96\\xef\\x1f\\x2a\\xec\\x2e\\xd1\\x1b\\x2b\\x17\\x96\\xa6\\x14\\xd9\\x52\\xc3\\xc9\\xbb\\xe4\\xad\\xc7\\xdd\\x6b\\xc2\\x0d\\xa5\\xeb\\x1e\\xef\\xef\\x7d\\xf4\\xd6\\x8a\\x8c\\xce\\x43\\x5d\\x6b\\xd6\\xa7\\x36\\xae\\xaa\\x2a\\x5e\\xd6\\x98\\x11\\x38\\x39\\x56\\x25\\x62\\xd4\\x9d\\x63\\x57\\x58\\x3c\\x77\\x1e\\x8c\\x90\\x0b\\xd9\\xbc\\xdd\\x0f\\x19\\x9a\\x91\\x63\\x02\\x7e\\x93\\x20\\xe3\\x90\\x75\\x08\\xe2\\x2a\\xdc\\xac\\x78\\xdb\\xa4\\x05\\x08\\x29\\x21\\xd5\\x89\\x09\\x99\\x19\\x09\\xb9\\x89\\xb9\\xd1\\x09\\x49\\x3a\\xc1\\xbe\\xa2\\x52\\x1f\\x1b\\xc4\\xa4\\x4e\\x3a\\xe1\\xe6\\x99\\xd5\\x9a\\xe9\\x64\\x16\\x2a\\xdc\\xb6\\x72\\x02\\x07\\xd0\\xa6\\x90\\x59\\x7b\\xfa\\xeb\\x32\\xa3\\x58\\x44\\x71\\x5d\\x4b\\x46\\xdf\\x91\\xee\\x34\\xc7\\x92\\x53\\x8b\\xea\\x36\\xf6\\xd6\\x5a\\x22\\xc2\\x73\\xbb\\xef\\x7e\\x6b\\xd7\\xc7\\xa9\\x4d\\xd5\\xd9\\xf2\\x94\\xda\\xee\\xac\\x82\\xce\\x12\\xbd\\xb6\\xb0\\x93\\x3b\\xff\\x80\\xa1\\xb0\\x65\\xe1\\xb2\\xbc\\x18\\xab\\x51\\x3d\\x75\\xeb\\x99\\xe6\\xee\\xc7\\x6f\\xab\\x4d\\xa9\\x5b\\xb8\\x66\\x4b\\x51\\x63\\xe7\\x2b\\x17\\x8f\\x2d\\x2b\\x76\\x0d\\x68\\x6c\\xd5\\x29\\xce\\xd6\\xfd\\xdd\\xd6\\x8c\\xa6\\xd5\\xe5\\xfc\\xca\\x39\\x59\\x82\\x2c\\x0e\\x00\\xb0\\x72\\x51\\x86\\x63\\xf8\\x28\\x01\\x2e\\x60\\xa5\\x0f\\x34\\xe4\\x56\\x79\\xc4\\x4f\\x2e\\x97\\x53\\x01\\x7c\\xa2\\x5e\\xd0\\x94\\xac\\xdc\\x75\\xf2\\x79\\xd2\\x3c\\x7a\\x85\\xbe\\xc3\\x95\\xff\\x78\\x91\\x0b\\x3a\\x2e\\xea\\xab\\xf3\\xe2\\x1e\\x5f\\x86\\x78\\x70\\x40\\x0d\\x58\\xf9\\x0c\\x35\\x25\\x84\\xc3\\x4a\\xc1\\x14\\x50\\x8e\\x74\\x00\\x63\\x37\\x6b\\xad\\xca\\x72\\xde\\x69\\xcb\\x4c\\x4e\\x8a\\xd5\\x26\\x4b\\x04\\xf3\\x23\\x91\\x4c\\x94\\x0a\\x01\\x92\\x78\\xd0\\xae\\x40\\x34\\xea\\x93\\x7a\\x1f\\xb2\\xbd\\xe1\\x3b\\x4b\\xc1\\xa5\\x6d\\x59\\x2d\\x05\\xfa\\x8a\\xb5\\x0f\\xb5\\xb6\\x9f\\x5a\\x5b\\x1e\\xcb\\xcf\\xcc\\x4a\\xab\\xb5\\x69\\xf8\\xc5\\xf7\\xce\\x9e\\x75\\x64\\x69\\xe1\\xa1\\xc4\\xca\\x9e\\x3c\\x41\\x60\\x8c\\xe5\\x3d\\x7c\\x5e\\x77\\x45\\x62\\x6c\\x7c\\xc1\\x4c\\x9b\\xad\\x89\\xd7\\xeb\\x0b\\x9a\\x6d\\xd6\\x99\\x05\\x71\\x2c\\xb3\\xef\\xe1\\xb4\\xc9\\x65\\xb3\\x16\\xe6\\x75\\x1c\\x9e\\x67\\xb7\\xcd\\x3b\\xdc\\x99\\xd7\\xd7\\x52\\x3e\\x79\\x72\\xd1\\xd4\\x76\\xdb\\xdc\\xfd\\xdd\\x36\\x5b\\xf7\\xfe\\xd1\\x1f\\xf3\\xba\\x2b\\x12\\x12\\x2a\\xba\\xf3\\xf2\\x3b\\x8a\\xe3\\xe2\\x8a\\x3b\\xc8\\x9f\\xed\\xb3\\x8a\\xe2\\xf5\\x85\\xb3\\x1d\\x8e\\x96\\x02\\xbd\\xbe\\x60\\x16\\x10\\xd8\\x3f\\x36\\xc6\\x12\\xb9\\xcb\\x22\\xcf\\x14\\xf1\\xbc\\x19\\x19\\x27\\x45\\x64\\xa4\\x52\\x8a\\x0c\\x04\\x75\\xd7\\xe1\\xe3\\x94\\xe2\\x2a\\x09\\x7a\\xd9\\x27\\x8f\\x56\\x27\\x26\\x20\\x78\\xd8\\x26\\x3e\\x4e\\xad\\x0c\\x0c\\x00\\x23\\x1a\\x65\\xb2\\x30\\x53\\x7c\\x86\\x93\\xd9\\x83\\xa8\\x8f\\x28\\x96\\x0c\\x0d\\x13\\xd0\\x2e\\xd3\\xeb\\xad\\x8a\\x0c\\xc1\\x17\\x98\\x40\\x0a\\x1c\\xea\\x38\\xb0\\xa8\\x32\\x55\\x45\\x27\\x3b\\x6b\\xe7\\x66\\x2d\\xbc\\xb7\\x3b\\xcd\\xb1\\xf8\\xd4\\xc0\\xb4\\xdb\\x7a\\x2a\\x53\\x55\\xa1\\xd6\\xd6\\xc3\\x7f\\x3c\\xa8\\xf8\\x26\\xb5\\xb9\\x2a\\x47\\x6e\\xae\\xe9\\x72\\x14\\x74\\x96\\xc4\\x69\\x0b\\x3a\\xee\\xd7\\xf3\\x8d\\xf3\\x86\\xf2\\x34\\xd6\\x04\\xf5\\xf4\\x6d\\x67\\x9b\\x7a\\x9e\\xbc\\xbd\\x21\\x75\\xea\\xe2\\x8d\\xbb\\xca\\x8b\\x66\\xbf\\xf0\\xc4\\xb1\\x15\\xa5\\x27\\xf1\\x8f\\x31\\x8e\\x9a\\xd4\\xdc\\xb6\\x43\\xf3\\xb2\\x32\\x5b\\xd6\\x96\\xf3\\xab\\x5b\\x73\\x60\\x6c\\x8c\\xc4\\x8e\\x7d\\x49\\x4b\\xd9\\x20\\x31\\x40\\x48\\x06\\xa0\\x14\\x42\\x20\\x83\\x2e\\x04\\xbf\\xf3\\x88\\x17\\xe9\\xc2\\x61\\x8b\\x09\\xc6\\xc6\\xf0\\x13\\xf7\\x30\\xcd\\x63\\x83\\xc4\\x08\\x21\\x90\\x48\\x17\\xa2\\x14\\x82\\x60\\x13\\x00\\xf8\\x9d\\x07\\xdf\\x28\\xd1\\x26\\x3c\\x0c\\x97\\xe9\\x8f\\xac\\x0a\\x64\\x20\\x79\\x4c\\xca\\x04\\xfc\\x23\\x55\\x73\\x4a\\xb4\\xa2\\x12\\x0f\\x58\\xad\\xa4\\x73\\x74\\x98\\xd6\\x93\\x83\\xf2\\xd0\\x2b\\x97\\x71\\xf5\\x5e\\x5c\\x75\\x59\\x90\\xcd\\x47\\xb0\\x8f\\x25\\xd1\\x47\\x80\\x82\\x14\\x62\\xf9\\x18\\xc1\\xba\\x53\\x84\\x36\\xa0\\x84\\xd0\\xe9\\x40\\xa9\\xc0\\xc5\\x54\\xc4\\x1c\\x21\\xa2\\x6d\\x14\\xb0\\x86\\xc0\\xc1\\x49\\xa3\\x1b\\xe9\\x5a\\xe1\\x4d\\x27\\x1d\\x73\\x3d\\x77\\x54\\xfc\\xfd\\x47\\xe1\\x45\\x16\\xcf\\xaa\\xc5\\xdf\\x67\\x88\\x69\\x26\\x85\\xf0\\xd3\\xd6\\x78\\xbb\\xf1\\x51\\x3a\\x38\\xba\\x93\\xdc\\x96\\x9b\\x4b\\x77\\x3e\\xeb\\xde\\xb2\\xd7\\xbd\\xf9\\xb9\\x7f\\xca\\x15\\xa2\\x6e\\x78\\x76\\xec\\x5f\\x2c\\x52\\xdc\\x67\\x0b\\x5c\\xae\\x1a\\xf6\\xaf\\x6f\\xe2\\xe3\\x01\\x81\\x02\\xd2\\x01\\x09\\x52\\x06\\x94\\x89\\x7e\\x9d\\x67\\xa7\\x81\\x31\\xd1\\xc7\\xc9\\xe3\\xaa\\x23\\xab\\x86\\x27\\xfd\\x6f\\x83\\x4b\\xc4\\xc1\\x41\\xff\\xfb\\xcc\\xff\\xe3\\xa4\\xcd\\xcd\\xcd\\x02\\x0c\\xc9\\x48\\x4b\\x4e\\x02\\x23\\x18\\xe3\\xc2\\x92\\xa5\\x82\\x88\\x3b\\xa9\\x08\\xe9\\xbd\\xd6\\xea\\x9a\\xb6\\x12\\x30\\x3f\\xcd\\xb4\\x59\\x32\\x54\\xca\\x30\\x89\\x3e\\xd6\\x80\\x63\\xe8\\xaf\\xcd\\xcd\\x88\\x2d\\xcb\\x31\\xdc\\x32\\x94\\xda\\x5c\\x92\\x34\\x82\\xc5\\x83\\xf7\\xb6\\x74\\xdd\\xd7\\x9f\\x9d\\x51\\xdb\\x96\\xaa\\xd1\\x85\\xb0\\x5f\\x39\\x1c\\x8e\\x9c\\x1c\\x87\\xc3\\x81\\x87\\xcb\\x67\\x57\\x14\\xa5\\xe8\\x2b\\x1b\\x66\\x66\\xf4\\x0d\\xaa\\xd3\\xab\\x32\\xa7\\x6d\\x99\\x9d\\x6e\\x69\\xdf\\x31\\xb3\\x7c\\xdd\\xe2\\xf6\\xa4\\xe8\\x4c\\x5b\\x9e\\xd1\\xfd\\x8b\\x34\\x9e\\x4f\\x4b\\x71\\x3a\\x45\\xba\\xf2\\x63\\xdf\\xb3\\xed\\xdc\\xa3\\x50\\x03\\x2d\\x70\\xb2\\x6a\\x38\\xac\\xbe\\x89\\x0f\\x9b\\x8c\\x7e\\x64\\x7a\\xad\\x8c\\x52\\x3f\\x3b\\x72\\x90\\x85\\x12\\x8e\\x55\\x46\\xf2\\x6a\\xcf\\x61\\x22\\xf3\\x93\\x21\\x95\\xf9\\xce\\x70\\x95\\xcd\\x9e\\xab\\x8c\\x40\\xc0\\x8f\\x12\\xbf\\x0e\\x19\\x52\\x44\\xe0\\x28\\x08\\x7a\\x48\\xda\\x02\\x52\\xa9\\xa8\\xad\\x25\\x2d\\x20\\x91\\xe4\\x49\\xaa\\x23\\xf9\\x64\\x61\\xa4\\x8c\\xf8\\x75\\x80\\x8c\\x82\\xac\\x11\\xfe\\xeb\\xf0\\x66\\x3e\\xa8\\x69\\x86\\x21\\x29\\x31\\x21\\xc1\\x98\\x10\\x17\\xe7\\x2f\\x8b\\x36\\xa1\\x20\\x9d\\x06\\xaf\\x97\\x64\\x17\\xe8\\xa6\\x52\\x53\\x89\\x47\\x31\\xd9\\x6d\\x5e\\xd3\\xe4\\xfb\\xae\\x16\\x07\\x1b\\x88\\xdd\\xc9\\x09\\xf4\\x45\\x89\\x80\\xcb\\xec\\x0a\\x91\\xe8\\xec\\x36\\xaa\\x2d\\xe8\\xae\\xcc\\x6b\\x90\\xeb\\x7b\\x9c\\xe9\\xe5\\x66\\xb9\\xc4\\x2f\\xab\\x79\\x59\\x59\\x51\\x53\\x44\\x32\\xf5\\x57\\x44\\x85\\xc4\\x3b\\x0c\\x61\\xc8\\x32\\x7a\\x0e\\xb4\\x76\\x3d\\xb8\\xaa\\x94\\x71\\x69\\xf3\\x4f\\x0e\\x68\\x9c\\xb9\\x36\\x95\\x36\\x9c\\x2f\\x2d\\xd7\\xde\\xf9\\xc6\\xe6\\x1c\\x8e\\x25\\x55\\xf4\\xac\\xbf\\x6b\\xc6\\xaa\\x67\\x6e\\xe5\\x5d\\x55\\x5c\\x72\\x5a\\x7a\\xbd\\xc6\\x18\\xa5\\xb1\\xd6\\xd9\\x74\\x54\\x59\\xff\\xe0\\xd6\\x19\\xbc\\x23\\xab\\x20\\x73\\xce\\x86\\xda\\x45\\x8f\\xad\\x2d\\xb2\\xc6\\xb9\\x65\\x89\\x96\\x68\\x7f\\x47\\xdb\\x86\\x8a\\x75\\xaf\\xee\\xa8\\x9c\\xfb\\xf0\\x95\\x1d\\x5b\\xdf\\xbc\\xb3\\xc6\\x4f\\x3e\\x39\\x78\\x48\\x11\\xa5\\xf0\\xeb\\xb9\\x84\\x78\\x57\\xcf\\x0b\\x0f\\xef\\xec\\xce\\x9a\\x3b\\xfc\\x6f\\xf7\\x77\\xdd\\x4b\\x6c\\xf9\\xf8\\x74\\xa0\\x65\\xf6\\x66\\x4f\\x0c\\xa7\\x01\\x80\\xed\\xe6\\x86\\x41\\x0a\\xfe\\x10\\xcf\\xc7\\xfa\\x0b\\x0e\\x7e\\x25\\x30\\x31\\x9e\\xdf\\x2e\\x1a\\x11\\xea\\x89\\xc4\\x88\\xc0\\x5f\\x00\\x71\\xa8\\xa3\\x02\\xda\\xd5\\xa3\\x8e\\xd2\\x2e\\x77\\xc4\\xd0\\x08\\xbe\\x75\\x37\\xfe\\xea\\xa2\\xeb\\x0f\\xb8\\xf1\\x39\\x5c\\xe9\\xbe\\x8d\\x1b\\xfe\\xb1\\x9e\\x44\\x90\\x15\\x62\\x44\\x11\\xce\\x00\\xb0\\x56\\x6e\\x18\\x54\\xa0\\x87\\x34\\x70\\xf2\\x39\\x93\\x90\\x0a\\x78\\x91\\x49\\x91\\x12\\x46\\x3b\\x7c\\xbe\\xae\\x88\\x52\\xb0\\x45\\xe2\\xf9\\x31\\xb5\\x1a\\x20\\x2d\\xc5\\x10\\xa7\\xd6\\xab\\x63\\x23\\x26\\x83\\x0a\\x94\\x3a\\x99\\x4c\\x69\\xb2\\xc8\\x75\\x1a\\x2a\\x0d\\xa2\\x82\\x95\\x51\\x09\\x98\\x51\\xae\\x73\\x52\\xab\\x2d\\x85\\x18\\xe3\\x75\\x1e\\x5c\\x69\\xd4\\x9f\\xc1\\xf3\\x33\\xcf\\x6c\\xa9\\x47\\xd4\\xe7\\x4d\\x49\\xc9\\x6e\\x2b\\x35\\x62\\xfd\\x96\\x73\\xb3\\xdd\\x9f\\x61\\x74\\x76\\x6f\\x7d\\x2a\\x9a\\xaa\\xbb\\x73\\xdc\\x7f\\x40\\x92\\xd9\\x59\\x9b\\x96\\x5a\\xd7\\x63\\x73\\x71\\xc3\\x68\\x9e\\xb3\\xb7\\xdb\\x31\\xa7\\x2a\\x2b\\x4c\\x9e\\xdf\\x3c\\x50\\xd0\\x7d\\xcf\\xbc\\x2c\\x24\\xa7\\x5c\\xff\\xc4\\xf8\\xc2\\xd6\\x3c\\x67\\x6b\\x51\\x1c\\x39\\x8c\\x31\\x39\\x33\\x1c\\x79\\x33\\xec\\x11\\x62\\x94\\x55\\xf0\\xf7\\x67\\x73\\x97\\xc1\\x02\\x36\\xde\\x22\\x98\\x47\\x4a\\xb8\\x01\\x09\\x72\\x8c\\x72\\xac\\x1f\\x28\\xf5\\x19\\x4a\\xc6\\x7c\\x86\\x12\\x00\\x2c\\x60\\x31\\xc7\\x85\\x99\\xe3\\xa4\\x02\\x09\\x45\\x63\\xc0\\x8c\\x56\\x0f\\x07\\xa9\\xf5\\x29\\x54\\x80\\x17\\x4a\\x65\\x98\\x86\\x89\\x2c\\xc6\\x66\\x07\\xd6\\xae\\x3d\\x3d\\x6f\\xe6\\x9d\\x83\\x53\\xed\\x91\\x88\\x91\\xf6\\xa9\\x83\\x7b\\x5b\\xfa\\xce\\xac\\xa9\\x9a\\x34\\xe2\\x97\\x5c\\xb9\\xa0\\xa2\\xb0\\xab\\x22\\x5d\\x13\\x18\\xa8\\x49\\xab\\xec\\x2c\\xaa\\x58\\x50\\x99\\xec\\x87\\x4f\\x74\\x9d\\x5a\\x59\\x64\\x99\\xb9\\x6a\\xf7\\x91\\x86\\xd7\\x1a\\x8e\\xec\\x5e\\x3d\\xd3\\x52\\xb4\\xfa\\x4c\\x6f\\xe1\\x92\\x19\\xe9\\xa6\\xca\\xf6\\xfe\\x41\\xdb\\xeb\\xb6\\xc1\\x45\\xed\\x55\\xa6\\x94\\xa9\\x8b\\x0b\\xc5\\x7d\\xbf\\x1b\\x80\\x0d\\x70\\xc3\\x10\\x08\\x91\\x90\\xcc\\x27\\x72\\xe8\\xb5\\xea\\xde\\x7d\\x60\\x9e\\x7d\\x08\\x0a\\x02\\x08\\x8a\\x0c\\x8a\\x90\\x07\\x43\\x20\\x4c\\xd2\\x49\\x7c\\x7b\\xa0\\x56\\x06\\x51\\x29\\x95\\x5b\\x9c\\xd4\\x6e\\x4d\\xa1\\xc6\\xbb\\xb1\\xe1\\xd0\\xd7\\x27\\x1b\\x11\\x1b\\x4f\\x7e\\x7d\\x68\\xff\\xfe\\x65\\x67\\x16\\xdb\\x11\\xb3\\x06\\xce\\x2c\\xe3\\x86\\x49\\xc7\\xf9\\x7f\\x1f\\x58\\x70\\xe0\\xdf\\xe7\\x3b\\x90\\x9b\\x7c\\x75\\x1d\\x36\\xec\\x78\\x66\\x51\\xdf\\xa2\\xa7\\xb7\\xd7\\x13\\x8f\\xdd\\x78\\x02\\x80\\x65\\x72\\xc3\\x10\\x00\\x89\\xbc\\x01\\x38\\x00\\xe4\\xa0\\x0d\\x18\\xa3\\xcd\\x1e\\x48\\xe6\\x0b\\x80\\x90\\xea\\x89\\xae\\xa7\\x5c\\x70\\x3e\\xc5\\x37\\xfd\\xb5\\xeb\\x28\\x79\\x71\\x74\\x03\\x1d\\x72\\x15\\x93\\x56\\x72\\xcc\\x35\\x7a\\x2f\\x37\\x7c\\xc4\\x9d\\x2c\\xcc\\xfd\\x2c\\x00\\xcb\\xe3\\x86\\xc1\\x0f\\xf4\\xbc\\xd6\\xcb\\xd3\\x6d\\x5e\\xbb\\x42\\xc4\\xb9\\xaf\\xe7\\x6b\\x01\\x13\\x8b\\x73\\xbe\\xe3\\x3a\\xfe\\x14\\xbd\\xc5\\x95\\x47\\xe6\\x90\\x8d\\xae\\xb5\\xc2\\x7c\\x41\\xc2\\x7c\\x9d\\x63\\x5f\\xb0\\x59\\xdc\\x65\\xb0\\x82\\x83\\xb7\\xa5\\x03\\x61\\x02\\x3e\\x22\\x54\\x42\\x89\\x64\\x00\\x24\\xc0\\x31\\x09\\xd7\\xf6\\x93\\xdb\\x2f\\x57\\x0a\\x5b\\x1f\\x2b\\x80\\xe0\\x78\\x89\\xc4\\x98\\xc2\\xdd\\xbc\\xf3\\x1a\\x4e\\xad\\x72\\x12\\xbb\\x42\\xb0\\x6f\\xb3\\x66\\x7d\\x75\\xc7\\xcc\\x83\\x2b\\x66\\xe6\\xc5\\x20\\x46\\x66\\x4d\\x1b\\xda\\x37\\xab\\xfb\\xcc\\xfa\\x5a\\xbf\\x27\\x03\\x52\\xaa\\x7a\\x4b\\x0a\\xbb\\xab\\x33\\xb4\\x41\\x28\\x8f\\xcb\\xaa\\xeb\\x2d\\x34\\x4c\\xad\\x2d\\x56\\x13\\xf7\\x3b\\xf8\\xce\\xb3\\x0b\\x7b\\x11\\xad\\xb3\\x6f\\xb9\\xf3\\xd8\\x94\\x53\\x0d\\xc7\\xf6\\xad\\x9b\\x6d\\xcb\\x1f\\x3a\\xd9\\x9d\\xbf\\xa0\\xda\\x64\\xae\\xee\\x1a\\x58\\x6a\\x3b\\x6d\\x1f\\x1a\\xe8\\xac\\x36\\x23\\xca\\x26\\x27\\xea\\xb0\\xec\\x1e\\x61\\x3d\\x3b\\x01\\x58\\xbe\\x48\\x7b\\x1d\\xaf\\x01\\x0f\\xb4\\x69\\x13\\x38\\x21\\xb7\\x8a\\xa0\\x0f\\x3a\\x7a\\x69\\xae\\xd3\\xcb\\x05\\xfa\\x58\\xe4\\x3a\\xb9\\x85\\xe5\\x9f\\x73\\x9d\\x3e\\x7b\\x96\\x4c\\x3f\\x47\\x8e\\xb9\\xe6\\x72\\xc3\\xae\\x3b\\xc8\\x12\\x61\\xbe\\xb3\\x00\\x4c\\x23\\xce\\xa7\\xe7\\xb5\\x1c\\x8e\\xbb\\x03\\x0c\\x09\\x11\\xf7\\x33\\x8f\\x4e\\x98\\x51\\xe1\\xdd\\x43\\xc1\\xa8\\x9f\\xa5\\x03\\xee\\x13\\x38\\x7b\\x74\\x37\\x4e\\x77\\x9f\\xe6\\x86\\x8f\\x5d\\xdd\\x73\\xf4\\x28\\x5b\\x24\\xcc\\xd9\\x3e\\x76\\x85\\xa9\\xb8\\x61\\x50\\x8b\\x08\\x81\\x00\\x05\\x42\\x07\\x3c\\x7c\\xea\\xa5\\x74\\x09\\x56\\xc7\\x85\\xc5\\x7b\\x10\\x82\\x45\\xee\\x81\\x59\\x46\\x8b\\x86\\x8a\\x82\\x44\\x9b\\x9f\\x26\\x15\\xb7\\x9c\\xee\\xea\\x7e\\x70\\x75\\xa5\\xdf\\xcf\\xa8\\xa9\\xb2\\x87\\x2f\\xec\\xad\\x30\\x12\\x6e\\x78\\x34\\xa0\\xeb\\xe1\\xd5\\x25\\xce\\xc1\\x13\\x5d\\x79\\xbd\\x35\\x49\\xe9\\xd3\\x16\\x39\\x45\\x7e\\x14\\xf4\\xd5\\xfd\\xdc\\x30\\x4c\\x12\\xf0\\xb4\\xbf\\x04\\x29\\x20\\x56\\x12\\x44\\x14\\x14\\xa1\\x48\\x93\\x50\\x85\\x3c\\x54\\xfc\\x31\\xa9\\x48\\x0f\\x3b\\x5a\\x10\\xf5\\x24\\xe0\\xf8\\xd3\\x4f\\xef\\xc4\\xd3\\x1f\\xb9\\x29\\x89\\xf9\\x88\\xdc\\x7f\\xd1\\x1d\\xc6\\x0d\\xbb\\x1c\\xc3\\x44\\xed\\xda\\x38\\xfa\\x3a\\x20\\xbc\\x04\\xc0\\xca\\xb8\\x61\\xe0\\x20\\x9c\\x57\\xf9\\xc0\\x39\\xce\\xf4\\xf1\\x60\\x88\\x80\\xd0\\xe3\\x05\\x8a\\x58\\x70\\x1d\\x79\\x79\\x74\\xdd\\xc8\\xbd\\xf7\\x72\\xc3\\x80\\xb0\\x0f\\x80\\x55\\x73\\xc3\\x10\\x24\\xf8\\xda\\xfe\\x82\\xd2\\x14\\x3d\\x5a\\x40\\x20\\x38\\xc0\\x31\\x22\\x50\\xc2\\xab\\xa1\\x01\\x20\\x08\\x82\\x14\\x0a\\x79\\xa8\\x44\\xb8\\x3d\\x05\\x5a\\xe4\\x7a\\xb9\\x02\\xf5\\x54\\x21\\xd7\\xcb\\x71\\xe5\\x97\\x08\\x9f\\x3c\\x1e\\xec\\xfe\\xc7\\xfc\\x7f\\x07\\x3f\\xce\\x0d\\xbb\\x12\\xc8\\x3b\\x3f\\xd6\\x93\\x12\\xd2\\x3a\\xfa\\x0d\\xb9\\xea\\xba\\xe0\\x7a\\x8a\\x1b\\x16\\xd6\\xbf\\x0b\\x80\\x39\\x45\\x99\\xd1\\xf0\\x91\\x52\\x42\\x80\\x60\\x25\\x45\\xe1\\x7e\\xd1\\xbb\\x7c\\x79\\xa8\\x48\\x6b\\x9d\\x1e\\xa9\\x5e\\x6e\\x41\\x85\\x85\\x39\\x7f\\xe6\\x7a\\x8d\\x3e\\xf5\\x33\\x62\\xa5\\x4f\\x31\\xfe\\xea\\x73\\xdc\\xf0\\xd5\\xe7\\x99\\x13\\x08\\xcc\\x1f\\xbb\\xc2\\xda\\xb8\\xcb\\x10\\x0d\\x39\\xa2\\x77\\xf2\\x53\\x81\\x0f\\xb3\\xd9\\x6c\\x10\\xa9\\x19\\xc4\\x4d\\x50\\x89\\x4c\\x6d\\x4c\\xe1\\x44\\x8f\\x4b\\xa9\\xe1\\x2c\\x02\\x7c\\x66\\x6d\\x18\\x9e\\xd9\\x30\\xb0\\x67\\xe6\\xcc\\x3d\\x03\\x53\\xac\\x11\\x88\\xe1\\x56\\xf1\\xdb\\xde\\x81\\x06\\x6b\\x38\\x3e\\x89\\x93\\xa2\\xd3\\xca\\xdb\\x0b\\xf8\\xf6\\xf2\\xb4\\xe8\\x40\\xc4\\x40\\x8d\\xf0\\xad\\xa0\\xa3\\x2c\\x35\\x3a\\x00\\xc9\\xa6\\xda\\xfb\\xf6\\xad\\x6f\\xb5\\xdb\\x5b\\x6f\\xdd\\x77\\xa4\\xf6\\x81\\xda\\xfb\\xf6\\xdd\\xda\\x26\\x7e\\x39\\x5a\\x4b\\x32\\x17\\x2f\\xea\\xaa\\x31\\xa7\\xd4\\x74\\x2d\\x5a\\x6c\\x79\\xc8\\xb2\\x64\\x51\\x77\\x4d\\x8a\\xf0\\x65\\x49\\xa6\\x88\\x0f\\x01\\xd8\\x4a\\x91\\xf6\\x91\\x82\\x7f\\x0d\\x94\\x43\\x02\\xf4\\x9a\\x2f\\xe4\\x73\\xb0\\x00\\x22\\xc3\\xe5\\xc1\\x10\\x04\\x81\\x3a\\xb9\\x44\\xa6\\x32\\xa1\\xa0\\x48\\xbc\\xe1\\xfc\\x71\\xc3\\xa4\\xc3\\x15\\x23\\xf8\\x4e\\xfb\\xb9\\x4d\\x35\\x35\\x9b\\xce\\xb5\\xbb\\x3f\\xc2\\x18\\x7e\\x61\\xbd\\xd9\\x5c\\xd7\\xc7\\xbb\\x3f\\x22\\xe5\\xae\\x8b\\xdc\\x30\\xc9\\xee\\x3f\\x3e\\x6f\\xde\\xb1\\xfe\\x6c\\x3c\\x84\\xc6\\xf2\\x9e\\xc2\\xc2\\xf9\\x95\\x09\\x28\\xdc\\xc7\\x9c\\x31\\x7f\\xb6\\x83\\xbb\\x0c\\x5a\\x70\\x0a\\xf7\\x21\\xe3\\x08\\x50\\xac\\x94\\x4a\\x08\\x94\\xfd\\x27\\x9a\\x26\\x7a\\x68\\x4a\\xa5\\x6a\\x69\\xbc\\xe4\\xa7\\x08\\xeb\\xb3\\x35\\xcc\\xce\\xfa\\x31\\xc2\\x3a\\x35\\xfb\\xea\\x3a\\xf7\\x87\\xce\\xf2\\xd9\\xfb\\x06\\xa7\\xd9\\x22\\x10\\x23\\x6c\\x53\\x06\\xf7\\xcf\\x9e\\xbd\\x7f\\x70\\xaa\\x35\\x02\\x2f\\x62\\x40\\x74\\x7a\\x65\\x4f\\x49\\x71\\x77\\xa5\\x68\\x75\\xd2\\x2b\\x7b\\x8a\\x4b\\x7a\\x2a\\xd3\\x04\\xda\\x1e\\x6c\\xb8\\xff\\xd0\\xe6\\xf4\\xdf\\xae\\xfc\\x67\\xa8\\xa3\\x7d\\xf3\\xa1\\x13\\xf5\\xeb\\xeb\\xef\\x3f\\xb4\\xb9\\xc3\\x21\\x7c\\x39\\x59\\x4f\\xec\\xcb\\x07\\x7b\\xeb\\x52\\x52\\xeb\\x7a\\x07\\x97\\xdb\\x36\\xd8\\x96\\x2f\\xed\\xad\\x4f\\x4d\\xad\\xeb\\x5d\\xba\\xdc\\x2e\\xda\\xa0\\x0b\\x00\\x6c\\x09\\x37\\x0c\\xa1\\x10\\x23\\xac\\x2b\\xd8\\x13\\x49\\xf2\\xe9\\x69\\xaf\\x8b\\x35\\xce\\xde\\x09\\xba\\x24\\xdd\\xb8\\xfe\\xbf\\x46\\x60\\x94\\xea\\xd1\\xe2\\x33\\xfe\\x64\\xb7\\xfb\\xfd\\x8b\\x78\\xba\\xfb\\xf1\\xdb\\x6a\\x12\\xcb\\x3b\\x73\\xd1\\x8a\\x2f\\xb8\\x9e\\xfd\\xde\\xd9\\x3f\\x35\\x2d\\x65\\xca\\xe2\\xa2\\x7f\\x90\\x29\\xae\\xb3\\xdc\\x30\\xb1\\x2d\\x3c\\xd1\\x5f\\xb6\\xac\\xb5\\x32\\xc2\\xb5\\x77\\x12\\xf9\\x1c\\xe3\\x4b\\xbb\\x0a\\x4b\\xe7\\x95\\xc5\\x89\\xb6\\x7d\\xd9\\xd8\\x15\\x36\\x8f\\xbb\\x0c\\xf9\\x60\\xe1\\xd3\\x6e\\xcc\\xf1\\x10\\xe2\\x8b\\xcb\\x5f\\x0b\\x70\\xe4\\x66\\xdb\\xac\\xe9\\xa9\\x71\\x61\\x29\\x62\\x82\\x47\\xb8\\x8b\\x6b\\x3e\\xaf\\x57\\xbd\\x13\\xa5\\x86\\xaa\\x35\\xdc\\xb5\\x98\\x87\\x47\\x39\\xd1\\x87\\xf2\\x5a\\x07\\xad\\x35\\xf7\\x6d\\x9c\\x3a\\x75\\xcb\\xc3\\x33\\xe6\\x0e\\x6f\\x9d\\x42\\x9e\\x91\\xa5\\x54\\xcf\\x2b\\xb4\\x76\\xd5\\xa5\\xa2\\x73\\xee\\xa2\\x74\\x5b\\x7f\\x77\\x53\\x61\\x7c\\xe3\\xb6\\xb3\\x8d\\x6d\\x97\\xee\\x9c\\x45\\x9f\\xf6\\xcb\\x6a\\x1a\\x2c\\xb6\\xcd\\x9b\\x92\\x89\\x03\\x45\\xb3\\xf2\\x93\\xe4\\xe1\\xa5\\xdd\\xdb\\xe7\\xcc\\xd9\\xd7\\x6d\\xcd\\x5f\\x72\\xbc\\x33\\xbf\\xa7\\x32\\x51\\x93\\xdb\\x94\\x9d\\xdf\\x98\\x9b\\x10\\x2c\\x37\\x65\\x95\\x36\\x2f\\x28\\x68\\xdf\\xdb\\x96\\x9e\\xbb\\xf8\\x44\\x6f\\xf1\\xbc\\x8a\\xf8\\x48\\x47\\x23\\xa0\\xc0\\xac\\x6c\\x93\\x88\\xf7\\x22\\xf9\\xc9\\x82\\x96\\xbf\\x66\\x68\\x3d\\xc6\\xd0\\xeb\\x6a\\x79\\x42\\xbb\\x6c\\x93\\xdb\\xf9\\xb8\\xdb\\xc9\\xb2\\xb8\\xd0\\x1f\\xbf\\xe2\\x42\\x8f\\x78\\x6c\\xf6\\xf6\\xb1\\x2b\\xac\\x90\\x1b\\x86\\x70\\xc1\\x6e\\x30\\x4a\\x44\\x49\\xf0\\xd2\\xc6\\x03\\x76\\xc2\\x21\\x3c\\x5e\\x19\\xcf\\x09\\x14\\x51\\x78\\x35\\xb2\\xc2\\xa2\\xf0\\xea\\x64\\x05\\xe3\\x09\\x29\\xbd\\xe5\\x6c\\xef\\xfc\\xb3\\x6b\\x4a\\x91\\x0c\\x33\\x34\\x56\\xf4\\x95\\x95\\x2d\\xac\\x30\\x10\\xca\\x0d\\x8f\\x1a\\xba\\x1f\\xdd\\x5c\\x53\\xbd\\xf9\\xb1\\x6e\\xfa\\xee\\xa8\\xa1\\x60\\xc5\\xac\\x2c\\xfb\\xec\\x15\\x05\\xf4\\x5d\\x40\\x28\\x03\\x60\\xeb\\xc4\\x58\\x87\\x92\\x0f\\x15\\xee\\x7d\\xc2\\x6d\\x7b\\x22\\x1c\\x02\\x2c\\xb5\\x90\\x76\\x6c\\x7a\\xd1\\x6d\\x3d\\xe6\\xce\\x7c\\x09\\x93\\xd8\\x96\\x1f\\xeb\\xc5\\x52\\x2c\\x40\\xa8\\x00\\x60\\x47\\x44\\xdd\\xae\\xe5\\xa3\\xfd\\x39\\x82\\x80\\x95\\x8c\\x8a\\x2a\\x94\\x78\\x78\\x2c\\x54\\x1e\\x2a\\x97\\x8b\\x60\\x40\\x61\\xa1\\x7a\\x4a\\xf5\\xd4\\xa2\\x50\\x58\\xe8\\xfa\\x45\\xe7\\xce\\x3f\\xfd\\xd4\\xd3\\xcf\\x9c\\x1f\\x5e\\xf4\\xd4\\x31\\xdc\\xc6\\x0c\\x3f\\xd6\\xb3\\x8a\\xab\\x4f\\x72\\xc3\\x57\\xdf\\x65\\x06\\xcf\\xdc\\x8d\\x00\\x6c\\x97\\x68\\xfb\\x62\\xf8\\x28\\x3f\\x09\\xa5\\xc2\\xe4\\x14\\x27\\xce\\xed\\x4b\\xb0\\x8a\\x06\\x43\\xfc\\xdf\\x42\\x16\\x63\\xf6\\xbb\\xee\\x66\\x3c\\xff\\x8e\\xfb\\x19\\xf7\\xd3\\xef\\xe1\\xa3\\xee\\xe6\\x3f\\xd0\\x21\\x92\\xe3\\x4a\\x71\\xc5\\x92\\x52\\xd7\\x25\\xf2\\x27\\xf2\\x3b\\xcf\\xfc\\x79\\x5e\\x5d\\x24\\x83\\x28\\x3e\\x5c\\x42\\xc5\\x7b\\x9f\\x48\\x82\\xd0\\xd0\\x71\\x12\\x50\\x3d\\x45\\x0b\\x69\\xc1\\xea\\xdf\\xb9\\x73\\xe8\\x19\\xea\\xce\\x79\\x83\\xfc\\x9e\\xbc\\x37\\xba\\xc8\\xf5\\x11\\x89\\xa1\\x7b\\x00\\x61\\x09\\x00\\xb3\\x8b\\x3a\\x3e\\x91\\x37\\xf8\\x21\\xa1\\x4c\\x8c\\x1a\\x82\\xd7\\x4a\\x7b\\x4c\\x53\\xb3\\x97\\xb4\\xa1\\x1e\\x8e\\x10\\x6c\\x93\\x51\\xf0\\xc0\\xd5\\x58\\x42\\xbe\\x1d\\xcd\\x23\\xe4\\xf7\\xae\\x2c\\x7a\\x37\\xb9\\xf7\\xde\\xdd\\x6c\\xc3\\x91\\x9d\\x62\\xac\\xff\\x61\\xf7\\xcb\\xd4\\x26\\x59\\xef\\xf5\\xe6\\x29\\x88\\xe9\\x5c\\x40\\x42\\xc4\\x98\\xbd\\x80\\xba\\x70\\x82\\x37\\xaf\\x97\\x5b\\x44\\xb0\\x65\\x7b\\xff\\x7d\\xf7\\x52\\xdc\\xc1\\x7d\\xf6\\xc3\\x8a\\x43\\xd2\\x8b\\xc2\\x5a\\x3f\\x1d\\xdb\\x48\\xbf\\x1a\\x8f\\xb5\\x23\\xe0\\xa0\\x60\\xf0\\xc1\\x1b\\x6b\\x57\\x58\\x50\\xff\\xe9\\x83\\xa4\\xf5\\x41\\x6e\\xf8\\x87\\x37\\xc4\\xdf\\xdd\\xef\\x7e\\x99\\xc6\\x8e\\xff\\x2e\\x00\\x25\\x40\\xdb\\x80\\x20\\x92\\xe9\\x82\\x7e\\x6c\\x06\\x24\\x38\\x21\\x8a\\x20\\xd7\\x59\\x2d\\x72\\x3d\\xee\\xc7\\x9d\\xee\\xc1\\x3f\\xfd\\x49\\xb2\\xfe\\xfb\\xf2\\x43\\x92\\xad\\xe2\\xef\\x92\\x93\\xf4\\xaf\\x22\\x8d\\x23\\xf9\\xc9\\x52\\xf4\\x58\\xfe\\x09\\xa1\\x7e\\x8f\\x95\\x46\\xd1\\xfb\\xa1\\x46\\x29\\xde\\x79\\x06\\xf9\\x75\\x98\\x7f\\xfa\\xa5\\xe0\\x60\\x72\\x92\\x06\\x8c\\xfe\\x0b\\x3f\\x29\\x2e\\x06\\x84\\xbb\\xc7\\xe6\\xb1\\x34\\xd1\\xfb\\xf9\\x8f\\x39\\x0b\\x4e\\x10\\xae\\xb4\\xd1\\x05\\x74\\xff\\xc1\\x83\\xe2\\x1a\\xee\\x63\\xcf\\x52\\x33\\xf7\\x0a\\x50\\x78\\xd7\\x13\\x89\\x08\\x98\\x90\\x64\\xf0\\xc6\\x1b\\xc6\\x0f\\x39\\xd1\\x17\\x55\\xb8\\x61\\x54\\xc8\\xcd\\xa3\\x42\\x6f\\x1e\\xa5\\xba\\x79\\x94\\xfa\\xe6\\x51\\xe1\\x37\\x8f\\x8a\\xbc\\x79\\x54\\xd2\\x8d\\xa3\\x78\\x3f\\x61\\xc7\\x96\\x00\\xc0\\xbc\\xe6\\xf1\\xd7\\xe3\\xde\\x4c\\x8d\\x9e\\x5a\\xa8\\xf9\\xc0\\xf7\\x1f\\xb0\\x67\\xd1\\xdf\\xe3\\x7f\\xde\\x33\\x76\\x85\\xd9\\x58\\x2d\\xa4\\x40\\x1e\\x14\\xf3\\x05\\x99\\xc8\\x49\\xcc\\x94\\x00\\x47\\x2a\\x81\\x12\\x24\\x14\\x07\\x00\\x41\\xc2\\xa1\\xa4\\x03\\x08\\x11\\x83\\xf4\\x65\\x55\\x52\\xf4\\x3a\\x8d\\x25\\x50\\x9d\\x96\\x6a\\xb7\\xa6\\xe6\\xa5\\xe5\\xc5\\x85\\xc5\\x27\\x18\\x65\\xb2\\x70\\x93\\xce\\x60\\x30\\x4e\\x88\\xb5\\x59\\xae\\x65\\x1b\\xbc\\xe1\\x10\\x79\\x98\\x4a\\xad\\x8c\\x17\\xe3\\x6e\\xfa\\x58\\x89\\x98\\x0a\\x1d\\x0a\\x08\\xa4\\x51\\x25\\x53\\xe7\\x58\\x67\\x6c\\x6f\\xb3\\x96\\x6d\\x78\\x72\\xf1\\xab\\x71\\x85\\x73\\x73\\xec\\x8d\\xb9\\xba\\x4b\\x98\\xb3\\xe8\\xbe\\xae\\x59\\x47\\x06\\x0b\\xc3\\x42\\x5d\\xdf\\xdb\\xe6\\xd4\\x64\\x85\\x9c\\x39\\xfe\\x78\\xa4\\x6d\\x8a\\x32\\x3f\\x36\\x2a\\xc3\\xa0\\xca\\x98\\x3e\\x54\\xdc\\xbc\\xa5\\x39\\x79\\x7a\\x7a\\xad\\x5d\\x13\\x95\\x92\\x1f\\x9b\\xb3\\xa4\\x25\\xcb\\xdc\\xb2\\xb5\\xc5\\xed\\x67\\x5b\\x69\\x0e\\xd9\\x19\\x95\\x92\\xa3\\x7d\\xaf\\xb5\\x27\\xa1\\x38\\x3d\\xca\\xb3\\xde\\x73\\x63\\x57\\x58\\x91\\x04\\xc4\\x1c\\xfb\\x71\\x0f\\x91\\x83\\x03\\x91\\x51\\x9d\\x96\\x70\\x4c\\x86\\xc0\\xd1\\xca\\xc8\\xeb\\x8e\\x20\\x47\\x2b\\x9b\\x3d\\x03\\x23\\x81\\x10\\xa7\\xe0\\x57\\x88\\xb6\\xa7\\xac\\x4a\\xf4\\x9d\\x05\\x58\\x56\\x02\\xc2\\x56\\xe8\\xea\\x9b\\x04\\x88\\x7c\\xfd\\x10\\xc4\\xbc\\x2a\\xb8\\x46\\xae\\x48\\x3e\\x66\\xc2\\x49\\x8f\\x70\\x5c\\x3f\\xa2\\xb9\\x99\\xf7\\x4b\\x4c\\xd4\\xcb\\x15\\x71\\xa2\\xa9\\x15\\x6d\\x96\\xc1\\x28\\x15\\xa0\\xae\\x37\\x74\\xaf\\xf7\\xc5\\xea\\xe5\\x1e\\x85\\x6e\\x65\\x45\\x59\\x0b\\xef\\xeb\\xe9\\xbd\\xcb\\xe6\\xf7\\xf0\\x88\\xf5\\x40\\x67\\xef\\xd1\\x85\\x59\\x23\\x31\\xc5\\xfd\\xf5\\x69\\xf5\\xf9\\xe9\\xf2\\xd0\\x74\\xbe\\x3e\\xad\\xba\\xaf\\x44\\x47\\xe4\\x4b\\x5f\\xd9\\x37\\xad\\xb2\\x64\\xb5\\x04\\x5c\\x2f\\x15\\x96\\x4e\\xd9\\xfb\\xda\\xca\\xba\\x5d\\x7d\\x7c\\xb8\\x39\\x2f\\xce\\x6d\\x8c\\xcb\\x4b\\x09\\xcf\\x5f\\x78\\x47\\x9d\\xa8\\xeb\\x76\\x8d\\x5d\\x61\\x16\\x56\\x0b\\x26\\xc8\\xe1\\xb3\\x80\\x71\\xc8\\x31\\x91\\x0d\\x38\\x84\\x7e\\x9f\\xe5\\x2d\\x13\\x23\\xaf\\xbe\\x70\\x3d\\x42\\xac\\x36\\x2a\\x52\\xad\\x9c\\xe4\\x2f\\xe1\\xc0\\x84\\x26\\xa9\\x27\\xea\\x4a\\xec\\x16\\x2f\\x2b\\x8c\\x27\\xc6\\x7d\\x16\\x59\\xd8\\x77\\xb2\\x3a\\x63\\x6e\\xa5\\x19\\xcf\\x61\\xc5\\xaa\\x23\\x33\\x56\\x5f\\x5c\\xed\\x74\\xae\\xbe\\xb8\\xba\\xf5\\xd8\\x50\\xe1\\x39\\x4c\\x2c\\x6d\\xcb\\x9a\\x31\\x54\\x1e\\x13\\x53\\x36\\xb4\\x41\\xeb\\xa8\\x31\\x97\\x6f\\xec\\xc8\\x69\\xda\\xff\\xc2\\xc2\\xa4\\x05\\x97\\xf7\\x37\\xe5\\xcd\\xdb\\x3d\\x25\\xbd\\xb1\\xd0\\x50\\xb2\\x68\\x5b\\x69\\x52\\xd9\\xf6\\x45\\x25\\x40\\x44\\x9b\\x18\\x25\\xee\\x6b\\x22\\x6c\\xe3\\x83\\x65\\xc8\\x81\\x4e\\x4b\\x18\\x17\\x38\\x21\\xfb\\x1f\\x29\\x88\\xc8\\x38\\xad\\xcb\\x84\\x6d\\xba\\x96\\xf6\\xf7\\xed\\xdf\\x0d\\x43\\x08\\xc9\\x1b\\xdf\\xce\\x12\\x2a\\xee\\xdf\\xb5\\x93\\xe3\\xd5\\x01\\x13\\x46\\x08\\xfb\\x67\\x1c\\xdf\\x3f\\x4f\\x05\\x86\\x4a\\x2d\\xb7\\xc8\\x7d\\x45\\x00\\xe3\\xd9\\x2a\\xbb\\xdc\\xe0\\x09\\x14\\x6e\\xcf\\x5b\\x7c\\xb4\\xa3\\x6d\\x8f\\x75\\xe4\\x61\\x99\\xed\\x40\\x67\\xfb\\x7d\\x03\\xce\\x91\\xd8\\xb2\\xfe\\x9a\\xd4\\x6a\\x67\\x5a\\x68\\xdc\\xaa\\x96\\xda\\x45\\x65\\xb1\\xc4\\xb0\\xf2\\xb5\\xbd\\x53\\x0a\\x9c\\x24\\xfd\\x47\\x58\\x52\\x58\\x3c\\x6d\\xdf\\x2b\\x4b\\xeb\\xee\\x58\\x98\\xaf\\x4a\\x74\\xe8\\xf1\\xbb\\xc2\\xe9\\x7c\\xdf\\xae\\x3a\\x0f\\x7f\\xdf\\x36\\x76\\x85\\x95\\xb0\\x5a\\x01\\xd1\\x01\\xcf\\xe7\\x45\\x46\\x10\\x31\\xe7\\xe9\\xc9\\x22\\xb4\\x49\\xd1\\x0b\\x9d\\xcb\\x3c\\x78\\x55\\xe2\\x61\\x5e\\x9d\\x16\\xc1\\x10\\xaf\\x35\\xe9\\x4c\\x93\\x55\\xa1\\xf2\\x49\\xfe\\x10\\x83\\x31\\x32\\x59\\x98\\x89\\xbb\\x6e\\xeb\\x94\\x3a\\x81\\xdf\\x6c\\x76\\x75\\x10\\x15\\x73\\x2e\\x3a\\x6b\\x0a\\x25\\x3b\\x96\\x3c\\xbb\\xb5\\x7a\\xda\\xf6\\xf3\\xb3\\x87\\xce\\x2d\\x75\\x8c\\x5e\\xa5\\x96\\xe6\\x35\\x55\\x1d\\x87\\x2d\\x8b\\x23\\x1b\\xe6\\x6f\\xe9\\xc9\\xea\\xac\\xb7\\x07\\x90\\x52\\xaa\\x2f\\xee\\x09\\xab\\xdd\\xf1\\xdc\\xe2\\xa4\\x8d\\xbf\\xde\\x55\\xdd\\xb0\\xeb\\xf9\\xc5\\x53\\x2b\\x37\\xb4\\x65\\xd5\\x17\\x36\\x25\\x56\\x65\\xeb\\xe9\\xab\\x89\\x75\\x83\\x55\\x41\\xb6\\xf9\\xd3\\x32\\x01\\xe1\\x10\\x00\\x5b\\x20\\x31\\x41\\x38\\xd8\\xf9\\xcc\\x40\\xa4\\x24\\x08\\x91\\x8a\\xa5\\x2f\\x14\\x09\\xed\\xe0\\xc4\\x52\\x2a\\x86\\x88\\xf9\\x55\\x52\\x14\\xa3\\x89\\x1e\\xb8\\x23\\x57\\xc4\\xc7\\xcb\\xe5\\x32\\xc1\\x53\\x16\\x80\\x93\\xd5\\x4b\\x77\\xa9\\xc1\\xa0\\x97\\x48\\x94\\x4a\\xc1\\xb3\\xc3\\xe7\\xdd\\x6f\\x61\\x52\\xde\\xa2\\x7b\\x5a\\x0b\\xd7\\x16\\xaa\\x12\\xfb\\x9c\\x1b\\x36\\xe2\\x31\\xf7\\x5c\\x7a\\x7a\\x57\\x75\\xef\\xbd\\xf3\\x6d\\x2a\\xf9\\x5d\\x41\\x4a\\xdc\\xb0\\xb9\\x7a\\xd7\\xe8\\x74\\x0f\\x2d\\x77\\xb8\\x67\\xb0\\x68\\x56\\x0b\\x89\\x90\\x0f\\xbb\\x3c\\x2c\\x14\\x26\\x43\\x09\\x58\\x33\\x09\\x27\\xd1\\x21\\xe3\\x54\\x4a\\x42\\x19\\xab\\x8c\\x14\\x0f\\xe3\\x8d\\x87\\xbd\\x5a\\x43\\x0b\\x12\\x89\\x47\\x4d\\x88\\x1a\\xc3\\x93\\xe8\\x14\\xc8\\x2f\\x0a\\x4f\\x01\\xa9\\x8e\\xe4\\xe3\\x40\\x58\\x8f\\x38\\x0e\\xfe\\xe3\\xb0\\x66\\xde\\x3f\\x31\\xd1\\x98\\x18\\xaf\\x88\\x13\\x93\\x79\\xde\\x05\\xda\\x2d\\x72\\x1f\\xac\\xb5\\x7b\\xd5\\x81\\xf5\\x26\\x3e\\xf3\\xca\\xdc\\x8e\\x9c\\x81\\xa3\\x5d\\x9d\\x07\\xad\\x7e\\x0f\\x15\\xad\\x7c\\xa8\\x3b\\x69\\xe1\\xa2\\x9e\\xf8\\xd6\\xd8\\xf2\\xca\\xca\\xf8\\xc2\\xf9\\x55\\x09\\xb6\\x3b\\xdb\\x3a\\x8e\\x2e\\xca\\x1d\\xd1\\x95\\xf5\\xd7\\xa4\\xd5\\xe4\\xa5\\x85\\x86\\xa6\\x39\\xab\\x53\\x6a\\x17\\x95\\xe9\\x3c\\xbc\\x57\\x56\\xb4\\xec\\xea\\xfb\\x0b\\x1e\\x58\\x9a\\xab\\x30\\x95\\x5b\\x17\\x25\\x3a\\x62\\x83\\x0d\\x15\\x0b\\x4b\\x67\\x3b\\x0b\\x7c\\xbc\\xa8\\x4e\\xca\\xd6\\xe3\\x37\\xb1\\x59\\x89\\x6a\\x0f\\x37\\x7a\\xe2\\x11\\xc9\\xa2\\x4c\\x56\\x3c\\x21\\x17\\xc0\\x07\\x56\\x7a\\xa4\\x4c\\x05\\x8c\\x39\\xc7\\x21\\x6b\\x99\\xcf\\xc3\\x88\\x14\\x3d\\xf3\\x6b\\xc2\\xe9\\xa9\\x99\\xcb\\xc3\\xea\\xe6\\x27\\xe5\\x0a\\xbd\\x32\\x56\\x04\\x86\\x36\\x9b\\x5d\\xb4\\x22\\x7a\\x79\\xa6\\x41\\x1a\\x2b\\x11\\x83\\x00\\xd8\\x93\\xfd\\xf0\\xfc\\xe9\\xdb\\xdb\\xad\\x23\\xeb\\x96\\x35\\xef\\x31\\x8f\\x8c\\xd0\\xbb\\xa6\\xcf\\xc5\\xf4\\xde\\xfb\\xfa\\x5c\\x8d\\xe4\\xf4\\xe6\\x0d\\xd8\\x58\\x3e\\xfa\\x95\\x44\\xdc\\xd3\\xd7\\x00\\xd8\\x74\\xee\\x05\\xf0\\x03\\x25\\x98\\xf9\\x24\\x5f\\xe1\\xd4\\xb5\\x7c\\x79\\xbe\\x78\\x37\\xbe\\xa0\\x57\\x9c\\x5e\\x8c\\x97\\x88\\x14\\x1f\\x8f\\x96\\xe0\\x84\\x48\\xfe\\x6b\\x24\\x11\\xdb\\x46\\x97\\xe1\\x80\\x7b\\x37\\x36\\xd9\\xb3\\xec\\x59\\x59\\xf6\\x2c\\x3b\\xcb\\x1e\\xed\\x3e\\x7a\\x94\\xfc\\x80\\x4f\\xa7\\xe4\\xe7\\xa7\\x98\\x73\\x73\\x3d\\xfc\\xf4\\x86\\xbb\\x8a\\x36\\x71\\x2f\\x80\\x1a\\xf4\\x60\\xe5\\x33\\x02\\x90\\x50\\x7f\\x44\\x42\\x2a\\x7d\\xfb\\xed\\xf1\\x22\\x3d\\x77\\xe1\\xf3\\x2c\\x2b\\xb0\\x3a\\x4e\\xaf\\x2c\\xb6\\xfa\\x3c\\x2f\\xaf\\x41\\xf0\\x6d\\xf6\\xf5\\x77\\x83\\x26\\x12\\xeb\\xe8\\xbb\\xb7\\xd3\\xd1\\x61\\x0f\\x94\\x67\\x5a\\xd3\\x83\\x32\\x67\\x15\\x1b\\xdd\\x07\\xb1\\xce\\x96\\x25\\xbe\\x6c\\x2c\\xfb\\xea\\xb3\\xbd\\x47\\xfb\\x1c\\x52\\xff\\x43\\x94\\xa3\\x18\\xc9\\xcf\\xab\\xa1\\x47\\xf1\\x19\\x73\\x7e\\xbe\\xd9\\x9c\\x97\\x07\\x08\\xc3\\x00\\x6c\\xbe\\x04\\x60\\x12\\x94\\x3c\\x29\\x86\\x5f\\xc6\\x37\\x4d\\xee\\x51\\x8d\\x84\\xe4\\xfb\\x22\\x31\\x91\\xbc\\x5a\\xc4\\x55\\xe2\\xd7\\xeb\\xce\\x34\\x3f\\xf1\\x93\\x51\\x1a\\xfc\\x76\\xeb\\xa5\\x4b\\x2b\\xb1\\xe3\\x23\\x77\\x25\\xfe\\xf0\\x05\\xfe\\xb0\\xd1\\xbd\\x4d\\x02\\xa3\\xd3\\x36\\x60\\xa7\\x3b\\xcf\\x75\\xbb\\x68\\x7b\\xc4\\xfd\\x91\\x00\\xf8\\x41\\xfe\\x35\\x5e\\x11\\x49\\xe2\\xbc\\x6e\\x63\\x22\\xf9\\x30\\x00\\x60\\x08\\xac\\x6d\\xe2\\xe1\\xe6\\x27\\xc7\\xe3\\x89\\xd7\\xf6\\x6b\\xc2\\x1e\\x49\\xe0\\xc7\\xa3\\x47\\x8f\\xb2\\x67\\xc5\\xdf\\x9a\\x2d\\xf8\\xbf\\xac\\x16\\x62\\x61\\xb1\\x07\\x5b\\x4d\\x92\\x20\\xa1\\x10\\xa3\\x22\\x84\\x92\\xca\\x48\\xcf\\x57\\xa9\\xf7\\x6b\\xb3\\x67\\x88\\xca\\x13\\xa9\\x95\\x49\\x91\\x0a\\x5c\\x2a\\x61\\xc4\\x7b\\x3b\\x11\\x32\\x94\\x4a\\xf3\\xab\\x3c\\xa7\\x3d\\xd2\\xee\\x3b\\x29\\xa6\\x8a\\x20\\x16\\x62\\x05\\x26\\x56\\xe8\\xf5\\x7e\\xb2\\x48\\x13\\xaa\\x05\\x46\\x16\\xff\\x51\\x89\\xcc\\x2c\\x15\\x2d\\xfa\\x04\\xae\\x46\\xca\\xe9\\x16\\x54\\xef\\xcf\\xd0\\xce\\xab\\x5a\\xbe\\x7e\\x78\\xad\\x2e\\x4d\\x1b\\x4a\\x87\\xb3\\xf3\\xb3\\xf9\\xe0\\x61\\x96\\xdd\\xed\\xe0\\x71\\x69\\x66\\x3e\\xee\\xdd\\x37\\xfa\\x0e\\x4d\\xda\\x8a\\xa1\\x31\\x89\\xaa\\xd1\\x67\\xa9\\xa9\\xa0\\x14\\x53\\x0c\\xa3\\x27\\x58\\xb6\\x4f\\xfe\\x12\\x59\\x2d\\xa8\\xa1\\xe6\\x89\\x30\\xf4\\xca\\x9f\\xb0\\x08\\x85\\x28\\x66\\x62\\xf4\\x6a\\x82\\xf0\\xa9\\x39\\x64\\x2c\\xff\\x66\\xb1\\x6c\\xe6\\x03\\x01\\x40\\x0d\\x6a\\x45\\xbc\\x52\\x2f\\x86\\xb6\\xd4\\x13\\x84\\xd0\\x53\\x40\\x29\\xdc\\xef\\xb4\\xc0\\x9c\\x33\\x1e\\x29\\xd4\\xe6\\xb7\\xe4\\xcc\\xde\\x99\\x34\\xc2\\xb2\\x8f\\x4e\\x9b\\x8b\\x69\\xdd\\xf7\\x2e\\x74\\x35\\x90\\xd3\\xe5\\x9d\\xce\\xa8\\xd9\\xd5\\xa3\\xdf\\xb3\\x6c\\x20\\xb0\\x6a\\xec\\x0a\\x9b\\xc2\\x6a\\x45\\x1c\\x16\\xc3\\x47\\xf9\\xa2\\x27\\x65\\xe3\\x7c\\x5f\\x82\\xd5\\x89\\x89\\x9e\\xa2\\x9c\\xff\\xa5\\x8c\\x71\\x55\\xf1\\xba\\x27\\x96\\x0c\\x3e\\xb9\\xae\\xd8\\xf7\\x77\\xc4\\x50\\xb3\\xb4\\xa6\\x7a\\xb0\\xc6\\x60\\xac\\x19\\xac\\xa9\\x59\\x52\\x63\\x20\\xc6\\xa1\\x57\\xf6\\x4d\\x9f\\xbe\\xef\\x95\\x21\\xd5\\xd0\\xcb\\xfb\\xa6\\x4d\\xdb\\xf7\\xf2\\x50\\xfd\\x9e\\x7e\\x9e\\xef\\xdf\\x53\\xaf\\xaa\\xdb\\xd3\\x5f\\x50\\xd0\\xbf\\xc7\\x6b\\x43\\x1f\\x71\\xb7\\xb2\\x7c\\xf1\\xde\\x8c\\xd0\\x2e\\x82\\x41\\x12\\xa3\\x19\\x87\\x87\\x3e\\x2c\\xe1\\x03\\x0f\\xf9\\xd7\\xd0\\x9b\\x80\\x08\\x0a\\x50\\x04\\x09\\xe2\\xf1\\xeb\\x91\\xe2\\x84\\x11\\xcd\\xbc\\x5f\\xfc\\x4d\\x18\\x4f\\x10\\x14\\xf5\\x75\\x18\\x4f\\x22\\x95\\x7b\\xcb\\x33\\x58\\x7e\\xd6\\xc2\\xfb\\xba\\x3b\\x0e\\xda\\x46\\x4e\\xf9\\xd9\\xee\\xea\\x12\\x21\\x9e\\xbe\\x62\\xa0\\xb6\\x79\\x65\\x5c\\xdc\\x8a\\x59\\x35\\x03\\xe5\\x7a\\x0f\\xbc\\xe3\\x73\\x5d\\xdf\\x73\\xef\\x2e\\x2b\\x2a\\xf3\\xc1\\xbb\\xa9\\x05\\xae\\x7f\\xf3\\x0d\\x05\\xfd\\xbb\\xeb\\x7c\\x36\\xad\\x95\\x45\\x89\\x6b\\x4b\\x84\\x55\\x5e\\xfc\\x2b\\x80\\xa5\\x18\\x8d\\x08\\x96\\x28\\x13\\xf1\\xaf\\x0c\\x39\\x9c\\x70\\x64\\x1c\\xff\\xfa\\x00\\x6f\\xd9\\x35\\xc4\\x53\\xe5\\x33\\x62\\x31\\x1e\\x23\\x36\\x11\\x5d\\x5d\\x37\\xe2\\x27\\x71\\x91\\xdd\\x22\\xd7\\xcb\\xaf\\xb3\\x57\\xb6\\x6b\\xe6\\x2a\\x7b\\xe0\\x44\\x6f\\xeb\\x9d\\x36\\xd9\\xc3\\x23\\xb6\\xdd\\x73\\x7a\\x8e\\x0d\\xe4\\x8c\\xe8\\xcb\\x17\\xd5\\x34\\xaf\\x30\\x28\\xd2\\xf3\\x2a\\x4c\\x35\\x03\\x15\\x7a\\x1f\\x2c\\x5a\\xf0\\xa3\\x81\\x10\\x47\\x9e\\x68\\x8a\\x76\\xf7\\x17\\xd4\\xf3\\x44\\x15\\x63\\x31\\x28\\x0b\\x17\\xed\\xae\\x13\\x54\\x28\\x00\\x4b\\x67\\xb5\\xa0\\x80\\x5e\\xaf\\x9c\\x73\\x88\\x20\\x9f\\x24\\xb8\\xf1\\xa2\\x9c\\x73\\x88\\xd4\\xf7\\xd5\\x2b\\xe7\\xa1\\x82\\x66\\x6b\\xa1\\x1e\\x11\\xf1\\xa9\\x1c\\x15\\x50\\x9a\\x5f\\x25\\x9e\\x61\\x78\\xed\\x44\\x33\\x1f\\x4c\\x20\\x24\\x38\\x28\\xd0\\x5f\\x06\\x0a\\xa2\\xe0\\x64\\x61\\x26\\xcc\\xd0\\x10\\x11\\x7c\\x78\\x2d\\x94\\xda\\x66\\xa3\\x83\\x11\\x59\\x16\\x53\\x50\\xb8\\xad\\xcd\\xba\\xe1\\x98\\xe1\\xd2\\xb0\\x5f\\xe1\\x08\\xab\\xa5\\x52\\x7f\\xc9\\x85\\x49\\x01\\xcb\\xe6\\xbb\\x2a\\x59\\xf6\\x99\\xe6\\x1e\\x51\\x2f\\x9d\\xf3\\xfa\\x64\\x39\\xff\\x25\\x06\\x56\\x36\\x31\\x06\\x96\\x9d\\x95\\x69\\x49\\x35\\xff\\x74\\x0c\\x6c\\xdc\\x5d\\x50\\x5e\\x2b\\x72\\xf6\\x90\\x5b\\x44\\x73\\x74\\x6d\\x84\\xb3\\xbb\\x7a\\xf6\\x5d\\x7d\\xb9\\xce\\x81\\xbb\\x67\\x77\\x1e\\x1d\\xc8\\x1b\\x89\\xe3\\x5b\\x1c\\x39\\xcd\\x39\\x9a\\xc9\\x39\\x1d\\xd5\\x9d\\x47\\x16\\x3a\\x0a\\x96\\x1e\\x6f\\xed\\x3f\\xb3\\x3c\\x7f\\x84\\x59\\xeb\\x5a\\x53\\x87\\xb6\\x62\\x8c\\xce\\x9a\\x1c\\x1f\\xac\\xb0\\x55\\x75\\x15\\x15\\x0e\\xce\\xc8\\xc8\\x9c\\xb5\\xba\\x4c\\x5f\\x94\\xa9\\x8d\\x48\\xce\\x8e\\xd1\\x66\\x24\\x68\\x83\\x95\\xf6\\x9a\\xee\\xa2\\xf2\\x65\\xd3\\x52\\x72\\xda\\xd6\\x97\\x38\\x6a\\xd3\\xc2\\x66\\x78\\x62\\x28\\x77\\x8c\\x5d\\x61\\x89\\x1c\\x0f\\x31\\xe0\\xe0\\x6d\\xc1\\x48\\x30\\x04\\x29\\x21\\x95\\x52\\x94\\x80\\x64\\x09\\x13\\xf3\\x15\\x02\\xbe\\x13\\x55\\x90\\x6f\\x69\\x00\\x10\\x03\\x31\\x72\\x65\\xa2\\x17\\xdd\\xa1\\x98\\x22\\x0a\\x9b\\x98\\x0a\\x4e\\x11\\xac\\xa0\\x55\\x27\\x27\\x9d\\x78\\x8f\\xbb\\x53\\x9b\\x55\\x91\\xa8\\xe1\\xf3\\xac\\xf2\\x08\\x75\\x61\\x6d\\xa3\\xa9\\x7c\\xed\\x2c\\xab\\xfb\\x2f\\x18\\xc5\\xf1\\xee\\x1f\\x77\\xb9\\x1e\\xcf\\x9f\\x92\\x1e\\x26\\xf5\\x0f\\x60\\x1b\\x83\\x94\\xc1\\xb2\\xc4\\xe6\\x9d\\x9d\\xa4\\x7a\\x17\\x4a\\x00\\xe1\\xf1\\xb1\\x2b\\x2c\\x86\\x65\\x83\\x1a\\x8a\\x2f\\x28\\x90\\x20\\x7a\\xe5\\x3c\\x94\\x8a\\x58\\x53\\x24\\x3b\\xf3\\xba\\x7a\\xbc\\xca\\x7b\\x90\\xb1\\xbc\\x89\\x81\\x37\\x01\\xa6\\xc4\\x7b\\x60\\x4a\\xbc\\x97\\xa7\\xe5\\x16\\xb9\\x8f\\xab\\x2d\\x72\\x3d\\x5d\\x68\\x3b\\x3e\\x7f\\xfa\\xb6\\x76\\xeb\\x48\\x54\\x56\\x83\\x75\\xf1\\xf6\\xd8\\x4b\\x0f\\xed\\xaf\\x6f\\xb6\\x0e\\x3c\\xb2\\x92\\x6c\\x74\\xad\\x6e\\x5a\\x5a\\x12\\x35\\xab\\x96\\xca\\xae\\xbe\\x04\\x08\\xed\\x00\\xac\\x8b\\x65\\x7b\\x62\\x21\\x02\\x69\\x3c\\xe1\\xa6\\xfc\\xf1\\x88\\x9b\\x42\\x8c\\x85\\xa8\\xed\\xde\\x98\\xdb\\x0c\\x79\\x28\\xa6\\x3e\\xed\\x2e\\xdb\\xe9\\x2e\\x7a\\x06\\xfd\\x8b\\x8a\\x68\\xda\\xd5\\x97\\x04\\x2b\\x20\\xd0\\x3d\\x0d\\x80\\x3d\\xc8\\xb2\\x21\\x14\\x74\\xbc\\x26\\x50\\xe2\\xc9\\x61\\x30\\x24\\x1e\\xb0\\xe3\\x49\\xee\\x85\\xc9\\xc3\\x14\\x22\\xbe\\x52\\xdb\\x15\\x16\\x85\\xf0\\x0f\\xd5\\x53\\xa3\\x94\\xea\\xa9\\x05\\xa7\\xa8\\x22\\x1f\\x59\\x7e\\x26\\x3a\\x72\\xc5\\xfd\\x9f\\xec\\x3d\\x15\\x15\\xf9\\xe0\\xde\\x4f\\xee\\xc7\\xad\\x77\\xdf\\x4d\\x1e\\x75\\xd5\\x3e\\xfc\\x30\\x79\\xf4\\xea\\x4b\\xe4\\xe0\\x43\\x0f\\xb9\\xe6\\xb1\\x6c\\x10\\x1c\\x44\\xc1\\xa6\\x66\\xdf\\x1c\\x87\\xcb\\xff\\xaf\\x71\\xb8\\x3e\\xd4\\xfd\\xc1\\xdd\\x87\\x47\\xde\\x72\\xff\\xde\\xfd\\xfb\\x77\\xf0\\x88\\xbb\\xef\\x2d\\x72\\x0a\\xf7\\xb8\\xfe\\xe6\\x7a\\x5f\\xd8\\x54\\xa2\\x27\\x6a\\xcf\\x5a\\x8a\\xdd\\x55\\x6c\\x33\\xcb\\x86\\x28\\x88\\xe3\\x75\\x11\\x48\\x3c\\x4b\\xf1\\xad\\x04\\x67\\x79\\x10\\x93\\x2a\\x3d\\xce\\x1a\\xea\\x59\\x0e\\x5a\\xd0\\x1b\\x01\\x15\\x4c\\x96\\xc8\\x35\\x76\\xb4\\x90\\xdc\\x34\\xac\\xfc\\xb5\\xeb\\x3d\\x45\\xce\\xb4\\x81\\x8a\\x40\\xad\\x36\\xca\\x4f\\x23\\x9d\\x1c\\x31\\x59\\x6a\\xc8\\x4f\\xd7\\xfb\\x57\\xba\\x53\\x7e\\x8d\\xeb\\x37\\xd2\\xbc\\xab\\x31\\x49\\x73\\xea\\x6d\\x94\\x93\\x90\\x83\\x84\\x60\\x52\\xb6\\x33\\x6c\\x37\\x93\\x7a\\xee\\xe3\\x28\\x00\\xcb\\x63\\xd9\\xff\\x29\\x86\\x97\\xff\\x9f\\x62\\x78\\x56\\xd4\\x59\\x75\\x4a\\xdc\\x41\\xce\\x8f\\x76\\x90\\x2d\\xae\\x8d\\x74\\xe0\\xe0\\xc1\\xad\\x34\\xfc\\xae\\x8d\\x80\\x58\\xe4\\xde\\x4b\\x3f\\x95\\xe4\\x41\\x92\\x20\\xf7\\x3a\\x4f\\x2d\\x19\\x05\\x46\\x28\\xeb\\x00\\x02\\xc8\\x11\\xec\\x10\\xfb\\x64\\x1b\\xbd\\x4a\\x96\\x83\\xba\\xa4\\x44\\x79\\xb8\\x3c\\x3c\\x44\\x22\\x2c\\x35\\x85\\xb3\\x5a\\x33\\x0d\\x46\\x6b\\x86\\x4d\\x2c\\x8c\\x13\\x84\\x43\\xa9\\x94\\x48\\xa4\\x2a\\x95\\x5a\\x94\\x7d\\xfa\\xbb\\x82\\xf9\\xd3\\xf2\\x12\\xc3\\x6e\\xdf\\xb9\\xf3\\xf6\\x50\\x43\\xce\\xb4\\xbe\\x12\\x65\\xf9\\x74\\xd3\\x24\\xec\\x5f\\xba\\xb4\\x1f\\xc3\\xd2\\x1b\\x9c\\xee\\xbd\\x24\\xa1\\x78\\x66\\x4f\\x9f\\xf5\\xd4\\xee\\x0d\\xb8\\xe7\\xd6\\x3d\\x0f\\x5b\\xfb\\x7a\\x66\\x16\\x27\\x90\\x41\\xc2\\x77\\xac\\xc9\\x7b\\x78\\xc5\\x85\\xd4\\x94\\x0b\\xcb\\x4f\\x39\\x57\\x77\\xf0\\x44\\x58\\x1d\\x89\\x72\\x2f\\x21\\xe7\\xaf\\xc5\\x09\\x3d\\xf9\\x98\\x02\\x5f\\x9c\\x10\\xf5\\x72\\x0b\\x39\\xbf\\x7f\\xbf\\x7b\\x89\\xd4\\x29\\xd2\\x6c\\x7c\\x7d\\x09\\x82\\x6f\\xe7\\x87\\x8c\\x7a\\x32\\x69\\x54\\x58\\x17\\x05\\x06\\xc2\\x3a\\x85\\xa5\\x35\\x02\\x80\\x80\\xca\\x81\\xab\\x4b\\x30\\x6a\\x63\\x34\\xd1\\x61\\x8a\\x50\\x79\\x88\\x44\\xa6\\x34\\x71\\x4e\\x6a\\xb5\\x66\\xda\\xec\\x06\\x83\\x68\\xf9\\xc5\\xa2\\x6e\\x65\\x98\\xca\\xa2\\x14\\x7c\\x3c\\x31\\x1b\\x51\\x94\\x37\\x25\\x5d\\x29\\xac\\x28\\xd0\\x34\\xad\\x3c\\xac\\xa4\\x6f\\x5a\\x8e\\x21\\x74\\xdb\\x8e\\x1d\\xdb\\x92\\x67\\xdf\\xd1\\x7e\\x95\\xf0\\x1d\\xab\\x9d\\xa7\\x96\\x5f\\x48\\x49\\xbd\\xb0\\xe2\\xe1\\xbc\\x35\\x1d\\x3c\\x19\\xf4\\xae\\xf8\\xe1\\x3d\\xb7\\xee\\xc1\\x0d\\xbb\\x4f\\xd5\\x9f\\xd8\\x32\\x83\\x88\\x32\\x83\\x7b\\xd9\\x3d\\x34\\x16\\xe2\\x21\\x85\\x37\\xc5\\x0b\\xce\\x8b\\x22\\x94\\x80\\xc7\\x13\\xf5\\xdd\\x31\\xd0\\x46\\x2f\\x6e\\xa1\\x50\\x67\\x48\\x34\\x5c\\x57\\x41\\x6c\\x34\\x18\\x04\\x48\\xa7\\x34\\xfa\\x72\\x11\\x2a\\x95\\x5d\\xb4\\xe4\\xf7\\x24\\xd7\\xf7\\x17\\xa5\\x36\\xd4\\x54\\x25\\xd8\\x3b\\xb3\\xf4\\x79\\xc9\\x11\\x5b\\x92\\xeb\\xfa\\x8b\\x52\\xa6\\xd6\\x56\\x19\\x1d\\x6d\\x59\\xfa\\x3c\\x73\\x04\\xf9\\x4b\\xe1\\xaa\\x39\\x59\\xa1\\x71\\x99\\xb1\\x66\\x2b\\x46\\xa7\\x17\\x19\\xe4\\x85\\x2b\\x66\\x5a\\x15\\x71\\x99\\xda\\x34\\x0b\\x6a\\xad\\xa5\\x06\\x20\\xf8\\xad\\x7b\\x07\\x79\\x87\\xd5\\x01\\x85\\x60\\xc8\\xf1\\xc4\\x0f\\x95\\x3e\\xb5\\x59\\x36\\xce\\x7c\\x22\\x18\\x09\\x15\\x19\\x16\\x67\\x8f\\x9f\\x26\\xd5\\xcd\\x4f\\xc4\\xe9\\xe5\\xbe\\x94\\xad\\x5e\\x21\\xfa\\x0e\\x56\\xd1\\x8f\\x20\\xfe\\x23\\x23\\xbf\\xca\\xc9\\x72\\x64\\x67\\x3b\\xb2\\x72\\x48\\xc7\\x68\\x22\\x37\\x45\\xf0\\x61\\xd2\\x0a\\x0a\\x3c\\x7c\\x7f\\xe7\\x58\\x00\\xb3\\x73\\x06\\x48\\x87\\x2a\\xbe\\x3c\\x2a\\x9c\\x70\\x34\\x28\\x80\\x10\\x81\\xf3\\x6f\\x88\\x13\\x51\\xe0\\x18\\xe5\\x3a\\x24\\x28\\x28\\xc8\\x46\\x31\\x58\\xd4\\x0c\\x04\\x48\\x0d\\x42\\x82\\x21\\x56\\x17\\x19\\x11\\x38\\x49\\xc2\\x41\\x3a\\xa6\\x4f\\x8c\\x15\\x79\\xbb\\x6f\\x7c\\x1d\\x3a\\x1a\\x7a\\x7d\\xbc\\x68\\x9d\\x37\\x5e\\x94\\xdd\\xbe\\xb1\\x62\\xa4\\x75\\x4f\\x6b\\x7a\\x7a\\xeb\\x9e\\xd6\\x91\\xfa\\x4d\\xad\\xd6\\x9b\\x23\\x46\\xfc\\xd0\\xdc\\xc2\\x49\\x9f\\x7d\\x11\\xda\\x71\\xc7\\xf0\\xdc\\xa4\\xb9\\xe7\\x76\\x75\\x84\\x7e\\xfc\\xa7\\x49\\x25\\xdd\\x1b\\x2a\\xae\\x8f\\x1c\\x09\\x6b\\x5a\\x0c\\xc0\\xd6\\x70\\x97\\xc1\\x04\\x4e\\x3e\\x07\\x24\\x52\\x26\\x95\\xb0\\x01\\x19\\x32\\x7f\\x3f\\x42\\x81\\xd1\\x36\\x90\\x4a\\xbd\\x4e\\xa2\\xa7\\x93\\x0b\\x7c\\xe9\\x5e\\x13\\x98\\x94\\x71\\x61\\xf1\\x72\\x95\\x5c\\x1e\\x16\\x20\\x8b\\x36\\xa1\\x3a\\x4c\\x22\\xd5\\x49\\x75\\x56\\x8b\\x93\\x5a\\x8d\\x7a\\xab\\x85\\xde\\x64\\x84\\x15\\x3a\\x25\\xfe\\x5a\\x16\\xad\\x25\\x1f\\xe3\\xd5\\x1f\\xab\\x22\\xe3\\x55\\x32\\xd9\\xc9\\xa3\\x7e\\x45\\xcb\\xee\\x6f\\x6d\\x3d\\x34\\x2f\\xeb\\x92\\xb1\\xa8\\x31\\xcd\\xd2\\xcc\\xc7\\xcb\\x90\\x27\\x4b\\x3e\\x2e\\xd9\\x94\\x76\\xf0\\xa0\\x34\\xab\\xa2\\x41\\xfb\\xf1\\x21\\xe4\\xba\\x8f\\x2f\\xce\\xcd\\xea\\xbe\\xa3\\x31\\xbf\\xd9\\x11\\x69\\xac\\x58\\x50\\xe4\\xbe\\x7a\\xc8\\x83\\xe9\\x7a\\xc6\\xfe\\xca\\xf6\\xb2\\x2c\\xd0\\x83\\x1d\\xda\\x79\\x6d\\xc4\\xe4\\xd0\\x10\\x46\\x51\\x17\\x19\\xec\\xc7\\x08\\x8d\\x95\\x49\\x28\\x10\\x5a\\x19\\x2e\\x27\\x58\\xae\\x97\\x12\\x28\\xab\\x1a\\x8e\\x11\\xb9\\xc5\\x9b\\xbf\\xcf\\x9f\\x68\\xc2\\x22\\x79\\x05\\x20\\x50\\x82\\xb4\\x63\\xa2\\x61\\xe3\\xfd\\x33\\x33\\x92\\x12\\x54\\x61\\xb1\\x4c\\xa6\\xf4\\xd8\\x36\\x83\\x51\\x6a\\x14\\x1b\\x5e\\x6c\\x76\\xa3\\x5d\\x44\\xad\\x2a\\xb5\\x5d\\x2d\\x55\\x09\\x8e\\xa8\\x54\\x2d\\xc5\\x89\\x15\\xd9\\xb1\\x41\\x84\\x9e\\x70\\x1e\\x98\\x3e\\x7d\\xbf\\xb3\\x77\\xe3\\x80\\x21\\x21\\x39\\x69\\xc5\\xc6\\xa1\\xdc\\x5d\\xf5\\xf5\\xbb\\x73\\x57\\x6c\\x5a\\x93\\x90\\x9c\\x10\\xb7\\x74\\x93\\xcb\\x98\\xd1\\xb8\\xbc\\xa4\\x64\\x59\\x63\\x7a\\x7a\\xe3\\xb2\\x92\\x92\\xe5\\x8d\\x19\\xd3\\x32\\x6c\\xb6\\xb4\\x85\\xb7\\x0d\\xe6\\xdf\\xd9\\x30\\xe3\\x70\\xc1\\x9a\\xdb\\x56\\x25\\xa7\\xa5\\x9b\\xd7\\x6e\\x5d\\xcf\\x1f\\x9a\\x5e\\xbf\\xc7\\xb9\\x7c\\x2b\\xd1\\x54\\x6e\\xea\\xc8\\xc9\\xe9\\xd8\\x54\\x59\\xb9\\xa9\\x23\\x3b\\xbb\\x63\\x93\\xb8\\x97\\x3a\\x00\\x76\\x5a\\xac\\x57\\xb0\\xf0\\x69\\x7e\\x88\\x32\\x24\\x14\\x49\\xbb\\x14\\xa9\\x04\\x19\\x47\\x59\\x9b\\x3f\\x7a\\x2b\\xa4\\xf3\\xb8\\x6a\\xb5\\x4a\\x19\\x26\\x16\\x44\\x84\\xca\\xe5\\x72\\x71\\x03\\xd1\\x82\\x3a\\xa5\\x4e\\xaa\\x1c\\x6f\\xae\\x10\\xfe\\x43\\x0b\\xe9\\xc6\\xc5\\x6f\\xba\\x5b\\xd0\\xe9\\x5e\\x83\\xb8\\xd9\\xbd\\x7a\\xc4\\xbd\\x09\\xd7\\xb8\\x37\\x61\\xae\\xbb\\xe5\\x4d\\x1a\\x40\\x4e\\xba\\xd2\\x56\\x92\\x07\\x57\\xb8\\x2f\\x61\\xe9\\x8a\\x53\\x2b\\xc9\\x6f\\x80\\xe0\\x98\\xfb\\x5b\\x72\\x51\\xd4\\x8d\\x52\\xc1\\x52\\x09\\xae\\xaa\\x4f\\x06\\xc5\\x1c\\x0f\\xa9\\x06\\x90\\x4a\\x38\\x06\\x14\\xa8\\x9c\\x93\\x29\\x4d\\x28\\xb7\\xc8\\xc5\\x58\\xc6\\xd8\\xc8\\xc8\\x88\\xfb\\x5b\\xaa\\x1e\\xfd\\x1b\\x7d\\x99\\x7c\\x27\\xec\\x6f\\xa3\\x5b\\xce\\x96\\x72\\x97\\xa1\\x02\\xe6\\x0a\\xc8\\xa9\\xa9\\x26\\x81\\x32\\x14\\x53\\xb5\\x3e\\x91\\x23\\x1c\\x92\\x7e\\x20\\xc2\\xe0\\xb9\\x3e\\x5c\\x58\\xcc\\x8d\\xe7\\x46\\x93\\x44\\x5c\\x18\\x26\\x11\\xb7\\xc7\\x0b\\xff\\xec\\x13\\x76\\x48\\x84\\x8b\\xb6\\x89\\xfd\\x4b\\x37\\x80\\xc6\\x78\\x83\\xc1\\x28\\x11\\x63\\xf5\\x6a\\x95\\x4a\\xf0\\xfe\\x32\\x53\\x08\\x5b\\xda\\xde\\x54\\x52\\x51\\x76\\xeb\\x63\\x7d\\xed\\x4f\\xed\\x9d\\x39\\x92\\xdb\\xba\\x22\\xb7\\x74\\xa0\\x2e\\xc9\\x30\\x6d\\x73\\xeb\\xfc\\x47\\x56\\x15\\xb6\\xce\\x28\\x2c\\x2b\\x5b\\xff\\x78\\xdf\\x92\\x27\\xd6\\x95\\x8c\\x24\\xd6\\x0e\\x56\\x54\\x2d\\xae\\x31\\xc4\\x36\\x6c\\xe9\\x5c\\xf8\\xc8\\xaa\\x02\\xd7\\xc7\\xe6\\x86\\xf8\\xda\\xba\\xb8\\x29\\x5b\\x3b\\x93\\xeb\\xe3\\xab\\x67\\x60\\xc2\\x8c\\xad\\x78\\xae\\x6d\\x5b\\x42\\xda\\xd6\\xce\\xa6\\xad\\x73\\xd2\\xcd\\x5d\\x27\\x57\\x90\\xda\\x05\\x45\\xd1\\xda\\xac\\xda\\xd4\\xb4\\x52\\x47\\x66\\x74\\x74\\x49\\xfb\\x96\\xb9\\x73\\xb6\\x27\\xa6\\x6f\\xed\\x9c\\x76\\x5b\\xab\\xc5\\xd1\\x77\\xac\\x37\\xbb\\xa7\\x2a\\x59\\xe7\\xa8\\x35\\x67\\x96\\x3b\\xd2\\xa3\\x34\\xa5\\xad\\x9b\\x1f\\x98\\x14\\x1e\\x14\\xda\\x59\\x66\\xad\\xcc\\xc9\\x88\\x0a\\x9c\\x1c\\x14\\xd6\\x51\\x96\\x56\\x91\\x6b\\x15\\x65\\x04\\x63\\xd8\\x37\\xf4\\x21\\xee\\x45\\x08\\x10\\x1c\\x59\\x3e\\x4c\\xec\\xbd\\x6c\\x11\\xc4\\xb9\\x18\\xab\\xe3\\xe2\\xe2\\x62\\x45\\x5d\\x38\\x21\\x92\\x12\\x3f\\x31\\xaa\\x12\\x63\\xb7\\xd9\\xb2\\xb2\\x6c\\x36\\x3b\\x9e\\xf5\\x7d\\xe2\\x5a\\xcc\\x79\\x79\\x66\\x73\\x6e\\xae\\xc9\\xec\\x74\\x9a\\x93\\xf3\\xf2\\x80\\xc2\\xcc\\xb1\\x2f\\xd8\\x46\\x56\\x2b\\xca\\x61\\x0d\\xd4\\xf2\\x55\\xbe\\xda\\x34\\x7f\\x5f\\x6d\\x9a\\x4f\\xb4\\x18\\x80\\x84\\x41\\x07\\x48\\xa5\\xb2\\x16\\x90\\xc9\\xca\\xaa\\x40\\x22\\xf1\\x6b\\x01\\x3f\\xbf\\x12\\xbf\\x6a\\x80\\xca\\x72\\xde\\x29\\xc8\\x1b\\xe8\\x41\\x9f\\x18\\x1b\\x9a\\x18\\x1b\\x20\\x98\\xf7\\x30\\xc9\\x84\\x48\\xba\\x4a\\xa9\\xf7\\x06\\x8f\\x95\\x5e\\x7c\\x19\\x7f\\x83\\xc4\\x49\\x33\\x9d\\x6c\\x62\\xa5\\x3f\\x9d\\xb3\\x71\\x99\\xb3\\xb5\\x30\\x2e\\xae\\xb0\\xd5\\xb9\\x6c\\x53\\x3f\\x16\\x95\\x1b\\x1c\\x86\\xd0\\x50\\x83\\xc3\\x50\\x5e\\x88\\xae\\x9f\\x17\\xaf\\x38\\x31\\x77\\xce\\x89\\x15\\xc5\\xc5\\x2b\\x4e\\xcc\\x99\\x7b\\x62\\x45\\x71\\x63\\x7c\\x71\\xdb\\xb2\\x6d\\x55\\x8b\\x9f\\xdf\\x35\\x65\\xca\\xae\\xe7\\x17\\x2f\\x7e\\x61\\xd7\\x14\\x7c\\x6a\\xe9\\xf2\\xe4\\x9a\\xf9\\xf9\\x8d\\xce\\x05\\xb5\\xc9\\x2b\\x06\\xcb\\x0a\\x35\\x96\\xb2\\x84\\xa6\\xc4\\xd2\\x4c\\x4d\\x61\\x79\\x47\\xfb\\x23\\xb7\\x56\\x56\\xdd\\x7a\\xa6\\xbd\\xed\\xf4\\xfa\\x8a\\x8a\\xf5\\xa7\\xdb\\x6a\\x77\\xad\\xed\\x2e\\x4f\\x68\\x3a\\xf8\\xcb\\xa1\\xa1\\xd7\\xef\\x6a\\x6a\\xba\\xeb\\x75\\x20\\x18\\x45\\x1e\\xa3\\xe7\\xb9\\xcb\\x10\\x0b\\xa9\\x70\\xa1\\x6a\\x58\\x2f\\xf8\\x9e\\x61\\x0a\\x82\\x24\\x01\\x39\\x09\\xf1\\xe5\\x5e\\x26\\x1c\\x61\\x9e\\xdc\\x8b\\xaa\\xbe\\x89\\x8f\\x91\\x21\\x27\\x65\\x04\\x38\\x98\\xeb\\xb3\\x63\\x62\\xdf\\x88\\x27\\x9a\\x2d\\xa9\\x8e\\xf4\\xcc\\x17\\xed\\xcb\\x56\\xfd\\xc4\\x70\\x31\\xd2\\x2a\\x45\\xc6\\x01\\xc7\\x60\\x60\\xc2\\x40\\xb8\\x61\\x58\\x73\\x33\\xaf\\x8c\\xd3\\x03\\x98\\x12\\xf5\\xa9\\x71\\xa9\\x10\\x0b\\xb1\\x46\\x7d\\x5c\\x9c\\x9f\\xc0\\x21\\x82\\x18\\x48\\x3d\\xb6\\xd2\\x62\\xf5\\xb8\\x77\\xc6\\x09\\x79\\xad\\x09\\x69\\x2d\\x15\\x9d\\x14\\x2c\\xd1\\x0c\\x4c\\x5b\\xb6\\xf1\\x91\\x23\\x3b\\xd1\\x99\\x5f\\xd4\\x80\\xc7\\xd0\\xdc\\xb0\\xa4\\xa4\\x60\\x41\\x55\\xd2\\xa4\\x20\\xf7\\xf6\\xc8\\x1c\\x8b\\x51\\xb6\\xa3\\xae\\x85\\x27\\x3f\\x4f\\xb6\\x9a\\x8a\\x70\\xd5\\xbc\\x81\\xe5\\x99\\x05\\xa5\\xd6\\xcc\\x49\\x96\\x19\\xce\\x58\\x7d\\x49\\x6f\\xb1\\xfb\\xa5\\xb4\\x26\\xf3\\x6a\\x79\\x74\\x5c\\x68\\x5f\\x61\\xba\\x39\\x5d\\x7c\\xb6\\xce\\x9b\\xb0\\x8c\\xbe\\x4d\\xf7\\x12\\x23\\x2e\\x1d\\x2b\\x1f\\x7b\\x1f\\xa5\\xb8\\x14\\x0e\\x8e\\xbd\\x0f\\xa1\\xe7\\x01\\x2f\\x8e\\xbd\\x3f\\x6c\\x31\\x9d\\x47\\xef\\x07\\x51\\x1f\\x3e\\x8d\\xcb\\xe9\\x55\\xaa\\x05\\x0e\\x9c\\x9e\\xbc\\xa6\\x4a\\x40\\x62\\xd0\\x73\\x63\\x7a\\x36\\x92\\x57\\x7a\\xb2\\x88\\x37\\x1c\\x6f\\xbe\\x30\\x9e\\x76\\x15\\xd4\\x21\\xbd\\x3a\\xe2\\x5a\\x4d\\x9d\\xb8\\x1c\\x65\\xc7\\x00\\x80\\x41\\xe3\\xd8\\x17\\x6c\\x3d\\xab\\x01\\x05\\x18\\xc1\\x0e\\x3c\\x54\\xf3\\x15\\x99\\x28\\x95\\x61\\xa5\\x04\\x99\\x94\\x48\\x19\\x19\\x00\\x0e\\xfc\\x64\\x9c\\x5f\\x07\\xc8\\xfc\\x51\\xca\\x64\\xd2\\xb6\\x9f\\x8c\\xf5\\x24\\x24\\xf0\\xce\\xec\\xac\\x04\\x7b\\x82\\x7d\\xb2\\x4e\\x99\\x90\\x90\\x10\\x17\\x30\\x1e\\xe4\\xbe\\xc6\\xc3\\xf6\\x1b\\x78\\x9c\\x53\\xea\\xe5\\x9e\\xf3\\x12\\xa9\\x42\\x6f\\x34\\x5a\\x6c\\x36\\x6b\\xa6\\x41\\xaf\\x6f\\x9c\\xb2\\xeb\\x85\\xc5\\x13\\x59\\xb7\\xf1\\x46\\xf6\\xc6\\xda\\x05\\x6f\\xd8\\x9b\\xf2\\x63\\x4b\\x0b\\xef\\xec\\x5f\\xb1\\x76\\x79\\x5a\\x69\\x6e\\x45\\x2f\\x89\\x1a\\x7a\\xfd\\x50\\x63\\xe3\\xa1\\xd7\\x87\\x86\\x5e\\x3f\\xd8\\xd4\\x74\\xf0\\xf5\\xa1\\xf6\\xd3\\xeb\\x2b\\x2b\\xd7\\x9f\\x6e\\x6f\\x3f\\xb3\\xae\\xa2\\x62\\xdd\\x99\\xbb\\x5c\\x64\\xf5\\xe4\\xb4\\xf2\\xb4\\xac\\x5a\\x95\\xfb\\x23\\x57\\x1b\\xa6\\x24\\xd9\\x93\\x05\\x6a\\x22\\xa7\\xa3\\xaf\\x5d\\xeb\\x4d\\xf3\\x20\\x84\\xf1\\x7c\\xb9\\xd8\\x1e\\xf7\\x9a\\xcb\\x46\\x5e\\xe5\\x74\\xbb\\x44\\x5d\\x34\\x8f\\x3e\\x47\\xdb\\xb9\\xcb\\x22\\xcd\\x26\\xc4\\xbe\\xbc\\x3d\\xa9\\x40\\x48\\xbe\\x40\\x8f\\x04\\x0f\\x9c\\xfc\\x7f\\x90\\x00\\xe7\\x25\\x96\\xcc\\xce\\xb4\\xb4\\x14\\x27\\x24\\x14\\xb7\\x58\\x32\\x67\\x97\\x24\\xae\\x51\\xea\\xd3\\x22\\x23\\x53\\xf4\\x0a\\x85\\x3e\\x25\\x32\\x32\\x4d\\xaf\\x64\\xcf\\x59\\xe7\\x96\\x25\\x26\\x96\\xcd\\xb5\\x5a\\xe7\\x94\\x24\\x24\\x94\\xcc\\xb6\\x45\\xa6\\x0a\\x67\\x53\\x23\\xa3\\xd2\\xe3\\xc2\\xc2\\xe2\\xd2\\xc5\\x3c\\x30\\x20\\x4b\\x63\\xff\\x80\\x00\\x08\\x06\\x13\\x9f\\x30\\xb1\\xf7\\x10\\x88\\x94\\x23\\x02\\x08\\x92\\x34\\x7b\\xea\\xb7\\x7d\\x2d\\xe0\\x32\\x59\\xd4\\x75\\x6d\\x88\\xc2\\x4a\\xc9\\x8b\\xb8\\xc0\\xbd\\xff\\x21\\xf7\\x3a\\xbc\\xf5\\x21\\x2c\\x18\\x7d\\x9a\\x16\\xd1\\xc6\\x43\\xee\\x76\\x3c\\x72\\x08\\xef\\xb9\\x1a\\xe4\\xc9\\xb5\\xe7\\x92\\xbb\\xe9\\x03\\xdc\\x53\\xa0\\x81\\x03\\x17\\x3c\\xed\\x6b\\x1e\\xd6\\x8c\\x18\\xef\\x62\\x63\\x02\\x6b\\xcd\\xf6\\x35\\x88\\x5d\\xcb\\xc0\\xff\\xa7\\x11\\xc5\\xe3\\x09\\xf9\\xff\\x36\\xc7\\x7f\\xbb\\xbc\\xb9\\xb9\\xf9\\xc9\\x88\\xb8\\x50\\xa3\\xb7\\x14\\xd5\\x8a\\x1e\\x56\\x8a\\x95\\x48\\xaf\\x6b\\x3a\\x93\\xea\\xe8\\x03\\xae\\x53\\xa8\\x2d\\xc8\\x2a\\xcc\\xae\\x2c\\xc3\\x23\\x49\\xb5\\x8b\\x4a\\x0a\\xe7\\x57\\x26\\x44\\x5a\\xca\\x4c\\xe7\\x70\\x17\\xb9\\x7b\\x21\\x06\\xe7\\x36\\xea\\xd3\\xf3\\xaa\\xb2\\x6d\\xad\\x65\\x89\\x3a\\x67\\xa3\\x3d\\xa1\\xac\\xa4\\xcc\\xb8\\x47\\xf4\\x7f\\xc8\\x2e\\x7a\\x1f\\x77\\x09\\x52\\x61\\xd9\\x85\\xc9\\x62\\x6b\\x5c\\xd5\\x70\\x72\\x7d\\x13\\x9f\\x7c\\x53\\x87\\x9c\\x04\\x98\\x84\\xcd\\x1d\\xbf\\xf7\\x2a\\x90\\x4a\\x3d\\x22\\x23\\xad\\x8e\\xe4\\x93\\xfe\\x63\\x43\\xdd\\x0d\\x97\\x61\\x75\\x33\\x1f\\x10\\x17\\x1b\\x66\\x8e\\x0b\\x8d\\xd3\\x8a\\x9b\\x65\\xc9\\xb8\\x79\\x55\\x12\\xe9\\x35\\x50\\x20\\x76\\x83\\xd9\\x8c\\x82\\x0c\\x91\\xa0\\x69\\xa5\\xd5\\x85\\x45\\x8e\\x4a\\xbc\\xd7\\x5c\\xd3\\x9b\\xcb\\x2f\\xac\\x35\\x95\\x15\\x1c\\x48\\x9d\\x3a\\xc0\\x3b\\x16\\x4c\\xb5\\x1c\\xc1\\xba\\x82\\xe2\\x6a\\x6c\\x2c\\x9f\\xc6\\xba\\xb2\\x2d\\xe6\\xec\\xb4\\x64\\xcb\\x14\\x47\\x4c\\xb4\\x63\\x9a\\x3d\\x6b\\x66\\x78\\xd2\\x1d\\x59\\x33\\xb2\\x63\\x22\\x1d\\x4d\\x79\\x29\\x39\\xb9\\x96\\xfc\\x4c\\x61\\xed\\x87\\xd9\\xb3\\x34\\xe3\\xfa\\xfa\\x8a\\x6b\\x85\\x25\\xe3\\xf5\\x15\\xde\\x43\\x4e\\xb8\\x56\\x5f\\x71\\xdd\\xa8\\x90\\x9b\\x47\\x85\\xde\\x3c\\x4a\\x75\\xf3\\x28\\xf5\\xcd\\xa3\\xc2\\x6f\\x1e\\x15\\x79\\xf3\\xa8\\xa4\\x1b\\x47\\xf1\\x7e\\x20\\x96\\xf0\\x20\\xfe\\x44\\x7d\\x85\\x05\\xf5\\x64\\xca\\x87\\xee\\x7f\\xee\\xe0\\x5e\\x71\\x7f\\x27\\xea\\xdf\\x9f\\xb9\\x5b\\x59\\x08\\xcb\\x06\\x15\\xcc\\xe6\\x03\\xfc\\x10\\x50\\x11\\x24\\xba\\x4b\\x9e\\xdf\\x9f\\x2c\\xe1\\x88\\x88\\xc0\\x01\\x7c\\xcd\\xe8\\xc0\\x58\\x01\\xab\\x8e\\xe4\\xa3\\x7c\\xa7\\xc4\\x83\\xde\\x26\\xa7\\x12\\xef\\xe9\\x66\\x3e\\x08\\x00\\x54\\xa0\\x0a\\xd5\\xcb\\x15\\xf1\\x62\\x49\\xfb\\xc4\\x38\\x93\\x98\\x69\\x36\\xca\\xf5\\x72\\x1c\\xd2\\xe6\\x34\\xa4\\x2d\\x58\\x1b\\x7d\\xe9\\x41\\xbf\\xe4\\x5b\\x67\\xee\\x9d\\x32\\xc2\\xb2\\x5d\\x7b\\x3b\\xd7\\x57\\x46\\x4d\\x29\\xa3\\x31\\x57\\x5f\\x5a\\x5a\\x50\\x56\\xe1\\x36\\x71\\xef\\x7a\\x7c\\xbb\\x37\\x00\\xe8\\x6f\\xc4\\x7a\\x4b\\x41\\x2b\\x79\\xfb\\x76\\x73\\x7d\\x21\\x22\\x4f\\x79\\x6b\\x82\\x8e\\xc9\\x54\\x26\\x9d\\x7c\\xbc\\xc0\\x43\\x27\\xa7\\xaa\\xc6\\x65\\x4f\\xde\\x52\\x50\\x70\\xcb\\x93\\xcb\\x50\\x4e\\x64\\xa5\\x6b\\xce\\x74\\x77\\x9d\\x5e\\x5b\\xf6\\x63\\xbd\\xb0\\xef\\xdf\\x93\\x05\\xe4\\x4f\\xb4\\x02\\x02\\xc4\\x5a\\x1c\\xc1\\xf4\\x34\\x7a\\x67\\x06\\xac\\x8b\\x8b\\x15\\xa9\\x36\\x11\\x6a\\x7d\\x2f\\xf8\\x9d\\x82\\xff\\x49\\xfe\\x90\\xc6\\xf3\\x69\\xa9\\xf9\\xf9\\x9e\\xd8\\xc1\\xeb\\xee\\x1a\\x4a\\x01\\x40\\x09\\x06\\x5e\\xef\\x4d\\x66\\x50\\xe1\\x8f\\xb0\\x13\\x30\\x0b\\x00\\x2a\\xc4\\xca\\x37\\x25\\x28\\xe5\\x93\\xc5\\x5b\\x14\\x5b\\xe1\\x24\\x52\\xa3\\x0f\\xe3\\xda\\xc9\\xb2\\x49\\xd1\\x76\\x53\\xc4\\x91\\x3d\\xd2\\xd8\\x5c\\x73\\x64\\x58\\x62\\x6e\\x42\\x4c\\x26\\x37\\x39\\x21\\xcf\\xd4\\x36\\x80\\x0b\\x02\\x26\\xc7\\x47\\x86\\xc7\\x2a\\x27\\xd1\\x2d\\x9e\\xdf\\xdb\\x40\\xee\\x22\\xdf\\x71\\x67\\x41\\x02\\xa1\\x7c\\xf0\\xb5\\xde\\xdc\\x79\\x62\\x67\\x2e\\xea\\xe5\\x52\\x6b\\xbc\\x85\\x7c\\x77\\xef\\xdb\\xd8\\x1e\\x4a\\xee\\x22\\xcd\\x8e\\xf5\\x43\\x1e\\x9c\\x19\\x42\\x1e\\xa5\\x3f\\xe3\\x2e\\x8b\\x79\\x8d\\x28\\x3e\\x1c\\x88\\x60\\x45\\xe7\\x8e\\xab\\x78\\x3a\\x9e\\xd4\\xf8\\x5f\\x9e\\xbb\\x80\\x21\\x69\\xcd\\xb7\\xd4\\xd5\\xad\\x6b\\x4e\\x4d\\x6d\\xba\\xa5\\xae\\x7e\\x5d\\x73\\xda\\x09\\x95\\xb9\\x38\\x25\\xb9\\x28\\x59\\xad\\x36\\x17\\x99\\xcd\\x45\\x66\\x15\\x1b\\xaa\\x58\\xdd\\x9c\\x91\\xd1\\xbc\\xba\\x62\\xa8\\xdc\\xf3\\xa1\\x3c\\xa9\\x2c\\x53\\xa3\\xc9\\x2c\\x4b\\x1a\\x4a\\x2c\\xb3\\x6a\\x34\\xd6\\xb2\\x44\\x01\\x37\\xfc\\x1d\\x0e\\x51\\x37\\xbd\\x40\\x8c\\x38\\x34\\xd6\\x25\\x28\\x0c\\x1c\\x82\\x67\\xc0\\xf3\\xbc\\xbe\\x34\\x00\\xb6\\x93\\x7b\\x02\\x52\\xf1\\xe7\\xee\\xef\\xc9\\xd7\\x8e\\xc3\\x60\\xc0\\x65\\xdf\\xc9\\x30\\x18\\x2f\\x63\\x21\\x80\\xe3\\x30\\xc8\\x05\\x74\\x41\\xbe\\xf6\\xa0\\x8b\\x61\\x99\\xa7\\x37\\x0d\\xe2\\x00\\xd8\\x01\\xee\\x51\\x62\\xc0\\x65\\x97\\x64\\xe2\\xd5\\x57\\xc8\\x17\\x8e\\xc3\\x18\\x8c\\x07\\xb0\\x6e\\xfc\\x3a\\x71\\xb8\\x00\\x4a\\xc8\\x17\\xde\\xeb\\xe2\\x01\\xd8\\x59\\xee\\xa2\\x70\\x9d\\x43\\x0a\\xa9\\x78\\x19\\x3b\\x84\\xd1\\x18\\x8c\\x2f\\x8c\\x05\\x92\\xcf\\x7c\\xd7\\x49\\x85\\xeb\\x28\\x5e\\x24\\x9f\\x89\\x60\\x86\\xc0\\x2f\\xdd\\x2b\\x18\\xb0\\x1a\\xb1\\x5f\\xac\\xcb\\x23\\x9a\\xf1\\x12\\xa4\\x1c\\x72\\x74\\x62\\x7d\\x8a\\xb7\\x4a\\x49\\xd8\\x8e\\x59\\xbe\\xe4\\x44\\xec\\x4d\\xe3\\x84\\x09\\x49\\xeb\\xf8\\x70\\xae\\xfa\\x27\\x1b\\xba\\x82\\xa8\\xf8\\xb8\\x06\\x4f\\x12\\xc6\\x72\\xad\\xae\\xc9\\xee\\xa4\\xd6\\x89\\x0d\\x5d\\xe4\\x4d\\xf4\\xd3\\xe4\\xa4\\xc7\\x14\\xda\\xf5\\x4b\\xfb\\x4c\\x0d\\xf9\\x86\\x11\\xcc\\xef\\xdf\\xdf\\xd8\\x76\\xd7\\x3c\\x7b\\x6a\\x45\\x8b\\x39\\x5a\\x1b\\x4c\\x35\\xd9\\x0e\\x47\\xb6\\xf0\\x26\\xc7\\xca\\x66\\x95\\x17\\x99\\xf5\\x55\\x53\\x66\\x5a\\x6e\\x68\\xe8\\x5a\\xbf\\xb8\\xc3\\x14\\x9d\\x61\\xcd\\x35\\x62\\x4e\\x5a\\x41\\x41\\x5a\\x8a\\xc0\\xfd\\x04\\xb4\\x5e\\x9f\\x36\\x18\\x42\\x21\\x87\\xcf\\x0a\\x15\\x9c\\xbe\\x4a\\xe0\\x40\\x22\\xe3\\x24\\x6d\\x20\\x03\\x01\\x6f\\x4d\\xec\\xd9\\x90\\x4a\\xc5\\xc7\\xca\\x8c\\x37\\x10\\x08\\xb6\\xda\\x4f\\x16\\x6d\\xd2\\xe9\\xa8\\x8e\\xea\\x05\\x8b\\xad\\x10\\xdf\\x68\\xa1\\xec\\xb4\\xeb\\x4b\\x74\\xbf\\xba\\xfa\\x25\\x92\\x46\\x8a\\xdd\\xe7\\x08\\xa6\\xb8\\x7f\\x87\\xd8\\x35\\xfa\\x8f\\x1f\\x08\\xb6\\xb9\\xef\\xe3\\x86\\x0f\\xb9\\x13\\x0f\\xba\\xbe\\xc4\\x15\\xe4\\x79\\x8f\\x8e\\xb8\\x00\\xbf\\x62\\xd9\\xac\\x03\\x02\\x40\\xf2\\x98\\x1f\\xc5\\x34\\x93\\x02\\xd1\\x8e\\xa8\\x46\\x94\\x22\\x5e\\xc0\\x4a\\xf7\\xc8\\x72\\x2c\\xc7\\x8a\\xe5\\xee\\x8b\\x58\\xb5\\xdc\\xfd\\xb8\\xfb\\x02\\x56\\x60\\x03\\xd6\\xae\\x76\\x9f\\xc7\\xba\\xd5\\xee\\x47\\xdd\\xe7\\x56\\x63\\x83\\xfb\\x9c\\xa7\\x37\\xa9\\x6c\\xec\\x04\\xdb\\xc1\\x5d\\x81\\x78\\xc8\\x84\\x22\\x70\\xf2\\x39\\xd1\\xc8\\x88\\x23\\x2b\\x29\\x51\\x1b\\x28\\xe1\\x98\\xbf\\xe8\\x10\\x78\\x54\\x2f\\xa5\\x4e\\x4f\\xb5\\x8e\\xa7\\x0f\\xef\\x5a\\xb5\\x94\\xd9\\xac\\x30\\x2b\\x0c\\x62\\x16\\x2d\\x88\\xf3\\x14\\x4a\\x29\\x52\\xa8\\x55\\x2c\\xb6\\x56\\xa9\\xed\\x16\\xaa\\xa1\\x6a\\x4e\\xa5\\x52\\x8b\\x4d\\xfc\\x41\\x4c\\xaa\\x33\\x18\\x8c\\x62\\x23\\xbf\\x93\\xd9\\x59\\xb3\\xb7\\xa4\\xbd\\xe5\\x0e\\x47\\xef\\x1d\\x47\\x63\\x33\\x74\\x21\\xde\\xaa\\xf6\\xee\\x7b\\x73\\x3a\\xee\\x38\\x16\\x95\\x18\\x19\\x88\\xa3\\xcf\\xa2\\x3a\\x1a\\xbf\\x8d\\x5f\\x54\\xeb\\xad\\x6d\\x27\\xdb\\x30\\x58\\xe1\\x56\\xc6\\x77\\x16\\xde\\x58\\xde\\x9e\\x36\\x8c\\x41\\xe9\\x03\\x2b\\xd6\\xe6\\x79\\x4b\\xdc\\x4b\\x72\\x1e\\x72\\x7f\\x93\\x3a\\x6f\\xd1\\x60\\xd6\\x03\\x25\\x77\\x97\\xd2\\x2a\\x6b\\x81\\xa7\\xce\\x3d\\xfb\\x56\\xe7\\xe8\\xf3\\x89\\xa9\\xd7\\xea\\xdc\\x1f\\x02\\x60\\x73\\xb8\\x61\\x08\\x81\\x68\\xc8\\xe4\\xd3\\x05\\xe1\\xe4\\x18\\x70\\x82\\x9b\\x88\\x84\\x61\\x87\\x44\\x6c\\x09\\xf1\\x75\\xe1\\x00\\xc8\\xa3\\xe5\\x51\\x61\\xa1\\x10\\x02\\x21\\xf2\\x04\\x9d\\x4c\\x60\\x53\\xb9\\xce\\x07\\x11\\x05\\x30\\xa6\\x90\\xeb\\x7c\\x08\\x11\\xdb\\x50\\x39\\x74\\x61\\x6d\\x41\\xc1\\xda\\x0b\\x43\\xee\\x2f\\x46\\x46\\x50\\x59\\xbb\\xa4\\x2a\\x2e\\xae\\x72\\xb0\\x96\\x1b\\x76\\xbf\\x97\\xbf\\xf8\\x9e\\xd9\\xb3\\xef\\x59\\x9c\\xef\\xfe\\x05\\x37\\xec\\x2e\\x72\\xfd\\xc9\\x5c\\xd5\\x6e\\xb5\\x75\\xd4\\x98\\x01\\xe1\\xd4\\xd8\\x17\\xac\\x5a\\xa2\\x82\\x22\\x68\\xe0\\xfd\\xf5\\x48\\x59\\xac\\xe0\\xbb\\x56\\x7a\\x2c\\x69\\x18\\x20\\x30\\x8a\\xcc\\xf3\\x04\\x1a\\xe2\\xab\\x06\\x98\\x3c\\x7e\\x58\\xac\\x07\\xf0\\x96\\xae\\x94\\x10\\x01\\x86\\x14\\xe4\\x27\\x1a\\x35\\x51\\xf1\\x21\\x9c\\xa0\\x9a\\xf5\\xf2\\x09\\x98\\x4a\\x19\\xa6\\x61\\xca\\x1b\\x6b\\x58\\x32\\x53\\x98\\x35\\xd3\\xc9\\xac\\xde\\x34\\x28\\xb6\\x5d\\xcc\\x99\\xb7\\x7b\\x7a\\xd5\\x86\\xf6\\xac\\x84\\x34\\xa3\\xb9\\xb8\\xbe\\xd8\\x6c\\x99\\xb5\\xae\\x3a\\xb1\\xa9\\xa1\\x38\\x2c\\x29\\xd4\\x9a\\x5f\\x12\\x9b\\x5a\\x9c\\xac\\x14\\x8e\\xa7\\x84\\xc5\\xc4\\xc5\\x84\\x69\\xd2\\xf3\\xb5\\x1d\\xcb\\x91\\xe5\\x0f\\x0c\\xaf\\xc8\\x4f\\x9c\\xb6\\x6e\\x46\\xdd\\x82\\x69\\x35\\x19\\x29\\x95\\xa5\\xa5\\x53\\x3a\\x0b\\xa6\\xdf\\x32\\x2d\\x29\\x40\\x11\\x11\\x72\\x77\\x40\\xa4\\x3a\\x38\\x32\\x8d\\x37\\xa4\\xd6\\x94\\x94\\x4d\\xed\\x29\\x36\\x16\\xe6\\xd8\\x73\\xf2\\x0d\\x19\\x55\\x96\\x88\\xfb\\xef\\x16\\xf8\\xd3\\x34\\x76\\x85\\x9d\\x12\\xf3\\x70\\xe5\\xd0\\x08\\xf3\\xf9\\x1e\\x1d\\x52\\xae\\xda\\x46\\x64\\x52\\x3b\\x25\\x20\\xa3\\x95\\xc0\\x28\\xa1\\x8c\\x0c\\xf8\\x23\\x99\\x84\\x52\\x19\\x91\\x76\\x04\\xf9\\x11\\x4a\\xb9\\x16\\x09\\x72\\x5c\\x59\\x55\\x70\\x00\\x91\\xc9\\xa0\\x05\\x03\\x89\\xa7\\x5b\\xbb\\x22\\x2f\\x17\\xa1\\xae\\xa6\\xa2\\xb1\\xb2\\xb1\\xa8\\x30\\xb7\\x3c\\xaf\\x3c\\x23\\xcd\\x94\\x14\\xaf\\x8f\\x89\\x0e\\x9f\\xac\\x0a\\x93\\x07\\xfb\\x49\\x21\\x07\\x73\\x42\\xc4\\xba\\xab\\x6b\\x35\\x94\\x82\\xa3\\x29\\x42\\x36\\x6f\\x24\\x59\\xe5\\x4b\\x11\\x2b\\x75\\xca\\x09\\x69\\x30\\x4f\\x17\\xbc\\x4e\\x20\\x18\\x66\\xd8\\xec\\xd4\\x17\\xbc\\xa1\\xeb\\x7b\\xf6\\xa5\\x28\\x2c\\x85\\xf5\\x69\\x65\\x0b\\x2b\\x8d\\xbf\\x79\\x31\\xdf\\x59\\x9c\\x5f\\xfb\\x98\\x79\\xea\\xb2\\xf2\\xa9\\x6b\\x8d\\xa6\\xe5\\x95\\x0d\\xab\\xa7\\x99\\xdc\\xd2\\xc8\\x9c\\x59\\x85\\x86\\x9c\\x54\\x43\\x48\\x4a\\x60\\x4a\\xc9\\xec\\xd9\\xe6\\x82\\x24\\x25\\x62\\x45\\x58\\x42\\xb6\\xeb\\x9b\\xf8\\xea\\x28\\xcc\\xb3\\x4e\\xcb\\x8e\\x51\\xc4\\xdb\\xc3\\xaa\\xca\\xa2\\xad\\x09\\x93\\x93\\xeb\\x16\\x97\\x3c\\x70\\x71\\x5f\\x75\\xcb\\xd4\\x2a\\x59\\xc9\\xa2\\x3a\\x93\\xcd\\x6a\\xc9\\xb2\\xb6\\xdd\\x3e\\xed\\xf3\\x19\\x85\\xbd\\xe5\\xc6\\x20\\xe5\\xe4\\x80\\xad\\xfe\\xd1\\x11\\x0a\\xfa\\xaa\\xb1\\xb0\\x29\\xad\\x64\\xbd\\xbe\\xc0\\x12\\x33\\xfa\\x4b\\x53\\x34\\xc6\\xeb\\x73\\x6a\\x4c\\x31\\xf6\\xc4\\xc9\\x40\\xa0\\x62\\xec\\x0a\\x4b\\xe2\\xfe\\x0e\\xf1\\x90\\x07\\xe9\\x7c\\x8a\\x4a\\x4c\\xb9\\xc5\\xc7\\xe9\\xb5\\x31\\x51\\x91\\x11\\xe1\\x7e\\x58\\x0e\\x08\\x84\\x22\\xe9\\x98\\xd0\\x57\\xe1\\xb0\\xa7\\x9a\\x13\\x12\\x04\\xe3\\x8e\\xaa\\x50\\xe5\\xc4\\x3e\\x77\\x81\\x2c\\x06\\x83\\x91\\x33\\xda\\x0d\\x06\\xa3\\x5d\\xa5\\x52\\xdb\\xd5\\x34\\xd3\\x60\\x4d\\xa1\\x13\\x3b\\xdc\\xad\\xb4\\xa6\\x77\\xa8\\x6a\\xcb\\x93\\x7d\\x0b\\x2f\\x6c\\x2c\\xaf\\xd8\\xf8\\xd8\\xbc\\xa6\\xbb\\x1c\\xea\\x99\\x4e\\xf7\\x77\\x15\\x5f\\x27\\x36\\xa6\\x38\\xea\\x77\\xe5\\x7f\\x52\\x71\\x0e\\xe5\\x8e\\xfa\\x1e\\x67\\xc9\\x40\\x5d\\x52\\x52\\xdd\\x60\\x65\\xf9\\x60\\x43\\x32\\x27\\x59\\xe6\\x7e\\xf2\\x57\\xce\\x6d\\xef\\xdd\\xd5\\x50\\xb5\\xe9\\xd1\\xee\\xc1\\x9f\\x6d\\xa9\\x28\\xce\\xea\\x7f\\x28\\xff\\x50\\xc7\\xed\\x91\\x89\\x21\\xf7\\xa9\\x2a\\x2c\\x9b\\x3a\\x47\\x47\\x03\\x27\\x07\\x46\\x5a\\x8c\\x6a\\x47\\xfb\\x86\\x0a\\xe7\\xca\\xb9\\x39\\xfc\\xe0\\x09\\xf1\\xc1\\x06\\x30\\x08\\xe7\\x59\\x33\\x7b\\x5c\\x8c\\xd3\\x8b\\x9d\\x7e\\xbe\\x4a\\x36\\x40\\xb1\\x7c\\xa5\\x0d\\x18\\xc7\\xb1\\x46\\x6f\\x6b\\x31\\xe3\\xea\\xe2\\xe2\\xe2\\xf4\\xbe\\x36\\x0b\\xeb\\x75\\xc5\\x3d\\x13\\xed\\x0d\\x6b\\x1e\\x8d\\xa0\\x9f\\xb8\\x8e\\xfb\\xc2\\x51\\x64\\xfc\\x43\\xd3\\x45\\x74\\x98\\x9d\\x4e\\xb3\\x39\\x37\\x77\\xd4\\x7d\\x2d\\x36\\xb5\\x6a\\x6c\\x25\\x9b\\xc2\\x46\\x20\\x1a\\x92\\xc0\\x26\\xe8\\xda\\x00\\x19\\x61\\x90\\x9a\\x12\\xab\\x63\\x1c\\x8b\\x50\\x13\\xe2\\xd5\\xb5\\x4b\\x80\\x12\\x3a\\xe8\\xeb\\x9d\\x2b\\x9b\\xf8\\x4c\\x86\\x24\\x93\\x22\\xf1\\xc6\\xec\\xbd\\x54\\xa5\\xf2\\x6e\\x84\\xa0\\x7a\\xed\\x06\\x83\\xd5\\x12\\xe6\\xd3\\xb6\\x44\\xa9\\xcb\\x14\\xb4\\xad\\x48\\x7b\\xb1\\x3e\\xc3\\xd1\\x65\\xae\\x58\\xdd\\x35\\xa7\\x4b\\xf8\\x6c\\x9b\\x6b\\xaa\\x5c\\xdd\\xd5\\x31\\x7f\\x24\\x2d\\x0d\\x67\\x44\\x17\\x18\\xc4\\x12\\x8d\\xee\\x64\\xb3\\xfb\\x8c\\xbd\\xb8\\x7a\\xd0\\x57\\xae\\xa1\\x0c\\xdb\\xf7\\x7a\\xd5\\xe7\\xbb\\xc5\\x8a\\x0d\\x85\\xfc\\xe0\\xeb\\x15\\x5f\\xed\\x6b\\xb9\\xd7\\x41\\x9e\\x08\\x96\\x17\\xf4\\xef\\xa9\\x9b\\x7e\\xc8\\xe1\\xaa\\x8b\\xe0\\xfb\\xf7\\xd4\\x5f\\xab\\xdb\\x90\\xa8\\xc4\\xba\\x8d\\x6c\\xde\\x1e\\x88\\x8c\\x4e\\xa8\\xdb\\x00\\x42\\xc9\\x92\\xff\\x5c\\x92\\xf1\\xd3\\xf5\\x18\\xf2\\xff\\x58\\x8f\\x61\\x5b\\x70\\x4f\\x77\\xe7\\xe1\\xac\\x91\\x11\\xfb\\xa1\\xce\\xde\\x23\\xf3\\x6d\\x62\\xc9\\x66\\xcb\\x9a\\x78\\xc3\\xaa\\x39\\xd5\\xfd\\xa5\\xb1\\x9e\\x72\\x8c\\x02\\xa7\\xeb\\x5f\\xd2\\x27\\x5c\\x8f\\xf3\\xc5\\xe3\\xf5\\x18\\x85\\xae\\x1f\\x0b\\xa6\\x5c\\xab\\xc7\\x98\\x0c\\xc0\\x7e\\xc6\\x0d\\x83\\x02\\xd4\\x60\\xe3\\x2d\\x32\\x09\\x81\\x00\\x8e\\xa0\\xbf\\xe0\\x79\\xfb\\x03\\x25\\xfe\\xb4\\xcd\\x0f\\xa5\\x52\\x4f\\x13\\x5f\\x1e\\xa9\\xbe\\xe1\\x29\\x6c\\x93\\x64\\xd1\\xe3\\x8f\\x13\\x91\\xeb\\xe5\\x7a\\xab\\xc5\\xd3\\x22\\x28\\x3e\\x69\\x22\\x77\\xfd\\xfa\\x73\\xae\\xd3\\x67\\x97\\x2c\\x39\\x4b\\xa6\\x9f\\x1b\\x1d\\x25\\xd3\\x5d\\xa7\\xd9\\xae\\x5d\\xa3\\x40\\x8e\\xb9\\xe6\\x32\\xd8\\x85\\x3a\\xf7\\x07\\xa8\\x73\\xdd\\xf1\\xfc\\x78\\xdd\\x95\\x98\\xcf\\x14\\x7b\\x11\\x7f\\xaa\\x16\\xee\\xbf\\x57\\x56\\xf9\\x6a\\xde\\x80\\xc0\\xfa\\xb1\\x2f\\xc5\\x9e\\x39\\x0a\\xe1\\x50\\xe7\\xf1\\xaa\\x22\\x80\\x21\\x87\\x8c\\x1b\\xf0\\xb4\\xf2\\x89\\xc4\\x1f\\xaf\\x22\\xd3\\xdc\\x70\\x52\\xb4\\x1e\\xd7\\xaa\\x1b\\x9a\\x79\\xbf\\xd8\\xb0\\xf8\\x6b\\x7d\\x90\\x16\\xdd\\x78\\xcd\\xa3\\xc0\\x6d\\xe2\\x7e\\xa0\\x63\\x64\\x84\\xcc\\x1c\\x49\\x9c\\x7e\\x6b\\x63\\xc5\\xea\\xa6\\x8c\\x4b\\xf5\\xc5\\x29\\xb9\\x71\\xc1\\xdc\\xf0\\xd5\\x3b\\x1b\\xd6\\x35\\xa5\\x24\\x4e\\x5b\\xdf\\xd8\\x31\\x33\\x32\\xbd\\x2c\\x59\\x8c\\x59\\xd5\\xbb\\x6b\\x59\\x1d\\xf7\\x2c\\xa8\\x41\\x07\\x66\\x70\\x40\\x1d\\x5f\\x1d\\x80\\x44\\xe2\\xa9\\xc5\\x9b\\x84\\xfe\\xfe\\x7e\\x2d\\x01\\xe8\\xe7\\x57\\x5c\\x25\\x43\\x4a\\xa1\\xd9\\x93\\x5e\\x96\\x22\\xc7\\x79\\x02\\x20\\x13\\x4b\\xf3\\xb2\\x6c\\x02\\x62\\x34\\xc4\\x89\\xbb\\xa1\\x2c\\xb6\\x86\\x04\\x8a\\x8f\\xc5\\xbb\\xa9\\x4a\\x4f\\x1f\\xaf\\x93\\x5b\\x94\\x9e\\xc6\\x87\\xff\\x10\\x65\\x26\\x67\\xf1\\xe0\\xb5\\xda\\x3d\\x5b\\x9a\\x58\\xbb\\xf7\\x27\\xd7\\x83\\x78\\xff\\x07\\xae\\x15\\x5f\\x7f\\x4e\\xa3\\x7c\\x35\\x7c\\xae\\x67\\xae\\xd5\\x19\\x5e\\xfd\\x79\\xef\\x7d\\xfd\\x59\\x52\\xff\\x23\\x94\\xa3\\x18\\x9e\\xd7\\x53\\x43\\x8f\\x1c\\xf3\\xd6\\x1e\\x5e\\xf2\\x16\\xf5\\x25\\xfb\\x8a\\xfb\\x44\\xfc\\x76\\xc9\\x9b\\x9f\\xbf\\xa9\\xbf\\x32\\xff\\xbf\\xf7\\x57\\xfa\\x1d\\x18\\x19\\xe9\\xc7\\x3b\\x3e\\x70\\x67\\xe1\\x95\\xcf\\xf1\\xfd\\xcd\\xee\\x87\\x58\\xb6\\xeb\\xcb\\x15\\x78\\xb7\\x5b\\xe7\\x3a\\x09\\x08\\xd9\\x00\\xac\\x4a\\xec\\x67\\x36\\xf0\\xfa\\x00\\x7f\\x3f\\x19\\x25\\x9e\\x87\\x7d\\x57\\xde\\xd8\\x6c\\xa9\\x94\\x87\\x89\\xf1\\xc4\\x78\\x25\\x27\\xd6\\x72\\x48\\xad\\x76\\xb9\\x05\\x37\\xa2\\xc4\\xfd\\x23\\x79\\x79\\x74\\xdd\\xee\\xdd\\x23\\xb4\\x66\\xea\\xf1\\xa9\\xae\\x6f\\xef\\x25\\x03\\xe6\\xe3\\x66\\x72\\xe4\\xba\\xba\\x40\\x39\\xd4\\xf2\\x81\\x81\\x93\\x02\\xfc\\x3d\\xf3\\xd3\\x6b\\x25\\xa5\\x94\\xb2\\x66\\xb1\\xae\\x74\\x62\\x92\\x2e\\x92\\x0f\\x03\\x06\\x62\\x16\\x6f\\xe2\\xe1\\xe6\\x27\\xe5\\x4a\\xb9\\x3c\\x4c\\x8c\\xf5\\xc4\\x4b\\x39\\x2f\\x3b\\x73\\xd6\\x78\\xb9\\xce\\xaa\\x23\\xff\\xc4\\x58\\x74\\x7f\\xe0\\x65\\xec\\x47\\x70\\xaa\\x7b\\x37\\x49\\xa4\\xaf\\x6f\\x3a\\xbe\\xc9\\x35\\x74\\xf4\\x28\\xb1\\x1d\\x3e\\x7e\\x18\\x3f\\x3d\\x06\\x08\\xe7\\xdc\\x55\\x2c\\x9a\\x1b\\x86\\x08\\xb0\\xf3\\x99\\xe1\\x61\\x0a\\xea\\xa9\\xe7\\x14\\xbc\\x7c\\x5a\\xc9\\x31\\xe2\\x43\\x6d\\x9e\\x8a\\xa1\\x71\\x17\\x35\\x02\\x22\\xe4\\x4a\\x63\\xbc\\xa7\\x49\\x74\\x22\\xa3\\xd8\\xac\\x56\\x14\\x53\\x40\\x72\\x16\\x85\\xa6\\x86\\x65\\xd5\\x1a\\x4b\\x74\\x90\\x2c\\x32\\x3a\\x42\\x52\\x50\\xe4\\xe6\\x46\\x46\\xf0\\x2a\\x37\\xfc\\xc3\\xbf\\xa7\\xdc\\x3a\\x33\\x55\\xe6\\x7f\\x27\\xe5\\x28\\xe9\\x6b\\x6c\\x61\\xa6\\xab\\x6f\\x70\\xc3\\x57\\x7f\\xcf\\xbc\\xcf\\x01\\xb9\\xe8\\xae\\x62\\x6a\\x31\\x07\\x31\\x8f\\x0f\\xd6\\x22\\x61\\x54\\x8e\\x84\\x85\\x20\\x12\\x5f\\xe5\\x9a\\x27\\xde\\x28\\xe1\\x88\\xb7\\x48\\xeb\\x3a\\x7e\\x8e\\xe4\\xb5\\x02\\x76\\xc9\\xaf\\x9a\\x10\\xa4\\xbd\\x61\\x88\\x27\\xf6\\xa0\\x07\\xbd\\x22\\xde\\x68\\xd4\\x8b\\xb1\\x07\\x1f\\x24\\x91\\x87\\x49\\xa4\\xd7\\x16\\x23\\xcf\\xf4\\x95\\x3f\\xe1\\x9c\\x49\\xb6\\xfb\\xe6\\xcf\\xd8\\x3a\\x27\\xe3\\xd4\\x61\\x8d\\x4d\\x13\\xe4\\x17\\xa5\\x89\\x90\\x16\\x95\\x2d\\x5b\\x36\\xe7\\x96\\xf8\\x11\\x96\\x7d\\xb8\\x61\\x76\\x46\\xcf\\x7d\\x0b\\x47\\x5d\\x0f\\x3e\\x8e\\x32\\xff\\x7b\\x85\\x95\\xb5\\xce\\x24\\x63\\xbb\\xd6\\x54\\x38\\x47\\xdf\\x12\\x8b\\x58\\x08\\xd4\\x8d\\x5d\\x61\\x0f\\x70\\x97\\x05\\x1b\\x0a\\xef\\x88\\x0b\\xb9\\x10\\x23\\x3e\\x2b\\xc1\\x13\\xb6\\x11\\xbe\\x50\\xac\\x8c\\x14\\xfe\\xfa\\x61\\x65\\x73\\xf3\\xf8\\xf3\\xfe\\x40\\x22\\xe5\\x24\\x6d\\x7e\\xe3\\x8f\\xf8\\x2b\\xae\\xf2\\x97\\x11\\xa9\\xd4\\x53\\xc7\\x96\\x37\\x1e\\xf6\\xb1\\x5f\\x3f\\x52\\xf4\\x33\\x84\\x8f\\x5e\\x9f\\xca\\x73\\x8d\\xf8\\x3c\\x2d\\xcf\\x67\\x5f\\xdc\\x3a\\x92\\xcf\\xf0\\x5d\\x09\\x7e\\x7e\\xd7\\x1e\\x14\\x32\\xd1\\x17\\xf3\\x5c\\x85\\x32\\x99\\xef\\xa2\\xe6\\x66\\x5e\\xa1\\x89\\xd2\\x6b\\xa3\\x92\\x35\\xc9\\x62\\xfa\\x31\\x31\\x36\\x24\\x40\\xf6\\xff\\x91\\xf6\\x1e\\x70\\x6d\\x9d\\xe7\\xfe\\xf8\\xfb\\xbc\\xe7\\x3d\\x47\\x62\\x23\\x84\\x06\\x4b\\x20\\xb4\\x10\\x62\\x0b\\x49\\x20\\x96\\xd8\\x43\\x6c\\x0f\\x10\\xd8\\xc6\\x18\\x8c\\xc1\\x36\\x18\\x83\\xf1\\xc0\\x7b\\xc7\\x76\\xe2\\x38\\xf1\\x76\\x9c\\x38\\x4e\\x62\\x37\\x89\\xd3\\x98\\xac\\xc6\\x72\\x56\\xdb\\x8c\\xa6\\xe9\\x4d\\x93\\xde\\x36\\x4d\\x6f\\xfb\\xbf\\x6d\\xd3\\x95\\xb6\\x49\\xdb\\xdb\\x75\\xdb\\xc6\\xe8\\xf0\\xff\\x9c\\xf7\\x48\\x02\\x6c\\xc7\\xc9\\xed\\xaf\\xfd\\x10\\xc3\\x99\\xef\\xfb\\x9c\\x77\\x3c\\xeb\\xfb\\x7d\\x12\\x2d\\x5a\\x6d\\x20\\x6d\\xc8\\xbf\\xc1\\x06\\x61\\xf6\\x6c\\x5e\\x10\\x2d\\x20\\x8b\\xd5\\x60\\x72\\x99\\x5f\\x58\\xba\\xaf\\xba\\xf7\\x81\\xe1\\x22\\xe7\\xda\\x07\\x7a\\xab\\x0f\\x94\\xc2\\x23\\xfc\\x38\\x74\\xf2\\x8f\\xc3\\x69\\x5f\\x53\\x6e\\x5e\\x5c\\x5e\\x7c\\x61\\xa7\\x53\\xa3\\x29\\xee\\x94\\x44\\x54\\xee\\x7b\\x7d\\x17\\xbc\\xbe\\xeb\\xf5\\x7d\\x55\\xe1\\xd2\\x33\\xbc\\xfe\\x8c\\xef\\xaf\\xb1\\x0c\\x79\\x04\\x63\\xc3\\xe2\\x7b\\x86\\xf8\\xa2\\xa1\\x7b\\x17\\x1b\\x04\\x3d\\x25\\x6b\\xe6\\x53\\x32\\x45\\x9a\\x51\\x06\\xaa\\x40\\x2d\\xa8\\xd6\\x55\\x25\\x05\\x09\\x4a\\x00\\x06\\xeb\\x13\\x31\\x61\\x98\\x86\\x50\\x90\\x22\\xcc\\x48\\x31\\xdd\\x8d\\x82\\x09\\xae\\xc0\\x30\\xa4\\x9b\\x05\\xca\\xdc\\x55\\x55\\xe9\\xae\\xaf\\x6c\\xa9\\x6a\\x31\\x9b\\xf5\\x26\\x83\\x42\\xaf\\x0f\\x0b\\x12\\x50\\xde\\xa2\\xb2\\xda\\xfd\\x1c\\x1e\\x37\\x23\\x22\\x66\\x3d\\x1f\\x06\\x6d\\xf0\\xd7\\xac\\xcc\\x8e\\x5d\\xed\\x0b\\x77\\x65\\x64\\x6e\\xae\\x59\\xb0\\xa5\\xc5\\xc8\\xdb\\x63\\xd3\\x4a\\x2d\\x55\\xdd\\x29\\x0e\\x59\\x66\\x71\\x63\\x4e\\xc7\\xde\\xcc\\x8c\\x9d\\x0b\\x16\\xec\\xea\\xcc\\xbc\\x2e\\x33\\x16\\x5b\\xd2\\x8b\\x8c\\x31\\x31\\xc6\\x92\\xf4\\xf4\\x22\\x43\\x0c\\xf0\\x20\\x8b\\xd2\\x5a\\x0d\\x29\\x56\\x9d\\x1c\\xef\\x1c\\x7a\\x72\\xb2\\xa2\\xb2\\xb4\\xac\\xc2\\x35\\x76\\xbe\\xfb\\x05\\x57\\xd5\\xba\\x56\\x4b\\x7a\\xe2\\x8e\\x98\\xd4\\xf8\\xe8\\xf2\\xd2\\x92\\x8a\\x8a\\xcd\\x4f\\x0e\\x55\\x8d\\xb7\\x67\\x65\\xb5\\x8f\\x57\\xbd\\x55\\x35\\xb6\\x20\\x2b\\xbb\\x7d\\xbc\\x52\\xba\\x28\\xbd\\xb9\\xc4\\x60\\x69\\x5e\\x57\\x89\\x00\\xde\\x46\\x88\\x84\\x71\\x16\\x24\\x47\\x26\\x97\\x3e\\x04\\x00\\x85\\x02\\x06\\xdc\\x40\\xf3\\x60\\x10\\xf4\\xcd\\xfa\\xc8\\xe4\\x48\\x6e\\x30\\x88\\x3e\\xb2\\x39\\x18\\x04\\xfa\\xe1\\xe0\\xed\\x92\\xf5\\x0f\\xf7\\x1b\\x6a\\x0d\\xaa\\x98\\xac\\xa4\\xaa\\x55\\x35\\x7a\\x32\\x30\\xfc\\xc4\\x78\\x71\\x78\\xc8\\x51\\x96\\x4b\\x6f\\x1e\\xad\\xbe\\x71\\xce\\x9f\\x5b\\xc4\\xbb\\x49\\x03\\x67\\x41\\x66\\x54\\xe6\\x2a\\x4e\\x01\\x8e\\xd5\\x02\\xe1\\xc2\\x00\\x23\\x61\\x75\\x21\\xd4\\xf2\\x27\\x2c\\xd7\\x27\\xac\\xd7\\xc4\\x23\\x09\\x24\\xed\\x06\\xe6\\xa7\\xdc\\x60\\x90\\xc9\\x4d\\x06\\xd1\\x3b\\xaf\\x9b\\xb7\\x13\\xd9\\x1d\\x82\\x86\\x30\\x1f\\x1b\\x21\\x51\\x58\\x99\\x9d\\x3f\\xc8\\x5b\\x7a\\x70\\x91\\xb9\\xd5\\x14\\x19\\x66\\xce\\x30\\x85\\x2d\\x5a\\x02\\xcf\\x3c\\xe3\\x1c\\x3e\\xb7\\x3c\\xdb\\x93\\xad\\x8a\\xaf\\x4d\\xdb\\xb3\\x0d\\x7e\\xc0\\x5c\\x99\\xd6\\x2e\\x3d\\xd6\\x6b\\x8d\\x8e\\x3d\\x21\\x0d\\x0b\\x21\\xdb\\x86\\x99\\x9f\\xdd\\xdb\\xb7\\xfc\\xe4\\xca\\x7c\\xa5\\xec\\x78\\x44\\x34\\x6c\\x9d\\xe8\\x13\\xf5\\x99\\xbe\\x99\\x4f\\xc9\\x5b\\xec\\x67\\x48\\x87\\xca\\xd1\\x22\\x57\\x68\\x1c\\x30\\x90\\x02\\x84\\x5a\\x8e\\x69\\xa2\\x7b\\x1e\\x97\\xba\\x6f\\x4b\\xd2\\x20\\xba\\xe7\\xf1\\xd8\\x6d\\x4f\\x7a\\x5e\\xcc\\xcc\\x54\\x64\\x1a\\xe9\\x82\\x3d\\x17\\xa9\\x4e\\x83\\xd1\\x56\\x25\\x4d\\x72\\xba\\x05\\xb2\\xde\\x75\\x5b\\xc8\\xfa\\xfa\\x27\\x4a\\xec\\x79\\xf0\\x15\\xe8\\x5f\\x96\\x91\\x86\\xff\\xef\\xc0\\xf5\\x85\\xb5\\x31\\x6b\\x17\\xec\\x7c\\x5c\\xd7\\xf9\\x4e\\xff\\x9d\\xd0\\xeb\\x82\\x2c\\x36\\xcd\\x7c\\x4a\\x9e\\x26\\x4f\\xa2\\x24\\x64\\x45\\xd9\\xae\\x0c\\x29\\x10\\x14\\x05\\x0c\\xe5\\x3e\\x13\\x14\\xed\\x59\\x1d\\x7b\\xd6\\x52\\x36\\x9b\\x2d\\x0a\\x3d\\xd5\\xb1\\x82\\x33\\xc7\\x66\\xa5\\x39\\x5c\\x77\\xf2\\x13\\x6e\\x12\\x14\\xea\\xe5\\x0f\\x95\\xd8\\xad\\x8f\\x43\\xf7\\x62\\x73\\xfa\\x17\\xe4\\x40\\x17\\xd9\\x64\\x83\\x0b\\xb6\\x3c\\xa2\\xaf\\x7a\\x6c\\xc9\\x1d\\x52\\xa1\\x29\\xce\\x98\\xdd\\xcb\\xfe\\x16\\xe9\\x90\\xd5\\x95\\x03\\x00\\x0c\\x34\\x70\\x2c\\xf6\\xa3\\x95\\xfd\\x39\\xf9\\x01\\xaf\\x4c\\x35\\x1d\\xfc\\x3a\\xa4\\x33\\x28\\x0c\\x31\\x4a\\xba\\x2b\\x28\\x4a\\x19\\x9b\\x35\\x96\\x93\\xdc\\x16\\x81\\x9c\\x59\\xac\\x8f\\xfa\\xca\\xf9\\xcb\\xf0\\xf9\\x40\\xe4\\x6b\\x5c\\x6a\\xd1\\xa2\\x82\\xe7\\xbd\\x61\\xbe\\x81\\xcf\\x41\\x24\\x23\\x31\\x6f\\x93\\x2d\\x23\\xc7\\x51\\x32\\xea\\x76\\x85\\x24\\xc6\\x71\\x0c\\xe5\\x78\\x0c\\x78\\xd7\\x81\\xc5\\xec\\x18\\x11\\x93\\xb4\\x03\\x79\\xf9\\x54\\xe5\\x4c\\x9c\\x77\\xca\\xef\\xae\\x08\\x2e\\xcf\\x74\\x87\\x4b\\x46\\xc9\\x72\\x83\\x42\\x17\\x4b\\xfb\\xc2\\x09\\xfb\\x98\\xe9\\x36\\x49\\x9d\\x0a\\xbb\\xdd\\xc6\\x96\\xc1\\xdd\\xc7\\x1f\\x0f\\xbb\\x39\\xb7\\xb3\\x2a\\x9f\\x1c\\x7f\\xf2\\x79\\xf9\\xf4\\x4f\\x6f\\x93\\xe3\\x79\\x4f\\xcc\\xba\\x95\\xb4\\xfd\\x53\\xbc\\x9b\\x49\\xa7\\x79\\xa7\\x66\\x97\\x71\\x0e\\x22\\xe4\\x76\\x38\\x10\\x41\\xbf\\xf4\\x43\\x68\\x6f\\x45\\x81\\x10\\x6c\\x0c\\x6a\\x8f\\x56\\x7b\\x6e\\x64\\x7e\\x77\\x95\\x89\\x3f\\x71\\x5b\\xbc\\x87\\x30\\x36\\x9f\\x99\\xf9\\x94\\xf4\\x90\\x16\\x8a\\x13\\xab\\x74\\xb9\\x12\\x80\\x41\\xf1\\x80\\xc5\\xfc\\x36\\x96\\x60\\xb6\\x37\\x88\\x0f\\xab\\x75\\x07\\x51\\x63\\xd5\\xf0\\xb9\\x50\\x31\\x08\\xb8\\xb2\\x4d\\x34\\x49\\x41\\x2b\\x98\\xde\\x34\\x36\\x4e\\x19\\xd6\\xe8\\xba\\x8f\\x7b\\x37\\xbe\\xb2\\xaf\\xb6\\x79\\xff\\xd5\\xe5\\x13\\x5f\\x1d\\x2b\\xc0\\x7f\\x63\\x32\\xda\\x36\\x36\\xaf\\xbf\\x68\\xaf\\x4f\\x70\\xf7\\x6d\\x5f\\x55\\xd8\\xeb\\xce\\x0b\\xf3\\x7d\\x47\\x5b\\x39\\x48\\x5a\\xda\\xee\\x7b\\x6b\\x22\\x63\\xe2\\xad\\x7b\\x5b\\xa1\\x6e\\xd7\\x33\\x43\\x5b\\x1a\\x0f\\xf4\\x3b\\x4b\\xb3\\xb6\\xc7\\xe5\\x18\\x55\\xd3\\xb6\\xac\\xb6\\x11\\x57\\xbc\\xbd\\xbf\\x31\\x53\\x5c\\x2b\\xbf\\x41\\x7e\\xc5\\x68\\xd8\\x3f\\x20\\x29\\x4a\\x72\\xc5\\x73\\x0c\\xa2\\x80\\x15\\x00\\x84\\xd1\\xb8\\xb0\\xd4\\xe0\\x20\\x30\\x5b\\xa1\\x33\\x49\\x74\\x36\\x87\\x95\\xd1\\x9c\\x3b\\x75\\xf2\\xcc\\xdf\\x47\\x89\\x2f\\xee\\xf4\\xe9\\xf8\\x3f\\x21\\x04\\x90\\x43\\x7e\\xc9\\x3c\\x40\\x9f\\x91\\x20\\x8c\\x19\\x40\\x20\\xba\\x1d\\x05\\x8d\\xb1\\x14\\x05\\x9f\\xe0\\xb0\\x2a\\x24\\x3a\\x93\\xcd\\x8a\\xfb\\x4f\\x3f\\xcc\\x8f\\xdd\\x78\\x90\\x5d\\x74\\x26\\xe6\\x9f\\x7f\\x57\\x88\\xf1\\x82\\x22\\xf2\\x15\\xe6\\x3e\\xf6\\x59\\xa4\\x40\\x1a\\x57\\x82\\x3f\\x13\\x47\\x84\\xe6\\x83\\x3f\\x2c\\xa1\\x8f\\xd5\\x53\\x40\\xfe\\x2d\\xd3\\x98\\xb9\\x2f\\xbd\\x79\\xa4\\xaa\\x7a\\xa4\\xd9\\x72\\x2a\\x46\\x5f\\x90\\x66\\x72\\xe8\\x63\\xd8\\x67\\x8b\\xfa\\x6a\\x4c\\xa6\\x9a\\xbe\\x22\\x8d\\x23\\x4d\\xad\\x4e\\x73\\x68\\x84\\x77\\xfc\\x85\\x7c\\x84\\x7f\\xc4\\xbe\\x8a\\xc2\\xfc\\xf9\\x96\\x62\\x48\\x01\\x1a\\x6f\\x13\\x46\\xf9\\x4b\\xc0\\xd9\\xcc\\x36\\x53\\x66\\xb0\\xb2\\x32\\x84\\xe1\\x1c\\x59\\xc6\\xe4\\xb2\\x1f\\x23\\x39\\xd2\\xdd\\x26\\x36\\x51\\xca\\x34\\x1a\\xbf\\x30\\xe8\\x2c\\x68\\x74\\x70\\x4e\\xeb\\x70\\xa7\\xa7\\xd7\\x3b\\x52\\x52\\x1c\\xf5\\xe9\\xe9\\x6e\\x87\\xb6\\x4f\\x96\\x64\\x54\\x2a\\x0d\\x89\\xd1\\x45\\x19\\x19\\xa5\\x6c\\x8a\\xa5\\xde\\xa6\\xd1\\xd8\\xea\\x2d\\x96\\x3a\\x6b\\x62\\xa2\\xb5\\xce\\xa2\\x34\\x26\\x45\\x47\\x27\\x1a\\x55\\x39\\xd4\\x08\\x01\\x38\\xca\\xb7\\x30\\x80\\x0a\\x90\\x4a\\x90\\x55\\x28\\x95\\xb7\\x2a\\x04\\xd3\\xf8\\x4a\\x60\\xa8\\x1b\\x0c\\x42\\x97\\xb4\\x1c\\xa7\\x88\\x55\\x5a\\x95\\x76\\x87\\xca\\x3f\\xf5\\xf2\\x4b\\xb1\\x03\\xff\\xa4\\x79\\x99\\x3e\\x3d\\xc5\\x16\\x9d\\x9c\\xb8\\xa8\\xdc\\x5c\\x93\\xaf\\xd1\\xb9\\xba\\x0b\\xd2\\xd7\\x55\\xa4\\x9a\\x41\\x2e\\xdd\\x12\\x9d\\xa8\\xce\\xa9\\xcd\\x36\\x2f\\x68\\xae\\x49\\x10\\xc6\\xc7\\x61\\xf2\\x4b\\xc6\\xc9\\xfe\\x19\\x25\\xa3\\x16\\x57\\x0c\\x02\\x06\\x47\\x03\\x02\\xdc\\x90\\x0c\\xb8\\x2e\\x0a\\x50\\xad\\x18\\x2c\\x54\\x04\\x02\\xef\\xa5\\xc1\\x48\\x5b\\x31\\xa2\\x99\\x93\\x8c\\xa0\\x1b\\xf5\\x04\\x4f\\x43\\xa3\\xe7\\x6b\\x3a\\x93\\x61\\x6e\\xa2\\x27\\xa1\\xe3\\xdc\\x2f\\x30\\xf1\\x7b\\x3a\\x93\\xed\\x8d\\x99\\xda\\x7c\\x8b\\xd1\\x94\\x91\\x90\\x51\\x08\\x83\\xc9\\x76\\x77\\x56\\x7a\\x65\\x59\\xb9\\x49\\x61\\x4c\\x90\\xb1\\xdf\\xcf\\x6c\\x2f\\xd1\\x47\\x2a\\xe2\\x14\\x91\\xe5\\x59\\xea\\xcc\\x05\\x65\\x46\\x8d\\x4e\\x13\\xa3\\x31\\xab\\xc4\\x3d\\xe3\\x7f\\xc9\\x2f\\x98\\x1f\\xb2\\x7f\\xa2\\x79\\x63\\x81\\x3c\\x25\\xea\\xcc\\x2f\\x9d\\xc3\\x0e\\x61\\xa5\\x40\\x6e\\x1d\\xfe\\xfb\\x47\\xfc\\x7b\\x4f\\x34\\xbc\\xf7\\xf7\\x53\\xec\\x9f\\xf8\\xbf\\x42\\x04\\xff\\x57\\x31\\x06\\xf5\\x55\\xfe\\x00\\xfe\\xef\\x99\\x2b\\x48\\x8e\\x92\\x51\\x59\\x00\\xf1\\x23\\xc2\\xf2\\xfb\\x02\\xcb\\x09\\xcd\\x0c\\x55\\xcf\\x1e\\x05\\xc0\\x1d\\xfe\\x73\\x18\\x5a\\x3c\\x5f\\xd3\\x1b\\xc5\\xa1\\xc0\\xde\\x3c\\x14\\x44\\x16\\x5c\\x71\\x20\\x7c\\x55\\x9d\\x5e\\x90\\x92\\x6c\\x37\\xab\\xd5\\x66\\x7b\\x72\\x4a\\x41\\xba\\x7a\\x31\\x98\\x12\\xe3\\x8d\\xc6\\xf8\\x44\\xd3\\xef\\x52\\x1c\\x26\\xa5\\xd2\\xe4\\x48\\x49\\xb1\\x1b\\x15\\x0a\\xa3\\x3d\\x25\\xc1\\x68\\x48\\x4c\\x32\\x99\\x10\\x82\\xe9\\x77\\xc8\\xcb\\xbe\\x1b\\x9c\\x12\\x31\\x48\\xe6\\x8a\\x0c\\xa2\\xd5\\x67\\x21\\xea\\xbe\\x1b\\x3b\\x9e\\x7b\\x96\\xbc\\x2c\\x18\\x8c\\xbe\\x41\\xf2\\x32\\x7f\\x8a\\x53\\xf9\\xaf\\x0d\\x44\\x5e\\x03\\xe1\\x56\\x46\\xe7\\xfb\\xfd\\x53\\xd7\\x37\\x70\\x2a\\xfe\\xd2\\xcc\\xcc\\xf4\\x5d\\xe4\\x97\\x33\\x05\\xec\\x9f\\x91\\x04\\x3d\\x72\\x83\\x17\\xeb\\x2a\\xf8\\x3c\\xe4\\xbf\\xf8\\x7b\\xb9\\x0d\\x48\\x8e\\xb2\\x5c\\x96\\x18\\xc1\\xdc\\x0d\\xb0\\xf7\\xf4\\x21\\x61\\xe4\\x77\\x08\\x22\\xf0\\x10\\x60\\x10\\xd3\\x24\\x6a\\x6f\\x32\\xa5\\x8c\\xce\\x53\\x93\\xdd\\x4e\\x37\\x58\\x47\\x9e\\x52\\x0c\\xfd\\xfb\\xd6\\x41\\x6d\\x43\\x42\\x56\\xb1\\x56\\x72\\xec\\x42\\x42\\x46\\x41\\x22\\x90\\xff\\x3a\\xcb\\x26\\x9a\\x95\\x9a\\x18\\xe9\\xea\\xfe\\x4e\\xa3\\x5d\\x1f\\x4b\\x6a\\x05\\xf9\\x4f\\xb3\\xe4\\x57\\xfc\\xaf\\xd9\\x3f\\x06\\xbe\\xe1\\x3c\\xfa\\xff\\x59\\xfa\\x05\\xf1\\x2b\\xfa\\x7e\\xfe\\x04\\xff\\xdd\\x8f\\x60\\xe6\\xd4\\xff\\xbe\\x47\\x7e\\x05\\xa1\\xfc\\xff\\x52\\x60\\x3e\\xf8\\x4c\\xfc\\xe3\\x7c\\xc4\\xcc\\xfe\\x3b\\xc5\\x4d\\xd9\\x39\\x13\\xde\\x67\\x0a\\x4c\\xf8\\x4f\\x02\\xf3\\x1d\\xb0\\x99\\xfc\\x83\\xc9\\xe4\\x26\\xfd\\x3c\\x08\\xc2\\x33\\x16\\xf9\\xb3\\x53\\x10\\x34\\xc9\\xa2\\xb1\\x44\\x14\\x21\\x5e\\xfd\\xfa\\x93\\x5d\\xdc\\x24\\xbf\\x1d\\x21\\x06\\xe4\\xe4\\x17\\xcc\\x5f\\xb9\\xd7\\xfc\\xfe\\x4a\\xad\\x4b\\x83\\x28\\x8d\\x84\\xc8\\x4b\\x85\\xbb\\x85\\x0d\\x33\\x87\\x69\\xf4\\x3b\\x29\\x25\\xf1\\xf4\\x01\\xec\\xe7\\x79\\x34\\x36\\xbc\\xbb\\xf1\\x20\\xff\\x5e\\xa1\\xd8\\xb2\\x42\\xb8\\x11\\xf8\\x8d\\x7b\\x8d\\xff\\xe7\\x2a\\xda\\x4e\\x97\\x2b\\xcb\\xff\\xef\\xcc\\x0c\\xce\\xc1\\x6b\\x18\\x25\\x53\\x8f\\x39\\xb4\\xb1\\x40\\x8c\\x35\\x21\\x92\\x13\\xe4\\x6c\\x12\\x13\\x88\\x71\\x9a\\xa0\\x7c\\x98\\x45\\x36\\x08\\x89\\xca\\xcf\\x94\\x42\\x72\\x7c\\x65\\xd7\\x99\\xad\\xac\\xfa\\xb3\\xdf\\x52\\xb2\\x11\\x8c\\xb2\\x10\\x22\\xcf\\x53\\x1f\\x14\\x65\\x66\\xe5\\x80\\xf2\\x36\\x21\\x94\\x46\\x37\\xd4\\xae\\xf9\\xcf\\xb0\\x82\\xd6\\xa1\\x05\\x9c\\xff\\x30\\xfc\\xfc\\xc6\\xe4\\xff\\xe0\\x27\\xf8\\xeb\\xec\\xd4\\x67\\xad\\xa7\\x49\\xa2\\x18\\xa7\\x0a\\xf0\\x28\\x31\\x48\\x8b\\xca\\x28\\x4f\\x1a\\x20\\xc4\\x82\\xc8\\x93\\x26\\x2c\\x16\\x39\\x41\\x37\\x69\\x2e\\x6e\\xcc\\xcc\\xcc\\x34\\xf9\\x65\\xa3\\xb5\\x69\\xd9\\x2f\\xe0\\x55\\x62\\x9a\\xf8\\x1c\\x78\\x1f\\x62\\xff\\x7d\\x76\\xa5\\x13\\xa7\\xbf\\xf2\\x6f\\xf1\\x2b\\x01\\xb2\\x23\\x44\\x1e\\x0e\\xf0\\xb9\\x20\\x80\\x34\\xea\\x3a\\x31\\x8b\\x8c\\xb5\\x12\\x91\\xb1\\xd6\\x0a\\x3a\\xbc\\x9a\\x3f\\xf4\\x0a\\xfc\\xea\\x22\\xfc\\xfa\\x15\\x72\\xfe\\x46\\xbf\\x20\\x1a\\x51\\x2e\\xf7\\xf9\\x79\\x4c\\x84\\x71\\x2e\\xf2\\xc7\\x89\\xfc\\x60\\xbd\\x88\\x65\\xa9\\x2f\\x26\\x2d\\x98\\x88\\x6e\\x86\\x00\\xf3\\x98\\x24\\xde\\xe2\\xf0\\x47\\x20\\x19\\xad\\x42\\x7b\\x1f\\x73\\x79\\xba\\x6b\\x11\\xfe\\x8b\\x2f\\x72\\x01\\x73\\x6a\\x7a\\xf5\\xe9\\xd3\\x4c\\xe9\\x19\\x26\\xf4\\x0c\\xdd\\xdb\\x1f\\x41\\x88\\xa4\\x07\\xb8\\x72\\x10\\x00\\xb5\\xa9\\xe7\\x36\\x32\\x9a\\x48\\xd4\\x01\\x66\\x34\\x2d\\x49\\xf7\\xfa\\x7e\\xef\\x65\\xee\\x0a\\x0c\\x02\\x91\\x9b\\x77\\x1d\\xe5\\x9b\\xc9\\x76\\x65\\x48\\x80\\xc1\\xe1\\x1c\\x62\\x10\\xc3\\x02\\x20\\xa6\\x21\\xc0\\x43\\x37\\xbf\\x8d\\xb1\\x32\\x99\\xf0\\x4c\\x00\\x0a\\xd5\\x00\\x9b\\x56\\xa1\\x05\\x26\\x8e\\x2f\\x66\\xe2\\xa7\\x01\\x7e\\xcd\\x27\\x30\\xef\\xfa\\xe2\\xe0\\x75\\xfc\\xae\\xef\\x3b\\x67\\x8e\\xe1\\x7a\\x5c\\x7b\\xec\\x8c\\xef\\xbb\\x54\\x16\\xd5\\x08\\x91\\x83\\x94\\x93\\x47\\x8f\\xb2\\x51\\x8a\\x2b\\xc9\\x92\\x9e\\x92\\xac\\x8a\\x08\\x45\\x52\\x04\\x94\\x12\\x98\\xbe\\xc7\\x8c\\x1a\\x13\\x13\\xe8\\xbc\\x9b\\x57\\x6d\\x42\\x4c\\x77\\x87\\x58\\x0d\\x56\\xc9\\x22\\x19\\x36\\x3f\\x0b\\x9b\\x64\\xa5\\x0c\\x7e\\xbd\\xf7\\xd2\\x96\\xea\\xea\\x2d\\x97\\x7a\\xbd\\x2b\\x2e\\x4d\\x56\\x55\\x4d\\x5e\\x5a\\xe1\\xe5\\x0b\\xf5\\xd5\\xfd\\xe5\\xe5\\xfd\\xd5\\x7a\\xfc\\x7d\\x7d\\x75\\x9f\\xcb\\xd5\\x57\\xad\\x27\\xbf\\x90\\xb6\\x1f\\xbe\\xbe\\x6e\\xf4\\xa5\\x23\\x0b\\x25\\x6f\\xbc\\x21\\x69\\x3f\\xfc\\xf2\\xe8\\xba\\x97\\x0f\\x2f\\x90\\x7c\\xd7\\xa7\\x6b\\xdd\\xdf\\x5b\\xc4\\xe1\\x3f\\x4a\\x8a\\x56\\xec\\x6b\\x6a\\xd9\\xdb\\x5b\\x24\\xf1\\xc5\\x48\\x8a\\x56\\xec\\x47\\x80\\x56\\xfa\\xb9\\x9f\\x92\\x85\\xb6\\x26\\x45\\x47\\x20\\x42\\x81\\x3a\\x18\\xd3\\x29\\x42\\x85\\xa1\\x52\\xa9\\x94\\x54\\x18\\xa5\\x0c\\x55\\x79\\x45\\x7c\\x6a\\x16\\xe3\\xd7\\x7f\\x55\\x32\\x2b\\xfe\\x96\\xc3\\x53\\xa6\\xf3\\x96\\x8d\\x3e\\xb4\\xcc\\xdb\\x73\\x7e\\xb4\\xd4\\x9b\\x5a\\xe6\\xb1\\x7b\\xe1\\x67\\xe1\\x05\\x5d\\xdb\\x5b\\xf1\\x80\\xef\\xdc\\xc6\\x17\\xf7\\x34\\x86\\xf1\\x2f\\x43\\x55\\x58\\xe3\\x9e\\x17\\x37\\x0a\\x47\\x5a\\xb7\\x75\\x15\\x84\\x33\\xef\\xd3\\xef\\xdb\\x8b\\x10\\x59\\xcb\\xbe\\x81\\xb2\\x51\\xba\\xcb\\x14\\x83\\xb0\\x7f\\x8a\\xfa\\xa7\\x94\\xb0\\xd4\\x80\\x87\\x05\\xf1\\xc3\\xc4\\xa7\\xcb\\xe2\\xd2\\x84\\xc1\\x63\\xb0\\xc7\\xcc\\x1a\\x3e\\x0a\\x65\\x8c\\x4a\\xa1\\x15\\xb4\\xcd\\x39\\x34\\x05\\x42\\x43\\xb5\\x0a\\x2d\\x7e\\x7c\\xd7\\x5d\\x99\\x8b\\xb6\\x35\\x37\\x4d\\x2e\\xca\\x82\\x7b\\x76\\xf3\\xc5\\xc0\\x95\\xf6\\x55\\xeb\\xeb\\x0f\\xbe\\x3a\\x31\\xf1\\xda\\xc1\\x06\\x7d\\xe5\\x8a\\x52\\x08\\xe5\\x8b\\xbf\\x91\\x04\\x29\\xff\\x6a\\x9b\\x78\\x61\\xab\\xcb\\xb5\\xf5\\x85\\x89\\xb6\\x1b\\xfc\\x2f\\x92\\xbe\\x71\\x3a\\xfb\\xe0\\xc5\\x29\\x4f\\xcb\\x91\\x4f\\x9e\\xe8\\xe9\\x79\\xe2\\x93\\x23\\x2d\\x9e\\x67\\x1e\\x3e\\x98\\x7d\\x9a\\xae\\x2b\\xbb\\x67\\x3e\\x21\\x87\\x29\\x66\\xd8\\x8e\\xde\\x12\\xcd\\x8c\\x68\\x2d\\x70\\x4c\\x86\\x05\\x23\\x2e\\x3a\\x14\\x0b\\x43\\xcb\\xcf\\x25\\x21\\x1c\\x27\\xf3\\x8e\\xdf\\x74\\x88\\x65\\x82\\x8e\\xaa\\x38\\xc4\\x71\\x4c\\xb7\\x84\\x60\\x86\\xb1\\xba\\x29\\xc9\\x41\\x37\\x06\\x80\\x5c\\x08\\x10\\x53\\x24\\x09\\x4a\\xb8\\xc5\\x4d\\x2f\\x43\\xb7\\x5e\\xe4\\xd2\\x23\\xc4\\xb1\\x1c\\x62\\x47\\x6f\\xbe\\x0e\\xb1\\x6c\\xf0\\x32\\x8f\\xc7\\x25\\x43\\x28\\x2f\\xc7\\x6c\\x42\\xa9\\x28\\xd5\\xac\\x37\\x18\\xa4\\xc2\\xf7\\x0d\\x58\\x33\\x2a\\x31\\xb1\\x9f\\x9b\\x97\\x68\\xac\\x72\\xc0\\x4d\\xb8\\x4c\\xe6\\x4f\\xe1\\x8a\\xa4\\x98\\xa8\\x84\\x50\\x55\\x72\\x51\\x8a\\xbb\\x4f\\x6d\\x3f\\xb7\\x6a\\xc5\\xa9\\x81\\xfc\\xfc\\x81\\xd3\\x7d\\x83\\x0f\\xd8\\x73\\x7d\\x2f\\x25\\x96\\xf5\\xd7\\x7a\\x36\\x19\\xe5\\x39\\x25\\xf5\\x96\\xba\\x95\\x65\\x89\\xc4\\x39\\xfd\\x13\\xa3\\x55\\x13\\x41\\xf0\\x61\\x45\\x44\\x65\\x43\\x75\\x5d\\xcb\\x91\\xd7\\x46\\x15\\xdb\\x3f\\x78\\xa0\\xb3\\xb1\\x76\\xa7\\xef\\xba\\xfb\\xc0\\xca\\xe2\\xf6\\x72\\x2c\\x4f\\xce\\x37\\x2a\\x6a\\x36\\x3d\\xb0\\x88\\xca\\xf9\\x69\\x7e\\x17\\xe9\\x66\\xdf\\x40\\xf1\\xc8\\x89\\x76\\xba\\x22\\xa5\\xc0\\x31\\x16\\x60\\x39\\x39\\xe5\\x63\\x11\\x11\\x0c\\x7a\\x29\\x30\\x88\\x63\\x19\\xae\\x8f\\x9a\\xd2\\x12\\x40\\x28\\x47\\xec\\x2e\\x02\\xc8\\x15\\xd6\\xf9\\x4c\\x91\\x5c\\x01\\x03\\x1e\\xbf\\xe3\\xb5\\x82\\xc9\\x17\\x97\\x98\\x00\\xa8\\xd0\\x91\\x9d\\x69\\xd4\\x27\\x38\\x13\\x9d\\x8a\\x58\\x59\\x14\\x8a\\x87\\xf8\\x10\\x89\\xdf\\xb6\\x99\\x93\\x3d\\x4f\\x43\\x43\\xf9\\xa5\\x58\\x3e\\x27\\x0f\\x53\\x21\\x9b\\x43\\xa4\\xae\\xb3\\xe1\\x35\\xbd\\x0f\\x8d\\x96\\xac\\xe8\\xdc\\xb2\\xbf\\x6a\\xf2\\xf2\\x8a\\xb6\\x87\\x4a\\xaf\\xd7\\x6e\\xb9\\xd8\\xe9\\x5a\\x56\\x9c\\x94\\x52\\xda\\xed\\x74\\xf4\\x54\\xa7\\x65\\x1e\\x5b\\x5a\\xb9\\xa6\\x21\\x2d\\xb5\\xa2\\xa7\\xe4\\x5e\\xf6\\x8d\\xc2\\xa1\\x63\\x1d\\x4b\\x4e\\x67\\x67\\x7c\\x73\\xef\\x9a\\x4b\\x63\\x45\\x59\\x79\\xbc\\x8d\\x7d\\xa6\\xfd\\xf8\\x88\\xcb\\x77\\x2a\\xb5\\x78\\xa1\\x35\\x6b\\x71\\x45\\x9a\\xa9\\x6a\\x89\\x6d\\xfa\\x4d\\x5b\\x99\\xa5\\x69\\x4d\\x99\\x6d\\xa0\\x2d\\xef\\x8c\\x68\\xff\\xd4\\xf2\\xcb\\xc9\\x29\\xe2\\x44\\xa1\\x82\\xfd\\x13\\xc2\\x62\\x26\\x80\\x14\\xb4\\x08\\xb3\\x38\\x13\\x1a\\x63\\x62\\x02\\x7b\\x9c\\x4c\\x27\\x03\\x2b\\xa8\\x1c\\xcc\\x8f\\x5e\\xe5\\xed\\xd7\\x79\\xdb\\xab\\xb0\\x50\\x1d\\x4f\\x9c\\x37\\xfe\\xce\\xe7\\xc2\\x0f\\x09\\x99\\xfe\\x9f\\xde\\x5e\\x51\\x07\\xdd\\x3c\\xf3\\x29\\x19\\xe0\\x12\\x51\\x2e\\xaa\\x45\\xf9\\xae\\x5c\\x29\\x00\\xca\\x08\\xc1\\x04\\x70\\x03\\x22\\xc0\\x00\\xa1\\x04\\x90\\x40\\x10\\xf4\\x05\\x3c\\x17\\xb9\\xb8\\xb1\\xb2\\xa2\\xc0\\x9e\\x9a\\x62\\xd2\\xb3\\xc2\\xea\\x16\\xf0\\x30\\xcd\\x06\\x60\\x55\\x73\\x23\\xb6\\x74\\xc1\\x73\\x64\\x31\\xf2\\xb9\\x9e\\x0c\\x93\\x31\\x12\\x2b\\x40\\x62\\xef\\xbb\\x7b\\x71\\xeb\\x05\\xb7\\x59\\x55\\x56\\xd7\\x9c\\x96\\x5e\\x9d\\x97\\xa8\\xb2\\x7b\\x2a\\xff\\xbf\\x9f\\x55\\xed\\xbe\\xbe\\x71\\xf3\\x4b\\x7b\\xaa\\xec\\x4b\\x77\\xd6\\x91\\xec\\x46\\xbb\\xc6\\x62\\x6c\\xd9\\xdc\\xde\\xb6\\xb1\\xd9\\x98\\xd9\\x3e\\x5e\\xdb\\xb6\\xb9\\x35\\x8d\\xfc\\xbd\\x7a\\xa4\\x31\\x2d\\xdb\\xb8\\x27\\x44\\x29\\x8f\\x88\\xd5\\x5b\\x93\\x95\\xd9\\x39\\x39\\xaa\\x7a\\xfe\\xd3\\xf7\\x14\\xeb\\xbf\\x71\\xb4\\xad\\xed\\xe8\\x37\\xd6\\x2b\\x3a\\xce\\x6c\\x6e\\x97\\x85\\xc9\\xed\\xd5\\x6d\\x3e\\x47\\xd3\\xe1\\x55\\x25\\x25\\xab\\x0e\\x37\\x29\\xca\\xb6\\x0f\\xb9\\xc3\\xa1\\x64\\xe8\\x48\\xa3\\x9f\\x5b\\x6d\\x39\\x69\\x42\\xc5\\xa8\\xd9\\xe5\\x4e\\x02\\x24\\x81\\x06\\xc4\\x72\\x12\\x8e\\x95\\x8c\\x06\\x58\\x1f\\x91\\x44\\x0a\\x08\\x4b\\x50\\x5f\\xa0\\x6c\\x81\\xd5\\x1d\\x48\\xb9\\xcc\\x65\\x1a\\x01\\x15\\x15\\xe6\\x66\\x5b\\xd2\\x8d\\x7a\\x65\\x6c\\x64\\x44\\x88\\x04\\x15\\x43\\x31\\x1d\\x44\\x22\\xd7\\x91\\x3f\\x91\\x88\\xf5\\x07\\xf7\\xe7\\x60\\x2e\\x54\\x73\\x31\\x17\\x56\\xab\\x02\\xaf\\xbe\\xef\\x44\\x5a\\xd3\\x58\\x43\\xc5\\x68\\x5b\\x96\\x17\\x4c\\xd5\\xcb\\xd6\\x6e\\x2a\\x5e\\xfb\\xfc\\xde\\xba\\xf5\\xab\\x7b\\x86\\x2a\\xb6\\x5e\\x5d\\xdb\\x73\\x65\\x77\\x23\\x78\\xb3\\x9b\\x07\\x9d\\xee\\xb5\\x35\\x5a\\x4d\\xc5\\x60\\xc3\\x5f\\xe1\\xa7\\x6d\\x4b\\x0d\\xae\\xec\\x04\\x8d\\xad\\xda\\x54\\xd4\\xeb\\x76\\x18\\x64\\x96\\x05\\x9b\\x9b\\x7b\\x76\\x24\\xeb\\xb6\\xb8\\x9b\\x27\\x5a\\xd2\\x32\\x16\\x6c\\x72\\x1b\\xca\\x32\\xe3\\xe3\\x33\\x8b\\x53\\x0d\\x45\\xe9\\xca\\x13\\xe2\\x18\\x9a\\xe0\\x77\\x93\\x6c\\x5a\\x5f\\xc0\\xe0\\x4a\\x05\\xca\\xbb\\xa5\\x54\\x88\\x95\\x42\\xc0\\x23\\x2c\\x1d\\x69\\x34\\x6e\\x91\\x8e\\xd2\\xcd\\x69\\x8c\\xd0\\x15\\x05\\xd0\\xa4\\x28\\x95\\x4a\\xc3\\x28\\x22\\x19\\x5a\\x43\\x24\\xdf\\x68\\x0a\\x94\\x56\\x02\\xad\\x8d\\x64\\xf3\\xab\\xaa\\x47\\x9a\\xcc\\x4b\\xba\\xfe\\xdb\\xbe\\xbc\\xc6\\x0c\\xba\\xfc\\xb2\\xc4\\x15\\xb9\\x79\\xee\\xd6\\x17\\x3c\\x3b\\xdb\\x8c\\xe9\\x1d\\x07\\x96\\x40\\x9e\\x2f\\x83\\x9d\\xda\\xcc\\x2f\\xaa\\x98\\xd8\\xbc\\xa7\\xb9\\x6f\\x45\\x4c\\x5e\\x78\\x7c\\x96\\xbb\\xd4\\xb4\\xb8\\xa5\\x5a\\xb9\\xd0\\xbe\\x28\\x43\\x57\\x10\\xad\\x8b\\x2e\\xf2\\x4c\\xb6\\x15\\x1e\\x3c\\xf3\\x58\\x07\\x14\\x9f\\x41\\x80\\x1e\\xe3\\x7b\\x89\\x85\\x62\\xd7\\x17\\x7d\\x2d\\x06\\x30\\x13\\xe4\\x33\\x50\\xcd\\xf2\\x19\\x58\\xdd\\x88\\x61\\xcc\\xfe\\xb1\\x9f\\xe0\\x4a\\x60\\xc5\\xe5\\xd0\\x8f\\x65\\x9a\\x77\\x56\\xe4\\x35\\x50\\x20\\x85\\x5c\\xa7\\xd0\\x71\\x92\\x9b\\x78\\x0d\\x82\\xb1\\x0b\\x77\\x84\\xe3\\xc9\\xd1\\xae\\xa3\\xfd\\xf6\\xeb\\xbb\\x76\\xae\\xbc\\xcb\\x74\\x5d\\x24\\x35\\xc8\\xe8\\xbb\\x30\\x7e\\xe3\\x79\\x52\\x77\\x6c\\x7b\\x53\\xf9\\xf4\\x8f\\x88\\x53\\xd0\\x01\\xbc\\x33\\x9f\\x12\\x35\\xad\\x39\\xa2\\x41\\x26\\xd4\\x26\\xa6\\xab\\x26\\x21\\x82\\x30\\x43\\x70\\x6f\\x60\\xb5\\xc9\\x09\\xc6\\x56\\x72\\x05\\x1b\\xf3\\x96\\xf3\\x79\\x73\\xcf\\x7b\\x5c\\x21\\x3a\\xb9\\x4e\\x61\\xd6\\x53\\x7d\\xf2\\x96\\xe2\\x24\\x12\\x2d\\xcd\\x4d\\xb3\\xdb\\x40\\xeb\\x4f\\x12\\x21\\xea\\xc2\\x91\\x87\\x57\\x0d\\x5c\\x5c\\x57\\xe4\\x1c\\xb9\\x38\\xb0\\xea\\xe2\\x88\\xd3\\xcb\\xcb\\xb7\\xec\\xdc\\xb9\\x91\\x97\\xc3\\x1f\\x36\\xed\\xda\\xb9\\x09\\x67\\x1e\\xfe\\xf0\\x78\\x53\\xd3\\xf1\\x0f\\x0f\\xc3\\xa2\\xc3\\x1f\\x9e\\x6c\\x6a\\x3a\\xf9\\xe1\\xe1\\x3f\\xdd\\x73\\xfd\\x9d\\x77\\xae\\x83\\x7e\\xf7\\xf5\\xb7\\xdf\\xbe\\xee\\x8f\\x23\\xcd\\x7c\\x4a\\x9c\\xc4\\x89\\x14\\x82\\x5e\\x17\\x0a\\xc0\\x84\\x89\\xfe\\x6e\\xbf\\x5f\\xca\\x12\\xcc\\x55\\xcf\\xc5\\x8d\\x0a\\x83\\x81\\x6a\\x62\\x72\\xad\\x7c\\xee\\x4e\\x42\\x71\\xd9\\xd7\\x70\\x1c\\x24\\x64\\x17\\x6b\\x33\\x9b\\x93\\xcc\\xa5\\x1b\\x4a\\xeb\\xd6\\xb7\\xa4\\xf3\\x0f\\x13\\xa7\\x4f\\x5a\\xee\\x36\\x84\\x26\\xca\\xf6\\x64\\xc4\\xa7\\xb6\\x1f\\x5c\\x89\\x9b\\x84\\x77\\x16\\xce\\xfc\\x89\\x2c\\x61\\xff\\x88\\xd2\\xe1\\x11\\xf7\\x54\\x92\\xb0\\x83\\x86\\x03\\x60\\x73\\x32\\x66\\x18\\xc0\\x0d\\x29\\x80\\x6a\\x13\\xe6\\x1e\\x4a\\x01\\x82\\x28\\x3e\\x44\\x84\\x35\\xf8\\xdb\\xe3\\x17\\x2f\\x11\\x95\\x44\\x7f\\x66\\x71\\xf0\\x6c\\xde\\xcd\\x67\\x23\\xef\\x78\\x6f\\xd4\\x1d\\xef\\x8d\\xbe\\xe3\\xbd\\x31\\x77\\xbc\\x37\\xf6\\x8e\\xf7\\x2a\\xef\\x78\\xaf\\xea\\x8e\\xf7\\xc6\\xdd\\xf1\\xde\\x24\\x9a\\xbe\\x15\\xc4\\xb0\\xce\\x39\\xe7\\x52\\x07\\x0f\\x23\\x64\\x16\\xee\\xa3\\x8b\\x5b\\x2e\\x69\\x9c\\xcd\\x73\\xf6\\xbc\\x98\\x16\\x67\\x54\\x46\\xb3\\x92\\x38\\x8b\\x56\\x07\\x26\\xbf\\x93\\x4f\\x8c\\xee\\xa8\\x40\\xc3\\x58\\xf3\\xf2\\xec\\x76\\x87\\x44\\xfc\\xfa\\x26\\x46\\x02\\x92\\xef\\xc2\\x11\\x47\\x64\\x6a\\x86\\x23\\x35\\x22\\x2d\\x02\\x62\\x8a\\xe3\\xea\\x56\\xbb\\x73\\xa3\\x60\\x75\\x68\\x52\\x6a\\xba\\x5a\\x1a\\x1a\\x12\\x1a\\x82\\xc3\\xf4\\xe1\\x45\\x4b\\xea\\x0b\\xd5\\x3f\\x48\\x22\\xd2\\x7b\\x75\\xd5\\x76\\x2d\\x81\\xa3\\x6c\\xa8\\xbd\\xad\\x27\\x6d\\xba\\x41\\x5b\\x60\\x56\\x63\\xc0\\xa7\\xb9\\x90\\xd4\\xca\\xfe\\x0a\\x6c\\xd9\\x24\\xf2\\x23\\xf0\\x9b\\x48\\x16\\xfb\\x06\\xaa\\x42\\x19\\x2e\\x73\\x15\\x20\\xc6\\x41\\xc7\\xa6\\x5e\\x87\\x71\\x2d\\x5d\\xa2\\x71\\x4f\\x50\\x8d\\x44\\x8d\\x15\\x2e\\x6d\\x5a\\x2a\\x11\\xb6\\x40\\x7f\\x1c\\x46\\x5c\\x5e\\xfd\\xdc\\x73\\xc1\\x35\\xac\\x94\\xb1\\x19\\x67\\xd7\\xb0\\x00\\x7f\\x82\\x52\\xc5\\xfc\\xa3\\x70\\x7d\\x49\\xcf\\xc1\\x0e\\x73\\xfa\\xd2\\xfb\\x06\\x8e\\x1e\\xfd\\xef\\x5f\\x3a\\x96\\x6e\\xad\\x5c\\x67\\xef\\xa9\\x35\\x83\\xce\\x56\\x9a\\xd0\\xab\\xd6\\xc7\\x45\\x40\\x73\\x93\\x73\\xec\\xfa\\xbe\\xba\\x6c\\xcf\\x8e\\x96\\xf2\\x81\\x5a\\xa3\\xfb\\x9e\\xb7\\x77\\xd4\\xde\\x9d\\xc3\\x4a\\xa3\\x14\\x1a\\x6b\\x95\\xc9\\xda\\x56\\xa8\\x39\\x73\\xfe\\x52\\xd5\\x40\\x43\\x56\\x78\\x5c\\x44\\x5c\\x66\\x43\\x89\\x69\\x61\\x4b\\x95\\x72\\x61\\x42\\xba\\x39\\x33\\x29\\xc3\\x22\\x8b\\x50\\x96\\xaf\\x3a\\x37\\xda\\xb8\\x63\\x45\\x9d\\x52\\x51\\xd4\\xd0\\x91\\xbb\\x60\\x57\\x67\\xa6\\x52\\x26\\xce\\x43\\xcf\\xcc\\x1f\\xc8\\x13\\xc4\\x89\\x12\\xd0\\x1a\\x71\\xad\\x0b\\x0d\\x05\\x40\\xe2\\x64\\x4c\\x08\\xfc\\x41\\x66\\x79\\x2b\\xd4\\x2c\\x83\\x11\\xa2\\x89\\x0a\\xfe\\x39\\x2a\\xe8\\xd1\\xb9\\x82\\x22\\x94\\x38\\xef\\x14\\x21\\xe6\\xb9\\x73\\xd8\\xe3\\x0a\\x95\\xc9\\x64\\xc2\\x4c\\x96\\x48\\x12\\x68\\xdc\\xe8\\xe6\\x99\\x4c\\xd3\\x4b\\xb4\\xa4\\xf1\\xde\\xe8\\x44\\x83\\x32\\x3e\\x57\\x66\\xce\\xee\\xc8\\x2e\\xec\\x2a\\x49\\xe1\\xef\\xf7\\xee\\x63\\xfe\\xca\\x5c\\xf4\\xad\\xc9\\xb0\\x26\\x4a\\xa3\\x43\\xf6\\xa4\\xc8\\x35\\xd5\\x63\\x0b\\xf1\\x91\\xe9\\x1e\\xe6\\xe2\\x59\\x41\\x9f\\xb8\\xc4\\x2f\\x27\\x35\\xa4\\x19\\x29\\x51\\x96\\x60\\x89\\xe9\\x81\\x30\\x52\\x40\\x84\\xae\\x26\\xf4\\xfd\\xd6\\x60\\xa8\\x27\\xd7\\xbf\\x36\\x5b\\xcc\\x46\\xb9\\x5e\\x18\\x66\\x73\\x92\\x71\\x6e\\x06\\x27\\x12\\x45\\x90\\x00\\xaf\\xc6\\x3e\\xf4\\xc0\\xc0\\xea\\x47\\x8b\\xbc\\xf5\\x3b\\x9f\\x58\\x3e\\x71\\x75\\xbc\\xd0\\xab\\xa9\\x58\\xdd\\x94\\xdb\\x5a\\x9a\\x99\\x14\\x25\\xcf\\xaf\\x5c\\x68\\x6d\\x1c\\xae\\x4e\\x81\\xbf\\x8d\\xbe\\x76\\xa4\\xb9\\xca\\xe5\\xfb\\x1f\\xe6\\x23\\xd8\\xf9\\xc6\\xfe\\xaa\\xce\\x07\\x7e\\xb0\\x63\\xd1\\xf9\\x8d\\x35\\x29\\x05\\x0d\\x0b\\x3a\\xcc\\xfc\\x4f\\xb4\\x85\\x66\\x55\\xd1\\xc0\\x01\\xb7\\x20\\xf7\\xcd\\xbc\\x87\\xe4\\x90\\x66\\x64\\x45\\x46\\x97\\x4e\\x9b\\x82\\xa1\\x16\\x01\\x86\\x71\\xba\\x91\\x30\\x80\\x90\\x15\\x37\\x02\\xa2\\x74\\x77\\x56\\xb0\\x92\\x80\\x92\\x18\\xdc\\xc2\\x03\\x64\\x1b\\xfe\\x91\\x25\\xd6\\x1d\\x14\\x3a\\x80\\x07\\xfa\\x1f\\xdf\\x52\\x7d\\x55\\x5f\\xb3\\xba\\xb6\\x6d\\xc2\\xad\\xb3\\x78\\xee\\x5a\\xb2\\xf8\\xf0\\x8a\\x7c\\xc8\\xaa\\xef\\xca\\x6c\\x52\\xda\\xb3\\x53\\x60\\x74\\xed\\x9e\\x37\\xf6\\x56\\x56\\xec\\x78\\x91\\x34\\xdb\\x56\\xde\\xbf\\x34\\xaf\\xb3\\x5c\\x84\\x2b\\x57\\x6d\\x5d\\x51\\x1d\\x11\\xae\\x2d\\xe8\\xa8\\x28\\xea\\x6b\\x2d\\x8e\\xdd\\x1a\\x9a\\x9c\\x59\\x9c\\x66\\xcd\\x8d\\x94\\x77\\xee\\xbf\\x3a\\x94\\xbe\\xf6\\xf5\\x93\\x9d\\x82\\xac\\x87\\x67\\x3e\\x25\\x07\\x28\\xde\\x20\\x83\\xb2\\xc3\\x06\\x48\\xfa\\x2c\\xc1\\x00\\x47\\x2e\\x34\\x9a\\x0d\\xe6\\x34\\x3a\\x89\\x41\\x3b\\x37\\xb0\\x24\\xe6\\xf3\\xc3\\x2d\\xe1\\x25\\x72\\x80\\xff\\x75\\xef\\xaa\\xf2\\xad\\xcf\\x8f\\x8d\\x3f\\xbf\\xad\\xbc\\x7c\\xdb\\x73\\x63\\xd8\\x31\\xfd\\xb0\\xbe\\x7e\\x7d\\x53\\xe3\\x68\\x83\\x4e\\xfc\\xb7\\x5e\\xcf\\x5c\\xac\\xfb\\xfe\\x3e\\x55\\xdf\\xb5\\xa3\\x8b\\x17\\x9e\\x78\\x7b\\x42\\x39\\xfa\\xfa\\xd1\\x76\\xdf\\x87\\xc1\\xb0\\x52\\xe3\\xa1\\xc1\\x92\\x92\\xc1\\x43\\x8d\\x82\\x6c\\xbf\\x3a\\xf3\\x09\\xc9\\x23\\x4e\\x14\\x87\\x2c\\xae\\xb4\\xd9\\xe1\\x2c\\xc6\\x33\\x11\\xdd\\xaf\\x67\\x07\\xa6\\x4c\\x61\\x32\\xf8\\xdb\\xca\\xcc\\x0d\\x1e\\xfb\\x59\\x3f\\x48\\x1e\\xff\\x20\\x24\\x64\\x38\\xb5\\x19\\x4d\\x09\\x66\\x4d\\x91\\xb3\\x48\\x53\\xb7\\xae\\x29\\x8d\\x3f\\xc3\\xec\\x67\\xce\\xfb\\x1e\\x77\\xb9\\x8d\\x61\\x09\\xb2\\xbd\\xca\\x84\\x28\\x4e\\xbf\\xe0\\xe0\\x4a\\xdc\\xfc\\x90\\xf0\\xfe\\x87\\x66\\x3e\\x25\\x65\\xc4\\x89\\x92\\x83\\xfc\\xb9\\x16\\x77\\xa0\\xca\\x47\\x2e\\xf6\\x53\\x8e\\x98\\x55\\x06\\x56\\x58\\x34\\x02\\x5c\\x23\\x36\\x23\\x25\\x0e\\x0e\\x0a\\x4b\\x06\\x1d\\xc6\\x9a\\xbe\\xe2\\xa6\\x91\\xda\\x54\\xa6\\x3a\\xff\\x75\\x95\\x39\\x25\\x26\\x7f\\xf4\\xd9\\x1d\\x23\\x57\\x36\\x96\\x12\\xa7\\xef\\xa4\\x67\\x47\\x9b\\xa1\\x69\\xeb\\xb9\\xe6\\x03\\xc0\\x6e\\xcf\\x59\\xbf\\xe7\\x78\\xfb\\xd8\\xf7\\x2f\\x2e\\x77\\x6e\\x7a\\x71\\x3b\\x1e\\xa2\\x3a\\xf6\\x08\\x9f\\x4a\\x36\\x11\\x27\\x32\\x20\\x2b\\xca\\x74\\xa5\\x87\\x00\\x46\\x46\\x9d\\x1c\\x09\\x93\\xb5\\x41\\x0a\\xa8\\x6e\\x76\\xb4\\x09\\xbb\\x2d\\x6e\\xcc\\xcd\\x36\\xe8\\xe3\\xd5\\x82\\xf6\\xc5\\x0a\\x6b\\x53\\x8c\\x20\\x04\\x5a\\xb6\\x72\\x6e\\x2a\\xad\\x44\\xa6\\x93\\x97\\x32\\x36\\x71\\x59\\xc6\\x11\\xeb\\x1f\\xec\\xcf\\xdc\\xba\\x6b\\x65\\x66\\xa9\\x49\\x8e\\xe3\\xec\\x9d\\x65\\x9a\\x92\\x65\\xae\\xe6\\x03\\xfd\\x85\\x39\\x83\\x8f\\x4d\\x78\\xbd\\x95\\xcb\\x8a\\x13\\xb0\\x2a\\xb3\\x2a\\x4b\\xab\\x81\\xc8\\xa8\\x55\\xa7\\x5f\\x19\\x78\\x12\\xe4\\xdd\\xfb\\xcd\\x2b\\x86\\xd6\\xe6\\xbb\\x76\\x0d\\x2f\\x88\\xc1\\xcf\\xe7\\x78\\xaa\\xcd\\x0b\\xef\\x7b\\x73\\x74\\xe5\\xcb\\x67\\x56\\x45\\xf1\\xb9\\x78\\x4d\\x4c\\xfb\\xba\\xdd\\x65\\x35\\x87\\x87\\xab\\x72\\x4c\\x82\\xfd\\xce\\xa7\\x91\\x5d\\xc4\\x89\\x74\\xc2\\x1c\\x49\\x55\\xc4\\x00\\x11\\x43\\x27\\x80\\x3c\\x84\\xc1\\x0c\\x42\\x16\\xf0\\x07\\x05\\x55\\x71\\x71\\xa2\\x30\\x85\\x55\\x16\\x9b\\xac\\xca\\x18\\xc5\\xad\\xee\\x04\\xfc\\x72\\xfd\\x40\\x59\\x12\\xce\\x35\\xbe\\x9e\\x92\\x9d\\xb3\\xe6\\xa9\\xed\\xde\\xbe\\x07\\xd6\\x16\\x78\\xb5\\x25\\x8b\\x6d\\xc4\\x39\\xdd\\x1e\\xb3\\x78\\xe2\\x70\\xd5\\x01\\x40\\xdb\\x7b\\x66\\xd0\\x63\\x6b\\xde\\x7a\\x68\\x28\\x92\\x77\\xc0\\x77\\x22\\x3b\\xcf\\x7c\\x78\\x37\\xfc\\x86\\x57\\xaf\\x3a\\xbf\\xae\\x32\\x8a\\x79\\x8a\\xae\\x99\\x2d\\x33\\x9f\\x92\\x43\\xc4\\x89\\x72\\x04\\xeb\\xc5\\x00\\xa2\\x03\\x86\\x41\\x0c\\xa0\\x51\\x09\\x87\\x19\\xc6\\x42\\x5d\\x48\\x64\\x89\\xa0\\x1b\\xe6\\x12\\xa1\\x89\\x39\\x28\\x47\\x6f\\x52\\xe9\\xe4\\x26\\xa9\\xa0\\x66\\x71\\x58\\x22\\x8e\\x34\\xda\\x34\\x65\\xf0\\xeb\\x8b\\xad\\x9e\\x63\\x22\\xe7\\xc7\\x38\\x60\\x7d\\xa6\\x13\\x87\\x27\\x65\\xa5\\x56\\xba\\xaf\\xbb\\x2b\\x52\\xb3\\x93\\xc2\\xb1\\x33\\xf3\\x9b\\x69\\x05\\x9a\\x9a\\xb1\\x05\\x5d\\x93\\x29\\xda\\x2d\\x5d\\x0b\\xc6\\x6a\\x34\\x05\\x69\\xc4\\xb9\\x83\\xbf\\x71\\x70\\xe1\\x03\\x9b\\x6b\\x2f\\x5f\\x05\\x0b\\xff\\xc1\\xd5\\xcb\\xb5\\x1b\\xcf\\x2f\\x3a\\x08\\xec\\x8e\\x5e\\x7e\\xfa\\xd2\\xba\\xef\\x3d\\xb2\\x62\\x78\\x60\\x60\\x78\\xc5\\x23\\xdf\\x5b\\x77\\x09\\x88\\xdf\\x0e\\x3b\\x33\\xf3\\x29\\x39\\xcb\\xbe\\x85\\x32\\x91\\x13\\x1d\\x74\\x45\\x66\\x02\\x10\\x6b\\x7a\\x1c\\x46\\xac\\x30\\x5b\\x02\\xda\\x25\\x10\\xc1\\x32\\x1b\\x0d\\xb8\\x22\\xf3\\x82\\xba\\x6e\\x6e\\x50\\x57\\xb8\\xe5\\xa2\\x9c\\x79\\x17\\x7d\\xc1\\x43\\x3c\\x1e\\x57\\x48\\x81\\x3d\\xd3\\xa0\\x30\\xb1\\x82\\x8e\\xcc\\x49\\x66\\xa7\\x80\\x83\\x4e\\x0e\\xa5\\xdd\\x66\\x9b\\xeb\\x80\\x91\\xd9\\xed\\x0e\\xd1\\x97\\xe5\\x57\\x49\\xcf\\x56\\x36\\x95\\x8e\\x5e\\x58\\x31\\x70\\x79\\xa2\\xfc\\xba\\xbe\\x6a\\x45\\xe9\\xc6\\x5d\\x23\\xcf\\xed\\xac\\xc9\\xeb\\x9c\\x6c\\x68\\xd9\\xb1\\x38\\x4b\\x57\\x95\\xe2\\x3b\\x91\\xd6\\x34\\x5a\\xdb\\xd0\\x5c\\xd9\\x86\\xc7\\xd5\\xd2\\x87\\x87\\x9f\\xdc\\x50\\x5c\\xbe\\xe9\\xf1\\x55\\xd0\\x8c\\xf9\\xa9\\xea\\x75\\x4d\\x66\\x38\\x79\\xea\\x72\\x74\\xd7\\xc1\\xa7\\xfb\\xa3\\xda\\x76\\x77\\x65\\x5b\\x97\\x1f\\xee\\xe4\\x2f\\x30\\x11\\x52\\x68\\x2f\\x1b\\x5b\\x52\\x11\\x0d\\x8b\\x87\\x57\\x7b\\xfa\\xfd\\xfe\\xcc\\xc7\\xd8\\x97\\x90\\x1e\\xed\\x72\\x45\\xc5\\x49\\x31\\x20\\x9d\\x3a\\x26\\x2a\\xc4\\x2f\\xae\\xd0\\x00\\x9b\\x8f\\xa8\\xf2\\x50\\x47\\xb0\\x19\\x07\\x34\\xc4\\x39\\x67\\x72\\x66\\xcf\\x44\\x7e\\xce\\x3d\\xb7\\xbb\\x5c\\xd0\\x8e\\xf4\\xfa\\x58\\xbd\\xb8\\x6d\\x89\\x35\\x6c\\x24\\xd4\\x8a\\xa0\\x96\\xb7\\xa0\\x7c\\x04\\x55\\x25\\xb9\\xca\\xc1\\x14\\xc6\\x17\\x94\\xd5\\xa4\\x25\\xda\\x12\\x94\\x91\\x1a\\x5d\\x51\\x0c\\xff\\xa3\\x6b\\xfc\\x0f\\x63\\x8a\\x74\\x49\\x91\\xaa\\x04\\x5b\\x92\\xa9\\xa6\\xac\\x30\\xfe\\x39\\xb5\\x9a\\x7c\\x58\\xd6\\x69\\x57\\x49\\x64\\x27\\x43\\x8c\\x69\\xbe\\xad\\xbe\\x97\\xb1\\x0b\\x1f\\x32\\x99\\x42\\x4e\\xca\\x24\\x2a\\x7b\\x67\\x19\\x3f\\xd4\\xd9\\x89\\x30\\xcd\\xdd\\x39\\x45\\x9c\\x28\\x1e\\xe5\\x23\\xbb\\xcb\\x1a\\x0e\\x9c\\x60\\xb5\\x4a\\x10\\x87\\x24\\xdc\\x28\\xdd\\xf4\\xfd\\xcb\\xaa\\x14\\x38\\x2e\\xe8\\x0c\\xd2\\xc9\\x4d\\xb1\\x32\\x95\\xde\\x14\\x1d\\x22\\x49\\xb2\\x80\\x6e\\xd6\\xb9\\x11\\x18\\xdc\\x76\\x87\\xce\\xa6\\x65\\x8c\\x46\\x93\\x96\\xe3\\x02\\x13\\xc2\\x66\\xf5\\x83\\x61\\xc8\\xa9\\x1d\\x29\\xe9\\x49\\xe5\\x6b\\x9a\\xbb\\x26\\x53\\x52\\xb6\\x74\\x35\\xaf\\x29\\x4f\\x32\\x6b\\x87\\xc8\\xe0\\x1f\\x71\\xb6\\x91\\x8f\\x30\\x66\\xe3\\x50\\xb5\\x49\\x53\\xd9\\x70\\xbd\\xa1\\x32\\xc9\\xa4\\x0e\\x65\\x2e\\xae\\xbe\\x71\\xb7\\xe7\\xd1\\xed\\xee\\xe1\\x55\\x03\\x23\\xee\\xed\\x8f\\x7a\\xee\\xbe\\xb1\\xfa\\xac\\x6f\\x62\\x9b\\x6f\\xcb\\x16\\xdf\\xb6\\xa2\\xe1\\x05\\x79\\x97\\xaf\\xde\\xb8\\x71\\xf5\\x72\\x6e\\xfb\\x88\\x30\\x7f\\xd3\\x67\\xfe\\x4e\\xb6\\x51\\xdf\\xe4\\xf7\\xc5\\xcf\\x96\\x1c\\x00\\x16\\x70\\x80\\x90\\xc4\\x83\\x24\\x12\\xa5\\x98\\x34\\xc1\\x02\\xc6\\xaa\\xe0\\x37\\xbc\\xe3\\x65\\x9a\\xe0\\x07\\xfd\\x12\\x4f\\xcb\\xf8\\x32\\x4f\\x73\\xe9\\x6e\\x77\\x05\\xcb\\xaa\\x82\\x09\\x1d\\x1a\\x3a\\x2a\\x3c\\xae\\x30\\x99\\x4c\\x56\\x23\\x53\\x96\\x47\\x4b\\xb9\\x44\\x0b\\x68\\x03\\x49\\xc5\\xb1\\x9c\\x8e\\xa2\\xd3\\x82\\x34\\x61\\xc2\\x7e\\x56\\xc2\\x23\\x4d\\x49\\xf2\\xda\\x27\\x36\\x14\\xbf\\xf3\\x75\\xec\\x6c\\xcb\\x55\\xc2\\xee\\x43\\x29\\xc5\\x9a\\x6b\\xfc\\x25\\x22\\x67\\xd5\\x7c\\x21\\x26\\xae\\x8d\\x57\\x56\\xbf\\xf5\\xbd\\xfb\\x0c\\x55\\xbd\\xc5\\x47\\x1e\\x22\\xd8\\xd7\\xc6\\xaa\\x45\\x7f\\xf9\\xee\\x99\\x4f\\xc9\\x1a\\xf6\\x4d\\x94\\x8d\\xca\\x5d\\xa5\\x82\\x51\\xc9\\x60\\x32\\x2a\\x05\\x09\\xcb\\xb1\\x12\\x6e\\x14\\x11\\xc4\\x4a\\xc8\\x6c\\x85\\x94\\xa4\\x20\\xe1\\xa8\\x86\\x9a\\xf7\\xd9\\x28\\xdb\\x20\\x53\\xe8\\x63\\xcd\\xfa\\x10\\x2e\\xc1\\x5f\\x22\\x67\\xd6\\xd4\\x0c\\x52\\xe9\\x2b\\xb4\\x73\\x80\\x07\\x64\\x4d\\x68\\xdd\\xf6\\xa9\\xb1\\x89\\x97\\xf6\\xd6\\xd4\\xec\\x7d\\x69\\x62\\x6c\\x6a\\x7b\\x5d\\xa8\\x37\\x34\\xa3\\x61\\xd8\\xdd\\xb2\\xa9\\xcd\\x8c\\x8b\\x7c\\x6f\\x9a\\xdb\\x36\\xb5\\xb8\\x87\\xdd\\x96\\x50\\x78\\x71\\xe5\\x13\\x93\\x95\\x1d\\x0f\\xfe\\xd7\\x5e\\x28\\xdc\\xfb\\xe3\\xf3\\x1d\\x65\\x9b\\xbf\\x3a\\xe2\\xde\\xd8\\x9a\\x5e\\x39\\x71\\x71\\x99\\xfb\\x4c\\x67\\xcf\\xc5\\x8d\\x95\\xa6\\xa6\\xf1\\x26\\x61\\xdd\\xd3\\x20\\x44\\x1e\\x64\\xa7\\x50\\x22\\x32\\x23\\xa7\\xcb\\x81\\x50\\x08\\x48\\x08\\x92\\xf4\\x21\\x8c\\x59\\x8f\\x14\\x58\\x56\\x49\\xcb\\xf1\\x42\\xb7\\x30\\x09\\x55\\xd0\\x98\\x94\\x84\\x50\\x92\\x39\\x29\\x2d\\x45\\x83\\x12\\x51\\xa2\\xd6\\x20\\x4b\\xd3\\x86\\x72\\x71\\x16\\x90\\x59\\xe7\\xa0\\x62\\x98\\x58\\xcc\\x71\\x3a\\x9d\\xcd\\x9a\\x17\\x23\\x97\\x0b\\xa7\\xfc\\xbe\\x3a\\xfc\\x49\\xf7\\xc2\\xdd\\x8b\\x33\\x32\\x16\\xef\\x5e\\xc8\\x7f\\xfa\\x26\\x24\\xd7\\x6c\\x58\\x94\\xa2\\xac\\x73\\x00\\x83\\xf3\\xbb\\x33\\x4a\\x0c\\x32\\x99\\xb1\\xc4\\xc2\\x4e\\xf9\\xbe\\x55\\xbd\\xe9\\x91\\x65\\xcb\\x1e\\xd9\\x54\\xc5\\xaa\\x7d\\x9f\\x5e\\xe3\\x3f\\x7a\\x6b\\xd5\\x69\\x28\\x82\\x3c\\xfc\\x94\\x2f\\xdb\\x77\\xcd\\xba\\x60\\xc8\\x61\\x1f\\x6c\\xcf\\x43\\x18\\xed\\x45\\x88\\x1c\\xf1\\xd7\\x5b\\xea\\xf1\\x73\\x12\\x60\\x40\\x21\\x52\\x4c\\x24\\x48\\x18\\x29\\x00\\x4a\\x37\\x92\\x48\\x98\\x25\\x2c\\x30\\x8c\\x8a\\xa1\\xc3\\x08\\x87\\x80\\x94\\x60\\xa9\\x60\\x78\\x09\\x57\\xf5\\xde\\x7a\\x95\\xc7\\x25\\x53\\xa9\\x54\\x3a\\x55\\x6a\\xaa\\x4c\\x26\\x4b\\xd3\\xca\\xa2\\x43\\x85\\x91\\x64\\x95\\x59\\x67\\xfb\\xa8\\x13\\x14\\x74\\x99\\x75\\x4e\\xd7\\xa0\\xe8\\xb3\\x6b\\xb9\\xdd\\x87\\xba\\xb3\\xb2\\xba\\x0f\\x75\\xff\\xee\\xb3\\x6b\\xd7\\xe0\\xd9\\x5c\\x6b\\xb5\\x25\\x46\\x9e\\x5e\\x6d\\x65\\x0a\\xf1\\x26\\xdf\\xe9\\xd2\\x75\\x67\\xba\\xba\\x1e\\x18\\x2b\\x17\\xeb\\xc8\\x4c\\xcf\\xf8\\xfe\\x92\\xd9\\xd0\\x63\\xb5\\x2e\\xab\\xa3\\xf5\\x7b\\x2a\\x11\\x22\\x83\\x34\\xbf\\x35\\xd7\\x95\\x85\\x81\\x81\\x58\\x31\\x43\\xc4\\xcf\\x62\\xc1\\x82\\xdf\\x9a\\x50\\x52\\x5f\\xbd\\x0a\\x37\\xca\\x64\\x31\\x06\\x85\\x2e\\x5a\\x22\\x8c\\x1f\\x61\\x94\\xab\\xe6\\x92\\x44\\x06\\x06\\xb8\\x8b\\x57\\x26\\xda\\xe3\\xfb\\x1e\\x5c\\xeb\\xf4\\x26\\x16\\x79\\x4a\\x0a\\xf2\\xbd\\xfc\\x65\\xc6\\xc7\\xaa\\xf9\\x62\\x42\\x20\\x6b\\xc5\\x99\\xd5\\xbc\\x03\\xbe\\x5d\\xd5\\x53\\x9c\\xc0\\xf9\\x2a\\x85\\x91\\x0d\\xe8\\x11\\xfe\\x2c\\x8d\\x03\\x85\\x89\\x75\\x84\\x18\\x42\\x33\\x33\\x94\\xd4\\xeb\\xd6\\xe5\\x17\\x90\\x3f\\xba\\xc4\\xc5\\x5b\\xe4\\x34\\x01\\x5e\\x8c\\x09\\x3d\\xe2\\xc5\\x4a\\x2f\\xff\\xa0\\x97\\x3f\\xc1\\x4e\\x7d\\xf6\\x31\\x1b\\xf7\\x59\\x2b\\x7f\\x16\\x56\\x09\\x63\\xec\\x11\\x7f\\x5d\\x97\\x68\\x94\\x24\\xd8\\x24\\x08\\x38\\x60\\x09\\xb0\\x14\\xb4\\xe1\\x41\\x0c\\xa3\\x0c\\x66\\x36\\xd1\\x7e\\xc9\\x92\\x64\\x89\\xa9\\xb2\\x34\\x6d\\xb4\\x84\\xa3\\x95\\x8a\\xe6\\xe0\\xad\\xb4\\x30\\x0b\\xb7\\x22\\x49\\xbe\\x32\\x08\\xdd\\xf0\\x82\\xa0\\x25\\xbf\\xb0\\x81\\x2f\\x66\\xb6\\x0a\\x7f\\x37\\xaf\\x6f\\xd0\\xe9\\x1a\\xd6\\x37\\xb3\\x6a\\xbe\\xbc\\x78\\xdd\\xf9\\xde\\xe5\\x0f\\x8f\\x95\\xb1\\x53\\xbe\\x18\\xdf\\x07\\x59\\xcd\\xab\\x0a\\x0b\\xfa\\xea\\x2d\\xe2\\x7e\\x5f\\xc3\\x9f\\x25\\x9b\\x69\\x9b\\x54\\x82\\x66\\x8c\\x01\\x31\\xa8\\x0d\\x49\\x24\\x74\\xf5\\x56\\xba\\x69\\xee\\x15\\x8d\\x54\\xa9\\x68\\xa4\\x4a\\x49\\x31\\xf8\\x1c\\xcd\\xf2\\x13\\x06\\xb8\\xb5\\x94\\x71\\xc8\\xb5\\x32\\xab\\xa0\\xbf\\x68\\x65\\x5a\\x32\\xf0\\x15\\x5f\\xd9\\x83\\x09\\xe5\\x59\\x35\\x79\\x1a\\x36\\x05\\x1f\\xda\\xe9\\x3b\\x1e\\x52\\xe1\\x82\\xaf\\xf3\\x1f\\xf1\\x0f\\xc0\\x4a\\xfe\\x2c\\xf0\\x9a\\xf5\\x57\\xff\\xf2\\x30\\xae\\xff\\xec\\x63\\xfc\\xfe\\x5f\\xf8\\xe3\\xeb\\xc9\\x6e\\x04\\x28\\x89\\x62\\x33\\xa7\\x90\\x42\\xf8\\xe6\\x72\\x29\\x46\\x2c\\x34\\x48\\x80\\xd6\\x6a\\x60\\x51\\xaf\\x94\\xc3\\x42\\x4b\\x42\\x04\\x9d\\x59\\x05\\x8d\\x22\\x7b\\x0e\\xad\\x6b\\x1a\\xca\\x09\\x9b\\x88\\x30\\x04\\x19\\x1d\\x30\\x56\\x39\\x1d\\x9a\\x72\\x2b\\x03\\x3a\\x7c\\xc3\\xfe\\x62\\xe9\\xbb\\xbf\\x81\\x88\\xdf\\x7c\\xf8\\x74\\xf5\\x8b\\xa5\\x5f\\xfd\\xd1\\x6f\\x21\\xf2\\xd7\\xf8\\x88\\x6f\\x82\\xfe\\x7c\\x88\\xff\\xcb\\x37\\x8e\\xef\\xa1\\x3f\\x66\\x9f\\xc9\\x6f\\xf3\\x7e\\x42\\x46\\xd9\\x37\\x90\\x13\\x35\\xbb\\xdc\\x09\\xb7\\xad\\x21\\x2b\\x85\\x9b\\x8a\\xc8\\x26\\x05\\x8b\\xc8\\x6a\\x48\\xa3\\xe8\\xc8\\x37\\xa7\\xe9\\x53\\x63\\x63\\xa8\\x0f\\xd6\\x09\\xce\\x10\\x2e\\xd6\\x02\\xfe\\x90\\xfe\\xbc\\x5a\\xb2\\xdc\\x3c\\x5a\\x9c\\xf9\\xa5\\x64\\x6d\\x78\\xd5\\x85\\x73\\xe6\\xf6\\xc9\\xf6\\xb2\\xd1\\xf6\\x5c\\x6f\\xcb\\xc1\\x67\\xfb\\xc6\\x5f\\x39\\xd8\\x00\\x3b\\x47\\xb6\\x1f\\x6c\\xbb\\xf7\\x8d\\xf1\\x9e\\x17\\x8f\\x75\\x5d\\xcf\\x59\\xbc\\xb9\\xae\\x6d\\x77\\x77\\x4e\\xe6\\xe2\\xed\\x2d\\x2f\\x32\\x79\\x70\\x70\\xd4\\xb1\\xac\\x26\\xcd\\x50\\xb9\\xc4\\xbe\\xf4\\xe4\\xaa\\x82\\xfc\\xc1\\xf3\\x03\\xab\\x1e\\xcb\\x49\\x7f\\x72\\xf7\\xaa\\x0b\\xc3\\x05\\xb9\\x83\\x17\\xd7\\x15\\xf6\\x37\\x58\\xd2\\xea\\xfa\\x8b\\xab\\xfb\\xca\\x93\\xe7\\xc7\\x39\\x69\\xcd\\x9f\\x10\\x82\\x03\\x94\\x79\\x4a\\x4a\\x99\\xa7\\xf2\\x13\\xc8\\x71\\x7e\\xb2\\x2e\\xd0\\xc9\\xac\\x0c\\xb3\\xde\\xeb\\x05\\xdf\\xef\\xbc\\x5e\\x60\\xa7\\x3e\\x6b\\x25\\xb9\\x37\\xde\\x63\\xa7\\x6e\\xbc\\x8f\\x00\\x65\\xd3\\xda\\xc0\\x53\\x48\\x86\\x4c\\x94\\x56\\x9a\\x78\\x04\\x2d\\x57\\xe9\\x0e\\x22\\xf5\\x54\\x74\\xb1\\x97\\x21\\x99\\xd6\\x20\\x93\\x71\\xc2\\x43\\x85\\x89\\xc2\\xd0\\x15\\x44\\x58\\x1c\\x65\\x72\\x62\\xf1\\xf2\\xdd\\xd8\\xb8\\xe8\\x70\\xbf\\x35\\x6d\\x60\\x11\\x11\\x5e\\xc0\\xaa\\x7d\\xc7\\x1e\\xf1\\x3d\\xdd\\x7d\\x1a\\x22\\x04\\xe3\\x1d\\x01\\xb2\\xcc\\x7c\\x42\\x5e\\xa0\\x6b\\x83\\xc9\\xa5\\x57\\x47\\x00\\x83\\x51\\x38\\xcd\\x5c\\x13\\x1b\\x8e\\xfc\\x5c\\x7c\\x1a\\x68\\x54\\x9a\\x0c\\x31\\xb4\\xf1\\x01\\x2a\\xbe\\x60\\xda\\x1a\\x25\\xe2\\xcb\\xae\\x85\\xc1\\x0f\\x7d\\xbf\\x53\\x15\\x2d\\xdc\\xb4\\xa0\\x6a\\x28\\x5e\\x1d\\x61\\xb0\\x58\\xe4\\x59\\x35\\xf9\\xfa\\x88\\x74\\x3e\\xf2\\x7d\\xfc\\x8f\\xd7\\x98\\xcd\\x37\\x5c\\xf9\\x3d\\x75\\xe9\\xea\\xb0\\x7b\\x98\\x10\\x29\\x9b\\x90\\x51\\x90\\xb8\\x88\\x94\\x0a\\x72\\xbb\\xcc\\x5f\\xa4\\x31\\x7e\\xff\\xba\\x00\\xa4\\x5d\\x5c\\x17\\x84\\x6d\\x81\\xed\\x12\\x76\\x62\\xf6\\xd6\\x75\\xc1\\xca\\xe8\\x64\\xda\\xcb\\x5e\\x1c\\xe2\\x3d\\x1e\\x73\\x79\\xfa\\x49\\xff\\xba\\xf0\\x29\\xcf\\x42\\x8f\\xf0\\xcc\\x2b\\x08\\x11\\x13\\x8d\\xe3\\x66\\xbb\\x32\\xd4\\xc0\\x60\\x46\\xe4\\x1f\\x67\\x84\\x55\\x0f\\xfa\\x58\\x82\\x31\\x56\\xba\\x51\\x40\\x8e\\x62\\xa1\\x95\\xa0\\x1c\\x03\\x9b\\xe6\\x6c\\x82\\x20\\x31\\x79\\xb5\\x15\\xb5\\x6d\\x39\\xbd\\x67\\x06\\x1d\\xde\\x04\\xc7\\xc2\\xc2\\x05\\xc7\\xea\\x68\\x85\\xbe\\xee\\xf0\\x98\\x48\\x49\\xee\\xda\\x27\\xb7\\xc0\\xdb\\x7c\\xc1\\xa2\\xf5\\xd5\\x49\\x49\\x6a\\xfc\\x92\\xe8\\xf3\\xd9\\x8e\\x10\\x69\\xa5\\xfd\\x32\\xb8\\x52\\x39\\x96\\x61\\x84\\xdd\\x80\\x9a\\x2c\\x5d\\x88\\x10\\x15\\xb5\\x58\\xc2\\x50\\x18\\xed\\x9a\\x44\\xdc\\xe8\\xfc\\xff\\xd7\\xca\\xc0\\xfe\\xc1\\xb5\\x0f\\xae\\x4d\\x67\\xfa\\xfb\\x45\\xd7\\xbc\\x40\\xfd\\x95\\xed\\xfc\\x45\\xf2\\x24\\x1d\\x1b\\x99\\xae\\x74\\xc4\\x22\\xb6\\x5d\\x2a\\x11\\x1f\\x4e\\x30\\x46\\x88\\xeb\\x42\\x1c\\xa7\\xe2\\xfc\\xc3\\x43\\xf8\\x5f\\xae\\x4c\\x46\\x75\\x01\\xf1\\xe9\\x14\\x5b\\x44\\xc5\\x47\\xdf\\x72\\xd2\\x75\\xad\\x2b\\xe6\\xd2\\xf4\\xe1\\xc0\\x9b\\x80\\x55\\x7f\\xf6\\x5b\\x3e\\x04\\x7a\\xd8\\x29\\x84\\x51\\x9e\\xbf\\x5e\\xca\\x2d\\xeb\\xab\\xdf\\x81\\x7c\\xa7\\xf5\\x55\\x58\\xc4\\xe6\\xad\\xaf\\xc1\\x09\\x99\\x07\\xbf\\x3f\\xb6\\xee\\xa9\\x89\\x92\\x92\\x89\\xa7\\xd6\\xf1\\x2f\\xf2\\xef\\xc1\\xef\\x8f\\xd5\\x0f\\x56\\x26\\x27\\x57\\x0e\\xd6\\xb3\\x53\\xbe\\x27\\x4a\\xd6\\x9d\\x5f\\xde\\x73\\x61\\xdc\\xc5\\xaa\\x7d\\x4f\\xfa\\x3e\\xc8\\x6e\\x5e\\x55\\xe0\\xe8\\x6b\\xb0\\xd0\\xf8\\xfc\\x31\\x3f\\x3e\\x25\\x92\\x56\\x3b\\x12\\xfa\\x8f\\x24\\xc0\\xb1\\x88\\xeb\\x13\\xf6\\x2e\\xaa\\xb7\\xc1\\x12\\xbf\\x3e\\x21\\x97\\xcb\\x93\\xe5\\x1a\\xba\\xd3\\xa6\\x48\\xb9\\x78\\x0b\\xcc\\x69\\x8d\\x15\\x6e\\xda\\x63\\xeb\\x97\\xf4\\xdc\\xd7\\x97\\x97\\xd7\\x77\\x5f\\x0f\\xff\\x89\\x97\\xc1\\x5e\\xef\\x34\\xbf\\xc4\\xd1\\x9c\\xa3\\x54\\xe6\\x36\\x39\\x18\\x4f\\xc9\\xba\\x07\\x7b\\x68\\x8b\\x84\\x49\\x44\\x97\\xfc\\xec\\x96\\x81\\x02\\xc7\\x8a\\x86\\x0c\\x3f\\xee\\xb7\\xcd\\x5f\\xdf\\xca\\xec\\x32\\x22\\xc4\\x02\\x61\\x10\\x11\\xf4\\x1c\\x3a\\x61\\xe9\\x0c\\x52\\x41\\x63\\x54\\x54\\x54\\x42\\x54\\x7c\\xaa\\x2c\\x2d\\x85\\x8e\\xb3\\x39\\x7b\\x8f\\x55\\x36\\x0f\\xea\\x3b\\xbb\\xf3\\x94\\x78\\x67\\xb7\\x1d\\xc6\\xf3\\xb9\\x9b\\x0e\\xa0\\xb1\\x99\\x4f\\xc9\\x82\\xa0\\xce\\xe8\\xc7\\xb3\\x4a\\x41\\x02\\x08\\x24\\x88\\x86\\xbc\\x24\\x18\\x04\\x9d\\x91\\x32\\xe0\\x25\\x09\\x23\\x9f\\x96\\xf1\\xd4\\x70\\x7e\\x9d\\xd1\\xac\\x8f\\x15\\xd4\\x46\\x3a\\x4e\\x02\\x04\\xf4\\x94\\x80\\xdf\\x4f\\x43\\x35\\x5b\\xf6\\xc3\\x0f\\xf1\\x05\\x0b\\x98\\x1a\\x86\\x6b\\x9b\\x27\\x17\\x66\\xf2\\x89\\xf0\\xab\\x8c\\x85\\x93\\x2d\\xb5\\xc3\\x0d\\x26\\xf0\\x42\\xe5\\xf6\\xa9\\x91\\x89\\x57\\x0f\\xd4\\xd7\\x1f\\x78\\x75\\x62\\x64\\x6a\\x7b\\x25\\xc0\\xf7\\x1a\\xb7\\x76\\xe4\\xb8\\xc6\\x1e\\x5a\\xd6\\x75\\x7a\\xe9\\xb2\\x0b\\x63\\xae\\x9c\\x8e\\xed\\x8d\\x2b\\x9f\\xdd\\xd7\\xb8\\xf0\\xec\\x87\\x7b\\xf9\\xe7\\xf7\\xfe\\xf0\\xec\\xc2\\xea\\x9d\\xcf\\x8d\\x04\\x72\\xad\\x57\\xd3\\x5a\\x67\\xb9\\x82\\xde\\x15\\x47\\x15\\x78\\x82\\x40\\x42\\xa0\\x97\\x06\\xc3\\x05\\x3d\\x41\\x29\\x12\\xa9\\x08\\x53\\x49\\x23\\x18\\xbe\\xa6\\xe0\\x15\\xf4\\x9c\\x9f\\x0b\\x3e\\x49\\x58\\xbd\\x54\\x41\\xce\\x15\\x0d\\x6a\\xf4\\xb8\\xc2\\xcc\\x26\\x83\\x4c\\x26\\x53\\xe8\\xe9\\x7e\\x1b\\x74\\x98\\x51\\x8d\\x4b\\x66\\x0d\\x9a\\xbe\\xa6\\xfc\\x59\\x8c\\x86\\xe8\\x99\\x5c\\x9d\\xb5\\xe4\\x50\\xd7\\xe2\\x3d\\x1d\\x19\\x63\\x5e\\xef\\x98\\xa5\\x63\\xcf\\xe2\\xee\\x43\\x4b\\xb2\\xbc\\x6d\\xfd\\x99\\xa5\\xc6\\xe8\\x68\\x63\\x69\\x56\\x5e\\x75\\xba\\x1c\\x33\\x3b\\xbf\\x75\\xa8\\xae\\xee\\xd0\\xb7\\x76\\x4e\\xfa\\xf6\\xb2\\x53\\xbe\\xfe\\x33\\x3b\\xbf\\x75\\xb8\\xae\\xee\\xf0\\xb7\\x76\\xe2\\x97\\x5f\\xce\\x5e\\x76\\xcf\\x32\\x7e\\x51\\xcf\\xd1\\x65\\xd9\\xd9\\xcb\\x8e\\xf6\\x50\\x3d\\xa1\\x1c\\x21\\x62\\xa4\\x7c\\x00\\x89\\xc8\\xea\\xca\\x61\\x6f\\x5b\\xb7\\x4b\\xe9\\xe6\\xfc\\xbb\\x34\\x42\\x71\\x2a\\x65\\x2c\\x8a\\x42\\x51\\x69\\xc2\\x7a\\xa1\\xb2\\x08\\x73\\x4a\\x07\\xfe\\xc8\\xa3\\x56\\x46\\x1d\\x7e\\x56\\x19\\xa5\\xe9\\x1b\\xe6\\xdf\\xe1\\xdf\\x7b\\x13\\x16\\xdd\\x7d\\xa2\\x76\\xff\\x2b\\x13\\xf0\\xac\\x2f\\xc4\\xdc\\xba\\xb9\\x79\\xe6\\x5f\\xad\\x5b\\xda\\xd3\\x71\\x8f\\xef\\x22\\xbe\\xdf\\xfa\\xf2\\x91\\xfe\\x07\\xd7\\x14\\x7c\\xd6\\x4a\\x22\\x8b\\x06\\xdc\\xe9\\x38\\xc5\\x50\\xdd\\x47\\xf3\\x22\\x3e\\x25\\xb5\\x9c\\x0c\\x65\\xa1\\x2a\\x54\\xe0\\xb2\\xa5\\x07\\xd8\\x3d\\xf1\\x18\\x0b\\x48\\x2c\\xa5\\x1b\\xac\\xdb\\xa6\\x81\\xc6\\x9c\\x6c\\x40\\x45\\x85\\xd9\\x55\\x39\\x55\\x9a\\xa4\\xf0\\x50\\x94\\x05\\x59\\x12\\x6e\\x4e\\x12\\xb1\\x20\\xdd\\x12\\x26\\x3f\\xc6\\x6e\\x77\\xd0\\x24\\xf2\\x48\\x22\\x89\\x64\\x24\\xa5\\x8c\\x6a\\x96\\xf1\\xcc\\xef\\xa0\\xc4\\x07\\x56\\x5f\\xde\\x50\\x52\\xbe\\xed\\xb9\\xb1\\xb1\\xe7\\xb7\\x55\\x54\\xef\\x7c\\x61\\x9d\\xad\\xbb\\xd2\\x78\\x26\\xc9\\x5a\\xdd\\xda\\x99\\x51\\x33\\xb9\\xbc\\x22\\x2a\\xa5\\xb9\\x6b\\x40\\xd1\\x38\\x5a\\xaf\\xa7\\x8e\\xca\\x75\\x0d\\x7a\\x7d\\xc3\\x7a\\x66\\xda\\xbd\\xf7\\xb9\\x21\\xd5\\xfa\\xaf\\x1f\\x6d\\x6d\\x3d\\xfa\\xf5\\xf5\\x2a\\x49\\xf5\\x0b\\x20\\xff\\xc6\\xb8\\x22\\x54\\xa5\\xb3\\x99\\x2b\\x96\\x95\\x9b\\x13\\x63\\x42\\xa3\\x6c\\x5d\\x7b\\x97\\x18\\xca\\x32\\xe3\\xce\\x38\\x96\\x4e\\x56\\xa9\\x1a\\x0f\\xad\\x2a\\x29\\x59\\x75\\xa8\\x51\\x55\\x35\\xb9\\xd4\\x21\\xe6\\x3f\\x3d\\x86\\x10\\xc9\\x21\\x4e\\x14\\x8b\\x92\\x90\\x11\\x95\\xba\\x8a\\x42\\x6f\\x5f\\x5b\\x55\\x3d\\x5b\\x5b\\x55\\x50\\x9a\\x14\\x08\\x19\\xf5\\x29\\x1a\\x45\\x92\\x22\\x51\\xad\\x44\\xb1\\x48\\xae\\x95\\x72\\xb4\\xae\\xa7\\x3f\\xcd\\xc0\\xef\\x64\\x14\\xd4\\x4a\\x9a\\x68\\x69\\xf0\\x27\\x5c\\xea\\x1e\\x83\\x27\\xfa\\x1f\\x9b\\x28\\xeb\\x5a\\x9c\\xdf\\xea\\x48\\x74\\xae\\x3d\\xdb\\xc3\\xff\\x07\\xe4\\x8f\\x6e\\x98\\x58\\xc7\\xff\\xc7\\x9f\\xb7\\xed\\x3f\\xb8\\xed\\x4f\\xc4\\xa9\\xaf\\x1b\\x6d\\x6a\\xda\\x98\\x12\\x9e\\x5b\\xd1\\x9a\\xd1\\x34\\xde\\x64\\x84\\x9f\\xf0\\xd7\\x17\\xb6\\x36\\x2f\\x3c\\xd1\\xd0\\xdc\\x46\\x7d\\xaf\\x2f\\x0a\\xba\\x06\\x71\\xce\\xcf\\xa9\\x53\\xbb\\xfd\\x4a\\xa5\\x2c\\x9a\\xe1\\x82\\x39\\x75\\xe9\\xbe\\xda\\xeb\\xcc\\x38\\x73\\x71\\xba\\xc7\\x8f\\xc1\\xb2\\xf3\\xdf\\x24\\xe7\\x88\\x13\\x45\\xa3\\x38\\x61\\xdc\\x11\\xc0\\x80\\xdb\\x02\\x08\\x27\\xb5\\x9b\\x93\\xb2\\x8c\\x3f\\x49\\x4b\\xc5\\x08\\xa3\\x4e\\xad\\x52\\x52\\x92\\x02\\x99\\x4c\\xa6\\x0c\\xe1\\xe2\\x2c\\x0e\\xbf\\x82\\xca\\x88\\xfa\\x2a\\x44\\x32\\x82\\x9e\\x7a\\xde\\x52\\x64\\x54\\x49\\xa2\\xb1\\xf7\\x48\\xcc\\x57\\x7c\\x11\\x97\\x63\\xe0\\xdb\\x6c\\x94\\x52\\xab\\x86\\xeb\\xfc\\xb3\\xa7\\xb9\\x96\\xbb\\x5e\\xde\\x00\\xa7\\xa6\\x97\\xf2\\x16\\x28\\xe5\\xbf\\x09\\x1f\\xe0\\x88\\x85\\x67\\xf6\\x8f\\x66\\xe0\\x7f\\x0a\\x7d\\x91\\x21\\x44\\x9e\\xa2\\x31\\xca\\xcf\\xd5\\x55\\xd5\\x5f\\xa8\\xab\\x42\\x50\\x57\\x05\\xd0\\xe1\\xbf\\x3b\\xbd\\x45\\x1f\\xfe\\x0c\\xcc\\xfc\\x67\\x3f\\x7c\\xa5\\xc8\\x5b\\xf4\\xea\\x0f\\xf9\\x7f\\x42\\xfa\\xcf\\xe1\\x87\\x7c\\xba\\xf0\\x83\\xad\\x58\\xc2\\x0b\\x2a\\xb4\\x0b\\xbe\\xee\\xfb\\x97\\xef\\x5d\\x04\\xe8\\xe0\\xcc\\x1f\\x48\\x43\\x20\\x5f\\xe0\\x4b\\xea\\xaa\\xc9\\xf3\\x75\\x55\\x31\\x5f\\x20\\xa8\\xab\\x16\\x43\\x31\\xd5\\x55\\xf3\\xec\\xb7\\x94\\x4e\\x9a\\xcb\\xe0\\x48\\x6e\\x51\\x55\\xb7\\xed\\xda\\xa5\\xab\\xec\\x2f\\x77\\x0e\\xb6\\x64\\x7b\\xa1\\x69\\xf7\\x95\\x9e\\xfe\\xcb\\x9b\\x2b\\x56\\x77\\xaf\\x1a\\xaf\\xdf\\xf5\\x54\\x7f\\xf1\\xa6\\xb5\\xcb\\xaa\\xd3\\xbc\\x59\\xed\\xa3\\xe5\\xae\\xd5\\x6e\\xb3\\xb1\\x6e\\xa0\\xec\\xcf\\x78\\x63\\x9b\\x3b\\xb5\\x38\\x33\\x3e\\x3e\\xb3\\xcc\\xe0\\xde\\xb4\\x20\\x23\\xad\\x65\\xa2\\xd9\\xbd\\x45\\x97\\xbc\\xa3\\xa7\\x79\\xf3\\x82\\x74\\x99\\xde\\xe1\\xee\\x2d\\x32\\x55\\xdb\\x92\\x13\\x72\\x5c\\x86\\xac\\x72\\x73\\xcc\\x79\\x04\\xe8\\x92\\xa0\\x1f\\x51\\x9c\\xf0\\x7c\\x5d\\x55\\x7d\\x3b\\x5d\\x55\\x26\\x6c\\x96\\x32\\x66\\xc4\\xeb\\xf5\\xfd\\xe9\\xda\\x35\\xe2\\xbc\\xf1\\x16\\xa3\\x99\\xfe\\x05\\x71\\x4e\\x7f\\x44\\xf7\\x1e\\x61\\xfe\\x9c\\xa4\\x58\\x54\\x93\\x4b\\x1f\\x2a\\xe8\\x57\\x0d\\x81\\xaa\\x65\\xc2\\xa6\\xac\\x76\\xb3\\xe2\\x23\\x63\\x82\\x3a\\x1c\\xf8\\x17\\x5c\\x11\\x93\\x1a\\x31\\xe5\\xf5\\x3e\\x0c\\xc7\\x3f\\xe2\\x73\\xe0\\x6f\\x9f\\xc0\\xbb\\xbc\\x95\\x38\\x79\\x3b\\xbc\\xe3\\xfb\\x87\\xef\\x3d\\xfa\\x7c\\x87\\xb0\\x4e\\x12\\xa7\\x88\\xd9\\x0a\\xea\\xc2\\xea\\x9b\\x75\\x61\\x39\\x92\\xdf\\x46\\x17\\x76\\x50\\xb6\\x5e\\x39\\x31\\x5e\\xe7\\xc7\\x40\\xbf\\xf0\\xe8\\x6a\\x3b\\x63\\x2e\\x74\\x5b\\x64\\x98\\x76\\xe3\\x22\\xff\\xce\\x89\\xdf\\x3c\\xb4\\xe0\\x12\\x14\\xae\\x7f\\x72\\x3d\\xbc\\x27\\xea\\x57\\x87\\x68\\xbd\\x05\\xa7\\x58\\xdf\\x4e\\xea\\xaf\\x6f\\x47\\x65\\xc3\\x60\\xec\\x17\\x4e\\x8c\\x4c\\xc6\\x72\\x71\\x16\\x83\\x5c\\x10\\x0f\\xa3\\x63\\x84\\xfe\\xe0\\x25\\xbf\\xf9\\xd8\\xfb\\x83\\x5d\\x3f\\xf6\\xfe\\xe9\\xef\\x4c\\xf5\\x8d\\xb7\\xf0\\x03\\xbe\\x95\\xf8\\x39\\x5f\\x13\\xe5\\xd3\\x0e\\xc8\\xfb\\x96\\x1a\\xb1\\x6a\\xb7\\xbf\\x07\\xb3\\x1a\\xee\\xbc\\x1a\\xb1\\x26\\xaf\\xef\\x7f\\xbc\\x5e\\x1c\\xed\\x85\\xef\\xf2\\x79\\xc4\\xc9\\x5b\\xe0\\x03\\x34\\xe7\\x79\\xf3\\x72\\x2a\\xe7\\x3e\\x8b\\x7e\\xbc\\x60\\x4e\\x25\\x7d\\x0a\\xb3\\x27\\xb0\\x08\\x00\\x1a\\x44\\x88\\x6c\\x0d\\xdc\\x1f\\xac\\x5f\\x38\\xbb\\x80\\xf8\\x3f\\x7e\\xa0\\x7e\\xe1\\x56\\xbe\\xf5\\x3a\\xdf\\x41\\xe4\\xcc\\x63\\xd3\\x4b\\x98\\xc7\\x4e\\x89\\xeb\\xe6\\x24\\xbf\\x9c\\xb4\\x73\\x08\\x25\\x50\\x26\\x9f\\x14\\x57\\x52\\x56\\x66\\xaa\\x56\\x29\\x97\\xb2\\x52\\x1a\\x3f\\xf0\\x27\\x79\\xc7\\x43\\x63\\x92\\x12\\x73\\x4a\\x0a\\x85\\x72\\xc8\\xac\\x32\\x0d\\xa3\\x98\\x13\\x35\\x30\\xf8\\xb3\\x24\\x6d\\x5a\\x7f\\xda\\xa4\\x62\\xd2\\xbe\\xea\\xc4\\x52\\xef\\xb2\\x93\\x83\\x76\\xc7\\xaa\\x93\\xcb\\xbc\\x4b\\x4f\\xac\\xb2\\x33\\xc9\\x09\\xf6\\x36\\xbb\\xbd\\xcd\\x9e\\xe0\\x3b\\x17\\x6f\\x6b\\xb5\\xdb\\x5a\\x6d\\x09\\xd8\\x34\\x78\\xed\\xde\\x1e\\x19\\x5c\\xe7\\x6b\\xa2\\x97\\xdf\\x7b\\x6d\\x50\\x39\\xf4\\xe2\\xbd\\x3d\\x51\\xfc\\x5a\\x38\\x19\\xdd\\x73\\xf4\\xc5\\x41\\x65\\xc5\\xb6\\x81\\x86\\x98\\xe9\\xdf\\xc6\\x34\\x0c\\x6c\\xab\\xaa\\xdc\\x3a\\xd0\\x10\\xc3\\x28\\x63\\xdc\\x03\\x5b\\x2b\\xfc\\x75\\xf6\\xf9\\xd7\\xc8\\x31\\xfa\\x3d\\xe6\\xda\\x1c\\xea\\x2f\\x61\\x73\\x3c\\xe9\\x85\\xbf\\x5c\\xdf\\x1d\\x73\\x79\\xfa\\x3f\\x89\\x73\\x7a\\x29\\xf3\\xe8\\xf4\\x52\\x3e\\x0d\\xca\\x03\\x75\\x80\\x4d\\x81\\x5c\\x0b\\x39\\xd0\\xc1\\x32\\xc7\\xe6\\x10\\xe7\\x82\\x68\\x72\\xc8\\x75\\x0a\\x5d\\xb4\\x30\\x80\\xb4\\xc1\\xb2\\x09\\x32\\x2b\\x4d\\x3d\\xb3\\x3b\\xe8\\x47\\xaf\\xba\\x6f\\x51\\xff\\x23\\xe3\\xa5\\x5e\\xd8\\x3b\\xd9\\x76\\xa2\\xda\\x0b\\x47\\x64\\x31\\x79\\x2b\\xcf\\xae\\x82\\x22\\xfe\\xcd\\xfd\\x93\\x31\\x32\\xac\\x42\\x80\\x76\\x23\\x44\\x1a\\x69\\x1f\\x82\\xf6\\x85\\xfa\\x4b\\xdb\\x17\\xce\\xf7\\xbd\\xef\\x7b\\xa7\\x6d\\x81\\x3e\\x30\\x8f\\xce\\xf2\\xcc\\x6f\\xe4\\x5f\\x23\\x67\\x88\\xf3\\x16\\xfb\\x42\\xfd\\x7f\\xb7\\x2f\\xb2\\xdf\\xf7\\x9e\\xb3\\x7b\\x3b\\x62\\x2e\\x4d\\x9f\\x0c\\xbc\\x09\\x98\\x47\\xa6\\x97\\xf1\\x26\\x28\\xa7\\xf5\\x43\\x0a\\x11\\xa2\\xf1\\xb3\\xcf\\xb3\\x2f\\xd4\\xff\\x96\\x7d\\x51\\x08\\xbf\\x7e\\x7b\\xf9\\xa9\\x01\\x9b\\x6d\\xe0\\xd4\\x72\\x7e\\x27\\xff\\x03\\xf8\\xf5\\xdb\\xce\\xb6\\x7c\\xb5\\x3a\\xbf\\xbd\\x90\\x38\\xf9\\x81\\xbc\\xce\\xc9\\xba\\xba\\x6d\\xdd\\x36\\xe6\\x11\\x7e\\x15\\x7f\\x54\\x63\\xad\\xd0\\xa5\\x56\\xda\\x52\\x83\\xf6\\x45\\x19\\x71\\x7e\\x8e\\x7d\\xa1\\xfe\\x7f\\xb0\\x2f\\xfa\\x3a\\x0e\\x76\\x67\\x67\\x77\\x1f\\xe8\\xe4\\x7f\\xe5\\xc5\\xff\\xeb\\xf5\\xfa\\x42\\xfb\\xb2\\x2b\\xcc\\x72\\xb9\\xb9\\x22\\x1b\\x3f\\x9c\\xe7\\x99\\xac\\xad\\xdd\\xb6\\xc4\\x26\\x2c\\x4a\\xc4\\xe9\\x7b\\x8f\\x3f\\x9a\\x6c\\x2d\\xd7\\x69\\x2b\\xed\\xa9\\x08\\xd3\\xb9\\xee\\xa2\\x6d\\xba\\xc5\\xbe\\x50\\xff\\x1b\\xf6\\xc5\\x32\\x70\\xf7\\x9e\\x1e\\x74\\xd8\\x07\\xcf\\xf4\\xfa\\xa6\\xbd\\xe0\\x76\\x2e\\xb4\\xc7\\xc5\\xdb\\x17\\x38\\xf1\\xc3\\xb9\\x9d\\x93\\xf5\\x75\\xdb\\xbb\\xf3\\xc5\\x16\\x68\\xf2\\x2a\\xf4\\xba\\x4a\\x9b\\x36\\xe8\\x93\\x76\\x92\\x66\\x94\\x89\\xea\\x5c\\xd5\\x08\\x90\\x04\\x81\\x64\\x14\\x11\\x8e\\xe5\\x08\\x3b\\x8a\\x24\\x88\\x23\\x12\\xae\\x57\\x1a\\x88\\x52\\x27\\x07\\x79\\x1f\\x34\\x4c\\x23\\x20\\x73\\x9a\\xc9\\x38\\xa7\\xb0\\x5c\\x26\\x64\\xd2\\x9d\\x71\\x9e\\xfb\\xe6\\x16\\xcf\\x8d\\x83\\xe6\\x03\\xe3\\xe2\\xbc\\xe5\\xee\\xac\\xa9\\x86\\xad\\x0f\\x2f\\xde\\xf9\\xf5\\x9d\\x2e\\xd7\\xae\\xd7\\x76\\x2e\\x7f\\x64\\x63\\xe5\\x54\\x7a\\x5d\\x6f\\xc1\\xc2\\x8d\\x4d\\x26\\x96\\x5f\\x00\\x57\\xb8\\xf4\\xc6\\x0d\\xcc\\xd7\\x52\\x0a\\x9b\\xb2\\xea\\xf7\\xf5\\x17\\x75\\x9e\\x78\\x63\\x6d\\xfa\\xda\\x37\\x4e\\x76\\x14\\x0f\\xdd\\xbb\\x20\\xaf\\xb3\\xdc\\x58\\xd4\\xbb\\xad\\xfc\\x4c\\xd9\\x86\\x2e\\x3b\\xc2\\x68\\xfd\\xcc\\xa7\\x64\\x37\\x69\\x46\\x09\\x73\\xed\\x0b\\x84\\x18\\x0e\\x51\\x7e\\x70\\xe8\\x16\\xf6\\x2a\\xba\\xb1\\x8b\\x19\\x17\\x34\\x40\\x60\\x0a\\x5e\\xc1\\xb2\\x6a\\x37\\xf2\\xa3\\xc6\\x93\\x85\\xa1\\xa9\\x12\\x2f\\xf5\\x07\\x09\\x5c\\x61\\x66\\x83\\x4c\\x16\\x6b\\xd6\\x8b\\xfe\\x3c\\xab\\x7f\\xbf\\x0f\\xd2\\x22\\x89\\x9e\\xdd\\x5b\\xf9\\xe1\\xd2\\xf7\\x48\\xf2\\xba\\x76\\x2d\\x5a\\x7a\\xb8\\x2b\\x23\\xc3\\x73\\x68\\x69\\xc7\\xde\\xae\\x5c\\x6e\\xb7\\xd7\\x0b\\xce\\x68\\x73\\x95\\x2d\\xbf\\x3a\\x4d\\x26\\x33\\x57\\xdb\\xf2\\xab\\xd2\\xa2\\xf1\\xba\\x81\\xab\\xbb\\xeb\\x17\\x9f\\xfa\\xf6\\x98\\x72\\xec\\xdb\\x27\\x16\\xbb\\xf7\\x3d\\x3f\\xc8\\x9b\\x89\\xd3\\xf7\\x61\\xf3\\x7d\\x23\\x15\\x15\\x23\\xf7\\x35\\x2b\\x9b\\x8f\\xad\\xab\\xa8\\x58\\x77\\xac\\x19\\x61\\xd4\\x82\\x10\\xd1\\x12\\x67\\xc0\\xbe\\x90\\x80\\x48\\x36\\x2d\\xee\\x3d\\xf4\\x03\\x71\\x73\\x37\\xa0\\xa0\\x7d\\x11\\x29\\x13\\xed\\x0b\\xba\\x8b\\xce\\x5a\\x18\\x34\\x6c\\xaf\\x95\\x69\\x53\\x23\\x31\\xd1\\x7a\\xf9\\x29\\x7e\\xe6\\x6d\\x90\\x0d\\x8e\\x16\\xae\\x3e\\xb7\\xfc\\x97\\x6a\\x6b\\xa3\\x0d\\xba\\xf8\\x57\\x0a\\x17\\x17\\x24\\x0a\\x63\\x18\\x2e\\xf1\\xdd\\xf0\\x0d\\xe3\\x85\\xd5\\x75\\x5b\\x3a\\xf2\\xf8\\xe7\\x53\\x5d\\xb9\\x1a\\x58\\x95\\x6c\\x2d\\x17\\xc6\\xd2\\xcc\\xef\\x78\\x37\\x31\\x70\\x82\\xd5\\x59\\xef\\xaa\\x31\\x60\\xcc\\x92\\x58\\x60\\x58\\x39\\x60\\x86\\x69\\x08\\x01\\x09\\x47\\x6d\\xd6\\xde\\x80\\x95\\x91\\xec\\x46\\x52\\x29\\xeb\\x99\\x17\\x90\\xd1\\xe2\\xc6\\xec\\x2c\\x99\\x4c\\x26\\x37\\x99\\xcc\\x3a\\x51\\x0f\\xd4\\xca\\xfc\\x49\\x7f\\x0a\\xab\\x8c\\xa2\\x56\\x82\\x5c\\x0c\\x73\\x6a\\x31\\xe9\\x6c\\x56\\x9b\\x55\\xa1\\xc5\\x03\\xfc\\xbf\\xfc\\x95\\xc6\\xe0\\x89\\x73\\x29\\x76\\x4d\\x94\\x34\\x51\\x93\\x20\\xad\\xa8\\x03\\xb1\\xee\\xd8\\x2b\\xaf\\x78\\x41\\x42\\xbc\\xfc\\xcf\\xfd\\xd5\\xc7\\x7e\\xe9\\xfb\\xe8\\xf1\\xe7\\x25\\xa1\\x27\\x18\\x96\\xc1\\x43\\xdd\\x9e\\x60\\x29\\x32\\xe2\\x3d\\x3d\\xe5\\xf7\\xc9\\x04\\x6a\\x2d\\x8a\\xf3\\x83\\xb0\\x1c\\x4b\\xb8\\x51\\xa1\\x1f\\x12\\x40\\xa3\\x88\\x13\\x16\\x11\\x49\\x6f\\x60\\x52\\x24\\xbb\\x83\\x33\\x45\\x83\\x3f\\x77\\x7e\\xdc\\xb1\\xf0\\xa2\\x44\\xab\\xd0\\x6a\\x98\\x2f\\xa8\\xbc\\xd8\\x3c\\x52\\x6f\\x64\\xe1\\x1c\\x3f\\xc0\\x1a\\xeb\\xd6\\x7d\\x7e\\xfd\\xc5\\xc2\\xa5\\x5b\\xca\\xce\\xb8\\xb6\\x2c\\x2d\\x40\\x18\\x19\\x11\\x22\\x53\\xc4\\x89\\x34\\xc8\\x72\\xfb\\x98\\x8d\\x7a\\x7e\\xcc\\x26\\x39\\x19\\xa1\\x64\\x4b\\x72\\x7a\\x6a\\x0a\\xd2\\x20\\xcd\\xed\\x62\\x36\\xc2\\x98\\x9f\\xa3\\x89\\xc9\\xe6\\x2c\\x8a\\x8c\\xb4\\xa2\\xe3\\x40\\x57\\x76\\x76\\xd7\\x81\\x8e\\x1b\\xdf\\x4c\\xae\\xdf\\xdc\\x95\\x49\\x34\\x66\\x7b\\x4a\\x04\\xce\\xaf\\xc8\\x2e\\x37\\xc7\\xc4\\x98\\xcb\\xb3\\x89\\x93\\xef\\xcf\\xf3\\x6c\\xa9\\xab\\xdd\\xda\\x6d\\x13\\xb4\\xb5\\xfb\\x7f\\x73\\x61\\xe1\\x03\\x50\\xb2\\xf1\\xa9\\x51\\x78\\xcf\\xf7\\x1f\\xfc\\xbd\\x3a\\x7b\\x55\\xaa\\xd6\\x95\\x97\\x2c\\xd8\\x35\\x7b\\x10\\x22\\xf7\\xd3\\x9c\\x19\\x9d\\x18\\xe9\\x98\\x17\\xae\\x51\\xcf\\x0b\\xc4\\x7c\\x51\\x14\\x46\\x7b\\x9b\\x28\\xcc\\xbf\\xbc\\x0b\\xda\\x77\\x2e\\xca\\xc8\\x58\\xb4\\xb3\\x9d\\xff\\xdb\\xbf\\xbc\\x5e\\x78\\x76\\x41\\xba\\x53\\x1f\\x1d\\xad\\x77\\xa6\\xe3\\x8b\\x70\\x96\\xef\\xcb\\xf3\\x6c\\xa9\\x15\\x1a\\x8a\\x43\\x7d\\xff\\x4b\\x9c\\xf3\\x9b\\x87\\x00\\x25\\x22\\x44\\x2c\\x1c\\x42\\x49\\xc8\\xee\\xb2\\xca\\x31\\xc6\\x0c\\x34\\x48\\x81\\x63\\x01\\x01\\x87\\x82\\xf1\\xbc\\x64\\xa1\\x9d\\xd8\\x13\\x0c\\xc5\\xc8\\x64\\x54\\x59\\x08\\x99\\x37\\xc8\\x65\\xb7\\x19\\xd4\\x67\\xf9\\x77\\xe7\\x97\\xcf\\xbb\\xef\\x3e\\x2f\\x58\\xc9\\xab\\xfc\\x4f\\x6e\\x2d\\xa2\\x47\\x5e\\x3d\\x7d\\xe5\\x0a\\xd5\\x23\\xf9\\xf3\\x7e\\xbd\\x54\\xd8\\x59\\x18\\xcc\\x8c\\x53\\xbe\\x52\\xaa\\xa7\\xe0\\x2e\\x7f\\x23\\x6e\\xd1\\x23\\x82\\x81\\x19\\x19\\x2c\\xc3\\xd1\\x5e\\xfe\\x21\\x2f\\x7f\\x56\\xdc\\xdf\\x6f\\xbc\\xc5\\x9f\\x87\\x7e\\x51\\xc7\\x5c\\x33\\xf3\\x29\\xad\\x33\\xad\\x17\\x33\\x63\\xc4\\x62\\xeb\\x84\\xc1\\x58\\x39\\xa7\\xbc\\x9a\\x18\\xb4\\xd4\\x23\\xbd\\x4e\\xae\\x53\\xe8\\x0d\\x74\\x1f\\x95\\xcf\\x8f\\x60\\xcb\\xad\\x72\\x31\\x3b\\x56\\x2e\\xa6\\x71\\xd8\\x6d\\x72\\xb2\\x03\\x2c\\xcd\\xc3\\x15\\xcd\\x1b\\x52\\x52\\x36\\x34\\x55\\x0e\\x37\\x5b\\xe0\\x1a\\x14\\xe5\\x17\\x57\\xc3\\x6b\\xd5\\x25\\xf9\\x4e\\x60\\xa7\\x6e\\x1c\\x6d\\xdf\\xb1\\x38\\xa3\\xa1\\xbe\\xce\\x9d\\xb1\\x78\\x47\\x3b\\x19\\xbb\\x71\\xb4\\xb3\\xbf\\xbf\\x73\\xf6\\x5f\\xa1\\x7d\\x3d\\x33\\x9f\\x90\\x49\\x52\\x74\\x6b\\xfb\\xd4\\x5f\\xd0\\x3e\\xd9\\xcd\\xed\\xf3\\x37\\x4b\\x16\\x68\\xa8\\x8c\\x4c\\x5a\\x5a\\x46\\x2a\\x9a\\x27\\xb4\\x29\\x1b\\x9a\\x2b\\x47\\x9a\\x33\\xc0\\x5b\\x6c\\x2b\\xae\\x7d\\x0d\\x6a\\x4a\\xf2\\x4b\\x48\\x91\\x0f\\xda\\x77\\x2c\\x12\\x1b\\xb7\\x68\\x47\\x3b\\x9e\\xf1\\x41\\xe7\\x8a\\x15\\x9d\\xb3\\xff\\x22\\x4c\\xc7\\x4a\\x31\\xa7\\xa6\\x63\\xd9\\xe1\\xca\\x47\\x2c\\x61\\xc7\\x38\\x20\\x0c\\x88\\xce\\x21\\x08\\x01\\xa9\\x04\\xa4\\x7d\\xc2\\x50\\x59\\x22\\x2a\\x47\\xb3\\x23\\x5a\\xd0\\x8f\\x42\\xc5\\x08\\xf5\\x5c\\x3e\\x41\\x91\\x53\\x6a\\x4e\\x94\\x0b\\x7f\\xc8\\xbf\\x0a\\xf2\\xde\\x53\\xab\\xec\\xf6\\x55\\xa7\\x7a\\xf9\\xfc\\xaf\\x7f\\xdd\\x0b\\x15\\xc2\\x21\\x67\\xbb\\x2d\\x2e\\xce\\xd6\\xee\\x24\\xf9\\xfc\\xda\\x5c\\x8f\\xa0\\x2b\\x2d\\xc9\\x27\\xf9\\x67\\xa0\\x91\\x7f\\xde\\x57\\x22\\x28\\x4c\\xe5\\xfa\\xd4\\x2a\\x41\\x31\\x00\\xb4\\x7d\\xe6\\x0f\\xe4\\x04\\xfb\\x26\\x72\\xa0\\xb7\\xc5\\x24\\x95\\x5c\\x84\\x19\\xc4\\x08\\x66\\xb3\\x3f\\x5e\\x4d\\x00\\x85\\x00\\x2b\\x41\\xfe\\x88\\x75\\x18\\xf8\\x43\\xd6\\xd2\\xee\\x50\\x90\\x4a\\x35\\xd2\\x00\\x73\\x8b\\xed\\x0e\\x37\\x86\\x85\\x29\\xdd\\xf3\\xe2\\xdd\\xb3\\x37\\xbb\\x0a\\xbf\\xfc\\x7d\\xa1\\xa1\\x2a\\xf1\\x66\\x44\\xef\\xf5\\x78\\x5c\\x31\\x0e\\xbb\\x2d\\xdf\\x9a\\x27\\xfa\\x3e\\x63\\x0d\\xd1\\xe1\\xc2\\x2c\\xb3\\xde\\x52\\x77\\x7e\\x5e\\xb0\\x3c\\xb8\\x24\\x8b\\x2b\\x84\\xed\\x54\\x5e\\xcf\\xa1\\x8e\\xb6\\xc9\\x45\\xb9\\x92\\xaf\\xb0\\xea\\xf4\\xd2\\x8c\\xec\\xea\\x4c\\x15\\xc4\\xf3\\xbf\\x51\\x65\\x56\\x67\\x67\\x94\\xa6\\xab\\xb8\\xaf\\x48\\x72\\x17\\x4d\\xb6\\x75\\x1c\\xea\\xc9\\x3b\\x75\\xed\\x1a\\xe3\\xea\\xdb\\xfd\\x9d\\xbb\\x1b\\x8a\\x86\\xcf\\x2f\\x2f\\xe9\\xab\\x35\\xda\\x57\\xde\\xbf\\x64\\xe5\\xe9\\x07\\x96\\x1e\\x5f\\x69\\xd7\\x57\\xf6\\x96\\x76\\x9e\\x5e\\x57\\xda\\x70\\xe4\\x3b\\xbb\\x1f\\xf0\\x75\\x88\\xd8\\xb7\\x07\\x68\\x0e\\x54\\x33\\xb2\\xa2\\xc3\\xa2\\xb6\\x92\\x8b\\x42\\x42\\x25\\xa1\\x21\\xb3\\x30\\x86\\x30\\x90\\x10\\x8a\\x63\\xe8\\x45\\xa1\\xa1\\x5c\\xb7\\x14\\x38\\x4e\\x2d\\x02\\x19\\x84\\x41\\xac\\x61\\xa8\\x88\\x3e\\xff\\x1e\\x7a\\x75\\x68\\x28\\x95\\x49\\xb2\\x3f\\xed\\xc1\\xef\\xdf\\xd0\\x30\\x8d\\x1e\\x57\\x8c\\x35\\x2f\\x2b\\x23\\xcd\\xa4\\x97\\xc9\\x64\\xb1\\xfa\\x58\\xbd\\x28\\x21\\xad\\x3f\\xf0\\x63\\x9d\\xa7\\xd8\\xc8\\x02\\xfa\\x4e\\xb0\\xb2\\xb1\\x96\\xf9\\x16\\xff\\x01\\x56\\xa4\\x57\\x66\\x6b\\xf2\\x0c\\x0a\\xb8\\x9a\\xb7\\x68\\xdc\\xe5\\xd9\\xdf\\x9d\\xc3\\xdc\\xeb\\xf5\\xde\\x8b\\x73\\xba\\x0f\\x78\\x6a\\x37\\xb4\\x67\\x5e\\x95\\xeb\\xad\\xda\\xec\\x4a\\x8b\\x02\\xc0\\x02\\xef\\x57\\x6c\\x5e\\xea\\x48\\xc8\\x29\\xd3\\xbb\\x26\\xba\\x6c\\xee\\xbd\\x53\\x03\\x7c\\x0e\\x71\\xf2\\x99\\x03\\xcf\\xec\\x6b\\x2c\\x58\\xbe\\xbb\\x21\\xad\\xa1\\x40\\x5b\\xb0\\x6c\\x8b\\x4b\\x58\\xef\\x4d\\x08\\x91\\x67\\x69\\x7c\\x25\\x52\\x58\\xbd\\x22\\x81\\x13\\xf4\\x1b\\x0e\\xfb\\xd7\\x53\\x42\\x94\\x6e\\xd6\\xef\\x35\\xf2\\xd3\\xac\\xd1\\x88\\x76\\xc0\\x63\\x64\\x05\\x1d\\x68\\x19\\x66\\xe5\\x45\\xef\\x89\\xe3\\xaf\\xc0\\x67\\x0f\\xc3\\x9f\\x5f\\xf1\\xbd\\x08\\xfb\\xbe\\x0e\\xd7\\xf8\\x3a\\xe1\\x87\\x86\\x77\\x3c\\x98\\xae\\x84\\xb4\\x2e\\xfd\\x6e\\xba\\x4e\\x46\\x0b\\xef\\x8a\\xba\\xe5\\x5d\\xea\\x2f\\xf1\\x2e\\x93\\x84\\x69\\xd8\\xe5\\x3d\\xb8\\xf1\\x15\\x78\\xe3\\x02\\x7c\\xeb\\x55\\x9e\\x40\\xf5\\x11\\x75\\x1c\\x98\\xf9\\x0f\\x85\\x1f\\xaa\\x37\\x7d\\x03\\x3a\\xda\\xdb\\x05\\x3d\\x35\\xc8\\x27\\xa7\\x14\\x74\\x37\\xa5\\xa0\\x16\\x35\\x84\\x82\\x44\\xb0\\xc0\\x40\\x82\\x56\\x08\\x9f\\x59\\xe9\\x0e\\xa1\\x46\\x1f\\xf5\\x8a\\xcd\\x21\\x93\\x0b\\x9b\\xe3\\x17\\x93\\xfb\\xbf\\x8c\\x9c\\x96\\x17\\x63\\x98\\x8b\\x35\\x27\\xaa\\x07\\x5f\\x99\\x78\\xdc\\xeb\\xfd\\xde\\xfb\\x17\\xa0\\xfd\\x65\\xfe\\xd2\\x4f\\x06\\xe1\\x07\\x7c\\x46\\xe0\\x87\\x9d\\x9a\\x7e\\x93\\x29\\xfa\\xac\\x15\\x4f\\x60\\x22\\xf4\\x7b\\x14\\x21\\xf2\\x0a\\xf5\\xbd\\xdc\\xb6\\x1d\\xbd\\xe2\\x70\\xfb\\xbf\\xb7\\xe3\\x4a\\xdd\\x83\\x2d\\x4b\\x5f\\xe9\\x3b\\xed\\xf5\\xbe\\xfb\\xc1\\x05\\x58\\xf0\\x0a\\xff\\xe4\\xf7\\x57\\x82\\x81\\xff\\x49\\xe0\\x87\\x38\\x7d\\x77\\xe3\\x0d\\x37\\xde\\x82\\xb7\\x60\\x89\\xd0\\x8e\\x45\\x08\\x91\\xfd\\x74\\x2f\\x31\\xa1\\x02\\x97\\x2d\\x8e\\x7a\\x68\\x31\\x20\\xce\\x6f\\x0a\\x49\\xa5\\x34\\xa2\\xae\\x74\\x87\\x48\\x58\\xc6\\xef\\xb8\\x34\\x19\\x85\\x75\\x3b\\x37\\xc6\\xa0\\x90\\xc5\\x28\\x42\\xb9\\x04\\x8b\\x58\\xc7\\xc7\\x0a\\x5a\\xd0\\x30\\x81\\x7c\\x06\\x9d\\xb0\\x85\\x9a\\xfc\\xc4\\x3e\\x72\\xed\\x62\\xc8\\x5d\\x7a\\x70\\x31\\xc3\\x5f\\x65\\x7e\\xc6\\x7f\\x67\\xf1\\x81\\xa5\\x39\\x5e\\x65\\x46\\x65\\x56\\x55\\x88\\x97\\x69\\xcd\\x12\\x46\\x68\\xef\\x7f\\xf0\\xed\\x70\\x65\\xc5\\x11\\x8f\\x19\\x9f\\xf2\\xad\\x06\\xb3\\xe7\\xf0\\x0a\\x7e\\x11\\x5c\\x29\\x69\\xcf\\x53\\xc6\\xfa\\xee\\xc7\\xdb\\x59\\x65\\x5e\\x7b\\x09\\xbf\\x88\\x29\\x85\\x1f\\xd3\\x71\\x33\\x84\\x10\\xf1\\xd0\\xdc\\x4a\\x13\\x2a\\x74\\xd9\\x13\\xd4\\xf8\\xf6\\x0d\\x57\\xdf\\xd4\\x70\\x1d\\xd2\\xc9\\x85\\x86\\xcb\\xc4\\x86\\xfb\\x01\\x39\\x42\\xbb\\x15\\x3a\\xd3\\x4d\\xed\\x56\\x80\\x55\\xae\\x1d\\xb2\\x2c\\xd8\\xe4\\xe6\\x7f\\xc3\\x4c\\xf1\\xbf\\xae\\x1f\\x6b\\x4d\\xf7\\x42\\x6c\\x5a\\x49\\x7a\\x6e\\xe8\\x75\\xb6\\x24\\xbd\\x24\\x2d\\x16\\x2a\\xd8\\x67\\xf9\\x53\\x3f\\xe9\\xbb\\x77\\x49\\x36\\x03\\x3f\\xe3\\x53\\xd8\\x9c\\xa5\\x77\\xf7\\xfe\\xe4\\x27\\x95\\x1e\\xbb\\x4a\\xc6\\x37\\xc1\\x4b\\x21\\x2a\\xbb\\xa7\\xf2\\x27\\x78\\x09\\xd4\\x20\\x8c\\x5a\\xfd\\x18\\x58\\x1d\\x32\\xa2\\x22\\x57\\x41\\x64\\x18\\x65\\xe9\\x0e\\x01\\xc4\\x11\\x8c\\x01\\xe1\\x3e\\x14\\x16\\x26\\xf5\\x08\\x0b\\xb0\\xd2\\x2d\\x09\\x7c\\x79\\xa3\\x41\\x97\\xaa\\x4d\\x91\\xc9\\xe4\\xf2\\x8a\\x18\\x9d\\x5c\\x5c\\x26\\x94\\x4a\\x85\\x4c\\xc7\\xe4\\x1b\\xfd\\x8d\\xb5\\x60\\x8e\\xa3\\x07\\x1c\\xe2\\x60\\xd0\\x32\\x5a\\x90\\x6b\\x99\\x7b\\x37\\xef\\x3a\\x0b\\xd6\\x12\\x9d\\xe4\\xac\\xd4\\x88\\x49\\x61\\xee\\x59\\x88\\x7d\\xe0\\xca\\x15\\xd8\\xfd\\x09\\xfe\\x1d\\x7f\\xf7\\x6e\\x9e\\x67\\xd4\\xec\\x3d\\xf7\\xf3\\xe1\\xf0\\x37\\x77\\x79\\xac\\xef\\x04\\x1e\\x52\\xe1\\xf2\\x7a\\xe1\\xcf\\xd6\\x62\\xdf\\x2e\\x76\\xca\\x37\\x88\\xcf\\xf8\\xde\\x85\\x07\\x10\\x46\\x6d\\x08\\xd1\\x9c\\x69\\xff\\x18\\x89\\x0a\\xc3\\x34\\x65\\x54\\xca\\x52\\x8e\\x39\\xe8\\x43\\xa1\\xa1\\x12\\x4f\\x08\\x48\\x24\\x6a\\x37\\x47\\x30\\x43\\x8d\\x1e\\x93\\x91\\x96\\x06\\x96\\xcb\\x2b\\x62\\xe5\\xb1\\x61\\x37\\x35\\x5a\\xf7\\xb9\\xad\\xd6\\x31\\x5f\\x19\\x1e\\x3b\\x0b\\xb6\\xb2\\x98\\x70\\xee\\x5c\\x68\\x0a\\xc1\\x85\\xf9\\x67\\x41\\x71\\xfe\\xca\\x15\\x18\\xfb\\x4f\\xfc\\x53\\xfe\\xbe\\x6d\\xff\\xc4\\xad\\x61\\x87\\xef\\xe6\\xbf\\x07\\xd9\\x8d\\xae\\x24\\x7e\\x05\\x5c\\x52\\x62\\x57\\x83\\xf0\\x67\\x5b\\x11\\x5f\\x4d\\x9c\\x7c\\x1c\\x7c\\xcc\\xe7\\x41\\x19\\x1d\\x23\\xef\\xf0\\x35\\x44\\x2f\\xd9\\x80\\x4a\\x51\\x2d\\x5a\\xe8\\x6a\\xab\\x06\\x09\\xa7\\x00\\x16\\xe1\\x06\\x93\\x11\\x33\\xb5\\x52\\xe0\\x24\\xdc\\x18\\x92\\x60\\xc9\\x58\\x08\\x20\\x24\\x32\\x0a\\xfb\\xf3\\xaa\\x95\\xc1\\xea\\x9c\\xd4\\xce\\xae\\xad\\xa9\\xaa\\x2c\\x77\\x95\\x14\\x59\\x73\\x92\\x13\\xc3\\x43\\x43\\x24\\xa8\\x14\\x4a\\x43\\xe7\\xe4\\x4b\\x68\\x6d\\x01\\x7d\\x20\\xe0\\x7f\\x0e\\xa0\\x27\\x24\\x59\\x0c\\xe5\\xbe\\x98\\xe3\\x87\\x96\\x07\\x79\\x52\\x12\\x2f\\x9c\\x35\\x34\\x0c\\xd7\\xf1\\xdf\\x85\\xbc\\x81\\xab\\xbb\\xea\\x75\\xae\\x25\\x85\\xbb\\x8e\\x36\\xec\\x9e\\x5a\\x69\\x6b\\xae\\xd5\\xe6\\x39\\x54\\x0d\\xd9\\x4b\\xdd\\xd9\\x90\\xd3\\x31\\xe9\\xce\\xaa\\x18\\x6e\\x4a\\xcf\\x5c\\xbc\\xad\\xe5\\x9e\\xaf\\x8a\\xdc\\x2a\\x8c\\x03\\xf6\\xac\\xcf\\xeb\\x70\\xe9\\xcf\\xd8\\x56\\xde\\xbf\\xd4\\xb6\\xac\\xd5\\xa5\\x4c\\x7b\\x6a\\xdf\\xc0\\x85\\xb5\\x05\\xa5\\xd6\\xb4\\x92\\x8c\\xe4\\xd0\\x6d\\xb1\\x45\\xad\\xfd\\xc5\\x95\\xcb\\x4b\\x35\\x69\\xb5\\x7d\\xc5\\xd5\\x03\\x15\\xda\\xd3\\xcc\\xa5\\x20\\x1f\\x0b\\x46\\x3f\\xe5\\x6b\\x48\\x08\\xa7\\x41\\xc5\\xa8\\x5a\\x90\\x4d\\x25\\x48\\x38\\x39\\x95\\x8d\\x41\\xff\\x05\\xb2\\x51\\xcf\\x97\\x4d\\x75\\x55\\x45\\x79\\x59\\x69\\x51\\x61\\x6e\\x56\\x52\\x3c\\x95\\x4d\\x31\\x14\\x87\\x8a\\xfe\\x79\\xd3\\x5c\\xd9\\x70\\x73\\x44\\xa3\\xfa\\x42\\xd1\\x64\\x1c\\xda\\x0f\\x5a\\xd7\\x92\\x62\\xfe\\x07\\x90\\xd1\\x7d\\x61\\xa2\\x6a\\xb0\\x7b\\xd5\\x58\\xd5\\xc6\\x87\\xbb\\x73\\x9a\\xeb\\x40\\x10\\x8d\\x3b\\x6b\\xa9\\x3b\\x07\\x72\\x3a\\xb6\\xba\\xcd\\x8e\\xa5\\x15\\x46\\x73\\xe3\\xda\\xca\\x7b\\x2e\\x89\\xa2\\xc1\\x43\\x8b\\xdc\\xda\\x82\\x34\\xd5\\x59\\x73\\xeb\\x78\\xbd\\x7b\\xa3\\x2e\\x79\\x8b\\xa7\\x79\\x73\\xbb\\xe5\\x16\\xb9\\xa8\\x33\\x4a\\x8d\\x96\\xb2\\xb4\\xd8\\xd3\\x4c\\x52\\x50\\x2e\\x0c\\xe5\\xe7\\xea\\xa2\\x71\\xd2\\x2c\\x54\\x26\\x68\\x88\\x1c\\x60\\x09\\x10\\x16\\x93\\xb9\\x89\\x81\\xfe\\xc0\\x95\\x06\\x35\\xe6\\x64\\x27\\x6b\\x0a\\x1d\\xd9\\x65\\x39\\x65\\x69\\x46\\x4d\\x56\\x72\\x56\\xa6\\x51\\xca\\x29\\xe7\\x73\\x70\\x69\\x88\\x8a\\xd5\\xda\\xfc\\xbc\\x06\\xac\\xf6\\x0b\\xe8\\xb7\\xfc\\x9c\\x06\\xd3\\xaf\\xe1\\xc3\\xf3\\x69\\x0d\\xf0\\x61\\xdf\\xc6\\x2f\\xc1\\xbf\\x25\\x12\\x1b\\x84\\x84\\xcd\\x65\\x36\\x78\\x94\\xbd\\x89\\x7c\\x8b\\x41\\x4b\\x67\\x3e\\x25\\x36\\x8a\\x15\\x4c\\x41\\x16\\x51\\x13\\x46\\x0c\\x66\\x19\\x5a\\x02\\x9f\\x76\\x2e\\xd9\\xcd\\x81\\x9f\\x0c\\x45\\x03\\x8d\\xa9\\x5a\\x95\\xd2\\x64\\xd4\\x5a\\x52\\x2d\\x89\\x09\\xca\\x14\\x55\\x8a\\x59\\x2f\\xf5\\xbb\\x9e\\xe7\\x7b\\x99\\x80\\x7a\\x98\\x34\\x8c\\x9c\\xaa\\x29\\x59\\xcc\\xd2\\x9b\\xeb\\x0e\\xc3\\x1f\\xaa\\xd7\\x34\\x66\\x48\\x7c\\x0f\\x4b\\x32\\x9a\\xd6\\x54\\x55\\xad\\x6e\\xcc\\x92\\xe0\\x1e\\x69\\x66\\xe3\\x9a\\xdb\\xd4\\x1f\\xe6\\xd7\\xdb\\x96\\x6c\\xad\\xa9\\xd9\\xba\\xc4\\xc6\\xe4\\xe7\\x77\\x6d\\xa9\\xaa\\xda\\xd2\\x95\\x8f\\x00\\xc5\\x23\\x44\\x3e\\x62\\x5f\\x47\\xb1\\xa8\\xfc\\x05\\xf0\\xd7\\x22\\x4d\\xf0\\x57\\xe0\\x16\\xd1\\x27\\x62\\x88\\x1a\\x37\\x26\\xd0\\x32\\x6e\\xca\\x20\\xc1\\x64\\xe0\\xb8\\xe7\\x6b\\x32\\x85\\xd6\\x24\\x66\\xdd\\x38\\xa0\\x94\\xb1\\xaa\\x24\\x54\\xaf\\xa2\\xa5\\x42\\x6b\\x53\\x53\\x01\\xab\\x0b\\x6a\\x3a\\x0b\\xb2\\x20\\x22\\x21\\x5d\\x97\\x18\\xc9\\x6f\\x7f\\x92\\xe7\\xbe\\x07\\x1b\\xf7\\xec\\x66\\xcc\\x4d\\x23\\x75\\xa9\\x70\\x25\\x5a\\xe7\\x30\\xde\\xd8\\x42\\x13\\x47\\x80\\xae\\x8f\\xcb\\x49\\x33\\x8a\\x45\\xdd\\xfe\\x1a\\x19\\x7e\\x02\\x3c\\x11\\x84\\x24\\xfc\\xc5\\xf8\\xff\\xf2\\xdc\\xdc\\xd2\\xe4\\x79\\x2d\\x55\\x07\\x5b\\x9a\\x3c\\xdb\\x52\\xb9\\xc1\\xe0\\x6f\\xa9\\xdc\\x6e\\x57\\x05\\x08\\xf3\\x38\\xb1\\xb1\\x09\\xea\\xb8\\xa9\\xf4\\xbd\\x4d\\x89\\xf9\\xf1\\x0a\\x4e\\x15\\xa9\\x2d\\x8e\\xe4\\x5f\\xbf\\x87\\x1f\\x78\\x15\\x8a\\x57\\xae\\xc4\\xc9\\xbb\\xc7\\x40\\x22\\x3b\\xc1\\xb0\\xf9\\xe6\\xe9\\xe7\\xa9\\x13\\x9a\\x41\\xd5\\x7c\\x1b\\xb9\\x4e\\xeb\\x2f\\xe4\\xa1\\x3a\\x54\\xee\\x2a\\x55\\x81\\x04\\xe7\\x00\\x92\\x18\\x28\\x5a\\x30\\x50\\x31\\x2a\\xc9\\xcd\\x8a\\x6e\\xd9\\x40\\x90\\x9f\\x4e\\xfa\\x25\\x88\\x61\\xb4\\x4c\\xa3\\xd9\\xa0\\x2c\\x54\\xa8\\xcc\\xf3\\x63\\xfd\\x41\\x9c\\x05\\xa8\\xe4\\x56\\x26\\x50\\x52\\x34\\x90\\xc8\\xc4\\x58\\xd9\\x20\\x10\\x3c\\xe0\\xa6\\xc3\\x87\\x4d\\x8d\\xeb\\xeb\\xab\\x87\\x6a\\x75\\xba\\xda\\xa1\\xea\\xfa\\xd1\\x26\\x13\\xc4\\x46\\x0d\\x3d\\xf6\\xe7\\x90\\x54\\x47\\x6b\\x61\\x68\\x5c\\xbc\\x5a\\x42\\x38\\x79\\xac\\x9c\\x4b\\x32\\x27\\xc8\\x58\\xf5\\x85\\xc7\\xf8\\xf5\\xe1\\x09\\x99\\x29\\x29\\x96\\xf8\\xf0\\xf0\\x78\\x4b\\x8a\\x36\\x23\\x21\\x1c\\x3e\\x1e\\x7f\\x69\\x7f\\x5d\\xdd\\xfe\\x97\\xc6\\xe1\\xa3\\xf1\\x97\\x85\\xdf\\x5e\\x1e\\xe7\\xaf\\x3c\\x8a\\x57\\xdf\\xd0\\x98\\x96\\xb4\\xd8\\x18\\x96\\xc3\\xc7\\x04\\xb9\\x9b\\x9d\\xa5\\x8a\\x65\\xa4\\xc8\\x5d\\x37\\xde\\x66\\xb1\\xb4\\x8d\\xd7\\xf9\\xbe\\x5f\\xb7\\xa1\\x2d\\x23\\xa3\\x6d\\x43\\x1d\\x95\\x89\\x83\\x6f\\x23\\x2f\\xd1\\xb9\\x20\\xc8\\x64\\x9d\\x2b\\x52\\x05\\x9c\\x24\\x07\\x80\\x33\\x00\\x81\\x00\\x2d\\xa8\\x96\\x06\\x72\\x59\\x8c\\xa9\\xef\\xdc\\x2f\\xa6\\x79\\x62\\x49\\x70\\x19\\xe6\\x0b\\x2d\\xf9\\xf6\\xd7\\x51\\x6f\\xe6\\xac\\x04\\x6f\\x9d\\x43\\x86\\xdb\\x4b\\xf0\\x56\\xff\\xa6\\x43\\xd7\\xb4\\x79\\xd1\\xe2\\xc9\\x26\\xbd\\xbe\\x69\\xcb\\xa2\\xc5\\x5b\\x1a\\xf5\\xcc\\xaa\\x88\\xb5\\xb7\\x15\\x60\\x34\\xa7\\xbe\\xf0\\x98\\xef\\x5e\\x69\\xa2\\x2d\\x33\\xd3\\x96\\x20\\x95\\x26\\xda\\x33\\x33\\x6c\\x09\\x52\\x9c\\x36\\xf1\\x6d\\x61\\xaa\\x7d\\x7b\\x42\\x35\\xf1\\xed\\xe3\\x0b\\x17\\x1e\\xff\\xf6\\xc4\\x8a\\xe7\\xf0\\xe4\\xed\\xc5\\xe7\\xfb\\xb0\\xf5\\xd8\\x48\\x79\\xf9\\xc8\\xb1\\x56\\x55\\xf3\\xb1\\x91\\x8a\\x8a\\x91\\x63\\xcd\\x88\\xf2\\x05\\xaf\\x9e\\x19\\x27\\xbd\\x9c\\x8d\\xf2\\x9c\\x18\\x50\\x25\\xba\\x22\\x02\\x34\\xb3\\x10\\xb0\\x2c\\x0c\\x20\\xc4\\x31\\x1c\\x1a\\x44\\x8c\\x44\\xc2\\x0c\\x20\\x4c\\x08\\x5e\\x35\\x27\\x93\\x44\\x22\\x21\\x4b\\xc4\\x40\\xaf\\x1f\\x8c\\x91\\x79\\xfb\\xbb\\xf0\\xf8\\xed\\x6f\\xa2\\x6f\\x81\\x31\\xf1\\x72\\x66\\x14\\x31\\x12\\x8e\\x91\\x8c\\x7c\\xfe\\x0d\\x1e\\x8f\\x2b\\x8c\\x32\\xd0\\xcc\\xe6\\x86\\x5a\\xa9\\xb9\\xf9\\x05\\x3c\\x34\\xf8\\x9b\\x5e\\xaf\\xd7\\x0b\\x17\\xfe\\x6d\\x1e\\x1a\\xf2\\x1c\\xec\\xf9\\x57\\x29\\x1c\\x81\\x03\\xff\\x16\\x1b\\x8d\\x20\\xe7\\xc9\\x99\\x5e\\xd2\\x4e\\xbe\\x43\\xe5\\x9c\\x84\\xac\\xa0\\x14\\x41\\xb4\\x59\\x08\\x08\\x11\\x24\\x26\\x61\\x24\\x82\\xc4\\x38\\x4e\\x90\\x18\\xcb\\xe2\\x55\\x42\\xbf\\xbb\\x11\\x21\\x74\\x20\\xb2\\x4b\\x10\\xcb\\x6a\\xd8\\x00\\xb8\\x36\\xf3\\xf6\\x77\\xe1\\xf1\\xcf\\xbb\\x49\\x49\\x2b\\x31\\x01\\x11\\x84\\xfd\\x65\\xef\\xf1\\x7f\\xd0\\x79\\xf7\\x48\\x18\\x6e\\xe4\\x0e\\x37\\xd1\\xee\\x04\\xae\\x17\\x3e\\xe8\\x17\\xdc\\x20\\x02\\x08\\xcc\\x66\\xb3\\xe1\\x96\\x4f\\xfa\\x25\\x2a\\xc8\\xe0\\x37\\xae\\x5f\\xbf\\x7e\\xdd\\xf7\\xb5\\x2f\\xac\\x8e\\xcf\\xd4\\xc0\\xfe\\xcf\\x4e\\xc1\\x69\\xc8\\xfe\\x32\\x55\\xf2\\x19\\xd4\\x34\\xf3\\x09\\xd9\\x2b\\x69\\x43\\xf9\\xa8\\x11\\x75\\xa2\\x21\\xd7\\x40\\x19\\x44\\x84\\x96\\x03\\x0a\\xe9\\x04\\x82\\x22\\x01\\x58\\xd2\\x80\\x22\\x42\\x43\\x42\\x23\\x42\\x46\\x11\\x47\\x58\\xc2\\xb1\\xa3\\x28\\x0c\\x85\\x46\\x84\\x85\\xf6\\x45\\x42\\x38\\x0a\\x41\\xe1\\x21\\x7d\\x52\\xba\\x15\\x8b\\x09\\xa3\\x12\\x08\\xf0\\x94\\x68\\xa0\\xd1\\x66\\x6b\\x6f\\xb3\\x35\\xda\\xdc\\x35\\x55\\x25\\x45\\x05\\x76\\x85\\x4e\\x6e\\x90\\xc5\\xe9\\xcd\\xd1\\x51\\x82\\x9a\\x3d\\x9b\\x4b\\x16\\xf4\\xa3\\xd1\\xa5\\x59\\x21\\x68\\xdb\\x01\\x77\\x9a\\xf8\\x8b\\x43\\x66\\x34\\x9a\\xe4\\x0a\\xe1\\x1a\\x41\\x5f\\x95\\xe8\\x68\\x89\\x5b\\x0d\\xb1\\x0a\\x7a\\xad\\xcd\\x4a\\xf5\\x59\\x26\\xb5\\x79\\xcf\\xd2\\xfc\\xac\\x05\\x13\\x35\\x8d\\xe3\\x29\\xda\\x71\\x77\\xed\\x86\\x05\\x59\\xd6\\xa5\\x7b\\x5a\\x9a\\x3d\\xd5\\x25\\xc5\\x35\\xd7\\x6b\\x8a\\x8b\\x6b\\x00\\xba\\x9a\\x5e\\x4a\\xaf\\xdf\\xb0\\xbc\\xcd\\x98\\x57\\x08\\x3b\\x27\\x87\\x53\\xcb\\x4a\\x4a\\xab\\x9a\\x32\\xf9\\x3a\\x6d\\xea\\x11\\xa5\\x3e\\x3b\\x8e\\xbd\\x6a\\xed\\x3f\\xbe\\xdc\\x67\\xe9\\xd8\\xdf\\x95\\x5d\\x57\\x53\\x53\\x97\\xdd\\xb5\\xbf\\x03\\x7f\\xb0\\xfc\\x78\\xbf\\xf5\\x34\\xec\\xd8\\xe0\\xb3\\xf4\\x0e\\xf7\\x77\\xc2\\x34\\x4f\\x3a\\xfb\\x87\\x7b\\xf1\\x07\\x1b\\x76\\x00\\xbc\\xb4\\x33\\x2d\\xdb\\x64\\x77\\xc4\\xe8\\x47\\xd6\\xca\\x13\\xb4\\x89\\x72\\xfe\\x58\\x5a\\xad\\x71\\xf9\\x40\\x52\\x91\\x2d\\x33\\x42\\xd4\\xd3\\x56\\xcd\\x7c\\x42\\xb6\\xb1\\x3f\\x45\\xf9\\xa8\\x01\\x2d\\x46\\xcf\\xba\\x62\\x02\\xf2\\x5d\\x1c\\x94\\xaf\\x7b\\xca\\xd8\\xda\\xe9\\x2a\\xbe\\x59\\xcc\\x41\\xf1\\xa2\\xd0\\xd0\\xb0\\x6e\\x14\\x16\\x96\\xe4\\x9e\\x15\\x74\\xf2\\x7c\\x41\\x27\\xb8\\x9c\\xff\\x87\\xaf\\x74\\xd3\\xcd\\x1e\\x57\\xbc\\xcd\\xd6\\xda\\x62\\x6b\\xb0\\xd5\\xff\\x7b\\x1f\\xca\\x21\\x0b\\x3a\\x40\\xf3\\x6f\\xf7\\xa1\\xf0\\xbc\\x0f\\x95\\xd9\\xb0\\xd5\\x93\\x6b\\x69\\x19\\xa9\\x6c\\x1c\\xd3\\x6a\\xc7\\x1b\\x2b\\x47\\x5a\\x2c\\xb9\\x9d\\x5b\\xdd\\xd5\\xad\\x45\\xf6\\xe2\\x1a\\xb8\\x5e\\x53\\x6c\\x2b\\x69\\xab\\xfe\\xa6\\xa5\\x61\\x43\\x6f\\x9b\\x29\\xcf\\x09\\x3b\\xb7\\x0e\\xe7\\x77\\xf7\\xac\\xad\\xe2\\x2b\\xfd\\x5f\\x89\\x34\\xe5\\xf5\\xdd\\xbf\\x9c\\x3f\\xd0\\xb1\\xcf\\x93\\x59\\x53\\x53\\x53\\x93\\xe9\\xd9\\xd7\\x01\\x93\\xcb\\xef\\xef\\xcb\\x3b\\x0d\\x5b\\x36\\xf2\\x07\\x7a\\x87\\x96\\x77\\x42\\x04\\xff\\xd7\\xce\\xe5\\x43\\xbd\\x30\\xb9\\x71\\x0b\\xc0\\x93\\xfe\\xaf\\x64\\x18\\x59\\x63\\xca\\x4e\\xe3\\xef\\x9d\\xff\\x8d\\xc4\\x98\\xe0\\x7e\\x09\\x41\\x12\\x94\\x81\\x36\\xbc\\x20\\x03\\x22\\x11\\x34\\x35\\x61\\xf1\\x31\\x20\\x0c\\x1c\\xe0\\x41\\x14\\xa8\\xa2\\x17\\x16\\x2a\\x65\\xa8\\xe3\\x05\\x84\\x39\\xce\\x82\\x7f\\x71\\x37\\x8a\\xd7\\x71\\xa3\\x77\\xbe\\xd0\\xe3\\x8a\\x95\\x4a\\xa5\\x19\\xd2\\x0c\\xb3\\x49\\xae\\x53\\xe8\\x8d\\x94\\xf9\\x9f\\xfa\\xd3\\x54\\x5a\\x85\\xce\\xa6\\x65\\xbf\\xd8\\xf1\\x0d\\x09\\xf8\\x7d\\xe0\\x7f\\xf9\\x38\\xff\\x37\\x66\\xe8\\x8e\\x2e\\x70\\x09\\x59\\xbb\\x7d\\xfb\\x6f\\xbf\\xd8\\x0d\\x8e\\xb0\\xe8\\x07\\xa7\\xfc\\x5c\\x19\\x68\\xf3\\xbc\\xfe\\x9b\\xfc\\xfd\\x17\\xe9\\x0b\\x69\\xba\\xaf\\xd8\\x31\\xf5\\xcd\\x12\\x48\\x0b\\x48\\xe0\\x8b\\x2e\\xfd\\x22\\x19\\x7c\\x09\\xe7\\x3a\\x10\\xfc\\x43\\xe0\\x7f\\xfe\\x38\\xff\\x67\\x66\\xe3\\xe7\\xbb\\xd9\\xd9\\xa9\\xb5\\x3b\\x77\\xf2\\xff\\xf8\\x42\\x5f\\x3b\\xa0\\xd3\\xfc\\x1e\\xb2\\x92\\x7d\\x13\\xe9\\xd1\\x82\\x60\\x1d\\xc3\\x24\\x8a\\xb7\\xf4\\x63\\xaf\\xe6\\x58\\x54\\xfe\\x8a\\x0a\\xf1\\x7e\\x9e\\x63\\xff\\x79\\x7f\\x19\\xc2\\xc0\\x65\\x4c\\xa3\\xe7\\x45\\xb3\\x3e\\xd6\\x42\\x33\\x3c\\x80\\xa6\\xb9\\xdc\\x1c\\xbf\\x13\\xb3\\x1f\\xad\\x4c\\xba\\x77\\xe4\\xea\\xd6\\x8a\\x9a\\x3d\\xd7\\xc6\\x46\\xa6\\xb6\\x56\\x7a\\xc1\\x58\\xbf\\xb6\\xd6\\x3d\\xd1\\x6a\\xce\\x59\\x7a\\x57\\xe7\\x30\\xbf\\x07\\xd6\\x45\\xae\\xb9\\xf4\\xc1\\x96\\x7f\\xec\\xfd\\xd5\\x13\\xbd\\xd5\\xbb\\x9e\\x1b\\x71\\x6f\\xeb\\xc8\\x69\\xda\\x7d\\x65\\xd9\\xbf\\x7a\\x9e\\xda\\x4b\\xb9\\x36\\x5e\\xe3\\xf7\\x90\\x22\\xd2\\xfc\\xc5\\x6d\\x4f\\xfe\\x72\\x6d\\x4f\\xbe\\x63\\xdb\\xe7\\xc2\\xe2\\xad\\x56\\xec\\xf3\\xf6\\xdc\\xb7\\xc2\\x5a\\xba\\x79\\x6a\\xac\\xfb\\xdc\\x68\\xd9\\x55\\x63\\x79\\x57\\x7e\\xe3\\xda\\x1a\\x6d\\x4a\\xcd\\xda\\xa6\\x01\\x7e\\x0f\\x8c\\x46\\xf7\\x1e\\x7b\\x6e\\x85\\x18\\x6a\\x5c\\x7d\\xef\\x82\\xdc\\xce\\x0a\\x63\\xf5\\xba\\x23\\xd5\\xfe\\x82\\xdd\\x80\\x36\\x22\\x44\\xee\\x67\\x4b\\xc5\\xbc\\x2e\\x79\\x8c\\x2c\\x3a\\x22\\x3c\\x2c\\x34\\x44\\x2a\\xe1\\x18\\x0c\\x51\\x22\\xda\\x57\\xe4\\x94\\x54\\xa1\\xc6\\xb8\\x58\\x2c\\xd8\\xab\\xac\\xc4\\xc0\\xe8\\xe4\\x06\\x07\\x4b\\x7f\\xac\\x0c\\x2b\\x31\\xe0\\x2e\\xd0\\x56\\xf1\\xff\\xfd\\xb5\\xc7\\x3f\\xe2\\x7f\\x56\\x05\\x86\\x77\\xf9\\x9f\\xd6\\x80\\xee\\xe5\\x4b\\x1f\\x83\\xa1\\x8e\\xff\\x39\\xbc\\xfa\\xd4\\xd6\\x27\\xf9\\xd7\\xe0\\xe8\\x95\\xad\\x57\\x60\\xf8\\xca\\xf6\\x2b\\xe0\\xe6\\x07\\xaf\\x4c\\x3e\\x49\\xed\\xa1\\xef\\x91\\xcb\\xcc\\x7d\\xec\\x34\\x92\\xa0\\xbb\\xc5\\xe1\\xae\\xa6\\xfc\\x99\\x03\\x94\\x50\\x72\\x15\\x01\\x3f\\x4a\\x47\\xc9\\x04\\x54\\x04\\x55\\xf0\\x3c\\x1a\\xbf\\xe9\\x74\\x32\\x65\\xeb\\xa0\\xbc\\xd7\\xb7\\x9c\\x75\\x25\\xcc\\x9e\\x40\\xc2\\x89\\x45\\x14\\xf1\\x44\\x80\\x01\\xa6\\x59\\x50\\x0b\\xc2\\x11\\x42\\x12\\x24\\x91\\xc9\\x64\\x2c\\xa7\\xb2\\x80\\xc2\\xe4\\xd0\\x9a\\x54\\x0a\\xd8\\x74\\x19\\x70\\x02\\x5c\\x62\\x75\\xdb\\xe1\\x77\\x6b\\xe1\\x47\\xb4\\xcd\\xd3\\xac\\x8a\\xf9\\x1f\\x4e\\x81\\x54\\xa8\\x45\\xdc\\x37\\x14\\x01\\x18\\x17\\x01\\x4a\\x9e\\x23\\xec\\xc2\\x58\\x64\\xcc\\x41\\x0c\\x46\\x1d\\x73\\x51\\x5e\\x34\\xa5\\x01\\xe1\\x16\\x8f\\x4b\\x06\\x48\\x19\\x2b\\x8b\\x0a\\x0f\\x93\\x72\\x48\\x05\\x2a\\x8e\\x3a\\x42\\x4a\\x89\\x35\\x4f\\xa9\\x50\\xe8\\x6c\\x62\\xf6\\xb3\\x4e\\x67\\x03\\x63\\x7e\\x57\\x4b\\x5d\\x6d\\x5d\\xda\\xc8\\xae\\x5d\\x65\\xd6\\xcc\\x65\\xeb\\x0e\\x2e\\xca\\x60\\x4f\\xc9\\x13\\xb5\\x89\\xf2\\xb5\\x23\\xfa\\x98\\x82\\x7c\\x53\\xb6\\x69\\x07\\xe5\\x82\\x7d\\x9d\\x55\\xe2\\x67\\xb9\\x0e\\xc4\\xfa\\xeb\\xec\\x21\\x42\\x79\\x87\\x86\\x64\\xc0\\x29\\x2c\\x60\\xb3\\x4a\\x54\\x12\\x78\\xfd\\x79\\x28\\x6e\\x66\\xff\\xbf\\xad\\x77\\x6f\\xa0\\x79\\x00\\xb8\\x98\\x55\\x32\\xe9\\xf4\\x1e\\x99\\x2b\\x92\\xc5\\xc0\\x88\\xb7\\xc8\\xe9\\x2d\\x26\\x87\\xcd\\xaa\\xc0\\x77\\x35\\x3a\\x9f\\x67\\x95\\xe5\\x1b\\xee\\xde\\x8a\\xa4\\xfc\\xc7\\xfc\\x1b\\xdc\\x5e\\xf6\\x2a\\xad\\xc9\\x57\\x8e\\x3a\\xd0\\x30\\xda\\x8b\\xce\\xa2\\xab\\x50\\x22\\x8a\\x7f\\x20\\x85\\xc1\\x80\\x09\\x06\\x32\\x6a\\x50\\x29\\xb4\\x12\\x96\\xe5\\xa4\\x1c\\x2b\\x1d\\x35\\x26\\xc4\\xa5\\x86\\xb1\\x21\\xa1\\xe1\\xa1\\x21\\xe1\\xa3\\x7a\\x39\\x96\\xc5\\xc8\\xc6\\x63\\x81\\x28\\x81\\x63\\x09\\xd7\\xa7\\x06\\x69\\x3c\\x84\\x86\\x48\\x43\\xfb\\x12\\x21\\x5c\\x03\\x91\\x11\\xe1\\x91\\x7d\\x28\\x1a\\xc5\\xc8\\xa2\\x63\\x82\\xa5\\xd3\\x95\\x6e\\x53\\x72\\x92\\x2e\\x8a\\x8d\\x88\\x50\\x45\\x34\\x26\\xb8\\x86\\xbe\\xcc\\x8b\\xfc\\x77\\x44\\x46\\x47\\x46\\x44\\xff\\x9b\\x6f\\xc5\\x8d\\x1e\\xd7\\xf2\\x73\\xe7\\xf6\\xed\\x1b\\x19\\xe9\\xec\\xac\\xa8\\xc8\\xc8\\x50\\x2a\\x11\\x3a\\x77\\xf5\\xdc\\xd5\\x2b\\x4f\\x5c\\x7a\\xec\\xe1\\x87\\xf6\\x9d\\xdd\\x77\\xf6\\xe4\\xf1\\x7b\\x8f\\x1e\\xbe\\x6b\\x64\\xef\\xc8\\xde\\x9d\\xdb\\xb7\\x6c\\xde\\x30\\xd6\\x39\\xdc\\x39\\x3c\\xb4\\xaa\\x6f\\xc5\\xb2\\x25\\x15\\x1d\\x15\\x1d\\x0b\\xda\\x9a\\x1a\\xeb\\x6a\\x32\\xca\\x33\\xca\\x4b\\x8a\\x1c\\xf6\\xbc\\x1c\\xa5\\x45\\x69\\x31\\x19\\xb4\\x29\\x89\\xf1\\x7e\\x22\\xe3\\x34\\x61\\xb8\\xdd\\x32\\xbb\\x6f\\x3d\\x22\\xff\\x12\\xd7\\xfc\\x7b\\x47\\x6e\\xf3\\xe4\\x1f\\x24\\x39\\x9a\\x73\\x72\\x9a\\x1d\\x9a\\xd1\\x30\\xb5\\x21\\x21\\xc1\\xa0\\x0a\\x85\\x9f\\x6a\\xec\\xc2\\xa1\\x02\\xcd\\x7a\\xe1\\x50\\xbc\\x41\\x15\\x5a\\x2f\\x1e\\xf1\\x5f\\x14\\x6f\\x50\\x85\\xf1\\xef\\xdc\\x72\\xc8\\xd7\\x32\\xef\\x51\\xf4\\x50\\x93\\xe6\\xe6\\xa7\\xf3\\x3f\\xd5\\x38\\x9a\\xe6\\x5c\\xa5\\x57\\x87\\xd9\\xc4\\x23\\xc1\\xf7\\x29\\xc3\\xc8\\x5f\\xcd\\xd5\\x79\\x89\\x89\\x79\\xd5\\xe6\\x58\\x7d\\xa2\\x4c\\x96\\xa8\\x8f\\xe5\\x3f\\xb9\\xe5\\x48\\xc8\\xcd\\x47\\x7c\\xff\\xba\\xe5\\x9a\\x5f\\xa5\\x57\\xe7\\x26\\x26\\xe6\\x56\\xa7\\xc7\\x1a\\x12\\xa3\\xa3\\x13\\x0d\\xb1\\x6c\\xfc\\xbf\\xf3\\x1c\\x84\\xa4\\xa8\\x99\\xef\\x93\\x1c\\x65\\xdf\\x42\\x04\\x85\\xa0\\x48\\x24\\x47\\x6a\\x94\\x84\\x52\\x91\\x09\\x0d\\xbb\\x92\\xb5\\x29\\x4a\\x86\\xc1\\xa6\\xd4\\x24\\xb5\\x4a\\x1e\\x23\\x8b\\x8a\\x8c\\x08\\x0f\\x8d\\x00\\xc6\\x68\\x48\\x4c\\x20\\x88\\xba\\x0a\\xb2\\x84\\xe5\\x8c\\x72\\xc1\\x7a\\xa8\\x1f\\x99\\x04\\xb6\\x6d\\xba\\x3b\\x28\\x10\\x66\\x81\\x01\\xcc\\xf4\\xce\\x3d\\xee\\x71\\xc5\\xb0\\x2c\\x42\\x6c\\x08\\x1b\\x22\\x95\\x20\\x82\\x48\\x0c\\xc7\\x29\\x2c\\xac\\x8a\\xd1\\xc9\\x19\\x93\\xdc\\xca\\x80\\x83\\x55\\x18\\x58\\x89\\xc1\\xc6\\x82\\xc3\\xa0\\x62\\x41\\xc2\\x9a\\x0c\\x8c\\x89\\x71\\xc8\\x41\\x25\\x97\\x30\\xa4\\x2d\\x6c\\x72\\x79\\x8d\\x33\\x7c\\x72\\x79\\x0d\\xd6\\x44\\x40\\x13\\x7f\\xf9\\xc6\\x86\\x08\\xfe\\x39\\xe8\\x62\\xce\\x63\\x28\\xaf\\xe2\\x7f\\x3c\\xfd\\x57\\xcc\\x7f\\xbd\\x1a\\x8c\\x16\\xd9\\x89\\xf2\\xb7\\x98\\xe5\\xb2\\x93\\x15\\x6f\\x16\\x47\\xf2\\x5f\\x85\\x5e\\xf2\\x48\\x24\\xb4\\xf3\\x0f\\xf3\\xb2\\xf0\\x6d\\x2b\\x6a\\x8b\\x84\\xff\\xc0\\xd3\\xd1\\x67\\xab\\xde\\x9e\\x3e\\x2a\\x3b\\x5b\\xfd\\x36\\xfe\\x15\\x86\\x9a\\x6a\\xfe\\x83\\xe9\\x5f\\x62\\xfe\\xa5\\x5a\\xb0\\x88\\x7a\\xf7\\x6b\\x7e\\xdc\\x12\\x43\\xf3\\xf8\\xec\\x2e\\x2b\\x83\\x31\\x43\\x00\\x10\\x25\\x65\\x67\\x01\\x23\\x06\\x07\\x81\\x0c\\x01\\x20\\x18\\x21\\xc9\\x49\\x0a\\x39\\x89\\x21\\x32\\xad\\x82\\x13\\xb6\\x1b\\x09\\x38\\x68\\x12\\x94\\x9f\\xe5\\xd3\\xa0\\x2d\\x65\\x28\\xc5\\x9d\\x96\\xe4\\xee\\xe3\\x4f\\xee\\xe5\\x9f\\xf3\\xc2\\x8f\\x56\\x5c\\xdd\\xd7\\xd4\\xb4\\xef\\xea\\x0a\\xfe\\x23\\x48\\x76\\xad\\x6d\\xcd\\xcc\\x6c\\x19\\x76\\xf1\\x1f\\xc1\\xf7\\x6b\\xe0\\xd3\\x1a\\xfe\\x90\\xef\\x1a\\x3b\\x85\\x9d\\x23\\x8f\\x0c\\x0d\\x5d\\x1c\\x71\\xc2\\x19\\x30\\xd5\\xad\\xaa\\xa8\\x58\\xdd\\x90\\x06\\x88\\x11\\xeb\\x5c\\x91\\x66\\x5a\\x5f\\xc9\\x82\\x06\\x5d\\x0a\\x41\\xb3\\xd1\\xa5\\x32\\x98\\xb0\\x24\\x1c\\x10\\x2b\\x88\\x9e\\xf8\\xdd\\x3a\\x09\\x28\\x50\\xf8\\x44\\x3d\\xeb\\xd6\\x75\\x8b\\xe9\\xb5\\x09\\xae\\xe4\\x79\\xfe\\xee\\xe4\\x5b\\xae\\xf0\\xb8\\x42\\x68\\x5d\\xac\\x34\\x8e\\x8b\\xb7\\x18\\x24\\xe0\\x30\\xcc\\xa9\\x8d\\xa5\\xfa\\xbc\\xda\\x58\\xf6\\x51\\xfe\\xe4\\x7a\\x18\\x2f\\x58\\x7b\\x61\\xa0\\xef\\xb4\\xdd\\xfb\\x44\\x88\\xfd\\xec\\xca\\xc1\\x87\\xd7\\x16\\x78\\x75\\xf5\\xa3\\xcd\\x9e\\x2d\\x7a\\xfd\\xe6\\x25\\x4d\\xa3\\x75\\x3a\\xbc\\x14\\x26\\x96\\x9d\\xdd\\xf0\\xed\\x13\\x0b\\x5d\\xc5\\xbe\\x7f\\xb2\\x3f\\xde\\x58\\x59\\x1b\\xac\\x92\\x55\\xee\\xfb\\x87\\xab\\x4d\\xac\\x92\\x05\\xe8\\x6b\\x08\\x91\\x5a\\x6e\\x06\\x49\\xc4\\x6a\\xd9\\x98\\x19\\x0b\\x00\\x17\\x94\\xb7\\xcd\\x3b\\x96\\x59\\x49\\xad\\xcf\\x7c\\x1d\\xff\\xc8\\x2b\\x72\\xc1\\x42\\x8b\\x98\\x6b\\x25\\x3c\\x27\\x97\\xdd\\x74\\x9b\\xe7\\xdc\\x3e\\x7f\\x59\\x66\\x25\\xb9\\xbe\\xb2\\xeb\\xf8\\x1b\\xd7\\xc5\\xfc\\x67\\xf0\\xd7\\x50\\xf2\\xf2\\x3f\\xa7\\xf9\\x29\\x62\\x3d\\x37\\x40\\x84\\xa5\\xa5\\x10\\x11\\x66\\x28\\xf1\\x94\\x1f\\x13\\x1d\\xc8\\x05\\x36\\xca\\xd4\\xda\\x00\\x24\\x3a\\x98\\x26\\x14\\xc0\\xfd\\xd3\\xc2\\x5d\\x24\\xdf\\x57\\x76\\xed\\xe8\\x7f\\x9f\\x6d\\x2d\\xd9\\xfc\\xcc\\x38\\x6e\\x5b\\x57\\xa5\\xc1\\xdf\\xf9\\xee\\x35\\xca\\x67\\xcc\\xa7\\xb7\\x9e\\xfc\\xe1\\x81\\xbd\\xdf\\x39\\x5c\\x7f\\xbc\\x70\\xf0\\x78\\xd7\\xb7\\x7e\\xe4\\x5b\\x2e\\xc6\\xf7\\xaf\\xf1\\xbf\\x22\\xed\\xc4\\x89\\x92\\x90\\xc5\\x95\\x16\\x19\\x81\\x99\\xda\\x60\\xc1\\x3c\\x3f\\xdd\\x03\\x4d\\xf1\\x54\\x31\\x8d\\x49\\x89\\x09\\xf1\\x71\\x2a\\x6d\\x34\\x2b\\x0c\\xcc\\xd9\\x26\\x50\\x5e\\x22\\x1a\\x96\\xa0\\x4d\\xb0\\xf8\\x6a\\x7f\\xbc\\xee\\x95\\x23\\x2d\\x19\\xcb\\x4e\\xac\\xca\\xa9\\x5a\\x5e\\x9c\\x68\\xed\\xda\\x52\\xfb\\x63\\x8a\\xff\\xe0\\x7f\\x5d\\xbe\\xe5\\x99\\xf5\\xce\\xa3\\xfb\\x56\\xc9\\xef\\x8f\\x29\\x6a\\x59\\x5e\\xd0\\xb8\\xb1\\xc5\\xcc\\x27\\x8a\\xb9\\x3a\\x4f\\x23\\x44\\xde\\x60\\xa7\\x50\\x2c\\x2a\\x71\\x39\\x01\\x80\\xa3\\xa9\\x49\\x82\\x31\\xc3\\x41\\x6f\\x68\\x08\\x66\\x59\\x0a\\x06\\xa5\\xec\\x08\\x6a\\x37\\x09\\x26\\xdd\\xc7\\xa2\\xd8\\x40\\xbc\\x37\\x26\\x8c\\x4b\\xb2\\x84\\x60\\x1d\\xe8\\x14\\xba\\x00\\xa2\\x8a\\x26\\xf9\\x93\\x33\\xfc\\x33\\xb0\\xf5\\x63\\xfe\\xba\\xfd\\xe4\\x4a\\xaf\\x77\\xe5\\x49\\x3b\\x98\\xd9\\x29\\x5f\\xdb\\xf4\\x0c\\x3e\\xf1\\xf7\\xbf\\xfb\\xd6\\xb2\\x53\\xbe\\xad\\x00\\xfc\\x0c\\xde\\x8f\\x00\\x3d\\x8a\\x10\\xd9\\x41\\xb1\\x38\\x45\\xae\\x82\\x9b\\xdb\\x81\\x24\\x08\\x23\\x09\\x16\\xdb\\xf3\\x7f\\x68\\x85\\xcd\\xaa\\xb0\\x02\\xf1\\xf0\\x4f\\xc3\\xa6\\xdf\\xf3\\xbf\\xb7\\x9e\\xe8\\xba\\x7e\\xbd\\xeb\\x44\\x06\\x30\\xc4\\xe9\\xe3\\x7d\\x6f\\xc3\\xbb\\xdf\\xfc\\xa6\\x88\\x39\\xf8\\xe0\\x03\\x78\\x07\\x01\\xca\\x44\\x88\\x5c\\xa6\\x78\\xbe\\x4c\\x57\\x7a\\xf8\\x7c\\x54\\x16\\xc6\\x8c\\x47\\x84\\xa0\\x71\\x73\\x40\\x0d\\x73\\xa2\\xfd\\x62\\x05\\x75\\x8a\\x6b\\x38\\xb9\\xfa\\x1a\\x7f\\x1d\\xf8\\x15\\xa0\\xf9\\x3e\\xff\\x12\\x0c\\xff\\x02\\x1f\\xf7\\x0d\\xb3\\xea\\x33\\xbe\\x49\\x7c\\xc0\\x57\\xe6\\x93\\xd1\\x31\\x58\\x80\\x10\\x79\\x86\\xe6\\xf6\\x7e\\xfe\\xbb\\xd4\\x77\\x7c\\x97\\x08\\x78\\x79\\xf9\\x80\\x97\\x7f\\x09\\xf8\\x9d\\xff\\xfa\\x39\\xff\\x22\\xac\\xfd\\x3d\\xbc\\xcb\\x5b\\x99\\x8b\\x67\\x29\\x8c\\x82\\xf7\\xbd\\x2d\\x8e\\xf7\\x31\\x84\\xc8\\x39\\x5a\\xdb\\xcb\\xe4\\xd2\\x0b\\xc3\\x8b\\x41\\x44\\x78\\x0b\\x78\\x44\\xa2\\x82\\xb9\\x10\\x7c\\x59\\x60\\xa8\\xfb\\xeb\\xc2\\x53\\x47\\x95\\x05\\xc6\\x61\\x9a\\x7f\\xf9\\x1a\\x7f\\x8f\\xd7\\xcb\\x24\\xe3\\xfb\\xce\\x7c\\xf6\\x5b\\x7c\\xd0\\xb7\\x25\\x80\\x4b\\x1d\\x41\\x88\\x9c\\x27\\xce\\xcf\\x79\\xbe\\xfa\\x8b\\x9f\\x6f\\x82\\x6d\\xf0\\x2f\\xfe\\xeb\\x5e\\x7e\\x9f\\xd7\\x8b\\x57\\xc2\\x07\\x67\\xa7\\x7b\\x44\\xd4\\x83\\xf8\\xfc\\x61\\xfe\\x67\\xb4\\xfd\\x49\\x28\\xcb\\x45\\xd1\\xa0\\x14\\x8c\\xe6\\xaf\\x7e\\xc0\\xb2\\x7e\\xe6\\x0e\\x0e\\x68\\xee\\xbb\\xf0\\x0e\\xb5\\x4c\\x2d\\x7a\\xda\\xfc\\x50\\x2c\\x3a\\x5b\\xb3\\x18\\x93\\xff\\x85\\x5a\\xfc\\xd1\\x9a\\x4b\\xa3\\x85\\x39\\xbd\\xc7\\x96\\x63\\x67\\x73\\xb6\\x1c\\x34\\xa5\\xcb\\x2b\\xbd\\xbc\\xef\\x1a\\xde\\xc0\\x94\\xe3\\x05\\x67\\xbe\\xbf\\x7b\\xf7\\x3b\\x77\\x37\\x1c\\x2f\\x1a\\x3a\\xde\\xb1\\xec\\xcc\\x9a\\x22\\xec\\x5b\\x31\\xcb\\x49\\xbd\\x81\\xff\\x35\\xd9\\x46\\x9c\\x48\\x8b\\xb2\\x5d\\x19\\x91\\x11\\x18\\xd7\\x06\\x4a\\x08\\x21\\x86\\xa1\\xd9\\xaa\\xea\\x00\\x9b\\x82\\x36\\x25\\x59\\x23\\x4c\\x5e\\xb5\\x2a\\x45\\xd8\\x2f\\xc5\\x2c\\xf1\\x48\\x96\\x4e\\xdc\\x2c\\xc6\\xcf\\xf7\\x20\\xb4\\xe6\\x5d\\xe9\\xd2\\xf3\\xa3\\xa5\\x10\\x9d\\x6a\\x73\\xaf\\x28\\xc9\\x29\\x6c\\xca\\x8e\\x85\\xd4\\xd2\\x0e\\xbb\\xd4\\xfb\\xb1\\x17\\x7b\\xf0\\xfe\\x8a\\x6d\\x53\\xc3\\x46\\xcf\\x12\\x4f\\x63\\x41\\xc4\\xfd\\x31\\xc5\\x2d\\xcb\\xed\\xf5\\x13\\xad\\x16\\x3e\\x29\\x80\\xe9\\xc0\\x68\\x70\\xe6\\x17\\xa4\\x95\\x7d\\x13\\xd9\\x50\\x2d\\xb2\\xba\\x72\\x0a\\xf3\\x52\\x18\\xc2\\x30\\x94\\xa1\\x4d\\x02\\x01\\xc6\\x93\\x24\\x2a\\xa0\\x60\\x6e\\x5b\\x46\\xbc\\x25\\x4e\\x16\\x27\\xe6\\x2b\\xb3\\xc6\\xf9\\x1e\\x1e\\xd5\\x6c\\x18\\x84\\x12\\x9c\\x06\\x43\\x27\\x32\\x8a\\xb5\\xb7\\x42\\x2c\\xad\\x6b\\x23\\x0b\\xf2\\x8b\\xb5\\xb6\\xdf\\x5f\\x96\\x33\\x5c\\xbc\\xfe\\x6b\\xbb\\xaa\\xb3\\x3b\\xb6\\x35\\x83\\xb1\\xc0\\x24\\x4f\\x6b\\x1e\\x6f\\x90\\xa5\\x44\\x77\\xf7\\x5a\\x5a\\xc7\\xeb\\xea\\xc6\\x5b\\x2d\\xe0\\xae\\xd1\\x35\\x67\\xf0\\x15\\xf5\\xd5\\x36\\x7b\\x54\\x72\\x76\\x72\\x4a\\x56\\x4a\\x94\\x06\\xb4\\xc9\\x09\\x49\\x03\\x4f\\xff\\x6e\\x3f\\xa8\\x36\\xff\\xe7\\xf9\\xee\\x87\\x2a\\xd6\\x9f\\xee\\xe0\\x3f\\x5e\\x39\\xb5\\xb7\\x89\\x90\\xee\\xe9\\x07\\x60\\xc1\\xca\\xe7\\x0f\\x34\\x37\\xee\\x7f\\x7e\\x90\\x3f\\x73\\xf7\\x9f\\x3b\\xc3\\x23\\x30\\xec\\xfa\\x4e\\x55\\xe5\\x9b\\x1b\\x60\\x4d\\xf5\\x64\\x97\\xd5\\xde\\xbd\\xb9\\x12\\x61\\xb4\\x64\\xe6\\x13\\x72\\x84\\xb4\\x20\\x2b\\xaa\\x16\\xfa\\xef\\xc8\\x4d\\xbe\\x4d\\xff\\x93\\x6f\\xea\\x7f\\x9c\\xd9\\x7c\\x9b\\xfe\\x53\\x93\\x57\\x31\\x8b\\x52\\x14\\xba\\x3f\\x87\\x99\\x9a\\x93\\x04\\x7a\\xef\\x98\\x65\\x57\\x3b\\xd2\\xf5\\x50\\x75\\xe1\\xde\\x86\\x75\\x2f\\xec\\xae\\xcd\\x5b\\xb2\\xa7\\x35\\xad\\x34\\x5d\\x99\\xde\\x3c\\x56\\x97\\x9d\\xb1\\x6c\\xa5\\xa5\\x6d\\xa3\\xdb\\xbd\\xa9\\xcd\\x52\\x51\\xda\\xd2\\xcb\\x47\\xb5\\x35\\x59\\xed\\x10\\xad\\xcd\\x4b\\x4d\\xcd\\x4d\\x89\\x0e\\x87\\xa4\\xc4\\x14\\x5d\\xf7\\x85\\x1f\\x6d\\x73\\xf6\\x7d\\x75\\x77\\xc3\\x43\\xb9\\x8b\\xc6\\x2b\\x8a\\xbb\\x1f\\x9a\\xa8\\x0c\\x6f\\xf9\\xaf\\x5d\\x83\\xdd\\xe7\\xc7\\xcb\\x6b\\x27\\x1f\\x5d\\x32\\xb4\\xfe\\x0d\\xb7\\x02\\x9e\\x18\\xfa\\x4a\\x61\\xe1\\x43\\xcb\\xd6\\x3a\\x07\\x5b\\xb2\\xcd\\x75\\x2b\\x0a\\x11\\xa0\\x42\\xfe\\x22\\xf9\\x1a\\xcd\\x13\\xb2\\xb8\\xd2\\x10\\xc7\\x70\\xed\\x62\\x99\\x02\\x12\\x9c\\xd1\\x92\\x2e\\x24\\x91\\xa8\\x24\\xfe\\x69\\xd7\\xe6\\xe7\\xae\\xb1\\x69\\x85\\x45\\x51\\xa1\\x9b\\xc5\\xb5\\x40\\x0d\\xff\\x57\\x88\\xf0\\xfe\\xf1\\x8f\\x30\\xec\\xbd\\x2f\\xe6\\x92\\xaf\\x96\\x55\\x9f\\x06\\x38\\x7d\\x63\\xe7\\x2c\\xac\\x1e\\x01\\xca\\xe7\\x5f\\x23\\x47\\x68\\x4e\\xf9\\xad\\xef\\x53\\xdf\\xe6\\x7d\\x01\\x57\\xb7\\x4d\\x3b\\xef\\x5d\\x89\\xbf\\xc5\\xfb\\x7f\\x05\\xdb\\xbd\\xbb\\x62\\x2e\\xfb\\xea\\x99\\x47\\x4f\\x9f\\x9e\\xfe\\xdb\\x2c\\x92\\x46\\x18\\xcb\\x01\\xfc\\x3e\\x83\\x92\\xd0\\x98\\x2b\\x34\\x11\\x58\\x90\\x00\\xc3\\x06\\x08\\xa0\\xf4\\x08\\x08\\x4b\\x80\\x1d\\x45\\xc2\\xfe\\x8f\\x06\\x11\\x8b\\x18\\xc4\\x32\\xfd\\x12\\x91\\xd8\\x22\\x10\\xab\\x34\\xcc\\xbf\\x0c\\x8f\\xde\\xf6\\x3a\\x8f\\x2b\\x8a\\x10\\x92\\x44\\x92\\x0c\\x0a\\x43\\x8c\\xd0\\x60\\x0a\\x50\\xb3\\xde\\x9e\\x08\\x00\\x5f\\x3e\\x79\\x12\\x76\\xdf\\x4a\\x06\\x00\\x36\\xfc\\x32\\xbc\\x76\\x07\\x42\\x00\\x8c\\xee\\x47\\x88\\x64\\x10\\x27\\xd5\\xf7\\x4e\\xb9\\x42\\x55\\xc0\\x02\\x37\\xa7\\x4f\\xa9\\x42\\x63\\x59\\x18\\xbc\\xa9\\x4b\\x9c\\x88\\x75\\x0b\\x50\\x1a\\xc5\\xb4\\x76\\xba\\x74\\x9f\\xd3\\xfb\\x79\\x97\\xde\\x2c\\xa3\\xd9\\xce\\xcf\\xbd\\xcc\\xe3\\x71\\x85\\xca\\x75\\x0a\\x9d\\x7f\\x41\\x36\\xe8\\x28\\x72\\xe5\\x56\\x48\\x12\\xbe\\x7a\\xea\\x14\\x6c\\xbf\\x19\\x96\\xf4\\x7d\\x6c\\x9f\\xfe\\xc7\\x6d\\xb1\\x49\\xbf\\x44\\x88\\xf4\\x04\\xf8\\x17\\x18\\x60\\x40\\x3d\\x8f\\x73\\x86\\x1a\\xd5\\x94\\x84\\x41\\x4c\\x2f\\x9e\\xc3\\xbf\\x20\\xe8\\x0c\\xfe\\x3c\\x42\\xc6\\x4f\\x39\\xc3\\x49\\x64\\xbf\\xf4\\x6a\\xcb\\xa9\\xc4\\x87\\x1c\\xe0\\x17\\x79\\x2d\\x3b\\xe5\\x7b\\x34\\x5c\\x2e\\x0a\\x9b\\x2f\\x84\\x6f\\x89\\xc2\\xf6\\xd5\\x08\\xb2\\x36\\xce\\xfc\\x9e\\x1c\\x62\\x5f\\x47\\x66\\x94\\x8f\\xda\\x5d\\x2d\\x51\\x7e\\x59\\xeb\\x81\\x30\\x06\\x40\\x84\\x34\\x48\\x81\\x45\\x0c\\x61\\x99\\xde\\x00\\x7e\\x23\\xc9\\x4d\\xd3\\xb0\\x82\\xbc\\xe2\\x1a\\xd4\\x68\\x49\\x07\\x94\\x97\\x93\\x9e\\x6f\\xc9\\x4f\\xd1\\xc4\\xa9\\x15\\xf2\\xf0\\x30\\x64\\x06\\x73\\x08\\x17\\x6b\\x61\\xe9\\x22\\x91\\xc5\\xd8\\xac\\x4a\\xa5\\x8a\\xae\\x0b\\x31\\xb2\\xf9\\x85\\x9c\\xc1\\x0f\\x9d\\xe7\\x14\\x4c\\xfa\\xb6\\xd7\\xf6\\x54\\x96\\xf7\\x96\\x6b\\x4f\\x42\\xbe\\xb3\\x66\\xf2\\x52\\xcf\\x07\\x6f\\xf9\\xba\\xf4\\x2d\\xdb\\x3a\\xb3\\x9b\\xca\\x6d\\xca\\xec\\x28\\x5b\\xe3\\x00\\xbf\\x19\\xfe\\xa0\\xb0\\x76\\x54\\xee\\xbc\\x5b\\xd9\\xf9\\xe0\\x87\\xbb\\x8e\\x85\\x97\\xf5\\xec\\x70\\x2f\\xdc\\x1c\\x77\\xec\\x37\\x8f\\x74\\xf0\\x1f\\xf0\\xbf\\x78\\xf9\\xae\\xae\\x0b\\x9b\\x6a\\xa2\\xe3\\x35\\x91\\x77\\x85\\xeb\\x92\\x95\\x4c\\xe7\\x68\\xf3\\xa1\\x81\\xe2\\xbf\\xfe\\x06\\x89\\x7d\\xfd\\x94\\xec\\x27\\xcd\\xc8\\x88\\xf2\\xd0\\x22\\x57\\x7b\\x04\\x70\\xc0\\x02\\xc3\\x69\\x81\\x30\\xa9\\xb4\\xaf\\x08\\x58\\x8e\\x05\\x6e\\x14\\x71\\x88\\x21\\x1c\\xd3\\x2b\\x05\\x3f\\xb8\\x3c\\x79\\x5e\\x77\\xd3\\x4c\\x80\\x32\\x33\\x4c\\x79\\x69\\x79\\xc9\\x49\\x71\\x6a\\xb9\\x2c\\x34\\x04\\x19\\xc1\\x38\\xdb\\x5d\\xa3\\x91\\x76\\x37\\x00\\x6a\\xd1\\x8a\\xa5\\xe8\\x02\\x45\\xab\\x69\\x7f\\x31\\x3f\\x72\\x75\\xb2\\x62\\xd7\\xce\\x13\\x60\\x2f\\x8a\\x6a\\xdd\\x70\\x5f\\xeb\\x9a\\x0b\\x83\\x56\\x5f\\x17\\x63\\xac\\x1b\\xaa\\xee\\x3f\\x92\\xd3\\xa0\\xae\\xf4\\x8c\\xf6\\xe5\\x2d\\x74\\x65\\x84\\xc0\\xc7\\x89\\x4e\\x4f\\x6c\\xdb\\x7d\\x6f\\x4d\\x80\\xea\\xb9\\xa3\\x4d\\x6b\\x14\\xbd\\x8f\\x4e\\xb8\\xea\\x77\\x3f\\x3b\\xb4\\xb9\\x71\\x7f\\xbf\\xb3\\x2c\\x6b\\x5b\\x5c\\x8e\\x51\\xcd\\xbc\\x93\\xd5\\x36\\xe2\\x52\\xdb\\xfb\\x9b\\xb2\\x10\\xa0\\xb7\\xf9\\x1f\\x93\\xbb\\xd9\\x29\\xa4\\x41\\x69\\x2e\\x03\\x62\\x11\\x66\\x58\\x4c\\xeb\\x2f\\x03\\xea\\xe1\\x02\\xec\\x28\\x7e\\x05\\x23\\x4d\\x16\\x27\\x11\\xa9\\x0c\\xe6\\xee\\xfc\\xba\\x20\\xee\\x14\\xbf\\xb3\\xf6\\xf1\\xb1\\xe2\\x92\\x8d\\x57\\xc7\\x71\\xeb\\x70\\x55\\x12\\x64\\x75\\x1f\\x59\\xfa\\x73\\xaf\\xf7\\x28\\x3c\\xf0\\x21\\x63\\x8b\\x5a\\x7a\\xff\\x9b\\x9b\\xf6\\xbe\\x73\\xa4\\xfe\\x7e\\xe7\\xd0\\xfd\\x5d\\x7d\\xe7\\x56\\x17\\xf8\\x06\\xd8\\x29\\xdf\\xdd\\x78\\x83\\x58\\xab\\x8c\\xe7\\x49\\x31\\xc5\\x48\\x98\\x5d\\xc6\\xb0\\x50\\x0c\\xb5\\x7e\\xb8\\x6b\\x00\\x23\\x46\\x95\\x35\\xba\\xe7\\xc7\\xa9\\x55\\xca\\x58\\x96\\x8b\\x0d\\x16\\x8a\\x98\\xab\\xad\\x8b\\x0d\\xb9\\xba\\xf8\\xde\\x81\\xc2\\xf4\\xce\\x23\\xbd\\xb9\\x65\\x1d\\x05\\x71\\x79\\x1d\\x9b\\x6a\\xbf\\xe5\\xf5\\x6e\\x82\\xcd\\x3f\\xc7\\xfd\\x91\\x55\\xc3\\xa7\\x96\\x17\\xdc\\xb5\\x7d\\x45\\xcc\\xfd\\xd1\\x05\\xf5\\xdd\\x94\\xfd\\x34\\x80\\x8e\\x15\\xec\\x20\\xde\\x4d\\xe2\\xa8\\xfd\\x52\\xe4\\x2a\\x88\\x04\\x86\\x8d\\x10\\xe7\\x18\\x42\\x84\\x45\\xa4\\x57\\xc2\\x61\\x6a\\xda\\xde\\x04\\x9c\\x41\\x08\\x25\\xa0\\x04\\x99\\xdc\\x64\\x90\\xc9\\xc4\\x6c\\x76\\xad\\xcc\\x3a\\xbf\\xbc\\xa0\\xc8\\x12\\x0b\\xeb\\xe0\\xcf\\xde\\xf4\\xb6\\x8d\\x8d\\x49\\xf9\\xb3\\xe5\\x4b\\xa3\\xbc\\xec\\x94\\x6f\\x2d\\x3e\\x71\\x53\\xfd\\x52\\xfc\\x53\\xdf\\x56\\x76\\x0a\\x01\\x7a\\x8e\\x77\\x13\\x25\\xe5\\xb9\\xfd\\xfc\\x36\\xa9\\xff\\x1f\\xda\\xb4\\x16\\xfe\\xec\\xcd\\x68\\xdf\\xdc\\xa8\\xb1\\x25\\x45\\x4a\\x13\\x93\\xe2\\x25\\x15\\xb5\\x7c\\x94\\x57\\xc4\\xc5\\xde\\x18\\x5e\\xb0\\xdb\\x13\\x68\\xd3\\xea\\x2e\\x6c\\xa2\\xaa\\x23\\x46\\x5d\\x33\\x9f\\x90\\x0e\\xf6\\x0d\\x94\\x8a\\xb2\\x50\\xa5\\xcb\\xa5\\x01\\x06\\x25\\xdd\\xbe\\x46\\x5a\\xd2\\x6c\\x8d\\x34\\x0d\\x34\\xea\\x75\\x80\\xcc\\x69\\xba\\x2c\\x7d\\x56\\x9c\\x8a\\xd6\\x48\\x4b\\x85\\x54\\x29\\x77\\x6b\\x8d\\xb4\\x20\\x47\\xc6\\xfc\\x32\\x69\\xa5\\x7b\\xde\\x3e\\x54\\xd3\\x72\\xe4\\x95\\x75\\x3b\\x5e\\xde\\x51\\xc6\\x54\\x99\\x16\\x1d\\x58\\x66\\xf3\\x34\\x94\\xc4\\x65\\xcb\\x8a\\x3a\\xc6\\xba\\xdb\\xb6\\x2e\\xcc\\x00\\xdf\\x84\\xd6\\xbd\\x85\\x7d\\xa3\\xe7\\xf1\\x8f\\xef\\xfa\\xf1\\xdd\\x7f\\x7c\\xba\\x17\\x16\\x5f\\xf8\\xf9\\xe1\\xcb\\x4b\\x57\\x3c\\xbd\\xb7\\x31\\x3a\\x2e\\x59\\x98\\xeb\\x29\\xca\\xcf\\x5e\\x6d\\x39\\xf0\\x5c\\x5f\\xd7\\x82\\xfb\\x87\\xcb\\x10\\xa0\\x13\\x33\\x9f\\x90\\x76\\x9a\\x07\\x5b\\xec\\x2a\\x24\\x80\\x40\\x0f\\x18\\xe1\\x86\\x20\\x12\\x0f\\x23\\x8e\\x60\\xae\\x2f\\x50\\x0b\\x45\\x39\\x17\\x88\\x67\\xd4\\xc7\\xa6\\xc5\\x04\\x14\\x6f\\x9b\\x56\\x05\\x73\\x68\\x50\\xad\\x73\\x4a\\x83\\xe9\\x6c\\x4c\\x83\\x6f\\x03\\xb3\\x12\\xf8\\x95\\x6b\\x9f\\x9c\\x28\\xad\\xdf\\xfb\\xdc\\xea\\x8e\\x27\\xf6\\xb5\\x79\\xd3\\x1b\\x86\\xca\\x6a\\xd7\\x37\\xa7\\x7f\\xe5\\xc2\\xbd\\xac\\xfa\\xcc\\x46\\x3e\\x96\\x73\\xad\\xbb\\xd0\\x3f\\xf0\\xd0\\x48\\x61\\xde\\xe0\\xc3\\xeb\\x0a\\xfb\\xdc\\x16\\x73\\x5d\\x7f\\xd1\\xf9\\xa3\\xa7\\x11\\xa0\\x43\\xfc\\x04\\xa9\\xa3\\xb9\\x98\\x43\\xae\\x30\\xda\\x4e\\x16\\xb3\\x48\\xd8\\xea\\x72\\xe8\\xf6\\x2d\\x6e\\x45\\xa3\\x54\\x87\\x27\\x23\\x81\\xe6\\xce\\xa2\\x3d\\xe3\\x85\\x1d\\x4c\\x7b\\xf3\\x65\\x04\\x61\\x42\\x6d\\x73\\xf1\\x6a\\xca\\xab\\x6e\\xd4\\xc7\\x5a\\xfc\\xa8\\xf2\\x2f\\xe8\\x54\\x86\\xef\\x2e\\xa1\\x53\\x63\\x43\\x97\\xc6\\x8a\\xeb\\xf7\\x3e\\xbf\\xba\\xe3\\xf1\\x7d\\xed\\xd7\\xcd\\xee\\xc1\\xb2\\xba\\xf5\\xcd\\xe9\\x57\\x2e\\xdc\\xc3\\x5c\\x3c\\xbb\\x91\\x97\\x49\\xcb\\xd7\\x9d\\x5f\\xb1\\x52\\xec\\xd4\\x48\\x41\\x5f\\x83\\x25\\xad\\xae\\xaf\\xe8\\xc1\\x7b\\x4e\\x23\\x84\\x66\\x66\\x50\\x05\\xef\\x26\\x5b\\xd9\\x29\\x6c\\x44\\x4f\\xbb\\x11\\x32\\xc1\\x3b\\x33\\x11\\xa8\\x0c\\x24\\xf0\\xfe\\x4c\\x0b\\x42\\x48\\xfa\\x0c\\xc0\\x54\\xd9\\x94\\xd5\\x42\\xaf\\xdd\\xc0\\xbb\\x05\\x1b\\x01\\x1b\\xd1\\x6f\\xdb\\xc5\\x6b\\xcb\\x66\\xfa\\xe9\\xb5\\x55\\x08\\xa1\\x90\\x67\\x00\\xae\\xcd\\xf4\\xd3\\x8b\\x31\\xad\\xa1\\x92\\xe3\\xe7\\x90\\xc9\\x71\\x65\\x52\\x07\\x15\\xc1\\xfe\\x8d\\x92\\x22\\xae\\x82\\x20\\x4f\\x84\\xa2\\x12\\xa2\\xe2\\x63\\xa2\\x51\\x24\\x8a\\xd0\\xca\\x24\\x9c\\x92\\x02\\x6f\\xb5\\x81\\x12\\xfa\\x40\\x11\\x7a\\x74\\x2b\\x62\\x36\\x79\\x79\\xf5\\x84\\xc8\\x25\\x33\\x01\\xd9\\xfc\\xf7\\x9a\\xc7\\x1a\\x74\\xba\\x86\\xb1\\x66\\x66\\xf8\\xff\\xa7\\xee\\xcd\\xc3\\xdb\\xaa\\x8e\\x87\\xe1\\x39\\xe7\\x1e\\x5d\\x29\\x76\\x62\\x5b\\xb6\\x65\\x79\\x95\\x2d\\x6b\\xb3\\x2c\\xef\\xb2\\x16\\xef\\xf2\\xbe\\x3b\\x8e\\xe3\\x35\\x4e\\x62\\x3b\\xab\\xb3\\x3a\\x89\\xb3\\x27\\x04\\x48\\x02\\x01\\x12\\x93\\x00\\xd9\\x13\\x3b\\x81\\xb0\\x86\\xcd\\x10\\x5c\\xe2\\x40\\x0b\\x2d\\xa5\\x2d\\x14\\x4a\\xdb\\x5f\\x81\\x96\\xd2\\x96\\xb6\\xf4\\xd7\\x96\\xa4\\x2d\\x6d\\xa1\\x2d\\xc4\\xbe\\xfa\\x9e\\x7b\\xce\\xd5\\xb5\\x64\\x9b\\xb6\\xdf\\xf3\\xbe\\xff\\xbc\\x3c\\xa5\\xf8\\x6a\\xe6\\xce\\x9d\\xb3\\xcd\\x99\\x99\\x33\\x67\\x06\\x97\\x7f\\xd9\\x5c\\xb6\\xfd\\x52\\x6f\\xdf\\xc5\\x2d\\x25\\x93\\xa9\\xb8\\x24\\xa3\\x71\\x95\\x3b\\x6f\\x6d\\x4b\\xb6\\xc8\\x4b\\x23\\x00\\x19\\x52\\x8c\\x42\\x12\\xa4\\xc3\\x2a\\x76\\xf2\\x11\\x4f\\x10\\x02\\x05\\x87\\x14\\x2c\\xa9\\x8d\\x8a\\xc7\\x1c\\x07\\x8b\\x95\\xcc\\x00\\x8f\\xf3\\x18\\x7c\\x95\\xbf\\xe1\\xab\\xb1\\xba\\x3c\\x31\\x7a\\x3d\\x02\\x7d\\xba\\x3e\\xcd\\x98\\x1c\\xad\\x0d\\x0b\\x99\\x37\\x37\\x78\\x0e\\x24\\xa1\\x44\\x71\\x83\\x91\\xb9\\x17\\x77\\x7f\\x57\\x31\\xe7\\x72\\x9a\\x2d\\xf6\\xa8\\x28\\x65\\x08\\x67\\xb0\\xa8\\xe5\\x6c\\xdf\\xe8\\x9d\\xa5\\xc7\\x96\\xe5\\xe4\\x2c\\x3b\\xb6\\x74\\xcb\\x78\\xb6\\xb5\\x28\\x35\\x0a\\xe1\\xa4\\x84\\x2b\\x71\\x29\\x18\\xe7\\xf5\\xdc\\x5a\\xfd\\xc9\\x16\\x67\\x63\\x56\\x54\\x54\\x56\\xa3\\xb3\\x7c\\xc7\\x43\\x3d\\x3d\\x17\\x07\\x3d\\xb8\\xfc\\xcb\\xff\\x45\\x28\\xb3\\x7d\\x47\\x4d\\xf7\\xeb\\xdd\\xdd\\xaf\\xf6\\x6e\\x7f\\x7e\\x67\\xe1\\x29\\x5c\\x92\\xd1\\xb4\\xca\\xe5\\x5e\\xdb\\x92\\x23\\xb6\\x75\\xa5\\xf7\\x0f\\xe4\\x38\\x1f\\x0d\\x36\\xf0\\x40\\xa9\\xa7\\x58\\x85\\x78\\x28\\x4a\\xc3\\x98\\x33\\x20\\x82\\xe5\\x4a\\xfa\\x3c\\xe6\\x39\\xbc\\xc9\\x97\\x66\\x31\\xb1\\x5e\\x89\\x30\\x66\\x69\\x67\\x75\\xa4\\xc1\\x6a\\x31\\x58\\xb4\\xa6\\x08\\xbf\\x18\\xa9\\x28\\xad\\xda\\xae\\xe6\\x75\\xd8\\xce\\xda\\xe1\\x62\\xed\\xe0\\x7d\\xb6\\x85\\x2f\\x7f\\xb9\\x86\\x25\\x5d\\x75\\x99\\xcd\\x96\\x95\\xe6\\xfa\\x2d\\xf5\\xb9\\xad\\xfa\\x71\\x14\\x1c\\x6d\\xd0\\x26\\xe7\\xe8\\xd5\\x08\\x27\\x26\\x3c\\x1f\\x9f\\x82\\x71\\x4e\\xfb\\xd6\\xf2\\xc7\\xcb\\x4d\\x6b\\xaa\\xeb\\x36\\x35\\x98\\xd1\\xfb\\x51\\x85\\xd6\\x8c\\x12\\x9a\\x72\\x26\\x3d\\xc3\\xa3\\xe5\\x08\\xc2\\x9e\\x81\\x57\\xef\\x5d\\x60\\x36\\xe0\\x88\\x9b\\xf1\\xc6\\xd2\\xac\\x04\\x54\\xb8\\xf6\\xbe\\x8e\\x15\\x6f\\xae\\x40\\xcb\\xde\\x5c\\x7d\\xe7\\x5b\\x47\\x6a\\xb8\\x3b\\x4b\\x2a\\x6a\\xf6\\x5d\\x5e\\x86\\x9e\\xd4\\xa7\\x14\\xad\\xbe\\xa3\\xe6\\x40\\xf1\\x40\\x7b\\x0e\\xca\\x4a\\x89\\x4c\\xd5\\xd2\\xdc\\x0a\\xde\\x3f\\x92\\x7b\\x14\\xa3\\x90\\x2f\\xca\\xeb\\x38\\x96\\x63\\x57\\x81\\x11\\x56\\x20\\x71\\x2c\\x81\\x20\\x10\\xc7\\x92\\x4a\\x10\\x1a\\x6c\\xec\\x4b\\x1a\\xe4\\x76\\x66\\x66\\x58\\x4c\\x7a\\xb3\\xde\\xa8\\xe4\\xa3\\x6d\\x88\\xc5\\xc5\\xda\\xa5\\x5c\\x17\\xe2\\x5f\\x72\\x0e\\x14\\xda\\xcc\\x80\\x11\\xe5\\xcd\\x16\\xf4\\xcf\\xb8\\xec\\xca\\xd4\\x3b\\x5a\\x6e\\xdf\\x91\\x90\\xdf\\x51\\xf0\\xeb\\x5f\\x2f\\x3b\\xb7\\x3e\\x6f\\x45\\x77\\x76\\x65\\x5a\\x44\\x48\\xbc\\x35\\xce\\x56\\x9a\\xa6\\xc5\\x28\\x29\\xe1\\x4a\\x6c\\x2a\\xc6\\xf9\\x7d\\x07\\xea\\xee\\x3e\\xcd\\xa3\\x2d\\xf9\\xcb\\xaa\\x2c\\xa7\\xef\\xb8\\xb5\\xa0\\xa7\\xdc\\x78\\xda\\xb9\\xfa\\xec\\x8a\\x2d\\x97\\xb3\\x34\\xe5\\x9d\\x6b\\x0b\\xd6\\xc4\\xe7\\x98\\xa2\\x50\\xc1\\xda\\xfb\\x3b\\x56\\xbc\\xb9\\x72\\xd9\\x9b\\xab\\x0f\\xbd\\x7d\\xb8\\x1a\\x1f\\x3e\\xc5\\x7c\\x06\\xcd\\xde\\xdf\\x92\\x5b\\x48\\x3e\\xd8\\xc1\\xed\\x71\\x64\\xb2\\xbc\\x2e\\x48\\x41\\x14\\x88\\x9e\\x7c\\x72\\xc0\\xd2\\xbb\\xd0\\x56\\x45\\xcb\\xc9\\xa3\\x75\\xb8\\x41\\x6f\\xd4\\x9b\\x2c\\xda\\x64\\xaa\\x13\\xb3\\x4c\\xa9\\x81\\x0d\\x70\\x98\\xcd\\x16\\x83\\xc5\\x97\\xd1\\xc5\\xe2\\x97\\xd6\\x43\\x83\\x7f\\x6e\\x76\\x24\\xdb\\x0d\\xe1\\x08\\xeb\\x75\\x2f\\xc4\\xda\\x30\\x76\\x74\\x6c\\x2b\\xbb\\xf3\\x2e\\x1e\\xad\\x5b\\xfe\\x34\\x3e\\xb1\\x7b\\xd3\\xd6\\xdd\\xbf\\xe2\\x7f\\xb7\\x62\\x64\\x43\\x5e\\x5f\\xf7\\xaa\\xd6\\x77\\x2d\\xd9\\xb6\\xc6\\xf5\\x65\\x4d\\x97\\x9a\\x9a\\x2e\\x2e\\xd8\\xf8\\xe8\\xa6\\x3c\\x6e\\xcb\\xed\\xf5\\x75\\x4d\\xe8\\x64\\x47\\xfd\\xfc\\xe5\\x27\\xc5\\x9d\\xae\\x75\\xc0\\x18\\xbf\\xaf\\xad\\x11\\x30\\x5c\\x11\\x1e\\xa1\\xb2\\xdf\\x06\\x2e\\xf0\\x78\\x8a\\x34\\x88\\x80\\x8e\\xda\\x0f\\x39\\xd9\\x98\\xab\\x06\\xe0\\x91\\xb8\\xc7\\xfa\\x07\\x87\\x2b\\x14\\x53\\x69\\x5c\\x5c\\x4e\\xb0\\x41\\x6a\\x52\\xa2\\xde\\xac\\xa7\\x97\\x7b\\xe5\\xd1\\x9a\\x8a\\x7c\\xa6\\xa3\\x15\\xa5\\xd5\\x18\\xe8\\xa1\\x6f\\x06\\x36\\x20\\xaa\\xb2\\xd0\\xe0\\x0d\\x14\\x76\\xe9\\x89\\x73\\xc6\\xfa\\xc1\\x26\\xe1\\x06\\x8a\\xdc\\xfa\\xb5\\x5b\\xca\\x76\\x6c\\x2a\\x6e\\x77\\xc6\\xe8\\x2c\\xaf\\x68\\x63\\xe6\\x72\\xe6\\xca\\xbe\\x42\\xbc\\x5a\\x9b\\xee\\x49\\x1d\\xcc\\x4a\\x79\\x03\\xef\\x3a\\x7d\\xfb\\xfe\\xc2\\xbe\\x72\\xe3\\x69\\x47\\xff\\xb9\\x55\\x83\\x0f\\x67\\x47\\x96\\x75\\xae\\x2f\\xba\\xab\\x64\\x83\\x39\\x46\\x53\\x5a\\x59\\x12\\x71\\xb0\\x70\\x59\\xa5\\x69\\xf2\\xb1\\xcc\\xd5\\x2b\\x17\\x1b\\x4b\\xaa\\x46\\xda\\xae\\x30\\x9b\\xef\\x87\\xc2\\xfd\\x34\\x0f\\x8f\\x15\\x1c\\xe2\\x68\\x45\\xd0\\x2a\\x7f\\x59\\x99\\x49\\xba\\x18\\x05\\xa9\\xa6\\xf9\\x22\\x01\\x14\\x52\\x0a\\x22\\x5f\\x90\\x37\\x6a\\x00\\x70\\xe4\\x82\\x15\\x52\\xf4\\x46\\x3d\\x3f\\xd5\\x2e\\xb3\\x41\\xef\\xd2\\x07\\x4e\\x42\\x5f\\xbb\\xcc\\x16\\xff\\x66\\xc5\\xfc\\x64\\xef\\xd6\\x6d\\x7b\\x84\\xdf\\x22\\x14\\xbf\\x62\\x64\\x63\\xfe\\xb2\\xa5\\xb9\\xb5\\x19\\x1a\\xc5\\x3c\\x6d\\xf8\\x2b\\x91\\x51\\x41\\x78\\xe3\\x4a\\x6c\\xf6\\xb5\\x0a\\x8d\\x9f\\x6c\\x6f\\x6a\\xee\\x3b\\x69\\x6b\\xd9\\xd1\\xd8\\x3a\\x68\\x08\\xcd\\x29\\x5b\\x90\\xd1\\x17\\x9e\\x9a\\x6a\\x9e\\x17\\x11\\x92\\x65\\xcf\\x9c\\xd7\\xd3\\xb2\\x08\\x09\\xad\\x01\\x8d\\x42\\x10\\xe9\\xfd\\x23\\x79\\x84\\x8e\\xd9\\x52\\x26\\x49\\x13\\x45\\xc5\\x15\\x14\\x78\\xd3\\x54\\x86\\x4a\\x5a\\x21\\xcb\\x97\\x56\\x28\\xce\\x63\\x99\\x89\\xe1\\xab\\xf6\\xa8\\xf5\\x5f\\x82\\x5d\\x9e\\x20\\x8b\\xd6\\xa4\\xd1\\x9b\\x24\\x87\\x60\\x84\\x9c\\x19\\xb5\\x18\\x3b\\xa4\\x1a\\x1e\\x81\\x12\\xc8\\x6c\\xc1\\xcb\\xdf\\x44\\x86\\x85\\x77\\xaf\\x4c\\xd6\\xe6\\x56\\xa5\\x86\\x23\\x9c\\x87\\x54\\xea\\xf8\\x88\\xe4\\x6c\\x7d\\x18\\x42\\x9a\\xc8\\x2b\\x91\\x09\\xa2\\xc0\\x19\\x2c\\xdb\\x7d\\x40\\xa1\\x88\\x9e\\xfc\\xc3\\x55\\xe1\\x37\\xdf\\x5e\\x75\\xaa\\xe9\\xdc\\xef\\xcf\\xe0\\xd1\\x9b\\x3d\\x71\\x76\\x4b\\x34\\x2a\\x5c\\x7b\\x7f\\xbb\\x9f\\x74\\xc1\\xc7\\x4e\\xb2\\x75\\x96\\xe9\\xfd\\x23\\xb9\\x83\\xe4\\x83\\x0d\\x06\\x58\\x3b\\x53\\x01\\x71\\xe2\\x56\\xb0\\x09\\x38\\x8e\\xef\\x52\\xb2\\x5b\\x69\\xa2\\xd9\\x41\\x6f\\xd5\\xb3\\xa5\\x26\\x5f\\xb0\\x4f\\x99\\x1d\\x99\\x46\\xd1\\x69\\xfd\\x97\\x65\\x97\\x27\\x14\\x00\\x6c\\x60\\xd3\\x9b\\x22\\x2c\\x5a\\xdf\\x6d\\xcc\\x59\\x04\\xcc\\xb4\\x4b\\xc7\\xf8\\xcb\\x39\\xe1\\x71\\x11\\xfa\\x9c\\x64\\xb5\\xbc\\x65\\xe4\\xb4\\x0f\\x96\\xef\\x3a\\xa8\\x78\\x3d\\xa1\\x62\\x4b\\xab\\x99\\xd3\\x1a\\xb3\\xe2\\x82\\x49\\xfe\\xc4\\xef\\x93\\xf2\\xd2\\x62\\x51\\xee\\xd2\\xdb\\x9b\\x7a\\x5e\\x5d\\xba\\xe4\\x95\\xbe\\xbd\\x2f\\xdf\\x56\\x8a\\x4f\\x5f\\xc4\\xb7\\x09\\x6f\\xdf\\xff\\xfb\\x8b\\x6d\\x8f\\xa0\\x82\\xc1\\xcb\\x9b\\xd0\\x5b\\xb4\\xcd\\x03\\xde\\x3f\\x92\\x13\\xf4\\x9e\\x4c\\x3f\\x6b\\xb3\\xc1\\xdf\\xd0\\x02\\xd1\\xd0\\x52\\x32\\xc7\\x39\\x00\\x5e\\xec\\x97\\x4d\\xe0\\x2b\\xb0\\x7c\\x6d\\x5d\\xec\\x6b\\x6b\\x18\\xcb\\xba\\x4e\\x2f\\xba\\x6b\\x4d\\x2c\\xc5\\xc6\\x6c\\xa3\\x2a\\xa7\\x8b\\xe1\\xe6\\xaa\\xc2\\xe3\\x22\\x92\\xb3\\x93\\xc4\\x66\\xc6\\x3f\\x2f\\x8a\\xcf\\x9c\\xb6\\xc1\\xf2\\x5d\\x07\\x14\\xc2\\xbb\\xe3\\xe3\\xc8\\xa6\\x18\\xbd\\x79\\xd0\\xe8\\xc9\\x4e\\x40\\x85\\xeb\\xee\\xf3\\x0d\\xe3\\x1d\\x6f\\x1f\\xa9\\xc1\\x0f\\x5e\\x46\\x0b\\x44\\x0d\\x5e\\x54\\xed\\x59\\x2d\\x21\\xef\\x1f\\xa9\\x1f\\xde\\x00\\x7d\\xac\\x6d\\xc9\\xc0\\x63\\x0e\\xf3\\xa2\\x2e\\x06\\xa0\\x90\\x53\\xfb\\xd0\\x7c\\x18\\x4a\\xdf\\xd4\\x35\\x7f\\x05\\x12\\x9d\\xb9\\x0a\\x85\\x72\\x31\\x28\\x95\\x3a\\x65\\x43\\x97\\x27\\xd8\\xa2\\x35\\x4d\\x79\\x87\\xe4\\x6c\\x37\\xb3\\x0e\\x25\\x2e\\x10\\xfe\\x3e\\x3e\\x8e\\xe6\\x8d\\x07\\x69\\x93\\xb5\\x09\\x69\\xf1\\xa1\\x08\\x45\\x45\\x3e\\x2f\\x6a\\xd8\\x99\\x0b\\x36\\x94\\xdc\\x3e\\xa4\\x90\\x52\\x06\\xa5\\xa2\\xf7\\xbe\\x6a\\xf8\\xd8\\x1c\\xbd\\xd7\\x7b\\x9d\\x6c\\x53\\xbc\\x0e\\xe9\\xa2\\xee\\x1c\\x82\\x30\\x0a\\x45\\x04\\x8b\\xba\\x33\\xe6\\x30\\xe1\\x36\\xf9\\x16\\x59\\x02\\x4b\\x2c\\xa4\\x60\\x46\\x31\\x02\\xa3\\x41\\x17\\x1f\\x21\\xaa\\xff\\xe9\\x28\\x9d\\xf7\\x19\\xc3\\x33\\x8a\\xc2\\x8b\\x9c\\x3b\\x9d\\x94\\x73\\x1d\\xa7\\x0c\\xe1\\xf0\\xf1\\x6d\\xaf\\xdc\\x55\\x57\\x77\\xd7\\x2b\\xdb\\x36\\x3d\\x53\\x5e\\x50\\x7a\\xb4\\x7d\\xfe\\xde\\xb6\\xf4\\xf4\\xb6\\xbd\\xf3\\x87\\x4e\\x71\\x38\\x41\\x7b\\x25\\x28\\x52\\x1d\\x84\\x70\\xd3\\x81\\xa7\\x35\\x3d\\x8f\\xfe\\xe6\\x00\\xe2\\x0f\\xfc\\xfa\\xb1\\x9e\\xb4\\xb4\\x83\\x7a\\x43\\xdd\\xad\\x4f\\x2c\\x15\\xfe\\xd5\\x73\\xf9\\xb6\\x3a\\x3c\\x7c\\xd7\\xa2\\xb1\\x45\\x69\\x8b\\xba\\xbb\\xd3\\x37\\x3d\\x3e\\xe0\\x62\\x35\\xe5\\xbd\\xd7\\x49\\x33\\x69\\x02\\x9b\\xd8\\x86\\x04\\x44\\x38\\x1d\\x42\\xb4\\x12\\x39\\x11\\xf7\\xea\\x4d\\x53\\x47\\x80\\x8a\\x80\\x0c\\x03\\xc9\\x49\\x71\\x31\\x61\\x21\\x4a\\x1e\\x6c\\xc8\\x26\\xb6\\xc1\\xe4\\x74\\xba\\x72\\x69\\x27\\x6b\\x02\\x12\\x0c\\x4c\\x35\\x88\\x9a\\x30\\x2f\\xec\\xea\\xc7\\x7c\\xc8\\xf3\\xc1\\x61\\xd8\\xb3\\xf1\\x44\\xc7\\x6d\\xdf\\x39\\x54\\x5d\\xb1\\xff\\x1b\\x7b\\xd6\\x5d\\x70\\xa4\\x39\\x8f\\x2c\\x68\\xdf\\xdd\\x6c\\x4a\\x69\\x3d\\xb0\\x1f\\x2d\\x5b\\xe4\\x18\\x70\\x3a\\x37\\x3a\\x3b\\x6e\\x6b\\xb5\\x76\\xd1\\xe4\\x1b\\xaf\\x1d\\xef\\x4a\\x4e\\x3a\\x16\\xaf\\xa3\\x05\\x2f\\x58\\xb8\\x0f\\x20\\x68\\xf0\\x7e\\x42\\xd7\\x8b\\x1e\\x52\\x69\\xca\\x3e\\x71\\xf7\\xdd\\xc4\\xdc\\x87\\xcc\\x54\\x91\\xb2\\x13\\xea\\x14\\x0d\\x74\\x7a\\xc8\\x4a\\xbd\\x46\\x3f\\xcb\\xb4\\xcf\\xc0\\x16\\x34\\x26\\x9c\\xe2\\x1e\\x17\\x76\\x47\\x98\\xdd\\x46\\xc7\\x7c\\x47\\x1c\\xc6\\xfa\\x84\\x2b\\x71\\xa9\\x1c\\x2e\\x59\\x7f\\xac\\xa5\\x71\\x57\\x5b\\x26\\x51\\x44\\x9f\\x3e\\x3d\\x51\\x9a\\x3e\\x3f\\x5f\\x8f\\x0a\\xd6\\xdc\\xdf\\x29\\x4d\\x79\\x51\\x43\\x40\\xb6\\x45\\x87\\x7b\\xd8\\xbc\\xa8\\xf5\\xfe\\x91\\xac\\xa5\\xbe\\xfc\\xd9\\xf8\\x8a\\xf6\\xe7\\xcb\\xfa\\xd5\\x7c\\xb1\\x61\\xa7\\xca\\xcd\\x59\\xe1\\x59\\xee\\x0e\\xe1\\xce\\x08\\x8b\\xdb\\x94\\x55\\x93\\x13\\x23\\xb2\\xf5\\xfc\\xbc\\x98\\x88\\x60\\x84\\x8b\\xfa\\xef\\x6e\\x3a\\xf7\\x8c\\x8a\\x7b\\xf8\\xe4\\xc9\\xc9\\xb1\\x8c\\xa6\\x7c\\x3d\\xb2\\x35\\xad\\x2f\\x9b\\xff\\x78\\x93\\x65\\x41\\x4b\\x8b\\x75\\xe3\\x63\\x9b\\xf3\\xf0\\x73\\xaf\\x88\\x3c\\xad\\xf7\\xde\\x20\\x03\\x8a\\xd7\\xa1\\xf8\\xff\\x47\\xfd\\xb2\\x04\\xff\\x9b\\xbb\\x08\\x8a\\x0a\\xec\\xd9\\xe9\\x69\\x29\\xe6\\xa8\\xc8\\xb0\\xd0\\xe0\\x39\\x50\\x8c\\x8a\\xe5\\xac\\x2b\\xf2\\x55\\x66\\x9f\\xa5\\x64\\x76\\xca\\xa5\\x72\\xfc\\x62\\xd4\\xa4\\x02\\x66\\xdb\\xe6\\xdf\\xd2\\x9e\\x9e\\xbd\\xe8\\xf6\\x05\\x15\\x9b\\x16\\xa4\\xa3\\xf1\\xf6\\xc3\\xa3\\xdd\\x83\\xaf\\x1d\\x5d\\x80\\x0e\\xed\\x75\\x75\\x16\\xe9\\xeb\\x0e\\x7d\\x7d\\xb0\\xe7\\xa9\\xdb\\x1b\\xc6\\x51\\x7a\\x63\\x7f\\x61\\xcb\\x9e\\x05\\x56\\x73\\xe3\\xf6\\xe6\\xaf\\xe1\\xb3\\x89\\xa5\\xcb\\x2b\\x0b\\x57\\xd4\\xa4\\xd8\\xea\\x56\\xe4\\x0d\\x5c\\xec\\xcf\\x76\\xaf\\xbf\\xb0\\xfa\\xb6\\x27\\x53\\xb5\\x65\\x0b\\x96\\xda\\x57\\x9d\\x5b\\xe3\\x70\\xf7\\x9f\\x58\\xe2\\x5c\\x5c\\x66\\x4e\\xa9\\x5a\\xea\\x72\\x77\\x97\\x1a\\x4f\\x8b\\x36\\x53\\x2d\\x3e\\x4c\\xee\\xe2\\x92\\xa1\\x1a\\xdd\\xe5\\xdd\\x08\\xb0\\xd0\\xee\\x61\\x76\\x57\\x13\\x3e\\x4c\\x86\\xa4\\xdf\\x07\\xfd\\x7e\\x7f\\x54\\x58\\x4b\\x0a\\x00\\xb0\\x05\\x4a\\x21\\xd8\\x8b\\x10\\x0f\\xa5\\xc1\\xa2\\x6d\\x05\\xe8\\xaa\\x17\\x51\\xdb\\x0a\\xa1\\x1b\\x24\\x14\\x7b\\xf9\\x04\\x08\\x86\\x30\\xcf\\x3c\\x5e\\xc1\\x2a\\x54\\xaf\\x89\\x45\\x2a\\x0d\\x0d\\x7e\\x71\\x69\\x79\\x5e\\xa3\\x31\\xa0\\x1b\\xe2\\x46\\xbf\\x32\\x33\\x73\\x8c\\x3c\\x98\\xd9\\xbf\\x72\\xb1\\xb1\\xa6\\xfa\\x78\\xfb\\x09\\xf1\\xfd\\xb7\\x89\\x12\\x7f\\xc4\\x47\\x4d\\xbd\\x5f\\x3d\\xf5\\xfe\\x94\\x26\\x81\\x3f\\xf2\\xbd\\xaf\\x38\\x20\\xbf\\x7f\\x52\\x7c\\xff\\x65\\xe1\\x47\\xf8\\x7f\\xe0\\xd7\\xb3\\xbd\\x6f\\xf2\\x7b\\xff\\x7f\\xc4\\xf7\\xd7\\x64\\x66\\x8e\\x37\\x64\\xae\\x5e\\xb1\\xc4\\x58\\x5b\\x75\\xbc\\xfd\\x94\\xd8\\x46\\xf4\\x0e\\x51\\xe2\\xdf\\xf2\\x51\\x50\\x8d\\xfa\\xc9\\xb3\\x00\\xaf\\x02\\x6b\\x3b\\xaa\\x25\\xa1\\xdc\\x83\\x7c\\x02\\xb6\\xa0\\xd5\\xde\\x25\\x00\\xa0\\x44\\xab\\xe1\\x21\\x60\\xb0\\x74\\xa2\\xe4\\x8e\\xf0\\x51\\xd8\\x82\\xfa\\xbd\\xbd\\x14\\xd6\\x0f\\x4f\\x01\\xab\\x2b\\x9d\\x29\\xbc\\xc3\\xf5\\xc3\\xaf\\x20\\x18\\xb4\\x10\\xe9\\x51\\x87\\xab\\x79\\x05\\x81\\x6a\\x84\\x00\\xd6\\xc4\\xc5\\x62\\x55\\x94\\x3f\\x57\\x0a\\x3f\\x06\\xab\\x7c\\x0c\\xa2\\x64\\xdf\\x5f\\xf5\\x99\\xfd\\x3e\\x56\\x8f\\x4f\\xfd\\x09\\x08\\x76\\x00\\x90\\xb6\\xa9\\x9c\\xbe\\xa4\\xb0\\x9e\\x25\\x19\\x53\\x20\\x8e\\x2b\\x11\\xe7\\x69\\x91\\x5c\\x49\\x56\\x15\\x2b\\xe7\\x19\\x13\\x77\\x01\\xd2\\x26\\xac\\x1b\\x17\\x36\\xa1\\x63\\xe3\\xe8\\x04\\xf7\\x20\\x2d\\x3e\\x84\\xb6\\x0b\\xf7\\x00\\x82\\x5d\\x42\\x2f\\x69\\xa7\\x67\\x1d\\xb9\\x9e\\x6c\\xe0\\xf9\\x42\\x1a\\x10\\xad\\xe8\\x52\\x22\\x85\\xa2\\xa4\\x7e\\x0e\\xe2\\x38\\x56\\x62\\xbb\\xa8\\x9e\\x15\\xc6\\xf6\\xbb\\x8a\\x1c\\xa4\\x4a\\xb0\\xe9\\x7d\\x1f\\x91\\x3e\\xa4\\xd1\\xab\\xf5\\xa4\\x5d\\x58\\x33\\x2e\\x0c\\xa2\\x21\\xf1\\xdf\\x71\\x74\\x4a\\x58\\x83\\x4e\\x09\\xbd\\xe8\\xe2\\x29\\x2e\\x88\\x7e\\xf5\\xcc\\xc4\\x3f\\x58\\x5d\\xf8\\xb3\\x58\\xcb\\x65\\x73\\x1f\\x82\\x66\\xb6\\x3a\\xce\\x56\\x23\\x2b\\xdc\\x3e\\xe3\\x92\\xd9\\xd9\\x84\\xdc\\xfa\\xcc\\xcc\\x06\\x47\\x7c\\xbc\\xa3\\x3e\\x33\\xb3\\xde\\x91\\xc0\\x45\\xd9\\x6a\\x73\\x75\\xba\\xdc\\x5a\\x5b\\xbe\\xad\\xc6\\x91\\x90\\xe0\\xa8\\xb1\\xb1\\xf1\\x5a\\xec\\xfd\\x13\\xc9\\x47\\x4a\\x6c\\x81\\x30\\xef\\x7a\\x1a\\x0e\\x18\\x86\\xcc\\xd2\\x58\\xce\\xf1\\xfe\\x49\\x61\\x96\\x60\\x31\\x00\\x60\\x81\\x30\\x38\\xcf\\x70\\x70\\x38\\x1d\\x53\\x1e\\x9c\\xde\\xeb\\xe4\\xa2\\xe2\\x75\\xd0\\x83\\x0b\\x0a\\x60\\x01\\xac\\x86\\x5b\\x44\\xc9\\x51\\x90\\x8f\\x83\\x82\\xf3\\x54\\x58\\x09\\x31\\x08\\xf3\\x5c\\x1d\\x04\\x81\\x02\\x82\\x14\\xcb\\x11\\x82\\x39\\x48\\xc9\\x83\\x72\\x39\\x04\\x07\\x53\\xe1\\x51\\x41\\xab\\x4a\\xb0\\x10\\x93\\x4a\\xdc\\xb0\\x6b\\xc7\\xc6\\xf5\\xcb\\xfb\\xac\\xd6\\x74\\xab\\xd5\\x68\\x35\\x1a\\xe7\\xaa\\x12\\xe4\\x6a\\x90\\x52\\xb8\\xc8\\xb4\\x32\\x13\\x33\\x5b\\x1f\\x61\\x41\\x5a\\x6e\\xc6\\x4d\\x06\\xc5\\xcc\\xec\\x47\\x33\\x7f\\x69\\x4f\\x2c\\xee\\x2e\\xcc\\xef\\x4c\\x4c\\xec\\xc8\\x2f\\xea\\x2e\\x4e\\x4c\\x2c\\xea\\x2e\\xcc\\xef\\x4a\\x4c\\xec\\xc8\\x2b\\x5a\\x5c\\x9c\\x28\\x7c\\x24\\x42\\xc5\\xdf\\x93\\x8a\\x16\\x15\\x16\\x2e\\x2e\\x4e\\xda\\x55\\xc1\\x85\\x55\\xec\\x0b\\x8e\\xb5\\xea\\x12\\x52\\xa2\\x83\\x83\\x63\\xac\\x09\\xba\\x94\\x98\\x60\\xe1\\x62\\x70\\x8c\\xef\\x97\\x14\\x5d\\x82\\xf8\\xcb\\x47\\xc1\\xb1\\x29\\xba\\xf8\\x94\\x18\\xf9\\x17\\x94\\xe9\\x5e\\xd9\\x98\\x91\\x6a\\x30\\xa4\\x66\\x34\\xae\\x74\\xa7\\xb9\\x57\\x35\\xa6\\x5b\\x0d\\x06\\x6b\\x7a\\xe3\\x2a\\x37\\xf7\\x84\\x9b\\xde\\x6b\\x59\\xe5\\x4e\\x73\\xaf\\x6c\\xc8\\xc8\\x68\\x58\\xe9\\x9e\\x2c\\x69\\xc5\\xb7\\xb7\\x4e\\xbc\\xa6\\xcb\\x4f\\x8f\\x8b\\x4b\\xcf\\xd7\\xa5\\xe9\\xf2\\xd2\\xe3\\xe3\\xd3\\xf3\\x74\\x69\\x33\\x7e\\xe1\\x16\\xe8\\xf2\\xc4\\x9f\\xf2\\xa6\\x7e\\xa2\\xf3\\xe8\\x08\\x9c\\xe1\\x3c\\xdc\\x18\\xf0\\xa0\\xf3\\xc4\\x71\\x52\\x4d\\x1b\\x00\\x1a\\x12\\x0a\\x5d\\xa2\\xe4\\x6f\\x8c\\x50\\xd3\\xd9\\x84\\x0c\\xc8\\x81\\xec\\xb8\\x18\\xe1\\x21\\xe1\\x67\\xc8\\x32\\x84\\xcd\\xc2\\x20\\x3a\\x18\\x81\\xee\\x90\\xe8\\x9c\\x96\\xe8\\x98\\x3d\\x06\\x05\\xa2\\x37\\x9d\\x31\\xa2\\x94\\x30\\x92\\x49\\xd1\\xa9\\xc1\\x47\\x70\\xa2\\xa4\\x42\\x1a\\x64\\x40\\x08\\xc7\\x22\\xb3\\xf0\\xc1\\xbd\\x08\\x0b\\x02\\x37\\x26\\xec\\x89\\x10\\xf6\\xa0\\x7b\\xd1\\x51\\x36\\xc7\\x6d\\xf0\\x2e\\x37\\x42\\x7e\\x24\\x2a\\xa5\\x57\\x30\\xa0\\x2c\\x9b\\xc9\\x82\\xb4\\xe8\\xfc\\x66\\x8c\\xb6\\xbc\\x5b\\xc6\\x5d\\x2b\\x13\\x65\\x47\\x28\\x76\\x93\\x68\\xc5\\x6b\\x10\\x04\\x21\\x60\\xf3\\xa4\\xcc\\x43\\x40\\x54\\x08\\x01\\xae\\x53\\x20\\x5f\\xe8\\x3b\\x60\\x4c\\x03\\x57\\x0a\\x71\\x03\\xcb\\xd3\\x49\\x57\\xb8\\x5d\\x63\\xd0\\x18\\x1c\\x7a\\x0b\\xb2\\x23\\xbd\\x5a\\xc9\\xdd\\x7e\\xea\\xd4\\x25\\x21\\x97\\x43\\x6f\\x3c\\x21\\x94\\xa3\\xd8\\x28\\x6e\\x60\\xdf\\xf8\\xf8\\x52\\xbc\\x75\\xf2\\x29\\x74\\x57\\x9a\\xc8\\x4b\\x3d\\x3e\\xcc\\xbd\\xa1\\xb8\\x06\\x1a\\x58\\xc7\\xaa\\x2f\\x04\\x89\\xc4\\xc3\\x69\\x6a\\xf2\\x38\\xfa\\x40\\xd8\\x43\\x17\\x03\\xc7\\x4e\\x95\\x8e\\x2c\\xac\\x67\\x45\\x5d\\xd8\\x83\\xa8\\x96\\x6a\\x7d\\x21\\x95\\x0c\\xc4\\xf2\\x47\\x16\\x4e\\xaf\\x1c\\xa9\\xfa\\xaa\\xca\\x91\\x6f\\x25\\x18\\x07\\xea\\x0a\\x7b\\x2a\\x8c\\x97\\x1b\\xcb\\x0b\\xea\\x23\\x2f\\x2b\\x9e\\xdc\\xe3\\xa9\\x45\\xc6\\xfa\\xad\\xcd\\x02\\x41\\x1f\\xae\\xed\\x2a\\xcc\\x9e\\xfc\\x01\\x97\\xc4\\x74\\x89\\x35\\x00\\x64\\xbb\\xe2\\xdb\\x60\\x87\\x7a\\x4f\\x8d\\x2f\\xed\\x46\\x30\\x52\\xce\\x45\\xbc\\x42\\xc9\\xf7\\xcd\\x43\\x0a\\xc2\\xd2\\x9a\\xfa\\x72\\x6e\\x54\\x50\\x96\\x68\\xf4\\x52\\x11\\x6e\\xb0\\xe7\\x64\\x67\\x65\\x66\\x58\\x2d\\x86\\x64\\x51\\x3d\\x8e\\x52\\xab\\x23\\xc3\\x42\\x54\\x34\\x38\\x3e\\x92\\x57\\xea\\x95\\x7a\\x87\\xbd\\x98\\x73\\x58\\x0c\\x0e\\x3b\\xfd\\x77\\x46\\xec\\xa4\\x56\\xaf\\xd1\\x6b\\xf5\\x5c\\xb2\\xf0\\x24\\x97\\x90\\x88\\x7f\\x83\\x6e\\x7e\\x59\\x1f\\x67\\x8c\\x9a\\xc3\\x3d\\xf5\\xb8\\xe2\\xd2\\x05\\xbe\\x6c\\xc7\\xa5\\xde\\xde\\xd3\\x6b\\xdc\\xe3\\x29\\xe5\\x1d\\x59\\xf6\\x2e\\x8f\\x89\\x47\\x7d\\xc2\\x25\\x82\\xba\\xd0\\xfb\\xd5\\x95\\x07\\xb3\\x4e\\x9d\\x52\\xba\\x6b\\x17\\x24\\x55\\xef\\xbe\\x67\\xcf\\xf8\\xaa\\x87\\x36\\x17\\xba\\x57\\xdd\\xdb\\x51\\xd2\\x95\\x17\\x67\\xa9\\x5d\\x57\\x3e\\xbe\\xe7\\x1e\\x66\\xa3\\xdf\\xea\\xbd\\x41\\xae\\x28\\x46\\xc1\\x0a\\x4e\\x18\\xa6\\xa1\\x69\\x63\\xc1\\xf4\\x6a\\x6b\\xdc\\x58\\x30\\x52\\x20\\x54\\x27\\x15\\x42\\xce\\x01\\x15\\x1f\\xcc\\xab\\x82\\x37\\x41\\x10\\x10\\x14\\x44\\x44\\x39\\x43\\x0d\\x57\\x71\\x08\\x00\\xd8\\x3d\\xfc\\x12\\x56\\x20\\x4c\\xc1\\x44\\x4e\\x9c\\xc7\\xf9\\x5f\\xbe\\xa4\\x50\\x14\\xc9\\xa5\\xc5\\x2a\\x45\\x43\\x29\\xdc\\x99\\x9b\\x96\\x6a\\x4d\\x51\\x47\\xea\\xd5\\x46\\x8d\\xc9\\x14\\x46\\xc5\\xd5\\xcc\\xda\\x77\\x86\\x10\\xe9\\x04\\x28\\x47\\x87\\xb5\\x2c\\x36\\x69\\xea\\x56\\x37\\x19\\x19\\x0d\\x8d\\x31\\x6a\\x22\\x6d\\x73\\x63\\xb4\\x0b\\x52\\x73\\xdb\\x4b\\x0c\\x5d\\x2a\\x47\\xd7\\x9e\\xa6\\xca\\x71\\xa1\\x69\\x4f\\xa7\\x53\\xd5\\x35\\x3e\\x3a\\x71\\xb6\\x32\\xdd\\x63\\x8d\\x88\\x48\\x29\\x4d\\xaf\\xe4\\x9e\\x9c\\xdc\\x9b\\x56\\x68\\x52\\x07\\x91\\x83\\xea\\x28\\x63\\xe3\\xce\\x85\\xf8\\x40\\xcb\\x3d\\xcb\\x5d\\x93\\xdf\\x57\\x8c\\xba\\x97\\xdf\\xdd\\x82\\x78\\xe1\\x4b\\xe1\\xfe\\x9c\\x96\\x7e\\xb7\\x7b\\xdd\\xc2\\x1c\\x36\\x37\\x6e\\xf5\\x5e\\x27\\x79\\xb4\\x4e\\x76\\xb3\\xa7\\x51\\x8f\\x54\\xca\\x64\\xc4\\xab\\xa4\\x2b\\xb8\\x88\\xd4\\xcd\\x41\\x7c\\x10\\x52\\x10\\x5e\\xd1\\x17\\x3c\\x95\\xe8\\x47\\xa5\\x52\\x76\\x83\\x52\\x59\\xe1\\xdf\\xde\\xcc\\x8c\\xf4\\x34\\x5b\\xaa\\x89\\xa6\\x64\\x31\\x19\\x59\\x63\\x7d\\x87\\x71\\x52\\xc9\\x46\\x83\\xc3\\xee\\x30\\x38\\xec\\xbe\\xea\\x45\\x66\\x5f\\xca\\x30\\x8d\\x9e\\xdb\\x28\\xec\\xc3\\xf6\\x45\\xb7\\xcd\\x2f\\xd8\\x98\\x1b\\xee\\xde\\x59\\xb2\\xed\\xb5\\xa1\\x66\\xee\\xca\\x95\\x2b\\x57\\x14\\x0b\\x8e\\xbc\\xba\\xb5\\x64\\x5b\\x51\\x78\\xee\\x40\\x61\\xd3\\xbe\\x45\\x76\\x0e\\xed\\x17\\xf6\\xa1\\xfd\\x38\\x71\\xf5\\xb9\\xd5\\xb9\\x6a\\xf5\\xd9\\xd0\\xb0\\x9a\\x7b\\xff\\xe7\\xf0\\xee\\x7b\\xf6\\xdc\\xf5\\x83\\x7b\\xaa\\xd4\\x21\\xe7\\xc2\\x22\\x72\\x96\\x9f\\x5c\\xc1\\xe6\\x05\\x81\\x5a\\xef\\x75\\x9a\\x07\\x88\\x45\\x66\\x77\\xc3\\x3c\\x4f\\xd0\\xa2\\xce\\x05\\x55\\x05\\x59\\xa1\\x84\\x64\\xf9\\x65\\xda\\x9e\\xfd\\x2a\\x01\\xf5\\x58\\xfc\\x17\\xd7\\xe0\\x14\\x16\\xa4\\xc5\\x0d\\x86\\xb2\\x9e\\x82\\xa2\\xbe\\x72\\x83\\xa1\\xac\\xb7\\xa8\\xb0\\xa7\\xcc\\x78\\x4f\\xa8\\x2e\\x4d\\xa7\\x4b\\x4f\\x08\\x0d\\xd5\\xa5\\x27\\xea\\x6c\\x09\\xa1\\x6f\\x19\\xca\\x7b\\x8b\\x8a\\x7a\\x19\\x86\\x88\\x79\\x38\\x44\\x97\\x91\\xa8\\x4b\\xd7\\x85\\x84\\xe8\\xd2\\x13\\x13\\xd3\\x75\\x21\\x02\\x95\\x6a\\x44\\x97\\xbb\\xa4\\x32\\x25\\xab\\x65\\x43\\x61\\x63\\xd1\\x86\\x85\\x59\\xd6\\xaa\\x25\\x8e\\xb8\\x1c\\x73\\x54\\x62\\x4e\\x59\\x72\\x63\\xb2\\x27\\x27\\x31\\xda\\x9c\\x15\\x3d\\x59\\x5d\\xb4\\xa1\\x25\\x2b\\xab\\x65\\x43\\x51\\x93\\xef\\x0f\\x83\\xc7\\xae\\xd3\\xd9\\x3d\\x86\\xa6\\xe4\\x52\\xf1\\x8f\\xd2\\xe4\\x63\\x4c\\x3a\\x8a\\xeb\\xe3\\x17\\xde\\xeb\\xdc\\xdf\\x15\\x6f\\x80\\x11\\xb2\\x41\\x35\\x96\\x6e\\x0a\\x07\\x9c\\x25\\x1d\\x9f\\xf2\\xbc\\xc1\\x91\\xe3\\x74\\xa9\\x03\\x0a\\x9c\\x33\\x3f\\x7d\\x31\\xf5\\x4b\\xd1\\xc3\\xe2\\xd6\\xf5\\x23\\x6b\\xec\\xd9\\xfd\\xee\\xfc\\xfe\\x4c\\x6b\\xf3\\x60\\x5d\\xe1\\x8a\\x1a\\x4b\\xee\\xca\\x07\\x7a\\xb5\\xee\\x45\\x15\\x7f\\x72\\xce\\xcf\\x8d\\x4d\\xb7\\x96\\x15\\x68\\xca\\x76\\x3c\\xba\\x32\\x64\\xee\\xbc\\xd1\\x90\\x79\\xe8\\x57\\xed\\x47\\x96\\x3b\\xd3\\x17\\x6e\\xad\\xb1\\x36\\x3e\\x71\\xe9\\xbe\\xdc\\x8e\\x8a\\x0d\\x8d\\x56\\x5c\\x62\\xe9\\x5d\\xb7\\xd9\\x6d\\x6b\\x6a\\x1e\\x5c\\x0b\\x04\\x76\\x51\\x99\\xf4\\x2a\\xcc\\x81\\x44\\x70\\x40\\x9e\\x38\\x36\\x6e\\x67\\xa6\\x31\\x26\\x44\\x01\\x24\\xcb\\xa6\\x37\\xa0\\x08\\x83\\xda\\x8e\\x38\\xbb\\x76\\xc6\\x08\\xb8\\x66\\x8c\\x40\\x84\\xde\\xa1\\xc7\\xbf\\x1d\\x15\\x3e\\x47\\xa3\\xcf\\xa2\\xb9\\x68\\x74\\xa1\\x26\\xa5\\xd0\\x6c\\x29\\x4a\\xd1\\x68\\x52\\x0a\\x2d\\x96\\x02\\xab\\x66\\x25\\x99\\xa7\\x8d\\x88\\xd0\\xce\\x23\\x8a\\x79\\xda\\x88\\x70\\xed\\x5c\\xc5\\xcf\\x84\\xb7\\x91\\x9d\\x7b\\x60\\x62\\x83\\x62\\x74\\x62\\x33\\x77\\x74\\x2c\\xa5\\xc6\\x99\\x98\\xe8\\xac\\x49\\xf9\\x41\\x4a\\xb5\\x23\\x31\\xd1\\x51\\x9d\\x32\\x47\\x6b\\x49\\x50\\xab\\x13\\x2c\\xda\\x97\\xa3\\x52\\xc4\\x3f\\x52\\xa2\\x26\\xdf\\xed\\x11\\xfb\\x72\\x35\\x77\\x8a\\xb8\\x68\\xdd\\xff\\x48\\x50\\x8d\\x45\\x84\\xf2\\x08\\x67\\xd9\\x90\\x94\\x6c\\x37\\x22\\xc2\\xae\\x36\\xb0\\xec\\x32\\x0e\\x3d\\xf7\\x8b\\x23\\xb9\\x87\\x17\\x6d\\x3a\\x7a\\x6c\\xd3\\x22\\x61\\xee\\xf1\\xee\\x07\\xd0\\x7e\\x85\\x5e\\xd8\\x8e\\xee\\x16\\x76\\xe0\\x18\\x61\\x33\\x3a\\x3a\\xf9\\x7b\\xf4\\x3d\\xc1\\x8d\\xbe\\xb7\\x80\\x8e\\xd1\\x19\\xef\\x0d\\x72\\x9c\\x34\\xd1\\x6c\\xdf\\xaa\\xb1\\x64\\x5d\\x08\\xc6\\x59\\x36\\x93\\xaf\\x5c\\x56\\x31\\x91\\x8e\\xb7\\xd5\\x51\\x51\\xf6\\x28\\xa7\\x0b\\x89\\xbb\\x80\\x5e\\x6d\\x36\\x13\\x6d\\xdb\\xb5\\xe5\\x1b\\x5f\\x19\\x6a\\xb1\\xd6\\x2c\\xdf\\x76\\x7b\\xd9\\xea\\xb1\\x3b\\x9a\\x26\\xc1\\x75\\xa4\\x69\\xe9\\x78\\x97\\x70\\xac\\xe1\\x48\\x1e\\x8e\\x77\\xde\\xb5\\xd4\\x51\\xd4\\x75\\xe6\\xad\\xc1\\x86\\xa3\\x7b\\x57\\xd7\\x59\\x5b\\xee\\xff\\xce\\x60\\xa6\\x70\\xd5\\x5e\\x80\\x0a\\x4b\\xb8\\xd4\\x32\\xb7\\x70\\x1d\\xe9\\xec\\xc5\\xcc\\x6e\\x69\\xf6\\xfe\\x83\\x8c\\x2b\\x9e\\x85\\x4c\\xf4\\x4d\\x6f\\x34\\xfe\\x43\\xde\\x59\\x30\\xa3\\xed\\xff\\x02\\x14\\x8a\\xbe\\x87\\xee\\x04\\xc8\\x3b\\xcb\\x6c\\x18\\xfc\\x07\\xd1\\x86\\xf1\\x7a\\x21\\xc7\\xfb\\x0f\\xf2\\x4d\\xc5\\x35\\xc8\\x44\\xaf\\x79\\x63\\xf1\\x27\\x0c\\x3f\\xf1\\x9f\\x14\\xff\\x5e\\x8a\\x1f\\x4e\\xf1\\x3f\\x19\\xb5\\xdb\\xe8\\xc1\\xd2\\x3f\\x47\\xed\\x36\\xaf\\x17\\x8c\\xde\\x2f\\xc9\\xd3\\x8a\\xe7\\x21\\x13\\xbd\\xee\\x25\\xf8\\x3a\\x7b\\x4f\\xc5\\xbe\\xb3\\x1b\\x48\\xde\\x59\\x50\\xd3\\xf7\\xae\\x8b\\xef\\x61\\x6e\\x94\\x48\\xdf\\xf3\\x78\\xff\\x41\\x1e\\xa3\\xef\\x7d\\xd7\\x9b\\xe9\\x7b\\xef\\x7f\\xd8\\x7b\\x5b\\xfd\\xf8\\xbb\\x2e\\x9d\\x5f\\xed\\xf3\\x5e\\x27\\x55\\x8a\\x1b\\x60\\x86\\x42\\x50\\x8d\\x65\\x5b\\xe2\\xc2\\xc4\\xb1\\xca\\x89\\xd2\\x4a\\xb5\\x65\\xa9\\x24\\x9a\\x5e\\x3b\\x7c\\x5a\\x1a\\xf8\\x0c\\x0e\\x37\\x77\\x3f\\x5a\\x18\\x5c\\xb6\\x62\\x7f\\x5d\\xd3\\xa1\\xea\\xb0\\x84\\x92\\xfa\\xee\\xfc\\xa3\\xef\\x1c\\xa2\\xa5\\x10\\xb6\\x5c\\xd9\\x5b\\x5a\\xb2\\xf3\\xe9\\xdb\\x1a\\x37\\xd5\\x19\\x8d\\xb5\\x9b\\x1a\\xe6\\x6f\\xae\\x33\\xf0\\x29\\x35\\xeb\\x38\\xa1\\xa1\\x72\\xcd\\xe8\\xbe\\xea\\xa4\\xb8\\x53\\xf3\\x62\\x22\\x83\\xf7\\x7e\\x28\\xfc\\xe8\\x85\\x82\\xbb\\xfe\\x3c\\xba\\x72\\xc1\\xd0\\x37\\x37\\x6b\\xd7\\xbc\\x70\\xb0\\xfe\\xb4\\x6b\\xe9\\x1e\\x96\\xf7\\xbd\\x76\\xdf\\xe3\\xbd\\x65\\xf1\\xb5\\xa5\\xe9\\x4c\\x1e\\x3f\\xe6\\xb5\\x11\\x13\\xbd\\xf7\\xc6\\x5f\\xe1\\x45\\x7d\\x47\\xe1\\x4b\\x97\\x6c\\x1a\\x9f\\xfc\\x6c\\x9c\\xdb\\xf7\\xae\\xe2\\x4f\\x5f\\x46\\xf0\\x77\\x88\\xb8\\x76\\xe1\\xef\\xe4\\x34\\x9d\\x8b\\xfc\\x15\\x15\\x87\\xb2\\x6c\\x08\\xe9\\x35\\x7a\\x07\\x42\\x0e\\xbd\\x46\\x8f\\xb8\\xce\\xc9\\x97\\xb9\\x83\\x37\\xcf\\xe1\\xde\\xc9\\x8b\\x24\\x66\\xe2\\xbb\\xb8\\x12\\x97\\x4e\\xd6\\x9d\\x3e\\x8a\\xdf\\xc2\\x3f\\x3e\\x76\\x7a\\x52\\xca\\x39\\xfc\\x04\\x3e\\xcc\\xdd\\xe0\\x92\\x81\\xa3\\x36\\xc4\\x34\\xad\\x4f\\x1d\\x46\\xb5\\x3e\\xbd\\x43\\xcf\\xdd\\x98\\xf8\\x3a\\x57\\x4e\\x4f\\x30\\x10\\xcd\\x8f\\x7b\\xbf\\x62\\x14\\x82\\x80\\xbf\\xa2\\xa0\\xdf\\xd5\\xba\\x90\\x1d\\x19\\x38\\x83\\x43\\x8f\\xa3\\xa3\\x62\\xd0\\xbd\\x5f\\x9f\\xfc\\xcd\\xd0\\xe7\\xe3\\xa8\\x00\\x2d\\x58\\xb3\\x86\\xf4\\x7c\\xd9\\x8c\\xb7\\x9e\\x05\\x0e\\x1c\\xf0\\x11\\x39\\xcb\\xfd\\x02\\xac\\x50\\x0e\\x4b\\x20\\xe8\\xc5\\x8e\\x9a\\xa2\\x8c\\x18\\xc2\\x4d\\x89\\x62\\xcb\\xb4\\xc4\\x92\\xda\\xc0\\xdc\\x5d\\xbe\\x1b\\xe5\\x98\\xe6\\x65\\xa6\\x57\\xcb\\x59\\x6a\\x10\\xac\\x21\\x67\\x8d\\xd5\\xeb\\xaa\\x72\\xdb\\x2b\\x1d\\x11\\x11\\xb9\\x95\\xed\\xb9\\xd5\\x6b\\xab\\x8d\\xc6\\xaa\\xb5\\xd5\\xb9\\x1d\\x95\\xb9\\x11\\x11\\x8e\\xca\\x76\\x47\\xd5\\xda\\x6a\\xe3\\xde\\x30\\x53\\x51\\xba\\xce\\x99\\x6e\\x8a\\x57\\x73\\x9c\\x3a\\xde\\x98\\xe1\\xd0\\x65\\x14\\x99\\xc2\\x26\\x1e\\x08\\x33\\x15\\x65\\xe8\\x1c\\xe9\\xa6\\x38\\xf1\\xf7\\x38\\x53\\xba\\x53\\x97\\x5e\\x64\\x0a\\xc3\\x75\\xd5\\x07\\x56\\x14\\xa6\\x55\\xb5\\xa7\\xa6\\xb6\\x57\\xa5\\x15\\xae\\x38\\x50\\x9d\\x5a\\x15\\xf8\\x43\\x55\\x56\\x47\\x79\\x4a\\x7c\\x86\\xdb\\x95\\x1d\\x9a\\x10\\x9a\\xed\\x72\\xa7\\x27\\x58\\xca\\x3b\\xb3\\xb3\\x3b\\xcb\\x2d\\x09\\xe9\\x6e\\x57\\x56\\x18\\xfd\\x31\\x23\\x5e\\xd4\\x6d\\x00\\xc1\\xbf\\x84\\x7a\\xee\\x7f\\x78\\x1b\\x24\\x01\\x7f\\x25\\x12\\x8b\\x63\\x1b\\x90\\x14\\x34\\xc0\\x7d\\xc7\\x6b\\xd4\\xf8\\xf2\\xe3\\x67\\xfd\\x42\\x0a\\x32\\x3a\\xf6\\xcd\\x37\\x55\\x99\\xa2\\xd5\\xe9\\x09\\x8b\\x16\\x77\\x3d\\x36\\x26\\xc7\\x14\\x28\\xe2\\xda\\xef\\x5c\\x9c\\x3d\\x77\\xce\\xbd\\x0a\\x7e\\x73\\xef\\x97\\xbf\\x63\\x32\\x7f\\x08\\x45\\x92\\x62\\xce\\x0b\\x7a\\x28\\x07\\xd5\\x58\\x79\\x8e\\x5e\\x9c\\xfb\\x11\\x4e\\xa7\\xdd\\x49\\x8b\\xc7\\xfa\\xef\\xcb\\x19\\x9c\\x92\\xe7\\x95\\x4a\\xa7\\xd3\\x35\\x2b\\x2c\\x99\\x57\\x9e\\xca\\xda\\x5d\\x6e\\x29\\x70\\xd8\\x93\\x12\\xb2\\xb2\\xdd\\xc6\\xf2\\xdd\\x99\\x41\\x59\\xbb\\xcb\\x4c\\xae\\xec\\x2c\\x5d\\x62\\x6e\\x6e\\xa1\\xa5\\x7c\\x77\\x66\\xe4\\x7f\\xc4\\xe0\\xd6\\x54\\x34\\xa1\\xe0\\xc8\\xb8\\xb0\\xd0\\x98\\xf0\\xe0\\xa6\\x8a\\x27\\xcb\\xe7\\x07\\x87\\xc7\\x84\\x86\\xc5\\x47\\x06\\x23\\xd4\\x54\\xe1\\x2d\\x6f\\x42\\x28\\x38\\x32\\x3e\\x34\\x34\\x36\\x3c\\x78\\x7e\\xc5\\x93\\x15\\x4d\\x41\\x11\\x31\\xa1\\x61\\x71\\x91\\xc1\\xa8\\xa9\\x82\\xce\\x53\\x18\\x23\\x66\\x52\\x0a\\x11\\xc0\\x5f\\x99\\x2b\\xf6\\x1d\\xd2\\x2b\\x2d\\x2e\\xbd\\x43\\x4f\\xff\\xd5\\x2a\\xed\\x1a\\xbd\\x52\\x4f\\xcc\\x93\\x13\\x8b\\x9b\\xca\\x84\\xbf\\xa0\\x65\\xb7\\x09\\x3a\\x6c\\xaf\\x6b\\xcc\\xfe\\x58\\x78\\xeb\\x36\\xf4\\x02\\xda\\x70\\xd5\\x7e\\xc7\\x45\\xef\\x83\\xc7\\xed\\x7d\\x0f\\x7a\\xa9\\xac\\x7b\\x09\\xe6\\x90\\x79\\xe4\\x2c\\xac\\x06\\x1d\\x44\\xc0\\xcb\\x1e\\xc8\\x3b\\x8b\\x94\\xe8\\x2e\\x08\\x9f\\xdc\\x47\\xa5\\xcf\\xe8\\xcb\\x92\\xd0\\x9a\\xdc\\x47\\xa5\\x89\\xf8\\xce\\xb7\\x40\\x49\\x1c\\xe4\\x69\\x58\\x0d\\x49\\x10\\x06\\xef\\xc8\\xef\\xc4\\x4e\\xee\\x65\\xef\\xbc\\xe3\\x7b\\x67\\x2f\\x7b\\x07\\x30\\xdc\\x0b\\x40\\x4a\\x14\\xa3\\xa0\\x80\\x79\\xa0\\x1a\\x9b\\xab\\xe2\\xc4\\xbd\\x97\\x86\\x62\\x23\\x3d\\xb2\\x28\\x11\\xd2\\xba\\xb0\\x6e\\x08\\x1d\\x17\\x06\\x86\\x84\\x0d\\xf8\\x6f\\xc2\\x67\\x6a\\xb5\\xf0\\x25\\x9a\\x1b\\x16\\xae\\x18\\x9d\\xb4\\x4c\\x5a\\xf1\\xfb\\x38\\xc8\\x6e\\x9f\\xfc\\xc7\\xe4\\x3f\\xed\\x76\\x6a\\x0f\\x65\\x78\\xdb\\x71\\x0a\\xfc\\x05\\x82\\x81\\xbf\\x12\\xa4\\x10\\xed\\x21\\x3f\\x67\\x48\\x8a\\xda\\xe8\\x32\\xad\\x31\\x99\\x46\\x9f\\x48\\x5d\\xbc\\x68\\x61\\x52\\x4d\\xf1\\xad\\xf5\\xb5\\x10\\x05\\x8b\\x21\\x88\\x1c\\x22\\x3c\\xcc\\x83\\x78\\x48\\x85\\x7c\\xf0\\x40\\x15\\x34\\x40\\x0b\\x74\\x43\\x0f\\x2c\\x87\\xd5\\xb0\\x0e\\x06\\x60\\x10\\xf6\\xc0\\xad\\x70\\x00\\x0e\\xc1\\x61\\x38\\x0a\\x0f\\x40\\xb6\\x27\\xe3\\xfe\\x63\\xf7\\x1e\\xb9\\xe7\\xae\\x3b\\x0f\\xee\\xbf\\x6d\\xdf\\xde\\x5d\\x5b\\x37\\x6f\\xda\\xb0\\x7e\\x4d\\xff\\xca\\x15\\x7d\\xbd\\x4b\\x16\\x77\\x2e\\x6c\\x6e\\xaa\\xa9\\xae\\x28\\x2d\\x2c\\xc8\\xcb\\x35\\x27\\xc6\\x84\\xcc\\xc1\\x51\\x59\\x36\\xc4\\x94\\x05\\xa9\\x68\\xbc\\x96\\x1e\\x78\\xb1\\xea\\xfd\\x06\\x83\\xda\\x42\\x67\\xba\\x83\\xde\\xbd\\x8e\\xd2\\xb0\\x79\\xef\\x30\\x30\\x54\\x87\\x01\\xd1\\xb8\\x4f\\x3d\\xcd\\x19\\x2a\\xfe\\x6d\\xd0\\x98\\xc4\\xff\\x77\\xa0\\x9c\\x28\\x4d\\x24\\x6f\\x30\\x38\\x38\\x11\\xc1\\x41\\x51\\x34\\x11\\xfe\\x7f\\x8b\\xd4\\x22\\x0d\\x06\\x85\\xc1\\x61\\x57\\x4b\\xff\\x22\\xff\\xbf\\x3f\\xad\\xca\\xcb\\xab\\xaa\\xce\\xcb\\xab\\xbc\\x60\\xcf\\x8b\\x8f\\xd7\\x6a\\x8b\\x5d\\xab\\x3b\\x53\\x0c\\x46\\xab\\x68\\x50\\xe3\\x10\\x9d\\x36\\x36\\xd1\\x5e\\x98\\x95\\x9e\\x9f\\x33\\x71\\x5f\\xf1\\x7a\\xfc\\xfe\\x86\\xa2\\x9b\\xef\\x5e\\x5e\\xcf\\x95\\x5f\\x2e\\x12\\x2a\\x13\\xe2\\xe2\\x12\\xaa\\x8c\\x67\\xca\\xcf\\x4c\\x8e\\x9e\\x2e\\x67\\xff\\x59\\x6d\\xd7\\x27\\x95\\xda\\x85\\x05\\xc5\\xf4\\x1f\\xee\\x4f\\x45\\xf4\\x1f\\x6c\\x72\\x96\\x95\\x39\\x8b\\xc5\\xff\\xdb\\x61\\xb3\\x69\\x2d\\xaa\\x39\\xc9\\x1a\\x5b\\x8a\\xf0\\xa3\\x1d\\x66\\x9b\\xcd\\x5c\\x2c\\xfe\\x5f\\x5b\\xb4\\x2e\\x3a\\x36\\x23\\x3d\\x27\\xfd\\x87\\x93\\x6b\\x9f\\x19\\x28\\x29\\x19\\x78\\x86\\xeb\\x19\\xf6\\x2c\\x59\\xe2\\x19\\x5e\\x22\\x64\\xc7\\x46\\x69\\xa2\\x97\\xa0\\x77\\x3c\\xf4\\x9f\\x89\\x8a\\x12\\xfa\\x0f\\x5e\\x15\\xa6\\x4d\\x6b\\xb9\\x47\\x78\\xec\\x6e\\x14\\x75\\xb7\\xf0\\x98\\xf4\\x07\\x80\\x02\\x42\\x27\\xdf\\x25\\xcf\\xaa\\x06\\x81\\x03\\x2b\\xa4\\x43\\x36\\x38\\x20\\xd4\\x33\\x37\\x37\\x27\\x2b\\x23\\x2d\\x35\\x9c\\x60\\x50\\x64\\xd9\\xe6\\x70\\x8a\\xdc\\x62\\xec\\x92\\x62\\xba\\x44\\x1d\\xdb\\xee\\xa4\\xbd\\x2e\\x4e\\x94\\x10\\x4e\\xa3\\x35\\x68\\xec\\x9c\\x5d\\x63\\x10\\xff\\xc5\\xcb\\x70\\xe3\\xe4\\x95\\xc9\\xa7\\xf1\\x35\\x7e\\xae\\x3a\\x38\\x2a\\xdd\\xa8\\x35\\x55\\xae\\xf2\\xb8\\xfb\\x6a\\x6d\\xe8\\xfb\\xd8\\x1a\\x6d\\x4a\\x52\\x47\\xc7\\x05\\x25\\x18\\x34\\xaa\\x37\\xdf\\x7c\\x73\\x3d\\x21\\x98\\x10\\xbe\\x65\\x22\\x7b\\x22\\x9b\\x7b\\xe7\\x66\\x8c\\x25\\x31\\x21\\x2c\\xd1\\x95\\xe7\\xb1\\x7a\\x56\\xd7\\x5a\\x74\\xa5\\x2b\\xab\\x5c\\x59\\x9e\\xdc\\x58\\x7b\\xa6\\x65\\x9e\\x31\\xc5\\x9c\\x93\\xd5\\x7d\\x79\\xb2\\x9d\\x04\\x8d\\x10\\xc0\\x70\\xd5\\xfb\\x29\\x01\\x32\\x4c\\xef\\x48\\xaa\\xc6\\x4c\\xb1\\xa1\\x44\\x5c\\x03\\x52\\x92\\x16\\x07\\x93\\xf1\\x5a\\x8b\\x94\\x43\\x58\\x23\\x25\\x6d\\x21\\x80\\x32\\x57\\x5e\\x18\\x18\\xb8\\xb0\\x2a\\x0b\\xa1\\xac\\x95\\x23\\x03\\x03\\x23\\xab\\xb2\\xd1\\x4b\\x48\\xe3\\x58\\x54\\x59\\xb9\\xc8\\xa1\\x41\\x28\\xca\\xd1\\x5d\\x59\\xb9\\x28\\x37\\x12\\xa1\\xbf\\xae\\x18\\x3f\\xda\\xd6\\x76\\x74\\x7c\\xc5\\x33\\x2b\\xc6\\x87\\x5a\\x5b\\x87\\xc6\\x57\\xc4\\xe7\\x6d\\x5f\\x5a\\x58\\xd8\\xb3\\x2d\\xef\\x77\\x79\\xdb\\x97\\x15\\x17\\x2f\\xdb\\x9e\\x07\\x08\\xe5\\x03\\x70\\x0f\\x73\\x49\\xa0\\x83\\x34\\x8f\\x95\\x5d\\x4c\\x06\\x8c\\x08\\xa2\\x37\\x92\\x01\\x61\\x0e\\x2d\\xf7\\xdd\\x47\\x2e\\x82\\x86\\x58\\x63\\xb8\\x25\\x4c\\xa1\\x8a\\xb1\\xe9\\xf5\\x0e\\xc4\\xe6\\x71\\x32\\xaf\\x34\\xf8\\x97\\x44\\x56\\xea\\xb9\\x87\\x27\\x9f\\x40\\x49\\xa5\\xee\\xb2\\xfc\\xba\\x6a\\x34\\x92\\xda\\x34\\x50\\x59\\xb6\\xb6\\x2e\\x25\\xce\\x5e\\x6d\\x7b\\x16\\x1d\\x5d\\x8f\\x42\\x0b\\x3b\\x0c\\xd9\\x45\\xf5\\xf9\\xce\\xde\\x6a\\xab\\xbe\\xb8\\xc3\\x95\\x52\\x5d\\x59\\x6d\\xb9\\x0f\\x00\\x23\\x35\\xf9\\x98\\xfb\\x0b\\xff\\x05\\xf0\\x54\\xdf\\x33\\x47\\x29\\xa8\\x5c\\x30\\x58\\x94\\x06\\x64\\x77\\x49\\xdb\\x21\\xdd\\xd9\\x7c\\x06\\x35\\xdd\\xf7\\xb8\\xbf\\x3c\\xf9\\xfa\\xb7\\x2f\\x23\\xe3\\x89\\x6b\\x31\\xb6\\xfc\\x64\\x53\\x8e\\x2d\\x4d\\x17\\x96\\xa0\\x0d\\x6d\\x14\\x9f\\x12\\x73\\x32\\xb2\\x12\\xc2\\x74\\xda\\x10\\xf2\\xf1\\xe8\\x28\\xe2\\xff\\xa5\\x2f\\xc9\\xd6\\x45\\xc5\\x69\\xd5\\x71\\x7a\\x75\\x84\\xbe\\x34\\x27\\x31\\x2a\\x36\\x2a\\x2c\\x56\\xaf\\x06\\x0c\\x13\\xe4\\x63\\x72\\x8d\\x7f\\x07\\x78\\x88\\x05\\xd5\\x98\\x5a\\xe9\\xff\\x6d\\xad\\x45\\xca\\xcb\\xe6\\x92\\x66\\x8c\\x92\\xfb\\xc5\\x93\\xdf\\xf9\\xce\\x65\\x14\\xfe\\xf2\\x3f\\x50\\x91\\x27\\xda\\x92\\x1b\\xcf\\xef\\x39\\xa2\\x35\\x67\\xc7\\x20\\xf2\\xf1\\xb5\\x6b\\x88\\xdf\\x7b\\x40\\xa1\\x35\\x44\\xc4\\x84\\x29\\x17\\xb7\\xd7\\xeb\\x33\\x13\\xc3\\xb9\\x42\\x2a\\xf7\\xc2\\xc8\\xc7\\xdc\\x17\\xfc\\x09\\xe0\\x21\\x08\\x54\\x63\\x73\\x02\\xbe\\xa1\\x30\\x70\\x76\\xee\\x8b\\xd7\\x2f\\x5f\\xfe\\x36\\x4a\\x3e\\x2d\\x1c\\x3d\\xf2\\xc6\\xf7\\xc8\\xc7\\x23\\x23\\x88\\xef\\x44\\x1c\\xf5\\x05\\x07\\x93\\x8f\\xc9\\x67\\x7e\\xef\\x62\\x49\\x66\\xb2\\xb7\\x39\\x03\\xce\\x3c\\x85\\x0c\\xaf\\x3f\\x71\\xf9\\x3b\\x5c\\xf2\\x77\\xbf\\x37\\xa4\\xf8\\x44\\xf8\\x72\\x64\\x04\\x3d\\x27\\x4c\\x8a\\xef\\x66\\x91\\x47\\xb9\\xa7\\xf8\\xc7\\x40\\x03\\x31\\xa0\\x1a\\x8b\\x8e\\x22\\xf4\\xdd\\x19\\xd6\\x9b\\xc5\\x60\\xb1\\x73\\x4f\\x65\\x2c\\xdc\\x56\\x53\\xbb\\x6d\\x61\\xfa\\x89\\x48\\xab\\x27\\xcd\\x56\\x62\\x8d\\x5c\\x78\\xea\\xc7\\x3f\\x55\\x8c\\x16\\x2c\\xab\\xb2\\x58\\xaa\\x96\\x15\\xe8\\x9c\\x56\\xad\\xd6\\xea\\xd4\\x59\\x7f\\xc0\\x7c\\x51\\x5f\\x90\\x7b\\xf1\\xa7\\x7c\\xc1\\x94\\xec\\xf5\\xf7\\xd4\\x7f\\x11\\x6b\\xcd\\x8e\\x5e\\x67\\x88\\x1b\\x57\\x84\\xa6\\x75\\x35\\x97\\x69\\x16\\x16\\xac\\x2d\\xda\\xc9\\xf6\\x00\\x27\\x00\\xb9\\x97\\x0c\\x81\\x12\\x82\\xc0\\xe4\\x49\\x0e\\x42\\x04\\x8b\\x33\\x8f\\xe0\\x2d\\xd2\\xb5\\x9a\\x65\\x1c\\x92\\x9d\\xcf\\x74\\xca\\x21\\xfd\\x54\\x2e\\xd0\\x55\\x93\\x5f\\x6e\\x7c\\x19\\xfd\\xe2\\x11\\xf4\\xde\\x4b\\x93\\x6f\\xa0\\xa3\\xdf\\x45\\x5a\\xe1\\x8f\\x64\\xe8\\xe6\\x20\\x7a\\x06\\xdd\\x64\\xf7\\x0a\\x7f\\x08\\x40\\xaa\\xc8\\x10\\xc4\\x82\\x05\\x72\\xd9\\x39\\x22\\x8d\\x29\\xf1\\x25\\x9f\\x93\\x6b\\x06\\xf9\\x8e\\xf4\\x8b\\x50\\x43\\x5c\\x1c\\x40\\x6e\\x4e\\x6a\\x4a\\x9c\\x25\\xce\\xac\\x8b\\x87\\x58\\x88\\xd1\\xab\\x54\\x52\\xa5\\x20\\x42\\x07\\x9e\\xc6\\xac\\x11\\x03\\x52\\xfb\\x2e\\x18\\x9a\\xec\\xd2\\x1f\\x86\\x1f\\xa2\\x61\\xfb\\x9a\\x65\\xed\\x25\\xc6\\x24\\x47\\x75\\x4a\\x76\\x6b\\x91\\x31\\xb9\\x70\\x61\\xef\\x1a\\x87\\xf0\\x19\\x9a\\x9b\\xd6\\x59\\x65\\x33\\x97\\xb6\\x67\\x0a\\xd7\\xbf\\x48\\x69\\x29\\xb3\\x65\\xd4\\x2d\\xb2\\xfd\\x96\\x0c\\x85\\xe8\\xb2\\xaa\\x97\\x16\\x65\\x35\\x16\\xd8\\x42\\xe6\\x66\\x54\\x76\\xbb\\x8a\\x7a\\xeb\\x72\\x93\\xc3\\x70\\xb8\\x70\\x07\\x8a\\xb0\\x55\\xda\\x73\\x6b\\x33\\xb5\\x68\\x08\\xa9\\x2d\\x9e\\xcc\\xdc\\x72\\x73\\x28\\x02\\x04\\x1b\\xbd\\x9f\\x12\\x27\\x19\\x16\\x5b\\x44\\xd3\\xf7\\x2a\\x38\\xac\\xd8\\xc4\\x23\\x05\\xe1\\x14\\x64\\xa3\\x1c\\xb1\\x2d\\xa5\\x5b\\xab\\xa4\\x17\\xae\\x2c\\x60\\xb1\\x26\\x47\\x5a\\x8d\\x4a\\xb1\\x03\\xa7\\x49\\x17\\x83\\xe4\\x6e\\x10\\xa5\\x4b\\x94\\xd3\\x45\\x9c\\x73\\x5b\\xf6\\x5d\\x5a\\xba\\xed\\x6b\\xb7\\x94\\x21\\x54\\x71\\xfb\\xf8\\x8e\\xa5\\x0f\\xee\\x6a\\x9a\\x3b\\xae\\x39\\x74\\x4b\\xdb\\xce\\x06\\x03\\x42\\x49\\x35\\xdb\\x5a\\x6f\\x1b\\xd2\\xa2\\x5d\\xbd\\xf7\\xaf\\xb0\\x77\\x9e\\xfc\\xce\\xc0\\xca\\xcd\\xdf\\x3d\\xd9\\xe1\\x5c\\x75\\x7c\\xe9\\xf6\\xdb\\xca\\x07\\x8e\\xd6\\xaf\\xaa\\xbd\\x77\\x53\\x25\\xda\\xb5\\x9b\\x8d\\xef\\x8b\\x00\\x64\\x21\\x19\\x82\\x79\\x10\\x47\\x4f\\xeb\\x40\\x81\\x38\\x0c\\x52\\x7f\\x13\\xd6\\xdf\\x21\\x21\\x00\\x21\\x71\\x21\\xb1\\xea\\x50\\x98\\x07\\x73\\xf5\\x3c\\xeb\\x6b\\x1d\\xa7\\xd5\\x84\\x70\\x4a\\x4e\\x6d\\x2f\\xe6\\x5c\\x8e\\x0c\\xce\\xf2\\x22\\x5a\\xb7\\xeb\\xed\\x13\\x6d\\x08\\x75\\x9e\\xf9\\xe1\\x9e\\x47\\x1e\\x59\\x7c\\x74\\xb9\\x03\\xa1\\xec\\x9e\\x23\\xdd\\x64\\x08\\x37\\xdf\\xf7\\xe6\\x9e\\x92\\x7d\\x6f\\x1e\\x6d\\x42\\xdc\\x67\\x13\\x97\\x50\\x5e\\xff\\x03\\x8b\\x4a\\x3b\\xef\\x5b\\x93\\x4f\\x83\\x8d\\xbf\\x07\\x40\\x0c\\x64\\x08\\x82\\xe9\\x3d\\x27\\x0e\\x88\\x82\\x23\\x7d\\xa0\\x00\\xe6\\xd7\\x9b\\x72\\xe6\\x05\\x9c\\x6f\\xd0\\xe3\\x06\\xf1\\x5f\\xee\\xf5\\xc9\\x57\\xf1\\xc8\\xc4\\x23\\x5c\\xdb\\x64\\x3f\\xf6\\xe0\\x10\\xe1\\xee\\x53\\x64\\xe8\\x8c\\xf0\\x3c\\xb3\\x11\\x7e\\x0f\\x40\\x8a\\xc8\\x10\\xcc\\xa1\\x75\\x62\\x58\\x10\\x60\\x9f\\x7c\\x23\\x6c\\xfa\\xcc\\x15\\x8d\\x15\\x4a\\xf3\\xe3\\xc9\\xd7\\x5e\\xe5\\xda\\x27\\xd7\\xe2\\x22\\xf4\\x77\\x61\\x9e\\x48\\xef\\x34\\xa3\\xb7\\xd7\\xfb\\x29\\x29\\x25\\xc3\\x90\\x0e\\x2e\\x4f\\xae\\x15\\x30\\x51\\x88\\xcb\\x81\\xe3\\x39\\xcc\\x6f\\x92\\x87\\x96\\x07\\xea\\x76\\xf2\\x1b\\x62\\xb5\\x46\\x1a\\xde\\x38\\x9b\\xe9\\xdf\\x0c\\x2f\\xcd\\xf8\\xa5\\x77\\xe8\\x49\\xa9\\x75\\xf5\\xd6\\xbd\\x85\\xbb\\x5e\\xbd\\xb3\\x16\\xa1\\xb2\\x7d\\x2f\\xed\\xee\\x1a\\xde\\xbd\\x20\\xe4\\xc5\\x98\\xa1\\x4d\\x1d\\xbb\\xea\\xf5\\x08\\xa5\\x2c\\xdc\\xd7\\xa1\\xaf\\x2a\\x2f\\x8e\\x41\\xc2\\x75\\xf4\\xd6\\xc9\\x6c\\x8f\\x39\\xb4\\xe3\\xd4\\x9b\\x5b\\x5b\\xb7\\x7e\\xff\\x54\\x47\\xe6\\xe2\\xc3\\xdd\\xeb\\x36\\x56\\x6c\\xb9\\xaf\\xa1\\xbd\\xe9\\xfe\\x4d\\x95\\x8a\\xb0\\x84\\xe8\\x3f\\x1f\\xa3\\xbc\\x9f\\x03\\xe0\\xbe\\xa0\\xfd\\x3c\\xad\\x66\\x8e\\x74\\xcc\\x03\\x7e\\x3d\\xec\\x5f\\x33\\x87\\xfb\\xe2\\x79\\x81\\x7f\\xfe\\x79\\xf4\\xe5\\xf3\\xe8\\x6f\\x42\\x08\\x19\\x9a\\x9c\\xc4\\x9c\\x48\\xef\\x67\\x00\\x24\\x8c\\x1c\\x91\\xe8\\x81\\x82\\xb9\\xab\\x09\\xc2\\x98\\x86\\xd9\\x14\\x71\\x7e\\xf4\\x22\\xa4\\xf1\\x72\\xe8\\xd5\\xfa\\x9f\\x71\\x2e\\xe1\\xeb\\xa8\\x7c\\xe2\\x0d\\x54\\x20\\xbc\\x4e\\x8e\\x3c\\x38\\x31\\x76\\xf1\\x22\\x57\\xcf\\xfa\\xf7\\xa4\\xf7\\x53\\xee\\x7f\\xc9\\x10\\x68\\xe9\\x5d\\x54\\xc0\\xb0\\x05\\x30\\x87\\xb7\\xf8\\xd2\\x69\\x54\\xa2\\x06\\x63\\xa4\\x29\\x8c\\xa8\\xa2\\x6d\\x48\\xce\\x95\\x26\\x57\\xb8\\xe0\\x52\\xbe\\x81\\x71\\xc5\\xe6\\xe3\\xcd\\x1d\\xa7\\x07\\x6b\\x55\\xdf\\x48\\xa9\\xe8\\xcc\\xce\\x6c\\x2e\\x34\\x60\\x32\\x34\\xf1\\x49\\xcf\\xfd\\xcb\\xed\\x69\\x4b\\xee\\x5b\\x59\\xdc\\xe5\\x8e\\xd1\\x17\\x75\\xe5\\x01\\x82\\x17\\x00\\xc8\\x6d\\x64\\x08\\xe6\\x8a\\xdf\\x0a\\xe2\\x11\\x27\\x39\\xfd\\x11\\x74\\x71\\xac\\x3f\\xc2\\x23\\xd4\\xe1\\xf4\\x5b\\x4a\\xda\\x17\\x2e\\x76\\x0f\\x11\\x1e\\x18\\x1f\\xdf\\x8f\\x8e\\xfc\\x56\\x48\\xc6\\xf0\\x6b\\xac\\xbc\\x57\\x38\\x44\\x86\\x26\\xdf\\x3b\\x8a\\xce\\x4d\\x7e\\x31\\xb9\\x1b\\x10\\xfc\\x08\\x80\\xb4\\x90\\x21\\xa9\\x96\\x18\\x06\\xbc\\x45\\x6c\\xda\\x22\\xdf\\x6c\\x0b\\xe3\\x54\\x5a\\x9b\\x49\\xec\\x0f\\x3b\\x3a\\x81\\xbf\\x3e\\x71\\xeb\\xb7\\x4f\\x9d\\x22\\x43\\x6c\\x7c\\x48\\x3e\\xe5\\xc7\\xe2\\x31\\xaa\\x14\\x18\\xd3\\xa2\\x59\\xec\\x70\\x9a\\xd0\\xe3\\x73\\x9f\\xac\\xa5\\xe5\\x92\\xc4\\x19\\x1b\\x50\\x2e\\x69\\xc3\\x87\\x7f\\x1d\\xfd\\xe0\\xc0\\x6f\\x46\\xff\\x85\\x3b\\xb1\\xe3\\xe6\\x20\\xf7\\xca\\xe4\\xad\\x78\\x70\\x62\\x3e\\xa5\\xfd\\x2d\\x00\\x12\\x4a\\xd7\\x81\\xce\\x13\\xa7\\xc4\\x18\\x30\\xaa\\xe3\\x10\\xc6\\xd0\\x85\\xa4\\xa6\\xaa\\xc3\\x69\\xb7\\x4e\\xb9\\xaf\\x48\\xe8\\x53\\x42\\xb0\\xe2\\xb9\\x67\\xd0\\xe7\\xfc\\x28\\xb7\\x7e\\xe2\\x38\\x19\\x9a\\x78\\x80\\xdb\\x00\\x18\\xf6\\x7b\\x3f\\x25\\x75\\x92\\x4e\\x94\\xe0\\x89\\x95\\x2f\\xd8\\x72\\x9c\\x6f\\xba\\x5b\\xad\\x56\\x23\\xed\\xb7\\xff\\xa4\\x28\\xd5\\xa1\\xa2\\x5d\\x2f\\xec\\xdc\\xf1\\xc2\\xee\\x12\\x84\\x8a\\x77\\xbf\\xb0\\x63\\xe7\\xd8\\xae\\x22\\xf4\\x22\\x4a\\xac\\x1a\\x6c\\x6d\\xdd\\x52\\x9d\\x88\\x50\\x52\\xf5\\x96\\xd6\\xb6\\xc1\\x4a\\x1d\\xc2\\xc6\\x8d\\x6f\\x9d\\x5f\\xba\\x74\\xf8\\xad\\x0d\\xe5\\x1b\\xde\\x1a\\xe9\\x59\\x3a\\xfc\\xf6\\x46\\x5c\\x7d\\xff\\xb6\\xba\\xfa\\xed\\xf7\\x55\\x55\\x56\\xdf\\xb7\\xa3\\xbe\\x7e\\xfb\\xfd\\xd5\\x4c\\xa6\\x2d\\xf5\\x3a\\xc9\\x6a\\x32\\x0c\\xb1\\x90\\x05\\x29\\x1e\\x93\\x42\\xca\\x44\\x8f\\xa1\\x7a\\x76\\x56\\xad\\x12\\xab\\x4a\\xad\\xd2\\xc4\\xff\\x7b\\x7e\\x57\\xa2\\x04\\x77\\x8b\\xe3\\x57\\xb7\\x08\\xff\\x28\\xf2\\xec\\x7e\\xe5\\x60\\x35\\x42\\x55\\x07\\xbf\\xb1\\x7b\\xf7\\x2b\\x07\\xab\\xd0\\x55\\x64\\x6e\\xbe\\xa5\\xb3\\x63\\x6f\\xb3\\x05\\x21\\xcb\\x82\\x5b\\x3a\\x3a\\xf7\\x36\\x9b\\x10\\x36\\xd6\\x1d\\xde\\xb3\\xca\\x7c\\x69\\xe0\\x7b\\x21\\x8b\\xce\\xbe\\x3d\\x58\\x3e\\xf8\\xf6\\xb9\\xee\\x45\\x67\\x7f\\xb0\\x15\\x37\\x3d\\xb0\\xa5\\xb2\\x6a\\xf0\\x81\\x86\\xca\\xc6\\x07\\xb6\\x56\\x55\\x6d\\x39\\xde\\x04\\x98\\xd6\\xca\\x49\\x23\\x43\\xf4\\x86\\x3d\\xcd\\x89\\xcd\\xb4\\x3c\\x1a\\x53\\xbf\\xdc\\x27\\xb3\\xa4\\x29\\x90\\xa2\\x4f\\xd5\\xfb\\x9f\\xf5\\x4a\\xd7\\x21\\x90\\xc6\\x80\\xe4\\xad\\x0e\\xf7\\x09\\x7f\\x18\\x47\\x97\\x5b\\x1f\\xbc\\xa5\\xde\\xe8\\xe9\\xc8\\x41\\xc9\\xdf\\x9d\\xfc\\xf8\\x1f\\x99\\xdd\\xd5\\xe9\\xb6\\x9a\\xa5\\x39\\x7f\\x45\\xdf\\x14\\x4a\\xc8\\x10\\x4a\\x69\\xbf\\xb3\\xa7\\xa4\\xb7\\x3e\\x2f\\x4a\\x88\\x0d\\xc2\\x9d\\x28\\x3a\\xbb\\xde\\xe1\\x9e\\x9f\\x13\\x2d\\xee\\x63\\xf7\\x78\\x3f\\x25\\x79\\x64\\x18\\x2a\\xe9\\x3e\\x26\\x65\\xe8\\x00\\xa2\\xc0\\x44\\xb1\\x91\\x2a\\x3b\\x80\\x97\\xfb\\xc2\\xe1\\x2b\\xb9\\x86\\x32\\x4f\\x61\\x81\\xcb\\x91\\x98\\x10\\x13\\x1d\\x19\\xce\\xab\\x22\\x6d\\xc8\\x99\\x41\\x2c\\x34\\x0a\\x82\\x04\\x24\\x7f\\x8f\\xd4\\x11\\xad\\xb4\\x41\\xd3\\xd5\\xcb\\xfa\\x96\\xbb\\x15\\xc5\\xa6\\xe7\\x97\\x94\\xc4\\x55\\x9e\\xb9\\x7d\\xa1\\xa5\\xac\\x73\\xf9\\xea\\xac\\xd6\\x0b\\xfb\\x16\\xf0\\x2f\\xe1\\xcc\\x86\\xde\\x9c\\x94\\x45\\x0d\\x39\\x89\\xb9\\xa5\\xe5\\x9e\\x98\\xaa\\xfb\\x77\\x36\\xa4\\x54\\x2c\\x5a\\xb1\\x26\\xbb\\xfd\\xc9\\x7b\\x16\\xf1\\x2f\\x63\\x57\\xfb\\x5a\\x67\\xca\\x92\\xf9\\x0e\\x94\\x6a\\x74\\xa6\\x26\\x44\\x85\\x29\\xd5\\xf6\\x96\\x9d\\xed\\x79\\x4b\\xaa\\xed\\xfa\\x30\\x5b\\xd7\\x9d\\x8b\\x5c\\x4d\\x39\\x51\\x61\\x96\\xd2\\xec\\xe4\\xdc\\x94\\x04\\x4d\\x28\\x1f\\xee\\x6a\\xdb\\xd5\\x56\\xb0\\xa4\\x2a\\x3b\\x31\\x24\\xb5\\xeb\\x9e\\xde\\xa2\\x85\\x76\\x4d\\x88\\xc9\\x43\\x65\\xcf\\x12\\x00\\xb2\\x86\\xea\\x3a\\xe2\\xba\\xe5\\x30\\xa2\\x25\\xd7\\xe4\\x4d\\x82\\x49\\x1d\\x5f\\x05\\xaf\\x35\\x42\\xc7\\xcb\\x42\\x17\\x99\\xcb\\x7d\\x36\\x31\\x97\\xfb\\xec\\x8c\\xf8\\xfe\\x98\\xf7\\x53\\x62\\x23\\x43\\x10\\x23\\xca\\x43\\xc2\\x61\\x84\\xd1\\x16\\xdf\\x49\\x59\\xa5\\x5f\\x59\\x5c\\x85\\x4a\\x6b\\x43\\x11\\xd2\\xd2\\x88\\xb0\\x47\\x48\\x93\\x2b\\x82\\xa4\\x22\\x5c\\xbd\\xf3\\x62\\xf7\\xe2\\x8b\\x3b\\xaa\\x10\\x1a\\x43\\xc8\\x54\\xde\\x53\\x50\\xd0\\x53\\x6e\\x42\\x88\\x0c\\x4d\\x7c\\xd6\\x73\\xbc\\xdf\\xe9\\x5c\\x75\\xa2\\x97\\x9b\\x3b\\xf1\\x59\\xc1\\x12\\x4f\\x72\\xb2\\x67\\x49\\x01\\x37\\x17\\x10\\xb4\\x03\\x90\\x03\\x64\\x08\\x54\\x10\\xe7\\x89\\x16\\xc5\\x17\\x4d\\x88\\xcd\\xaa\\x85\\x51\\xd6\\x23\\x44\\x89\\x23\\x39\\xba\\x90\\x1d\\x37\\xc7\\x27\\xa0\\xec\\x37\\x04\\xcf\\x33\\x42\\xe9\\xf7\\x90\\x73\\xdd\\x5a\\xae\\xf3\\xe6\\x20\\x19\\x92\\xe2\\x0e\\x01\\xc8\\x4b\\x54\\x06\\x25\\x79\\x12\\x82\\xa4\\x5a\\x6d\\x9c\\x28\\x84\\xb6\\x60\\x36\\xf3\\xc2\\xd5\\x53\\xc2\\x87\\x33\\x70\\x9c\\x81\\xb3\\x47\\x44\\xd8\\xb9\\x9d\\xa7\\x9e\\xfa\\xe3\\x85\\x97\\xbf\\x79\\xe1\\x0f\\x4f\\x9e\\xbe\\x7a\\x16\\x2d\\xe4\\xf2\\x6f\\x0e\\x72\\xc5\\x13\\xdf\\x22\\x43\\x13\\xdf\\xe1\\xa4\\xfb\\xc6\\xbd\\x00\\x64\\x15\\xdd\\x7f\\x12\\x3d\\xf1\\x73\\x78\\x8e\\xf3\\x15\\xc9\\x43\\x5d\\x3e\\xda\\xe1\\xe1\\x6a\\xda\\xcb\\xcc\\xcb\\x20\\xfe\\xcf\\x8e\\x7b\\x50\\xc2\\xcf\\x85\\x9d\\xe8\\xd4\\x87\\xc2\\x4f\\x85\\x0f\\x3e\\x44\\xc7\\x85\\x6d\\x3f\\xc7\\x1f\\xa0\\x2b\\x93\\xdf\\x98\\x1c\\x43\\x2f\\x09\\x95\\xb8\\x1e\\x4b\\xfe\\xc0\\x46\\x9a\\x53\\x5e\\xec\\x87\\x78\\x4f\\x0c\\x4f\\xc7\\x2f\\xa0\\x23\\xc2\\xc3\\xd5\\xb4\\x23\\x10\\xbd\\x8a\\x88\\xec\\x78\\x15\\xaa\\xfe\\x89\\xe0\\x79\\x49\\xa8\\xfe\\x09\\xae\\xc0\\xb5\\x93\\x2a\\x61\\x1d\\x7a\\x10\\xdf\\x60\\xb9\\x0c\\x00\\x48\\x19\\x95\\x97\\x16\\x8f\\x71\\x0e\\x92\\x72\\x5d\\xd4\\x01\\x27\\xea\\x10\\xb8\\xcf\\x77\\x65\\xa2\\x48\\x2a\\xec\\xa7\\x8a\\xa6\\x12\\xdd\\xc1\\xae\\x4c\\x5c\\xc0\\x97\\x26\\x76\\xe0\\xc3\\x93\\xfb\\xb8\\xd5\\xe8\\xd4\\xa9\\xbd\\xdc\\xce\\x33\\xbb\\xc4\\xe5\\xd2\\x42\\x3e\\xe2\\xce\\x2a\\x39\\x50\\x83\\x09\\x54\\x63\\xf1\\xe1\\xd3\\xf4\\x7b\\x76\\x35\\xd0\\x32\\xdd\\x88\\xd1\\x72\\x67\\x53\\xeb\\xd7\\x97\\x95\\xad\\x6f\\x4c\\xbd\\x0f\\x55\\x37\\xd4\\x55\\xa1\\x1f\\xf3\\x95\\xd5\\x71\\x69\\xf9\\x49\\xca\\x23\\x67\\x62\\x53\\x9d\\x71\\x9c\\x62\\x34\\xb3\\xc1\\xa5\\xd3\\xb9\\x1a\\x32\\xb3\\xca\\xcb\\xb3\\xd4\\x7b\\x49\\x54\\xa2\\x5a\\x3b\\x8f\\x6f\\x69\\xa8\\x48\\xb0\\xc6\\x85\\x71\\xc5\\xa2\\xfe\\x1f\\x02\\xc0\\xb5\\x90\\x63\\xc0\\x03\\x7f\\x45\\x01\\x28\\x4b\\xdc\\xe0\\x15\\x0e\\x93\\x9d\\x6b\\xb9\\x26\\x6c\\xc7\\xa9\\xb1\\xdc\\xb3\\xdb\\x46\\xae\\x4a\\xb9\\x20\\x72\\xc8\\x30\\x18\\x81\\xbf\\xa2\\xa5\\x78\\x7a\\x07\\x2a\\xe6\\x44\\x41\\x68\\xf6\\xab\\x5a\\x4b\\x65\\x8d\\x9e\\xe4\\x4c\\x5c\\x40\\x4f\\xea\\xaa\\xf2\\x2d\\x08\\x25\\xe7\\x37\\xa4\\x3a\\xbb\\xcb\\x2c\\xdc\\x35\\xae\\x6e\\xd7\\xf9\\xb6\\x86\\xa3\\x03\\xe5\\xd9\\x75\\x5d\\xa9\\xc2\\x55\\xbc\\xef\\x00\\x1a\\x4e\\x28\\xad\\x5b\\x98\\x99\\x56\\x99\\x15\\x8b\\xe2\\xdc\\x2d\\xae\\x45\\x87\\x97\\x66\\xd9\\x5a\\x6f\\x59\\x58\\x34\\xb8\\xb6\\xc7\\x22\\xfc\\x51\\xec\\xef\\xd7\\xbd\\x9f\\x92\\x28\\x32\\x0c\\x1e\\xe0\\xaf\\x58\\x35\\xa2\\x7d\\x62\\xf7\\xf3\\x02\\xf8\\x7f\\x76\\xea\\x3e\\x8a\\x4f\\x74\\x30\\x69\\x87\\xde\\xdf\\x6d\\xeb\\xaa\\x4a\\x37\\x15\\xcd\\xb7\\x59\\x9b\\x8a\\x53\\xc8\\x35\\x52\\x3b\\x78\\xac\\xae\\xe1\\x81\\x2d\\x95\\x7a\\x77\\x6d\\x6a\\x66\\x4b\\x91\\xa1\\x7e\\xd7\\xe9\\xa6\\xa6\\x13\\xdb\\xeb\\xc8\\x38\\x49\\x2d\\x5b\\x98\\x96\\xde\\x56\\x61\\xcd\\x6c\\xec\\xc9\\xda\\x8d\\xcf\\x51\\x4d\\x3e\\xa3\\x22\\x4d\\x13\\x61\\xf5\\xa4\\x2d\\xd8\\x39\\x3f\\xc5\\xb2\\xe0\\x96\\xf6\\x9c\\xe6\\xe2\\x8c\\xd0\\x90\\xf4\\xb2\\xae\\x82\\x8e\\xdb\\x5a\\xad\\x96\\x05\\x7b\\xdb\\x32\\xcb\\xd3\\x22\\xa3\\x32\\xaa\\x73\\xdc\\xf5\\x69\\x11\\x88\\xed\\x35\\x77\\x03\\x90\\x62\\x32\\x44\\xcf\\xef\\x55\\x63\\xf3\\x82\\xe7\\x50\\xff\\x80\\x5d\\x43\\x6f\\xa0\\xfb\\x0e\\xe7\\xef\\x1d\\x1d\\x1d\\x9d\\x7c\\x86\\xc3\\xe5\\xdf\\x9a\\x7c\\x13\\xdd\\x69\\x46\\xc3\\xa7\\x84\\x2f\\x11\\x3f\\xc8\\x45\\x4e\\x86\\x61\\x6d\\x29\\xcb\\x9d\\xe5\\xfd\\x94\\x68\\xc8\\x10\\xa4\\x00\\x7f\\x45\\x8d\\x50\\x96\\x2d\\x42\\xd4\\x98\\x38\\x29\\x36\\x44\\x6e\\x70\\x54\\x94\\xcb\\x77\\xc0\\x6a\\xe6\\x95\\x9f\\x57\\xe0\\xc7\\x27\\x3f\\x37\\xdb\\xd7\\xe5\\xb5\\xdf\\xbf\\xb6\\xd0\\xb3\\xf9\\x4c\\x67\\xd3\\xbd\\x9b\\x1a\\x82\\x9e\\x8f\\xd8\\xdf\\xed\\xec\\x28\\x4c\\xb2\\x56\\x2d\\xc9\\x2d\\x5e\\x9e\\x83\\xcb\\x71\\xdd\\x43\\xc2\\xaf\\xb4\\x31\\xee\\x55\\xc7\\x3a\\xbb\\x8f\\xad\\x70\\xa4\\x2e\\xdc\\xbd\\xa0\\xbb\\x03\\x99\\x4a\\x3b\\x1d\\xce\\xf6\\x42\\x3d\\x32\\x26\\xb3\\xb6\\xfc\\xda\\xfb\\x29\\x49\\x25\\x0f\\x40\\x22\\xe4\\x82\\x6a\\x2c\\x35\\x29\\x82\\xce\\x4f\\x8d\\x21\\x84\\x53\\x4a\\xc7\\xf8\\x3e\\x3e\\x1c\\xc5\\x9c\\x8b\\xf3\\xdb\\x18\\x45\\x86\\xb8\\x81\\xd0\\x25\\x23\\x3b\\x6a\\xe7\\x38\\x4e\\x34\\xb5\\xdd\\xb3\\xcc\\x51\\x32\\x70\\xaa\\x63\\xd9\\xc8\\x40\\x11\\x42\\xad\\x0f\\xdd\\x38\\xfd\\x8e\\xa5\\xce\\x63\\x0f\\x45\\xba\\x82\\x45\\xc5\\xb9\\xed\\x45\\x7a\\x7d\\x61\\x1b\\x79\\xe0\\x3c\\xca\\x58\\x74\\xd7\\xa2\\xbc\\x22\\x54\\xb0\\xe6\\xde\\x85\\x5d\\x0f\\xf4\\xe7\\x57\\xef\\x79\\xa4\\xa7\\xf5\\xc4\\xa7\\x8f\\x77\\xa3\\xc9\\x9f\\x46\\x9a\\x9d\\xc9\\x06\\xc7\\xfa\\x0e\\xa7\\xa9\\xb4\\xd3\\x6e\\xef\\x2c\\x35\\x03\\x82\\x97\\x25\\xfd\\x88\\xce\\x61\\x44\\xcf\\x0c\\x0c\\xe2\\x82\\x23\\xf9\\x93\\x7f\\x78\\x0d\\x6b\\x27\\xab\\xb8\\x7d\\xc4\\x78\\xf3\\x43\\x2a\\x8d\\x45\\xdb\\x52\\xec\\x53\\x1d\\xb5\\xc3\\x0a\\x60\\x3e\\x04\\xbd\\x58\\xe7\\x71\\xa6\\x25\\x87\\x48\\x3e\\x7b\\xbf\\x79\\x44\\x8b\\x01\\x4c\\x85\\xeb\\x71\\xbe\\xb3\\x39\\x49\\xad\\x9c\\xfe\\x4c\\x40\\x67\\xaf\\xb4\\xa4\\x37\\x17\\x26\\xd7\\xef\\x3a\\xd5\\xd0\\x70\\x6a\\x67\\x7d\\x72\\xfe\\xfc\\x74\\x4b\\x45\\x4e\\x42\\xf9\\x86\\xa1\\xda\\xda\\xa3\\x03\\x15\\xe7\\x53\\xcb\\xdb\\xd3\\xd2\\xda\\xca\\x52\\xac\\xe5\\x6d\\x69\\x69\\x6d\\xe5\\xd6\\x04\\x63\\x41\\x83\\xc5\\x5a\\x9b\\xa7\\x4f\\xce\\xab\\x4f\\x49\\xa9\\xcf\\x37\\x70\\x8b\\xb2\\x9a\\x4b\\xb3\\xd5\\xe1\\xb9\\x55\\x5d\\xce\\xf6\\x5b\\x5a\\x2c\\x96\\x05\\xfb\\xda\\x9d\\x5d\\x55\\xb9\\xe1\\xe1\\xd9\\xa5\\xf3\\xb3\\x5a\\x76\\x35\\xa7\\xa4\\x34\\xef\\x9a\\x3c\\x9b\\x55\\x97\\x1d\\x13\\x93\\x5d\\x97\\x95\\x5d\\x93\\xa9\\xd5\\x66\\xd6\\xe0\\xe2\\xd4\\xf2\\xf4\\xe8\\xe8\\xf4\\x32\\x9b\\xad\\x8c\\xfe\\x97\\x8d\\xdb\\x35\\xef\\x97\\x9c\\x97\\x0c\\xcb\\xe3\\x96\\xa0\\xc6\\x59\\x36\\x53\\x31\\xe7\\x92\\x8f\\xe0\\xd8\\x89\\x84\\x68\\xae\\x19\\x1c\\xf4\\x46\\x9d\\x63\\x2a\\x22\\x11\\xdd\\xd5\\x7d\\x7e\\x5b\\x8d\\xca\\x7e\\xb4\\xa9\\xed\\xc8\\x72\\x67\\xc9\\xa6\\x53\\x5d\\xab\\x87\\xd7\\xba\\x10\\x5a\\x78\\xf1\\xfa\\xe9\\xf0\\x5f\\x59\\xea\\x4a\\x72\\x42\\x51\\x42\\x7e\\x57\\xa1\\xa3\\xbd\\x50\\x9f\\x54\\xd0\\x7a\\x3f\\x4a\\x6d\\xdb\\xbf\\xc8\\x99\\x5f\\xb0\\xe6\\xd8\\xc2\\x45\\x27\\xd6\\x17\\x35\\xdc\\xfe\\x54\\x5f\\xe5\\xc9\\x3f\\x3d\\xd6\\x85\\x4e\\xa3\\x5b\\x35\\x16\\x67\\x72\\x51\\x6e\\xff\\x42\\xbb\\xb5\\xb2\\x3b\\x27\\x67\\x51\\x45\\x0a\\x55\\x13\\x4a\\xbc\\x9f\\x73\\x43\\x5c\\x12\\x68\\xc0\\x00\\xaa\\xb1\\xc4\\x68\\xe6\\x43\\x9b\\x71\\x84\\x6d\\x09\\x70\\xc2\\x72\\x43\\xa9\\x0d\\xeb\\xcb\\x2b\\x36\\x34\\xda\\x52\\x1b\\x37\\x94\\x97\\x6f\\x68\\x4c\\x1d\\xa9\\x2a\\x2f\\xaf\\xaa\\xae\\x28\\xab\\x44\\x95\\x6d\\xfb\\x5a\\xad\\xd6\\xd6\\x7d\\x6d\\xf7\\xb4\\xde\\xda\\x9a\\x9a\\xda\\x7a\\x6b\\x6b\\x68\\x5f\\x4f\\x4f\\xdf\\x63\\xcb\\x7b\\x7a\\x96\\x03\\x42\\xdd\\x00\\xf8\\x1d\\x4e\\x13\\x20\\xeb\\x94\\x0e\\x93\\x1d\\xbf\\x33\\xfc\\x3e\\x5a\\x16\\x8e\\xbb\\xf2\\x6e\\xdb\\x26\\xf2\\x55\\x46\\x7e\\xc5\\x5d\\xe4\\xef\\x81\\x08\\xd0\\x82\\x6a\\x2c\\x2a\\x72\\x36\\x7f\\x8b\\xd3\\x65\\xb1\\x2b\\x0d\\xdc\\xc5\\xb4\\xf9\\x03\\x15\\x95\\x9b\\xe6\\xa7\\x9d\\x0e\\x37\\xe5\\xa5\\x34\\x56\\xa3\\x9e\\x33\\x0f\\xaf\\x52\\x8c\\x66\\x36\\x8a\\x72\\xb7\\x31\\x33\\xda\\x96\\x18\\x5e\\x91\\xf5\\xc1\\x77\\x98\\xaf\\xc5\\xed\\xfd\\x9c\\x3b\\xce\\x25\\x41\\x26\\xf0\\x57\\x74\\xa1\\x54\\x96\\xe5\\xcc\\xf4\\xc1\\xf1\\xca\\x28\\x4d\\xa0\\xec\\x17\\x3b\\xc0\\x80\\xb9\\xd6\\xaa\\x86\\xb2\\xf2\\xbc\\x3a\\x34\\x9c\\xde\\xd8\\x5f\\xe8\\x59\\xdf\\x64\\xab\\x2e\\x3d\\x99\\xb9\\x70\\x93\\x27\\x6f\\xdd\\x42\\xfb\\x08\\x9a\\x5f\\x5a\\xd1\\x80\\x3a\\x6a\\x5a\\xd1\\xf7\\xf3\\xed\\xe9\\xf9\\x59\\x69\\xf6\\x96\\xbc\\xc4\\x84\\xbc\\x56\\x97\\x7b\\x51\\x4c\\xea\\xbd\\xee\\xf6\\xfc\\xc4\\xb8\\xbc\\xce\\xa2\\x8c\\x82\\x42\\x7b\\x49\\xae\\xd8\\x46\\x03\\x00\\xf7\\x38\\xa7\\xf9\\xb7\\xf1\\x45\\x84\\xc8\\x16\\xf6\\xac\\xf1\\x45\\x76\\xb5\\x92\\x2b\\x5a\\xb7\\x6e\\x58\\xb8\\x9b\\x47\\xbb\\x1e\\x14\\x0e\\xfe\\x4a\\x8d\\x6c\\xfb\\x9f\\x78\\x62\\x15\\xe6\\x85\\x28\\xa4\\x8f\\xa7\\x6d\\xf6\\x78\\x3f\\xe7\\x8e\\x70\\x9a\\x29\\xf9\\x85\\x44\\xf9\\xa5\\x9c\\x29\\xbf\\x7c\\xf7\\x07\\x69\\xda\\xf5\\xb6\\x1c\\xf4\\x4b\\xe1\\x52\\x54\\x64\\x5d\\x7a\\xc9\\xca\\x2a\\x93\\xb1\\x76\\xa0\\xce\\xdd\\xbf\\x20\\x87\\x3b\\xc7\\xd7\\x15\\x18\\xed\\xc9\\x61\\xcd\\x35\\xb1\\x29\\x89\\xd1\\x73\\xd1\\x01\\x74\\xff\\xc1\\xcb\\x2a\\x8d\\xa1\\xbc\\xb7\\xd0\\xb9\\xac\\xce\\xa6\\x2b\\x68\\x75\\xda\\xb3\\x34\\x96\\xdc\\xc4\\x92\\x06\\xd5\\xdc\\x50\\x95\\xd8\\xce\\x02\\xef\\xe7\\xdc\\x31\\x4e\\x07\\xf1\\xd4\\x4f\\x6b\\x48\\x08\\x93\\x64\\x57\\xd2\\x34\\x16\\xd8\\x74\\xe3\\x92\\x79\\xa5\\xc6\\x27\\x4b\\xcd\\xdc\\xbc\\x60\\xe1\\xd3\\x98\\xa4\\xa5\\x85\\x25\\x3d\\x25\\x49\\xd6\\xfa\\xf5\\xe5\\xd5\\x9b\\xe7\\xdb\\xf2\\x36\\x3d\\xba\\xf1\\xa8\\xbd\\x49\\x8d\\x5a\\x4a\\x92\\xec\\xc6\\xc8\\x1a\\x4e\\x77\\xe0\\x17\\xfa\\x34\\x6b\\x75\\xaf\\x3b\\x6f\\x79\\x4d\\x6a\\xda\\x82\\xad\\x35\\xae\\xd5\\x0f\\x6f\\x29\\x14\\x36\\xa6\\x27\\xe9\\x5b\\xdb\\x51\\x94\\x29\\x57\\x57\\xc2\\x6c\\x58\\x94\\x05\\xc0\\x9d\\xf3\\xcd\\x3f\\x3f\\x39\\xc5\\x9d\\x13\\x1e\\x7a\\x14\\x2d\\x15\\x0a\\xf0\\x3a\\xfc\\xd2\\x64\\x25\\x7e\\x60\\x3f\\x95\\x53\\xa8\\xd8\\xfb\\x39\\x77\\x2f\\x97\\x04\\x89\\x90\\x09\\x05\\x30\\xfc\\xb5\\x08\\x0e\\x63\\x05\\x92\\xb2\\x18\\xc4\\xc9\\x89\\x94\\x7c\\x17\\xb4\\x25\\xdb\\xa5\\x08\\x1a\\xe2\\xea\\x47\\xe7\\xfe\\x3b\\x94\\x4a\\x8a\\x12\\xf2\\x9f\\xa8\\xfc\\x5b\\x02\\x5d\\x5d\\x5d\\x9e\\x39\\x46\\xb3\\x31\\x25\\x23\\x95\\xce\\x0b\\xde\\xaf\\xd6\\x32\\x76\\xe4\\xd2\\x44\\x26\\x01\\x82\\x93\\xd7\\xb0\\xfb\\x5d\\x1c\\x5b\\xce\\x74\\x35\\x73\\x7b\\x90\\xc7\\x55\\xd2\\x90\\x31\\x7f\\x7d\\x71\\xf1\\x86\\xe6\\x8c\\x7a\\x8f\\xcb\\x63\\xad\\x5b\\x59\\x58\\xb0\\xaa\\x2e\\xf5\\xee\\x28\\x93\\x5d\\x57\\xd4\\xd4\\x54\\xac\\xcb\\x31\\x6b\\x34\\xa5\\x4e\\x67\\x69\\x99\\xd3\\xe9\\xc1\\xe5\\x05\\x9d\\xb1\\xb1\\x7d\\xe5\\x79\\x6d\\x79\\xf1\\xf1\\x79\\x6d\\x79\\xe5\\x7d\\xb1\\xb1\\x9d\\x05\\xce\\x16\\x77\\x42\\x82\\xbb\\x45\\x58\\x17\\x6b\\x8d\\x0f\\xcd\\x73\\x38\\xf3\\x42\\xe3\\xad\\x68\\x73\\xa6\\xd3\\x91\\x95\\xe9\\x72\\xb1\\x58\\x5c\\x8f\\xf7\\x0b\\xee\\x08\\x97\\x04\\x71\\x90\\x06\\xaa\\xb1\\xe4\\xf8\\x98\\x50\\x51\\x16\\xe6\\x38\\xa7\\xc9\\x42\\x9a\\x73\\x44\\x94\\x85\\x4e\\x97\\x34\\x19\\xa9\\x28\\x7c\\xf7\\xd0\\x9d\\xc1\\x89\\xed\\x8e\\x92\\xbe\\xd2\\x64\\x6b\\xc3\\xfa\\x8a\\xaa\\x0d\\x0d\\x29\\xef\\x7d\\x14\\x72\\x21\\xab\\x5a\\xdd\\x54\\x98\\x94\\x63\\x88\\x08\\x4f\\xce\\xdd\\xd9\\xb7\\x3a\\xc1\\x68\\xa9\\xec\\x2b\\xc8\\x5b\\xd5\\x98\\x9e\\xd6\\xba\\xb3\\xde\\xfe\\xa3\\x5f\\xa1\\x5b\\x11\\xa4\\x26\\x14\\x2e\\x68\\x89\\xb6\\xba\\x12\\x75\\x0e\\x73\\x14\\x9b\\x07\\x0e\\x7c\\x98\\x7b\\x9e\\x9e\\x4f\\x4b\\xf1\\x7f\\x74\\x12\\x3c\\x3f\\x79\\x00\\xdf\\x22\\xdd\\xa7\\xe3\\xd0\\x8f\\x88\\x87\\x7b\\x9c\\xdf\\x02\\x1c\\x68\\xc1\\x00\\x41\\x2f\\x26\\xc5\\x86\\xab\\x30\\x88\\x7b\\x94\\x5d\\x69\\x50\\xfa\\x39\\xec\\x45\\xee\\x5d\\x4c\\x45\\xa4\\x1d\\x8b\\x7f\\xf3\\x9d\\x0f\\xf7\\xde\\x1a\\x9f\\x59\\x6c\\x48\\x2e\\x4e\\x8f\\x8b\\x4b\\x2f\\x4e\\x36\\x14\\x67\\xc6\\xb7\\xa1\\x1c\\xa3\\x21\\x0b\\x65\\x1b\\x8c\\x39\\xfc\\x96\\xab\\xef\\x1b\\x8b\\xd3\\x62\\x62\\xd2\\x8a\\x8d\\xc6\\x42\\x5b\\x74\\xb4\\xad\\xd0\\x68\\xc8\\xc9\\x31\\x98\\x73\\x72\\x00\\xa3\\xcf\\xc9\\x7e\\xee\\x45\\xc5\\xb7\\x41\\xc1\\xf4\\x96\\x39\\x84\\xc6\\x82\\x44\\xd8\\x35\\x9c\\xc1\\xe2\\x74\\xba\\xb4\\xbc\\x52\\x63\\xc0\\xcf\\xf6\\x3e\\x7e\\xb5\\xf9\\xda\\x1c\\x7b\\x7a\\x8d\\x9d\\xdb\\x43\\x46\\x90\\x59\\x23\\xbc\\x7b\\x4f\\xc1\\x12\\x1d\\xb7\\x70\\xd5\\x9d\\x80\\xd1\\x56\\xf2\\x33\\xee\\x5b\\xfc\\x0f\\x21\\x02\\x32\\x41\\x35\\x96\\xa9\\x9f\\x45\\x9f\\x2d\\xc6\\x8e\\x08\\xf9\\x44\\x80\\x57\\x4e\\x1d\\x08\\x38\\x1d\\xdc\\xb7\\x7c\\x82\\xfd\\x04\\xaa\\x68\\x34\\xbb\\x8c\\xea\\x23\\xd1\\x69\\x45\\xc6\\x14\\x67\\x66\\xa6\\xde\\x90\\x81\\x5a\\x63\\x6c\\x45\\x26\\xbd\\xc3\\x9e\\x9b\\x94\\x9c\\xa5\\x78\\x26\\x73\\xbe\\x3b\\x31\\xd1\\x3d\\x3f\\x33\\xbb\\x32\\x22\\xc9\\x16\\x8d\\x82\\x8c\\xa5\\xd9\\x09\\xda\\x04\\xad\\xdd\\xac\\x31\\x96\\xe5\\xe8\\xe8\\x5f\\xb4\\xcf\\x31\\x2f\\x9c\\xc1\\xaf\\xc0\\xd9\\xaf\\x8c\\x09\\xe0\\xa3\\x68\\x2e\\x12\\xfc\\xca\\xf8\\xb8\\x70\\x06\\x23\\x3a\\x4e\\x6b\\x84\\x15\\x9c\\x1a\\xca\\x20\\x06\\xf8\\x2b\\x73\\x68\\x9c\\xa6\\x4f\\x37\\xa0\\xb7\\x23\\xa4\\x7b\\x7d\\x16\\x5c\\x9d\\xdb\\x98\\x1d\\x6d\\x2c\\x5a\\x98\\x59\\xb3\\x34\\x31\\x29\\xa2\\xc8\\x5c\\x6c\\x8f\\x32\\x65\\x44\\x97\\xc5\\x95\\x56\\xd5\\x1a\\xec\\x8d\\x8e\\xb8\\x84\\xd0\\xdd\\xaa\\x88\\xac\\xd4\\xb8\\x9c\\xf4\\xd4\\x08\\x91\\x6e\\xaf\\x50\\xcf\\x85\\xc3\\x29\\x50\\x8b\\xd6\\xbc\\x0a\\x21\\xac\\x44\\x80\\x70\\x1d\\x87\\x68\\xf6\\x52\\x84\\x60\\x31\\x00\\xe8\\x41\\x2a\\xfc\\x6b\\x31\\x10\\x3e\\xca\\x66\\xd2\\x04\\x16\\xdb\\xe4\\xc2\\xa5\\x83\\xf4\\x38\\x5d\\xac\\xb2\\xac\\xfa\\xd4\\xa7\\x8f\\x8d\\xa9\\x82\\x86\\x39\\x05\\x87\\x7b\\x17\\x7d\\x0a\\x1c\\x6c\\x14\\xea\\x68\\x0d\\x8a\\x22\\x68\\x81\\x7e\\x08\\x7a\\x71\\x59\\x47\\xb5\\x27\\x4f\\x27\\xce\\x1f\\x43\\x54\\x94\\x14\\x1d\\x62\\xe1\\x79\\x76\\xf5\\xc0\\x5f\\x0e\\x8a\\x3a\\x0f\\x5b\\xba\\x53\\xb9\\x78\\xb4\\x7a\\x24\\x23\\xcb\\x65\\x1a\\x67\\x84\\x2c\\x91\\xde\\x93\\x09\\xba\\x92\\xcd\\xc3\\x4b\\x5b\\xaa\\x22\\x13\\x23\\x0c\\x19\\x71\\x4f\\xf5\\x9e\\x59\\x9b\\x57\\x7f\\xe4\\xbb\\x7b\\x36\\x3e\\xb5\\xbd\\x24\\x21\\xbb\\xd4\\x18\\xa7\\x8b\\x4c\\x4a\\xd5\\x2c\\x58\\xea\\xd9\\x3c\\xbc\\xb4\\xb9\\x06\\x6d\\x9c\\x3c\\x62\\x35\\x65\\x57\\x18\\xab\\xfa\\x2b\\x9a\\xf7\\x77\\xe7\\x44\\x3b\\xdb\\x8b\\x85\\xa7\\x8c\\xa5\\x5d\\x4e\\x47\\x97\\xc7\\xe8\\xfb\\x2f\\xf7\\x58\\x6a\\xaf\\x33\\xaa\\x6e\\xff\\x32\\xb7\\x46\\x6d\\x37\\x6b\\x13\\x23\\x55\\x86\\x9a\\x8d\\x0d\\x85\\xbb\\xfb\\x8a\\xd3\\xea\\x57\\xe6\\x65\\x35\\x97\\xd9\\xc3\\xa3\\x0a\\x52\\xcc\\xc5\\x76\\x4b\\x58\\xf6\\xe9\\xee\\xa8\\xa6\\x83\\xbd\\x8e\\xc8\\x9b\\x7f\\xe3\\xa3\\x16\\x15\\x1b\\x0a\\x6d\\x31\\xc9\\xce\\x8a\\x64\\x83\\xc3\\x10\\x8e\\x1f\\x49\\xa9\\xcb\\x33\\x18\\xf2\\xea\\x52\\xa2\\x6c\\xf5\\x6e\\xbd\\xde\\x5d\\x6f\\x63\\xb6\\xe1\\xf3\\xc2\\xaf\\xb8\\x0f\\xb9\\x52\\xd0\\x00\\x7f\\x25\\x48\\x1c\\xe3\\x88\\x99\\x39\\xe7\\x9e\\x7f\\x6f\\x7a\\xb2\\xb9\\xf7\\xb8\\xd2\\x69\\x79\\xe6\\x44\\x7d\\xeb\\xfb\\xe2\\xc2\\x55\\xbc\\x06\\x0a\\x50\\x83\\x6a\\x2c\\x44\\x45\\xcf\\x78\\x22\\xa8\\x63\\x00\\xb1\\x43\\x62\\x3a\\x86\\xdf\\xc7\\xd6\\x71\\xe1\\x18\\xea\\x74\\xb9\\x5d\\x6e\\xb7\\xcb\\xed\\xa2\\x05\\xd2\\xcf\\xa0\\xaf\\x67\\x94\\x94\\x64\\xa4\\x17\\x16\\x32\\x19\\x71\\xd1\\x7b\\x83\\xbb\\xc9\\x47\\x53\\xbe\\x42\\xa8\\x8c\\x50\\xcb\\x49\\x4f\\x7c\\x61\\x96\\xb8\\x4b\\x93\\xd9\\xe8\\xd6\\xb9\\x72\\xd2\\xc2\\x23\\xab\\xee\\xac\\x5a\\x72\\x6b\\x83\\x9e\\x8f\\xbe\\xb9\\xac\\x66\\x89\\x53\\x13\\x14\\xaa\\x56\\xde\\x97\\xa4\\xcb\\x5c\\x7e\\x6e\\x3d\\x79\\x00\\xbc\\x5e\\xf8\\x21\\x00\\xc7\\x2b\\x46\\x31\\x0f\\x11\\xf4\\xdc\\xbf\\x15\\x80\\xa4\\xd1\\xe7\\x98\\x8f\\x45\\xde\\xdf\\x02\\x20\\xf5\\x64\\x48\\xae\\x7d\\x8c\\x80\\x70\\x34\\x4b\\x9f\\x2f\\x85\\x23\\xdd\\x12\\x00\\xe2\\x62\\xd4\\xa1\\xec\\x42\\x3c\\xaf\\x8a\\xb2\\xcd\\x9e\\xb4\\x11\\x1d\\xbc\\x8a\\xde\\x6c\\x1d\\xde\\x5d\\x57\\xb7\\x6b\\xa4\\x55\\xf8\\x33\\x0a\\xcf\\x5e\\x5c\\x99\\x9a\\x5a\\xb9\\x38\\x5b\\xf8\\x33\\xfa\\x9a\\x50\\x47\\x86\\x50\\x46\\xf7\\xdd\\x8b\\x7b\\x0e\\x75\\xa4\\xa2\\xd3\\x48\\x9b\\xd3\\xe8\\x72\\x36\\x3b\\xe2\\x11\\x1b\\x8f\\x75\\x42\\x03\\xd9\\x43\\x6a\\xc1\\x06\\xfc\\x15\\x0d\\x1d\\x0f\\x51\\x43\\x8d\\x40\\x76\\x14\\xc1\\xa2\\x38\\x94\\x52\\x14\\x07\\x87\\x0c\\x88\\x93\\x82\\x9e\\x9c\\xce\\x9f\\x54\\xaf\\xa9\\xcf\\x09\\xdd\\x8e\\x82\\x5e\\x16\\x8e\\x7f\\x14\\x92\\xa0\\x4f\\x89\\x0e\\x0b\\x51\\xe3\\x60\\xe3\\xbc\\x82\\xee\\x6a\\x77\\xf4\\x59\\xe1\\xa7\\xaf\\xa3\\xfb\\x5f\\x0c\\x49\\xb6\\xb9\\x92\\xe7\\x59\\x43\\x50\\x78\\x11\\xa9\\x75\\x36\\x2f\\x4d\\x11\\x26\\x30\\x9a\\xcc\\x17\\xb4\\x49\\xae\\x94\\x68\\xcc\\x8d\\x28\\x55\\x86\\xca\\x95\\x65\\xa8\\x6e\\xf2\\x65\\x6e\\x0e\\xba\\x27\\xb9\\x2c\\x37\\x91\\xa0\\xe3\\x8a\\x20\\xaa\\x4b\\x5f\\x02\\x20\\xbd\\x8a\\x67\\x21\\x19\\xd2\\x41\\x35\\x66\\x33\\x70\\x54\\x2e\\x8a\\xcd\\x17\\xa7\\x0b\\x3f\\xcb\\x9d\\x5e\\x93\\x5d\\x32\\xd8\\x0d\\x68\\xf1\\x38\\x3a\\xb3\\x6d\\x6c\\xaf\\x07\\x6d\\xdb\\x54\\xdc\\xee\\x88\\x4e\\x30\\x7f\\x43\\x1b\\x33\\x17\\x9b\\x2a\\x7b\\x0b\\x05\\xe1\\xed\\x27\\x4e\\x1a\\x6a\\xb7\\x34\\x7d\\x84\\x77\\x4d\\x1e\\x52\\x3c\\xeb\\x58\\x73\\x76\\xd5\\xe6\\x47\\xb2\\x23\\xcb\\x3b\\xd7\\x15\\xdd\\x5d\\xbc\\xd1\\x1c\\xad\\x29\\xad\\x2c\\x8e\\xb8\\xa3\\xb0\\xaf\\xd2\\x7c\\x0a\\xed\\xbf\\xad\\xb0\\xaf\\xdc\\x24\\xc5\\x38\\x01\\xd0\\x7c\\x54\\xd4\\x27\\x1c\\x44\\x3d\\x99\\x52\\x72\\x14\\xea\\x68\\x8f\\xaa\\x57\\xf8\\xa5\\xb2\\x63\\x17\\xa9\\xe4\\x54\\x28\\x08\\x19\\xf0\\xbc\\x27\\xc7\\xc7\\xcf\\xa3\\x97\\x7e\\x22\\xa8\\x71\\xf4\\x6f\\x69\\xc2\\xbc\\x51\\xbf\\x7c\\x79\\x18\\x76\\x79\\x6f\\x90\\x1e\\xc5\\xb7\\x20\\x86\\xfa\\x24\\x92\\xe3\\xd5\\xd2\\x5c\\xf6\\xcb\\xbc\\xc3\\x26\\x61\\xc0\\xd4\\xde\\x85\\x93\\x93\\x5c\\x75\\x56\\x9d\\xa7\\x28\\x37\\x3c\\x46\\x5b\\xd6\\xd4\\x6e\\xab\\xb9\\x65\\xb1\\x43\\x38\\x8d\\x5a\\x5c\\x4e\\xa7\\xdb\\xed\\x74\\xba\\x48\\xfe\\xa4\\xa9\\x64\\x61\\x56\\xa4\\x32\\x38\\x58\\x71\\x47\\x88\\x26\\x54\\x65\\xed\\x1a\\x5a\\x81\\xf3\\xd1\\x37\\xd2\\x8b\\x8b\\xd3\\xd3\\x8a\\x8a\\xd8\\xdd\\xbb\\x1b\\xa4\\x9f\\x07\\x88\\x05\\xfe\\x4a\\x38\\x16\\xe7\\x80\\xde\\xc5\\x4d\\xff\\x70\\x84\\xfe\\x22\\xea\\xbf\\xa6\\x93\\x3e\\xe7\\x50\\x4f\\x7d\\x2e\\x56\\x38\\xaf\\xf0\\xa2\\x9b\\x3d\\x33\\x3e\\x43\\x80\\xf5\\xdd\\x0f\\x00\\xb8\\xbf\\x4a\\xb1\\x5e\\x73\\x14\\x28\\xcb\\xe6\\xd2\\x53\\x9f\\x87\\x5a\\xaf\\xd1\\x7f\\x80\\x5c\\xc2\\xd7\\xd1\\x9f\\x42\\x91\\x65\\xe2\\x8f\\x17\\x89\\x71\\xf3\\xe3\\x63\\x5f\\x7e\\x7a\\x11\\x30\\x0c\\x79\\x4f\\x93\\xe5\\xe4\\x3a\\x94\\x42\\x0b\\xa8\\xc6\\x6a\\xca\\x9c\\x36\\x71\\xfc\\xa7\\x12\\x99\\xd1\\x9c\\x0a\\xcc\\x78\\xd2\\x6a\\x25\\xc7\\x9d\\xc4\\xaa\\xc5\\x62\\xf6\\xe5\\x73\\x13\\x27\\x08\\x2d\\x37\\xec\\xf0\\xa9\\x16\\xdc\\xab\\xaa\\x60\\xce\\xb0\\xba\\xac\\x74\\x45\\x85\\xc1\\xbd\\xfc\\x50\\x73\\x9f\\xc2\\x5a\\xb9\\x34\\x6f\\xc9\\xe1\\xc5\\xe9\\x18\\xe1\\xbc\\x95\\x43\\xed\\xf1\\xf9\\xae\\xac\\xf0\\xec\\x98\\x92\\xca\\xaa\\xa4\\x23\\x6f\\x1c\\x28\\xe5\\x10\\x57\\x7e\\xd7\\x9b\\x07\\xda\\x4f\\x6e\\x2a\\x0d\\x53\\x0b\\xe7\\xf4\\xae\\xb4\\x04\\x65\\x8d\\xbd\\xb3\\xd4\\xa8\\x36\\x38\\x11\\x1f\\x9a\\x11\\x63\\x76\\xa5\\x37\\xad\\x2d\\x6a\\xd8\\xb1\\x30\\xad\\x60\\x71\\x89\\xbe\\xfa\\x8e\\x6f\\xec\\x28\\xdc\\x7d\\x6d\\x9f\\x67\\x4e\\x58\\xd4\\xbc\\x83\\x11\\xf1\\x11\\x73\\x96\\x3d\\xfb\\xf7\\x63\\xe9\\x47\\xff\\x3a\\xba\\xcc\\xbe\\xe6\\xe2\\x46\\x61\\x28\\x63\\x95\\x39\\xe4\\xf6\\x70\\x9d\\x29\\xfc\\xb3\\x70\\x6b\\x45\\xb6\\xb1\\x24\\x23\\x96\\xd9\\x8e\\x8b\\xbc\\xd7\\xc9\\x59\\x1a\\x43\\xed\\x01\\xd5\\x58\\x41\\x56\\x8c\\x82\\xe9\\xcd\\x6a\\x9e\\xb7\\xcc\\x34\\x8d\\xa7\\xc2\\x8c\\xc5\\x61\\x52\\xfa\\xfe\\x88\\x2a\\xc6\\x2e\\x35\\x39\\xfb\\x7a\\xe7\\xcf\\xef\\x5c\\xfa\\xf0\\xee\\x2a\\xad\\x7b\\x49\\xb5\\xa3\\x21\\x5b\\x5b\\xb9\\xed\\x6c\\x5b\\xef\\xb9\\x0d\\x05\\xe3\\xfa\\xc2\\x0e\\x67\\x56\\x47\\x99\\x25\\xa9\\xa4\\xbb\\x90\\x2b\\x5d\\x53\\x67\\x4d\\x9b\\x3f\\x50\\xa6\\x2b\\x29\\xcc\\x8d\\xe0\\xb2\\x4f\\x4d\\x7e\\xde\\xd4\\x8e\\xdc\\xeb\\x86\\x57\\xda\\xfb\\x97\\xd4\\x6b\\x63\\xea\\xdb\\xbb\\x53\\x57\\x9e\\xe9\\xcf\\x2d\\xd9\\xf0\\xc0\\xc2\\xbc\\xc5\\x65\\x86\\x24\\x4f\\x4f\\x89\\x7b\\x71\\x85\\xe9\\x94\\xbe\\x7c\\x65\\x45\\xc5\\x32\\x8f\\x0e\\x05\\x47\\xc6\\x86\\xd2\\x7c\\x3d\\x47\\x69\\x3d\\xdc\\x6f\\x43\\x36\\xf0\\x57\\x22\\x09\\xb3\\xf3\\x72\\xc3\\xa9\\xa9\\x8b\\xa6\\xed\\xe0\\xbe\\x9c\\x25\\x48\\xb2\\x7b\\x51\\xf5\\xd5\\x9f\\xff\\xb6\\xfe\\xd6\\x81\\xbe\\x34\\xe1\\x67\\xbd\\x27\\x57\\x3b\\xcb\\x77\\x3e\\xba\\xbc\\x68\\x77\\xb1\\xd3\\xd0\\x53\\x54\\xb2\\xac\\xd2\\x78\\xff\\xb1\\x01\\x34\\x57\\x93\\x55\\x58\\x6d\\x5b\\xb0\\x2a\\x5f\\xc3\\x7d\\xd3\\x8b\\x88\\xa1\\xb8\\x2d\\x47\\xd8\\x34\\xa7\\x74\\xe0\\x6c\\xdf\\xaa\\x8b\\x1b\\xf2\\xb4\\xb1\\xa7\\x23\\x13\\xad\\x35\\x2b\\x0b\\xcf\\xde\\x7b\\x0a\\x6d\\x8b\\x30\\xc6\\xab\\x0b\\x56\\x1c\\xac\\x63\\xf3\\xee\\xc7\\xde\\x1b\\xf4\\x8c\\x30\\x13\\x96\\x79\\xe6\\x25\\xeb\\x43\\xe6\\x11\\x84\\x33\\x11\\x47\\xb3\\xb5\\xc4\\x34\\x77\\x7a\\xe2\\x01\\x61\\xc0\\xf4\\x76\\x29\\x60\\x44\\xa8\\xd0\\x65\\xd5\\x45\\x8b\\xb8\\x86\\x38\\x4f\\xd2\\x0c\\x30\\xc7\\x15\\x89\\xa6\\x05\\xbd\\x34\\x59\\xa9\\x68\\xe8\\xf2\\xcc\\xc9\\x30\\x68\\x8c\\xe6\\x64\\x51\\x21\\x37\\xf9\\x37\\x2f\\xc2\\x77\\x7b\\xd6\\xa0\\x66\\x95\\x22\\xfc\\x3b\\x02\\x07\\x27\\xb5\\x3a\\x73\\x9a\\x9c\\x09\\x77\\x1d\\x6a\\xfd\\x53\\x42\\x6b\\x49\\xc9\\xc2\\x6c\\xcd\\xd5\\x6f\\xbf\\x55\\xba\\x69\\x79\\x87\\x45\\xf8\\xf3\\x82\\xfd\\xdd\\xd9\\x05\\x6b\\xee\\xeb\\xc8\\x1b\\x70\\x8d\\x45\\x26\\xea\\x0b\\x16\\x64\\x2f\\x6b\\xbb\\x1b\\x59\\xb4\\x96\\xb4\\xfa\\x95\\xee\\xc9\\x50\\xfc\\xd7\\x77\\xdf\\x4f\\xc8\\x2e\\x37\\x0b\\x5f\\x53\\x66\\xce\\xdf\\x50\\xb5\\xe8\\x48\\x6f\\x8e\\x36\\xd6\\xeb\\x45\\x05\\xe4\\x31\\xee\\x3e\\xc5\\xf3\\x98\\x87\\x11\\xba\\xdf\\x48\\xff\\x60\\x5e\\x94\\x52\\x5e\\x2f\\x7c\\x80\\xb3\\xb9\\xf7\\xf1\\x1b\\x98\\x87\\x50\\xf1\\x67\\xef\\x4f\\x00\\xc8\\xbd\\x8a\\x51\\x50\\xb3\\x3a\\xbc\\xb4\\x86\\x3a\\x28\\x10\\xc8\\x69\\xc3\\x0a\\x59\\x86\\x1d\\x15\\xeb\\x0d\\x00\\x43\\xb2\\x3e\\x31\\x2a\\x32\\x22\\x1c\\xd4\\x10\\xa6\\x57\\xab\\xe7\\xa8\\xb4\\x36\\x16\\x22\\xe5\\x3b\\x80\\x8e\\x30\\xc8\\x27\\xd0\\x06\\xb5\\x7d\\xfc\\x77\\xbf\\x43\\x0b\\x4e\\xff\\xe5\\x91\\x0e\\x84\\x3a\\x1e\\xf9\\xcb\\xe9\\xea\\x0f\\x4f\\x6c\\x7f\\x6a\\xb3\\x0b\\x21\\xf7\\xa6\\xa7\\xb6\\x9f\\xf8\\x10\\x9f\\x3d\\x85\\x6f\\xc5\\xcb\\x9f\\xfb\\xe7\\xc9\\x75\\x27\\xff\\xf9\\xdc\\x72\\x84\\xcf\\x4e\\x4e\\xa2\\x05\\x47\\xbe\\x31\\xb0\\x61\\xe0\\xeb\\x87\\x9b\\xb1\\x10\\xf3\\xff\\x08\\x8f\\xac\\x16\\x5a\\x1d\\xad\\x7d\\xbd\\xec\\x6b\\x52\\xe9\\xeb\\xfa\\x51\\x7d\\x73\\xa7\\x27\\xc9\\xaf\\x02\\xb6\\x52\\x59\\x2c\\x97\\xeb\\xad\\xa6\\x69\\x11\\x8a\\xb0\\x38\\xc1\\x66\\x16\\xc9\\xae\\x9e\\x2a\\x92\\x5d\\x84\\x1b\\xba\\x3c\\x73\\xa7\\xea\\x64\\xab\\xfe\\x53\\x9d\\xec\\x53\\xc2\\x9f\\x03\\xeb\\x64\\x3f\\xff\\xfc\\x38\\x0a\\x27\\x3f\\x16\\xbe\\x3b\\x4b\\x9d\\xec\\x1f\\x9f\\x3a\\x45\\xe3\\x70\\x1b\\x00\\xc8\\x41\\xc5\\x28\\x84\\x8a\\x5a\\x88\\x12\\xf9\\x0e\\x5b\\x78\\x7a\\x01\\x11\\x14\\x8a\\x42\\xff\\x3b\\x8d\\x6a\\x75\\x98\\x4a\\x15\\x2f\\xd5\\x3e\\x15\\xbb\\x95\\x5e\\x15\\xb6\\x73\\x4f\\x5f\\x7f\\xe1\\x97\\xbf\\x14\\x8a\\x89\\x5b\\x28\\xbe\\xce\\xb9\\x26\\xde\\xe0\\x5c\\xa7\\x50\\xc5\\xc8\\x88\\xf0\\xb2\\xef\\x7e\\xfa\\x0d\\x62\\x55\\x78\\xc0\\x02\\x35\\x9e\\xca\\x08\\x44\\xb8\\x48\\xa4\\x20\\xb8\\x2e\\x18\\x05\\x41\\xd0\\x16\\x25\\xc2\\x3c\\xa2\\xd1\\x00\\x2a\\x7a\\xe2\\x3b\\x07\\x01\\x94\\xd4\\x03\\x21\\xbe\\x55\\xc6\\xa2\\x32\\xcc\\x26\\xb5\\x5a\\x43\\x6b\\x0c\\xa9\\xe9\\xbd\\x10\\x71\\xef\\xd0\\xd8\\x35\\x06\\xcd\\xf4\\x7d\\xca\\x21\\x76\\x87\\xde\\xa1\\x57\\xe3\\x15\\xe8\\xbc\\xb0\\xe2\\x93\\x4f\\x92\\xdc\\xb5\\x6c\\xc7\\x8a\\xd5\\x96\\x35\\x75\\xd0\\x1d\\xeb\\x67\\x3f\\x13\\x3e\\x46\\xf1\\x0a\\x8f\\xf0\\xe5\\xd1\\x6b\\xa7\\x6e\\x96\\xb4\\x64\\x47\\x2a\\x83\\x82\\xc9\\x01\\xdf\\xbe\\x75\\xf3\\xd4\\xb5\\xa3\\x88\\x67\\xf1\\x9a\\x0b\\x00\\xc8\\x31\\xa5\\x01\\x9b\\xc1\\x00\\x80\\x94\\x50\\xe6\\x3d\\x83\\x16\\xc1\\x9c\\xe7\\x30\\xba\\x8a\\x16\\x49\\x31\\xe5\\x0c\\x27\\x49\\xc6\\x19\\x84\\x3b\\x50\\x87\\x84\\xd3\\x11\\x80\\x53\\x23\\xe3\\x9c\\x87\\x43\\xa8\\x5b\\xc2\\xe9\\x0e\\xc0\\x69\\x91\\x71\\x1e\\x82\\x07\\x50\\x9f\\x84\\xd3\\xf7\\x15\\xdf\\xea\\x87\\x50\\x46\\x07\\x4f\\xa7\\x73\\x58\\xc6\\xb9\\x08\\x21\\xe8\\x61\\x09\\xe7\\x61\\x7f\\x1c\\x55\\xb4\\x0f\\x07\\x7d\\xdf\\x3b\\x81\\x1e\\x15\\x71\\xb8\\xab\\xe8\\x51\\x09\\x67\\x9d\\xd0\\x48\\x96\\x28\\xbe\\x8d\\xcd\\x60\\xa2\\x17\\xee\\x76\\x38\\x59\\x9f\\x7c\\x0d\\x80\\xe4\\xd2\\x3e\\xb1\\x48\\x7d\\x72\\x94\\xf6\\x09\\xf2\\xeb\\x13\\x86\\x93\\x24\\xe3\\x0c\\xc2\\x1e\\xda\\x27\\xc8\\xaf\\x4f\\x18\\x4e\\x8d\\x8c\\x73\\x1e\\x6e\\xa1\\x6d\\x41\\x7e\\x7d\\x32\\x9d\\x4e\\x3f\\x28\\x18\\x8e\\x5f\\x7b\\x9f\\x01\\x20\\x3a\\xca\\x8f\\x4d\\xe2\\xa7\\x7b\\x06\\x3f\\x0c\\x27\\x49\\xc6\\x19\\x84\\xea\\x19\\xfc\\x30\\x9c\\x1a\\x19\\xe7\\x3c\\xd4\\xce\\xe0\\x67\\x3a\\x9d\\x7e\\xef\\x8f\\x67\\xf0\\x73\\x14\\x80\\x14\\xd3\\x71\\xcc\\x92\\xc6\\x71\\x3d\\x1d\\x47\\xe4\\x37\\x8e\\x6b\\xbd\\x37\\x48\\x9f\\xd2\\x8d\\xcd\\x90\\x2d\\xf1\\x3c\\x8c\\x06\\xa4\\xb1\\x1e\\x08\\xc0\\x71\\xc8\\x38\\x83\\x70\\x37\\x5a\\x2f\\xe1\\xac\\x0f\\xc0\\x59\\x22\\xe3\\x9c\\x87\\xc3\\x68\\x93\\x84\\xb3\\x29\\x00\\x67\\xb5\\x8c\\xf3\\x10\\x9c\\x42\\xdb\\x25\\x9c\\xed\\x5f\\xf1\\xad\\x7e\\x88\\x60\\x74\\xf0\\x14\\x9d\\xc3\\xde\\x1b\\xa4\\x4c\\xa9\\xc5\\x66\\x70\\x49\\x3c\\xbf\\x88\\x9a\\xa4\\x76\\x35\\x05\\xe0\\x44\\xca\\x38\\x83\\x70\\x09\\xd5\\x4b\\x38\\xf5\\x01\\x38\\x85\\x32\\xce\\x79\\x78\\x04\\xcd\\x97\\x70\\xe6\\x7f\\x05\\x9d\\x7e\\x48\\x67\\x38\\x78\\x0a\\xa7\\x08\\x80\\xec\\x52\\x26\\x62\\x33\\x14\\x48\\xdf\\xda\\x8c\\xda\\x25\\x3a\\xed\\x12\\xce\\x79\\xef\\x0d\\xe2\\x54\\xfc\\x1a\\x9b\\xa1\\x1c\\x44\\x49\\x5b\\x76\\x22\\x1a\\x54\\xcf\\x61\\x34\\x1a\\xcd\\xee\\x91\\x30\\xf8\\x2f\\x25\\xb8\\x48\\xe3\\x76\\xd0\\x30\\x0c\\x8d\\x2f\\xdf\\x19\\xc5\\xe1\\x79\\x19\\xe7\\x3c\\x1c\\x80\\x18\\x86\\x13\\x13\\x88\\x13\\x26\\xe3\\x3c\\x04\\x47\\x21\\x91\\xe1\\x24\\x06\\xe0\\xc8\\xdf\\xe2\\xa1\\x3f\\x98\\x52\\xc1\\x94\\x8a\\x4c\\xa3\\x56\\x86\\x5f\\x0c\\x5a\\xc6\\xe0\\xcb\\xfc\\xe1\\xef\\xf9\\xe0\\xe8\\xfb\\xff\\x5a\\x21\\xc2\\xb9\\xd1\\x15\\x0c\\x7e\\x54\\x68\\x24\\x76\\xd2\\x84\\xcd\\x50\\xc9\\xd6\\x6b\\x3d\\x5b\\xaf\\x87\\xbc\\x37\\x48\\xa5\\xe2\\x37\\xd8\\x0c\\xd5\\xac\\x0f\\x8e\\xf9\\x71\\x2f\\xc3\\x7f\\x25\\xc3\\x07\\xf7\\x46\\x31\\x78\\x94\\x1f\\x9c\\x57\\xca\\xf0\\xf3\\xfb\\x62\\x19\\x3c\\x76\\xf6\\xf7\\xfb\\xf9\\x58\\xc6\\xb7\\x04\\xff\\x3e\\xbd\\x33\\xff\\x16\\x36\\xc3\\x3d\\xec\\xfb\\xdf\\xe0\\x58\\x46\\x39\\xce\\x1f\\xfe\\x06\\x83\\x83\\x38\\x06\\x97\\x29\\xdf\\xec\\xf7\\xbf\\x4a\\xef\\x89\\xfd\\xfe\\x14\\x10\\xf6\\x26\\xf1\\xf5\\x69\\xc0\\xbb\\xe2\\xb7\\x73\\x29\\x06\\xa6\\x18\\xd2\\x7a\\xb5\\xd2\\x71\\x69\\xa6\\xf0\\x87\\xf6\\x24\\x32\\x0a\\x89\\x0c\\xbe\\xdb\\x7b\\x83\\xb4\\xd0\\xf9\\xb1\\x80\\xf1\\x76\\x4f\\xe0\\xfc\\x60\\xf0\\x5f\\xca\\xf0\\xc1\\xed\\x7e\\xb3\\xc3\\x07\\xa7\\x73\\x83\\xc1\\xcf\\xef\\x0c\\xec\\x5b\\x06\\x0f\\x93\\xe0\\xe2\\xbc\\x38\\x38\\x63\\x5e\\x4c\\xff\\x46\\x3f\\x04\\xce\\x8b\\x17\\xbc\\x37\\x48\\xa2\\xe2\\x6d\\x6c\\x86\\x0e\\xc6\\xe3\\xdd\\x7e\\xbd\\x20\\xc3\\xdf\\x94\\xe1\\x83\\xdb\\x10\\x83\\x23\\x7f\\xf8\\xdf\\x64\\xf8\\xf9\\x1d\\x0a\\x06\\x57\\xcc\\xfe\\x7e\\x3f\\x28\\x58\\x1f\\x4a\\xf0\\x0a\\xa1\\x9e\\xdc\\x41\\xe1\\xdd\\x3e\\x39\\x04\\x7e\\x5f\\xa0\\x6d\\x08\\xc4\\xe1\\xa1\\x3f\\x22\\x90\\x06\\xdd\\x6f\\xf8\\x2f\\xe5\\x3d\\x69\\x23\\x44\\xa0\\x3a\\x49\\x06\\xd5\\x05\\xac\\xd5\\xab\\xf2\\xfc\\xdf\\x18\\xaa\\x62\\x3d\\xa5\\xf2\\xa3\\xa1\\xac\\x93\\x69\\x8c\\x40\\x28\\x3a\\x2d\\xd1\\x38\\xed\\x4f\\x83\\x57\\xc9\\x34\\x46\\x82\\xdb\\x19\\x0d\\x2a\\x10\\x30\\x2c\\x10\\xe6\\x93\\x63\\x34\\xd7\\xaa\\x1e\\x8a\\x3c\\xf9\\x7a\\xc4\\x43\\x2c\\x42\\x64\\x2e\\xc2\\x68\\x1e\\xe2\\x30\\xa9\\x03\\x1e\\x08\\xe2\\xc9\\x32\\x7a\\xab\\x5a\\x34\\xea\\x8b\\xea\\x7d\\x89\\xe2\\x6a\\xb9\\x06\\xb5\\x3a\\xd6\\x64\\x52\\x87\\x29\\x55\\x71\\x34\\x98\\x98\\xa7\\x7e\\xf5\\xa8\\xa9\\xab\\xb8\\xa2\\x99\\xc6\\xe9\\x39\\x03\\xd2\\x73\\xd8\\x72\\x0e\\xfd\\x20\\xab\\x69\\xa9\\x31\\x35\\xc9\\x11\\x96\\x18\\xdf\\x56\\x6a\\xad\\xca\\xd5\\xc5\\x66\\x57\\xa5\\xad\\x13\\x62\\xb7\\x8d\\xa3\\x5e\\x74\\xe0\\x55\\xc5\\xe8\\x97\\xcd\\xa9\\x03\\x65\\xc9\\x56\\x14\\xa1\\xda\\x15\\x16\\x1f\\x9d\\x55\\x9d\\x69\\xac\\xa9\\xf4\\xc4\\xa1\\x5e\\xe1\\x10\\x8e\\xc5\\x3b\\x01\\xc3\\x79\\x61\\x3e\\x71\\x92\\x26\\x28\\x87\\x16\\xe8\\xf4\\xb4\\xd5\\x22\\xa5\\x2a\\x9d\\xc3\\xa0\\x74\\x23\\x05\\xe4\\x21\\x5e\\x41\\xea\\x80\\xc3\\x08\\x73\\x34\\xad\\x9d\\x4a\\x89\\x54\\xcb\\x01\\x63\\x9a\\xf8\\xa0\\x9a\\xd6\\x27\\x63\\xc7\\x07\\xf5\\xbe\\x5c\\x70\\xb5\\x7c\\x43\\x65\\x45\\x43\\x5d\\x45\\x4b\\x65\\x8b\\x29\\xd3\\x18\\x69\\x4a\\xb1\\x04\\xa9\\xe2\\x6c\\x26\\xb3\\xd9\\x77\\x6d\\x8a\\xda\\xd5\\xb2\\x8b\\xd1\\x77\\xde\\x4f\\x0d\\xe9\\x59\\x5a\\xeb\\xb4\\x48\\xc6\\x35\\xf5\\x55\\x72\\x03\\xaa\\x20\\x2e\\xbe\\x72\\xe1\\x52\\x47\\xfb\\xe1\\x3e\\x47\\xf5\\xfe\\x17\\x37\\xbf\\x69\\x2c\\xeb\\x29\\x70\\x75\\x14\\xea\\xaf\\xa1\\x82\\x81\\x0b\\x2b\\x17\\x8f\\x0c\\x96\\x45\\x86\\x9b\\xa7\\xf5\\x49\\xf7\\xa7\\xce\\xa5\\x8d\\xee\\xb0\\xa7\\x1e\\x7a\\x21\\xce\\xd9\\x12\\xa2\\x71\\x26\\xc4\\xe7\\x98\\xa3\\x72\\xda\\xb6\\x55\\x74\\xdd\\xd9\\x95\\xd6\\x96\\xdd\\xe4\\xd2\\xc5\\x67\\x94\\x24\\x17\\x6c\\xe9\\x76\\xa7\\x77\\xdf\\xd5\\x2d\\xcc\\x71\\xee\\x4a\\x0f\\x9b\\xd6\\x6b\\x15\\x87\\xc6\\xe2\\x33\\x0a\\x92\\x7e\\xde\\xbb\\x3a\\xa5\\x22\\x3b\\x9e\\xea\\x2e\\xde\\x1b\\x64\\x09\\xdd\\xcf\\x4c\\xd2\\x9c\\xbd\\x4c\\xf7\\x4e\\xe4\\xb7\\x77\\x8a\\x76\\xab\\x9d\\xae\\xbb\\x4a\\x09\\xe7\\x01\\x2a\\xfb\\x91\\x9f\\xec\\x67\\x74\\x96\\xc8\\x74\\xce\\xc3\\x53\\x74\\x5f\\x44\\x7e\\xfb\\x2b\\xa5\\x43\\x65\\x40\\xa5\\x84\\x73\\x82\\xae\\x60\\xe4\\xb7\\x3f\\x30\\x3a\\x19\\x32\\x9d\\x0b\\x90\\x3b\\x3b\\x1d\\xc5\\xfb\\x12\\x1d\\x1e\\x2e\\x24\\xf8\\x51\\x91\\x69\\x2c\\x95\\x69\\x0c\\x83\\x03\\x6d\\x96\\x68\\x6c\\x0e\\xe0\\x45\\x29\\xd3\\x18\\xd6\\xc5\\x32\\x1a\\x92\\x2c\\x3e\\x07\\x40\\x36\\x29\\xc5\\x3d\\xc6\\xcc\\x68\\x78\\x3f\\x40\\x8b\\xa5\\x35\\xb4\\x78\\x6a\\xef\\x55\\xfc\\x2f\\xaf\\x01\\x33\\x54\\x51\\xdd\\xb0\\x9f\\xe3\\xbd\\x5e\\x86\\xe3\\xf5\\xfa\\xeb\\x65\\x74\\x3d\\x5b\\xa4\\xf5\\x3c\\x87\\xae\\x67\\xe4\\xb7\\x9e\\xd9\\xbe\\x30\\x2e\\xef\\x0b\\x1b\\x83\\xe6\\xb0\\xb5\\x38\\x87\\xf1\\xc2\\x74\\xbb\\x3a\\x99\\xc6\\x08\\x28\\xe8\\x7a\\x46\\x7e\\xeb\\x99\\xed\\x3d\\x73\\x64\\x1a\\x23\\x7c\\x07\\xa3\\xd1\\xe1\\x4f\\x23\\x46\\xa6\\x71\\xc1\\xa7\\x1f\\xfa\\xe9\\x6c\\x8c\\x8f\\x9f\\xca\\x34\\x2e\\xf0\\x7e\\xfb\\x17\\xcd\\x37\\x3c\\x9f\\xe4\\xd2\\xfc\\x4d\\xa5\\x9e\\xe2\\x10\\xc4\\xe1\\x50\\x44\\x38\\x5c\\x07\\x2a\\x00\\xa4\\xa2\\xe6\\x1b\\x2d\\x99\\x42\\x4d\\x21\\xdc\\xa5\\x10\\x6d\\x33\\xd1\\x9c\\xa3\\xab\\xac\\x96\\x56\\x64\\xd0\\x9a\\x4c\\x6a\\xb5\\xcf\\x44\\xd3\\xcf\\xba\\x52\\x5c\\xbe\\x30\\xe9\\x77\\x26\\x2f\\xe2\\xd7\\x5b\\xa7\\xad\\x81\\xe6\\x9a\\xc9\\xc3\\xdc\\xb6\\xc9\\x0a\\xdc\\x8b\\x1f\\x9c\\x9c\\x18\\x9e\\x36\\xbd\\x4b\\x6e\\x75\\x28\\x46\\x47\\x84\\x34\\xc0\\x70\\x48\\xe8\\x23\\x95\\xa4\\x09\\xec\\x50\\x02\\x75\\x9e\\x6a\\x3b\\x52\\x90\\x79\\x08\\x70\\x08\\x42\\xc0\\xd5\\x81\\x12\\x88\\x42\\x49\\xfa\\x54\\x88\\xe7\\xa9\\xc4\\xaa\\x66\\xa9\\xe9\\x00\\xe3\\xca\\x7a\\x29\\xad\\x0b\\x2a\\x45\\x0d\\x8e\\xdc\\xfc\\xbc\\xdc\\x12\\x47\\x89\\x51\\x63\\xd5\\x9a\\xac\\x73\\x54\\xb1\\x36\\x13\\xcf\\x2b\\xed\\xb3\\x71\\xed\\x5f\\x26\\xcf\\x97\\x19\\x1b\\xb1\\xb4\\xd8\\x19\\x1c\\x71\\x25\\xaf\\xab\\x47\\xd3\\x9a\\xe2\\xb2\\x0f\\x8c\\xdf\\x51\\xdb\\x7a\\xf8\\xb9\\x25\\xdb\\x9e\\xdd\\x9a\\x37\\x71\\x93\\xb3\\x77\\xed\\xad\\x5f\\x7e\\xd6\\x2e\\x3c\\xe3\\x5e\\xd1\\xec\\x0a\\xc6\\x55\\x9c\\xa1\\x62\\xf5\\xd7\\xed\\xdd\\x09\\xd3\\x1a\\xe9\\x58\\x93\\xc5\\x35\\x1f\\xfe\\xfa\\x40\\xea\\x81\\x77\\x8e\\x36\\x2c\\x38\\xfa\\xad\\xcd\\x0b\\xeb\\xf6\\xf7\\xb9\\x9b\\xcb\\xf0\\x83\\xd6\\xf9\\x83\\xf5\\x21\\xce\\xb5\\xad\\xb9\\xf2\\x78\\xd7\\xca\\xe3\\x3d\\x0c\\x3c\\x9d\\xbf\\xc8\\x6f\\xfe\\xb2\\x39\\xa3\\x92\\xc7\\x7b\\x58\\x19\\xc7\\xc6\\x3b\\x8e\\xcd\\x99\\x15\\xde\\xeb\\x64\\x31\\x5d\\xd3\\x56\\x69\\xbd\\xde\\x37\\x63\\x2d\\x1e\\x11\\xda\\x49\\x02\\x5d\\xd3\\xb5\\x6c\\xcf\\xdc\\x10\\xb8\\xaf\\x33\\x1a\\x3d\\x32\\x8d\\x11\\x88\\x41\\x4f\\x4b\\x34\\x9e\\x0e\\xa0\\xa1\\x92\\x69\\x8c\\xfc\\xc3\\x6f\\x2f\\x92\\x69\\x64\\xc8\\x34\\x2e\\x40\\xcc\\xec\\x7c\\x50\\x99\\xc0\\x68\\x5c\\xf8\\xc7\\x34\\x3e\\x04\\x13\\x59\\x4c\\x6d\\x34\\x4a\\x03\\xdd\\x07\\xcf\\x09\\xef\\x30\\x1a\\xc2\\x3b\\x01\\x7c\\x3c\\xe0\\xa3\\x81\\xce\\x2b\\x3b\\x19\\x8d\\x4e\\x46\\x63\\x08\\x80\\x94\\x50\\xbb\\x27\\x55\\xea\\x8f\\xcd\\xb3\\xda\\x3d\\x69\\xca\\x01\\x6c\\x86\\x3a\\x09\\xc7\\x88\\xf6\\x4b\\x38\\xfb\\x03\\x6c\\xa3\\x16\\xd9\\x36\\x7a\\x08\\xda\\x66\\xd8\\x3d\\x4c\\x5f\\xbb\\x29\\xeb\\x74\\x0f\\xc1\\x55\\x08\\x62\\x12\\x2a\\xc8\\x27\\x2b\\x29\\x1d\\x2a\\x5b\\x18\\x9d\\x8d\\xde\\xf7\\x66\\xc8\\x16\\x46\\xe7\\x61\\x59\\xef\\xdb\\xe8\\xfe\\x4c\\xca\\x3c\\xfc\\x99\\x7c\\xd7\\x92\\xf1\\x53\\x27\\xd3\\x19\\xf1\\xfe\\x78\\x86\\x7c\\x61\\x74\\xfe\\x2e\\xd3\\x19\\xc9\\x2d\\x65\\xdc\\x94\\x32\\xd9\\xf0\\x8c\\x30\\x9f\\xe8\\xa8\\x6c\\x28\\xf0\\xb8\\xc3\\x10\\xe1\\xd4\\xd4\\x77\\xa1\\xf2\\x95\\x0f\\x2b\\xa4\\x49\\x73\\xb9\\x2e\\x1e\\x51\\xe7\\xa0\\xe4\\xb6\\xa8\\x55\\x34\\x48\\x42\\x81\\x49\\x05\\x5f\\xd4\\xfd\\xac\\x72\\xc1\\xa1\\x57\\xeb\\x9f\\xe1\\x36\\x09\\x97\\xd0\\x12\\xe1\\xc3\\x19\\x72\\x41\\x58\\x83\\xda\\x84\\x27\\x15\\xa3\\x0f\\xde\\xbc\\xef\\xe2\\x4c\\xb1\\x70\\x91\\x0c\\x30\\xff\\xf1\\xf7\\x85\\xf9\\xa4\\x4d\\xf1\\x1a\\x24\\x82\\x0d\\xaa\\x3c\\xe5\\x7e\\x52\\x6c\\xce\\x1c\\x29\\x1f\\x0b\\x2d\\xa0\\x0e\\x00\\x25\\xb4\\xec\\xce\\x2c\\x82\\x2c\\x35\\xc5\\xe0\\x13\\x65\\x41\\x94\\xe9\\x7f\\xcb\\xf2\\xb4\\x23\\x36\\xd4\\x27\\x5c\\x98\\xc9\\xfc\\x11\\xb4\\x29\\xf0\\xe8\\x6d\\x62\\xd5\\x6c\\xad\\xc0\\x5f\\xc8\\xc7\\x71\\xf2\\xb8\\xc5\\xc8\\xe3\\x76\\xc1\\x67\\x63\\xfb\\xcd\\xc7\\x65\\xde\\x1b\\xe4\\x57\\xca\\x02\\x6c\\x86\\x34\\x36\\x1f\\xd1\\x37\\x67\\xd8\\xa2\\xa3\\x42\\x3d\\xf7\\xb9\\xe2\\x0f\\xd8\\x0c\\x67\\xa5\\x39\\xfb\\xbe\\xf7\\xa6\\x34\\x4b\\x6e\\x4a\\x38\\x4f\\x09\\xc5\\xe4\\x61\\x9a\\xf7\\x3a\\x5d\\x5a\\x3f\\x5f\\x13\\xfe\\x20\\xad\\x9f\\x3f\\xc8\\x74\\x3c\\x64\\x2d\\x0f\\xd8\\x0c\\x8d\\x12\\xce\\x32\\xe1\\x13\\x09\\xe7\\x13\\x09\\xe7\\x3b\\x00\\xa4\\x5a\\x29\\xe2\\x64\\x30\\x5d\\xc2\\xeb\\x44\\x2e\\x89\\x1f\\x97\\xff\\x5c\\x53\\xae\\xc2\\x66\\x68\\x92\\xf4\\x8d\\x87\\xd0\\xb0\\x84\\x33\\xec\\xa3\\x23\\xb8\\x49\\x35\\xe5\\x27\\x43\\xfa\\xd6\\x8b\\xc2\\x6f\\xa4\\x6f\\xfd\\xc6\\x47\\x47\\xc8\\x23\\x6d\\x94\\x9f\\x26\\x09\\xe7\\xc7\\xc2\\x6f\\x25\\x9c\\xdf\\xfa\\xf3\\xe3\\x47\\xa7\\x1f\\xfe\\xe6\\x3d\\x2b\\xb5\\xfd\\xac\\x1f\\x3f\\xbf\\xe6\\x09\\xf8\\xe8\\xf4\\x63\\xe4\\xfd\\xb3\\x84\\xf3\\xe7\\xd9\\xe9\\xc0\\x05\\xd8\\x3a\\xf9\\x3a\\xc3\\x99\\x7c\\xdd\\x8f\\x4e\\x27\\x0f\\x3e\\x3a\\x70\\x01\\xdd\\x36\\xf9\\x7b\\x09\\xe7\\xf7\\x01\\x3e\\x91\\x24\\xd9\\x27\\x32\\x08\\x4b\\x67\\xf5\\xbf\\x58\\xa9\\x3e\\xc6\\x6c\\xb5\\xc1\\x0d\\x7e\\xda\\x18\\xb5\\x6f\\xdd\\xa4\\x98\\xf2\\x92\\x25\\xb5\\xfb\\xe0\\x8c\\xbe\\x79\\x46\\x70\\x13\\x2b\\xb5\\x81\\x9b\\x25\\x9c\\x07\\x66\\xe0\\x30\\x5e\\x6a\\x65\\x5e\\x86\\xbd\\x9f\\xcc\\xd8\\x43\\x98\\xdd\\xa8\\x94\\x79\\x19\\xfe\\x22\\x40\\x8f\\xf2\\x5e\\xa3\\xf0\\x28\\x06\\x07\\x25\\xea\\x9f\\xfc\\x13\\x4c\\xf9\\x51\\x42\\x65\\x3f\\xca\\x46\\xd0\\xa2\\x1e\\x49\\xbf\\xea\\x91\\x68\\x33\\x7b\\xef\\xaa\\x6c\\xef\\x6d\\x24\\x81\\x76\\x0e\\xa3\\xd1\\x23\\xd3\\x18\\x81\\x08\\xba\\xb7\\x60\\xbf\\xbd\\x85\\xd9\\x95\\x2a\\x99\\xc6\\x08\\x04\\xee\\x2d\\x22\\x8d\\x01\\x3f\\x1a\\x97\\xe0\\xcc\\x0c\\x7f\\x8e\\x48\\x63\\xb1\\x4c\\x43\\xc4\\xb9\\xd3\\xdf\\xf2\\xa4\\xed\\x19\\x03\\x20\\x5b\\xa8\\x1f\\x26\\x57\\x1a\\xb7\\x9d\\xd4\\x9f\\x83\\xa7\\xfc\\x39\\xa8\\x96\\xd6\\xad\\x13\\xc7\\xad\\x95\\x8d\\x5b\\x67\\xe0\\xb8\\x8d\\x09\\x6e\\xb2\\x85\\x8e\\x5b\\xae\\x34\\x26\\xe7\\xe9\\x98\\xe0\\xa9\\x31\\x41\\x61\\x82\\x9b\\x64\\xd3\\x71\\x6b\\x65\\x38\\xde\\xdf\\xcc\\x18\\x37\\xc6\\x4b\\x91\\xcc\\xcb\\x30\\x70\\xa8\\x59\\xe2\\xa5\\x59\\xa2\\x13\\x29\\xf2\\x42\\xc7\\x8d\\xf1\\x32\\xfc\\x71\\xa0\\xfe\\xbb\\xdd\\x7b\\x83\\xac\\xa1\\x76\\x81\\x43\\x6a\\xcf\\xfe\\x19\\x76\\xc1\\xb3\\xb2\\x9f\\xa6\\x4d\\xc2\\x39\\x38\\xc3\\x2e\\x60\\x74\\x96\\xc8\\x74\\xce\\xc3\\xc1\\x19\\x7b\\xf7\\xb3\\xb2\\xdf\\xa8\\x4d\\xc2\\xb9\\x73\\x86\\x5d\\xb0\\x5d\\xa8\\x20\\x6b\\xe8\\xfe\\xed\\xa0\\xfc\\xee\\x58\\xf0\\x4f\\x69\\x05\\xfe\\x53\\xde\\xc7\\x9e\\x15\\x2a\\x45\\x1b\\x50\\xa2\\xc3\\xc3\\x8e\\x8a\\x7f\\x49\\x38\\xff\\x92\\x71\\xb6\\x0b\\x46\\x3f\\x3a\\x62\\x1f\\x8f\\x09\\x3f\\x90\\xfa\\xef\\x07\\x3e\\x7e\\x04\\x93\\x1f\\x1d\\x11\\xe7\\xf1\\x19\\xba\\x02\\x6b\\xd7\\x52\\xb9\\x5d\\xc3\\x30\\x6f\\x86\\x8d\\xc1\\xda\\xa5\\x94\\xf9\\x19\\x0e\\x0d\\xec\\xe3\\x06\\x21\\x83\\x1c\\xa4\\xe3\\xed\\x94\\xbe\\x73\\x49\\xf8\\xa9\\xf4\\x9d\\x9f\\x4a\\x34\\xee\\x15\\x32\\x88\\x55\\xe1\\xc1\\x66\\x68\\x67\\x38\\x48\\x31\\x03\\xa7\\x41\\x68\\x9c\\xa2\\x03\\x3c\\xec\\x28\\x61\\x6d\\x5d\\x22\\xcc\\x27\\x6b\\xc8\\x10\\x36\\xa3\\x67\\x59\\x7f\\x64\\x61\\xf6\\x7d\\xcc\\xbe\\x7f\\xaf\\xd0\\x38\\x45\\x1b\\x94\\xb0\\x03\\x1e\\xa4\\xef\\xd1\\xb3\\x0e\\x3a\\x7f\\x9c\\x72\\xdb\\x9a\\xa5\\xb6\\x35\\xfb\\xf8\\xf2\\xde\\x20\\x7b\\xf9\\x2b\\xe0\\xe3\\xab\\x1f\\x9d\\x87\\x61\\x46\\x7d\\xd8\\x37\\x66\\xcc\\x37\\x59\\x25\\xfb\\x26\\x1f\\x82\\xe7\\x50\\x9b\\x44\\xa7\\x4d\\xa2\\xc3\\x7c\\x2a\\x13\\x92\\x4f\\x45\\xc4\\x39\\x00\\xc1\\x8c\\x4e\\x70\\x00\\x1d\\xfe\\xcf\\x32\\x9d\\x8d\\x90\\x8d\\x8a\\x25\\x3a\\xc5\\x01\\x74\\x1e\\x91\\x7d\\x33\\x1b\\xb9\\xcf\\xa5\\xb1\\xff\\x5c\\x1e\\x7b\\xc6\\x4f\\xb1\\x4c\\x67\\x04\\xd2\\xd1\\x11\\x89\\xce\\x91\\x00\\x3a\\x9f\\xc9\\x74\\x46\\xa0\\x8c\\x71\\x53\\xc6\\xfa\\x8c\\xd1\\xb8\\x55\\xa6\\x71\\x11\\xd2\\x98\\xae\\x84\\xa7\\x74\\x25\\x4a\\x83\\x77\\xc8\\x34\\x2e\\x7a\\x9b\\x98\\x8f\\xa7\\x69\\x8a\\xc6\\xdd\\x7e\\x7c\\x5c\\x82\\x2b\\x33\\x7c\\xb6\\x22\\x8d\\x6e\\x99\\x0f\\x11\\xe7\\x0e\\x7f\\x6f\\x13\\x3d\\x2f\\x3a\\x2c\\xec\\x23\\x65\\x8a\\x51\\xc8\\x80\\x25\\x9e\\xa0\\x50\\x04\\x38\\x8c\\x46\\xca\\xb2\\x84\\x78\\xf1\\xbc\\x02\\x73\\x5c\\xa1\\x5c\\x50\\x23\\xc0\\xb0\\x89\\xf3\\xb0\\x53\\x39\\xd4\\x33\\x1d\\x0b\\x37\\x74\\x79\\x42\\x00\\x20\\x03\\x32\\x4c\\x1a\\xad\\xc9\\x46\\x2f\\xf8\\x46\\x84\\x70\\xca\\xd9\\x8d\\x9e\\x80\\xeb\\x40\\x1e\\x8c\\x2c\\x55\\x2b\\x8a\\x8a\\x6b\\x02\\xb4\\x9b\\x14\\x73\\xff\\x13\\xbb\\x2a\\x10\\x1e\\x25\\xc8\\x52\\xbb\\xa1\\xba\\x7a\\x7d\\xad\\x19\\x73\\x8a\\xd1\\x09\\x73\\xdd\\x5d\\x5b\\x17\\x25\\xa4\\x2c\\xcf\\xf7\\x57\\x72\\xd2\\x17\\xa5\\xe2\\xa6\\x83\\xa3\\x2b\\xb9\\x0f\\x26\\xcc\\xa5\\x3b\\x17\\xbb\\x5d\\x4b\\x76\\x96\\x72\\x1f\\xd0\\x9a\\x3b\\xf3\\x49\\x05\\xc9\\x87\\x34\\xc8\\xf7\\xb8\\xac\\x51\\x98\\x70\\x69\\x08\\x93\\x39\\x08\\x70\\x10\\xad\\x92\\x2a\\xe5\\x15\\x0d\\x68\\xec\\x62\\x40\\xa8\\x16\\x35\\x44\\x98\\x34\\xa9\\x26\\x13\\xbd\\x24\\x3a\\x5b\\x23\\x2c\\x53\\xc5\\xae\\x7c\\x35\\xbe\\xec\\x6a\\xa2\\x9b\\xa6\\xa3\\x75\\x34\\x05\\x39\\x1f\\x5a\\xdb\\x76\\xcf\\x32\\xc7\\x78\\xbc\\x7b\\x81\\x63\\xf3\\xe1\\xe4\\x6b\\xd3\\xf4\\xb3\\xb2\\x83\\xce\\x23\\xcd\\x5d\\x8e\\x4d\\x4f\\xef\\xc2\\x07\\x26\\xf7\\x74\\x6e\\xad\\x8c\\x5f\\xdc\\xc4\\xa9\\x6e\\x7e\\x87\\xcd\\x3d\\x51\\xf6\\x8f\\x50\\xdb\\x21\\x4f\\x92\\x71\\xb7\\xce\\xd0\\xd5\\xb2\\x00\\xc8\\x63\\xd4\\xff\\xd8\\x25\\xf9\\x8f\\x03\\xfd\\x8f\\xcc\\x8f\\x5f\\x2d\\xfb\\xf1\\xcf\\xc3\\xe0\\x8c\\xf3\\x1b\\xe6\\x5f\\xfc\\x9b\\xec\\x83\\x3c\\x0f\\x87\\xc1\\x8f\\x0a\\xcc\\x76\\x1e\\xd0\\xef\\x9d\\x60\\x74\\xf0\\x14\\x9d\\x2d\\x00\\xc4\\x45\\xf7\\xb3\\x42\\x49\\xb6\\x0f\\xcf\\x38\\x9f\\xb8\\x08\\x40\\x8a\\xa8\\x2f\\x73\\xb1\\x84\\x73\\x76\\x86\\xbf\\x93\\xd1\\x99\\x27\\xd3\\xb9\\x00\\x96\\x19\\x67\\x18\\x8c\\xce\\x6b\\x12\\x1d\\x1e\\x2e\\x18\\x03\\xdb\\xcd\\x68\\x14\\xc9\\x34\\x86\\x21\\x65\\x86\\x3c\\x62\\x34\\xfe\\x2e\\xd3\\x18\\x36\\xf1\\x8c\\x06\\xcf\\x68\\x24\\x01\\x90\\x27\\xa9\\x5e\\x75\\xab\\xc4\\xeb\\xfb\\x33\\xce\\x1e\\x6d\\xde\\x1b\\xe4\\x09\\xea\\x9f\\x3f\\x28\\xe1\\x9c\\x86\\x28\\x50\\x3d\\xc7\\x31\\x0f\\x3f\\x6d\\x4f\\xb5\\xf7\\x12\\x39\\x42\\xe5\\xfe\\xed\\xf2\\x79\\xdd\\x09\\x98\\xf3\\x1c\\x87\\xae\\xa2\\x13\\xb2\\xbe\\xb0\\x8b\\xb4\\x28\\x7e\\x81\\xcd\\x70\\x88\\xed\\xf3\\xcd\\x91\\x8c\\x4a\\x24\\xd3\\x89\\x7e\\xcf\\xee\\xb0\\x63\\x33\\xba\\x48\\x65\\xe7\\x9b\\xc2\\xf3\\xde\\x9d\\x92\\xdf\\x68\\x27\\xa3\\xf1\\xdf\\xe0\\xf8\\xee\\xff\\xf9\\xe4\\x3b\\x7a\\xf3\\xef\\x1f\\x49\\x32\\xef\\x23\\x59\\xe6\\xd1\\x7c\\x08\\x0a\\x2f\\x36\\xa3\\x61\\xe6\\x13\\x3f\\xec\\x64\\xfa\\x8f\\x93\\xf5\\x0b\\x83\\x4f\\xc8\\xf0\\xc1\\x1d\\x76\\x06\\xb7\\xfb\\xc1\\x79\\xa3\\x0c\\x3f\\xbf\\xcb\\xc5\\xe0\\x2e\\x7f\\x78\\x86\\x04\\x17\\xe5\\xf7\\x1d\\x50\\xc4\\x30\\x8a\\x7c\\x7d\\x36\\xfd\\x1b\\xfd\\xc8\\xc5\\xb4\\xa7\\x00\\x1a\\xab\\x65\\x1a\\x17\\x01\\xe0\\x36\\x86\\x71\\x5b\\x00\\x0d\\xfe\\x33\\x1f\\x0e\\xfa\\xbe\\xf7\\xcf\\xb0\\x9f\\x9d\\xea\\xec\\xf7\\xe1\\x6c\\x14\\xea\\x88\\x93\\x0c\\x63\\x33\\xba\\xc0\\xf6\\xbb\\xd4\\x49\\xa9\\x3f\\x26\\xe5\\xfe\\xa0\\x77\\xf7\\x69\\x7f\\x3c\\x28\\x9d\\xcd\\x6d\\x00\\x27\\x9b\\x29\\x4e\\x1f\\x1d\\x86\\x33\\x21\\xe1\\xf0\\x30\\xd8\\x65\\x67\\x18\\x52\\x9f\\x50\\x38\\xed\\x13\\x06\\x3f\\xdf\\xed\\x62\\x70\\x97\\x1f\\xdc\\xef\\xfd\\xfe\\x8f\\x5d\\x4c\\x72\\x4b\\x70\\x7a\\x0f\\x5d\\xf1\\x5b\\x6c\\x46\\x8f\\xb0\\x31\\x79\\x34\\x50\\x2f\\x60\\xf0\\x8f\\x24\\xb8\\x38\\xc7\\xee\\x07\\x2d\\xc3\\xd0\\xfa\\x78\\xa4\\x38\\xa2\\x4e\\x2a\\xe1\\x9c\\x87\\xe3\\x10\\xc7\\x70\\xe2\\x02\\x70\\x64\\x3a\\x3c\\xf4\\xc7\\xc7\\x31\\x3e\\x24\\xff\\xce\\xb7\\x00\\x48\\x14\\x1d\\xbb\\xcb\\xd2\\xd8\\x7d\\x48\\xc7\\x0e\\xf9\\x8d\\x1d\\xbd\\x3b\\x4d\\xfb\\xeb\\x49\\xc6\\xeb\\xd3\\x81\\xf3\\x87\\xc1\\x27\\x24\\xb8\\xc8\\xeb\\x19\\xf0\\x9b\\x41\\x53\\x34\\x68\\x7f\\x3d\\x29\\xf1\\x7a\\x0e\\xfc\\x66\\x91\\x1f\\x4e\\x86\\x8c\\xf3\\x10\\x3c\\x36\\x63\\x1e\\x05\\x7e\\x8b\\x87\\x7e\\x43\\xe0\\x3c\\xa2\\xf7\\x59\\x29\\xaf\\xa3\\x8c\\xd7\\x27\\xfc\\x46\\x56\\x86\\x4f\\x48\\x70\\x91\\xd7\\x13\\xe0\\x37\\xb2\\x4c\\x8f\\x17\\x71\\x28\\xaf\\xa3\\x12\\xaf\\xa7\\xc0\\x6f\\x74\\xa7\\x70\\x64\\x3a\\x3c\\xf4\\x27\\x06\\x8e\\x2f\\xbd\\xd7\\x49\\xe1\\x2f\\xb0\\xf9\\xb3\\x2c\\x70\\xfe\\xb0\\xf5\\xf0\\x9e\\xbc\\x1e\\x36\\x2a\\xcc\\xac\\xa5\\x66\\xff\\xf5\\x60\\x96\\xe1\\x23\\x68\\x2b\\x83\\x6f\\x65\\x67\\x33\\x4e\\x61\\x3e\\xb9\\x8f\\x0c\\x41\\x3c\\x24\\x42\\x85\\xa7\\x34\\x11\\xf1\\x0a\\x2d\\x02\\x2e\\x18\\x21\\x98\\x4b\\x33\\x89\\x2a\\x91\\x82\\x57\\x6c\\x91\\xca\\x4b\\x2c\\x23\\xbe\\x94\\xd8\\x74\\x6b\\xac\\xc5\\x0d\\x00\\xba\\x04\\x88\\x87\\x78\\x75\\xb4\\xc9\\xa4\\x56\\x89\\x1b\\xfc\\x6c\\x27\\x34\\x4e\\x76\\x40\\xc3\\xe9\\x39\\x7c\\x15\\xbd\\x67\\x98\\xb6\\x1f\\x2e\\x69\\x59\\xcd\\x72\\xa5\\xec\\x40\\x47\\xbf\\x4b\\x86\\x6e\\x0e\\x4e\\xdb\\x0d\\x2b\\x0f\\x39\\x91\\x4a\\xf8\\x23\\x19\\x9a\\xd4\\xa3\\x9b\\xe2\\xda\\xf4\\x7e\\x4a\\x9c\\xb4\\x4f\\xd8\\xda\\x1c\\xec\\x0f\\xec\\x13\\x0a\\xa7\\xfd\\xce\\xe0\\xe7\\xd7\\x06\\xae\\x29\\xf6\\xfe\\xe7\\x32\\xfc\\xc2\\xdf\\x67\\x81\\xf3\\x26\\x19\\x3e\\xfc\\x99\\x9b\\xc1\\xdd\\x0c\\x4e\\xf3\\x86\\x50\\xf8\\x45\\x06\\x7f\\xc9\\xcd\\xfa\\xd4\\xed\\xbf\\x66\\xdf\\x93\\xd7\\xec\\xc6\\x3f\\x98\\xd9\\xfb\\x66\\xff\\x35\\x6f\\x96\\xe1\\x23\\x1f\\x6f\\x65\\xf0\\xad\\xfe\\xef\\x7f\\x2e\\xc3\\x2f\\x7c\\xec\\x3f\\x6b\\x10\\x7c\\x4f\\x98\\x4f\\x73\\x86\\xe8\\xa1\\xc4\\x53\\xe8\\xe7\\x75\\xe2\\x41\\xa9\\xe2\\x95\\x7d\\xb2\\x0f\\xfd\\xff\\x86\\xe7\\x9c\\x26\\x18\\x39\\x34\\xd3\\x73\\xfe\\x6b\\xbf\\x94\\x23\\x33\\x9d\\x4b\\x52\\x12\\x12\\xb9\\xad\\x26\\xb9\\x2d\\xc3\\xbf\\x0b\\xec\\x4b\\x9a\\x53\\x84\\x8e\\xd5\\x25\\x36\\x56\\x5b\\x03\\xc7\\x82\\xc1\\xcd\\x32\\x7c\\x64\\x32\\xb0\\xaf\\x28\\x9c\\xf6\\x15\\x83\\x5f\\x98\\x9c\\xf6\\xbe\\x60\\x23\\xa5\\x54\\x8e\\x5f\\x92\\xec\\xa2\\x61\\xe1\\x5d\\xc9\\xe6\\x79\\x57\\xda\\xfb\\x68\\x6e\\x10\\xca\\xc3\\xc3\\xd2\\x3a\\x1d\\x99\\xb1\\x4e\\x99\\x8c\\x0c\\x97\\x65\\xe4\\x43\\x70\\x11\\xf4\\x0c\\x47\\x1f\\x28\\x23\\xaf\\xc9\\x32\\x72\\x63\\x92\\x9f\\x97\\x55\\xa6\\x11\\x24\\xc3\\x47\\xe2\\x3b\\x19\\xbc\\x93\\x8d\\xeb\\xcf\\x84\\xf9\\x34\\xa7\\x88\\x1e\\xf2\\x3c\\xce\\x29\\xbf\\x27\\x80\\x8a\\x5d\\x56\\xfb\\xbf\\xe2\\xf5\\x94\\x12\\x90\\x08\\x9f\\xcc\\x74\\x1c\\x1e\\x9f\\xca\\x49\\x32\\x8b\\xbf\\x90\\xab\\x9f\\x6a\\xe3\\xcf\\xe4\\x36\\x5c\\x88\\xf7\\xdb\\x29\\xbc\\x5e\\x38\\xe9\\xfd\\x94\\xec\\xa0\\x7d\\xf9\\xa8\\xe4\\x23\\xec\\x9a\\xd1\\x97\\x2f\\x08\\xb9\\xe4\\x36\\xaa\\x6b\\x3c\\x26\\x8d\\xc9\\x3a\\xe1\\x97\\xd2\\x98\\xfc\\xd2\\xef\\xac\\xab\\x85\\xae\\xf1\\xc7\\x25\\xdf\\x5e\\xfc\\x0c\\xf9\\xfa\\x23\\xc1\\x49\\x5a\\x28\\x9d\\xc7\\x25\\x3a\\xfd\\x82\\xa4\\xb5\\x08\\x1f\\x49\\x74\\xa4\\x7c\\x24\\x32\\x4e\\x3f\\x1c\\x17\\x76\\x48\\x38\\x3b\\x66\\xc7\\x81\\x0b\\x10\\x33\\x29\\xf9\\x11\\x27\\x7d\\x7e\\x44\\x9a\\x43\\x84\\xf2\\x73\\x59\\x92\\xf7\\x3f\\x98\\xc1\\xcf\\xb7\\x84\\x1c\\x12\\x4a\\xe9\\x5c\\x96\\xf8\\xf9\\x8b\\xf0\\xa1\\xf4\\xad\\x0f\\xfd\\xe9\\xd0\\xf5\\x70\\x99\\xad\\x87\\xae\\xc0\\xf5\\xc0\\xf6\\xa5\\xf7\\xe4\\x7d\\x69\\xa3\\x25\\x50\\x9e\\xb3\\xbd\\xcd\\x2c\\xc3\\x47\\x0c\\x7e\\xf2\\x5c\\x82\\xdf\\x2a\\xc3\\x45\\x5b\\xef\\x09\\xf0\\xdb\\xd9\\x28\\x9f\\x34\\xd7\\x06\\x6d\\xcb\\xd3\\x4c\\x7e\\xea\\x02\\xf5\\xb4\\x63\\x82\\x93\\xa4\\xd1\\x76\\x3c\\x2d\\xb5\\xa3\\x92\\xf6\\x2b\\xf6\\xeb\\x57\\x4a\\x83\\xb6\\x83\\xd1\\x18\\xbe\\x1c\\x28\\x03\\x69\\xfe\\x0c\\xfa\\x8d\\x67\\xd8\\x37\\x36\\x07\\xca\\x68\\x0a\\xa7\\xf3\\x84\\xc1\\xcf\\x0f\\x06\\xae\\xdb\\x7b\\x84\\x46\\x92\\x47\\xd7\\xed\\x33\\xcc\\x0f\\x51\\xc4\\x74\\x2e\\xf6\\x9e\\x49\\x7e\\x6f\\x78\\x32\\xb0\\xff\\x96\\x08\\x59\\x7e\\x7a\\xac\\xc8\\xfb\\x71\\xe1\\x03\\x69\\x0c\\x3e\\xf0\\xd7\\x75\\x29\\x8d\\x67\\x25\\x3f\\x63\\x20\\x0d\\xb6\\x6f\\x67\\xc8\\xfb\\xf6\\x43\\x70\\x69\\x86\\x2e\\xc3\\xf6\\xed\\xf7\\xe4\\x7d\\x7b\\xa3\\x21\\x50\\xc6\\x33\\x1a\\x66\\x19\\x3e\\x92\\x18\\x28\\xb7\\x18\\x7c\\xb5\\xfc\\x8d\\x8b\\xa0\\xa3\\x7a\\x2a\\xf2\\xd3\\x53\\x45\\x9c\\x3d\\x32\\x0d\\x71\\x2c\\x1f\\x01\\x3f\\xed\\x80\\x5a\\xdd\\x63\\xc2\\x11\\x9a\\x77\\x23\\x73\\xba\\xdd\\xae\\xf5\\xd9\\xed\\x84\\xdb\\xf2\\x55\\x76\\xbb\\x0f\\xcc\\xcc\\xf7\\x19\\x76\\x7b\\x26\\x64\\x9a\\x34\\x96\\xff\\x60\\xb7\\xcf\\x92\\xc8\\x03\\x25\\x17\\xb6\\xe6\\xb8\\x4b\\x02\\xc4\\x8b\\x51\\x4f\\xbe\\x22\\xb5\\x87\\x67\\xe3\\xa2\\x2a\\xad\\x79\\xa9\\xd3\\x5f\\xde\\xa4\\xb6\\xa6\\xcc\\x92\\xed\\x43\\xec\\x13\\x9a\\xa3\\x83\\xce\\x9b\\xe7\\x25\\xf9\\x92\\x3e\\x43\\xbe\\x50\\x9d\\x89\\xe2\\x30\\x9d\\xe9\\xfc\\x8a\\xc0\\xb9\\x35\\x5d\\xa7\\xea\\xff\\x53\\xa0\\xce\\x45\\xf3\\x5f\\x50\\xf8\\x98\\xb4\\xd6\\x2f\\xce\\x58\\xeb\\x0c\\xe7\\x73\\x09\\x87\\x87\\x0b\\xa9\\x81\\xdf\\xa0\\x70\\x3a\\xc7\\x18\\x7c\\xd8\\x16\\x38\\xc7\\x58\\x6c\\xce\\x6e\\x16\\x57\\x03\\x4a\\x78\\x52\\x78\\x95\\xd2\\x0d\\x05\\x20\\xa7\\xf9\\xdd\\x60\\x06\\xcb\\x0a\\xfa\\xfb\\xe4\\xff\\x8a\\xbf\\x7b\\x27\\x01\\xc8\\x25\\x7e\\x2f\\x98\\x21\\x75\\x85\\xc8\\xd3\\x93\\x93\\x3f\\x01\\x3f\\x0f\\x1c\\xc5\\xb9\\x01\\x40\\xf6\\x53\\x1c\\x9b\\x84\\xf3\\xda\\x74\\x1c\\x98\\xe3\\xbd\\x41\\xb6\\x51\\xfa\\xd9\\x91\\x8c\\xfe\\x47\\xf4\\xdd\\xe7\\x01\\xc8\\x2f\\xe8\\xef\\x05\\xd2\\x77\\xef\\xa6\\xf8\\x0a\\x00\\x72\\x1b\\xfd\\xfd\\x45\\x09\\xff\\x43\\xfa\\xfb\\x55\\xef\\x0d\\x92\\x4f\\xf9\\x7f\\x95\\xb6\\xef\\xa9\\x8f\\x5f\\x12\\x57\\x19\\x77\\xd5\\xfb\\x92\\x6c\\x1f\\xd1\\x36\\xd2\\xfb\\x57\\x06\\xfa\\xfc\\x14\\xbd\\x5f\\x24\\x3e\\x1b\\xa7\\x62\\x5a\\xe9\\xb3\\x65\\xca\\xbe\\xa7\\xcf\\x85\\xf4\\x79\\x88\\xe5\\x60\\xc5\\x3c\\xa4\\x4e\\x9d\\x2d\\xd2\\x67\\x9b\\x4c\\xef\\x61\\xfa\\x9c\\x4e\\x9f\\x8f\\x03\\x90\\x06\\xfa\\x9c\\x09\\xf2\\x99\\x03\\x7d\\xce\\x9a\\x3a\\x27\\x50\\x7c\\x1b\\xf3\\x90\\x4d\\x9f\\x5f\\x01\\x20\\xbb\\x28\\x3c\\x67\\xca\\x57\\x49\\x9f\\x9d\\x53\\xbe\\x0d\\xfa\\x5c\\x40\\x9f\\x3b\\x00\\xc8\\x51\\xfa\\x9c\\xef\\x77\\xd6\\xf9\\xef\\xe3\\x52\\xff\\x1b\\xff\\xc8\\xed\\xde\\xeb\\xe4\\x1e\\x7e\\x1f\\x36\\xc3\\x55\\xda\\x97\\x4f\\x86\\x12\\x26\\x4b\\xc9\\x94\\x8f\\xaf\\x97\\xbf\\x05\\x9b\\xe1\\x65\\x06\\x8f\\x0c\\x8c\\xe5\\x7b\\x58\\xe8\\x23\\x36\\xfa\\xfe\\x37\\x18\\x3c\\x3e\\x30\\x56\\x8d\\x8d\\xd5\\x5a\\x79\\xac\\x9e\\x0c\\xf9\\x54\\xb2\\x65\\x3f\\x95\\xc7\\x6a\\xc4\\x7b\\x83\\x94\\xd0\\xf1\\xfc\\x1e\\x1b\\xcf\\x57\\x67\\x8e\\xe7\\x35\\x00\\xb2\\x85\\xe4\\x63\\x5e\\x1c\\x19\\xdf\\x79\\x08\\x69\\xc2\\xbc\\x38\\xd2\\x5e\\x2f\\xbc\\x2c\\xf4\\x92\\x30\\x0a\\xdf\\x4a\\x9f\\x97\\x01\\x90\\x95\\xf4\\xb9\\x93\\xd9\\xd4\\xf2\\xfb\\x8b\\xa6\\xe6\\x10\\x8d\\x23\\x64\\x7c\\xf5\\x2b\\x02\\xe3\\x08\\x29\\x4f\\x14\\xce\\x78\\xea\\xff\\x4d\\x20\\x9c\\x9d\\xc7\\xec\\x93\\xcf\\x63\\x9e\\x9c\\x13\\xd8\\x6f\\xac\\x4d\\x6b\\xe5\\xf7\\x9f\\xbc\\x3e\\xb3\\xdd\\xf3\\xbd\\x37\\xc8\\xdd\\x14\\xe7\\xfb\\x0c\\x47\\x33\\x13\\xe7\\xbf\\x89\\x87\\x1e\\x03\\x20\\x59\\x14\\xe7\\x19\\x49\\x66\\xdc\\x16\\x78\\xd6\\x06\\x88\\xf9\\xf9\\x15\\xdf\\x86\\x12\\xb0\\x7b\\xb2\\xa6\\xe7\\x94\\x92\\x72\\x25\\x25\\xf8\\x17\\x59\\x2e\\xcc\\x77\\x3a\\xb2\\x33\\x8d\\x91\\x19\\xb4\\x18\\x65\\x2e\\xcd\\xeb\\x2c\\x67\\xb4\\xf0\\xa5\\x94\\xd2\\x71\\x5a\\x9d\\x62\\x7a\\x5a\\x18\\xee\\xf1\\xa2\\xde\\x41\\x47\\xe3\\x85\\x03\\x0b\\x17\\xde\\x79\\xb9\\xbd\\x67\\xf4\\xae\\x16\\xfc\\x0d\\x55\\x46\\xc3\\x9a\\x32\\xc7\\xca\\xf9\\x99\\xa8\\xb8\\x67\\x20\\xdb\\xb9\\x71\\x55\\x67\\x99\\xa9\\xe3\\x9e\\x67\\x3a\\xfa\\xae\\x3d\\xb0\\x98\\xfb\\xfa\\x1c\\x77\\xe7\\x60\\x85\\x73\\x4d\\x4b\\x2e\\xda\\x54\\xbe\\xb8\\x24\\x55\\x1d\\x53\\xb5\\xea\\xf0\\xd2\\xa5\\xc7\\x57\\x39\\x4a\\xb6\\x3c\\xb4\\xa2\\x64\\x75\\x9d\\x55\\x57\\xd8\\x99\\x5f\\xd2\\x51\\x98\\x12\\xaa\\xb6\\xb9\\xab\\xba\\xd6\\x95\\x2e\\xbb\\xbf\\x2f\\xbb\\x70\\xf3\\xa5\\xfe\\x8a\\x35\\xb5\\xa6\\xb8\\xbc\\x8e\\x59\\xd6\\xe7\\x7f\\xb3\\x3e\\x96\\x79\\x6f\\x90\\x28\\xfa\\x4e\\x1a\\x7d\\x47\\xba\\xf3\\x87\\x79\\xf4\\xc1\\xd4\\x1a\\x57\\x86\\xf8\\xce\\x8a\\x61\\x10\\xf6\\xa1\\x4a\\xa9\\x5f\\x2b\\x65\\x5f\\xdb\\x75\\x32\\x46\\x63\\x0e\\x7e\\x2e\\xf9\\xe2\\xf5\\x33\\x62\\x0e\\xfe\\x93\\x2c\\x1a\\x63\\x35\\x93\\x31\\x2f\\x72\\x3d\\x8b\\x6c\\x7a\\x08\\x80\\xa4\\x52\\x3f\\xfb\\xcf\\xa4\\xb8\\x86\\x2f\\x66\\xf8\\xfb\\xa7\\xcb\\x9f\\xe9\\xf2\\x6b\\xba\\xfc\\xa1\\x34\\x29\\xfc\\xca\\xac\\xf2\\x88\\xc6\\x9e\\x51\\x7c\\xd3\\xac\\xf2\\xa9\\x12\\x80\\x1c\\xa2\\xcf\\x63\\xb3\\xca\\x27\\x1a\\x97\\x49\\xd7\\x67\\xf9\\x54\\x4c\\x32\\x7d\\xae\\xa6\\xcf\\x8f\\x00\\x10\\x0b\\xf5\\x73\\xde\\x60\\x3a\\xca\\x67\\x7e\\x71\\x18\\xb3\\xac\\xef\\xa7\\x85\\x5e\\x52\\x42\\x9f\\x5b\\xa8\\xca\\x40\\xe3\\xde\\x68\\xfd\\xc0\\x02\\x8f\\x1b\\x88\\x02\\x29\\x08\\x0d\\x89\\x54\\x20\\xd8\\xe8\\x9b\\xc5\\x89\\xf5\\xfc\\xb4\\xe2\\x81\\xf1\\x71\\x5a\\xcd\\xdc\\x20\\x5e\\x01\\x36\\x64\\x53\\xf2\\x91\\x36\\x7a\\x57\\xd0\\x3e\\x2d\\x83\\xbc\\x5c\\x36\\x8e\\x96\\x0e\\xdc\\x93\\xd3\\x53\\x97\\x8e\\x9e\\x45\\xb5\\xbb\\x47\\xda\\xf7\\x5c\\xdd\\x53\\x5c\\xbc\\xe7\\xea\\x9e\\xde\\x07\\xb7\\x95\\x3d\\x8b\\xac\\x55\\x7d\\xee\\xf6\\x6d\\x35\\x89\\x89\\xd5\\xdb\\xf6\\x27\\xe5\\x35\\xa6\\xd7\\x1c\\x58\\x5e\\xd0\\x79\\xe2\\xb5\\xf5\\xa9\\xeb\\xbe\\x7d\\xa2\\xb3\\x68\\xcd\\xb1\\x96\\xec\\x8e\\x32\\xb3\\x5c\\x39\\xd0\\xe7\\xd3\\xa6\\x32\\xa8\\x7b\\x56\\x99\\xf4\\x9f\\xe2\\xaa\\x5f\\xa4\\x63\\x26\\xca\\xa4\\x3f\\x50\\xbd\\x74\\x70\\x50\\x3a\\x2f\\x94\\xfb\\xba\\xcd\\x2f\\x46\\xfa\\x35\\xcc\\x43\\xfd\\x7f\\x15\\x33\\xfd\\x3f\\x42\\x3d\\xd7\\x49\\xf1\\x1b\\x28\\xfe\\xc3\\x00\\xe4\\x04\\xc5\\xff\\x13\\xfb\\x8e\\x05\\xfc\\x62\\x7e\\x3f\\x93\\x63\\x7e\\x47\\x22\\x02\\xcf\\x94\\xd8\\xd9\\x80\\x41\\x3e\\x1b\\x28\\xf3\\xde\\x37\\xc3\\xaf\\xcf\\xce\\x06\\xde\\x96\\xcf\\x06\\xca\\x8e\\x05\\xee\\x17\\x8c\\x46\\x92\\x4c\\x63\\x10\\x6e\\x99\\x11\\x37\\xc0\\x68\\xbc\\x29\\xd3\\x18\\xdc\\x1b\\x18\\xff\\x3c\\x9d\\x46\\x3f\\x28\\x67\\xac\\xfd\\xe9\\x34\\xfa\\xf9\\xc0\\xf8\\x65\\xb6\\x77\\x26\\xcb\\x7b\\x67\\x99\\xf7\\x0e\\xd4\\x25\\xf1\\xd1\\x15\\x70\\x46\\xf1\\xb6\\xdc\\x1f\\x65\\xc3\\x01\\x6d\\x41\\x7f\\x26\\x7a\\x3c\\xc4\\x03\\xe6\\x61\\x0e\\xad\\x7f\\xb6\\x8c\\xe8\\xb9\\x1e\\xfa\\x4c\\xe8\\xf3\\xff\\x7a\\x3f\\x57\\x9e\\x51\\x8c\\x82\\x99\\x84\\x89\\x7a\\x18\\x09\\x23\\x6f\\xd3\\x7e\\x1e\\x15\\xea\\xb9\\x9b\\x8a\\x3f\\x4a\\x71\\x2c\\x3c\\x0c\\xf7\\x4e\\x48\\xfb\\xc2\\x84\\x6f\\x5f\\xf0\\xd5\\xf2\\xc3\\x3c\\xea\\x9f\\xd2\\x3f\\x68\\x9b\\x33\\xa5\\x7e\\xdb\\x36\\xa3\\xdf\\x44\\xdb\\x63\\x0b\\x3d\\xe7\\x9e\\x2f\\xe1\\x9c\\x9f\\x71\\xce\\xbd\\x40\\xb8\\x93\\xca\\x2a\\xa6\\x1b\\xf2\\xf0\\xb0\\x89\\x8d\\xfd\\x79\\xe1\\x4e\\xe9\\x2c\\xb9\\x9c\\xfd\\xfe\\x09\\xfd\\xdd\\x7b\\xb7\\x28\\x57\\xf8\\x76\\x5f\\xdc\\x01\\x7a\\x6b\\xf2\\x38\\xdc\\xcf\\x66\\xed\\xfd\\x3e\\x9a\\xff\\xcd\\xfd\\x21\\x26\\xe3\\xb4\\xb2\\x8c\\x2b\\xf3\\xee\\x9f\\x11\\xdf\\xf3\\x9f\\xee\\x35\\x30\\x99\\xf2\\x96\\x24\\x53\\x44\\x1a\\xb7\\x80\\x9f\\xb6\\x42\\x79\\x59\\x49\\xfb\\x40\\x94\\x53\\x5f\\xa3\\xcf\\x7d\\x42\\x0a\\xb9\\x8d\\xae\\xc1\\x37\\xe9\\x73\\x2c\\x00\\xf9\\xb5\\xb2\\x0c\\x9b\\x91\\x86\\xd2\\x78\\x82\\x74\\xa1\\x56\\x69\\xee\\xb4\\x4a\\x7c\\x38\\x44\\xf9\\xcd\\xc7\\x62\\x33\\x8a\\x92\\x70\\xb2\\x20\\x8d\\xcd\\x9e\\x34\\xdf\\x77\\xba\\x84\\x4c\\xb2\\x89\\x9e\\xcf\\xff\\x94\\x9e\\x69\\xfc\\xe0\\xaf\\x27\\xa5\\x31\\x3c\\x29\\xef\\xed\\x87\\x84\\x3c\\x52\\x47\\x1a\\xb1\\x19\\xae\\x33\\x1c\\xd5\\x45\\x09\\xe7\\xa2\\x8c\\xb3\\x4e\\xc8\\x9b\\xba\\x93\\x25\\xe2\\x78\\x67\\xe2\\x1c\\x15\\xf2\\xa6\\xee\\x81\\x88\\x38\\x11\\x33\\x71\\xa6\\xeb\\x93\\xd5\\x42\\x2f\\x39\\x49\\xdb\\x7d\\x6d\\x56\\xfd\\x36\\x01\\x80\\x3c\\x43\\xf7\\xb5\\xf7\\xa5\\x7d\\x6d\\xde\\x8c\\x7d\\x4d\\x0d\\x40\\x9e\\xa2\\x32\\xfc\\x93\\x59\\x65\\xf8\\x74\\x9a\\xff\\xc7\\xf1\\xfc\\xff\\xe5\\x7d\\xb8\\xff\\x74\\xef\\x86\\x9e\\xa1\\x51\\xbe\\x6e\\x05\\xf0\\x9d\\x97\\x51\\xf9\\x79\\xd0\\x6f\\xbe\\xfe\\x9f\\xc5\\x29\\x2f\\xf2\\x5e\\x27\\x1d\\xfc\\xdf\\xb0\\x19\\x95\\x4b\\xfa\\xc7\\x4d\\x94\\x2e\\xf1\\x99\\x2e\\xd1\\x78\\xce\\x7b\\x83\\xf4\\x90\\xf9\\x98\\x87\\x73\\x20\\x3f\\x53\\xf9\\x7f\\x8e\\xf1\\x9d\\x12\\x28\\xff\\xd9\\x98\\x24\\xc9\\x63\\xd2\\x0f\\xf3\\x66\\xc8\\x35\\x36\\x26\\x6f\\xc8\\x63\\xd2\\xff\\x59\\xa0\\xac\\xef\\xf2\\x5e\\x27\\x9b\\x68\\x3c\\xcc\\x4f\\x65\\x9b\\x60\\x93\\x44\\xe3\\xff\\xa3\\xee\\xdd\\xe3\\xaa\\xaa\\xd2\\x3f\\xe0\\x67\\x5d\\xce\\xe1\\x2a\\x82\\xf7\\xd4\\xec\\xe0\\xf1\\x16\\x1c\\x90\\xfb\\xc5\\xd4\\xe0\\x5c\\x40\\x94\\x10\\xf1\\x06\\x66\\xc6\\x01\\x8e\\x82\\x02\\x07\\xe1\\xa0\\x66\\x66\\x66\\x56\\x8a\\x78\\xbf\\x00\\x5e\\x11\\x51\\x11\\x51\\x37\\x64\\x66\\x8e\\xd3\\x38\\x4d\\x39\\x4e\\xb9\\x9d\\x6a\\xaa\\x29\\xbb\\x5a\\x8d\\x35\\x66\\x8d\\x63\\xd6\\x58\\xe9\\xe1\\xfd\\xec\\xb5\\x9f\\x73\\x38\\x40\\x4e\\xf3\\xfe\\x3e\\xef\\x3f\\xaf\\x7e\\x36\\xcf\\xda\\x7b\\x3f\\xeb\\xfb\\x7d\\xd6\\xb3\\xd6\\x7a\\xd6\\xda\\x6b\\x5f\\x4e\\x99\\xbb\\x6c\\xdf\\xf2\\x89\\xe2\\xbe\\xdf\\x37\\x2a\\x86\\xef\\x00\\x15\\x03\\xdf\\x91\\x11\\x7d\\x55\\x3c\\xc7\\xf0\\x01\\x3e\\xaf\\x79\\xa7\\xdb\\x73\\x0c\\x6a\\x5f\\x6c\\x74\\x8f\\xef\\xa5\\xb7\\xba\\x3f\\xaf\\xa9\\xf6\\xf9\\x3e\\x6e\\x9c\\xc2\\xf6\\x9f\\xba\\x3d\\x3f\\xa0\\xe2\\xfc\\xc5\\x8d\\xd3\\xb5\\x3c\\xff\\xcb\\x7b\\x6c\\xbf\\xf5\\xbe\\x4d\\x7e\\xfb\\x35\\x3e\\x4b\\x99\\xeb\\x10\\xf5\\xdb\\x1d\\x8f\\xb4\\x5f\\xe3\\xb1\\x4a\\x7b\\x20\\x7d\\xc4\\xbe\\x38\\xef\\x35\\x88\\x8e\\x50\\xce\\x0b\\x8e\\x3e\\xe2\\xbd\\x33\\x46\\x3b\\xde\\x3b\\x13\\x79\\x34\\x3f\\xd3\\x11\\x4a\\x1e\\x85\\xe3\\xcd\\x58\\xf0\\x6e\\x65\\x54\\x8a\\xc5\\x7b\\xbf\\xed\\xd7\\xf8\\x54\\xaf\\x38\\x3a\\x02\\xbe\\xc0\\xb2\\xfe\\x5b\\x7d\\xce\\x86\\x76\\x3c\\x67\\xf3\\x94\\xb8\\x26\\x51\\xec\\xfc\\x05\\xd7\\x06\\xee\\x51\\xcb\\x8a\\x76\\x8a\\xb9\\xa6\\x78\\x4e\\xf6\\x43\\x7c\\x7e\\x64\\x78\\xb7\\xe7\\x64\\xd5\\x31\\xe9\\x80\\x7b\\x4c\\x2a\\xed\\xdf\\xfd\\xf9\\x11\\x75\\xce\\xaa\\x73\\xe3\\x14\\x42\\x70\\xb7\\x76\\xf4\\x5b\\xef\\xf7\\x74\\x9d\\xf7\\xee\\x87\\x43\\x77\\xc1\\xb8\\xe9\\xbe\\x87\\xbf\\x1f\\xea\\x3a\\x3f\\xfb\\xd1\\xde\\x0e\\x47\\x94\\xfa\\x15\\xb6\\x7c\\x8c\\x7e\\x79\\xbe\\x1b\\xce\\x3a\\x77\\x1b\\xf8\\x41\\xb5\\x65\\x50\\xe7\\x36\\xb0\\x11\\x80\\x4f\\x12\\x18\\x97\\x11\\xe3\\xb2\\xc0\\x60\\x1e\\x18\\x1b\\xc5\\x7c\\x58\\xc1\\xf8\\x49\\xc5\\x30\\x71\\xb5\\x7e\\x10\\x63\\xa6\\x73\\x92\\xa6\\x9f\\x18\\xf7\\xc6\\x88\\xe7\\xfb\\xde\\xa4\\x1c\\xef\\xc5\\x4e\\xe2\\x07\\xf8\\x18\\x3a\\x42\\x99\\xa3\\x29\\xc7\\xc9\\x16\\xf7\\x33\\x38\\x83\\xc5\\x58\\x9e\\xa2\\xae\\x0d\\x39\\x27\\xf1\\x2f\\x44\\xfe\\x4b\\xa8\\xf7\\x96\\x38\\x1e\\xef\\x9c\\xc4\\x3f\\x11\\xf9\\xbf\\xc3\\xe3\\x17\\x70\\x9c\\x6d\\xf2\\x18\\x67\\xbd\\xa0\\x99\\x7f\\x8a\\xe3\\x6c\\x93\\xc7\\x38\\xab\\x1c\\xdf\\xef\\x11\\x3b\\xcf\\xb9\\xe3\\x5e\\x13\\x3f\\x4f\\xb2\\x30\\x76\\x66\\x75\\x8a\\x9d\\xab\\xdc\\xef\\x24\\x36\\xf1\\x57\\x21\\x50\\x8d\\x4a\\x81\\xee\\xf1\\x1d\\x80\\xff\\xd3\\xeb\\x3b\\xf7\\x7b\\xc0\\x3b\\xda\\x7f\\x10\\xf3\\x1a\\xa5\\xbf\\xe4\\x78\\xe0\\xfc\\x43\\xdb\\xe2\\x7e\\xef\\x70\\xc7\\xbf\\xfb\\xab\\xfd\\xa5\\xbf\\x7a\\xdf\\xff\\xb6\\xb0\\xe5\\x63\\x37\\x46\\x5d\\xfb\\x35\\x32\\x01\\x31\\x26\\xe0\\x7d\\xff\\x5b\\xc2\\x96\\x9d\\x6e\\x8c\\xba\\xaf\\xb5\\x2a\\x86\\xb6\\x23\\x8e\\xff\\xce\\x9b\\xbb\\x31\\x6a\\x81\\x90\\x58\\xc4\\x88\\xf5\\xb0\\xe3\\x94\\xf6\\x4f\\x6e\\x8c\\x5a\\xe7\\x4d\\x55\\xc3\\x23\\x86\\xa8\\xef\\x35\\x8f\\x76\\xe3\\xd4\\xb4\\x7f\\x4f\\xe2\\x10\\x27\\xae\\x93\\x5f\\xbe\\x73\\xe3\\xd4\\xfc\\xeb\\x07\\xc4\\xe9\\xe8\\x13\\xa2\\x3e\\x5c\\xef\\x6b\\xc3\\x48\\xf5\\x7d\\x6d\\x82\\xf5\\xd2\\xe5\\xbd\\x6d\\x51\\x47\\xae\\xf7\\x43\\x85\\xee\\xd3\\x70\\x0f\\xc1\\xba\\xea\\xf2\\x9e\\xa8\\x5a\\x6f\\x9f\\xb8\\xed\\x7b\\x05\\x40\\xcc\\x27\\xa8\\xc7\\x7c\\x42\\xb5\\x6f\\x97\\xdb\\xbe\\x57\\x6e\\xf7\\x52\\x7d\\xd5\\xcb\\x63\\xcc\\xf3\\x0e\\x76\\x63\\xec\\x04\\x46\\x96\\x22\\xc6\\xd2\\x4e\\x18\\x9f\\xba\\x31\\x76\\x42\\x82\\x8a\\xe1\\xb9\\xe6\\xe7\\x9d\\xee\\xc6\\x38\\xd9\\x7e\\x93\\xa4\\x21\\x46\\x9a\\x27\\x86\\x97\\xaf\\x1b\\xe3\\xe4\\x75\\x2f\\x15\\xc3\\xeb\\xd7\\xed\\x90\\xdb\\xdf\\x21\\x53\\x10\\x63\\xca\\x5d\\xec\\x90\\xdf\\xec\\xa9\\x62\\xf4\\x44\\x0c\\xe1\\xe7\\x89\\x6e\\x3f\\x8b\\x39\\x40\\x17\\x3f\\xd7\\x76\\xf2\\x33\\xce\\x05\\x60\\x84\\x32\\x17\\xe8\\xec\\x65\\x9c\\x13\\x9c\\x74\\xb6\\x89\\xeb\\x65\\xd7\\x78\\xdd\\xcc\\xdf\\xee\\xf6\\x8e\\xc1\\x73\\xce\\x26\\x71\\xfd\\x29\\xc6\\x6b\\xd1\\xaf\\xbe\\xf0\\x18\\xeb\\xcf\\xb9\\xf3\\x36\\xf1\\x97\\x45\\xbf\\x22\\x1e\\xfd\\x4a\\x1d\\xeb\\x9f\\xc1\\xb1\\x5e\\xd1\\xf9\\x03\\x04\\xa9\\x16\\x04\\x75\\x9e\\xe3\\x66\\xb9\\x71\\x1a\\x60\\x4d\\xb7\\x77\\x21\\x54\\x9c\\x20\\x37\\x4e\\x03\\x54\\x81\\x4e\\xc5\\xd1\\x79\\xe2\\x7c\\x2a\\xfa\\xe7\\x48\\xec\\x9f\\xdf\\xa8\\xd7\\x1d\\x1e\\xfd\\x53\\xc1\\xf9\\x4c\\x7b\\xd4\\x35\\xf7\\x20\\x3b\\xae\\x0d\\x50\\x7d\\xac\\x8e\\xcf\\xed\\x37\\x84\\x2d\\x1f\\xbb\\x31\\xea\\xda\\x3f\\x17\\xfd\\x93\\x78\\xf4\\xcf\\xef\\x85\\x2d\\xbb\\xdc\\x18\\x75\\x5f\\x74\\xae\\x6b\\xc5\\x8e\\x36\\xd1\\x3f\\x55\\x8c\\xda\\xf6\\x5b\\xa2\\x7f\\x12\\x8f\\xfe\\xa9\\xd8\\xf1\\xbc\\xf6\\x55\\x37\\x46\\xed\\x4f\\xdd\\xfb\\x95\\xf0\\x8b\\xe8\\x9f\\x23\\xb1\\x7f\\xfe\\x53\\xf4\\x4f\\xe2\\xd1\\x3f\\x55\\xbf\\xfc\\xcb\\x8d\\x53\\x73\\xf5\\x47\\xc4\\xf9\\xb1\\x03\\x47\\xa9\\x63\\xd7\\xb7\\x03\\x44\\x9f\\x7b\\x02\\xfb\\xa7\\x52\\xd7\\x41\\xee\\xe7\\xcf\\x14\\x67\\xfa\\xba\\x70\\x95\\x3a\\x77\\xbd\\xc7\\x0c\\x23\\x60\\xd7\\xf2\\x81\\x04\\x6b\\xbe\\xd3\\xfb\\xcc\\xea\\x5a\\xd1\\x39\\xf7\\x5a\\x51\\x13\\xaf\\xea\\xd6\\x06\\xc4\\x35\\xb4\\xb6\\xcc\\xfd\\x1e\\x4b\\x13\\xff\\xb6\\xbd\\xd3\\x55\\x99\\x78\\x16\\xbd\\x4d\\xcc\\x77\\x5d\\x38\\xcd\\x7c\\x4f\\xb7\\x76\\xf8\\x86\\xb3\\x4d\\x5c\\x9b\\x8f\\x50\\xae\\xcd\\x15\\x1d\\x8d\\xf8\\xc5\\x1a\\xb7\\xd9\\x62\\xad\\xc6\\x59\\x2f\\xd6\\x6a\\x5c\\x73\\x9a\\x66\\xfe\\x69\\xfb\\x2d\\x7c\\x66\\xea\\x96\\x6b\\x4e\\xe3\\xdc\\x2b\\xd6\\x47\\x5c\\xcf\\x72\\x37\\x73\\xb9\\xfd\\x3f\\xa8\\xf3\\x1f\\xd4\\x51\\xe7\\x46\\x1f\\xba\\x71\\x9a\\xf8\\x05\\x32\\x0f\\xfb\\xd8\\x3c\\xcf\\xb9\\x91\\x18\\x33\\xa6\\xa0\\xce\\x4b\\xdd\\xc6\\x0c\\x05\\xe7\\x5b\\x6f\\xe6\\xbe\\xc6\\xdb\\xd1\\xfe\\x13\\x29\\xc5\\x7e\\x5f\\xea\\x81\\x73\\x49\\x8c\\x19\\x53\\xd4\\x36\\x79\\xa5\\xd3\\x98\\x01\\x20\\x6c\\xb9\\xe1\\xc6\\xa8\\x6b\\xbf\\x4e\\x1e\\x41\\x8c\\x47\\xb0\\x4d\\x7e\\x2b\\x6c\\xd9\\xe9\\xc6\\xa8\\xfb\\xb8\\xf3\\x98\\xa1\\xd8\\xf1\\x07\\xef\\x7b\\xdc\\x18\\xb5\\xa0\\x51\\xdf\\x29\\xa6\\x1d\\xf3\\x1f\\xc5\\x8e\\xa3\\x62\\xcc\\x50\\x31\\x6a\\xbf\\xef\\x3e\\x66\\x08\\xbf\\x78\\x9b\\xdd\\x38\\x35\\xed\\xff\\x51\\x9f\\x71\\xa7\\x1d\\xcf\\x04\\xaa\\x7e\\xf9\\xce\\x8d\\x53\\xf3\\x65\\xf7\\xb6\\x2d\\xea\\xc9\\xf5\\x2d\\x06\\xd1\\x26\\xd7\\x92\\x32\\x77\\x7d\\xf5\\x72\\x7f\\x93\\xa1\\x95\\x61\\xc5\\xb9\\xea\\xcd\\xf5\\xfe\\xb8\\xd2\\x26\\x97\\xdc\\xe3\\xae\\xbd\\x20\\xd7\\xc8\\x21\\x32\\x74\\x3c\\x0f\\xae\\xcc\\x3f\\xcf\\x89\\xf9\\xcd\\x76\\xbc\\x6e\\x5f\\xd5\\xed\\x99\\xbf\\xc5\\xed\\xd7\\xf8\\x31\\x31\\x77\\xac\\xc1\\x35\\x91\\xce\\xef\\xad\\xab\\x18\\x7a\\x37\\x86\\xb1\\xbd\\xb6\\xdb\\x77\\x4d\\x54\\x8c\\xcb\\x6e\\x0c\\xe3\\xc6\\xce\\xef\\xc6\\xab\\x18\\xe7\\xdc\\x18\\x4d\\xfc\\xcf\\xdd\\xe6\\x20\\x02\\x43\\xb4\\xa7\\x1a\\x77\\xac\\xec\\xda\\x9e\\x54\\x9c\\x2c\\x37\\x4e\\x03\\x6c\\xee\\xf6\\xdd\\x13\\x15\\x27\\xd0\\x8d\\xa3\\xc4\\xca\\xae\\xef\\xd1\\xe7\\x3b\\x9b\\xf8\\x39\\x65\\xce\\xad\\xe0\\x88\\x98\\xfe\\x37\\x71\\x7c\\xb1\\x73\\x2f\\x3f\\xc6\\x9b\\xdd\\x79\\x9b\\xf9\\x1b\\xdd\\xfa\\xc6\\x5a\\x67\\x13\\x37\\x8a\\xbe\\x1a\\x8f\\x79\\xcf\\xe3\\xf3\\x01\\x4d\\xfc\\x3e\\x31\\x5f\\x9b\\x89\\xc7\\x37\\xb9\\xe7\\x7b\\x46\\xaf\\xd3\\xee\\x67\\x9d\\x9b\\xf8\\x15\\x92\\x82\\x31\\x22\\x45\\xf2\\x7c\\x5e\\x7a\\xa1\\xfb\\x59\\xe7\\x26\\x7e\\xaa\\xbd\\xd3\\x93\\x7b\\xf8\\xae\\xed\\xd3\\xa2\\x2e\\x6b\\xb1\\x2e\\x1d\\xdd\\xd6\\x69\\x4e\\xb4\\x5f\\xd3\\xa8\\x73\\xd5\\x3a\\x75\\xfd\\x6d\\x91\\xfb\\xb9\\x6f\\xcd\\xd3\\xa2\\x0e\\x6b\\xb1\\x0e\\x57\\x77\\x5b\\x47\\x51\\xf3\\x5e\\x50\\xf3\\x8a\\xef\\x1b\\x74\\xbe\\x5f\\xa3\\x62\\x9c\\x73\\x63\\x34\\xf1\\x17\\xbb\\xc5\\x3a\\x81\\x21\\x62\\x5d\\x9d\\x2b\\x26\\x74\\x8b\\x75\\x2a\\x4e\\x96\\x1b\\xa7\\x01\\x56\\x76\\x1b\\xef\\x54\\x5b\\x7e\\x71\\xe3\\x34\\xc0\\xaa\\x6e\\xf1\\x70\\xad\\xb3\\x5e\\xf3\\xb4\\x78\\x67\\xab\\xd6\\x1d\\xc7\\x3a\\xbd\\xed\\xa0\\xd6\\x89\\xe6\\x41\\xbe\\x05\\xfd\\xa1\\xe8\\x6c\\x54\\xd7\\x34\\x9c\\x6d\\x62\\x4d\\xc3\\xb5\\x46\\xd7\\xcc\\xff\\xd4\\x0d\\xdf\\xec\\xf4\\x13\\x6b\\xae\\xae\\x6b\\x90\\x66\\xcd\\xa1\\xf6\\x7c\\xc4\\xcf\\xef\\x74\\x9f\\xec\\x35\\x37\\x4e\\x13\\x3f\\x21\\xe6\\x35\\x4a\\x59\\xa6\\x78\\x5e\\xcb\\x88\\xba\\x7d\\xd8\\x15\\x4b\\xbb\\xd5\\xad\\x8a\\x33\\xc5\\x8d\\xd3\\x00\\x4f\\x92\\x5c\\xc4\\xc9\\xed\\x74\\x4d\\x74\\xdb\\x8d\\xd3\\x00\\x35\\x9d\\xdf\\x13\\x00\\x2a\\xda\\xda\\x65\\xf1\\x8d\\xa9\\x48\\x38\\x9a\\xd4\\xb3\\x2f\\xf1\\x61\\xf7\\x8f\\xa2\\xde\\x3e\\x9c\\x10\\x6f\\x86\\xdf\\x32\\x1b\\xee\\x25\\x7e\\x81\\x9d\\x69\\xc4\\xd7\\xb1\\xc6\\x4f\\x02\\x1f\\x1f\\xd7\\x1b\\xc0\\xde\\xde\\xe4\\x61\\xfc\\x5d\\x87\\x41\\xea\\xb7\\xa9\\xee\\xbf\\xbb\\xb2\\xf8\\xde\\x81\\xb7\\xb7\\xeb\\xe6\\xfb\\xa0\\x4e\\xba\\x1d\\x6a\\x5a\\xad\\xfa\\xb3\\x0b\\x9e\\xba\\x39\\x39\\x49\\x01\\x61\\xa1\\xc3\\x83\\x82\\x82\\x7a\\xdf\\xaf\\x57\\x5f\\x21\\x24\\xfa\\x20\\xbd\\xeb\\x39\\xf4\\x58\\xfc\\x69\\x52\\xfc\\x5e\\x55\\xb4\\xeb\\x83\\xa6\\xf1\\x41\\xf8\\xb1\\x34\\x7e\\xf9\\xb5\\x66\\xef\\xb8\\xed\\x05\\x79\\x7b\\xcb\\xc6\\x8f\\x5b\\x58\\x9f\\x6f\\xdd\\x14\\xdb\\xde\\xfe\\xd2\\x6b\\xb7\\xf3\\x87\\xa6\\x96\\x3e\\x34\\x3a\\x7d\\x7c\\x44\\xaf\\x61\\x4b\\x1f\\xce\\xb0\\xa7\\x0e\\xe5\\x6f\\xff\\x12\\x5e\\x6e\\x34\\x4f\\xdb\\xfa\\x17\\x47\\xdf\\xc7\\xde\\xd8\\x9c\\x95\\x3c\\x9e\\xb0\\x9a\\x9a\\x9a\\xdb\\x4d\\x93\\xd7\\x17\\x3f\\xd8\\xef\\xfe\\x44\\x3d\\xf9\\xd1\\x38\\x3d\\xa9\\x64\\xc3\\x64\\xd1\\x9e\\xbe\\x15\\xbe\\x13\\xef\\xb2\\xc3\\x48\\xf2\\x3a\\x19\\x4d\\x53\\x89\\x16\\x92\\x23\\x56\\xa9\\x11\\x99\\xa6\\xba\\x02\\xec\\x2a\\x57\\x1b\\x39\\xec\\xac\\xe7\\x9f\\x2a\\xed\\x88\\x5c\\x12\\xe3\\xc1\\x45\\xaa\\x03\\x2f\\xb5\\x4e\\xbc\\x5c\\x3a\\x8d\\xce\\x3a\\x7e\\x5a\\xb4\\xa3\\x6f\\xc5\\x75\\xdc\\x45\\xf2\\x8b\\x7a\\x9f\\xc5\\x59\\xc7\\x9b\\x44\\x1b\\x0c\\xc1\\xe3\\xff\\x54\\xef\\x6f\\x38\\xeb\\xb8\\x24\\xf4\\xaf\\xe3\\xf1\\x7f\\xab\\xf7\\x51\\x9c\\x75\\x1e\\xef\\xb8\\x78\\x91\\x8b\\x50\\x2d\\x8e\\x17\\x3a\\xeb\\xf8\\xe3\\x42\\xff\\x06\\x1e\\xdf\\xa6\\xde\\x57\\x71\\xd6\\xf1\\xaf\\x3c\\xae\\x4b\\x2f\\xd2\\x51\\x78\\x5d\\x5a\\xc7\\x17\\x79\\x5c\\x97\\x5e\\x24\\x2f\\xaa\\xd7\\xd3\\x0a\\xaf\\xd0\\xff\\xb8\\x13\\xef\\x3a\\xb7\\x3d\\x3f\\x74\\x3a\\xae\\xe8\\x8f\\xf4\\xd4\\x87\\x4f\\xdc\\xfa\\x23\\x3d\\xf5\\x95\\xf3\\xe2\\xdd\\xae\\x3a\\x71\\xaf\\x4a\\xdc\\x6b\\x54\\x8e\\xb7\\xab\\xf7\\x7b\\x5e\\x74\\xd6\\xf1\\x10\\xa1\\xff\\x35\\x1e\\xf7\\x53\\xd7\\x11\\x9d\\x75\\xfc\\x17\\xa1\\xff\\x77\\xb4\\x5f\\xbd\\xbf\\x1e\\xe4\\xac\\xe3\\xff\\x12\\xfa\\x57\\xf1\\xb8\\x7a\\x9f\\x7c\\x84\\xf3\\x01\\xbe\\x46\\x99\\x1f\\x91\\x71\\x6a\\x5d\\xc0\\x1f\\xda\\x1b\\x30\\x76\\x37\\x60\\x1f\\x52\\x74\\x9e\\x51\\xe6\\x3e\\x64\\x3c\\xea\\xec\\xec\\xa6\\x23\\xde\\x5f\\x16\\xd7\\xe7\\x13\\x45\\x9f\\xea\\x05\\xc0\\x93\\xf8\\x18\\xe8\\xa7\\x7e\\x5b\\x4e\\xdb\\xf1\\xcb\\xf4\\xc4\\x87\\xa8\\xdf\\xd1\\xd0\\x68\\x06\\x88\\xaf\\xb1\\xcd\\x06\\x4a\\xfb\\xd3\\xf4\\xfe\\xfd\\xfb\\xeb\\xfb\\x0f\\x1d\\x1a\\x14\\x14\\x14\\x34\\x2a\\x38\\xd0\\x57\\x3b\\x38\\x94\\x04\\xf7\\x0d\\x76\\x7d\\xbc\\x36\\xd8\\xf5\\x19\\x36\\x12\\x14\\xec\\xfa\\x64\\x2f\\xdd\\xe0\\xfc\\x2b\\x99\\x64\\xad\\x29\\x8c\\x8f\\x2b\\xac\\xb5\\xde\\xb9\\xbd\\x65\\xcb\\x4b\\x24\\x52\\x39\\x34\\x66\\x5a\\xdc\\x3d\\x03\\xe3\\xa6\\x8e\\x61\\xfa\\xa7\\x23\\xb3\\x97\\xa6\\x4d\\x78\\xe2\\xe1\\x18\\xa6\\xaf\\x59\\xb1\\xc2\\x39\\xd9\\xb9\\x7e\\x48\\x94\\x71\\x98\\xde\\x14\\x1b\\x8c\\xdf\\xbf\\x9b\\xa2\\x91\\xfe\\xbb\\x8d\\xfd\\x7e\\xc3\\x46\\x7d\\x77\\x1b\\xa3\\x99\\x87\\x8d\\x53\\xae\\x13\\x5f\\xc7\\x0b\\xcb\\xc4\\x6f\\x51\\x3b\\xc7\\xbd\\xf3\\xce\\x4b\\xd7\\xaf\\x13\\xdf\\x8c\\x85\\x13\\xf5\\xfa\\x89\\x0b\\x33\\x78\\xe6\\x7f\\xc6\\xda\\x77\\x59\\x73\\xeb\\xcb\\x1f\\xe4\\x99\\x35\\x7f\\xf9\\xcb\\x9d\\x0f\\xef\\xbc\\x1b\\x9e\\x31\\x2f\\x31\\x21\\x3f\\x4d\\xfd\\x6d\\xda\\xff\\x1f\\xd8\\x48\\xc4\\xf3\\x2a\\x11\\x1a\\x09\\x7a\\xc0\\xc8\\xa4\\x61\\x5a\\xf7\\x37\\xee\\x40\\xa3\\xe1\\x39\\xc0\\x79\\x3f\\x25\\xea\\xf5\\x77\\x7d\\xe2\\x2e\\xd0\\x4b\\x3b\\x48\\xfd\\x75\\x21\\xf1\\x85\\xbb\\xbe\\xc1\\x41\\xc1\\x74\\xa9\\xf3\\x87\\xd3\\xa7\\x4e\\xb1\\xc7\\xef\\x3c\\x48\\xfc\\x68\\xcb\\x9d\\x69\\xb4\\xa5\\x86\\x96\\xd4\\x3a\\x43\\x81\\xb4\\xff\\x02\\xa0\\xb4\\xf3\\xbb\\x61\\x0f\\xf8\\x4d\\xec\\x25\\xce\\x9f\\x4e\\x9f\\x39\\xc3\\x2a\\xee\\xa4\\x12\\x2f\\xf2\\xa9\\x33\\x98\\x7c\\x5a\\x43\\x5e\\xad\\x73\\xbe\\x0b\\x04\\x7c\\x00\\xf8\\xeb\\x1a\\x09\\xfa\\x40\\x5c\\x52\\x74\\x2f\\x02\\x5e\\x64\\xa2\\x86\\x30\\x2d\\xa1\\x5e\\x8c\\x5a\\xc1\\x4b\\x8c\\x17\\x56\\x6f\\xa2\\x94\\xc0\\x47\\xfd\\xfa\\x6c\\x9f\\xde\\x41\\xae\\x0f\\xf5\\xf9\\x6a\\xef\\x75\\x7f\\xa8\\x4f\\x69\\x97\\xe2\\x67\\xce\\xc4\\xa7\\x68\\x83\\x8f\\xbc\\x74\\xe2\\xc4\\x4b\\x24\\xd0\\x79\\xbd\\xd3\\x07\\x69\\x79\\x51\\x8d\\x24\\xd5\\x38\\xff\\xe8\\xfa\\x28\\x2d\\x69\\xff\\x1e\\x80\\x2f\\xd7\\x02\\xf4\\x51\\x6a\\xb6\\x57\\x00\\x61\\xa0\\x25\\x13\\x39\\xa1\\x1a\\x42\\xb4\\x94\\x58\\x81\\x31\\xc8\\xf1\\x22\\x00\\xfd\\x95\\xf1\\x60\\xc0\\x24\\x91\\x14\\xbf\\xd5\\xa6\\xfc\\xeb\\xe5\\xad\\xd4\\x6c\\xc7\\xf7\\x09\\xa3\\xfb\\xea\\x5d\\xbf\\xdb\\xa6\\x5d\\x7d\\xfa\\xad\\xb7\\x4e\\xdf\\xb8\\xf1\\x18\\xc9\\xbf\\xec\\x9c\\x48\\x7e\\xfa\\x86\\xfc\\xf4\\xb4\\xb3\\x8a\\xff\\xb1\\xa6\\xa9\\xa9\\xe6\\xce\\x96\\x95\\xa4\\xc0\\x39\\xee\\xce\\x9a\\xf6\\x76\\x68\\x70\\x56\\xf1\\x2f\\x5c\\xf7\\xb9\\x61\\xa4\\x7a\\x9f\\x9b\\x78\\x41\\x00\\xcd\\x6d\\xbf\\x04\\xbd\\xdc\\xf7\\xbb\\x45\\x47\\xbf\\x84\\xf7\\x7c\\x9c\\x55\\xfc\\x33\\xd7\\x7d\\x64\\x18\\x01\\x7b\\x6e\\x26\\x8b\\x1c\\x8f\\xb4\\x5f\\x12\\x57\\x85\\xe2\\x5e\\x84\\x3b\\x03\\x60\\x6c\\xab\\xe2\\xef\\xbb\\x62\\xb6\\xd0\\x9e\\xde\\x8e\\xcf\\xe9\\xb5\\xbb\\x9e\\xd3\\x13\\xb8\\xae\\xf8\\xed\\x46\\xec\\xac\\xb3\\xd5\\x59\\xa5\\xa1\\x02\\x67\\x34\\xea\\x3c\\xd9\\x4d\\x67\\x8d\\xb3\\x8a\\x7f\\x29\\x70\\xfe\\x85\\x3a\\xd6\\x6e\\x3a\\xa3\\x15\\x1d\\xd7\\xda\\xe1\\x5d\\x74\\xe2\\x9d\\x55\\xfc\\x53\\xd7\\x3a\\xa2\\xd0\\x99\\xdd\\x59\\x07\\x88\\xeb\\x1e\\x0f\\x04\\xc0\\xfd\\x49\\x23\\x7c\\xc5\\xef\\x79\\x76\\xb4\\x50\\x0d\\xf1\\x68\\xf9\\xbd\\x3a\\x5a\\xa7\\x9e\\xe9\\x99\\x3e\\x56\\x34\\x95\\x68\\x12\\xcd\\x76\\x7e\\xc5\\x5a\\xd8\\x97\\x7b\\x9d\\x2b\\xfe\\x46\\x26\\x91\\xf4\\xb7\\x9d\\x4f\\xee\\xa7\\xbd\\xee\\x7c\\x47\\x7b\\xd5\\x30\\xaf\\x3b\\xc3\\xe9\\x87\\xb7\\x7f\\x02\\xe2\\xba\\x77\\x04\\x81\\x10\\x9a\\x34\\xca\\x4f\\xf0\\x28\\xe8\\x03\\x26\\x69\\xdd\\xbf\\x69\\xd8\\x5f\\x61\\x1a\\x48\\xd2\\x83\\xfa\\xb8\\x99\\x34\\xd8\\x38\\x49\\xb4\\xfa\\x8b\\x58\\xd1\\xac\\xf5\\x1f\\xa7\\x3f\\x79\\xd1\\x39\\xfb\\x65\\x32\\x6d\\xc0\\x40\\xf2\\xd0\\xcb\\xce\\x47\\xcf\\xf8\\x39\\x17\\x90\\x6d\\x35\\xec\\xd8\\xed\\xeb\\x56\\x2b\\x0b\\xbc\\x9d\\xa5\\x7e\\x4f\\x12\\x9f\\x2d\\x80\\x20\\x18\\x9d\\x64\\xe8\\x41\\xb8\\x46\\xfd\\x4d\\x28\\x2f\\x57\\xec\\xc9\\xd3\\x12\\x25\\xe6\\x50\\xd2\\x51\\xb8\\x5e\\x41\\x81\\xa2\\x3d\\xea\\xd5\\x5f\\xb3\\xf2\\x28\\xe0\\xb1\\x66\\xb2\\xf6\\x7d\\xe7\\xcb\\xce\\xdf\\x7f\\x48\\xaa\\xdb\\x0e\\x38\\xab\\x3f\\x20\\x71\\x64\\xcc\\x25\\x67\\xf5\\x6e\\xba\\xe7\\x4e\\x1e\\x4d\\xb9\\x73\\x9a\\xee\\xa9\\xa1\\x8f\\xdf\\x79\\x8d\\x3e\\x70\\xe7\\x19\\x20\\xae\\x7b\\xf4\\xff\\x9d\\x7b\\xc0\\xff\\xc8\\xdd\\xb0\\x8b\\x14\\xbf\\xe7\\x7c\\xd7\\xf9\\xee\\xfb\\xa4\\xf8\\x85\\x43\\xce\\xa3\\xef\\x91\\x21\\x24\\xf8\\x03\\xe7\\xd1\\xf5\\xe4\\xb2\\xf3\\x3e\\xb2\\xcb\\x59\\x40\\x2e\\xd7\\x90\\x57\\x9c\\x76\\xb2\\xc9\\x39\\xde\\xf5\\xec\\x15\\x7f\\x88\\x6a\\xe1\\x0c\\xb8\\xee\\xed\\x8c\\x13\\xed\\x64\\x14\\xa8\\xef\\x52\\x7d\\xe4\\x7c\\x12\\x9f\\x2f\\x7d\\x12\\xdb\\x49\\x06\\x5d\\xcb\\xd7\\xb1\\xa1\\x90\\x4a\\x56\\xb7\\x57\\x00\\x4c\\x8d\\x4e\\x52\\x7f\\x9f\\xe1\\x4a\\xfb\\x0f\\xf4\\x82\\x46\\x02\\x06\\x3d\\x61\\xa9\\xfa\\x0b\\x17\\x7d\\x5d\\x3f\\xa6\\x35\\xd6\\xfd\\xc5\\xab\\x71\\xcc\\xf5\\xdb\\x16\\xbf\\x72\\xd2\\xc2\\x5c\\xbf\\x6a\\x71\\x97\\x9c\\x77\\xc9\\x94\\x93\\x93\\x73\\x72\\x98\\x1e\\x7f\\xc6\\x4d\\x1f\\x14\\xcd\\x3c\\x3e\\x24\\x41\\xdb\\x4e\\x9f\\xbe\\x90\\x98\\x98\\xf8\\xc0\\x03\\x89\\x89\\x89\\xe4\\xef\\xec\\x83\\x9f\\x5b\\x23\\x92\\x92\\x22\\xc2\\xc7\\x8f\\x07\\x22\\xc6\\xed\\xe4\\xed\\x1f\\x3f\\x3b\\xe2\\xd1\\x9e\\x63\\x7f\\x00\\x3f\\x6f\\xf1\\x85\\xdb\\x57\\xaf\\x07\\x85\\x2b\\xf2\\xad\\x95\\xcf\\x3f\\x7c\\x5b\\x73\\xe7\\x5d\\xaf\\x3a\\xef\\x0a\\x00\\xf0\\x01\\x8a\\x9f\\xc0\\x25\\x00\\xde\\x79\\x77\\xde\\x05\\xf0\\xd9\\x71\\x5b\\x73\\xab\\xdc\\xab\\x4e\\x20\\x79\\xfc\\xe3\\xc0\\x65\\x4c\\xc9\\xae\\x8d\\xe4\\x71\\x19\\xc6\\x71\\x19\\x1a\\xb8\\x0c\\x06\\x2e\\xc3\\x02\\x2e\\x93\\xef\\xb8\\x4c\\x6c\\x5c\\x26\\x49\\x5c\\x86\\x7a\\x2e\\xc3\\x62\\xa1\\x77\\x11\\x2e\\x71\\x99\\x5c\\xe7\\x32\\xdc\\xe6\\x32\\x6c\\xe2\\x32\\xbc\\xc9\\x65\\x98\\xce\\x65\\x98\\xc3\\x65\\x98\\xc4\\x65\\xf8\\x1d\\x97\\x61\\x1d\\x97\\xa1\\x8c\\xcb\\xd0\\xca\\x65\\xd8\\xc6\\x65\\x3a\\x94\\xcb\\xe4\\x0a\\x97\\x95\\xeb\\x1b\\x38\\xca\\x65\\x68\\xe3\\x32\\xfc\\x81\\xcb\\xa0\\x60\\x4f\\xe1\\x32\\xb4\\xa8\\x9c\\xb0\\x93\\xcb\\x70\\x12\\xcf\\x15\\x20\\xce\\x31\\x2e\\x43\\x1e\\xea\\x9c\\xe3\\x32\\x6c\\xe5\\x32\\x6c\\xe0\\x32\\xcc\\x47\\x3d\\x85\\xf7\\x05\\x2e\\xc3\\x22\\x2e\\x43\\x3a\\x97\\x61\\x2d\\x97\\x21\\x95\\xcb\\x90\\xc6\\x65\\x98\\x89\\xe5\\x2a\\xe7\\x32\\x51\\xb8\\xbf\\xe2\\x32\\xd9\\xa6\\x4a\\x85\\x8b\\xec\\xe5\\x32\\xec\\xe2\\x32\\x1c\\x47\\x4c\\x25\\xef\\x73\\xfc\\x22\\xd4\\x72\\x19\\xaa\\x91\\xfb\\x0d\\x2e\\xc3\\xdf\\xb8\\x0c\\x12\\xa6\\x1f\\xc1\\xe3\\x4b\\xb1\\x2c\\xd5\\x5c\\x26\\x69\\x88\\xb1\\x9e\\xcb\\x70\\x02\\xed\\x8d\\xe0\\x32\\x94\\x72\\x19\\xcc\\xaa\\xff\\x88\\x89\\xcb\\x74\\xb0\\x2a\\x95\\x73\\xe4\\x06\\x97\\x61\\x0b\\x97\\x61\\x21\\x97\\x61\\x1e\\x97\\x21\\x98\\xcb\\xa4\\x5d\\xb5\\x99\\xdc\\xc7\\x65\\x98\\xc5\\x65\\x32\\x98\\xcb\\xf0\\x0e\\x97\\xe1\\xf7\\x78\\x9c\\x70\\x99\\x14\\xa9\\x36\\x93\\xb1\\x2a\\x16\\xd9\\xc1\\x65\\x38\\xa3\\xda\\x48\\x6e\\x71\\x99\\xc8\\x5c\\x26\\x2b\\xb9\\x4c\\x02\\xb9\\x0c\\xff\\x46\\x3b\\x86\\x71\\x19\\x86\\x73\\x19\\x2e\\x70\\x19\\x74\\xe8\\x2f\\xc5\\x47\\x4d\\x5c\\x86\\xc3\\x5c\\x86\\x50\\xf4\\x57\\x85\\x47\\xb9\\x06\\x60\\x79\\x57\\x70\\x19\\x32\\xb9\\x0c\\xa7\\xb9\\x0c\\x63\\xf0\\x98\\x52\\xd6\\x53\\x5c\\x86\\xc9\\x5c\\x86\\x70\\x2e\\x93\\xf3\\xd8\\x46\\xf2\\xd5\\x76\\x22\\xfc\\x78\\x02\\x7d\\xa6\\xb4\\x81\\x3f\\x72\\x99\\x28\\x65\\x7e\\x40\\x2d\\xb7\\x62\\x33\\x51\\x7c\\x55\\xc5\\x65\\xf8\\x91\\xcb\\xe4\\x28\\xcf\\xba\\xfd\\x3a\\xcf\\xba\\x53\\xc8\\xb3\\x6e\\xaf\\xe6\\x59\\x77\\x72\\x78\\xd6\\x6d\\x0d\\xcf\\xba\\x33\\x92\\xcb\\xf4\\x7e\\x2e\\x93\\xde\\x5c\\xa6\\x11\\x68\\x77\\x38\\xd6\\x7d\\x1c\\xb6\\xbf\\x06\\x6c\\x6b\\x16\\x2e\\x83\\x8d\\xcb\\x60\\xe5\\x32\\x3c\\x85\\x75\\xa4\\x94\\x71\\x09\\xda\\x53\\xc9\\x65\\x68\\xe4\\x32\\xbc\\x84\\xb6\\x27\\x62\\x39\\x72\\xb8\\x0c\\x07\\x50\\xaf\\x04\\xcb\\xbe\\x07\\xeb\\xce\\x8a\\x65\\xac\\x45\\x3e\\x85\\x3b\\x04\\xf1\\x87\\x70\\x19\\x9e\\xe6\\x32\\x98\\xd0\\x06\\x65\\x4b\\xe1\\x32\\xdc\\x8b\\x98\\xca\\xfe\\x68\\xf4\\xed\\x41\\x2e\\xc3\\x11\\x2e\\xc3\\x13\\xb8\\x45\\x71\\x19\\x36\\xa2\\xff\\xcb\\xd1\\x67\\xc9\\x88\\xab\\xd8\\xf8\\x22\\xf2\\x05\\x89\\xf6\\xa8\\xda\\xa7\\x1c\\x8f\\xe7\\x32\\xac\\xc1\\x7d\\x65\\x2b\\xc4\\xfa\\x6a\\xc6\\xbe\\xf2\\x14\\xf6\\x83\\x44\\xc4\\x3f\\x80\\xc7\\x16\\xaa\\xe5\\x68\\xff\\x27\\xb6\\xf3\\x11\\x5c\\x86\\x95\\x5c\\x86\\xc1\\xa8\\xa3\\xf4\\xbd\\x47\\x71\\xff\\x09\\xec\\x87\\x23\\xb1\\xff\\x2c\\x44\\xff\\x2a\\x7d\\xbc\\x08\\xdb\\x82\\xd2\\x67\\x5f\\xe7\\x32\\x7c\\x82\\x75\\xae\\xf4\\x89\\x81\\x78\\xdc\\x82\\x76\\xce\\x47\\xdb\\x1e\\xc2\\xf6\\xbd\\x10\\x39\\x6a\\xb0\\xdf\\x2e\\x52\\xc2\\x18\\x00\\xdc\\x06\\x20\\x7f\\x02\\x50\\xae\\x8c\\x9c\\x5f\\x01\\x40\\x06\\x9e\\x3f\\x8a\\xb1\\xe0\\xa4\\x47\\x9d\\x29\\x75\\xba\\x9f\\xcb\\x10\\xc6\\x65\\x48\\x40\\xdf\\x95\\x62\\xbd\\x39\\xd0\\x1f\\xb3\\xb1\\xfc\\x31\\xe8\\xf3\\xcd\\x5c\\x86\\x2f\\xb0\\xcc\\xca\\x76\\x1e\\xdb\\xa6\\x82\\xfb\\xbc\\xda\\xcf\\x44\\x4c\\x51\\xfc\\x6a\\x44\\x1c\\x2b\\xda\\x6d\\xc3\\xb2\\x64\\xa2\\xae\\x12\\xeb\\xfa\\x60\\xbd\\xda\\xb1\\x4d\\xad\\xc7\\xb6\\x9f\\x8e\\x7d\\xa8\\xb8\\x23\\xae\\xfe\\xcf\\x9b\\x92\\x2f\\x43\\x6d\\x27\\xe4\\x1a\\xf6\\xe1\\x33\\x5c\\x26\\x7f\\x55\\x63\\x0b\\x09\\xe3\\x32\\x19\\x8d\\xed\\xe4\\x31\\xec\\x3f\\xb3\\xb9\\x4c\\x7c\\xd4\\x76\\x42\\xaa\\x71\\x0b\\xe5\\x32\\xe9\\xc9\\x65\\x32\\x09\\xeb\\xea\\x49\\xdc\\x14\\xfc\\x8f\\xd5\\xbc\\xa2\\x2e\\xea\\xb0\\x4c\\x51\\x18\\x1b\\x94\\x38\\xbc\\x9c\\xcb\\x70\\x88\\xcb\\x10\\x8d\\x31\\x41\\xf1\\x61\\x2c\\x97\\xe1\\x16\\xb6\\xad\\xc3\\x18\\xdb\\x5f\\x51\\xcb\\x4c\\xc2\\xd1\\x76\\xc5\\xdf\\x3d\\xd5\\xfa\\x21\\x63\\xb8\\x4c\\x82\\x70\\x6c\\x08\\xe4\\x32\\xf1\\xc3\\x7e\\xff\\x13\\xb6\\xe7\\x37\\xb1\\xbe\\x5e\\xc4\\x7a\\x50\\xe2\\xf0\\x32\\x6c\\x6f\\x1f\\x70\\x19\\xb6\\x63\\xdd\\xbc\\x85\\xc7\\x5e\\xc1\\x76\\x3a\\x07\\xdb\\x73\\x15\\xb6\\x35\\x25\\x0e\\xcc\\xc0\\x7a\\xc8\\xc5\\xba\\x7a\\x89\\xcb\\x24\\x8b\\xcb\\x24\\x00\\xeb\\xf6\\x35\\xac\\x53\\x05\\xeb\\x32\\xc6\\xc8\\xb7\\xd4\\x38\\x46\\x1e\\xe4\\x32\\x79\\x98\\xcb\\xc4\\xc8\\x65\\x92\\xc0\\x65\\xa2\\x57\\xc7\\x39\\x11\\x9f\\x14\\x7b\\xc7\\xe3\\x7e\\x2c\\x97\\xc9\\x5b\\x5c\\x26\\x3f\\x70\\x99\\x38\\xb8\\x4c\\xb5\\x6a\\xfc\\x25\\xb9\\x58\\x8e\\x36\\x35\\x1e\\x92\\x7a\\x2c\\xdb\\x34\\x8c\\xb1\\x0b\\xb0\\x9d\\x1e\\x46\\x9f\\x2b\\xe7\\x2f\\xf2\\x37\\x84\\x1f\\x67\\x61\\x1f\\x7c\\x5b\\xe5\\x03\\x10\\x63\\xea\\x37\\xed\\xef\\xa8\\x9b\\xe8\\x47\\xe9\\xd8\\xae\\xa6\\xfc\\x97\\x6d\\x81\\x47\\xff\\x70\\x6d\\xc7\\xba\\x6c\\xae\\x71\\xb2\\xeb\\xb6\\xb6\\xcb\\x36\\x0e\\xc7\\xc1\\xbb\\x6d\\x1b\\x30\\x0e\\x79\\x6e\\x6f\\x74\\xd9\\x5c\\x63\\x62\\xd7\\xed\\x44\\x97\\xcd\\x8c\\xdb\\x14\\xc4\\xee\\x2a\\x17\\x20\\xdf\\xdd\\xe4\\x4e\\x4d\\xbe\\xb0\\xf9\\x24\\xda\\xf1\\x5b\\xb2\\x00\\xc7\\xf2\\xbb\\xc9\\x75\\x1e\\xfe\\x7a\\xe3\\x37\\x64\\x1e\\x8e\\x69\\x2d\\x28\\xcf\\xe1\\x39\\xb7\\xd4\\xe4\\xa3\\x3c\\x2c\\xe4\\x06\\x8f\\x7a\\xf0\\x90\\xed\\xa7\\x3d\\xe2\\x63\\x57\\xf9\\x02\\xce\\x27\\x5e\\xc0\\x31\\x5c\\x91\\x7d\\x30\\xae\\x1f\\xff\\x1f\\xa4\\xab\\xed\\xa4\\x63\\x5f\\x51\\xd3\\x3f\\x08\\xe9\\x1a\\x97\\xff\\x57\\x99\\x86\\xf3\\x87\\x71\\x58\\x67\\x38\\x97\\x12\\xed\\xb9\\xab\\xd4\\xe1\\x58\\x97\\xaa\\x96\\xa3\\xfd\\x2b\\x75\\x13\\x36\\xc4\\xfd\\x97\\xad\\x14\\x63\\x81\\xe7\\xf6\\x41\\x97\\xcd\\x15\\x07\\xba\\x6e\\x2f\\x74\\xd9\\x1e\\xfa\\x15\\x6c\\xcf\\xed\\xc5\\x5f\\xe1\\x3a\\x8f\\x31\\xc8\\x73\\xdb\\xf9\\x2b\\x36\\x78\\xc6\\xa7\\x93\\x18\\x4b\\x5c\\xdb\\x2b\\x1e\\x9b\\xa7\\x7d\\x1b\\x3d\\xb6\\xaa\\x2e\\xdb\\x23\\x1e\\xb1\\xec\\xd7\\xb6\\xd1\\x58\\x1e\\x8c\\x6d\\xee\\x6d\\x8a\\x26\\x12\\x7a\\x6a\\x22\\xdb\\xef\\x68\\x22\\xdb\\xaf\\xf1\\xcb\\xe0\\xa3\\x89\\x6c\\x6f\\xe3\\x97\\x41\\x83\\x63\\xa4\\x6b\\x3e\\x7d\\x12\\xeb\\xc6\\xd5\\xbe\\x5b\\x7e\\x65\\xee\\x9c\\x8e\\x75\\x3a\\x13\\x75\\xc6\\xe1\\x7c\\x61\\x2d\\xce\\x37\\x4e\\xe1\\x5c\\xe8\\x34\\xb6\\xcd\\x33\\xd8\\x07\\x4a\\x3d\\xce\\x2d\\x45\\x39\\x19\\x39\\x5d\\x73\\xf1\\x63\\x1e\\x7d\\xe6\\x30\\xf2\\x87\\x7a\\xd8\\xf7\\x02\\xea\\x37\\xa0\\x5d\\xeb\\xd0\\xae\\x06\\xb4\\x6d\\x01\\xda\\x67\\x41\\xfb\\x76\\x79\\xcc\\x85\\x5c\\x73\\xd4\\x0d\\xd8\\x2e\\x4b\\xf1\\xdc\\x8b\\xd8\\x07\\xde\\xf0\\x98\\xb7\\x37\\xa2\\x8e\\xab\\x2d\\x77\\x95\\xd8\\xb6\\xc5\\xf5\\x4e\\x9e\\xcf\\x0e\\x71\\x9d\\x22\\xa9\\x63\\xb0\\xb0\\xeb\\x91\\x8e\\xd8\\xd4\\xbe\\xc6\\xc3\\x66\\x97\\x2d\\xae\\x39\\xe7\\x40\\x1c\\x2f\\x73\\xf0\\x9c\\x2b\\x5e\\x8d\\xc3\\x3e\\x71\\x0c\\xe7\\x86\\x41\\x98\\xee\\x1a\\xf7\\x5c\\xfd\\xc7\\x15\\xb7\\x66\\xe1\\xdc\\xb9\\xd5\\x23\\x9f\\x0b\\xbb\\x01\\xb9\\x5d\\xd2\\x15\\x3b\\x5c\\x73\\x31\\x97\\x2c\\xc7\\xfa\\x0c\\x45\\x1f\\x74\\x95\\x47\\xd0\\xef\\xae\\x36\\x3a\\x13\\x7d\\xb9\\x16\\xdb\\x5f\\xfc\\xdd\\xe3\\x74\\xfb\\x6d\\x2e\\xb7\\xdf\\xfa\\x2f\\x71\\xfc\\x7f\\x95\\xbf\\x11\\xbf\\xdb\\x6f\\x70\\xb9\\xfd\\xfb\\xff\\xa2\\xd7\\x35\\x4e\\xdf\\x2d\\xae\\x02\\x97\\xdb\\xbf\\xfd\\x2f\\xe7\\x5d\\xd7\\x2e\\xbf\\x25\\xff\\xdf\\xc6\\x50\\x97\\xf4\\x8c\\xa1\\x1d\\xf2\\x1b\\x58\\x2b\\x36\\xb5\\x8f\\x34\\x62\\x7d\\x1c\\xc0\\xb6\\x5f\\xe8\\x51\\x27\\xae\\xba\\x72\\xc9\\x17\\xb0\\xbd\\xbb\\xda\\x86\\x6b\\x7e\\xab\\xf8\\xa1\\x17\\x97\\xdb\\xdf\\xc1\\xed\\x0e\\x97\\xdb\\x7f\\x51\\xe2\\x04\\xbf\\x2c\\xfc\\xd8\\x00\\x07\\x60\\x1d\\x1c\\x80\\xad\\xb0\\x06\\x46\\x43\\x3c\\x8c\\x83\\x54\\x98\\x09\\xa5\\xb0\\x16\\x82\\x20\\x43\\x2c\\x21\\x5c\\xe9\\xb4\\x60\\x10\\x07\\x4d\\x64\\x08\\x39\\x4d\\x0b\\x68\\x35\\x3d\\x43\\xaf\\xb1\\xc1\\x6c\\x02\\x2b\\x64\\x2b\\x59\\x0b\\x7b\\x95\\xf7\\xe3\\x51\\x7c\\x05\\xff\\x51\\x13\\xa2\\x59\\xad\\xb9\\xa5\\x1d\\xac\\x6d\\xf0\\xea\\xe7\\x35\\xca\\x6b\\xac\\xd7\\x0c\\xaf\\x65\\x5e\\xdb\\xbd\\x8d\\x3e\\x03\\x7c\\x26\\xf8\\xb4\\xf9\\xf6\\xf1\\xcd\\xf6\\x7d\\xd6\\xf7\\x98\\x5f\\x3f\\xbf\\xf1\\x7e\\x85\\x7e\\xf5\\x7e\\x17\\xfc\\xbe\\xf6\\xd7\\xf9\\xa7\\xf8\\x1f\\xf4\\xbf\\xda\\x63\\x46\\x8f\\xfa\\x80\\xc0\\x80\\xa8\\x80\\xd2\\x80\\xf5\\x01\\x67\\x02\\xae\\xf5\\xec\\xd5\\x73\\x7c\\xcf\\xbc\\x9e\\x4b\\x7b\\xee\\xe9\\xf9\\x4a\\xcf\\x8f\\x02\\xb3\\x03\\xdf\\x0c\\xca\\x0b\\x3a\\xd3\\x2b\\xa9\\x57\\x7d\\xaf\\x2b\\xbd\\x9f\\xed\\xfd\\x66\\x9f\\x80\\x3e\\xb9\\x7d\\xea\\xfb\\xbc\\xd7\\x37\\xa5\\xef\\xd6\\xbe\\x9f\\xf7\\xcb\\xec\\xf7\\x7a\\xff\\xa1\\xfd\\xd7\\xf7\\xff\\x68\\xc0\\xb0\\x01\\x13\\x07\\xac\\x18\\x20\\x0d\\xb8\\x79\\xcf\\x90\\x7b\\x16\\xdd\\xb3\\xfe\\x9e\\x2f\\x07\\xc6\\x0c\\x2c\\x1b\\x78\\x69\\xd0\\x98\\x41\\x67\\x07\\xf3\\xc1\\x21\\x83\\x2f\\x0c\\x76\\xde\\xbb\\x7e\\x48\\xc4\\x90\\x09\\x43\\x96\\x0c\\xf9\\xf9\\xbe\\x5e\\xf7\\xcd\\xbe\\x6f\\xb3\\x2e\\x40\\x57\\x1d\\xec\\x1d\\x3c\\x27\\x78\\x75\\x70\\x4b\\xf0\\x97\\x43\\x61\\x68\\xfa\\xd0\\x59\\x43\\x17\\x0d\\xdd\\x3c\\xf4\\x98\\x3e\\x44\\x5f\\xa6\\xdf\\x3e\\x6c\\xe0\\xb0\\x82\\x61\\x57\\x86\\x6f\\x1d\\xe1\\x3d\\x22\\x7d\\xc4\\xcb\\x23\\x07\\x8c\\x9c\\x3d\\x72\\xe5\\xc8\\xb7\\x47\\x65\\x8e\\x5a\\x36\\xaa\\x65\\xd4\\x8f\\xf7\\x27\\xdd\\xdf\\x12\\x32\\x3b\\xe4\\x5a\\xe8\\xd0\\xd0\\x15\\x06\\xad\\x61\\xae\\xe1\\x54\\xd8\\x80\\xb0\\x69\\x61\\xa7\\xc2\\x2e\\x85\\xdd\\x0e\\x0f\\x0f\\xcf\\x08\\xdf\\x1c\\x7e\\x7e\\xb4\\x6e\\xb4\\x71\\xf4\\xe6\\xd1\\x4d\\xa3\\x5f\\x1e\\x7d\\x3e\\x82\\x46\\x0c\\x8b\\x48\\x89\\xc8\\x8d\\xd8\\x13\\x71\\x30\\xe2\\xd5\\x88\\xab\\x91\\x33\\x22\\x17\\x45\\x1e\\x8c\\x3c\\x17\\x79\\x3b\\x6a\\x5a\\xd4\\xf6\\xa8\\xeb\\xd1\\x8d\\x31\\x09\\x31\\x79\\x31\\x9f\\xc5\\xce\\x8a\\x3d\\x16\\xeb\\x8c\\x2b\\x88\\xdb\\x13\\xdf\\x96\\x30\\x2a\\xa1\\x2a\\xe1\\xcb\\xc4\\xa4\\xc4\\xcd\\x89\\x6f\\x8f\\xe9\\x33\\x66\\xd1\\x98\\x57\\x1e\\x18\\xf1\\xc0\\xcb\\x63\\xc7\\x8c\\x6d\\x18\\x37\\x7e\\x5c\\xc3\\x78\\x18\\x3f\\x77\\x7c\\xf3\\xf8\\x77\\x1e\\x1c\\xf2\\x60\\xee\\x83\\x0d\\x49\\x03\\x93\\x92\\x92\\x1c\\x49\\x27\\x93\\x3e\\x4b\\x1e\\x9a\\x9c\\x91\\xbc\\x2a\\xf9\\x82\\xb1\\x9f\\x31\\xdb\\x78\\xc6\\x14\\x65\\x5a\\x66\\xfa\\xd1\\x9c\\x69\\x2e\\x35\\x9f\\x34\\xdf\\xb2\\x94\\x59\\xb6\\x5b\\xce\\x59\\x9c\\x29\\xa3\\x52\\x32\\x53\\xca\\x52\\x36\\xa7\\x5c\\x4f\\x1d\\x98\\x9a\\x95\\xba\\x3c\\xf5\\x44\\xea\\xed\\x09\\x29\\x13\\x56\\x4f\\xb8\\x96\\x96\\x97\\x76\\x6c\\xe2\\x80\\x89\\xcb\\x26\\x5e\\x9a\\x14\\x32\\xc9\\x31\\xa9\\x61\\xd2\\x8d\\xf4\\xa4\\xf4\\xad\\x0f\\x99\\x1f\\x7a\\x3b\\xc3\\x3b\\x23\\x29\\x63\\x55\\xc6\\xf9\\xc9\\xc3\\x26\\x2f\\x9f\\x7c\\x29\\x33\\x2e\\xf3\\xd5\\x29\\x99\\x53\\x5e\\xcd\\x1a\\x9a\\x35\\x3f\\xeb\\xec\\xd4\\x89\\x53\\xaf\\x4e\\xdb\\x33\\xdd\\x31\\x63\\xd8\\x8c\\x1f\\x67\\x2e\\x9a\\xf9\\x63\\xf6\\xb4\\xec\\xb6\\xec\\x1b\\x39\\xe9\\x39\\xb5\\x39\\x6d\\x39\\xaf\\x3f\\x9c\\xf5\\xf0\\x67\\xb3\\xa3\\x66\\x37\\xcf\\xbe\\x38\\xfb\\xc6\\x23\\x31\\x8f\\x2c\\x79\\xe4\\xcc\\x23\\xce\\x39\\x31\\x73\\xe6\\xcf\\xd9\\x31\\xe7\\xf5\\x47\\x03\\x1f\\x9d\\xf5\\xe8\\xa5\\xdc\\x69\\xb9\\xd5\\xb9\\x67\\xad\\x21\\xd6\\x7a\\xeb\\x67\\x79\\x33\\xf2\\x5e\\xcf\\x0f\\xc8\\xcf\\xca\\xdf\\x95\\x7f\\xa5\\x20\\xbd\\xa0\\xde\\xe6\\x6f\\x1b\\x6a\\x4b\\xb0\\x2d\\xb7\\xdd\\x9c\\xeb\\x98\\xfb\\xe5\\xbc\\x89\\xf3\\x4e\\x17\\x0e\\x2b\\xac\\x2d\\xea\\x55\\xb4\\xa2\\xe8\\xea\\xfc\\xf4\\xf9\\xcd\\xf3\\x7f\\x5c\\x90\\xb4\\xe0\\xcc\\x5d\\xff\\x9f\\x5f\\xf0\\xce\\x82\\x2b\\xc5\\xda\\xe2\\x11\\xc5\\x29\\xc5\\x59\\xc5\\xb9\\xc5\\xa5\\xc5\\xf5\\xc5\\xaf\\x97\\x78\\x97\\x24\\x94\\xa4\\x94\\x64\\x97\\x1a\\x4a\\x33\\x4b\\x97\\x96\\x56\\x97\\x9e\\xb5\\x0f\\xb6\\x57\\x97\\x85\\x94\\xd5\\x2e\\x1c\\xbc\\x70\\xee\\xc2\\x57\\x16\\x7e\\x57\\x1e\\x51\\x3e\\xa1\\xbc\\xa0\\x7c\\x45\\x79\\x6d\\xf9\\x8d\\x0a\\xef\\x8a\\x90\\x0a\\x73\\x45\\x6e\\xc5\\x67\\x8e\\x7e\\x8e\\xe5\\x8e\\x83\\x8e\\xb3\\x8e\\x4b\\x95\\xb4\\x72\\x70\\xe5\\xe0\\x45\\x74\\xd1\\xec\\x45\\xf5\\x8b\\xae\\x2c\\x1e\\xb6\\x78\\xc6\\x62\\xc7\\xe2\\xcd\\x8b\\xcf\\x2e\\xfe\\x68\\x89\\xff\\x92\\x45\\x4b\\x2e\\x3c\\x16\\xf0\\xd8\\xd8\\xc7\\x0a\\x1e\\x7b\\xe5\\xb1\\xab\\x4b\\xfb\\x2c\\x9d\\xb8\\x74\\xd1\\xd2\\xcd\\x4b\\xcf\\x2e\\xbd\\xf2\\x78\\xdc\\xe3\\x9b\\x1f\\xbf\\xb4\\x2c\\x6b\\x59\\xf9\\xb2\\x63\\xcb\\xde\\x79\\x82\\x3e\\x11\\xf5\\x44\\xf6\\x13\\x2b\\x9f\\x38\\xfb\\xc4\\x3b\\xcb\\x03\\x97\\x17\\x2f\\xdf\\xb8\\xfc\\xed\\x27\\x87\\x3e\\x39\\xe6\\xc9\\x63\\x4f\\x3a\\x57\\xc4\\xad\\x98\\xb8\\x62\\xd1\\x8a\\x33\\x2b\\xae\\x3f\\x15\\xf1\\xd4\\xa2\\xa7\\xd6\\xaf\\x8c\\x59\\xb9\\x74\\x65\\xf5\\xca\\xf3\\x2b\\xaf\\x3e\\x1d\\xf3\\x74\\xc6\\xd3\\x4b\\x9f\\x6e\\x59\\x95\\xb4\\x6a\\xee\\xaa\\xea\\x55\\x27\\x56\\x9d\\x59\\xf5\\xea\\x33\\xde\\xcf\\x4c\\x7b\\x66\\xd7\\x33\\x17\\x9e\\xf5\\x7d\\x76\\xcc\\xb3\\xd3\\x9e\\xbd\\xf0\\x5c\\xc8\\x73\\x8b\\x9e\\xbb\\xf6\\xdc\\xcd\\xe7\\x6e\\xaf\\xe6\\xab\\x67\\xac\\x6e\\x5a\\xe3\\xbd\\x66\\xcc\\x9a\\xda\\x35\\xcd\\x6b\\xce\\xac\\xb9\\xb8\\xe6\\xb3\\x35\\x37\\xaa\\x78\\x55\\xbf\\xaa\\xa1\\x55\\x31\\x55\\x29\\x55\\xd9\\x55\\xf3\\xab\\x96\\x55\\xad\\xaf\\xaa\\xaf\\x6a\\xab\\x7a\\xb5\\xea\\xbd\\xaa\\xaf\\xab\\x7e\\x5e\\xeb\\xbf\\x76\\xc8\\xda\\x88\\xb5\\xc6\\xb5\\xd3\\xd6\\xce\\x5d\\xbb\\x64\\xed\\xea\\xb5\\x3b\\xd6\\xb6\\xac\\x7d\\x79\\xed\\xc5\\xb5\\x9f\\xac\\xfd\\x6e\\xed\\xcf\\xd5\\xbe\\xd5\\x03\\xab\\x43\\xaa\\xc7\\x54\\x4f\\xac\\x9e\\x51\\x5d\\x58\\xbd\\xa4\\x7a\\x75\\x75\\x6d\\x75\\x53\\xf5\\xa9\\xea\\xd7\\xab\\x2f\\x55\\x5f\\xad\\xfe\\x79\\x9d\\xef\\xba\\x81\\xeb\\x0c\\xeb\\xc6\\xae\\xcb\\x58\\x37\\x67\\x5d\\xd9\\xba\\x15\\xeb\\xde\\x5f\\xef\\x58\\xff\\xec\\xfa\\xda\\xf5\\xcd\\xeb\\xcf\\xac\\xbf\\xb8\\xfe\\x93\\xf5\\xd7\\x37\\xc0\\x86\\x5e\\x1b\\x86\\x6d\\x88\\xdb\\x90\\xb2\\x21\\x7b\\x43\\xe1\\x86\\xa5\\x1b\\xaa\\x36\\x7c\\xb6\\x31\\x77\\x63\\xf9\\xc6\\x95\\x1b\\xb7\\x6e\\x6c\\xdc\\x78\\x72\\xe3\\xb9\\x8d\\xef\\x6f\\xfc\\x7a\\xe3\\xcf\\x9b\\x7c\\x37\\x0d\\xde\\x14\\xbe\\x29\\x69\\x53\\xd6\\xa6\\x82\\x4d\\x8b\\x36\\xad\\xde\\x54\\xbb\\xe9\\xda\\xe6\\xac\\xcd\\x05\\x9b\\x17\\x6d\\x5e\\xbd\\x79\\xc7\\xe6\\x96\\xcd\\x2f\\x6f\\x7e\\x73\\xf3\\xe7\\x9b\\x6f\\x6e\\xd1\\x6e\\x19\\xb0\\x25\\x64\\xcb\\xd8\\x2d\\x19\\x5b\\xe6\\x6c\\x29\\xdb\\xb2\\x72\\xcb\\xd6\\x2d\\x8d\\x5b\\xa4\\x2d\\xaf\\x6c\\x79\\x7b\\xcb\\x97\\x5b\\x6e\\x6e\\xd5\\x6e\\x1d\\xb0\\x35\\x64\\xeb\\x98\\xad\\xe9\\x5b\\xe7\\x6c\\x2d\\xdb\\xba\\x62\\xeb\\xe6\\xad\\x8d\\x5b\\x4f\\x6e\\x3d\\xbf\\xf5\\xd2\\xd6\\x6b\\x5b\\x9d\\xdb\\x02\\xb7\\x0d\\xdd\\x16\\xb5\\xcd\\xbc\\x6d\\xc6\\xb6\\xbc\\x6d\\xe5\\xdb\\x96\\x6f\\xdb\\xb8\\xad\\x61\\xdb\\x89\\x6d\\xe7\\xb6\\xbd\\xbf\\xed\\xea\\xb6\\xdb\\xdb\\xfd\\xb7\\x0f\\xd9\\x1e\\xbe\\x3d\\x69\\x7b\\xd6\\xf6\\xf3\\x35\\xa3\\x6a\\xc6\\xd4\\x4c\\xac\\x99\\x5d\\x53\\x5a\\xb3\\xa2\\x66\\x73\\x4d\\x63\\xcd\\xc9\\x9a\\x73\\x35\\xef\\xd7\\x7c\\x5d\\xf3\\x73\\xad\\x7f\\xed\\x90\\xda\\xf0\\xda\\xa4\\xda\\xac\\xda\\x82\\x5a\\x47\\xed\\xaa\\xda\\xad\\xb5\\x07\\x6b\\x4f\\xd6\\x9e\\xaf\\xbd\\x54\\x7b\\xad\\xd6\\x59\\x17\\x50\\x37\\xa4\\x2e\\xbc\\x6e\\x7c\\x5d\\x66\\x5d\\x5e\\x5d\\x79\\xdd\\xaa\\xba\\xad\\x75\\x07\\xeb\\x4e\\xd5\\xbd\\x5e\\x77\\xa9\\xee\\x6a\\xdd\\xed\\x1d\\x01\\x3b\\x86\\xec\\x08\\xdf\\x31\\x7e\\x47\\xc6\\x8e\\xa6\\x1d\\xa7\\x76\\x9c\\xdf\\xf1\\xfe\\x8e\\xaf\\x77\\xdc\\xda\\xe9\\xbd\\x73\\xc0\\xce\\x51\\x3b\\x97\\xef\\x5c\\xbf\\x73\\xcf\\xce\\x63\\x3b\\x5f\\xde\\xf9\\xe6\\xce\\xcf\\x77\\xde\\xdc\\xc5\\x77\\xf5\\xd9\\x35\\x77\\xd7\\xa2\\x5d\\xab\\x77\\xed\\xd8\\xd5\\xb2\\xeb\\xe5\\x5d\\x6f\\xee\\xfa\\x7c\\xd7\\xcd\\xdd\\xda\\xdd\\xfd\\x76\\x8f\\xd8\\x1d\\xb7\\x7b\\xc2\\xee\\xec\\xdd\\xf3\\x77\\x2f\\xdd\\x5d\\xb5\\x7b\\xc7\\xee\\x83\\xbb\\x4f\\xee\\x3e\\xbf\\xfb\\xfd\\xdd\\x57\\x77\\xff\\xbc\\xc7\\x77\\xcf\\xe0\\x3d\\xe1\\x7b\\x0e\\xee\\x39\\xb5\\xe7\\xfc\\x9e\\xf7\\xf7\\x5c\\xdd\\xf3\\xf3\\x5e\\xdf\\xbd\\xfd\\xf6\\x0e\\xdd\\x1b\\xb3\\x37\\x65\\x6f\\xd6\\xde\\x39\\x7b\\xe7\\xef\\x5d\\xb6\\x77\\xd5\\xde\\xea\\xbd\\x5b\\xf7\\xee\\xda\\xdb\\xb8\\xb7\\x65\\xef\\x89\\xbd\\x67\\xf6\\xbe\\xba\\xf7\\xc2\\xde\\x77\\xf6\\x7e\\xb4\\xf7\\xcb\\xbd\\xd7\\xf6\\x3a\\xeb\\x03\\xeb\\x75\\xf5\\x11\\xf5\\x49\\xf5\\x59\\xf5\\x05\\xf5\\xc5\\xf5\\x8e\\xfa\\x65\\xf5\\xab\\xea\\xab\\xeb\\x77\\xd5\\xb7\\xd4\\x9f\\xa9\\xbf\\x58\\xff\\x59\\xfd\\x8d\\x7d\\x7c\\x9f\\x63\\xdf\\xb2\\x7d\\xeb\\xf7\\x6d\\xdf\\xb7\\x67\\x9f\\xb4\\xef\\x95\\x7d\\xaf\\xef\\x7b\\x7b\\xdf\\xa5\\x7d\\x9f\\xef\\xbb\\xb9\\xef\\x76\\x03\\x6f\\xf0\\x6f\\xe8\\xd3\\x30\\xb8\\x61\\x58\\x83\\xa1\\x21\\xa6\\x61\\x6c\\x83\\xb9\\x21\\xbd\\x61\\x76\\x43\\x41\\x43\\x71\\xc3\\xb9\\x86\\x8b\\x0d\\xef\\x35\\x5c\\x69\\xb8\\xd1\\xf0\\xf3\\x7e\\xba\\xbf\\xd7\\xfe\\x81\\xfb\\x47\\xec\\x8f\\xdb\\x3f\\x61\\x7f\\xf6\\xfe\\xf9\\xfb\\x97\\xee\\xaf\\xde\\xbf\\x6b\\xff\\xb1\\xfd\\x2f\\xef\\x3f\\xb7\\xff\\xe2\\xfe\\x4b\\xfb\\xaf\\xed\\xbf\\xd9\\xa8\\x6d\\x1c\\xd0\\x38\\xac\\x31\\xa2\\xd1\\xd8\\x38\\xad\\x71\\x6e\\xe3\\xa2\\xc6\\xd5\\x8d\\x1b\\x1b\\x6b\\x1b\\x9b\\x1b\\xcf\\x34\\x5e\\x6c\\xfc\\xac\\xf1\\xc6\\x01\\x7e\\xc0\\xff\\x40\\x9f\\x03\\x83\\x0f\\x84\\x1f\\x18\\x7f\\x20\\xe5\\x40\\xf6\\x81\\xc2\\x03\\x4b\\x0f\\x54\\x1d\\xd8\\x7c\\x60\\xc7\\x81\\x96\\x03\\x67\\x0e\\x5c\\x3c\\xf0\\xde\\x81\\x2b\\x07\\x6e\\x1d\\xf4\\x3e\\x38\\xf0\\x60\\xc8\\xc1\\xb1\\x07\\x33\\x0e\\xe6\\x1e\\x2c\\x3b\\xb8\\xf2\\xe0\\xe6\\x83\\x3b\\x0e\\x36\\x1c\\x3c\\x71\\xf0\\xd5\\x83\\xef\\x1d\\xbc\\x72\\xf0\\xd6\\x21\\xdf\\x43\\x83\\x0f\\x19\\x0e\\x8d\\x3f\\x94\\x79\\x28\\xef\\x50\\xf9\\xa1\\x55\\x87\\xb6\\x1e\\xaa\\x3f\\xd4\\x72\\xe8\\xc4\\xa1\\xb3\\x87\\x2e\\x1c\\x7a\\xff\\xd0\\x97\\x87\\x7e\\x6c\\xf2\\x6e\\x1a\\xd8\\x14\\xd2\\x34\\xb6\\x29\\xbd\\x69\\x4e\\x53\\x59\\xd3\\xca\\xa6\\xad\\x4d\\xcd\\x4d\\x67\\x9b\\xde\\x6e\\xfa\\xbc\\xe9\\xe6\\x61\\x7e\\xb8\\xdf\\xe1\\x11\\x87\\x13\\x0e\\x4f\\x38\\x3c\\xe7\\x70\\xf9\\xe1\\x55\\x87\\x37\\x1e\\x6e\\x38\\x7c\\xe2\\xf0\\xb9\\xc3\\xef\\x1f\\xbe\\x7a\\xf8\\xe7\\x66\\xff\\xe6\\xc1\\xcd\\xe1\\xcd\\x49\\xcd\\x59\\xcd\\x05\\xcd\\xcb\\x9b\\x37\\x37\\x37\\x36\\x9f\\x6c\\x3e\\xdf\\x7c\\xa9\\xf9\\x5a\\xb3\\xf3\\x48\\xe0\\x91\\xa1\\x47\\x62\\x8e\\x98\\x8f\\xcc\\x38\\x32\\xf7\\xc8\\x92\\x23\\x55\\x47\\x76\\x1d\\x39\\x76\\xe4\\xfc\\x91\\xcf\\x8f\\xdc\\x6c\\xe1\\x2d\\xfd\\x5a\\x46\\xb4\\x24\\xb4\\x4c\\x6c\\x99\\xdd\\x52\\xda\\xb2\\xb4\\xa5\\xba\\xa5\\xb6\\xa5\\xb1\\xe5\\x64\\xcb\\xf9\\x96\\x4b\\x2d\\x57\\x5a\\x6e\\x1d\\xf5\\x3e\\x3a\\xf0\\xa8\\xe1\\xe8\\xf8\\xa3\\x99\\x47\\xf3\\x8e\\x96\\x1e\\x5d\\x71\\x74\\xf3\\xd1\\xc6\\xa3\\x27\\x8f\\x9e\\x3f\\x7a\\xe9\\xd8\\x92\\x63\\x9b\\x8f\\x35\\x1e\\x93\\x8e\\x9d\\x39\\x76\\xfe\\xd8\\x3b\\xc7\\x3e\\x3b\\x76\\xed\\xd8\\xad\\xe3\\xfc\\x78\\xe0\\xf1\\xc1\\xc7\\x47\\x1d\\x8f\\x39\\x9e\\x74\\x3c\\xfd\\x78\\xf6\\xf1\\xf9\\xc7\\x97\\x1d\\x5f\\x75\\xfc\\x3d\\x69\\x94\\xb4\\x54\\x6a\\x92\\xde\\x6b\\xed\\xd7\\x3a\\xa3\\xb5\\xac\\xb5\\xaa\\x75\\x57\\xeb\\xb1\\xd6\\xb3\\xad\\x6f\\xb7\\x7e\\xd9\\xfa\\x63\\x5b\\x48\\x5b\\x5e\\x5b\\x7d\\xdb\\x27\\x6d\\x57\\xda\\x6e\\x3d\\xcf\\xc5\\xff\\x39\\x40\\x00\\x78\\x10\\x48\\xd0\\x0f\\xca\\x40\\x03\\x14\\x32\\x21\\x17\\x16\\x03\\xc0\\xc7\\x7e\\x35\\xc0\\xc4\\x7d\\x87\\x1e\\xd0\\xa0\\xa4\\xb8\\x0f\\x00\\xcc\\x01\\xc0\\x34\\x81\\x7e\\x30\\x07\\xd3\\x14\\x02\\xc0\\x81\\x69\\x06\\xe1\\xb0\\x12\\xd3\\x1c\\xfa\\x81\\x84\\x69\\x0d\\x4c\\x83\\x73\\x98\\xd6\\xc2\\x30\\x32\\x10\\xd3\\x5e\\x30\\x91\\x8c\\xc7\\xb4\\x0f\\xf8\\x93\\xd5\\x98\\xf6\\x83\\x3e\\x64\\x2b\\xa6\\xfd\\x61\\x04\\x69\\xc2\\x74\\x0f\\x98\\x4d\\x2e\\x62\\x3a\\x00\\xa6\\xd1\\x10\\x30\\x81\\x1d\\xca\\xe0\\x31\\x28\\x87\\x22\\x98\\x07\\x85\\xe0\\x00\\x1d\\x44\\x41\\x04\\x44\\x42\\x2c\\xe8\\x20\\x15\\xec\\x60\\x87\\x79\\x50\\x0c\\x36\\xd0\\x41\\x1a\\x94\\x42\\x3e\\x84\\x83\\x0e\\x92\\xa1\\x18\\x8a\\x41\\x07\\x59\\xee\\x5c\\x15\\x62\\xcf\\x06\\x15\\x60\\x83\\x72\\x58\\x04\\x36\\x28\\x80\\x70\\xc8\\x02\\x3b\\xe4\\x81\\x1d\\x1c\\x60\\x07\\x1d\\x3c\\x04\\x76\\x28\\x05\\xbb\\xd0\\x9b\\x07\\x95\\x50\\x0c\\x56\\x28\\xef\\xc4\\x31\\xe6\\x2e\\x39\\xc6\\xb8\\x6d\\xfa\\xf5\\xf3\\x33\\x04\\x6b\\x05\\x14\\x89\\x7d\\xa5\\x04\\xe1\\x10\\x21\\xfe\\x27\\x42\\x02\\xc4\\xc2\\x03\\x1e\\xa5\\x52\\xd2\\x0e\\x70\\xc0\\x5c\\xb0\\x42\\xa5\\xc0\\x29\\x84\\x22\\x28\\x15\\x25\\x1f\\x05\\x8b\\x20\\x12\\xc2\\x21\\x1a\\xee\\xef\\xc4\\xe4\\xe2\\x09\\xeb\\x62\\xfb\\xaf\\x5b\\xa3\\x83\\x22\\xe1\\x0f\\xab\\x60\\x2a\\x07\\x2b\\x14\\x80\\x0d\\x4a\\x44\\x8e\\x05\\xa0\\x03\\x3b\\xcc\\xed\\xe2\\xdb\\xf0\\x4e\\x7b\\x9d\\xcf\\xe4\\x83\\x1d\\x4a\\xc0\\x04\\x85\\xa2\\x8e\\x2a\\xc0\\x01\\x45\\x60\\x15\\xa5\\x54\\xd9\\x95\\x92\\x2b\\xfe\\x57\\xb8\\xd3\\xa1\\x08\\xf2\\xc1\\x06\\xa5\\xa2\\x1e\\x0a\\x40\\x07\\x95\\x50\\x2a\\xd8\\xcb\\x85\\x2d\\x85\\xa2\\x1e\\x93\\xa1\\x0c\\xac\\x90\\x8f\\x7b\\x9d\\xf3\\x18\\x40\\x77\\x17\\x6f\\x16\\x0a\\xaf\\x95\\xc1\\x18\\x18\\x0d\\xa3\\x61\\xb1\\xf8\\x1f\\x0e\\x56\\x0f\\xac\\x70\\xb0\\x43\\x39\\xcc\\x83\\xd1\\x50\\xdc\\x09\\xb3\\x02\\x46\\x43\\x3a\\xa4\\x81\\x09\\x2c\\x90\\x01\\x53\\xc1\\x02\\x61\\x88\\x89\\xf7\\xec\\xda\\xe7\\x43\\x01\\xfc\\xca\\x3f\\x1e\\x04\\xe2\\x37\\x39\\x81\\x81\\x06\\xb4\\xe0\\x05\\xde\\xe0\\x03\\xbe\\xe0\\x07\\xfe\\xd0\\x03\\x02\\xa0\\x27\\x04\\x42\\x10\\xf4\\x82\\xde\\xd0\\x07\\xfa\\x42\\x3f\\xe8\\x0f\\x03\\xe0\\x1e\\x18\\x08\\x83\\x60\\x30\\xdc\\x0b\\x43\\xe0\\x3e\\xd0\\x41\\x30\\x0c\\x05\\x3d\\x0c\\x83\\xe1\\x30\\x02\\x46\\xc2\\x28\\xb8\\x1f\\x42\\x20\\x14\\x0c\\x10\\x06\\xe1\\x30\\x5a\\xb4\\x88\\x28\\x88\\x86\\x18\\x88\\x85\\x38\\x88\\x87\\x04\\x48\\x84\\x31\\xf0\\x00\\x8c\\x85\\x71\\x30\\x1e\\x1e\\x84\\x24\\x48\\x06\\x23\\x98\\xc0\\x0c\\x16\\x48\\x81\\x54\\x98\\x00\\x69\\x30\\x11\\x26\\x41\\x3a\\x3c\\x04\\x19\\x30\\x19\\x32\\x61\\x0a\\x64\\xc1\\x54\\x98\\x06\\xd3\\x61\\x06\\xcc\\x84\\x6c\\xc8\\x81\\x59\\xf0\\x30\\xcc\\x86\\x47\\x60\\x0e\\x3c\\x0a\\xb9\\x60\\x85\\xfd\\xb0\\x0a\\x9e\\x81\\xdf\\xc3\\x76\\xf8\\x1a\\x9e\\x85\\xf5\\xb0\\x16\\x76\\xc3\\x61\\x68\\x84\\x2a\\xc2\\xe0\\x69\\xd8\\x02\\x37\\xe0\\x7b\\x58\\x07\\x35\\xb0\\x9a\\x70\\xf8\\x04\\xfe\\x0d\\x7b\\xa0\\x19\\x7e\\x80\\x9b\\xf0\\x23\\x34\\xc0\\x46\\xb8\\x0e\\x9b\\xe0\\x5b\\x58\\x03\\xf5\\x70\\x15\\x4e\\xc1\\x3e\\xf8\\x8e\\x68\\xe0\\xef\\x44\\x4b\\xbc\\x88\\x37\\x7c\\x0e\\x5f\\x10\\x1f\\xe2\\x0b\\x12\\xb4\\x12\\x3f\\x38\\x48\\xfc\\x49\\x0f\\x12\\x40\\x7a\\x92\\x40\\x12\\x04\\xef\\xc3\\x65\\xf8\\x10\\x3e\\x82\\x8f\\xe1\\x33\\xf8\\x00\\x3e\\x25\\xbd\\x48\\x6f\\xd2\\x87\\xf4\\x25\\xfd\\x48\\x7f\\x32\\x80\\xdc\\x43\\x06\\x92\\x41\\x64\\x30\\xb9\\x97\\x0c\\x21\\xf7\\x11\\x1d\\x09\\x26\\x43\\x89\\x9e\\x0c\\x83\\xbd\\x64\\x38\\x19\\x41\\x46\\x92\\x51\\xe4\\x7e\\x12\\x42\\x42\\x89\\x81\\x84\\x91\\x70\\x32\\x1a\\x76\\x92\\x08\\x12\\x49\\xa2\\x48\\x34\\x89\\x21\\xb1\\x24\\x8e\\xc4\\x93\\x04\\x92\\x48\\xc6\\x90\\x07\\xc8\\x58\\x32\\x8e\\x8c\\x27\\x0f\\x92\\x24\\x92\\x4c\\x8c\\xc4\\x44\\xcc\\xc4\\x42\\x52\\x48\\x2a\\x99\\x40\\xd2\\xc8\\x44\\x32\\x89\\xa4\\x93\\x87\\x48\\x06\\x99\\x4c\\x32\\xc9\\x14\\x92\\x45\\xa6\\x92\\x69\\x64\\x3a\\x99\\x41\\x66\\x92\\x6c\\x92\\x43\\x66\\x91\\x87\\xc9\\x6c\\xf2\\x08\\x99\\x43\\x1e\\x25\\xb9\\xc4\\x4a\\xf2\\x48\\x3e\\x29\\x20\\x36\\x32\\x97\\xcc\\x23\\x85\\xa4\\x88\\xcc\\x27\\x0b\\x48\\x31\\x29\\x21\\xa5\\xc4\\x4e\\xca\\xc8\\x42\\x52\\x4e\\x2a\\x88\\x83\\x54\\x92\\x45\\x64\\x31\\x59\\x42\\x1e\\x23\\x4b\\xc9\\xe3\\x64\\x19\\x79\\x82\\x2c\\x27\\x4f\\x92\\x15\\xe4\\x29\\xb2\\x92\\x3c\\x4d\\x56\\x91\\x67\\xc8\\xb3\\xe4\\x39\\xb2\\x9a\\xac\\x21\\x55\\x64\\x2d\\xa9\\x26\\xeb\\xc8\\x7a\\xb2\\x81\\x6c\\x24\\x9b\\xc8\\x66\\xb2\\x85\\x6c\\x25\\xdb\\xc8\\x76\\x52\\x43\\x6a\\x49\\x1d\\xd9\\x41\\x76\\x92\\x5d\\x64\\x37\\xd9\\x43\\xf6\\x92\\x7a\\xb2\\x8f\\x34\\x90\\xfd\\xa4\\x91\\x1c\\x20\\x07\\xc9\\x21\\xd2\\x44\\x0e\\x93\\x66\\x72\\x84\\xb4\\x90\\xa3\\xe4\\x18\\x39\\x4e\\x24\\xd2\\x4a\\xda\\xc8\\xf3\\xe4\\x04\\x79\\x81\\x9c\\x24\\x2f\\x92\\x53\\xe4\\x25\\x72\\x9a\\xfc\\x8e\\x9c\\x21\\xbf\\x27\\x2f\\x93\\x3f\\x90\\xb3\\xe4\\x8f\\xe4\\x15\\xf2\\x27\\xf2\\x2a\\x79\\x8d\\x9c\\x23\\x7f\\x26\\xe7\\xc9\\x5f\\xc8\\xeb\\xe4\\x0d\\x72\\x81\\xc8\\xe4\\x22\\xf9\\x2b\\xb4\\xc1\\xf3\\xe4\\x4d\\x38\\x09\\x2f\\xc2\\xab\\xe4\\x2d\\x38\\x01\\x2f\\xc0\\x6b\\xb0\\x12\\x5e\\x81\\xe7\\xc8\\xdb\\x70\\x04\\xce\\xc1\\xcb\\xf0\\x07\\x38\\x43\\xfe\\x46\\xde\\x21\\xef\\x92\\xf7\\xc8\\xdf\\xc9\\xfb\\xe4\\x03\\x72\\x09\\xaa\\xc9\\x87\\xe4\\x23\\xf2\\x31\\xf9\\x84\\x7c\\x0a\\xb5\\xb0\\x03\\xea\\xe0\\x5f\\x70\\x00\\x36\\xc3\\x2e\\x38\\x04\\x1b\\x60\\x2b\\x6c\\x83\\x97\\xc8\\x67\\xe4\\x32\\xf9\\x9c\\x7c\\x41\\xbe\\x24\\xff\\x20\\x57\\xc8\\x57\\xe4\\x6b\\xf2\\x4f\\x72\\x95\\x7c\\x43\\xae\\x91\\x6f\\xc9\\x77\\xe4\\x5f\\xe4\\x3a\\xf9\\x37\\xb9\\x41\\xbe\\x27\\x37\\xc9\\x0f\\xe4\\x47\\xf2\\x1f\\x72\\x8b\\xfc\\x44\\x7e\\x26\\xbf\\x90\\xdb\\xe4\\x0e\\x71\\x92\\x76\\x0a\\x94\\x50\\x4a\\x19\\xe5\\x54\\x43\\xb5\\xd4\\x8b\\x7a\\x53\\x1f\\xea\\x4b\\xfd\\xa8\\x3f\\xed\\x41\\x03\\x68\\x4f\\x1a\\x48\\x83\\x68\\x2f\\xda\\x9b\\xf6\\xa1\\x7d\\x69\\x3f\\xda\\x9f\\x0e\\xa0\\xf7\\xd0\\x81\\x74\\x10\\x1d\\x4c\\xef\\xa5\\x43\\xe8\\x7d\\x54\\x47\\x83\\xe9\\x50\\xaa\\xa7\\xc3\\xe8\\x70\\x3a\\x82\\x8e\\xa4\\xa3\\xe8\\xfd\\x34\\x84\\x86\\x52\\x03\\x0d\\xa3\\xe1\\x74\\x34\\x8d\\xa0\\x91\\xd0\\x42\\xa3\\x68\\x34\\xfc\\x93\\xc6\\xd0\\x58\\x1a\\x07\\x47\\xe1\\x2f\\xf0\\x67\\x38\\x06\\x79\\x90\\x4f\\xe3\\xa1\\x00\\xde\\x00\\x1b\\x9c\\x87\\xd7\\xe1\\xaf\\x70\\x01\\x64\\xb8\\x08\\x73\\xe1\\x6f\\xf0\\x26\\xbc\\x05\\xc7\\x61\\x1e\\xbc\\x07\\xef\\xc0\\xbb\\x50\\x08\\xdf\\xc0\\x7c\\x28\\x82\\x05\\x50\\x02\\xc5\\x50\\x4a\\x13\\xc0\\x0e\\x0b\\xa1\\x4c\\x44\\x29\\x25\\x86\\x2f\\x82\\xc5\\xb0\\x04\\x96\\xc2\\x63\\xf0\\x38\\x3c\\x01\\xcb\\xe0\\x49\\x58\\x0e\\x2b\\xe0\\x29\\xb8\\x06\\xa7\\x69\\x22\\x1d\\x43\\x1f\\xa0\\x63\\xe9\\x38\\x3a\\x1e\\xee\\x80\\x93\\x3e\\x48\\x93\\x68\\x32\\x35\\x42\\x3b\\x01\\x6a\\xa2\\x66\\x6a\\xa1\\x29\\x34\\x95\\x4e\\xa0\\x69\\x74\\x22\\x9d\\x44\\xd3\\xe9\\x43\\x34\\x83\\x4e\\xa6\\x99\\x70\\x0b\\x7e\\xa2\\x53\\x68\\x16\\x9d\\x4a\\xa7\\xd1\\xe9\\x74\\x06\\x9d\\x49\\xb3\\x69\\x0e\\x9d\\x45\\x1f\\xa6\\xb3\\xe9\\x23\\x74\\x0e\\x7d\\x94\\xe6\\x52\\x2b\\xcd\\xa3\\xf9\\xb4\\x80\\xda\\xe8\\x5c\\x3a\\x8f\\x16\\xd2\\x22\\x3a\\x9f\\x2e\\xa0\\xc5\\xb4\\x84\\x96\\x52\\x3b\\x2d\\xa3\\x0b\\x69\\x39\\xad\\xa0\\x0e\\x5a\\x49\\x17\\xd1\\xc5\\x74\\x09\\x7d\\x8c\\x2e\\xa5\\x8f\\xd3\\x65\\xf4\\x09\\xba\\x9c\\x3e\\x49\\x57\\xd0\\xa7\\xe8\\x4a\\xf8\\x05\\x6e\\xd3\\xa7\\xe9\\x2a\\xf8\\x12\\xfe\\x41\\x9f\\xa1\\xcf\\xd2\\xe7\\xe8\\x6a\\xba\\x86\\x56\\xd1\\xb5\\xb4\\x9a\\xae\\xa3\\xeb\\xe9\\x06\\xba\\x91\\x6e\\xa2\\x9b\\xe9\\x16\\xba\\x95\\x6e\\xa3\\xdb\\x69\\x0d\\xad\\xa5\\x75\\x74\\x07\\xdd\\x09\\xbf\\xa3\\xbb\\xe8\\x6e\\xba\\x87\\xee\\x85\\x2b\\xf0\\x15\\xad\\xa7\\xfb\\x68\\x03\\xdd\\x4f\\x1b\\xe9\\x01\\x7a\\x90\\x1e\\xa2\\x4d\\xf4\\x30\\x6d\\xa6\\x47\\x68\\x0b\\x3d\\x4a\\x8f\\xd1\\xe3\\x54\\xa2\\xad\\xb4\\x8d\\x3e\\x4f\\x4f\\xd0\\x17\\xe8\\x49\\xfa\\x22\\x3d\\x45\\x5f\\xa2\\xa7\\xe9\\xef\\xe8\\x19\\xfa\\x7b\\xfa\\x32\\xfd\\x03\\x3d\\x4b\\xff\\x48\\x5f\\xa1\\x7f\\xa2\\xaf\\xd2\\xd7\\xe8\\x39\\xfa\\x67\\x7a\\x9e\\xfe\\x85\\xbe\\x4e\\xdf\\xa0\\x17\\xa8\\x4c\\x2f\\xd2\\xbf\\xd2\\x37\\xe9\\x5b\\xf4\\x6d\\xfa\\x37\\xfa\\x0e\\x7d\\x97\\xbe\\x47\\xff\\x4e\\xdf\\xa7\\x1f\\xd0\\x4b\\xf4\\x43\\xfa\\x11\\xfd\\x98\\x7e\\x42\\x3f\\xa5\\x9f\\xd1\\xcb\\xf4\\x73\\xfa\\x05\\xfd\\x92\\xfe\\x83\\x5e\\xa1\\x5f\\xd1\\xaf\\xe9\\x3f\\xe9\\x55\\xfa\\x0d\\xbd\\x46\\xbf\\xa5\\xdf\\xd1\\x7f\\xd1\\xeb\\xf4\\xdf\\xf4\\x06\\xfd\\x9e\\xde\\xa4\\x3f\\xd0\\x1f\\xe9\\x7f\\xe8\\x2d\\xfa\\x13\\xfd\\x99\\xfe\\x42\\x6f\\xd3\\x3b\\xd4\\x49\\xdb\\x19\\x30\\xc2\\x28\\x63\\x8c\\x33\\x0d\\xd3\\x32\\x2f\\xe6\\xcd\\x7c\\x98\\x2f\\xf3\\x63\\xfe\\xac\\x07\\x0b\\x60\\x3d\\x59\\x20\\x0b\\x62\\xbd\\x58\\x6f\\xd6\\x87\\xf5\\x65\\xfd\\x58\\x7f\\x36\\x80\\xdd\\xc3\\x06\\xb2\\x41\\x6c\\x30\\xbb\\x97\\x0d\\x61\\xf7\\x31\\x1d\\x0b\\x66\\x43\\x99\\x9e\\x0d\\x63\\xc3\\xd9\\x08\\x36\\x92\\x8d\\x62\\xf7\\xb3\\x10\\x16\\xca\\x0c\\x2c\\x8c\\x85\\xb3\\xd1\\x2c\\x82\\x45\\xb2\\x28\\x16\\xcd\\x62\\x58\\x2c\\x8b\\x63\\xf1\\x2c\\x81\\x25\\xb2\\x31\\xec\\x01\\x36\\x96\\x8d\\x63\\xe3\\xd9\\x83\\x2c\\x89\\x25\\x33\\x23\\x33\\x31\\x33\\xb3\\xb0\\x14\\x96\\xca\\x26\\xb0\\x34\\x36\\x91\\x4d\\x62\\xe9\\xec\\x21\\x96\\xc1\\x26\\xb3\\x4c\\x36\\x85\\x65\\xb1\\xa9\\x6c\\x1a\\x9b\\xce\\x66\\xb0\\x99\\x2c\\x9b\\xe5\\xb0\\x59\\xec\\x61\\x36\\x9b\\x3d\\xc2\\xe6\\xb0\\x47\\x59\\x2e\\xb3\\xb2\\x3c\\x96\\xcf\\x0a\\x98\\x8d\\xcd\\x65\\xf3\\x58\\x21\\x2b\\x62\\xf3\\xd9\\x02\\x56\\xcc\\x4a\\x58\\x29\\xb3\\xb3\\x32\\xb6\\x90\\x95\\xb3\\x0a\\xe6\\x60\\x95\\x6c\\x11\\x5b\\xcc\\x96\\xb0\\xc7\\xd8\\x52\\xf6\\x38\\x5b\\xc6\\x9e\\x60\\xcb\\xd9\\x93\\x6c\\x05\\x7b\\x8a\\xad\\x64\\x4f\\xb3\\x55\\xec\\x19\\xf6\\x2c\\x7b\\x8e\\xad\\x66\\x6b\\x58\\x15\\x5b\\xcb\\xaa\\xd9\\x3a\\xb6\\x9e\\x6d\\x60\\x1b\\xd9\\x26\\xb6\\x99\\x6d\\x61\\x5b\\xd9\\x36\\xb6\\x9d\\xd5\\xb0\\x5a\\x56\\xc7\\x76\\xb0\\x9d\\x6c\\x17\\xdb\\xcd\\xf6\\xb0\\xbd\\xac\\x9e\\xed\\x63\\x0d\\x6c\\x3f\\x6b\\x64\\x07\\xd8\\x41\\x76\\x88\\x35\\xb1\\xc3\\xac\\x99\\x1d\\x61\\x2d\\xec\\x28\\x3b\\xc6\\x8e\\x33\\x89\\xb5\\xb2\\x36\\xf6\\x3c\\x3b\\xc1\\x5e\\x60\\x27\\xd9\\x8b\\xec\\x14\\x7b\\x89\\x9d\\x66\\xbf\\x63\\x67\\xd8\\xef\\xd9\\xcb\\xec\\x0f\\xec\\x2c\\xfb\\x23\\x7b\\x85\\xfd\\x89\\xbd\\xca\\x5e\\x63\\xe7\\xd8\\x9f\\xd9\\x79\\xf6\\x17\\xf6\\x3a\\x7b\\x83\\x5d\\x60\\x32\\xbb\\xc8\\xfe\\xca\\xde\\x64\\x6f\\xb1\\xb7\\xd9\\xdf\\xd8\\x3b\\xec\\x5d\\xf6\\x1e\\xfb\\x3b\\x7b\\x9f\\x7d\\xc0\\x2e\\xb1\\x0f\\xd9\\x47\\xec\\x63\\xf6\\x09\\xfb\\x94\\x7d\\xc6\\x2e\\xb3\\xcf\\xd9\\x17\\xec\\x4b\\xf6\\x0f\\x76\\x85\\x7d\\xc5\\xbe\\x66\\xff\\x64\\x57\\xd9\\x37\\xec\\x1a\\xfb\\x96\\x7d\\xc7\\xfe\\xc5\\xae\\xb3\\x7f\\xb3\\x1b\\xec\\x7b\\x76\\x93\\xfd\\xc0\\x7e\\x64\\xff\\x61\\xb7\\xd8\\x4f\\xec\\x67\\xf6\\x0b\\xbb\\xcd\\xee\\x30\\x27\\x6b\\xe7\\xc0\\x09\\xa7\\x9c\\x71\\xce\\x35\\x5c\\xcb\\xbd\\xb8\\x37\\xf7\\xe1\\xbe\\xdc\\x8f\\xfb\\xf3\\x1e\\x3c\\x80\\xf7\\xe4\\x81\\x3c\\x88\\xf7\\xe2\\xbd\\x79\\x1f\\xde\\x97\\xf7\\x83\\xff\\xf0\\xfe\\x7c\\x00\\xbf\\x07\\x38\\xcf\\x98\\x9e\\x9e\\xae\\x2d\\xb1\\xe6\\x97\\xdb\\x4b\\x03\\xca\\x6c\\xe5\\x45\\xf6\\x82\\x7c\\x5b\\xa9\\xc3\\x56\\x6e\\x2b\\xe0\\x13\\xf2\\xac\\xe5\\x34\\x6d\\x22\\x2d\\x9a\\xef\\xbf\\x60\\x5e\\xb9\\xcd\\x56\\x5a\\x6c\\x2d\\x2d\\x28\\xca\\x67\\x96\\xd2\\x79\\xcc\\x56\\x3a\\x4f\\x53\\x6c\\x2f\\x9d\\x57\\xa1\\x99\\x5c\\x68\\x2f\\x2f\\xd5\\xd8\\xc5\\xdf\\xe9\\xe2\\x6f\\xa5\\xf2\\xd7\\xab\\xb2\\xb4\\x28\\x22\\x2a\\x3a\\x5e\\x53\\x91\\x5f\\xb8\\xd8\\xaa\\xee\\xa5\\x44\\xfb\\xcc\\x2b\\xb7\\x2e\\xb2\\xe5\\xdb\\x4b\\xf2\\x7c\\xac\\xf9\\x95\\x0e\\x35\\xe5\\x28\\x2a\\x2e\\x10\\x29\\x5e\\x68\\xb7\\x2f\\x10\\xaa\\xd1\\x11\\x29\\xde\\x05\\x76\\x47\\x9e\\xad\\xd8\\xbe\\x58\\xe3\\xb0\\x97\\xda\\x2b\\x7a\\x14\\x14\\xd9\\xca\\x6d\\x15\\x45\\x15\\x62\\xcf\\xc7\\x5a\\x6a\\x77\\xd8\\x8a\\x6d\\x45\\x56\\x4d\\xaa\\xb5\\xa4\\xc4\\xaa\\x31\\xdb\\x8a\\x1d\\x56\\xcd\\xb4\\x42\\x9b\\xc3\\xaa\\x4d\\xb7\\x96\\xe4\\x15\\x58\\x69\\x76\\x11\\xcd\\x2c\\xd2\\x4c\\x2d\\x9a\\x57\\x62\\x65\\x99\\x85\\x45\\x2c\\xb3\\xa2\\x48\\x63\\x2d\\x2e\\x2b\\xb4\\xf2\\x3c\\x9b\\xc3\\xaa\\x99\\x27\\xf2\\x15\\x28\\xf9\\xbc\\x6c\\x65\\x15\\x45\\xc5\\xf6\\x52\\xbe\\xd4\\xe6\\xb0\\x32\\xe5\\xa4\\x43\\x01\\xe2\\x45\\x76\\x87\\x55\\x5b\\xac\\xa2\\x2d\\x29\\x62\\xe5\\x85\\x76\\x6d\\x85\\x02\\x17\\xa9\\x11\\x82\\x39\\xac\\x95\\x5e\\x95\\x6a\\x56\\x56\\x56\\x58\\xc4\\xca\\x2a\\x8a\\x34\\xf6\\x12\\xdb\\x3c\\xb5\\xb8\\xd1\\xe6\\x48\\x94\\x51\\x28\\xe3\\x84\\x8c\\x89\\x88\\x42\\x19\\x83\\x32\\x11\\x65\\x32\\x4a\\x23\\xca\\x14\\x55\\x46\\x46\\xa2\\x44\\xfd\\x48\\xc4\\x89\\x8c\\x47\\x99\\x80\\x12\\xf3\\x45\\x45\\xa3\\x44\\xbd\\x28\\xd4\\x8b\\x42\\xbd\\x28\\xe4\\x8b\\x42\\xbe\\x28\\x57\\x3e\\x13\\x4a\\x33\\x4a\\x0b\\x4a\\xb4\\x23\\x1a\\xed\\x88\\x46\\xfb\\xa3\\x91\\x27\\x1a\\xed\\x8a\\x46\\xbe\\x68\\xe4\\x8b\\x46\\xbe\\x68\\xe4\\x89\\x46\\x9e\\x68\\xe4\\x89\\x46\\x9e\\x68\\xc4\\x8f\\x41\\xdc\\x18\\xc4\\x8b\\x41\\xbc\\x18\\xc4\\x8b\\x41\\xbc\\x18\\xb4\\x3f\\x06\\x71\\x63\\x10\\x37\\x06\\x71\\x63\\x10\\x37\\x06\\xed\\x8f\\x41\\xfc\\x58\\xc4\\x8f\\x45\\xfc\\x58\\xc4\\x89\\x45\\x9c\\x58\\xc4\\x89\\x45\\xfd\\xb8\\x08\\x94\\x58\\xee\\x38\\x2c\\x6f\\x1c\\xe6\\x8f\\x8b\\x45\\x89\\x76\\xc6\\xa1\\x9d\\x71\\x68\\x67\\x1c\\xe2\\xc7\\x21\\x7e\\x1c\\xe2\\xc7\\xa1\\x9d\\x71\\x68\\x67\\x1c\\xda\\x19\\x87\\xbc\\xf1\\x68\\x67\\x3c\\xf2\\xc5\\x23\\x5f\\x3c\\xf2\\xc5\\x23\\x7e\\x3c\\xe2\\xc7\\x23\\x7e\\x3c\\xe2\\xc7\\x23\\x7e\\x3c\\xe2\\xc7\\x23\\x7e\\x3c\\xe2\\x27\\x60\\xb9\\x12\\xb0\\x5c\\x09\\xc8\\x97\\x80\\x7c\\x09\\xc8\\x97\\x80\\x7c\\x09\\x58\\xbe\\x04\\xe4\\x4d\\x40\\xde\\x04\\xc4\\x4d\\x40\\xdc\\x44\\xc4\\x4d\\x44\\xdc\\x44\\xc4\\x49\\x44\\x9c\\x44\\xb4\\x2b\\x11\\xed\\x4a\\x46\\xfd\\x64\\xd4\\x4f\\x46\\xfd\\x64\\xd4\\x4f\\x46\\xde\\x64\\xf4\\x6b\\x32\\xf2\\x27\\x23\\xbf\\x11\\xf5\\x8d\\xa8\\x6f\\xc4\\xf3\\x46\\xd7\\x79\\xf4\\x8b\\x11\\x79\\x8d\\xc8\\x6b\\xc2\\x72\\x9a\\x30\\xbf\\x09\\xf1\\x4d\\x98\\xdf\\x8c\\xd2\\x82\\xf6\\x59\\xd0\\xbe\\x14\\xc4\\x4b\\x51\\xfd\\x1c\\x1b\\x11\\x81\\x32\\x0a\\x65\\x34\\xca\\x18\\x94\\xb1\\x28\\xe3\\x50\\xc6\\xa3\\x4c\\x40\\x99\\x88\\x32\\x19\\xa5\\x0b\\xd7\\x84\\xd2\\x8c\\xd2\\x82\\x52\\xf5\\x73\\x6c\\xa4\\xe0\\x8d\\x8a\\x88\\x70\\xc9\\x48\\x94\\x51\\x28\\xa3\\x51\\xc6\\xa0\\x8c\\x45\\x19\\x87\\x32\\x1e\\x65\\x02\\xca\\x44\\x94\\xc9\\x28\\x8d\\x3d\\x2a\\x4b\\x0b\\x6c\\xe5\\x15\\xf9\\xf6\\x72\\x5b\\x41\\x5e\\x71\\x8f\\x85\\x95\\x76\\x65\\x44\\x58\\x64\\x2b\\xaf\\xb0\\x15\\xa8\\x3a\\x51\\x88\\x19\\x1f\\xe3\\x53\\x5a\\x51\\x29\\x06\\x8e\\x72\\x5e\\x5c\\x54\\x6e\\xd5\\x96\\xd9\\x2a\\x94\\xd8\\x69\\xa9\\x2c\\xb7\\x0b\\x95\\x48\\xa4\\x8f\\x8c\\x8c\\x46\\x19\\xe7\\x63\\xab\\x70\\x14\\x95\\x58\\x1d\\xb6\\x02\\x1f\\x7b\\xa9\\xcd\\x56\\x34\\xaf\\xd0\\x51\\xe8\\xef\\x28\\x2c\\xb7\\x61\\xba\\xc2\\x6f\\x6e\\xd1\\x22\\x57\\xda\\xbf\\xc2\\xb6\\xc8\\x56\\xea\\x3a\\x91\\x6f\\x2f\\x29\\xb1\\x5a\\xf3\\x95\\x31\\x4a\\x41\\x4b\\xb1\\xa4\\x08\\xa7\\xa4\\xa4\\xa4\\x98\\x50\\x9a\\x7d\\x96\\xda\\xca\\xed\\xe1\\x15\\x25\\xf9\\x65\\x5e\\x8e\\xc5\\xf6\\xf0\\x8a\\xca\\xb2\\xde\\xf9\\x45\\xe5\\xf9\\x95\\x25\\x73\\x8b\\x6d\\x4b\\xdc\\x63\\x4d\\xaf\\x8e\\x63\\xca\\xa8\\xa3\\x1c\\xf2\\x50\\x73\\x0f\\x53\\x1e\\xc7\\xdc\\x03\\x56\\x40\\x9e\\xe2\\x0b\\xb7\\x4a\\x90\\x87\\x4d\\xe5\\x76\\x87\\xd5\\x61\\xd3\\x26\\x0b\\x7a\\xad\\x51\\x15\\x26\\x55\\x98\\x55\\x61\\x51\\x45\\x8a\\x2a\\x52\\x55\\x31\\x41\\x15\\x69\\xaa\\x98\\xa8\\x8a\\x49\\xaa\\x48\\x57\\xc5\\x43\\xaa\\xc8\\x50\\xc5\\x64\\x55\\x4c\\x51\\x45\\x96\\x2a\\xa6\\xaa\\x62\\x9a\\x2a\\xa6\\xab\\x62\\x86\\x2a\\x66\\xaa\\x22\\x5b\\x15\\x39\\xaa\\x98\\x25\\x44\\x0f\\x51\\x1e\\x97\\x17\\xbc\\xed\\xa5\\x36\\x71\\xd8\\x5b\\x78\\xaf\\x24\\xbf\\xcc\\x57\\x54\\x8d\\x48\\xfa\\xcc\\xb5\\x57\\x96\\x63\\xaa\\x68\\x11\\xea\\x55\\x14\\x2d\\x51\\xf5\\x44\\x4d\\xa9\\x49\\x51\\x5f\\xaa\\x62\\x69\\x91\\x0b\\x50\\xad\\x98\\xca\\x32\\x2f\\x41\\x51\\x59\\xa6\\x3a\\xd2\\x63\\x22\\xa0\\xf2\\x54\\x96\\x79\\xab\\x34\\x4a\\x42\\xb0\\x54\\x96\\x79\\x09\\x92\\xca\\x32\\x1f\\xe4\\xa8\\x2c\\xf3\\x41\\x8a\\xca\\x32\\x6f\\x95\\xa1\\xb2\\xcc\\x3b\\xbf\\xdc\\x5e\\x51\\x91\\x67\\x2d\\xf7\\x29\\x2f\\x2a\\x9d\\x27\\x70\\x7d\\x0a\\xac\\x15\\x45\\x56\\xfb\\x92\\x22\\xab\\x4a\\xe6\\xae\\x7f\\xbf\\xfc\\xc7\\xca\\x8b\\x8a\\x8b\\x8b\\xf2\\x1d\\x45\\xf9\\x81\\xae\\xb4\\xe2\\x83\\x62\\xdb\\x5c\\x87\\xbf\\xe7\\x01\\xcd\\xbc\\x70\\x6b\\xb1\\x23\\xa0\\xd8\\x5a\\x3e\\xcf\\x56\\x2e\\x9a\\xa1\\x72\\xb0\\x48\\x39\\xa8\\x29\\x56\\xfe\\x0a\\x8f\\x15\\x97\\x56\\x96\\xa0\\x03\\x94\\xa4\\x36\\x53\\x6d\\x81\\xf9\\x85\\xaa\\x62\\x96\\xf8\\x3b\\x49\\xf9\\xcb\\x8b\\xc2\\x8b\\x1c\\xbc\\x38\\xbc\\xc8\\x21\\xfc\\x60\\x2d\\x76\\x68\\xad\\x0e\\x45\\xf4\\xb0\\x96\\x94\\xd9\\xca\\x2b\\xac\\xa5\\x05\\xca\\x9e\\x6f\\xaa\\xad\\xbc\\xc4\\x5a\\x5a\\x90\\x57\\x5c\\xd1\\xb3\\x23\\xa9\\x56\\x98\\xcb\\x3c\\x51\\x24\\x11\\x14\\x22\\x92\\xcd\\x5a\\x73\\x7e\\xb9\\xdd\\xea\\xe0\\x85\\x79\\xd6\\x72\\x3e\\x4d\\xf9\\xe3\\xc8\\xb3\\x96\\xfb\\x26\\xbb\\x7d\\xe1\\x6b\\x75\\x27\\xbd\\x92\\xd5\\x29\\x9f\\x97\\x55\\x95\\xda\\x64\\x01\\xa5\\xb5\\xaa\\x88\\xc9\\xf6\\x79\\xf6\\x52\\xdb\\x02\\x2f\\xab\\x2a\\xfd\\x4c\\x1d\\xbd\\xc0\\x2f\\xbf\\x23\\x2d\\x98\\x23\\x31\\x7c\\x45\\x46\\x18\\xb5\\xe6\\x7c\\xab\\x02\\x56\\x20\\x84\\x97\\x05\\x39\\x6c\\xc8\\x61\\x51\\x39\\x6c\\x42\\xf8\\x5a\\x0a\\xec\\x0e\\xb5\\xd3\\xf8\\xda\\xdc\\x49\\x2f\\x0b\\x32\\xdb\\x54\\xa9\\xb5\\xa8\\x88\\x36\\x21\\xfc\\x52\\x3d\\xec\\x98\\xd7\\xd5\\x8e\\xa8\\x08\\x94\\x91\\xfe\\xa9\\x1e\\x5d\\xd2\\x7f\\x9e\\xc7\\x8e\\xdf\\x04\\x0f\\x84\\xc2\\x8e\\xb4\\x36\\x4d\\x34\\x0c\\x6d\\x91\\x10\\x5e\\x69\\x68\\x79\\x11\\x5a\\x9e\\xa6\\x5a\\x5e\\xa4\\x7a\\x27\\x0d\\x6d\\x2c\\x52\\xa5\\x6f\\x9a\\xdb\\x7c\\xbf\\x89\\x1e\\xf0\\xf3\\x3b\\xd2\\xfe\\x93\\x3c\\x0d\\x5a\\xe0\\xb1\\xa3\\x4d\\x17\\xf5\\xa1\\x2d\\x16\\xc2\\x3f\\xdd\\x53\\xaf\\xb8\\x93\\x9e\\xea\\x88\\x62\\x21\\x78\\x7a\\x81\\xdd\\xc1\\x8b\\x0b\\xec\\x0e\\x6d\\x86\\x9a\\xbf\\x54\\xcd\\x9f\\xe1\\x99\\xbf\\xd4\\x33\\x7f\\x86\\x9a\\xbf\\x54\\x75\\x64\\xa9\\xb5\\xcc\\x5e\\xe1\\x28\\xb7\\x97\\x15\\xda\\xbc\\x26\\x63\\x61\\xed\\x58\\xd8\\xc9\\x6a\\x61\\xed\\x42\\xf4\\x98\\x5c\\x58\\x59\\x3a\\xcf\\x5a\\x5e\\x59\\x52\\x6c\\xad\\x74\\xf4\\xb0\\x7b\\xee\\x69\\xb3\\x54\\xee\\x72\\x95\\x3b\\xcb\\x93\\xbb\\xdc\\x93\\x3b\\x4b\\xe5\\x2e\\x57\\xc5\\x54\\x35\\x57\\x85\\x10\\x7e\\x53\\x3d\\x3c\\x56\\xd1\\xa5\\x4a\\xa3\\x70\\x66\\x1b\\x15\\x99\\x88\\x32\\x19\\xa5\\x3a\\x52\\x46\\xc6\\x45\\xf9\\xa3\\x54\\x7b\\x9b\\xba\\x13\\xad\\x9d\\xa6\\x32\\x39\\x54\\x31\\x5d\\xad\\xdb\\x4a\\xb5\\x6e\\xa7\\x63\\x71\\x2b\\xb1\\xb8\\xd3\\xd5\\xe2\\x56\\x0a\\xa1\\x99\\xae\\x74\\x11\\x4d\\xa5\\xf2\\xb7\\xc7\\xf4\\x4e\\x45\\xaf\\xf4\\xdc\\xf3\\x9a\\x8e\\x6d\\xa0\\x12\\x7b\\xc8\\x4c\\x8f\\x62\\x2c\\xf6\\x48\\xe7\\x78\\xa4\\x1f\\xf3\\x68\\x6f\\xb3\\x54\\x27\\x2c\\x55\\x3b\\xe6\\xac\\x8e\\xbe\\xb0\\xb4\\xa3\\x2f\\x24\\x5b\\xd4\\xbe\\x6a\\x55\\x43\\xa4\\xdf\\xe4\\x8a\\x62\\x6b\\x45\\xa1\\x9a\\xb6\\x7b\\xa4\\xd5\\x7e\\xaf\\x86\\x58\\x8b\\xa3\\x50\\x8d\\xba\\x4a\\x00\\x10\\x29\\xbf\\x64\\x31\\x52\\x61\\x5a\\xe4\\x10\\xe9\\xc0\\xe4\\x0e\\x73\\xf0\\xa4\\x70\\x90\\x48\\x07\\x24\\xbb\\x2e\\xb7\\xd4\\x70\\x2e\\x82\\x88\\x48\\xf6\\xec\\x88\\x27\\x6a\\x2c\\x32\\xe5\\xdb\\x0a\\x8a\\x8a\\x8b\\xad\\x2a\\x86\\xc5\\x83\\xcc\\xe2\\x41\\x66\\xe9\\x42\\x16\\x60\\xe9\\x44\\xe0\\x97\\xe6\\x91\\x2f\\xcd\\x23\\x5f\\x5a\\xd7\\x7c\\x69\\x9d\\xf3\\x65\\x74\\xd8\\xec\\x37\\xd9\\x03\\x63\\xb2\\x07\\xc6\\xe4\\xae\\x05\\x9d\\xec\\x51\\xd0\\xc9\\x9d\\xf1\\xa6\\x7b\\x60\\x4c\\xf7\\xc0\\x98\\xde\\xd5\\x8e\\xe9\\x9d\\xf3\\xe5\\x74\\xe8\\xfa\\x63\\x6c\\x45\\xa7\\x8a\\x76\\x85\\x27\\xd4\\xc6\\xa2\\x9e\\x30\\x79\\xa0\\x9b\\xba\\xa0\\xfb\\x63\\x60\\x45\\x4d\\xd1\\x8c\\xd5\\xb4\\xb9\\x23\\xed\\x6f\\xf1\\xe4\\xb1\\x74\\xf0\\xf4\\xec\\x08\\xad\\xa8\\xe8\\xc9\\x6b\\xe9\\x40\\x08\\x4c\\xed\\xea\\x99\\x54\\x0f\\x6b\\x31\\xa8\\x8a\\x9d\\x20\\xcf\\x88\\xaa\\xe6\\x9d\\xd0\\x35\\x6f\\x5a\\x87\\x57\\xfd\\xd3\\x3c\\x4d\\x4b\\xf3\\x00\\x4d\\xf3\\x30\\xa5\\x67\\x5a\\x67\\x3b\\x03\\x27\\x76\\x81\\x0c\\x9a\\xd4\\x95\\xd5\\x2f\\xbd\\xc3\\x6b\\x41\\xe9\\xdd\\xcf\\x76\\x94\\xcd\\x47\\x09\\x91\\xd8\\x46\\x3c\\xf2\\x64\\x74\\xcb\\x93\\xe1\\xe1\\xd1\\xc9\\x9e\\x66\\x4f\\xee\\x30\\xbb\\x57\\xa7\\x28\\xa8\\x9e\\xce\\xf2\\x40\\xcd\\xea\\x86\\x9a\\xe5\\x51\\x67\\x53\\x3d\\x6a\\x7a\\x6a\\x97\\x22\\xf6\\x98\\xda\\xa9\\xfb\\x4c\\xed\\xc8\\x16\\x34\\xad\\x1b\\xe8\\x34\\x0f\\xd0\\xe9\\x1e\\xde\\x9e\\xee\\x69\\xf6\\xf4\\x0e\\xb3\\x7d\\xa7\\xbb\\xbb\\x6d\\xaf\\xe9\\xdd\\x4a\\xe0\\x3f\\xdd\\xa3\\x2e\\x02\\x67\\x76\\x31\\x2c\\x30\\xa7\\x6b\\x8b\\xcf\\xe9\\xdc\\xe2\\x67\\x75\\x94\\xaa\\xe7\\xac\\xce\\x15\\xe9\\x37\\xab\\xc3\\x50\\xdf\\xe4\\xe2\\xb2\\x42\\xab\\x58\\xb4\\xf1\\xb7\\xa8\\x6b\\x25\\x62\\xc7\\xdb\\xe2\\x50\\x8f\\xfa\\xa4\\xd9\\x31\\xe5\\x3f\\xb9\\xa4\\x48\\x29\\x87\\xba\\x33\\xdd\\x43\\xd9\\x77\\x72\\x89\\x6d\\x9e\\xaa\\x14\\x54\\x64\\x77\\x58\\x3b\\xad\\x05\\x69\\x04\\x03\\x37\\xda\\x1c\\x56\\x2f\\x64\\xe0\\xb3\\x6c\\x0e\\x2b\\xb3\\x38\\xac\\x5c\\x01\\xd7\\x4c\\xb2\\x96\\x95\\x59\\xe9\\x43\\x95\\x34\\xa3\\xd2\\x0b\\x39\\x58\\x56\\xa1\\x9d\\x4d\\xb3\\x56\\x7a\\x21\\x0d\\x33\\x15\\x16\\xf9\\xa7\\x79\\x40\\xf7\\xc4\\x13\\xae\\x7d\\x5f\\x6b\\x47\\x39\\x6c\\x9e\\xe5\\xb0\\xb9\\xca\\x51\\xe4\\x2a\\x47\\x9f\\xca\\xce\\x59\\x55\\x2b\\x17\\x28\\x46\\x78\\xd9\\x55\\x7a\\x31\\x52\\x45\\x1b\\x4d\\xb4\\xb4\\x92\\xe5\\x17\\x16\\xf9\\x7b\\x16\\xaa\\x67\\x97\\xec\\xfe\\x76\\x4f\\xb7\\x54\\x7a\\xba\\xc5\\xee\\x76\\x8b\\x7a\\x65\\x1a\\x81\\x57\\xaa\\x78\\x25\\x1a\\x83\\x57\\xa0\\x31\\x11\\xae\\x95\\x27\\xbc\\xd2\\x8d\\x70\\xad\\x18\\xb9\\x56\\x9c\\xf0\\x0a\\x19\\xaf\\x34\\x63\\x22\\xf1\\xca\\x37\\x12\\x57\\x06\\x22\\x11\\x2f\\x12\\xf1\\x70\\x3c\\x8e\\x89\\xc4\\x7c\\x91\\x78\\x65\\x1d\\xe9\\xca\\x8f\\x2b\\x02\\x38\\x25\\x8b\\x89\\x42\\xbb\\xa2\\x10\\x2f\\x0a\\xaf\\xbc\\xa3\\x10\\x2f\\x1a\\xf5\\xa2\\x5d\\xfb\\x88\\x1f\\xed\\x5a\\xc1\\xc1\\xf3\\x31\\x88\\x13\\x83\\xf6\\xc4\\xa0\\x7e\\x2c\\x1e\\x8f\\xc5\\xe3\\xb1\\xae\\xe3\\x58\\xee\\x58\\x2c\\x77\\x2c\\x96\\x3b\\x16\\xed\\x8e\\xb5\\x68\\x67\\x8a\\x80\\xaf\\x5d\\xac\\x8a\\x99\\xea\\xb0\\xbc\\x58\\xbd\\x76\\x98\\xe9\\xaa\\x02\\x9f\\xc5\\xae\\x94\\x36\\x47\\x55\\x7c\\x4c\\x15\\x25\\x45\\xa5\\x62\\x2e\\x63\\xcb\\xb7\\x97\\x16\\xf8\\xd8\\x96\\xe4\\x17\\x5b\\x4b\\x0a\\xf2\\x8a\\xd5\\x89\\x48\\x8a\\x6a\\x75\\x94\\xba\\xfe\\x10\\x69\\x51\\x4b\\x13\\x69\\x51\\xd7\\xbb\\x22\\x2d\\xea\\xf5\\x7b\\xa4\\x45\\xad\\xb5\\xc8\\x14\\xd7\\xba\\x15\\xae\\x2b\\xc4\\xe0\\xf5\\x7f\\x4c\\x2c\\xee\\xc7\\xba\\xd6\\x73\\x70\\x3f\\x1e\\x4b\\x1d\\x8f\\xa5\\x8c\\xc7\\x52\\x26\\x62\\x29\\x13\\xd1\\x8b\\xc9\\x58\\xcb\\xc9\\xb8\\x3e\\x94\\x8c\\x5e\\x4d\\xc6\\x5a\\x32\\x21\\x9e\\x09\\xf1\\x4c\\x58\\x4b\\x26\\x3c\\x6f\\xc6\\xf3\\xb8\\x9e\\x19\\x83\\xeb\\x99\\x31\\x66\\xf4\\xb6\\x19\\x6b\\xd3\\x8c\\x5e\\x77\\xad\\x73\\x9a\\xd1\\x1e\\x33\\xf2\\x9b\\xd1\\x1e\\x33\\xda\\x61\\xc6\\x5a\\x30\\x63\\xb9\\xcc\\x68\\x97\\x19\\x79\\x2d\\xc8\\x63\\x41\\x1e\\x0b\\xf2\\x58\\x90\\xc7\\x82\\x3c\\x16\\xe4\\xb1\\xb8\\xd6\\x6d\\x90\\xc7\\x82\\xbc\\x16\\xe4\\xb3\\x20\\x9f\\x05\\xf9\\x2c\\xc8\\x67\\x41\\x3e\\xac\\xaf\\x98\\x14\\xd7\\x7a\\x0f\\xf2\\xa7\\x20\\x7f\\x0a\\xf2\\xa7\\x20\\x7f\\x0a\\xf2\\xa5\\x20\\x5f\\x0a\\xe2\\xa7\\xb8\\xd6\\x6d\\x54\\x9c\\x58\\xec\\x45\\xb1\\x6a\\x2f\\x8a\\xb4\\x24\\x63\\xbd\\xab\\xeb\\x5e\\x91\\x96\\xe4\\x28\\x94\\xae\\xf3\\x31\\x28\\x63\\x51\\xc6\\xa1\\x8c\\x47\\x99\\x80\\x32\\x11\\x65\\x32\\x4a\\x23\\x4a\\x6c\\x6f\\xc9\\x66\\x94\\xd8\\xee\\x92\\xb1\\xdd\\x19\\x91\\xdf\\x88\\xfc\\x46\\xe4\\x37\\x22\\xbf\\x11\\xf9\\x8d\\xc8\\x6f\\x44\\x7e\\x23\\xf2\\x1b\\x91\\xdf\\x88\\xfc\\x46\\xe4\\x37\\x22\\xbf\\xab\\xbd\\x1b\\x91\\xdf\\x88\\xfc\\x46\\xe4\\x37\\x21\\xbf\\x09\\xf9\\x4d\\xc8\\x6f\\x42\\x7e\\x13\\xf2\\x9b\\x90\\xdf\\x84\\xfc\\x26\\xe4\\x37\\x21\\xbf\\x09\\xf9\\x4d\\xc8\\x6f\\x42\\x7e\\x13\\xf2\\x9b\\x90\\xdf\\x84\\xfc\\x26\\xe4\\x37\\x23\\xbf\\x19\\xf9\\xcd\\xc8\\x6f\\x46\\x7e\\x33\\xf2\\x9b\\x91\\xdf\\x8c\\xfc\\x66\\xe4\\x37\\x23\\xbf\\x19\\xf9\\xcd\\xc8\\x6f\\x46\\x7e\\x33\\xf2\\x9b\\x91\\xdf\\x8c\\xfc\\x66\\xe4\\xb7\\x20\\xbf\\x05\\xf9\\x2d\\xc8\\x6f\\x41\\x7e\\x0b\\xf2\\x5b\\x90\\xdf\\x82\\xfc\\x16\\xe4\\xb7\\x20\\xbf\\x05\\xf9\\x2d\\xc8\\x6f\\x41\\x7e\\x0b\\xf2\\x5b\\x90\\xdf\\x82\\xfc\\x16\\xe4\\x4f\\x41\\xfe\\x14\\xe4\\x4f\\x41\\xbe\\x14\\xe4\\x4b\\x41\\xbe\\x14\\xe4\\x4b\\x41\\xbe\\x94\\x44\\x6d\\x81\\xb8\\xd4\\xf0\\x12\\x4b\\x7f\\xae\\x70\\x92\\x88\\xdd\\x2c\\xd1\\x15\\x5e\\xb0\\xdb\\x24\\x63\\xb7\\x49\\xc6\\x6e\\x91\\x8c\\xdd\\xce\\x88\\xe7\\x8d\\x78\\xde\\x88\\xdd\\xd8\\xe8\\x5a\\x86\\x45\\x1c\\x93\\xab\\x3b\\xe1\\xf9\\x14\\x57\\x78\\xc3\\xfd\\x44\\xdc\\x37\\x62\\x37\\x36\\x62\\x37\\x36\\x62\\xfe\\x04\\xe4\\x4b\\x70\\x2d\\xb7\\x23\\x6f\\xa2\\x4b\\x22\\x7f\\x22\\xe6\\x4f\\x74\\x2d\\x8f\\x63\\x79\\x12\\x5c\\x76\\x60\\xf7\\x36\\xe1\\x71\\x93\\x6b\\x19\\x19\\xf3\\x99\\x30\\x1c\\x98\\x5c\\xe5\\xc0\\x30\\x62\\x74\\x85\\x11\\xd4\\x4b\\x71\\x2d\\xdf\\xe2\\x72\\x2d\\x0e\\xa6\\xb8\\x6c\\x1b\\x11\\x11\\x91\\xa8\\xbe\\x7f\\x4f\\xd4\\xdf\\x12\\xfa\\x1f\\xfe\\xbd\\x04\\x2f\\x41\\x0d\\xd4\\x68\\x24\\x00\\x3e\\x06\\xc0\\x99\\xeb\\x9d\\x77\\xe7\\x5d\\xcd\\xab\\xed\\xd7\\x78\\x46\\xfb\\x35\\xe7\\x24\\xf1\\x1e\\xbf\\x87\\x8e\\x46\\xe2\\x63\\xda\\xaf\\x75\\x68\\x69\\x5e\\x13\\x7a\\xb9\\xdd\\xf4\\x2e\\x77\\x46\\xd3\\x5c\\xf6\\xc0\\x8b\\x82\\x28\\x09\\x0c\\x3a\\x09\\xa6\\x67\\x5b\\x72\\x74\\xba\\x49\\xa7\\x20\\x60\\xca\\x24\\x49\\x3b\\x75\\x56\\xb6\\x14\\x33\\x48\\x1a\\x95\\x93\\x3b\\x57\\x57\\x35\\x3d\\x5b\\xa2\\xc3\\xad\\x2f\\x79\\x83\\x37\\xe4\\xe7\\xeb\\xf3\\x06\\x05\\x07\\x4b\\x90\\x23\\x81\\x49\\x6f\\x6e\\x03\\x02\\xa6\\x5c\\x63\\x98\\x44\\x0c\\x92\\x2e\\x77\\x6e\\x98\\x44\\x0d\\xba\\x02\\x9d\\x74\\x36\\x53\\xe2\\x23\\x66\\xb5\\x8d\\x22\\xbe\\x26\\x4b\\xbe\\x25\\xeb\\xe1\\xec\\x60\\x7d\\xf0\\xa0\\xaa\\x6c\\x9d\\x94\\x99\\x99\\x1d\\x2c\\x25\\xe5\\x0c\\xd2\\x49\\x09\\x4a\\x2a\\x21\\x27\\x47\\xd7\\xaa\\x2a\\x59\\x0b\\xa4\\x51\\x99\\xd9\\xc1\\xb8\\xa7\\x93\\x22\\x94\\xf3\\x11\\x8a\\xe6\\xd9\\xcc\\x6c\\xdd\\x5c\\x5d\\x55\\x95\\x55\\x27\\xf9\\x66\\x66\\xe7\\x0e\\xd2\\x49\\x3a\\xe5\\x9c\\xaf\\x92\\x8a\\x53\\x52\\x71\\xb9\\x83\\x72\\x73\\x72\\x72\\x06\\x49\\x24\\x34\\x27\\x47\\x2f\\x41\\x66\\xb6\\x2d\\x27\\x27\\x4c\\x62\\x06\\x9d\\x45\\x27\\xf1\\xe1\\xd6\\x02\\x9d\\xa4\\x31\\x65\\x66\\x4b\\x1a\\xbd\\x51\\xd2\\xea\\x8d\\x83\\x82\\x83\\x73\\x24\\x92\\x1b\\x26\\x71\\x83\\x3e\\x58\\x1f\\xac\\x2b\\x68\\xd5\\xe4\\x19\\x75\\xca\\x19\\x95\\x5c\\xf9\\x2b\\xf1\\x5c\\x4b\\xbe\\xc4\\x42\\x82\\x75\\x92\\xd6\\xa4\\xab\\xd2\\x55\\x49\\x24\\xb4\\x35\\x42\\x33\\x5c\\xe2\\x23\\xa6\\x64\\xe7\\x66\\x0e\\xb2\\x66\\xe5\\x64\\xeb\\x73\\x82\\x75\\x52\\xd2\\xd4\\x6c\\x89\\x84\\x0e\\x52\\x0a\\x85\\xcc\\x61\\x92\\xc6\\x20\\x79\\x99\\x42\\xdb\\x80\\xaa\\xae\\xd1\\x1a\\x24\\x2f\\xbd\\x51\\xaf\\x93\\x40\\x6f\\xb4\\x4a\\x34\\x6f\\xae\\x44\\xf2\\x25\\x92\\x2b\\x69\\x42\\xc2\\x24\\x2f\\x83\\x4e\\x31\\xd2\\xcf\\x94\\x7f\\x8a\\x43\\x9e\\x4e\\x41\\x90\\x92\\x72\\x73\\x14\\x95\\x5c\\xb3\\x30\\xd2\\xdb\\xd0\\xe6\\xe5\\x07\\x26\\x8b\\x31\\x24\\xd8\\xed\\x6c\\x1f\\x43\\x67\\xe7\\xfb\\xaa\\x28\\x24\\x54\\x2f\\x81\\x49\\xe2\\xc3\\x73\\x75\\x96\\x2a\\xbd\\x55\\xa9\\x08\\xe1\\x29\\x18\\xa4\\x78\\x53\\xd2\\x0d\\x92\\x92\\xdc\\xfe\\x91\\xd8\\x70\\xbd\\xd5\\xac\\x52\\xf8\\xdd\\x25\\xbb\\x34\\x2c\\x33\\x5b\\xc9\\x9c\\xf4\\x6b\\x99\\xfc\\x0d\\xa2\\x40\\x6d\\x7e\\xbe\\xcc\\x92\\x1d\\x3c\\x48\\x1f\\x9c\\x13\\x12\\x1c\\x26\\xf5\\x30\\xb4\\x52\\x6a\\x91\\x0a\\xac\\xe6\\x30\\x29\\xc0\\x20\\x91\\x5c\\x9d\\x4e\\xf2\\x37\\x4d\\x54\\xb2\\xeb\\x24\\x7f\\xbd\\x31\\x47\\xea\\xa1\\xec\\x65\\x65\\xeb\\xa4\\x1e\\x7a\\x63\\x4e\\x98\\xd4\\xd3\\xa0\\x93\\x02\\x85\\x4b\\x74\\xa7\\x38\\xe4\\x57\\xe9\\xad\\x52\\x80\\x29\\x57\\x57\\x95\\xab\\x93\\x02\\xf4\\x46\\x7d\\x98\\x14\\x68\\x98\\x34\\x2d\\xbb\\x95\\x17\\x98\\x73\\x86\\x49\\x3d\\x6c\\xfa\\x25\\x61\\x52\\x90\\x61\\xd2\\x94\\xec\\x49\\x53\\xd5\\x83\\x83\\x82\\x73\\x86\\x49\\xbd\\xc5\\xf1\\x5e\\x86\\x56\\xe8\\x69\\x9a\\x9e\\xdd\\xda\\xb3\\xa7\\x49\\x22\\x56\\xa3\\xd4\\x33\\x54\\x69\\xa4\\x12\\x1d\\x6e\\x6c\\xf5\\x57\\xfe\\xf4\\xa0\\xc3\\x8d\\x12\\xe9\\xa7\\xd7\\x49\\x6c\\x78\\x66\\x76\\xab\\xe2\\x3c\\x89\\x0f\\x37\\x56\\x55\\xe9\\x04\\x6d\\x48\\xb0\\x5e\\x22\\x56\\x57\\x7a\\x90\\x7a\\x5e\\xc9\\x42\\x87\\x8b\\x23\\x39\\x92\\xbf\\x29\\x55\\xea\\x61\\x4a\\xcd\\x95\\x68\\xe7\\xaa\\xba\\x4b\\x05\\xb6\\x02\\xf4\\xd6\\x9b\\x25\\x62\\x92\\x60\\x7c\\x1b\\x21\\x44\\xd4\\x55\\x6f\\x03\\xb4\\x02\\xb5\\x4c\\xcb\\x96\\x7a\\xea\\x8d\\x3a\\x8b\\xe4\\xa7\\x37\\x4a\\xbe\\x7a\\x89\\xe7\\x1a\\x75\\xb9\\x12\\xb1\\xbe\\x10\\x18\\x48\\x20\\x00\\x8c\\xc6\\xaa\\xdc\\xd6\\x5e\\xda\\x50\\xa9\\x32\\x74\\xd0\\xd0\\x9c\\x30\\xa9\\x8f\\xa1\\x15\\x7a\\x87\\x86\\x49\\x7d\\x0d\\xad\\x44\\x91\\xfd\\x0c\\xad\\x54\\x91\\xfd\\x0d\\xad\\x4c\\x91\\x03\\x0c\\xad\\x5c\\x91\\xf7\\x18\\x5a\\x35\\x8a\\x1c\\x68\\x68\\xd5\\x2a\\x72\\x90\\xa1\\xd5\\x4b\\x91\\x83\\x0d\\xad\\xde\\x8a\\xbc\\xd7\\xd0\\xea\\xa3\\xc8\\xfb\\x0d\\xba\\x70\\x89\\x3c\\x12\\x26\\x85\\x88\\xc4\\xc2\\x30\\x29\\x54\\x24\\xca\\xc3\\xa4\\x21\\x06\\x90\\x7a\\x84\\xfe\\x1f\\x6c\\xbc\\xcf\\xd0\\x0a\\x43\\x42\\xc3\\x24\\x9d\\xa1\\x95\\x28\\x32\\xd8\\xd0\\x4a\\x15\\x39\\xd4\\xd0\\xca\\x14\\xa9\\x37\\xb4\\x72\\x45\\x0e\\x33\\xb4\\x6a\\x14\\x39\\xdc\\xd0\\xaa\\x55\\xe4\\x08\\x43\\xab\\x97\\x22\\x47\\x1a\\x5a\\xbd\\x15\\x39\\xca\\xd0\\xea\\xa3\\x48\\x83\\x41\\x37\\x56\\x34\\xb5\\x30\\x83\\x2e\\x57\\x0a\\xcc\\xd5\\x99\\xf4\\x12\\xc9\\x35\\x89\\xea\\x20\\xb9\\x92\\x41\\x69\\x6f\\xe1\\x06\\x29\\x2c\\x54\\x0a\\x0b\\x09\\x93\\x46\\x1b\\x74\\xba\\x54\\xdd\\x5d\\x6a\\x42\\x6f\\x4d\\xd0\\x2b\\x61\\xec\\xbf\\x6a\\x0c\\x0a\\xce\\x09\\x93\\x22\\xdc\\xd5\\x43\\xfa\\x49\\xa3\\x43\\x5a\\x35\\xa4\\xaf\\x25\\x3b\\x22\\x47\\x14\\x30\\xd2\\xd3\\x33\\xdd\\x4f\\x47\\x19\\x74\\xb1\\xc2\\xde\\x68\\x03\\x48\\xc4\\xd2\\x9d\\x44\\x22\\xa1\\xbf\\x4a\\xae\\x1c\\x87\\x7e\\x27\\xc4\\x10\\x60\\x1e\\xaf\\x4f\\x68\\x8d\\x22\\x7d\\x43\\xc2\\xa4\\x18\\x83\\x6e\\xac\\x2e\\xf5\\x2e\\xf6\\x4a\\x60\\xb2\\x26\\x84\\x49\\xb1\\x86\\xf0\\xfe\\x63\\xc3\\xa4\\xb8\\xdf\\x52\\x95\\x88\\x29\\x3f\\x21\\x4c\\x8a\\x37\\xb4\\x52\\xe8\\x37\\x5c\\x17\\xae\\x4b\\x55\\x3a\\xaf\\x44\\x87\\xa7\\x55\\x55\\xa5\\xea\\x53\\xf5\\x56\\x5d\\x76\\xde\\x20\\x25\\x2c\\xea\\x8d\\x6d\\x71\\x84\\xf4\\xed\\x13\\x12\\x26\\x25\\x18\\x24\\xe8\\x27\\xf1\\xe1\\x12\\x1f\\x2e\\x54\\x24\\x1f\\x53\\xa8\\xad\\x2a\\x5c\\xaf\\xd3\\x8d\\xad\\x4a\\x08\\x93\\x12\\x3b\\x4e\\xeb\\xc2\\x55\\x0c\\x89\\xeb\\x8d\\x8a\\x96\\x4e\\xca\\x55\\xfa\\x7b\\xd2\\x94\\xec\\xe7\\xa9\\x8e\\xe9\\x06\\x3d\\x4f\\x47\\xb0\\x81\\x39\\x46\\x25\\x06\\x7a\\x9b\\x74\\x55\\x7a\\xa1\\xad\\x4f\\xc9\\x95\\xb8\\xa9\\x6b\\x57\\xca\\x55\\xe2\\x90\\x1a\\xec\\xa9\\x29\\xb7\\x40\\x2f\\x31\\x93\\xb5\\x20\\x33\\x5b\\xa2\\x26\\xeb\\x20\\x89\\x99\\x72\\x95\\x18\\xd4\\x35\\x8f\\x55\\xaf\\xd3\\x49\\x7c\\x84\\x3e\\xc5\\x9a\\x30\\x48\\x2f\\x79\\x9b\\x52\\x24\\x3a\\x5c\\xf2\\x36\\x09\\x96\\x5c\\xdd\\xaf\\x91\\xe8\\xd5\\x68\\xc7\\x4d\\xb9\\x8a\\xef\\x35\\xc3\\xad\\x92\\xa6\\x1b\\xaa\\xc4\\x47\\x28\\x25\\x1a\\x2e\\x8c\\x18\\x9e\\x5b\\x90\\xa9\\x46\\xb9\\x0e\\xae\\x9c\\x30\\x69\\x8c\\xe2\\x03\\x9d\\x4e\\x27\\x69\\x46\\xa0\\x0f\\xf4\\x63\\x13\\xc2\\xa4\\x07\\xc4\\x61\\xc9\\x5b\\x6f\\xd4\\xe9\\x74\\x29\\xfa\\x54\\x85\\x4c\\xa9\\xad\\xb1\\xc2\\x65\\x4a\\x01\\xd0\\xa3\\x30\\x2d\\x3b\\x5c\\x37\\x56\\x1f\\x3c\\x48\\xb1\\x18\\x0f\\xea\\x14\\x5b\\x5c\\x2e\\xd7\\x0e\\x97\\x34\\xc3\\xd3\\x3c\\x47\\x5f\\xb5\\xa2\\x7e\\xad\\x05\\x63\\xcd\\xe8\\x95\\x66\\x3c\\x0e\\x2d\\x30\\xb9\\xaa\\x26\\x57\\x19\\x9e\\xbb\\x16\\xd1\\x55\\x95\\xe3\\x0d\\x7a\\x5d\\xb8\\xe2\\xb5\\x94\\xac\\x6c\\xdd\\xd8\\x9c\\xf0\\xd6\\x70\\xd2\\x27\\x34\\x4c\\x7a\\xd0\\x7d\\x38\\xd3\\xf3\\x70\\x52\\x67\\xed\\x5f\\xd5\\x49\\x36\\x48\\x09\\xa1\\xbf\\x0a\\x6a\\x34\\x48\\x89\\xa1\\x55\\x3a\\xdd\\x58\\xa5\\xb1\\x54\\x25\\xfc\\x8a\\x8e\\xc4\\x4d\\xe1\\x52\\x78\\x68\\x98\\x64\\x72\\xb7\\x30\\x97\\x77\\x95\\xc6\\xa5\\xd7\\x8d\\xd5\\x85\\xeb\\x13\\x10\\xce\\x6c\\x68\\xf5\\xe6\\xc3\\x8d\\xff\\x87\\xa6\\x98\\xfa\\xff\\x55\\xeb\\x53\\xcc\\x57\\xe2\\xcb\\x58\\x7d\\xc2\\xa0\\x60\\x8f\\xfa\\x0e\\xce\\x41\\x1b\\x2d\\x8a\\x33\\x5c\\xe5\\x4f\\x51\\xca\\x1f\\xac\\x47\\x07\\x60\\x39\\xdc\\x45\\x4e\\x35\\x48\\xd0\\x57\\xed\\x9c\\x6d\\xa0\\xf4\\xc3\\xde\\xe1\\x52\\x4c\\x48\\x98\\x34\\xe1\\x2e\\xc7\\xd3\\x0c\\xad\\x40\\xfa\\xf4\\x96\\x62\\x43\\xc2\\xa4\\x89\\x06\\x29\\x3e\\x24\\x4c\\x9a\\xa4\\x78\\xcd\\xa2\\xd7\\x85\\xeb\\x52\\xaa\\xf4\\x56\\x97\\x9f\\xd2\\x0d\\x4a\\x73\\x94\\x26\\x85\\x86\\x49\\x0f\\x19\\xda\\x00\\xcc\\xa1\\x61\\x52\\x86\\xa1\\x0d\\x88\\x92\\x98\\x6c\\x68\\x23\\xe2\\x48\\xa6\\xa1\\x8d\\x88\\x23\\x53\\x14\\x1d\\x4b\\x68\\x98\\x94\\xa5\\xe8\\x28\\x89\\xa9\\x8a\\x8e\\x92\\x98\\xa6\\xe8\\x28\\x89\\xe9\\x8a\\x4e\\x72\\x68\\x98\\x34\\x43\\xd1\\x51\\x12\\x33\\x15\\x1d\\x25\\x91\\xad\\xe8\\x28\\x89\\x1c\\x45\\xc7\\x14\\x1a\\x26\\xcd\\x52\\x74\\x94\\xc4\\xc3\\x8a\\x8e\\x92\\x98\\xad\\xe8\\x28\\x89\\x47\\x14\\x9d\\x94\\xd0\\x30\\x69\\x8e\\xa2\\xa3\\x24\\x1e\\x55\\x74\\x94\\x44\\xae\\xa2\\xa3\\x24\\xac\\x8a\\x8e\\x31\\x34\\x4c\\xca\\x53\\x74\\x94\\x44\\xbe\\xa2\\xa3\\x24\\x0a\\x14\\x1d\\x25\\x61\\x33\\x48\\x63\\xdc\\x6e\\x9e\\xab\\xec\\x48\\xe3\\x43\\xc3\\xa4\\x79\\x22\\xf5\\x60\\x68\\x98\\x54\\x28\\xda\\xd3\\x98\\x50\\x29\\x29\\x34\\x4c\\x2a\\x32\\x48\\x0f\\xb8\\xb5\\xe7\\x2b\\x3b\\x42\\x7b\\x81\\x48\\x29\\xda\\xc5\\x22\\xa5\\xa8\\x96\\x18\\xa4\\xb1\\x6e\\xd5\\x52\\x65\\x47\\xa8\\xda\\x45\\x4a\\x51\\x2d\\x13\\x29\\x45\\x75\\xa1\\x41\\x1a\\xe7\\x56\\x2d\\x57\\x76\\x84\\x6a\\x85\\x48\\x29\\xaa\\x0e\\x91\\x52\\x54\\x2b\\x0d\\xcf\\xfb\\x70\\xea\\x9a\\x3c\\x19\\x43\\x25\\x6f\\x9b\\xc4\\x86\\x65\\x2e\\x71\\x8d\\x29\\x61\\x00\\x93\\x4e\\xc1\\xf9\\xac\\xec\\x56\\x42\\xd6\\xe7\\x48\\x44\\x0d\\x00\\x65\\xad\\xa0\\x35\\xbe\\x00\\xa9\\xd1\\xf7\\x71\\x08\\x51\\xd2\\x49\\xbe\\x0f\\x91\\x31\\xde\\x23\\xbc\\xfb\\x78\\x71\\x6f\\x3c\\x90\\x01\\x66\\x6d\\x84\\xf6\\x5e\\x8d\\x38\\xe0\\x6b\\xfc\\x7d\\xef\\x15\\x01\\x67\\x7d\\xce\\x6a\\x92\\x80\\x83\\x4f\\x48\\x2b\\x04\\x18\\x7f\\x0f\\x00\\x49\\xe2\\xbf\\x38\\xc2\\xc0\\xdc\\x3a\\x8c\\xac\\x9e\\x92\\x2d\\x25\\xad\\xce\\x6e\\x65\\x05\\xe6\\xd6\\x11\\xca\\xde\\x69\\xef\\x15\\x40\\x78\\xd2\\xea\\xfc\\x69\\xd9\\x8a\\x4a\\x4e\\x4e\\x4e\\x8e\\x82\\x3d\\xd6\\x7b\\x94\\x77\\x3f\\x2f\\xee\\x1f\\x72\\x8a\\xb4\\x3f\\x23\\xf1\\x75\\xad\\x14\\xcc\\xad\\x9a\\x02\\x33\\xc0\\xff\\x13\\x00\\x00\\xff\\xff\\x7f\\x2e\\xd7\\xe4\\xc0\\xbf\\x01\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_ttf() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_ttf,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.ttf\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x5c\\x97\\x53\\x6c\\x2f\\x0c\\xd3\\xed\\xff\\x75\\x77\\x6d\\xdb\\xed\\xae\\x6d\\xdb\\xb6\\x6d\\xdb\\xda\\xb5\\x6d\\xdb\\xb6\\x6d\\xdb\\xb6\\xed\\x9e\\x3c\\x39\\xef\\xd5\\x37\\x99\\xdf\\xcd\\x24\\x33\\x99\\xac\\x9b\\x95\\xe5\\x26\\x27\\x2a\\x0a\\x00\\x02\\x00\\x00\\x80\\x2f\\x02\\x00\\x02\\x00\\x00\\x00\\xea\\xed\\x03\\x00\\xfd\\xff\\xc9\\xff\\x2d\\x31\\x61\\x11\\x51\\x00\\x00\\xc8\\x1a\\x00\\x00\\x70\\x00\\x00\\x00\\x7e\\x68\\x06\\x68\\x46\\x31\\x25\\x15\\x41\\x00\\x00\\xa8\\x0c\\x00\\x00\\xe2\\x04\\x00\\x80\\xc5\\x4f\\x10\\x77\\x91\\xe5\\x94\\xe8\\x18\\x01\\x00\\xe0\\x23\\x00\\x00\\xa0\\x0c\\x00\\x00\\xf4\\x3b\\x96\\x2f\\x52\\x8c\\x6c\\x0c\\xec\\x01\\x00\\x10\\x76\\x00\\x00\\xec\\x10\\x00\\x80\\xb4\\x54\\x3a\\x2d\\xa0\\x33\\x72\\x75\\x26\\x00\\x00\\xfe\\xe0\\xfc\\x77\\x1a\\x00\\x00\\x64\\x19\\x3c\\xa0\\xe8\\x98\\xda\\x9b\\xd9\\x00\\x00\\x7f\\x8c\\x01\\x00\\xb0\\x28\\x00\\x00\\x3a\\x75\\x1f\\x65\\xf3\\xce\\xcc\\xc0\\xc9\\x1e\\x00\\x80\\xbb\\x03\\x00\\x00\\x90\\xff\\x03\\xc1\\xcc\\xda\\xc3\\x14\\x00\\x80\\x7b\\x03\\x00\\x66\\x4f\\x00\\x40\\xa6\\x5d\\x7c\\xcc\\x60\\x70\\xe6\\x26\\x06\\xc6\\x00\\xc0\\xce\\x1e\\x00\\x00\\x60\\xfd\\x8f\\x77\\x06\\x04\\x04\\x73\\x73\\x13\\x03\\x00\\x60\\x17\\x03\\x00\\x00\\x10\\x00\\x00\\x00\\x12\\x18\\x10\\x90\\x03\\x73\\x1b\\x67\\x77\\x00\\x60\\xf7\\xbf\\x5f\\x70\\x00\\x00\\x04\\x22\\xdc\\x09\\x76\\x2d\\x6b\\x3b\\x23\\x03\\x00\\xe0\\x48\\x19\\x00\\x80\\x98\\x02\\x00\\x20\\x49\\xf6\\x9f\\x39\\x1e\\x6c\\x0c\\xdc\\xed\\x01\\x80\\x2b\\x82\\xff\\xed\\x12\\x80\\x2d\\xc1\\x62\\xd9\\x1a\\xd8\\x98\\x00\\x00\\x57\\xfc\\x00\\x00\\x90\\x19\\x00\\x00\\x42\\x20\\x62\\x6d\\xd7\\x67\\x6f\\xe7\\xe4\\x0c\\x00\\x5c\\x97\\x01\\x00\\xb0\\xab\\x00\\x00\\xf1\\xfc\\xb1\\x60\\xe9\\xb9\\xbd\\xa3\\x89\\x3d\\x00\\xf0\\xe9\\x0f\\x00\\x00\\xb2\\x01\\x00\\x40\\x0d\\x9b\\x0b\\x57\\xaf\\x3b\\x90\\x91\\xbe\\xb1\\xbe\\xfe\\x9e\\x81\\x3f\\x80\\x0c\\x1c\\x2e\\x84\\x89\\x7f\\x6c\\xac\\x6c\\xac\\x0c\\x8e\\x84\\x18\\x23\\x31\\xc0\\x18\\xcc\\x08\\x2c\\xae\\xca\\xa4\\x0a\\x24\\x01\\x36\\x0a\\x96\\xdf\\x11\\xe9\\x10\\x85\\xc0\\x23\\x04\\xb1\\x0c\\x09\\x30\\x42\\x0c\\xe9\\x08\\x00\\x00\\xdc\\x81\\xb2\\x27\\x41\\x60\\x50\\xf4\\x71\\xc0\\xee\\x5e\\x75\\x57\\xaa\\xaa\\x28\\x65\\xd6\\x6d\\x2d\\x6d\\xa7\\x58\\xe8\\xb0\\x8d\\xd2\\x32\\x19\\x67\\x58\\x1b\\x6d\\x36\\x59\\x4d\\x0f\\x3d\\x37\\xa7\\x77\\x7c\\x7a\\xe5\\xfc\\x02\\x00\\x9c\\x85\\xf0\\x21\\x81\\x4c\\xa6\\xd3\\x39\\x41\\x31\\xe6\\xd0\\xb5\\xa2\\x20\\x4f\\x83\\xcd\\x93\\xa9\\x35\\x8e\\x70\\xd3\\x63\\xcd\\x27\\x9b\\x88\\x07\\x1c\\x5d\\x06\\xfe\\x02\\x21\\x18\\xa6\\xc1\\x0a\\x23\\x18\\x66\\x81\\x12\\x25\\x69\\xa6\\x21\\x1a\\x27\\x6f\\x59\\x1e\\x68\\xea\\xc6\\xe1\\x26\\xaa\\xea\\x26\\xd1\\x2e\\x78\\x36\\x16\\x27\\x85\\x70\\xe7\\x79\\xb3\\x06\\x5c\\x05\\xfe\\x81\\x50\\x94\\x55\\x61\\x05\\x11\\x94\\x35\\xc1\\x09\\x92\\x94\\xd5\\x51\\x0d\\x13\\x94\\xb5\\x81\\x11\\x54\\xe5\\x55\\x11\\x15\\x15\\xe5\\x35\\x85\\x9c\\x2b\\x07\\x4b\\x76\\xb8\\xad\\xc8\\xae\\x0b\\xb2\\xeb\\x16\\x5c\\x56\\xa7\\x57\\x5d\\x3a\\x75\\x91\\xae\\xe3\\xb4\\x9b\\xa8\\x9d\\x96\\xab\\xd7\\x21\\xdb\\x4d\\x5a\\xae\\x9b\\x37\\x6b\\x3a\\xdb\\x8d\\x9f\\x2f\\x7d\\x78\\x1b\\xc4\\x5e\\xd6\\x72\\x57\\xe5\\x3c\\x8d\\xa7\\x2f\\x03\\xba\\x1b\\x7f\\xbd\\x6c\\xec\\xae\\xaa\\xbb\\x1b\\x5f\\x5f\\xfa\\x5b\\xd6\\xc8\\x3f\\xad\\xf5\\xae\\x2a\\x7d\\x1a\\x6f\\x5f\\x06\\x7d\\x37\\xe8\\x3e\\xab\\xf9\\x5e\\x56\\x7f\\xd6\\x05\\x20\\xb7\\xe9\\x11\\x90\\x01\\xd2\\xa3\\xdc\\x4f\\x7d\\xae\\xd8\\x01\\xd9\\xac\\x09\\x7a\\xef\\xb0\\x85\\x6f\\x42\\x41\\x0c\\xa2\\x83\\xcc\\x7f\\xb4\\x58\\x54\\xa0\\xeb\\xa5\\x22\\x9b\\xc1\\x3d\\xaa\\x57\\xc1\\xb3\\x16\\x4d\\x6d\\x46\\xc0\\x6c\\x96\\xf1\\xb4\\xad\\x1f\\xdb\\xa7\\xcd\\xba\\x7e\\xe0\\xb7\\xb3\\xba\\xe9\\xff\\xd3\\xce\\x48\\xdf\\x94\\x63\\x94\\x3d\\x20\\x20\\x39\\x20\\xc0\\x05\\xad\\x92\\x01\\x04\\xa4\\x90\\x3b\\xd8\\xb4\\x67\\x2c\\x6e\\x64\\xc8\\x1f\\x06\\x8f\\x9e\\xfe\\x1b\\x5d\\x5f\\x3e\\x0c\\x9c\\x11\\x95\\xff\\x2b\\x70\\xa2\\xc0\\x10\\x1c\\x02\\x3c\\xe4\\xd7\\x8f\\x23\\xe1\\x47\\xd7\\x44\\x7f\\x4f\\xdc\\x70\\x41\\x55\\x5f\\x3f\\xeb\\x76\\x76\\xac\\xaf\\xcf\\x70\\xb8\\x03\\xa8\\x2a\\x06\\x11\\x30\\x33\\x87\\x00\\xe2\\x0e\\x94\\x94\\x08\\x52\\x47\\xac\\x85\\x22\\xf2\\xca\\xf1\\x49\\x36\\xdb\\xf2\\xe1\\xc2\\xd8\\x62\\xb3\\xf9\\xd2\\x6a\\xb3\\xd9\\xf2\\x5f\\x93\\x63\\xce\\x36\\x66\\x3f\\xf5\\xee\\x8e\\x5c\\x55\\xa0\\x16\\xaa\\x2d\\xeb\\x00\\xde\\x98\\x86\\x11\\x00\\x77\\xb7\\x00\\x41\\x5f\\x6f\\xdb\\xaf\\x44\\xa0\\x60\\x07\\xe0\\xaf\\x35\\x20\\x7f\\x22\\x20\\x4a\\xc8\\x3d\\xf6\\x2d\\x7f\\x2f\\x7b\\xba\\x9c\\x51\\x2b\\x77\\xfc\\x4c\\x85\\xe8\\xb4\\x22\\x89\\x10\\xe7\\x78\\xdb\\x05\\x3d\\xb4\\x71\\xce\\x75\\x9d\\x98\\xc4\\xc3\\x63\\xa2\\x76\\x05\\xbc\\x38\\xac\\xfb\\x26\\xf1\\xd0\\x73\\x28\\x1f\\x51\\xbd\\x55\\xb6\\x67\\xad\\xea\\xd2\\x38\\x69\\x7d\\x2c\\xae\\x7b\\xea\\x9c\\xc1\\x48\\x77\\x62\\xfc\\xbd\\x44\\xef\\xc4\\xdb\\x7b\\x62\\x5f\\xd3\\x8e\\x34\\x5f\\xd3\\x88\\x74\\x33\\x57\\xc6\\xcf\\xcc\\xc1\\x69\\x8b\\x13\\x9e\\xc7\\xf6\\xf0\\x34\\xd1\\xdc\\xb7\\x05\\x1f\\x8d\\x18\\xf6\\xc3\\x2c\\xa5\\x6c\\xcd\\xd2\\x1d\\x0b\\x9a\\xec\\x43\\xb2\\x76\\x8e\\x9a\\x43\\xf0\\xed\\x1a\\x5b\\x3f\\xb7\\x38\\xae\\x05\\xdc\\x6b\\x59\\x57\\x78\\x87\\x58\\x37\\x3b\\x07\\x3b\\xb7\\xdb\\x3f\\x6f\\xc0\\x1a\\x01\\x5b\\xfc\\xf4\\x73\\x2c\\x73\\x6c\\x75\\xac\\x65\\x02\\x7e\\xf4\\x34\\x69\\x98\\xd4\\x30\\x9c\\xfd\\xba\\xfd\\xe7\\xfd\\xb8\\x81\\x9d\\xae\\x1e\\x95\\xe7\\xc7\\x69\\xa7\\x22\\x3c\\xf0\\x6f\\xcb\\x73\\x22\\x73\\x58\\x3b\\xe6\\xb0\\xb7\\x83\\xd0\\xee\\xb8\\xf8\\xfa\\xd0\\x96\\x7b\\x12\\x1d\\xc6\\x92\\x6a\\xe7\\xb4\\x20\\xc6\\xf5\\x57\\x04\\x5e\\x5f\\xe6\\xee\\x41\\x5b\\x76\\xb0\\x9b\\xcc\\xbf\\x66\\x83\\xab\\x55\\xfb\\xe8\\x2b\\x08\\xbd\\x58\\x39\\x86\\xb0\\xb3\\x87\\xc3\\x5d\\xe9\\xf0\\x0f\\x94\\x3d\\xc3\\xf0\\xd5\\x84\\xd2\\x6a\\x8b\\xbb\\xd2\\x2c\\x8f\\xd3\\x33\\x27\\x00\\xa7\\x60\\x8e\\xc1\\x2e\\xbb\\x1e\\xfa\\x4b\\x99\\x44\\x39\\x1f\\x4c\\xb8\\xac\\xfa\\x99\\x3f\\x33\\xb0\\xb2\\xd9\\x8b\\xfa\\xb0\\xfb\\xa6\\xed\\x1e\\x35\\x97\\xae\\xf5\\x21\\x20\\xdb\\x88\\xbd\\x58\\x3b\\xd6\\xb0\\xb7\\x3f\\x41\\xfb\\x15\\xb9\\xb0\\x4c\\xbe\\x66\\x6d\\x93\\xb3\\x21\\xb8\\x2b\\xf2\\xd2\\x0d\\xf7\\x5e\\xd1\\xfe\\xad\\xba\\x64\\x1e\\x74\\x63\\xf4\\xb7\\x1e\\xfc\\x9e\\x9a\\x1d\\xea\\xc0\\x29\\x8a\\x52\\xe1\\xa4\\x93\\x09\\x97\\xc7\\xee\\x51\\x2c\\xc3\\x2d\\xe3\\x8e\\x80\\xb0\\x6b\\x9c\\xcc\\x30\\xa7\\xc2\\x5c\\x11\\xbb\\xe8\\x1e\\x34\\x9f\\xb9\\x9d\\x1d\\xa4\\x6e\\x5e\\x4f\\x95\\x27\\xe7\\xbe\\xcd\\xed\\x4d\\x58\\x40\\x81\\x83\\x3f\\x5b\\x75\\x61\\x77\\x21\\xd8\\x99\\xfb\\x94\\x63\\xee\\xb1\\xe9\\xe4\\x33\\xff\\x95\\xe0\\xa4\\xc7\\xcb\\x3d\\xb3\\xfe\\xe2\\x95\\xcc\\x38\\x76\\xee\\xb6\\x7a\\x8f\\x43\\xff\\x88\\x0d\\x36\\x69\\x03\\x4e\\xd8\\x54\\xe4\\x54\\xf4\\x54\\x8c\\xf4\\x46\\x1c\\x2a\\x66\\x33\\x21\\x25\\x23\\xfd\\x80\\xfd\\x5f\\x84\\x9f\\x35\\x47\\x77\\xf7\\xda\\x3b\\xbc\\x7d\\x96\\x7c\\xe8\\x41\\xe8\\x41\\x1d\\x21\\x72\\x3f\\x37\\xb3\\xb3\\xbb\\x39\\x83\\xfc\\x6f\\xa1\\xcf\\x60\\x57\\x48\\x19\\xb8\\xe7\\x3f\\xcf\\x5f\\x1f\\xcd\\x43\\xaf\\x4f\\x86\\xed\\x38\\x81\\x7a\\x2f\\x60\\xbe\\x9b\\x10\\x80\\x1e\\xe0\\x21\\xf5\\xac\\xdd\\x7a\\x10\\x5f\\xb6\\x75\\x89\\x97\\x7e\\x3e\\x69\\xd5\\x9f\\xaf\\xf0\\x43\\x40\\x3b\\x0c\\x9f\\x6c\\x55\\x3a\\x33\\xd0\\x85\\xfa\\x88\\x96\\xa9\\x16\\x6f\\xa3\\x75\\x4b\\xd3\\xbe\\xdc\\x22\\xd5\\xd7\\xf4\\x53\\x27\\xfe\\x7a\\xce\\x7c\\x91\\x54\\x7a\\x92\\xd4\\x3f\\x65\\xc9\\x64\\xe5\\x43\\xf7\\x75\\x6a\\x9b\\x05\\x5a\\x5c\\xa4\\xe4\\x34\\x77\\x76\\x20\\x72\\x2a\\x65\\xe5\\x64\\x4b\\x7b\\x24\\x59\\xd5\\xdc\\x0f\\x16\\xd9\\x43\\x16\\x01\\x64\\x07\\x28\\xd9\\x65\\x9c\\xe9\\x65\\x6e\\x2f\\x55\\xe8\\x26\\x84\\xd2\\x7d\\xe7\\x4d\\x93\\xfa\\x94\\xb2\\xc2\\x62\\x76\\x21\\x56\\x07\\x90\\x99\\x24\\x1a\\x76\\x68\\xb3\\x43\\x9c\\xec\\xca\\x47\\xe7\\x1e\\xda\\xbe\\xf6\\x0e\\x79\\xf4\\x73\\x43\\x9d\\x02\\x29\\x97\\x74\\xda\\x55\\x54\\x76\\xf8\\xd3\\x4b\\x49\\x9d\\xe2\\x4a\\x97\\xe8\\x9a\\x65\\x97\\x0e\\x10\\xda\\xbe\\x7f\\x1d\\x85\\x37\\x45\\x5c\\x97\\xb4\\x1d\\x95\\x37\\x21\\x91\\xf6\\xf5\\x78\\x15\\xa1\\xe7\\xf1\\x9e\\x4d\\x78\\x85\\xa3\\x13\\xaa\\xeb\\x64\\x2c\\x19\\x45\\xa9\\x17\\x26\\x9e\\xed\\xba\\xf9\\x10\\x97\\x84\\x9e\\x6d\\x78\\x01\\x9d\\x0e\\xb1\\xaa\\x87\\xba\\xd5\\xf3\\x9a\\xd5\\x83\\x3e\\x6d\\x7a\\x5a\\xcd\\x32\\x9b\\xf7\\xfe\\xae\\xe6\\x28\\xf0\\x96\\xd2\\x3c\\xdc\\xc2\\x7b\\x06\\x50\\x78\\xf9\\x09\\xee\\x49\\xe0\\xb1\\xfb\\x0e\\x1f\\x67\\x66\\x38\\x87\\x36\\x06\\xe1\\xd2\\x86\\x8c\\xba\\xc6\\x54\\x8b\\x77\\x48\\x4a\\x77\\x8c\\xba\\xfd\\x95\\xee\\xb0\\xb5\\x87\\xb0\\x5d\\xe3\\xce\\x5d\\xff\\x5a\\x39\\x62\\xdb\\xdd\\x73\\x3d\\xde\\xfc\\xdf\\xa9\\xf5\\x09\\x23\\xef\\x08\\x79\\x07\\x46\\xa9\\xf7\\xbd\\x39\\xdf\\x82\\x8b\\xdf\\x92\\x68\\x41\\xde\\xa2\\x04\\xbc\\x63\\xe8\\xee\\x8a\\xab\\x5b\\x30\\xf4\\xea\\x99\\x3a\\xeb\\xfe\\x76\\xd6\\x73\\x79\\xd5\\x91\\xf7\\x98\\xd2\\xbd\\x98\\xe2\\x5b\\x8f\\xa0\\x59\\x0f\\xb3\\xbe\\x88\\x60\\x4e\\x28\\xf4\\xfb\\x96\\x09\\xa3\\x56\\x28\\x0c\\xfe\\x94\\x1d\\x03\\xe0\\x84\\x71\\x21\\xf2\\x73\\x82\\xda\\xfd\\x85\\x10\\x0e\\xe5\\xdd\\x71\\x46\\xf6\\x71\\xfa\\xe3\\x81\\x11\\x15\\x62\\x0e\\x04\\x63\\xd0\\x22\\x10\\xf1\\x37\\xdb\\xc2\\x22\\x49\\xa5\\x1a\\x48\\xc5\\x1c\\xdb\\x83\\xa5\\x8a\\x2b\\x9d\\x0b\\xcd\\xfa\\x54\\x5b\\xc4\\xdd\\xce\\x09\\x79\\x8a\\xd1\\x37\\xd7\\x09\\xbb\\x8b\\xe1\\x2f\\xd7\\xfb\\x4c\\xb4\\x67\\x64\\xb6\\xa8\\x7d\\x8a\\xf1\\x0b\\xa3\\x24\\xfc\\x30\\xfb\\x68\\xb6\\xa8\\x40\\x4c\\xe2\\x60\\x52\\x08\\x19\\x95\\x43\\x1c\\xc0\\xd4\\x1c\\xb1\\x27\\xdb\\x22\\x2a\\x65\\xb2\\xc2\\xcd\\x38\\xfe\\x1a\\xb7\\x45\\xe9\\x93\\x56\\x1a\\x17\\x45\\x25\\xcc\\x5b\\xa7\\x30\\x30\\xa6\\x44\\x5b\\x1f\\x60\\xd5\\x1c\\x73\\x62\\x92\\x1f\\x46\\xcf\\xbe\\x99\\x04\\x4a\\x33\\x1b\\x26\\x2d\\x57\\x31\\x30\\x8b\\x92\\x39\\xd0\\xdd\\x8c\\x77\\xb7\\xc3\\xbf\\x1e\\xfb\\x6e\\xe9\\x91\\x4d\\xa2\\xac\\x34\\xc4\\x94\\xde\\x29\\xa7\\x53\\x2d\\xba\\x63\\xc9\\xb1\\xfd\\x21\\x53\\x28\\x79\\x84\\x49\\x1c\\x62\\xf2\\x48\\xb9\\x22\\xea\\xcc\\x40\\x49\\xa4\\x16\\x73\\x2c\\xc4\\x81\\xed\\x25\\x03\\xf6\\x07\\x04\\xf2\\xc9\\xe6\\xf5\\x16\\xf9\\xfb\\xe5\\x7e\\x39\\x7e\\x18\\xec\\x05\\xe1\\x3b\\x84\\x89\\x01\\x23\\xc5\\x07\\x1b\\x17\\x11\\xa0\\x5a\\x88\\x8b\\x81\\x33\\xc6\\xff\\xb3\\x3e\\x22\\x40\\xf7\\x18\\x13\\x03\\x82\\x52\\x08\\x36\\x4c\\xea\\x13\\xa0\\xd4\\x06\\x45\\x10\\x26\\x77\\x16\\x45\\x77\\x16\\x61\\x73\\x16\\x83\\x7f\\x12\\xa6\\x7b\\x12\\xc5\\x7f\\x12\\xe1\\x7b\\x1a\\x05\\xc0\\x0c\\x11\\xc0\\x8c\\x20\\xc0\\x0c\\xd3\\xc3\\x8c\\x42\\x46\\x0d\\x51\\x44\\x8d\\x60\\x44\\x0d\\xb3\\x47\\x8d\\x82\\x4a\\x0f\\x91\\x48\\x8f\\xa0\\x48\\x0f\\x33\\x4b\\x8f\\xc2\\x4c\\x0d\\x51\\x4f\\x8d\\xe0\\x4c\\x0d\\x73\\x4f\\x8d\\x02\\x53\\x0f\\x11\\x51\\x8f\\x20\\x51\\x0f\\x33\\x52\\x8f\\x42\\x55\\x0d\\x51\\x55\\x8d\\x60\\x55\\x0d\\x73\\x5e\\x01\\xc2\\x68\\x54\\x2d\\x8b\\x75\\x37\\x86\\x94\\x36\\x68\\x7d\\x5a\\xa6\\x40\\x37\\x4d\\x0b\\xc8\\xac\\x2a\\x4a\\xcc\\x33\\x4a\\xac\\x4a\\x4c\\xcd\\x53\\x4c\\xad\\x62\\xaa\\x99\\x57\\x5d\\x35\\xcd\\xa5\\x68\\x5a\\x92\\x37\\x44\\x7b\\x6f\\xf3\\xa8\\xa1\\xb0\\xa1\\x00\\x14\\x29\\x5f\\x98\\xe9\\x4d\\x0c\\x4c\\x4c\\x4c\\x87\\x36\\xdc\\x40\\x3c\\xaa\\xfc\\xcb\\x49\\xe9\\xed\\xcd\\x77\\xba\\x48\\xe8\\xea\\xc6\\xc1\\x0a\\x64\\x3a\\x86\\xd9\\x4a\\x27\\xe9\\x2f\\x71\\x2a\\x25\\x5d\\xa7\\x71\\x46\\x76\\xea\\x0f\\xfd\\x62\\x23\\x1a\\x8f\\x5b\\x52\\x74\\x61\\xee\\x93\\x30\\x9b\\xc1\\x1c\\x87\\x09\\x20\\x21\\xe9\\x8f\\x19\\x6e\\xb7\\x90\\x0c\\x93\\x31\\x7f\\x61\\x30\\x98\\x2c\\x2a\\xcd\\xac\\x6f\\xd9\\xcc\\xb2\\x9d\\x16\\x28\\x69\\xbd\\xa1\\xc0\\x83\\x20\\xd8\\xb6\\x5c\\xa6\\x5d\\x00\\xe8\\xeb\\xf6\\x1b\\x1e\\x6a\\x32\\xea\\xf4\\xb6\\xf3\\x59\\x26\\x7f\\x55\\x69\\x9e\\xa1\\x40\\x57\\x3e\\xaf\\x03\\xb0\\x79\\xdf\\x8c\\x02\\xe8\\x7a\\xde\\x0d\\x12\\xfd\\x7c\\xdf\\xaf\\x00\\x8c\\x49\\x4b\\xae\\xff\\xf9\\x06\\x01\\xf8\\x15\\xe8\\xc0\\x39\\xcc\\xa2\\x06\\x1b\\x3d\\x7d\\x9d\\x3a\\x03\\xfd\\x97\\xd4\\x9e\\xf8\\x87\\x57\\xf2\\xf3\\xd8\\x2f\\x1b\\xb5\\xef\\xef\\xee\\xd7\\x23\\xf8\\x7d\\xdc\\x72\\x9d\\xad\\x7e\\x3d\\x70\\xc4\\xa0\\x4a\\x3d\\x1e\\x58\\xa5\\x54\\x9f\\xfc\\x2b\\xc2\\x32\\x33\\x01\\xbe\\x41\\x0e\\x62\\x10\\x22\\x00\\x36\\x93\\x39\\x1d\\xe0\\x0e\\x54\\xa5\\x72\\x9c\\x71\\x38\\x06\\x47\\x13\\x9a\\x61\\x80\\xe1\\x2d\\x90\\x93\\xf1\\x74\\x9d\\x99\\xc4\\x33\\x65\\x3d\\x3a\\x7e\\xc7\\xec\\x9b\\x6b\\x35\\x6f\\xfb\\xd1\\xdd\\xf5\\x09\\xe3\\x8b\\xc5\\x31\\xf9\\xfb\\x32\\xff\\x32\\x26\\xe1\\xf4\\xea\\x28\\xa4\\x5c\\xac\\x28\\x21\\x26\\xa6\\xf8\\x2f\\x99\\x50\\xb5\\x52\\xc2\\x3a\\x5c\\xf7\\xbb\\xa8\\x04\\x5d\\xcf\\xc1\\xe8\\xbd\\x3b\\xd8\\xae\\x83\\xdb\\x6e\\x91\\x66\\x42\\x0d\\xb9\\x86\\xb9\\x31\\x57\\x6c\\xb9\\x4c\\x53\\x6f\\xd5\\xaa\\xe6\\xb4\\xbe\\xa1\\x8a\\x68\\xfb\\xfc\\xaf\\x98\\x88\\xc5\\x59\\xa3\\x51\\xda\\x02\\x4d\\xee\\xdf\\x10\\xd6\\x30\\x3f\\x8d\\xbd\\x8d\\x2d\\xaf\\x6f\\x0f\\x33\\xee\\x88\\xd5\\xc3\\xe2\\x57\\x64\\x39\\x2f\\xdb\\x1c\\x04\\x3a\\x6a\\x12\\x3c\\xbe\\x66\\xda\\x7b\\x1d\\x8d\\xed\\xe6\\x94\\x88\\x00\\x85\\x96\\xfe\\x47\\x79\\x58\\xb7\\x21\\xb5\\xe3\\x2f\\x2a\\xea\\x7d\\x6a\\x42\\xff\\x31\\xa6\\x83\\xfb\\x7f\\x24\\xff\\x42\\x8e\\xac\\xb5\\x55\\x5b\\x4d\\x5c\\xb8\\x5c\\x94\\xac\\xaa\\x27\\x65\\x37\\x35\\xa7\\x2d\\x09\\xd7\\x9b\\x56\\x4e\\x2b\\x08\\xdf\\xca\\x59\\x98\\x00\\x15\\x62\\xd0\\x7f\\x56\\x5d\\xc6\\x60\\x71\\x81\\x7b\\x4c\\xc8\\x9f\\xdb\\x4d\\x99\\xed\\xe7\\x45\\x15\\xf4\\xa0\\x25\\x64\\xc1\\xfb\\x8f\\x13\\xad\\x2c\\xba\\x66\\x96\\x53\\x20\\x7c\\x84\\x39\\x8e\\xef\\x74\\xb4\\xab\\xd9\\xe2\\x57\\x0c\\x13\\x68\\xdb\\xd6\\x13\\x64\\x9a\\x86\\xcf\\x17\\x8f\\x41\\xc5\\x68\\x13\\x36\\x62\\xae\\x9c\\xb6\\xef\\xc4\\x97\\x6e\\x2a\\x27\\xfc\\x33\\xc0\\x5b\\x38\\x97\\x86\\x24\\x43\\x31\\xd5\\x56\\x5a\\xd6\\x34\\xc4\\xbc\\x6b\\x5a\\xbd\\xf1\\x18\\x48\\x08\\xc8\\x0b\\x9e\\x73\\x2d\\x2d\\xa3\\x87\\x40\\xf8\\x64\\xaa\\xd3\\x8a\\xb2\\x91\\x8e\\xca\\xce\\x63\\xa5\\xcb\\x28\\xe0\\xb4\\x76\\xe0\\xd6\\x8d\\x4c\\xf9\\xde\\x0f\\x8b\\xd1\\xf7\\xe6\\xe6\\x88\\x0f\\x93\\x0e\\xb4\\xcd\\x9a\\x18\\x8c\\x25\\xdb\\x07\\xc8\\x12\\xa1\\xe3\\x36\\x29\\xda\\x37\\x96\\x34\\xcc\\x10\\x0c\\x0f\\xd2\\x2e\\xbd\\x31\\x5b\\x51\\x6c\\x71\\x5d\\x2c\\x16\\x92\\xfe\\x3c\\x93\\x8f\\x54\\x3a\\x1c\\xb4\\x6f\\x34\\xd2\\xcc\\x9e\\x52\\x2a\\x29\\x53\\x31\\xd8\\x19\\xe3\\xe6\\x96\\xc2\\xc2\\x84\\xbb\\x33\\x7a\\x52\\xae\\xd6\\xcf\\xe5\\x1f\\x53\\xae\\xd3\\x18\\xb0\\xfd\\xcb\\x9e\\x65\\xb2\\x67\\xd2\\x52\\x14\\xd4\\xd7\\xc7\\x75\\xf0\\xe0\\x94\\xa4\\x94\\x0b\\x2f\\x15\\xc8\\x98\\x6d\\x3c\\x59\\x96\\x54\\x5c\\x62\\xe5\\x7c\\x61\\x94\\xb3\\xb9\\xb0\\xf3\\xe6\\x35\\xd0\\xa5\\x21\\xab\\x4d\\x81\\x90\\x5c\\x0d\\xfa\\x51\\x2e\\xe7\\xb3\\x80\\x62\\x41\\xae\\x26\\x1b\\x9e\\x92\\x1e\\x92\\x45\\x7b\\x90\\xd6\\xca\\x40\\xa9\\xc6\\x46\\x4b\\x7c\\x60\\xf8\\x07\\xef\\x3a\\x63\\x29\\x88\\x07\\x2d\\x41\\x78\\x44\\xb8\\x49\\x3f\\x5b\\x0e\\xb3\\xf9\\xc0\\x5c\\x63\\x53\\xbb\\xdd\\xcf\\x51\\xb3\\xd7\\xbb\\xa4\\x6e\\xbc\\x00\\xf2\\x83\\xd7\\xf4\\x29\\xe5\\x22\\x0d\\x04\\x5d\\x2c\\x6b\\x51\\x87\\x5a\\xef\\xb9\\xe5\\x86\\x53\\x5a\\xb5\\x4c\\x59\\x08\\xa5\\x12\\xae\\x86\\x94\\x33\\x4f\\x38\\xcc\\x9d\\x2f\\x84\\xb7\\x7a\\xd6\\x1a\\xa7\\x18\\xfc\\xeb\\xeb\\xba\\xa2\\xb0\\x48\\x05\\xf3\\xd8\\xc4\\xbe\\x6e\\xfe\\x98\\x6a\\xf3\\x8a\\x64\\xce\\x19\\xbd\\x25\\xdb\\xec\\xc3\\x6b\\x04\\x25\\x76\\xa4\\x71\\x47\\xfd\\x90\\x45\\x59\\x41\\x34\\x9b\\x59\\x40\\xf6\\x10\\x48\\x79\\x41\\x44\\x97\\x51\\x40\\xb8\\xc0\\x32\\x1c\\x36\\xe6\\x97\\x6e\\xa8\\x7c\\xd4\\x2b\\xc3\\x40\\xf6\\xf0\\x1b\\x02\\xec\\xca\\xfb\\xd4\\xae\\x42\\xcb\\xfb\\xdc\\xae\\x43\\xcb\\xfb\\xf8\\xce\\x27\\x7a\\xaf\\xfc\\x49\\xa7\\xff\\x45\\x47\\xff\\x03\\xd1\\xf3\\x07\\x43\\xc4\\xb3\\x8f\\xe2\\x01\\x89\\x3e\\x62\\xa9\\x8f\\xe2\\x81\\x91\\x3e\\xc2\\x1a\\xb8\\x70\\x8c\\x43\\x1f\\xe5\\x9d\\x4f\\x1f\\x85\\x03\\x3e\\x8a\\x28\\x3a\\x3f\\xd4\\xa4\\xf2\\x1d\\xdc\\xc0\\x4c\\x29\\x82\\xb9\\x25\\x3e\\x09\\x24\\x21\\xfa\\x49\\x4b\\x7f\\xcd\\xae\\x31\\x56\\xa2\\xc3\\x30\\xcc\\xd3\\x59\\x9a\\xd4\\xd9\\x55\\x6d\\x92\\xe9\\x25\\x13\\xcd\\x9c\\x34\\xb7\\xf6\\x26\\x69\\x94\\x63\\x52\\x4d\\x53\\x64\\x9b\\x03\\x99\\x5c\\xcd\\x26\\x7d\\xaf\\x39\\x21\\xdd\\x28\\xb6\\x16\\xbb\\x43\\xe5\\xa0\\x1b\\x88\\x8b\\x9c\\x17\\x07\\x14\\x39\\x64\\x4f\\xec\\x72\\x79\\xfd\\x36\\xe9\\xcb\\x19\\xef\\xb2\\x73\\xd8\\xe5\\x14\\x86\\xb1\\x23\\xfc\\xab\\xdc\\x0d\\x46\\x57\\x55\\xc1\\x75\\xf5\\x54\\x8b\\x8c\\xfd\\x75\\xee\\x74\\xb3\\xd7\\x6c\\x42\\xb6\\x09\\xee\\x91\\x8b\\x22\\x9c\\x73\\xb3\\xc8\\xdf\\xb3\\xaa\\xc9\\xf9\\x25\\x92\\xfb\\xf6\\x3c\\x67\\x86\\x42\\x43\\xe8\\xe7\\x4a\\xbf\\xc0\\x8e\\x6b\\x26\\x7d\\x31\\xcc\\x6f\\x15\\x80\\x0a\\x0e\\xea\\x57\\xfc\\x27\\x56\\xe4\\x7a\\x9a\\x7b\\x4e\\x18\\xde\\xe9\\xad\\xa3\\xd5\\x4b\\xba\\xbf\\x0f\\x62\\xd5\\x99\\x42\\x75\\xa8\\x7c\\xea\\x73\\x71\\xf8\\x68\\x13\\x4a\\x65\\xfc\\xbb\\x85\\x51\\xad\\xdb\\x5c\\xc8\\x03\\x44\\x8c\\x78\\xc2\\xc5\\xa2\\xba\\x33\\x8d\\x57\\xf9\\x11\\xa0\\x09\\x8c\\x1d\\x34\\xda\\x83\\x54\\x8c\\x9d\\x51\\xa9\\xd0\\x52\\x1f\\xa7\\x9f\\xd8\\xae\\x5e\\xfa\\x00\\x8e\\xdb\\x95\\x68\\x21\\x78\\xc6\\xb1\\x2d\\x02\\xcb\\x42\\xe4\\x1c\\x8f\\x2e\\x8c\\x49\\x5a\\x5c\\x18\\x68\\x1e\\x5e\\xe0\\x90\\x20\\xe8\\x88\\x0b\\xab\\xc2\\x77\\x84\\x8a\\x47\\x5a\\x68\\xfa\\x07\\x38\\x17\\x3a\\x48\\xcd\\x96\\x0d\\x4d\\xd2\\x57\\x8f\\x9d\\xc0\\xfc\\xc2\\x49\\x08\\xee\\x49\\x48\\xfe\\x91\\x7f\\x69\\x4c\\x25\\x94\\xfd\\xf2\\x22\\x07\\x34\\xd1\\x92\\x07\\xc5\\x27\\xbd\\x2f\\x4e\\xa1\\x39\\x01\\xf4\\x49\\xde\\x8b\\x96\\x79\\x53\\x92\\x7d\\xb3\\xb8\\x6b\\x7e\\xe8\\x66\\x78\\xc7\\x6e\\x57\\x20\\x3f\\xe6\\x62\\xcf\\xc0\\xa4\\xa9\\xe9\\xbe\\x90\\x30\\xd0\\xbc\\x93\\xb9\\xdc\\x9b\\x07\\x5f\\xda\\xa1\\x33\\x29\\x36\\xba\\x84\\x5f\\xfd\\xf2\\xc0\\xc0\\xd7\\x3c\\x88\\xc8\\x5e\\xd6\\x08\\x90\\x7b\\x55\\x86\\xfe\\x52\\x91\\x7b\\xd3\\xca\\xbb\\x70\\x92\\xbe\\xdf\\x79\\x4d\\x9c\\x1d\\x12\\x72\\xdb\\xec\\x04\\x9a\\x62\\x0a\\xb4\\x31\\xc8\\x4a\\x21\\xd5\\x07\\x24\\x5d\\x98\\x0d\\x07\\xd2\\xc9\\x45\\x53\\x36\\x7f\\x11\\xd0\\xc3\\xe5\\xbc\\xda\\x5f\\x18\\xc0\\xf6\\x45\\xd7\\x64\\x78\\x9b\\x7b\\xc1\\x1b\\x90\\xbb\\x0d\\x46\\x1d\\x4d\\x6e\\x2c\\xd7\\xcd\\xc3\\x35\\x84\\x01\\x8d\\xb9\\xf9\\xee\\x46\\xea\\x27\\x07\\xff\\x67\\xce\\xed\\xb5\\x74\\x4b\\x68\\xc2\\x0c\\x7c\\x70\\x5d\\x8d\\x31\\xb4\\x14\\xb8\\x27\\x5c\\xc3\\xdb\\x37\\xea\\xe7\\x1f\\x65\\x92\\xd3\\x07\\xca\\xee\\xc0\\x47\\xf1\\x3e\\x17\\x42\\x6d\\x70\\x33\\x46\\x97\\x22\\x1b\\x44\\x84\\x9e\\x57\\x15\\xc4\\x11\\x24\\x30\\x81\\x7f\\x01\\xc3\\x4d\\xbc\\x21\\x27\\x7a\\xd8\\x75\\xf3\\xb4\\xc6\\xe6\\x28\\x96\\xb6\\xfd\\x67\\x6c\\x44\\x6d\\xe5\\x4f\\xda\\x8f\\xe9\\xef\\xbf\\xcd\\xf9\\x2f\\x25\\xd1\\xa1\\x95\\xd7\\x28\\xa2\\x0a\\x76\\x50\\x86\\x7a\\x78\\x78\\x7e\\x6d\\x07\\x48\\x24\\x66\\xfc\\x08\\x12\\x58\\xf1\\x79\\x7f\\x66\\xd8\\xb1\\xb9\\x2e\\x8a\\x06\\x66\\x02\\x31\\x90\\x07\\xe6\\x3c\\xfe\\xc7\\x12\\x8a\\x05\\x7f\\x24\\x58\\x8a\\x45\\x7f\\xa8\\xe9\\xd2\\x02\\x49\\x10\\x4b\\xe6\\x3c\\x59\\x10\\x2c\\xe6\\xda\\x08\\x32\\x58\\xf3\\x79\\x7f\\x56\\x58\\xfa\\xa1\\x2e\\x58\\x39\\xa7\\xd0\\x7e\\x6f\\x65\\x17\\x1d\\x9e\\x72\\xcf\\x2c\\xcc\\x10\\x33\\xdc\\x0f\\xc3\\x9d\\x7f\\xcf\\xfe\\xfd\\xd5\\xa1\\x63\\xd5\\x62\\x63\\x32\\xa3\\x86\\x3b\\xa1\\xe7\\xc1\\xfd\\x32\\xa5\\x63\\x32\\x66\\x63\\x32\\xa7\\x86\\xbc\\xc1\\xe7\\x81\\xfd\\x32\\xa9\\x63\\x32\\x6a\\x63\\x32\\xab\\x07\\xda\\x39\\x38\\x60\\x7c\\x72\\xb5\\xab\\x27\\xff\\x0c\\xf0\\xf4\\x86\\xdd\\xfa\\xd9\\x8e\\x4d\\xe1\\x3d\\xfc\\x65\\xac\\xff\\xcb\\xb6\\xbf\\xbf\\x00\\x78\\x77\\xa0\\x28\\x4d\\x08\\x6d\\x25\\xb5\\x4d\\xbf\\x1c\\xa7\\x99\\x6e\\x20\\x14\\xfa\\x60\\x04\\x4c\\x60\\xc2\\xb8\\x3a\\x35\\x71\\x41\\x7f\\x92\\xd4\\xee\\x50\\x10\\x06\\xe0\\x09\\x70\\x08\\xa9\\x21\\xce\\xca\\x65\\xb8\\xcb\\x32\\x2f\\x67\\x8d\\xe6\\x67\\x1b\\x5c\\x3b\\x91\\xce\\x22\\x9f\\xea\\xed\\xdb\\x9d\\xc2\\xcf\\x4d\\x2f\\xbf\\xdd\\xce\\x0d\\xc9\\x03\\xb7\\x1b\\x19\\x41\\x0b\\x1f\\x74\\x3e\\x24\\xc7\\x5b\\x1f\\xf6\\x53\\xee\\x4f\\xbf\\x1f\\x72\\xfe\\xba\\xd0\\xf3\\x73\\x4b\\x44\\x7e\\x7f\\x0f\\x79\\x79\\xbe\\x62\\x3b\\x0d\\xc2\\x7f\\x48\\xa0\\xfc\\x6c\\x22\\xc2\\xe4\\xcc\\x43\\x92\\x58\\x11\\x0f\\xd1\\xaa\\xef\\xe0\\x6d\\x7f\\x80\\x05\\x0b\\x3f\\x8f\\xc3\\xc2\\x20\\x59\\xa0\\x35\\xd3\\x02\\x96\\xf2\\xea\\xd3\\xc0\\x8e\\x71\\xf9\\x56\\x6f\\x46\\x12\\xd7\\x6a\\xbb\\xe1\\xe5\\xa0\\x46\\xbb\\x62\\xf5\\x67\\x63\\x0c\\x8e\\x71\\xdf\\xe0\\x81\\x20\\x00\\x5e\\xca\\x69\\x81\\xea\\xe2\\xfe\\xd1\\xcf\\x4a\\x9c\\xbc\\xa9\\x94\\xd6\\x78\\xf9\\x8f\\x7f\\x80\\x8a\\xe6\\x70\\x83\\x0b\\xd4\\x15\\xf1\\xf1\\x04\\x31\\x90\\xb7\\xfa\\xa9\\x88\\x20\\x6b\\x3e\\xe4\\x85\\x9d\\x09\\xf4\\x44\\x22\\xbc\\x85\\x7c\\x45\\xc1\\x56\\x9c\\x56\\xfd\\xc0\\x8e\\xb6\\x14\\xa5\\x05\\xbf\\x0a\\xda\\xd6\\xd2\\xce\\xfe\\x75\\x50\\xd8\\x14\\x91\\x09\\x5e\\xff\\x6a\\xd4\\x11\\x98\\x2b\\x80\\x5f\\xbc\\x33\\xc2\\xa2\\x75\\x8b\\xce\\xea\\x99\\x52\\xf5\\x4e\\x69\\x06\\x3d\\x30\\xca\\xfb\\xa6\\x76\\x5d\\x7f\\x57\\x1d\\xcb\\x4f\\xfa\\x19\\xd9\\x17\\xaf\\x46\\x46\\xa6\\xe0\\x68\\x06\\x0a\\x7c\\x5d\\x87\\xfe\\x2a\\xbe\\xbb\\x31\\xd1\\x84\\xce\\xe8\\xcb\\x17\\xbf\\x32\\x79\\x4f\\x71\\xf9\\xc7\\xf2\\x44\\xf1\\x7c\\xde\\x57\\xb5\\x4a\\xf9\\x5e\\xbf\\xe6\\x78\\xac\\x71\\xf1\\xc3\\xac\\x81\\x40\\x9e\\xde\\x1e\\x35\\x48\\xde\\xff\\xa9\\xb1\\x4a\\x3f\\xd2\\x44\\x90\\x84\\x34\\x36\\x43\\xa0\\x8a\\xe3\\xe4\\x1f\\x80\\x6c\\x60\\xd0\\x07\\x36\\x18\\x08\\xb3\\x46\\x00\\x5d\\x80\\x06\\x2e\\x16\\xc4\\x86\\x04\\x76\\x01\\x41\\x35\\x37\\x52\\x30\\x08\\xe0\\xf8\\xcb\\xc4\\xc1\\xa8\\x0b\\xb3\\x60\\x92\\xb7\\x6c\\x3e\\x51\\x92\\x02\\x4c\\x5e\\xaf\\x31\\xb5\\x51\\x46\\x91\\x9d\\x4f\\x90\\x89\\x91\\x20\\xac\\x62\\xcc\\x3d\\x3f\\xac\\x64\\x63\\x8c\\xa1\\x60\\x01\\x8b\\x46\\x6b\\x78\\xe2\\x36\\xf5\\x2e\\x2b\\xf8\\x7a\\x28\\x34\\xca\\x29\\x57\\xf3\\x97\\xd1\\x8d\\xb7\\xee\\x6d\\xc8\\xa9\\xf6\\x00\\xb6\\xbb\\xb2\\xd0\\x7d\\xd2\\x55\\xba\\x0a\\xc7\\x56\\xdb\\xc5\\x71\\xcc\\xf4\\x92\\x6b\\xc9\\xb5\\xe0\\x7c\\x4e\\x7c\\xdd\\xd9\\xd7\\x29\\xb7\\xdd\\xb9\\x6c\\x24\\xf8\\xb5\\xe9\\x76\\x46\\x67\\xa9\\xce\\xb4\\xd6\\x6b\\x7d\\xc7\\xd7\\x6c\\x8c\\x3c\\xf7\\xec\\xe7\\x11\\xe2\\xf8\\x30\\xb2\\xf1\\x56\\x27\\x75\\x97\\x64\\xdd\\x10\\x09\\x0b\\x1c\\xcf\\xb9\\xf5\\xfa\\x92\\xe6\\x8f\\xef\\xa1\\xaa\\xfc\\x7e\\xc7\\xe3\\xe1\\xa4\\xe8\\xe4\\x01\\x12\\xae\\xf7\\x78\\x9c\\xc7\\xe9\\xee\\x3a\\xe6\\xbe\\xce\\x9c\\x20\\x78\\x92\\x20\\x76\\x53\\x90\\x12\\x95\\xad\\x9e\\x04\\xa4\\x4b\\x61\\xd9\\x01\\x15\\x32\\xbf\\x68\\x1d\\x3a\\x46\\x99\\x70\\xc9\\x05\\x98\\x64\\x3b\\x0c\\xbf\\x08\\x4f\\x58\\xc1\\xdc\\x4c\\x72\\x0d\\x0a\\xd6\\x82\\x37\\xdf\\xb8\\x80\\x80\\x03\\x26\\x56\\x4d\\x39\\x07\\x5f\\x8e\\x79\\xbb\\xa9\\xf6\\xac\\x35\\x63\\x65\\xea\\x70\\x81\\x39\\x9e\\x68\\xd3\\x1b\\xfa\\x18\\x24\\xd9\\x92\\x09\\xd6\\xc4\\xa7\\xe4\\xe4\\xc7\\x24\\xec\\xc3\\xee\\xc2\\x0f\\xd4\\x60\\x4f\\xdd\\x50\\x97\\xb1\\x90\\xae\\xb7\\xbb\\x7b\\xe0\\x17\\x1b\\x21\\x8c\\x9f\\x75\\xd9\\x1e\\x91\\x0f\\x2a\\xb8\\x90\\x08\\x1d\\xfa\\x31\\xd1\\xfe\\x9f\\xf7\\x06\\x71\\x75\\x75\\xc1\\x1e\\xc2\\xf4\\x48\\x77\\xb7\\x18\\xa4\\x4d\\x8a\\x4e\\x63\\x7c\\xeb\\x89\\x09\\x4b\\xac\\x26\\xb6\\x0d\\x08\\xac\\xc6\\x06\\x2c\\x88\\xab\\x3f\\x2f\\x55\\x6b\\x6b\\xd4\\x5e\\x82\\x46\\x82\\xf5\\x5f\\xf9\\xec\\x06\\x27\\x1c\\x9f\\xfe\\xd4\\x4c\\xfa\\x76\\x19\\xc9\\x94\\x09\\xf8\\xa8\\xa4\\xcc\\x60\\xbc\\x59\\xce\\x0d\\xf2\\xe4\\xf2\\xea\\x6e\\xa7\\x7c\\x6b\\x22\\xb6\\xad\\xce\\x75\\x42\\x20\\xd6\\x49\\xcc\\x31\\xff\\x80\\x45\\x08\\xc9\\xb9\\x18\\x32\\x18\\x98\\x09\\x0c\\x9a\\x6a\\x7c\\xa9\\x32\\x4a\\xc5\\x90\\x5a\\x15\\xfa\\x8c\\xc3\\x8a\\xb2\\x89\\x08\\x63\\x3c\\x11\\x31\\x1f\\xfd\\xc8\\xb8\\x99\\x90\\x7a\\xa9\\x8e\\x42\\xfc\\x61\\x6c\\x20\\x24\\xff\\x52\\xca\\x45\\xdc\\x4d\\x45\\x6d\\x5c\\xc0\\x78\\x95\\x6c\\x23\\x60\\xe6\\x96\\x43\\x69\\x96\\xa9\\x6f\\x98\\x32\\x6b\\x02\\x8f\\x24\\x11\\x4b\\xfc\\x53\\xad\\x9c\\xc6\\xa1\\xac\\x70\\x06\\x4f\\xa4\\x98\\x28\\x41\\x7d\\xa8\\x66\\x55\\xfe\\xa7\\x40\\xd3\\x4a\\x1f\\x1d\\xb5\\xb0\\x9e\\xc5\\xac\\x7f\\xe8\\x52\\xce\\xe2\\x13\\xf3\\x60\\xfa\\x58\\xf1\\x99\\xaa\\x6c\\xa7\\x9d\\x95\\xae\\x6f\\x35\\xa6\\xfd\\xcf\\x54\\x88\\x8a\\x57\\x4b\\xeb\\x79\\xa1\\x54\\xea\\xb2\\xe6\\xf5\\x29\\x07\\xd7\\x69\\x4f\\xf9\\xf9\\xdb\\xf5\\x76\\xba\\xcd\\xbb\\xd4\\x57\\xb7\\xa0\\xb1\\x90\\x82\\xcf\\x8a\\x91\\x90\\x85\\x4a\\x3d\\x51\\x31\\x6f\\x96\\x62\\x3a\\x6c\\x60\\xfc\\x01\\xb6\\xfb\\x26\\xea\\xe5\\xf1\\xaf\\xe6\\x6b\\x5b\\xe3\\xa3\\xd6\\x68\\x56\\x4a\\x4b\\x08\\x94\\x4f\\xa4\\x9b\\x3a\\x67\\xb7\\xe1\\xea\\xe8\\xdf\\x1f\\xa7\\x21\\x15\\x5d\\x66\\xe7\\xa3\\xf1\\x40\\xed\\xae\\x0e\\xfa\\xea\\xf2\\x85\\x1a\\x86\\x5a\\x0a\\xa6\\x05\\x3f\\xaa\\x2c\\xea\\xeb\\x25\\xd3\\xd3\\xa3\\x8b\\x83\\x6b\\xcc\\xfa\\xf0\\x15\\x4b\\xfe\\x2f\\xba\\x12\\x72\\x88\\x64\\xce\\x94\\xe3\\x4a\\xc3\\x47\\x7e\\x5a\\xc3\\xbd\\x5a\\x03\\x68\\x7e\\x4a\\x03\\x02\\x35\\x7a\\x79\\xa8\\xb5\\x48\\x44\\x4b\\x24\\x94\\x63\\x3a\\xbd\\xa3\\x3c\\x57\\xfc\\x1c\\xc4\\x18\\x77\\x78\\xa3\\x55\\x59\\x00\\xff\\xd5\\x6b\\xc9\\xa2\\x84\\x03\\xee\\x50\\xe0\\x9b\\x60\\x11\\x94\\x13\\x93\\xfb\\x16\\x43\\x26\\x6d\\xd4\\x58\\x00\\x7a\\xbf\\x92\\x42\\x32\\x8d\\x7a\\x1d\\x5f\\x65\\xbe\\x9b\\x3b\\xc9\\xee\\xd1\\xd6\\xca\\xb5\\xbd\\xb3\\x9d\\x53\\xc6\\x83\\x58\\xa8\\xd7\\x65\\xa3\\xf8\\x63\\x7e\\xfa\\x6b\\xed\\xed\\x65\\xf8\\x66\\x86\\xd3\\x4f\\x6e\\x37\\x9f\\x1f\\xcd\\x15\\xcb\\xed\\xec\\xcf\\xb1\\xe0\\x8f\\xbb\\xf6\\xeb\\x8f\\xd5\\xed\\x2c\\x4e\\xc2\\x68\\xea\\xdb\\x5b\\x64\\x2f\\xa3\\xaf\\x31\\x86\\x52\\x7a\\x16\\x49\\x60\\x28\\x03\\x03\\x96\\x4c\\x8b\\xbb\\x80\\x14\\xfa\\xe4\\x61\\xec\\xc7\\x48\\xea\\x47\\xeb\\x5a\\xf2\\x3d\\x76\\x83\\x38\\x29\\xfe\\xef\\xc6\\xcf\\x4d\\xdb\\xfd\\x15\\xf4\\x6f\\x48\\xbb\\xb7\\xf7\\xd4\\xe7\\xab\\x59\\xc3\\xe8\\xa1\\xe7\\x8b\\xce\\x6b\\x34\\xbc\\xd9\\xbe\\x9f\\x06\\xfa\\x27\\x5c\\xb0\\x40\\x54\\x11\\x34\\x74\\x36\\x1f\\x1d\\x09\\xbb\\x38\\xa9\\x62\\xe0\\x63\\x3e\\x16\\x60\\x45\\xd8\\x30\\x8e\\x15\\x44\\xc9\\x1a\\x98\\x65\\x11\\x25\\xdb\\x9f\\x4a\\x52\\x86\\x64\\xe3\\x33\\x0e\\x35\\xb4\\xb0\\x96\\x6e\\xc0\\x45\\xf5\\xd6\\x36\\xb8\\xb0\\xf7\\x63\\x58\\xc1\\xb1\\xfd\\xf2\\x82\\xb2\\x6b\\xcf\\x86\\xc7\\xc3\\x27\\xf9\\x55\\x8b\\xb8\\x6d\\xc6\\xcb\\x94\\x86\\x60\\x0b\\x44\\x4c\\x83\\xdc\\x0b\\xf3\\x24\\x40\\x81\\xd1\\x1f\\x20\\x6c\\x6e\\x02\\x89\\x12\\x0f\\x70\\x0d\\x22\\x18\\x33\\xa0\\x88\\x13\\xd5\\xbb\\x46\\x0d\\x32\\x74\\xbf\\x5e\\xbe\\x58\\x06\\x67\\xa9\\xed\\xb2\\x64\\xf2\\x80\\x97\\xf3\\x58\\x95\\xf6\\x5a\\x3d\\x18\\xb7\\xc0\\xf2\\x1c\\xbc\\xec\\x6b\\xb5\\xdb\\x13\\x19\\xbe\\xe1\\xd9\\xa1\\x6c\\x80\\xe0\\x3d\\x39\\xa4\\x8d\\x13\\x14\\x09\\x78\\x53\\xc5\\x26\\xae\\x65\\x15\\x81\\x53\\x4c\\x5c\\xb6\\xdc\\xff\\xd9\\x28\\x9c\\x4c\\x58\\x20\\x77\\x54\\xea\\xcd\\x8c\\x67\\x5a\\xdb\\x8d\\xbf\\xaa\\xe0\\x5c\\xfc\\x00\\x1e\\xf3\\xf4\\x13\\x7e\\x38\\xfb\\x3c\\xea\\xe4\\x37\\xc8\\x2f\\xfa\\xee\\x58\\x5c\\x86\\x46\\x49\\x7d\\x64\\x99\\x7b\\xe5\\x49\\x72\\x17\\xdf\\xb1\\xf0\\x98\\xf9\\x6d\\x7f\\xcc\\x65\\x46\\x52\\xc9\\x03\\x82\\x85\\x47\\x01\\x58\\x43\\x0c\\x49\\x5a\\x8b\\xcb\\xa4\\x0c\\x2b\\x9d\\x1c\\x85\\x65\\xa1\\xbc\\xf1\\x65\\x18\\x5b\\x39\\x36\\xd0\\x88\\x14\\x4a\\xd4\\x93\\x3e\\xc6\\x66\\x4c\\xdf\\x83\\x95\\x94\\x51\\x28\\x09\\x7c\\x11\\x35\\x2a\\x54\\xb2\\x64\\x1c\\xb7\\x9b\\xde\\x5c\\x19\\x8c\\x79\\xe1\\x3e\\x47\\x87\\xd3\\x03\\x85\\x91\\xae\\xed\\x69\\x05\\xea\\xf3\\x33\\xe5\\xfc\\x82\\x9f\\x77\\xd4\\x09\\x4d\\x01\\xef\\x29\\x8a\\xb9\\xcb\\xc4\\x25\\x69\\x76\\x40\\x2a\\x12\\xa8\\x48\\x4a\\x84\\xad\\x8a\\x30\\x48\\xd6\\xc1\\x41\\x2a\\xa0\\x29\\x2b\\xe0\\x97\\xe5\\x26\\xcf\\xe9\\x4b\\xcb\\x48\\xa9\\x76\\xd8\\xe5\\x41\\x56\\x80\\x54\\x0a\\x33\\x63\\x79\\x44\\xce\\x41\\x61\\xa0\\x9a\\xcc\\xb4\\x6a\\xa6\\x91\\xd8\\xf8\\xfa\\x5a\\x3f\\x5d\\xac\\x28\\x5a\\x4c\\x2e\\xcf\\xd7\\x57\\x6a\\x91\\xcc\\x72\\x1b\\x6a\\xdd\\xdd\\xf9\\x88\\xbd\\x26\\x1a\\xce\\xbe\\x2e\\x41\\xb8\\xe2\\x78\\xa5\\x19\\x5f\\xfb\\xfd\\xaa\\x0b\\x0d\\xd6\\xbf\\xbe\\x1a\\x5d\\xfe\\xbc\\xc6\\xb2\\xb1\\xe2\\xf9\\xf9\\xf5\\xbe\\x92\\xbf\\x0d\\xc4\\x2b\\xdd\\xee\\x58\\x3f\\xb2\\xe2\\x73\\xff\\x64\\xdb\\x8d\\x53\\x7d\\x81\\xfa\\x47\\x68\\x93\\x23\\x12\\x91\\x36\\xf7\\xa1\\x8f\\xe6\\x81\\x03\\x70\\xe6\\xea\\xf8\\x5f\\x62\\x77\\xf2\\xd0\\xa8\\x29\\x4d\\xa9\\x64\\xbd\\x5e\\x11\\x94\\xd8\\xbd\\x4e\\xc7\\x86\\xf5\\x28\\x78\\x2d\\xc0\\xf4\\x31\\x07\\xb8\\xe2\\x60\\xd6\\x15\\xc1\\x05\\xf4\\x1b\\x14\\xc7\\xe2\\xea\\x18\\xf8\\x95\\x2b\\x50\\xd4\\x62\\x18\\xec\\x3f\\x45\\x23\\x25\\x62\\xa6\\xd4\\x09\\x40\\x45\\xcc\\xce\\x9e\\xd1\\xbe\\x1a\\x8e\\xcc\\x61\\x9d\\x2a\\x51\\x2f\\x34\\x46\\xa4\\x51\\x7d\\xa9\\x68\\xe8\\xc2\\x18\\x93\\x6a\\x69\\xcb\\x75\\xd4\\x6c\\xdc\\x93\\x2b\\xd9\\x59\\xdd\\x0d\\x82\\x88\\x1b\\x7b\\x56\\x4f\\xb6\\x05\\x79\\x7d\\xfd\\x85\\x95\\x63\\x9d\\x69\\xa7\\x9b\\x6a\\x6a\\x24\\xa5\\xec\\x70\\xca\\xcf\\xdc\\x3d\\xad\\xa2\\x8d\\xbe\\xef\\x5b\\x16\\xb2\\x37\\x5b\\x93\\xdc\\xd5\\x00\\x03\\x15\\x5c\\xbf\\x02\\x7c\\xa7\\x56\\x4e\\x82\\xc5\\xca\\x68\\xb1\\x54\\xf2\\x2b\\xe0\\xe2\\xfa\\x30\\xa0\\xc9\\x65\\x48\\x43\\x0c\\x00\\xf9\\x3f\\x79\\x17\\xd9\\x8d\\xaa\\x0a\\xc6\\xd7\\x7d\\xea\\xa4\\x56\\xf6\\x29\\x28\\x47\\x66\\x66\\xc5\\xe9\\x09\\xc4\\xd1\\xe1\\x02\\x0d\\x42\\x49\\xb2\\xca\\xfa\\x5d\\x5e\\xfd\\xf7\\x4f\\x37\\x31\\xa4\\x56\\xa6\\x7d\\x10\\xb7\\xb5\\x9a\\x6a\\x56\\x5b\\xdd\\x85\\x6d\\x9d\\x0b\\x6f\\x96\\xe7\\x25\\xd0\\xdf\\x3c\\xa7\\x6c\\x92\\x0c\\x2b\\x2b\\x07\\x17\\xcb\\xae\\x3a\\xcb\\x2f\\x91\\x3c\\x3a\\xe8\\xad\\xab\\xb2\\x99\\x96\\xe0\\x3a\\x35\\x01\\x58\\x4a\\x2b\\x07\\xe1\\x13\\x9f\\x16\\x39\\xf5\\x55\\x83\\x2d\\x8f\\xbc\\x42\\x1a\\xa1\\x3e\\xe7\\xf5\\x06\\xa9\\x26\\x67\\xf5\\x3f\\x4f\\xc9\\xd5\\xcf\\xf3\\x1d\\x1d\\x31\\x01\\x5f\\x01\\x4c\\x83\\xae\\x97\\x73\\xe3\\xb4\\x9f\\x15\\x0d\\xc6\\x3e\\x22\\x7e\\x26\\x22\\x76\\x1a\\x44\\x08\\x65\\x10\\xfa\\x41\\x5b\\x7e\\x84\\x08\\xe0\\x98\\x8a\\x96\\x14\\xc0\\xd0\\x82\\xa0\\x8a\\xe4\\xa0\\x8c\\xad\\x10\\x18\\x7f\\xcb\\x21\\x8a\\xeb\\xcb\\x88\\x4d\\x95\\x52\\x41\\x48\\x48\\x5d\\xe6\\xa3\\x3c\\x9b\\x23\\x78\\xef\\xbf\\x6f\\xe5\\xbc\\x42\\xc6\\x02\\xdc\\x78\\x36\\xef\\x3f\\xef\\xdf\\x6a\\x4b\\xbb\\x66\\x0f\\x13\\x0c\\x3e\\x7a\\x99\\x5c\\x1f\\x16\\x05\\xf9\\xdd\\xa3\\x47\\x1d\\x99\\x72\\xc9\\x71\\x25\\x49\\x3a\\xfd\\x89\\x24\\xc4\\xc8\\x12\\x38\\xf5\\x0b\\x08\\x18\\x0d\\x60\\x20\\xc3\\xa2\\xc2\\xba\\x7f\\xba\\x40\\x79\\xf3\\x09\\x40\\x3d\\x55\\x2c\\x15\\x8d\\x2b\\x04\\xaa\\x55\\xc1\\x86\\x4d\\xcd\\x99\\xbb\\x8c\\xe5\\x2b\\x5d\\x6c\\x1f\\xd2\\xa7\\x1c\\x95\\xb9\\x24\\x08\\xc8\\x94\\x7f\\x95\\xa4\\x7e\\xb6\\x9d\\x68\\x68\\x8c\\x9c\\x9c\\x7e\\xd7\\xeb\\x13\\x06\\xee\\xff\\x62\\x6f\\x9b\\xb5\\xb0\\x84\\x4a\\x97\\xcb\\x49\\xa7\\xc0\\x2a\\x63\\x49\\xbb\\x5c\\x56\\x36\\x4c\\x56\\x73\\xcc\\x1f\\x11\\x3f\\x54\\xa2\\x77\\x6f\\x16\\x46\\xab\\x70\\xe9\\xe1\\x60\\x76\\xf8\\xea\\xd9\\xf8\\xee\\x9e\\xff\\x5c\\x77\\x3a\\x6e\\xb4\\xac\\xa8\\x59\\x5b\\x4e\\xc2\\xeb\\xa4\\xa1\\x14\\xeb\\x2f\\x05\\x79\\x5f\\x53\\x0e\\xb0\\xd0\\x0b\\xfc\\x41\\x91\\x68\\xd1\\x37\\x4e\\xfb\\x07\\x9c\\x78\\x9f\\x19\\x26\\xcd\\xbf\\x02\\x0d\\x98\\x30\\x4c\\x36\\x49\\x74\\x25\\x28\\x4a\\x60\\x2e\\x2a\\x46\\x3b\\x2a\\x4d\\x29\\x4a\\xa6\\x96\\x94\\x59\\x9d\\xfc\\x46\\x6d\\xf6\\x76\\x91\\x3e\\x2e\\x72\\x42\\x9b\\xa5\\xee\\xda\\x66\\x64\\x4a\\x4e\\xad\\xce\\x46\\x06\\x72\\x1e\\x0e\\x8c\\x21\\x26\\x9e\\x06\\x73\\xa0\\x2e\\x29\\x68\\xe7\\xf1\\x7b\\x9b\\xe2\\xaf\\xf1\\x19\\x1c\\x9e\\x3f\\xe1\\x11\\x92\\x39\\x49\\x3b\\x4b\\x08\\x18\\xf5\\x73\\x39\\xbb\\x75\\x54\\x65\\x46\\x29\\x6f\\xcc\\x04\\x87\\x92\\xfa\\xa4\\x82\\x0d\\x37\\xf1\\x19\\x68\\xb6\\xc3\\x98\\xdc\\x58\\xb5\\x73\\x24\\x51\\x97\\xee\\x28\\xf6\\xaa\\x6d\\x83\\xd0\\xf5\\x2e\\xa3\\xec\\xf4\\xf8\\x7e\\x81\\x98\\xdc\\xfc\\xe8\\xf1\\x3a\\xdc\\x2a\\x81\\x9a\\x55\\xef\\x6a\\x26\\xdc\\x5c\\x77\\x31\\xec\\x4b\\xe8\\x35\\xd4\\x8a\\x6e\\x32\\x51\\x21\\x04\\x0c\\x60\\x00\\x2a\\x15\\x1c\\xd9\\x05\\x22\\x40\\x84\\x03\\x5d\\x80\\xe6\\xfa\\x50\\x15\\x17\\x62\\x3b\\xb3\\x27\\xf6\\x90\\x61\\x1d\\x8b\\x8d\\x59\\x72\\xa0\\xed\\x10\\x5f\\xa7\\xfc\\xe6\\xe0\\x83\\x33\\xe8\\x6c\\x21\\x0d\\x4e\\x93\\x3d\\x5d\\x64\\xee\\xef\\xb9\\xe2\\x80\\x5d\\xcd\\x41\\x23\\x93\\x6a\\x0b\\x83\\x21\\xbd\\xe9\\x81\\x8c\\xdb\\x36\\xa1\\xa3\\xb6\\x75\\x9a\\x2f\\x2c\\x49\\x4a\\x9b\\x09\\x98\\x78\\x28\\x19\\x94\\x92\\x36\\x63\\x29\\x66\\xa6\\xa1\\x30\\x13\\x8c\\x17\\x01\\x24\\xf9\\x01\\x55\\xaf\\x1a\\x17\\x35\\x56\\x29\\xd1\\xd8\\x9d\\xd0\\x9b\\x52\\xb0\\xcd\\x5c\\x39\\x97\\x17\\xed\\x6d\\x85\\x64\\x12\\x9a\\x1a\\x69\\x9b\\xc6\\xd1\\xa9\\x23\\xb9\\x57\\x57\\xec\\x8d\\xf5\\x57\\xce\\x9a\\xdb\\x79\\x42\\xb2\\x18\\x39\\xec\\x09\\x46\\x79\\xac\\x34\\x94\\xc5\\xce\\xc5\\xcb\\x1d\\x82\\x8c\\x18\\x92\\xdb\\xaa\\x93\\x13\\x0b\\xc6\\xaa\\xf4\\xde\\x94\\x6e\\x06\\x2e\\xa3\\x9e\\x62\\xb7\\x46\\x56\\xd6\\x2b\\x2c\\xb1\\xcf\\x1c\\x21\\x9b\\x56\\x68\\xb4\\xd4\\x7a\\x1b\\x46\\x3a\\x3e\\x86\\x7d\\x96\\xb8\\xec\\x0c\\x8f\\x60\\xbf\\xb3\\x4b\\x4b\\x1b\\x40\\xa1\\x95\\xad\\x44\\x1c\\xed\\x05\\xa9\\x5f\\xdd\\xd5\\x85\\xdc\\xc3\\xf2\\x2b\\x16\\xad\\x8f\\xed\\xb0\\xc5\\xb8\\xfc\\x7b\\x43\\xd9\\x5c\\xd4\\xd1\\x9b\\x82\\x31\\xe9\\x8e\\x12\\x13\\x82\\x64\\x65\\x08\\x1e\\x53\\x65\\x71\\x40\\xc0\\x83\\x3b\\xfc\\x45\\xca\\x4b\\x91\\x67\\xf0\\xf8\\x10\\xc7\\x02\\x41\\x7b\\xd0\\x99\\x49\\xc6\\xd9\\xac\\xce\\x78\\x69\\x73\\x28\\x28\\x28\\xe9\\xf1\\x09\\xb3\\xf9\\xa2\\x18\\xb0\\x18\\xff\\xb4\\x82\\xc6\\xcd\\x53\\x31\\x61\\xd0\\x64\\x7a\\xba\\xd0\\xd3\\x8c\\xa0\\xb2\\xae\\x78\\x38\\x34\\x53\\x91\\x45\\xd0\\x39\\x33\\x55\\xd1\\x6b\\xfc\\x12\\x46\\x67\\xde\\x86\\xeb\\x4d\\xe0\\x61\\x1f\\xbc\\x10\\x53\\x6a\\x46\\x79\\x39\\x8a\\xdf\\x73\\x71\\xdc\\x7c\\xea\\x39\\x2b\\xeb\\x77\\x67\\x82\\xc8\\x39\\xea\\x9b\\x5e\\x31\\x83\\x96\\x5a\\x4c\\x17\\x10\\xed\\x24\\x96\\x9b\\x6f\\xbc\\x7c\\x87\\xf7\\xfe\\xc2\\xd3\\xcd\\x68\\x70\\xf6\\x9c\\xca\\xcb\\x78\\x9c\\x6e\\xd2\\xe5\\x6e\\x6a\\xbb\\x00\\xf1\\x49\\xd4\\xb1\\x9d\\x24\\x39\\xe7\\xea\\x2a\\xa9\\xcf\\xf5\\x14\\x8a\\x6e\\xac\\xa8\\xc0\\xb8\\xdd\\xc4\\x91\\xec\\x90\\x57\\xae\\x81\\x32\\x0c\\x04\\x7a\\xf3\\xa3\\x52\\xfb\\x7b\\x77\\xe0\\x05\\xd6\\x12\\xee\\xe4\\x5d\\x96\\x4e\\x61\\x6a\\x83\\xff\\x8e\\x73\\x89\\xe0\\x6a\\x8f\\x0c\\xe5\\x96\\xcc\\x3f\\x6b\\x53\\xc1\\xdc\\x40\\xec\\x29\\x22\\xc4\\x29\\x7a\\x0e\\x90\\xba\\x87\\xfa\\xf6\\x5f\\x10\\x86\\x1d\\xe2\\xa3\\x26\\xde\\xc7\\x4a\\x92\\x9b\\xcf\\x07\\x6a\\x72\\x5b\\xd4\\xc7\\xf5\\xa4\\x53\\x6e\\x08\\xca\\x96\\x13\\xff\\x1c\\xe2\\x6e\\xb9\\xa2\\xb4\\xf6\\x80\\xf0\\xef\\x65\\xb2\\x4f\\x2d\\x9c\\xb3\\x05\\x04\\x42\\x25\\x14\\x81\\xc6\\xc9\\x84\\xcf\\xc1\\x26\\x21\\x6c\\x40\\x25\\x4d\\x28\\x48\\xa3\\x4e\\xd5\\xf3\\x9f\\x47\\x33\\xae\\xec\\xd1\\xa5\\xf0\\x36\\x86\\xde\\xc4\\xe9\\x39\\xff\\x70\\xcc\\x62\\x9b\\x25\\xbf\\xd7\\x0e\\x76\\x52\\xff\\x63\\xa1\\x78\\x64\\x3a\\x7a\\xb4\\x3a\\x2a\\xa7\\xa1\\x64\\x5d\\x74\\xe1\\x64\\x70\\x8a\\xe3\\x56\\x56\\x14\\x84\\xdf\\x79\\xe0\\x75\\x5f\\xfa\\xec\\xc3\\xee\\x55\\xb0\\x4a\\xda\\xb0\\xbf\\x9c\\xb1\\xd3\\xa8\\x3a\\x30\\x63\\xea\\x52\\xe2\\x43\\x1d\\x50\\x30\\x85\\x22\\x90\\xe7\\xe7\\x24\\x23\\x32\\xe1\\x4f\\x6f\\xa8\\x7d\\xf4\\xc0\\xc2\\x50\\x7a\\x61\\x87\\xcb\\x27\\x6c\\xf1\\xb5\\xfc\\xd1\\x23\\xd3\\x2e\\x87\\x0c\\xfd\\x3e\\x26\\xfe\\xfd\\x17\\xd4\\xb1\\x6d\\x8b\\x19\\x72\\x74\\x6a\\x5a\\xf2\\x78\\xfc\\x68\\x9b\\x5c\\x9e\\xa0\\xb4\\x25\\x61\\x22\\x8e\\x7f\\xa6\\xaa\\xa7\\xfa\\x17\\xf3\\x71\\x11\\x58\\xd7\\xe3\\x1d\\x2f\\xe3\\x16\\x34\\xca\\x1d\\x42\\x08\\x49\\xea\\x21\\xb1\\x22\\x32\\xfa\\x55\\xf6\\xa4\\xed\\xef\\x62\\x69\\xbd\\xe1\\xc1\\xf8\\xcb\\x4f\\xa9\\x68\\xc4\\x43\\x66\\x87\\xd3\\xc1\\x33\\xf4\\x5a\\xec\\x95\\xab\\x97\\x03\\x83\\xdf\\xe0\\xa8\\x25\\xa7\\xd5\\x64\\x23\\xac\\x4b\\xa4\\xda\\x09\\xbc\\xdc\\xd9\\xc3\\x05\\x74\\x0a\\xcf\\x5a\\xba\\xd9\\x0d\\x47\\x5d\\x83\\xe9\\xa9\\xbb\\xdc\\x47\\x01\\x70\\xe5\\xe0\\xd1\\xb7\\x6b\\x0d\\xc9\\xb1\\x29\\x57\\x76\\x84\\x4e\\x31\\x57\\x6e\\xfd\\xf7\\x80\\x8b\\x79\\xb0\\x6b\\x9b\\x3c\\x1f\\xea\\x78\\x73\\xac\\x76\\x58\\x7f\\x51\\x33\\x65\\xd8\\x82\\x3e\\x36\\x94\\x7c\\x58\\x41\\xdf\\x85\\x21\\x69\\xf6\\x2d\\xeb\\x1f\\x28\\x38\\x41\\x2c\\x14\\x77\\xa2\\xa5\\x76\\x9f\\x5f\\x13\\x60\\xe0\\xfe\\x24\\xd0\\xd7\\x87\\xd2\\x30\\x02\\xf9\\xb8\\xcb\\xb8\\x0a\\x5c\\x65\\xaa\\x62\\xcd\\xc8\\x6b\\x82\\x08\\xb8\\x78\\x2d\\x1a\\xa5\\x14\\x98\\x83\\x04\\x04\\x61\\xc2\\x32\\xd8\\x9f\\xa2\\x36\\x2d\\x28\\xad\\xfa\\xad\\xb4\\x9c\\x94\\x0c\\x4b\\x49\\x19\\x59\\xb8\\xf8\\x70\\x50\\x0e\\xae\\xe8\\x1f\\x9d\\x04\\x99\\x16\\xad\\xa4\\x98\\x88\\x9e\\x01\\xe3\\xc6\\x0f\\x2d\\xa5\\x3d\\xcd\\x52\\x48\\xec\\xf6\\x2c\\x82\\x4d\\x74\\x11\\xcc\\xd4\\x75\\xe6\\x88\\xf9\\x75\\x21\\xe6\\x7a\\xe7\\xbc\\x99\\x7a\\x75\\x1b\\x0c\\xe7\\x93\\x65\\xe3\\xf2\\xe1\\x3d\\xc1\\xd7\\x92\\x8b\\x07\\x54\\x86\\x74\\x66\\x61\\xe4\\x56\\x82\\x61\\xdb\\x28\\xe1\\x14\\x3e\\xf7\\x86\\xca\\xdf\\xf5\\x6a\\x15\\xe9\\x31\\x1d\\x2f\\x03\\xea\\x1d\\x0d\\xc3\\x68\\xc9\\xa8\\x94\\x0a\\x4b\\xa4\\xd8\\xef\\xaf\\x00\\xc3\\x80\\xe2\\x55\\xb8\\x1b\\x4f\\xe7\\xf7\\x95\\xd5\\xdb\\x44\\xee\\x67\\x41\\x53\\x5b\\x5d\\xa9\\x2e\\x4a\\xda\\x9d\\x05\\xeb\\x65\\x25\\x9b\\xc9\\x46\\xaf\\x54\\xa9\\x97\\x81\\x85\\x40\\x95\\xce\\x4c\\x51\\xbd\\x35\\x05\\x5b\\x89\\x17\\xf0\\xe2\\x74\\xf4\\x7f\\x6b\\x9d\\x6e\\xab\\x37\\x5f\\x3b\\x01\\x1d\\xcb\\xa9\\x3f\\x87\\x7d\\x3b\\x7a\\x38\\x56\\x30\\xaa\\x74\\x30\\xb9\\x4b\\x43\\x16\\x81\\x10\\x7a\\x22\\xde\\xce\\x77\\xd7\\x52\\x10\\x10\\x50\\x6a\\x72\\xdf\\x3b\\x9f\\x9d\\x01\\xb0\\xaa\\xe8\\x3b\\x30\\xc7\\xce\\x81\\xb1\\x83\\x1a\\x30\\x7d\\x70\\x8f\\x3f\\xf9\\x81\\x08\\xe2\\xf1\\x09\\x82\\x71\\xe3\\xb8\\xc1\\x40\\x04\\x41\\x78\\xc5\\xe1\\xf2\\xf8\\xc8\\x85\\x00\\x3f\\xb8\\x03\\x94\\x05\\xb0\\x69\\x47\\xa6\\xfc\\xa6\\x5d\\x6c\\x26\\x8e\\xe8\\x5e\\x4f\\x1c\\x3f\\xe7\\xc1\\x47\\xc2\\x1b\\x0f\\x90\\x56\\x77\\x7c\\xa4\\x92\\x1e\\x73\\x42\\x06\\x63\\x26\\x0a\\x9f\\x63\\x28\\xc0\\xe5\\xc1\\xa1\\x58\\x00\\x90\\xa3\\x09\\xaf\\x01\\xaf\\x22\\xd9\\x6c\\x9e\\xa0\\x24\\xc6\\x35\\xec\\x95\\x0b\\x6a\\x52\\xe0\\x75\\x81\\x1d\\x63\\x36\\x1c\\x01\\xdb\\x66\\x5a\\x15\\xd3\\x59\\x82\\x21\\x9a\\x20\\x8a\\xf9\\xb3\\x40\\x57\\x7f\\xda\\xf2\\x87\\xfb\\x84\\x91\\xc6\\x0d\\xa3\\x02\\xa3\\xa9\\xf2\\xa5\\x47\\x9b\\xd3\\x6f\\x9a\\xe2\\x13\\xaf\\xb6\\x05\\xa3\\x76\\xbf\\xd5\\xdf\\x5a\\xee\\xb5\\x40\\x73\\x7b\\xea\\x71\\xda\\x8b\\x1a\\x46\\x83\\xc9\\x20\\x35\\xae\\xee\\xdf\\xc0\\xc8\\x88\\x10\\x4d\\x47\\xfa\\x42\\x83\\xbc\\xb5\\x4f\\xc2\\x84\\xc0\\x9e\\x92\\xad\\xac\\x13\\x81\\x4a\\xb1\\xb4\\x81\\x2a\\x15\\x31\\x88\\xab\\xca\\x0b\\x68\\xe2\\x65\\xda\\x57\\xf5\\xf3\\x3e\\x64\\x2b\\xa8\\x78\\xed\\xa7\\x2f\\x70\\xa5\\x89\\x0e\\x9c\\x99\\x9a\\x07\\xe3\\x07\\x0c\\x32\\x14\\xba\\x56\\xae\\x94\\x4d\\x43\\x04\\x40\\xf2\\xb7\\x2f\\x79\\x2d\\xb6\\x69\\x9d\\xa4\\x69\\x3b\\x8f\\x22\\xd1\\x9d\\x33\\xaa\\x31\\x95\\x15\\x28\\x05\\x2c\\xb3\\xe4\\x08\\x70\\x34\\x92\\x3f\\x74\\x66\\x63\\x02\\x71\\x63\\x82\\x4a\\xc3\\x9f\\x64\\xd3\\x3e\\x69\\x34\\x3d\\xd0\\x73\\x98\\xf5\\x2f\\x4e\\x69\\x5b\\xa8\\x7b\\xe9\\x3f\\x0c\\x2b\\x98\\x1b\\x4d\\x87\\x0f\\x19\\xc9\\xa3\\x64\\x29\\x1b\\x86\\x88\\x46\\x36\\x52\\xe4\\x31\\x2d\\xf0\\x7a\\xeb\\xba\\x7c\\x7e\\x9c\\xec\\x8d\\xb6\\x3a\\x36\\x1a\\x7e\\x36\\xba\\xde\\xe6\\xe6\\xde\\xb6\\x3a\\x7a\\x1e\\xd7\\x1d\\x1d\\x53\\xfa\\xde\\xed\\xbf\\x07\\x29\\x8e\\x8f\\x13\\xd5\\xa1\\xb3\\xd4\\x3f\\x3f\\x07\\x4c\\xa1\\xad\\xd5\\xcc\\xa9\\x76\\x9d\\x8c\\xca\\x2d\\x06\\x1e\\xba\\xa2\\x3a\\xb3\\x63\\xc1\\xcf\\xa1\\x2b\\xe1\\xf3\\x39\\x1f\\x51\\x57\\xc5\\x87\\x26\\x11\\xbb\\xf8\\x10\\xfa\\x46\\x5b\\x74\\xf9\\x08\\xd0\\xe9\\x8a\\x19\\xfe\\x49\\x33\\xcf\\x20\\x8f\\xef\\x84\\xd4\\x30\\x04\\xd4\\xac\\xd4\\xa2\\xb8\\x33\\x60\\xa7\\x97\\xc3\\xfe\\xf0\\xce\\x9a\\x37\\xa0\\x15\\xac\\x8f\\x9e\\x83\\xeb\\x54\\x8b\\x87\\x6d\\x6f\\x4f\\x7e\\x7a\\xe6\\x42\\xd6\\x9d\\x77\\xbb\\xa5\\x72\\x59\\x6b\\xce\\x26\\x5b\\x21\\xea\\xec\\xae\\x26\\x89\\xf4\\x22\\x9e\\xb5\\xdf\\x3f\\x47\\x1d\\x89\\xbd\\xbd\\x2b\\x91\\x03\\x03\\x9b\\x5c\\x0e\\xf7\\x01\\xab\\x62\\xa1\\x62\\x76\\x37\\x76\\x84\\x3d\\x3d\\xf7\\x8c\\x80\\xbf\\x7b\\x97\\x69\\x10\\x16\\x09\\x88\\xa0\\x00\\x94\\x3c\\x6c\\x8c\\x42\\x5b\\x7c\\x12\\x68\\x04\\x82\\x22\\x83\\x9b\\x15\\xa5\\xea\\xd5\\x0f\\xbd\\xa7\\xd1\\x9c\\xc6\\xa3\\xed\\xf4\\x6d\\xe7\\x05\\x25\\x81\\x8e\\x31\\x8e\\xd9\\xa9\\xc4\\x81\\x25\\x4c\\xbb\\x12\\xee\\x17\\x1a\\xc0\\xc9\\x9e\\x11\\x44\\x90\\x80\\xe4\\xd3\\x70\\xd3\\x96\\x8e\\x39\\x00\\xd7\\x87\\xa7\\x66\\x19\\xfc\\x37\\x0d\\xdf\\x7d\\xa6\\x57\\xf4\\xf6\\x99\\x7d\\x8c\\xaa\\x61\\xb4\\x51\\x08\\x8f\\x4e\\x1a\\xaf\\x36\\xf6\\xd1\\x08\\x77\\xeb\\x16\\xad\\x4e\\x6a\\x85\\x9b\\x40\\x7a\\x44\\x2c\\x38\\x22\\x29\\xcc\\x88\\x20\\xb0\\x4f\\x38\\xff\\x13\\xbe\\x43\\xaf\\x3a\\x59\\x27\\x97\\x24\\x68\\x0f\\x45\\x81\\xd9\\x04\\xda\\xcd\\x8b\\x57\\x77\\x4e\\xc4\\x61\\x74\\x52\\x9a\\xec\\xf2\\xec\\xad\\x56\\x4c\\x35\\x67\\xa3\\x6b\\x21\\xde\\x1f\\x43\\xab\\xcd\\xfa\\xc1\\x7d\\xb4\\x2f\\x59\\x47\\xa6\\xbf\\x76\\x6a\\xb2\\x06\\xbf\\x82\\x1a\\xdb\\x7c\\x4c\\x0e\\x46\\xc8\\xc5\\xd1\\xe0\\x51\\x3e\\xdd\\xc1\\x42\\xe9\\x5f\\x8c\\x3b\\x5f\\x1f\\xbc\\x6d\\x35\\xbe\\x60\\x93\\xf3\\x8e\\xd7\\xd5\\x56\\x42\\x64\\xe4\\x2c\\xee\\xee\\xba\\x85\\x8b\\x8c\\x2e\\x86\\x7d\\xb5\\xd5\\xd8\\x98\\xe5\\x19\\xfe\\xa6\\x79\\xb7\\x75\\x26\\xce\\xa5\\xd5\\x98\\x20\\x8c\\x66\\x5a\\xc9\\xe8\\x05\\xb9\\xb1\\x0f\\x1c\\x30\\x7d\\xaa\\xa1\\x57\\x37\\x0a\\x3c\\xaf\\xf9\\x22\\x4d\\x9e\\xb5\\x5b\\x20\\xef\\x19\\x46\\x5d\\x7b\\x17\\x66\\xd2\\xb5\\xd1\\xc9\\xad\\xe9\\x49\\xc7\\x45\\xfb\\xd7\\xd7\\x63\\xd1\\x33\\x55\\xeb\\xab\\xa5\\xc1\\xc4\\x23\\xe4\\x3a\\x41\\xec\\x2b\\x37\\x20\\x52\\x6d\\xe4\\xf0\\x05\\xcd\\xde\\x95\\xab\\x4f\\xbe\\x04\\x01\\x35\\x8a\\xd9\\x4c\\x38\\x7a\\x36\\x54\\x52\\xc9\\x2f\\x27\\xc6\\x23\\x77\\x64\\x26\\x7d\\x70\\xed\\xa2\\x9b\\x5a\\x3a\\xbb\\xd3\\xe7\\xe8\\x4a\\x83\\x95\\x2a\\x76\\x7d\\xd0\\x89\\x26\\x22\\xb6\\x5c\\x09\\x01\\x18\\x08\\x2a\\x38\\xe6\\xfd\\x20\\x69\\xa1\\x6f\\x84\\x97\\x83\\x71\\x38\\x14\\x61\\xea\\x82\\xfe\\x62\\x53\\x75\\x48\\x89\\x34\\xbe\\xec\\x93\\xac\\xbc\\xfb\\xd5\\xf1\\xb7\\xaf\\x71\\xf3\\x22\\xb0\\x57\\x84\\xe9\\x02\\xbc\\xb8\\x21\\x5f\\x13\\x19\\xb1\\xc4\\xf4\\xe4\\x59\\x6f\\x43\\xf5\\x3c\\xcb\\xbd\\x63\\x97\\x61\\x29\\x2d\\xa7\\xd5\\x5a\\xf9\\x46\\xa7\\x6c\\xa9\\xd2\\xec\\xcd\\xfb\\xd1\\x84\\x1b\\x97\\x88\\x08\\x6c\\x88\\x33\\x30\\xcc\\x91\\x50\\xd9\\x1a\\x29\\x5f\\x41\\x8c\\x22\\xb1\\x1c\\xc5\\x6b\\x6d\\x2e\\xca\\x9c\\xe0\\x71\\x66\\xb7\\xcb\\x03\\x81\\xee\\xb7\\x3a\\x35\\x21\\xb8\\x97\\x74\\x76\\xeb\\x4e\\xd4\\xb1\\x73\\xad\\x34\\x6c\\xa6\\xd1\\xec\\x24\\xd4\\xff\\x0e\\x0f\\x50\\x79\\x72\\x08\\x85\\x40\\x23\\x02\\xd6\\xc7\\x51\\x03\\x33\\xb4\\x07\\x8c\\x99\\x5f\\x3a\\x86\\xc6\\x70\\x28\\xfb\\x90\\x9d\\x9e\\xbd\\x28\\xf7\\xc0\\x0e\\x1e\\x7c\\x08\\xa8\\x0a\\xf0\\x83\\x4a\\x7c\\xdd\\x20\\x74\\x9c\\x07\\x55\\x0e\\x53\\x27\\x60\\x27\\xa3\\x07\\xa6\\xd7\\xca\\x07\\x6a\\x53\\x4e\\x0b\\xa1\\x93\\x4b\\x4a\\x2d\\x15\\x60\\xd2\\xcb\\x03\\x87\\x55\\x1e\\xfc\\x3d\\x48\\xf9\\x15\\x7e\\x2b\\x45\\x1f\\xec\\xee\\xd5\\xfd\\xfc\\xbc\\x43\\x7f\\xdf\\x50\\x1c\\x87\\xe8\\x92\\x55\\x4b\\xa8\\x49\\xff\\x25\\x6c\\xe5\\xa1\\xf3\\xd0\\x3d\\x4c\\x04\\x0c\\x10\\x02\\x4e\\x94\\x1d\\xc9\\x74\\x23\\x54\\x10\\x81\\x41\\x2f\\x29\\x26\\x2e\\x45\\x7a\\x3f\\x2e\\x20\\x87\\x57\\x3c\\x41\\x14\\x6b\\xf8\\x2c\\xa7\\xa6\\xde\\x69\\x66\\x5f\\xcf\\xad\\x76\\x89\\xd0\\x3e\\xb0\\x12\\x6d\\x7b\\x09\\xa5\\xb7\\x7d\\x23\\x39\\x02\\xfa\\x34\\x6f\\x3a\\x6d\\x73\\xe8\\x22\\xf3\\xd4\\x5b\\x4e\\xf0\\x49\\x78\\x1b\\x1a\\x1a\\xa2\\x22\\x58\\x06\\x83\\x39\\x48\\xe3\\xcf\\xdd\\x13\\x28\\xb8\\x68\\x73\\x30\\x4c\\x31\\x79\\x1b\\x6d\\xa3\\x68\\xd5\\xb9\\x5d\\x8d\\x8f\\x27\\x88\\x8d\\xa4\\xa8\\x19\\xc2\\xe6\\xd1\\x8e\\x2f\\xce\\xd6\\x0c\\xa5\\x98\\x7b\\x02\\x1f\\xd1\\x8f\\x57\\x9e\\x92\\x24\\x79\\x58\\xda\\x23\\x05\\x11\\x85\\x0e\\x8f\\x2b\\x17\\x76\\x2e\\xb2\\x44\\x1e\\xe3\\xb6\\x76\\x9f\\x96\\xee\\x75\\x74\\x58\\xb5\\x56\\x7d\\x46\\x67\\x99\\x7d\\x82\\xf4\\xb6\\x56\\xab\\xb5\\xb3\\x6c\\x88\\xc0\\x0e\\x0b\\xbf\\xa3\\x35\\xd6\\xa3\\xbf\\x0b\\x0f\\x4f\\x4e\\xa7\\xb0\\x45\\x21\\xb0\\x1a\\x8f\\x23\\x61\\xc1\\x00\\xc2\\xe5\\xf8\\x5a\\x28\\x9b\\xa3\\x13\\x9f\\x56\\x79\\xc0\\x48\\x79\\x7a\\x37\\xff\\x80\\xb1\\xa9\\xfd\\xd7\\xcc\\x5d\\xd8\\xd1\\xa1\\x97\\x2b\\x45\\xd2\\xe3\\x12\\xa0\\xc3\\x73\\x67\\x72\\x6d\\xa4\\x3d\\xb7\\xb8\\xa3\\xf1\\x9f\\xb4\\xbb\\x7b\\xeb\\xef\\x7f\\x2a\\x79\\x76\\x7a\\x87\\x41\\x2d\\x7c\\xa4\\x54\\x55\\x1f\\xeb\\x8e\\xbe\\xb5\\x14\\x0f\\xdb\\xfb\\xa5\\x4c\\xe6\\xc7\\xde\\x59\\xac\\x66\\xa2\\x51\\xf6\\x2d\\x8e\\xbc\\xb2\\x1a\\x1a\\x9a\\x5d\\xca\\x21\\xf9\\xd9\\x4b\\x11\\x07\\xe0\\xec\\xb9\\xc8\\x02\\x95\\x74\\xc5\\xe2\\xf8\\xfd\\x0d\\xb3\\x25\\x49\\xe4\\xbf\\x47\\xad\\x33\\x4e\\x1a\\x29\\x55\\xce\\x95\\x29\\x0f\\xb6\\x43\\x60\\x9f\\xb0\\x86\\x1b\\x88\\x31\\x8c\\x34\\x34\\x9d\\xbd\\x4a\\x5f\\xed\\xb2\\x58\\xb2\\x47\\xc9\\x53\\x34\\xda\\x5d\\x8c\\xaa\\xa4\\xc8\\x64\\x9d\\x5d\\x73\\xd2\\xd4\\x27\\x6c\\x7c\\x40\\x4e\\x69\\x26\\x2a\\xb1\\xab\\xaa\\x30\\xca\\x94\\x3a\\xe0\\x7e\\xb5\\x15\\x38\\xd4\\x53\\xff\\x6e\\xbe\\x2c\\x1d\\x98\\xc9\\xf2\\xc5\\xbd\\x2e\\xd2\\xf4\\x86\\xd7\\xbd\\x72\\xdb\\x7f\\x9c\\xa7\\xe8\\xd0\\x7c\\x75\\xac\\xd2\\xea\\x69\\x9b\\x13\\xb6\\x78\\x91\\x85\\x64\\x34\\x3a\\x65\\x84\\x92\\xdd\\xd4\\xdf\\xb4\\xec\\x34\\xc6\\xbb\\xe9\\xfb\\xd6\\xdf\\xe3\\x65\\x2e\\x04\\xe9\\x02\\xeb\\x63\\xb7\\xf9\\x10\\x13\\x08\\xac\\xfc\\xd5\\x36\\x48\\x00\\x76\\xe1\\xac\\x1b\\xce\\x80\\xbd\\x55\\xf6\\xe9\\xe0\\x95\\xff\\x3d\\xc5\\xc0\\x50\\x01\\x67\\x86\\xc8\\xe0\\xe3\\xb8\\xfa\\x7e\\x02\\xd7\\x3d\\xc9\\x3c\\x1d\\x69\\xca\\xe8\\x41\\x6a\\xda\\xdb\\xcc\\xd1\\xca\\xe5\\x10\\x4b\\x39\\x31\\xa5\\xc3\\xa4\\xfb\\x65\\xd1\\x38\\xf0\\xc8\\xd9\\x5c\\xef\\xf8\\x39\\x8f\\xbf\\x90\\xd1\\x71\\x61\\xc8\\x29\\x7c\\x1c\\xef\\x35\\x90\\x54\\xf1\\xd3\\x58\\xce\\xb8\\x30\\x2e\\x6e\\xb5\\x3b\\x60\\xe8\\x0c\\xd9\\xdc\\x00\\x33\\xa5\\x7c\\xbd\\x34\\xe3\\x0e\\x7e\\x73\\x7f\\x6f\\x07\\x15\\x93\\x88\\x5f\\x4e\\x48\\x4d\\xc4\\x49\\xaf\\xc6\\xb9\\x1b\\xab\\x84\\xbc\\xf2\\x30\\x9b\\xe4\\x9a\\x7f\\x88\\xc1\\xa4\\x1b\\x9b\\xcc\\xd6\\xca\\x3a\\x73\\x8a\\xa9\\xf9\\x23\\x75\\xa8\\xe4\\x95\\x42\\xeb\\x73\\xb7\\xf0\\xb0\\xac\\xe4\\x95\\x1a\\xb7\\x1a\\xd4\\x80\\xbd\\x92\\xa4\\xf1\\x91\\xe9\\x34\\xd7\\xee\\xc9\\x3c\\xcb\\xc9\\x58\\x57\\x40\\x5d\\x6c\\xb3\\xfb\\x68\\xb3\\x5d\\x8b\\x77\\x99\\xc7\\x16\\x04\\xad\\x26\\xad\\xac\\xbe\\x4a\\x4d\\xd9\\x57\\xff\\x00\\xa7\\xd6\\xc1\\xd9\\x61\\xa9\\xff\\x5b\\xa1\\x32\\x0a\\x41\\x5d\\x03\\x7b\\xfa\\xa9\\x1d\\xe4\\x62\\x71\\x4f\\xfa\\x37\\x42\\xdb\\x86\\xb4\\x7c\\xff\\x22\\x6a\\x80\\xea\\xb5\\x63\\x21\\xa7\\x70\\xdb\\x83\\xf4\\x50\\x0e\\x5e\\xa5\\xaa\\x5c\\x26\\xbc\\xb9\\x15\\x68\\xa2\\x7f\\xe2\\x46\\xed\\x4e\\xb7\\xaa\\x29\\x8e\\x80\\x3f\\x6f\\x1e\\x3c\\x23\\xbf\\x36\\xee\\xa3\\x5c\\xc7\\xb5\\x77\\xf5\\xbd\\x60\\x75\\x1c\\xea\\x5f\\x18\\xdd\\x8f\\x54\\x18\\xfb\\xe1\\xe5\\xfa\\x67\\x7b\\xf4\\xc4\\x1b\\xc6\\xbc\\xe3\\xae\\x7e\\x12\\x01\\x55\\x99\\x01\\xdc\\x5a\\x78\\xc8\\x19\\x8a\\x4d\\x04\\x81\\x96\\xf0\\x61\\xed\\x18\\x56\\xe3\\x88\\x5e\\x22\\x8b\\x34\\x51\\xd1\\xc5\\xce\\x69\\xe8\\x0a\\x6f\\x6f\\x37\\xd4\\x38\\x8a\\x90\\xd2\\xb5\\xbd\\xcb\\xf3\\x87\\x26\\x71\\x7e\\x17\\x2d\\x36\\x44\\x0d\\xdf\\xdc\\xda\\x5d\\x1f\\x34\\xc8\\x53\\x21\\xa6\\xd1\\xf9\\x49\\x8c\\xa0\\xd6\\xe9\\x89\\xe2\\x07\\x62\\x9e\\x34\\x6e\\x63\\x36\\xd4\\x6a\\x7e\\x32\\xd1\\x51\\x33\\x44\\x0a\\xae\\x3e\\x3b\\x8a\\xba\\x25\\x19\\x4f\\xdb\\x81\\x4e\\xed\\x71\\x56\\xeb\\x1e\\x8f\\xb4\\x19\\xbc\\xef\\x3c\\x91\\xf4\\xfb\\x8a\\x0e\\x74\\xdf\\x0c\\x45\\x33\\x8f\\x82\\x26\\x0a\\x11\\x02\\x68\\x95\\x91\\x32\\x65\\xfe\\x10\\xba\\x11\\x22\\xa3\\x44\\x89\\x3f\\x50\\x74\\x3a\\x16\\xc5\\x2f\\x8b\\xd5\\x5b\\xa9\\x4e\\xa1\\x5a\\xed\\xb6\\xf7\\xf5\\xc9\\xe5\\x6a\\x89\\xa8\\x1e\\x57\\xe8\\x67\\xda\\x7d\\x24\\x9a\\xaa\\xd7\\x27\\xaa\\xee\\x19\\xaf\\xa1\\xe8\\xee\\x9a\\x0d\\xe0\\x2a\\x6e\\xe1\\xd3\\xbd\\x18\\x1a\\x8d\\x32\\x19\\xa2\\x94\\xdd\\xed\\xaa\\x0f\\xa8\\x72\\x81\\x3e\\x49\\x8f\\x09\\x73\\xb4\\x20\\xb6\\xcb\\xb6\\xeb\\x25\\xe0\\xd5\\xe5\\x76\\x3a\\xf6\\xbe\\x63\\xf5\\x9b\\x30\\xfb\\x88\\xdb\\xb6\\x85\\x3c\\x5c\\xd9\\x43\\x97\\xd4\\x4f\\xc4\\xf7\\x04\\x7b\\x77\\xbf\\x56\\x44\\x00\\x81\\x5c\\x24\\x52\\x59\\xe3\\x53\\x1b\\xf9\\xae\\x1f\\x84\\x6c\\xaf\\xf2\\x84\\xb8\\xd5\\x68\\x70\\xb6\\x6b\\xf8\\x09\\xea\\x19\\xed\\x37\\xeb\\x2b\\xc1\\x9b\\x9b\\xe9\\xe2\\x5d\\x2b\\x81\\x3f\\x16\\x30\\x00\\x0e\\x30\\x55\\xb2\\xe4\\x1e\\xd5\\xee\\x17\\xa7\\x50\\x52\\x17\\xba\\x73\\xb3\\xd0\\xb3\\x72\\xfc\\x94\\xc1\\xce\\x17\\x0e\\x5e\\xc8\\x94\\x7e\\x80\\xd3\\x0e\\x4d\\x3e\\xfa\\x35\\xc5\\x09\\xfe\\x5a\\x50\\x12\\xc7\\x27\\x97\\xe3\\xf5\\x48\\xbb\\xe6\\x75\\x92\\xdf\\xff\\xa0\\xf3\\xe8\\x15\\xaa\\x3e\\xa0\\xfd\\xb5\\xcd\\x09\\x74\\xcc\\x82\\x16\\x87\\x6c\\xf9\\x70\\xc0\\x99\\x59\\x9f\\x7e\\x3c\\xc9\\xf7\\xa7\\xb9\\x2c\\xcd\\xf5\\x64\\x3b\\x00\\xda\\xd7\\xe3\\xdd\\xf5\\xd6\\x74\\x11\\x5a\\x79\\xce\\xbd\\xbd\\xca\\xff\\x65\\x99\\x6c\\x26\\xde\\x0b\\xde\\xba\\xeb\\x9f\\x6d\\xb6\\x6a\\x4b\\xfc\\x7d\\xd7\\x58\\x78\\xae\\xa2\\x7f\\x7e\\x9f\\x4d\\xf6\\x90\\xbb\\xf3\\x48\\x34\\x3d\\x05\\xcb\\x03\\x35\\x67\\x43\\x10\\x5e\\x80\\x0a\\x1e\\xcb\\x40\\xf8\\x72\\xd4\\x4d\\x17\\xda\\xcb\\x46\\x94\\xdb\\x13\\xb8\\x1d\\xd2\\xfb\\x4e\\x6e\\xbb\\x6c\\xcc\\x58\\x3c\\xd0\\x35\\xd1\\x75\\x0c\\xf8\\x29\\x34\\x34\\xca\\xc1\\xa6\\x7a\\x72\\xf9\\x01\\x2c\\xf3\\x6d\\x16\\x2b\\xac\\x7f\\xcb\\x27\\x42\\xc5\\xea\\x08\\x58\\x90\\x77\\xd0\\xf6\\xa2\\xe3\\xcd\\xfc\\x3a\\xed\\x4c\\xd9\\xdd\\xe7\\x52\\x51\\x01\\xf6\\xef\\xb9\\xac\\xd4\\x69\\xfb\\x72\\x39\\x1b\\x11\\x8e\\x8e\\x26\\xb2\\x35\\xc4\\xe4\\xb2\\x38\\x8b\\xcf\\xee\\x50\\x3a\\x45\\x1a\\x41\\xdf\\xb3\\x0e\\x89\\xf1\\x91\\x19\\xe0\\x4d\\xcd\\x54\\xdf\\x42\\xda\\x5b\\xb3\\x26\\xaa\\xeb\\x3a\\x8b\\xd1\\xb6\\x68\\x50\\x1d\\x5a\\x95\\x97\\xb6\\x15\\x3b\\x3a\\x8b\\x0b\\x6e\\x53\\x22\\xba\\xb5\\xa8\\xbe\\x2f\\x15\\x15\\xe9\\x09\\x08\\xe0\\x19\\xd4\\x0f\\x73\\xbe\\x3d\\xe6\\x4b\\x59\\x1e\\xbc\\x0b\\x34\\xc8\\xf9\\x3e\\xad\\x5c\\xa1\\x85\\xbc\\x3f\\x67\\xc9\\xdd\\x69\\xea\\x1b\\xc8\\xc6\\xc0\\x21\\x94\\xc5\\x8b\\xc1\\x28\\xc2\\x34\\x92\\xfc\\xbd\\xfb\\x64\\xff\\x20\\x45\\x18\\xf9\\x13\\x40\\x51\\xbc\\x00\\x13\\x42\\x49\\xe8\\xe9\\xd4\\x0a\\x0a\\x40\\xa2\\x64\\x6e\\xe1\\x64\\x92\\x8e\\xc6\\x5f\\xee\\x21\\xd0\\x2f\\xa3\\x90\\xe4\\x32\\xdc\\x35\\xb6\\x70\\x68\\x67\\x6a\\xd8\\xc2\\xe8\\xe5\\x0b\\x2d\\x7d\\xed\\x29\\x65\\x16\\xdc\\xd9\\x7e\\x69\\x8b\\x70\\x40\\x65\\x67\\xa1\\x4b\\x1e\\x52\\xa5\\xd6\\x34\\x50\\xef\\xee\\xda\\x94\\xef\\x7c\\x4f\\xbc\\xbd\\x26\\x4c\\xaa\\xa2\\x6f\\x6e\\x48\\x3e\\xd5\\x1a\\xde\\x9f\\x29\\x7d\\xe3\\x9a\\x91\\x4d\\x10\\x11\\x73\\xe7\\x6a\\xa8\\xb1\\xa0\\xd1\\xb6\\x39\\xfe\\x0c\\xab\\x5f\\x22\\x55\\xff\\xa5\\xa4\\xdd\\xc5\\x48\\xde\\xe5\\xd4\\xd8\\xf7\\x9d\\xcb\\x5e\\xcf\\x58\\x35\\x8e\\x8c\\x9d\\x74\\x25\\x45\\xb5\\x33\\xa7\\x9b\\xb2\\xdc\\xdd\\xbc\\x81\\x6d\\xb1\\x1d\\xd7\\xb4\\xa7\\xa7\\xed\\x64\\xbf\\x3f\\xac\\xe9\\x5f\\x8a\\xe8\\x62\\xcf\\xed\\x51\\x6b\\xef\\x39\\x26\\xa2\\x30\\xbb\\x3a\\xf5\\x11\\x85\\x83\\x17\\x11\\x7d\\x0e\\x17\\xd6\\x17\\x80\\x04\\xae\\x8e\\xfc\\x9e\\xc0\\x3d\\x72\\xdb\\xe2\\xed\\x57\\x27\\x18\\xd2\\x80\\xff\\x09\\xda\\xbb\\xf0\\x34\\xb9\\x8d\\x2a\\x5b\\x23\\x5c\\x71\\x93\\xcc\\xb8\\x73\\x41\\x14\\x0e\\x95\\x83\\xf3\\x36\\xd4\\x36\\x7c\\xc9\\x4f\\xc0\\xd1\\x4b\\xdd\\x1b\\x52\\xb4\\xd7\\xc4\\x82\\x88\\x19\\x97\\xac\\x54\\xf1\\x4c\\x99\\x2f\\x4a\\xc8\\xaf\\xc9\\xed\\x60\\x03\\x6d\\xf3\\x6c\\xae\\xcd\\xd3\\x52\\xf7\\xd8\\xff\\x28\\x05\\x0f\\xc5\\x6b\\x06\\xd7\\xcb\\x68\\xc9\\xba\\xc2\\xe6\\xec\\xec\\xb1\\xe7\\xcc\\x37\\x2c\\x22\\x6d\\x1d\\x4e\\x2e\\x8d\\x19\\x4b\\xd4\\x74\\xc4\\x0e\\xf9\\xfb\\x2c\\xdc\\x7d\\xdf\\x39\\x9a\\xba\\xac\\x62\\x8b\\xdc\\xff\\xa8\\xab\\xb1\\x9c\\x50\\xb8\\xbb\\xbb\\xe0\\x6d\\xae\\x1e\\x31\\xe3\\x48\\xe2\\x25\\x33\\x1e\\x73\\x65\\xbe\\xfa\\x21\\x96\\x21\\xd0\\x9f\\xb7\\x25\\x6a\\x8a\\x87\\x8c\\x29\\x4f\\x8d\\x0a\\x8c\\x2c\\xaf\\x2f\\x89\\x01\\x09\\x49\\x1c\\x30\\xa3\\x55\\x4d\\x5f\\x0b\\xd4\\x81\\x47\\x48\\xc9\\x40\\xab\\x5a\\x9a\\x8d\\x4f\\x04\\x15\\x17\\x80\\x49\\x85\\x7f\\x29\\x69\\x6d\\xea\\x47\\x31\\x85\\x17\\x05\\xc1\\xd9\\x70\\xe5\\xd6\\x40\\xe3\\xe7\\xa2\\x83\\xa6\\x3b\\xbc\\x51\\x6d\\x96\\x62\\xd7\\x59\\x3f\\x7d\\x7e\\x64\\xa7\\x73\\x4a\\x36\\x59\\x63\\xa8\\xa9\\xe2\\xb6\\xff\\x30\\x9e\\x11\\x1c\\x7c\\x31\\xbe\\x1d\\xfe\\x32\\x52\\x95\\xc1\\xd3\\x3d\\xfc\\x57\\xb6\\xab\\x9b\\xd7\\x67\\x9b\\x8b\\x5c\\x95\\x7d\\x05\\x47\\x37\\x61\\x55\\xd5\\xb4\\x0a\\x67\\x5b\\x2d\\x59\\xb7\\xdb\\xaf\\x09\\x29\\x6c\\x01\\xf9\\x10\\xa5\\xb7\\xa4\\x9f\\x97\\x92\\x1b\\x12\\x6c\\x0f\\xce\\x58\\xf0\\x2c\\x6b\\xf1\\x57\\x9d\\x43\\xc4\\xd4\\x66\\xfa\\x9a\\xef\\x74\\x8d\\x6f\\xaf\\xb7\\x36\\xf2\\x2e\\xb4\\xf1\\xa6\\xaa\\x28\\xe2\\xd7\\x14\\x9f\\x4a\\xe4\\xf9\\x12\\xa9\\xe1\\x57\\xba\\xf1\\x67\\x91\\xc2\\x53\\xec\\xbc\\xed\\x35\\x89\\x0e\\x68\\x8a\\xa7\\xba\\xa1\\x3c\\x9a\\xb7\\xc0\\xbe\\xd7\\xe8\\xcb\\xda\\xee\\x15\\x71\\xf2\\xa9\\x98\\xe0\\x72\\xbc\\x27\\xa7\\x74\\x24\\x6b\\x51\\x62\\x99\\x38\\x9a\\x03\\x76\\x66\\x2b\\xec\\xa8\\xfa\\x5a\\xa6\\x70\\x59\\x62\\xa8\\xed\\xf8\\x53\\x2c\\x35\\x89\\x53\\x62\\x07\\xbd\\x2e\\xbf\\xca\\x70\\xfd\\xfe\\xd6\\xd6\\xda\\xd7\\xb8\\xfb\\x2f\\xd5\\xb4\\x6d\\xdf\\x6e\\x72\\xb3\\xe4\\x60\\x68\\x86\\xcf\\xfd\\x37\\x42\\xab\\x10\\xa9\\x55\\x02\\x22\\xae\\x78\\x02\\x31\\x6b\\x88\\x3c\\xa3\\x57\\xc4\\x5c\\xb5\\x20\\x9f\\x73\\xcd\\xcb\\xbe\\xca\\x3c\\x7a\\xd7\\x87\\x30\\xa8\\x91\\xa4\\x61\\x08\\xaf\\x91\\x81\\x72\\xb0\\xa7\\x2f\\x24\\x89\\x7e\\xa0\\x74\\x16\\xb4\\x9e\\x43\\xb6\\x2a\\xdd\\x68\\xa6\\xca\\xc9\\x6e\\x12\\x13\\x3a\\x4f\\x29\\xde\\x58\\x00\\x6c\\xeb\\x0b\\x2b\\xf5\\xa6\\x5f\\xb5\\xd3\\xc3\\x85\\xe8\\xe7\\x94\\x8d\\xa5\\xab\\x5d\\xed\\xad\\xcf\\x14\\x37\\x5e\\xa7\\xfb\\x75\\x50\\xd0\\x3f\\x1f\\x9a\\x16\\x8f\\xa2\\x08\\x2c\\x2a\\x70\\xe2\\x4c\\xb8\\x2e\\x86\\x9c\\x9e\\xd3\\xd1\\x50\\x2c\\x34\\x7c\\x4f\\x2b\\x6f\\x8b\\xed\\x9b\\x9b\\x81\\x94\\x06\\x54\\x8b\\x67\\x11\\xf0\\x8f\\xee\\xa6\\x93\\xf0\\x0f\\xfa\\xcb\\x0d\\x13\\x30\\x7f\\x7b\\x2c\\xff\\x6a\\x64\\x26\\x02\\x2c\\x6b\\x45\\x01\\x0a\\x45\\xa4\\x10\\xf1\\xe3\\x1d\\x48\\x94\\x3f\\xd7\\xa8\\xf2\\xb6\\xd1\\x30\\x88\\x3a\\x5d\\x30\\x94\\xd6\\x05\\xf0\\x37\\x65\\x2c\\x94\\x94\\x96\\x2e\\x08\\x6c\\xed\\x03\\x0a\\x5a\\x5f\\xae\\x6a\\x0e\\xc8\\x91\\x44\\x7a\\x9c\\x76\\x2e\\x6f\\x29\\xaf\\x6a\\x69\\x37\\x18\\x3e\\x05\\x95\\xd6\\x62\\x1a\\xca\\x1b\\x75\\x4e\\xaf\\x78\\xdc\\xa7\\x3a\\x32\\x74\\xf8\\x96\\x18\\x9e\\x8e\\xd5\\x2c\\x92\\xdf\\xe6\\x69\\x68\\x6e\\x7c\\x73\\xf6\\xe6\\x25\\xcb\\x66\\x93\\x20\\x3b\\xc7\\xd6\\x88\\xad\\x26\\x58\\x6d\\x7b\\x71\\x74\\xc1\\x44\\x41\\xf2\\xa0\\x52\\x40\\x88\\xc2\\x3c\\x8c\\x84\\x92\\x52\\x14\\x87\\xdc\\x15\\x8e\\xd8\\xbd\\xae\\x5c\\xf2\\x2c\\x48\\x02\\x28\\x3e\\x26\\x82\\xe5\\x18\\x3d\\x41\\xb2\\xeb\\x5f\\x92\\x0f\\x49\\x48\\x78\\x4a\\xe3\\x04\\x97\\x85\\x63\\xfd\\xf8\\xa8\\x4e\\x52\\x84\\x16\\x16\\x25\\x4d\\x28\\x32\\x0d\\x53\\x46\\xa0\\xc0\\x93\\xa6\\xaa\\x10\\xfa\\xd5\\xd3\\x7a\\x70\\xd4\\x6e\\xc3\\xe9\\x7c\\xa7\\x70\\x28\\xb1\\xd9\\xd7\\xb7\\x5c\\x26\\x7f\\x7c\\x6b\\xbc\\x27\\x9d\\x40\\xce\\x2f\\xc5\\x20\\x94\\x3a\\x12\\x2c\\x2f\\x2e\\x14\\x27\\x56\\x56\\x4a\\x35\\x63\\x5d\\x5e\\x73\\x70\\x69\\xd2\\x57\\x1e\\xc7\\x26\\x6d\\x9c\\x8f\\x44\\x85\\x8f\\x38\\xb1\\x1b\\x3c\\xae\\xce\\x7d\\xea\\xd5\\x74\\x7a\\xce\\x5f\\x4a\\x2f\\x7b\\xea\\xeb\\x85\\x13\\x15\\x8c\\x30\\x65\\x1a\\xc9\\xff\\x61\\x5b\\xad\\xaa\\xb9\\x70\\x4a\\x81\\xd4\\x97\\x49\\xd1\\x31\\xee\\xfd\\x92\\xa0\\x96\\x9c\\x1f\\x99\\xc3\\xdc\\x21\\xa6\\x4b\\xca\\xae\\xf4\\x54\\x81\\x07\\x82\\x5e\\x7a\\x6b\\xa0\\x81\\x45\\x71\\x98\\x11\\x5a\\xb9\\xe8\\x87\\x22\\x56\\x5e\\x4d\\xf5\\x4a\\xcb\\x3a\\x7f\\xe2\\xb7\\xe9\\x29\\x58\\xc1\\x6c\\x90\\x80\\x61\\x68\\x56\\xb3\\x16\\x47\\x62\\x2c\\x81\\x89\\xaa\\x24\\x94\\xc5\\x01\\xd8\\xd5\\x9d\\x2d\\x6c\\x2e\\x7f\\xf0\\x26\\x9f\\x66\\x64\\x6e\\x88\\x35\\x16\\x17\\x9f\\xe6\\x57\\x96\\xd3\\xd8\\x9e\\x96\\xea\\x4a\\xa3\\xb5\\x7d\\xf5\\xd9\\x5a\\x96\\xa7\\xbe\\x52\\xcb\\xde\\x9e\\x3e\\x01\\x55\\x2a\\xee\\xd8\\x81\\xef\\x15\\x0d\\x45\\x4f\\x7d\\xe8\\xa5\\x3d\\xdc\\x74\\x6e\\x94\\x95\\x7f\\xe2\\x74\\xc7\\xc1\\xff\\xd1\\x29\\x50\\xf3\\x4e\\xa6\\xec\\xe1\\x90\\xfd\\x7e\\x92\\xc0\\x76\\x9a\\xb1\\xee\\xa7\\xbd\\xd2\\xd7\\xd4\\xa1\\x6e\\x40\\x41\\xbf\\x63\\xff\\xcd\\xc0\\x64\\xf7\\x4a\\xf1\\x8e\\x61\\x6b\\xd4\\xa9\\xb9\\xaa\\x4a\\x40\\xd2\\xe3\\xfe\\xde\\xd2\\x92\\x53\\xbb\\x6b\\x77\\xd1\\x8f\\x93\\x7b\\x3b\\x21\\xcc\\x27\\x0c\\x0b\\x5e\\x02\\xfb\\xaa\\xbe\\x22\\xfa\\xae\\x84\\xbc\\xa2\\xb6\\x8a\\xa7\\x13\\xd4\\x32\\xf8\\x73\\xd5\\xf5\\x05\\x4b\\xb8\\x77\\x55\\x5b\\x03\\xce\\x24\\x9e\\xe0\\xf3\\x36\\xce\\xeb\\x55\\x4b\\xa3\\xac\\xa3\\x3f\\x0e\\xfd\\xf7\\xac\\x8c\\xde\\x43\\xce\\xa0\\xb1\\x59\\xfe\\xbd\\xbe\\xa1\\x60\\xb3\\x35\\x64\\x06\\x6e\\x53\\x85\\xb0\\xb4\\x9c\\x9f\\x41\\x55\\x73\\x51\\x7c\\xf6\\xe0\\x52\\x83\\x56\\x4d\\x35\\x65\\x10\\x08\\x52\\x09\\x60\\x5d\\x0d\\x49\\x8f\\x4f\\xa5\\xa7\\x70\\x96\\xaa\\x51\\x5a\\xee\\x53\\x1c\\x8f\\xa0\\xe6\\x1f\\xbe\\x7f\\x0a\\x01\\x55\\xa3\\x48\\xdb\\xfb\\x30\\xf4\\xfd\\x80\\x6f\\x6c\\x71\\xf7\\xfb\\xd2\\xf3\\x71\\x81\\x76\\xf5\\xad\\x65\\x87\\xeb\\xfb\\x73\\xfb\\xf6\\x8e\\x77\\xcb\\x8b\\x68\\x9a\\x72\\x3d\\xc2\\x5b\\x3b\\xf8\\x48\\x0f\\xc8\\x9b\\xe5\\x23\\xb2\\xff\\x6d\\x03\\xae\\x3f\\x70\\x8b\\x7a\\xfc\\x1b\\xb3\\xcf\\x01\\xa1\\x8d\\x12\\xe0\\x32\\xdb\\x3e\\x4d\\x4c\\xda\\x47\\x3e\\x73\\xbf\\x8a\\x83\\x1f\\x7e\\x37\\xac\\x21\\x6b\\xb3\\xad\\x78\\x72\\x91\\xf4\\xda\\xcb\\xdd\\x9b\\xa8\\xbf\\x15\\x5a\\x7d\\x12\\x29\\x4e\\x41\\x22\\x8c\\x28\\x28\\xa1\\x53\\x75\\xab\\x78\\xdc\\xeb\\xfc\\x29\\x5c\\xe0\\x2d\\x6d\\x13\\x07\\x55\\x8e\\x53\\x4c\\x44\\xfc\\x73\\x3c\\x04\\x9a\\x2f\\x79\\x5c\\xf1\\xca\\x23\\x9a\\xf5\\x29\\xcf\\x41\\x75\\xd0\\x48\\x72\\x4f\\x70\\x42\\x27\\x44\\x1f\\x4b\\xb6\\x34\\x1e\\x50\\xd5\\x25\\x42\\xd9\\x5f\\xa5\\xc8\\xf9\\x91\\x55\\x26\\x4a\\x75\\xb6\\xca\\x92\\x35\\x26\\xa7\\xad\\xe4\\x37\\x5b\\x53\\x8e\\xfb\\xb1\\x35\\x04\\xc9\\xa9\\x72\\x44\\x95\\x30\\x50\\xaa\\x3e\\xef\\xaf\\x33\\x10\\x0d\\x46\\xcb\\xed\\xe9\\x7d\\x02\\x92\\xd1\\x83\\x4e\\x8c\\xb4\\x50\\x60\\x6a\\x3b\\x1f\\xb5\\x40\\x35\\xc5\\x3a\\xc3\\x3d\\x1d\\x01\\xfc\\x9e\\x3a\\xf2\\xbc\\x28\\x70\\x38\\x19\\x7f\\x36\\xc9\\x27\\xf2\\x27\\x3a\\xc1\\x14\\x98\\x58\\x4f\\x82\\x37\\xdb\\x3f\\xaa\\xfd\\x46\\x56\\xaa\\x15\\x05\\xaa\\x0f\\x62\\xde\\x42\\xb1\\x09\\xfc\\xdf\\xc6\\xc2\\xb4\\x84\\x20\\x66\\xe4\\xdb\\x4a\\x27\\x75\\xd3\\x5b\\x04\\x1d\\x34\\xb2\\xce\\xf5\\x70\\x36\\xc4\\x62\\xa9\\xc6\\xfc\\xba\\x49\\x25\\x83\\xdb\\xde\\xf8\\x73\\xce\\xf0\\x91\\xa3\\x4c\\x2e\\x53\\x4d\\xa3\\xc1\\x09\\x53\\x0f\\x3b\\xb0\\x96\\x47\\xae\\xe6\\x40\\x06\\x0a\\x0e\\x99\\x93\\x52\\x92\\xef\\xba\\x03\\x48\\x93\\xa1\\x66\\xc6\\x43\\x71\\x56\\xef\\x99\\x55\\x94\\xd6\\x5f\\xd7\\x9e\\x2e\\x83\\x83\\xe4\\x6c\\xd4\\x80\\xde\\xc5\\x91\\x91\\xe8\\x68\\x58\\xe4\\x68\\x51\\xa5\\x43\\x61\\xa3\\xc3\\x10\\x51\\x62\\x06\\x19\\xdf\\x57\\x77\\xab\\xcb\\xfb\\x5b\\x59\\x51\\x19\\xdf\\xd3\\xb7\\x06\\x93\\xd1\\x5e\\xa6\\x75\\x47\\x63\\xe1\\x04\\xd1\\x98\\x26\\x61\\x16\\x7c\\x4c\\x4a\\x1a\\x5c\\x8e\\x83\\xdb\\xfc\\xdd\\x27\\x57\\x86\\xd4\\x06\\x56\\xe4\\x27\\x0a\\xfd\\x38\\x92\\x21\\x88\\x3d\\x03\\x80\\xd4\\x54\\x20\\xc4\\x6a\\xea\\x99\\x8c\\x28\\x68\\x71\\x99\\x3f\\xe8\\xb1\\x2f\\xe0\\x7c\\x9b\\xb4\\x9f\\x41\\x70\\x42\\x07\\x43\\x4e\\x16\\x45\\x07\\x70\\x08\\x76\\x75\\xf1\\xeb\\x09\\xee\\xe4\\x10\\xc6\\x36\\xe7\\x35\\xc1\\xe9\\xc3\\xb0\\xf6\\x61\\xde\\x0b\\x7c\\x0f\\xd3\\x6c\\x24\\x73\\x43\\x33\\x3e\\x9e\\xc9\\x85\\x35\\x6a\\x09\\xc3\\xeb\\x4e\\x9e\\xec\\xce\\x8b\\xcc\\xbb\\xa1\\xac\\x8b\\xeb\\xef\\x26\\x25\\xc5\\xd3\\x9b\\x8a\\x96\\x1a\\x83\\x63\\x0b\\xf7\\xd4\\x44\\x8b\\x56\\x7a\\x96\\x02\\xae\\xe5\\x53\\x41\\xa1\\x1f\\xfe\\x97\\x22\\x88\\x74\\x82\\xfd\\x47\\xe5\\x66\\x2f\\x8b\\x0b\\xe8\\x8b\\x0b\\xda\\xbd\\xb2\\x57\\x98\\xfb\\x39\\x80\\x8c\\x4c\\xa8\\x94\\xce\\xc6\\xa1\\x75\\x08\\x7f\\x48\\x84\\x35\\x9d\\xf8\\x5b\\xb2\\xb7\\xc1\\x77\\xbd\\x26\\x62\\x24\\x07\\xef\\x82\\xd3\\x14\\xb6\\x83\\xd9\\x86\\xa7\\xcb\\xf2\\x6e\\x4b\\xfd\\xbe\\x29\\xdf\\xb4\\x69\\xbe\\x7b\\xbd\\x6c\\xdc\\x69\\xc9\\x94\\x39\\x66\\x19\\x0b\\xb8\\xce\\x7c\\x1b\\x5d\\x54\\xf0\\x0a\\xae\\x18\\x15\\x17\\x8f\\xd2\\x26\\x5e\\x5c\\x39\\x70\\xbd\\x8c\\x06\\xfb\\xd8\\x92\\x78\\xa2\\x4b\\x08\\x6f\\x55\\x03\\x44\\xe8\\x87\\x1b\\x1d\\x41\\x80\\x47\\x6f\\x67\\xe4\\xaf\\xc7\\x0c\\x5d\\xf9\\x2f\\x63\\xdc\\x29\\xa2\\x3f\\xe4\\xf5\\x52\\x2a\\x51\\x40\\x02\\x32\\x58\\x52\\xc7\\x45\\x32\\x39\\x0c\\x08\\xbc\\xf1\\xf4\\xc0\\x1f\\x6a\\x48\\x78\\x68\\xd8\\x3f\\xc0\\xb0\\xf3\\x90\\x38\\x1c\\x84\\x6e\\x05\\xc0\\xbc\\x49\\x5b\\xf2\\x5f\\x92\\xe4\\x86\\x50\\xd3\\x98\\x06\\xf3\\x2b\\xb6\\x93\\x37\\x4e\\x23\\x6a\\xa5\\x81\\x93\\x25\\x1a\\xc8\\x2a\\xff\\xc2\\xe8\\xa6\\x73\\x5b\\x2d\\xaa\\x4b\\x63\\x50\\x75\\x1c\\xe0\\xa9\\x5c\\xce\\x2b\\xfc\\xe4\\x54\\xbf\\xc8\\xd9\\xeb\\x2e\\xda\\x71\\xd2\\xbe\\x48\\x4f\\xb3\\xaa\\x3a\\x39\\xea\\x6a\\xad\\xd1\\x9b\\x02\\xe8\\x38\\x20\\x1c\\xc5\\x05\\x9c\\x9c\\xc5\\xa2\\x9c\\xf2\\xf2\\x1f\\xe7\\xf7\\x91\\x4e\\xd7\\x0e\\xb3\\x7d\\xcc\\x46\\x71\\x16\\xc7\\x15\\x3b\\xbb\\xd7\\x74\\x70\\x7a\\xeb\\xda\\x5a\\xf3\\x6f\\xa7\\x3c\\xbd\\xce\\x47\\x1e\\x75\\x88\\xd5\\x6e\\x1c\\x64\\x98\\xa4\\x9c\\xd4\\x66\\x8e\\x74\\xa5\\xe7\\xb4\\x18\\x95\\x06\\x58\\x56\\x3e\\x7e\\x1e\\x1a\\xc2\\x8f\\xdf\\xc1\\x70\\x37\\x2b\\x60\\x8f\\xc1\\xc2\\x19\\xd2\\x45\\xfe\\x84\\xbf\\x97\\x87\\xef\\x6b\\x6a\\x1d\\xf2\\x7b\\x4c\\x97\\x98\\xac\\x0f\\x6f\\x77\\x52\\x5d\\xcb\\xb4\\xc7\\x4f\\x0a\\xcc\\x5f\\x22\\xd6\\xa8\\x65\\x10\\x08\\x04\\x7a\\xfb\\x22\\xc7\\x80\\xa2\\x13\\x90\\x16\\xc9\\xfe\\x23\\x0a\\xc3\\x4e\\x73\\xd4\\x25\\xcc\\xeb\\x7d\\x05\\x53\\x06\\xd9\\x3b\\xf8\\x63\\x69\\x93\\x81\\xbf\\x9d\\xef\\x28\\x8c\\xc2\\xf1\\x4a\\x91\\x76\\x59\\xe0\\x0d\\x9b\\xf0\\xb4\\x8f\\xbc\\xd3\\x33\\x34\\xb0\\xd1\\xe4\\x3e\\x6e\\xa0\\x30\\x7a\\x36\\x91\\xb1\\xc1\\x68\\xe9\\xea\\xac\\xde\\xf5\\xeb\\xef\\x10\\x78\\xf4\\x7d\\x10\\x77\\x2a\\xb2\\x9a\\xd0\\x25\\xae\\x32\\xc6\\xdd\\x42\\x2e\\x8d\\x8d\\x97\\x74\\xc2\\xbb\\x26\\x86\\x05\\x97\\x0f\\x09\\x49\\xf7\\xd0\\x4c\\x5a\\x47\\x34\\x27\\x30\\x2c\\x85\\x45\\x12\\xf6\\xc3\\x1d\\x9b\\x17\\x76\\x46\\x17\\x01\\xf3\\xed\\xd5\\x46\\xf1\\x2b\\x33\\x82\\xe3\\x14\\xce\\x86\\x59\\x52\\xf4\\xa6\\x2f\\x19\\xc1\\x57\\xe2\\x71\\x09\\x2d\\xcc\\x12\\xeb\\xdc\\xb1\\xe3\\xe9\\x6b\\x73\\xc9\\xab\\x4b\\x78\\x08\\x85\\xae\\x35\\xf2\\x4a\\xde\\xfd\\xb1\\x15\\x8e\\xd6\\x6a\\x72\\x95\\xa9\\xf5\\xc6\\xb1\\xda\\x82\\x8a\\xfd\\xf7\\x90\\x33\\xc3\\x7c\\xee\\xfa\\x15\\x90\\x0f\\xe1\\xff\\xdc\\x48\\x84\\x8f\\x1e\\x88\\x91\\x97\\xa9\\xdd\\x18\\x95\\x29\\xba\\x2f\\xe8\\xcc\\xca\\x77\\xda\\xa2\\x8d\\x1b\\xc0\\xc1\\xd6\\xbd\\x0c\\xd1\\x7d\\x5c\\x6b\\x24\\xee\\xc1\\x31\\xdd\\xfd\\x8d\\xf7\\xf7\\x61\\x9d\\x07\\xdd\\x9f\\x67\\x92\\x8e\\xc8\\xb8\\x87\\x5e\\xf9\\x29\\xdb\\x80\\x9e\\x84\\xb7\\xee\\x90\\x6b\\x2b\\x52\\x59\\xcc\\xf2\\x6d\\xe0\\x18\\x91\\x43\\x89\\xa2\\x57\\x21\\xdd\\x68\\xdf\\xce\\x54\\x1b\\x09\\xf5\\x73\\xda\\xab\\x86\\x3a\\x62\\xfb\\x6b\\x8a\\x0f\\xb7\\x1b\\x03\\xfd\\xf3\\x6a\\xde\\xcf\\x13\\xfc\\x95\\xf7\\x87\\xbd\\xfd\\xc6\\xa2\\xc3\\x39\\x5c\\xbb\\xf7\\x1b\\x8f\\xe3\\x79\\xcb\\x29\\x87\\xc5\\x1b\\x3c\\x18\\xb1\\xb8\\x14\\x6d\\x7b\\x7a\\xb0\\xfd\\x87\\x04\\x9e\\x2d\\xea\\x03\\xbe\\x7b\\xd0\\xfd\\x44\\x6d\\x47\\xcf\\xd3\\xef\\x1d\\x28\\xe7\\x1e\\xee\\x37\\x42\\x7b\\x88\\x38\\xc7\\xef\\xd9\\x9b\\x8a\\x2b\\x19\\x23\\x6c\\xa6\\x54\\xea\\x5f\\x6b\\x0e\\x4f\\xdf\\x68\\x6c\\x90\\xb1\\x04\\x7e\\xd0\\x50\\xa9\\x24\\x3f\\xf2\\xd5\\x1d\\x61\\x49\\x59\\x97\\xb1\\x54\\xb0\\x1c\\x2e\\x6f\\x64\\x2e\\x50\\xf3\\xf1\\x67\\x61\\xc8\\x66\\x54\\xd2\\x91\\xe1\\x76\\x2c\\x0f\\xbe\\x55\\x44\\x6a\\xf4\\x72\\x08\\x19\\xd9\\x08\\xd8\\x68\\x25\\xda\\x08\\xb5\\x32\\xa6\\x8e\\x47\\x48\\x1c\\xa7\\xdd\\x4b\\xac\\xc3\\x2a\\xde\\x45\\x5b\\x76\\x5c\\x4f\\xc5\\xb0\\x24\\x58\\x7c\\x16\\x11\\xe8\\x62\\x64\\x56\\x7c\\x68\\xfa\\x44\\x6b\\x4c\\x23\\x60\\xaa\\x3f\\xe2\\x07\\x23\\xf4\\xf4\\xc3\\x08\\x27\\x47\\xe4\\xe4\\xae\\xc9\\xdd\\x5f\\x3b\\xf3\\x9c\\x14\\xde\\xf3\\x65\\xae\\x5e\\xa9\\xf4\\x65\\xe1\\x4c\\xec\\x15\\x60\\xd8\\xfe\\x4a\\xf1\\x6d\\x36\\x0f\\x74\\xee\\xb8\\x73\\xe9\\xb3\\x4b\\x5a\\xd8\\xf7\\xb6\\xd6\\xcd\\x0f\\x00\\x0b\\xec\\x26\\x00\\x40\\xda\\xfc\\x10\\xfd\\xe5\\x77\\xf2\\xcc\\xe0\\xd4\\xc4\\xed\\xe6\\x4f\\x52\\x99\\x46\\x73\\xe7\\x62\\xce\\xa0\\x7e\\x57\\x3d\\x8e\\x74\\x70\\x74\\x34\\x6f\\x2e\\x28\\x8b\\x88\\x58\\xa0\\x6c\\x97\\xf3\\x53\\xed\\x70\\x4d\\x27\\xa6\\x79\\xd8\\x0f\\x82\\xc0\\x8f\\xa1\\x47\\xa3\\xc3\\xae\\x59\\x5a\\x69\\x32\\x9d\\x1a\\x8d\\x8f\\xc6\\x16\\xa3\\x67\\xb4\\xab\\x5f\\xf4\\x4a\\x2a\\x52\\xad\\xc2\\xc1\\x69\\xd1\\xe6\\xee\\xc2\\x8e\\xdd\\x72\\x3b\\x4a\\x30\\x71\\xb7\\x37\\x11\\xa1\\x4a\\x27\\x50\\xbc\\x75\\x1d\\x2d\\x9e\\xa6\\x3b\\x36\\xee\\x75\\x9e\\x15\\x39\\x6d\\xd1\\x0d\\x1f\\xdb\\x88\\x67\\xbf\\x05\\x77\\xa4\\xe9\\x43\\x06\\x9f\\x31\\x92\\x04\\xe1\\xce\\x97\\xa6\\x4f\\xb0\\x22\\x97\\x75\\x67\\x2b\\xcb\\x02\\xd0\\x8b\\xf5\\x2a\\x7b\\xd8\\xa1\\x47\\x45\\x7d\\xc8\\x2e\\x94\\x55\\xa1\\x83\\x81\\x37\\xe4\\x34\\x58\\xda\\x00\\x08\\x0a\\x1d\\xdf\\xfc\\x16\\x76\\x40\\xf2\\xa2\\x89\\x3f\\xf1\\x73\\xd9\\x3a\\xff\\xfe\\xa1\\x17\\x81\\x94\\x50\\x0e\\x88\\x8b\\x43\\x28\\x80\\x0e\\x87\\x2b\\x40\\x9f\\x97\\x19\\x65\\xd5\\xb7\\xde\\xb2\\xd1\\xb6\\xbf\\x65\\x71\\x88\\xf5\\x92\\xb0\\x2e\\x65\\x9f\\x6e\\x5f\\x4b\\x1d\\x42\\x9f\\x3c\\xe7\\x49\\xed\\xd4\\xbe\\xe9\\x71\\x6b\\xd7\\xbe\\xed\\x7e\\xed\\x1c\\x32\\xff\\xce\\x4d\\x5f\\x06\\x06\\x27\\x6f\\xdf\\xfd\\x96\\xa0\\xa7\\x6a\\xec\\x54\\xda\\xed\\xf2\\xb8\\x7d\\xe4\\x95\\x33\\x97\\x6d\\x21\\x8b\\x7b\\x43\\xc6\\x72\\x43\\x12\\xcd\\xde\\x15\\xfc\\x23\\xb6\\x71\\x52\\x20\\xee\\xd5\\xf1\\xc8\\x24\\xdf\\xca\\x2a\\x78\\x4a\\x30\\xbd\\x24\\xb9\\x13\\x16\\x71\\xd0\\x42\\x4d\\x63\\xa3\\x50\\xd7\\xdd\\xcd\\x5a\\x60\\xa9\\xe1\\x95\\x4f\\xea\\xfd\\xdb\\x1f\\xf4\\xa9\\x64\\x86\\x9f\\xe3\\x15\\xd9\\x64\\xa4\\x34\\x8e\\x7c\\x59\\x53\\x6a\\xa6\\xad\\xf7\\x6b\\x7c\\x6f\\xba\\x10\\xb3\\xfc\\x83\\xc6\\x27\\x91\\x01\\xcd\\x15\\xcb\\x3b\\xff\\x70\\xb7\\x23\\x3b\\xb5\\x02\\x83\\x73\\x78\\x7b\\x8a\\xa4\\x80\\xf4\\xfc\\x49\\x3a\\x3f\\x18\\x49\\x96\\xc5\\x99\\x4b\\xb6\\x8a\\xe1\\xa0\\xe3\\xdb\\xfd\\x4f\\x68\\x1a\\x2d\\xf3\\x18\\x0e\\xb4\\x7e\\xd9\\x50\\x41\\xb1\\xdc\\x2a\\xd9\\x07\\x91\\x53\\x87\\x76\\x73\\xfc\\x56\\xce\\x46\\x43\\x37\\x7e\\x7e\\xe3\\x4c\\x62\\x26\\x3b\\xd5\\x8c\\x4a\\x36\\x7a\\x27\\x73\\xa3\\xab\\x8b\\xc8\\xc7\\x34\\x71\\x34\\x83\\x4f\\x9c\\x57\\x3c\\x72\\xa4\\x97\\x62\\x97\\x9d\\x9c\\x6e\\x2b\\x2b\\x31\\xed\\x24\\xb8\\xad\\x0a\\x2a\\xb2\\xc3\\xdb\\xa7\\x56\\xc9\\x68\\x46\\x62\\xcc\\x99\\x3f\\xb0\\x71\\x23\\x90\\xfe\\x4b\\x86\\x3b\\xac\\x77\\x90\\x2d\\x91\\x3c\\xb4\\x40\\x70\\xdc\\xb7\\x2c\\x79\\xd8\\x34\\x9a\\xf9\\xdd\\xd8\\x84\\x24\\x4b\\x46\\x3d\\x8d\\xe7\\x87\\x85\\xec\\x83\\x83\\x63\\x6d\\x8c\\x56\\x2b\\x31\\x24\\x1b\\x37\\xeb\\x0a\\x27\\x00\\xa4\\x7b\\xa7\\x16\\xf5\\xe4\\x18\\x1d\\xe5\\xe8\\x14\\xf5\\x20\\x9f\\x21\\x73\\x4e\\x74\\x96\\x3e\\xdd\\xc4\\x64\\xa1\\x8b\\xcf\\x97\\x2b\\x6c\\xad\\x86\\x86\\x02\\xda\\x63\\xab\\xb9\\x5e\\x41\\x7d\\x4f\\xfc\\x0a\\x81\\x8c\\xc9\\xaf\\x22\\x3b\\x4c\\x08\\x25\\x96\\xa1\\x08\\x40\\x45\\xd0\\x99\\x56\\x5f\\x06\\x11\\x1f\\x18\\xed\\x9f\\x40\\x13\\x3e\\x92\\x76\\xb6\\x87\\x09\\x05\\x64\\x22\\xb0\\x62\\xac\\x15\\xcf\\xf7\\x21\\x1a\\x33\\xc7\\x60\\xef\\xb6\\x11\\xd9\\xf2\\x7e\\x2d\\x02\\xe6\\xe4\\xb6\\xec\\x01\\x71\\x83\\x3d\\x36\\x41\\xf4\\xeb\\xae\\xe5\\x0a\\xcf\\x5e\\xaa\\x15\\xb5\\x55\\xf8\\x7d\\xcc\\xe4\\xfb\\xf8\\x79\\x97\\x3f\\xb8\\xfa\\xa1\\xf4\\x51\\x8b\\x87\\x09\\xf5\\xbb\\x1e\\x6b\\xaa\\x0c\\x7b\\x5b\\xd5\\xb9\\xe8\\x28\\xbc\\xd9\\x84\\x44\\xe8\\xcb\\x74\\xcf\\xb1\\x4e\\xc9\\x0b\\x4e\\x99\\xd4\\xa5\\xd8\\x1f\\x5b\\xe6\\x0f\\x0f\\xd3\\x87\\x73\\xd0\\x2e\\x50\\xa4\\xfc\\x01\\x1f\\x8e\\x41\\xa6\\xca\\x22\\x78\\x04\\xdc\\x99\\x82\\xc1\\xbb\\xcc\\xd9\\xcc\\x49\\x14\\x36\\x90\\xf6\\x44\\xb2\\x31\\x28\\x0e\\x43\\xbc\\x44\\x68\\xca\\xc2\\x81\\xbb\\xd5\\x24\\x93\\xe6\\xbe\\xbd\\x0f\\xa2\\xa2\\x0d\\xfc\\x83\\xb9\\xf5\\x31\\x84\\x9c\\x58\\xa4\\x54\\x4e\\xab\\x07\\x55\\xa6\\xfe\\x39\\xd6\\x07\\x10\\x80\\xd8\\x69\\x52\\x75\\x36\\xe1\\xf4\\xdc\\x92\\xa0\\xb2\\x3f\\x54\\xe1\\xab\\xdc\\xc8\\xf6\\xf8\\x68\\x62\\xac\\xad\\x61\\xd9\\x37\\x33\\xe3\\xc7\\xf0\\x35\\x37\\x51\\xd8\\xb9\\xdb\\xaf\\x59\\xc8\\xf9\\xc2\\xb0\\xda\\x4e\\x80\\xba\\x5f\\xc1\\x94\\x28\\xd5\\xb2\\xff\\x4c\\xfd\\x62\\xe0\\x85\\x4f\\x97\\xa7\\x9d\\x57\\x43\\x2e\\x20\\x0e\\x0f\\x4d\\x03\\x31\\x92\\x36\\x07\\xc4\\xb6\\x0b\\x27\\x07\\x7e\\x5c\\x5d\\x16\\x2e\\x61\\x58\\xca\\x48\\x4a\\x33\\x87\\x5a\\xdd\\x3b\\xb7\\x8c\\xfd\\x78\\x69\\x1c\\xbe\\xde\\xda\\x60\\x81\\x2e\\x3d\\x4c\\xc2\\xca\\x78\\x4b\\xca\\xc0\\x73\\xac\\x53\\x8e\\x77\\x84\\x09\\xeb\\x16\\x17\\x7b\\x61\\x33\\x49\\x68\\x6a\\xf4\\x45\\xfe\\x5d\\xcd\\x90\\x6a\\x56\\xad\\x98\\x3a\\x0f\\xaf\\x9a\\x5f\\xf0\\x47\\x27\\x1d\\x83\\xea\\xe8\\xdd\\xde\\x1a\\x24\\x2d\\xe5\\xe4\\x94\\x4d\\xa1\\xde\\x62\\x31\\x94\\x90\\x95\\xd1\\xe8\\xb5\\x6a\\x3a\\x13\\x97\\x9a\\x9c\\x2f\\x78\\xee\\x64\\x23\\x2f\\x25\\xcb\\x5c\\xbd\\x7a\\xd1\\x68\\xec\\x5c\\x51\\x51\\xa9\\xbe\\x9e\\x98\\xb8\\xd0\\xd4\\x52\\x69\\xae\\xf9\\xdb\\xc9\\xb3\\x79\\x3c\\xa1\\xdd\\x61\\xe7\\x72\\x7e\\xbf\\x32\\xe3\\x64\\x92\\xf9\\x6a\\x43\\x22\\x5e\\xd5\\x44\\xf3\\x6a\\xed\\x96\\x7b\\x6e\\xde\\x5e\\x6b\\xbc\\xcd\\xb3\\x26\\xdf\\xeb\\x55\\x56\\x67\\x6f\\xee\\xc6\\xf3\\xae\\x25\\x4f\\xdf\\x94\\x19\\x5d\\x8c\\x48\\xf8\\x03\\x35\\xfc\\x57\\x1e\\x13\\x0b\\x90\\x57\\xc0\\x6a\\xcd\\xad\\xf6\\x07\\xe7\\x1f\\xb6\\xd3\\x97\\x7e\\xde\\x51\\x93\\x81\\x39\\x1f\\xd6\\x82\\xe8\\x6c\\x24\\x4c\\xc6\\x34\\x38\\x02\\x0e\\x73\\x8d\\x60\\x79\\x72\\xd0\\xdf\\x35\\xbf\\xbd\\xbe\\xc1\\xba\\x07\\x2d\\x43\\xfc\\xa4\\xb0\\x4c\\xa0\\x97\\xb0\\xcc\\xae\\x03\\xdb\\x35\\x69\\xdf\\xc8\\xa1\\x1e\\x3b\\x07\\x81\\xb7\\x06\\x3a\\x27\\x10\\x5f\\xeb\\x6e\\x77\\xe4\\x8a\\x55\\xbe\\x7a\\x20\\x3f\\x5c\\x83\\x36\\x9a\\x1f\\xd8\\x5d\\xfd\\x06\\x05\\x09\\x37\\x2a\\x4f\\xe5\\xe4\\x55\\x82\\xc7\\x7b\\x7d\\x46\\xbf\\x24\\xa8\\x00\\x72\\x30\\xf6\\x66\\xfe\\xfe\\x4e\\x61\\x01\\xfd\\x96\\xa8\\x4d\\xdd\\x5a\\xb5\\x2f\\xec\\x52\\xfc\\x4f\\x9a\\x57\\xda\\x1f\\x74\\xdc\\x5d\\x5a\\x85\\xe9\\x5a\\xc2\\xc7\\x46\\xb8\\x67\\xa5\\xe9\\xf2\\x4e\\x86\\xf4\\xc3\\x80\\x50\\x09\\x29\\x38\\x68\\xff\\x70\\x4b\\x71\\xe8\\xd7\\x49\\x4f\\x83\\x62\\xfa\\x1b\\x6c\\x19\\x03\\x4f\\x03\\xd0\\x6d\\xa8\\x91\\xe5\\x5e\\x6d\\x8f\\x60\\x63\\x97\\x78\\xc9\\x65\\x39\\x25\\xac\\x44\\x6a\\x94\\xac\\xd1\\x9d\\x33\\xe7\\xa7\\x27\\xb1\\x9e\\x93\\xd5\\xa9\\xeb\\x9a\\x8a\\xca\\xf5\\xfb\\xab\\x86\\x76\\x3a\\x9c\\xcb\\x67\\x34\\xd8\\x2a\\xba\\x0a\\x3c\\x0b\\xd9\\xfa\\xa6\\x5b\\x4c\\xf5\\xaf\\x7f\\xd1\\xc7\\x20\\xd9\\xc7\\x2c\\x2c\\x9b\\xb9\\x5a\\x2d\\x17\\x52\\x9b\\x15\\x5d\\x2d\\x25\\xcb\\x2e\\x39\\xc9\\xd1\\x29\\x43\\x2b\\xdd\\x8f\\x29\\xbe\\x06\\x46\\xe9\\xb7\\x66\\x16\\xd5\\x12\\x32\\xd3\\x27\\x2d\\x5e\\x27\\xc5\\x2d\\x24\\x2c\\xce\\x82\\x8e\\xa7\\x3c\\xf6\\x2e\\xf6\\x7e\\x8e\\x27\\x3c\\x8f\\x1d\\xb7\\xe9\\x89\\xc9\\xac\\xbf\\x0f\\x9e\\x5b\\x4d\\x45\\x44\\xb4\\x84\\xb5\\x94\\xc4\\x8d\\x9c\\x7c\\xe4\\xb4\\x35\\x96\\x37\\x3b\\x3f\\x1c\\x10\\xd6\\x1a\\xaf\\x53\\x56\\xbb\\x6c\\x7b\\x63\\x7a\\x2f\\x7b\\x03\\x81\\x60\\x39\\xca\\x46\\xbe\\x4a\\x9a\\xb2\\x36\\xbe\\xaa\\x55\\xf9\\x9e\\xfa\\xb3\\x85\\x4c\\x05\\x82\\x03\\xa7\\xcb\\xec\\x97\\xd0\\x8d\\x46\\x41\\xc4\\x42\\x44\\x21\\x96\\x8c\\x97\\x11\\x59\\xd6\\xd1\\xfc\\xdc\\xbf\\xe8\\x37\\x0e\\x48\\xf0\\x48\\xc2\\xf0\\x0d\\x37\\x90\\x68\\x5e\\xeb\\x62\\xa9\\x4e\\xa4\\xf5\\xb5\\x69\\xd3\\xe1\\xca\\x68\\xb2\\x2d\\x45\\x24\\x32\\x9e\\xb0\\xf7\\xed\\xb4\\x86\\xfc\\x84\\xd3\\x21\\xa5\\xc7\\x6a\\x82\\xf8\\xf5\\xa9\\x45\\x88\\x8b\\x31\\x3c\\xd5\\x45\\x24\\x34\\xc9\\x6b\\xb2\\xec\\x4b\\x52\\x77\\x12\\x9d\\x6f\\x64\\x2d\\x70\\xd8\\x0a\\x89\\x9b\\xc4\\x46\\x8b\\xc0\\x26\\xd6\\x19\\x5d\\x4d\\xee\\xc1\\x28\\xdc\\x58\\x44\\x81\\x22\\xcb\\xa1\\xca\\x15\\x58\\x96\\x9f\\xd0\\x67\\x42\\x40\\x40\\x2a\\x40\\xc6\\xba\\xf2\\xea\\x6c\\x3a\\x76\\x47\\xa2\\x64\\x5a\\x86\\x6d\\x34\\x0c\\xe2\\xa8\\x22\\xa1\\x76\\x5b\\x09\\xb2\\x56\\xa6\\x0f\\xd8\\xb1\\xcd\\xbe\\xdf\\x8c\\x16\\x13\\x11\\x4a\\x48\\xa8\\xfa\\x8c\\x0b\\xb9\\x99\\x8d\\x56\\x36\\xe3\\xfc\\xed\\xeb\\xda\\xbc\\xf2\\x0d\\xae\\xaf\\x8e\\x65\\x65\\xcd\\x47\\x5a\\x03\\x83\\xe3\\x7c\\xcd\\xc7\\x7b\\x5e\\xd5\\x8e\\xdf\\x83\\xdf\\x4e\\x78\\xba\\x7a\\x12\\x3f\\x33\\xe7\\xe4\\x7e\\x9d\\x09\\x54\\x10\\xab\\x37\\xaf\\x55\\xde\\xdf\\xe2\\x5a\\xd8\\x0c\\x6b\\x35\\xde\\x41\\x43\\xb6\\x3d\\x75\\xa6\\x3a\\x96\\x87\\x07\\x0b\\x35\\x09\\xa4\\x32\\xe5\\x97\\x6a\\xab\\x49\\xd8\\x38\\x2c\\xe3\\xdb\\x2d\\x17\\x38\\x42\\x1e\\xd7\\x73\\x5b\\x74\\x57\\x65\\xaf\\x57\\xee\\x96\\x37\\x7b\\xc9\\xd7\\x2e\\x2e\\x9b\\xb5\\x30\\xac\\xb8\\xeb\\x8c\\xda\\x99\\x5b\\x3e\\x1f\\x95\\x85\\x85\\xb7\\xb9\\xd7\\x37\\xbc\\x9f\\xbc\\x03\\x08\\x91\\xb9\\xc7\\x3d\\xe2\\x27\\x0e\\x44\\x13\\xfc\\xab\\x3c\\xab\\xd2\\x4f\\x57\\x98\\xf9\\xfd\\xfe\\x89\\x02\\xf2\\xfa\\xeb\\xaf\\x8c\\xe7\\xc8\\xba\\x0f\\xdd\\x67\\x65\\x06\\xba\\x60\\x81\\x09\\xa3\\xe2\\x04\\xc8\\x38\\x87\\xe1\\x6d\\x88\\xe3\\x19\\x32\\x04\\x65\\x0b\\xdf\\x07\\xc6\\x76\\xcb\\x3a\\x11\\x4c\\x52\\x95\\x09\\x5b\\x28\\x7f\\xb8\\xb1\\xd2\\x95\\x11\\x64\\x28\\x45\\xa5\\xdf\\x34\\x1b\\xff\\x10\\x76\\x4e\\x27\\x19\\xcc\\xe4\\x85\\x60\\x57\\x8e\\x5b\\xc3\\xe5\\x31\\x05\\xd3\\x82\\x14\\x37\\xa9\\x71\\x66\\x2d\\xdc\\xcf\\x70\\x8e\\xd7\\xb2\\x8c\\x57\\x17\\x1f\\x9a\\x06\\x53\\xc1\\x10\\x5f\\x5b\\xb9\\xf9\\xec\\x0f\\x10\\x52\\x50\\x56\\x9b\\xff\\x83\\x20\\xac\\x76\\x51\\x51\\x59\\x47\\x92\\x9b\\x88\\x42\\xb8\\xe7\\x97\\xce\\x1f\\xac\\xe0\\x5c\\xdb\\x3a\\x1d\\xa9\\x2d\\xe6\\xbc\\x46\\xad\\x73\\x98\\x1f\\xeb\\xc8\\x6a\\xb0\\x34\\x9b\\x81\\x11\\x33\\x93\\x28\\x28\\xb7\\x34\\x28\\x7e\\x73\\x35\\x75\\xdb\\x20\\x73\\xc9\\xe2\\xf0\\xd6\\xf0\\x50\\xd5\\x44\\x23\\x72\\xb7\\x7f\\xa2\\x69\\x4a\\xf9\\x0c\\xe3\\x0a\\xa9\\xae\\x3b\\x71\\xbd\\xbe\\xc6\\x0f\\x44\\x5a\\xc9\\x5b\\x6c\\xf5\\x0b\\x1b\\xa0\\xc4\\xfb\\x7a\\x81\\xff\\x83\\xf7\\x15\\xb9\\xe7\\xd7\\x7f\\xb4\\x2f\\x55\\x17\\xd3\\x39\\x4c\\x1a\\x87\\x96\\x22\\xee\\x2b\\x83\\xfb\\x8e\\x32\\x17\\x58\\x7e\\xb3\\x8e\\xd1\\x9a\\xe2\\x81\\x58\\xea\\xbb\\xe3\\xa4\\xe3\\xda\\xc9\\xe8\\x30\\xb6\\xfd\\xf0\\xc1\\xea\\x40\\x5a\\x07\\xa7\\x0c\\xaf\\xf8\\x89\\x7d\\x41\\xe4\\xe4\\xcb\\xb5\\x1b\\xc6\\x3c\\x26\\x69\\xda\\x8d\\xcd\\xd2\\x76\\xe9\\xc8\\x5f\\x1e\\xe8\\x09\\x76\\x27\\x29\\x1d\\xa2\\x1f\\xcc\\xcd\\xc9\\x4f\\x2a\\x6f\\x6c\\x4f\\x40\\xe1\\x91\\xec\\x78\\x57\\xd3\\x92\\x73\\x64\\xec\\x26\\x21\\xa0\\xeb\\x68\\xeb\\x68\\x5b\\xa4\\x90\\x99\\x95\\x65\\x0d\\x97\\x10\\xbd\\x95\\x78\\x62\\x7f\\x93\\xc4\\x41\\x1b\\xc7\\x8e\\x75\\xee\\xf5\\x4f\\xd1\\xa8\\x41\\x13\\x97\\x16\\x1d\\x4c\\x2f\\xb3\\x63\\x23\\xa6\\xab\\xde\\xf1\\x61\\xe9\\x3a\\x83\\xb3\\x3b\\xdf\\x62\\x9c\\xcd\\xa9\\x53\\x0a\\xb9\\x72\\x32\\x96\\x4e\\xaf\\xd7\\x44\\xc7\\xd4\\x45\\x61\\x5b\\x10\\x87\\xeb\\xe3\\x27\\xbd\\xa6\\x86\\xe9\\x36\\x91\\xd2\\xab\\xa3\\xf3\\xf3\\xe9\\xb3\\xd0\\xa9\\xd6\\xba\\xb6\\x76\\xd7\\xd7\\xe4\\x66\\xab\\xb4\\x65\\x79\\xd9\\xc6\\xeb\\xa2\\x0a\\xde\\x2e\\x62\\xaa\\x6a\\x7a\\xca\\x6a\\x21\\x9c\\xef\\x19\\x56\\xd0\\x53\\xd2\\x96\\xea\\x5a\\x06\\x21\\x6a\\x4b\\xcd\\x98\\x47\\x5d\\xb5\\xdb\\xd8\\xaf\\x1d\\x05\\xef\\x15\\x35\\x17\\xba\\x97\\x1c\\x23\\x96\\x5e\\xa3\\x29\\xcc\\x2b\\x39\\xf3\\x6f\\x97\\xc4\\xa7\\x74\\x8b\\x8f\\x4c\\x84\\x44\\x71\\x09\\xf1\\x06\\xfe\\x78\\x02\\xe7\\x3b\\x87\\x0e\\x20\\xd2\\x5a\\xa5\\xd1\\x09\\xc7\\x27\\x79\\x7c\\x3c\\xd9\\x27\\x26\\x6b\\x5d\\xa5\\x65\\x5a\\x53\\xc9\\x54\\x5a\\xba\\x43\\xa2\\x90\\xa1\\x78\\x74\\xc8\\x38\\xa3\\xe9\\xab\\x72\\xe6\\x07\\x2b\\xb3\\xba\\x64\\xf7\\x3c\\x4b\\x29\\x39\\x4b\\x9b\\x65\\x13\\x35\\x51\\xa0\\x77\\x3a\\x2c\\x7c\\x9a\\x51\\x4c\\x38\\xad\\x31\\x0d\\x1f\\x03\\x28\\x77\\xfc\\x37\\x7b\\x6c\\x54\\x3e\\x02\\x2c\\x03\\xc7\\x2b\\xac\\x4e\\xb1\\x4f\\xf9\\x8f\\xe2\\x93\\xf8\\x9b\\x0d\\x07\\x68\\x56\\x08\\x86\\x1c\\x9c\\x50\\x11\\xcd\\xb0\\x5d\\x3f\\xd2\\xfd\\xd1\\xe1\\x01\\xeb\\xda\\x3d\\x7b\\x52\\x74\\xf7\\x90\\x8a\\xbd\\x8e\\xd9\\x50\\xbb\\xfd\\x3e\\xcc\\x96\\xdf\\x5f\\xe1\\x87\\x66\\xf4\\xfd\\xc7\\xad\\xc2\\x01\\xe8\\x31\\x7f\\x59\\x9d\\xd4\\x81\\xd5\\xa2\\x72\\x4c\\x1e\\xbc\\xe1\\x91\\xc5\\x72\\x16\\x2d\\x38\\x84\\x44\\x9e\\xbb\\x5c\\xdd\\x02\\x45\\xd7\\x31\\xbf\\x13\\x1e\\xde\\x4b\\xc7\\x03\\x12\\x3f\\xde\\x0d\\x1c\\xdb\\x67\\x21\\x85\\x6c\\xfe\\x52\\x24\\xad\\x5d\\x37\\xd0\\x6c\\xca\\xe8\\xad\\xc2\\x1e\\x72\\x82\\x7c\\xea\\xda\\xae\\xbc\\x1e\\x70\\xda\\x22\\xe6\\xea\\xb2\\x02\\xf6\\x7a\\x0c\\xb1\\xe8\\x6f\\x2a\\x9c\\xfe\\xd3\\x54\\x41\\x73\\x85\\x54\\xca\\xca\\x35\\xa5\\x3d\\xac\\xb2\\x7a\\x4c\\xa9\\x0e\\xc7\\x44\\xab\\x0a\\xcb\\xaa\\xd7\\xfa\\x47\\x78\\xde\\x01\\x1d\\x14\\xdb\\x02\\x98\\xa6\\x17\\x4f\\x12\\x0a\\x44\\x1b\\x37\\xaa\\x72\\xa7\\x8b\\x26\\x48\\x0e\\xb0\\x03\\x54\\xef\\x5f\\xf7\\x6d\\x9e\\xa2\\xc7\\x62\\xd2\\x42\\x92\\x6a\\xf1\\xf7\\x26\\xff\\x8e\\xf2\\x54\\x05\\x2e\\xa3\\x38\\x8e\\x78\\xff\\x9c\\xc1\\xe9\\x3f\\xd6\\x75\\x38\\xeb\\x8b\\x5a\\x22\\x4d\\x81\\x7f\\x32\\x11\\x22\\x1d\\x9a\\x16\\x58\\x82\\x85\\x36\\x2a\\xb1\\x27\\xfe\\x3e\\x5c\\xee\\x07\\x34\\x8d\\xfc\\x13\\xb9\\x29\\x96\\x79\\xc9\\x68\\x50\\xc2\\x64\\x12\\xdb\\x7a\\x97\\x32\\xe5\\xa4\\xe5\\x77\\xd2\\x30\\x01\\xb9\\xaf\\x6c\\x7a\\x7c\\x84\\xc6\\xb1\\x00\\x4b\\x2f\\x8f\\x69\\xf9\\x7a\\x6b\\xfb\\x7a\\xd9\\xea\\xda\\x29\\x4b\\x1a\\xf4\\xc8\\x06\\xbb\\x67\\x78\\xdf\\x1e\\x3e\\xff\\x27\\x12\\xb3\\x80\\xb3\\xf1\\xe2\\x04\\xaa\\x17\\xef\\x43\\xde\\x63\\x88\\xa3\\x4e\\x14\\x7b\\xf3\\x26\\x46\\x7a\\x55\\x18\\x77\\x5e\\x3c\\x50\\x92\\x0a\\x95\\xab\\x2b\\xc9\\xd6\\x9d\\xe4\\xeb\\x59\\x5e\\x76\\x5e\\x6c\\x58\\x92\\x2a\\x99\\xae\\x19\\xb1\\xf7\\x17\\x23\\x18\\x42\\x9f\\xb3\\x27\\x70\\xc3\\xd0\\x7e\\x53\\x6e\\xc8\\x0f\\x07\\xa5\\x87\\xfa\\x27\\x72\\x7c\\x17\\x3d\\xbc\\x9b\\x25\\x8a\\x8e\\x9f\\x93\\x79\\x13\\x17\\x05\\x00\\xc9\\x4c\\x78\\xd5\\x46\\xc2\\xc3\\xa7\\x48\\xa8\\x0f\\x30\\xa5\\x8e\\x0b\\x9a\\x47\\x9c\\x4d\\xbd\\x3f\\x62\\xa8\\x7f\\x50\\x7b\\x12\\xe2\\x10\\xad\\x91\\xfc\\xc8\\x10\\x95\\x27\\x10\\xbe\\x29\\x87\\x66\\x43\\x4c\\x44\\x0e\\x6a\\x8a\\xdd\\x4c\\x37\\x96\\x63\\x6a\\x26\\x1f\\x34\\x17\\x34\\xb0\\x3a\\x49\\xa0\\x71\\x60\\xc3\\x87\\x16\\xdf\\x9e\\xf7\\xaa\\x8a\\x4e\\x3b\\xf2\\x19\\x3d\\xb1\\xa9\\x8d\\xb5\\xa9\\xdc\\x3f\\xb0\\xeb\\xee\\x2e\\xa9\\x2a\\x91\\x6d\\x82\\xde\\x4d\\x9c\\x71\\x05\\x9d\\x1e\\xf4\\xc9\\x3e\\xa0\\x29\\x57\\x4e\\x38\\x74\\x8d\\x34\\x46\\x8e\\x07\\xb5\\x93\\x61\\x7d\\x28\\xca\\x17\\x7d\\x66\\xef\\x1b\\x2c\\x3b\\x71\\xd6\\xb1\\xca\\xdd\\xd5\\x54\\x6d\\x79\\x7e\\x6f\\xce\\x1b\\xa9\\xb8\\x98\\x96\\x83\\x9d\\xed\\x6d\\x28\\x3e\\x49\\x44\\xe3\\xbc\\xf9\\xed\\x97\\xba\\x8b\\x6d\\xe3\\x44\\x11\\xae\\x67\\x7f\\x02\\x59\\x3a\\xee\\x65\\x0a\\x34\\x75\\x22\\xba\\x6c\\x1e\\xaf\\x58\\xf1\\x3b\\x6b\\x4f\\xcc\\xe1\\xbb\\x77\\xb3\\x10\\x97\\x12\\xb5\\xa0\\xac\\xc4\\xee\\xa2\\x63\\x75\\xc4\\xf1\\x28\\x2e\\xbe\\x9f\\xf7\\x35\\x03\\x17\\xfb\\x9d\\x8b\\xe7\\x6f\\x1c\\x63\\x73\\x29\\x0b\\xf0\\xa9\\x55\\x11\\x6b\\xa0\\x6a\\x90\\x67\\x6f\\xe0\\x99\\xe4\\xb4\\xa5\\xd5\\xe5\\x22\\xa6\\x5d\\xc5\\xf3\\xd9\\xe7\\x35\\x31\\x54\\xd0\\x94\\x0e\\xae\\xa6\\xe0\\xe0\\x15\\x0b\\x93\\xa6\\x6d\\x81\\x8f\\xe9\\x4b\\xc8\\x1b\\x2b\\x4a\\x2b\\x13\\xbe\\x86\\xb1\\xad\\x7d\\xea\\xca\\x7e\\xa3\\xfe\\x49\\xbd\\x63\\x56\\xcc\\xb3\\x77\\x3b\\x13\\xb6\\xbe\\x21\\xc2\\x4a\\x97\\x7a\\x15\\x24\\x0d\\x9f\\x1a\\xfe\\xf5\\xdc\\x23\\x4e\\xc3\\x96\\x95\\x7c\\x39\\xb2\\xc3\\x4f\\x7e\\x9a\\xa2\\xff\\x82\\x79\\x2d\\xb8\\x23\\x7b\\xb6\\x92\\x2f\\xc2\\x18\\x70\\x46\\xbf\\xc6\\x47\\xbf\\xdf\\x6a\\x53\\x3a\\xec\\xdd\\xd7\\xf1\\xaf\\x9b\\xca\\xa9\\x9e\\x9e\\xde\\xf4\\x64\\x64\\xec\\x68\\x65\\x6d\\xb5\\xbe\\x1c\\xf7\\x56\\x4f\\x55\\x4d\\xcf\\xd1\\x8c\\xaf\\x58\\x2d\\x55\\x29\\x8a\\xff\\x75\\xf9\\x32\\xdf\\x2e\\xc9\\xb9\\xba\\xca\\x91\\x71\\x29\\x6c\\x5e\\x88\\xdc\\x48\\xca\\xc0\\x09\\x22\\x2c\\x25\\x33\\x59\\x52\\x3d\\x64\\xc6\\xc8\\x62\\x61\\xad\\x60\\xfb\\x42\\xcd\\xde\\x17\\xbe\\xe1\\x6c\\x19\\x38\\xbb\\x7e\\x57\\xd6\\xef\\xa3\\xf0\\x4c\\xff\\x2a\\xde\\x55\\xf8\\xdc\\x23\\xdc\\x97\\xa2\\x00\\xd1\\x45\\xfe\\x0d\\xfa\\xcd\\xf2\\x83\\xd3\\xd0\\xbf\\xee\\x55\\x46\\x80\\xb2\\x13\\xe4\\x10\\x3c\\xea\\xce\\xb0\\x44\\x7f\\x9b\\x4d\\x70\\x75\\x90\\x21\\x1d\\x2e\\x21\\x64\\x6a\\xbf\\x49\\xba\\x83\\x21\\x2b\\xb6\\xab\\x58\\x5b\\xf6\\xeb\\xeb\\x9d\\xe5\\x13\\xab\\xe1\\x02\\x9b\\x7e\\x70\\xa9\\x62\\x57\\x92\\xbc\\xbb\\xfd\\x5e\\x25\\x8d\\xbf\\xcc\\x41\\xb3\\x9d\\xbb\\x7c\\x48\\xa6\\x08\\xe2\\x36\\x81\\x24\\x74\\xdd\\xc6\\x6e\\x0d\\xba\\xb7\\x3b\\xba\\x4c\\x7a\\xe2\\x8c\\xd1\\x7e\\xc5\\x2e\\x99\\xd2\\x7f\\x52\\x71\\xe0\\x89\\x7d\\x13\\x45\\xa3\\x63\\xd5\\xd3\\xcc\\x90\\x80\\xda\\x03\\x45\\x68\\x1b\\x7f\\x43\\xe1\\x93\\x0c\\x87\\x1b\\xa5\\x5e\\xe7\\x88\\x67\\xaf\\xc6\\xe9\\x26\\xc4\\xc3\\xa0\\xa3\\x65\\xde\\x62\\xc9\\xfb\\x1b\\x6c\\xe4\\x0c\\x9b\\x80\\x3c\\xc2\\x10\\x60\\x55\\x60\\xa0\\x9b\\x08\\xd2\\x71\\xd7\\x4a\\xd0\\x27\\x9f\\x86\\xaa\\x97\\x63\\xa5\\xd9\\x38\\xb5\\xa3\\x69\\x79\\x2f\\x78\\xfe\\x90\\xa8\\x13\\x64\\x86\\x7e\\x6c\\xba\\xf4\\x5c\\x3c\\x4c\\x1a\\xec\\x18\\x12\\xf8\\xf5\\x05\\xfc\\x11\\x89\\x5f\\x95\\xae\\xa2\\x15\\x6f\\xfa\\xd0\\xf4\\xcc\\x59\\x02\\xea\\x6c\\xa3\\xc7\\x61\\x1c\\x3b\\xe9\\x8a\\xa6\\x91\\x1f\\xa7\\xae\\xcd\\x18\\x7e\\xfc\\x4f\\x95\\xa9\\xdf\\xaf\\x04\\x56\\x64\\x1f\\x25\\x1e\\x19\\x0e\\x78\\x96\\x00\\x17\\x2a\\x39\\x0f\\x43\\x98\\x4a\\xf8\\x99\\xc6\\x6f\\x2a\\xa4\\x4b\\xe3\\x69\\x0c\\x08\\xf4\\x41\\x17\\x97\\x5f\\xb6\\x55\\x94\\xd8\\xec\\x48\\xda\\x79\\x74\\xa5\\x4e\\xcf\\xde\\xfe\\x0b\\x75\\x17\\x5f\\xc0\\xdb\\x6e\\x71\\x93\\x1d\\x59\\x2d\\x42\\x8d\\xa1\\x28\\xf2\\x17\\x82\\xde\\xef\\xea\\x16\\xdf\\x08\\x03\\x85\\x0e\\x6a\\x75\\x26\\xac\\x65\\xb1\\x68\\xcc\\xf3\\xab\\x83\\x84\\xb8\\xa6\\xb0\\xf6\\x1e\\xec\\x0b\\x01\\x8a\\xc8\\xc1\\x17\\x08\\x27\\xfa\\x11\\x64\\x0c\\x6c\\x0e\\x84\\x02\\xa8\\x46\\xa8\\xfb\\x4c\\x07\\xa2\\x59\\xbe\\x55\\xb6\\x0b\\x28\\xc7\\xe5\\xc0\\xe9\\xc0\\xa5\\x2c\\x48\\xd5\\x7c\\x83\\xc4\\x17\\x31\\x83\\x2d\\x7c\\x36\\x4c\\x8d\\x4d\\xa0\\xd2\\x5d\\x25\\x42\\xa6\\xa2\\xfd\\x9b\\xbe\\x5f\\xe5\\x37\\x60\\x2a\\x14\\x47\\x59\\xc0\\x86\\xce\\xa1\\xef\\xf0\\xab\\x0b\\x45\\x0b\\xd8\\x80\\x6a\\x0f\\x64\\x3d\\x80\\x1f\\xa9\\x1b\\x67\\x94\\x5f\\xc5\\x11\\x27\\x87\\x40\\x9a\\xbf\\x9a\\xc5\\x02\\x0b\\xfa\\xb1\\xe0\\x1f\\x24\\x92\\xbc\\xa4\\x10\\xac\\x38\\x69\\xe0\\x91\\xce\\x01\\xe4\\x83\\x1a\\x81\\x98\\xaa\\x7e\\x29\\xa9\\xae\\xc4\\xbc\\x45\\xde\\xa2\\x44\\xdf\\x25\\x1e\\x5f\\x51\\xf7\\xad\\xfd\\xcf\\xc0\\x60\\x2a\\x52\\x63\\xb4\\x81\\xaf\\xf2\\xe7\\x1d\\xc8\\x3f\\xa1\\x50\\xfc\\xa8\\xe6\\x61\\xd0\\xc1\\xb5\\xbf\\x79\\xb1\\x41\\xbd\\xa4\\xd5\\xe6\\x0f\\x46\\x9b\\xf7\\xbe\\x90\\xcb\\x61\\x1b\\x45\\x1e\\xc7\\x4a\\xfb\\xd7\\xe9\\xab\\x04\\x24\\x56\\xc6\\xdf\\x29\\x86\\x7c\\x43\\xdd\\x15\\x77\\x0e\\xf7\\x74\\x98\\x91\\xaa\\x55\\x33\\x5e\\x4d\\x17\\xde\\x2c\\xa7\\x0e\\x29\\x12\\xec\\xaf\\x81\\xb8\\xa4\\x46\\xb5\\x9b\\x8c\\x64\\xf6\\x37\\xb1\\xc4\\x43\\xb3\\x84\\x87\\xd8\\x21\\x07\\xf2\\x31\\x5c\\x91\\xb4\\xb2\\x01\\x62\\xc0\\x3c\\x64\\xc0\\x27\\x06\\xe2\\xfd\\x82\\x82\\x47\\x14\\x38\\xc1\\x4b\\x0e\\x17\\x6b\\x61\\xf6\\x8a\\xdc\\xd2\\xd9\\xd6\\xca\\xf3\\x16\\x15\\xac\\x13\\x54\\x44\\x2a\\x23\\xcc\\x47\\xd5\\x7a\\x42\\xc1\\x02\\x73\\x31\\xba\\xbb\\x8a\\xaa\\x2d\\xc7\\x1f\\x65\\x6f\\x5e\\xb5\\xe8\\x4d\\x32\\x95\\xdc\\xa6\\x4e\\xdf\\x17\\x64\\xfb\\x19\\x6f\\xdf\\x0b\\xc9\\xaf\\xb3\\x39\\x3e\\xbf\\x13\\x8a\\xf7\\xb8\\x0f\\x35\\x03\\xaf\\x85\\xcc\\xb3\\xda\\xa5\\x56\\x65\\x0c\\xb0\\x40\\x9e\\x81\\x67\\xcf\\xb0\\x50\\xb8\\x98\\xa9\\xaa\\x6e\\x79\\x7f\\xd8\\x79\\x11\\xcb\\x9e\\x95\\x36\\x24\\x88\\xc5\\x81\\x72\\x40\\x74\\x0d\\xf3\\xfa\\x19\\xb1\\x08\\x1c\\xbf\\x8c\\x1e\\xfa\\xd9\\x9d\\x8b\\xa1\\x94\\x58\\x8a\\xfe\\x1f\\x00\\x00\\x40\\xff\\xbf\\xac\\xd4\\x66\\x35\\xc4\\x26\\x11\\xf5\\x4a\\x47\\x63\\x59\\x26\\xe9\\x54\\x14\\x08\\xaf\\x9d\\x82\\x61\\x21\\x75\\xe7\\xa9\\x0d\\xdb\\xe9\\x77\\x83\\xc2\\xe0\\x8d\\xc2\\x45\\x47\\x3b\\x3c\\x3b\\xe7\\xe6\\x25\\x67\\x5a\\xd3\\x2a\\x5b\\x2a\\xd3\\x1c\\xb3\\xb6\\x35\\xd8\\xba\\x5b\\x2b\\x23\\x52\\xc2\\x9d\\xa5\\x55\\x89\\x19\\x95\\xa9\\x5a\\xfa\\x79\\x7a\\x44\\xbc\\x39\\x3e\\xc2\\x90\\x55\\x9a\\x30\\xb4\\x0e\\xf8\\xd2\\x91\\x6b\\xeb\\x4b\\x6d\\xed\\xdb\\x3a\\x9b\\x97\\xb4\\x37\\x66\\xa7\\xd7\\x57\\x57\\xb7\\xcd\\x2b\\xeb\\xd8\\xda\\x9e\\x12\\xa4\\x89\\x0e\\x3b\\x1f\\x14\\xa3\\x0f\\x8d\\xc9\\x74\\x5b\\x32\\x1a\\xab\\x6a\\x66\\x2e\\xa8\\xb4\\x96\\x17\\xe6\\x16\\x96\\x5a\\xb2\\x3d\\x8e\\xe8\\x47\\xce\\xd3\\xf9\\x69\\xa7\\xbc\\x32\\xcc\\x0f\\x57\\x8b\\xba\\xd0\\x62\\xf7\\x02\\x23\\x70\\x42\\x83\\x0b\\xab\\x94\\xb9\\x1c\\x46\\x2a\\xae\\x9e\\xb4\\x16\\x73\\x3c\\x26\\xe7\\x7b\\x3c\\x83\\x2c\\x42\\xac\\x1c\\x0a\\x09\\xc0\\x1c\\x27\\xf4\\x29\\x40\\x10\\x6a\\x3c\\xa1\\x41\\x58\\xa5\\x42\\x7d\\x10\\x8c\\xa5\\x68\\xed\\xba\\xe2\\x22\\x40\\xcd\\x8d\\x75\\x5d\\xf5\\x5d\\x15\\xe5\\x45\\xb5\\xc5\\xb5\\xd9\\x99\\xf6\\x94\\x24\\x53\\x7c\\x5c\\x54\\xa4\\x2e\\x42\\x1d\\x1a\\xa0\\x44\\x85\\x50\\x18\\xc6\\x70\\x57\\x32\\x86\\x92\\x1d\\x34\\x25\\x95\\xcd\\x6f\\x49\\xd6\\xc9\\x2e\\x62\\x62\\xa3\\x9a\\xe4\\x06\\x93\\xa2\\xe0\\x8d\\xb4\\xc3\\x80\\x68\\x01\\x9c\\x6c\\xbc\\xe1\\xb6\\x2f\\x38\\x91\\xae\\x71\\x94\\xb7\\x64\\xd6\\x2c\\xad\\xb7\\x7e\\xfd\\xad\\xd2\\x92\\xca\\xd2\\xa6\\x67\\xd3\\x66\\xae\\xad\\x9d\\xb9\\xc5\\x6a\\x5f\\x57\\xdf\\xba\\xa9\\xdd\\x2e\\x2a\\x63\\x0a\\x67\\x95\\x5b\\x0a\\x33\\x2c\\x61\\xe9\\xc1\\xe9\\x55\\xb3\\x67\\xa7\\x95\\xa5\\x68\\x01\\xea\\x22\\x92\\x0b\\x7c\\x7f\\x49\\x6a\\x88\\x85\\x62\\x67\\x7b\\x41\\x3c\\x61\\xe7\\x88\\xf0\\xd4\\xc4\\x39\\x93\\x23\\x53\\x9b\\x57\\x56\\x3d\\x7a\\xe3\\x44\\x43\\xdf\\x4c\\x8f\\xaa\\x6a\\x45\\xb3\\xdd\\xe5\\x74\\xe4\\x39\\x07\\xef\\x6d\\xff\\x5d\\x67\\x39\\xe1\\x3f\\x0a\\xd1\\x46\\x06\\xdd\\x13\\x18\\x17\\xad\\xe1\\xde\\xb3\\x96\\x77\\x67\\x56\\x6d\\x37\\x95\\x39\\xe2\\xc7\\xbe\\x6a\\x8f\\x83\\x24\\x53\\x61\\xa3\\x3d\\x3e\\xd7\\x16\\x89\\x30\\xaa\\x23\\x7d\\x9b\\x22\\xfc\\x15\\x25\\x91\\xa9\\x93\\xe5\\x4e\\xd7\\x31\\x97\\x5b\\x92\\xd9\\x94\\x10\\x4f\\xc9\\xa6\\x02\\xa0\\x16\\x01\\xa2\\x96\\xbb\\xa1\\x49\\x71\\x15\\xf9\\xb9\\x19\\x69\\xc9\\xc9\\x74\\x73\\x07\\x5d\\xf8\\xc4\\xbe\\xe9\\xef\\x16\\xb2\\xb2\\x05\\x6a\\x92\\xb4\\xe6\\xea\\xa8\\x29\\x92\\xcb\\xb1\\x38\\xfd\\xb6\\x63\\x79\\x5f\\xe5\\x1a\\x17\\x8e\\x7a\\xf6\\x3e\\xbf\\x6c\\xe9\\xf5\\x5d\\xb5\\x75\\xbb\\x9e\\x5d\\xd4\\x7d\\x36\\x5f\\xdf\\x5b\\x22\\xfe\\xab\\xee\\xcf\\xb6\\xae\\xf4\\xfc\\x96\\x23\\xa5\\xbf\\xaa\\xbb\\x0a\\xea\\xfc\\x96\\x05\\x25\\x55\\xc4\\x90\\x95\\xd2\\xbc\\xba\\xbe\\x76\\x75\\x6b\\xaa\\xa0\\x58\\x2b\\x3e\\xff\\xb5\\x92\\xfd\\xdf\\x3f\\xdb\\xea\\xd9\\xfd\\xcc\\xf0\\xea\\x17\\xf7\\xd6\\x55\\xe6\\x2d\\x7f\\xbc\\xf4\\xcc\\xd0\\xbd\\x31\\xb6\\xb0\\x8b\\xba\\x3a\\xc7\\xee\\x79\\x63\\x63\\xc1\\x91\\xc1\\x31\\x0e\\xab\\x3e\\x7f\\xee\\xce\\xba\\x92\\x0d\\xfd\\x85\\xee\\xd5\\x0f\\x0f\\x31\\x19\\xb7\\x1a\\x7d\\x91\\xef\\xe1\\x9f\\x63\\x76\\x7a\\x16\\xe9\\x27\\x23\\xd9\\x10\\x30\\xf8\\x0a\\x91\\xdb\\x82\\xc0\\x77\\xf9\\x43\\x8b\\x79\\xa1\\x99\\x18\\xa3\\x4c\\x72\\x98\\x85\\xf3\\x0e\\x70\\xcf\\xe4\\xfd\\x86\\xef\\x19\\x8b\\xe6\\x7e\\xe5\\x7b\\x48\\x36\\x47\\xe1\\xf1\\x17\\xdd\\x37\\x20\\x9f\\x98\\xa4\\xa8\\x69\\x6a\\x4c\\x9c\\xb0\\x4d\\x6d\\xbc\\xbd\\x81\\x6f\\xe3\\xbd\\x28\\x0e\\xa5\\x20\\x17\\x95\\xb5\\x41\\x2a\\xcc\\xa3\\x8c\\xf4\\x44\\x23\\x2f\\xf0\\xd1\\x7a\\x8c\\xfd\\xb2\\x76\\x15\\xe2\\x30\\xb7\\x5a\\x8e\\x9d\\xab\\x99\\xcc\\xc9\\x90\\x62\\xd7\\xd8\\xa6\\x7a\\xef\\xa9\\x45\\x51\\x3b\\x8e\\x51\\xa5\\x16\\x44\\x47\\x84\\x2c\\x6d\\xb1\\xd6\\x98\\x43\\xa5\\x2d\\xeb\\x7b\\x86\\xcf\\xc8\\x9f\\x9f\\x56\\xb7\\x69\\xfe\\x9c\\xf9\\xf4\\xb5\\xab\\xdf\\x5e\\xbf\\x69\\xfe\\xd0\\x62\\x6f\\x66\\x26\\x74\\xc6\\x95\\x59\\x18\\x44\\x63\\x38\\x35\\x4d\\x7c\\x2a\\xb7\\xb2\\x61\\xb5\\x0c\\xd7\\xd0\\x46\\x9c\\x78\\xdf\\xf3\\xbb\\xa3\\x0c\\xb1\\xa1\\x51\\x9f\\x7e\\xbf\\xee\\x4f\\x27\\xfa\\x1e\\xc8\\xc7\\x5f\\x0a\\x55\\x53\\xb8\\x46\\xc7\\x99\\x7c\\x5f\\x73\\x34\\x45\\x70\\x4c\\xe0\\x36\\x14\\x3a\\x8a\\xdb\\xa0\\x5c\\x13\\x14\\xc4\\x3b\\x09\\xb7\\x41\\x63\\xd9\\x57\\x7d\\x3a\\x24\\xe3\\xee\\x78\\x0c\\xf5\\xa7\\xe2\\x31\\x5c\\x4b\\xee\\x1f\\x9e\\x77\\x2e\\xcf\\xeb\\xcd\\x3d\\x33\\x6f\\xe1\\x85\\xc5\\x2e\\x06\\xd9\\xec\\xdb\\x9c\\x64\\xd9\\x38\\xa7\\x61\\x79\\x75\\xa2\\x04\\xc7\\x28\\x2b\\xf1\\xfd\\x53\\xf9\\x25\\xdf\\x73\\xee\\xca\\x71\\x3c\\x46\\xb9\\xef\\x93\\xb2\\xb6\\x09\\x3c\\x46\\x24\\x42\\xfc\\x8b\\x44\\xf6\\x6b\\x90\\x9e\\x46\\xb3\\xaa\\x14\\x18\\x05\\x09\\x18\\x02\\xe9\\xc9\\x3b\\x10\\x71\\x38\\x90\\x1b\\x0c\\x00\\x1a\\x3f\\xcd\\x4b\\x5a\\xf8\\x14\\x16\\xb6\\x19\\xaa\\xb8\\x71\\x3a\\x11\\xf2\\x4b\\x5c\\x0e\\xa4\\xce\\xfe\\xa3\\x38\\x5f\\xb4\\x7d\\x3b\\x0d\\x14\\x5c\\xb5\\x8a\\x86\\x0a\\x8e\\x8d\\xe1\\x0e\\xdf\\x15\\xfe\\xc8\\x91\\x31\\x44\\xa3\\x06\\x79\\x74\\x04\\x8c\\xe2\\x8f\\xc1\\xe8\\x3b\\xfc\\xfa\\x38\\xee\\x8a\\xfa\\x33\\xa9\\x8f\\xf8\\xee\\x58\\xb8\\xcf\\x46\\x56\\xc9\\x98\\x37\\xd2\\xa6\\xed\\xb7\\xff\\xc8\\x62\\xe6\\x38\\x14\\x85\\x9a\\xa5\\x53\\x55\\x34\\xe2\\x41\\x00\\x5e\\x18\\x91\\x42\\xf9\\x58\\xe7\\x8f\\xa3\\xc8\\x0c\\x53\\xbe\\x24\\x1f\\x4f\\x46\\x37\\x10\\xe0\\x48\\x62\\x44\\xd2\\x44\\x1c\\xa4\\xc3\\xe8\\x50\\x4f\\xe8\\xcc\\xd2\\x78\\x40\\xbe\\xd7\\x8b\\x7b\\xbd\\xb6\\x8e\\x1d\\x5d\\x75\\x9b\\xba\\xb3\\x6f\\x92\\x8d\\xa0\\xc8\\x1c\\x4a\\x02\\x44\\x8e\\xb7\\x6e\\xeb\\x4e\\xb7\\xb5\\x6f\\xef\\x1a\\xea\\x8d\\xc9\\xaa\\x49\\x65\\x36\\xab\\x16\\xb1\\x89\\x6f\\x16\\x5e\\x21\\x3d\\x6e\\x44\\x69\\x28\\x1f\\x35\\xbb\\x1b\\x82\\x00\\x2b\\x24\\x2c\\xde\\x0c\\x08\\x0c\\x0c\\xe8\\x0b\\x82\\x80\\x80\\x4a\\x8f\\x0a\\x28\\x1c\\x8f\\xb9\\x97\\x19\\xe8\\x5d\\x32\\x80\\x4c\\x86\\xe6\\xe5\\xb9\\xa8\\xc6\\x68\\x31\\xb3\\xd1\\xa0\\x28\\xbd\\x60\\x55\\xdc\\xdd\\x50\\x7a\\xa6\\x24\\x32\\x28\\x5a\\x16\\xf8\\xf0\\x69\\x56\\x66\\xfc\\x34\\x9c\\x9e\\xc0\\xee\\xb9\\x32\\x19\\x76\\xef\\x47\\xbe\\xc7\\xe0\\x91\\x1f\\xfb\\xd6\\xff\\xf9\\x77\\x5c\\xac\\x8c\\xe1\\xf3\\xbd\\x3c\\x81\\x33\\xbc\\xf5\\xda\\xc2\\x8b\\xcb\\xf3\\x94\\x81\\x17\\x28\\x9a\\x2f\\xaa\\x78\\x41\\x23\\x77\\xe1\\x41\\x3f\\xf6\\xf0\\xa6\\x1f\\xd4\\x97\\xea\\xff\\x2b\\xe9\\x6f\\x37\\x25\\xff\\xfc\\xf4\\xf8\\xca\\xd2\\xcf\\x8e\\xaf\\x0c\\x38\\xe5\\xf5\\x2e\\x87\\xc3\\x3f\\x16\\xf3\\xe0\\x0f\\xbf\\x83\\x1f\\xee\\x11\\x1f\\x27\\x27\\xc9\\x3f\\xae\\x87\\xf3\\xa2\\xd1\\x77\\x19\\x01\\x2a\\x20\\xf7\\xf5\\xd0\\x78\\x66\\x7a\\x3e\\xa3\\xe4\\x58\\x34\\x44\\x46\\x45\\xd1\\x83\\x53\\x83\\x2d\\x89\\xa1\\x94\\xd9\\x13\\x93\\xb4\\x02\\xc3\\x72\\x28\\x9d\\xe4\\xcc\\x0a\\xbb\\x40\\x21\\x7e\\x42\\x03\\x2f\\x8f\\x1e\\xf5\\x72\\x8d\\x33\\x1f\\x9a\\xe9\\xfb\\xdb\\x03\\x78\\x24\\xed\\xa1\\x34\\x7c\\xe1\\x0e\\x5c\\xa0\\x9a\\xd8\\xd5\\x83\\x29\\xfd\\x96\\x74\\x7f\\x6e\\x02\\x52\\xca\\x71\\x7c\\x0f\\xc5\\x95\\x4e\\x76\\xd2\\x31\\x98\\x20\\x8f\\x98\\x17\\x4f\\xfe\\xd8\\x0f\\x28\\xd5\\x12\\x9f\\x1d\\xb3\\xf5\\x24\\x29\\x05\\x69\\x3a\\x53\\xb6\\x25\\x6a\\xc8\\xc2\\xff\\x80\\x44\\x10\\x7f\\xec\\x9f\\xd8\\x5f\\x80\\x99\\xe2\\x51\\x6c\\xe3\\xde\\xdf\\xfd\\xd0\\x6e\\xdf\\x28\\xe9\\x59\\xd7\\xb9\\x87\\xce\\xc1\\xaf\\x1f\\xa4\\x38\\x1d\\xd1\\xc3\\xc7\\x91\\x36\\x47\\x53\\x7f\\x76\\x54\\x84\\x86\\x93\\xf0\\x9c\\xf4\\x94\\xcf\\xd5\\x0b\\x3c\\x96\\xb5\\x36\\x09\\x31\\x24\\x1f\\x51\\x49\\xf1\\x68\\xb5\\xd6\\x9a\\x24\\x05\\x89\\x4e\\x9e\\x28\\xc4\\x6f\\x0f\\xcc\\x05\\xa4\\xe6\\x63\\xc1\\xde\\xba\\xb6\\xc1\\xe0\\x88\\x0b\\x51\\xc5\\xc4\\x45\\x2b\\xca\\x2a\\x44\\x81\\x28\\x6f\\xb7\\x48\\xc8\\xcd\\xbf\\xdb\\x76\\xf4\\x66\\xa8\\x02\\x8f\\x53\\xcf\\xc2\\xb2\\xae\\x3e\\xde\\x7e\\xeb\\x9b\\x64\\x9a\\x7f\\xc8\\xfb\\x79\\x40\\x6e\\x90\\x3a\\xe9\\x99\\x0f\\x62\\x91\\x3b\\x34\\x81\\x82\\xdf\\xd5\\xe4\\x9f\\x30\\x00\\x2c\\x23\\xd7\\x24\\x7b\\xa3\\x42\\xc0\\x7e\\x90\\xd6\\xe4\\xf9\\x4c\\xd9\\xef\\xa8\\xee\\x52\\x2a\\x87\\x33\\x4e\\x2f\\x22\\xd9\\x1e\\xa8\\x6b\\x42\\x93\\x64\\xb5\\x9a\\x98\\xed\\x41\\x56\\x49\\xd4\\xe4\\xbc\\x3d\\xd1\\x18\\x75\\x8e\\x0c\\x7f\\x82\\x39\\x33\\x5c\\x17\\x17\\x77\\xde\\x33\\x27\\xfb\\x89\\x73\\x06\\x97\\x21\\x24\\x20\\xd6\\x10\\xad\\xac\\xa8\\x59\\xbb\\x76\\xce\\xd6\\x24\\x62\\x91\\x38\\xd7\\x3a\\x3b\\x7b\\xc1\\xc5\\xa5\\x63\\xbe\\xc7\\x9e\\x03\\x55\\xe0\\x03\\xb4\\x65\\x03\\xbd\\xf8\\xf6\\x91\\xcd\\x75\\x25\\x63\\xdf\\x66\\x20\\x16\\x8c\\x9a\\x89\\xbe\\xf0\\xa8\\xf0\\x26\\xdd\\x43\\xd1\\x77\\x58\\x43\\xae\\xc7\\x33\\xae\\x04\\x66\\xb6\\x61\\x6f\\x38\\xf2\\x86\\xfe\\x0d\\x80\\xfa\\x9e\\x9e\\x71\\xbe\\x3f\\x44\\x4d\\x64\\x44\\x86\\xca\\x70\\xbd\\x4a\\x4f\\xa0\\x0a\\x53\\x73\\x9a\\x14\\x4f\\x2b\\x9b\\x7d\\x72\\xef\\x2c\\x89\\x68\\xc1\\x00\\x90\\xcf\\x54\\xfe\\x6b\\x18\\x9f\\x96\\xf4\\x5a\\xb6\\x5b\\xc7\\xb8\\xb3\\xe5\\x2b\\x89\\xfb\\xc6\\x7f\\xe1\\x94\\xb3\\x98\\x74\\x15\\xa8\\x54\\xf2\\x45\\xc4\\xc1\\xa0\\x31\\xc4\\x9a\\x12\\x62\\x53\\x0d\\xa9\\xcc\\xfd\\x68\\x4b\\x0c\\x0b\\x22\\xf6\\x39\\xa3\\x51\\x86\\x0d\\xf9\\x37\\xd8\\xf1\\x30\\x7b\\x21\\x7b\\x3c\\x5a\\x80\\x1a\\x7a\\xf8\\x47\\xc5\\xf6\\x92\\xdd\\x55\\x83\\xe7\\x97\\x15\\x16\\x2c\\x3d\\x3f\\x58\\xb5\\xb7\\x04\\x1e\\x12\\x57\\x43\\xb7\\xf8\\x38\\x9c\\xf6\\x35\\x66\\x65\\x47\\x65\\x47\\xe7\\x77\\x17\\x18\\x48\\x38\\xa2\\x32\\xb8\\x62\\xf7\\x1b\\xdb\\xe1\\x8d\\xed\\x6f\\xec\\xae\\x9c\\xa1\\x3a\\x23\\x9a\\xcf\\xf8\\xfe\\x1e\\xc1\\xf1\\x0f\\x61\\x9c\\xd4\\x79\\x68\\x91\\x58\\xb8\\xe8\\x48\\x67\\x12\\xd5\\x53\\xd2\\x49\\xff\\x5e\\xe3\\x9b\\x48\\xef\\x96\\xa3\\x66\\x54\\xe3\\xae\\x54\\x81\\x12\\xc5\\x00\\x87\\xcd\\xb1\\x98\\xe7\\xb8\\x7a\\x52\\x7d\\x84\\x39\\x15\\x66\\xbb\\xd1\\x38\\xc0\\x15\\x38\\x8e\\xef\\x13\\x80\\x31\\x77\\x55\\x56\\x78\\xea\\x2a\\x9a\\x2b\\x9b\\x89\\x7d\\xc3\\x9a\\xa4\\x35\\x9b\\x69\\x83\\x34\\x77\\x57\\x59\\x69\\x0c\\x81\\x4c\\xf8\\x71\\x77\\xcb\\x47\\x92\\x71\\xfc\\x65\\x7a\\x5a\\xd7\\xf6\\xb6\\xf6\\xed\\xa9\\x69\\xeb\\xab\\x67\\x6e\\x68\\xb6\\x88\\xae\\x88\\xe4\\x12\\x7b\\x65\\x5f\\x42\\xae\\x3a\\xad\\xa8\\x21\\xb3\\x6b\\x57\\x5a\\xea\\xb6\\x99\\x33\\xb7\\x77\\xa7\\xdd\\x54\\x5b\\x8a\\xec\\x29\\x85\\xd4\\xa7\\x55\\x9c\\x92\\x52\\x98\\x14\\x0e\\x22\\xa8\\x43\\x8d\\x8e\\xa4\\x04\\x87\\x49\\x83\\xb7\\x2d\\x7a\\x72\\x63\\x79\\x45\\x49\\x69\\xb9\\x7b\\xd5\\xfd\\x7d\\xd7\\xdd\\x95\\x2b\\x5a\\xec\\x29\\xb1\\x5b\\xc3\\x13\\xa3\\xc3\\xca\\x4a\\x8a\\xcb\\xcb\\xd7\\x3f\\xb9\\xa8\\x72\\x75\\x5b\\x7a\\x7a\\xdb\\xea\\xca\\xb7\\x2b\\x57\\xcd\\x4c\\xcf\\x68\\x5b\\x5d\\xa1\\xea\\x48\\x69\\x2a\\x4e\\xb2\\x37\\xad\\xa8\\x40\\x00\\xef\\x22\\xc4\\x07\\x29\\xec\\xd4\\x66\\xef\\x36\\x07\\x00\\xa0\\x40\\xa0\\x68\\x41\\x86\\x83\\x41\\x30\\x34\\x61\\x23\\xd3\\x20\\x12\\x89\\x20\\xd9\\xc8\\xe4\\x18\\x04\\x79\\xe0\\xe0\\x5d\\x12\\xe8\\x31\\x2f\\xa9\\x26\\x49\\x1f\\x9e\\x1e\\x57\\xb9\\xa0\\xda\\xcc\\x0f\\x2f\\x7b\\x62\\x75\\xd1\\x8c\\x80\\xc3\\x82\\x22\\xa5\\x69\\xa4\\xea\\xd6\\x39\\x3f\\xb6\\x88\\xac\\xe1\\x7a\\x85\\x9d\\xc6\\x1d\\xb8\\x8b\\x12\\x40\\x21\\x18\\x81\\x57\\x04\\x01\\x46\\x54\\xba\\xf0\\xec\\xe4\\xcf\\x0b\\x0a\\xf2\\x4c\\x52\\xa7\\x1e\\x1a\\xd2\\x71\\x07\\x5a\\x9c\\x06\\x42\\x68\\xac\\x49\\x92\\x75\\xde\\xa4\\xbe\\x43\\xc0\\xe4\\x52\\x0d\\xe1\\xce\\xd8\\x08\\xa5\\xd6\\xc1\\x6d\\xfb\\x56\\xf6\\xec\\x7d\\x1d\\xb6\\x16\\xc2\\x1e\\x6b\\x4b\\xb5\\x06\\x75\\xcc\\x82\\x2f\\x7e\\xb1\\x60\\xd9\\xb9\\x81\\x8c\\x9e\\x0c\\x7d\\x74\\x4d\\xf2\\xce\\xcd\\xf0\\x2d\\xee\\xca\\x98\\x71\\xf6\\xd1\\x41\\x47\\x58\\xc4\\x09\\x55\\x50\\x00\\xbf\\x79\\x19\\xf7\\xe3\\x23\\x43\\x03\\x27\\xe7\\xe7\\xe8\\xd4\\xc7\\x83\\xc3\\x60\\xd3\\xe8\\x90\\xa4\\xcf\\x0c\\x91\\x79\\xf4\\xb6\\xf0\\x09\\x32\\xa1\\x32\\xd4\\xe1\\x0e\\x8c\\x02\\x0e\\x12\\x80\\x67\\x27\\xc7\\x64\\xa6\\x07\\xd0\\xf8\\xa8\\xbb\\x92\\x34\\x48\\xe6\\x79\\xbc\\xea\\xae\\x5f\\xf6\\x3c\\x9f\\x96\\xa6\\x4d\\xb3\\x30\\x81\\x3d\\x39\\x52\\x9d\\x39\\xa3\\x1d\\x3a\\xea\\xd9\\x9e\\x1e\\xb2\\xde\\x7b\\xd7\\x90\\xf5\\x95\\x4f\\x14\\xbb\\xb2\\xe1\\x31\\x98\\x37\\x27\\x35\\x19\\xff\\xbf\\x07\\xae\\xb7\\xd7\\x84\\x2f\\x9d\\xb9\\xed\\x71\\x53\\xf7\\x7b\\xf3\\x3e\\x2b\\x7a\\x9d\\xf6\\xc5\\x3a\\xd2\\x17\\x4f\\xf3\\x4f\\xa2\\x38\\xe4\\x40\\x19\\xee\\x54\\x15\\xf0\\x28\\x14\\x38\\x1e\\xfb\\x15\\x6d\\x59\\xc7\\x9e\\x7c\\x52\\xb6\\xd9\\x08\\xa2\\x84\\xb6\\x72\\x62\\xe5\\x38\\x1d\\x0c\\xc3\\xf5\\x59\\x76\\xc2\\x75\\x54\\xa1\\x1e\\xb8\\x50\\xec\\x72\\x3c\\x0e\\x7d\\x9d\\xb6\\x94\\xcf\\xc1\\x40\\x17\\x3a\\xd5\\x0b\\x67\\x6e\\x78\\xc8\\x5c\\xf9\\xc8\\xac\\xcf\\x80\\x42\\xb3\\x38\\x63\\x61\\x97\\xf0\\x1b\\x64\\xa2\\x58\\x0a\\x00\\xe0\\xa0\\x5e\\x21\\xb0\\x5d\\x4d\\xa6\\x9a\\x93\\xad\\x32\\xac\\xee\\xd2\\xae\\x40\\xe2\\x8e\\xc3\\x75\\x6c\\x57\\xd0\\x12\\x1b\\x19\\xa5\\x3f\\xbd\\x6b\\x04\\x72\\x1a\\x51\\xcf\\x1e\\xbb\\xff\\x51\\xf8\\xf4\\x40\\xe4\\x1b\\x8a\\xc4\\xc2\\x8e\\xbc\\xe7\\xbc\\x41\\xbe\\xe1\\x4f\\x89\\x48\\x46\\x12\\x6e\\x53\\x28\\xe5\\x8f\\xa3\\x78\\xd4\\xe7\\x0e\\x88\\x25\\x91\\xb9\\x8c\\xe3\\x51\\xb6\\xae\\x83\\x80\\x85\\x55\\x54\\x73\\xf6\\x6f\\x68\\x20\\xab\\x9c\\xb1\\x93\\xbf\\x92\\xcd\\x15\\xe3\\xe2\\xd9\\x1d\\x22\\xc1\\x4e\\x29\\xe0\\x3d\\x82\\xb5\\x45\\x41\\xf7\\x31\\xeb\\x5d\\x40\\x9d\\x5a\\x32\\x40\\x42\\x29\\x1c\\x3c\\xfe\\x78\\xd0\\x54\\x6c\\x67\\x65\\x0e\\x7f\\xfc\\xc9\\xe7\\x34\\x63\\x3f\\xba\\x0b\\xc6\\xf3\\x50\\xf8\\x8a\\xf9\\xac\\xfe\\xd7\\x44\\x0f\\x97\\x42\\x71\\xa7\\x14\\x47\\x38\\x11\\x11\\x72\\xd7\\x38\\x10\\xaa\\x5f\\x12\\xcd\\xec\\xee\\x51\\x20\\x3c\\xb6\\x8c\\x6b\\x8f\\x0e\\x17\\x89\\xfc\\xe8\\x23\\x91\\x1f\\x27\\xee\\x1a\\xef\\x81\\x10\\x66\\x7c\\x73\\xfd\\x7c\\x33\\x8d\\x13\\xa3\\x1c\\x6b\\x31\\xc0\\xa1\\x68\\xc0\\x12\\xbe\\x4d\\xe0\\xb1\\x30\\x38\\x1e\\x1f\\x46\\xe3\\x3d\\x79\\x5e\\xee\\x9b\\x4f\\x0b\\x15\\x03\\xd9\\x94\\x6d\\x65\\x20\\x05\\x63\\x3a\\xe7\\xf7\\x8d\\x33\\x86\\x35\\x26\\xf7\\xf1\\xe0\\xda\\x97\\x76\\xd7\\x34\\xed\\xb9\\x3a\\x30\\xfa\\x85\\x55\\x79\\xf8\\x1f\\x5c\\x6a\\xeb\\xda\\xa6\\x95\\x0f\\xba\\xea\\x62\\x3c\\x43\\x5b\\x16\\xe4\\x0f\\x7a\\xb2\\x83\\x7c\\x5f\\x31\\x56\\x2c\\xe4\\x9b\\x5b\\xef\\x7b\\x7b\\x34\\x75\\xf4\\xed\\x23\\x2d\\x50\\xbb\\xfd\\x8b\\x8b\\x36\\x34\\xec\\x9d\\x57\\x50\\x92\\xbe\\x25\\x2a\\xd3\\xa2\\x1f\\x73\\xa6\\xb7\\x2e\\x27\\x5c\\x8e\\x84\\x4a\\x45\\x92\\x95\\xaf\\xf1\\xbf\\xe0\\x0c\\xc2\\x1f\\x91\\x0a\\xc5\\xb9\\xa3\\x15\\x1c\\x62\\x01\\x2b\\x00\\xa4\\x15\\xab\\xa9\\xa8\\xc1\\xe3\\x81\\xd9\\x5a\\x13\\x39\\xa0\\x3a\\xa9\\x45\\xf0\\xdc\\xa9\\x93\\x67\\xfe\\x39\\xc2\\xfb\\xa2\\x4e\\x9f\\x8e\\xfe\\x33\\x42\\x00\\x99\\xfc\\xcf\\xb9\\xf3\\xec\\x1e\\x31\\x74\\xce\\x00\\x02\\xc9\\xec\\x88\\x81\\xb9\\x7c\\xe4\\x3b\\xe4\\x3a\\xb4\\x4a\\x93\\xd5\\xe9\\xc0\\xf3\\x4e\\x5f\\x12\\x57\\xdd\\x7a\\x40\\xe8\\x38\\x13\\xfe\\x9f\\x7f\\x6a\\x59\\x3d\\xa0\\x90\\x7f\\x8c\\xbb\\x8f\\x70\\x6e\\x69\\x29\\x6f\\x87\\x1f\\x89\\x23\\x85\\xe6\\x83\\xdf\\x2d\\x61\\x8e\\x30\\xb3\\x80\\xfc\\x69\\xcb\\x98\\xbb\\x2f\\xa5\\x69\\x79\\x65\\xd5\\xf2\\x26\\xfb\\xa9\\x70\\x73\\x5e\\xb2\\x35\\xd7\\x1c\\x2e\\x3c\\x53\\x38\\x54\\x6d\\xb5\\x56\\x0f\\x15\\x1a\\x72\\x93\\x23\\x23\\x93\\x73\\x0d\\xf4\\x19\\x7f\\xe3\\x7f\\x8a\\xbf\\x23\\xbc\\x8c\\x82\\xfc\\x78\\x4b\\xc9\\xa5\\x00\\x0d\\x77\\x71\\xa3\\xfc\\x4d\\x36\\x36\\x0b\\x4d\\xd4\\x8d\\x42\\x0d\\xc9\\x18\\xce\\xf1\\x73\\xb8\\x2c\\xe1\\xd7\\x48\\x83\\x4c\\x77\\xf1\\x4d\\x94\\x70\\x0d\\x96\\xcf\\x75\\x3a\\x53\\x8d\\x0e\\xce\\x19\\x73\\x3d\\x29\\x29\\x75\\xb9\\x09\\x09\\xb9\\x75\\x29\\x29\\x9e\\x5c\\xe3\\x90\\x3a\\xce\\xa2\\xd3\\x25\\xc5\\x86\\x15\\xa6\\xa6\\x96\\x08\\x09\\xf6\\x3a\\xea\\x77\\xa8\\xb3\\xdb\\x6b\\x1d\\xb1\\xb1\\x8e\\x5a\\xbb\\xce\\x12\\x17\\x16\\x16\\x6b\\xd1\\x67\\xb2\\x43\\x08\\xc0\\x61\\xb1\\x99\\x03\\x94\\x87\\xf4\\xb4\\xaf\\x02\\x59\\x7f\\xeb\\x03\\x30\\xf3\\xaf\\xc8\\x53\\x3d\\x29\\x89\\x36\\x89\\xa8\\x43\\xd4\\xf6\\xae\\x23\\xfa\\x82\\x42\\x31\\x6e\\x7a\\xc7\\xdf\\x6f\\x9a\\x63\\x4e\\x49\\x70\\x86\\xc5\\xc7\\x76\\x94\\x51\\xf8\\x89\\xc9\\xdd\\x97\\x97\\xb2\\xa2\\x3c\\xd1\\x06\\x1a\\xd5\\x86\\xb0\\xd8\\xc8\\xcc\\x9a\\x0c\\xdb\\xcc\\xa6\\xea\\x18\\x3a\\x3f\\xf6\\x93\\xb1\\x2d\\x20\\x76\\xa6\\x78\\xd4\\x4c\\x31\\xfd\\x1c\\x0e\\x03\\x04\\xb8\\x3e\\x1e\\x70\\x6d\\x28\\xa0\\x1a\\xc9\\x59\\xa8\\x95\\x1d\\xef\\x25\\xe3\\x9e\\xb6\\x22\\xc4\\x90\\x93\\x1c\\x79\\x8b\\xfa\\xc7\\xbf\\x06\\x82\\x9c\\x34\\x59\\x93\\x26\\x03\\x3d\\x79\\x36\\xcf\\x59\\x87\\xc9\\xe3\\x59\\x10\\xef\\x6a\\x48\\x33\\xe6\\xd8\\x2d\\xd6\\xd4\\x98\\xd4\\x7c\\x58\\x18\\xef\\xf2\\xa4\\xa7\\x54\\x94\\x96\\x59\\xb5\\x96\\x18\\xb5\\xf0\\xcd\\xb4\\xb6\\x62\\x73\\x88\\x36\\x4a\\x1b\\x52\\x96\\x1e\\x99\\x36\\xb3\\xd4\\x62\\x30\\x19\\xc2\\x0d\\x36\\xbd\\xb4\\x67\\xfc\\x8b\\xff\\x19\\xf7\\x6d\\xe1\\xcf\\x0c\\x37\\x26\\xe3\\x94\\x7a\\xd8\\x44\\x9c\\xc4\\x0e\\xe1\\x60\\x81\\xdc\\x26\\xfc\\xcf\\x9f\\x8a\\x1f\\x3c\\x51\\xff\\xc1\\x3f\\x4f\\x09\\x7f\\x16\\xff\\x0e\\xc1\\xe2\\xdf\\xd9\\x3d\\xe0\\x0b\\xe2\\x5e\\xfc\\xc3\\xdb\\x57\\x90\\x86\\xb4\\xba\\x54\\x8e\\xf8\\x91\\xc2\\xf2\\x87\\x98\\x38\\x91\\x91\\xa1\\x91\\x13\\x9f\\x02\\xe0\\x2e\\xff\\x77\\x18\\x9a\\x09\\x3e\\xd4\\x22\\x4d\\x05\\x61\\xea\\x54\\x60\\x1e\\x62\\xff\\x44\\xf8\\x42\\x64\\x4a\\x5e\\x42\\xbc\\xcb\\x16\\x19\\x69\\x73\\xc5\\x27\\xe4\\xa5\\x44\\x76\\x82\\x35\\x36\\xda\\x62\\x89\\x8e\\xb5\\xfe\\x36\\x21\\x97\\x72\\xf8\\x92\\x39\\xe2\\xa2\\x1c\\xbe\\xae\\x84\\x18\\x4b\\x52\\x6c\\x9c\\xd5\\x8a\\x10\\x8c\\xbd\\xc7\\xbf\\xe8\\xbb\\xa5\\xd0\\x91\\x36\\xaa\\xdd\\x21\\xe3\\xd1\\xea\\x13\\x21\\xea\\xbe\\x5b\\x5b\\x9f\\x7d\\x86\\x7f\\x91\\x1e\\x18\\x7d\\x0b\\xf9\\x17\\xc5\\x53\\x0a\\xbd\\x54\\x56\\xf6\\xbc\\xca\\x65\\x49\\x1f\\xf8\\x7e\\xf7\\xd4\\xcd\\x35\\x0a\\xbd\\x78\\xf9\\xf6\\xed\\xb1\\x7b\\xf8\\x9f\\xdf\\xce\\x23\\x63\\xad\\x44\\x0f\\xdd\\x12\\x11\\xfd\\x01\\x5f\\x0f\\xff\\x5d\\xf1\\x88\\x62\\x0d\\xd2\\x50\\x1c\\x6f\\x38\\x70\\x13\\xec\\x3d\\x43\\x88\\xce\\xfc\\x2e\\xda\\x05\\x3d\\x3c\\xf9\\x82\\x6b\\x94\\xb4\\x37\\x82\\xe6\\x64\\xeb\\x94\\x32\\x23\\xd3\\x0d\\x96\\x06\\x68\\x31\\xd7\\xbf\\x6f\\x05\\xd4\\xd4\\xc7\\xa4\\x17\\x19\\x95\\x47\\x2f\\xc6\\xa4\\xe6\\xc5\\x02\\xff\\xdd\\xb3\\x42\\xac\\x4d\\x67\\x08\\x57\\x2d\\x9e\\xd7\\x6d\\x71\\x99\\x23\\xf8\\x1a\\xda\\xff\\x63\\x02\\xff\\x0b\\xf1\\x97\\xc2\\x9f\\xe4\\x31\\xbc\\x83\\xfe\\x7f\\x82\\x7e\\x41\\x1a\\x45\\xdf\\x4f\\x9e\\x10\\xbf\\xf6\\x53\\xb8\\x7d\\xea\\x5f\\x1f\\xf0\\xbf\\x80\\x40\\xf1\\x5f\\x10\\xc8\\xea\\x6d\\x15\\x1f\\x17\\x83\\x6f\\xef\\xf9\\x2c\\xbf\\xa9\\x30\\x69\\xc1\\xfb\\xac\\xf2\\x82\\xff\\xbd\\xbc\\xde\\x01\\xdb\\xf8\\x7f\\x73\\x69\\x8a\\x8d\\x88\\x1b\\xbf\\x47\\x87\\x1f\\x9d\\x82\\x80\\xf2\\x20\\x28\\xa5\\x2e\\xc4\\x8b\\xdf\\x78\\xb2\\x57\\xb1\\x51\\xdc\\x82\\x10\\x07\\x1a\\x32\\xff\\xfe\\xae\\x78\\xc5\\x6f\\xaf\\xa4\\xb6\\x20\\x46\\x23\\x21\\xf1\\x52\\xe1\\x3e\\xba\\x61\\x66\\x72\\x0d\\x7e\\x23\\xa5\\x32\\x9a\\xdd\\x40\\xf8\\x34\\x8b\\xc6\\x9a\\xf7\\xd7\\xee\\x13\\x3f\\xc8\\x97\\x6a\\x96\\x0f\\xb7\\xe4\\x57\\x8a\\x57\\xc4\\xff\\x2c\\x60\\xf5\\x74\\xbb\\xd3\\xfd\\x7f\\x09\\x1f\\x66\\x26\\x5e\\xc2\\xe9\\xb8\\x3a\\xac\\x40\\x6b\\xf3\\x24\\x5f\\x13\\xe2\\x33\\xc7\\x39\\x9b\\x24\\x00\\x31\\x4e\\xa6\\xca\\x87\\x4d\\x62\\x83\\x50\\xea\\xfd\\x4c\\x29\\x7c\\xa6\\xaf\\xf4\\x26\\xb7\\x49\\x88\\xfc\\xe4\\x37\\xa4\\x3c\\x5d\\x47\\xe9\\xe4\\xda\\xe7\\xc8\\x6b\\x4e\\x62\\x66\\x55\\x00\\xe3\\x6d\\x42\\x28\\x99\\x6d\\xa8\\xbd\\x77\\xde\\xc3\\x01\\xc6\\x5c\\x23\\xe0\\x9c\\x4b\\xf0\\x93\\x5b\\x1b\\xff\\x82\\x9f\\x10\\x6f\\x52\\x12\\xbd\\xd3\\x3c\\xe3\\x0c\\xe0\\xc6\\x79\\x94\\x38\\x64\\x44\\xa5\\x8c\\x27\\x0d\\x10\\x75\\x22\\x0e\\xca\\xd6\\xc4\\xcc\\x71\\x33\\x69\\x16\\xa6\\xec\\x3f\\x56\\xd6\\x37\\xcc\\x80\\x2b\\x7c\\x0e\\xaf\\x12\\xd7\\x28\\x66\\xc2\\xd7\\x21\\xe2\\x7f\\x67\\x57\\x3a\\x71\\xfa\\xb1\\xff\\x89\\x5f\\x09\\x90\\x0b\\x21\\xfe\\x92\\xcc\\xe7\\x82\\x00\\x92\\x99\\xe9\\xc4\\xc6\\x26\\x29\\xeb\\x17\\x69\\x92\\xe2\\xc5\\xe2\\xbd\\x2f\\xc1\\x2f\\x1e\\x84\\x5f\\xbe\\xc4\\xdf\\x7f\\x6b\\x1e\\xed\\x1a\\xa9\\x5f\\xee\\xf3\\xf3\\x98\\xd0\\x79\\xce\\xf8\\xe3\\xfc\\xfc\\x60\\x94\\x3b\\x88\\xd9\\x62\\x92\\x65\\x20\\x3a\\xeb\\x6c\\xfa\\xc3\\xfa\\x25\\xd7\\xef\\x81\\xe4\\xc8\\xef\\x7d\\xdc\\xa3\\x63\\xbd\\x1d\\xf8\\x6f\\xbe\\x90\\x99\\xdc\\xa9\\xb1\\xc5\\xa7\\x4f\\x73\\x25\\x67\\xb8\\xc0\\x33\\x6c\\x6f\\x7f\\x88\\xdc\\x3f\\x45\\xe6\\xca\\x41\\x00\\xec\\x4c\\x3d\\xb9\\x92\\x61\\xbc\\x32\\x52\\x66\\x46\\x33\\xf2\\x29\\x5e\\xdf\\xef\\xbc\\xdc\\x3d\\xf2\\x24\\x90\\xb8\\x79\\x57\\x50\\xbe\\x19\\xaa\\x7d\\x53\\xea\\xae\\x19\\x0a\\x0a\\xb7\\x15\\x00\\x10\\x57\\x2f\\xf3\\xd0\\xdd\\x59\\x47\\x02\\x07\\xa6\\xf7\\x04\\x60\\xa1\\x1a\\xe0\\x24\\x7f\\x80\\x8b\\x12\\x8b\\xb8\\xe8\\x31\\x80\\x5f\\x8a\\x31\\xdc\\xfb\\xbe\\x28\\x78\\x03\\xbf\\xef\\xfb\\xca\\x99\\xa3\\xb8\\x0e\\xd7\\x1c\\x3d\\xe3\\xfb\\x1a\\xeb\\x8b\\x2a\\xf2\\xac\\x7d\\x8c\\x93\\xc7\\x8c\\x32\\x28\\xbf\\x8d\\x3d\\x25\\x21\\x5e\\x1f\\x1c\\x48\\xdd\\xb3\\x50\\xcf\\x3a\\x17\\xb1\\x6a\\xc7\\xc6\\xb0\\x75\\x37\\x39\\xdb\\x84\\x1f\\xee\\x0e\\x14\\x5e\\x4b\\x08\\xd4\\x04\\x8a\\x56\\x50\\x97\\x70\\xf8\\x8d\\xc1\\xcb\\x1b\\xaa\\xaa\\x36\\x5c\\x1e\\xf4\\xce\\xbd\\xbc\\xb1\\xb2\\x72\\xe3\\xe5\\xb9\\x5e\\x31\\xdf\\x5c\\x35\\xaf\\x8c\\xf2\\xce\\xe2\\x6f\\x9a\\xab\\x86\\xdc\\xee\\xa1\\x2a\\x33\\xff\\x33\\x55\\xdb\\xfe\\x9b\\x2b\\x46\\x5e\\x38\\xd0\\xae\\x7c\\xf3\\x4d\\x65\\xdb\\xfe\\x17\\x47\\x56\\xbc\\xb8\\x7f\\xa6\\xf2\\x6b\\x3e\\x53\\xcb\\x9e\\xc1\\x42\\x05\\xfe\\x93\\xb2\\x70\\xee\\xee\\xc6\\xe6\\x5d\\x83\\x85\\x4a\\x5f\\x38\\x79\\xbd\\x07\\x01\\x9a\\xef\\xe7\\x7e\\x8a\\xa7\\x75\\x8d\\x0b\\x0b\\x46\\x3c\\x0b\\xd4\\xc1\\x18\\x21\\x79\\x85\\xe9\\xf5\\x7a\\x1d\\xeb\\x8c\\x12\\x8e\\xa9\\xbc\\x52\\x7c\\x6a\\x3a\\x7b\\xc3\\xaa\\xea\\xc0\\xef\\xe4\\xf6\\x94\\x9a\\xbc\\xa5\\x23\\x17\\xe6\\x78\\xfb\\xef\\xa7\\xb4\\x05\\xa5\\x3d\\x2e\\x2f\\xfc\\x78\\x46\\x5e\\xef\\x96\\x16\\x3c\\xec\\x3b\\xb7\\xf6\\xf9\\x9d\\x0d\\x41\\xe2\\x8b\\x50\\x19\\xd4\\xb0\\xf3\\xf9\\xb5\\xf4\\x93\\x96\\xcd\\xbd\\x79\\x33\\xb8\\xaf\\xb3\\xf1\\x1d\\x24\\x75\\x58\\x4a\\xd6\\x55\\x06\\x4a\\x71\\x5b\\xc3\\x11\\xf6\\x2f\\x51\\xff\\x92\\xe2\\x81\\x82\\x10\\x05\\x90\\x06\\x26\\x9a\\xb0\\x2d\\x25\\xd3\\xc9\\x93\\xe4\\x0a\\x9f\\x38\\xf8\\x68\\x75\\xe1\\x7a\\x6a\\xba\\xa3\\x2e\\xdf\\xc9\\x78\\x0a\\x25\\x19\\x37\\xfc\\xf8\\xf6\\x7b\\xd2\\x3a\\x36\\x37\\x35\\x6e\\xec\\x48\\x87\\x43\\x3b\\xc4\\x22\\x50\\x94\\x90\\xde\\xaa\\xdb\\xf7\\xf2\\xe8\\xe8\\x2b\\xfb\\xea\\xcd\\x15\\x73\\x4b\\x88\\xbc\\x2d\\x7a\\x2d\\x0e\\x12\\x3e\\x6e\\x1d\\xbd\\xbe\\xc9\\xed\\xde\\x74\\x7d\\xb4\\xf5\\x96\\xf8\\xb3\\xb8\\xd7\\x4e\\x67\\xec\\x7b\\xf0\\x5a\\x4f\\xf3\\x81\\xdf\\x3f\\xd1\\xdf\\xff\\xc4\\xef\\x0f\\x34\\xf7\\x7c\\xf1\\xd2\\xbe\\x8c\\xd3\\x4c\\xae\\xec\\x20\\x7e\\xd1\\xfd\\x2c\\x66\\xd8\\x85\\xde\\x96\\x8e\\x19\\x61\\x46\\x50\\x70\\xa9\\x76\\x8c\\x14\\x61\\x81\\x98\\x4e\\x2d\\xca\\x25\\xe1\\xff\\x9c\\xbf\\xe3\\xf3\\x29\\x1f\\x09\\xdc\\xb8\\xa1\\x2a\\x0a\\x29\\x14\\x5c\\x9f\\x92\\xda\\x0c\\x1d\\x1e\\x01\\xa8\\xa4\\xc7\\x00\\x90\\x05\\x32\\x31\\x45\\x1c\\x55\\xc2\\xed\\x1e\\x56\\x0c\\x4d\\x2f\\xe4\\x36\\x23\\xa4\\x10\\x14\\x48\\x18\\x99\\x5a\\x8e\\xac\\x45\\xb9\\x18\\xb5\\x3b\\xa9\\x29\\xc6\\xc1\\x66\\xa5\\xa0\\x56\\x9b\\x39\\x29\\x49\\xa5\\x8c\\x94\\xa1\\x43\\x4c\\xc9\\x9a\\x64\\x94\\x71\\xca\\x4e\\x1e\\x98\\x12\\x97\\xc9\\xfd\\x79\\x86\\x36\\x2e\\x3c\\x34\\x26\\x50\\x1f\\x5f\\x98\\xe0\\x19\\x8a\\x74\\x9d\\x5b\\x30\\xf7\\xd4\\x70\\x4e\\xce\\xf0\\xe9\\xa1\\x85\\xe7\\x5d\\x59\\xbe\\x17\\x62\\x4b\\xe7\\xd5\\xf4\\xac\\xb3\\x68\\x32\\x49\\x94\\x66\\xed\\xfc\\xd2\\x58\\xe2\\x1a\\xf8\\xbe\\xc5\\x61\\x08\\xe6\\xf1\\x7e\\x6d\\x70\\x45\\x7d\\x55\\x6d\\xf3\\x81\\x57\\x46\\xb4\\x5b\\x3e\\x3c\\xdf\\xdd\\x50\\xb3\\xcd\\x77\\xd3\\xb3\\x77\\x7e\\x51\\x5b\\x19\\xd6\\xc4\\xe7\\x58\\xb4\\xd5\\xeb\\xce\\x77\\xb0\\x7e\\x7e\\x5a\\xdc\\xce\\xf7\\x91\\xb9\\x11\\x8d\\x0a\\xd0\\x36\\x77\\x88\\x8a\\x74\\xb1\\x1d\\x04\\x85\\x06\\x68\\xaf\\x49\\x11\\x0c\\x66\\x15\\x70\\xa4\\xd1\\x9c\\x62\\x88\\x1d\\xa5\\x95\\x80\\x50\\xa6\\xd4\\x5c\\x44\\x5a\\x4b\\xe5\\x7c\\x1a\\x66\\x3d\\x83\\x01\\xaf\\xfe\\xcc\\xb2\\xf4\\xc8\\x17\\x15\\x1b\\x03\\x88\\x7a\\x18\\x2d\\xe6\\x98\\x82\\xd8\\x02\\x2d\\x71\\xc8\\xa2\\x68\\x88\\x0e\\x50\\xfa\\xcf\\x36\\x32\\x7a\\x5e\\x76\\x0d\\x91\\xde\\xd1\\x4c\\xc2\\x61\\x6a\\xd5\\x93\\x88\\xd4\\x4d\\x4e\\xbc\\x64\\xf0\\xc2\\x48\\xf1\\xdc\\xee\\x0d\\x7b\\x2a\\x37\\x3e\\x3a\\xb7\\xf5\\x42\\xc9\\xcd\\x9a\\x0d\\x0f\\x76\\xbb\\xe7\\x14\\xc5\\x25\\x94\\xf4\\x15\\xe4\\xf6\\x57\\x25\\xa7\\x1d\\x9d\\x5d\\xb1\\xa4\\x3e\\x39\\xb1\\xbc\\xbf\\xf8\\x88\\xf0\\x66\\xfe\\xa2\\xa3\\x5d\\xb3\\x4e\\x67\\xa4\\xbe\\xbe\\x6b\\xc9\\xe5\\x55\\x85\\xe9\\xd9\\xa2\\x53\\xf8\\x62\\xdb\\xf1\\xe5\\x6e\\xdf\\xa9\\xc4\\xa2\\x76\\x47\\x7a\\x67\\x79\\xb2\\xb5\\x72\\x96\\x73\\xec\\x2d\\x67\\xa9\\xbd\\x71\\x49\\xa9\\x73\\xb8\\x35\\xfb\\x8c\\x74\\xfe\\xa9\\x21\\x3e\\xaf\\x53\\x7c\\x01\\x0a\\xa4\\xe7\\x9f\\x00\\x01\\x73\\x72\\xa4\\xa0\\x9d\\xae\\xe2\\x34\\x1a\\x6e\\x27\\xef\\x71\\xa4\\xd2\\xe4\\x5f\\x7d\\x2e\\xf7\\x9d\\x97\\x45\\xd7\\x4d\\xd1\\xf9\\x32\\xb4\\x47\\x46\\x93\\x03\\xe2\\x3f\\xc5\\x2c\\xf8\\x36\\xcf\\x8f\\xfd\\x65\\x70\\x50\\xd2\\x41\\xd7\\x93\\xfd\\x6e\\x58\\x11\\x8b\\xb2\\x50\\x0d\\xc5\\x23\\x50\\x4e\\xfb\\xd4\\x00\\xcc\\x03\\x0d\\xf2\\x01\\x0e\\x78\\x46\\x00\\x09\\x3c\\x02\\xea\\x9c\\x95\\xb7\\xbd\\x8a\\xf2\\x3c\\x57\\x62\\x82\\xd5\\x2c\\x50\\xe9\\x26\\x5b\\x98\\x26\\x1c\\xb0\\xfa\\xc9\\x1e\\x5b\\x26\\xf0\\x72\\xd3\\x39\\xcd\\x64\\x4b\\x86\\xd5\\x42\\x4a\\x82\\xd2\\x35\\x74\\xb0\\xb3\\xe5\\xa2\\xc7\\xa6\\x2f\\xad\\x6d\\x4a\\x4e\\xa9\\xca\\x8e\\xd5\\xbb\\x7a\\x2a\\x7e\\xf0\\xe3\\xca\\x1d\\x37\\xd7\\xae\\x7f\\x61\\x67\\xa5\\x6b\\xf6\\xb6\\x5a\\x3e\\xa3\\xc1\\x65\\xb0\\x5b\\x9a\\xd7\\xb7\\x91\\x03\\xa4\\x25\\xad\\x6d\\x75\\x4d\\xeb\\xfa\\x96\\x64\\xfe\\x9f\\x55\\xcb\\x1b\\x92\\x33\\x2c\\x3b\\x03\\x74\\x9a\\xe0\\x08\\xb3\\x23\\x5e\\x97\\x91\\x99\\xa9\\xaf\\x13\\xff\\xf0\\x81\\x76\\xe5\\x6b\\x87\\x5b\\x5b\\x0f\\xbf\\xb6\\x52\\xdb\\x75\\x66\\x7d\\x9b\\x3a\\x48\\xe3\\xaa\\x6a\\xf5\\xe5\\x36\\xee\\x5f\\x50\\x5c\\xbc\\x60\\x7f\\xa3\\xb6\\x74\\xcb\\x22\\xcf\\x0c\\x28\\x5e\\x74\\xa0\\xc1\\xcf\\xad\\x36\\xc0\\x37\\xa2\\x22\\x8a\\xdf\\x8f\\x03\\xa4\\xa4\\x48\\x1b\\x85\\x52\\x21\\x28\\x47\\x64\\xd6\\x47\\xa4\\x54\\x91\\xbf\\x4a\\x34\\x24\\xa7\\x2d\\x70\\x78\\x64\\xc8\\x65\\x16\\xd7\\x00\\xa8\\x30\\x3f\\x2b\\xc3\\x4e\\x7c\\x42\\xba\\x88\\x90\\x60\\xe2\\xd3\\x2f\\x82\\x22\\x36\\x89\\x24\\xae\\x23\\x3f\\x90\\x48\\xa0\\xfd\\x70\\x67\\xcc\\x85\\x7e\\x72\\xcc\\x85\\xc3\\xa1\\xc5\\x8b\\xef\\x3b\\x91\\xdc\\xb8\\xaa\\xbe\\x7c\\xa4\\x35\\xdd\\x0b\\xd6\\xaa\\x39\\x4b\\xd7\\x15\\x2d\\x7d\\x6e\\x57\\xed\\xca\\xc5\\xfd\\x8b\\xca\\x37\\x5d\\x5d\\xda\\x7f\\x65\\x47\\x03\\x78\\x33\\x9a\\x16\\x16\\x78\\x96\\x56\\x1b\\x0d\\xe5\\x0b\\xeb\\xff\\x0e\\x3f\\x6a\\x9d\\x9d\\xe4\\xce\\x88\\x31\\x38\\xab\\xac\\x85\\x83\\x9e\\xdc\\x24\\xb5\\x7d\\xe6\\xfa\\xa6\\xfe\\xad\\xf1\\xa6\\x0d\\x9e\\xa6\\xd1\\xe6\\xe4\\xd4\\x99\\xeb\\x3c\\x49\\xa5\\x69\\xd1\\xd1\\x69\\x45\\x89\\x49\\x85\\x29\\xba\\x13\\xd2\\x1c\\x1a\\x15\\x77\\xf0\\x19\\x34\\xbf\\x00\\x65\\x20\\x06\\xc6\\xbb\\xa5\\xd3\\x4a\\x99\\x42\\xa0\\x87\\x8a\\x8e\\x64\\xe6\\xb7\\x48\\x41\\x84\\xb2\\x99\\xa3\\x4d\\xd1\\x02\\x03\\x45\\xe9\\x69\\x38\\x31\\x41\\x48\\x31\\x4d\\xd9\\x62\\x95\\x53\\x2b\\x81\\xd1\\xc9\\x67\\x88\\x0b\\xaa\\x96\\x37\\xda\\x66\\xf5\\xfe\\xd0\\x35\\x50\\x6d\\x03\\x53\\x4e\\x69\\xec\\xdc\\xac\\x6c\\x4f\\xcb\\xf5\\x9e\\x6d\\xad\\x96\\x94\\xae\\xbd\\xb3\\x20\\xdb\\x97\\x2a\\x5c\\x5b\\x2f\\x76\\x94\\x8f\\xae\\xdf\\xd9\\x34\\x34\\x37\\x3c\\x7b\\x46\\x74\\xba\\xa7\\xc4\\xda\\xd9\\x5c\\xa5\\x6b\\x77\\x75\\xa4\\x9a\\xf2\\xc2\\x4c\\x61\\x85\\x3d\\x1b\\x5b\\xf3\\xf7\\x9d\\x79\\xa4\\x0b\\x8a\\xce\\x20\\x40\\x8f\\x88\\x83\\xbc\\x9d\\xc5\\xae\\x77\\x7c\\x29\\x1c\\x30\\x37\\xce\\x67\\xa0\\x9f\\xe0\\x33\\x70\\x50\\x43\\x8e\\xcd\\x3f\\xf7\\x63\\xdc\\x31\\x02\\x13\\x87\\xec\\x7b\\x34\\xe5\\x5b\\xca\\x6b\\xc0\\x4e\\xe6\\x84\\x96\\xc1\\xa4\\x50\\x4e\\xe1\\x35\\x18\\xf7\\x5d\\x78\\x82\\x73\\x9f\\x1c\\xe9\\x3d\\x3c\\xcf\\x75\\x73\\xfb\\xb6\\xf9\\xf7\\x58\\x6f\\x4a\\xa4\\x06\\xa9\\x43\\x17\\x57\\xdf\\x7a\\x8e\\xaf\\x3d\\xba\\xa5\\xb1\\x6c\\xec\\x3b\\xd4\\x49\\xc1\\x21\\x2f\\x99\\x3b\\x91\\x2c\\xe7\\x88\\x01\\x59\\x51\\xab\\x04\\x57\\x8d\\x43\\x3c\\xa2\\x20\\x91\\x41\\x59\\xda\\x64\\x8e\\xfb\\x56\\xb2\\xc8\\x19\\x73\\xfa\\xf7\\xd9\\x93\\xbf\\x27\\xbe\\x4f\\x13\\xa9\\x9e\\xcd\\x4c\\xb7\\xbe\\xe9\\xc9\\x49\\x94\\xc4\\xb0\\xc2\\xce\\x63\\x60\\xf4\\x83\\x44\\xf8\\xc8\\xfc\\xe5\\x97\\x16\\x0c\\x3f\\xb8\\xa2\\xb0\\x60\\xf9\\x83\\xc3\\x0b\\x08\\x9b\\xa5\\x57\\xd4\\x6c\\xd8\\xb6\\x6d\\xad\\xa8\\x81\\x3f\\xae\\xdb\\xbe\\x6d\\x1d\\x4e\\xdb\\xff\\xd1\\xf1\\xc6\\xc6\\xe3\\x1f\\xed\\x87\\x8e\\xfd\\x1f\\x9d\\x6c\\x6c\\x3c\\xf9\\xd1\\xfe\\x3f\\x1f\\xba\\xf9\\xde\\x7b\\x37\\xc1\\xbc\\xe3\\xe6\\xbb\\xef\\xde\\xf4\\xfb\\x91\\x48\\x5b\\x0a\\x48\\xb3\\xb4\\x54\\xaf\\x0b\\x04\\xe0\\x82\\x00\\x83\\x6c\\x97\\xf2\\x4b\\x17\\x79\\xe9\\x6b\\x93\\x92\\x98\\x26\\xa6\\x31\\x6a\\x26\\xef\\x24\\x2c\\x2e\\xfb\\x06\\x8e\\x82\\x98\\x8c\\x22\\x63\\x5a\\x53\\x9c\\xad\\x64\\x4d\\x49\\xed\\xca\\xe6\\x14\\xf1\\x12\\x71\\x1d\\xaa\\xca\\x3c\\x49\\x81\\xb1\\xea\\x9d\\xa9\\xd1\\x89\\x6d\\xfb\\xe6\\xe3\\x46\\xfa\\xcc\\xfc\\xdb\\x7f\\xe6\\x67\\x91\\x73\\x53\\x0a\\x10\\x66\\xae\\x38\\xba\\x83\\xce\\x00\\xc0\\xb6\\x78\\xcc\\x71\\xe4\\xd1\\x09\\x80\\x6a\\x62\\x26\\x7f\\x94\\x00\\x3c\\x22\\x3b\\xa8\\x3f\\xac\\x41\\xae\\x8f\\xbf\\x7b\\x79\\xaa\\x24\\xca\\xc8\\xe2\\x89\\x6f\\xb3\\xa7\\x7e\\x1b\\xf2\\x99\\xd7\\x86\\x7e\\xe6\\xb5\\x61\\x9f\\x79\\x6d\\xf8\\x67\\x5e\\x1b\\xf1\\x99\\xd7\\xea\\x3e\\xf3\\x5a\\xfd\\x67\\x5e\\x1b\\xf5\\x99\\xd7\\xd2\\x6e\\x8d\\x90\\x63\\x58\\xef\\xf8\\xce\\x1d\\x39\\xfe\\x31\\xf9\\x80\\x5e\\xc7\\x84\\x5b\\x16\\x41\\x1b\\x4f\\xfc\\x3c\\x9f\\x1c\\x65\\xd1\\x85\\x09\\xca\\x28\\xca\\x3f\\x6b\\xf5\\x1b\\xf9\\x24\\xef\\x8e\\x1e\\xa8\\x31\\x32\\x9b\\x2c\\x21\\xa5\\x34\\xfa\\x56\\x4e\\x09\\xca\\xaf\\xc1\\x81\\xdc\\x90\\xc4\\xd4\\xdc\\xc4\\xe0\\xe4\\x60\\x08\\x2f\\x8a\\xaa\\x5d\\xec\\xc9\\x0a\\x85\\xc5\\x81\\x71\\x89\\x29\\x91\\xaa\\xc0\\x00\\x12\\x62\\x19\\x64\\x9e\\x51\\x38\\xab\\x2e\\x3f\\xf2\\x5b\\x71\\xbc\\xea\\x88\\xa9\\xca\\x65\\xe4\\xe1\\xb0\\x10\\xe8\\x6a\\xed\\x4f\\x1e\\xab\\x37\\xe6\\xd9\\x22\\x31\\xe0\\xd3\\x8a\\x80\\xc4\\x8a\\x79\\xe5\\xd8\\xbe\\x4e\\xe2\\x47\\x10\\xd7\\xf1\\xe9\\x44\\x37\\xa8\\xa4\\x78\\x9a\\x4a\\x40\\x5c\\x2e\\x9b\\x9b\\x66\\x13\\xc6\\x35\\x4c\\x44\\xe3\\xfe\\x71\\x35\\x12\\x35\\x94\\xbb\\x8d\\xc9\\x89\\x3c\\xdd\\x02\\x2d\\x96\\x49\\xe2\\xd5\\xcf\\x3d\\x37\\x2e\\xc3\\x88\\x92\\x6b\\x99\\x90\\x61\\xd2\\x1f\\x46\\x43\\xff\\xef\\xfc\\x95\\xc5\\xfd\\xfb\\xba\\x6c\\x29\\xb3\\xef\\x1b\\x3e\\x7c\\xf8\\x87\\x3f\\xcf\\x9d\\xbd\\xa9\\x62\\x85\\x8b\\x44\\x54\\x80\\xc9\\x59\\x12\\x33\\x18\\x69\\x8e\\x0a\\x86\\xa6\\xc6\\x82\\x55\\x37\\x77\\xd7\\x66\\x10\\xb4\\x6e\\xd9\\x70\\x8d\\xc5\\x73\\xe8\\xdd\\xad\\x35\\x07\\x33\\x05\\x55\\xa8\\xd6\\xe0\\xa8\\xb4\\x3a\\x5a\\xf3\\x0d\\x67\\xee\\xbf\\x4c\\xe8\\x5b\\xd3\\x67\\x44\\x05\\x47\\xa5\\xd5\\x17\\x5b\\xdb\\x9b\\x2b\\x75\\xed\\x31\\x29\\xb6\\xb4\\xb8\\x54\\xbb\\x3a\\x58\\x57\\xb6\\xe0\\xdc\\x48\\xc3\\xd6\\xb9\\xb5\\x3a\\x6d\\x61\\x7d\\x57\\x16\\xf5\\x66\\xe9\\xd4\\xd2\\x3a\\xec\\x21\\x58\\x8a\\x27\\xc8\\x3a\\x8c\\x41\\x4b\\x24\\x59\\x17\\x48\\x0d\\x66\\xd2\\x62\\x8c\\x91\\xdf\\xf0\\x13\\xbc\\x15\\x91\\x02\\x25\\xd4\\x64\\x40\\x05\\xff\\x1a\\xe5\\x81\\x2e\\x52\\x6a\\xf3\\xbe\\xe3\\x2b\\x9e\\xb7\\x4d\\x5e\\xc3\\x24\\xc4\\x93\\x1c\\xa8\\xe8\\x4a\\x56\\x2a\\x63\\xa8\\xdf\\x68\\xda\\x4a\\x66\\xf0\\x12\\x23\\xdf\\x70\\x24\\x2c\\x36\\x49\\x17\\x9d\\xa5\\xb6\\x65\\x74\\x65\\xe4\\xf7\\x16\\x27\\x88\\xc7\\xbc\\xbb\\xb9\\xbf\\x73\\x0f\\xfa\\x96\\xa4\\x3a\\x62\\x55\\x61\\x01\\x3b\\x13\\x34\\x86\\xaa\\x55\\xed\\xf8\\xc0\\x58\\x3f\\xf7\\xe0\\x59\\xaa\\x4f\\x5c\\x26\\x3a\\x4a\\x35\\x91\\xdb\\x3a\\x94\\x4e\\x4f\\x62\\x66\\xe0\\x39\\x15\\x20\\x1e\\xd7\\xcb\\xea\\x83\\x63\\xdc\\xd5\\x93\\xe5\\x97\\xcd\\x76\\x9b\\x45\\x63\\x26\\xd3\\x6c\\x32\\x18\\x67\\x6a\\x70\\x22\\xaf\\x1d\\x27\\xc0\\xab\\x76\\x2d\\x3a\\x3f\\xbc\\xf8\\xe1\\x42\\x6f\\xdd\\xb6\\x27\\x06\\x46\\xaf\\xae\\xce\\xf7\\x1a\\xca\\x17\\x37\\x66\\xb5\\x94\\xa4\\xc5\\x85\\x6a\\x72\\x2a\\xda\\x1d\\x84\\x00\\x2f\\x01\\xfe\\x31\\xf2\\xca\\x81\\xa6\\x4a\\xb7\\xef\\x2f\\xdc\\x4f\\x61\\xdb\\x9b\\x7b\\x2a\\xbb\\xcf\\x7f\\x6b\\x6b\\xc7\\xfd\\x6b\\xab\\x13\\xf2\\xea\\x67\\x76\\xd9\\xc4\\xef\\x1b\\xf3\\x6d\\xfa\\xc2\\xe1\\xbd\\x1e\\xda\\xef\\xeb\\xc5\\x1e\\x3e\\x93\\xd4\\xd9\\x41\\xf1\\x0c\\xc6\\x04\\x0c\\x35\\x08\\x30\\x50\\x9b\\xb2\\x04\\x5c\\x71\\x50\\xd2\\x3b\\x46\\x77\\xe7\\x00\\x07\\x2f\\x2b\\x89\\xac\\x66\\x72\\x54\\xde\\xa4\\x99\\x25\\xe5\\x1d\\xa4\\x0d\\xc0\\xc3\\xf3\\x1e\\xdf\\x50\\x75\\xd5\\x5c\\xbd\\xb8\\xa6\\x75\\xd4\\x63\\xb2\\xf7\\xdc\\x33\\xab\\x73\\xff\\xdc\\x1c\\x48\\xaf\\xeb\\x4d\\x6b\\xd4\\xb9\\x32\\x12\\x60\\x64\\xe9\\xce\\x37\\x77\\x55\\x94\\x6f\\x7d\\x9e\\x6f\\x72\\xce\\x3f\\x36\\x3b\\xbb\\xbb\\x4c\\x0a\\x57\\xae\\xdc\\x34\\xb7\\x2a\\x78\\x86\\x31\\xaf\\xab\\xbc\\x70\\xa8\\xa5\\x28\\x62\\x53\\x60\\x7c\\x5a\\x51\\xb2\\x23\\x2b\\x44\\xd3\\xbd\\xe7\\xea\\xa2\\x94\\xa5\\x6f\\x9c\\xec\\xa6\\x7d\\xbd\\x8c\\xc8\\xed\\xbd\\x2c\\xde\\x20\\x95\\xb1\\xc3\\xca\\x24\\x7d\\x76\\xba\\xa0\\x65\\x6d\\xd7\\x96\\x64\\x4b\\x66\\x8b\\x18\\x8c\\x93\\x1d\\x4b\\x12\\x9e\\x1f\\xa6\\xb9\\x97\\xf8\\xbd\\xe2\\x2f\\x07\\x17\\x94\\x6d\\x7a\\x6e\\xd5\\xea\\xe7\\x36\\x97\\x95\\x6d\\x7e\\x76\\x15\\xce\\x1d\\xbb\\x64\\xae\\x5b\\xd9\\xd8\\x30\\x52\\x6f\\x92\\xfe\\xd6\\x99\\xb9\\x07\\x6b\\xbf\\xb9\\x5b\\x3f\\x74\\xe3\\x70\\x27\\xf5\\x27\\xe9\\x46\\xde\\x38\\xdc\\xe6\\xfb\\x68\\xdc\\xad\\xd4\\x70\\xef\\xc2\\xe2\\xe2\\x85\\xf7\\x36\\xd0\\xbe\\xfd\\x02\\x39\\x43\\x65\\x93\\x3a\\x46\\xd1\\x48\\xa3\\x89\\xe9\\x4c\\xbb\\x95\\x99\\x0d\\xee\\xd8\\x5c\\x28\\x54\\xc2\\x5f\\x57\\x4e\\x9e\\x93\\x93\\x58\\x3f\\xf8\\x6c\\xf1\\x01\\x88\\x49\\x2d\\x30\\xa6\\x36\\xc6\\xd8\\x0c\\x85\\x05\\x85\\x06\\x42\\x11\\x93\\x2c\\x9e\\xe1\\xf6\\x70\\xf7\\xfb\\x1e\\x77\\x7b\\x2c\\x41\\x31\\xea\\x5d\\xba\\x98\\x50\\x85\\x79\\x26\\xd9\\x66\\x9a\\x2e\\xd0\\xe7\\x5f\\x20\\x7d\\x54\\x4a\\x9e\\x1f\\x3f\\xce\\x9f\\x4b\\x9e\\x88\\x90\\xfc\\x44\\xc9\\xf7\\x63\\xd3\\x27\\x09\\x54\\x68\\xa8\\xe5\\xee\\xb0\\x30\\xe2\\xe0\\xf1\\xce\\x52\\x43\\x97\\xa5\\x7a\\xa8\\xa8\\x71\\x79\\x4d\\x22\\x57\\x95\\xf3\\x86\\xde\\x96\\x10\\x9e\\x33\\xf2\\xcc\\xd6\\xe5\\x57\\xd6\\x96\\x90\\xed\\xed\\x64\\xcf\\xd6\\xd6\\xa4\\xc6\\x4d\\xe7\\x9a\\xf6\\x82\\xb0\\x25\\x73\\xe5\\xce\\xe3\\x6d\\xab\\xbe\\xf9\\xe0\\x40\\xc1\\xba\\xe7\\xb7\\xe0\\x45\\x4c\\xc7\\x5e\\x2e\\x26\\xf2\\xeb\\x48\\x1d\\x92\\x90\\x83\\xf2\\x90\\x05\\x00\\x46\\x16\\x93\\x06\\xd1\\xc5\\x5a\\xaf\\x02\\x54\\x3b\\x31\\xdb\\xe8\\x6e\\x8b\\x1b\\xb2\\x32\\x92\\xcc\\xd1\\x91\\x54\\xfb\\x12\\xa8\\x6c\\x0a\\xa7\\x9d\\xa0\\x64\\xa7\\xf0\\xc9\\xe1\\x49\\x24\\x96\\x9f\\xcc\\x36\\x49\\x2c\\xe3\\xe0\\x95\\x0f\\xcc\\x4b\\xdb\\xb4\\x7d\\x7e\\x5a\\x89\\x55\\x83\\xa3\\x5c\\xdd\\xa5\\x86\\xe2\\x39\\xee\\xa6\\xbd\\xf3\\xf2\\x33\\x17\\x3e\\x32\\xea\\xf5\\x56\\xcc\\x29\\x8a\\xc1\\x7a\\x12\\x4e\\x60\\x34\\x40\\x48\\xe8\\x82\\xd3\\x2f\\x0d\\x3f\\x09\\x9a\\xbe\\x3d\\xb6\\xb9\\x8b\\x96\\xe6\\xb8\\xb7\\x2f\\x9b\\x19\\x8e\\x9f\\xcb\\xec\\xa9\\xb2\\xb5\\xdf\\xf7\\xd6\\xc8\\xfc\\x17\\xcf\\x2c\\x08\\x15\\xb3\\xf0\\x92\\xf0\\xb6\\x15\\x3b\\x4a\\xab\\xf7\\x2f\\xab\\xcc\\xb4\\xd2\\xf3\\xbb\\x98\\xcc\\x6f\\x27\\x6d\\x30\\xd1\\x35\\x92\\xa8\\x0d\\x07\\x66\\x43\\x60\\xbe\\x41\\x0a\\x8c\\x25\\xf5\\x06\\xbf\\x53\\x50\\x1f\\x15\\x25\\x75\\x66\\x09\\xc7\\xfa\\x91\\x1c\\x06\\xa6\\x9b\\x13\\xf0\\x8b\\x75\\xc3\\xa5\\x71\\x38\\xcb\\xf2\\x46\\x42\\x46\\xe6\\x92\\xa7\\xb6\\x78\\x87\\xce\\x13\\x96\\x23\\x63\\x71\\xa7\\x93\\x1c\\x20\\xdb\\xc2\\x3b\\x47\\xf7\\x57\\xee\\x05\\xb4\\xa5\\xff\\x36\\x7a\\x64\\xc9\\xdb\\x17\\x16\\x85\\x88\\xb9\\xf0\\x95\\x90\\xee\\x33\\x1f\\x1d\\x84\\x5f\\x89\\x91\\x0b\\xee\\x5f\\x51\\x11\\xca\\x3d\\xc5\\x64\\x26\\xc5\\x8a\\xdc\\x4b\\xea\\x95\\x49\\x4f\\x2f\\x49\\x20\\x19\\x60\\x38\\xc4\\x01\\x1a\\x51\\x2a\\x30\\xc7\\xd9\\x99\\x09\\x89\\xa8\\x1a\\xc0\\xb6\\x37\\x84\\x48\\xc9\\x4c\\xb3\\x55\\x6f\\xd2\\x58\\x55\\x54\\xcd\\x52\\x60\\xa5\\x34\\xd3\\x58\\xd5\\xd8\\xb1\\x6e\\x52\\xad\\x27\\x8e\\xc8\\x74\\x18\\x60\\x65\\x5a\\x01\\x9e\\x11\\x97\\x9e\\x58\\xe1\\xb9\\xe9\\x29\\x4f\\xcc\\x88\\x9b\\x81\\x0b\\xd2\\x5e\\x4f\\xce\\x33\\x54\\xaf\\x9a\\xd9\\xbb\\x31\\xc1\\xb8\\xa1\\x77\\xe6\\xaa\\x6a\\x43\\x5e\\x32\\x5f\\xb0\\x55\\xbc\\xb5\\xaf\\xfd\\xfc\\xfa\\x9a\\x47\\xaf\\x82\\x5d\\xfc\\xf0\\xea\\xa3\\x35\\x6b\\xef\\xef\\xd8\\x07\\xc2\\xd6\\x41\\x71\\xec\\xf2\\x8a\\x6f\\x3c\\x34\\x77\\xd9\\xf0\\xf0\\xb2\\xb9\\x0f\\x7d\\x63\\xc5\\x65\\xe0\\xfd\\xe7\\xb0\\x33\\xa4\\x1d\\x67\\x85\\xb7\\x51\\x1a\\x2a\\x40\\xfb\\xdc\\x21\\x69\\x00\\xbc\\x23\\x25\\x0a\\x23\\x81\\xae\\x16\\x59\\xbb\\x04\\x9e\\x9e\\xcc\\x46\\x64\\x53\\x64\\xf6\\xb8\\xae\\x9b\\x25\\xeb\\x0a\\xd3\\x0b\\x65\\xde\\x51\\xe8\\xb3\\x6f\\xc2\\x08\\x2d\\xf3\\x5c\\x69\\x49\\x5a\\xab\\x40\\x75\\x64\\x85\\x72\\x62\\x09\\xe4\\xb2\\xc5\\xa1\\x23\\xb8\\xa5\\xc9\\x06\\x18\\x35\\x0d\\x94\\x66\\x23\\xea\\x57\\x49\\xcf\\x56\\x34\\x96\\x8c\\x5c\\x9c\\x3b\\xfc\\xe8\\x68\\xd9\\x4d\\x73\\xe5\\xdc\\x92\\xb5\\xdb\\x97\\x3f\\xbb\\xad\\x3a\\xbb\\x7b\\x63\\x7d\\xf3\\xd6\\xce\\x74\\x53\\x65\\x82\\x8f\\x1c\\x74\\x46\\x6a\\xea\\x9b\\x2a\\x5a\\xf1\\xea\\x48\\xd5\\xa5\\x65\\x4f\\xae\\x29\\x2a\\x5b\\xf7\\xf8\\x02\\x68\\xc2\\xe2\\xb5\\xaa\\x15\\x8d\\x36\\x38\\x79\\xea\\xd1\\xb0\\xde\\x7d\\x4f\\xcf\\x0b\\x6d\\x25\\xe0\\x27\\xc7\\xc0\\xfe\\x6e\\xf1\\x22\\x17\\xac\\x82\\xb6\\xd2\\x55\\xb3\\xca\\xc3\\xa0\\x73\\xd9\\xe2\\x9e\\x79\\x7e\\x7b\\xe6\\x23\\x24\\xae\\xd0\\x8c\\xb6\\xbb\\x43\\xa3\\x54\\x18\\x90\\x29\\x32\\x3c\\x34\\xc0\\xdf\\x5d\\x81\\x32\\x9b\\x0f\\x55\\x79\\xfc\\x86\\x60\\x1b\\x96\\x35\\xc4\\x49\\xdf\\x64\\x4e\\x7c\\x13\\xf2\\x29\\xd7\\xdc\\xad\\x38\\xd5\\x8e\\xcc\\xc4\\xc9\\x27\\x6d\\x5b\\x52\\x0e\\x1b\\x25\\x3b\\x45\\xb0\\x93\\x37\\x55\\x3e\\xc6\\x55\\x25\\x0d\\x39\\x85\\xe7\\x47\\xe7\\x95\\x56\\x27\\xc7\\x3a\\x63\\x74\\x21\\x06\\x53\\x61\\xb8\\xf8\\x9d\\x1b\\xe2\\xb7\\xc3\\x0b\\x4d\\x71\\x21\\xfa\\x18\\x67\\x9c\\xb5\\xba\\x34\\x3f\\xfa\\xd9\\xc8\\x48\\xfe\\xa3\\xd2\\x6e\\x97\\x5e\\xa9\\x3e\\x19\\x60\\x49\\xf6\\x6d\\xf2\\xbd\\x88\\xdd\\xf8\\x5e\\xab\\x35\\xe0\\xa4\\x5a\\xa9\\x27\\x0b\\x5a\\x5c\\xd4\\xdd\\x8d\\x30\\xc5\\xee\\x30\\x1b\\x40\\x34\\xca\\xa1\\x18\\xd2\\x19\\xa0\\xa0\\xa7\\x56\\x25\\x52\\x20\\xa5\\x62\\x44\\xe0\\xf0\\xb8\\x58\\xa5\\xa9\\x7d\\xc7\\x8d\\x41\\x64\\xb6\\x47\\xa8\\xf5\\x66\\x6b\\x58\\x80\\x32\\x8e\\x6c\\xf8\\x3a\\xdd\\xd4\\xc9\\xed\\xca\\x25\\xfb\\x3d\\x47\\x94\\x22\\xe2\\x86\\x93\\x17\\x84\\xd3\\xe1\\x0f\\x86\\xe1\\x4f\\x6d\\x4d\\x48\\x89\\x2b\\x5b\\xd2\\x44\\x26\\x79\\xc2\\x86\\xde\\xa6\\x25\\x65\\x71\\x36\\xe3\\x22\\x7e\\xe1\\x9f\\x70\\x86\\x45\\x0c\\xb6\\x64\\xe0\\xc0\\x48\\xab\\xa1\\xa2\\xfe\\x66\\x7d\\x45\\x9c\\x35\\x32\\x90\\x7b\\x70\\xf1\\xad\\x83\\x3d\\x0f\\x6f\\xf1\\x2c\\x5b\\x30\\xbc\\xdc\\xb3\\xe5\\xe1\\x9e\\x83\\xb7\\x16\\x9f\\xf5\\x8d\\x6e\\xf6\\x6d\\xd8\\xe0\\xdb\\x5c\\xb8\\x6c\\x66\\xf6\\xa3\\x57\\x6f\\xdd\\xba\\xfa\\x68\\x56\\xdb\\x72\\xba\\x7e\\x53\\x48\\x5e\\xa8\\xcd\\xcc\\x36\\xf9\\x4d\\x69\\xd8\\xe2\\xe5\\xc0\\x02\\xea\\x8f\\x56\\xf6\\x20\\xa5\\x52\\x27\\x81\\x26\\x04\\xc0\\x58\\x2f\\x8f\\xe1\\x67\\x17\\x33\\xc8\\x03\\xfa\\xdf\\xdc\\x2d\\xf5\\xbf\\xb9\\x9b\\xdb\\x74\\xb7\\x12\\x82\\xa0\\x1f\\x07\\x74\\x18\\xd8\\xac\\x20\\xd1\\x0f\\x44\\xb5\\xaa\\x56\\xeb\\xca\\xc2\\x54\\x0a\\x1a\\x31\\x2b\\x83\\x8a\\x89\\x93\\x84\\x45\\xa7\\xc9\\x34\\x61\\x6c\\x3f\\x2b\\x16\\x91\\xa1\\x38\\x7e\\xe9\\x13\\x6b\\x8a\\xde\\x7b\\x15\\x17\\xb4\\x66\\xe9\\x60\\xc7\\xbd\\x09\\x45\\x86\\x1b\\xe2\\x65\\x5e\\x23\\x44\\x8a\\xf9\\x98\\x77\\xaf\\xbd\\xb2\\xf8\\xed\\x6f\\xdc\\x47\\x02\\xf4\\x8b\\x0e\\x5c\\xe0\\xb1\\xaf\\x55\\x88\\x94\\xec\\xe5\\x3b\\xc8\\x3c\\x58\\x42\\xce\\x9f\\x19\\xa8\\xcc\\x5d\\x42\\x0f\\x95\\x1c\\xa6\\x3c\\x26\\x04\\x9b\\x26\\x90\\x89\\x80\\x78\\x24\\x28\\xf9\\x89\\x0c\\x29\\x71\\xe3\\x84\\xa3\\x06\\x76\\xbc\\xcf\\x40\\x19\\x49\\x6a\\xe2\\xa5\\xb6\\x99\\x03\\x14\\x44\\x03\\x94\\xf7\\xd8\\xa9\\x54\\xfa\\x5a\\xe3\\xa4\\xc0\\x03\\x7e\\x49\\x60\\xed\\x96\\x6b\\xab\\x46\\x5f\\xd8\\x55\\x5d\\xbd\\xeb\\x85\\xd1\\x55\\xd7\\xb6\\xd4\\x06\\x7a\\x03\\x53\\xeb\\x97\\x79\\x9a\\xd7\\xb5\\xda\\x70\\xa1\\xef\\x2d\\x5b\\xeb\\xba\\x66\\xcf\\x32\\x8f\\x3d\\x10\\x9e\\x9f\\xff\\xc4\\xc6\\x8a\\xae\\x07\\xbe\\xbb\\x0b\\xf2\\x77\\x7d\\xef\\xfe\\xae\\xd2\\xf5\\x5f\\x58\\xee\\x59\\xdb\\x92\\x52\\x31\\xfa\\xe0\\x1c\\xcf\\x99\\xee\\xfe\\x07\\xd7\\x56\\x50\\x94\\x0a\\x95\\x7b\\x06\\x84\\x78\\x9a\\x7d\\x23\\x16\\xd9\\x28\\x8e\\x1b\\xa1\\x00\\x50\\xf2\\x34\\xbe\\x15\\x63\\xa1\\x47\\x05\\x82\\xa0\\x63\\xe9\\x78\\xa1\\x8f\\x2e\\x42\\x3d\\x34\\xc4\\xc5\\x21\\x14\\x67\\x8b\\x4b\\x4e\\x30\\x90\\x4b\\x62\\x8d\\x49\\x24\\x2a\\x26\\x50\\x41\\x43\\x22\\x1d\\x93\\xa2\\x62\\xb8\\x08\\x4c\\x26\\x36\\x81\\x3f\\x65\\x87\\x6b\\x34\\xa0\\x1e\\xb7\\xd5\\xe1\\xdf\\xf7\\xb5\\xef\\xe8\\x4c\\x4d\\xed\\xdc\\xd1\\x2e\\xfe\\xe1\\x2d\\x88\\xaf\\x5e\\xd3\\x91\\xa0\\xab\\xcd\\x05\\x0e\\xe7\\xf4\\xa5\\x16\\x13\\xd8\\xb1\\xa5\\xd8\\x4e\\xd2\\x75\\xbc\\x53\\xb5\\xee\\xa1\\x39\\x73\\x1e\\x5a\\x57\\x29\\x44\\xfa\\xfe\\x70\\x43\\xfc\\xe9\\xdb\\x0b\\x4e\\x43\\x21\\x64\\xe3\\xa7\\x7c\\x19\\xbe\\x1b\\x8e\\x99\\x24\\xdd\\xdd\\xc2\\xb6\\x6c\\x52\\xf7\\x5d\\xa4\\xee\\x07\\xfc\\xf9\\x96\\xfa\\xfd\\x9c\\x04\\x18\\x68\\x6e\\x2c\\x5e\\x89\\xe8\\x4c\\x01\\xd0\\x51\\x54\\x20\\x37\\x8b\\x3a\\xd4\\xf4\\x1c\\x9b\\x46\\x38\\x00\\x54\\x3c\\x56\\xd1\\x83\\x17\\x2d\\x35\\x38\\xbd\\x14\\x31\\xdc\\xea\\xf5\\x34\\x1b\\x53\\xa2\\x5a\\x4d\\x9a\\xa7\\x0e\\x0b\\xa4\\x33\\x89\\x82\\xbd\\xc7\\xdb\\x68\\x52\\xd3\\xff\\x1c\\x93\\x9a\\x06\\x85\\x9f\\xdc\\xc8\\xea\\xbb\\xb7\\x2f\\x3d\\x9d\\xfc\\xf3\\xdb\\x4f\\x6e\\xdc\\x80\\x67\\xb2\\x1c\\x55\\xf6\\x70\\x4d\\x4a\\x95\\x83\\xcb\\xc7\\xeb\\x7c\\xa7\\x4b\\x56\\x9c\\xe9\\xed\\x3d\\xbf\\xaa\\x4c\\xca\\x23\\x33\\x76\\xdb\\xf7\\xb7\\xb4\\xfa\\x7e\\x87\\x63\\x4e\\x2d\\xcb\\xdf\\x53\\x41\\xaa\\xb3\\x90\\xe2\\x5b\\x69\\x84\\x06\\x06\\x0e\\x22\\x18\\x42\\x44\\x66\\xb1\\x10\\xc0\\x7f\\x9a\\xd0\\x79\\x78\\x69\\xe5\\x10\\x24\\x23\\x41\\xcc\\x84\\x29\\x15\\x31\\xd2\\x2c\\xd7\\x4f\\x26\\x89\\x94\\x27\\xb8\\x5b\\xd4\\xc5\\xba\\xa2\\x87\\x1e\\x58\\x5a\\xe0\\x8d\\x2d\\xec\\x29\\xce\\xcb\\xf1\\x8a\\x8f\\x72\\x3e\\x32\\xb5\\x8b\\x78\\x1e\\xd2\\xe7\\x9e\\x59\\x2c\\xe6\\xc2\\x97\\x2b\\xfb\\x8b\\x62\\x14\\xbe\\x0a\\x3a\\xb3\\x01\\x3d\\x24\\x9e\\xe5\\x53\\xe4\\xbc\\x36\\x88\\xe7\\x78\\x86\\xcc\\xd0\\x31\\xab\\x5b\\xaf\\xd4\\x41\\xb2\\x77\\x49\\x41\\x82\\x13\\x18\\x00\\x5e\\xf2\\x09\\x3d\\xe4\\xc5\\x3a\\xaf\\xf8\\x80\\x57\\x3c\\x41\\xbc\\x56\\xbf\\x16\\xa2\\x3e\\x69\\x11\\xcf\\xc2\\x02\\x84\\x30\\xf3\\x2d\\x35\\x48\\x31\\x57\\xf4\\x4c\\x82\\x80\\xe6\\x8f\\x02\\x61\\x08\\xf9\\x33\\x32\\xe8\\x64\\x64\\x93\\xd4\\x2e\\x1a\\x72\\x95\\x48\\x3a\\x9e\\xb4\\x8d\\x6a\\xa2\\x93\\xe3\\xad\\x8c\\x30\\x11\\x6e\\xc5\\xc7\\xf9\\x4a\\x21\\x70\\xcd\\x75\\xaa\\x25\\x5f\\x5f\\x23\\x16\\x71\\x9b\\xe8\\xfb\\xa6\\x95\\xf5\\x26\\x53\\xfd\\xca\\x26\\xd2\\xc6\\xb2\\xa2\\x15\\xf7\\x0f\\x0e\\x5c\\x5a\\x55\\x4a\\xa6\\x54\\xb8\\xef\\xc3\\x74\\x92\\x03\\x3b\\x6f\\xa8\\xce\\x2e\\xed\\xf7\\xd5\\xa4\\x9d\\xeb\\x59\\x9d\\xf4\\x54\\x33\\xa6\\x3e\\x03\\xd4\\x4a\\x66\\x01\\x93\\xde\\x3a\\x0f\\xc3\\x5e\\x31\\x4f\\x95\\x9e\\x79\\xaa\\x74\\xb4\\xc5\\x4c\\xa2\\x30\\x0f\\x18\\x47\\xb3\\x41\\x69\\x48\\xd3\\xa9\\xfe\\x42\\xaa\\xc5\\x0f\\x3f\\xe6\\x2b\\x7d\\x20\\xa6\\x2c\\xbd\\x3a\\xdb\\x20\\x24\\xe0\\x7b\\xb7\\xf9\\x8e\\x07\\x94\\xbb\\xe1\\x55\\xf1\\xa7\\xe2\\x79\\x98\\x4f\\xfa\\x41\\x34\\xac\\xbc\\xfa\\xb7\\x4b\\xb8\\xee\\x93\\x5f\\xe3\\xaf\\xff\\x4d\\x3c\\xbe\\x92\\xdf\\x81\\x00\\xc5\\xb1\\xd8\\xcc\\x6b\\x48\\x4b\\xc7\\x5c\\xa3\\xc2\\x48\\x80\\x7a\\x25\\x08\\x18\\x58\\x62\\x28\\x95\\x02\\xd3\\x9a\\x04\\x70\\x98\\x55\\x42\\x1b\\x21\\x93\\xe7\\x90\\xf9\\x48\\x37\\x11\\x3a\\x05\\x39\\x13\\x70\\x0e\\x0d\\x9d\\x9a\\xe4\\x5f\\x0e\\x4c\\xf8\\x96\\xeb\\xf9\\x92\\xf7\\x7f\\x05\\xc1\\xbf\\xfa\\xe8\\xe9\\xaa\\xe7\\x4b\\xbe\\xf0\\x9d\\xdf\\x40\\xc8\\x2f\\xf1\\x01\\xdf\\x28\\xfb\\xfd\\x08\\x7f\\xd7\\xb7\\x1a\\x1f\\x62\\xbf\\x36\\x9f\\xd5\\x7f\\xe6\\xfd\\x3d\\x3f\\x42\\xce\\xf7\\x05\\xd4\\x06\\x1b\\x73\\xd7\\x1c\\xb2\\x2a\\x98\\x92\\x44\\x36\\x6e\\x3c\\x89\\xac\\x81\\x6f\\x90\\x0c\\xf9\\xb6\\x64\\x12\\xfb\\x1e\\xce\\x6c\\xb0\\x05\\x50\\x10\\xa0\\x88\\xa0\\xe4\\xc1\\xd3\\x93\\xdf\\x32\\x74\\xdd\\xa7\\xa4\\x92\\x75\\xe2\\x05\\x17\\xcf\\xd9\\xda\\x36\\xb6\\x95\\x8e\\xb4\\x65\\x79\\x9b\\xf7\\x3d\\x33\\xb4\\xfa\\xa5\\x7d\\xf5\\xb0\\x6d\\xf9\\x96\\x7d\\xad\\x47\\xde\\x5c\\xdd\\xff\\xfc\\xd1\\xde\\x9b\\x99\\x9d\\xeb\\x6b\\x5b\\x77\\xf4\\x65\\xa6\\x75\\x6e\\x69\\x7e\\x9e\\xcb\\x86\\x7d\\x23\\xb9\\x73\\xaa\\x93\\x93\\x2a\\x66\\xb9\\x66\\x9f\\x5c\\x90\\x97\\xb3\\xf0\\xfe\\xe1\\x05\\x8f\\x64\\xa6\\x3c\\xb9\\x63\\xc1\\xc5\\x65\\x79\\x59\\x0b\\x1f\\x5c\\x91\\x3f\\xaf\\xde\\x9e\\x4c\\x92\\xa3\\x54\\x0d\\x95\\xc5\\x4f\\xf2\\x73\\xca\\x39\\x7f\\x02\\x78\\x2c\\x53\\xe6\\xe9\\x18\\x65\\x9e\\xde\\x4f\\x20\\xa7\\xf0\\x93\\x75\\x51\\x5e\\x35\\x8e\\x5b\\xe9\\xf5\\x82\\xef\\xb7\\xe4\\x1f\\xea\\x8e\\xe5\\xb3\\x6e\\x7d\\x40\\x40\\xe0\\x5f\\x47\\x80\\x32\\x58\\x6e\\xe0\\x6b\\x48\\x8d\\xac\\x8c\\x56\\x9a\\xef\\x11\\x80\\x0e\\xd9\\x78\\xa4\\x9e\\x9e\\x09\\x7b\\x35\\x52\\x1b\\x89\\x6c\\x53\\xd0\\x9b\\xd2\\x85\\xc2\\xd1\\xf6\\x33\\xe1\\xa8\\xd6\\xf0\\x76\\xaf\\xd8\\x87\\x2d\\x1d\\xfb\\xe7\\x39\\x92\\x87\\x3b\\x78\\xfa\\x00\\x22\\xf4\\x8e\\x3e\\xe4\\x7b\\xba\\xef\\x34\\x04\\xd3\\xc3\\x3b\\x02\\x64\\x27\\x63\\x74\\x9d\\xca\\x06\\xfa\\x9c\\x48\\x4a\\xd4\\x8d\\xa8\\x65\\x0e\\xfb\\x2b\\x8e\\xfc\\x5c\\x7c\\x06\\x68\\xd0\\x59\\x93\\xc2\\x49\\xe5\\x65\\x2a\\x3e\\x19\\xb6\\x26\\x13\\xf1\\x65\\xd4\\xc0\\xc2\\x8f\\x7c\\xbf\\xd5\\x17\\xb6\\xaf\\x9b\\x59\\xb9\\x28\\x3a\\x32\\x38\\xc9\\x6e\\xd7\\xa4\\x57\\xe7\\x98\\x83\\x53\\xc4\\x90\\xaf\\xe3\\x7f\\xbf\\xc2\\xad\\xbf\\xe5\\xce\\xe9\\xaf\\x4d\\x89\\x0c\\x3a\\xc4\\x11\\x22\\x11\\x8a\\xbc\\xe8\\xe0\\x4b\\x68\\xbf\\x3d\\x2a\\x3e\\xc8\\x3f\\x37\\x21\\x17\\x80\\x6f\\x93\\xe4\\x02\\xdd\\x16\\x84\\x5e\\xba\\x13\\x0b\\xd3\\xe5\\x82\\x83\\x23\\xcd\\x7d\\xd4\\x8b\\x03\\xbc\\xc7\\xc3\\x1f\\x1d\\x7b\\xd2\\x2f\\x17\\xfe\\x20\\x0a\\xd0\\x4f\\xef\\x79\\x05\\x21\\xde\\x4a\\xfd\\xb8\\x54\\x2a\\x44\\x92\\x66\\x71\\x12\\xff\\x38\\x47\\xa5\\x1e\\x0c\\x09\\x94\\xd2\\x97\\x34\\x4f\\xee\\x47\\x29\\xd1\\xca\\x78\\x3f\\x86\\x70\\x53\\x01\\x82\\xbc\\xd5\\x6b\\x2c\\xaf\\x69\\xcd\\x1c\\x3c\\xb3\\x30\\xd7\\x1b\\x93\\xdb\\x9e\\x3f\\xf3\\x68\\x2d\\xed\\x51\\xdc\\x37\\x23\\x3c\\x44\\x99\\xb5\\xf4\\xc9\\x0d\\xf0\\xae\\x98\\xd7\\xb1\\xb2\\x2a\\x2e\\x2e\\x12\\xbf\\x20\\xd9\\x7c\\xb6\\x90\\x3a\\xb4\\xd0\\x76\\x51\\x7b\\xbc\\x42\\xe0\\x38\\x00\\x9d\\x74\\x64\\xe9\\x45\\x3c\\xaf\\x67\\x27\\x96\\x20\\x14\\xc4\\x9a\\xa6\\x94\\x36\\x3a\\xf6\\x1f\\x6d\\x20\\xb8\\x3e\\xbc\\xf1\\xe1\\x8d\\xb1\\x34\\x7f\\xbb\\xe8\\x2f\\xbd\\x95\\x74\\x5f\\xd2\\x5f\\x4f\\xd2\\xb9\\xc1\\x98\\xaf\\x05\\x24\\xb4\\xa9\\x94\\xd2\\xcd\\x79\\x4c\\x2d\\x43\\xbd\\x64\\x09\\xe9\\x15\\xfe\\xe9\\x41\\x7f\\xb2\\xd4\\x6a\\xa2\\x0b\\xc8\\xf7\\x77\\x3a\\xe4\\xee\\x63\\x4f\\x39\\xe9\\xbe\\xd1\\x1b\\x7e\\x79\\x6c\\xbf\\xfc\\x24\\xa0\\x8e\\x77\\x31\\x00\\xfa\\xc9\\x13\\x30\\xca\\x66\\xf9\\x52\\xa6\\xcb\\x57\\xd9\\x80\\xfc\\x59\\xf2\\x95\\x0a\\xb1\\x3b\\xe4\\xeb\\xf8\\x82\\xcc\\x86\\xdf\\x1d\\x5d\\xf1\\xd4\\x68\\x71\\xf1\\xe8\\x53\\x2b\\xc4\\xe7\\xc5\\x0f\\xc8\\xdb\\xba\\x85\\x15\\xf1\\xf1\\x15\\x0b\\xeb\\x88\\x40\\x7d\\x82\\x72\\xbb\\xf7\\x5f\\x5c\\xed\\x26\\xd3\\xf5\\x49\\xdf\\x87\\x19\\x4d\\x0b\\xf2\\x72\\x87\\xea\\xed\\xcc\\x3f\\x7f\\xd4\\x1f\\x9f\\x12\\xc2\\xb2\\x1d\\xd1\\xf6\\x23\\x25\\x28\\x04\\xa4\\x18\\xa2\\x7b\\x17\\xd3\\xdb\\x60\\x96\\x5f\\x9f\\xd0\\x68\\x34\\xf1\\x1a\\x03\\xdb\\x69\\x13\\x54\\x64\\xe6\\xc0\\xa4\\xda\\x38\\x60\\xca\\x1e\\x5b\\x37\\xab\\xff\\xbe\\xa1\\xec\\xec\\xa1\\xfb\\xfa\\x49\\x7c\\x2d\\x87\\xbd\\xde\\x31\\x71\\x56\\x6e\\x53\\xa6\\x4e\\x97\\xd5\\x98\\xcb\\xf5\\x14\\xaf\\x78\\xa0\\x9f\\xd6\\x88\\x0e\\xb9\\x24\\xf2\\x33\\x9a\\x87\\xf3\\x72\\xe7\\xd6\\xa7\\xfa\\xe3\\x7e\\x5b\\xfd\\xf9\\xad\\x28\\x7a\\x02\\x09\\xc0\\x73\\x88\\xa7\\x7a\\x0e\\x5b\\xb0\\x30\\x4b\\x92\\xf5\\xa1\\xa1\\xa1\\x31\\xa1\\xd1\\x89\\xa4\\x36\\x6c\\x9e\\x19\\x27\\xd5\\x46\\x3d\\x39\\xd4\\x77\\xd2\\xce\\x53\\xec\\x9d\\xd8\\x76\\xb8\\x9e\\x4f\\xdd\\x74\\x00\\xad\\x22\\x3a\\xe3\\x4c\\x59\\x67\\x94\\xe3\\x59\\x89\\xce\\x08\\x08\\x94\\x88\\xb9\\xbc\\x94\\x18\\xa8\\xce\\xc8\\x18\\xf0\\xe2\\xe8\\xcc\\x67\\x69\\x3c\\x0d\\x0a\\xbf\\xce\\x68\\xa3\\x04\\x78\\x5a\\x49\\x67\\x94\\x09\\xe8\\xc9\\x36\\x3f\\x4e\\x43\\x35\\x9e\\xf6\\x43\\x0e\\xf1\\x05\\x3b\\x58\\xeb\\x97\\xd5\\x34\\x6d\\x6c\\x4f\\x13\\x63\\xe1\\x17\\xa9\\xed\\x1b\\x9b\\x6b\\x96\\xd5\\x5b\\xc1\\x0b\\x15\\x5b\\xae\\x2d\\x1f\\x7d\\x79\\x6f\\x5d\\xdd\\xde\\x97\\x47\\x97\\x5f\\xdb\\x52\\x01\\xf0\\x8d\\x86\\x4d\\x5d\\x99\\xee\\x55\\x17\\xe6\\xf4\\x9e\\x9e\\x3d\\xe7\\xe2\\x2a\\x77\\x66\\xd7\\x96\\x86\\xf9\\xcf\\xec\\x6e\\x68\\x3f\\xfb\\xd1\\x2e\\xf1\\xb9\\x5d\\xdf\\x3e\\xdb\\x5e\\xb5\\xed\\xd9\\xe5\\x32\\xd6\\x7a\\x31\\xcb\\x75\\x96\\x45\\xf5\\xae\\x28\\xa6\\xc0\\xf3\\xa4\\xf6\\x3c\\x0c\\x32\\x67\\x38\\xd5\\x13\\x98\\x4e\\x25\\x89\\x41\\x03\\x3d\\xf8\\x5a\\xc7\\x4b\\xd0\\xef\\x48\\x31\\xb9\\x91\\x64\\x56\\xd2\\xa2\\xb2\\x76\\x4c\\x34\\x78\\x9b\\x95\\x88\\x4b\\xd2\\x4e\\xb6\\xdf\\x8e\\x1b\\xcc\\x98\\xc6\\xa5\\x76\\x8c\\x1f\\x7d\\xad\\xfe\\xd4\\xaf\\xe3\\x46\\x23\\x7e\\x71\\xfa\\xac\\x7b\\x7b\\x3b\\x77\\x76\\xa5\\xae\\xf2\\x7a\\x57\\xd9\\xbb\\x76\\x76\\xf6\\xdd\\x3b\\x2b\\xdd\\xdb\\x3a\\x2f\\xad\\xc4\\x12\\x16\\x66\\x29\\x49\\xcf\\xae\\x4a\\xd1\\x60\\x6e\\xdb\\x3b\\xf7\\xd6\\xd6\\xde\\xfb\\xce\\xb6\\x8d\\xbe\\x5d\\x64\\x8c\\xe6\\x9d\\xd9\\xf6\\xce\\xfe\\xda\\xda\\xfd\\xef\\x6c\\xc3\\x2f\\xbe\\x98\\x31\\xe7\\xd0\\x1c\\xb1\\xa3\\xff\\xf0\\x9c\\x8c\\x8c\\x39\\x87\\xfb\\x99\\x9e\\x50\\x86\\x10\\x6f\\x61\\x7c\\x00\\xb1\\x14\\x99\\x2d\\xdc\\x35\\x6f\\x17\\xd1\\x17\\xfc\\xbb\\x34\\x91\\x52\\x7a\\x5d\\x04\\x29\\x1d\\x9a\\x4c\\xe5\\x85\\xde\\x4e\\xd7\\x94\\x09\\xfc\\x9e\\x47\\xb2\\x98\\x99\\x41\\x5c\\x4d\\x2b\\xce\\x2d\\x13\\xdf\\x13\\x3f\\x78\\x0b\\x3a\\x0e\\x9e\\xa8\\xd9\\xf3\\xd2\\x28\\x3c\\xe3\\x0b\\xb0\\xb5\\xac\\x6f\\xba\\xfd\\x71\\xcb\\x86\\xb6\\x14\\xdc\\xef\\x7b\\x10\\x1f\\x73\\xbc\\x78\\x60\\xde\\x03\\x4b\\xf2\\xc8\\xa6\\x13\\x52\\x38\\xec\\x49\\xc1\\x09\\x49\\x55\\x64\\xc2\\xb2\\xb3\\x47\\x8d\\x42\\x8d\\xd2\\x51\\x25\\xca\\x73\\x3b\\x53\\x64\\x76\\x4f\\xbc\\x8a\\x54\\x4f\\x4a\\xa5\\x2b\\xe7\\x6d\\xa3\\x9b\\x42\\x66\\x06\\xf5\\x93\\x66\\x54\\x66\\x56\\x1a\\xe2\\x08\\x88\\x38\\x1d\\xd2\\x95\\x74\\x7f\\x9e\\xcc\\x87\\x51\\xcc\\xe5\\x84\\x13\\x4b\\x02\\x03\\x91\\x87\\xf0\\x34\\xeb\\x68\\x09\\xa7\\x67\\x27\\x90\\xc9\\x06\\x4a\\xbc\\x77\\xf1\\xa3\\x6b\\x8a\\xa9\\x4d\\x72\\xd5\\x73\\x9b\\xcb\\xab\\xb6\\x5d\\x5f\\xe1\\xec\\xab\\xb0\\x9c\\x89\\x73\\x54\\xb5\\x74\\xa7\\x56\\x6f\\x1c\\x28\\x0f\\x4d\\x68\\xea\\x1d\\xd6\\x52\\x03\\x25\\x33\\x54\\xae\\xa8\\x27\\xd1\\xef\\x2b\\xb9\\x31\\x0f\\x89\\xff\\xd5\\xaf\\x7c\\xf5\\x70\\x4b\\xcb\\xe1\\x57\\x57\\xea\\x95\\x55\\xd7\\x41\\xf3\\xda\\x6a\\x6d\\xa0\\xde\\xe4\\xb4\\x95\\xcf\\x29\\xb3\\xc5\\x86\\x07\\x86\\x3a\\x7b\\x77\\xcd\\x22\\xde\\xd2\\xa8\\x33\\xb9\\xb3\\x37\\x56\\xea\\x1b\\xee\\xa5\\xee\\xe2\\x7b\\x1b\\xf4\\x95\\x1b\\x67\\xe7\\x4a\\xf8\\xa7\\x47\\x28\\x3e\\x8d\\x2f\\x40\\x11\\x64\\xd6\\x59\\x68\\x4c\\x6d\\xe0\\xdd\\x73\\xab\\x46\\xca\\xb9\\x55\\x25\\xa5\\x49\\x8b\\x90\\xc5\\x9c\\x60\\xd0\\xc6\\x69\\x63\\x23\\x75\\xe4\\x62\\x8d\\x51\\xa5\\x60\\x79\\x3d\\xd9\\xba\\x1e\\x4f\\xe1\\x0d\\xe4\\x03\\x06\\xb4\\x4c\\x72\\x48\\x7f\\x4d\\x8f\\xc0\\x13\\xf3\\x1e\\x19\\x2d\\xed\\xed\\xcc\\x69\\xc9\\x8d\\x2d\\x58\\x7a\\xb6\\x5f\\xfc\\x2a\\xe4\\x8c\\xac\\x19\\x5d\\x21\\x7e\\xf5\\xaf\\x9b\\xf7\\xec\\xdb\\xfc\\x67\\xbe\\xc0\\x5c\\x3b\\xd2\\xd8\\xb8\\x36\\x61\\x46\\x56\\x79\\x4b\\x2a\\x39\\x4d\\x59\\xe0\\xfb\\xe2\\xcd\\xf6\\x96\\xa6\\xf6\\x13\\xf5\\x4d\\xad\\xcc\\xf6\\xfa\\x3c\\xd5\\x35\\xf8\\x82\\x3b\\x31\\x75\\xa4\\x82\\xac\\x6a\\x14\\x0f\\xa7\\x18\\xc7\\xd4\\xa5\\xf8\\x6a\\x6e\\x72\\xab\\xb9\\x07\\xc7\\xfa\\xfd\\x31\\x58\\x2e\\xf1\\x75\\xfe\\x1c\\x79\\x1d\\x86\\xa2\\xe8\\xbc\\xe3\\x01\\x03\\x6e\\x95\\x23\\x9c\\x22\\x3d\\x0a\\x95\\xc0\\xf9\\x41\\x5a\\x7a\\x8e\\xce\\xba\\x48\\xbd\\x8e\\x91\\x14\\x90\\x1f\\x5d\\x00\\x91\\xeb\\xb9\\x7e\\x05\\x95\\x93\\xf4\\x55\\x08\\xe1\\xa8\\x9e\\x7a\\xbf\\xbd\\xd0\\xa2\\x57\\x86\\x61\\xef\\x81\\xf0\\xc7\\x7c\\xc1\\x8f\\x86\\xc3\\x97\\x85\\x50\\x9d\\x31\\x12\\x6e\\x8a\\xcf\\x9c\\x56\\x34\\xdf\\xf3\\xe2\\x1a\\x38\\x35\\x36\\x5b\\xb4\\x43\\x89\\xf8\\x3a\\x7c\\x88\\x83\\xdb\\xcf\\xec\\x19\\x49\\xc5\\xff\\xa1\\x6d\\x51\\x93\\xb6\\x3c\\xc5\\x17\\x7c\\x96\\xae\\x1a\\xf9\\xb9\\xba\\x2a\\x8c\\xeb\\xaa\\x00\\x04\\x51\\x5b\\xe0\\x2d\\xfc\\xe8\\xc7\\x60\\x13\\x3f\\xf9\\xf6\\x4b\\x85\\xde\\xc2\\x97\\xbf\\x2d\\xfe\\x07\\x52\\x7e\\x02\\xdf\\x16\\x53\\xe8\\x2f\\x76\\x60\\xa5\\x48\\x54\\x68\\xfa\\xeb\\xfb\\xd8\\x47\\xf3\\x4a\\xee\\x23\\xfe\\x99\\x7a\\x86\\x17\\xf8\\xef\\x75\\xd5\\xf8\\xc9\\xba\\xaa\\x8c\\x17\\x90\\x75\\x55\\x86\\x17\\x60\\x6b\\xc1\\x35\\x2d\\x75\\xd2\\x64\\x06\\x47\\x7e\\x9a\\xaa\\xba\\x79\\xfb\\x76\\x53\\xc5\\xbc\\xb2\\x82\\x85\\xcd\\x19\\x5e\\x68\\xdc\\x71\\xa5\\x7f\\xde\\xa3\\xeb\\xcb\\x17\\xf7\\x2d\\x58\\x5d\\xb7\\xfd\\xa9\\x79\\x45\\xeb\\x96\\x12\\xf2\\x2f\\x6f\\x7a\\xdb\\x48\\x99\\x7b\\xb1\\xc7\\x66\\xa9\\x1d\\x2e\\xfd\\x2b\\x5e\\xdb\\xea\\x49\\x2c\\xa2\\x70\\x80\\xd2\\x24\\xcf\\xba\\x99\\xa9\\xc9\\xcd\\xa3\\x4d\\x9e\\x0d\\xa6\\xf8\\xad\\xfd\\x4d\\xeb\\x67\\xa6\\xa8\\xcd\\xb9\\x9e\\xc1\\x42\\x6b\\x95\\x33\\x9e\\x70\\x24\\x24\\xa5\\x97\\xd9\\xc2\\xef\\x47\\x80\\x2e\\x53\\xfd\\x88\\x2f\\x98\\xa6\\xab\\x46\\xde\\x4d\\x57\\x55\\x03\\x15\\x8f\\xdc\\x72\\xaf\\xd7\\xf7\\xe7\\x1b\\x37\\x08\\xd4\\xe4\\x6d\\xce\\x30\\xf6\\x33\\x62\\xcd\\xfd\\x29\\xdb\\x7b\\xe8\\xfa\\x39\\x49\\x63\\x51\\xa9\\x0e\\x19\\x08\\x34\\x98\\x53\\xce\\x5a\\xc6\\x03\\x9d\\x95\\x82\\x74\\xcb\\xf0\\x71\\x1d\\x0e\\xfc\\x02\\x57\\x8a\\x49\\x0d\\xbe\\xe6\\xf5\\x5e\\x82\\xe3\\x3f\\x15\\x33\\xe1\\x1f\\xbf\\x87\\xf7\\x45\\x07\\x5f\\x20\\xba\\xe0\\x3d\\xdf\\xbf\\x7d\\x1f\\xb0\\xfb\\xe7\\x52\\x39\\x49\\xee\\xaf\\xb9\\x43\\x17\\x8e\\x9c\\xaa\\x0b\\x6b\\x90\\xe6\\x2e\\xba\\x70\\x2e\\x63\\xeb\\xd5\\xf0\\x96\\x9b\\xe2\\x2a\\x30\\xb7\\x1f\\x5e\\xec\\xe2\\x6c\\xf9\\x1e\\xbb\\x1a\\xb3\\x66\\x3c\\x28\\xbe\\x77\\xe2\\x57\\x17\\x66\\x5e\\x86\\xfc\\x95\\x4f\\xae\\x04\\xfa\\x38\\x04\\xe8\\x5e\\x96\\x6f\\xa1\\x40\\xca\\x6f\\xa7\\xf2\\xe7\\xb7\\x63\\x7d\\xc3\\x61\\xec\\xef\\x1c\\xd2\\x16\\x81\\x2c\\x85\\x24\\x0d\\xed\\x1e\\xce\\xc4\\xd1\\xf6\\xe0\\x59\\xbf\\xfa\\xb5\\xf7\\x5b\\xdb\\xbf\\xe7\\xfd\\xf3\\x3f\\xb9\\x2a\\xc2\\xa6\\x7d\\xde\\x37\\x1f\\x3f\\xeb\\x6b\\xe4\\x0b\\x26\\xfa\\x7b\\x7a\\x8e\\x58\\xda\\xe1\\xac\\x05\\xb2\\x86\\x3b\\x25\\x47\\xac\\xd5\\xeb\\xfb\\x8b\\xd7\\x8b\\xc3\\xbc\\xf0\\x35\\x31\\x9b\\x74\\x8c\\x1d\\x3e\\x44\\x13\\xf7\\xbb\\x13\\x53\\x39\\xf9\\x5e\\x6c\\xf0\\x64\\x4c\\xa5\\x74\\x17\\x6e\\xa7\\x2c\\x04\\x00\\x2d\\x24\\xd7\\x6f\\xe2\\x0b\\xa6\\xe4\\x2f\\x94\\x05\\x88\\x7c\\xfd\\x78\\xfe\\xc2\\x4d\\x62\\xcb\\x4d\\xb1\\x8b\\xd7\\x70\\x8f\\x8c\\xcd\\xe2\\x1e\\x39\\x25\\xc9\\xcd\\x8d\\xc4\\x1f\\xd8\\xa6\\x40\\x28\\x86\\x32\\xf9\\xd0\\xbe\\x4a\\x4f\\x4b\\x34\\xea\\x34\\x2a\\x41\\x45\\x7b\\x4c\\x06\\x79\\x47\\x13\\xc3\\x8e\\x0e\\x2b\\x74\\x2c\\x14\\x8a\\xd2\\x5a\\x11\\xb9\\x38\\xc9\\x6b\\x90\\xe4\\x47\\x49\\x3a\\x8d\\x7e\\xd8\\xa4\\x76\\xa3\\x6b\\xc1\\x89\\xd9\\xde\\x39\\x27\\x17\\xba\\x72\\x17\\x9c\\x9c\\xe3\\x9d\\x7d\\x62\\x81\\x8b\\x8b\\x8f\\x71\\xb5\\xba\\xc8\\xff\\x31\\xbe\\x73\\xd1\\xce\\x16\\x97\\xb3\\xc5\\x19\\x83\\xad\\x0b\\x6f\\x1c\\xe9\\x57\\x13\\xf9\\x52\\x1d\\x36\\x70\\xe4\\xc6\\x42\\xdd\\xa2\\xe7\\x8f\\xf4\\x87\\x8a\\x4b\\xe1\\x64\\x58\\xff\\xe1\\xe7\\x17\\xea\\xca\\x37\\x0f\\xd7\\x87\\x8f\\xfd\\x26\\xbc\\x7e\\x78\\x73\\x65\\xc5\\x26\\xf2\\x9a\\xd3\\x85\\x7b\\x86\\x37\\x95\\xfb\\xf3\\xec\\x8b\\xaf\\xf0\\x24\\xd6\\x7d\\xca\\x99\\x23\\xf2\\xbf\\x38\\x73\\x3c\\xe9\\x85\\xbf\\xdd\\xdc\\x41\\xce\\x1c\\xff\\x47\\x16\\xc0\\x6c\\xee\\x61\\x22\\xd4\\x92\\xa1\\x4c\\xce\\x03\\x6c\\x95\\xb1\\x16\\x1a\\xe0\\x30\\xbe\\xe3\\xcc\\xc1\\xd6\\x82\\xff\\xc8\\x41\\xa1\\x2a\\x61\\x74\\x02\\x91\\x11\\x9a\\x88\\x46\\x62\\x98\\xfc\\x5c\\x36\\xe8\\x95\\xf7\\x75\\xcc\\x7b\\x68\\x75\\x89\\x17\\x76\\x6d\\x6c\\x3d\\x51\\xe5\\x85\\x03\\xea\\xf0\\xec\\xf9\\x67\\x17\\x40\\xa1\\xf8\\xd6\\x9e\\x8d\\xe1\\x6a\\xac\\xa7\\x76\\x42\\x6a\\xfb\\xe0\\x0b\\x26\\x9f\\x2f\\x22\\xff\\xeb\\xf3\\x45\\xc1\\xd7\\xbd\\x5f\\xf7\\x8e\\x39\\xa5\\x36\\xd0\\xdf\\x09\\x9e\\xf9\\xb5\\xa4\\x6f\\xce\\xf0\\x05\\xd3\\xce\\x17\\x91\\xff\\xef\\xe7\\x8b\\x8c\\xaf\\x7b\\xcf\\xb9\\xbc\\x5d\\xe4\\x7c\\x71\\x52\\x7e\\x12\\x70\\x0f\\x8d\\xcd\\x11\\xad\\x50\\xc6\\xf2\\x87\\xe4\\x23\\x44\\xfd\\x67\\x9f\\x7a\\xbe\\x88\\xfc\\x9f\\xce\\x17\\xf9\\xf0\\xcb\\x77\\x07\\x4e\\x0d\\x3b\\x9d\\xc3\\xa7\\x06\\xc4\\x6d\\xe2\\xb7\\xc8\\xdb\\x82\\xd6\\x9c\\xc8\\xc8\\x9c\\xb6\\x7c\\xb2\\x84\\x86\\x89\\xcb\\xa2\\xb6\\x76\\x73\\x9f\\x93\\x7b\\x48\\x5c\\x20\\x1e\\x36\\x38\\xca\\x4d\\x89\\x15\\xce\\x44\\xf9\\x7c\\xc1\\x7c\\x8a\\x77\\x3f\\x5f\\x44\\xfe\\xff\\x38\\x5f\\x0c\\x75\\xed\\xeb\\xcb\\xc8\\xe8\\xdb\\xdb\\x2d\\xfe\\xc2\\x8b\\xff\\x45\\x44\\x69\\xe0\\x50\\x46\\xb9\\x4d\\xa3\\xb1\\x95\\x67\\xe0\\x4b\\xd9\\x3d\\x1b\\x6b\\x6a\\x36\\xcf\\x22\\xc3\\x41\\x87\\xc1\\xf7\\x81\\x78\\x38\\xde\\x51\\x66\\x32\\x56\\xb8\\x12\\x11\\x66\\x6b\\xdd\\xcd\\x17\\xdc\\xed\\x7c\\x11\\xf9\\x3f\\x9c\\x2f\\xe6\\x80\\x67\\xf0\\xf4\\x42\\x62\\xe8\\x3c\\x33\\xe8\\x1b\\xf3\\x82\\xa7\\xa0\\xdd\\x15\\x15\\xed\\x9a\\x59\\x80\\x2f\\x65\\x75\\x6f\\xac\\xab\\xdd\\xd2\\x97\\x23\\xd5\\xc0\\x90\\x5d\\x6e\\x36\\x55\\x38\\x8d\\xe3\\x36\\xe9\\x02\\xbe\\x09\\xa5\\xa1\\x5a\\x77\\x15\\x79\\xaf\\x44\\x40\\x90\\x74\\xbc\\x42\\x50\\xf0\\xc2\\x08\\xf5\\x51\\xf0\\x4a\\xc5\\xa0\\x4a\\xf6\\x52\\xc7\\x8f\\xf3\\x3e\\x18\\x28\\x92\\xce\\x96\\x6c\\xb5\\x4c\\x4a\\x2c\\x97\\x06\\x69\\x6c\\x67\\x64\\x5b\\xe2\\xa7\\xd2\\xa7\\xe5\\x32\\x3c\\x30\\x2e\\xca\\x1e\\xf0\\xa4\\x5f\\xab\\xdf\\x74\\xa9\\x73\\xdb\\xab\\xdb\\xdc\\xee\\xed\\xaf\\x6c\\x1b\\x78\\x68\\x6d\\xc5\\xb5\\x94\\xda\\xc1\\xbc\\xf6\\xb5\\x8d\\x56\\x41\\x9c\\x09\\x57\\x14\\x29\\x0d\\x6b\\xb8\\x2f\\x11\\xb6\\xf0\\xf4\\xba\\xdd\\xf3\\x0a\\xbb\\x4f\\xbc\\xb9\\x34\\x65\\xe9\\x9b\\x27\\xbb\\x8a\\x16\\x1d\\x99\\x49\\xdd\\xee\\x85\\x83\\x9b\\xcb\\xce\\x94\\xae\\xe9\\x75\\x21\\x8c\\x56\\x92\\x76\\xec\\x20\\xed\\x88\\x99\\x7c\\xbe\\x40\\x88\\x53\\x20\\xc6\\x0f\\x0e\\x7d\\x74\\xaf\\x62\\x1b\\x3b\\xee\\xe3\\x65\\x07\\x81\\x75\\xbc\\x84\\x20\\x44\\x7a\\x58\\x31\\x44\\x4b\\xd1\\x55\\xc6\\x8a\\xca\\x4e\\x02\\x77\\x10\\xcd\\x6f\\x41\\x4c\\xef\\x92\\x3d\\x8f\\x58\\xf2\\xee\\x68\\x9b\\x55\\xb2\\xec\\x4e\\xe7\\x87\\x4b\\xd9\\xa9\\xcc\\xee\\xdd\\xde\\x31\\x7b\\x7f\\x6f\\x6a\\x6a\\xcf\\xbd\\xb3\\xbb\\x76\\xf5\\x66\\x29\\x76\\x78\\xbd\\x50\\x10\\x66\\xab\\x74\\xe6\\x54\\x11\\x7d\\xdf\\x56\\xe5\\xcc\\xa9\\x4c\\x0e\\xc3\\x2b\\x86\\xaf\\xee\\xa8\\xeb\\x3c\\xf5\\xe5\\x55\\xba\\x55\\x5f\\x3e\\xd1\\xe9\\xd9\\xfd\\xdc\\x42\\xd1\\x46\\x86\\xeb\\xa3\\xa6\\xfb\\x96\\x97\\x97\\x2f\\xbf\\xaf\\x49\\xd7\\x74\\x74\\x45\\x39\\xc9\\x97\\xd2\\x44\\x63\\xed\\x11\\xe2\\x8d\\x7c\\x81\\x7c\\xbe\\x50\\x02\\x25\\x9b\\x96\\xf7\\x1e\\x36\\x40\\x8a\\xc9\\x1b\\xd0\\xf8\\xf9\\x22\\x84\\xc9\\x0b\\x3d\\xdd\\x45\\x27\\x9f\\x30\\x98\\xdb\\x9e\\xac\\x33\\x52\\x63\\xde\\xe8\\x15\\xaf\\x89\\xb7\\xdf\\x05\\xf5\\xc2\\x91\\xfc\\xc5\\xe7\\x06\\x7e\\x1e\\xe9\\x68\\x70\\x42\\xaf\\xf8\\x52\\x7e\\x67\\x5e\\x2c\\x9d\\xc3\\x70\\x59\\xec\\x83\\xd7\\x2c\\x17\\x17\\xd7\\x6e\\xe8\\xca\\x16\\x9f\\x4b\\x74\\x67\\x19\\x60\\x01\\x99\\xd2\\x74\\x2e\\xdd\\xfe\\xad\\xe8\\xe1\\x93\\x14\\xf4\\xd4\\x59\\xe7\\xae\\x4e\\xc2\\x58\\xe0\\x23\\x80\\x13\\x34\\x80\\x39\\xae\\x3e\\x00\\x94\\x0a\\x7a\\x66\\x65\\x41\\x19\\x72\\x37\\xab\\x54\\x42\\xcf\\x1d\\x0e\\x19\\x23\\x6e\\xc8\\x48\\x27\\xb5\\xd4\\x58\\xad\\x36\\x13\\xd3\\x03\\x99\\x9d\\x3a\\x97\\x75\\x36\\x31\\xda\\x28\\x26\\x73\\x31\\x4c\\xca\\xc5\\x44\\xa3\\xa6\\x09\\x7d\\x07\\x1e\\x16\\x3f\\xf6\\x67\\x1a\\x83\\x27\\xce\\x25\\xb8\\x0c\\xa1\\xaa\\x58\\x43\\x8c\\xaa\\xbc\\x16\\xa4\\xbc\\x63\\x2f\\xbd\\xe4\\x05\\x25\\xef\\x15\\x7f\\xe2\\xcf\\x3e\\xf6\\x73\\xdf\\x4f\\x1f\\x7f\\x4e\\x19\\x78\\x82\\x32\\x1a\\x2c\\xea\\xeb\\x19\\x4f\\x45\\xc6\\x7b\\x4f\\x5f\\xbb\\x86\\x26\\xe5\\x5a\\x94\\xd7\\x07\\x2f\\x28\\x04\\x5e\\x31\\x42\\xdb\\xa1\\xa4\\xf1\\x0b\\x0a\\x2a\\x44\\x94\\xb4\\xcf\\xfd\\x8a\\xe3\\xf8\\x4a\\x31\\xe0\\x4f\\x5b\\x1f\\x9f\\x9d\\x78\\x91\\x22\\xe3\\x0d\\xdc\\xe7\\x64\\x5e\\x6c\\x5a\\x5e\\x67\\x11\\xe0\\x9c\\x38\\x2c\\x58\\x6a\\x57\\x7c\\x7a\\xfe\\xc5\\xfc\\xd9\\x1b\\x4a\\xcf\\xb8\\x37\\xcc\\xce\\x43\\x18\\x59\\x10\\xe2\\xaf\\x91\\x39\\x63\\x40\\xf6\\xbb\\xfb\\x6c\\x22\\xef\\xf4\\xd9\\xc4\\x93\\xd5\\x13\\x6f\\x8f\\x4f\\x49\\x4c\\x20\\x97\\x18\\xee\\xe6\\xb3\\xa1\\x73\\x7e\\x92\\x26\\xa6\\x9e\\x24\\x14\\x39\\x55\\x79\\xd7\\xde\\xde\\x8c\\x8c\\xde\\xbd\\x5d\\xb7\\x5e\\x8f\\xaf\\x5b\\xdf\\x9b\\xc6\\x1b\\x6c\\xae\\x84\\x60\\x9c\\x53\\x9e\\x41\\xf4\\xd4\\x70\\x5b\\x59\\x06\\x11\\xd7\\xf3\\xb2\\x7b\\x36\\xd4\\xd6\\x6c\\xea\\x73\\x52\\x6d\\xed\\xd8\\xaf\\x2e\\xb6\\x9f\\x87\\xe2\\xb5\\x4f\\x8d\\xc0\\x07\\xbe\\xaf\\x8a\\x47\\x4c\\xae\\xca\\x44\\xa3\\x3b\\x9b\\xd4\\x02\\xa3\\x9d\\xa4\\xee\\xc7\\x18\\x66\\xc6\\x44\\x4f\\x12\\x53\\xdc\\x35\\x91\\x77\\x38\\x62\\x3e\\xcf\\x0b\\x63\\xbc\\x8b\\x17\\xe6\\x63\\xef\\xcc\\xb6\\x6d\\x1d\\xa9\\xa9\\x1d\\xdb\\xda\\xc4\\x7f\\x7c\\x4c\\x96\\xe7\\x33\\x33\\x53\\x0a\\xcc\\x61\\x61\\xe6\\x82\\x14\\xfc\\x20\\x9c\\x15\\x87\\x48\\x45\\x6b\\x68\\x45\\x71\\xa0\\xef\\x5f\\x7c\\xc1\\x9d\\xd5\\x43\\x80\\x62\\xa9\\x4d\\x57\\x81\\x50\\x1c\\xf5\\xee\\x6a\\x30\\xc6\\x1c\\xd4\\xab\\x40\\x21\\x00\\x02\\x05\\x1a\\xf7\\xe7\\xc5\\xd3\\x7a\\xe2\\x1e\\xd9\\x15\\x43\\x7e\\x98\\xb2\\x10\\x70\\xc7\\x24\\x57\\xdf\\x65\\x52\\x9f\\x15\\xdf\\xbf\\x33\\x7d\\xde\\x7d\\xf7\\x79\\xc1\\xc1\\xbf\\x2c\\x7e\\x7f\\x7a\\x12\\x3d\\xfe\\xe5\\xd3\\x57\\xae\\x30\\x3d\\x52\\xbc\\xdf\\xaf\\x97\\xd2\\x9d\\x85\\x72\\x46\\x31\\xbe\\x52\\xa6\\xa7\\xe0\\x5e\\xa9\\x12\\xd3\\xf5\\x88\\x71\\xc7\\x8c\\x1a\\xe6\\x10\\xd5\\x54\\xbc\\xe0\\x25\\x2e\\x8f\\x02\\x49\\x8b\\x10\\xef\\x87\\x79\\x92\\x8e\\xb9\\x84\\xac\\x09\\x9a\\x67\\xda\\x2c\\x21\\x63\\xa4\\x64\\xeb\\x3c\\x87\\xb1\\x6e\\x3c\\xbd\\x9a\\xec\\xb4\\x34\\x23\\x33\\xc5\\xc7\\x9a\\x93\\xd8\\x3e\\xaa\\xb9\\xd3\\x83\\x4d\\x02\\xce\\x25\\x74\\x2c\\x51\\xc3\\xfc\\x2f\\xf8\\xad\\x60\\x6f\\x5a\\x56\\xde\\xb4\\x26\\x21\\x61\\x4d\\x63\\xc5\\xb2\\x26\\x3b\\xdc\\x80\\xc2\\x9c\\xa2\\x2a\\x78\\xa5\\xaa\\x38\\xa7\\x00\\x88\\x11\\xfd\\x70\\xdb\\xd6\\xce\\xd4\\xfa\\xba\\x5a\\x4f\\x6a\\xe7\\xd6\\x36\\x7e\\xd5\\xad\\xc3\\xdd\\xf3\\xe6\\x75\\x4f\\xfc\\xa5\\xf5\\xeb\\x27\\xb6\\xef\\x8d\\x7c\\xe1\\xf4\\xfa\\x45\\x7e\\x4e\\xfd\\xd4\\x53\\xea\\x27\\x57\\x4b\\x2d\\x57\\x54\\xcd\\x6f\\xb4\\x37\\x2f\\x2f\\x6f\\x1a\\x35\\x26\\xac\\x69\\xaa\\x58\\xde\\x94\\x0a\\xde\\x22\\x67\\x51\\xcd\\x2b\\x50\\x5d\\x9c\\x53\\xcc\\x17\\xfa\\xa0\\x6d\\x6b\\x87\\x54\\xb9\\x8e\\xad\\x6d\\xf8\\xb6\\x0f\\xba\\xe7\\xce\\xed\\x9e\\xf8\\x8b\\x30\\x9b\\x2b\\x45\\x8a\\x48\\x3a\\x97\\x29\\x2b\\x0d\\xa5\\x14\\x5b\\xa5\\xa0\\xc6\\x18\\xc9\\x38\\x04\\xc4\\xd3\\xa8\\x04\\xd5\\x10\\x9d\\x2a\\xb3\\x24\\xe5\\x48\\x9e\\xd1\\x6c\\x4a\\xd3\\x19\\x3d\\xc5\\xbf\\xc5\\x38\\xa5\\xee\\xf0\\x72\\xe1\\x8f\\xc4\\x97\\x41\\x33\\x78\\x6a\\x81\\xcb\\xb5\\xe0\\xd4\\xa0\\x98\\xf3\\xea\\xab\\x5e\\x28\\xa7\\x1f\\x15\\xb4\\x39\\xa3\\xa2\\x9c\\x6d\\x05\\x7c\\x8e\\xb8\\x34\\xab\\x87\\xea\\x4a\\xb3\\x72\\xf8\\x9c\\x33\\xd0\\x20\\x3e\\xe7\\x2b\\xa6\\x0a\\x53\\x99\\x39\\xb1\\xd2\\x69\\x64\\xb6\\x68\\x72\\x6e\\x3e\\x41\\xec\\x8e\\xb9\\xe8\\x5d\\x09\\xa4\\x92\\x85\\x30\\x87\\x38\\x7a\\x6c\\xf6\\xfb\\xab\\x79\\x40\\x01\\x20\\x28\\x91\\xdf\\x63\\x1d\\x04\\x7e\\x97\\xb5\\xaa\\x8f\\x52\\xa9\\x18\\x54\\x32\\x73\\x8b\\xf3\\x33\\x2e\\x0c\\x0a\\xd2\\xc9\\xb8\\xb7\\xa9\\x17\\xbb\\xf3\\xff\\xfb\\xeb\\x02\\x03\\xf5\\xd2\\xc5\\x88\\x5e\\x4b\\x11\\x31\\xe1\\xb9\\xe4\\x74\\xee\\xc8\\x66\\xb6\\x4f\\xf2\\x4f\\xd8\\x0c\\xba\\xca\\x1c\\xce\\xcf\\x74\\x96\\x8f\\x8b\\x64\\x49\\x42\\x38\\x4f\\x65\\xf7\\xdf\\xdb\\xd5\\xba\\xb1\\x23\\x4b\\xf9\\x98\\x10\\x99\\x52\\x92\\x9a\\x51\\x95\\xa6\\x87\\x68\\xf1\\x57\\xfa\\xb4\\xaa\\x8c\\xd4\\x92\\x14\\xbd\\xe2\\x31\\x65\\x56\\xc7\\xc6\\xd6\\xae\\x7b\\xfb\\xb3\\x4f\\xdd\\xb8\\xc1\\xb9\\x87\\x76\\x7c\\xe5\\x60\\x7d\\xe1\\xb2\\xfb\\x07\\x8a\\x87\\x6a\\x2c\\xae\\xf9\\xc7\\x66\\xcd\\x3f\\x7d\\x7e\\xf6\\xf1\\xf9\\x2e\\x73\\xc5\\x60\\x49\\xf7\\xe9\\x15\\x25\\xf5\\x07\\xbe\\xb2\\xe3\\xbc\\xaf\\x4b\\x8a\\x7d\\x3b\\xcf\\x30\\x50\\x14\\xbf\\xb8\\x5f\\xd2\\x56\\xb2\\x50\\x40\\xa0\\x32\\x30\\x60\\x22\\x8c\\x21\\x08\\x94\\x3c\\x8b\\x63\\x18\\x24\\xed\\x53\\xf4\\x51\\x6c\\x08\\x3b\\xc6\\x49\\xa6\\x52\\x03\\x47\\xbb\\xe8\\x33\\xae\\xa1\\xa5\\xc9\\x85\\xac\\x4f\\xe2\\xfd\\xb0\\x07\\x00\\x59\\x77\\x23\\x3d\\xe4\\xc8\\x4e\\x4f\\x4d\\xb6\\x52\\x66\\xac\\x08\\x82\\x8a\\x91\\x7a\\xc8\\xe8\\x77\\xfc\\x38\\xee\\x50\\x6c\\xd4\\xb2\\xbe\\x33\\x9e\\xd9\\xd8\\xc8\\xbd\\x23\\x7e\\x88\\xb5\\x29\\x15\\x19\\x86\\xec\\x24\\x2d\\x5c\\xcd\\xee\\x58\\xed\\xee\\xd9\\xd3\\x97\\xc9\\x1d\\xf1\\x7a\\x8f\\xe0\\xcc\\xbe\\xbd\\x3d\\x35\\x6b\\xda\\xd2\\xae\\x6a\\xcc\\x0e\\x63\\x46\\x85\\x5d\\x0b\\x60\\x87\\xaf\\x97\\xaf\\x9f\\x9d\\x1b\\x93\\x59\\x6a\\x76\\x8f\\xf6\\x3a\\x3d\\xbb\\xae\\x0d\\x8b\\xc4\\x34\\x27\\xa6\\x0d\\x7f\\x71\\x77\\x43\\xde\\xc0\\x8e\\xfa\\xe4\\xfa\\x3c\\x63\\xde\\x9c\\x0d\\x6e\\x2a\\xef\\xad\\x08\\xf1\\xcf\\x30\\xff\\x4a\\x08\\x95\\x5e\\x21\\xa0\\xa0\\xfa\\x8d\\x02\\xfb\\xe5\\x29\\x75\\x97\\x09\\x9c\\xff\\xc0\\xce\\x7e\\x98\\x47\\x5b\\xb6\\x18\\xb1\\x84\\x5b\\x46\\x8e\\x9b\\xff\\xa0\\xf7\\xc4\\xf1\\x97\\xe0\\x93\\x4b\\xf0\\xd7\\x97\\x7c\\xcf\\xc3\\xee\\x57\\xe1\\x86\\x58\\x4b\\x7f\\x99\\x7b\\xa7\\x07\\x33\\x49\\xc8\\xf2\\xd2\\xef\\x60\\x72\\x32\\x8c\\x3e\\x2b\\x74\\xda\\xb3\\x22\\xff\\x8b\\x67\\x59\\x95\\x5c\\xfd\\x76\\xef\\xbe\\xb5\\x2f\\xc1\\x9b\\x17\\xe1\\x9d\\x97\\x45\\x1e\\xaa\\x0e\\x44\\x46\\x81\\x4d\\xfc\\x88\\xfe\\x32\\xbd\\xe9\\x35\\xe8\\x6a\\x6b\\xa3\\x7a\\xea\\x38\\x9f\\x9c\\x8e\\xea\\x6e\\x3a\\xaa\\x16\\xd5\\x53\\xe2\\x7d\\x8c\\xa9\\x56\\x31\\x97\\x0e\\x33\\x71\\xe0\\x0a\\x1c\\xc7\\x9e\\x79\\x07\\x99\\x5c\\xd0\\x24\\xbb\\x98\\xc6\\x3f\\x32\\x1a\\x96\\x5e\\x8c\\xe3\\x1e\\xac\\x3e\\x51\\xb5\\xf0\\xa5\\xd1\\xc7\\xbd\\xde\\x6f\\x7c\\xfd\\x22\\xb4\\xbd\\x28\\x5e\\xfe\\xfe\\x42\\xf8\\x96\\x98\\x2a\\xff\\x12\\xf4\\xc0\\x5b\\x5c\\x21\\x69\\xf8\\x28\\xe6\\x69\\xbb\\x69\\xec\\xe5\\x4b\\x7c\\xc1\\xa7\\xd5\\x63\\x90\\x4d\\xb7\\xff\\xa1\\x1e\\x57\\x6a\\x1f\\x68\\x9e\\xfd\\xd2\\xd0\\x69\\xaf\\xf7\\xfd\\x0f\\x2f\\xc2\\xcc\\x97\\xc4\\x27\\xbf\\x39\\x1f\\x92\\xc4\\xef\\xcb\\xbf\\x64\\xfb\\x3c\\x88\\xd7\\x90\\x0e\\x79\\x1b\\x66\\xd1\\x7a\\x74\\x90\\x7a\\xec\\x61\\x7b\\x89\\x95\\xda\\xa5\\xa3\\x98\\x85\\x16\\x03\\x52\\xf8\\x8f\\x42\\x2a\\x15\\xf3\\xa8\\x93\\x2e\\x51\\x0a\\x9c\\xdf\\x70\\x69\\xb5\\x50\\xb9\\x9d\\x45\\xb0\\x0c\\xea\\x70\\x6d\\x20\\x19\\x0e\\x29\\x8f\\x8f\\x03\\x8c\\x60\\xe0\\x64\\x3c\\x83\\x89\\x6e\\xa1\\x56\\x3f\\xb1\\x8f\\xc6\\xd8\\x09\\x59\\xb3\\xf7\\x75\\x72\\xe2\\x55\\xee\\xc7\\xe2\\x57\\x3a\\xf7\\xce\\xce\\xf4\\xea\\x52\\x2b\\xd2\\x2b\\x03\\xbc\\x5c\\x4b\\x3a\\x9d\\xa1\\x83\\x5f\\x15\\xdb\\xe0\\xca\\xdc\\x03\\x3d\\x36\\x7c\\xca\\xb7\\x18\\x6c\\x3d\\xfb\\xe7\\x8a\\x1d\\x70\\xa5\\xb8\\x2d\\x5b\\x17\\xe1\\x3b\\x86\\xb7\\x08\\xba\\xec\\xb6\\x62\\xb1\\x83\\x2b\\x81\\xef\\xb1\\x79\\xb3\\x88\\x82\\xb6\\x18\\xb6\\xd2\\x4a\\x73\\xbe\\xc4\\x44\\xe2\\xbb\\x57\\x3c\\x72\\x4a\\xc5\\x29\\x2f\\x17\\xad\\xb8\\x5a\\xaa\\x38\\x03\\xb3\\x4b\\xf5\\x26\\x04\\x18\\x53\\xea\\xad\\x05\\x87\\xc6\\xb8\\xc8\\x4e\\x82\\x82\\xc4\\x5f\\x71\\xd7\\xc4\\x5f\\xd6\\xad\\x6a\\x49\\xf1\\x42\\x44\\x72\\x71\\x4a\\x56\\xe0\\x4d\\xa1\\x38\\xa5\\x38\\x39\\x02\\xca\\x85\\x67\\xc4\\x53\\xdf\\x1f\\x3a\\x32\\x2b\\x83\\x83\\x1f\\x8b\\x09\\x42\\xe6\\xec\\x83\\x83\\xdf\\xff\\x7e\\x45\\x8f\\x4b\\xaf\\x16\\x1b\\xe1\\x85\\x00\\x1a\\x9d\\xf5\\x7d\\x3c\\x0b\\xaa\\x49\\x9d\\x5b\\xfc\\x31\\xb0\\x26\\x64\\xa1\\x3c\\xc5\\x21\\x41\\x8c\\xa5\\x3b\\x00\\x10\\x4d\\x84\\x0a\\x08\\x0f\\x11\\xb9\\xaa\\xea\\xa1\\x02\\x58\\xe7\\x51\\xca\\x23\\x6f\\x49\\x32\\x25\\x1a\\x13\\x88\\xb2\\xa2\\x29\\x0f\\x37\\x69\\x24\\x31\\xa1\\xa3\\x29\\x51\\xb9\\x1c\\x8b\\xbf\\xb2\\x76\\xac\\x50\\xb0\\x0f\\x72\\xa5\\xc9\\x60\\xe4\\x8c\\xa4\\xc7\\xb9\\x23\\xeb\\xb7\\x9f\\x05\\x47\\xb1\\x49\\x79\\x56\\x65\\xc1\\x7c\\x7e\\xd6\\x59\\x88\\x38\\x7f\\xe5\\x0a\\xec\\xf8\\x3d\\xfe\\xad\\x78\\x70\\x87\\x28\\x72\\x91\\xc2\\xa1\\x63\\xe2\\x0c\\xf8\\x87\\xa7\\x2c\\xc2\\x77\\x02\\x2f\\xd2\\xe3\\xb2\\x3a\\xfa\\xb6\\xa5\\xc8\\xb7\\x9d\\x78\\x59\\x16\\xe2\\x33\\xbe\\xf7\\xe1\\x3c\\xa9\\x77\\x2b\\x42\\x14\\x33\\x2d\\xcf\\x11\\x42\\xdb\\xca\\x20\\xa3\\x2a\\x81\\x71\\xcc\\xc1\\x10\\x11\\x73\\xca\\x1e\\xca\\x7b\\x15\\x49\\x53\\xba\\x72\\xec\\xd0\\x63\\xb5\\x90\\x08\\x78\\x56\\xeb\\x08\\x4d\\x44\\xd0\\x94\\x4a\\x9b\\x3e\\xb5\\xd6\\x26\\xee\\xb1\\x65\\xab\\xce\\x82\\xb3\\x34\\x7c\\x86\\xe2\\x5c\\x60\\x02\\x8f\\xf3\\x73\\xce\\x82\\xf6\\x7e\\x52\\xed\\x55\\xff\\x87\\x7f\\x24\\xde\\xb7\\xf9\\x3f\\xb8\\x25\\x68\\xff\\x41\\xf1\\x1b\\x90\\xd1\\xe0\\x8e\\x13\\xe7\\xc2\\x65\\x1d\\x76\\xd7\\xd3\\xb7\\xad\\x85\\x62\\x15\\x11\\x68\\x51\\xf0\\x6b\\x31\\x1b\\x4a\\xd9\\x1c\\x79\\x4f\\xac\\xe6\\xcd\\xca\\x35\\xa8\\x04\\xd5\\xa0\\x76\\x77\\x6b\\x15\\x59\\x63\\x5a\\x10\\x10\\xae\\xb7\\x5a\\x30\\x57\\x43\\x56\\x98\\x52\\xb1\\x0a\\x29\\xb1\\x72\\x15\\x19\\x02\\xc4\\x18\\x85\\x65\\x5c\\x35\\xf3\\xbe\\x4e\\x9c\\xb3\\x6b\\xaa\\x2b\\x2b\\xca\\xdc\\xc5\\x85\\x8e\\xcc\\xf8\\xd8\\x19\\x44\\xde\\xa3\\x12\\x28\\x09\\x9c\\x84\\x97\\x30\\x3a\\x65\\x7d\\x40\\xb6\\x3f\\xcb\\xd1\\x13\\x24\\xc2\\x8f\\x71\\x5f\\x4c\\xb2\\x43\\x6b\\xc6\\x79\\x52\\x62\\x2f\\x9e\\x4d\\xaa\\x5f\\x56\\x2b\\x7e\\x0d\\xb2\\x87\\xaf\\x6e\\xaf\\x33\\xb9\\x67\\xe5\\x6f\\x3f\\x5c\\xbf\\xe3\\xda\\x7c\\x67\\x53\\x8d\\x31\\x3b\\x57\\x5f\\x9f\\x31\\xdb\\x93\\x01\\x99\\x5d\\x1b\\x3d\\xe9\\xe5\\xcb\\x1a\\x53\\xd2\\x3a\\x37\\x37\\x1f\\xfa\\x82\\xc4\\xad\\xc2\\xe5\\xc2\\xce\\x95\\xd9\\x5d\\x6e\\xf3\\x19\\x8a\\x81\\x77\\xce\\x69\\x71\\xeb\\x92\\x9f\\xda\\x3d\\x7c\\x71\\x69\\x5e\\x89\\x23\\xb9\\x38\\x35\\x3e\\x70\\x73\\x44\\x61\\xcb\\xbc\\xa2\\x8a\\x81\\x12\\x43\\x72\\xcd\\x50\\x51\\xd5\\x70\\xb9\\xf1\\x34\\x77\\x79\\x9c\\x8f\\x05\\xa3\\x1f\\x91\\xbe\\x09\\x50\\x18\\x50\\x11\\xaa\\xa2\\x7d\\x53\\x41\\xfa\\x46\\xc3\\xfa\\x26\\xc9\\xfc\\x39\\x7d\\x13\\x79\\x67\\xdf\\x54\\x55\\x96\\x97\\x95\\x96\\x10\\x1b\\x7d\\x7a\\x5c\\x34\\xed\\x1b\\x6a\\x9f\\x0f\\x94\\xec\\xf3\\xd6\\xc9\\x7d\\xa3\\x98\\xd4\\x35\\xfa\\xcf\\xed\\x9a\\xd4\\x7b\\xf7\\x80\\xd1\\x3d\\xab\\x88\\x98\\x98\\x52\\xfb\\x2e\\x8e\\x56\\x2e\\xec\\x5b\\xb0\\xaa\\x72\\xed\\xa5\\xbe\\xcc\\xa6\\x5a\\xa0\\x5d\\xe3\\x49\\x9f\\xed\\xc9\\x24\\x5d\\xb3\\xc9\\x63\\xcb\\x9d\\x5d\\x6e\\xb1\\x35\\x2c\\xad\\x38\\x74\\x59\\xea\\x1a\\xbc\\xa8\\xc3\\x63\\xcc\\x4b\\xd6\\x9f\\xb5\\xb5\\x90\\xa4\\x4a\\x6b\\x4d\\xf1\\x1b\\x7a\\x9a\\xd6\\xb7\\xd9\\xa7\\xf5\\x4b\\x64\\x6a\\x89\\xc5\\x5e\\x9a\\x1c\\x71\\x9a\\x8b\\x1b\\xef\\x17\\x8e\\xf1\\x73\\xf5\\x32\\x3f\\x69\\x3a\\x2a\\xa5\\x1a\\xa2\\x02\\x30\\xcd\\x89\\x83\\xf9\\xc9\\xc0\\x40\\x41\\x90\\x5d\\x9f\\x99\\x19\\xf1\\x06\\x02\\xa6\\x29\\xcd\\x2c\\x4d\\xb6\\x18\\xd2\\xe3\\xd3\\xd3\\x2c\\x2a\\x62\\x92\\x85\\x29\\xac\\x06\\x82\\xd1\\xe9\\xe7\\x35\\x10\\x8c\\x9f\\x4d\\xbf\\x25\\x73\\x1a\\x8c\\xbd\\x82\\xf7\\xdf\\x49\\x6b\\x80\\xf7\\xfb\\xd6\\x7e\\x2e\\xff\\x96\\x4c\\x6c\\x10\\x10\\x34\\x99\\xd9\\xe0\\x61\\x61\\x0a\\xf9\\x16\\x87\\x66\\x93\\x76\\x3a\\x59\\xac\\x60\\x02\\xb2\\x4b\\x9a\\x30\\xe2\\xb0\\xc0\\xb1\\x14\\xf8\\xac\\x71\\xf1\\x1e\\xd2\\x74\\x2c\\x3b\\x24\\x13\\x8d\\x7a\\x9d\\xd5\\x62\\xb4\\x27\\xda\\x63\\x63\\x74\\x09\\xfa\\x04\\x9b\\x99\\xb6\\x73\\x7a\\xe6\\x61\\x60\\x16\\x26\\x03\\xa7\\x61\\x6a\\x4a\\x3a\\x37\\x7b\\x6a\\xde\\x61\\xf8\\x63\\xd5\\x92\\x86\\x54\\xa5\\xef\\x92\\x32\\xb5\\x71\\x49\\x65\\xe5\\xe2\\x86\\x74\\x25\\xee\\x57\\xa5\\x35\\x2c\\xb9\\x4b\\xfe\\x61\\x71\\xa5\\x73\\xd6\\xa6\\xea\\xea\\x4d\\xb3\\x9c\\x5c\\x4e\\x4e\\xef\\x86\\xca\\xca\\x0d\\xbd\\x34\\x07\\x7e\\x34\\x42\\xfc\\x4f\\x85\\x37\\x50\\x04\\x2a\\xbb\\x0e\\xfe\\x5c\\xa4\\x31\\xfe\\x0c\\xdc\\x52\\xf4\\x89\\xe4\\xa2\\xa6\\x26\\x26\\x2d\\x73\\x5d\\xb3\\x2f\\xd0\\xc4\\xe7\\x3d\\x5f\\x52\\x6b\\x8d\\x56\\x09\\x75\\x93\\x4b\\xb1\\xc8\\x7a\\x25\\xd3\\xab\\x58\\xaa\\xd0\\x9a\\xc4\\x44\\xc0\\x91\\x79\\xd5\\xdd\\x79\\xe9\\x10\\x1c\\x93\\x62\\x8a\\x0d\\x11\\xb7\\x3c\\x29\\x2a\\xbe\\x01\\x6b\\x77\\xee\\xe0\\x6c\\x8d\\xcb\\x6b\\x13\\xe1\\x4a\\x18\\xe1\\xf2\\xbd\\xb5\\x81\\x01\\x47\\x80\\xc9\\xc7\\x01\\xbe\\x89\\xd4\\xa7\\xcf\\x9f\\x23\\xc3\\x4f\\x80\\xc7\\x82\\x90\\xd8\\x3b\\xce\\xff\\xae\\x67\\x6a\\x4d\\xe3\\xef\\xa8\\x69\\xe4\\x78\\x4d\\xe3\\x27\\x6a\\x4a\\xf9\\xf2\\xa4\\x9a\\x6a\\x08\\x64\\x50\\x26\\xcc\\x53\\x48\\x95\\x8d\\x89\\x8c\\xba\\x96\\xb2\\xab\\x31\\x36\\x27\\x5a\\xab\\xd0\\x87\\x18\\x8b\\x42\\xc4\\x37\\x0e\\x89\\xc3\\x2f\\x43\\xd1\\xfc\\xf9\\x38\\x7e\\xc7\\x2a\\x50\\xaa\\x89\\x75\\x25\\xc7\\x36\\xf6\\x1c\\x5f\\x20\\xf1\\x30\\x88\\xad\\xfc\\x4d\\x96\\x7f\\x21\\x1b\\xd5\\x52\\x4c\\x83\\x1e\\x94\\x38\\x13\\x90\\x32\\x89\\x45\\x0b\\x22\\x85\\xc2\\x3f\\xc7\\x05\\xc9\\x2c\\x2b\\x3b\\xf9\\xd9\\xa2\\x9f\\x45\\xaa\\x68\\xe4\\x48\\x78\\x8c\\x2e\\x5f\\xab\\xa7\\x33\\x20\\xf6\\x2e\\x31\\x97\\xa0\\x27\\xb0\\x36\\x49\\x95\\x9f\\x00\\x32\\x71\\x0e\\xca\\xda\\x70\\xa7\\xef\\x1f\\xef\\xb7\\x36\\xac\\xac\\xab\\x5a\\x54\\x63\\x32\\xd5\\x2c\\xaa\\xaa\\x1b\\x69\\xb4\\x42\\x44\\xe8\\xa2\\x47\\xfe\\x1a\\x90\\x98\\xdb\\x92\\x1f\\x18\\x45\\xb2\\x8d\\xf2\\x0a\\x4d\\x84\\x46\\x11\\x67\\x23\\xac\\x40\\x91\\x17\\x1f\\x11\\x57\\xce\\x88\\x49\\x4b\\x48\\xb0\\x47\\xcf\\x98\\x11\\x6d\\x4f\\x30\\xa6\\xc6\\xcc\\x80\\x5f\\xaf\\x7e\\x61\\x4f\\x6d\\xed\\x9e\\x17\\x56\\xc3\\x4f\\x57\\xbf\\x48\\x5f\\xbd\\xb8\\x5a\\xbc\\xf2\\x30\\x5e\\x7c\\xcb\\x60\\x9d\\xd5\\xec\\xa4\\x89\\x49\\x8f\\xd2\\x7e\\xb7\\x15\\x94\\x68\\xe7\\xf0\\x85\\x1e\\x42\\x57\\x6d\\xb7\\xb7\\xae\\xae\\xf5\\x7d\\xb3\\x76\\x4d\\x6b\\x6a\\x6a\\xeb\\x9a\\x5a\\xd6\\x27\\xb9\\xa4\\x4f\\x5e\\xe0\\x9b\\xfc\\x7d\\xb2\\xc2\\x1d\\xa2\\x27\\xe2\\x2f\\x13\\x40\\x41\\xfa\\x04\\x64\\x5a\\x50\\x23\\x73\\xe4\\x0a\\x18\\x53\\xdb\\xb9\\xdc\\x4d\\x77\\x74\\x4b\\x8c\\x3b\\xe9\\xce\\x4e\\x8b\\xbf\\x7b\\x39\\x62\\xcd\\x9c\\xdc\\x83\\xd3\\xd7\\x50\\xd2\\xdd\\x7b\\x70\\xba\\x7d\\x33\\xd7\\xd4\\xb8\\xbe\\xa3\\x73\\x63\\xa3\\xd9\\xdc\\xb8\\xa1\\xa3\\x73\\x43\\x83\\x99\\x5b\\x10\\xbc\\xf4\\xae\\x1d\\x18\\xa6\\x20\\x1d\\xe8\\x3b\\xa2\\x8a\\x75\\xa6\\xa5\\x39\\x63\\x08\\xf5\\xa1\\x2b\\x2d\\x95\\xfc\\xc5\\xc9\\x64\\xcd\\xb5\\xb7\\x93\\x35\\xa7\\x1f\\xfd\\xf2\\xf1\\xf6\\xf6\\xe3\\x5f\\x1e\\x9d\\xfb\\x2c\\xde\\x78\\xf7\\xee\\x23\\xd1\\x4a\\x47\\x29\\xf7\\xdd\\xd1\\x16\\x7d\\xd3\\x51\\x6a\\x15\\x25\\xc6\\x50\\xc6\\x17\\xbc\\xf8\\xf6\\x6a\\x82\\xc9\\x75\\x32\\x9e\\x93\\x24\\x54\\x81\\xae\\x48\\x01\\x9a\\xe9\\x08\\x04\\x01\\x86\\x11\\x52\\x70\\x0a\\xb4\\x10\\x71\\xc4\\x4a\\x34\\x8c\\x30\\xcf\\xe3\\x05\\x13\\x48\\x12\\x8a\\xde\\x9c\\xc5\\x1c\\xbd\\x72\\x30\\x46\\xda\\xdd\\xaf\\xc2\\xab\\xef\\x7e\\x11\\x7b\\x0a\\xac\\x92\\x8a\\x73\\x23\\xa4\\xbc\\x82\\x53\\x2e\\xff\\xf4\\x0b\\x28\\xda\\x9c\\x32\\xd0\\x4c\\xc2\\x86\\x3a\\xd8\\x71\\xf3\\x73\\x78\\x68\\xf0\\xeb\\x5e\\xf2\\x03\\x17\\xff\\x67\\x1e\\x1a\\xfe\\x59\\xd8\\xf9\\x71\\x09\\x1c\\x80\\xbd\\xff\\x13\\x1b\\x0d\\xed\\xe7\\x8d\\xb7\\x07\\xf9\\x36\\xfe\\x2b\\xac\\x9f\\xe3\\x90\\x03\\x74\\x34\\x88\\x96\\xf5\\x33\\xcf\\xd3\\x1e\\x53\\x72\\x4a\\xda\\x63\\x0a\\x05\\xed\\x31\\x41\\xc0\\x0b\\x68\\xbb\\xa9\\x1b\\x9d\\x4d\\x44\\x61\\x16\\xe9\\x0b\\x83\\x20\\x07\\xd7\\xa6\\xdd\\xfd\\x2a\\xbc\\xfa\\xd3\\x2e\\xa2\\x43\\x9a\\x4a\\x2e\\x82\\x55\\xff\\xfd\\x35\\x6c\\x40\\xa7\\x5c\\xa3\\xe4\\x14\\xcb\\x3f\\xe3\\x22\\xd6\\x1c\\xb9\\x3c\\x37\\xf2\\xb9\\x17\\x48\\x01\\x04\\x36\\x9b\\x2d\\x69\\xda\\x90\\xfe\\x17\\x19\\x64\\xf0\\x9b\\x37\\xc9\\x8f\\xef\\x4b\\x9f\\x9b\\x1d\\x9f\\xab\\x86\\x3d\\x9f\\x9c\\x82\\xd3\\x90\\xf1\\xdf\\x64\\xc9\\xe7\\x50\\x23\\xcd\\x75\\xa8\\x6c\\x45\\x39\\xa8\\x01\\x75\\xa3\\x45\\xee\\xe1\\x52\\x08\\x0e\\x2c\\x03\\x14\\xd0\\x0d\\x3c\\x0a\\x01\\x10\\xf8\\x7a\\x14\\x4c\\xe2\\x7b\\x83\\x03\\x46\\x28\\x5b\\x29\\xaf\\x20\\xde\\x9e\\x20\\x14\\x18\\x1c\\x14\\x38\\x14\\x02\\x33\\x50\\x00\\x9a\\x11\\x30\\xa4\\x62\\x5b\\xb1\\x04\\x18\\x55\\x82\\xcc\\x53\\x42\\x36\\x63\\xa7\\xb3\\xad\\xd5\\xd9\\xe0\\xf4\\x54\\x57\\x16\\x17\\xe6\\xb9\\xb4\\x84\\x69\\x58\\x1d\\x65\\xb6\\x85\\x85\\x52\\x35\\x9b\\x36\\x78\\x8a\\x1d\\x8d\\x89\\x66\\x9a\\x02\\x78\\xdc\\x9c\\x26\\xbd\\xa0\\x94\\xb9\\x56\\x8d\\x96\\x96\\xa1\\xfa\\xaa\\xd2\\xc4\\x52\\xdc\\x1a\\x78\\x07\\xb8\\x58\\x24\\x0b\\xd5\\x67\\xb9\\xc4\\xa6\\x9d\\xb3\\x73\\xd2\\x67\\x8e\\x56\\x37\\xac\\x4e\\x30\\xae\\xf6\\xd4\\xac\\x99\\x99\\xee\\x98\\xbd\\xb3\\xb9\\xa9\\xa7\\xaa\\xb8\\xa8\\xfa\\x66\\x75\\x51\\x51\\x35\\x40\\x6f\\xe3\\x0b\\x29\\x75\\x6b\\x06\\x5a\\x2d\\xd9\\xf9\\xb0\\x6d\\xe3\\xb2\\xc4\\xd2\\xe2\\x92\\xca\\xc6\\x34\\xb1\\xd6\\x98\\x78\\x40\\x67\\xce\\x88\\x12\\xae\\x3a\\xe6\\x1d\\x1f\\xf0\\xd9\\xbb\\xf6\\xf4\\x66\\xd4\\x56\\x57\\xd7\\x66\\xf4\\xee\\xe9\\xc2\\x1f\\x0e\\x1c\\x9f\\xe7\\x38\\x0d\\x5b\\xd7\\xf8\\xec\\x83\\xcb\\xe6\\x75\\xc3\\x98\\xc8\\x77\\xcf\\x5b\\x36\\x88\\x3f\\x5c\\xb3\\x15\\xe0\\x85\\x6d\\xc9\\x19\\x56\\x57\\x6e\\xb8\\x79\\xf9\\x52\\x4d\\x8c\\x31\\x56\\x23\\x1e\\x4d\\xae\\xb1\\x0c\\x0c\\xc7\\x15\\x3a\\xd3\\x82\\x25\\x3d\\x6d\\x01\\xe9\\xdf\\xcd\\xc2\\x8f\\x48\\xff\\xd6\\xa3\\x4e\\xf4\\x8c\\x3b\\x5c\\xee\\xdf\\xce\\xf1\\xfe\\xf5\\x5c\\xb3\\x90\\xe9\\x57\\x34\\xb5\\x9b\\xe5\\xee\\xa5\\xc7\\x96\\xa0\\x3e\\x72\\xe4\\x8a\\xf3\\x4c\\x74\\x74\\xfc\\x9d\\x1d\\x1d\\xe3\\x2e\\xf8\\xaf\\x47\\x69\\xda\\xc5\\x3d\\xee\\x68\\xa7\\xb3\\xa5\\xd9\\x59\\xef\\xac\\xfb\\xdf\\x06\\x2a\\x57\\x1e\\x28\\xf2\\xc5\\xdd\\x06\\x0a\\xdf\\x31\\x50\\x69\\xf5\\x9b\\x7a\\xb2\\x88\\x75\\xb4\\xa2\\x61\\x95\\xd1\\xb8\\xba\\xa1\\x62\\x79\\xb3\\x3d\\xab\\x7b\\x93\\xa7\\xaa\\xa5\\xd0\\x45\\xc6\\x88\\x8c\\x94\\xb3\\xb8\\xb5\\xea\\x75\\x7b\\xfd\\x9a\\xc1\\x56\\x6b\\x76\\x01\\x6c\\xdb\\xb4\\x2c\\xa7\\xaf\\x7f\\x69\\xa5\\x58\\xe1\\x1f\\x25\\xbe\\x31\\x7b\\xe8\\xd8\\x80\\xb8\\xb7\\x6b\\x77\\x4f\\x5a\\x35\\xf9\\x49\\xeb\\xd9\\xdd\\x05\\x1b\\x07\\x8e\\x0d\\x65\\x9f\\x86\\x0d\\x6b\\xc5\\xbd\\x83\\x8b\\x06\\xba\\x29\\x87\\x5e\\xf7\\xc0\\xa2\\x41\\xd8\\xb8\\x76\\x03\\xc0\\x93\\xfe\\x51\\x4a\\x5a\\xbe\\xc4\\x9a\\x91\\x2c\\x1e\\xb9\\x73\\x8c\\x24\\x9f\\xe0\\x1e\\xea\\xe5\\x40\\xa9\\x68\\xcd\\x75\\x35\\xf0\\x4a\\xa8\\x97\\x84\\x0f\\x4d\\x18\\xad\\x00\\xbc\\x10\\xc9\\x59\\xf4\\x82\\x02\\x55\\x1c\\x33\\xbc\\x00\\x5d\\xe3\\x02\\xf8\\x85\\xbb\\x45\\x2a\\xa7\\x18\\xf9\\xec\\x82\\x3d\\xee\\x08\\x95\\x4a\\x95\\xaa\\x4a\\xb5\\x59\\xa9\\x31\\xd9\\x42\\x25\\x81\\x64\\x4f\\x23\\x0c\\xd1\\x24\\x48\\x4b\\xf8\\x7c\\xc3\\x37\\xc4\\xe0\\xaf\\x83\\xf8\\xf3\\xc7\\xc5\\x7f\\x70\\x8b\\x3e\\xd3\\x04\\xae\\xe4\\x97\\x6e\\xd9\\xf2\\x9b\\xcf\\x37\\x83\\x23\\x2c\\xd9\\xc1\\x85\\x6b\\xac\\xfd\\xeb\\xef\\x68\\xbf\\xd5\\xdf\\x7e\\x0e\\x00\\xfc\\x70\\x5f\\xa9\\x61\\x91\\x53\\x7b\\x20\\x59\\xee\\x81\\xcf\\x2e\\xfa\\xf9\\x7d\\xf0\\x5f\\x18\\xd7\\x81\\xc7\\xdf\\x06\\xf1\\x27\\x8f\\x8b\\x7f\\xe5\\xd6\\x7e\\xba\\x99\\x5d\\xb8\\xb6\\x74\\xdb\\x36\\xf1\\xdf\\x9f\\x6b\\x6b\\x07\\x74\\x5a\\xdc\\xc9\\xcf\\x27\\x36\\x6c\\x33\\x9a\\x29\\xe7\\x31\\x64\\xfc\\x0a\\x71\\x72\\xec\\xd5\\xc4\\x89\\x4a\\xce\\xa8\\x10\\xcd\\x78\\x8e\\xe5\\xef\\xe5\\x34\\x84\\x72\\x31\\x8e\\xf0\\x1c\\x13\\x3c\\xad\\x9d\\x21\\x3c\\x80\\xc2\\x5c\\xa6\\xf9\\xef\\x24\\xf4\\xa3\\x83\\x4b\\xf1\\x2e\\xbf\\xba\\xa9\\xbc\\x7a\\xe7\\x8d\\x55\\xcb\\xaf\\x6d\\xaa\\xf0\\x82\\xa5\\x6e\\x69\\x8d\\x67\\xb4\\xc5\\x96\\x39\\xfb\\x9e\\xee\\x65\\xe2\\x4e\\x58\\x11\\xb2\\xe4\\xf2\\x87\\x1b\\xfe\\xbd\\xeb\\x17\\x4f\\x0c\\x56\\x6d\\x7f\\x76\\xb9\\x67\\x73\\x57\\x26\\x81\\x84\\xcd\\xf9\\xb8\\xff\\xa9\\x5d\\x8c\\x6b\\xe3\\x15\\x52\\xf7\\x42\\xbe\\xe9\\xf3\\xeb\\x1e\\xff\\xdf\\xd5\\x3d\\xfe\\x33\\xeb\\x2e\\x6d\\x47\\x72\\xe5\\xb1\\xcf\\xdb\\x7f\\xdf\\x5c\\x47\\xc9\\xfa\\x6b\\xab\\xfa\\xce\\x8d\\x94\\x5e\\xb5\\x94\\xf5\\xe6\\x34\\x10\\x0e\\x9b\\x84\\xea\\xa5\\x8d\\xc3\\xa4\\xee\\x23\\x61\\x83\\x47\\x9f\\x9d\\x2b\\xb9\\x1a\\x17\\x1f\\x99\\x99\\xd5\\x4d\\x13\\x76\\x1f\\xa8\\xf2\\x27\\xec\\x06\\xb4\\x96\\xfa\\xeb\\x84\\x12\\x09\\xd7\\x45\\x53\\xc3\\xd3\\x7c\\x00\\x01\\x2a\\x25\\x05\\xbc\\x86\\x22\\x00\\x3f\\xbf\\x32\\xb3\\xd3\\x44\\x45\\x50\\x08\\x11\\x08\\xca\\x24\\x8e\\x48\\xa7\\x5c\\x81\\xfd\\x3a\\x38\\xf2\\x1e\\xf7\\x82\\xb1\\x52\\xfc\\xe1\\x97\\x1e\\xff\\xa9\\xf8\\xe3\\x4a\\x48\\x7a\\x5f\\xfc\\x51\\x35\\x98\\x5e\\xbc\\xfc\\x6b\\x48\\xaa\\x15\\x7f\\x02\\x2f\\x3f\\xb5\\x89\\x40\\x7d\\xe0\\xf0\\x95\\x4d\\x57\\x60\\xd9\\x95\\x2d\\x57\\xc0\\x23\\x2e\\xbc\\xb2\\xf1\\x49\\x76\\x1e\\xfa\\x06\\xff\\x28\\xe1\\x7a\\x1d\\x23\\xf3\\xfe\\xa0\\x34\\xdd\\x23\\x19\\x7f\\xe6\\x30\\x23\\x94\\x5c\\xc0\\x83\\x3f\\x4a\\x47\\xc7\\xc9\\x2a\\x82\\x7e\\xfc\\x7b\\xb4\\x7a\\xca\\xd7\\x94\\xc8\\x4a\\xc7\\x78\\xaf\\xa7\\x7f\\xeb\\x8e\\x99\\xf8\\x02\\xd1\\x2f\\x3a\\x58\\xc4\\x13\\x29\\x03\\x5c\\x13\\x55\\x0b\\x66\\x20\\x44\\x2a\\xa1\\x54\\x53\\x4c\\x19\\xa5\\xb8\\xb5\\xe6\\x1a\\xad\\x7a\\x2d\\xac\\x7b\\x14\\x70\\x0c\\x5c\\x16\\x4c\\x5b\\xe0\\xb7\\x4b\\xe1\\x3b\\xac\\xce\\x63\\x82\\x9e\\xfb\\x8b\\x42\\x4b\\xba\\xa4\\x59\\xda\\x37\\xb4\\x72\\x18\\x17\\x0f\\x8c\\x3c\\x87\\xee\\xc2\\x98\\x31\\xe6\\xd0\\xcf\\x51\\xd7\\xe4\\x28\\x2f\\x06\\x69\\x40\\xb8\\x99\\x44\\xa1\\x01\\xa2\\xa9\\x8a\\x66\\x04\\xa9\\x14\\x48\\x0f\\x7a\\x05\\x33\\x84\\xd0\\x44\\xc3\\x3a\\x62\\x5f\\x64\\x14\\x34\\x2c\\x8e\\x04\\x2c\\x39\\xbd\\xcd\\xb5\\x35\\xb5\\xc9\\xcb\\xb7\\x6f\\x2f\\x75\\xa4\\xcd\\x59\\xb1\\xaf\\x23\\x55\\x38\\xa5\\x89\\x25\\x5b\\xdd\\xd2\\xe5\\xe6\\xf0\\xbc\\x1c\\x6b\\x86\\x75\\x2b\\xad\\x17\\xbc\\x21\\xe8\\xf0\\x33\\x8a\\x2e\\x24\\xf8\\xf3\\xec\\x21\\x1e\\xd5\\x30\\x36\\x50\\x20\\x98\\x58\\x70\\x3a\\x68\\x2e\\xf1\\x37\\x9e\\x83\\xa2\\x26\\xe1\\x07\\x9b\\x0e\\xae\\x61\\x38\\x00\\x5c\\x24\\xe8\\xb8\\x14\\x7a\\x0d\\xe5\\x04\\x15\\x48\\x25\\xa5\\x4b\\x34\\xec\\x12\\x2b\\x4d\\x1c\\x8f\\xef\\x69\\x28\\x78\\x4e\\xd0\\x95\\xad\\x39\\xb8\\x09\\xa9\\xc4\\x5f\\x8b\\x6f\\x2a\\x76\\x09\\x57\\x59\\x4e\\xbe\\x32\\xd2\\xb2\\x65\\x68\\x17\\x3a\\x8b\\xae\\x42\\xb1\\xd4\\xfd\\xc3\\x09\\xa4\\xa1\\x98\\xc7\\xc0\\x8f\\x24\\x11\\x36\\x39\\xa5\\x20\\x28\\x54\\x0a\\x41\\x35\\x62\\x21\\x09\\x01\\x83\\x84\\x80\\x40\\x62\\xf5\\x99\\x31\\x62\\xd6\\x60\\x82\\x6c\\x5c\\x1d\\x01\\xbc\\x0e\\xa8\\x8f\\x7e\\x28\\x12\\x54\\xd1\\x40\\x66\\x5d\\xe0\\x50\\x2c\\xcc\\x30\\x40\\x48\\xf0\\x8c\\x90\\x21\\x14\\x86\\xc8\\x6c\\x0c\\x1f\\x4f\\x9d\\xae\\xf3\\x58\\xe3\\xe3\\x4c\\xa1\\x42\\x70\\xb0\\x3e\\x98\\x74\\xed\\xa2\\xff\\xe6\\x41\\xfe\\x2b\\x42\\xc2\\x42\\x82\\xc3\\xfe\\xc7\\xa7\\x52\\x40\\xc9\\xc0\\xb9\\x73\\xbb\\x77\\x2f\\x5f\\xde\\xdd\\x5d\\x5e\\x9e\\x9a\\xaa\\xd3\\x21\\x74\\xee\\xea\\xb9\\xab\\x57\\x9e\\xb8\\xfc\\xc8\\xa5\\x0b\\xbb\\xcf\\xee\\x3e\\x7b\\xf2\\xf8\\x91\\xc3\\xfb\\xef\\x59\\xbe\\x6b\\xf9\\xae\\x6d\\x5b\\x36\\xac\\x5f\\xb3\\xaa\\x7b\\x59\\xf7\\xb2\\x45\\x0b\\x86\\xe6\\xce\\x99\\x55\\xde\\x55\\xde\\x35\\xb3\\xb5\\xb1\\xa1\\xb6\\x3a\\xb5\\x2c\\xb5\\xac\\xb8\\x30\\x97\\x64\\x38\\xd1\\xd9\\x75\\x76\\x6b\\x92\\x31\\x21\\x36\\xda\\x4f\\x64\\x9c\\x4c\\xa7\\xdb\\xb4\\xd5\\x3d\\xfd\\x13\\xcd\\xf4\\x32\\xff\\xfb\\x27\\x9f\\x77\\xe7\\x6f\\xc5\\x91\\xb8\\x8b\\xcc\\xa6\\x5c\\xc3\\x08\\x4d\\xe6\\x18\\x93\\xa4\\x0f\\x84\\x1f\\x19\\x5c\\xf4\\xa3\\x3c\\x00\\x10\\x40\\xef\\xbf\\xc3\\x4a\\xfa\\x51\\x34\\xf9\\xa8\\x8e\\x7e\\x22\\x17\\xa2\\x9f\\x04\\x89\\xef\\x4d\\xfb\\xc8\\xd7\\x1c\\x97\\x3b\\xf5\\xa3\\x46\\xc3\\xd4\\xbb\\x8b\\x3f\\x32\\xe4\\x36\\x4e\\x2a\\x65\\x8e\\x0c\\x72\\x92\\x4f\\x26\\x3f\\x4f\\x17\\xc4\\xff\\xdd\\x46\\x38\\xcc\\x62\\xb3\\xab\\x6c\\x11\\xe6\\x58\\xb5\\x3a\\xd6\\x1c\\x21\\xfe\\x7e\\xda\\x27\\x01\\x53\\x3f\\xf1\\x7d\\x3c\\xad\\xcc\\x2f\\x52\\xaa\\xb2\\x62\\x63\\xb3\\xaa\\x52\\x22\\x08\\xcf\\x32\\xa1\\x60\\x89\\x10\\xa2\\xff\\x97\\xfb\\x20\\xa4\\x42\\x4d\\xe2\\x90\\xf2\\x30\\xe1\\x15\\xe0\\x51\\x00\\x0a\\x41\\x1a\\x14\\x89\\xe2\\x50\\x22\\xb2\\xa2\\x65\\xee\\x78\\x63\\x82\\x8e\\xe3\\xb0\\x35\\x31\\x2e\\x52\\x4f\\x04\\x6b\\x28\\x99\\x5f\\x81\\xc1\\xc0\\x11\\xea\\xde\\x18\\x1e\\x31\\x53\\x41\\x3a\\x15\\x67\\x02\\xf8\\xc9\\x33\\x69\\xe4\\x27\\xc0\\xc4\\xee\\xa0\\x45\\x98\\x7c\\x07\\x98\\x1b\\x9c\\xfc\\x39\\x71\\x06\\x0a\\x34\\xc9\\x76\\x80\\x40\\x84\\x34\\x79\\x2a\\x1f\\xae\\x20\\x2b\\x55\\xd0\\x13\\x89\\xcc\\x59\\x69\\x8c\\x60\\xae\\xa0\\x4d\\x22\\x12\\xd9\\x29\\x40\\x6e\\x12\\xb9\\xb9\\x52\\xb0\\x26\\x71\\x56\\x82\\x15\\x07\\xbd\\x46\\xc9\\xf1\\xad\\x41\\x1b\\x07\\xaa\\x0b\\x66\\x90\\x7f\\xb0\\x21\\x18\\x1a\\xc5\\x47\\x6f\\xad\\x09\\x16\\x9f\\x85\\x5e\\xee\\x7e\\x0c\\x65\\x95\\xe2\\xf7\\xc6\\xfe\\x8e\\xc5\\x57\\xab\\xc0\\x62\\x57\\x9f\\x28\\x7b\\x9b\\x1b\\x50\\x9f\\x2c\\x7f\\x8b\\x98\\x89\\xbe\\x00\\x83\\xfc\\x43\\x21\\xd0\\x26\\x5e\\x12\\xd5\\x33\\x36\\xcf\\xad\\x29\\xa4\\xff\\xc0\\xd3\\x61\\x67\\x2b\\xdf\\x1d\\x3b\\xac\\x3e\\x5b\\xf5\\x2e\\xfe\\x05\\x86\\xea\\x2a\\xf1\\xc3\\xb1\\x9f\\x63\\xf1\\x85\\x1a\\xb0\\x4b\\x7a\\xf7\\x2b\\xfe\\xb8\\x25\\x8e\\xe2\\xf8\\x28\\xde\\x82\\xc3\\xd4\\xf3\\x02\\x88\\x91\\xb2\\x0b\\x80\\x11\\x87\\xc7\\x03\\x19\\xe4\\x40\\x30\\x72\\x64\\x8b\\xd3\\x6a\\xf8\\x70\\x9e\\x24\\xeb\\x50\\xd0\\xed\\x46\\x09\\xb9\\x0c\\x04\\xe5\\x67\\xf9\\x4c\\x32\\x96\\x70\\x8c\\xe2\\xce\\xc8\\x67\\xed\\x16\\x4f\\xee\\x12\\x9f\\xf5\\xc2\\x77\\xe6\\x5e\\xdd\\xdd\\xd8\\xb8\\xfb\\xea\\x5c\\xf1\\xa7\\x10\\xef\\x5e\\xda\\x92\\x96\\xd6\\xbc\\xcc\\x4d\\x5e\\x7f\\xb3\\x1a\\xfe\\x50\\x2d\\xde\\xeb\\xbb\\x21\\x5c\\xc3\\x05\\xcb\\x1f\\x5a\\xb4\\x88\\x50\\x78\\xc1\\x19\\xb0\\xd6\\x2e\\x28\\xa7\\x89\\x86\\x01\\x71\\x52\\x9e\\x2b\\xbe\\x89\\xe5\\x57\\xb2\\xa3\\x85\\x6e\\x2d\\xd5\\x6c\\x4c\\x89\\x1c\\xe6\\x05\\x7e\\x06\\x20\\x81\\x76\\x3d\\xef\\x37\\xeb\\xc4\\x20\\x39\\xf1\\x49\\xe4\\x84\\x59\\xd7\\x23\\xc1\\x6b\\x63\\xdc\\xf1\\x77\\xd8\\xbb\\xe3\\xa7\\x95\\x20\\xd4\\x0f\\x2c\\x2f\\x56\\x32\\x05\\xb3\\x26\\x91\\x56\\x25\\x4d\\xca\\x8d\\xa5\\xff\\xb4\\xdc\\x58\\xae\\x11\\xf1\\xe4\\x4a\\x58\\x9d\\xb7\\xf4\\xe2\\xf0\\xd0\\x69\\x97\\xf7\\x89\\x00\\xd7\\xd9\\xf9\\x0b\\x2f\\x11\\x2e\\x0f\\x53\\xdd\\x48\\x53\\xcf\\x06\\xb3\\x79\\xfd\\xac\\xc6\\x91\\x5a\\x13\\x9e\\x0d\\xa3\\x73\\xce\\xd2\\x34\\x59\\xee\\x22\\xdf\\x7f\\x84\\xef\\xad\\xad\\xa8\\x19\\xcf\\x92\\x55\\xe6\\xfb\\xb7\\xbb\\x55\\xca\\x92\\x05\\xe8\\x4b\\x08\\xf1\\x35\\x8a\\xdb\\x48\\x29\\x65\\xcb\\xc6\\x1c\\xdd\\xdb\\xfd\\xf3\\x6f\\x3a\\xee\\x98\\xa1\\x9f\\x6b\\x7c\\xb6\\x9b\\xf8\\x3b\\x5e\\x89\\x0b\\x16\\xc8\\x5d\\xe4\\xfb\\x64\\x09\\xeb\\xee\\x72\\x9f\\xc8\\x4f\\xbb\\x4f\\x16\\xe1\\x15\\xc6\\xaf\\xdd\\x94\\xf0\\xcf\\xe0\\xcf\\xa1\\x44\\x00\\x5e\\x14\\x9f\\xe2\\xcf\\xe7\\x06\\x88\\x17\\x58\\x2a\\x44\\x84\\x39\\xdc\\x8f\\xc6\\x63\\xa2\\x65\\x2c\\xb0\\x45\\x1d\\x69\\x94\\x43\\xa2\\x65\\x98\\xd0\\x78\\xdc\\xbf\\x89\\xa1\\xac\\x73\\x7c\\xa5\\x37\\x0e\\xff\\xf0\\x6c\\x4b\\xf1\\xfa\\x2f\\xae\\xc6\\xad\\x2b\\x2a\\x0d\\xf8\\x2b\\x5f\\xbb\\xc1\\xf8\\x8c\\xc5\\x94\\x96\\x93\\xdf\\xde\\xbb\\xeb\\x2b\\xfb\\xeb\\x8e\\xe7\\x2f\\x3c\\xde\\xfb\\xce\\x77\\x7c\\x03\\x92\\x7f\\xff\\x86\\xf8\\x0b\\x62\\x2b\\x29\\x40\\x71\\x34\\x52\\x38\\x24\\x18\\x73\\x35\\xe3\\x09\\xf3\\xfc\\x74\\x0f\\xa4\\x4d\\xcc\\x2d\\x18\\x47\\x13\\xea\\xe9\\x8d\\x44\\x2f\\xd3\\x4d\\xae\\x82\\xd2\\x2a\\xcd\\x49\\x7f\\x15\\xec\\xbe\\x9a\\xef\\xad\\x78\\xe9\\x40\\x73\\xea\\x9c\\x13\\x0b\\x32\\x2b\\x07\\x8a\\x62\\x1d\\xbd\\x1b\\x6a\\xbe\\xc7\\xe2\\x3f\\xc4\\x5f\\x96\\x6d\\xf8\\xe2\\xca\\x82\\xc3\\xbb\\x17\\x68\\x8e\\x85\\x17\\x36\\x0f\\xe4\\x35\\xac\\x6d\\xb6\\x89\\xb1\\x12\\x56\\xe7\\x69\\xf2\\xb4\\x37\\x49\\x95\\x22\\x50\\xb1\\xbb\\x00\\x00\\x14\\x0c\\x9a\\x44\\x0f\\x33\\x0a\\x18\\x24\\xec\\x5e\\x82\\xc0\\x82\\x41\\x19\\x3b\\x02\\xc1\\x01\\xcb\\x88\\x41\\x52\\x3e\\x42\\xf6\\xf7\\x86\\x53\\xf7\\x59\\x00\\x36\\x01\\x81\\x2b\\xc9\\x11\\x55\\xf4\\x3f\\xe0\\xcf\\x88\\x5f\\x84\\x4d\\xbf\\x16\\x6f\\xba\\x4e\\xce\\xf7\\x7a\\xe7\\x9f\\x74\\x81\\x8d\\xf8\\xed\\x5a\\xc7\\x6e\\xe3\\x13\\xff\\xfc\\xa7\\x6f\\x29\\x79\\xbd\\x09\\x40\\xbc\\x8d\\x29\\x9f\\xed\\xc3\\xa4\\x1e\\x5b\\x69\\x2c\\x0e\\xf5\\x3c\\x4e\\xad\\x07\\x19\\x71\\x8c\\x94\\x58\\xaa\\xcf\\x7f\\x5f\\x0b\\x0a\\x8f\\x22\\xb5\\xe8\\x11\\x9f\\x86\\x75\\xbf\\x13\\x7f\\xe7\\x38\\xd1\\x7b\\xf3\\x66\\xef\\x89\\x54\\xe0\\x88\\x93\\x59\\xf4\\xbd\\x0b\\xef\\xbf\\xfe\\xba\\x14\\x73\\xf0\\xe1\\x87\\xf0\\x1e\\x02\\x94\\x46\\xea\\xf0\\x28\\x8d\\xe7\\xa3\\xb8\\xa0\\x19\\x77\\x46\\x65\\x61\\xcc\\xf5\\x48\\x21\\x68\\x0a\\x39\\xa8\\xe1\\x4e\\x6f\\x3f\\xf1\\x23\\xc9\\x71\\x0d\\x27\\x17\\xdf\\x10\\x6f\\x82\\x38\\x17\\x0c\\xdf\\x14\\x5f\\x80\\x65\\x3f\\xc3\\xc7\\x7d\\xcb\\x48\\x24\\xbc\\x6f\\x23\\xde\\xeb\\x2b\\xf5\\xa9\\xd9\\x1c\\xcc\\x23\\xcf\\xfa\\x22\\x5f\\xf0\\x99\\xcf\\x8a\\xfc\\x8c\\x67\\xc9\\x01\\x2f\\x2f\\xee\\xf5\\x92\\x67\\x88\\xdb\\x3e\\xfe\\x89\\xf8\\x3c\\x2c\\xfd\\x1d\\x8d\\xa2\\x20\\xac\\x5d\\x34\\x8c\\x82\\x36\\x51\\x9a\\xef\\x64\\x99\\xf0\\xe7\\x58\\x6e\\x2f\\x1a\\x47\\x81\\x10\\xd5\\xd2\\xe8\\x53\\xa0\\x47\\x22\\x2a\\x98\\x14\\x82\\x2f\\x3f\\x45\\x4a\\x5b\\xe4\\x8f\\x47\\x00\\x3b\\xac\\x86\\x31\\xf1\\xc5\\x1b\\xe2\\x21\\xaf\\x97\\x8b\\xc7\\xf7\\x9d\\xf9\\xe4\\x37\\x78\\x9f\\x4f\\x72\\x2f\\x20\\x96\\x8c\\x97\\xbf\\x9f\\x2f\\xf8\\x94\\xfb\\x47\\x7e\\xfe\\xfd\\xad\\xb0\\x19\\x3e\\x16\\x5f\\xf5\\x8a\\xbb\\xbd\\x5e\\x3c\\x1f\\x3e\\x3c\\x3b\\xd6\\x2f\\x45\\x3d\\x48\\xf7\\x5f\\x26\\xfe\\x98\\xd5\\x3f\\x8e\\x72\\xc0\\x93\\x4f\\x58\\x30\\x9a\\x9c\\xfd\\x40\\x10\\xd8\\xdc\\x94\\x28\\x25\\xf4\\x3c\\x7b\\x4a\\xa4\\x3a\\x52\\xb2\\xb4\\x19\\xb8\\x89\\xd5\\x4a\\xdc\\x79\\xfe\\x07\\x1a\\xf1\\x4f\\x97\\x5c\\x1e\\xc9\\xcf\\x1c\\x3c\\x3a\\x80\\x0b\\x9a\\x32\\x34\\x60\\x28\\x19\\xa8\\xf0\\x8a\\xbe\\x1b\\x78\\x0d\\x57\\x86\\x67\\x9e\\xf9\\xe6\\x8e\\x1d\\xef\\x1d\\xac\\x3f\\x5e\\xb8\\xe8\\x78\\xd7\\x9c\\x33\\x4b\\x0a\\xb1\\x6f\\xee\\x04\\x27\\xf5\\x1a\\xf1\\x97\\xfc\\x66\\x52\\x31\\x23\\x45\\xad\\x93\\x75\\x8b\\x6b\\xe4\\x14\\x42\\x88\\xe3\\x18\\x5a\\x35\\x52\\x66\\x53\\x30\\x26\\xc4\\x1b\\xe8\\xe2\\x8d\\xd4\\x27\\xd0\\xfd\\x52\\x42\\x89\\x87\\x08\\x6c\\xe1\\xa6\\x73\\x7e\\xbe\\x07\\x5a\\x9b\\xf7\\x55\\xb3\\x09\\xf9\\x32\\x84\\x25\\x3a\\x3d\\x73\\x8b\\x33\\xf3\\x1b\\x33\\x22\\x20\\xb1\\xa4\\xcb\\xa5\\xf2\\xfe\\xda\\x8b\\x7b\\xf0\\x9e\\xf2\\xcd\\xd7\\x96\\x59\\x7a\\x66\\xf5\\x34\\xe4\\x05\\x1f\\x0b\\x2f\\x6a\\x1e\\x70\\xd5\\x8d\\xb6\\xd8\\xc5\\x38\\x39\\xa6\\x03\\xa3\\x85\\xb7\\x7f\\xc6\\xb7\\x90\\x73\\xac\\x13\\xd5\\x50\\xac\\x46\\x7e\\x76\\x02\\xc7\\x73\\x1c\\x63\\x68\\x53\\x82\\xcc\\x78\\x12\\xc7\\x3a\\x68\\x1c\\xdb\\x96\\x1a\\x6d\\x8f\\x22\\xb6\\x1e\\xd6\\x4d\\x82\\xe5\\x4e\\x0b\\x8f\\x7e\\xc2\\x0d\\x42\\x09\\x4e\\x27\\x5c\\x27\\x6a\\x16\\x6b\\x4f\\x0c\\xfd\\x2c\\xaf\\x8d\\x7a\\x9c\\x5f\\xac\\xa5\\xed\\x58\\x69\\xe6\\xb2\\xa2\\x95\\x5f\\xda\\x5e\\x95\\xd1\\xb5\\xb9\\x09\\x2c\\x79\\x56\\x4d\\x72\\xd3\\xea\\x7a\\x75\\x42\\x58\\xdf\\xa0\\xbd\\x65\\x75\\x6d\\xed\\xea\\x16\\x3b\\x78\\xaa\\x4d\\x4d\\xa9\\x62\\x79\\x5d\\x95\\xd3\\x15\\x1a\\x9f\\x11\\x9f\\x90\\x9e\\x10\\x6a\\x00\\x63\\x7c\\x4c\\xdc\\xf0\\xd3\\xbf\\xdd\\x03\\xfa\\xf5\\xff\\x77\\x7f\\xdf\\x85\\xf2\\x95\\xa7\\xbb\\xc4\\x5f\\xcf\\xbf\\xb6\\xab\\x91\\xe7\\xfb\\xc6\\xce\\xc3\\xcc\\xf9\\xcf\\xed\\x6d\\x6a\\xd8\\x43\\xd0\\xce\\x67\\x0e\\xfe\\xb5\\x7b\\x46\\x30\\x86\\xed\\x5f\\xa9\\xac\\x78\\x6b\\x0d\\x2c\\xa9\\xda\\xd8\\xeb\\x70\\xf5\\xad\\xaf\\x20\\xed\\x9f\\x45\\xec\\x18\\x07\\xf8\\x66\\xe4\\x40\\x55\\xb4\\xfd\\xb9\\x59\\xf1\\x77\\x69\\x7f\\xfc\\x94\\xf6\\x47\\xd9\\x6c\\xd3\\xdb\\x2f\\x1d\\x79\\xb5\\x13\\x51\\x8a\\xa4\\xf9\\x93\\x99\\xa9\\x15\\x4a\\xb9\\xf5\\xb9\\x13\\xec\\x6a\\x07\\x7a\\x2f\\x54\\xe5\\xef\\xaa\\x5f\\x71\\x7d\\x47\\x4d\\xf6\\xac\\x9d\\x2d\\xc9\\x25\\x29\\xba\\x94\\xa6\\x55\\xb5\\x19\\xa9\\x73\\xe6\\x93\\x24\\x70\\x1e\\xcf\\xba\\x56\\x7b\\x79\\x49\\xf3\\xa0\\x18\\xda\\xda\\xe8\\x70\\x41\\x98\\x31\\x3b\\x31\\x31\\x2b\\x21\\x6c\\x06\\xc4\\xc5\\x26\\x98\\xfa\\x2e\\x7e\\x67\\x73\\xc1\\xd0\\x17\\x76\\xd4\\x5f\\xc8\\xea\\x58\\x5d\\x5e\\xd4\\x77\\x61\\xb4\\x62\\x46\\xf3\\x77\\xb7\\x2f\\xec\\xbb\\x7f\\x75\\x59\\xcd\\xc6\\x87\\x67\\x2d\\x5a\\xf9\\xa6\\x47\\x0b\\x4f\\x2c\\x7a\\x2c\\x3f\\xff\\xc2\\x9c\\xa5\\x34\\x34\\xcc\\x56\\x3b\\x37\\x9f\\x72\\x6d\\x92\\x58\\xf0\\x2f\\x51\\x9c\\x10\\xdd\\x3f\\xa8\\x73\\xa1\\x4d\\x4a\\x53\\xc0\\x8f\\xaf\\x68\\x65\\x2f\\x52\\x92\\xd3\\x97\\x7f\\xd9\\xb5\\xb2\\x96\\x52\\x46\\x7b\\x2a\\x14\\xb5\\xa6\\x89\\xb8\\x16\\xa8\\xa6\\xb9\\x27\\xbc\\x7f\\xfa\\x13\\x2c\\xf3\\xde\\x17\\x7e\\xd9\\x57\\x23\\x44\\x9e\\x06\\x38\\x7d\\x6b\\xdb\\x44\\x58\\x3d\\x02\\x94\\x43\\x62\\x43\\x0e\\x30\\x4c\\xf9\\xf4\\xe7\\x45\\x4e\\x7f\\xde\\xb8\\xa9\\xdb\\x69\\xbc\\xe3\\x59\\xb1\\xbf\\xc1\\x7b\\x7e\\x01\\x5b\\xbc\\xdb\\xc3\\x1f\\xf5\\xd5\\x71\\x0f\\x9f\\x3e\\x3d\\xf6\\x8f\\x89\\x48\\x1a\\x84\\xf0\\x78\\xfc\\x3e\\x87\\xe2\\xd0\\x2a\\x77\\x60\\x2c\\x08\\x40\\xc6\\x50\\x90\\x09\\xa0\\xcc\\x08\\x78\\x1a\\x27\\x42\\x0d\\x6e\\x98\\x43\\x0b\\xa9\\x57\\x18\\x09\\xdc\\x3c\\xa5\\x44\\x6c\\x21\\xfb\\x2a\\x93\\xee\\x2c\\x86\\x47\\xee\\x5a\\xae\\xc7\\x1d\\xca\\xf3\\x7c\\x1c\\x1f\\x47\\x73\\x1e\\xd1\\x0a\\xb3\\x00\\x35\\xc7\\xdd\\x89\\x00\\xf0\\xa3\\x27\\x4f\\xc2\\x8e\\xe9\\x64\\x00\\xe0\\xc4\\x2f\\xc2\\x2b\\x9f\\x41\\x08\\x80\\xd1\\x31\\xd2\\xa6\\x54\\xbe\\x80\\xe9\\x7b\\xa7\\xdc\\x81\\x7a\\x10\\x40\\x31\\xa9\\x4d\\x89\\xb4\\xb2\\x02\\x2c\\x9c\\xd2\\x24\\x3a\\x5d\\x23\\xe5\\x16\\x49\\x9e\\x14\\x93\\xdc\\xac\\xcf\\x2a\\xea\\x36\\x4f\\x6f\\xfc\\xf4\\x62\\xc4\\xfa\\x10\\x48\\xf1\\xc5\\x7e\\x81\\x9c\\x44\\xdb\\x7d\\xb7\\x90\\x24\\x7c\\xf5\\xd4\\x29\\xd8\\x32\\x35\\x2c\\xe9\\x9b\\xd8\\x35\\xf6\\xef\\xbb\\xc6\\x26\\xfd\\x9c\\xb4\\xb5\\x5f\\xe6\\x5f\\xe0\\x80\\x83\\xc8\\x3b\\x38\\x67\\xd8\\xa1\\x5a\\xe0\\x31\\xad\\xc3\\x14\\xfe\\x05\\xaa\\x33\\xf8\\x71\\x84\\x64\\xaa\\xc8\\x3a\\xe9\\xcf\\xbd\\xc6\\x32\\xd6\\xe3\\x8b\\x72\\xc1\\xdf\\xe5\\x35\\x44\\x71\\x78\\x78\\x86\\x46\\xea\\x6c\\x31\\x1f\\xde\\x91\\x3a\\xdb\\x57\\x4d\\xfb\\xda\\x72\\xfb\\x77\\xfc\\xbd\\xc4\\xf7\\x6e\\x43\\x39\\xa8\\xcd\\xdd\\x1c\\xea\\xef\\x6b\\xca\\x59\\x99\\x04\\x88\\xe7\\x89\\x56\\x41\\x7a\\x83\\x27\\x40\\x02\\x39\\x7e\\x23\\xce\\xc3\\x60\\x58\\x32\\xaf\\x38\\x15\\x0e\\xf6\\x14\\x40\\xd9\\x99\\x29\\x39\\xf6\\x9c\\x04\\x43\\x54\\xa4\\x56\\x33\\x83\\xa0\\xa4\\xc1\\x46\\xb1\\xf9\\x02\\xed\\x1e\\xca\\x96\\xe6\\x20\\x09\\xcb\\x98\\x5c\\x08\\x57\\xdf\\x99\\xc8\\x19\\xfc\\xa1\\xf3\\x0a\\x2d\\x97\\xb2\\xf9\\x95\\x9d\\x15\\x65\\x83\\x65\\xc6\\x93\\x90\\x53\\x50\\xbd\\xf1\\x72\\xff\\x87\\x6f\\xfb\\x7a\\xcd\\xcd\\x9b\\xbb\\x33\\x1a\\xcb\\x9c\\xba\\x8c\\x50\\x67\\xc3\\xb0\\xb8\\x1e\\xfe\\xa8\\x75\\x74\\x55\\x6c\\x3b\\xa8\\xeb\\x7e\\xe0\\xa3\\xed\\x47\\x67\\x94\\xf6\\x6f\\xf5\\xb4\\xaf\\x8f\\x3a\\xfa\\xab\\x87\\xba\\xc4\\x0f\\xc5\\x9f\\xbd\\x78\\x4f\\xef\\xc5\\x75\\xd5\\x61\\xd1\\x86\\x90\\x7b\\x66\\x98\\xe2\\x75\\x5c\\xf7\\x48\\xd3\\xbd\\xc3\\x45\\x7f\\xff\\x15\\x62\\x6d\\xa5\\xf6\\x6b\\xbe\\x09\\x59\\x50\\x36\\xea\\x70\\xb7\\x05\\xd3\\x18\\x2a\\xe0\\x14\\x46\\xd2\\xd6\\x44\\xd6\\x56\\x04\\x82\\x82\\xb4\\x9f\\xc6\\x21\\x70\\xbc\\x82\\x1b\\xa4\\x38\\x7e\\x39\\x4e\\x67\\x52\\x73\\x93\\xad\\x80\\xd2\\x52\\xad\\xd9\\xc9\\xd9\\x34\\x95\\xb5\\x46\\x1d\\x18\\x80\\x2c\\x60\\x99\\x68\\xae\\xc5\\xc2\\x9a\\x2b\\x07\\xb5\\x30\\x10\\xa8\\x6b\\x3c\\x69\\x35\\x6b\\x2f\\x16\\x97\\x5f\\xdd\\x58\\xbe\\x7d\\xdb\\x09\\x70\\x15\\x86\\xb6\\xac\\xb9\\xaf\\x65\\xc9\\xc5\\x85\\x0e\\x5f\\x2f\\x67\\xa9\\x5d\\x54\\x35\\xef\\x40\\x66\\x7d\\x64\\x45\\xcf\\xc8\\x50\\x76\\xbb\\x3b\\x35\\x00\\x7e\\x1d\\x5b\\xd0\\x13\\x41\\x33\\x44\\x81\\xfe\\xd9\\xc3\\x8d\\x4b\\xb4\\x83\\x0f\\x8f\\xba\\xeb\\x76\\x3c\\xb3\\x68\\x7d\\xc3\\x9e\\x79\\x05\\xa5\\xe9\\x9b\\x49\\x9a\\xa8\\x48\\xee\\x3d\\x9a\\x26\\x2a\\xd2\\x35\\xaf\\x31\\x1d\\x01\\x7a\\x57\\xfc\\x1e\\x7f\\x90\\xcc\\x29\\x03\\x4a\\x26\\x2b\\x5b\\x40\\x98\\x13\\xf0\\x10\\x02\\x06\\xe5\\x56\\xf8\\xd9\\x51\\x64\\x05\\x23\\x59\\x1d\\x45\\xe6\\xf3\\xd4\\x9d\\xdf\\x34\\x1e\\x77\\x8a\\xdf\\x5b\\xfa\\xf8\\xaa\\xa2\\xe2\\xb5\\x57\\x57\\xe3\\x96\\x65\\x95\\x71\\x90\\xde\\x77\\x60\\xf6\\x4f\\xbc\\xde\\xc3\\x70\\xfe\\x23\\xce\\x19\\x3a\\xfb\\xd8\\x5b\\xeb\\x76\\xbd\\x77\\xa0\\xee\\x58\\xc1\\xa2\\x63\\xbd\\x43\\xe7\\x16\\xe7\\xf9\\x86\\x85\\x6b\\x14\\x90\\x28\\xe5\\x2a\\x13\\x45\\xbe\\x88\\xc5\\x48\\xd0\\x5c\\x5f\\x81\\x18\\x6a\\xfc\\xe1\\xae\\x43\\x3c\\x4c\\x9c\\x41\\xd8\\x9e\\x4f\\x63\\xa7\\x23\\x04\\x45\\x04\\xad\\xc8\\x34\\x6d\\x5d\\xaa\\xc8\\xd5\\xce\\x23\\xc3\\xf9\\x29\\xdd\\x07\\x06\\xb3\\x4a\\xbb\\xf2\\xa2\\xb2\\xbb\\xd6\\xd5\\xbc\\xe3\\xf5\\xae\\x83\\xf5\\x3f\\xc1\\xf3\\x42\\x2a\\x97\\x9d\\x1a\\xc8\\xbb\\x67\\xcb\\xdc\\xf0\\x63\\x61\\x79\\x75\\x7d\\x8c\\xfd\\x54\\x8e\\x8e\\xa5\\xe7\\x20\\xd1\\xc3\\x47\\xb1\\xf3\\x0b\\x45\\xe9\\x01\\x27\\x04\\x4b\\x6b\\x0c\\x21\\x5e\\x20\\x9a\\x17\\x91\\x71\\x74\\x0f\\x98\\x1a\\x38\\x83\\x10\\xb9\\x20\\x46\\xad\\xa1\\x44\\x08\\x4c\\xd4\\x31\\xb1\\x7c\\x67\\xfe\\x52\\xa6\\x1e\\xc1\\x0a\\xf8\\xab\\x37\\x85\\xa4\\x2f\\x8d\\xcb\\x99\\x48\\x5f\\x1a\\xea\\x25\\x1d\\xb1\\x14\\x9f\\x98\\x92\\xbf\\x14\\xff\\xc8\\xb7\\x89\\xd4\\x04\\xd0\\xb3\\xa4\\x4e\\x3a\\xbe\\xe0\\x33\\xeb\\x14\\xf9\\xff\\xa3\\x4e\\x4b\\x49\\x9d\\x52\\xdb\\xd6\\x37\\x18\\x9c\\xa4\\x4e\\xb1\\x71\\xd1\\xca\\xf2\\x1a\\x52\\x27\\x29\\x2e\\xf6\\xd6\\xb2\\x99\\x3b\\x7a\\xe4\\x3a\\x2d\\xee\\xc5\\x56\\xa6\\x3a\\x62\\xd4\\x4b\\xf4\\x82\\x2e\\x82\\x25\\x49\\x44\\xe9\\x34\\x47\\x9a\\x01\\x38\\x14\\x77\\xf7\\x1c\\x69\\x71\\x1e\\x25\\x4c\\x90\\x1b\\x98\\x4d\\x34\\x34\\xc7\\x94\\x6e\\x4e\\x8f\\xd2\\xb3\\x1c\\x69\\x89\\x90\\xa8\\x52\\x4c\\xcf\\x91\\x26\\xab\\x00\\x53\\xd2\\xa4\\x95\\xec\\x7c\\xf7\\xde\\xea\\xe6\\x03\\x2f\\xad\\xd8\\xfa\\xe2\\xd6\\x52\\xae\\xd2\\xda\\xb1\\x77\\x8e\\xb3\\xa7\\xbe\\x38\\x2a\\x43\\x5d\\xd8\\xb5\\xaa\\x8f\\x24\\x6c\\x4f\\x05\\xdf\\xa8\\xd1\\xb3\\x41\\x78\\xb3\\xff\\xf1\\x5f\\xdf\\xf3\\xbd\\x83\\x7f\\x7a\\x7a\\x10\\x3a\\x2f\\xfe\\x64\\xff\\xa3\\xb3\\xe7\\x3e\\xbd\\xab\\x21\\x2c\\x2a\\x9e\\xae\\xf5\\x04\\xdd\\x27\\x2f\\x37\\xef\\x7d\\x76\\xa8\\x77\\xe6\\xb1\\x65\\xa5\\x08\\xd0\\x09\\xd2\\x96\\x36\\x86\\x83\\x2d\\x72\\xe7\\xf3\\x80\\xc0\\x4c\\x2d\\xba\\xf5\\xe3\\x91\\x78\\x98\\x82\\x34\\x15\\x43\\x72\\x2e\\x14\\xdd\\xe4\\x40\\x3c\\x8b\\x39\\x22\\x39\\x5c\\x56\\xbc\\x9d\\x46\\x4a\\xf4\\x3c\\xdd\\xe5\\x4c\\x81\\x8f\\x4e\\xae\\xde\\xb7\\x86\\x9b\\x0f\\xe2\\xfc\\xa5\\x4f\\x8e\\x96\\x90\\x14\\xeb\\x8b\\xbb\\x9e\\xd8\\xdd\\xea\\x4d\\xa9\\x5f\\x54\\x5a\\xb3\\xb2\\x29\\xe5\\xb1\\x8b\\x47\\xc8\\x31\\x66\\xad\\x18\\xa1\\x70\\xaf\\xb8\\x38\\x6f\\xf8\\xc2\\xf2\\xfc\\xec\\x85\\x97\\x56\\xe4\\x0f\\x79\\xec\\xb6\\xda\\x79\\x85\\xf7\\x1f\\x3e\\x4d\\x63\\xa8\\xc5\\x51\\xbe\\x96\\x61\\x31\\x17\\xb9\\x83\\x58\\x3d\\x05\\x2c\\x20\\xba\\xd5\\x65\\xd2\\xed\\xdb\\xbf\\x15\\x8d\\x30\\x1d\\x9e\\x5f\\x2e\\x57\\x77\\x22\\xda\\x33\\x9a\\xee\\x60\\xc6\\xa9\\xc5\\x78\\x0a\\x98\\xe8\\x1f\\x2f\\xcd\\x78\\xd5\\x49\\xab\\xec\\x2c\\x4a\\xf7\\x73\\x1b\\x95\\xea\\xbb\\x87\\x36\\x6a\\xd5\\xa2\\xcb\\xab\\x8a\\xea\\x76\\x3d\\xb7\\xb8\\xeb\\xf1\\xdd\\x6d\\x37\\x6d\\x9e\\x85\\xa5\\xb5\\xa4\\x51\\x57\\x2e\\x1e\\x22\\x07\\xa6\\xb5\\xa2\\x5a\\x55\\xb6\\xe2\\xfe\\xb9\\xf3\\xa5\\x46\\x2d\\xcf\\x1b\\xa2\\x24\\x4f\\x43\\x85\\x0f\\x1c\\xa2\\x69\\x43\\x6e\\xdf\\x46\\xe5\\x64\\x7e\\x93\\x99\\x8e\\x2d\\xe8\\x69\\x0f\\x42\\x56\\x78\\xef\\x76\\x30\\x2a\\x05\\x25\\x7c\\xfd\\x36\\x35\\x4e\\xa8\\xbe\\x08\\x70\\xad\\xf4\\x9a\\xc3\\xce\\xca\\xae\\x11\\x3d\\xf4\\x8c\\x40\\xca\\xfe\\xa6\\x4d\\x2a\\x5b\\x7a\\x7b\\x1e\\x2b\\x5b\\x49\\xca\\x06\\x90\\xb2\\x37\\x6e\\xcf\\x63\\x85\\x31\\xcb\\xa1\\x92\\xe9\\xe7\\x90\\xc9\\x74\\xa7\\x31\\x03\\x15\\x8f\\xfd\\x1b\\x25\\x15\\x6e\\x13\\x41\\x9e\\x08\\xd1\\x30\\xcf\\xf0\\x30\\x52\\x36\\xd8\\xa8\\x56\\x52\\x73\\x00\\x85\\xa5\\xca\\x29\\xf4\\xc9\\xda\\x91\\xd9\\xb1\\xb9\\x75\\x5e\\x31\\x72\\x54\\xe2\\x92\\x19\\x85\\x0c\\xf1\\x1b\\x4d\\xab\\x28\\x95\\xcc\\xaa\\x26\\x6e\\x19\\xae\\xf8\\xa4\\xa5\\x7c\\xed\\xc3\\x03\\x83\\x84\\x4e\\xc6\\x97\\x82\\x4b\\xd3\\x1b\\x87\\xf3\\xf2\\x17\\xb7\\x65\\xd1\\xba\\x34\\x92\\xba\\x1c\\x22\\x75\\x49\\x40\\x69\\x68\\x58\\xf2\\x7c\\xc4\\xf2\\x00\\x64\\x20\\x40\\x90\\x48\\x6d\\x54\\x94\\x7e\\x15\\xcd\\x52\\xb2\\x03\\x38\\xa5\\xbe\\x93\\x33\\x7f\\xa3\\x4f\\x2f\\x45\\x52\\x73\\x18\\x8d\\x80\\x8c\\x69\\xc6\\x54\\x73\\x62\\xa4\\x3e\\x2c\\x84\\x78\\x7b\\x02\\x50\\x02\\xc4\\xd3\\x0d\\x66\\xbc\\xf6\\x74\\xf7\\xa7\\xfc\\x12\\x84\\x69\\x99\\xec\\x35\\x4a\\xa2\\x7f\\x91\\xd3\\x9a\\xdc\\x1e\\xf8\\x60\\xce\\xd1\\xb9\\xd9\\xd9\\x73\\x8f\\xce\\x59\\xe5\\xcd\\xb2\\x15\\xa7\\xe8\\x00\\x27\\xc4\\x3d\\x1b\\x93\\x8c\\x71\\x7e\\xff\\xb6\\x9a\\xdf\\xad\\x72\\x35\\x12\\xbe\\x9e\\xcc\\x46\\x57\\xc5\\xba\\x87\\xfa\\xfb\\x2f\\xad\\x76\\x93\\x46\\xfe\\x0a\\x20\\xa3\\x73\\x5d\\x6d\\xdf\\x5b\\x7d\\x7d\\xaf\\x0e\\xac\\x7d\\x66\\x7d\\xd1\\x69\\xd2\\xd6\\xa6\\xe1\\xdc\\xbc\\xc5\\x6d\\xd9\\xb4\\xad\\xf3\\x6f\\xff\\x86\\x3f\\xa1\\x88\\x44\\x76\\xe4\\xa6\\x28\\x33\\x15\\x28\\x50\\x71\\x2a\\xc6\\x9c\\x09\\x78\\x3c\\x9e\\x49\\x5f\\x81\\x15\\x1c\\x1e\\x91\\x69\\x16\\xa9\\xfb\\x1c\\x63\\x7e\\x96\\xdf\\xa1\\x69\\xb3\\x9a\\xac\\xfa\\x24\\xcd\\x24\\x8c\\x94\\x4e\\x4f\\x1a\\xa1\\x20\\xf5\\x95\\xda\\x91\\x2b\\xb5\\x43\\x21\\x9f\\x2d\\x64\\xfe\\x72\\xd6\\x24\\x1d\\x3d\\x59\\x59\\xe7\\x5b\\x3c\\xab\\x3c\\x39\\xed\\x46\\x2f\\x04\\x45\\x92\\x20\\x9e\\x6c\\xa3\\x1a\\x70\\x7c\\xdc\\x33\\xb1\\xa4\\x65\\xd9\\x9d\\x6b\\x2a\\x1e\\xaf\\x48\\x5a\\x54\\x53\\x3f\\xd2\\x60\\x81\\x8f\\x74\\x45\\xb6\\xf4\\x52\\x46\\x39\\x93\\x96\\xee\\xd6\\x73\\x3c\\x60\\xf7\\x8a\\x57\\x0f\\xb7\\x5a\\x4c\\x58\\x73\\x2b\\xd6\\x5c\\x96\\x19\\x07\\x45\\x8b\\xef\\xeb\\x9a\\xf7\\xde\\x3c\\x98\\xfb\\xde\\x82\\xbd\\x5f\\x3d\\x58\\xcb\\xed\\x2d\\xad\\xac\\xdd\\xfa\\xe4\\x5c\\xb8\\x62\\x4c\\x2e\\x5e\\xb0\\xa7\\x76\\x57\\xc9\\x8a\\xce\\x6c\\xc8\\x4c\\x8e\\x48\\xd1\\x33\\x6e\\x85\\xdb\\xbf\\xe5\\xf7\\x93\\xb1\\x2e\\xa0\\xf2\\x3a\\x86\\x71\\xec\\x32\\x5e\\x5a\\x01\\xe8\\x58\\x22\\x1e\\x10\\x1d\\x4b\\xae\\x4f\\xa6\\xd2\\x93\\x49\\x83\\xf2\\x5c\\x19\\xe9\\xc4\\x95\\x60\\x31\\x9a\\x95\\xd4\\xce\\x26\\xe1\\x62\\xa9\\x98\\x96\\x5f\\xc9\\x1c\\x28\\x52\\x33\\xef\\x18\\x51\\x85\\xc5\\x0a\\xff\\x8e\\x21\\x26\\xf0\\x3d\\x6d\\x3b\\xd6\\xc5\\x15\\x74\\x15\\xfe\\xf4\\xa7\\x73\\xcf\\x2f\\xcd\\x9f\\xd7\\x97\\x55\\x95\\xaa\\x09\\x89\\xb5\\xc5\\xd8\\xcb\\x52\\xf5\\x18\\xc8\\xd0\\x46\\xa7\\x60\\x5c\\x30\\xb8\\xab\\xfe\\xde\\x33\\x0a\\x58\\x55\\x30\\xb7\\xda\\x7a\\x66\\xcf\\xb6\\xc2\\xfe\\x0a\\xf3\\x19\\xd7\\x82\\x73\\xf3\\x56\\x3d\\x99\\xa9\\xad\\xe8\\x5e\\x5c\\xb8\\x28\\x36\\x3b\\x49\\x07\\x85\\x8b\\x8f\\x91\\x66\\xcf\\x27\\xad\\xde\\xf7\\xfe\\x81\\x1a\\x7c\\xe0\\xb4\\x64\\x33\\x68\\xb9\\xfd\\x73\\x7e\\x0b\\x91\\x43\\x0e\\x8a\\x08\\xcf\\x90\\x78\\x5d\\x40\\xe0\\x05\\x60\\x9e\\x4f\\x0e\\x49\\xf4\\x2e\\xac\\x55\\x44\\xf8\\x4c\\x04\\x65\\x1a\\xcd\\xc6\\x24\\xab\\x3e\\x91\\xe9\\xc4\\x12\\x53\\xea\\x9d\\x0d\\xa0\\x24\\xf3\\x26\\xab\\xcc\\xe8\\x62\\x9d\\x44\\xeb\\xa1\\xc5\\xdf\\xb7\\x38\\x13\\x1d\\xa6\\x70\\xc0\\x46\\xc3\\x73\\xd1\\x76\\x8c\\x9d\\x5d\\xa3\\xe5\\x7b\\xef\\x51\\xc0\\x92\\xa1\\x2f\\xe0\\x93\\x1b\\x47\\xd6\\x6c\\xfc\\xb1\\xe2\\x97\\xf3\\x2e\\x2c\\xcb\\x1f\\xec\\x1b\\x6e\\xff\\xd0\\x9a\\x65\\x6f\\x5c\\x5a\\xde\\xf4\\x70\\x53\\xd3\\xa5\\xd6\\xe5\\x8f\\x8e\\xe4\\x73\\xab\\x76\\x78\\xea\\x9b\\xe0\\x54\\x97\\xa7\\x79\\xe8\\x14\\xdd\\xe9\\xda\\x57\\x98\\x63\\xb7\\x76\\x34\\x22\\x4c\\xf6\\xd6\\xcb\\x54\\xf6\\x53\\x1c\\x2c\\x72\\xbb\\x8b\\xb5\\xc0\\x23\\x03\\x3b\\x3f\\x64\\x67\\x51\\xbb\\x21\\x52\\x00\\xdd\\x63\\x27\\x83\\xc3\\x05\\x61\\x82\\xc6\\x25\\xd7\\x45\\x2e\\x24\\xc9\\xac\\xc8\\x98\\xb1\\xe0\\x5e\\x79\\xb4\\x64\\xe4\\xb3\\x3c\\x5a\\x3a\\x3d\\xf5\\x51\\x4b\\xd0\\x23\\x60\\x2a\\x0b\\x03\\x6f\\x40\\xd8\\xc3\\x4f\\x9c\\x37\\x7b\\x56\\x37\\x89\\x7f\\x80\\x88\\x35\\x5f\\xda\\x52\\xbe\\x6e\\xa4\\xa4\\xd3\\x15\\x65\\xb0\\xbe\\xa2\\x8f\\x9a\\xc1\\x59\\xaa\\x06\\x8b\\xf0\\x02\\x3d\\xb1\\x61\\xad\\xce\\x4c\\xfe\\x32\\xde\\x70\\x66\\xc7\\xce\\xa2\\x41\\x32\\x4e\\xce\\x85\\xe7\\x87\\x57\\x3f\\x92\\x15\\x51\\xde\\xbd\\xb4\\xf8\\x9e\\xd2\\x65\\x96\\x28\\x6d\\x59\\x55\\xa9\\x66\\x77\\xd1\\xdc\\xaa\\x24\\xdf\\x63\\x19\\x0b\\xe6\\xcf\\x32\\x97\\x56\\x5f\\xe8\\x78\\x56\\x3a\\xf3\\x7d\\x5d\\x3c\\xc6\\x78\\x78\\x6c\\xc8\\x49\\x47\\x4b\\xc3\\xb2\\xfc\\x65\\x66\\x10\\xdd\\x5b\\xe0\\x6b\\x18\\x5f\\x24\\x42\\x82\\x9f\\x82\\x48\\x06\\x79\\x03\\x69\\x99\\x33\\x87\\x5c\\x92\\x4c\\x46\\x4c\\x31\\xd1\\x2e\\x8b\\x89\\xa4\\x82\\xbb\\x73\\x12\\xca\\xed\\xb2\\x58\\x27\\x37\\x2b\\xea\\x5b\\x9b\\xd7\\x8c\\x6e\\x12\\x7f\\x0e\\x10\\x3b\\xef\\xc2\\xf2\\x82\\xb9\\x73\\x72\\xea\\xd2\\xb5\\x42\\xb0\\x3e\\xfc\\x95\\x08\\x5d\\x20\\x5e\\x3e\\x1f\\x5b\\xe4\\x56\\x81\\xf7\\x54\\x67\\x53\\xcb\\xe0\\x29\\x7b\\xdb\\xba\\xc6\\xf6\\xd5\\xa6\\xd0\\xec\\xf2\\xd6\\xf4\\xc1\\xf0\\x94\\x14\\x4b\\xb0\\x26\\x24\\xd3\\x91\\x11\\xdc\\xdf\\xd6\\x0b\\x62\\xfb\\x1d\\x8d\\x02\\x14\\x41\\xd6\\xd7\\x65\\x36\\x66\\x73\\x24\\x49\\x1a\\x4f\\x15\\x57\\x24\\xe0\\x91\\x09\\x86\\x4a\\x1e\\x26\\x68\\x85\\x68\\xb4\\xf9\\xf4\\x12\\x72\\xb6\\x47\\xfd\\xe4\\x25\\x48\\x4e\\x6e\\x44\\xf0\\x68\\x8d\\x49\\x7e\\x83\\xa0\\x46\\x66\\x46\\xa5\\x3b\\x1e\\xcd\\xe1\\x31\\x4d\\x02\\x59\\xac\\x78\\xe8\\x3d\\x30\\xcd\\xbc\\x77\\x7e\\xa2\\x3e\\xa7\\x3a\\x85\\xcc\\xd0\\x7c\\x50\\xa9\\x63\\x35\\x89\\x59\\xc6\\x30\\x00\\x6d\\xc4\\xb3\\x11\\x71\\x54\\xe0\\xac\\x2e\\xdf\\xb8\\x8b\\xd8\\xaf\\x7c\\xbf\\xb9\\x21\\xfe\\xec\\xcd\\xe1\\xd3\\x4d\\xe7\\x7f\\x7d\\x16\\x5f\\xbb\\xd5\\x1f\\xe3\\xb0\\x46\\x12\\xe9\\x72\\xac\\x73\\x92\\x74\\xc1\\x47\\x4f\\x49\\xeb\\x2c\\x83\\xb4\\x73\\x0f\\x5f\\x40\\xda\\xb9\\x42\\x6a\\x67\\x0a\\x02\\x8e\\x6e\\x05\\x14\\x80\\xa0\\xe8\\x51\\x4a\\x51\\x69\\x82\\xe0\\x8f\\xaa\\xa7\\x4b\\x6d\\x52\\x80\\x7d\\xf2\\xdd\\x0b\\x33\\x14\\x9d\\x7e\\xf2\\xb2\\x24\\x47\\x75\\x84\\xc8\\x43\\xec\\xc6\\x24\\x0d\\x69\\xbc\\xa4\\x2b\\xde\\x4d\\xc0\\x4c\\x09\\x3a\\xc6\\x9f\\x04\\x84\\xc7\\x68\\x88\\xc9\\x45\\x2d\\x6f\\x19\\xb4\\x9d\\x15\\x1b\\x76\\x0b\\x6f\\xc5\\x55\\xae\\x6a\\xb7\\x70\\x7a\\x73\\x66\\x4c\\x10\\x09\\x61\\xfd\\x75\\x42\\x7e\\x6a\\x34\\xe4\\xcc\\xd9\\xd1\\xd4\\xff\\xea\\x9c\\xd9\\xaf\\x0c\\x6e\\x7e\\x71\\x7b\\x19\\x3e\\x73\\x09\\x6f\\x17\\xdf\\x3f\\xf6\\xeb\\x4b\\x1d\\x97\\xa1\\x70\\xf5\\x93\\x23\\xf0\\x55\\xd6\\xe6\\x15\\xa4\\xcd\\x27\\x59\\x9c\\xcc\\x42\\xa9\\xcd\\xa6\\xc9\\x07\\x2d\\x44\\x0f\\x5a\\x4a\\x66\\x38\\xa7\\x0d\\x98\\x35\\xc1\\x26\\xf0\\x69\\xa5\\xe4\\xb6\\xce\\x92\\xdb\\x1a\\x26\\xb1\\xae\\x93\\xe3\\x0c\\x6d\\xac\\x44\\xb1\\x71\\xb7\\x51\\x1d\\xa7\\x8b\\xe1\\x66\\xa8\\x48\\x33\\x89\\x59\\x89\\x36\\x33\\xf6\\x19\\x2a\\x3e\\xb3\\x3b\\x48\\x33\\x77\\x09\\xe2\\x87\\x5e\\x2f\\xd8\\x49\\x5c\\xec\\x6e\\xb3\\x3b\\x8b\\x6c\\x12\\x4b\\xee\\x93\\x87\\x71\\xcf\\xfb\\x64\\x18\\x1f\\x7c\\x12\\x5a\\x7d\\x9b\\x24\\xd5\\x5e\\xca\\x25\\x44\\xda\\xb6\\x95\\xc5\\x2d\\x0d\\x4a\\x6d\\x4b\\x44\\x0a\\xcc\\x61\\x05\\xd5\\xc5\\x10\\x12\\x38\\x34\\x38\\x89\\x0f\\x43\\x29\\x4f\\x5d\\xcb\\xa7\\x14\\x22\\x5f\\xd3\\x92\\xca\\x59\\x48\\xa9\\x34\\x28\\x29\\xb2\\x98\\xb4\\x67\\xc2\\x3a\\x24\\x57\\xdf\\x71\\xd7\\xa1\\xc4\\x85\\xe2\\xdf\\x49\\xe5\\x83\\xbd\\x81\\xfa\\x44\\x7d\\x5c\\x6a\\x6c\\x28\\x80\\x2e\\xe2\\x19\\xaa\\x61\\x67\\xb4\\x2e\\x2b\\xdd\\x71\\x48\\x90\\x28\\x83\\x28\\xb5\\xd3\\xa7\\x0d\\x9f\\x34\\x47\\x0f\\x13\\xdd\\x79\\x94\\xd8\\x47\\xd3\\xa8\\xee\\x1c\\x02\\x18\\x42\\x81\\xc7\\x54\\x77\\xc6\\x94\\xe6\\x6b\\x44\\x5e\\x64\\x71\\x12\\xb1\\x90\\x20\\x1d\\x8a\\x01\\x99\\x4d\\x86\\x58\\x0d\\x55\\xff\\xd3\\x20\\x4d\\x21\\x1f\\x86\\xa7\\x25\\x85\\xa7\\x35\\x77\\xb9\\x58\\xcd\\x0d\\x1c\\xa9\\x39\\x3e\\x31\\xfa\\xca\\x3d\\xf5\\xf5\\xf7\\xbc\\x32\\x3a\\xf2\\x74\\x45\\x61\\xd9\\x91\\xce\\xe6\\xcd\\x1d\\x69\\x69\\x1d\\x24\\x34\\xe6\\x34\\x87\\xe3\\xf4\\xcf\\x06\\x46\\xa8\\x03\\x01\\x37\\xed\\xfa\\x82\\xb6\\xff\\xd1\\x9f\\xed\\x02\\xc5\\xae\\x9f\\x3e\\xd6\\x9f\\x9a\\xba\\xdb\\x68\\xaa\\xdf\\xf6\\xc4\\x1c\\xf1\\x3f\\xfd\\x4f\\x6e\\xaf\\xc7\\x0f\\xdc\\xd3\\x7b\\xbd\\x37\\xb5\\xb7\\xaf\\x2f\\x6d\\xe4\\xf1\\x15\\xb9\\x52\\x4e\\x79\\xd2\\x86\\x16\\xbe\\x09\\xd9\\x69\\x1b\\xe2\\x80\\xe7\\x0c\\x00\\x2c\\x13\\x39\\x4f\\xf7\\xea\\x91\\x09\\x17\\xa0\\x70\\x07\\xc3\\x40\\x62\\x42\\x4c\\x54\\x58\\x88\\x52\\x81\\xec\\x60\\xa7\\x6d\\x48\\x22\\x55\\xcd\\x61\\x9d\\xac\\x95\\xa3\\x59\\xa7\\x34\\x88\\x1d\\x61\\x9e\\xdb\\xb0\\x10\\x2b\\x42\\x9e\\x09\\x0a\\xc3\\xee\\xe5\\x27\\xbb\\xb6\\xbf\\xbd\\xaf\\xa6\\x72\\xe7\\xcb\\x9b\\x96\\x5c\\x74\\xa6\\xba\\x0e\\xb6\\x76\\x6e\\x6c\\x49\\x4a\\x6e\\xdf\\xb5\\x13\\xe6\\xf6\\x3a\\x57\\xb8\\x5c\\xcb\\x5d\\x5d\\xdb\\xdb\\x6d\\x3d\\x8c\\x7c\\xe3\\x8d\\x13\\x3d\\x89\\x09\\x47\\x63\\x0d\\x2c\\xe1\\x05\\x85\\xfb\\xb0\\xba\\x37\\x10\\x9b\\x0c\\x5d\\x2f\\x46\\x9a\\x27\\xd0\\xbf\\xfb\\x8e\\x60\\x18\\x3f\\xaa\\xc8\\xec\\x84\\x04\\x2d\\x4b\\xa7\\xc7\\x84\\x52\\xaf\\x35\\xde\\x65\\xda\\x53\\x0a\\xc2\\xeb\\xe2\\x69\\xee\\x71\\x71\\xa3\\xc6\\x92\\x67\\x76\\x36\\x3b\\x63\\x30\\x36\\x92\\xb5\\x9d\\xc2\\xe1\\xd2\\xa5\\x47\\xdb\\x08\\xd4\\x3c\\x83\\x27\\xe7\\x94\\x33\\x63\\x65\\x69\\xcd\\x05\\x46\\x28\\x5c\\x74\\xac\\x9b\\x4e\\x79\\xbf\\x86\\x00\\xf6\\xde\\x03\\xfd\\xd2\\xbc\\xa8\\x23\\x73\\x7d\\x31\\x5f\\xf0\\x29\\xf5\\x8a\\x9c\\x5c\\x2f\\xdb\\xa7\\xd7\\x8b\\x0c\\xbb\\xac\\xdc\\x9c\\x23\\xe1\\x83\\x7b\\xc4\\xbd\\x1a\\x6b\\x5e\\x52\\x66\\x6d\\x76\\x14\\xad\\xd6\\x33\\xc1\\x51\\x9a\\x20\\xc0\\x24\\x75\\x46\\xd3\\xf9\\xa7\\x55\\x84\\x42\\xe9\\x94\\xef\\x7a\\x7a\\x13\\xa9\\x96\\xbd\\x69\\x69\\x79\\xf3\\xe3\\x4d\\xd6\\xd6\\xb6\\x36\\xdb\\xf2\\xc7\\x56\\xe6\\xe3\\x2f\\xbe\\x42\\xeb\\xb4\\x94\\xd8\\x74\\x56\\x90\\xb9\\x5a\\xf2\\xff\\x90\\xbf\\x2c\\x6e\\x72\\xe4\\x2e\\x20\\x12\\x07\\x96\\x95\\x96\\x9a\\x6c\\xd1\\x45\\x84\\x85\\x06\\x05\\xd0\\x58\\x30\\x99\\x75\\x65\\x22\\x94\\x59\\x3e\\x29\\x59\\x5c\\xb9\\xe9\\xdc\\x54\\x8c\\x9a\\x9c\\xc0\\x6c\\xb4\\x79\\x4b\\x67\\x5a\\x56\\xef\\x8e\\xd6\\xca\\x91\\xd6\\x34\\xf0\\x76\\x1e\\xb8\\xd6\\xb7\\xfa\\x8d\\x23\\xad\\xb0\\x6f\\x73\\x6e\\x77\\xb1\\xb1\\x7e\\xdf\\x4b\\xab\\xfb\\x9f\\xda\\xd1\\xe0\\x85\\xb4\\xc6\\x85\\x45\\x6d\\x9b\\x5a\\x6d\\x96\\xc6\\xb5\\x2d\\x5f\\xc2\\xe7\\xe2\\xcb\\x86\\xaa\\x8a\\xe6\\xd5\\x26\\xdb\\xeb\\xe7\\xe5\\xaf\\xb8\\xb4\\x30\\x8b\\xf8\\x91\\x17\\x6c\\xbf\\x92\\xa2\\x2f\\x6f\\x9d\\xe3\\x18\\x3e\\xbf\\xc8\\x99\\xb7\\xf0\\xe4\\x6c\\xd7\\xac\\x72\\x4b\\x72\\xf5\\x9c\\xdc\\xbc\\xbe\\x32\\xf3\\x19\\x7a\\x66\\xaa\\xc3\\x07\\xf8\\x7b\\xb8\\x44\\x54\\x03\\xf7\\xdc\\x5e\\x8e\\xd0\\x4c\\x87\\x5b\\x3a\\x77\\x35\\x91\\xcf\\x0f\\xf9\\x3f\\x5f\\x3d\\xe9\\xf3\\x47\\xc5\\xc5\\x7c\\x21\\x42\\xd8\\x8a\\xca\\x50\\xd0\\x6d\\x00\\x05\\x2a\\x0b\\xa2\\x67\\x2b\\x44\\xce\\x56\\xc0\\xce\\x56\\x00\\x7f\\xe0\\x43\\xf1\\x6d\\x45\\x1c\\x8d\\xdd\\x75\\x07\\x2b\\x04\\x29\\x43\\xf5\\xa2\\x68\\x50\\x69\\x19\\xf8\\x85\\xe6\\xc6\\x21\\xa8\\x27\\xf8\\x03\\xdd\\xe8\\xe7\\x67\\x64\\x5c\\xe7\\x1f\\xcc\\x58\\x48\\x36\\xf1\\xda\\x9a\\x13\\x9d\\x27\\xe9\\xf5\\xef\\xf3\\x4a\\xfc\\x13\\x85\\x6e\\xe2\\xfa\\x9a\\xf1\\xeb\\x27\\x69\\x12\\xf8\\x27\\xf2\\xf5\\xc2\\xae\\xf1\\xeb\\x4f\\xd1\\xeb\\x5f\\x14\\xbf\\x81\\xbf\\x89\\x7e\\x7a\\xb7\\xeb\\x93\\x26\\x5d\\xff\\x4d\\x7a\\xfd\\xa2\\x8c\\x0c\\x6f\\x43\\xc6\\x82\\x79\\xb3\\xcd\\x75\\xd5\\x27\\x3a\\x4f\\xd3\\x36\\xc2\\x07\\xe4\\xf9\\x3f\\x27\\xcf\\xaf\\x81\\x85\\xfc\\x55\\x84\\x5e\\x45\\x52\\xdb\\xa1\\x8e\\x0f\\xe5\\x1e\\x54\\xc4\\x61\\x2b\\x2c\\xb8\\x3d\\x9b\\x42\\xc8\\x60\\x01\\x7a\\x08\\x49\\xdf\\xa5\\xf1\\x4a\\xee\\xa0\\x42\\x47\\xbe\\x5b\\x78\\x7b\\x80\\x7d\\xb7\\x10\\x3d\\x85\\xe8\\x0f\\x86\\x0c\\xf1\\x03\\x6e\\x21\\xfa\\x31\\xa9\\x8f\\x1e\\x45\\xb8\\x09\\x30\\x49\\x21\\xf0\\xe4\\xe6\\x40\\x2a\\x15\\x13\\x8d\\x55\\xba\\xc9\\xb5\\x12\\x26\\x55\\xb0\\x5a\\xae\\x20\\x24\\xca\\xaf\\x3c\\x19\\x0b\\xe5\\xaa\\x9e\\x98\\x78\\x89\\x00\\xad\\x43\\x88\\xef\\x98\\xe0\\xf4\\xe5\\x8b\\x18\\xcb\\x8c\\xe4\\xcf\\x2c\\xa5\\xf3\\xb4\\x78\\x3c\\x93\\xac\\x2a\\x7a\\x9c\\x67\\x8c\\xee\\x02\\x7c\\x87\\xb8\\xc4\\x2b\\x8e\\xc0\\x51\\x2f\\x9c\\xe4\\x1e\\x64\\xc9\\x87\\x60\\xad\\xb8\\x1f\\x01\\xda\\x40\\xf0\\x12\\x9d\\xd4\\xd7\\x41\\xf3\\x81\\x90\\x49\\x5f\\xc4\\x00\\xd1\\x42\\x0f\\x45\\x33\\x97\\x7a\\x02\\xc8\\x9d\\xa5\\x14\\xdb\\xc5\\x1e\\x29\\x31\\xf6\\xa4\\x50\\xe4\\x40\\x55\\x9c\\xdd\\x28\\x3f\\xc4\\xff\\x20\\x2d\\x79\\xc5\\x77\\x8a\\x8b\\xbc\\xe2\\x6a\\x38\\x44\\x7f\\xbd\\x70\\x5a\\x5c\\x44\\x7e\\x07\\xe0\\xd2\\x69\\x2e\\x90\\x3d\\xf5\\xec\\xd8\\xbf\\x98\\x8c\\x80\\x73\\x58\\xcf\\x65\\x71\\x3f\\x40\\xda\\xbb\\xe5\\x71\\xb6\\x99\\x69\\xaf\\x4d\\xc7\\xf1\\xc3\\xb9\\xb8\\x1c\\x4f\\x46\\x46\\x83\\x33\\x36\\xd6\\x49\\xfe\\x7a\\x9c\\x71\\x9c\\xce\\x5e\\x97\\x63\\x30\\xe4\\xd4\\xd9\\x0b\\xec\\xb5\\xce\\xb8\\x38\\x67\\xad\\x5d\\x1a\\xaf\\x59\\x84\\x47\\xa1\\x00\\x94\\x64\\x1e\\x87\\xdd\\x5e\\xca\\xe0\\x80\\x61\\x60\\xf1\\x8f\\x65\\xc0\\xed\\x3f\\x0a\\x16\\xff\\x77\\x51\\xe4\\x23\\xf2\\x17\\xdd\\x2f\\x95\\xc1\\xe1\\x6c\\x4c\\x15\\xc8\\x45\\xf6\\x85\\x4b\\x44\\x5e\\x18\\x51\\x2e\\x2a\\x44\\xad\\x68\\x01\\xda\\x42\\x25\\x47\\x61\\x01\\x0e\\x0c\\xca\\x57\\x61\\x25\\x8a\\x02\\xac\\xe0\\xea\\x51\\x20\\x12\\x50\\xa0\\x30\\x04\\x80\\x28\\xd3\\x0e\\x52\\xd2\\x58\\x5e\\x26\\x3c\\x2a\\x59\\x56\\x09\\x09\\x62\\x52\\x85\\x1b\\x36\\xac\\x5b\\xbe\\x74\\x68\\xd0\\x66\\x4b\\xb3\\xd9\\xcc\\x36\\xb3\\x79\\x86\\x2a\\x4e\\xce\\x06\\x29\\xc3\\x45\\xa6\\xa4\\x99\\x98\\xde\\x7a\\x8d\\x15\\xf4\\xdc\\xb4\\x48\\x06\\x61\\xda\\x27\\x30\\xfd\\x93\\xce\\xf8\\x92\\xbe\\xa2\\x82\\xee\\xf8\\xf8\\xae\\x82\\xe2\\xbe\\x92\\xf8\\xf8\\x62\\xf2\\xae\\x87\\xbc\\xcb\\x2f\\x9e\\x55\\x12\\x2f\\xfe\\x84\\x7e\\x4b\\x3f\\x4f\\x28\\xee\\x2d\\x2a\\x9a\\x55\\x92\\xb0\\xa1\\x92\\x0b\\xab\\xdc\\x1a\\x14\\x6d\\x33\\xc4\\x25\\x47\\x06\\x05\\x45\\xd9\\xe2\\x0c\\xc9\\x51\\x41\\xe2\\x25\\xf2\\xca\\xff\\x49\\x32\\xf9\\x4b\\x3e\\xf9\\x49\\x50\\x74\\xb2\\x21\\x96\\xbc\\x92\\x3f\\x81\\x8c\\xbc\\xf9\\x8d\\xe9\\x29\\x26\\x53\\x0a\\x09\\x60\\xc9\\x4b\\xcd\\x1b\\x6e\\x4c\\xb3\\x99\\x4c\\xb6\\x34\\x62\\x0d\\xe1\\x9e\\xc8\\x63\\x71\\x2d\\xc3\\xe4\\xe3\\xf9\\x0d\\xe9\\xe9\\x0d\\xf3\\xf3\\x7c\\xa5\\xed\\x78\\x47\\xfb\\xd8\\x1b\\x86\\x82\\xb4\\x98\\x98\\xb4\\x02\\x43\\xaa\\x21\\x3f\\x2d\\x36\\x36\\x2d\\x9f\\xbc\\x98\\xfa\\x09\\xd7\\x4a\\x5e\\x91\\x8f\\xf2\\x27\\x3e\\x62\\xf3\\xe8\\x20\\x3a\\xcb\\xb9\\xb9\\xeb\\x48\\x41\\x79\\x17\\x39\\xf0\\xa3\\x5c\\x11\\x74\\x20\\x09\\x67\\x05\\xa8\\x51\\xa3\\x66\\xb3\\x09\\x4c\\xe0\\x04\\x07\\x2e\\x01\\x7c\\x48\\xfc\\x2e\\x58\\x0f\\x61\\x0b\\x99\\xa3\\xbb\\x35\\xb0\\xc7\\x7f\\x9f\\x33\\xd2\\x7d\\x68\\xce\\x1e\\x01\\x58\\xa4\\x33\\x06\\x76\\x27\\x0c\\xe3\\xb7\\x62\\x53\\x43\\xa1\\xe1\\xa8\\xa4\\x02\\x2d\\xb9\\x23\\xe0\\x68\\xb0\\x88\\xdf\\x3b\\x0c\\x58\\x14\\xb9\\xeb\\xe2\\x26\\x8d\\xb8\\x09\\x0e\\xc3\\x11\\x69\\x8e\\xdb\\xd1\\x87\\xdc\\x05\\xfe\\x1b\\x54\\x29\\x7d\\x16\\x23\\xc8\\xb4\\x27\\x91\\x11\\x84\\xfb\\x57\\x62\\x58\\xf5\\x61\\x39\\x77\\xb3\\x9c\\xca\\x8e\\x50\\x9c\\xc7\\x47\\x12\\xbf\\x4a\\x20\\x0a\\xa1\\x1e\\xc0\\x60\\x40\\xbc\\x0a\\x00\\xe1\\x7a\\x01\\x64\\xe8\\x3b\\xc2\\x98\\x01\\x57\\x8a\\x30\\x25\\x91\\x94\\x57\\x38\\xf1\\x35\\x52\\x78\\xb7\\x15\\x1c\\x40\\x8c\\x56\\xdc\\x8e\\xd3\\xa7\\x1f\\x16\\x73\\x38\\xf8\\xf2\\x13\\x62\\x05\\x44\\xeb\\xb8\\x15\\x5b\\xbd\\xde\\x39\\x78\\x8d\\xef\\x29\\xb8\\x27\\x95\\xd6\\xc5\\x83\\x0f\\x70\\x5f\\x16\\x6e\\x22\\x2d\\x5a\\x22\\x65\\x5f\\x08\\xa4\\x37\\x0f\\x67\\xd4\\xe4\\x31\\xec\\x0d\\x2f\\xbd\\xe9\\x91\\xbe\\x8e\\x9e\\x48\\x1d\\x59\\xc4\\x48\\xfc\\xe4\\x37\\x54\\x2d\\xd5\\xb3\\x2f\\x91\\xfc\\x95\\xc4\\x1f\\x59\\x34\\x35\\x73\\xa4\\xea\\xd3\\x32\\x47\\x7e\\x35\\xce\\xbc\\xa2\\xbe\\xa8\\xbf\\xd2\\xfc\\x64\\x63\\x45\\xa1\\x27\\xe2\\x49\\xe1\\xca\\x26\\x77\\x1d\\x98\\x3d\\x6b\\x5a\\x44\\x1e\\x7e\\xb0\\xb8\\xa7\\x28\\xcb\\xf7\\x35\\x2e\\x81\\xf5\\x21\\x8b\\xf7\\x5f\\x4b\\x6c\\xcd\\x0e\\xe4\\x71\\xd7\\xca\\xb4\\x1b\\x41\\xa0\\x9c\\x01\\x94\\x9b\\x64\\x30\\x18\\x04\\x5e\\xa2\\x35\\x95\\x39\\x37\\x2a\\x59\\x95\\x18\\x7a\\xa9\\x18\\x37\\x38\\xb2\\xb3\\x32\\x33\\xd2\\x89\\x49\\x29\\x91\\xaa\\xc7\\x3a\\xc2\\xb9\\x11\\x16\\xa2\\x62\\xe0\\x78\\x72\\x8e\\x35\\x12\\x1f\\x0b\\x51\\x36\\x9c\\x56\\x72\\xc6\\x63\\xbf\\xd3\\xb0\\x93\\x7a\\x22\\xd4\\xf4\\x46\\x2e\\x51\\xbc\\xc2\\xc5\\xc5\\xe3\\x9f\\xc1\\xad\\x4f\\x3c\\x31\\x66\\x5d\\x00\\xf7\\xd4\\xe3\\xc2\\xc3\\x17\\x15\\xe5\\xeb\\x1e\\x1e\\x18\\x38\\xb3\\x28\\xcf\\x9b\\x5c\\xd1\\x95\\xe9\\xe8\\x71\\x27\\x29\\x60\\x50\\x7c\\x98\\x87\\x1e\\xf8\\xa8\\xa6\\x6a\\x77\\xe6\\xe9\\xd3\\xca\\xbc\\xba\\xd6\\x84\\x9a\\x8d\\xfb\\x37\\x79\\x87\\x1f\\x5a\\x59\\x94\\x37\\x7c\\xb8\\xab\\xb4\\x27\\x3f\\xc6\\x5a\\xb7\\xa4\\xc2\\xbb\\x69\\xbf\\x74\\x46\\xdf\\x46\\xf4\\x92\\x67\\x89\\x0c\\xb6\\x21\\x17\\x7a\\x80\\x41\\xd3\\xae\\x07\\xb1\\xd0\\xd6\\x18\\xf2\\x57\\x20\\x7f\\xfd\\x89\\x90\\xb3\\x91\\x4a\\x11\\xa4\\x50\\x05\\x8d\\x90\\x99\\xc2\\x43\\x20\\x4f\\xe5\\x0c\\x3b\\xb8\\xd2\\x21\\x40\\x48\\x8a\\xc3\\x67\\x1b\\x81\\xe4\\x96\\xaf\\xa2\\x27\\x23\\xd7\\x7f\\x79\\x91\\x20\\x14\\x4b\\x57\\x22\\x7a\\x21\\xc5\\x25\\xba\\x72\\x52\\x49\\x52\\x53\\x75\\x84\\x51\\x6d\\xa6\\xb9\\xef\\x98\\xb8\\x9a\\x9e\\xfb\\xce\\x14\\xe2\\xf7\\x00\\x51\\x6e\\x17\\x09\\x9b\\x34\\x11\\xd5\\xcd\\x5f\\xb8\\x16\\x1a\\x65\\xd6\\x46\\xd8\\x67\\x44\\xe9\\x5b\\x53\\x72\\x3a\\x4b\\x4d\\x3d\\x2a\\x67\\xcf\\xa6\\xa6\\x2a\\xaf\\xd8\\xb4\\xa9\\xdb\\xa5\\xea\\xf1\\x5e\\x1b\\x3b\\x57\\x95\\xe6\\x26\\x94\\x7d\\xc9\\x65\\x69\\x55\\xdc\\x15\\xdf\\xe6\\xd4\\xa2\\x24\\x75\\x20\\xbf\\x5b\\xad\\x33\\x37\\xae\\x9f\\x89\\x77\\xb5\\xed\\x1f\\xca\\xf5\\x7d\\x45\\xb8\\x96\\x37\\x74\\x6f\\x1b\\x28\\xc4\\x4f\\xc4\\x63\\xd9\\x6d\\x0b\\xf3\\xf2\\x96\\xcc\\xcc\\x96\\xe6\\xc6\\x36\\x22\\xa3\\xf3\\x59\\x9e\\xec\\x16\\x77\\xa3\\x11\\x54\\xca\\x44\\x50\\xa8\\xfc\\x21\\xb8\\xc0\\xd7\\x07\\x80\\x22\\x10\\x68\\xec\\xce\\x60\\xd0\\x04\\xd1\\x8f\\x4a\\xa5\\xec\\x23\\x87\\xa6\\xca\\xc9\\xed\\xcd\\x48\\x4f\\x4b\\xb5\\xa7\\x24\\x31\\x4a\\x96\\x24\\xb3\\xd4\\x58\\xd9\\x19\\x27\\x35\\x95\\xce\\x0e\\x27\\xf9\\x95\\xb3\\x17\\x59\\x64\\xca\\x30\\xad\\x91\\x5b\\x2e\\x6e\\xc5\\x8e\\xde\\xed\\xcd\\x85\\xcb\\x73\\xc2\\xf3\\xd6\\x97\\x8e\\xbe\\x71\\xa8\\x85\\x7b\\x96\\xfc\\x08\\xad\\x07\\x5f\\x5d\\x53\\x3a\\x5a\\x1c\\x9e\\xb3\\xa2\\xa8\\x69\\x6b\\xaf\\x83\\x83\\x9d\\xe2\\x56\\xd8\\x89\\xe3\\x17\\x9c\\x5f\\x90\\xa3\\x56\\x9f\\x0b\\x0d\\xab\\x3d\\xfc\\xcd\\x03\\x64\\x72\\xdc\\xf3\\xb5\\xfd\\xd5\\xea\\x90\\xf3\\x61\\x9a\\xec\\xa1\\x53\\xf3\\xa4\\x79\\xc1\\xa3\\x3a\\xd2\\x36\\xca\\x03\\x24\\x21\\xb3\\xfb\\x50\\xb0\\x3b\\xb0\\xb7\\xbb\\xb5\\xba\\x30\\x33\\x94\\xe7\\x33\\xc7\\xa3\\x6f\\x3f\\x2d\\x94\\x80\\x59\\x2c\\xfe\\x8b\\x30\\x38\\xc1\\x0a\\xc4\\x5f\\x6c\\x2a\\xef\\x2f\\x2c\\x1e\\xac\\x30\\x99\\xca\\x07\\x8a\\x8b\\xfa\\xcb\\xcd\\xfb\\x43\\x89\\x90\\x35\\x90\\x14\\x81\\xa1\\x86\\xb4\\x78\\x83\\x3d\\x2e\\xf4\\xab\\xa6\\x8a\\x81\\xe2\\xe2\\x01\\xa9\\x04\\x2d\\x79\\x20\\x84\\xc4\\xbc\\x1b\\xd2\\x0c\\x21\\x21\\xa4\\x44\\x3c\\xf9\\x2b\\x32\\xa9\\xc6\\x1b\\x72\\x66\\x57\\x25\\x67\\xb6\\x2d\\x2b\\x6a\\x2c\\x5e\\x36\\x33\\xd3\\x56\\x3d\\xdb\\x19\\x93\\x6d\\xd1\\xc5\\x67\\x97\\x27\\x36\\x26\\x12\\xd6\\xae\\x48\\x4b\\x66\\xa4\\xaf\\xa6\\x78\\x59\\x5b\\x26\\x29\\x53\\xdc\\x24\\xbf\\x30\\xb9\\x1d\\x06\\x83\\xc3\\x6d\\x6a\\x4a\\x2c\\xa3\\x2f\\xca\\x12\\x8f\\x32\\xe9\\xc8\\xd6\\xc7\\x0f\\x6f\\xff\\x9e\\xfb\\xbb\\xf0\\x65\\x64\\x46\\x59\\x48\\x75\\x3d\\x2d\\x29\\x1c\\xe1\\x4c\\xbf\\xfb\\x94\\x0c\\x8d\\x93\\xfa\\xd2\\x27\\xb7\\x53\\x29\\xd9\\xe9\\xc9\\xa2\\xf6\\xe7\\x7d\\xe5\\xda\\x97\\x5e\\x58\\xe4\\xc8\\x5a\\x98\\x57\\xb0\\x30\\x83\\x10\\x03\\xd4\\x13\\x05\\xda\\x9a\\x33\\xff\\xf8\\x80\\x3e\\xaf\\xb7\\xf2\\x8f\\xae\\xe6\\x9c\\xe8\\x34\\x5b\\x79\\xa1\\xb6\\x7c\\xdd\\xa3\\xf3\\x43\\x66\\x04\\x5f\\x0b\\x09\\x86\\x1f\\x77\\x1e\\x1c\\x72\\xa5\\xcd\\x5c\\x53\\x6b\\x6b\\x7c\\xe2\\xe1\\xfb\\x72\\xba\\x2a\\x97\\x35\\xda\\x70\\xa9\\x75\\x60\\xc9\\xca\\x3c\\x7b\\x53\\xcb\\xea\\xc5\\x88\\x47\\x1b\\x98\\x4c\\x7a\\x15\\x05\\xa0\\x78\\xe4\\x44\\xf9\\x74\\x6c\\x88\\xf9\\xd6\\x1c\\x15\\x22\\x20\\x3e\\x93\\x26\\x00\\xd5\\x50\\xaf\\x3f\\xe7\\xd0\\x4f\\x1b\\x81\\xdc\\x69\\x23\\xa0\\x21\\xca\\x13\\xfe\\xf9\\x35\\xf1\\x9f\\x70\\xed\\x2a\\xcc\\x80\\x6b\\x33\\xb5\\xc9\\x45\\x16\\x6b\\x71\\xb2\\x96\\xfc\\xb5\\x5a\\x0b\\x6d\\xda\\xf9\\x7c\\xb0\\x5e\\xa3\\xd1\\x07\\xf3\\x02\\xf9\\x1b\\xae\\x9f\\x21\\x7c\\x57\\x7c\\x1f\\x1c\\xdc\\xf1\\xb1\\x65\\x84\\x5a\\x66\\x25\\x77\\xe4\\x7a\\x72\\xad\\x2b\\x3e\\xde\\x55\\x9b\\xfc\\xb5\\xe4\\x1a\\x67\\x7c\\xbc\\xb3\\x26\\x39\\x40\\x6f\\x8d\\x23\\xc4\\x9e\\x56\\xfd\\x8b\\xba\\x64\\xfa\\x22\\x59\\xe7\\xfb\\xb0\\x9f\\xf6\\xe5\\x02\\xee\\x34\\x9f\\xcb\\xf2\\xfe\\x47\\x90\\xbe\\xd4\\x84\\x2a\\x80\\xf4\\x25\\xf8\\xc9\\x76\\x35\\x94\\x79\\x17\\x4c\\x52\\x36\\x4b\\xee\\x87\\x07\\x73\\x0e\\xf4\\x8e\\x1c\\x39\\x3a\\xd2\\x2b\\xce\\x38\\xd1\\x77\\x1c\\x76\\x0a\\x46\\x71\\x2d\\xdc\\x2b\\xae\\xc3\\x51\\xe2\\x4a\\x38\\xe2\\xfb\\x35\\x05\\x63\\xc0\\xbb\\xad\\x6c\\x8c\\xce\\x12\\x19\\x76\\x82\\x6f\\xa2\\x6c\\xdf\\xe4\\xbe\\x89\\x86\\x10\\x4c\\xee\\x9b\\x24\\xa7\\xcb\\x2a\\xe1\\xfd\\xee\\x6d\\x82\\x7d\\xa0\\xe6\\x79\\xa0\\xbb\\x80\\x91\\x84\\x20\\xf2\\xfa\\x8e\\x9b\\x43\\xcb\\x5f\\x39\\xd4\\x66\\xab\\x1d\\x1a\\xdd\\x51\\xbe\\xe0\\xfa\\x9e\\x26\\x1f\\xca\\x3d\\xd8\\x34\\xc7\\xdb\\x23\\x1e\\x6d\\x38\\x98\\x8f\\x63\\x5d\\xf7\\xcc\\x71\\x16\\xf7\\x9c\\xfd\\xea\\xea\\x86\\x23\\x9b\\x17\\xd4\\xdb\\xda\\x8e\\xbd\\xbd\\x3a\\x43\\xbc\\xe1\\x28\\x84\\xa2\\x52\\x2e\\xa5\\x3c\\x4f\\xfc\\x3d\\x18\\x1c\\x25\\xd2\\xb9\\xa5\\xe5\\xf6\\xbf\\x78\\x2f\\x89\\x65\\xc8\\x80\\xd7\\x6e\\x47\\xe2\\xdf\\xe4\\x9f\\x43\\x16\\x58\\xfb\\x1f\\x04\\xa1\\xf0\\x2e\\xec\\x45\\x88\\xbc\\x67\\x67\\x18\\xfc\\x1b\\x7a\\x86\\x21\\xe5\\xb3\\x49\\xf9\\xd7\\x84\\x9b\\xa4\\xfc\\x1b\\xb7\\xa3\\xf1\\xef\\xa4\\xf2\\xf1\\xff\\x66\\xe5\\x0f\\xb3\\xf2\\xe1\\xac\\xfc\\xef\\x48\\x79\\xe6\\x58\\xfa\\x37\\x79\\x41\\xae\\x33\\xdf\\xfe\\x84\\xff\\x82\\xf0\\x0c\\xb9\\xee\\xad\\xdb\\x3c\\xfe\\xbd\\x74\\x9d\\x4a\\x7a\\xce\\x46\\xc4\\x93\\xf7\\x6a\\x76\\xdd\\xef\\xe9\\x75\\x98\\xbb\\xc6\\xfb\\x9f\\xe7\\x26\\xcf\\x7b\\x8c\\x5d\\xf7\\xce\\xed\\x0c\\xf9\\xba\\x6f\\x4a\\xd7\\xad\\x91\\xeb\\xe7\\xbf\\x8e\\xf6\\xe9\\x56\\xb2\\xfe\\xab\\x85\\x3f\\x90\\x1e\\x2d\\x22\\x7d\\x9a\\x65\\x8d\\x09\\xa3\\x63\\x45\\x84\\x8f\\x3f\\xb7\\x2c\\x93\\x44\\x53\\x73\\x87\\x4f\\xa1\\x81\\x4f\\xe7\\x70\\x4b\\xdf\\xa3\\x45\\x41\\xe5\\xf3\\x76\\xd6\\x37\\xed\\xab\\x09\\x8b\\x2b\\xf5\\xf4\\x15\\x1c\\xf9\\x60\\x1f\\x4b\\x85\\xb0\\xea\\xd9\\xcd\\x65\\x24\\xd7\\xd4\\xf6\\xc6\\x91\\x7a\\xc2\\x00\\x3f\\xd2\\xd0\\x4c\\xb2\\x22\\x28\\x92\\x6b\\x97\\x70\\x62\\x43\\xd5\\xa2\\x6b\\x5b\\x6b\\x12\\x62\\x4e\\x07\\x47\\x45\\x04\\x6d\\xfe\\x81\\xf8\\x8d\\xe7\\x0a\\xef\\xf9\\xd3\\xb5\\xf9\\xad\\x87\\x5e\\x5b\\xa9\\x5f\\xf4\\xdc\\x6e\\xcf\\x99\\xdc\\x39\\x9b\\x24\\xde\\xf7\\xba\\xad\\x8f\\x0f\\x94\\xc7\\xd6\\x95\\xa5\\x49\\xf2\\xf8\\xb1\\xdb\\x76\\x3e\\x89\\xc5\\xbd\\x29\\x9e\\x55\\x50\\x7d\\x47\\x90\\xe9\\x92\\x93\\xbc\\xbe\\x7f\\x78\\xb9\\xad\\x1f\\x0a\\x7f\\xfc\\x44\\xa3\\xd8\\x43\\xcb\\x3a\\xc4\\xbf\\xf3\\x67\\xe8\\x5c\\x24\\x65\\x55\\x1c\\x29\\x0b\\x40\\x84\\xa9\\x13\\x80\\x5a\\x01\\x80\\xeb\\xf6\\xbd\\xc8\\xed\\xbe\\x75\\x1e\\x0f\\xf8\\x2e\\xf1\\x51\\x63\\xef\\x10\\x29\\x5d\\xe6\\xab\\x3f\\x73\\x04\\x7f\\x15\\xff\\xdf\\xd1\\x33\\x3e\\x3f\\xe7\\xf0\\x13\\x44\\xa7\\xf9\\x03\\x97\\x88\\x38\\x7a\\x86\\x98\\xaa\\xf5\\xa9\\xc3\\x98\\xd6\\x47\\x96\\x17\\xf7\\x87\\xb1\\x97\\xb8\\x0a\\xe6\\xc1\\x00\\xc6\\x8f\\x7b\\x8c\\x3c\\x37\\x90\\x3c\\x57\\x60\\xcf\\xd5\\xe7\\x52\\x36\\x29\\x8e\\xcc\\x7a\\x1c\\xa9\\x8b\\x82\\xc3\\x2f\\xf9\\x7e\\x76\\xe8\\x9f\\x5e\\x28\\x84\\xd6\\x45\\x8b\\xf8\\x7e\\x02\\x40\\x5a\\x73\\x8e\\x3c\\xc1\\x89\\x7e\\xc2\\x9f\\xe3\\x7e\\x88\\x6c\\xa8\\x02\\xcd\\x46\\x81\\xcf\\x77\\xd5\\x16\\xa7\\x47\\xf1\\xdc\\x84\\x28\\xb6\\x4e\\x21\\x96\\xd4\\xdf\\xc9\\xdd\\x25\\x47\\x94\\x63\\xc6\\xcb\\xcc\\x42\\xcb\\x25\\x6a\\x10\\xac\\xe5\\xcf\\x99\\x6b\\x96\\x54\\xe7\\x74\\x56\\x39\\x35\\x9a\\x9c\\xaa\\xce\\x9c\\x9a\\xc5\\x35\\x66\\x9a\\x07\\x35\\xa7\\xab\\x2a\\x47\\xa3\\x71\\x56\\x75\\x3a\\xc9\\x1b\\xf3\\xe6\\xb0\\xa4\\xe2\\x34\\x03\\xc9\\x37\\x18\\xab\\xe6\\x38\\x12\\xb1\\x90\\xee\\x34\\xa4\\x17\\x27\\x85\\x8d\\x1d\\x27\\x9f\\xa7\\x1b\\x9c\\x69\\x49\\x31\\xf4\\xf3\\x98\\xa4\\x34\\x97\\x21\\x8d\\x7c\\x8e\\xeb\\x6b\\x76\\xcd\\x2b\\x4a\\xad\\xee\\x4c\\x49\\xe9\\xac\\x4e\\x2d\\x9a\\xb7\\xab\\x26\\xa5\\xfa\\xce\\x0f\\xaa\\x33\\xbb\\x2a\\x92\\x63\\xd3\\xf3\\x72\\xb3\\x42\\xe3\\x42\\xb3\\x72\\xf3\\xd2\\xe2\\xac\\x15\\xdd\\x59\\x59\\xdd\\x15\\xd6\\xb8\\xb4\\xbc\\xdc\\xcc\\x30\\xf6\\x61\\x7a\\x2c\\xd5\\x6d\\x10\\xa0\\xff\\x88\\x1e\\xee\\x9b\\x0a\\x3b\\x4a\\x20\\xfd\\x16\\x81\\xe9\\xd8\\x4e\\x26\\x05\\xbd\\xd3\\x7c\\x47\\xe2\\x58\\xf1\\x93\\x8f\\x9f\\x9b\\x04\\x29\\x48\\xef\\xda\\xda\\x9c\\x54\\x9d\\x14\\xa9\\x4e\\x8b\\xeb\\x9d\\xd5\\xf3\\xd8\\xf5\\x71\\x4c\\x81\\x10\\xd3\\xb9\\x77\\x56\\xd6\\x8c\\x80\\xc3\\x82\\x62\\xe5\\xc0\\x27\\xbf\\x94\\x64\\xfe\\x21\\x88\\xe0\\x4b\\xb8\\xdb\\xc8\\x88\\x2a\\xc8\\xdc\\xaf\\xc8\\x36\\xd2\\xb9\\xaf\\x21\\xc7\\x24\\x17\\xe9\\xd6\\x3b\\xf7\\xe5\\x74\\x4e\\x49\\xb0\\x93\\x4a\\xa2\\x65\\xde\\xf5\\x3b\\xb2\\x52\\x4e\\x67\\x6e\\xac\\xb0\\x16\\x3a\\x1d\\x09\\x71\\x99\\x59\\x79\\xe6\\x8a\\x8d\\x19\\x81\\x99\\x1b\\xcb\\x93\\x72\\xb3\\x32\\x0d\\xf1\\x39\\x39\\x45\\x56\\xf2\\x41\\xc4\\xe7\\x96\\xe0\\x16\\x55\\x36\\x41\\x50\\x44\\x4c\\x58\\x68\\x54\\x78\\x50\\x53\\xe5\\x95\\x8a\\xe6\\xa0\\xf0\\xa8\\xd0\\xb0\\xd8\\x88\\x20\\x80\\xa6\\xca\\xdb\\x15\\x4d\\x40\\xbe\\x8d\\x0d\\x25\\x4e\\xe4\\xa0\\xe6\\xca\\x2b\\x95\\x4d\\x81\\x1a\\xf2\\x6d\\x0c\\xf9\\xb6\\xa9\\x92\\xcd\\x53\\x74\\x9d\\xb7\\xf0\\x65\\x48\\x43\\xfa\\x6e\\x06\\xed\\x3b\\x30\\x2a\\xad\\x94\\x8e\\x97\\xfd\\xea\\x95\\x0e\\x2d\\xd1\\x44\\x79\\x8b\\x6f\\x6c\\x56\\x53\\xb9\\xf8\\x67\\x98\\xbb\\x5d\\x24\\x33\\xa4\\xbe\\x31\\xeb\\x17\\xe2\\x57\\xb7\\xc3\\x73\\xb0\\xec\\x86\\x63\\xcf\\xa5\\xdb\\x0f\\x9e\\x70\\x0c\\x3e\\x78\\x9b\\xc9\\xba\\x17\\x50\\x00\\x1f\\xcc\\x9f\\x43\\x0b\\x90\\x81\\xdc\\xf3\\x45\\x37\\x91\\x1e\\xa0\\x84\\x7b\\x50\\xb8\\x6f\\x2b\\x93\\x3e\\xd7\\x5e\\xf4\\x0b\\x2d\\xdf\\x56\\x2a\\x4d\\xd8\\x35\\xaf\\x23\\x25\\xef\\xe4\\xbf\\x40\\xae\\x49\\x40\\x61\\xe8\\x83\\xf1\\x6b\\xa2\\x7d\\x9b\\xa5\\x6b\\x3e\\x90\\xaf\\xd9\\x2c\\x5d\\x83\\x30\\x3a\\x4c\\xb9\\x9b\\xc9\\x5a\\x11\\x50\\x30\\x19\\x87\\x19\\x2a\\x8e\\xee\\xbd\\x0c\\x8a\\x0d\\x46\\xb0\\x2a\\x81\\x2c\\x1d\\x6c\\x38\\x04\\x27\\xc4\\x15\\x87\\xc4\\x65\\xf8\\x6f\\xe2\\x3f\\xd4\\x6a\\xf1\\x13\\x98\\x11\\x16\\x4e\\xec\\xde\\x56\\x9f\\x0d\\x7f\\x84\\x03\\x1d\\x0e\\xdf\\xbf\\x7c\\xff\\x76\\x38\\xd8\\x79\\x28\\xfd\\x76\\x27\\x4e\\x46\\x7f\\x46\\x41\\xa4\\x1f\\x02\\x05\\xc8\\xbc\\xc3\\x5a\\x93\\x4c\\x78\\xf5\\x93\\x16\\x25\\x25\\x5d\\x7b\\x22\\x65\\x56\\xef\\xcc\\x84\\xda\\x92\\x6d\\x9e\\x3a\\xa4\\x43\\xb3\\x50\\x20\\xbf\\x8f\\x57\\x90\\x1a\\xc4\\xa2\\x14\\x54\\x80\\xdc\\xa8\\x1a\\x35\\xa0\\x36\\xd4\\x87\\xfa\\xd1\\x10\\x69\\xcd\\x12\\xb4\\x02\\xad\\x46\\x9b\\xd0\\x36\\xb4\\x0b\\xed\\x43\\x07\\xd0\\x11\\x74\\x9c\\x72\\x95\\x1e\\x3b\\x7a\\xf8\\xe0\\xfe\\x7b\\xf6\\xee\\xde\\xb9\\x7d\\xeb\\xe6\\x0d\\x6b\\x56\\x8e\\x2c\\x5b\\xba\\x68\\xe1\\xfc\\x79\\x83\\x03\\xb3\\x67\\x75\\xcf\\x6c\\x69\\xaa\\xad\\xa9\\x2c\\x2b\\x2a\\xcc\\xcf\\xb1\\xc4\\x47\\x85\\x04\\x60\\x1d\\x69\\x94\\xa4\\x2c\\xf8\\x93\\xc6\\xeb\\x99\\xc3\\x4b\\xca\\xde\\x4f\\xf4\\x5b\\x2b\\x9b\\xe9\\x4e\\x16\\x7b\\xad\\xd3\\x0a\\xd2\\x3b\\x93\\x54\\xd4\\x69\\x02\\x86\\xfb\\x34\\x32\\xce\\x50\\xfa\\xda\\xa4\\x4d\\xa2\\xff\\x3a\\x81\\x94\\x8d\\xa0\\xee\\x23\\x8e\\x16\\x70\\xb2\\x22\\x5a\\xcd\\xe4\\xd7\\x0e\\x5a\\xc2\\x64\\x12\\x28\\x91\\xa4\\xff\\x17\\x26\\xbf\\xfe\\x4b\\x75\\x7e\\x7e\\x75\\x4d\\x7e\\x7e\\xd5\\x45\\x47\\x7e\\x6c\\xac\\x5e\\x5f\\x92\\xbb\\xa0\\x3b\\xd9\\x64\\xb6\\xd1\\x03\\x35\\x0e\\x31\\xe8\\xa3\\xe3\\x1d\\x45\\x99\\x69\\x05\\xd9\\x63\\xf7\\x95\\x2c\\xc5\\x1f\\x2d\\x2b\\xbe\\xf5\\xe1\\x93\\x4b\\xb9\\x8a\\x27\\x8b\\xc5\\xaa\\xb8\\x98\\x98\\xb8\\x6a\\xf3\\xd9\\x8a\\xb3\\xbe\\x6b\\x67\\x2a\\xa4\\x3f\\x0b\\x1c\\xc6\\x84\\x32\\x87\\xd8\\x5a\\xc2\\x7e\\xb8\\x3f\\x16\\xb3\\x1f\\x9c\\xe4\\x2a\\x2f\\x77\\x95\\xd0\\x7f\\xd6\\xd9\\xed\\x7a\\xab\\x2a\\x20\\x51\\x6b\\x4f\\x16\\xbf\\xb1\\xce\\x62\\xb7\\x5b\\x4a\\xe8\\x3f\\x1d\\x91\\x86\\xc8\\xe8\\xf4\\xb4\\xec\\xb4\\xaf\\xfb\\x16\\x3f\\xbd\\xa2\\xb4\\x74\\xc5\\xd3\\x5c\\xff\\x03\\xee\\xd9\\xb3\\xdd\\x0f\\xcc\\x16\\xb3\\xa2\\x75\\xda\\xc8\\xd9\\xf0\\x81\\x9b\\xfd\\x8c\\x55\\x96\\xb2\\x1f\\x3c\\x1c\\xa6\\x4f\\x6d\\xdb\\x2f\\x3e\\x76\\x2f\\xe8\\xee\\x15\\x1f\\xf3\\xbf\\x40\\x48\\x40\\xa1\\xbe\\x0f\\xf9\\xab\\xaa\\xd5\\x88\\x43\\x36\\x94\\x86\\xb2\\x90\\x13\\x85\\xba\\x67\\xe4\\x64\\x67\\xa6\\xa7\\xa6\\x84\\xf3\\x18\\x09\\x99\\xf6\\x00\\x4e\\xa0\\x06\\xc4\\x12\\x6e\\x1c\\x02\\xe4\\x70\\xb1\\x5e\\xa7\\x13\\x85\\x50\\xd9\\xeb\\x4d\\x5a\\x07\\x47\\x7a\\x97\\xfe\\xe2\\xb9\\xb8\\xd1\\xf7\\xac\\xef\\x0b\\xf8\\xa6\\x62\\x86\\x3a\\x48\\x97\\x66\\xd6\\x27\\x55\\x0d\\xbb\\xf3\\x06\\xeb\\xec\\xf0\\x15\\x6c\\x8b\\x4c\\x4a\\x50\\x47\\xc6\\x04\\xc6\\x99\\xb4\\xaa\\xf7\\xde\\x7b\\x6f\\x29\\xcf\\x63\\x9e\\x57\\xb4\\x8d\\x65\\x8d\\x65\\x71\\x1f\\xdc\\x8a\\x22\\xc1\\x84\\x61\\xf1\\xb9\\xf9\\x6e\\x9b\\x7b\\x41\\x9d\\xd5\\x50\\x36\\xbf\\x3a\\x37\\xd3\\x9d\\x13\\xed\\xc8\\xb0\\x06\\x9b\\x93\\x2d\\xd9\\x99\\x7d\\x4f\\xfa\\x3a\\xf9\\xc0\\x0b\\x3c\\xc2\\x24\\xdf\\xff\\x5f\\x78\\xc4\\x3f\\xc0\\x62\\x24\\x55\\xd7\\x93\\xa2\\x43\\x79\\xba\\x06\\xfc\\x24\\x2d\\x4e\\x49\\xc6\\xeb\\xad\\x7e\\x0e\\x61\\xad\\x9f\\xb4\\x85\\x47\\x90\\x31\\xff\\xe2\\x8a\\x15\\x17\\x87\\x33\\x01\\x32\\xe7\\x5f\\x58\\xb1\\xe2\\xc2\\x70\\x16\\xbc\\x00\\x5a\\x67\\x6f\\x55\\x55\\xaf\\x53\\x0b\\xa0\\x73\\xf6\\x91\\x57\\x39\\x11\\x00\\x7f\\x9d\\xe7\\x3d\\xd2\\xd1\\x71\\xc4\\x3b\\xef\\xe9\\x79\\xde\\x43\\xed\\xed\\x87\\xbc\\xf3\\x62\\xf3\\xd7\\xce\\x29\\x2a\\xea\\x1f\\xcd\\xff\\x65\\xfe\\xda\\xb9\\x25\\x25\\x73\\xd7\\xe6\\x23\\x80\\x02\\x84\\xb8\\x47\\xb8\\x04\\x64\\xa0\\xb1\\x35\\x52\\x60\\x32\\xc2\\xc0\\x03\\x8b\\x48\\x46\\x80\\x39\\x18\\x92\\xe3\\x91\\x8b\\x51\\x43\\xb4\\x39\\xdc\\x1a\\x26\\xa8\\xa2\\x88\\x8d\\xce\\x09\\xd2\\x3c\\x26\\xa2\\xd0\\x34\\x39\\x25\\xb2\\xd2\\xc8\\x3d\\xe2\\x7b\\x02\\x12\\xca\\xf2\\xca\\x0b\\xea\\x6b\\xe0\\x42\\x4a\\xd3\\x8a\\x2a\\x1a\\x48\\x15\\xe3\\xa8\\xb1\\x5f\\x85\\x23\\x4b\\x21\\xb4\\xa8\\xcb\\x94\\x55\\xec\\x29\\x70\\x0d\\xd4\\xd8\\x8c\\x25\\x5d\\xb9\\xc9\\x35\\x55\\x35\\xd6\\xfb\\xa8\\xcd\\x42\\xcd\\xff\\x82\\xfb\\xb3\\xe2\\x63\\xa4\\x60\\xfa\\x9e\\x45\\x27\\x30\\xb9\\x60\\xb2\\x2a\\x4d\\xe0\\xc8\\xf5\\x6f\\x87\\x6c\\x67\\x93\\x0f\\xd4\\x6c\\xdf\\xe3\\xfe\\x7c\\xe5\\xad\\x37\\x9f\\x04\\xf3\\xc9\\x9b\\x51\\xf6\\x82\\xc4\\xa4\\x6c\\x7b\\xaa\\x21\\x2c\\x4e\\x1f\\xda\\x48\\xdf\\xc5\\x67\\xa7\\x67\\xc6\\x85\\x19\\xf4\\x21\\xfc\\x2f\\xae\\x5d\\x03\\xc5\\x7f\\x8c\\xa5\\x59\\x06\\x5d\\x8c\\x5e\\x1d\\x63\\x54\\x6b\\x8c\\x65\\xd9\\xf1\\xba\\x68\\x5d\\x58\\xb4\\x51\\x8d\\x30\\x1a\\xe3\\x7f\\xc1\\xdf\\x54\\x7c\\x40\\x9e\\x1d\\x4d\\x9e\\xad\\x56\\x4e\\x7e\\xb6\\xde\\xea\\xe7\\x65\\xcb\\xf5\\xcf\\x18\\x25\\xf7\\xc3\\x2b\\x6f\\xbf\\xfd\\x24\\x84\\xbf\\xf8\\x2f\\x28\\x76\\x47\\x5a\\x73\\x62\\x15\\x9b\\x0e\\xea\\x2d\\x59\\x51\\xc0\\xff\\xe2\\xe6\\x4d\\x50\\x6c\\xde\\x25\\xe8\\x4d\\x9a\\xa8\\x30\\xe5\\xac\\x4e\\x8f\\x31\\x23\\x3e\\x9c\\x2b\\x62\\x72\\x2f\\x8c\\xb4\\xef\\x63\\xc5\\x49\\xf2\\x8c\\x40\\xf2\\x8c\\x80\\x3b\\x9e\\x21\\x90\\xb9\\xc7\\x7d\\xfc\\xd6\\x93\\x4f\\xbe\\x09\\x89\\x67\\xc4\\x23\\x07\\xbf\\xfc\\x2e\\xff\\x8b\\x0b\\x17\\x40\\xd1\\x0d\\x1c\\xbd\\x16\\x82\\x48\\xfd\\xfe\\x31\\xe9\\x5a\\x2c\\xc9\\x4c\\xff\\xd5\\x9c\\x09\\x67\\x9c\\x06\\xd3\\x5b\\x4f\\x3c\\xf9\\x36\\x97\\xf8\\xce\\xbb\\x87\\x84\\xdf\\x89\\x9f\\x90\\xab\\xbf\\x28\\xfa\\xe8\\xb5\\x99\\x24\\x7e\\xfa\\x29\\xc5\\x63\\x64\\xae\\x45\\x91\\x6b\\x23\\x75\\x3c\\xbb\\x76\\xda\\xe9\\x8d\\xe2\\x24\\xb8\\xa7\\x08\\x35\\x47\\x6d\\xdd\\xe8\\xcc\\xb4\\x93\\x11\\x36\\x77\\xaa\\xbd\\xd4\\x16\\x31\\xf3\\xf4\\xff\\x7d\\x47\\xb8\\x56\\x48\\x40\\x1d\\xd6\\xea\\xb9\\x85\\x06\\x97\\x4d\\xaf\\xb7\\xb9\\x0c\\xb6\\xaf\\x49\\xb6\\xa8\\x8f\\xf9\\xc3\\xf8\\x2f\\x8a\\xc2\\x09\\xd9\\x3b\\xd9\\x52\\xff\\x71\\xb4\\x2d\\x2b\\x72\\x89\\x29\\xc6\\x2b\\x84\\xa6\\xf6\\xb4\\x94\\x6b\\x67\\x16\\x2e\\x2e\\x5e\\xcf\\xf6\\x00\\x96\\x3b\\xf8\\x30\\x7f\\x08\\x29\\x51\\x20\\xcd\\x8a\\x10\\x08\\x3c\\xa6\\x33\\x8f\\xc7\\xab\\xfc\\x61\\x35\\x73\\x39\\x18\\x37\\x3e\\xb3\\x29\\x07\\xc6\\x09\\x2e\\xd0\\x61\\xdf\\x27\\xcb\\x5f\\x84\\x1f\\x5e\\x86\\x6f\\xbf\\xe0\\xfb\\x32\\x1c\\x79\\x07\\xf4\\xe2\\x6f\\xf9\\x43\\xb7\\x56\\xc3\\xd3\\x70\\x4b\\x8a\\x2b\\xfc\\x3a\\xb9\\x7f\\x35\\xb9\\x7f\\x34\\xb2\\xa2\\x1c\\xc9\\x8f\\xc8\\x30\\x25\\x32\\xf9\\xdc\\x78\\xce\\x20\\xd9\\xa5\\x4f\\x1e\\x15\\x13\\x83\\x50\\x4e\\x76\\x4a\\x72\\x8c\\x35\\xc6\\x62\\x88\\x25\\x97\\x46\\x19\\x55\\x2a\\x7f\\xa6\\x20\\x9e\\x0d\\x3c\\xc3\\xac\\xf1\\x26\\x50\\xcb\\x01\\x86\\x49\\x0e\\xff\\x0b\\xd3\\xd7\\xe1\\x01\\xc7\\xa2\\xb9\\x9d\\xa5\\xe6\\x04\\x72\\x54\\xca\\x6a\\x2f\\x36\\x27\\x16\\xcd\\x1c\\x58\\xe4\\x14\\xff\\x01\\x33\\x52\\xbb\\xab\\xed\\x96\\xb2\\xce\\x0c\\xf1\\xf7\\x1f\\x27\\xb7\\x95\\xdb\\xd3\\xeb\\x7b\\xed\\x3f\\xe7\\x0f\\x85\\x18\\x32\\x6b\\xe6\\x14\\x67\\x36\\x16\\xda\\x43\\x66\\xa4\\x57\\xf5\\xe5\\x16\\x0f\\xd4\\xe7\\x24\\x12\\x43\\xb1\\xb8\\x07\\x34\\xf6\\x2a\\x47\\x4e\\x5d\\x86\\x1e\\x0e\\x81\\xda\\xea\\xce\\xc8\\xa9\\xb0\\x84\\x02\\x8d\\xdb\\x21\\x32\\xc3\\x45\\x64\\x86\\x95\\xd9\\xd5\\x31\\xd5\\x74\\x84\\x11\\x9a\\x87\\x81\\x13\\xf8\\xe5\\x32\\x62\\x5b\\xce\\xec\\x5f\\xc5\\x02\\xae\\xac\\xc8\\x6a\\x4b\\x24\\x3c\\xf7\\x4a\\x55\\xd4\\x34\\xe9\\x62\\xb2\\x58\\x64\\xe9\\x42\\xcf\\x4f\\xbc\\x6b\\x46\\xdb\\xd6\\x87\\xe7\\x8c\\x12\\xc8\\x08\\x40\\xe5\\x0e\\xef\\xba\\x39\\x0f\\x6e\\x68\\x9a\\xe1\\xd5\\xee\\xdb\\xd2\\xb1\\xbe\\xc1\\x04\\x90\\x50\\x3b\\xda\\xbe\\xfd\\x90\\x1e\\x36\\x0c\\x1c\\x9b\\xe7\\xe8\\x3e\\xf5\\xf6\\x8a\\xf9\\x2b\\xdf\\x39\\xd5\\xe5\\x1a\\x3e\\x31\\x67\\xed\\xf6\\x8a\\x15\\x47\\x3c\\xc3\\x75\\x87\\x47\\xaa\\x60\\xc3\\x46\\x36\\xbe\\x2c\\xef\\xd1\\x4c\\xd2\\xff\\xc1\\x28\\x86\\x79\\xeb\\x28\\x20\\x04\\x23\\x7f\\x7f\\xf3\\x52\\x7f\\x87\\x84\\x20\\x14\\x12\\x13\\x12\\xad\\x0e\\x25\\xc5\\x66\\x18\\x15\\x52\\x5f\\x1b\\x38\\x3d\\x4d\\xe3\\xcf\\xa9\\xa9\\xbf\\x8e\\x46\\x01\\x3d\\x0f\\x4b\\x36\\xbc\\x7f\\xb2\\x03\\xa0\\xfb\\xec\\xd7\\x37\\x5d\\xbe\\x3c\\xeb\\xc8\\x90\\x13\\x20\\xab\\xff\\x60\\x1f\\x7f\\x08\\xb7\\xdc\\xf7\\xde\\xa6\\xd2\\xad\\xef\\x1d\\x69\\x02\\xee\\x1f\\x63\\x0f\\x03\\x8d\\xd9\\x2b\\xeb\\xbe\\x6f\\x51\\x01\\x20\\x8a\\x43\\x26\\x75\\x30\\x91\\x3a\\x04\\xb1\\x38\\x27\\x0e\\xf1\\x02\\xc7\\x0f\\x22\\x01\\x49\\x76\\xbd\\x71\\x63\\xde\\x9d\\xfe\\x0d\\xa3\\xd6\\xff\\xcb\\xbd\\xe5\\x7b\\x15\\x5f\\x18\\xbb\\xcc\\x75\\xf8\\x16\\x62\\x37\\x0e\\x11\\xef\\x3d\\xcd\\x1f\\x3a\\x2b\\x3e\\x23\\x9d\\x11\\x7e\\x4d\\xee\\x5d\\x4c\\xee\\x1d\\xc0\\xf2\\xc4\\x48\\x20\\xc0\\xc1\\xf1\\x88\\xb0\\xa9\\x33\\x57\\x6d\\xf2\\xdf\\xf3\\x17\\xbe\\x37\\x5e\\xe5\\x3a\\x7d\\x8b\\x71\\x31\\xfc\\x5d\\x0c\\xa6\\xf7\\x3b\\x23\\xdd\\x6f\\x33\\x19\\xdb\\x32\\x32\\xb6\\x69\\x94\\x3b\\xcf\\x86\\x30\\x2f\\xd0\\xe5\\xc0\\x29\\x38\\x4a\\x56\\x22\\x0f\\xad\\x02\\x31\\xb3\\xd3\\xa4\\x21\\x56\\x6b\\xfd\\xc3\\x4b\\xe0\\x4f\\x9f\\x31\\xbc\\x74\\xf3\\xa0\\x4a\\x21\\x5f\\x66\\x5b\\xb0\\x66\\x73\\xd1\\x86\\x57\\xf7\\xd6\\x01\\x94\\x6f\\x7d\\x61\\x63\\xcf\\x03\\x1b\\x5b\\x43\\x9e\\x8f\\x3a\\x34\\xd2\\xb5\\xc1\\x63\\x04\\x48\\x9e\\xb9\\xb5\\xcb\\x58\\x5d\\x51\\x12\\x05\\xe4\\x0c\\xfc\\xd5\\x53\\x59\\x84\\x40\\xb7\\xeb\\xf4\\x7b\\x6b\\xda\\xd7\\x7c\\xe5\\x74\\x57\\xc6\\xac\\x03\\x7d\\x4b\\x96\\x57\\xae\\xba\\xaf\\xa1\\xb3\\xe9\\xd8\\x48\\x95\\x10\\x16\\x17\\xf9\\xa7\\xa3\\xac\\xee\\xe7\\x11\\xe2\\x3e\\xe6\\x0f\\x4d\\xcb\\x99\\x23\\xbb\\x79\\xd0\\x78\\x0f\\xdf\\x99\\x33\\x87\\xfb\\xf8\\x19\\x51\\xf1\\xcc\\x33\\xf0\\xc9\\x33\\xf0\\x37\\x31\\x84\\x3f\\xe4\\xf3\\x61\\x8e\\xde\\xef\\xbb\\x08\\xf1\\x61\\xfc\\x41\\xff\\xfd\\x90\\xc0\\xcc\\xd5\\x0c\\xa2\\xc0\\x60\\x36\\xc5\\xdc\\xa4\\xfb\\x69\\xfc\\xe3\\x45\\xdd\\x45\\xdf\\xe5\\x72\\xc5\\x97\\xa0\\x62\\xec\\xcb\\x34\\xc2\\x81\\x3f\\xf8\\xe0\\xd8\\xf5\\x4b\\x97\\x38\\x8f\\xd4\\xbf\\xa7\\x6e\\xff\\x85\\xfb\\x15\\xa9\\xa3\\x9e\\xc5\\xa2\\x22\\x8c\\x56\\xd1\\xf0\\xd1\\x55\\x32\\x9d\\x46\\x15\\x34\\x50\\x5a\\x69\\x9e\\xda\\x96\\xc7\\xb9\\xd2\\xc6\\x33\\x5c\\x70\\xc9\\x2f\\x63\\x5c\\xb9\\xf2\\x44\\x4b\\xd7\\x99\\xd5\\x75\\xaa\\x97\\x93\\x2b\\xbb\\xb3\\x32\\x5a\\x8a\\x4c\\x98\\x3f\\x34\\xf6\\xbb\\xfe\\x63\\x43\\x8e\\xd4\\xd9\\xf7\\xcd\\x2f\\xe9\\xc9\\x8b\\x32\\x16\\xf7\\xe4\\x53\\xdc\\x39\\xa9\\xff\\x76\\xf2\\xac\\x19\\xf4\\x59\\x81\\x0a\\xe0\\xfc\\x46\\x7f\\x40\\x3d\\x9c\\xd4\\x1f\\xe1\\x1a\\x75\\x38\\x7b\\x96\\x92\\xf5\\x45\\xae\\x14\\x87\\x88\\x8e\\x7b\\xbd\\x3b\\xe1\\xe0\\xcf\\xc5\\x44\\x8c\\x7e\\x8a\\x95\\x87\\xc5\\x7d\\xa4\\x4f\\xbe\\x7d\\x04\\xce\\x93\\xdc\\x57\\x1b\\x29\\x0f\\x06\\xb9\\x6f\\x1b\\xb9\\x2f\\xcb\\x25\\xc6\\x72\\xbd\\xd1\\xa6\\xf5\\xca\\xb3\\x2d\\x8c\\x53\\xe9\\xed\\x49\\xb4\\x3f\\x1c\\x70\\x12\\xbf\\x34\\xb6\\xed\\xcd\\xd3\\x64\\xc6\\x4a\\xe3\\xc3\\x17\\xd0\\xfa\\xd0\\x75\\xa0\\xa2\\x94\\x73\\x50\\x2f\\x3b\\xa7\\x79\\xe6\\x3e\\x67\\xb2\\x56\\x4e\\x97\\x44\\x67\\xec\\x1d\\xe9\\x92\\x96\\xfd\\xe0\\xaf\\xd7\\xbe\\xb7\\xeb\\x67\\xd7\\xfe\\x83\\xbb\\xb1\\xf3\\xd6\\x6a\\xee\\x15\\xdf\\x36\\xbc\\x7a\\xac\\x99\\xdd\\xfb\\x75\\x72\\xef\\x50\\xf2\\x8a\\xe5\\xa7\\x52\\x62\\x52\\x29\\x9a\\x9f\\x8a\\xfc\\xed\\x01\\x7f\\x53\\xd5\\xe1\\xb4\\x5b\\x27\\x99\\xaf\\xf8\\xd0\\xa7\\xc4\\x20\\xe1\\x8b\\x4f\\xc3\\x3f\\x15\\xd7\\xb8\\xa5\\x63\\x27\\x48\\x2f\\x1e\\xe7\\x96\\xd1\\xbc\\x00\\x64\\x0d\\xd4\\xfb\\x75\\xa2\\x38\\x77\\xf4\\x78\\x80\\x2d\\xc7\\xc9\\xd3\\xdd\\x46\\xbc\\x5c\\xe4\\x66\\x9f\\xaf\\x28\\xd5\\x43\\xf1\\x86\\xe7\\xd6\\xaf\\x7b\\x6e\\x63\\x29\\x40\\xc9\\xc6\\xe7\\xd6\\xad\\xbf\\xbe\\xa1\\x18\\x9e\\x87\\xf8\\xea\\xd5\\xed\\xed\\xab\\x6a\\xe2\\x01\\x12\\x6a\\x56\\xb5\\x77\\xac\\xae\\x32\\x00\\x36\\x2f\\xff\\xea\\xfd\\x73\\xe6\\x3c\\xf0\\xd5\\x65\\x15\\xcb\\xbe\\x7a\\xa1\\x7f\\xce\\x03\\xef\\x2f\\xc7\\x35\\xc7\\x46\\xeb\\x3d\\x6b\\xef\\xab\\xae\\xaa\\xb9\\x6f\\x9d\\xc7\\xb3\\xf6\\x58\\x8d\\x24\\xd3\\xe6\\xdc\\x76\\xf1\\x0b\\x48\\xfd\\xa2\\x51\\x26\\x8d\\x6c\\x10\\xfc\\x4c\\xf4\\x18\\xd5\\xdc\\xbd\\xaa\\x36\\x7f\\x55\\x49\\x94\\x55\\x92\\xe2\\xb3\\xeb\\x3b\\x1f\\xe2\\xf2\\xda\\x9c\\x3f\\xde\\x22\\xfe\\xab\\xd8\\xbd\\xf1\\x95\\xdd\\x35\\x00\\xd5\\xbb\\x5f\\xde\\x48\\x5e\\x55\\xc3\\x0d\\xb0\\xb4\\x6c\\xe9\\xee\\xda\\xdc\\x62\\x05\\xb0\\xb6\\x6e\\xe9\\xea\\xde\\xdc\\x92\\x44\\x6a\\x5d\\x7f\\x60\\xd3\\xb0\\xe5\\xe1\\x15\\xef\\x86\\xf4\\x9e\\x7b\\x7f\\x75\\xc5\\xea\\xf7\\xcf\\xf7\\xf5\\x9e\\xfb\\xda\\x1a\\xdc\\x74\\x7c\\x55\\x55\\xf5\\xea\\xe3\\x0d\\x55\\x8d\\xc7\\xd7\\x54\\x57\\xaf\\x3a\\x41\\xf3\\x8b\\x1c\\x65\\xf1\\x4c\\x87\\x58\\x84\\x3d\\xe3\\xc4\\x46\\x3c\\xc8\\x98\\xfa\\x21\\x59\\x66\\xf9\\xa7\\x40\\xb2\\x31\\xc5\\x28\\xcb\\xc2\\x49\\x11\\xf5\\x40\\x76\\xf3\\xf1\\xad\\x0e\\x0f\\x8a\\xbf\\xf1\\xc2\\x93\\xed\\x0f\\x6e\\xf1\\x98\\xdd\\x5d\\xd9\\x90\\xf8\\x8e\\xef\\x17\\xff\\xca\\xe8\\xab\\x49\\xb3\\xd7\\xce\\xc9\\xfe\\x2b\\xbc\\x26\\x96\\xf2\\x87\\x20\\xb9\\x73\\x6f\\x7f\\xe9\\x80\\x27\\x5f\\x27\\x46\\x07\\xe2\\x6e\\x88\\xcc\\xf2\\x38\\xf3\\x9a\\xb3\\x23\\xe9\\x3e\\xb6\\x9f\\x8c\\x73\\x3e\\xe9\\xc7\\x2a\\xb6\\x8f\\xf9\\x19\\x3a\\x10\\xe5\\x44\\x15\\x28\\xc2\\x9c\\x51\\x17\\xcb\\x70\\xf8\\x2a\\xae\\xa1\\xdc\\x5d\\x54\\x98\\xeb\\xa4\\xa1\\x2e\\x11\\xe1\\x0a\\x15\\x65\\xc9\\x4d\\xe7\\x49\\x07\\xca\\x16\\x40\\xfd\\x04\\x0a\\x82\\xd7\\xfb\\x37\\x68\\xb6\\x7a\\xa5\\xbe\\xe5\\xb6\\x41\\x74\\x5a\\x41\\x69\\x69\\x4c\\xd5\\xd9\\x1d\\x33\\xad\\xe5\\xdd\\x43\\x0b\\x32\\xdb\\x2f\\x6e\\x6d\\x55\\xbc\\x80\\x33\\x1a\\x06\\xb2\\x93\\x7b\\x1b\\xb2\\xe3\\x73\\xca\\x2a\\xdc\\x51\\xd5\\xc7\\xd6\\x37\\x24\\x57\\xf6\\xce\\x5b\\x94\\xd5\\x79\\x65\\x7f\\xaf\\xe2\\x45\\x9c\\xdb\\xb9\\xd8\\x95\\x3c\\xbb\\xd9\\x09\\x29\\x66\\x57\\x4a\\x9c\\x2e\\x4c\\xa9\\x76\\xb4\\xad\\xef\\xcc\\x9f\\x5d\\xe3\\x30\\x86\\xd9\\x7b\\xf6\\xf6\\xe6\\x36\\x65\\xeb\\xc2\\xac\\x65\\x59\\x89\\x39\\xc9\\x71\\xda\\x50\\x45\\x78\\x6e\\xc7\\x86\\x8e\\xc2\\xd9\\xd5\\x59\\xf1\\x21\\x29\\x3d\\xfb\\x07\\x8a\\x67\\x3a\\xb4\\x21\\x49\\x6e\\x26\\x7b\\x66\\x23\\xc4\\x2f\\xa2\\xba\\x0e\\x5b\\xb7\\x1c\\x06\\x04\\xdc\\xa4\\x4d\\x42\\x92\\x3a\\x72\\x06\\xaf\\x45\\x62\\xd7\\x8b\\x62\\x0f\\x3f\\x83\\xec\\x67\\xe4\\xf7\\x2c\\xbd\\xfe\\x3a\\xe9\\x2f\\x3b\\xb9\\x3e\\x8a\\xca\\x43\\x9e\\x5c\\x8f\\x61\\x95\\xec\\x29\\xab\\x9a\\x94\\x16\\x57\\x20\\xeb\\x1f\\x34\\xfe\\xa5\\x41\\x38\\xa9\\xfc\\x93\\x4b\\xc3\\xa7\\x00\\xae\\x59\\x7f\\xa9\\x6f\\xd6\\xa5\\x75\\xd5\\x00\\xd7\\x01\\x92\\x2a\\xfa\\x0b\\x09\\x3c\\x37\\x09\\x80\\xac\\xbd\\x7f\\xf4\\x9f\\x58\\xe8\\x72\\x0d\\x9f\\x1c\\xe0\\x66\\x8c\\xfd\\xa3\\x70\\xb6\\x3b\\x31\\xd1\\x3d\\xbb\\x90\\x9b\\x81\\x00\\x75\\x92\\x7a\\xef\\x22\\xcf\\x55\\xd1\\xdc\\x63\\x54\\x7c\\x51\\x29\\x46\\xe3\\x93\\xe5\\xaa\\x6b\\x88\\xc4\\x91\\x0d\\x5d\\xe0\\xc0\\x2d\\xb1\\x71\\x90\\xf5\\x65\\xd1\\xfd\\xb4\\x58\\xf6\\x2e\\xb8\\x96\\x2c\\xe6\\xba\\x6f\\xad\\x26\\x97\\x23\\xe4\\xcf\\x93\\xfc\\x02\\x79\\xc3\\x72\\xb5\\x05\\xfa\\x73\\xb5\\x71\\x98\\xde\\x0d\\x4b\\x33\\x2f\\x5c\\x3d\\x21\\x7c\\x88\\xe4\\x21\\xff\\x53\\xdb\\x31\\xb7\\xfe\\xf4\\x53\\xbf\\xbd\\xf8\\xe2\\x6b\\x17\\x7f\\x73\\xe5\\xcc\\x8d\\x73\\x30\\x93\\x2b\\x20\\x02\\xa8\\x64\\xec\\x75\\x52\\xf1\\xb7\\x39\\x7f\\xbc\\xf1\\x00\\xb9\\xf7\\x30\\xdd\\x7f\\xa8\\xbc\\x0d\\x50\\x70\\x9c\\x9c\\x24\\x0f\\x7a\\xe4\\x7b\\x13\\xc1\\xc6\\x7a\\x99\\x09\\x5a\\xf6\\xbf\\x03\\xf7\\x43\\xdc\\xf7\\xc5\\xf5\\x70\\xfa\\x07\\xe2\\x77\\xc4\\xef\\xfd\\x80\\x98\\x1b\\x46\\xbf\\x8f\\xbf\\x07\\xcf\\xfa\\x5e\\xf6\\x5d\\x87\\x17\\xc4\\x2a\\xec\\xc1\\x7e\\x7b\\x60\\x23\\xe5\\x94\\x67\\xfd\\x10\\xeb\\x8e\\x52\\x70\\x78\\x6a\\x47\\x90\\x9b\\xb3\\x8e\\x00\\x16\\x8a\\x48\\xee\\x3c\\x0c\\x35\\xdf\\x12\\xdd\\x2f\\x88\\x35\\xdf\\xc2\\x95\\xb8\\xce\\xa7\\x12\\x97\\xc0\\x83\\xf8\\x0f\\x12\\x97\\x01\\xb9\\x57\\x39\\x95\\x97\\x54\\x16\\x07\\x80\\x9f\\xeb\\xa2\\x1e\\x71\\x54\\x87\\xc0\\x83\\x72\\xc8\\x04\\x13\\xc6\\x6c\\x66\\x30\\x89\\xee\\x94\\x42\\x26\\x2e\\xe2\\x87\\xc7\\xd6\\x91\\x34\\xde\\x5b\\xb9\\x05\\x70\\xfa\\xf4\\x66\\x6e\\xfd\\xd9\\x0d\\x74\\xb9\\xb4\\xf1\\x3f\\xe1\\xce\\x29\\x39\\xa4\\x46\\x49\\x44\\xbf\\x8f\\x0d\\x9f\\xa2\\xdf\\x4b\\xa1\\x81\\xd6\\xa9\\x87\\x18\\x3d\\x77\\x2e\\xc5\\xb3\\xb4\\xbc\\x7c\\x69\\x63\\xca\\x7d\\x50\\xd3\\x50\\x5f\\x0d\\xff\\xa7\\xa8\\xaa\\x89\\x49\\x2d\\x48\\x50\\x1e\\x3c\\x1b\\x9d\\xe2\\x8a\\xe1\\x84\\x6b\\x19\\x0d\\xb9\\x06\\x43\\x6e\\x43\\x46\\x66\\x45\\x45\\xa6\\x7a\\x33\\xaf\\x8b\\x57\\xeb\\x83\\x15\\x6d\\x0d\\x95\\x94\\x01\\x94\\xa3\\x39\\xa1\\x21\\x04\\x21\\xae\\x8d\\x3f\\x8a\\x14\\xd4\\xee\\x89\\x20\\x93\\x6e\\xf0\\x82\\x33\\xc9\\xc1\\xb5\\xdd\\x14\\xd7\\xe2\\x94\\x68\\xee\\xea\\xe8\\x85\\x1b\\x7e\\x2e\\x88\\x6c\\xb2\\xe6\\xcd\\xa4\\x9c\\x9e\\x95\\x23\\x8d\\x2a\\xe1\\xa8\\x20\\xb4\\x4c\\xca\\x5a\\xcb\\x64\\x8d\\x91\\xcf\\x1e\\xbb\\x08\\x57\\x0c\\xd5\\x05\\x56\\x80\\xc4\\x82\\x86\\x14\\x57\\x5f\\xb9\\x95\\xbb\\xc9\\xd5\\x6f\\xb8\\xbf\\xa3\\xe1\\xc8\\x8a\\x8a\\xac\\xfa\\x9e\\x14\\xf1\\x06\\xde\\xba\\x0b\\x1e\\x88\\x2b\\xab\\x9f\\x99\\x91\\x5a\\x95\\x19\\x0d\\x31\\x79\\x6d\\xb9\\xbd\\x07\\xe6\\x64\\xda\\xdb\\xb7\\xcc\\x2c\\x5e\\xbd\\xb8\\xdf\\x2a\\xfe\\x96\\xf6\\xf7\\x5b\\x64\\xed\\xe8\\xc8\\x73\\xdd\\xe4\\xb9\\x36\\x2d\\xd0\\x33\\x93\\x6c\\x05\\x98\\xf2\\x58\\x49\\xd2\\x4d\\x16\\x1d\\x92\\xb4\\x83\\x8f\\x36\\xda\\x7b\\xaa\\xd3\\x92\\x8a\\x9b\\xed\\xb6\\xa6\\x92\\x64\\xfe\\x26\\x5f\\xb7\\xfa\\x68\\x7d\\x03\\x91\\xb3\\xc6\\xbc\\xba\\x94\\x8c\\xb6\\x62\\x93\\x67\\xc3\\x99\\xa6\\xa6\\x93\\x6b\\xeb\\x79\\x2f\\x9f\\x52\\x3e\\x33\\x35\\xad\\xa3\\xd2\\x96\\xd1\\xd8\\x9f\\xb9\\x11\\x9f\\x67\\x9a\\x7c\\x7a\\x65\\xaa\\x56\\x43\\x0e\\x53\\xad\\xeb\\x9b\\x93\\x89\\x00\\xef\\xcc\\x6e\\x29\\x49\\x0f\\x0d\\x49\\x2b\\xef\\x29\\xa4\\x40\\x3c\\x6b\\xeb\\xe6\\x8e\\x8c\\x8a\\xd4\\x08\\x5d\\x7a\\x4d\\x76\\x9e\\x27\\x55\\x03\\x6c\\xaf\\x61\\xb9\\x0d\\x4b\\xf8\\x43\\xd4\\x7f\\x4f\\xc6\\x34\\x38\\x28\\x80\\x67\\xe7\\x3d\\x2d\\x8b\\x40\\x97\\x9d\\xf3\\x87\\xaf\\x5d\\xbb\\xe6\\x7b\\x9a\\xc3\\x15\\xaf\\xfb\\xde\\x83\\xbd\\x16\\x78\\xe0\\x34\\xb1\\x93\\x29\\x56\\x73\\x11\\xbe\\x30\\xac\\x2f\\x93\\xb8\\xb3\\x48\\xfb\\xb5\\xe4\\x3e\\xc9\\xa4\\xfd\\x6a\\x20\\xed\\xd7\\x50\\x8d\\x89\\x93\\xb0\\x21\\x13\\x0d\\xd6\\xe9\\x72\\x65\\x07\\xab\\x45\\xa1\\xfc\\x67\\x25\\x7e\\xdc\\xf7\\x4f\\x8b\\x63\\x49\\x7e\\xe7\\xb1\\xc5\\x45\\xee\\x95\\x67\\xbb\\x9b\\x0e\\x8f\\x34\\x04\\x3e\\xa3\\xd9\\xd9\\xe7\\xea\\x2a\\x4a\\x20\\xfe\\xb7\\x9c\\x92\\xa1\\x6c\\x5c\\x81\\xeb\\x1f\\x12\\x7f\\xac\\x8f\\xca\\x1b\\x3e\\xda\\xdd\\x77\\x74\\x9e\\x33\\x65\\xe6\\xc6\\xd6\\xbe\\x2e\\x48\\x2a\\xeb\\x76\\xba\\x3a\\x8b\\x8c\\x60\\x4e\\x94\\xda\\xf2\\x53\\x52\\x87\\x14\\xfe\\x38\\x8a\\x47\\x39\\xa4\\x2d\\x29\\x09\\x1a\\x36\\x3f\\xb5\\xc4\\xcb\\x4b\\x0d\\xac\\x72\\x3d\\xfc\\xfb\\x63\\x2e\\x27\\x6f\\x8c\\xfe\\x0a\\x71\\x2b\\x42\\x67\\x5f\\x58\\x57\\x17\\xe0\\x3c\\xd9\\xd4\\xb1\\x7f\\xae\\xb3\\x74\\xc5\\xe9\\xae\\xb9\\x17\\x56\\x14\\x03\\xb4\\x3f\\xf4\\x87\\x33\\x1f\\x58\\xeb\\xdd\\x8e\\x50\\x30\\x14\\xf6\\x96\\xe4\\x74\\x16\\x1b\\x8d\\x45\\x1d\\xfc\\xf1\\xfb\\x21\\xbd\\xf7\\x9e\\xde\\xfc\\x62\\x82\\x24\\x3c\\x3c\\xb3\\xe7\\xf8\\xc2\\x82\\x9a\\x4d\\x97\\xfb\\xdb\\x4f\\xfe\\xe5\\xf1\\x3e\\xf0\\x7d\\x27\\xc2\\xe2\\x4a\\x34\\x39\\x97\\x76\\xb9\\x48\\x2d\\x1d\\x0e\\x92\\x74\\x0c\\x01\\x7a\\xd1\\xaf\\x1f\\xb1\\x39\\x4c\\xfb\\x88\\x0a\\x08\\x2a\\x8b\\x0b\\x7c\\xbf\\x79\\x03\\xeb\\x7d\\xd5\\xdc\\x56\\xde\\x7c\\xeb\\x07\\x4c\\x1a\\x23\\xc4\\xb1\\x3e\\x35\\xb0\\x73\\x58\\x21\\x6a\\x26\\x36\\xfb\\x7a\\xb7\\x2b\\x35\\x31\\x84\\xda\\xec\\xef\\x9c\\x47\\xd4\\x64\\x3f\\x09\\xae\\xc7\\xd1\\xde\\x9d\\x40\\xf5\\x4d\\x7b\\xcf\\x23\\x83\\xa3\\xca\\x9a\\xd6\\x52\\x94\\xe8\\xd9\\x70\\xba\\xa1\\xe1\\xf4\\x7a\\x4f\\x62\\x41\\x73\\x9a\\xb5\\x32\\x3b\\xae\\x62\\xd9\\xa1\\xba\\xba\\x23\\x2b\\x2a\\xef\\x4f\\xa9\\xe8\\x24\\x69\\x8d\\xca\\x93\\x6d\\x15\\x1d\\xe4\\x6f\\x85\\x2d\\xce\\x5c\\xd8\\x60\\xb5\\xd5\\xe5\\x1b\\x13\\xf3\\x3d\\xc9\\xc9\\x9e\\x02\\x13\\xd7\\x9b\\xd9\\x52\\x96\\xa5\\x0e\\xcf\\xa9\\xee\\x71\\x75\\x6e\\x69\\xb3\\x5a\\x5b\\xb7\\x76\\xba\\x7a\\xaa\\x73\\xc2\\xc3\\xb3\\xca\\x9a\\x33\\xdb\\x36\\xb4\\x24\\x27\\xb7\\x6c\\xf0\\x9d\\xcb\\xac\\xcf\\x8a\\x8a\\xca\\xaa\\xcf\\xcc\\xaa\\xcd\\xd0\\xeb\\x33\\x6a\\x71\\x49\\x4a\\x45\\x5a\\x64\\x64\\x5a\\xb9\\xdd\\x5e\\xce\\xfe\\x4a\\xe3\\x76\\xf3\\xf6\\x27\\xdc\\x6d\\xd2\\x4e\\x79\\xdc\\xe2\\xd4\\xd4\\xff\\x46\\x86\\x48\\x32\\x84\\xcb\\xed\\x62\\xc7\\x35\\x93\\x93\\x45\\xd4\\x39\\x27\\x10\\x89\\x70\\x4f\\xdf\\xfd\\xa3\\xb5\\x2a\\xc7\\x91\\xa6\\x0e\\xe2\\xf9\\x2c\\x1d\\x39\\xdd\\xb3\\xe0\\x81\\xc5\\xb9\\x00\\x33\\x2f\\xfd\\xfe\\x4c\\xf8\\x8f\\xad\\xf5\\xa5\\xd9\\xa1\\x10\\x57\\xd0\\x53\\xe4\\x24\\x53\\x25\\xa1\\xb0\\xfd\\x18\\xa4\\x74\\xec\\xec\\x75\\x15\\x14\\x2e\\x3a\\x3a\\xb3\\xf7\\xe4\\xd2\\xe2\\x86\\x1d\\x4f\\x0d\\x56\\x9d\\xfa\\xe3\\x63\\x3d\\x70\\x06\\xb6\\x69\\xad\\xae\\xc4\\xe2\\x9c\\x85\\x33\\x1d\\xb6\\xaa\\xbe\\xec\\xec\\xde\\xca\\x64\\xa6\\x26\\x94\\xde\\xfe\\x27\\x77\\x88\\x4b\\x40\\x5a\\x64\\x22\\xf5\\x8b\\x8f\\x64\\x36\\xb4\\xe9\\x2e\\x6c\\xeb\\x1d\\x46\\x58\\xee\\x50\\x0a\\x21\\x77\\x27\\xde\\x57\\x7b\\x4a\\xe3\\xb2\\x8a\\x0a\\xc2\\x83\\x7f\\xa1\\xba\\xa2\\xa2\\xba\\xa6\\xb2\\xbc\\x0a\\xaa\\x3a\\xb6\\xb6\\xdb\\x6c\\xed\\x5b\\x3b\\xf6\\xb7\\x6f\\x6b\\x4f\\x49\\x21\\xff\\x84\\x0e\\xf6\\xf7\\x0f\\x3e\\x36\\xd4\\xdf\\x4f\\x23\\x19\\xfa\\xc8\\x43\\x3f\\xe0\\xb4\\x77\\xc8\\x3a\\x25\\x91\\x75\\xf8\\x83\\x07\\x3e\\x82\\xb9\\xe1\\xb8\\x27\\x7f\\xfb\\x28\\xad\\x57\\x39\\xff\\x63\\xee\\x92\\x62\\x3f\\xd2\\x20\\x3d\\xa9\\x97\\x2e\\x62\\xba\\xbd\\x85\\x09\\x64\\x87\\xd2\\xc4\\x5d\\x4a\\x6d\\x5e\\x51\\x59\\x35\\xd2\\x9c\\x7a\\x26\\x3c\\x29\\x3f\\xb9\\xb1\\x06\\xfa\\xcf\\x3e\\x32\\x4c\\xe4\\x6e\\x23\\x95\\xbb\\x8d\\x19\\x91\\xf6\\xf8\\xf0\\xca\\xcc\\xef\\xbd\\x2d\\xd9\\x5a\\xf2\\x48\\x7b\\x4f\\x90\\xf6\\x66\\x90\\xe7\\x1b\\x42\\x99\\x2c\\xcb\\x9e\\x6e\\x83\\x23\\xc1\\x2d\\xda\\x3b\\x65\\x3f\\xed\\x00\\x13\\xe6\\xda\\xab\\x1b\\xca\\x2b\\xf2\\xeb\\xe1\\x01\\x8a\\xff\\x74\\x2f\\x6d\\xb2\\xd7\\x94\\x9d\\xca\\x98\\x39\\xe2\\xce\\x5f\\x32\\xd3\\x71\\x01\\x9a\\xcb\\x2a\\x1b\\xa0\\xab\\xb6\\x1d\\xbe\\x52\\xe0\\x48\\x2b\\xc8\\x4c\\x75\\xb4\\xe5\\xc7\\xc7\\xe5\\xb7\\xe7\\xe6\\xf5\\x46\\xa5\\x1c\\xce\\xeb\\x2c\\x88\\x8f\\xc9\\xef\\x2e\\x4e\\x2f\\x2c\\x72\\x94\\xe6\\xd0\\x36\\x9a\\x10\\xe2\\x1e\\xe7\\xb4\\x9f\\x89\\x2f\\xe2\\x79\\xf9\\x84\\x7d\\x77\\x7c\\x91\\x83\\x88\\xb0\\xe2\\x25\\x4b\\x1e\\x10\\xef\\x55\\xc0\\x86\\x07\\xc5\\xdd\\x3f\\x56\\x83\\x7d\\xe7\\x13\\x4f\\x0c\\x63\\x85\\xa8\\x03\\x63\\x2c\\x6b\\xb3\\x9b\\xb4\\xf9\\x20\\xa7\\x9d\\x90\\x5f\\x40\\xe5\\x97\\x72\\xba\\xfc\\x92\\xe3\\x07\\x19\\xed\\x7a\\x47\\x36\\xfc\\x48\\x7c\\x58\\x17\\x51\\x9f\\x56\\x3a\\xbf\\x3a\\xc9\\x5c\\xb7\\xa2\\x3e\\x6f\\x61\\x6b\\x36\\x77\\x5e\\x51\\x5f\\x68\\x76\\x24\\x86\\xb5\\xd4\\x46\\x27\\xc7\\x47\\xce\\x80\\x5d\\x70\\x6c\\xf7\\x93\\x2a\\x2d\\x41\\x21\\x14\\xb9\\xe6\\xd6\\xdb\\x0d\\x85\\xed\\x2e\\x47\\x26\\x99\\x2f\\xf1\\xa5\\x0d\\xaa\\x19\\xa1\\x2a\\xda\\xce\\x42\\xf2\\xfc\\xa3\\x9c\\x01\\xc5\\x32\\x3b\\xad\\x29\\x2e\\xcc\\x2f\\xbb\\x12\\xa6\\x54\\x41\\x9a\\x6e\\x1c\\x19\\x09\\xad\\x2c\\x4b\\x2d\\x5c\\x70\\x90\\xf8\\x97\\xa8\\x84\\x39\\x45\\xa5\\xfd\\xa5\\x09\\x36\\xcf\\xd2\\x8a\\x9a\\x95\\xcd\\xf6\\xfc\\x91\\x47\\x97\\x1f\\x71\\x34\\xa9\\xa1\\xad\\x34\\xc1\\x61\\x8e\\xa8\\xe5\\x0c\\xbb\\x7e\\x68\\x4c\\xb5\\xd5\\x0c\\xe4\\xe5\\x0f\\xd5\\xa6\\x50\\x0e\\xf1\\xdc\\x05\\x8f\\xac\\x2a\\x12\\x97\\xa7\\x25\\x18\\xdb\\x3b\\x41\\x97\\x94\\x63\\x28\\x95\\xce\\xb0\\x90\\x89\\x10\\x77\\x9e\\xd3\\x4e\\x93\\x53\\xdc\\x79\\xf1\\xa1\\x47\\x61\\x8e\\x58\\x88\\x97\\xe0\\x17\\x7c\\x55\\xf8\\xf8\\x4e\\x26\\xa7\\xa0\\x84\\xd4\\xfd\\x30\\x99\\x2f\\xf1\\x64\\xc6\\x14\\xa2\\x07\\xbe\\xa4\\xe1\\x30\\x16\\xc0\\xcf\\x62\\x10\\x23\\x13\\x29\\xc9\\x01\\xda\\xf2\\xd9\\xa5\\x18\\x51\\xfa\\x82\\x19\\x9f\\x55\\xa4\\x8a\\x15\\x09\\xf9\\xbc\\xbb\\x7c\\xe6\\x0d\\x28\\x9f\\x62\\x80\\xd9\\x62\\x4e\\x4e\\x4f\\x61\\xf3\\x82\\x51\\x95\\x4c\\x48\\x4e\\x1a\\x6e\\x77\\xa7\\xe0\\x54\\xb0\\x05\\x4c\\xc5\\xa6\\x45\\x7e\\xe3\\xe2\\x36\\x81\\x3b\\xb7\\xb4\\x21\\xbd\\x79\\x69\\x49\\xc9\\xb2\\x96\\x74\\x8f\\x3b\\xd7\\x6d\\xab\\x9f\\x5f\\x54\\x38\\x5c\\x9f\\x72\\xaf\\x2e\\xc9\\x61\\x28\\x6e\\x6a\\x2a\\x31\\x64\\x5b\\xb4\\xda\\x32\\x97\\xab\\xac\\xdc\\xe5\\x22\\x91\\x86\\x85\\xdd\\xd1\\xd1\\x83\\x15\\xf9\\x1d\\xc4\\xf5\\x41\\xfe\\xa9\\x18\\x8c\\x8e\\xee\\x2e\\x74\\xb5\\xe5\\xc5\\x91\\xf3\\x97\\xb8\\x24\\xda\\x16\\x1b\\x9a\\xef\\x74\\xe5\\x87\\xc6\\xda\\x60\\x65\\x86\\xcb\\x99\\x99\\x91\\x9b\\xcb\\x64\\x21\\x99\\x87\\x1f\\x93\\x79\\x98\\x40\\x39\\xa8\\x28\\x16\\x21\\x36\\x2a\\x94\\xca\\xc2\\x6c\\xd7\\x14\\x59\\xc8\\x38\\x47\\xa8\\x2c\\xa4\\x84\\x23\\x96\\x71\\x51\\xf8\\xe1\\xbe\\xbd\\x41\\xf1\\x9d\\xce\\xd2\\xc1\\xb2\\x44\\x92\\x5a\\xa2\\xb2\\x7a\\x59\\x43\\xf2\\xb7\\x7f\\x12\\x72\\x31\\xb3\\x46\\xdd\\x54\\x94\\x90\\x4d\\x32\\xc8\\x24\\xe6\\xac\\x1f\\x5c\\x10\\x67\\xb6\\x56\\x0d\\x16\\xe6\\x13\\x6c\\x63\\x6a\\xfb\\x7a\\x8f\\xe3\\x1b\\x3f\\x86\\x6d\\x80\\x52\\xe2\\x8a\\x5a\\xdb\\x22\\x6d\\xb9\\xf1\\x06\\xa7\\x45\\x27\\xcd\\x03\\x27\\xf1\\x4f\\x3f\\xc3\\x25\\x4e\\xe0\\xff\\xd8\\x24\\x78\\xc6\\xb7\\x0b\\x6f\\xf1\\xc7\\xd3\\x71\\xf0\\x0d\\xde\\xcd\\x3d\\xae\\x58\\x45\\xca\\xe8\\x91\\x89\\xec\\x51\\x09\\xd1\\xe1\\x2a\\x8c\\xe8\\x1e\\x45\\xc4\\x8e\\xd2\\x5f\\x5b\\xb9\\xbb\\x73\\x25\\x15\\x91\\x75\\x2c\\xfe\\xd9\\xdb\\x3f\\xd8\\xbc\\x2d\\x36\\xa3\\xc4\\x94\\x58\\x42\\x81\\x91\\x25\\x89\\xa6\\x92\\x8c\\xd8\\x0e\\xc8\\x36\\x9b\\x32\\x21\\xcb\\x64\\xce\\x56\\xac\\xba\\xf1\\x91\\xb9\\x24\\x35\\x2a\\x2a\\xb5\\xc4\\x6c\\x2e\\xb2\\x47\\x46\\xda\\x8b\\xcc\\xa6\\xec\\x6c\\x93\\x25\\x3b\\x1b\\x61\\xf8\\x27\\xbf\\x93\\x7b\\x9e\\x60\\xa7\\x04\\x49\\x6f\\x09\\xe0\\x01\\xd3\\x35\\xeb\\xd0\\x72\\x26\\xab\\x8b\\xfa\\x50\\x95\\xc4\\xc3\\x72\\x75\\xe0\\xf1\\x1b\\x2d\\x37\\x03\\x1c\\x69\\xb5\\x0e\\x6e\\x13\\x7f\\x01\\x2c\\x5a\\xf1\\xc3\\xfd\\x85\\xb3\\x0d\\xdc\\xcc\\xe1\\xbd\\x08\\xc3\\x1a\\xfe\\xbb\\xdc\\xeb\\x8a\\xaf\\x23\\x0d\\xca\\x20\\xf7\\xc8\\x30\\x4e\\xd7\\x67\\x19\\x0e\\xc9\\xff\\x01\\x83\\x2d\\xf8\\x1b\\xc4\\x04\\xfc\\xeb\\xb2\\x60\\x3f\\x09\\x95\\x8d\\x96\\x5c\\xb3\\xfa\\x60\\x64\\x6a\\xb1\\x39\\xd9\\x95\\x91\\x61\\x34\\xa5\\x43\\x7b\\x94\\xbd\\x38\\x89\\xf8\\xc9\\x72\\x12\\x12\\x33\\x85\\xa7\\x33\\x9a\\xf3\\xe2\\xe3\\xf3\\x9a\\x33\\xb2\\xaa\\x34\\x09\\xf6\\x48\\x08\\x34\\x97\\x65\\xc5\\xe9\\xe3\\xf4\\x0e\\x8b\\xd6\\x5c\\x9e\\x6d\\x60\\xaf\\x58\\x9f\\x13\\x91\\x74\\x16\\xbf\\x82\\xce\\x7d\\x2a\\x26\\x80\\x46\\xf7\\x52\\x5b\\xc9\\x2b\\x5e\\x2f\\x29\\x09\\x6c\\x9c\\x16\\x89\\xf3\\x38\\x35\\x2a\\x47\\x51\\x64\\x9c\\x02\\x18\\x4e\\x53\\xd6\\x0d\\x58\\x74\\x84\\x3f\\xae\\xcf\\x8a\\x6b\\x72\\x1a\\xb3\\x22\\xcd\\xc5\\x33\\x33\\x6a\\xe7\\xc4\\x27\\x68\\x8a\\x2d\\x25\\x0e\\x5d\\x52\\x7a\\x64\\x79\\x4c\\x59\\x75\\x9d\\xc9\\xd1\\xe8\\x8c\\x89\\x0b\\xdd\\xa8\\xd2\\x64\\xa6\\xc4\\x64\\xa7\\xa5\\x68\\xe8\\x7d\\x07\\x44\\x0f\\x17\\x8e\\x4e\\x23\\x35\\x3d\\xcd\\xab\\x00\\xb0\\x12\\x10\\x60\\x6a\\x76\\x01\\xbc\\x8a\\xd6\\x6a\\x16\\x42\\xc8\\x88\\xfc\\x89\\x7f\\xad\\x26\\x9e\\x54\\x2e\\x49\\x7b\\x67\\xb2\\x4d\\x2e\\xdc\\xef\\x48\\x8f\\x31\\x50\\x47\\xfa\\xe9\\xbf\\x50\\xe7\\xf9\\x03\\xd4\\xa4\\x3c\\xd0\\xfb\\x17\\xd2\\xca\\xe5\\x62\\x3d\\xcb\\x41\\x51\\x8c\\xda\\xd0\\x42\\x32\\x7f\\xe6\\x76\\xd5\\xb8\\xf3\\x0d\\x74\\xfe\\x98\\xc8\\x32\\x95\\x5a\\x41\\x20\\xc5\\x4c\\x77\\x91\\xa7\\x92\\xbc\\x10\\xfc\\x4b\\x77\\x82\\x8b\\x47\\x6f\\x84\\xf1\\xc2\\xb2\\x9a\\x39\\x1d\\x4d\\xcc\\x0f\\x9c\\x8a\\x33\\x94\\xae\\x7c\\x60\\x4e\\x5b\\x75\\x44\\xbc\\xc6\\x94\\x1e\\xf3\\xd4\\xc0\\xd9\\xc5\\xf9\\x9e\\x83\\xef\\x6c\\x5a\\xfe\\xd4\\xda\\xd2\\xb8\\xac\\x32\\x73\\x8c\\x21\\x22\\x21\\x45\\xdb\\x3a\\xc7\\x4d\\x0a\\xb5\\xd4\\xc2\\x72\\xdf\\x41\\x5b\\x52\\x56\\xa5\\xb9\\x7a\\x61\\x65\\xcb\\xce\\xbe\\xec\\x48\\x57\\x67\\x89\\xf8\\x94\\xb9\\xac\\xc7\\xe5\\xec\\x71\\x9b\\xe5\\xbf\\xdc\\x63\\x29\\x03\\x2e\\x5d\\xfd\\xce\\xb9\\x79\\x5a\\xb5\\xc3\\xa2\\x8f\\x8f\\x50\\x99\\x6a\\x97\\x37\\x14\\x6d\\x1c\\x2c\\x49\\xf5\\xcc\\xcf\\xcf\\x6c\\x29\\x77\\x84\\xeb\\x0a\\x93\\x49\\x9f\\x5b\\xc3\\xb2\\xce\\xf4\\xe9\\x9a\\x76\\x0f\\x38\\x23\\x6e\\xfd\\x4d\\xa1\\xeb\\x2d\\x31\\x15\\xd9\\xa3\\x12\\x5d\\x95\\x44\\x5d\\x34\\x85\\xe3\\xcb\\xc9\\xf5\\xf9\\x26\\x53\\x7e\\x7d\\xb2\\xce\\xee\\xc9\\x33\\x1a\\xf3\\x3c\\x76\\xe9\\x6c\\xf8\\x8c\\xf8\\x63\\xee\\x07\\x5c\\x19\\xd2\\x52\\xff\\x07\\xa2\\xfa\\xf5\\x74\\xce\\xb9\\x67\\xbe\\x3d\\x95\\x6c\\xee\\xdb\\x5c\\xd9\\x14\\x9e\\x39\\xaa\\x6f\\x7d\\x85\\x2e\\x5c\\xe1\\x0d\\xca\\xb3\\x4a\\xe6\\x7d\\x88\\x8a\\xf9\\x78\\x34\\xcc\\x30\\x00\\x92\\x93\\x98\\x8d\\x21\\xf1\\x42\\x7a\\xc5\\xa3\\xd0\\x9d\\x9b\\x97\\x9b\\x97\\x47\\xfe\\x61\\x09\\xd2\\xcf\\xc2\\x4b\\xe9\\xa5\\xa5\\xe9\\x69\\x45\\x45\\x92\\x8c\\xb8\\x74\\xfb\\x0f\\xdc\\x2d\\x45\\x24\\xab\\x57\\x08\\x93\\x11\\x72\\x9e\\x8c\\x09\\x98\\x25\\xee\\xd1\\x66\\x34\\xe6\\x19\\x72\\xb3\\x53\\xc3\\x23\\xaa\\xf7\\x56\\xcf\\xde\\xd6\\x60\\x54\\x44\\xde\\x9a\\x5b\\x3b\\xdb\\xa5\\x0d\\x0c\\x55\\x2b\\xef\\x4b\\x30\\x64\\x0c\\x9d\\x5f\\xca\\x1f\\xa7\\x7e\\x7e\\xe2\\x4f\\xe1\\x14\\x24\\x9e\\x5e\\x81\\x34\\x88\\xbe\\x6f\\xa7\\x36\\x25\\xf6\\x3e\\xea\\x17\\xb4\\xee\\x5f\\x25\\xef\\x3d\\xfc\\xa1\\xf1\\xdc\\xc7\\x80\\x78\\x8e\\x0a\\x7e\\x99\\xc2\\x51\\xda\\x12\\x10\\x8a\\x89\\x52\\x87\\x4a\\x01\\xf1\\x0a\\x02\\xa3\\xb9\\x3b\\x69\\x23\\xec\\xbe\\x01\\xef\\xb5\\x3f\\xb0\\xb1\\xbe\\x7e\\xc3\\x85\\x76\\xf1\\x4f\\x10\\x9e\\x35\\xab\\x2a\\x25\\xa5\\x6a\\x56\\x16\\x79\\xfd\\x25\\x32\\x2f\\x0f\\x41\\x7a\\xdf\\xbd\\xb3\\xfa\\xf7\\x75\\xa5\\xc0\\x19\\xd0\\x67\\x37\\xe6\\xba\\x5a\\x9c\\xb1\\x20\\x8d\\xc7\\x12\\xb1\\x81\\xdf\\xc4\\xd7\\x21\\x3b\\x69\\xb7\\x96\\x8d\\x07\\xd5\\x50\\x35\\xe0\\x00\\x8d\\x84\\xe2\\x50\\xfa\\x51\\x1c\\x1c\\x98\\x80\\xf3\\x83\\x9e\\x5c\\xae\\x6f\\xd5\\x2c\\xf2\\x64\\x87\\xae\\x85\\xc0\\x17\\xc5\\x13\\x3f\\x09\\x89\\x33\\x26\\x47\\x86\\x85\\xa8\\x71\\x90\\x39\\xb8\\xb0\\xaf\\x26\\x2f\\xf2\\x9c\\xf8\\x9d\\xb7\\xe0\\xd8\\xf3\\x21\\x89\\xf6\\xdc\\xc4\\x60\\x5b\\x08\\x84\\x17\\xf3\\x75\\xae\\x96\\x39\\xc9\\xe2\\x18\\x06\\x5f\\x81\\xa8\\x4f\\xc8\\x4d\\x8e\\xc4\\xdc\\x05\\xa5\\xca\\x54\\x35\\xbf\\x1c\\xea\\x09\\xc6\\x28\\x00\\xf6\\x27\\x96\\xe7\\xc4\\xf3\\x70\\x42\\x08\\xa4\\xfb\\x07\\xe3\\xcb\\x1b\\x20\\x38\\xb2\\x44\\x94\\x46\\xc6\\xd6\\x6e\\xe2\\x98\\x5c\\xa4\\xcd\\xa7\\xd3\\x45\\x71\\x97\\x98\\xde\\x24\\x87\\xff\\xc0\\x6e\\x82\\x59\\x5e\\x38\\x4b\\xe8\\x01\\xdc\\x30\\x4a\\x62\\x79\\x9d\\x91\\x71\\x96\\x97\\x49\\x2c\\x2f\\x4e\\xaa\\x1a\\x28\\x12\\xc5\\xf7\\x9f\\x38\\x65\\xaa\\x5b\\xd5\\xf4\\x13\\xbc\\xc1\\xb7\\x4f\\xb8\\xea\\x5c\\x74\\x6e\\x78\\xe5\\xe5\\xac\\x88\\x8a\\xee\\x25\\xc5\\xf7\\x96\\x2c\\xb7\\x44\\x92\\x38\\xde\\x12\\xcd\\x9e\\xa2\\xc1\\x2a\\xcb\\x69\\xd8\\xb9\\x9d\\xc4\\xfa\\x26\\xf9\\x31\\x4e\\x08\\x31\\x3e\\x2a\\x66\\x13\\x0e\\x64\\x96\\x4c\\x3f\\x39\\x0a\\x33\\xb4\\x53\\x4a\\x2a\\x99\\xca\\x4e\\x0e\\xa4\\x92\\xa9\\x50\\x98\\xad\\x3a\\xf8\\x8a\\xd7\\x7b\\x3f\\xbc\\xf0\\x2d\\x51\\x8d\\x23\\x7f\\xce\\x08\\xf3\\xae\\x4d\\xe2\\xcb\\xc3\\x68\\x03\\xc1\\xee\\xf5\\x0b\\xaf\\x13\\xd9\\x97\\xc4\\xf6\\x4b\\xb5\\x7f\\x2e\\x8f\\x4f\\x42\\x3f\\xac\\xe9\\xce\\xa9\\xbd\\x01\\x27\\x26\\xe4\\xd6\\xdb\\x0c\\xee\\xe2\\x9c\\xf0\\x28\\x7d\\x79\\x53\\xa7\\xbd\\x76\\xcb\\x2c\\xa7\\x78\\x06\\xda\\x72\\x5d\\xae\\xbc\\x3c\\xb2\\x81\\x90\\x33\\x59\\x52\\xe9\\xcc\\xcc\\x08\\x65\\x50\\x90\\xb0\\x27\\x44\\x1b\\xaa\\xb2\\xf5\\x1c\\x9a\\x87\\x0b\\xe0\\xe5\\xb4\\x92\\x92\\xb4\\xd4\\xe2\\x62\\x16\\x7b\\x47\\x9e\\xbd\\x50\\x81\\x50\\x34\\x99\\x03\\xe1\\x18\\xe8\\x73\\x73\\xb9\\xa9\\x0f\\xd6\\x18\\x2f\\xc1\\xc2\\x9b\\x06\\xff\\xe3\\x9c\\xea\\x89\\xc7\\x45\\x8b\\xf7\\x0b\\xb7\\xe1\\x56\\xff\\xb4\\xc7\\xf0\\x48\\xea\\x3b\\xe2\\xfa\\xe4\\xfe\\xea\\xc7\\x7a\\x05\\x50\\x9f\\x67\\xae\\x91\\xd9\\x3c\\xa8\\x1f\\xe2\\x7b\\x40\\x7d\\x10\\x7f\\x0c\\x05\\xeb\\xd8\\x6f\\x2f\\xf1\\xe6\\x95\\x8f\\x5f\\xff\\xe4\\x2f\\x97\\x28\\xf6\\xe8\\xf6\\x19\\x7e\\x88\\xff\\x3d\\x2a\\x43\\x6d\\xa4\\x3f\\x6a\\xcb\\x5d\\x76\\x3a\\xfe\\x7e\\x22\\x33\\x99\\x53\\x41\\x3a\\x3c\\xe9\\x89\\x15\\x73\\x72\\x55\\xad\\x56\\x8b\\xcc\\xe7\\x46\\x27\\x48\\x12\\x3b\\x67\\xc9\\xaa\\x05\\xf7\\xaa\\x2a\\x88\\x33\\x2d\\x28\\x2f\\x9b\\x57\\x69\\xca\\x1b\\xda\\xd7\\x32\\x28\\xd8\\xaa\\xe6\\xe4\\xcf\\x3e\\x30\\x2b\\x0d\\x03\\xce\\x9f\\x7f\\xa8\\x33\\xb6\\x20\\x37\\x33\\x3c\\x2b\\xaa\\xb4\\xaa\\x3a\\xe1\\xe0\\x97\\x77\\x95\\x71\\xc0\\x55\\xdc\\xf3\\xde\\xae\\xce\\x53\\x23\\x65\\x61\\x6a\\xf1\\xbc\\x31\\x37\\x35\\x4e\\x59\\x4b\\xce\\xc1\\x66\\xb5\\xc9\\x05\\x8a\\xd0\\xf4\\x28\\x4b\\x6e\\x5a\\xd3\\xe2\\xe2\\x86\\x75\\x33\\x53\\x0b\\x67\\x95\\x1a\\x6b\\xf6\\xbc\\xbc\\xae\\x68\\xe3\\xcd\\xad\\xee\\x80\\x30\\x5d\\xf0\\x6e\\x4d\\xac\\x26\\x60\\xee\\xd5\\xbf\\x1f\\x4d\\x3b\\xf2\\xd7\\x6b\\x73\\x1d\\x8b\\x2e\\x2d\\x17\\x0f\\xa5\\x0f\\x5b\\x42\\x76\\x84\\x1b\\x92\\xc2\\xff\\x11\\x6e\\xab\\xcc\\x32\\x97\\xa6\\x47\\x23\\x84\\xfc\\x5c\\x2e\\xe7\\x18\\x86\\xda\\x4d\\xda\\x5b\\x98\\x19\\x25\\x30\\xbd\\x99\\x52\\x56\\x59\\xa7\\x1f\\x8d\\xb5\\xa6\\xc9\\x67\\x61\\xa5\\xfc\\x42\\x47\\x0a\\xa9\\xf9\\x73\\x6f\\x75\\x7f\\x7f\\xef\\x9c\\x47\\x36\\x56\\xeb\\xf3\\x66\\xd7\\x38\\x1b\\xb2\\xf4\\x55\\xa3\\xe7\\x3a\\x06\\xce\\x2f\\x2b\\xf4\\x1a\\x8b\\xba\\x5c\\x99\\x5d\\xe5\\xd6\\x84\\xd2\\xbe\\x22\\xae\\x6c\\x51\\xbd\\x8d\\x9c\\xa6\\xca\\x0d\\xa5\\x45\\x39\\x1a\\x2e\\xeb\\xb4\\xef\\x9f\\x4d\\x9d\\x90\\xb7\\xe4\\x81\\xf9\\x8e\\x85\\xb3\\x3d\\xfa\\x28\\x4f\\x67\\x5f\\xca\\xfc\\xb3\\x0b\\x73\\x4a\\x97\\x1d\\x9f\\x99\\x3f\\xab\\xdc\\x94\\xe0\\xee\\x2f\\xcd\\x9b\\x55\\x99\\x74\\xda\\x58\\x31\\xbf\\xb2\\x72\\xae\\xdb\\x40\\xa0\\x56\\xd1\\xa1\\xf0\\x9e\\x3f\\x47\\xf4\\x36\\x52\\xf7\\x2c\\x8a\\x49\\xe3\\xa5\\x73\\x5e\\x4e\\x38\\x3b\\xea\\xc2\\x94\\x1d\\x5c\\xe6\\x2c\\x01\\xff\\xb9\\x17\\x6a\\x6e\\x7c\\xff\\xe7\\x9e\\x6d\\x2b\\x06\\x53\\xc5\\xef\\x0e\\x90\\x84\\xad\\x15\\xeb\\x1f\\x1d\\x2a\\xde\\x58\\xe2\\x32\\xf5\\x17\\x97\\xce\\xad\\x32\\x1f\\x3b\\xba\\x02\\x66\\x68\\x33\\x8b\\x6a\\xec\\xad\\xc3\\x05\\x5a\\xee\\xb5\\xdb\\xc0\\x9b\\x4a\\x3a\\xb2\\xc5\\x91\\x80\\xb2\\x15\\xe7\\x06\\x87\\x2f\\x2d\\xcb\\xd7\\x47\\x9f\\x89\\x88\\xb7\\xd5\\xce\\x2f\\x3a\\x77\\xf8\\x34\\x8c\\x6a\\x08\\x8b\\x70\\xe1\\xbc\\xdd\\xf5\\xd2\\xbc\\xfb\\x3f\\x52\\x2f\\xea\\x23\\xcc\\x40\\x73\\xdd\\xc1\\x89\\xc6\\x90\\x60\\x1e\\x70\\x06\\x70\\x08\\xfb\\xb9\\x67\\x63\\x11\\x60\\x84\\x59\\x74\\x29\\xf9\\xc3\\x33\\xa1\\x2b\\x65\\x17\\x2d\\xa6\\xec\\xe6\\x09\\xd3\\xbe\\x26\\x5f\\xd0\\xa3\\x05\\x0b\\x9a\\xac\\x12\\x28\\x49\\x4b\\x3a\\xa5\\xfa\\x4f\\xa4\\x0a\\x79\\xd2\\xe4\\xe6\\x69\\xe4\\xe8\\x59\\xd2\\x11\\xae\\xa9\\x1d\\x81\\x83\\x12\\xda\\x5d\\xd9\\x4d\\xae\\xb8\\x7b\\xf6\\xb5\\xff\\x31\\xae\\xbd\\xb4\\x74\\x66\\x96\\xf6\\xc6\\x9b\\x5f\\x2d\\x1b\\x19\\xea\\xb2\\x8a\\x7f\\x6a\\xdd\\xd9\\x97\\x55\\xb8\\xe8\\xbe\\xae\\xfc\\x15\\xb9\\xd7\\x23\\xe2\\x8d\\x85\\xad\\x59\\x73\\x3b\\xee\\x05\\xab\\xde\\x4a\\xb6\\xdf\\x3c\\x5f\\x28\\xfe\\xeb\\x87\\x1f\\xc5\\x65\\x55\\x58\\xc4\\x2f\\x29\\x33\\x9a\\x97\\x55\\xf7\\x1e\\x1c\\xc8\\xd6\\x47\\x93\\x58\\xaa\\x42\\xfe\\x31\\xc2\\xf9\\xfe\\x0c\\x56\\xa0\\x0b\\x6c\\xbf\\xf1\\xff\\x90\\xf7\\x1c\\x7b\\xff\\x3d\\x9c\\xc5\\x7d\\x84\\xbf\\x4c\\xde\\x87\\xd2\\x8f\\x6f\\x7f\\x8b\\xe2\\x09\\xc8\\x9a\\x54\\x4b\\x79\\x78\\x59\\x0e\\x75\\x24\\x00\\x1a\\xa7\\x0d\\x2b\\x92\\x18\\x76\\x54\\x52\\x6f\\x20\\x44\\xb2\\x20\\xc6\\xeb\\x48\\x16\\x4c\\x72\\x45\\x98\\x51\\xad\\x0e\\x20\\x06\\x5c\\x09\\x22\\x25\\x3b\\xa0\\x35\\xa6\\x71\\x0f\\x34\\x79\\xe5\\xfd\\xe5\\x2f\\xa1\\xf5\\xcc\\x9f\\x2f\\x77\\x01\\x74\\x5d\\xfe\\xf3\\x99\\x9a\\x1f\\x9c\\x5c\\xfb\\xd4\\xca\\x5c\\x80\\xbc\\x91\\xa7\\xd6\\x9e\\xfc\\x01\\x3e\\x77\\x1a\\x6f\\xc3\\x43\\x5f\\xfc\\xf7\\xa9\\x25\\xa7\\xfe\\xfd\\xc5\\x21\\xc0\\xe7\\x7c\\x3e\\x68\\xfd\\xff\\xaa\\xfb\\x0e\\x80\\xa8\\x8e\\xed\\xef\\x99\\xdb\\x76\\xc1\\x17\\x29\\x76\\x25\\x0a\\xd2\\xec\\x25\\xc8\\x82\\x0d\\x90\\x80\\x08\\x58\\xb1\\x20\\x76\\x34\\x85\\x34\\x8a\\x68\\x7a\\x7b\\x96\\x34\\x4d\\x2f\\x60\\xa4\\x05\\xcd\\x8b\\x3d\\xc4\\x34\\x25\\xbd\\xf7\\xde\\x7b\\x2c\\x69\\xe6\\xa5\\xf7\\xc8\\xde\\xfd\\xe6\\x9e\\x33\\x7b\\xb8\\xc3\\x92\\x67\\xbe\\xfe\\xff\\xa7\\xba\\x73\\x7e\\xf3\\xbb\\x67\\xda\\x99\\x7e\\x66\\xe3\\xc3\\x15\\x67\\x09\\x1f\\xaf\\x33\\x35\\xbb\\xcf\\x7f\\x13\\x1d\\xf1\\x2d\\xb4\\x02\\x78\\xfb\\x7a\\xf9\\x7d\\xf2\\xe9\\xeb\\xc2\\x96\\x38\\x51\\xb9\\x62\\x5d\\x2f\\x60\\x7b\\x3c\\x19\\xf4\\x5c\\x6f\\x5e\\xa1\\xc1\\x61\\x8e\\xdf\\x4f\\x81\\x90\\x14\\x1f\\xc9\\x46\\x88\\xf0\\xa0\\xdf\\xfe\\x4e\\xb6\\xf7\\x58\\xef\\x64\\xd7\\xd8\\xdf\\xaa\\xef\\x64\\xef\\xdd\\xbb\\x9f\\x47\\x1b\\xaf\\xdb\\xcf\\x74\\xf2\\x4e\\xf6\\xeb\\x35\\x35\\x70\\x0e\\x57\\xe4\\x9a\\xb1\\x4e\\xe4\\x71\\x84\\x33\\x0a\\xf1\\xf0\\xe0\\x66\\x8b\\x05\\x17\\x10\\x45\\xee\\x4e\\x90\\x77\\x1a\\xc9\\xeb\\xa1\\x37\\x06\\x7a\\x36\\xcc\\xd6\\x54\\xd8\\x3d\\xd5\\x77\\x7f\\x7d\\xcf\\xc7\\x1f\\xdb\\x19\\x46\\xba\\x9d\\xf1\\xb5\\x9e\\xd6\\xf6\\x9c\\x9e\\x56\\xc3\\x73\\x1a\\x1a\\xec\\x07\\xe5\\xfd\\x74\\xd1\\x0e\\x07\\x9b\\x59\\x2c\\xd9\\x79\\x43\\xbe\\x1b\\x37\\xf4\\xee\\xdc\\x34\\xb4\\x82\\x2e\\x3c\\x9c\\x85\\xaf\\xf4\\x70\\xcd\\xe2\\x70\\x1a\\xc0\\x0b\\x3b\\xbe\\x61\\x9c\\xb1\\x4c\\xc7\\x67\\x80\\x6c\\x65\\xf2\\x54\\x46\\x52\\x62\\x94\\xd8\\xbb\\x87\\xbb\\xf5\\x70\\x2f\\xc4\\xe9\\x3b\\x7a\\x38\\x6b\\x23\\x1d\\xfb\\xa9\\x54\\x27\\x3b\\x9c\\xed\\x6d\\xed\\x24\\x5e\\x67\\x9f\\x74\\xe4\\x48\\x6c\\x7a\\x3e\\xf6\\x58\\x7d\\x45\\x8f\\x55\\x0c\\x3d\\xd6\\x7b\\xef\\xd9\\x87\\x79\\x8c\\x99\\x65\\xff\\x79\\x6d\\x6b\\xcd\\xd1\\xcc\\xa2\\xd1\\xdd\\x3d\\xe1\\x5d\\x8c\\xb5\\xc1\\x7e\\xeb\\x68\\x4d\\xeb\\xb5\\xdc\\x82\\xf3\\x9a\\xf0\\xb6\\xdc\\x75\\x9e\\x78\\xcd\\x79\\xb9\\x94\\x71\\x0f\\xcb\\x0e\\x6c\\xe2\\x0b\\xc4\\x19\\x71\\x8d\\xef\\xe3\\x0b\\xe4\\x99\\x72\\xc4\\xc4\\x12\\xa6\\x9a\\xad\\xe7\\xc5\\x12\\x53\\xac\\x60\\xa6\\x10\\xa6\\x8e\\x5d\\xce\\x17\\x4a\\xcc\\x42\\x05\\x53\\x44\\x98\\x66\\x76\\x23\\x2f\\x95\\x98\\xd2\\xbf\\xf8\\x56\\x19\\x8b\\x40\\x1e\\xad\\x23\\xcf\\x06\\xc2\\x34\\xb1\\xae\\x7c\\xab\\xc4\\x6c\\x75\\x63\\xbc\\xbd\\x83\\x18\\xfe\\x42\\xa0\\x8d\\xff\\xcb\\xc1\\xe8\\xfb\\xf8\\xbf\\x24\\xe6\\x0c\\x7b\\x9a\\xb1\\xd8\\x7c\\x52\\x60\\x12\\xe1\\xc2\\xdd\\x39\\x3e\\xc8\\x13\\xd8\\x9b\\x18\\x03\\x79\\x92\\x2c\\xf3\\xe4\\x5a\\xc8\\x13\\x1e\\xcc\\x13\\xc2\\xc4\\x12\\x46\\x9c\\x0d\\xe5\\xc5\\x12\\x53\\xac\\x60\\xa6\\x10\\xa6\\x8e\\x5d\\x04\\x69\\xe1\\x94\\x27\\xa1\\x3c\\x65\\xcc\\x44\\x8c\\x46\\x18\\xf0\\xf1\\xdc\\x1f\\xf4\\x19\\x2a\\xf5\\x59\\xa8\\xea\\x43\\x98\\x58\\xc2\\x54\\xb3\\x3c\\x55\\x1f\\xc2\\x4c\\x21\\x4c\\x1d\\xcb\\x57\\xf5\\xe9\\x84\\xa7\\x2c\\xf0\\x7a\\x88\\x3e\\xd7\\x0a\\x4c\\x06\\x94\\xe3\\x28\\x59\\x8e\\x67\\x42\\x39\\x72\\x57\\x39\\x9e\\x2e\\xda\\x44\\xa9\\x27\\x5d\\x60\\x46\\x4b\\x9d\\xeb\\x79\\x85\\x2c\\xeb\\x0a\\x05\\x93\\x4a\\x98\\x6a\\x76\\x25\\x3f\\x53\\x62\\xce\\x54\\x30\\x8b\\x09\\x53\\xc7\\x36\\xf0\\x4a\\x89\\xa9\\x54\\x30\\xa7\\x12\\xa6\\x99\\xd5\\xf0\\xb3\\x25\\xe6\\xec\\xd0\\x6f\\xc9\\x7c\\xee\\x86\\x3c\\x5a\\x3b\\xcf\\x06\\x81\\xc9\\xf6\\xf4\\x12\\x98\\x34\\xa9\\xf3\\xfd\\x7c\\xba\\x4c\\xd7\\x74\\x05\\xd3\\x9d\\x30\\xd5\\x6c\\x0b\\x2f\\x94\\x98\\x42\\x05\\x33\\x81\\x30\\x75\\xec\\x76\\x3e\\x43\\x62\\x66\\x84\\xf2\\x48\\x7d\\x86\\x23\\x46\\x6b\\xc7\\x4c\\x74\\x7c\\xe1\\x7b\\x06\\x08\\xcc\\x78\\xf9\\xad\\x2a\\x3e\\x4f\\xf2\\xcc\\x93\\x98\\x3a\\xc1\\xe3\\x33\\x0f\\x08\\xcc\\x89\\x02\\x63\\xb1\\xec\\x9b\\x7b\\x33\\xaf\\x48\\x79\\x4b\\x6f\\x01\\x20\\xf9\\xc7\\x28\\x07\\x8e\\x7f\\xb2\\x1e\\x88\\xe8\\xe1\\x50\\x10\\x87\\x65\\x11\\xa6\\x8e\\xad\\x65\\x7d\\x10\\xd3\\x47\\xc5\\x44\\x12\\xa6\\x59\\xd4\\x82\\x01\\x88\\x19\\x40\\x18\\xe5\\x5b\\x16\\x2b\\xeb\\x02\\x2c\\x1a\\xb0\\x10\\x47\\x3e\\xc9\\x9b\\xc2\\x97\\xa3\\x7c\\xb9\\x5b\\xfe\\x76\\x50\\xce\\x5f\\xf8\\xfd\\x24\\x47\\xae\\xb7\\x9c\\x84\\xf2\\x6b\\x45\\x7b\\x4d\\x31\\xa6\\x0b\\x79\\x2e\\xb6\\xd7\\x42\\x6c\\xaf\\x97\\x8b\\x78\\xb9\\xe6\\x41\\x11\\x9e\\x87\\x79\\x70\\x9d\\x4b\\x7b\\x92\\x7f\\x42\\xf2\\xea\\x0b\\x7b\\xa2\\xbc\\xa7\\x4b\\x6e\\x79\\x48\\x5e\\x77\\x71\\x5f\\x94\\xf7\\xed\\x3c\\x7e\\x99\\x05\\x72\\x2d\\x28\\x7f\\x01\\xee\\xcc\\xbf\\x28\\xe4\\x57\\xe1\\xf7\\x1f\\xd6\\xd1\\xa3\\x9c\\xee\\x96\\x3f\\x87\\x72\\xe6\\x94\\xc1\\x0e\\xc6\\x28\\xfc\\x07\\x08\\xc7\\x7c\\xdf\\xc5\\x0c\\x8c\\x69\\x40\\x9e\\xaa\\x71\\xf1\\xdb\\x63\\x00\\xa1\\x01\\x42\\xb6\\xd7\\xc1\\x50\\x2e\\x33\\x41\\xde\\x7c\\xc1\\x00\\x64\\x18\\x80\\xf2\\xf3\\x85\\xee\\x45\\x50\\x3f\\x66\\xa1\\x6e\\x57\\xa9\\xf5\\x03\\xe5\\x1f\\x93\\xbc\\xfa\\x6c\\xaa\\x1d\\xed\\x72\\xcb\\x22\\x79\\xdd\\xb9\\x6a\\xde\\xa2\\x3c\\x12\\xe4\\x58\\x2f\\xd6\\xa9\\xf5\\xa2\\x93\\x6f\\x94\\x31\\xb5\\x5e\\xdc\\x23\\xe4\\x03\\xcc\\x97\\x84\\xbc\\x18\\x75\\xbc\\x92\\x72\\xc1\\x25\\x7f\\x9e\\xe4\\xd5\\xab\\x39\\xca\\xb9\\x5b\\xfe\\x23\\xc9\\xeb\\xce\\x31\\x51\\x6e\\x76\\x1e\\xbf\\x8c\\x81\\x5c\\x0b\\xca\\x73\\xec\\x42\\x63\\x3d\\xc8\\x17\\x06\\xed\\x10\\x73\\x7d\\x81\\x31\\x15\\x83\\x1c\\xdd\\x54\\x0e\\xe8\\x6f\\xac\\x3f\\xa9\\x4f\\x2a\\x17\\xf6\\xa5\\x40\\xda\\xa0\\x02\\xa5\\xad\\xee\\xa3\\xfa\\x5f\\x1e\\xe1\\xcc\\xb7\\x53\\x70\\xa5\\x5f\\xd4\\xff\\x79\\xe2\\x0e\\x3a\\xe8\\xd8\\xb6\\x6d\\xdb\\x9d\\x8e\\x6d\\xdb\\xb6\\x3b\\xc9\\x89\\x6d\\xdb\\xb6\\x4e\\xec\\x8e\\x6d\\xdb\\x4e\\xa6\\x7e\\xef\\xfb\\x9f\\x8b\\xa9\\xb9\\x9d\\x8b\\x79\\x6e\\x9e\\xda\\xb5\\x6b\\xad\\xbd\\x6a\\xe1\\xfb\\xd9\\x7b\\x28\\xeb\\xae\\x83\\x8b\\x0f\\x0a\\x34\\xd7\\x47\\xe2\\x51\\x7d\\x50\\xe6\\xea\\xac\\xa1\\xb7\\x67\\x71\\xc2\\x82\\xc4\\xdd\\x47\\x64\\x61\\x93\\xc2\\x3f\\xd8\\x86\\xe8\\x53\\x3d\\xcc\\xcd\\x08\\x0e\\x82\\x95\\xd2\\x9f\\x8e\\xf1\\x77\\x88\\x21\\x3c\\xce\\x72\\xa0\\x37\\xc0\\x60\\x6d\\x33\\xa5\\x0b\\xd7\\x5e\\x2c\\x71\\xc6\\x2b\\x60\\x3a\\xa1\\x62\\xd8\\xe6\\x96\\x5a\\xe6\\x64\\x66\\xa6\\xf9\\x93\\x45\\x18\\x32\\x08\\xc2\\xa8\\xaa\\x7c\\x2e\\xea\\x64\\x60\\x92\\x9f\\xcf\\x0e\\x6e\\x75\\xec\\x48\\xe9\\x4a\\xef\\xe5\\xb3\\x7a\\x4b\\x08\\x21\\xae\\x2f\\x8f\\x87\\x30\\x3a\\x52\\xc0\\xe1\\xf3\\x94\\xfb\\xee\\x29\\xa4\\x44\\xe2\\x1d\\xbc\\xea\\xf4\\x12\\xd4\\x1f\\x5e\\x16\\x38\\xeb\\x02\\x09\\x16\\x91\\x78\\xef\\x18\\x6c\\x4d\\x79\\xeb\\x99\\xc8\\x5d\\x2b\\x79\\x92\\xa2\\x96\\x1c\\x98\\x3d\\xee\\x4f\\x5c\\x4c\\x34\\xf7\\xac\\xb5\\x8b\\x6c\\xf3\\xe4\\xd7\\xce\\xa4\\x31\\xfc\\x51\\x06\\x1d\\x99\\x4f\\x4d\\x1d\\x13\\x5c\\x3b\\xe8\\x1a\\xe7\\xb8\\xd8\\x35\\xd4\\x6f\\xb0\\x84\\x0e\\x4c\\x83\\x61\\xe2\\x6f\\xac\\x79\\xf2\\x6f\\x9c\\x67\\x61\\x41\\x8d\\xc0\\x78\\xde\\x08\\x60\\xdb\\x11\\xa2\\x41\\xfb\\xf6\\x1f\\x6a\\x2b\\x3b\\x3b\\x97\\x60\\x1c\\xa0\\x1d\\x62\\x90\\x03\\xd1\\x28\\x5f\\xa0\\xc9\\xc3\\x79\\x25\\x89\\x13\\x13\\x6e\\xd6\\x92\\xb2\\xd4\\xe7\\x7f\\x91\\x5e\\x3d\\x4f\\x44\\xba\\x50\\x96\\x3f\\x92\\x4f\\x8c\\x35\\x43\\x39\\x9f\\xc3\\xd9\\xb7\\x11\\x24\\xf2\\x7a\\x4b\\x9f\\x75\\xfd\\x2c\\x2e\\xf7\\xb4\\xbe\\xaa\\xf5\\x12\\x10\\xd6\\xb1\\x94\\xa7\\xcd\\x41\\x5e\\x1e\\x1f\\x51\\x67\\xcb\\xe9\\x2a\\xcb\\xe7\\xe9\\xf4\\x76\\xf9\\x13\\xce\\xa7\\xf9\\xd2\\x6d\\x3f\\xd6\\xf4\\x30\\xaa\\x3b\\xf5\\xfc\\x70\\x8f\\xee\\x7a\\xb9\\xcb\\x2b\\x20\\xb1\\xa1\\xca\\x6f\\x78\\x75\\x96\\x95\\x30\\x21\\x13\\x36\\x85\\x4f\\xbf\\x55\\x1b\\x89\\x1d\\xcf\\xed\\xf0\\x31\\x1e\\x7a\\x3a\\x88\\xa9\\x57\\x3f\\x8b\\x78\\x9f\\xcd\\xc9\\xd7\\x20\\x5a\\x73\\xa8\\xe3\\x67\\x3f\\x19\\x71\\x5b\\x4f\\x48\\xc7\\xeb\\xfa\\x7b\\xfa\\x04\\x0b\\xab\\x33\\xc2\\xab\\x0e\\xeb\\xad\\x51\\x4c\\xd3\\xdc\\x5d\\x68\\x7b\\x6c\\xfd\\x5d\\x21\\xad\\xb5\\x44\\xa8\\x73\\x22\\x39\\x0d\\xb7\\xff\\xe9\\x3e\\xef\\x92\\x32\\x67\\x68\\x34\\x98\\x23\\x42\\x5d\\x26\\x47\\x86\\x33\\xd6\\x94\\x18\\xc9\\xc0\\xce\\xcc\\x37\\xae\\x34\\x76\\x9c\\x35\\xc8\\x03\\x67\\x35\\x6d\\xda\\x73\\xd2\\x9d\\x2c\\x76\\x08\\x27\\xd6\\xbd\\x1e\\x79\\xe4\\xd7\\x5e\\x99\\x79\\x79\\x97\\x8c\\x93\\x0a\\x75\\x87\\x47\\x44\\x61\\x8f\\xbf\\xfe\\x81\\x90\\x36\\x82\\x39\\x2e\\x2d\\xbf\\x02\\x61\\x62\\x08\\x5e\\xe0\\xf3\\x2b\\xc9\\x6a\\x18\\x46\\xf3\\x73\\xf7\\xd1\\xb1\\x1a\\x52\\x60\\xda\\x85\\x81\\x47\\xba\\x5d\\xe4\\xef\\x3e\\x48\\xf0\\x2b\\x47\\xec\\xa6\\x63\\x93\\xd5\\x9c\\xc1\\x3c\\xfe\\x7b\\x03\\xef\\x12\\x3f\\x43\\xc1\\x47\\xf8\\xc3\\x5d\\xc3\\x15\\x8c\\x41\\xc8\\x80\\x61\\xb7\\xff\\x9a\\x43\\x4e\\x8f\\x96\\xdb\\x6a\\x13\\x4f\\x0d\\xcb\\x91\\x4d\\x63\\x68\\x54\\xe9\\xe2\\xe8\\x44\\x14\\x2f\\x66\\x52\\x65\\xc4\\xa6\\x68\\xa4\\x13\\x34\\x67\\xd1\\xfe\\xc6\\x78\\xc3\\xc9\\x37\\x88\\x05\\xf1\\x95\\x19\\x52\\x3a\\x59\\xa3\\xb3\\x4c\\xd2\\xb6\\xeb\\x31\\xf7\\x08\\xd7\\x84\\x59\\x62\\x7f\\x63\\x02\\x27\\x17\\xda\\xf4\\x6b\\x3e\\x3d\\x93\\x7b\\x9e\\xdb\\xc2\\xf4\\xf5\\x86\\x44\\x94\\xd1\\x10\\xad\\x20\\x48\\xb9\\xa9\\x4d\\x41\\x5b\\x46\\xeb\\x26\\xed\\x81\\xf6\\x8b\\xe2\\xb2\\x9c\\x1b\\x7f\\xad\\x6f\\x92\\xfa\\xeb\\xe7\\x9b\\x95\\x3f\\xb0\\x45\\xae\\x73\\x6a\\x5b\\x6d\\x3b\\xdf\\xcb\\x5c\\x2f\\xc1\\xaa\\x85\\x6d\\x65\\x30\\x6d\\x98\\xa1\\x55\\x36\\x46\\xc7\\x10\\xe9\\x8f\\x06\\x05\\xed\\xe8\\xb8\\xec\\x6e\\x89\\x23\\x9e\\xb9\\x96\\xfa\\x74\\xf6\\x72\\x21\\xff\\x24\\x13\\xbf\\x44\\xf9\\xfe\\x2d\\x24\\x9d\\x5a\\xce\\xfc\\xcd\\xad\\x97\\x2f\\x71\\x9b\\xab\\x30\\x0c\\x4b\\xb9\\xf1\\x70\\x0c\\x7e\\x62\\x7a\\x46\\xfa\\xac\\xe8\\x8b\\x2f\\x0e\\xde\\x51\\x95\\x9e\\x46\\x0a\\x65\\x31\\x6b\\xf5\\x21\\xab\\xe7\\x5f\\x73\\x1b\\xa0\\x5d\\xbd\\xe4\\x89\\xc4\\x5a\\x1f\\x2b\\x9c\\x67\\x78\\x51\\x51\\xb1\\xca\\x85\\x7e\\xae\\xa0\\xf9\\xa0\\x6e\\x94\\xfa\\x76\\xbb\\x95\\xcd\\xba\\x12\\x7f\\xf1\\xc1\\xc0\\x00\\x7a\\x6b\\xc9\\x8a\\xf7\\x3f\\xc5\\x8c\\xf4\\x25\\xf1\\xcc\\xaa\\x91\\xe3\\xac\\xb7\\xdf\\xe3\\x03\\xfb\\xbc\\x64\\x2c\\x8f\\x4d\\x4a\\x6f\\x72\\xbb\\xaa\\x1e\\xa3\\x6b\\xea\\x35\\xd9\\x3c\\xe7\\x6b\\x23\\x95\\x66\\x98\\x55\\xd4\\xf2\\xb9\\xe9\\xd5\\x9b\\x1c\\x1e\\x12\\xae\\x86\\xea\\xdb\\xa7\\xce\\xc3\\xbf\\x3d\\x8f\\x95\\x3d\\x97\\x59\\xa3\\x18\\x13\\x0e\\xbb\\xa5\\xca\\x59\\xf5\\x68\\xae\\xbd\\x14\\x05\\xe9\\xae\\xfd\\x34\\xcc\\x15\\x7e\\x59\\xdb\\x46\\xe5\\xc9\\x23\\xa5\\x5c\\x3e\\xbe\\xc5\\xb5\\xb4\\xcd\\xe5\\x98\\xe3\\x21\\xd9\\xf2\\x10\\xbe\\x4f\\x36\\x2e\\xf8\\xe1\\x73\\xa7\\xfc\\x92\\x84\\x38\\x1f\\x74\\x97\\x05\\x6e\\xc2\\x85\\xa7\\x72\\xe1\\xf8\\x15\\xf7\\x8c\\x0e\\x31\\x07\\x71\\xe1\\x40\\x49\\x96\\x7a\\xa5\\x5d\\x23\\x4b\\xee\\xd7\\xe2\\x3f\\xd4\\xa1\\xc6\\x88\\x1f\\x25\\x0a\\x23\\xfa\\xf1\\x77\\x4e\\xf8\\x41\\x71\\x5f\\xa8\\xa3\\xf1\\xdb\\x21\\x38\\xdd\\xf0\\xcc\\xf8\\x1c\\xa4\\xc5\\xe2\\xa9\\xf3\\x3e\\xc3\\x1b\\x6e\\xb1\\x8a\\x1d\\x49\\xaa\\x96\\xde\\xe7\\x18\\xe6\\xc0\\x05\\x52\\xc7\\xa5\\x41\\xf6\\x48\\x18\\x2d\\x51\\x39\\x17\\x92\\x64\\xe0\\xb2\\x37\\xb6\\x9f\\x75\\x85\\x0f\\x5b\\x4b\\x3a\\x76\\x41\\xa7\\xf9\\xd2\\xe1\\xd1\\xab\\xb4\\x41\\x10\\x13\\x9c\\x2b\\xee\\x51\\x23\\x75\\x55\\xaf\\x61\\xec\\xad\\xca\\xec\\xf7\\xdc\\x3d\\xe4\\xa2\\xa0\\xbc\\x60\\x5b\\xac\\x3d\\x52\\x13\\xe5\\x84\\xf5\\x9d\\x57\\xf8\\x12\\xe7\\xe4\\x46\\x94\\x1a\\x4e\\x92\\x2d\\x98\\xfd\\x5a\\x0b\\xe3\\x1f\\xe0\\x78\\x80\\x59\\x27\\xfa\\x18\\x95\\x70\\x12\\x8d\\x0d\\x6a\\x86\\xd7\\xa9\\x0c\\x60\\x0e\\x82\\x99\\x5e\\xd5\\x9e\\xc6\\x41\\xa3\\xd7\\x3e\\xc8\\x54\\x9e\\xa3\\xca\\x53\\xcd\\x53\\x7e\\xce\\x5e\\x0b\\x55\\x21\\x5e\\x2b\\x54\\x5f\\xd3\\x7e\\x31\\x7a\\x1f\\x44\\xee\\x34\\xc8\\x1d\\x3e\\x5e\\xe3\\x9d\\x4a\\x59\\x07\\xea\\x6d\\xa3\\x59\\x61\\x64\\x44\\xc3\\x0d\\x1b\\x30\\xca\\x9d\\x70\\xab\\x5f\\x84\\xfe\\x44\\xb6\\xcc\\xce\\x72\\x2d\\x98\\xf8\\x1b\\x1a\\x2a\\xed\\x4f\\x77\\x13\\xc0\\xe3\\xac\\xa6\\x4e\\xb7\\x55\\x4e\\x8c\\xcb\\x42\\x25\\x60\\x31\\x3e\\x20\\x7c\\xfa\\x9d\\xe7\\x34\\x8a\\x81\\xcb\\xd8\\x8c\\x2b\\x9a\\xbc\\x3d\\x4a\\xbb\\x58\\xdd\\xda\\xa2\\xcc\\x23\\x1b\\xfa\\x04\\x63\\x3b\\xa2\\xd4\\xfe\\x98\\xef\\x64\\x8d\\xd0\\x45\\xf0\\x87\\x30\\x35\\x8a\\xe3\\x2b\\xd2\\xbc\\xab\\x0f\\x61\\xf0\\x6d\\x94\\x10\\x3e\\x3d\\xaa\\x65\\x25\\xf4\\x8d\\xf1\\x28\\x15\\xdc\\x99\\xd6\\x68\\x85\\x37\\xb0\\xb0\\x21\\x05\\x2f\\x39\\x4d\\xd7\\x2d\\xac\\x1e\\xfd\\x43\\x0f\\x29\\xf5\\xf2\\x58\\xe0\\x5d\\x16\\xb4\\xa2\\xff\\x4b\\x31\\xc5\\xb1\\x63\\x08\\xd2\\x2c\\x03\\x44\\xd7\\x1a\\x2b\\x35\\x89\\x12\\xe9\\xa9\\x75\\x92\\x75\\xec\\xc8\\x44\\xea\\x40\\x87\\x72\\x73\\xcb\\x56\\xae\\x98\\xd1\\x59\\xe3\\xa9\\x80\\x92\\x76\\x1a\\x61\\x38\\xd5\\xa5\\x67\\x74\\x16\\xcc\\xe7\\xd6\\x11\\x0f\\xf3\\x16\\x1d\\xb7\\xdd\\xb1\\x2d\\x40\\xd5\\xeb\\xca\\x34\\x6a\\x1c\\xcb\\x7e\\xa4\\x85\\xe0\\x09\\xb8\\xef\\xf0\\x95\\x32\\x42\\x6c\\x3e\\x2f\\xbc\\x49\\xaa\\x27\\x84\\x68\\x1d\\x6f\\xda\\x3e\\xfb\\x77\\x1c\\x60\\x5a\\x47\\xa4\\x98\\x3e\\x0c\\xb1\\x2d\\x33\\xd9\\x9a\\xcf\\xf7\\x4f\\xa2\\xfa\\x4e\\x30\\x14\\xeb\\x5b\\x99\\x21\\xe7\\x15\\x03\\x82\\xa0\\xef\\x46\\xf6\\x53\\x5f\\x6a\\x12\\x73\\x3c\\x43\\x8a\\xae\\x3a\\x52\\xa5\\x91\\x3c\\xbb\\xa6\\x17\\x81\\x43\\xb0\\xa4\\x5d\\xeb\\x51\\xb3\\x66\\x2e\\x6d\\x90\\xf8\\x8e\\x02\\xc2\\x05\\x9b\\x7c\\xbe\\x9b\\x81\\xcc\\xfe\\xe9\\xc7\\xa4\\x81\\x31\\x8f\\x13\\xe0\\x48\\x02\\x5d\\xb4\\xe3\\x20\\x91\\xe1\\x31\\x90\\xd4\\x8a\\x50\\xe4\\x5e\\x02\\xe9\\xf4\\xcf\\x77\\x38\\x0b\\x10\\xae\\x29\\xa8\\x8b\\x72\\xb4\\x1f\\x3e\\xfb\\x1b\\x77\\xa9\\x07\\xf8\\x4b\\xf8\\x9c\\xea\\xb0\\x0a\\x53\\x9f\\x66\\x44\\x5d\\x36\\x5e\\x7b\\xfa\\xf9\\x69\\xce\\xa7\\x76\\xe3\\xf7\\x31\\xf7\\x68\\x7d\\x12\\x17\\x8e\\x06\\x67\\x8f\\xb6\\xd3\\x85\\xdb\\xff\\x48\\xbd\\xc1\\x42\\x2b\\xb2\\x64\\x68\\x94\\x31\\xfc\\x7a\\x51\\xcd\\xb1\\x14\\x50\\x7c\\x94\\x98\\x39\\xb5\\xdd\\x3c\\x27\\x2e\\xc7\\x1b\\x9b\\x55\\x6d\\x80\\x67\\x12\\x4b\\xd3\\xee\\xf8\\x4e\\x64\\x36\\x74\\xc9\\xd9\\xa3\\xa7\\x2f\\x3a\\xcc\\x29\\x33\\xf8\\x90\\x43\\x9f\\xbe\\xd5\\x5b\\x3c\\xbd\\x2a\\xc4\\x09\\x97\\x74\\xa2\\x08\\x71\\x5c\\xcc\\x9a\\x11\\x95\\x80\\x9a\\xa9\\x30\\x7f\\xe3\\x88\\x88\\xc2\\xe1\\x37\\x3d\\xe7\\x3f\\x53\\x92\\xd3\\x3f\\x33\\x2e\\x02\\xca\\x67\\x2c\\xca\\x77\\x2e\\xee\\x2e\\xf5\\x7c\\x45\\xb2\\x9f\\x86\\xae\\x1f\\xde\\x2d\\x52\\xf7\\x96\\x4c\\x8c\\x52\\xc9\\xa7\\x9a\\xa8\\x2c\\x8c\\x6d\\x89\\x4b\\x96\\x47\\x32\\x93\\x3c\\xae\\x7a\\x42\\x7c\\x51\\x91\\xa5\\xc0\\x6a\\xe5\\x37\\xbb\\xbd\\x7a\\xba\\x03\\xb0\\x49\\x53\\x36\\x46\\x22\\x02\\xde\\x11\\xae\\x29\\x9f\\x3f\\x77\\x1a\\x17\\x59\\x9a\\xbd\\x63\\x18\\x2f\\xb8\\x42\\x01\\x23\\xd3\\xae\\x47\\x01\\x7d\\x10\\x69\\x59\\xdb\\xe4\\x47\\xee\\x20\\x80\\x22\\xf8\\xad\\x01\\xc1\\xb6\\x75\\x2f\\xdd\\xfd\\xf5\\x61\\x9e\\x80\\x1b\\xc9\\x2d\\x91\\x59\\x26\\x8f\\x5a\\x9e\\x0b\\xbd\\x30\\xc1\\xe8\\xfe\\xfe\\x02\\x37\\x74\\xf1\\x84\\xe8\\xdb\\x82\\x64\\x99\\x27\\xdf\\x22\\x81\\x61\\x55\\xf0\\xdd\\xd3\\xd8\\xb5\\x4d\\xfd\\x76\\xf2\\xb6\\xa7\\xba\\x93\\x0e\\x29\\x93\\x91\\xa2\\x90\\xc1\\x11\\x71\\x58\\x26\\x0d\\xb4\\x47\\x09\\x0a\\x52\\x95\\xb9\\xa9\\x91\\x16\\xe6\\x3a\\x6b\\xd6\\x3b\\xb1\\xd6\\xaf\\x5e\\xd4\\x7b\\xe3\\xa4\\xb0\\xed\\x65\\x31\\xb1\\x9d\\x9c\\xa5\\xe9\\x29\\xbe\\x0b\\x3c\\x37\\x5c\\x50\\x70\\x37\\x62\\x99\\xa0\\x80\\xcc\\xba\\xdc\\x0b\\xc5\\x22\\xe1\\x4a\\x65\\xdb\\x6c\\x47\\x26\\xd4\\x23\\xcd\\xbe\\x2b\\x38\\xcc\\x85\\x41\\xc1\\xfa\\x32\\x05\\xe5\\xfc\\x9a\\x09\\x6b\\x67\\xd4\\x4c\\x32\\x9f\\x73\\xbc\\x64\\x4d\\x79\\xd3\\x6e\\x06\\x9c\\xc1\\x52\\x03\\xc3\\xe8\\xbc\\xf8\\x6e\\x7d\\x0f\\x79\\x8e\\x13\\x47\\x86\\xb9\\x54\\x0e\\x42\\xe8\\xb1\\x9b\\x56\\x26\\xf5\\xb2\\x7f\\xbc\\xe9\\x37\\xfc\\x6c\\xd3\\x79\\xa2\\x30\\xdf\\x4f\\x1b\\xae\\x6d\\x2a\\x4f\\x0e\\x1a\\x3e\\x41\\x54\\x45\\x88\\x09\\x09\\xdb\\x06\\xa8\\x00\\x2e\\x06\\x62\\x20\\x05\\x07\\xc2\\x88\\x0c\\x0e\\x30\\x39\\x62\\x50\\x86\\x1c\\x58\\xd2\\xe7\\xa2\\xb3\\x9f\\xbe\\x35\\xed\\x58\\x2c\\x1b\\x4b\\x7f\\x61\\xe7\\x3a\\xa5\\xe6\\x44\\x97\\xe4\\x45\\x64\\xd6\\xed\\xdd\\x0c\\xfb\\x14\\xc5\\xb1\\x82\\x89\\xbb\\x6a\\x34\\xc9\\x1e\\x44\\x3f\\x0d\\x17\\xbb\\x23\\x17\\x15\\x92\\xd8\\x70\\x82\\xcc\\x38\\xcc\\xc2\\xae\\x9b\\xbb\\x83\\xd0\\x2c\\x42\\xc9\\xf1\\xd9\\xe0\\xa0\\x0e\\x64\\x54\\x55\\x3a\\x91\\xaf\\xa6\\x35\\x0e\\x72\\x16\\x33\\x8a\\xd5\\x8b\\x14\\xe5\\x77\\x70\\x94\\xb0\\x81\\x75\\x13\\x38\\x55\\xaa\\x81\\x30\\xb5\\xe4\\xf3\\xbc\\x93\\x46\\x65\\x2d\\xa1\\x2a\\xcc\\x14\\x96\\x36\\x5d\\x9f\\x99\\x40\\xf1\\xc2\\xe5\\xe3\\xfe\\xae\\xea\\xea\\x62\\xbd\\x4f\\x64\\xd3\\x7d\\x09\\x92\\xa1\\x69\\x33\\x5a\\x0c\\xda\\x87\\xa9\\xc6\\x3a\\x26\\x38\\x40\\xd0\\x67\\x12\\xcb\\xec\\xa9\\x39\\x34\\xf9\\xfc\\x6c\\x29\\x92\\x3e\\x66\\x90\\x51\\xd4\\xf6\\xb9\\x22\\xfb\\xf4\\xf5\\x70\\x36\\x0f\\x8b\\x37\\x8e\\x36\\x1e\\x5c\\x69\\xab\\x6a\\xea\\xe7\\x67\\x17\\x25\\x1c\\x66\\x27\\x8d\\x66\\xa5\\xc7\\xd3\\x93\\x86\\xea\\x2d\\xb0\\x32\\xda\\x1d\\x8a\\xf6\\xd9\\x85\\x66\\xab\\x1f\\x89\\x03\\x89\\xb5\\x91\\xad\\x69\\x92\\xec\\x14\\x85\\xbc\\x0d\\xab\\xcb\\x24\\xcd\\xf5\\x0e\\x62\\x55\\x7b\\x78\\xb5\\xd5\\xbe\\xba\\x1c\\x17\\xf4\\x7d\\xa5\\x3d\\x68\\x96\\xab\\xe2\\x42\\xb7\\xb8\\x61\\xe5\\x9a\\xd6\\xde\\xdb\\x66\\x69\\x26\\x68\\xb5\\xbf\\xf3\\xd9\\x56\\x7f\\x07\\xbd\\x56\\x3a\\x19\\x63\\xc8\\x2f\\x77\\x4b\\xe6\\x0e\\x77\\x1c\\xaf\\x7c\\x41\\xa7\\xf1\\x46\\x27\\x73\\x5c\\x25\\xc4\\xd5\\xaf\\x51\\x05\\xb6\\x43\\x2c\\x11\\xca\\x1e\\xbc\\xd5\\x77\\x7c\\x45\\x9c\\xbf\\x78\\xb6\\x01\\x91\\xf0\\x16\\xc7\\xbf\\x7e\\x56\\x33\\x82\\x8f\\x88\\x44\\xae\\xf6\\xe9\\xd0\\x55\\x35\\x7e\\x06\\x34\\x08\\xe1\\xde\\x59\\x80\\x20\\xec\\xc5\\x4b\\x84\\xfd\\x39\\x84\\xd7\\x9e\\xde\\xe2\\x3e\\x23\\x29\\x02\\xd3\\x7f\\x58\\xa7\\x47\\x91\\x1d\\xa9\\xb9\\x76\\x27\\x7a\\x00\\x49\\x73\\x24\\x52\\xaa\\xae\\x0c\\x91\\x67\\x50\\xfb\\x20\\x9c\\x5b\\x21\\x53\\x87\\x41\\xcc\\xf1\\x5c\\x67\\xab\\x44\\x8b\\x04\\x28\\x23\\x8a\\x20\\xa5\\x5c\\x0b\\xe2\\xf0\\x50\\xbc\\x7a\\x91\\x1e\\xd4\\x61\\xd5\\x54\\x29\\xdd\\x6d\\xd8\\x55\\x6f\\x3c\\x9a\\xb5\\x0d\\x37\\x8d\\x5c\\x7d\\x4a\\xe6\\xe6\\x49\\xcd\\xdd\\x65\\xc7\\x50\\xc2\\x7f\\x89\\x98\\x2b\\x46\\x36\\x90\\x9d\\xdf\\x8a\\x6b\\xb5\\x9d\\x9a\\x37\\x27\\x41\\xc7\\x66\\x38\\x8c\\x59\\x94\\xc3\\xf4\\x84\\xb0\\x93\\x87\\x2b\\x33\\x33\\x17\\x40\\xba\\x4d\\x47\\xb9\\x07\\xa8\\x2d\\x43\\x4c\\xb7\\x76\\x58\\x9b\\xe3\\xfb\\xa7\\xad\\xbe\\x76\\xa7\\xcd\\x13\\x9d\\x9d\\x17\\x6d\\x2c\\xcf\\xef\\xd8\\x0b\\x5e\\xff\\xaf\\x52\\xc5\\xe2\\xa9\\xf7\\x24\\x1b\\x82\\x17\\x51\\x26\\x08\\x70\\xe5\\x58\\xeb\\x3d\\x5c\\x1f\\xae\\xaf\\x5b\\xd8\\x1f\\x63\\xeb\\x52\\x7a\\xbe\\x0a\\x70\\xe3\\xca\\x3a\\x4e\\xb4\\x81\\x07\\xae\\xc7\\xc5\\xf9\\x7c\\x53\\xf4\\x84\\x60\\x4e\\x4d\\xdb\\xe7\\xab\\x62\\x62\\x72\\x20\\x3e\\xf8\\x4f\\x09\\x6c\\x18\\x44\\xf9\\x43\\xae\\x64\\x2e\\xb1\\xbf\\xab\\xc5\\x11\\x6d\\x2a\\xbb\\x75\\x7e\\x12\\x08\\x17\\x83\\x7e\\x13\\x4b\\x3b\\x35\\xd3\\x38\\x91\\x81\\x8d\\xc5\\x02\\x85\\x7a\\x06\\x38\\xf5\\xbd\\xb8\\x7b\\xa9\\xaf\\xbb\\xa5\\x1f\\x01\\x9d\\xef\\x71\\x84\\xad\\x63\\xdd\\xed\\x8d\\x69\\x89\\xa4\\x78\\xce\\xa0\\x50\\x4b\\x08\\x84\\x03\\x69\\x69\\x38\\x12\\x26\\xc5\\xdf\\x76\\xe4\\x71\\x5d\\x76\\x86\\x38\\xa3\\xcc\\xfc\\xf9\\xb7\\x13\\x88\\xc1\\x59\\xff\\xe0\\x9f\\x67\\xa7\\x44\\x45\\xfc\\x78\\x53\\xc6\\x7a\\x17\\x1c\\xc1\\xc6\\x05\\xa1\\xb8\\x97\\xea\\x71\\x35\\x18\\xc5\\x1e\\x12\\x78\\x48\\x86\\xef\\x7e\\x95\\x00\\x37\\x41\\x6f\\xc4\\x25\\x84\\x46\\x2a\\x04\\xb3\\xa4\\xd0\\xc8\\x19\\x3a\\xdb\\x81\\xbc\\x4b\\xfc\\xf9\\x17\\x6e\\xa3\\x0d\\xef\\xc8\\xe3\\xc0\\xce\\x71\\xc4\\x2b\\x05\\x51\\xbf\\x4b\\x31\\x5d\\xf7\\xca\\x47\\x98\\x43\\x5b\\x22\\x49\\x5d\\x4e\\xe6\\x0a\\x61\\x3b\\x44\\xda\\x40\\x26\\x57\\x1b\\xd6\\x42\\xad\\x22\\x03\\x09\\xe4\\x92\\xf4\\xcd\\xfc\\x25\\xd2\\x47\\xed\\xb4\\x1c\\x8f\\x66\\x82\\x7e\\x5f\\xb5\\xd9\\x66\\x28\\xd7\\x4d\\x05\\xf2\\xf3\\x84\\xd6\\x40\\x3c\\xd7\\x6e\\x6c\\x97\\xc3\\xa2\\x4a\\x50\\x40\\x0d\\xfd\\x9f\\x65\\x1c\\x89\\x62\\x59\\xac\\x3d\\x61\\x7e\\xe8\\xb2\\x43\\xf8\\x67\\x1e\\x61\\x3f\\xa4\\xa5\\xdc\\xc3\\x07\\x74\\xf5\\x4c\\xef\\xcc\\x35\\xd1\\xf6\\xf4\\x10\\x6a\\x79\\xa7\\xd6\\x70\\xb2\\x04\\xce\\x1b\\x55\\x2a\\xfd\\x50\\x6f\\x56\\x81\\x39\\x4c\\x3d\\x7b\\x9d\\x29\\xa3\\x15\\x40\\x4a\\x22\\xbb\\x25\\xa0\\x75\\x52\\x2f\\xeb\\x54\\x97\\xcb\\xfc\\x1b\\xa0\\x58\\x40\\x70\\x1c\\x18\\x99\\x7c\\xe7\\x19\\x79\\x08\\x6d\\x5e\\xb5\\xa9\\x6f\\xd5\\x73\\xbf\\xa6\\xf5\\xbd\\x2f\\x7e\\x90\\x56\\xb6\\x65\\xf4\\x73\\xf0\\xdc\\xe5\\xa6\\x6b\\x3e\\x59\\x63\\x25\\x0f\\xe5\\x1b\\x65\\x73\\x60\\xfd\\x16\\xff\\x6d\\x70\\x48\\xbc\\xb4\\xa0\\x36\\xc9\\x39\\x24\\x13\\x6d\\x44\\x5c\\x26\\x7c\\x8b\\xe9\\xd9\\x89\\xf0\\x99\\x67\\x5a\\xf9\\xc3\\xf1\\xc3\\x82\\x28\\x40\\x40\\x62\\x92\\xc3\\x2a\\x73\\xd1\\xd4\\x2a\\x27\\x60\\x43\\x86\\xc8\\x73\\xf3\\xd4\\x2a\\x73\\xe0\\xa5\\x37\\xae\\xeb\\xb6\\x54\\xe1\\x40\\x8d\\x64\\xec\\xdc\\x5f\\x41\\xd2\\x93\\x67\\x74\\xce\\xfe\\xc7\\x68\\xe6\\xef\\xaf\\x00\\xd2\\x65\\x29\\xa0\\xed\\x93\\xad\\x55\\xe3\\xa1\\x3e\\x85\\xe1\\x07\\x99\\x7b\\xa6\\x22\\x89\\xe7\\xe0\\xae\\x2a\\x95\\xfe\\x21\\xf0\\x1b\\x7e\\x0c\\x17\\xa9\\xf3\\x21\\xb8\\x15\\xde\\x3c\\x60\\x26\\x8e\\x2b\\x25\\x9d\\xbd\\xbf\\xf9\\xcc\\x84\\x39\\x76\\xf9\\x2e\\xe9\\x1f\\xce\\xdb\\xf7\\xd5\\x38\\x37\\x37\\x56\\x3b\\x9f\\xcb\\xe1\\x47\\xc0\\xc4\\xa1\\xd4\\xc9\\x5e\\x82\\x8b\\x88\\x88\\xa5\\x7c\\x51\\xd3\\x82\\x7f\\xc9\\x11\\xf9\\x0b\\x5a\\x60\\xc3\\x5a\\x90\\x69\\xb3\\x0c\\x3d\\x7c\\x12\\x65\\x7c\\x57\\x7f\\xed\\x11\\xfa\\xe8\\x94\\xbe\\xd4\\xd6\\xc9\\x35\\xf2\\x36\\xc1\\x59\\x96\\x24\\x24\\xf7\\x74\\xd4\\xd9\\x65\\xeb\\x41\\xd6\\x31\\xfd\\xc5\\xfb\\x2c\\xe7\\x8f\\x93\\x3a\\xd5\\x96\\x79\\x68\\x09\\xba\\xbf\\x31\\xd1\\x14\\xb8\\xab\\x93\\x19\\x1a\\x78\\x46\\x7b\\x2a\\xb8\\xab\\x32\\x1c\\x0d\\x7c\\x4b\\xcd\\xe3\\x32\\x78\\xbb\\x64\\xf6\\x11\\xe9\\xb1\\x77\\xaf\\x1a\\x35\\xd7\\xab\\xac\\x7d\\xa5\\x52\\x78\\xb8\\x99\\x87\\xd6\\xfa\\xcf\\x26\\x93\\x51\\xa9\\x8b\\x5f\\x48\\x55\\x5e\\x09\\x10\\xbf\\xde\\xa5\\x4e\\x06\\x76\\xe5\\x0f\\x12\\x8b\\x1a\\x1f\\x45\\xba\\xeb\\xf8\\x63\\xae\\x95\\x70\\x70\\xea\\x09\\xf3\\x5c\\xbf\\xb4\\xc5\\x3c\\xb3\\x20\\x3c\\x5f\\x19\\xdb\\x25\\x34\\x7e\\x25\\xa4\\x3e\\xaf\\x18\\x47\\xcb\\x1a\\x56\\x39\\x86\\xd3\\x25\\xb2\\x5e\\xc4\\x9a\\xa6\\xfb\\x5c\\xac\\x9d\\xd3\\x04\\x71\\xf4\\xc8\\xd7\\x5c\\x0e\\x85\\xac\\x2c\\x2f\\xdb\\xe4\\xee\\x5b\\x43\\x32\\x8d\\x2a\\x9b\\xf9\\xd3\\x78\\x1a\\x2c\\xec\\x19\\x60\\x29\\x33\\x99\\x5e\\x50\\xbc\\xe3\\x45\\x72\\x97\\x2a\\x23\\x5c\\xc0\\xbe\\xcc\\x23\\xef\\x2b\\x8a\\x22\\xbc\\x21\\x83\\xf9\\xba\\x49\\x79\\x7f\\x37\\x14\\x20\\x19\\x5c\\xa0\\xe2\\x09\\x92\\x06\\x08\\xfb\\xf6\\x34\\x0a\\x26\\x6d\\xbf\\xcd\\x4e\\x19\\x93\\x83\\x43\\xaf\\x89\\x46\\xae\\x11\\xd4\\xe9\\x7b\\x65\\xbe\\x15\\xdf\\x99\\x2c\\xe6\\x04\\x6f\\xc8\\x90\\x78\\x8a\\xf2\\xad\\x3a\\x27\\xe8\\x07\\x39\\x71\\x2f\\xaf\\x4f\\x97\\x99\\x8b\\xf2\\xcf\\x2d\\x43\\x17\\x99\\x72\\xae\\xcd\\x7c\\x9d\\x71\\x5d\\xf2\\xac\\x1f\\xbf\\xec\\x01\\xb8\\x4b\\x48\\x31\\xef\\x54\\x0b\\x7d\\x92\\xf1\\xd4\\x48\\x1c\\x17\\xae\\x7f\\xdb\\x12\\xbd\\xcc\\x04\\xd8\\x5f\\xf4\\xdb\\xab\\x94\\x73\\xe0\\x1c\\xa8\\x81\\x8f\\x9d\\x57\\x94\\xa7\\xe4\\x6d\\xe4\\x1c\\xbd\\x6c\\x03\\xb8\\xab\\x44\\xe5\\x4c\\xa2\\x95\\xba\\xc4\\xfe\\xaa\\x5f\\xab\\xdf\\xdb\\xd7\\xf3\\xff\\x1d\\xae\\x2f\\x7b\\x97\\x7f\\x7a\\x6f\\x40\\xd8\\x72\\x8f\\x75\\x0d\\xdc\\x57\\x68\\x9f\\x2e\\x73\\x32\\xe8\\xe5\\x0f\\x7a\\xbb\\x34\\x6b\\x21\\x37\\xa1\\x83\\xc0\\xa2\\x2a\\xc5\\xa0\\x2b\\xf5\\x58\\x1c\\x26\\x95\\xfc\\x35\\x86\\x0b\\x5d\\xe6\\x06\\x7f\\x58\\xfa\\x8f\\x33\\x43\\xc3\\x1f\\xab\\xd4\\x09\\xa7\\x94\\xe4\\x08\\xfc\\x20\\xce\\xd4\\x93\\xb7\\x70\\x2e\\x30\\xab\\x75\\xdb\\xda\\x1e\\xb2\\x17\\x97\\x94\\x77\\x7a\\xdd\\x1b\\xea\\xf8\\x32\\xac\\xe7\\xae\\xf6\\xe8\\xf2\\x0f\\x5d\\xe9\\x35\\xf1\\xfd\\x53\\xbc\\x8d\\x89\\x51\\xec\\x81\\xf1\\xe4\\x3a\\xaf\\xe3\\x41\\x3f\\x8c\\x42\\x9a\\xb3\\x88\\x57\\x89\\x91\\xde\\xaf\\xbd\\xe8\\x5e\\x87\\xcb\\x78\\xd5\\x1e\\x03\\xa7\\xda\\x22\\x72\\x81\\xd6\\x6e\\x6c\\x16\\xf3\\xdf\\x65\\xad\\x48\\xa3\\xa8\\x37\\x73\\x60\\x8f\\x66\\xb5\\x4d\\x8c\\x83\\xa2\\x17\\xf0\\xd1\\xe9\\x80\\x60\\xe3\\x92\\x8e\\xc4\\x1f\\x73\\xa7\\x69\\x15\\x17\\xb8\\xae\\x93\\x50\\x5f\\x8c\\x42\\x7e\\xb5\\x36\\xe7\\xf2\\x56\\xda\\x94\\x93\\x8c\\x01\\x60\\xbc\\x5c\\x62\\x9f\\xd0\\xa3\\xd5\\x62\\x09\\xcb\\x48\\xaa\\xe7\\x58\\x39\\x53\\xdc\\x84\\x33\\x8b\\x4c\\x48\\xeb\\x96\\x82\\x70\\x5d\\x28\\x24\\x5d\\x4b\\x3c\\xb9\\x91\\xdd\\x4b\\x89\\x44\\x1b\\xdf\\xed\\xa8\\x04\\x37\\x51\\x37\\xf4\\x4b\\xa1\\x24\\x3e\\xa3\\xd2\\xd1\\xbc\\xbb\\xf6\\x2c\\xcb\\x70\\x78\\x06\\x5f\\xf4\\x4c\\xd6\\x00\\x56\\x15\\xa3\\x9c\\x93\\x08\\x43\\x43\\x23\\xbd\\x0e\\x9c\\x17\\x49\\x77\\xc9\\x2f\\x45\\xe2\\x9a\\x51\\xf9\\x7d\\xd2\\x1f\\x84\\x8c\\xbd\\xde\\xe4\\x3b\\xf2\\x23\\x8a\\x68\\x21\\xdb\\x8c\\xb7\\x84\\x22\\x2f\\x02\\xfd\\xac\\x88\\x0f\\xfe\\x68\\xff\\x5a\\xcf\\x6f\\x20\\x14\\x68\\xe7\\x9f\\xa1\\x08\\xf2\\x5e\\x51\\x8a\\x50\\xae\\xf4\\x87\\x06\\xaf\\x75\\xf7\\x9e\\x59\\x5e\\xb2\\x67\\xfd\\x4a\\xd0\\xfd\\x28\\x5b\\x67\\xae\\x77\\x9f\\x21\\x5f\\x7e\\x7a\\x17\\xdd\\x78\\x4b\\xbd\\x6f\\x91\\x7c\\x10\\xc8\\xf8\\x68\\xef\\x3e\\x3b\\xbc\\xf8\\x26\\xbe\\xf0\\xa3\\xfb\\xc5\\x9a\\x34\\x1d\\x03\\x7a\\x25\\x9b\\xaf\\x51\\xd3\\x14\\xff\\x6e\\x17\\xee\\x3e\\x93\\x4e\\xaf\\x41\\x8d\\x2a\\x5a\\xe8\\x57\\x86\\x6c\\x0b\\x68\\xad\\x0b\\xbd\\x7a\\xbc\\xe8\\xd2\\xf9\\xe9\\xc3\\xf7\\x8e\\xd4\\xf7\\x7a\\x33\\x3c\\x5e\\x57\\xc5\\x7e\\x28\\x5f\\x48\\xeb\\x9b\\xea\\xd2\\x31\\xbd\\x13\\x31\\xba\\x4b\\x60\\x59\\xc8\\xc6\\x3c\\xb1\\xf7\\x98\\x2e\\x89\\x8b\\x7c\\x11\\x8d\\x77\\x56\\x9a\\xbf\\xb6\\xac\\x15\\x0f\\xff\\x8e\\xf8\\x66\\x1a\\x37\\x5e\\x68\\xb4\\xd2\\x50\\x2b\\x55\\xd6\\xbc\\xbc\\x78\\xeb\\xce\\x9a\\xf0\\x53\\x34\\x5d\\x24\\x62\\x4a\\xff\\x9d\\x33\\x63\\xe4\\x29\\x80\\xa3\\x95\\x53\\x3d\\xad\\x17\\xc0\\xac\\xd0\\x28\\x36\\x36\\xeb\\x17\\xc1\\xac\\xfb\\x91\\x03\\xd5\\x4b\\xd8\\x94\\x8a\\x1d\\x4f\\xa4\\x0f\\xd5\\x9b\\x0a\\xff\\x31\\x76\\xe3\\x2d\\x30\\x5d\\x4e\\xfd\\x15\\xf4\\xc4\\x63\\x22\\x20\\xe9\\x95\\x9c\\x7e\\xc6\\x2d\\x32\\x0b\\x7b\\x50\\xa6\\xbc\\x2a\\xac\\x8a\\xb8\\x1d\\xee\\x32\\x33\\xe0\\x12\\x5a\\xfe\\x1a\\x66\\xc9\\x93\\xbd\\x77\\xfd\\xc1\\xc3\\xb6\\xc9\\x9a\\xf5\\xa8\\xdc\\xd7\\x15\\x90\\x46\\x90\\x9f\\x66\\x9c\\x1b\\x3e\\xec\\x9b\\xa0\\x14\\xb0\\x4a\\x6a\\x3b\\x5c\\x7c\\xa6\\x87\\xbb\\xdf\\x36\\x6d\\x2f\\x30\\xc6\\xa2\\x29\\xb3\\x54\\x06\\x14\\x28\\x2e\\xaa\\x2d\\xda\\xdf\\x8c\\xa5\\x53\\xc4\\x3a\\x96\\xc5\\xa7\\x07\\x46\\xc7\\x04\\x8c\\x50\\x65\\x7b\\x87\\x7b\\xe0\\x4b\\x3b\\x52\\x93\\xd7\\x68\\x3e\\x70\\xf2\\x76\\x84\\xce\\xb5\\xca\\xeb\\xa8\\x65\\xf3\\x54\\x3b\\x5e\\x5e\\xac\\xa6\\x5e\\xa6\\xb5\\x36\\x1d\\xfe\\x25\\xb9\\x34\\xbc\\x8e\\x28\\x2f\\x35\\x2d\\xcd\\xe1\\x33\\x26\\x9b\\xd1\\xd0\\x62\\x5e\\x53\\xf7\\x1b\\xff\\xb8\\x00\\xed\\x55\\x3e\\xa1\\xa5\\xb6\\x6c\\xb5\\x49\\xf9\\x53\\xd1\\xf9\\xfa\\xb9\\x02\\xaf\\x9b\\x48\\x1c\\xc5\\xce\\x40\\xe2\\xe9\\xa2\\x05\\x6f\\x72\\x02\\xa6\\x83\\x09\\xe4\\x9c\\xd9\\x09\\x19\\xed\\x0d\\xaf\\x45\\x93\\xca\\x43\\x3f\\x9b\\x60\\xef\\x47\\x4c\\x31\\x14\\xb1\\xd0\\x50\\xd8\\xd9\\x7c\\x9d\\xc6\\xb0\\x13\\x53\\xb6\\x7f\\xf3\\x78\\x89\\x2c\\xa6\\x34\\x64\\xcd\\xdf\\xa1\\xbe\\xc7\\xd0\\x23\\x5a\\xe6\\x8e\\xd8\\x10\\x36\\x95\\x6e\\xa0\\xee\\x21\\x04\\x73\\xdd\\x4d\\xe7\\x9a\\xdd\\x3e\\xaf\\xaf\\xb7\\x95\\xd2\\x5e\\xa0\\x1b\\xf7\\xe8\\x4d\\x3a\\x9b\\xf6\\x1c\\xfd\\xd3\\x5a\\x5f\\x1e\\xee\\x76\\x38\\xda\\x81\\x68\\xc7\\x20\\x2c\\xcd\\xe1\\xe6\\x6a\\xa1\\x1f\\xb8\\x0b\\xde\\xf6\\xe6\\x69\\x96\\x9f\\xda\\x7b\\x46\\xd6\\x30\\xf7\\x57\\xcc\\xb1\\x7e\\x11\\xd5\\xbd\\x56\\xbf\\x54\\x2c\\xfb\\x84\\x6b\\x16\\x1c\\x85\\xbd\\xeb\\x14\\xbd\\x40\\xc9\\xd6\\x87\\xf0\\x31\\x2a\\x7d\\xa2\\x56\\xff\\xe8\\xc1\\xf3\\xdb\\xc6\\x35\\xca\\x3d\\xd1\\xa1\\x68\\x9a\\x41\\x5d\\x9f\\x21\\x1b\\xbc\\xe6\\x7b\\xf1\\xed\\xec\\xa3\\x1c\\xe4\\x39\\xee\\x75\\x8c\\xbe\\x6b\\x3c\\xc7\\x93\\xa0\\xbc\\xf4\\x6e\\xb5\\xd8\\x4e\\xbf\\xe9\\x8c\\x60\\xf6\\x84\\xa1\\x87\\xda\\x42\\x42\\x3b\\x66\\x4b\\x33\\x74\\x9a\\xdf\\xb9\\xb1\\x62\\x35\\x3f\\xec\\xd7\\xe2\\xcb\\x9b\\x3d\\xbb\\xf1\\x30\\x90\\xeb\\xd5\\xe3\\xff\\x42\\xb1\\x4b\\x9f\\xbe\\x0f\\x24\\x38\\x7e\\x15\\xf2\\xe0\\x53\\x20\\x08\\x55\\xc9\\x89\\x29\\x2c\\x85\\x60\\xe4\\x32\\xb4\\xec\\x77\\xf0\\xa3\\x9c\\x11\\xec\\x35\\xdc\\x82\\x7a\\x67\\x18\\x1d\\x45\\xfe\\xd6\\x74\\x5b\\x3f\\xbb\\xe0\\x7d\\xdd\\x19\\x2b\\x3e\\xbd\\x57\\x53\\xc4\\x66\\x22\\xb2\\x7f\\xcc\\x58\\xa9\\x9f\\x0f\\x53\\xd4\\xec\\x34\\xfa\\xf8\\xc8\\xcc\\xe5\\x72\\x1e\\xc5\\x56\\xdc\\xe2\\xf3\\xdf\\xb3\\x5c\\x46\\x8f\\x61\\x98\\x56\\x28\\x48\\x85\\x08\\xb6\\x5e\\x33\\x08\\xc6\\x08\\x5b\\x2b\\x32\\xce\\xad\\x0c\\x6b\\xff\\x46\\xae\\x93\\xd6\\x1f\\x68\\x6b\\xea\\xd0\\xba\\xc2\\xfc\\xa3\\x37\\xe3\\x9a\\x1d\\xef\\x27\\xf2\\xc1\\xf0\\xa1\\x6d\\x5e\\xb2\\x5d\\x07\\xff\\xf8\\x1a\\x90\\x0b\\xf7\\x52\\x0d\\xee\\xcf\\xba\\xd3\\xdb\\x7f\\x4d\\xc6\\xba\\x9c\\xbe\\x9d\\x7b\\x3a\\x69\\x2f\\xca\\xe9\\xaa\\x08\\xfb\\x0c\\xbd\\x67\\x69\\x4f\\xc4\\xeb\\xd0\\xdd\\x51\\xa3\\xe8\\x0d\\xc1\\x38\\xb7\\x25\\xf4\\xe4\\x6a\\xe5\\x1f\\x88\\x57\\x0f\\x52\\x9a\\x62\\xf8\\x63\\x8b\\xed\\xc8\\xa7\\x88\\xb7\\x88\\xf9\\xcf\\xca\\xb7\\x14\\xcf\\x74\\xb2\\xb0\\xc5\\x37\\x59\\xf4\\xa8\\xd9\\xcb\\x0f\\xfb\\x7d\\x3a\\x70\\xc1\\xdd\\x0c\\x66\\xe9\\xfe\\x57\\xb9\\x64\\x64\\x83\\xe4\\xed\\xaf\\x43\\x49\\xb7\\xee\\x04\\x8c\\xaf\\x6a\\x94\\x52\\x5d\\x5b\\xe6\\xf8\\x5a\\x43\\xb9\\x9d\\x57\\x27\\x52\\x05\\x7d\\xb8\\xde\\x9f\\x2f\\x9f\\x9e\\x3b\\x98\\x33\\x14\\x8d\\xa1\\xe4\\xd8\\xf1\\xd3\\x5c\\x72\\x0f\\xfa\\x8c\\xf5\\x3b\\xdc\\x29\\x85\\x47\\xea\\x0e\\x40\\xa8\\x61\\xfb\\x89\\x35\\x93\\xde\\x59\\x8c\\x0b\\xcc\\x20\\xfb\\x57\\x4b\\x0c\\x46\\xe3\\x85\\x2f\\xe2\\x29\\x52\\xd3\\x9e\\x6a\\xc4\\xb1\\xd6\\x21\\x05\\xdf\\x60\\xdf\\x2b\\xec\\x5f\\xca\\x98\\x0d\\x33\\xfc\\x13\\x3d\\x08\\x36\\xe8\\xc0\\x9f\\xf4\\x2d\\xec\\xf1\\x86\\xde\\x18\\xbb\\x6d\\xa9\\x3e\\x24\\x61\\x84\\x81\\x37\\x7d\\xc9\\x40\\xdd\\xfa\\x23\\xa8\\x19\\xfc\\x1b\\xcc\\x4f\\xce\\x7a\\xdc\\xba\\xa5\\x2d\\x22\\xee\\x58\\x5f\\xff\\x08\\x1b\\x1d\\xc6\\x26\\xc7\\x00\\xcd\\xc2\\x9c\\x6b\\xee\\xa5\\x6e\\xe8\\x06\\x6a\\xc6\\x02\\x79\\x30\\x60\\x14\\x56\\x8c\\x5a\\x11\\x03\\xa5\\x28\\x01\\x97\\xdb\\x99\\xc0\\x8b\\xae\\x15\\x12\\x0b\\x43\\x28\\xc7\\x0b\\xdf\\xc7\\x15\\xed\\x01\\x0c\\xdf\\xaa\\xd6\\xaf\\x6b\\x30\\xbc\\xf5\\x98\\x5f\\x02\\x92\\x4b\\xd9\\xdc\\x7f\\x62\\x55\\x46\\xfc\\xb4\\x7d\\xa1\\x4a\\x4a\\x41\\xd1\\x46\\x83\\x75\\x4f\\x08\\xf0\\x7e\\xa5\\x20\\x02\\x4b\\x95\\x81\\xaf\\x8f\\xce\\xba\\xd2\\xdb\\x3b\\xa4\\xd6\\x51\\x96\\x2e\\x28\\xa2\\x38\\x02\\xef\\x2a\\x25\\x03\\x39\\xd4\\xb4\\x5a\\x94\\x7d\\xdb\\x84\\x34\\x8a\\x81\\x2c\\x62\\xa6\\x3b\\x05\\x0c\\x23\\xf0\\xfc\\x34\\x6b\\x28\\x89\\x2d\\x08\\x61\\xb9\\x56\\x64\\xb9\\x51\\x0f\\x16\\xc5\\x95\\x79\\x6d\\xa2\\xcd\\xea\\x6c\\xa0\\x7d\\x2c\\x66\\xef\\xb3\\x50\\xef\\x13\\xf0\\x62\\x19\\x08\\x7f\\xba\\x5c\\x00\\x69\\x86\\xb9\\x72\\x43\\x9a\\xcf\\xc1\\x97\\x74\\xef\\xff\\xcd\\xf7\\xbd\\xdd\\x85\\xe4\\x5e\\xe5\\xcd\\x59\\x17\\x0e\\xed\\xa5\\x3b\\x60\\xd1\\x8b\\x70\\x71\\xcc\\x33\\xfc\\x35\\x93\\xa5\\x1c\\xf6\\xbe\\x39\\x94\\xb2\\xd2\\x7b\\x40\\x39\\x7e\\x3b\\xa2\\x24\\xa0\\x73\\xc6\\xad\\xe3\\xb4\\x41\\xce\\x95\\x82\\xc3\\x0a\\x72\\xe7\\x64\\x7d\\xfb\\xf9\\xe4\\xcf\\x7a\\xc6\\x2f\\xd5\\xfc\\xad\\x41\\x51\\xaf\\x42\\x61\\x7a\\xc1\\xb5\\x58\\xa3\\x94\\xce\\x27\\x69\\xfa\\xe7\\xa9\\xd1\\xea\\x5c\\x36\\x44\\x2f\\xd9\\x81\\xe0\\x48\\x37\\x03\\x55\\x45\\x06\\x28\\x23\\xb3\\xce\\x29\\x01\\x76\\xf1\\xee\\x1b\\x83\\xb7\\xdb\\x1d\\x0f\\x71\\x3d\\x6a\\xa0\\xdd\\xdc\\x53\\xdc\\xa2\\x45\\x70\\x53\\x79\\x8c\\x55\\x46\\x6f\\x57\\xfc\\xd5\\xfd\\xf1\\x3c\\x7b\\x9f\\xb1\\x72\\xd4\\x49\\x8a\\x74\\x72\\x17\\xee\\xe5\\x17\\xe0\\x91\\x93\\xc8\\x97\\x7f\\xca\\xfd\\xc4\\xdf\\x62\\xbc\\xdd\\xaa\\x49\\x7c\\x00\\x9f\\x55\\x8f\\x28\\xb9\\x8d\\x1f\\x35\\x74\\xad\\x52\\x2a\\xc0\\x55\\x1a\\x15\\xe4\\xa4\\x28\\x48\\x2f\\x3d\\x7a\\x8b\\xbb\\xb9\\xbb\\x95\\x5e\\xb3\\xdb\\xcd\\xfa\\xd7\\xf8\\x8b\\x9a\\x69\\xf3\\x16\\xb7\\xb6\\x84\\xa5\\x56\\xa8\\xa9\\x68\\xbc\\x5b\\x9f\\x38\\xf7\\xf2\\x16\\x16\\x1f\\x71\\xac\\xe9\\xab\\xaf\\xd2\\x44\\xab\\xd2\\x82\\x81\\xe2\\x88\\x2c\\xef\\x58\\xa9\\x9d\\x63\\xe7\\x64\\x4c\\x5a\\x11\\xcb\\x5a\\xcb\\xff\\x9f\\x46\\x63\\x16\\x79\\xc5\\xb1\\x49\\xb9\\x62\\x47\\xf6\\x5b\\xd1\\x9d\\x5e\\xfe\\xb1\\x64\\xc0\\x08\\xaa\\x2c\\x9f\\x29\\x9d\\x42\\xb5\\xe4\\x48\\xcf\\x36\\x2a\\xcb\\xd5\\xe6\\xc0\\xd5\\x6f\\xee\\x85\\xdb\\x20\\x90\\x8d\\x11\\x03\\xc6\\xac\\x69\\xa9\\x72\\x4f\\xde\\x84\\x24\\x8b\\xfe\\x15\\xe2\\x6e\\x7b\\xc6\\x59\\x1f\\x63\\x99\\xac\\x60\\x31\\x62\\x9f\\x97\\x01\\xb1\\x03\\x5e\\x1c\\x1e\\x4c\\x80\\x28\\x25\\x22\\x68\\xc7\\xe7\\x0a\\xe9\\x80\\x6b\\x6e\\x77\\x36\\xb2\\x70\\x85\\x81\\xcd\\x5b\\xa4\\x97\\x13\\x71\\xfa\\xb9\\xbb\\x02\\xdb\\x89\\xb1\\x65\\xb6\\x6d\\x13\\x8b\\x72\\x00\\xd3\\x80\\xab\\x37\\x7e\\x7a\\x07\\x24\\xa4\\x2f\\x80\\xbd\\x1c\\x06\\x79\\x85\\x0c\\xf2\\xd7\\xdf\\xd3\\x0b\\xbe\\x61\\x43\\xf9\\x62\\x06\\x7d\\xab\\x85\\xf5\\x52\\xbd\\xaf\\xda\\xd6\\xf8\\x2d\\x0d\\xba\\x61\\xe5\\x8e\\xfa\\xb9\\xe1\\x3e\\x36\\x62\\xf5\\x0c\\x99\\xf2\\xe6\\x52\\x74\\xb6\\x4e\\x79\\xa4\\x60\\x4a\\xaf\\x6b\\x16\\xad\\x4c\\xbb\\x62\\x61\\x32\\x29\\x36\\x48\\x35\\xc9\\xc4\\x83\\x8b\\xf0\\xe9\\x7b\\xf6\\xfc\\xbc\\xbb\\xd1\\x86\\xe8\\xbd\\xf9\\xb5\\xaa\\x27\\xa3\\xc3\\x97\\xab\\xd9\\x79\\xb2\\xb5\\x5b\\x2d\\xf8\\x30\\xf0\\xf4\\x0f\\xfe\\xf9\\x73\\x5d\\x28\\x35\\x36\\x42\\xb4\\x4b\\x74\\xb8\\x54\\x0a\\x48\\x3d\\x8a\\xf2\\x82\\xef\\xb2\\x2a\\x87\\x97\\xd9\\xd3\\x14\\x37\\x68\\xd5\\xba\\x8f\\xe4\\xf1\\x73\\xaf\\xcc\\x34\\xab\\x54\\x06\\xa8\\x92\\x4a\\xf0\\x5e\\x45\\x19\\x51\\xb8\\xf4\\x85\\x8d\\x6c\\x22\\x7a\\xa2\\x77\\x2f\\xb5\\x57\\x0e\\xfb\\x01\\xf2\\x4d\\x18\\x29\\x3d\\x98\\x68\\x05\\x29\\xdf\\x6f\\x32\\x46\\xf4\\x71\\x08\\x1f\\x0a\\x3f\\x37\\x6b\\xb2\\x6c\\x2d\\x1f\\x35\\xe8\\x2c\\x78\\xaf\\x6b\\x48\\x78\\x08\\xa2\\xd5\\x39\\x08\\x26\\x4d\\x34\\xfc\\xb9\\x8e\\x1c\\x77\\x7a\\x4f\\x7b\\xf0\\xce\\x62\\x16\\x90\\x3c\\xe3\\x94\\x9c\\xab\\x05\\x3e\\x78\\x77\\xd1\\xe3\\xdc\\xd3\\x68\\x01\\xa8\\x62\\x1c\\x41\\xf5\\xe9\\xa7\\x1f\\x3e\\x63\\x8e\\x3d\\x03\\xb7\\xb0\\x8e\\x36\\x66\\xa7\\xa3\\xf1\\x57\\x47\\x69\\x32\\x78\\xcf\\x50\\x7e\\x47\\xaf\\x09\\xa4\\xdb\\x53\\xbb\\xb0\\x94\\xc0\\xf7\\x9e\\x67\\xa2\\xf0\\x52\\x67\\x7e\\x3d\\xb8\\xae\\x31\\x73\\x69\\xa0\\xa6\\x7f\\xfe\\x88\\x6c\\xad\\x04\\x91\\x24\\xa4\\x93\\x81\\x00\\xe6\\x6f\\x81\\x41\\xac\\x3c\\x51\\x81\\x65\\x9a\\xd7\\x8b\\xe4\\xd7\\xac\\x83\\x68\\xa8\\x05\\x9d\\x14\\xe3\\xa0\\xf7\\x8b\\x6e\\x26\\xfd\\xb0\\x2f\\x1c\\xe4\\xda\\xf0\\x0d\\xe6\\x36\\x1d\\x87\\x43\\x91\\xce\\xf1\\xc4\\xcb\\xb3\\xb8\\xca\\x5a\\xff\\x8c\\x3d\\x3b\\x56\\x82\\x23\\xf1\\x7f\\x25\\x18\\xd4\\xbe\\x9f\\x5e\\xd1\\xf0\\x69\\x92\\x1a\\x68\\x56\\xc8\\xc5\\x40\\xc7\\xa8\\x88\\xd2\\x74\\xdd\\xf2\\xad\\x50\\xa2\\x1c\\xaa\\x03\\xb0\\x49\\x55\\x3a\\x0c\\x4f\\xa3\\x4d\\xbe\\x5c\\xa1\\x77\\xb9\\x94\\xcb\\x7b\\xeb\\x2c\\x77\\x83\\x77\\xb2\\x1c\\xc5\\xea\\xcd\\x3e\\x88\\xcb\\xfb\\x6d\\x87\\x70\\xf6\\x15\\x41\\x18\\x3f\\x48\\x5d\\x01\\x12\\xa0\\x7c\\x60\\xf0\\xac\\x40\\x7b\\xa5\\xef\\x17\\x64\\xc7\\x02\\xca\\x48\\x89\\xa8\\x8c\\x66\\x30\\x81\\x77\\x37\\xb4\\xe3\\x02\\xb4\\xdf\\x71\\x79\\x02\\xe9\\x62\\xf1\\xc8\\xe6\\x52\\x22\\x48\\xe9\\x3d\\x7c\\xad\\x86\\x4a\\xbf\\x8b\\x34\\xb2\\x94\\xe2\\x06\\xfd\\x59\\x9a\\x20\\x37\\x81\\x71\\x1b\\x45\\x71\\x2a\\x5e\\x9f\\x7c\\xa6\\x76\\x94\\x74\\x22\\xcd\\x07\\xa6\\xce\\xe4\\x01\\x5f\\xc8\\x14\\x5f\\xfc\\x78\\xe6\\xea\\x9f\\x49\\xfe\\x04\\x4b\\xa9\\xf7\\x24\\xdd\\x58\\xfb\\xc8\\xa4\\xe9\\xd8\\xbc\\x2f\\x13\\x4e\\xa9\\x08\\x3e\\x16\\xcd\\xc4\\x33\\x4d\\x31\\xe2\\x2c\\xde\\x5a\\x45\\x08\\x37\\x9b\\x51\\x0f\\xec\\x6c\\x55\\xf4\\x74\\xc1\\x75\\xe8\\x2d\\xc3\\x4d\\x5f\\x2a\\x8e\\xc8\\xd9\\x2e\\x3c\\x38\\x2b\\xe6\\x74\\x04\\x3a\\xc9\\x70\\x13\\xa0\\xb0\\x9d\\xa9\\x74\\x5d\\xbe\\x4e\\x0d\\xc2\\x18\\xc7\\x06\\x37\\x70\\xfb\\x30\\xbd\\x7c\\x3b\\xd8\\x18\\xa7\\x13\\x65\\x49\\xd2\\x40\\x0e\\x22\\x2d\\x15\\xbc\\x57\\x7a\\xd2\\x7e\\x1c\\xff\\x1b\\x29\\x0e\\xc6\\xc5\\x2f\\x3e\\xf7\\x2f\\x96\\x5f\\x85\\x53\\x8d\\x0f\\xfe\\x1d\\xc0\\xac\\x77\\xcd\\x5c\\x2a\\xc7\\xbe\\x8b\\xe7\\x4e\\x28\\xfb\\x23\\x38\\x75\\xc2\\x4d\\xff\\x6a\\xcf\\x93\\xf0\\x2d\\x5a\\x53\\x83\\x52\\x50\\xfd\\x0d\\x61\\x58\\x28\\x95\\x30\\xd2\\x58\\x79\\xc7\\xbb\\x47\\xc3\\x89\\x2e\\xc5\\xf5\\x0e\\x77\\xd6\\x94\\xd5\\xd1\\xe6\\x4d\\xea\\x94\\x55\\x28\\x56\\xb2\\xcb\\x37\\xa2\\x30\\x25\\xbd\\x4b\\xc8\\x09\\xad\\xed\\x61\\xc5\\x96\\x5f\\x18\\xaf\\x59\\xb0\\xdc\\x17\\xfa\\x30\\x8a\\x33\\xdc\\xc3\\x0a\\xbc\\xf7\\x56\\x64\\x4c\\xb9\\xec\\x7f\\x5a\\xc6\\x59\\xa3\\x7c\\x5d\\x45\\xe1\\x20\\x2a\\x90\\xbc\\x90\\x11\\x9a\\xa6\\xd6\\xe2\\x6e\\xcc\\x21\\x95\\x01\\x5e\\x21\\x05\\x77\\x93\\xd0\\x5c\\x7a\\xfa\\xd3\\x91\\xa6\\x9b\\xea\\x82\\x9b\\x09\\x3c\\x85\\x24\\x46\\x30\\x37\\xec\\x76\\x8a\\xbe\\xff\\xfe\\x94\\xd8\\xfc\\x6b\\x1a\\x25\\x8d\\x9f\\xc9\\xad\\x2a\\xde\\x9a\\xe4\\xac\\xdb\\xf5\\x20\\x82\\x12\\x78\\x21\\x54\\x7d\\xb6\\x1c\\xc2\\x85\\x88\\x2c\\xf9\\xe4\\x7a\\xb6\\xe9\\x71\\xe0\\x91\\xc1\\xd5\\x82\\x3d\\x43\\x65\\x8c\\xbc\\x17\\xf0\\xa6\\x22\\xda\\xf2\\xa7\\x5c\\x11\\xa4\\x2c\\xc6\\x37\\x75\\x01\\xbd\\x78\\x0d\\x7b\\x2b\\x46\\x82\\xb4\\x26\\xd3\\x21\\xa9\\xc8\\x57\\xe0\\x2b\\x68\\xfb\\x15\\xc9\\x67\\x30\\xbf\\x6d\\x80\\xac\\x7e\\x70\\x4b\\x60\\x1c\\x1e\\x7d\\x1e\\xd2\\x8b\\xfc\\x8f\\x83\\x23\\xa2\\x6d\\x75\\x56\\x6d\\xde\\x64\\xc3\\xfc\\xd6\\x27\\xe0\\x07\\x21\\x60\\xbf\\xd9\\x08\\xdb\\xaf\\xfb\\x7c\\xd2\\x95\\x76\\x87\\x59\\x37\\xf7\\x7e\\xec\\x9f\\x84\\x9c\\xda\\xb4\\xac\\xba\\xa1\\x4e\\xdf\\x05\\x3c\\x15\\xe5\\x73\\xdc\\x88\\x0e\\xbc\\xa9\\x26\\xed\\x84\\x53\\x72\\x87\\x42\\x30\\x1f\\x05\\x50\\x95\\x73\\xf7\\x6d\\x7d\\x35\\xba\\x79\\x24\\xa6\\xb4\\x6d\\x35\\x90\\x76\\xc1\\x15\\xed\\xef\\x3b\\xc9\\x30\\xd4\\x37\\xf4\\x99\\xdf\\x4f\\x27\\xbe\\x18\\xbc\\xbc\\xfd\\xcf\\xbf\\xd5\\xa4\\x88\\x95\\xbf\\xb8\\x67\\x29\\xca\\x5a\\x80\\x1e\\x7f\\x23\\x4a\\xd3\\xab\\x95\\xde\\x79\\xff\\x1d\\x52\\xdd\\x01\\xcc\\xb2\\xad\\x90\\xf2\\xf1\\x32\\x26\\x9b\\x8f\\x52\\x47\\x49\\xb5\\x83\\x9c\\xd6\\xc1\\x26\\x40\\x93\\x6c\\x76\\x62\\x04\\x54\\x89\\xe7\\x0e\\xf2\\xa2\\x2b\\xff\\xee\\xf3\\x10\\x46\\x26\\xda\\x14\\x43\\x6e\\x8e\\x57\\x74\\x0d\\xa6\\xd0\\x8f\\x88\\x0c\\xec\\xaf\\x7f\\x54\\xc5\\x7d\\xd0\\x26\\xf9\\x36\\x94\\x46\\x98\\x67\\x3a\\x22\\xe5\\x86\\x62\\x09\\x4c\\xf0\\xa7\\xd6\\x57\\xc4\\xc1\\xd8\\x96\\x6b\\xb5\\x80\\x58\\xa3\\x3c\\x32\\x56\\xc9\\x7d\\xd2\\x0f\\x34\\x4b\\x26\\x23\\xd7\\xe2\\x60\\x98\\xd8\\xcf\\xf8\\xc1\\x4a\\x84\\x75\\x79\\x01\\x02\\x25\\x12\\x8d\\x9b\\x9a\\x28\\xfc\\x1e\\x69\\x02\\x1e\\x71\\x47\\x3f\\x59\\xb9\\x9e\\xcf\\xfe\\xa5\\x6a\\x16\\xc0\\xe8\\x19\\x2c\\xcb\\xdf\\x00\\x93\\x89\\x27\\xd5\\x35\\x6e\\xa0\\xeb\\x96\\x27\\x30\\xad\\xee\\x86\\x18\\x1e\\xe4\\xd9\\x5f\\x6a\\xfb\\xc1\\x8f\\x40\\x3f\\xec\\x7a\\x9e\\x95\\xeb\\x20\\x51\\xeb\\x3d\\xa4\\x25\\x6d\\x22\\x57\\xca\\x09\\x05\\xd8\\xe6\\x1c\\x35\\xd8\\xb9\\x08\\x6a\\x90\\x83\\x4a\\xcb\\x76\\xb8\\x1f\\x54\\x5e\\xd9\\xca\\x1f\\xd4\\x93\\x07\\x82\\x73\\x32\\x0b\\x8a\\x1a\\xd9\\xf6\\xfb\\x94\\x79\\xbb\\x7a\\xb4\\x15\\xb4\\xb6\\x34\\xd2\\x99\\xeb\\x2b\\x2c\\xc5\\x4f\\x1f\\xcb\\x03\\xfb\\xbe\\x4a\\xd7\\xd4\\x10\\x26\\x69\\x73\\x39\\x9c\\xac\\x86\\xcb\\x4e\\x42\\xee\\x31\\x15\\x6a\\x47\\x71\\x2d\\xba\\xfc\\x5c\\x40\\xe3\\x17\\x59\\xdc\\x9c\\xfc\\xad\\x15\\x23\\x9e\\x8c\\x1b\\xbf\\xd9\\xa8\\x83\\xcf\\x07\\xb2\\x55\\xd7\\x5b\\xb0\\x97\\xb3\\xd2\\x57\\x9d\\x6f\\x56\\x3c\\xbe\\xac\\x9f\\x36\\xaa\\x1a\\x6b\\xb2\\xc1\\x1e\\x4f\\x71\\x47\\x79\\xdb\\x26\\xa6\\x13\\x5e\\xef\\x7d\\x8a\\x52\\x46\\xe8\\x39\\x2c\\x17\\x78\\x9a\\x46\\xb5\\xf4\\x66\\xfb\\x6a\\xe0\\x97\\xe2\\x2f\\x07\\x80\\xfe\\x7b\\x0b\\xa4\\x5f\\x02\\x0f\\x30\\x8c\\xd6\\xf5\\x93\\xc1\\xa6\\x7b\\xb0\\x46\\x2d\\x6b\\x99\\xd1\\x6a\\xc6\\x59\\x3a\\xa8\\x98\\x58\\x7e\\x68\\xcf\\x9a\\x62\\x2f\\x1c\\x65\\xc1\\xa2\\x26\\x2f\\xea\\x6d\\xbd\\xc4\\x03\\xda\\x80\\xef\\x6e\\x84\\x6f\\xb0\\x67\\x25\\xb1\\xb6\\xae\\xfd\\xa0\\x5d\\x1b\\xd2\\x90\\xd4\\xc8\\x1b\\x78\\xc0\\x77\\x21\\x42\\x2f\\xf6\\xb3\\xaa\\xd8\\x0b\\x26\\x1b\\xa3\\xab\\x0b\\x6e\\xc8\\xfd\\x1f\\x14\\xbf\\x96\\xac\\x54\\x92\\xef\\x4f\\xae\\x5c\\xb7\\x1e\\xf8\\x97\\xd8\\xa4\\x6b\\x3d\\xf9\\xb7\\x0f\\x91\\x5d\\x61\\x9f\\x06\\xdc\\x19\\x01\\x0a\\x9f\\x06\\x5c\\xc6\\x83\\x3a\\x75\\xf2\\x01\\x49\\x30\\x3f\\xa4\\x30\\x18\\x87\\xde\\x63\\x3f\\x14\\x01\\xc8\\x1b\\xfd\\xf1\\x1b\\x86\\x36\\x20\\xd5\\x40\\x2c\\xf8\\x17\\x7e\\xb9\\xe0\\x55\\xad\\x64\\xe4\\xcd\\x35\\xc0\\x5f\\x2c\\x6c\\x5f\\xc0\\x33\\x81\\x7f\\xab\\xed\\x1f\\x36\\xe1\\x6d\\xa4\\x06\\xc6\\x45\\xbc\\x50\\x63\\xd3\\xe6\\xd4\\x4a\\x18\\xa0\\x71\\x0b\\xfb\\xfd\\x06\\x21\\x72\\xb5\\xca\\xe0\\xe4\\x8b\\x65\\x72\\x06\\x3e\\x4f\\x5e\\x3c\\x6a\\x5b\\x73\\x98\\x6b\\x09\\xd5\\x77\\x42\\xf3\\x92\\x71\\xfe\\x9e\\x09\\xe8\\xc7\\x26\\xd7\\xc8\\xe9\\x61\\xac\\x0d\\x62\\x93\\xef\\x9a\\xde\\xaa\\x54\\xaf\\x7d\\xd1\\x83\\x80\\x91\\x88\\xec\\x85\\x1e\\x12\\x0f\\xd3\\x66\\x16\\xcd\\x4e\\x4d\\x08\\x9e\\xb6\\xde\\x0f\\xb2\\x5b\\xf1\\x50\\xd1\\x99\\x35\\xad\\x75\\xab\\xfe\\x84\\x63\\xa4\\xab\\xa6\\x96\\xbd\\x4f\\x5e\\x4c\\x79\\x5b\\xb7\\xeb\\x72\\x14\\x24\\xbc\\x84\\x8c\\xc9\\xdc\\x3f\\x9f\\x5f\\xe6\\xf4\\xce\\x22\\xe8\\x75\\x7b\\xf8\\xb8\\xbf\\x2f\\xd5\\x69\\x72\\x88\\x26\\xd0\\x77\\x3e\\x2d\\x7e\\x42\\x78\\xcf\\xf8\\xa2\\x34\\xa1\\x04\\xe5\\xa6\\xe1\\x50\\x7e\\x6e\\x4f\\xb1\\x68\\x7f\\x35\\x02\\xf9\\x63\\xf3\\x8d\\x7d\\xca\\x80\\xd4\\x1d\\xb2\\x23\\x9a\\xdb\\xf7\\x37\\xaa\\xcf\\x7a\\x3f\\xec\\x95\\xd6\\x51\\xb7\\x7d\\x9c\\xbf\\x9f\\x49\\x0c\\x3a\\x3c\\x42\\x78\\x7a\\xf2\\xac\\x3a\\x98\\xef\\x5b\\x61\\xd1\\x5d\\x8b\\x27\\x32\\xd4\\xcc\\x70\\x58\\xad\\x73\\xbc\\xa7\\xbf\\x03\\xbf\\xab\\x51\\xe6\\x15\\xf1\\x33\\x7b\\x48\\xb6\\x99\\xe5\\xbf\\xe9\\x5d\\x0e\\xc0\\x04\\xaf\\x4a\\x1b\\xf6\\xf1\\xb6\\xab\\x31\\x5e\\xdb\\x50\\xff\\x62\\x93\\x4f\\x32\\x85\\xb8\\xed\\x74\\xa8\\x7a\\xb5\\xdd\\x6b\\x7c\\xde\\xb8\\x12\\xe7\\xff\\x20\\xe0\\x5b\\x9c\\x6e\\xf5\\xb7\\xdc\\x6c\\x55\\xec\\xed\\xcb\\x1d\\xeb\\xb4\\xe8\\xfc\\x70\\x6e\\xd2\\x65\\x5f\\xd3\\x6c\\x7e\\xfa\\xdd\\x4f\\xaf\\xd5\\xad\\x3c\\xf3\\xfd\\xb7\\xf3\\x99\\xb9\\x7d\\xa6\\xf9\\xdb\\xc2\\xf7\\x46\\xb8\\x7b\\x2d\\x77\\x84\\xff\\x03\\x95\\x17\\xe8\\xff\\x67\\x30\\x77\\xc3\\xa4\\x77\\x88\\x0b\\x1e\\x75\\x63\\x06\\xbe\\xbb\\x93\\x55\\x5f\\x4d\\x86\\xcd\\x9c\\xe0\\x4a\\x07\\xa6\\xa1\\xed\\xc8\\x51\\xaf\\xe7\\x56\\xc8\\x5f\\xe9\\xec\\x50\\x01\\x6e\\x80\\xcb\\xa7\\xc4\\xbb\\x95\\xea\\x35\\x75\\x54\\x83\\xad\\x97\\x45\\x30\\x3b\\x56\\x5a\\xbd\\xc9\\x91\\xf7\\x79\\xdb\\x79\\xc6\\x8f\\xc0\\xd2\\xbf\\x96\\xab\\x88\\x5d\\xa1\\xd2\\xd2\\xb2\\xbc\\x9e\\x10\\x9e\\xa7\\xf8\\x30\\x30\\x17\\x8b\\x95\\xa1\\x05\\xeb\\xfc\\x2a\\xc9\\xc6\\x45\\xbd\\x86\\x35\\x0a\\x13\\x4b\\x87\\x95\\xbb\\x95\\xed\\xea\\x85\\xce\\x84\\x9c\\x60\\x5a\\x83\\xb1\\x54\\xf0\\x44\\xf7\\x87\\xbf\\x89\\x72\\xa1\\x52\\xb8\\x45\\xad\\x72\\x03\\xc1\\x9f\\x3e\\xcf\\xbf\\xe4\\x3f\\xd1\\xeb\\x6a\\x2c\\x7c\\x2f\\x9b\\x97\\x08\\xfd\\xf9\\x62\\x6b\\xb9\\x0c\\x30\\x6f\\x04\\x7b\\x8e\\xfc\\xab\\x9a\\x6b\\x59\\x08\\x2a\\x57\\x5b\\xaa\\x87\\xfd\\xf7\\x71\\xfc\\x12\\xf8\\xe7\\xfc\\x8b\\x1b\\x09\\xe8\\xc0\\x91\\xa0\\x9e\\xdb\\x35\\x59\\xae\\x9c\\x9d\\x91\\xce\\x2b\\xe8\\xe1\\xbb\\x66\\x0a\\x2c\\x7b\\x71\\x71\\xde\\xde\\x9d\\x66\\x24\\x41\\xaf\\x6c\\x6d\\xb1\\x93\\x09\\x59\\xfc\\x3f\\x22\\xea\\x35\\x40\\x11\\x70\\x57\\xe2\\xbf\\x21\\xc3\\x5a\\xe4\\x41\\x9e\\x9c\\x16\\x8d\\x60\\xfc\\x9c\\x44\\x33\\xa7\\xc4\\x34\\xa3\\xb8\\x4d\\xdb\\xa0\\x32\\x23\\xbb\\x86\\x5a\\x16\\xf6\\x1d\\x6c\\x6a\\xe6\\xd4\\x10\\x83\\x1a\\x34\\xbe\\xf0\\xc0\\x63\\xde\\x48\\xea\\x9f\\xfd\\xd1\\x2e\\x4c\\x6d\\x6e\\x2f\\xa9\\x69\\x6c\\x81\\xaf\\x62\\x35\\xa4\\x24\\x66\\xf1\\x7f\\x0d\\xf9\\xda\\x46\\x06\\x3b\\x78\\x7a\\xf0\\x07\\x77\\xf9\\x67\\x9e\\x70\\xac\\x9c\\xd4\\xa7\\x62\\xed\\x6a\\xb3\\x6f\\x3b\\xee\\xa1\\x79\\x55\\xd0\\x6f\\x09\\x7d\\xef\\x31\\xdf\\x18\\x3e\\x1d\\x0a\\x7d\\x4f\\x71\\xbb\\xe2\\x14\\x7d\\x37\\x7b\\x4c\\xa2\\x30\\x2e\\xbf\\xd5\\xa2\\x6a\\xe6\\xf8\\xbf\\xc4\\x2e\\x83\\x5b\\x04\\xb1\\x90\\xae\\xf0\\xeb\\xa5\\x8e\\x4d\\xa3\\x18\\x6e\\xf0\\x13\\x79\\x5d\\xb7\\x0b\\x38\\x7f\\x7a\\x73\\xeb\\x9f\\xd1\\xf6\\x2c\\x64\\xf7\\x98\\x88\\x1c\\x86\\x30\\x3e\\xca\\x04\\xdb\\x6f\\x3e\\x6a\\x9e\\x8f\\x3c\\xaf\\x47\\x11\\x1c\\x39\\x7b\\x3d\\x1f\\xce\\x13\\xb4\\xa4\\x0a\\xac\\x0c\\x09\\x04\\x6f\\xeb\\x14\\x5e\\x5b\\xbe\\xf7\\x34\\xa9\\xc4\\xda\\xd0\\x06\\x3d\\xe1\\xf1\\x69\\xf7\\x15\\xac\\x8c\\x56\\x19\\x8e\\x38\\x0e\\x82\\x38\\xf3\\xf9\\x84\\xd7\\x1b\\x37\\xf6\\x80\\x53\\x73\\x5c\\xe4\\xd3\\x9e\\xb8\\xe3\\xf0\\x29\\xd0\\xfa\\x8d\\x4e\\xe4\\x0e\\x33\\x88\\x3d\\xbb\\xba\\xef\\x86\\xef\\xf9\\x48\\x2f\\xc3\\xdd\\xad\\xeb\\xb8\\xdb\\xfb\\x02\\x02\\x57\\xbe\\xde\\xc6\\xdd\\x4b\\x3b\\xfa\\x35\\xf2\\x4f\\xad\\x56\\x3f\\xd9\\xd7\\xa0\\xbe\\x4a\\x9b\\x6e\\xbf\\x1e\\xa3\\x61\\x9e\\x4f\\xbe\\xef\\x5b\\xbd\\xbf\\xa7\\xec\\x39\\x97\\x6f\\x59\\xb7\\x5b\\xb6\\x1b\\xb6\\xbd\\x52\\x73\\x3d\\xaf\\xf1\\x9f\\xae\\x5a\\x3d\\xfd\\x09\\x9e\\x73\\xba\\xdf\\x71\\xfc\\xfa\\x08\\x76\\x3c\\x6a\\x0f\\x60\\xac\\x5e\\xf6\\xdd\\xa0\\x7a\\xb7\\xa6\\x7f\\xe4\\x74\\xff\\x7a\\x0f\\xc6\\xf0\\x8e\\x83\\x7a\\x76\\xa3\\x10\\xe1\\xc7\\x26\\xbb\\xfe\\xe3\\x6b\\xa1\\x4f\\x32\\x93\\xaa\\x47\\x72\\x3e\\xe6\\x62\\x1b\\xec\\xd8\\x2c\\x10\\x77\\x78\\x4b\\x0b\\xbe\\x18\\x3d\\xa5\\x30\\x06\\xde\\x79\\x79\\xc1\\x6e\\xcd\\xf8\\x97\\x6f\\x41\\x13\\x92\\x97\\x50\\xbf\\xed\\x04\\xc5\\x47\\xce\\x1a\\xdc\\xb3\\x2b\\xa3\\x6c\\x70\\x1d\\x23\\x1b\\xde\\x59\\x78\\xe5\\xb1\\xd6\\xd8\\x8d\\x60\\xcc\\x73\\x6c\\xaf\\x27\\xc4\\xc3\\xa3\\x0a\\x7e\\x0b\\x30\\xab\\x0b\\x24\\x6b\\xea\\xae\\xae\\x66\\x04\\xe2\\xf3\\xba\\x7d\\x78\\xdc\\x12\\x7e\\x01\\xbf\\xb6\\x72\\xdd\\x63\\xc6\\xc7\\x71\\xd8\\x49\\x48\\xf7\\xfd\\x01\\x67\\xcb\\x10\\x8e\\x00\\x00\\x00\\x0c\\x00\\x00\\x80\\x03\\x84\\x53\\x36\\xc3\\x28\\xf4\\x91\\xf8\\x1e\\x01\\xf0\\x3f\\x00\\xff\\x7d\\xa0\\x1b\\x14\\x86\\xff\\xfe\\x73\\x41\\x8d\\xda\\x1f\\x50\\x9f\\x8b\\x30\\xe9\\x3f\\x9c\\x01\\x00\\x00\\x2c\\x00\\xfc\\x7f\\xb6\\x01\\x1e\\x60\\xc6\\x06\\x26\\x06\\x3b\\x52\\x6f\\xde\\xc9\\x81\\x81\\xce\\x4b\\x84\\x4b\\x84\\xe2\\x17\\xac\\x81\\x24\\x54\\x01\\xa1\\x60\\x80\\xe4\\x6c\\xa8\\x5b\\x0f\\xb0\\xe4\\x25\\x08\\x07\\x93\\x53\\x1c\\xe8\\x9d\\x79\\xe5\\xb1\\x66\\x5b\\x6f\\xe4\\x68\\xdb\\x07\\x8f\\xf4\\xc5\\x95\\xc4\\x4e\\x63\\x7d\\x06\\x98\\x74\\x83\\xcb\\xcd\\xe8\\x4d\\xec\\x50\\x6b\\xd2\\xb6\\x16\\xdb\\xcc\\x76\\xc5\\xe2\\x9e\\x8e\\x45\\xd7\\x0a\\x8a\\xf2\\xd3\\x8a\\xd2\\x2d\\x42\\xdf\\x8f\\x67\\xf7\\x8e\\x3c\\xfe\\xd3\\xb7\\xd1\\x38\\x4d\\x2a\\xc9\\x86\\x54\\x81\\x24\\xdc\\x77\\x7a\\x59\\xac\\x42\\xfd\\x89\\xa3\\x9a\\x6b\\x57\\xb2\\xed\\xa4\\xde\\xe5\\x6f\\x4e\\xce\\x5b\\x4f\\x06\\x43\\x86\\x79\\x8f\\x38\\x99\\x25\\x87\\xbf\\xeb\\x70\\x6b\\xde\\xdd\\x33\\x1c\\x82\\x8b\\x02\\xe3\\xb0\\x0a\\xf7\\x54\\xc6\\x6d\\x01\\xfb\\x49\\xce\\x48\\x3f\\x99\\x5b\\xd3\\x64\\x9c\\xe8\\x0e\\xb8\\x66\\x1c\\x68\\x17\\xab\\x0e\\x94\\x8e\\xfe\\xcc\\x50\\x94\\x28\\xf7\\x9b\\x34\\x24\\x31\\x27\\xb8\\x02\\xfd\\x55\\xbe\\xe4\\x78\\x08\\x4f\\x35\\xd6\\x90\\x46\\xbd\\xcb\\x0b\\x33\\xe0\\x5a\\x3a\\x87\\x79\\x0f\\xed\\x9c\\x9a\\xee\\xc8\\x15\\x24\\xbc\\x11\\xb9\\x5b\\x1c\\xc1\\xb7\\x27\\x4c\\x8c\\x09\\x55\\xb3\\x4c\\x89\\x87\\xaa\\x8c\\xc0\\x9b\\x7b\\x58\\xb7\\x7c\\x3d\\x24\\xd5\\x33\\x12\\xfd\\x93\\x5a\\xeb\\x52\\x4c\\xbb\\x96\\x35\\x4a\\xe9\\x12\\xaf\\x53\\xd4\\x47\\xdd\\x47\\x19\\xef\\x1d\\xa2\\xcd\\x35\\xf2\\x7d\\x6b\\xf1\\xfa\\x3d\\xae\\x96\\xfc\\x23\\x18\\x2d\\xbf\\xb3\\xdd\\x6a\\x0e\\xd9\\x87\\xbf\\x84\\x98\\x09\\x77\\x82\\x9b\\x6e\\x09\\xce\\xd2\\x27\\x0d\\x81\\xb3\\x99\\x74\\xe7\\xf7\\x35\\xe7\\xf4\\x4d\\x77\\x9a\\x66\\xf3\\x03\\x4c\\x5a\\xe5\\x85\\x91\\x9a\\x0f\\xce\\x55\\xc7\\x26\\xf4\\x51\\x2b\\x72\\x50\\xe6\\xdc\\x63\\xd4\\x04\\xcf\\xd9\\x46\\x61\\xf7\\x92\\x57\\x25\\xe3\\x2f\\x0c\\x5f\\x15\\xbe\\x05\\x3b\\x03\\xfe\\xbd\\xbf\\x1d\\x76\\xfd\\x53\\x26\\xf0\\xef\\x9c\\x34\\xa9\\x04\\x2f\\x72\\x7c\\x17\\x3e\\xce\\x4d\\x1d\\xb3\\xdc\\x05\\xd5\\x58\\x22\\x32\\x57\\x26\\x70\\x28\\x1a\\x42\\xa0\\x74\\x44\\x81\\x63\\x36\\xf9\\x41\\x31\\x17\\xa5\\xe9\\x14\\x61\\x7f\\x46\\x0e\\xf1\\x22\\xae\\x75\\xa7\\x60\\xaf\\xcc\\xd1\\xe1\\xd3\\x86\\xb2\\x11\\x0a\\x08\\x09\\xf7\\x71\\xb6\\x86\\x5c\\xa3\\xcd\\xed\\xd3\\x40\\xbc\\xed\\x7c\\x6f\\xe2\\x0f\\x47\\x44\\x23\\x2f\\x2a\\x54\\xc5\\x61\\x83\\x55\\xc6\\xac\\xc6\\xed\\x61\\x9f\\x6c\\x2c\\x11\\xcb\\x0d\\xd9\\x10\\xcc\\x02\\x69\\xd9\\x78\\x3f\\x26\\x56\\x87\\x95\\x68\\xda\\xc3\\xe4\\x11\\x8a\\xc3\\x20\\x98\\x5b\\x30\\x96\\xe7\\x5e\\xe1\\x35\\xa7\\xc2\\xdb\\x52\\xdc\\x1d\\x02\\x9c\\x8e\\xc4\\xbf\\x95\\x37\\x06\\xc3\\xa9\\x8d\\xe9\\xad\\xdb\\x42\\xd0\\x27\\x8f\\xc0\\xf5\\x76\\x3a\\xe9\\x8c\\x10\\xed\\xf7\\xc1\\x29\\x58\\xd2\\x92\\x6d\\x8c\\xa1\\x27\\x34\\x26\\xf8\\xae\\x76\\x94\\x38\\xc8\\xa5\\xef\\xa0\\xbe\\xb2\\xc9\\xd2\\x29\\x13\\x8b\\x96\\x23\\xc8\\x5e\\xaf\\x67\\x1e\\xcc\\x87\\x3f\\x60\\x71\\x44\\x58\\xe5\\x0f\\x56\\x24\\xf5\\xc3\\xea\\x80\\xaa\\x3a\\x53\\xd0\\x29\\xce\\xe8\\xa2\\xd8\\x7d\\xcc\\x76\\x47\\x92\\x3e\\x54\\x7c\\x23\\x9a\\x38\\x5c\\x83\\xe8\\x1b\\xe3\\x0a\\xc3\\xf5\\x81\\x50\\x93\\x06\\xb0\\xc1\\xe9\\xf8\\xdb\\x9f\\x7c\\xf6\\x79\\x11\\x8b\\x36\\x45\\x7f\\xb5\\x4a\\x12\\x0f\\xf7\\xc9\\x8e\\xa9\\x27\\xe4\\xaa\\x12\\x27\\x6b\\x2d\\x8f\\x89\\x05\\x24\\x53\\x7a\\xd0\\x86\\x78\\x56\\x71\\x7a\\x73\\x2b\\x3d\\xca\\xbf\\x88\\xda\\x79\\x1f\\x8e\\x16\\xe5\\xa2\\xcc\\x1f\\xd3\\xe3\\x0e\\x79\\x6d\\x4c\\xb1\\xdd\\x99\\x33\\xff\\x08\\xf4\\x61\\x09\\x4c\\x11\\xbf\\x39\\x87\\xe4\\x23\\x1c\\x5c\\xab\\x0c\\xaf\\x04\\xf3\\x05\\x5a\\x4f\\x3f\\x24\\xc2\\xaa\\xdf\\x5a\\x65\\x44\\xff\\xdc\\x6f\\xbe\\xb5\\xf3\\x88\\x79\\x9a\\xa0\\x3e\\x22\\xac\\xcf\\x11\\x9c\\xa1\\xc1\\xf1\\x04\\xe6\\xde\\x4a\\x5f\\xed\\xe2\\x6e\\x4c\\x6b\\xf6\\x20\\x1b\\x2b\\x3a\\xd0\\x3b\\x97\\x1b\\x62\\x3a\\x97\\x1d\\xff\\xf9\\x9b\\x36\\x83\\x50\\x15\\x3f\\x19\\xda\\x45\\x93\\x73\\x39\\x7f\\x71\\x00\\xff\\x11\\x10\\x5e\\xb0\\xb9\\xc7\\x5b\\xd8\\x9e\\xe0\\x88\\xb0\\xfb\\x19\\x6d\\xc8\\x35\\x14\\xfd\\xf7\\x4b\\xa8\\xa7\\x4f\\xbf\\x8e\\xc1\\xab\\x5b\\xaa\\xc6\\xc0\\x4f\\x67\\xc4\\x52\\xeb\\xd1\\x7a\\x7f\\x8d\\xa1\\x24\\xc6\\xe9\\xc9\\x31\\xa4\\x7a\\xe1\\x9f\\xd2\\x6c\\x86\\xca\\x38\\x6d\\xd9\\x51\\x14\\x14\\x90\\x32\\xb1\\xc6\\xfd\\xac\\x96\\xa7\\x17\\x61\\x6c\\xdd\\x88\\x5e\\xd5\\x51\\x98\\x73\\xdc\\x52\\x6a\\xac\\x58\\xa5\\x31\\xa1\\xe9\\x6f\\x52\\xfc\\xc6\\x7a\\x8c\\x55\\x4b\\x69\\x53\\xc9\\xc1\\x8a\\xc4\\xda\\x6a\\x12\\xec\\x2e\\xf8\\x15\\x79\\xf6\\xa1\\x8a\\x7b\\xe2\\x33\\x1a\\x83\\x0c\\xcd\\x9e\\x57\\xeb\\xbc\\x32\\x83\\x99\\x3b\\xa7\\xa6\\x34\\x43\\xd3\\x53\\x1c\\x3c\\xf7\\xd8\\xed\\xa8\\xb9\\xc5\\xd4\\xcc\\x80\\x78\\xbc\\x64\\xd1\\x3d\\xb9\\x24\\x0d\\xaf\\xf6\\xdd\\x99\\x31\\x4f\\xf5\\xa5\\x1c\\xc7\\x1d\\x7b\\xbc\\x7d\\x5c\\x66\\xd9\\x39\\xb7\\xf1\\xa5\\xd4\\xd1\\x47\\xef\\x27\\x26\\xf6\\xf5\\xe1\\xfd\\x28\\xdd\\x50\\xb4\\x89\\xc8\\x01\\x8f\\x95\\xf4\\xb1\\xf7\\xc9\\x94\\x89\\x8e\\xe4\\xf1\\x0c\\x51\\xfa\\x60\\x9e\\x5d\\xd5\\x5e\\x7b\\x92\\xbd\\x50\\x04\\x8f\\x90\\x96\\xef\\x38\\xc2\\x9f\\xf7\\x30\\x95\\x4d\\xe9\\x77\\x13\\x99\\x85\\xc2\\xa4\\x32\\x45\\xb6\\x9b\\x50\\x3e\\xc5\\x90\\x07\\xcf\\xa5\\x83\\xd5\\x64\\x16\\xca\\x85\\xd2\\x50\\x12\\xb3\\x90\\x23\\x3e\\x4c\\xb4\\x14\\xb2\\x5a\\x06\\xba\\xd3\\x0f\\xa4\\x5e\\x86\\x17\\xe1\\xbb\\x3f\\x9e\\x5a\\x18\\xc3\\xbc\\x77\\xe0\\xc0\\xf9\\x3e\\x1e\\x9a\\xb1\\x21\\x8d\\xb7\\xde\\x7b\\x17\\x89\\x3f\\x12\\x0c\\x6b\\xcb\\xbf\\xfb\\xfd\\x32\\xda\\x72\\x31\\x5a\\x6e\\x91\\xe1\\x35\\xc5\\x27\\xb1\\x53\\x27\\x0b\\x02\\xbd\\x38\\xe2\\xe1\\xe1\\xb9\\x07\\x1c\\xbd\\x8e\\xb3\\xf5\\xf9\\x7f\\x5e\\x1c\\xaa\\xd1\\x68\\x62\\x7f\\x4a\\x52\\x9b\\xf3\\xa0\\x52\\xef\\xeb\\xb5\\x38\\x07\\xd8\\x66\\xe5\\x65\\xc0\\x56\\x19\\xf1\\xc6\\x2c\\xcc\\xe1\\xf4\\x80\\xfc\\x28\\xe2\\x8a\\xd3\\x5c\\x86\\xd7\\xa6\\x3f\\x52\\x42\\x19\\xbb\\x79\\xef\\x95\\x3f\\x13\\xd7\\x2e\\x1d\\xf5\\x9c\\x23\\xd6\\x16\\xda\\x95\\x87\\xb9\\x47\\xda\\x41\\xfe\\x0a\\x5b\\xc3\\x42\\x0c\\xe6\\xbc\\x87\\x2a\\xac\\x09\\x63\\x07\\x1e\\x94\\xb5\\xe4\\x92\\x15\\x57\\x43\\xd7\\x94\\x67\\x18\\xea\\x0e\\x70\\x46\\x9d\\x2b\\x9c\\xde\\xdc\\x42\\x26\\x0b\\xc0\\x17\\xc6\\x94\\xd4\\xf3\\xb6\\xb0\\x2d\\x39\\xa2\\xec\\x91\\xb2\\x22\\x8a\\xa4\\xfa\\xbf\\x70\\x7f\\xb1\\x7c\\xae\\x78\\x36\\x5f\\xed\\xbf\\x72\\x08\\x04\\xbf\\x2f\\xca\\xfd\\xdc\\xbf\\xe2\\x05\\xb3\\xad\\x05\\x74\\x4b\\x3b\\xcb\\x2b\\x23\\x3f\\x3f\\x4a\\x32\\x5f\\xc5\\x6d\\xae\\x98\\x0b\\x39\\x72\\xfc\\x87\\x79\\x64\\x8f\\x6b\\x27\\x51\\x7b\\xe3\\x3f\\x55\\x9c\\x02\\x4e\\xe9\\x28\\x73\\xa4\\xf9\\x2a\\xa5\\xce\\x2c\\x27\\xb5\\x71\\x09\\xe1\\xb8\\xf5\\x8e\\xb5\\x7a\\xf1\\xbe\\x06\\x7b\\xe1\\x16\\x22\\x83\\x08\\x5d\\x36\\x47\\xba\\xc7\\x02\\x8b\\x12\\xb4\\x13\\xb3\\xa5\\x95\\x58\\xb8\\xb0\\xd3\\xe5\\x14\\xc6\\x13\\x54\\xa5\\xc5\\xef\\xd6\\x4c\\xcc\\xf6\\x12\\x5f\\x4f\\xbf\\x01\\x87\\x3c\\x3a\\x9e\\x1e\\x60\\x62\\xfd\\x10\\x75\\xeb\\x00\\x00\\x60\\x76\\xad\\x25\\x7e\\xcd\\xd2\\xaa\\xf5\\xd6\\x66\\x9d\\x77\\xb2\\xe5\\xb2\\x76\\xdf\\x66\\xbd\\xc5\\x76\\xbd\\xc5\\x71\\xcb\\x3b\\xe9\\x7b\\x2f\\xc9\\x54\\x05\\xd5\\x15\\xa6\\x9a\\xd4\\x96\\xc6\\x16\\xf3\\x12\\x7d\\x53\\x88\\xf2\\x54\\xf7\\xb4\\xf0\\xb4\\xf2\\x24\\x1c\\x8b\\x06\\x1a\\x84\\x35\\xf6\\x32\\xf0\\xc0\\x42\\xc9\\xd2\\x5b\\x8f\\x50\\x05\\x65\\x83\\xbe\\x3e\\x35\\xdd\\x80\\xdb\\x18\\xde\\x50\\xc9\\xc5\\xa4\\x3e\\x48\\xde\\x8e\\xeb\\x01\\xa7\\xa7\\xbc\\xe5\\xb1\\x85\\xd3\\xf3\\x37\\xf7\\xd8\\xfd\\x70\\x66\\x3f\\x77\\x4f\\x10\\x55\\x03\\xb2\\xcd\\x20\\x72\\x27\\xb4\\xae\\xde\\x21\\x47\\x8a\\x24\\x48\\x6c\\x53\\x7c\\x5e\\xbc\\x53\\xac\\x16\\xc4\\xe2\\xa8\\xb7\\xa1\\xc7\\xa7\\xc1\\x27\\xe9\\x23\\xe4\\x23\\xfb\\x4f\\xc5\\x49\\x61\\x4d\\xaf\\x43\\x56\\x2d\\x69\\x2a\\x91\\x3f\\x3e\\x36\\x35\\x57\\x39\\x02\\xcd\\x16\\xfd\\x1e\\x4d\\x3d\\xa9\\xad\\x41\\xe4\\x55\\x48\\x55\\xdd\\x55\\xe4\\x67\\x59\\x69\\xa5\\xbd\\xe5\\x45\\xc6\\x59\\x46\\x7c\\x86\\x6b\\x86\\xa2\\x56\\x62\\x4b\\xaf\\x5b\\xc7\\x53\\x3c\\x43\\xc5\\x79\\x79\\x67\\xbe\\xe2\\xf9\\x33\\x36\\x16\\x74\\xed\\x6e\\xd2\\x6e\\xac\\x63\\x07\\x2c\\x5b\\x7c\\x49\\x60\\x09\\xa1\\x59\\x7a\\x7b\\x71\\xfb\\x24\\x49\\x83\\x5c\\xb3\\x53\\x55\\x75\\x35\\x6a\\x75\\x65\\x55\\x2c\\x00\\xee\\x37\\xaa\\x05\\xe2\\x03\\xcc\\x78\\x00\\x3b\\x47\\x6d\\x75\\x69\\xf5\\x78\\x4d\\xa3\\x7b\\x93\\xa0\\xa3\\x0a\\x17\\xf7\\x74\\xc6\\x34\\x3f\\x43\\x4c\\x65\\xb1\\x75\\xd3\\x79\\x50\\x67\\x8d\\x77\\x99\\x77\\xf2\\x7b\\x54\\xe9\\x89\\xe6\\xa1\\xed\\xa9\\xef\\x21\\x84\\x0f\\xe9\\x27\\x9d\\xbf\\xf9\\x77\\x4b\\x00\\xc5\\x2c\\x53\\x1d\\xbd\\x03\\xe9\\x0d\\x2d\\x16\\xc2\\x12\\x62\\x0a\\x54\\x6c\\x28\\x1d\\x31\\x97\\x0a\\x86\\x16\\xc6\\x1a\\x2a\\x0f\\xf4\\x3f\\x21\\xde\\x88\\x60\\xdb\\x7e\\xee\\x9d\\x5f\\x37\\xc8\\x2f\\x24\\x1b\\x5c\\x1b\\x82\\x5d\\x64\\x3e\\x64\\x1f\\xf0\\x56\\x3f\\x54\\x85\\xaf\\x49\\xa2\\x0a\\xc6\\x2c\\xde\\x4f\\xba\\x35\\xee\\x57\\x32\\x56\\x72\\x3d\\x46\\x5e\\xb2\\x40\\x61\\x45\\xbc\\xdc\\xdc\\xaf\\x54\\xaa\\x72\\xc9\\xc5\\x0c\\x45\\xe8\\xa7\\x5f\\xa7\\x10\\xd8\\xe6\\x66\\x8a\\x1c\\xd9\\xba\\x71\\x13\\xc7\\x18\\x07\\xd4\\xaf\\xd3\\xaf\\xe8\\xaf\\xb2\\x50\\xca\\xf9\\xb6\\x86\\xc2\\x4a\\xea\\x74\\x18\\xef\\x18\\xad\\x68\\xd7\\xc9\\x01\\x7f\\x2e\\xff\\xad\\xfc\\xa3\\xd6\\x80\\xe2\\x0c\\x75\\x27\\x46\\x66\\x41\\x7b\\x0d\\x5a\\x12\\xef\\x2c\\xd4\\x9e\\xb5\\xd7\\x50\\xac\\x82\\xe3\\x0d\\xfa\\xec\\xdf\\xf4\\xd0\\xed\\xa2\\xd4\\x0b\\xeb\\x25\\x75\\x11\\xf3\\x35\\xe2\\xaa\\x8f\\x7c\\x11\\xdf\\x3b\\x10\\xbb\\x53\\x6d\\x7e\\x5a\\x5c\\x52\\x59\\xfe\\x28\\x84\\x27\\x30\\x58\\xf9\\x0f\\xb4\\xd3\\x2d\\x05\\xd0\\x8d\\xb6\\xda\\xcd\\xb6\\x9d\\xb5\\x3d\\x53\\x06\\x2d\\xb6\\xb4\\x69\\xb6\\xa4\\x69\\xb6\\xac\\x78\\x46\\xd7\\x0a\\x8a\\xe7\\xd7\\xd8\\x5e\\x58\\xc8\\x83\\x3c\\x83\\x9c\\xfb\\x5c\\xfb\\xe0\\xf3\\x64\\xf3\\xf4\\xce\\x10\\xf7\\x5c\\x8d\\x36\\x3d\\x06\\xa7\\x26\\x86\\xf4\\xcf\\x55\\xa2\\x55\\xe6\\x36\\x6a\\xeb\\xd8\\xde\\x30\\xde\\x5b\\x7e\\x03\\xf9\\xee\\x5d\\xce\\x35\\x4e\\xc4\\x57\\x0a\\x57\\xfa\\x04\\x0b\\xf7\\x13\\xe7\\x0f\\x57\\xf7\\x7e\\xf7\\xd8\\xbe\\xb2\\x3e\\xef\\x3e\\xa9\\xe0\\x4f\\x7d\\x89\\x3b\\x01\\x3b\\x2d\\x3b\\xcd\\x3b\\xad\\xb3\\x79\\xc8\\x04\\x3c\\xbf\\xde\\x50\\x09\\xd0\\xa6\\xc3\\x53\\x43\\x19\\xc5\\xb5\\xc4\\x3e\\xe2\\xbd\\x95\\xcc\\x5d\\x24\\x1e\\xc4\\xaa\\x24\\x6d\\xe4\\x2f\\xa4\\x37\\xf0\\x7b\\x93\\x2c\\x52\\xea\\x28\\xd5\\xc8\\xf4\\xc8\\x63\\xc6\\xd8\\xcb\\x29\\xca\\x11\\xcb\\x0d\\xa9\\x39\\x1e\\x49\\x63\\x8a\\xf4\\x4d\\x1e\\xd2\\x45\\x57\\x15\\x56\\xc9\\xdb\\xd5\\xb8\\x05\\x9e\\x19\\xec\\x27\\xed\\x27\\xbe\\x69\\xa2\\x69\\xf1\\x5e\\xaf\\xe1\\x43\\x79\\x43\\xd5\\x87\\xbc\\x86\\x18\\x86\\xa8\\xc5\\xbd\\x99\\xb5\\xe8\\x30\\x97\\xd1\\x18\\x93\\x71\\x92\\xc2\\x92\\x4b\\x92\\xba\\x0e\\xf5\\x4c\\xad\\xd3\\xe9\\x66\\xa8\\x72\\xcb\\x4e\\x68\\x58\\x03\\x08\\xfa\\x7e\\xfd\\x86\\x29\\xe9\\x57\\xde\\xa1\\x2c\\x23\\x64\\xfb\\x29\\x23\\xc2\\xd7\\x04\\xf9\\x06\\xcd\\x19\\xe0\\xdd\\x97\\xb8\\x43\\xf5\\x01\\x69\\x19\\x5e\\x37\\x4a\\x71\\x00\\xe9\\x54\\xab\\x55\\x59\\x51\\x79\\x36\\xab\\x65\\x81\\xac\\x1b\\xdc\\x33\\xc0\\x63\\x68\\x87\\xd0\\x7f\\x64\\x48\\x59\\x07\\xe3\\x81\\x8a\\x37\\x54\\x8b\\x3c\\x15\\xa1\\x24\\x96\\xc0\\x25\\xde\\x45\\xba\\x1e\\xe7\\xf5\\x8b\\xfc\\x38\\x9e\\x72\\x54\\x7d\\x01\\xd9\\x8a\\xc0\\x35\\xb6\\x65\\x1e\\xb9\\x3b\\xaa\\x67\\x70\\xc1\\x08\\x9a\\x49\\x4f\\xc2\\x44\\x81\\xc9\\x7d\\x05\\xc3\\x26\\x3e\\x7b\\x70\\x6b\\x8f\\xc7\\x81\\xb4\\x4d\\x77\\x83\\xd0\\xef\\x47\\xed\\xb1\\xd2\\xd7\\x8f\\x6f\\xf1\\x13\\xca\\xbc\\x01\\x3a\\xc7\\x38\\xa9\\xbf\\xac\\x20\\xf8\\x3d\\x5e\\xcb\\x38\\x93\\x14\\x29\\xcb\\x70\\x3e\\x05\\x85\\x09\\xd6\\x03\\x88\\x3b\\x94\\xd7\\xe8\\x7f\\x42\\x8e\\x34\\xb4\\x49\\xb4\\x56\\xa4\\xae\\x21\\x67\\x2a\\xb5\\x16\\xfc\\x6c\\x2a\\xef\\x79\\x9f\\xa4\\x3f\\x08\\x00\\x80\\x45\\x30\\x40\\x80\\x5f\\x96\\xed\\xff\\x8c\\xa9\\x6d\\xe6\\x4f\\x47\\x6d\\xd1\\xea\\xc6\\xff\\x59\\xf5\\x3c\\x0b\\x4c\\x7f\\x59\\x82\\x98\\xb4\\xb0\\x65\\x85\\xf1\\x7e\\x23\\xfe\\xa8\\xc3\\xbb\\x80\\x2c\\xed\\xd7\\xbd\\x21\\x18\\x0e\\x28\\x37\\xe0\\xd0\\x00\\x5f\\x0a\\xb2\\x35\\x10\\xe4\\x02\\xd3\\x72\\x60\\xd0\\x41\\x42\\x1a\\x98\\xb8\\xa1\\xfe\\x00\\xfe\\xca\\x93\\x2b\\xfb\\x51\\x11\\xa6\\x95\\xa7\\x67\\x81\\xc0\\x12\\x27\\x42\\x3b\\x67\\xe7\\x82\\xb3\\x29\\x51\\x3b\\xe7\\x8e\\x87\\x54\\x3a\\xf8\\xea\\xc0\\xad\\x83\\xd4\\x3a\\xe0\\x7b\\x83\\x65\\x63\\x10\\x98\\xba\\x57\\xfd\\xc2\\xd5\\x03\\xcc\\xdd\\xbf\\x36\\xe3\\x63\\xcd\\xd6\\xec\\xab\\x32\\xe0\\x60\\xe1\\x4d\\x17\\x9d\\xa4\\x3e\\x52\\xb5\\x0e\\x61\\x9f\\xf8\\xb5\\xe4\\x64\\x5d\\xea\\xba\\xd6\\x61\\xdb\\xdd\\xfc\\x5d\\x9f\\xb8\\xca\\x7d\\xf1\\xc7\\x8d\\xbe\\x33\\x66\\x73\\x84\\xc0\\x5c\\xf4\\xbd\\x66\\x7e\\x08\\xfb\\x48\\xce\\xb9\\xac\\x71\\x76\\xf5\\x02\\xcf\\xad\\x86\\x47\\x31\\xfb\\xda\\x8e\\x8f\\x33\\x58\\x7b\\xb4\\x7a\\x8f\\xc3\\xd9\\xbb\\xad\\x50\\x67\\x10\\xfd\\x4a\\xb6\\x36\\x7d\\x79\\x10\\xf7\\x10\\x3b\\xe7\\x4e\\xcd\\xab\\xb3\\xbb\\x71\\xcb\\xf7\\x9a\\x34\\x52\\xfc\\x5f\\x9c\\x4f\\x11\\xb8\\xa5\\x18\\x4f\\x3c\\xb1\\x09\\x4e\\xbe\\x09\\xb1\\xa6\\xec\\x53\\xe2\\xfd\\x01\\xf1\\xab\\x94\\xf1\\x1c\\x1b\\x1b\\x21\\xbd\\x24\\xee\\xac\\x82\\xcb\\x8f\\x6c\\x11\\xfe\\x8e\\x38\\xbb\\x12\\xc9\\x53\\xd7\\xb7\\x84\\x2f\\x33\\x69\\x0d\\x0e\\xb5\\xe8\\x45\\x83\\x6a\\x0d\\x4e\\x8e\\x68\\x79\\x23\\xc4\\xcc\\x19\\x8e\\x86\\xc1\\x0b\\x1a\\xef\\x69\\xbf\\x37\\xd8\\x0f\\x39\\x3f\\xe2\\xde\\xbf\\xdb\\x93\\x82\\xe3\\xf7\\x37\\x4e\\x5d\\x04\\xd7\\x7d\\x30\\xb7\\xd4\\x1b\\xfb\\xf0\\xaf\\x66\\x7e\\x69\\xfa\\x87\\x8a\\xaf\\xee\\xf1\\x42\\x26\\xbf\\x42\\xc5\\xd0\\xe7\\xe4\\x1e\\x90\\x49\\x41\\x08\\xc2\\x43\\x46\\xf5\\x9a\\x78\\xe8\\xcb\\x43\\xb2\\xb7\\xda\\x14\\x09\\xe9\\x26\\xc4\\x9a\\xd2\\x1c\\xf1\\x9b\\x07\\x4c\\xdc\\xa2\\x7f\\xda\\x35\\xec\\x92\\x47\\x0e\\x5d\\x5f\\x75\\xbe\\x54\\x22\\x55\\x28\\x54\\xa5\\x54\\xff\\xc4\\x2c\\xfc\\x69\\x56\\xc5\\x57\\x55\\x5f\\x54\\x7e\\x64\\x8f\\x40\\x2d\\x82\\xbd\\x83\\x4c\\x04\\xa7\\x8d\\x08\\x5a\\xec\\xbf\\xda\\xb1\\x71\\x10\\x7c\\xc1\\x1a\\xfe\\xa1\\x1c\\xd2\\x3d\\xa0\\x94\\x8f\\x52\\xe1\\x60\\xda\\xc6\\xcb\\x87\\xbb\\x85\\x24\\x78\\xa6\\xc1\\x93\\x3c\\x5d\\x2c\\x7b\\xca\\xd3\\x11\\x73\\x55\\x3a\\x62\\x59\\x96\\xac\\x57\\xc5\\x79\\x5e\\xf8\\x56\\xe1\\x57\\xd3\\x2b\\x79\\x5b\\x80\\xa0\\x94\\x6f\\xe1\\xd8\\xc4\\xce\\x83\\xa3\\x1b\\x93\\x23\\xe9\\xcf\\x1b\\x04\\x63\\xd1\\xee\\x04\\x00\\xe4\\x9d\\x57\\xff\\x9f\\xaa\\xaf\\xb7\\xec\\x1f\\x0c\\xdd\\x1f\\xed\\xe7\\xb5\\xd8\\xae\\xf3\\x97\\x5d\\x7a\\x0b\\x06\\x8a\\x11\\xe1\\x8f\\x42\\x8d\\x07\\x78\\xe5\\xa1\\x9f\\x40\\x43\\x07\\x52\\x1b\\x20\\x6a\\x80\\x2f\\x05\\xd0\\x07\\x80\\x43\\x18\\xf5\\x23\\x3a\\x00\\xb2\\x00\\x98\\x7d\\x3f\\x6f\\x00\\x5d\\x80\\x6d\\x03\\xb8\\x34\\x88\\x94\\x00\\x76\\x03\\xda\\x15\\x18\\xc4\\x40\\xe3\\x1d\\x34\\x2e\\x18\\x86\\x40\\xed\\xbc\\x40\\xde\\x1d\\x6a\\x0f\\x98\\x1e\\x91\\xef\\x3c\\x66\\x0b\\x38\\xad\\xb0\\xa5\\x7c\\x5b\\xaa\\xa0\\xa7\\x7c\\xe3\\x13\\xbc\\x8e\\xb0\\xab\\x7c\\xce\\x13\\xf8\\x2f\\x18\\xca\\x7e\\x4b\\x07\\x8c\\x2c\\x18\\xcc\\x7e\\x53\\x07\\x74\\x1d\\x18\\xce\\x7e\\x5d\\x07\\x42\\x3e\\x48\\xc2\\x81\\xd2\\x1b\\xf2\\x8f\\x1f\\xbd\\x03\\xb9\\xa3\\xfa\\x64\\xe8\\x63\\x62\\x77\\xf1\\x4e\\x45\\x60\\xa7\\x42\\xd0\\xf1\\xd2\\x26\\xb0\\xab\\x22\\x78\\xab\\xe2\\x88\\xf1\\xca\\x07\\x38\\x9e\\xc2\\x5b\\xb3\\xdf\\x16\\xd0\\x19\\xe1\\x29\\x79\\xcd\\x16\\xb8\\x6b\\xb1\\xc0\\x42\\xf8\\x13\\xb8\\x8e\\x40\\x9a\\x8e\\xe0\\x9c\\x02\\xf7\\x13\\xda\\x27\\x24\\xd9\\x81\\x7f\\x75\\x74\\x55\\x58\\x95\\xc3\\x67\\xf5\\x88\\x36\\x80\\x4c\\x10\\x46\\xbd\\xaa\\x0d\\x2a\\xab\\x0d\\x0c\\xef\\x10\\x43\\xbd\\xe4\\x05\\x84\\x62\\x1f\\xeb\\xad\\x48\\x17\\x9c\\xfd\\xb0\\xf7\\x0d\\x8a\\x0f\\x86\\xfe\\x10\\xa7\\xe3\\xa4\\xf1\\x2b\\x98\\x5f\\xa4\\xe0\\x1e\\xa1\\x18\\x49\\xbc\\x38\\x1a\\xca\\xa2\\x18\\xfc\\x9c\\x6c\\xf4\\x2f\\x67\\x10\\x0e\\x58\\x28\\x4a\\xbd\\x51\\x2c\\x17\\x71\\x4d\\x04\\xcc\\x9e\\x6e\\x1c\\xd1\\x28\\x1a\\x1a\\x5c\\x05\\xa4\\x7c\\x90\\x5d\\x7f\\x84\\x81\\x5a\\x1d\\xc5\\xef\\xfe\\x9c\\x1d\\x1d\\x07\\x46\\x0f\\xd2\\xef\\xf8\\x53\\x13\\x01\\x4d\\x61\\x8e\\xb8\\xcd\\x03\\x2a\\x6e\\xc9\\x9a\\x38\\x8d\\xe1\\x71\\xd1\\xbb\\xbf\\x3e\\x14\\x82\\xe5\\x64\\x34\\x51\\x34\\x25\\x56\\x65\\x6a\\x15\\xb1\\x19\\x25\\x6a\\xd4\\x15\\x7b\\x8b\\x28\\xae\\xf2\\xdd\\xbf\\xb7\\x5d\\xe0\\xb2\\x65\\x53\\xe7\\x5c\\x5d\\x78\\x37\\x15\\x15\\x67\\xa3\\x1e\\x30\\x2e\\x1f\\x50\\x7c\\x15\\x7b\\x99\\xbf\\xd3\\x5c\\x28\\x72\\xcb\\x0d\\x70\\xd2\\x19\\xcc\\xd2\\xd2\\x4d\\x52\\xd2\\x7e\\x86\\x65\\x78\\x38\\x83\\x74\\x58\\x63\\x27\\x61\\x32\\xfb\\xcc\\x1a\\xc4\\x6d\\xd8\\xd7\\x07\\x9e\\x1a\\x06\\x2f\\x10\\x3a\\xc7\\xff\\xe0\\xda\\xc7\\xae\\x58\\xdb\\x05\\x69\\x1f\\x96\\x45\\xb5\\xe1\\x5f\\x45\\x74\\xee\\x5c\\xb5\\x61\\x5e\\x05\\x7f\\x8f\\x94\\xde\\x68\\xfa\\x80\\xe9\\x0f\\x2f\\xdf\\xc8\\xfb\\xc0\\x08\\x8e\\x2a\\xde\\x3a\\x7f\\x14\\x4b\\x05\\x8e\\x16\\x49\\x21\\xb7\\xa3\\x95\\xc0\\xaf\\x87\\x92\\x0e\\x88\\xef\\xa6\\xcc\\x86\\x7a\\x0f\\x38\\xef\\x06\\xdf\\xe8\\x36\\xfd\\x6e\\x52\\x47\\x93\\xb0\\x17\\x27\\x14\\x17\\x04\\x7d\\xdc\\x7b\\xb7\\x12\\x56\\x9e\\x1d\\x73\\xfc\\xf7\\x7e\\x82\\x44\\x01\\xd4\\x01\\x30\\x00\\x0e\\x00\\x28\\x00\\x38\\xe0\\x37\\xc0\\x00\\xe0\\x0e\\x00\\x00\\x36\\xe1\\x53\\x01\\x10\\x00\\x30\\x0f\\x30\\xba\\xe1\\x56\\x30\\x30\\x21\\x40\\xd8\\xdc\\x75\\xc3\\xc6\\xa8\\x16\\x37\\xd0\\x00\\xf0\\xe8\\x3a\\x80\\x46\\xf1\\x1b\\xbb\\x0f\\x92\\xa6\\x98\\x3a\\x49\\xed\\xd7\\xb7\\x3a\\x7f\\xde\\x38\\x7a\\xf8\\xad\\xf8\\x0e\\xa0\\x23\\x7f\\x48\\xb8\\x75\\x81\\xeb\\x0c\\x88\\x4e\\xb9\\x39\\xbf\\x57\\x03\\xc3\\x82\\xc4\\xcf\\xc2\\xc4\\xcf\\x5f\\xcf\\x6c\\xdd\\x2d\\x35\\x94\\xf5\\xc8\\xf2\\xd3\\x79\\x8e\\x36\\x7a\\x52\\xbe\\xb6\\x81\\x55\\xb1\\x5b\\xa2\\x85\\x75\\xcb\\x35\\x9e\\xdd\\x0d\\x52\\x18\\x59\\xd4\\x35\\x69\\x6a\\x72\\xd2\\xcd\\xc8\\xac\\xc4\\x23\\x3d\\xfd\\xf8\\xe9\\x4b\\xb1\\x04\\xdf\\x2b\\x46\\x3c\\xa1\\xe2\\x5d\\x0e\\xdf\\x15\\xbd\\xac\\x36\\x83\\xa6\\xa2\\x80\\xac\\x50\\xbe\\xda\\x5a\\x94\\x77\\xa3\\x26\\xc2\\xed\\x86\\x53\\x75\\xa0\\x43\\x49\\x1b\\xaa\\xda\\x89\\xb7\\x7f\\xfe\\xc0\\xe7\\xb3\\x12\\x67\\x85\\xc6\\x31\\xa5\\x0f\\xa7\\x11\\x73\\xcc\\xa7\\x98\\x67\\x06\\xa7\\x81\\xc5\\xcb\\xc0\\xbe\\x71\\xb4\\xd0\\x0a\\x52\\x44\\xe1\\x13\\x79\\xc4\\x50\\x66\\x68\\x37\\xb7\\xe4\\xe0\\xa5\\x54\\x13\\xa6\\x62\\xb5\\x04\\xa2\\x6d\\x99\\x1f\\xb1\\x49\\x71\\x71\\xce\\x5f\\xbd\\x07\\x09\\xdb\\x74\\x45\\x72\\xb8\\xfc\\xcf\\xb2\\xdb\\xf1\\x3d\\xd5\\x76\\x9e\\x9b\\x2c\\x7c\\xa3\\x9c\\x3f\\x1f\\xad\\xe1\\xe5\\x98\\x55\\xdb\\xe2\\x07\\x01\\x37\\xeb\\x23\\x77\\x94\\x4a\\xb3\\xce\\x5c\\xdf\\x72\\x20\\xef\\x47\\x4b\\x25\\x31\\x2d\\x1e\\xb5\\x83\\xfd\\x29\\x42\\xb2\\xef\\x3e\\xe2\\xaa\\xf3\\xd5\\xbf\\x8b\\xab\\xac\\x67\\xce\\x67\\xfe\\x7a\\xf0\\x1c\\x0e\\x0e\\x41\\xa1\\xe9\\x08\\xef\\x39\\x6e\\x0b\\xb0\\xc2\\x83\\xed\\xf3\\xa0\\xdf\\x2f\\xf5\\x03\\xec\\x13\\x1e\\x09\\xfa\\x8d\\x32\\x9f\\x71\\xe3\\xa2\\xd5\\xcc\\x14\\x04\\x95\\x3b\\x1f\\x86\\x86\\xae\\x65\\x95\\xc8\\xb6\\x61\\x4c\\x30\\x1e\\x57\\xae\\xa2\\x48\\x98\\x5e\\x0b\\xb8\\xef\\x7f\\xa3\\x5f\\xa1\\x6a\\x0a\\x3c\\x2d\\x01\\x1e\\x60\\x36\\xfd\\xc1\\xae\\xa2\\x60\\x00\\x40\\xdf\\x79\\xed\\xa6\\xfe\\x7f\\x63\\xfa\\xf7\\x35\\xa9\\x99\\xc5\\xa2\\x41\\xe8\\x0a\\x52\\xa8\\x9c\\xa8\\x36\\x28\\x23\\xae\\x42\\x28\\x4f\\xab\\x9a\\xe7\\x11\\x87\\xcd\\xea\\x5f\\x95\\x78\\x25\\xc7\\x25\\x4f\\x08\\x8f\\xeb\\xe9\\x52\\xa1\\x7a\\xae\\x1f\\x04\\xf4\\x4f\\x6c\\x0e\\xa3\\x85\\x34\\x47\\x54\\x0a\\xf9\\x74\\x0e\\xe3\\xa5\\x2c\\x4f\\x78\\x0c\\x7a\\xcd\\x16\\xa3\\xc5\\x0c\\x57\\x5c\\x0e\\xdb\\xd5\\x16\\xe3\\xe5\\x1c\\x5f\\x18\\x44\\x7c\\x6e\\xb7\\xbd\\x85\\x74\\x67\\x4c\\x06\\xdd\\x76\\xb7\\xfd\\xa5\\x6c\\x6f\\x24\\x02\\x7e\\xcf\\xa7\\xbd\\xc5\\x4c\\x77\\x42\\x01\\xdf\\xd7\\xa7\\xfd\\xe5\\x5c\\x7f\\x14\\x25\\x66\\x47\\x58\\x69\\x6a\\x4b\\x6c\\x71\\xd3\\xa0\\x1d\\x62\\x7a\\x2c\\x00\\x20\\xe0\\x64\\xf2\\x99\\x74\\xbd\\xc5\\x73\\xd8\\x66\\x7d\\xa9\\x42\\xed\\x15\\x67\\xb5\\xc5\\x7a\\xd3\\x9b\\x7d\\xa1\\x41\\x9e\\xd0\\x7d\\x61\\x4e\\x82\\xb5\\x90\\x8e\\x45\\x34\\xd1\\xbf\\xac\\x24\\x13\\x49\\xc0\\xb2\\x38\\x17\\xfa\\xdb\\x69\\x80\\xd7\\x98\\xee\\x76\\x0a\\x53\\x50\\x6e\\xae\\x1f\\x37\\x9b\\x6f\\x7e\\x14\\x12\\xa9\\x8a\\x79\\x2c\\xea\\x7b\\xe5\\xb1\\x17\\x0c\\xda\\xa9\\xbf\\x58\\x18\\xba\\x71\\xf2\\x2f\\xf1\\x24\\xb6\\x55\\xda\\xae\\x04\\x96\\x25\\x9a\\x77\\x96\\xf3\\x28\\xca\\x48\\x56\\xfd\\x4c\\xf9\\xdc\\x30\\x96\\x75\\xd6\\x2d\\x45\\x9a\\x45\\xc2\\x58\\x49\\x9a\\x55\\xc6\\xa9\\x59\\x9a\\x65\\xca\\xea\\x51\\xda\\x44\\x9b\\xe7\\x91\\xb6\\x41\\xbe\\x38\\x86\\xb6\\x51\\xb9\\x69\\x8a\\x76\\x7f\\x5d\\x72\\x2f\\x64\\x7f\\x70\\x3c\\x04\\x00\\x00\\xa8\\x9b\\x90\\xb2\\x5f\\xe7\\xb0\\x5a\\x6f\\xc1\\xb4\\x37\\x1a\\x2c\\xa1\\x5f\\x77\\xbb\\x58\\x6b\\xbc\\xee\\xcb\\x27\\x1d\\x51\\xc8\\xe2\\x71\\xbe\\x1a\\x28\\xa6\\x5d\\xb6\\xdb\\xe8\\x70\\xbe\\xee\\x2f\\xa4\\x9c\\xd1\\xeb\\xf2\\xba\\xbf\\x1a\\x2c\\x65\\xdc\\xf6\\xfb\\x78\\xbb\\x67\\x24\\xa2\\x22\\xa3\\x23\\xa1\\xa1\\x60\\x20\\xa6\\x26\\xa7\\x27\\xa5\\xa5\\xac\\xcd\\x2b\\x2b\\xaa\\x2a\\xa8\\x28\\xa9\\xc9\\x2f\\x2f\\xae\\x2e\\xac\\x2c\\xb5\\x37\\xb0\\x30\\xb1\\x31\\xb2\\x32\\xb3\\x33\\xb4\\x6c\\xa6\\xf8\\x41\\x80\\x4c\\x0a\\x16\\x00\\x08\\x90\\xcf\\xf1\\x6b\\xb1\\x5d\\xf8\\x4f\\x3b\\xeb\\x9b\\x93\\x3d\\x4e\\xe2\\x47\\x72\\x3c\\xce\\xd2\\x8f\\xf5\\x3c\\x4e\\x93\\x97\\xb7\\x3c\\xce\\xb3\\x9f\\x05\\x5e\\x4e\\x12\\x67\\x7a\\x5e\\xce\\x32\\xaf\\xfd\\x5e\\x4e\\x53\\xb7\\xbf\\x5e\\xce\\x73\\xbf\\x13\\xc8\\x64\\xe3\\x69\\xe4\\x3b\\x10\\xd2\\x1b\\x4c\\x26\\xe2\\x69\\x15\\x7b\\xc0\\x43\\xff\\xa2\\xd1\\x2a\\x55\\xc8\\xb5\\xc3\\x25\\x57\\xa8\\x54\\x2a\\x55\\x2a\\x74\\x43\\xc7\\x64\\xb0\\x59\\xcf\\x55\\xc8\\x77\\x22\\x66\\x77\\xb8\\x9c\\xcf\\x55\\x32\\xc2\\x15\\x4a\\xf9\\x27\\x49\\x68\\xb2\\xe1\\x46\\xec\\x51\\x45\\xa6\\xb4\\x11\\xc6\\xdc\\x82\\x0c\\x4c\\xc4\\xad\\x17\\x24\\x74\\x55\\x70\\x59\\x6c\\x40\\x65\\xcc\\xfb\\x14\\x72\\xc3\\xb2\\xca\\x25\\x53\\x69\\xec\\x98\\xfa\\xfb\\xde\\x3e\\x51\\x62\\x45\\xa0\\xf7\\x17\\x6c\\xcb\\x5b\\x0a\\x81\\xe1\\xd2\\x32\\x26\\xfb\\xfe\\x02\\xf2\\x09\\xb5\\x2a\\xad\\x46\\xbb\\xff\\x4d\\x88\\xcc\\xca\\xff\\x2b\\x23\\x5b\\x28\\x90\\x8a\\x30\\xab\\x00\\x00\\x40\\xfc\\xda\\xdd\\xdf\\x64\\xbd\\xc5\\x16\\x98\\x60\\xdb\\xe9\\xf9\\xcf\\x1b\\xde\\xc4\\x38\\x8c\\x4d\\x84\\x47\\x12\\xa1\\xcc\\xff\\xe3\\x5c\\xf0\\x1b\\xd7\\xa4\\x8e\\x38\\x0c\\xc7\\xac\\x0d\\x45\\x02\\xc7\\xb4\\x89\\x79\\x18\\xc7\\xbc\\x0b\\x96\\x22\\xc3\\xa4\\x81\\xba\\x24\\xc3\\xac\\x03\\xdb\\x2c\\xc3\\xb4\\x85\\xfb\\x28\\xc3\\xbc\\x07\\x0a\\x43\\xcb\\xa4\\x9e\\x3c\\x45\\xcb\\xac\\x1d\\x5d\\x4d\\xcb\\xb4\\x99\\xfd\\x42\\xdb\\x1a\\xbf\\x76\\x69\\xdd\\x80\\x14\\x26\\xcb\\x71\\x80\\xd8\\xf7\\x61\\x1d\\x04\\xc0\\x44\\x70\\x1a\\xe7\\xe6\\xd4\\x71\\x1a\\x62\\x17\\xe5\\x73\\x98\\xc0\\x97\\x44\\xb8\\x9f\\x24\\x55\\x8c\\xbe\\x99\\xc6\\x2a\\x8c\\x66\\x1d\\x83\\x54\\xe6\\x60\\x9d\\xa2\\x63\\x9d\\x64\\x9e\\x21\\x81\\xa7\\xab\\x9f\\x84\\xb3\\xae\\x6a\\x98\\xa6\\xc0\\xb5\\x69\\x1c\\x42\\xec\\xf4\\x71\\xb0\\x89\\xaa\\x6e\\x59\\xb5\\x0b\\xcf\\xf6\\xb9\\xb5\\x4d\\xdd\\x7c\\x5a\\x99\\x50\\x0c\\xd0\\x0f\\xda\\xe9\\x8f\\x08\\x04\\x00\\x00\\x2b\\xfa\\x6a\\x95\\xb6\\xeb\\x2d\\xcd\\xee\\xde\\x36\\x24\\xff\\x8f\\x5a\\x12\\xfa\\x04\\xe7\\x06\\x15\\x24\\x34\\xfc\\xad\\xc8\\xe8\\x08\\x2b\\x49\\x69\\x01\\xd6\\xe4\\xf4\\x04\\xe6\\xc7\\xd7\\x47\\x96\\xa7\\xb7\\x87\\x16\\x27\\x37\\xc7\\x54\\x67\\x77\\x07\\x17\\x26\\x36\\x46\\x55\\x66\\x76\\x86\\x97\\xa6\\xb6\\xce\\xe4\\x12\\x79\\xf4\\x01\\xe9\\x00\\x00\\xc0\\x93\\x3e\\x62\\x4f\\x4b\\x77\\xb3\\xad\\xb5\\xd5\\xba\\x1b\\x6f\\x85\\x2d\\x65\\x8e\\xe7\\x55\\x68\\xaa\\x1e\\x54\\x6b\\x7f\\xf6\\xf2\\x16\\x64\\x3c\\xd1\\x59\\xb5\\xfb\\xd6\\xfb\\x4e\\xa1\\xa2\\xc0\\xfb\\x5e\\xa5\\x7d\\xcf\\xfb\\x6e\\xa9\\xbe\\xdf\\xfb\\x7e\\xad\\xff\\x97\\x6c\\x1c\\x95\\xb4\\x13\\x72\\x02\\x89\\x6a\\xc6\\x03\\x11\\x06\\xc8\\x74\\x34\\x89\\x5c\\x1b\\xa8\\xe3\\x79\\x87\\x4e\\xa5\\x52\\xa4\\x11\\xf9\\xc7\\x74\\x5c\\xb5\\x4c\\xa5\\x58\\x2b\\x46\\xcb\\xf5\\x8c\\xdd\\x62\\x81\\xac\\x48\\x33\\x4a\\xcd\\x76\\xcd\\xf5\\x64\\xa1\\x58\\x3b\\x56\\xcf\\xf7\\xed\\x27\\x16\\x9b\\xc9\\x4a\\x84\\x92\\xf1\\xb0\\x7c\\x1a\\x9b\\xe9\\x5a\\xb4\\xa6\\xf3\\x11\\xbd\\x46\\x93\\xc9\\xea\\x5f\\x55\\xeb\\x25\\xdb\\x15\\x34\\x0c\\x14\\x74\\xd4\\x56\\xd3\\x75\\xa0\\xae\\xf7\\x13\\x3e\\x97\\xcb\\xc1\\x4a\\xa4\\xb2\\xf9\\xb4\\x6e\\x9b\\xcb\\xe1\\x5a\\x8c\\xb6\\xfb\\x15\\x3f\\x0a\\x24\\xd2\\x0f\\x14\\x00\\x00\\xd0\\x77\\x96\\xf2\\x7f\\xa8\\xde\\xc3\\x6f\\xd3\\x1b\\x28\\x28\\x1c\\x04\\x85\\x4c\\xa2\\x92\\xe6\\x80\\x42\\x22\\x1e\\x89\\x41\\xaa\\x96\\xe5\\x01\\xfb\\x8b\\x5c\\x3a\\x85\\x44\\x35\\xc3\\x05\\x9b\\xc5\\x74\\x2c\\x85\\x54\\x3d\\xc7\\x07\\x0a\\x0e\\x9d\\x5a\\xad\\x40\\x25\\xdd\\x09\\x9d\\x46\\xb5\\x5c\\xad\\x50\\x2d\\xdb\\xeb\\x27\\x0e\\xbb\\xe5\\x52\\x81\\x6a\\xa6\\x1b\\xfe\\xff\\x87\\x7a\\xf2\\x45\\xf9\\x23\\xe7\\x97\\x08\\x18\\x00\\x10\\xe0\\x7b\\xb1\\x36\\x33\\xfa\\x7f\\x6e\\x1e\\xd6\\xf7\\x53\\xee\\x82\\x1f\\x0f\\x13\\xf6\\xfe\\x1f\\x8f\\x33\\xfe\\x60\\xe0\\x50\\xb0\\x18\\xff\\x7f\\x08\\xb7\\xf7\\x47\\x50\\x14\\x04\\x40\\x04\\x00\\x10\\xc2\\xd4\\x29\\x6d\\xff\\x4e\\xf1\\x83\\x0a\\x9e\\x33\\x19\\x36\\x6a\\x5e\\xc5\\x57\\x48\\x5d\\xdf\\x7f\\x7c\\x85\\x52\\x4a\\x40\\x77\\xb5\\xe0\\x19\\x13\\x4d\\xd6\\xe5\\xfd\\xe1\\x43\\xd9\\x37\\x55\\xe9\\xa7\\xa6\\xa6\\x64\\x8f\\xf9\\xdb\\x3d\\x75\\x5b\\x3a\\x0d\\x62\\x1e\\x5e\\x0e\\x31\\x6e\\xed\\xa8\\x36\\xce\\x31\\xd5\\xb5\\x9d\\x98\\xf3\\x5b\\xda\\xf3\\xd9\\xcb\\x99\\xf5\\x6e\\x56\\x02\\xb1\\x12\\x5f\\xc2\\x68\\xd3\\x68\\x14\\x4b\\x69\\x22\\x0a\\xda\\xc8\\xd5\\x53\\x75\\xee\\xf8\\x6e\\x45\\x0c\\xb4\\x43\\x64\\x61\\x35\\x64\\xc9\\x04\\x1e\\xac\\x04\\x0c\\x96\\x3e\\xdb\\x72\\x42\\xf8\\x1b\\xe5\\x43\\xdf\\x90\\x3b\\xd1\\x81\\xd4\\xd4\\xdd\\xe9\\x5e\\xf4\\xc7\\xba\\xd7\\xf0\\x66\\xfa\\x09\\x43\\x2e\\x84\\xd1\\x66\\x95\\x13\\x7e\\xf6\\xc9\\xb3\\x8e\\x85\\x5b\\x97\\xce\\x32\\x7d\\xa4\\xd8\\xc5\\xfe\\xfd\\xa2\\xf7\\x68\\x23\\x6f\\xdf\\x3e\\x99\\xdb\\x41\\x6b\\x2e\\x04\\x05\\xb5\\x78\\x8f\\x5e\\x68\\x27\\x1a\\x11\\x76\\x81\\xdb\\x03\\xe9\\x0c\\x52\\x17\\xfa\\xd1\\x88\\x79\\xf0\\x04\\xda\\xa7\\x30\\xff\\x2d\\xef\\x2c\\x70\\x81\\x15\\x1b\\x69\\xaf\\x3f\\xc1\\x43\\xaa\\xa8\\xcf\\x15\\xc3\\x24\\x18\\x3b\\x89\\xda\\xd7\\x6b\\x4b\\xdd\\x38\\x75\\xd4\\x31\\xce\\x3f\\x4d\\x78\\x32\\xd1\\x53\\x40\\xea\\xd7\\x4c\\x49\\xbb\\xe1\\x1a\\x52\\xa4\\x85\\x67\\xd2\\xd1\\xbe\\x9b\\x8a\\x12\\x89\\xa8\\xfe\\xb3\\x68\\xe5\\x09\\x5d\\x64\\x7a\\xf9\\x4a\\x21\\xf6\\x56\\x76\\x03\\xd7\\x32\\x34\\x46\\xdf\\x6f\\x84\\x3e\\x35\\x38\\x51\\xec\\xb7\\x77\\x7b\\x97\\x32\\x19\\x61\\xc1\\x63\\xdc\\xf4\\x95\\x2f\\x3a\\xe2\\x7a\\x07\\x27\\xc7\\xfb\\x7b\\xfb\\x68\\x3a\\x9b\\x0b\\xbc\\x07\\x46\\x53\\x0e\\x37\\x44\\x05\\x06\\x3b\\x02\\x3d\\x81\\xb3\\x78\\x52\\x54\\x56\\x78\\x5c\\x5e\\x18\\x4c\\x4e\\x24\\xc6\\xc3\\x54\\xd0\\xc0\\xf0\\x74\\xff\\xd8\\xd0\\xd4\\xe0\\x84\\xe4\\x2b\\xfb\\x7f\\x36\\xf3\\xef\\x18\\x58\\xe9\\x9a\\x1a\\xab\\x2b\\xdc\\x5c\\xed\\x6d\\x9e\\x1e\\xaf\\x16\\x76\\x8a\\x93\\x74\\x55\\x78\\x59\\x3a\\x1b\\x7c\\x5d\\x3e\\x49\\x82\\xe0\\xff\\x59\\xd3\\xe2\\xc2\\x50\\x12\\x1e\\x4e\\xf7\\x8d\\x0e\\x8c\\x8b\\x76\\xab\\x19\\x98\\x18\\x9a\\x1a\\x1f\\xe7\\xbd\\x76\\xd6\\x39\\x39\\x38\\xdd\\xce\\x6e\\x24\\x6a\\xae\\x9c\\x7e\\x1f\\xc2\\x2f\\x5c\\x37\\xb6\\x7d\\x57\\x11\\x33\\x31\\x37\\xd6\\x35\\xd4\\x3b\\xff\\x17\\xcd\\xcd\\xdd\\xed\\xbd\\x3d\\x42\\x6f\\x09\\x32\\x16\\xc9\\xff\\x38\\xe1\\x85\\xa1\\xc4\\x7c\\xe6\\x94\\x55\\x75\\x0d\\x60\\x42\\x03\\x39\\x98\\x63\\x66\\xc1\\xae\\x14\\xa6\\xac\\xdd\\xa3\\x2e\\x49\\xbe\\x3b\\xfb\\x8d\\xe9\\x37\\xa8\\xeb\\x07\\xb6\\x21\\x84\\x54\\xd4\\xbd\\x17\\x09\\x0b\\x79\\x04\\x61\\x2d\\x7e\\x1f\\xb1\\x19\\x6c\\x31\\x5a\\xcf\\xbc\\xb1\\x22\\x66\\xac\\x02\\xef\\xc4\\x21\\xfd\\x9b\\xef\\xf3\\xd1\\xfc\\x28\\x47\\x02\\xbf\\x3c\\xf8\\x90\\x5e\\x5b\\xa0\\x65\\x8f\\x9d\\x84\\x9b\\x11\\x09\\x4e\\x32\\xd4\\xd6\\xb2\\x9b\\x42\\x38\\xb1\\x8f\\xf2\\xb3\\x38\\x50\\x41\\xb7\\xe9\\x58\\x64\\x56\\x6f\\xce\\x26\\x54\\xe5\\xf3\\xa6\\xc8\\x90\\x9c\\xed\\xd4\\xb6\\x67\\xe2\\x29\\xbb\\x02\\xf0\\xa0\\xb2\\x36\\xfe\\x4f\\x77\\xf7\\x6f\\xf4\\x56\\x12\\xe5\\x87\\x75\\x6b\\x6d\\x57\\x59\\x62\\xee\\xeb\\xad\\xf1\\x77\\x99\\xab\\xc3\\xf1\\x9b\\x12\\xad\\x88\\x3f\\x8b\\xcd\\xe2\\x45\\x82\\x85\\x4d\\x2d\\xe9\\x82\\x99\\xd8\\xd3\\x66\\xa8\\x7b\\x4d\\x9f\\x78\\xe6\\xa7\\xe1\\x3e\\xf8\\xb6\\x9b\\x7b\\xc2\\xb0\\x87\\x4f\\xba\\x64\\x8d\\x65\\x3a\\xdb\\x14\\xb7\\xfb\\x57\\x8d\\x47\\xd5\\xd9\\xf3\\xb9\\x3c\\x5e\\x7f\\x6d\\x07\\x47\\x54\\x7c\\xed\\x9e\\x03\\x1f\\xef\\x6a\\xa7\\x87\\xec\\x26\\x70\\x8f\\x94\\x53\\x30\\x68\\xe8\\x46\\x58\\x8f\\xb2\\x45\\x0d\\xc0\\xe5\\xc0\\x08\\xd3\\xc0\\x9c\\x77\\x78\\xeb\\x00\\xc0\\x00\\xe3\\x1d\\x48\\x2e\\xa8\\xe9\\x00\\x40\\x1b\\x80\\x21\\x90\\x76\\x07\\xe7\\x47\\x20\\x61\\x9f\\xe2\\x0e\\xe6\\x0d\\xee\\x8b\\xf1\\x2c\\xe7\\xad\\x8a\\xa6\\x45\\x79\\x42\\xda\\x69\\xca\\x74\\x0e\\x06\\x4f\\x09\\x9b\\x84\\xcd\\x76\\x89\\x29\\xb4\\x74\\xea\\x8f\\x77\\xa7\\xd7\\x08\\xdf\\x92\\x3f\\xc8\\xf2\\xdd\\x75\\x8e\\xa4\\xb4\\xa1\\x54\\x72\\xed\\xae\\xc9\\xb0\\xf2\\x64\\xff\\xfc\\x50\\x02\\xf0\\x9b\\x67\\x83\\xb0\\xc9\\xfb\\xfe\\xf2\\x14\\x44\\x5b\\xb4\\x18\\x8a\\xca\\x32\\xe5\\x73\\xf6\\x07\\xfd\\x2a\\xa0\\x9b\\xba\\xef\\x25\\xb1\\x36\\x77\\x6a\\x64\\xf3\\x5a\\xe7\\x24\\x49\\x25\\xf1\\x4d\\x02\\x1f\\x76\\x7b\\xbc\\x96\\x50\\x4c\\x97\\xfb\\x85\\x8d\\xce\\xe2\\xa5\\x3b\\xc6\\x03\\x23\\xed\\xa3\\xfd\\xf0\\x22\\xe6\\xfc\\x2a\\x4c\\x36\\x34\\x21\\x66\\x32\\xc1\\x35\\xcf\\x31\\x55\\xb4\\x90\\x38\\x25\\x26\\x28\\x3f\\x9c\\x20\\xdf\\x2e\\x01\\x1e\\x7d\\x92\\xb5\\xff\\x33\\x5a\\x6d\\xc5\\xc3\\x32\\x67\\xe4\\x6d\\x35\\x8e\\xd0\\x64\\x4e\\x6a\\x41\\xf4\\x58\\x78\\x86\\xab\\x60\\xf6\\x24\\xaa\\xb9\\x43\\xaa\\x7d\\x65\\xe3\\x44\\xc9\\x9c\\xc0\\xdc\\x9a\\xfc\\x5b\\xfe\\x4e\\x5d\\x4d\\xac\\x9f\\xe6\\x59\\x4e\\xaa\\x84\\x1a\\xa1\\xab\\x9c\\x55\\x75\\x37\\xaa\\xa0\\xfe\\x0f\\xac\\x85\\xce\\xb9\\x64\\x3e\\x01\\xbe\\x7d\\x6a\\x14\\x70\\x25\\xb2\\x26\\xbc\\xd6\\xa7\\x06\\x80\\x3f\\x53\\xe6\\x04\\xc9\\xe6\\x75\\xfa\\xa7\\xdd\\xed\\x18\\xae\\x8e\\xb7\\xbe\\x35\\x0f\\x57\\x73\\x55\\x83\\x00\\x91\\x6f\\x2f\\xff\\x4e\\xc8\\xc2\\x94\\x13\\xba\\x46\\x91\\xc3\\x68\\xf6\\xd6\\x90\\x94\\xe3\\xe4\\x85\\xd3\\x32\\x50\\x76\\x3e\\xd2\\xbd\\xe0\\x3c\\xf1\\x10\\xcb\\xc5\\xc7\\x22\\xfa\\x67\\x87\\xf3\\xd1\\x88\\xd3\\x76\\xec\\x5c\\x00\\xd7\\xc5\\xd4\\x6a\\xf2\\x05\\xfd\\x6a\\xde\\x7b\\xb6\\xa5\\x86\\xe6\\xaa\\x66\\x1a\\xe6\\x60\\x3c\\xf4\\x55\\x10\\x5f\\x6a\\x5e\\x63\\xc0\\xf1\\x1f\\xd1\\xea\\x84\\xd8\\x5f\\x17\\x74\\x6e\\x57\\xee\\xb1\\x69\\x6f\\xdf\\x55\\x1b\\xbc\\x47\\x88\\x9b\\xf5\\x81\\xce\\x46\\x67\\xbb\\x64\\xd0\\xdd\\xa8\\x3d\\x8c\\xe5\\x97\\xa2\\x24\\xbf\\x82\\x87\\x23\\x59\\x56\\xa5\\x16\\x06\\xb9\\x07\\x5f\\x7f\\x4e\\xe7\\xde\\xde\\xe3\\xfa\\x7d\\x21\\x1c\\x73\\x4a\\x1d\\x48\\xd8\\xcc\\xeb\\xb8\\x56\\x5e\\xd2\\xb8\\x41\\xc0\\x71\\x40\\x65\\x03\\xfa\\x4b\\xa0\\x3f\\x0d\\x54\\x2b\\xdc\\x29\\x68\\x97\\x23\\xa9\\xa2\\xfc\\xc6\\x25\\xa7\\xc9\\x6d\\xcc\\xeb\\x7c\\xc7\\x6c\\xcd\\x37\\x9e\\xc8\\x6d\\xcc\\xfb\\xd0\\x15\\x0e\\xa1\\x37\\x69\\x53\\xea\\x7d\\x6a\\x8b\\x0a\\x77\\xd5\\xf7\\x38\\x0b\\x24\\xf9\\xc4\\xca\\x05\\x63\\xbd\\xc4\\x36\\x38\\x10\\x86\\xa7\\xd9\\xe9\\xd0\\x85\\x22\\xd6\\x52\\xca\\x6c\\xa5\\x76\\x53\\xf2\\x50\\x49\\x36\\xfe\\xe5\\x61\\x9f\\xd1\\xfe\\xa3\\x7b\\x6c\\x24\\x5c\\x12\\x61\\x7c\\x1d\\xfd\\x79\\x8a\\x4f\\xd5\\x7f\\xa5\\x88\\x31\\x0c\\x91\\xe8\\xcf\\xfa\\x3a\\x36\\x3e\\x4d\\x48\\xb6\\xbb\\x9a\\x77\\x3f\\xb2\\x15\\x6a\\xee\\x8d\\xc9\\x47\\xe8\\xae\\x0a\\x92\\x52\\x8d\\xa3\\x24\\xd1\\x17\\x56\\x48\\x8f\\xf6\\x8e\\xc5\\x38\\xc7\\xa4\\x75\\xd1\\xdd\\x04\\x44\\x2f\\x3c\\x4e\\x52\\xa2\\x8f\\xbd\\x41\\x1e\\x2c\\xe7\\xb8\\x86\\x63\\xb8\\x06\\xd5\\xbd\\xfc\\xab\\xf4\\xb3\\x4b\\x27\\xce\\x88\\x40\\xd1\\xc7\\x9e\\xab\\x38\\x55\\x2c\\x78\\x91\\xa0\\x88\\x0c\\x40\\xcc\\xc5\\xbe\\x4f\\x67\\xf6\\x9f\\x59\\x91\\xed\\x35\\xcb\\xeb\\x34\\x38\\xc6\\xb8\\xd8\\x30\\xfa\\xde\\x28\\xf0\\xbb\\x9a\\x7c\\xdb\\xf8\\x99\\x06\\x0c\\x38\\xfd\\xf1\\x04\\xf1\\x53\\x23\\x4f\\x58\\x57\\x7f\\xd4\\x25\\x44\\x4e\\xb2\\xed\\x5a\\x52\\x43\\xf0\\x79\\xfd\\xea\\x52\\xc9\\x7e\\x08\\x1c\\x87\\x16\\xa3\\xac\\xda\\xc8\\x70\\xa0\\xa9\\xf1\\xeb\\x6f\\xf6\\x82\\x86\\xa5\\x39\\x99\\xdb\\x59\\x89\\xda\\xd5\\xeb\\x06\\xd0\\xfe\\xb2\\xab\\xa1\\x3a\\x99\\xc3\\xa9\\xf3\\xa4\\xac\\x8e\\x77\\x7b\\x66\\x32\\xcb\\x53\\x56\\x7e\\x11\\x61\\xeb\\x06\\xf8\\xb7\\x71\\xfb\\x79\\xa6\\x20\\x74\\x8f\\x8e\\xfd\\xb7\\x96\\x81\\x4c\\xb9\\xfb\\x80\\x22\\x9b\\x42\\x65\\x82\\xab\\xa2\\xc6\\xa1\\x2d\\x6a\\xc7\\x2c\\x43\\xbd\\xd7\\xdd\\x75\\x45\\x4c\\x75\\xb5\\x36\\x59\\x37\\xe9\\x05\\x82\\x7d\\x5c\\xd3\\x38\\x0b\\x8e\\x43\\x2b\\xc4\\xf9\\x93\\xf6\\x16\\xd4\\xe9\\x06\\xf9\\xfc\\xb8\\x36\\x61\\x75\\x43\\x86\\x6e\\xbd\\x8c\\xfe\\x65\\xe8\\x4a\\x6f\\x85\\x6e\\x2e\\xad\\xf7\\xc5\\xd4\\xa3\\xa0\\x4c\\x6d\\xfa\\xbf\\x38\\xd3\\x4c\\x2d\\x1c\\x7a\\x8d\\x56\\xde\\x92\\x4c\\xe2\\x20\\x2d\\xd6\\x42\\xe3\\x2a\\x8c\\x5a\\x4d\\x88\\x41\\xd0\\xf5\\x27\\xe7\\x97\\xfb\\x67\\x8c\\x24\\x8c\\x28\\xb1\\xed\\x77\\x01\\xfb\\xb9\\xc5\\xc8\\xbc\\x7f\\x7b\\x9a\\xa0\\xad\\x97\\xc0\\x17\\x2d\\x33\\xc4\\x62\\x39\\xd3\\xba\\x5e\\x11\\x59\\xf9\\x83\\x2c\\x3e\\x0c\\x34\\xf1\\xfa\\x06\\xec\\xd2\\xed\\xaf\\xcc\\x2d\\xa9\\xe6\\xee\\x27\\xfd\\xdf\\xf3\\x1a\\x16\\x78\\xc3\\xa1\\x0e\\x63\\x22\\xfb\\xb1\\x38\\x78\\x54\\xf0\\x3f\\xab\\xbb\\x3c\\xe9\\x5a\\xb4\\x6f\\xf7\\x9a\\x7c\\x1c\\xd5\\x3a\\x4c\\xf6\\x77\\x9c\\x92\\x09\\x74\\xa2\\xfe\\x91\\xb3\\xc2\\x24\\x26\\x5f\\xd0\\xa7\\x9d\\xa9\\x37\\xfd\\x8e\\xe1\\x1d\\x18\\x46\\xb9\\xe7\\xda\\xa3\\x41\\x4c\\x4f\\x78\\xe8\\x01\\x79\\x6d\\x4e\\xf0\\x5e\\x86\\x64\\x0e\\xf0\\x7d\\x21\\xf3\\x64\\x75\\xad\\x24\\xc1\\xc4\\x37\\xd0\\xb5\\x1f\\x76\\xef\\x77\\x27\\x95\\x16\\x1f\\x58\\x4a\\xbb\\x5b\\xe6\\xfb\\x47\\x87\\x81\\x98\\x6f\\x51\\x6f\\x59\\x6f\\xe1\\x6f\\x69\\xb9\\x1e\\x2c\\xf8\\x88\\xdf\\xd8\\x04\\x89\\x80\\x11\\xc6\\x7b\\x94\\x7b\\x9c\\x7b\\x21\\x5c\\xe4\\x6f\\x20\\x6c\\x2e\\x1c\\xe4\\x70\\x10\\xca\\x2d\\x69\\xfc\\x43\\x0c\\x0c\\xc8\\xea\\x23\\xe6\\x24\\x98\\x10\\x06\\x44\\xec\\x28\\x57\\xf4\\x99\\x1b\\x06\\x62\\xae\\xcf\\xf8\\x96\\xfb\\x10\\xf9\\x90\\xc9\\x42\\xf6\\x3d\\x2e\\xb5\\x7c\\x99\\x86\\xb8\\x41\\x25\\x9c\\x40\\x82\\xbe\\xcc\\x55\\x85\\x5d\\x43\\x4a\\x3e\\xf8\\x18\\x1e\\xa6\\x34\\xa0\\xe7\\xf4\\xf2\\x27\\x90\\xac\\xd0\\xbb\\x7c\\x61\\x96\\x01\\x69\\xf9\\xca\\x7f\\xf7\\x42\\x75\\xb6\\x60\\xd0\\x85\\xe5\\x03\\xd2\\x6c\\xf9\\xc3\\x24\\x11\\x63\\x92\\x6d\\xbe\\xe9\\xe9\\x7c\\xe4\\xd9\\x8e\\x4b\\x24\\xa4\\x95\\x22\\xb2\\x1e\\x8c\\xb1\\xef\\x7b\\x3d\\x97\\xa7\\x50\\x4b\\x40\\x1f\\xfb\\xed\\x29\\xba\\x52\\x49\\xd7\\x62\\xaf\\xf2\\x93\\x3e\\x2f\\x61\\x97\\xc6\\xf0\\xde\\xc7\\x3b\\x47\\xb0\\xe6\\x46\\x66\\xbb\\xb0\\xea\\x46\\x66\\x86\\x87\\x43\\x99\\x48\\xfa\\x6e\\x1c\\xff\\xc1\\x23\\xc7\\x01\\x53\\x4d\\xaf\\xeb\\xf5\\xe6\\x70\\xe4\\x7f\\x91\\x81\\x9a\\x03\\x9a\\x1c\\x18\\x8f\\xe2\\x14\\xe4\\x50\\xc8\\x58\\x2f\\xc2\\x3b\\x1a\\xc0\\x79\\xdf\\xfc\\x4f\\xd7\\x19\\xb7\\x7c\\x5e\\xee\\x8c\\x8d\\x8f\\x77\\x0e\\xf6\\x8e\\x60\\x25\\xff\\x6f\\x1f\\x7e\\x36\\x17\\xff\\x03\\x91\\x5d\\xb9\\x49\\xba\\xaa\\x2e\\x8f\\xfb\\xdd\\x89\\xd8\\x98\\xec\\xe0\\xc4\\xa8\\x4c\\x4a\\x9d\\xc8\\xf4\\xd0\\x64\\x4c\\x7b\\x01\\x9f\\xd7\\xfa\\xff\\xe5\\x44\\x08\\x2f\\x73\\x63\\xdd\\xdd\\xde\\x54\\x38\\xa3\\xe0\\xff\\x62\\x2b\\xe7\\x86\\xcc\\xec\\x7f\\x4f\\x7e\\x3a\\x7f\\x56\\xac\\x44\\x29\\xec\\xbd\\xd2\\x6a\\x56\\x68\\xc7\\x54\\x53\\xa8\\x71\\x40\\x53\\x13\\xf0\\x19\\xe4\\xe6\\x1a\\xbc\\xbf\\xf9\\xb9\\x2e\\xea\\x69\\x43\\x00\\xbc\\xd1\\xce\\xda\\x55\\x1e\\x18\\x56\\x6b\\xf7\\x1c\\xa8\\x75\\x0e\\x69\\xac\\x77\\x76\\xbc\\x3f\\x42\\x05\\x82\\xf0\\x72\\xa6\\xf6\\xb1\\x99\\x6a\\x1e\\xd3\\x4b\\x54\\x56\\xbe\\xc0\\x15\\x3a\\x36\\x41\\x00\\x0f\\x30\\xe3\\x9b\\xad\\x7e\\x07\\x12\\x2a\\x23\\x52\\x52\\x63\\xfd\\x03\\xe8\\xe1\\x6c\\x3c\\x04\\x3c\\x84\\x31\\x28\\x5c\\xec\\x95\\xac\\x16\\x96\\x36\\xdc\\x89\\x46\\x26\\x8b\\xc0\\x15\\x44\\x9d\\x9e\\x68\\x35\\x3c\\x2b\\x3c\\x92\\x0b\\x3a\\xbc\\xdf\\x60\\x82\\xd0\\x98\\x1c\\x10\\x1c\\x9a\\x6a\\x75\\x80\\xd4\\x79\\xbd\\x5d\\xe8\\x1e\\x88\\x2c\\x18\\x0d\\x7c\\x2c\\x0d\\x2c\\xae\\x40\\x12\\x1f\\x05\\x6f\\x6c\\x2c\\x2c\\xbc\\x00\\x64\\x9a\\x81\\xc9\\x9d\\x06\\xa5\\xd0\\x7a\\x52\\x26\\xa3\\x60\\x51\\x49\\x90\\xc4\\x11\\x5a\\x6a\\x8c\\x15\\xd1\\x16\\x03\\x10\\x1a\\x5a\\x02\\x23\\x1c\\x78\\x10\\xf7\\x23\\x2e\\x41\\x8a\\x08\\x90\\x6e\\x3b\\x98\\xdf\\x4f\\x3c\\x3c\\x3d\\x50\\xd8\\x1c\\x7c\\xeb\\x7f\\x0e\\x9d\\xb2\\x15\\x23\\x27\\x74\\x59\\x45\\xcd\\x00\\x08\\xad\\xa6\\x0e\\x03\\x00\\x00\\xff\\x57\\x00\\x00\\x00\\xff\\xff\\xf5\\xc4\\xaa\\x25\\x20\\xfc\\x00\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.woff\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff2 = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x00\\x19\\x40\\xe6\\xbf\\x77\\x4f\\x46\\x32\\x00\\x01\\x00\\x00\\x00\\x00\\xc8\\xa8\\x00\\x10\\x00\\x00\\x00\\x01\\xbf\\xc0\\x00\\x00\\xc8\\x47\\x00\\x02\\x00\\x41\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x40\\x1c\\x84\\x48\\x06\\x60\\x00\\x90\\x6a\\x08\\x81\\x1c\\x09\\x97\\x17\\x11\\x08\\x0a\\x85\\xcd\\x3c\\x85\\x8c\\x07\\x01\\x36\\x02\\x24\\x03\\xa0\\x22\\x0b\\x90\\x24\\x00\\x04\\x20\\x05\\x86\\x20\\x07\\xc7\\x51\\x0c\\x81\\x2e\\x5b\\xce\\x95\\x91\\x02\\xaa\\x63\\xed\\xe0\\x27\\x60\\x14\\x75\\xde\\xb6\\x4d\\x52\\xfd\\x10\\x30\\x39\\xc1\\xdc\\x74\\x12\\x15\\xef\\x3a\\x6f\\x5b\\x7f\\x12\\xf8\\x84\\x59\\xc2\\x36\\x06\\xae\\xad\\xee\\x4a\\x98\\xd9\\x5f\\xac\\xa9\\xb2\\xff\\xff\\xff\\xff\\x7f\\x4b\\xb2\\x88\\x43\\x9b\\x59\\xcc\\xde\\xdd\\x21\\x04\\x5c\\xd1\\xb6\\xf2\\x49\\xfa\\xff\\x90\\x07\\x51\\x8c\\x48\\x81\\x73\\xdb\\xf5\\x91\\x43\\x46\\x46\\xb8\\x0d\\x29\\x61\\xbc\\xe7\\x36\\x4d\\x73\\x9b\\x92\\xc6\\x9c\\xd2\\x32\\x67\\x1a\\x42\\x44\\x17\\xc9\\x57\\x24\\x6c\\xe5\\x63\\xc7\\x71\\xa2\\x8f\\x52\\xa5\\xb6\\x72\\x1c\\x6c\\xaf\\xa5\\x4d\\xd6\\xa7\\xbe\\xaa\\x65\\x73\\x93\\xa9\\xb6\\xb6\\xe5\\x2b\\x1b\\x49\\x66\\xc0\\xe4\\xec\\x2e\\x39\\x4d\\x81\\xc2\\x1a\\x11\\xa3\\x6b\\x1b\\x03\\x07\\xe5\\x52\\x10\\x10\\x65\\x15\\x61\\xd6\\x4d\\x69\\x8d\\xe7\\xb6\\x87\\x4c\\xdf\\x88\\xe6\\x8f\\xaa\\x17\\x53\\xf6\\x26\\x73\\xd9\\x0b\\xdc\\x71\\xe2\\xa7\\xdc\\x7b\\xdf\\x69\\xb4\\x2f\\x53\\x35\\xde\\xed\\xc7\\x6c\\xed\\x87\\xef\\x10\\xbe\\x91\\x6a\\x6b\\x65\\x76\\x32\\x95\\xed\\x11\\x7f\\x8c\\x5b\\x73\\xfd\\x58\\xa0\\x27\\x09\\x33\\x54\\x28\\xb2\\xb3\\x58\\xa2\\xad\\x7f\\xe1\\x65\\xb7\\x74\\x59\\xb9\\x96\\x7d\\xa8\\x12\\x2d\\x35\\x66\\xad\\xff\\xe4\\x91\\xc5\\xef\\x7a\\x8e\\x83\\x1f\\x27\\x8b\\x44\\xee\\x82\\x20\\x41\\x24\\x88\\x04\\xc9\\xc9\\x9d\\x05\\x97\\x1c\\x2e\\x67\\xc1\\x23\\x4d\\xd3\\xf2\\x7b\\x71\\x40\\x40\\x87\\x0b\\x7f\\xb1\\x74\\x62\\xe1\\x1f\\x17\\x9a\\x62\\xf5\\x82\\xa7\\xdd\\x1b\\xb3\\x24\\x63\\x48\\xb1\\x04\\xfe\\x35\\x9f\\x8b\\xe9\\x0d\\x78\\x98\\xbe\\x9d\\x1d\\x5f\\x48\\x4d\\xf6\\xf7\\xfb\\x5e\\x29\\x36\\xe7\\x72\\x6b\\xe9\\x66\\x5e\\x6f\\xc8\\xcd\\x7d\\x56\\xf8\\x90\\xf5\\xbf\\xc1\\xaf\\xa6\\xad\\x31\\x36\\x86\\x59\\x2f\\x4c\\xc9\\x92\\x9e\\x09\\x79\\xf4\\x13\\xfe\\xa3\\xef\\xea\\x3b\\x37\\x32\\x3b\\x6b\\xc0\\x67\\xf4\\x3c\\x59\\x0b\\xf7\\x02\\xf8\\x14\\x54\\x5f\\x4b\\xbb\\x2b\\x2e\\xd7\\xc8\\xcd\\x26\\x4f\\x04\\x45\\x4a\\x81\\x69\\x55\\xcc\\x3e\\xc8\\xa2\\xad\\x50\\xa1\\x9b\\x5c\\xe1\\xca\\x20\\x54\\xa7\\x42\\xf7\\x80\\xe6\\x76\\xbf\\x8d\\x8d\\x30\\x86\\x44\\x19\\xa3\\x73\\x30\\x2a\\x26\\xa8\\x43\\x46\\x89\\x38\\x68\\x0b\\x45\\x44\\x2c\\x0c\\x2a\\x47\\xd4\\x48\\x1b\\x93\\x18\\xd1\\x36\\x61\\xbe\\xd5\\x94\\x48\\xc6\\xc8\\xe1\\x06\\x68\\x9b\\x1d\\x4e\\x9d\\x95\\xd8\\x80\\x81\\x1d\\x58\\x48\\x89\\x8d\\x22\\x21\\xb4\\x08\\xd8\\x20\\x61\\x15\\xc6\\x0c\\xb4\\x41\\xfd\\xe9\\xcc\\x6d\\xce\\xfd\\xc4\\xd8\\xe6\\xb9\\x48\\x57\\xad\\xcb\\xef\\xed\\x63\\xff\\xbf\\x7d\\x06\\x54\\x59\\x2b\\x2b\\x9b\\xa4\\x99\\x3d\\x20\\x34\\x00\\xfc\\x15\\x7f\\x9b\\x07\\xf8\\xb9\\xf5\\x03\\x05\\x31\\x89\\x94\\xda\\xd8\\x58\\x15\\xab\\x7c\\xb5\\x4a\\x56\\xc0\\x58\\x93\\x63\\xc0\\xc8\\x10\\x0c\\x54\\xca\\x20\\x14\\x2c\\x54\\xac\\xba\\x3b\\x50\\xef\\xac\\x8b\\xca\\x5f\\x75\\x77\\xde\\xbf\\xff\\xfb\\xfe\\x57\\x57\\x66\\x69\\x08\\xac\\x2f\\x34\\x81\\x64\\xc9\\x1e\\x5a\\xa2\\x24\\x3a\\xe6\\xfe\\x8a\\xf6\\xea\\x2a\\x6f\\xdf\\x64\\xcb\\xe6\\xf8\\xe7\\xf9\\xfb\\x67\\xad\\x7d\\xdf\\xaf\\xf0\\xa7\\x61\\x20\\x09\\x06\\x9a\\x66\\x9c\\x65\\x92\\xcd\\x47\\x68\\x78\\x44\\xeb\\xd8\\xf7\\xa9\\x5a\\xdd\\xfd\\xc2\\x07\\x28\\xc9\\xce\\x24\\x2c\\x0f\\x29\\xc7\\x20\\x4d\\x88\\x0a\\x1b\\xa4\\xa2\\x17\\x93\\x82\\x16\\xa6\\x26\\xc0\\x98\\xb0\\x27\\x17\\x8a\\x3a\\x5f\\xe6\\xb8\\x7e\\x69\\xfb\\x25\\xa8\\x5f\\x10\\xcb\\xdd\\xb2\\x37\\xc3\\xe5\\xa1\\x9e\\x61\\xb1\\x52\\xed\\xec\\x4f\\x0f\\x45\\x4f\\xd7\\x7e\\xe9\\x5a\\xba\\x0f\\x8c\\x8d\\xb5\\xd6\\x53\\xa9\\x50\\x01\\xe6\\xba\\xa8\\xe0\\x79\\x60\\xc1\\x9c\\x9f\\x6b\\x47\\xc2\\x02\\x09\\x5d\\x37\\x16\\x8a\\x08\\xb5\\xde\\x26\\x5b\\xde\\x8d\\x3c\\x2d\\x90\\x50\\xa4\\x04\\x86\\x14\\xfc\\x8d\\x89\\x6a\\x01\\x04\\x40\\xff\\xfd\\xde\\x5a\\xdf\\xff\\xfa\\xcd\\x92\\x82\\xf1\\x59\\x86\\x68\\xc9\\x4a\\xa1\\x82\\x4b\\x12\\x95\\x85\\xc1\\x21\\x11\\x9e\\xc2\\x6f\\xe1\\x10\\x36\\x64\\x35\\x33\\x7b\\x2e\\x2a\\x8e\\xad\\x07\\x8c\\xf0\\xff\\xfd\\xde\\x77\\xeb\\xfe\\xb7\\xf7\\x3e\\x37\\x32\\x13\\xd9\\x6d\\x8c\\x0b\\xc5\\xa1\\x90\\x38\\x84\\xee\\xc2\\x76\\x85\\x11\\xa5\\x14\\x89\\x90\\xc8\\xa0\\x32\\x08\\xd3\\xd4\\xcf\\x1c\\xff\\x61\\xbf\\x9f\\x1d\\x2a\\x21\\x11\\xaa\\x86\\xc2\\xb6\\x50\\xb0\\xd8\\xb7\\xfc\\x55\\xec\\xd9\\xb9\\xf7\\x80\\xb7\\x2d\\xad\\xed\\x46\\xfc\\x55\\xdc\\x63\\xb1\\x46\\xa9\\xa4\\xf2\\x66\\x98\\x5a\\x64\\x6a\\x9b\\xd7\\x17\\x5a\\x5c\\x48\\xae\\xe0\\xff\\x8e\\x3f\\xf8\\xc4\\x4b\\x5b\\x5e\\x48\\xd6\\x1c\\xfa\\x4f\\x5b\\x49\\x41\\x78\\x66\\x25\\x4f\\xfe\\x06\\xd2\\x64\\xe6\\x31\\x69\\xc9\\x08\\x92\\x51\\xda\\xbd\\xbb\\x20\\x76\\x10\\x2b\\x0b\\x5c\\xad\\x31\\x47\\xc0\\x51\\x53\\xfd\\xdf\\xa5\\x49\\xcc\\xec\\x82\\x14\\xe7\\x97\\xda\\x0f\\xb7\\x7e\\x5d\\x76\\x65\\xc9\\xee\\x92\\x90\\xc5\\x73\\x9c\\xc4\\x45\\xc0\\x5c\\xe0\\x0a\\xff\\x98\\xd2\\x5f\\x77\\xfc\\x5a\\xe9\\x2a\\x23\\x6e\\xdb\\x78\\x1f\\x7d\\xa9\\x2c\\x83\\xd6\\x1e\\x5a\\xe7\\x97\\x1a\\xb0\\x7c\\x80\\x46\\x17\\xc0\\x40\\x00\\xc4\\x40\\x0f\\x04\\x00\\x10\\x3c\\x74\\xb3\\x49\\xb7\\xad\\x32\\x4c\\x29\\x5c\\xe1\\x90\\xa4\\xc8\\xd5\\xb6\\xe0\\xc1\\x52\\x24\\x95\\xd7\\xb1\\x61\\xac\\x9c\\x1b\\x91\\x21\\x3c\\x5f\\x3a\\xfb\\xfe\\xdc\\x56\\x93\\x64\\x84\\x7e\\x1e\\xc3\\xc8\\x1e\\x7b\\x3c\\xe0\\x21\\xd6\\x03\\xd4\\xc2\\x07\\xea\\x8f\\x50\\x39\\x06\\xe9\\x66\\xd1\\x06\\xe1\\x5e\\xab\\x95\\x90\\xfc\\x20\\x2a\\xa7\\x22\\x0d\\x1d\\x51\\xe7\\xf7\\xb9\\xca\\xfb\\xdc\\x57\\x4f\\x9c\\xa1\\x23\\xe6\\xd4\\xbc\\x57\\x72\\x1c\\x0a\\x9d\\x87\\xc0\\xf7\\x28\\x73\\xf7\\x92\\x9a\\xa5\\x0e\\xde\\x7a\\xf8\\x98\\x0e\\xf3\\x2d\\xdb\\xcc\\xcf\\xfb\\xd7\\xdb\\x1d\\x3d\\xd0\\x63\\x9f\\x0f\\xb0\\x0b\\xb4\\x6a\\xb7\\x6d\\x13\\xaf\\xd3\\x2a\\x29\\x21\\x30\\x04\\xe6\\xbd\\x6b\\xea\\xbf\\x28\\x9f\\xbf\\x3d\\xf5\\x0e\\xf1\\x06\\xdf\\x02\\x8e\\x0c\\xcc\\xec\\x4e\\x6f\\xaa\\x7e\\xed\\x2e\\x28\\x5a\\xa4\\x23\\x65\\x7b\\xee\\xa4\\x0b\\xd9\\xa9\\x3a\\x79\\xae\\x68\\x48\\x42\\xbe\\x94\\xcb\\x90\\x9a\\x06\\x2f\\xed\\x62\\xdf\\xdb\\xa0\\xdd\\x05\\x40\\x2e\\x00\\x92\\x42\\x20\\x65\\x00\\x4a\\x08\\xa4\\x99\\xff\\xee\\x02\\xf2\\x07\\x40\\xd8\\x07\\x92\\xfa\\x37\\xa4\\xf4\\x03\\x25\\x47\\x39\\x4a\\xfe\\x29\\x09\\xa0\\xa8\\x40\\x3a\\x49\\xb4\\x7d\\x21\\xc5\\x2e\\x3a\\xe6\\xea\\x42\\x9a\\x3e\\x15\\xed\\x5d\\x77\\x6d\\x7b\\xbf\\xba\\xb6\\xbe\\x4a\\x20\\x83\\xf9\\x54\\xdf\\xad\\x77\\xf2\\x2f\\x76\\x42\\xb1\\x3f\\xa5\\xf5\\x61\\x83\\x8d\\x30\\xc2\\xca\\xc8\\x32\\xdc\\xd9\\x69\\x67\\xe7\\x05\\x2b\\x5d\\xa6\\xd9\\xe9\\x0e\\x4d\\xa2\\x5a\\xa6\\x96\\xa9\\xd7\\xb1\\x37\\xe9\\x9b\\xc7\\x93\\xfc\\xf3\\xe0\\xce\\x3f\\x8f\\x77\\xf2\\x67\\xb8\\x73\\x32\\xc8\\x54\\x99\\x5a\\xda\\x32\\x30\\xcf\\x36\\xa5\\x6d\\xac\\x63\\xd6\\x95\\x89\\x99\\x14\\x24\\x81\\x44\\x20\\x9e\\xf6\\x63\\x55\\x06\\xbc\\xc4\\x1f\\x89\\xf4\\x06\\x0f\\x5d\\x76\\x07\\xbc\\x91\\xc4\\xff\\xe2\\x7a\\x16\\xea\\xb5\\xe8\\x4d\\xb4\\xde\\xff\\xea\\xd2\\xd5\\xee\\x45\\x2e\\xf3\\xde\\x2e\\x5b\\xc2\\xc3\\xd2\\x6d\\x88\\x65\\xe9\\x2b\\x24\\x39\\x74\\x2e\\x01\\x7d\\xc9\\xbe\\xeb\\x49\\x77\\xc1\\x2d\\x99\\x0a\\xb8\\xf5\\x75\\xeb\\x08\\x00\\xc3\\xb6\\x12\\xfc\\xff\\xd3\\x9f\\x96\\xf7\\x73\\xef\\x21\\x8c\\x74\\xac\\xe5\\x10\\xae\\xa7\\xae\\x4a\\x56\\xb8\\x7f\\xdf\\xbb\\x3c\\x78\\x24\\x97\\x30\\x12\\x56\\x08\\x63\\x87\\x39\\x3a\\xff\\xa9\\x02\\x64\\x2b\\x4c\\x6d\\x8d\\xdc\\xdb\\x57\\xd9\\x5e\\xaa\\xdf\\xbe\\xe5\\xbd\\xb5\\x08\\xd9\\x24\\xcd\\x55\\x90\\x05\\xb9\\x68\\x29\\xaf\\x2c\\x65\\x79\\x89\\xab\\x7d\\x9e\\xf3\\x05\\xcd\\xb1\\xe7\\x5b\\x52\\x36\\x21\\x84\\x37\\x54\\x1e\\xaa\\x10\\x6b\\x4a\\x8a\\x8a\\x1f\\x72\\xfd\\xa1\\xe2\\xf7\\x53\\x1d\\x20\\xe3\\xa2\\x24\\x5a\\xf3\\x69\\x83\\x13\\x68\\xaf\\x65\\x61\\x6a\\x5c\\xde\\x05\\xd1\\xc8\\x12\\xff\\xb9\\xf7\\x37\\x9e\\x2c\\x3d\\x12\\xa1\\xfc\\x6b\\x27\\xd4\\xb8\\x7f\\x29\\xcd\\x21\\x94\\xe0\\xde\\xbd\\xce\\xf6\\x91\\xeb\\x32\\x02\\x21\\x11\\xfe\\x12\\xeb\\x7e\\x46\\xd7\\x4a\\x7e\\xbb\\x85\\x63\\x2c\\x37\\x96\\xba\\xa2\\x2e\\xc7\\x34\\x12\\x23\\x40\\xa2\\x05\\xba\\xcc\\x52\\x82\\xcd\\xfe\\x3a\\x35\\x87\\x8f\\x04\\xd2\\xfa\\xe0\\xcf\\x99\\x2f\\x71\\x6d\\xca\\x54\\x10\\x84\\x18\\x42\\x12\\x86\\x63\\xb7\\x42\\x6f\\xec\\xaf\\x23\\xc4\\x25\\xdb\\xb9\\xf8\\xf2\\xd3\\xc2\\x98\\x46\\x71\\xf2\\x37\\xeb\\x8f\\x2e\\x2d\\x2b\\x22\\x94\\x46\\x94\\x88\\x43\\xb2\\xbd\\x99\\xfb\\x7f\\xcf\\xef\\xfc\\xbe\\xa7\\x7b\\x2a\\xbb\\xef\\x99\\x7d\\x8d\\x2b\\x4b\\x8b\\x51\\x5a\\xb4\\x88\\x12\\xa5\\x94\\x28\\x11\\x6d\\xac\\xff\\xfd\\x5f\\xe6\\xea\\x7f\\xe2\\x20\\xbe\\x71\\xd6\\x75\\xce\\xdb\\xd6\\x2c\\xa1\\x29\\x5d\\x4a\\x80\\x94\\x7b\\x53\\x40\\xff\\xef\\xf7\\xb2\\xe9\\x2f\\x74\\x2e\\xec\\x0b\\xc5\\xac\\x34\\x68\\x83\\x24\\xc8\\x20\\xb9\\x7b\\x23\\xc8\\x64\\xed\\x24\\xd9\\x7b\\x11\\xc1\\xa5\\xa2\\xe8\\xe8\\x60\\x0a\\x11\\x40\\x03\\xf3\\x94\\x51\\xce\\xbf\\xc5\\x99\\x10\\xf5\\x25\\x11\\x88\\x36\\x29\\x10\\x88\\x8e\\xc0\\x09\\x80\\xe8\\x58\\x5d\\x06\\xa2\\x13\\x70\\x02\\x10\\x9d\\xad\\x3c\\x10\\x3d\\x8f\\x76\\x90\\xf5\\x02\\x75\\xf4\\xd2\\x80\\xcc\\x5b\\x60\\x28\\x47\\x19\\xa1\\x00\\x70\\x8f\\x9c\\xac\\x83\\xf7\\x0d\\xb5\\xa0\\x8c\\x00\\x1f\\x98\\x60\\xfb\\x3f\\xf2\\xcb\\x31\\x84\\x57\\xfb\\x97\\x0d\\x0c\\x0e\\x0d\\x8f\\x8c\\x8e\\x8d\\xcf\\x9a\\x3d\\x67\\xee\\xbc\\xf9\\xbb\\xa8\\x98\\x58\\xb8\\x68\\xf1\\x92\\xa5\\xcb\\x96\\xaf\\x60\\x4f\\x5d\\x57\\x4c\\x35\\x24\\x7d\\xf1\\x9f\\x13\\x06\\x13\\x00\\x21\\x18\\x41\\x31\\x9c\\xc5\\xe6\\x70\\x79\\x7c\\x01\\x21\\x14\\x89\\x25\\x52\\x99\\x5c\\x41\\x49\\x23\\x87\\x35\\xbe\\x0d\\x12\\xa2\\x59\\x8b\\x56\\x6d\\x1e\\x79\\xec\\x89\\xa7\\x00\\x08\\xc1\\x08\\x86\\x13\\x24\\x45\\x37\\xb3\\x1c\\x2f\\x88\\x92\\xac\\xa8\\xb2\\xbc\\xdf\\xfd\\xf0\\xd3\\x2f\\xbf\\xfd\\xd1\\xad\\x47\\xaf\\x3e\\x91\\xfe\\x1a\\xf0\\xcf\\xa0\\x21\\xc3\\x46\\x8c\\x1a\\x3b\\x6e\\x13\\x26\\x4d\\xa5\\x33\\x4b\\x11\\x18\\x6a\\x18\\x62\\x06\\x98\\x0b\\x0b\\x67\\x71\\xad\\x98\\x81\\x04\\x51\\x86\\xfd\\x46\\x43\\x18\\xf5\\x7b\\x53\\x83\\xf1\\xa2\\x4b\\x8e\\x0b\\x66\\x6d\\xbe\\xa8\\xcd\\xdf\\xc2\\x39\\x6e\\xa7\\xed\\x0c\\xe7\\xed\\x3c\\x2c\\xb8\\xb8\\x5c\\xb0\\x3c\\x9e\\x8d\\x01\\xcc\\x10\\xbf\\xc1\\xc6\\x17\\x95\\x05\\x1f\\x50\\xba\\xb8\\xa4\\x0f\\x50\\x6f\\xfb\\x3c\\xc2\\x2b\\x1c\\x34\\x98\\x73\\x7f\\x0c\\xc6\\x5b\\x90\\xde\\x50\\x00\\x7d\\x00\\x1c\\x70\\x64\\xbc\\x0d\\x85\\x06\\xf0\\xea\\x1f\\x50\\xfd\\x0a\\x66\\x0f\\xa6\\x7e\\x4b\\x21\\x57\\xac\\x44\\x00\\xe2\\x94\\xb8\\xce\\xb2\\x35\\x02\\x10\\x8c\\x54\\x0f\\x5f\\x8c\\xb4\\x63\\x4a\\xf4\\x36\\xc1\\xa5\\x79\\xa9\\x06\\x32\\x1a\\x3c\\xd7\\x00\\x30\\x2a\\xa8\\x61\\xc0\\x65\\x66\\xa9\\xa0\\x92\\x27\\x74\\xf1\\x9e\\x21\\xa6\\xf9\\xaf\\xcd\\x6a\\x25\\x9e\\x44\\xb2\\x68\\x97\\xaf\\x0e\\xe9\\xb2\\xa2\\x94\\xa3\\xeb\\x62\\x6b\\x06\\xcf\\x52\\x09\\xe4\\xb1\\x87\\xf6\\xc2\\x5e\\x59\\xb7\\xcd\\x1f\\x24\\x8c\\xe6\\x52\\x1b\\x9a\\x43\\x7f\\x9b\\x08\\xe9\\x21\\x27\\x5c\\x0f\\xec\\xd0\\x12\\x5e\\x85\\x77\\xe1\\x53\\xf8\\x16\\x15\\x9d\\xe9\\x48\\x74\\x8e\\x01\\xf1\\x44\\x3c\\x1b\\x13\\xe3\\xbb\\xf8\\x3d\\xf6\\x47\\xce\\x43\\x4a\\x2d\\x91\\xb9\\xd0\\xc5\\x47\\x73\\xbf\\xf1\\x59\\xd8\\x3c\\x6c\\x05\\xbe\\x07\\x23\\x84\\xb9\\x6e\\xe7\\x6c\\x64\\x63\\xbb\\x6a\\x37\\xec\\xbe\\x3d\\xb4\\x67\\x98\\x08\\x4c\\x14\\xe6\\x56\\xf2\\x4e\\xb2\\x22\\xc5\\x57\\x72\\x35\\x34\\x61\\x14\\xc6\\xe1\\x72\\xf8\\x89\\xc5\\x60\\x13\\x7b\\x11\\x7b\\x25\\x9a\\x8a\\xe6\\x22\\x17\\x5d\\x61\\xfd\\xb0\\xc1\\xf8\\xd7\\x8b\\xed\\x3f\\x3c\\x3f\\xf5\\x41\\x17\\x79\\xbc\\x70\\xb1\\x7e\\x72\\xf0\\x7a\\xdf\\xaa\\x78\\xca\\x0b\\x3e\\x30\\xcc\\x0c\\x3c\\x11\\x66\\x90\\x40\\x12\\xd9\\x2c\\x97\\x9f\\x0e\\xb7\\x62\\xd7\\x54\\x3d\\xdf\\xea\\x24\\x61\\x17\\xfc\\xd1\\x09\\x70\\xcc\\x3e\\x23\\xe4\\x86\\x9b\\xa1\\x26\\xb4\\x86\\xd7\\xe1\\x63\\x4b\\x1e\\x14\\xb8\\x52\\x92\\x8e\\x1c\\xb4\\x57\\x81\\x0a\\xd3\\x39\\x25\\xeb\\xfd\\xfe\\x63\\xff\\xbb\\x2f\\x1a\\xc3\\x27\\xbc\\x07\\xdb\\x2f\\x6f\\x8f\\x86\\x5d\\x83\\xcd\\x15\\xff\\x5b\\x3a\\x20\\x9d\\x24\\x49\\x90\\x94\\x28\\x62\\x01\\x3d\\x92\\x09\\xbc\\xb9\\xce\\x07\\xed\\xde\\x6b\\xdf\\x6c\\x0f\\x82\\xdc\\x46\\xc2\\x6d\\xc0\\xe1\\x79\\x1c\\xa0\\xff\\x96\\x6d\\x3f\\x2d\\x72\\x3f\\x01\\x28\\x35\\xa0\\x14\\x81\\x92\\x05\\x6a\\x07\\x50\\xdb\\x80\\x12\\x01\\x4a\\xbc\\xc5\\x1a\\x9b\\xff\\xff\\x47\\x91\\x7d\\x00\\x24\\x30\\x20\\xcc\\xbd\\x8f\\xd6\\xcb\\xf7\\x5e\\x5a\\xaf\\x31\\xbd\\xae\\xec\\x9d\\xd8\\x5b\\xdc\\xdb\\x03\\xf4\\xa1\\x3e\\x08\\xc0\\x1e\\x01\\xa0\\xa9\\xdb\\xff\\x70\\x97\\x01\\xb6\\x8d\\x06\\xac\\x82\\x37\\x97\\xba\\x0a\\x24\\x9b\\x64\\xac\\xe4\\x52\\x01\\xd0\\xbf\\xb8\\xf9\\xdb\\xfe\\x3d\\xf0\\xeb\\xf1\\xff\\x7f\\xbb\\x3f\\xfc\\x8f\\xfa\\x37\\x0d\\xf0\\xc9\\x9d\\x4c\\x19\\x82\\x36\\xb3\\xdf\\x74\\x40\\xa8\\x7f\\x4c\\x3f\\xb6\\xef\\x1f\\x80\\x8f\\xbf\\x60\\xd6\\x3d\\xb2\\xc1\\x3a\\xbd\\xcc\\x7c\\x43\\x97\\xd0\\x1b\\xf7\\xd5\\xbd\\xaf\\xcf\\xd2\\x49\\x33\\x51\\xfc\\xc0\\xd0\\x7b\\xd5\\x7e\\x77\\x2d\\xdf\\x59\\xae\\x58\\x27\\x6e\\x02\\x87\\x78\\x9b\\xf9\\xe3\\x7f\\x19\\xe0\\x5d\\x40\\x11\\x50\\x2f\\x1c\\x72\\x47\\xb0\\x51\\xb4\\xb3\\x8e\\x31\\x5a\\x5b\\x62\\xb7\\xbe\\x0c\\xa0\\xf3\\x37\\xd9\\x6f\\x07\\xf4\\x67\\x60\\xbd\\x00\\x36\\x0b\\xc0\\x96\\x01\\xd8\\x9b\\x80\\x7d\\xd9\\x3a\\xac\\x7f\\x23\\x1b\\x64\\x3f\\x32\\xca\\x3e\\x34\\xf6\\x2f\\x08\\x0b\\xb1\\x85\\x7f\\xd4\\xb8\\x26\\x34\\xa9\\x29\\x4d\\x13\\xa5\\x21\\xad\\x5a\\xc3\\xb5\\xee\\xbf\\x8e\\xcf\\xeb\\x5d\\x0c\\x00\\x34\\x3c\\xf8\\x2f\\xae\\x7d\\x8b\\xc3\\xe7\\x70\\xba\\x7b\\x78\\xf6\\x2f\\x81\\x18\\x96\\xca\\xec\\xca\\x4b\\x2c\\x89\\x8c\\x52\\xc5\\xa8\\x4b\\xde\\xe0\\x19\\x68\\xdf\\x86\\x9b\\x28\\xad\\x74\\x34\\x3c\\x81\\x98\\x1a\\x9d\\x4c\\xa1\\xd2\\xe8\\x0c\\x66\\x03\\x65\\xda\\xcf\\xe6\\x70\\x79\\x7c\\x41\\x43\\x65\\xf3\\x17\\x89\\x25\\x52\\x59\\x23\\xe5\\xde\\xca\\x70\\xf7\\xff\\x65\\x77\\x87\\xc7\\x50\\xdd\\x88\\x51\\x33\\x4a\\xd6\\x45\\x12\\x99\\xa2\\x2c\\xc2\\x59\\xe7\\xca\\x57\\x73\\x4b\\xb8\\x7b\\x78\\xf6\\xa3\\xa6\\x97\\xb7\\x4f\\xf8\\xfa\\xd5\\xfd\\x2d\\xa8\\x99\\x36\\x75\\xd3\\x7c\\xee\\x5a\\x5e\\xad\\x86\\x9f\\x97\\x37\\xef\\x3e\\xf9\\xec\\x0b\\x5f\\x12\\xb8\\xf5\\x55\\xc1\\x1b\\x21\\x18\\x41\\x31\\x9c\\x48\\xec\\xa8\\xbf\\x30\\xa3\\x62\\x8e\\xc6\\x93\\x29\\x4b\\x94\\xe6\\x7f\\x35\\xb0\\x24\\xab\\x35\\xdd\\xa0\\x6e\\x6c\\x67\\xde\\xeb\\x66\\xd7\\x76\\xfb\\x83\\x8f\\xbb\\xfb\\x07\\xff\\xbd\\xbc\\x7d\\x1c\\x4e\\xad\\x8d\\x19\\x37\\x51\\x7b\\x93\\xa6\\x4c\\x9b\\xd1\\xd9\\xac\\x2e\\xbd\\xcd\\xe9\\x6f\\xde\\x80\\x0b\\xde\\xfe\\x1b\\x8d\\xf7\\x0f\\xc6\\x4c\\x50\\x82\\x54\\xcb\\xb8\\x80\\x4e\\x1a\\xb6\\xac\\x39\\xd6\\x5c\\x95\\x97\\x99\\x68\\x62\\x89\\x73\\xe7\\x8c\\x90\\x32\\x9e\\xcc\\x3f\\x96\\x53\\x49\\x35\\xb5\\xd4\\xad\\xe1\\xa6\\x91\\xa6\\x79\\x0b\\x3c\\xb9\\xfd\\xc6\\x50\\x5a\\x69\\x5b\\xf7\\x3f\\x9d\\x74\\x0d\\x1b\\x49\\x2f\\xfd\\x0c\\x32\\xcc\\x28\\x32\\x2f\\x15\\xfe\\x60\\x8c\\xb7\\xaa\\x6f\\x72\\xdf\\xf8\\x66\\x22\\xe3\\x4c\\x4c\\x9a\\x8a\\x92\\x69\\x66\\x96\\x32\\xcf\\x02\\xc7\\x22\\x86\\x6a\\xbe\\x14\\x59\\x3d\\xc9\\x55\\x5d\\x0b\\x7c\\x82\\xcb\\xf8\\x65\\xe6\\x58\\xad\\x1b\\x1a\\xd4\\x6b\\x14\\xd5\\x24\\xa6\\x39\\x38\\xc4\\x0f\\xe6\\x44\\x33\\x3e\\x24\\xc8\\x41\\xd4\\x90\\x18\\x92\\xa2\\x40\\xac\\xd3\\xa2\\x90\\x1c\\x85\\xc2\\x49\\x21\\x55\\x41\\x0a\\x8e\\x1b\\x63\\x83\\x8e\\x0c\\xff\\x74\\x01\\x43\\xab\\x03\\x40\\x80\\xce\\xaa\\xe1\\xdc\\xbd\\x8e\\x84\\x31\\x1f\\xae\\x13\\xff\\x67\\x1d\\x38\\x36\\xc6\\xc2\\x16\\xd2\\x71\\x3d\\x24\\x5f\\x05\\x61\\x14\\xeb\\x84\\xd3\\x6c\\x37\\x2f\\xca\\xca\\xd4\\x4d\\xdb\\xf5\\xc3\\x38\\x2d\\x57\\xeb\\xcd\\x76\\xde\\xdb\\x3f\\x38\\x3c\\x3a\\x3e\\x39\\x3d\\x3b\\xbf\\xb8\\xbc\\xba\\xbe\\xb9\\xbd\\xbb\\x7f\\x78\\x64\\x07\\xcb\\x86\\xa3\\xe3\\xa2\\xe7\\x07\\x21\\x6f\\x8b\\x1c\\x52\\x6e\\x1e\\x39\\x9f\\x42\\xa5\\xd1\\x0b\\x18\\x4c\\x16\\x9b\\xc3\\xe5\\x01\\x17\\xeb\\x42\\x66\\x37\\x2f\\x8b\\xa7\\xc3\\xcd\\xe9\\xe1\\xee\\xe9\\xed\\xeb\\xe3\\xe7\\x2f\\x12\\x8a\\x69\\x89\\x14\\x5f\\xa2\\x24\\xef\\x91\\x72\\x8c\\xbb\\x77\\xea\\xd0\\x31\\x86\\x84\\x42\\x04\\x88\\x15\\x86\\x12\\x15\\xc7\\x29\\x51\\x14\\x72\\x8a\\xc5\\x24\\x8a\\x36\\xa5\\x12\\xa6\\x0c\\x65\\x12\\x8c\\x42\\x09\\x4a\\x52\\x22\\xed\\x95\\xc6\\x51\\xea\\x38\\x4d\\x3c\\x49\\x5c\\x86\\x4f\\xb9\\x52\\xc8\\x57\\x3a\\xd5\\x84\\x50\\xaf\\x70\\xf6\\xe9\\x5b\\x4d\\xea\\xff\\xc5\\x1a\\x3f\\x64\\x15\\x2b\\x44\\xc7\\x74\\x48\\x87\\xe9\\x52\\x96\\x91\\x34\\xa9\\x33\\xba\\xa0\\x08\\x9d\\x6e\\x55\\xa5\\xfd\\xa9\\xd6\\x11\\x1d\\xd7\\x29\\x4d\\x68\\xc1\\xb8\\x38\\xe6\\x2c\\x59\\xb6\\x62\\xf1\\xe6\\x33\\x21\\xd0\\x7f\\xb7\\x9d\\x77\\x6c\\xe0\\x64\\x4a\\xb9\\x41\\x28\\x33\\x5c\\xe5\\x1a\\x67\\x59\\xe0\\x3a\\x65\\xcc\\xc9\\x3d\\x0b\\x73\\x38\\x56\\x93\\x12\\x1b\\x88\\x53\\x00\\xc5\\x8e\\xef\\x5b\\xf6\\x39\\x3a\\x7c\\x42\\x5a\\x18\\x39\\xdb\\xdf\\x13\\x9f\\x23\\x3e\\xb6\\xa8\\xbb\\x1f\\x25\\x4e\\x4c\\xef\\x7b\\xdd\\x97\\x2a\\x4d\\x41\\xc0\\x6f\\x9b\\xf8\\xc5\\x7e\\x19\\x01\\x82\\x87\\xb4\\xc8\\xd2\\x93\\x7f\\x0c\\xdc\\x3c\\xc1\\xde\\x7d\\x4c\\x5c\\x4e\\xb3\\x7e\\x29\\x87\\x6a\\x3f\\x7f\\x46\\x71\\xfd\\xef\\x15\\xfe\\x14\\x15\\x1b\\x5b\\x3b\\xef\\xe1\\x05\\xc4\\xe6\\x13\\x5a\\x49\\x89\\x01\\x01\\xb3\\xf4\\x30\\xa0\\xa0\\x7d\\xf1\\xc3\\xaf\\xe8\\xf8\\xe3\\xb4\\xd6\\x4b\\x59\\x6c\\x16\\xaf\\x3f\\x25\\x6f\\xde\\xb5\\x5f\\x59\\x7e\\x74\\x9d\\x3c\\xc5\\x8b\\x13\\xb7\\xee\\xae\\xdb\\x97\\xac\\x9e\\x20\\x56\\xf7\\x59\\x07\\x89\\xcf\\x12\\xbb\\xb6\\xc1\\x8e\\x89\\xfb\\x41\\x92\\x02\\x63\\xbe\\xeb\\x2d\\xd9\\x75\\x2a\\x1b\\x74\\x16\\x4d\\x33\\xd7\\x73\\xcd\\x5d\\x6f\\x2f\\x79\\x9c\\x8b\\x43\\x5c\\xce\\x06\\xd7\\xe9\\x20\\xe7\\x40\\x02\\x89\\xb0\\x34\\x57\\x65\\x1a\\x1a\\x79\\x99\\x30\\x14\\xb1\\x14\\x55\\x1f\\x9b\\x91\\x34\\xa0\\x61\\x3a\\xe5\\x6a\\xbf\\x9b\\x3c\\x2a\\x12\\x67\\x0c\\xcd\\xb1\\xe8\\x74\\xb1\\x21\\x49\\x7c\\x54\\xaf\\xa8\\xd9\\xbe\\xdf\\xd3\\xf5\\x5d\\xbb\\x61\\xc3\\xf8\\x55\\x2a\\x2f\\x5d\\x7d\\x9d\\x93\\xe5\\x18\\xab\\xb8\\x4b\\x82\\xa7\\xd4\\xcd\\x88\\x70\\x3d\\x59\\xc0\\x00\\x27\\x97\\x27\\x5a\\xf4\\x22\\xd9\\xcf\\x3f\\x1b\\x8a\\x26\\xa0\\x58\\x51\\xf9\\x21\\x52\\x20\\x29\\x26\\x09\\x38\\x48\\xc0\\x71\\x15\\xd9\\xfc\\xd3\\x2a\\x17\\x76\\x9c\\x22\\xcd\\xd3\\x66\\x99\\x6f\\x4e\\xe7\\x31\\xb9\\x5e\\x25\\x8b\\x78\\xc9\\x6b\\x7a\\x8e\\x14\\x9a\\x97\\x33\\x0a\\xab\\x89\\x33\\x10\\x34\\x17\\x2d\\xda\\x7e\\x66\\x05\\x64\\x24\\x83\\x69\\x43\\x5a\\xcc\\xa6\\x05\\x14\\xb6\\x05\\x24\\x6c\\x75\\x4e\\xbe\\x96\\x0a\\xaa\\x4e\\x8e\\x51\\xc7\\xf4\\xbc\\x1c\\xe7\\x5c\\x15\\xce\\xe6\\x57\\x69\\xaa\\xf4\\xb4\\x9e\\x27\\xef\\xcc\\xe7\\x4b\\x3e\\x50\\x43\\x57\\x2d\\xe7\\xfc\\x35\\x9b\\x07\\xea\\x40\\x52\\x89\\xaa\\x3c\\x46\\x05\\xaf\\x69\\x8a\\x99\\xda\\x17\\xfe\\x96\\xaf\\xe5\\x07\\x1a\\x10\\x4d\\x7d\\xa4\\xf4\\x4f\\xab\\x82\\xe7\\xaf\\x1b\\x75\\x29\\x6a\\x7f\\xb4\\xd4\\x29\\x5a\\xa0\\x89\\x27\\x6f\\x53\\xd7\\xe5\\x3c\\x9f\\xa1\\x56\\xb1\\xef\\x81\\x16\\x9e\\xbc\\x4a\\x4f\\xde\\x8c\\xe8\\xce\\x9f\\xb5\\x74\\xae\\xdd\\x46\\x67\\x50\\xde\\xf9\\x1b\\x6b\\x75\\x24\\x8b\\x34\\x5c\\x06\\x41\\x71\\xec\\xd5\\x47\\xbe\\xd6\\x0c\\x31\\x26\\x12\\x7e\\x99\\xba\\xe6\\x52\\x68\\x8e\\xcd\\xb6\\x90\\xe5\\x88\\xc4\\x1b\\x92\\x7d\\xc8\\xee\\x10\\x04\\x37\\x15\\x5f\\x42\\x92\\xac\\x04\\x59\\xc9\\x4e\\x56\\x7b\\xf6\\xc6\\x4e\\xfb\\xc6\\x7a\\x0e\\x1d\\x15\\xdb\\x1c\\x11\\x38\\x9e\\x24\\x09\\x67\\x6d\\xba\\x13\\x74\\xb0\\xd5\\xd5\\x72\\xfe\\x36\\xd1\\xa0\\xa8\\x05\\x15\\x8a\\x64\\x84\\x4e\\xa3\\x0a\\x92\\xfd\\x6e\\x0e\\x6d\\x07\\x03\\xea\\x34\\xb6\\x3f\\x36\\xda\\x1d\\x3b\\xfe\\xed\\xdc\\xe9\\x1c\\xe8\\xa2\\x33\\x7a\\x39\\xd0\\x43\\x97\\x0c\\xfa\\x8a\\x02\\x03\\x25\\x01\\x43\\x45\\x83\\x91\\x62\\xc0\\x58\\xb1\\x20\\x28\\x0e\\xbc\\x52\\x3c\\x98\\x28\\x69\\x89\\x0d\\x34\\x20\\x1f\\x81\\xc3\\x1f\\xc1\\x77\\x68\\x0b\\x7e\\x2e\\xd6\\x7b\\xd8\\x62\\xd9\\xc9\\x0b\\xd6\\xb4\\xb9\\x66\\xe8\\x39\\xe0\\x05\\xe0\\x7d\\xc0\\x39\\xe0\\x25\\xe0\\x15\\xe0\\x03\\xc0\\x6b\\x80\\x9b\\xf8\\x8f\\xb0\\x11\\xad\\x9f\\x71\\xc7\\xd9\\x85\\x66\\xaa\\x99\\x7d\\x66\\x33\\x5b\\xc4\\x25\\xe5\\x28\\xd4\\x5e\\x37\\x27\\xe0\\xd8\\x71\\x9c\\x04\\x4e\\x21\\xad\\xe4\\x84\\xb8\\xd5\\x1b\\x96\\xc3\\x4a\\x3f\\x08\\xfc\\x68\\x20\\xb0\\xb3\\x4d\\x23\\x31\\x9c\\x26\\xdd\\xe8\\x60\\x91\\x72\\x10\\x9c\\x5d\\xc5\\x99\\x51\\x8a\\x4c\\x25\\xce\\xa1\\xab\\xb2\\x7e\\x18\\x17\\xd8\\x82\\x73\\x06\\x87\\x46\\x1c\\x63\\xb8\\x2f\\x8e\\xf9\\xc5\\xed\\xeb\\xe7\\xf5\\xae\\xdd\\xe8\\xe7\\x5a\\x5c\\x0a\\x5c\\x42\\xa3\\x56\\xb2\\xbe\\x91\\x40\\xea\\x8d\\xc0\\x15\\x86\\xe3\\x63\\xe0\\x1a\\x2c\\x86\\xc8\\x06\\x74\\x95\\x1b\\x74\\xa5\\xcc\\x59\\x0d\\x5a\\x01\\x05\\xf5\\x8d\\x8f\\xda\\x77\\x4b\\xaa\\x55\\x95\\x72\\xfa\\x39\\x66\\x84\\xe2\\x74\\xad\\x51\\x70\\xe4\\x52\\xe0\\x16\\x60\\xd0\\x7c\\x8f\\xa6\\x1b\\x92\\xca\\xe5\\x83\\x76\\x42\\xd2\\xd8\\xe8\\x94\\xdd\\x4d\\x99\\x1a\\x86\\xb4\\xd0\\x14\\x21\\xc2\\xe2\\x8f\\xa9\\x3e\\xba\\xb8\\x49\\x3f\\x95\\xdd\\xad\\xdc\\x5a\\x23\\xde\\x4d\\x72\\x8c\\x26\\xbc\\xa8\\xed\\x43\\x3e\\x44\\x5b\\x16\\xb4\\xc4\\xd1\\xae\\x22\\xc4\\x65\\xfa\\x06\\x4a\\xca\\xbe\\x91\\x48\\xdd\\x9f\\x8a\\x29\\xa9\\xee\\x83\\x96\\xf2\\xe3\\x0a\\x3f\\xb6\\x9a\\x84\\x8e\\x6d\\xe9\\x3e\\xc9\\xa8\\xc7\\x96\\x28\\x7e\\x46\\x1c\\xe6\\x2d\\xea\\x65\\x2b\\x74\\x96\\x96\\xf2\\x12\\xc3\\x70\\x7d\\x70\\x05\\x00\\xd4\\xa0\\x32\\x8c\\x05\\x00\\x4f\\xf2\\xcb\\x02\\x67\\xe3\\x13\\xcf\\x81\\x7b\\xf5\\xfd\\x4a\\x1f\\x26\\xee\\xf2\\x6c\\xbc\\x11\\x78\\x18\\x8b\\xe1\\x29\\xee\\xf7\\x2f\\x41\\x46\\xd0\\x51\\xec\\x51\\x5f\\x50\\x78\\x62\\xcc\\xb1\\xdc\\xa7\\x41\\xa3\\x79\\xf7\\x43\\x38\\xa3\\x92\\x43\\xd0\\xb7\\x6e\\xf9\\x4b\\xc5\\xa3\\x95\\x17\\x5b\\xa9\\x68\\xf0\\x12\\xa7\\x00\\xf9\\xfa\\x02\\x4f\\xdc\\x55\\xb1\\x0b\\x2d\\x4b\\xb3\\xeb\\xfc\\x04\\x3b\\xa6\\x9f\\x61\\x1a\\x0c\\xf6\\x58\\xcb\\xd7\\x49\\x63\\x1e\\xfa\\x89\\xe6\\x97\\x03\\x2f\\x63\\x5d\\x5e\\x56\\x29\\x20\\x8b\\x1f\\xbe\\xf7\\xd7\\xe0\\xd6\\x11\\xcc\\x7a\\x03\\xee\\x5c\\x63\\x0a\\x3d\\x05\\x48\\x5a\\x64\\x73\\x1a\\xb4\\x0c\\x9c\\xb8\\xc0\\xdb\\xe0\\x12\\x0c\\x0b\\x3d\\x2b\\x65\\x1a\\x35\\x44\\x08\\x26\\xf5\\xb1\\xfd\\x0e\\xdd\\xb7\\x71\\xf4\\xc3\\xff\\x11\\xab\\xc0\\x83\\xa2\\xc3\\xd2\\xa2\\x8f\\x96\\x3f\\xec\\xae\\x0e\\xfa\\x2c\\x1f\\x7d\\xaf\\x09\\x41\\x75\\xcf\\x87\\xa0\\xb7\\x2d\\x51\\x41\\x9c\\x2f\\xff\\x51\\x0e\\x22\\xd3\\x98\\x48\\xc1\\xcf\\xc8\\xde\\xc0\\x65\\x12\\xf8\\x14\\x76\\xd4\\x8d\\x9f\\xd1\\xd1\\x4d\\xe7\\xaa\\x1d\\xfb\\x02\\x6e\\x2c\\xae\\x1c\\x8b\\x59\\x98\\x06\\x2d\\x9b\\x06\\xa4\\x6b\\x7c\\x85\\x63\\x51\\xa7\\x1c\\x67\\x7d\\x8d\\x09\\x52\\x83\\x79\\x0e\\x5f\\xf2\\x20\\x5c\\xf9\\x42\\x80\\xaf\\xa0\\x0d\\xae\\xba\\xc9\\x60\\xbe\\x54\\x83\\x07\\xe1\\xea\\x0c\\x48\\x0d\\x20\\x70\\xcd\\x4d\\x06\\xb3\\xa5\\x16\\x3c\\x08\\xd7\\x66\\x40\\xea\\x00\\x81\\xeb\\x6e\\x32\\x98\\x2b\\xf5\\xe0\\x41\\xb8\\x3e\\x03\\xd2\\x00\\x08\\xdc\\x70\\x93\\xc1\\x02\\x69\\x04\\x0f\\xc2\\x8d\\x19\\x90\\x26\\x40\\xe0\\xa6\\x9b\\x0c\\xe6\\x48\\x33\\x78\\x10\\x6e\\xce\\x80\\xb4\\x00\\xc2\\xce\\xa5\\x06\\x3b\\x5d\\xc6\\x74\\xb5\\xa6\\xd7\\xf3\\x6e\\xcb\\x9a\\x2f\\xb0\\xcd\\xa9\\x04\\x08\\x5f\\xe4\\xb6\\x5a\\x86\\x91\\xee\\x80\\xd0\\x54\\xde\\xbb\\x81\\x7c\\x40\\x4c\\x3b\\x8e\\x7d\\xd9\\xe9\\xd3\\x6c\\x14\\xf9\\x4c\\x03\\xf9\\x82\\x40\\xc7\\xb5\\x2f\\x37\\x7d\\x9b\\x8d\\x22\\xdf\\x69\\x20\\x3f\\x10\\x38\\xf7\\xd4\\xa8\\x0b\\xe1\\xec\\xc9\\xe9\\x2b\\x20\\x95\\x1d\\x0c\\xce\\x2d\\x85\\x6f\\xba\\x1f\\x27\\x1f\\xa0\\x03\\x82\\x70\\x67\\x95\\xf9\\x42\\x6c\\x35\\xff\\xa7\\xa6\\x1f\\xc0\\x7e\\x00\\xa6\\xfd\\x02\\xd8\\x61\\x25\\x0a\\xe8\\xfe\\x61\\xd0\\xfa\\x17\\xe0\\xc0\\x83\\x50\\x48\\xb6\\xd8\\x11\\x94\\x20\\x49\\x52\\x8d\\x80\\x4d\\x89\\xc6\\xf1\\x12\\x74\\xef\\x1e\\x53\\x2a\\xa5\\x2f\\x05\\x04\\xeb\\x2b\\x62\\x14\\x52\\x2a\\x5c\\x8d\\x37\\x33\\x9f\\x4b\\x68\\xb1\\x16\\xdd\\x3f\\x19\\x48\\xe5\\xca\\xa3\\xcf\\x79\\x4c\\x2c\\xcd\\x9c\\x64\\x65\\x34\\xb1\\x55\\xf3\\x52\\x29\\xd0\\x16\\x43\\x5a\\xc8\\x0a\\x3d\\xd6\\x0a\\xe4\\x11\\x4b\\xed\\xb4\\xeb\\x2e\\x54\\x15\\xfd\\x6c\\x18\\x45\\xeb\\x98\\x41\\x01\\x89\\xd2\\x0b\\x30\\xa0\\xbc\\xac\\x35\\x36\\xb4\\xd1\\x2a\\xed\\xef\\x58\\xca\\x6f\\xe6\\x2b\\xa4\\x92\\x06\\xbf\\xbc\\xbc\\x74\\x4f\\x39\\x31\\x84\\xb9\\xab\\xb0\\x23\\xf3\\xa8\\x59\\xfe\\xe2\\x66\\x46\\x24\\x8c\\x15\\xc5\\xf0\\x94\\x4f\\xda\\x95\\xbd\\x36\\x3a\\x41\\x53\\x2a\\x46\\x29\\xb7\\x17\\x00\\x9d\\xf0\\x29\\x0c\\xd2\\x0b\\xf2\\x7b\\x06\\x97\\xea\\x33\\x84\\xdd\\xee\\x12\\x4e\\xac\\x04\\x85\\x98\\x5d\\xa1\\x3b\\x59\\x94\\xdf\\xd4\\x5f\\x9a\\x8e\\xd9\\xce\\x1b\\x48\\xd1\\x6a\\xbe\\x32\\x7c\\xe5\\xda\\xa5\\x0c\\x95\\xda\\xed\\x82\\x08\\xf8\\xba\\x85\\xff\\x67\\x90\\xf3\\x83\\xf7\\x57\\x91\\x26\\xc5\\x10\\x4a\\xe6\\x13\\x9d\\x6b\\x83\\xb3\\xf3\\xa5\\xed\\x49\\xac\\xcf\\x2e\\xe1\\x9e\\x2b\\x3a\\x0b\\x5b\\x15\\x17\\x65\\xa9\\x10\\x41\\x03\\x4b\\x29\\xc6\\x07\\x0f\\xb6\\xab\\x44\\x4c\\x5a\\x4f\\xb9\\x0e\\x80\\xb3\\xc2\\x7f\\x5f\\x5a\\x29\\xd1\\xa9\\xef\\xa3\\x7b\\x8e\\x98\\x91\\xad\\x5c\\x63\\x14\\xb5\\x26\\xa6\\x47\\x99\\x0b\\x42\\xc7\\x95\\x20\\x13\\xb2\\x1d\\x28\\xe6\\x99\\x75\\x83\\xf9\\x86\\xd9\\xc5\\x0c\\xc9\\xed\\x33\\x09\\x7c\\x11\\x6b\\x7d\\xdb\\x64\\x4e\\x8c\\x95\\xbb\\x85\\xf5\\x04\\x78\\x3c\\x0f\\x3a\\x03\\xf8\\xe6\\x35\\x9e\\x42\\xee\\xc9\\xd6\\x3a\\x70\\x20\\x03\\x83\\x50\\x1f\\x42\\xaa\\x90\\x05\\xf3\\x0a\\x03\\x0b\\x27\\xa5\\x42\\x7a\\xbd\\xdd\\xa8\\x29\\x03\\x44\\x43\\xc8\\x91\\x06\\x17\\x38\\x73\\x11\\xc9\\x8f\\x8a\\xa1\\x0c\\xf7\\x98\\xf4\\x66\\x30\\x86\\x87\\x26\\x6b\\xd0\\x71\\x18\\x75\\x40\\x15\\x20\\x25\\x9c\\x23\\x02\\xa6\\x05\\xa2\\x0d\\x16\\x18\\x23\\x60\\x30\\x48\\xca\\x3d\\xaf\\x39\\xec\\x75\\xd1\\x78\\xc7\\x7c\\xb7\\x65\\x66\\xa6\\xd8\\xbe\\x95\\x2a\\x3b\\x4d\\x39\\x6f\\x26\\x7f\\x38\\xda\\xa7\\xb1\\xb8\\x9d\\x0e\\x2b\\x4a\\xa9\\xc0\\x90\\x42\\xc1\\x37\\x6e\\x04\\x7d\\x8e\\x51\\x48\\x0a\\x9c\\x9e\\x0e\\x8d\\x0e\\xe8\\x80\\x13\\xc7\\xb1\\x43\\x87\\xef\\x5c\\xd2\\x84\\x52\\x96\\xa8\\x1b\\x73\\x7c\\x74\\xbf\\x64\\xed\\x70\\xbf\\x4e\\x21\\x6b\\x70\\x1c\\x67\\xc1\\xe5\\x29\\x5a\\xb8\\xd0\\x96\\x8d\\x1f\\xad\\x01\\xbe\\x94\\xe2\\xf6\\xe0\\xdc\\x39\\x26\\x0c\\xd9\\xf3\\x92\\x84\\x2b\\x5e\\x12\\x50\\xd0\\x12\\x80\\xf9\\x2c\\xc3\\x33\\x46\\x39\\x2a\\x1a\\xab\\xd1\\x32\\xb3\\x6d\\x6e\\x5f\\x18\\x40\\x11\\x70\\x24\\xcf\\x9b\\x49\\x12\\xa5\\x7c\\xdf\\x74\\xe7\\xd1\\x69\\xa4\\x03\\xc8\\x81\\xf3\\x8d\\xb7\\xc4\\xba\\x2e\\xcb\\x5e\\x26\\xde\\x47\\xbd\\xa1\\x39\\xb9\\x39\\x9d\\x71\\x83\\xf3\\x3c\\x0c\\xfb\\x73\\xd7\\x3d\\x20\\xcd\\x69\\xee\\x58\\x0e\\x03\\x0b\\x01\\x1e\\xf0\\xe9\\x86\\x0e\\x67\\x66\\x18\\xc9\\x35\\xd9\\x49\\x1a\\x67\\xc9\\x92\\xc0\\xdb\\xe4\\x79\\xdb\\x75\\xda\\x96\\xe8\\x2b\\x3f\\xb0\\x09\\xde\\xcb\\x71\\xcc\\x21\\x81\\x4c\\xb4\\x90\\xb9\\x16\\x8d\\xd0\\x02\\xac\\x98\\x01\\xa5\\x55\\x10\\xad\\x8e\\x95\\xd0\\x7e\\x5c\\x58\\x51\\xc1\\x31\\xbd\\xcb\\xdc\\x19\\x3b\\x44\\x5a\\x8c\\x4f\\x1e\\xac\\x9b\\x44\\xac\\xb4\\x9e\\x06\\xf6\\x85\\x86\\xc3\\x40\\x51\\xa5\\x44\\x13\\x60\\x19\\x1e\\x36\\xaf\\xb6\\xa3\\x4b\\xc8\\xa3\\xfb\\x84\\xd9\\x46\\x56\\x34\\xf7\\x1e\\xe5\\x58\\x78\\xcf\\xe1\\x45\\x78\\x7c\\x18\\xcd\\xab\\x30\\xc1\\xaa\\xb6\\x5e\\x55\\x77\\x8a\\x5d\\x83\\x07\\x7b\\x95\\xd5\\x75\\x87\\x8f\\x73\\xa1\\x53\\x5a\\xa8\\xbe\\x5f\\x29\\x25\\xc3\\x28\\x02\\xf4\\xd2\\x94\\x3a\\xd0\\xe3\\xb8\\x69\\xaa\\xfb\\xa2\\x93\\x07\\x2e\\x7b\\xc2\\xe8\\x87\\x9d\\x79\\x90\\x81\\x0a\\x6b\\x11\\x79\\x5a\\xa8\\x9e\\xcf\\xa3\\xbc\\xa4\\x19\\x39\\xb2\\x99\\x28\\x28\\x03\\x06\\x51\\x01\\x0a\\xe9\\x63\\x23\\xeb\\xb1\\x02\\xea\\x67\\x26\\x01\\x0c\\x78\\x32\\x8a\\x51\\xbd\\xb2\\xa6\\x50\\xc3\\x61\\xc8\\x3a\\x16\\x69\\xc6\\x36\\x20\\xaa\\xd3\\x8e\\x68\\xfd\\xfc\\xa6\\xb5\\x1f\\xd1\\x81\\x97\\xb1\\xc6\\x45\\x54\\x9b\\x41\\x85\\x64\\x70\\xe9\\x0d\\x4d\\x51\\x0f\\x56\\xe9\\x96\\x0a\\xe3\\xc0\\xfe\\x5a\\x15\\x6a\\xf0\\x16\\x71\\x37\\x20\\x02\\x4d\\xa1\\xd9\\xc3\\x9a\\xdd\\xc3\\x5f\\x7e\\x0c\\x3b\\x40\\xc4\\x6a\\xfc\\xab\\x10\\x65\\x1e\\x1a\\x37\\x65\\x28\\x6b\\x0b\\x6a\\x51\\xac\\x5a\\x7d\\xd0\\xe4\\xc2\\x17\\xbd\\x3d\\x02\\x93\\xfe\\x48\\x90\\xf5\\xe6\\x79\\xbd\\xea\\xc3\\x2d\\x18\\x28\\x11\\xf6\\x25\\xab\\x45\\x7f\\x46\\xfa\\x2f\\x47\\xee\\xbb\\x73\\x5d\\xe6\\x03\\xe9\\x7e\\x6e\\x6c\\xb2\\x65\\x36\\xbb\\xd8\\xd9\\x8e\\x36\\x96\\x55\\xb7\\xa3\\x49\\x32\\x61\\x81\\x2d\\xb8\\xb4\\x71\\x4f\\x9e\\x7f\\x0d\\x7a\\x41\\xce\\x91\\x02\\x1e\\x6e\\x97\\xf5\\xe5\\x55\\xd6\\xdb\\xa5\\x36\\x29\\x2a\\xb3\\x93\\xa8\\x76\\xcb\\x9d\\x0c\\x10\\xd2\\x7c\\xcb\\xec\\xd9\\x98\\x67\\xf7\\xb5\\x1c\\x61\\xbb\\x67\\xb5\\xd9\\x98\\xb7\\xc1\\xdf\\xe0\\x7b\\xb8\\xd4\\xe2\\xc9\\xe2\\x56\\xe1\\x56\\xf0\\x99\\x83\\x81\\x01\\x12\\x3d\\xfd\\x90\\x8c\\x0f\\xa6\\x8b\\xef\\xb4\\x16\\x9b\\x09\\x26\\x16\\xae\\x31\\xc1\\x14\\x10\\x32\\x98\\xc1\\xcb\\x0d\\x38\\x61\\x2a\\xdd\\x3f\\xae\\xaf\\x87\\x2c\\xe8\\xbc\\x84\\x8d\\x70\\x66\\x6b\\xdc\\xe5\\x57\\x08\\x2f\\x46\\x89\\x71\\x3b\\xdc\\xda\\x98\\x87\\xb6\\x08\\xd8\\x97\\x00\\xe7\\x06\\x36\\xe4\\x0a\\xc4\\x1c\\x19\\x8c\\xe9\\xb3\\x62\\x52\\xa0\\x16\\x6f\\xd3\\x14\\xf0\\x81\\x74\\x10\\x63\\x51\\xfb\\x8b\\x6a\\xed\\xb2\\x1f\\xaa\\x8b\\x14\\x66\\xba\\xf7\\x93\\x3e\\x7e\\x3c\\x8a\\x28\\xfe\\xc4\\x24\\x84\\xd0\\x85\\x40\\x03\\x43\\x18\\x78\\x0f\\x66\\x8e\\x6c\\x8e\\x3d\\xfe\\xf5\\xbf\\xff\\xb3\\xcb\\x72\\x4e\\x4c\\x26\\xc9\\x79\\x68\\x46\\x3c\\x63\\x29\\xdf\\xfb\\xdf\\x7f\\xe3\\x45\\xf0\\x55\\xbe\\x66\\xe0\\xae\\x8b\\x27\\x54\\x71\\x32\\x19\\x50\\x48\\xa7\\x74\\x64\\x6d\\xb1\\xc2\\x14\\x95\\x6d\\xa6\\xb3\\x09\\xe4\\xbd\\x2e\\xc5\\xc5\\xb8\\x38\\x75\\x66\\xe7\\x46\\xb4\\x9c\\xc7\\xda\\x21\\xc2\\x05\\x6f\\x13\\xa6\\xd2\\x17\\xae\\xb7\\xb6\\x92\\xa3\\x93\\x8d\\xdc\\xec\\x1f\\x34\\xb9\\xd2\\x3f\\x4c\\xa7\\x12\\xcc\\xef\\x1d\\x83\\x9e\\xc5\\x88\\x0e\\x10\\x66\\x70\\x24\\xd7\\x90\\x64\\x97\\xef\\xc1\\x5d\\xb0\\xb6\\x44\\x8b\\xfc\\x2c\\x05\\x63\\x47\\xbe\\xb7\\x6b\\xe7\\xf7\\x06\\x9a\\xb6\\x3e\\x3c\\xa5\\x0a\\x32\\xc1\\xdb\\x7a\\xcd\\xc9\\xf7\\x2b\\x98\\x8b\\x12\\xb1\\x96\\x19\\x83\\x18\\x54\\x41\\x06\\xed\\x8a\\xa5\\x2c\\xe4\\x4d\\x3c\\x8f\\x10\\x72\\xf4\\x86\\x14\\x38\\x21\\x6b\\x51\\x9b\\x05\\x56\\xf8\\xa1\\xc0\\x9b\\x39\\x45\\x21\\x71\\xa7\\xdf\\xe5\\x9e\\x96\\xbb\\xdb\\xd5\\x33\\x34\\xbb\\x24\\x85\\x97\\xc0\\xc5\\x4e\\xa1\\x13\\xba\\x48\\xe3\\xe9\\x89\\xa6\\x64\\x2d\\x2e\\x7d\\x41\\xe8\\x4d\\xbd\\x30\\x78\\xb7\\x0c\\xf1\\xf8\\x89\\xb2\\x20\\x73\\x4d\\x82\\xa3\\x0c\\xb6\\x45\\x68\\x8c\\xb4\\xba\\x8e\\x19\\xb8\\xeb\\x29\\xac\\xad\\x92\\x89\\x2f\\x41\\x9e\\xea\\x09\\x8c\\x1e\\xd0\\x14\\x4a\\x83\\x81\\x6a\\x99\\xc4\\xa1\\x35\\x46\\x91\\xbe\\x24\\x25\\x54\\xca\\x64\\xee\\x73\\x98\\xb2\\x45\\xdc\\xff\\x9e\\x48\\x6d\\xbd\\x4f\\xd6\\xa9\\x55\\x28\\x7e\\xa5\\xa0\\x7b\\x93\\x96\\x9d\\xd3\\x70\\x84\\x67\\x61\\x0d\\xf4\\x3c\\xbb\\x6d\\xee\\xc7\\x76\\x03\\xa2\\x53\\xa5\\xb1\\x30\\x39\\x23\\x95\\x0c\\x4f\\xc3\\x88\\x0c\\x48\\xf0\\x25\\xca\\x8c\\xb7\\x80\\x30\\x73\\xeb\\x76\\xda\\x97\\x49\\x21\\x47\\x7a\\x86\\x6f\\x50\\x53\\xc0\\x98\\xab\\xef\\xc0\\x78\\x04\\xc9\\x18\\x27\\x09\\xa6\\x2b\\xb0\\x96\\xa3\\x76\\x81\\xad\\x9b\\xf1\\x76\\x44\\x90\\x21\\x13\\x24\\xc3\\xaf\\x09\\xc9\\x4c\\x70\\x24\\x48\\xe0\\x4b\\xbc\\xab\\x55\\x96\\x34\\x9f\\x14\\xba\\xd8\\xbe\\x16\\x73\\x9f\\x44\\x74\\x48\\x62\\xb2\\xed\\xdd\\x5e\\x65\\x70\\x6f\\xf4\\x34\\xb4\\x0a\\xc9\\x64\\x67\\x6a\\xd2\\xd1\\x75\\x3e\\xb1\\x87\\x15\\x72\\xe0\\xe5\\x48\\x43\\x2b\\xe7\\x0a\\x9d\\x0a\\xb8\\xc3\\xf6\\x33\\xac\\x47\\xac\\x9d\\x5c\\x42\\xf7\\x9e\\x06\\xa2\\x71\\xca\\xc8\\xbe\\x4a\\xd8\\xf5\\x84\\x8c\\xae\\xdc\\x1f\\xdf\\xd9\\xeb\\x62\\xb6\\x64\\x88\\x19\\x71\\x68\\xcf\\x97\\x6d\\x83\\x56\\xdd\\x25\\x13\\x64\\x2d\\x83\\xe5\\x63\\xf4\\x30\\xac\\xfd\\x15\\xb5\\x46\\xc8\\x89\\xef\\x39\\xd9\\x10\\x5c\\x82\\xa5\\x95\\x7a\\x56\\x05\\xaf\\xaf\\x90\\x4c\\x78\\x3b\\x95\\xc1\\xa6\\x6b\\xbe\\xa8\\xce\\xbc\\x72\\x28\\xce\\x3f\\xe7\\xdf\\xf7\\xe8\\x6c\\x77\\x48\\xd0\\x82\\xc8\\xb9\\x91\\x03\\x6e\\xa9\\x50\\x01\\x3c\\x38\\x31\\x43\\x2f\\x2e\\x16\\xb9\\x22\\xce\\x37\\x6a\\x48\\x7e\\x47\\x93\\xb9\\x7f\\x19\\x7c\\x59\\xd9\\x38\\xcc\\x9e\\xc7\\xcb\\x29\\x3c\\x13\\x63\\x7f\\x07\\x28\\xcc\\x92\\x2b\\x3b\\x7a\\x8b\\x58\\x3f\\x3e\\xf5\\xd8\\x54\\x98\\x07\\x8d\\xf2\\xa1\\xea\\x94\\x6a\\xd6\\xb7\\x67\\xa8\\x0d\\xd5\\x21\\xc2\\x03\\x9f\\x22\\x31\\xd8\\x61\\x55\\x00\\xf6\\xd5\\xb2\\xbe\\x94\\xdb\\x94\\xb3\\xe5\\x58\\xc1\\xa1\\xed\\x7d\\x4e\\xb7\\x51\\x1f\\x38\\x6f\\x80\\x8b\\x0e\\xe2\\xcd\\xb7\\xe6\\x7e\\xbe\\xb3\\xde\\x7d\\xd0\\x36\\x4d\\x61\\xbd\\x0c\\x4c\\x99\\xd4\\xbb\\xb8\\x06\\xf8\\x14\\x97\\x9a\\xb2\\xf6\\xa8\\x64\\x44\\x06\\x48\\xdc\\x63\\x6e\\x8f\\x92\\xa2\\x7a\\x6f\\x64\\xc8\\x35\\x29\\x28\\xba\\xb1\\x1c\\x46\\x9d\\xe0\\xeb\\x95\\xf5\\x3a\\x03\\xc9\\xd1\\x7d\\xd3\\xd4\\x5d\\xe3\\x35\\xfa\\x12\\x44\\x47\\x94\\x49\\xd8\\xc0\\x26\\xec\\x47\\x26\\x85\\x72\\xe2\\xc8\\xac\\xe3\\xea\\x23\\xc8\\x3f\\x96\\x56\\x2b\\xdf\\x8d\\x49\\x9c\\x48\\x17\\x0e\\xfb\\xfa\\x7e\\x04\\x02\\x7d\\xa7\\x57\\x54\\xa9\\x6c\\x36\\x9b\\x3a\\x59\\x88\\xb5\\x71\\xe4\\xbb\\x6e\\x92\\xcb\\xc3\\xfb\\x59\\x36\\x5f\\x3e\\xf7\\xa8\\xe6\\x35\\x97\\xd1\\x00\\x46\\xe5\\xa3\\x63\\x0a\\x60\\xca\\x9b\\x0b\\x1b\\xcf\\x01\\xe1\\xe6\\x7b\\x5a\\x0e\\x10\\xe1\\xf7\\x38\\xa7\\xcd\\x6c\\xc1\\x0b\\x8b\\x64\\x1d\\xca\\x5b\\xb6\\xc6\\x43\\xaf\\xfa\\xd4\\xaa\\x7b\\x37\\xab\\x96\\x69\\xf3\\xac\\x51\\xfa\\x89\\x34\\xd7\\x7b\\x1f\\xf1\\x09\\x7a\\x40\\xbe\\x62\\xf0\\x72\\x9c\\x44\\x57\\xc5\\x5d\\x6d\\x9f\\xbd\\x45\\x2c\\x16\\x63\\xef\\xe8\\xeb\\xa8\\x40\\x46\\xa8\\x4e\\x71\\xbc\\x3d\\x27\\xe2\\x1a\\x38\\x76\\xdd\\x20\\x9c\\x27\\x96\\x25\\x23\\xd7\\xe6\\x74\\x29\\x6d\\xde\\x54\\xf1\\xe3\\xda\\x44\\x9f\\x01\\x3d\\x7b\\x9d\\x26\\x52\\x6f\\x08\\x2b\\x50\\x13\\xa9\\xa3\\x86\\x05\\xe2\\xc1\\x0c\\x05\\x2c\\xd5\\x73\\x9a\\x35\\x60\\x12\\x7f\\x18\\x3d\\xc6\\x41\\x03\\xbd\\x06\\xb8\\x16\\x17\\x00\\xf7\\x56\\x31\\x04\\x84\\xe0\\xa8\\x8a\\x21\\xe2\\xa8\\x08\\x50\\x37\\xf4\\xee\\x59\\x2d\\xfa\\x9a\\xf3\\x8c\\x14\\x2e\\x88\\x00\\xe5\\x26\\xa6\\xca\\x1f\\x7f\\xcc\\x65\\x8a\\x1c\\x64\\x30\\xa0\\x06\\xcd\\x0c\\x2e\\xb6\\xaf\\x6d\\x38\\x14\\xf1\\x8c\\x2a\\xb7\\x01\\x25\\xa9\\x85\\xca\\x35\\xb7\\x2e\\x1f\\x06\\x54\\xe2\\x45\\x24\\x72\\xb0\\xd9\\x31\\xba\\x6c\\x0e\\x8b\\xdc\\xaa\\xf7\\x5b\\x2b\\xbd\\x61\\x99\\x3a\\xee\\x10\\xed\\xf5\\x92\\xca\\x4c\\xc8\\x2f\\xf6\\x90\\x81\\x7b\\xea\\xd9\\xc9\\x86\\x65\\xd0\\x1a\\x9f\\x3b\\x10\\x3e\\x09\\xa8\\x5f\\x67\\x26\\x02\\x1d\\xc5\\xf9\\x38\\xdc\\x5f\\x36\\xdb\\x69\\x6e\\xb2\\xa8\\x33\\x6b\\xd5\\xc0\\xa8\\xf0\\xf7\\x07\\x3c\\xae\\x93\\xe6\\x8c\\x81\\x86\\x7d\\x50\\x12\\xd6\\x13\\x5d\\x23\\x2a\\x21\\x15\\xe9\\xcd\\x9d\\x19\\x57\\x56\\xa7\\x8b\\xfb\\x40\\x91\\x86\\x4a\\xf6\\x31\\x9f\\x2c\\xa0\\xb6\\xbb\\xb2\\x2c\\x94\\x59\\xe2\\x80\\xc8\\xe9\\x1f\\xde\\xdf\\x76\\x67\\x01\\x74\\xbd\\x5e\\x90\\xf4\\x79\\x55\\x9a\\x1c\\x8a\\xcc\\x04\\x5c\\xc5\\xb7\\xf1\\xb7\\x0a\\x93\\xec\\xa3\\xfb\\xa8\\x8b\\xe8\\xba\\xfb\\xb5\\x60\\xb1\\xc9\\xf4\\x36\\xd0\\xf1\\xb0\\x37\\x1c\\x53\\xd6\\x3c\\x22\\xbe\\xcc\\xc0\\x3e\\xbf\\xfa\\xa1\\xba\\xae\\x43\\x37\\x4e\\x30\\xe3\\xf0\\xf9\\xa0\\x5b\\x9f\\x59\\x21\\x13\\xa1\\xfd\\x36\\x88\\x55\\x99\\xe3\\x5a\\x2f\\x1e\\x9a\\x41\\x1c\\xf5\\x07\\x6a\\xd8\\x6f\\x43\\x32\\x5d\\x0a\\x7a\\x6f\\x86\\x89\\x58\\x31\\x3c\\x56\\xaf\\xc1\\xce\\x23\\xe2\\x79\\xb1\\xe9\\x4c\\x14\\xbd\\xd9\\x8e\\x7c\\xbd\\xf0\\x1e\\xcd\\x4b\\x5f\\x59\\x40\\x96\\x74\\x0a\\xd0\\xfd\\x12\\x5a\\x76\\xa4\\x5b\\x0f\\x22\\xc1\\x37\\x39\\xa9\\x39\\x6c\\x8a\\x7e\\x4d\\x92\\xb9\\x7f\\xbb\\x61\\xae\\x74\\xc1\\x91\\x1a\\xe1\\x89\\xed\\xc4\\x17\\x7a\\x78\\x9c\\x74\\x14\\x64\\x95\\xea\\x2a\\x1a\\x2d\\xdd\\x60\\x27\\x16\\x8b\\x50\\xed\\x5b\\xe6\\x53\\x44\\xfd\\x3d\\x7c\\xbd\\x30\\xb5\\x44\\x17\\x3a\\x0b\\x63\\x38\\x82\\x49\\x13\\xbe\\xab\\x36\\x7f\\xd4\\x4c\\xef\\x42\\x85\\x7d\\xcb\\x8a\\xea\\xfc\\x6c\\x66\\x6f\\xac\\xd6\\x87\\x73\\x6e\\x34\\xd7\\xbe\\x0d\\x6d\\x5e\\xd4\\x22\\x33\\x53\\xff\\xa1\\x47\\x69\\xe9\\x83\\x07\\xed\\xe6\\x9e\\xf2\\xca\\xbc\\xfc\\xbc\\x8b\\xcb\\x7f\\x7c\\x08\\x01\\xbf\\xb4\\xd4\\xa0\\xb2\\x6b\\xb2\\x4c\\x81\\xb1\\x6d\\x5f\\x6d\\x72\\x4c\\x6c\\x58\\x58\\x6a\\xdd\\xe8\\x83\\xc1\\xb1\\x22\\x7d\\xeb\\xce\\x57\\x22\\xdb\\x04\\x32\\x68\\xd6\\xa7\\x2f\\xc3\\x07\\x8e\\x36\\x5a\\xa1\\x8d\\x69\\xc8\\x83\\x95\\xf8\\xee\\x12\\x08\\xc3\\x45\\x1e\\xf2\\x63\\x32\\x9f\\xce\\x26\\xb9\\x2e\\xb7\\x4e\\x3d\\x13\\x38\\x23\\x3d\\x64\\x01\\x47\\x17\\x72\\x49\\xe7\\x77\\xc3\\x3f\\x2b\\x0b\\x7c\\x74\\x56\\xeb\\xf0\\x36\\xdb\\x68\\xb5\\x47\\xbb\\x8a\\x1b\\x17\\x69\\x5b\\xfd\\x61\\xb6\\xd6\\x06\\xdf\\x8e\\xbe\\x68\\x48\\xd9\\x45\\x62\\x95\\x64\\x2e\\xae\\x2a\\x69\\x72\\x9e\\x37\\xeb\\x32\\xb4\\x76\\xb7\\xc8\\xc3\\xbc\\x02\\x70\\x90\\xb9\\x36\\x95\\x6a\\xd6\\xf1\\x83\\x2d\\x89\\xb7\\x8f\\x4b\\x69\\x63\\x5a\\x83\\x87\\x49\\x8e\\xbc\\xa3\\xfe\\xe3\\x1f\\xaf\\x0c\\x57\\x61\\xd5\\x51\\x6e\\x3e\\x20\\xed\\x5c\\xa7\\xd3\\xa3\\x93\\xc1\\x89\\x4a\\x7d\\xdd\\xeb\\xeb\\x36\\xd8\\xab\\x18\\xad\\x00\\xb7\\xcb\\x1f\\xd8\\xb6\\x77\\x90\\x4f\\xaa\\xf4\\xd7\\x64\\xa1\\x3a\\x6e\\xf1\\x18\\x6c\\x12\\x78\\xe7\\x3b\\xca\\xcc\\xc5\\x66\\x50\\xf2\\x0f\\x01\\x47\\xee\\xe4\\xcf\\xa0\\x3a\\x56\\x31\\x05\\xb0\\xd6\\x3e\\x4f\\x7d\\x44\\xc4\\xd9\\x62\\xb9\\x1f\\x0d\\xbe\\x58\\x71\\xb0\\x8f\\x92\\xfb\\x96\\x43\\x35\\x93\\x62\\xcf\\x19\\x3e\\x9a\\x78\\xbf\\x00\\xab\\xd5\\xf5\\x76\\x9a\\x2a\\xf3\\xda\\x4c\\x67\\xd5\\x70\\xbb\\xd8\\x82\\xbc\\x66\\x2b\\xa3\\xd2\\xd4\\xa2\\x83\\x3c\\x94\\x7c\\x5c\\x87\\x7e\\x88\\x44\\x3f\\x6b\\x89\\x59\\x90\\x16\\x27\\x30\\x0c\\xb4\\x02\\x6e\\x90\\x26\\x19\\x47\\x31\\x05\\x9a\\x63\\x0c\\x14\\x7b\\x9c\\x8f\\xb4\\xbf\\xc8\\x1d\\x0d\\x2c\\x62\\x4a\\xb6\\x73\\xee\\xc0\\x2c\\x30\\xfd\\xd2\\x43\\xd6\\xde\\x56\\xee\\x77\\xb4\\xab\\xf2\\x59\\x6c\\x51\\x99\\xa7\\xa7\\x60\\xc5\\x10\\xef\\xdf\\x5f\\x7e\\x0a\\x02\\x5d\\x65\\x57\\x36\\x97\\x29\\xf0\\xf6\\xd5\\x7c\\x60\\x3d\\x05\\x23\\x74\\x32\\x90\\x1f\\x8f\\xf7\\xab\\x4d\\x18\\xae\\xef\\xad\\x8b\\x1d\\xd8\\x44\\x40\\xf6\\x49\\x5c\\x1d\\x62\\x3d\\xe6\\x1f\\xd1\\x07\\x59\\x06\\x29\\xef\\x2d\\x9f\\xeb\\x05\\x79\\x99\\x9b\\x1c\\x84\\xa9\\xe5\\x25\\x3b\\x41\\xe5\\x30\\xc4\\x41\\x5c\\xc5\\x1d\\xd9\\x05\\x6c\\xf0\\x43\\x4d\\x1b\\xd3\\xee\\x5b\\x57\\x90\\x01\\xb5\\x09\\xb3\\x53\\x26\\xcc\\x49\\x70\\xb9\\x29\\xf3\\x31\\x92\\x1b\\x1b\\x80\\x69\\xb3\\x16\\x85\\x2c\\xc8\\xed\\xe0\\x12\\x24\\x2e\\x8d\\xd6\\x76\\xf0\\x64\\xcc\\xef\\x43\\x04\\x3b\\x84\\x8a\\x11\\xce\\x88\\x8d\\xf8\\x05\\xdd\\x9d\\xce\\xe9\\x5b\\x92\\xdb\\xe4\\xbc\\x47\\xa2\\xcf\\x1f\\x51\\x1b\\x80\\xf4\\x4b\\x2d\\xb0\\xe7\\x6d\\x22\\xd1\\xd8\\xc0\\x3d\\xcc\\xc9\\xc6\\x4d\\xc5\\x66\\x6f\\x8a\\xe5\\xa3\\xea\\xa7\\xaa\\x08\\x0c\\x9b\\xdf\\x21\\x99\\x20\\xaf\\x80\\x13\\x3e\\xd5\\xb4\\x25\\x3a\\x59\\x88\\x4a\\xb5\\x0a\\xd4\\xaf\\xcc\\x41\\x73\\xab\\x73\\x1f\\x94\\x2b\\xc4\\x29\\x57\\x5c\\x47\\xfa\\x2c\\x18\\x17\\xd9\\xdd\\x31\\xce\\x76\\xf9\\xd9\\xde\\x1b\\x70\\xd1\\x16\\x4e\\x98\\x8e\\xc8\\x31\\x8b\\x0c\\x25\\x3f\\xa4\\x8e\\x77\\x8e\\xbb\\xf6\\x14\\x9d\\x03\\x3c\\x5a\\x6f\\xc6\\x6f\\xbc\\xa8\\xd5\\xee\\xf6\\xa2\\x0b\\xf5\\x5c\\xdf\\xaf\\xc8\\x05\\x53\\x24\\x66\\xda\\x26\\x87\\x2a\\x28\\xfb\\x5e\\x5c\\xce\\x36\\xaf\\xb2\\xa2\\x9a\\x25\\x91\\x11\\xeb\\xf7\\xaf\\x6b\\x59\\x21\\x2a\\x7a\\x27\\x9f\\xdd\\x80\\xb5\\x29\\x3a\\xfb\\xe5\\x1a\\xd2\\x5c\\x10\\x07\\x5c\\x86\\x19\\x6a\\x82\\x5f\\xfa\\x25\\x20\\x72\\x01\\x25\\xc6\\xfb\\x3e\\x3e\\x94\\xe3\\x9e\\x4e\\xa1\\xe6\\xe6\\xd2\\x9e\\xbd\\x69\\x1f\\xab\\x04\\x19\\x09\\xa4\\x6f\\x0d\\x61\\x99\\x86\\x51\\xdf\\x5e\\x87\\x8c\\x47\\x66\\x37\\xab\\x42\\x52\\xfe\\x5f\\x9a\\xb6\\xa8\\x0b\\x0d\\xba\\xa3\\xf4\\x9a\\xa2\\x77\\x27\\xb3\\x00\\x32\\x55\\xb7\\x8a\\x97\\x65\\x04\\x57\\x2e\\xb9\\xa5\\xfa\\x9f\\x3b\\x87\\x22\\x13\\x2b\\x25\\x70\\x0e\\x36\\xd7\\x07\\xaf\\x26\\xda\\xf3\\xfe\\x31\\x3d\\x68\\x00\\x6f\\x8f\\x64\\x33\\x35\\x78\\x5a\\xba\\xbf\\x01\\xaf\\xcd\\xad\\x5e\\x55\\xe2\\x78\\x6d\\x6b\\xc6\\xf0\\x24\\x43\\xdf\\x66\\xbb\\x64\\x28\\xf7\\x36\\xca\\x88\\xda\\x1c\\x46\\xe4\\x45\\xcc\\xe2\\x00\\xc2\\xb4\\x38\\xf6\\x88\\x15\\x63\\x0d\\x9d\\x6c\\xfc\\xfe\\x01\\x48\\x59\\xe6\\x00\\xdf\\xc3\\xfc\\x5d\\xe3\\x23\\x47\\x63\\x01\\x77\\x57\\xdd\\xf8\\x07\\x46\\x2f\\x47\\x26\\x04\\x9c\\xa3\\xd5\\x6d\\x68\\x32\\x60\\xc1\\xfa\\x02\\x17\\xf1\\x1a\\x2c\\x38\\xc9\\xfb\\x5c\\xa7\\x71\\x1a\\xa7\\xd6\\x95\\x36\\x5a\\x83\\x34\\x7d\\x05\\xae\\x78\\xc4\\xc6\\x1e\\x84\\x2b\\xe9\\xc5\\xf4\\x01\\xbc\\x17\\xd2\\xf4\\x41\\x26\\xd3\\x36\\x34\\x96\\xca\\x19\\xf9\\x51\\x10\\x69\\xc4\\x13\\xcf\\x31\\xf9\\xbc\\xf6\\x14\\x3b\\x54\\xd8\\x53\\x25\\x71\\x7d\\xcb\\x54\\x75\\xe9\\xac\\x3a\\x64\\x8c\\x1c\\x70\\xc7\\x8f\\x9e\\x44\\x75\\xa1\\x1f\\x5a\\xe7\\xdd\\x63\\xe4\\x2e\\x47\\x86\\x60\\xd6\\x36\\x9e\\x4d\\x89\\xc0\\x97\\x56\\xe6\\xaa\\xc5\\x14\\xb2\\x7a\\xd6\\x2e\\xe7\\xc8\\xb8\\x79\\x9f\\x09\\xac\\x20\\x03\\x97\\x20\\xfb\\x80\\xd0\\xe9\\x2f\\x50\\x51\\x2d\\x12\\x1c\\xb0\\x67\\xa6\\x69\\x6b\\xb6\\xe3\\x7b\\x3a\\x63\\xec\\xcc\\x26\\x52\\x2d\\x45\\x72\\x50\\x94\\x3c\\x2b\\xc1\\x4a\\xf1\\x6a\\xad\\x00\\x8e\\xf5\\xc7\\xed\\xf5\\xc3\\x13\\xb2\\xd3\\xf5\\x8f\\x73\\x28\\x08\\x5d\\xa4\\xb4\\xc0\\x85\\xcb\\x2d\\xc4\\xcc\\x61\\x0f\\x3a\\x89\\x8c\\xb5\\x24\\x46\\x2d\\xb0\\xe5\\x6e\\x76\\x9f\\x2a\\xc8\\x98\\xa5\\xf0\\x03\\x52\\x16\\x40\\x0e\\x2a\\xe4\\x15\\x67\\xb5\\x0f\\x38\\xd8\\xf1\\x19\\xd8\\x81\\x05\\x5d\\x7c\\x29\\x6b\\xa9\\xf5\\x30\\xc3\\xa3\\x9b\\x96\\x92\\xbe\\x98\\x40\\x19\\xe6\\xc3\\x0a\\x24\\x6b\\xb8\\x9a\\x8d\\x8f\\xd0\\x3a\\xae\\xec\\x00\\x41\\xe4\\xd5\\xa6\\x32\\xa0\\x3b\\xfa\\xcd\\x38\\x86\\x05\\x19\\xbd\\x9e\\xd2\\x57\\xd0\\x58\\x55\\xe4\\x3b\\x7c\\x9c\\x26\\xd2\\x7a\\xcb\\xe3\\x21\\x4d\\x12\\x3f\\xd8\\xde\\x3b\\x52\\x88\\x36\\xec\\x48\\xad\\x50\\x75\\xee\\xd3\\x95\\x8d\\xdb\\x19\\x62\\xb6\\x06\\x65\\x54\\xf0\\x43\\xb0\\x45\\x3f\\x7a\\x38\\x86\\x99\\x83\\x64\\x95\\xcf\\x16\\x3b\\x65\\xe8\\x3c\\x0e\\x33\\x38\\x1b\\xd3\\x73\\x5d\\x65\\x85\\x53\\x71\\x75\\xf1\\xac\\x2b\\x22\\x64\\x4a\\x54\\x31\\xcb\\xc0\\xd3\\x2c\\x52\\xae\\xd9\\x1f\\xe3\\xb5\\x59\\xef\\x60\\xab\\x8e\\xea\\x52\\x05\\x34\\xc5\\xe2\\xef\\x3e\\x11\\x11\\x6f\\xbb\\x62\\x04\\x89\\xec\\x25\\xe7\\xc3\\x19\\x73\\xaf\\x50\\xd5\\x28\\x56\\xe0\\xed\\x64\\xe5\\x07\\x11\\xbe\\x47\\xf2\\x71\\x84\\xe1\\x69\\xc1\\x47\\x1d\\x1e\\xdb\\x95\\x29\\xc6\\x63\\x67\\x1f\\x21\\xe9\\xe7\\xae\\x07\\xde\\xc9\\xa5\\x3e\\xb4\\xfe\\x02\\x7e\\x54\\x6c\\xe1\\x97\\x55\\x81\\x02\\x0f\\xfc\\xb6\\x79\\x8e\\x44\\xd8\\x0b\\xbd\\x4a\\x85\\x8d\\x46\\x4f\\xa6\\x6f\\xcd\\x32\\xa4\\x2b\\xf6\\xc1\\x02\\x1b\\x3a\\xd8\\x4b\\xee\\x32\\xda\\x68\\x61\\x0f\\x8c\\xa1\\x93\\x88\\xe2\\x24\\xe2\\x04\\xf3\\x9d\\x8d\\xc5\\xb1\\xe9\\xe4\\xeb\\x68\\x42\\x23\\xec\\xa3\\x17\\x73\\xc2\\x47\\x0b\\x01\\x1e\\x89\\x8e\\x04\\x44\\xa7\\xed\\x98\\xe6\\x1f\\xb9\\x30\\x7a\\x7b\\xc1\\x24\\x17\\x3e\\x95\\x9c\\x3d\\x5b\\x4a\\x17\\x78\\xd5\\x43\\xfb\\x07\\x6b\\xa4\\x9a\\x12\\xdb\\x06\\xdd\\x15\\x71\\x9f\\x4b\\xd0\\x46\\xcb\\x50\\x21\\x0e\\x5c\\x18\\x03\\x36\\xbc\\x8f\\x12\\xa3\\xc1\\x2a\\xd2\\xda\\x78\\x9f\\xb5\\x66\\xd0\\x93\\x0d\\xcc\\xaf\\xd4\\x4a\\xd6\\xde\\xf8\\x88\\x1f\\x47\\xf2\\xf0\\xe4\\xee\\x06\\x36\\x5b\\xfe\\x8f\\x10\\x47\\xfa\\xc3\\x7c\\x92\\x56\\xfb\\xda\\xdd\\x10\\x03\\x0b\\x47\\x7e\\xee\\xb0\\x22\\x39\\x3e\\xc9\\xc7\\x0c\\x7c\\x3c\\xb0\\x94\\x63\\xe4\\x95\\x27\\x6d\\xaf\\x2d\\xf0\\xe1\\x4d\\x11\\xa2\\x55\\xa5\\x3e\\x58\\xbc\\xfb\\xa5\\x50\\x70\\x79\\xcf\\xcb\\xa1\\x5e\\xe3\\x82\\x8a\\xe9\\x6a\\xad\\x61\\x67\\x54\\x19\\xd9\\x04\\x5b\\xf4\\x21\\x6e\\x7b\\xe3\\x3b\\x45\\xf5\\xed\\x49\\x69\\x8b\\x11\\xae\\xdf\\x08\\x6b\\x8c\\x3f\\x12\\x43\\xa7\\x50\\x86\\x6c\\x30\\xea\\xe7\\x80\\x0f\\x1c\\x39\\x32\\x09\\x1f\\xa7\\x62\\x24\\x13\\x77\\x6f\\x2a\\x4c\\x75\\x25\\xa1\\x01\\xd6\\x57\\xd3\\xfc\\x82\\x41\\x86\\xec\\xc3\\xf2\\xf1\\xd4\\x50\\x63\\xb3\\x97\\x21\\x1c\\x28\\x41\\x71\\xc0\\xca\\x63\\x2c\\x8d\\x6d\\x36\\x45\\x46\\x67\\x70\\xb2\\x65\\x91\\x17\\xd6\\x1c\\x1a\\x2a\\x55\\x5f\\xb5\\xb3\\x4d\\x11\\x51\\xc2\\x4c\\x3c\\xe9\\x23\\x6c\\x7e\\x9d\\x93\\x1c\\x8a\\x2b\\xd7\\xd1\\xe9\\x73\\x71\\x95\\x80\\xeb\\x39\\x18\\x07\\x51\\x66\\x67\\xcb\\x51\\xfd\\x55\\x43\\x8d\\xc3\\x86\\xdd\\x1e\\x26\\x95\\xfd\\xc3\\x0c\\xa2\\xf8\\x32\\x43\\x83\\x46\\x84\\xc4\\xec\\x04\\x10\\x1a\\xe6\\xf2\\x60\\x4d\\x96\\x5b\\xb5\\x2c\\x83\\xe4\\x87\\x2a\\x55\\xa1\\xfe\\x49\\x4c\\x5a\\x8e\\x9f\\xf7\\x0c\\x65\\x57\\xab\\x8d\\xd4\\xfb\\x12\\x27\\xf4\\xf0\\xe0\\xa2\\x31\\xae\\xf9\\xcc\\x1f\\x07\\x40\\xd0\\x20\\x76\\x91\\xc6\\xbd\\x38\\x6e\\x8f\\x66\\x23\\x10\\xb7\\xde\\x06\\xdf\\x0c\\xb8\\x5f\\x07\\x75\\x92\\x16\\xf5\\x44\\xee\\x92\\x38\\x6c\\xf7\\xfb\\x9b\\x01\\x1a\\xac\\x00\\x34\\x80\\x5a\\xf9\\x3a\\x5e\\x97\\x49\\xb0\\x27\\x28\\x7a\\xb0\\x5b\\xfa\\x79\\xdf\\x06\\x80\\xb7\\xf1\\x87\\x7c\\x35\\x4c\\x2e\\x91\\x6b\\xe1\\x88\\x86\\xb7\\x61\\xaa\\xd0\\x6b\\xab\\x89\\x0a\\x7e\\x37\\xd9\\x0d\\xfb\\xbd\\x69\\x6a\\x91\\xe0\\xd2\\x48\\x8b\\x7d\\x06\\x7c\\xf0\\xe4\\x9d\\x8d\\x44\\xf5\\xa2\\x3a\\x17\\x57\\x08\\xe7\\x54\\x25\\x48\\x78\\xe9\\x49\\x4d\\x5d\\x72\\xf3\\xb6\\x24\\xca\\xc1\\xf7\\x1a\\x2b\\xfb\\x18\\x9e\\x9d\\xec\\x87\\x5e\\x4c\\x4e\\xf5\\x1b\\xb6\\xdd\\x81\\xec\\x06\\x52\\xb3\\x4b\\xff\\xa6\\x83\\x33\\x16\\x06\\xb3\\x37\\xd9\\xe8\\x49\\x80\\x4f\\x1d\\x46\\x8e\\x12\\x1e\\xf7\\x37\\x05\\x55\\x63\\xd6\\x72\\xe2\\xe5\\xfc\\x7e\\x64\\x41\\xc5\\x23\\x25\\x53\\x54\\x65\\x1e\\x28\\xce\\x8f\\x1f\\x63\\x10\\xad\\x63\\x7a\\x03\\x3b\\xc7\\xfd\\x39\\x3c\\xee\\x76\\x49\\x7c\\xa3\\x54\\xa7\\x50\\xe6\\xfe\\x2c\\x73\\x0a\\xf1\\x64\\x4c\\xbb\\x26\\xc1\\x25\\x6d\\xb5\\x50\\x2c\\x1e\\xbd\\x86\\x83\\xc1\\x26\\x06\\x36\\x66\\x1f\\x7e\\xc2\\x62\\x75\\x92\\x44\\xbf\\xd5\\xce\\x1b\\x4c\\x10\\x8d\\x7b\\x87\\xc6\\x62\\xb0\\xcc\\x72\\xea\\xe0\\x64\\xf3\\xd1\\x9d\\xab\\xee\\xb1\\x00\\xa0\\x22\\x23\\xec\\x9b\\x00\\xe1\\x4f\\xda\\x6e\\xec\\x78\\x9e\\xec\\xbf\\x26\\x40\\x1e\\x5d\\x59\\x2d\\x06\\x69\\xfa\\xaf\\xa2\\xcb\\x5a\\x66\\x23\\x3d\\xf0\\x55\\x8c\\x15\\x1c\\x2d\\x4a\\xaa\\x8a\\xff\\x59\\x0f\\x23\\xc1\\x80\\x8b\\x8c\\x51\\x09\\x94\\xfb\\xcd\\xb0\\x94\\x6c\\x22\\x74\\x0c\\xcc\\x55\\xe6\\x72\\xcb\\xa1\\x24\\x9e\\xa3\\xe8\\xb6\\xcc\\xde\\xdf\\x54\\x5b\\x1d\\xe8\\xb9\\x72\\xa0\\x0f\\x3a\\x76\\x7e\\x3d\\x05\\x31\\x6d\\x42\\x1d\\x31\\xaa\\x6b\\x33\\xc2\\x18\\x60\\x20\\x58\\x14\\x7c\\xda\\xc4\\x51\\x45\\x8a\\xb4\\xe1\\xc8\\x80\\x93\\x38\\x94\\xa1\\x0a\\x08\\x7e\\xdb\\x25\\x81\\x0c\\x8e\\x78\\x5f\\xf6\\x3e\\xea\\xe6\\x2c\\x37\\xe0\\x1b\\x33\\xe7\\xc1\\x66\\xee\\x13\\xef\\xab\\x7a\\xf6\\xb5\\x82\\xea\\xf9\\xd7\\x73\\xd9\\xf0\\xdc\\x37\\x36\\xd9\\x56\\x7a\\x7a\\x8b\\x6f\\xd2\\x37\\xac\\x58\\x1a\\xa6\\xdf\\xdc\\xd0\\xdb\\x6b\\x3f\\xef\\x9a\\xe5\\xec\\x67\\x16\\x2d\\xf7\\x99\\xd4\\xd0\\xf4\\x75\\xdd\\xe0\\xdc\\xad\\xb1\\x6d\\xc0\\x43\\x30\\x49\\x24\\xb4\\x91\\x37\\x43\\x5f\\x1c\\xa3\\xa0\\x28\\xaf\\x48\\xe0\\x57\\xb6\\x8f\\x2f\\x00\\xbd\\x18\\xe8\\xa8\\x25\\x1c\\x49\\x23\\x46\\xdf\\x0f\\x0c\\xb8\\x52\\x38\\x9e\\x1a\\x09\\x69\\xd4\\xd0\\x01\\x3c\\xa5\\xe4\\x70\\x64\\x18\\x4f\\xce\\x66\\x04\\x97\\x0e\\xea\\xaf\\x21\\x67\\x06\\xcd\\xb2\\x84\\xdf\\x6b\\x42\\xd2\\x95\\x4c\\x64\\xe0\\x8a\\x24\\xac\\x44\\xda\\xbf\\xc4\\x3d\\xb0\\x45\\x68\\x1b\\x82\\x23\\xa6\\xcb\\x72\\x4e\\xaf\\xa9\\x28\\x80\\x3c\\xd9\\xf1\\x37\\xf6\\x58\\xdb\\xa0\\x3f\\x3a\\x09\\x77\\x46\\x03\\x8a\\x76\\x74\\x36\\xd7\\xb6\\xe7\\x7b\\x4f\\x59\\x84\\x93\\x42\\x60\\xc6\\x85\\x89\\x2d\\x6b\\x4d\\x01\\xcf\\x88\\x1c\\x17\\xa2\\x16\\x9d\\xea\\x99\\xbb\\x75\\x51\\x4d\\xac\\x65\\xd9\\x5c\\xf5\\xfb\\x02\\xc8\\x02\\x56\\x99\\x62\\x71\\xf5\\x3b\\x00\\x28\\x06\\xb3\\xf3\\x61\\x02\\x0b\\xbf\\x22\\xa2\\xaa\\xb0\\xf8\\x53\\x38\\x32\\x64\\xd0\\x94\\x92\\xc6\\x4d\\x03\\x02\\x1e\\x32\\x10\\x15\\x3f\\x62\\xc1\\x3e\\xb8\\x18\\xab\\x2c\\xd2\\xde\\x99\\x99\\x33\\x61\\x72\\x2f\\x12\\x3a\\xcf\\x5d\\x1d\\x24\\x22\\xde\\x74\\x39\\xcb\\x30\\x16\\x97\\xa3\\x33\\x69\\xcd\\x62\\xfd\\xdb\\x31\\x25\\x13\\x38\\xb7\\x48\\x17\\x52\\xa7\\xfd\\x92\\x46\\x04\\x2d\\x3b\\xa1\\xb7\\xf3\\x80\\x81\\x60\\xf6\\xda\\x5f\\x1d\\x9d\\x98\\xda\\xe5\\x98\\x7d\\xf1\\xdb\\xa4\\x88\\x86\\xb1\\x24\\xc1\\xc9\\xac\\x15\\x75\\x7d\\x0f\\x89\\xe8\\x16\\x39\\x32\\x5f\\xee\\x20\\x39\\x6a\\x10\\x6d\\x64\\x09\\xe0\\xbd\\xf3\\x38\\x08\\x59\\x04\\x8c\\xd5\\xda\\x03\\xf4\\xee\\x70\\x82\\xbe\\x6d\\xec\\x5b\\x11\\xda\\x49\\x54\\xed\\x9b\\x98\\x1d\\x92\\x27\\xf4\\xf7\\x9f\\x02\\xa4\\xb5\\x4c\\x68\\x4a\\x16\\xec\\xb8\\x02\\x3e\\x2a\\x93\\xc7\\x24\\xa4\\xd1\\xff\\xf5\\x5c\\x06\\x4c\\x5c\\x60\\x1f\\x12\\x78\\x77\\xb3\\x42\\xbb\\x10\\x50\\x98\\x06\\x4f\\x56\\xe9\\x62\\xf3\\x86\\x0c\\x8d\\xf1\\x39\\xe7\\xf5\\x02\\x13\\x9a\\x3e\\xc1\\xf5\\x34\\x06\\x29\\x84\\x56\\x37\\xf5\\x40\\x3e\\x63\\x64\\x5f\\x0b\\xd9\\x63\\xfe\\x03\\xcb\\x5d\\xe4\\x3b\\x11\\x3a\\xe4\\x0f\\xca\\x86\\x46\\xe3\\xac\\xc6\\x0c\\xe4\\x4d\\x55\\xef\\x15\\x53\\x51\\xd1\\xf5\\xd8\\x08\\x3e\\x57\\x0d\\x5a\\x8d\\xab\\xd0\\xea\\x57\\x1d\\x4b\\x2e\\x62\\xe7\\x6f\\x08\\x99\\x22\\x95\\x0c\\x1e\\x54\\xf7\\x7b\\x9a\\x2c\\x3f\\x74\\xbe\\x53\\xe2\\x28\\x07\\x11\\xc2\\x28\\x8f\\xfb\\xb0\\x22\\x28\\xd6\\x43\\xbe\\xe4\\xb8\\xa4\\x49\\xf5\\xfa\\x9c\\x3f\\x40\\xb0\\x8a\\x78\\x50\\x0a\\x0d\\x7a\\x98\\x15\\x64\\xa6\\x72\\x09\\xf9\\x40\\xc0\\xd5\\x7e\\xb8\\x33\\x96\\xbb\\xd2\\x80\\x67\\x7e\\x1f\\xa8\\x59\\x44\\xdb\\x71\\x04\\x6c\\xc1\\x3b\\x46\\xdd\\x7d\\x21\\x1a\\x1a\\x36\\xc6\\xca\\xc6\\x26\\x73\\x57\\x52\\xb9\\x2b\\x08\\x85\\x94\\x9a\\xce\\x5a\\x2c\\x12\\x34\\x7d\\x53\\x3c\\x2f\\x62\\xc3\\xde\\x9b\\xa8\\xef\\x25\\x0e\\xef\\x16\\xa6\\xd2\\x2c\\x6a\\x55\\x1f\\x8e\\x86\\x10\\x94\\xc9\\x67\\xc2\\x2b\\x64\\x6d\\xc7\\xf1\\xc8\\x2d\\x8d\\x51\\xe7\\xf4\\xd9\\x16\\x47\\xbc\\xb1\\xe2\\x75\\xe0\\xae\\xca\\xc4\\x48\\x57\\x17\\x8f\\x8d\\xf9\\x48\\x73\\xe2\\x87\\xb6\\x18\\x95\\xf7\\xe8\\xd8\\x99\\x9c\\x4c\\x25\\xea\\xe6\\xbd\\x53\\x30\\xe5\\x54\\x23\\xb5\\xec\\xfd\\xe8\\xbc\\x49\\x94\\x67\\x2a\\x95\\x17\\x65\\xc9\\x0c\\x2d\\xfc\\x0a\\xf2\\x54\\x2e\\x27\\x6a\\x9b\\x99\\x23\\xc8\\xe3\\xb4\\xcc\\x95\\xf9\\x98\\x10\\x16\\xcc\\x7a\\x38\\xcb\\x33\\xe7\\x02\\x5a\\x66\\x55\\x53\\x94\\xd6\\x50\\xb0\\xee\\xdb\\xaa\\xc2\\x09\\x16\\x92\\xe2\\x47\\xbc\\xe7\\x67\\x9b\\x0c\\x60\\xc8\\x63\\xa4\\x01\\xeb\\x43\\x3c\\xdc\\x4e\\x6e\\x3c\\x21\\x03\\x06\\x5c\\x68\\xab\\x86\\x80\\xfd\\x5b\\x77\\x1c\\x51\\x71\\xf9\\x74\\x44\\x85\\x1c\\x07\\x1a\\x24\\xec\\x2a\\xd0\\x87\\xe2\\x82\\x8e\\x14\\xe5\\x9d\\x8b\\x20\\x56\\x0c\\x2f\\x2f\\xb5\\x8d\\x03\\xc2\\x4a\\x87\\xe9\\x1b\\x1e\\x2e\\x61\\x04\\xa6\\x46\\x54\\x2d\\xc5\\xf8\\xfa\\x9d\\x00\\x19\\x2e\\xc9\\xf6\\xe8\\xed\\x67\\x78\\x11\\x89\\x7f\\x90\\x17\\x7b\\xb9\\xd1\\xe5\\xc6\\xb2\\x16\\x2e\\x71\\xdb\\x4c\\x52\\x21\\x3b\\x93\\xfc\\x1a\\xad\\xdf\\xb0\\xc0\\xda\\xa5\\xf0\\x7e\\xc9\\xb0\\x6a\\x01\\x8c\\x4e\\xd2\\x2e\\x09\\xea\\x78\\x18\\x48\\xc8\\xa4\\x02\\xb2\\x70\\x4f\\xbc\\x66\\xb1\\x1d\\x51\\x86\\x06\\x14\\x5c\\xfb\\x4c\\x68\\x06\\xfe\\x6a\\x2c\\x84\\x3c\\x03\\xc2\\x2c\\xc7\\xa8\\xa4\\x4f\\x03\\xc5\\xd6\\x02\\xd2\\xd5\\xd7\\xc6\\xeb\\x8e\\x9b\\x22\\xc8\\x96\\xb1\\xce\\xf3\\x72\\xe0\\xec\\x10\\x57\\xa1\\xaa\\x0c\\x23\\x38\\xad\\x2d\\xb8\\xa4\\x0e\\x74\\x2d\\x70\\x71\\xb9\\x87\\x0e\\x0c\\xa5\\x4b\\x70\\xc0\\x61\\xaa\\x16\\x2f\\x7c\\xa6\\x96\\xf5\\x85\\xc8\\x19\\x31\\xaf\\xd0\\x63\\x85\\xb6\\xdd\\xa6\\x16\\x35\\x1f\\x0b\\x01\\x6c\\x8e\\xa9\\x8a\\x18\\x41\\x8a\\x40\\x5d\\xfc\\x35\\xf5\\xa7\\x61\\x89\\x3b\\x18\\x7f\\x8a\\x4f\\x8e\\xf8\\x12\\x6b\\x1d\\x6a\\xbb\\x89\\x63\\x11\\x5d\\xcb\\x82\\x98\\x08\\x68\\xa1\\x45\\xca\\x1a\\xb4\\x63\\x47\\x13\\xe0\\x76\\x9b\\x6d\\x16\\x57\\xa3\\x2d\\x23\\xbb\\x58\\x6d\\xaf\\x0d\\x80\\xbb\\x0c\\x22\\xde\\xc2\\xef\\x9a\\xed\\x57\\xb6\\x13\\x4d\\x0b\\xbf\\x54\\xeb\\x6c\\x1c\\xa3\\xef\\xe9\\x60\\x2d\\xdb\\x85\\x49\\xaa\\x90\\x3e\\x76\\x2d\\x96\\xd1\\x82\\xf2\\xb9\\xe5\\xc6\\x46\\xe2\\xfd\\xdd\\x73\\xc0\\x0d\\x0e\\x4d\\x92\\xaf\\xd7\\xcd\\xf9\\xf0\\xf1\\x6e\\x33\\x58\\x30\\x05\\xa8\\x05\\xf1\\x2c\\x57\\xc5\\x29\\x50\\x1a\\xf3\\x01\\x1f\\xd6\\x1b\\x9a\\x48\\x21\\x13\\x4a\\x12\\xee\\x8c\\x60\\x1c\\x8e\\xff\\xfc\\xc7\\xd1\\xce\\x8f\\xfe\\xd2\\xc7\\x2f\\x2f\\xd1\\x6f\\xc9\\x49\\x5d\\x12\\x23\\xcc\\xc4\\xa8\\x36\\x78\\x59\\x0a\\xdf\\x2e\\x3b\\xa8\\x9c\\xc5\\xd2\\xc5\\x80\\xaa\\x46\\xc0\\xcb\\x31\\xd6\\xc3\\x8c\\x73\\x99\\x58\\x0e\\xa0\\xc8\\x59\\xc6\\xe1\\x1c\\x52\\xe1\\xc7\\x0a\\x39\\x7e\\x91\\xf2\\x0f\\x61\\x60\\xf4\\x29\\xc5\\xfb\\x75\\x96\\xd0\\x85\\x81\\x77\\x4f\\x82\\x67\\x3e\\x28\\xcf\\x7e\\x34\\x5e\\xc7\\x3a\\x49\\x8a\\x33\\xd8\\x00\\x8e\\x16\\xe1\\xed\\xf2\\x8c\\xbc\\x4c\\xca\\xd2\\x7c\\xb7\\x0c\\xf3\\x55\\xcb\\x43\\x73\\xdf\\x04\\xac\\xaa\\xe3\\xbd\\xa9\\x80\\x66\\xce\\x54\\xad\\x66\\x7c\\x78\\xd0\\xc3\\xc7\\x46\\xc0\\x70\\x05\\x19\\xe4\\x1f\\x6c\\x70\\x3c\\x56\\x17\\x31\\x29\\xd3\\xd0\\x52\\x19\\xb3\\x6b\\xbd\\x25\\x6d\\xf7\\x99\\x6c\\xd0\\x0a\\x62\\x34\\xaa\\x16\\x6c\\xca\\xa9\\xf9\\x09\\x55\\x65\\x04\\x7c\\x45\\xb7\\xf2\\xd4\\xdc\\x18\\xeb\\xb4\\xf9\\x96\\xd0\\x4c\\x89\\xf4\\x7b\\x7b\\x5e\\xe6\\x06\\x86\\xd5\\xb6\\xc2\\x48\\xf9\\xe1\\x61\\x69\\x63\\x1f\\x26\\x1c\\xfc\\x84\\xcc\\xaa\\xc5\\x0d\\xc6\\x51\\x0d\\xda\\x5e\\x26\\x92\\x1e\\xbd\\xce\\x9a\\xe5\\x00\\x94\\xe1\\xce\\x13\\x74\\x16\\x6d\\x06\\xf6\\x6d\\xc1\\x06\\x6c\\xb8\\xb1\\xfa\\x1c\\xe7\\x35\\x54\\xb4\\x85\\xcf\\x21\\xa7\\xb5\\x14\\x95\\x82\\x02\\xbe\\x0e\\xcc\\x43\\x3d\\x0a\\xc4\\x0c\\x3d\\xc1\\xe5\\xb8\\x1b\\x8f\\xb7\\x5a\\x7d\\x28\\x21\\x20\\x72\\x4b\\x5f\\x4f\\x34\\x5d\\x93\\xb6\\xd2\\x1b\\x9f\\xd2\\xe6\\xfb\\xa1\\x28\\x48\\x69\\xea\\x43\\x6e\\x14\\x77\\x6b\\x08\\xc2\\x34\\x73\\x02\\x27\\xb6\\xf3\\x88\\xe2\\x13\\x3b\\x0c\\x73\\xb4\\xe3\\x6a\\x1c\\xf7\\x71\\xb2\\x0e\\x02\\x03\\x60\\xb7\\xc5\\x03\\xec\\xc6\\xe3\\x97\\x52\\xcf\\x73\\xcf\\x35\\x13\\x26\\x61\\xb0\\x07\\xa2\\x23\\x52\\x5b\\x6f\\x53\\x23\\x3e\\xc1\\xee\\x2e\\xdc\\x3e\\x60\\x62\\x39\\xfb\\x9b\\x48\\x77\\x2e\\x74\\x38\\xd2\\x66\\x30\\x69\\xce\\xaa\\x1c\\x2e\\xc3\\xd0\\xfd\\x71\\xc0\\x0b\\x24\\x12\\x77\\xc7\\x6a\\xf5\\x08\\x91\\x76\\x73\\x1a\\xb6\\x35\\x4f\\x8d\\xdc\\x1d\\x9d\\x6e\\xc3\\x0e\\x47\\x47\\x40\\xee\\x36\\xb2\\xc0\\x1e\\x3b\\x35\\xce\\x19\\x91\\x7b\\x57\\x20\\x5a\\x9b\\xfd\\x6d\\x2d\\x73\\xd8\\x2e\\xe1\\x47\\x6d\\x68\\x2c\\x7d\\x68\\x8f\\x1f\\xda\\x1c\\x75\\x4b\\x77\\xf9\\x77\\xab\\xc6\\x58\\xdd\\xfb\\xa8\\x49\\xb1\\xe9\\xee\\x6e\\xf1\\xf6\\x6a\\xc4\\x69\\xd0\\x20\\x2b\\x9f\\x59\\x61\\x81\\xc5\\x46\\x36\\x16\\x71\\x9a\\x3b\\xd8\\xa0\\xbc\\x7e\\xd4\\x09\\xad\\x77\\xd1\\xe1\\x43\\x2f\\x08\\x5f\\x8d\\xd1\\x55\\x8a\\xdb\\x6d\\xe0\\x8a\\x95\\x72\\x59\\x44\\x87\\x16\\x97\\x3c\\x28\\x81\\x8e\\x76\\x9e\\x92\\x17\\x76\\xdd\\x94\\x6f\\xc3\\x1d\\x9c\\x4f\\x48\\x3c\\x3b\\xdc\\x1e\\xf4\\xe6\\xc4\\xcf\\xff\\x22\\xdd\\x06\\x2d\\x76\\xf8\\xd1\\x7b\\x47\\xd1\\xfc\\x9e\\x12\\x46\\xeb\\x4a\\xcd\\x6c\\x95\\xd0\\x59\\xce\\xc1\\x14\\x22\\xc5\\xf1\\xb9\\xd6\\xee\\x5c\\x54\\xb0\\x6f\\xc9\\x27\\x8a\\x37\\xcf\\x66\\x1f\\xed\\x5f\\xc6\\x3d\\xc9\\x84\\xba\\x5d\\xcd\\x90\\x63\\x85\\x6c\\x87\\xe9\\xf1\\xc6\\x1a\\xb9\\x9c\\xf1\\xf9\\xa0\\xff\\x7f\\x78\\x2c\\x08\\x49\\x73\\x4e\\xa7\\x42\\x0a\\x9b\\x59\\xae\\x22\\x4b\\xb6\\xb8\\x19\\x41\\xe2\\x06\\x75\\x84\\xbb\\xd0\\xf2\\x41\\xd9\\xd6\\xb7\\x7f\\x58\\x2d\\xf4\\x86\\x3d\\x20\\x36\\xbd\\x53\\x69\\x1f\\x28\\xa7\\x8b\\x0c\\xbd\\x87\\xe8\\x3c\\xae\\x89\\x27\\x25\\x89\\x24\\xed\\x3c\\xe0\\xa6\\x66\\x7a\\x96\\xa2\\x9b\\xc5\\x96\\x35\\x1b\\x74\\x93\\xbc\\x4d\\x54\\xa0\\x2c\\x5d\\xda\\x6e\\x5a\\xe6\\x3c\\xda\\x92\\xe6\\x15\\x9a\\x1e\\xb2\\x0e\\xe8\\x7b\\x59\\x1e\\x4d\\x1f\\xd8\\x30\\x8b\\xf2\\x3a\\xb8\\xd0\\x84\\x9e\\x68\\x02\\x99\\x79\\x68\\x12\\xe1\\xfb\\x02\\xa2\\x8f\\xe4\\xe7\\xc0\\xc5\\xbd\\x0f\\x5a\\x34\\xd2\\x45\\xd2\\xfb\\x47\\x73\\x68\\x85\\x79\\xc4\\x45\\x9c\\x98\\x81\\x63\\x80\\xe0\\x11\\xce\\x4a\\x7f\\x3a\\x49\\xe7\\x11\\xb3\\xe3\\x3e\\x96\\x1e\\xf4\\x3e\\x51\\xf9\\x83\\x35\\x28\\xeb\\xdd\\x65\\xa4\\x0d\\x1c\\xe7\\x51\\xa6\\xd5\\xed\\xfb\\xce\\x18\\xd0\\x9d\\xba\\x47\\x8c\\x87\\x41\\x11\\x9b\\xe4\\xf7\\x8b\\x23\\x3a\\x06\\x85\\x66\\x30\\xa7\\x6b\\xba\\xdc\\xb4\\xae\\xdc\\xb3\\x0e\\x2d\\x44\\xa2\\x8b\\xcf\\xf6\\x63\\x46\\xe6\\x86\\x34\\xc1\\x58\\xf5\\xc8\\xe5\\x01\\xc4\\x5c\\xbe\\xea\\x48\\xd1\\xe3\\x8e\\xf8\\x39\\xdd\\x11\\x50\\xf7\\x16\\x52\\x8f\\x1d\\x2e\\xd0\\x0c\\x0d\\x41\\xdb\\x5b\\x82\\x72\\xd8\\xb3\\x85\\x7b\\x6d\\x02\\x14\\xe8\\xa3\\xc3\\x74\\xca\\x4e\\x27\\x72\\x77\\xf6\\x76\\xa6\\xfd\\xd0\\xd2\\xa4\\x34\\xe3\\x49\\x18\\xe9\\x6f\\xf0\\x6d\\x74\\xa4\\x3f\\x9a\\x2e\\x85\\xec\\x2f\\xcf\\x78\\x10\\xfb\\x5b\\x40\\xfd\\x68\\xf8\\x46\\x45\\x17\\xe6\\xf8\\x1c\\xed\\xf4\\xf7\\xe7\\x5c\\x04\\x41\\xb7\\x5a\\x01\\x22\\x8a\\xb5\\x96\\xec\\x67\\xe0\\xc0\\x0d\\xf0\\xbd\\xbb\\x1a\\xd5\\x4d\\x59\\xa6\\xbe\\xd3\\xfb\\xe7\\x13\\xe5\\xd9\\x12\\x1a\\xe5\\x47\\xb0\\xca\\x5a\\x98\\x61\\x51\\x9b\\x79\\x01\\x62\\xe8\\x8f\\x1f\\x1c\\x49\\x84\\xc1\\xbd\\x07\\xea\\x18\\x1d\\x0c\\xf6\\x1e\\xf4\\xa1\\x61\\x0a\\x5f\\xb0\\x4a\\x65\\x2c\\xc7\\x41\\x17\\x38\\xba\\x13\\xf5\\xa2\\x75\\x70\\xd6\\x1f\\x30\\x58\\x78\\x7e\\x7f\\x8c\\x60\\x0c\\xdc\\x5b\\x74\\xb4\\xc7\\x24\\x9d\\x89\\x80\\x50\\xb1\\xbb\\x77\\x86\\x0c\\x98\\xb5\\x3e\\xe5\\x61\\x90\\xc5\\xfe\\xfb\\x81\\x19\\x58\\xb1\\xd1\\x72\\x17\\xdd\\x8f\\xad\\x44\\xae\\xd1\\xb5\\x98\\x7d\\xa6\\x4a\\xf1\\x84\\xaa\\xe9\\xc5\\x2b\\x70\\x56\\x54\\x71\\xaa\\x7e\\x0c\\x88\\x53\\x99\\x17\\xf0\\x64\\xd5\\x6e\\xec\\xda\\x36\\xef\\xa4\\x7c\\xbc\\xe0\\x84\\xcc\\x8f\\x9a\\x59\\x24\\xcf\\xc4\\x9c\\x0e\\xe8\\x94\\x5a\\xda\\x39\\xb7\\xa6\\x8d\\xa6\\xf8\\xf9\\x5a\\x3e\\xa6\\x9c\\xa7\\x7a\\xee\\xd0\\x38\\xf3\\x52\\x82\\x25\\x38\\x38\\x1e\\x40\\x93\\xaa\\xde\\xc0\\x2e\\x17\\x19\\x59\\x91\\x5d\\x4e\\xae\\x94\\x6a\\xda\\xe0\\x63\\xde\\xac\\xb4\\x62\\x00\\x8e\\xed\\xc0\\xb2\\xbb\\xb2\\x5e\\x54\\x70\\x79\\xaf\\x2e\\xaa\\xba\\xd9\\x16\\x1c\\x1d\\xd9\\x40\\x13\\x1c\\xf2\\x02\\xbd\\x76\\x93\\x9e\\x0f\\xd3\\x85\\x47\\x8b\\x48\\x30\\xb3\\xba\\xd2\\x68\\xfd\\x95\\x7d\\xdd\\xec\\x9c\\xc0\\xf4\\xb7\\x30\\xae\\x8a\\x15\\x07\\x90\\xfd\\x3e\\x0f\\x97\\x9f\\xa1\\x7e\\x09\\x2b\\x99\\x4a\\xc1\\x12\\x66\\x8a\\xd9\\xbf\\xc0\\x21\\x52\\xe8\\x7a\\xb0\\xbb\\xa1\\xa1\\x12\\xd9\\x23\\x93\\x44\\x42\\x0c\\xec\\x92\\x0d\\x58\\x91\\x4e\\x4f\\x82\\x39\\xee\\x24\\x98\\x62\\x06\\x71\\x60\\x0b\\x41\\xf0\\x5b\\x80\\x60\\x31\\x19\\xd8\\xd3\\xf1\\x69\\x69\\xf4\\x8e\\x0e\\x44\\x44\\x29\\x26\\xd6\\x10\\x07\\x31\\x1c\\x85\\xfb\\xd0\\x40\\x6b\\x6e\\x6a\\xd7\\xd2\\x2b\\x09\\xf8\\xf8\\xa8\\x5d\\xd5\\x28\\x2a\\xd0\\x74\\x34\\x5c\\x9e\\xe2\\x47\\x19\\xd1\\x73\\x2f\\x4f\\xf2\\xe7\\x2c\\x4c\\xb9\\xd5\\xdf\\x7a\\x04\\x70\\x81\\xc4\\x3e\\xb7\\xdc\\x13\\x53\\x48\\xa5\\x98\\xa6\\x37\\xfb\\x46\\x70\\xfc\\xef\\x7a\\xb8\\x71\\xe3\\xa6\\x3d\\x8c\\x9e\\xfb\\x75\\x8a\\x42\\x78\\xa3\\x06\\xa8\\xe8\\x1a\\x19\\x09\\x61\\x15\\x1e\\xc9\\x28\\xad\\x13\\xed\\x29\\xc8\\x2f\\xdb\\xc3\\x2a\\x1a\\x93\\x91\\x36\\xbf\\x1a\\xff\\x73\\x44\\x1c\\xfc\\x0e\\xb8\\xfd\\x9c\\x2d\\xa2\\x45\\x6e\\xa9\\xa4\\x4b\\x7a\\xfa\\x06\\x50\\x0d\\xe1\\x68\\x23\\xac\\x88\\xf2\\x0d\\x3b\\xbd\\xc5\\x47\\x32\\xc4\\x11\\xfe\\x78\\x01\\x8d\\xbf\\x4f\\x50\\x38\\x29\\xa1\\xa6\\x5c\\x1c\\x7f\\x92\\xb5\\x7f\\x20\\xa6\\xa2\\x01\\x38\\xd5\\x0a\\x96\\x87\\xc5\\x4c\\x40\\xa8\\x80\\x03\\xd4\\xa2\\xd5\\x52\\x82\\x13\\x4c\\xbc\\x7a\\xcc\\xc4\\xa3\\x06\\x34\\x86\\x68\\x00\\x18\\xa6\\x81\\xc6\\xcb\\x28\\x32\\x8a\\xb0\\x11\\xd0\\x10\\x00\\x40\\x1a\\x32\\xb0\\xac\\x68\\x02\\xfe\\xec\\x1f\\x13\\x05\\xcf\\x2d\\xaf\\xbe\\x46\\x67\\xa1\\xff\\xf8\\x1d\\x35\\x7c\\xf7\\x02\\xed\\xfa\\x94\\x9e\\x28\\x05\\x71\\x0d\\x0d\\x11\\x1a\\x93\\xa6\\xc0\\x48\\x43\\x30\\x9d\\x41\\xb4\\xeb\\x9b\\xef\\xf2\\xa7\\x3e\\x47\\x67\\xa3\\x3f\\x7d\\xd2\\x9e\\xa5\\x44\\xd4\\xb7\\x8e\\x57\\x26\\xe2\\xda\\xb7\\xe7\\xaf\\xb6\\xbc\\xa1\\x1d\\x22\\xb6\\xaa\\x83\\x21\\xf7\\x6b\\x18\\x86\\xe9\\x94\\x9b\\x52\\x36\\xca\\xa6\\xef\\xa2\\xe7\\xa9\\xdb\\xd8\\x96\\x72\\x6a\\xb3\\x9c\\x57\\xec\\xe4\\xeb\\xf5\\xd0\\x75\\x6f\\x4e\\xd9\\x6c\\x88\\xcf\\x1c\\xe0\\x3a\\x32\\x4c\\x7c\\x81\\xa7\\xdd\\xfe\\xf3\\x47\\xb6\\x0a\\xad\\xfc\\x06\\xa6\\x30\\x74\\x42\\x24\\xa9\\x95\\x4e\\xaf\\x1e\\x4c\\x55\\x71\\x06\\x31\\x27\\x9e\\x75\\x4c\\x34\\x62\\xe0\\xd5\\xcc\\x08\\xb4\\x4b\\x06\\x54\\xe2\\x37\\x2c\\x7c\\x19\\x1b\\xd6\\x4e\\x53\\xb6\\x57\\xfd\\xba\\x89\\x33\\x95\\x0b\\x23\\xe9\\xc4\\x25\\x54\\x25\\xfa\\xac\\x3d\\xa1\\x9d\\xf4\\xe1\\xb0\\xa8\\x64\\x02\\xe5\\x6b\\x59\\xa6\\x17\\x99\\xa6\\x68\\x7f\\x67\\x7c\\x54\\xb8\\x16\\xed\\x69\\xe2\\x17\\x10\\x7a\\xbe\\xaa\\x9f\\xf3\\x7f\\x99\\x10\\x78\\xd7\\xe2\\x4c\\x42\\x90\\xff\\x77\\xf5\\x8b\\xef\\x7a\\x4b\\x0b\\x62\\xfe\\xe8\\x44\\x50\\xa7\\xdb\\x0b\\xfc\\x7b\\x10\\x1f\\x65\\x83\\x24\\x5e\\x52\\x17\\xed\\x8d\\xf1\\xd6\\xd2\\xf2\\x65\\xfd\\xa2\\xff\\x9b\\x84\\x90\\x95\\x27\\x87\\x86\\xff\\x58\\xbb\\x70\\x70\\x15\\x81\\xe8\\xbe\\xe0\\x9a\\x3e\\xb0\\x8e\\xc7\\x6a\\xb9\\xbc\\xab\\xe5\\x9a\\xbc\\xc5\\x75\\xd7\\x63\\xa5\\xe3\\xbc\\xb5\\x26\\xf6\\x2f\\xd8\\x99\\xa6\\xdd\\xd2\\xc7\\xfc\\xe1\\x7a\\x67\\x5a\\x68\\xbb\\x76\\x4b\\x7b\\x05\\x6c\\xd7\\x34\\x6b\\x96\\x41\\xef\\x76\\xff\\x90\\x9c\\x1a\\x5a\\x58\\x51\\x79\\x28\\x9e\\xc4\\x44\\x88\\x4b\\x94\\x8d\\x57\\xad\\x12\\xe3\\xec\\xff\\x4d\\xac\\xe7\\xfd\\xad\\x06\\x86\\xe3\\x3b\\x4a\\x4b\\x23\\x2a\\x5c\\x71\\x11\\x16\\x09\\xdf\\x9e\\xcb\\x79\\xd8\\xcc\\x53\\x8d\\x87\\x09\\x86\\x41\\x4b\\xb6\\xb8\\xc4\\xa0\\xbe\\xe4\\xbd\\x9a\\x91\\x2b\\x19\\xd2\\xe6\\xab\\xfa\\xba\\x59\\xe5\\x5e\\x9f\\x7b\\x40\\x57\\x3b\\x7a\\x35\\x53\\xd2\\x12\\x68\\x3f\\x50\\x15\\x7b\\x7d\\x0b\\x4c\\xfe\\x4d\\xcb\\xa1\\x03\\x9a\\xb6\\x91\\xde\\xab\\xe7\\x28\\x54\\xde\\x75\\xab\\xfe\\xbe\\xd1\\xa6\\xd1\\xbd\\xd7\\xcf\\xaa\\x18\\x82\\x57\\x1b\\x87\\x2e\\x78\\x3f\\xb6\\x14\\x0d\\x58\\xef\\x7c\\x65\\x9d\\xac\\x72\\x34\\x71\\xaa\\xb2\\x6d\\x34\\x3e\\xb6\\x1a\\x44\\xaa\\x49\\x52\\x6d\\x03\\x59\\x65\\xc0\\x36\\xc1\\xeb\\x55\\xc9\\xa7\\x6b\\xeb\\xae\\xaa\\xa5\\xb5\\x2b\\xd2\\xaa\\x46\\xe9\\x21\\x5a\\x0a\\x75\\x50\\xd7\\x17\\xec\\x6e\\xdc\\x7d\\xfe\\x65\\xb0\\x63\\x88\\x3d\\x46\\x28\\xc5\\x6b\\x00\\x7c\\xa5\\x60\\x68\\x64\\xb8\\x29\\xde\\x8f\\x85\\x57\\x7f\\xd2\\x45\\xeb\\x64\\xf4\\x6c\\x47\\xf9\\x8a\\x5c\\x18\\x3c\\xc5\\x95\\xd7\\x2a\\x16\\x84\\xfe\\x3b\\x3d\\xbc\\xf2\\x72\\xdd\\xaa\\x0a\\x5a\\xad\\x15\\x56\\xe6\\x44\\xca\\x6a\\x90\\xa5\\xbe\\xf2\\x55\\x61\\xa1\\x7f\\x95\\xd7\\x50\\xab\\x39\\xe2\\x07\\x45\\xde\\x5e\\x35\\x50\\x83\\x53\\x28\\x22\\x18\\x35\\x44\\x08\\x23\\x30\\x2d\\x68\\x01\\xe2\\x68\\x64\\x0c\\x89\\x7b\\xf8\\xcd\\xeb\\x73\\x6f\\xf2\\x40\\xdb\\x44\\x93\\xef\\xe3\\x1f\\x77\\x48\\xd8\\x97\\x6f\\xbf\\xfb\\x31\\xf5\\xfd\\x73\\xcd\\xee\\xb7\\xb7\\x9d\\x7d\\x77\\x1d\\xad\\x41\\x9a\\x23\\x27\\x10\\xc9\\xa0\\xe4\\x56\\x65\\xb1\\xe0\\x86\\xb4\\xf5\\x12\\x51\\xe1\\x59\\x62\\xd7\\x87\\x4c\\x73\\x9b\\x8b\\xae\\xa7\\x35\\x1c\\x1e\\x52\\x82\\x11\\x06\\xec\\xc4\\xf6\\xe8\\x61\\x42\\x87\\xd6\\xd9\\xc8\\x56\\x31\\xc0\\x6d\\xb4\\x6f\\x3b\\xcd\\xa2\\xc6\\xd7\\x0e\\x5b\\xb1\\xa6\\xf1\\x15\\x80\\xa9\\x82\\xd3\\x58\\xd0\\x21\\x5d\\xc6\\x46\\x9a\\x08\\x15\\x39\\x65\\x4d\\x4b\\x36\\xe1\\x1e\\xe6\\x4a\\x81\\x48\\x78\\xab\\xaa\\x6b\\x35\\x4b\\x62\\x1e\\xa5\\x8b\\x4d\\xc6\\xc6\\xb2\\xbe\\x9d\\xe3\\x58\\x5a\\x38\\xef\\x95\\xf8\\xd3\\xc2\\xd9\\x45\\xe5\\x2e\\x76\\xf0\\xdb\\x41\\x6d\\x5a\\x91\\x9e\\x27\\xd2\\x6f\\x4f\\xe2\\xd1\\x0f\\x67\\x09\\x23\\x5c\\x21\\x10\\x62\\xc3\\x2e\\x6c\\xaf\\x46\\x89\\xee\\x06\\xbc\\x21\\x81\\x18\\x1e\\xd7\\x20\\xef\\x10\\x2f\\x23\\xc7\\x2d\\xec\\xe6\\x9f\\xc1\\x31\\xbf\\x8e\\x04\\xa2\\xf2\\x0b\\xfe\\x90\\xae\\x0a\\x95\\xb2\\x12\\xdb\\x28\\x0b\\x69\\x16\\xfa\\x8b\\xcf\\xf3\\x79\\xc1\\x55\\x1e\\x7d\\x51\\x2f\\x84\\x13\\x4b\\xa2\\x8a\\x0a\\x8f\\xba\\xeb\\x1f\\x59\\x20\\xcf\\x56\\x14\\xe0\\xfb\\x14\\x87\\xa5\\xc2\\xe3\\x3c\\x76\\xd5\\x12\\x4f\\x1e\\x01\\x0e\\x6f\\x56\\x19\\x26\\xfa\\x46\\xb4\\x9a\\x1a\\xa2\\x4c\\x11\\x21\\xaa\\x35\\x84\\x08\\x44\\x12\\x82\\x6a\\xa8\\x06\\xa7\\x94\\x45\\x70\\x1a\\x88\\x14\\x2c\\xf9\\x2e\\xc6\\xab\\x52\\x09\\x7a\\x4a\\xf9\\x7c\\x17\\x56\\x01\\x60\\xab\\x44\\x22\\x6c\\x85\\x52\\xe9\\xc6\\xf2\\x79\\x1e\\x2c\\x1a\\x1b\\x57\\xc9\\x6b\\x3f\\x13\\x1a\\xc7\\x56\\x2a\\xb4\\x4e\\x46\\x5d\\x76\\x3b\\x6d\\xe0\\x83\\x2c\\x9f\\xea\\x1c\\x61\\xf4\\x78\\xb9\\x70\\x1f\\xf3\\x43\\xba\\x58\\xf8\\x8c\\xf4\\xc0\\x2a\\x49\\x5a\\xbe\\x9b\\x21\\xb2\\x69\\x5b\\x18\\xa3\\xf6\\x03\\x44\\xac\\x37\\xfd\\x51\\xe4\\x49\\xee\\xec\\x42\\xcd\\x4b\\xbc\\x36\\x73\\xe9\\xfd\\x4b\\x26\\xbd\\x58\\x27\\x14\\x1b\\x76\\x24\\xf0\\x69\\x73\\x99\\xc5\\x61\\x81\\x08\\x08\\x71\\xe0\\x0a\\x5c\\x7f\\x8e\\x69\\x7a\\x95\\xbe\\xa0\\x18\\xda\\x6c\\x9c\\xaf\\x41\\xa7\\x84\\xfe\\x74\\x95\\x07\\x69\\x98\\x0d\\xca\\xfa\\x27\\x86\\x36\\x67\\xb6\\x35\\x9d\\x1a\\x40\\x0f\\x9c\\x1c\\xf0\\xd8\\xea\\xa9\\xbe\\x10\\x13\\xd6\\x3b\\x8b\\xa0\\xf5\\x3d\\xe8\\x9a\\xbf\\x5e\\x6b\\xf8\\x5f\\x11\\xa8\\x8d\\x59\\x68\\x8d\\x04\\x2c\\xca\\x50\\x69\\xc5\\x16\\xbc\\xa7\\xac\\x69\\x20\\xde\\xc1\\x74\\xe7\\xc0\\x2c\\xb2\\x8e\\xbb\\x06\\xd8\\xb1\\xe3\\x71\\xd6\\x71\\x16\\x33\\xb2\\x5c\\x56\\x11\\x10\\xed\\x67\\x10\\xd9\\x83\\xc6\\x16\\x7f\\xe0\\x0f\\xaf\\x36\\x70\\xcc\\x88\\x6f\\xc6\\x86\\x4e\\xc5\\xc5\\x5d\\x0b\\x0d\\xbe\\x32\\xff\\xbc\\x1e\\xbc\\x4a\\x94\\x67\\x27\\xe6\\xa0\\xcf\\xa1\\xbb\\x23\\x14\\x9d\\xcc\\xa2\\x48\\xf1\\x11\\x29\\xe5\\x6c\\x35\\x87\\xe6\\x4d\\x1b\\x31\\xc8\\x4a\\xa9\\x14\\xdc\\xa4\\x37\\x76\\x80\\x6a\\xc8\\xc5\\x3d\\x14\\xf0\\xbb\\xef\\x6c\\x20\\x68\\x85\\xdc\\x8b\\xe4\\x65\\x8e\\x00\\x9a\\x7d\\xcd\\xec\\x57\\x45\\x7d\\x47\\xd2\\x78\\x91\\x73\\xd5\\x75\\x17\\x90\\x6f\\xf7\\xa5\\xe9\\x77\\x87\\x3c\\x2e\\x19\\x59\\xc9\\x94\\x16\\x7f\\xa2\\xf3\\xe4\\xa0\\xdb\\x47\\xff\\x83\\x64\\xa8\\x53\\x10\\xa3\\x8f\\x44\\x1d\\x6b\\x28\\x60\\x63\\xe1\\x3e\\x11\\xf9\\x11\\x71\\xb9\\xa6\\x7f\\x48\\x38\\x2f\\xa0\\xf6\\xde\\xaf\\x6e\\xbd\\x96\\xfc\\xdb\\xa6\\x80\\x7e\\x30\\xb5\\x95\\xc5\\x36\\xf3\\xbe\\xf2\\x3e\\x7b\\x16\\x16\\x65\\x2a\\xe3\\x55\\x61\\xc6\\x96\\xa2\\x73\\x7b\\x7e\\xab\\xa8\\x5d\\x2b\\x12\\x5e\\x3f\\xe6\\xfa\\x46\\xd7\\xec\\xed\\xb4\\xeb\\x42\\x0d\\xf2\\x32\\x90\\xc4\\x5e\\x2b\\x00\\x2e\\xd1\\x3a\\xd9\\x39\\x33\\xa8\\x88\\x91\\x07\\x5b\\xaa\\xb3\\x0a\\xde\\x1f\\xf2\\x4b\\x42\\xdc\\x84\\x66\\x00\\x15\\xc9\\x39\\x36\\x5e\\x7c\\x42\\xc0\\x42\\xe5\\xae\\x9a\\xb9\\x0d\\x89\\xbd\\xcc\\x00\\xc3\\x27\\xdb\\xee\\xcf\\xd5\\x83\\x11\\xdc\\x29\\xef\\x49\\xbd\\x50\\x41\\xb1\\x51\\xcc\\x74\\x88\\x64\\x0c\\x87\\x89\\x5f\\xb3\\xd3\\xf2\\xbf\\x24\\xe4\\xdd\\x53\\x1b\\x8a\\x8c\\xab\\xfd\\xb5\\x17\\xc1\\x92\\x8a\\xd9\\x32\\x99\\xc7\\xd6\\xc3\\x9f\\x72\\x9e\\x06\\x2c\\xb7\\x1d\\x2d\\x81\\xd1\\x83\\x79\\xf5\\x71\\xcf\\x4c\\x19\\xb3\\xe9\\x12\\xd8\\xd0\\xab\\xbb\\xb4\\x55\\xbc\\x96\\x92\\x42\\x6d\\xd5\\x3a\\x1a\\x58\\x5a\\x30\\x4c\\xd1\\x68\\x59\\x81\\xa2\\xa6\\x6d\\x32\\xfe\\x9b\\xd1\\xc9\\x54\\x14\\x63\\x06\\xb4\\xba\\x10\\x05\\xd2\\x36\\xd0\\xb5\\x36\\x6a\\x4b\\x4a\\x0a\\xff\\x98\\xaa\\x96\\xb9\\xda\\x84\\x77\\x85\\x8b\\xd7\\xa9\\xbf\\x01\\xf9\\x8d\\x8a\\x14\\x3d\\xa8\\x53\\x68\\x51\\x9b\\xdd\\xf3\\x46\\xc6\\x95\\xc0\\x25\\x8b\\x74\\x3f\\xff\\x1c\\x10\\xab\\x50\\xf7\\x98\\x7b\\x92\\xde\\x4b\\x39\\xca\\x84\\xc0\\x84\\x1f\\xe7\\xfc\\xf4\\x77\\xa6\\x2f\\xf3\\xd9\\x2a\\x67\\xee\\x3d\\xe1\\xf9\\xc9\\x46\\x55\\x1c\\xd5\\x5d\\xe2\\xb1\\x79\\xe6\\xf1\\x4f\\x1c\\x1c\\xf2\\xe0\\x82\\x77\\xd9\\x5f\\xc4\\x6a\\x94\\x07\\x38\\xca\\xad\\xa9\\xf2\\x0c\\x48\\x67\\x61\\xb3\\x80\\x75\\x59\\xd7\\x06\\x3a\\x19\\x33\\x4a\\x6e\\x6e\\xaf\\x3a\\xc4\\x63\\xd5\\x5c\\x92\\xb7\\xb4\\x1b\\x57\\x52\\x84\\xcf\\x5e\\x0d\\x2a\\xd5\\xe9\\x6b\\x29\\x08\\x18\\xa1\\xe9\\xf5\\xec\\x30\\xba\\x79\\xbb\\x9c\\x7f\\xc9\\xd0\\x4a\\x81\\x6b\\x16\\x84\\x4c\\xfa\\x5a\\x1a\\x80\\xb2\\xe4\\x6d\\xca\\xca\\x85\\x48\\xfe\\x04\\x02\\xe9\\xf8\\xb3\\xb8\\xe4\\x6b\\x73\\x94\\xb9\\xab\\x92\\x1a\\xe2\\x84\\x8c\\x12\\xbf\\x56\\x62\\xf2\\x46\\x17\\x36\\xe7\\x95\\x78\\x4f\\xb6\\xcc\\x3a\\x24\\x0e\\x1c\\xef\\x88\\xee\\xdc\\xaf\\x09\\x41\\x9a\\x0b\\x03\\xf5\\x17\\x61\\x61\\xcd\\x39\\x59\\x7d\\x5c\\x7b\\x3a\\xa5\\xe8\\x1e\\xcd\\xbf\\x56\\x6b\\xa8\\x21\\x2b\\xc1\\x5a\\x96\\xc6\\x4e\\x88\\x15\\x61\\xb7\\x2c\\xcc\\x9d\\xfe\\xee\\x5c\\x1a\\x2c\\xe7\\xae\\xf7\\x57\\x1f\\x83\\x7e\\xf6\\x4f\\x63\\xc9\\xd3\\x88\\x6f\\xe1\\xcd\\xc7\\x5f\\x99\\x8e\\x89\\xb0\\x01\\x9d\\x1c\\x8e\\xe8\\xbe\\x7b\\xfa\\x0b\\x0d\\xad\\xb9\\x6c\\xe2\\x2d\\xb8\\x69\\xef\\x5b\\x95\\xfe\\xfc\\xd7\\x26\\x27\\xe4\\x76\\xa0\\x38\\x38\\xe9\\x9e\\x67\\xbe\\x12\\xc5\\x55\\x16\\x18\\x7b\\x40\\x4e\\x25\\xbf\\x0b\\x23\\x64\\x8c\\x01\\x46\\xc7\\xe5\\x88\\x51\\x52\\x4b\\xb3\\x6f\\x9a\\xcf\\xa8\\x08\\xb4\\x8b\\xad\\xc3\\xdc\\x51\\xa7\\x69\\xc0\\x78\\x38\\x1c\\x44\\x76\\xb5\\x36\\xf3\\xe0\\x0c\\xb4\\x84\\x1d\\x0f\\x91\\x53\\x9f\\x6e\\xb3\\x85\\x15\\xc6\\x98\\x61\\xb5\\x21\\x40\\x03\\x94\\x01\\xba\\xda\\xc0\\x0c\\x17\\xc6\\xb6\\x49\\xff\\x7c\\x8d\\x6a\\x76\\x72\\x9f\\x91\\x48\\xe8\\x5a\\xe8\\x00\\x10\\xa4\\xab\\x0c\\x0c\\xd3\\x96\\xaa\\x0d\\xf0\\x1a\\xb5\\x66\\x4d\\xae\\xf5\\x33\\x3e\\xe4\\x44\\x9c\\xaa\\x22\\xf3\\x54\\x7d\\x89\\xe1\\xe4\\x46\\xe5\\x1f\\x1f\\x55\\x3c\\x07\\xff\\xa1\\x8c\\x60\\x56\\xd3\\x6a\\x40\\x90\\x56\\x6f\\xd2\\x46\\x89\\xdf\\xc3\\xa9\\xaa\\xef\\xb4\\x60\\x71\\x3a\\x13\\xa9\\xcd\\xeb\\x98\\xfe\\xeb\\x9d\\xc1\\x5a\\xf4\\xd3\\x87\\x1a\\xf6\\x21\\xa1\\x2c\\x60\\x1f\\xe3\\x69\\x9d\\xe6\\x01\\x73\\xab\\xdb\\x3b\\x9d\\x89\\xd2\\xe6\\x76\\xc4\\x0b\\x0f\\x0b\\xd9\\xde\\xc3\\xe1\\x51\\xdb\\x18\\x17\\x2c\\xd2\\x9c\\x4e\\x30\\x14\\x3c\\x53\\x18\\x67\\xd5\\x6a\\x4d\\x35\\x74\\x04\\x8e\\x30\\xb4\\x26\\xd1\\x17\\xc5\\xb7\\x55\\xf3\\x47\\xa3\\x53\\x2d\\x6a\\x0b\\x5d\\x89\\xb9\\x86\\x01\\x23\\x35\\xf6\\xcc\\xda\\xc2\\xb6\\x2d\\xd5\\xc9\\x01\\x83\\xb9\\x9e\\xb6\\xe7\\x74\\x6b\\x6e\\x2b\\x42\\xc8\\x46\\x54\\x57\\x59\\xe6\\xe9\\x58\\x2a\\xa9\\x43\\xed\\x0b\\x69\\xd7\\xb8\\x15\\x5b\\xaf\\xa0\\xbf\\xf9\\xe3\\x41\\x93\\x97\\x0d\\x61\\x86\\x41\\x15\\xbd\\xce\\xaa\\x6a\\xc1\\x81\\xa8\\xa7\\x54\\xf1\\x88\\x14\\x2b\\xad\\xf4\\xc9\\xe3\\x64\\xa5\\x21\\x6f\\x19\\xdf\\x1e\\xc9\\x9b\\xa8\\xe6\\xd8\\x0e\\x8d\\x0b\\x97\\xb9\\x54\\xdf\\x35\\x79\\x77\\x55\\xee\\xa9\\x04\\xc1\\xf3\\x83\\x41\\x35\\x7a\\x6d\\x1d\\x09\\xe4\\x85\\x8b\\x4c\\x12\\x86\\x4b\\xbc\\x23\\x91\\x5a\\x2d\\x89\\x11\\x77\\x90\\x9a\\x28\\x11\\x81\\x0b\\x01\\xdc\\xa5\\x0d\\x40\\xd0\\x39\\xb3\\x8f\\xf7\\x21\\x8b\\x16\\x58\\x93\\x8c\\x48\\x99\\xa7\\x13\\xc5\\xf7\\x53\\xb0\\x82\\x3a\\x97\\x26\\x5e\\x0a\\xf3\\xeb\\xf2\\xad\\x42\\x8e\\x93\\xa3\\x41\\x32\\x1e\\x41\\xdd\\xb2\\x69\\x78\\xba\\x3c\\x63\\xec\\x02\\x27\\xe9\\x00\\xdc\\x67\\x90\\x60\\xe4\\xc6\\x40\\xc7\\x95\\xcc\\xe2\\x86\\x2b\\xfa\\x86\\x31\\x64\\x1d\\x15\\x09\\xa9\\xa7\\x0e\\xa0\\x17\\x00\\xda\\xbb\\x4b\\x53\\x19\\x15\\xa8\\xd5\\x8d\\x7c\\x4d\\x15\\xbe\\x2b\\x01\\x8d\\xe2\\x7c\\xe6\\xce\\x27\\x67\\x8f\\x75\\xed\\xb8\\x9e\\xd4\\xcd\\xb9\\xee\\xe8\\xba\\xec\\x63\\x13\\x7a\\x0d\\x7f\\x51\\xba\\x66\\x6a\\xaf\\x3b\\x67\\xba\\x99\\x66\\xfa\\x24\\xed\\xbc\\x47\\x74\\x63\\xf4\\x4b\\xe7\\x3d\\x87\\xf0\\xc9\\xec\\x10\\x89\\x3f\\x3b\\xfc\\x51\\xd7\\xfd\\x0c\\xc0\\x83\\xc8\\xe7\\x6b\\xdd\\x5f\\xeb\\xe7\\x68\\xc6\\x07\\x19\\x2f\\x1e\\x15\\x92\\x67\\x12\\x61\\xc7\\x1d\\xdb\\x72\\xde\\x77\\xc5\\x1d\\xff\\x71\\xa9\\x1d\\x92\\x19\\x94\\x3f\\xfa\\xca\\x4c\\x09\\xa4\\xdf\\x2f\\x22\\x52\\xba\\x23\\xdd\\x80\\x4f\\x3e\\x2e\\xfc\\x07\\x84\\xe6\\x7b\\x72\\x9b\\x4e\\xbf\\xba\\xf3\\x9c\\x60\\x78\\x68\\x2b\\xe5\\x11\\xcd\\xdc\\xd0\\xee\\x17\\xf6\\xc4\\x38\\xff\\x92\\xcb\\x59\\xac\\x10\\xc5\\x0a\\x45\\x6d\\xcd\\xaf\\x1e\\xfc\\x18\\xdc\\x64\\x6b\\x4b\\x6e\\xdb\\x02\\xeb\\x5d\\x13\\x93\\xd4\\xfb\\xb2\\x74\\x2d\\x6d\\xee\\xfd\\x77\\x3a\\xf1\\x8e\\x8f\\xed\\xdd\\xcf\\xe0\\xc2\\x6c\\x78\\x6f\\x36\\xcf\\x39\\xc1\\xe6\\x95\\x73\\xdb\\x61\\x8f\\x6a\\x7c\\x84\\x7e\\x8a\\x5a\\xf5\\x1a\\x25\\x0c\\x67\\x04\\xf8\\xd5\\x45\\x12\\x81\\xb3\\xe0\\xbe\\x85\\xc7\\xb6\\x09\\xaa\\x2a\\x56\\xb1\\x2c\\x10\\x56\\x2d\\xd1\\x64\\x15\\xc0\\x9e\\xca\\xdf\\xa3\\x33\\xbb\\x0b\\xd3\\x36\\xf5\\x47\\xb3\\x0b\\x0c\\xf4\\xde\\x5f\\x5e\\x56\\xdc\\xd8\\xe0\\x8a\\x49\\xf9\\x90\\xc5\\x5a\\x00\\xc3\\x65\\xe9\\xed\\x82\\x57\\xca\\x46\\x97\\xc9\\xe2\\xba\\x79\\x6d\\x14\\x9c\\x52\\x7f\\x11\\x95\\x0c\\x6b\\xe2\\x48\\xe0\\x08\\x52\\x54\\x77\\xc2\\x5a\\x36\\x23\\xb8\\x55\\x07\\x9a\\x61\\x93\\xd8\\xf2\\x26\\x85\\x85\\x65\\xce\\xfb\\xb3\\x19\\xf6\\xa7\\xad\\xd9\\xbf\\x47\\x20\\xcb\\x10\\x95\\xc3\\x8d\\x98\\x83\\x39\\xf3\\xbd\\x6d\\x65\\x1c\\xb4\\x56\\x48\\x33\\x6c\\x5b\\x05\\xd4\\xc4\\xd1\\x9e\\xc2\\x25\\x31\\xb5\\xef\\x59\\x57\\xfd\\x61\\xd9\\xe5\\x72\\xff\\x46\\xd9\\x63\\xa0\\xc6\\xdd\\xe0\\x3f\\x29\\x55\\xd4\\x01\\x53\\xb6\\x55\\x14\\xc9\\x89\\x00\\x7e\\xbc\\xd0\\xd9\\x0e\\xab\\x63\\xc5\\xfb\\x08\\xfe\\xea\\xe2\\x09\\x42\\x25\\xdc\\x25\\x13\\xc8\\x3a\\xe9\\x6b\\xd2\\xe1\\x13\\xb9\\x82\\xc0\\xb4\\x32\\x8b\\xbd\\xa6\\x43\\x0b\\xbc\\xb8\\xa9\\x8a\\x07\\x1c\\x81\\x8a\\x82\\xcb\\x76\\xc9\\x21\\xd9\\x0d\\x05\\x68\\x76\\x3f\\x48\\x28\\x6b\\x92\\x1b\\x99\\xfa\\xec\\x4f\\xfe\\xb0\\xf9\\xd9\\x13\\xe8\\x29\\xaf\\x34\\xc5\\x14\\xaa\\x68\\xc9\\x64\\x4e\\xef\\x7e\\x5b\\xd9\\xf3\\xc6\\xee\\xfd\\x19\\x17\\x5a\\xfd\\x77\\x91\\xef\\xf5\\x66\\xe8\\x32\\xd8\\x1d\\x57\\x2d\\xf2\\x49\\xe1\\xa5\\x2a\\x72\\x92\\x9e\\x63\\xd9\\x08\\x9d\\xd7\\x27\\xd0\\x87\\x16\\xcc\\xe1\\x40\\x8b\\x6b\\xd5\\x92\\x5e\\x2f\\x1a\\xf7\\x30\\x94\\xbf\\x16\\x2b\\x20\\x99\\x4d\\xfc\\xf8\\x96\\x74\\xd5\\x0e\\xa4\\x47\\x3d\\x64\\xaf\\xe1\\x28\\x1f\\xad\\xa8\\x0d\\xfa\\x67\\xd6\\x49\\x8f\\x57\\x96\\x1c\\xe3\\xf1\\xc0\\xfe\\x6c\\x20\\x2d\\x7b\\x5e\\x5d\\x6e\\x27\\x1f\\x01\\x46\\x47\\x3a\\x33\\xe7\\xa6\\xe6\\x56\\x62\\xfa\\x90\\x75\\xe2\\xd7\\x24\\xaa\\xde\\x5c\\xc2\\xf0\\x51\\x55\\x24\\x98\\xa2\\x5c\\xc5\\x95\\x81\\x67\\xbb\\xe5\\xe7\\x25\\x22\\x4a\\x63\\x46\\x8c\\x52\\xa3\\x86\\x7d\\xb1\\x3c\\xb5\\x50\\x5b\\xa2\\xdd\\x81\\xc4\\xd4\\xe3\\x75\\x1a\\x62\\xa3\\xca\\xeb\\x9d\\x55\\xf2\\x43\\x27\\xec\\x95\\x87\\x24\\x05\\x69\\x43\\x94\\x66\\x19\\x72\\x5e\\xfd\\xd3\\xe6\\x7b\\xeb\\x7f\\x3c\\xd3\\x43\\x19\\x1d\\x80\\xa9\\x7a\\x30\\x47\\xbe\\x20\\xca\\xbf\\x50\\x5d\\x82\\x72\\xf4\\xb2\\xf8\\xb5\\xdc\\xe5\\x8a\\xe5\\xb5\\x95\\xce\\xe6\\xb6\\x0e\\xc0\\x33\\xe4\\x0c\\x54\\x67\\x54\\x4d\\x60\\xd6\\xb4\\x66\\x9b\\x28\\xbf\\x45\\xfe\\xec\\xc4\\xac\\xf4\\x4f\\xa9\\xeb\\x1e\\xa3\\x52\\x28\\x18\\x64\\xd0\\xfb\\x04\\xc2\\x46\\x7a\\xc6\\x6d\\x94\\x07\\x50\\x27\\x3c\\x51\\x5e\\x7e\\x5c\\x58\\x24\\x0a\\x26\\x97\\x6c\\xd3\\xea\\x45\\x62\\x50\\x3b\\x0c\\x98\\xf9\\x90\\x82\\x50\\x67\\x3c\\x59\\x9f\\x7d\\x9f\\xce\\x11\\x0a\\x07\\xe9\\xf4\\xfe\\x69\\xaa\\xe2\\xfd\\xf0\\x47\\x52\\x6c\\xf5\\x76\\x8a\\xbd\\x5a\\xbf\\x5c\\xdb\\x16\\x14\\x7c\\x7b\\xf2\\xf9\\x1f\\xd5\\x7f\\xc2\\x9b\\x9d\\x02\\xc8\\xa8\\x24\\x3f\\xe1\\xb7\\xe0\\x85\\x96\\xe4\\x34\\xae\\x78\\xa3\\x30\\xa5\\x54\\xa1\\x47\\x1d\\x61\\xcb\\x9f\\x16\\xcb\\x75\\xa8\\xae\\x96\\x99\\xc3\\xbe\\x3a\\xff\\x03\\x8d\\x40\\xc9\\x0f\\xff\\x49\\xe2\\x81\\xeb\\xd4\\x14\\x11\\xf2\\x0d\\xea\\xdf\\x37\\x5e\\x9d\\xb8\\x2a\\x1b\\x16\\x6f\\x3b\\x84\\x22\\x5f\\xca\\xc1\\x8a\\x99\\xfc\\x08\\xf7\\x78\\xf9\\x2a\\x1f\\x11\\x1e\\xfa\\x0b\\xc3\\x45\\xe2\\x3d\\x50\\xe5\\xa7\\x4f\\x01\\x51\\x59\\x3d\\x84\\x0e\\xe8\\x95\\xe6\\xd1\\x3b\\xf9\\xb2\\xb6\\x67\\xca\\x37\\xaa\\xbc\\x12\\xda\\x01\\xbd\\x1c\\x80\\x64\\x68\\x77\\xbc\\xae\\x04\\x2d\\xc8\\xe9\\xcc\\x8a\\x36\\x85\\xd1\\x10\\x57\\x18\\x9a\\x98\\x23\\x41\\xcd\\x04\\xac\\x2c\\xae\\x34\\x1a\\x5b\\x95\\x93\\x73\\xe0\\xd0\\x8f\\x27\\xf1\\xeb\\x20\\x0a\\x1d\\x55\\x30\\x53\\x40\\x20\\xe9\\xd7\\x32\\xbf\\x92\\x07\\xce\\xab\\x84\\x6d\\x0f\\x1e\\x93\\xc4\\xf2\\x66\\x85\\xc9\\xd3\\x6d\\xc3\\x29\\x37\\x27\\xd7\\x58\\xaa\\x8c\\xcd\\x4a\\x75\\x13\\x76\\x2a\\xa7\\xf0\\x50\\x42\\x91\\xcd\\xe9\\xdc\\x62\\xff\\xac\\x92\\xbd\\xa9\\xf4\\x22\\xaf\\x09\\xc4\\xd0\\xa7\\xa4\\x9c\\xda\\x93\\x27\\x9e\\x22\\x66\\xf5\\x98\\x4a\\xad\\x88\\x29\\x8d\\x9e\\x2e\\xb3\\x2f\\x87\\x91\\xb8\\x43\\xb4\\xa3\\x1a\\x9b\\x01\\x4d\\x6c\\xf8\\x97\\xaf\\x5e\\xc0\\x35\\xe5\\xc7\\x09\\x17\\x76\\x1d\\x37\\x99\\xbc\\x2d\\x51\\xed\\xb3\\x4a\\x64\\xfd\\x33\\xeb\\x28\\x9d\\xd1\\x4a\\x0a\\xfd\\xb9\\x9a\\x62\\xc1\\xbb\\x70\\xf7\\xc3\\x2f\\x85\\x5e\\xfa\\x1d\\xac\\x8c\\xf9\\xa8\\x72\\x9d\\x24\\x0c\\x81\\xb2\\x78\\xb3\\x63\\x91\\xcd\\x0e\\x9f\\xe0\\x48\\x2a\\xa5\\xbd\\xea\\x35\\x9c\\x27\\xf8\\x94\\x81\\x16\\x49\\xdc\\x3b\\x2f\\x3d\\x87\\x23\\x5a\\xcf\\x07\\xe1\\xfa\\x1d\\x82\\xac\\xa5\\xe8\\x32\\x83\\x30\\x02\\x69\\x94\\x1d\\x6d\\xf6\\x53\\x74\\x5e\\xec\\x92\\xb8\\xda\\x2f\\x1f\\x42\\xd6\\x84\\x91\\x46\\x13\\xd3\\x97\\xc9\\xec\\xd8\\xe3\\x88\\x20\\x20\\xca\\xe4\\x83\\x83\\x07\\x33\\x93\\xd1\\xd6\\x16\\x4d\\x26\\xb9\\xf8\\xe7\\x9b\\xba\\x7d\\x4e\\xed\\x15\\x29\\x59\\xc6\\x1d\\xd4\\x4d\\x01\\xc4\\x7e\\x52\\xa5\\x9b\\x7b\\xa0\\x28\\xb3\\x70\\xca\\xd5\\x30\\x2e\\xfa\\xc1\\xb8\\x61\\xce\\x29\\x77\\xa9\\x63\\x1f\\x97\\xdf\\xcc\\xbd\\x5c\\xa7\\x5a\\xeb\\xa4\\xbb\\xb4\\x09\\x60\\x4b\\x01\\xaf\\x75\\xa2\\xd2\\xdd\\x98\\xb2\\x8d\\x3a\\x8a\\xa3\\x6c\\xb6\\xc2\\xa4\\x83\\x19\\x4f\\x43\\xef\\xbb\\x8c\\xa1\\xd4\\x2e\\x4f\\x50\\xe7\\x5d\\x72\\xf7\\x64\\x4f\\x39\\x4f\\x1d\\x5f\\xab\\x59\\xb9\\xe1\\xba\\xec\\xbc\\x5c\\xb3\\xb6\\x62\\x51\\x24\\x9e\\x3d\\xaa\\x71\\x39\\xe2\\x7c\\xe4\\xb0\\x66\\x64\\xcd\\x61\\xc5\\xbd\\x7c\\x15\\x33\\xf4\\x7c\\x44\\x7c\\xda\\x63\\xcf\\xff\\x03\\x1b\\xfa\\x6c\\xa3\\xba\\xdf\\xee\\xc1\\xe3\\x87\\x98\\xa3\\x76\\x0b\\x89\\xf7\\x3d\\xf2\\xbf\\xf5\\x43\\x79\\xed\\xe6\\x66\\x9e\\x76\\xfb\\x4f\\x0b\\x0d\\x31\\x6e\\x9a\\xfd\\x55\\x33\\x2d\\xfb\\xbd\\xbf\\x31\\xd6\\x1c\\x4d\\x1b\\x2c\\xf2\\xda\\x74\\xdf\\xab\\x4f\\xb3\\xa6\\x9d\\x3e\\xe0\\x2b\\xd8\\x39\\xb0\\xd0\\xa2\\x22\\x27\\x96\\xc4\\x94\\x09\\x25\\x44\\x3b\\x24\\xf5\\x90\\x6a\\x32\\xa3\\xbc\\x0b\\x43\\x07\\xda\\xfa\\x81\\x99\\x83\\x07\\x5a\\x87\\x8f\\x45\\x59\\x47\\xf1\\x35\\x62\\x8f\\x1d\\x8a\\x12\\xe1\\x04\\x3b\\x99\\x3a\\x21\\x5f\\x41\\x09\\x6e\\x6d\\x90\\x5d\\x04\\xba\\x2a\\x6e\\xb7\\x05\\xb7\\xd1\\x67\\xb5\\xa8\\xce\\x65\\xb9\\x6d\\x2f\\x2b\\x68\\x51\\xbc\\x1b\\xa1\\x53\\x8f\\x03\\x9b\\x2c\\xc6\\x6d\\x31\\xff\\xbe\\x64\\x4d\\x66\\x05\\xb3\\x7a\\xe5\\x17\\x58\\xa2\\x41\\x6d\\x0c\\xd7\\xee\\x63\\x32\\xb3\\x06\\x4a\\xd0\\xae\\x50\\x27\\xd8\\xca\\xe0\\x84\\xf2\\xcc\\x96\\x14\\x7b\\xf0\\x35\\xe9\\xf5\\xbf\\x38\\xdc\\xd3\\xda\\x3f\\xdc\\x07\\xec\\x1b\\x19\\x5a\\x26\\x05\\x9c\\x66\\x75\\x1e\\xa4\\xf0\\x13\\x62\\xd2\\x1e\\xbd\\x06\\x03\\x7a\\xcc\\xde\\x26\\x01\\xc4\\xb4\\xa4\\x1b\\x70\\x3a\\x4e\\x6b\\x34\\xc4\\x6d\\xc1\\xbd\\xa1\\x93\\xc2\\x10\\xc6\\xad\\x30\\xd4\\x2e\\x93\\xa7\\x89\\x0b\\x31\\x6c\\x19\\xc6\\xe8\\x05\\x9b\\xa7\\xfc\\xe1\\xef\\xcf\\xdb\\x57\\x77\\xe2\\x09\\x8c\\xcd\\x85\\x6b\\x1f\\x83\\x1b\\xde\\xe4\\x05\\x5f\\x8d\\x8d\\x5b\\x0e\\x0e\\x15\\x29\\x45\\x42\\xb1\\x52\\x32\\x78\\xe3\\xf4\\x62\\x19\\xa7\\x08\\x54\\x8f\\x02\\xc4\\xad\\x5f\\x83\\xe3\\x5c\\xeb\\xe9\\x42\\xee\\x41\\xd6\\x2a\\xd7\\xdf\\xc7\\xba\\xca\\x1d\\x58\\x7b\\xfa\\xa5\\x7f\\x07\\xf6\\xe4\\x98\\xaa\\x70\\xdc\\x08\\x77\\x24\\xed\\x1a\\x4a\\xa9\\x7f\\xab\\x6a\\xff\\x67\\x78\\xd7\\x5d\\xff\\x7f\\x07\\x9a\\x64\\x6d\\xc6\\x61\\xb5\\xbd\\x66\\x13\\x09\\xf3\\x37\\x28\\x4b\\x85\\xb3\\x46\\xfa\\x07\\xc1\\x53\\x1d\\xd2\\x33\\x12\\x9e\\x7f\\x4e\\x50\\x1c\\x11\\x1c\\xa4\\x6d\\x2b\\xbc\\xdd\\xa0\\xd0\\x99\\xcf\\xe2\\xb8\\x09\\x0a\\x4d\\x69\\x03\\xb4\\x49\\xdf\\x6a\\x5e\\x8e\\x62\\x95\\xbf\\x3b\\x6e\\x48\\x71\\x1c\\xe6\\x7d\\x22\\x2e\\x1b\\xdd\\x2d\\x91\\x55\\x13\\x67\\x73\\xa9\\xd4\\x05\\x3f\\x74\\x57\\x5f\\xe7\\x50\\xd4\\xdd\\x9d\\x0c\\x21\\x59\\xa6\\x58\\x67\\x6b\\x1a\\x77\\xed\\x69\\x68\\x19\\xa2\\xce\\x51\\x48\\xc4\\xe9\\x44\\x79\\xe7\\x87\\xe9\\x99\\x5b\\x3a\\x7b\\x17\\xb5\\xb0\\x53\\x8c\\x20\\x1d\\x62\\x67\\x90\\xb5\\x2b\\x3d\\x9d\\xd5\\x0b\\x77\\x88\\xc2\\x9d\\x22\\x3e\\xf6\\xae\\x42\\xef\\xd0\\x56\\xe9\\xca\\x07\\x8b\\xef\\x93\\xea\\xc6\\x12\\x8e\\x74\\xd6\\x76\\xaa\\x40\\x55\\x63\\x77\\xff\\x85\\xfe\\x3a\\xe9\\xff\\x26\\xfe\\x84\\xf3\\x9f\\xb9\\x04\\xe8\\x70\\x03\\x5c\\x5c\\x53\\x48\\x05\\xae\\x05\\xf8\\xfb\\x5c\\x3e\\x30\\x53\\xb3\\x27\\x4c\\x57\\xed\\x19\\x66\\xaf\\xb3\\x2a\\x82\\xeb\\xb4\\xe1\\xa2\\x82\\x95\\xee\\xad\\x84\\x6c\\x49\\x83\\x0f\\xec\\x2a\\x94\\xaa\\x9a\\xd1\\x26\\x01\\xd9\\xc8\\x64\\xe1\\x11\\xbb\\x70\\x2c\\x82\\x5b\\x58\\x5f\\x78\\x19\\x57\\x17\\x00\\xc6\\x7d\\x1c\\xdf\\x84\\xc3\\x17\\x60\\xa9\\xf6\\x84\\xf3\\x55\\xbb\\x87\\xb8\\xb7\\xca\\x2a\\xe2\\x77\\x84\\xcd\\x51\\xf8\\x64\\x1d\\x28\\xf6\\xad\\x31\\xea\\xe2\\x54\\xad\\xbe\\x05\\x63\\x10\\xe2\\x8d\\x74\\x6e\\x89\\xda\\x22\\x1c\\x0f\\x15\\x14\\x34\\x16\\x5d\\xc6\\xd7\\xf9\\x94\\x63\\x45\\x4b\\xb7\\x49\\x8e\\x46\\x63\\xba\\x29\\xa4\\xe6\\xe1\\xb4\\x56\\xf1\\x9e\\x30\\x41\\xc1\\xbd\\x1c\\x07\\xa3\\x3e\\xd3\\x11\\x44\\xa9\\x42\\x89\\x1a\\x87\\x64\\x4f\\x64\\x5c\\xfa\\xdf\\x99\\xf4\\x28\\x9f\\xdf\\x4f\\xa7\\xf7\\xcd\\xa9\\x8d\\x57\\x28\\x41\\x4d\\x57\\x76\\x80\\x4e\\xeb\\x67\\x10\\xa2\\xb9\\xbc\\x6f\\xcf\\x44\\xb4\\x77\\x56\\xcb\\x7d\\x54\\xc0\\x80\\xab\\x57\\xb8\\xe4\\xb8\\x06\\xc0\\xe8\\xa3\\xca\\x3b\\x77\\x75\\xc9\\x63\\x28\\x15\\x06\\xd0\\x10\\x0e\\xe6\\x59\\xab\\x48\\x6e\\x72\\x3a\\x62\\x3f\\x48\\x20\\x02\\x00\\x4a\\x9d\\x14\\x0c\\x42\\x97\\xbb\\x5a\\x4f\\xa7\\x71\\xab\\x4f\\xeb\\xb6\\x25\\xb4\\x12\\xe4\\x43\\x17\\xbb\\x5a\\x4e\\x6b\\x38\\xbe\\x40\\xe4\\x83\\x2e\\x3a\\x79\\xa6\\xd2\\x49\\x6c\\xa3\\x3f\\xd2\\xa1\\xde\\x47\\xcc\\x68\\x7d\\x48\\x1b\\x38\\x9a\\x7b\\x5b\\xa9\\xb4\\xbe\\x31\\x50\\x58\\xd9\\xaa\\xd6\\x47\\x34\\x22\\xde\\xf9\\xb2\\x43\\x1f\\x5d\\xfa\\x53\\xf9\\x0b\\x09\\xc6\\x8e\\xea\\x6c\\xef\\x29\\x69\\xb9\\xdc\\x39\\x73\\x30\\x12\\x50\\x26\\x22\\x0a\\xc8\\xc2\\xdd\\x30\\x6b\\xaa\\xa7\\x41\\xb1\\xc8\\x5a\\x4b\\x10\\xa0\\x01\\xab\\x83\\xc9\\xb5\\xb0\\x98\\xb5\\x95\\xf6\\x85\\xa2\\xbe\\xe0\\x64\\xa0\\xa0\\xb5\\xe9\\x80\\x99\\x01\\xb0\\xe9\\xdf\\x9f\\xdc\\x92\\x7c\\xa3\\x06\\x4c\\xe9\\x9c\\x4b\\x4a\\x72\\x16\\x88\\x8e\\xb2\\x2e\\x53\\xd3\\x0f\\xa9\\x82\\x98\\x90\\xd5\\x5e\\x00\\x8e\\x6e\\x42\\x55\\x04\\x35\\x8c\\x6b\\x9c\\xd4\\x02\\x17\\x60\\xb3\\x4b\\x5d\\xcd\\x64\\xe8\\x20\\x03\\x6d\\x9c\\xf8\\x5f\\x63\\xdf\\xfb\\x31\\xb4\\xdc\\xbf\\xb9\\xa7\\xb2\\x84\\x88\\x11\\xc8\\x9e\\x85\\x55\\x76\\xfd\\xb7\\xd1\\xdf\\xf5\\x3d\\x9e\\x4e\\x11\\xdc\\x4d\\x2b\\x36\\x48\\xef\\xb8\\xdf\\x1a\\x7c\\x6d\\x0b\\x3d\\x7c\\x31\\xca\\xb7\\x1a\\x56\\x55\\x91\\xb8\\x9c\\x0a\\x12\\xa4\\x22\\x56\\xf3\\x78\\x44\\x2f\\x04\\x57\\x10\\x39\\xdc\\x2a\\x22\\x0c\\x93\\xaa\\xfa\\x78\\x05\\x26\\xec\\x8f\\x2e\\x05\\xef\\x79\\x04\\x17\\x14\\x62\\x70\\xef\\xdf\\xde\\x9f\\x7a\\x2a\\xd1\\x34\\xbb\\xab\\x71\\xbe\\x71\\x66\\x75\\xa6\\x6d\\xa2\\xed\\xe0\\x51\\x3b\\xbb\\x1f\\xb1\\x73\\x50\\x80\\x38\\x78\\xcc\\x55\\x8e\\xde\\x81\\x1e\\xf7\\x89\\xe8\\x81\\x83\\x63\\x03\\x52\\xb1\\x4e\\xa5\\xdb\\x3c\\x13\\xed\\xe7\\x33\\xaa\\x62\\x24\\x04\\xac\\xc7\\x68\\x65\\x44\\xa7\\x80\\x94\\xaf\\x2a\\x83\\x55\\xaa\\x73\\x57\\x87\\x06\\x35\\x88\\xd7\\xc2\\x7c\\x95\\x5e\\xc4\\xa1\\x03\\x22\\x48\\xa4\\x65\\x6e\\x9d\\x8e\\x08\\xb4\\x1a\\x84\\xb5\\xc5\\x52\\x65\\x63\\xa1\\x51\\x48\\xb1\\x0b\\x84\\x2a\\x8f\\x32\\xef\\x88\\xdf\\x40\\x6c\\xb0\\xc3\\x26\\x6a\\x2e\\x56\\x8a\\x1a\\xf2\\x6d\\xc2\\x32\\x97\\x6c\\xd9\\x3c\\x5b\\x0c\\xc0\\x7a\\x49\\x62\\xf2\\x53\\x69\\x0d\\xcb\\x3b\\xf1\\xf8\\x57\\x3f\\xdd\\x2a\\x90\\xfe\\xc2\\x21\\x5f\\x1c\\x0b\\xa3\\x87\\xc4\\x5a\\x4b\\x01\\xab\\xb1\\xdf\\x5a\\xa8\\x42\\xaf\\xa3\\x8e\\x18\\xc9\\xa9\\xca\\x61\\x15\\x63\\xd6\\x4a\\xfc\\x70\\x6a\\x62\\x63\\x43\\x53\\x68\\x9d\\xcf\\x20\\x4d\\x7d\\xca\\x4b\\x35\\x42\\xe5\\xc5\\x81\\xc6\\x67\\x54\\xd5\\xe9\\x4f\\xdd\\xdd\\xc0\\x7f\\x7f\\xc6\\x3a\\x14\\x17\\x7b\\x2d\\x34\\x84\\x4d\\xf8\\xea\\x58\\x7d\\xeb\\x89\\xf8\\xc8\\xf1\\x00\\xfe\\x52\\xf3\\x10\\x2a\\xf9\\x28\\x76\\xfd\\xfa\\xa2\\x8c\\x13\\x7b\\xec\\x8c\\x0c\\x36\\xee\\xfd\\xeb\\x44\\x59\\xc1\\x5e\\x6c\\x2b\\x5f\\x91\\x91\\x91\\xbe\\x51\\xa9\\x65\\xf6\\xba\\xdd\\x03\\x6c\\xb3\\x00\\x00\\x40\\xff\\xbf\\x79\\x90\\xed\\x76\\x33\\x7a\\xb5\\x1d\\x9a\\x2b\\xe9\\xfa\\x4d\\xb1\\x50\\x31\\x7b\\x35\\x67\\x28\\xf6\\xaa\\xc7\\x58\\x37\\x06\\x0d\\x2c\\xba\\x05\\x25\\x50\\x3a\\xc8\\xa6\\x3e\\xc1\\xb8\\xd1\\xe9\\x53\\xf7\\xc4\\x9e\\x40\\x2e\\x4c\\x4f\\x9f\\xde\\x9f\\x05\\x95\\x11\\xb3\\x48\\x2d\\x06\\xb7\\x7d\\x9e\\x92\\xce\\xb7\\x62\\x3d\\x9c\\xa6\\xb6\\x78\\x13\\xd5\\x92\\xf3\\x0d\\x52\\xe9\\xcf\\x27\\x8d\\x57\\xb0\\x0e\\xbf\\x33\\xcf\\xcf\\x97\\x15\\x07\\xf8\\x28\\xc3\\x18\\xd2\\xb4\\x54\\x04\\x5f\\xbb\\xf3\\xc3\\x6b\\xaa\\x4f\\x91\\x78\\x40\\x43\\xc9\\x2a\\x59\\x8c\\xe5\\x25\\x73\\x59\\xb8\\x92\\x09\\xf8\\xa3\\x7b\\xfd\\x2f\\x79\\x1a\\xe8\\x70\\x13\\x56\\xc8\\x5e\\xb0\\x36\\x18\\xc8\\x88\\xb0\\xde\\xad\\xfd\\x13\\xf2\\x2c\\x7e\\x93\\x98\\x66\\x51\\x19\\x3b\\x7b\\xd5\\x26\\x8d\\xa9\\x15\\x35\\xea\\x2c\\x61\\xbd\\xe5\\x38\\x92\\xf1\\xb3\\x4a\\xd8\\x8b\\x53\\x79\\x90\\x3f\\x28\\x5e\\x9d\\x3c\\x64\\x6e\\x15\\xd6\\x8c\\xe9\\x4a\\x6d\\x94\\x29\\x62\\x1f\\x5c\\xcd\\x71\\xf8\\x58\\xf0\\xc8\\xe4\\xac\\xe5\\x79\\xdf\\xe2\\xfc\\xd8\\x36\\xd9\\xa6\\x48\\xab\\x73\\x00\\x0c\\x5d\\x74\\xc5\\xa3\\x71\\x7a\\x38\\xa6\\x34\\xa9\\x63\\x4f\\xa8\\xd7\\xd8\\x22\\x3a\\x08\\x76\\x2b\\x89\\x18\\x62\\x80\\x9e\\x53\\x12\\x34\\xfb\\x3a\\xd2\\xbe\\xe3\\xb6\\xbc\\xb1\\x45\\x79\\xcc\\xcb\\x9e\\xe8\\x8d\\x7e\\x19\\x65\\xb6\\x48\\x46\\xfb\\xeb\\xbd\\x75\\xd6\\xc3\\xde\\xd4\\x4a\\xd3\\xe9\\x70\\x01\\x1e\\x1f\\x17\\xd4\\x1a\\xe2\\x34\\x13\\x37\\xf0\\x9c\\x42\\x2a\\xbe\\x56\\x5c\\x33\\x25\\xa7\\xe8\\x47\\x48\\x7c\\xbb\\x60\\xd0\\x69\\x26\\x36\\x30\\xed\\x04\\x43\\x19\\x83\\xa6\\x85\\x10\\x33\\x02\\x59\\x69\\x21\\xc0\\x51\\x36\\x50\\x69\\x1f\\x24\\x1b\\xc8\\xae\\x2d\\xa4\\x0c\\x68\\xa7\\x82\\xbc\\xe8\\x9c\\xfe\\x5b\\x9c\\x85\\x47\\x08\\x94\\xff\\x42\\x8e\\x37\\x93\\x66\\x80\\x60\\xb3\\x0a\\xb2\\xd1\\x6b\\x60\\x62\\x26\\xf0\\xc7\\xe8\\xb7\\x49\\xde\\x65\\x45\\xba\\xc4\\x6f\\x10\\x82\\xce\\x33\\xa8\\x45\\x6b\\x2c\\x2a\\xab\\xf6\\x90\\x2e\\x48\\x45\\x2b\\x05\\x88\\xe6\\x5c\\x96\\xba\\x91\\xaa\\x35\\x11\\x5a\\x90\\x73\\x6f\\x9f\\xee\\x4c\\x1e\\xcb\\x4c\\xac\\x80\\x15\\x46\\x9b\\xfe\\xe6\\x26\\x3c\\x2d\\x66\\x33\\x75\\x50\\x34\\xf6\\x7e\\x5e\\xf8\\x74\\x67\\x8c\\xce\\xda\\xcb\\xb5\\xfb\\x29\\x7b\\xf3\\xdf\\xfe\\x49\\x05\\xf3\\x6b\\xc5\\xea\\x4a\\x02\\x48\\xb8\\xf2\\x9a\\xf6\\x57\\xd0\\x9e\\x9b\\xaf\\x60\\xa7\\xaa\\x8c\\xa4\\xc7\\xb7\\xe8\\x68\\x02\\x19\\xc8\\x72\\xa5\\xe2\\xb5\\xc3\\x38\\x5b\\x65\\x7c\\xb9\\x64\\x5f\\x24\\x52\\x4f\\xb9\\x07\\x94\\xca\\x78\\x76\\xec\\x22\\x2c\\x93\\x8a\\x26\\x68\\x6a\\x1b\\xb8\\x1f\\x1a\\x1e\\xea\\x68\\xd7\\xbc\\x95\\xd4\\x9b\\xfe\\xa2\\xb3\\xf0\\x14\\xa9\\x22\\x7a\\x5b\\xd7\\xbe\\x2b\\x75\\xad\\x46\\xae\\xb9\\x3b\\xda\\xb9\\x4e\\x2c\\x71\\xcf\\x43\\xdd\\x39\\x15\\x9e\\xf3\\x5f\\x19\\xb3\\x88\\x85\\x7f\\x3d\\x90\\x4a\\xf5\\xfd\\x3a\\x76\\x26\\xa7\\x71\\xea\\xd6\\xf8\\xfc\\xcd\\xae\\x9d\\x82\\x2d\\x3f\\xe3\\x36\\x12\\x36\\x0a\\xc6\\xe6\\x78\\xd7\\xe4\\xc8\\x91\\x66\\xa1\\x29\\x40\\x1e\\x49\\x4b\\x22\\x77\\x9b\\xaa\\xe3\\x62\\x9d\\x26\\xae\\xb0\\xc4\\xa9\\xa7\\x05\\x61\\xc8\\xac\\xfb\\xcb\\xad\\x21\\x76\\xec\\xd0\\x99\\x60\\xa4\\xc7\\x44\\xe1\\x12\\xd7\\x07\\xa2\\x71\\x87\\x37\\x20\\x0a\\x67\\x3d\\x26\\x8e\\xf6\\x15\\xbd\\xc1\\x4e\\x0f\\xff\\x61\\x88\\x47\\x34\\xf0\\xab\\x33\\x4e\\xa6\\x69\\xc2\\xae\\xb7\\x90\\x58\\xff\\x97\\xb1\\x16\\x66\\xc8\\xf1\\x3f\\x1c\\x77\\xde\\x42\\x5b\\x11\\x04\\xc3\\xdd\\x8b\\x1c\\xd4\\xb9\\x1b\\x64\\x5d\\x3d\\x4e\\x74\\x4c\\x26\\xf1\\x8a\\x4b\\xf2\\x5e\\x29\\x1d\\x3d\\xb6\\x64\\x78\\x41\\xd9\\xb4\\xb5\\xcc\\xa6\\x46\\x30\\x53\\x32\\x07\\x15\\xd5\\x2d\\x59\\x4b\\x66\\x78\\xbe\\xe6\\x3e\\x49\\x78\\xe1\\xa1\\x37\\x56\\xf6\\xd9\\x4a\\x81\\x64\\x24\\xba\\xc7\\x5a\\x6d\\x68\\x52\\x22\\x4d\\x25\\x53\\x39\\x28\\xe8\\xc9\\x60\\x74\\x87\\x01\\x48\\xc6\\x0b\\x8a\\x0f\\xc6\\xdd\\xaf\\xba\\x53\\x4a\\xae\\x85\\x62\\xe2\\x8e\\x47\\x94\\x68\\x8e\\x3c\\x55\\xd2\\x7c\\x66\\x29\\xc8\\x00\\x9b\\x72\\x49\\x83\\xe5\\xae\\x61\\x3a\\x4d\\xdb\\x4b\\x72\\xd9\\xd9\\x43\\xae\\xf5\\x50\\x8e\\x07\\x66\\xac\\x87\\x5a\\x10\\x68\\x66\\xca\\xaf\\x51\\xda\\xe4\\x62\\xe1\\x72\\x79\\xc5\\x71\\x01\\xa7\\x0e\\xa6\\x23\\x79\\xdf\\xbf\\xce\\x79\\x90\\x94\\x50\\x63\\x5c\\xfe\\x8a\\x3e\\xbb\\x32\\xf5\\xc9\\x6c\\xf2\\xec\\xfb\\x3f\\xdf\\xb2\\x2f\\x6d\\x73\\xed\\x19\\x80\\x4a\\x17\\xf8\\xf1\\x1a\\xc2\\x15\\x35\\xa7\\xbc\\x1a\\x8f\\xa7\\x83\\x62\\xd0\\xb6\\xa2\\xeb\\xe0\\xe2\\x27\\xd7\\xbf\\xfa\\x53\\xc5\\x5b\\xb8\\x23\\xc7\\x98\\x94\\x77\\x7a\\x90\\x1d\\x35\\x23\\x59\\xe9\\x20\\x6d\\x5e\\xe9\\x19\\xd0\\x3b\\x04\\x7a\\xd3\\x5d\\x05\\x9c\\xc2\\xa8\\xfa\\x52\\x99\\x8d\\xb6\\x2d\\x9c\\x36\\x93\\x7e\\x27\\x9d\\x23\\x67\\x03\\x2f\\xea\\x20\\x67\\x73\\x1e\\x65\\x98\\x54\\xd0\\xc1\\x30\\x14\\x13\\x5f\\x35\\xcf\\x91\\x2d\\x3e\\x1a\\xc6\\xa7\\x80\\x51\\x57\\x25\\xfa\\x76\\x40\\x50\\x6e\\xb0\\x73\\x7f\\x0b\\x10\\x64\\xff\\x1a\\x65\\x3a\\x19\\x45\\x5a\\xae\\x2a\\x75\\xee\\x61\\xb3\\x6b\\xd8\\xcb\\xe5\\xfb\\x8e\\x1c\\xdd\\x98\\x04\\x8a\\x5d\\x9f\\x9a\\x97\\xb6\\x6f\\x3e\\x1a\\x26\\x60\\x55\\xbe\\x8a\\x5f\\x06\\x4f\\x37\\x74\\x56\\x0f\\x68\\x8c\\x94\\x35\\x54\\xc9\\xb9\\xcb\\x7b\\xaa\\x0d\\xf8\\xc0\\x22\\x58\\xbe\\x4b\\x7c\\xb9\\xb5\\xbd\\xd5\\xe4\\x72\\x99\\x6a\\x11\\xcb\\x47\\xc6\\xb7\\x3e\\x9d\\x2f\\x54\\xbf\\xa2\\x4f\\xb8\\xcd\\xb5\\xeb\\xb6\\x61\\x19\\xa7\\xdb\\xac\\x9d\\x45\\xae\\x52\\x91\\xa3\\xe8\\x40\\xc9\\x4e\\x89\\xdb\\x64\\x3c\\x65\\x0b\\xd2\\x27\\x41\\xcd\\xf5\\xb4\\x0b\\xd4\\xba\\x21\\xc0\\x56\\x3e\\x04\\xde\\x7f\\xab\\x26\\x45\\x65\\xef\\x56\\x98\\x5a\\xf1\\xc7\\x98\\x27\\x5f\\x43\\xe3\\x32\\x63\\x44\\xf3\\x67\\x01\\xb8\\x0a\\xf2\\x7f\\xa2\\x07\\x12\\x2e\\x81\\xbb\\x2c\\x43\\x69\\xa3\\xca\\xbb\\x67\\x2f\\xa7\\xd8\\xed\\x43\\x80\\xab\\x8b\\x76\\xa1\\x64\\x1b\\xb6\\x8a\\xe3\\xad\\xf7\\xa9\\xfe\\x57\\x96\\x4b\\x7a\\x1c\\x7e\\x09\\x67\\xdd\\x8a\\xb7\\xbd\\xe9\\xef\\x7f\\xd5\\x6b\\xf2\\x53\\x1b\\xe8\\x7f\\xfb\\x85\\x29\\x94\\x1d\\x59\\xdb\\xbc\\x90\\x18\\x0a\\xd6\\x98\\x11\\x83\\xd4\\xaf\\x88\\x2a\\xa4\\xab\\x52\\xd9\\x09\\x49\\x11\\x5e\\xb5\\x95\\x98\\x73\\xd0\\x6e\\xd7\\x0d\\x57\\x43\\x46\\x8c\\xb8\\x66\\xa4\\x86\\x28\\x78\\xba\\xf2\\xe5\\x13\\x6f\\xd8\\x14\\x8b\\xb7\\xbb\\x8c\\x42\\x36\\xa7\\x0a\\xb6\\x8f\\x1e\\xe9\\xdd\\x12\\x98\\x52\\x2a\\xfb\\x50\\xd1\\x4f\\xd6\\x32\\xd7\\x04\\x3c\\xd1\\xe1\\xf2\\xa2\\x05\\x0e\\x8f\\xe9\\xce\\xfe\\x06\\x3a\\x72\\x90\\x60\\xe9\\xdb\\x06\\xf4\\xd5\\xa3\\xda\\x05\\x1f\\x24\\xe3\\x4f\\x23\\x4d\\xef\\xb6\\x5b\\x57\\xed\\x09\\x2a\\x2b\\xbb\\x11\\x65\\x3b\\x82\\x1a\\x14\\x9c\\xf7\\x7a\\x50\\x5d\\xc4\\x57\\x21\\x81\\x98\\xd3\\x58\\x4a\\x67\\x27\\x7a\\x57\\xed\\x5f\\x12\\x5f\\x25\\x85\\xd7\\xda\\x57\\x51\\xdd\\x8c\\x53\\x0e\\x4f\\x12\\x44\\x3e\\xc3\\x52\\xb8\\xd4\\x10\\xf8\\xda\\xf8\\x2a\\xb8\\xb3\\x46\\xb1\\xc8\\x17\\x9e\\xdf\\xfc\\x60\\x6b\\xc9\\x04\\x58\\x80\\x60\\x5e\\x21\\x11\\xe4\\x9f\\x46\\xe1\\xc2\\xfe\\x8d\\x11\\x1b\\x8f\\x55\\x93\\x31\\xa5\\xe4\\xc9\\x54\\x63\\xad\\x39\\xb1\\x48\\x65\\x1a\\x2c\\x26\\x28\\xb5\\x11\\xaf\\xbc\\x76\\x46\\xc3\\x44\\xfd\\x08\\x59\\xe6\\xce\\x7b\\x16\\xd5\\x34\\x61\\x47\\x19\\xd8\\x61\\x7c\\xb1\\x23\\xe3\\x44\\x0e\\x17\\xd5\\x71\\x5c\\x5d\\x35\\x24\\xb8\\x5e\\x52\\xf7\\x93\\xde\\x2e\\xea\\x38\\x49\\xd0\\x21\\x32\\xb5\\x9e\\x94\\xb1\\x35\\xfd\\xab\\xba\\x90\\x20\\xbe\\x3f\\x27\\x59\\xfe\\x7a\\x1c\\x8f\\xae\\xb3\\xb0\\x9b\\xae\\xf1\\x9c\\xf9\\x98\\x10\\xd8\\x74\\x29\\x11\\x62\\xff\\xfa\\x5f\\xa7\\xc5\\x71\\xcd\\x98\\x66\\xc2\\xf9\\x97\\x77\\x2d\\x6e\\x04\\xc4\\x71\\x74\\x6e\\xd6\\xe6\\xdf\\xdf\\xc3\\xff\\xfd\\x8b\\xd8\\x92\\x4b\\x5c\\xf6\\xcd\\x78\\xbf\\xa0\\x11\\x69\\x22\\xc0\\x06\\x93\\x11\\xa1\\x04\\x25\\x47\\x61\\x50\\x41\\x17\\x89\\x58\\x2b\\xc8\\x29\\x2e\\x46\\xe3\\x4d\\x8f\\xf0\\x51\\x71\\x27\\xc6\\xc2\\xff\\x54\\x6d\\x9d\\xce\\x22\\x02\\x30\\x9a\\xb0\\xae\\x88\\x42\\xd1\\x14\\x85\\xd1\\x1a\\x2a\\x15\\xad\\x0e\\x6a\\x0a\\x28\\x14\\x5d\\x41\\x10\\xa3\\x0e\\x52\\x72\\x92\\xee\\x70\\xa1\\x39\\xe6\\xbb\\x7f\\xcf\\x65\\x5d\\x0e\\x0c\\xfc\\xc2\\xf5\\x65\\x96\\x9f\\x37\\x06\\x62\\x85\\x94\\xef\\x31\\xff\\x80\\x75\\xbf\\x50\\xee\\x02\\x90\\x91\\x5c\\x45\\x91\\x8a\\x49\\xc6\\xda\\x14\\xc6\\x0a\\xa4\\xb7\\x98\\x73\\xf6\\x71\\x10\\xcc\\x5a\\xa5\\xc7\\xd1\\x4b\\x64\\x2b\\xf4\\xa2\\xfb\\x05\\x81\\x42\\xe5\\x76\\x71\\x2e\\xbd\\xd8\\x56\\xad\\xc3\\x33\\x28\\x60\\xd1\\x77\\x68\\x37\\x62\\xb6\\xf5\\x4a\\x8a\\x43\\x0e\\xd3\\xf1\\xb7\\xcf\\x58\\x66\\xcb\\x69\\x66\\xf7\\x7f\\x31\\x2b\\x70\\x38\\xfe\\x35\\xa2\\xfa\\x68\\x07\\x02\\xed\\xd8\\xdd\\x89\\xc0\\x74\\x8c\\x97\\xc3\\x31\\xed\\x47\\x3a\\x28\\xe8\\x2d\\xc2\\xc2\\xfc\\xf2\\xc2\\x22\\x67\\x7e\\x61\\x8d\\x02\\x53\\x7e\\x6f\\x70\\xdd\\xb3\\x9e\\xee\\x5e\\x93\\x7b\\x19\\x64\\x28\\xd2\\xc9\\x59\\x9f\\x02\\x13\\x2a\\xfd\\xb4\\x02\\x72\\xce\\x95\\x87\\xa7\\x65\\x0d\\x4b\\xa6\\x97\\x05\\x74\\xc2\\xd9\\x0d\\xf9\\x06\\x4a\\x15\\x8c\\xdd\\xf8\\x7a\\x59\\xd7\\xf8\\xb3\\xff\\x8c\\x0b\\x7e\\xdd\\xfc\\xde\\xe1\\xd9\\xdb\\x3c\\x57\\xe0\\xe8\\x7d\\xae\\xfe\\xca\\x72\\x2c\\xc3\\x91\\xa8\\x7a\\xe1\\x4d\\xe5\\xfe\\xee\\x50\\x91\\x6e\\x00\\x6f\\xc1\\xdb\\x8f\\x39\\xf5\\x17\\xfd\\x27\\x9d\\x3b\\x36\\xc9\\xf1\\x12\\x30\\xc1\\x76\\x01\\xbb\\xc1\\x09\\x87\\x5c\\x3f\\x09\\xfb\\xcc\\x56\\x74\\xbd\\xd7\\xdc\\xb3\\x2b\\x2a\\x44\\x73\\xdf\\x1b\\xfb\\xa0\\xfd\\x60\\x7b\\x18\\xa0\\x95\\xe3\\xe7\\xbd\\x72\\xd0\\x41\\x71\\xfc\\x3e\\x0c\\x7f\\xfd\\x14\\x8c\\x72\\xfd\\xbe\\xfd\\x90\\xe6\\xb0\\xf6\\xb0\\x01\\x59\\xfe\\xe3\\xc4\\x5c\\x92\\xbe\\x89\\x66\\x42\\xe3\\xe7\\xbf\\xc6\\x4d\\x45\\x09\\x94\\x62\\xdb\\x3f\\xf6\\x01\\x97\\xb0\\xd9\\xbb\\x57\\xb8\\xce\\xf3\\xff\\x4f\\xff\\x23\\xbe\\x26\\x0c\\xbd\\x39\\x31\\x7c\\x99\\x1d\\x42\\xe3\\x7e\\xc7\\xdb\\xbf\\x98\\x5b\\xbb\\x0f\\x06\\x9b\\xa5\\xf0\\x7a\\x77\\xef\\x0a\\x99\\x97\\x7c\\x15\\xec\\xe0\\x1b\\x2e\\xe6\\xd6\\xed\\x83\\xce\\xb4\\x48\\x88\\x48\\xb5\\x92\\xc7\\x4f\\xbe\\x07\\x76\\xbd\\xb2\\x78\\x8e\\xe1\\x78\\x21\\xb1\\x32\\xe9\\x1d\\xda\\xf0\\x53\\x1e\\x0e\\xe0\\x76\\x3d\\xca\\xcc\\xc1\\x8d\\xe2\\x78\\x41\\xf1\\xcf\\xef\\x7e\\x2e\\xdc\\xe0\\x1d\\x43\\x5c\\xfb\\xb8\\x91\\x2e\\x90\\x7b\\xb0\\xfd\\x96\\x9a\\xb5\\x9a\\x6a\\xf9\\x33\\x92\\xb6\\xa5\\x0c\\xf6\\x16\\xdc\\x1a\\xcc\\xd9\\xf2\\x41\\x46\\xd3\\x64\\xa7\\xaa\\xa3\\x38\\x49\\x25\\x7d\\x72\\x8f\\x5b\\x50\\xf9\\x0e\\x48\\x3a\\x72\\xb1\\xc5\\x75\\x0f\\xfc\\xcf\\xdc\\x0e\\xda\\xed\\xfc\\xfa\\x3e\\x85\\xc9\\xd8\\xa3\\xd8\\x02\\xe8\\xb7\\x95\\xb9\\xa8\\x7f\\x1f\\xd8\\xd6\\xea\\x7a\\xe9\\xea\\x1c\\xfe\\xe3\\xc2\\x2e\\x78\\x16\\xb7\\x5a\\x90\\xb3\\x5f\\xf3\\xb6\\xeb\\xee\\x39\\x8e\\xb2\\xe3\\xf9\\x6a\\xdc\\x39\\xd3\\xde\\xf6\\x39\\x17\\xe0\\xae\\x63\\x0e\\x05\\xba\\xbe\\x32\\x61\\x5d\\xf5\\x4f\\xfa\\x09\\x85\\x27\\xdc\\xcc\\xba\\x63\\x63\\xb9\\x30\\x0c\\xed\\x79\\x7d\\x9c\\x94\\x11\\x04\\x73\\xb5\\x3c\\x78\\x41\\x2d\\x0e\\x1e\\x31\\x09\\x27\\x38\\xe7\\xa5\\xf6\\x03\\x9c\\x0f\\x84\\x53\\x47\\x69\\x82\\xba\\x45\\x7d\\x94\\x8a\\x35\\x08\\x23\\xfa\\x82\\xf1\\xa4\\xa2\\x90\\x44\\xed\\xe9\\xb4\\xe2\\x95\\x99\\x8c\\xa7\\x35\\x26\\x32\\x35\\x61\\x44\\xde\\x59\\xb0\\x48\\xb9\\xe6\\x7d\\xf2\\x2a\\x7f\\x5a\\x28\\xa9\\x93\\x4e\\xd1\\x58\\x81\\xa3\\xae\\xe0\\x6e\\xea\\xd8\\x25\\x55\\x08\\x76\\xa5\\xa7\\xea\\xac\\xb8\\xd0\\xba\\x44\\x7f\\x78\\xfb\\x38\\x68\\x1a\\x35\\x79\\x84\\xd9\\xee\\x8a\\x93\\x0a\\x5a\\xbd\\xd2\\x5b\\x72\\xd7\\x95\\xcc\\x61\\xa0\\x1d\\x32\\xa0\\x82\\x28\\x16\\x54\\x13\\x60\\x88\\x58\\xc9\\x93\\x3c\\x19\\xb4\\x60\\x43\\x0d\\x14\\xad\\x81\\xd8\\xa0\\xe0\\x95\\x44\\x00\\x4b\\x35\\x5b\\x36\\x35\\xd1\\x92\\x38\\x86\\x3a\\xef\\xba\\x68\\x7a\\x7f\\xfb\\x9b\\xeb\\xa6\\xfe\\x79\\x7b\\x6c\\x5a\\xae\\x7f\\xa7\\xbf\\x28\\xad\\xfd\\xef\\x78\\x5e\\x53\\x50\\xbf\\x9f\\x48\\xb5\\x2c\\x33\\xd2\\xf1\\xa4\\x91\\xe2\\x37\\xa9\\x36\\xc6\\x6d\\xbe\\xfe\\x70\\x66\\xe6\\x4d\\x38\\x34\\xe6\\x73\\x33\\xc1\\x9c\\xcf\\x89\\x1f\\xdb\\xde\\xb7\\xaf\\x82\\x1e\\xb4\\x32\\x41\\x52\\x75\\xf7\\xba\\xa5\\xed\\x60\\x09\\xa8\\xb2\\x77\\xf1\\xe6\\x58\\x35\\x83\\x56\\x75\\x9a\\xf8\\xbb\\x8c\\x28\\x1e\\x5c\\x64\\xa1\\xbc\\x92\\x85\\xdc\\x97\\x2d\\xea\\x92\\xda\\xac\\x1d\\x52\\x63\\x0d\\x5a\\x7d\\x96\\xbd\\x82\\xd6\\x6f\\xad\\x8b\\xeb\\x54\\x5b\\x49\\xa8\\xae\\x04\\x73\\x1d\\x71\\x22\\x33\\xb2\\xfe\\xcb\\xe1\\x5c\\x12\\x1b\\x3f\\x64\\x60\\xb4\\xe6\\xeb\\xc0\\xe6\\x22\\x0b\\x97\\x0e\\x13\\xd7\\x4c\\xbc\\x79\\xb0\\xce\\xcb\\x6f\\x2c\\xed\\x4c\\x93\\x46\\x6f\\x51\\xda\\xf3\\x52\\xbb\\x4c\\xbe\\x96\\x81\\xfa\\xe2\\x6a\\x6c\\x5d\\xb7\\xde\\x04\\xb4\\xf7\\x9a\\xae\\x12\\xcb\\x7d\\x17\\xa9\\xad\\x79\\x19\\x9d\\x28\\x1d\\x88\\x7f\\x97\\x15\\x58\\xbb\\x53\\xac\\x6f\\xdc\\x89\\xd0\\xb6\\x7a\\x20\\x3f\\x4b\\xf1\\xab\\xcd\\xd6\\x3d\\x1d\\xa3\\x61\\xfe\\xae\\x3b\\x37\\x71\\x11\\x97\\xd2\\xd4\\x6e\\xe8\\x22\\x8d\\x64\\x0b\\x2a\\x03\\x9e\\xf4\\x2f\\xc2\\x98\\xbe\\x9d\\x08\\x9d\\xa4\\x93\\x27\\x7b\\x50\\x38\\x26\\x39\\x7c\\x27\\x40\\x4e\\x0a\\xcb\\xa7\\xe1\\x74\\x02\\x73\\xea\\xa6\\x07\\x3d\\xb5\\x59\\x6c\\x71\\xe3\\x7b\\xac\\x22\\xf2\\x6e\\xaa\\x76\\x7c\\x81\\x49\\x65\\x4b\\x3e\\x98\\x50\\xb4\\xbb\\xdd\\x54\\xe7\\x67\\x34\\xf9\\x42\\xb5\\x04\\x55\\xa1\\xa6\\x0a\\x82\\xbc\\x65\\x79\\xe6\\xba\\x66\\x68\\xa8\\x71\\x28\\xb2\\xc7\\xe0\\xad\\x24\\xad\\xa3\\x28\\xc0\\x28\\xbd\\x37\\x76\\xaf\\x62\\xe4\\x44\\xa6\\xb8\\xe6\\xa4\\xa1\\x72\\x56\\xbc\\xd7\\xeb\\xde\\x2b\\xda\\xab\\x18\\x3b\\x99\\x29\\xaa\\x0d\\xb4\\x91\\x52\\xf6\\x36\\xbf\\xfb\\xfe\\x60\\x6b\\xed\\xcd\\x96\\x96\\x8e\\x57\\xb7\\x27\\x3c\\xbf\\x6f\\x6b\\xad\\xbe\\xde\\x1a\\x25\\xff\\x4c\\x6c\\xbb\\x98\\x76\\xa0\\x9c\\x50\\xff\\x00\\xf2\\x75\\xbf\\x06\\x65\\x83\\x8c\\x05\\x0f\\x7c\\xdb\\x5e\\xca\\x9d\\xe4\\x9a\\x96\\x12\\x93\\x95\\xbc\\x5b\\x98\\xe5\\x27\\x6f\\xba\\xe7\\xb8\\x69\\x14\\x3d\\xf0\\xc8\\x1d\\x77\\xc7\\xef\\xb1\\x5d\\xfe\\x00\\x50\\x67\\x81\\x4e\\xc4\\x7a\\x9e\\xce\\xc2\\xaa\\xfe\\x1d\\x74\\xe1\\xd4\\xd0\\x75\\x47\\xad\\xa3\\x91\\x49\\xcc\\x50\\x1b\\x44\\xb3\\x14\\x6b\\x16\\xcf\\x2c\\xd1\\x80\\xc2\\x50\\x2e\\xf0\\xbe\\xbf\\x6b\\xe7\\x2f\\x4b\\x96\\xca\\x94\\x01\\xa9\\x9d\\xcc\\xb7\\xbb\\x88\\x5a\\x46\\x82\\x88\\x1c\\xb2\\xa5\\x4a\\x38\\xed\\x26\\x9a\\x9c\\x1f\\xf8\\xe8\\xf3\\x63\\xe5\\xb8\\xe8\\x48\\x95\\xb6\\x97\\x0e\\x6e\\xad\\xcc\\xab\\xaa\\xce\\x53\\xd1\\x48\\x5a\\x59\\xb2\\x07\\x99\\x6b\\x92\\x41\\x67\\xfd\\xe4\\x5e\\xd1\\xde\\x3b\\x6e\\xa6\\x59\\x14\\x43\\xda\\xf1\\x2a\\xfb\\x35\\xb4\\xaa\\x26\\x75\\xa1\\x25\\x93\\x31\\xe0\\x0e\\x0c\\xa8\\x4d\\xd9\\xca\\xac\\x88\\x58\\xa5\\xc5\\x3b\\xd9\\x76\\xdd\\xd0\\x01\\xd7\\xf5\\xc0\\x66\\xf5\\xfe\\xec\\x1f\\x02\\xe1\\xc7\\x73\\x99\\xe3\\x81\\x3f\\x9d\\xa1\\x42\\xf3\\x53\\x8d\\x54\\xda\\xde\\x53\\x6d\\x98\\x22\\x4f\\x91\\x14\\x46\\xb7\\x96\\xef\\x8f\\xcd\\xad\\xcd\\x75\\x4c\\xfe\\xdc\\x08\\x07\\x7e\\x92\\xf2\\x9e\\x2f\\xee\\x5d\\xcc\\x12\\x35\\x9c\\x86\\x56\\xd3\\xc0\\xcf\\x20\\x51\\x9a\\xc7\\xcd\\x1d\\xab\\x58\\x5e\\xc7\\x55\\x97\\x6c\\x51\\xf8\\xb8\\x19\\x74\\xb8\\x1d\\x4b\\x51\\xd6\\x23\\x46\\xb6\\x19\\xfd\\x71\\x60\\x5a\\xa1\\x6d\\x07\\x95\\x8c\\xc7\\x08\\x41\\x92\\x3d\\x87\\x63\\x88\\x8a\\xe1\\x08\\x7a\\x3c\\x23\\x84\\x10\\x36\\x85\\xcf\\x73\\x6b\\xc3\\xf0\\x8c\\x77\\xb5\\xcc\\xd3\\x85\\x28\\xeb\\xf1\\x6a\\x6b\\x3b\\xac\\x8b\\x61\\x1b\\x7d\\x1e\\x18\\x30\\xa5\\xd7\\x1d\\xd8\\x03\\x33\\xb7\\x51\\xb6\\xf6\\x20\\xf8\\x02\\x8e\\x13\\xdc\\x12\\x54\\xa8\\x31\\x7b\\x24\\x8f\\x33\\xeb\\x3d\\xd5\\x7f\\xfe\\xdb\\x37\\x51\\xc2\\x6a\\xdc\\xde\\x66\\x73\\x85\\xd6\\x3e\\x86\\x39\\x51\\xef\\x1f\\x05\\x1e\\x35\\x8d\\x3d\\x43\\xf3\\xd6\\x84\\x4e\\x15\\xf0\\xd4\\x35\\xef\\x75\\x48\\x08\\x94\\xcf\\xf6\\xaa\\x6f\\x51\\x64\\x6d\\xb7\\xec\\x0d\\x87\\x94\\xd7\\x95\\xd0\\x16\\xe5\\xa3\\x06\\xf5\\xcd\\x5c\\x99\\x80\\x9f\\xe8\\x47\\xc2\\x4d\\x13\\x2b\\x5a\\x9e\\x00\\x96\\x6a\\x56\\x68\\x9b\\xb0\\x46\\x03\\x6e\\x2f\\x51\\xdc\\x22\\x0d\\x8c\\x93\\x6a\\x6a\\xeb\\xcf\\x61\\xa6\\x3b\\x84\\x3b\\x2e\\x00\\x5c\\xe8\\x7c\\xdd\\x9d\\x45\\xf7\\x40\\x43\\xfe\\x49\\xdf\\xf6\\xdd\\x63\\x57\\x96\\x60\\xc4\\x18\\xce\\x60\\x23\\xee\\x16\\x66\\xd7\\x2d\\x8f\\x07\\xd8\\xb7\\x8b\\x1b\\x3d\\xf8\\x01\\xc4\\x12\\x2c\\x95\\x1a\\x9b\\x0c\\xaa\\xde\\x92\\x85\\x6c\\xbd\\x4e\\x9c\\x7e\\x44\\xe3\\x63\\x89\\x6f\\x0b\\x7a\\xc4\\x7a\\x24\\x4f\\xc6\\x79\\x4f\\x32\\x7b\\x83\\xdb\\x1c\\xbb\\x28\\x52\\x76\\xca\\x9e\\x69\\x2a\\x29\\xd9\\x66\\x1e\\xb6\\xe3\\xa0\\x48\\x70\\x94\\x76\\x56\\x74\\xac\\xd7\\x66\\xa8\\x22\\x3c\\xf6\\x4a\\x22\\x9f\\x50\\x97\\xd1\\x98\\xa9\\xcc\\x1b\\xe2\\x45\\x5d\\xb6\\x6f\\x37\\x75\\xdc\\xdc\\x52\\xd8\\x4b\\x52\\x9a\\xc6\\xed\\x82\\x69\\xe1\\x55\\xa9\\x90\\x79\\x57\\xac\\x3d\\x23\\x52\\xec\\xb8\\x0f\\x36\\x97\\x62\\xd2\\xbd\\x56\\x49\\x2c\\x7f\\x38\\x19\\x82\\xcf\\xd9\\x17\\x58\\x0e\\x41\\x8c\\x92\\xaf\\x0d\\x35\\x03\\x9e\\xa0\\x4e\\x10\\xad\\x23\\x0e\\x79\\x7b\\xe1\\x3e\\x1c\\xa4\\x33\\xf4\\x7f\\x64\\xe3\\x63\\x38\\x87\\xf1\\xcb\\x62\\x48\\xc8\\x8b\\xa5\\xd3\\x97\\x8a\\x1b\\xb7\\xdf\\x04\\xdf\\x14\\x9a\\x4f\\xd1\\xca\\xe6\\x04\\x7b\\xfd\\x43\\xe0\\x88\\x18\\x71\\x2c\\xa1\\xd2\\x01\\x9a\\x2e\\x13\\x1c\\xb2\\xc4\\xb4\\x01\\xd1\\x46\\x48\\x62\\xbe\\xe9\\x94\\x6b\\x0d\\x5d\\x85\\x85\\x74\\x67\\xaf\\x05\\x6c\\x07\\xac\\x2e\\x61\\xa0\\x07\\x43\\x55\\xd8\\xb1\\xf5\\x03\\x0a\\xa4\\x2b\\x4e\\x3f\\xb0\\xe9\\x91\\x0f\\x4f\\xb0\\x61\\x49\\xe2\\xf6\\x0e\\x7e\\xae\\x95\\x6f\\xaf\\xe8\\x89\\xa2\\x23\\x98\\x48\\x77\\xb4\\xc2\\xfe\\xd3\\xbc\\x90\\x53\\x45\\x0f\\x24\\x4b\\x82\\x7d\\x3e\\x3c\\xae\\x76\\xb6\\x0d\\x93\\x6b\\xd8\\x34\\x5b\\x91\\x78\\x41\\x22\\x5f\\x96\\x14\\xd6\\x9c\\x55\\x2a\\x3a\\x95\\xe7\\x6b\\xb3\\xd7\\x12\\x48\\x08\\x2e\\x06\\x19\\x02\\x24\\x79\\x07\\x6a\\x68\\xec\\xe8\\xe1\\x0a\\xcb\\xf5\\x82\\xe6\\xdd\\xc8\\x87\\x61\\xcb\\x5c\\xf6\\x30\\xad\\xa0\\x87\\xa1\\x33\\x0f\\x94\\x39\\x7c\\xf4\\x7d\\x74\\x3e\\x16\\xda\\xf6\\x7b\\x88\\x55\\x41\\x6c\\x35\\x54\\x36\\x03\\xaa\\x54\\x6a\\x93\\xb6\\xde\\x04\\x59\\xdc\\xe1\\x3d\\x9c\\xb1\\xa7\\x33\\x64\\xda\\x6f\\xf0\\x50\\x52\\xa1\\xea\\x64\\xf6\\xd8\\x33\\x98\\xe7\\x59\\x07\\x9f\\x31\\xdc\\x96\\xd2\\x6f\\x2f\\xf4\\xb0\\xa7\\xdb\\x27\\xd0\\xb1\\x59\\x82\\x1b\\x11\\xc9\\xf9\\x4d\\x2c\\x6d\\xf9\\xa6\\xc6\\x81\\x66\\x15\\x0c\\x6b\\x05\\xa7\\x06\\xe1\\xf5\\xe4\\x7f\\xf7\\x7b\\xb9\\x9e\\x46\\x37\\x36\\xe8\\x4c\\x5a\\x87\\x6b\\xd0\\xe3\\x9a\\x2a\\x4c\\x42\\xa9\\xec\\x2f\\x3c\\x5d\\xd0\\x4f\\xfa\\x0b\\x51\\x5f\\xbf\\x50\\xf7\\x7d\\x2f\\xd2\\xc0\\xf8\\x2f\\xb2\\xfb\\xa9\\xa3\\x85\\x1e\\x27\\xc9\\xe6\\xf2\\x5c\\x5b\\xa0\\x18\\xd2\\x9e\\xbd\\xf6\\xf7\\xfa\\xda\\x35\\x4a\\x87\\xdc\\xfc\\xb9\\xd6\\xcd\\x15\\x7c\\xe8\\x43\\x47\\xe0\\xe5\\x77\\x1f\\xa3\\xcb\\x57\\x15\\xf2\\x0e\\xc9\\xc5\\xd2\\x6b\\x37\\xdf\\x79\\x90\\x90\\x85\\x22\\x95\\xb2\\xa0\\x6c\\xbf\\x14\\x35\\x31\\x3c\\xdd\\x83\\xd8\\x78\\xb8\\xda\\xfc\\x08\\xe5\\x64\\xce\\x67\\x3e\\x26\\xac\\x3d\\x6b\\x5c\\xa4\\x5e\\xed\\xaf\\xbb\\x06\\xca\\x3a\\xd6\\x9d\\xed\\xc7\\xf1\\xcf\\x54\\x26\\x2a\\xfc\\xf3\\xf6\\x92\\x26\\x40\\x19\\xbf\\x26\\x6f\\xec\\x52\\x5f\\xde\\x5c\\xb1\\xb6\\x39\\x9d\\xda\\xa1\\x35\\x47\\xc9\\x7a\\x73\\x27\\x68\\x69\\x27\\x9d\\xe4\\x64\\x48\\xe6\\xe3\\xe9\\xbe\\xc3\\x47\\x52\\x76\\x82\\x66\\x7d\\x94\\xa0\\x33\\x50\\xe2\\x9b\\x33\\x01\\xc6\\x1d\\x5d\\x1c\\xb3\\x7c\\x18\\xa6\\x74\\x52\\x4f\\x71\\x38\\x61\\xa0\\x54\\x0f\\x43\\xf9\\x59\\x72\\xee\\x14\\x3b\\x80\\xed\\x73\\x30\\x18\\xf2\\xa2\\x5c\\xe4\\xc0\\xcc\\x41\\x89\\x7c\\x31\\x8a\\x9d\\xb8\\x12\\xf1\\x80\\xc8\\xa4\\x3d\\xf2\\xca\\x4b\\xab\\x13\\xf0\\xd3\\x6a\\xf1\\xd6\\x87\\x01\\xa8\\xcc\\x5b\\x71\\x7f\\xd5\\x3c\\x57\\x1f\\x56\\xb9\\x57\\xc6\\x88\\xd1\\xe7\\x18\\x0c\\xfa\\x22\\xa3\\x6a\\xaf\\x92\\xf9\\x87\\xb9\\xd5\\x53\\x9f\\x90\\xde\\x2c\\x5b\\x2e\\x9e\\x09\\x16\\xba\\x11\\x30\\x8d\\xa2\\x4d\\xaf\\xe6\\x70\\x32\\xbc\\x64\\x35\\x4c\\xe5\\xf8\\xe0\\x24\\xc7\\xb7\\x57\\x6f\\xb9\\x0e\\x85\\x0e\\xd2\\xcb\\x02\\xa2\\xb9\\xd2\\x9b\\xe0\\x2b\\x9c\\x4b\\xf5\\x25\\xb7\\xb3\\x4c\\xc8\\xbb\\xff\\x9e\\xc1\\xc8\\x98\\xff\\x1f\\x7b\\x0b\\x52\\x37\\x50\\xa5\\xa0\\x06\\xb6\\xab\\x64\\x0b\\xc4\\x6b\\xb5\\xe5\\x38\\xe0\\x43\\xc7\\x4b\\x17\\x04\\x15\\xb7\\x25\\x0d\\x31\\xe5\\xb1\\x00\\x4f\\x79\\xa2\\xaf\\xea\\xb6\\x5c\\xf1\\xe4\\xfd\\x50\\xd1\\xc5\\xef\\xa9\\x26\\xd9\\x2d\\x74\\xed\\xb7\\x87\\x79\\x16\\x62\\x83\\x5a\\x4d\\x0b\\xc5\\xc4\\x54\\x05\\x22\\xe7\\x23\\x97\\xc4\\xd3\\xf9\\xff\\xa6\\x7c\\x89\\x97\\xb2\\xaf\\xba\\xfd\\xa8\\x7f\\x15\\x4e\\xdc\\x27\\xee\\x7e\\xde\\x12\\x7d\\xdb\\x68\\xd6\\x3a\\xaa\\x68\\x79\\xd0\\xb6\\x23\\xe0\\xdf\\xbd\\x46\\x7d\\xa7\\xfb\\x92\\xee\\xf4\\x0e\\x99\\x7d\\x7b\\xf3\\xc9\\xc7\\x57\\xd2\\xf1\\xea\\x67\\xd5\\x49\\xc7\\xfb\\x9f\\x7d\\xf5\\xd1\\xf6\\x1f\\x6f\\xd8\\xde\\x6d\\x65\\xcb\\xc0\\xc2\\x6e\\x69\\x0c\\xc9\\x6b\\x45\\x7a\\x88\\x36\\x45\\x73\\xa9\\x15\\x64\\x55\\xf2\\xd7\\xd8\\xd9\\x87\\x77\\x8b\\xd6\\x04\\x82\\xb6\\x7b\\x9c\\x2e\\x71\\xda\\xb1\\x1a\\xa0\\xa6\\xf9\\x4c\\x53\\x48\\x3f\\x79\\xf7\\x72\\x9b\\x98\\xb4\\x3c\\x59\\x7e\\x25\\x46\\xee\\x7b\\x86\\x35\\x28\\x2e\\x38\\xd9\\xbc\\x2d\\x0a\\x09\\x39\\xb4\\x5d\\x14\\x8d\\x75\\x98\\xc8\\x50\\x57\\x19\\x29\\x42\\x0b\\x3a\\x94\\xfd\\xc5\\xe6\\x67\\xe7\\xb3\\x63\\xb2\\xf3\\x89\\x8d\\xad\\xb3\\xd8\\x25\\xed\\x6c\\x6f\\x19\\x56\\x31\\x78\\xe7\\xfa\\x5d\\x23\\x49\\x72\\x09\\x22\\x39\\x8d\\xff\\x27\\xff\\xca\\x3e\\x46\\x11\\x67\\xce\\x57\\x54\\xbe\\x4d\\x1f\\x20\\x23\\x9f\\xe0\\x9f\\x09\\xcf\\xe7\\xa8\\x6a\\x9f\\xba\\x2b\\x1e\\x08\\x50\\xd5\\x76\\x75\\x27\\xd9\\x0e\\xd7\\xe5\\x2e\\x3a\\xf4\\x5f\\x26\\x1e\\x59\\xb1\\x0d\\x46\\xf2\\x25\\x82\\xd7\\xfd\\xf2\\xd1\\xa5\\xf2\\x77\\x7c\\x4c\\x84\\x25\\xd9\\x66\\x5c\\x42\\x74\\xd4\\xfa\\xaf\\xc3\\xbe\\x54\\x1c\\xd8\\x91\\xba\\x24\\xa6\\x69\\x4a\\xba\\x6a\\x3b\\x29\\x39\\x94\\x3f\\xc7\\x12\\x37\\xf2\\x2f\\xd4\\xdd\\x00\\x5f\\x52\\x9c\\x5b\\xf8\\xb0\\xbd\\x50\\x64\\x9f\\x2a\\x4c\\xcd\\xbd\\x1b\\x62\\x1b\\xb9\\xbe\\x1b\\xd9\\x35\\x0e\\xb4\\x65\\xab\\xec\\xc7\\x38\\x18\\x64\\xb8\\x36\\x0e\\x41\\xeb\\x8a\\x27\\x46\\x49\\x46\\xfa\\xcf\\x4b\\xbe\\xd5\\xb1\\xcc\\x41\\xfb\\x90\\xba\\xb7\\xb4\\xa1\\xe6\\x15\\xa9\\x22\\x26\\x3d\\xc6\\xe3\\x4a\\x97\\x15\\xb2\\x4b\\x0a\\x89\\xb6\\x57\\xcb\\xb0\\x3f\\x50\\x02\\xa6\\xd3\\xc4\\x0c\\xd0\\x58\\x5c\\x23\\x14\\x14\\x07\\x41\\x6d\\x2d\\x45\\xcb\\xcc\\x3a\\x54\\xc0\\xf2\\x4d\\x4b\\x0b\\x63\\xec\\xe3\\x5c\\x2e\\x7b\\xb9\\x50\\x36\\xad\\xe0\\x66\\x2b\\x39\\x2a\\x14\\x59\\x45\\x6f\\xfe\\x50\\x8f\\xbf\\x06\\xb0\\x04\\x46\\x06\\xd3\\x94\\x1d\\x11\\x0a\\xb2\\x03\\x2c\\xad\\x81\\x2a\\xa0\\xe7\\x64\\x7a\\x4e\\x0a\\xf8\\xf8\\x70\\xc0\\x77\\x6d\\x2e\\x32\\xe5\\x1d\\x20\\xc3\\xbb\\x57\\xeb\\x8c\\x32\\xd5\\xa6\\x1e\\x85\\xbd\\x95\\xb6\\xc4\\x61\\xfc\\x5a\\xfb\\x8f\\xcd\\xa1\\x2e\\x37\\x01\\x3d\\x0a\\xb3\\x3a\\xca\\xd4\\x3a\\x09\\xfd\\x28\\x3d\\x88\\x0a\\x63\\x6e\\xf4\\xab\\xae\\x65\\x54\\x76\\xdc\\xb7\\x77\\xce\\x13\\xf7\\x54\\xbb\\x55\\x9a\\xdd\\x83\\xd8\\x77\\x65\\xec\\x1a\\xdc\\x38\\x08\\xde\\x44\\x35\\xa5\\xa8\\x4e\\x6f\\x68\\xa1\\xbf\\xc4\\x3c\\xb0\\x37\\x95\\xe1\\x1c\\x51\\x53\\xf7\\x52\\xaf\\xb5\\xd4\\xc7\\x07\\xf4\\x34\\x1d\\x94\\x4d\\x0c\\xf9\\xbf\\x44\\xed\\x09\\xab\\x6b\\xe5\\x5e\\x35\\x73\\x1f\\xfd\\x5a\\xcb\\x56\\xc2\\x59\\xd2\\x99\\x70\\xd0\\x57\\x48\\x76\\x6a\\x3f\\x67\\xc5\\x67\\xa9\\x46\\xb2\\xbf\\x0a\\x0e\\x87\\x19\\x64\\x6f\\xc6\\x41\\x2e\\xb7\\xc9\\xc7\\x67\\x55\\xbf\\x98\\x3f\\xbc\\x3f\\x7c\\xf4\\x4c\\x5f\\x11\\xe1\\xf8\\x58\\xe9\\x59\\x81\\xf2\\x66\\x3a\\x72\\x42\\x14\\x3b\\xe2\\x7d\\x23\\x66\\x5d\\x17\\xd9\\xf4\\x0b\\xe2\\x4f\\x52\\x77\\xa9\\x15\\x26\\x07\\x39\\xa4\\xd0\\x7f\\x4b\\xcf\\xea\\xe4\\xa3\\xd2\\xf5\\x12\\x87\\x56\\xe5\\x0b\\x0f\\xa5\\xa9\\x39\\xb2\\xf8\\x2d\\xf3\\xae\\x1b\\x70\\xa1\\xd5\\x61\\x13\\xfe\\x0e\\x6c\\x33\\xf8\\x60\\x33\\xbc\\x32\\x4b\\x5b\\x91\\x03\\x62\\xcb\\xc9\\xf3\\x18\\x57\\x6f\\x99\\x12\\x26\\x99\\x0b\\x5c\\xe9\\x6b\\x78\\x8b\\x3a\\xae\\xcf\\x03\\x8c\\xee\\x60\\xfe\\x94\\x25\\xf7\\xd0\\x22\\x79\\x59\\x73\\x99\\x92\\x57\\xcf\\xf1\\xb8\\x1e\\x38\\xf7\\x2e\\xa6\\x88\\x16\\x8a\\x49\\xb5\\x35\\x8c\\x0e\\x30\\xae\\x47\\x5b\\xd5\\xc2\\x17\\xae\\xa0\\x96\\x8b\\x16\\x70\\x0a\\xb5\\xbc\\xd9\\x68\\xf4\\x7c\\x24\\x92\\x29\\x31\\xb3\\xf8\\x40\\x81\\x99\\x66\\x14\\xc5\\x1b\\x0d\\xf3\\x78\\x2e\\xe7\\x33\\x42\\x64\\x4b\\x9b\\xdd\\x62\\x6a\\xb7\\x37\\x73\\x0e\\xfd\\xd8\\x3f\\xa6\\xcd\\xb6\\xee\\xd6\\x37\\xfe\\x2d\\x09\\x73\\xe6\\xae\\xcf\\xb3\\x8d\\x92\\xef\\x3c\\xa6\\x59\\x42\\x65\\xe3\\xf7\\x40\\xcf\\x18\\xca\\x53\\xc7\\xc1\\x85\\x3e\\xeb\\x27\\x47\\x2c\\x7e\\x4e\\x3a\\xb7\\x1a\\xfd\\xc6\\x36\\x9c\\xeb\\x0e\\xad\\x7d\\x07\\x42\\xd2\\xb7\\xfe\\x4f\\x13\\xe7\\xa7\\x5d\\xf1\\x1e\\xf8\\x2d\\x7e\\x6f\\xf7\\x6b\\x52\\x78\\x92\\xe1\\xb7\\xb3\\x4f\\xe2\\x2f\\x82\\x4f\\xe3\\xcf\\x5d\\xd8\\xdb\\x8f\\x57\\x0d\\xff\\x26\\xac\\xa1\\x63\\x78\\x88\\xa4\\xc7\\x52\\x41\\x5a\\x68\\x27\\x20\\xae\\xdd\\x69\\xa2\\xfd\\x15\\x09\\x02\\xba\\xcc\\xce\\x61\\xdb\\x31\\x2a\\x37\\x7c\\x96\\x58\\x63\\x02\\xda\\x4d\\xfa\\xfa\\xee\\x0a\\x6c\\x4d\\x71\\x7c\\xc0\\x67\\xfa\\x94\\x40\\xb4\\xed\\x12\\xb9\\x48\\xda\\x99\\xd6\\x88\\xf3\\xf2\\x61\\x1d\\xd1\\x2f\\x59\\xf3\\x09\\x82\\xad\\xdc\\xe6\\x62\\x40\\x59\\x9f\\xaf\\x63\\x4e\\x21\\x83\\xf1\\x4a\\x35\\x29\\x92\\xae\\xf8\\xe1\\x20\\x2d\\xfa\\xd7\\x28\\xd0\\xec\\x61\\xee\\x99\\xc5\\xcf\\xa1\\xb6\\xe0\\xb0\\x6d\\x77\\x74\\xa8\\xbf\\x11\\x6e\\xcd\\xe6\\xdc\\xfc\\xec\\xed\\x94\\x79\\x9d\\x3f\\xf9\\x60\\xc2\\x62\\xf1\\xfa\\xdc\\x00\\xc0\\x3b\\xec\\xf9\\x86\\x3c\\x7d\\x30\\xaf\\x94\\x9f\\xb8\\xd8\\x1a\\x97\\x2e\\xa4\\xb4\\xa4\\x5d\\xa8\\x82\\xdc\\xf3\\x61\\xfe\\x64\\x11\\x88\\xfc\\x0e\\x05\\x7e\\xf0\\x78\\x2a\\xfa\\xf9\\x7a\\x1d\\x88\\x7a\\x8f\\xf0\\x59\\xbb\\x67\\x75\\x4f\\x40\\x10\\x77\\xad\\x76\\x41\\x59\\x9f\\xb5\\x39\\xab\\x39\\x10\\xd5\\xee\\x92\\x7a\\x6b\\x45\\xb7\\xb8\\xbd\\xb8\\xac\\xb1\\x75\\xe9\\x21\\xd4\\xf1\\x9e\\x15\\x0d\\x1c\\xe2\\xb0\\xd2\\xd6\\xc1\\x6d\\xb6\\xe5\\x18\\x57\\x3c\\xc9\\x3b\\x5d\\x0c\\xad\\xe7\\x3f\\x23\\x1a\\x38\\xcc\\x61\\xef\\x18\\x03\\xc7\\x59\\x96\\xa3\\x1c\\xd1\\x41\\xde\\xa9\\xe2\\xb0\\xef\\xa1\\x60\\x7e\\x1f\\x2f\\x62\\xd1\\x5a\\xf3\\xac\\x89\\x0e\\x6a\\x0e\\x70\\x0d\\xb4\\xb3\\x97\\x1b\\x31\\x6b\\xad\\x39\\x80\\x59\\xc7\\x9b\\x33\\xbf\\x17\\xc4\\x6c\\x59\\x44\\x81\\x0b\\x3f\\x9d\\x69\\x5d\\x68\\xb3\\x7e\\x7a\\xd8\\x3a\\x18\\x47\\x5c\\xeb\\xc3\\x5a\\x4d\\x5b\\x53\\xc2\\xa7\\xd8\\xb2\\xb0\\x6c\\x5e\\x1c\\xbf\\x16\\x0f\\x8c\\x8d\\xd6\\xd5\\x5b\\x0f\\xa5\\xe3\\xd2\\x72\\xd7\\xfc\\x6c\\x57\\x50\\x0b\\x0f\\x16\\x5a\\x8c\\x1d\\xa0\\x6e\\xa3\\x90\\x19\\x3f\\xad\\xdf\\x09\\xa7\\x20\\xd1\\xf3\\xe0\\x3c\\xcd\\xfa\\x93\\x25\\xeb\\x32\\x31\\x7d\\xc3\\x18\\xea\\xcd\\xd4\\x4b\\xde\\x38\\x5b\\xe8\\xe2\\xf6\\x68\\x34\\xdc\\xbe\\x48\\xc5\\x11\\x2e\\x6f\\xe4\\x74\\xe0\\xeb\\x89\\xf0\\x1b\\x28\\x52\\x51\\x59\\x2e\\x80\\xc3\\xe6\\x82\\x5c\\x6b\\x89\\x88\\xa9\\x39\\x11\\xa2\\xed\\x66\\x33\\xdc\\x8c\\x1e\\xb5\\x9a\\xd1\\x57\\x51\\x39\\xce\\xa5\\x17\\x8a\\xd7\\x42\\x8a\\xaa\\x36\\xb8\\xbf\\xb2\\xe2\\x21\\x26\\x50\\x3c\\x6a\\x83\\xc6\\x95\\x64\\x80\\xe3\\x80\\x3b\\x93\\xee\\x3d\\xa1\\xe7\\x1f\\x65\\x89\\x5d\\xfc\\x1e\\xad\\x86\\xd7\\x5f\\x5b\\x31\\xc7\\xe1\\x6f\\x44\\x81\\x61\\x32\\xbd\\xd8\\x5e\\x64\\xcd\\x03\\x4a\\x71\\x3b\\xc1\\x72\\x1b\\x46\\x4c\\xc6\\x3d\\x3e\\xa5\\xc7\\x45\\xeb\\x84\\x74\\x03\\xe3\\x7a\\x5a\\xda\\xae\\x5e\\xc1\\x09\\x31\\x75\\xe8\\x05\\x57\\xf3\\x21\\xc5\\x95\\x72\\xff\\x68\\xb2\\xb4\\x8c\\x3d\\x4f\\x6d\\xf1\\x9f\\x92\\x28\\xeb\\xc0\\x49\\xbb\\xae\\xcc\\xcf\\xa5\\x56\\x1e\\x66\\x0e\\x14\\x58\\xde\\x21\\x36\\xf8\\x09\\x7d\\x1b\\xd1\\x57\\xe6\\x57\\x38\\x7e\\x6d\\x7a\\x4f\\x1b\\x4f\\x43\\x8e\\x8d\\x26\\x0b\\xd9\\x57\\x0b\\x5a\\x87\\x88\\x0e\\xef\\x3e\\x47\\xc1\\x11\\xea\\x0d\\x19\\x34\\xce\\x9e\\x3e\\xba\\x97\\xc2\\x76\\x8d\\xea\\x0a\\x76\\xb1\\x36\\x0c\\x96\\xb4\\xe3\\xac\\xb2\\xc7\\xf9\\x9a\\x52\\x87\\x7c\\x2b\\x20\\x80\\xc7\\x85\\x01\\x62\\x53\\xda\\x74\\x36\\xd4\\x94\\x36\\xe5\\x5b\\x09\\xff\\x06\\xa0\\x82\\x58\\xea\\x60\\x36\\x17\\xcc\\x12\\xfb\\x32\\x59\\x22\\x01\\x2b\\xaf\\x58\\x5d\\x14\\x23\\x9b\\x97\\x1b\\x88\\xc2\\xee\\x7a\\xe7\\x02\\x9b\\xf7\\x5d\\x86\\xc7\\x10\\x46\\x5f\\xc4\\xab\\xa8\\x85\\x44\\x8e\\xe2\\x78\\x81\\x92\\x43\\x08\\xaf\\x6d\\x42\\x38\\x31\\xbc\\xd1\\x5f\\x40\\x76\\x1c\\x3d\\xba\\x31\\x85\\xa0\\x7e\\x6a\\x91\\x2b\\xdb\\x7c\\x6f\\x8e\\x1f\\xa3\\xae\\xab\\xf4\\x24\\xd8\\x36\\x5c\\x13\\xc0\\x73\\xda\\x73\\x3a\\x50\\xb7\\x3f\\xcd\\xb6\\xc4\\xd2\\xd4\\x24\\xd4\\x54\\xe1\\xbb\\x4d\\x8b\\xf3\\x53\\x39\\xf7\\x03\\x48\\x5d\\x15\\x13\\x68\\x58\\x63\\xa8\\x83\\x18\\xda\\x38\\xbb\\xc0\\xcd\\xe8\\xd6\\xa8\\x19\\xbd\\x9e\\x8a\\x71\\x2e\\xed\\x3f\\x73\\xcf\\xa3\\x47\\x60\\x6f\\x88\\x33\\x5d\\xe4\\x0a\\xfa\\x86\\xa9\\x07\\x7e\\x2c\\x74\\xc7\\xb6\\x15\\xe9\\xfd\\x88\\x88\\x56\\x90\\xa9\\xc4\\x8e\\x5b\\x63\\xb1\\x25\\xe8\\x11\\x34\\x8c\\x29\\x16\\x9f\\xfc\\x73\\xa1\\x65\\x9a\\x9c\\x37\\xc8\\x2e\\x77\\x53\\xbb\\xd5\\x6a\\x6a\\x6f\\x79\\xc5\\x20\\xd7\\xb6\\xcd\\x64\\x45\\xb0\\x05\\x05\\xae\\x45\\x54\\xd9\\x29\\xb3\\x51\\x96\\xb4\\x4f\\xf3\\x5f\\xc2\\x66\\xfc\\xc3\\xc8\\x87\\xcf\\x47\\x20\\x5d\\x37\\xcc\\xe7\\x87\\xb5\\xc3\\x2b\\xe0\\x4a\\x44\\x34\\x82\\xaa\\x2e\\x58\\x35\\x42\\x59\\x85\\xe1\\xb5\\xb0\\x58\\x4c\\x56\\xff\\x46\\x07\\x59\\x71\\x1b\\x65\\xc0\\xe8\\x88\\x52\\x41\\x53\\x9b\\x16\\xad\\x41\\xab\\xdb\\x74\\x46\\x28\\x4a\\x35\\x3a\\x28\\x03\\xb6\\x13\\xe4\\xb9\\x0f\\x26\\xb7\\x38\\xc4\\x95\\xc2\\x21\\xf7\\xf7\\x5d\\xbc\\x10\\xa7\\xc3\\x21\\x19\\x57\\xb4\\xc9\\xd3\\xd5\\x2b\\x92\\xff\\x23\\xc6\\x4c\\xe5\\x4d\\xf3\\xb4\\x6b\\x31\\x51\\x13\\xd4\\x14\\x29\\xa7\\x5a\\xff\\x7f\\x8d\\xe7\\x96\\x04\\x78\\x52\\x55\\xc0\\xfd\\xcb\\x85\\x97\\xc1\\x8d\\x04\\x64\\x5c\\xa9\\x6f\\x1f\\x14\\xd4\\xce\\x05\\x0f\\x67\\xf2\\x8f\\xb0\\x44\\x6e\\x5e\\x53\\x7f\\x08\\xf2\\xfa\\x6a\\x2a\\x8f\\x70\\xf8\\x6f\\x44\\x5e\\x9c\\x78\\x9a\\x09\\x1a\\x30\\xc0\\x23\\x99\\xad\\xd8\\x5a\\x04\\xe6\\x29\\x4b\\xb1\\x79\\x10\\x6c\\xc5\\x88\\x05\\x99\\x76\\xe5\\xd1\\x50\\x1b\\xfb\\x16\\xa7\\x6f\\x6f\\x1a\\xcd\\xda\\x23\\x2e\\x8f\\xb2\\x8e\\x19\\x72\\xcf\\x1b\\x1c\\x82\\x64\\xd5\\x87\\x81\\x21\\x30\\x8f\\x16\\xce\\x99\\x61\\x09\\xf3\\xe7\\x9c\\x3f\\x60\\x43\\x67\\x03\\x8b\\x60\\x1e\\x93\\xf6\\xbe\\x1f\\x26\\xc7\\xef\\x3d\\x9f\\x4c\\x63\\x1d\\xcd\\xaf\\xec\\x91\\x59\\x5d\\x7b\\xb5\\x9c\\x09\\xf6\\xad\\xb6\\x12\\xcd\\xb2\\x20\\x25\\xeb\\x46\\x42\\xd5\\x3b\\x01\\x90\\x94\\xac\\x2e\\x72\\x15\\xc8\\x67\\x16\\xe7\\x9b\\x4d\\x1b\\x56\\xd1\\x61\\xed\\xe5\\x9e\\x38\\x57\\xe9\\x19\\xd3\\x31\\x46\\x99\\xab\\x7a\\xc2\\xa9\\x77\\x2a\\xbb\\x2e\\x8f\\x07\\x11\\x21\\xf3\\x3a\\x43\\x35\\x9e\\x51\\xa0\\x6e\\x13\\x58\\x7d\\xb4\\xe1\\xf4\\x55\\x92\\x8d\\x56\\x80\\x29\\x61\\x82\\x02\\x8a\\x37\\xab\\x3b\\x35\\xa0\\x37\\x3a\\xf7\\xb9\\x53\\x5b\\xe0\\xd6\\xd8\\xc8\\xe9\\x73\\xf0\\x25\\xdd\\x2c\\xdc\\xb1\\xcb\\x2b\\x91\\x3e\\xf6\\x42\\xba\\x1f\\xf7\\x94\\x5f\\xab\\x1f\\xe8\\xd7\\xad\\xf4\\xbd\\xef\\x8a\\x13\\x9f\\x70\\x55\\x88\\x9f\\xff\\xfb\\x01\\xd2\\xeb\\x74\\x60\\x31\\x3d\\x92\\xc5\\xe9\\x1f\\x10\\x9e\\x8c\\x7d\\xc1\\x8b\\xdf\\x3f\\x17\\xf1\\xf8\\xe8\\x97\\xe9\\xcd\\x6b\\xfc\\x43\\x73\\xac\\xe9\\x21\\x7b\\xe4\\xf5\\xb3\\x0c\\xc5\\xe7\\xe2\\x7d\\x11\\xa8\\x1b\\x48\\x22\\x7e\\x09\\x99\\x53\\x55\\x7a\\xbf\\xd0\\x6b\\x0e\\x99\\x15\\x79\\x8a\\xbb\\x4f\\xda\\x0e\\x65\\x47\\x8a\\xef\\x53\\x76\\x1e\\x87\\x99\\x1c\\x27\\xea\\x62\\x30\\x74\\x82\\x45\\xdf\\x4d\\xa2\\x6e\\x20\\x1d\\xf9\\x3a\\x72\\x9c\\x02\\x8c\\x93\\x58\\x6e\\xe6\\xbe\\xc2\\x1a\\x77\\x4a\\xb4\\xb7\\xde\\x00\\xed\\x19\\xf0\\xae\\x18\\x38\\xe0\\x65\\x61\\x7c\\xfd\\x3b\\x65\\x97\\x2b\\xbb\\x04\\xb5\\x95\\xbf\\xfe\\xfc\\xaa\\x71\\xc9\\xe7\\x02\\xff\\xc9\\x3c\\x66\\x27\\x43\\x97\\xe8\\xf4\\xb1\\x4e\\xfa\\x13\\xa2\\x7e\\x15\\xd3\\x5c\\x45\\xde\\xcf\\x7f\\x09\\xc2\\x67\\x90\\xad\\xbb\\xe3\\x25\\xff\\xb0\\xe9\\x8d\\xed\\x33\\xc4\\x44\\xca\\x4b\\xca\\xbd\\x46\\xd0\\xe7\\x29\\xcc\\xa4\\x35\\x7c\\xa9\\x48\\xf8\\xd4\\xb1\\x6b\\x63\\xcb\\x81\\xd9\\x5f\\x16\\xe0\\xa9\\xbe\\x4c\\x29\\xc3\\x85\\xa2\\x0b\\xf5\\xd5\\x84\\x44\\xfd\\x98\\x50\\xb4\\xf6\\xc0\\x34\\x8b\\xe4\\x58\\xeb\\x8a\\x4b\\x5f\\xad\\x26\\xda\\xde\\x6a\\x47\\xe5\\xe1\\xc3\\x53\\x7a\\xf1\\xa8\\xb8\\x25\\xba\\xa5\\x6a\\xdf\\x81\\x90\\x49\\x80\\x61\\x30\\x2b\\x32\\xee\\x19\\xce\\x4c\\x2d\\x8d\\x23\\xf4\\xf5\\x62\\x92\\xd3\\xb7\\x0f\\x10\\xab\\xee\\xf8\\xdd\\x15\\xd4\\xca\\x57\\xb2\\x87\\x5f\\x7e\\x15\\xbb\\xdb\\x90\\xf4\\xcf\\xd8\\x92\\xc7\\x31\\x33\\xc0\\xfc\\x48\\x55\\x78\\xa9\\x53\\xab\\x88\\xe2\\x34\\x65\\xf3\\xe1\\xa2\\xab\\xdc\\x96\\xb0\\x66\\xc6\\x1b\\x85\\xf5\\x2a\\xcc\\x95\\x8a\\xf1\\x16\\x9f\\x83\\x2b\\x1d\\xa2\\xb4\\xe5\\xe1\\xb2\\x55\\x81\\x90\\x67\\x52\\xc9\\x38\\xa4\\x6d\\x2e\\x95\\xf5\\xda\\xbe\\x5f\\xb1\\x50\\x3a\\x33\\x23\\xb4\\x15\\xcb\\xf4\\x39\\x65\\x3d\\x45\\x7a\\x06\\x18\\x25\\x1a\\x54\\xe4\\xa0\\x90\\xf8\\x78\\x23\\x0e\\xa0\\x0f\\x63\\x3e\\x38\\x67\\xf2\\x78\\x09\\x5d\\xad\\x2a\\x3f\\xa0\\x6e\\xdf\\x58\\x3e\\xa0\\x73\\xdf\\xf4\\xbb\\x77\\x8e\\x94\\xb6\\x10\\xc8\\x5c\\x26\\x29\\xcc\\x50\\x5c\\xab\\xaf\\xed\\x98\\xee\\x7a\\x6c\\xed\\xf6\\x98\\xa0\\xae\\x0e\\xeb\\x09\\x0a\\x93\\x65\\x52\\xcb\\x12\\xaf\\xd1\\xa5\\xeb\\x7b\\xbf\\x9d\\x09\\x7a\\xdd\\xc8\\x82\\xaa\\x5c\\x80\\xea\\x25\\x50\\x27\\x33\\x7c\\x1a\\x33\\x21\\x7f\\x00\\x72\\xd1\\xfe\\x05\\xc5\\xef\\x15\\x53\\x3c\\x53\\x91\\x69\\x9b\\x7b\\x4d\\x5f\\xce\\x50\\xcf\\x7c\\xaf\\xc1\\xcb\\x91\\x8c\\x61\\x59\\x3c\\x59\\x7e\\x37\\x60\\x5f\\xca\\xd5\\x57\\x52\\x7b\\x93\\xf1\\x7e\\x40\\x47\\x8b\\xce\\x50\\xd9\\xc0\\xdd\\x88\\xe5\\xc2\\xf5\\x1c\\xbd\\x87\\xde\\x9d\\x8c\\xf5\\x6d\\xc2\\xd2\\xba\\x1f\\x09\\x0d\\x1c\\x81\\xaa\\xa3\\x64\\xc4\\xbd\\xd5\\xca\\x93\\x9c\\x6b\\x10\\x34\\x21\\x6a\\x57\\x89\\xf0\\x1d\\xe0\\xd8\\x76\\x97\\x43\\x1e\\xa7\\x76\\x1d\\x23\\xf7\\x1c\\x3b\\xee\\x7d\\x7c\\x98\\xe2\\x2c\\xc9\\x0d\\xe7\\x85\\xaf\\x15\\xfb\\x0d\\xb7\\x57\\x65\\xa2\\x0a\\xf9\\xd3\\x76\\xa3\\x79\\x45\\x3b\\xdc\\x37\\x9e\\xd9\\x3e\\xce\\x54\\xef\\x5c\\x44\\x9d\\x67\\xf6\\xfc\\x56\\xee\\xbd\\x9e\\xd1\\xd1\\x92\\xaa\\x45\\xea\\xd4\\xaa\\x31\\xec\\xb6\\xfc\\x33\\xb9\\xc7\\xdd\\xe3\\x7f\\x5d\\x2a\\xa2\\x6d\\x56\\x1b\\xc6\\x08\\x67\\xe4\\xb6\\xe5\\x3b\\xe6\\x8b\\x4b\\x56\\x52\\xed\\x3e\\xef\\x92\\x65\\xf2\\x4d\\x66\\xae\\x68\\x4b\\xfb\\x98\\x92\\xbf\\x61\\x90\\xe4\\xce\\xc6\\x24\\xbb\\x1d\\x58\\x36\\xc7\\xe5\\x7a\\x37\\xff\\x62\\xba\\x32\\x90\\x4e\\xdc\\x2a\\xcb\\xb7\\xbc\\x86\\x40\\x5c\\x74\\x22\\x5d\\x69\\x0d\\xbd\\x0f\\x95\\xcb\\xd4\\x4b\\x18\\xf7\\xbb\\xce\\xa4\\x95\\x6b\\x00\\x3e\\xb1\\x03\\xfb\\x4a\\xe6\\x68\\x17\\xd9\\xe1\\xec\\xb1\\x1b\\x0e\\xe1\\x6e\\x28\\x1d\\x3a\\x52\\xcb\\x1c\\xe9\\x9e\\xa0\\x50\\xf5\\xb3\\xb8\\x70\\xa3\\x5b\\x82\\xdb\\xd6\\xcb\\xea\\x32\\x9a\\xe3\\xdf\\x72\\x2b\\xa9\\xaf\\x65\\xd3\\xa0\\x4b\\x05\\x57\\x49\\xa7\\x4b\\x3a\\xbf\\xa9\\x32\\x24\\x07\\x13\\x5d\\x19\\x0f\\xa0\\xd3\\xb8\\xc0\\x6c\\x45\\xb6\\x84\\x56\\x7a\\x0b\\x6c\\x07\\x81\\xe4\\xe7\\x60\\x1a\\x38\\xd3\\x59\\x83\\xfc\\x5a\\xbd\\x12\\x88\\x55\\xad\\x8f\\x6f\\x03\\x49\\x47\\xd7\\xe7\\xb6\\xd3\\x82\\xbf\\xc5\\x8d\\xef\\x7f\\xa7\\x70\\xfc\\xb5\\xec\\xb6\\x32\\x56\\x88\\x33\\xcb\\xdb\\xa5\\x05\\x8d\\xe5\\x15\\xb4\\x33\\x54\\x86\\xb8\\x1a\\x8d\\x60\\x90\\x29\\x46\\xaf\\x6e\\x63\\xd8\\x3c\\xf4\\x31\\xda\\x2e\\x2f\\x7c\\x96\\x25\\x18\\x29\\xcb\\x99\\x33\\x02\\xee\\xa6\\xf6\\x0f\\xf9\\xb8\\xa8\\x4c\\x8a\\x84\\xdc\\xff\\xdd\\xe6\\xba\\xaf\\xc6\\x93\\x4a\\x91\\x28\\xca\\xbf\\x0b\\xc8\\x0b\\x06\\x0c\\xa8\\xf5\\xf5\\x16\\x7f\\x6d\\x1b\\xd1\\xc7\\xb0\\x10\\x08\\x65\\xe3\\x31\\x90\\x96\\xd2\\x58\\x4f\\x63\\x13\\xf6\\xbb\\x5b\\xef\\x40\\x2e\\x86\\x0c\\xfa\\xb3\\x92\\xfd\\xee\\x04\\x82\\x7f\\x7f\\x8d\\x5b\\x05\\xf7\\xcf\\xfd\\x47\\xc2\\x3f\\xc8\\x4a\\xef\\x65\\xbb\\x83\\xac\\x19\\x5e\\xbd\\x8b\\xb2\\x2b\\x9b\\xde\\x44\\x83\\x0c\\xad\\x19\\xe3\\x1e\\x27\\x62\\x80\\x9a\\x68\\x26\\x37\\x65\\x17\\xad\\xde\\xcf\\x9a\\xa1\\x15\\xf6\\xb2\\xf5\\x73\\x30\\x60\\xae\\xed\\xec\\x0d\\x88\\xeb\\xf8\\xf0\\xe4\\x43\\xb9\\xcc\\xb7\\xcd\\xe9\\x88\\x4f\\xca\\x93\\xd6\\x05\\x7a\\x3b\\x2d\\xdd\\x30\\xea\\xe1\\x85\\xa8\\x00\\x5d\\x1b\\xd1\\xdf\\x8e\\x11\\xcb\\x8e\\xbc\\x10\\x7c\\xac\\xb7\\xa1\\x89\\x5b\\x41\\xa8\\x66\\x34\\x12\\xe1\\x7b\\x2d\\xe4\\xb5\\xac\\xd6\\xfa\\xb4\\xfe\\x03\\xa0\\xcc\\x6d\\x60\\x75\\xc0\\x2c\\x7a\\xe8\\xeb\\x7b\\xe4\\xab\\x79\\x7b\\x1a\\x72\\xfd\\x23\\xa0\\x0c\\x31\\xb4\\x3a\\x64\\x19\\xc3\\xdf\\xfc\\xb0\\x64\\xae\\x2d\\x3b\\xd5\\x0c\\x36\\x57\\x6c\\x3f\\x51\\x5a\\xbf\\x02\\x3c\\xa9\\xfb\\x5d\\x65\\xff\\x45\\xdb\\xdd\\xd3\\x3c\\xd9\\xeb\\x52\\xb8\\x7e\\xa8\\x96\\x31\\x10\\xa5\\x43\\xf6\\x69\\x9c\\x8d\\x4c\\xb5\\xbe\\xdd\\x60\\x1e\\x26\\x1d\\xe3\\xfc\\xc9\\x65\\x5e\\x62\\xb5\\xef\\xc9\\xa4\\x37\\xd9\\xff\\xdb\\xb4\\xd6\\xc2\\x49\\x1d\\xe2\\xf1\\xa7\\xca\\xd6\\x0b\\x9f\\x61\\xf8\\x6b\\xc6\\xae\\xd1\\x64\\x95\\x0b\\x52\\x49\\xbd\\x7c\\x92\\xbc\\xca\\x46\\xba\\x94\\x80\\x07\\xcf\\x35\\x34\\xc2\\x48\\x0c\\x33\\x81\\xf7\\x57\\xa3\\x53\\x50\\x65\\x23\\x6c\\xac\\xb1\\x7b\\xee\\x63\\x56\\xb0\\xf5\\xd8\\x0b\\x27\\xd1\\x47\\xbf\\x51\\x93\\x8e\\x61\\xeb\\x4b\\x2f\\xde\\x29\\x77\\xbf\\x88\\x6f\\xc4\\x5e\\x3c\\x93\\xbe\\xf4\\x5b\\x6d\\xcf\\xa7\\xd6\\xa1\\x2f\\xf8\\x5c\\x4a\\xb4\\x03\\x67\\x51\\xa8\\xaf\\x0b\\x80\\xc6\\x45\\xd4\\x27\\x07\\xb6\\x08\\x8f\\x72\\x0b\\x32\\x4c\\x05\\x6a\\x8c\\x2a\\xfc\\xcb\\x20\\xc5\\x86\\x1a\\x63\\xa5\\xc3\\x36\\xb1\\xbf\\x8a\\x08\\xf2\\x12\\x62\\x8c\\xdd\\xde\\x14\\xda\\xa0\\xb9\\x90\\xf7\\x45\\xc3\\x26\\x6a\\xbf\\x44\\x6e\\x54\\x66\\x90\\xc6\\xa1\\x19\\x4a\\x51\\xdb\\x81\\xdb\\x0d\\xd6\\x45\\xf0\\x53\\xbf\\x42\\x38\\x60\\x2c\\x60\\xb1\\x30\\x63\\x81\\x22\\x98\\xdc\\x92\\x75\\xa6\\x01\\x5d\\x50\\xa0\\x6c\\x3c\\x94\\xf5\\x91\\x9d\\x5f\\x11\\x6c\\x0d\\x87\\xad\\xa1\\x56\\x25\\x7f\\x5d\\xc4\\x9f\\xf7\\xc4\\x81\\xb1\\xe1\\xce\\x64\\x45\\x25\\xaf\\x4a\\xe7\\xe2\\x5f\\x08\\xfb\\x81\\x1f\\x50\\xa2\\x2b\\x0d\\x39\\x46\\x73\\xe3\\x4a\\x56\\x00\\x2f\\x7f\\xb4\\x2f\\x74\\x48\\xba\\x67\\xb4\\x9e\\x01\\x43\\x98\\xd5\\x77\\x88\\xc8\\x64\\xba\\x17\\xf5\\x86\\x56\\xf2\\xa6\\xfe\\x8f\\x46\\xd2\\xa4\\x57\\xea\\xf2\\xfc\\x88\\x7f\\xc3\\xe2\\xfc\\xb9\\xba\\x5c\\x3f\\xe2\\x2b\\xfa\\xeb\\x6d\\x43\\x43\\xd0\\xa3\\xd2\\x3c\\x88\\x77\\x28\\x44\\x0f\\x4f\\xec\\x40\\xcf\\x43\\x58\\xfc\\xcb\\xa1\\x8f\\x65\\x56\\x8a\\x79\\x1c\\x0e\\xd2\\xf3\\xd3\\x9a\\xff\\x17\\x90\\x5c\\x3c\\x1a\\x7e\\xd1\\x3f\\x7a\\x83\\x1b\\x64\\x0c\\x97\\xa2\\x7a\\xe2\\x5f\\x01\\xa5\\xbf\\xaf\\xb2\\x2f\\xfd\\x53\\xbb\\x7d\\x66\\xa7\\x63\\xff\\x73\\x1a\\x1f\\xf2\\x27\\x4a\\xaa\\x1a\\xda\\x5b\\xbc\\xf1\\x79\\xeb\\xd5\\xad\\x8b\\xe1\\x8e\\xbc\\x8f\\x35\\x67\\xa6\\x67\\x39\\x20\\x1a\\x9b\\x79\\xea\\x92\\x1c\\x5a\\xcb\\x4b\\x89\\xdb\\x70\\x2c\\x92\\xf7\\x70\\xef\\xb9\\x8c\\x57\\x39\\x13\\x87\\x73\\x76\\xbb\\xe2\\x12\\x6e\\xd5\\xf4\\x5c\\x27\\xca\\x13\\x46\\x72\\x2b\\x85\\x50\\x6d\\xd1\\x2c\\x03\\x72\\xed\\xd6\\xc7\\x6f\\x3d\\x77\\x2d\\x92\\xe4\\x86\\x40\\xf0\\xd6\\x29\\xd0\\xe5\\x85\\xe4\\xac\\xb2\\xb7\\x3b\\xfb\\x7a\\x2b\\x8a\\x7a\\x90\\xad\\x3a\\x24\\x12\\x65\\x30\\x67\\xb0\\xd6\\x3e\\xb1\\xc4\\x54\\xe0\\x13\\x1a\\xca\\x3a\\x3c\\xa6\\x6e\\x92\\xfa\\xb3\\xd7\\x4a\\x6e\\x2f\\xa8\\xda\\xf1\\xeb\\xd9\\x27\\x72\\x37\\x20\\x5f\\xe1\\x47\\xf9\\xbf\\x8e\\x73\\x22\\x87\\x79\\xa5\\xda\\x75\\x0a\\x21\\xe3\\x90\\x68\\xdf\\xb1\\x44\\xfc\\x61\\x71\\x6e\\x42\\xb5\\xe0\\x8f\\xf6\\x77\\x22\\x2e\\x8f\\x3d\\x67\\xdc\\xdd\\xa6\\x6c\\xdf\\x62\\xec\\x8e\\x7d\\x0d\\xd4\\xbb\\x19\\x3f\\x36\\x52\\x3a\\x0a\\xa1\\xd4\\x90\\x30\\xff\\xff\\xdd\\x01\\x6e\\xe3\\x8f\\x71\\x17\\xcb\\xdf\\x7d\\x4e\\x3f\\x73\\xa7\\x0b\\x05\\xaf\\xe3\\x27\\xff\\xff\\xda\\xd0\\x1f\\x37\\xbf\\xd1\\x40\\xca\\x04\\x7f\\x0c\\xb2\\xb9\\x05\\x97\\xcf\\xfc\\x77\\xde\\x0e\\x73\\xd9\\xa4\\x5b\\xde\\x1d\\x7f\\xb7\\x3e\\xde\\xe1\\xfe\\x0f\\xff\\x9c\\xb4\\x9a\\x5b\\xbb\\xd7\\x28\\x6d\\x4a\\xf4\\x09\\xce\\x04\\x1a\\x12\\x16\\xf3\\x24\\x73\\xc2\\x47\\x6d\\x31\\x21\\x37\\x79\\x7d\\x53\\x69\\xbc\\x84\\x11\\x54\\x96\\x98\\x51\\x97\\x31\\x4b\\x03\\xbc\\x6e\\x73\\x89\\xa5\\x3e\\x31\\x98\\x30\\x13\\x76\\x94\\xe4\\x3e\\xf8\\xa6\\x0e\\x6c\\x45\\xf0\\x1b\\x1d\\xfc\\xec\\x63\\x80\\xa4\\x4f\\x76\\xad\\xc2\\xc0\\x72\\x5f\\x49\\x25\\xd7\\xad\\xd3\\x07\\x04\\x6f\\x84\\x0c\\xb7\\x65\\xc6\\x33\\x4c\\x99\\x3e\\x3e\\x4a\\xe3\\xde\\x2e\\x33\\x3b\\x29\\xfc\\x94\\x2f\\xc0\\xeb\\x5f\\xc9\\xb2\\x81\\x29\\x60\\x22\\xa8\\x62\\x2b\\x6a\\x06\\xf3\\xee\\xaf\\xf2\\x42\\x69\\xeb\\x9d\\x48\\xcb\\x15\\xf8\\xeb\\x4e\\x89\\x5a\\xc6\\xbb\\xd4\\x0f\\xfa\\x18\\x26\\xd4\\x12\\x21\\x06\\x20\\xb4\\x64\\x1c\\xa5\\x39\\x45\\x88\\xd7\\xb2\\xda\\xe3\\x99\\xba\\xf4\\xa7\\x3f\\xef\\xaf\\xf0\\xff\\xe7\\x03\\x57\\x21\\xe5\\x56\\x4e\\x67\\x3c\\x4b\\xa3\\x89\\xeb\\xcd\\x63\\x3f\\xf6\\xe2\\x62\\xd4\\x7e\\xdd\\x0f\\x78\\x17\\xd5\\xb8\\x2d\\xf0\\x1c\\x30\\xac\\xb9\\x85\\xc3\\x72\\x41\\xde\\x13\\x45\\x19\\x64\\xf1\\x1b\\x51\\xec\\xf9\\x0e\\x8e\\xf8\\x10\\xce\\xd8\\x51\\x03\\x71\\x34\\xd7\\xb7\\x15\\xa0\\x96\\x0a\\x71\\x05\\x53\\xed\\x1e\\xe9\\xcd\\xb7\\x2b\\x5a\\x97\\x09\\x4f\\x1b\\x51\\x21\\xf6\\x65\\x66\\xeb\\x48\\x1a\\x69\\x99\\xf4\\xc0\\x2f\\x3f\\x3b\\x0e\\x4a\\x2b\\xc9\\x4b\\x59\\x8a\\x56\\x50\\xc3\\xbc\\xcb\\xce\\x0e\\x7f\\xd2\\x7a\\x98\\x49\\x39\\x46\\x92\\x75\\x28\\xf5\\xfa\\x4e\\x95\\xa5\\x87\\x72\\x9a\\x55\\xd2\\x0a\\x3c\\x4e\\x4c\\x37\\x65\\x05\\xbe\\x3f\\x7a\\x84\\x74\\xce\\x10\\x4b\\xe2\\x2d\\x01\\xde\\x72\\x71\\xaa\\x18\\x63\\x2a\\xc6\\x62\\x53\\xe0\\xa9\\xa9\\x7c\\x11\\x27\\x2b\\x92\\xb7\\x5d\\x6b\\x0e\\x69\\x81\\xbc\\xd3\\x4e\\xb5\\x1d\\x47\\xd2\\xc0\\xb0\\xcb\\x92\\x2f\\x48\\xb5\\x7e\\xbc\\x30\\xa2\\x4d\\xd0\\xbe\\x36\\xbb\\xa4\\x28\\x27\\x5b\\xd5\\xec\\xab\\xc3\\x69\\xea\\x52\\xe4\\xf8\\xd9\\xf1\\xd6\\xf3\\x08\\xdb\\x55\\x21\\x3b\\xf1\\x9e\\xc6\\x48\\xe3\\xf0\\xd8\\x58\\x3a\\x1f\\xa1\\xf9\\x22\\xae\\xc5\\xd9\\xa6\\xe8\\x0c\\xa5\\xf8\\x94\\xc0\\x4b\\x6b\\x2f\\xd6\\xad\\x9d\\x90\\xbb\\x1e\\x12\\x7e\\x12\\xda\\xf8\\xbc\\xab\\xed\\x38\\x66\\xaf\\x35\\x0b\\x6d\\xca\\x93\\x2b\\xab\\x31\\x03\\xfa\\x23\\x28\\x7b\\x44\\xd7\\xfc\\x34\\xfe\\x4d\\xdd\\xdc\\x0a\\x95\\xfb\\xe1\\x0e\\x05\\x76\\xef\\xf0\\x01\\x86\\xe7\\x72\\x76\\x75\\x1f\\xe2\\x66\\x1a\\x52\\xd1\\x3b\\x8d\\x5e\\xc6\\x9e\\x6f\\x31\\x19\\xc5\\x91\\xec\\xbc\\x5d\\xf4\\xef\\xa5\\xd9\\x59\\x7b\\xc3\\x85\\x4e\\x09\\x34\\xb4\\xff\\xc7\\xdf\\xda\\xfe\\xb5\\x8d\\x5d\\xb5\\xd4\\x4d\\x03\\x3b\\x4a\\x48\\x4b\\xce\\xe0\\xcd\\xc9\\x31\\xc0\\x10\\xd5\\xb0\\xb2\\x83\\x67\\x3e\\xdd\\xa6\\x98\\x56\\x90\\x1a\\x97\\x35\\xe2\\xe1\\xb2\\xb5\\x92\\xda\\x73\\x89\\x19\\xf8\\xb1\\x54\\x41\\x9d\\x08\\x09\\x4f\\xc8\\xff\\x4d\\xeb\\xeb\\x06\\x99\\x6e\\x7c\\x73\\x6e\\x72\\xc4\\xad\\x70\\x32\\x5d\\x61\\xa1\\x36\\x4d\\xfd\\xce\\x31\\xba\\x20\\x24\\x32\\xb8\\xe9\\x0e\\xda\\x99\\xa8\\xb2\\x1d\\x47\\x58\\x55\\x33\\x92\\xab\\x35\\x2a\\xe9\\x4d\\x65\\xef\\xd5\\xce\\xd7\\xab\\x61\\x52\\xb9\\x08\\xaa\\x2b\\x9c\\x61\\x00\\xc1\\xa0\\x05\\x46\\xc9\\x84\\x80\\xfd\\xcd\\x54\\xb3\\x9e\\xb9\\x8a\\x81\\x45\\xf9\\x53\\xdf\\x13\\x02\\xca\\xf6\\x01\\xac\\x30\\x2a\\x3c\\xc2\\x8b\\x25\\xef\\xa1\\x35\\x4e\\x04\\x78\\xe9\\xac\\x99\\xf7\\xd4\\x18\\x81\\x26\\xaf\\x82\\x63\\x60\\x47\\x9d\\x70\\x27\\x5a\\xfd\\x32\\x5c\\x63\\x53\\x53\\xf3\\xea\\xa7\\x64\\xe8\\xdf\\x75\\x79\\x3f\\xf6\\xbd\\x89\\xc9\\x02\\x74\\xb2\\xe3\\xce\\x00\\x45\\x82\\xcc\\x57\\x3f\\x76\\xfa\\x95\\xc4\\x43\\x9f\\xa0\\x76\\x7f\\xdc\\x5d\\xcb\\x25\\x07\\x0c\\xe7\\xd2\\xbb\\x18\\x86\\x62\\x75\\x00\\xb0\\x69\\x24\\x60\\x54\\xf5\\x15\\xc4\\x1f\\x7a\\x52\\x8b\\x89\\xc7\\xfd\\xe6\\xea\\xe8\\x0b\\xce\\x81\\xf3\\xf8\\x2f\\x0f\\xfc\\xea\\xa7\\x7d\\xdf\\x5b\\x79\\x96\\x57\\x89\\x1a\\x3c\\xe3\\x68\\x5a\\x96\\x7f\\xd2\\x7b\\x1b\\xc7\\x0e\\x12\\xae\\xe4\\xb7\\x8f\\x67\\x70\\x78\\xee\\xd4\\xb4\\xbc\\xb7\\xd4\\x5a\\xdd\\xa6\\xf3\\x54\\x78\\x6b\\x76\\xd2\\x49\\x4c\\x6e\\xaf\\xc9\\x3e\\x4e\\x5d\\x07\\x82\\x7d\\x15\\x64\\xcc\\x4c\\x7a\\x79\\xb7\\x1c\\xe2\\x9e\\x75\\xec\\x9f\\x10\\x02\\x1d\\x53\\x7f\\x2a\\x33\\x58\\x4e\\x56\\xc4\\x64\\xcb\\x45\\x22\\xcd\\xd2\\x68\\xc5\\xba\\xb0\\xd4\\xb5\\xca\\x56\\x89\\x49\\x27\\x9a\\x41\\x91\\x5f\\x50\\xab\\xab\\xa3\\x28\\xd4\\x2d\\x24\\xa3\\x9a\\x1c\\x92\\x1c\\x3f\\xac\\x3e\\x34\\xa8\\x4d\\x08\\x7f\\x3c\\x77\\x6e\\x32\\x5c\\xb7\\xea\\xbf\\x16\\xef\\x5f\\x44\\x57\\xc5\\x24\\xc7\\x0a\\x85\\x4f\\x70\\x03\\x9e\\x37\\xe5\\x9e\\x88\\x6d\\x0b\\x7d\\x83\\x3a\\x44\\x35\\xa7\\xd0\\xb4\\x10\\x49\\xb9\\xa0\\x64\\xe9\\x58\\xff\\x21\\xb5\\xb6\\xc4\\xc8\\x98\\x2c\\x6f\\x82\\x0a\\x7b\\x2d\\x5f\\x2b\\x37\\x81\\x86\\x0e\\xe5\\x69\\x3f\\x1f\\x2f\\xf5\\xa8\\x64\\x7c\\x98\\x1c\\x62\\x6a\\xa5\\x6b\\x0d\\xd8\\x88\\x50\\x84\\xad\\xd7\\x5a\\x5b\\x59\\x26\\xd6\\xdb\\x9c\\x41\\x90\\xdf\\xc9\\x3e\\x05\\xc6\\x6e\\xf7\\x04\\x5f\\x36\\xa5\\xe0\\xc4\\x43\\xfe\\xed\\x91\\x06\\x86\\xdf\\xf2\\xa3\\x64\\x77\\xa2\\xd4\\x10\\x06\\xfa\\x89\\x2b\\xe3\\x56\\x3e\\x83\\xf8\\x02\\x84\\x9b\\xa0\\x14\\xde\\xe0\\xd4\\x0c\\x4a\\xd4\\x7f\\xd0\\x58\\xca\\xf8\\x06\\x3a\\xd3\\x98\\x1d\\x11\\x08\\xb3\\xeb\\x99\\x56\\x03\\x9b\\x5f\\x13\\x56\\x34\\xe3\\x5f\\x48\\x57\\xb7\\x92\\xf4\\x5c\\x3b\\x3e\\xd1\\x16\\x7c\\xbd\\x4f\\xd0\\x6a\\x88\\x96\\x9b\\x56\\x80\\xa9\\x4f\\x9b\\x06\\x9c\\x10\\x41\\xf1\\xab\\xae\\x82\\x1b\\xa8\\x82\\x00\\xf1\\x55\\xc8\\xc1\\x84\\xce\\xb0\\xdb\\x94\\xbe\\xb6\\x54\\xe8\\x7c\\x22\\x66\\xdc\\x54\\x0c\\xa9\\x75\\xcd\\x6a\\xfd\\x00\\xfe\\x42\\xe1\\xde\\xb1\\xbd\\xa7\\xc9\\xc1\\x7f\\x46\\x8a\\x52\\x3b\\x88\\x2a\\xb9\\x65\\x25\\xde\\xf1\\x6e\\xd0\\x83\\xff\\x9f\\xe3\\x44\\xc9\\x29\\x3f\\x57\\x89\\xf3\\x03\\x2c\\x04\\x26\\x50\\xc6\\x27\\xf2\\xda\\x3a\\x3b\\x86\\xe2\\x0b\\xab\\x45\\xa0\\x13\\x27\\xf9\\x76\\xa2\\xbf\\x70\\x8a\\x57\\x56\\x23\\x5c\\x28\\x92\\x85\\x2e\\x54\\x84\\x6c\\xc4\\x81\\x54\\x57\\x46\\xbd\\xa4\\xbe\\xf0\\xdd\\xcd\\x04\\x97\\x59\\x34\\x8a\\x5a\\x9f\\x33\\x03\\xa1\\xa2\\x42\\xf0\\x57\\x5d\\x8b\\x6e\\xed\\xe4\\x93\\x2f\\xfe\\xaf\\x78\\x57\\xdc\\x1d\\x5e\\xef\\x28\\x21\\x7d\\x6f\\x82\\xb6\\xd7\\x40\\x13\\xff\\xe2\\x09\\x91\\xc4\\xc3\\x52\\xb0\\x86\\xf4\\x46\\x14\\x00\\xc9\\xc2\\x9c\\x76\\xcb\\xba\\xbd\\x33\\x8b\\x72\\x02\\x42\\x4a\\xa8\\xe0\\x9e\\xa5\\x4a\\xda\\x85\\xe0\\x78\\x62\\x77\\x95\\x41\\x6b\\x06\\xa0\\x2d\\x35\\x06\\x51\\x57\\x12\\xc6\\xc7\\xeb\\x25\\x4e\\xbd\\xb9\\x2d\\xd8\\xfb\\xb5\\x41\\xfe\\x9b\\xa2\\x69\\x6a\\xb9\\x55\\xd8\\x65\\x28\\xf7\\xc7\\x2a\\x70\\x91\\x02\\xfb\\x80\\xc3\\x28\\x4c\\xad\\x9d\\x3f\\xb3\\x3c\\xd5\\xda\\x9e\\xe0\\xe9\\xd7\\x81\\x71\\x9c\\x29\\x6b\\xde\\x4e\\x71\\x87\\xdb\\x58\\x0b\\x2c\\xd6\\xc8\\x3b\\xcf\\x34\\x87\\xbe\\x4f\\x49\\xe1\\xb9\\xf2\\x1a\\x65\\x7b\\x93\\xdd\\xa2\\x91\\x9d\\x2f\\x14\\x39\\x2a\\xb7\\xe2\\x18\\x99\\x63\\x09\\xc8\\x00\\x0c\\xfb\\x4b\\xa5\\x35\\xee\\x19\\xd9\\x3f\\xe6\\x68\\xc7\\xe7\\x34\\x4f\\x1a\\xe5\\x0e\\x93\\xa5\\xdd\\xdf\\x57\\x84\\x3a\\x52\\x58\\xb4\\x44\\xa9\\xb0\\x8a\\x3a\\x8d\\xe5\\x81\\xb8\\x17\\x2b\\xd7\\xb0\\xe9\\x40\\x96\\x85\\x11\\xc8\\xd0\\xbe\\x2a\\x74\\xcd\\x7c\\x21\\x91\\x3b\\x5b\\x6c\\xce\\xb5\\x35\\x79\\xc2\\x28\\xfc\\xa5\\x64\\xee\\xb0\\x58\\x6f\\x5e\\xde\\x6b\\x80\\xc3\\x73\\x1e\\x6e\\xb6\\xc7\\x07\\x82\\x85\\xd8\\x39\\x87\\x48\\xc4\\x48\\x5e\\xb4\\xfe\\x72\\x12\\xae\\x89\\x80\\xac\\x53\\x2e\\xb2\\xe4\\xd3\\xb6\\x56\\x5b\\x11\\x25\\xa9\\xc3\\x80\\x03\\x08\\xd9\\xbd\\x6a\\x2b\\xb8\\x89\\xca\\x0c\\x14\\xde\\xb8\\x46\\x8d\\xa7\\x82\\x3d\\x09\\xed\\x83\\xfa\\xe3\\x9c\\x90\\x15\\x94\\x13\\x66\\xaf\\xcb\\xb2\\x2d\\x90\\x59\\xe2\\x4d\\x1b\\x06\\x8c\\x10\\x0e\\xfa\\x05\\x57\\xf6\\xad\\x7c\\x16\\xf1\\x79\\x08\\x2f\\xa1\\x81\\x7d\\x97\\xd2\\x12\\x57\\x42\\xdd\\x09\\x2a\\xad\\xfe\\xa1\\xd6\\x9d\\x88\\x11\\xd7\\x2f\\xb1\\x87\\x5a\\xf3\\xcb\\x09\\x89\\x8b\\x3c\\xaf\\x7f\\x3b\\xc7\\xb7\\x2c\\x4b\\xef\\x48\\x42\\x5f\\xd4\\x5d\\xf4\\x1a\\x4a\\xbb\\x7c\\x3d\\x15\\x5e\\xda\\x5a\\x80\\x23\\x86\\x7e\\xd5\\x65\\x50\\x6d\\xe5\\x3a\\xc2\\xee\\xe4\\xaf\\x70\\x02\\xdb\\x6b\\x9f\\xd5\\x5f\\xce\\x0d\\xe8\\xd3\\x45\\xe0\\x58\\xc0\\x58\\x31\\xea\\x0d\\x73\\x66\\xe0\\xb6\\x67\\xfe\\x0d\\x94\\x42\\xcc\\x97\\x39\\xe5\\x3e\\xd8\\x90\\x61\\xef\\x48\\x43\\x09\\xa0\\xda\\xfe\\x05\\x5b\\xf6\\xcd\\x4c\\x56\\xd1\\x93\\x0d\\xe3\\x2e\\xa9\\x25\\xaa\\x54\\x0c\\x43\\xfa\\x9f\\x34\\xfe\\x68\\x96\\xb3\\x87\\x55\\xf7\\xd9\\xb4\\xcf\\x54\\x78\\x55\\xda\\xa7\\xdd\\xb7\\x37\\x1e\\x65\\xcb\\x15\\x2a\\x86\\x2a\\xde\\x85\\x46\\x4c\\x7a\\x50\\xcd\\x7d\\xda\\xf2\\x41\\xda\\x2a\\xc7\\x88\\x4b\\xbb\\x90\\xdf\\x72\\xdc\\xdc\\xe6\\x03\\x09\\x9a\\x83\\x7a\\xdd\\x90\\x82\\xc2\\xdb\\xd0\\x82\\x5b\\xc7\\x6c\\x0b\\xd2\\x2a\\x36\\x33\\xb6\\x41\\x4e\\x18\\xcf\\x8f\\x56\\x1e\\xe7\\x27\\xdc\\x6a\\xab\\x05\\x6a\\xf9\\x09\\x05\\xbc\\xa4\\xca\\x0f\\xd7\\xcb\\x2d\\x2b\\xf8\\x09\\x54\\xc5\\x50\\x93\\xfd\\x30\\x89\\x36\\xfc\\x22\\xbd\\xeb\\x10\\x01\\xb7\\xac\\x14\\x7a\\xd4\\x96\\x7b\\x8e\\xde\\xd0\\xb8\\x5c\\x92\\x43\\x9d\\x62\\xf6\\x15\\xe5\\x3a\\x7b\\x60\\x73\\xac\\x74\\x16\\x83\\x04\\xe2\\x04\\xb9\\x72\\x14\\x4e\\x28\\x70\\xe4\\xd5\\xcf\\xaf\\x4e\\x74\\x5d\\x08\\xb2\\x31\\x79\\x5a\\x4a\\x95\\x26\\x31\\xb7\\x2e\\x7f\\x06\\x42\\x4b\\x10\\x60\\x3a\\x8e\\x76\\x13\\x95\\x5f\\x0e\\x40\\xef\\x17\\xba\\x2b\\xe9\\x4e\\x59\\xef\\x14\\x21\\xcf\\x80\\xea\\xf6\\x2f\\xf7\\x30\\x26\\xf6\\x71\\x28\\x3b\\xcf\\x2c\\xe6\\x6a\\xc6\\x35\\xf5\\x19\\x8c\\x0c\\x63\\x7d\\x0b\\xfe\\xfb\\x54\\x0a\\xdb\\x98\\xd7\\x98\\x90\\x92\\x90\\x8d\\x39\\xef\\x9a\\x75\\xf3\\x25\\x47\\x52\\x86\\x75\\x4b\\x6e\\x0a\\xe4\\xb8\\xf4\\x9c\\x58\\xba\\x57\\x98\\xbd\\x98\\xf0\\xa1\\x6e\\xff\\x79\\x7f\\xc5\\x82\\xb9\\xb1\\xd8\\xa1\\xa4\\x05\\x11\\x29\\x2b\\xe4\\x51\\x0f\\x13\\x73\\xe1\\x66\\x8a\\x45\\x4b\\x0b\\xa5\\x80\\x12\\xca\\x89\\x09\\xf1\\x2a\\x8b\\xd9\\xf6\\x28\\x66\\xa0\\x8c\\xb4\\x5c\\x0b\\x0c\\x75\\x5d\\x6c\\xf0\\xab\\x71\\x01\\x52\\x0b\\xc6\\xcb\\xa9\\xd1\\x2e\\xee\\x2e\\x3e\\xcb\\x95\\xfb\\x2e\\x09\\x5a\\xc5\\x19\\x87\\xbd\\x60\\x52\\x20\\xd3\\x00\\xd4\\xe2\\xa5\\xb6\\x5e\\xa2\\x05\\x21\\x79\\x05\\x42\\x7c\\x85\\x41\\xd9\\x81\\xb3\\x3c\\x33\\x9f\\x6d\\x0c\\xbb\\x3a\\xa7\\x0d\\xad\\x6d\\x7a\\x4f\\x5e\\x38\\x95\\xa1\\x62\\x1c\\xa2\\x8e\\xdf\\xb1\\x0a\\x4e\\x52\\x1d\\x00\\x9a\\x11\\x8f\\x32\\xda\\xa8\\x29\\xa4\\xa8\\x3a\\x54\\x47\\x64\\x20\\xdb\\x69\\xda\\x35\\x2b\\xbc\\x2e\\xc8\\x5e\\xc9\\x61\\xbb\\x8f\\x7a\\x79\\x3b\\xbc\\xfd\\xd4\\x11\\x23\\x44\\xc1\\xd0\\xe4\\x50\\x35\\xd8\\x39\\x8e\\x43\\x42\\x9b\\x93\\xe0\\xac\\x5a\\xab\\x36\\x51\\x4f\\xaa\\xbb\\xdc\\xda\\x05\\xad\\x89\\x36\\xd2\\xe9\\x0c\\x34\\xa0\\x50\\xc3\\xd1\\x15\\x31\\x99\\xfa\\x22\\xa8\\x40\\x43\\x15\\x53\\x0b\\xd4\\xb0\\xae\\x90\\xc9\\x0c\\x99\\x70\\xa1\\x9a\\x9a\\xe7\\x60\\x08\\x8b\\xc3\\x32\\x43\\x05\\x5d\\x2a\\x76\\x91\\xbf\\xfb\\xdc\\xe9\\x27\\x96\\x55\\xd0\\x65\\x86\\xe2\\xb0\\x90\\x26\\x2c\\x8e\\x48\\x0d\\x15\\x34\\xa9\\xd8\\x4d\\x0a\\x5d\\xca\\x57\\x24\\xab\\xa4\\xe5\\x23\\xc2\\x8c\\x0d\\xcb\\xbd\\x04\\xfb\\x40\\x36\\x18\\xd1\\xd0\\x61\\x69\\x6d\\x85\\x4e\\x2a\\xad\\xa4\\xcb\\xf4\\x55\\x20\\xec\\x7e\\x80\\x25\\xb3\\x13\\xdb\\xf2\\xfd\\xdd\\xf4\\x45\\x22\\xec\\xc2\\xc1\\x5e\\x98\\x5b\\x6f\\xff\\x85\\xe2\\xc0\\xe2\\xd5\\xfe\\x3e\\x37\\x58\\xdf\\x81\\x55\\x18\\x97\\x5a\\x7c\\xa1\\x3f\\xac\\xab\\x01\\x56\\x64\\x63\\xb3\\x21\\xb7\\x78\\xf5\\x60\\x3d\\xac\\xb0\\x77\\x6d\\xcf\\x23\\x9a\\x6c\\x19\\x3e\\xa1\\x5f\\xed\\xad\\xb2\\xf5\\x1e\\x53\\xc3\\xdc\\xcf\\x9c\\x44\\x76\\xd8\\xfa\\x3d\\x6e\\x00\\xa2\\x86\\x0c\\x78\\x7f\\xf0\\x44\\x9a\\x82\\xc9\\x5c\\xaf\\x4a\\x49\\x8e\\xb5\\x6d\\x9e\\x1b\\xd4\\xae\\x2d\\x80\\x77\\xf4\\x18\\xaf\\xc8\\x97\\xef\\x91\\x9d\\xf7\\x32\\x03\\x0a\\x5f\\x5c\\xd9\\x5a\\xaf\\x88\\x69\\xb4\\x28\\x69\\x35\\x0e\\xd2\\xe1\\xda\\x2c\\xff\\x3d\\xf6\\xa7\\x34\\xd3\\x0d\\x49\\x74\\x12\\x56\\xd9\\x45\\x44\\x59\\x59\\xc9\\xc7\\x14\\x3d\\x02\\x52\\xb8\\xeb\\xfd\\x0f\\xd2\\x00\\x01\\x48\\x79\\x1d\\x12\\x09\\x97\\x7b\\x8f\\x6e\\xec\\x59\\x68\\x38\\x94\\xb4\\x25\\x4a\\x39\\xd5\\x29\\x3d\\xfd\\xfd\\x34\\xeb\\x03\\x2a\\x7c\\x6a\\x9f\\xb4\\xc5\\x6f\\xf0\\x6e\\xe8\\x29\\xc8\\xd0\\xfe\\x6a\\x85\\xdd\\x11\\xf8\\x6d\\x87\\x8e\\x7d\\xd6\\x85\\x0d\\x47\\x15\\x8f\\x94\\x4d\\xe1\\x3a\\x70\\x72\\x03\\xb6\\xcb\\xbe\\xcb\\xb3\\x3f\\x97\\xbb\\x8f\\x5e\\xd8\\xcb\\x37\\x21\\xbc\\xf3\\x38\\x28\\xff\\x99\\x7a\\x05\\xae\\x20\\x6f\\xef\\xfe\\x5c\\x4f\\x32\\x68\\xa8\\x8b\\xe6\\xc7\\x10\\xfa\\x0f\\xbe\\xd6\\x8c\\x5a\\xa1\\x30\\xa3\\x81\\x68\\x53\\xb2\\xe9\\xc8\\x12\\xff\\x73\\x78\\x3b\\x44\\x54\\xb6\\x58\\x20\\x1a\\xe2\\x98\\x25\\x4d\\x69\\xac\\xf4\\x85\\xe6\\x9a\\xd4\\x64\\xe5\\xa3\\xd4\\xfe\\x83\\x39\\x8f\\xf4\\x52\\x37\\xea\\x37\\xc2\\xbf\\x86\\x8d\\x8d\\xdd\\xa4\\xbb\\x7d\\x29\\x17\\xf0\\x0a\\x45\\x7b\\xda\\x9b\\xd6\\x53\\xc9\\x95\\x19\\x52\\xd3\\x00\\xdb\\x13\\x2c\\x3b\\xa2\\x27\\x18\\xed\\x6b\\x9f\\x68\\x27\\x79\\x3d\\x81\\x45\\x62\\xab\\x00\\xb8\\x9a\\x28\\x91\\xf9\\x99\\xa0\\x15\\x1b\\x95\\x1a\\x65\\x29\\x09\\xb0\\xf9\\x98\\x32\\x69\\x35\\x09\\x40\\x70\\x55\\xbc\\x09\\x97\\xcf\\x76\\xef\\x6c\\x87\\xbd\\x75\\x69\\x87\\x35\\xd6\\x88\\xfd\\xdb\\xc3\\xb7\\xd0\\xb0\\xf3\\x3b\\xef\\xf3\\x6e\\x6f\\x25\\x8a\\x80\\xd6\\x91\\x32\\x1f\\x57\\x3f\\x99\\x29\\x11\\x68\\xf3\\xd3\\xec\\xf7\\xfc\\xe4\\xd1\\x97\\x68\\xd8\\x9b\\x8f\\xbe\\xc6\\x65\\x63\\xb7\\xa3\\xdf\\xbb\\x8b\\x86\\x17\\xda\\x9b\\x61\\x43\\x53\\x87\\xe5\\x4e\\xba\\x3d\\x0a\\x9d\\x1d\\x5d\\x02\\x8a\\x3b\\xcb\\xce\\x0a\\x2d\\x4c\\x0f\\x6d\\x8b\\xd5\\xa1\\xc4\\xdb\\xbf\\xfb\\xc4\\xe9\\xbb\\x3f\\xa7\\x30\\xce\\xd3\\x49\\x43\\x34\\xb5\\x8d\\xd0\\xa6\\x21\\x1b\\x39\\xab\\x45\\xf3\\xb3\\x43\\xdc\\x08\\x17\\x9c\\x13\\x15\\x18\\x3c\\x24\\xf8\\xcf\\x49\\x54\\x93\\x8f\\xd3\\xb0\\xb3\\x45\\x48\\x35\\xd1\\xcc\\x64\\x50\\x1c\\x6f\\x48\\xf9\\x42\\x47\\xdc\\x18\\x05\\x32\\x0f\\x7d\\xc1\\x97\\x76\\xd5\\xea\\xca\\x20\\x64\\x4e\\xe9\\xf2\\x36\\x49\\x76\\xea\\x8e\\xe7\\x09\\x3e\\x6f\\x29\\xed\\xd4\\xa4\\xb7\\x1a\\xbb\\xaa\\xfd\\x79\\xa2\\xcf\\xd5\\x0e\\x3b\\x02\\x29\\x9c\\xe2\\x10\\xfd\\x06\\xcf\\x36\\xd3\\xff\\x46\\xb4\\xc3\\x3d\\x68\\x6a\\xf7\\x37\\x39\\xc3\\x7f\\x4f\\x0d\\xfd\\xc4\\x3f\\xc2\\xc7\\xd9\\x9e\\xb8\\xeb\\xde\\xd7\\x13\\xd9\\x7b\\xa0\\x87\\xe1\\xd4\\x32\\x39\\x39\\x38\\x20\\x75\\xaa\\x78\\x7a\\xfd\\xf0\\x4b\\xe6\\x8d\\x51\\x97\\xf6\\x94\\x94\\x96\\xea\\x72\\xee\\x5a\\x82\\x20\\xf6\\xbc\\xbb\\x7f\\x3e\\xf7\\xb6\\x3c\\x93\\x34\\x99\\xda\\x10\\xac\\x69\\xd7\\x0e\\x93\\x30\\xb5\\xb7\\xad\\x1d\\x33\\x59\\x3b\\xf2\\x10\\x94\\xa6\\x70\\xbf\\x38\\xdb\\x8b\\x7a\\x4e\\x42\\x97\\xe7\\x6e\\xf0\\xcf\\xdc\\x0f\\x74\\x67\\xbb\\x16\\xdb\\xf6\\xc8\\x8c\\x8c\\xb7\\x58\\x6f\\x46\\xee\\xfb\\xcf\\xfb\\xac\\x3e\\x1e\\xde\\x52\\x0c\\x5c\\x0b\\x35\\x8d\\xa8\\xd2\\x4d\\xbb\\xd1\\x84\\xfc\\x54\\xcd\\x9d\\xaf\\x75\\xb6\\x15\\x5b\\x50\\x83\\xf7\\x1a\\xba\\x3e\\x47\\x07\\xdf\\x8e\\x3f\\x80\\xfe\\xbe\\x61\\xf5\\x76\\x91\\x22\\x7e\\xd3\\xd2\\x70\\x40\\x79\\xb1\\xca\\xa1\\x5e\\x7e\\xab\\x46\\x75\\x39\\xbd\\x65\\xce\\x28\\xe1\\x6b\\xbd\\xb8\\xde\\xcf\\x31\\x2b\\x6c\\x96\\x1a\\xcc\\x2d\\x1a\\xed\\x00\\xf6\\x3c\\x0f\\x53\\x49\\xd4\\xa8\\x95\\x0d\\xb4\\x14\\x8c\\xe5\\x87\\x4c\\xd4\\x49\\x33\\x43\\x10\\x08\\xc9\\x09\\xcd\\x86\\x51\\xed\\x29\\xd8\\x3b\\x63\\x13\\xc2\\x41\\xdf\\x6d\\xee\\xc3\\x21\\xa9\\x89\\x38\\xdc\\xfd\\xe4\\xa4\\xcb\\x7d\\xb6\\x5a\\xc8\\x31\\xd7\\x92\\x5d\\x97\\x67\\x7c\\xbf\\xe6\\x9e\\x2b\\x79\\xa3\\x63\\xfe\\xd2\\xb6\\xb6\\x18\\x6f\\x98\\x76\\x5a\\x97\\x8a\\x1b\\x25\\x08\\x1a\\x24\\x2a\\xae\\x83\\x0a\\x23\\x49\\x43\\x26\\x73\\x1c\\x30\\xe2\\xa0\\x72\\xd5\\xf5\\x12\\x55\\x08\\x37\\x9a\\xea\\xaf\\x42\\x1a\\x2f\\x68\\x9a\\x9a\\xeb\\xdc\\x0a\\x39\\x21\\xee\\x1c\\x3c\\x15\\x3f\\xa1\\x91\\x95\\x4a\\x2d\\x05\\x5f\\x0e\\x82\\x55\\xbe\\x99\\x7a\\x0a\\xc5\\x28\\x62\\xa0\\x9e\\x11\\xbc\\xca\\x84\\x31\\x5e\\xf2\\xc2\\xa4\\xd2\\xd8\\x4d\\x6c\\xb1\\x2b\\x05\\x5f\\x0a\\x86\\x19\\xde\\x48\\x3d\\x9c\\x1a\\x32\\x5d\\xe9\\x39\\xf5\\x5d\\x26\\x8c\\xfe\\xf2\\xe5\\xa1\\xb2\\xb6\\x2c\\xd3\\x8f\\x9c\\xdf\\x9c\\x7a\\x3e\\x65\\x46\\x25\\xc9\\x50\\xe9\\xe3\\x54\\xe6\\x00\\xcb\\x8c\\x47\\xb6\\x12\\x73\\x0f\\xea\\xef\\xb8\\x31\\x2a\\x5b\\xfc\\x51\\x2c\\x86\\xc6\\xa7\\xea\\x99\\x50\\x8f\\x11\\xf2\\x5f\\x84\\xfc\\x7f\\xb9\\xb7\\x0c\\x89\\x2c\\xf5\\x55\\xc6\\x80\\x36\\x1f\\x0b\\xc1\\xf4\\x98\\x40\\x7c\\x43\\xc2\\x1f\\x3d\\x7f\\x93\\x44\\xac\\xf3\\x30\\xa8\\x61\\x24\\xf3\\xff\\x9a\\x11\\x44\\x31\\x2e\\x12\\xf0\\xff\\x7b\\xff\\x0a\\x99\\x08\\x16\\x1a\\xbe\\x3e\\x11\\x50\\x9c\\xe0\\xe7\\x4a\\xc1\\x04\\x9a\\x36\\x32\\x9f\\x35\\x86\\x03\\x63\\xe9\\xb3\\x85\\x2d\\xff\\xff\\xfc\\x94\\x7e\\xda\\x21\\x43\\x38\\xcb\\xff\\xeb\\x39\\x83\\xd7\\xf8\\x4d\\xbc\\xb5\\x75\\x95\\x89\\x1d\\x7d\\x36\\xf4\\x4d\\x9d\\xb3\\xf7\\x93\\xa9\\x00\\x06\\xc3\\x27\\x20\\xc4\\x3f\\xb7\\x25\\xc5\\xe7\\xa8\\xbf\\x55\\x25\\xce\\xc3\\xb7\\x99\\xeb\\xd4\\xc6\\xd2\\x41\\xbd\\xf6\\x7a\\xf2\\x7b\\xaf\\x68\\x04\\x10\\x89\\x22\\xc7\\x97\\xf3\\x55\\x0e\\x80\\xf9\\x96\\xab\\x23\\x26\\x02\\x1c\\x9e\\x39\\x5d\\xcc\\xcf\\xa6\\x7e\\x1c\\x23\\x66\\xba\\x3a\\x09\\xbd\\xb8\\xd2\\x09\\xef\\x24\\xc2\\x84\\xa7\\xe7\\xaa\\xb7\\x79\\x7e\\xde\\x97\\x0e\\xce\\xbf\\x73\\x8e\\x60\\xdc\\x0b\\x0d\\x9a\\x09\\x7a\\x10\\x1e\\xfd\\xa3\\xa6\\x2a\\x49\\x12\\x55\\x7c\\x9c\\x5c\\xd1\\x2c\\xbb\\x8a\\xd9\\xf0\\x4d\\x5f\\x44\\x97\\x7b\\xb9\\x2c\\xaf\\xf2\\xe2\\x52\\x22\\x7b\\xfd\\x2d\\xb7\\x65\\xa8\\xfd\\x79\\x37\\x82\\x17\\xf7\\x16\\x7a\\x52\\x89\\x25\\x76\\x24\\xe5\\xbc\\x52\\x3f\\xe2\\x6c\\xf2\\x64\\x32\\xb6\\xc5\\x4a\\x52\\xcc\\x27\\x8b\\x22\\x9c\\x92\\x5f\\x1c\\x02\\x01\\xce\\xd5\\xdc\\xa4\\x89\\xa4\\x02\\xf9\\xbe\\x24\\x68\\x6b\\x45\\x49\\xef\\x16\\x24\\x4e\\x24\\xc6\\xf6\\x25\\x42\\x8d\\x61\\x04\\x82\\xad\\xf4\\xfd\\xfb\\x4b\\xff\\xf0\\x11\\x6f\\x83\\xab\\x3b\\x9d\\xcf\\x6f\\x5b\\xe5\\x5c\\x8b\\x95\\x90\\x95\\xa5\\x35\\xb0\\x26\\x42\\x50\\x0a\\xfd\\x45\\x1a\\x25\\x25\\x8c\\x42\\x6e\\x43\\x07\\x1d\\x91\\xbf\\x44\\x3a\\x27\\x36\\x9f\\x3b\\x7e\\xc5\\x07\\xdf\\xca\\x7a\\x95\\x71\\xeb\\xd8\\xeb\\xb2\\xe5\\x8d\\x43\\x03\\xca\\xb2\\xe9\\xb0\\xd9\\x2a\\xe1\\x47\\x08\\x0c\\x7e\\xae\\x68\\x60\\x39\\x5f\\xd2\\xac\\x7a\\xe1\\x24\\x73\\x0b\\x08\\x9d\\x50\\xb4\\x74\\x45\\xfd\\x4b\\x64\\x49\\xb3\\x68\\xc2\\x03\\xac\\xa0\\xd5\\x76\\x81\\x91\\x9d\\x92\\xeb\\xf5\\x48\\x10\\x84\\xf6\\xdc\\xea\\xac\\xf6\\x94\\x37\\x46\\x62\\x4a\\x6e\\xa0\\x42\\x36\\xbe\\xda\\xc9\\x38\\x81\\xcc\\x8e\\x14\\xa3\\x5b\\x3f\\xda\\xe5\\x57\\x60\\xd2\\x4f\\xaf\\x2f\\x75\\xac\\xb6\\xaf\\xde\\xf7\\x34\\x18\\x07\\x7f\\x2f\\x99\\x9c\\x9d\\xf6\\x40\\x66\\x5f\\x3c\\x05\\xb3\\x7a\\x50\\xfa\\xa9\\x75\\x66\\x46\\x49\\x9e\\xf2\\xd4\\xb2\\x07\\x3c\\xfb\\xd3\\x5f\\xdd\\xd2\\xbe\\x2e\\x79\\x60\\x6d\\x94\\xf8\\xe4\\xf5\\xa5\\x4e\\xd0\\x44\\xdc\\xb7\\x36\\x38\\xfb\\x6b\\x1f\\x6a\\xf4\\xc9\\x6f\\x9e\\x99\\xdd\\xcd\\xfc\\xc2\\x24\\x66\\xdf\\x7e\\x47\\x46\\x49\\xac\\x3a\\xa1\\xdd\\xd4\\xc8\\x72\\xec\\xf5\\xce\\x85\\x32\\x18\\xaf\\xba\\x1b\\x4c\\x48\\x69\\x07\\xfe\\xa9\\x50\\xb3\\x91\\xdc\\xaf\\x6f\\xe7\\xe4\\x0c\\x76\\x8e\\x46\\xd0\\x5d\\x0b\\x77\\xbf\\x71\\xfd\\x7a\\x22\\xd3\\x08\\xb5\\xa3\\x33\\x0d\\x0a\\xd8\\x90\\x76\\x82\\x46\\x1b\\x7f\\xf2\\x6d\\x08\\x2d\\x20\\x39\\x02\\x8b\\xda\\xfb\\x1b\\x8d\\xfa\\xdb\\x03\\x86\\x30\\x1b\\x69\\xee\\xe1\\xdd\\x4f\\x52\\x76\\x8c\\x5b\\x06\\x3a\\xb9\\x49\\x66\\x16\\xd0\\xde\\x60\\xa3\\xe4\\xd7\\xcb\\xba\\xd7\\x92\\xa3\\xf9\\xb9\\xc9\\x15\\x39\\xf7\\xdc\\x9e\\xa8\\xcb\\xdd\\x8a\\x0e\\xde\\x8d\\xfe\\x70\\xf0\\xda\\x5f\\xc8\\x77\\xd4\\x65\\x11\\xc5\\xdb\\xf9\\x45\\x0e\\xa6\\x5c\\x85\\xf3\\xca\\x58\\x68\\x83\\x4e\\x45\\x19\\xd8\\x4a\\xa6\\x4b\\x61\\x5c\\x85\\x40\\x56\\xe2\\x93\\x68\\x6d\\x1c\\x5f\\x49\\x5d\\x6a\\x94\\xa9\\x75\\xc3\\x36\\x1d\\xcd\\x06\\xa1\\x50\\x60\\x0e\\x17\\xaf\\x51\\x32\\x1c\\x39\\xdf\\xd8\\xf5\\xff\\xd9\\x62\\x4d\\x03\\x08\\xd7\\x42\\x22\\xe9\\xa0\\x16\\xef\\xd9\\x31\\xfb\\x45\\x02\\x36\\xd0\\xb3\\x95\\x6b\\x9d\\x19\\x10\\x9c\\x2e\\xe3\\x74\\xdc\\x71\\x35\\x1e\\x01\\x76\\x80\\x4a\\x21\\xaa\\x05\\xfb\\x52\\x6b\\xfe\\x16\\xb5\\xa6\\xfa\\x24\\xaf\\x36\\x62\\x3c\\xb4\\x95\\xbd\\x96\\xa5\\xdc\\x3d\\xd4\\xe4\\xe8\\x02\\xf5\\x31\\xec\\x24\\xa0\\x13\\xa1\\x34\\xf0\\x83\\xa9\\x92\\x76\\xb8\\x7c\\x08\\x75\\xa0\\x1b\\xda\\xc3\\x7d\\x56\\x5d\\x56\\x9b\\x70\\x27\\x67\\x6c\\x3a\\xff\\x26\\x50\\x9f\\x8c\\x1a\\xa0\\xbd\\x3a\\x91\\x71\\x3f\\xab\\x1e\\xb5\\xc5\\xf5\\x27\\xf6\\xd9\\x4a\\x60\\x52\\x58\\x58\\xcb\\x9d\\x05\\x3c\\x29\\x28\\x57\\xe8\\x34\\xa7\\x78\\xbf\\x88\\x81\\xa2\\x48\\x6d\\x3b\\xd0\\x5d\\xcb\\x73\\x4c\\xb5\\x63\\x72\\x3e\\x1b\\x4d\\x94\\x03\\x4f\\x13\\x9f\\x5e\\x3c\\xe8\\x31\\x79\\xb4\\x38\\xb1\\x04\\x4e\\x3b\\xda\\x2a\\x4a\\x6e\\xc3\\xf7\\xed\\x48\\xa8\\x7b\\xc1\\xd9\\x79\\x94\\x78\\x13\\x90\\xe7\\x7b\\x9d\\x53\\x5e\\x6b\\xd2\\xac\\x53\\xeb\\x3d\\xc7\\x19\\x75\\x95\\x96\\x89\\xed\\x8c\\x67\\xf3\\x4a\\x0f\\x34\\x49\\x5d\\xdd\\x90\\xae\\x15\\x33\\x0d\\xe8\\xa9\\x28\\xa3\\xcf\\x4c\\x9e\\x64\\x00\\x76\\x95\\x20\\x1b\\x31\\xa9\\xaf\\xba\\xe1\\x2f\\xd9\\x43\\x77\\x62\\xfe\\x5c\\x9f\\xfb\\xf7\\x5c\\x2d\\x73\\xfd\\xef\\x65\\xbc\\xbf\\xd5\\xba\\x9b\\x8f\\xf5\\xc7\\xcc\\x61\\x33\\xa0\\x93\\x82\\xd9\\xf8\\x0c\\x49\\x49\\xd9\\x98\\xfa\\x3c\\x80\\xcb\\x49\\xe0\\x40\\x33\\x2d\\x85\\x87\\xca\\x48\\xae\\x39\\xaa\\xac\\x4a\\x33\\xbd\\xa9\\xe8\\x79\\xb9\\x8f\\x1b\\x12\\xb8\\xf2\\xd8\\x4c\\x33\\xe6\\x9e\\x07\\x3d\\x0f\\xfd\\x8b\\x61\\x8e\\xba\\x0e\\x3c\\x08\\xfa\\xb7\\x0d\\xf4\\x4d\\x7d\\xf1\\x51\\x32\\x2f\\xa1\\x1f\\x3e\\xa6\\x39\\xa7\\x6d\\x53\\x5f\\x75\\x2a\\x77\\x7d\\x1e\\xf9\\xa3\\x9a\\x7d\\xe1\\x79\\x6b\\xdc\\x67\\xb2\\xb5\\xeb\\xea\\x3f\\x88\\xa9\\xc7\\xe1\\xe4\\x28\\x8a\\xd4\\x37\\x0e\\x9e\\x80\\x93\\x9b\\x50\\xa1\\x8a\\xeb\\xc5\\xb8\\xd3\\xa5\\x40\\x53\\xc2\\xeb\\xb5\\x1f\\xdc\\x62\\xd7\\x76\\xa9\\xbe\\xee\\xb8\\xfc\\x36\\x50\\x8e\\xa5\\xc8\\xc4\\xd7\\xeb\\xa6\\x6f\\x71\\x6a\\xba\\x6f\\x7b\\x6b\\x8f\\x4b\\xef\\x00\\x15\\xa7\\x12\\x00\\x15\\x6c\\x06\\xaf\\x88\\x6b\\xcb\\xcb\\x5b\\x75\\xaa\\x8e\\xe2\\x69\\x00\\xc1\\xa3\\x54\\xf0\\x69\\x42\\x75\\x17\\x57\\xee\\x88\\xeb\\xe0\\x8e\\xa2\\x19\\x40\\xe5\\xa6\\xb2\\x95\\xa2\\xb4\\xae\\x13\\x31\\xf5\\xd6\\x08\\xf2\\xd5\\xfc\\xc5\\xca\\xcd\\xd7\\xef\\x2a\\xeb\\x9f\\xf7\\xa8\\x16\\x08\\x77\\x00\\x19\\x96\\xdb\\xc7\\xbf\\xa1\\x2a\\x3e\\xc7\\xa8\\x0f\\xf2\\xe0\\xef\\x02\\xf2\\xd3\\x09\\x80\\x11\\x39\\x9b\\x53\\xd5\\x0f\\xbb\\x5d\\x7d\\x88\\x39\\x4e\\x98\\x05\\xf4\\x78\\x94\\x61\\x19\\x48\\xf2\\x7e\\xc4\\xe5\\x06\\x75\\x6b\\xe9\\x21\\xc0\\xe8\\xeb\\x7f\\xe0\\x78\\x09\\x64\\x1e\\x23\\x03\\x27\\x89\\x8d\\x0e\\xdd\\xb8\\x2f\\x19\\xa7\\x4d\\x4f\\xe7\\x14\\x66\\x97\\xfc\\xc6\\xe4\\x85\\x0b\\xed\\xe7\\x4f\\x2b\\x1c\\x54\\x2c\\x9a\\x8e\\x27\\xa4\\x98\\xd4\\x6c\\x6f\\x6e\\xda\\x0f\\x7e\\x82\\x1f\\xfc\\x37\\x8c\\xdf\\x3c\\x38\\xf8\\xfe\\x9c\\x9d\\xd5\\x7c\\x78\\x6b\\x6e\\x5e\\x97\\x53\\x44\\xa8\\x02\\x54\\xae\\xb2\\x20\\xa6\\x26\\x35\\x34\\x7f\\x99\\xd2\\xe4\\xb6\\x8c\\x27\\x15\\xdc\\xcd\\x09\\x36\\xea\\xd9\\xbe\\xec\\x32\\x92\\x27\\x35\\x83\\xc0\\x56\\xb2\\xb1\\xbf\\x8a\\x41\\x17\\x82\\x59\\xff\\xef\\xb4\\xb7\\x9e\\x89\\xae\\x29\\xd7\\x77\\x3b\\x24\\xc4\\x2a\\x08\\xf1\\xb0\\x42\\xc5\\x75\\xdb\\xc3\\xa8\\x17\\xc9\\x3d\\xf4\\x82\\x7d\\x49\\xdc\\x7b\\x85\\xd1\\x36\\x47\\x59\\x7d\\x16\\x9f\\x54\\xb5\\x3d\\xbb\\xd4\\xcc\\x55\\x1d\\xfa\\xe9\\xc2\\xc2\\xbd\\x85\\xf3\\x45\\x66\\x4e\\x98\\x95\\x83\\x40\\xe6\\x36\\x88\\x0f\\x75\\x5d\\xe2\\x13\\x3c\\x66\\x55\\x18\\xaa\\x23\\xc8\\x61\\x94\\x6f\\x42\\x4e\\x62\\xcd\\x26\\x0a\\x2c\\x50\\x51\\x5d\\x22\\x91\\xa4\\x41\\x45\\x91\\x2d\\x41\\xc1\\xee\\x39\\xbc\\x82\\x86\\xc2\\xfa\\xcc\\x4c\\xf7\\xab\\xae\\xfa\\xea\\x13\\x2e\\xbf\\xa8\\x5f\\xba\\xc4\\x8c\\x90\\x8d\\xe5\\xe2\\xcb\\x16\\x63\\xea\\x43\\xa6\\x57\\x92\\xcc\\x6c\\x93\\x4e\\x58\\x74\\xa8\\x57\\x8c\\x55\\x28\\x53\\xf7\\x7d\\x0a\\xc1\\xf9\\xd4\\x75\\xfd\\x65\\xb7\\xb5\\x46\\xf7\\xca\\x67\\x1b\\xb9\\xfd\\x6a\\xd4\\xa9\\x17\\x78\\x09\\x17\\x42\\x2a\\xcd\\x07\\x17\\x96\\x8e\\xb4\\xcd\\x6d\\x7d\\xfb\\xa4\\x70\\x46\\xb3\\xa0\\xed\\x69\\xf4\\xbd\\x55\\xdb\\xbe\\x20\\x06\\xba\\x7d\\x44\\x67\\x75\\x21\\x7e\\x7a\\x1d\\xbf\\xb1\\x08\\x04\\xf5\\x01\\x68\\xe0\\x93\\xf5\\xcc\\x19\\x4b\\x02\\x68\\xd0\\x21\\x60\\xea\\x43\\x2b\\x83\\x06\\x78\\x03\\x21\\x1b\\x9d\\x7e\\xee\\xec\\x38\\xc2\\x30\\xf7\\xc0\\x7c\\x06\\xae\\x68\\x7e\\x8a\\x3b\\x4f\\x37\\xca\\x5b\\xbf\\xd6\\xa3\\x98\\x21\\x9f\\x76\\x36\\x0c\\xe7\\xef\\xba\\x78\\xf0\\x15\\x1e\\x2d\\xd2\\x12\\x6c\\x3b\\x4c\\x65\\x71\\x27\\xf4\\x4e\\x14\\x4b\\x45\\x3e\\x20\\x20\\x58\\x09\\xeb\\x7a\\x05\\xda\\x89\\x6e\\xf6\\x31\\x26\\xc5\\x30\\x49\\xa9\\xb4\\x83\\xfd\\x76\\x19\\x2b\\xae\\xad\\x77\\x57\\x1f\\x55\\x43\\x07\\x93\\xf7\\xa6\\x22\\x67\\xdd\\xe7\\x3c\\xa0\\x05\\x9f\\x51\\x0a\\xbd\\x9e\\x6d\\x47\\x25\\x1b\\x33\\x3e\\x69\\x89\\x5f\\xdf\\x47\\xd2\\x74\\xc5\\x4d\\x53\\xc4\\x74\\xc3\\x2c\\xa1\\xca\\x02\\xf7\\x3b\\xcb\\x30\\xe6\\x01\\x0d\\x7d\\xf9\\xfb\\xdc\\x40\\x29\\x80\\x75\\x4b\\x5c\\xba\\xa1\\x6e\\xfb\\x1c\\x29\\xdb\\x74\\x98\\xa0\\xb4\\x68\\xfb\\x36\\xe4\\xaf\\xc9\\xfd\\x40\\x80\\x6a\\xcb\\xa4\\xd1\\xcb\\xb3\\x21\\x3a\\x49\\x55\\x26\\x64\\xe8\\x0c\\xd4\\xea\\x8c\\xef\\xeb\\x93\\x63\\x3f\\x9b\\x66\\x6b\\x75\\x86\\x16\\xf0\\xbc\\x44\\x59\\x29\\x27\\xeb\\x51\\xd4\\xfb\\x2e\\x09\\xa4\\x32\\xe5\\x17\\x1b\\x48\\xbb\\x7a\\xda\\x14\\x89\\x20\\x34\\xe4\\x89\\x9c\\x33\\x82\\x92\\x88\\x64\\x8a\\xce\\x54\\x4c\\x49\\x05\\xf3\\x5c\\xba\\xe9\\x20\\x59\\x62\\xd3\\xf7\\x6c\\x26\\xdd\\xcc\\x60\\x8c\\x38\\x19\\x28\\xbe\\xb3\\x54\\xa2\\x44\\xbb\\x78\\x7c\\x92\\x03\\x91\\x54\\x61\\xb8\\xef\\x14\\x7a\\xa6\\x27\\x47\\xff\\x32\\x5a\\x6a\\xc9\\x42\\x2d\\xd1\\xab\\x3d\\x9a\\x3d\\x29\\x12\\x80\\xc3\\xd2\\x2c\\x94\\xa3\\x47\\xcc\\xaf\\xe3\\x1e\\x24\\x17\\xc8\\x67\\x2b\\xc5\\x47\\x45\\xb4\\xe0\\x92\\xaa\\xb2\\x57\\xba\\x02\\x54\\xe7\\xa3\\x0e\\xdb\\xdf\\xcf\\xdd\\xf9\\x96\\xa1\\x45\\xbd\\x45\\xf4\\xd1\\x66\\xfe\\x1d\\xf9\\xad\\xa7\\xbe\\x5b\\x99\\xd8\\xe9\\xe1\\xc9\\xb9\\x8e\\x52\\xa9\\x12\\xe3\\xe2\\x70\\x20\\x5a\\xa2\\x2c\\xc7\\xa7\\x60\\x57\\x4a\\xdd\\xc7\\xbc\\xae\\xb8\\xcb\\x7f\\xda\\x2e\\x6a\\x36\\x44\\x6f\\x60\\xb0\\x8a\\xcc\\x65\\x4a\\x98\\xe5\\x7f\\x98\\x13\\x21\\x41\\x4a\\xdc\\x7c\\xa7\\xae\\xbf\\xdb\\x7a\\x94\\x90\\x69\\x40\\x7d\\x6b\\x2c\\xba\\x01\\x27\\xbf\\xc4\\x2d\\x42\\x4c\\x9c\\x87\\x7c\\x2c\\x8b\\xad\\x2c\\x34\\xb1\\x6c\\x60\\x77\\xd4\\x7c\\x80\\x98\\xa6\\x9d\\x24\\x56\\x9a\\xa1\\xee\\x63\\x91\\x50\\xb2\\x16\\x64\\x39\\xf2\\x68\\xb4\\xf2\\x3c\\x80\\x45\\xd4\\xb2\\xd8\\x24\\x35\\xc8\\x28\\xcf\\xf1\\xf3\\xe5\\x80\\x0c\\x92\\xba\\x50\\x46\\xc1\\x81\\x97\\xf5\\x0e\\x44\\xb2\\x26\\xf7\\x00\\x22\\x85\\x4a\\x2d\\x01\\x0e\\xe8\\x1c\\x48\\x24\\xde\\x6f\\x8f\\x7b\\xa4\\x6c\\xe9\\x1e\\x66\\x00\\xc7\\xc8\\x8a\\x72\\xf5\\xc8\\xa6\\x02\\xfc\\x64\\x5c\\xb6\\x63\\xbf\\xb8\\xb0\\x8e\\x37\\x45\\x66\\xc8\\x0f\\x4b\\xca\\x8e\\x4a\\x0b\\x6a\\x8f\\xeb\\x4b\\x86\\xf9\\x2b\\x80\\x1f\\x8f\\x3a\\x62\\xfb\\xee\\xd0\\xed\\xb7\\x74\\x2d\\x2a\\x63\\xfe\\xe3\\x66\\x1f\\x6d\\xd6\\x6f\\xed\\x3f\\x4b\\xdc\\xe7\\x2a\\x16\\xd9\\xdc\\x65\\x52\\x9e\\x83\\x24\\x81\\x31\\x15\\x65\\x65\\x68\\x8f\\x18\\xb2\\x13\\x53\\x62\\x1f\\xe2\\x29\\xe4\\x01\\xbd\\xbd\\x91\\x04\\xc1\\x51\\x92\\xc1\\x4e\\x19\\x70\\x4c\\x94\\xfb\\x0d\\x1a\\xec\\x51\\x32\\x04\\x21\\x6d\\xb0\\x57\\x41\\xf9\\xd2\\x0e\\x3e\\x52\\x0d\\x41\\xbc\\xce\\xc0\\xf9\\x10\\xa1\\x1a\\x06\\xe1\\xea\\x50\\xca\\xfd\\x5f\\x55\\x89\\xf8\\xbb\\xf2\\x64\\x94\\x81\\x2e\\x24\\xc0\\x60\\xe2\\xc7\\x8a\\x60\\xa4\\xb9\\xc8\\xc4\\xa7\\x1a\\x98\\xf3\\x8e\\xce\\xa6\\x11\\x52\\x96\\x0a\\x4a\\xe5\\x7c\\x3a\\x79\\x73\\x47\\x64\\xa4\\xf7\\x5a\\x51\\xda\\x98\\x1c\\xf1\\x30\\xa0\\x6c\\xb4\\xb1\\xfb\\xfc\\xf3\\x51\\x63\\x20\\xec\\x4e\\x9a\\x6b\\xf8\\xe6\\x93\\x12\\xd3\\x80\\xfc\\x51\\xf6\\xf0\\xc7\\x1d\\x0c\\xfb\\x0b\\x31\\x69\\x59\\x74\\x45\\x18\\x8b\\x80\\xa5\\x3e\\x29\\x1f\\x17\\xd0\\x68\\x63\\x14\\x9d\\xb0\\xb6\\xc8\\x22\\x66\\xdb\\xf1\\xc7\\xf2\\xd2\\x98\\x92\\xd2\\xd2\\x9c\\xa7\\x70\\x85\\x59\\xaf\\xc9\\xef\\xfa\\x53\\xf3\\xe9\\xe4\\xd0\\xc7\\x30\\x95\\xa9\\x95\\xe3\\x17\\x3f\\xb0\\xa9\\x52\\x45\\x35\\x49\\xae\\x42\\xfb\\x84\\x22\\x52\\x50\\xa7\\x6e\\x24\\x43\\xea\\x16\\xaa\\xc9\\x42\\x69\\xd3\\x08\\x6a\\x85\\x67\\x24\\x55\\x67\\x25\\x95\\x93\\x33\\x11\\x59\\xb4\\x54\\x77\\xc0\\x9e\\xeb\\xf8\\x06\\x81\\xe4\\x72\\x8a\\x15\\x6a\\x5d\\x4a\\xdc\\xfa\\x19\\xf6\\xf6\\x39\\xf6\\xc8\\x8b\\xed\\x21\\x86\\x31\\xeb\\x58\\x93\\x64\\x5a\\xfd\\x1f\\x32\\x78\\x90\\x88\\x5e\\x6e\\x12\\x36\\x16\\xc8\\xe5\\xd1\\x02\\xb3\\x90\\x5e\\x2e\\x82\\x74\\xfe\\x7f\\x95\\x28\\x5c\\x12\\x3e\\xc9\\xaa\\x15\\x84\\x0b\\xa5\\x92\\x48\\xa1\\x56\\x40\\xb6\\xee\\x3d\\xec\\x4c\\xd7\\x33\\x8a\\x65\\x46\\x21\\x8f\\x7f\\x3a\\xcb\\x8b\\x8b\\x2b\\x35\\x59\\x2d\\x4c\\x25\\x8f\\xcf\\x57\\x72\\x59\\x4c\\xe0\\x6e\\x55\\xfc\\x9f\\xa7\\xbf\\xd4\\x74\\x8f\\xf3\\x4c\\x44\\x7f\\xa6\\x78\\xf2\\x14\\x7e\\x82\\x12\\x2e\\xf1\\x4b\\x44\\xa4\\x88\\xde\\xd0\\x48\\x83\\x55\\x51\\xaa\\xde\\x4e\\xec\\xd2\\x73\\xde\\xdd\\xfd\\xea\\x6b\\x94\\x45\\xd4\\xf2\\x2f\\x2c\\x02\\x79\\x5b\\x42\\xae\\xd1\\x2a\\xc5\\xe4\\x92\\x08\\xe8\\xe2\\xac\\x6c\\x5e\\x4a\\xbc\\xc7\\xfe\\x26\\xed\\x80\\x61\\xb0\\x77\\xfc\\xa5\\x97\\xcf\\x5e\\x6c\\xfe\\xc8\\xeb\\xdc\\xb7\\xcf\\x70\\x1e\\x9f\\xdc\\xbe\\xa2\\xe0\\x75\\xe9\\xd6\\x53\\xac\\xe7\\xc7\\x6f\\xef\\xba\\x79\\x26\\x5a\\x7b\\xe1\\x7e\\xd0\\x53\\x82\\x78\\x7a\\xa5\\x6f\\xf1\\xff\\x65\\xc6\\x17\\xb9\\x6a\\x7f\\xda\\x9f\\xb4\\xb6\\xaf\\x37\\x9c\\xf5\\x66\\xaa\\x5e\\x78\\x5e\\xa2\\x70\\x77\\x9f\\x51\\x02\\xf2\\x6a\\x88\\x9f\\xc9\\x20\\x88\\x16\\xd7\\x89\\x7b\\x79\\xb1\\x41\\x40\\x36\\x31\\x8f\\x00\\x10\\xce\\x48\\x08\\x2a\\xb6\\x38\\xf6\\x19\\x7b\\x39\\x28\\xaf\\xbf\\xe1\\xe5\\xeb\\xfc\\xf3\\x97\\x25\\x9e\\xef\\x19\\xb8\\x66\\x95\\xe6\\x01\\xa7\\xde\\x44\\xba\\xab\\x68\\x7c\\x0c\\xf6\\x47\\xef\\x94\\xf3\\x22\\x30\\x01\\x74\\x24\\x00\\x62\\x83\\x92\\x85\\xe4\\x6a\\x70\\x1c\\x9c\\xe1\\x49\\x9e\\x33\\x53\\xe3\\x2d\\xfc\\x2b\\xbc\\x8e\\xf8\\xc8\\x3b\\x89\\x49\\x29\\xb0\\x1a\\x3e\\x95\\x19\\x86\\x21\\xe6\\x7e\\x18\\xbe\\x2f\\x5c\\x2a\\x5b\\x7c\\xef\\x41\\xef\\xab\\xf8\\xde\\x4f\\xb5\\xe1\\x88\\xe6\\xa6\\x1b\\x97\\x9f\\xa3\\x93\\x8f\\x48\\xf9\\xc7\\x05\\x1c\\x1b\\x92\\xc5\\xfa\\xce\\xdb\\x81\\x81\\xfb\\xd8\\xe5\\x38\\x6f\\x02\\x5b\\xa2\\x16\\x36\\x19\\xa4\\xba\\x9e\\xfd\\xfe\\x6b\\x89\\x0d\\xb1\\x4b\\x54\\xa5\\x4e\\x1e\\x16\\xb1\\x0a\\xcd\\x2c\\x40\\x59\\xc6\\x3e\\xfb\\xc2\\xd7\\x5b\\xf6\\xa3\\xc6\\x99\\xc4\\xf2\\xce\\x55\\x42\\x4d\\x8a\\x5d\\x52\\xee\\x71\\x2e\\xc7\\xa2\\xce\\x8c\\x11\\xe1\\x1d\\x7e\\xf8\\x24\\xac\\x47\\x8e\\x93\\x20\\x94\\xda\\x3c\\xd8\\x32\\x52\\xc2\\xe0\\xb1\\x21\\x2c\\xae\\xdd\\xe6\\x48\\x97\\xdb\\x57\\x48\\x9e\\x5a\\xa5\\x10\\x78\\x0f\\x4d\\xdb\\x7f\\x7a\\x6a\\x49\\x39\\x54\\x9c\\x4e\\x29\\x70\\x63\\xfe\\x67\\xdc\\x0b\\x04\\xf3\\x0f\\x4f\\x1d\\x75\\x8b\\xa9\\x7c\\xca\\x47\\xcb\\x64\\xc6\\x47\\xc9\\xca\\xbd\\x07\\x11\\xaf\\x4d\\xc2\\xed\\xfc\\xaf\\x94\\x82\\xd4\\x38\\xce\\x10\\xed\\xaa\\x7e\\x93\\x69\\x27\\x2c\\xae\\x2f\\xbe\\x0e\\xb5\\x9d\\xc6\\xc3\\xc7\\xdd\\x08\\xde\\x41\\x86\\x3e\\x88\\x59\\x2c\\x1f\\x4d\\x56\\x9d\\x3c\\xb5\\xa5\\xbe\\x45\\x06\\x8e\\xd3\\xeb\\x2a\\xb4\\x7b\\xab\\xb8\\xda\\xdd\\xdd\\xd4\\x25\\x32\\x19\\x95\\x3e\\x67\\x03\\x54\\x42\\x61\\x36\\xd9\\x20\\xe0\\x93\\xcd\\x30\\xb7\\xb2\\x00\\x95\\x41\\xde\\x8e\\xd3\\xaa\\xeb\\x78\\x3a\\x33\\xdb\\xfb\\x3b\\xe5\\x3e\\x63\\xb8\\xd7\\xb8\\xf3\\xc9\\xef\\xbf\\x7e\\x69\\xd3\\xd9\\xbc\\xb4\\x77\\xf5\\x90\\xb2\\xc3\\x31\\xe6\\xf1\\x0c\\xac\\x0a\\x16\\x84\\x73\\x81\\x05\\xad\\x0f\\xf4\\xa2\\x93\\xe7\\xe6\\x53\\x3d\\x0f\\xdd\\x53\\xce\\xc4\\x3c\\xb6\\xab\\x1e\\x00\\xa3\\x59\\x37\\x0d\\xbd\\xbb\\x7b\\xc6\\x7d\\xab\\x54\\x4f\\x2a\\x37\\xb9\\x0d\\x75\\x8a\\x05\\x11\\xd0\\xa2\\x58\\x99\\x65\\x5d\\x1e\\xc3\\x75\\xe5\\x36\\xc8\\xf6\\x25\\xb9\\x36\\x39\\xf2\\x9e\\x3f\\xbb\\x56\\x51\\xe6\\x78\\x82\\x97\\x7f\\xfd\\x3e\\xbc\\x34\\x41\\x73\\xf7\\x28\\x1c\\x19\\x69\\x4d\\xf0\\xf0\\x6b\\xc0\\xd6\\x52\\xd3\\x37\\x46\\x1b\\x72\\x56\\x46\\xe7\\x16\\xcf\\xaf\\xeb\\xe0\\x76\\xe7\\x93\\x77\\x0f\\x72\\xdf\\x7d\\x41\\xdc\\x3f\\x86\\xf2\\xf8\\x3c\\x19\\x6e\\x6b\\xd6\\x62\\xcd\\x7c\\xed\\x2d\\xb1\\x5d\\xde\\x58\\x27\\xca\\x52\\x54\\x9d\\xf5\\xbe\\x02\\xf7\\xd3\\x48\\x31\\xe1\\xe3\\x1d\\x5e\\x43\\x25\\xfc\\x9b\\xf3\\xf3\\x6d\\xe8\\xf4\\x7f\\xee\\x90\\x45\\x20\\x6c\\xf8\\xfc\\x10\\xd9\\x0b\\x6c\\x59\\xfd\\xf3\\xe6\\x66\\x20\\x89\\xe8\\x73\\xd2\\xc1\\x30\\x01\\x62\\x78\\xf9\\x0a\\x09\\x59\\xc3\\x07\\x01\\x94\\xd3\\xff\\x5b\\xd7\\xcb\\x0c\\x82\\xce\\xa0\\x6d\\x37\\x95\\x14\\xd0\\x91\\x2a\\x61\\xb9\\x17\\x23\\xf2\\x4e\\xa8\\x98\\x63\\xb4\\x73\\x90\\xea\\xad\\x90\\xf3\\xc2\\xb5\\xa2\\xa6\\x03\\x0a\\x6a\\xe1\\xbc\\xe4\\x57\\x57\\xd6\\xae\\xf6\\x6f\\x71\\x36\\x48\\x0a\\xa2\\xff\\x06\\xbf\\xfd\\x2a\\xfa\\x27\\xbd\\x4c\\x33\\xbd\\x0c\\xcc\\x0f\\xdd\\xd5\\x37\\xf9\\x2a\\xe7\\x78\\x99\\xa4\\x4e\\x79\\x22\\x26\\x67\\xa4\\x0a\\x93\\x2c\\x82\\x86\\x4b\\xf8\\xf7\\x9f\\xf0\\x7f\\x21\\x72\\x5c\\xe9\\x4a\\x12\\x0e\\x62\\x97\\xee\\x08\\x2a\\x48\\x49\\x3b\\xc3\\xd6\\xee\\x98\\x7a\\x1a\\x3f\\xa3\\x74\\xa2\\xaa\\x17\\x04\\x75\\x0d\\xc8\\xf1\\x48\\x44\\x4e\\xad\\xa0\\xaa\\x4a\\xa7\\xca\\xd1\\xe8\\x75\\x2c\\x47\\x4e\\x05\\x25\\x02\\xcf\\xb7\\x8b\\x17\\x38\\x14\\xff\\xa2\\xbc\\x3c\\x2a\\x9e\\x25\\x83\\x22\\x44\\xa5\\x04\\x70\\x62\\xf9\\x2c\\x27\\x1a\\x50\\x10\\xaa\\x15\\x42\\x74\\xa5\\x1c\\xaa\\x28\\x95\\x26\\x6a\\x52\\x8a\\x31\\x5a\\x90\\x14\\x86\\x61\\x6a\\xc0\\xa4\\x88\\x15\\x81\\xef\\xbc\\xbd\\x65\\x12\\xfc\\x9a\\x11\\xf5\\xb9\\x87\\xff\\xff\\xc3\\x0e\\x64\\x34\\x63\\x63\\x32\\x7f\\xf9\\x0d\\xc2\\x20\\xd7\\x68\\x1c\\x2d\\x8a\\xf1\\x16\\xf8\\x22\\xf0\\x44\\x57\\xf9\\x59\\xa1\\x40\\xd6\\x93\\xf3\\x69\\x94\\xd6\\x93\\x53\\x2c\\x53\\x04\\x48\\xb0\\x1a\\x17\\x96\\x2e\\x0e\\xab\\x87\\x24\\xda\\xad\\x0a\\xf0\\xe9\\x19\\x07\\x2b\\xaa\\x35\\x22\\x16\\x85\\xb2\\x76\\xa5\\x1b\\x9a\\xd4\\xff\\x6c\\x2f\\xe6\\x97\\x19\\x31\\x15\\x85\\x16\\x76\\x70\\x4f\\x79\\xff\\x4d\\xd1\\xf3\\x67\\xef\\x6b\\x64\\x6f\\x85\\xc2\\x46\\x65\\xe9\\xb2\\xc2\\xc2\\x1f\\xb6\\x66\\x3f\\x7c\\xfc\\xd1\\x1b\\x80\\xa4\\x30\\xc8\\x72\\x82\\x91\\x74\\xad\\x25\\xb9\\x2d\\x98\\x61\\x62\\x45\\x55\\x15\\xe2\\xfd\\xc5\\xdc\\x69\\x36\\x4d\\x14\\xcb\\xa9\\x0f\\xae\\x2d\\xbe\\xd1\\x0e\\xb6\\xc0\\x0b\\xfe\\x00\\x54\\x93\\x5f\\xec\\xbb\\x8b\\xc6\\xbf\\x7a\\x25\\x08\\x74\\xdf\\xfd\\xda\\xdf\\xb3\\x89\\xdb\\x32\\xd9\\xfb\\x68\\x9d\\x75\\x3e\\x59\\x50\\x6b\\x53\\x28\\x7e\\x3f\\xe6\\xdb\\x98\\xcd\\x98\\x8f\\xb5\\x3d\\xb8\\xcb\\x33\\xc6\\x33\\x97\\x71\\xdf\\xfa\\xa1\\x20\\xdd\\x8f\\xed\\xb7\\xda\\xb1\\xbf\\x91\\x90\\xd2\\x7f\\x3f\\x9f\\xfb\\xb9\\x8d\\x86\\x74\\x60\\xc4\\xcd\\xcf\\xdb\\xc6\\x2f\\x09\\xbc\\x98\\x72\\x4a\\xdc\\xc8\\x9a\\x74\\x24\\x74\\x9b\\x94\\xee\\x54\\xb3\\x60\\x44\\xb1\\x5e\\xca\\x45\\x99\\xa4\\x3e\\x74\\xc9\\x8f\\xcf\\x44\\xfe\\xf7\\x16\\x11\\x47\\x68\\x28\\x6e\\x35\\x11\\x12\\xbb\\x37\\xb8\\x62\\xf7\\xdf\\x36\\x11\\xde\\xfa\\xdc\\x9b\\x8d\\x5e\\x64\\x81\\x2f\\x02\\x00\\x59\\x93\\x5b\\x28\\x23\\x14\\xe6\\x41\\x35\\xb7\\x03\\x1e\\xf2\\x79\\x94\\x02\\xb5\\xdc\\xcf\\x28\\xad\\xd0\\x15\\x26\\x78\\x7d\\xe1\\xf1\\xf8\\x75\\xcc\\x58\\xe2\\x56\\x4e\\xc7\\x04\\xf1\\x6c\\x33\\xf0\\xda\\x3c\\xd6\\x93\\x70\\x6b\\x9a\\x2e\\x7d\\xf8\\x0a\\xbc\\x89\\xb8\\x90\\xb5\\x97\\xa6\\x91\\xce\\xa1\\x46\\x2a\\x12\\xb8\\x85\\xda\\x03\\xee\\xaa\\xb7\\x23\\xa4\\x55\\x53\\x15\\xb6\\x40\\x1d\\x07\\xa5\\x04\\x4b\\xa7\\x09\\x86\\x1b\\x7c\\xee\\x80\\x34\\xef\\x3d\\x78\\x79\\xc8\\xf3\\xc6\\x53\\x75\\xa1\\x38\\xc1\\xd7\\x31\\x9d\\xe8\\xf1\\xd4\\x26\\x1c\\xcd\\xaa\\xdd\\x05\\xad\\xa2\\xc2\\x2a\\xf0\\x07\\xc4\\x86\\x1d\\xf4\\x47\\x0b\\x74\\xee\\x32\\x46\\x6d\\xee\\x03\\xec\\x62\\xa8\\x5b\\x97\\x03\\x17\\xea\\x69\\xd1\\x67\\x4b\\xbd\\x43\\x3d\\x9b\\x50\\x13\\x2e\\xc1\\xe1\\x48\\xd5\\x6e\\x6b\\x54\\xcd\\xa6\\x89\\x07\\xfd\\xcc\\xc7\\x73\\x0e\\x2a\\xce\\x1f\\x11\\xd7\\x6b\\xef\\xce\\x67\\x19\\x2d\\xcc\\x6b\\x8a\\xc4\\x45\\x71\\xbb\\xf6\\x9c\\x20\\x34\\x2a\\x8c\\xf7\\x88\\x52\\xe8\\x2c\\x06\\x25\\x59\\xc0\\xe3\\xbc\\xe7\\xcc\\x52\\xb6\\x42\\xe2\\xb1\\x23\\x39\\x1d\\x72\\x2f\\x3f\\x92\\xfb\\x4b\\xc1\\xd9\\x37\\xe9\\x8b\\x80\\x1a\\xfb\\x54\\x46\\x39\\x45\\xde\\x7d\\xf9\\xef\\x03\\x64\\x89\\xaa\\xd6\\x7f\\x05\\xfc\\x44\\xc2\\x96\\x48\\x3d\\xc0\\x6f\\x42\\xe5\\x9d\\x89\\xbf\\x5a\\xcf\\xc4\\x6f\\xe9\\xdc\\x73\\xde\\x2a\\xc2\\x21\\xda\\xb4\\xb9\\xb6\\x58\\xfb\\x52\\x05\\xfe\\x3e\\x44\\x7e\\x5a\\xd6\\x7b\\x3b\\xef\\x81\\x37\\x56\\xd8\\xc3\\x3b\\xd2\\x9c\\xdb\\xf0\\x3f\\x8b\\xc7\\xc4\\xcf\\xf0\\x4e\\xdc\\x63\\x3a\\xa6\\xe3\\x53\\xf0\\x61\\x86\\x91\\xb1\\x80\\xca\\xcf\\x9e\\xec\\x5d\\xea\\x12\\x4f\\xa2\\x27\\xae\\x0f\\xb4\\xb9\\xd1\\x2d\\xd1\\xba\\x3a\\x6c\\xb9\\x89\\x0b\\x40\\x56\\x14\\xdd\\x3b\\xf3\\x0f\\x49\\xa9\\xdc\\x5e\\xb0\\xa0\\x86\\x77\\x3c\\x33\\xd3\\x0a\\xca\\x52\\xfb\\xbf\\x77\\xdb\\xf3\\x0f\\x84\\x2a\\xbe\\x54\\x34\\xb3\\x9a\\x8f\\x5f\\x28\\xfc\\x7d\\x92\\x0a\\x94\\x6f\\xf6\\x10\\x7a\\xbf\\x7e\\x1e\\xba\\x1f\\x76\\x9c\\xf2\\xb6\\xa8\\x13\\x94\\x0f\\x38\\xa7\\xdc\\x91\\x7a\\x56\\xbd\\x24\\xc3\\x14\\x22\\xcb\\xca\\x92\\x7f\\x1a\\x69\\xc4\\x87\\xb6\\xf8\\x78\\x9e\\x7d\\x64\\x59\\x77\\x7b\\x77\\xe7\\xe6\\xfe\\x36\\x61\\x2e\\x12\\x32\\x55\\x13\\xcf\\x7a\\x93\\x37\\x36\\xc3\\x06\\xe1\\x67\\xc3\\x7c\\x42\\x87\\x25\\xb1\\x84\\xcf\\xaf\\xef\\x70\\xa3\\x37\\x42\\x52\\x84\\x70\\xf3\\xd0\\x94\\x28\\x34\\xf8\\xd9\\xcb\\xef\\x61\\xb5\\xa5\\x6d\\x73\\x48\\xbb\\xaa\\xd8\\x3e\\xbd\\xac\\xcf\\xc4\\xc7\\x61\\x91\\xea\\x5f\\x9d\\xf2\\x7f\\xe5\\x62\\x6a\\x19\\x50\\xa9\\xf5\\xfe\\xa5\\x5a\\x56\\xf9\\xa9\\xc8\\x4f\\x79\\x94\\xbd\\xfd\\xbf\\xf7\\xae\\x96\\x0e\\x28\\x61\\xb3\\xb4\\xb1\\x0f\\xa0\\x0f\\x31\\xdd\\x99\\xbb\\x43\\x7f\\xf6\\x51\\x9e\\x85\\xdb\\x87\\x3c\\xde\\x49\\xa6\\xc0\\x8d\\x37\\x5b\\x3f\\x6d\\xdd\\xd6\\xb9\\x12\\xc0\\xd9\\xfd\\x87\\x51\\x02\\xf1\\x45\\x21\\x19\\xf5\\xf4\\xb6\\xa8\\x29\\x37\\xcc\\x00\\x54\\x29\\x44\\xa0\\x96\\xc7\\x80\\xb5\\xb1\\xdd\\x77\\x4e\\x77\\x11\\x8e\\x30\\x5a\\x5c\\xea\\x3b\\x3c\\x18\\x40\\x26\\xc2\\x79\\xda\\x91\\x3d\\x2c\\x96\\x4d\\x4f\\x2e\\x36\\xa5\\x3a\\xff\\xe4\\x47\\x9a\\xf5\\xb8\\x6c\\x00\\x40\\x8d\\xbc\\x57\\x9e\\x45\\x27\\xd6\\x38\\x66\\xe7\\x3f\\x5f\\xce\\x91\\xc9\\x84\\xcc\\x13\\x05\\x12\\xc6\\x92\\x8f\\xf9\\x46\\xfc\\xb5\\x04\\x23\\x90\\xfe\\xfb\\x1f\\x58\\x62\\x69\\x12\\x60\\xca\\xa8\\x5a\\x0a\\x40\\x5b\\xaf\\xf9\\xc6\\x60\\x5b\\x9b\\xf4\\xb2\\x3b\\xff\\x3c\\xb1\\x8c\\x91\\xfb\\xcc\\x3c\\x96\\x13\\x9e\\x8e\\x1d\\x80\\x85\\x4a\\xf6\\x50\\xc0\\xda\\xb1\\x56\\xc7\\x92\\x70\\xea\\xe5\\x7a\\x6d\\xb0\\xc6\\xd4\\x85\\x12\\x3b\\xea\\xd3\\x8d\\x87\\x63\\x35\\xf0\\x30\\xa3\\xac\\x75\\xc6\\x10\\xd9\\x1e\\xcc\\x0f\\x99\\xd5\\xb9\\x5f\\x79\\xa0\\xc2\\xf1\\x13\\x20\\x4e\\xf4\\x34\\xf5\\x11\\x86\\x77\\x02\\x72\\xa2\\x94\\x4b\\x56\\xc6\\xf0\\x9d\\x2e\\x29\\x9c\\x50\\xf3\\x37\\x1c\\x78\\x5a\\x89\\xc4\\x5e\\x7a\\xec\\xd2\\xeb\\x8f\\x75\\xbd\\x97\\x30\\xa3\\xef\\x45\\xc7\\x29\\xa2\\x51\\x57\\x03\\x07\\x23\\xd1\\x3f\\xf2\\xb2\\x6b\\xc3\\x6b\\x61\\x44\\xfd\\x96\\x43\\xc0\\x88\\x78\\x38\\xeb\\xd8\\x02\\x41\\x27\\xb2\\xe5\\xbb\\xf9\\x3d\\x55\\xee\\x10\\x88\\xde\\x5f\\x2f\\xfd\\xdd\\x08\\x4f\\x93\\x7a\\x75\\xc7\\xff\\x6f\\x0a\\x89\\x24\\x7a\\x75\\x7f\\x5d\\x86\\x3c\\x50\\x86\\xf6\\xa2\\xfb\\x9f\\x8e\\xe9\\x94\\xa7\\x73\\x24\\xc9\\xdb\\x25\\x72\\xe5\\xff\\x2e\\x61\\xc9\\x6f\\xc9\\xd8\\xa4\\x6b\\xb7\\xd1\\x73\\xce\\x75\\xfb\\x6e\\x45\\x40\\x62\\x79\\x02\\x24\\x56\\xee\\x04\\x99\\x46\\x19\\x1a\\x8c\\x32\\x5c\\x42\\x12\\xc2\\xa0\\x60\\xf5\\x2b\\xe0\\x8d\\xf0\\x20\\x15\\xe1\\x0d\\x3b\\x56\\x09\\xf9\\x27\\xb0\\x8e\\x5c\\x38\\xc6\\xba\\x0d\\xb4\\xec\\x89\\xc2\\xd3\\x1e\\x1d\\x83\\xa7\\x69\\x0a\\x83\\x4b\\xb0\\x74\\x46\\x08\\x5b\\x9e\\xc9\\xa4\\x4d\\x69\\xe4\\xe9\\x82\\x76\\xc1\\xd3\\x72\\x39\\x63\\x25\\x11\\xc4\\xa6\\x55\\x79\\x95\\x3c\\x7a\\xb6\\x97\\x12\\xfa\\xbc\\xec\\x11\\x58\\x6d\\x43\\x2c\\x39\\x47\\x1c\\x52\\x6d\\x22\\x93\\x1d\\x17\\xa6\\xa8\\x9e\\x2e\\x27\\xb2\\xba\\x80\\x9f\\x46\\xf4\\xdc\\xdf\\x41\\xd1\\x5e\\xeb\\xfe\\xd2\\x48\\xed\\x90\\xce\\xdc\\x3d\\x2c\\x1f\\x93\\x63\\xdd\\x71\\xd2\\x0b\\x29\\x41\\xea\\x2a\\xfd\\xa0\\xf5\\x10\\x19\\xcc\\x31\\x80\\xbd\\x3d\\xc3\\x51\\x01\\xae\\xa6\\xa6\\x71\\x04\\x7b\\xeb\\x74\\xb4\\x34\\x70\\x51\\x7d\\x72\\x06\\xcb\\x87\\x65\\xaf\\x76\\x47\\x48\\x85\\x61\\x3a\\xf1\\x54\\xd7\\x04\\xc0\\x53\\xf5\\x49\\x90\\x2c\\x1f\\x9a\\x60\\xdd\\xe1\\x7c\\x0b\\x89\\x81\\xb7\\x79\\x93\\x20\\xcf\\x82\\x4d\\xed\\xf9\\xbc\\xd8\\x1a\\x6c\\xd3\\xa9\\xa4\\xa6\\x99\\x9f\\x5c\\x60\\xb3\\x2e\\x9c\\x09\\xf5\\x1e\\x1e\\x25\\x8d\\x5a\\x7a\\x81\\xed\\x0b\\x1a\\xb5\\xc3\\x28\\x52\\x85\\xf9\\xc8\\x8b\\x23\\x5f\\x30\\xc2\\x46\\x0c\\xbe\\x49\\xc4\\x9e\\x3f\\x39\\x8f\\x61\\xad\\xb9\\xef\\x25\\x9d\\x29\\xdd\\xe3\\xbf\\xea\\x00\\xde\\x1c\\x8a\\xdb\\x54\\x09\\x78\\x77\\xd7\\x8b\\xc1\\x58\\x76\\x46\\x4d\\x75\\x02\\xc9\\x03\\x3e\\x84\\x0d\\xc9\\x93\\xe3\\xa4\\x20\\x28\\x9a\\x89\\x70\\x1e\\xbc\\xb6\\xe5\\x3e\\x93\\x61\\x55\\x50\\xb6\\x64\\x70\\x54\\xb7\\xaf\\x14\\xb9\\x80\\x54\\x57\\x6c\\xf8\\xd3\\xa3\\x17\\x9f\\xa8\\x5f\\x16\\xff\\xdc\\x4d\\x67\\x51\\x53\\xbc\\x1f\\xd1\\xa5\\xd9\\x3e\\x56\\xeb\\x41\\x27\\x65\\xb1\\x53\\xa1\\x0a\\x8d\\x4e\\xaa\\x24\\xdc\\x67\\x93\\x53\\xa1\\xcd\\x08\\xf2\\x62\\xfc\\x9b\\x06\\x59\\x6a\\x9a\\xb4\\xf0\\x38\\x14\\xe6\\xbb\\x2a\\x84\\x0d\\xe3\\xac\\x39\\x4e\\x3e\\x68\\x88\\xd3\\xb3\\x29\\xe5\\xe2\\xae\\xf9\\xf7\\x5e\\x63\\x4d\\xa9\\x79\\x63\\x31\\xc2\\x7b\\x8a\\x3c\\xa0\\x18\\x8b\\x5a\\x69\\xc4\\x8d\\x12\\x44\\x1a\\x4e\\x33\\xaf\\x32\\x7e\\x37\\x9d\\x45\\x53\\xf1\\xb7\\x80\\x7e\\xca\\x00\\x76\\xab\\xf0\\x93\\x5f\\x6c\\x4b\\xc5\\x10\\xff\\x71\\x37\\x22\\x11\\xd5\\x4e\\xef\\x8c\\xa2\\xab\\xc3\\x01\\x25\\x0c\\x27\\xca\\x70\\x96\\x66\\x79\\xdf\\x6c\\xf6\\x84\\xce\\x22\\xbe\\x93\\xd9\\x4b\\xb9\\x05\\x5e\\x10\\xef\\x63\\xa6\\x22\\x66\\xfc\\x3f\\xd2\\xc7\\x63\\x64\\xaa\\x54\\x27\\x41\\x70\\xb5\\x06\\x87\\x7c\\xb3\\xa6\\x26\\xf2\\xb3\\x12\\x10\\xb1\\x18\\x61\\x03\\x1e\\x92\\x53\\x04\\x76\\x29\\xea\\x44\\x9e\\x6c\\x20\\x94\\x6a\\xc3\\x2e\\xba\\x61\\x6a\\x53\\x36\\x5b\\x00\\x4a\\x33\\xb7\\x45\\xfe\\x37\\x33\\x38\\x03\\x56\\xab\\x2e\\xd4\\xfe\\x73\\xb0\\x61\\x2b\\x6a\\x9f\\x39\\xe3\\x0e\\x1d\\xc6\\x10\\xe2\\x8d\\x3b\\x4a\\x08\\xfc\\xa5\\xc4\\xf2\\xea\\x7f\\xfc\\x54\\x1c\\x53\\xf3\\xfe\\x59\\xbf\\x9b\\xce\\xa2\\xa1\\x78\\x57\\x3c\\xe9\\xae\\x27\\xb1\\x95\\x78\\x36\\x4e\\x63\\xe6\\xde\\x6f\\x66\\xa3\\x9a\\xfc\\x66\\xf1\\x23\\x7a\\x14\\x8b\\xc4\\x17\\x8d\\xc2\\xb4\\x37\\x73\\x11\\xaf\\xcd\\x2c\\x8f\\xc2\\x54\\x3c\\x42\\xc6\\x32\\x73\\xc0\\xe5\\xb2\\xed\\xd4\\x2a\\xd0\\x56\\x54\\x4a\\xd9\\x12\\xb8\\x94\\xa8\\x91\\x7b\\x7c\\x85\\x42\\xe3\\x10\\xe2\\x37\\x1b\\xc2\\x92\\x1f\\x4c\\x52\\xe0\\x3c\\x5c\\x40\\xb3\\x03\\x5e\\x65\\x03\\xc9\\xd0\\x70\\x3f\\xc2\\x66\\x4e\\x93\\x9c\\xba\\x75\\xc3\\x9e\\x05\\x25\\x44\\x25\\x9b\\x68\\x47\\x51\\x93\\xc1\\x5e\\xf1\\x1f\\x12\\x9b\\xb2\\x74\\x6a\\xb5\\xb2\\x77\\xd1\\x49\\x83\\x3f\\x44\\x8b\\x3c\\x80\\xcd\\xac\\xa1\\x69\\xe3\\xf9\\x40\\xa1\\x53\\x20\\x49\\x22\\xca\\x7d\\x03\\xda\\x44\\x1c\\xc0\\xf7\\x93\\x78\\x54\\x8c\\x47\\xe4\\x7e\\x20\\x9e\\xa3\\x40\\x4f\\x7d\\xcf\\xf1\\xc8\\x27\\x10\\xaf\\x62\\x76\\x83\\x5e\\x7e\\x4c\\x72\\xd9\\xfc\\x55\\x59\\x8b\\x78\\xf2\\xfb\\xcf\\x16\\xb5\\x73\\xae\\x28\\xcd\\xf1\\xc6\\x7e\\xeb\\xfb\\x69\\xc1\\x12\\x6b\\xd1\\xa7\\x9c\\x5b\\x3e\\x9c\\xb3\\xda\\x1d\\x49\\xbe\\x3d\\x23\\x91\\x80\\x39\\x3b\\x8a\\x74\\x39\\x03\\x38\\x81\\xb6\\xd1\\x73\\x3e\\x45\\x6c\\x3c\\xe1\\x81\\xb1\\x21\\xeb\\xc4\\xa7\\xb6\\x81\\xe6\\xb8\\xe8\\x74\\x30\\x49\\x9b\\x39\\x0f\\xeb\\xb6\\x92\\x17\\xd2\\xe7\\x70\\x76\\xb5\\xbe\\x3e\\xbf\\x3d\\x83\\x19\\x41\\x82\\x5a\\x47\\x1e\\x32\\x35\\x35\\xf5\\x20\\xbe\\x28\\x11\\xfe\\xc0\\xa5\\x46\\xdf\\x76\\x8e\\xdb\\x33\\x98\\x49\\xf4\\x7f\\x76\\x8e\\x12\\xc8\\xef\\x26\\xee\\x5c\\xa8\\xa9\\x3f\\x4b\\xd7\\xd3\\x6a\\x7d\\xd3\\xf9\\x85\\x0c\\x66\\xfc\\x32\\x3e\\xbd\\x0e\\x8b\\x9a\\x9a\\x7a\\x1f\\x70\\xbb\\xc3\\x3b\\xeb\\xa7\\xa6\\xa4\\x04\\x0d\\x8a\\x50\\x45\\xb9\\xc2\\x81\\x75\\x7b\\x91\\x47\\xc5\\xdf\\x1a\\xff\\xbb\\xb1\\x71\\x05\\xfa\\xf7\\xa1\\x3e\\x6a\\xbe\\x26\\xc0\\x86\\xcf\\x23\\x6c\\xfc\\x9c\\x5c\\xfb\\x2f\\x6a\\xe1\\x8c\\xba\\x43\\xc8\\xb0\\xa1\\x1a\\x31\\x15\\xab\\xdc\\xd5\\x99\\xce\\xa2\\xac\\xf8\\xfa\\x33\\xaf\\x8c\\x35\\x75\\x05\\x0b\\x6e\\xcf\\x48\\x5c\\x43\\x56\\x00\\x0c\\x40\\xf3\\xbf\\x69\\x35\\x7d\\x04\\x0f\\x1b\\x7a\\xec\\xa3\\x68\\x00\\x9c\\x13\\x27\\xaf\\xab\\x7c\\xbe\\x6d\\x1e\\x52\\xf4\\xc0\\xaa\\xb0\\x6f\\x55\\xb0\\x2c\\xf6\\xd0\\x59\\x1c\\x2e\\xfa\\xb6\\x54\\x18\\x2b\\xce\\x9e\\x20\\x22\\x25\\x0e\\x4d\\x15\\xe6\\xde\\x15\\x73\\xb1\\x99\\xce\\x9f\\xd4\\x26\\xfc\\x66\\x63\\xe3\\xd4\\xb4\\x29\\x3d\\x34\\xf4\\x8f\\xb0\\x57\\x72\\xee\\xc9\\xa1\\x2b\\x68\\xb8\\x97\\x7e\\x0a\\x6d\\xc8\\xbe\\x3f\\xb2\\xb5\\xbf\\x99\\xe0\\xaa\\xf2\\x81\\x9c\\x63\\x95\\x3b\\x98\\x7c\\x1b\\x89\\xe5\\xe9\\xc0\\x35\\xbe\\x6a\\x3c\\x51\\xa1\\x89\\xe6\\x15\\xbf\\x02\\x50\\xfd\\x3f\\xc6\\x4e\\x91\\xc4\\x4d\\x77\\x21\\xd4\\xf4\\x57\\x82\\x0d\\xbd\\x23\\x24\\x63\\xfb\\x1c\\x21\\x56\\xe6\\x94\\xf3\\x4d\\x3d\\x3b\\x9a\\x78\\x76\\xdc\\xae\\xc7\\x42\\xfa\\x81\\xef\\x28\\x04\\xb3\\xe1\\xd9\\x26\\xe2\\x10\\x32\\x8d\\xf9\\xa1\\x42\\xfe\\x1b\\xf2\\x80\\x8c\\xd7\\xc5\\x53\\x40\\x99\\xf2\\x3b\\x2d\\xaa\\x0e\\xcd\\x51\\xeb\\x43\\x76\\xfd\\x02\\xc3\\x28\\x75\\x68\\x9f\\xd0\\x7d\\xac\\x82\\x3e\\x36\\xbd\\x02\\x29\\xdc\\xc4\\x5f\\xff\\x07\\x58\\x19\\x4f\\x3b\\x6d\\x78\\xf3\\x79\\x5b\\x22\\xfe\\x84\\x25\\x86\\xbf\\x61\\x0c\\x36\\xc3\\x24\\x4c\\xc1\\x0c\\xcc\\xc1\\x3c\\xac\\x80\\x95\\xb0\\x16\\x36\\xd1\\xc6\\xd6\\xcf\\xb8\\xbd\\x3c\\x23\\x78\\xa9\\xb9\\xef\\xf4\\xeb\\x66\\xdc\\x23\\x3e\\x3c\\x16\\x74\\xc0\\x66\\x8f\\x53\\x0f\\x9c\\xb4\\xe9\\xd7\\x4d\\x33\\x80\\x97\\xf5\\x9b\\x87\\x65\\xc2\\x13\\x38\\x0e\\x0b\\x70\\x6e\\xf8\\xc2\\x40\\x4a\\x25\\xdc\\x05\\xa5\\x4f\\x37\\x6e\\x04\\x9d\\xd7\\xb5\\x5c\\xfd\\xfa\\xbb\\xa6\\xf1\\x0d\\xde\\xde\\x71\\xe6\\x9e\\xc6\\x55\\x16\\x35\\xad\\xf2\\x1c\\xff\\x19\\xe3\\x1c\\xc1\\x33\\xfd\\x1c\\xd7\\xbb\\x2c\\x6b\\x56\\x4e\\x37\\xcb\\x3e\\xf1\\xef\\x65\\xf7\\x21\\xd9\\xe6\\x95\\xad\\xde\\xe9\\x3b\\x53\\xc6\\xcf\\x8a\\x33\\xbe\\x22\\x5d\\xd5\\xbd\\x27\\x87\\x3f\\x6b\\x3b\\x3c\\xa2\\xf0\\xbc\\xaf\\x92\\xd8\\xf9\\x4d\\x7b\\x5b\\xc5\\x09\\x8f\\xa6\\xdf\\xad\\xb5\\x81\\x13\\x7b\\x5f\\x7c\\xea\\x86\\xf4\\xdb\\x23\\x00\\x09\\x3e\\x18\\xa5\\x97\\x38\\x7d\\x5e\\x1d\\x7c\\xe0\\x8d\\x48\\x12\\x87\\xde\\xe2\\x64\\x55\\x6a\\x83\\xbb\\x89\\x86\\xf6\\x36\\x4b\\x58\\xb4\\x67\\x1b\\x8a\\x50\\x7d\\x26\\xb0\\xc2\\x34\\xad\\x42\\x84\\xe5\\x63\\x12\\xde\\x25\\xf6\\x2f\\xee\\x51\\x94\\x5a\\xed\\x09\\xbd\\x7a\\x5c\\xaf\\x2f\\x03\\x4c\\xa2\\x42\\xd8\\xcf\\x14\\x40\\x79\\x4f\\x03\\x90\\xad\\x53\\xfe\\x26\\xb0\\x09\\xdf\\x9f\\xf0\\x3b\\x72\\x31\\x78\\x55\\xde\\x58\\xbb\\x2b\\x28\\xd9\\xb9\\xa0\\x83\\x3b\\xd8\\x83\\xf2\\x80\\xc4\\xd3\\x81\\x70\\x5f\\x0a\\x47\\xf5\\xed\\x5e\\xf9\\xc3\\x7a\\xbe\\x9a\\x27\\xe7\\x66\\xcf\\x3f\\x0b\\x8a\\xdd\\xbc\\x9f\\xba\\x85\\xf2\\x04\\x7b\\xfd\\x25\\xfb\\x2c\\xf1\\x4d\\xde\\xf5\\x7f\\x01\\x2b\\x33\\x1b\\x0f\\xbf\\x8c\\x5e\\x72\\x33\\x25\\xe6\\x14\\xcb\\x75\\xa0\\xf1\\x0b\\xf8\\x01\\x28\\xe9\\xc5\\x5f\\x0a\\x7e\\xca\\xc6\\x27\\x6b\\xae\\xdd\\xb0\\x0a\\x4c\\xf9\\xb5\\x87\\x97\\xda\\x5f\\x9b\\xa7\\xea\\xd7\\x14\\x36\\x65\\x7c\\x77\\x56\\x6f\\xe3\\xbb\\x4a\\x18\\x33\\x1c\\xcf\\x5e\\xf0\\x5e\\xf8\\x8c\\x0f\\x1d\\x4f\\xdc\\xc0\\x25\\x99\\x7b\\xad\\x3f\\xf9\\x31\\x70\\x37\\x9b\\x24\\xe4\\xfd\\x7c\\x8d\\x26\\xd9\\xca\\xe2\\x3b\\x34\\x48\\x83\\xa4\\x45\\xf5\\x68\\xde\\xd6\\x86\\x7e\\xc7\\x0d\\x8c\\xb3\\x3f\\x08\\x7b\\x9e\\x81\\xea\\x24\\xb5\\x15\\xe3\\xeb\\x3b\\x63\\x36\\x91\\xfe\\x5e\\x60\\x85\\x7c\\x65\\x07\\x1b\\x9e\\x68\\xf4\\x8c\\x8f\\x18\\x4f\\xdc\\xbb\\xcf\\x25\\xab\\x3d\\xe0\\xfb\\x7c\\x07\\x80\\x95\\x8f\\xb2\\x62\\xcc\\xae\\xb1\\xc3\\x7b\\xa0\\x9b\\x5e\\xe6\\x61\\x08\\x18\\x68\\x4a\\xb3\\xbb\\x73\\x5c\\x43\\xfa\\x61\\xe7\\xd4\\x8a\\x01\\x79\\x53\\xcb\\xbc\\x53\\x67\\x0e\\x2b\\x84\\xfb\\x58\\x4f\\xdd\\xd0\\x91\\x6c\\xce\\x9d\\x50\\xd4\\x45\\x3c\\xb9\\xbb\\x0b\\xd5\\x21\\x72\\xb0\\xa0\\x3b\\x8e\\xfb\\x1f\\xd0\\x9f\\xad\\xf4\\xe7\\xfe\\x12\\x05\\x90\\xe9\\x65\\xc3\\x01\\x5f\\x71\\x7f\\x71\\x9f\\x72\\x01\\x4b\\xec\\x79\\x37\\xbf\\xe8\\x23\\xcc\\xd4\\xe0\\xad\\xf1\\xd7\\x91\\xf1\\x2a\\xf6\\xc2\\xd8\\x0e\\xdf\\x74\\xc5\\xe6\\x22\\xbe\\x14\\x3d\\x60\\xb6\\x03\\xe2\\xf3\\x84\\x2e\\x76\\xce\\xe4\\x95\\x38\\xa3\\x8b\\x7f\\x91\\x60\\xdd\\x45\\x3e\\x51\\x3b\\xed\\x45\\x5f\\xe3\\xdd\\x85\\x20\\x1a\\x6f\\x2f\\x2c\\x16\\xdc\\x05\\x3e\\xcf\\x68\\xd5\\x05\\x3f\\x71\\x26\\x68\\xfb\\x10\\xf7\\x06\\x49\\x8c\\x6d\\x1f\\x8a\\xde\\x94\\xd4\\xe3\\x7a\\x14\\x98\\xa1\\x7d\\x0d\\xf4\\xd1\\xff\\xb7\\xb0\\xee\\x12\\xb0\\x3a\\xca\\x5e\\x82\\xb1\\xbb\\xd3\\x17\\x38\\xda\\x3b\\x7f\\x26\\xb8\\x17\\xfc\\x4b\\xb9\\xe8\\x0b\\x2f\\x87\\x72\\xca\\x69\\x79\\x16\\x0e\\x97\\xa7\\xe6\\xc9\\x07\\xce\\x85\\xbc\\x8a\\x9f\\xee\\xf5\\x05\\x0e\\x53\\x0c\\x0f\\xf0\\x52\\xc4\\xc7\\xca\\x1a\\xaa\\x3e\\x41\\x18\\x92\\x48\\xf9\\x38\\x60\\xa8\\xb3\\xa9\\x90\\x70\\x42\\x17\\xfb\\xb8\\xea\\x19\\x35\\x7d\\x2f\\xf9\\xf0\\xe0\\x2f\\xc2\\x5e\\xf4\\x19\\x41\\x2e\\xf4\\x65\\x20\\xec\\x85\\xff\\x70\\x3c\\x18\\x45\\xac\\xba\\xe0\\xdb\\xc5\\x12\\xe6\\xd2\\x13\\xf2\\x0f\\x97\\x3f\\x9f\\x0d\\x21\\x43\\x18\\x75\\xe0\\x20\\x96\\x6a\\x52\\x75\\x72\\xb8\\xbc\\xbc\\xf2\\xca\\xc5\\xb8\\xab\\x58\\x34\\xf1\\xac\\x4b\\xda\\x3b\\xcb\\x77\\xed\\xf6\\x95\\xe8\\x2c\\xc1\\x15\\xbe\\xed\\x90\\x14\\xb6\\xf8\\xce\\xe8\\x36\\x2b\\x15\\x8a\\x02\\xe9\\xb7\\xc4\\xc3\\xd3\\x99\\x62\\xc0\\x16\\x1d\\xe3\\x3d\\xe2\\x9b\\x52\\x24\\x5b\\xf8\\xe7\\x27\\x61\\xf5\\xd2\\xbd\\x0e\\xb1\\x8a\\x75\\xc2\\x29\\x87\\x2f\\x3e\\x8c\\x3e\\x43\\x62\\xa0\\xee\\x63\\x29\\xa1\\x83\\x82\\xbb\\x7b\\xb9\\x40\\x98\\xb5\\xba\\x2a\\x31\\x56\\x74\\x17\\x2e\\x06\\x84\\xd5\\x2f\\x25\\xa5\\xf0\\x85\\x62\\x15\\xcb\\xfa\\x8a\\xc8\\x7b\\x90\\x33\\x8f\\x15\\x77\\xa0\\x74\\x10\\x7c\\x46\\xc8\\x2b\\xdf\\x48\\x60\\x32\\xe0\\x25\\x7b\\x16\\x90\\xcd\\xe4\\xe6\\x3a\\x94\\xc3\\xfd\\x78\\x7d\\x61\\x73\\xaf\\x73\\xa1\\x74\\x88\\x88\\x45\\xab\\x3b\\x3d\\x04\\x56\\x74\\x27\\x53\\x56\\x94\\x5e\\x60\\xe1\\x41\\x93\\x29\\xa2\\x16\\xc3\\xb9\\x10\\x10\\x6b\\x8a\\x28\\x1e\\x55\\xa1\\xc5\\x01\\x5c\\x24\\x0f\\xb2\\xd8\\x94\\xa7\\xf6\\xaa\\xcc\\xfb\\xcc\\xbc\\xd3\\x81\\x90\\xc2\\xfa\\x59\\x44\\x14\\xde\\x28\\xa5\\x23\\xb9\\x44\\x54\\xf9\\x5d\\x4c\\xb0\\x10\\xfa\\xc4\\x18\\xfe\\x93\\xe4\\x7f\\xa7\\xbd\\xa2\\x0e\\x3c\\xec\\x38\\x13\\xaf\\xa7\\x34\\x7e\\x81\\x22\\x20\\xef\\x16\\x09\\xc2\\xae\\x52\\x14\\x47\\x5a\\xe3\\xc9\\x6a\\x80\\x51\\x33\\x33\\x98\\xfd\\xd0\\x11\\xb0\\x48\\xba\\x99\\x83\\xfc\\x8c\\xd2\\x5d\\x2a\\x11\\x2c\\xef\\x6a\\x02\\xee\\x9d\\xdd\\x0d\\x76\\x72\\xd0\\xc8\\xdf\\xa6\\x47\\x33\\xbc\\x51\\x6a\\xaa\\x1b\\x8a\\x8c\\x14\\xad\\x42\\x2b\\x5d\\xa3\\x6e\\x99\\xe1\\x58\\x49\\x27\\x19\\xe6\\xa3\\x0d\\x7b\\xd2\\x37\\x80\\x16\\xaa\\x64\\x00\\x0f\\x07\\x36\\x49\\x1d\\x5f\\x1a\\x84\\xd9\\x5a\\x8c\\x5f\\xff\\x5a\\x98\\x1a\\x9d\\xff\\x81\\x77\\x8f\\xc1\\x1f\\x31\\xb3\\x5a\\x8c\\x7b\\x81\\x33\\xcc\\xa3\\xb6\\x17\\x85\\xd3\\x9e\\xff\\xce\\x5f\\xc0\\x29\\x75\\x20\\xc3\\xc3\\x9f\\xfe\\xa2\\xf2\\xf1\\xa2\\x98\\x63\\xfd\\xf9\\x1f\\xf5\\x5f\\x55\\x07\\x82\\xff\\x57\\xda\\x93\\x0e\\xc7\\x30\\x03\\xa0\\x70\\xf0\\x57\\xf1\\x00\\xe0\\x88\\xf1\\x65\\x38\\xf7\\x6f\\x02\\xcb\\xac\\x60\\xfd\\x15\\xde\\x0e\\x56\\xba\\x78\\xd2\\xc3\\x7f\\x0e\\xe3\\xbd\\x6b\\x4f\\x7a\\x97\\x10\\x8a\\xc2\\xdf\\x87\\xdb\\xdb\\x7f\\x0d\\x9d\\xd6\\xa8\\x48\\x76\\x80\\x45\\xae\\x27\\x87\\x83\\x4e\\x8d\\xa1\\x1f\\xf6\\x30\\xd7\\x29\\xbe\\x70\\x66\\x7c\\xdf\\x72\\x98\\x85\\xc2\\xf1\\x7f\\x69\\x40\\x07\\x90\\xe9\\x46\\x14\\x00\\x0b\\x5c\\x8b\\x22\\x60\\x95\\x9b\\xd7\\x7b\\x1d\\x18\\x63\\xcf\\xae\\x74\\x56\\x21\\x8b\\xf8\\xe2\\x88\\x4d\\xf4\\x5e\\x30\\x9b\\x88\\x6c\\x7f\\x51\\x14\\x1c\\x97\\x34\\x25\\x2f\\x72\\xd0\\xbe\\x20\\xd3\\xdb\\xed\\x34\\x68\\x0a\\xd4\\xfb\\x9d\\x80\\x19\\x38\\xc5\\x87\\xa3\\x36\\x63\\xaf\\x67\\xdb\\xd0\\x14\\x01\\x9b\\x5e\\x16\\x1e\\xe8\\x49\\x29\\x83\\x80\\x08\\x08\\x4f\\x25\\x1b\\x38\\xd6\\x8b\\xb6\\xb8\\x1a\\xbd\\x2f\\xf3\\xb3\\xa3\\x15\\x85\\x5e\\xb5\\xb2\\x37\\xb1\\x22\\x72\\x87\\xd8\\xda\\x10\\xc0\\x6d\\xc4\\x15\\xf3\\x1c\\x02\\xce\\x50\\x95\\x7c\\x00\\x06\\x9e\\xa6\\xba\\x01\\x6a\\x30\\x0c\\x53\\xdd\\x59\\xb2\\x6b\\x28\\x0e\\xfb\\xd7\\x97\\xbe\\x2e\\xba\\xcb\\xf7\\xf5\\x8a\\x0b\\x60\\x56\\xc9\\x13\\x92\\x70\\xe7\\x6e\\x74\\x0e\\xd2\\x5e\\x38\\x25\\x09\\x89\\x51\\x86\\x3b\\x34\\x7e\\xe5\\x06\\x25\\x0f\\x24\\xc5\\x3b\\x4b\\x55\\xe5\\xb6\\x9f\\x31\\x59\\xaa\\xde\\xa9\\x32\\xdf\\x64\\x51\\x74\\x8e\\xf6\\x84\\xfe\\x65\\x0c\\x34\\x44\\x46\\x7c\\x88\\x53\\x69\\xb9\\x4d\\x49\\x00\\x45\\x63\\xb3\\xd4\\xd0\\x1c\\xf0\\x7c\\xed\\xa0\\x34\\x37\\x72\\x3f\\xa0\\x27\\x08\\x7e\\x37\\x62\\x42\\xc7\\xde\\x6f\\x32\\x47\\x2a\\xf4\\x45\\x23\\x09\\xb9\\xbd\\xff\\x26\\xe8\\xed\\x0e\\xa1\\x5c\\xfb\\x06\\xd0\\xdd\\x6f\\x81\\xaf\\xe2\\x59\\xa8\\x2a\\xa7\\xda\\x43\\x45\\x3a\\xba\\x04\\x4e\\xd0\\x43\\x60\\xc4\\x44\\x4e\\xd5\\xe7\\x3b\\x8c\\x02\\x5f\\xc7\\x73\\xa5\\xb3\\xf3\\xd0\\xf6\\x04\\x32\\x16\\xa4\\x59\\x1d\\x41\\x9a\\xad\\x11\\x27\\x34\\xf3\\xa3\\x7c\\x9e\\x51\\x86\\x64\\x3a\\xfd\\xd6\\x5c\\x02\\x23\\x08\\x1e\\xb4\\x02\\x7f\\x07\\x9f\\x97\\x84\\x00\\x16\\x30\\xac\\x1c\\x35\\x1d\\x9b\\x43\\xa7\\x98\\x95\\xd4\\x8b\\x47\\x97\\x16\\x6b\\xc5\\x49\\x13\\x11\\x28\\x41\\x2a\\xf0\\x0f\\x70\\x24\\x29\\x5f\\xba\\xd5\\xe3\\x1e\\x28\\x06\\xe9\\x71\\xba\\x2d\\x78\\xa0\\xaf\\x3d\\x03\\x2d\\xa2\\x9e\\xa0\\xe0\\x05\\xee\\x58\\x9b\\x0b\\x13\\xd0\\xd2\\x33\\xb9\\x46\\x9d\\xf0\\x8e\\xd0\\xb5\\x8e\\xd6\\x4a\\x92\\xc6\\x80\\x5b\\x04\\x06\\xce\\x97\\xa9\\x80\\x1f\\xe9\\xbd\\x4c\\x61\\x47\\x3f\\x38\\x1e\\x51\\x11\\xb9\\xb7\\xcc\\xc6\\xeb\\x95\\x1e\\x0d\\xc0\\x67\\x40\\x6a\\xc1\\x95\\xb6\\x3a\\xc8\\x8f\\xb1\\x6f\\xb6\\x1f\\x13\\x7b\\xa6\\x71\\x47\\xc0\\xfe\\x13\\xe7\\xf6\\x81\\xbd\\xcc\\x1e\\x2f\\x54\\xdd\\x23\\xf3\\xaa\\xb2\\x70\\x55\\x39\\x57\\x15\\xed\\x0c\\x1c\\x47\\x43\\xe0\\xb5\\x42\\xc4\\xbd\\x2d\\x9b\\xbd\\x20\\xcd\\x25\\xf8\\xd6\\x85\\x1f\\x4f\\xa8\\x03\\x2f\\xfe\\x0a\\x18\\x5e\\xa2\\xc3\\x11\\x50\\x97\\x5c\\x43\\xeb\\x22\\xdc\\xec\\x41\\xcc\\xb9\\xae\\x68\\x67\\x07\\xcc\\x87\\xe8\\x70\\x08\\xb0\\x44\\x73\\x47\\xca\\x90\\x6a\\xcf\\x73\\x09\\x0c\\x3f\\x78\\x3f\\xb0\\xef\\x0e\\x3f\\x48\\x8d\\x68\\x58\\x0a\\x78\\x53\\x8b\\x3e\\x2f\\x22\\xc0\\xa1\\x30\\x8c\\x37\\x9b\\x8c\\xdc\\xab\\x6a\\x2b\\xf2\\x8c\\x4b\\x19\\x31\\x7b\\x44\\x4c\\x0e\\x8c\\x3e\\xd0\\x56\\xe6\\xd6\\xf4\\x84\\x17\\x53\\x37\\xa3\\xe2\\xe0\\xe9\\x88\\x4b\\x41\\xa6\\xa0\\x3c\\x28\\x0b\\x5c\\x80\\xa8\\xba\\x18\\x4a\\xca\\x99\\xf2\\x5e\\xe9\\x08\\x78\\xa5\\x76\\x46\\x72\\x7e\\xc7\\x73\\xb3\\x2f\\xd4\\x19\\xb1\\xe5\\x97\\x77\\x10\\x0e\\x48\\x2e\\x51\\xae\\x01\\x9a\\xfb\\xf5\\x17\\x6e\\xc4\\x76\\x34\\x7f\\xd1\\x3c\\x24\\xc0\\x07\\x45\\x42\\x1d\\xee\\x5e\\xfa\\x5b\\x6a\\xdf\\xc4\\xa5\\x97\\x0f\\x91\\x7d\\x5e\\xba\\xbb\\x67\\x18\\xd0\\x55\\xcc\\x3c\\x0a\\x03\\x18\\x79\\xad\\x11\\x60\\x86\\x79\\x00\\x6e\\x10\\x85\\xdd\\xb4\\x38\\x3c\\xf4\\xe5\\x05\\x42\\xa3\\xd3\\x48\\x65\\xbc\\x04\\x94\\x37\\x0f\\xc0\\xa5\\xab\\xb6\\x5c\\xfb\\x13\\x90\\xe8\\x01\\x82\\xbe\\xee\\xf0\\xa3\\x78\\x0e\\x28\\xde\\x63\\x6d\\x6c\\xcf\\xe8\\x64\\x1e\\x01\\x97\\x5a\\x30\\xec\\xd9\\x7e\\x2e\\x0d\\xb9\\xba\\x79\\x68\\x2c\\xa9\\xc6\\x62\\x7e\\x0f\\x60\\x8c\\xd4\\xc0\\xdf\\xaa\\x94\\x88\\x9c\\x11\\x67\\x32\\xd5\\x72\\x89\\x9c\\xa5\\x8a\\x34\\x01\\xba\\x12\\x4b\\x8e\\xbe\\x81\\xae\\x70\\x89\\x9c\\x5e\\x45\\x2e\\xc2\\x59\\x5f\\xe5\\x0c\\x4a\\x74\\xd6\\x73\\x31\\x54\\x5b\\x54\\x46\\x09\\x30\\x56\\xc0\\x23\\xe2\\x16\\x69\\x2d\\x51\\xb0\\xf7\\xa7\\x02\\xb8\\xb3\\x35\\x3f\\x56\\x1f\\xae\\xd1\\x62\\xd2\\x08\\x48\\x37\\x97\\x8f\\x31\\x92\\x4e\\xa5\\x8f\\x95\\xb9\\x78\\x0e\\xb8\\xf9\\xac\\xe7\\x79\\xf4\\xd8\\x94\\xe2\\x15\\x35\\x89\\xbe\\x51\\x5d\\x94\\x54\\x54\\x98\\xb5\\x42\\x9b\\xb9\\xfc\\xf0\\x13\\x31\\x4b\\xaa\\x55\\xa9\\xce\\x84\\x33\\xc9\\x8f\\x82\\x1f\\x63\\xaa\\xb2\\x34\\xa3\\x08\\x23\\x2c\\x4f\\x18\\x6f\\x10\\xb1\\xb6\\xa8\\x25\\xdf\\x20\\x4a\\xd9\\x3b\\xe4\\x2e\\xa0\\xd0\\x06\\x6c\\x6b\\x65\\xb4\\xb7\\xe9\\xb8\\xb9\\xb4\\x54\\xdb\\x00\\x87\\x5a\\xf2\\x2a\\x78\\x51\\x24\\x9b\\x01\\x2c\\x4c\\x64\\xaf\\x7f\\xbd\\xf8\\x66\\x2e\\xf6\\x04\\x60\\x6c\\x2e\\x22\\xf0\\xe5\\x4e\\x73\\xaa\\xd6\\x75\\xd7\\x28\\xbe\\xaa\\xe8\\x76\\x9a\\x51\\x45\\xe1\\xab\\xc7\\xcd\\xa6\\xc2\\xf9\\x65\\x13\\xdd\\x04\\x33\\x13\\x04\\x13\\xbd\\x04\\x0d\\xd9\\x5e\\xa3\\x23\\xb3\\xc8\\x03\\xdc\\x0d\\x13\\x69\\x04\\x13\\x59\\x5b\\xdc\\xe1\\x09\\xe0\\x79\\x98\\xd9\\x27\\x88\\x79\\xa9\\x3c\\x5b\\x33\\x5b\\x74\\x17\\x69\\x36\\x57\\xc6\\xf4\\xb8\\xa9\\xb9\\x3c\\xdb\\x5b\\xfd\\x72\\x89\\x5b\\x09\\xa8\\x9e\\x58\\x5a\\xef\\x51\\xae\\xe4\\xd7\\x59\\x26\\x92\\x56\\xc0\\x70\\x51\\x22\\x71\\x8b\\x68\\x3c\\x8c\\x5f\\x62\\x2a\\x02\\x00\\x83\\x49\\x42\\xcf\\xcc\\x95\\x7a\\xbf\\x22\\x32\\xb5\\xd4\\x8a\\x5b\\x94\\x29\\x67\\x97\\x92\\xed\\x8e\\xa2\\x1a\\x5a\\x75\\x76\\x93\\x4a\\x69\\x7a\\x55\\x3c\\x2c\\x6e\\x36\\xf7\\x00\\x1b\\x47\\xfe\\xcf\\xb5\\x09\\xa6\\x7a\\xdc\\x86\\x72\\xd2\\xcc\\xb4\\xa8\\xd4\\x4e\\xdd\\x18\\x54\\x2b\\x0b\\x8d\\xac\\x86\\x16\\xe6\\x8c\\x60\\xb5\\x32\\x2b\\x98\\x38\\xab\\x99\\xb2\\xbf\\x39\\xc9\\xac\\x76\\xbb\\x9b\\x50\\xde\\x58\\x0e\\xa8\\xec\\x79\\x2d\\x54\\xa5\\xb3\\x84\\x89\\xbe\\x4a\\xb2\\x3b\\x4b\\xd8\\xd4\\x2b\\x7a\\x15\\xe1\\xa9\\x68\\x54\\xdd\\x5e\\x7c\\xce\\xae\\xb1\\xaf\\x54\\xb7\\x54\\x3e\\x47\\xa8\\x8d\\x58\\x94\\x17\\x94\\x90\\x74\\xeb\\xd7\\x6c\\xa9\\xc8\\x5d\\xfd\\x10\\xda\\xd4\\x2e\\xbb\\x62\\x06\\x44\\x80\\x64\\x17\\xdf\\x3c\\x33\\x34\\x9c\\x9d\\xa2\\x95\\xfb\\x7a\\xfd\\x58\\xf3\\x68\\xe8\\x4e\\xc0\\xf4\\x9d\\xe2\\x1a\\x51\\x0b\\xc5\\x58\\x19\\xee\\x1e\\x2e\\xd9\\xad\\xad\\x2b\\xcd\\x24\\xb5\\xa3\\x53\\x34\\xeb\\x8e\\xc7\\xce\\xc9\\xda\\xc6\\x12\\xbb\\x1a\\x6b\\x91\\xbd\\x15\\x7c\\xf5\\x5f\\xb2\\xf1\\x0f\\xc9\\x68\\x51\\x90\\x06\\xec\\xbf\\x6c\\x30\\x04\\xf4\\x8b\\x34\\x5e\\x61\\x1a\\xe6\\x0e\\x49\\x11\\xe9\\xa4\\x3d\\x84\\x64\\xad\\xb9\\xcb\\x84\\xde\\xfd\\xac\\x57\\x37\\x52\\xe3\\xb7\\x40\\x14\\x4f\\xa8\\x6d\\x0f\\x57\\x95\\x13\\xc2\\x80\\x15\\x3b\\x05\\xe1\\xb1\\xbb\\x97\\xdd\\x99\\xed\\x8e\\x69\\x56\\x49\\xbd\\xd9\\x4f\\x16\\x6d\\x77\\x6a\\x78\\xa1\\xc7\\xf5\\xcc\\x1c\\x35\\xfd\\xbe\\x72\\xce\\x94\\xb8\\x17\\x92\\xca\\x9c\\x57\\x4d\\x6f\\x58\\x19\\x5e\\x99\\x9d\\xd4\\xc9\\xdd\\xa3\\xa7\\x99\\x1a\\x59\\x6e\\x69\\x21\\xa2\\x65\\xfc\\x6a\\x67\\xb6\\x3b\\xa6\\x0a\\x3c\\xbf\\xdf\\x1d\\x18\\xfd\\x86\\xa2\\x51\\x7d\\xc9\\x1c\\xf7\\x2a\\xe1\\x33\\xae\\x65\\x44\\xcc\\xec\\x44\\x3d\\x1e\\xa7\\xc4\\x16\\x46\\xe5\\x65\\x50\\xa4\\xf8\\xf5\\x0c\\x58\\x8f\\xb4\\x3c\\xe8\\x49\\x67\\xc2\\xec\\x5d\\x64\\x01\\xee\\x4a\\x3a\\xeb\\x19\\x1c\\xf1\\x8c\\x7e\\xce\\x92\\x0b\\xad\\xcd\\xca\\x45\\x99\\xf5\\x62\\x6b\\x00\\x4e\\x97\\xc5\\xc0\\xc1\\x86\\x9c\\xd7\\xf6\\xec\\x14\\x5c\\xb2\\x6a\\x79\\x69\\xb5\\x51\\x4b\\xe8\\xea\\x4c\\x7c\\x3a\\x38\\x7a\\x4d\\xcd\\x0c\\x9e\\x15\\xcd\\x3d\\x3b\\xd8\\x3d\\xcb\\x5e\\xc9\\xc1\\xb6\\x89\\xcb\\x9a\\xd3\\x8e\\x3c\\x6b\\x6a\\x5f\\x8d\\xa6\\x5a\\xd7\\xd7\\xce\\x20\\x78\\xec\\x91\\xd2\\x5a\\x94\\x95\\x5e\\x82\\xdd\\x4f\\x29\\xc1\\x33\\xd3\\x0a\\x9d\\x66\\xf8\\xe1\\x5b\\x6e\\xce\\xbe\\x4b\\x2a\\x63\\x7b\\xab\\xb1\\x4b\\x12\\x80\\x74\\x4f\\xd8\\xf5\\x8e\\xa2\\x31\\xd3\\x77\\x56\\xf6\\xdc\\xd9\\xc1\\xee\\x99\\xf7\\x4a\\x5d\\x2d\\x69\\xa4\\x75\\xb9\\x73\\x11\\xf1\\xd5\\x68\\xba\\x17\\x91\\x41\\x1a\\x42\\x74\\x45\\x5d\\x33\\x3d\\x9c\\x30\\xaa\\xce\\xc2\\xed\\x3b\\x6c\\x58\\x3b\\xeb\\xd9\\xd1\\x9c\\x8c\\x9e\\x2c\\x32\\x27\\x22\\x83\\x3d\\x02\\xbf\\x3b\\x13\\x5f\\x1e\\x9c\\xbc\\xc1\\xce\\xfc\\x3a\\x2b\\x80\\xb3\\x83\\x73\\xfd\\x83\\x57\\x72\\xf0\\xc9\\x94\\xca\\x2a\\xd3\\x8e\\xdc\\x7f\\xda\\x5d\\x8d\\xa6\\x5a\\xd7\\x17\\xa3\\x33\\x78\\x8f\\x9d\\xef\\xba\\x48\\x9c\\x95\\x2a\\x0f\\xe6\\x5d\\x97\\x7c\\x89\\xfd\\xd0\\x45\\xbd\\x19\\x48\\xaf\\x22\\xd2\\x48\\x3d\\x5d\\xc7\\x2a\\x6a\\x55\\x54\\xe9\\x3e\\x69\\x28\\x6c\\xcc\\xa6\\x3e\\xcb\\x0e\\x0f\\xe5\\x36\\xd5\\xba\\x23\\x96\\x4e\\xb6\\xcf\\xb8\\x5e\\x84\\x96\\xe9\\x39\\x2e\\x51\\x1e\\xdf\\x42\\x57\\x90\\x30\\xa0\\xfb\\x5e\\xf3\\x73\\xb2\\xc3\\x23\\xad\\xcb\\x86\\x95\\x8b\\xb9\\x66\\x3a\\x0a\\x32\\xbb\\x6c\\x8d\\x54\\x8e\\x36\\xe8\\xa4\\x5e\\x5c\\x82\\x8b\\xde\\x69\\xb7\\xe4\\x2f\\xb8\\xfe\\x13\\xe0\\x83\\x06\\x2f\\xee\\x3d\\xd8\\xdc\\xca\\x82\\xad\\xa2\\xc0\\xcc\\xee\\x6e\\x6a\\x9c\\x72\\xd8\\xec\\x8e\\x88\\x4f\\x87\\xc1\\x05\\x3c\\xf3\\xf0\\x6c\\x0c\\xe3\\x0c\\x0f\\x60\\xcb\\xac\\x0d\\xf4\\x28\\xa3\\x4c\\x43\\xac\\x9a\\xd4\\x04\\xd4\\xd8\\xc6\\x1a\\xc2\\x4c\\xfb\\xca\\xe7\\x2b\\xe5\\xd9\\x14\\xb7\\xe7\\x68\\x82\\x68\\x77\\xa7\\x06\\x01\\x78\\x9f\\x09\\x07\\x2e\\x0b\\x09\\xa9\\x09\\xfb\\x8e\\xf9\\x56\\x91\\x09\\x7f\\x48\\x02\\x25\\x80\\x3f\\x4f\\xfb\\xc4\\xf0\\x29\\xfc\\x3f\\xaa\\x9d\\xd1\\x6c\\xfa\\x28\\xbd\\x5a\\x8f\\xf5\\xd3\\x1e\\x84\\x01\\xcd\\x39\\xf2\\x49\\x63\\xec\\x05\\xb6\\xec\\xde\\x7d\\xdf\\xe3\\x22\\x60\\x8d\\xcf\\x89\\xb3\\xde\\x2e\\x21\\x59\\x87\\x1a\\xa1\\x90\\xdf\\xe2\\x80\\xfc\\xf8\\xad\\x01\\x3a\\x05\\x88\\x2f\\xe3\\xef\\xff\\xb4\\xc9\\x18\\x18\\xf7\\x26\\x7e\\xf8\\xaa\\xe0\\x7f\\x39\\xf2\\xfa\\x42\\xb6\\x29\\x81\\x86\\xde\\x93\\xb9\\x6f\\x7e\\x96\\x7b\\x74\\x69\\x53\\xc4\\x91\\x59\\xa2\\x1f\\x40\\x89\\xa6\\xdf\\xe0\\xfe\\xdb\\xb0\\xf0\\x37\\x18\\x04\\xe6\\x49\\x44\\xb0\\xa6\\x45\\x9e\\xa5\\x49\\x1c\\x29\\x29\\x38\\xa3\\x70\\x3b\\x96\\x90\\xf9\\x71\\xf8\\x6d\\x73\\xb3\\xf9\\x4b\\xf6\\x22\\xb0\\x87\\x5a\\x28\\x17\\x7d\\x24\\x21\\x8f\\xb7\\x00\\x45\\x68\\xa0\\x66\\x71\\x4a\\xc3\\x3a\\x1c\\xf6\\xe5\\xfd\\xed\\xcd\\xf5\\x61\\xaf\\x79\\x31\\xed\\xb3\\xf0\\xcb\\xdf\\xbc\\x96\\xcd\\x3a\\xa9\\xa2\\x16\\x81\\x2e\\x0e\\x04\\x25\\xbd\\x0c\\xd8\\xb0\\x02\\xbc\\x2b\\xd1\\x64\\xac\\x68\\x9c\\x98\\xb1\\xe9\\x7e\\x66\\x7a\\xde\\xdf\\x09\\x2f\\x3f\\x45\\x13\\x67\\xbc\\x7c\\xae\\xe2\\x71\\xf0\\x2e\\xe6\\xd6\\x96\\x5f\\x63\\x2d\\x0c\\x45\\x64\\x20\\x3e\\x02\\xa9\\x55\\x82\\x74\\x60\\x0c\\xf7\\x0f\\x29\\xa9\\x5f\\x25\\x00\\x08\\x75\\xf4\\xd9\\xb6\\xc2\\x76\\x92\\xcc\\x7d\\x0d\\xfe\\x51\\x7c\\x77\\xd4\\xbc\\xdb\\x3f\\xb6\\xbc\\xd8\\xcf\\x4c\\x0c\\xdd\\x62\\xd0\\xea\\x15\\x7a\\x53\\xa0\\xa7\\xf4\\x8c\\x7e\\xc5\\x9f\\x14\\x70\\x9f\\xc6\\x2b\\x9f\\xb1\\xfb\\xb4\\x96\\xd7\\xeb\\xcb\\x9b\\x1b\\x93\\xba\\x2a\\x69\\xe2\\xe6\\xbf\\x01\\x7e\\x36\\xff\\xea\\x4a\\xbf\\x1e\\x3e\\x26\\xa1\\xf8\\x51\\x03\\x23\\x05\\xf6\\x34\\x24\\x89\\x86\\xbe\\xd4\\x74\\xc7\\xb4\\x6f\\x27\\xd9\\x0a\\x61\\xb4\\x8c\\xab\\xaa\\x1c\\x8d\\x56\\x73\\xf7\\x68\\x5e\\x40\\xc8\\x0a\\xf2\\x44\\xc6\\x3a\\xff\\xbe\\x49\\x70\\xce\\xed\\x13\\x88\\xe5\\xd3\\x69\\xa1\\xe4\\xd8\\xc5\\x16\\x09\\x34\\x74\\x5c\\x6a\\x3b\\xf7\\x3d\\xdf\\x6a\\xdd\\x6b\\x9f\\x5a\\xd3\\x8b\\x26\\x4c\\x8e\\x57\\x80\\x27\\x8d\\x26\\xd7\\x74\\x53\\x01\\x47\\xca\\xa2\\x53\\x3e\\x9e\\x21\\x6d\\x01\\xe4\\x64\\x1c\\x1d\\xd4\\x5a\\xe3\\x9c\\xef\\xc8\\xa4\\xdf\\x08\\xbf\\xeb\\x49\\x03\\x24\\x07\\x0e\\x2f\\xb7\\x25\\x4b\\xe4\\x08\\x70\\x81\\x32\\x60\\x9e\\xef\\xa4\\xaf\\x88\\x9f\\xe8\\xf1\\xfc\\x78\\x73\\x75\\x3c\\xf4\\x56\\xf3\\xae\\x9a\\x8b\\x70\\xca\\xa2\\x06\\xbc\\x22\\xa1\\xd6\\xe8\\x28\\xff\\x0d\\xf1\\x7d\\x23\\x4b\\xf6\\xb4\\xda\\x17\\xbf\\x90\\xb9\\x21\\xf5\\x84\\x48\\xb5\\x24\\x23\\x3d\\x46\\x84\\x74\\xe5\\x60\\x26\\x09\\x8c\\x50\\xc3\\xc2\\xe7\\xb6\\x5e\\x70\\xd7\\x02\\xcc\\xfa\\xcd\\xf0\\xd3\\x14\\xe7\\x73\\xd2\\xf1\\x96\\x63\\xd2\\x83\\x3e\\x00\\xc0\\x10\\x02\\xa7\\xd5\\xa5\\x13\\x35\\x36\\xeb\\x9b\\x2b\\xf7\\xd2\\xbf\\xe4\\x6e\\xa8\\x7d\\x62\\x9a\\x77\\x80\\x62\\x1b\\x42\\x00\\x10\\xe9\\x00\\x48\\x44\\x47\\x21\\xde\\x31\\x18\\x8c\\x5e\\x83\\x60\\x4b\\x21\\x0b\\x0d\\xc4\\x35\\xde\\xf4\\xcb\\x31\\x6c\\xae\\x6f\\xf6\\x43\\x53\\xed\\xa7\\x26\\x5e\\x0d\\xda\\x12\\x51\\x48\\x57\\xeb\\x70\\x74\\xea\\xc0\\x7f\\xf0\\xb8\\xc4\\x10\\x4a\\x3f\\xc8\\xa2\\x04\\x90\\x86\\xc7\\x69\\xb4\\x12\\x9b\\x05\\x1e\\x72\\xdb\\xe9\\xd7\\xe2\\x23\\x42\\xfe\\x1f\\x8e\\x7d\\x7f\\xfd\\x69\\x0d\\xc2\\xaf\\x33\\x9c\\x27\\x9e\\xc0\\x07\\x20\\x21\\x7a\\x8e\\x1c\\xd9\\x8f\\xd8\\x44\\x66\\xe6\\x6d\\x94\\x58\\xdd\\x7a\\x1d\\x23\\x30\\xf4\\x87\\xff\\x11\\xe4\\xda\\x90\\x02\\x0c\\xb4\\xd1\\x62\\x0e\\xf3\\xb4\\xc6\\x02\\x44\\x50\\x3c\\x29\\xb9\\x83\\x3b\\x21\\x94\\x5f\\xd7\\x80\\x2d\\x27\\xb7\\xd2\\x96\\xea\\xcd\\x41\\xd0\\x1f\\xd3\\x08\\x04\\x74\\xfe\\xba\\x1f\\x82\\x5b\\x79\\x0e\\x48\\x56\\x7e\\xc6\\xf3\\x27\\xac\\x0c\\xd1\\xa4\\x1f\\xbf\\x21\\xdc\\xea\\x8f\\x48\\x7c\\x4c\\x85\\xb7\\xa1\\xd0\\xc7\\x46\\x96\\x7b\\x5d\\xd1\\xaa\\xb3\\x68\\xb4\\x11\\x63\\x6c\\x8e\\xa1\\x36\\xd5\\xc3\\x81\\x1c\\x12\\x61\\x70\\x1a\\x57\\xcc\\x2d\\xbe\\xc0\\x65\\x6c\\xf2\\xa0\\x25\\x1d\\x6d\\x41\\xf1\\xd5\\x47\\x9e\\x63\\xa8\\x4e\\x01\\x5d\\x2d\\x02\\xf7\\xe3\\x17\\xd9\\x61\\xef\\x9c\\x75\\x5a\\x2f\\xf3\\xe8\\x5a\\x51\\x86\\x8b\\x2d\\x01\\xc4\\xf1\\xc6\\x7f\\xe4\\x4a\\x06\\x06\\x17\\x32\\xc4\\xd1\\x57\\x2f\\xab\\x98\\x4f\\x4b\\xa1\\xc9\\x6d\\x28\\x5d\\x28\\x01\\xa2\\x5c\\x59\\xd8\\xf3\\x1a\\x0c\\x02\\xed\\x9e\\x3b\\xad\\x5a\\xd5\\x24\\x51\\xb0\\xa3\\xed\\xcd\\xdc\\x97\\x9e\\xd2\\x10\\xb3\\x30\\xc5\\x68\\x09\\xb7\\xf0\\xb7\\xd8\\x3c\\xf0\\xd2\\xf8\\x0e\\xc0\\x45\\x7b\\x9f\\x34\\x1f\\x74\\xc6\\xaf\\xad\\x6e\\x2a\\x8c\\xc3\\x06\\xbd\\x56\\x7d\\x05\\xa8\\xdf\\x1c\\x1d\\x94\\x50\\x5b\\xd8\\xbc\\xed\\xad\\x0f\\x93\\x91\\x80\\x04\\x7a\\xe2\\xd6\\xa5\\x8b\\x90\\x55\\xeb\\xd3\\x28\\x63\\x4a\\xa0\\xa2\\xd2\\x7b\\x1d\\x13\\x90\\x53\\xcd\\xac\\xc9\\x59\\x60\\x1e\\xdb\\x0e\\x59\\x3e\\xc7\\x39\\x32\\x08\\xcf\\xe8\\x05\\x36\\x5a\\x3d\\x61\\x59\\x93\\xbe\\x01\\x8f\\x38\\x09\\xf7\\x06\\xe6\\xa1\\x32\\x51\\x28\\x32\\xee\\x31\\x94\\x80\\x44\\x15\\x49\\xca\\x59\\x07\\x79\\x7a\\xa2\\x8f\\xc1\\x20\\x1b\\x07\\x81\\x5d\\xde\\x89\\x8c\\xbc\\x6b\\x62\\x63\\x15\\xef\\x64\\x45\\x03\\xd9\\x2a\\x48\\x3b\\x21\\x0e\\x89\\x76\\x07\\xe8\\x94\\xaa\\xa5\\x7f\\x48\\x5e\\xcf\\x8a\\x91\\x2c\\x60\\x34\\x33\\xb7\\x49\\xb8\\x68\\x22\\x10\\xe2\\x68\\x42\\xf4\\xe5\\xca\\x66\\x07\\xa0\\x5e\\xe9\\x2a\\x09\\xcf\\xb4\\xcd\\x76\\x39\\x10\\xdb\\x04\\x52\\x4a\\x89\\x41\\xb0\\x45\\xf9\\x17\\xcf\\xdb\\xfe\\xe3\\xb0\\xae\\xfb\\x04\\x05\\x1e\\x14\\xac\\xd0\\x08\\x05\\xa9\\x39\\x08\\x17\\x10\\xea\\x02\\xb6\\x6e\\x97\\xe9\\x4a\\xf0\\xfc\\x2a\\x7c\\x0a\\xc6\\xd6\\x95\\xb0\\xa4\\xb8\\xa1\\x97\\x1b\\x99\\x5f\\xb0\\x1e\\x29\\x45\\xa2\\xf4\\x83\\xeb\\xf9\\x50\\x1b\\xb0\\x6a\\xaf\\x1e\\x08\\x49\\x4b\\xad\\x2d\\xf7\\x4e\\x7c\\xbc\\xbf\\xbb\\xbd\\x3c\\x69\\x7e\\x6c\\x05\\xee\\x66\\x28\\x00\\xbf\\xc1\\xc1\\x80\\x15\\xed\\xf0\\xb4\\x43\\xf1\\x09\\x05\\x1c\\xa6\\xb9\\x23\\xed\\x1f\\x84\\x99\\xe0\\x79\\x24\\x3b\\x0a\\x32\\x75\\xca\\xcd\\x52\\xec\\x4d\\xed\\x3a\\xde\\x50\\x06\\xfa\\x33\\x01\\x7c\\x2c\\xed\\xa4\\x65\\x36\\x39\\x2b\\xa1\\x27\\x0d\\x55\\xc2\\x9b\\xd6\\x51\\x1d\\x64\\xc1\\x7e\\xd4\\xad\\x98\\xa5\\xc8\\x9c\\x84\\x5a\\x02\\x08\\xdb\\xbb\\xb5\\x53\\xda\\x52\\x2f\\xef\\xe3\\x80\\x18\\x7a\\x28\\xad\\xd6\\x9c\\xea\\xc4\\x4c\\x0b\\xae\\xa6\\x03\\x9e\\x03\\x1e\\xb5\\x38\\xbf\\x6d\\x3e\\x22\\x11\\xac\\x47\\xa4\\x7e\\x44\\x62\\x07\\x45\\x84\\x76\\xc3\\x21\\xb1\\x6c\\x0b\\x3b\\x09\\xb0\\x52\\xda\\x02\\x9c\\xcb\\xeb\\x68\\x01\\x93\\x8c\\x2d\\x7e\\x0f\\x1d\\x92\\x97\\xdd\\x20\\xbc\\x10\\x2f\\xd4\\x8b\\xf4\\xa2\\xbc\\xc4\\x5e\\xd2\\x6e\\x87\\xd3\\x16\\xa4\\x08\\xae\\x01\\xff\\x8a\\xb7\\xca\\x4f\\x5d\\x65\\xed\\x8c\\x24\\xf3\\xf9\\xb0\\xce\\x50\\x8b\\x45\\x19\\x47\\x88\\x0c\\xe6\\x80\\x54\\x55\\x0c\\x2e\\x4b\\x9c\\x62\\xd9\\xe8\\x3d\\xdf\\xee\\xf4\\xfe\\xf6\\xf4\\xee\\xe2\\x5d\\x3c\\x17\\x38\\x3b\\xef\\x37\\x42\\xa8\\x57\\xce\\x2f\\xd3\\xed\\xf6\\x3d\\x4e\\xaf\\x88\\xb0\\x36\\xfc\\xe0\\x29\\x47\\xa0\\xe1\\x36\\xa6\\x43\\xa3\\x46\\x31\\xbc\\x2c\\x11\\x59\\x53\\xd8\\xca\\xa1\\x46\\xac\\xea\\x4f\\x47\\xc9\\x03\\x18\\x99\\x1e\\x1c\\xb4\\x4d\\x60\\xe7\\xba\\x6c\\x96\\x89\\x2f\\x40\\xde\\xd7\\x16\\x98\\x4e\\xa6\\xfc\\x19\\x11\\x0c\\x9f\\xd7\\x50\\x10\\x6f\\x53\\x88\\x2d\\x1b\\x01\\xa1\\x32\\xf9\\x19\\x88\\xee\\xdc\\x67\\xa9\\x12\\xeb\\x39\\x03\\x4f\\x79\\xd8\\xee\\xd7\\xc2\\xf3\\x9d\\x01\\x05\\x16\\x46\\x6c\\xb5\\xc8\\x7b\\x6d\\xe0\\x21\\x33\\xfa\\x51\\x4e\\x5b\\x75\\x2c\\xcc\\xc0\\x6d\\x1a\\x4c\\x88\\xea\\x98\\x27\\xc9\\x89\\x6d\\x23\\xb6\\xd0\\xe5\\xa8\\x07\\x27\\x9d\\x6e\\x13\\xeb\\x90\\xe0\\xaa\\x13\\xb7\\x41\\x7d\\xbd\\x63\\xbb\\x61\\x69\\x5a\\xb6\\xe7\\x37\\x9f\\x21\\x3d\\x38\\x54\\xbb\\x7a\\x17\\x49\\x0a\\xeb\\x19\\x3b\\x9c\\x76\\x94\\xc8\\x1e\\xd5\\x30\\x5d\\xe0\\xe3\\x7a\\x5b\\x04\\xa3\\x6c\\x30\\x00\\xd2\\x69\\xc8\\x23\\xe3\\xac\\xaf\\xb8\\x2c\\x64\\x17\\x66\\x0c\\xc0\\x9c\\x25\\x56\\xf5\\x7c\\x14\\x4f\\xe2\\x83\\x4f\\x9c\\x79\\x9b\\x88\\xe9\\x02\\xbb\\xd7\\x00\\x70\\xac\\x5b\\x12\\x17\\x27\\x03\\x2a\\xad\\x8a\\xdc\\x8b\\xeb\\xd3\\x44\\x89\\x6c\\xba\\xe6\\xfe\\x19\\x0f\\x45\\x02\\x53\\x04\\x53\\x1b\\x7d\\x93\\x08\\xd4\\x7d\\xb5\\xbd\\x61\\x7a\\x89\\x9a\\xf4\\x09\\x02\\xa3\\xd8\\x9a\\x77\\x8b\\x46\\x38\\x29\\x6a\\x3e\\x6a\\xe5\\x37\\x5a\\x99\\xf6\\x33\\x8a\\xe2\\x47\\x82\\x60\\x34\\x3f\\xfe\\x01\\xd6\\x8a\\xa6\\x78\\xa9\\x8d\\x23\\x23\\x5b\\xeb\\xcd\\x5e\\x90\\x85\\x35\\xd7\\xcc\\xf7\\xb7\\x68\\x61\\x3c\\xd5\\xa0\\x82\\x6c\\x42\\x4a\\xad\\x80\\x38\\xc7\\x63\\x14\\x21\\xef\\xeb\\xff\\x91\\xf3\\x88\\xf8\\x72\\x5c\\xc2\\xd9\\xdb\\x32\\x27\\xca\\x29\\x8b\\xa1\\xd0\\x2f\\x1d\\xad\\x78\\x13\\x42\\xa1\\x03\\xd1\\x7d\\x76\\xee\\x05\\xc7\\xa6\\x64\\x35\\xb4\\xa9\\x88\\xd8\\x54\\x3e\\x4b\\x07\\xb4\\xff\\x49\\x10\\x9a\\xf0\\x7e\\x0c\\x28\\x28\\xd4\\x02\\xb8\\x38\\x34\\x64\\x8a\\x32\\xec\\x2c\\xb1\\x99\\x1c\\x86\\x3e\\xb7\\x16\\x39\\x4e\\xcb\\x5a\\xad\\xb2\\x92\\x6f\\x34\\xe0\\x63\\x89\\x85\\xa8\\x17\\x5a\\x9e\\x52\\x8e\\x3c\\x85\\x1d\\x29\\x5c\\xa2\\x86\\x71\\x3b\\x8b\\x42\\x73\\xfa\\xa6\\xd1\\x2e\\x5c\\x73\\x09\\x47\\x90\\x22\\x93\\x6d\\x80\\x96\\x69\\xbb\\x65\\x3e\\x0c\\xdd\\xe0\\x7e\\x64\\xb3\\x7d\\x23\\xb0\\x02\\x83\\xee\\x9a\\x19\\xd1\\x4e\\x57\\x69\\xb2\\x8a\\x6a\\x1f\\xf5\\x6b\\x9c\\xc8\\x71\\x2c\\xd3\\x27\\xb0\\xb8\\x0c\\x68\\xe7\\xb6\\xdc\\x08\\xe7\\x42\\x24\\x96\\x1d\\xe5\\x83\\xbc\\x12\\x91\\xff\\x94\\x88\\x43\\xfb\\x5c\\x72\\x8f\\xfd\\xe0\\xce\\x08\\xe4\\x75\\xba\\x91\\xbc\\x16\\xeb\\x0c\\xb0\\x80\\xf1\\x6f\\x9a\\x6f\\xc0\\x8f\\xce\\x14\\x3b\\xa1\\x8c\\x95\\x7d\\x4c\\x61\\xb5\\x0c\\xf4\\x0d\\xbe\\xa3\\x5c\\x38\\x0f\\x3a\\x13\\x9d\\x58\\x6d\\x99\\x24\\x71\\x79\\x50\\x26\\xfe\\x19\\x4a\\xd2\\x3e\\x93\\xae\\x50\\x02\\x62\\x95\\xe8\\x57\\xf0\\x89\\x98\\x86\\xdb\\x25\\xdc\\x5b\\xa7\\xe9\\x57\\x8d\\xc0\\x1b\\x2e\\x8d\\x57\\xb6\\x26\\x15\\xae\\xa6\\xcd\\x66\\x41\\x28\\xa9\\xd2\\xe8\\xf2\\x11\\xfe\\xe5\\x21\\x74\\x3a\\x74\\x4f\\x7e\\xd2\\x40\\xbc\\x84\\x4b\\xad\\x23\\x91\\x6b\\x0d\\x89\\xce\\x10\\x07\\x02\\xc6\\x54\\xc0\\x54\\xa7\\x45\\xf4\\x79\\x44\\x3f\\xb3\\x2b\\x85\\x0e\\x32\\xa5\\xa4\\xe0\\x20\\x56\\x8a\\x2e\\xfc\\xc1\\x42\\x1b\\x59\\x14\\x3f\\x68\\x55\\x60\\xcc\\xb6\\x9a\\x7e\\x43\\xa8\\x2a\\x5a\\x5f\\xae\\x68\\xb5\\x58\\xd4\\xab\\x55\\x7b\\x18\\xd5\\x28\\x92\\x71\\xeb\\xec\\xef\\x76\\x06\\x56\\xb1\\x74\\xff\\x92\\x0c\\xc7\\xc8\\x50\\x85\\x3e\\xc0\\xb3\\x88\\xce\\xf4\\xcf\\xf4\\x2d\\xdd\\xd3\\xc2\\x17\\xe3\\x5c\\xbc\\x1f\\x05\\x7a\\x73\\xa9\\x76\\x3d\\x86\\xcb\\x7c\\x40\\x60\\x88\\x03\\x05\\x20\\x9d\\x13\\x61\\x05\\x0c\\xbe\\x3e\\xdc\\x40\\x5c\\x83\\x4c\\x93\\x55\\x05\\x3e\\x53\\x7b\\x2d\\xc8\\xec\\x1a\\xa5\\xb8\\x71\\xbc\\xd4\\x22\\xc6\\x0d\\x47\\x42\\x70\\xaf\\x9f\\xd2\\x91\\x56\\x83\\x54\\x7c\\xbd\\x3e\\xa8\\x9a\\x9a\\x20\\xc6\\xc4\\x88\\x34\\xb1\\x4f\\x73\\x19\\x18\\xb5\\x07\\xb0\\x18\\xbd\\x10\\xb2\\x0f\\xc9\\x69\\x6f\\x3a\\x56\\x82\\xaf\\x57\\x9b\\x4e\\xc3\\x5f\\xaa\\x5a\\x6b\\xda\\x32\\x2f\\xa8\\xaf\\xbc\\x87\\x84\\x10\\xf0\\xe7\\x53\\x92\\xba\\x31\\x81\\xeb\\x22\\x2e\\x60\\xa3\\x63\\x67\\x84\\xd3\\x2e\\x6c\\x48\\x18\\xba\\x8d\\xb0\\xd9\\x46\\xb8\\xc5\\xd0\\x8d\\x49\\x38\\xb5\\xd6\\x0d\\xd5\\x21\\xe8\\x4b\\xd1\\xa3\\x63\\x53\\xa7\\xc9\\x66\\x29\\x03\\x7b\\x3c\\x1f\\x65\\x9f\\xec\\x92\\x2a\\x5e\\xd2\\x47\\x8f\\x4f\\x6a\\x19\\xdc\\x7a\\xb6\\xb0\\x67\\x0c\\xe8\\xe1\\xea\\xcd\\x06\\x6c\\xf5\\x70\\xf1\\xf4\\x91\\x03\\x12\\x80\\xaf\\x54\\xc0\\x1b\\x83\\x71\\x44\\x89\\x9f\\x1b\\x6f\\x5f\\x85\\x93\\xcb\\xee\\x74\\xca\\x20\\x6b\\x47\\x2d\\xcc\\xab\\x7d\\x67\\x58\\x96\\x5f\\xcb\\x02\\x12\\x75\\xa4\\xe2\\xa8\\x6d\\x3d\\xdd\\x50\\xc8\\x00\\x13\\x6d\\x38\\xd2\\x2c\\x02\\xf5\\xea\\x7d\\x70\\x92\\x37\\xe3\\xea\\x7c\\xb2\\xbd\\x14\\x56\\x94\\x51\\x6f\\x1c\\x96\\xf4\\x30\\xef\\x33\\x10\\x91\\xf0\\x41\\x73\\xa0\\x7c\\xc8\\x97\\x28\\x50\\x8a\\xf6\\x84\\x48\\xb3\\xe4\\x90\\x88\\xeb\\xd3\\x14\\xb8\\x0c\\x87\\xc1\\x2e\\x37\\xe3\\xcc\\x9f\\xfc\\xea\\xa2\\x48\\x82\\x72\\x81\\x50\\x76\\x9c\\x38\\x8d\\x10\\xa0\\xf0\\x6b\\x0f\\xec\\x39\\x36\\xfc\\x7e\\xcb\\x70\\x26\\x25\\x81\\xc4\\x4a\\x01\\xbc\\x93\\x91\\x87\\x35\\x37\\x43\\x3d\\x53\\x54\\x2f\\xc8\\x84\\x42\\xfd\\x2c\\x03\\x58\\xc7\\xc0\\x96\\x6a\\xc5\\xa9\\x96\\x25\\x9a\\xac\\x57\\x3c\\xf5\\x49\\x3a\\x00\\x80\\x02\\xf3\\xba\\x6f\\x70\\xa9\\xcb\\xda\\xd0\\xc1\\x56\\x63\\x07\\xdf\\x9e\\x8a\\xdf\\x9a\\x61\\xf4\\x88\\x4c\\xf1\\x75\\xf6\\x3f\\x64\\x27\\xbc\\xdc\\xee\\x7b\\x23\\x8b\\x0b\\x81\\x5f\\x9b\\x0a\\x82\\xa6\\xb0\\x80\\x42\\xad\\x50\\x04\\x93\\x52\\x5d\\xee\\xb2\\x18\\x2d\\xe2\\x09\\x3e\\xb1\\xc3\\x03\\xe1\\x18\\xa9\\xaa\\xc1\\x5f\\x25\\xbe\\x80\\x9a\\xb7\\x81\\xb6\\xb5\\x3d\\xe9\\xd3\\x04\\x94\\x3a\\xb5\\x5a\\x2f\\xf2\\x0f\\xf1\\x9a\\x76\\xef\\x86\\x08\\x0e\\xfa\\x8a\\x45\\x77\\x5e\\x3b\\x28\\xf1\\x97\\x4a\\x10\\x0d\\x85\\x2a\\x28\\xbb\\x1d\\x0b\\xc5\\x5f\\x0a\\xc1\\x79\\x9e\\x8c\\xa4\\x55\\x6c\\x2d\\x5e\\x54\\x5c\\x23\\x45\\x5d\\x05\\x5c\\xf1\\xe1\\x4f\\x58\\xbc\\x2a\\xfd\\x04\\x35\\x6a\\xbd\\xf6\\x9b\\xfb\\x07\\x77\\xdf\\xde\\xa8\\x16\\x5b\\xd8\\xe9\\x15\\x17\\xa1\\x0a\\x1d\\xcb\\xa6\\xac\\x94\\x3b\\x60\\x2d\\x18\\xf9\\x84\\xa5\\xa3\\xb0\\xb2\\x1b\\xe1\\x2a\\x0a\\x6c\\x33\\x0d\\x95\\x50\\x97\\x08\\x64\\x07\\x87\\x08\\x98\\x32\\xc4\\x74\\xe5\\x33\\xb6\\x88\\x0b\\xaa\\x59\\x10\\xa3\\x1e\\x2c\\xd5\\x9f\\xb1\\x42\\x9b\\xe4\\x52\\xd2\\x59\\xed\\x58\\x8d\\x29\\x39\\x7a\\xc9\\x61\\xfd\\x31\\x99\\x3f\\x89\\xa6\\x96\\xff\\x48\\x9f\\x23\\xd4\\x90\\x21\\x7e\\x5f\\xbd\\x05\\x65\\x8e\\x18\\x78\\xfa\\xaf\\x1e\\xb7\\x1f\\xd8\\x52\\x8d\\x92\\x13\\x5f\\x5b\\x03\\xf9\\x74\\x0b\\x93\\xcd\\x88\\x40\\x5f\\x6d\\x6b\\x5e\\xc2\\x54\\x57\\xd5\\x20\\xc8\\x6b\\x36\\xd5\\x50\\x24\\xe4\\xf7\\xba\\x67\\x11\\x67\\x00\\x2f\\xc4\\x0b\\xf5\\x22\\xbd\\x28\\x2f\\xb1\\x97\\xb4\\xdb\\x01\\xa0\\x03\\x82\\x6f\\x8b\\x5c\\x89\\x9e\\x08\\x5e\\x1d\\x99\\xa0\\x69\\x34\\x61\\xd8\\xd4\\x3a\\x04\\xe0\\xfa\\x14\\x8a\\xff\\x53\\xa7\\xa2\\x3a\\x87\\xd1\\x01\\x82\\x7a\\x2a\\x27\\xa7\\x1a\\x45\\xe0\\x04\\xfa\\xda\\x99\\xb6\\x77\\x57\\x3a\\xf3\\x55\\x07\\x01\\x57\\xf7\\xc7\\x4e\\x0c\\xab\\x84\\x1f\\x6d\\xc6\\xd7\\xcd\\xa8\\x48\\x38\\xe9\\x70\\x92\\x47\\xf0\\xeb\\x7c\\x91\\x1d\\x25\\xe6\\xf9\\x68\\xf2\\x19\\x66\\x79\\x4d\\x9c\\x01\\x3e\\xf3\\x01\\x7a\\xda\\x2e\\x51\\xc4\\x32\\x1e\\x10\\x97\\xff\\xe5\\xbf\\x87\\x89\\x81\\xe2\\xaf\\xcd\\x5f\\x4b\\x04\\x3b\\xd8\\x85\\x2f\\xb6\\xe9\\xc0\\xdf\\x35\\x38\\x2c\\xfe\\x22\\xa1\\x50\\x65\\xfc\\x37\\x4f\\xc6\\x8f\\xf8\\x11\\x5c\\x89\\x9f\\x24\\xb5\\x58\\x30\\x4c\\xd1\\x23\\x2a\\xac\\x84\\x86\\xea\\x99\\x28\\x56\\x3d\\x0a\\x72\\x13\\xa0\\xa0\\xdf\\x68\\xe7\\x35\\x03\\x13\\xcd\\xf3\\xb3\\x36\\x4a\\x97\\xc1\\x9e\\x51\\x56\\x91\\x3d\\x07\\x2c\\x15\\x71\\xbb\\xc3\\xb6\\xa0\\xc3\\xce\\xe0\\x4b\\xee\\xa2\\xcf\\xe3\\x75\\x81\\x05\\x90\\xd7\\x5a\\x4e\\x50\\xe8\\x93\\xdf\\xa1\\xaf\\x36\\x15\\x3e\\x19\\x4e\\xf1\\x8d\\x37\\x6d\\x32\\xaf\\x00\\xcf\\xda\\x54\\xd9\\xde\\xe3\\x63\\x56\\xd6\\xc9\\x80\\xeb\\xea\\x23\\xc7\\x70\\xc4\\x40\\x40\\x39\\x07\\xcb\\x15\\x09\\x50\\xb8\\x6a\\xa0\\xd6\\x0d\\x64\\x9c\\x06\\x6b\\x5a\\x2b\\xae\\x9e\\xa7\\x77\\x3c\\x75\\x89\\xfb\\x1d\\x64\\xad\\x05\\x36\\x51\\x5e\\x49\\xba\\xd1\\x35\\x45\\x24\\x9b\\x03\\xa1\\x30\\x0e\\x21\\x65\\x84\\x48\\x60\\x9e\\x93\\x26\\xf4\\xf7\\x97\\x8d\\x2d\\x32\\x43\\x26\\x37\\xf1\\x97\\xf9\\x53\\x28\\x1e\\x5f\\x5c\\xab\\x5e\\x3e\\xca\\x86\\xca\\x5a\\x62\\x32\\xd7\\x98\\xa1\\x4d\\x96\\x4a\\x65\\xa8\\x4f\\x32\\x8b\\x95\\x25\\xc2\\x32\\xfc\\x42\\x55\\x85\\x95\\x2c\\x2b\\x2f\\xbf\\x5a\\x5f\\x4e\\xd6\\x8f\\x48\\x5f\\x7f\\x7d\\xf2\\x74\\xfa\\xb4\\xb7\\xbb\\xfa\\xb4\\xfe\\x34\\xd8\\xed\\x06\\xd3\\x96\\x79\\x1c\\x49\\x0e\\xe1\\x54\\xf0\\x19\\x1f\\x27\\x3c\\x41\\xd3\\x4e\\x1f\\x19\\xd9\\x2e\\xf3\\xb6\\x2a\\xb5\\x69\\x4f\\x77\\xc1\\x2b\\x08\\x19\\x35\\x40\\x6c\\x79\\x77\\x37\\xa7\\x83\\x73\\x0d\\x4c\\xad\\x4b\\xb6\\x3c\\x2b\\x68\\xa2\\x27\\x11\\x7e\\x8a\\x75\\xa7\\x3d\\xbe\\xce\\x73\\xde\\x05\\x55\\xe3\\x23\\x2f\\x2b\\x5d\\x8e\\x97\\xcf\\x4d\\x3d\\x4e\\xdf\\x5e\\x61\\xbb\\x09\\xdc\\xba\\x5f\\x76\\x0e\\x92\\x56\\x7c\\x34\\x5e\\x0c\\x1e\\x6e\\x59\\x2f\\x8d\\xdf\\x7d\\x5a\\xc3\\x4d\\xf6\\xb8\\x8f\\xc8\\xb4\\x56\\x2a\\x6c\\x7f\\x9d\\xb7\\x1f\\xfa\\x12\\x36\\x42\\x9c\\x80\\x3d\\x17\\xa6\\x89\\xf5\\x29\\x50\\xb7\\x5c\\xed\\x71\\x6e\\x3a\\x43\\xcf\\xba\\x06\\x4f\\x45\\x75\\x93\\xf4\\x26\\x5b\\x04\\x83\\x1e\\x23\\xba\\x8a\\x32\\x20\\x4a\\x9b\\xd5\\xbc\\x13\\xa8\\x8e\\x6d\\x22\\xbe\\xcf\\x10\\x79\\x31\\x37\\x48\\xee\\xae\\x73\\x1a\\xa5\\xc4\\xbb\\x4a\\x95\\xc9\\xa4\\x5e\\x55\\xa8\\xeb\\xe3\\x92\\xe0\\x05\\x73\\xc8\\x49\\x9c\\x88\\x71\\xc8\\xa1\\xfe\\x1a\\xb7\\xd7\\xfd\\x25\\xdc\\x69\\x78\\x83\\xb2\\x30\\xdd\\xa4\\xdd\\x09\\xfb\\x76\\x7f\\x44\\x63\\x0d\\x1f\\xe8\\x46\\x51\\xc1\\xb0\\xe6\\xc4\\x80\\xaf\\xe8\\xb5\\x38\\x65\\x35\\x81\\x38\\x40\\x99\\x21\\x00\\x09\\x37\\xef\\x60\\x00\\x07\\x8f\\x08\\x15\\x63\\x33\\x20\\x42\\x3a\\x0e\\x01\\xc2\\x09\\x0f\\x2f\\xf0\\xa3\\x11\\x67\\x23\\xa9\\x7e\\x7a\\x4d\\xd0\\x5a\\x13\\xea\\x47\\x58\\x76\\x12\\x07\\xb0\\x09\\x63\\x1d\\x14\\x61\\xcd\\x54\\xe5\\xcc\\x3a\\xc3\\xdc\\x2e\\xbf\\xb5\\x5d\\x42\\x20\\x78\\x0a\\xef\\xb3\\x29\\xc9\\xce\\x59\\x1e\\xe1\\x50\\x04\\xbd\\xa0\\xfe\\xc8\\x62\\x82\\xdb\\x69\\x3c\\x10\\xfb\\xf7\\x3b\\x62\\x66\\xac\\x6d\\x67\\xa8\\x5a\\xe1\\xaf\\x12\\x85\\xd8\\x4e\\x1a\\xf0\\x27\\xde\\xe0\\x17\\xae\\xee\\x89\\x2f\\xc6\\xae\\xce\\x96\\x62\\x6a\\xec\\xe9\\x53\\x23\\x6d\\xe1\\x71\\x49\\x75\\x95\\x22\\x8b\\x6a\\x4f\\x93\\x4e\\x95\\x69\\x20\\x8a\\x07\\xbf\\x13\\xb6\\x85\\x83\\xeb\\x1d\\x1e\\xfe\\x21\\x08\\x32\\xfd\\xa1\\x18\\x44\\x5a\\xc0\\x53\\x9b\\x8f\\x1c\\xec\\x0e\\x47\\xe8\\xa7\\xaa\\xbc\\x65\\xe3\\x0b\\xc8\\x7b\\x59\\x5b\\x65\\xfb\\x62\\xcf\\x15\\x77\\xf4\\x0d\\xe1\\xde\\x39\\xeb\\x3e\\x41\\xc1\\x4d\\x5c\\xf7\\xae\\x71\\x98\\xb5\\x24\\x03\\x59\\xa5\\xf6\\x2f\\x42\\x0c\\xf9\\x98\\xf9\\xca\\x60\\xd4\\x1c\\xf3\\x6e\\xef\\xec\\x64\\xef\\x6a\\xff\\x6a\\x64\\xc8\\x58\\x23\\xb4\\x8e\\xe3\\xed\\x48\\x52\\x88\\x09\\x45\\xb5\\x00\\x11\\x38\\x8c\\x58\\x7a\\x47\\xf8\\x15\\x22\\xeb\\x58\\xcd\\x50\\xc5\\x6d\\x22\\x37\\x28\\x4c\\x48\\x39\\xe3\\xe6\\x1c\\xd0\\xee\\x01\\x74\\xe7\\xb0\\x08\\xa1\\x1e\\x40\\xa4\\x04\\x30\\x6b\\x04\\xaa\\x89\\x9e\\xda\\xc7\\x79\\x8b\\x60\\x9c\\xb2\\xe3\\x89\\x0e\\xad\\x43\\x6b\\x53\\x30\\x99\\x5f\\xeb\\x13\\xb9\\xf1\\xcf\\xe1\\x20\\x0e\\xdd\\xbb\\x89\\xbe\\xe5\\x71\\x5c\\xa4\\x19\\x4b\\x17\\x82\\xeb\\x61\\xc6\\x36\\xe0\\x66\\x36\\x9b\\x9d\\xd0\\xb4\\x93\\x7b\\x02\\x8d\\xad\\xcd\\xa6\\x49\\x4c\\x30\\xb6\\x91\\x02\\x50\\xe2\\x76\\xf3\\x35\\x07\\x61\\xa8\\x3c\\x8d\\x27\\x8f\\x2e\\xa6\\xee\\x26\\x72\\x08\\x05\\x84\\x62\\xad\\x31\\x11\\x01\\xc9\\x41\\x03\\x42\\xa5\\x73\\x98\\xb0\\x7d\\xb1\\x06\\x51\\x93\\xf4\\x4f\\x0b\\x11\\x19\\xca\\x57\\xf5\\x3e\\x43\\xc2\\x8a\\xe2\\x5f\\xd0\\x47\\xfd\\x59\\x07\\x9b\\x44\\xb7\\x31\\x05\\x74\\x6f\\xb8\\xa2\\x87\\x29\\x7b\\x3e\\x96\\xe0\\x25\\xb8\\x42\\x69\\x88\\x65\\x23\\xcb\\x3a\\x0c\\x62\\x2b\\x3c\\x49\\xe7\\xa4\\xe7\\x30\\xe9\\x11\\x40\\x71\\xa2\\x04\\x47\\x4e\\x53\\x21\\x36\\x09\\x87\\x15\\x5b\\x75\\xc2\\x86\\x0f\\x05\\x2e\\x24\\xbe\\xe7\\x7a\\x72\\x46\\x15\\x3a\\x36\\x94\\x9b\\x30\\xff\\xe2\\xca\\x87\\x70\\xcf\\xea\\x4a\\xfc\\x36\\xed\\xec\\x1a\\x91\\x41\\x6a\\x9c\\x8b\\x50\\x44\\x73\\xb9\\x8c\\xb4\\xba\\x04\\xa6\\x4b\\x88\\x6a\\xa7\\x62\\xaf\\x1a\\x28\\x9a\\x2d\\x92\\x88\\xf2\\xda\\x21\\xdf\\x45\\xf7\\x57\\x31\\x09\\xc7\\xdf\\xda\\xaf\\xa7\\x24\\xd4\\xe9\\x68\\x6b\\xcd\\x85\\x34\\xc5\\x49\\xa5\\x0e\\xcf\\x26\\x1c\\x01\\x4c\\xc3\\x86\\x0d\\x75\\xa8\\x68\\xa4\\x9e\\x97\\x19\\x47\\x06\\x49\\x9d\\x1e\\xb7\\xc4\\xaf\\x95\\x74\\xa5\\x4b\\xbf\\xc6\\x69\\x00\\x08\\x0f\\xa9\\x71\\xfc\\x25\\xf9\\x6d\\x49\\xb3\\x8d\\x5c\\xbb\\x96\\x19\\x40\\x62\\x42\\xde\\xa4\\xa4\\xd3\\x18\\xec\\xcb\\xfe\\x14\\x29\\x12\\x2a\\xaf\\x52\\xb1\\xb1\\x11\\x32\\x58\\x1a\\x77\\x88\\x8f\\x29\\x3f\\x2a\\x3e\\x16\\xf8\\xa5\\xc7\\xb7\\x42\\x0f\\x21\\x06\\x83\\xe3\\x54\\xad\\x34\\xd2\\x6e\\x1e\\xe3\\x33\\xdf\\x02\\x1a\\x90\\x41\\xa1\\x1e\\x19\\x91\\x8f\\xcd\\x34\\x7c\\x6b\\xe0\\x58\\x04\\xb6\\x80\\xa3\\xa6\\x34\\x4a\\xd8\\x4f\\x15\\x66\\x00\\x18\\x9a\\x53\\xf9\\x95\\xb6\\x3b\\x81\\x1b\\x7b\\x49\\x27\\xa7\\xd8\\xd8\\x97\\x93\\x80\\x8f\\x5c\\x06\\xd8\\x14\\x81\\x44\\xc4\\x5a\\x4c\\x1f\\xb3\\x31\\xae\\x80\\xe4\\xc9\\x16\\x11\\xf0\\x86\\x23\\xf2\\x06\\x1a\\xfe\\x1c\\xe1\\x63\\x64\\xdc\\x9a\\xee\\xfd\\xa8\\x0e\\xd3\\x66\\xc2\\x60\\x41\\xc2\\x5a\\x8d\\xad\\x4b\\x32\\x5c\\x17\\xd1\\xae\\xe1\\x6e\\x87\\xaa\\x54\\x9b\\x19\\x15\\xc8\\x36\\x45\\x0c\\x79\\xe6\\xab\\x50\\x49\\xcb\\xbb\\x13\\xb2\\x91\\x13\\x6c\\x13\\x53\\x8e\\x51\\x54\\xff\\x20\\x4c\\x92\\xc1\\xbc\\x1d\\x58\\x69\\x90\\xa2\\x4e\\xaa\\x22\\xb1\\x33\\x5c\\x23\\x3d\\x1e\\x20\\x76\\x3b\\xcc\\x0a\\x1e\\x59\\x98\\xa3\\xb2\\x67\\x81\\x95\\x97\\x7a\\x46\\x58\\xab\\xb3\\x80\\xc7\\xba\\xba\\xdb\\xef\\x50\\xd6\\x27\\x63\\x4e\\x96\\x49\\xa5\\xad\\xf6\\x8f\\x6a\\xf6\\x9e\\x6b\\x00\\xb2\\x52\\x90\\x7b\\x98\\x3f\\xf2\\x5d\\x87\\xfb\\x53\\xd3\\xcc\\x80\\xff\\x2c\\x16\\x09\\xb2\\x91\\x88\\xf1\\x65\\x00\\x35\\x56\\xf1\\xf8\\x02\\xa2\\x00\\x6e\\xf4\\x56\\xc1\\x4f\\x57\\x6d\\xcc\\xbc\\xa8\\xcb\\x72\\x9d\\x69\\x4f\\xc9\\xbc\\x0a\\xb8\\x2f\\x5f\\x3e\\xa1\\xc4\\x63\\xc8\\xb0\\x1c\\x88\\x63\\xe5\\x00\\x76\\x31\\x49\\x78\\x92\\x57\\xe6\\xf3\\x74\\xcd\\xdb\\x6f\\xd4\\x79\\x30\\x40\\x72\\xc0\\x7c\\x95\\x22\\xf1\\x95\\xd9\\x9d\\x4e\\x9f\\xb2\\x27\\x21\\x94\\x66\\x69\\x9b\\x83\\x6e\\xf3\\x7d\\xab\\x3f\\x65\\x28\\xa4\\x67\\xab\\x3f\\x87\\xf1\\xe0\\x86\\xb7\\x8e\\xbe\\x87\\x78\\xd6\\x35\\xa7\\x5a\\x42\\xa3\\xeb\\xc3\\xf7\\x88\\x83\\xc3\\xd0\\xce\\xed\\x8d\\x7f\\xbb\\x3b\\xbb\\x6e\\x2a\\xab\\x27\\xb7\\xf6\\xd1\\xce\\x5c\\x51\\x61\\x4b\\xb3\\x64\\x94\\xd1\\xc4\\x3d\\x9d\\xad\\x08\\x15\\x0c\\x36\\x3e\\xa1\\xf7\\xac\\xf0\\x36\\xd8\\xcb\\x43\\xf4\\xd9\\xdf\\xe5\\x69\\x27\\x66\\x2d\\x23\\xf9\\x76\\xb9\\x2e\\xd8\\xe7\\x53\\xda\\xc2\\x91\\xb0\\x0d\\xf4\\x7b\\x6e\\x4f\\x27\\x96\\x4e\\x41\\x3e\\xd2\\x00\\x1c\\xd6\\xaa\\x6e\\x44\\xb1\\xf7\\x13\\x45\\x66\\x38\\x7d\\x27\\x1d\\xc4\\xdf\\x67\\x7b\\x5c\\x9c\\x64\\x28\\x6c\\x73\\x63\\x08\\x2c\\xe6\\x3c\\x83\\xf1\\x7a\\xab\\xa7\\x6d\\xfc\\xdf\\x87\\x6b\\x58\\x75\\x9e\\xee\\x12\\x90\\xb9\\xfa\\xaa\\xd4\\x76\\xb9\\x1e\\xfd\\x4c\\xf1\\xb9\\x9f\\xeb\\xf2\\x6e\\x2c\\x02\\x79\\xf9\\xde\\xec\\x75\\xf7\\x6a\\xcf\\x32\\x79\\x63\\x82\\x27\\x13\\x8d\\xb6\\x45\\x49\\xb6\\xef\\x25\\xe6\\xd2\\x74\\xb6\\xf0\\x0f\\x5f\\xf3\\xb6\\xfb\\xca\\xaa\\x50\\x8f\\xef\\xb0\\x1b\\xd5\\xce\\x44\\xcb\\xf0\\x7b\\xec\\x16\\x01\\x22\\x80\\x41\\x24\\x06\\x92\\x32\\x59\\x77\\x5e\\x02\\x12\\x88\\x67\\xba\\x7d\\xb7\\xf6\\x6d\\xb4\\x6d\\x0f\\xb7\\x9d\\x6c\\x3b\\xdd\\x76\\xbe\\xed\\x72\\xdb\\xd5\\xb6\\xc7\\xb0\\x4c\\xcb\\x14\\x04\\xd9\\x7e\\xbc\\xa7\\x30\\x0e\\x85\\xc1\\x26\\x0a\\x6a\\x9e\\x4b\\xf6\\x1a\\x23\\xbe\\x8d\\xfb\\xe3\\xe2\\x4e\\x92\\x49\\xb3\\x88\\xc9\\xbc\\x2b\\xc9\\x3e\\xaa\\xc7\\xd3\\xe6\\xfb\\xd8\\x96\\x10\\xa2\\x7e\\x65\\x57\\x2b\\x68\\xbc\\x81\\x70\\xdd\\x8c\\xdb\\x6c\\xaa\\xdb\\x45\\xcd\\x24\\x6e\\xbb\\x1a\\x7e\\x2a\\x73\\xcd\\x47\\x9e\\x61\\x5c\\x80\\xf4\\x41\\x9a\\x83\\xa9\\x59\\x2f\\x0e\\x85\\x73\\x78\\x51\\xfc\\x71\\x73\\x09\\x47\\xa0\\x94\\x12\\xd0\\x68\\x7a\\x67\\xed\\xa6\\x89\\xad\\x1c\\x85\\x55\\x84\\xb7\\x2e\\x44\\xa1\\xbd\\xc7\\xb5\\x29\\x67\\xad\\x3c\\xb3\\xdd\\x74\\x4c\\x17\\x20\\x3b\\x9e\\x57\\x98\\x25\\xeb\\xe4\\x39\\x92\\x62\\x95\\xb9\\x48\\x43\\xa4\\x35\\xfe\\xea\\xf7\\x78\\xd9\\x68\\x21\\x4f\\xeb\\x95\\xb5\\xa7\\xbc\\x14\\xb7\\x97\\xdc\\x2c\\x7b\\x57\\x12\\x65\\x45\\xb1\\x30\\x0f\\xca\\xe8\\x61\\xb6\\x0c\\x42\\x55\\x03\\xd3\\x61\\xf7\\x0d\\x70\\x82\\x24\\x06\\x08\\x16\\xc7\\xe2\\x55\\x99\\x09\\xb3\\x69\\xd2\\x48\\x11\\x1e\\xec\\x58\\x10\\xaf\\x4b\\x3c\\x78\\x95\\xb6\\xe6\\x80\\x6d\\x1a\\x67\\xa7\\x46\\x27\\xd1\\x28\\x53\\xa9\\x78\\x21\\x28\\xda\\xa2\\x09\\x66\\x05\\x74\\xda\\x65\\xc0\\x16\\xe1\\x31\\xb2\\x8a\\xe3\\xf8\\xa2\\xfd\\x25\\x1a\\x85\\x96\\x35\\x18\\x31\\xba\\x92\\xd9\\xd3\\x11\\x2e\\xa1\\xcf\\x0c\\x35\\xdc\\x1c\\xb0\\xd3\\xb3\\xbd\\x55\\x2d\\xb3\\xf3\\x6e\\xda\\x8c\\x7b\\x0c\\xfe\\xde\\x43\\x8c\\x15\\x5b\\x61\\x18\\x18\\x89\\xcb\\xa9\\x71\\x12\\xd6\\xde\\x65\\x23\\xda\\x59\\xbb\\x74\\xa7\\xe8\\xba\\xbb\\x3f\\x31\\x40\\x23\\xf9\\xb8\\x77\\xdf\\x07\\x23\\xec\\xa4\\xa9\\x66\\x2b\\xec\\x77\\x8c\\xb8\\xbb\\xa6\\xe1\\x94\\x05\\x75\\x69\\x6c\\xc2\\xed\\x16\\x09\\x0b\\xa1\\xc7\\xa9\\x9b\\xdb\\x8f\\x76\\xda\\xd5\\xb2\\x0d\\x5e\\x94\\x16\\x36\\x71\\x49\\x73\\x96\\xb8\\x71\\xac\\x35\\xac\\x92\\x85\\x2d\\x8b\\x44\\xc9\\xb1\\x15\\x92\\xba\\xdd\\x49\\x90\\x39\\xa9\\x81\\x32\\x9b\\xca\\x41\\x69\\x4b\\x16\\x6d\\x8e\\x56\\xaa\\x3e\\xfa\\x72\\x12\\x0b\\xe0\\x3a\\xb6\\x4c\\x95\\x81\\xbd\\x06\\x69\\x96\\xd9\\xd2\\x69\\xb4\\x45\\xda\\xf7\\x37\\xa1\\x1b\\xbc\\x9f\\xb7\\x88\\xcf\\x0e\\x34\\x66\\x8a\\x0a\\x5b\\x14\\x7f\\xc7\\x0b\\xd0\\xeb\\x39\\xf7\\xaf\\xc5\\xfe\\x67\\x82\\xaf\\x77\\xc2\\x6f\\x30\\x73\\x93\\x8f\\x9e\\x12\\x19\\xd5\\x70\\x0c\\x82\\x28\\x6e\\x8b\\xa6\\xcd\\x75\\xff\\xfe\\x3d\\x3b\\x00\\xa7\\xd5\\x0f\\xc0\\xa3\\xc7\\x7b\\xbd\\x28\\xab\\xd2\\x5f\\x5e\\x94\\xb2\\x38\\xca\\x80\\x14\\x9d\\x27\\x62\\x6a\\x0c\\x77\\xae\\x12\\xc8\\x19\\x63\\x32\\x09\\x34\\xa9\\xb9\\xab\\x8a\\xe0\\xe8\\x31\\x72\\x63\\xc0\\xd5\\xcb\\x32\\x5a\\x34\\x71\\x15\\xa8\\x2b\\x79\\x41\\xa6\\xb7\\x90\\x53\\x4f\\xb0\\x33\\x83\\xd9\\x2c\\xe7\\xa9\\x99\\xd5\\xac\\x5c\\xd5\\x00\\x08\\xe0\\xa5\\x4f\\x47\\x10\\x07\\xca\\x1d\\xd0\\x6a\\x00\\x62\\x0e\\x03\\x59\\x16\\xaa\\xa0\\xa3\\x30\\x5e\\x53\\x6a\\x88\\x76\\x25\\x68\\x18\\x6a\\xd8\\x54\\xe8\\xca\\x9a\\xa5\\xd1\\x6a\\x51\\x75\\xc9\\x20\\xb3\\x42\\x64\\x02\\xc2\\x5c\\x42\\x19\\xde\\x37\\x22\\xed\\x75\\xdc\\x44\\x8c\\xe4\\x6b\\xa5\\x16\\x24\\xc3\\x19\\x03\\x96\\x5c\\xda\\x54\\xba\\x43\\x09\\x41\\x50\\x4f\\x6a\\xae\\x0f\\x12\\x83\\x43\\xc7\\x44\\x05\\x0c\\xdf\\xb2\\xa5\\x5d\\x99\\x53\\x2b\\x86\\xed\\xec\\xd8\\x4c\\xa4\\xa4\\x32\\x51\\x36\\xcf\\xe8\\x79\\x75\\xe6\\x86\\x60\\xeb\\x08\\x11\\x0c\\xf4\\xbe\\x44\\x1f\\x21\\x5d\\x01\\xb1\\xd1\\x0a\\x7a\\x20\\x6f\\x60\\x35\\xff\\x99\\x6d\\x79\\x3c\\x97\\x67\\xbd\\x71\\xce\\x2d\\xb0\\x98\\xa4\\xf7\\x0e\\x83\\x67\\x94\\x13\\xf9\\xea\\x4f\\xf9\\xd0\\xad\\x21\\x3b\\x0d\\xe9\\x5c\\x5b\\xfa\\xca\\xcc\\x48\\xca\\xd7\\xb8\\x04\\xe8\\x9d\\x21\\x2b\\x22\\x14\\xc9\\x0d\\xb2\\x00\\x2d\\xad\\xdf\\x4c\\x13\\xa6\\x34\\x2b\\x0d\\x37\\x98\\xb0\\x49\\x4a\\x89\\x28\\xc8\\x38\\xcb\\x2f\\x22\\x07\\x86\\x26\\xd4\\x11\\x10\\xf2\\x77\\x55\\xfc\\x4c\\x2b\\x90\\xf1\\x9a\\xc6\\xac\\xf9\\xb4\\x6b\\x88\\x5c\\x66\\x05\\x63\\x19\\xdc\\xf8\\x8c\\x0c\\x49\\x53\\xa3\\x8b\\x62\\xdb\\x38\\x4c\\x72\\x23\\x9b\\x66\\x64\\xaa\\x27\\x00\\xfa\\x35\\xf1\\x19\\xdb\\xf3\\x57\\x8a\\x62\\x44\\x35\\x31\\xa9\\x41\\x22\\xbe\\xf3\\x2d\\xd0\\x8a\\x55\\x13\\x60\\x5f\\x33\\x39\\x6b\\x15\\x01\\x92\\xc8\\x25\\x40\\x8b\\xb6\\xd7\\x32\\xe1\\x66\\x4a\\x27\\xcb\\x36\\x90\\x63\\x06\\x72\\xd0\\x64\\x70\\xb0\\xc1\\xb3\\xa6\\xef\\xef\\x24\\x52\\xb2\\xa2\\x59\\x1a\\xd5\\x3c\\x67\\xcb\\x65\\xc8\\xd0\\x0d\\x3e\\x10\\xcc\\xb4\\x95\\x0f\\xd8\\xfa\\x1b\\x89\\xdd\\x1c\\x1f\\x6c\\xdf\\xa1\\x3c\\xa9\\x1b\\xb8\\x76\\x82\\xa7\\x10\\x2c\\xe0\\x37\\xb9\\x92\\xe8\\xb1\\x19\\x5c\\x57\\x9c\\x1b\\x01\\xbb\\x62\\x72\\xd1\\xea\\x97\\xb4\\x6e\\x99\\x20\\x58\\x60\\x98\\xe8\\x13\\x60\\x71\\xf6\\x62\\xbb\\x69\\x68\\xaf\\x81\\x2d\\x35\\xc8\\xed\\x0d\\x84\\x22\\x3f\\x8b\\x8e\\x13\\x8b\\x1b\\x6e\\x3e\\x20\\xcd\\x0c\\x3d\\x20\\x50\\x4e\\x04\\xfa\\xfe\\x64\\xc6\\x64\\xa6\\xdb\\xeb\\xfc\\x3d\\x63\\x2d\\xe9\\xd3\\x8a\\x8d\\x02\\xa3\\x95\\xe4\\xc1\\x6a\\xe9\\xa3\\x1a\\xe0\\x66\\xa1\\xf1\\xa1\\xa1\\x7c\\x97\\xd6\\x06\\x58\\x3c\\x8b\\x0e\\x9c\\xe9\\x05\\x63\\x77\\xca\\x2d\\xaf\\x72\\xfa\\xb2\\xf7\\xce\\x9b\\xac\\x67\\xbc\\xe0\\x49\\xbb\\xf4\\xce\\x35\\x64\\xae\\xc1\\x13\\x5e\\x6d\\x48\\xfb\\xc7\\xd3\\x7b\\x81\\x56\\xfb\\xaa\\x10\\xb9\\xc8\\x22\\x19\\x6c\\x69\\xd3\\xe0\\xba\\xae\\x9c\\x86\\xb4\\xac\\x55\\x87\\x2b\\x9a\\x96\\x63\\x7b\\x1a\\x51\\xdf\\xe2\\x62\\x47\\x0d\\x8d\\xf5\\x30\\x59\\xb1\\x7b\\x96\\xb3\\xbe\\x7a\\xad\\x24\\x44\\x1f\\x3e\\x77\\xcb\\x45\\x3d\\x67\\xe9\\xa4\\x4d\\xdb\\xd4\\xb2\\xc3\\x14\\x06\\x41\\x28\\x31\\x92\\x3a\\x86\\xc7\\x64\\xc0\\xd8\\x3a\\x64\\xfa\\x7a\\x4d\\xe3\\x1a\\x45\\x49\\xbb\\x6b\\xa1\\xbe\\x5c\\x6b\\xd3\\xda\\xa9\\x2e\\x20\\x79\\xd7\\x3b\\x97\\x46\\xd7\\x59\\x5b\\x31\\xad\\xe9\\x6a\\xb8\\xba\\xe1\\x8a\\x9c\\x6b\\x86\\x0c\\xd4\\x85\\x85\\xdc\\xad\\x9d\\x60\\x99\\x44\\xb6\\xb0\\xe8\\x76\\xf0\\xc3\\xf7\\x71\\x4f\\x0e\\x4d\\x2d\\xd9\\x3c\\xab\\x0b\\x03\\xfe\\x71\\x97\\x6d\\xc6\\xa4\\x8f\\x6b\\x3a\\x74\\xd4\\x6b\\x38\\x3e\\xeb\\xd4\\x14\\xab\\x06\\xb6\\xa5\\x4a\\x50\\x3b\\x49\\x3f\\x1f\\x34\\x1a\\xa7\\x69\\xe4\\xa6\\x91\\x86\\x8d\\xd5\\xd4\\xb7\\x39\\xff\\x00\\x11\\x05\\x2c\\xe3\\x12\\x11\\x7f\\xb7\\x95\\xec\\xbd\\xb0\\x1b\\xef\\xbc\\xa2\\x8f\\x5b\\x6c\\x17\\xa9\\xb7\\x9d\\x5d\\x65\\xf8\\x39\\x8f\\x5b\\x9a\\xc0\\x3c\\xae\\x25\\x92\\x84\\x6d\\xda\\x42\\x93\\x6c\\xa6\\x58\\x88\\x37\\x17\\x69\\x25\\x9c\\x4d\\x34\\x1a\\xd3\\x30\\xbc\\x68\\x7c\\x46\\xc7\\xf0\\x20\\xf3\\x00\\x1e\\xe0\\x1b\\x64\\xb2\\xba\\xd2\\x41\\xd4\\x84\\x50\\x66\\x2a\\x6c\\x3b\\x12\\x9f\\x2f\\xb9\\x70\\x79\\xdd\\x87\\xa9\\xb2\\xf0\\x6b\\x78\\x5c\\xc5\\xcc\\xda\\x94\\x92\\x04\\x0b\\x82\\x24\\x5c\\xf2\\xf0\\x53\\x45\\x27\\xf6\\x70\\xb7\\x7b\\x4f\\x4f\\x20\\x3a\\xb3\\xae\\x5b\\xb8\\x4b\\x9e\\xed\\x00\\x25\\x32\\x3c\\x47\\x58\\x50\\xb8\\x91\\xe6\\x73\\x7f\\x96\\xbe\\x4a\\x7a\\x76\\x5c\\x52\\x20\\xdd\\x25\\x95\\x4f\\x51\\xd1\\xa7\\x9b\\x26\\x7b\\x3a\\x0d\\x34\\x8d\\x72\\xe6\\xcb\\xce\\xe0\\x44\\x27\\x64\\x2e\\xdf\\xe1\\x7b\\xba\\x36\\xc5\\x84\\x99\\xde\\x61\\x07\\xe7\\xb4\\xc6\\xd6\\x93\\x41\\x30\\x21\\x9e\\xd1\\x9d\\x70\\x3d\\xea\\x38\\x1a\\x13\\xa0\\x79\\xd3\\x45\\x2e\\x27\\x66\\xb8\\xec\\xdc\\xa6\\x12\\x1f\\x04\\xea\\x35\\x8d\\x7b\\x13\\x0f\\xa4\\x38\\xc9\\x1b\\x6e\\x0c\\xdc\\xe6\\x4a\\x88\\x45\\xbe\\x70\\xae\\x2b\\x79\\xdf\\xd4\\xa6\\x19\\x3a\\x29\\x6f\\x48\\x73\\xb2\\x11\\xe9\\xb1\\xb6\\xb8\\x71\\x92\\x18\\xc7\\x9a\\x55\\x61\\x35\\x64\\xd8\\x3c\\xc3\\xb3\\x15\\x15\\xac\\x11\\xc1\\x32\\xc7\\x56\\x7d\\xcc\\x60\\x02\\x11\\x4d\\xa7\\x68\\x50\\x33\\x0a\\x36\\xc1\\x0a\\xeb\\x69\\xd5\\x2a\\xa3\\xaa\\x16\\x1d\\x13\\x4a\\xad\\xe3\\x50\\x87\\xbf\\x1b\\x53\\x8b\\xb6\\xb6\\x90\\x3f\\x49\\xc5\\x3c\\x4a\\xf4\\x4e\\x66\\x84\\xe1\\x9d\\x24\\xbe\\x80\\x74\\x73\\x77\\x7b\\x73\\x7d\\x35\\xfd\\xfa\\xae\\x41\\xb2\\xae\\xf9\\xfe\\x58\\x7d\\xa6\\x49\\x99\\xd4\\x90\\x51\\xa2\\x42\\xf1\\xb5\\xd4\\x27\\x51\\x98\\x2b\\x4f\\x66\\xf3\\x6a\\x1a\\x7a\\x24\\x4c\\x47\\x89\\xc1\\x51\\x40\\xf3\\x4e\\xae\\xab\\xec\\x08\\xf9\\x64\\x12\\x01\\xd1\\x40\\x26\\xa4\\x8b\\x7f\\x1d\\xdf\\x1d\\xce\\x6a\\x88\\xc4\\x65\\x1e\\xf4\\x9c\\xe5\\xb3\\x3a\\xe9\\x24\\x38\\x6a\\x3b\\xbb\\xe3\\x53\\xd7\\x46\\x2d\\xd6\\x7a\\xc3\\x62\\xf0\\xdc\\x59\\x83\\xca\\x7b\\xf3\\x55\\xbd\\x3e\\x6a\\xd9\\x2c\\xa3\\xb8\\x04\\x16\\xbc\\xc9\\x45\\x64\\x6a\\x72\\x48\\x45\\x63\\xa1\\x5d\\x43\\x4a\\x57\\x3b\\x77\\x7a\\xb9\\x2f\\x76\\xa9\\xc4\\x1c\\x8f\\xc6\\xfe\\x41\\x05\\x72\\xe8\\x33\\x4f\\xc5\\x43\\x83\\x8b\\x48\\x6d\\x8d\\x47\\x6a\\xe3\\xe0\\xd8\\xe6\\xa4\\x37\\x61\\x3e\\x0e\\x54\\x2c\\xd7\\xb7\\x63\\x12\\x22\\x1c\\xaa\\xbb\\x06\\x6a\\xf4\\x20\\xd9\\x00\\xa9\\x59\\x7d\\x21\\x6e\\xa5\\x94\\x04\\x5c\\x73\\x3d\\xe3\\xef\\x46\\xd5\\xb5\\x90\\xfe\\xa9\\xf1\\x4c\\x5e\\x6b\\xb5\\x6c\\x9b\\xba\\x2a\\x60\\xec\\x73\\x69\\x9f\\x55\\xaf\\x35\\x6e\\x2c\\x9e\\xc1\\xab\\x75\\xc2\\x36\\xeb\\xa8\\x38\\x70\\x27\\xa5\\x4b\\x29\\xa5\\x31\\x16\\xb2\\x41\\xcd\\x3c\\x58\\x59\\x2e\\x83\\x50\\x11\\xa5\\xc3\\x8b\\x77\\xc6\\x9b\\x83\\x52\\xcb\\xeb\\x24\\xd4\\x1e\\xac\\xb0\\x2f\\x9d\\x3c\\x4b\\xae\\x59\\x95\\x75\\x0a\\xe0\\x4a\\x40\\x60\\x07\\x6d\\x6a\\x97\\x8a\\x06\\xee\\x73\\x5b\\x7e\\xd8\\xdf\\xdb\\x81\\xf5\\xc3\\xf5\\x45\\x99\\xad\\xe7\\xba\\xe0\\x90\\x2f\\xbd\\x4d\\xbe\\xbf\\xd9\\x2b\\xb5\\xbc\\x9a\\xdc\\x77\\x64\\x99\\x77\\xd3\\x64\\x9d\\xbc\\xdb\\xdd\\xd9\\x3e\\x0b\\x20\\x91\\x63\\x9e\\x10\\x20\\x7c\\x20\\xf2\\x0c\\x46\\x16\\x15\\x7a\\xc8\\xe5\\x43\\x22\\x8a\\xd1\\xbd\\x85\\x07\\x7a\\x59\\x28\\x18\\x4d\\x3f\\x5c\\x7c\\x70\\x5d\\x71\\x2c\\x8f\\x87\\x6e\\x3e\\x61\\x4f\\x18\\x91\\x30\\x85\\x59\\xc4\\xa3\\x60\\x83\\x53\\x63\\x98\\x47\\xb8\\xc5\\x79\\x2c\\xe6\\x4a\\xda\\xae\\xde\\x35\\xbb\\x2c\\x95\\x95\\xaa\\x7a\\x1d\\x26\\x78\\x46\\xd6\\xa8\\xb0\\x37\\xcb\\xa2\\x15\\x6d\\x14\\x40\\x2c\\x85\\x5b\\x59\\x15\\x57\\x89\\x99\\x48\\x38\\x96\\x13\\x7f\\x83\\xa8\\xad\\x20\\x81\\x23\\x29\\xb4\\x0e\\x12\\xae\\x59\\xf8\\xa5\\xd5\\xaa\\xc6\\x78\\xbb\\x4e\\x37\\x36\\x9d\\xa6\\xd0\\x60\\x09\\xc8\\xa3\\xfa\\xcd\\x00\\x35\\xed\\xa2\\x72\\x9f\\x80\\xb5\\x36\\x74\\xd1\\xb9\\x6b\\xe3\\xb8\\x20\\x34\\xa3\\x52\\xe5\\xcf\\xb8\\xdb\\x85\\x9b\\xa5\\x7c\\x14\\xaa\\xe7\\x9e\\xc7\\x72\\xbb\\x54\\xd9\\x85\\x0c\\xad\\x52\\x43\\x4d\\xc3\\x28\\x56\\x67\\x8c\\x84\\x86\\x4e\\xce\\x19\\xfd\\x20\\xa1\\x48\\x13\\xaf\\x61\\x1a\\x04\\x8d\\xb5\\xb6\\x4b\\x61\\xf0\\xf1\\x6f\\xb1\\x03\\x11\\xfc\\x13\\x58\\x4b\\xfc\\x0f\\x97\\x62\\x7f\\x22\\x77\\xfd\\xc5\\xf5\\x27\\xb7\\xf8\\x19\\x17\\x4a\\x80\\x9f\\x1a\\xda\\x11\\x0e\\x40\\xe7\\x1e\\xba\\x42\\x80\\x6b\\x4f\\xb7\\x91\\xdc\\xce\\xb4\\xf2\\x96\\x1a\\x42\\x12\\x48\\xdb\\x43\\x64\\x61\\x8c\\xb1\\xa6\\x3b\\xe0\\x7e\\xc1\\xcb\\x9d\\x95\\x0b\\x33\\xf5\\x88\\x74\\x82\\x70\\x3e\\x3e\\x28\\xd7\\x23\\xe3\\x8c\\xc6\\xa2\\x89\\xbd\\xd6\\xd0\\x8e\\x00\\xae\\x5a\\xca\\x16\\x56\\x88\\xd4\\x22\\x30\\xab\\x37\\xcb\\x96\\x54\\x87\\x93\\xdc\\xde\\x62\\xf9\\x76\\x0d\\x57\\x62\\x50\\x48\\xf6\\xe7\\x15\\x03\\x35\\xc0\\xcd\\x4a\\x33\\x00\\xc1\\xef\\xcd\\xc7\\xad\\x2c\\x4f\\xfe\\x29\\xaa\\xff\\x2b\\x81\\x0b\\x64\\x78\\xcb\\x6f\\x52\\x4f\\xb6\\xea\\x91\\xf1\\xf0\\x8c\\x91\\x17\\x93\\xad\\x8d\\xc9\\x50\\x67\\x13\\x35\\x36\\xeb\\xc1\\x77\\x35\\xac\\x88\\x87\\x70\\x34\\x36\\x60\\x77\\xe3\\xd5\\xd5\\xef\\x37\\xe3\\xb5\\x7a\\x79\\xb8\\xbf\\x7e\\x78\\xb8\\x13\\x2d\\x33\\x10\\xeb\\x9e\\x84\\xc3\\x90\\x2a\\x5d\\x64\\xe3\\x4f\\x56\\xf9\\xb5\\x2b\\x6e\\xd5\\xd5\\xb5\\xc4\\x6b\\x3c\\x0d\\xee\\x64\\x63\\xc5\\xbb\\x31\\xf7\\xae\\x9b\\xe9\\x07\\x2b\\x14\\x8b\\xb4\\xba\\x85\\x7c\\xae\\x22\\x58\\x57\\xb7\\xbf\\x5e\\x8d\\xbf\\x8c\\x3f\\xef\\xd3\\x67\\x40\\x51\\x86\\x08\\x78\\xf3\\xa7\\xa7\\x18\\x93\\xfa\\x1f\\x0e\\x99\\x89\\xca\\x5c\\xd9\\x88\\x44\\x29\\xe5\\xa0\\xa1\\x81\\xca\\x59\\x90\\xf7\\x21\\xc7\\xf5\\x8e\\x08\\x8a\\x8f\\xff\\x59\\x8d\\x6a\\xf9\\x19\\xda\\xd5\\x05\\x80\\x73\\x7d\\x3d\\x92\\xab\\x64\\xf1\\x65\\x6f\\xdf\\xbb\\x5a\\x9b\\xa0\\x28\\x88\\x2e\\xdb\\x0e\\x2c\\x48\\xfd\\x5c\\xb9\\xd8\\x1d\\x1e\\x86\\xb9\\xfb\\x91\\x1c\\x5b\\x3a\\xf0\\x73\\xdc\\xfd\\x13\\x68\\x28\\x4d\\x29\\x3f\\xb3\\x7e\\x1e\\xfb\\xfb\\x52\\x37\\xe2\\xfb\\x46\\xd8\\xe9\\xba\\x63\\xf8\\xc4\\xcd\\xdd\\x7e\\x57\\x00\\xf9\\x22\\x4e\\x8d\\xf5\\xdb\\x53\\x06\\x1a\\xa3\\x2e\\xae\\xe9\\xf2\\xe5\\x47\\x32\\x30\\x52\\x7f\\x82\\xc4\\xf0\\x97\\x06\\x1f\\x0b\\x4d\\x73\\x37\\xd3\\xf4\\x73\\x73\\xe1\\xdc\\xe3\\x4b\\x5e\\x9b\\x47\\x6b\\xaf\\xae\\xb0\\x0f\\x7a\\xe0\\x7f\\x1c\\x67\\xaf\\x35\\x46\\xfb\\xaa\\x6b\\x65\\x33\\x02\\x0e\\x65\\x63\\x4c\\x4a\\x9b\\x01\\x9b\\xb7\\xaa\\x22\\x85\\xa6\\x46\\xd7\\xb6\\x0b\\xa0\\x9f\\xcc\\x6b\\x47\\xc1\\x84\\x53\\x20\\x11\\xa9\\x3f\\xe3\\xa0\\xaf\\x23\\x88\\x22\\x9b\\xb8\\x06\\x4b\\x1b\\x55\\x62\\xc6\\x6e\\xab\\x36\\x05\\x7c\\xba\\xc1\\x1f\\x6a\\xb0\\xa9\\x25\\xb5\\x8b\\x4b\\xd1\\x7e\\xf3\\x74\\x70\\xda\\xad\\x8f\\x41\\xb2\\xfe\\x19\\xb8\\xe8\\xe3\\x72\\x20\\xea\\x59\\x46\\x56\\x19\\xd5\\xb8\\x0a\\x71\\xb3\\xca\\x7a\\x32\\xf6\\x9e\\xf3\\xe6\\x98\\x77\\xf0\\xfa\\x14\\xfe\\x53\\x24\\xa6\\x54\\x78\\x0e\\x43\\xe9\\xdb\\x94\\xec\\xd9\\x26\\xc3\\x2b\\x59\\x5a\\xb0\\xb2\\xb5\\x79\\x61\\xe0\\xaf\\x12\\xd7\\xa8\\x7b\\x7c\\xc3\\xbe\\xf3\\x69\\xde\\x86\\xb9\\xb5\\x35\\x1b\\xa6\\xff\\x16\\xbf\\x0d\\xea\\x2f\\x42\\x02\\x3f\\x18\\x9b\\x88\\x16\\xe6\\xc4\\x2b\\x42\\x25\\x6f\\xac\\x7f\\x71\\xb1\\xa3\\xa3\\xb2\\xd2\\xed\\xfe\\x17\\xfe\\xda\\x97\\x96\\x93\\x83\\x42\\x5d\\x7c\\xad\\x5b\\xad\\x2c\\x2f\\x2d\\xce\\xce\\x74\\x4c\\x6e\\x35\\x3e\\x3a\\x38\\xd0\\x7b\\xa0\\x52\\xb5\\xd5\\x50\\x53\\x4f\\x77\\x7b\\xdc\\xdd\\xb4\\x55\\x7d\\x6d\\x28\\x58\\x5d\\x05\\xba\\xb6\\xb2\\x5b\\x8d\\x06\\x8d\\x8a\\x06\\x58\\x32\\x89\\xc0\\x4e\\x6d\\xbb\\xfb\\xac\\xdc\\x19\\x66\\x4d\\x5d\\x65\\x89\\x7d\\x48\\xbb\\x9b\\x36\\xf4\\xe7\\x95\\x1c\\xb9\\x1e\\x6e\\xf3\\x48\\x35\\x34\\x29\\x4c\\xc9\\x32\\x93\\x2d\\xda\\x83\\x43\\x96\\x8e\\x35\\x95\\xf2\\xc7\\x3e\\xdd\\x60\\xd0\\xef\\x9f\\xba\\xda\\xdd\\x50\\x23\\xe6\\xd4\\xe3\\x05\\x8d\\xb2\\xfe\\xd8\\xe8\\x08\\x92\\x49\\xc0\\xd4\\xdd\\x5c\\x15\\xb8\\x71\\xa5\\x55\\x6f\\x7d\\xc3\\xc4\\xe6\\x94\\x80\\xb5\\xeb\\xdc\\x63\\x01\\x93\\x3c\\x8b\\x8e\\x9d\\x1b\\xc1\\xc6\\x1b\\x8d\\xf5\\x8d\\x98\\x16\\x79\\x77\\xab\\x2d\\x14\\xba\\xbb\\x1d\\x99\\x87\\x6f\\x12\\x41\\x12\\xbe\\x00\\x6a\\x63\\xe3\\xd9\\xbb\\x60\\x7b\\x63\\x53\\x7d\\xe7\\xac\\x40\\x98\\x03\\x3b\\x46\\x38\\xb8\\x6c\\x0d\\x71\\x55\\x9d\\xc2\\x29\\x2e\\xa7\\xba\\x6d\\x92\\x75\\xc0\\xc3\\x20\\x12\\x86\\xcc\\xd0\\x47\\x20\\x72\\x01\\x55\\x49\\x76\\x10\\xd5\\xdb\\x9b\\x14\\xf5\\x65\\xd9\\xd2\\xba\\x93\\xe8\\x4c\\xc0\\x33\\x12\\xa3\\xd1\\xc3\\x54\\xe2\\xaa\\x26\\x93\\x9c\\x67\\x16\\x02\\x53\\x56\\x5d\\xd6\\x48\\x25\\xfb\\x6c\\x52\\x04\\x20\\x8c\\xb4\\x13\\x03\\x8d\\xab\\x98\\xd3\\x60\\x57\\x5b\\xe5\\x8d\\x51\\x5e\\xb8\\xea\\x2c\\x64\\x8c\\x85\\xb6\\x38\\x86\\xd2\\xc3\\xcd\\xd1\\xa8\\x62\\x92\\x49\\xc9\\x3a\\xcc\\xb3\\x1c\\x83\\xc1\\x88\\xf4\\x52\\x12\\xa5\\xd7\\xa6\\x23\\x41\\x61\\x83\\xd3\\x04\\xd8\\x19\\x21\\x1c\\x06\\x82\\xd2\\x56\\x5e\\x1b\\xbe\\x89\\xb1\\x4f\\xe2\\xd2\\x14\\x6c\\x68\\x6d\\x4c\\x0c\\x10\\x0a\\xd2\\xf9\\xa3\\xe2\\x91\\x5f\\x6a\\x95\\x3a\\x27\\xe2\\x40\\x17\\xc1\\x86\\x6f\\xa8\\x8d\\x11\\x23\\x30\\x9f\\x3d\\xca\\x26\\x12\\xa9\\xaa\\xad\\x6e\\xee\\xdd\\x5d\\x55\\x09\\x33\\xe2\\x0e\\x1b\\x82\\x99\\x88\\xcd\\x93\\x15\\xe5\\xf4\\x11\\x47\\xe3\\x5d\\x0c\\x31\\x14\\x73\\xa8\\x9b\\xcb\\x92\\xbe\\xbb\\x9d\\x2f\\x1e\\xf5\\x7d\\xa6\\xa0\\x2c\\x71\\x38\\x3c\\x43\\x15\\x97\\xc5\\xf0\\xf2\\x9a\\x2d\\xb3\\x76\\x4e\\x6b\\xf8\\x8d\\xce\\x5b\\xb3\\x01\\xa6\\x53\\x47\\x24\\x0b\\x2d\\xb4\\x82\\x4f\\x3c\\x01\\x0f\\x67\\x8c\\x20\\x91\\xe1\\x7f\\x14\\x86\\xb0\\xdf\\x9d\\x79\\x44\\x10\\xd6\\xab\\xa4\\x34\\xf3\\x6b\\x5c\\xef\\x88\\xc0\\x47\\xfc\\xf3\\x42\\x27\\x3c\\x78\\x35\\x7e\\x9b\\xdf\\xed\\x9c\\x9e\\xe8\\x60\\xc1\\xff\\x79\\xb2\\xc5\\x4b\\xf1\\x16\\x0b\\xa8\\xb5\\xc4\\xd9\\x72\\xd2\\xb9\\x66\\xde\\x96\\x2e\\x07\\x8d\\x3f\\xa2\\x14\\x68\\x23\\x34\\x8e\\xe3\\xb6\\x12\\x8c\\x8d\\xfe\\x0a\\x31\\xf4\\xfe\\x5a\\x08\\xbd\\x71\\xe8\\x40\\x82\\x57\\x7c\\x0e\\xb2\\xee\\x11\\x76\\x1f\\x72\\x8a\\xd6\\x13\\x30\\x0f\\xeb\\x11\\x38\\x73\\x6e\\xc9\\x57\\x74\\xa5\\x59\\xff\\x9e\\xc6\\xf6\\x10\\xe9\\xdd\\xd7\\xe1\\x66\\x77\\x53\\x15\\x71\\x24\\xd8\\x7a\\x81\\xc7\\xdc\\x03\\x5b\\x6b\\xdc\\xb2\\x24\\x83\\x96\\xb7\\x09\\xbb\\x93\\x18\\x47\\x24\\x83\\x73\\x42\\x86\\x9b\\xa7\\xf5\\x1e\\xc8\\xbf\\x72\\x27\\xc6\\x26\\xeb\\x03\\xa4\\xe7\\x8f\\xf6\\xca\\x5d\\x39\\x8b\\x4f\\x60\\xb0\\x9c\\xf0\\x80\\x1b\\xa2\\xa5\\xf7\\x89\\x19\\x49\\x40\\xf0\\xab\\x35\\x29\\x91\\xae\\x71\\x85\\x83\\x78\\x58\\x56\\x99\\xc5\\x25\\x8e\\x2d\\x40\\xa3\\x68\\x2b\\xde\\xb5\\xc9\\xe0\\x93\\xd8\\x0a\\x66\\x75\\x2c\\xb6\\xca\\x68\\x19\\xa0\\x03\\xde\\xbb\\xd2\\x80\\xec\\x06\\x00\\x66\\x01\\x82\\x0e\\x37\\x11\\x03\\x70\\xcb\\x4b\\x0a\\x77\\x03\\x9b\\x36\\xf0\\x0e\\x00\\x73\\xa7\\xc9\\x4e\\x13\\x6e\\xb1\\x6c\\xbe\\x8f\\xf4\\xf8\\xdc\\x1e\\xf5\\x31\\x56\\x4f\\xf1\\x3b\\x5c\\x74\\x52\\x7d\\xad\\xb9\\x06\\xbc\\x37\\x13\\xee\\xe6\\x43\\x5c\\xcf\\x2a\\xa6\\x18\\xed\\xee\\x55\\xce\\x1d\\x6d\\x17\\x8c\\x8e\\x66\\x35\\x2d\\xd6\\xb4\\xfc\\xbf\\x34\\x15\\x84\\xa4\\x39\\xf5\\x8c\\x3c\\x44\\x86\\xc0\\x1c\\x02\\xf6\\xcc\\x6d\\x1f\\x34\\x14\\x21\\x4d\\x22\\x90\\x0f\\xf7\\x38\\x20\\xb2\\xec\\x01\\x57\\x91\\x77\\x38\\x3a\\x5c\\xd6\\xa1\\xce\\x9c\\xa7\\xc5\\x07\\x4d\\xf5\\x6d\\x83\\x60\\xae\\x86\\xb8\\x04\\xc3\\x1d\\x82\\x36\\x80\\x4d\\x60\\x4a\\xee\\xbf\\xc1\\x66\\xc2\\x1d\\xaf\\x26\\x3b\\x1a\\x22\\x8c\\xa1\\xf1\\x9a\\x44\\x94\\xcc\\x70\\xe6\\x18\\x78\\x7f\\x28\\x62\\x87\\xf7\\x1a\\x09\\xb0\\x6a\\x04\\x73\\x5e\\x23\\xdd\\x7e\\xaa\\xf7\\xba\\x89\\x14\\x79\\xe0\\x54\\xa6\\xc6\\x2d\\x4e\\x5b\\xd4\\x63\\x6c\\x3c\\x89\\x83\\x47\\x6c\\x76\\x97\\xd0\\x0c\\x81\\x11\\xa9\\x34\\x8d\\xc6\\x6b\\xa8\\x4e\\x04\\x24\\xc7\\x08\\x6e\\x51\\xb8\\x39\\x68\\xad\\x32\\x4c\\x12\\x0f\\xcc\\x82\\x23\\xc5\\xf0\\x8a\\x0a\\x8e\\xcb\\x12\\xd4\\x61\\x36\\x1b\\x82\\x5b\\x04\\x3d\\x5b\\xec\\xf6\\xfa\\x74\\x14\\x45\\xe2\\x5d\\xad\\x67\\x9d\\x2e\\x30\\x3e\\x35\\x4c\\x65\\x18\\x1e\\x14\\x89\\x03\\x06\\x0d\\x15\\xa2\\xd6\\x1a\\x87\\x10\\x6e\\x91\\x3f\\xcf\\x6b\\x63\\x55\\x73\\xfb\\xf2\\xd6\\x3d\\x14\\x58\\x0c\\x38\\xd7\\x3b\\x3f\\xc3\\xbe\\x04\\x76\\x16\\x1c\\xe3\\xc1\\xf7\\x16\\xc3\\x18\\x55\\xea\\xe6\\x3b\\x78\\x28\\xf7\\x43\\x70\\x51\\x6c\\x48\\xdb\\xdc\\x41\\x0e\\x7d\\x77\\xda\\x69\\xe3\\x93\\x58\\x62\\xba\\xee\\x03\\x46\\xa3\\x46\\xa2\\xfb\\x1b\\x63\\xc0\\xd5\\x67\\x70\\xaf\\xbb\\xeb\\xb2\\xa9\\x88\\x0b\\x6f\\xc6\\x27\\xf2\\x49\\x08\\xa1\\x51\\x8f\\x5d\\x5f\\x45\\x93\\x76\\x88\\x50\\xe4\\x67\\x05\\x8b\\xd6\\x8a\\x59\\x45\\x58\\x11\\xa8\\x32\\x8c\\x88\\xda\\xb4\\x4a\\x9c\\xf0\\x56\\x0d\\xb0\\x30\\xc6\\x2e\\x5b\\x76\\x0e\\xd8\\x0c\\x36\\x34\\x06\\xb8\\x34\\x44\\xd3\\x41\\x0d\\x05\\x25\\x52\\x87\\x2b\\x66\\x25\\x07\\xd8\\x36\\x9e\\x57\\x6a\\x6d\\x0c\\xbb\\x1c\\x5c\\xe1\\x4b\\x55\\xc4\\x2c\\xc9\\x03\\xb9\\xf1\\x19\\x4b\\x81\\x3a\\x33\\x51\\x94\\x12\\x40\\xb8\\xc4\\x05\\x67\\xb2\\xe0\\x64\\x83\\xf4\\x05\\x03\\xca\\x2c\\xf2\\x74\\xbd\\x88\\x92\\x29\\x6d\\x00\\x30\\xfa\\x35\\xb0\\xef\\xe7\\x99\\xab\\xb2\\x5a\\x32\\x0a\\xb4\\xbd\\x7e\\xa3\\x9c\\xb1\\x65\\xd1\\xe6\\x69\\xdb\\x84\\xb7\\xf5\\xbc\\x8e\\x78\\x91\\xae\\x69\\x44\\x26\\xb7\\xb1\\xac\\xe5\\xb9\\x8e\\x4e\\x36\\xc3\\x6a\\xae\\xe8\\xde\\xae\\xc8\\xd8\\x20\\xf2\\xa5\\xcf\\x79\\xdc\\xba\\xde\\x04\\x85\\x2d\\xc0\\x8f\\x45\\x87\\x13\\x23\\xdf\\x58\\x59\\x33\\x61\\x2c\\x7b\\xe7\\x3e\\x8d\\xc9\\xb6\\x25\\x9e\\xf2\\x30\\x9a\\x92\\xb7\\x55\\x6d\\x5c\\x7e\\x81\\x06\\x62\\x84\\xd0\\x44\\x16\\xcd\\x91\\x3d\\xac\\x53\\x2b\\x12\\xa8\\x4b\\xd3\\x69\\x73\\xb3\\xd8\\x49\\x56\\xcc\\x01\\x6b\\x5d\\x04\\x5f\\x36\\xbb\\x3c\\xec\\x5d\\x27\\x39\\x09\\x17\\x35\\x84\\x09\\xfb\\x35\\x9a\\x2b\\xca\\x23\\xf8\\x21\\x71\\x9d\\x5e\\xb9\\x3e\\x34\\xce\\xf5\\xd7\\x06\\x62\\x1b\\xa6\\xe9\\x58\\x0a\\x2f\\x66\\x18\\xbb\\x38\\xb3\\xe0\\xce\\x6a\\x58\\xf7\\x18\\x34\\x2c\\xc0\\x9f\\x75\\xc0\\x1d\\x92\\x32\\x7d\\x2a\\xf7\\x31\\x8c\\x48\\x74\\x6e\\x39\\x88\\x4e\\xb2\\xc6\\x8b\\xc5\\xc8\\x32\\x21\\x3b\\x3c\\x8d\\xee\\x71\\xe5\\x6e\\x53\\x7d\\xd1\\x26\\xff\\x55\\x38\\x5b\\xde\\xe3\\x79\\xe3\\x93\\x8e\\x15\\xdc\\xc0\\xd2\\x5a\\x2e\\x02\\x93\\x18\\x04\\xd4\\x2c\\x89\\x82\\x2a\\x93\\x47\\x55\\x24\\x09\\x32\\xe5\\x81\\x13\\x9e\\xa8\\xf1\\xff\\xff\\xff\\xfb\\xe7\\xdd\\x9b\\xfa\\xe6\\x30\\xfc\\xba\\x4c\\xcf\\x2e\\x0a\\xda\\x89\\xbd\\x97\\xcb\\x1d\\x70\\x2e\\xec\\xb4\\x76\\xfb\\xd8\\xa0\\xb9\\x3b\\xf0\\x5c\\x8f\\x62\\x3d\\x06\\x60\\x91\\x57\\x73\\x89\\x48\\xaf\\xbb\\x1a\\x76\\x1f\\x39\\x97\\xe8\\x91\\x78\\xf9\\x8a\\x7d\\x82\\xad\\x74\\x26\\x52\\x50\\xb8\\x02\\x72\\xf1\\x4b\\x42\\xf9\\x4f\\x72\\x3c\\x55\\x66\\xb9\\xa5\\xe2\\xbb\\x25\\x09\\xcf\\xb0\\x33\\xa8\\xba\\x52\\x88\\x0f\\x63\\xbd\\x73\\xd5\\x7d\\xbb\\x54\\xb4\\x50\\x5d\\x30\\x76\\x34\\xae\\x50\\x36\\x99\\x51\\xb2\\xaf\\x11\\x9b\\x76\\x06\\x79\\x5f\\x79\\x3c\\xb3\\x2a\\xeb\\xe2\\xfc\\xf2\\xe2\\x74\\x64\\xe3\\xb4\\xe9\\x47\\x92\\x7c\\xee\\x23\\xdb\\x6e\\x70\\x49\\xff\\x5a\\x21\\xe2\\x4c\\x9c\\x61\\x2b\\x24\\xc8\\xd6\\x5b\\x75\\x40\\xcf\\x8d\\xac\\x36\\x46\\x2e\\x9c\\x13\\x2f\\x7d\\x34\\x8c\\xe1\\x07\\x5d\\x61\\x9c\\x1e\\x35\\x09\\xcc\\xfd\\x82\\xdb\\xf0\\xc1\\x08\\xc5\\x24\\xc4\\x40\\xe3\\xc0\\x39\\x10\\xcd\\xc9\\xa3\\xd2\\x5d\\xef\\x72\\x7b\\x07\\xbc\\x06\\xed\\xca\\x88\\x6e\\xe1\\xf4\\x8b\\x50\\x7a\\xb9\\x43\\x55\\x4b\\x63\\xf2\\xbd\\x4d\\xc9\\x09\\xef\\x02\\x56\\x56\\xd1\\x92\\x99\\xa7\\x7a\\xbc\\x5a\\xc5\\x71\\x7c\\xf9\\xa7\\x27\\x87\\xfd\\x6e\\x30\\x46\\x9d\\x80\\xd1\\xef\\xcf\\x85\\xfa\\xf5\\xab\\x9b\\xc3\\xe5\\x2e\\x0c\\xdf\\x8d\\xf3\\xc1\\xd0\\xc0\\x76\\x0f\\x80\\x31\\x2a\\xad\\xe3\\x6d\\x82\\x6c\\x61\\x61\\x31\\x75\\x6e\\x8a\\xad\\x7d\\x41\\xcb\\x36\\x3d\\x23\\xf0\\xab\\x3a\\x36\\xba\\xab\\x4b\\x7f\\x78\\xc6\\x0f\\xc3\\xd8\\xbf\\xa3\\x97\\x3a\\x5f\\xda\\x94\\x84\\x8c\\xbd\\x4e\\x81\\x9f\\xda\\xe7\\xd8\\x92\\x1e\\xc6\\x64\\xbc\\x4e\\xce\\x8c\\x79\\xfb\\xe7\\x78\\x7d\\x12\\x8f\\x3d\\x60\\x3b\\xc7\\x89\\xf3\\x17\\x83\\x79\\x64\\xba\\xfe\\x65\\xf7\\xc7\\x00\\x15\\xf6\\xd9\\xcb\\x5e\\xfc\\xef\\x60\\x88\\x7d\\x7f\\xcf\\xf7\\xa7\\xef\\x98\\x19\\x61\\x21\\x68\\xbb\\x89\\xc1\\xcf\\x4c\\xc9\\x98\\x1d\\x1a\\xe8\\xef\\x3d\\xd0\\xd5\\xd1\\xde\\xda\\xdc\\xd8\\xd3\\xde\\xda\\xd2\\x14\\xad\\xaf\\x8b\\x84\\x03\\x7e\\x6f\\x95\\xfb\\x5f\\x4a\\xfb\\x6c\\x1a\\x35\\x0c\\x48\\x25\\x22\\xae\\x53\\xed\\xca\\x78\\x3b\\x69\\xfa\\xda\\x90\\x79\\xf5\\x7e\\x71\\xdc\\x0f\\x74\\x6c\\x08\\x7b\\x26\\xbc\\xc5\\x24\\x61\\xcc\\xe5\\xeb\\x18\\x8f\\xc7\\x37\\x28\\xe3\\x70\\x29\\x48\\x46\\xc7\\x3b\\x39\\x11\\xd5\\x02\\x30\\xfb\\xda\\xb8\\x68\\xd1\\xc2\\x48\\x8e\\x0f\\x4e\\x40\\xba\\x1b\\x92\\x6b\\x0d\\x77\\xe7\\x4e\\x40\\x2b\\x8f\\x88\\xf0\\xe3\\x8b\\xb8\\xa1\\xc5\\x8e\\x73\\x17\\x0f\\x21\\x90\\xa2\\xff\\x49\\x52\\x9b\\x76\\x45\\x16\\x1c\\x68\\x9f\\x74\\xdf\\x17\\x91\\x03\\x1c\\xf7\\xfe\\x83\\xea\\xb5\\x59\\x64\\x47\\x9a\\x95\\xa3\\x2b\\x51\\x22\\xa5\\x54\\x8c\\xbb\\xad\\x12\\x1c\\x1e\\xe6\\x02\\xd6\\x5d\\xf1\\xfb\\x80\\x07\\xf7\\xa7\\xf5\\x22\\xb3\\xdb\\xd1\\xcd\\x35\\xda\\xe0\\xdb\\x09\\x29\\x14\\x70\\xee\\x1c\\xe8\\x76\\x24\\x95\\xae\\xc4\\x45\\x39\\x57\\x88\\x35\\x20\\xc3\\xa6\\x4a\\xc1\\xb6\\xd3\\x1d\\x2e\\xf8\\xb5\\x4d\\xb9\\xab\\x34\\x60\\x3b\\x82\\xe9\\xe3\\x42\\x24\\xf8\\x2a\\x42\\x0e\\x4b\\x7c\\xea\\x5c\\xd3\\x72\\x35\\xea\\xc1\\x66\\x18\\x98\\x65\\x07\\xa2\\xdd\\xb7\\x8a\\x6e\\x26\\x4b\\x26\\x56\\x44\\xc9\\x59\\x90\\x1a\\x30\\xea\\x8a\\x7b\\xc1\\xf7\\xad\\x19\\x16\\x37\\xd4\\x81\\xfa\\x45\\xf0\\xe9\\x6a\\xeb\\x43\\xd6\\x8a\\xf7\\x39\\x6f\\x60\\xf5\\x70\\x7f\\x2b\\x9c\\xa5\\x39\\x9d\\xf6\\x6b\\xc7\\xde\\xe7\\x22\\x98\\x5b\\x11\\x78\\xba\\xef\\x9f\\xb8\\xb6\\x01\\xbe\\xe0\\xb5\\x3a\\x76\\xe2\\x00\\xa9\\x03\\x36\\xfb\\x41\\xb0\\x0c\\x44\\x29\\x44\\x0c\\x57\\x20\\x9d\\x93\\x0f\\xcf\\x10\\x4c\\xfd\\x65\\xf4\\x9c\\xd1\\xe6\\x69\\x4d\\x80\\x1f\\x2d\\xaa\\xbd\\x17\\xe9\\xf3\\x46\\xa8\\x76\\x4b\\x03\\xd0\\x7f\\xd1\\xa1\\x62\\x5e\\x20\\x99\\xf0\\xf6\\x3d\\x4c\\x8e\\x9a\\xad\\x5b\\xb5\\xe7\\xb0\\xf7\\x5c\\x46\\x61\\x44\\x11\\x3d\\x4b\\x1e\\xe1\\x01\\x16\\x61\\x5f\\xda\\x13\\x3f\\x71\\x44\\x42\\x62\\xfa\\x6e\\x6d\\x4e\\x02\\x9f\\x18\\x82\\x2a\\x9e\\x78\\xd0\\xec\\xb9\\x38\\x61\\x94\\x4c\\x2a\\x81\\xf6\\xa4\\xf6\\x50\\x9a\\xbd\\xf6\\x5e\\xfa\\xa1\\xf4\\x08\\x4a\\xf7\\x0d\\xa7\\xc5\\x73\\xc9\\xab\\xa3\\x76\\xc7\\x21\\xb5\\xe9\\x73\\x93\\xc5\\x61\\x3a\\x11\\xd7\\x30\\xee\\xad\\x4a\\xe8\\xdc\\x60\\x39\\xb7\\x49\\xc0\\x19\\x39\\x9f\\xea\\x5c\\x28\\xde\\x0d\\xf0\\xd5\\xbe\\x80\\x89\\x3e\\xf3\\x50\\x85\\xd8\\x48\\xef\\x00\\x20\\x50\\xe7\\x9b\\x48\\xad\\x53\\x3b\\x76\\x3b\\xee\\xed\\xdf\\xa7\\x23\\x98\\xef\\x8d\\xda\\x53\\x44\\xe5\\x2b\\xb6\\xfc\\x92\\xb7\\x61\\xd8\\xa4\\xe2\\x85\\x19\\xd8\\xe2\\xb0\\x8f\\xe6\\xab\\xf0\\xb9\\x65\\xd7\\x8e\\x28\\xba\\x2e\\xce\\xcb\\x14\\x64\\xf3\\x42\\x08\\x2c\\x8a\\xf9\\x68\\x5f\\xf0\\xa5\\xcf\\xdf\\xee\\x4e\\xb6\\x59\\x8c\\x3f\\x5f\\xc4\\x13\\xeb\\x76\\x3e\\x3e\\xad\\x67\\x2f\\x36\\xdb\\x65\\xa7\\x5e\\xe2\\x10\\x0f\\x79\\x0e\\x08\\x1a\\x78\\x27\\x20\\x7a\\xba\\xf0\\x56\\x0e\\xcf\\x41\\xf5\\xc0\\x0e\\x98\\x2a\\x06\\x08\\x42\\x18\\xaf\\x61\\x20\\x9f\\x2c\\xf3\\xb0\\xe6\\xe4\\x2d\\x18\\x39\\xe8\\x94\\x8f\\x23\\x53\\x37\\x04\\xdb\\x57\\xf6\\x91\\xe9\\x60\\xed\\x81\\x5e\\xca\\xb5\\x12\\x5f\\x15\\xac\\x6b\\x6d\\x43\\x17\\x0d\\xe2\\xbd\\xe0\\x47\\xf9\\xb4\\xb2\\x08\\xcb\\x84\\x95\\x07\\xdb\\x8b\\xea\\xb6\\xc8\\xd1\\xaa\\x4b\\xc5\\xf7\\xca\\x60\\x2f\\x3a\\x88\\x6b\\x90\\x80\\x06\\x96\\x56\\x6c\\x9b\\x90\\x3c\\x3d\\xe4\\x60\\x2d\\xcc\\xf2\\xd5\\x8b\\x68\\x40\\xa3\\x0a\\x08\\x29\\xeb\\xf5\\x07\\xb2\\x84\\x5d\\x23\\x5d\\x6d\\x85\\x09\\x26\\x6b\\x87\\x92\\x9d\\x4d\\xa1\\x87\\x44\\x97\\xe2\\x4a\\xd9\\xc0\\x71\\x71\\x6f\\x17\\x3d\\x1a\\xc0\\xb1\\xf2\\x05\\x72\\x44\\x79\\x49\\x8a\\x86\\x90\\xbb\\xb5\\x7f\\x10\\x33\\x84\\xdc\\x2d\\xcf\\xac\\x3a\\x5c\\x65\\xe0\\x9d\\xf3\\x57\\x98\\x8d\\x10\\xb9\\x5b\\x1e\\x56\\xde\\x7e\\x02\\x61\\xbb\\x06\\x04\\x24\\x60\\x48\\x31\\xe2\\x99\\x9c\\x10\\xea\\x04\\x0d\\x8e\\x05\\x61\\xea\\x8c\\x0a\\x2a\\x8c\\x2a\\x1a\\x82\\x5d\\xca\\x59\\x68\\xe0\\x5c\\xe5\\x91\\xcf\\xbb\\xd8\\xa4\\x23\\xe9\\x9a\\xeb\\x2d\\x31\\xfe\\x99\\x98\\x7c\\xe7\\xd1\\xb0\\xf9\\xae\\x2c\\xb2\\x13\\x64\\x37\\x44\\xf6\\x62\\x90\\x3c\\xe4\\x22\\xc1\\x80\\xc8\\x62\\xc8\\x14\\xbc\\xb3\\x91\\x5c\\xb2\\x24\\xca\\x2e\\x45\\x71\\xff\\x5e\\x21\\x77\\xcb\\x29\\x15\\x55\\x33\\x22\\x85\\xb4\\xb0\\x6f\\xe7\\xc5\\xb2\\x3a\\x99\\xce\\x12\\x62\\x83\\x4c\\x8d\\x0a\\x16\\x97\\xc0\\xdd\\x4a\\x29\\xee\\x8c\\x0b\\x42\\x86\\x9f\\x14\\x4f\\xc7\\x39\\xf3\\x16\\xef\\x6d\\x15\\x9e\\x62\\x06\\x0a\\x7c\\x96\\x43\\x9b\\x40\\xa8\\x19\\x6e\\x89\\x94\\x4d\\x62\\x12\\x1b\\x34\\x2b\\xe2\\x6a\\xb2\\x6d\\x69\\x82\\x30\\x79\\x77\\x4a\\x04\\xcc\\xb1\\xb7\\xf8\\x01\\xf3\\x61\\x83\\x0e\\xb6\\x21\\x36\\xbc\\x36\\xc6\\x66\\x6b\\x4f\\x94\\x51\\x59\\x44\\x65\\x2a\\xc9\\x8b\\xe5\\x20\\x25\\x09\\x54\\x48\\x33\\x90\\x93\\xaa\\xdb\\x51\\xca\\x03\\x7a\\xe2\\x3c\\x7b\\xa0\\x84\\xaa\\x35\\x00\\x31\\xd4\\x37\\x5e\\x76\\x5f\\xe2\\xe5\\x9b\\x12\\x82\\x35\\x2b\\x06\\x5b\\x82\\x11\\xa0\\x1a\\xe0\\x88\\x38\\x6a\\x71\\x47\\x09\\x80\\x86\\xab\\x82\\xb5\\x2f\\x5e\\x68\\x58\\x3b\\xce\\x8c\\x81\\xf2\\x30\\xaf\\xe6\\x20\\x49\\xb1\\x51\\x60\\x93\\x54\\xec\\x61\\xfb\\x51\\xa5\\x2c\\x6e\\xd2\\x42\\xc0\\x19\\x6c\\x34\\xd2\\x8c\\xab\\x5a\\x7b\\xb3\\xef\\x31\\xde\\x60\\x7f\\x6f\\xf3\\x64\\xeb\\x64\\x21\\x98\\x08\\xd8\\xb2\\xd8\\x9d\\xd2\\xed\\xb0\\xf8\\xb1\\x0c\\xcd\\xbb\\x67\\xbf\\xba\\x4a\\x2b\\xcb\\x35\\xdd\\x71\\x72\\xf1\\xde\\xb1\\xa9\\x81\\x79\\x48\\xcd\\xd8\\x4b\\x41\\xf2\\xba\\x1c\\xbb\\x15\\xe4\\x6e\\x5f\\xb8\\x98\\x0f\\x92\\xcf\\x3e\\xdc\\x0b\\x89\\x7a\\x63\\x68\\x6d\\x63\\x4a\\x6a\\x50\\x93\\x73\\x9b\\x7a\\x12\\xd2\\x2e\\x73\\xf6\\xe2\\x2d\\xe6\\xb4\\xe1\\x17\\xa5\\x10\\x75\\xf3\\xc6\\xb5\\x22\\x29\\x6c\\x21\\xf7\\x66\\x96\\x47\\xf2\\xb7\\x6d\\x08\\x16\\x3b\\x7b\\xf0\\x7b\\x0c\\x59\\x80\\x86\\x3e\\xd9\\xd7\\x92\\x62\\x44\\x87\\xb1\\x59\\x22\\x32\\x51\\x65\\xe6\\xea\\x2f\\x21\\x03\\x53\\xbc\\x98\\x4c\\x4d\\xa9\\x76\\xba\\x86\\x5b\\x29\\x51\\x41\\x51\\x18\\xb0\\x63\\xe5\\xa5\\x55\\x48\\xa7\\xef\\xa9\\xa8\\x6b\\xa2\\xcd\\x12\\x6c\\x06\\xdd\\x42\\xbb\\x60\\x8c\\xc3\\x57\\x8d\\xbd\\x85\\x9f\\x3a\\x4c\\x40\\xa5\\x3a\\x59\\x1e\\x5a\\xbc\\xab\\x20\\xe6\\xe6\\x44\\x2d\\x5d\\x3f\\x76\\x49\\x6e\\x3b\\x48\\x1c\\xe8\\x99\\x97\\x3b\\x09\\xea\\x95\\xc5\\xad\\xe2\\xec\\x55\\xa5\\x27\\xf9\\x1c\\x56\\xcc\\xea\\xd4\\x28\\x98\\x7c\\x45\\xdb\\xcc\\x58\\xd9\\xe9\\x7e\\xcb\\x66\\x81\\x2d\\x4c\\x18\\x24\\x8c\\xe9\\x01\\x23\\x02\\x90\\x21\\xb4\\x06\\xb4\\xaa\\xbb\\xd5\\xce\\xff\\x46\\x45\\xec\\xe0\\x41\\x1a\\xce\\x43\\xcb\\x88\\xee\\x7e\\x0e\\xc6\\xd9\\x91\\x25\\x05\\xaa\\xa6\\x65\\x63\\x18\\xf6\\xa8\\x58\\x2b\\xb0\\x4e\\x42\\x2d\\x99\\xd4\\xd2\\x23\\x56\\xdb\\x50\\x33\\xf6\\x05\\x09\\x73\\x47\\xb3\\xb4\\xbd\\x59\\x31\\xea\\xc9\\xb8\\x61\\x2c\\x06\\x95\\xa4\\x43\\x1d\\x11\\x0e\\x06\\x74\\xb4\\x53\\x87\\x2b\\x9d\\x8e\\xa5\\xd5\\xd1\\x64\\xbe\\x41\\x76\\x70\\x1c\\xea\\xe7\\x74\\x9f\\x8e\\xbe\\xbd\\x7c\\x3e\\xe1\\x8b\\x8c\\x25\\x13\\xe5\\xf4\\x1a\\xc6\\xfe\\x9f\\x89\\xc9\\x4f\\x48\\xb0\\x39\\x0b\\x98\\xec\\xeb\\x72\\xc2\\x8e\\x8c\\x65\\x0d\\x47\\x62\\x88\\xa8\\x17\\xf9\\xbc\\x33\\x91\\xdd\\x9d\\x18\\x81\\x58\\x8a\\x91\\x8a\\x42\\x93\\x82\\xa0\\xa4\\xec\\x1f\\xf2\\x3e\\x1e\\x40\\x23\\xc9\\xa5\\xce\\x44\\xc9\\x7a\\x89\\x6a\\x99\\xa2\\x5c\\xc9\\xda\\x54\\x3a\\x68\\x7e\\x3a\\xd9\\x39\\x4e\\x38\\x46\\xc5\\x38\\x6d\\xb1\\xed\\xee\\xee\\xf5\\xa4\\x44\\xd7\\x75\\x37\\xc1\\x44\\x28\\xb4\\x73\\x4a\\x72\\xe8\\x4b\\x4e\\x22\\x11\\x91\\x24\\x5b\\x05\\x78\\x19\\xec\\xa5\\x8c\\x6c\\x93\\x21\\x65\\x35\\x1b\\xe0\\xa1\\xc7\\x28\\xb0\\x9f\\x10\\x71\\xe0\\x38\\xb5\\xb0\\xef\\xa8\\x01\\x72\\x77\\xf1\\xd5\\xd6\\xd1\\x97\\x4d\\x47\\x2d\\xfa\\x20\\xcf\\x6f\\x8b\\xbb\\x00\\xae\\xae\\xd9\\x10\\x3b\\xdd\\xa3\\x82\\xc3\\x89\\x39\\x7a\\x4a\\x62\\xdd\\xdd\\x45\\x9f\\x4e\\xce\\x0e\\x5b\\x25\\xdb\\xbb\\xfe\\xe4\\x98\\x56\\x4a\\xa8\\xba\\x89\\x52\\xe4\\xd1\\x61\\xda\\x96\\x1d\\x4b\\x7b\\x1a\\xa9\\xe3\\x97\\x81\\xd5\\x1b\\x73\\x59\\xf0\\x8a\\xcc\\xeb\\x8b\\x81\\x65\\x04\\xe9\\x32\\xc5\\x70\\x10\\xd8\\xb1\\x96\\xc3\\xac\\x51\\xb9\\xcd\\x50\\x59\\x39\\xd2\\x52\\x2a\\x8a\\xa9\\x92\\xa6\\x1c\\x01\\xb0\\x4b\\xfe\\x75\\x19\\xec\\xdd\\xde\\xc6\\xe3\\x02\\xa3\\x28\\x11\\xa7\\x67\\xe0\\x1c\\x2f\\x87\\xdc\\xed\\x33\\xc1\\x0c\\x3c\\xa5\\x5b\\x9e\\x84\\xae\\x71\\xd2\\xbe\\x67\\x36\\x4c\\x5c\\xab\\xe7\\x72\\x29\\x02\\xe0\\x1f\\x2e\\xb9\\x73\\x08\\x2e\\x7b\\x7e\\x00\\xb5\\xe8\\x6c\\x60\\x90\\x05\\x8d\\xbc\\x5a\\xef\\xba\\x7a\\x0d\\x4e\\xee\\xc0\\x39\\x23\\x4e\\xd9\\x39\\x87\\xb5\\x3a\\x63\\x37\\xec\\x52\\x3e\\xa2\\x16\\xd5\\xe9\\x95\\x7f\\xe5\\xb9\\x5d\\xf8\\xe5\\x84\\xc9\\xcf\\x4e\\x80\\x0f\\x28\\xd0\\x10\\x8a\\x97\\x45\\xb8\\x23\\x6e\\x64\\x58\\xe2\\x05\\x7a\\xfd\\xae\\xe9\\x9c\\x93\\x79\\x38\\xae\\x89\\x51\\x68\\x50\\xa7\\xf3\\xa8\\xd4\\x71\\x84\\xe6\\xdf\\x5e\\xee\\xa0\\x63\\x55\\xd1\\x40\\xc2\\xdc\\x5d\\xfa\\x5e\\xe7\\x42\\xcf\\x5a\\x3e\\x0e\\x3b\\xf2\\x0e\\x46\\x24\\xda\\xe6\\x60\\xf2\\xf1\\xee\\xc9\\x49\\x77\\xd7\\x81\\x61\\x05\\x9c\\x5c\\xcf\\x6c\\x50\\x31\\x0e\\xe2\\xad\\x62\\x6e\\x10\\x7a\\xd0\\x42\\xbc\\x54\\x67\\x8d\\xec\\x0c\\x92\\x34\\xd4\\x59\\xd6\\x42\\x92\\xc8\\x68\\x4f\\x71\\xc2\\xb4\\xbc\\xcb\\x50\\xa9\\xec\\x42\\x2d\\x68\\x47\\x22\\x83\\x49\\xd2\\xd1\\x10\\x64\\xc4\\xa5\\x7c\\x73\\xc9\\x69\\x3c\\x33\\x64\\x60\\x64\\x2b\\xdb\\x13\\x5d\\x93\\xbc\\x0f\\x15\\xe0\\x88\\x54\\x17\\x83\\xb5\\x33\\x21\\x0b\\x4d\\xd0\\x56\\x10\\xb5\\x18\\x26\\x10\\x59\\xf7\\x65\\x77\\x8b\\x1d\\x57\\x73\\xe1\\xc8\\x77\\x9c\\xef\\x53\\xe2\\x04\\x43\\x7d\\x58\\x1d\\xca\\xf5\\x5a\\x43\\x6b\\x65\\xd4\\xee\\x54\\xfb\\xae\\xa8\\x56\\x95\\x38\\x89\\xf1\\xea\\xa5\\x25\\x4a\\x3c\\x61\\x88\\x2b\\x5a\\xc0\\x0a\\xba\\xd4\\x08\\x4c\\x4d\\xbb\\x77\\x16\\x7c\\x5c\\x0e\\x43\\x18\\x3c\\xa5\\xe0\\xd8\\xcf\\x50\\x53\\x68\\x94\\x22\\xfe\\xb0\\x3b\\xcd\\xa0\\x02\\xdd\\xb9\\x5d\\x62\\x91\\x7e\\x77\\x74\\xd0\\xfb\\x3a\\x9f\\x2a\\x46\\x42\\x4f\\xf6\\xf8\\x8c\\x7b\\xed\\x64\\xa5\\x98\\x70\\x7a\\xea\\x08\\x27\\x2c\\x26\\x96\\xf6\\x1d\\x1a\\x3d\\xf5\\x58\\xb0\\xf7\\x54\\x2b\\xb5\\xe3\\x03\\x60\\xa1\\x0a\\xeb\\x2e\\x23\\xc1\\x3c\\x39\\x55\\xdf\\x64\\x07\\x6f\\xc8\\x4d\\x32\\xf9\\xab\\x11\\x48\\x0b\\xc9\\x2a\\xee\\x71\\x74\\xfc\\xad\\x6c\\xf5\\x23\\x13\\xa2\\x3c\\x9c\\x18\\xb5\\x4c\\x3a\\xe2\\x09\\xaf\\xf4\\xa1\\xc1\\xba\\xa1\\x53\\xe9\\x95\\x14\\x29\\x34\\x2e\\xb5\\x98\\x51\\x11\\x2d\\x93\\x9f\\xbf\\x70\\x7a\\xb6\\x3c\\xb1\\xf3\\x64\\x00\\x6e\\x85\\x37\\x74\\xa2\\x4d\\x86\\x29\\x6e\\xb0\\xbc\\x35\\x39\\xc3\\x36\\x52\\xe1\\x88\\x60\\x85\\xa4\\x8a\\xa9\\x67\\xa1\\x74\\x05\\xa3\\x34\\x49\\x2e\\xea\\xba\\x9d\\xe5\\x6c\\xbe\\xac\\x51\\x7b\\x4b\\x4e\\x92\\x6c\\x35\\x0a\\x32\\xa5\\xce\\xf3\\xd0\\x39\\x00\\xa9\\x37\\xb3\\xf1\\x1f\\xb4\\x78\\x02\\x9f\\x29\\xdd\\xc2\\x80\\x07\\xf5\\xa2\\x34\\xb7\\x5d\\xbf\\x7a\\x0b\\x30\\x14\\x5b\\xa7\\x10\\x43\\x17\\x99\\xb3\\xcd\\x2e\\x47\\x23\\x00\\xf5\\x67\\x91\\xd5\\x9e\\xa2\\xe2\\x8a\\x49\\x37\\xc7\\xd8\\x32\\x92\\x1c\\xac\\x9b\\x1d\\xd4\\xea\\xba\\xdb\\xd3\\xaa\\xe1\\xf1\\xe3\\x81\\x72\\x85\\xb4\\xea\\x8d\\xa5\\x70\\x90\\x64\\xf5\\x56\\x00\\x0a\\x2b\\x30\\x33\\xb9\\xad\\xb3\\x89\\xb8\\xbe\\xe4\\x05\\xb4\\x75\\xac\\xa2\\x4a\\x8b\\x39\\x29\\x3a\\x25\\xcc\\x26\\xf3\\xd3\\x6c\\x92\\x93\\x64\\x1a\\x3f\\x4b\\xa0\\x2c\\x3e\\xc2\\xa9\\x7b\\x81\\xfd\\xde\\xa2\\x7e\\x2b\\x00\\x40\\xe1\\x9f\\x3f\\x3b\\xeb\\x66\\xff\\x1b\\x9f\\xfe\\xff\\x57\\x55\\x69\\x0d\\xcf\\xcd\\xa7\\xdf\\xc2\\xa7\\xe0\\x9b\\xbb\\xcf\\xeb\\xde\\xdc\\xa4\\xf5\\x9f\\x84\\xa2\\x79\\x0a\\x60\\xbf\\x03\\x29\\xea\\x4a\\x01\\xf0\\x6b\\x0f\\xed\\x2f\\x5e\\x27\\x2d\\x5f\\x89\\x79\\xf6\\x9f\\x37\\xdc\\x10\\x14\\xba\\x9d\\x41\\xe7\\x83\\x0a\\x10\\xca\\x9c\\x1b\\x68\\x34\\x21\\xa2\\x4d\\x11\\xdc\\x58\\x09\\x75\\x2d\\x9f\\xbd\\xcd\\xe0\\x77\\x7e\\x89\\x36\\x03\\xf7\\xc3\\xd9\\xa2\\x3e\\x88\\x72\\x17\\xe5\\x93\\xd8\\xf5\\xe1\\x36\\x51\\x4c\\x51\\x61\\xa2\\x6a\\xd2\\xd0\\x7c\\xd1\\x25\\x27\\xb4\\x21\\xee\\x53\\x49\\x2d\\x4f\\xa2\\x1f\\x6e\\x8b\\x4b\\xa9\\xe8\\x77\\x46\\x89\\xa8\\x46\\xde\\xa0\\x16\\x54\\x19\\x70\\x4e\\x17\\x79\\x64\\x7a\\xb4\\x26\\x7a\\xd2\\xc0\\x19\\x76\\x93\\x06\\xb5\\x3a\\x8a\\xf2\\x1c\\x69\\x35\\x5c\\xb4\\xbe\\x69\\x18\\x25\\x3f\\x47\\x9f\\x81\\xae\\x52\\x6a\\x75\\xbb\\xb8\\xd6\\x24\\xf9\\x4e\\xa1\\xe9\\x7d\\x79\\xc3\\x67\\xd9\\x87\\x0c\\xce\\xc8\\x31\\x46\\x6a\\x96\\x73\\xbc\\x4e\\x86\\xf5\\x52\\xd1\\x21\\xb4\\xd8\\x69\\x77\\x2a\\x5b\\xa1\\x6b\\x6b\\x0e\\x7e\\xa0\\x39\\x72\\x87\\x9e\\x14\\x75\\x48\\x94\\x6c\\xe1\\xc9\\x1d\\x68\\x07\\xfb\\x47\\x6a\\x07\\x7c\\xf1\\x11\\x97\\x10\\xea\\x3e\\xb2\\x94\\x59\\x9b\\x53\\x15\\x0b\\xf5\\x50\\xde\\x7c\\xcb\\x09\\x94\\x58\\x88\\xce\\x4a\\x40\\x01\\xc5\\xfa\\x56\\x14\\x49\\x2b\\xa8\\xdc\\xe5\\x5e\\x8f\\xfa\\xbb\\xa7\\x46\\x52\\x72\\x54\\xa2\\xd9\\x4b\\xab\\x94\\xf7\\x48\\x34\\xe3\\x5c\\xb5\\x44\\x7b\\xe9\\x8f\\x12\\xe8\\x91\\x51\\x0d\\xad\\xd7\\x8b\\x9a\\xd5\\x67\\xa2\\x8d\\x5b\\x4c\\x47\\x0e\\xb9\\x03\\x65\\x34\\xa9\\xa2\\x16\\xaf\\x56\\x8a\\xbe\\x7e\\x0d\\x47\\x3f\\xad\\xcb\\xec\\xc5\\x43\\xd2\\x0e\\x51\\x74\\xa9\\x52\\x12\\x81\\x3a\\x92\\xd5\\xb2\\x5d\\x23\\xef\\x79\\xc3\\x67\\xd8\\xdf\\x0d\\x16\\xe5\\x2f\\x2a\\xc6\\x1e\\xa8\\x9e\\x93\\xc2\\x69\\x6e\\xd9\\x22\\x5b\\x93\\x11\\xf0\\xb2\\xbc\\xc6\\xe3\\x63\\x7b\\xc5\\x36\\xfd\\xc7\\xb3\\xb0\\x57\\xf4\\x55\\xad\\x35\\xdb\\x89\\xd3\\xb6\\x7f\\xbc\\x70\\x70\\x5b\\xbb\\x28\\xd5\\xd6\\x95\\xdb\\x3c\\xf0\\x52\\x42\\xcf\\x2c\\xed\\x0d\\xd7\\x4b\\xeb\\x96\\x21\\xcf\\xa6\\x5e\\x59\\xd8\\x8b\\x63\\xd2\\x82\\xab\\x64\\x51\\x29\\x65\\xbc\\x3c\\x6c\\x95\\xf7\\xe7\\x24\\xae\\x7a\\x66\\x2c\\xb3\\xce\\xe3\\xbd\\x9c\\x1c\\x61\\x79\\x46\\x3d\\x7e\\x57\\x49\\x54\\xac\\xa8\\xad\\xa9\\x86\\x88\\xf2\\x2d\\xbd\\x34\\x83\\x2a\\xcf\\x8e\\x27\\xb5\\xad\\xee\\xa2\\x8e\\xf8\\xe0\\xae\\x8b\\xa8\\xd7\\xa2\\x7a\\xec\\xae\\x0c\\x51\\xd2\\x9c\\xf6\\x12\\x3d\\x2a\\xcb\\x3d\\xde\\xf6\\x64\\x7b\\x59\\x33\\xfb\\xef\\x67\\x00\\x76\\x01\\xb6\\x00\\xd5\\x0e\\x16\\x33\\x20\\xc3\\x00\\xdc\\x3e\\xb3\\x32\\x06\\xde\\x6d\\xb4\\x2b\\x70\\xf7\\xa6\\x28\\x4d\\x51\\xc6\\xba\\x19\\x6a\\x99\\x11\\x5a\\x78\\x60\\x74\\x0d\\xf4\\xae\\x39\\xa2\\x06\\xc6\\x8d\\x97\\x2f\\x7d\\xd9\\x36\\x8a\\xaa\\x9b\\xb1\\xd1\\x38\\xa9\\x29\\xa2\\x6c\\x5a\\xe8\\x2f\\xd9\\xe0\\x31\\xdc\\x5b\\x57\\x3f\\x88\\x12\\xb5\\xd4\\x13\\x7e\\x32\\xc3\\xf7\\xee\\x9e\\x9f\\xf7\\x8e\\x89\\xc6\\xea\\xeb\\xbf\\xe2\\x4a\\x8c\\x9c\\x6e\\x27\\x27\\xe6\\x97\\x87\\xe5\\x7d\\xac\\x9c\\x49\\x53\\x68\\xda\\x1e\\xf1\\xfc\\xec\\xb4\\x07\\x84\\x26\\x80\\xe5\\xd2\\x5f\\xa8\\xb3\\xd9\\x5d\\x36\\x19\\x85\\xd6\\x51\\x54\\xf7\\xb5\\x51\\x1b\\x2c\\x1a\\x47\\xbd\\x58\\xf8\\xb2\\x95\\xa8\\xcb\\xa2\\xee\\x88\\xd2\\x8f\\x83\\xbb\\x26\\xa2\\x0c\\x45\\x2d\\xfb\\x2a\\xde\\xdb\\x36\\x51\\xcf\\xc7\\x5d\\x4e\\x4b\\x76\\x7b\\x40\\xd4\\x66\\x6b\\xe6\\xa3\\x60\\x49\\x58\\x6b\\x21\\x11\\xa1\\xd0\\xcc\\xbb\\xe2\\x65\\x3f\\x58\\x65\\x93\\x05\\x75\\x58\\xd4\\x45\\xaf\\xd5\\x9f\\xa2\\x0a\\x6c\\xf1\\xe3\\x7b\\xf4\\x59\\x8a\\x35\\xde\\xcd\\x8a\\x0a\\x19\\x11\\xa0\\x87\\x05\\xfa\\xd9\\x74\\xb7\\x45\\x34\\xba\\xd0\\x36\\xd9\\x6a\\xa7\\x9d\\xa7\\x3e\\x8a\\xea\\x37\\x1e\\xe3\\x48\\xad\\xc0\\x12\\xef\\x64\\x03\\x8c\\x8b\\xfc\\x8a\\x1b\\x8d\\xa6\\x90\\xaa\\x45\\x89\\x21\\x1f\\xe1\\xb4\\x11\\x42\\x17\\x3e\\x7a\\xdf\\xa6\\x83\\xfa\\x59\\xa8\\x2b\\xac\\xff\\x06\\x5c\\x1b\\xcb\\xdc\\x8c\\x57\\x42\\x3c\\xca\\x3d\\xbd\\xe3\\xb3\\x9f\\x77\\xbe\\xd1\\x90\\xfd\\xf3\\x37\\xfa\\xd4\\xeb\\x15\\xac\\xd3\\xdf\\xf1\\xf9\\xf2\\x4a\\x66\\x88\\xdd\\x9e\\x3a\\xd6\\x85\\xb6\\x43\\x66\\x43\\x68\\x55\\xa5\\x15\\xe9\\xa2\\x55\\x9a\\x99\\xbb\\x02\\x97\\x02\\x99\\x11\\x14\\xa0\\xd5\\x1b\\xad\\x43\\x17\\xad\\xea\\x4b\\x76\\xb8\\xb4\\x75\\x33\\x21\\xbd\\x96\\xc2\\x4f\\xc9\\x0c\\x94\\x4b\\xa3\\x84\\x95\\xc8\\x82\\x5c\\xe3\\x4b\\x61\\x9b\\xa9\\xd5\\x29\\x6f\\x60\\x01\\xae\\x33\\x2a\\x40\\x17\\xdf\\x45\\x24\\x2b\\x45\\xe1\\xde\\x76\\xa6\\x05\\xf3\\x78\\x9b\\x56\\x1c\\x8a\\x04\\x0d\\xbb\\x44\\x8c\\x12\\xd1\\x44\\x15\\xe9\\xa7\\x56\\x43\\xbe\\x89\\x31\\x61\\x1c\\x43\\x0e\\xb4\\x92\\xd7\\x02\\x73\\x74\\x77\\xc0\\xdc\\xae\\x6c\\x8f\\x4a\\xbc\\xec\\x66\\x23\\xb9\\xe6\\x46\\xd4\\x11\\x6c\\x86\\x5f\\x49\\xff\\x63\\x8d\\x40\\x68\\x0c\\x04\\x68\\xf5\\x53\\x11\\xe0\\xa2\\x55\\xc3\\xa1\\x3d\\x6d\\x03\\x1c\\x6a\\xea\\x13\\xa3\\xd5\\xc5\\x43\\x25\\xfd\\x83\\x68\\xa2\\x31\\x46\\x94\\x1a\\x9f\\x07\\xd2\\xb6\\xb3\\xd0\\x2a\\xb5\\xc4\\xe8\\xa4\\x01\\xed\\x51\\xb2\\x58\\xeb\\x52\\xdd\\x65\\xea\\xb2\\xb9\\xd6\\xeb\\x7f\\x13\\xf6\\x13\\xc8\\xb9\\x5a\\xe3\\xc3\\xad\\x47\\xed\\xd2\\x34\\xda\\x22\\x6f\\xc7\\xef\\xee\\xde\\xcc\\x6e\\x3b\\xf1\\x4c\\xf1\\x41\\x8c\\xf5\\xdc\\x6a\\x65\\x57\\xdc\\xfb\\x2c\\xd2\\xf8\\x24\\x40\\x47\\xf1\\x44\\x66\\x9c\\xfb\\x69\\x0f\\xdf\\xae\\x9a\\x97\\xd2\\xbd\\x6d\\x75\\x69\\x34\\xd4\\x72\\x43\\x52\\x89\\xc9\\x0d\\x59\\x84\\xa4\\x92\\xfd\\x55\\xa9\\x7b\\x90\\xf6\\x53\\x32\\x3d\\x49\\x28\\x4f\\x93\\xff\\x15\\x47\\x7c\\x1e\\x61\\xdb\\xce\\xc7\\x6e\\xce\\x7c\\x9d\\xdc\\x75\\x7e\\x02\\x36\\x8a\\xef\\x28\\x23\\xf6\\xfa\\x4d\\x24\\x7d\\x30\\x8c\\xa5\\xeb\\x49\\x91\\x2b\\x19\\xda\\x37\\x4d\\xda\\x55\\x89\\x17\\x29\\xaa\\x30\\x9f\\x07\\xab\\x72\\x2f\\x44\\xf8\\x70\\x23\\x4f\\xb3\\xa3\\xc8\\xb2\\xfd\\xee\\xcd\\xdb\\x35\\x57\\xd4\\x96\\x1b\\x7d\\x95\\x15\\x1b\\xda\\xc3\\x44\\x84\\x5b\\x89\\xfa\\xf8\\x2e\\xf1\\x40\\x73\\xf9\\x13\\x4f\\x1d\\x49\\xf3\\xde\\x73\\x64\\x23\\x7a\\x36\\xdc\\xd7\\x91\\xcb\\x67\\xeb\\xc9\\xab\\x44\\xf7\\x6c\\xe6\\xd2\\xb1\\xf3\\x35\\x6e\\x44\\x2f\\x15\\xa9\\xff\\x05\\xd1\\x99\\x3c\\xd3\\xbd\\x65\\xa5\\xbc\\xd6\\xf8\\x14\\x02\\xcc\\xe1\\x67\\x5c\\xda\\x2b\\x9d\\x0f\\x6e\\x59\\x41\\xb9\\xef\\xb7\\x0f\\xdb\\x21\\x9b\\x94\\x69\\xf0\\xba\\x7c\\xa1\\xdd\\xd6\\x83\\xf8\\xaa\\xdd\\x5b\\x44\\x27\\xab\\xf4\\xe5\\xc5\\xaf\\xd3\\xb5\\x88\\xf0\\x41\\x1a\\xa6\\x6e\\x50\\x0e\\x13\\x7f\\x50\\x79\\xa4\\xa0\\x8d\\xcc\\x1c\\x15\\x1a\\x95\\xf4\\x21\\x8c\\x06\\x00\\xfa\\x12\\x04\\x88\\xad\\x60\\x23\\x2e\\x0c\\x03\\x90\\x63\\xf0\\xa8\\x01\\xe0\\x83\\x83\\x2c\\x3a\\xaa\\xac\\xc3\\x8d\\xa4\\xed\\x94\\x58\\x0b\\xb0\\x3d\\x40\\xb3\\x04\\xad\\x0d\\xe7\\xab\\x90\\x5a\\x16\\xae\\x92\\xcc\\x8a\\xbd\\x4a\\xd1\\x8a\\x7d\\x55\\x09\\xa7\\xb8\\x76\\x55\\x29\\xc3\\xe5\\x5f\\x55\\xc6\\x01\\x59\\xf8\\xd0\\x57\\xad\\x13\\xf3\\x55\\x55\\x34\\x77\\xf8\\xaa\\x6a\\x46\\x5b\\xbd\\xaa\\x86\\x4b\\x7a\\xf7\\x33\\xaf\\xe5\\x94\\xa9\\xc1\\x16\\x09\\x52\\xea\\x90\\x51\\x82\\x98\\x62\\x14\\x20\\xe8\\xd1\\xa1\\xcb\\x70\\x6b\\x51\\x91\\x4c\\x53\\x62\\xca\\x11\\xd6\\x6c\\x47\\x2a\\x11\\x10\\x5c\\x2c\\x6b\\xca\\xcb\\x00\\x02\\xfd\\x1e\\x4c\\x5e\\x25\\xe1\\x3a\\x25\\x44\\x46\\xf5\\x72\\x6c\\x11\\xc1\\xe8\\x48\\x28\\x9c\\xf3\\x0a\\x0b\\x61\\x4f\\x96\\x2a\\x33\\xbc\\xcd\\x27\\x17\\xa3\\xa4\\x1c\\x3e\\xb2\\xc7\\xaf\\x05\\x75\\x6b\\x0d\\xf5\\x7a\\x4a\\xb8\\x8e\\x51\\x9f\\x31\\x22\\xa7\\xe4\\x18\\xbe\\x7a\\x49\\xab\\xc1\\xe9\\xb1\\x4d\\x18\\x33\\x64\\xfa\\x8e\\xe0\\x5e\\x8a\\x28\\x19\\x11\\x7c\\x94\\x8f\\x61\\x15\\x53\\x12\\xf0\\x5d\\x6f\\x52\\x71\\xe6\\x68\\x2d\\xfa\\x54\\x9f\\x45\\x88\\x6a\\x41\\xaf\\xbb\\x84\\x57\\x12\\x41\\x38\\xf2\\x59\\x30\\xff\\x67\\x91\\x64\\x21\\x15\\x15\\x56\\x71\\x6b\\xab\\x0c\\x44\\xae\\x26\\xfa\\x5c\\x2b\\x83\\x8f\\x5c\\x2e\\xe5\\x03\\x33\\x15\\x60\\x29\\xfe\\x7e\\x24\\x79\\x44\\x4a\\xe0\\xbf\\x43\\xfc\\xcc\\xf0\\x5d\\xc3\\xcf\\x1e\\xe6\\x54\\x26\\x25\\x08\\x86\\xac\\xf2\\x3b\\xf0\\xc1\\x42\\x38\\xbd\\x87\\xcf\\xcc\\x64\\xaf\\x83\\x15\\x7f\\x87\\x96\\x35\\xd2\\xac\\x08\\x8e\\x5c\\x6e\\xcf\\x07\\x96\\xf0\\x49\\xc2\\x6f\\x38\\x5b\\x81\\x14\\x14\\xed\\x69\\xcb\\xd9\\x85\\xc1\\xfc\\x1f\\x47\\x0a\\x2e\\x96\\x0c\\xf1\\x35\\x95\\xc7\\x1e\\x4f\\x92\\x9f\\x35\\xda\\x4d\\x1a\\x58\\xf0\\x64\\x43\\x5e\\x2a\\x41\\xc5\\xc4\\x30\\xf9\\xf1\\x7c\\x2f\\x45\\xfc\\x3f\\x73\\x6c\\x05\\xc8\\x40\\x24\\xf7\\xf9\\x2f\\x12\\x9f\\x05\\xe2\\x49\\xe0\\x11\\x05\\x8c\\x90\\x48\\x06\\x69\\x94\\x71\\x8f\\x5b\\xa4\\x0a\\xcb\\x23\\x72\\x99\\x63\\x1e\\x26\\x2c\\x92\\x85\\xe3\\x3f\\xb3\\x5c\\xe1\\x3e\\x1c\\x16\\x58\\xe4\\x06\\x59\\xcc\\x90\\xcd\\x24\\x29\\x5c\\x63\\x8c\\x66\\xae\\x33\\x75\\xb9\\xa7\\x3e\\x5e\\x34\\xba\\xbe\\x33\\x70\\x62\\xd6\\x75\\x35\\x51\\xe7\\xa0\\x6b\\x4f\\x7d\\x85\\x55\\xd6\\x82\\x1f\\xfa\\xfd\\xf6\\x47\\xb7\\x3e\\x3f\\xf5\\xde\\x40\\x52\\xff\\xa6\\x54\\xa3\\xf1\\x64\\x3a\\x9b\\x2f\\x96\\xab\\xf5\\x66\\x5b\\xbb\\xfa\\x67\\xbb\\x96\\x4b\\xdd\\xe4\\xfe\\xe1\\xf1\\x49\\xc9\\xd0\\x61\\xa4\\x4e\\x7e\\xf8\\xe8\\xa2\\x86\\x01\\x45\\xd4\\x7f\\x4a\\x40\\x08\\x46\\x50\\x0c\\x27\\x48\\x8a\\x66\\x58\\x8e\\x17\\x44\\x49\\x56\\x54\\x4d\\x37\\x4c\\xcb\\x76\\x5c\\xcf\\x0f\\xc2\\x28\\x4e\\xcb\\x64\\x79\\x51\\x56\\x74\\xe8\\xe6\\x6d\\xd7\\x0f\\xe3\\xe5\\x1a\\xab\\x4c\\xf3\\xb2\\x6e\\x13\\x6a\\x3f\\xcc\\xe6\\xed\\xaf\\xf3\\x8d\\x89\\x8d\\x8b\\x4f\\x48\\x4c\\x4a\\x4e\\x49\\x4d\\x4b\\xff\\xb3\\x40\\xff\\xa4\\x64\\x66\\x65\\xe7\\xe4\\xe6\\xe5\\x17\\xb0\\x0a\\x8b\\x8a\\x4b\\x4a\\x39\\xe6\\x45\\xe3\\x0b\\x55\\x63\\x53\\x73\\x4b\\x6b\\xdb\\xc3\\x47\\x8f\\x9f\\x3c\\x05\\x40\\x08\\x46\\x50\\x0c\\x27\\x48\\x8a\\x66\\x58\\xae\\x5a\\xdd\\x1f\\x6a\\x34\\xb4\\x1b\\xaa\\xd7\\xb7\\x17\\x6b\\x23\\xe9\\xa7\\x1e\\x38\\x78\\x6c\\x69\\xf6\\xb3\\xac\\xa8\\x12\\xf9\\xbb\\x7e\\xe8\\xa7\\x7e\\x91\\xae\\xdf\\xfa\\xa3\\x6e\\xf5\\xa8\\x97\\x42\\x8a\\x29\\x62\\x9a\\x72\\x72\\x28\\xe5\\x0e\\x99\\xe4\\x91\\x4f\\x8b\\xfa\\xd4\\xaf\\xbf\\x1a\\xd0\\x3f\\x23\\x79\\x9b\\x86\\x67\\x69\\x54\\xc1\\xfd\\x08\\x9a\\x31\\x6b\\xce\\xbc\\x05\\x1c\\x8b\\x96\\x69\\xbb\\x86\\xdb\\x66\\xe1\\x76\\x48\\xb8\\x27\\x58\\xbd\\x35\\x58\\xa3\\x35\\xe9\\xa9\\xa5\\xf4\\x86\\xb3\\x28\\xe2\\xb6\\x79\\xb8\\xff\\x42\\x0b\\xa3\\x12\\x61\\x85\\x53\\xa9\\xf0\\x22\\x88\\x28\\x92\\xc8\\xa2\\x88\\x2a\\x9a\\xe8\\x62\\x88\\x29\\x96\\xd8\\xa8\\x30\\x3d\\x71\\x30\\xba\\x18\\x88\\x27\\x3e\\x2a\\x79\\xc5\\x0b\\xaa\\xae\\xbd\\x00\\xa1\\x75\\x12\\xe4\\x75\\xc1\\x5e\\xf1\\xda\\x7b\\x6f\\xa1\\xde\\x39\\xe8\\x7d\\x1f\\x7c\\x54\\xed\\x90\\x8f\\x7c\\xf1\\xd5\\x61\\x7f\\x72\\x54\\xbd\\x46\\x4d\\xa2\\x62\\xeb\\xec\\x84\\x56\\x2d\\x3f\\x50\\x7f\\xfe\\x3a\\xb4\\xeb\\xd4\\xa5\\x5b\\xaf\\x1e\\x7d\\x06\\xf4\\x1b\\x32\\x68\\x58\\x8c\\x09\\x4d\\xb2\\xce\\xc4\\xb5\\x1b\\xb7\\xee\\xdc\\xb7\\xde\\x9f\\xa5\\x47\\x20\\xa8\\xff\\x01\\x02\\x81\\xc2\\xe0\\x08\\x24\\x0a\\x8d\\xc1\\x82\\xbb\\x1f\\x62\\x7f\\xf4\\xe2\\xd2\\x5c\\x06\\x0e\\x6d\\xf7\\xba\\xe5\\x0a\\xa5\\x4a\\xad\\xd1\\xea\\xf4\\x06\\xa3\\x8b\\xb4\\xfb\\x64\\x77\\x93\\xd9\\x62\\xb5\\xe1\\xbb\\x4f\\xec\\xe9\\xe5\\x2d\\x46\\x6c\\x6b\\xe1\\xb7\\x2a\\x4e\\x7c\\xff\\xfa\\x8d\\x04\\x89\\x92\\x24\\x4b\\x91\\x2a\\x4d\\x3a\\xa6\\x0c\\x99\\xb2\\x64\\xcb\\x91\\x2b\\xcf\\xe4\\x8d\\x30\\xeb\\x97\\xd6\\x76\\x67\\x36\\xd4\\xef\\xcc\\xea\\xac\\x09\\xac\\x0e\\xb9\\xea\\xec\\x61\\xb0\\x27\\x54\\x75\\xf6\\xdc\\xa9\\x6e\\x75\\xae\\x2b\\xd8\\x4b\\xa3\\xba\\xf2\\x06\\xa8\\xce\\xde\\xeb\\x00\\x83\\x08\\x7c\\xf7\\xd4\\xd9\\x27\\x9a\\x3a\\xfb\\xea\\x52\\x67\\x3f\\x50\\xea\\xec\\xb7\\x48\\x9d\\xf5\\x70\\xd4\\x59\\xbf\\x45\\x9d\\xfd\\x83\\xa8\\xb3\\x61\\x85\\x3a\\x36\\xa8\\x43\\x81\\xba\\x3c\\xad\\xfc\\x3e\\xa9\\x79\\x0b\\x38\\x16\\x2d\\x59\\x96\\x7e\\xc3\\x80\\xf1\\x2c\\xfe\\xf0\\x96\\xed\\x08\\xbf\\x2f\\xf4\\xef\\x51\\xfd\\x0f\\xa3\\x58\\x27\\x9c\\xc2\\xbe\\x5f\\x95\\xb2\\x32\\x75\\xd3\\x76\\xbd\\xe6\\x1b\\xc7\\x53\\xd8\\x3f\\x38\\x3c\\x3a\\x3e\\x39\\x3d\\x3b\\xb7\\x7b\\xff\\x9e\\xdd\\xdc\\xde\\xdd\\x3f\\x3c\\x82\\x10\\x8c\\xa0\\x18\\x4e\\x90\\x14\\xcd\\xb0\\x1c\\x2f\\x88\\x92\\xac\\xa8\\x9a\\xda\\x1b\\x2a\\xbd\\xa3\\xb6\\x63\\xf2\\x7e\\x9b\\x82\\x30\\x8a\\x93\\x34\\xcb\\x8b\\xb2\\xf2\\x78\\xff\\xaa\\x0d\\xe3\\xe5\\x7a\\xbb\\x4f\\xf3\\xb2\\x6e\\xfb\\xf1\\x78\\xbe\\x24\\x7e\\x57\\xaa\\x35\\x9f\\x37\\xd4\\x79\\x1b\\x6d\\x99\\xf7\\x17\\xe4\\x5e\\x7f\\x30\\x1c\\x8d\\x27\\xd3\\xd9\\x7c\\x21\\xc9\\x8a\\xaa\\xe9\\x86\\x09\\x20\\xc2\\x84\\x32\\x6e\\xd9\\x8e\\xeb\\xf9\\x81\\x08\\xa3\\x38\\x49\\xb3\\xbc\\x58\\xae\\xd6\\x9b\\xed\\x6e\\x7f\\x38\\x9e\\xce\\x00\\x22\\x4c\\x28\\xe3\\x42\\x2a\\x6d\\xac\\xf3\\x21\\xa6\\x5c\\x6a\\xeb\\x63\\xbb\\xdb\\x1f\\x8e\\xa7\\xf3\\xe5\\x7a\\xbb\\x0b\\xc2\\xa1\\x1d\\x1c\\x99\\xc1\\xc3\\xbf\\xbf\\x16\\x1c\\xd2\\xc0\\x11\\x07\\x1c\\x9a\\xc2\\x61\\xcd\\x5d\\x5a\\x5e\\x59\\xf5\\x85\\x43\\x55\\x78\\x53\\x6b\\x5d\\xc1\\x0e\\x58\\x00\\xbf\\x9a\\x06\\x35\\xe1\\x90\\x07\\xfe\\x17\\x09\\x3c\\x40\\x20\\xf0\\x41\\x41\\x20\\x48\\x65\\x72\\x85\\x92\\x25\\x3b\\x1b\\x19\\x83\\xbb\\xf6\\xcb\\xff\\xfd\\xfd\\xab\\x07\\x08\\xc2\\xe5\\xf4\\x40\\x21\\x5e\\x03\\x96\\x86\\x82\\xab\\x72\\x17\\x90\\x01\\x7f\\x0f\\xea\\xbf\\xef\\x36\\x41\\x2c\\x09\\xca\\x4a\\x61\\x84\\xb2\\x8d\\x65\\xd9\\xa6\\x9e\\xcb\\x56\\x27\\x11\\x59\\xca\\xa4\\xe3\\x9b\\xd9\\x42\\x1e\\xf3\\x30\\xc6\\x14\\xfa\\xb0\\x1b\\x4e\\x6b\\x4b\\x88\\x0f\\xf0\\x3d\\xfc\\xe1\\xe7\\xbf\\x5a\\xe0\\x8e\\x81\\xf3\\x62\\x65\\xe8\\xcd\\xfd\\xd2\\x95\\xd2\\x9a\\x51\\x0d\\xf3\\x73\\xb2\\x73\\xdb\\xf7\\x0e\\x0f\\x05\\xb7\\x05\\x13\\x3f\\xa6\\x95\\x0b\\xd7\\x63\\x41\\x0a\\x45\\x2a\\x55\\x7a\\x26\\x2b\\x0b\\x37\\x4c\\x48\\x30\\x39\\x90\\xf3\\xdc\\x6c\\x63\\x6a\\x1d\\x69\\xc4\\xc7\\xab\\x03\\xc8\\xcb\\x0a\\xc3\\x95\\x86\\x13\\x4d\\x09\\x6d\\x19\\xc6\\x53\\xa4\\x68\\x54\\x69\\x92\\x69\\x8f\\xa0\\x32\\x64\\x63\\x35\\x8f\\xa7\\x48\\x99\\x72\\xaf\\x54\\x10\\x5d\\xfd\\x87\\xd2\\x71\\x0b\\x5d\\x53\\xb1\\x94\\x62\\x41\\x1b\\xfa\\x71\\x6f\\x1a\\xe7\\xc8\\x7a\\xe9\\x98\\x1f\\xbf\\xac\\x82\\x71\\x85\\x6e\\xcc\\x6e\\xfa\\xf8\\x10\\xce\\x3f\\x92\\x3a\\xe3\\x96\\xd7\\x3e\\xc1\\x14\\x6c\\xdf\\x2a\\xe4\\x2c\\xee\\x8c\\x84\\x69\\xe3\\xb5\\xdf\\x99\\x99\\x90\\x2a\\x3c\\x25\\x0a\\x21\\x95\\x36\\x03\\x16\\x5c\\x74\\xa0\\xa5\\x42\\x28\\x13\\x52\\x19\\xcf\\x42\\x44\\x97\\x09\\x98\\x90\\x4a\\x1b\\xcf\\x82\\x0b\\x38\\x2f\\x6f\\x18\\x2f\\xac\\x15\\x04\\x4c\\x19\\x17\\x52\\x85\\x0a\\xd1\\x63\\xc1\\x45\\x66\\xa5\\x10\\xca\\x78\\x88\\x94\\x52\\x4a\\x29\\xab\\x08\\x98\\x50\\xc6\\x45\\xa8\\xaa\\x3a\\x44\\xa4\\xd6\\xd5\\x06\\x6e\\xa3\\x53\\x0d\\x01\\x33\\x2e\\xa4\\x8a\\xec\\x7a\\x06\\xae\\x46\\x9c\\xb1\\x91\\x59\\xab\\x84\\xc9\\xf0\\x4e\\xa0\\x1f\\x45\\xb7\\xfa\\x83\\xa3\\x8a\\x7f\\x9c\\x08\\x84\\x32\\x2e\\xa4\\xd2\\x66\\x88\\xb4\\xe0\\x0e\\x72\\xe3\\xfc\\x2b\\x44\\x04\\x13\\xca\\xb8\\x90\\x4a\\x9b\\x9d\\xc4\\x7f\\x64\\xf3\\xf1\\x87\\x56\\x94\\x1a\\x58\\x70\\x5d\\xd2\\x71\\xea\\xdc\\x50\\xf0\\x1e\\x4c\\x70\\x8d\\x97\\x81\\xb8\\x15\\xd3\\x11\\x39\\xd6\\x7e\\xd7\\x78\\x89\\xa8\\x9e\\x04\\xf4\\x03\\xeb\\x6d\\x73\\x14\\xba\\xf0\\x76\\xd9\\x66\\x9d\\x6f\\xfb\\x43\\xfb\\x3b\\x27\\x64\\x59\\x1b\\x65\\x68\\xb8\\x5a\\x5d\\x10\\x69\\x8b\\x2d\\x7a\\x4f\\x05\\x57\\x57\\xaa\\xab\\xe8\\xbe\\xcf\\x2f\\xd8\\x5a\\x42\\x5f\\x96\\x73\\xce\\x00\\x21\\x60\\x69\\x82\\x46\\xbf\\x7f\\xfb\\xfe\\xdd\\x2e\\x0f\\xf9\\x82\\x0f\\x7c\\xb5\\xff\\x28\\xfc\\x6e\\xc9\\x61\\x37\\xeb\\xa3\\xf3\\xee\\xbe\\xbf\\xc9\\x49\\x42\\xcf\\x4f\\x09\\x5f\\x1e\\x33\\xdb\\x6e\\x9b\\xfa\\x81\\xa3\\x87\\x95\\x49\\x9a\\xee\\x51\\x95\\x9b\\x4d\\x77\\xab\\x8e\\x53\\x56\\x0d\\x4d\\xdb\\xb7\\x5f\\xf5\\xb9\\x47\\xb8\\x41\\x43\\xcd\\xb2\\x4e\\xf4\\xc1\\x02\\x0b\\x6c\\x00\\x38\\x82\\x03\\x2e\\x20\\x78\\xe0\\x43\\x00\\x21\\x70\\x10\\x10\\x41\\x0c\\x09\\xa4\\x40\\x70\\x86\\x0b\\x5c\\xe1\\xe6\\xdd\\xc3\\x63\\x51\\x6c\\x05\\x8c\\x1e\\x74\\xc1\\xb0\\xf0\\x50\\x71\\xe4\\x84\\xf3\\x7e\\x31\\xde\\x9c\\xad\\xb8\\x4b\\x3b\\xa5\\x3b\\xcb\\xa1\\x85\\x5e\\xcc\\x41\\x62\\x6a\\x0e\\x15\\x27\\x3a\\x3c\\x52\\xe1\\xbd\\x92\\xf5\\xdd\\xa4\\x9f\\xf4\\xbd\\x14\\x2b\\x9f\\x02\\x58\\x46\\x7f\\xdf\\x0f\\x6d\\xed\\x98\\x61\\x99\\xa1\\x19\\xe6\\x7d\\xb7\\x6d\\x72\\x1b\\x87\\x94\\x80\\x87\\xe4\\xbc\\x3a\\x17\\xae\\x75\\x01\\xb1\\x33\\x95\\x4d\\xe4\\x6b\\x6c\\x01\\x95\\x80\\x5f\\x08\\x32\\x6a\\x3a\\xf4\\x6f\\x77\\xf9\\xab\\x50\\x4a\\x14\\x1a\\x85\\xcb\\x4a\\x17\\xff\\xb9\\x84\\x4f\\xcd\\x07\\x5e\\x3d\\xd5\\xef\\x64\\x6a\\xa7\\x1e\\x64\\x43\\x39\\x06\\x75\\x48\\x49\\x75\\x4c\\xbd\\x69\\x2a\\x6b\\xbc\\x2f\\x3d\\xe7\\x5e\\x7b\\x89\\x3e\\x9d\\x7c\\x49\\x1e\\x13\\x85\\xb1\\x59\\xf2\\x87\\x94\\x7a\\xa7\\x52\\xf5\\xa6\\x0a\\x68\\xa3\\x4f\\xcb\\x66\\xbd\\xe4\\x28\\xf3\\x8e\\x52\\xa1\\xac\\xb3\\x62\\x76\\x50\\xf2\\xea\\x99\\x25\\xd5\\x73\\x9b\\xf7\\x96\\x55\\xcd\\xe4\\xc7\\x5c\\x11\\x3e\\xbe\\xd9\\xf9\\xaa\\xed\\x20\\x0c\\x4d\\x35\\x0b\\x88\\x4a\\xdf\\xd4\\xfa\\x95\\x2c\\x66\\x56\\x0d\\x8b\\x59\\x7a\\xc9\\xb0\\xe7\\xbd\\x64\\xa4\\x1d\\x35\\x4b\\x27\\x6a\\x69\\xfd\\x60\\x18\\x6f\\x5c\\xf0\\xd9\\x48\\xc2\\x9c\\x75\\x01\\x30\\x97\\xaf\\x9c\\xd4\\xe1\\xf6\\xda\\x55\\xd9\\x16\\xd2\\x7b\\x90\\x52\\xbf\\xb0\\x4a\\x03\\xe2\\xab\\x25\\x80\\x2a\\x8f\\x67\\x58\\xb9\\x9d\\x31\\x8b\\xb9\\xf4\\x4a\\x03\\x52\\xa1\\x4c\\x1a\\x84\\xa9\\x92\\x39\\x67\\x22\\xba\\x5a\\x87\\x72\\xd0\\xb3\\xbf\\xf6\\x19\\xe7\\x7c\\xe4\\xbe\\x5e\\xe3\\xce\\xe5\\x46\\x4d\\xd4\\x78\\x54\\x44\\xad\\xac\\xd2\\xa0\\xd6\\x55\\x05\\xa8\\x54\\x69\\x50\\x3f\\x50\\x8b\\x19\\x55\\xe7\\xce\\x9b\\xa2\\x36\\xf3\\xbe\\x32\\xb8\\x8b\\x3a\\x38\\x14\\x51\\xf7\\x56\\xe6\\x03\\x16\\xbd\\xf7\\xa5\\xa0\\xfa\\xa9\\x0a\\xb2\\x9b\\xaa\\xfe\\x2d\\x69\\xce\\x0b\\xa3\\xc6\\xb5\\x11\\xb8\\x1a\\xff\\x70\\x23\\xec\\x5c\\x9b\\xf0\\x1e\\xd1\\x88\\x9c\\x56\\x35\\x08\\xa5\\xff\\x75\\x14\\xb1\\x97\\x0d\\xa4\\xe7\\x04\\xbd\\x1d\\xb5\\x2f\\xe9\\x58\\x2e\\xcc\\x5a\\xac\\xcd\\x10\\x0f\\x66\\x6b\\x90\\x70\\xa8\\x85\\xbb\\xa4\\xb2\\x5e\\x5a\\xf6\\xe7\\x70\\xf7\\xae\\x76\\xb7\\xeb\\xcf\\xed\\xea\\x8e\\xda\\x3d\\xdc\\x4e\\x06\\x8c\\xbf\\xd0\\xfc\\xda\\x76\\x88\\xa5\\x52\\x06\\xab\\x35\\xa0\\xc3\\x0a\\xa6\\x4a\\x55\\x03\\xa4\\xcc\\x6c\\xa2\\xf3\\x63\\x36\\x19\\x33\\x3f\\x52\\xbe\\x35\\x53\\x1a\\x3a\\xfc\\x60\\xb8\\xbb\\xe4\\x81\\xbe\\x46\\xf4\\xb6\\x42\\x9f\\xa4\\xef\\x25\\xa0\\xfe\\xd9\\x7c\\xbf\\x0c\\xd0\\x7f\\x64\\xdf\\x62\\x36\\x46\\xa2\\x7d\\xdd\\x89\\x9a\\xa0\\xc6\\x15\\xd6\\xfe\\x92\\xf7\\xd7\\xd7\\x0d\\xb4\\xe8\\xf4\\xec\\xd9\\xef\\xdc\\xe8\\xd8\\x43\\x2a\\x4c\\x1c\\xb3\\x03\\xbb\\x30\\x55\\xc2\\x16\\x57\\x3a\\x0e\\xf3\\x13\\xfb\\xa8\\xe5\\xc6\\xfe\\x0a\\xe2\\x86\\x8b\\x33\\x83\\xa3\\x37\\x8f\\x56\\xc0\\x95\\x52\\x82\\x01\\x77\\x90\\x11\\x06\\x13\\xe4\\x27\\x48\\x9d\\x3b\\xe4\\xc1\\x68\\x44\\x03\\x12\\xae\\x2f\\x77\\x82\\x1f\\x0b\\x93\\xe0\\x4e\\xe4\\x52\\x17\\xdc\\x11\\x30\\x99\\x48\\x38\\x11\\x0f\\xb9\\xb1\\x0d\\xfd\\x6d\\x35\\x94\\xa8\\x9b\\x86\\x50\\x3f\\xf6\\xa0\\x96\\x60\\x93\\x35\\xf4\\x57\\xd5\\xc0\\xe4\\xa6\\x7e\\x85\\xec\\xcc\\x83\\x0c\\x04\\xe4\\x7c\\x5d\\x0d\\x89\\x9e\\xc8\\x24\\xc0\\x2d\\x5d\\x1c\\x70\\xe7\\x68\\x1a\\xae\\xa8\\x0e\\x7b\\xd7\\xa9\\xe7\\x33\\xba\\x04\\x2b\\x34\\xf3\\xa8\\x16\\x42\\xee\\x51\\x0d\\xe1\\x8c\\x3a\\x4a\\x17\\x2f\\x3d\\xf1\\xea\\x4b\\x64\\x2e\\xa8\\xb0\\x57\\xae\\x41\\xcc\\xa3\\x62\\xf5\\xec\\xf5\\xd1\\x47\\x50\\xce\\x6e\\xe6\\x88\\x67\\x5e\\xa8\\x8c\\xc4\\xfe\\xed\\x06\\xe8\\xb7\\xd1\\x58\\xa0\\x39\\x46\\x31\\x77\\xc9\\x41\\x36\\x25\\xf9\\x31\\x39\\x77\\x48\\x32\\x92\\xaf\\x69\\x8a\\x38\\xa5\\x54\\xd1\\x1a\\x21\\x5a\\xcc\\x74\\xce\\xca\\x37\\xd2\\x9e\\x7b\\x3a\\x0c\\xd2\\xe5\\xa2\\x94\\x74\\xb9\\x8d\\x84\\xd3\\xed\\x64\\x47\\x77\\xe1\\x7c\\xdf\\x8b\\xcc\\xdd\\x95\\x9c\\xcd\\xac\\xbe\\xc5\\xd5\\xd8\\x24\\x0f\\xcd\\x24\\x6e\\xad\\xb8\\x49\\xf9\\x88\\x9d\\x45\\x76\\x8b\\xb2\\x3f\\x20\\x3f\\xa3\\x94\\xf0\\x78\\x16\\x19\\xb7\\x5e\\xf3\\xaa\\x9e\\x36\\x03\\xf5\\x27\\xe1\\x47\\xd4\\x01\\x1b\\x98\\xa9\\xba\\xaf\\x75\\x47\\xf4\\x54\\xca\\xbf\\x4f\\x3e\\xec\\x3b\\x0c\\x61\\x1f\\x78\\x37\\x93\\xbb\\x63\\x1c\\x79\\x4c\\xa1\\x9b\\xc1\\xb7\\xa3\\x15\\xc9\\x63\\xba\\xc3\\x73\\x68\\xcb\\xcf\\x66\\x59\\x04\\xad\\xac\\x95\\x35\\x25\\xbc\\x35\\xbb\\x79\\x0d\\x7b\\x9d\\x02\\xc9\\xe8\\xac\\x7d\\x6d\\xd0\\xc5\\xdd\\x2f\\xc3\\xd8\\xc7\\x5c\\xaa\\xa6\\x9e\\xdb\\x35\\xf3\\xba\\x4c\\x34\\x73\\x82\\x2e\\x74\\x1a\\x8b\\xa6\\x32\\xb6\\x29\\x0f\\xd0\\x39\\xcd\\xf1\\xcf\\x25\\xf3\\xa2\\x26\\x81\\x50\\xae\\x2d\\x0c\\xde\\xf6\\x4b\\x08\\x98\\xb0\\x88\\x2a\\x25\\x0c\\xbf\\x0e\\x29\\x23\\x82\\x69\\x58\\xcb\\x19\\x74\\x44\\x09\\xa9\\xec\\xd7\\x51\\xa6\\x2f\\x57\\xfb\\x93\\x7e\\x59\\xcf\\x97\\xc9\\xf2\\xda\\xc9\\xab\\xbd\\x94\\xff\\xab\\x7d\\xb9\\x27\\x7d\\x4b\\xf4\\xf2\\xa1\\x9f\\x03\\x15\\xd6\\xff\\x17\\x0c\\x5c\\x56\\x5b\\xbe\\x84\\x04\\xf9\\x19\\x7d\\x17\\x7c\\x92\\x8d\\xbf\\xc6\\x2f\\xd2\\xf4\\x70\\xe2\\x2b\\xc8\\x6a\\xb7\\x7f\\xbc\\xba\\xaf\\xd8\\xf1\\xca\\xbf\\xc9\\xea\\x88\\x5a\\xe9\\x04\\x41\\xf1\\xcb\\x9e\\x2c\\x52\\x40\\x7d\\xdb\\x5d\\x33\\xd4\\x73\\xed\\xf7\\x25\\x4c\\x12\\x07\\x00\\x1d\\xca\\xb8\\x90\\x46\\x7b\\x16\\x5c\\x64\\xd6\\x09\\xa1\\x8c\\x0b\\xa9\\x74\\x50\\xf7\\x60\\xc1\\x45\\x56\\x0e\\xd5\\x8f\\x7d\\x26\\x84\\x32\\x1e\\xe2\\xd7\\x5f\\x8c\\x26\\x9b\\xc6\\xb9\\x80\\x9a\\xff\\xf1\\x0d\\x11\\x4c\\x46\\x1c\\xe3\\x42\\x2a\\x6d\\x3c\\x0b\\xae\\xfd\\x7a\\x04\\x4c\\x28\\xe3\\x42\\x2a\\x6d\\x3c\\x0b\\x2e\\xb2\\xad\\xb5\\xd6\\x5a\\x6b\\xad\\xb5\\xd6\\x5a\\x6b\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x9c\\x73\\xce\\x39\\xe7\\x9c\\x73\\xce\\x39\\xe7\\x7c\\xbf\\xbe\\x81\\x0b\\xa9\\x1e\\xfb\\xa5\\x7e\\xfb\\x98\\x71\\xd4\\xfb\\x8d\\x6b\\x49\\xf5\\xd8\\xf1\\x1f\\xc7\\xf2\\x4a\\xa8\\x6d\\xe8\\x4f\\xa8\\x18\\x75\\xb0\\xf3\\x61\\x9c\\x4b\\x33\\x90\\xb8\\xea\\x40\\xfc\\xc7\\xb1\\xb5\\x12\\x3f\\xbc\\x55\\x40\\x44\\x54\\x08\\x19\\x84\\xba\\xa0\\xd7\\x84\\x1e\\xc7\\xd8\\x4a\\x0d\\x38\\x3e\\x8a\\x30\\x09\\xe3\\x1a\\xe2\\x46\\xdd\\x6d\\xe3\\x17\\x46\\xea\\x6c\\x05\\x39\\xd2\\xbb\\x1c\\xe1\\x7f\\x24\\x61\\xbd\\xbc\\xff\\xf2\\x3d\\x81\\xc9\\x8c\\x4b\\x6c\\xe4\\xff\\x32\\x70\\x82\\x07\\x35\\x80\\xb7\\x79\\x0f\\xd4\\xf3\\x3b\\x40\\x27\\x57\\x2b\\x1e\\x09\\xee\\x19\\x94\\xa9\\x34\\x45\\x0b\\xc7\\x1f\\xf8\\x06\\x34\\xec\\x56\\x3a\\xd9\\xe6\\xb3\\x09\\xda\\x7c\\x17\\x89\\xb6\\x78\\x7a\\xfb\\xf4\\xb0\\x02\\x07\\x15\\x1d\\x6e\\x93\\x1f\\x06\\xbb\\xba\\x40\\xe4\\xc4\\xfb\\x60\\xd7\\x47\\x05\\x24\\xf9\\xe2\\x3e\\xb6\\x55\\xf2\\xbe\\x17\\x17\\xe4\\x51\\x6a\\xd0\\xca\\x1f\\x0d\\x82\\xb3\\xba\\x15\\xe8\\x36\\x33\\x61\\xd7\\x6f\\x97\\x02\\x62\\xcf\\xc1\\x6c\\x9f\\xca\\x14\\x2f\\xdc\\x06\\xb5\\x4f\\x10\\x5e\\x02\\x1b\\xc7\\x7c\\x8d\\xd9\\x35\\xcc\\x17\\x74\\x1e\\x00\\x00\\x01\\x00\\x00\\xff\\xff\\x5a\\xbd\\x00\\x8b\\xa8\\xc8\\x00\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff2() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff2,\n\t\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.woff2\",\n\t)\n}\n\nvar _vendor_roboto_mono_roboto_mono_css = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xbc\\x95\\x51\\x6b\\xdb\\x30\\x14\\x85\\xdf\\xf3\\x2b\\x2e\\xf4\\xc1\\x49\\x88\\x96\\xb0\\x56\\xd3\\x96\\x3e\\x6c\\xeb\\xe8\\x43\\xa1\\x61\\xd0\\xfc\\x80\\xa2\\x5a\\xd7\\x9e\\x98\\xac\\x1b\\x64\\x39\\x99\\x19\\xfb\\xef\\xc3\\xa9\\xdd\\x69\\x25\\x2f\\x76\\x6a\\x3d\\x5a\\x17\\xce\\x39\\x92\\xcf\\xc7\\x5d\\xce\\xc1\\xd1\\x13\\x79\\x62\\x05\\x59\\x62\\x97\\xab\\x15\\x30\\xc8\\x1d\\xe2\\xcf\\xc7\\xb4\\x76\\xda\\x18\\x9d\\x3e\\x1a\\xe9\\xb5\\x85\\xf9\\x72\\xf2\\x25\\x23\\xeb\\x59\\x26\\x53\\x84\\xdf\\x13\\x80\\xf6\\xab\\xd0\\xa6\\x5e\\x43\\xf2\\x70\\x94\\x81\\x0d\\x59\\x4a\\xae\\xbb\\x69\\xe9\\x6b\\x83\\x6b\\xb0\\xe4\\x0a\\x69\\x5e\\x4e\\x0f\\xa8\\xf3\\x1f\\x7e\\x0d\\x97\\xab\\x55\\x73\\x56\\xba\\x74\\x0d\\x95\\x33\\xd3\\x24\\x8c\\xb2\\xbf\\x62\\xa7\\x72\\x34\\x11\\xdf\\x21\\xf9\\x64\\x76\\x0d\\xcb\\x39\\xdc\\xdd\\x7e\\x82\\x6f\\x54\\xec\\xa4\\x87\\x0d\\x29\\x2c\\x9b\\x98\\xad\\xa2\\xa1\\x54\\x9a\\x69\\x98\\x0b\\xee\\x1b\\xdf\\x64\\xb6\\xf8\\x7f\\xd6\\x8c\\x58\\x37\\x9a\\x40\\xef\\x28\\x9f\\x2f\\x34\\x66\\xfa\\x57\\x32\\x83\\xac\\xb9\\xa7\\x9f\\x26\\x58\\x3c\\xa1\\x52\\xa8\\x18\\xed\\xd0\\xfa\\x7a\\x87\\x8d\\xe7\\x31\\xed\\x07\\x76\\x77\\xfb\\xf1\\x39\\x64\\x2f\\x9b\\x03\\x65\\xd9\\xfb\\xc0\\xa1\\xfd\\x3e\\xaa\\x6e\\xab\\x1d\\xba\\xe3\\xf5\\x9d\\x85\\x1b\\x47\\x87\\x12\\x5d\\x39\\xd0\\xe3\\x95\\x45\\xeb\\x70\\xbe\\xb6\\xf7\\xa1\\xb4\\x77\\x15\\x06\\xcf\\xb2\\x95\\x99\\x74\\x7a\\x01\\x5f\\xad\\x72\\xa4\\xd5\\x02\\xf4\\xf7\\xed\\x00\\x8f\\x72\\x9f\\x5f\\xfc\\xfb\\xa3\\x81\\x5d\\xb9\\xcf\\xdb\\xba\\xdc\\x63\\x2e\\xd3\\xba\\xd3\\xff\\x33\\x79\\x55\\x7f\\x87\\x79\\x65\\xa4\\x8b\\x88\\xc0\\xd5\\x10\\x04\\xda\\x98\\x43\\x31\\x38\\x0d\\xc0\\xc3\\xb3\\x68\\x4f\\x04\\x82\\x28\\x63\\x63\\xd0\\x59\\x8d\\x8d\\x42\\xe8\\x33\\x06\\x0e\\x9d\\xfe\\xd8\\x48\\x74\\x3e\\xe7\\x63\\xc1\\xa3\\x6e\\x05\\x3e\\x04\\x09\\x7e\\xc6\\x56\\xd8\\xa0\\xd2\\x55\\x71\\x9a\\x8a\\x97\\x59\\x9f\\x97\\xe7\\x71\\xf6\\x02\\x8f\\xb0\\x17\\xf8\\x88\\x7b\\x81\\x47\\xd8\\x0b\\xfc\\x4d\\xf6\\x82\\x88\\x0a\\x80\\x18\\x02\\x80\\x38\\x03\\x80\\x1b\\x32\\xea\\x74\\xfd\\xdb\\x49\\x9f\\x17\\x17\\x71\\xca\\x2f\\x22\\x94\\x5f\\x8c\\x58\\x7e\\x11\\xa1\\xfc\\x62\\x58\\xf9\\xff\\x06\\x00\\x00\\xff\\xff\\xf3\\x3a\\xae\\x36\\x14\\x0c\\x00\\x00\")\n\nfunc vendor_roboto_mono_roboto_mono_css() ([]byte, error) {\n\treturn bindata_read(\n\t\t_vendor_roboto_mono_roboto_mono_css,\n\t\t\"vendor/roboto-mono/roboto-mono.css\",\n\t)\n}\n\n// Asset loads and returns the asset for the given name.\n// It returns an error if the asset could not be found or\n// could not be loaded.\nfunc Asset(name string) ([]byte, error) {\n\tcannonicalName := strings.Replace(name, \"\\\\\", \"/\", -1)\n\tif f, ok := _bindata[cannonicalName]; ok {\n\t\treturn f()\n\t}\n\treturn nil, fmt.Errorf(\"Asset %s not found\", name)\n}\n\n// AssetNames returns the names of the assets.\nfunc AssetNames() []string {\n\tnames := make([]string, 0, len(_bindata))\n\tfor name := range _bindata {\n\t\tnames = append(names, name)\n\t}\n\treturn names\n}\n\n// _bindata is a table, holding each asset generator, mapped to its name.\nvar _bindata = map[string]func() ([]byte, error){\n\t\"app.js\": app_js,\n\t\"index.html\": index_html,\n\t\"styles.css\": styles_css,\n\t\"vendor/codemirror/codemirror.css\": vendor_codemirror_codemirror_css,\n\t\"vendor/codemirror/codemirror.js\": vendor_codemirror_codemirror_js,\n\t\"vendor/codemirror/matchbrackets.js\": vendor_codemirror_matchbrackets_js,\n\t\"vendor/codemirror/material.css\": vendor_codemirror_material_css,\n\t\"vendor/codemirror/simplescrollbars.js\": vendor_codemirror_simplescrollbars_js,\n\t\"vendor/material-icons/MaterialIcons-Regular.eot\": vendor_material_icons_materialicons_regular_eot,\n\t\"vendor/material-icons/MaterialIcons-Regular.ijmap\": vendor_material_icons_materialicons_regular_ijmap,\n\t\"vendor/material-icons/MaterialIcons-Regular.svg\": vendor_material_icons_materialicons_regular_svg,\n\t\"vendor/material-icons/MaterialIcons-Regular.ttf\": vendor_material_icons_materialicons_regular_ttf,\n\t\"vendor/material-icons/MaterialIcons-Regular.woff\": vendor_material_icons_materialicons_regular_woff,\n\t\"vendor/material-icons/MaterialIcons-Regular.woff2\": vendor_material_icons_materialicons_regular_woff2,\n\t\"vendor/material-icons/README.md\": vendor_material_icons_readme_md,\n\t\"vendor/material-icons/codepoints\": vendor_material_icons_codepoints,\n\t\"vendor/material-icons/material-icons.css\": vendor_material_icons_material_icons_css,\n\t\"vendor/picodom/picodom.js\": vendor_picodom_picodom_js,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.eot\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_eot,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.svg\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_svg,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.ttf\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_ttf,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.woff\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-300.woff2\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff2,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.eot\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_eot,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.svg\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_svg,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.ttf\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_ttf,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.woff\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-500.woff2\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff2,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.eot\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_eot,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.svg\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_svg,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.ttf\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_ttf,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.woff\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-700.woff2\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff2,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.eot\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_eot,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.svg\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_svg,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.ttf\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_ttf,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.woff\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff,\n\t\"vendor/roboto-mono/roboto-mono-v4-greek_cyrillic_latin-regular.woff2\": vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff2,\n\t\"vendor/roboto-mono/roboto-mono.css\": vendor_roboto_mono_roboto_mono_css,\n}\n// AssetDir returns the file names below a certain\n// directory embedded in the file by go-bindata.\n// For example if you run go-bindata on data/... and data contains the\n// following hierarchy:\n//     data/\n//       foo.txt\n//       img/\n//         a.png\n//         b.png\n// then AssetDir(\"data\") would return []string{\"foo.txt\", \"img\"}\n// AssetDir(\"data/img\") would return []string{\"a.png\", \"b.png\"}\n// AssetDir(\"foo.txt\") and AssetDir(\"notexist\") would return an error\n// AssetDir(\"\") will return []string{\"data\"}.\nfunc AssetDir(name string) ([]string, error) {\n\tnode := _bintree\n\tif len(name) != 0 {\n\t\tcannonicalName := strings.Replace(name, \"\\\\\", \"/\", -1)\n\t\tpathList := strings.Split(cannonicalName, \"/\")\n\t\tfor _, p := range pathList {\n\t\t\tnode = node.Children[p]\n\t\t\tif node == nil {\n\t\t\t\treturn nil, fmt.Errorf(\"Asset %s not found\", name)\n\t\t\t}\n\t\t}\n\t}\n\tif node.Func != nil {\n\t\treturn nil, fmt.Errorf(\"Asset %s not found\", name)\n\t}\n\trv := make([]string, 0, len(node.Children))\n\tfor name := range node.Children {\n\t\trv = append(rv, name)\n\t}\n\treturn rv, nil\n}\n\ntype _bintree_t struct {\n\tFunc func() ([]byte, error)\n\tChildren map[string]*_bintree_t\n}\nvar _bintree = &_bintree_t{nil, map[string]*_bintree_t{\n\t\"app.js\": &_bintree_t{app_js, map[string]*_bintree_t{\n\t}},\n\t\"index.html\": &_bintree_t{index_html, map[string]*_bintree_t{\n\t}},\n\t\"styles.css\": &_bintree_t{styles_css, map[string]*_bintree_t{\n\t}},\n\t\"vendor\": &_bintree_t{nil, map[string]*_bintree_t{\n\t\t\"codemirror\": &_bintree_t{nil, map[string]*_bintree_t{\n\t\t\t\"codemirror.css\": &_bintree_t{vendor_codemirror_codemirror_css, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"codemirror.js\": &_bintree_t{vendor_codemirror_codemirror_js, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"matchbrackets.js\": &_bintree_t{vendor_codemirror_matchbrackets_js, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"material.css\": &_bintree_t{vendor_codemirror_material_css, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"simplescrollbars.js\": &_bintree_t{vendor_codemirror_simplescrollbars_js, map[string]*_bintree_t{\n\t\t\t}},\n\t\t}},\n\t\t\"material-icons\": &_bintree_t{nil, map[string]*_bintree_t{\n\t\t\t\"MaterialIcons-Regular.eot\": &_bintree_t{vendor_material_icons_materialicons_regular_eot, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"MaterialIcons-Regular.ijmap\": &_bintree_t{vendor_material_icons_materialicons_regular_ijmap, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"MaterialIcons-Regular.svg\": &_bintree_t{vendor_material_icons_materialicons_regular_svg, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"MaterialIcons-Regular.ttf\": &_bintree_t{vendor_material_icons_materialicons_regular_ttf, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"MaterialIcons-Regular.woff\": &_bintree_t{vendor_material_icons_materialicons_regular_woff, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"MaterialIcons-Regular.woff2\": &_bintree_t{vendor_material_icons_materialicons_regular_woff2, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"README.md\": &_bintree_t{vendor_material_icons_readme_md, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"codepoints\": &_bintree_t{vendor_material_icons_codepoints, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"material-icons.css\": &_bintree_t{vendor_material_icons_material_icons_css, map[string]*_bintree_t{\n\t\t\t}},\n\t\t}},\n\t\t\"picodom\": &_bintree_t{nil, map[string]*_bintree_t{\n\t\t\t\"picodom.js\": &_bintree_t{vendor_picodom_picodom_js, map[string]*_bintree_t{\n\t\t\t}},\n\t\t}},\n\t\t\"roboto-mono\": &_bintree_t{nil, map[string]*_bintree_t{\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-300.eot\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_eot, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-300.svg\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_svg, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-300.ttf\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_ttf, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-300.woff\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-300.woff2\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_300_woff2, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-500.eot\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_eot, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-500.svg\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_svg, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-500.ttf\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_ttf, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-500.woff\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-500.woff2\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_500_woff2, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-700.eot\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_eot, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-700.svg\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_svg, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-700.ttf\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_ttf, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-700.woff\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-700.woff2\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_700_woff2, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-regular.eot\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_eot, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-regular.svg\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_svg, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-regular.ttf\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_ttf, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-regular.woff\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono-v4-greek_cyrillic_latin-regular.woff2\": &_bintree_t{vendor_roboto_mono_roboto_mono_v4_greek_cyrillic_latin_regular_woff2, map[string]*_bintree_t{\n\t\t\t}},\n\t\t\t\"roboto-mono.css\": &_bintree_t{vendor_roboto_mono_roboto_mono_css, map[string]*_bintree_t{\n\t\t\t}},\n\t\t}},\n\t}},\n}}\n"
  },
  {
    "path": "cmd/glitch/gen.go",
    "content": "// +build gen\n\npackage main\n\nimport (\n\t\"log\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"regexp\"\n\n\t\"github.com/jteeuwen/go-bindata\"\n)\n\nfunc main() {\n\tcfg := bindata.NewConfig()\n\tcfg.Package = \"main\"\n\tcfg.Output = \"assets.go\"\n\twd, err := os.Getwd()\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tuiDir, err := filepath.Abs(filepath.Clean(filepath.Join(wd, \"../../ui\")))\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tcfg.Prefix = uiDir\n\tcfg.Input = []bindata.InputConfig{{Path: uiDir, Recursive: true}}\n\tcfg.Ignore = []*regexp.Regexp{\n\t\t// Favicons are not used\n\t\tregexp.MustCompile(`favicon\\.png`),\n\t\tregexp.MustCompile(`glitch180x180\\.png`),\n\t\tregexp.MustCompile(`glitch192x192\\.png`),\n\t\t// WebAssembly and asm.js files are not used in desktop variant\n\t\tregexp.MustCompile(`glitch-asm\\.js`),\n\t\tregexp.MustCompile(`glitch-asm\\.js\\.mem`),\n\t\tregexp.MustCompile(`glitch-loader\\.js`),\n\t\tregexp.MustCompile(`glitch\\.wasm`),\n\t}\n\tif err := bindata.Translate(cfg); err != nil {\n\t\tlog.Fatal(\"bindata erro:\", err)\n\t}\n}\n"
  },
  {
    "path": "cmd/glitch/loader.go",
    "content": "package main\n\nimport (\n\t\"io/ioutil\"\n\t\"math\"\n\t\"path/filepath\"\n\t\"sort\"\n\t\"strings\"\n\n\t\"github.com/naivesound/glitch/core\"\n)\n\ntype sampleLoader struct {\n\tsamples map[string][][]float32\n}\n\nfunc (loader *sampleLoader) dir() string {\n\treturn \"samples\"\n}\n\nfunc (loader *sampleLoader) poll() {\n\tloader.samples = map[string][][]float32{}\n\tfor sample, variants := range loader.scan() {\n\t\tloader.samples[sample] = make([][]float32, len(variants), len(variants))\n\t\tfor i, variant := range variants {\n\t\t\tloader.samples[sample][i] = loader.read(variant)\n\t\t}\n\t\tcore.AddSample(sample)\n\t}\n}\n\nfunc (loader *sampleLoader) read(name string) []float32 {\n\tb, err := ioutil.ReadFile(name)\n\tif err != nil {\n\t\treturn nil\n\t}\n\tf := []float32{}\n\tb = b[0x80:]\n\tfor i := 0; i+1 < len(b); i = i + 2 {\n\t\tx := float32(int(b[i])+int(int8(b[i+1]))*256) / float32(0x8000)\n\t\tf = append(f, x)\n\t}\n\treturn f\n}\n\nfunc (loader *sampleLoader) scan() (samples map[string][]string) {\n\tsamples = map[string][]string{}\n\tfiles, err := ioutil.ReadDir(loader.dir())\n\tif err != nil {\n\t\treturn samples\n\t}\n\n\tfor _, file := range files {\n\t\tif file.IsDir() {\n\t\t\tname := file.Name()\n\t\t\twavs, err := ioutil.ReadDir(filepath.Join(loader.dir(), name))\n\t\t\tif err != nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tvariants := []string{}\n\t\t\tfor _, wav := range wavs {\n\t\t\t\tif !wav.IsDir() && strings.ToLower(filepath.Ext(wav.Name())) == \".wav\" {\n\t\t\t\t\tvariants = append(variants, filepath.Join(loader.dir(), name, wav.Name()))\n\t\t\t\t}\n\t\t\t}\n\t\t\tsort.Strings(variants)\n\t\t\tsamples[name] = variants\n\t\t}\n\t}\n\treturn samples\n}\n\nfunc (loader *sampleLoader) LoadSample(name string, variant, frame int) float32 {\n\tsamples, ok := loader.samples[name]\n\tif !ok {\n\t\treturn float32(math.NaN())\n\t}\n\tif variant >= 0 && variant < len(samples) && frame >= 0 && frame < len(samples[variant]) {\n\t\treturn loader.samples[name][variant][frame]\n\t}\n\treturn float32(math.NaN())\n}\n"
  },
  {
    "path": "cmd/glitch/main.go",
    "content": "package main\n\n//go:generate go run -tags gen gen.go\n\nimport (\n\t\"encoding/json\"\n\t\"io/ioutil\"\n\t\"log\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"runtime\"\n)\n\nconst (\n\tDefaultSampleRate = 44100.0\n\tDefaultBufSz      = 512\n)\n\ntype Config struct {\n\tFilename    string          `json:\"filename\"`\n\tMIDI        map[string]bool `json:\"midi\"`\n\tAudioDevice int             `json:\"audioDevice\"`\n\tSampleRate  int             `json:\"sampleRate\"`\n\tBufferSize  int             `json:\"bufferSize\"`\n}\n\nvar DefaultConfig = Config{\n\tFilename:    filepath.Join(os.TempDir(), \"glitch\", \"draft.glitch\"),\n\tMIDI:        map[string]bool{},\n\tAudioDevice: 0,\n\tSampleRate:  DefaultSampleRate,\n\tBufferSize:  DefaultBufSz,\n}\n\nfunc configPath() (path string) {\n\tswitch runtime.GOOS {\n\tcase \"darwin\":\n\t\tpath = filepath.Join(os.Getenv(\"HOME\"), \"/Library/Application Support\")\n\tcase \"windows\":\n\t\tpath = os.Getenv(\"APPDATA\")\n\tdefault:\n\t\tif os.Getenv(\"XDG_CONFIG_HOME\") != \"\" {\n\t\t\tpath = os.Getenv(\"XDG_CONFIG_HOME\")\n\t\t} else {\n\t\t\tpath = filepath.Join(os.Getenv(\"HOME\"), \".config\")\n\t\t}\n\t}\n\tpath = filepath.Join(path, \"glitch\", \"config.json\")\n\tos.MkdirAll(filepath.Dir(path), 0755)\n\treturn path\n}\n\nfunc NewConfig() (c Config) {\n\tif b, err := ioutil.ReadFile(configPath()); err != nil {\n\t\treturn DefaultConfig\n\t} else if err := json.Unmarshal(b, &c); err != nil {\n\t\treturn DefaultConfig\n\t}\n\treturn c\n}\n\nfunc (c *Config) Save() {\n\tif b, err := json.Marshal(c); err != nil {\n\t\tlog.Println(err)\n\t} else if err := ioutil.WriteFile(configPath(), b, 0644); err != nil {\n\t\tlog.Println(err)\n\t}\n}\n\nfunc main() {\n\tc := NewConfig()\n\tapp, err := NewApp(&c)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer app.Destroy()\n\tapp.Run()\n}\n"
  },
  {
    "path": "cmd/glitch/ui.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"io\"\n\t\"log\"\n\t\"mime\"\n\t\"net\"\n\t\"net/http\"\n\t\"path/filepath\"\n)\n\nconst (\n\twindowWidth  = 640\n\twindowHeight = 480\n)\n\nfunc startServer() string {\n\tln, err := net.Listen(\"tcp\", \"127.0.0.1:0\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tgo func() {\n\t\tdefer ln.Close()\n\t\thttp.HandleFunc(\"/\", func(w http.ResponseWriter, r *http.Request) {\n\t\t\tpath := r.URL.Path\n\t\t\tif len(path) > 0 && path[0] == '/' {\n\t\t\t\tpath = path[1:]\n\t\t\t}\n\t\t\tif path == \"\" {\n\t\t\t\tpath = \"index.html\"\n\t\t\t}\n\t\t\tif bs, err := Asset(path); err != nil {\n\t\t\t\tw.WriteHeader(http.StatusNotFound)\n\t\t\t} else {\n\t\t\t\tw.Header().Add(\"Content-Type\", mime.TypeByExtension(filepath.Ext(path)))\n\t\t\t\tio.Copy(w, bytes.NewBuffer(bs))\n\t\t\t}\n\t\t})\n\t\tlog.Fatal(http.Serve(ln, nil))\n\t}()\n\treturn \"http://\" + ln.Addr().String()\n}\n"
  },
  {
    "path": "core/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.2)\n\nproject(glitch-core)\n\nadd_library(glitch-core STATIC glitch.c)\nset_target_properties(glitch-core PROPERTIES C_STANDARD 99)\n\nenable_testing()\n\nadd_executable(glitch_test glitch_test.c)\nset_target_properties(glitch_test PROPERTIES C_STANDARD 99)\ntarget_link_libraries(glitch_test m)\nadd_test(glitch_test glitch_test)\n"
  },
  {
    "path": "core/expr.h",
    "content": "#ifndef EXPR_H\n#define EXPR_H\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n#include <ctype.h> /* for isspace */\n#include <limits.h>\n#include <math.h> /* for pow */\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n\n/*\n * Simple expandable vector implementation\n */\nstatic int vec_expand(char **buf, int *length, int *cap, int memsz) {\n  if (*length + 1 > *cap) {\n    void *ptr;\n    int n = (*cap == 0) ? 1 : *cap << 1;\n    ptr = realloc(*buf, n * memsz);\n    if (ptr == NULL) {\n      return -1; /* allocation failed */\n    }\n    *buf = (char *)ptr;\n    *cap = n;\n  }\n  return 0;\n}\n#define vec(T)                                                                 \\\n  struct {                                                                     \\\n    T *buf;                                                                    \\\n    int len;                                                                   \\\n    int cap;                                                                   \\\n  }\n#define vec_init()                                                             \\\n  { NULL, 0, 0 }\n#define vec_len(v) ((v)->len)\n#define vec_unpack(v)                                                          \\\n  (char **)&(v)->buf, &(v)->len, &(v)->cap, sizeof(*(v)->buf)\n#define vec_push(v, val)                                                       \\\n  vec_expand(vec_unpack(v)) ? -1 : ((v)->buf[(v)->len++] = (val), 0)\n#define vec_nth(v, i) (v)->buf[i]\n#define vec_peek(v) (v)->buf[(v)->len - 1]\n#define vec_pop(v) (v)->buf[--(v)->len]\n#define vec_free(v) (free((v)->buf), (v)->buf = NULL, (v)->len = (v)->cap = 0)\n#define vec_foreach(v, var, iter)                                              \\\n  if ((v)->len > 0)                                                            \\\n    for ((iter) = 0; (iter) < (v)->len && (((var) = (v)->buf[(iter)]), 1);     \\\n         ++(iter))\n\n/*\n * Expression data types\n */\nstruct expr;\nstruct expr_func;\n\nenum expr_type {\n  OP_UNKNOWN,\n  OP_UNARY_MINUS,\n  OP_UNARY_LOGICAL_NOT,\n  OP_UNARY_BITWISE_NOT,\n\n  OP_POWER,\n  OP_DIVIDE,\n  OP_MULTIPLY,\n  OP_REMAINDER,\n\n  OP_PLUS,\n  OP_MINUS,\n\n  OP_SHL,\n  OP_SHR,\n\n  OP_LT,\n  OP_LE,\n  OP_GT,\n  OP_GE,\n  OP_EQ,\n  OP_NE,\n\n  OP_BITWISE_AND,\n  OP_BITWISE_OR,\n  OP_BITWISE_XOR,\n\n  OP_LOGICAL_AND,\n  OP_LOGICAL_OR,\n\n  OP_ASSIGN,\n  OP_COMMA,\n\n  OP_CONST,\n  OP_VAR,\n  OP_FUNC,\n};\n\nstatic int prec[] = {0, 1, 1, 1, 2, 2, 2, 2, 3,  3,  4,  4, 5, 5,\n                     5, 5, 5, 5, 6, 7, 8, 9, 10, 11, 12, 0, 0, 0};\n\ntypedef vec(struct expr) vec_expr_t;\ntypedef void (*exprfn_cleanup_t)(struct expr_func *f, void *context);\ntypedef float (*exprfn_t)(struct expr_func *f, vec_expr_t *args, void *context);\n\nstruct expr {\n  enum expr_type type;\n  union {\n    struct {\n      float value;\n    } num;\n    struct {\n      float *value;\n    } var;\n    struct {\n      vec_expr_t args;\n    } op;\n    struct {\n      struct expr_func *f;\n      vec_expr_t args;\n      void *context;\n    } func;\n  } param;\n};\n\n#define expr_init()                                                            \\\n  { .type = (enum expr_type)0 }\n\nstruct expr_string {\n  const char *s;\n  int n;\n};\nstruct expr_arg {\n  int oslen;\n  int eslen;\n  vec_expr_t args;\n};\n\ntypedef vec(struct expr_string) vec_str_t;\ntypedef vec(struct expr_arg) vec_arg_t;\n\nstatic int expr_is_unary(enum expr_type op) {\n  return op == OP_UNARY_MINUS || op == OP_UNARY_LOGICAL_NOT ||\n         op == OP_UNARY_BITWISE_NOT;\n}\n\nstatic int expr_is_binary(enum expr_type op) {\n  return !expr_is_unary(op) && op != OP_CONST && op != OP_VAR &&\n         op != OP_FUNC && op != OP_UNKNOWN;\n}\n\nstatic int expr_prec(enum expr_type a, enum expr_type b) {\n  int left =\n      expr_is_binary(a) && a != OP_ASSIGN && a != OP_POWER && a != OP_COMMA;\n  return (left && prec[a] >= prec[b]) || (prec[a] > prec[b]);\n}\n\n#define isfirstvarchr(c)                                                       \\\n  (((unsigned char)c >= '@' && c != '^' && c != '|') || c == '$')\n#define isvarchr(c)                                                            \\\n  (((unsigned char)c >= '@' && c != '^' && c != '|') || c == '$' ||            \\\n   c == '#' || (c >= '0' && c <= '9'))\n\nstatic struct {\n  const char *s;\n  const enum expr_type op;\n} OPS[] = {\n    {\"-u\", OP_UNARY_MINUS},\n    {\"!u\", OP_UNARY_LOGICAL_NOT},\n    {\"^u\", OP_UNARY_BITWISE_NOT},\n    {\"**\", OP_POWER},\n    {\"*\", OP_MULTIPLY},\n    {\"/\", OP_DIVIDE},\n    {\"%\", OP_REMAINDER},\n    {\"+\", OP_PLUS},\n    {\"-\", OP_MINUS},\n    {\"<<\", OP_SHL},\n    {\">>\", OP_SHR},\n    {\"<\", OP_LT},\n    {\"<=\", OP_LE},\n    {\">\", OP_GT},\n    {\">=\", OP_GE},\n    {\"==\", OP_EQ},\n    {\"!=\", OP_NE},\n    {\"&\", OP_BITWISE_AND},\n    {\"|\", OP_BITWISE_OR},\n    {\"^\", OP_BITWISE_XOR},\n    {\"&&\", OP_LOGICAL_AND},\n    {\"||\", OP_LOGICAL_OR},\n    {\"=\", OP_ASSIGN},\n    {\",\", OP_COMMA},\n\n    /* These are used by lexer and must be ignored by parser, so we put\n       them at the end */\n    {\"-\", OP_UNARY_MINUS},\n    {\"!\", OP_UNARY_LOGICAL_NOT},\n    {\"^\", OP_UNARY_BITWISE_NOT},\n};\n\nstatic enum expr_type expr_op(const char *s, size_t len, int unary) {\n  for (unsigned int i = 0; i < sizeof(OPS) / sizeof(OPS[0]); i++) {\n    if (strlen(OPS[i].s) == len && strncmp(OPS[i].s, s, len) == 0 &&\n        (unary == -1 || expr_is_unary(OPS[i].op) == unary)) {\n      return OPS[i].op;\n    }\n  }\n  return OP_UNKNOWN;\n}\n\nstatic float expr_parse_number(const char *s, size_t len) {\n  float num = 0;\n  unsigned int frac = 0;\n  unsigned int digits = 0;\n  for (unsigned int i = 0; i < len; i++) {\n    if (s[i] == '.' && frac == 0) {\n      frac++;\n      continue;\n    }\n    if (isdigit(s[i])) {\n      digits++;\n      if (frac > 0) {\n        frac++;\n      }\n      num = num * 10 + (s[i] - '0');\n    } else {\n      return NAN;\n    }\n  }\n  while (frac > 1) {\n    num = num / 10;\n    frac--;\n  }\n  return (digits > 0 ? num : NAN);\n}\n\n/*\n * Functions\n */\nstruct expr_func {\n  const char *name;\n  exprfn_t f;\n  exprfn_cleanup_t cleanup;\n  size_t ctxsz;\n};\n\nstatic struct expr_func *expr_func(struct expr_func *funcs, const char *s,\n                                   size_t len) {\n  for (struct expr_func *f = funcs; f->name; f++) {\n    if (strlen(f->name) == len && strncmp(f->name, s, len) == 0) {\n      return f;\n    }\n  }\n  return NULL;\n}\n\n/*\n * Variables\n */\nstruct expr_var {\n  float value;\n  struct expr_var *next;\n  char name[];\n};\n\nstruct expr_var_list {\n  struct expr_var *head;\n};\n\nstatic struct expr_var *expr_var(struct expr_var_list *vars, const char *s,\n                                 size_t len) {\n  struct expr_var *v = NULL;\n  if (len == 0 || !isfirstvarchr(*s)) {\n    return NULL;\n  }\n  for (v = vars->head; v; v = v->next) {\n    if (strlen(v->name) == len && strncmp(v->name, s, len) == 0) {\n      return v;\n    }\n  }\n  v = (struct expr_var *)calloc(1, sizeof(struct expr_var) + len + 1);\n  if (v == NULL) {\n    return NULL; /* allocation failed */\n  }\n  v->next = vars->head;\n  v->value = 0;\n  strncpy(v->name, s, len);\n  v->name[len] = '\\0';\n  vars->head = v;\n  return v;\n}\n\nstatic int to_int(float x) {\n  if (isnan(x)) {\n    return 0;\n  } else if (isinf(x) != 0) {\n    return INT_MAX * isinf(x);\n  } else {\n    return (int)x;\n  }\n}\n\nstatic float expr_eval(struct expr *e) {\n  float n;\n  switch (e->type) {\n  case OP_UNARY_MINUS:\n    return -(expr_eval(&e->param.op.args.buf[0]));\n  case OP_UNARY_LOGICAL_NOT:\n    return !(expr_eval(&e->param.op.args.buf[0]));\n  case OP_UNARY_BITWISE_NOT:\n    return ~(to_int(expr_eval(&e->param.op.args.buf[0])));\n  case OP_POWER:\n    return powf(expr_eval(&e->param.op.args.buf[0]),\n                expr_eval(&e->param.op.args.buf[1]));\n  case OP_MULTIPLY:\n    return expr_eval(&e->param.op.args.buf[0]) *\n           expr_eval(&e->param.op.args.buf[1]);\n  case OP_DIVIDE:\n    return expr_eval(&e->param.op.args.buf[0]) /\n           expr_eval(&e->param.op.args.buf[1]);\n  case OP_REMAINDER:\n    return fmodf(expr_eval(&e->param.op.args.buf[0]),\n                 expr_eval(&e->param.op.args.buf[1]));\n  case OP_PLUS:\n    return expr_eval(&e->param.op.args.buf[0]) +\n           expr_eval(&e->param.op.args.buf[1]);\n  case OP_MINUS:\n    return expr_eval(&e->param.op.args.buf[0]) -\n           expr_eval(&e->param.op.args.buf[1]);\n  case OP_SHL:\n    return to_int(expr_eval(&e->param.op.args.buf[0]))\n           << to_int(expr_eval(&e->param.op.args.buf[1]));\n  case OP_SHR:\n    return to_int(expr_eval(&e->param.op.args.buf[0])) >>\n           to_int(expr_eval(&e->param.op.args.buf[1]));\n  case OP_LT:\n    return expr_eval(&e->param.op.args.buf[0]) <\n           expr_eval(&e->param.op.args.buf[1]);\n  case OP_LE:\n    return expr_eval(&e->param.op.args.buf[0]) <=\n           expr_eval(&e->param.op.args.buf[1]);\n  case OP_GT:\n    return expr_eval(&e->param.op.args.buf[0]) >\n           expr_eval(&e->param.op.args.buf[1]);\n  case OP_GE:\n    return expr_eval(&e->param.op.args.buf[0]) >=\n           expr_eval(&e->param.op.args.buf[1]);\n  case OP_EQ:\n    return expr_eval(&e->param.op.args.buf[0]) ==\n           expr_eval(&e->param.op.args.buf[1]);\n  case OP_NE:\n    return expr_eval(&e->param.op.args.buf[0]) !=\n           expr_eval(&e->param.op.args.buf[1]);\n  case OP_BITWISE_AND:\n    return to_int(expr_eval(&e->param.op.args.buf[0])) &\n           to_int(expr_eval(&e->param.op.args.buf[1]));\n  case OP_BITWISE_OR:\n    return to_int(expr_eval(&e->param.op.args.buf[0])) |\n           to_int(expr_eval(&e->param.op.args.buf[1]));\n  case OP_BITWISE_XOR:\n    return to_int(expr_eval(&e->param.op.args.buf[0])) ^\n           to_int(expr_eval(&e->param.op.args.buf[1]));\n  case OP_LOGICAL_AND:\n    n = expr_eval(&e->param.op.args.buf[0]);\n    if (n != 0) {\n      n = expr_eval(&e->param.op.args.buf[1]);\n      if (n != 0) {\n        return n;\n      }\n    }\n    return 0;\n  case OP_LOGICAL_OR:\n    n = expr_eval(&e->param.op.args.buf[0]);\n    if (n != 0 && !isnan(n)) {\n      return n;\n    } else {\n      n = expr_eval(&e->param.op.args.buf[1]);\n      if (n != 0) {\n        return n;\n      }\n    }\n    return 0;\n  case OP_ASSIGN:\n    n = expr_eval(&e->param.op.args.buf[1]);\n    if (vec_nth(&e->param.op.args, 0).type == OP_VAR) {\n      *e->param.op.args.buf[0].param.var.value = n;\n    }\n    return n;\n  case OP_COMMA:\n    expr_eval(&e->param.op.args.buf[0]);\n    return expr_eval(&e->param.op.args.buf[1]);\n  case OP_CONST:\n    return e->param.num.value;\n  case OP_VAR:\n    return *e->param.var.value;\n  case OP_FUNC:\n    return e->param.func.f->f(e->param.func.f, &e->param.func.args,\n                              e->param.func.context);\n  default:\n    return NAN;\n  }\n}\n\n#define EXPR_TOP (1 << 0)\n#define EXPR_TOPEN (1 << 1)\n#define EXPR_TCLOSE (1 << 2)\n#define EXPR_TNUMBER (1 << 3)\n#define EXPR_TWORD (1 << 4)\n#define EXPR_TDEFAULT (EXPR_TOPEN | EXPR_TNUMBER | EXPR_TWORD)\n\n#define EXPR_UNARY (1 << 5)\n#define EXPR_COMMA (1 << 6)\n\nstatic int expr_next_token(const char *s, size_t len, int *flags) {\n  unsigned int i = 0;\n  if (len == 0) {\n    return 0;\n  }\n  char c = s[0];\n  if (c == '#') {\n    for (; i < len && s[i] != '\\n'; i++)\n      ;\n    return i;\n  } else if (c == '\\n') {\n    for (; i < len && isspace(s[i]); i++)\n      ;\n    if (*flags & EXPR_TOP) {\n      if (i == len || s[i] == ')') {\n        *flags = *flags & (~EXPR_COMMA);\n      } else {\n        *flags = EXPR_TNUMBER | EXPR_TWORD | EXPR_TOPEN | EXPR_COMMA;\n      }\n    }\n    return i;\n  } else if (isspace(c)) {\n    while (i < len && isspace(s[i]) && s[i] != '\\n') {\n      i++;\n    }\n    return i;\n  } else if (isdigit(c)) {\n    if ((*flags & EXPR_TNUMBER) == 0) {\n      return -1; // unexpected number\n    }\n    *flags = EXPR_TOP | EXPR_TCLOSE;\n    while ((c == '.' || isdigit(c)) && i < len) {\n      i++;\n      c = s[i];\n    }\n    return i;\n  } else if (isfirstvarchr(c)) {\n    if ((*flags & EXPR_TWORD) == 0) {\n      return -2; // unexpected word\n    }\n    *flags = EXPR_TOP | EXPR_TOPEN | EXPR_TCLOSE;\n    while ((isvarchr(c)) && i < len) {\n      i++;\n      c = s[i];\n    }\n    return i;\n  } else if (c == '(' || c == ')') {\n    if (c == '(' && (*flags & EXPR_TOPEN) != 0) {\n      *flags = EXPR_TNUMBER | EXPR_TWORD | EXPR_TOPEN | EXPR_TCLOSE;\n    } else if (c == ')' && (*flags & EXPR_TCLOSE) != 0) {\n      *flags = EXPR_TOP | EXPR_TCLOSE;\n    } else {\n      return -3; // unexpected parenthesis\n    }\n    return 1;\n  } else {\n    if ((*flags & EXPR_TOP) == 0) {\n      if (expr_op(&c, 1, 1) == OP_UNKNOWN) {\n        return -4; // missing expected operand\n      }\n      *flags = EXPR_TNUMBER | EXPR_TWORD | EXPR_TOPEN | EXPR_UNARY;\n      return 1;\n    } else {\n      int found = 0;\n      while (!isvarchr(c) && !isspace(c) && c != '(' && c != ')' && i < len) {\n        if (expr_op(s, i + 1, 0) != OP_UNKNOWN) {\n          found = 1;\n        } else if (found) {\n          break;\n        }\n        i++;\n        c = s[i];\n      }\n      if (!found) {\n        return -5; // unknown operator\n      }\n      *flags = EXPR_TNUMBER | EXPR_TWORD | EXPR_TOPEN;\n      return i;\n    }\n  }\n}\n\n#define EXPR_PAREN_ALLOWED 0\n#define EXPR_PAREN_EXPECTED 1\n#define EXPR_PAREN_FORBIDDEN 2\n\nstatic int expr_bind(const char *s, size_t len, vec_expr_t *es) {\n  enum expr_type op = expr_op(s, len, -1);\n  if (op == OP_UNKNOWN) {\n    return -1;\n  }\n\n  if (expr_is_unary(op)) {\n    if (vec_len(es) < 1) {\n      return -1;\n    }\n    struct expr arg = vec_pop(es);\n    struct expr unary = expr_init();\n    unary.type = op;\n    vec_push(&unary.param.op.args, arg);\n    vec_push(es, unary);\n  } else {\n    if (vec_len(es) < 2) {\n      return -1;\n    }\n    struct expr b = vec_pop(es);\n    struct expr a = vec_pop(es);\n    struct expr binary = expr_init();\n    binary.type = op;\n    if (op == OP_ASSIGN && a.type != OP_VAR) {\n      return -1; /* Bad assignment */\n    }\n    vec_push(&binary.param.op.args, a);\n    vec_push(&binary.param.op.args, b);\n    vec_push(es, binary);\n  }\n  return 0;\n}\n\nstatic struct expr expr_const(float value) {\n  struct expr e = expr_init();\n  e.type = OP_CONST;\n  e.param.num.value = value;\n  return e;\n}\n\nstatic struct expr expr_varref(struct expr_var *v) {\n  struct expr e = expr_init();\n  e.type = OP_VAR;\n  e.param.var.value = &v->value;\n  return e;\n}\n\nstatic struct expr expr_binary(enum expr_type type, struct expr a,\n                               struct expr b) {\n  struct expr e = expr_init();\n  e.type = type;\n  vec_push(&e.param.op.args, a);\n  vec_push(&e.param.op.args, b);\n  return e;\n}\n\nstatic inline void expr_copy(struct expr *dst, struct expr *src) {\n  int i;\n  struct expr arg;\n  dst->type = src->type;\n  if (src->type == OP_FUNC) {\n    dst->param.func.f = src->param.func.f;\n    vec_foreach(&src->param.func.args, arg, i) {\n      struct expr tmp = expr_init();\n      expr_copy(&tmp, &arg);\n      vec_push(&dst->param.func.args, tmp);\n    }\n    if (src->param.func.f->ctxsz > 0) {\n      dst->param.func.context = calloc(1, src->param.func.f->ctxsz);\n    }\n  } else if (src->type == OP_CONST) {\n    dst->param.num.value = src->param.num.value;\n  } else if (src->type == OP_VAR) {\n    dst->param.var.value = src->param.var.value;\n  } else {\n    vec_foreach(&src->param.op.args, arg, i) {\n      struct expr tmp = expr_init();\n      expr_copy(&tmp, &arg);\n      vec_push(&dst->param.op.args, tmp);\n    }\n  }\n}\n\nstatic void expr_destroy_args(struct expr *e);\n\nstatic struct expr *expr_create(const char *s, size_t len,\n                                struct expr_var_list *vars,\n                                struct expr_func *funcs) {\n  float num;\n  struct expr_var *v;\n  const char *id = NULL;\n  size_t idn = 0;\n\n  struct expr *result = NULL;\n\n  vec_expr_t es = vec_init();\n  vec_str_t os = vec_init();\n  vec_arg_t as = vec_init();\n\n  struct macro {\n    char *name;\n    vec_expr_t body;\n  };\n  vec(struct macro) macros = vec_init();\n\n  int flags = EXPR_TDEFAULT;\n  int paren = EXPR_PAREN_ALLOWED;\n  for (;;) {\n    int n = expr_next_token(s, len, &flags);\n    if (n == 0) {\n      break;\n    } else if (n < 0) {\n      goto cleanup;\n    }\n    const char *tok = s;\n    s = s + n;\n    len = len - n;\n    if (*tok == '#') {\n      continue;\n    }\n    if (flags & EXPR_UNARY) {\n      if (n == 1) {\n        switch (*tok) {\n        case '-':\n          tok = \"-u\";\n          break;\n        case '^':\n          tok = \"^u\";\n          break;\n        case '!':\n          tok = \"!u\";\n          break;\n        default:\n          goto cleanup;\n        }\n        n = 2;\n      }\n    }\n    if (*tok == '\\n' && (flags & EXPR_COMMA)) {\n      flags = flags & (~EXPR_COMMA);\n      n = 1;\n      tok = \",\";\n    }\n    if (isspace(*tok)) {\n      continue;\n    }\n    int paren_next = EXPR_PAREN_ALLOWED;\n\n    if (idn > 0) {\n      if (n == 1 && *tok == '(') {\n        int i;\n        int has_macro = 0;\n        struct macro m;\n        vec_foreach(&macros, m, i) {\n          if (strlen(m.name) == idn && strncmp(m.name, id, idn) == 0) {\n            has_macro = 1;\n            break;\n          }\n        }\n        if ((idn == 1 && id[0] == '$') || has_macro ||\n            expr_func(funcs, id, idn) != NULL) {\n          struct expr_string str = {id, (int)idn};\n          vec_push(&os, str);\n          paren = EXPR_PAREN_EXPECTED;\n        } else {\n          goto cleanup; /* invalid function name */\n        }\n      } else if ((v = expr_var(vars, id, idn)) != NULL) {\n        vec_push(&es, expr_varref(v));\n        paren = EXPR_PAREN_FORBIDDEN;\n      }\n      id = NULL;\n      idn = 0;\n    }\n\n    if (n == 1 && *tok == '(') {\n      if (paren == EXPR_PAREN_EXPECTED) {\n        struct expr_string str = {\"{\", 1};\n        vec_push(&os, str);\n        struct expr_arg arg = {vec_len(&os), vec_len(&es), vec_init()};\n        vec_push(&as, arg);\n      } else if (paren == EXPR_PAREN_ALLOWED) {\n        struct expr_string str = {\"(\", 1};\n        vec_push(&os, str);\n      } else {\n        goto cleanup; // Bad call\n      }\n    } else if (paren == EXPR_PAREN_EXPECTED) {\n      goto cleanup; // Bad call\n    } else if (n == 1 && *tok == ')') {\n      int minlen = (vec_len(&as) > 0 ? vec_peek(&as).oslen : 0);\n      while (vec_len(&os) > minlen && *vec_peek(&os).s != '(' &&\n             *vec_peek(&os).s != '{') {\n        struct expr_string str = vec_pop(&os);\n        if (expr_bind(str.s, str.n, &es) == -1) {\n          goto cleanup;\n        }\n      }\n      if (vec_len(&os) == 0) {\n        goto cleanup; // Bad parens\n      }\n      struct expr_string str = vec_pop(&os);\n      if (str.n == 1 && *str.s == '{') {\n        str = vec_pop(&os);\n        struct expr_arg arg = vec_pop(&as);\n        if (vec_len(&es) > arg.eslen) {\n          vec_push(&arg.args, vec_pop(&es));\n        }\n        if (str.n == 1 && str.s[0] == '$') {\n          if (vec_len(&arg.args) < 1) {\n            vec_free(&arg.args);\n            goto cleanup; /* too few arguments for $() function */\n          }\n          struct expr *u = &vec_nth(&arg.args, 0);\n          if (u->type != OP_VAR) {\n            vec_free(&arg.args);\n            goto cleanup; /* first argument is not a variable */\n          }\n          for (struct expr_var *v = vars->head; v; v = v->next) {\n            if (&v->value == u->param.var.value) {\n              struct macro m = {v->name, arg.args};\n              vec_push(&macros, m);\n              break;\n            }\n          }\n          vec_push(&es, expr_const(0));\n        } else {\n          int i = 0;\n          int found = -1;\n          struct macro m;\n          vec_foreach(&macros, m, i) {\n            if (strlen(m.name) == (size_t)str.n &&\n                strncmp(m.name, str.s, str.n) == 0) {\n              found = i;\n            }\n          }\n          if (found != -1) {\n            m = vec_nth(&macros, found);\n            struct expr root = expr_const(0);\n            struct expr *p = &root;\n            /* Assign macro parameters */\n            for (int j = 0; j < vec_len(&arg.args); j++) {\n              char varname[4];\n              snprintf(varname, sizeof(varname) - 1, \"$%d\", (j + 1));\n              struct expr_var *v = expr_var(vars, varname, strlen(varname));\n              struct expr ev = expr_varref(v);\n              struct expr assign =\n                  expr_binary(OP_ASSIGN, ev, vec_nth(&arg.args, j));\n              *p = expr_binary(OP_COMMA, assign, expr_const(0));\n              p = &vec_nth(&p->param.op.args, 1);\n            }\n            /* Expand macro body */\n            for (int j = 1; j < vec_len(&m.body); j++) {\n              if (j < vec_len(&m.body) - 1) {\n                *p = expr_binary(OP_COMMA, expr_const(0), expr_const(0));\n                expr_copy(&vec_nth(&p->param.op.args, 0), &vec_nth(&m.body, j));\n              } else {\n                expr_copy(p, &vec_nth(&m.body, j));\n              }\n              p = &vec_nth(&p->param.op.args, 1);\n            }\n            vec_push(&es, root);\n            vec_free(&arg.args);\n          } else {\n            struct expr_func *f = expr_func(funcs, str.s, str.n);\n            struct expr bound_func = expr_init();\n            bound_func.type = OP_FUNC;\n            bound_func.param.func.f = f;\n            bound_func.param.func.args = arg.args;\n            if (f->ctxsz > 0) {\n              void *p = calloc(1, f->ctxsz);\n              if (p == NULL) {\n                goto cleanup; /* allocation failed */\n              }\n              bound_func.param.func.context = p;\n            }\n            vec_push(&es, bound_func);\n          }\n        }\n      }\n      paren_next = EXPR_PAREN_FORBIDDEN;\n    } else if (!isnan(num = expr_parse_number(tok, n))) {\n      vec_push(&es, expr_const(num));\n      paren_next = EXPR_PAREN_FORBIDDEN;\n    } else if (expr_op(tok, n, -1) != OP_UNKNOWN) {\n      enum expr_type op = expr_op(tok, n, -1);\n      struct expr_string o2 = {NULL, 0};\n      if (vec_len(&os) > 0) {\n        o2 = vec_peek(&os);\n      }\n      for (;;) {\n        if (n == 1 && *tok == ',' && vec_len(&os) > 0) {\n          struct expr_string str = vec_peek(&os);\n          if (str.n == 1 && *str.s == '{') {\n            struct expr e = vec_pop(&es);\n            vec_push(&vec_peek(&as).args, e);\n            break;\n          }\n        }\n        enum expr_type type2 = expr_op(o2.s, o2.n, -1);\n        if (!(type2 != OP_UNKNOWN && expr_prec(op, type2))) {\n          struct expr_string str = {tok, n};\n          vec_push(&os, str);\n          break;\n        }\n\n        if (expr_bind(o2.s, o2.n, &es) == -1) {\n          goto cleanup;\n        }\n        (void)vec_pop(&os);\n        if (vec_len(&os) > 0) {\n          o2 = vec_peek(&os);\n        } else {\n          o2.n = 0;\n        }\n      }\n    } else {\n      if (n > 0 && !isdigit(*tok)) {\n        /* Valid identifier, a variable or a function */\n        id = tok;\n        idn = n;\n      } else {\n        goto cleanup; // Bad variable name, e.g. '2.3.4' or '4ever'\n      }\n    }\n    paren = paren_next;\n  }\n\n  if (idn > 0) {\n    vec_push(&es, expr_varref(expr_var(vars, id, idn)));\n  }\n\n  while (vec_len(&os) > 0) {\n    struct expr_string rest = vec_pop(&os);\n    if (rest.n == 1 && (*rest.s == '(' || *rest.s == ')')) {\n      goto cleanup; // Bad paren\n    }\n    if (expr_bind(rest.s, rest.n, &es) == -1) {\n      goto cleanup;\n    }\n  }\n\n  result = (struct expr *)calloc(1, sizeof(struct expr));\n  if (result != NULL) {\n    if (vec_len(&es) == 0) {\n      result->type = OP_CONST;\n    } else {\n      *result = vec_pop(&es);\n    }\n  }\n\n  int i, j;\n  struct macro m;\n  struct expr e;\n  struct expr_arg a;\ncleanup:\n  vec_foreach(&macros, m, i) {\n    struct expr e;\n    vec_foreach(&m.body, e, j) { expr_destroy_args(&e); }\n    vec_free(&m.body);\n  }\n  vec_free(&macros);\n\n  vec_foreach(&es, e, i) { expr_destroy_args(&e); }\n  vec_free(&es);\n\n  vec_foreach(&as, a, i) {\n    vec_foreach(&a.args, e, j) { expr_destroy_args(&e); }\n    vec_free(&a.args);\n  }\n  vec_free(&as);\n\n  /*vec_foreach(&os, o, i) {vec_free(&m.body);}*/\n  vec_free(&os);\n  return result;\n}\n\nstatic void expr_destroy_args(struct expr *e) {\n  int i;\n  struct expr arg;\n  if (e->type == OP_FUNC) {\n    vec_foreach(&e->param.func.args, arg, i) { expr_destroy_args(&arg); }\n    vec_free(&e->param.func.args);\n    if (e->param.func.context != NULL) {\n      if (e->param.func.f->cleanup != NULL) {\n        e->param.func.f->cleanup(e->param.func.f, e->param.func.context);\n      }\n      free(e->param.func.context);\n    }\n  } else if (e->type != OP_CONST && e->type != OP_VAR) {\n    vec_foreach(&e->param.op.args, arg, i) { expr_destroy_args(&arg); }\n    vec_free(&e->param.op.args);\n  }\n}\n\nstatic void expr_destroy(struct expr *e, struct expr_var_list *vars) {\n  if (e != NULL) {\n    expr_destroy_args(e);\n    free(e);\n  }\n  if (vars != NULL) {\n    for (struct expr_var *v = vars->head; v;) {\n      struct expr_var *next = v->next;\n      free(v);\n      v = next;\n    }\n  }\n}\n\n#ifdef __cplusplus\n} /* extern \"C\" */\n#endif\n\n#endif /* EXPR_H */\n"
  },
  {
    "path": "core/glitch.c",
    "content": "#include <stdint.h>\n#include <stdio.h>\n#include <stdlib.h>\n\n#include \"expr.h\"\n#include \"libglitch.h\"\n\n#include \"glitch.h\"\n#include \"tr808.h\"\n\nstatic glitch_loader_fn loader = NULL;\n\n#define PI 3.1415926f\n#define MIN(a, b) ((a) < (b) ? (a) : (b))\n\n#define MAX_DELAY_TIME 10    /* seconds */\n#define MIN_DELAY_BLOCK 8192 /* smallest delay buffer resize */\n\n#include <math.h>\n#define LOG2(n) (logf(n) / logf(2.f))\n#define POW2(n) (powf(2.f, (n)))\n#define SQRT(n) (sqrt(n))\n#define SIN(n) (sinf((n)*2 * PI))\n\nstatic float arg(vec_expr_t *args, int n, float defval) {\n  if (vec_len(args) < n + 1) {\n    return defval;\n  }\n  return expr_eval(&vec_nth(args, n));\n}\n\nstatic inline float fwrap(float x) { return x - (long)x; }\nstatic inline float fwrap2(float x) { return fwrap(fwrap(x) + 1); }\nstatic inline float fsign(float x) { return (x < 0 ? -1 : 1); }\nstatic inline float flim(float x, float a, float b) {\n  if (!isnan(a) && x < a) {\n    return a;\n  } else if (!isnan(b) && x > b) {\n    return b;\n  }\n  return x;\n}\n\nstruct fm_context {\n  float freq;\n  int sync;\n  float prev;\n\n  float w0;\n  float w1;\n  float w2;\n  float w3;\n};\n\nstruct seq_step;\ntypedef vec(float) vec_float_t;\ntypedef vec(struct seq_step) vec_step_t;\n\nstruct seq_step {\n  int start;\n  int end;\n  int gliss;\n  float value;\n  struct expr *e;\n  struct expr *dur;\n};\n\nstruct seq_context {\n  int init;\n  int offset;\n  int t;\n  int duration;\n  int step;\n  vec_step_t steps;\n};\n\nstruct mix_context {\n  int init;\n  vec_float_t values;\n};\n\nstruct each_context {\n  int init;\n  vec_expr_t args;\n};\n\nstruct sample_context {\n  float t;\n};\n\nstatic float lib_byte(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  (void)context;\n  return libglitch_byte(arg(args, 0, 127));\n}\n\nstatic float lib_s(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  (void)context;\n  return libglitch_interpolate(libglitch_sin_lut, LIBGLITCH_OSC_LUT_LEN,\n                               LIBGLITCH_OSC_LUT_LEN *\n                                   libglitch_wrap(arg(args, 0, 0)));\n}\n\nstatic float lib_r(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  (void)context;\n  return libglitch_rand(arg(args, 0, 1));\n}\n\nstatic float lib_l(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  (void)context;\n  if (arg(args, 0, 0)) {\n    return LOG2(arg(args, 0, 0));\n  }\n  return 0;\n}\n\nstatic float lib_a(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  (void)context;\n  float index = arg(args, 0, NAN);\n  if (isnan(index)) {\n    return NAN;\n  }\n  int len = vec_len(args) - 1;\n  if (len == 0) {\n    return 0;\n  }\n  int i = (int)(index + len) % len;\n  i = (i + len) % len;\n  return arg(args, i + 1, 0);\n}\n\nstatic int scales[][13] = {\n    {7, 0, 2, 4, 5, 7, 9, 11, 0, 0, 0, 0},      // ionian, major scale\n    {7, 0, 2, 3, 5, 7, 9, 10, 0, 0, 0, 0},      // dorian\n    {7, 0, 1, 3, 5, 7, 8, 10, 0, 0, 0, 0},      // phrygian\n    {7, 0, 2, 4, 6, 7, 9, 11, 0, 0, 0, 0},      // lydian\n    {7, 0, 2, 4, 5, 7, 9, 10, 0, 0, 0, 0},      // mixolydian\n    {7, 0, 2, 3, 5, 7, 8, 10, 0, 0, 0, 0},      // aeolian, natural minor scale\n    {7, 0, 1, 3, 5, 6, 8, 10, 0, 0, 0, 0},      // locrian\n    {7, 0, 2, 3, 5, 7, 8, 11, 0, 0, 0, 0},      // harmonic minor scale\n    {7, 0, 2, 3, 5, 7, 9, 11, 0, 0, 0, 0},      // melodic minor scale\n    {5, 0, 2, 4, 7, 9, 0, 0, 0, 0, 0, 0},       // major pentatonic\n    {5, 0, 3, 5, 7, 10, 0, 0, 0, 0, 0, 0},      // minor pentatonic\n    {6, 0, 3, 5, 6, 7, 10, 0, 0, 0, 0},         // blues\n    {6, 0, 2, 4, 6, 8, 10, 0, 0, 0, 0},         // whole tone scale\n    {8, 0, 1, 3, 4, 6, 7, 9, 10, 0, 0, 0},      // octatonic\n    {12, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}, // chromatic is a fallback scale\n};\n\nstatic float lib_scale(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  (void)context;\n  float note = arg(args, 0, 0);\n  float scale = arg(args, 1, 0);\n  if (isnan(scale) || isnan(note)) {\n    return NAN;\n  }\n  if (scale < 0 || scale > 14) {\n    scale = 14;\n  }\n  int len = scales[(int)scale][0];\n  int n = (int)note;\n  int transpose = n / len * 12;\n  n = (n + len) % len;\n  n = (n + len) % len;\n  return scales[(int)scale][n + 1] + transpose;\n}\n\nstatic float lib_hz(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  (void)context;\n  return libglitch_hz(arg(args, 0, 0));\n}\n\nstatic float lib_each(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  struct each_context *each = (struct each_context *)context;\n  float r = NAN;\n\n  if (vec_len(args) < 3) {\n    return NAN;\n  }\n\n  if (!each->init) {\n    each->init = 1;\n    for (int i = 0; i < vec_len(args) - 2; i++) {\n      struct expr tmp = {0};\n      expr_copy(&tmp, &vec_nth(args, 1));\n      vec_push(&each->args, tmp);\n    }\n  }\n\n  // List of variables\n  struct expr *init = &vec_nth(args, 0);\n  float mix = 0.0f;\n  for (int i = 0; i < vec_len(&each->args); i++) {\n    struct expr *ilist = init;\n    struct expr *alist = &vec_nth(args, i + 2);\n    struct expr *acar = NULL;\n    struct expr *icar = NULL;\n    while (ilist->type == OP_COMMA) {\n      icar = &vec_nth(&ilist->param.op.args, 0);\n      ilist = &vec_nth(&ilist->param.op.args, 1);\n      acar = alist;\n      if (alist->type == OP_COMMA) {\n        acar = &vec_nth(&alist->param.op.args, 0);\n        alist = &vec_nth(&alist->param.op.args, 1);\n      }\n      if (icar->type == OP_VAR) {\n        *icar->param.var.value = expr_eval(acar);\n      }\n    }\n    if (ilist->type == OP_VAR) {\n      *ilist->param.var.value = expr_eval(alist);\n    }\n    r = expr_eval(&vec_nth(&each->args, i));\n    if (!isnan(r)) {\n      mix = mix + r;\n    }\n  }\n  return mix / SQRT(vec_len(&each->args));\n}\n\nstatic void lib_each_cleanup(struct expr_func *f, void *context) {\n  (void)f;\n  int i;\n  struct expr e;\n  struct each_context *each = (struct each_context *)context;\n  vec_foreach(&each->args, e, i) { expr_destroy_args(&e); }\n  vec_free(&each->args);\n}\n\nstatic float lib_sin(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  return libglitch_sin((libglitch_osc_t *)context, arg(args, 0, NAN));\n}\n\nstatic float lib_tri(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  return libglitch_tri((libglitch_osc_t *)context, arg(args, 0, NAN));\n}\n\nstatic float lib_saw(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  return libglitch_saw((libglitch_osc_t *)context, arg(args, 0, NAN));\n}\n\nstatic float lib_sqr(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  return libglitch_sqr((libglitch_osc_t *)context, arg(args, 0, NAN),\n                       arg(args, 1, 0.5));\n}\n\nstatic float lib_fm(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  struct fm_context *fm = (struct fm_context *)context;\n  float freq = arg(args, 0, NAN);\n  float mf1 = arg(args, 1, 0);\n  float mi1 = arg(args, 2, 0);\n  float mf2 = arg(args, 3, 0);\n  float mi2 = arg(args, 4, 0);\n  float mf3 = arg(args, 5, 0);\n  float mi3 = arg(args, 6, 0);\n\n  fm->w3 = fwrap(fm->w3 + mf3 * fm->freq / libglitch_sample_rate);\n  fm->w2 = fwrap(fm->w2 + mf2 * fm->freq / libglitch_sample_rate);\n  fm->w1 = fwrap(fm->w1 + mf1 * fm->freq / libglitch_sample_rate);\n  fm->w0 = fwrap(fm->w0 + fm->freq / libglitch_sample_rate);\n\n  float v3 = mi3 * SIN(fm->w3);\n  float v2 = mi2 * SIN(fm->w2);\n  float v1 = mi1 * SIN(fwrap2(fm->w1 + v3));\n  float v0 = SIN(fwrap2(fm->w0 + v1 + v2));\n\n  if (isnan(freq)) {\n    fm->sync = 1;\n    return NAN;\n  } else {\n    fm->freq = freq;\n  }\n\n  if (fm->sync && v0 >= 0 && fm->prev <= 0) {\n    fm->sync = 0;\n    fm->w0 = fm->w1 = fm->w2 = fm->w3 = 0;\n  }\n\n  fm->prev = v0;\n\n  return v0;\n}\n\nstatic float lib_seq(struct expr_func *f, vec_expr_t *args, void *context) {\n  struct seq_context *seq = (struct seq_context *)context;\n\n  /* At least BPM and one step should be provided */\n  if (vec_len(args) < 2) {\n    return NAN;\n  }\n\n  /* Initialize vector of steps, cache all expression pointers */\n  if (!seq->init) {\n    seq->init = 1;\n    for (int i = 1; i < vec_len(args); i++) {\n      struct expr *e = &vec_nth(args, i);\n      struct expr *dur = NULL;\n      if (e->type == OP_COMMA) {\n        dur = &vec_nth(&e->param.op.args, 0);\n        e = &vec_nth(&e->param.op.args, 1);\n      }\n      struct seq_step step = {.gliss = 0, .e = e, .dur = dur};\n      if (e->type == OP_COMMA) {\n        int gliss = 0;\n        for (struct expr *sube = e; sube->type == OP_COMMA;\n             sube = &vec_nth(&sube->param.op.args, 1)) {\n          gliss++;\n        }\n        while (e->type == OP_COMMA) {\n          step.e = &vec_nth(&e->param.op.args, 0);\n          step.gliss = gliss;\n          vec_push(&seq->steps, step);\n          e = &vec_nth(&e->param.op.args, 1);\n          step.gliss = -1;\n        }\n        step.e = e;\n      }\n      vec_push(&seq->steps, step);\n    }\n  }\n\n  /* A function can be either \"seq\" or \"loop\" */\n  int is_seq = (strncmp(f->name, \"seq\", 4) == 0);\n\n  /* Sequencer reached the end of loop. Re-calculate step durations, initial\n   * offset, cache step values if needed */\n  if (seq->t == 0) {\n    struct expr *bpm = &vec_nth(args, 0);\n    float offset = 0;\n    if (bpm->type == OP_COMMA) {\n      offset = expr_eval(&vec_nth(&bpm->param.op.args, 0));\n    }\n    float tempo = expr_eval(bpm);\n    if (isnan(tempo) || tempo <= 0) {\n      return NAN;\n    }\n\n    float samples_per_beat = libglitch_sample_rate / (tempo / 60.f);\n\n    seq->offset = (int)(offset * samples_per_beat);\n\n    int t = 0;\n\n    struct expr *prev_dur = NULL;\n    float prev_dur_value = 1.f;\n\n    seq->step = -1;\n    for (int i = 0; i < vec_len(&seq->steps); i++) {\n      struct seq_step *step = &vec_nth(&seq->steps, i);\n      if (step->dur != prev_dur) {\n        prev_dur = step->dur;\n        prev_dur_value = (prev_dur == NULL ? 1.f : expr_eval(prev_dur));\n      }\n      float dur = prev_dur_value;\n      int gliss_len = (step->gliss > 0 ? step->gliss : 1);\n      step->start = t;\n      if (seq->step == -1 && t >= seq->offset) {\n        seq->step = i;\n      }\n      if (step->gliss >= 0) {\n        t += (int)(dur * samples_per_beat / gliss_len);\n        step->end = t;\n      } else {\n        step->end = step->start;\n      }\n      seq->duration = step->end;\n      if (is_seq) {\n        step->value = expr_eval(step->e);\n      }\n    }\n  }\n\n  /* Prepare to return the value of the current step */\n  int t = (seq->t + seq->offset) % seq->duration;\n  struct seq_step *step = &vec_nth(&seq->steps, seq->step);\n  float v = NAN;\n\n  /* Advance step if needed */\n  int loop = seq->step;\n  while (t >= step->end || (t == 0 && step->end == seq->duration)) {\n    seq->step = (seq->step + 1) % vec_len(&seq->steps);\n    step = &vec_nth(&seq->steps, seq->step);\n    if (seq->step == loop) {\n      break;\n    }\n  }\n\n  int has_gliss = (step->gliss > 0);\n\n  /* Get step value either from cache (seq) or by evaluating current step\n   * expression (loop) */\n  if (t < step->end - 1 || (has_gliss && t < step->end)) {\n    if (is_seq) {\n      /* Return step value */\n      if (step->gliss == 0) {\n        v = step->value;\n      } else {\n        struct seq_step *next_step = &vec_nth(&seq->steps, seq->step + 1);\n        if (t == (step->end - 1) && next_step->gliss == -1) {\n          v = NAN;\n        } else {\n          float progress = 1.f * (t - step->start) / (step->end - step->start);\n          float a = step->value;\n          float b = next_step->value;\n          v = a + (b - a) * progress;\n        }\n      }\n    } else {\n      v = expr_eval(step->e);\n    }\n  }\n\n  seq->t = (seq->t + 1) % seq->duration;\n  return v;\n}\n\nstatic void lib_seq_cleanup(struct expr_func *f, void *context) {\n  (void)f;\n  struct seq_context *seq = (struct seq_context *)context;\n  vec_free(&seq->steps);\n}\n\nstatic float lib_env(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  float gate;\n  float v;\n  if (vec_len(args) < 1) {\n    return NAN;\n  }\n  struct expr *e = &vec_nth(args, 0);\n  if (e->type == OP_COMMA) {\n    gate = expr_eval(&vec_nth(&e->param.op.args, 0));\n    v = expr_eval(&vec_nth(&e->param.op.args, 1));\n  } else {\n    gate = v = expr_eval(e);\n  }\n  return libglitch_env((libglitch_env_t *)context, gate, v, arg(args, 1, 0.01),\n                       arg(args, 2, 10), arg(args, 3, 0.5), arg(args, 4, 0.5));\n}\n\nstatic float lib_mix(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  struct mix_context *mix = (struct mix_context *)context;\n  if (!mix->init) {\n    for (int i = 0; i < vec_len(args); i++) {\n      vec_push(&mix->values, 0);\n    }\n    mix->init = 1;\n  }\n  float v = 0;\n  for (int i = 0; i < vec_len(args); i++) {\n    struct expr *e = &vec_nth(args, i);\n    float sample = expr_eval(e);\n    if (isnan(sample)) {\n      sample = vec_nth(&mix->values, i);\n    }\n    vec_nth(&mix->values, i) = sample;\n    v = v + sample;\n  }\n  if (vec_len(args) > 0) {\n    v = v / SQRT(vec_len(args));\n    if (v <= -1.25f) {\n      return -0.984375;\n    } else if (v >= 1.25f) {\n      return 0.984375;\n    } else {\n      return 1.1f * v - 0.2f * v * v * v;\n    }\n    return v;\n  }\n  return 0;\n}\n\nstatic void lib_mix_cleanup(struct expr_func *f, void *context) {\n  (void)f;\n  struct mix_context *mix = (struct mix_context *)context;\n  vec_free(&mix->values);\n}\n\nstatic float lib_filter(struct expr_func *f, vec_expr_t *args, void *context) {\n  libglitch_biquad_t *biquad = (libglitch_biquad_t *)context;\n  libglitch_biquad_filter_t type = -1;\n  if (strncmp(f->name, \"lpf\", 4) == 0) {\n    type = LIBGLITCH_FILTER_LPF;\n  } else if (strncmp(f->name, \"hpf\", 4) == 0) {\n    type = LIBGLITCH_FILTER_HPF;\n  } else if (strncmp(f->name, \"bpf\", 4) == 0) {\n    type = LIBGLITCH_FILTER_BPF;\n  } else if (strncmp(f->name, \"bsf\", 4) == 0) {\n    type = LIBGLITCH_FILTER_BSF;\n  }\n  float signal = arg(args, 0, NAN);\n  float cutoff = arg(args, 1, 200);\n  float q = arg(args, 2, 1);\n  return libglitch_biquad(biquad, type, signal, cutoff, q);\n}\n\nstatic float lib_delay(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  libglitch_delay_t *delay = (libglitch_delay_t *)context;\n  float signal = arg(args, 0, NAN);\n  float time = arg(args, 1, 0);\n  float level = arg(args, 2, 0);\n  float feedback = arg(args, 3, 0);\n  return libglitch_delay(delay, signal, time, level, feedback);\n}\n\nstatic void lib_delay_cleanup(struct expr_func *f, void *context) {\n  (void)f;\n  libglitch_delay_t *delay = (libglitch_delay_t *)context;\n  libglitch_delay_free(delay);\n}\n\nstatic float int16_sample(unsigned char hi, unsigned char lo) {\n  int sign = hi & (1 << 7);\n  int v = (((int)(hi)&0x7f) << 8) | (int)lo;\n  if (sign) {\n    v = -0x8000 + v;\n  }\n  return v * 1.f / 0x8000;\n}\n\nstatic float lib_tr808(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  struct sample_context *sample = (struct sample_context *)context;\n\n  float drum = arg(args, 0, NAN);\n  float vol = arg(args, 1, 1);\n  float shift = arg(args, 2, 0);\n\n  if (isnan(drum) || isnan(vol) || isnan(shift)) {\n    sample->t = 0;\n    return NAN;\n  }\n\n  static unsigned char *samples[] = {\n      tr808_bd_wav, tr808_sn_wav, tr808_mt_wav, tr808_mc_wav, tr808_rs_wav,\n      tr808_cl_wav, tr808_cb_wav, tr808_oh_wav, tr808_hh_wav,\n  };\n  static unsigned int len[] = {\n      tr808_bd_wav_len, tr808_sn_wav_len, tr808_mt_wav_len,\n      tr808_mc_wav_len, tr808_rs_wav_len, tr808_cl_wav_len,\n      tr808_cb_wav_len, tr808_oh_wav_len, tr808_hh_wav_len,\n  };\n  static int N = sizeof(samples) / sizeof(*samples);\n\n  int index = (((int)drum % N) + N) % N;\n  unsigned char *pcm = samples[index];\n  if (sample->t * 2 + 0x80 + 1 < len[index]) {\n    unsigned char hi = pcm[0x80 + (int)sample->t * 2 + 1];\n    unsigned char lo = pcm[0x80 + (int)sample->t * 2];\n    float x = int16_sample(hi, lo);\n    sample->t = sample->t + POW2(shift / 12.0);\n    return x * vol;\n  }\n  return 0;\n}\n\nstatic float lib_sample(struct expr_func *f, vec_expr_t *args, void *context) {\n  if (loader == NULL) {\n    return NAN;\n  }\n  struct sample_context *sample = (struct sample_context *)context;\n  float variant = arg(args, 0, NAN);\n  float vol = arg(args, 1, 1);\n  float shift = arg(args, 2, 0);\n  if (isnan(variant) || isnan(vol) || isnan(shift)) {\n    sample->t = 0;\n    return NAN;\n  }\n  sample->t = sample->t + POW2(shift / 12.0);\n  return loader(f->name, (int)variant, (int)(sample->t)) * vol;\n}\n\nstatic float lib_pluck(struct expr_func *f, vec_expr_t *args, void *context) {\n  (void)f;\n  libglitch_pluck_t *pluck = (libglitch_pluck_t *)context;\n  float freq = arg(args, 0, NAN);\n  float decay = arg(args, 1, 0.5);\n  if (vec_len(args) < 3) {\n    return libglitch_pluck(pluck, freq, decay, NULL, NULL);\n  } else {\n    return libglitch_pluck(pluck, freq, decay, (float (*)(void *))expr_eval,\n                           &vec_nth(args, 2));\n  }\n}\n\nstatic void lib_pluck_cleanup(struct expr_func *f, void *context) {\n  (void)f;\n  libglitch_pluck_t *pluck = (libglitch_pluck_t *)context;\n  libglitch_pluck_free(pluck);\n}\n\n#define MAX_FUNCS 1024\n#define FIRST_USER_FUNC 24\nstatic struct expr_func glitch_funcs[MAX_FUNCS + 1] = {\n    {\"byte\", lib_byte, NULL, 0},\n    {\"s\", lib_s, NULL, 0},\n    {\"r\", lib_r, NULL, 0},\n    {\"l\", lib_l, NULL, 0},\n    {\"a\", lib_a, NULL, 0},\n    {\"scale\", lib_scale, NULL, 0},\n    {\"hz\", lib_hz, NULL, 0},\n\n    {\"each\", lib_each, lib_each_cleanup, sizeof(struct each_context)},\n\n    {\"sin\", lib_sin, NULL, sizeof(libglitch_osc_t)},\n    {\"tri\", lib_tri, NULL, sizeof(libglitch_osc_t)},\n    {\"saw\", lib_saw, NULL, sizeof(libglitch_osc_t)},\n    {\"sqr\", lib_sqr, NULL, sizeof(libglitch_osc_t)},\n    {\"fm\", lib_fm, NULL, sizeof(struct fm_context)},\n    {\"pluck\", lib_pluck, lib_pluck_cleanup, sizeof(libglitch_pluck_t)},\n    {\"tr808\", lib_tr808, NULL, sizeof(struct sample_context)},\n\n    {\"loop\", lib_seq, lib_seq_cleanup, sizeof(struct seq_context)},\n    {\"seq\", lib_seq, lib_seq_cleanup, sizeof(struct seq_context)},\n\n    {\"env\", lib_env, NULL, sizeof(libglitch_env_t)},\n\n    {\"mix\", lib_mix, lib_mix_cleanup, sizeof(struct mix_context)},\n\n    {\"lpf\", lib_filter, NULL, sizeof(libglitch_biquad_t)},\n    {\"hpf\", lib_filter, NULL, sizeof(libglitch_biquad_t)},\n    {\"bpf\", lib_filter, NULL, sizeof(libglitch_biquad_t)},\n    {\"bsf\", lib_filter, NULL, sizeof(libglitch_biquad_t)},\n\n    {\"delay\", lib_delay, lib_delay_cleanup, sizeof(libglitch_delay_t)},\n    {NULL, NULL, NULL, 0},\n};\n\nstruct glitch *glitch_create() {\n  struct glitch *g = calloc(1, sizeof(struct glitch));\n  return g;\n}\n\nvoid glitch_init(int sample_rate, unsigned long long seed) {\n  libglitch_init(sample_rate, seed);\n}\n\nvoid glitch_set_sample_loader(glitch_loader_fn fn) { loader = fn; }\n\nint glitch_add_sample(const char *name) {\n  for (int i = FIRST_USER_FUNC; i < MAX_FUNCS; i++) {\n    if (glitch_funcs[i].name == NULL || strlen(glitch_funcs[i].name) == 0) {\n      const char *s = calloc(1, strlen(name) + 1);\n      strcpy((char *)s, name);\n      glitch_funcs[i].name = s;\n      glitch_funcs[i].f = lib_sample;\n      glitch_funcs[i].ctxsz = sizeof(struct sample_context);\n      glitch_funcs[i + 1].name = NULL;\n      return 0;\n    }\n    if (strcmp(glitch_funcs[i].name, name) == 0) {\n      return -1;\n    }\n  }\n  return -1;\n}\n\nint glitch_remove_sample(const char *name) {\n  for (int i = FIRST_USER_FUNC; i < MAX_FUNCS; i++) {\n    if (glitch_funcs[i].name == NULL) {\n      break;\n    }\n    if (strcmp(glitch_funcs[i].name, name) == 0) {\n      free((void *)(glitch_funcs[i].name));\n      glitch_funcs[i].name = \"\";\n    }\n  }\n  return -1;\n}\n\nvoid glitch_destroy(struct glitch *g) {\n  expr_destroy(g->e, &g->vars);\n  free(g);\n}\n\nvoid glitch_set(struct glitch *g, const char *name, float x) {\n  expr_var(&g->vars, name, strlen(name))->value = x;\n}\n\nfloat glitch_get(struct glitch *g, const char *name) {\n  return expr_var(&g->vars, name, strlen(name))->value;\n}\n\nvoid glitch_midi(struct glitch *g, unsigned char cmd, unsigned char a,\n                 unsigned char b) {\n  cmd = cmd >> 4;\n  if (cmd == 0x9 && b > 0) {\n    // Note pressed: insert to the head of the \"list\"\n    for (int i = 0; i < MAX_POLYPHONY; i++) {\n      if (isnan(g->k[i]->value)) {\n        g->k[i]->value = a - 69;\n        g->g[i]->value = b / 128.0;\n        g->v[i]->value = b / 128.0;\n        break;\n      }\n    }\n  } else if ((cmd == 0x9 && b == 0) || cmd == 0x8) {\n    // Note released: remove from the \"list\" and shift the rest\n    float key = a - 69;\n    for (int i = 0; i < MAX_POLYPHONY; i++) {\n      if (g->k[i]->value == key) {\n        g->g[i]->value = NAN;\n        break;\n      }\n    }\n  } else if (cmd == 0xe) {\n    // Pitch bend wheel\n    g->x->value = (b - 64.f) / 65.f;\n  } else if (cmd == 0xb && a == 1) {\n    // Control change message: mod wheel\n    g->y->value = (b - 64.f) / 65.f;\n  } else {\n    fprintf(stderr, \"MIDI command %d %d %d\\n\", cmd, a, b);\n  }\n}\n\nvoid glitch_reset(struct glitch *g) {\n  g->t = expr_var(&g->vars, \"t\", 1);\n  g->x = expr_var(&g->vars, \"x\", 1);\n  g->y = expr_var(&g->vars, \"y\", 1);\n  g->bpm = expr_var(&g->vars, \"bpm\", 3);\n\n  g->t->value = g->x->value = g->y->value = g->bpm->value = 0;\n\n  for (int i = 0; i < MAX_POLYPHONY; i++) {\n    char name[4];\n    snprintf(name, sizeof(name), \"k%d\", i);\n    g->k[i] = expr_var(&g->vars, name, strlen(name));\n    snprintf(name, sizeof(name), \"v%d\", i);\n    g->v[i] = expr_var(&g->vars, name, strlen(name));\n    snprintf(name, sizeof(name), \"g%d\", i);\n    g->g[i] = expr_var(&g->vars, name, strlen(name));\n    g->k[i]->value = g->v[i]->value = g->g[i]->value = NAN;\n  }\n\n  /* Note constants */\n  const struct {\n    char *name;\n    int pitch;\n  } notes[] = {\n      {\"C0\", -9},  {\"C#0\", -8}, {\"Cb0\", -10}, {\"D0\", -7},  {\"D#0\", -6},\n      {\"Db0\", -8}, {\"E0\", -5},  {\"E#0\", -4},  {\"Eb0\", -6}, {\"F0\", -4},\n      {\"F#0\", -3}, {\"Fb0\", -5}, {\"G0\", -2},   {\"G#0\", -1}, {\"Gb0\", -3},\n      {\"A0\", 0},   {\"A#0\", 1},  {\"Ab0\", -1},  {\"B0\", 2},   {\"B#0\", 3},\n      {\"Bb0\", 1},\n\n  };\n  for (int octave = -4; octave < 4; octave++) {\n    char buf[4];\n    for (unsigned int n = 0; n < sizeof(notes) / sizeof(notes[0]); n++) {\n      strncpy(buf, notes[n].name, sizeof(buf));\n      buf[strlen(buf) - 1] = '0' + octave + 4;\n      int note = notes[n].pitch + octave * 12;\n      expr_var(&g->vars, buf, strlen(buf))->value = note;\n    }\n  }\n\n  /* TR808 drum constants */\n  expr_var(&g->vars, \"BD\", 3)->value = 0;\n  expr_var(&g->vars, \"SD\", 3)->value = 1;\n  expr_var(&g->vars, \"MT\", 3)->value = 2;\n  expr_var(&g->vars, \"MA\", 3)->value = 3;\n  expr_var(&g->vars, \"RS\", 3)->value = 4;\n  expr_var(&g->vars, \"CP\", 3)->value = 5;\n  expr_var(&g->vars, \"CB\", 7)->value = 6;\n  expr_var(&g->vars, \"OH\", 3)->value = 7;\n  expr_var(&g->vars, \"HH\", 3)->value = 8;\n\n  g->frame = g->bpm_start = 0;\n  g->last_bpm = g->last_sample = 0.f;\n}\n\nint glitch_compile(struct glitch *g, const char *s, size_t len) {\n  if (!g->init) {\n    glitch_reset(g);\n    g->init = 1;\n  }\n  struct expr *e = expr_create(s, len, &g->vars, glitch_funcs);\n  if (e == NULL) {\n    return -1;\n  }\n  expr_destroy(g->next_expr, NULL);\n  if (g->bpm->value == 0) {\n    expr_destroy(g->e, NULL);\n    g->e = e;\n    g->next_expr = NULL;\n  } else {\n    g->next_expr = e;\n  }\n  return 0;\n}\n\nfloat glitch_beat(struct glitch *g) {\n  return (g->frame - g->bpm_start) * g->bpm->value / 60.0 /\n         libglitch_sample_rate;\n}\n\nvoid glitch_iter(struct glitch *g, size_t frames) {\n  int apply_next = 1;\n  /* If BPM is given - apply changes on the next beat */\n  if (g->bpm->value > 0) {\n    float beat = glitch_beat(g);\n    float interval = frames * g->bpm->value / 60.0 / libglitch_sample_rate;\n    float a = (beat) - (int)beat;\n    float b = (beat + interval) - (int)(beat + interval);\n    if (a < b) {\n      apply_next = 0;\n    }\n  }\n  if (apply_next && g->next_expr != NULL) {\n    if (g->bpm->value != g->last_bpm) {\n      g->last_bpm = g->bpm->value;\n      g->bpm_start = g->frame;\n    }\n    expr_destroy(g->e, NULL);\n    g->e = g->next_expr;\n    g->next_expr = NULL;\n  }\n  for (int i = 0; i < MAX_POLYPHONY; i++) {\n    if (!isnan(g->v[i]->value) && isnan(g->g[i]->value)) {\n      g->v[i]->value = g->v[i]->value - (10.f * frames / libglitch_sample_rate);\n      if (g->v[i]->value < 0.01f) {\n        g->v[i]->value = NAN;\n        g->k[i]->value = NAN;\n      }\n    }\n  }\n}\n\nfloat glitch_eval(struct glitch *g) {\n  float v = expr_eval(g->e);\n  if (!isnan(v)) {\n    g->last_sample = v;\n  }\n  g->t->value = (long)(g->frame * 8000.0f / libglitch_sample_rate);\n  g->frame++;\n  return g->last_sample;\n}\n\nvoid glitch_fill(struct glitch *g, float *buf, size_t frames, size_t channels) {\n  for (unsigned int i = 0; i < frames; i++) {\n    glitch_iter(g, 1);\n    float v = glitch_eval(g);\n    for (unsigned int j = 0; j < channels; j++) {\n      *buf++ = v;\n    }\n  }\n}\n"
  },
  {
    "path": "core/glitch.go",
    "content": "package core\n\n/*\n#cgo CFLAGS: -std=c99 -g -Wall -Wextra -pedantic -Wno-unused-parameter -Wno-unused-function\n#cgo LDFLAGS: -lm -g\n\n#include <stdlib.h>\n#include \"glitch.h\"\n\nextern float goSampleLoader(char *name, int variant, int frame);\n\nstatic void setSampleLoader() {\n\tglitch_set_sample_loader((glitch_loader_fn)goSampleLoader);\n}\n*/\nimport \"C\"\nimport (\n\t\"errors\"\n\t\"sync\"\n\t\"time\"\n\t\"unsafe\"\n)\n\ntype SampleLoader interface {\n\tLoadSample(name string, variant, frame int) float32\n}\n\nvar (\n\tLoader SampleLoader\n)\n\nfunc init() {\n\tC.setSampleLoader()\n\tInit(44100, uint64(time.Now().UnixNano()))\n}\n\n//export goSampleLoader\nfunc goSampleLoader(name *C.char, variant, frame C.int) C.float {\n\tif Loader != nil {\n\t\treturn C.float(Loader.LoadSample(C.GoString(name), int(variant), int(frame)))\n\t}\n\treturn 0\n}\n\nfunc Init(sr int, seed uint64) {\n\tC.glitch_init(C.int(sr), C.ulonglong(seed))\n}\n\nfunc AddSample(name string) bool {\n\tp := C.CString(name)\n\tdefer C.free(unsafe.Pointer(p))\n\treturn C.glitch_add_sample(p) == 0\n}\n\nfunc RemoveSample(name string) bool {\n\tp := C.CString(name)\n\tdefer C.free(unsafe.Pointer(p))\n\treturn C.glitch_remove_sample(p) == 0\n}\n\ntype Glitch interface {\n\tCompile(expr string) error\n\tMIDI(msg []byte)\n\tFill(buf []float32, frames int, channels int)\n\tSet(name string, value float32)\n\tGet(name string) float32\n\tReset()\n\tDestroy()\n}\n\nvar ErrSyntax = errors.New(\"glitch syntax error\")\n\ntype glitch struct {\n\tsync.Mutex\n\tg *C.struct_glitch\n}\n\nfunc NewGlitch() Glitch {\n\tg := C.glitch_create()\n\tif g == nil {\n\t\treturn nil\n\t}\n\treturn &glitch{g: g}\n}\n\nfunc (g *glitch) Destroy() {\n\tg.Lock()\n\tdefer g.Unlock()\n\tC.glitch_destroy(g.g)\n}\n\nfunc (g *glitch) Reset() {\n\tg.Lock()\n\tdefer g.Unlock()\n\tC.glitch_reset(g.g)\n}\n\nfunc (g *glitch) Compile(expr string) error {\n\tg.Lock()\n\tdefer g.Unlock()\n\tp := C.CString(expr)\n\tdefer C.free(unsafe.Pointer(p))\n\tr := C.glitch_compile(g.g, p, C.strlen(p))\n\tif r != 0 {\n\t\treturn ErrSyntax\n\t}\n\treturn nil\n}\n\nfunc (g *glitch) Fill(buf []float32, frames, channels int) {\n\tg.Lock()\n\tdefer g.Unlock()\n\tC.glitch_fill(g.g, (*C.float)(&buf[0]), C.size_t(frames), C.size_t(channels))\n}\n\nfunc (g *glitch) MIDI(msg []byte) {\n\tif len(msg) == 3 {\n\t\tg.Lock()\n\t\tdefer g.Unlock()\n\t\tC.glitch_midi(g.g, C.uchar(msg[0]), C.uchar(msg[1]), C.uchar(msg[2]))\n\t}\n}\n\nfunc (g *glitch) Set(name string, value float32) {\n\tp := C.CString(name)\n\tdefer C.free(unsafe.Pointer(p))\n\tg.Lock()\n\tdefer g.Unlock()\n\tC.glitch_set(g.g, p, C.float(value))\n}\n\nfunc (g *glitch) Get(name string) float32 {\n\tp := C.CString(name)\n\tdefer C.free(unsafe.Pointer(p))\n\tg.Lock()\n\tdefer g.Unlock()\n\treturn float32(C.glitch_get(g.g, p))\n}\n"
  },
  {
    "path": "core/glitch.h",
    "content": "#ifndef GLITCH_H\n#define GLITCH_H\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n#include \"expr.h\"\n\n#define MAX_POLYPHONY 9\n\nstruct glitch {\n  int init;\n  struct expr *e;\n  struct expr *next_expr;\n  struct expr_var_list vars;\n  struct expr_var *t;\n  struct expr_var *x;\n  struct expr_var *y;\n  struct expr_var *bpm;\n\n  struct expr_var *k[MAX_POLYPHONY];\n  struct expr_var *g[MAX_POLYPHONY];\n  struct expr_var *v[MAX_POLYPHONY];\n\n  long frame;     /* Frame number since the beginning of the playback */\n  long bpm_start; /* Frame number when tempo has been changed */\n  float last_bpm;\n  float last_sample;\n};\n\ntypedef float (*glitch_loader_fn)(const char *name, int variant, int frame);\n\nvoid glitch_init(int sample_rate, unsigned long long seed);\nvoid glitch_set_sample_loader(glitch_loader_fn fn);\nint glitch_add_sample(const char *name);\nint glitch_remove_sample(const char *name);\n\nstruct glitch *glitch_create();\nvoid glitch_destroy(struct glitch *g);\nint glitch_compile(struct glitch *g, const char *s, size_t len);\nvoid glitch_reset(struct glitch *g);\nvoid glitch_set(struct glitch *g, const char *name, float value);\nfloat glitch_get(struct glitch *g, const char *name);\nvoid glitch_midi(struct glitch *g, unsigned char cmd, unsigned char a,\n                 unsigned char b);\nvoid glitch_fill(struct glitch *g, float *buf, size_t frames, size_t channels);\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif /* GLITCH_H */\n"
  },
  {
    "path": "core/glitch_test.c",
    "content": "// +build ignore\n\n#include <assert.h>\n#include <stdio.h>\n#include <time.h>\n\n#define LIBGLITCH_TEST\n#include \"glitch.c\"\n\nint status = 0;\n\n#define ASSERT(expr)                                                           \\\n  do {                                                                         \\\n    if (!(expr)) {                                                             \\\n      printf(\"\\nFAIL: %s (%d)\\n\\n\", #expr, __LINE__);                          \\\n      status = 1;                                                              \\\n    }                                                                          \\\n  } while (0)\n\n#define GLITCH_TEST(s)                                                         \\\n  for (struct glitch *g = glitch_create();                                     \\\n       g != NULL && glitch_compile(g, s, strlen(s)) == 0;                      \\\n       glitch_destroy(g), g = NULL)\n\n/*libglitch_sample_rate = sr;                                                \\*/\n/*libglitch_sample_rate = prev_sr;                                           \\*/\n#define GLITCH_SEQ_ASSERT(sr, expect)                                          \\\n  do {                                                                         \\\n    int prev_sr = libglitch_sample_rate;                                       \\\n    libglitch_init(sr, 0);                                                     \\\n    for (unsigned int i = 0; i < sizeof(expect) / sizeof(expect[0]); i++) {    \\\n      float v = glitch_eval(g);                                                \\\n      ASSERT(abs(v - expect[i]) < 0.0001);                                     \\\n    }                                                                          \\\n    libglitch_init(prev_sr, 0);                                                \\\n  } while (0)\n\nstatic void test_r() {\n  printf(\"TEST: r()\\n\");\n\n  /* Should return values in the range [0..max) */\n  GLITCH_TEST(\"r(10)\") {\n    for (int i = 0; i < 10; i++) {\n      ASSERT(glitch_eval(g) >= 0 && glitch_eval(g) < 10);\n    }\n  }\n\n  /* r(0) can only return 0 */\n  GLITCH_TEST(\"r(0)\") {\n    for (int i = 0; i < 10; i++) {\n      ASSERT(glitch_eval(g) == 0);\n    }\n  }\n\n  /* Two sequential values are likely to be different */\n  GLITCH_TEST(\"r()\") { ASSERT(glitch_eval(g) != glitch_eval(g)); }\n\n  /* By default r() returns values in the range [0..1) */\n  GLITCH_TEST(\"r()\") {\n    for (int i = 0; i < 10; i++) {\n      ASSERT(glitch_eval(g) >= 0 && glitch_eval(g) < 1);\n    }\n  }\n}\n\nstatic void test_hz() {\n  printf(\"TEST: hz()\\n\");\n\n  /* hz() == 440 */\n  GLITCH_TEST(\"hz()\") { ASSERT(glitch_eval(g) == 440.f); }\n\n  /* hz(A4) == 440 */\n  GLITCH_TEST(\"hz(A4)\") { ASSERT(glitch_eval(g) == 440.f); }\n\n  /* hz(A3) == 220 */\n  GLITCH_TEST(\"hz(A3)\") { ASSERT(glitch_eval(g) == 220.f); }\n\n  /* hz(NAN) == NAN */\n  GLITCH_TEST(\"hz(seq()) || -1\") { ASSERT(glitch_eval(g) == -1); }\n\n  /* hz(A3 + 0.5) > hz(A3), but < hz(A#3) */\n  GLITCH_TEST(\"hz(A3+0.5)\") {\n    ASSERT(glitch_eval(g) > 220.f && glitch_eval(g) < 233.f);\n  }\n}\n\nstatic void test_byte() {\n  printf(\"TEST: byte()\\n\");\n\n  /* byte() == 0 */\n  GLITCH_TEST(\"byte()\") { ASSERT(glitch_eval(g) == 0.f); }\n\n  /* byte(0) ~= -1 */\n  GLITCH_TEST(\"byte(0)\") {\n    ASSERT(glitch_eval(g) >= -1 && glitch_eval(g) < 0.99f);\n  }\n\n  /* byte(127) ~= 0 */\n  GLITCH_TEST(\"byte(127)\") { ASSERT(glitch_eval(g) == 0.f); }\n\n  /* byte(255) ~= 1 */\n  GLITCH_TEST(\"byte(255)\") { ASSERT(glitch_eval(g) == 1.f); }\n\n  /* byte(383) overflows and equals 0 */\n  GLITCH_TEST(\"byte(383)\") { ASSERT(glitch_eval(g) == 0.f); }\n\n  /* byte(-257) overflows and equals 1 */\n  GLITCH_TEST(\"byte(-257)\") { ASSERT(glitch_eval(g) == 1.f); }\n}\n\nstatic void test_s() {\n  printf(\"TEST: byte()\\n\");\n\n  /* s() == 0 */\n  GLITCH_TEST(\"s()\") { ASSERT(glitch_eval(g) == 0.f); }\n\n  /* s(0) == 0 */\n  GLITCH_TEST(\"s(0)\") { ASSERT(glitch_eval(g) == 0.f); }\n\n  /* s(1) == 0 */\n  GLITCH_TEST(\"s(1)\") { ASSERT(glitch_eval(g) == 0.f); }\n\n  /* s(0.25) == 1 */\n  GLITCH_TEST(\"s(0.25)\") { ASSERT(glitch_eval(g) == 1.f); }\n\n  /* s(0.5) == 0 */\n  GLITCH_TEST(\"s(0.5)\") {\n    ASSERT(glitch_eval(g) > -0.0001f && glitch_eval(g) < 0.0001f);\n  }\n\n  /* s(0.75) == 0 */\n  GLITCH_TEST(\"s(0.75)\") { ASSERT(glitch_eval(g) == -1.f); }\n}\n\nstatic void test_a() {\n  printf(\"TEST: a()\\n\");\n\n  /* a() == 0 */\n  GLITCH_TEST(\"a()\") { ASSERT(glitch_eval(g) == 0); }\n\n  /* a(1) == 0 */\n  GLITCH_TEST(\"a(1)\") { ASSERT(glitch_eval(g) == 0); }\n\n  /* a(1, 2, 3, 4) == 3 */\n  GLITCH_TEST(\"a(1, 2, 3, 4)\") { ASSERT(glitch_eval(g) == 3); }\n\n  /* a(7, 2, 3, 4) == 3 */\n  GLITCH_TEST(\"a(7, 2, 3, 4)\") { ASSERT(glitch_eval(g) == 3); }\n\n  /* a(-1, 2, 3, 4) == 4 */\n  GLITCH_TEST(\"a(-1, 2, 3, 4)\") { ASSERT(glitch_eval(g) == 4); }\n}\n\nstatic void test_osc() {\n  printf(\"TEST: sin(), tri(), saw(), sqr()\\n\");\n\n  /* sin(), tri(), saw(), sqr() returns NAN with no args */\n  GLITCH_TEST(\"sin() || -1\") { ASSERT(glitch_eval(g) == -1); }\n  GLITCH_TEST(\"tri() || -1\") { ASSERT(glitch_eval(g) == -1); }\n  GLITCH_TEST(\"saw() || -1\") { ASSERT(glitch_eval(g) == -1); }\n  GLITCH_TEST(\"sqr() || -1\") { ASSERT(glitch_eval(g) == -1); }\n\n  /* sin(), tri(), saw(), sqr() with positive frequency */\n  GLITCH_TEST(\"sin(1)\") {\n    float x = 0.7071f;\n    float expect[] = {0, x, 1, x, 0, -x, -1, -x, 0, x};\n    GLITCH_SEQ_ASSERT(8, expect);\n  }\n  GLITCH_TEST(\"tri(1)\") {\n    float expect[] = {0, 1, 0, -1, 0, 1, 0, -1, 0};\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n  GLITCH_TEST(\"saw(1)\") {\n    float expect[] = {0, 0.5, -1, -0.5, 0, 0.5, -1, -0.5, 0};\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n  GLITCH_TEST(\"sqr(1)\") {\n    float expect[] = {1, 1, -1, -1, 1, 1, -1, -1, 1};\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n  GLITCH_TEST(\"sqr(1, 0.25)\") {\n    float expect[] = {1, -1, -1, -1, 1, -1, -1, -1, 1};\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n\n  /* sin(), tri(), saw(), sqr() with negative frequency */\n  GLITCH_TEST(\"sin(-1)\") {\n    float x = 0.7071f;\n    float expect[] = {0, -x, -1, -x, 0, x, 1, x, 0, -x};\n    GLITCH_SEQ_ASSERT(8, expect);\n  }\n  GLITCH_TEST(\"tri(-1)\") {\n    float expect[] = {0, -1, 0, 1, 0, -1, 0, 1, 0};\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n  GLITCH_TEST(\"saw(-1)\") {\n    float expect[] = {0, -0.5, -1, 0.5, 0, -0.5, -1, 0.5, 0};\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n  GLITCH_TEST(\"sqr(-1)\") {\n    float expect[] = {1, -1, -1, 1, 1, -1, -1, 1, 1, -1};\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n}\n\nstatic void test_seq() {\n  printf(\"TEST: seq()\\n\");\n\n  /* seq() returns NAN */\n  GLITCH_TEST(\"seq() || -1\") { ASSERT(glitch_eval(g) == -1); }\n  /* seq(bpm) returns NAN */\n  GLITCH_TEST(\"seq(120) || -1\") { ASSERT(glitch_eval(g) == -1); }\n  /* seq(NaN,...) returns NAN */\n  GLITCH_TEST(\"seq(seq(),1,2,3) || -1\") { ASSERT(glitch_eval(g) == -1); }\n\n  /* seq(bpm, ...) switches values in a loop, returning NAN when beat ends */\n  GLITCH_TEST(\"seq(60,1,2,3) || -1\") {\n    float expect[] = {\n        1, 1, 1, -1, 2, 2, 2, -1, 3, 3, 3, -1,\n        1, 1, 1, -1, 2, 2, 2, -1, 3, 3, 3, -1,\n    };\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n\n  /* seq(bpm, ...) latches its value at the beginning of the beat */\n  GLITCH_TEST(\"seq(60,r()) || -1\") {\n    int prev_sr = libglitch_sample_rate;\n    libglitch_init(4, 0);\n    float latched = glitch_eval(g);\n    ASSERT(glitch_eval(g) == latched);\n    ASSERT(glitch_eval(g) == latched);\n    ASSERT(glitch_eval(g) == -1);\n    libglitch_init(prev_sr, 0);\n  }\n\n  /* If a tuple is passed as a step - step duration can be customized */\n  GLITCH_TEST(\"seq(60,1,(1.5,2),3,(0.5,4)) || -1\") {\n    float expect[] = {\n        1, 1, 1, -1, 2, 2, 2, 2, 2, -1, 3, 3, 3, -1, 4, -1,\n        1, 1, 1, -1, 2, 2, 2, 2, 2, -1, 3, 3, 3, -1, 4, -1,\n        1, 1, 1, -1, 2, 2, 2, 2, 2, -1, 3, 3, 3, -1, 4, -1,\n        1, 1, 1, -1, 2, 2, 2, 2, 2, -1, 3, 3, 3, -1, 4, -1,\n    };\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n\n  /* If more than 2 numbers are in a tuple - seq() should slide between the\n   * values, returning NaN at the end of the whole step */\n  GLITCH_TEST(\"seq(60,(3,1,4,5,2), 6) || -1\") {\n    float expect[] = {\n        1, 1.75, 2.5, 3.25, 4, 4.25, 4.5, 4.75, 5, 4.25, 3.5, -1, 6, 6, 6, -1,\n        1, 1.75, 2.5, 3.25, 4, 4.25, 4.5, 4.75, 5, 4.25, 3.5, -1, 6, 6, 6, -1,\n        1, 1.75, 2.5, 3.25, 4, 4.25, 4.5, 4.75, 5, 4.25, 3.5, -1, 6, 6, 6, -1,\n    };\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n\n  /* seq((start,bpm), ...) starts at a given step */\n  GLITCH_TEST(\"seq((1,60),1,2,3) || -1\") {\n    float expect[] = {\n        2, 2, 2, -1, 3, 3, 3, -1, 1, 1, 1, -1,\n        2, 2, 2, -1, 3, 3, 3, -1, 1, 1, 1, -1,\n    };\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n\n  /* seq() with only one step should work normally */\n  GLITCH_TEST(\"seq(60, (1, 2)) || -1\") {\n    float expect[] = {2, 2, 2, -1, 2, 2, 2, -1};\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n\n  /* seq() with only one glissando should work normally */\n  GLITCH_TEST(\"seq(30, (1, 48, 24, 0)) || -1\") {\n    float expect[] = {\n        48, 42, 36, 30, 24, 18, 12, -1,\n    };\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n\n  /* seq() with only one glissando step should work normally */\n  GLITCH_TEST(\"seq(30, (1, 48, 0)) || -1\") {\n    float expect[] = {\n        48, 42, 36, 30, 24, 18, 12, -1,\n    };\n    GLITCH_SEQ_ASSERT(4, expect);\n  }\n\n  /* loop(bpm, ...) evaluates next value on each call */\n  /* loop((start,bpm), ...) evaluates next value on each call */\n  /* loop(bpm, (a,b)...) modifies the duration of each beat */\n}\n\nstatic void test_env() {\n  printf(\"TEST: env()\\n\");\n\n  /* If no signal is given - env returns NAN */\n  GLITCH_TEST(\"env() || -1\") { ASSERT(glitch_eval(g) == -1); }\n\n  /* Default attack is 0.01, default release is 10x of the attack time */\n  GLITCH_TEST(\"env(10)\") {\n    float expect[] = {\n        5, 10, 9.9975, 9.995, 9.9925, 9.99,\n    };\n    /*GLITCH_SEQ_ASSERT(200, expect);*/\n    int prev_sr = libglitch_sample_rate;\n    libglitch_init(200, 0);\n    for (unsigned int i = 0; i < sizeof(expect) / sizeof(expect[0]); i++) {\n      float v = glitch_eval(g);\n      printf(\"%f %f\\n\", v, expect[i]);\n      ASSERT(abs(v - expect[i]) < 0.0001);\n    }\n    libglitch_init(prev_sr, 0);\n  }\n  GLITCH_TEST(\"env(10, 0.01, 10)\") {\n    float expect[] = {\n        5, 10, 9.9975, 9.995, 9.9925, 9.99,\n    };\n    GLITCH_SEQ_ASSERT(200, expect);\n  }\n\n  /* Env is reset when the signal becomes NAN */\n  GLITCH_TEST(\"env(x, 0.01, 10)\") {\n    float expect[] = {\n        5, 10, 9.9975, 9.995, 9.9925, 9.99,\n    };\n    glitch_set(g, \"x\", 10);\n    GLITCH_SEQ_ASSERT(200, expect);\n    glitch_set(g, \"x\", NAN);\n    glitch_eval(g);\n    glitch_set(g, \"x\", 10);\n    GLITCH_SEQ_ASSERT(200, expect);\n  }\n}\n\nstatic void test_delay() {\n  printf(\"TEST: delay()\\n\");\n\n  /* Fixed-time delay */\n  GLITCH_TEST(\"delay(x, 0.5, 0.5, 0.5)\") {\n    int prev_sr = libglitch_sample_rate;\n    libglitch_init(4, 0);\n    float x[] = {1, 2, 3, 4, 3, 2, 1};\n    float expect[] = {1, 2, 3.5, 5, 4.5, 4, 2.5};\n    for (unsigned int i = 0; i < sizeof(expect) / sizeof(expect[0]); i++) {\n      glitch_set(g, \"x\", x[i]);\n      float v = glitch_eval(g);\n      ASSERT(v == expect[i]);\n    }\n    libglitch_init(prev_sr, 0);\n  }\n\n  /* Variable-time delay */\n  GLITCH_TEST(\"delay(x, y, 0.5, 0.5)\") {\n    int prev_sr = libglitch_sample_rate;\n    libglitch_init(4, 0);\n    float x[] = {1, 2, 3, 4, 5, 6, 7, 8};\n    float y[] = {1, 1, 1, 1, 1, 0.75, 0.5, 0.25};\n    float expect[] = {1, 2, 3, 4, 5.5, 7.5, 9.5, 11.5};\n    for (unsigned int i = 0; i < sizeof(expect) / sizeof(expect[0]); i++) {\n      glitch_set(g, \"x\", x[i]);\n      glitch_set(g, \"y\", y[i]);\n      float v = glitch_eval(g);\n      ASSERT(v == expect[i]);\n    }\n    libglitch_init(prev_sr, 0);\n  }\n}\n\nstatic void test_benchmark(const char *s) {\n  double start = (double)clock() / CLOCKS_PER_SEC;\n  struct glitch *g = glitch_create();\n  if (g == NULL) {\n    printf(\"FAIL: glitch instance can't be created\\n\");\n    status = 1;\n    return;\n  }\n  if (glitch_compile(g, s, strlen(s)) != 0) {\n    printf(\"FAIL: %s can't be compiled\\n\", s);\n    status = 1;\n    return;\n  }\n  long N = 1000000L;\n  for (long i = 0; i < N; i++) {\n    glitch_eval(g);\n  }\n  double end = (double)clock() / CLOCKS_PER_SEC;\n  glitch_destroy(g);\n  double ns = 1000000000 * (end - start) / N;\n  printf(\"BENCH %40s:\\t%f ns/op (%dM op/sec)\\n\", s, ns, (int)(1000 / ns));\n}\n\nstatic void run_benchmarks() {\n  printf(\"\\n## Arithmetics\\n\");\n  test_benchmark(\"0\");\n  test_benchmark(\"x=x+1\");\n  test_benchmark(\"byte(t*(42&t>>10))\");\n\n  printf(\"\\n## Instruments\\n\");\n  test_benchmark(\"sin(440)\");\n  test_benchmark(\"saw(440)\");\n  test_benchmark(\"tri(440)\");\n  test_benchmark(\"sqr(440)\");\n  test_benchmark(\"fm(440,1,1)\");\n  /*test_benchmark(\"piano(440)\");*/\n  test_benchmark(\"pluck(440)\");\n  test_benchmark(\"tr808(BD,1)\");\n\n  printf(\"\\n## Sequencers\\n\");\n  test_benchmark(\"a(i=i+1,1,2,3,4)\");\n  test_benchmark(\"s(i=i+1/6)\");\n  test_benchmark(\"seq(120,1,2,3,4)\");\n  test_benchmark(\"seq(120,(0.5,1),2,(2,3),(1.5,4))\");\n  test_benchmark(\"seq((2,120),(0.5,1),2,(2,3),(1.5,4))\");\n  test_benchmark(\"seq(120*2,1,2,0,0,3,4,0,0)\");\n  test_benchmark(\"loop(120,1,2,3,4)\");\n  /* TODO: nested sequences */\n  /* TODO: variable bpm and offset */\n\n  printf(\"\\n## Effects\\n\");\n  test_benchmark(\"lpf(saw(440))\");\n  test_benchmark(\"hpf(saw(440))\");\n  test_benchmark(\"bpf(saw(440))\");\n  test_benchmark(\"bsf(saw(440))\");\n  test_benchmark(\"delay(saw(seq(120,440)),0.1,0.5,0.5)\");\n\n  printf(\"\\n## Utils\\n\");\n  test_benchmark(\"hz(A4)\");\n  test_benchmark(\"scale(42)\");\n  test_benchmark(\"r()\");\n  test_benchmark(\"env(sin(seq(120,440)),0.1,0.3)\");\n  test_benchmark(\"mix(sin(220),sin(440),sin(880),sin(110))\");\n  test_benchmark(\"(sin(220)+sin(440)+sin(880)+sin(110))/4\");\n  test_benchmark(\"each(f,sin(f),220,440,880,110)/4\");\n  test_benchmark(\"delay(sin(440),0.25,0.5,0.5)\");\n  test_benchmark(\"delay(sin(440),0.25+sin(4)/10,0.5,0.5)\");\n}\n\nint main() {\n  glitch_init(48000, time(NULL));\n\n  libglitch_test();\n\n  test_r();\n  test_hz();\n  test_byte();\n  test_s();\n  test_a();\n  test_osc();\n  test_seq();\n  test_env();\n  test_delay();\n\n  run_benchmarks();\n\n  return status;\n}\n"
  },
  {
    "path": "core/glitch_test.go",
    "content": "package core\n\nimport \"testing\"\n\nfunc eval(g Glitch) float32 {\n\tf32 := []float32{0}\n\tg.Fill(f32, 1, 1)\n\treturn f32[0]\n}\n\nfunc TestGlitch(t *testing.T) {\n\tg := NewGlitch()\n\tdefer g.Destroy()\n\n\tif err := g.Compile(\"2+\"); err != ErrSyntax {\n\t\tt.Fatal(\"expected ErrSyntax\", err)\n\t}\n\n\tif err := g.Compile(\"2+3\"); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tif x := eval(g); x != 5 {\n\t\tt.Error(\"expected 5, got\", x)\n\t}\n}\n\nfunc TestGlitchVar(t *testing.T) {\n\tg := NewGlitch()\n\tdefer g.Destroy()\n\n\tg.Compile(\"x = 5\")\n\tif x := eval(g); x != 5 {\n\t\tt.Error(\"expected 5, got\", x)\n\t}\n\tif x := g.Get(\"x\"); x != 5 {\n\t\tt.Error(\"expected x=5, got\", x)\n\t}\n\tg.Compile(\"z = x + y\")\n\tg.Set(\"y\", 3)\n\teval(g)\n\tif z := g.Get(\"z\"); z != 8 {\n\t\tt.Error(\"expected z=8, got\", z)\n\t}\n}\n\nfunc TestGlitchSamples(t *testing.T) {\n\tg := NewGlitch()\n\tdefer g.Destroy()\n\tif err := g.Compile(\"foo()\"); err == nil {\n\t\tt.Error(\"foo() should be missing, but compile succeeds\")\n\t}\n\tAddSample(\"foo\")\n\tif err := g.Compile(\"foo()\"); err != nil {\n\t\tt.Error(\"foo() should be present, but compile fails\")\n\t}\n\tAddSample(\"bar\")\n\tif err := g.Compile(\"foo()+bar()\"); err != nil {\n\t\tt.Error(\"foo() and bar() should be present, but compile fails\")\n\t}\n\tRemoveSample(\"foo\")\n\tif err := g.Compile(\"foo()+bar()\"); err == nil {\n\t\tt.Error(\"foo() should not be present, but compile succeeds\")\n\t}\n\tif err := g.Compile(\"bar()\"); err != nil {\n\t\tt.Error(\"bar() should be present, but compile fails\")\n\t}\n\tRemoveSample(\"bar\")\n\tRemoveSample(\"foo\")\n\tif err := g.Compile(\"bar()\"); err == nil {\n\t\tt.Error(\"bar() should not be present, but compile succeeds\")\n\t}\n}\n"
  },
  {
    "path": "core/libglitch.h",
    "content": "#ifndef LIBGLITCH_H\n#define LIBGLITCH_H\n\n#include <assert.h>\n#include <math.h>\n#include <stdlib.h>\n\n#ifdef LIBGLITCH_TEST\n//\n// Test helpers: assert and benchmark macros\n//\n#include <stdio.h>\n#include <time.h>\n#define libglitch_assert(cond) (!(cond) ? printf(\"FAIL: %s\\n\", #cond) : 0);\n#define libglitch_bench_clock() ((float)clock() * 1000000000L / CLOCKS_PER_SEC)\n#define libglitch_bench(_name, _iter)                                          \\\n  for (long _start_ns = libglitch_bench_clock(), _i = (_iter);                 \\\n       _i > 0 || (printf(\"BENCH: %30s: %f ns/op\\n\", _name,                     \\\n\t\t\t (libglitch_bench_clock() - _start_ns) / _iter),       \\\n\t\t  0);                                                          \\\n       _i--)\n// Number of benchmark iterations\nstatic long N = 1000000L;\n// Variables used inside the benchmark loop to prevent loop optimizations\nstatic volatile float x, y;\n\n#endif /* LIBGLITCH_TEST */\n\n// Audio engine sample rate. Used to advance oscillators at the given frequency.\nstatic int libglitch_sample_rate;\n\n// Interpolation util. XXX currently does not interploate at all.\nstatic inline float libglitch_interpolate(float *arr, size_t len, float index) {\n  (void)len;\n  if (isnan(index)) {\n    return NAN;\n  }\n  return arr[(int)index];\n}\n\n// Returns fractal part of the real number TODO rename to libglitch_frac\nstatic float libglitch_wrap(float x) {\n#if 0\n  return x - floorf(x);\n#elif 0\n  return fmodf(1 + fmodf(x, 1), 1);\n#else\n  x = x - (int)x + 1;\n  return x - (int)x;\n#endif\n}\n\n// =================================\n// r: pseudo-random number generator\n// =================================\nstatic unsigned long long libglitch_rand_seed;\n\nstatic inline void libglitch_rand_init(unsigned long long seed) {\n  libglitch_rand_seed = seed;\n}\n\nstatic inline float libglitch_rand(float max) {\n  libglitch_rand_seed = 6364136223846793005ULL * libglitch_rand_seed + 1;\n  return (libglitch_rand_seed >> 33) * max / 0x7fffffff;\n}\n\n#ifdef LIBGLITCH_TEST\nstatic inline void libglitch_rand_test() {\n  // Two random numbers are unlikely to be equal\n  libglitch_assert(libglitch_rand(10000) != libglitch_rand(10000));\n  // Random with zero range should return zero\n  libglitch_assert(libglitch_rand(0) == 0);\n  // If any of the parameters is NAN - libglitch_rand() returns NAN\n  libglitch_assert(isnan(libglitch_rand(NAN)));\n  // Random numbers should always be within the [min, max] range\n  for (int i = 0; i < 100000; i++) {\n    libglitch_assert(libglitch_rand(1) >= 0 && libglitch_rand(1) <= 1);\n  }\n\n  libglitch_bench(\"rand()\", N) { y = libglitch_rand(x); }\n}\n#endif\n\n// ==============================\n// byte: bytebeat range converter\n// ==============================\nstatic float libglitch_byte_lut[256];\n\nstatic inline void libglitch_byte_init() {\n  for (int i = 0; i < 256; i++) {\n    libglitch_byte_lut[i] = (i - 127) / 128.f;\n  }\n}\nstatic inline float libglitch_byte(float byte) {\n  return libglitch_byte_lut[((int)byte) & 255] + (byte - byte);\n}\n\n#ifdef LIBGLITCH_TEST\nstatic void libglitch_byte_test() {\n  // Should convert values from [0..255] to the [-1..1] range */\n  libglitch_assert(libglitch_byte(255) == 1);\n  libglitch_assert(libglitch_byte(255.1f) == 1);\n  libglitch_assert(libglitch_byte(255 + 256) == 1);\n  libglitch_assert(libglitch_byte(255 - 256) == 1);\n  libglitch_assert(libglitch_byte(127) == 0);\n  libglitch_assert(libglitch_byte(127 + 256) == 0);\n  libglitch_assert(libglitch_byte(127 + 1024) == 0);\n  libglitch_assert(libglitch_byte(127 - 256) == 0);\n  libglitch_assert(libglitch_byte(-129) == 0);\n\n  libglitch_assert(isnan(libglitch_byte(NAN)));\n\n  libglitch_bench(\"byte()\", N) { y = libglitch_byte(x); }\n}\n#endif\n\n// =====================================\n// hz: note index to frequency converter\n// =====================================\n#define libglitch_hz_lut_min_note -48 // ~27Hz\n#define libglitch_hz_lut_max_note 72  // ~28kHz\n#define libglitch_hz_lut_microtones 12\n#define libglitch_hz_lut_len                                                   \\\n  ((libglitch_hz_lut_max_note - libglitch_hz_lut_min_note) *                   \\\n   libglitch_hz_lut_microtones)\nstatic float libglitch_hz_lut[libglitch_hz_lut_len];\n\nstatic inline void libglitch_hz_init() {\n  for (int n = libglitch_hz_lut_min_note; n < libglitch_hz_lut_max_note; n++) {\n    for (int m = 0; m < libglitch_hz_lut_microtones; m++) {\n      float note = n + 1.f * m / libglitch_hz_lut_microtones;\n      float freq = powf(2.0, note / 12.f) * 440.f;\n      int index =\n\t  (n - libglitch_hz_lut_min_note) * libglitch_hz_lut_microtones + m;\n      libglitch_hz_lut[index] = freq;\n    }\n  }\n}\n\nstatic inline float libglitch_hz(float note) {\n  float mul = 1.f;\n  while (note < libglitch_hz_lut_min_note) {\n    note = note + 12.f;\n    mul = mul * 2.f;\n  }\n  while (note >= libglitch_hz_lut_max_note) {\n    note = note - 12.f;\n    mul = mul / 2.f;\n  }\n  return mul * libglitch_interpolate(libglitch_hz_lut, libglitch_hz_lut_len,\n\t\t\t\t     libglitch_hz_lut_microtones *\n\t\t\t\t\t (note - libglitch_hz_lut_min_note));\n}\n\n#ifdef LIBGLITCH_TEST\nstatic void libglitch_hz_test() {\n  libglitch_assert(libglitch_hz(0) == 440.f);\n  libglitch_assert(libglitch_hz(12) == 880.f);\n  libglitch_assert(libglitch_hz(-12) == 220.f);\n  libglitch_assert(libglitch_hz(-24) == 110.f);\n  libglitch_assert(libglitch_hz(3.2) > libglitch_hz(3));\n  libglitch_assert(libglitch_hz(3.2) < libglitch_hz(4));\n  libglitch_assert(isnan(libglitch_hz(NAN)));\n\n  libglitch_bench(\"hz()\", N) { y = libglitch_hz(x); }\n}\n#endif\n\n// =====================================\n// sin, tri, saw, sqr: basic oscillators\n// =====================================\n#define LIBGLITCH_OSC_LUT_LEN 8192\nstatic float libglitch_sin_lut[LIBGLITCH_OSC_LUT_LEN];\nstatic float libglitch_tri_lut[LIBGLITCH_OSC_LUT_LEN];\nstatic float libglitch_saw_lut[LIBGLITCH_OSC_LUT_LEN];\n\ntypedef struct libglitch_osc { float w; } libglitch_osc_t;\n\nstatic void libglitch_osc_init() {\n  for (unsigned int i = 0; i < LIBGLITCH_OSC_LUT_LEN; i++) {\n    float w = i * 1.f / LIBGLITCH_OSC_LUT_LEN;\n    float sign = (w < 0 ? -1 : 1);\n    float tri_w = libglitch_wrap(w * sign + 0.25f) - 0.5f;\n    libglitch_sin_lut[i] = sinf(w * 2 * 3.14151926f);\n    libglitch_tri_lut[i] = sign * 4 * (0.25f - tri_w * (tri_w < 0 ? -1 : 1));\n    libglitch_saw_lut[i] = 2 * libglitch_wrap(w + 0.5f * sign) - sign;\n  }\n}\n\nstatic float libglitch_osc(libglitch_osc_t *osc, const float freq,\n\t\t\t   float *sample, const size_t len) {\n  if (isnan(freq)) {\n    return NAN;\n  }\n  float w = osc->w;\n  osc->w = libglitch_wrap(osc->w + freq / libglitch_sample_rate);\n  return libglitch_interpolate(sample, len, (w * len));\n}\n\nstatic float libglitch_sin(libglitch_osc_t *osc, float freq) {\n  return libglitch_osc(osc, freq, libglitch_sin_lut, LIBGLITCH_OSC_LUT_LEN);\n}\n\nstatic float libglitch_tri(libglitch_osc_t *osc, float freq) {\n  return libglitch_osc(osc, freq, libglitch_tri_lut, LIBGLITCH_OSC_LUT_LEN);\n}\n\nstatic float libglitch_saw(libglitch_osc_t *osc, float freq) {\n  return libglitch_osc(osc, freq, libglitch_saw_lut, LIBGLITCH_OSC_LUT_LEN);\n}\n\nstatic float libglitch_sqr(libglitch_osc_t *osc, float freq, float pwm) {\n  if (isnan(freq)) {\n    return NAN;\n  }\n  float w = osc->w;\n  osc->w = libglitch_wrap(osc->w + freq / libglitch_sample_rate);\n  return (w < pwm ? 1 : -1);\n}\n\n#ifdef LIBGLITCH_TEST\nstatic void libglitch_osc_test() {\n  libglitch_osc_t osc = {0};\n  x = 440;\n  libglitch_bench(\"sin()\", N) { y = libglitch_sin(&osc, x); }\n  libglitch_bench(\"tri()\", N) { y = libglitch_saw(&osc, x); }\n  libglitch_bench(\"saw()\", N) { y = libglitch_tri(&osc, x); }\n  libglitch_bench(\"sqr()\", N) { y = libglitch_sqr(&osc, x, 0.5); }\n}\n#endif\n\n// ==================================\n// lpf, hpf, bpf, bsf: biquad filters\n// ==================================\ntypedef enum libglitch_biquad_filter {\n  LIBGLITCH_FILTER_LPF,\n  LIBGLITCH_FILTER_HPF,\n  LIBGLITCH_FILTER_BPF,\n  LIBGLITCH_FILTER_BSF,\n} libglitch_biquad_filter_t;\n\ntypedef struct libglitch_biquad {\n  float x1;\n  float x2;\n  float y1;\n  float y2;\n} libglitch_biquad_t;\n\nstatic inline float libglitch_biquad(libglitch_biquad_t *filter,\n\t\t\t\t     libglitch_biquad_filter_t type,\n\t\t\t\t     float input, float cutoff, float q) {\n  if (isnan(input) || isnan(cutoff) || isnan(q)) {\n    filter->x1 = filter->x2 = filter->y1 = filter->y2 = 0;\n    return NAN;\n  }\n  if (cutoff <= 0 || q <= 0) {\n    return 0;\n  }\n\n  float w0 = cutoff / libglitch_sample_rate;\n  float cs =\n      libglitch_interpolate(libglitch_sin_lut, LIBGLITCH_OSC_LUT_LEN,\n\t\t\t    LIBGLITCH_OSC_LUT_LEN * libglitch_wrap(w0 + 0.25f));\n  float sn = libglitch_interpolate(libglitch_sin_lut, LIBGLITCH_OSC_LUT_LEN,\n\t\t\t\t   LIBGLITCH_OSC_LUT_LEN * libglitch_wrap(w0));\n  float alpha = sn / (2 * q);\n  float a0, a1, a2, b0, b1, b2;\n\n  switch (type) {\n  case LIBGLITCH_FILTER_LPF:\n    b0 = (1 - cs) / 2;\n    b1 = 1 - cs;\n    b2 = (1 - cs) / 2;\n    a0 = 1 + alpha;\n    a1 = -2 * cs;\n    a2 = 1 - alpha;\n    break;\n  case LIBGLITCH_FILTER_HPF:\n    b0 = (1 + cs) / 2;\n    b1 = -(1 + cs);\n    b2 = (1 + cs) / 2;\n    a0 = 1 + alpha;\n    a1 = -2 * cs;\n    a2 = 1 - alpha;\n    break;\n  case LIBGLITCH_FILTER_BPF:\n    b0 = alpha;\n    b1 = 0;\n    b2 = -alpha;\n    a0 = 1 + alpha;\n    a1 = -2 * cs;\n    a2 = 1 - alpha;\n    break;\n  case LIBGLITCH_FILTER_BSF:\n    b0 = 1;\n    b1 = -2 * cs;\n    b2 = 1;\n    a0 = 1 + alpha;\n    a1 = -2 * cs;\n    a2 = 1 - alpha;\n    break;\n  default:\n    return input;\n  }\n\n  float out = (b0 / a0) * input + b1 / a0 * filter->x1 + b2 / a0 * filter->x2 -\n\t      a1 / a0 * filter->y1 - a2 / a0 * filter->y2;\n\n  filter->x2 = filter->x1;\n  filter->x1 = input;\n  filter->y2 = filter->y1;\n  filter->y1 = out;\n  return out;\n}\n\n#ifdef LIBGLITCH_TEST\nstatic void libglitch_biquad_test() {\n  libglitch_biquad_t filter = {0.f, 0.f, 0.f, 0.f};\n  x = 42;\n  libglitch_bench(\"lpf()\", N) {\n    x = libglitch_biquad(&filter, LIBGLITCH_FILTER_LPF, x, x, x);\n  }\n}\n#endif\n\n// ============================\n// env: attack-release envelope\n// ============================\ntypedef struct libglitch_env {\n  int t;\n  int at;\n  int rt;\n  float ac;\n  float aval;\n  float amul;\n  float adif;\n  float rc;\n  float rval;\n  float rmul;\n  float rdif;\n} libglitch_env_t;\n#define libglitch_env_calc_exp(t, c, mult, diff)                               \\\n  do {                                                                         \\\n    if ((t) > 0) {                                                             \\\n      if ((c) < 0.4999f || (c) > 0.5001f) {                                    \\\n\tfloat s = (1 - (c)) / (c);                                             \\\n\t(mult) = powf(s, 2.0f / (t));                                          \\\n\t(diff) = ((mult)-1) / (s * s - 1);                                     \\\n      } else {                                                                 \\\n\t(mult) = 1;                                                            \\\n\t(diff) = 1.f / (t);                                                    \\\n      }                                                                        \\\n    }                                                                          \\\n  } while (0)\n\nstatic inline float libglitch_env_flim(float x, float a, float b) {\n  if (!isnan(a) && x < a) {\n    return a;\n  } else if (!isnan(b) && x > b) {\n    return b;\n  }\n  return x;\n}\nstatic float libglitch_env(libglitch_env_t *env, float g, float v, float at,\n\t\t\t   float rt, float ac, float rc) {\n  if (env->t == 0) {\n    env->at = (int)(at * libglitch_sample_rate);\n    env->rt = (int)(rt * libglitch_sample_rate);\n    ac = libglitch_env_flim(ac, 0.0001f, 0.9999f);\n    rc = libglitch_env_flim(rc, 0.0001f, 0.9999f);\n\n    libglitch_env_calc_exp(env->at, ac, env->amul, env->adif);\n    libglitch_env_calc_exp(env->rt, (1 - rc), env->rmul, env->rdif);\n    env->aval = env->rval = 0;\n  }\n\n  float r = 0;\n  if (env->t < env->at) {\n    r = env->aval = env->aval * env->amul + env->adif;\n  } else if (env->t < env->at + env->rt) {\n    env->rval = env->rval * env->rmul + env->rdif;\n    r = 1 - env->rval;\n  }\n\n  env->t++;\n  if (isnan(g)) {\n    env->t = 0;\n    r = NAN;\n  }\n  return r * v;\n}\n#ifdef LIBGLITCH_TEST\nstatic void libglitch_env_test() {\n  libglitch_env_t env = {0};\n  x = 42;\n  libglitch_bench(\"env()\", N) {\n    x = libglitch_env(&env, x, x, 0.01, 0.5, 0.2, 0.6);\n  }\n}\n#endif\n\n// ======================================\n// delay: simple delay line with feedback\n// ======================================\n#define LIBGLITCH_MAX_DELAY_TIME 10    /* seconds */\n#define LIBGLITCH_MIN_DELAY_BLOCK 8192 /* smallest delay buffer resize */\ntypedef struct libglitch_delay {\n  float *buf;\n  size_t n;\n  int pos;\n} libglitch_delay_t;\n\nstatic float libglitch_delay(libglitch_delay_t *delay, float signal, float time,\n\t\t\t     float level, float feedback) {\n  if (feedback > 1.0f) {\n    feedback = 1.0f;\n  }\n  if (feedback < 0.0f) {\n    feedback = 0.0f;\n  }\n  if (time <= 0) {\n    return signal;\n  }\n  if (time > LIBGLITCH_MAX_DELAY_TIME) {\n    time = LIBGLITCH_MAX_DELAY_TIME;\n  }\n\n  size_t bufsz = (size_t)(time * libglitch_sample_rate);\n\n  /* Expand buffer if needed */\n  if (delay->n < bufsz) {\n    int sz =\n\t((bufsz / LIBGLITCH_MIN_DELAY_BLOCK) + 1) * LIBGLITCH_MIN_DELAY_BLOCK;\n    int n = delay->n;\n    delay->n = sz;\n    delay->buf = realloc(delay->buf, sz * sizeof(*delay->buf));\n    if (delay->buf == NULL) {\n      delay->n = 0;\n      return signal;\n    }\n    for (int i = n; i < sz; i++) {\n      delay->buf[i] = 0;\n    }\n  }\n\n  /* Get value delayed value from the buffer */\n  float out = 0;\n  if (bufsz <= delay->n) {\n    unsigned int i = (delay->pos + delay->n - bufsz) % delay->n;\n    out = delay->buf[i] * level;\n  }\n\n  /* Write updated value to the buffer */\n  signal = (isnan(signal) ? 0 : signal);\n  delay->buf[delay->pos] = delay->buf[delay->pos] * feedback + signal;\n  delay->pos = (delay->pos + 1) % delay->n;\n  return signal + out;\n}\n\nstatic void libglitch_delay_free(libglitch_delay_t *delay) { free(delay->buf); }\n\n#ifdef LIBGLITCH_TEST\nstatic void libglitch_delay_test() {\n  libglitch_delay_t delay = {0};\n  x = 42;\n  libglitch_bench(\"delay()\", N) {\n    x = libglitch_delay(&delay, x, 0.25, 0.5, 0.2);\n  }\n  libglitch_delay_free(&delay);\n}\n#endif\n\n// ===============================\n// pluck: Karplus-Strong algorithm\n// ===============================\ntypedef struct libglitch_pluck {\n  int init; /* FIXME: can we use sample != NULL instead? */\n  int t;\n  float *sample;\n} libglitch_pluck_t;\n\nstatic float libglitch_pluck(libglitch_pluck_t *pluck, float freq, float decay,\n\t\t\t     float (*fill)(void *context), void *context) {\n\n  if (isnan(freq)) {\n    pluck->init = 0;\n    return NAN;\n  } else if (freq == 0) {\n    return 0;\n  } else if (freq < 0) {\n    freq = -freq;\n  }\n\n  int n = (int)(libglitch_sample_rate / freq);\n  if (n == 0) {\n    return 0;\n  }\n\n  if (pluck->init == 0) {\n    pluck->sample = (float *)realloc(pluck->sample, sizeof(float) * n);\n    for (int i = 0; i < n; i++) {\n      if (fill != NULL) {\n\tpluck->sample[i] = fill(context);\n      } else {\n\tpluck->sample[i] = (rand() * 2.0f / RAND_MAX) - 1.0f;\n      }\n    }\n    pluck->init = 1;\n    pluck->t = 0;\n  }\n  float x = pluck->sample[pluck->t % n];\n  float y = pluck->sample[(pluck->t + 1) % n];\n  pluck->t = (pluck->t + 1) % n;\n  pluck->sample[pluck->t] = x * decay + y * (1 - decay);\n  return x;\n}\n\nstatic void libglitch_pluck_free(libglitch_pluck_t *pluck) {\n  free(pluck->sample);\n}\n\n#ifdef LIBGLITCH_TEST\nstatic void libglitch_pluck_test() {\n  libglitch_pluck_t pluck = {0};\n  x = 42;\n  libglitch_bench(\"pluck()\", N) {\n    x = libglitch_pluck(&pluck, 0.25, 0.5, NULL, NULL);\n  }\n  libglitch_pluck_free(&pluck);\n}\n#endif\n\n// ========================\n// libglitch initialization\n// ========================\nstatic void libglitch_init(int sample_rate, unsigned long long seed) {\n  libglitch_sample_rate = sample_rate;\n\n  libglitch_rand_init(seed);\n  libglitch_byte_init();\n  libglitch_hz_init();\n  libglitch_osc_init();\n}\n\n#ifdef LIBGLITCH_TEST\nstatic void libglitch_test() {\n  libglitch_rand_test();\n  libglitch_byte_test();\n  libglitch_hz_test();\n  libglitch_osc_test();\n  libglitch_biquad_test();\n  libglitch_env_test();\n  libglitch_delay_test();\n  libglitch_pluck_test();\n}\n#endif /* LIBGLITCH_TEST */\n\n#endif /* LIBGLITCH_H */\n"
  },
  {
    "path": "core/tr808.h",
    "content": "unsigned char tr808_bd_wav[] = {\n  0x52, 0x49, 0x46, 0x46, 0x8c, 0xac, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45,\n  0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00,\n  0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e,\n  0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61,\n  0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61,\n  0x74, 0x61, 0x46, 0xac, 0x00, 0x00, 0xf0, 0xff, 0xe9, 0xff, 0xf2, 0xff,\n  0xe0, 0xff, 0xfb, 0xff, 0xce, 0xff, 0xfd, 0x00, 0xca, 0x04, 0x4e, 0x08,\n  0x80, 0x0b, 0x69, 0x0e, 0x1c, 0x11, 0xa2, 0x13, 0x06, 0x16, 0x4d, 0x18,\n  0x74, 0x1a, 0x88, 0x1c, 0x7b, 0x1e, 0x60, 0x20, 0x34, 0x22, 0xf4, 0x23,\n  0xa6, 0x25, 0x49, 0x27, 0xdc, 0x28, 0x64, 0x2a, 0xdd, 0x2b, 0x46, 0x2d,\n  0xa3, 0x2e, 0xf7, 0x2f, 0x3d, 0x31, 0x73, 0x32, 0xa0, 0x33, 0xc3, 0x34,\n  0xd6, 0x35, 0xe2, 0x36, 0xdf, 0x37, 0xd8, 0x38, 0xbf, 0x39, 0x9e, 0x3a,\n  0x70, 0x3b, 0x3e, 0x3c, 0x01, 0x3d, 0xb5, 0x3d, 0x62, 0x3e, 0x05, 0x3f,\n  0x9e, 0x3f, 0x31, 0x40, 0xb0, 0x40, 0x37, 0x41, 0x4e, 0x41, 0xbf, 0x40,\n  0x18, 0x40, 0x53, 0x3f, 0x81, 0x3e, 0xa6, 0x3d, 0xc4, 0x3c, 0xd6, 0x3b,\n  0xdf, 0x3a, 0xde, 0x39, 0xce, 0x38, 0xbc, 0x37, 0xa3, 0x36, 0x7e, 0x35,\n  0x53, 0x34, 0x20, 0x33, 0xe7, 0x31, 0xac, 0x30, 0x6c, 0x2f, 0x22, 0x2e,\n  0xdb, 0x2c, 0x8b, 0x2b, 0x39, 0x2a, 0xe4, 0x28, 0x8c, 0x27, 0x30, 0x26,\n  0xd2, 0x24, 0x73, 0x23, 0x10, 0x22, 0xab, 0x20, 0x40, 0x1f, 0xdc, 0x1d,\n  0x70, 0x1c, 0x02, 0x1b, 0x98, 0x19, 0x26, 0x18, 0xb9, 0x16, 0x46, 0x15,\n  0xd3, 0x13, 0x61, 0x12, 0xf0, 0x10, 0x7f, 0x0f, 0x09, 0x0e, 0x96, 0x0c,\n  0x20, 0x0b, 0xae, 0x09, 0x38, 0x08, 0xc3, 0x06, 0x53, 0x05, 0xdd, 0x03,\n  0x6f, 0x02, 0xfb, 0x00, 0x8a, 0xff, 0x1e, 0xfe, 0xad, 0xfc, 0x3c, 0xfb,\n  0xd1, 0xf9, 0x65, 0xf8, 0xfb, 0xf6, 0x93, 0xf5, 0x2e, 0xf4, 0xc9, 0xf2,\n  0x63, 0xf1, 0x01, 0xf0, 0xa6, 0xee, 0x47, 0xed, 0xef, 0xeb, 0x97, 0xea,\n  0x41, 0xe9, 0xed, 0xe7, 0x9f, 0xe6, 0x52, 0xe5, 0x05, 0xe4, 0xc1, 0xe2,\n  0x7d, 0xe1, 0x3c, 0xe0, 0xfe, 0xde, 0xc3, 0xdd, 0x8d, 0xdc, 0x59, 0xdb,\n  0x2c, 0xda, 0x01, 0xd9, 0xd9, 0xd7, 0xb5, 0xd6, 0x99, 0xd5, 0x7e, 0xd4,\n  0x64, 0xd3, 0x53, 0xd2, 0x44, 0xd1, 0x3d, 0xd0, 0x38, 0xcf, 0x37, 0xce,\n  0x3b, 0xcd, 0x44, 0xcc, 0x57, 0xcb, 0x67, 0xca, 0x82, 0xc9, 0x9f, 0xc8,\n  0xc1, 0xc7, 0xec, 0xc6, 0x18, 0xc6, 0x4b, 0xc5, 0x85, 0xc4, 0xc5, 0xc3,\n  0x07, 0xc3, 0x52, 0xc2, 0xa2, 0xc1, 0xf6, 0xc0, 0x50, 0xc0, 0xb2, 0xbf,\n  0x1a, 0xbf, 0x87, 0xbe, 0xfc, 0xbd, 0x75, 0xbd, 0xf4, 0xbc, 0x78, 0xbc,\n  0x03, 0xbc, 0x94, 0xbb, 0x2b, 0xbb, 0xcb, 0xba, 0x71, 0xba, 0x1a, 0xba,\n  0xcc, 0xb9, 0x81, 0xb9, 0x42, 0xb9, 0x06, 0xb9, 0xd0, 0xb8, 0xa3, 0xb8,\n  0x7d, 0xb8, 0x57, 0xb8, 0x3e, 0xb8, 0x29, 0xb8, 0x1b, 0xb8, 0x15, 0xb8,\n  0x0c, 0xb8, 0x1c, 0xb8, 0x1e, 0xb8, 0x35, 0xb8, 0x4c, 0xb8, 0x6a, 0xb8,\n  0x90, 0xb8, 0xbb, 0xb8, 0xee, 0xb8, 0x25, 0xb9, 0x60, 0xb9, 0xa8, 0xb9,\n  0xf3, 0xb9, 0x41, 0xba, 0x9a, 0xba, 0xfb, 0xba, 0x5b, 0xbb, 0xc7, 0xbb,\n  0x37, 0xbc, 0xa9, 0xbc, 0x29, 0xbd, 0xa7, 0xbd, 0x32, 0xbe, 0xbf, 0xbe,\n  0x50, 0xbf, 0xed, 0xbf, 0x8b, 0xc0, 0x32, 0xc1, 0xd9, 0xc1, 0x8a, 0xc2,\n  0x41, 0xc3, 0xfe, 0xc3, 0xbb, 0xc4, 0x83, 0xc5, 0x4d, 0xc6, 0x20, 0xc7,\n  0xf4, 0xc7, 0xd3, 0xc8, 0xaf, 0xc9, 0x9b, 0xca, 0x87, 0xcb, 0x78, 0xcc,\n  0x6c, 0xcd, 0x6b, 0xce, 0x6e, 0xcf, 0x77, 0xd0, 0x84, 0xd1, 0x99, 0xd2,\n  0xb5, 0xd3, 0xcf, 0xd4, 0xf6, 0xd5, 0x21, 0xd7, 0x50, 0xd8, 0x84, 0xd9,\n  0xae, 0xda, 0xd0, 0xdb, 0xf0, 0xdc, 0x05, 0xde, 0x1d, 0xdf, 0x2b, 0xe0,\n  0x34, 0xe1, 0x3b, 0xe2, 0x3d, 0xe3, 0x3c, 0xe4, 0x34, 0xe5, 0x2a, 0xe6,\n  0x1d, 0xe7, 0x10, 0xe8, 0xf7, 0xe8, 0xe1, 0xe9, 0xc7, 0xea, 0xa8, 0xeb,\n  0x8b, 0xec, 0x65, 0xed, 0x41, 0xee, 0x1b, 0xef, 0xf0, 0xef, 0xc2, 0xf0,\n  0x91, 0xf1, 0x60, 0xf2, 0x2f, 0xf3, 0xf8, 0xf3, 0xbe, 0xf4, 0x87, 0xf5,\n  0x4a, 0xf6, 0x0c, 0xf7, 0xce, 0xf7, 0x8d, 0xf8, 0x49, 0xf9, 0x08, 0xfa,\n  0xc1, 0xfa, 0x7a, 0xfb, 0x33, 0xfc, 0xe5, 0xfc, 0x9b, 0xfd, 0x4c, 0xfe,\n  0xfd, 0xfe, 0xab, 0xff, 0x59, 0x00, 0x0a, 0x01, 0xb5, 0x01, 0x5d, 0x02,\n  0x05, 0x03, 0xaf, 0x03, 0x53, 0x04, 0xfa, 0x04, 0xa2, 0x05, 0x42, 0x06,\n  0xe3, 0x06, 0x86, 0x07, 0x27, 0x08, 0xc6, 0x08, 0x65, 0x09, 0x00, 0x0a,\n  0x9e, 0x0a, 0x36, 0x0b, 0xd1, 0x0b, 0x68, 0x0c, 0x01, 0x0d, 0x97, 0x0d,\n  0x2d, 0x0e, 0xc0, 0x0e, 0x50, 0x0f, 0xe7, 0x0f, 0x76, 0x10, 0x06, 0x11,\n  0x96, 0x11, 0x25, 0x12, 0xb5, 0x12, 0x3f, 0x13, 0xcd, 0x13, 0x54, 0x14,\n  0xe0, 0x14, 0x69, 0x15, 0xed, 0x15, 0x79, 0x16, 0xfb, 0x16, 0x83, 0x17,\n  0x04, 0x18, 0x89, 0x18, 0x0a, 0x19, 0x8b, 0x19, 0x0a, 0x1a, 0x8a, 0x1a,\n  0x09, 0x1b, 0x82, 0x1b, 0x04, 0x1c, 0x7a, 0x1c, 0xfa, 0x1c, 0x6f, 0x1d,\n  0xeb, 0x1d, 0x5f, 0x1e, 0xd3, 0x1e, 0x4d, 0x1f, 0xc0, 0x1f, 0x33, 0x20,\n  0xa5, 0x20, 0x17, 0x21, 0x88, 0x21, 0xf8, 0x21, 0x64, 0x22, 0xd3, 0x22,\n  0x41, 0x23, 0xab, 0x23, 0x15, 0x24, 0x7e, 0x24, 0xe8, 0x24, 0x50, 0x25,\n  0xb9, 0x25, 0x1f, 0x26, 0x83, 0x26, 0xe4, 0x26, 0x49, 0x27, 0xa9, 0x27,\n  0x0a, 0x28, 0x6a, 0x28, 0xc7, 0x28, 0x29, 0x29, 0x81, 0x29, 0xe0, 0x29,\n  0x38, 0x2a, 0x98, 0x2a, 0xec, 0x2a, 0x46, 0x2b, 0x9b, 0x2b, 0xed, 0x2b,\n  0x47, 0x2c, 0x97, 0x2c, 0xf0, 0x2c, 0x3c, 0x2d, 0x8e, 0x2d, 0xde, 0x2d,\n  0x2a, 0x2e, 0x7c, 0x2e, 0xc6, 0x2e, 0x10, 0x2f, 0x5d, 0x2f, 0xa5, 0x2f,\n  0xec, 0x2f, 0x35, 0x30, 0x7a, 0x30, 0xc2, 0x30, 0x03, 0x31, 0x48, 0x31,\n  0x88, 0x31, 0xca, 0x31, 0x0b, 0x32, 0x48, 0x32, 0x89, 0x32, 0xc2, 0x32,\n  0xff, 0x32, 0x39, 0x33, 0x77, 0x33, 0xaa, 0x33, 0xe0, 0x33, 0x1d, 0x34,\n  0x50, 0x34, 0x84, 0x34, 0xb6, 0x34, 0xe8, 0x34, 0x1b, 0x35, 0x4e, 0x35,\n  0x7b, 0x35, 0xa7, 0x35, 0xd6, 0x35, 0xff, 0x35, 0x2c, 0x36, 0x56, 0x36,\n  0x7f, 0x36, 0xa7, 0x36, 0xca, 0x36, 0xf3, 0x36, 0x19, 0x37, 0x3b, 0x37,\n  0x5c, 0x37, 0x7f, 0x37, 0xa0, 0x37, 0xbc, 0x37, 0xdd, 0x37, 0xfb, 0x37,\n  0x15, 0x38, 0x31, 0x38, 0x4a, 0x38, 0x63, 0x38, 0x7c, 0x38, 0x93, 0x38,\n  0xa5, 0x38, 0xbe, 0x38, 0xd0, 0x38, 0xe4, 0x38, 0xf4, 0x38, 0x07, 0x39,\n  0x17, 0x39, 0x22, 0x39, 0x30, 0x39, 0x3c, 0x39, 0x49, 0x39, 0x53, 0x39,\n  0x5a, 0x39, 0x64, 0x39, 0x6d, 0x39, 0x6e, 0x39, 0x78, 0x39, 0x7b, 0x39,\n  0x7e, 0x39, 0x80, 0x39, 0x80, 0x39, 0x80, 0x39, 0x80, 0x39, 0x7e, 0x39,\n  0x7b, 0x39, 0x7a, 0x39, 0x6e, 0x39, 0x6b, 0x39, 0x65, 0x39, 0x5d, 0x39,\n  0x56, 0x39, 0x47, 0x39, 0x40, 0x39, 0x33, 0x39, 0x25, 0x39, 0x1a, 0x39,\n  0x07, 0x39, 0xfa, 0x38, 0xe7, 0x38, 0xd5, 0x38, 0xc0, 0x38, 0xb1, 0x38,\n  0x9c, 0x38, 0x81, 0x38, 0x6e, 0x38, 0x57, 0x38, 0x3d, 0x38, 0x24, 0x38,\n  0x09, 0x38, 0xee, 0x37, 0xcd, 0x37, 0xb3, 0x37, 0x94, 0x37, 0x76, 0x37,\n  0x55, 0x37, 0x34, 0x37, 0x13, 0x37, 0xeb, 0x36, 0xcb, 0x36, 0xa4, 0x36,\n  0x7f, 0x36, 0x59, 0x36, 0x33, 0x36, 0x07, 0x36, 0xde, 0x35, 0xb4, 0x35,\n  0x86, 0x35, 0x5d, 0x35, 0x2c, 0x35, 0xfd, 0x34, 0xd0, 0x34, 0x9b, 0x34,\n  0x6c, 0x34, 0x38, 0x34, 0x07, 0x34, 0xd2, 0x33, 0x9b, 0x33, 0x64, 0x33,\n  0x2b, 0x33, 0xf4, 0x32, 0xb8, 0x32, 0x7f, 0x32, 0x3f, 0x32, 0x05, 0x32,\n  0xc4, 0x31, 0x85, 0x31, 0x45, 0x31, 0x00, 0x31, 0xbf, 0x30, 0x7a, 0x30,\n  0x33, 0x30, 0xf0, 0x2f, 0xa1, 0x2f, 0x5a, 0x2f, 0x0e, 0x2f, 0xc0, 0x2e,\n  0x74, 0x2e, 0x22, 0x2e, 0xd5, 0x2d, 0x82, 0x2d, 0x2e, 0x2d, 0xd9, 0x2c,\n  0x83, 0x2c, 0x2d, 0x2c, 0xd3, 0x2b, 0x77, 0x2b, 0x1f, 0x2b, 0xbf, 0x2a,\n  0x62, 0x2a, 0x02, 0x2a, 0x9f, 0x29, 0x3f, 0x29, 0xd9, 0x28, 0x74, 0x28,\n  0x07, 0x28, 0xa0, 0x27, 0x38, 0x27, 0xcc, 0x26, 0x5f, 0x26, 0xed, 0x25,\n  0x7f, 0x25, 0x0c, 0x25, 0x9b, 0x24, 0x28, 0x24, 0xb2, 0x23, 0x3c, 0x23,\n  0xc0, 0x22, 0x49, 0x22, 0xcd, 0x21, 0x51, 0x21, 0xd0, 0x20, 0x52, 0x20,\n  0xd2, 0x1f, 0x4d, 0x1f, 0xcc, 0x1e, 0x44, 0x1e, 0xbf, 0x1d, 0x36, 0x1d,\n  0xb1, 0x1c, 0x24, 0x1c, 0x98, 0x1b, 0x0e, 0x1b, 0x7f, 0x1a, 0xf1, 0x19,\n  0x5f, 0x19, 0xcf, 0x18, 0x3b, 0x18, 0xa8, 0x17, 0x11, 0x17, 0x7c, 0x16,\n  0xe6, 0x15, 0x4b, 0x15, 0xb1, 0x14, 0x15, 0x14, 0x7c, 0x13, 0xde, 0x12,\n  0x3f, 0x12, 0xa2, 0x11, 0x00, 0x11, 0x5f, 0x10, 0xbf, 0x0f, 0x1a, 0x0f,\n  0x7c, 0x0e, 0xd2, 0x0d, 0x2e, 0x0d, 0x89, 0x0c, 0xde, 0x0b, 0x39, 0x0b,\n  0x91, 0x0a, 0xe7, 0x09, 0x3e, 0x09, 0x94, 0x08, 0xe8, 0x07, 0x3e, 0x07,\n  0x8c, 0x06, 0xe2, 0x05, 0x33, 0x05, 0x84, 0x04, 0xd5, 0x03, 0x23, 0x03,\n  0x75, 0x02, 0xc1, 0x01, 0x12, 0x01, 0x61, 0x00, 0xb1, 0xff, 0xfd, 0xfe,\n  0x4c, 0xfe, 0x97, 0xfd, 0xe3, 0xfc, 0x2f, 0xfc, 0x7c, 0xfb, 0xc9, 0xfa,\n  0x12, 0xfa, 0x61, 0xf9, 0xa9, 0xf8, 0xf1, 0xf7, 0x41, 0xf7, 0x89, 0xf6,\n  0xd1, 0xf5, 0x1f, 0xf5, 0x6a, 0xf4, 0xb2, 0xf3, 0xfc, 0xf2, 0x46, 0xf2,\n  0x8f, 0xf1, 0xda, 0xf0, 0x27, 0xf0, 0x71, 0xef, 0xbe, 0xee, 0x0a, 0xee,\n  0x53, 0xed, 0x9f, 0xec, 0xe8, 0xeb, 0x36, 0xeb, 0x82, 0xea, 0xcf, 0xe9,\n  0x1f, 0xe9, 0x6b, 0xe8, 0xb8, 0xe7, 0x05, 0xe7, 0x53, 0xe6, 0xa5, 0xe5,\n  0xf5, 0xe4, 0x44, 0xe4, 0x96, 0xe3, 0xe7, 0xe2, 0x3a, 0xe2, 0x8d, 0xe1,\n  0xe1, 0xe0, 0x35, 0xe0, 0x85, 0xdf, 0xdb, 0xde, 0x35, 0xde, 0x87, 0xdd,\n  0xe2, 0xdc, 0x3a, 0xdc, 0x95, 0xdb, 0xec, 0xda, 0x48, 0xda, 0xa2, 0xd9,\n  0xfe, 0xd8, 0x5f, 0xd8, 0xbb, 0xd7, 0x1f, 0xd7, 0x7c, 0xd6, 0xe0, 0xd5,\n  0x41, 0xd5, 0xa4, 0xd4, 0x09, 0xd4, 0x6f, 0xd3, 0xd8, 0xd2, 0x3f, 0xd2,\n  0xa5, 0xd1, 0x13, 0xd1, 0x7c, 0xd0, 0xeb, 0xcf, 0x57, 0xcf, 0xc6, 0xce,\n  0x37, 0xce, 0xab, 0xcd, 0x1d, 0xcd, 0x8f, 0xcc, 0x07, 0xcc, 0x81, 0xcb,\n  0xfb, 0xca, 0x76, 0xca, 0xec, 0xc9, 0x6a, 0xc9, 0xe7, 0xc8, 0x66, 0xc8,\n  0xea, 0xc7, 0x6a, 0xc7, 0xef, 0xc6, 0x78, 0xc6, 0xff, 0xc5, 0x87, 0xc5,\n  0x12, 0xc5, 0x9d, 0xc4, 0x2a, 0xc4, 0xba, 0xc3, 0x4a, 0xc3, 0xe1, 0xc2,\n  0x73, 0xc2, 0x08, 0xc2, 0xa2, 0xc1, 0x3a, 0xc1, 0xd4, 0xc0, 0x70, 0xc0,\n  0x12, 0xc0, 0xaf, 0xbf, 0x51, 0xbf, 0xf7, 0xbe, 0x9d, 0xbe, 0x43, 0xbe,\n  0xef, 0xbd, 0x9a, 0xbd, 0x44, 0xbd, 0xf4, 0xbc, 0xa3, 0xbc, 0x56, 0xbc,\n  0x0b, 0xbc, 0xc1, 0xbb, 0x79, 0xbb, 0x34, 0xbb, 0xed, 0xba, 0xaa, 0xba,\n  0x69, 0xba, 0x2d, 0xba, 0xee, 0xb9, 0xb5, 0xb9, 0x7b, 0xb9, 0x42, 0xb9,\n  0x0e, 0xb9, 0xd9, 0xb8, 0xaa, 0xb8, 0x7a, 0xb8, 0x4f, 0xb8, 0x22, 0xb8,\n  0xf8, 0xb7, 0xd1, 0xb7, 0xad, 0xb7, 0x86, 0xb7, 0x68, 0xb7, 0x43, 0xb7,\n  0x2c, 0xb7, 0x0b, 0xb7, 0xf1, 0xb6, 0xdb, 0xb6, 0xc5, 0xb6, 0xb1, 0xb6,\n  0x9c, 0xb6, 0x8f, 0xb6, 0x7e, 0xb6, 0x72, 0xb6, 0x69, 0xb6, 0x5c, 0xb6,\n  0x56, 0xb6, 0x53, 0xb6, 0x4e, 0xb6, 0x53, 0xb6, 0x51, 0xb6, 0x4d, 0xb6,\n  0x5a, 0xb6, 0x5c, 0xb6, 0x64, 0xb6, 0x73, 0xb6, 0x79, 0xb6, 0x8a, 0xb6,\n  0x98, 0xb6, 0xab, 0xb6, 0xbd, 0xb6, 0xcf, 0xb6, 0xe8, 0xb6, 0x01, 0xb7,\n  0x19, 0xb7, 0x33, 0xb7, 0x53, 0xb7, 0x6e, 0xb7, 0x91, 0xb7, 0xb3, 0xb7,\n  0xd6, 0xb7, 0xf9, 0xb7, 0x1f, 0xb8, 0x4b, 0xb8, 0x76, 0xb8, 0x9d, 0xb8,\n  0xc9, 0xb8, 0xfa, 0xb8, 0x28, 0xb9, 0x5a, 0xb9, 0x8a, 0xb9, 0xc0, 0xb9,\n  0xf4, 0xb9, 0x27, 0xba, 0x63, 0xba, 0x9b, 0xba, 0xd0, 0xba, 0x0f, 0xbb,\n  0x49, 0xbb, 0x85, 0xbb, 0xc4, 0xbb, 0x02, 0xbc, 0x44, 0xbc, 0x86, 0xbc,\n  0xc5, 0xbc, 0x0a, 0xbd, 0x50, 0xbd, 0x95, 0xbd, 0xd9, 0xbd, 0x23, 0xbe,\n  0x68, 0xbe, 0xb0, 0xbe, 0xfd, 0xbe, 0x44, 0xbf, 0x8d, 0xbf, 0xdb, 0xbf,\n  0x26, 0xc0, 0x74, 0xc0, 0xc2, 0xc0, 0x14, 0xc1, 0x64, 0xc1, 0xb2, 0xc1,\n  0x06, 0xc2, 0x57, 0xc2, 0xa8, 0xc2, 0xff, 0xc2, 0x50, 0xc3, 0xa3, 0xc3,\n  0xfb, 0xc3, 0x4f, 0xc4, 0xa6, 0xc4, 0xfe, 0xc4, 0x52, 0xc5, 0xae, 0xc5,\n  0x04, 0xc6, 0x60, 0xc6, 0xb9, 0xc6, 0x14, 0xc7, 0x6d, 0xc7, 0xcc, 0xc7,\n  0x26, 0xc8, 0x81, 0xc8, 0xdf, 0xc8, 0x3e, 0xc9, 0x9c, 0xc9, 0xfb, 0xc9,\n  0x59, 0xca, 0xb8, 0xca, 0x19, 0xcb, 0x79, 0xcb, 0xd9, 0xcb, 0x3b, 0xcc,\n  0x9e, 0xcc, 0xfc, 0xcc, 0x61, 0xcd, 0xc4, 0xcd, 0x29, 0xce, 0x89, 0xce,\n  0xef, 0xce, 0x53, 0xcf, 0xba, 0xcf, 0x1d, 0xd0, 0x82, 0xd0, 0xe8, 0xd0,\n  0x4e, 0xd1, 0xb7, 0xd1, 0x1d, 0xd2, 0x86, 0xd2, 0xeb, 0xd2, 0x53, 0xd3,\n  0xbf, 0xd3, 0x26, 0xd4, 0x8c, 0xd4, 0xf7, 0xd4, 0x61, 0xd5, 0xcb, 0xd5,\n  0x3a, 0xd6, 0x9e, 0xd6, 0x09, 0xd7, 0x78, 0xd7, 0xdf, 0xd7, 0x4c, 0xd8,\n  0xb7, 0xd8, 0x25, 0xd9, 0x90, 0xd9, 0xfd, 0xd9, 0x69, 0xda, 0xd5, 0xda,\n  0x43, 0xdb, 0xb0, 0xdb, 0x1d, 0xdc, 0x8a, 0xdc, 0xfa, 0xdc, 0x66, 0xdd,\n  0xd6, 0xdd, 0x44, 0xde, 0xb4, 0xde, 0x24, 0xdf, 0x92, 0xdf, 0x01, 0xe0,\n  0x6f, 0xe0, 0xdf, 0xe0, 0x50, 0xe1, 0xbf, 0xe1, 0x2e, 0xe2, 0xa0, 0xe2,\n  0x0d, 0xe3, 0x81, 0xe3, 0xee, 0xe3, 0x5f, 0xe4, 0xcf, 0xe4, 0x42, 0xe5,\n  0xb1, 0xe5, 0x23, 0xe6, 0x92, 0xe6, 0x02, 0xe7, 0x76, 0xe7, 0xe3, 0xe7,\n  0x58, 0xe8, 0xc7, 0xe8, 0x3c, 0xe9, 0xae, 0xe9, 0x20, 0xea, 0x8f, 0xea,\n  0x01, 0xeb, 0x73, 0xeb, 0xe4, 0xeb, 0x56, 0xec, 0xc6, 0xec, 0x38, 0xed,\n  0xa7, 0xed, 0x1d, 0xee, 0x8b, 0xee, 0x00, 0xef, 0x6f, 0xef, 0xe1, 0xef,\n  0x57, 0xf0, 0xc2, 0xf0, 0x37, 0xf1, 0xa9, 0xf1, 0x19, 0xf2, 0x89, 0xf2,\n  0xfb, 0xf2, 0x6b, 0xf3, 0xdc, 0xf3, 0x4c, 0xf4, 0xbb, 0xf4, 0x2e, 0xf5,\n  0x9c, 0xf5, 0x11, 0xf6, 0x80, 0xf6, 0xf1, 0xf6, 0x5f, 0xf7, 0xd0, 0xf7,\n  0x41, 0xf8, 0xae, 0xf8, 0x21, 0xf9, 0x8e, 0xf9, 0x04, 0xfa, 0x6d, 0xfa,\n  0xde, 0xfa, 0x4d, 0xfb, 0xba, 0xfb, 0x2d, 0xfc, 0x97, 0xfc, 0x07, 0xfd,\n  0x75, 0xfd, 0xe1, 0xfd, 0x4e, 0xfe, 0xbe, 0xfe, 0x2c, 0xff, 0x99, 0xff,\n  0x05, 0x00, 0x6e, 0x00, 0xdf, 0x00, 0x49, 0x01, 0xb7, 0x01, 0x21, 0x02,\n  0x8d, 0x02, 0xf9, 0x02, 0x63, 0x03, 0xcf, 0x03, 0x3a, 0x04, 0xa0, 0x04,\n  0x0b, 0x05, 0x77, 0x05, 0xdf, 0x05, 0x47, 0x06, 0xaf, 0x06, 0x17, 0x07,\n  0x7f, 0x07, 0xe7, 0x07, 0x50, 0x08, 0xb7, 0x08, 0x1e, 0x09, 0x88, 0x09,\n  0xe8, 0x09, 0x51, 0x0a, 0xb5, 0x0a, 0x1e, 0x0b, 0x81, 0x0b, 0xe7, 0x0b,\n  0x49, 0x0c, 0xae, 0x0c, 0x10, 0x0d, 0x76, 0x0d, 0xd7, 0x0d, 0x38, 0x0e,\n  0x9f, 0x0e, 0xfc, 0x0e, 0x5f, 0x0f, 0xbf, 0x0f, 0x1f, 0x10, 0x82, 0x10,\n  0xe2, 0x10, 0x3f, 0x11, 0x9f, 0x11, 0xff, 0x11, 0x5c, 0x12, 0xba, 0x12,\n  0x16, 0x13, 0x70, 0x13, 0xcf, 0x13, 0x2b, 0x14, 0x84, 0x14, 0xe1, 0x14,\n  0x3e, 0x15, 0x92, 0x15, 0xef, 0x15, 0x4a, 0x16, 0xa2, 0x16, 0xfd, 0x16,\n  0x53, 0x17, 0xab, 0x17, 0xff, 0x17, 0x59, 0x18, 0xad, 0x18, 0x01, 0x19,\n  0x55, 0x19, 0xad, 0x19, 0xfe, 0x19, 0x54, 0x1a, 0xa5, 0x1a, 0xfa, 0x1a,\n  0x48, 0x1b, 0x9b, 0x1b, 0xec, 0x1b, 0x3a, 0x1c, 0x8c, 0x1c, 0xdc, 0x1c,\n  0x2a, 0x1d, 0x78, 0x1d, 0xc3, 0x1d, 0x11, 0x1e, 0x5f, 0x1e, 0xaa, 0x1e,\n  0xf5, 0x1e, 0x42, 0x1f, 0x8c, 0x1f, 0xd2, 0x1f, 0x1f, 0x20, 0x66, 0x20,\n  0xb1, 0x20, 0xf3, 0x20, 0x3b, 0x21, 0x82, 0x21, 0xcd, 0x21, 0x11, 0x22,\n  0x55, 0x22, 0x98, 0x22, 0xda, 0x22, 0x1f, 0x23, 0x5d, 0x23, 0xa1, 0x23,\n  0xe3, 0x23, 0x22, 0x24, 0x62, 0x24, 0xa3, 0x24, 0xe2, 0x24, 0x1f, 0x25,\n  0x5c, 0x25, 0x9a, 0x25, 0xd7, 0x25, 0x13, 0x26, 0x4b, 0x26, 0x86, 0x26,\n  0xc0, 0x26, 0xf9, 0x26, 0x33, 0x27, 0x68, 0x27, 0xa0, 0x27, 0xd8, 0x27,\n  0x0d, 0x28, 0x40, 0x28, 0x77, 0x28, 0xac, 0x28, 0xdf, 0x28, 0x12, 0x29,\n  0x44, 0x29, 0x75, 0x29, 0xa5, 0x29, 0xd6, 0x29, 0x05, 0x2a, 0x38, 0x2a,\n  0x62, 0x2a, 0x93, 0x2a, 0xbd, 0x2a, 0xe8, 0x2a, 0x13, 0x2b, 0x3e, 0x2b,\n  0x6c, 0x2b, 0x92, 0x2b, 0xbc, 0x2b, 0xe4, 0x2b, 0x0b, 0x2c, 0x2d, 0x2c,\n  0x58, 0x2c, 0x7c, 0x2c, 0x9f, 0x2c, 0xc5, 0x2c, 0xed, 0x2c, 0x0d, 0x2d,\n  0x2e, 0x2d, 0x51, 0x2d, 0x6e, 0x2d, 0x92, 0x2d, 0xb0, 0x2d, 0xce, 0x2d,\n  0xec, 0x2d, 0x0d, 0x2e, 0x27, 0x2e, 0x43, 0x2e, 0x60, 0x2e, 0x7a, 0x2e,\n  0x98, 0x2e, 0xae, 0x2e, 0xc6, 0x2e, 0xdf, 0x2e, 0xf5, 0x2e, 0x0c, 0x2f,\n  0x24, 0x2f, 0x39, 0x2f, 0x4a, 0x2f, 0x62, 0x2f, 0x73, 0x2f, 0x87, 0x2f,\n  0x96, 0x2f, 0xa8, 0x2f, 0xba, 0x2f, 0xc8, 0x2f, 0xd9, 0x2f, 0xe4, 0x2f,\n  0xf4, 0x2f, 0xff, 0x2f, 0x0d, 0x30, 0x17, 0x30, 0x25, 0x30, 0x2e, 0x30,\n  0x38, 0x30, 0x3f, 0x30, 0x49, 0x30, 0x50, 0x30, 0x56, 0x30, 0x5f, 0x30,\n  0x61, 0x30, 0x67, 0x30, 0x68, 0x30, 0x71, 0x30, 0x71, 0x30, 0x74, 0x30,\n  0x74, 0x30, 0x75, 0x30, 0x75, 0x30, 0x74, 0x30, 0x74, 0x30, 0x72, 0x30,\n  0x6e, 0x30, 0x67, 0x30, 0x67, 0x30, 0x61, 0x30, 0x5f, 0x30, 0x59, 0x30,\n  0x51, 0x30, 0x4a, 0x30, 0x40, 0x30, 0x39, 0x30, 0x2c, 0x30, 0x25, 0x30,\n  0x1e, 0x30, 0x0d, 0x30, 0x01, 0x30, 0xf7, 0x2f, 0xe7, 0x2f, 0xdc, 0x2f,\n  0xcb, 0x2f, 0xbe, 0x2f, 0xae, 0x2f, 0x9f, 0x2f, 0x8a, 0x2f, 0x7b, 0x2f,\n  0x68, 0x2f, 0x52, 0x2f, 0x3f, 0x2f, 0x2c, 0x2f, 0x18, 0x2f, 0xfe, 0x2e,\n  0xed, 0x2e, 0xd4, 0x2e, 0xbf, 0x2e, 0xa5, 0x2e, 0x8d, 0x2e, 0x73, 0x2e,\n  0x59, 0x2e, 0x3f, 0x2e, 0x24, 0x2e, 0x07, 0x2e, 0xe8, 0x2d, 0xce, 0x2d,\n  0xb0, 0x2d, 0x93, 0x2d, 0x74, 0x2d, 0x56, 0x2d, 0x35, 0x2d, 0x12, 0x2d,\n  0xf1, 0x2c, 0xd0, 0x2c, 0xad, 0x2c, 0x8d, 0x2c, 0x65, 0x2c, 0x44, 0x2c,\n  0x1f, 0x2c, 0xfa, 0x2b, 0xd3, 0x2b, 0xae, 0x2b, 0x87, 0x2b, 0x5f, 0x2b,\n  0x38, 0x2b, 0x0a, 0x2b, 0xe2, 0x2a, 0xbc, 0x2a, 0x90, 0x2a, 0x67, 0x2a,\n  0x3b, 0x2a, 0x0e, 0x2a, 0xe3, 0x29, 0xb7, 0x29, 0x86, 0x29, 0x5e, 0x29,\n  0x2c, 0x29, 0xfa, 0x28, 0xcc, 0x28, 0x9d, 0x28, 0x6d, 0x28, 0x3b, 0x28,\n  0x09, 0x28, 0xd8, 0x27, 0xa1, 0x27, 0x71, 0x27, 0x3e, 0x27, 0x05, 0x27,\n  0xd5, 0x26, 0x9d, 0x26, 0x68, 0x26, 0x33, 0x26, 0xf8, 0x25, 0xc4, 0x25,\n  0x8a, 0x25, 0x56, 0x25, 0x1a, 0x25, 0xe2, 0x24, 0xa9, 0x24, 0x6d, 0x24,\n  0x35, 0x24, 0xfa, 0x23, 0xbd, 0x23, 0x81, 0x23, 0x44, 0x23, 0x05, 0x23,\n  0xc7, 0x22, 0x8a, 0x22, 0x49, 0x22, 0x0a, 0x22, 0xca, 0x21, 0x8e, 0x21,\n  0x4a, 0x21, 0x08, 0x21, 0xcb, 0x20, 0x84, 0x20, 0x44, 0x20, 0xff, 0x1f,\n  0xbc, 0x1f, 0x7a, 0x1f, 0x34, 0x1f, 0xed, 0x1e, 0xa8, 0x1e, 0x64, 0x1e,\n  0x1b, 0x1e, 0xd5, 0x1d, 0x8e, 0x1d, 0x42, 0x1d, 0xfd, 0x1c, 0xb2, 0x1c,\n  0x66, 0x1c, 0x1d, 0x1c, 0xd1, 0x1b, 0x83, 0x1b, 0x39, 0x1b, 0xed, 0x1a,\n  0x9f, 0x1a, 0x4c, 0x1a, 0xff, 0x19, 0xaf, 0x19, 0x60, 0x19, 0x10, 0x19,\n  0xbf, 0x18, 0x6c, 0x18, 0x1a, 0x18, 0xc9, 0x17, 0x71, 0x17, 0x20, 0x17,\n  0xcb, 0x16, 0x73, 0x16, 0x1c, 0x16, 0xc9, 0x15, 0x71, 0x15, 0x18, 0x15,\n  0xc3, 0x14, 0x69, 0x14, 0x11, 0x14, 0xb5, 0x13, 0x59, 0x13, 0xff, 0x12,\n  0xa3, 0x12, 0x46, 0x12, 0xeb, 0x11, 0x8d, 0x11, 0x2f, 0x11, 0xd2, 0x10,\n  0x72, 0x10, 0x10, 0x10, 0xb4, 0x0f, 0x52, 0x0f, 0xf0, 0x0e, 0x8e, 0x0e,\n  0x2d, 0x0e, 0xc9, 0x0d, 0x67, 0x0d, 0x05, 0x0d, 0xa0, 0x0c, 0x3f, 0x0c,\n  0xd7, 0x0b, 0x72, 0x0b, 0x0d, 0x0b, 0xa6, 0x0a, 0x40, 0x0a, 0xda, 0x09,\n  0x70, 0x09, 0x0a, 0x09, 0xa2, 0x08, 0x38, 0x08, 0xcf, 0x07, 0x67, 0x07,\n  0xfb, 0x06, 0x93, 0x06, 0x27, 0x06, 0xbc, 0x05, 0x54, 0x05, 0xe4, 0x04,\n  0x7b, 0x04, 0x10, 0x04, 0xa3, 0x03, 0x39, 0x03, 0xcb, 0x02, 0x5d, 0x02,\n  0xf0, 0x01, 0x85, 0x01, 0x18, 0x01, 0xa9, 0x00, 0x3b, 0x00, 0xd1, 0xff,\n  0x60, 0xff, 0xf3, 0xfe, 0x82, 0xfe, 0x16, 0xfe, 0xa5, 0xfd, 0x3d, 0xfd,\n  0xcb, 0xfc, 0x5b, 0xfc, 0xf0, 0xfb, 0x7e, 0xfb, 0x0e, 0xfb, 0xa1, 0xfa,\n  0x34, 0xfa, 0xc5, 0xf9, 0x56, 0xf9, 0xe8, 0xf8, 0x79, 0xf8, 0x09, 0xf8,\n  0x9a, 0xf7, 0x2f, 0xf7, 0xbf, 0xf6, 0x51, 0xf6, 0xe4, 0xf5, 0x74, 0xf5,\n  0x09, 0xf5, 0x99, 0xf4, 0x2e, 0xf4, 0xc0, 0xf3, 0x52, 0xf3, 0xe7, 0xf2,\n  0x7a, 0xf2, 0x10, 0xf2, 0xa2, 0xf1, 0x38, 0xf1, 0xce, 0xf0, 0x61, 0xf0,\n  0xf6, 0xef, 0x8e, 0xef, 0x23, 0xef, 0xbb, 0xee, 0x50, 0xee, 0xe5, 0xed,\n  0x80, 0xed, 0x1a, 0xed, 0xaf, 0xec, 0x48, 0xec, 0xe0, 0xeb, 0x7c, 0xeb,\n  0x15, 0xeb, 0xb0, 0xea, 0x4e, 0xea, 0xe7, 0xe9, 0x86, 0xe9, 0x21, 0xe9,\n  0xbf, 0xe8, 0x5e, 0xe8, 0xfb, 0xe7, 0x98, 0xe7, 0x3b, 0xe7, 0xd8, 0xe6,\n  0x7b, 0xe6, 0x1e, 0xe6, 0xc1, 0xe5, 0x63, 0xe5, 0x04, 0xe5, 0xad, 0xe4,\n  0x52, 0xe4, 0xf3, 0xe3, 0x9d, 0xe3, 0x44, 0xe3, 0xeb, 0xe2, 0x91, 0xe2,\n  0x3d, 0xe2, 0xe6, 0xe1, 0x8f, 0xe1, 0x3e, 0xe1, 0xe7, 0xe0, 0x96, 0xe0,\n  0x44, 0xe0, 0xf2, 0xdf, 0xa2, 0xdf, 0x52, 0xdf, 0x03, 0xdf, 0xb3, 0xde,\n  0x68, 0xde, 0x1b, 0xde, 0xcf, 0xdd, 0x86, 0xdd, 0x3c, 0xdd, 0xf2, 0xdc,\n  0xac, 0xdc, 0x64, 0xdc, 0x20, 0xdc, 0xdb, 0xdb, 0x95, 0xdb, 0x53, 0xdb,\n  0x10, 0xdb, 0xce, 0xda, 0x8d, 0xda, 0x4e, 0xda, 0x12, 0xda, 0xd3, 0xd9,\n  0x97, 0xd9, 0x5e, 0xd9, 0x21, 0xd9, 0xe8, 0xd8, 0xaf, 0xd8, 0x7a, 0xd8,\n  0x41, 0xd8, 0x0a, 0xd8, 0xd9, 0xd7, 0xa4, 0xd7, 0x73, 0xd7, 0x40, 0xd7,\n  0x0f, 0xd7, 0xe1, 0xd6, 0xaf, 0xd6, 0x85, 0xd6, 0x58, 0xd6, 0x2e, 0xd6,\n  0x03, 0xd6, 0xda, 0xd5, 0xb4, 0xd5, 0x8e, 0xd5, 0x68, 0xd5, 0x41, 0xd5,\n  0x20, 0xd5, 0xfc, 0xd4, 0xd9, 0xd4, 0xbb, 0xd4, 0x9a, 0xd4, 0x7e, 0xd4,\n  0x5e, 0xd4, 0x42, 0xd4, 0x23, 0xd4, 0x0c, 0xd4, 0xf5, 0xd3, 0xdc, 0xd3,\n  0xc6, 0xd3, 0xae, 0xd3, 0x9a, 0xd3, 0x84, 0xd3, 0x76, 0xd3, 0x61, 0xd3,\n  0x52, 0xd3, 0x3d, 0xd3, 0x30, 0xd3, 0x21, 0xd3, 0x14, 0xd3, 0x09, 0xd3,\n  0xff, 0xd2, 0xf3, 0xd2, 0xeb, 0xd2, 0xe2, 0xd2, 0xdd, 0xd2, 0xd8, 0xd2,\n  0xce, 0xd2, 0xcb, 0xd2, 0xc8, 0xd2, 0xc7, 0xd2, 0xc5, 0xd2, 0xc4, 0xd2,\n  0xc5, 0xd2, 0xc4, 0xd2, 0xc7, 0xd2, 0xca, 0xd2, 0xd0, 0xd2, 0xd0, 0xd2,\n  0xd8, 0xd2, 0xdd, 0xd2, 0xe5, 0xd2, 0xee, 0xd2, 0xf3, 0xd2, 0xfe, 0xd2,\n  0x09, 0xd3, 0x0f, 0xd3, 0x20, 0xd3, 0x28, 0xd3, 0x37, 0xd3, 0x46, 0xd3,\n  0x4f, 0xd3, 0x66, 0xd3, 0x70, 0xd3, 0x82, 0xd3, 0x98, 0xd3, 0xa5, 0xd3,\n  0xb9, 0xd3, 0xcf, 0xd3, 0xe1, 0xd3, 0xf5, 0xd3, 0x0b, 0xd4, 0x21, 0xd4,\n  0x37, 0xd4, 0x50, 0xd4, 0x66, 0xd4, 0x81, 0xd4, 0x97, 0xd4, 0xb0, 0xd4,\n  0xcc, 0xd4, 0xe4, 0xd4, 0x00, 0xd5, 0x1d, 0xd5, 0x39, 0xd5, 0x57, 0xd5,\n  0x75, 0xd5, 0x8f, 0xd5, 0xaf, 0xd5, 0xd0, 0xd5, 0xef, 0xd5, 0x0d, 0xd6,\n  0x2e, 0xd6, 0x4f, 0xd6, 0x73, 0xd6, 0x97, 0xd6, 0xb8, 0xd6, 0xdd, 0xd6,\n  0x00, 0xd7, 0x21, 0xd7, 0x47, 0xd7, 0x6b, 0xd7, 0x93, 0xd7, 0xb7, 0xd7,\n  0xe1, 0xd7, 0x05, 0xd8, 0x2c, 0xd8, 0x54, 0xd8, 0x7e, 0xd8, 0xa6, 0xd8,\n  0xd0, 0xd8, 0xf9, 0xd8, 0x20, 0xd9, 0x4f, 0xd9, 0x7a, 0xd9, 0xa5, 0xd9,\n  0xcf, 0xd9, 0xfd, 0xd9, 0x29, 0xda, 0x57, 0xda, 0x84, 0xda, 0xb0, 0xda,\n  0xe1, 0xda, 0x10, 0xdb, 0x3c, 0xdb, 0x72, 0xdb, 0x9f, 0xdb, 0xce, 0xdb,\n  0xff, 0xdb, 0x30, 0xdc, 0x61, 0xdc, 0x94, 0xdc, 0xc7, 0xdc, 0xfa, 0xdc,\n  0x2a, 0xdd, 0x60, 0xdd, 0x93, 0xdd, 0xc6, 0xdd, 0xfc, 0xdd, 0x2e, 0xde,\n  0x65, 0xde, 0x99, 0xde, 0xd0, 0xde, 0x04, 0xdf, 0x40, 0xdf, 0x74, 0xdf,\n  0xae, 0xdf, 0xe0, 0xdf, 0x1b, 0xe0, 0x51, 0xe0, 0x8d, 0xe0, 0xc3, 0xe0,\n  0xff, 0xe0, 0x35, 0xe1, 0x6f, 0xe1, 0xab, 0xe1, 0xe1, 0xe1, 0x21, 0xe2,\n  0x5b, 0xe2, 0x94, 0xe2, 0xd1, 0xe2, 0x0f, 0xe3, 0x47, 0xe3, 0x84, 0xe3,\n  0xc2, 0xe3, 0xff, 0xe3, 0x3e, 0xe4, 0x7a, 0xe4, 0xb5, 0xe4, 0xf4, 0xe4,\n  0x33, 0xe5, 0x70, 0xe5, 0xb2, 0xe5, 0xec, 0xe5, 0x2e, 0xe6, 0x6f, 0xe6,\n  0xac, 0xe6, 0xed, 0xe6, 0x2d, 0xe7, 0x6e, 0xe7, 0xb0, 0xe7, 0xf0, 0xe7,\n  0x2e, 0xe8, 0x71, 0xe8, 0xb2, 0xe8, 0xf1, 0xe8, 0x36, 0xe9, 0x7b, 0xe9,\n  0xbb, 0xe9, 0xfd, 0xe9, 0x3e, 0xea, 0x82, 0xea, 0xc4, 0xea, 0x06, 0xeb,\n  0x4c, 0xeb, 0x91, 0xeb, 0xd3, 0xeb, 0x17, 0xec, 0x5b, 0xec, 0x9d, 0xec,\n  0xe1, 0xec, 0x25, 0xed, 0x6c, 0xed, 0xb0, 0xed, 0xf5, 0xed, 0x3a, 0xee,\n  0x80, 0xee, 0xc3, 0xee, 0x08, 0xef, 0x51, 0xef, 0x98, 0xef, 0xdc, 0xef,\n  0x20, 0xf0, 0x68, 0xf0, 0xac, 0xf0, 0xf4, 0xf0, 0x3a, 0xf1, 0x80, 0xf1,\n  0xc8, 0xf1, 0x0f, 0xf2, 0x53, 0xf2, 0x9b, 0xf2, 0xe4, 0xf2, 0x29, 0xf3,\n  0x71, 0xf3, 0xb9, 0xf3, 0xfe, 0xf3, 0x46, 0xf4, 0x8a, 0xf4, 0xd6, 0xf4,\n  0x1a, 0xf5, 0x61, 0xf5, 0xa8, 0xf5, 0xf1, 0xf5, 0x3a, 0xf6, 0x81, 0xf6,\n  0xc9, 0xf6, 0x0e, 0xf7, 0x56, 0xf7, 0x9e, 0xf7, 0xe9, 0xf7, 0x2d, 0xf8,\n  0x75, 0xf8, 0xc0, 0xf8, 0x08, 0xf9, 0x50, 0xf9, 0x99, 0xf9, 0xdd, 0xf9,\n  0x28, 0xfa, 0x71, 0xfa, 0xb2, 0xfa, 0xfd, 0xfa, 0x45, 0xfb, 0x8d, 0xfb,\n  0xd2, 0xfb, 0x19, 0xfc, 0x63, 0xfc, 0xa7, 0xfc, 0xef, 0xfc, 0x37, 0xfd,\n  0x7f, 0xfd, 0xc5, 0xfd, 0x0f, 0xfe, 0x55, 0xfe, 0x9c, 0xfe, 0xe5, 0xfe,\n  0x27, 0xff, 0x71, 0xff, 0xb7, 0xff, 0xfc, 0xff, 0x44, 0x00, 0x89, 0x00,\n  0xd1, 0x00, 0x15, 0x01, 0x5b, 0x01, 0xa3, 0x01, 0xe8, 0x01, 0x31, 0x02,\n  0x75, 0x02, 0xbb, 0x02, 0xff, 0x02, 0x45, 0x03, 0x89, 0x03, 0xd1, 0x03,\n  0x13, 0x04, 0x58, 0x04, 0x9f, 0x04, 0xe2, 0x04, 0x27, 0x05, 0x6b, 0x05,\n  0xae, 0x05, 0xf6, 0x05, 0x38, 0x06, 0x7b, 0x06, 0xbf, 0x06, 0x03, 0x07,\n  0x46, 0x07, 0x87, 0x07, 0xcc, 0x07, 0x0f, 0x08, 0x50, 0x08, 0x92, 0x08,\n  0xd5, 0x08, 0x19, 0x09, 0x58, 0x09, 0x98, 0x09, 0xdd, 0x09, 0x19, 0x0a,\n  0x5f, 0x0a, 0x9f, 0x0a, 0xdf, 0x0a, 0x1f, 0x0b, 0x5f, 0x0b, 0x9f, 0x0b,\n  0xdf, 0x0b, 0x1f, 0x0c, 0x5f, 0x0c, 0x9a, 0x0c, 0xda, 0x0c, 0x19, 0x0d,\n  0x57, 0x0d, 0x95, 0x0d, 0xd2, 0x0d, 0x0f, 0x0e, 0x4f, 0x0e, 0x89, 0x0e,\n  0xc7, 0x0e, 0x05, 0x0f, 0x40, 0x0f, 0x7a, 0x0f, 0xb7, 0x0f, 0xf2, 0x0f,\n  0x2f, 0x10, 0x6a, 0x10, 0xa2, 0x10, 0xdf, 0x10, 0x18, 0x11, 0x50, 0x11,\n  0x8a, 0x11, 0xc3, 0x11, 0xfd, 0x11, 0x32, 0x12, 0x6c, 0x12, 0xa4, 0x12,\n  0xdd, 0x12, 0x16, 0x13, 0x4a, 0x13, 0x82, 0x13, 0xb9, 0x13, 0xee, 0x13,\n  0x24, 0x14, 0x5b, 0x14, 0x8f, 0x14, 0xc2, 0x14, 0xfc, 0x14, 0x2f, 0x15,\n  0x5f, 0x15, 0x95, 0x15, 0xc8, 0x15, 0xf8, 0x15, 0x2c, 0x16, 0x5c, 0x16,\n  0x93, 0x16, 0xc3, 0x16, 0xf3, 0x16, 0x23, 0x17, 0x54, 0x17, 0x83, 0x17,\n  0xb3, 0x17, 0xe1, 0x17, 0x13, 0x18, 0x41, 0x18, 0x6e, 0x18, 0x9b, 0x18,\n  0xc9, 0x18, 0xf2, 0x18, 0x22, 0x19, 0x51, 0x19, 0x7a, 0x19, 0xa5, 0x19,\n  0xd2, 0x19, 0xfe, 0x19, 0x28, 0x1a, 0x51, 0x1a, 0x7e, 0x1a, 0xa2, 0x1a,\n  0xcc, 0x1a, 0xf6, 0x1a, 0x1f, 0x1b, 0x44, 0x1b, 0x6f, 0x1b, 0x94, 0x1b,\n  0xbc, 0x1b, 0xdf, 0x1b, 0x06, 0x1c, 0x2e, 0x1c, 0x4d, 0x1c, 0x75, 0x1c,\n  0x98, 0x1c, 0xbe, 0x1c, 0xdf, 0x1c, 0x03, 0x1d, 0x24, 0x1d, 0x45, 0x1d,\n  0x6a, 0x1d, 0x8b, 0x1d, 0xac, 0x1d, 0xca, 0x1d, 0xeb, 0x1d, 0x0b, 0x1e,\n  0x2a, 0x1e, 0x48, 0x1e, 0x68, 0x1e, 0x85, 0x1e, 0xa3, 0x1e, 0xc1, 0x1e,\n  0xdb, 0x1e, 0xf5, 0x1e, 0x15, 0x1f, 0x2e, 0x1f, 0x49, 0x1f, 0x63, 0x1f,\n  0x7f, 0x1f, 0x96, 0x1f, 0xb2, 0x1f, 0xc6, 0x1f, 0xe1, 0x1f, 0xfb, 0x1f,\n  0x10, 0x20, 0x27, 0x20, 0x3f, 0x20, 0x54, 0x20, 0x69, 0x20, 0x80, 0x20,\n  0x96, 0x20, 0xa8, 0x20, 0xbb, 0x20, 0xd2, 0x20, 0xe0, 0x20, 0xf6, 0x20,\n  0x07, 0x21, 0x17, 0x21, 0x28, 0x21, 0x39, 0x21, 0x49, 0x21, 0x59, 0x21,\n  0x68, 0x21, 0x7a, 0x21, 0x83, 0x21, 0x95, 0x21, 0xa3, 0x21, 0xad, 0x21,\n  0xbc, 0x21, 0xc4, 0x21, 0xd4, 0x21, 0xdf, 0x21, 0xe6, 0x21, 0xf3, 0x21,\n  0xfe, 0x21, 0x03, 0x22, 0x10, 0x22, 0x16, 0x22, 0x1f, 0x22, 0x2a, 0x22,\n  0x2e, 0x22, 0x37, 0x22, 0x3b, 0x22, 0x3f, 0x22, 0x45, 0x22, 0x4b, 0x22,\n  0x52, 0x22, 0x53, 0x22, 0x58, 0x22, 0x5c, 0x22, 0x5e, 0x22, 0x64, 0x22,\n  0x63, 0x22, 0x64, 0x22, 0x66, 0x22, 0x66, 0x22, 0x66, 0x22, 0x66, 0x22,\n  0x63, 0x22, 0x64, 0x22, 0x60, 0x22, 0x5e, 0x22, 0x5f, 0x22, 0x59, 0x22,\n  0x58, 0x22, 0x52, 0x22, 0x4e, 0x22, 0x45, 0x22, 0x45, 0x22, 0x3d, 0x22,\n  0x3a, 0x22, 0x32, 0x22, 0x28, 0x22, 0x21, 0x22, 0x1a, 0x22, 0x13, 0x22,\n  0x09, 0x22, 0x01, 0x22, 0xf6, 0x21, 0xec, 0x21, 0xe3, 0x21, 0xda, 0x21,\n  0xcb, 0x21, 0xbf, 0x21, 0xb6, 0x21, 0xa9, 0x21, 0x99, 0x21, 0x8c, 0x21,\n  0x7f, 0x21, 0x71, 0x21, 0x62, 0x21, 0x54, 0x21, 0x44, 0x21, 0x33, 0x21,\n  0x23, 0x21, 0x14, 0x21, 0xff, 0x20, 0xf0, 0x20, 0xde, 0x20, 0xc9, 0x20,\n  0xba, 0x20, 0xa5, 0x20, 0x91, 0x20, 0x7e, 0x20, 0x68, 0x20, 0x55, 0x20,\n  0x3f, 0x20, 0x2a, 0x20, 0x13, 0x20, 0xfb, 0x1f, 0xe5, 0x1f, 0xd0, 0x1f,\n  0xb4, 0x1f, 0x9d, 0x1f, 0x88, 0x1f, 0x6e, 0x1f, 0x54, 0x1f, 0x3b, 0x1f,\n  0x1f, 0x1f, 0x08, 0x1f, 0xec, 0x1e, 0xd0, 0x1e, 0xb5, 0x1e, 0x98, 0x1e,\n  0x7f, 0x1e, 0x5f, 0x1e, 0x43, 0x1e, 0x26, 0x1e, 0x0b, 0x1e, 0xeb, 0x1d,\n  0xcc, 0x1d, 0xb0, 0x1d, 0x8e, 0x1d, 0x6f, 0x1d, 0x51, 0x1d, 0x2d, 0x1d,\n  0x11, 0x1d, 0xec, 0x1c, 0xcf, 0x1c, 0xad, 0x1c, 0x8b, 0x1c, 0x6a, 0x1c,\n  0x43, 0x1c, 0x24, 0x1c, 0x00, 0x1c, 0xdd, 0x1b, 0xba, 0x1b, 0x94, 0x1b,\n  0x70, 0x1b, 0x4b, 0x1b, 0x25, 0x1b, 0x01, 0x1b, 0xdc, 0x1a, 0xb4, 0x1a,\n  0x8e, 0x1a, 0x6a, 0x1a, 0x42, 0x1a, 0x1b, 0x1a, 0xf1, 0x19, 0xcd, 0x19,\n  0xa0, 0x19, 0x79, 0x19, 0x4f, 0x19, 0x29, 0x19, 0xfe, 0x18, 0xd6, 0x18,\n  0xab, 0x18, 0x82, 0x18, 0x56, 0x18, 0x2c, 0x18, 0xff, 0x17, 0xd9, 0x17,\n  0xab, 0x17, 0x80, 0x17, 0x53, 0x17, 0x24, 0x17, 0xfb, 0x16, 0xcd, 0x16,\n  0xa3, 0x16, 0x72, 0x16, 0x45, 0x16, 0x16, 0x16, 0xec, 0x15, 0xba, 0x15,\n  0x8f, 0x15, 0x5f, 0x15, 0x2f, 0x15, 0xff, 0x14, 0xd1, 0x14, 0xa1, 0x14,\n  0x72, 0x14, 0x42, 0x14, 0x0f, 0x14, 0xdf, 0x13, 0xb1, 0x13, 0x7f, 0x13,\n  0x4d, 0x13, 0x1d, 0x13, 0xed, 0x12, 0xb9, 0x12, 0x85, 0x12, 0x56, 0x12,\n  0x22, 0x12, 0xf2, 0x11, 0xbd, 0x11, 0x8a, 0x11, 0x58, 0x11, 0x23, 0x11,\n  0xf0, 0x10, 0xbf, 0x10, 0x8b, 0x10, 0x55, 0x10, 0x22, 0x10, 0xed, 0x0f,\n  0xb8, 0x0f, 0x84, 0x0f, 0x4e, 0x0f, 0x1a, 0x0f, 0xe7, 0x0e, 0xaf, 0x0e,\n  0x7e, 0x0e, 0x45, 0x0e, 0x0f, 0x0e, 0xdc, 0x0d, 0xa4, 0x0d, 0x70, 0x0d,\n  0x37, 0x0d, 0x01, 0x0d, 0xc8, 0x0c, 0x95, 0x0c, 0x5f, 0x0c, 0x28, 0x0c,\n  0xef, 0x0b, 0xb9, 0x0b, 0x81, 0x0b, 0x48, 0x0b, 0x11, 0x0b, 0xd9, 0x0a,\n  0xa6, 0x0a, 0x6a, 0x0a, 0x35, 0x0a, 0xfc, 0x09, 0xc2, 0x09, 0x8c, 0x09,\n  0x52, 0x09, 0x1a, 0x09, 0xe4, 0x08, 0xaa, 0x08, 0x71, 0x08, 0x3c, 0x08,\n  0xff, 0x07, 0xc7, 0x07, 0x8f, 0x07, 0x56, 0x07, 0x1c, 0x07, 0xe3, 0x06,\n  0xab, 0x06, 0x73, 0x06, 0x38, 0x06, 0xff, 0x05, 0xc6, 0x05, 0x8c, 0x05,\n  0x52, 0x05, 0x1b, 0x05, 0xe2, 0x04, 0xa6, 0x04, 0x6c, 0x04, 0x33, 0x04,\n  0xf9, 0x03, 0xc1, 0x03, 0x83, 0x03, 0x4b, 0x03, 0x11, 0x03, 0xd5, 0x02,\n  0x9f, 0x02, 0x63, 0x02, 0x29, 0x02, 0xee, 0x01, 0xb4, 0x01, 0x7c, 0x01,\n  0x42, 0x01, 0x06, 0x01, 0xd0, 0x00, 0x91, 0x00, 0x58, 0x00, 0x20, 0x00,\n  0xe7, 0xff, 0xad, 0xff, 0x74, 0xff, 0x39, 0xff, 0x00, 0xff, 0xc6, 0xfe,\n  0x8b, 0xfe, 0x54, 0xfe, 0x16, 0xfe, 0xdd, 0xfd, 0xa3, 0xfd, 0x69, 0xfd,\n  0x31, 0xfd, 0xf7, 0xfc, 0xbf, 0xfc, 0x83, 0xfc, 0x49, 0xfc, 0x11, 0xfc,\n  0xd8, 0xfb, 0x9e, 0xfb, 0x66, 0xfb, 0x26, 0xfb, 0xf5, 0xfa, 0xb8, 0xfa,\n  0x81, 0xfa, 0x49, 0xfa, 0x10, 0xfa, 0xd8, 0xf9, 0x9e, 0xf9, 0x6a, 0xf9,\n  0x2e, 0xf9, 0xf4, 0xf8, 0xc0, 0xf8, 0x85, 0xf8, 0x51, 0xf8, 0x18, 0xf8,\n  0xe0, 0xf7, 0xa6, 0xf7, 0x6e, 0xf7, 0x38, 0xf7, 0x01, 0xf7, 0xce, 0xf6,\n  0x94, 0xf6, 0x5c, 0xf6, 0x27, 0xf6, 0xf2, 0xf5, 0xba, 0xf5, 0x87, 0xf5,\n  0x4f, 0xf5, 0x1b, 0xf5, 0xe8, 0xf4, 0xb0, 0xf4, 0x7b, 0xf4, 0x46, 0xf4,\n  0x12, 0xf4, 0xdc, 0xf3, 0xa9, 0xf3, 0x74, 0xf3, 0x43, 0xf3, 0x11, 0xf3,\n  0xda, 0xf2, 0xa9, 0xf2, 0x76, 0xf2, 0x46, 0xf2, 0x12, 0xf2, 0xe0, 0xf1,\n  0xaf, 0xf1, 0x7f, 0xf1, 0x4f, 0xf1, 0x19, 0xf1, 0xe9, 0xf0, 0xbb, 0xf0,\n  0x89, 0xf0, 0x5b, 0xf0, 0x2b, 0xf0, 0xfd, 0xef, 0xd0, 0xef, 0x9a, 0xef,\n  0x70, 0xef, 0x40, 0xef, 0x14, 0xef, 0xe4, 0xee, 0xb7, 0xee, 0x8c, 0xee,\n  0x61, 0xee, 0x33, 0xee, 0x07, 0xee, 0xdb, 0xed, 0xb2, 0xed, 0x86, 0xed,\n  0x5c, 0xed, 0x31, 0xed, 0x05, 0xed, 0xde, 0xec, 0xb4, 0xec, 0x8d, 0xec,\n  0x62, 0xec, 0x3a, 0xec, 0x11, 0xec, 0xec, 0xeb, 0xc4, 0xeb, 0x9e, 0xeb,\n  0x75, 0xeb, 0x50, 0xeb, 0x28, 0xeb, 0x04, 0xeb, 0xe0, 0xea, 0xbc, 0xea,\n  0x95, 0xea, 0x71, 0xea, 0x4d, 0xea, 0x2c, 0xea, 0x08, 0xea, 0xe6, 0xe9,\n  0xc3, 0xe9, 0xa1, 0xe9, 0x81, 0xe9, 0x60, 0xe9, 0x41, 0xe9, 0x1f, 0xe9,\n  0xfe, 0xe8, 0xe1, 0xe8, 0xc1, 0xe8, 0xa1, 0xe8, 0x84, 0xe8, 0x64, 0xe8,\n  0x4a, 0xe8, 0x2c, 0xe8, 0x10, 0xe8, 0xf2, 0xe7, 0xd4, 0xe7, 0xb8, 0xe7,\n  0xa1, 0xe7, 0x88, 0xe7, 0x6c, 0xe7, 0x51, 0xe7, 0x37, 0xe7, 0x20, 0xe7,\n  0x04, 0xe7, 0xee, 0xe6, 0xd4, 0xe6, 0xbe, 0xe6, 0xa5, 0xe6, 0x90, 0xe6,\n  0x78, 0xe6, 0x62, 0xe6, 0x4f, 0xe6, 0x36, 0xe6, 0x24, 0xe6, 0x0f, 0xe6,\n  0xfb, 0xe5, 0xe8, 0xe5, 0xd5, 0xe5, 0xc1, 0xe5, 0xb1, 0xe5, 0xa0, 0xe5,\n  0x8e, 0xe5, 0x7c, 0xe5, 0x6a, 0xe5, 0x5b, 0xe5, 0x4a, 0xe5, 0x3b, 0xe5,\n  0x28, 0xe5, 0x1a, 0xe5, 0x0e, 0xe5, 0x01, 0xe5, 0xf1, 0xe4, 0xe6, 0xe4,\n  0xd7, 0xe4, 0xcc, 0xe4, 0xbd, 0xe4, 0xb2, 0xe4, 0xab, 0xe4, 0x9c, 0xe4,\n  0x92, 0xe4, 0x88, 0xe4, 0x80, 0xe4, 0x73, 0xe4, 0x6e, 0xe4, 0x62, 0xe4,\n  0x5d, 0xe4, 0x53, 0xe4, 0x4d, 0xe4, 0x43, 0xe4, 0x3c, 0xe4, 0x37, 0xe4,\n  0x30, 0xe4, 0x2d, 0xe4, 0x25, 0xe4, 0x22, 0xe4, 0x1d, 0xe4, 0x1a, 0xe4,\n  0x14, 0xe4, 0x13, 0xe4, 0x11, 0xe4, 0x0b, 0xe4, 0x0c, 0xe4, 0x0b, 0xe4,\n  0x05, 0xe4, 0x05, 0xe4, 0x04, 0xe4, 0x07, 0xe4, 0x05, 0xe4, 0x04, 0xe4,\n  0x07, 0xe4, 0x05, 0xe4, 0x0b, 0xe4, 0x0c, 0xe4, 0x0c, 0xe4, 0x11, 0xe4,\n  0x13, 0xe4, 0x16, 0xe4, 0x1a, 0xe4, 0x1e, 0xe4, 0x22, 0xe4, 0x28, 0xe4,\n  0x2d, 0xe4, 0x34, 0xe4, 0x37, 0xe4, 0x3e, 0xe4, 0x47, 0xe4, 0x4a, 0xe4,\n  0x56, 0xe4, 0x5a, 0xe4, 0x65, 0xe4, 0x68, 0xe4, 0x73, 0xe4, 0x7e, 0xe4,\n  0x85, 0xe4, 0x90, 0xe4, 0x98, 0xe4, 0xa4, 0xe4, 0xae, 0xe4, 0xbc, 0xe4,\n  0xc7, 0xe4, 0xd3, 0xe4, 0xe0, 0xe4, 0xea, 0xe4, 0xf7, 0xe4, 0x06, 0xe5,\n  0x13, 0xe5, 0x22, 0xe5, 0x2f, 0xe5, 0x40, 0xe5, 0x4d, 0xe5, 0x5b, 0xe5,\n  0x6d, 0xe5, 0x7c, 0xe5, 0x8c, 0xe5, 0x9b, 0xe5, 0xaf, 0xe5, 0xbe, 0xe5,\n  0xd0, 0xe5, 0xe1, 0xe5, 0xf1, 0xe5, 0x05, 0xe6, 0x18, 0xe6, 0x2e, 0xe6,\n  0x40, 0xe6, 0x53, 0xe6, 0x65, 0xe6, 0x7c, 0xe6, 0x92, 0xe6, 0xa2, 0xe6,\n  0xbd, 0xe6, 0xd0, 0xe6, 0xea, 0xe6, 0xfd, 0xe6, 0x13, 0xe7, 0x2c, 0xe7,\n  0x41, 0xe7, 0x5a, 0xe7, 0x71, 0xe7, 0x8a, 0xe7, 0x9f, 0xe7, 0xba, 0xe7,\n  0xd1, 0xe7, 0xec, 0xe7, 0x03, 0xe8, 0x20, 0xe8, 0x36, 0xe8, 0x54, 0xe8,\n  0x6e, 0xe8, 0x88, 0xe8, 0xa5, 0xe8, 0xbf, 0xe8, 0xd8, 0xe8, 0xf6, 0xe8,\n  0x11, 0xe9, 0x2e, 0xe9, 0x4e, 0xe9, 0x66, 0xe9, 0x8a, 0xe9, 0xa4, 0xe9,\n  0xc2, 0xe9, 0xe1, 0xe9, 0xff, 0xe9, 0x20, 0xea, 0x3e, 0xea, 0x5c, 0xea,\n  0x7e, 0xea, 0x9c, 0xea, 0xbc, 0xea, 0xdb, 0xea, 0xfc, 0xea, 0x1f, 0xeb,\n  0x3d, 0xeb, 0x5f, 0xeb, 0x80, 0xeb, 0xa2, 0xeb, 0xc4, 0xeb, 0xe5, 0xeb,\n  0x0c, 0xec, 0x27, 0xec, 0x4f, 0xec, 0x70, 0xec, 0x93, 0xec, 0xba, 0xec,\n  0xdc, 0xec, 0xfd, 0xec, 0x25, 0xed, 0x47, 0xed, 0x6b, 0xed, 0x91, 0xed,\n  0xb3, 0xed, 0xda, 0xed, 0x01, 0xee, 0x24, 0xee, 0x4c, 0xee, 0x72, 0xee,\n  0x97, 0xee, 0xbe, 0xee, 0xe2, 0xee, 0x0d, 0xef, 0x32, 0xef, 0x5a, 0xef,\n  0x81, 0xef, 0xa7, 0xef, 0xcf, 0xef, 0xf6, 0xef, 0x20, 0xf0, 0x48, 0xf0,\n  0x71, 0xf0, 0x98, 0xf0, 0xc0, 0xf0, 0xe9, 0xf0, 0x11, 0xf1, 0x3a, 0xf1,\n  0x67, 0xf1, 0x8e, 0xf1, 0xba, 0xf1, 0xe0, 0xf1, 0x0c, 0xf2, 0x36, 0xf2,\n  0x5e, 0xf2, 0x8c, 0xf2, 0xb3, 0xf2, 0xe1, 0xf2, 0x09, 0xf3, 0x36, 0xf3,\n  0x5f, 0xf3, 0x8c, 0xf3, 0xb7, 0xf3, 0xe1, 0xf3, 0x0c, 0xf4, 0x39, 0xf4,\n  0x64, 0xf4, 0x91, 0xf4, 0xbb, 0xf4, 0xe8, 0xf4, 0x16, 0xf5, 0x41, 0xf5,\n  0x6f, 0xf5, 0x9b, 0xf5, 0xc7, 0xf5, 0xf3, 0xf5, 0x1e, 0xf6, 0x4e, 0xf6,\n  0x7a, 0xf6, 0xa9, 0xf6, 0xd7, 0xf6, 0x01, 0xf7, 0x33, 0xf7, 0x5b, 0xf7,\n  0x8e, 0xf7, 0xb6, 0xf7, 0xe8, 0xf7, 0x12, 0xf8, 0x42, 0xf8, 0x6e, 0xf8,\n  0x9d, 0xf8, 0xcc, 0xf8, 0xf9, 0xf8, 0x29, 0xf9, 0x54, 0xf9, 0x81, 0xf9,\n  0xad, 0xf9, 0xdd, 0xf9, 0x0a, 0xfa, 0x3d, 0xfa, 0x68, 0xfa, 0x96, 0xfa,\n  0xc8, 0xfa, 0xf6, 0xfa, 0x25, 0xfb, 0x51, 0xfb, 0x81, 0xfb, 0xae, 0xfb,\n  0xdc, 0xfb, 0x09, 0xfc, 0x3b, 0xfc, 0x69, 0xfc, 0x99, 0xfc, 0xc5, 0xfc,\n  0xf7, 0xfc, 0x25, 0xfd, 0x4f, 0xfd, 0x85, 0xfd, 0xab, 0xfd, 0xdd, 0xfd,\n  0x0c, 0xfe, 0x3c, 0xfe, 0x69, 0xfe, 0x9a, 0xfe, 0xc7, 0xfe, 0xf4, 0xfe,\n  0x24, 0xff, 0x53, 0xff, 0x80, 0xff, 0xae, 0xff, 0xde, 0xff, 0x0a, 0x00,\n  0x38, 0x00, 0x68, 0x00, 0x95, 0x00, 0xc5, 0x00, 0xf2, 0x00, 0x1f, 0x01,\n  0x4e, 0x01, 0x7b, 0x01, 0xa9, 0x01, 0xd8, 0x01, 0x05, 0x02, 0x33, 0x02,\n  0x63, 0x02, 0x8d, 0x02, 0xbd, 0x02, 0xe9, 0x02, 0x17, 0x03, 0x43, 0x03,\n  0x71, 0x03, 0xa1, 0x03, 0xc9, 0x03, 0xf9, 0x03, 0x23, 0x04, 0x4f, 0x04,\n  0x7f, 0x04, 0xaa, 0x04, 0xd8, 0x04, 0x03, 0x05, 0x30, 0x05, 0x5c, 0x05,\n  0x87, 0x05, 0xb3, 0x05, 0xdf, 0x05, 0x0e, 0x06, 0x37, 0x06, 0x66, 0x06,\n  0x8f, 0x06, 0xba, 0x06, 0xea, 0x06, 0x10, 0x07, 0x3e, 0x07, 0x67, 0x07,\n  0x92, 0x07, 0xc0, 0x07, 0xe7, 0x07, 0x11, 0x08, 0x3c, 0x08, 0x67, 0x08,\n  0x90, 0x08, 0xba, 0x08, 0xe4, 0x08, 0x0e, 0x09, 0x36, 0x09, 0x5f, 0x09,\n  0x88, 0x09, 0xb2, 0x09, 0xd9, 0x09, 0x04, 0x0a, 0x2a, 0x0a, 0x55, 0x0a,\n  0x7d, 0x0a, 0xa2, 0x0a, 0xcd, 0x0a, 0xf0, 0x0a, 0x1a, 0x0b, 0x42, 0x0b,\n  0x68, 0x0b, 0x90, 0x0b, 0xb7, 0x0b, 0xde, 0x0b, 0x01, 0x0c, 0x29, 0x0c,\n  0x4f, 0x0c, 0x75, 0x0c, 0x9c, 0x0c, 0xbf, 0x0c, 0xe7, 0x0c, 0x0a, 0x0d,\n  0x2f, 0x0d, 0x55, 0x0d, 0x78, 0x0d, 0x9e, 0x0d, 0xc0, 0x0d, 0xe5, 0x0d,\n  0x0c, 0x0e, 0x2a, 0x0e, 0x50, 0x0e, 0x71, 0x0e, 0x94, 0x0e, 0xb7, 0x0e,\n  0xd8, 0x0e, 0xfd, 0x0e, 0x1e, 0x0f, 0x40, 0x0f, 0x61, 0x0f, 0x84, 0x0f,\n  0xa4, 0x0f, 0xc6, 0x0f, 0xe7, 0x0f, 0x0a, 0x10, 0x24, 0x10, 0x43, 0x10,\n  0x66, 0x10, 0x82, 0x10, 0xa5, 0x10, 0xc3, 0x10, 0xe1, 0x10, 0xff, 0x10,\n  0x20, 0x11, 0x3c, 0x11, 0x5d, 0x11, 0x78, 0x11, 0x96, 0x11, 0xb0, 0x11,\n  0xcf, 0x11, 0xed, 0x11, 0x05, 0x12, 0x25, 0x12, 0x3f, 0x12, 0x5f, 0x12,\n  0x74, 0x12, 0x95, 0x12, 0xaf, 0x12, 0xc8, 0x12, 0xe0, 0x12, 0xfe, 0x12,\n  0x19, 0x13, 0x2f, 0x13, 0x49, 0x13, 0x60, 0x13, 0x7a, 0x13, 0x91, 0x13,\n  0xac, 0x13, 0xc3, 0x13, 0xda, 0x13, 0xef, 0x13, 0x0c, 0x14, 0x1f, 0x14,\n  0x35, 0x14, 0x4f, 0x14, 0x5f, 0x14, 0x79, 0x14, 0x8b, 0x14, 0xa1, 0x14,\n  0xba, 0x14, 0xcf, 0x14, 0xdf, 0x14, 0xf6, 0x14, 0x0b, 0x15, 0x1b, 0x15,\n  0x2f, 0x15, 0x43, 0x15, 0x55, 0x15, 0x65, 0x15, 0x7b, 0x15, 0x8a, 0x15,\n  0x9c, 0x15, 0xaf, 0x15, 0xbd, 0x15, 0xcf, 0x15, 0xde, 0x15, 0xf2, 0x15,\n  0xff, 0x15, 0x0f, 0x16, 0x1f, 0x16, 0x2e, 0x16, 0x3b, 0x16, 0x46, 0x16,\n  0x59, 0x16, 0x63, 0x16, 0x75, 0x16, 0x7f, 0x16, 0x8c, 0x16, 0x98, 0x16,\n  0xa3, 0x16, 0xb2, 0x16, 0xbc, 0x16, 0xca, 0x16, 0xd0, 0x16, 0xe1, 0x16,\n  0xeb, 0x16, 0xf3, 0x16, 0xfe, 0x16, 0x05, 0x17, 0x11, 0x17, 0x14, 0x17,\n  0x23, 0x17, 0x2a, 0x17, 0x30, 0x17, 0x3d, 0x17, 0x42, 0x17, 0x4c, 0x17,\n  0x4e, 0x17, 0x56, 0x17, 0x5d, 0x17, 0x62, 0x17, 0x66, 0x17, 0x6f, 0x17,\n  0x74, 0x17, 0x75, 0x17, 0x7e, 0x17, 0x7e, 0x17, 0x83, 0x17, 0x88, 0x17,\n  0x8d, 0x17, 0x8e, 0x17, 0x8f, 0x17, 0x92, 0x17, 0x93, 0x17, 0x96, 0x17,\n  0x96, 0x17, 0x9c, 0x17, 0x9a, 0x17, 0x9c, 0x17, 0x99, 0x17, 0x9d, 0x17,\n  0x99, 0x17, 0x99, 0x17, 0x9c, 0x17, 0x93, 0x17, 0x9a, 0x17, 0x93, 0x17,\n  0x93, 0x17, 0x8f, 0x17, 0x8f, 0x17, 0x8b, 0x17, 0x88, 0x17, 0x81, 0x17,\n  0x80, 0x17, 0x80, 0x17, 0x75, 0x17, 0x72, 0x17, 0x6f, 0x17, 0x69, 0x17,\n  0x62, 0x17, 0x5f, 0x17, 0x58, 0x17, 0x51, 0x17, 0x49, 0x17, 0x42, 0x17,\n  0x3f, 0x17, 0x32, 0x17, 0x2d, 0x17, 0x26, 0x17, 0x1e, 0x17, 0x12, 0x17,\n  0x0a, 0x17, 0x00, 0x17, 0xf6, 0x16, 0xef, 0x16, 0xe1, 0x16, 0xd9, 0x16,\n  0xce, 0x16, 0xc1, 0x16, 0xb8, 0x16, 0xad, 0x16, 0x9f, 0x16, 0x94, 0x16,\n  0x88, 0x16, 0x7d, 0x16, 0x72, 0x16, 0x61, 0x16, 0x55, 0x16, 0x46, 0x16,\n  0x3b, 0x16, 0x2e, 0x16, 0x1d, 0x16, 0x0e, 0x16, 0x00, 0x16, 0xed, 0x15,\n  0xde, 0x15, 0xd0, 0x15, 0xbf, 0x15, 0xaf, 0x15, 0x9f, 0x15, 0x8f, 0x15,\n  0x7d, 0x15, 0x6e, 0x15, 0x5a, 0x15, 0x4b, 0x15, 0x38, 0x15, 0x23, 0x15,\n  0x11, 0x15, 0xff, 0x14, 0xeb, 0x14, 0xdb, 0x14, 0xc5, 0x14, 0xb0, 0x14,\n  0x9f, 0x14, 0x86, 0x14, 0x75, 0x14, 0x60, 0x14, 0x49, 0x14, 0x36, 0x14,\n  0x20, 0x14, 0x06, 0x14, 0xf3, 0x13, 0xdd, 0x13, 0xc8, 0x13, 0xaf, 0x13,\n  0x9b, 0x13, 0x81, 0x13, 0x6b, 0x13, 0x51, 0x13, 0x3b, 0x13, 0x24, 0x13,\n  0x0e, 0x13, 0xf1, 0x12, 0xdb, 0x12, 0xc1, 0x12, 0xaa, 0x12, 0x8f, 0x12,\n  0x76, 0x12, 0x5d, 0x12, 0x44, 0x12, 0x29, 0x12, 0x0e, 0x12, 0xf2, 0x11,\n  0xd9, 0x11, 0xbf, 0x11, 0x9f, 0x11, 0x88, 0x11, 0x6c, 0x11, 0x51, 0x11,\n  0x32, 0x11, 0x1b, 0x11, 0xfd, 0x10, 0xdf, 0x10, 0xc4, 0x10, 0xa5, 0x10,\n  0x8b, 0x10, 0x6d, 0x10, 0x4f, 0x10, 0x31, 0x10, 0x13, 0x10, 0xf5, 0x0f,\n  0xd7, 0x0f, 0xbc, 0x0f, 0x9a, 0x0f, 0x7d, 0x0f, 0x5f, 0x0f, 0x41, 0x0f,\n  0x1f, 0x0f, 0xff, 0x0e, 0xe1, 0x0e, 0xc0, 0x0e, 0xa2, 0x0e, 0x80, 0x0e,\n  0x60, 0x0e, 0x3f, 0x0e, 0x20, 0x0e, 0xff, 0x0d, 0xdf, 0x0d, 0xbe, 0x0d,\n  0x9e, 0x0d, 0x7f, 0x0d, 0x5a, 0x0d, 0x3d, 0x0d, 0x19, 0x0d, 0xf8, 0x0c,\n  0xd5, 0x0c, 0xb6, 0x0c, 0x92, 0x0c, 0x70, 0x0c, 0x4f, 0x0c, 0x29, 0x0c,\n  0x0a, 0x0c, 0xe7, 0x0b, 0xc6, 0x0b, 0xa1, 0x0b, 0x7e, 0x0b, 0x5a, 0x0b,\n  0x37, 0x0b, 0x16, 0x0b, 0xf0, 0x0a, 0xcd, 0x0a, 0xad, 0x0a, 0x86, 0x0a,\n  0x64, 0x0a, 0x3f, 0x0a, 0x1c, 0x0a, 0xf6, 0x09, 0xd4, 0x09, 0xae, 0x09,\n  0x8d, 0x09, 0x68, 0x09, 0x3f, 0x09, 0x20, 0x09, 0xf8, 0x08, 0xd7, 0x08,\n  0xb0, 0x08, 0x8a, 0x08, 0x66, 0x08, 0x41, 0x08, 0x1c, 0x08, 0xfa, 0x07,\n  0xd0, 0x07, 0xab, 0x07, 0x87, 0x07, 0x5f, 0x07, 0x3e, 0x07, 0x17, 0x07,\n  0xf2, 0x06, 0xcb, 0x06, 0xa7, 0x06, 0x83, 0x06, 0x58, 0x06, 0x36, 0x06,\n  0x10, 0x06, 0xea, 0x05, 0xc3, 0x05, 0x9c, 0x05, 0x78, 0x05, 0x52, 0x05,\n  0x2b, 0x05, 0x06, 0x05, 0xdf, 0x04, 0xbb, 0x04, 0x92, 0x04, 0x6e, 0x04,\n  0x4a, 0x04, 0x22, 0x04, 0xfb, 0x03, 0xd7, 0x03, 0xad, 0x03, 0x89, 0x03,\n  0x65, 0x03, 0x39, 0x03, 0x15, 0x03, 0xef, 0x02, 0xc9, 0x02, 0xa3, 0x02,\n  0x7b, 0x02, 0x5b, 0x02, 0x2d, 0x02, 0x0d, 0x02, 0xe4, 0x01, 0xbe, 0x01,\n  0x99, 0x01, 0x6f, 0x01, 0x4c, 0x01, 0x24, 0x01, 0x00, 0x01, 0xd7, 0x00,\n  0xb3, 0x00, 0x8e, 0x00, 0x6a, 0x00, 0x41, 0x00, 0x1c, 0x00, 0xf8, 0xff,\n  0xd2, 0xff, 0xae, 0xff, 0x87, 0xff, 0x60, 0xff, 0x3b, 0xff, 0x17, 0xff,\n  0xee, 0xfe, 0xc9, 0xfe, 0xa6, 0xfe, 0x7f, 0xfe, 0x5b, 0xfe, 0x37, 0xfe,\n  0x12, 0xfe, 0xeb, 0xfd, 0xc5, 0xfd, 0xa3, 0xfd, 0x7b, 0xfd, 0x55, 0xfd,\n  0x31, 0xfd, 0x0d, 0xfd, 0xe7, 0xfc, 0xc5, 0xfc, 0x9f, 0xfc, 0x7b, 0xfc,\n  0x57, 0xfc, 0x35, 0xfc, 0x0f, 0xfc, 0xea, 0xfb, 0xc4, 0xfb, 0xa5, 0xfb,\n  0x81, 0xfb, 0x5a, 0xfb, 0x39, 0xfb, 0x12, 0xfb, 0xf4, 0xfa, 0xc9, 0xfa,\n  0xac, 0xfa, 0x85, 0xfa, 0x65, 0xfa, 0x41, 0xfa, 0x1d, 0xfa, 0xfd, 0xf9,\n  0xd8, 0xf9, 0xb6, 0xf9, 0x91, 0xf9, 0x71, 0xf9, 0x51, 0xf9, 0x2e, 0xf9,\n  0x0c, 0xf9, 0xed, 0xf8, 0xc6, 0xf8, 0xa8, 0xf8, 0x86, 0xf8, 0x65, 0xf8,\n  0x48, 0xf8, 0x21, 0xf8, 0x06, 0xf8, 0xe0, 0xf7, 0xc1, 0xf7, 0xa2, 0xf7,\n  0x7f, 0xf7, 0x5f, 0xf7, 0x41, 0xf7, 0x24, 0xf7, 0xff, 0xf6, 0xe2, 0xf6,\n  0xc1, 0xf6, 0xa4, 0xf6, 0x83, 0xf6, 0x64, 0xf6, 0x47, 0xf6, 0x26, 0xf6,\n  0x0a, 0xf6, 0xe9, 0xf5, 0xcf, 0xf5, 0xaf, 0xf5, 0x90, 0xf5, 0x72, 0xf5,\n  0x57, 0xf5, 0x39, 0xf5, 0x1b, 0xf5, 0x00, 0xf5, 0xe0, 0xf4, 0xc4, 0xf4,\n  0xa9, 0xf4, 0x8b, 0xf4, 0x72, 0xf4, 0x51, 0xf4, 0x38, 0xf4, 0x20, 0xf4,\n  0x03, 0xf4, 0xe9, 0xf3, 0xcb, 0xf3, 0xb2, 0xf3, 0x94, 0xf3, 0x7e, 0xf3,\n  0x61, 0xf3, 0x49, 0xf3, 0x2c, 0xf3, 0x14, 0xf3, 0xf9, 0xf2, 0xe3, 0xf2,\n  0xc9, 0xf2, 0xb1, 0xf2, 0x97, 0xf2, 0x81, 0xf2, 0x67, 0xf2, 0x4b, 0xf2,\n  0x37, 0xf2, 0x1e, 0xf2, 0x09, 0xf2, 0xf3, 0xf1, 0xd9, 0xf1, 0xc4, 0xf1,\n  0xab, 0xf1, 0x97, 0xf1, 0x7f, 0xf1, 0x68, 0xf1, 0x54, 0xf1, 0x3e, 0xf1,\n  0x28, 0xf1, 0x12, 0xf1, 0xff, 0xf0, 0xe9, 0xf0, 0xd7, 0xf0, 0xbf, 0xf0,\n  0xac, 0xf0, 0x99, 0xf0, 0x83, 0xf0, 0x71, 0xf0, 0x5f, 0xf0, 0x4e, 0xf0,\n  0x3a, 0xf0, 0x27, 0xf0, 0x13, 0xf0, 0x04, 0xf0, 0xf0, 0xef, 0xdf, 0xef,\n  0xcc, 0xef, 0xba, 0xef, 0xab, 0xef, 0x9a, 0xef, 0x8a, 0xef, 0x78, 0xef,\n  0x6c, 0xef, 0x57, 0xef, 0x47, 0xef, 0x38, 0xef, 0x2b, 0xef, 0x1e, 0xef,\n  0x0c, 0xef, 0x00, 0xef, 0xf1, 0xee, 0xe2, 0xee, 0xd3, 0xee, 0xc6, 0xee,\n  0xbb, 0xee, 0xac, 0xee, 0xa2, 0xee, 0x94, 0xee, 0x88, 0xee, 0x7d, 0xee,\n  0x70, 0xee, 0x66, 0xee, 0x5c, 0xee, 0x4f, 0xee, 0x43, 0xee, 0x37, 0xee,\n  0x2f, 0xee, 0x27, 0xee, 0x1a, 0xee, 0x11, 0xee, 0x07, 0xee, 0xff, 0xed,\n  0xf5, 0xed, 0xed, 0xed, 0xe3, 0xed, 0xe0, 0xed, 0xd4, 0xed, 0xcc, 0xed,\n  0xc7, 0xed, 0xbc, 0xed, 0xb8, 0xed, 0xb1, 0xed, 0xaa, 0xed, 0xa3, 0xed,\n  0x9f, 0xed, 0x97, 0xed, 0x92, 0xed, 0x8d, 0xed, 0x8a, 0xed, 0x85, 0xed,\n  0x80, 0xed, 0x7b, 0xed, 0x7a, 0xed, 0x73, 0xed, 0x71, 0xed, 0x6f, 0xed,\n  0x6b, 0xed, 0x67, 0xed, 0x64, 0xed, 0x62, 0xed, 0x5f, 0xed, 0x5f, 0xed,\n  0x5f, 0xed, 0x5a, 0xed, 0x5c, 0xed, 0x5c, 0xed, 0x58, 0xed, 0x58, 0xed,\n  0x5a, 0xed, 0x5a, 0xed, 0x58, 0xed, 0x58, 0xed, 0x5d, 0xed, 0x56, 0xed,\n  0x60, 0xed, 0x5f, 0xed, 0x61, 0xed, 0x64, 0xed, 0x64, 0xed, 0x6b, 0xed,\n  0x6b, 0xed, 0x6e, 0xed, 0x6f, 0xed, 0x76, 0xed, 0x77, 0xed, 0x7a, 0xed,\n  0x80, 0xed, 0x86, 0xed, 0x8a, 0xed, 0x8f, 0xed, 0x92, 0xed, 0x9b, 0xed,\n  0x9f, 0xed, 0xa4, 0xed, 0xab, 0xed, 0xb1, 0xed, 0xb6, 0xed, 0xc0, 0xed,\n  0xc8, 0xed, 0xce, 0xed, 0xd3, 0xed, 0xdd, 0xed, 0xe3, 0xed, 0xef, 0xed,\n  0xf4, 0xed, 0xfc, 0xed, 0x07, 0xee, 0x0e, 0xee, 0x16, 0xee, 0x22, 0xee,\n  0x2b, 0xee, 0x34, 0xee, 0x41, 0xee, 0x4c, 0xee, 0x55, 0xee, 0x5f, 0xee,\n  0x6e, 0xee, 0x76, 0xee, 0x81, 0xee, 0x91, 0xee, 0x9a, 0xee, 0xa6, 0xee,\n  0xb1, 0xee, 0xc1, 0xee, 0xca, 0xee, 0xda, 0xee, 0xe5, 0xee, 0xf3, 0xee,\n  0x01, 0xef, 0x0f, 0xef, 0x21, 0xef, 0x2a, 0xef, 0x3c, 0xef, 0x48, 0xef,\n  0x57, 0xef, 0x66, 0xef, 0x75, 0xef, 0x84, 0xef, 0x95, 0xef, 0xa5, 0xef,\n  0xb4, 0xef, 0xc8, 0xef, 0xd7, 0xef, 0xea, 0xef, 0xf8, 0xef, 0x09, 0xf0,\n  0x1c, 0xf0, 0x2b, 0xf0, 0x3f, 0xf0, 0x50, 0xf0, 0x61, 0xf0, 0x74, 0xf0,\n  0x86, 0xf0, 0x99, 0xf0, 0xae, 0xf0, 0xbc, 0xf0, 0xd3, 0xf0, 0xe3, 0xf0,\n  0xf9, 0xf0, 0x0c, 0xf1, 0x21, 0xf1, 0x34, 0xf1, 0x47, 0xf1, 0x5e, 0xf1,\n  0x71, 0xf1, 0x86, 0xf1, 0x9a, 0xf1, 0xb2, 0xf1, 0xc8, 0xf1, 0xdb, 0xf1,\n  0xf3, 0xf1, 0x09, 0xf2, 0x1b, 0xf2, 0x33, 0xf2, 0x4b, 0xf2, 0x5e, 0xf2,\n  0x79, 0xf2, 0x8c, 0xf2, 0xa2, 0xf2, 0xbc, 0xf2, 0xd2, 0xf2, 0xea, 0xf2,\n  0x00, 0xf3, 0x18, 0xf3, 0x31, 0xf3, 0x49, 0xf3, 0x5f, 0xf3, 0x78, 0xf3,\n  0x90, 0xf3, 0xa9, 0xf3, 0xc0, 0xf3, 0xdc, 0xf3, 0xf2, 0xf3, 0x0a, 0xf4,\n  0x26, 0xf4, 0x3c, 0xf4, 0x59, 0xf4, 0x72, 0xf4, 0x8e, 0xf4, 0xa6, 0xf4,\n  0xbf, 0xf4, 0xdb, 0xf4, 0xf1, 0xf4, 0x11, 0xf5, 0x28, 0xf5, 0x44, 0xf5,\n  0x5e, 0xf5, 0x78, 0xf5, 0x93, 0xf5, 0xae, 0xf5, 0xc9, 0xf5, 0xe3, 0xf5,\n  0x01, 0xf6, 0x1a, 0xf6, 0x38, 0xf6, 0x52, 0xf6, 0x6e, 0xf6, 0x89, 0xf6,\n  0xa7, 0xf6, 0xc2, 0xf6, 0xe1, 0xf6, 0xfe, 0xf6, 0x16, 0xf7, 0x38, 0xf7,\n  0x50, 0xf7, 0x70, 0xf7, 0x8a, 0xf7, 0xa6, 0xf7, 0xc7, 0xf7, 0xe1, 0xf7,\n  0xfc, 0xf7, 0x1c, 0xf8, 0x39, 0xf8, 0x56, 0xf8, 0x71, 0xf8, 0x91, 0xf8,\n  0xae, 0xf8, 0xc9, 0xf8, 0xed, 0xf8, 0x08, 0xf9, 0x24, 0xf9, 0x44, 0xf9,\n  0x61, 0xf9, 0x7d, 0xf9, 0x9c, 0xf9, 0xb9, 0xf9, 0xd9, 0xf9, 0xf5, 0xf9,\n  0x14, 0xfa, 0x34, 0xfa, 0x52, 0xfa, 0x71, 0xfa, 0x8d, 0xfa, 0xae, 0xfa,\n  0xc9, 0xfa, 0xea, 0xfa, 0x0c, 0xfb, 0x26, 0xfb, 0x49, 0xfb, 0x65, 0xfb,\n  0x84, 0xfb, 0xa2, 0xfb, 0xc1, 0xfb, 0xe1, 0xfb, 0x01, 0xfc, 0x1f, 0xfc,\n  0x3b, 0xfc, 0x5f, 0xfc, 0x7b, 0xfc, 0x9b, 0xfc, 0xb9, 0xfc, 0xd3, 0xfc,\n  0xfb, 0xfc, 0x13, 0xfd, 0x33, 0xfd, 0x55, 0xfd, 0x73, 0xfd, 0x93, 0xfd,\n  0xb1, 0xfd, 0xcf, 0xfd, 0xf1, 0xfd, 0x10, 0xfe, 0x30, 0xfe, 0x4e, 0xfe,\n  0x6d, 0xfe, 0x8d, 0xfe, 0xab, 0xfe, 0xca, 0xfe, 0xe8, 0xfe, 0x06, 0xff,\n  0x26, 0xff, 0x47, 0xff, 0x63, 0xff, 0x87, 0xff, 0xa1, 0xff, 0xc2, 0xff,\n  0xde, 0xff, 0xff, 0xff, 0x1d, 0x00, 0x3b, 0x00, 0x5b, 0x00, 0x79, 0x00,\n  0x9a, 0x00, 0xb6, 0x00, 0xd4, 0x00, 0xf7, 0x00, 0x13, 0x01, 0x31, 0x01,\n  0x52, 0x01, 0x6d, 0x01, 0x8e, 0x01, 0xac, 0x01, 0xca, 0x01, 0xeb, 0x01,\n  0x07, 0x02, 0x27, 0x02, 0x43, 0x02, 0x63, 0x02, 0x81, 0x02, 0x9d, 0x02,\n  0xbd, 0x02, 0xdb, 0x02, 0xf9, 0x02, 0x17, 0x03, 0x33, 0x03, 0x53, 0x03,\n  0x71, 0x03, 0x89, 0x03, 0xab, 0x03, 0xc5, 0x03, 0xe5, 0x03, 0x02, 0x04,\n  0x1f, 0x04, 0x3c, 0x04, 0x58, 0x04, 0x76, 0x04, 0x93, 0x04, 0xaf, 0x04,\n  0xcb, 0x04, 0xe8, 0x04, 0x07, 0x05, 0x23, 0x05, 0x3c, 0x05, 0x5b, 0x05,\n  0x77, 0x05, 0x90, 0x05, 0xb0, 0x05, 0xcc, 0x05, 0xe4, 0x05, 0x04, 0x06,\n  0x1f, 0x06, 0x3b, 0x06, 0x56, 0x06, 0x72, 0x06, 0x8b, 0x06, 0xa7, 0x06,\n  0xc3, 0x06, 0xdc, 0x06, 0xfb, 0x06, 0x10, 0x07, 0x2f, 0x07, 0x48, 0x07,\n  0x62, 0x07, 0x7f, 0x07, 0x94, 0x07, 0xaf, 0x07, 0xc7, 0x07, 0xe3, 0x07,\n  0xff, 0x07, 0x16, 0x08, 0x2f, 0x08, 0x48, 0x08, 0x62, 0x08, 0x7a, 0x08,\n  0x94, 0x08, 0xac, 0x08, 0xc4, 0x08, 0xdf, 0x08, 0xf8, 0x08, 0x0e, 0x09,\n  0x28, 0x09, 0x3f, 0x09, 0x54, 0x09, 0x6f, 0x09, 0x86, 0x09, 0x9a, 0x09,\n  0xb6, 0x09, 0xca, 0x09, 0xe0, 0x09, 0xf8, 0x09, 0x0e, 0x0a, 0x28, 0x0a,\n  0x3a, 0x0a, 0x52, 0x0a, 0x67, 0x0a, 0x81, 0x0a, 0x97, 0x0a, 0xa8, 0x0a,\n  0xc1, 0x0a, 0xd4, 0x0a, 0xe8, 0x0a, 0xff, 0x0a, 0x12, 0x0b, 0x27, 0x0b,\n  0x3d, 0x0b, 0x51, 0x0b, 0x66, 0x0b, 0x7a, 0x0b, 0x8d, 0x0b, 0xa2, 0x0b,\n  0xb7, 0x0b, 0xc8, 0x0b, 0xdc, 0x0b, 0xef, 0x0b, 0x01, 0x0c, 0x15, 0x0c,\n  0x28, 0x0c, 0x3a, 0x0c, 0x4d, 0x0c, 0x5f, 0x0c, 0x70, 0x0c, 0x82, 0x0c,\n  0x95, 0x0c, 0xa1, 0x0c, 0xb6, 0x0c, 0xc7, 0x0c, 0xd9, 0x0c, 0xe6, 0x0c,\n  0xfa, 0x0c, 0x07, 0x0d, 0x17, 0x0d, 0x2a, 0x0d, 0x37, 0x0d, 0x48, 0x0d,\n  0x57, 0x0d, 0x67, 0x0d, 0x76, 0x0d, 0x85, 0x0d, 0x94, 0x0d, 0xa0, 0x0d,\n  0xaf, 0x0d, 0xbf, 0x0d, 0xc9, 0x0d, 0xdc, 0x0d, 0xe6, 0x0d, 0xf4, 0x0d,\n  0xff, 0x0d, 0x0f, 0x0e, 0x1a, 0x0e, 0x25, 0x0e, 0x37, 0x0e, 0x3f, 0x0e,\n  0x4e, 0x0e, 0x59, 0x0e, 0x64, 0x0e, 0x6f, 0x0e, 0x7a, 0x0e, 0x85, 0x0e,\n  0x8e, 0x0e, 0x9c, 0x0e, 0xa5, 0x0e, 0xb0, 0x0e, 0xb9, 0x0e, 0xc4, 0x0e,\n  0xcc, 0x0e, 0xd7, 0x0e, 0xe0, 0x0e, 0xe7, 0x0e, 0xf4, 0x0e, 0xf8, 0x0e,\n  0x05, 0x0f, 0x0c, 0x0f, 0x15, 0x0f, 0x1d, 0x0f, 0x26, 0x0f, 0x29, 0x0f,\n  0x35, 0x0f, 0x38, 0x0f, 0x40, 0x0f, 0x47, 0x0f, 0x4d, 0x0f, 0x57, 0x0f,\n  0x58, 0x0f, 0x61, 0x0f, 0x62, 0x0f, 0x6a, 0x0f, 0x70, 0x0f, 0x75, 0x0f,\n  0x7a, 0x0f, 0x7d, 0x0f, 0x84, 0x0f, 0x88, 0x0f, 0x8d, 0x0f, 0x8f, 0x0f,\n  0x95, 0x0f, 0x96, 0x0f, 0x9a, 0x0f, 0x9e, 0x0f, 0xa0, 0x0f, 0xa4, 0x0f,\n  0xa4, 0x0f, 0xa9, 0x0f, 0xa9, 0x0f, 0xad, 0x0f, 0xaf, 0x0f, 0xad, 0x0f,\n  0xb0, 0x0f, 0xb0, 0x0f, 0xb2, 0x0f, 0xb4, 0x0f, 0xb4, 0x0f, 0xb4, 0x0f,\n  0xb7, 0x0f, 0xb6, 0x0f, 0xb2, 0x0f, 0xb2, 0x0f, 0xb4, 0x0f, 0xb0, 0x0f,\n  0xb0, 0x0f, 0xaf, 0x0f, 0xaf, 0x0f, 0xad, 0x0f, 0xa9, 0x0f, 0xa9, 0x0f,\n  0xa1, 0x0f, 0xa5, 0x0f, 0xa1, 0x0f, 0x9f, 0x0f, 0x9c, 0x0f, 0x97, 0x0f,\n  0x95, 0x0f, 0x8f, 0x0f, 0x8d, 0x0f, 0x89, 0x0f, 0x87, 0x0f, 0x7f, 0x0f,\n  0x79, 0x0f, 0x77, 0x0f, 0x70, 0x0f, 0x6e, 0x0f, 0x67, 0x0f, 0x61, 0x0f,\n  0x5f, 0x0f, 0x54, 0x0f, 0x52, 0x0f, 0x47, 0x0f, 0x47, 0x0f, 0x3c, 0x0f,\n  0x36, 0x0f, 0x2f, 0x0f, 0x28, 0x0f, 0x20, 0x0f, 0x17, 0x0f, 0x11, 0x0f,\n  0x06, 0x0f, 0xff, 0x0e, 0xf7, 0x0e, 0xef, 0x0e, 0xe7, 0x0e, 0xde, 0x0e,\n  0xd5, 0x0e, 0xc8, 0x0e, 0xc2, 0x0e, 0xb7, 0x0e, 0xae, 0x0e, 0xa6, 0x0e,\n  0x99, 0x0e, 0x90, 0x0e, 0x85, 0x0e, 0x7c, 0x0e, 0x6f, 0x0e, 0x66, 0x0e,\n  0x5a, 0x0e, 0x4e, 0x0e, 0x42, 0x0e, 0x37, 0x0e, 0x2e, 0x0e, 0x1e, 0x0e,\n  0x11, 0x0e, 0x08, 0x0e, 0xf7, 0x0d, 0xef, 0x0d, 0xdf, 0x0d, 0xd4, 0x0d,\n  0xc4, 0x0d, 0xba, 0x0d, 0xac, 0x0d, 0x9e, 0x0d, 0x90, 0x0d, 0x7f, 0x0d,\n  0x76, 0x0d, 0x65, 0x0d, 0x55, 0x0d, 0x49, 0x0d, 0x37, 0x0d, 0x2c, 0x0d,\n  0x1c, 0x0d, 0x09, 0x0d, 0xfe, 0x0c, 0xed, 0x0c, 0xdd, 0x0c, 0xce, 0x0c,\n  0xbd, 0x0c, 0xa9, 0x0c, 0x9c, 0x0c, 0x89, 0x0c, 0x7a, 0x0c, 0x67, 0x0c,\n  0x58, 0x0c, 0x47, 0x0c, 0x37, 0x0c, 0x26, 0x0c, 0x14, 0x0c, 0x05, 0x0c,\n  0xf0, 0x0b, 0xde, 0x0b, 0xcd, 0x0b, 0xbd, 0x0b, 0xa7, 0x0b, 0x96, 0x0b,\n  0x87, 0x0b, 0x6f, 0x0b, 0x5f, 0x0b, 0x4a, 0x0b, 0x39, 0x0b, 0x25, 0x0b,\n  0x15, 0x0b, 0xfe, 0x0a, 0xec, 0x0a, 0xd6, 0x0a, 0xc0, 0x0a, 0xb2, 0x0a,\n  0x9a, 0x0a, 0x86, 0x0a, 0x74, 0x0a, 0x5f, 0x0a, 0x4c, 0x0a, 0x37, 0x0a,\n  0x21, 0x0a, 0x0e, 0x0a, 0xf7, 0x09, 0xe4, 0x09, 0xcf, 0x09, 0xb7, 0x09,\n  0xa5, 0x09, 0x8c, 0x09, 0x77, 0x09, 0x65, 0x09, 0x4e, 0x09, 0x37, 0x09,\n  0x20, 0x09, 0x0e, 0x09, 0xf6, 0x08, 0xde, 0x08, 0xc9, 0x08, 0xb1, 0x08,\n  0x9c, 0x08, 0x87, 0x08, 0x6c, 0x08, 0x59, 0x08, 0x3f, 0x08, 0x29, 0x08,\n  0x15, 0x08, 0xfb, 0x07, 0xe6, 0x07, 0xcc, 0x07, 0xbb, 0x07, 0x9f, 0x07,\n  0x87, 0x07, 0x6f, 0x07, 0x5b, 0x07, 0x43, 0x07, 0x28, 0x07, 0x10, 0x07,\n  0xf7, 0x06, 0xe3, 0x06, 0xcb, 0x06, 0xb3, 0x06, 0x97, 0x06, 0x83, 0x06,\n  0x67, 0x06, 0x4f, 0x06, 0x37, 0x06, 0x1e, 0x06, 0x08, 0x06, 0xec, 0x05,\n  0xd6, 0x05, 0xbb, 0x05, 0xa4, 0x05, 0x8c, 0x05, 0x72, 0x05, 0x5a, 0x05,\n  0x42, 0x05, 0x27, 0x05, 0x0f, 0x05, 0xf7, 0x04, 0xdc, 0x04, 0xc4, 0x04,\n  0xa8, 0x04, 0x90, 0x04, 0x78, 0x04, 0x5e, 0x04, 0x46, 0x04, 0x2e, 0x04,\n  0x13, 0x04, 0xf9, 0x03, 0xe3, 0x03, 0xc9, 0x03, 0xad, 0x03, 0x93, 0x03,\n  0x7b, 0x03, 0x63, 0x03, 0x47, 0x03, 0x2d, 0x03, 0x13, 0x03, 0xfd, 0x02,\n  0xe1, 0x02, 0xc7, 0x02, 0xad, 0x02, 0x95, 0x02, 0x7b, 0x02, 0x63, 0x02,\n  0x45, 0x02, 0x2f, 0x02, 0x15, 0x02, 0xfc, 0x01, 0xdf, 0x01, 0xc9, 0x01,\n  0xac, 0x01, 0x94, 0x01, 0x79, 0x01, 0x5e, 0x01, 0x48, 0x01, 0x2d, 0x01,\n  0x13, 0x01, 0xfb, 0x00, 0xe3, 0x00, 0xc5, 0x00, 0xb0, 0x00, 0x95, 0x00,\n  0x7a, 0x00, 0x61, 0x00, 0x49, 0x00, 0x2e, 0x00, 0x14, 0x00, 0xfb, 0xff,\n  0xe1, 0xff, 0xce, 0xff, 0xb0, 0xff, 0x98, 0xff, 0x7d, 0xff, 0x66, 0xff,\n  0x4a, 0xff, 0x32, 0xff, 0x1b, 0xff, 0x00, 0xff, 0xe5, 0xfe, 0xd0, 0xfe,\n  0xb5, 0xfe, 0x9a, 0xfe, 0x82, 0xfe, 0x69, 0xfe, 0x54, 0xfe, 0x39, 0xfe,\n  0x1f, 0xfe, 0x06, 0xfe, 0xef, 0xfd, 0xd5, 0xfd, 0xbb, 0xfd, 0xa7, 0xfd,\n  0x8b, 0xfd, 0x73, 0xfd, 0x5b, 0xfd, 0x3f, 0xfd, 0x2b, 0xfd, 0x13, 0xfd,\n  0xf7, 0xfc, 0xe3, 0xfc, 0xc7, 0xfc, 0xaf, 0xfc, 0x9b, 0xfc, 0x83, 0xfc,\n  0x6b, 0xfc, 0x51, 0xfc, 0x3b, 0xfc, 0x23, 0xfc, 0x09, 0xfc, 0xf5, 0xfb,\n  0xda, 0xfb, 0xcc, 0xfb, 0xa9, 0xfb, 0x99, 0xfb, 0x81, 0xfb, 0x69, 0xfb,\n  0x55, 0xfb, 0x39, 0xfb, 0x29, 0xfb, 0x10, 0xfb, 0xf8, 0xfa, 0xe1, 0xfa,\n  0xca, 0xfa, 0xb9, 0xfa, 0xa0, 0xfa, 0x88, 0xfa, 0x75, 0xfa, 0x5c, 0xfa,\n  0x49, 0xfa, 0x2e, 0xfa, 0x1c, 0xfa, 0x06, 0xfa, 0xed, 0xf9, 0xdd, 0xf9,\n  0xc8, 0xf9, 0xb2, 0xf9, 0x9d, 0xf9, 0x89, 0xf9, 0x71, 0xf9, 0x5e, 0xf9,\n  0x48, 0xf9, 0x35, 0xf9, 0x1d, 0xf9, 0x0d, 0xf9, 0xf6, 0xf8, 0xe5, 0xf8,\n  0xd0, 0xf8, 0xba, 0xf8, 0xa9, 0xf8, 0x95, 0xf8, 0x85, 0xf8, 0x6d, 0xf8,\n  0x59, 0xf8, 0x49, 0xf8, 0x34, 0xf8, 0x21, 0xf8, 0x15, 0xf8, 0xf9, 0xf7,\n  0xea, 0xf7, 0xd9, 0xf7, 0xc3, 0xf7, 0xb2, 0xf7, 0xa0, 0xf7, 0x91, 0xf7,\n  0x7b, 0xf7, 0x6a, 0xf7, 0x5a, 0xf7, 0x47, 0xf7, 0x37, 0xf7, 0x24, 0xf7,\n  0x13, 0xf7, 0x01, 0xf7, 0xf1, 0xf6, 0xe1, 0xf6, 0xcf, 0xf6, 0xc2, 0xf6,\n  0xb1, 0xf6, 0x9f, 0xf6, 0x90, 0xf6, 0x81, 0xf6, 0x71, 0xf6, 0x60, 0xf6,\n  0x51, 0xf6, 0x41, 0xf6, 0x30, 0xf6, 0x23, 0xf6, 0x17, 0xf6, 0x08, 0xf6,\n  0xf7, 0xf5, 0xe8, 0xf5, 0xdb, 0xf5, 0xcb, 0xf5, 0xbe, 0xf5, 0xb1, 0xf5,\n  0xa2, 0xf5, 0x93, 0xf5, 0x89, 0xf5, 0x78, 0xf5, 0x6c, 0xf5, 0x60, 0xf5,\n  0x51, 0xf5, 0x44, 0xf5, 0x39, 0xf5, 0x2e, 0xf5, 0x21, 0xf5, 0x14, 0xf5,\n  0x07, 0xf5, 0xfe, 0xf4, 0xf1, 0xf4, 0xe9, 0xf4, 0xd9, 0xf4, 0xd0, 0xf4,\n  0xc3, 0xf4, 0xbe, 0xf4, 0xb0, 0xf4, 0xa3, 0xf4, 0x9c, 0xf4, 0x91, 0xf4,\n  0x86, 0xf4, 0x79, 0xf4, 0x72, 0xf4, 0x6a, 0xf4, 0x5f, 0xf4, 0x54, 0xf4,\n  0x4f, 0xf4, 0x41, 0xf4, 0x3a, 0xf4, 0x31, 0xf4, 0x29, 0xf4, 0x21, 0xf4,\n  0x17, 0xf4, 0x10, 0xf4, 0x09, 0xf4, 0x01, 0xf4, 0xfa, 0xf3, 0xf4, 0xf3,\n  0xe9, 0xf3, 0xe3, 0xf3, 0xdc, 0xf3, 0xd8, 0xf3, 0xd1, 0xf3, 0xc9, 0xf3,\n  0xc6, 0xf3, 0xbb, 0xf3, 0xb7, 0xf3, 0xb1, 0xf3, 0xaa, 0xf3, 0xa8, 0xf3,\n  0x9f, 0xf3, 0x9e, 0xf3, 0x96, 0xf3, 0x94, 0xf3, 0x8c, 0xf3, 0x89, 0xf3,\n  0x86, 0xf3, 0x81, 0xf3, 0x7e, 0xf3, 0x79, 0xf3, 0x77, 0xf3, 0x71, 0xf3,\n  0x6f, 0xf3, 0x6b, 0xf3, 0x66, 0xf3, 0x66, 0xf3, 0x62, 0xf3, 0x5f, 0xf3,\n  0x60, 0xf3, 0x5c, 0xf3, 0x59, 0xf3, 0x59, 0xf3, 0x53, 0xf3, 0x53, 0xf3,\n  0x52, 0xf3, 0x51, 0xf3, 0x52, 0xf3, 0x50, 0xf3, 0x50, 0xf3, 0x4e, 0xf3,\n  0x4e, 0xf3, 0x4e, 0xf3, 0x4e, 0xf3, 0x50, 0xf3, 0x4e, 0xf3, 0x50, 0xf3,\n  0x51, 0xf3, 0x50, 0xf3, 0x52, 0xf3, 0x52, 0xf3, 0x52, 0xf3, 0x57, 0xf3,\n  0x57, 0xf3, 0x59, 0xf3, 0x59, 0xf3, 0x5f, 0xf3, 0x60, 0xf3, 0x5f, 0xf3,\n  0x64, 0xf3, 0x62, 0xf3, 0x6b, 0xf3, 0x6b, 0xf3, 0x6f, 0xf3, 0x73, 0xf3,\n  0x77, 0xf3, 0x7a, 0xf3, 0x80, 0xf3, 0x82, 0xf3, 0x86, 0xf3, 0x8b, 0xf3,\n  0x8c, 0xf3, 0x94, 0xf3, 0x99, 0xf3, 0x9b, 0xf3, 0xa1, 0xf3, 0xa7, 0xf3,\n  0xae, 0xf3, 0xb2, 0xf3, 0xb7, 0xf3, 0xc0, 0xf3, 0xc2, 0xf3, 0xca, 0xf3,\n  0xd1, 0xf3, 0xd4, 0xf3, 0xde, 0xf3, 0xe1, 0xf3, 0xec, 0xf3, 0xf0, 0xf3,\n  0xf6, 0xf3, 0x01, 0xf4, 0x08, 0xf4, 0x10, 0xf4, 0x17, 0xf4, 0x20, 0xf4,\n  0x26, 0xf4, 0x2f, 0xf4, 0x38, 0xf4, 0x41, 0xf4, 0x49, 0xf4, 0x50, 0xf4,\n  0x5b, 0xf4, 0x61, 0xf4, 0x6c, 0xf4, 0x77, 0xf4, 0x7c, 0xf4, 0x89, 0xf4,\n  0x93, 0xf4, 0x9c, 0xf4, 0xa6, 0xf4, 0xb1, 0xf4, 0xba, 0xf4, 0xc7, 0xf4,\n  0xd1, 0xf4, 0xd9, 0xf4, 0xe4, 0xf4, 0xf3, 0xf4, 0xfa, 0xf4, 0x07, 0xf5,\n  0x11, 0xf5, 0x1f, 0xf5, 0x2c, 0xf5, 0x36, 0xf5, 0x41, 0xf5, 0x4e, 0xf5,\n  0x59, 0xf5, 0x66, 0xf5, 0x72, 0xf5, 0x7f, 0xf5, 0x8a, 0xf5, 0x99, 0xf5,\n  0xa6, 0xf5, 0xb3, 0xf5, 0xbe, 0xf5, 0xc9, 0xf5, 0xda, 0xf5, 0xe7, 0xf5,\n  0xf6, 0xf5, 0x02, 0xf6, 0x0f, 0xf6, 0x1c, 0xf6, 0x2f, 0xf6, 0x3b, 0xf6,\n  0x49, 0xf6, 0x5b, 0xf6, 0x64, 0xf6, 0x73, 0xf6, 0x83, 0xf6, 0x92, 0xf6,\n  0xa1, 0xf6, 0xb0, 0xf6, 0xc0, 0xf6, 0xd1, 0xf6, 0xde, 0xf6, 0xec, 0xf6,\n  0xff, 0xf6, 0x10, 0xf7, 0x1c, 0xf7, 0x2f, 0xf7, 0x3c, 0xf7, 0x4c, 0xf7,\n  0x5f, 0xf7, 0x6c, 0xf7, 0x7f, 0xf7, 0x91, 0xf7, 0x9c, 0xf7, 0xb0, 0xf7,\n  0xbf, 0xf7, 0xd0, 0xf7, 0xe2, 0xf7, 0xf3, 0xf7, 0x05, 0xf8, 0x12, 0xf8,\n  0x2a, 0xf8, 0x36, 0xf8, 0x49, 0xf8, 0x58, 0xf8, 0x6c, 0xf8, 0x7d, 0xf8,\n  0x8d, 0xf8, 0xa2, 0xf8, 0xb4, 0xf8, 0xc6, 0xf8, 0xd9, 0xf8, 0xed, 0xf8,\n  0xfd, 0xf8, 0x11, 0xf9, 0x22, 0xf9, 0x35, 0xf9, 0x48, 0xf9, 0x56, 0xf9,\n  0x6a, 0xf9, 0x7d, 0xf9, 0x90, 0xf9, 0xa6, 0xf9, 0xb6, 0xf9, 0xc8, 0xf9,\n  0xdd, 0xf9, 0xf1, 0xf9, 0x05, 0xfa, 0x16, 0xfa, 0x29, 0xfa, 0x3d, 0xfa,\n  0x51, 0xfa, 0x65, 0xfa, 0x79, 0xfa, 0x8a, 0xfa, 0xa0, 0xfa, 0xb5, 0xfa,\n  0xc6, 0xfa, 0xd9, 0xfa, 0xf1, 0xfa, 0x05, 0xfb, 0x15, 0xfb, 0x29, 0xfb,\n  0x42, 0xfb, 0x54, 0xfb, 0x66, 0xfb, 0x7c, 0xfb, 0x90, 0xfb, 0xa2, 0xfb,\n  0xb8, 0xfb, 0xcc, 0xfb, 0xe5, 0xfb, 0xf2, 0xfb, 0x09, 0xfc, 0x1f, 0xfc,\n  0x31, 0xfc, 0x47, 0xfc, 0x5b, 0xfc, 0x71, 0xfc, 0x83, 0xfc, 0x95, 0xfc,\n  0xb1, 0xfc, 0xc5, 0xfc, 0xd5, 0xfc, 0xef, 0xfc, 0xfd, 0xfc, 0x13, 0xfd,\n  0x2b, 0xfd, 0x3d, 0xfd, 0x53, 0xfd, 0x69, 0xfd, 0x7b, 0xfd, 0x93, 0xfd,\n  0xa7, 0xfd, 0xbb, 0xfd, 0xd1, 0xfd, 0xe3, 0xfd, 0xf9, 0xfd, 0x10, 0xfe,\n  0x25, 0xfe, 0x39, 0xfe, 0x52, 0xfe, 0x61, 0xfe, 0x76, 0xfe, 0x8e, 0xfe,\n  0xa3, 0xfe, 0xb8, 0xfe, 0xca, 0xfe, 0xe1, 0xfe, 0xf9, 0xfe, 0x0b, 0xff,\n  0x21, 0xff, 0x36, 0xff, 0x4b, 0xff, 0x5c, 0xff, 0x72, 0xff, 0x8a, 0xff,\n  0x9e, 0xff, 0xb3, 0xff, 0xc6, 0xff, 0xdd, 0xff, 0xf0, 0xff, 0x02, 0x00,\n  0x1a, 0x00, 0x2c, 0x00, 0x41, 0x00, 0x58, 0x00, 0x6d, 0x00, 0x7f, 0x00,\n  0x92, 0x00, 0xac, 0x00, 0xbb, 0x00, 0xd1, 0x00, 0xe6, 0x00, 0xfa, 0x00,\n  0x10, 0x01, 0x22, 0x01, 0x39, 0x01, 0x4c, 0x01, 0x61, 0x01, 0x73, 0x01,\n  0x88, 0x01, 0x9d, 0x01, 0xb1, 0x01, 0xc6, 0x01, 0xdb, 0x01, 0xee, 0x01,\n  0x01, 0x02, 0x17, 0x02, 0x2b, 0x02, 0x3d, 0x02, 0x53, 0x02, 0x63, 0x02,\n  0x7b, 0x02, 0x93, 0x02, 0x9f, 0x02, 0xb5, 0x02, 0xc7, 0x02, 0xdb, 0x02,\n  0xef, 0x02, 0x01, 0x03, 0x13, 0x03, 0x29, 0x03, 0x39, 0x03, 0x4d, 0x03,\n  0x61, 0x03, 0x75, 0x03, 0x85, 0x03, 0x99, 0x03, 0xad, 0x03, 0xbf, 0x03,\n  0xd1, 0x03, 0xe3, 0x03, 0xf9, 0x03, 0x0b, 0x04, 0x1b, 0x04, 0x2f, 0x04,\n  0x40, 0x04, 0x54, 0x04, 0x64, 0x04, 0x7a, 0x04, 0x8b, 0x04, 0x9c, 0x04,\n  0xaf, 0x04, 0xbf, 0x04, 0xcf, 0x04, 0xe2, 0x04, 0xf4, 0x04, 0x06, 0x05,\n  0x16, 0x05, 0x27, 0x05, 0x38, 0x05, 0x4b, 0x05, 0x5b, 0x05, 0x6c, 0x05,\n  0x7f, 0x05, 0x8c, 0x05, 0x9f, 0x05, 0xb0, 0x05, 0xc0, 0x05, 0xcf, 0x05,\n  0xe0, 0x05, 0xf0, 0x05, 0x02, 0x06, 0x10, 0x06, 0x23, 0x06, 0x2f, 0x06,\n  0x40, 0x06, 0x50, 0x06, 0x5f, 0x06, 0x70, 0x06, 0x7f, 0x06, 0x8f, 0x06,\n  0xa2, 0x06, 0xab, 0x06, 0xbc, 0x06, 0xcb, 0x06, 0xdb, 0x06, 0xea, 0x06,\n  0xf4, 0x06, 0x07, 0x07, 0x13, 0x07, 0x22, 0x07, 0x30, 0x07, 0x3f, 0x07,\n  0x4c, 0x07, 0x5b, 0x07, 0x6a, 0x07, 0x77, 0x07, 0x82, 0x07, 0x93, 0x07,\n  0xa0, 0x07, 0xab, 0x07, 0xbb, 0x07, 0xc3, 0x07, 0xd6, 0x07, 0xdf, 0x07,\n  0xee, 0x07, 0xfa, 0x07, 0x06, 0x08, 0x15, 0x08, 0x1f, 0x08, 0x2d, 0x08,\n  0x36, 0x08, 0x42, 0x08, 0x50, 0x08, 0x57, 0x08, 0x66, 0x08, 0x6f, 0x08,\n  0x7c, 0x08, 0x87, 0x08, 0x92, 0x08, 0x9f, 0x08, 0xa8, 0x08, 0xb4, 0x08,\n  0xbf, 0x08, 0xc7, 0x08, 0xd2, 0x08, 0xde, 0x08, 0xe4, 0x08, 0xf4, 0x08,\n  0xfc, 0x08, 0x02, 0x09, 0x0e, 0x09, 0x17, 0x09, 0x20, 0x09, 0x29, 0x09,\n  0x35, 0x09, 0x3c, 0x09, 0x47, 0x09, 0x4d, 0x09, 0x56, 0x09, 0x5f, 0x09,\n  0x67, 0x09, 0x6f, 0x09, 0x77, 0x09, 0x7f, 0x09, 0x87, 0x09, 0x8f, 0x09,\n  0x95, 0x09, 0x9e, 0x09, 0xa5, 0x09, 0xaa, 0x09, 0xb4, 0x09, 0xb9, 0x09,\n  0xc1, 0x09, 0xc6, 0x09, 0xcf, 0x09, 0xd4, 0x09, 0xda, 0x09, 0xdf, 0x09,\n  0xe8, 0x09, 0xed, 0x09, 0xf1, 0x09, 0xf6, 0x09, 0xfe, 0x09, 0x01, 0x0a,\n  0x07, 0x0a, 0x0d, 0x0a, 0x12, 0x0a, 0x17, 0x0a, 0x1c, 0x0a, 0x1f, 0x0a,\n  0x26, 0x0a, 0x28, 0x0a, 0x2e, 0x0a, 0x31, 0x0a, 0x34, 0x0a, 0x39, 0x0a,\n  0x3d, 0x0a, 0x3d, 0x0a, 0x44, 0x0a, 0x46, 0x0a, 0x49, 0x0a, 0x4c, 0x0a,\n  0x4f, 0x0a, 0x51, 0x0a, 0x52, 0x0a, 0x58, 0x0a, 0x58, 0x0a, 0x5c, 0x0a,\n  0x5a, 0x0a, 0x5f, 0x0a, 0x61, 0x0a, 0x61, 0x0a, 0x61, 0x0a, 0x65, 0x0a,\n  0x69, 0x0a, 0x69, 0x0a, 0x67, 0x0a, 0x69, 0x0a, 0x69, 0x0a, 0x6e, 0x0a,\n  0x69, 0x0a, 0x6a, 0x0a, 0x6d, 0x0a, 0x69, 0x0a, 0x6a, 0x0a, 0x69, 0x0a,\n  0x69, 0x0a, 0x67, 0x0a, 0x67, 0x0a, 0x67, 0x0a, 0x67, 0x0a, 0x64, 0x0a,\n  0x64, 0x0a, 0x64, 0x0a, 0x60, 0x0a, 0x5f, 0x0a, 0x5c, 0x0a, 0x5c, 0x0a,\n  0x57, 0x0a, 0x58, 0x0a, 0x56, 0x0a, 0x51, 0x0a, 0x4f, 0x0a, 0x4c, 0x0a,\n  0x49, 0x0a, 0x46, 0x0a, 0x44, 0x0a, 0x40, 0x0a, 0x3e, 0x0a, 0x3d, 0x0a,\n  0x37, 0x0a, 0x35, 0x0a, 0x30, 0x0a, 0x2a, 0x0a, 0x27, 0x0a, 0x22, 0x0a,\n  0x1f, 0x0a, 0x1c, 0x0a, 0x16, 0x0a, 0x12, 0x0a, 0x0e, 0x0a, 0x07, 0x0a,\n  0x04, 0x0a, 0xfc, 0x09, 0xf7, 0x09, 0xf1, 0x09, 0xe9, 0x09, 0xe7, 0x09,\n  0xe2, 0x09, 0xda, 0x09, 0xd5, 0x09, 0xcf, 0x09, 0xc8, 0x09, 0xc2, 0x09,\n  0xb9, 0x09, 0xb4, 0x09, 0xb0, 0x09, 0xa4, 0x09, 0x9f, 0x09, 0x97, 0x09,\n  0x8f, 0x09, 0x8c, 0x09, 0x82, 0x09, 0x7a, 0x09, 0x74, 0x09, 0x6a, 0x09,\n  0x62, 0x09, 0x5c, 0x09, 0x54, 0x09, 0x4a, 0x09, 0x44, 0x09, 0x3a, 0x09,\n  0x32, 0x09, 0x27, 0x09, 0x1f, 0x09, 0x17, 0x09, 0x0c, 0x09, 0x01, 0x09,\n  0xfc, 0x08, 0xf0, 0x08, 0xe7, 0x08, 0xdf, 0x08, 0xd2, 0x08, 0xcc, 0x08,\n  0xc2, 0x08, 0xb7, 0x08, 0xaa, 0x08, 0xa5, 0x08, 0x96, 0x08, 0x8e, 0x08,\n  0x85, 0x08, 0x78, 0x08, 0x6f, 0x08, 0x64, 0x08, 0x57, 0x08, 0x4e, 0x08,\n  0x42, 0x08, 0x37, 0x08, 0x2d, 0x08, 0x20, 0x08, 0x16, 0x08, 0x07, 0x08,\n  0xfe, 0x07, 0xf2, 0x07, 0xe7, 0x07, 0xd8, 0x07, 0xce, 0x07, 0xc2, 0x07,\n  0xb4, 0x07, 0xa7, 0x07, 0x9c, 0x07, 0x92, 0x07, 0x83, 0x07, 0x76, 0x07,\n  0x6a, 0x07, 0x5e, 0x07, 0x52, 0x07, 0x43, 0x07, 0x33, 0x07, 0x28, 0x07,\n  0x1a, 0x07, 0x0e, 0x07, 0xff, 0x06, 0xf6, 0x06, 0xe7, 0x06, 0xd7, 0x06,\n  0xcb, 0x06, 0xbc, 0x06, 0xae, 0x06, 0xa2, 0x06, 0x94, 0x06, 0x83, 0x06,\n  0x77, 0x06, 0x68, 0x06, 0x5b, 0x06, 0x4b, 0x06, 0x3b, 0x06, 0x2f, 0x06,\n  0x23, 0x06, 0x10, 0x06, 0x06, 0x06, 0xf3, 0x05, 0xe7, 0x05, 0xd4, 0x05,\n  0xc7, 0x05, 0xb7, 0x05, 0xa7, 0x05, 0x9b, 0x05, 0x8a, 0x05, 0x7b, 0x05,\n  0x6b, 0x05, 0x5c, 0x05, 0x4e, 0x05, 0x3c, 0x05, 0x30, 0x05, 0x20, 0x05,\n  0x0c, 0x05, 0x03, 0x05, 0xeb, 0x04, 0xdf, 0x04, 0xce, 0x04, 0xbf, 0x04,\n  0xb2, 0x04, 0x9f, 0x04, 0x90, 0x04, 0x7f, 0x04, 0x6f, 0x04, 0x5f, 0x04,\n  0x4f, 0x04, 0x3f, 0x04, 0x2f, 0x04, 0x1c, 0x04, 0x0e, 0x04, 0xff, 0x03,\n  0xeb, 0x03, 0xdd, 0x03, 0xcd, 0x03, 0xbb, 0x03, 0xab, 0x03, 0x9b, 0x03,\n  0x89, 0x03, 0x79, 0x03, 0x69, 0x03, 0x57, 0x03, 0x49, 0x03, 0x35, 0x03,\n  0x27, 0x03, 0x15, 0x03, 0xff, 0x02, 0xf5, 0x02, 0xe1, 0x02, 0xcf, 0x02,\n  0xc1, 0x02, 0xad, 0x02, 0xa1, 0x02, 0x8d, 0x02, 0x7b, 0x02, 0x69, 0x02,\n  0x59, 0x02, 0x45, 0x02, 0x37, 0x02, 0x27, 0x02, 0x17, 0x02, 0x03, 0x02,\n  0xf3, 0x01, 0xe4, 0x01, 0xcf, 0x01, 0xc3, 0x01, 0xb1, 0x01, 0x9d, 0x01,\n  0x8b, 0x01, 0x7c, 0x01, 0x6a, 0x01, 0x5d, 0x01, 0x46, 0x01, 0x36, 0x01,\n  0x25, 0x01, 0x13, 0x01, 0x06, 0x01, 0xf1, 0x00, 0xe2, 0x00, 0xd0, 0x00,\n  0xbe, 0x00, 0xb0, 0x00, 0x9a, 0x00, 0x8c, 0x00, 0x7a, 0x00, 0x68, 0x00,\n  0x5b, 0x00, 0x46, 0x00, 0x35, 0x00, 0x25, 0x00, 0x14, 0x00, 0x01, 0x00,\n  0xf3, 0xff, 0xe0, 0xff, 0xcf, 0xff, 0xc0, 0xff, 0xab, 0xff, 0x9e, 0xff,\n  0x89, 0xff, 0x7d, 0xff, 0x69, 0xff, 0x5a, 0xff, 0x47, 0xff, 0x36, 0xff,\n  0x29, 0xff, 0x15, 0xff, 0x05, 0xff, 0xf4, 0xfe, 0xe5, 0xfe, 0xd2, 0xfe,\n  0xc3, 0xfe, 0xb4, 0xfe, 0xa3, 0xfe, 0x91, 0xfe, 0x82, 0xfe, 0x6d, 0xfe,\n  0x5e, 0xfe, 0x4f, 0xfe, 0x3d, 0xfe, 0x2e, 0xfe, 0x1c, 0xfe, 0x0d, 0xfe,\n  0xfd, 0xfd, 0xeb, 0xfd, 0xdf, 0xfd, 0xcd, 0xfd, 0xbb, 0xfd, 0xad, 0xfd,\n  0x99, 0xfd, 0x8b, 0xfd, 0x7b, 0xfd, 0x6b, 0xfd, 0x5d, 0xfd, 0x4d, 0xfd,\n  0x3d, 0xfd, 0x2b, 0xfd, 0x1d, 0xfd, 0x0d, 0xfd, 0x01, 0xfd, 0xef, 0xfc,\n  0xdd, 0xfc, 0xd1, 0xfc, 0xc1, 0xfc, 0xb3, 0xfc, 0xa1, 0xfc, 0x95, 0xfc,\n  0x83, 0xfc, 0x73, 0xfc, 0x65, 0xfc, 0x57, 0xfc, 0x47, 0xfc, 0x3b, 0xfc,\n  0x2b, 0xfc, 0x1b, 0xfc, 0x0b, 0xfc, 0xfe, 0xfb, 0xf4, 0xfb, 0xdd, 0xfb,\n  0xd5, 0xfb, 0xc9, 0xfb, 0xb8, 0xfb, 0xaa, 0xfb, 0x9c, 0xfb, 0x8d, 0xfb,\n  0x81, 0xfb, 0x72, 0xfb, 0x60, 0xfb, 0x56, 0xfb, 0x45, 0xfb, 0x39, 0xfb,\n  0x2d, 0xfb, 0x21, 0xfb, 0x10, 0xfb, 0x05, 0xfb, 0xf6, 0xfa, 0xec, 0xfa,\n  0xde, 0xfa, 0xd0, 0xfa, 0xc1, 0xfa, 0xb5, 0xfa, 0xad, 0xfa, 0x9a, 0xfa,\n  0x91, 0xfa, 0x85, 0xfa, 0x76, 0xfa, 0x6a, 0xfa, 0x61, 0xfa, 0x51, 0xfa,\n  0x46, 0xfa, 0x38, 0xfa, 0x31, 0xfa, 0x21, 0xfa, 0x16, 0xfa, 0x0a, 0xfa,\n  0x01, 0xfa, 0xf2, 0xf9, 0xec, 0xf9, 0xdd, 0xf9, 0xd1, 0xf9, 0xc5, 0xf9,\n  0xbc, 0xf9, 0xb1, 0xf9, 0xa6, 0xf9, 0x9a, 0xf9, 0x91, 0xf9, 0x86, 0xf9,\n  0x7a, 0xf9, 0x71, 0xf9, 0x65, 0xf9, 0x5c, 0xf9, 0x50, 0xf9, 0x49, 0xf9,\n  0x3d, 0xf9, 0x35, 0xf9, 0x2c, 0xf9, 0x20, 0xf9, 0x19, 0xf9, 0x0c, 0xf9,\n  0x05, 0xf9, 0xf9, 0xf8, 0xf2, 0xf8, 0xe6, 0xf8, 0xdd, 0xf8, 0xd5, 0xf8,\n  0xcd, 0xf8, 0xc5, 0xf8, 0xba, 0xf8, 0xb1, 0xf8, 0xad, 0xf8, 0xa1, 0xf8,\n  0x99, 0xf8, 0x95, 0xf8, 0x88, 0xf8, 0x84, 0xf8, 0x7c, 0xf8, 0x72, 0xf8,\n  0x69, 0xf8, 0x64, 0xf8, 0x5d, 0xf8, 0x56, 0xf8, 0x4a, 0xf8, 0x49, 0xf8,\n  0x41, 0xf8, 0x39, 0xf8, 0x32, 0xf8, 0x2d, 0xf8, 0x24, 0xf8, 0x1e, 0xf8,\n  0x18, 0xf8, 0x11, 0xf8, 0x0d, 0xf8, 0x04, 0xf8, 0x01, 0xf8, 0xfa, 0xf7,\n  0xf7, 0xf7, 0xf1, 0xf7, 0xe9, 0xf7, 0xe4, 0xf7, 0xe2, 0xf7, 0xd9, 0xf7,\n  0xd2, 0xf7, 0xd0, 0xf7, 0xc9, 0xf7, 0xc7, 0xf7, 0xc1, 0xf7, 0xbf, 0xf7,\n  0xb9, 0xf7, 0xb4, 0xf7, 0xb0, 0xf7, 0xac, 0xf7, 0xa6, 0xf7, 0xa7, 0xf7,\n  0xa1, 0xf7, 0x9c, 0xf7, 0x99, 0xf7, 0x94, 0xf7, 0x93, 0xf7, 0x91, 0xf7,\n  0x8b, 0xf7, 0x89, 0xf7, 0x86, 0xf7, 0x84, 0xf7, 0x7f, 0xf7, 0x7f, 0xf7,\n  0x7c, 0xf7, 0x7b, 0xf7, 0x76, 0xf7, 0x73, 0xf7, 0x73, 0xf7, 0x73, 0xf7,\n  0x70, 0xf7, 0x70, 0xf7, 0x6c, 0xf7, 0x6a, 0xf7, 0x6c, 0xf7, 0x67, 0xf7,\n  0x67, 0xf7, 0x68, 0xf7, 0x61, 0xf7, 0x64, 0xf7, 0x64, 0xf7, 0x61, 0xf7,\n  0x63, 0xf7, 0x64, 0xf7, 0x5e, 0xf7, 0x67, 0xf7, 0x5f, 0xf7, 0x64, 0xf7,\n  0x64, 0xf7, 0x61, 0xf7, 0x67, 0xf7, 0x61, 0xf7, 0x68, 0xf7, 0x67, 0xf7,\n  0x69, 0xf7, 0x68, 0xf7, 0x6c, 0xf7, 0x6a, 0xf7, 0x6c, 0xf7, 0x70, 0xf7,\n  0x70, 0xf7, 0x71, 0xf7, 0x73, 0xf7, 0x73, 0xf7, 0x77, 0xf7, 0x79, 0xf7,\n  0x79, 0xf7, 0x80, 0xf7, 0x7c, 0xf7, 0x82, 0xf7, 0x82, 0xf7, 0x84, 0xf7,\n  0x8a, 0xf7, 0x8a, 0xf7, 0x91, 0xf7, 0x91, 0xf7, 0x94, 0xf7, 0x98, 0xf7,\n  0x9a, 0xf7, 0xa1, 0xf7, 0xa2, 0xf7, 0xa7, 0xf7, 0xab, 0xf7, 0xb1, 0xf7,\n  0xb2, 0xf7, 0xb8, 0xf7, 0xbf, 0xf7, 0xc1, 0xf7, 0xc4, 0xf7, 0xca, 0xf7,\n  0xce, 0xf7, 0xd3, 0xf7, 0xd7, 0xf7, 0xdc, 0xf7, 0xe1, 0xf7, 0xe8, 0xf7,\n  0xee, 0xf7, 0xf1, 0xf7, 0xf7, 0xf7, 0xfc, 0xf7, 0x04, 0xf8, 0x06, 0xf8,\n  0x0e, 0xf8, 0x11, 0xf8, 0x1a, 0xf8, 0x1e, 0xf8, 0x24, 0xf8, 0x2d, 0xf8,\n  0x2d, 0xf8, 0x39, 0xf8, 0x40, 0xf8, 0x45, 0xf8, 0x4d, 0xf8, 0x56, 0xf8,\n  0x59, 0xf8, 0x61, 0xf8, 0x69, 0xf8, 0x70, 0xf8, 0x75, 0xf8, 0x81, 0xf8,\n  0x85, 0xf8, 0x8d, 0xf8, 0x96, 0xf8, 0xa0, 0xf8, 0xa2, 0xf8, 0xad, 0xf8,\n  0xb5, 0xf8, 0xba, 0xf8, 0xc5, 0xf8, 0xcc, 0xf8, 0xd2, 0xf8, 0xde, 0xf8,\n  0xe5, 0xf8, 0xf0, 0xf8, 0xf9, 0xf8, 0x02, 0xf9, 0x08, 0xf9, 0x14, 0xf9,\n  0x1d, 0xf9, 0x24, 0xf9, 0x2e, 0xf9, 0x35, 0xf9, 0x41, 0xf9, 0x49, 0xf9,\n  0x54, 0xf9, 0x5d, 0xf9, 0x69, 0xf9, 0x6e, 0xf9, 0x76, 0xf9, 0x85, 0xf9,\n  0x90, 0xf9, 0x98, 0xf9, 0xa1, 0xf9, 0xaa, 0xf9, 0xb6, 0xf9, 0xc1, 0xf9,\n  0xca, 0xf9, 0xd5, 0xf9, 0xe0, 0xf9, 0xe6, 0xf9, 0xf5, 0xf9, 0xfe, 0xf9,\n  0x09, 0xfa, 0x15, 0xfa, 0x20, 0xfa, 0x2d, 0xfa, 0x35, 0xfa, 0x41, 0xfa,\n  0x4c, 0xfa, 0x59, 0xfa, 0x61, 0xfa, 0x6d, 0xfa, 0x79, 0xfa, 0x85, 0xfa,\n  0x91, 0xfa, 0x9d, 0xfa, 0xa6, 0xfa, 0xb1, 0xfa, 0xbe, 0xfa, 0xc8, 0xfa,\n  0xd6, 0xfa, 0xe5, 0xfa, 0xee, 0xfa, 0xfd, 0xfa, 0x06, 0xfb, 0x11, 0xfb,\n  0x1e, 0xfb, 0x2d, 0xfb, 0x39, 0xfb, 0x45, 0xfb, 0x51, 0xfb, 0x5d, 0xfb,\n  0x69, 0xfb, 0x75, 0xfb, 0x81, 0xfb, 0x8d, 0xfb, 0x9d, 0xfb, 0xa8, 0xfb,\n  0xb4, 0xfb, 0xc4, 0xfb, 0xce, 0xfb, 0xda, 0xfb, 0xe9, 0xfb, 0xf4, 0xfb,\n  0x01, 0xfc, 0x11, 0xfc, 0x1d, 0xfc, 0x29, 0xfc, 0x37, 0xfc, 0x43, 0xfc,\n  0x53, 0xfc, 0x59, 0xfc, 0x6d, 0xfc, 0x7d, 0xfc, 0x83, 0xfc, 0x95, 0xfc,\n  0xa1, 0xfc, 0xb1, 0xfc, 0xbb, 0xfc, 0xcb, 0xfc, 0xd7, 0xfc, 0xe3, 0xfc,\n  0xf1, 0xfc, 0xfd, 0xfc, 0x0d, 0xfd, 0x19, 0xfd, 0x2b, 0xfd, 0x35, 0xfd,\n  0x43, 0xfd, 0x51, 0xfd, 0x61, 0xfd, 0x6d, 0xfd, 0x79, 0xfd, 0x8b, 0xfd,\n  0x97, 0xfd, 0xa5, 0xfd, 0xaf, 0xfd, 0xc1, 0xfd, 0xcf, 0xfd, 0xdb, 0xfd,\n  0xeb, 0xfd, 0xf7, 0xfd, 0x03, 0xfe, 0x15, 0xfe, 0x21, 0xfe, 0x30, 0xfe,\n  0x3f, 0xfe, 0x4b, 0xfe, 0x5b, 0xfe, 0x67, 0xfe, 0x75, 0xfe, 0x87, 0xfe,\n  0x90, 0xfe, 0x9f, 0xfe, 0xb2, 0xfe, 0xbb, 0xfe, 0xcc, 0xfe, 0xdc, 0xfe,\n  0xe7, 0xfe, 0xf3, 0xfe, 0x06, 0xff, 0x11, 0xff, 0x21, 0xff, 0x2f, 0xff,\n  0x3b, 0xff, 0x4b, 0xff, 0x57, 0xff, 0x66, 0xff, 0x72, 0xff, 0x83, 0xff,\n  0x8f, 0xff, 0x9c, 0xff, 0xab, 0xff, 0xb9, 0xff, 0xc8, 0xff, 0xd8, 0xff,\n  0xe1, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x08, 0x00, 0x1d, 0x00, 0x25, 0x00,\n  0x32, 0x00, 0x44, 0x00, 0x52, 0x00, 0x61, 0x00, 0x6e, 0x00, 0x7d, 0x00,\n  0x8b, 0x00, 0x97, 0x00, 0xa6, 0x00, 0xb3, 0x00, 0xc1, 0x00, 0xcd, 0x00,\n  0xdc, 0x00, 0xe9, 0x00, 0xfa, 0x00, 0x03, 0x01, 0x15, 0x01, 0x1e, 0x01,\n  0x30, 0x01, 0x3a, 0x01, 0x46, 0x01, 0x57, 0x01, 0x61, 0x01, 0x6f, 0x01,\n  0x7b, 0x01, 0x8b, 0x01, 0x97, 0x01, 0xa3, 0x01, 0xb4, 0x01, 0xc0, 0x01,\n  0xcc, 0x01, 0xd8, 0x01, 0xe7, 0x01, 0xf1, 0x01, 0x03, 0x02, 0x0b, 0x02,\n  0x1b, 0x02, 0x27, 0x02, 0x33, 0x02, 0x41, 0x02, 0x4d, 0x02, 0x5b, 0x02,\n  0x65, 0x02, 0x73, 0x02, 0x81, 0x02, 0x8d, 0x02, 0x9b, 0x02, 0xa5, 0x02,\n  0xb3, 0x02, 0xbd, 0x02, 0xcd, 0x02, 0xd7, 0x02, 0xe3, 0x02, 0xf1, 0x02,\n  0xf9, 0x02, 0x09, 0x03, 0x15, 0x03, 0x1d, 0x03, 0x29, 0x03, 0x37, 0x03,\n  0x41, 0x03, 0x4d, 0x03, 0x59, 0x03, 0x65, 0x03, 0x73, 0x03, 0x7b, 0x03,\n  0x89, 0x03, 0x95, 0x03, 0x9d, 0x03, 0xa9, 0x03, 0xb5, 0x03, 0xbf, 0x03,\n  0xcd, 0x03, 0xd7, 0x03, 0xdf, 0x03, 0xef, 0x03, 0xf5, 0x03, 0x02, 0x04,\n  0x0e, 0x04, 0x16, 0x04, 0x24, 0x04, 0x2e, 0x04, 0x37, 0x04, 0x43, 0x04,\n  0x4b, 0x04, 0x57, 0x04, 0x62, 0x04, 0x6c, 0x04, 0x77, 0x04, 0x7f, 0x04,\n  0x88, 0x04, 0x94, 0x04, 0x9c, 0x04, 0xa7, 0x04, 0xb3, 0x04, 0xb8, 0x04,\n  0xc7, 0x04, 0xce, 0x04, 0xd7, 0x04, 0xdf, 0x04, 0xe8, 0x04, 0xf0, 0x04,\n  0xfb, 0x04, 0x07, 0x05, 0x0f, 0x05, 0x16, 0x05, 0x22, 0x05, 0x27, 0x05,\n  0x30, 0x05, 0x3a, 0x05, 0x42, 0x05, 0x4b, 0x05, 0x53, 0x05, 0x5c, 0x05,\n  0x63, 0x05, 0x6f, 0x05, 0x73, 0x05, 0x7b, 0x05, 0x87, 0x05, 0x8b, 0x05,\n  0x93, 0x05, 0x9a, 0x05, 0xa3, 0x05, 0xa8, 0x05, 0xb7, 0x05, 0xb7, 0x05,\n  0xc3, 0x05, 0xc8, 0x05, 0xcf, 0x05, 0xd7, 0x05, 0xdb, 0x05, 0xe7, 0x05,\n  0xe7, 0x05, 0xf3, 0x05, 0xf7, 0x05, 0xff, 0x05, 0x04, 0x06, 0x0b, 0x06,\n  0x10, 0x06, 0x17, 0x06, 0x1f, 0x06, 0x23, 0x06, 0x2b, 0x06, 0x2f, 0x06,\n  0x36, 0x06, 0x3b, 0x06, 0x40, 0x06, 0x44, 0x06, 0x4c, 0x06, 0x53, 0x06,\n  0x56, 0x06, 0x5c, 0x06, 0x62, 0x06, 0x67, 0x06, 0x6b, 0x06, 0x70, 0x06,\n  0x74, 0x06, 0x7b, 0x06, 0x7c, 0x06, 0x83, 0x06, 0x86, 0x06, 0x8c, 0x06,\n  0x8f, 0x06, 0x93, 0x06, 0x97, 0x06, 0x9b, 0x06, 0xa0, 0x06, 0xa3, 0x06,\n  0xa7, 0x06, 0xa7, 0x06, 0xac, 0x06, 0xaf, 0x06, 0xb7, 0x06, 0xb8, 0x06,\n  0xba, 0x06, 0xbf, 0x06, 0xc2, 0x06, 0xc2, 0x06, 0xc6, 0x06, 0xcb, 0x06,\n  0xcb, 0x06, 0xd0, 0x06, 0xcb, 0x06, 0xd3, 0x06, 0xd4, 0x06, 0xd7, 0x06,\n  0xdc, 0x06, 0xd7, 0x06, 0xdc, 0x06, 0xde, 0x06, 0xde, 0x06, 0xe3, 0x06,\n  0xe3, 0x06, 0xe3, 0x06, 0xe7, 0x06, 0xe7, 0x06, 0xe8, 0x06, 0xeb, 0x06,\n  0xea, 0x06, 0xeb, 0x06, 0xeb, 0x06, 0xec, 0x06, 0xec, 0x06, 0xef, 0x06,\n  0xef, 0x06, 0xef, 0x06, 0xef, 0x06, 0xf2, 0x06, 0xef, 0x06, 0xf2, 0x06,\n  0xec, 0x06, 0xef, 0x06, 0xef, 0x06, 0xec, 0x06, 0xeb, 0x06, 0xef, 0x06,\n  0xea, 0x06, 0xef, 0x06, 0xeb, 0x06, 0xea, 0x06, 0xea, 0x06, 0xea, 0x06,\n  0xe7, 0x06, 0xe3, 0x06, 0xe6, 0x06, 0xe3, 0x06, 0xe0, 0x06, 0xde, 0x06,\n  0xe0, 0x06, 0xde, 0x06, 0xde, 0x06, 0xda, 0x06, 0xd7, 0x06, 0xd4, 0x06,\n  0xd2, 0x06, 0xd0, 0x06, 0xcb, 0x06, 0xcb, 0x06, 0xc7, 0x06, 0xc6, 0x06,\n  0xc3, 0x06, 0xc2, 0x06, 0xbc, 0x06, 0xba, 0x06, 0xb3, 0x06, 0xb3, 0x06,\n  0xb0, 0x06, 0xae, 0x06, 0xab, 0x06, 0xa7, 0x06, 0xa4, 0x06, 0x9f, 0x06,\n  0x9b, 0x06, 0x97, 0x06, 0x94, 0x06, 0x8f, 0x06, 0x8b, 0x06, 0x87, 0x06,\n  0x83, 0x06, 0x7f, 0x06, 0x7b, 0x06, 0x77, 0x06, 0x73, 0x06, 0x6e, 0x06,\n  0x66, 0x06, 0x63, 0x06, 0x5f, 0x06, 0x5a, 0x06, 0x53, 0x06, 0x50, 0x06,\n  0x4a, 0x06, 0x44, 0x06, 0x40, 0x06, 0x37, 0x06, 0x33, 0x06, 0x2c, 0x06,\n  0x2a, 0x06, 0x23, 0x06, 0x1e, 0x06, 0x1a, 0x06, 0x12, 0x06, 0x0b, 0x06,\n  0x06, 0x06, 0xfc, 0x05, 0xfb, 0x05, 0xf3, 0x05, 0xee, 0x05, 0xe7, 0x05,\n  0xe0, 0x05, 0xd7, 0x05, 0xd4, 0x05, 0xcb, 0x05, 0xc3, 0x05, 0xbf, 0x05,\n  0xb3, 0x05, 0xb3, 0x05, 0xa6, 0x05, 0xa3, 0x05, 0x9a, 0x05, 0x96, 0x05,\n  0x8c, 0x05, 0x84, 0x05, 0x7b, 0x05, 0x76, 0x05, 0x6c, 0x05, 0x63, 0x05,\n  0x5e, 0x05, 0x54, 0x05, 0x50, 0x05, 0x47, 0x05, 0x3f, 0x05, 0x36, 0x05,\n  0x2f, 0x05, 0x27, 0x05, 0x20, 0x05, 0x16, 0x05, 0x12, 0x05, 0x06, 0x05,\n  0xfb, 0x04, 0xf4, 0x04, 0xee, 0x04, 0xe2, 0x04, 0xda, 0x04, 0xd3, 0x04,\n  0xc7, 0x04, 0xc2, 0x04, 0xb6, 0x04, 0xaf, 0x04, 0xa6, 0x04, 0x9e, 0x04,\n  0x92, 0x04, 0x8b, 0x04, 0x7f, 0x04, 0x78, 0x04, 0x70, 0x04, 0x64, 0x04,\n  0x5e, 0x04, 0x52, 0x04, 0x46, 0x04, 0x3f, 0x04, 0x37, 0x04, 0x2b, 0x04,\n  0x22, 0x04, 0x18, 0x04, 0x0f, 0x04, 0x04, 0x04, 0xfb, 0x03, 0xef, 0x03,\n  0xe7, 0x03, 0xdf, 0x03, 0xd3, 0x03, 0xcb, 0x03, 0xbf, 0x03, 0xb5, 0x03,\n  0xa9, 0x03, 0xa1, 0x03, 0x95, 0x03, 0x8b, 0x03, 0x81, 0x03, 0x77, 0x03,\n  0x6d, 0x03, 0x61, 0x03, 0x57, 0x03, 0x4b, 0x03, 0x41, 0x03, 0x35, 0x03,\n  0x2f, 0x03, 0x23, 0x03, 0x17, 0x03, 0x0f, 0x03, 0x01, 0x03, 0xf9, 0x02,\n  0xed, 0x02, 0xe3, 0x02, 0xd5, 0x02, 0xcf, 0x02, 0xc3, 0x02, 0xb7, 0x02,\n  0xab, 0x02, 0x9f, 0x02, 0x95, 0x02, 0x89, 0x02, 0x81, 0x02, 0x73, 0x02,\n  0x69, 0x02, 0x5d, 0x02, 0x55, 0x02, 0x49, 0x02, 0x39, 0x02, 0x2f, 0x02,\n  0x27, 0x02, 0x1b, 0x02, 0x11, 0x02, 0x03, 0x02, 0xf9, 0x01, 0xee, 0x01,\n  0xdf, 0x01, 0xd9, 0x01, 0xca, 0x01, 0xc1, 0x01, 0xb5, 0x01, 0xa8, 0x01,\n  0x9f, 0x01, 0x93, 0x01, 0x87, 0x01, 0x7c, 0x01, 0x6f, 0x01, 0x64, 0x01,\n  0x5b, 0x01, 0x4b, 0x01, 0x43, 0x01, 0x36, 0x01, 0x28, 0x01, 0x1e, 0x01,\n  0x16, 0x01, 0x07, 0x01, 0xfd, 0x00, 0xf2, 0x00, 0xe5, 0x00, 0xda, 0x00,\n  0xce, 0x00, 0xc1, 0x00, 0xb8, 0x00, 0xb0, 0x00, 0xa0, 0x00, 0x95, 0x00,\n  0x8b, 0x00, 0x7d, 0x00, 0x74, 0x00, 0x68, 0x00, 0x5e, 0x00, 0x50, 0x00,\n  0x43, 0x00, 0x3a, 0x00, 0x2c, 0x00, 0x22, 0x00, 0x16, 0x00, 0x0b, 0x00,\n  0x01, 0x00, 0xf3, 0xff, 0xea, 0xff, 0xe0, 0xff, 0xd5, 0xff, 0xc8, 0xff,\n  0xba, 0xff, 0xb3, 0xff, 0xa4, 0xff, 0x9b, 0xff, 0x8d, 0xff, 0x84, 0xff,\n  0x78, 0xff, 0x6c, 0xff, 0x60, 0xff, 0x56, 0xff, 0x4e, 0xff, 0x41, 0xff,\n  0x36, 0xff, 0x29, 0xff, 0x1d, 0xff, 0x12, 0xff, 0x08, 0xff, 0xff, 0xfe,\n  0xf1, 0xfe, 0xe7, 0xfe, 0xd9, 0xfe, 0xd3, 0xfe, 0xc6, 0xfe, 0xbb, 0xfe,\n  0xaf, 0xfe, 0xa8, 0xfe, 0x9d, 0xfe, 0x8e, 0xfe, 0x82, 0xfe, 0x79, 0xfe,\n  0x6f, 0xfe, 0x64, 0xfe, 0x58, 0xfe, 0x4f, 0xfe, 0x43, 0xfe, 0x3a, 0xfe,\n  0x2e, 0xfe, 0x24, 0xfe, 0x16, 0xfe, 0x0f, 0xfe, 0x06, 0xfe, 0xf9, 0xfd,\n  0xf1, 0xfd, 0xe1, 0xfd, 0xdf, 0xfd, 0xcf, 0xfd, 0xc7, 0xfd, 0xbd, 0xfd,\n  0xb1, 0xfd, 0xa7, 0xfd, 0x9d, 0xfd, 0x93, 0xfd, 0x89, 0xfd, 0x81, 0xfd,\n  0x75, 0xfd, 0x6d, 0xfd, 0x63, 0xfd, 0x57, 0xfd, 0x4f, 0xfd, 0x43, 0xfd,\n  0x3d, 0xfd, 0x31, 0xfd, 0x27, 0xfd, 0x21, 0xfd, 0x13, 0xfd, 0x0d, 0xfd,\n  0x01, 0xfd, 0xf9, 0xfc, 0xef, 0xfc, 0xe3, 0xfc, 0xdd, 0xfc, 0xd1, 0xfc,\n  0xcb, 0xfc, 0xbf, 0xfc, 0xb9, 0xfc, 0xaf, 0xfc, 0xa7, 0xfc, 0x9f, 0xfc,\n  0x95, 0xfc, 0x8b, 0xfc, 0x81, 0xfc, 0x7b, 0xfc, 0x6f, 0xfc, 0x67, 0xfc,\n  0x61, 0xfc, 0x57, 0xfc, 0x4f, 0xfc, 0x47, 0xfc, 0x3b, 0xfc, 0x39, 0xfc,\n  0x29, 0xfc, 0x27, 0xfc, 0x19, 0xfc, 0x17, 0xfc, 0x11, 0xfc, 0x00, 0xfc,\n  0x01, 0xfc, 0xf5, 0xfb, 0xf0, 0xfb, 0xe6, 0xfb, 0xda, 0xfb, 0xd5, 0xfb,\n  0xcc, 0xfb, 0xc5, 0xfb, 0xc1, 0xfb, 0xb6, 0xfb, 0xb1, 0xfb, 0xaa, 0xfb,\n  0xa1, 0xfb, 0x9d, 0xfb, 0x91, 0xfb, 0x91, 0xfb, 0x86, 0xfb, 0x7e, 0xfb,\n  0x7a, 0xfb, 0x71, 0xfb, 0x6d, 0xfb, 0x61, 0xfb, 0x5d, 0xfb, 0x56, 0xfb,\n  0x54, 0xfb, 0x4a, 0xfb, 0x45, 0xfb, 0x3e, 0xfb, 0x39, 0xfb, 0x31, 0xfb,\n  0x2d, 0xfb, 0x26, 0xfb, 0x1d, 0xfb, 0x1c, 0xfb, 0x15, 0xfb, 0x11, 0xfb,\n  0x06, 0xfb, 0x02, 0xfb, 0xfd, 0xfa, 0xf8, 0xfa, 0xf5, 0xfa, 0xed, 0xfa,\n  0xe8, 0xfa, 0xe2, 0xfa, 0xde, 0xfa, 0xdc, 0xfa, 0xd5, 0xfa, 0xd0, 0xfa,\n  0xc9, 0xfa, 0xc8, 0xfa, 0xc1, 0xfa, 0xbe, 0xfa, 0xb9, 0xfa, 0xb5, 0xfa,\n  0xae, 0xfa, 0xad, 0xfa, 0xa9, 0xfa, 0xa1, 0xfa, 0x9d, 0xfa, 0x9a, 0xfa,\n  0x9a, 0xfa, 0x91, 0xfa, 0x8e, 0xfa, 0x8c, 0xfa, 0x88, 0xfa, 0x85, 0xfa,\n  0x80, 0xfa, 0x7e, 0xfa, 0x7c, 0xfa, 0x79, 0xfa, 0x72, 0xfa, 0x72, 0xfa,\n  0x6d, 0xfa, 0x6a, 0xfa, 0x68, 0xfa, 0x64, 0xfa, 0x64, 0xfa, 0x5e, 0xfa,\n  0x5e, 0xfa, 0x5a, 0xfa, 0x59, 0xfa, 0x58, 0xfa, 0x52, 0xfa, 0x50, 0xfa,\n  0x4c, 0xfa, 0x4e, 0xfa, 0x49, 0xfa, 0x49, 0xfa, 0x46, 0xfa, 0x44, 0xfa,\n  0x42, 0xfa, 0x42, 0xfa, 0x40, 0xfa, 0x40, 0xfa, 0x3a, 0xfa, 0x3d, 0xfa,\n  0x39, 0xfa, 0x36, 0xfa, 0x38, 0xfa, 0x36, 0xfa, 0x35, 0xfa, 0x31, 0xfa,\n  0x34, 0xfa, 0x31, 0xfa, 0x2e, 0xfa, 0x35, 0xfa, 0x2e, 0xfa, 0x31, 0xfa,\n  0x31, 0xfa, 0x31, 0xfa, 0x2d, 0xfa, 0x2d, 0xfa, 0x2e, 0xfa, 0x2e, 0xfa,\n  0x2e, 0xfa, 0x2e, 0xfa, 0x2e, 0xfa, 0x31, 0xfa, 0x2e, 0xfa, 0x2e, 0xfa,\n  0x2e, 0xfa, 0x2d, 0xfa, 0x31, 0xfa, 0x34, 0xfa, 0x34, 0xfa, 0x35, 0xfa,\n  0x35, 0xfa, 0x36, 0xfa, 0x38, 0xfa, 0x36, 0xfa, 0x38, 0xfa, 0x39, 0xfa,\n  0x3a, 0xfa, 0x3d, 0xfa, 0x3d, 0xfa, 0x40, 0xfa, 0x42, 0xfa, 0x41, 0xfa,\n  0x45, 0xfa, 0x42, 0xfa, 0x49, 0xfa, 0x4c, 0xfa, 0x4c, 0xfa, 0x4e, 0xfa,\n  0x50, 0xfa, 0x52, 0xfa, 0x52, 0xfa, 0x59, 0xfa, 0x59, 0xfa, 0x5c, 0xfa,\n  0x61, 0xfa, 0x61, 0xfa, 0x65, 0xfa, 0x65, 0xfa, 0x69, 0xfa, 0x6d, 0xfa,\n  0x70, 0xfa, 0x72, 0xfa, 0x75, 0xfa, 0x76, 0xfa, 0x7d, 0xfa, 0x7e, 0xfa,\n  0x85, 0xfa, 0x88, 0xfa, 0x8a, 0xfa, 0x8e, 0xfa, 0x94, 0xfa, 0x98, 0xfa,\n  0x99, 0xfa, 0x9d, 0xfa, 0xa2, 0xfa, 0xa5, 0xfa, 0xa9, 0xfa, 0xad, 0xfa,\n  0xb2, 0xfa, 0xb5, 0xfa, 0xbc, 0xfa, 0xbe, 0xfa, 0xc5, 0xfa, 0xc8, 0xfa,\n  0xca, 0xfa, 0xd2, 0xfa, 0xd6, 0xfa, 0xd9, 0xfa, 0xe0, 0xfa, 0xe5, 0xfa,\n  0xea, 0xfa, 0xed, 0xfa, 0xf1, 0xfa, 0xfa, 0xfa, 0xfd, 0xfa, 0x04, 0xfb,\n  0x09, 0xfb, 0x0c, 0xfb, 0x15, 0xfb, 0x19, 0xfb, 0x1e, 0xfb, 0x25, 0xfb,\n  0x2a, 0xfb, 0x2d, 0xfb, 0x34, 0xfb, 0x39, 0xfb, 0x3e, 0xfb, 0x48, 0xfb,\n  0x4d, 0xfb, 0x51, 0xfb, 0x58, 0xfb, 0x62, 0xfb, 0x64, 0xfb, 0x69, 0xfb,\n  0x71, 0xfb, 0x75, 0xfb, 0x81, 0xfb, 0x85, 0xfb, 0x8a, 0xfb, 0x91, 0xfb,\n  0x99, 0xfb, 0xa0, 0xfb, 0xa5, 0xfb, 0xac, 0xfb, 0xae, 0xfb, 0xbd, 0xfb,\n  0xbd, 0xfb, 0xc9, 0xfb, 0xcc, 0xfb, 0xd5, 0xfb, 0xde, 0xfb, 0xe1, 0xfb,\n  0xea, 0xfb, 0xf4, 0xfb, 0xf6, 0xfb, 0x01, 0xfc, 0x07, 0xfc, 0x0b, 0xfc,\n  0x17, 0xfc, 0x1d, 0xfc, 0x25, 0xfc, 0x2f, 0xfc, 0x35, 0xfc, 0x3d, 0xfc,\n  0x41, 0xfc, 0x47, 0xfc, 0x55, 0xfc, 0x5b, 0xfc, 0x5f, 0xfc, 0x6d, 0xfc,\n  0x6f, 0xfc, 0x7d, 0xfc, 0x83, 0xfc, 0x8b, 0xfc, 0x93, 0xfc, 0x97, 0xfc,\n  0xa3, 0xfc, 0xa9, 0xfc, 0xb3, 0xfc, 0xb9, 0xfc, 0xc1, 0xfc, 0xcb, 0xfc,\n  0xd1, 0xfc, 0xdd, 0xfc, 0xe3, 0xfc, 0xef, 0xfc, 0xf5, 0xfc, 0xfb, 0xfc,\n  0x07, 0xfd, 0x0d, 0xfd, 0x19, 0xfd, 0x1f, 0xfd, 0x2b, 0xfd, 0x31, 0xfd,\n  0x3b, 0xfd, 0x43, 0xfd, 0x4b, 0xfd, 0x55, 0xfd, 0x5b, 0xfd, 0x65, 0xfd,\n  0x6f, 0xfd, 0x79, 0xfd, 0x81, 0xfd, 0x87, 0xfd, 0x95, 0xfd, 0x9d, 0xfd,\n  0xa3, 0xfd, 0xad, 0xfd, 0xb5, 0xfd, 0xbf, 0xfd, 0xc7, 0xfd, 0xd3, 0xfd,\n  0xd9, 0xfd, 0xe1, 0xfd, 0xef, 0xfd, 0xf5, 0xfd, 0xff, 0xfd, 0x07, 0xfe,\n  0x13, 0xfe, 0x19, 0xfe, 0x24, 0xfe, 0x2d, 0xfe, 0x39, 0xfe, 0x40, 0xfe,\n  0x4b, 0xfe, 0x51, 0xfe, 0x5b, 0xfe, 0x66, 0xfe, 0x70, 0xfe, 0x78, 0xfe,\n  0x82, 0xfe, 0x8b, 0xfe, 0x94, 0xfe, 0x9f, 0xfe, 0xa6, 0xfe, 0xb2, 0xfe,\n  0xb7, 0xfe, 0xc3, 0xfe, 0xcc, 0xfe, 0xd5, 0xfe, 0xdf, 0xfe, 0xe8, 0xfe,\n  0xf1, 0xfe, 0xfd, 0xfe, 0x03, 0xff, 0x0f, 0xff, 0x17, 0xff, 0x23, 0xff,\n  0x2c, 0xff, 0x35, 0xff, 0x3e, 0xff, 0x47, 0xff, 0x50, 0xff, 0x5d, 0xff,\n  0x62, 0xff, 0x6f, 0xff, 0x77, 0xff, 0x80, 0xff, 0x8c, 0xff, 0x92, 0xff,\n  0x9c, 0xff, 0xa8, 0xff, 0xb0, 0xff, 0xb9, 0xff, 0xc3, 0xff, 0xcb, 0xff,\n  0xd5, 0xff, 0xe0, 0xff, 0xe7, 0xff, 0xf0, 0xff, 0xfc, 0xff, 0x02, 0x00,\n  0x0b, 0x00, 0x16, 0x00, 0x20, 0x00, 0x25, 0x00, 0x31, 0x00, 0x38, 0x00,\n  0x44, 0x00, 0x4f, 0x00, 0x58, 0x00, 0x62, 0x00, 0x67, 0x00, 0x73, 0x00,\n  0x7d, 0x00, 0x85, 0x00, 0x8f, 0x00, 0x95, 0x00, 0xa1, 0x00, 0xa7, 0x00,\n  0xb3, 0x00, 0xbc, 0x00, 0xc4, 0x00, 0xd0, 0x00, 0xd6, 0x00, 0xe0, 0x00,\n  0xe9, 0x00, 0xf1, 0x00, 0xfa, 0x00, 0x07, 0x01, 0x0c, 0x01, 0x15, 0x01,\n  0x1e, 0x01, 0x27, 0x01, 0x2e, 0x01, 0x3a, 0x01, 0x3f, 0x01, 0x49, 0x01,\n  0x54, 0x01, 0x5b, 0x01, 0x64, 0x01, 0x6d, 0x01, 0x75, 0x01, 0x7c, 0x01,\n  0x88, 0x01, 0x90, 0x01, 0x94, 0x01, 0xa2, 0x01, 0xa6, 0x01, 0xaf, 0x01,\n  0xbd, 0x01, 0xc1, 0x01, 0xc7, 0x01, 0xd3, 0x01, 0xdb, 0x01, 0xe1, 0x01,\n  0xeb, 0x01, 0xf4, 0x01, 0xf7, 0x01, 0x03, 0x02, 0x0b, 0x02, 0x15, 0x02,\n  0x1b, 0x02, 0x21, 0x02, 0x2b, 0x02, 0x2f, 0x02, 0x3b, 0x02, 0x43, 0x02,\n  0x4b, 0x02, 0x53, 0x02, 0x59, 0x02, 0x5f, 0x02, 0x69, 0x02, 0x6f, 0x02,\n  0x77, 0x02, 0x7d, 0x02, 0x87, 0x02, 0x8d, 0x02, 0x99, 0x02, 0x9f, 0x02,\n  0xa3, 0x02, 0xab, 0x02, 0xb5, 0x02, 0xbb, 0x02, 0xc1, 0x02, 0xc9, 0x02,\n  0xd1, 0x02, 0xd9, 0x02, 0xdd, 0x02, 0xe5, 0x02, 0xeb, 0x02, 0xf3, 0x02,\n  0xf9, 0x02, 0x01, 0x03, 0x07, 0x03, 0x0b, 0x03, 0x13, 0x03, 0x1d, 0x03,\n  0x1f, 0x03, 0x29, 0x03, 0x2d, 0x03, 0x35, 0x03, 0x3b, 0x03, 0x3b, 0x03,\n  0x47, 0x03, 0x4d, 0x03, 0x53, 0x03, 0x59, 0x03, 0x5f, 0x03, 0x65, 0x03,\n  0x6b, 0x03, 0x71, 0x03, 0x77, 0x03, 0x7b, 0x03, 0x83, 0x03, 0x85, 0x03,\n  0x8b, 0x03, 0x95, 0x03, 0x97, 0x03, 0x9d, 0x03, 0xa1, 0x03, 0xa9, 0x03,\n  0xb1, 0x03, 0xb5, 0x03, 0xbb, 0x03, 0xbd, 0x03, 0xc3, 0x03, 0xc5, 0x03,\n  0xcb, 0x03, 0xd1, 0x03, 0xd7, 0x03, 0xdd, 0x03, 0xdf, 0x03, 0xe3, 0x03,\n  0xe7, 0x03, 0xef, 0x03, 0xf5, 0x03, 0xf7, 0x03, 0xfb, 0x03, 0x00, 0x04,\n  0x07, 0x04, 0x07, 0x04, 0x0e, 0x04, 0x13, 0x04, 0x13, 0x04, 0x1a, 0x04,\n  0x1f, 0x04, 0x22, 0x04, 0x26, 0x04, 0x26, 0x04, 0x2e, 0x04, 0x32, 0x04,\n  0x37, 0x04, 0x37, 0x04, 0x3a, 0x04, 0x3f, 0x04, 0x43, 0x04, 0x46, 0x04,\n  0x4a, 0x04, 0x4b, 0x04, 0x4f, 0x04, 0x52, 0x04, 0x58, 0x04, 0x58, 0x04,\n  0x5b, 0x04, 0x5f, 0x04, 0x60, 0x04, 0x67, 0x04, 0x67, 0x04, 0x67, 0x04,\n  0x6c, 0x04, 0x6e, 0x04, 0x6f, 0x04, 0x77, 0x04, 0x73, 0x04, 0x77, 0x04,\n  0x7b, 0x04, 0x7a, 0x04, 0x82, 0x04, 0x83, 0x04, 0x84, 0x04, 0x84, 0x04,\n  0x88, 0x04, 0x87, 0x04, 0x88, 0x04, 0x8b, 0x04, 0x8e, 0x04, 0x90, 0x04,\n  0x90, 0x04, 0x92, 0x04, 0x92, 0x04, 0x97, 0x04, 0x94, 0x04, 0x97, 0x04,\n  0x9a, 0x04, 0x9b, 0x04, 0x9b, 0x04, 0x9a, 0x04, 0x9e, 0x04, 0x9c, 0x04,\n  0x9e, 0x04, 0x9e, 0x04, 0x9e, 0x04, 0x9f, 0x04, 0x9f, 0x04, 0xa0, 0x04,\n  0xa3, 0x04, 0xa3, 0x04, 0xa3, 0x04, 0xa0, 0x04, 0xa3, 0x04, 0xa3, 0x04,\n  0xa3, 0x04, 0xa3, 0x04, 0xa3, 0x04, 0xa3, 0x04, 0xa0, 0x04, 0xa0, 0x04,\n  0xa3, 0x04, 0xa3, 0x04, 0x9f, 0x04, 0xa3, 0x04, 0x9e, 0x04, 0x9e, 0x04,\n  0x9e, 0x04, 0x9f, 0x04, 0x9c, 0x04, 0x9c, 0x04, 0x9b, 0x04, 0x9a, 0x04,\n  0x9a, 0x04, 0x9a, 0x04, 0x94, 0x04, 0x97, 0x04, 0x94, 0x04, 0x93, 0x04,\n  0x92, 0x04, 0x92, 0x04, 0x90, 0x04, 0x8b, 0x04, 0x8b, 0x04, 0x87, 0x04,\n  0x87, 0x04, 0x86, 0x04, 0x86, 0x04, 0x82, 0x04, 0x7f, 0x04, 0x7f, 0x04,\n  0x7b, 0x04, 0x7b, 0x04, 0x77, 0x04, 0x77, 0x04, 0x73, 0x04, 0x6f, 0x04,\n  0x6f, 0x04, 0x6c, 0x04, 0x6b, 0x04, 0x67, 0x04, 0x64, 0x04, 0x62, 0x04,\n  0x5e, 0x04, 0x5b, 0x04, 0x58, 0x04, 0x54, 0x04, 0x56, 0x04, 0x52, 0x04,\n  0x4b, 0x04, 0x4a, 0x04, 0x4a, 0x04, 0x43, 0x04, 0x3f, 0x04, 0x3a, 0x04,\n  0x3b, 0x04, 0x37, 0x04, 0x33, 0x04, 0x2f, 0x04, 0x27, 0x04, 0x28, 0x04,\n  0x26, 0x04, 0x1f, 0x04, 0x1b, 0x04, 0x1a, 0x04, 0x16, 0x04, 0x13, 0x04,\n  0x0e, 0x04, 0x07, 0x04, 0x07, 0x04, 0x02, 0x04, 0xfb, 0x03, 0xf9, 0x03,\n  0xf5, 0x03, 0xef, 0x03, 0xed, 0x03, 0xe7, 0x03, 0xe1, 0x03, 0xdf, 0x03,\n  0xdb, 0x03, 0xd3, 0x03, 0xd1, 0x03, 0xcb, 0x03, 0xc5, 0x03, 0xc3, 0x03,\n  0xbd, 0x03, 0xb9, 0x03, 0xb3, 0x03, 0xad, 0x03, 0xa9, 0x03, 0xa5, 0x03,\n  0xa1, 0x03, 0x9b, 0x03, 0x95, 0x03, 0x8f, 0x03, 0x89, 0x03, 0x85, 0x03,\n  0x7d, 0x03, 0x79, 0x03, 0x75, 0x03, 0x71, 0x03, 0x6b, 0x03, 0x65, 0x03,\n  0x63, 0x03, 0x59, 0x03, 0x53, 0x03, 0x51, 0x03, 0x47, 0x03, 0x43, 0x03,\n  0x3d, 0x03, 0x39, 0x03, 0x33, 0x03, 0x2b, 0x03, 0x27, 0x03, 0x1f, 0x03,\n  0x19, 0x03, 0x13, 0x03, 0x0b, 0x03, 0x09, 0x03, 0x03, 0x03, 0xfd, 0x02,\n  0xf3, 0x02, 0xed, 0x02, 0xe7, 0x02, 0xe3, 0x02, 0xdd, 0x02, 0xd3, 0x02,\n  0xd1, 0x02, 0xc7, 0x02, 0xc3, 0x02, 0xbd, 0x02, 0xb5, 0x02, 0xb1, 0x02,\n  0xa7, 0x02, 0x9f, 0x02, 0x9b, 0x02, 0x93, 0x02, 0x8f, 0x02, 0x85, 0x02,\n  0x81, 0x02, 0x7b, 0x02, 0x71, 0x02, 0x6b, 0x02, 0x63, 0x02, 0x5d, 0x02,\n  0x57, 0x02, 0x4f, 0x02, 0x4b, 0x02, 0x43, 0x02, 0x39, 0x02, 0x33, 0x02,\n  0x2d, 0x02, 0x25, 0x02, 0x21, 0x02, 0x15, 0x02, 0x0f, 0x02, 0x09, 0x02,\n  0x01, 0x02, 0xfa, 0x01, 0xf4, 0x01, 0xeb, 0x01, 0xe4, 0x01, 0xdc, 0x01,\n  0xd6, 0x01, 0xcd, 0x01, 0xc6, 0x01, 0xc0, 0x01, 0xb5, 0x01, 0xb2, 0x01,\n  0xa9, 0x01, 0xa2, 0x01, 0x9c, 0x01, 0x91, 0x01, 0x88, 0x01, 0x84, 0x01,\n  0x79, 0x01, 0x78, 0x01, 0x6f, 0x01, 0x64, 0x01, 0x5e, 0x01, 0x57, 0x01,\n  0x4e, 0x01, 0x45, 0x01, 0x40, 0x01, 0x37, 0x01, 0x31, 0x01, 0x28, 0x01,\n  0x21, 0x01, 0x19, 0x01, 0x10, 0x01, 0x0a, 0x01, 0x04, 0x01, 0xfa, 0x00,\n  0xf4, 0x00, 0xe9, 0x00, 0xe5, 0x00, 0xda, 0x00, 0xd1, 0x00, 0xcd, 0x00,\n  0xc4, 0x00, 0xbe, 0x00, 0xb5, 0x00, 0xad, 0x00, 0xa7, 0x00, 0x9d, 0x00,\n  0x95, 0x00, 0x8f, 0x00, 0x89, 0x00, 0x7d, 0x00, 0x76, 0x00, 0x6e, 0x00,\n  0x68, 0x00, 0x5e, 0x00, 0x59, 0x00, 0x50, 0x00, 0x49, 0x00, 0x40, 0x00,\n  0x38, 0x00, 0x32, 0x00, 0x2b, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x16, 0x00,\n  0x0b, 0x00, 0x02, 0x00, 0xff, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xe6, 0xff,\n  0xde, 0xff, 0xd7, 0xff, 0xce, 0xff, 0xc9, 0xff, 0xc0, 0xff, 0xb9, 0xff,\n  0xb4, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0x9b, 0xff, 0x95, 0xff, 0x8d, 0xff,\n  0x83, 0xff, 0x7d, 0xff, 0x75, 0xff, 0x6c, 0xff, 0x63, 0xff, 0x5f, 0xff,\n  0x57, 0xff, 0x4d, 0xff, 0x4a, 0xff, 0x41, 0xff, 0x36, 0xff, 0x30, 0xff,\n  0x2a, 0xff, 0x24, 0xff, 0x1b, 0xff, 0x12, 0xff, 0x0b, 0xff, 0x05, 0xff,\n  0xfd, 0xfe, 0xf6, 0xfe, 0xf0, 0xfe, 0xe8, 0xfe, 0xdf, 0xfe, 0xdb, 0xfe,\n  0xd0, 0xfe, 0xca, 0xfe, 0xc7, 0xfe, 0xbd, 0xfe, 0xb7, 0xfe, 0xae, 0xfe,\n  0xa8, 0xfe, 0xa3, 0xfe, 0x9a, 0xfe, 0x94, 0xfe, 0x8d, 0xfe, 0x84, 0xfe,\n  0x81, 0xfe, 0x78, 0xfe, 0x70, 0xfe, 0x67, 0xfe, 0x60, 0xfe, 0x5d, 0xfe,\n  0x55, 0xfe, 0x4f, 0xfe, 0x48, 0xfe, 0x3f, 0xfe, 0x3d, 0xfe, 0x31, 0xfe,\n  0x31, 0xfe, 0x28, 0xfe, 0x1f, 0xfe, 0x1c, 0xfe, 0x13, 0xfe, 0x0c, 0xfe,\n  0x06, 0xfe, 0x03, 0xfe, 0xf7, 0xfd, 0xf1, 0xfd, 0xef, 0xfd, 0xe7, 0xfd,\n  0xdf, 0xfd, 0xdd, 0xfd, 0xd3, 0xfd, 0xcd, 0xfd, 0xc7, 0xfd, 0xc7, 0xfd,\n  0xbb, 0xfd, 0xb3, 0xfd, 0xb1, 0xfd, 0xa9, 0xfd, 0xa3, 0xfd, 0x9d, 0xfd,\n  0x97, 0xfd, 0x93, 0xfd, 0x8f, 0xfd, 0x85, 0xfd, 0x83, 0xfd, 0x79, 0xfd,\n  0x77, 0xfd, 0x71, 0xfd, 0x6b, 0xfd, 0x67, 0xfd, 0x5f, 0xfd, 0x5b, 0xfd,\n  0x55, 0xfd, 0x51, 0xfd, 0x49, 0xfd, 0x49, 0xfd, 0x41, 0xfd, 0x3b, 0xfd,\n  0x37, 0xfd, 0x31, 0xfd, 0x2f, 0xfd, 0x29, 0xfd, 0x21, 0xfd, 0x1f, 0xfd,\n  0x19, 0xfd, 0x13, 0xfd, 0x0f, 0xfd, 0x0b, 0xfd, 0x07, 0xfd, 0x01, 0xfd,\n  0xff, 0xfc, 0xf5, 0xfc, 0xf3, 0xfc, 0xef, 0xfc, 0xeb, 0xfc, 0xe5, 0xfc,\n  0xe1, 0xfc, 0xdd, 0xfc, 0xd7, 0xfc, 0xd5, 0xfc, 0xd1, 0xfc, 0xcf, 0xfc,\n  0xc7, 0xfc, 0xc5, 0xfc, 0xbf, 0xfc, 0xbd, 0xfc, 0xb7, 0xfc, 0xb5, 0xfc,\n  0xb3, 0xfc, 0xad, 0xfc, 0xa7, 0xfc, 0xa5, 0xfc, 0xa1, 0xfc, 0x9d, 0xfc,\n  0x9b, 0xfc, 0x95, 0xfc, 0x93, 0xfc, 0x8f, 0xfc, 0x89, 0xfc, 0x89, 0xfc,\n  0x87, 0xfc, 0x81, 0xfc, 0x81, 0xfc, 0x7d, 0xfc, 0x77, 0xfc, 0x77, 0xfc,\n  0x73, 0xfc, 0x71, 0xfc, 0x6b, 0xfc, 0x6b, 0xfc, 0x67, 0xfc, 0x65, 0xfc,\n  0x63, 0xfc, 0x5d, 0xfc, 0x5d, 0xfc, 0x59, 0xfc, 0x55, 0xfc, 0x55, 0xfc,\n  0x51, 0xfc, 0x4d, 0xfc, 0x4d, 0xfc, 0x49, 0xfc, 0x49, 0xfc, 0x47, 0xfc,\n  0x47, 0xfc, 0x3d, 0xfc, 0x43, 0xfc, 0x37, 0xfc, 0x3d, 0xfc, 0x3b, 0xfc,\n  0x35, 0xfc, 0x3b, 0xfc, 0x31, 0xfc, 0x35, 0xfc, 0x35, 0xfc, 0x2f, 0xfc,\n  0x2f, 0xfc, 0x2f, 0xfc, 0x29, 0xfc, 0x27, 0xfc, 0x29, 0xfc, 0x29, 0xfc,\n  0x23, 0xfc, 0x27, 0xfc, 0x25, 0xfc, 0x23, 0xfc, 0x1d, 0xfc, 0x21, 0xfc,\n  0x23, 0xfc, 0x1d, 0xfc, 0x1b, 0xfc, 0x1d, 0xfc, 0x1f, 0xfc, 0x19, 0xfc,\n  0x1d, 0xfc, 0x17, 0xfc, 0x17, 0xfc, 0x1b, 0xfc, 0x1b, 0xfc, 0x17, 0xfc,\n  0x15, 0xfc, 0x15, 0xfc, 0x15, 0xfc, 0x19, 0xfc, 0x17, 0xfc, 0x17, 0xfc,\n  0x17, 0xfc, 0x11, 0xfc, 0x15, 0xfc, 0x15, 0xfc, 0x17, 0xfc, 0x17, 0xfc,\n  0x19, 0xfc, 0x17, 0xfc, 0x17, 0xfc, 0x17, 0xfc, 0x17, 0xfc, 0x1d, 0xfc,\n  0x1b, 0xfc, 0x1d, 0xfc, 0x1b, 0xfc, 0x17, 0xfc, 0x1d, 0xfc, 0x1d, 0xfc,\n  0x1d, 0xfc, 0x21, 0xfc, 0x1f, 0xfc, 0x19, 0xfc, 0x21, 0xfc, 0x23, 0xfc,\n  0x25, 0xfc, 0x29, 0xfc, 0x1f, 0xfc, 0x27, 0xfc, 0x29, 0xfc, 0x2b, 0xfc,\n  0x29, 0xfc, 0x2b, 0xfc, 0x2d, 0xfc, 0x33, 0xfc, 0x33, 0xfc, 0x2f, 0xfc,\n  0x37, 0xfc, 0x39, 0xfc, 0x37, 0xfc, 0x35, 0xfc, 0x41, 0xfc, 0x41, 0xfc,\n  0x3f, 0xfc, 0x45, 0xfc, 0x45, 0xfc, 0x3f, 0xfc, 0x4d, 0xfc, 0x49, 0xfc,\n  0x47, 0xfc, 0x51, 0xfc, 0x4d, 0xfc, 0x53, 0xfc, 0x53, 0xfc, 0x55, 0xfc,\n  0x5d, 0xfc, 0x59, 0xfc, 0x61, 0xfc, 0x5f, 0xfc, 0x65, 0xfc, 0x65, 0xfc,\n  0x6b, 0xfc, 0x6b, 0xfc, 0x6f, 0xfc, 0x71, 0xfc, 0x77, 0xfc, 0x77, 0xfc,\n  0x7d, 0xfc, 0x7d, 0xfc, 0x81, 0xfc, 0x85, 0xfc, 0x85, 0xfc, 0x89, 0xfc,\n  0x8d, 0xfc, 0x91, 0xfc, 0x95, 0xfc, 0x95, 0xfc, 0x9b, 0xfc, 0x9f, 0xfc,\n  0x9f, 0xfc, 0xa5, 0xfc, 0xa9, 0xfc, 0xa7, 0xfc, 0xaf, 0xfc, 0xb9, 0xfc,\n  0xb9, 0xfc, 0xb9, 0xfc, 0xbf, 0xfc, 0xc3, 0xfc, 0xc5, 0xfc, 0xc9, 0xfc,\n  0xcb, 0xfc, 0xd3, 0xfc, 0xd5, 0xfc, 0xd9, 0xfc, 0xdd, 0xfc, 0xe3, 0xfc,\n  0xe7, 0xfc, 0xe9, 0xfc, 0xef, 0xfc, 0xf5, 0xfc, 0xfb, 0xfc, 0xfb, 0xfc,\n  0x01, 0xfd, 0x03, 0xfd, 0x07, 0xfd, 0x0d, 0xfd, 0x13, 0xfd, 0x13, 0xfd,\n  0x1d, 0xfd, 0x1f, 0xfd, 0x23, 0xfd, 0x2b, 0xfd, 0x2b, 0xfd, 0x31, 0xfd,\n  0x37, 0xfd, 0x39, 0xfd, 0x3d, 0xfd, 0x45, 0xfd, 0x49, 0xfd, 0x4d, 0xfd,\n  0x53, 0xfd, 0x59, 0xfd, 0x5d, 0xfd, 0x65, 0xfd, 0x67, 0xfd, 0x6b, 0xfd,\n  0x73, 0xfd, 0x77, 0xfd, 0x7b, 0xfd, 0x7f, 0xfd, 0x85, 0xfd, 0x8b, 0xfd,\n  0x91, 0xfd, 0x95, 0xfd, 0x9d, 0xfd, 0xa3, 0xfd, 0xa5, 0xfd, 0xaf, 0xfd,\n  0xaf, 0xfd, 0xb7, 0xfd, 0xbb, 0xfd, 0xc1, 0xfd, 0xc7, 0xfd, 0xcd, 0xfd,\n  0xd3, 0xfd, 0xd7, 0xfd, 0xdd, 0xfd, 0xe3, 0xfd, 0xe9, 0xfd, 0xef, 0xfd,\n  0xf1, 0xfd, 0xfb, 0xfd, 0x03, 0xfe, 0x06, 0xfe, 0x0a, 0xfe, 0x12, 0xfe,\n  0x18, 0xfe, 0x1e, 0xfe, 0x24, 0xfe, 0x27, 0xfe, 0x2d, 0xfe, 0x36, 0xfe,\n  0x3a, 0xfe, 0x43, 0xfe, 0x45, 0xfe, 0x4e, 0xfe, 0x52, 0xfe, 0x57, 0xfe,\n  0x60, 0xfe, 0x61, 0xfe, 0x6c, 0xfe, 0x6d, 0xfe, 0x76, 0xfe, 0x7c, 0xfe,\n  0x81, 0xfe, 0x88, 0xfe, 0x8e, 0xfe, 0x96, 0xfe, 0x99, 0xfe, 0xa0, 0xfe,\n  0xa8, 0xfe, 0xab, 0xfe, 0xb4, 0xfe, 0xb7, 0xfe, 0xc0, 0xfe, 0xc4, 0xfe,\n  0xcc, 0xfe, 0xd3, 0xfe, 0xd6, 0xfe, 0xde, 0xfe, 0xe5, 0xfe, 0xea, 0xfe,\n  0xf0, 0xfe, 0xf9, 0xfe, 0xfd, 0xfe, 0x05, 0xff, 0x0b, 0xff, 0x0f, 0xff,\n  0x17, 0xff, 0x1b, 0xff, 0x24, 0xff, 0x24, 0xff, 0x2f, 0xff, 0x33, 0xff,\n  0x3c, 0xff, 0x44, 0xff, 0x48, 0xff, 0x51, 0xff, 0x54, 0xff, 0x5d, 0xff,\n  0x62, 0xff, 0x6b, 0xff, 0x6e, 0xff, 0x75, 0xff, 0x7d, 0xff, 0x81, 0xff,\n  0x87, 0xff, 0x90, 0xff, 0x95, 0xff, 0x9b, 0xff, 0xa2, 0xff, 0xa7, 0xff,\n  0xb1, 0xff, 0xb4, 0xff, 0xba, 0xff, 0xc2, 0xff, 0xc9, 0xff, 0xd1, 0xff,\n  0xd2, 0xff, 0xd8, 0xff, 0xe0, 0xff, 0xe7, 0xff, 0xed, 0xff, 0xf3, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0x07, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x17, 0x00,\n  0x1f, 0x00, 0x26, 0x00, 0x2c, 0x00, 0x31, 0x00, 0x38, 0x00, 0x3e, 0x00,\n  0x44, 0x00, 0x4a, 0x00, 0x4d, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x62, 0x00,\n  0x6b, 0x00, 0x6d, 0x00, 0x74, 0x00, 0x7c, 0x00, 0x82, 0x00, 0x85, 0x00,\n  0x8e, 0x00, 0x92, 0x00, 0x9b, 0x00, 0x9e, 0x00, 0xa7, 0x00, 0xad, 0x00,\n  0xb3, 0x00, 0xb6, 0x00, 0xbe, 0x00, 0xc2, 0x00, 0xca, 0x00, 0xd0, 0x00,\n  0xd4, 0x00, 0xd9, 0x00, 0xe2, 0x00, 0xe5, 0x00, 0xee, 0x00, 0xf4, 0x00,\n  0xf7, 0x00, 0x00, 0x01, 0x03, 0x01, 0x07, 0x01, 0x0f, 0x01, 0x15, 0x01,\n  0x1b, 0x01, 0x1f, 0x01, 0x24, 0x01, 0x2d, 0x01, 0x31, 0x01, 0x37, 0x01,\n  0x3d, 0x01, 0x3f, 0x01, 0x46, 0x01, 0x4c, 0x01, 0x54, 0x01, 0x57, 0x01,\n  0x5d, 0x01, 0x61, 0x01, 0x69, 0x01, 0x6f, 0x01, 0x73, 0x01, 0x78, 0x01,\n  0x7b, 0x01, 0x82, 0x01, 0x84, 0x01, 0x90, 0x01, 0x91, 0x01, 0x97, 0x01,\n  0x9c, 0x01, 0xa2, 0x01, 0xa8, 0x01, 0xab, 0x01, 0xaf, 0x01, 0xb7, 0x01,\n  0xba, 0x01, 0xbd, 0x01, 0xc6, 0x01, 0xc9, 0x01, 0xcd, 0x01, 0xd3, 0x01,\n  0xd9, 0x01, 0xdc, 0x01, 0xe2, 0x01, 0xe7, 0x01, 0xea, 0x01, 0xf1, 0x01,\n  0xf4, 0x01, 0xf7, 0x01, 0xfc, 0x01, 0x03, 0x02, 0x09, 0x02, 0x09, 0x02,\n  0x11, 0x02, 0x15, 0x02, 0x19, 0x02, 0x1f, 0x02, 0x1f, 0x02, 0x27, 0x02,\n  0x29, 0x02, 0x31, 0x02, 0x35, 0x02, 0x33, 0x02, 0x37, 0x02, 0x3d, 0x02,\n  0x41, 0x02, 0x45, 0x02, 0x4b, 0x02, 0x4b, 0x02, 0x51, 0x02, 0x57, 0x02,\n  0x59, 0x02, 0x5f, 0x02, 0x61, 0x02, 0x65, 0x02, 0x67, 0x02, 0x6d, 0x02,\n  0x6f, 0x02, 0x73, 0x02, 0x77, 0x02, 0x79, 0x02, 0x81, 0x02, 0x81, 0x02,\n  0x85, 0x02, 0x87, 0x02, 0x8b, 0x02, 0x8f, 0x02, 0x93, 0x02, 0x95, 0x02,\n  0x9b, 0x02, 0x9d, 0x02, 0x9f, 0x02, 0xa1, 0x02, 0xa5, 0x02, 0xa7, 0x02,\n  0xab, 0x02, 0xaf, 0x02, 0xb1, 0x02, 0xb3, 0x02, 0xb7, 0x02, 0xb7, 0x02,\n  0xbf, 0x02, 0xbd, 0x02, 0xc1, 0x02, 0xc3, 0x02, 0xc9, 0x02, 0xcb, 0x02,\n  0xcb, 0x02, 0xcf, 0x02, 0xcf, 0x02, 0xd5, 0x02, 0xd5, 0x02, 0xd9, 0x02,\n  0xdb, 0x02, 0xdd, 0x02, 0xdd, 0x02, 0xe3, 0x02, 0xe1, 0x02, 0xe7, 0x02,\n  0xe9, 0x02, 0xe9, 0x02, 0xed, 0x02, 0xed, 0x02, 0xef, 0x02, 0xef, 0x02,\n  0xf3, 0x02, 0xf5, 0x02, 0xf7, 0x02, 0xf9, 0x02, 0xfb, 0x02, 0xf9, 0x02,\n  0xff, 0x02, 0xff, 0x02, 0xff, 0x02, 0xff, 0x02, 0x05, 0x03, 0x05, 0x03,\n  0x05, 0x03, 0x07, 0x03, 0x07, 0x03, 0x07, 0x03, 0x0b, 0x03, 0x0b, 0x03,\n  0x0d, 0x03, 0x0f, 0x03, 0x11, 0x03, 0x0f, 0x03, 0x11, 0x03, 0x11, 0x03,\n  0x13, 0x03, 0x13, 0x03, 0x13, 0x03, 0x17, 0x03, 0x15, 0x03, 0x17, 0x03,\n  0x17, 0x03, 0x17, 0x03, 0x19, 0x03, 0x19, 0x03, 0x19, 0x03, 0x17, 0x03,\n  0x1b, 0x03, 0x1d, 0x03, 0x1b, 0x03, 0x1b, 0x03, 0x17, 0x03, 0x1b, 0x03,\n  0x19, 0x03, 0x19, 0x03, 0x1b, 0x03, 0x1b, 0x03, 0x1d, 0x03, 0x19, 0x03,\n  0x1d, 0x03, 0x1b, 0x03, 0x19, 0x03, 0x1d, 0x03, 0x1b, 0x03, 0x17, 0x03,\n  0x19, 0x03, 0x19, 0x03, 0x17, 0x03, 0x17, 0x03, 0x17, 0x03, 0x15, 0x03,\n  0x17, 0x03, 0x17, 0x03, 0x17, 0x03, 0x11, 0x03, 0x13, 0x03, 0x11, 0x03,\n  0x11, 0x03, 0x11, 0x03, 0x0f, 0x03, 0x11, 0x03, 0x0b, 0x03, 0x0d, 0x03,\n  0x0b, 0x03, 0x0b, 0x03, 0x09, 0x03, 0x07, 0x03, 0x05, 0x03, 0x05, 0x03,\n  0x05, 0x03, 0xff, 0x02, 0x05, 0x03, 0xff, 0x02, 0xff, 0x02, 0xff, 0x02,\n  0xf9, 0x02, 0xfb, 0x02, 0xf9, 0x02, 0xf7, 0x02, 0xf5, 0x02, 0xf3, 0x02,\n  0xef, 0x02, 0xef, 0x02, 0xf1, 0x02, 0xed, 0x02, 0xed, 0x02, 0xe7, 0x02,\n  0xe7, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xdd, 0x02, 0xe1, 0x02, 0xdb, 0x02,\n  0xd9, 0x02, 0xd7, 0x02, 0xd3, 0x02, 0xd5, 0x02, 0xcf, 0x02, 0xcf, 0x02,\n  0xc9, 0x02, 0xc9, 0x02, 0xc7, 0x02, 0xc3, 0x02, 0xc3, 0x02, 0xc1, 0x02,\n  0xbd, 0x02, 0xb9, 0x02, 0xb9, 0x02, 0xb5, 0x02, 0xb3, 0x02, 0xaf, 0x02,\n  0xad, 0x02, 0xab, 0x02, 0xa5, 0x02, 0xa5, 0x02, 0xa1, 0x02, 0x9d, 0x02,\n  0x9b, 0x02, 0x95, 0x02, 0x93, 0x02, 0x93, 0x02, 0x8d, 0x02, 0x8d, 0x02,\n  0x87, 0x02, 0x85, 0x02, 0x81, 0x02, 0x7f, 0x02, 0x7d, 0x02, 0x79, 0x02,\n  0x75, 0x02, 0x75, 0x02, 0x6d, 0x02, 0x6b, 0x02, 0x6b, 0x02, 0x63, 0x02,\n  0x63, 0x02, 0x5d, 0x02, 0x57, 0x02, 0x57, 0x02, 0x51, 0x02, 0x4d, 0x02,\n  0x47, 0x02, 0x45, 0x02, 0x45, 0x02, 0x3f, 0x02, 0x3d, 0x02, 0x35, 0x02,\n  0x33, 0x02, 0x31, 0x02, 0x2d, 0x02, 0x2b, 0x02, 0x21, 0x02, 0x23, 0x02,\n  0x1d, 0x02, 0x1b, 0x02, 0x13, 0x02, 0x11, 0x02, 0x0d, 0x02, 0x03, 0x02,\n  0x07, 0x02, 0xfd, 0x01, 0xfa, 0x01, 0xf6, 0x01, 0xf0, 0x01, 0xf0, 0x01,\n  0xeb, 0x01, 0xe4, 0x01, 0xe2, 0x01, 0xdc, 0x01, 0xd8, 0x01, 0xd3, 0x01,\n  0xcf, 0x01, 0xcd, 0x01, 0xc7, 0x01, 0xc1, 0x01, 0xc1, 0x01, 0xbb, 0x01,\n  0xb5, 0x01, 0xb1, 0x01, 0xac, 0x01, 0xa8, 0x01, 0xa2, 0x01, 0x9d, 0x01,\n  0x97, 0x01, 0x97, 0x01, 0x8e, 0x01, 0x8d, 0x01, 0x8a, 0x01, 0x7f, 0x01,\n  0x7e, 0x01, 0x7b, 0x01, 0x75, 0x01, 0x70, 0x01, 0x6a, 0x01, 0x64, 0x01,\n  0x63, 0x01, 0x5b, 0x01, 0x55, 0x01, 0x55, 0x01, 0x4c, 0x01, 0x49, 0x01,\n  0x45, 0x01, 0x3d, 0x01, 0x3a, 0x01, 0x36, 0x01, 0x30, 0x01, 0x2d, 0x01,\n  0x24, 0x01, 0x24, 0x01, 0x1b, 0x01, 0x18, 0x01, 0x13, 0x01, 0x0c, 0x01,\n  0x0d, 0x01, 0x00, 0x01, 0x00, 0x01, 0xf8, 0x00, 0xf5, 0x00, 0xf2, 0x00,\n  0xe8, 0x00, 0xe6, 0x00, 0xe2, 0x00, 0xdc, 0x00, 0xd7, 0x00, 0xd0, 0x00,\n  0xc8, 0x00, 0xca, 0x00, 0xc1, 0x00, 0xbc, 0x00, 0xb8, 0x00, 0xb5, 0x00,\n  0xad, 0x00, 0xa7, 0x00, 0xa4, 0x00, 0x9b, 0x00, 0x9a, 0x00, 0x94, 0x00,\n  0x8c, 0x00, 0x8c, 0x00, 0x83, 0x00, 0x80, 0x00, 0x79, 0x00, 0x73, 0x00,\n  0x6e, 0x00, 0x6a, 0x00, 0x64, 0x00, 0x5f, 0x00, 0x5b, 0x00, 0x55, 0x00,\n  0x50, 0x00, 0x4a, 0x00, 0x44, 0x00, 0x41, 0x00, 0x3d, 0x00, 0x34, 0x00,\n  0x31, 0x00, 0x2c, 0x00, 0x25, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x16, 0x00,\n  0x10, 0x00, 0x11, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff,\n  0xf3, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xd8, 0xff,\n  0xd5, 0xff, 0xd1, 0xff, 0xc9, 0xff, 0xc6, 0xff, 0xbf, 0xff, 0xbc, 0xff,\n  0xb4, 0xff, 0xb0, 0xff, 0xab, 0xff, 0xa7, 0xff, 0xa5, 0xff, 0x9b, 0xff,\n  0x96, 0xff, 0x95, 0xff, 0x8d, 0xff, 0x89, 0xff, 0x84, 0xff, 0x80, 0xff,\n  0x78, 0xff, 0x77, 0xff, 0x71, 0xff, 0x6b, 0xff, 0x68, 0xff, 0x62, 0xff,\n  0x5f, 0xff, 0x57, 0xff, 0x54, 0xff, 0x4d, 0xff, 0x47, 0xff, 0x44, 0xff,\n  0x3f, 0xff, 0x3c, 0xff, 0x35, 0xff, 0x32, 0xff, 0x2c, 0xff, 0x26, 0xff,\n  0x26, 0xff, 0x20, 0xff, 0x1a, 0xff, 0x15, 0xff, 0x11, 0xff, 0x0b, 0xff,\n  0x05, 0xff, 0x03, 0xff, 0xff, 0xfe, 0xf6, 0xfe, 0xf4, 0xfe, 0xee, 0xfe,\n  0xea, 0xfe, 0xe5, 0xfe, 0xe1, 0xfe, 0xde, 0xfe, 0xd9, 0xfe, 0xd3, 0xfe,\n  0xcf, 0xfe, 0xcf, 0xfe, 0xc7, 0xfe, 0xc3, 0xfe, 0xc0, 0xfe, 0xbb, 0xfe,\n  0xb8, 0xfe, 0xb1, 0xfe, 0xae, 0xfe, 0xa8, 0xfe, 0xa6, 0xfe, 0xa0, 0xfe,\n  0x9f, 0xfe, 0x97, 0xfe, 0x91, 0xfe, 0x91, 0xfe, 0x8b, 0xfe, 0x8a, 0xfe,\n  0x82, 0xfe, 0x84, 0xfe, 0x78, 0xfe, 0x79, 0xfe, 0x73, 0xfe, 0x70, 0xfe,\n  0x6f, 0xfe, 0x67, 0xfe, 0x64, 0xfe, 0x60, 0xfe, 0x5d, 0xfe, 0x5a, 0xfe,\n  0x52, 0xfe, 0x51, 0xfe, 0x4e, 0xfe, 0x49, 0xfe, 0x45, 0xfe, 0x40, 0xfe,\n  0x3c, 0xfe, 0x3c, 0xfe, 0x37, 0xfe, 0x34, 0xfe, 0x31, 0xfe, 0x2e, 0xfe,\n  0x28, 0xfe, 0x24, 0xfe, 0x24, 0xfe, 0x1f, 0xfe, 0x19, 0xfe, 0x18, 0xfe,\n  0x13, 0xfe, 0x10, 0xfe, 0x0d, 0xfe, 0x09, 0xfe, 0x07, 0xfe, 0x03, 0xfe,\n  0x03, 0xfe, 0xfb, 0xfd, 0xf9, 0xfd, 0xf9, 0xfd, 0xf1, 0xfd, 0xf3, 0xfd,\n  0xeb, 0xfd, 0xe9, 0xfd, 0xe9, 0xfd, 0xe7, 0xfd, 0xe5, 0xfd, 0xdf, 0xfd,\n  0xdf, 0xfd, 0xd9, 0xfd, 0xd3, 0xfd, 0xd5, 0xfd, 0xd3, 0xfd, 0xcd, 0xfd,\n  0xcd, 0xfd, 0xc9, 0xfd, 0xc7, 0xfd, 0xc3, 0xfd, 0xc1, 0xfd, 0xbf, 0xfd,\n  0xbd, 0xfd, 0xbb, 0xfd, 0xb5, 0xfd, 0xb5, 0xfd, 0xb5, 0xfd, 0xb1, 0xfd,\n  0xaf, 0xfd, 0xa9, 0xfd, 0xa9, 0xfd, 0xa5, 0xfd, 0xa5, 0xfd, 0xa3, 0xfd,\n  0x9f, 0xfd, 0xa1, 0xfd, 0x9d, 0xfd, 0x9d, 0xfd, 0x9b, 0xfd, 0x97, 0xfd,\n  0x97, 0xfd, 0x93, 0xfd, 0x93, 0xfd, 0x8f, 0xfd, 0x8b, 0xfd, 0x8f, 0xfd,\n  0x89, 0xfd, 0x89, 0xfd, 0x87, 0xfd, 0x85, 0xfd, 0x83, 0xfd, 0x83, 0xfd,\n  0x81, 0xfd, 0x7f, 0xfd, 0x81, 0xfd, 0x7d, 0xfd, 0x7b, 0xfd, 0x7d, 0xfd,\n  0x79, 0xfd, 0x79, 0xfd, 0x77, 0xfd, 0x77, 0xfd, 0x73, 0xfd, 0x75, 0xfd,\n  0x75, 0xfd, 0x71, 0xfd, 0x6d, 0xfd, 0x6d, 0xfd, 0x6b, 0xfd, 0x6d, 0xfd,\n  0x6b, 0xfd, 0x6d, 0xfd, 0x69, 0xfd, 0x67, 0xfd, 0x6b, 0xfd, 0x67, 0xfd,\n  0x67, 0xfd, 0x65, 0xfd, 0x69, 0xfd, 0x65, 0xfd, 0x63, 0xfd, 0x63, 0xfd,\n  0x63, 0xfd, 0x63, 0xfd, 0x61, 0xfd, 0x5f, 0xfd, 0x61, 0xfd, 0x5f, 0xfd,\n  0x61, 0xfd, 0x61, 0xfd, 0x5f, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x61, 0xfd,\n  0x5f, 0xfd, 0x61, 0xfd, 0x5f, 0xfd, 0x61, 0xfd, 0x5d, 0xfd, 0x61, 0xfd,\n  0x61, 0xfd, 0x5f, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x5f, 0xfd,\n  0x61, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x67, 0xfd, 0x61, 0xfd,\n  0x65, 0xfd, 0x65, 0xfd, 0x63, 0xfd, 0x63, 0xfd, 0x67, 0xfd, 0x67, 0xfd,\n  0x67, 0xfd, 0x6d, 0xfd, 0x67, 0xfd, 0x6b, 0xfd, 0x67, 0xfd, 0x69, 0xfd,\n  0x69, 0xfd, 0x6b, 0xfd, 0x6d, 0xfd, 0x6d, 0xfd, 0x73, 0xfd, 0x6f, 0xfd,\n  0x71, 0xfd, 0x73, 0xfd, 0x71, 0xfd, 0x77, 0xfd, 0x75, 0xfd, 0x75, 0xfd,\n  0x7b, 0xfd, 0x79, 0xfd, 0x7b, 0xfd, 0x7d, 0xfd, 0x7f, 0xfd, 0x7b, 0xfd,\n  0x7f, 0xfd, 0x81, 0xfd, 0x85, 0xfd, 0x83, 0xfd, 0x87, 0xfd, 0x85, 0xfd,\n  0x89, 0xfd, 0x8b, 0xfd, 0x8b, 0xfd, 0x8f, 0xfd, 0x91, 0xfd, 0x91, 0xfd,\n  0x91, 0xfd, 0x97, 0xfd, 0x97, 0xfd, 0x99, 0xfd, 0x97, 0xfd, 0x9d, 0xfd,\n  0x9d, 0xfd, 0x9f, 0xfd, 0xa5, 0xfd, 0xa1, 0xfd, 0xa9, 0xfd, 0xa9, 0xfd,\n  0xa9, 0xfd, 0xaf, 0xfd, 0xaf, 0xfd, 0xaf, 0xfd, 0xb5, 0xfd, 0xb5, 0xfd,\n  0xb9, 0xfd, 0xbb, 0xfd, 0xbd, 0xfd, 0xc1, 0xfd, 0xc1, 0xfd, 0xc7, 0xfd,\n  0xc5, 0xfd, 0xc7, 0xfd, 0xcd, 0xfd, 0xd1, 0xfd, 0xd3, 0xfd, 0xd1, 0xfd,\n  0xd7, 0xfd, 0xd9, 0xfd, 0xdb, 0xfd, 0xdd, 0xfd, 0xdf, 0xfd, 0xe3, 0xfd,\n  0xe5, 0xfd, 0xe9, 0xfd, 0xeb, 0xfd, 0xed, 0xfd, 0xef, 0xfd, 0xf3, 0xfd,\n  0xf7, 0xfd, 0xfb, 0xfd, 0xfd, 0xfd, 0xff, 0xfd, 0x06, 0xfe, 0x04, 0xfe,\n  0x07, 0xfe, 0x0f, 0xfe, 0x0c, 0xfe, 0x12, 0xfe, 0x12, 0xfe, 0x18, 0xfe,\n  0x1e, 0xfe, 0x1c, 0xfe, 0x21, 0xfe, 0x24, 0xfe, 0x2a, 0xfe, 0x2d, 0xfe,\n  0x2e, 0xfe, 0x33, 0xfe, 0x34, 0xfe, 0x3a, 0xfe, 0x3a, 0xfe, 0x40, 0xfe,\n  0x40, 0xfe, 0x48, 0xfe, 0x4b, 0xfe, 0x4c, 0xfe, 0x51, 0xfe, 0x52, 0xfe,\n  0x55, 0xfe, 0x5b, 0xfe, 0x5e, 0xfe, 0x61, 0xfe, 0x69, 0xfe, 0x67, 0xfe,\n  0x6a, 0xfe, 0x70, 0xfe, 0x73, 0xfe, 0x76, 0xfe, 0x79, 0xfe, 0x7f, 0xfe,\n  0x82, 0xfe, 0x85, 0xfe, 0x8a, 0xfe, 0x8e, 0xfe, 0x94, 0xfe, 0x93, 0xfe,\n  0x9c, 0xfe, 0x9c, 0xfe, 0xa0, 0xfe, 0xa5, 0xfe, 0xa9, 0xfe, 0xac, 0xfe,\n  0xaf, 0xfe, 0xb4, 0xfe, 0xb7, 0xfe, 0xbd, 0xfe, 0xc0, 0xfe, 0xc3, 0xfe,\n  0xc6, 0xfe, 0xcf, 0xfe, 0xd2, 0xfe, 0xd5, 0xfe, 0xd9, 0xfe, 0xd9, 0xfe,\n  0xe2, 0xfe, 0xe4, 0xfe, 0xe7, 0xfe, 0xeb, 0xfe, 0xee, 0xfe, 0xf6, 0xfe,\n  0xf6, 0xfe, 0xff, 0xfe, 0xfd, 0xfe, 0x05, 0xff, 0x08, 0xff, 0x0c, 0xff,\n  0x0e, 0xff, 0x14, 0xff, 0x17, 0xff, 0x1e, 0xff, 0x21, 0xff, 0x24, 0xff,\n  0x29, 0xff, 0x2c, 0xff, 0x33, 0xff, 0x35, 0xff, 0x39, 0xff, 0x3f, 0xff,\n  0x44, 0xff, 0x47, 0xff, 0x4e, 0xff, 0x4d, 0xff, 0x53, 0xff, 0x57, 0xff,\n  0x5d, 0xff, 0x5f, 0xff, 0x62, 0xff, 0x6b, 0xff, 0x6e, 0xff, 0x72, 0xff,\n  0x75, 0xff, 0x78, 0xff, 0x7d, 0xff, 0x81, 0xff, 0x86, 0xff, 0x89, 0xff,\n  0x90, 0xff, 0x90, 0xff, 0x95, 0xff, 0x9b, 0xff, 0x9f, 0xff, 0xa5, 0xff,\n  0xa8, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xb4, 0xff, 0xb9, 0xff, 0xbf, 0xff,\n  0xc2, 0xff, 0xc6, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xd5, 0xff, 0xd7, 0xff,\n  0xd8, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xf0, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0a, 0x00,\n  0x0b, 0x00, 0x11, 0x00, 0x16, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x20, 0x00,\n  0x26, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x32, 0x00, 0x37, 0x00, 0x3a, 0x00,\n  0x41, 0x00, 0x41, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4f, 0x00, 0x52, 0x00,\n  0x55, 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x64, 0x00, 0x68, 0x00, 0x6d, 0x00,\n  0x70, 0x00, 0x73, 0x00, 0x79, 0x00, 0x7c, 0x00, 0x80, 0x00, 0x82, 0x00,\n  0x88, 0x00, 0x8c, 0x00, 0x8e, 0x00, 0x94, 0x00, 0x97, 0x00, 0x9d, 0x00,\n  0x9e, 0x00, 0xa1, 0x00, 0xa7, 0x00, 0xa9, 0x00, 0xb0, 0x00, 0xb2, 0x00,\n  0xb5, 0x00, 0xbc, 0x00, 0xbe, 0x00, 0xc2, 0x00, 0xc4, 0x00, 0xca, 0x00,\n  0xcd, 0x00, 0xd1, 0x00, 0xd3, 0x00, 0xd7, 0x00, 0xda, 0x00, 0xe0, 0x00,\n  0xe2, 0x00, 0xe8, 0x00, 0xeb, 0x00, 0xee, 0x00, 0xf2, 0x00, 0xf4, 0x00,\n  0xf8, 0x00, 0xfd, 0x00, 0x01, 0x01, 0x06, 0x01, 0x07, 0x01, 0x09, 0x01,\n  0x0f, 0x01, 0x10, 0x01, 0x13, 0x01, 0x19, 0x01, 0x18, 0x01, 0x1f, 0x01,\n  0x21, 0x01, 0x22, 0x01, 0x28, 0x01, 0x2d, 0x01, 0x2e, 0x01, 0x33, 0x01,\n  0x39, 0x01, 0x3a, 0x01, 0x3c, 0x01, 0x3f, 0x01, 0x45, 0x01, 0x46, 0x01,\n  0x49, 0x01, 0x4e, 0x01, 0x4c, 0x01, 0x54, 0x01, 0x57, 0x01, 0x58, 0x01,\n  0x5d, 0x01, 0x5e, 0x01, 0x60, 0x01, 0x64, 0x01, 0x69, 0x01, 0x6c, 0x01,\n  0x6c, 0x01, 0x70, 0x01, 0x72, 0x01, 0x75, 0x01, 0x79, 0x01, 0x79, 0x01,\n  0x81, 0x01, 0x81, 0x01, 0x84, 0x01, 0x85, 0x01, 0x87, 0x01, 0x8d, 0x01,\n  0x8d, 0x01, 0x94, 0x01, 0x96, 0x01, 0x96, 0x01, 0x99, 0x01, 0x9a, 0x01,\n  0x9d, 0x01, 0xa0, 0x01, 0xa3, 0x01, 0xa5, 0x01, 0xa8, 0x01, 0xa9, 0x01,\n  0xac, 0x01, 0xaf, 0x01, 0xb1, 0x01, 0xb4, 0x01, 0xb7, 0x01, 0xb7, 0x01,\n  0xbb, 0x01, 0xbd, 0x01, 0xc0, 0x01, 0xc1, 0x01, 0xc3, 0x01, 0xc4, 0x01,\n  0xc9, 0x01, 0xc7, 0x01, 0xcc, 0x01, 0xca, 0x01, 0xcf, 0x01, 0xd0, 0x01,\n  0xd5, 0x01, 0xd3, 0x01, 0xd8, 0x01, 0xd8, 0x01, 0xd9, 0x01, 0xdb, 0x01,\n  0xdc, 0x01, 0xe1, 0x01, 0xe1, 0x01, 0xe5, 0x01, 0xe4, 0x01, 0xe7, 0x01,\n  0xe7, 0x01, 0xe8, 0x01, 0xea, 0x01, 0xee, 0x01, 0xed, 0x01, 0xf0, 0x01,\n  0xf0, 0x01, 0xf0, 0x01, 0xf3, 0x01, 0xf3, 0x01, 0xf9, 0x01, 0xf6, 0x01,\n  0xf7, 0x01, 0xfa, 0x01, 0xfa, 0x01, 0xfc, 0x01, 0xff, 0x01, 0x01, 0x02,\n  0xfd, 0x01, 0x03, 0x02, 0x01, 0x02, 0x01, 0x02, 0x09, 0x02, 0x05, 0x02,\n  0x07, 0x02, 0x09, 0x02, 0x07, 0x02, 0x09, 0x02, 0x09, 0x02, 0x09, 0x02,\n  0x09, 0x02, 0x0b, 0x02, 0x0d, 0x02, 0x09, 0x02, 0x0d, 0x02, 0x0f, 0x02,\n  0x0d, 0x02, 0x11, 0x02, 0x0f, 0x02, 0x13, 0x02, 0x13, 0x02, 0x11, 0x02,\n  0x13, 0x02, 0x15, 0x02, 0x13, 0x02, 0x13, 0x02, 0x15, 0x02, 0x13, 0x02,\n  0x15, 0x02, 0x17, 0x02, 0x15, 0x02, 0x15, 0x02, 0x15, 0x02, 0x15, 0x02,\n  0x15, 0x02, 0x17, 0x02, 0x17, 0x02, 0x15, 0x02, 0x17, 0x02, 0x15, 0x02,\n  0x17, 0x02, 0x15, 0x02, 0x15, 0x02, 0x19, 0x02, 0x15, 0x02, 0x15, 0x02,\n  0x15, 0x02, 0x15, 0x02, 0x15, 0x02, 0x15, 0x02, 0x17, 0x02, 0x13, 0x02,\n  0x15, 0x02, 0x15, 0x02, 0x0f, 0x02, 0x15, 0x02, 0x15, 0x02, 0x11, 0x02,\n  0x11, 0x02, 0x13, 0x02, 0x0f, 0x02, 0x0f, 0x02, 0x0f, 0x02, 0x0f, 0x02,\n  0x0d, 0x02, 0x11, 0x02, 0x09, 0x02, 0x0d, 0x02, 0x0d, 0x02, 0x09, 0x02,\n  0x09, 0x02, 0x07, 0x02, 0x09, 0x02, 0x05, 0x02, 0x09, 0x02, 0x03, 0x02,\n  0x03, 0x02, 0x05, 0x02, 0x03, 0x02, 0xff, 0x01, 0xff, 0x01, 0xfd, 0x01,\n  0xfa, 0x01, 0xfa, 0x01, 0xfd, 0x01, 0xf7, 0x01, 0xf9, 0x01, 0xf9, 0x01,\n  0xf7, 0x01, 0xf4, 0x01, 0xf1, 0x01, 0xf4, 0x01, 0xf0, 0x01, 0xed, 0x01,\n  0xeb, 0x01, 0xee, 0x01, 0xea, 0x01, 0xea, 0x01, 0xe7, 0x01, 0xe5, 0x01,\n  0xe4, 0x01, 0xe5, 0x01, 0xe2, 0x01, 0xdc, 0x01, 0xdf, 0x01, 0xdb, 0x01,\n  0xd9, 0x01, 0xdb, 0x01, 0xd6, 0x01, 0xd6, 0x01, 0xd3, 0x01, 0xd2, 0x01,\n  0xcc, 0x01, 0xd0, 0x01, 0xcd, 0x01, 0xca, 0x01, 0xc7, 0x01, 0xc6, 0x01,\n  0xc4, 0x01, 0xc0, 0x01, 0xbe, 0x01, 0xbd, 0x01, 0xbd, 0x01, 0xba, 0x01,\n  0xb5, 0x01, 0xb5, 0x01, 0xb4, 0x01, 0xb4, 0x01, 0xae, 0x01, 0xaf, 0x01,\n  0xab, 0x01, 0xa8, 0x01, 0xa6, 0x01, 0xa5, 0x01, 0xa3, 0x01, 0xa0, 0x01,\n  0xa0, 0x01, 0x9c, 0x01, 0x9c, 0x01, 0x96, 0x01, 0x93, 0x01, 0x93, 0x01,\n  0x8e, 0x01, 0x8e, 0x01, 0x88, 0x01, 0x88, 0x01, 0x85, 0x01, 0x84, 0x01,\n  0x82, 0x01, 0x7b, 0x01, 0x7c, 0x01, 0x76, 0x01, 0x75, 0x01, 0x73, 0x01,\n  0x72, 0x01, 0x70, 0x01, 0x6c, 0x01, 0x6a, 0x01, 0x63, 0x01, 0x63, 0x01,\n  0x60, 0x01, 0x5b, 0x01, 0x5b, 0x01, 0x58, 0x01, 0x55, 0x01, 0x54, 0x01,\n  0x4f, 0x01, 0x4c, 0x01, 0x49, 0x01, 0x45, 0x01, 0x45, 0x01, 0x42, 0x01,\n  0x3c, 0x01, 0x3a, 0x01, 0x39, 0x01, 0x34, 0x01, 0x31, 0x01, 0x2d, 0x01,\n  0x31, 0x01, 0x28, 0x01, 0x25, 0x01, 0x22, 0x01, 0x1f, 0x01, 0x1c, 0x01,\n  0x1c, 0x01, 0x16, 0x01, 0x12, 0x01, 0x10, 0x01, 0x0d, 0x01, 0x07, 0x01,\n  0x09, 0x01, 0x06, 0x01, 0x00, 0x01, 0x01, 0x01, 0xfb, 0x00, 0xf7, 0x00,\n  0xf4, 0x00, 0xf1, 0x00, 0xec, 0x00, 0xeb, 0x00, 0xe5, 0x00, 0xe5, 0x00,\n  0xe2, 0x00, 0xdd, 0x00, 0xda, 0x00, 0xd6, 0x00, 0xd4, 0x00, 0xce, 0x00,\n  0xce, 0x00, 0xc8, 0x00, 0xc8, 0x00, 0xc4, 0x00, 0xbf, 0x00, 0xbc, 0x00,\n  0xbb, 0x00, 0xb5, 0x00, 0xb0, 0x00, 0xaf, 0x00, 0xaa, 0x00, 0xa7, 0x00,\n  0xa3, 0x00, 0xa1, 0x00, 0x9d, 0x00, 0x9b, 0x00, 0x9a, 0x00, 0x92, 0x00,\n  0x8e, 0x00, 0x8f, 0x00, 0x88, 0x00, 0x88, 0x00, 0x83, 0x00, 0x7d, 0x00,\n  0x79, 0x00, 0x77, 0x00, 0x74, 0x00, 0x70, 0x00, 0x6e, 0x00, 0x6a, 0x00,\n  0x67, 0x00, 0x64, 0x00, 0x61, 0x00, 0x5c, 0x00, 0x58, 0x00, 0x56, 0x00,\n  0x50, 0x00, 0x4f, 0x00, 0x4c, 0x00, 0x46, 0x00, 0x46, 0x00, 0x3e, 0x00,\n  0x40, 0x00, 0x38, 0x00, 0x35, 0x00, 0x34, 0x00, 0x2e, 0x00, 0x2b, 0x00,\n  0x28, 0x00, 0x22, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x16, 0x00,\n  0x10, 0x00, 0x16, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xef, 0xff,\n  0xed, 0xff, 0xe9, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xdd, 0xff, 0xd8, 0xff,\n  0xd8, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xcb, 0xff, 0xc6, 0xff, 0xc5, 0xff,\n  0xc2, 0xff, 0xc2, 0xff, 0xbc, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb3, 0xff,\n  0xab, 0xff, 0xab, 0xff, 0xa8, 0xff, 0xa2, 0xff, 0x9f, 0xff, 0x9e, 0xff,\n  0x99, 0xff, 0x98, 0xff, 0x95, 0xff, 0x8f, 0xff, 0x8c, 0xff, 0x8a, 0xff,\n  0x84, 0xff, 0x83, 0xff, 0x81, 0xff, 0x7b, 0xff, 0x78, 0xff, 0x75, 0xff,\n  0x74, 0xff, 0x6c, 0xff, 0x6c, 0xff, 0x6c, 0xff, 0x66, 0xff, 0x65, 0xff,\n  0x5d, 0xff, 0x5d, 0xff, 0x5a, 0xff, 0x57, 0xff, 0x53, 0xff, 0x4e, 0xff,\n  0x4e, 0xff, 0x4b, 0xff, 0x48, 0xff, 0x47, 0xff, 0x42, 0xff, 0x3e, 0xff,\n  0x3b, 0xff, 0x36, 0xff, 0x38, 0xff, 0x32, 0xff, 0x30, 0xff, 0x2c, 0xff,\n  0x2a, 0xff, 0x24, 0xff, 0x23, 0xff, 0x21, 0xff, 0x1b, 0xff, 0x1b, 0xff,\n  0x17, 0xff, 0x17, 0xff, 0x11, 0xff, 0x0e, 0xff, 0x0b, 0xff, 0x0c, 0xff,\n  0x02, 0xff, 0x05, 0xff, 0x02, 0xff, 0xff, 0xfe, 0xfa, 0xfe, 0xf7, 0xfe,\n  0xf7, 0xfe, 0xf3, 0xfe, 0xf1, 0xfe, 0xee, 0xfe, 0xeb, 0xfe, 0xe8, 0xfe,\n  0xe5, 0xfe, 0xe5, 0xfe, 0xe1, 0xfe, 0xe1, 0xfe, 0xdc, 0xfe, 0xdc, 0xfe,\n  0xd8, 0xfe, 0xd5, 0xfe, 0xd3, 0xfe, 0xcd, 0xfe, 0xcd, 0xfe, 0xcc, 0xfe,\n  0xc6, 0xfe, 0xc9, 0xfe, 0xc3, 0xfe, 0xc3, 0xfe, 0xc1, 0xfe, 0xbb, 0xfe,\n  0xbb, 0xfe, 0xb7, 0xfe, 0xb8, 0xfe, 0xb5, 0xfe, 0xb1, 0xfe, 0xb1, 0xfe,\n  0xac, 0xfe, 0xab, 0xfe, 0xa9, 0xfe, 0xa8, 0xfe, 0xa8, 0xfe, 0xa2, 0xfe,\n  0xa2, 0xfe, 0xa0, 0xfe, 0x9c, 0xfe, 0x9a, 0xfe, 0x9c, 0xfe, 0x94, 0xfe,\n  0x94, 0xfe, 0x94, 0xfe, 0x91, 0xfe, 0x91, 0xfe, 0x8d, 0xfe, 0x8e, 0xfe,\n  0x8a, 0xfe, 0x88, 0xfe, 0x87, 0xfe, 0x85, 0xfe, 0x81, 0xfe, 0x82, 0xfe,\n  0x81, 0xfe, 0x7b, 0xfe, 0x7c, 0xfe, 0x7c, 0xfe, 0x7b, 0xfe, 0x76, 0xfe,\n  0x76, 0xfe, 0x73, 0xfe, 0x75, 0xfe, 0x72, 0xfe, 0x70, 0xfe, 0x6d, 0xfe,\n  0x6c, 0xfe, 0x6c, 0xfe, 0x6a, 0xfe, 0x67, 0xfe, 0x67, 0xfe, 0x64, 0xfe,\n  0x64, 0xfe, 0x60, 0xfe, 0x61, 0xfe, 0x5e, 0xfe, 0x61, 0xfe, 0x5e, 0xfe,\n  0x5d, 0xfe, 0x5d, 0xfe, 0x58, 0xfe, 0x5a, 0xfe, 0x58, 0xfe, 0x58, 0xfe,\n  0x55, 0xfe, 0x55, 0xfe, 0x55, 0xfe, 0x52, 0xfe, 0x52, 0xfe, 0x51, 0xfe,\n  0x4f, 0xfe, 0x4e, 0xfe, 0x4f, 0xfe, 0x4c, 0xfe, 0x4c, 0xfe, 0x4e, 0xfe,\n  0x4b, 0xfe, 0x4b, 0xfe, 0x49, 0xfe, 0x46, 0xfe, 0x4b, 0xfe, 0x46, 0xfe,\n  0x48, 0xfe, 0x45, 0xfe, 0x46, 0xfe, 0x43, 0xfe, 0x46, 0xfe, 0x45, 0xfe,\n  0x42, 0xfe, 0x43, 0xfe, 0x43, 0xfe, 0x43, 0xfe, 0x40, 0xfe, 0x42, 0xfe,\n  0x3f, 0xfe, 0x43, 0xfe, 0x3f, 0xfe, 0x40, 0xfe, 0x42, 0xfe, 0x3f, 0xfe,\n  0x3f, 0xfe, 0x3f, 0xfe, 0x40, 0xfe, 0x40, 0xfe, 0x3f, 0xfe, 0x3d, 0xfe,\n  0x3d, 0xfe, 0x3c, 0xfe, 0x3d, 0xfe, 0x40, 0xfe, 0x3a, 0xfe, 0x3c, 0xfe,\n  0x3f, 0xfe, 0x3a, 0xfe, 0x3d, 0xfe, 0x3d, 0xfe, 0x3f, 0xfe, 0x40, 0xfe,\n  0x3f, 0xfe, 0x3f, 0xfe, 0x3f, 0xfe, 0x40, 0xfe, 0x3f, 0xfe, 0x3f, 0xfe,\n  0x40, 0xfe, 0x40, 0xfe, 0x42, 0xfe, 0x3f, 0xfe, 0x42, 0xfe, 0x43, 0xfe,\n  0x42, 0xfe, 0x43, 0xfe, 0x43, 0xfe, 0x42, 0xfe, 0x45, 0xfe, 0x43, 0xfe,\n  0x45, 0xfe, 0x45, 0xfe, 0x45, 0xfe, 0x48, 0xfe, 0x45, 0xfe, 0x48, 0xfe,\n  0x49, 0xfe, 0x4b, 0xfe, 0x45, 0xfe, 0x48, 0xfe, 0x49, 0xfe, 0x4c, 0xfe,\n  0x4e, 0xfe, 0x4e, 0xfe, 0x4e, 0xfe, 0x4f, 0xfe, 0x4f, 0xfe, 0x4f, 0xfe,\n  0x52, 0xfe, 0x54, 0xfe, 0x55, 0xfe, 0x54, 0xfe, 0x55, 0xfe, 0x57, 0xfe,\n  0x58, 0xfe, 0x58, 0xfe, 0x5a, 0xfe, 0x5b, 0xfe, 0x5b, 0xfe, 0x5e, 0xfe,\n  0x5e, 0xfe, 0x60, 0xfe, 0x60, 0xfe, 0x63, 0xfe, 0x63, 0xfe, 0x61, 0xfe,\n  0x66, 0xfe, 0x66, 0xfe, 0x67, 0xfe, 0x69, 0xfe, 0x6c, 0xfe, 0x6a, 0xfe,\n  0x6f, 0xfe, 0x6d, 0xfe, 0x70, 0xfe, 0x73, 0xfe, 0x73, 0xfe, 0x75, 0xfe,\n  0x76, 0xfe, 0x78, 0xfe, 0x79, 0xfe, 0x7b, 0xfe, 0x7e, 0xfe, 0x7c, 0xfe,\n  0x7e, 0xfe, 0x82, 0xfe, 0x7f, 0xfe, 0x85, 0xfe, 0x85, 0xfe, 0x8a, 0xfe,\n  0x8a, 0xfe, 0x8e, 0xfe, 0x8b, 0xfe, 0x8e, 0xfe, 0x90, 0xfe, 0x91, 0xfe,\n  0x93, 0xfe, 0x96, 0xfe, 0x96, 0xfe, 0x9a, 0xfe, 0x9c, 0xfe, 0x9c, 0xfe,\n  0x9f, 0xfe, 0xa3, 0xfe, 0xa3, 0xfe, 0xa3, 0xfe, 0xa5, 0xfe, 0xab, 0xfe,\n  0xac, 0xfe, 0xac, 0xfe, 0xaf, 0xfe, 0xb1, 0xfe, 0xb2, 0xfe, 0xb5, 0xfe,\n  0xb7, 0xfe, 0xba, 0xfe, 0xbd, 0xfe, 0xbd, 0xfe, 0xc0, 0xfe, 0xc1, 0xfe,\n  0xc3, 0xfe, 0xc6, 0xfe, 0xc7, 0xfe, 0xcd, 0xfe, 0xcc, 0xfe, 0xcf, 0xfe,\n  0xd3, 0xfe, 0xd2, 0xfe, 0xd6, 0xfe, 0xd9, 0xfe, 0xd9, 0xfe, 0xdb, 0xfe,\n  0xe1, 0xfe, 0xdf, 0xfe, 0xe2, 0xfe, 0xe7, 0xfe, 0xea, 0xfe, 0xea, 0xfe,\n  0xeb, 0xfe, 0xee, 0xfe, 0xf3, 0xfe, 0xf6, 0xfe, 0xf6, 0xfe, 0xf9, 0xfe,\n  0xfd, 0xfe, 0x00, 0xff, 0x02, 0xff, 0x05, 0xff, 0x03, 0xff, 0x06, 0xff,\n  0x0b, 0xff, 0x0c, 0xff, 0x0f, 0xff, 0x11, 0xff, 0x14, 0xff, 0x17, 0xff,\n  0x1b, 0xff, 0x1d, 0xff, 0x21, 0xff, 0x23, 0xff, 0x24, 0xff, 0x29, 0xff,\n  0x29, 0xff, 0x2c, 0xff, 0x2f, 0xff, 0x30, 0xff, 0x33, 0xff, 0x36, 0xff,\n  0x3b, 0xff, 0x3c, 0xff, 0x41, 0xff, 0x41, 0xff, 0x48, 0xff, 0x45, 0xff,\n  0x4a, 0xff, 0x4d, 0xff, 0x4d, 0xff, 0x53, 0xff, 0x56, 0xff, 0x5a, 0xff,\n  0x59, 0xff, 0x60, 0xff, 0x5d, 0xff, 0x63, 0xff, 0x63, 0xff, 0x68, 0xff,\n  0x6b, 0xff, 0x6e, 0xff, 0x6f, 0xff, 0x74, 0xff, 0x75, 0xff, 0x7a, 0xff,\n  0x7d, 0xff, 0x7d, 0xff, 0x80, 0xff, 0x84, 0xff, 0x87, 0xff, 0x8a, 0xff,\n  0x90, 0xff, 0x90, 0xff, 0x92, 0xff, 0x95, 0xff, 0x98, 0xff, 0x9c, 0xff,\n  0x9e, 0xff, 0xa2, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xab, 0xff, 0xad, 0xff,\n  0xae, 0xff, 0xb1, 0xff, 0xb6, 0xff, 0xb9, 0xff, 0xbd, 0xff, 0xbd, 0xff,\n  0xbf, 0xff, 0xc3, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xcf, 0xff,\n  0xd1, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xdb, 0xff, 0xde, 0xff, 0xe1, 0xff,\n  0xe1, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf0, 0xff,\n  0xf3, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x02, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x11, 0x00,\n  0x14, 0x00, 0x16, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x20, 0x00,\n  0x25, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x32, 0x00,\n  0x37, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x43, 0x00,\n  0x4a, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x53, 0x00,\n  0x56, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x62, 0x00, 0x62, 0x00,\n  0x65, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x6d, 0x00, 0x76, 0x00,\n  0x77, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x7f, 0x00, 0x7f, 0x00, 0x83, 0x00,\n  0x88, 0x00, 0x88, 0x00, 0x8c, 0x00, 0x8e, 0x00, 0x8f, 0x00, 0x91, 0x00,\n  0x95, 0x00, 0x97, 0x00, 0x9a, 0x00, 0x9b, 0x00, 0xa0, 0x00, 0xa1, 0x00,\n  0xa3, 0x00, 0xa7, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xac, 0x00, 0xaf, 0x00,\n  0xb0, 0x00, 0xb5, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb9, 0x00, 0xbf, 0x00,\n  0xbf, 0x00, 0xc5, 0x00, 0xc5, 0x00, 0xc7, 0x00, 0xca, 0x00, 0xca, 0x00,\n  0xce, 0x00, 0xcd, 0x00, 0xd1, 0x00, 0xd4, 0x00, 0xd6, 0x00, 0xd7, 0x00,\n  0xda, 0x00, 0xdd, 0x00, 0xdd, 0x00, 0xe2, 0x00, 0xe2, 0x00, 0xe2, 0x00,\n  0xe6, 0x00, 0xe6, 0x00, 0xec, 0x00, 0xee, 0x00, 0xee, 0x00, 0xf2, 0x00,\n  0xf7, 0x00, 0xf1, 0x00, 0xf8, 0x00, 0xf8, 0x00, 0xfb, 0x00, 0xfe, 0x00,\n  0xfe, 0x00, 0x03, 0x01, 0x03, 0x01, 0x06, 0x01, 0x04, 0x01, 0x0a, 0x01,\n  0x07, 0x01, 0x0a, 0x01, 0x0d, 0x01, 0x0f, 0x01, 0x10, 0x01, 0x12, 0x01,\n  0x15, 0x01, 0x13, 0x01, 0x18, 0x01, 0x16, 0x01, 0x19, 0x01, 0x1b, 0x01,\n  0x1c, 0x01, 0x1e, 0x01, 0x22, 0x01, 0x21, 0x01, 0x21, 0x01, 0x27, 0x01,\n  0x28, 0x01, 0x28, 0x01, 0x27, 0x01, 0x2d, 0x01, 0x2d, 0x01, 0x30, 0x01,\n  0x30, 0x01, 0x31, 0x01, 0x33, 0x01, 0x36, 0x01, 0x34, 0x01, 0x36, 0x01,\n  0x36, 0x01, 0x39, 0x01, 0x3a, 0x01, 0x3a, 0x01, 0x3c, 0x01, 0x3d, 0x01,\n  0x3f, 0x01, 0x3f, 0x01, 0x45, 0x01, 0x40, 0x01, 0x43, 0x01, 0x43, 0x01,\n  0x46, 0x01, 0x48, 0x01, 0x45, 0x01, 0x4c, 0x01, 0x4b, 0x01, 0x4c, 0x01,\n  0x4b, 0x01, 0x4b, 0x01, 0x4f, 0x01, 0x4e, 0x01, 0x52, 0x01, 0x4e, 0x01,\n  0x52, 0x01, 0x52, 0x01, 0x52, 0x01, 0x55, 0x01, 0x55, 0x01, 0x58, 0x01,\n  0x57, 0x01, 0x55, 0x01, 0x5a, 0x01, 0x5a, 0x01, 0x57, 0x01, 0x58, 0x01,\n  0x5b, 0x01, 0x5b, 0x01, 0x5d, 0x01, 0x5e, 0x01, 0x5d, 0x01, 0x5d, 0x01,\n  0x61, 0x01, 0x60, 0x01, 0x60, 0x01, 0x60, 0x01, 0x60, 0x01, 0x64, 0x01,\n  0x64, 0x01, 0x64, 0x01, 0x66, 0x01, 0x64, 0x01, 0x63, 0x01, 0x64, 0x01,\n  0x66, 0x01, 0x66, 0x01, 0x66, 0x01, 0x67, 0x01, 0x66, 0x01, 0x67, 0x01,\n  0x64, 0x01, 0x64, 0x01, 0x67, 0x01, 0x66, 0x01, 0x6a, 0x01, 0x69, 0x01,\n  0x69, 0x01, 0x66, 0x01, 0x67, 0x01, 0x69, 0x01, 0x6a, 0x01, 0x66, 0x01,\n  0x6a, 0x01, 0x67, 0x01, 0x6a, 0x01, 0x66, 0x01, 0x6a, 0x01, 0x67, 0x01,\n  0x69, 0x01, 0x69, 0x01, 0x67, 0x01, 0x66, 0x01, 0x67, 0x01, 0x69, 0x01,\n  0x66, 0x01, 0x67, 0x01, 0x64, 0x01, 0x66, 0x01, 0x66, 0x01, 0x67, 0x01,\n  0x64, 0x01, 0x64, 0x01, 0x64, 0x01, 0x64, 0x01, 0x63, 0x01, 0x66, 0x01,\n  0x61, 0x01, 0x61, 0x01, 0x61, 0x01, 0x60, 0x01, 0x61, 0x01, 0x61, 0x01,\n  0x5e, 0x01, 0x60, 0x01, 0x5e, 0x01, 0x5e, 0x01, 0x5e, 0x01, 0x5b, 0x01,\n  0x5d, 0x01, 0x5b, 0x01, 0x5b, 0x01, 0x5b, 0x01, 0x57, 0x01, 0x5a, 0x01,\n  0x5a, 0x01, 0x55, 0x01, 0x57, 0x01, 0x55, 0x01, 0x54, 0x01, 0x54, 0x01,\n  0x52, 0x01, 0x54, 0x01, 0x52, 0x01, 0x4f, 0x01, 0x4f, 0x01, 0x4f, 0x01,\n  0x4e, 0x01, 0x4c, 0x01, 0x4c, 0x01, 0x4b, 0x01, 0x4b, 0x01, 0x4b, 0x01,\n  0x49, 0x01, 0x46, 0x01, 0x46, 0x01, 0x45, 0x01, 0x42, 0x01, 0x43, 0x01,\n  0x40, 0x01, 0x40, 0x01, 0x3f, 0x01, 0x3d, 0x01, 0x3d, 0x01, 0x3a, 0x01,\n  0x3c, 0x01, 0x39, 0x01, 0x39, 0x01, 0x37, 0x01, 0x37, 0x01, 0x36, 0x01,\n  0x33, 0x01, 0x33, 0x01, 0x30, 0x01, 0x2e, 0x01, 0x2e, 0x01, 0x30, 0x01,\n  0x2b, 0x01, 0x2d, 0x01, 0x28, 0x01, 0x27, 0x01, 0x27, 0x01, 0x24, 0x01,\n  0x24, 0x01, 0x21, 0x01, 0x21, 0x01, 0x21, 0x01, 0x1c, 0x01, 0x1c, 0x01,\n  0x19, 0x01, 0x15, 0x01, 0x18, 0x01, 0x15, 0x01, 0x15, 0x01, 0x10, 0x01,\n  0x13, 0x01, 0x0f, 0x01, 0x0d, 0x01, 0x0d, 0x01, 0x0a, 0x01, 0x0a, 0x01,\n  0x04, 0x01, 0x06, 0x01, 0x04, 0x01, 0x00, 0x01, 0x00, 0x01, 0xfd, 0x00,\n  0xfb, 0x00, 0xfa, 0x00, 0xfa, 0x00, 0xf7, 0x00, 0xf4, 0x00, 0xf4, 0x00,\n  0xf1, 0x00, 0xec, 0x00, 0xec, 0x00, 0xeb, 0x00, 0xeb, 0x00, 0xe8, 0x00,\n  0xe3, 0x00, 0xe5, 0x00, 0xdf, 0x00, 0xdf, 0x00, 0xdd, 0x00, 0xdc, 0x00,\n  0xda, 0x00, 0xd4, 0x00, 0xd6, 0x00, 0xd3, 0x00, 0xd3, 0x00, 0xd1, 0x00,\n  0xcd, 0x00, 0xce, 0x00, 0xca, 0x00, 0xca, 0x00, 0xc7, 0x00, 0xc4, 0x00,\n  0xc2, 0x00, 0xc1, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xb8, 0x00, 0xb5, 0x00,\n  0xb8, 0x00, 0xb2, 0x00, 0xb2, 0x00, 0xb0, 0x00, 0xad, 0x00, 0xa9, 0x00,\n  0xa7, 0x00, 0xa7, 0x00, 0xa6, 0x00, 0xa1, 0x00, 0xa3, 0x00, 0x9e, 0x00,\n  0x9b, 0x00, 0x98, 0x00, 0x98, 0x00, 0x94, 0x00, 0x92, 0x00, 0x8f, 0x00,\n  0x8f, 0x00, 0x8c, 0x00, 0x8b, 0x00, 0x89, 0x00, 0x83, 0x00, 0x85, 0x00,\n  0x80, 0x00, 0x7d, 0x00, 0x7a, 0x00, 0x7c, 0x00, 0x7a, 0x00, 0x76, 0x00,\n  0x71, 0x00, 0x70, 0x00, 0x70, 0x00, 0x70, 0x00, 0x6a, 0x00, 0x67, 0x00,\n  0x65, 0x00, 0x64, 0x00, 0x61, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x59, 0x00,\n  0x58, 0x00, 0x56, 0x00, 0x53, 0x00, 0x52, 0x00, 0x50, 0x00, 0x49, 0x00,\n  0x4c, 0x00, 0x46, 0x00, 0x44, 0x00, 0x44, 0x00, 0x40, 0x00, 0x40, 0x00,\n  0x3d, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x35, 0x00, 0x32, 0x00, 0x31, 0x00,\n  0x2f, 0x00, 0x2e, 0x00, 0x28, 0x00, 0x25, 0x00, 0x26, 0x00, 0x22, 0x00,\n  0x22, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x16, 0x00, 0x16, 0x00,\n  0x11, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xec, 0xff,\n  0xea, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xde, 0xff, 0xe0, 0xff,\n  0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd1, 0xff,\n  0xcc, 0xff, 0xcc, 0xff, 0xc9, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc5, 0xff,\n  0xc2, 0xff, 0xbf, 0xff, 0xbc, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb6, 0xff,\n  0xb3, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xab, 0xff, 0xab, 0xff, 0xa8, 0xff,\n  0xa7, 0xff, 0xa2, 0xff, 0xa4, 0xff, 0x9f, 0xff, 0x9c, 0xff, 0x99, 0xff,\n  0x9b, 0xff, 0x96, 0xff, 0x98, 0xff, 0x92, 0xff, 0x90, 0xff, 0x8d, 0xff,\n  0x8c, 0xff, 0x8a, 0xff, 0x8a, 0xff, 0x87, 0xff, 0x84, 0xff, 0x83, 0xff,\n  0x81, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x7a, 0xff, 0x77, 0xff, 0x78, 0xff,\n  0x74, 0xff, 0x74, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6c, 0xff, 0x68, 0xff,\n  0x69, 0xff, 0x66, 0xff, 0x65, 0xff, 0x62, 0xff, 0x60, 0xff, 0x62, 0xff,\n  0x5d, 0xff, 0x5a, 0xff, 0x59, 0xff, 0x57, 0xff, 0x56, 0xff, 0x53, 0xff,\n  0x51, 0xff, 0x53, 0xff, 0x4b, 0xff, 0x4e, 0xff, 0x4a, 0xff, 0x48, 0xff,\n  0x47, 0xff, 0x42, 0xff, 0x45, 0xff, 0x42, 0xff, 0x3e, 0xff, 0x3f, 0xff,\n  0x3f, 0xff, 0x39, 0xff, 0x39, 0xff, 0x38, 0xff, 0x33, 0xff, 0x36, 0xff,\n  0x30, 0xff, 0x32, 0xff, 0x2d, 0xff, 0x2d, 0xff, 0x2f, 0xff, 0x2c, 0xff,\n  0x2c, 0xff, 0x24, 0xff, 0x26, 0xff, 0x27, 0xff, 0x23, 0xff, 0x23, 0xff,\n  0x1e, 0xff, 0x1b, 0xff, 0x1e, 0xff, 0x1a, 0xff, 0x1a, 0xff, 0x1a, 0xff,\n  0x18, 0xff, 0x15, 0xff, 0x18, 0xff, 0x14, 0xff, 0x12, 0xff, 0x11, 0xff,\n  0x0f, 0xff, 0x0e, 0xff, 0x0c, 0xff, 0x0e, 0xff, 0x0b, 0xff, 0x08, 0xff,\n  0x0b, 0xff, 0x06, 0xff, 0x06, 0xff, 0x02, 0xff, 0x02, 0xff, 0x02, 0xff,\n  0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xfd, 0xfe, 0xfc, 0xfe, 0xfc, 0xfe,\n  0xf7, 0xfe, 0xf7, 0xfe, 0xf6, 0xfe, 0xf6, 0xfe, 0xf6, 0xfe, 0xf4, 0xfe,\n  0xf4, 0xfe, 0xf0, 0xfe, 0xf1, 0xfe, 0xf0, 0xfe, 0xee, 0xfe, 0xed, 0xfe,\n  0xeb, 0xfe, 0xed, 0xfe, 0xeb, 0xfe, 0xed, 0xfe, 0xea, 0xfe, 0xea, 0xfe,\n  0xe7, 0xfe, 0xe8, 0xfe, 0xe8, 0xfe, 0xe7, 0xfe, 0xe5, 0xfe, 0xe5, 0xfe,\n  0xe2, 0xfe, 0xe2, 0xfe, 0xe4, 0xfe, 0xe2, 0xfe, 0xe1, 0xfe, 0xe2, 0xfe,\n  0xe1, 0xfe, 0xe1, 0xfe, 0xdf, 0xfe, 0xdc, 0xfe, 0xdc, 0xfe, 0xde, 0xfe,\n  0xd9, 0xfe, 0xdb, 0xfe, 0xd9, 0xfe, 0xdc, 0xfe, 0xd8, 0xfe, 0xdb, 0xfe,\n  0xd9, 0xfe, 0xd8, 0xfe, 0xd9, 0xfe, 0xd8, 0xfe, 0xd8, 0xfe, 0xd6, 0xfe,\n  0xd9, 0xfe, 0xd3, 0xfe, 0xd6, 0xfe, 0xd9, 0xfe, 0xd0, 0xfe, 0xd6, 0xfe,\n  0xd3, 0xfe, 0xd3, 0xfe, 0xd5, 0xfe, 0xd3, 0xfe, 0xd5, 0xfe, 0xd5, 0xfe,\n  0xd3, 0xfe, 0xd3, 0xfe, 0xd5, 0xfe, 0xd3, 0xfe, 0xd2, 0xfe, 0xd2, 0xfe,\n  0xd0, 0xfe, 0xd0, 0xfe, 0xd3, 0xfe, 0xd3, 0xfe, 0xd2, 0xfe, 0xd3, 0xfe,\n  0xd2, 0xfe, 0xd3, 0xfe, 0xd2, 0xfe, 0xd0, 0xfe, 0xd2, 0xfe, 0xd3, 0xfe,\n  0xd2, 0xfe, 0xd3, 0xfe, 0xd0, 0xfe, 0xd3, 0xfe, 0xd2, 0xfe, 0xd2, 0xfe,\n  0xd3, 0xfe, 0xd3, 0xfe, 0xd3, 0xfe, 0xd2, 0xfe, 0xd3, 0xfe, 0xd5, 0xfe,\n  0xd5, 0xfe, 0xd3, 0xfe, 0xd5, 0xfe, 0xd3, 0xfe, 0xd5, 0xfe, 0xd6, 0xfe,\n  0xd6, 0xfe, 0xd5, 0xfe, 0xd9, 0xfe, 0xd6, 0xfe, 0xd9, 0xfe, 0xd8, 0xfe,\n  0xd9, 0xfe, 0xd8, 0xfe, 0xd8, 0xfe, 0xdc, 0xfe, 0xd8, 0xfe, 0xdb, 0xfe,\n  0xd9, 0xfe, 0xdc, 0xfe, 0xdc, 0xfe, 0xde, 0xfe, 0xe1, 0xfe, 0xdb, 0xfe,\n  0xdf, 0xfe, 0xde, 0xfe, 0xe2, 0xfe, 0xdf, 0xfe, 0xdf, 0xfe, 0xe1, 0xfe,\n  0xe2, 0xfe, 0xe4, 0xfe, 0xe2, 0xfe, 0xe4, 0xfe, 0xe4, 0xfe, 0xe4, 0xfe,\n  0xe8, 0xfe, 0xe7, 0xfe, 0xea, 0xfe, 0xe8, 0xfe, 0xe8, 0xfe, 0xed, 0xfe,\n  0xed, 0xfe, 0xee, 0xfe, 0xee, 0xfe, 0xeb, 0xfe, 0xf0, 0xfe, 0xf0, 0xfe,\n  0xf3, 0xfe, 0xf1, 0xfe, 0xf4, 0xfe, 0xf6, 0xfe, 0xf1, 0xfe, 0xf6, 0xfe,\n  0xf6, 0xfe, 0xf9, 0xfe, 0xf7, 0xfe, 0xf9, 0xfe, 0xfa, 0xfe, 0xfd, 0xfe,\n  0xfc, 0xfe, 0xff, 0xfe, 0xfd, 0xfe, 0xfd, 0xfe, 0x05, 0xff, 0xfd, 0xfe,\n  0x05, 0xff, 0x03, 0xff, 0x06, 0xff, 0x08, 0xff, 0x08, 0xff, 0x08, 0xff,\n  0x09, 0xff, 0x0b, 0xff, 0x0c, 0xff, 0x0e, 0xff, 0x0e, 0xff, 0x0f, 0xff,\n  0x11, 0xff, 0x12, 0xff, 0x14, 0xff, 0x15, 0xff, 0x18, 0xff, 0x17, 0xff,\n  0x15, 0xff, 0x1d, 0xff, 0x1d, 0xff, 0x1e, 0xff, 0x1e, 0xff, 0x20, 0xff,\n  0x20, 0xff, 0x21, 0xff, 0x24, 0xff, 0x24, 0xff, 0x2a, 0xff, 0x2a, 0xff,\n  0x2d, 0xff, 0x29, 0xff, 0x2f, 0xff, 0x2f, 0xff, 0x30, 0xff, 0x35, 0xff,\n  0x32, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff, 0x39, 0xff, 0x3c, 0xff,\n  0x3b, 0xff, 0x3e, 0xff, 0x3f, 0xff, 0x42, 0xff, 0x44, 0xff, 0x47, 0xff,\n  0x44, 0xff, 0x47, 0xff, 0x47, 0xff, 0x4b, 0xff, 0x4d, 0xff, 0x4a, 0xff,\n  0x51, 0xff, 0x51, 0xff, 0x53, 0xff, 0x54, 0xff, 0x56, 0xff, 0x5c, 0xff,\n  0x59, 0xff, 0x5f, 0xff, 0x5d, 0xff, 0x5f, 0xff, 0x63, 0xff, 0x60, 0xff,\n  0x65, 0xff, 0x65, 0xff, 0x68, 0xff, 0x6b, 0xff, 0x6c, 0xff, 0x6c, 0xff,\n  0x6e, 0xff, 0x71, 0xff, 0x6f, 0xff, 0x75, 0xff, 0x75, 0xff, 0x78, 0xff,\n  0x7a, 0xff, 0x7d, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x83, 0xff, 0x83, 0xff,\n  0x86, 0xff, 0x89, 0xff, 0x89, 0xff, 0x86, 0xff, 0x8d, 0xff, 0x8a, 0xff,\n  0x8f, 0xff, 0x90, 0xff, 0x90, 0xff, 0x98, 0xff, 0x93, 0xff, 0x99, 0xff,\n  0x98, 0xff, 0x9b, 0xff, 0x9e, 0xff, 0x9f, 0xff, 0xa2, 0xff, 0xa2, 0xff,\n  0xa5, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xab, 0xff, 0xab, 0xff, 0xb0, 0xff,\n  0xb1, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xba, 0xff, 0xb7, 0xff, 0xb9, 0xff,\n  0xbc, 0xff, 0xbd, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xc3, 0xff, 0xc5, 0xff,\n  0xc5, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xce, 0xff, 0xcf, 0xff,\n  0xd4, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xde, 0xff,\n  0xe1, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xec, 0xff,\n  0xe9, 0xff, 0xec, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff,\n  0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x05, 0x00, 0x0a, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x14, 0x00,\n  0x16, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x20, 0x00,\n  0x22, 0x00, 0x25, 0x00, 0x23, 0x00, 0x26, 0x00, 0x28, 0x00, 0x28, 0x00,\n  0x2f, 0x00, 0x2c, 0x00, 0x31, 0x00, 0x34, 0x00, 0x32, 0x00, 0x34, 0x00,\n  0x37, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x41, 0x00,\n  0x43, 0x00, 0x43, 0x00, 0x46, 0x00, 0x49, 0x00, 0x49, 0x00, 0x4a, 0x00,\n  0x4f, 0x00, 0x4d, 0x00, 0x4f, 0x00, 0x52, 0x00, 0x53, 0x00, 0x56, 0x00,\n  0x56, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0x61, 0x00, 0x5f, 0x00,\n  0x62, 0x00, 0x62, 0x00, 0x64, 0x00, 0x65, 0x00, 0x67, 0x00, 0x6b, 0x00,\n  0x6e, 0x00, 0x6e, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x71, 0x00, 0x76, 0x00,\n  0x74, 0x00, 0x77, 0x00, 0x76, 0x00, 0x7a, 0x00, 0x7c, 0x00, 0x7f, 0x00,\n  0x7f, 0x00, 0x80, 0x00, 0x83, 0x00, 0x83, 0x00, 0x86, 0x00, 0x88, 0x00,\n  0x86, 0x00, 0x86, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x8f, 0x00, 0x8f, 0x00,\n  0x92, 0x00, 0x91, 0x00, 0x95, 0x00, 0x95, 0x00, 0x97, 0x00, 0x97, 0x00,\n  0x98, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0xa0, 0x00,\n  0xa1, 0x00, 0xa1, 0x00, 0xa6, 0x00, 0xa7, 0x00, 0xa6, 0x00, 0xaa, 0x00,\n  0xa9, 0x00, 0xaa, 0x00, 0xac, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xaf, 0x00,\n  0xb0, 0x00, 0xb3, 0x00, 0xb3, 0x00, 0xb8, 0x00, 0xb5, 0x00, 0xb6, 0x00,\n  0xb9, 0x00, 0xb8, 0x00, 0xbc, 0x00, 0xbb, 0x00, 0xbe, 0x00, 0xbc, 0x00,\n  0xc2, 0x00, 0xc1, 0x00, 0xc2, 0x00, 0xc1, 0x00, 0xc2, 0x00, 0xc5, 0x00,\n  0xc7, 0x00, 0xc7, 0x00, 0xca, 0x00, 0xc8, 0x00, 0xcb, 0x00, 0xca, 0x00,\n  0xce, 0x00, 0xcd, 0x00, 0xce, 0x00, 0xcd, 0x00, 0xce, 0x00, 0xd1, 0x00,\n  0xd0, 0x00, 0xd1, 0x00, 0xd4, 0x00, 0xd3, 0x00, 0xd4, 0x00, 0xd6, 0x00,\n  0xd4, 0x00, 0xd6, 0x00, 0xd7, 0x00, 0xdc, 0x00, 0xd7, 0x00, 0xda, 0x00,\n  0xdc, 0x00, 0xda, 0x00, 0xdf, 0x00, 0xdd, 0x00, 0xdf, 0x00, 0xe2, 0x00,\n  0xda, 0x00, 0xdf, 0x00, 0xe2, 0x00, 0xdf, 0x00, 0xe6, 0x00, 0xe5, 0x00,\n  0xe6, 0x00, 0xe3, 0x00, 0xe5, 0x00, 0xe5, 0x00, 0xe6, 0x00, 0xe5, 0x00,\n  0xe5, 0x00, 0xe9, 0x00, 0xe6, 0x00, 0xe8, 0x00, 0xe8, 0x00, 0xe6, 0x00,\n  0xe9, 0x00, 0xeb, 0x00, 0xeb, 0x00, 0xe9, 0x00, 0xeb, 0x00, 0xef, 0x00,\n  0xe8, 0x00, 0xeb, 0x00, 0xee, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xec, 0x00,\n  0xef, 0x00, 0xec, 0x00, 0xee, 0x00, 0xef, 0x00, 0xee, 0x00, 0xef, 0x00,\n  0xf1, 0x00, 0xef, 0x00, 0xee, 0x00, 0xf1, 0x00, 0xef, 0x00, 0xf1, 0x00,\n  0xf1, 0x00, 0xf2, 0x00, 0xf1, 0x00, 0xef, 0x00, 0xf4, 0x00, 0xf1, 0x00,\n  0xf2, 0x00, 0xef, 0x00, 0xf2, 0x00, 0xf2, 0x00, 0xf2, 0x00, 0xf1, 0x00,\n  0xf1, 0x00, 0xf1, 0x00, 0xef, 0x00, 0xf2, 0x00, 0xf2, 0x00, 0xf2, 0x00,\n  0xf1, 0x00, 0xf4, 0x00, 0xee, 0x00, 0xf2, 0x00, 0xf2, 0x00, 0xf1, 0x00,\n  0xf2, 0x00, 0xf1, 0x00, 0xf1, 0x00, 0xef, 0x00, 0xf1, 0x00, 0xf1, 0x00,\n  0xf1, 0x00, 0xee, 0x00, 0xf1, 0x00, 0xef, 0x00, 0xef, 0x00, 0xec, 0x00,\n  0xf1, 0x00, 0xec, 0x00, 0xee, 0x00, 0xee, 0x00, 0xec, 0x00, 0xee, 0x00,\n  0xee, 0x00, 0xee, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xeb, 0x00, 0xec, 0x00,\n  0xeb, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xe8, 0x00, 0xeb, 0x00, 0xe9, 0x00,\n  0xe6, 0x00, 0xe9, 0x00, 0xe5, 0x00, 0xe8, 0x00, 0xe8, 0x00, 0xe5, 0x00,\n  0xe6, 0x00, 0xe6, 0x00, 0xe5, 0x00, 0xe2, 0x00, 0xe2, 0x00, 0xe3, 0x00,\n  0xe3, 0x00, 0xe2, 0x00, 0xe0, 0x00, 0xdd, 0x00, 0xdf, 0x00, 0xdf, 0x00,\n  0xda, 0x00, 0xdd, 0x00, 0xdc, 0x00, 0xdd, 0x00, 0xd9, 0x00, 0xd7, 0x00,\n  0xdc, 0x00, 0xd7, 0x00, 0xda, 0x00, 0xd7, 0x00, 0xd6, 0x00, 0xd6, 0x00,\n  0xd4, 0x00, 0xd6, 0x00, 0xd4, 0x00, 0xd1, 0x00, 0xd3, 0x00, 0xd3, 0x00,\n  0xd0, 0x00, 0xd3, 0x00, 0xcd, 0x00, 0xcb, 0x00, 0xce, 0x00, 0xc8, 0x00,\n  0xca, 0x00, 0xca, 0x00, 0xc7, 0x00, 0xc7, 0x00, 0xc7, 0x00, 0xc7, 0x00,\n  0xc5, 0x00, 0xc5, 0x00, 0xc2, 0x00, 0xc1, 0x00, 0xc1, 0x00, 0xbf, 0x00,\n  0xc2, 0x00, 0xbb, 0x00, 0xbb, 0x00, 0xbc, 0x00, 0xbb, 0x00, 0xb6, 0x00,\n  0xbc, 0x00, 0xb9, 0x00, 0xb9, 0x00, 0xb5, 0x00, 0xb5, 0x00, 0xb2, 0x00,\n  0xb2, 0x00, 0xb3, 0x00, 0xaf, 0x00, 0xaf, 0x00, 0xac, 0x00, 0xad, 0x00,\n  0xa9, 0x00, 0xad, 0x00, 0xa7, 0x00, 0xa4, 0x00, 0xa7, 0x00, 0xa4, 0x00,\n  0xa4, 0x00, 0xa1, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0xa1, 0x00,\n  0x9b, 0x00, 0x9d, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0x98, 0x00, 0x97, 0x00,\n  0x94, 0x00, 0x94, 0x00, 0x94, 0x00, 0x8f, 0x00, 0x91, 0x00, 0x8e, 0x00,\n  0x8c, 0x00, 0x89, 0x00, 0x89, 0x00, 0x89, 0x00, 0x89, 0x00, 0x85, 0x00,\n  0x85, 0x00, 0x85, 0x00, 0x7d, 0x00, 0x86, 0x00, 0x80, 0x00, 0x7d, 0x00,\n  0x7f, 0x00, 0x79, 0x00, 0x7a, 0x00, 0x77, 0x00, 0x79, 0x00, 0x77, 0x00,\n  0x73, 0x00, 0x74, 0x00, 0x70, 0x00, 0x71, 0x00, 0x71, 0x00, 0x6d, 0x00,\n  0x6d, 0x00, 0x6d, 0x00, 0x68, 0x00, 0x68, 0x00, 0x65, 0x00, 0x65, 0x00,\n  0x64, 0x00, 0x62, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x5f, 0x00, 0x5b, 0x00,\n  0x59, 0x00, 0x59, 0x00, 0x56, 0x00, 0x55, 0x00, 0x55, 0x00, 0x52, 0x00,\n  0x4f, 0x00, 0x50, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4a, 0x00, 0x4a, 0x00,\n  0x49, 0x00, 0x46, 0x00, 0x46, 0x00, 0x43, 0x00, 0x41, 0x00, 0x40, 0x00,\n  0x3e, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x37, 0x00, 0x37, 0x00,\n  0x35, 0x00, 0x34, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x2e, 0x00,\n  0x2b, 0x00, 0x29, 0x00, 0x28, 0x00, 0x28, 0x00, 0x25, 0x00, 0x26, 0x00,\n  0x23, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1a, 0x00,\n  0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x11, 0x00, 0x13, 0x00, 0x10, 0x00,\n  0x0d, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf0, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xef, 0xff, 0xec, 0xff,\n  0xec, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe3, 0xff,\n  0xe3, 0xff, 0xe1, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xd8, 0xff,\n  0xd8, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd1, 0xff, 0xcf, 0xff,\n  0xd1, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xc9, 0xff,\n  0xc8, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc2, 0xff,\n  0xc0, 0xff, 0xba, 0xff, 0xba, 0xff, 0xb7, 0xff, 0xb9, 0xff, 0xb6, 0xff,\n  0xb6, 0xff, 0xb6, 0xff, 0xb1, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xae, 0xff,\n  0xae, 0xff, 0xaa, 0xff, 0xad, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0xa5, 0xff,\n  0xa4, 0xff, 0xa2, 0xff, 0xa1, 0xff, 0xa1, 0xff, 0x9f, 0xff, 0xa1, 0xff,\n  0x9b, 0xff, 0x9c, 0xff, 0x99, 0xff, 0x98, 0xff, 0x9b, 0xff, 0x98, 0xff,\n  0x95, 0xff, 0x95, 0xff, 0x92, 0xff, 0x92, 0xff, 0x90, 0xff, 0x8f, 0xff,\n  0x8f, 0xff, 0x8d, 0xff, 0x8f, 0xff, 0x89, 0xff, 0x8c, 0xff, 0x86, 0xff,\n  0x84, 0xff, 0x86, 0xff, 0x84, 0xff, 0x84, 0xff, 0x83, 0xff, 0x81, 0xff,\n  0x81, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x7a, 0xff, 0x7b, 0xff, 0x7b, 0xff,\n  0x7a, 0xff, 0x78, 0xff, 0x75, 0xff, 0x78, 0xff, 0x74, 0xff, 0x74, 0xff,\n  0x72, 0xff, 0x71, 0xff, 0x71, 0xff, 0x71, 0xff, 0x6e, 0xff, 0x6f, 0xff,\n  0x6c, 0xff, 0x6b, 0xff, 0x6c, 0xff, 0x6b, 0xff, 0x66, 0xff, 0x69, 0xff,\n  0x66, 0xff, 0x66, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x60, 0xff,\n  0x62, 0xff, 0x5d, 0xff, 0x5f, 0xff, 0x5f, 0xff, 0x5f, 0xff, 0x5d, 0xff,\n  0x57, 0xff, 0x5d, 0xff, 0x59, 0xff, 0x59, 0xff, 0x59, 0xff, 0x59, 0xff,\n  0x56, 0xff, 0x56, 0xff, 0x56, 0xff, 0x53, 0xff, 0x57, 0xff, 0x53, 0xff,\n  0x51, 0xff, 0x53, 0xff, 0x4e, 0xff, 0x51, 0xff, 0x4e, 0xff, 0x51, 0xff,\n  0x4e, 0xff, 0x4d, 0xff, 0x4d, 0xff, 0x4b, 0xff, 0x4b, 0xff, 0x4a, 0xff,\n  0x4b, 0xff, 0x48, 0xff, 0x4b, 0xff, 0x4b, 0xff, 0x45, 0xff, 0x48, 0xff,\n  0x4b, 0xff, 0x45, 0xff, 0x44, 0xff, 0x45, 0xff, 0x45, 0xff, 0x45, 0xff,\n  0x44, 0xff, 0x42, 0xff, 0x44, 0xff, 0x41, 0xff, 0x42, 0xff, 0x42, 0xff,\n  0x3f, 0xff, 0x41, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x41, 0xff,\n  0x3b, 0xff, 0x3e, 0xff, 0x3c, 0xff, 0x3e, 0xff, 0x3e, 0xff, 0x3b, 0xff,\n  0x3f, 0xff, 0x3c, 0xff, 0x39, 0xff, 0x3c, 0xff, 0x39, 0xff, 0x3b, 0xff,\n  0x38, 0xff, 0x36, 0xff, 0x3c, 0xff, 0x38, 0xff, 0x3b, 0xff, 0x39, 0xff,\n  0x36, 0xff, 0x39, 0xff, 0x38, 0xff, 0x39, 0xff, 0x36, 0xff, 0x3b, 0xff,\n  0x38, 0xff, 0x38, 0xff, 0x38, 0xff, 0x35, 0xff, 0x33, 0xff, 0x39, 0xff,\n  0x38, 0xff, 0x36, 0xff, 0x38, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff,\n  0x36, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff, 0x35, 0xff,\n  0x36, 0xff, 0x36, 0xff, 0x39, 0xff, 0x36, 0xff, 0x38, 0xff, 0x36, 0xff,\n  0x36, 0xff, 0x36, 0xff, 0x38, 0xff, 0x36, 0xff, 0x36, 0xff, 0x36, 0xff,\n  0x38, 0xff, 0x35, 0xff, 0x38, 0xff, 0x36, 0xff, 0x38, 0xff, 0x36, 0xff,\n  0x39, 0xff, 0x39, 0xff, 0x38, 0xff, 0x38, 0xff, 0x3b, 0xff, 0x39, 0xff,\n  0x39, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x3c, 0xff,\n  0x39, 0xff, 0x3c, 0xff, 0x3e, 0xff, 0x3c, 0xff, 0x3e, 0xff, 0x3e, 0xff,\n  0x3f, 0xff, 0x3c, 0xff, 0x3e, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x42, 0xff,\n  0x3f, 0xff, 0x41, 0xff, 0x3f, 0xff, 0x42, 0xff, 0x41, 0xff, 0x41, 0xff,\n  0x45, 0xff, 0x42, 0xff, 0x45, 0xff, 0x45, 0xff, 0x45, 0xff, 0x45, 0xff,\n  0x47, 0xff, 0x47, 0xff, 0x47, 0xff, 0x4a, 0xff, 0x47, 0xff, 0x48, 0xff,\n  0x48, 0xff, 0x48, 0xff, 0x4d, 0xff, 0x4b, 0xff, 0x4e, 0xff, 0x4b, 0xff,\n  0x4b, 0xff, 0x4e, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x51, 0xff,\n  0x50, 0xff, 0x53, 0xff, 0x53, 0xff, 0x53, 0xff, 0x54, 0xff, 0x54, 0xff,\n  0x54, 0xff, 0x57, 0xff, 0x57, 0xff, 0x59, 0xff, 0x5c, 0xff, 0x59, 0xff,\n  0x5c, 0xff, 0x5a, 0xff, 0x5d, 0xff, 0x5a, 0xff, 0x5c, 0xff, 0x5f, 0xff,\n  0x5f, 0xff, 0x62, 0xff, 0x5d, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff,\n  0x65, 0xff, 0x65, 0xff, 0x66, 0xff, 0x66, 0xff, 0x68, 0xff, 0x6b, 0xff,\n  0x69, 0xff, 0x6b, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x71, 0xff, 0x6e, 0xff,\n  0x6f, 0xff, 0x72, 0xff, 0x72, 0xff, 0x71, 0xff, 0x71, 0xff, 0x77, 0xff,\n  0x75, 0xff, 0x7b, 0xff, 0x77, 0xff, 0x78, 0xff, 0x7b, 0xff, 0x7b, 0xff,\n  0x7b, 0xff, 0x7a, 0xff, 0x80, 0xff, 0x7e, 0xff, 0x81, 0xff, 0x80, 0xff,\n  0x80, 0xff, 0x81, 0xff, 0x86, 0xff, 0x86, 0xff, 0x86, 0xff, 0x89, 0xff,\n  0x89, 0xff, 0x89, 0xff, 0x8a, 0xff, 0x8d, 0xff, 0x8a, 0xff, 0x8d, 0xff,\n  0x8f, 0xff, 0x90, 0xff, 0x90, 0xff, 0x93, 0xff, 0x90, 0xff, 0x93, 0xff,\n  0x96, 0xff, 0x96, 0xff, 0x99, 0xff, 0x98, 0xff, 0x99, 0xff, 0x9b, 0xff,\n  0x9e, 0xff, 0x9c, 0xff, 0xa1, 0xff, 0xa2, 0xff, 0x9f, 0xff, 0xa1, 0xff,\n  0xa4, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xaa, 0xff,\n  0xab, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xb1, 0xff, 0xb1, 0xff,\n  0xb1, 0xff, 0xb1, 0xff, 0xb4, 0xff, 0xb7, 0xff, 0xb9, 0xff, 0xb7, 0xff,\n  0xb9, 0xff, 0xbc, 0xff, 0xbd, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xc2, 0xff,\n  0xc0, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc6, 0xff, 0xc9, 0xff, 0xc8, 0xff,\n  0xc9, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xce, 0xff,\n  0xd1, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd5, 0xff,\n  0xda, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe1, 0xff,\n  0xe0, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe6, 0xff,\n  0xe6, 0xff, 0xea, 0xff, 0xec, 0xff, 0xea, 0xff, 0xef, 0xff, 0xef, 0xff,\n  0xf0, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x0d, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x11, 0x00, 0x11, 0x00, 0x13, 0x00,\n  0x14, 0x00, 0x17, 0x00, 0x16, 0x00, 0x16, 0x00, 0x19, 0x00, 0x19, 0x00,\n  0x1d, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x20, 0x00, 0x23, 0x00,\n  0x26, 0x00, 0x22, 0x00, 0x26, 0x00, 0x28, 0x00, 0x28, 0x00, 0x29, 0x00,\n  0x2b, 0x00, 0x29, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x31, 0x00,\n  0x2e, 0x00, 0x32, 0x00, 0x35, 0x00, 0x35, 0x00, 0x34, 0x00, 0x3b, 0x00,\n  0x35, 0x00, 0x3b, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3d, 0x00,\n  0x3d, 0x00, 0x40, 0x00, 0x43, 0x00, 0x43, 0x00, 0x44, 0x00, 0x47, 0x00,\n  0x47, 0x00, 0x47, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x4d, 0x00,\n  0x4f, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x4c, 0x00, 0x53, 0x00, 0x55, 0x00,\n  0x50, 0x00, 0x52, 0x00, 0x55, 0x00, 0x55, 0x00, 0x56, 0x00, 0x58, 0x00,\n  0x56, 0x00, 0x5c, 0x00, 0x59, 0x00, 0x5c, 0x00, 0x5f, 0x00, 0x5c, 0x00,\n  0x61, 0x00, 0x61, 0x00, 0x65, 0x00, 0x61, 0x00, 0x64, 0x00, 0x67, 0x00,\n  0x65, 0x00, 0x65, 0x00, 0x67, 0x00, 0x68, 0x00, 0x6a, 0x00, 0x6a, 0x00,\n  0x68, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x6d, 0x00, 0x70, 0x00, 0x6b, 0x00,\n  0x70, 0x00, 0x70, 0x00, 0x70, 0x00, 0x76, 0x00, 0x71, 0x00, 0x77, 0x00,\n  0x77, 0x00, 0x77, 0x00, 0x79, 0x00, 0x77, 0x00, 0x79, 0x00, 0x79, 0x00,\n  0x7c, 0x00, 0x7a, 0x00, 0x7c, 0x00, 0x7d, 0x00, 0x7d, 0x00, 0x7f, 0x00,\n  0x7f, 0x00, 0x7f, 0x00, 0x80, 0x00, 0x7f, 0x00, 0x83, 0x00, 0x80, 0x00,\n  0x82, 0x00, 0x83, 0x00, 0x85, 0x00, 0x83, 0x00, 0x82, 0x00, 0x86, 0x00,\n  0x89, 0x00, 0x86, 0x00, 0x86, 0x00, 0x88, 0x00, 0x89, 0x00, 0x89, 0x00,\n  0x89, 0x00, 0x8c, 0x00, 0x8b, 0x00, 0x8e, 0x00, 0x8e, 0x00, 0x91, 0x00,\n  0x8c, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x91, 0x00, 0x91, 0x00, 0x92, 0x00,\n  0x91, 0x00, 0x94, 0x00, 0x92, 0x00, 0x94, 0x00, 0x94, 0x00, 0x92, 0x00,\n  0x98, 0x00, 0x94, 0x00, 0x95, 0x00, 0x94, 0x00, 0x98, 0x00, 0x98, 0x00,\n  0x98, 0x00, 0x97, 0x00, 0x95, 0x00, 0x98, 0x00, 0x9a, 0x00, 0x9b, 0x00,\n  0x98, 0x00, 0x98, 0x00, 0x9a, 0x00, 0x9a, 0x00, 0x9a, 0x00, 0x9a, 0x00,\n  0x9e, 0x00, 0x9b, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0x9e, 0x00,\n  0x9d, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0x9d, 0x00,\n  0xa0, 0x00, 0x9e, 0x00, 0xa1, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0xa0, 0x00,\n  0xa1, 0x00, 0x9e, 0x00, 0xa1, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0xa3, 0x00,\n  0xa1, 0x00, 0x9e, 0x00, 0xa4, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0xa4, 0x00,\n  0xa0, 0x00, 0xa0, 0x00, 0xa3, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0xa4, 0x00,\n  0xa1, 0x00, 0xa3, 0x00, 0xa3, 0x00, 0xa3, 0x00, 0xa3, 0x00, 0xa3, 0x00,\n  0xa6, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0xa3, 0x00, 0xa4, 0x00, 0xa1, 0x00,\n  0xa4, 0x00, 0xa0, 0x00, 0xa3, 0x00, 0xa4, 0x00, 0xa1, 0x00, 0xa3, 0x00,\n  0xa1, 0x00, 0xa1, 0x00, 0xa3, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0xa1, 0x00,\n  0xa3, 0x00, 0x9e, 0x00, 0xa0, 0x00, 0xa3, 0x00, 0x9e, 0x00, 0x9e, 0x00,\n  0xa0, 0x00, 0x9e, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0x9d, 0x00, 0x9e, 0x00,\n  0x9e, 0x00, 0x9d, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0x9b, 0x00, 0x9e, 0x00,\n  0x9b, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0x98, 0x00, 0x9d, 0x00, 0x97, 0x00,\n  0x9d, 0x00, 0x9b, 0x00, 0x98, 0x00, 0x98, 0x00, 0x98, 0x00, 0x9b, 0x00,\n  0x97, 0x00, 0x98, 0x00, 0x97, 0x00, 0x97, 0x00, 0x98, 0x00, 0x97, 0x00,\n  0x97, 0x00, 0x95, 0x00, 0x95, 0x00, 0x95, 0x00, 0x94, 0x00, 0x92, 0x00,\n  0x94, 0x00, 0x8f, 0x00, 0x92, 0x00, 0x8f, 0x00, 0x91, 0x00, 0x91, 0x00,\n  0x8f, 0x00, 0x8f, 0x00, 0x8e, 0x00, 0x8e, 0x00, 0x8e, 0x00, 0x8c, 0x00,\n  0x8e, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x89, 0x00, 0x89, 0x00, 0x89, 0x00,\n  0x89, 0x00, 0x89, 0x00, 0x88, 0x00, 0x86, 0x00, 0x86, 0x00, 0x86, 0x00,\n  0x86, 0x00, 0x85, 0x00, 0x83, 0x00, 0x85, 0x00, 0x83, 0x00, 0x83, 0x00,\n  0x80, 0x00, 0x83, 0x00, 0x7f, 0x00, 0x7f, 0x00, 0x7d, 0x00, 0x7c, 0x00,\n  0x80, 0x00, 0x7c, 0x00, 0x7d, 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x79, 0x00,\n  0x7d, 0x00, 0x77, 0x00, 0x79, 0x00, 0x7a, 0x00, 0x74, 0x00, 0x77, 0x00,\n  0x73, 0x00, 0x73, 0x00, 0x76, 0x00, 0x73, 0x00, 0x70, 0x00, 0x70, 0x00,\n  0x70, 0x00, 0x6e, 0x00, 0x71, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x6e, 0x00,\n  0x6b, 0x00, 0x68, 0x00, 0x68, 0x00, 0x6b, 0x00, 0x67, 0x00, 0x68, 0x00,\n  0x64, 0x00, 0x67, 0x00, 0x64, 0x00, 0x62, 0x00, 0x65, 0x00, 0x62, 0x00,\n  0x5f, 0x00, 0x61, 0x00, 0x5e, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x5e, 0x00,\n  0x5b, 0x00, 0x5b, 0x00, 0x5b, 0x00, 0x58, 0x00, 0x5b, 0x00, 0x59, 0x00,\n  0x55, 0x00, 0x55, 0x00, 0x53, 0x00, 0x53, 0x00, 0x50, 0x00, 0x50, 0x00,\n  0x50, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4c, 0x00,\n  0x49, 0x00, 0x47, 0x00, 0x49, 0x00, 0x43, 0x00, 0x46, 0x00, 0x44, 0x00,\n  0x43, 0x00, 0x46, 0x00, 0x43, 0x00, 0x41, 0x00, 0x3d, 0x00, 0x40, 0x00,\n  0x3e, 0x00, 0x40, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x37, 0x00,\n  0x3b, 0x00, 0x34, 0x00, 0x37, 0x00, 0x34, 0x00, 0x32, 0x00, 0x34, 0x00,\n  0x34, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2c, 0x00,\n  0x2c, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x29, 0x00, 0x29, 0x00, 0x26, 0x00,\n  0x25, 0x00, 0x25, 0x00, 0x23, 0x00, 0x23, 0x00, 0x1f, 0x00, 0x22, 0x00,\n  0x1d, 0x00, 0x20, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1a, 0x00,\n  0x1a, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x14, 0x00, 0x16, 0x00, 0x13, 0x00,\n  0x11, 0x00, 0x13, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0d, 0x00,\n  0x0e, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x08, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff,\n  0xf3, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xef, 0xff, 0xec, 0xff, 0xec, 0xff, 0xea, 0xff, 0xea, 0xff,\n  0xe4, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe3, 0xff,\n  0xe3, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff,\n  0xdd, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xda, 0xff,\n  0xd8, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xd5, 0xff, 0xcf, 0xff,\n  0xd1, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xd2, 0xff, 0xce, 0xff, 0xcb, 0xff,\n  0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xc6, 0xff,\n  0xc8, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xc0, 0xff, 0xc0, 0xff,\n  0xc0, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbd, 0xff, 0xbf, 0xff, 0xba, 0xff,\n  0xbc, 0xff, 0xb9, 0xff, 0xb7, 0xff, 0xbc, 0xff, 0xb7, 0xff, 0xb6, 0xff,\n  0xb6, 0xff, 0xb6, 0xff, 0xb3, 0xff, 0xb3, 0xff, 0xb4, 0xff, 0xb3, 0xff,\n  0xb0, 0xff, 0xb1, 0xff, 0xad, 0xff, 0xb1, 0xff, 0xad, 0xff, 0xae, 0xff,\n  0xad, 0xff, 0xad, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0xa8, 0xff,\n  0xa8, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa7, 0xff, 0xa2, 0xff,\n  0xa7, 0xff, 0xa2, 0xff, 0xa2, 0xff, 0xa1, 0xff, 0x9f, 0xff, 0x9f, 0xff,\n  0x9e, 0xff, 0xa1, 0xff, 0x99, 0xff, 0x9f, 0xff, 0x9c, 0xff, 0x9c, 0xff,\n  0x99, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x98, 0xff, 0x99, 0xff, 0x98, 0xff,\n  0x98, 0xff, 0x95, 0xff, 0x98, 0xff, 0x95, 0xff, 0x95, 0xff, 0x93, 0xff,\n  0x92, 0xff, 0x95, 0xff, 0x90, 0xff, 0x93, 0xff, 0x90, 0xff, 0x92, 0xff,\n  0x90, 0xff, 0x90, 0xff, 0x92, 0xff, 0x8d, 0xff, 0x8f, 0xff, 0x8d, 0xff,\n  0x8f, 0xff, 0x8d, 0xff, 0x8d, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0x8c, 0xff,\n  0x8a, 0xff, 0x89, 0xff, 0x8a, 0xff, 0x8a, 0xff, 0x89, 0xff, 0x8a, 0xff,\n  0x84, 0xff, 0x89, 0xff, 0x8a, 0xff, 0x89, 0xff, 0x86, 0xff, 0x86, 0xff,\n  0x87, 0xff, 0x83, 0xff, 0x87, 0xff, 0x83, 0xff, 0x86, 0xff, 0x81, 0xff,\n  0x83, 0xff, 0x81, 0xff, 0x81, 0xff, 0x81, 0xff, 0x83, 0xff, 0x83, 0xff,\n  0x81, 0xff, 0x81, 0xff, 0x81, 0xff, 0x81, 0xff, 0x80, 0xff, 0x7e, 0xff,\n  0x7d, 0xff, 0x7d, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x7e, 0xff,\n  0x7d, 0xff, 0x80, 0xff, 0x7e, 0xff, 0x7d, 0xff, 0x7e, 0xff, 0x7b, 0xff,\n  0x7d, 0xff, 0x7d, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x7b, 0xff, 0x7b, 0xff,\n  0x7d, 0xff, 0x7b, 0xff, 0x7d, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x7d, 0xff,\n  0x7b, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x7b, 0xff, 0x7b, 0xff,\n  0x7a, 0xff, 0x7b, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x7b, 0xff, 0x7d, 0xff,\n  0x7a, 0xff, 0x7a, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x7b, 0xff, 0x7b, 0xff,\n  0x7b, 0xff, 0x7b, 0xff, 0x78, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x7a, 0xff,\n  0x78, 0xff, 0x7a, 0xff, 0x7d, 0xff, 0x7a, 0xff, 0x7b, 0xff, 0x7b, 0xff,\n  0x78, 0xff, 0x7b, 0xff, 0x78, 0xff, 0x7b, 0xff, 0x7a, 0xff, 0x7a, 0xff,\n  0x7e, 0xff, 0x7a, 0xff, 0x7d, 0xff, 0x80, 0xff, 0x7b, 0xff, 0x80, 0xff,\n  0x7b, 0xff, 0x7b, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x7e, 0xff,\n  0x7b, 0xff, 0x7d, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x80, 0xff, 0x7e, 0xff,\n  0x7d, 0xff, 0x80, 0xff, 0x80, 0xff, 0x80, 0xff, 0x81, 0xff, 0x7e, 0xff,\n  0x83, 0xff, 0x7d, 0xff, 0x83, 0xff, 0x83, 0xff, 0x80, 0xff, 0x81, 0xff,\n  0x83, 0xff, 0x83, 0xff, 0x83, 0xff, 0x83, 0xff, 0x86, 0xff, 0x83, 0xff,\n  0x83, 0xff, 0x83, 0xff, 0x86, 0xff, 0x84, 0xff, 0x86, 0xff, 0x84, 0xff,\n  0x86, 0xff, 0x87, 0xff, 0x89, 0xff, 0x87, 0xff, 0x87, 0xff, 0x8a, 0xff,\n  0x87, 0xff, 0x87, 0xff, 0x8c, 0xff, 0x89, 0xff, 0x8a, 0xff, 0x89, 0xff,\n  0x8d, 0xff, 0x8a, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0x8d, 0xff,\n  0x8d, 0xff, 0x8f, 0xff, 0x8d, 0xff, 0x8c, 0xff, 0x92, 0xff, 0x92, 0xff,\n  0x92, 0xff, 0x95, 0xff, 0x90, 0xff, 0x93, 0xff, 0x95, 0xff, 0x96, 0xff,\n  0x96, 0xff, 0x96, 0xff, 0x98, 0xff, 0x96, 0xff, 0x95, 0xff, 0x98, 0xff,\n  0x96, 0xff, 0x9b, 0xff, 0x99, 0xff, 0x99, 0xff, 0x98, 0xff, 0x98, 0xff,\n  0x9c, 0xff, 0x9c, 0xff, 0x9f, 0xff, 0x9e, 0xff, 0x9f, 0xff, 0x9f, 0xff,\n  0x9f, 0xff, 0x9f, 0xff, 0x9c, 0xff, 0xa1, 0xff, 0xa4, 0xff, 0x9f, 0xff,\n  0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa7, 0xff, 0xa4, 0xff, 0xaa, 0xff,\n  0xaa, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa7, 0xff, 0xab, 0xff, 0xaa, 0xff,\n  0xaa, 0xff, 0xab, 0xff, 0xab, 0xff, 0xad, 0xff, 0xae, 0xff, 0xad, 0xff,\n  0xb3, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xb3, 0xff, 0xae, 0xff, 0xb3, 0xff,\n  0xb0, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff,\n  0xb9, 0xff, 0xb7, 0xff, 0xb9, 0xff, 0xba, 0xff, 0xba, 0xff, 0xbd, 0xff,\n  0xba, 0xff, 0xbd, 0xff, 0xc0, 0xff, 0xbd, 0xff, 0xc2, 0xff, 0xbf, 0xff,\n  0xc0, 0xff, 0xc0, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc5, 0xff,\n  0xc5, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xcb, 0xff,\n  0xc8, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xcb, 0xff, 0xcf, 0xff, 0xce, 0xff,\n  0xce, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xd4, 0xff,\n  0xd5, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd7, 0xff,\n  0xd8, 0xff, 0xd8, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xdd, 0xff,\n  0xe0, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe4, 0xff,\n  0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe9, 0xff,\n  0xea, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xe9, 0xff, 0xed, 0xff,\n  0xf0, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf5, 0xff,\n  0xf3, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x0a, 0x00,\n  0x04, 0x00, 0x08, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x08, 0x00,\n  0x0e, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x11, 0x00, 0x11, 0x00,\n  0x11, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00,\n  0x16, 0x00, 0x19, 0x00, 0x19, 0x00, 0x17, 0x00, 0x1c, 0x00, 0x1a, 0x00,\n  0x1a, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x1d, 0x00,\n  0x20, 0x00, 0x20, 0x00, 0x22, 0x00, 0x22, 0x00, 0x23, 0x00, 0x25, 0x00,\n  0x22, 0x00, 0x26, 0x00, 0x26, 0x00, 0x28, 0x00, 0x26, 0x00, 0x28, 0x00,\n  0x2b, 0x00, 0x28, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x2b, 0x00,\n  0x2e, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x31, 0x00, 0x34, 0x00,\n  0x32, 0x00, 0x31, 0x00, 0x35, 0x00, 0x35, 0x00, 0x32, 0x00, 0x37, 0x00,\n  0x35, 0x00, 0x37, 0x00, 0x37, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x3d, 0x00,\n  0x3a, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x40, 0x00, 0x3e, 0x00,\n  0x3e, 0x00, 0x40, 0x00, 0x40, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x43, 0x00,\n  0x3e, 0x00, 0x41, 0x00, 0x44, 0x00, 0x44, 0x00, 0x43, 0x00, 0x46, 0x00,\n  0x47, 0x00, 0x44, 0x00, 0x46, 0x00, 0x46, 0x00, 0x47, 0x00, 0x49, 0x00,\n  0x49, 0x00, 0x4a, 0x00, 0x4d, 0x00, 0x4c, 0x00, 0x4a, 0x00, 0x4c, 0x00,\n  0x4d, 0x00, 0x50, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x4d, 0x00, 0x50, 0x00,\n  0x50, 0x00, 0x4f, 0x00, 0x52, 0x00, 0x50, 0x00, 0x55, 0x00, 0x50, 0x00,\n  0x53, 0x00, 0x56, 0x00, 0x53, 0x00, 0x56, 0x00, 0x53, 0x00, 0x56, 0x00,\n  0x58, 0x00, 0x59, 0x00, 0x56, 0x00, 0x58, 0x00, 0x58, 0x00, 0x5b, 0x00,\n  0x59, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0x58, 0x00, 0x5c, 0x00, 0x5b, 0x00,\n  0x5b, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5c, 0x00, 0x5e, 0x00, 0x5e, 0x00,\n  0x5c, 0x00, 0x5f, 0x00, 0x5f, 0x00, 0x5e, 0x00, 0x62, 0x00, 0x5e, 0x00,\n  0x62, 0x00, 0x61, 0x00, 0x61, 0x00, 0x62, 0x00, 0x62, 0x00, 0x64, 0x00,\n  0x64, 0x00, 0x62, 0x00, 0x64, 0x00, 0x64, 0x00, 0x64, 0x00, 0x64, 0x00,\n  0x65, 0x00, 0x65, 0x00, 0x64, 0x00, 0x68, 0x00, 0x64, 0x00, 0x68, 0x00,\n  0x65, 0x00, 0x65, 0x00, 0x67, 0x00, 0x67, 0x00, 0x67, 0x00, 0x65, 0x00,\n  0x6a, 0x00, 0x6a, 0x00, 0x67, 0x00, 0x68, 0x00, 0x6b, 0x00, 0x6d, 0x00,\n  0x68, 0x00, 0x6a, 0x00, 0x6d, 0x00, 0x67, 0x00, 0x6d, 0x00, 0x67, 0x00,\n  0x6d, 0x00, 0x68, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x68, 0x00, 0x6a, 0x00,\n  0x6a, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x6d, 0x00,\n  0x6b, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x6b, 0x00, 0x6d, 0x00,\n  0x6b, 0x00, 0x71, 0x00, 0x6b, 0x00, 0x6d, 0x00, 0x6d, 0x00, 0x6b, 0x00,\n  0x6e, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x6d, 0x00,\n  0x6e, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x6b, 0x00, 0x6d, 0x00, 0x6d, 0x00,\n  0x6b, 0x00, 0x70, 0x00, 0x6e, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x6a, 0x00,\n  0x6e, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x6d, 0x00, 0x6a, 0x00, 0x6e, 0x00,\n  0x6b, 0x00, 0x6a, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x6b, 0x00,\n  0x6a, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x67, 0x00,\n  0x6b, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x6b, 0x00, 0x6b, 0x00,\n  0x6a, 0x00, 0x6a, 0x00, 0x68, 0x00, 0x6b, 0x00, 0x67, 0x00, 0x6a, 0x00,\n  0x68, 0x00, 0x68, 0x00, 0x67, 0x00, 0x68, 0x00, 0x68, 0x00, 0x6b, 0x00,\n  0x65, 0x00, 0x65, 0x00, 0x68, 0x00, 0x67, 0x00, 0x68, 0x00, 0x65, 0x00,\n  0x67, 0x00, 0x65, 0x00, 0x65, 0x00, 0x64, 0x00, 0x64, 0x00, 0x64, 0x00,\n  0x65, 0x00, 0x64, 0x00, 0x5f, 0x00, 0x64, 0x00, 0x62, 0x00, 0x5f, 0x00,\n  0x61, 0x00, 0x61, 0x00, 0x61, 0x00, 0x64, 0x00, 0x5f, 0x00, 0x61, 0x00,\n  0x61, 0x00, 0x5e, 0x00, 0x61, 0x00, 0x5e, 0x00, 0x61, 0x00, 0x5c, 0x00,\n  0x5f, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5c, 0x00, 0x5b, 0x00, 0x5e, 0x00,\n  0x59, 0x00, 0x5c, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x58, 0x00, 0x5b, 0x00,\n  0x59, 0x00, 0x55, 0x00, 0x58, 0x00, 0x55, 0x00, 0x56, 0x00, 0x55, 0x00,\n  0x58, 0x00, 0x53, 0x00, 0x53, 0x00, 0x53, 0x00, 0x52, 0x00, 0x55, 0x00,\n  0x50, 0x00, 0x53, 0x00, 0x50, 0x00, 0x52, 0x00, 0x50, 0x00, 0x50, 0x00,\n  0x50, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x4d, 0x00, 0x4d, 0x00,\n  0x4d, 0x00, 0x4d, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x47, 0x00,\n  0x4a, 0x00, 0x47, 0x00, 0x47, 0x00, 0x46, 0x00, 0x46, 0x00, 0x46, 0x00,\n  0x46, 0x00, 0x49, 0x00, 0x41, 0x00, 0x44, 0x00, 0x43, 0x00, 0x44, 0x00,\n  0x43, 0x00, 0x43, 0x00, 0x44, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x40, 0x00,\n  0x3e, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3a, 0x00, 0x3d, 0x00,\n  0x3b, 0x00, 0x38, 0x00, 0x3b, 0x00, 0x37, 0x00, 0x38, 0x00, 0x37, 0x00,\n  0x38, 0x00, 0x3a, 0x00, 0x35, 0x00, 0x35, 0x00, 0x32, 0x00, 0x34, 0x00,\n  0x31, 0x00, 0x32, 0x00, 0x32, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x31, 0x00,\n  0x31, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x2b, 0x00,\n  0x28, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x26, 0x00, 0x28, 0x00, 0x26, 0x00,\n  0x29, 0x00, 0x28, 0x00, 0x26, 0x00, 0x26, 0x00, 0x25, 0x00, 0x25, 0x00,\n  0x22, 0x00, 0x26, 0x00, 0x20, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1f, 0x00,\n  0x22, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1c, 0x00,\n  0x1a, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x17, 0x00, 0x19, 0x00, 0x17, 0x00,\n  0x16, 0x00, 0x17, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x13, 0x00,\n  0x14, 0x00, 0x11, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x0e, 0x00,\n  0x10, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0b, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x07, 0x00,\n  0x04, 0x00, 0x08, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff,\n  0xf3, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xef, 0xff, 0xed, 0xff, 0xec, 0xff, 0xed, 0xff, 0xec, 0xff, 0xec, 0xff,\n  0xec, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe7, 0xff,\n  0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe1, 0xff,\n  0xe6, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe0, 0xff,\n  0xe0, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdb, 0xff,\n  0xdd, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xda, 0xff,\n  0xd5, 0xff, 0xda, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xda, 0xff, 0xd2, 0xff,\n  0xd5, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xcf, 0xff,\n  0xd1, 0xff, 0xcf, 0xff, 0xcc, 0xff, 0xd1, 0xff, 0xce, 0xff, 0xcf, 0xff,\n  0xc9, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xc6, 0xff, 0xce, 0xff, 0xcc, 0xff,\n  0xcb, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xc6, 0xff,\n  0xc8, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc3, 0xff, 0xc6, 0xff,\n  0xc3, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xc3, 0xff, 0xc2, 0xff,\n  0xc3, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xbd, 0xff, 0xbd, 0xff,\n  0xbd, 0xff, 0xbf, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xba, 0xff,\n  0xba, 0xff, 0xbd, 0xff, 0xba, 0xff, 0xba, 0xff, 0xbd, 0xff, 0xb7, 0xff,\n  0xba, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb9, 0xff, 0xb7, 0xff,\n  0xb6, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb4, 0xff, 0xb6, 0xff,\n  0xb3, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb3, 0xff, 0xb1, 0xff,\n  0xb1, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xb1, 0xff,\n  0xb3, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xb1, 0xff, 0xad, 0xff,\n  0xae, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xb0, 0xff,\n  0xab, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xae, 0xff, 0xab, 0xff,\n  0xab, 0xff, 0xad, 0xff, 0xad, 0xff, 0xab, 0xff, 0xad, 0xff, 0xad, 0xff,\n  0xab, 0xff, 0xab, 0xff, 0xab, 0xff, 0xab, 0xff, 0xab, 0xff, 0xa7, 0xff,\n  0xa5, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0xa8, 0xff, 0xab, 0xff,\n  0xa8, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa7, 0xff,\n  0xa7, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa8, 0xff, 0xa7, 0xff,\n  0xa4, 0xff, 0xa7, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa5, 0xff,\n  0xa8, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xa7, 0xff, 0xab, 0xff, 0xa4, 0xff,\n  0xa5, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa4, 0xff, 0xa7, 0xff,\n  0xa2, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa7, 0xff,\n  0xa5, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xaa, 0xff, 0xa5, 0xff, 0xa8, 0xff,\n  0xa5, 0xff, 0xa5, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa5, 0xff,\n  0xa5, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xa8, 0xff,\n  0xa7, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xab, 0xff, 0xa4, 0xff, 0xaa, 0xff,\n  0xa7, 0xff, 0xa5, 0xff, 0xab, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xaa, 0xff,\n  0xa7, 0xff, 0xab, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xaa, 0xff,\n  0xad, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xab, 0xff, 0xab, 0xff, 0xa8, 0xff,\n  0xab, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xad, 0xff, 0xaa, 0xff, 0xad, 0xff,\n  0xad, 0xff, 0xab, 0xff, 0xab, 0xff, 0xad, 0xff, 0xb0, 0xff, 0xad, 0xff,\n  0xb0, 0xff, 0xb0, 0xff, 0xab, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xad, 0xff,\n  0xae, 0xff, 0xae, 0xff, 0xb1, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xb1, 0xff,\n  0xb3, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb3, 0xff,\n  0xb1, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb1, 0xff,\n  0xb4, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb7, 0xff,\n  0xb9, 0xff, 0xb9, 0xff, 0xb6, 0xff, 0xba, 0xff, 0xb9, 0xff, 0xba, 0xff,\n  0xbd, 0xff, 0xba, 0xff, 0xbc, 0xff, 0xbc, 0xff, 0xb9, 0xff, 0xbc, 0xff,\n  0xba, 0xff, 0xba, 0xff, 0xbf, 0xff, 0xbc, 0xff, 0xbf, 0xff, 0xbf, 0xff,\n  0xbf, 0xff, 0xbc, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xbf, 0xff,\n  0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc3, 0xff,\n  0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc5, 0xff,\n  0xc9, 0xff, 0xc2, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc8, 0xff,\n  0xc8, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff,\n  0xcc, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0xcf, 0xff,\n  0xd2, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff,\n  0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xd5, 0xff,\n  0xd5, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xd5, 0xff,\n  0xd8, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff,\n  0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xdb, 0xff,\n  0xe0, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xde, 0xff, 0xe1, 0xff,\n  0xe1, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe6, 0xff,\n  0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe6, 0xff,\n  0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xec, 0xff,\n  0xec, 0xff, 0xec, 0xff, 0xec, 0xff, 0xed, 0xff, 0xed, 0xff, 0xef, 0xff,\n  0xed, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff,\n  0xf5, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00,\n  0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00,\n  0x11, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x13, 0x00,\n  0x10, 0x00, 0x13, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00,\n  0x16, 0x00, 0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x17, 0x00, 0x1a, 0x00,\n  0x1a, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1d, 0x00,\n  0x1c, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x20, 0x00,\n  0x1f, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x22, 0x00,\n  0x20, 0x00, 0x23, 0x00, 0x23, 0x00, 0x23, 0x00, 0x25, 0x00, 0x25, 0x00,\n  0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x28, 0x00, 0x28, 0x00, 0x29, 0x00,\n  0x26, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x29, 0x00, 0x28, 0x00, 0x2c, 0x00,\n  0x2b, 0x00, 0x2b, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x2f, 0x00,\n  0x2f, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x31, 0x00,\n  0x34, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x31, 0x00, 0x32, 0x00,\n  0x35, 0x00, 0x32, 0x00, 0x34, 0x00, 0x35, 0x00, 0x37, 0x00, 0x32, 0x00,\n  0x37, 0x00, 0x34, 0x00, 0x35, 0x00, 0x37, 0x00, 0x35, 0x00, 0x37, 0x00,\n  0x37, 0x00, 0x38, 0x00, 0x37, 0x00, 0x38, 0x00, 0x3a, 0x00, 0x37, 0x00,\n  0x38, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3d, 0x00,\n  0x3e, 0x00, 0x3d, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3e, 0x00,\n  0x3d, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x40, 0x00,\n  0x3e, 0x00, 0x3e, 0x00, 0x41, 0x00, 0x40, 0x00, 0x41, 0x00, 0x41, 0x00,\n  0x40, 0x00, 0x41, 0x00, 0x41, 0x00, 0x44, 0x00, 0x43, 0x00, 0x43, 0x00,\n  0x44, 0x00, 0x40, 0x00, 0x43, 0x00, 0x43, 0x00, 0x43, 0x00, 0x43, 0x00,\n  0x44, 0x00, 0x43, 0x00, 0x43, 0x00, 0x46, 0x00, 0x44, 0x00, 0x47, 0x00,\n  0x43, 0x00, 0x46, 0x00, 0x46, 0x00, 0x44, 0x00, 0x44, 0x00, 0x44, 0x00,\n  0x47, 0x00, 0x46, 0x00, 0x46, 0x00, 0x46, 0x00, 0x49, 0x00, 0x46, 0x00,\n  0x46, 0x00, 0x46, 0x00, 0x47, 0x00, 0x47, 0x00, 0x47, 0x00, 0x47, 0x00,\n  0x47, 0x00, 0x47, 0x00, 0x47, 0x00, 0x4d, 0x00, 0x46, 0x00, 0x49, 0x00,\n  0x47, 0x00, 0x49, 0x00, 0x47, 0x00, 0x47, 0x00, 0x49, 0x00, 0x46, 0x00,\n  0x47, 0x00, 0x49, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x47, 0x00,\n  0x47, 0x00, 0x47, 0x00, 0x49, 0x00, 0x47, 0x00, 0x4c, 0x00, 0x4a, 0x00,\n  0x47, 0x00, 0x4c, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4a, 0x00,\n  0x49, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x49, 0x00,\n  0x4a, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x47, 0x00, 0x49, 0x00, 0x4c, 0x00,\n  0x46, 0x00, 0x4c, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x47, 0x00, 0x47, 0x00,\n  0x4a, 0x00, 0x46, 0x00, 0x4d, 0x00, 0x46, 0x00, 0x4a, 0x00, 0x46, 0x00,\n  0x47, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x47, 0x00, 0x46, 0x00, 0x47, 0x00,\n  0x46, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x49, 0x00, 0x46, 0x00, 0x49, 0x00,\n  0x47, 0x00, 0x44, 0x00, 0x47, 0x00, 0x49, 0x00, 0x47, 0x00, 0x44, 0x00,\n  0x4a, 0x00, 0x43, 0x00, 0x46, 0x00, 0x47, 0x00, 0x47, 0x00, 0x46, 0x00,\n  0x47, 0x00, 0x44, 0x00, 0x46, 0x00, 0x47, 0x00, 0x44, 0x00, 0x43, 0x00,\n  0x44, 0x00, 0x46, 0x00, 0x43, 0x00, 0x47, 0x00, 0x44, 0x00, 0x44, 0x00,\n  0x44, 0x00, 0x41, 0x00, 0x44, 0x00, 0x43, 0x00, 0x43, 0x00, 0x44, 0x00,\n  0x43, 0x00, 0x43, 0x00, 0x43, 0x00, 0x43, 0x00, 0x40, 0x00, 0x41, 0x00,\n  0x43, 0x00, 0x40, 0x00, 0x40, 0x00, 0x40, 0x00, 0x40, 0x00, 0x40, 0x00,\n  0x3e, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x3d, 0x00,\n  0x3d, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x3b, 0x00,\n  0x3e, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x40, 0x00, 0x3b, 0x00, 0x3b, 0x00,\n  0x3b, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3a, 0x00, 0x38, 0x00,\n  0x3b, 0x00, 0x38, 0x00, 0x38, 0x00, 0x37, 0x00, 0x35, 0x00, 0x38, 0x00,\n  0x35, 0x00, 0x38, 0x00, 0x34, 0x00, 0x37, 0x00, 0x37, 0x00, 0x34, 0x00,\n  0x35, 0x00, 0x37, 0x00, 0x35, 0x00, 0x34, 0x00, 0x32, 0x00, 0x32, 0x00,\n  0x32, 0x00, 0x34, 0x00, 0x34, 0x00, 0x32, 0x00, 0x31, 0x00, 0x2f, 0x00,\n  0x31, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x31, 0x00,\n  0x2f, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x2c, 0x00,\n  0x2e, 0x00, 0x2e, 0x00, 0x28, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x2b, 0x00,\n  0x2b, 0x00, 0x29, 0x00, 0x29, 0x00, 0x29, 0x00, 0x29, 0x00, 0x28, 0x00,\n  0x28, 0x00, 0x26, 0x00, 0x26, 0x00, 0x25, 0x00, 0x25, 0x00, 0x25, 0x00,\n  0x25, 0x00, 0x23, 0x00, 0x26, 0x00, 0x22, 0x00, 0x25, 0x00, 0x22, 0x00,\n  0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1f, 0x00,\n  0x1f, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1a, 0x00, 0x1f, 0x00,\n  0x1d, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x19, 0x00, 0x19, 0x00,\n  0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x16, 0x00, 0x17, 0x00, 0x16, 0x00,\n  0x17, 0x00, 0x16, 0x00, 0x14, 0x00, 0x17, 0x00, 0x13, 0x00, 0x14, 0x00,\n  0x11, 0x00, 0x13, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x10, 0x00,\n  0x10, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0e, 0x00,\n  0x0e, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x0d, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff,\n  0xf5, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xf2, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xef, 0xff, 0xed, 0xff,\n  0xf0, 0xff, 0xed, 0xff, 0xec, 0xff, 0xef, 0xff, 0xea, 0xff, 0xec, 0xff,\n  0xec, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff,\n  0xe7, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xea, 0xff,\n  0xe7, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff,\n  0xe3, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe0, 0xff,\n  0xdd, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe1, 0xff,\n  0xde, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdb, 0xff,\n  0xdd, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff,\n  0xd8, 0xff, 0xde, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xd7, 0xff,\n  0xdb, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd5, 0xff,\n  0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd7, 0xff,\n  0xd2, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xd2, 0xff,\n  0xd4, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff,\n  0xd2, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff,\n  0xcf, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xd1, 0xff,\n  0xce, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xcc, 0xff,\n  0xcc, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xcb, 0xff, 0xcc, 0xff, 0xce, 0xff,\n  0xc9, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xc8, 0xff,\n  0xcb, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xcb, 0xff,\n  0xc6, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xc8, 0xff,\n  0xcb, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xcb, 0xff,\n  0xc9, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc5, 0xff,\n  0xc5, 0xff, 0xc5, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc2, 0xff, 0xc6, 0xff,\n  0xc5, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xc6, 0xff,\n  0xc5, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc3, 0xff,\n  0xc2, 0xff, 0xc6, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc6, 0xff, 0xc5, 0xff,\n  0xc6, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff,\n  0xc2, 0xff, 0xc5, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc2, 0xff,\n  0xc8, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc5, 0xff,\n  0xc3, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xc5, 0xff, 0xc3, 0xff,\n  0xc3, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc5, 0xff,\n  0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc3, 0xff,\n  0xc3, 0xff, 0xc6, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc3, 0xff,\n  0xc3, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc5, 0xff,\n  0xc5, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc5, 0xff,\n  0xc6, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xc5, 0xff,\n  0xc6, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc9, 0xff, 0xc8, 0xff,\n  0xc6, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc9, 0xff,\n  0xc8, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xc9, 0xff,\n  0xcb, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xc8, 0xff,\n  0xcb, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xcb, 0xff,\n  0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xcc, 0xff,\n  0xcb, 0xff, 0xcf, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xce, 0xff, 0xcf, 0xff,\n  0xce, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xcf, 0xff,\n  0xce, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xd2, 0xff,\n  0xcf, 0xff, 0xd1, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd5, 0xff,\n  0xd4, 0xff, 0xd2, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff,\n  0xd5, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xd7, 0xff,\n  0xd4, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xdb, 0xff,\n  0xd8, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xdb, 0xff,\n  0xdd, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff,\n  0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdd, 0xff,\n  0xe0, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff,\n  0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe6, 0xff, 0xe1, 0xff,\n  0xe4, 0xff, 0xe1, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe7, 0xff,\n  0xe4, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff,\n  0xe7, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xe7, 0xff,\n  0xe9, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xec, 0xff, 0xec, 0xff, 0xec, 0xff,\n  0xea, 0xff, 0xef, 0xff, 0xec, 0xff, 0xef, 0xff, 0xef, 0xff, 0xec, 0xff,\n  0xf0, 0xff, 0xed, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x0b, 0x00,\n  0x07, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x08, 0x00,\n  0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x0d, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00,\n  0x0e, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x10, 0x00,\n  0x11, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x10, 0x00, 0x14, 0x00,\n  0x13, 0x00, 0x14, 0x00, 0x11, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00,\n  0x14, 0x00, 0x13, 0x00, 0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x16, 0x00,\n  0x17, 0x00, 0x17, 0x00, 0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x19, 0x00,\n  0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x1c, 0x00,\n  0x1c, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x1f, 0x00, 0x19, 0x00,\n  0x1d, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x20, 0x00,\n  0x20, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1f, 0x00,\n  0x22, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x22, 0x00,\n  0x20, 0x00, 0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x23, 0x00,\n  0x22, 0x00, 0x25, 0x00, 0x20, 0x00, 0x25, 0x00, 0x25, 0x00, 0x22, 0x00,\n  0x23, 0x00, 0x23, 0x00, 0x28, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00,\n  0x25, 0x00, 0x28, 0x00, 0x26, 0x00, 0x26, 0x00, 0x28, 0x00, 0x25, 0x00,\n  0x26, 0x00, 0x28, 0x00, 0x26, 0x00, 0x29, 0x00, 0x28, 0x00, 0x26, 0x00,\n  0x29, 0x00, 0x26, 0x00, 0x29, 0x00, 0x28, 0x00, 0x29, 0x00, 0x2c, 0x00,\n  0x2c, 0x00, 0x2b, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x2c, 0x00,\n  0x29, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x2b, 0x00,\n  0x2e, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2c, 0x00,\n  0x2e, 0x00, 0x2c, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2c, 0x00,\n  0x31, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2f, 0x00,\n  0x2e, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x2f, 0x00,\n  0x32, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x2e, 0x00,\n  0x2f, 0x00, 0x31, 0x00, 0x32, 0x00, 0x31, 0x00, 0x32, 0x00, 0x2f, 0x00,\n  0x31, 0x00, 0x35, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x31, 0x00, 0x2f, 0x00,\n  0x2e, 0x00, 0x31, 0x00, 0x32, 0x00, 0x32, 0x00, 0x32, 0x00, 0x31, 0x00,\n  0x32, 0x00, 0x31, 0x00, 0x32, 0x00, 0x31, 0x00, 0x34, 0x00, 0x34, 0x00,\n  0x31, 0x00, 0x31, 0x00, 0x34, 0x00, 0x32, 0x00, 0x35, 0x00, 0x2c, 0x00,\n  0x31, 0x00, 0x31, 0x00, 0x34, 0x00, 0x32, 0x00, 0x31, 0x00, 0x34, 0x00,\n  0x31, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x34, 0x00, 0x32, 0x00,\n  0x2f, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x34, 0x00, 0x2f, 0x00,\n  0x32, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x34, 0x00,\n  0x31, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x34, 0x00, 0x2f, 0x00,\n  0x31, 0x00, 0x32, 0x00, 0x31, 0x00, 0x31, 0x00, 0x32, 0x00, 0x31, 0x00,\n  0x31, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x2e, 0x00,\n  0x2f, 0x00, 0x31, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x2e, 0x00,\n  0x31, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2c, 0x00,\n  0x2c, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2c, 0x00,\n  0x2e, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x2b, 0x00,\n  0x2c, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x2c, 0x00,\n  0x29, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x2c, 0x00,\n  0x2c, 0x00, 0x29, 0x00, 0x29, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x29, 0x00,\n  0x29, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x29, 0x00, 0x29, 0x00,\n  0x26, 0x00, 0x26, 0x00, 0x28, 0x00, 0x28, 0x00, 0x26, 0x00, 0x26, 0x00,\n  0x29, 0x00, 0x28, 0x00, 0x28, 0x00, 0x26, 0x00, 0x25, 0x00, 0x28, 0x00,\n  0x26, 0x00, 0x26, 0x00, 0x25, 0x00, 0x23, 0x00, 0x26, 0x00, 0x26, 0x00,\n  0x26, 0x00, 0x22, 0x00, 0x26, 0x00, 0x22, 0x00, 0x23, 0x00, 0x26, 0x00,\n  0x22, 0x00, 0x23, 0x00, 0x23, 0x00, 0x22, 0x00, 0x23, 0x00, 0x22, 0x00,\n  0x22, 0x00, 0x23, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x23, 0x00,\n  0x1d, 0x00, 0x22, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x1d, 0x00,\n  0x20, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1c, 0x00,\n  0x1d, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x19, 0x00, 0x1c, 0x00,\n  0x1c, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1a, 0x00,\n  0x1a, 0x00, 0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x17, 0x00, 0x19, 0x00,\n  0x19, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x16, 0x00, 0x17, 0x00,\n  0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x16, 0x00,\n  0x14, 0x00, 0x13, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x11, 0x00,\n  0x13, 0x00, 0x11, 0x00, 0x13, 0x00, 0x10, 0x00, 0x10, 0x00, 0x10, 0x00,\n  0x13, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x10, 0x00,\n  0x10, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0e, 0x00,\n  0x0e, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x0a, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x02, 0x00, 0x08, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf5, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf2, 0xff,\n  0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xed, 0xff,\n  0xef, 0xff, 0xef, 0xff, 0xea, 0xff, 0xed, 0xff, 0xed, 0xff, 0xed, 0xff,\n  0xec, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xed, 0xff,\n  0xea, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xec, 0xff,\n  0xe9, 0xff, 0xea, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe9, 0xff,\n  0xe7, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff,\n  0xe9, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe4, 0xff,\n  0xe6, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xe3, 0xff,\n  0xe1, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe3, 0xff,\n  0xe3, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe4, 0xff,\n  0xe3, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0xe1, 0xff,\n  0xe1, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xde, 0xff,\n  0xe1, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xe0, 0xff,\n  0xde, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xe0, 0xff,\n  0xdb, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xda, 0xff,\n  0xdd, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xde, 0xff,\n  0xdb, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff,\n  0xda, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xda, 0xff,\n  0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xda, 0xff,\n  0xd8, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd7, 0xff,\n  0xda, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xdb, 0xff,\n  0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd7, 0xff,\n  0xda, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd8, 0xff,\n  0xd8, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0xd7, 0xff, 0xd8, 0xff,\n  0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xda, 0xff,\n  0xd7, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd5, 0xff, 0xda, 0xff, 0xda, 0xff,\n  0xd7, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd7, 0xff,\n  0xda, 0xff, 0xd4, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xda, 0xff,\n  0xd7, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd7, 0xff,\n  0xda, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd8, 0xff,\n  0xda, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd8, 0xff,\n  0xd8, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xda, 0xff,\n  0xd8, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd8, 0xff,\n  0xda, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd8, 0xff,\n  0xda, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xda, 0xff,\n  0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff,\n  0xdb, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xdb, 0xff,\n  0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xda, 0xff,\n  0xe0, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xda, 0xff, 0xde, 0xff, 0xdd, 0xff,\n  0xe0, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xde, 0xff,\n  0xdd, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff,\n  0xdd, 0xff, 0xde, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff,\n  0xe0, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe1, 0xff,\n  0xe1, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe4, 0xff,\n  0xde, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff,\n  0xe3, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff,\n  0xe3, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff,\n  0xe6, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe6, 0xff,\n  0xe7, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe6, 0xff,\n  0xea, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xea, 0xff,\n  0xe7, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xec, 0xff,\n  0xec, 0xff, 0xea, 0xff, 0xec, 0xff, 0xec, 0xff, 0xef, 0xff, 0xec, 0xff,\n  0xec, 0xff, 0xed, 0xff, 0xec, 0xff, 0xed, 0xff, 0xed, 0xff, 0xef, 0xff,\n  0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff,\n  0xf2, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff,\n  0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff,\n  0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff,\n  0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff,\n  0xf5, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xf5, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0e, 0x00,\n  0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0d, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x11, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x10, 0x00,\n  0x0e, 0x00, 0x10, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x0e, 0x00,\n  0x10, 0x00, 0x13, 0x00, 0x10, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00,\n  0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x14, 0x00,\n  0x13, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00,\n  0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x13, 0x00, 0x16, 0x00,\n  0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00,\n  0x19, 0x00, 0x16, 0x00, 0x14, 0x00, 0x17, 0x00, 0x16, 0x00, 0x16, 0x00,\n  0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x1a, 0x00,\n  0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x16, 0x00,\n  0x19, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1a, 0x00,\n  0x19, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1a, 0x00,\n  0x1c, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1c, 0x00,\n  0x1d, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1f, 0x00,\n  0x1f, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1a, 0x00, 0x1f, 0x00,\n  0x1d, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00,\n  0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1f, 0x00,\n  0x1d, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x1d, 0x00, 0x22, 0x00, 0x1f, 0x00,\n  0x1f, 0x00, 0x23, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00,\n  0x20, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x20, 0x00, 0x22, 0x00, 0x1f, 0x00,\n  0x20, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x20, 0x00, 0x22, 0x00,\n  0x20, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x22, 0x00, 0x20, 0x00, 0x20, 0x00,\n  0x1f, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1f, 0x00,\n  0x20, 0x00, 0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x20, 0x00, 0x22, 0x00,\n  0x1f, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x1f, 0x00,\n  0x22, 0x00, 0x20, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x22, 0x00,\n  0x20, 0x00, 0x20, 0x00, 0x23, 0x00, 0x20, 0x00, 0x23, 0x00, 0x20, 0x00,\n  0x22, 0x00, 0x20, 0x00, 0x20, 0x00, 0x22, 0x00, 0x20, 0x00, 0x20, 0x00,\n  0x22, 0x00, 0x20, 0x00, 0x20, 0x00, 0x23, 0x00, 0x1d, 0x00, 0x20, 0x00,\n  0x20, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x20, 0x00, 0x22, 0x00,\n  0x1d, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x20, 0x00, 0x23, 0x00, 0x20, 0x00,\n  0x22, 0x00, 0x20, 0x00, 0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x1f, 0x00,\n  0x20, 0x00, 0x22, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x23, 0x00,\n  0x1f, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x1f, 0x00,\n  0x1f, 0x00, 0x20, 0x00, 0x1d, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1f, 0x00,\n  0x20, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x1d, 0x00, 0x22, 0x00, 0x1d, 0x00,\n  0x20, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1f, 0x00,\n  0x1d, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1d, 0x00,\n  0x1c, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1c, 0x00,\n  0x1a, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1c, 0x00,\n  0x1a, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x1f, 0x00, 0x19, 0x00,\n  0x1c, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x19, 0x00,\n  0x19, 0x00, 0x17, 0x00, 0x17, 0x00, 0x19, 0x00, 0x17, 0x00, 0x1a, 0x00,\n  0x19, 0x00, 0x17, 0x00, 0x19, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1a, 0x00,\n  0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x16, 0x00, 0x1c, 0x00, 0x17, 0x00,\n  0x17, 0x00, 0x17, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x16, 0x00,\n  0x14, 0x00, 0x19, 0x00, 0x13, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00,\n  0x17, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x17, 0x00, 0x11, 0x00,\n  0x14, 0x00, 0x16, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x10, 0x00,\n  0x16, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00,\n  0x10, 0x00, 0x13, 0x00, 0x10, 0x00, 0x10, 0x00, 0x13, 0x00, 0x11, 0x00,\n  0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x10, 0x00,\n  0x0e, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00,\n  0x10, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x10, 0x00,\n  0x0a, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0b, 0x00,\n  0x0a, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x02, 0x00,\n  0x0a, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x05, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf6, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfb, 0xff,\n  0xf6, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff,\n  0xf5, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xf2, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf3, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff,\n  0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf2, 0xff,\n  0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xf3, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xef, 0xff,\n  0xef, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff,\n  0xed, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff,\n  0xf0, 0xff, 0xec, 0xff, 0xed, 0xff, 0xed, 0xff, 0xec, 0xff, 0xef, 0xff,\n  0xea, 0xff, 0xef, 0xff, 0xec, 0xff, 0xec, 0xff, 0xec, 0xff, 0xea, 0xff,\n  0xed, 0xff, 0xec, 0xff, 0xec, 0xff, 0xea, 0xff, 0xec, 0xff, 0xec, 0xff,\n  0xe7, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xea, 0xff,\n  0xea, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xe9, 0xff,\n  0xea, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xea, 0xff,\n  0xe9, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff,\n  0xea, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff,\n  0xea, 0xff, 0xe4, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe7, 0xff,\n  0xe9, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe6, 0xff,\n  0xe9, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xea, 0xff,\n  0xe6, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe4, 0xff,\n  0xe6, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe4, 0xff,\n  0xe7, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe6, 0xff,\n  0xe6, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe6, 0xff,\n  0xe7, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe6, 0xff,\n  0xe6, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe7, 0xff,\n  0xe7, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe4, 0xff,\n  0xe4, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe7, 0xff,\n  0xe6, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe9, 0xff,\n  0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff,\n  0xe4, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe6, 0xff,\n  0xe6, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe4, 0xff,\n  0xe7, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe6, 0xff,\n  0xe6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe6, 0xff,\n  0xe7, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe6, 0xff,\n  0xe6, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe7, 0xff,\n  0xe6, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xe7, 0xff,\n  0xe7, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff,\n  0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xea, 0xff,\n  0xea, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xea, 0xff,\n  0xea, 0xff, 0xea, 0xff, 0xec, 0xff, 0xea, 0xff, 0xea, 0xff, 0xea, 0xff,\n  0xe9, 0xff, 0xea, 0xff, 0xea, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xea, 0xff,\n  0xed, 0xff, 0xec, 0xff, 0xea, 0xff, 0xed, 0xff, 0xec, 0xff, 0xec, 0xff,\n  0xed, 0xff, 0xec, 0xff, 0xed, 0xff, 0xed, 0xff, 0xed, 0xff, 0xed, 0xff,\n  0xec, 0xff, 0xf2, 0xff, 0xea, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff,\n  0xed, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xed, 0xff,\n  0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xed, 0xff,\n  0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xef, 0xff,\n  0xf2, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf2, 0xff,\n  0xf0, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff,\n  0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf5, 0xff,\n  0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff,\n  0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00,\n  0x05, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00,\n  0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x0b, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0d, 0x00,\n  0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00,\n  0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0d, 0x00,\n  0x0a, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x10, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00,\n  0x0d, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x10, 0x00, 0x11, 0x00,\n  0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x11, 0x00,\n  0x0e, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x10, 0x00,\n  0x10, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x10, 0x00, 0x13, 0x00,\n  0x0e, 0x00, 0x13, 0x00, 0x10, 0x00, 0x11, 0x00, 0x13, 0x00, 0x11, 0x00,\n  0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x14, 0x00, 0x10, 0x00,\n  0x13, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x13, 0x00, 0x10, 0x00, 0x11, 0x00,\n  0x11, 0x00, 0x13, 0x00, 0x11, 0x00, 0x10, 0x00, 0x11, 0x00, 0x13, 0x00,\n  0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x10, 0x00, 0x13, 0x00, 0x13, 0x00,\n  0x14, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00,\n  0x14, 0x00, 0x11, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00,\n  0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00,\n  0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00,\n  0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x17, 0x00, 0x16, 0x00,\n  0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00,\n  0x14, 0x00, 0x17, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00,\n  0x14, 0x00, 0x17, 0x00, 0x13, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00,\n  0x14, 0x00, 0x19, 0x00, 0x16, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00,\n  0x13, 0x00, 0x17, 0x00, 0x16, 0x00, 0x14, 0x00, 0x17, 0x00, 0x14, 0x00,\n  0x16, 0x00, 0x13, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00,\n  0x14, 0x00, 0x11, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00,\n  0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x13, 0x00,\n  0x14, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00,\n  0x17, 0x00, 0x14, 0x00, 0x16, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00,\n  0x13, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00,\n  0x11, 0x00, 0x16, 0x00, 0x11, 0x00, 0x16, 0x00, 0x16, 0x00, 0x11, 0x00,\n  0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x13, 0x00, 0x16, 0x00,\n  0x14, 0x00, 0x16, 0x00, 0x11, 0x00, 0x16, 0x00, 0x13, 0x00, 0x13, 0x00,\n  0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x10, 0x00,\n  0x13, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00, 0x11, 0x00, 0x11, 0x00,\n  0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00,\n  0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x11, 0x00, 0x11, 0x00,\n  0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00,\n  0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x16, 0x00, 0x10, 0x00, 0x13, 0x00,\n  0x10, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x13, 0x00, 0x0e, 0x00,\n  0x11, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x14, 0x00, 0x10, 0x00,\n  0x11, 0x00, 0x13, 0x00, 0x10, 0x00, 0x16, 0x00, 0x0e, 0x00, 0x0e, 0x00,\n  0x11, 0x00, 0x10, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0d, 0x00,\n  0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x10, 0x00,\n  0x0b, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x10, 0x00,\n  0x0b, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0e, 0x00,\n  0x10, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0e, 0x00,\n  0x0b, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x10, 0x00,\n  0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0b, 0x00,\n  0x0a, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00,\n  0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00,\n  0x07, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x05, 0x00, 0x0a, 0x00,\n  0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x07, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff,\n  0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf3, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf3, 0xff,\n  0xf2, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf0, 0xff,\n  0xf5, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff,\n  0xf0, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff,\n  0xf5, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf2, 0xff,\n  0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xf3, 0xff,\n  0xef, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xef, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xef, 0xff,\n  0xef, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf2, 0xff,\n  0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff,\n  0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xea, 0xff,\n  0xf3, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xed, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xec, 0xff,\n  0xf0, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xed, 0xff,\n  0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xec, 0xff, 0xec, 0xff,\n  0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff,\n  0xf2, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff,\n  0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff,\n  0xf0, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff,\n  0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xef, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xed, 0xff,\n  0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff,\n  0xf2, 0xff, 0xec, 0xff, 0xf5, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff,\n  0xef, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf0, 0xff,\n  0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf2, 0xff,\n  0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf0, 0xff,\n  0xf3, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff,\n  0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff,\n  0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff,\n  0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf3, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf5, 0xff,\n  0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf8, 0xff,\n  0xf3, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff,\n  0xf8, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xf5, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff,\n  0xf5, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfc, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x05, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x04, 0x00, 0x07, 0x00, 0x08, 0x00, 0x02, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x07, 0x00, 0x07, 0x00, 0x02, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00,\n  0x0a, 0x00, 0x07, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00,\n  0x0a, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0d, 0x00,\n  0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00,\n  0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0b, 0x00,\n  0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x0a, 0x00, 0x0b, 0x00,\n  0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00,\n  0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x10, 0x00,\n  0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x10, 0x00,\n  0x0a, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x10, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00,\n  0x0d, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0a, 0x00,\n  0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x10, 0x00,\n  0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00,\n  0x0d, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0b, 0x00,\n  0x11, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x0e, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x0d, 0x00,\n  0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x11, 0x00,\n  0x0d, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0e, 0x00,\n  0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0e, 0x00,\n  0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0d, 0x00,\n  0x10, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0e, 0x00,\n  0x10, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00,\n  0x10, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00,\n  0x0b, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00,\n  0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x0d, 0x00,\n  0x0a, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x08, 0x00,\n  0x10, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0e, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00,\n  0x0d, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x0d, 0x00,\n  0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00,\n  0x0a, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00,\n  0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00,\n  0x0a, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00,\n  0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x0a, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x04, 0x00, 0x07, 0x00, 0x08, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xf5, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf6, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff,\n  0xf3, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf2, 0xff,\n  0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf6, 0xff,\n  0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff,\n  0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf3, 0xff,\n  0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff,\n  0xf3, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff,\n  0xf6, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff,\n  0xf3, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf5, 0xff,\n  0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf3, 0xff,\n  0xf3, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf0, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff,\n  0xf3, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf2, 0xff,\n  0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff,\n  0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff,\n  0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xf3, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf6, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xf5, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf5, 0xff,\n  0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0xf6, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xf8, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x07, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0x07, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x08, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x08, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x08, 0x00, 0x04, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x05, 0x00, 0x0a, 0x00,\n  0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0a, 0x00,\n  0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x0a, 0x00,\n  0x07, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0b, 0x00,\n  0x07, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0b, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00,\n  0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0a, 0x00,\n  0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00,\n  0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x04, 0x00,\n  0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x0a, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x08, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x08, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x07, 0x00, 0x01, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x07, 0x00, 0x01, 0x00,\n  0x08, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0x04, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x07, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xf8, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf5, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf3, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xfb, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf6, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf6, 0xff,\n  0xf8, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf5, 0xff,\n  0xf5, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x07, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0x07, 0x00, 0x05, 0x00,\n  0x07, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x08, 0x00, 0x02, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x08, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00,\n  0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x08, 0x00,\n  0x04, 0x00, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x07, 0x00, 0x02, 0x00, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x04, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x08, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x08, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x08, 0x00, 0x08, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x04, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x07, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xf9, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff,\n  0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xf8, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x05, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x05, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xf9, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff\n};\n#define  tr808_bd_wav_len 44180\nunsigned char tr808_cb_wav[] = {\n  0x52, 0x49, 0x46, 0x46, 0x02, 0x82, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45,\n  0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00,\n  0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e,\n  0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61,\n  0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61,\n  0x74, 0x61, 0xbc, 0x81, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x08, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0xad, 0xff,\n  0xd6, 0xfe, 0xa1, 0xfd, 0x35, 0xfc, 0xac, 0xfa, 0x0a, 0xf9, 0x7c, 0xf7,\n  0xf6, 0xf5, 0xa7, 0xf4, 0x6a, 0xf3, 0xa1, 0xf2, 0xd1, 0xf1, 0x89, 0xf5,\n  0x65, 0xfa, 0x69, 0xfc, 0x07, 0xfe, 0x11, 0xff, 0x41, 0x00, 0x31, 0x01,\n  0x51, 0x02, 0x47, 0x03, 0x53, 0x04, 0x2f, 0x05, 0xc8, 0x06, 0xe5, 0x12,\n  0x8e, 0x1c, 0x33, 0x1f, 0x09, 0x20, 0x08, 0x1f, 0xa4, 0x1d, 0x65, 0x1b,\n  0xff, 0x18, 0x15, 0x16, 0x0a, 0x13, 0x9c, 0x0f, 0x22, 0x0c, 0x90, 0x08,\n  0x03, 0x05, 0x76, 0x01, 0x06, 0xfe, 0xae, 0xfa, 0x88, 0xf7, 0x93, 0xf4,\n  0xe8, 0xf1, 0x8b, 0xef, 0x7a, 0xed, 0xc4, 0xeb, 0x62, 0xea, 0x62, 0xe9,\n  0xaf, 0xe8, 0x71, 0xe8, 0x6d, 0xe8, 0xd3, 0xe8, 0xdc, 0xe6, 0x71, 0xe4,\n  0x55, 0xe1, 0xf0, 0xdc, 0x47, 0xda, 0xd0, 0xd8, 0xd4, 0xd8, 0xfa, 0xd9,\n  0x4c, 0xdc, 0x95, 0xdf, 0xca, 0xe3, 0xbe, 0xe8, 0x4c, 0xee, 0x59, 0xf4,\n  0xb9, 0xfa, 0x13, 0x01, 0xc7, 0x07, 0x34, 0x0e, 0xcd, 0x14, 0x9d, 0x1a,\n  0xb1, 0x20, 0x55, 0x25, 0xad, 0x2a, 0x33, 0x2d, 0xfa, 0x38, 0x47, 0x4d,\n  0x5e, 0x54, 0xdd, 0x55, 0x50, 0x53, 0x28, 0x4f, 0x7f, 0x49, 0xdb, 0x42,\n  0x63, 0x3b, 0x0a, 0x33, 0x5f, 0x2a, 0xba, 0x20, 0xa2, 0x17, 0x9a, 0x0d,\n  0x5f, 0x12, 0x5a, 0x17, 0x9d, 0x10, 0x97, 0x07, 0x5d, 0xfc, 0xa9, 0xf1,\n  0xc3, 0xe6, 0xd9, 0xdc, 0x73, 0xd3, 0x23, 0xcb, 0xb6, 0xc3, 0x66, 0xbd,\n  0x6b, 0xb8, 0x8d, 0xb4, 0x30, 0xb2, 0xf8, 0xaf, 0xc1, 0xac, 0x2b, 0xab,\n  0x42, 0xab, 0x0f, 0xad, 0x60, 0xb0, 0x1c, 0xb5, 0x2a, 0xbb, 0x57, 0xc2,\n  0x84, 0xca, 0x80, 0xd3, 0x23, 0xdd, 0x41, 0xe7, 0xa2, 0xf1, 0x2d, 0xfc,\n  0x74, 0x06, 0xb1, 0x10, 0x69, 0x1a, 0xbb, 0x23, 0x33, 0x2c, 0x04, 0x34,\n  0xca, 0x3a, 0xd2, 0x40, 0x62, 0x45, 0x23, 0x4a, 0x33, 0x56, 0xdd, 0x59,\n  0xd1, 0x58, 0x9e, 0x59, 0x84, 0x58, 0x1b, 0x5a, 0x67, 0x4e, 0xff, 0x40,\n  0xa5, 0x37, 0xe8, 0x2b, 0x41, 0x21, 0xb5, 0x15, 0x08, 0x0b, 0x17, 0x00,\n  0xf3, 0xf5, 0x15, 0xec, 0x23, 0xe3, 0xde, 0xda, 0x7c, 0xd3, 0x0c, 0xcd,\n  0xa1, 0xc7, 0x41, 0xc3, 0xfe, 0xbf, 0xc9, 0xbd, 0xbc, 0xbc, 0xb6, 0xbc,\n  0xce, 0xbd, 0xd0, 0xbf, 0xe3, 0xc2, 0xe1, 0xc4, 0x96, 0xc6, 0xbc, 0xc9,\n  0xdf, 0xcd, 0x24, 0xd3, 0x10, 0xd9, 0xfd, 0xdf, 0x08, 0xe7, 0x21, 0xef,\n  0xbf, 0xf6, 0x67, 0x0b, 0x34, 0x20, 0x39, 0x2a, 0x7f, 0x31, 0xe4, 0x35,\n  0x74, 0x39, 0xab, 0x3b, 0x22, 0x3d, 0xb8, 0x3d, 0x42, 0x3d, 0x2e, 0x3c,\n  0xc7, 0x39, 0x74, 0x37, 0x1b, 0x33, 0x72, 0x33, 0x40, 0x3c, 0x71, 0x3c,\n  0x77, 0x37, 0x22, 0x30, 0x99, 0x27, 0x7e, 0x1e, 0xff, 0x14, 0x80, 0x0b,\n  0x0b, 0x02, 0xd9, 0xf8, 0xe6, 0xef, 0x90, 0xe7, 0xd4, 0xdf, 0xda, 0xd8,\n  0xa7, 0xd2, 0x55, 0xcd, 0xed, 0xc8, 0x7f, 0xc5, 0x0a, 0xc3, 0xa2, 0xc1,\n  0x32, 0xc1, 0xbe, 0xc1, 0x2b, 0xc3, 0x8d, 0xc5, 0xad, 0xc8, 0xad, 0xcc,\n  0x2f, 0xd1, 0x92, 0xd6, 0x86, 0xda, 0xb3, 0xdb, 0xcb, 0xdd, 0xe7, 0xe0,\n  0x0e, 0xe5, 0xff, 0xe9, 0xa1, 0xef, 0xcf, 0xf5, 0x5f, 0xfc, 0x2d, 0x03,\n  0x19, 0x0a, 0x00, 0x11, 0xbe, 0x17, 0x2d, 0x1e, 0x39, 0x24, 0xae, 0x29,\n  0x82, 0x2e, 0xbd, 0x32, 0x33, 0x36, 0xec, 0x38, 0xb5, 0x3a, 0xd5, 0x3b,\n  0xc6, 0x3b, 0x51, 0x3b, 0x7e, 0x39, 0x95, 0x40, 0xe1, 0x46, 0xc2, 0x44,\n  0x39, 0x40, 0x40, 0x39, 0xb3, 0x31, 0x09, 0x29, 0x45, 0x20, 0xd9, 0x16,\n  0xb5, 0x0d, 0x47, 0x04, 0x3f, 0x05, 0x9f, 0x05, 0xac, 0xfe, 0x86, 0xf6,\n  0x35, 0xed, 0x86, 0xe4, 0x01, 0xdc, 0x7b, 0xd4, 0xa0, 0xcd, 0xd6, 0xc7,\n  0xe7, 0xc2, 0x1e, 0xbf, 0x70, 0xbc, 0xe0, 0xba, 0x64, 0xba, 0x10, 0xbb,\n  0xa9, 0xbc, 0x5d, 0xbf, 0x90, 0xc1, 0xa1, 0xc3, 0xfc, 0xc6, 0x4a, 0xcb,\n  0xa2, 0xd0, 0xbc, 0xd6, 0x90, 0xdd, 0xec, 0xe4, 0xb1, 0xec, 0xb9, 0xf4,\n  0xe3, 0xfc, 0x07, 0x05, 0x04, 0x0d, 0xba, 0x14, 0x08, 0x1c, 0xb6, 0x22,\n  0xee, 0x28, 0x55, 0x2e, 0x2e, 0x33, 0xe9, 0x36, 0x22, 0x3a, 0xfc, 0x3b,\n  0x8d, 0x3d, 0x22, 0x3d, 0xb0, 0x3f, 0x00, 0x48, 0x57, 0x48, 0x39, 0x44,\n  0x0e, 0x3e, 0xb7, 0x36, 0xc1, 0x2e, 0x4a, 0x26, 0xa9, 0x1d, 0xde, 0x14,\n  0x22, 0x0c, 0x77, 0x03, 0x28, 0xfb, 0x38, 0xf3, 0xca, 0xeb, 0xed, 0xe4,\n  0xb7, 0xde, 0x3a, 0xd9, 0x83, 0xd4, 0xa1, 0xd0, 0xa0, 0xcd, 0x78, 0xcb,\n  0x3a, 0xca, 0xcd, 0xc9, 0x4c, 0xca, 0x8f, 0xcb, 0xa9, 0xcd, 0x5b, 0xd0,\n  0xd0, 0xd3, 0x9c, 0xd7, 0x68, 0xda, 0x84, 0xdd, 0x62, 0xe1, 0xf3, 0xe5,\n  0xd1, 0xea, 0x69, 0xf0, 0xfb, 0xf5, 0x13, 0x05, 0xd6, 0x13, 0x2d, 0x1b,\n  0xb4, 0x20, 0x39, 0x24, 0x49, 0x27, 0x4e, 0x29, 0xe0, 0x2a, 0x9d, 0x2b,\n  0xeb, 0x2b, 0x6a, 0x2b, 0x83, 0x2a, 0xdf, 0x28, 0x02, 0x27, 0x43, 0x24,\n  0xa3, 0x21, 0xb1, 0x1d, 0x3f, 0x20, 0xd2, 0x24, 0x9a, 0x22, 0x69, 0x1e,\n  0x8f, 0x18, 0x73, 0x12, 0xde, 0x0b, 0x63, 0x05, 0xe2, 0xfe, 0xa5, 0xf8,\n  0x99, 0xf2, 0xf1, 0xec, 0xc5, 0xe7, 0x21, 0xe3, 0x13, 0xdf, 0xa1, 0xdb,\n  0xd8, 0xd8, 0xc1, 0xd6, 0x54, 0xd5, 0x9c, 0xd4, 0x93, 0xd4, 0x33, 0xd5,\n  0x76, 0xd6, 0x53, 0xd8, 0xb5, 0xda, 0xae, 0xdd, 0x1e, 0xe0, 0xf0, 0xe1,\n  0x9c, 0xe4, 0xe6, 0xe6, 0xb2, 0xe8, 0x3b, 0xeb, 0x5f, 0xee, 0x14, 0xf2,\n  0x39, 0xf6, 0xb5, 0xfa, 0x6e, 0xff, 0x4b, 0x04, 0x2f, 0x09, 0x04, 0x0e,\n  0xb2, 0x12, 0x2a, 0x17, 0x3f, 0x1b, 0x01, 0x1f, 0x2d, 0x22, 0xf8, 0x24,\n  0x20, 0x27, 0xdc, 0x28, 0xd5, 0x29, 0x65, 0x2a, 0x1b, 0x2a, 0x8c, 0x29,\n  0xcd, 0x27, 0x8c, 0x27, 0x8b, 0x2d, 0x30, 0x2f, 0x8a, 0x2c, 0x52, 0x28,\n  0xe8, 0x22, 0xf8, 0x1c, 0xa6, 0x16, 0x46, 0x10, 0x32, 0x11, 0x18, 0x11,\n  0x81, 0x0b, 0xfa, 0x04, 0x6d, 0xfd, 0x36, 0xf6, 0xf7, 0xee, 0x55, 0xe8,\n  0x18, 0xe2, 0x92, 0xdc, 0xa1, 0xd7, 0x7d, 0xd3, 0x28, 0xd0, 0xa9, 0xcd,\n  0x04, 0xcc, 0x2f, 0xcb, 0x30, 0xcb, 0x07, 0xcc, 0x98, 0xcd, 0xf5, 0xcf,\n  0xc2, 0xd2, 0xe7, 0xd4, 0x72, 0xd7, 0xd2, 0xda, 0xd4, 0xde, 0x75, 0xe3,\n  0x8f, 0xe8, 0x0e, 0xee, 0xcb, 0xf3, 0xbe, 0xf9, 0xba, 0xff, 0xb0, 0x05,\n  0x80, 0x0b, 0x1b, 0x11, 0x6a, 0x16, 0x41, 0x1b, 0x9b, 0x1f, 0x7c, 0x23,\n  0xc5, 0x26, 0x7e, 0x29, 0x73, 0x2b, 0xe6, 0x2c, 0x71, 0x2d, 0xfa, 0x2c,\n  0x67, 0x2a, 0x2c, 0x2d, 0x35, 0x31, 0xa4, 0x2f, 0x4d, 0x2c, 0x6d, 0x27,\n  0x27, 0x22, 0x4d, 0x1c, 0x4f, 0x16, 0x22, 0x10, 0x04, 0x0a, 0xdd, 0x03,\n  0xe5, 0xfd, 0x30, 0xf8, 0xcc, 0xf2, 0xcc, 0xed, 0x3d, 0xe9, 0x2c, 0xe5,\n  0xaa, 0xe1, 0xb9, 0xde, 0x5f, 0xdc, 0xaa, 0xda, 0x94, 0xd9, 0x19, 0xd9,\n  0x43, 0xd9, 0xf7, 0xd9, 0x3c, 0xdb, 0x18, 0xdd, 0x64, 0xdf, 0x43, 0xe2,\n  0xce, 0xe4, 0xd4, 0xe6, 0x47, 0xe9, 0x54, 0xec, 0xc5, 0xef, 0x80, 0xfa,\n  0xc7, 0x04, 0xe8, 0x09, 0xec, 0x0d, 0xa5, 0x10, 0x3a, 0x13, 0x2c, 0x15,\n  0xfb, 0x16, 0x4b, 0x18, 0x60, 0x19, 0xeb, 0x19, 0x39, 0x1a, 0x2a, 0x1a,\n  0xd3, 0x19, 0x19, 0x19, 0x1e, 0x18, 0xc1, 0x16, 0x38, 0x15, 0x3e, 0x13,\n  0xe4, 0x11, 0x45, 0x16, 0x43, 0x18, 0x6f, 0x16, 0x8c, 0x13, 0xb6, 0x0f,\n  0xbe, 0x0b, 0x73, 0x07, 0x47, 0x03, 0x0e, 0xff, 0x0d, 0xfb, 0x1b, 0xf7,\n  0x7a, 0xf3, 0x27, 0xf0, 0x2d, 0xed, 0x94, 0xea, 0x63, 0xe8, 0x9f, 0xe6,\n  0x46, 0xe5, 0x64, 0xe4, 0xf2, 0xe3, 0xf8, 0xe3, 0x60, 0xe4, 0x43, 0xe5,\n  0xc1, 0xe5, 0xe8, 0xe5, 0xb7, 0xe6, 0xfb, 0xe7, 0xc5, 0xe9, 0xf3, 0xeb,\n  0x8a, 0xed, 0x15, 0xef, 0x33, 0xf1, 0xb1, 0xf3, 0x98, 0xf6, 0xbe, 0xf9,\n  0x1f, 0xfd, 0x9d, 0x00, 0x28, 0x04, 0xb4, 0x07, 0x2e, 0x0b, 0x87, 0x0e,\n  0xa2, 0x11, 0x81, 0x14, 0x14, 0x17, 0x3d, 0x19, 0x18, 0x1b, 0x7f, 0x1c,\n  0x96, 0x1d, 0x18, 0x1e, 0x53, 0x1e, 0xd9, 0x1d, 0x63, 0x1d, 0xce, 0x1b,\n  0x9f, 0x1d, 0xf2, 0x21, 0x99, 0x21, 0x64, 0x1f, 0xe2, 0x1b, 0x23, 0x18,\n  0x96, 0x19, 0xa5, 0x19, 0x8c, 0x15, 0x7c, 0x10, 0x76, 0x0a, 0x73, 0x04,\n  0x4c, 0xfe, 0x72, 0xf8, 0xc3, 0xf2, 0x82, 0xed, 0x94, 0xe8, 0x37, 0xe4,\n  0x62, 0xe0, 0x27, 0xdd, 0x93, 0xda, 0x9e, 0xd8, 0x52, 0xd7, 0xab, 0xd6,\n  0xb2, 0xd6, 0x4d, 0xd7, 0x95, 0xd8, 0x5a, 0xda, 0xbf, 0xdc, 0x1a, 0xdf,\n  0x0b, 0xe1, 0x8d, 0xe3, 0x90, 0xe6, 0x11, 0xea, 0xe8, 0xed, 0x16, 0xf2,\n  0x79, 0xf6, 0xfd, 0xfa, 0x95, 0xff, 0x22, 0x04, 0x9d, 0x08, 0xe9, 0x0c,\n  0xf6, 0x10, 0xbe, 0x14, 0x18, 0x18, 0x13, 0x1b, 0x9f, 0x1d, 0xb8, 0x1f,\n  0x51, 0x21, 0xcb, 0x21, 0x2e, 0x21, 0x63, 0x20, 0x15, 0x1f, 0x32, 0x1e,\n  0xe5, 0x21, 0x8a, 0x23, 0xd8, 0x21, 0x1f, 0x1f, 0x70, 0x1b, 0x7f, 0x17,\n  0x25, 0x13, 0xc0, 0x0e, 0x2f, 0x0a, 0xab, 0x05, 0x22, 0x01, 0xc9, 0xfc,\n  0x9e, 0xf8, 0xb6, 0xf4, 0x17, 0xf1, 0xcf, 0xed, 0xec, 0xea, 0x6e, 0xe8,\n  0x61, 0xe6, 0xc4, 0xe4, 0xa5, 0xe3, 0xee, 0xe2, 0xb7, 0xe2, 0xf1, 0xe2,\n  0xa8, 0xe3, 0xc7, 0xe4, 0x45, 0xe6, 0x2c, 0xe8, 0x4d, 0xea, 0xf1, 0xeb,\n  0xab, 0xed, 0x40, 0xf5, 0x2b, 0xfc, 0x93, 0xff, 0x3b, 0x02, 0x23, 0x04,\n  0x0e, 0x06, 0xa3, 0x07, 0x40, 0x09, 0xa4, 0x0a, 0xfc, 0x0b, 0x0e, 0x0d,\n  0x04, 0x0e, 0xc9, 0x0e, 0x50, 0x0f, 0xbc, 0x0f, 0xe0, 0x0f, 0xe8, 0x0f,\n  0x9a, 0x0f, 0x4a, 0x0f, 0x85, 0x0e, 0xef, 0x0d, 0x91, 0x0c, 0xee, 0x0d,\n  0xfd, 0x11, 0x6b, 0x12, 0x3a, 0x11, 0x15, 0x0f, 0x97, 0x0c, 0xcf, 0x09,\n  0xec, 0x06, 0xfb, 0x03, 0x16, 0x01, 0x39, 0xfe, 0x6e, 0xfb, 0xd5, 0xf8,\n  0x6e, 0xf6, 0x41, 0xf4, 0x4a, 0xf2, 0xa1, 0xf0, 0x3a, 0xef, 0x21, 0xee,\n  0x4e, 0xed, 0xdf, 0xec, 0x1f, 0xec, 0x24, 0xeb, 0xab, 0xea, 0xa4, 0xea,\n  0x15, 0xeb, 0xee, 0xeb, 0x1d, 0xed, 0xbb, 0xee, 0x52, 0xf0, 0x6a, 0xf1,\n  0xd1, 0xf2, 0x91, 0xf4, 0xa3, 0xf6, 0xf2, 0xf8, 0x75, 0xfb, 0x15, 0xfe,\n  0xca, 0x00, 0x89, 0x03, 0x3f, 0x06, 0xe7, 0x08, 0x69, 0x0b, 0xc1, 0x0d,\n  0xe8, 0x0f, 0xc5, 0x11, 0x60, 0x13, 0xba, 0x14, 0xb5, 0x15, 0x66, 0x16,\n  0xc1, 0x16, 0xd0, 0x16, 0x81, 0x16, 0xec, 0x15, 0x31, 0x15, 0x4f, 0x18,\n  0x6a, 0x1a, 0x85, 0x19, 0x2e, 0x1c, 0x0f, 0x1d, 0x8a, 0x1a, 0xdf, 0x16,\n  0x5c, 0x12, 0x9f, 0x0d, 0x9f, 0x08, 0xa1, 0x03, 0xab, 0xfe, 0xe9, 0xf9,\n  0x54, 0xf5, 0x11, 0xf1, 0x28, 0xed, 0xa7, 0xe9, 0x98, 0xe6, 0x01, 0xe4,\n  0xef, 0xe1, 0x60, 0xe0, 0x55, 0xdf, 0xd2, 0xde, 0xd2, 0xde, 0x58, 0xdf,\n  0x51, 0xe0, 0xcb, 0xe1, 0xa8, 0xe3, 0xe8, 0xe5, 0xce, 0xe7, 0xac, 0xe9,\n  0x08, 0xec, 0xb5, 0xee, 0xbb, 0xf1, 0xf9, 0xf4, 0x6c, 0xf8, 0xf6, 0xfb,\n  0x93, 0xff, 0x23, 0x03, 0xae, 0x06, 0x10, 0x0a, 0x46, 0x0d, 0x3d, 0x10,\n  0xf2, 0x12, 0x40, 0x15, 0x58, 0x17, 0x7b, 0x18, 0xe0, 0x18, 0xfb, 0x18,\n  0xef, 0x18, 0x70, 0x18, 0x04, 0x18, 0xcb, 0x16, 0xbd, 0x17, 0xe3, 0x1a,\n  0xdb, 0x1a, 0x5f, 0x19, 0xf6, 0x16, 0x1f, 0x14, 0xf1, 0x10, 0x9a, 0x0d,\n  0x21, 0x0a, 0x9e, 0x06, 0x15, 0x03, 0x9c, 0xff, 0x43, 0xfc, 0x14, 0xf9,\n  0x18, 0xf6, 0x59, 0xf3, 0xe1, 0xf0, 0xb5, 0xee, 0xe1, 0xec, 0x58, 0xeb,\n  0x32, 0xea, 0x68, 0xe9, 0x06, 0xe9, 0xfd, 0xe8, 0x4c, 0xe9, 0xf5, 0xe9,\n  0xec, 0xea, 0x3a, 0xec, 0xde, 0xed, 0xb9, 0xf3, 0x99, 0xf8, 0xa4, 0xfa,\n  0x3b, 0xfc, 0x4b, 0xfd, 0x7c, 0xfe, 0x8c, 0xff, 0xb8, 0x00, 0xd8, 0x01,\n  0x07, 0x03, 0x23, 0x04, 0x3b, 0x05, 0x47, 0x06, 0x46, 0x07, 0x2a, 0x08,\n  0xf2, 0x08, 0x97, 0x09, 0x22, 0x0a, 0x8c, 0x0a, 0xd4, 0x0a, 0xf0, 0x0a,\n  0xef, 0x0a, 0xc0, 0x0a, 0x76, 0x0a, 0x1f, 0x0a, 0x44, 0x0d, 0xc5, 0x0f,\n  0x95, 0x0f, 0xae, 0x0e, 0x07, 0x0d, 0x3c, 0x0b, 0x1e, 0x09, 0xfe, 0x06,\n  0xbe, 0x04, 0x87, 0x02, 0x46, 0x00, 0x21, 0xfe, 0x0b, 0xfc, 0x1c, 0xfa,\n  0x4d, 0xf8, 0xb1, 0xf6, 0x3c, 0xf5, 0x0a, 0xf4, 0x97, 0xf2, 0xec, 0xf0,\n  0xac, 0xef, 0xc6, 0xee, 0x45, 0xee, 0x1f, 0xee, 0x57, 0xee, 0xe0, 0xee,\n  0xb6, 0xef, 0xd7, 0xf0, 0x3f, 0xf2, 0x50, 0xf3, 0x3a, 0xf4, 0x81, 0xf5,\n  0x01, 0xf7, 0xc5, 0xf8, 0xae, 0xfa, 0xb9, 0xfc, 0xe2, 0xfe, 0x0f, 0x01,\n  0x41, 0x03, 0x6a, 0x05, 0x82, 0x07, 0x7d, 0x09, 0x4e, 0x0b, 0xfc, 0x0c,\n  0x5a, 0x0e, 0x97, 0x0f, 0x8b, 0x10, 0x5a, 0x11, 0xc6, 0x11, 0x18, 0x12,\n  0xf3, 0x11, 0xc9, 0x11, 0xff, 0x10, 0xe1, 0x11, 0x8d, 0x18, 0x00, 0x1c,\n  0x71, 0x1b, 0x68, 0x19, 0x4f, 0x16, 0xd6, 0x12, 0xf0, 0x0e, 0xf7, 0x0a,\n  0xda, 0x06, 0xc1, 0x02, 0xa9, 0xfe, 0xbe, 0xfa, 0x03, 0xf7, 0x91, 0xf3,\n  0x62, 0xf0, 0x8d, 0xed, 0x12, 0xeb, 0xfa, 0xe8, 0x4a, 0xe7, 0x0f, 0xe6,\n  0x3a, 0xe5, 0xd4, 0xe4, 0xdb, 0xe4, 0x4f, 0xe5, 0x23, 0xe6, 0x5d, 0xe7,\n  0xe7, 0xe8, 0xc8, 0xea, 0xbd, 0xec, 0x4d, 0xee, 0x23, 0xf0, 0x48, 0xf2,\n  0xa9, 0xf4, 0x41, 0xf7, 0xfe, 0xf9, 0xd9, 0xfc, 0xba, 0xff, 0x99, 0x02,\n  0x6c, 0x05, 0x21, 0x08, 0xb7, 0x0a, 0x18, 0x0d, 0x4d, 0x0f, 0xce, 0x10,\n  0xa9, 0x11, 0x5d, 0x12, 0xe6, 0x12, 0x42, 0x13, 0x66, 0x13, 0x55, 0x13,\n  0x0b, 0x13, 0x8d, 0x12, 0xf9, 0x11, 0x4f, 0x14, 0xe5, 0x15, 0x26, 0x15,\n  0xb8, 0x13, 0x93, 0x11, 0x36, 0x0f, 0x95, 0x0c, 0xdd, 0x09, 0x04, 0x07,\n  0x2b, 0x04, 0x4e, 0x01, 0x88, 0xfe, 0xd9, 0xfb, 0x54, 0xf9, 0xf6, 0xf6,\n  0xd2, 0xf4, 0xdb, 0xf2, 0x31, 0xf1, 0xc5, 0xef, 0xaf, 0xee, 0xe0, 0xed,\n  0x5c, 0xed, 0x28, 0xed, 0x37, 0xed, 0x9f, 0xed, 0x46, 0xee, 0x9c, 0xf2,\n  0xe7, 0xf6, 0xde, 0xf8, 0xe6, 0xf9, 0x28, 0xfa, 0xa0, 0xfa, 0x0e, 0xfb,\n  0xb4, 0xfb, 0x65, 0xfc, 0x3d, 0xfd, 0x19, 0xfe, 0x0c, 0xff, 0x0e, 0x00,\n  0x13, 0x01, 0x21, 0x02, 0x29, 0x03, 0x24, 0x04, 0x18, 0x05, 0xeb, 0x05,\n  0xbc, 0x06, 0x64, 0x07, 0x06, 0x08, 0x71, 0x08, 0xdf, 0x08, 0x05, 0x09,\n  0x3f, 0x09, 0xf7, 0x08, 0x39, 0x0a, 0x82, 0x0d, 0x78, 0x0e, 0x3f, 0x0e,\n  0x4f, 0x0d, 0x0a, 0x0c, 0x86, 0x0a, 0xd5, 0x08, 0x0f, 0x07, 0x2e, 0x05,\n  0x4f, 0x03, 0x66, 0x01, 0x8c, 0xff, 0xc1, 0xfd, 0x07, 0xfc, 0x79, 0xfa,\n  0xa5, 0xf8, 0x9a, 0xf6, 0xdb, 0xf4, 0x69, 0xf3, 0x44, 0xf2, 0x71, 0xf1,\n  0xe9, 0xf0, 0xb1, 0xf0, 0xc0, 0xf0, 0x17, 0xf1, 0xb6, 0xf1, 0x88, 0xf2,\n  0x9e, 0xf3, 0xbb, 0xf4, 0x7a, 0xf5, 0x61, 0xf6, 0x86, 0xf7, 0xdc, 0xf8,\n  0x61, 0xfa, 0x01, 0xfc, 0xc1, 0xfd, 0x8d, 0xff, 0x5d, 0x01, 0x2d, 0x03,\n  0xf4, 0x04, 0xaa, 0x06, 0x39, 0x08, 0xb0, 0x09, 0xf5, 0x0a, 0x1e, 0x0c,\n  0x12, 0x0d, 0xd7, 0x0d, 0x67, 0x0e, 0xb7, 0x0e, 0xde, 0x0e, 0xe0, 0x0e,\n  0xde, 0x11, 0xeb, 0x13, 0x4c, 0x16, 0xff, 0x17, 0xe4, 0x16, 0x0f, 0x15,\n  0x53, 0x12, 0x6c, 0x0f, 0x22, 0x0c, 0xd6, 0x08, 0x5e, 0x05, 0xf7, 0x01,\n  0x97, 0xfe, 0x5d, 0xfb, 0x48, 0xf8, 0x6c, 0xf5, 0xd0, 0xf2, 0x78, 0xf0,\n  0x70, 0xee, 0xb7, 0xec, 0x5f, 0xeb, 0x56, 0xea, 0xb3, 0xe9, 0x68, 0xe9,\n  0x74, 0xe9, 0xdb, 0xe9, 0x95, 0xea, 0x9d, 0xeb, 0xf0, 0xec, 0x7f, 0xee,\n  0x52, 0xf0, 0xe9, 0xf1, 0x52, 0xf3, 0x0f, 0xf5, 0xf8, 0xf6, 0x0e, 0xf9,\n  0x45, 0xfb, 0x8d, 0xfd, 0xe1, 0xff, 0x33, 0x02, 0x7f, 0x04, 0xaf, 0x06,\n  0xcf, 0x08, 0x5e, 0x0a, 0x76, 0x0b, 0x86, 0x0c, 0x5f, 0x0d, 0x34, 0x0e,\n  0xcf, 0x0e, 0x56, 0x0f, 0x98, 0x0f, 0xce, 0x0f, 0xa7, 0x0f, 0x88, 0x0f,\n  0xe4, 0x0e, 0x5f, 0x0f, 0xbd, 0x11, 0x1a, 0x12, 0x4b, 0x11, 0xd7, 0x0f,\n  0x00, 0x0e, 0xf0, 0x0b, 0xaf, 0x09, 0x60, 0x07, 0xfe, 0x04, 0x93, 0x02,\n  0x31, 0x00, 0xdb, 0xfd, 0xa8, 0xfb, 0x8c, 0xf9, 0x97, 0xf7, 0xd6, 0xf5,\n  0x49, 0xf4, 0xf9, 0xf2, 0xe0, 0xf1, 0x08, 0xf1, 0x6e, 0xf0, 0x17, 0xf0,\n  0x22, 0xf0, 0x53, 0xf3, 0x3f, 0xf6, 0x5b, 0xf7, 0x29, 0xf8, 0xa5, 0xf8,\n  0x16, 0xf9, 0x00, 0xf9, 0x05, 0xf9, 0x32, 0xf9, 0x8d, 0xf9, 0x08, 0xfa,\n  0xa6, 0xfa, 0x6e, 0xfb, 0x51, 0xfc, 0x43, 0xfd, 0x49, 0xfe, 0x5c, 0xff,\n  0x74, 0x00, 0x88, 0x01, 0x9f, 0x02, 0xa3, 0x03, 0x9a, 0x04, 0x80, 0x05,\n  0x58, 0x06, 0x10, 0x07, 0xac, 0x07, 0x37, 0x08, 0x89, 0x08, 0xe0, 0x08,\n  0xee, 0x08, 0x3d, 0x0b, 0xa4, 0x0d, 0xfa, 0x0d, 0xaf, 0x0d, 0xc7, 0x0c,\n  0xaa, 0x0b, 0x49, 0x0a, 0xc9, 0x08, 0x2b, 0x07, 0x82, 0x05, 0xbf, 0x03,\n  0x03, 0x02, 0x4d, 0x00, 0x52, 0xfe, 0x17, 0xfc, 0x15, 0xfa, 0x48, 0xf8,\n  0xb6, 0xf6, 0x60, 0xf5, 0x4c, 0xf4, 0x7a, 0xf3, 0xe9, 0xf2, 0x9b, 0xf2,\n  0x8a, 0xf2, 0xb8, 0xf2, 0x1c, 0xf3, 0xbf, 0xf3, 0x88, 0xf4, 0x8a, 0xf5,\n  0x61, 0xf6, 0x01, 0xf7, 0xdc, 0xf7, 0xe5, 0xf8, 0x19, 0xfa, 0x6e, 0xfb,\n  0xdd, 0xfc, 0x5e, 0xfe, 0xed, 0xff, 0x7c, 0x01, 0xff, 0x02, 0x82, 0x04,\n  0xf0, 0x05, 0x4c, 0x07, 0x85, 0x08, 0x98, 0x09, 0x8a, 0x0a, 0x50, 0x0b,\n  0xef, 0x0b, 0x80, 0x0c, 0xad, 0x0f, 0xea, 0x11, 0x41, 0x12, 0xc3, 0x11,\n  0x54, 0x11, 0xdf, 0x12, 0xcb, 0x12, 0x5e, 0x11, 0x4e, 0x0f, 0xda, 0x0c,\n  0x2e, 0x0a, 0x58, 0x07, 0x7f, 0x04, 0xa3, 0x01, 0xd9, 0xfe, 0x1d, 0xfc,\n  0x84, 0xf9, 0x21, 0xf7, 0xee, 0xf4, 0xf7, 0xf2, 0x41, 0xf1, 0xd1, 0xef,\n  0xac, 0xee, 0xce, 0xed, 0x44, 0xed, 0x02, 0xed, 0x11, 0xed, 0x67, 0xed,\n  0x03, 0xee, 0xe0, 0xee, 0xff, 0xef, 0x4f, 0xf1, 0xd1, 0xf2, 0x71, 0xf4,\n  0xbc, 0xf5, 0x11, 0xf7, 0x99, 0xf8, 0x40, 0xfa, 0x0b, 0xfc, 0xe7, 0xfd,\n  0xcf, 0xff, 0xb4, 0x01, 0x95, 0x03, 0x12, 0x05, 0x2b, 0x06, 0x56, 0x07,\n  0x68, 0x08, 0x75, 0x09, 0x67, 0x0a, 0x3c, 0x0b, 0xf7, 0x0b, 0x89, 0x0c,\n  0xfe, 0x0c, 0x42, 0x0d, 0x67, 0x0d, 0x49, 0x0d, 0x28, 0x0d, 0xa4, 0x0c,\n  0xf4, 0x0d, 0xa7, 0x0f, 0x77, 0x0f, 0x9f, 0x0e, 0x37, 0x0d, 0x96, 0x0b,\n  0xb8, 0x09, 0xc4, 0x07, 0xb7, 0x05, 0xa1, 0x03, 0x85, 0x01, 0x6e, 0xff,\n  0x71, 0xfd, 0x7d, 0xfb, 0xbc, 0xf9, 0x15, 0xf8, 0x9f, 0xf6, 0x51, 0xf5,\n  0x39, 0xf4, 0x52, 0xf3, 0xd8, 0xf2, 0x23, 0xf5, 0xfa, 0xf6, 0x63, 0xf7,\n  0x91, 0xf7, 0x80, 0xf7, 0x91, 0xf7, 0x99, 0xf7, 0xd9, 0xf7, 0xd9, 0xf7,\n  0xb1, 0xf7, 0xb0, 0xf7, 0xe2, 0xf7, 0x48, 0xf8, 0xd5, 0xf8, 0x90, 0xf9,\n  0x68, 0xfa, 0x5d, 0xfb, 0x69, 0xfc, 0x87, 0xfd, 0xb1, 0xfe, 0xe1, 0xff,\n  0x10, 0x01, 0x3d, 0x02, 0x55, 0x03, 0x67, 0x04, 0x63, 0x05, 0x56, 0x06,\n  0x1f, 0x07, 0xd7, 0x07, 0x5f, 0x08, 0xe0, 0x08, 0x15, 0x09, 0xb9, 0x09,\n  0x5f, 0x0c, 0xc9, 0x0d, 0xe2, 0x0d, 0x6a, 0x0d, 0x86, 0x0c, 0x6f, 0x0b,\n  0x16, 0x0a, 0xa7, 0x08, 0x10, 0x07, 0x7b, 0x05, 0x77, 0x03, 0x40, 0x01,\n  0x27, 0xff, 0x2b, 0xfd, 0x5a, 0xfb, 0xb4, 0xf9, 0x3d, 0xf8, 0xf9, 0xf6,\n  0xea, 0xf5, 0x14, 0xf5, 0x77, 0xf4, 0x12, 0xf4, 0xe6, 0xf3, 0xef, 0xf3,\n  0x28, 0xf4, 0x94, 0xf4, 0x31, 0xf5, 0xf7, 0xf5, 0xde, 0xf6, 0x79, 0xf7,\n  0x10, 0xf8, 0xe4, 0xf8, 0xd6, 0xf9, 0xf1, 0xfa, 0x29, 0xfc, 0x75, 0xfd,\n  0xc6, 0xfe, 0x26, 0x00, 0x85, 0x01, 0xe7, 0x02, 0x37, 0x04, 0x7e, 0x05,\n  0xa7, 0x06, 0xbb, 0x07, 0xa1, 0x08, 0x9e, 0x09, 0xda, 0x0c, 0x62, 0x0f,\n  0x13, 0x10, 0x45, 0x10, 0xbf, 0x0f, 0x22, 0x0f, 0xf0, 0x0d, 0x25, 0x0e,\n  0x1f, 0x0f, 0x5f, 0x0e, 0xe2, 0x0c, 0xe5, 0x0a, 0xba, 0x08, 0x5f, 0x06,\n  0x00, 0x04, 0x94, 0x01, 0x39, 0xff, 0xe9, 0xfc, 0xb5, 0xfa, 0xad, 0xf8,\n  0xca, 0xf6, 0x1e, 0xf5, 0xa7, 0xf3, 0x69, 0xf2, 0x6c, 0xf1, 0xb0, 0xf0,\n  0x30, 0xf0, 0xf6, 0xef, 0xfc, 0xef, 0x3f, 0xf0, 0xbf, 0xf0, 0x79, 0xf1,\n  0x61, 0xf2, 0x80, 0xf3, 0xc1, 0xf4, 0x2f, 0xf6, 0x84, 0xf7, 0x94, 0xf8,\n  0xc8, 0xf9, 0x1c, 0xfb, 0x8d, 0xfc, 0x0c, 0xfe, 0x9f, 0xff, 0xdc, 0x00,\n  0xd8, 0x01, 0xed, 0x02, 0x07, 0x04, 0x27, 0x05, 0x3b, 0x06, 0x4b, 0x07,\n  0x41, 0x08, 0x20, 0x09, 0xe6, 0x09, 0x8c, 0x0a, 0x18, 0x0b, 0x78, 0x0b,\n  0xb9, 0x0b, 0xc9, 0x0b, 0xbe, 0x0b, 0x76, 0x0b, 0x62, 0x0b, 0x2a, 0x0d,\n  0x07, 0x0e, 0x94, 0x0d, 0xa9, 0x0c, 0x4f, 0x0b, 0xca, 0x09, 0x12, 0x08,\n  0x4c, 0x06, 0x6a, 0x04, 0x89, 0x02, 0xa1, 0x00, 0xcd, 0xfe, 0x07, 0xfd,\n  0x5a, 0xfb, 0xc9, 0xf9, 0x61, 0xf8, 0x11, 0xf7, 0x30, 0xf6, 0xba, 0xf7,\n  0xcc, 0xf8, 0xa5, 0xf8, 0x49, 0xf8, 0xbb, 0xf7, 0x51, 0xf7, 0xe7, 0xf6,\n  0xb3, 0xf6, 0x91, 0xf6, 0x9b, 0xf6, 0xbf, 0xf6, 0xa8, 0xf6, 0x90, 0xf6,\n  0xbc, 0xf6, 0x11, 0xf7, 0xa0, 0xf7, 0x51, 0xf8, 0x2c, 0xf9, 0x28, 0xfa,\n  0x3e, 0xfb, 0x69, 0xfc, 0xa3, 0xfd, 0xea, 0xfe, 0x31, 0x00, 0x75, 0x01,\n  0xaf, 0x02, 0xdb, 0x03, 0xfc, 0x04, 0xff, 0x05, 0xf3, 0x06, 0xbb, 0x07,\n  0x7a, 0x08, 0xf8, 0x08, 0x80, 0x09, 0x98, 0x09, 0xf9, 0x0a, 0x47, 0x0d,\n  0xe7, 0x0d, 0xca, 0x0d, 0x19, 0x0d, 0x2d, 0x0c, 0xf7, 0x0a, 0xa4, 0x09,\n  0xdb, 0x07, 0xcf, 0x05, 0xc9, 0x03, 0xc9, 0x01, 0xe6, 0xff, 0x16, 0xfe,\n  0x69, 0xfc, 0xdc, 0xfa, 0x7a, 0xf9, 0x40, 0xf8, 0x38, 0xf7, 0x5f, 0xf6,\n  0xb1, 0xf5, 0x39, 0xf5, 0xf4, 0xf4, 0xdc, 0xf4, 0xfa, 0xf4, 0x40, 0xf5,\n  0xb7, 0xf5, 0x4c, 0xf6, 0x10, 0xf7, 0xd0, 0xf7, 0x48, 0xf8, 0xe6, 0xf8,\n  0xb0, 0xf9, 0x98, 0xfa, 0x9c, 0xfb, 0xb9, 0xfc, 0xe5, 0xfd, 0x2c, 0xff,\n  0x67, 0x00, 0xaf, 0x01, 0xe7, 0x02, 0x1f, 0x04, 0x36, 0x05, 0x7b, 0x06,\n  0xdd, 0x09, 0x6f, 0x0c, 0x78, 0x0d, 0xfe, 0x0d, 0xf7, 0x0d, 0xbe, 0x0d,\n  0x31, 0x0d, 0x80, 0x0c, 0x98, 0x0b, 0xa2, 0x0a, 0x68, 0x0b, 0xc6, 0x0b,\n  0xca, 0x0a, 0x62, 0x09, 0x9a, 0x07, 0xba, 0x05, 0xb5, 0x03, 0xb7, 0x01,\n  0xb4, 0xff, 0xc3, 0xfd, 0xe1, 0xfb, 0x20, 0xfa, 0x84, 0xf8, 0x12, 0xf7,\n  0xcb, 0xf5, 0xb8, 0xf4, 0xd7, 0xf3, 0x29, 0xf3, 0xb9, 0xf2, 0x7b, 0xf2,\n  0x79, 0xf2, 0xa4, 0xf2, 0x0b, 0xf3, 0x9f, 0xf3, 0x61, 0xf4, 0x46, 0xf5,\n  0x53, 0xf6, 0x80, 0xf7, 0xc5, 0xf8, 0xca, 0xf9, 0xb2, 0xfa, 0xc0, 0xfb,\n  0xdd, 0xfc, 0xc9, 0xfd, 0x82, 0xfe, 0x68, 0xff, 0x5e, 0x00, 0x64, 0x01,\n  0x75, 0x02, 0x89, 0x03, 0x9e, 0x04, 0xa8, 0x05, 0xa4, 0x06, 0x8e, 0x07,\n  0x59, 0x08, 0x10, 0x09, 0xa5, 0x09, 0x1f, 0x0a, 0x6d, 0x0a, 0xa8, 0x0a,\n  0xa2, 0x0a, 0x9f, 0x0a, 0x35, 0x0a, 0xce, 0x0a, 0x77, 0x0c, 0xa9, 0x0c,\n  0x1f, 0x0c, 0x15, 0x0b, 0xd1, 0x09, 0x54, 0x08, 0xbb, 0x06, 0x0f, 0x05,\n  0x5d, 0x03, 0xa3, 0x01, 0xed, 0xff, 0x40, 0xfe, 0xab, 0xfc, 0x21, 0xfb,\n  0xfd, 0xf9, 0xfa, 0xfa, 0x79, 0xfb, 0xdd, 0xfa, 0x0d, 0xfa, 0x16, 0xf9,\n  0x39, 0xf8, 0x68, 0xf7, 0xc0, 0xf6, 0x38, 0xf6, 0xda, 0xf5, 0xa1, 0xf5,\n  0x93, 0xf5, 0xb3, 0xf5, 0xda, 0xf5, 0xd2, 0xf5, 0xee, 0xf5, 0x48, 0xf6,\n  0xd1, 0xf6, 0x89, 0xf7, 0x69, 0xf8, 0x6a, 0xf9, 0x89, 0xfa, 0xc1, 0xfb,\n  0x0b, 0xfd, 0x60, 0xfe, 0xb7, 0xff, 0x0c, 0x01, 0x5d, 0x02, 0xa1, 0x03,\n  0xcf, 0x04, 0xec, 0x05, 0xf2, 0x06, 0xd3, 0x07, 0x9d, 0x08, 0x3e, 0x09,\n  0xb7, 0x09, 0x0f, 0x0a, 0x4d, 0x0a, 0x31, 0x0c, 0xb8, 0x0d, 0xd9, 0x0d,\n  0x7c, 0x0d, 0x9c, 0x0c, 0x4e, 0x0b, 0x8c, 0x09, 0xce, 0x07, 0xf7, 0x05,\n  0x2b, 0x04, 0x5d, 0x02, 0x9b, 0x00, 0xf3, 0xfe, 0x5d, 0xfd, 0xe5, 0xfb,\n  0x91, 0xfa, 0x5e, 0xf9, 0x51, 0xf8, 0x70, 0xf7, 0xbb, 0xf6, 0x34, 0xf6,\n  0xd4, 0xf5, 0xa6, 0xf5, 0xa1, 0xf5, 0xc9, 0xf5, 0x19, 0xf6, 0x94, 0xf6,\n  0x2e, 0xf7, 0xea, 0xf7, 0x7d, 0xf8, 0xf1, 0xf8, 0x89, 0xf9, 0x4c, 0xfa,\n  0x2a, 0xfb, 0x2b, 0xfc, 0x37, 0xfd, 0x5b, 0xfe, 0x84, 0xff, 0xb2, 0x00,\n  0xcf, 0x01, 0x3d, 0x03, 0xb3, 0x06, 0x45, 0x09, 0x7f, 0x0a, 0x41, 0x0b,\n  0x97, 0x0b, 0xb7, 0x0b, 0x97, 0x0b, 0x4f, 0x0b, 0xd9, 0x0a, 0x35, 0x0a,\n  0x7f, 0x09, 0x81, 0x08, 0x25, 0x08, 0x2d, 0x09, 0x15, 0x09, 0x29, 0x08,\n  0xdc, 0x06, 0x57, 0x05, 0xb7, 0x03, 0x09, 0x02, 0x5f, 0x00, 0xb8, 0xfe,\n  0x21, 0xfd, 0x9c, 0xfb, 0x38, 0xfa, 0xf4, 0xf8, 0xd3, 0xf7, 0xdc, 0xf6,\n  0x0f, 0xf6, 0x6f, 0xf5, 0x00, 0xf5, 0xbe, 0xf4, 0xa6, 0xf4, 0xc3, 0xf4,\n  0x07, 0xf5, 0x74, 0xf5, 0x0b, 0xf6, 0xbf, 0xf6, 0x99, 0xf7, 0x86, 0xf8,\n  0x91, 0xf9, 0x9d, 0xfa, 0x5d, 0xfb, 0xcc, 0xfb, 0x35, 0xfc, 0xc5, 0xfc,\n  0x79, 0xfd, 0x4b, 0xfe, 0x3b, 0xff, 0x31, 0x00, 0x3c, 0x01, 0x49, 0x02,\n  0x53, 0x03, 0x5e, 0x04, 0x5a, 0x05, 0x4b, 0x06, 0x1f, 0x07, 0xdb, 0x07,\n  0x7f, 0x08, 0x06, 0x09, 0x6e, 0x09, 0xad, 0x09, 0xd1, 0x09, 0xce, 0x09,\n  0xb0, 0x09, 0x5f, 0x09, 0x90, 0x0a, 0xbe, 0x0b, 0x8a, 0x0b, 0xe2, 0x0a,\n  0xcf, 0x09, 0x8f, 0x08, 0x26, 0x07, 0xa6, 0x05, 0x13, 0x04, 0x7b, 0x02,\n  0xe2, 0x00, 0x41, 0xff, 0x03, 0xfe, 0xae, 0xfe, 0xbd, 0xfe, 0xcb, 0xfd,\n  0xa1, 0xfc, 0x4e, 0xfb, 0x16, 0xfa, 0xe1, 0xf8, 0xd2, 0xf7, 0xe6, 0xf6,\n  0x22, 0xf6, 0x83, 0xf5, 0x16, 0xf5, 0xd7, 0xf4, 0xc7, 0xf4, 0xe1, 0xf4,\n  0x2a, 0xf5, 0x5a, 0xf5, 0x78, 0xf5, 0xd1, 0xf5, 0x5c, 0xf6, 0x19, 0xf7,\n  0xfe, 0xf7, 0x08, 0xf9, 0x2e, 0xfa, 0x71, 0xfb, 0xc3, 0xfc, 0x22, 0xfe,\n  0x86, 0xff, 0xe9, 0x00, 0x45, 0x02, 0x99, 0x03, 0xd3, 0x04, 0xf8, 0x05,\n  0x07, 0x07, 0xfb, 0x07, 0xc0, 0x08, 0x75, 0x09, 0xf1, 0x09, 0x5a, 0x0a,\n  0x70, 0x0a, 0x0f, 0x0b, 0xff, 0x0c, 0xb7, 0x0d, 0x44, 0x0d, 0x31, 0x0c,\n  0xe1, 0x0a, 0x6c, 0x09, 0xdf, 0x07, 0x42, 0x06, 0x9c, 0x04, 0xf9, 0x02,\n  0x55, 0x01, 0xc6, 0xff, 0x43, 0xfe, 0xd9, 0xfc, 0x89, 0xfb, 0x5a, 0xfa,\n  0x4a, 0xf9, 0x62, 0xf8, 0x9e, 0xf7, 0x04, 0xf7, 0x94, 0xf6, 0x4e, 0xf6,\n  0x2f, 0xf6, 0x3b, 0xf6, 0x6e, 0xf6, 0xc9, 0xf6, 0x40, 0xf7, 0xdf, 0xf7,\n  0x85, 0xf8, 0xf6, 0xf8, 0x69, 0xf9, 0x14, 0xfa, 0xcd, 0xfa, 0xb5, 0xfb,\n  0x9f, 0xfc, 0xaf, 0xfd, 0xaf, 0xfe, 0x20, 0x00, 0x77, 0x03, 0xf7, 0x05,\n  0x54, 0x07, 0x41, 0x08, 0xd6, 0x08, 0x3e, 0x09, 0x65, 0x09, 0x7a, 0x09,\n  0x54, 0x09, 0x22, 0x09, 0xba, 0x08, 0x4c, 0x08, 0xaa, 0x07, 0x10, 0x07,\n  0x34, 0x06, 0x9f, 0x06, 0x8f, 0x07, 0x30, 0x07, 0x63, 0x06, 0x38, 0x05,\n  0xf5, 0x03, 0x95, 0x02, 0x31, 0x01, 0xcf, 0xff, 0x76, 0xfe, 0x25, 0xfd,\n  0xea, 0xfb, 0xca, 0xfa, 0xc5, 0xf9, 0xe4, 0xf8, 0x21, 0xf8, 0x84, 0xf7,\n  0x10, 0xf7, 0xbc, 0xf6, 0x98, 0xf6, 0x94, 0xf6, 0xb6, 0xf6, 0xfe, 0xf6,\n  0x63, 0xf7, 0xee, 0xf7, 0x8d, 0xf8, 0x4a, 0xf9, 0x19, 0xfa, 0xac, 0xfa,\n  0xfd, 0xfa, 0x2a, 0xfb, 0x84, 0xfb, 0x0b, 0xfc, 0xb1, 0xfc, 0x73, 0xfd,\n  0x55, 0xfe, 0x44, 0xff, 0x41, 0x00, 0x49, 0x01, 0x51, 0x02, 0x55, 0x03,\n  0x4f, 0x04, 0x3f, 0x05, 0x1e, 0x06, 0xde, 0x06, 0x8e, 0x07, 0x1e, 0x08,\n  0x96, 0x08, 0xe5, 0x08, 0x1d, 0x09, 0x28, 0x09, 0x26, 0x09, 0xe4, 0x08,\n  0xe7, 0x08, 0x4d, 0x0a, 0xee, 0x0a, 0x8f, 0x0a, 0xd4, 0x09, 0xbd, 0x08,\n  0x8b, 0x07, 0x26, 0x06, 0xc0, 0x04, 0x31, 0x03, 0x11, 0x02, 0xa1, 0x02,\n  0x53, 0x02, 0x30, 0x01, 0xc9, 0xff, 0x36, 0xfe, 0xaf, 0xfc, 0x2d, 0xfb,\n  0xc8, 0xf9, 0x7c, 0xf8, 0x59, 0xf7, 0x59, 0xf6, 0x8e, 0xf5, 0xee, 0xf4,\n  0x7b, 0xf4, 0x3c, 0xf4, 0x2f, 0xf4, 0x4f, 0xf4, 0x9a, 0xf4, 0x0c, 0xf5,\n  0x54, 0xf5, 0xaa, 0xf5, 0x3b, 0xf6, 0xf9, 0xf6, 0xe1, 0xf7, 0xf0, 0xf8,\n  0x19, 0xfa, 0x5d, 0xfb, 0xb9, 0xfc, 0x16, 0xfe, 0x83, 0xff, 0xe8, 0x00,\n  0x49, 0x02, 0x9f, 0x03, 0xe4, 0x04, 0x0e, 0x06, 0x23, 0x07, 0x12, 0x08,\n  0xe7, 0x08, 0x8d, 0x09, 0x1d, 0x0a, 0x6e, 0x0a, 0xb5, 0x0a, 0x9f, 0x0a,\n  0x50, 0x0b, 0x74, 0x0c, 0x4e, 0x0c, 0xaa, 0x0b, 0x9e, 0x0a, 0x68, 0x09,\n  0x0d, 0x08, 0x9b, 0x06, 0x20, 0x05, 0x9b, 0x03, 0x19, 0x02, 0x9a, 0x00,\n  0x2a, 0xff, 0xc9, 0xfd, 0x81, 0xfc, 0x4c, 0xfb, 0x3a, 0xfa, 0x46, 0xf9,\n  0x78, 0xf8, 0xcc, 0xf7, 0x49, 0xf7, 0xe9, 0xf6, 0xb1, 0xf6, 0xa1, 0xf6,\n  0xb7, 0xf6, 0xf1, 0xf6, 0x4b, 0xf7, 0xc7, 0xf7, 0x62, 0xf8, 0xfd, 0xf8,\n  0x54, 0xf9, 0xdd, 0xf9, 0x7c, 0xfa, 0x42, 0xfb, 0x07, 0xfc, 0x55, 0xfd,\n  0x7a, 0x00, 0xcb, 0x02, 0x22, 0x04, 0x1e, 0x05, 0xcf, 0x05, 0x5b, 0x06,\n  0xc4, 0x06, 0x10, 0x07, 0x3c, 0x07, 0x52, 0x07, 0x43, 0x07, 0x26, 0x07,\n  0xe8, 0x06, 0xa2, 0x06, 0x3b, 0x06, 0xc8, 0x05, 0x3b, 0x05, 0xcc, 0x04,\n  0xdb, 0x05, 0x77, 0x06, 0x14, 0x06, 0x63, 0x05, 0x67, 0x04, 0x59, 0x03,\n  0x2f, 0x02, 0x0a, 0x01, 0xe4, 0xff, 0xc3, 0xfe, 0xa7, 0xfd, 0xa1, 0xfc,\n  0xb5, 0xfb, 0xdd, 0xfa, 0x1c, 0xfa, 0x7d, 0xf9, 0xf9, 0xf8, 0x95, 0xf8,\n  0x51, 0xf8, 0x32, 0xf8, 0x30, 0xf8, 0x4c, 0xf8, 0x86, 0xf8, 0xd9, 0xf8,\n  0x48, 0xf9, 0x7d, 0xf9, 0xa9, 0xf9, 0xfd, 0xf9, 0x74, 0xfa, 0xc6, 0xfa,\n  0x09, 0xfb, 0x81, 0xfb, 0x11, 0xfc, 0xcb, 0xfc, 0x99, 0xfd, 0x7b, 0xfe,\n  0x6f, 0xff, 0x6a, 0x00, 0x67, 0x01, 0x67, 0x02, 0x63, 0x03, 0x4f, 0x04,\n  0x2c, 0x05, 0xfa, 0x05, 0xac, 0x06, 0x4a, 0x07, 0xc7, 0x07, 0x30, 0x08,\n  0x6f, 0x08, 0x9d, 0x08, 0x97, 0x08, 0x89, 0x08, 0x32, 0x08, 0xba, 0x08,\n  0x19, 0x0a, 0x2f, 0x0a, 0xc5, 0x09, 0xdf, 0x08, 0xdb, 0x07, 0x8f, 0x06,\n  0xab, 0x05, 0x42, 0x06, 0xee, 0x05, 0xbb, 0x04, 0x3b, 0x03, 0x8e, 0x01,\n  0xda, 0xff, 0x21, 0xfe, 0x7d, 0xfc, 0xea, 0xfa, 0x79, 0xf9, 0x21, 0xf8,\n  0xfa, 0xf6, 0xfc, 0xf5, 0x30, 0xf5, 0x91, 0xf4, 0x21, 0xf4, 0xeb, 0xf3,\n  0xde, 0xf3, 0x07, 0xf4, 0x56, 0xf4, 0xdb, 0xf4, 0x63, 0xf5, 0xc7, 0xf5,\n  0x57, 0xf6, 0x16, 0xf7, 0xfc, 0xf7, 0x08, 0xf9, 0x34, 0xfa, 0x7a, 0xfb,\n  0xd1, 0xfc, 0x33, 0xfe, 0x98, 0xff, 0x00, 0x01, 0x5d, 0x02, 0xb1, 0x03,\n  0xf7, 0x04, 0x1c, 0x06, 0x2b, 0x07, 0x1a, 0x08, 0xe9, 0x08, 0x92, 0x09,\n  0x16, 0x0a, 0x6e, 0x0a, 0x5a, 0x0a, 0xfc, 0x09, 0xad, 0x09, 0xc4, 0x0a,\n  0x76, 0x0b, 0x1e, 0x0b, 0x6a, 0x0a, 0x61, 0x09, 0x3f, 0x08, 0xec, 0x06,\n  0x96, 0x05, 0x2e, 0x04, 0xc3, 0x02, 0x58, 0x01, 0xf8, 0xff, 0x9d, 0xfe,\n  0x5b, 0xfd, 0x29, 0xfc, 0x11, 0xfb, 0x15, 0xfa, 0x3a, 0xf9, 0x81, 0xf8,\n  0xe9, 0xf7, 0x7b, 0xf7, 0x29, 0xf7, 0x03, 0xf7, 0xfe, 0xf6, 0x1c, 0xf7,\n  0x5b, 0xf7, 0xc7, 0xf7, 0x41, 0xf8, 0xe6, 0xf8, 0x52, 0xf9, 0xbc, 0xf9,\n  0x34, 0xfa, 0x3d, 0xfb, 0x10, 0xfe, 0x19, 0x00, 0x46, 0x01, 0x2f, 0x02,\n  0xdd, 0x02, 0x73, 0x03, 0xf3, 0x03, 0x60, 0x04, 0xbb, 0x04, 0x08, 0x05,\n  0x3f, 0x05, 0x60, 0x05, 0x73, 0x05, 0x73, 0x05, 0x67, 0x05, 0x44, 0x05,\n  0x1b, 0x05, 0xcf, 0x04, 0x8f, 0x04, 0x13, 0x04, 0x4f, 0x04, 0xa2, 0x05,\n  0xeb, 0x05, 0x9b, 0x05, 0xfc, 0x04, 0x2b, 0x04, 0x47, 0x03, 0x4d, 0x02,\n  0x51, 0x01, 0x55, 0x00, 0x5c, 0xff, 0x66, 0xfe, 0x81, 0xfd, 0xaf, 0xfc,\n  0xf0, 0xfb, 0x45, 0xfb, 0xb5, 0xfa, 0x38, 0xfa, 0xd9, 0xf9, 0x95, 0xf9,\n  0x6c, 0xf9, 0x5d, 0xf9, 0x6a, 0xf9, 0x41, 0xf9, 0x15, 0xf9, 0x18, 0xf9,\n  0x3e, 0xf9, 0x8d, 0xf9, 0xfc, 0xf9, 0x7c, 0xfa, 0xc1, 0xfa, 0x21, 0xfb,\n  0xa5, 0xfb, 0x47, 0xfc, 0x07, 0xfd, 0xdd, 0xfd, 0xc1, 0xfe, 0xb0, 0xff,\n  0xa3, 0x00, 0x99, 0x01, 0x8b, 0x02, 0x7b, 0x03, 0x56, 0x04, 0x27, 0x05,\n  0xe0, 0x05, 0x83, 0x06, 0x0e, 0x07, 0x7c, 0x07, 0xd3, 0x07, 0x02, 0x08,\n  0x1f, 0x08, 0x0f, 0x08, 0xfa, 0x07, 0xb4, 0x07, 0xcc, 0x08, 0xaf, 0x09,\n  0x8d, 0x09, 0xe7, 0x08, 0x6f, 0x08, 0x4e, 0x09, 0x17, 0x09, 0x0f, 0x08,\n  0xa2, 0x06, 0xfa, 0x04, 0x3b, 0x03, 0x6d, 0x01, 0xa7, 0xff, 0xe5, 0xfd,\n  0x3b, 0xfc, 0xa6, 0xfa, 0x35, 0xf9, 0xe6, 0xf7, 0xc4, 0xf6, 0xcc, 0xf5,\n  0x06, 0xf5, 0x6e, 0xf4, 0x0c, 0xf4, 0xd3, 0xf3, 0xd3, 0xf3, 0xff, 0xf3,\n  0x5a, 0xf4, 0xdf, 0xf4, 0x90, 0xf5, 0x22, 0xf6, 0xaa, 0xf6, 0x69, 0xf7,\n  0x4a, 0xf8, 0x56, 0xf9, 0x7c, 0xfa, 0xb4, 0xfb, 0x07, 0xfd, 0x5e, 0xfe,\n  0xc2, 0xff, 0x1e, 0x01, 0x75, 0x02, 0xbf, 0x03, 0xf7, 0x04, 0x1e, 0x06,\n  0x1f, 0x07, 0x08, 0x08, 0xcd, 0x08, 0x6e, 0x09, 0x9e, 0x09, 0x9a, 0x09,\n  0x74, 0x09, 0x4e, 0x09, 0xe7, 0x08, 0x32, 0x09, 0x72, 0x0a, 0x99, 0x0a,\n  0x2f, 0x0a, 0x67, 0x09, 0x67, 0x08, 0x43, 0x07, 0x08, 0x06, 0xbe, 0x04,\n  0x65, 0x03, 0x0f, 0x02, 0xb5, 0x00, 0x66, 0xff, 0x27, 0xfe, 0xf5, 0xfc,\n  0xdc, 0xfb, 0xd9, 0xfa, 0xf2, 0xf9, 0x2d, 0xf9, 0x85, 0xf8, 0x04, 0xf8,\n  0x99, 0xf7, 0x5e, 0xf7, 0x42, 0xf7, 0x52, 0xf7, 0x76, 0xf7, 0xce, 0xf7,\n  0x29, 0xf8, 0xc2, 0xf8, 0x3c, 0xf9, 0xfe, 0xf9, 0x6b, 0xfc, 0x13, 0xfe,\n  0x02, 0xff, 0xb3, 0xff, 0x3d, 0x00, 0xc1, 0x00, 0x36, 0x01, 0xa8, 0x01,\n  0x15, 0x02, 0x7b, 0x02, 0xd5, 0x02, 0x29, 0x03, 0x75, 0x03, 0xb7, 0x03,\n  0xe7, 0x03, 0x13, 0x04, 0x2b, 0x04, 0x3a, 0x04, 0x34, 0x04, 0x28, 0x04,\n  0x0a, 0x04, 0xe7, 0x03, 0xab, 0x03, 0xb6, 0x04, 0xdb, 0x05, 0xeb, 0x05,\n  0xa8, 0x05, 0x12, 0x05, 0x64, 0x04, 0x93, 0x03, 0xbd, 0x02, 0xd8, 0x01,\n  0xf5, 0x00, 0x11, 0x00, 0x30, 0xff, 0x61, 0xfe, 0x99, 0xfd, 0xdd, 0xfc,\n  0x39, 0xfc, 0xa5, 0xfb, 0x29, 0xfb, 0xbe, 0xfa, 0x72, 0xfa, 0xec, 0xf9,\n  0x69, 0xf9, 0x18, 0xf9, 0xe6, 0xf8, 0xe4, 0xf8, 0xfd, 0xf8, 0x45, 0xf9,\n  0xa6, 0xf9, 0x2a, 0xfa, 0x95, 0xfa, 0xe0, 0xfa, 0x55, 0xfb, 0xe4, 0xfb,\n  0x95, 0xfc, 0x55, 0xfd, 0x2b, 0xfe, 0x0c, 0xff, 0xf8, 0xff, 0xe8, 0x00,\n  0xd0, 0x01, 0xb7, 0x02, 0x9b, 0x03, 0x67, 0x04, 0x27, 0x05, 0xcf, 0x05,\n  0x64, 0x06, 0xd7, 0x06, 0x3b, 0x07, 0x7a, 0x07, 0xab, 0x07, 0xaa, 0x07,\n  0xaf, 0x07, 0x5f, 0x07, 0xa0, 0x07, 0xcf, 0x08, 0xa7, 0x09, 0x2a, 0x0b,\n  0x6c, 0x0b, 0xb2, 0x0a, 0x88, 0x09, 0x0d, 0x08, 0x73, 0x06, 0xb2, 0x04,\n  0xed, 0x02, 0x1b, 0x01, 0x5a, 0xff, 0x97, 0xfd, 0xf9, 0xfb, 0x70, 0xfa,\n  0x09, 0xf9, 0xc9, 0xf7, 0xb2, 0xf6, 0xc9, 0xf5, 0x0b, 0xf5, 0x81, 0xf4,\n  0x26, 0xf4, 0xfb, 0xf3, 0x04, 0xf4, 0x38, 0xf4, 0x9c, 0xf4, 0x24, 0xf5,\n  0xdb, 0xf5, 0x9f, 0xf6, 0x3e, 0xf7, 0xee, 0xf7, 0xc9, 0xf8, 0xc5, 0xf9,\n  0xe2, 0xfa, 0x15, 0xfc, 0x55, 0xfd, 0xa5, 0xfe, 0xf2, 0xff, 0x42, 0x01,\n  0x8b, 0x02, 0xc5, 0x03, 0xf3, 0x04, 0x07, 0x06, 0xfe, 0x06, 0xd3, 0x07,\n  0x42, 0x08, 0x7e, 0x08, 0xae, 0x08, 0xc2, 0x08, 0xc2, 0x08, 0xa8, 0x08,\n  0x80, 0x08, 0x38, 0x08, 0x28, 0x09, 0x0d, 0x0a, 0xe6, 0x09, 0x62, 0x09,\n  0x87, 0x08, 0x90, 0x07, 0x6b, 0x06, 0x3b, 0x05, 0xf9, 0x03, 0xb1, 0x02,\n  0x63, 0x01, 0x1d, 0x00, 0xe1, 0xfe, 0xaf, 0xfd, 0x8f, 0xfc, 0x89, 0xfb,\n  0x9d, 0xfa, 0xcc, 0xf9, 0x0e, 0xf9, 0x7d, 0xf8, 0x09, 0xf8, 0xbf, 0xf7,\n  0x88, 0xf7, 0x88, 0xf7, 0x94, 0xf7, 0xd7, 0xf7, 0x15, 0xf8, 0x05, 0xf9,\n  0x84, 0xfb, 0xe9, 0xfc, 0x7d, 0xfd, 0xe3, 0xfd, 0x2d, 0xfe, 0x7f, 0xfe,\n  0xcf, 0xfe, 0x2c, 0xff, 0x89, 0xff, 0xef, 0xff, 0x53, 0x00, 0xbb, 0x00,\n  0x22, 0x01, 0x8d, 0x01, 0xf0, 0x01, 0x51, 0x02, 0xa5, 0x02, 0xf5, 0x02,\n  0x35, 0x03, 0x77, 0x03, 0xa1, 0x03, 0xc5, 0x03, 0xd3, 0x03, 0xe5, 0x03,\n  0xc9, 0x03, 0x2e, 0x04, 0xb7, 0x05, 0x58, 0x06, 0x56, 0x06, 0x06, 0x06,\n  0x7b, 0x05, 0xd7, 0x04, 0x16, 0x04, 0x49, 0x03, 0x73, 0x02, 0x96, 0x01,\n  0xb5, 0x00, 0xe0, 0xff, 0x0b, 0xff, 0x42, 0xfe, 0x85, 0xfd, 0xd5, 0xfc,\n  0x37, 0xfc, 0x64, 0xfb, 0x8d, 0xfa, 0xe9, 0xf9, 0x65, 0xf9, 0x0d, 0xf9,\n  0xd8, 0xf8, 0xce, 0xf8, 0xe1, 0xf8, 0x19, 0xf9, 0x71, 0xf9, 0xe5, 0xf9,\n  0x6a, 0xfa, 0xb9, 0xfa, 0x15, 0xfb, 0x99, 0xfb, 0x37, 0xfc, 0xe7, 0xfc,\n  0xaf, 0xfd, 0x85, 0xfe, 0x65, 0xff, 0x46, 0x00, 0x2e, 0x01, 0x0f, 0x02,\n  0xed, 0x02, 0xbb, 0x03, 0x7f, 0x04, 0x2a, 0x05, 0xc3, 0x05, 0x44, 0x06,\n  0xb3, 0x06, 0xff, 0x06, 0x3b, 0x07, 0x53, 0x07, 0x5b, 0x07, 0x32, 0x07,\n  0x70, 0x07, 0x1d, 0x0a, 0xf4, 0x0b, 0x15, 0x0c, 0x84, 0x0b, 0x6d, 0x0a,\n  0x1e, 0x09, 0x8f, 0x07, 0xf3, 0x05, 0x33, 0x04, 0x7b, 0x02, 0xb5, 0x00,\n  0xfd, 0xfe, 0x57, 0xfd, 0xc6, 0xfb, 0x55, 0xfa, 0xfe, 0xf8, 0xd2, 0xf7,\n  0xcb, 0xf6, 0xf1, 0xf5, 0x44, 0xf5, 0xc9, 0xf4, 0x79, 0xf4, 0x5e, 0xf4,\n  0x69, 0xf4, 0xab, 0xf4, 0x0b, 0xf5, 0x9f, 0xf5, 0x53, 0xf6, 0x2b, 0xf7,\n  0xf1, 0xf7, 0x99, 0xf8, 0x6a, 0xf9, 0x59, 0xfa, 0x64, 0xfb, 0x83, 0xfc,\n  0xb5, 0xfd, 0xe8, 0xfe, 0x28, 0x00, 0x5e, 0x01, 0x97, 0x02, 0xbb, 0x03,\n  0xd8, 0x04, 0xcf, 0x05, 0x6e, 0x06, 0xdc, 0x06, 0x40, 0x07, 0x9b, 0x07,\n  0xe2, 0x07, 0x08, 0x08, 0x2a, 0x08, 0x21, 0x08, 0x16, 0x08, 0xd3, 0x07,\n  0xf4, 0x07, 0x2d, 0x09, 0x8d, 0x09, 0x41, 0x09, 0xa5, 0x08, 0xc3, 0x07,\n  0xc6, 0x06, 0xa4, 0x05, 0x78, 0x04, 0x3f, 0x03, 0x01, 0x02, 0xbe, 0x00,\n  0x89, 0xff, 0x5b, 0xfe, 0x3d, 0xfd, 0x31, 0xfc, 0x35, 0xfb, 0x5d, 0xfa,\n  0x95, 0xf9, 0xfc, 0xf8, 0x78, 0xf8, 0x1a, 0xf8, 0xd3, 0xf7, 0xc1, 0xf7,\n  0xb0, 0xf7, 0x51, 0xf8, 0x6d, 0xfa, 0xb1, 0xfb, 0x69, 0xfc, 0xe1, 0xfc,\n  0xef, 0xfc, 0xf7, 0xfc, 0x07, 0xfd, 0x31, 0xfd, 0x65, 0xfd, 0xa9, 0xfd,\n  0xfd, 0xfd, 0x5b, 0xfe, 0xc7, 0xfe, 0x3f, 0xff, 0xb7, 0xff, 0x38, 0x00,\n  0xb9, 0x00, 0x31, 0x01, 0xaf, 0x01, 0x21, 0x02, 0x8f, 0x02, 0xed, 0x02,\n  0x49, 0x03, 0x93, 0x03, 0xdb, 0x03, 0xff, 0x03, 0x2f, 0x04, 0x2e, 0x04,\n  0x3c, 0x05, 0xa2, 0x06, 0xf4, 0x06, 0xec, 0x06, 0x88, 0x06, 0x07, 0x06,\n  0x5c, 0x05, 0xa3, 0x04, 0xd1, 0x03, 0xf9, 0x02, 0x17, 0x02, 0x30, 0x01,\n  0x50, 0x00, 0x75, 0xff, 0x9d, 0xfe, 0x91, 0xfd, 0x77, 0xfc, 0x89, 0xfb,\n  0xba, 0xfa, 0x0d, 0xfa, 0x89, 0xf9, 0x29, 0xf9, 0xe9, 0xf8, 0xd0, 0xf8,\n  0xd5, 0xf8, 0x02, 0xf9, 0x4a, 0xf9, 0xad, 0xf9, 0x34, 0xfa, 0xa2, 0xfa,\n  0xee, 0xfa, 0x5d, 0xfb, 0xe1, 0xfb, 0x85, 0xfc, 0x39, 0xfd, 0xff, 0xfd,\n  0xd3, 0xfe, 0xaa, 0xff, 0x89, 0x00, 0x63, 0x01, 0x3d, 0x02, 0x05, 0x03,\n  0xcf, 0x03, 0x7f, 0x04, 0x1f, 0x05, 0xab, 0x05, 0x26, 0x06, 0x7f, 0x06,\n  0xcf, 0x06, 0xe3, 0x06, 0x7c, 0x07, 0x3f, 0x09, 0xe2, 0x09, 0x19, 0x0a,\n  0x27, 0x0b, 0x60, 0x0b, 0xc1, 0x0a, 0xbf, 0x09, 0x72, 0x08, 0x03, 0x07,\n  0x6c, 0x05, 0xcb, 0x03, 0x1f, 0x02, 0x79, 0x00, 0xde, 0xfe, 0x4f, 0xfd,\n  0xd1, 0xfb, 0x76, 0xfa, 0x3d, 0xf9, 0x1d, 0xf8, 0x2e, 0xf7, 0x64, 0xf6,\n  0xc3, 0xf5, 0x51, 0xf5, 0x0b, 0xf5, 0xf7, 0xf4, 0x09, 0xf5, 0x49, 0xf5,\n  0xb1, 0xf5, 0x3a, 0xf6, 0xe9, 0xf6, 0xba, 0xf7, 0x9e, 0xf8, 0x52, 0xf9,\n  0x0d, 0xfa, 0xe5, 0xfa, 0xd8, 0xfb, 0xe3, 0xfc, 0xf5, 0xfd, 0x17, 0xff,\n  0x3a, 0x00, 0x5b, 0x01, 0x75, 0x02, 0x83, 0x03, 0x3a, 0x04, 0xcb, 0x04,\n  0x63, 0x05, 0xe7, 0x05, 0x5f, 0x06, 0xce, 0x06, 0x22, 0x07, 0x6c, 0x07,\n  0x97, 0x07, 0xb4, 0x07, 0xaf, 0x07, 0xa3, 0x07, 0x5f, 0x07, 0x02, 0x08,\n  0x10, 0x09, 0x14, 0x09, 0xb4, 0x08, 0xfb, 0x07, 0x1a, 0x07, 0x17, 0x06,\n  0xfe, 0x04, 0xd5, 0x03, 0x9f, 0x02, 0x6c, 0x01, 0x37, 0x00, 0x0c, 0xff,\n  0xe5, 0xfd, 0xd7, 0xfc, 0xda, 0xfb, 0xf6, 0xfa, 0x28, 0xfa, 0x7d, 0xf9,\n  0xe4, 0xf8, 0x81, 0xf8, 0x18, 0xf8, 0x70, 0xf8, 0x22, 0xfa, 0x09, 0xfb,\n  0x6d, 0xfb, 0xa5, 0xfb, 0xc9, 0xfb, 0xf6, 0xfb, 0x00, 0xfc, 0xda, 0xfb,\n  0xd2, 0xfb, 0xdc, 0xfb, 0x00, 0xfc, 0x41, 0xfc, 0x91, 0xfc, 0xf9, 0xfc,\n  0x6f, 0xfd, 0xf5, 0xfd, 0x84, 0xfe, 0x1b, 0xff, 0xba, 0xff, 0x59, 0x00,\n  0xf8, 0x00, 0x8a, 0x01, 0x1f, 0x02, 0xa7, 0x02, 0x27, 0x03, 0x99, 0x03,\n  0x00, 0x04, 0x52, 0x04, 0x97, 0x04, 0xc4, 0x04, 0x0c, 0x05, 0x8a, 0x06,\n  0x86, 0x07, 0xb2, 0x07, 0x8b, 0x07, 0x1f, 0x07, 0x8f, 0x06, 0xdb, 0x05,\n  0x13, 0x05, 0x37, 0x04, 0x51, 0x03, 0x63, 0x02, 0x67, 0x01, 0x32, 0x00,\n  0xf4, 0xfe, 0xcb, 0xfd, 0xbf, 0xfc, 0xd1, 0xfb, 0x01, 0xfb, 0x52, 0xfa,\n  0xc1, 0xf9, 0x59, 0xf9, 0x0e, 0xf9, 0xe5, 0xf8, 0xe1, 0xf8, 0xfc, 0xf8,\n  0x32, 0xf9, 0x84, 0xf9, 0xf5, 0xf9, 0x76, 0xfa, 0xd9, 0xfa, 0x25, 0xfb,\n  0x9d, 0xfb, 0x29, 0xfc, 0xcb, 0xfc, 0x7f, 0xfd, 0x48, 0xfe, 0x11, 0xff,\n  0xe6, 0xff, 0xb6, 0x00, 0x8b, 0x01, 0x57, 0x02, 0x1f, 0x03, 0xd1, 0x03,\n  0x83, 0x04, 0x0b, 0x05, 0x9f, 0x05, 0xeb, 0x05, 0xde, 0x06, 0xcf, 0x08,\n  0xbc, 0x09, 0xe9, 0x09, 0xca, 0x09, 0x41, 0x09, 0x49, 0x09, 0xfa, 0x09,\n  0xad, 0x09, 0xde, 0x08, 0xb8, 0x07, 0x64, 0x06, 0xf3, 0x04, 0x75, 0x03,\n  0xea, 0x01, 0x67, 0x00, 0xe8, 0xfe, 0x77, 0xfd, 0x19, 0xfc, 0xd9, 0xfa,\n  0xb0, 0xf9, 0xac, 0xf8, 0xcc, 0xf7, 0x10, 0xf7, 0x7e, 0xf6, 0x17, 0xf6,\n  0xd6, 0xf5, 0xc1, 0xf5, 0xd6, 0xf5, 0x11, 0xf6, 0x73, 0xf6, 0xf2, 0xf6,\n  0x9a, 0xf7, 0x56, 0xf8, 0x35, 0xf9, 0x0d, 0xfa, 0xb5, 0xfa, 0x71, 0xfb,\n  0x43, 0xfc, 0x2f, 0xfd, 0x27, 0xfe, 0x27, 0xff, 0x2c, 0x00, 0x27, 0x01,\n  0xd9, 0x01, 0x7b, 0x02, 0x23, 0x03, 0xcb, 0x03, 0x6e, 0x04, 0x08, 0x05,\n  0x93, 0x05, 0x10, 0x06, 0x7e, 0x06, 0xd7, 0x06, 0x18, 0x07, 0x47, 0x07,\n  0x5b, 0x07, 0x5b, 0x07, 0x3e, 0x07, 0x23, 0x07, 0x2a, 0x08, 0xd2, 0x08,\n  0xa5, 0x08, 0x29, 0x08, 0x64, 0x07, 0x80, 0x06, 0x78, 0x05, 0x64, 0x04,\n  0x3d, 0x03, 0x11, 0x02, 0xe0, 0x00, 0xb9, 0xff, 0x96, 0xfe, 0x85, 0xfd,\n  0x7d, 0xfc, 0x9c, 0xfb, 0xb9, 0xfa, 0x10, 0xfa, 0x50, 0xf9, 0x6e, 0xf9,\n  0xb5, 0xfa, 0x30, 0xfb, 0x3e, 0xfb, 0x21, 0xfb, 0x01, 0xfb, 0xe2, 0xfa,\n  0xd1, 0xfa, 0xcd, 0xfa, 0xde, 0xfa, 0xc8, 0xfa, 0xa1, 0xfa, 0xa2, 0xfa,\n  0xc1, 0xfa, 0x02, 0xfb, 0x58, 0xfb, 0xcd, 0xfb, 0x4f, 0xfc, 0xe7, 0xfc,\n  0x8f, 0xfd, 0x3f, 0xfe, 0xf9, 0xfe, 0xb3, 0xff, 0x73, 0x00, 0x30, 0x01,\n  0xdf, 0x01, 0x8d, 0x02, 0x29, 0x03, 0xc3, 0x03, 0x43, 0x04, 0xbe, 0x04,\n  0x12, 0x05, 0x6b, 0x05, 0x87, 0x05, 0x47, 0x06, 0xca, 0x07, 0x57, 0x08,\n  0x62, 0x08, 0x18, 0x08, 0x97, 0x07, 0xef, 0x06, 0x2a, 0x06, 0x50, 0x05,\n  0x5b, 0x04, 0x17, 0x03, 0xc4, 0x01, 0x82, 0x00, 0x53, 0xff, 0x2e, 0xfe,\n  0x29, 0xfd, 0x37, 0xfc, 0x62, 0xfb, 0xac, 0xfa, 0x14, 0xfa, 0x9a, 0xf9,\n  0x45, 0xf9, 0x0d, 0xf9, 0xf6, 0xf8, 0xf9, 0xf8, 0x21, 0xf9, 0x68, 0xf9,\n  0xbe, 0xf9, 0x39, 0xfa, 0xb2, 0xfa, 0xfd, 0xfa, 0x5d, 0xfb, 0xd2, 0xfb,\n  0x61, 0xfc, 0x09, 0xfd, 0xbf, 0xfd, 0x7c, 0xfe, 0x45, 0xff, 0x14, 0x00,\n  0xe6, 0x00, 0xb1, 0x01, 0x81, 0x02, 0x2d, 0x03, 0xef, 0x03, 0x6c, 0x04,\n  0x9a, 0x05, 0xc7, 0x07, 0xda, 0x08, 0x52, 0x09, 0x6a, 0x09, 0x40, 0x09,\n  0xe1, 0x08, 0x68, 0x08, 0xc2, 0x07, 0x1f, 0x08, 0x71, 0x08, 0xdb, 0x07,\n  0xfb, 0x06, 0xd2, 0x05, 0x8e, 0x04, 0x35, 0x03, 0xd9, 0x01, 0x74, 0x00,\n  0x1d, 0xff, 0xcb, 0xfd, 0x89, 0xfc, 0x64, 0xfb, 0x55, 0xfa, 0x68, 0xf9,\n  0x99, 0xf8, 0xea, 0xf7, 0x63, 0xf7, 0x01, 0xf7, 0xc8, 0xf6, 0xae, 0xf6,\n  0xc1, 0xf6, 0xf2, 0xf6, 0x47, 0xf7, 0xbe, 0xf7, 0x51, 0xf8, 0xfd, 0xf8,\n  0xc1, 0xf9, 0x9d, 0xfa, 0x51, 0xfb, 0xf0, 0xfb, 0xa3, 0xfc, 0x67, 0xfd,\n  0x43, 0xfe, 0x14, 0xff, 0xae, 0xff, 0x40, 0x00, 0xe3, 0x00, 0x90, 0x01,\n  0x41, 0x02, 0xf3, 0x02, 0x9f, 0x03, 0x47, 0x04, 0xe2, 0x04, 0x6a, 0x05,\n  0xea, 0x05, 0x4e, 0x06, 0xa7, 0x06, 0xdf, 0x06, 0x0f, 0x07, 0x13, 0x07,\n  0x17, 0x07, 0xdf, 0x06, 0x22, 0x07, 0x3d, 0x08, 0x7c, 0x08, 0x36, 0x08,\n  0x9b, 0x07, 0xd4, 0x06, 0xe3, 0x05, 0xdf, 0x04, 0xc3, 0x03, 0xa5, 0x02,\n  0x7b, 0x01, 0x5b, 0x00, 0x38, 0xff, 0x2a, 0xfe, 0x19, 0xfd, 0x39, 0xfc,\n  0x40, 0xfb, 0x1e, 0xfb, 0x11, 0xfc, 0x23, 0xfc, 0xe4, 0xfb, 0x6e, 0xfb,\n  0x02, 0xfb, 0x98, 0xfa, 0x40, 0xfa, 0xfd, 0xf9, 0xcd, 0xf9, 0xb6, 0xf9,\n  0xb9, 0xf9, 0xca, 0xf9, 0xaa, 0xf9, 0xa9, 0xf9, 0xc9, 0xf9, 0x08, 0xfa,\n  0x6d, 0xfa, 0xe5, 0xfa, 0x79, 0xfb, 0x23, 0xfc, 0xdd, 0xfc, 0xa9, 0xfd,\n  0x79, 0xfe, 0x50, 0xff, 0x26, 0x00, 0xfe, 0x00, 0xcf, 0x01, 0x93, 0x02,\n  0x4d, 0x03, 0xfb, 0x03, 0x9b, 0x04, 0x22, 0x05, 0x97, 0x05, 0xf3, 0x05,\n  0x3e, 0x06, 0x64, 0x06, 0x8b, 0x07, 0xb7, 0x08, 0xf2, 0x08, 0xd8, 0x08,\n  0x62, 0x08, 0xcb, 0x07, 0xf7, 0x06, 0xd8, 0x05, 0x93, 0x04, 0x59, 0x03,\n  0x1b, 0x02, 0xe5, 0x00, 0xbd, 0xff, 0xa2, 0xfe, 0x9d, 0xfd, 0xa7, 0xfc,\n  0xd5, 0xfb, 0x15, 0xfb, 0x72, 0xfa, 0xf0, 0xf9, 0x8d, 0xf9, 0x45, 0xf9,\n  0x1a, 0xf9, 0x15, 0xf9, 0x24, 0xf9, 0x55, 0xf9, 0x9e, 0xf9, 0x01, 0xfa,\n  0x7d, 0xfa, 0xe1, 0xfa, 0x26, 0xfb, 0x8d, 0xfb, 0x05, 0xfc, 0x9b, 0xfc,\n  0x43, 0xfd, 0xf1, 0xfd, 0xba, 0xfe, 0x7b, 0xff, 0x4f, 0x00, 0x0d, 0x01,\n  0xe4, 0x01, 0x87, 0x02, 0xeb, 0x03, 0x37, 0x06, 0x6b, 0x07, 0x1e, 0x08,\n  0x66, 0x08, 0x7e, 0x08, 0x62, 0x08, 0x2a, 0x08, 0xc2, 0x07, 0x4f, 0x07,\n  0xab, 0x06, 0x47, 0x06, 0xe3, 0x06, 0xd7, 0x06, 0x37, 0x06, 0x4f, 0x05,\n  0x3e, 0x04, 0x19, 0x03, 0xe1, 0x01, 0xaa, 0x00, 0x75, 0xff, 0x4c, 0xfe,\n  0x29, 0xfd, 0x1f, 0xfc, 0x2d, 0xfb, 0x50, 0xfa, 0x92, 0xf9, 0xf4, 0xf8,\n  0x72, 0xf8, 0x18, 0xf8, 0xd7, 0xf7, 0xbe, 0xf7, 0xc7, 0xf7, 0xea, 0xf7,\n  0x35, 0xf8, 0x91, 0xf8, 0x15, 0xf9, 0xa8, 0xf9, 0x52, 0xfa, 0x0d, 0xfb,\n  0xd1, 0xfb, 0x63, 0xfc, 0xef, 0xfc, 0x85, 0xfd, 0xeb, 0xfd, 0x55, 0xfe,\n  0xde, 0xfe, 0x74, 0xff, 0x17, 0x00, 0xca, 0x00, 0x7c, 0x01, 0x33, 0x02,\n  0xe7, 0x02, 0x95, 0x03, 0x3e, 0x04, 0xcf, 0x04, 0x5a, 0x05, 0xd2, 0x05,\n  0x2f, 0x06, 0x7e, 0x06, 0xb3, 0x06, 0xd3, 0x06, 0xd2, 0x06, 0xcb, 0x06,\n  0x8f, 0x06, 0x3c, 0x07, 0x1f, 0x08, 0x11, 0x08, 0xb4, 0x07, 0x07, 0x07,\n  0x33, 0x06, 0x42, 0x05, 0x3b, 0x04, 0x2d, 0x03, 0x0d, 0x02, 0xf8, 0x00,\n  0xd1, 0xff, 0xd2, 0xfe, 0xaf, 0xfd, 0x65, 0xfd, 0x04, 0xfe, 0xcd, 0xfd,\n  0x43, 0xfd, 0x8b, 0xfc, 0xd5, 0xfb, 0x1e, 0xfb, 0x7e, 0xfa, 0xf2, 0xf9,\n  0x80, 0xf9, 0x25, 0xf9, 0xe8, 0xf8, 0xc5, 0xf8, 0xc2, 0xf8, 0xe4, 0xf8,\n  0xf4, 0xf8, 0xf4, 0xf8, 0x14, 0xf9, 0x59, 0xf9, 0xc5, 0xf9, 0x49, 0xfa,\n  0xe9, 0xfa, 0xa5, 0xfb, 0x6d, 0xfc, 0x47, 0xfd, 0x2b, 0xfe, 0x18, 0xff,\n  0x04, 0x00, 0xf2, 0x00, 0xd6, 0x01, 0xb1, 0x02, 0x7b, 0x03, 0x3b, 0x04,\n  0xeb, 0x04, 0x7f, 0x05, 0x06, 0x06, 0x6b, 0x06, 0xc2, 0x06, 0xe3, 0x06,\n  0x3e, 0x07, 0x8a, 0x08, 0x44, 0x09, 0x47, 0x09, 0xed, 0x08, 0x11, 0x08,\n  0x0f, 0x07, 0xf7, 0x05, 0xd3, 0x04, 0xad, 0x03, 0x81, 0x02, 0x55, 0x01,\n  0x38, 0x00, 0x27, 0xff, 0x21, 0xfe, 0x33, 0xfd, 0x53, 0xfc, 0x8d, 0xfb,\n  0xe5, 0xfa, 0x52, 0xfa, 0xe2, 0xf9, 0x8c, 0xf9, 0x54, 0xf9, 0x35, 0xf9,\n  0x38, 0xf9, 0x55, 0xf9, 0x89, 0xf9, 0xda, 0xf9, 0x41, 0xfa, 0xba, 0xfa,\n  0x09, 0xfb, 0x51, 0xfb, 0xc1, 0xfb, 0x3f, 0xfc, 0xd7, 0xfc, 0x7d, 0xfd,\n  0x39, 0xfe, 0xed, 0xfe, 0xc2, 0xff, 0x67, 0x00, 0xe7, 0x01, 0x3c, 0x04,\n  0x8f, 0x05, 0x62, 0x06, 0xdb, 0x06, 0x2b, 0x07, 0x48, 0x07, 0x47, 0x07,\n  0x2b, 0x07, 0xec, 0x06, 0x9f, 0x06, 0x26, 0x06, 0xb7, 0x05, 0x0b, 0x05,\n  0x23, 0x05, 0xbc, 0x05, 0x7f, 0x05, 0xe7, 0x04, 0x10, 0x04, 0x23, 0x03,\n  0x19, 0x02, 0x10, 0x01, 0x02, 0x00, 0xfd, 0xfe, 0xff, 0xfd, 0x0b, 0xfd,\n  0x2f, 0xfc, 0x69, 0xfb, 0xb5, 0xfa, 0x20, 0xfa, 0xa4, 0xf9, 0x41, 0xf9,\n  0x01, 0xf9, 0xda, 0xf8, 0xd5, 0xf8, 0xed, 0xf8, 0x1d, 0xf9, 0x65, 0xf9,\n  0xc9, 0xf9, 0x42, 0xfa, 0xcd, 0xfa, 0x69, 0xfb, 0x17, 0xfc, 0xa7, 0xfc,\n  0xc9, 0xfc, 0xf5, 0xfc, 0x43, 0xfd, 0xb1, 0xfd, 0x30, 0xfe, 0xc6, 0xfe,\n  0x6b, 0xff, 0x1a, 0x00, 0xcd, 0x00, 0x87, 0x01, 0x41, 0x02, 0xf3, 0x02,\n  0x9f, 0x03, 0x40, 0x04, 0xce, 0x04, 0x4e, 0x05, 0xba, 0x05, 0x14, 0x06,\n  0x56, 0x06, 0x83, 0x06, 0x94, 0x06, 0x92, 0x06, 0x73, 0x06, 0x66, 0x06,\n  0x56, 0x07, 0xd8, 0x07, 0xa6, 0x07, 0x2e, 0x07, 0x70, 0x06, 0x9f, 0x05,\n  0xa7, 0x04, 0xad, 0x03, 0x95, 0x02, 0x91, 0x01, 0x61, 0x00, 0x0b, 0x00,\n  0x74, 0x00, 0x04, 0x00, 0x44, 0xff, 0x52, 0xfe, 0x59, 0xfd, 0x65, 0xfc,\n  0x7d, 0xfb, 0xac, 0xfa, 0xee, 0xf9, 0x4d, 0xf9, 0xce, 0xf8, 0x65, 0xf8,\n  0x26, 0xf8, 0x04, 0xf8, 0x04, 0xf8, 0x21, 0xf8, 0x5d, 0xf8, 0x78, 0xf8,\n  0x9e, 0xf8, 0xea, 0xf8, 0x59, 0xf9, 0xed, 0xf9, 0x94, 0xfa, 0x5d, 0xfb,\n  0x31, 0xfc, 0x19, 0xfd, 0x0c, 0xfe, 0x05, 0xff, 0x02, 0x00, 0xfd, 0x00,\n  0xea, 0x01, 0xd9, 0x02, 0xb1, 0x03, 0x7c, 0x04, 0x36, 0x05, 0xd7, 0x05,\n  0x5b, 0x06, 0xcf, 0x06, 0x18, 0x07, 0x5e, 0x07, 0x5e, 0x07, 0x12, 0x08,\n  0x2c, 0x09, 0x1e, 0x09, 0xae, 0x08, 0xf0, 0x07, 0x16, 0x07, 0x1c, 0x06,\n  0x16, 0x05, 0xff, 0x03, 0xeb, 0x02, 0xd0, 0x01, 0xb3, 0x00, 0xab, 0xff,\n  0xab, 0xfe, 0xb9, 0xfd, 0xdb, 0xfc, 0x0f, 0xfc, 0x5a, 0xfb, 0xbe, 0xfa,\n  0x40, 0xfa, 0xd9, 0xf9, 0x91, 0xf9, 0x68, 0xf9, 0x52, 0xf9, 0x5e, 0xf9,\n  0x84, 0xf9, 0xc0, 0xf9, 0x15, 0xfa, 0x81, 0xfa, 0xec, 0xfa, 0x30, 0xfb,\n  0x85, 0xfb, 0xf2, 0xfb, 0x85, 0xfc, 0x0f, 0xfd, 0xcb, 0xfd, 0x61, 0xfe,\n  0xef, 0xff, 0x2f, 0x02, 0x79, 0x03, 0x5b, 0x04, 0xf3, 0x04, 0x66, 0x05,\n  0xb0, 0x05, 0xdf, 0x05, 0xf3, 0x05, 0xf6, 0x05, 0xdb, 0x05, 0xae, 0x05,\n  0x6c, 0x05, 0x1e, 0x05, 0xbb, 0x04, 0x4c, 0x04, 0xdd, 0x03, 0x6a, 0x04,\n  0xd7, 0x04, 0x8b, 0x04, 0x04, 0x04, 0x49, 0x03, 0x7b, 0x02, 0x94, 0x01,\n  0xb5, 0x00, 0xcf, 0xff, 0xf4, 0xfe, 0x19, 0xfe, 0x4f, 0xfd, 0x95, 0xfc,\n  0xf0, 0xfb, 0x5d, 0xfb, 0xe2, 0xfa, 0x80, 0xfa, 0x35, 0xfa, 0x01, 0xfa,\n  0xe6, 0xf9, 0xec, 0xf9, 0x01, 0xfa, 0x2e, 0xfa, 0x75, 0xfa, 0xca, 0xfa,\n  0x39, 0xfb, 0xa0, 0xfb, 0xd8, 0xfb, 0x23, 0xfc, 0x57, 0xfc, 0x7f, 0xfc,\n  0xc7, 0xfc, 0x2b, 0xfd, 0xa7, 0xfd, 0x39, 0xfe, 0xd6, 0xfe, 0x84, 0xff,\n  0x34, 0x00, 0xf1, 0x00, 0xa8, 0x01, 0x5f, 0x02, 0x0d, 0x03, 0xb1, 0x03,\n  0x4a, 0x04, 0xcf, 0x04, 0x48, 0x05, 0xa4, 0x05, 0xf7, 0x05, 0x27, 0x06,\n  0x4f, 0x06, 0x53, 0x06, 0x50, 0x06, 0x14, 0x06, 0x56, 0x06, 0x4b, 0x07,\n  0x77, 0x07, 0x30, 0x07, 0x9f, 0x06, 0xe7, 0x05, 0x06, 0x05, 0x1f, 0x04,\n  0x09, 0x03, 0xd7, 0x02, 0x23, 0x03, 0x87, 0x02, 0xa8, 0x01, 0x8c, 0x00,\n  0x6c, 0xff, 0x45, 0xfe, 0x21, 0xfd, 0x11, 0xfc, 0x15, 0xfb, 0x34, 0xfa,\n  0x6c, 0xf9, 0xc0, 0xf8, 0x39, 0xf8, 0xd7, 0xf7, 0x97, 0xf7, 0x73, 0xf7,\n  0x79, 0xf7, 0x9e, 0xf7, 0xe4, 0xf7, 0x39, 0xf8, 0x6d, 0xf8, 0xba, 0xf8,\n  0x32, 0xf9, 0xc9, 0xf9, 0x79, 0xfa, 0x4a, 0xfb, 0x27, 0xfc, 0x19, 0xfd,\n  0x13, 0xfe, 0x12, 0xff, 0x17, 0x00, 0x16, 0x01, 0x0f, 0x02, 0x01, 0x03,\n  0xe3, 0x03, 0xaf, 0x04, 0x6b, 0x05, 0x10, 0x06, 0x9b, 0x06, 0x0a, 0x07,\n  0x5b, 0x07, 0x92, 0x07, 0x9c, 0x07, 0x56, 0x07, 0x02, 0x08, 0x87, 0x08,\n  0x51, 0x08, 0xda, 0x07, 0x1b, 0x07, 0x4a, 0x06, 0x57, 0x05, 0x60, 0x04,\n  0x57, 0x03, 0x4f, 0x02, 0x3f, 0x01, 0x3b, 0x00, 0x3e, 0xff, 0x49, 0xfe,\n  0x69, 0xfd, 0x97, 0xfc, 0xdd, 0xfb, 0x34, 0xfb, 0xa9, 0xfa, 0x35, 0xfa,\n  0xda, 0xf9, 0xa1, 0xf9, 0x7d, 0xf9, 0x76, 0xf9, 0x8c, 0xf9, 0xb0, 0xf9,\n  0xf9, 0xf9, 0x4c, 0xfa, 0xc1, 0xfa, 0x15, 0xfb, 0x5a, 0xfb, 0xb6, 0xfb,\n  0x35, 0xfc, 0xab, 0xfc, 0x18, 0xfe, 0x34, 0x00, 0x63, 0x01, 0x45, 0x02,\n  0xdb, 0x02, 0x5f, 0x03, 0xc1, 0x03, 0x13, 0x04, 0x52, 0x04, 0x82, 0x04,\n  0x97, 0x04, 0x9f, 0x04, 0x9a, 0x04, 0x86, 0x04, 0x5f, 0x04, 0x32, 0x04,\n  0xed, 0x03, 0xaf, 0x03, 0x47, 0x03, 0x41, 0x03, 0x1b, 0x04, 0x52, 0x04,\n  0x0f, 0x04, 0x95, 0x03, 0xf3, 0x02, 0x43, 0x02, 0x85, 0x01, 0xc1, 0x00,\n  0xfe, 0xff, 0x3f, 0xff, 0x84, 0xfe, 0xd7, 0xfd, 0x33, 0xfd, 0xa5, 0xfc,\n  0x27, 0xfc, 0xb4, 0xfb, 0x64, 0xfb, 0x19, 0xfb, 0xed, 0xfa, 0xd5, 0xfa,\n  0xd1, 0xfa, 0xe0, 0xfa, 0x09, 0xfb, 0x2d, 0xfb, 0x24, 0xfb, 0x36, 0xfb,\n  0x61, 0xfb, 0xac, 0xfb, 0xfc, 0xfb, 0x31, 0xfc, 0x6f, 0xfc, 0xc7, 0xfc,\n  0x3b, 0xfd, 0xc5, 0xfd, 0x58, 0xfe, 0xff, 0xfe, 0xb0, 0xff, 0x64, 0x00,\n  0x1c, 0x01, 0xd0, 0x01, 0x81, 0x02, 0x29, 0x03, 0xc5, 0x03, 0x4f, 0x04,\n  0xce, 0x04, 0x36, 0x05, 0x8c, 0x05, 0xcf, 0x05, 0xfb, 0x05, 0x12, 0x06,\n  0x0e, 0x06, 0xfc, 0x05, 0xc7, 0x05, 0x73, 0x06, 0x28, 0x07, 0x1a, 0x07,\n  0xb3, 0x06, 0x1f, 0x06, 0x4b, 0x05, 0x44, 0x05, 0x9c, 0x05, 0x0c, 0x05,\n  0x2b, 0x04, 0x01, 0x03, 0xcd, 0x01, 0x89, 0x00, 0x4a, 0xff, 0x0a, 0xfe,\n  0xdf, 0xfc, 0xc1, 0xfb, 0xbe, 0xfa, 0xd8, 0xf9, 0x0d, 0xf9, 0x64, 0xf8,\n  0xdf, 0xf7, 0x7f, 0xf7, 0x41, 0xf7, 0x29, 0xf7, 0x33, 0xf7, 0x5f, 0xf7,\n  0xa9, 0xf7, 0x1c, 0xf8, 0x79, 0xf8, 0xc9, 0xf8, 0x46, 0xf9, 0xdd, 0xf9,\n  0x91, 0xfa, 0x61, 0xfb, 0x43, 0xfc, 0x33, 0xfd, 0x31, 0xfe, 0x32, 0xff,\n  0x35, 0x00, 0x39, 0x01, 0x33, 0x02, 0x23, 0x03, 0x02, 0x04, 0xcf, 0x04,\n  0x87, 0x05, 0x28, 0x06, 0xb3, 0x06, 0x1f, 0x07, 0x60, 0x07, 0x46, 0x07,\n  0x23, 0x07, 0xd3, 0x06, 0xe7, 0x06, 0xc4, 0x07, 0xf3, 0x07, 0xaf, 0x07,\n  0x23, 0x07, 0x6f, 0x06, 0x9b, 0x05, 0xb3, 0x04, 0xbf, 0x03, 0xc3, 0x02,\n  0xc4, 0x01, 0xc5, 0x00, 0xce, 0xff, 0xd6, 0xfe, 0xf7, 0xfd, 0x1f, 0xfd,\n  0x5f, 0xfc, 0xac, 0xfb, 0x18, 0xfb, 0x98, 0xfa, 0x2d, 0xfa, 0xe1, 0xf9,\n  0xb0, 0xf9, 0x95, 0xf9, 0x95, 0xf9, 0xad, 0xf9, 0xe6, 0xf9, 0x2a, 0xfa,\n  0x94, 0xfa, 0xf4, 0xfa, 0x45, 0xfb, 0x75, 0xfb, 0xb9, 0xfc, 0x96, 0xfe,\n  0x96, 0xff, 0x58, 0x00, 0xe2, 0x00, 0x5a, 0x01, 0xbd, 0x01, 0x1b, 0x02,\n  0x69, 0x02, 0xb3, 0x02, 0xf1, 0x02, 0x23, 0x03, 0x49, 0x03, 0x65, 0x03,\n  0x77, 0x03, 0x81, 0x03, 0x7d, 0x03, 0x6b, 0x03, 0x57, 0x03, 0x27, 0x03,\n  0x05, 0x03, 0xbf, 0x02, 0x53, 0x03, 0x1b, 0x04, 0x2e, 0x04, 0xf7, 0x03,\n  0x85, 0x03, 0x01, 0x03, 0x5f, 0x02, 0xc0, 0x01, 0x0f, 0x01, 0x64, 0x00,\n  0xb7, 0xff, 0x11, 0xff, 0x75, 0xfe, 0xdd, 0xfd, 0x59, 0xfd, 0xe3, 0xfc,\n  0x77, 0xfc, 0x21, 0xfc, 0xdc, 0xfb, 0xa5, 0xfb, 0x89, 0xfb, 0x65, 0xfb,\n  0x21, 0xfb, 0xee, 0xfa, 0xe0, 0xfa, 0xec, 0xfa, 0x12, 0xfb, 0x55, 0xfb,\n  0xb1, 0xfb, 0xfc, 0xfb, 0x2f, 0xfc, 0x83, 0xfc, 0xe9, 0xfc, 0x67, 0xfd,\n  0xf1, 0xfd, 0x94, 0xfe, 0x39, 0xff, 0xe7, 0xff, 0x98, 0x00, 0x4c, 0x01,\n  0xfa, 0x01, 0xa3, 0x02, 0x3f, 0x03, 0xd1, 0x03, 0x52, 0x04, 0xc2, 0x04,\n  0x22, 0x05, 0x6f, 0x05, 0x9f, 0x05, 0xc6, 0x05, 0xca, 0x05, 0xcf, 0x05,\n  0x9c, 0x05, 0xab, 0x05, 0x8a, 0x06, 0xec, 0x06, 0xa4, 0x06, 0x04, 0x07,\n  0x9a, 0x07, 0x3a, 0x07, 0x7b, 0x06, 0x6b, 0x05, 0x43, 0x04, 0xfb, 0x02,\n  0xac, 0x01, 0x5c, 0x00, 0x11, 0xff, 0xcf, 0xfd, 0x9f, 0xfc, 0x81, 0xfb,\n  0x85, 0xfa, 0xa1, 0xf9, 0xda, 0xf8, 0x39, 0xf8, 0xb9, 0xf7, 0x5e, 0xf7,\n  0x28, 0xf7, 0x17, 0xf7, 0x24, 0xf7, 0x58, 0xf7, 0xab, 0xf7, 0x1e, 0xf8,\n  0xa5, 0xf8, 0x0e, 0xf9, 0x84, 0xf9, 0x1d, 0xfa, 0xcd, 0xfa, 0x96, 0xfb,\n  0x79, 0xfc, 0x67, 0xfd, 0x5d, 0xfe, 0x5a, 0xff, 0x5b, 0x00, 0x55, 0x01,\n  0x49, 0x02, 0x37, 0x03, 0x0c, 0x04, 0xd7, 0x04, 0x87, 0x05, 0x23, 0x06,\n  0x93, 0x06, 0xb3, 0x06, 0xbf, 0x06, 0xbf, 0x06, 0xa4, 0x06, 0x8a, 0x06,\n  0x47, 0x06, 0xc7, 0x06, 0x82, 0x07, 0x76, 0x07, 0x22, 0x07, 0x8c, 0x06,\n  0xd6, 0x05, 0x07, 0x05, 0x22, 0x04, 0x35, 0x03, 0x43, 0x02, 0x49, 0x01,\n  0x55, 0x00, 0x66, 0xff, 0x81, 0xfe, 0xa9, 0xfd, 0xe1, 0xfc, 0x29, 0xfc,\n  0x88, 0xfb, 0xf9, 0xfa, 0x88, 0xfa, 0x25, 0xfa, 0xe5, 0xf9, 0xbe, 0xf9,\n  0xb1, 0xf9, 0xbc, 0xf9, 0xe2, 0xf9, 0x15, 0xfa, 0x74, 0xfa, 0xc4, 0xfa,\n  0xf6, 0xfb, 0x85, 0xfd, 0x49, 0xfe, 0xd6, 0xfe, 0x36, 0xff, 0x90, 0xff,\n  0xde, 0xff, 0x2f, 0x00, 0x80, 0x00, 0xcd, 0x00, 0x18, 0x01, 0x60, 0x01,\n  0xa8, 0x01, 0xe8, 0x01, 0x25, 0x02, 0x53, 0x02, 0x85, 0x02, 0xa5, 0x02,\n  0xc5, 0x02, 0xd5, 0x02, 0xe1, 0x02, 0xdf, 0x02, 0xdb, 0x02, 0xbd, 0x02,\n  0xcb, 0x02, 0xc3, 0x03, 0x58, 0x04, 0x5e, 0x04, 0x28, 0x04, 0xc9, 0x03,\n  0x4d, 0x03, 0xc1, 0x02, 0x27, 0x02, 0x8b, 0x01, 0xe9, 0x00, 0x44, 0x00,\n  0xa5, 0xff, 0x0b, 0xff, 0x7e, 0xfe, 0xf1, 0xfd, 0x7b, 0xfd, 0x0b, 0xfd,\n  0xad, 0xfc, 0x4b, 0xfc, 0xc6, 0xfb, 0x54, 0xfb, 0x04, 0xfb, 0xd2, 0xfa,\n  0xb9, 0xfa, 0xc1, 0xfa, 0xdd, 0xfa, 0x19, 0xfb, 0x64, 0xfb, 0xcc, 0xfb,\n  0x09, 0xfc, 0x47, 0xfc, 0xa7, 0xfc, 0x13, 0xfd, 0x97, 0xfd, 0x2e, 0xfe,\n  0xca, 0xfe, 0x72, 0xff, 0x1a, 0x00, 0xc8, 0x00, 0x73, 0x01, 0x1b, 0x02,\n  0xbd, 0x02, 0x4d, 0x03, 0xd3, 0x03, 0x48, 0x04, 0xaf, 0x04, 0x03, 0x05,\n  0x43, 0x05, 0x73, 0x05, 0x8c, 0x05, 0x8c, 0x05, 0x82, 0x05, 0x57, 0x05,\n  0xb0, 0x05, 0x4f, 0x07, 0x8f, 0x08, 0xae, 0x08, 0x3d, 0x08, 0x6f, 0x07,\n  0x6e, 0x06, 0x48, 0x05, 0x0b, 0x04, 0xc3, 0x02, 0x72, 0x01, 0x20, 0x00,\n  0xdb, 0xfe, 0xa1, 0xfd, 0x79, 0xfc, 0x62, 0xfb, 0x70, 0xfa, 0x91, 0xf9,\n  0xd8, 0xf8, 0x3c, 0xf8, 0xc4, 0xf7, 0x72, 0xf7, 0x42, 0xf7, 0x33, 0xf7,\n  0x4b, 0xf7, 0x84, 0xf7, 0xdb, 0xf7, 0x4e, 0xf8, 0xe5, 0xf8, 0x71, 0xf9,\n  0xe4, 0xf9, 0x79, 0xfa, 0x1d, 0xfb, 0xe8, 0xfb, 0xbb, 0xfc, 0x9f, 0xfd,\n  0x8e, 0xfe, 0x83, 0xff, 0x76, 0x00, 0x66, 0x01, 0x51, 0x02, 0x2d, 0x03,\n  0xff, 0x03, 0xc3, 0x04, 0x57, 0x05, 0xa3, 0x05, 0xe2, 0x05, 0x0f, 0x06,\n  0x2f, 0x06, 0x4a, 0x06, 0x43, 0x06, 0x37, 0x06, 0x0b, 0x06, 0x0b, 0x06,\n  0xdf, 0x06, 0x3c, 0x07, 0x0f, 0x07, 0xa4, 0x06, 0x06, 0x06, 0x4f, 0x05,\n  0x7a, 0x04, 0x9d, 0x03, 0xb1, 0x02, 0xc3, 0x01, 0xd3, 0x00, 0xe7, 0xff,\n  0x02, 0xff, 0x28, 0xfe, 0x5b, 0xfd, 0x99, 0xfc, 0xf4, 0xfb, 0x55, 0xfb,\n  0xd9, 0xfa, 0x70, 0xfa, 0x22, 0xfa, 0xec, 0xf9, 0xd1, 0xf9, 0xcc, 0xf9,\n  0xe9, 0xf9, 0x01, 0xfa, 0x1a, 0xfb, 0xb1, 0xfc, 0x85, 0xfd, 0xe5, 0xfd,\n  0x0a, 0xfe, 0x37, 0xfe, 0x5d, 0xfe, 0x90, 0xfe, 0xc3, 0xfe, 0x05, 0xff,\n  0x47, 0xff, 0x95, 0xff, 0xe3, 0xff, 0x2f, 0x00, 0x88, 0x00, 0xda, 0x00,\n  0x2d, 0x01, 0x79, 0x01, 0xc0, 0x01, 0x07, 0x02, 0x3f, 0x02, 0x73, 0x02,\n  0x9f, 0x02, 0xc3, 0x02, 0xd5, 0x02, 0xef, 0x02, 0xdd, 0x02, 0x7d, 0x03,\n  0x82, 0x04, 0xc7, 0x04, 0xca, 0x04, 0x87, 0x04, 0x2b, 0x04, 0xaf, 0x03,\n  0x27, 0x03, 0x95, 0x02, 0xfa, 0x01, 0x54, 0x01, 0xb0, 0x00, 0x10, 0x00,\n  0x6f, 0xff, 0xdb, 0xfe, 0x4f, 0xfe, 0xb5, 0xfd, 0xf9, 0xfc, 0x53, 0xfc,\n  0xc4, 0xfb, 0x51, 0xfb, 0x04, 0xfb, 0xc8, 0xfa, 0xad, 0xfa, 0xa9, 0xfa,\n  0xc4, 0xfa, 0xf4, 0xfa, 0x39, 0xfb, 0x99, 0xfb, 0xf2, 0xfb, 0x29, 0xfc,\n  0x75, 0xfc, 0xdd, 0xfc, 0x4f, 0xfd, 0xd7, 0xfd, 0x6d, 0xfe, 0x08, 0xff,\n  0xb0, 0xff, 0x55, 0x00, 0xfd, 0x00, 0xa2, 0x01, 0x3f, 0x02, 0xd5, 0x02,\n  0x5f, 0x03, 0xd9, 0x03, 0x43, 0x04, 0xa3, 0x04, 0xeb, 0x04, 0x24, 0x05,\n  0x44, 0x05, 0x5f, 0x05, 0x48, 0x05, 0x0b, 0x06, 0x22, 0x07, 0x39, 0x08,\n  0xd1, 0x08, 0x89, 0x08, 0xf7, 0x07, 0x0f, 0x07, 0x0f, 0x06, 0xe3, 0x04,\n  0xb1, 0x03, 0x6d, 0x02, 0x25, 0x01, 0xe1, 0xff, 0xa9, 0xfe, 0x7d, 0xfd,\n  0x63, 0xfc, 0x59, 0xfb, 0x74, 0xfa, 0xa4, 0xf9, 0xf9, 0xf8, 0x66, 0xf8,\n  0xfa, 0xf7, 0xb1, 0xf7, 0x89, 0xf7, 0x84, 0xf7, 0xa0, 0xf7, 0xdb, 0xf7,\n  0x39, 0xf8, 0xae, 0xf8, 0x3d, 0xf9, 0xe6, 0xf9, 0x6d, 0xfa, 0xf5, 0xfa,\n  0x94, 0xfb, 0x49, 0xfc, 0x13, 0xfd, 0xe7, 0xfd, 0xc9, 0xfe, 0xaa, 0xff,\n  0x8c, 0x00, 0x70, 0x01, 0x49, 0x02, 0x1f, 0x03, 0xcb, 0x03, 0x34, 0x04,\n  0x9a, 0x04, 0xf0, 0x04, 0x3b, 0x05, 0x80, 0x05, 0xb2, 0x05, 0xd3, 0x05,\n  0xec, 0x05, 0xe3, 0x05, 0xdf, 0x05, 0xab, 0x05, 0x02, 0x06, 0xce, 0x06,\n  0xe3, 0x06, 0xaa, 0x06, 0x28, 0x06, 0x87, 0x05, 0xcb, 0x04, 0xf9, 0x03,\n  0x1d, 0x03, 0x37, 0x02, 0x51, 0x01, 0x64, 0x00, 0x84, 0xff, 0xa6, 0xfe,\n  0xd3, 0xfd, 0x11, 0xfd, 0x5f, 0xfc, 0xbd, 0xfb, 0x35, 0xfb, 0xc1, 0xfa,\n  0x6a, 0xfa, 0x20, 0xfa, 0x04, 0xfa, 0xdd, 0xf9, 0xc1, 0xfa, 0x09, 0xfc,\n  0x9f, 0xfc, 0x07, 0xfd, 0x43, 0xfd, 0x73, 0xfd, 0x61, 0xfd, 0x61, 0xfd,\n  0x69, 0xfd, 0x83, 0xfd, 0xad, 0xfd, 0xdf, 0xfd, 0x27, 0xfe, 0x72, 0xfe,\n  0xc7, 0xfe, 0x2a, 0xff, 0x8a, 0xff, 0xf5, 0xff, 0x5c, 0x00, 0xc4, 0x00,\n  0x27, 0x01, 0x85, 0x01, 0xe1, 0x01, 0x33, 0x02, 0x81, 0x02, 0xbf, 0x02,\n  0xf9, 0x02, 0x21, 0x03, 0x41, 0x03, 0x63, 0x03, 0x63, 0x04, 0x2c, 0x05,\n  0x54, 0x05, 0x4b, 0x05, 0xfe, 0x04, 0xa3, 0x04, 0x1f, 0x04, 0x95, 0x03,\n  0xfb, 0x02, 0x57, 0x02, 0xab, 0x01, 0xfb, 0x00, 0x58, 0x00, 0x99, 0xff,\n  0xb5, 0xfe, 0xdd, 0xfd, 0x1f, 0xfd, 0x7b, 0xfc, 0xe6, 0xfb, 0x79, 0xfb,\n  0x1e, 0xfb, 0xd9, 0xfa, 0xb5, 0xfa, 0xa9, 0xfa, 0xb5, 0xfa, 0xdd, 0xfa,\n  0x18, 0xfb, 0x66, 0xfb, 0xc9, 0xfb, 0x11, 0xfc, 0x4f, 0xfc, 0xa5, 0xfc,\n  0x0b, 0xfd, 0x85, 0xfd, 0x0d, 0xfe, 0xa2, 0xfe, 0x3c, 0xff, 0xe0, 0xff,\n  0x7f, 0x00, 0x22, 0x01, 0xbb, 0x01, 0x55, 0x02, 0xdf, 0x02, 0x5f, 0x03,\n  0xd3, 0x03, 0x3a, 0x04, 0x87, 0x04, 0xd6, 0x04, 0xf4, 0x04, 0xfa, 0x05,\n  0x13, 0x07, 0x6c, 0x07, 0x53, 0x07, 0x6f, 0x07, 0x08, 0x08, 0xe2, 0x07,\n  0x5e, 0x07, 0x8a, 0x06, 0x93, 0x05, 0x7a, 0x04, 0x55, 0x03, 0x23, 0x02,\n  0xf4, 0x00, 0xc6, 0xff, 0x9c, 0xfe, 0x81, 0xfd, 0x7b, 0xfc, 0x89, 0xfb,\n  0xae, 0xfa, 0xed, 0xf9, 0x49, 0xf9, 0xc9, 0xf8, 0x65, 0xf8, 0x24, 0xf8,\n  0x01, 0xf8, 0x00, 0xf8, 0x1c, 0xf8, 0x5a, 0xf8, 0xb1, 0xf8, 0x25, 0xf9,\n  0xb0, 0xf9, 0x4d, 0xfa, 0xf6, 0xfa, 0x75, 0xfb, 0x07, 0xfc, 0xab, 0xfc,\n  0x5d, 0xfd, 0x24, 0xfe, 0xeb, 0xfe, 0xbd, 0xff, 0x8c, 0x00, 0x61, 0x01,\n  0x0f, 0x02, 0x87, 0x02, 0x03, 0x03, 0x77, 0x03, 0xe9, 0x03, 0x4c, 0x04,\n  0xab, 0x04, 0xfc, 0x04, 0x3b, 0x05, 0x6f, 0x05, 0x90, 0x05, 0xa6, 0x05,\n  0x9f, 0x05, 0x93, 0x05, 0x73, 0x05, 0x1e, 0x06, 0xab, 0x06, 0x93, 0x06,\n  0x42, 0x06, 0xb7, 0x05, 0x12, 0x05, 0x4f, 0x04, 0x83, 0x03, 0xa3, 0x02,\n  0xc7, 0x01, 0xdf, 0x00, 0xfc, 0xff, 0x21, 0xff, 0x4b, 0xfe, 0x89, 0xfd,\n  0xd1, 0xfc, 0x29, 0xfc, 0x9d, 0xfb, 0x15, 0xfb, 0xb8, 0xfa, 0x5d, 0xfa,\n  0x00, 0xfb, 0xfd, 0xfb, 0x4b, 0xfc, 0x77, 0xfc, 0x7f, 0xfc, 0x8d, 0xfc,\n  0x8f, 0xfc, 0xad, 0xfc, 0x9b, 0xfc, 0x83, 0xfc, 0x7b, 0xfc, 0x85, 0xfc,\n  0xad, 0xfc, 0xdd, 0xfc, 0x29, 0xfd, 0x7f, 0xfd, 0xdf, 0xfd, 0x4f, 0xfe,\n  0xc4, 0xfe, 0x3f, 0xff, 0xc0, 0xff, 0x3d, 0x00, 0xbe, 0x00, 0x39, 0x01,\n  0xae, 0x01, 0x1b, 0x02, 0x85, 0x02, 0xdb, 0x02, 0x31, 0x03, 0x6f, 0x03,\n  0xad, 0x03, 0xc5, 0x03, 0x3a, 0x04, 0x53, 0x05, 0xd3, 0x05, 0xec, 0x05,\n  0xc3, 0x05, 0x72, 0x05, 0x00, 0x05, 0x76, 0x04, 0xdf, 0x03, 0x35, 0x03,\n  0x87, 0x02, 0xba, 0x01, 0xc1, 0x00, 0xd1, 0xff, 0xee, 0xfe, 0x1c, 0xfe,\n  0x61, 0xfd, 0xb5, 0xfc, 0x23, 0xfc, 0xac, 0xfb, 0x48, 0xfb, 0x01, 0xfb,\n  0xd4, 0xfa, 0xb9, 0xfa, 0xbc, 0xfa, 0xd6, 0xfa, 0x01, 0xfb, 0x42, 0xfb,\n  0x9c, 0xfb, 0xf9, 0xfb, 0x2f, 0xfc, 0x75, 0xfc, 0xcd, 0xfc, 0x39, 0xfd,\n  0xb7, 0xfd, 0x3f, 0xfe, 0xd3, 0xfe, 0x69, 0xff, 0x02, 0x00, 0xa1, 0x00,\n  0x3a, 0x01, 0xd5, 0x01, 0x63, 0x02, 0xed, 0x02, 0x5f, 0x03, 0xd1, 0x03,\n  0x27, 0x04, 0x54, 0x05, 0xa2, 0x06, 0x1a, 0x07, 0x4b, 0x07, 0x26, 0x07,\n  0xe8, 0x06, 0x74, 0x06, 0xae, 0x06, 0xf8, 0x06, 0x92, 0x06, 0xee, 0x05,\n  0x0f, 0x05, 0x16, 0x04, 0x0b, 0x03, 0xf7, 0x01, 0xdd, 0x00, 0xc9, 0xff,\n  0xba, 0xfe, 0xb5, 0xfd, 0xc3, 0xfc, 0xe5, 0xfb, 0x19, 0xfb, 0x66, 0xfa,\n  0xd5, 0xf9, 0x59, 0xf9, 0xfd, 0xf8, 0xc1, 0xf8, 0xa5, 0xf8, 0xa1, 0xf8,\n  0xba, 0xf8, 0xf2, 0xf8, 0x45, 0xf9, 0xa9, 0xf9, 0x2e, 0xfa, 0xbd, 0xfa,\n  0x69, 0xfb, 0xf9, 0xfb, 0x73, 0xfc, 0x05, 0xfd, 0xa1, 0xfd, 0x4e, 0xfe,\n  0xfc, 0xfe, 0xba, 0xff, 0x5b, 0x00, 0xd1, 0x00, 0x49, 0x01, 0xcf, 0x01,\n  0x4d, 0x02, 0xcf, 0x02, 0x45, 0x03, 0xbd, 0x03, 0x23, 0x04, 0x84, 0x04,\n  0xcf, 0x04, 0x13, 0x05, 0x43, 0x05, 0x66, 0x05, 0x6f, 0x05, 0x6c, 0x05,\n  0x4b, 0x05, 0x6a, 0x05, 0x2f, 0x06, 0x70, 0x06, 0x44, 0x06, 0xde, 0x05,\n  0x4e, 0x05, 0x9f, 0x04, 0xdd, 0x03, 0x0f, 0x03, 0x35, 0x02, 0x54, 0x01,\n  0x74, 0x00, 0x9b, 0xff, 0xc9, 0xfe, 0x01, 0xfe, 0x45, 0xfd, 0x93, 0xfc,\n  0x05, 0xfc, 0x71, 0xfb, 0xd5, 0xfb, 0x83, 0xfc, 0x93, 0xfc, 0x83, 0xfc,\n  0x4b, 0xfc, 0x25, 0xfc, 0xf9, 0xfb, 0xdc, 0xfb, 0xc9, 0xfb, 0xcd, 0xfb,\n  0xd1, 0xfb, 0xb8, 0xfb, 0xa2, 0xfb, 0xb1, 0xfb, 0xd0, 0xfb, 0x0f, 0xfc,\n  0x59, 0xfc, 0xb9, 0xfc, 0x27, 0xfd, 0xa3, 0xfd, 0x2e, 0xfe, 0xbb, 0xfe,\n  0x50, 0xff, 0xe3, 0xff, 0x7d, 0x00, 0x0c, 0x01, 0x97, 0x01, 0x21, 0x02,\n  0x99, 0x02, 0x11, 0x03, 0x71, 0x03, 0xcd, 0x03, 0x0c, 0x04, 0x4f, 0x04,\n  0x6a, 0x04, 0x33, 0x05, 0x20, 0x06, 0x5f, 0x06, 0x5f, 0x06, 0x17, 0x06,\n  0xb7, 0x05, 0x2f, 0x05, 0x9c, 0x04, 0xd9, 0x03, 0xe3, 0x02, 0xee, 0x01,\n  0xfd, 0x00, 0x13, 0x00, 0x39, 0xff, 0x6a, 0xfe, 0xaf, 0xfd, 0x01, 0xfd,\n  0x6d, 0xfc, 0xed, 0xfb, 0x84, 0xfb, 0x31, 0xfb, 0xf8, 0xfa, 0xd5, 0xfa,\n  0xc8, 0xfa, 0xd5, 0xfa, 0xf5, 0xfa, 0x29, 0xfb, 0x70, 0xfb, 0xcd, 0xfb,\n  0x19, 0xfc, 0x51, 0xfc, 0x9b, 0xfc, 0xf7, 0xfc, 0x69, 0xfd, 0xe3, 0xfd,\n  0x6a, 0xfe, 0xf9, 0xfe, 0x92, 0xff, 0x2b, 0x00, 0xc1, 0x00, 0x5e, 0x01,\n  0xeb, 0x01, 0x7d, 0x02, 0xed, 0x02, 0x43, 0x04, 0xb0, 0x05, 0x57, 0x06,\n  0xb6, 0x06, 0xc3, 0x06, 0xb8, 0x06, 0x7c, 0x06, 0x2f, 0x06, 0xbc, 0x05,\n  0x63, 0x05, 0xbb, 0x05, 0xbe, 0x05, 0x43, 0x05, 0x97, 0x04, 0xbf, 0x03,\n  0xd7, 0x02, 0xdf, 0x01, 0xe9, 0x00, 0xf0, 0xff, 0xf9, 0xfe, 0x0d, 0xfe,\n  0x2d, 0xfd, 0x65, 0xfc, 0xad, 0xfb, 0x05, 0xfb, 0x81, 0xfa, 0x0a, 0xfa,\n  0xb6, 0xf9, 0x79, 0xf9, 0x5d, 0xf9, 0x56, 0xf9, 0x6c, 0xf9, 0x9d, 0xf9,\n  0xe2, 0xf9, 0x3d, 0xfa, 0xb1, 0xfa, 0x35, 0xfb, 0xc6, 0xfb, 0x63, 0xfc,\n  0xd9, 0xfc, 0x51, 0xfd, 0xcf, 0xfd, 0x67, 0xfe, 0xe2, 0xfe, 0x42, 0xff,\n  0xb0, 0xff, 0x22, 0x00, 0xa6, 0x00, 0x27, 0x01, 0xb2, 0x01, 0x39, 0x02,\n  0xbd, 0x02, 0x35, 0x03, 0xad, 0x03, 0x10, 0x04, 0x6c, 0x04, 0xb7, 0x04,\n  0xfa, 0x04, 0x20, 0x05, 0x3f, 0x05, 0x3f, 0x05, 0x3f, 0x05, 0x14, 0x05,\n  0x7e, 0x05, 0x2b, 0x06, 0x2b, 0x06, 0xf0, 0x05, 0x74, 0x05, 0xdf, 0x04,\n  0x27, 0x04, 0x67, 0x03, 0x95, 0x02, 0xc4, 0x01, 0xe9, 0x00, 0x11, 0x00,\n  0x42, 0xff, 0x73, 0xfe, 0xb7, 0xfd, 0x05, 0xfd, 0x45, 0xfd, 0xa7, 0xfd,\n  0x73, 0xfd, 0x23, 0xfd, 0xb9, 0xfc, 0x51, 0xfc, 0xf2, 0xfb, 0x99, 0xfb,\n  0x56, 0xfb, 0x25, 0xfb, 0x05, 0xfb, 0xf8, 0xfa, 0x01, 0xfb, 0x09, 0xfb,\n  0xf8, 0xfa, 0x00, 0xfb, 0x26, 0xfb, 0x64, 0xfb, 0xba, 0xfb, 0x23, 0xfc,\n  0xa1, 0xfc, 0x2b, 0xfd, 0xc1, 0xfd, 0x63, 0xfe, 0x09, 0xff, 0xb6, 0xff,\n  0x5c, 0x00, 0x04, 0x01, 0xa3, 0x01, 0x39, 0x02, 0xc9, 0x02, 0x4b, 0x03,\n  0xbf, 0x03, 0x27, 0x04, 0x78, 0x04, 0xc0, 0x04, 0xe3, 0x04, 0x24, 0x05,\n  0x1c, 0x06, 0xb7, 0x06, 0xc7, 0x06, 0x9f, 0x06, 0x43, 0x06, 0xab, 0x05,\n  0xd7, 0x04, 0xf7, 0x03, 0x11, 0x03, 0x29, 0x02, 0x43, 0x01, 0x64, 0x00,\n  0x90, 0xff, 0xc4, 0xfe, 0x0a, 0xfe, 0x5d, 0xfd, 0xc1, 0xfc, 0x3b, 0xfc,\n  0xcd, 0xfb, 0x6d, 0xfb, 0x28, 0xfb, 0xfa, 0xfa, 0xe0, 0xfa, 0xe0, 0xfa,\n  0xf1, 0xfa, 0x19, 0xfb, 0x55, 0xfb, 0x9e, 0xfb, 0xfc, 0xfb, 0x39, 0xfc,\n  0x71, 0xfc, 0xbf, 0xfc, 0x1f, 0xfd, 0x8f, 0xfd, 0x0d, 0xfe, 0x99, 0xfe,\n  0x27, 0xff, 0xbf, 0xff, 0x50, 0x00, 0xe9, 0x00, 0x7b, 0x01, 0xf3, 0x02,\n  0x6f, 0x04, 0x2e, 0x05, 0xab, 0x05, 0xe7, 0x05, 0x02, 0x06, 0xff, 0x05,\n  0xd8, 0x05, 0xa6, 0x05, 0x4e, 0x05, 0xf4, 0x04, 0x70, 0x04, 0x63, 0x04,\n  0xc4, 0x04, 0x92, 0x04, 0x1f, 0x04, 0x71, 0x03, 0xb3, 0x02, 0xe2, 0x01,\n  0x09, 0x01, 0x2b, 0x00, 0x57, 0xff, 0x84, 0xfe, 0xbf, 0xfd, 0x05, 0xfd,\n  0x59, 0xfc, 0xc9, 0xfb, 0x48, 0xfb, 0xe0, 0xfa, 0x8c, 0xfa, 0x51, 0xfa,\n  0x2e, 0xfa, 0x25, 0xfa, 0x31, 0xfa, 0x55, 0xfa, 0x8d, 0xfa, 0xd6, 0xfa,\n  0x39, 0xfb, 0xa8, 0xfb, 0x23, 0xfc, 0xb1, 0xfc, 0x31, 0xfd, 0x95, 0xfd,\n  0xdd, 0xfd, 0x10, 0xfe, 0x57, 0xfe, 0xb2, 0xfe, 0x1e, 0xff, 0x98, 0xff,\n  0x17, 0x00, 0xa0, 0x00, 0x2b, 0x01, 0xb4, 0x01, 0x3d, 0x02, 0xbf, 0x02,\n  0x3b, 0x03, 0xa7, 0x03, 0x0b, 0x04, 0x62, 0x04, 0xa6, 0x04, 0xdf, 0x04,\n  0xff, 0x04, 0x0f, 0x05, 0x13, 0x05, 0xfc, 0x04, 0xeb, 0x04, 0x90, 0x05,\n  0xf8, 0x05, 0xde, 0x05, 0x8a, 0x05, 0x06, 0x05, 0x64, 0x04, 0xaf, 0x03,\n  0xf1, 0x02, 0x23, 0x02, 0x58, 0x01, 0x80, 0x00, 0xb4, 0xff, 0xf0, 0xfe,\n  0x15, 0xff, 0x3b, 0xff, 0xd5, 0xfe, 0x55, 0xfe, 0xb1, 0xfd, 0x17, 0xfd,\n  0x7d, 0xfc, 0xf5, 0xfb, 0x7c, 0xfb, 0x12, 0xfb, 0xc1, 0xfa, 0x80, 0xfa,\n  0x59, 0xfa, 0x4e, 0xfa, 0x52, 0xfa, 0x74, 0xfa, 0x7e, 0xfa, 0x88, 0xfa,\n  0xb1, 0xfa, 0xf6, 0xfa, 0x56, 0xfb, 0xc5, 0xfb, 0x4f, 0xfc, 0xdf, 0xfc,\n  0x87, 0xfd, 0x34, 0xfe, 0xe5, 0xfe, 0xa1, 0xff, 0x56, 0x00, 0x0a, 0x01,\n  0xb8, 0x01, 0x5d, 0x02, 0xf9, 0x02, 0x83, 0x03, 0x07, 0x04, 0x6f, 0x04,\n  0xcf, 0x04, 0x12, 0x05, 0x4f, 0x05, 0x5b, 0x05, 0xd7, 0x05, 0xb6, 0x06,\n  0xfe, 0x06, 0xd3, 0x06, 0x47, 0x06, 0xa3, 0x05, 0xe2, 0x04, 0x1b, 0x04,\n  0x47, 0x03, 0x71, 0x02, 0x96, 0x01, 0xbf, 0x00, 0xf3, 0xff, 0x2a, 0xff,\n  0x70, 0xfe, 0xc1, 0xfd, 0x25, 0xfd, 0x95, 0xfc, 0x1d, 0xfc, 0xb9, 0xfb,\n  0x69, 0xfb, 0x30, 0xfb, 0x09, 0xfb, 0xf8, 0xfa, 0xfd, 0xfa, 0x12, 0xfb,\n  0x40, 0xfb, 0x81, 0xfb, 0xd1, 0xfb, 0x1d, 0xfc, 0x57, 0xfc, 0x8f, 0xfc,\n  0xe3, 0xfc, 0x49, 0xfd, 0xc1, 0xfd, 0x3c, 0xfe, 0xc6, 0xfe, 0x54, 0xff,\n  0xed, 0xff, 0x78, 0x01, 0xe9, 0x02, 0xb7, 0x03, 0x4b, 0x04, 0xa7, 0x04,\n  0xe7, 0x04, 0x06, 0x05, 0x12, 0x05, 0x06, 0x05, 0xe8, 0x04, 0xb2, 0x04,\n  0x76, 0x04, 0x1f, 0x04, 0xc5, 0x03, 0x61, 0x03, 0xab, 0x03, 0xf1, 0x03,\n  0xaf, 0x03, 0x43, 0x03, 0xa5, 0x02, 0x01, 0x02, 0x45, 0x01, 0x8e, 0x00,\n  0xd2, 0xff, 0x1e, 0xff, 0x6f, 0xfe, 0xc7, 0xfd, 0x31, 0xfd, 0xa3, 0xfc,\n  0x2d, 0xfc, 0xc4, 0xfb, 0x75, 0xfb, 0x39, 0xfb, 0x0c, 0xfb, 0xf9, 0xfa,\n  0xf9, 0xfa, 0x10, 0xfb, 0x32, 0xfb, 0x6e, 0xfb, 0xb6, 0xfb, 0x11, 0xfc,\n  0x71, 0xfc, 0xe3, 0xfc, 0x41, 0xfd, 0x5f, 0xfd, 0x79, 0xfd, 0xa1, 0xfd,\n  0xeb, 0xfd, 0x3f, 0xfe, 0xa9, 0xfe, 0x20, 0xff, 0x9c, 0xff, 0x25, 0x00,\n  0xad, 0x00, 0x3c, 0x01, 0xc9, 0x01, 0x4f, 0x02, 0xcb, 0x02, 0x41, 0x03,\n  0xa7, 0x03, 0x04, 0x04, 0x53, 0x04, 0x92, 0x04, 0xbb, 0x04, 0xdb, 0x04,\n  0xdf, 0x04, 0xdf, 0x04, 0xb8, 0x04, 0xdf, 0x04, 0x8c, 0x05, 0xb3, 0x05,\n  0x83, 0x05, 0x1e, 0x05, 0x94, 0x04, 0xf3, 0x03, 0x3f, 0x03, 0x7f, 0x02,\n  0xb7, 0x01, 0xf7, 0x00, 0x12, 0x01, 0x16, 0x01, 0x8e, 0x00, 0xec, 0xff,\n  0x24, 0xff, 0x60, 0xfe, 0x97, 0xfd, 0xdf, 0xfc, 0x2d, 0xfc, 0x95, 0xfb,\n  0x0d, 0xfb, 0x99, 0xfa, 0x41, 0xfa, 0x01, 0xfa, 0xda, 0xf9, 0xcc, 0xf9,\n  0xd9, 0xf9, 0xfd, 0xf9, 0x2d, 0xfa, 0x46, 0xfa, 0x70, 0xfa, 0xbc, 0xfa,\n  0x1a, 0xfb, 0x99, 0xfb, 0x1f, 0xfc, 0xc1, 0xfc, 0x6d, 0xfd, 0x24, 0xfe,\n  0xdf, 0xfe, 0xa1, 0xff, 0x5f, 0x00, 0x1c, 0x01, 0xd6, 0x01, 0x81, 0x02,\n  0x21, 0x03, 0xb3, 0x03, 0x37, 0x04, 0xa8, 0x04, 0x0a, 0x05, 0x52, 0x05,\n  0x84, 0x05, 0xa8, 0x05, 0xaf, 0x05, 0x3f, 0x06, 0x9f, 0x06, 0x7b, 0x06,\n  0x23, 0x06, 0x97, 0x05, 0xfa, 0x04, 0x40, 0x04, 0x83, 0x03, 0xb9, 0x02,\n  0xf0, 0x01, 0x22, 0x01, 0x59, 0x00, 0x96, 0xff, 0xdf, 0xfe, 0x2d, 0xfe,\n  0x8d, 0xfd, 0xfb, 0xfc, 0x77, 0xfc, 0x09, 0xfc, 0xad, 0xfb, 0x69, 0xfb,\n  0x34, 0xfb, 0x19, 0xfb, 0x10, 0xfb, 0x19, 0xfb, 0x3d, 0xfb, 0x69, 0xfb,\n  0xa8, 0xfb, 0xfc, 0xfb, 0x43, 0xfc, 0x71, 0xfc, 0xb9, 0xfc, 0x0f, 0xfd,\n  0x75, 0xfd, 0xe7, 0xfd, 0x70, 0xfe, 0xe6, 0xff, 0x4e, 0x01, 0x21, 0x02,\n  0xbd, 0x02, 0x2b, 0x03, 0x83, 0x03, 0xbf, 0x03, 0xef, 0x03, 0x07, 0x04,\n  0x13, 0x04, 0x07, 0x04, 0xfb, 0x03, 0xd5, 0x03, 0xa9, 0x03, 0x6d, 0x03,\n  0x2f, 0x03, 0xd5, 0x02, 0xb1, 0x02, 0x31, 0x03, 0x55, 0x03, 0x23, 0x03,\n  0xbf, 0x02, 0x3b, 0x02, 0xae, 0x01, 0x0f, 0x01, 0x77, 0x00, 0xd7, 0xff,\n  0x39, 0xff, 0xa3, 0xfe, 0x18, 0xfe, 0x97, 0xfd, 0x23, 0xfd, 0xbf, 0xfc,\n  0x67, 0xfc, 0x21, 0xfc, 0xf4, 0xfb, 0xcd, 0xfb, 0xbd, 0xfb, 0xc2, 0xfb,\n  0xd1, 0xfb, 0xf1, 0xfb, 0x21, 0xfc, 0x63, 0xfc, 0x8d, 0xfc, 0xa5, 0xfc,\n  0xd3, 0xfc, 0x0d, 0xfd, 0x2f, 0xfd, 0x57, 0xfd, 0x93, 0xfd, 0xe5, 0xfd,\n  0x4c, 0xfe, 0xbb, 0xfe, 0x33, 0xff, 0xb6, 0xff, 0x43, 0x00, 0xc8, 0x00,\n  0x57, 0x01, 0xde, 0x01, 0x5d, 0x02, 0xd5, 0x02, 0x41, 0x03, 0xa7, 0x03,\n  0xf9, 0x03, 0x3e, 0x04, 0x76, 0x04, 0x97, 0x04, 0xb2, 0x04, 0xaf, 0x04,\n  0xa6, 0x04, 0x78, 0x04, 0xd7, 0x04, 0x68, 0x05, 0x68, 0x05, 0x2c, 0x05,\n  0xbb, 0x04, 0x2f, 0x04, 0x8d, 0x03, 0xe5, 0x02, 0x07, 0x03, 0x0b, 0x03,\n  0x7d, 0x02, 0xc6, 0x01, 0xec, 0x00, 0x0b, 0x00, 0x26, 0xff, 0x45, 0xfe,\n  0x6d, 0xfd, 0xa5, 0xfc, 0xe8, 0xfb, 0x48, 0xfb, 0xba, 0xfa, 0x45, 0xfa,\n  0xe9, 0xf9, 0xa8, 0xf9, 0x82, 0xf9, 0x78, 0xf9, 0x89, 0xf9, 0xb0, 0xf9,\n  0xee, 0xf9, 0x31, 0xfa, 0x5e, 0xfa, 0xa6, 0xfa, 0x0e, 0xfb, 0x8a, 0xfb,\n  0x1b, 0xfc, 0xbb, 0xfc, 0x6d, 0xfd, 0x28, 0xfe, 0xe2, 0xfe, 0xad, 0xff,\n  0x6b, 0x00, 0x2e, 0x01, 0xe7, 0x01, 0x99, 0x02, 0x3d, 0x03, 0xd1, 0x03,\n  0x57, 0x04, 0xc7, 0x04, 0x27, 0x05, 0x6f, 0x05, 0xa4, 0x05, 0xab, 0x05,\n  0x72, 0x05, 0x63, 0x05, 0xf0, 0x05, 0x23, 0x06, 0xf7, 0x05, 0x93, 0x05,\n  0x0f, 0x05, 0x73, 0x04, 0xc1, 0x03, 0x0b, 0x03, 0x4b, 0x02, 0x8a, 0x01,\n  0xc7, 0x00, 0x07, 0x00, 0x53, 0xff, 0x9f, 0xfe, 0xf9, 0xfd, 0x67, 0xfd,\n  0xdb, 0xfc, 0x65, 0xfc, 0xfd, 0xfb, 0xac, 0xfb, 0x6d, 0xfb, 0x42, 0xfb,\n  0x2d, 0xfb, 0x29, 0xfb, 0x34, 0xfb, 0x59, 0xfb, 0x90, 0xfb, 0xd2, 0xfb,\n  0x29, 0xfc, 0x5b, 0xfc, 0x91, 0xfc, 0xdd, 0xfc, 0x3b, 0xfd, 0x8b, 0xfe,\n  0xd5, 0xff, 0x95, 0x00, 0x2b, 0x01, 0x99, 0x01, 0xf9, 0x01, 0x45, 0x02,\n  0x87, 0x02, 0xbb, 0x02, 0xe7, 0x02, 0x01, 0x03, 0x11, 0x03, 0x1b, 0x03,\n  0x17, 0x03, 0x0d, 0x03, 0xf5, 0x02, 0xd5, 0x02, 0xab, 0x02, 0x85, 0x02,\n  0x39, 0x02, 0x77, 0x02, 0x07, 0x03, 0x11, 0x03, 0xe7, 0x02, 0x8b, 0x02,\n  0x21, 0x02, 0xa5, 0x01, 0x21, 0x01, 0x98, 0x00, 0x0e, 0x00, 0x87, 0xff,\n  0x03, 0xff, 0x8a, 0xfe, 0x18, 0xfe, 0xaf, 0xfd, 0x55, 0xfd, 0x07, 0xfd,\n  0xc5, 0xfc, 0x95, 0xfc, 0x71, 0xfc, 0x5f, 0xfc, 0x5b, 0xfc, 0x63, 0xfc,\n  0x5f, 0xfc, 0x41, 0xfc, 0x47, 0xfc, 0x59, 0xfc, 0x83, 0xfc, 0xc1, 0xfc,\n  0xfb, 0xfc, 0x1f, 0xfd, 0x55, 0xfd, 0x9f, 0xfd, 0xfd, 0xfd, 0x66, 0xfe,\n  0xd9, 0xfe, 0x5a, 0xff, 0xe1, 0xff, 0x67, 0x00, 0xee, 0x00, 0x73, 0x01,\n  0xf4, 0x01, 0x6f, 0x02, 0xe5, 0x02, 0x47, 0x03, 0xa1, 0x03, 0xe9, 0x03,\n  0x28, 0x04, 0x57, 0x04, 0x70, 0x04, 0x7f, 0x04, 0x78, 0x04, 0x62, 0x04,\n  0x56, 0x04, 0xef, 0x04, 0x3b, 0x05, 0x1f, 0x05, 0xd0, 0x04, 0x63, 0x04,\n  0xb6, 0x04, 0xc4, 0x04, 0x4b, 0x04, 0x9d, 0x03, 0xc7, 0x02, 0xde, 0x01,\n  0xe9, 0x00, 0xf2, 0xff, 0x00, 0xff, 0x15, 0xfe, 0x37, 0xfd, 0x6b, 0xfc,\n  0xae, 0xfb, 0x09, 0xfb, 0x81, 0xfa, 0x10, 0xfa, 0xb5, 0xf9, 0x79, 0xf9,\n  0x59, 0xf9, 0x52, 0xf9, 0x65, 0xf9, 0x92, 0xf9, 0xd9, 0xf9, 0x31, 0xfa,\n  0x79, 0xfa, 0xc1, 0xfa, 0x2d, 0xfb, 0xa9, 0xfb, 0x3b, 0xfc, 0xdd, 0xfc,\n  0x8d, 0xfd, 0x46, 0xfe, 0x03, 0xff, 0xc6, 0xff, 0x88, 0x00, 0x49, 0x01,\n  0x03, 0x02, 0xb1, 0x02, 0x53, 0x03, 0xe3, 0x03, 0x64, 0x04, 0xd3, 0x04,\n  0x36, 0x05, 0x5a, 0x05, 0x57, 0x05, 0x3f, 0x05, 0x27, 0x05, 0xee, 0x04,\n  0x36, 0x05, 0xbe, 0x05, 0xbc, 0x05, 0x87, 0x05, 0x14, 0x05, 0x97, 0x04,\n  0xfb, 0x03, 0x53, 0x03, 0x9f, 0x02, 0xe5, 0x01, 0x2a, 0x01, 0x6d, 0x00,\n  0xba, 0xff, 0x06, 0xff, 0x63, 0xfe, 0xc7, 0xfd, 0x37, 0xfd, 0xbb, 0xfc,\n  0x4d, 0xfc, 0xf1, 0xfb, 0xa5, 0xfb, 0x6e, 0xfb, 0x49, 0xfb, 0x3d, 0xfb,\n  0x41, 0xfb, 0x55, 0xfb, 0x81, 0xfb, 0xb6, 0xfb, 0x07, 0xfc, 0x49, 0xfc,\n  0x83, 0xfc, 0xa7, 0xfd, 0xbd, 0xfe, 0x57, 0xff, 0xd2, 0xff, 0x2c, 0x00,\n  0x80, 0x00, 0xc7, 0x00, 0x0c, 0x01, 0x4b, 0x01, 0x84, 0x01, 0xb4, 0x01,\n  0xe2, 0x01, 0x0b, 0x02, 0x2b, 0x02, 0x43, 0x02, 0x55, 0x02, 0x5f, 0x02,\n  0x61, 0x02, 0x5d, 0x02, 0x4f, 0x02, 0x39, 0x02, 0x1d, 0x02, 0x0d, 0x02,\n  0xa5, 0x02, 0x15, 0x03, 0x15, 0x03, 0xe9, 0x02, 0x9f, 0x02, 0x3f, 0x02,\n  0xd0, 0x01, 0x60, 0x01, 0xe5, 0x00, 0x6b, 0x00, 0xed, 0xff, 0x78, 0xff,\n  0x05, 0xff, 0x97, 0xfe, 0x34, 0xfe, 0xdd, 0xfd, 0x89, 0xfd, 0x49, 0xfd,\n  0x13, 0xfd, 0xef, 0xfc, 0xaf, 0xfc, 0x69, 0xfc, 0x3b, 0xfc, 0x17, 0xfc,\n  0x19, 0xfc, 0x2d, 0xfc, 0x4f, 0xfc, 0x83, 0xfc, 0xcf, 0xfc, 0x01, 0xfd,\n  0x2b, 0xfd, 0x6d, 0xfd, 0xc1, 0xfd, 0x22, 0xfe, 0x8d, 0xfe, 0x06, 0xff,\n  0x89, 0xff, 0x08, 0x00, 0x8e, 0x00, 0x13, 0x01, 0x91, 0x01, 0x0d, 0x02,\n  0x7f, 0x02, 0xeb, 0x02, 0x43, 0x03, 0x99, 0x03, 0xd7, 0x03, 0x0e, 0x04,\n  0x30, 0x04, 0x48, 0x04, 0x48, 0x04, 0x43, 0x04, 0x1a, 0x04, 0x53, 0x04,\n  0xe7, 0x04, 0x0f, 0x05, 0xbf, 0x05, 0x0f, 0x06, 0xc3, 0x05, 0x3b, 0x05,\n  0x7b, 0x04, 0xa3, 0x03, 0xb1, 0x02, 0xbe, 0x01, 0xbf, 0x00, 0xc8, 0xff,\n  0xd0, 0xfe, 0xe7, 0xfd, 0x0d, 0xfd, 0x43, 0xfc, 0x8d, 0xfb, 0xed, 0xfa,\n  0x66, 0xfa, 0xf9, 0xf9, 0xa8, 0xf9, 0x74, 0xf9, 0x54, 0xf9, 0x54, 0xf9,\n  0x6e, 0xf9, 0xa1, 0xf9, 0xe9, 0xf9, 0x4e, 0xfa, 0xb2, 0xfa, 0x02, 0xfb,\n  0x65, 0xfb, 0xe1, 0xfb, 0x71, 0xfc, 0x0d, 0xfd, 0xb9, 0xfd, 0x6d, 0xfe,\n  0x29, 0xff, 0xe6, 0xff, 0xa3, 0x00, 0x5a, 0x01, 0x0d, 0x02, 0xb7, 0x02,\n  0x53, 0x03, 0xdd, 0x03, 0x5e, 0x04, 0xa6, 0x04, 0xc4, 0x04, 0xdb, 0x04,\n  0xe6, 0x04, 0xe4, 0x04, 0xd6, 0x04, 0xbf, 0x04, 0xa3, 0x04, 0x2b, 0x05,\n  0x7e, 0x05, 0x63, 0x05, 0x20, 0x05, 0xaf, 0x04, 0x2b, 0x04, 0x8d, 0x03,\n  0xe9, 0x02, 0x3b, 0x02, 0x88, 0x01, 0xd0, 0x00, 0x1c, 0x00, 0x71, 0xff,\n  0xc3, 0xfe, 0x28, 0xfe, 0x97, 0xfd, 0x0f, 0xfd, 0x9d, 0xfc, 0x35, 0xfc,\n  0xde, 0xfb, 0x9c, 0xfb, 0x75, 0xfb, 0x56, 0xfb, 0x51, 0xfb, 0x5a, 0xfb,\n  0x79, 0xfb, 0xa8, 0xfb, 0xf1, 0xfb, 0x1f, 0xfd, 0x12, 0xfe, 0x79, 0xfe,\n  0xcd, 0xfe, 0x06, 0xff, 0x3f, 0xff, 0x75, 0xff, 0xaa, 0xff, 0xe3, 0xff,\n  0x1a, 0x00, 0x53, 0x00, 0x8f, 0x00, 0xc4, 0x00, 0xfa, 0x00, 0x30, 0x01,\n  0x64, 0x01, 0x8a, 0x01, 0xb5, 0x01, 0xd3, 0x01, 0xf1, 0x01, 0x05, 0x02,\n  0x15, 0x02, 0x1b, 0x02, 0x21, 0x02, 0x0b, 0x02, 0x5d, 0x02, 0x15, 0x03,\n  0x4f, 0x03, 0x4d, 0x03, 0x23, 0x03, 0xe1, 0x02, 0x85, 0x02, 0x21, 0x02,\n  0xb1, 0x01, 0x3f, 0x01, 0xc7, 0x00, 0x4d, 0x00, 0xd8, 0xff, 0x68, 0xff,\n  0xf9, 0xfe, 0x94, 0xfe, 0x36, 0xfe, 0xe5, 0xfd, 0x7f, 0xfd, 0x07, 0xfd,\n  0xa9, 0xfc, 0x5d, 0xfc, 0x2f, 0xfc, 0x11, 0xfc, 0x07, 0xfc, 0x13, 0xfc,\n  0x2f, 0xfc, 0x5f, 0xfc, 0xa5, 0xfc, 0xe9, 0xfc, 0x0d, 0xfd, 0x45, 0xfd,\n  0x8f, 0xfd, 0xe9, 0xfd, 0x4e, 0xfe, 0xc1, 0xfe, 0x38, 0xff, 0xb6, 0xff,\n  0x34, 0x00, 0xb6, 0x00, 0x34, 0x01, 0xb1, 0x01, 0x23, 0x02, 0x8f, 0x02,\n  0xed, 0x02, 0x43, 0x03, 0x8b, 0x03, 0xc5, 0x03, 0xf1, 0x03, 0x0e, 0x04,\n  0x1b, 0x04, 0x1b, 0x04, 0x07, 0x04, 0x04, 0x04, 0x57, 0x05, 0x66, 0x06,\n  0x83, 0x06, 0x53, 0x06, 0xc8, 0x05, 0x1e, 0x05, 0x4c, 0x04, 0x6d, 0x03,\n  0x7b, 0x02, 0x85, 0x01, 0x8b, 0x00, 0x98, 0xff, 0xa9, 0xfe, 0xc5, 0xfd,\n  0xf1, 0xfc, 0x31, 0xfc, 0x84, 0xfb, 0xec, 0xfa, 0x6d, 0xfa, 0x06, 0xfa,\n  0xbd, 0xf9, 0x8d, 0xf9, 0x76, 0xf9, 0x7d, 0xf9, 0x9a, 0xf9, 0xce, 0xf9,\n  0x1d, 0xfa, 0x82, 0xfa, 0xf1, 0xfa, 0x59, 0xfb, 0xb5, 0xfb, 0x29, 0xfc,\n  0xb3, 0xfc, 0x4b, 0xfd, 0xf1, 0xfd, 0x9d, 0xfe, 0x4e, 0xff, 0x04, 0x00,\n  0xb9, 0x00, 0x64, 0x01, 0x11, 0x02, 0xaf, 0x02, 0x43, 0x03, 0xab, 0x03,\n  0xe7, 0x03, 0x22, 0x04, 0x4c, 0x04, 0x73, 0x04, 0x88, 0x04, 0x9b, 0x04,\n  0x97, 0x04, 0x8e, 0x04, 0x67, 0x04, 0x9e, 0x04, 0x2c, 0x05, 0x43, 0x05,\n  0x1b, 0x05, 0xbf, 0x04, 0x4b, 0x04, 0xbf, 0x03, 0x25, 0x03, 0x81, 0x02,\n  0xd6, 0x01, 0x21, 0x01, 0x73, 0x00, 0xc6, 0xff, 0x1e, 0xff, 0x7f, 0xfe,\n  0xe7, 0xfd, 0x5d, 0xfd, 0xe3, 0xfc, 0x77, 0xfc, 0x1b, 0xfc, 0xcc, 0xfb,\n  0x9d, 0xfb, 0x72, 0xfb, 0x65, 0xfb, 0x65, 0xfb, 0x86, 0xfb, 0x7f, 0xfc,\n  0x69, 0xfd, 0xe9, 0xfd, 0x3c, 0xfe, 0x51, 0xfe, 0x5e, 0xfe, 0x73, 0xfe,\n  0x8e, 0xfe, 0xaf, 0xfe, 0xd9, 0xfe, 0x05, 0xff, 0x3e, 0xff, 0x78, 0xff,\n  0xb6, 0xff, 0xf9, 0xff, 0x3d, 0x00, 0x7d, 0x00, 0xc1, 0x00, 0xfe, 0x00,\n  0x3c, 0x01, 0x73, 0x01, 0xa8, 0x01, 0xd3, 0x01, 0xf6, 0x01, 0x15, 0x02,\n  0x31, 0x02, 0x3b, 0x02, 0x4d, 0x02, 0xf1, 0x02, 0x83, 0x03, 0xa7, 0x03,\n  0xa1, 0x03, 0x71, 0x03, 0x29, 0x03, 0xcf, 0x02, 0x6f, 0x02, 0xfd, 0x01,\n  0x8b, 0x01, 0x10, 0x01, 0x94, 0x00, 0x1c, 0x00, 0xa2, 0xff, 0x33, 0xff,\n  0xa9, 0xfe, 0x10, 0xfe, 0x89, 0xfd, 0x13, 0xfd, 0xb5, 0xfc, 0x6b, 0xfc,\n  0x33, 0xfc, 0x11, 0xfc, 0x03, 0xfc, 0x03, 0xfc, 0x1d, 0xfc, 0x4d, 0xfc,\n  0x81, 0xfc, 0xd1, 0xfc, 0x01, 0xfd, 0x2f, 0xfd, 0x6d, 0xfd, 0xbb, 0xfd,\n  0x1c, 0xfe, 0x82, 0xfe, 0xf1, 0xfe, 0x69, 0xff, 0xe4, 0xff, 0x5f, 0x00,\n  0xd9, 0x00, 0x54, 0x01, 0xc4, 0x01, 0x31, 0x02, 0x93, 0x02, 0xed, 0x02,\n  0x39, 0x03, 0x77, 0x03, 0xb1, 0x03, 0xd1, 0x03, 0xeb, 0x03, 0xff, 0x03,\n  0xce, 0x04, 0x57, 0x05, 0xa6, 0x05, 0x42, 0x06, 0x4b, 0x06, 0x02, 0x06,\n  0x74, 0x05, 0xca, 0x04, 0xfd, 0x03, 0x23, 0x03, 0x39, 0x02, 0x4b, 0x01,\n  0x5e, 0x00, 0x75, 0xff, 0x94, 0xfe, 0xbb, 0xfd, 0xf5, 0xfc, 0x3f, 0xfc,\n  0x9d, 0xfb, 0x11, 0xfb, 0x99, 0xfa, 0x3d, 0xfa, 0xfa, 0xf9, 0xd1, 0xf9,\n  0xbe, 0xf9, 0xc9, 0xf9, 0xe9, 0xf9, 0x20, 0xfa, 0x6a, 0xfa, 0xcd, 0xfa,\n  0x45, 0xfb, 0xbd, 0xfb, 0x1f, 0xfc, 0x87, 0xfc, 0x09, 0xfd, 0x93, 0xfd,\n  0x2d, 0xfe, 0xc9, 0xfe, 0x6f, 0xff, 0x16, 0x00, 0xbc, 0x00, 0x5e, 0x01,\n  0xf9, 0x01, 0x6f, 0x02, 0xc3, 0x02, 0x15, 0x03, 0x5f, 0x03, 0xa5, 0x03,\n  0xdd, 0x03, 0x0e, 0x04, 0x37, 0x04, 0x4c, 0x04, 0x5b, 0x04, 0x5e, 0x04,\n  0x4f, 0x04, 0x37, 0x04, 0xa8, 0x04, 0x0c, 0x05, 0x07, 0x05, 0xce, 0x04,\n  0x6a, 0x04, 0xf1, 0x03, 0x65, 0x03, 0xc9, 0x02, 0x27, 0x02, 0x7e, 0x01,\n  0xd0, 0x00, 0x23, 0x00, 0x7e, 0xff, 0xdb, 0xfe, 0x40, 0xfe, 0xb1, 0xfd,\n  0x33, 0xfd, 0xbf, 0xfc, 0x5b, 0xfc, 0x0b, 0xfc, 0xc9, 0xfb, 0x9c, 0xfb,\n  0x95, 0xfb, 0x5b, 0xfc, 0x0d, 0xfd, 0x59, 0xfd, 0x91, 0xfd, 0xaf, 0xfd,\n  0xd7, 0xfd, 0xd7, 0xfd, 0xc7, 0xfd, 0xc5, 0xfd, 0xcd, 0xfd, 0xe5, 0xfd,\n  0x06, 0xfe, 0x34, 0xfe, 0x6a, 0xfe, 0xac, 0xfe, 0xf4, 0xfe, 0x42, 0xff,\n  0x95, 0xff, 0xe6, 0xff, 0x3b, 0x00, 0x8e, 0x00, 0xdf, 0x00, 0x31, 0x01,\n  0x73, 0x01, 0xbb, 0x01, 0xf4, 0x01, 0x2d, 0x02, 0x57, 0x02, 0x81, 0x02,\n  0x8d, 0x02, 0xdb, 0x02, 0x9d, 0x03, 0x02, 0x04, 0x18, 0x04, 0x03, 0x04,\n  0xcd, 0x03, 0x83, 0x03, 0x23, 0x03, 0xb7, 0x02, 0x45, 0x02, 0xc7, 0x01,\n  0x45, 0x01, 0xc4, 0x00, 0x23, 0x00, 0x71, 0xff, 0xca, 0xfe, 0x31, 0xfe,\n  0xaf, 0xfd, 0x39, 0xfd, 0xd7, 0xfc, 0x85, 0xfc, 0x4b, 0xfc, 0x23, 0xfc,\n  0x0d, 0xfc, 0x0d, 0xfc, 0x17, 0xfc, 0x3b, 0xfc, 0x6b, 0xfc, 0xa7, 0xfc,\n  0xf5, 0xfc, 0x1d, 0xfd, 0x4d, 0xfd, 0x91, 0xfd, 0xe3, 0xfd, 0x40, 0xfe,\n  0xa8, 0xfe, 0x17, 0xff, 0x8a, 0xff, 0x05, 0x00, 0x77, 0x00, 0xf1, 0x00,\n  0x61, 0x01, 0xd0, 0x01, 0x39, 0x02, 0x93, 0x02, 0xe5, 0x02, 0x2f, 0x03,\n  0x65, 0x03, 0xab, 0x03, 0x9c, 0x04, 0x4e, 0x05, 0x7b, 0x05, 0x7f, 0x05,\n  0x43, 0x05, 0x77, 0x05, 0xb2, 0x05, 0x74, 0x05, 0xff, 0x04, 0x5b, 0x04,\n  0xa3, 0x03, 0xd3, 0x02, 0xff, 0x01, 0x22, 0x01, 0x47, 0x00, 0x6e, 0xff,\n  0x9d, 0xfe, 0xd1, 0xfd, 0x19, 0xfd, 0x71, 0xfc, 0xdd, 0xfb, 0x5a, 0xfb,\n  0xec, 0xfa, 0x98, 0xfa, 0x59, 0xfa, 0x39, 0xfa, 0x28, 0xfa, 0x35, 0xfa,\n  0x4e, 0xfa, 0x88, 0xfa, 0xd1, 0xfa, 0x2d, 0xfb, 0x99, 0xfb, 0x17, 0xfc,\n  0x87, 0xfc, 0xe7, 0xfc, 0x5b, 0xfd, 0xd5, 0xfd, 0x5d, 0xfe, 0xed, 0xfe,\n  0x81, 0xff, 0x19, 0x00, 0xad, 0x00, 0x22, 0x01, 0x7e, 0x01, 0xd9, 0x01,\n  0x37, 0x02, 0x8f, 0x02, 0xe7, 0x02, 0x33, 0x03, 0x79, 0x03, 0xb5, 0x03,\n  0xe9, 0x03, 0x0a, 0x04, 0x24, 0x04, 0x2f, 0x04, 0x2f, 0x04, 0x16, 0x04,\n  0x27, 0x04, 0xb2, 0x04, 0xe3, 0x04, 0xcb, 0x04, 0x82, 0x04, 0x17, 0x04,\n  0x9d, 0x03, 0x0b, 0x03, 0x6f, 0x02, 0xcf, 0x01, 0x2b, 0x01, 0x7d, 0x00,\n  0xd8, 0xff, 0x36, 0xff, 0x9a, 0xfe, 0x0a, 0xfe, 0x87, 0xfd, 0x0b, 0xfd,\n  0xa7, 0xfc, 0x45, 0xfc, 0x17, 0xfc, 0xab, 0xfc, 0x1f, 0xfd, 0x3d, 0xfd,\n  0x43, 0xfd, 0x3d, 0xfd, 0x3d, 0xfd, 0x35, 0xfd, 0x3b, 0xfd, 0x43, 0xfd,\n  0x2f, 0xfd, 0x1b, 0xfd, 0x1f, 0xfd, 0x2f, 0xfd, 0x4f, 0xfd, 0x7f, 0xfd,\n  0xbb, 0xfd, 0x04, 0xfe, 0x57, 0xfe, 0xb2, 0xfe, 0x0f, 0xff, 0x75, 0xff,\n  0xda, 0xff, 0x41, 0x00, 0xa4, 0x00, 0x06, 0x01, 0x64, 0x01, 0xba, 0x01,\n  0x0b, 0x02, 0x51, 0x02, 0x93, 0x02, 0xc1, 0x02, 0xed, 0x02, 0x05, 0x03,\n  0x8f, 0x03, 0x43, 0x04, 0x7a, 0x04, 0x82, 0x04, 0x57, 0x04, 0x1a, 0x04,\n  0xc1, 0x03, 0x59, 0x03, 0xe3, 0x02, 0x63, 0x02, 0xbe, 0x01, 0xfb, 0x00,\n  0x49, 0x00, 0x9c, 0xff, 0xfd, 0xfe, 0x67, 0xfe, 0xe3, 0xfd, 0x6d, 0xfd,\n  0x07, 0xfd, 0xaf, 0xfc, 0x71, 0xfc, 0x45, 0xfc, 0x23, 0xfc, 0x11, 0xfc,\n  0x1d, 0xfc, 0x37, 0xfc, 0x59, 0xfc, 0x91, 0xfc, 0xd1, 0xfc, 0x0f, 0xfd,\n  0x37, 0xfd, 0x6d, 0xfd, 0xb3, 0xfd, 0x07, 0xfe, 0x67, 0xfe, 0xcd, 0xfe,\n  0x36, 0xff, 0xab, 0xff, 0x1a, 0x00, 0x92, 0x00, 0x04, 0x01, 0x76, 0x01,\n  0xdb, 0x01, 0x3f, 0x02, 0x91, 0x02, 0xfd, 0x02, 0x13, 0x04, 0xd6, 0x04,\n  0x2e, 0x05, 0x4e, 0x05, 0x3c, 0x05, 0x1b, 0x05, 0xcc, 0x04, 0x8f, 0x04,\n  0xcb, 0x04, 0xcc, 0x04, 0x6e, 0x04, 0xe9, 0x03, 0x49, 0x03, 0x93, 0x02,\n  0xd0, 0x01, 0x0a, 0x01, 0x40, 0x00, 0x81, 0xff, 0xbd, 0xfe, 0x09, 0xfe,\n  0x5f, 0xfd, 0xc3, 0xfc, 0x3b, 0xfc, 0xc4, 0xfb, 0x64, 0xfb, 0x11, 0xfb,\n  0xd9, 0xfa, 0xb9, 0xfa, 0xa9, 0xfa, 0xb5, 0xfa, 0xcd, 0xfa, 0x01, 0xfb,\n  0x41, 0xfb, 0x96, 0xfb, 0xfe, 0xfb, 0x6b, 0xfc, 0xe9, 0xfc, 0x47, 0xfd,\n  0xa3, 0xfd, 0x0d, 0xfe, 0x84, 0xfe, 0x02, 0xff, 0x81, 0xff, 0xe7, 0xff,\n  0x38, 0x00, 0x97, 0x00, 0xf7, 0x00, 0x57, 0x01, 0xb8, 0x01, 0x1d, 0x02,\n  0x7b, 0x02, 0xd1, 0x02, 0x19, 0x03, 0x65, 0x03, 0x9b, 0x03, 0xcd, 0x03,\n  0xef, 0x03, 0x04, 0x04, 0x0a, 0x04, 0x04, 0x04, 0xe9, 0x03, 0x2b, 0x04,\n  0xa7, 0x04, 0xaf, 0x04, 0x87, 0x04, 0x33, 0x04, 0xc5, 0x03, 0x41, 0x03,\n  0xb3, 0x02, 0x19, 0x02, 0x76, 0x01, 0xd3, 0x00, 0x2f, 0x00, 0x8d, 0xff,\n  0xf7, 0xfe, 0x60, 0xfe, 0xdd, 0xfd, 0x55, 0xfd, 0x07, 0xfd, 0x71, 0xfd,\n  0xa9, 0xfd, 0x99, 0xfd, 0x71, 0xfd, 0x3f, 0xfd, 0x0f, 0xfd, 0xe5, 0xfc,\n  0xc3, 0xfc, 0xab, 0xfc, 0xa1, 0xfc, 0xa1, 0xfc, 0xa3, 0xfc, 0x89, 0xfc,\n  0x89, 0xfc, 0x9b, 0xfc, 0xbb, 0xfc, 0xef, 0xfc, 0x31, 0xfd, 0x83, 0xfd,\n  0xdd, 0xfd, 0x45, 0xfe, 0xb4, 0xfe, 0x24, 0xff, 0x99, 0xff, 0x10, 0x00,\n  0x85, 0x00, 0xf7, 0x00, 0x64, 0x01, 0xc9, 0x01, 0x2d, 0x02, 0x7f, 0x02,\n  0xcf, 0x02, 0x0b, 0x03, 0x41, 0x03, 0x61, 0x03, 0x8f, 0x03, 0x43, 0x04,\n  0xbe, 0x04, 0xda, 0x04, 0xca, 0x04, 0x92, 0x04, 0x3f, 0x04, 0xd7, 0x03,\n  0x45, 0x03, 0x93, 0x02, 0xe1, 0x01, 0x2d, 0x01, 0x80, 0x00, 0xda, 0xff,\n  0x3c, 0xff, 0xa9, 0xfe, 0x24, 0xfe, 0xad, 0xfd, 0x41, 0xfd, 0xeb, 0xfc,\n  0x9b, 0xfc, 0x69, 0xfc, 0x45, 0xfc, 0x29, 0xfc, 0x27, 0xfc, 0x35, 0xfc,\n  0x4d, 0xfc, 0x77, 0xfc, 0xb1, 0xfc, 0xf3, 0xfc, 0x23, 0xfd, 0x4d, 0xfd,\n  0x85, 0xfd, 0xd3, 0xfd, 0x24, 0xfe, 0x82, 0xfe, 0xe8, 0xfe, 0x57, 0xff,\n  0xc6, 0xff, 0x37, 0x00, 0xa7, 0x00, 0x19, 0x01, 0x7e, 0x01, 0xff, 0x01,\n  0x29, 0x03, 0x07, 0x04, 0x7f, 0x04, 0xc2, 0x04, 0xd8, 0x04, 0xd6, 0x04,\n  0xbb, 0x04, 0x84, 0x04, 0x43, 0x04, 0xe5, 0x03, 0xcb, 0x03, 0x07, 0x04,\n  0xdd, 0x03, 0x7f, 0x03, 0xf9, 0x02, 0x63, 0x02, 0xb8, 0x01, 0x0c, 0x01,\n  0x5b, 0x00, 0xab, 0xff, 0x00, 0xff, 0x5d, 0xfe, 0xc1, 0xfd, 0x37, 0xfd,\n  0xb5, 0xfc, 0x4d, 0xfc, 0xed, 0xfb, 0xa9, 0xfb, 0x6e, 0xfb, 0x4d, 0xfb,\n  0x3d, 0xfb, 0x41, 0xfb, 0x58, 0xfb, 0x85, 0xfb, 0xbd, 0xfb, 0x03, 0xfc,\n  0x5b, 0xfc, 0xb9, 0xfc, 0x29, 0xfd, 0x95, 0xfd, 0xe3, 0xfd, 0x3a, 0xfe,\n  0x99, 0xfe, 0xe1, 0xfe, 0x1d, 0xff, 0x6b, 0xff, 0xc2, 0xff, 0x1d, 0x00,\n  0x80, 0x00, 0xe8, 0x00, 0x4f, 0x01, 0xb5, 0x01, 0x17, 0x02, 0x75, 0x02,\n  0xc9, 0x02, 0x15, 0x03, 0x53, 0x03, 0x8d, 0x03, 0xb7, 0x03, 0xd1, 0x03,\n  0xe5, 0x03, 0xe3, 0x03, 0xdb, 0x03, 0xcd, 0x03, 0x3a, 0x04, 0x88, 0x04,\n  0x7b, 0x04, 0x40, 0x04, 0xe3, 0x03, 0x71, 0x03, 0xe7, 0x02, 0x57, 0x02,\n  0xc1, 0x01, 0x22, 0x01, 0x83, 0x00, 0xe6, 0xff, 0x4e, 0xff, 0xb4, 0xfe,\n  0x49, 0xfe, 0x85, 0xfe, 0x9a, 0xfe, 0x5e, 0xfe, 0x10, 0xfe, 0xb5, 0xfd,\n  0x5b, 0xfd, 0x07, 0xfd, 0xbd, 0xfc, 0x7b, 0xfc, 0x4f, 0xfc, 0x2b, 0xfc,\n  0x13, 0xfc, 0x0d, 0xfc, 0x1d, 0xfc, 0x1d, 0xfc, 0x17, 0xfc, 0x2b, 0xfc,\n  0x4d, 0xfc, 0x87, 0xfc, 0xd1, 0xfc, 0x25, 0xfd, 0x8f, 0xfd, 0xf9, 0xfd,\n  0x73, 0xfe, 0xf1, 0xfe, 0x74, 0xff, 0xf8, 0xff, 0x77, 0x00, 0xfa, 0x00,\n  0x70, 0x01, 0xe4, 0x01, 0x4f, 0x02, 0xad, 0x02, 0x01, 0x03, 0x4b, 0x03,\n  0x83, 0x03, 0xb9, 0x03, 0xc7, 0x03, 0x1f, 0x04, 0xcb, 0x04, 0x0c, 0x05,\n  0x12, 0x05, 0xe3, 0x04, 0x7c, 0x04, 0xe9, 0x03, 0x4f, 0x03, 0xaf, 0x02,\n  0x07, 0x02, 0x61, 0x01, 0xbe, 0x00, 0x1f, 0x00, 0x84, 0xff, 0xf6, 0xfe,\n  0x6c, 0xfe, 0xf1, 0xfd, 0x85, 0xfd, 0x25, 0xfd, 0xd7, 0xfc, 0x99, 0xfc,\n  0x69, 0xfc, 0x4d, 0xfc, 0x3b, 0xfc, 0x39, 0xfc, 0x4f, 0xfc, 0x6b, 0xfc,\n  0x9b, 0xfc, 0xd7, 0xfc, 0x15, 0xfd, 0x39, 0xfd, 0x67, 0xfd, 0xa3, 0xfd,\n  0xed, 0xfd, 0x46, 0xfe, 0xa2, 0xfe, 0x0c, 0xff, 0x74, 0xff, 0xe6, 0xff,\n  0x50, 0x00, 0xda, 0x00, 0x0f, 0x02, 0xff, 0x02, 0x89, 0x03, 0xe7, 0x03,\n  0x1a, 0x04, 0x3a, 0x04, 0x3c, 0x04, 0x30, 0x04, 0x0f, 0x04, 0xe1, 0x03,\n  0xa1, 0x03, 0x57, 0x03, 0x03, 0x03, 0x1b, 0x03, 0x47, 0x03, 0x0f, 0x03,\n  0xb7, 0x02, 0x39, 0x02, 0xb1, 0x01, 0x21, 0x01, 0x86, 0x00, 0xf2, 0xff,\n  0x5a, 0xff, 0xc7, 0xfe, 0x3f, 0xfe, 0xbd, 0xfd, 0x4d, 0xfd, 0xe9, 0xfc,\n  0x8f, 0xfc, 0x49, 0xfc, 0x19, 0xfc, 0xf1, 0xfb, 0xdd, 0xfb, 0xdc, 0xfb,\n  0xe9, 0xfb, 0x01, 0xfc, 0x35, 0xfc, 0x71, 0xfc, 0xb3, 0xfc, 0x07, 0xfd,\n  0x63, 0xfd, 0xc5, 0xfd, 0x19, 0xfe, 0x37, 0xfe, 0x54, 0xfe, 0x82, 0xfe,\n  0xbb, 0xfe, 0x09, 0xff, 0x5d, 0xff, 0xbd, 0xff, 0x1f, 0x00, 0x85, 0x00,\n  0xee, 0x00, 0x55, 0x01, 0xba, 0x01, 0x21, 0x02, 0x75, 0x02, 0xc9, 0x02,\n  0x0f, 0x03, 0x4b, 0x03, 0x7d, 0x03, 0x9f, 0x03, 0xb9, 0x03, 0xbf, 0x03,\n  0xbf, 0x03, 0xa7, 0x03, 0xbf, 0x03, 0x37, 0x04, 0x58, 0x04, 0x37, 0x04,\n  0xf1, 0x03, 0x8f, 0x03, 0x19, 0x03, 0x91, 0x02, 0x03, 0x02, 0x6c, 0x01,\n  0xd6, 0x00, 0x32, 0x00, 0xc0, 0xff, 0xea, 0xff, 0xd7, 0xff, 0x7e, 0xff,\n  0x0c, 0xff, 0x90, 0xfe, 0x0d, 0xfe, 0x93, 0xfd, 0x1f, 0xfd, 0xb9, 0xfc,\n  0x63, 0xfc, 0x13, 0xfc, 0xde, 0xfb, 0xb4, 0xfb, 0xa2, 0xfb, 0x99, 0xfb,\n  0xae, 0xfb, 0xc4, 0xfb, 0xc6, 0xfb, 0xd9, 0xfb, 0x05, 0xfc, 0x41, 0xfc,\n  0x91, 0xfc, 0xef, 0xfc, 0x5b, 0xfd, 0xd7, 0xfd, 0x51, 0xfe, 0xde, 0xfe,\n  0x66, 0xff, 0xf8, 0xff, 0x7d, 0x00, 0x06, 0x01, 0x88, 0x01, 0x03, 0x02,\n  0x75, 0x02, 0xdb, 0x02, 0x35, 0x03, 0x81, 0x03, 0xc5, 0x03, 0xef, 0x03,\n  0x13, 0x04, 0x22, 0x04, 0x9e, 0x04, 0x1e, 0x05, 0x0f, 0x05, 0xcc, 0x04,\n  0x63, 0x04, 0xed, 0x03, 0x63, 0x03, 0xcf, 0x02, 0x39, 0x02, 0x9c, 0x01,\n  0x01, 0x01, 0x65, 0x00, 0xce, 0xff, 0x44, 0xff, 0xbe, 0xfe, 0x40, 0xfe,\n  0xd1, 0xfd, 0x6d, 0xfd, 0x17, 0xfd, 0xcd, 0xfc, 0x97, 0xfc, 0x6d, 0xfc,\n  0x5b, 0xfc, 0x4b, 0xfc, 0x55, 0xfc, 0x69, 0xfc, 0x8b, 0xfc, 0xbf, 0xfc,\n  0xf7, 0xfc, 0x2b, 0xfd, 0x4b, 0xfd, 0x85, 0xfd, 0xbd, 0xfd, 0x12, 0xfe,\n  0x63, 0xfe, 0xc4, 0xfe, 0x27, 0xff, 0xb6, 0xff, 0xe5, 0x00, 0xd3, 0x01,\n  0x65, 0x02, 0xd1, 0x02, 0x1d, 0x03, 0x55, 0x03, 0x75, 0x03, 0x85, 0x03,\n  0x83, 0x03, 0x77, 0x03, 0x5b, 0x03, 0x39, 0x03, 0x01, 0x03, 0xcb, 0x02,\n  0x81, 0x02, 0x59, 0x02, 0xa1, 0x02, 0xaf, 0x02, 0x7b, 0x02, 0x27, 0x02,\n  0xbb, 0x01, 0x49, 0x01, 0xc7, 0x00, 0x47, 0x00, 0xc9, 0xff, 0x4a, 0xff,\n  0xcf, 0xfe, 0x5e, 0xfe, 0xf3, 0xfd, 0x97, 0xfd, 0x43, 0xfd, 0xfb, 0xfc,\n  0xc9, 0xfc, 0x9f, 0xfc, 0x83, 0xfc, 0x79, 0xfc, 0x7d, 0xfc, 0x8b, 0xfc,\n  0xa9, 0xfc, 0xd1, 0xfc, 0x07, 0xfd, 0x49, 0xfd, 0x8f, 0xfd, 0xbf, 0xfd,\n  0xe1, 0xfd, 0xf3, 0xfd, 0x0f, 0xfe, 0x37, 0xfe, 0x73, 0xfe, 0xba, 0xfe,\n  0x0b, 0xff, 0x68, 0xff, 0xc8, 0xff, 0x31, 0x00, 0x97, 0x00, 0x03, 0x01,\n  0x66, 0x01, 0xca, 0x01, 0x2b, 0x02, 0x7b, 0x02, 0xc9, 0x02, 0x0b, 0x03,\n  0x3f, 0x03, 0x6b, 0x03, 0x87, 0x03, 0x9b, 0x03, 0x9b, 0x03, 0x95, 0x03,\n  0x79, 0x03, 0xbb, 0x03, 0x1f, 0x04, 0x1c, 0x04, 0xf5, 0x03, 0xa1, 0x03,\n  0x3d, 0x03, 0xc1, 0x02, 0x43, 0x02, 0xa8, 0x01, 0x43, 0x01, 0x64, 0x01,\n  0x3d, 0x01, 0xd1, 0x00, 0x4d, 0x00, 0xb6, 0xff, 0x1a, 0xff, 0x82, 0xfe,\n  0xeb, 0xfd, 0x5f, 0xfd, 0xe1, 0xfc, 0x71, 0xfc, 0x11, 0xfc, 0xc4, 0xfb,\n  0x84, 0xfb, 0x5d, 0xfb, 0x4c, 0xfb, 0x49, 0xfb, 0x58, 0xfb, 0x7c, 0xfb,\n  0x9e, 0xfb, 0xb8, 0xfb, 0xe1, 0xfb, 0x23, 0xfc, 0x75, 0xfc, 0xdd, 0xfc,\n  0x4b, 0xfd, 0xc7, 0xfd, 0x51, 0xfe, 0xdc, 0xfe, 0x68, 0xff, 0xfb, 0xff,\n  0x8b, 0x00, 0x19, 0x01, 0x9f, 0x01, 0x1f, 0x02, 0x91, 0x02, 0xff, 0x02,\n  0x5b, 0x03, 0xa7, 0x03, 0xeb, 0x03, 0x18, 0x04, 0x3b, 0x04, 0x43, 0x04,\n  0x43, 0x04, 0x9f, 0x04, 0xbb, 0x04, 0x97, 0x04, 0x4f, 0x04, 0xeb, 0x03,\n  0x77, 0x03, 0xf5, 0x02, 0x6b, 0x02, 0xd9, 0x01, 0x46, 0x01, 0xaf, 0x00,\n  0x20, 0x00, 0x96, 0xff, 0x0e, 0xff, 0x90, 0xfe, 0x1e, 0xfe, 0xb5, 0xfd,\n  0x57, 0xfd, 0x09, 0xfd, 0xcd, 0xfc, 0x9b, 0xfc, 0x77, 0xfc, 0x65, 0xfc,\n  0x5f, 0xfc, 0x6b, 0xfc, 0x81, 0xfc, 0xa7, 0xfc, 0xdb, 0xfc, 0x15, 0xfd,\n  0x39, 0xfd, 0x67, 0xfd, 0x99, 0xfd, 0xe1, 0xfd, 0x28, 0xfe, 0xac, 0xfe,\n  0xcf, 0xff, 0xa9, 0x00, 0x39, 0x01, 0xa6, 0x01, 0xfa, 0x01, 0x3b, 0x02,\n  0x71, 0x02, 0x97, 0x02, 0xb3, 0x02, 0xc1, 0x02, 0xc5, 0x02, 0xbd, 0x02,\n  0xb3, 0x02, 0x97, 0x02, 0x77, 0x02, 0x4f, 0x02, 0x21, 0x02, 0xe5, 0x01,\n  0xff, 0x01, 0x55, 0x02, 0x4f, 0x02, 0x27, 0x02, 0xdc, 0x01, 0x82, 0x01,\n  0x1f, 0x01, 0xb5, 0x00, 0x46, 0x00, 0xda, 0xff, 0x71, 0xff, 0x05, 0xff,\n  0xa3, 0xfe, 0x4b, 0xfe, 0xfd, 0xfd, 0xb5, 0xfd, 0x79, 0xfd, 0x4b, 0xfd,\n  0x25, 0xfd, 0x11, 0xfd, 0x05, 0xfd, 0x09, 0xfd, 0x13, 0xfd, 0x2b, 0xfd,\n  0x4f, 0xfd, 0x59, 0xfd, 0x5f, 0xfd, 0x77, 0xfd, 0xa3, 0xfd, 0xc9, 0xfd,\n  0xdd, 0xfd, 0x06, 0xfe, 0x39, 0xfe, 0x7b, 0xfe, 0xca, 0xfe, 0x26, 0xff,\n  0x81, 0xff, 0xe6, 0xff, 0x4d, 0x00, 0xb5, 0x00, 0x19, 0x01, 0x7e, 0x01,\n  0xdb, 0x01, 0x33, 0x02, 0x81, 0x02, 0xc5, 0x02, 0xff, 0x02, 0x31, 0x03,\n  0x55, 0x03, 0x6d, 0x03, 0x75, 0x03, 0x75, 0x03, 0x61, 0x03, 0x59, 0x03,\n  0xbd, 0x03, 0xf5, 0x03, 0xe3, 0x03, 0xa7, 0x03, 0x55, 0x03, 0xe3, 0x02,\n  0x99, 0x02, 0xc5, 0x02, 0xa3, 0x02, 0x3b, 0x02, 0xa9, 0x01, 0x09, 0x01,\n  0x64, 0x00, 0xb1, 0xff, 0x05, 0xff, 0x60, 0xfe, 0xc1, 0xfd, 0x2d, 0xfd,\n  0xad, 0xfc, 0x39, 0xfc, 0xd8, 0xfb, 0x8a, 0xfb, 0x4d, 0xfb, 0x29, 0xfb,\n  0x15, 0xfb, 0x19, 0xfb, 0x2d, 0xfb, 0x51, 0xfb, 0x90, 0xfb, 0xb1, 0xfb,\n  0xe5, 0xfb, 0x29, 0xfc, 0x77, 0xfc, 0xe1, 0xfc, 0x53, 0xfd, 0xd3, 0xfd,\n  0x5a, 0xfe, 0xea, 0xfe, 0x7a, 0xff, 0x0b, 0x00, 0xa0, 0x00, 0x2b, 0x01,\n  0xb4, 0x01, 0x33, 0x02, 0xa5, 0x02, 0x11, 0x03, 0x6f, 0x03, 0xbf, 0x03,\n  0xfb, 0x03, 0x2b, 0x04, 0x26, 0x04, 0x0e, 0x04, 0xe1, 0x03, 0x04, 0x04,\n  0x64, 0x04, 0x60, 0x04, 0x3b, 0x04, 0xeb, 0x03, 0x89, 0x03, 0x17, 0x03,\n  0x97, 0x02, 0x15, 0x02, 0x88, 0x01, 0xfa, 0x00, 0x6e, 0x00, 0xe6, 0xff,\n  0x5f, 0xff, 0xe1, 0xfe, 0x6c, 0xfe, 0xfb, 0xfd, 0xa1, 0xfd, 0x49, 0xfd,\n  0x05, 0xfd, 0xc7, 0xfc, 0x9d, 0xfc, 0x83, 0xfc, 0x71, 0xfc, 0x71, 0xfc,\n  0x7f, 0xfc, 0x9f, 0xfc, 0xc3, 0xfc, 0xff, 0xfc, 0x2f, 0xfd, 0x55, 0xfd,\n  0x77, 0xfd, 0xd9, 0xfd, 0xd9, 0xfe, 0x9e, 0xff, 0x20, 0x00, 0x86, 0x00,\n  0xd6, 0x00, 0x1b, 0x01, 0x58, 0x01, 0x87, 0x01, 0xb2, 0x01, 0xd8, 0x01,\n  0xf3, 0x01, 0x07, 0x02, 0x15, 0x02, 0x19, 0x02, 0x17, 0x02, 0x0f, 0x02,\n  0x05, 0x02, 0xee, 0x01, 0xd2, 0x01, 0xb4, 0x01, 0x99, 0x01, 0xf1, 0x01,\n  0x33, 0x02, 0x29, 0x02, 0x09, 0x02, 0xcc, 0x01, 0x7f, 0x01, 0x28, 0x01,\n  0xcd, 0x00, 0x70, 0x00, 0x10, 0x00, 0xb1, 0xff, 0x54, 0xff, 0xfd, 0xfe,\n  0xae, 0xfe, 0x63, 0xfe, 0x24, 0xfe, 0xeb, 0xfd, 0xbd, 0xfd, 0x9b, 0xfd,\n  0x83, 0xfd, 0x71, 0xfd, 0x6d, 0xfd, 0x53, 0xfd, 0x35, 0xfd, 0x2d, 0xfd,\n  0x31, 0xfd, 0x49, 0xfd, 0x6d, 0xfd, 0x9d, 0xfd, 0xc3, 0xfd, 0xe1, 0xfd,\n  0x0f, 0xfe, 0x4c, 0xfe, 0x94, 0xfe, 0xe5, 0xfe, 0x44, 0xff, 0x9f, 0xff,\n  0x02, 0x00, 0x6a, 0x00, 0xcd, 0x00, 0x2e, 0x01, 0x91, 0x01, 0xe8, 0x01,\n  0x39, 0x02, 0x81, 0x02, 0xc1, 0x02, 0xf7, 0x02, 0x1d, 0x03, 0x35, 0x03,\n  0x4b, 0x03, 0x4b, 0x03, 0x47, 0x03, 0x2d, 0x03, 0x51, 0x03, 0xb3, 0x03,\n  0xc9, 0x03, 0xa1, 0x03, 0x85, 0x03, 0xd7, 0x03, 0xd1, 0x03, 0x7b, 0x03,\n  0xfd, 0x02, 0x65, 0x02, 0xba, 0x01, 0x06, 0x01, 0x4f, 0x00, 0x9b, 0xff,\n  0xe8, 0xfe, 0x3c, 0xfe, 0x9d, 0xfd, 0x0b, 0xfd, 0x89, 0xfc, 0x13, 0xfc,\n  0xb9, 0xfb, 0x6c, 0xfb, 0x36, 0xfb, 0x15, 0xfb, 0x02, 0xfb, 0x09, 0xfb,\n  0x21, 0xfb, 0x4d, 0xfb, 0x8a, 0xfb, 0xd0, 0xfb, 0x00, 0xfc, 0x41, 0xfc,\n  0x99, 0xfc, 0xfd, 0xfc, 0x6f, 0xfd, 0xed, 0xfd, 0x73, 0xfe, 0xfd, 0xfe,\n  0x93, 0xff, 0x20, 0x00, 0xb0, 0x00, 0x3a, 0x01, 0xc1, 0x01, 0x3f, 0x02,\n  0xb1, 0x02, 0x17, 0x03, 0x6f, 0x03, 0xbd, 0x03, 0xd7, 0x03, 0xd9, 0x03,\n  0xd5, 0x03, 0xc9, 0x03, 0xaf, 0x03, 0x9f, 0x03, 0xf3, 0x03, 0x2e, 0x04,\n  0x1b, 0x04, 0xe9, 0x03, 0x97, 0x03, 0x37, 0x03, 0xc1, 0x02, 0x4b, 0x02,\n  0xc6, 0x01, 0x40, 0x01, 0xb8, 0x00, 0x31, 0x00, 0xae, 0xff, 0x2d, 0xff,\n  0xb7, 0xfe, 0x46, 0xfe, 0xdf, 0xfd, 0x85, 0xfd, 0x3b, 0xfd, 0xf9, 0xfc,\n  0xc3, 0xfc, 0x9f, 0xfc, 0x85, 0xfc, 0x7f, 0xfc, 0x83, 0xfc, 0x9d, 0xfc,\n  0xb7, 0xfc, 0xe7, 0xfc, 0x1d, 0xfd, 0x67, 0xfd, 0x42, 0xfe, 0xe1, 0xfe,\n  0x44, 0xff, 0x95, 0xff, 0xd2, 0xff, 0x0e, 0x00, 0x3d, 0x00, 0x73, 0x00,\n  0xa3, 0x00, 0xcd, 0x00, 0xf4, 0x00, 0x1b, 0x01, 0x3c, 0x01, 0x58, 0x01,\n  0x75, 0x01, 0x88, 0x01, 0x97, 0x01, 0xa3, 0x01, 0xa3, 0x01, 0xa9, 0x01,\n  0x9d, 0x01, 0x97, 0x01, 0x7e, 0x01, 0xa3, 0x01, 0x17, 0x02, 0x41, 0x02,\n  0x3f, 0x02, 0x1d, 0x02, 0xea, 0x01, 0xa5, 0x01, 0x5a, 0x01, 0x04, 0x01,\n  0xb2, 0x00, 0x56, 0x00, 0xff, 0xff, 0xaa, 0xff, 0x56, 0xff, 0x09, 0xff,\n  0xc1, 0xfe, 0x7f, 0xfe, 0x43, 0xfe, 0x16, 0xfe, 0xeb, 0xfd, 0xad, 0xfd,\n  0x69, 0xfd, 0x3d, 0xfd, 0x21, 0xfd, 0x15, 0xfd, 0x19, 0xfd, 0x2b, 0xfd,\n  0x4b, 0xfd, 0x79, 0xfd, 0xad, 0xfd, 0xcb, 0xfd, 0xf5, 0xfd, 0x2a, 0xfe,\n  0x6c, 0xfe, 0xb5, 0xfe, 0x09, 0xff, 0x66, 0xff, 0xc2, 0xff, 0x25, 0x00,\n  0x85, 0x00, 0xe6, 0x00, 0x45, 0x01, 0x9d, 0x01, 0xf1, 0x01, 0x3b, 0x02,\n  0x7d, 0x02, 0xb1, 0x02, 0xe3, 0x02, 0xff, 0x02, 0x1b, 0x03, 0x21, 0x03,\n  0x23, 0x03, 0x17, 0x03, 0x07, 0x03, 0x4f, 0x03, 0xc5, 0x03, 0x64, 0x04,\n  0x97, 0x04, 0x6e, 0x04, 0x10, 0x04, 0x8f, 0x03, 0xf9, 0x02, 0x4f, 0x02,\n  0x9c, 0x01, 0xe2, 0x00, 0x2b, 0x00, 0x75, 0xff, 0xc1, 0xfe, 0x1c, 0xfe,\n  0x7f, 0xfd, 0xf5, 0xfc, 0x71, 0xfc, 0x07, 0xfc, 0xb1, 0xfb, 0x66, 0xfb,\n  0x35, 0xfb, 0x19, 0xfb, 0x0c, 0xfb, 0x15, 0xfb, 0x34, 0xfb, 0x64, 0xfb,\n  0xa1, 0xfb, 0xf2, 0xfb, 0x35, 0xfc, 0x77, 0xfc, 0xc9, 0xfc, 0x2b, 0xfd,\n  0x9d, 0xfd, 0x16, 0xfe, 0x99, 0xfe, 0x21, 0xff, 0xa8, 0xff, 0x37, 0x00,\n  0xbe, 0x00, 0x49, 0x01, 0xc4, 0x01, 0x3f, 0x02, 0xab, 0x02, 0x0b, 0x03,\n  0x41, 0x03, 0x59, 0x03, 0x77, 0x03, 0x83, 0x03, 0x93, 0x03, 0x89, 0x03,\n  0x83, 0x03, 0x65, 0x03, 0x85, 0x03, 0xe9, 0x03, 0xfb, 0x03, 0xdd, 0x03,\n  0xa1, 0x03, 0x4d, 0x03, 0xe7, 0x02, 0x75, 0x02, 0xff, 0x01, 0x7c, 0x01,\n  0xfb, 0x00, 0x74, 0x00, 0xf6, 0xff, 0x75, 0xff, 0xfc, 0xfe, 0x88, 0xfe,\n  0x1f, 0xfe, 0xc1, 0xfd, 0x6d, 0xfd, 0x25, 0xfd, 0xe7, 0xfc, 0xbf, 0xfc,\n  0x9f, 0xfc, 0x91, 0xfc, 0x8d, 0xfc, 0x99, 0xfc, 0xab, 0xfc, 0xfd, 0xfc,\n  0xdb, 0xfd, 0x78, 0xfe, 0xb8, 0xfe, 0xe7, 0xfe, 0x09, 0xff, 0x2f, 0xff,\n  0x51, 0xff, 0x75, 0xff, 0x9c, 0xff, 0xc5, 0xff, 0xef, 0xff, 0x19, 0x00,\n  0x47, 0x00, 0x70, 0x00, 0x9d, 0x00, 0xc5, 0x00, 0xee, 0x00, 0x0f, 0x01,\n  0x33, 0x01, 0x4e, 0x01, 0x63, 0x01, 0x7c, 0x01, 0x85, 0x01, 0x8e, 0x01,\n  0x8e, 0x01, 0x91, 0x01, 0xff, 0x01, 0x61, 0x02, 0x77, 0x02, 0x75, 0x02,\n  0x51, 0x02, 0x1f, 0x02, 0xde, 0x01, 0x93, 0x01, 0x46, 0x01, 0xf4, 0x00,\n  0x98, 0x00, 0x46, 0x00, 0xed, 0xff, 0x99, 0xff, 0x4a, 0xff, 0xff, 0xfe,\n  0xb8, 0xfe, 0x5a, 0xfe, 0xf9, 0xfd, 0xa9, 0xfd, 0x6b, 0xfd, 0x3f, 0xfd,\n  0x1b, 0xfd, 0x11, 0xfd, 0x0d, 0xfd, 0x1f, 0xfd, 0x39, 0xfd, 0x61, 0xfd,\n  0x95, 0xfd, 0xc1, 0xfd, 0xdd, 0xfd, 0x0f, 0xfe, 0x4c, 0xfe, 0x90, 0xfe,\n  0xde, 0xfe, 0x30, 0xff, 0x8c, 0xff, 0xe7, 0xff, 0x46, 0x00, 0xa4, 0x00,\n  0x01, 0x01, 0x58, 0x01, 0xab, 0x01, 0xf7, 0x01, 0x39, 0x02, 0x75, 0x02,\n  0xa5, 0x02, 0xcf, 0x02, 0xed, 0x02, 0xfd, 0x02, 0x05, 0x03, 0xfb, 0x02,\n  0x11, 0x03, 0xc7, 0x03, 0x86, 0x04, 0xc4, 0x04, 0xaf, 0x04, 0x60, 0x04,\n  0xef, 0x03, 0x67, 0x03, 0xcb, 0x02, 0x21, 0x02, 0x6f, 0x01, 0xbc, 0x00,\n  0x07, 0x00, 0x56, 0xff, 0xab, 0xfe, 0x0f, 0xfe, 0x77, 0xfd, 0xf1, 0xfc,\n  0x7b, 0xfc, 0x13, 0xfc, 0xc1, 0xfb, 0x7e, 0xfb, 0x54, 0xfb, 0x39, 0xfb,\n  0x35, 0xfb, 0x41, 0xfb, 0x65, 0xfb, 0x90, 0xfb, 0xd2, 0xfb, 0x23, 0xfc,\n  0x7b, 0xfc, 0xc1, 0xfc, 0x0d, 0xfd, 0x69, 0xfd, 0xd3, 0xfd, 0x46, 0xfe,\n  0xc1, 0xfe, 0x44, 0xff, 0xc6, 0xff, 0x47, 0x00, 0xc7, 0x00, 0x48, 0x01,\n  0xbe, 0x01, 0x2d, 0x02, 0x71, 0x02, 0xa7, 0x02, 0xd5, 0x02, 0xff, 0x02,\n  0x23, 0x03, 0x3d, 0x03, 0x51, 0x03, 0x5b, 0x03, 0x57, 0x03, 0x4d, 0x03,\n  0x3b, 0x03, 0x83, 0x03, 0xcb, 0x03, 0xc7, 0x03, 0xa5, 0x03, 0x5d, 0x03,\n  0x09, 0x03, 0xa1, 0x02, 0x2f, 0x02, 0xb8, 0x01, 0x3a, 0x01, 0xb8, 0x00,\n  0x3a, 0x00, 0xbc, 0xff, 0x42, 0xff, 0xca, 0xfe, 0x60, 0xfe, 0xfd, 0xfd,\n  0xa3, 0xfd, 0x55, 0xfd, 0x17, 0xfd, 0xe3, 0xfc, 0xbd, 0xfc, 0xa9, 0xfc,\n  0x95, 0xfc, 0xcd, 0xfc, 0x81, 0xfd, 0xfd, 0xfd, 0x49, 0xfe, 0x82, 0xfe,\n  0x9a, 0xfe, 0x9a, 0xfe, 0xa3, 0xfe, 0xb1, 0xfe, 0xc3, 0xfe, 0xdc, 0xfe,\n  0xfc, 0xfe, 0x20, 0xff, 0x4a, 0xff, 0x78, 0xff, 0xaa, 0xff, 0xdd, 0xff,\n  0x14, 0x00, 0x49, 0x00, 0x7f, 0x00, 0xb2, 0x00, 0xe5, 0x00, 0x10, 0x01,\n  0x3a, 0x01, 0x5e, 0x01, 0x7f, 0x01, 0x9a, 0x01, 0xae, 0x01, 0xb5, 0x01,\n  0xe5, 0x01, 0x69, 0x02, 0xb1, 0x02, 0xc5, 0x02, 0xb7, 0x02, 0x95, 0x02,\n  0x63, 0x02, 0x21, 0x02, 0xd8, 0x01, 0x85, 0x01, 0x2d, 0x01, 0xd4, 0x00,\n  0x76, 0x00, 0x1c, 0x00, 0xc6, 0xff, 0x4b, 0xff, 0xd8, 0xfe, 0x69, 0xfe,\n  0x0f, 0xfe, 0xbd, 0xfd, 0x7f, 0xfd, 0x4b, 0xfd, 0x27, 0xfd, 0x19, 0xfd,\n  0x0f, 0xfd, 0x1b, 0xfd, 0x2d, 0xfd, 0x53, 0xfd, 0x7f, 0xfd, 0xb1, 0xfd,\n  0xd3, 0xfd, 0xf7, 0xfd, 0x2a, 0xfe, 0x6a, 0xfe, 0xae, 0xfe, 0xfc, 0xfe,\n  0x4e, 0xff, 0xaa, 0xff, 0x02, 0x00, 0x5b, 0x00, 0xb9, 0x00, 0x0c, 0x01,\n  0x63, 0x01, 0xab, 0x01, 0xf6, 0x01, 0x33, 0x02, 0x6b, 0x02, 0x93, 0x02,\n  0xbd, 0x02, 0xc9, 0x02, 0x09, 0x03, 0xad, 0x03, 0x00, 0x04, 0x07, 0x04,\n  0x47, 0x04, 0x82, 0x04, 0x60, 0x04, 0x1c, 0x04, 0xa7, 0x03, 0x29, 0x03,\n  0x8b, 0x02, 0xed, 0x01, 0x43, 0x01, 0x9a, 0x00, 0xf2, 0xff, 0x48, 0xff,\n  0xac, 0xfe, 0x15, 0xfe, 0x87, 0xfd, 0x0b, 0xfd, 0x9b, 0xfc, 0x3b, 0xfc,\n  0xf5, 0xfb, 0xb5, 0xfb, 0x8d, 0xfb, 0x7a, 0xfb, 0x75, 0xfb, 0x85, 0xfb,\n  0xa5, 0xfb, 0xd5, 0xfb, 0x19, 0xfc, 0x5f, 0xfc, 0xbf, 0xfc, 0x11, 0xfd,\n  0x59, 0xfd, 0xab, 0xfd, 0x09, 0xfe, 0x79, 0xfe, 0xe5, 0xfe, 0x5a, 0xff,\n  0xd5, 0xff, 0x4a, 0x00, 0xc2, 0x00, 0x36, 0x01, 0x84, 0x01, 0xc6, 0x01,\n  0x07, 0x02, 0x41, 0x02, 0x79, 0x02, 0xab, 0x02, 0xd9, 0x02, 0xfb, 0x02,\n  0x15, 0x03, 0x29, 0x03, 0x2f, 0x03, 0x2f, 0x03, 0x21, 0x03, 0x27, 0x03,\n  0x83, 0x03, 0xa9, 0x03, 0x99, 0x03, 0x69, 0x03, 0x23, 0x03, 0xc7, 0x02,\n  0x5d, 0x02, 0xee, 0x01, 0x78, 0x01, 0xfb, 0x00, 0x7d, 0x00, 0x01, 0x00,\n  0x86, 0xff, 0x15, 0xff, 0xa5, 0xfe, 0x40, 0xfe, 0xdf, 0xfd, 0x8f, 0xfd,\n  0x49, 0xfd, 0x11, 0xfd, 0xdd, 0xfc, 0xe9, 0xfc, 0x79, 0xfd, 0xcd, 0xfd,\n  0xfd, 0xfd, 0x16, 0xfe, 0x21, 0xfe, 0x37, 0xfe, 0x42, 0xfe, 0x39, 0xfe,\n  0x2d, 0xfe, 0x2e, 0xfe, 0x36, 0xfe, 0x48, 0xfe, 0x66, 0xfe, 0x8e, 0xfe,\n  0xbb, 0xfe, 0xeb, 0xfe, 0x27, 0xff, 0x65, 0xff, 0xa7, 0xff, 0xe7, 0xff,\n  0x2b, 0x00, 0x6d, 0x00, 0xad, 0x00, 0xee, 0x00, 0x22, 0x01, 0x5b, 0x01,\n  0x85, 0x01, 0xb4, 0x01, 0xd2, 0x01, 0xf3, 0x01, 0x01, 0x02, 0x5b, 0x02,\n  0xd9, 0x02, 0x07, 0x03, 0x15, 0x03, 0xff, 0x02, 0xdb, 0x02, 0x9f, 0x02,\n  0x5b, 0x02, 0x07, 0x02, 0xb1, 0x01, 0x54, 0x01, 0xf1, 0x00, 0x70, 0x00,\n  0xea, 0xff, 0x71, 0xff, 0xf7, 0xfe, 0x8d, 0xfe, 0x31, 0xfe, 0xe1, 0xfd,\n  0x9d, 0xfd, 0x69, 0xfd, 0x3f, 0xfd, 0x27, 0xfd, 0x1b, 0xfd, 0x1d, 0xfd,\n  0x2b, 0xfd, 0x45, 0xfd, 0x6b, 0xfd, 0x9d, 0xfd, 0xcd, 0xfd, 0xe7, 0xfd,\n  0x10, 0xfe, 0x43, 0xfe, 0x81, 0xfe, 0xca, 0xfe, 0x15, 0xff, 0x68, 0xff,\n  0xc0, 0xff, 0x11, 0x00, 0x6a, 0x00, 0xbf, 0x00, 0x15, 0x01, 0x61, 0x01,\n  0xaf, 0x01, 0xed, 0x01, 0x2b, 0x02, 0x55, 0x02, 0xb1, 0x02, 0x6d, 0x03,\n  0xd5, 0x03, 0xff, 0x03, 0x00, 0x04, 0xe1, 0x03, 0xbd, 0x03, 0xe9, 0x03,\n  0xef, 0x03, 0xb1, 0x03, 0x57, 0x03, 0xdb, 0x02, 0x51, 0x02, 0xbd, 0x01,\n  0x27, 0x01, 0x89, 0x00, 0xec, 0xff, 0x56, 0xff, 0xc1, 0xfe, 0x37, 0xfe,\n  0xb5, 0xfd, 0x43, 0xfd, 0xdd, 0xfc, 0x83, 0xfc, 0x3f, 0xfc, 0x07, 0xfc,\n  0xe5, 0xfb, 0xd0, 0xfb, 0xcd, 0xfb, 0xde, 0xfb, 0xf6, 0xfb, 0x29, 0xfc,\n  0x61, 0xfc, 0xa7, 0xfc, 0xfd, 0xfc, 0x5b, 0xfd, 0xa5, 0xfd, 0xe9, 0xfd,\n  0x3f, 0xfe, 0x9a, 0xfe, 0xff, 0xfe, 0x68, 0xff, 0xd4, 0xff, 0x3b, 0x00,\n  0x89, 0x00, 0xc8, 0x00, 0x10, 0x01, 0x58, 0x01, 0x9d, 0x01, 0xe1, 0x01,\n  0x21, 0x02, 0x5d, 0x02, 0x91, 0x02, 0xb9, 0x02, 0xe1, 0x02, 0xfb, 0x02,\n  0x0d, 0x03, 0x0f, 0x03, 0x11, 0x03, 0xfd, 0x02, 0x29, 0x03, 0x79, 0x03,\n  0x87, 0x03, 0x6f, 0x03, 0x31, 0x03, 0xe7, 0x02, 0x8b, 0x02, 0x21, 0x02,\n  0xb1, 0x01, 0x3c, 0x01, 0xbc, 0x00, 0x46, 0x00, 0xcb, 0xff, 0x57, 0xff,\n  0xe7, 0xfe, 0x7f, 0xfe, 0x1c, 0xfe, 0xc9, 0xfd, 0x75, 0xfd, 0x67, 0xfd,\n  0xcd, 0xfd, 0xf7, 0xfd, 0x03, 0xfe, 0xf7, 0xfd, 0xe9, 0xfd, 0xd9, 0xfd,\n  0xcf, 0xfd, 0xc9, 0xfd, 0xcd, 0xfd, 0xcd, 0xfd, 0xb5, 0xfd, 0xaf, 0xfd,\n  0xb1, 0xfd, 0xc7, 0xfd, 0xe1, 0xfd, 0x0f, 0xfe, 0x3f, 0xfe, 0x79, 0xfe,\n  0xbd, 0xfe, 0x03, 0xff, 0x51, 0xff, 0x9f, 0xff, 0xf0, 0xff, 0x41, 0x00,\n  0x8e, 0x00, 0xdc, 0x00, 0x21, 0x01, 0x66, 0x01, 0xa2, 0x01, 0xd5, 0x01,\n  0x05, 0x02, 0x2d, 0x02, 0x4b, 0x02, 0x65, 0x02, 0xe1, 0x02, 0x3d, 0x03,\n  0x5f, 0x03, 0x5b, 0x03, 0x3b, 0x03, 0x0b, 0x03, 0xc5, 0x02, 0x79, 0x02,\n  0x1d, 0x02, 0x9d, 0x01, 0x13, 0x01, 0x8f, 0x00, 0x0e, 0x00, 0x98, 0xff,\n  0x27, 0xff, 0xbd, 0xfe, 0x5e, 0xfe, 0x0a, 0xfe, 0xc7, 0xfd, 0x8b, 0xfd,\n  0x5f, 0xfd, 0x41, 0xfd, 0x2b, 0xfd, 0x27, 0xfd, 0x2f, 0xfd, 0x3d, 0xfd,\n  0x5d, 0xfd, 0x85, 0xfd, 0xbb, 0xfd, 0xdf, 0xfd, 0xfd, 0xfd, 0x28, 0xfe,\n  0x5b, 0xfe, 0x9a, 0xfe, 0xdf, 0xfe, 0x2c, 0xff, 0x7d, 0xff, 0xd1, 0xff,\n  0x26, 0x00, 0x76, 0x00, 0xd0, 0x00, 0x19, 0x01, 0x69, 0x01, 0xa3, 0x01,\n  0x1f, 0x02, 0xf1, 0x02, 0x67, 0x03, 0xad, 0x03, 0xc5, 0x03, 0xcb, 0x03,\n  0xb1, 0x03, 0x87, 0x03, 0x49, 0x03, 0x2f, 0x03, 0x4f, 0x03, 0x35, 0x03,\n  0xf1, 0x02, 0x8b, 0x02, 0x19, 0x02, 0x97, 0x01, 0x0f, 0x01, 0x85, 0x00,\n  0xf9, 0xff, 0x6e, 0xff, 0xed, 0xfe, 0x6d, 0xfe, 0xf7, 0xfd, 0x8f, 0xfd,\n  0x31, 0xfd, 0xe3, 0xfc, 0xa3, 0xfc, 0x71, 0xfc, 0x4b, 0xfc, 0x3d, 0xfc,\n  0x33, 0xfc, 0x43, 0xfc, 0x5d, 0xfc, 0x81, 0xfc, 0xb9, 0xfc, 0xf7, 0xfc,\n  0x41, 0xfd, 0x97, 0xfd, 0xeb, 0xfd, 0x2a, 0xfe, 0x70, 0xfe, 0xbb, 0xfe,\n  0x11, 0xff, 0x65, 0xff, 0xa2, 0xff, 0xdd, 0xff, 0x1f, 0x00, 0x64, 0x00,\n  0xaf, 0x00, 0xfe, 0x00, 0x43, 0x01, 0x90, 0x01, 0xd3, 0x01, 0x13, 0x02,\n  0x51, 0x02, 0x7f, 0x02, 0xab, 0x02, 0xcf, 0x02, 0xe7, 0x02, 0xf3, 0x02,\n  0xf9, 0x02, 0xf1, 0x02, 0xe5, 0x02, 0x29, 0x03, 0x65, 0x03, 0x5f, 0x03,\n  0x3b, 0x03, 0xfb, 0x02, 0xab, 0x02, 0x4d, 0x02, 0xe2, 0x01, 0x6f, 0x01,\n  0xfa, 0x00, 0x86, 0x00, 0x0e, 0x00, 0x9b, 0xff, 0x29, 0xff, 0xc3, 0xfe,\n  0x54, 0xfe, 0x3a, 0xfe, 0x78, 0xfe, 0x7b, 0xfe, 0x5e, 0xfe, 0x33, 0xfe,\n  0x03, 0xfe, 0xd7, 0xfd, 0xa9, 0xfd, 0x8b, 0xfd, 0x71, 0xfd, 0x5f, 0xfd,\n  0x55, 0xfd, 0x5b, 0xfd, 0x53, 0xfd, 0x47, 0xfd, 0x4b, 0xfd, 0x5f, 0xfd,\n  0x7d, 0xfd, 0xab, 0xfd, 0xe1, 0xfd, 0x25, 0xfe, 0x6d, 0xfe, 0xbd, 0xfe,\n  0x17, 0xff, 0x6c, 0xff, 0xc9, 0xff, 0x25, 0x00, 0x7d, 0x00, 0xd7, 0x00,\n  0x28, 0x01, 0x75, 0x01, 0xc1, 0x01, 0x01, 0x02, 0x35, 0x02, 0x63, 0x02,\n  0x8d, 0x02, 0x9f, 0x02, 0xdb, 0x02, 0x53, 0x03, 0x8f, 0x03, 0x9b, 0x03,\n  0x89, 0x03, 0x5b, 0x03, 0x19, 0x03, 0xad, 0x02, 0x2f, 0x02, 0xb4, 0x01,\n  0x36, 0x01, 0xb9, 0x00, 0x40, 0x00, 0xc8, 0xff, 0x59, 0xff, 0xf4, 0xfe,\n  0x94, 0xfe, 0x3f, 0xfe, 0xf5, 0xfd, 0xb5, 0xfd, 0x85, 0xfd, 0x5b, 0xfd,\n  0x47, 0xfd, 0x39, 0xfd, 0x37, 0xfd, 0x41, 0xfd, 0x59, 0xfd, 0x73, 0xfd,\n  0x9f, 0xfd, 0xcd, 0xfd, 0xeb, 0xfd, 0x0c, 0xfe, 0x37, 0xfe, 0x6f, 0xfe,\n  0xaf, 0xfe, 0xf3, 0xfe, 0x42, 0xff, 0x90, 0xff, 0xe3, 0xff, 0x2f, 0x00,\n  0x8b, 0x00, 0xd0, 0x00, 0x58, 0x01, 0x35, 0x02, 0xc1, 0x02, 0x17, 0x03,\n  0x4d, 0x03, 0x65, 0x03, 0x69, 0x03, 0x5b, 0x03, 0x41, 0x03, 0x15, 0x03,\n  0xe1, 0x02, 0x9b, 0x02, 0xa3, 0x02, 0xb7, 0x02, 0x8d, 0x02, 0x47, 0x02,\n  0xe5, 0x01, 0x7f, 0x01, 0x06, 0x01, 0x8e, 0x00, 0x16, 0x00, 0x9e, 0xff,\n  0x24, 0xff, 0xb5, 0xfe, 0x4e, 0xfe, 0xf1, 0xfd, 0x97, 0xfd, 0x4f, 0xfd,\n  0x13, 0xfd, 0xe5, 0xfc, 0xbf, 0xfc, 0xad, 0xfc, 0xa9, 0xfc, 0xad, 0xfc,\n  0xc3, 0xfc, 0xe3, 0xfc, 0x0d, 0xfd, 0x43, 0xfd, 0x83, 0xfd, 0xcb, 0xfd,\n  0x1c, 0xfe, 0x60, 0xfe, 0x97, 0xfe, 0xcf, 0xfe, 0xf3, 0xfe, 0x1d, 0xff,\n  0x4d, 0xff, 0x8c, 0xff, 0xcb, 0xff, 0x14, 0x00, 0x5f, 0x00, 0xac, 0x00,\n  0xfd, 0x00, 0x49, 0x01, 0x90, 0x01, 0xd6, 0x01, 0x15, 0x02, 0x4b, 0x02,\n  0x7b, 0x02, 0xa5, 0x02, 0xc1, 0x02, 0xd5, 0x02, 0xdb, 0x02, 0xe1, 0x02,\n  0xcd, 0x02, 0xdb, 0x02, 0x25, 0x03, 0x45, 0x03, 0x33, 0x03, 0x03, 0x03,\n  0xbd, 0x02, 0x69, 0x02, 0x07, 0x02, 0x9f, 0x01, 0x2e, 0x01, 0xbf, 0x00,\n  0x47, 0x00, 0xdb, 0xff, 0x62, 0xff, 0x35, 0xff, 0x5c, 0xff, 0x41, 0xff,\n  0x09, 0xff, 0xc0, 0xfe, 0x76, 0xfe, 0x28, 0xfe, 0xe1, 0xfd, 0x9f, 0xfd,\n  0x67, 0xfd, 0x39, 0xfd, 0x19, 0xfd, 0x01, 0xfd, 0xf3, 0xfc, 0xf7, 0xfc,\n  0x01, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0x15, 0xfd, 0x39, 0xfd, 0x67, 0xfd,\n  0xa5, 0xfd, 0xeb, 0xfd, 0x40, 0xfe, 0x96, 0xfe, 0xf4, 0xfe, 0x54, 0xff,\n  0xbc, 0xff, 0x1f, 0x00, 0x7d, 0x00, 0xe0, 0x00, 0x3d, 0x01, 0x90, 0x01,\n  0xde, 0x01, 0x29, 0x02, 0x63, 0x02, 0x95, 0x02, 0xbd, 0x02, 0xdf, 0x02,\n  0xeb, 0x02, 0x43, 0x03, 0xa1, 0x03, 0xbf, 0x03, 0xb1, 0x03, 0x6f, 0x03,\n  0x17, 0x03, 0xaf, 0x02, 0x3f, 0x02, 0xcd, 0x01, 0x5b, 0x01, 0xe6, 0x00,\n  0x6e, 0x00, 0xfe, 0xff, 0x95, 0xff, 0x2d, 0xff, 0xcf, 0xfe, 0x78, 0xfe,\n  0x2a, 0xfe, 0xe5, 0xfd, 0xad, 0xfd, 0x83, 0xfd, 0x61, 0xfd, 0x4d, 0xfd,\n  0x43, 0xfd, 0x49, 0xfd, 0x55, 0xfd, 0x6d, 0xfd, 0x8d, 0xfd, 0xbb, 0xfd,\n  0xe1, 0xfd, 0xf7, 0xfd, 0x1e, 0xfe, 0x48, 0xfe, 0x87, 0xfe, 0xc0, 0xfe,\n  0x0c, 0xff, 0x53, 0xff, 0xa8, 0xff, 0xf0, 0xff, 0x7d, 0x00, 0x5e, 0x01,\n  0xed, 0x01, 0x57, 0x02, 0x9b, 0x02, 0xc7, 0x02, 0xe3, 0x02, 0xef, 0x02,\n  0xeb, 0x02, 0xdb, 0x02, 0xc3, 0x02, 0x9b, 0x02, 0x6d, 0x02, 0x33, 0x02,\n  0x09, 0x02, 0x2d, 0x02, 0x2d, 0x02, 0x03, 0x02, 0xc0, 0x01, 0x69, 0x01,\n  0x0f, 0x01, 0xaa, 0x00, 0x40, 0x00, 0xdb, 0xff, 0x72, 0xff, 0x11, 0xff,\n  0xb4, 0xfe, 0x5d, 0xfe, 0x12, 0xfe, 0xcb, 0xfd, 0x95, 0xfd, 0x65, 0xfd,\n  0x41, 0xfd, 0x2d, 0xfd, 0x1f, 0xfd, 0x1f, 0xfd, 0x2f, 0xfd, 0x43, 0xfd,\n  0x67, 0xfd, 0x8d, 0xfd, 0xc5, 0xfd, 0xfd, 0xfd, 0x42, 0xfe, 0x7f, 0xfe,\n  0x91, 0xfe, 0x9a, 0xfe, 0xb8, 0xfe, 0xdc, 0xfe, 0x0c, 0xff, 0x48, 0xff,\n  0x8a, 0xff, 0xcc, 0xff, 0x1c, 0x00, 0x6a, 0x00, 0xbc, 0x00, 0x04, 0x01,\n  0x52, 0x01, 0x99, 0x01, 0xdb, 0x01, 0x15, 0x02, 0x4b, 0x02, 0x75, 0x02,\n  0x97, 0x02, 0xaf, 0x02, 0xbd, 0x02, 0xc1, 0x02, 0xbd, 0x02, 0xab, 0x02,\n  0xd5, 0x02, 0x17, 0x03, 0x17, 0x03, 0xff, 0x02, 0xc7, 0x02, 0x7d, 0x02,\n  0x27, 0x02, 0xc7, 0x01, 0x5b, 0x01, 0xf2, 0x00, 0x7c, 0x00, 0x4d, 0x00,\n  0x61, 0x00, 0x34, 0x00, 0xec, 0xff, 0x8d, 0xff, 0x2c, 0xff, 0xc4, 0xfe,\n  0x61, 0xfe, 0x07, 0xfe, 0xaf, 0xfd, 0x67, 0xfd, 0x25, 0xfd, 0xf3, 0xfc,\n  0xcd, 0xfc, 0xb3, 0xfc, 0xa5, 0xfc, 0xab, 0xfc, 0xb9, 0xfc, 0xc9, 0xfc,\n  0xd3, 0xfc, 0xe9, 0xfc, 0x0d, 0xfd, 0x43, 0xfd, 0x83, 0xfd, 0xcf, 0xfd,\n  0x25, 0xfe, 0x84, 0xfe, 0xe7, 0xfe, 0x4d, 0xff, 0xb7, 0xff, 0x20, 0x00,\n  0x88, 0x00, 0xee, 0x00, 0x4e, 0x01, 0xa9, 0x01, 0xfa, 0x01, 0x49, 0x02,\n  0x83, 0x02, 0xbd, 0x02, 0xe5, 0x02, 0x05, 0x03, 0x15, 0x03, 0x2d, 0x03,\n  0x85, 0x03, 0xa1, 0x03, 0x83, 0x03, 0x51, 0x03, 0x0b, 0x03, 0xb5, 0x02,\n  0x57, 0x02, 0xee, 0x01, 0x7f, 0x01, 0x13, 0x01, 0xa4, 0x00, 0x37, 0x00,\n  0xcf, 0xff, 0x6c, 0xff, 0x0e, 0xff, 0xb1, 0xfe, 0x63, 0xfe, 0x1c, 0xfe,\n  0xdf, 0xfd, 0xaf, 0xfd, 0x89, 0xfd, 0x69, 0xfd, 0x5b, 0xfd, 0x55, 0xfd,\n  0x5b, 0xfd, 0x67, 0xfd, 0x85, 0xfd, 0xa7, 0xfd, 0xcf, 0xfd, 0xef, 0xfd,\n  0x0a, 0xfe, 0x2d, 0xfe, 0x63, 0xfe, 0x99, 0xfe, 0xde, 0xfe, 0x1a, 0xff,\n  0xaa, 0xff, 0x83, 0x00, 0x0f, 0x01, 0x76, 0x01, 0xc7, 0x01, 0xfd, 0x01,\n  0x2d, 0x02, 0x49, 0x02, 0x57, 0x02, 0x61, 0x02, 0x5b, 0x02, 0x53, 0x02,\n  0x3b, 0x02, 0x25, 0x02, 0xfc, 0x01, 0xdb, 0x01, 0xa3, 0x01, 0xa2, 0x01,\n  0xd2, 0x01, 0xc9, 0x01, 0xa6, 0x01, 0x69, 0x01, 0x25, 0x01, 0xd6, 0x00,\n  0x7f, 0x00, 0x26, 0x00, 0xd2, 0xff, 0x7d, 0xff, 0x29, 0xff, 0xdb, 0xfe,\n  0x93, 0xfe, 0x55, 0xfe, 0x1c, 0xfe, 0xed, 0xfd, 0xc9, 0xfd, 0xab, 0xfd,\n  0x9d, 0xfd, 0x95, 0xfd, 0x97, 0xfd, 0xa3, 0xfd, 0xb9, 0xfd, 0xd5, 0xfd,\n  0xfb, 0xfd, 0x24, 0xfe, 0x2d, 0xfe, 0x49, 0xfe, 0x63, 0xfe, 0x72, 0xfe,\n  0x88, 0xfe, 0xab, 0xfe, 0xdc, 0xfe, 0x14, 0xff, 0x51, 0xff, 0x96, 0xff,\n  0xe3, 0xff, 0x2f, 0x00, 0x7d, 0x00, 0xc8, 0x00, 0x18, 0x01, 0x5d, 0x01,\n  0xa3, 0x01, 0xde, 0x01, 0x11, 0x02, 0x3f, 0x02, 0x69, 0x02, 0x85, 0x02,\n  0x99, 0x02, 0xa1, 0x02, 0xa3, 0x02, 0x99, 0x02, 0x8b, 0x02, 0xc9, 0x02,\n  0xf5, 0x02, 0xeb, 0x02, 0xc9, 0x02, 0x8d, 0x02, 0x3f, 0x02, 0xed, 0x01,\n  0x82, 0x01, 0x63, 0x01, 0x75, 0x01, 0x3f, 0x01, 0xef, 0x00, 0x85, 0x00,\n  0x11, 0x00, 0x9c, 0xff, 0x26, 0xff, 0xb1, 0xfe, 0x48, 0xfe, 0xdf, 0xfd,\n  0x81, 0xfd, 0x33, 0xfd, 0xf3, 0xfc, 0xb9, 0xfc, 0x97, 0xfc, 0x7d, 0xfc,\n  0x71, 0xfc, 0x79, 0xfc, 0x89, 0xfc, 0xab, 0xfc, 0xbf, 0xfc, 0xd7, 0xfc,\n  0xff, 0xfc, 0x37, 0xfd, 0x79, 0xfd, 0xc7, 0xfd, 0x1e, 0xfe, 0x85, 0xfe,\n  0xea, 0xfe, 0x53, 0xff, 0xc2, 0xff, 0x29, 0x00, 0x95, 0x00, 0xfd, 0x00,\n  0x60, 0x01, 0xbb, 0x01, 0x11, 0x02, 0x59, 0x02, 0x9b, 0x02, 0xd3, 0x02,\n  0xf9, 0x02, 0x1d, 0x03, 0x29, 0x03, 0x07, 0x03, 0x17, 0x03, 0x4d, 0x03,\n  0x51, 0x03, 0x35, 0x03, 0xff, 0x02, 0xbf, 0x02, 0x65, 0x02, 0x0b, 0x02,\n  0xab, 0x01, 0x42, 0x01, 0xdd, 0x00, 0x6e, 0x00, 0x0e, 0x00, 0xa7, 0xff,\n  0x48, 0xff, 0xf1, 0xfe, 0x9c, 0xfe, 0x4f, 0xfe, 0x10, 0xfe, 0xd7, 0xfd,\n  0xa9, 0xfd, 0x8b, 0xfd, 0x6d, 0xfd, 0x61, 0xfd, 0x61, 0xfd, 0x65, 0xfd,\n  0x79, 0xfd, 0x97, 0xfd, 0xbd, 0xfd, 0xe5, 0xfd, 0xfd, 0xfd, 0x18, 0xfe,\n  0x45, 0xfe, 0x70, 0xfe, 0xf3, 0xfe, 0xb9, 0xff, 0x38, 0x00, 0x9b, 0x00,\n  0xe3, 0x00, 0x22, 0x01, 0x54, 0x01, 0x7e, 0x01, 0x9f, 0x01, 0xb7, 0x01,\n  0xc7, 0x01, 0xd2, 0x01, 0xd3, 0x01, 0xd0, 0x01, 0xc6, 0x01, 0xb7, 0x01,\n  0xa3, 0x01, 0x87, 0x01, 0x69, 0x01, 0x48, 0x01, 0x70, 0x01, 0x9c, 0x01,\n  0x93, 0x01, 0x78, 0x01, 0x46, 0x01, 0x0c, 0x01, 0xc7, 0x00, 0x83, 0x00,\n  0x38, 0x00, 0xef, 0xff, 0xa7, 0xff, 0x5c, 0xff, 0x1d, 0xff, 0xdc, 0xfe,\n  0xa8, 0xfe, 0x78, 0xfe, 0x4b, 0xfe, 0x2b, 0xfe, 0x13, 0xfe, 0xff, 0xfd,\n  0xf7, 0xfd, 0xf7, 0xfd, 0xff, 0xfd, 0x09, 0xfe, 0xfd, 0xfd, 0xf9, 0xfd,\n  0x04, 0xfe, 0x1c, 0xfe, 0x3d, 0xfe, 0x58, 0xfe, 0x6a, 0xfe, 0x8b, 0xfe,\n  0xb4, 0xfe, 0xeb, 0xfe, 0x26, 0xff, 0x66, 0xff, 0xad, 0xff, 0xf9, 0xff,\n  0x47, 0x00, 0x8f, 0x00, 0xdd, 0x00, 0x24, 0x01, 0x69, 0x01, 0xa6, 0x01,\n  0xde, 0x01, 0x0f, 0x02, 0x39, 0x02, 0x59, 0x02, 0x6f, 0x02, 0x81, 0x02,\n  0x83, 0x02, 0x83, 0x02, 0x6f, 0x02, 0x7d, 0x02, 0xbd, 0x02, 0xd5, 0x02,\n  0xbb, 0x02, 0x93, 0x02, 0x4d, 0x02, 0x4b, 0x02, 0x6b, 0x02, 0x3b, 0x02,\n  0xf0, 0x01, 0x87, 0x01, 0x0f, 0x01, 0x91, 0x00, 0x10, 0x00, 0x8f, 0xff,\n  0x0f, 0xff, 0x94, 0xfe, 0x1f, 0xfe, 0xbd, 0xfd, 0x5f, 0xfd, 0x0f, 0xfd,\n  0xcd, 0xfc, 0x99, 0xfc, 0x77, 0xfc, 0x5f, 0xfc, 0x57, 0xfc, 0x5f, 0xfc,\n  0x73, 0xfc, 0x99, 0xfc, 0xc5, 0xfc, 0xe3, 0xfc, 0x07, 0xfd, 0x43, 0xfd,\n  0x87, 0xfd, 0xd7, 0xfd, 0x31, 0xfe, 0x90, 0xfe, 0xf6, 0xfe, 0x63, 0xff,\n  0xce, 0xff, 0x3b, 0x00, 0xa3, 0x00, 0x0a, 0x01, 0x6f, 0x01, 0xc6, 0x01,\n  0x1b, 0x02, 0x67, 0x02, 0xa3, 0x02, 0xdb, 0x02, 0xf9, 0x02, 0xf9, 0x02,\n  0xef, 0x02, 0xdb, 0x02, 0xc3, 0x02, 0xf3, 0x02, 0x1d, 0x03, 0x15, 0x03,\n  0xf7, 0x02, 0xbd, 0x02, 0x7b, 0x02, 0x27, 0x02, 0xcf, 0x01, 0x70, 0x01,\n  0x0f, 0x01, 0xaa, 0x00, 0x46, 0x00, 0xe4, 0xff, 0x83, 0xff, 0x29, 0xff,\n  0xd5, 0xfe, 0x88, 0xfe, 0x42, 0xfe, 0x04, 0xfe, 0xd3, 0xfd, 0xa9, 0xfd,\n  0x8b, 0xfd, 0x79, 0xfd, 0x6b, 0xfd, 0x6d, 0xfd, 0x79, 0xfd, 0x8b, 0xfd,\n  0xad, 0xfd, 0xd3, 0xfd, 0xf3, 0xfd, 0x03, 0xfe, 0x6f, 0xfe, 0x17, 0xff,\n  0x84, 0xff, 0xd7, 0xff, 0x16, 0x00, 0x4f, 0x00, 0x7d, 0x00, 0xaa, 0x00,\n  0xcd, 0x00, 0xf2, 0x00, 0x0c, 0x01, 0x27, 0x01, 0x3f, 0x01, 0x4c, 0x01,\n  0x54, 0x01, 0x61, 0x01, 0x60, 0x01, 0x5b, 0x01, 0x5a, 0x01, 0x4b, 0x01,\n  0x40, 0x01, 0x25, 0x01, 0x2b, 0x01, 0x6f, 0x01, 0x91, 0x01, 0x8b, 0x01,\n  0x72, 0x01, 0x4f, 0x01, 0x19, 0x01, 0xe0, 0x00, 0xa4, 0x00, 0x5e, 0x00,\n  0x20, 0x00, 0xde, 0xff, 0xa4, 0xff, 0x60, 0xff, 0x2a, 0xff, 0xf4, 0xfe,\n  0xc7, 0xfe, 0x9f, 0xfe, 0x7e, 0xfe, 0x60, 0xfe, 0x4e, 0xfe, 0x37, 0xfe,\n  0x12, 0xfe, 0xf5, 0xfd, 0xe5, 0xfd, 0xe3, 0xfd, 0xe9, 0xfd, 0xff, 0xfd,\n  0x1e, 0xfe, 0x43, 0xfe, 0x57, 0xfe, 0x72, 0xfe, 0x97, 0xfe, 0xc7, 0xfe,\n  0xfd, 0xfe, 0x3b, 0xff, 0x81, 0xff, 0xc6, 0xff, 0x14, 0x00, 0x58, 0x00,\n  0xa4, 0x00, 0xe9, 0x00, 0x2e, 0x01, 0x6d, 0x01, 0xa6, 0x01, 0xde, 0x01,\n  0x05, 0x02, 0x2b, 0x02, 0x45, 0x02, 0x57, 0x02, 0x63, 0x02, 0x63, 0x02,\n  0x5b, 0x02, 0x4b, 0x02, 0x77, 0x02, 0xad, 0x02, 0xa5, 0x02, 0xd5, 0x02,\n  0x11, 0x03, 0xfd, 0x02, 0xc5, 0x02, 0x6d, 0x02, 0x01, 0x02, 0x84, 0x01,\n  0x04, 0x01, 0x7c, 0x00, 0xfc, 0xff, 0x74, 0xff, 0xf1, 0xfe, 0x7c, 0xfe,\n  0x0a, 0xfe, 0xa3, 0xfd, 0x49, 0xfd, 0xfb, 0xfc, 0xbf, 0xfc, 0x8f, 0xfc,\n  0x6b, 0xfc, 0x59, 0xfc, 0x55, 0xfc, 0x5d, 0xfc, 0x7b, 0xfc, 0x9d, 0xfc,\n  0xd1, 0xfc, 0xff, 0xfc, 0x29, 0xfd, 0x61, 0xfd, 0xa3, 0xfd, 0xf1, 0xfd,\n  0x4b, 0xfe, 0xac, 0xfe, 0x0f, 0xff, 0x77, 0xff, 0xe4, 0xff, 0x4a, 0x00,\n  0xb2, 0x00, 0x16, 0x01, 0x76, 0x01, 0xcf, 0x01, 0x1b, 0x02, 0x65, 0x02,\n  0x99, 0x02, 0xa9, 0x02, 0xb1, 0x02, 0xb7, 0x02, 0xb7, 0x02, 0xb1, 0x02,\n  0x99, 0x02, 0xa1, 0x02, 0xdf, 0x02, 0xf3, 0x02, 0xe5, 0x02, 0xbf, 0x02,\n  0x85, 0x02, 0x3f, 0x02, 0xf1, 0x01, 0x99, 0x01, 0x3a, 0x01, 0xda, 0x00,\n  0x79, 0x00, 0x19, 0x00, 0xbc, 0xff, 0x60, 0xff, 0x09, 0xff, 0xbb, 0xfe,\n  0x73, 0xfe, 0x2e, 0xfe, 0xf9, 0xfd, 0xc5, 0xfd, 0xa7, 0xfd, 0x8b, 0xfd,\n  0x7b, 0xfd, 0x79, 0xfd, 0x7d, 0xfd, 0x89, 0xfd, 0xa3, 0xfd, 0xc3, 0xfd,\n  0x2e, 0xfe, 0xbd, 0xfe, 0x09, 0xff, 0x48, 0xff, 0x77, 0xff, 0x9e, 0xff,\n  0xc2, 0xff, 0xe9, 0xff, 0x08, 0x00, 0x29, 0x00, 0x4a, 0x00, 0x68, 0x00,\n  0x88, 0x00, 0xa7, 0x00, 0xbf, 0x00, 0xd9, 0x00, 0xee, 0x00, 0x00, 0x01,\n  0x10, 0x01, 0x18, 0x01, 0x21, 0x01, 0x25, 0x01, 0x25, 0x01, 0x21, 0x01,\n  0x19, 0x01, 0x51, 0x01, 0x93, 0x01, 0xa9, 0x01, 0xa5, 0x01, 0x8e, 0x01,\n  0x69, 0x01, 0x3f, 0x01, 0x09, 0x01, 0xd3, 0x00, 0x97, 0x00, 0x56, 0x00,\n  0x16, 0x00, 0xda, 0xff, 0x9e, 0xff, 0x66, 0xff, 0x33, 0xff, 0xff, 0xfe,\n  0xd5, 0xfe, 0xa9, 0xfe, 0x69, 0xfe, 0x36, 0xfe, 0x0a, 0xfe, 0xed, 0xfd,\n  0xdf, 0xfd, 0xd9, 0xfd, 0xdf, 0xfd, 0xef, 0xfd, 0x07, 0xfe, 0x31, 0xfe,\n  0x51, 0xfe, 0x66, 0xfe, 0x85, 0xfe, 0xaf, 0xfe, 0xe1, 0xfe, 0x18, 0xff,\n  0x5c, 0xff, 0x9e, 0xff, 0xe4, 0xff, 0x29, 0x00, 0x70, 0x00, 0xb5, 0x00,\n  0xfb, 0x00, 0x3a, 0x01, 0x75, 0x01, 0xa8, 0x01, 0xd5, 0x01, 0xfa, 0x01,\n  0x1b, 0x02, 0x31, 0x02, 0x43, 0x02, 0x45, 0x02, 0x43, 0x02, 0x3b, 0x02,\n  0x33, 0x02, 0xbd, 0x02, 0x41, 0x03, 0x63, 0x03, 0x53, 0x03, 0x17, 0x03,\n  0xc7, 0x02, 0x61, 0x02, 0xeb, 0x01, 0x6c, 0x01, 0xeb, 0x00, 0x65, 0x00,\n  0xde, 0xff, 0x5c, 0xff, 0xe4, 0xfe, 0x6a, 0xfe, 0xfd, 0xfd, 0x99, 0xfd,\n  0x45, 0xfd, 0xfd, 0xfc, 0xc3, 0xfc, 0x93, 0xfc, 0x7b, 0xfc, 0x67, 0xfc,\n  0x65, 0xfc, 0x77, 0xfc, 0x8f, 0xfc, 0xb9, 0xfc, 0xeb, 0xfc, 0x29, 0xfd,\n  0x57, 0xfd, 0x8b, 0xfd, 0xcf, 0xfd, 0x1b, 0xfe, 0x6d, 0xfe, 0xcc, 0xfe,\n  0x27, 0xff, 0x92, 0xff, 0xf3, 0xff, 0x58, 0x00, 0xbb, 0x00, 0x16, 0x01,\n  0x76, 0x01, 0xca, 0x01, 0x0d, 0x02, 0x2f, 0x02, 0x4b, 0x02, 0x63, 0x02,\n  0x75, 0x02, 0x85, 0x02, 0x8b, 0x02, 0x87, 0x02, 0x83, 0x02, 0x73, 0x02,\n  0x9f, 0x02, 0xcd, 0x02, 0xd3, 0x02, 0xb9, 0x02, 0x8b, 0x02, 0x51, 0x02,\n  0x09, 0x02, 0xba, 0x01, 0x66, 0x01, 0x06, 0x01, 0xa9, 0x00, 0x47, 0x00,\n  0xef, 0xff, 0x95, 0xff, 0x3c, 0xff, 0xed, 0xfe, 0x9d, 0xfe, 0x5a, 0xfe,\n  0x1e, 0xfe, 0xeb, 0xfd, 0xc1, 0xfd, 0xa3, 0xfd, 0x8b, 0xfd, 0x81, 0xfd,\n  0x81, 0xfd, 0x85, 0xfd, 0xe1, 0xfd, 0x6c, 0xfe, 0xc3, 0xfe, 0xf6, 0xfe,\n  0x0b, 0xff, 0x1d, 0xff, 0x33, 0xff, 0x44, 0xff, 0x5c, 0xff, 0x75, 0xff,\n  0x8f, 0xff, 0xad, 0xff, 0xce, 0xff, 0xf0, 0xff, 0x0d, 0x00, 0x34, 0x00,\n  0x56, 0x00, 0x76, 0x00, 0x95, 0x00, 0xb3, 0x00, 0xd0, 0x00, 0xe9, 0x00,\n  0xfe, 0x00, 0x0d, 0x01, 0x1b, 0x01, 0x25, 0x01, 0x2a, 0x01, 0x3f, 0x01,\n  0x94, 0x01, 0xc4, 0x01, 0xd8, 0x01, 0xcd, 0x01, 0xba, 0x01, 0x9a, 0x01,\n  0x6c, 0x01, 0x3c, 0x01, 0x03, 0x01, 0xc7, 0x00, 0x86, 0x00, 0x47, 0x00,\n  0x05, 0x00, 0xcc, 0xff, 0x8c, 0xff, 0x51, 0xff, 0xff, 0xfe, 0xb4, 0xfe,\n  0x72, 0xfe, 0x3c, 0xfe, 0x12, 0xfe, 0xf5, 0xfd, 0xe3, 0xfd, 0xd9, 0xfd,\n  0xdb, 0xfd, 0xe9, 0xfd, 0xff, 0xfd, 0x1f, 0xfe, 0x46, 0xfe, 0x60, 0xfe,\n  0x78, 0xfe, 0x9d, 0xfe, 0xc9, 0xfe, 0xfd, 0xfe, 0x36, 0xff, 0x77, 0xff,\n  0xb9, 0xff, 0xf9, 0xff, 0x3e, 0x00, 0x83, 0x00, 0xc2, 0x00, 0x04, 0x01,\n  0x3f, 0x01, 0x75, 0x01, 0xa3, 0x01, 0xca, 0x01, 0xed, 0x01, 0x0b, 0x02,\n  0x1b, 0x02, 0x2d, 0x02, 0x25, 0x02, 0x6b, 0x02, 0xc1, 0x02, 0x0d, 0x03,\n  0x59, 0x03, 0x5d, 0x03, 0x3b, 0x03, 0xf5, 0x02, 0xa1, 0x02, 0x37, 0x02,\n  0xc7, 0x01, 0x4b, 0x01, 0xca, 0x00, 0x4a, 0x00, 0xcb, 0xff, 0x51, 0xff,\n  0xd8, 0xfe, 0x6a, 0xfe, 0x04, 0xfe, 0xa7, 0xfd, 0x57, 0xfd, 0x13, 0xfd,\n  0xdd, 0xfc, 0xb5, 0xfc, 0x9b, 0xfc, 0x8d, 0xfc, 0x8f, 0xfc, 0x9f, 0xfc,\n  0xbd, 0xfc, 0xe3, 0xfc, 0x17, 0xfd, 0x57, 0xfd, 0x91, 0xfd, 0xc5, 0xfd,\n  0xff, 0xfd, 0x46, 0xfe, 0x97, 0xfe, 0xeb, 0xfe, 0x47, 0xff, 0xa1, 0xff,\n  0xff, 0xff, 0x5c, 0x00, 0xb8, 0x00, 0x12, 0x01, 0x5e, 0x01, 0x8a, 0x01,\n  0xb8, 0x01, 0xdf, 0x01, 0x03, 0x02, 0x27, 0x02, 0x3d, 0x02, 0x53, 0x02,\n  0x61, 0x02, 0x69, 0x02, 0x69, 0x02, 0x5d, 0x02, 0x61, 0x02, 0x9b, 0x02,\n  0xb9, 0x02, 0xb1, 0x02, 0x93, 0x02, 0x63, 0x02, 0x21, 0x02, 0xd9, 0x01,\n  0x88, 0x01, 0x31, 0x01, 0xda, 0x00, 0x7d, 0x00, 0x1f, 0x00, 0xc8, 0xff,\n  0x71, 0xff, 0x18, 0xff, 0xcd, 0xfe, 0x85, 0xfe, 0x48, 0xfe, 0x10, 0xfe,\n  0xe1, 0xfd, 0xbd, 0xfd, 0xa3, 0xfd, 0x8d, 0xfd, 0xd3, 0xfd, 0x3f, 0xfe,\n  0x79, 0xfe, 0xa2, 0xfe, 0xbe, 0xfe, 0xd8, 0xfe, 0xd9, 0xfe, 0xd3, 0xfe,\n  0xd8, 0xfe, 0xdf, 0xfe, 0xeb, 0xfe, 0xff, 0xfe, 0x15, 0xff, 0x36, 0xff,\n  0x56, 0xff, 0x7b, 0xff, 0xa7, 0xff, 0xcf, 0xff, 0xf8, 0xff, 0x25, 0x00,\n  0x4f, 0x00, 0x7c, 0x00, 0xa0, 0x00, 0xc8, 0x00, 0xeb, 0x00, 0x07, 0x01,\n  0x27, 0x01, 0x36, 0x01, 0x4e, 0x01, 0x57, 0x01, 0x8b, 0x01, 0xe2, 0x01,\n  0x07, 0x02, 0x11, 0x02, 0x0b, 0x02, 0xf3, 0x01, 0xcc, 0x01, 0x9f, 0x01,\n  0x69, 0x01, 0x2e, 0x01, 0xf1, 0x00, 0xac, 0x00, 0x68, 0x00, 0x1c, 0x00,\n  0xbd, 0xff, 0x62, 0xff, 0x0e, 0xff, 0xc9, 0xfe, 0x85, 0xfe, 0x4f, 0xfe,\n  0x27, 0xfe, 0x04, 0xfe, 0xed, 0xfd, 0xe1, 0xfd, 0xdf, 0xfd, 0xe7, 0xfd,\n  0xfd, 0xfd, 0x16, 0xfe, 0x34, 0xfe, 0x5e, 0xfe, 0x6f, 0xfe, 0x8d, 0xfe,\n  0xb2, 0xfe, 0xde, 0xfe, 0x15, 0xff, 0x4b, 0xff, 0x8a, 0xff, 0xc8, 0xff,\n  0x0b, 0x00, 0x4a, 0x00, 0x89, 0x00, 0xca, 0x00, 0x06, 0x01, 0x3a, 0x01,\n  0x6f, 0x01, 0x9a, 0x01, 0xbe, 0x01, 0xe1, 0x01, 0xf4, 0x01, 0x55, 0x02,\n  0xbd, 0x02, 0xe7, 0x02, 0xf3, 0x02, 0xe7, 0x02, 0x09, 0x03, 0x17, 0x03,\n  0xf1, 0x02, 0xb9, 0x02, 0x65, 0x02, 0x03, 0x02, 0x99, 0x01, 0x21, 0x01,\n  0xaf, 0x00, 0x37, 0x00, 0xc2, 0xff, 0x4d, 0xff, 0xdf, 0xfe, 0x78, 0xfe,\n  0x1b, 0xfe, 0xc3, 0xfd, 0x7b, 0xfd, 0x3d, 0xfd, 0x0d, 0xfd, 0xe7, 0xfc,\n  0xcf, 0xfc, 0xc7, 0xfc, 0xc9, 0xfc, 0xdd, 0xfc, 0xf3, 0xfc, 0x1d, 0xfd,\n  0x4f, 0xfd, 0x89, 0xfd, 0xcd, 0xfd, 0x06, 0xfe, 0x39, 0xfe, 0x78, 0xfe,\n  0xbe, 0xfe, 0x0c, 0xff, 0x5a, 0xff, 0xb0, 0xff, 0x02, 0x00, 0x59, 0x00,\n  0xa1, 0x00, 0xd1, 0x00, 0x06, 0x01, 0x39, 0x01, 0x6c, 0x01, 0x97, 0x01,\n  0xc4, 0x01, 0xe5, 0x01, 0x0b, 0x02, 0x25, 0x02, 0x3b, 0x02, 0x4b, 0x02,\n  0x4b, 0x02, 0x51, 0x02, 0x3f, 0x02, 0x57, 0x02, 0x8f, 0x02, 0x9f, 0x02,\n  0x8f, 0x02, 0x6b, 0x02, 0x33, 0x02, 0xf6, 0x01, 0xac, 0x01, 0x5d, 0x01,\n  0x04, 0x01, 0xac, 0x00, 0x53, 0x00, 0xf8, 0xff, 0xa4, 0xff, 0x4d, 0xff,\n  0x00, 0xff, 0xb2, 0xfe, 0x75, 0xfe, 0x37, 0xfe, 0x06, 0xfe, 0xd9, 0xfd,\n  0x0a, 0xfe, 0x51, 0xfe, 0x6c, 0xfe, 0x81, 0xfe, 0x82, 0xfe, 0x8a, 0xfe,\n  0x8a, 0xfe, 0x91, 0xfe, 0x94, 0xfe, 0x85, 0xfe, 0x7f, 0xfe, 0x7c, 0xfe,\n  0x85, 0xfe, 0x96, 0xfe, 0xae, 0xfe, 0xcf, 0xfe, 0xf3, 0xfe, 0x1e, 0xff,\n  0x4d, 0xff, 0x7d, 0xff, 0xb4, 0xff, 0xe9, 0xff, 0x1c, 0x00, 0x50, 0x00,\n  0x86, 0x00, 0xb6, 0x00, 0xe2, 0x00, 0x0f, 0x01, 0x36, 0x01, 0x52, 0x01,\n  0x72, 0x01, 0x85, 0x01, 0x97, 0x01, 0xe2, 0x01, 0x2d, 0x02, 0x49, 0x02,\n  0x4f, 0x02, 0x3f, 0x02, 0x23, 0x02, 0xf9, 0x01, 0xc6, 0x01, 0x8a, 0x01,\n  0x49, 0x01, 0xfb, 0x00, 0x94, 0x00, 0x35, 0x00, 0xd8, 0xff, 0x80, 0xff,\n  0x30, 0xff, 0xe8, 0xfe, 0xa6, 0xfe, 0x70, 0xfe, 0x42, 0xfe, 0x1e, 0xfe,\n  0x04, 0xfe, 0xf1, 0xfd, 0xeb, 0xfd, 0xf1, 0xfd, 0xf9, 0xfd, 0x0d, 0xfe,\n  0x2b, 0xfe, 0x51, 0xfe, 0x69, 0xfe, 0x7e, 0xfe, 0x9f, 0xfe, 0xc3, 0xfe,\n  0xee, 0xfe, 0x24, 0xff, 0x59, 0xff, 0x99, 0xff, 0xd5, 0xff, 0x11, 0x00,\n  0x4f, 0x00, 0x8f, 0x00, 0xcb, 0x00, 0x06, 0x01, 0x36, 0x01, 0x67, 0x01,\n  0x91, 0x01, 0x03, 0x02, 0x7d, 0x02, 0xb7, 0x02, 0xd9, 0x02, 0xd9, 0x02,\n  0xcb, 0x02, 0xa9, 0x02, 0x97, 0x02, 0xab, 0x02, 0x9b, 0x02, 0x69, 0x02,\n  0x23, 0x02, 0xcf, 0x01, 0x6c, 0x01, 0x07, 0x01, 0x9b, 0x00, 0x32, 0x00,\n  0xc8, 0xff, 0x5c, 0xff, 0xf9, 0xfe, 0x9d, 0xfe, 0x45, 0xfe, 0xf7, 0xfd,\n  0xb5, 0xfd, 0x7b, 0xfd, 0x4f, 0xfd, 0x2b, 0xfd, 0x19, 0xfd, 0x0f, 0xfd,\n  0x13, 0xfd, 0x1f, 0xfd, 0x39, 0xfd, 0x5b, 0xfd, 0x89, 0xfd, 0xc1, 0xfd,\n  0xfd, 0xfd, 0x3d, 0xfe, 0x6f, 0xfe, 0xa3, 0xfe, 0xdf, 0xfe, 0x23, 0xff,\n  0x66, 0xff, 0xb6, 0xff, 0xf0, 0xff, 0x1f, 0x00, 0x50, 0x00, 0x80, 0x00,\n  0xbc, 0x00, 0xf1, 0x00, 0x27, 0x01, 0x5a, 0x01, 0x88, 0x01, 0xb2, 0x01,\n  0xdc, 0x01, 0xf9, 0x01, 0x17, 0x02, 0x29, 0x02, 0x35, 0x02, 0x39, 0x02,\n  0x39, 0x02, 0x2f, 0x02, 0x55, 0x02, 0x7f, 0x02, 0x81, 0x02, 0x6d, 0x02,\n  0x41, 0x02, 0x0b, 0x02, 0xc6, 0x01, 0x7e, 0x01, 0x2b, 0x01, 0xd6, 0x00,\n  0x80, 0x00, 0x25, 0x00, 0xd2, 0xff, 0x7e, 0xff, 0x2f, 0xff, 0xe2, 0xfe,\n  0xa0, 0xfe, 0x5e, 0xfe, 0x76, 0xfe, 0xa2, 0xfe, 0xa3, 0xfe, 0x9c, 0xfe,\n  0x87, 0xfe, 0x75, 0xfe, 0x5e, 0xfe, 0x4f, 0xfe, 0x43, 0xfe, 0x40, 0xfe,\n  0x3f, 0xfe, 0x37, 0xfe, 0x2a, 0xfe, 0x27, 0xfe, 0x30, 0xfe, 0x3f, 0xfe,\n  0x5d, 0xfe, 0x7c, 0xfe, 0xa5, 0xfe, 0xd5, 0xfe, 0x09, 0xff, 0x41, 0xff,\n  0x7d, 0xff, 0xbc, 0xff, 0xfb, 0xff, 0x3d, 0x00, 0x73, 0x00, 0xb0, 0x00,\n  0xe8, 0x00, 0x1b, 0x01, 0x48, 0x01, 0x75, 0x01, 0x94, 0x01, 0xb4, 0x01,\n  0xc7, 0x01, 0xea, 0x01, 0x3f, 0x02, 0x6f, 0x02, 0x81, 0x02, 0x7d, 0x02,\n  0x65, 0x02, 0x3f, 0x02, 0x0f, 0x02, 0xc9, 0x01, 0x6a, 0x01, 0x0c, 0x01,\n  0xad, 0x00, 0x4f, 0x00, 0xf9, 0xff, 0xa4, 0xff, 0x54, 0xff, 0x0c, 0xff,\n  0xcc, 0xfe, 0x93, 0xfe, 0x63, 0xfe, 0x3c, 0xfe, 0x1b, 0xfe, 0x07, 0xfe,\n  0xfb, 0xfd, 0xf7, 0xfd, 0xfd, 0xfd, 0x0a, 0xfe, 0x24, 0xfe, 0x3f, 0xfe,\n  0x61, 0xfe, 0x78, 0xfe, 0x8e, 0xfe, 0xae, 0xfe, 0xd5, 0xfe, 0x00, 0xff,\n  0x33, 0xff, 0x6b, 0xff, 0xa2, 0xff, 0xe0, 0xff, 0x1c, 0x00, 0x59, 0x00,\n  0x97, 0x00, 0xce, 0x00, 0x06, 0x01, 0x88, 0x01, 0x0d, 0x02, 0x57, 0x02,\n  0x87, 0x02, 0x9d, 0x02, 0xa5, 0x02, 0x97, 0x02, 0x81, 0x02, 0x5f, 0x02,\n  0x31, 0x02, 0x27, 0x02, 0x33, 0x02, 0x15, 0x02, 0xe2, 0x01, 0x9c, 0x01,\n  0x4b, 0x01, 0xf5, 0x00, 0x98, 0x00, 0x38, 0x00, 0xdd, 0xff, 0x7d, 0xff,\n  0x24, 0xff, 0xcf, 0xfe, 0x84, 0xfe, 0x3d, 0xfe, 0xff, 0xfd, 0xcb, 0xfd,\n  0xa3, 0xfd, 0x85, 0xfd, 0x6d, 0xfd, 0x67, 0xfd, 0x65, 0xfd, 0x73, 0xfd,\n  0x81, 0xfd, 0xa3, 0xfd, 0xc7, 0xfd, 0xf7, 0xfd, 0x2d, 0xfe, 0x6a, 0xfe,\n  0xa3, 0xfe, 0xcc, 0xfe, 0xfa, 0xfe, 0x33, 0xff, 0x63, 0xff, 0x81, 0xff,\n  0xad, 0xff, 0xd7, 0xff, 0x0a, 0x00, 0x43, 0x00, 0x79, 0x00, 0xb2, 0x00,\n  0xec, 0x00, 0x1f, 0x01, 0x54, 0x01, 0x84, 0x01, 0xaf, 0x01, 0xd5, 0x01,\n  0xf4, 0x01, 0x0d, 0x02, 0x1b, 0x02, 0x25, 0x02, 0x27, 0x02, 0x1f, 0x02,\n  0x21, 0x02, 0x51, 0x02, 0x6b, 0x02, 0x61, 0x02, 0x47, 0x02, 0x15, 0x02,\n  0xdf, 0x01, 0x99, 0x01, 0x4e, 0x01, 0xdf, 0x00, 0x94, 0x00, 0x4b, 0x00,\n  0x02, 0x00, 0xb9, 0xff, 0x74, 0xff, 0x33, 0xff, 0x38, 0xff, 0x4a, 0xff,\n  0x35, 0xff, 0x16, 0xff, 0xf2, 0xfe, 0xcf, 0xfe, 0xa6, 0xfe, 0x87, 0xfe,\n  0x6c, 0xfe, 0x51, 0xfe, 0x42, 0xfe, 0x35, 0xfe, 0x30, 0xfe, 0x33, 0xfe,\n  0x30, 0xfe, 0x28, 0xfe, 0x2e, 0xfe, 0x3f, 0xfe, 0x57, 0xfe, 0x77, 0xfe,\n  0xa0, 0xfe, 0xcd, 0xfe, 0x01, 0xff, 0x38, 0xff, 0x72, 0xff, 0xb1, 0xff,\n  0xea, 0xff, 0x28, 0x00, 0x62, 0x00, 0x9e, 0x00, 0xd6, 0x00, 0x06, 0x01,\n  0x35, 0x01, 0x5e, 0x01, 0x81, 0x01, 0x9f, 0x01, 0xb6, 0x01, 0xc5, 0x01,\n  0xf0, 0x01, 0x2f, 0x02, 0x4d, 0x02, 0x4d, 0x02, 0x41, 0x02, 0x1b, 0x02,\n  0xd8, 0x01, 0x92, 0x01, 0x49, 0x01, 0xfc, 0x00, 0xb1, 0x00, 0x64, 0x00,\n  0x1c, 0x00, 0xd3, 0xff, 0x91, 0xff, 0x53, 0xff, 0x1b, 0xff, 0xe6, 0xfe,\n  0xbb, 0xfe, 0x94, 0xfe, 0x76, 0xfe, 0x5e, 0xfe, 0x4f, 0xfe, 0x45, 0xfe,\n  0x47, 0xfe, 0x4c, 0xfe, 0x57, 0xfe, 0x6e, 0xfe, 0x8b, 0xfe, 0xa2, 0xfe,\n  0xb3, 0xfe, 0xc7, 0xfe, 0xe4, 0xfe, 0x07, 0xff, 0x2e, 0xff, 0x58, 0xff,\n  0x87, 0xff, 0xba, 0xff, 0xec, 0xff, 0x20, 0x00, 0x57, 0x00, 0xcb, 0x00,\n  0x46, 0x01, 0x92, 0x01, 0xc6, 0x01, 0xe8, 0x01, 0xfd, 0x01, 0x05, 0x02,\n  0x01, 0x02, 0xf8, 0x01, 0xdf, 0x01, 0xc4, 0x01, 0xa1, 0x01, 0x7f, 0x01,\n  0x87, 0x01, 0x87, 0x01, 0x6b, 0x01, 0x3e, 0x01, 0x0c, 0x01, 0xc8, 0x00,\n  0x89, 0x00, 0x40, 0x00, 0xfa, 0xff, 0xb9, 0xff, 0x6f, 0xff, 0x31, 0xff,\n  0xf4, 0xfe, 0xbd, 0xfe, 0x8e, 0xfe, 0x62, 0xfe, 0x42, 0xfe, 0x26, 0xfe,\n  0x16, 0xfe, 0x09, 0xfe, 0x09, 0xfe, 0x0d, 0xfe, 0x1a, 0xfe, 0x2e, 0xfe,\n  0x47, 0xfe, 0x6e, 0xfe, 0x91, 0xfe, 0xbd, 0xfe, 0xec, 0xfe, 0x11, 0xff,\n  0x24, 0xff, 0x30, 0xff, 0x46, 0xff, 0x62, 0xff, 0x84, 0xff, 0xab, 0xff,\n  0xda, 0xff, 0x03, 0x00, 0x38, 0x00, 0x6d, 0x00, 0x9c, 0x00, 0xcf, 0x00,\n  0xfe, 0x00, 0x29, 0x01, 0x50, 0x01, 0x72, 0x01, 0x94, 0x01, 0xa9, 0x01,\n  0xbd, 0x01, 0xc6, 0x01, 0xce, 0x01, 0xd0, 0x01, 0xc3, 0x01, 0xd1, 0x01,\n  0xfa, 0x01, 0x03, 0x02, 0xf4, 0x01, 0xd8, 0x01, 0xac, 0x01, 0x79, 0x01,\n  0x3c, 0x01, 0xfa, 0x00, 0xb8, 0x00, 0x6f, 0x00, 0x26, 0x00, 0xe7, 0xff,\n  0xe2, 0xff, 0xe5, 0xff, 0xbe, 0xff, 0x96, 0xff, 0x5d, 0xff, 0x26, 0xff,\n  0xee, 0xfe, 0xba, 0xfe, 0x89, 0xfe, 0x61, 0xfe, 0x3b, 0xfe, 0x1e, 0xfe,\n  0x09, 0xfe, 0xfb, 0xfd, 0xf7, 0xfd, 0xfd, 0xfd, 0x01, 0xfe, 0x01, 0xfe,\n  0x06, 0xfe, 0x16, 0xfe, 0x35, 0xfe, 0x54, 0xfe, 0x80, 0xfe, 0xb3, 0xfe,\n  0xea, 0xfe, 0x28, 0xff, 0x64, 0xff, 0xa3, 0xff, 0xe9, 0xff, 0x28, 0x00,\n  0x68, 0x00, 0xa6, 0x00, 0xdf, 0x00, 0x1a, 0x01, 0x4a, 0x01, 0x78, 0x01,\n  0x9c, 0x01, 0xbc, 0x01, 0xd6, 0x01, 0xe3, 0x01, 0xf3, 0x01, 0x27, 0x02,\n  0x59, 0x02, 0x53, 0x02, 0x37, 0x02, 0x09, 0x02, 0xd5, 0x01, 0x97, 0x01,\n  0x55, 0x01, 0x11, 0x01, 0xcb, 0x00, 0x84, 0x00, 0x3d, 0x00, 0xfd, 0xff,\n  0xbb, 0xff, 0x7a, 0xff, 0x42, 0xff, 0x0b, 0xff, 0xdd, 0xfe, 0xb5, 0xfe,\n  0x91, 0xfe, 0x77, 0xfe, 0x64, 0xfe, 0x57, 0xfe, 0x50, 0xfe, 0x51, 0xfe,\n  0x5c, 0xfe, 0x69, 0xfe, 0x7e, 0xfe, 0x9b, 0xfe, 0xad, 0xfe, 0xb8, 0xfe,\n  0xd2, 0xfe, 0xed, 0xfe, 0x0f, 0xff, 0x3b, 0xff, 0x62, 0xff, 0x94, 0xff,\n  0xca, 0xff, 0x42, 0x00, 0xb9, 0x00, 0x06, 0x01, 0x46, 0x01, 0x6c, 0x01,\n  0x8f, 0x01, 0xa2, 0x01, 0xae, 0x01, 0xb3, 0x01, 0xaf, 0x01, 0xa3, 0x01,\n  0x8e, 0x01, 0x7c, 0x01, 0x5e, 0x01, 0x3b, 0x01, 0x29, 0x01, 0x3e, 0x01,\n  0x3b, 0x01, 0x1f, 0x01, 0xfa, 0x00, 0xc8, 0x00, 0x96, 0x00, 0x5c, 0x00,\n  0x20, 0x00, 0xe7, 0xff, 0xa9, 0xff, 0x72, 0xff, 0x3b, 0xff, 0x0c, 0xff,\n  0xdf, 0xfe, 0xb7, 0xfe, 0x96, 0xfe, 0x7b, 0xfe, 0x69, 0xfe, 0x5c, 0xfe,\n  0x57, 0xfe, 0x57, 0xfe, 0x5e, 0xfe, 0x6c, 0xfe, 0x7f, 0xfe, 0x98, 0xfe,\n  0xb5, 0xfe, 0xd8, 0xfe, 0xf2, 0xfe, 0x02, 0xff, 0x04, 0xff, 0x0f, 0xff,\n  0x24, 0xff, 0x3e, 0xff, 0x5d, 0xff, 0x89, 0xff, 0xb1, 0xff, 0xe0, 0xff,\n  0x13, 0x00, 0x45, 0x00, 0x77, 0x00, 0xa8, 0x00, 0xd7, 0x00, 0x05, 0x01,\n  0x2c, 0x01, 0x53, 0x01, 0x74, 0x01, 0x8c, 0x01, 0xa2, 0x01, 0xb0, 0x01,\n  0xbb, 0x01, 0xbb, 0x01, 0xb9, 0x01, 0xab, 0x01, 0xc9, 0x01, 0xe7, 0x01,\n  0xe2, 0x01, 0xd1, 0x01, 0xb0, 0x01, 0x81, 0x01, 0x4e, 0x01, 0x12, 0x01,\n  0xcf, 0x00, 0x93, 0x00, 0x91, 0x00, 0x8a, 0x00, 0x62, 0x00, 0x28, 0x00,\n  0xec, 0xff, 0xa9, 0xff, 0x5f, 0xff, 0x20, 0xff, 0xdd, 0xfe, 0xa1, 0xfe,\n  0x6c, 0xfe, 0x3d, 0xfe, 0x13, 0xfe, 0xf9, 0xfd, 0xe1, 0xfd, 0xd3, 0xfd,\n  0xd1, 0xfd, 0xd3, 0xfd, 0xe1, 0xfd, 0xeb, 0xfd, 0xf3, 0xfd, 0x06, 0xfe,\n  0x21, 0xfe, 0x44, 0xfe, 0x77, 0xfe, 0xa9, 0xfe, 0xe2, 0xfe, 0x1d, 0xff,\n  0x60, 0xff, 0xa6, 0xff, 0xe8, 0xff, 0x2d, 0x00, 0x71, 0x00, 0xb0, 0x00,\n  0xed, 0x00, 0x23, 0x01, 0x58, 0x01, 0x87, 0x01, 0xaf, 0x01, 0xd1, 0x01,\n  0xe7, 0x01, 0xf7, 0x01, 0x01, 0x02, 0x09, 0x02, 0x23, 0x02, 0x29, 0x02,\n  0x1b, 0x02, 0xfa, 0x01, 0xd1, 0x01, 0x9c, 0x01, 0x65, 0x01, 0x28, 0x01,\n  0xe8, 0x00, 0xa8, 0x00, 0x64, 0x00, 0x20, 0x00, 0xe2, 0xff, 0xa3, 0xff,\n  0x6a, 0xff, 0x32, 0xff, 0x03, 0xff, 0xd7, 0xfe, 0xb0, 0xfe, 0x94, 0xfe,\n  0x79, 0xfe, 0x69, 0xfe, 0x5f, 0xfe, 0x5c, 0xfe, 0x5a, 0xfe, 0x66, 0xfe,\n  0x76, 0xfe, 0x8c, 0xfe, 0xa5, 0xfe, 0xb2, 0xfe, 0xc3, 0xfe, 0xdd, 0xfe,\n  0xfa, 0xfe, 0x1e, 0xff, 0x48, 0xff, 0xbd, 0xff, 0x28, 0x00, 0x79, 0x00,\n  0xb3, 0x00, 0xe4, 0x00, 0x07, 0x01, 0x24, 0x01, 0x3c, 0x01, 0x4a, 0x01,\n  0x55, 0x01, 0x53, 0x01, 0x57, 0x01, 0x50, 0x01, 0x43, 0x01, 0x34, 0x01,\n  0x1f, 0x01, 0x0c, 0x01, 0xec, 0x00, 0xf9, 0x00, 0x0e, 0x01, 0x05, 0x01,\n  0xf4, 0x00, 0xd2, 0x00, 0xab, 0x00, 0x7c, 0x00, 0x4d, 0x00, 0x1b, 0x00,\n  0xe9, 0xff, 0xb9, 0xff, 0x89, 0xff, 0x5a, 0xff, 0x33, 0xff, 0x0f, 0xff,\n  0xec, 0xfe, 0xd2, 0xfe, 0xbd, 0xfe, 0xab, 0xfe, 0xa2, 0xfe, 0x9b, 0xfe,\n  0x9d, 0xfe, 0xa5, 0xfe, 0xad, 0xfe, 0xc0, 0xfe, 0xc7, 0xfe, 0xc7, 0xfe,\n  0xd2, 0xfe, 0xe2, 0xfe, 0xf2, 0xfe, 0xfa, 0xfe, 0x0b, 0xff, 0x28, 0xff,\n  0x45, 0xff, 0x68, 0xff, 0x93, 0xff, 0xc0, 0xff, 0xf1, 0xff, 0x20, 0x00,\n  0x50, 0x00, 0x84, 0x00, 0xb5, 0x00, 0xe0, 0x00, 0x0c, 0x01, 0x30, 0x01,\n  0x52, 0x01, 0x6d, 0x01, 0x84, 0x01, 0x97, 0x01, 0xa2, 0x01, 0xa6, 0x01,\n  0xa3, 0x01, 0x9c, 0x01, 0x9b, 0x01, 0xc3, 0x01, 0xce, 0x01, 0xc5, 0x01,\n  0xae, 0x01, 0x87, 0x01, 0x58, 0x01, 0x26, 0x01, 0x2e, 0x01, 0x29, 0x01,\n  0x01, 0x01, 0xcb, 0x00, 0x89, 0x00, 0x40, 0x00, 0xf0, 0xff, 0xa5, 0xff,\n  0x58, 0xff, 0x0e, 0xff, 0xcb, 0xfe, 0x89, 0xfe, 0x51, 0xfe, 0x23, 0xfe,\n  0xf7, 0xfd, 0xdd, 0xfd, 0xc7, 0xfd, 0xbb, 0xfd, 0xb7, 0xfd, 0xbf, 0xfd,\n  0xcf, 0xfd, 0xe1, 0xfd, 0xf1, 0xfd, 0x04, 0xfe, 0x23, 0xfe, 0x47, 0xfe,\n  0x77, 0xfe, 0xad, 0xfe, 0xe5, 0xfe, 0x24, 0xff, 0x68, 0xff, 0xad, 0xff,\n  0xf2, 0xff, 0x38, 0x00, 0x77, 0x00, 0xbb, 0x00, 0xf9, 0x00, 0x30, 0x01,\n  0x67, 0x01, 0x91, 0x01, 0xbb, 0x01, 0xda, 0x01, 0xf2, 0x01, 0xf4, 0x01,\n  0xe8, 0x01, 0xd6, 0x01, 0xe7, 0x01, 0x03, 0x02, 0xfd, 0x01, 0xed, 0x01,\n  0xcb, 0x01, 0xa3, 0x01, 0x6f, 0x01, 0x39, 0x01, 0xff, 0x00, 0xc2, 0x00,\n  0x82, 0x00, 0x43, 0x00, 0x04, 0x00, 0xc7, 0xff, 0x8e, 0xff, 0x55, 0xff,\n  0x25, 0xff, 0xf4, 0xfe, 0xd0, 0xfe, 0xab, 0xfe, 0x93, 0xfe, 0x7b, 0xfe,\n  0x6c, 0xfe, 0x64, 0xfe, 0x62, 0xfe, 0x66, 0xfe, 0x72, 0xfe, 0x84, 0xfe,\n  0x99, 0xfe, 0xb0, 0xfe, 0xba, 0xfe, 0xd0, 0xfe, 0xea, 0xfe, 0x52, 0xff,\n  0xb3, 0xff, 0xf7, 0xff, 0x2d, 0x00, 0x5a, 0x00, 0x7e, 0x00, 0x9e, 0x00,\n  0xbb, 0x00, 0xcf, 0x00, 0xe4, 0x00, 0xef, 0x00, 0xfc, 0x00, 0xff, 0x00,\n  0x04, 0x01, 0x04, 0x01, 0x01, 0x01, 0xf9, 0x00, 0xec, 0x00, 0xdf, 0x00,\n  0xcb, 0x00, 0xc5, 0x00, 0xe0, 0x00, 0xf4, 0x00, 0xef, 0x00, 0xdd, 0x00,\n  0xc5, 0x00, 0xa3, 0x00, 0x7f, 0x00, 0x55, 0x00, 0x2b, 0x00, 0x01, 0x00,\n  0xd7, 0xff, 0xb0, 0xff, 0x89, 0xff, 0x62, 0xff, 0x40, 0xff, 0x25, 0xff,\n  0x09, 0xff, 0xf7, 0xfe, 0xe5, 0xfe, 0xdd, 0xfe, 0xd4, 0xfe, 0xd2, 0xfe,\n  0xc8, 0xfe, 0xba, 0xfe, 0xb2, 0xfe, 0xb3, 0xfe, 0xbd, 0xfe, 0xcb, 0xfe,\n  0xe4, 0xfe, 0xef, 0xfe, 0xff, 0xfe, 0x14, 0xff, 0x2e, 0xff, 0x53, 0xff,\n  0x7c, 0xff, 0xa6, 0xff, 0xd3, 0xff, 0x03, 0x00, 0x32, 0x00, 0x62, 0x00,\n  0x91, 0x00, 0xba, 0x00, 0xe5, 0x00, 0x0c, 0x01, 0x33, 0x01, 0x4e, 0x01,\n  0x67, 0x01, 0x78, 0x01, 0x87, 0x01, 0x8f, 0x01, 0x8f, 0x01, 0x8f, 0x01,\n  0x81, 0x01, 0x94, 0x01, 0xb3, 0x01, 0xb4, 0x01, 0xa4, 0x01, 0x8f, 0x01,\n  0xa6, 0x01, 0xb0, 0x01, 0x92, 0x01, 0x60, 0x01, 0x20, 0x01, 0xda, 0x00,\n  0x8b, 0x00, 0x39, 0x00, 0xe9, 0xff, 0x98, 0xff, 0x45, 0xff, 0xfe, 0xfe,\n  0xb6, 0xfe, 0x77, 0xfe, 0x42, 0xfe, 0x11, 0xfe, 0xeb, 0xfd, 0xd1, 0xfd,\n  0xb9, 0xfd, 0xb3, 0xfd, 0xaf, 0xfd, 0xbb, 0xfd, 0xc9, 0xfd, 0xe3, 0xfd,\n  0xfd, 0xfd, 0x13, 0xfe, 0x33, 0xfe, 0x57, 0xfe, 0x84, 0xfe, 0xba, 0xfe,\n  0xf4, 0xfe, 0x36, 0xff, 0x75, 0xff, 0xb6, 0xff, 0x00, 0x00, 0x40, 0x00,\n  0x86, 0x00, 0xc5, 0x00, 0x01, 0x01, 0x35, 0x01, 0x6a, 0x01, 0x97, 0x01,\n  0xbb, 0x01, 0xcb, 0x01, 0xcb, 0x01, 0xcb, 0x01, 0xc5, 0x01, 0xb6, 0x01,\n  0xb6, 0x01, 0xd5, 0x01, 0xe5, 0x01, 0xde, 0x01, 0xc8, 0x01, 0xa9, 0x01,\n  0x7f, 0x01, 0x4d, 0x01, 0x19, 0x01, 0xdb, 0x00, 0xa1, 0x00, 0x65, 0x00,\n  0x28, 0x00, 0xed, 0xff, 0xb1, 0xff, 0x7c, 0xff, 0x47, 0xff, 0x18, 0xff,\n  0xee, 0xfe, 0xc8, 0xfe, 0xa9, 0xfe, 0x91, 0xfe, 0x7b, 0xfe, 0x71, 0xfe,\n  0x69, 0xfe, 0x6c, 0xfe, 0x72, 0xfe, 0x7e, 0xfe, 0x93, 0xfe, 0xa9, 0xfe,\n  0xbd, 0xfe, 0x09, 0xff, 0x5c, 0xff, 0x91, 0xff, 0xbd, 0xff, 0xdf, 0xff,\n  0x00, 0x00, 0x1e, 0x00, 0x32, 0x00, 0x52, 0x00, 0x64, 0x00, 0x77, 0x00,\n  0x8c, 0x00, 0x9c, 0x00, 0xa8, 0x00, 0xb3, 0x00, 0xbd, 0x00, 0xc1, 0x00,\n  0xc8, 0x00, 0xc8, 0x00, 0xc3, 0x00, 0xc2, 0x00, 0xbb, 0x00, 0xb1, 0x00,\n  0xc2, 0x00, 0xe7, 0x00, 0xf2, 0x00, 0xf2, 0x00, 0xe3, 0x00, 0xcf, 0x00,\n  0xb5, 0x00, 0x8f, 0x00, 0x6f, 0x00, 0x47, 0x00, 0x23, 0x00, 0xfd, 0xff,\n  0xd8, 0xff, 0xb5, 0xff, 0x91, 0xff, 0x71, 0xff, 0x50, 0xff, 0x3a, 0xff,\n  0x23, 0xff, 0x0f, 0xff, 0xf9, 0xfe, 0xd4, 0xfe, 0xc0, 0xfe, 0xb0, 0xfe,\n  0xab, 0xfe, 0xaa, 0xfe, 0xb0, 0xfe, 0xc2, 0xfe, 0xd4, 0xfe, 0xe9, 0xfe,\n  0xf7, 0xfe, 0x09, 0xff, 0x23, 0xff, 0x40, 0xff, 0x68, 0xff, 0x8a, 0xff,\n  0xb9, 0xff, 0xe8, 0xff, 0x10, 0x00, 0x43, 0x00, 0x6d, 0x00, 0x99, 0x00,\n  0xc3, 0x00, 0xea, 0x00, 0x11, 0x01, 0x2b, 0x01, 0x45, 0x01, 0x5e, 0x01,\n  0x68, 0x01, 0x75, 0x01, 0x7c, 0x01, 0x7c, 0x01, 0x72, 0x01, 0x6d, 0x01,\n  0x8d, 0x01, 0xa7, 0x01, 0xdf, 0x01, 0xff, 0x01, 0xf7, 0x01, 0xd5, 0x01,\n  0xa6, 0x01, 0x62, 0x01, 0x1b, 0x01, 0xce, 0x00, 0x7c, 0x00, 0x29, 0x00,\n  0xd5, 0xff, 0x87, 0xff, 0x36, 0xff, 0xed, 0xfe, 0xaa, 0xfe, 0x6e, 0xfe,\n  0x37, 0xfe, 0x0b, 0xfe, 0xe9, 0xfd, 0xcb, 0xfd, 0xbf, 0xfd, 0xb1, 0xfd,\n  0xb7, 0xfd, 0xbf, 0xfd, 0xd3, 0xfd, 0xeb, 0xfd, 0x0e, 0xfe, 0x2f, 0xfe,\n  0x48, 0xfe, 0x6e, 0xfe, 0x9b, 0xfe, 0xcf, 0xfe, 0x0b, 0xff, 0x46, 0xff,\n  0x84, 0xff, 0xc7, 0xff, 0x09, 0x00, 0x4a, 0x00, 0x8b, 0x00, 0xcb, 0x00,\n  0x01, 0x01, 0x36, 0x01, 0x67, 0x01, 0x85, 0x01, 0x8d, 0x01, 0x9a, 0x01,\n  0xa3, 0x01, 0xa9, 0x01, 0xa6, 0x01, 0xa3, 0x01, 0x99, 0x01, 0xa9, 0x01,\n  0xc8, 0x01, 0xcb, 0x01, 0xc1, 0x01, 0xa9, 0x01, 0x87, 0x01, 0x5b, 0x01,\n  0x29, 0x01, 0xf5, 0x00, 0xbb, 0x00, 0x81, 0x00, 0x48, 0x00, 0x09, 0x00,\n  0xd3, 0xff, 0x9e, 0xff, 0x65, 0xff, 0x35, 0xff, 0x08, 0xff, 0xe1, 0xfe,\n  0xbd, 0xfe, 0xa1, 0xfe, 0x89, 0xfe, 0x7c, 0xfe, 0x73, 0xfe, 0x6f, 0xfe,\n  0x72, 0xfe, 0x79, 0xfe, 0x90, 0xfe, 0xe7, 0xfe, 0x31, 0xff, 0x52, 0xff,\n  0x6d, 0xff, 0x83, 0xff, 0x9b, 0xff, 0xad, 0xff, 0xc0, 0xff, 0xd5, 0xff,\n  0xe9, 0xff, 0xfd, 0xff, 0x0f, 0x00, 0x28, 0x00, 0x3a, 0x00, 0x4d, 0x00,\n  0x5f, 0x00, 0x71, 0x00, 0x7f, 0x00, 0x8c, 0x00, 0x9c, 0x00, 0xa6, 0x00,\n  0xac, 0x00, 0xb0, 0x00, 0xb6, 0x00, 0xb3, 0x00, 0xb8, 0x00, 0xe2, 0x00,\n  0x01, 0x01, 0x0a, 0x01, 0x0a, 0x01, 0xfc, 0x00, 0xea, 0x00, 0xd0, 0x00,\n  0xb3, 0x00, 0x91, 0x00, 0x6d, 0x00, 0x46, 0x00, 0x23, 0x00, 0xfd, 0xff,\n  0xd5, 0xff, 0xb5, 0xff, 0x93, 0xff, 0x72, 0xff, 0x4d, 0xff, 0x1b, 0xff,\n  0xf6, 0xfe, 0xd9, 0xfe, 0xc0, 0xfe, 0xb5, 0xfe, 0xa8, 0xfe, 0xa8, 0xfe,\n  0xae, 0xfe, 0xba, 0xfe, 0xcb, 0xfe, 0xe6, 0xfe, 0xf4, 0xfe, 0x03, 0xff,\n  0x19, 0xff, 0x33, 0xff, 0x55, 0xff, 0x76, 0xff, 0xa1, 0xff, 0xcb, 0xff,\n  0xf7, 0xff, 0x21, 0x00, 0x4d, 0x00, 0x79, 0x00, 0xa3, 0x00, 0xc8, 0x00,\n  0xec, 0x00, 0x0c, 0x01, 0x23, 0x01, 0x3d, 0x01, 0x50, 0x01, 0x5d, 0x01,\n  0x63, 0x01, 0x67, 0x01, 0x65, 0x01, 0x63, 0x01, 0xac, 0x01, 0xfc, 0x01,\n  0x17, 0x02, 0x15, 0x02, 0xf8, 0x01, 0xcd, 0x01, 0x94, 0x01, 0x53, 0x01,\n  0x09, 0x01, 0xbb, 0x00, 0x69, 0x00, 0x17, 0x00, 0xc5, 0xff, 0x79, 0xff,\n  0x2d, 0xff, 0xe7, 0xfe, 0xa8, 0xfe, 0x6e, 0xfe, 0x3f, 0xfe, 0x13, 0xfe,\n  0xf3, 0xfd, 0xdb, 0xfd, 0xcd, 0xfd, 0xc5, 0xfd, 0xcb, 0xfd, 0xd7, 0xfd,\n  0xeb, 0xfd, 0x09, 0xfe, 0x28, 0xfe, 0x51, 0xfe, 0x6f, 0xfe, 0x94, 0xfe,\n  0xbd, 0xfe, 0xee, 0xfe, 0x21, 0xff, 0x5c, 0xff, 0x98, 0xff, 0xd7, 0xff,\n  0x11, 0x00, 0x50, 0x00, 0x8c, 0x00, 0xc3, 0x00, 0xfe, 0x00, 0x1f, 0x01,\n  0x36, 0x01, 0x4d, 0x01, 0x62, 0x01, 0x72, 0x01, 0x80, 0x01, 0x87, 0x01,\n  0x8d, 0x01, 0x8d, 0x01, 0x89, 0x01, 0x87, 0x01, 0x9f, 0x01, 0xb6, 0x01,\n  0xb4, 0x01, 0xa6, 0x01, 0x8d, 0x01, 0x65, 0x01, 0x3e, 0x01, 0x0a, 0x01,\n  0xd6, 0x00, 0x9f, 0x00, 0x65, 0x00, 0x2d, 0x00, 0xf2, 0xff, 0xbe, 0xff,\n  0x86, 0xff, 0x6e, 0xff, 0x46, 0xff, 0x22, 0xff, 0x03, 0xff, 0xe9, 0xfe,\n  0xd1, 0xfe, 0xc0, 0xfe, 0xb5, 0xfe, 0xae, 0xfe, 0xb9, 0xfe, 0xf1, 0xfe,\n  0x25, 0xff, 0x46, 0xff, 0x61, 0xff, 0x6e, 0xff, 0x70, 0xff, 0x75, 0xff,\n  0x7a, 0xff, 0x83, 0xff, 0x8e, 0xff, 0x9a, 0xff, 0xab, 0xff, 0xba, 0xff,\n  0xcc, 0xff, 0xdd, 0xff, 0xf4, 0xff, 0x07, 0x00, 0x19, 0x00, 0x2f, 0x00,\n  0x44, 0x00, 0x54, 0x00, 0x66, 0x00, 0x75, 0x00, 0x84, 0x00, 0x90, 0x00,\n  0x98, 0x00, 0xa2, 0x00, 0xa6, 0x00, 0xb8, 0x00, 0xe2, 0x00, 0xf7, 0x00,\n  0x02, 0x01, 0xfd, 0x00, 0xf4, 0x00, 0xe6, 0x00, 0xcf, 0x00, 0xb5, 0x00,\n  0x96, 0x00, 0x78, 0x00, 0x58, 0x00, 0x34, 0x00, 0x13, 0x00, 0xf2, 0xff,\n  0xc8, 0xff, 0x96, 0xff, 0x6e, 0xff, 0x44, 0xff, 0x26, 0xff, 0x0e, 0xff,\n  0xf6, 0xfe, 0xea, 0xfe, 0xe1, 0xfe, 0xdf, 0xfe, 0xe1, 0xfe, 0xea, 0xfe,\n  0xf5, 0xfe, 0x05, 0xff, 0x1c, 0xff, 0x25, 0xff, 0x34, 0xff, 0x46, 0xff,\n  0x5f, 0xff, 0x7a, 0xff, 0x99, 0xff, 0xbd, 0xff, 0xe0, 0xff, 0x00, 0x00,\n  0x25, 0x00, 0x48, 0x00, 0x6a, 0x00, 0x8b, 0x00, 0xaa, 0x00, 0xc3, 0x00,\n  0xe0, 0x00, 0xf4, 0x00, 0x04, 0x01, 0x13, 0x01, 0x1a, 0x01, 0x2a, 0x01,\n  0x5f, 0x01, 0x83, 0x01, 0x8c, 0x01, 0xa7, 0x01, 0xb8, 0x01, 0xb0, 0x01,\n  0x97, 0x01, 0x6f, 0x01, 0x40, 0x01, 0x09, 0x01, 0xcc, 0x00, 0x8c, 0x00,\n  0x4b, 0x00, 0x09, 0x00, 0xca, 0xff, 0x8b, 0xff, 0x4e, 0xff, 0x17, 0xff,\n  0xe2, 0xfe, 0xb7, 0xfe, 0x8d, 0xfe, 0x6f, 0xfe, 0x57, 0xfe, 0x43, 0xfe,\n  0x3a, 0xfe, 0x35, 0xfe, 0x37, 0xfe, 0x46, 0xfe, 0x54, 0xfe, 0x6c, 0xfe,\n  0x89, 0xfe, 0xac, 0xfe, 0xcc, 0xfe, 0xe3, 0xfe, 0x09, 0xff, 0x2b, 0xff,\n  0x58, 0xff, 0x82, 0xff, 0xb3, 0xff, 0xe2, 0xff, 0x13, 0x00, 0x44, 0x00,\n  0x70, 0x00, 0x95, 0x00, 0xac, 0x00, 0xc6, 0x00, 0xde, 0x00, 0xf5, 0x00,\n  0x09, 0x01, 0x1a, 0x01, 0x2c, 0x01, 0x37, 0x01, 0x3e, 0x01, 0x45, 0x01,\n  0x45, 0x01, 0x40, 0x01, 0x46, 0x01, 0x61, 0x01, 0x6b, 0x01, 0x64, 0x01,\n  0x54, 0x01, 0x3d, 0x01, 0x1c, 0x01, 0xf6, 0x00, 0xcc, 0x00, 0xa0, 0x00,\n  0x70, 0x00, 0x40, 0x00, 0x12, 0x00, 0xe2, 0xff, 0xb4, 0xff, 0x86, 0xff,\n  0x60, 0xff, 0x39, 0xff, 0x19, 0xff, 0xf8, 0xfe, 0xe3, 0xfe, 0xce, 0xfe,\n  0xcb, 0xfe, 0xf6, 0xfe, 0x19, 0xff, 0x29, 0xff, 0x3a, 0xff, 0x40, 0xff,\n  0x4c, 0xff, 0x53, 0xff, 0x4b, 0xff, 0x4a, 0xff, 0x48, 0xff, 0x4b, 0xff,\n  0x55, 0xff, 0x5d, 0xff, 0x6c, 0xff, 0x7e, 0xff, 0x91, 0xff, 0xa8, 0xff,\n  0xbe, 0xff, 0xd7, 0xff, 0xf2, 0xff, 0x09, 0x00, 0x24, 0x00, 0x3b, 0x00,\n  0x53, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x92, 0x00, 0xa2, 0x00, 0xb2, 0x00,\n  0xba, 0x00, 0xc5, 0x00, 0xe6, 0x00, 0x0b, 0x01, 0x1c, 0x01, 0x23, 0x01,\n  0x1d, 0x01, 0x12, 0x01, 0x00, 0x01, 0xe9, 0x00, 0xce, 0x00, 0xac, 0x00,\n  0x89, 0x00, 0x67, 0x00, 0x37, 0x00, 0x00, 0x00, 0xd1, 0xff, 0xa4, 0xff,\n  0x7b, 0xff, 0x55, 0xff, 0x36, 0xff, 0x1a, 0xff, 0x06, 0xff, 0xf5, 0xfe,\n  0xeb, 0xfe, 0xe4, 0xfe, 0xe4, 0xfe, 0xeb, 0xfe, 0xf4, 0xfe, 0x03, 0xff,\n  0x15, 0xff, 0x25, 0xff, 0x31, 0xff, 0x40, 0xff, 0x53, 0xff, 0x6a, 0xff,\n  0x86, 0xff, 0xa4, 0xff, 0xc7, 0xff, 0xe7, 0xff, 0x08, 0x00, 0x27, 0x00,\n  0x4b, 0x00, 0x6a, 0x00, 0x87, 0x00, 0xa6, 0x00, 0xbf, 0x00, 0xd7, 0x00,\n  0xe9, 0x00, 0x04, 0x01, 0x45, 0x01, 0x6f, 0x01, 0x85, 0x01, 0x8c, 0x01,\n  0x83, 0x01, 0x7d, 0x01, 0x86, 0x01, 0x83, 0x01, 0x6d, 0x01, 0x4d, 0x01,\n  0x1f, 0x01, 0xed, 0x00, 0xb5, 0x00, 0x7d, 0x00, 0x40, 0x00, 0x03, 0x00,\n  0xc9, 0xff, 0x92, 0xff, 0x57, 0xff, 0x26, 0xff, 0xf7, 0xfe, 0xce, 0xfe,\n  0xa9, 0xfe, 0x8c, 0xfe, 0x78, 0xfe, 0x65, 0xfe, 0x5a, 0xfe, 0x59, 0xfe,\n  0x5c, 0xfe, 0x6c, 0xfe, 0x77, 0xfe, 0x8f, 0xfe, 0xa9, 0xfe, 0xc9, 0xfe,\n  0xec, 0xfe, 0x07, 0xff, 0x24, 0xff, 0x44, 0xff, 0x6a, 0xff, 0x90, 0xff,\n  0xbc, 0xff, 0xe6, 0xff, 0x10, 0x00, 0x2d, 0x00, 0x49, 0x00, 0x63, 0x00,\n  0x80, 0x00, 0x9d, 0x00, 0xb8, 0x00, 0xd1, 0x00, 0xe7, 0x00, 0xff, 0x00,\n  0x0f, 0x01, 0x20, 0x01, 0x2c, 0x01, 0x33, 0x01, 0x37, 0x01, 0x39, 0x01,\n  0x34, 0x01, 0x42, 0x01, 0x58, 0x01, 0x5d, 0x01, 0x54, 0x01, 0x40, 0x01,\n  0x25, 0x01, 0x02, 0x01, 0xde, 0x00, 0xb2, 0x00, 0x87, 0x00, 0x58, 0x00,\n  0x29, 0x00, 0xfd, 0xff, 0xcc, 0xff, 0xa2, 0xff, 0x77, 0xff, 0x51, 0xff,\n  0x2e, 0xff, 0x0e, 0xff, 0x01, 0xff, 0x1e, 0xff, 0x2e, 0xff, 0x32, 0xff,\n  0x34, 0xff, 0x30, 0xff, 0x2b, 0xff, 0x2b, 0xff, 0x27, 0xff, 0x29, 0xff,\n  0x26, 0xff, 0x1a, 0xff, 0x19, 0xff, 0x17, 0xff, 0x23, 0xff, 0x29, 0xff,\n  0x38, 0xff, 0x4c, 0xff, 0x60, 0xff, 0x7a, 0xff, 0x96, 0xff, 0xb1, 0xff,\n  0xd0, 0xff, 0xf1, 0xff, 0x0e, 0x00, 0x2d, 0x00, 0x49, 0x00, 0x66, 0x00,\n  0x82, 0x00, 0x99, 0x00, 0xaf, 0x00, 0xc1, 0x00, 0xd2, 0x00, 0xdb, 0x00,\n  0xef, 0x00, 0x15, 0x01, 0x33, 0x01, 0x40, 0x01, 0x40, 0x01, 0x39, 0x01,\n  0x2a, 0x01, 0x14, 0x01, 0xf9, 0x00, 0xd9, 0x00, 0xac, 0x00, 0x73, 0x00,\n  0x41, 0x00, 0x0f, 0x00, 0xe0, 0xff, 0xb7, 0xff, 0x8b, 0xff, 0x69, 0xff,\n  0x4a, 0xff, 0x2d, 0xff, 0x17, 0xff, 0x03, 0xff, 0xf7, 0xfe, 0xf1, 0xfe,\n  0xed, 0xfe, 0xf1, 0xfe, 0xf7, 0xfe, 0x01, 0xff, 0x10, 0xff, 0x23, 0xff,\n  0x2e, 0xff, 0x39, 0xff, 0x48, 0xff, 0x5d, 0xff, 0x73, 0xff, 0x8d, 0xff,\n  0xab, 0xff, 0xcb, 0xff, 0xeb, 0xff, 0x0c, 0x00, 0x2b, 0x00, 0x4d, 0x00,\n  0x67, 0x00, 0x89, 0x00, 0xa0, 0x00, 0xc8, 0x00, 0x0f, 0x01, 0x43, 0x01,\n  0x62, 0x01, 0x72, 0x01, 0x77, 0x01, 0x6f, 0x01, 0x66, 0x01, 0x4e, 0x01,\n  0x49, 0x01, 0x4d, 0x01, 0x3d, 0x01, 0x23, 0x01, 0xfd, 0x00, 0xd2, 0x00,\n  0xa2, 0x00, 0x71, 0x00, 0x38, 0x00, 0x03, 0x00, 0xd2, 0xff, 0x9d, 0xff,\n  0x6a, 0xff, 0x3d, 0xff, 0x12, 0xff, 0xee, 0xfe, 0xcc, 0xfe, 0xb4, 0xfe,\n  0x9d, 0xfe, 0x8f, 0xfe, 0x88, 0xfe, 0x84, 0xfe, 0x88, 0xfe, 0x8e, 0xfe,\n  0xa0, 0xfe, 0xb1, 0xfe, 0xcc, 0xfe, 0xe8, 0xfe, 0x08, 0xff, 0x25, 0xff,\n  0x41, 0xff, 0x5a, 0xff, 0x7a, 0xff, 0x9b, 0xff, 0xbd, 0xff, 0xd7, 0xff,\n  0xeb, 0xff, 0x03, 0x00, 0x20, 0x00, 0x40, 0x00, 0x5c, 0x00, 0x7a, 0x00,\n  0x98, 0x00, 0xb5, 0x00, 0xce, 0x00, 0xe6, 0x00, 0xfd, 0x00, 0x0a, 0x01,\n  0x1c, 0x01, 0x26, 0x01, 0x2c, 0x01, 0x30, 0x01, 0x2e, 0x01, 0x2a, 0x01,\n  0x40, 0x01, 0x4e, 0x01, 0x4c, 0x01, 0x3e, 0x01, 0x29, 0x01, 0x0c, 0x01,\n  0xe9, 0x00, 0xc3, 0x00, 0x99, 0x00, 0x6c, 0x00, 0x41, 0x00, 0x10, 0x00,\n  0xe6, 0xff, 0xbc, 0xff, 0x91, 0xff, 0x67, 0xff, 0x53, 0xff, 0x60, 0xff,\n  0x65, 0xff, 0x5d, 0xff, 0x51, 0xff, 0x40, 0xff, 0x2e, 0xff, 0x20, 0xff,\n  0x13, 0xff, 0x09, 0xff, 0x03, 0xff, 0xfd, 0xfe, 0xfe, 0xfe, 0xfa, 0xfe,\n  0xef, 0xfe, 0xf1, 0xfe, 0xf6, 0xfe, 0x00, 0xff, 0x11, 0xff, 0x26, 0xff,\n  0x3f, 0xff, 0x5d, 0xff, 0x77, 0xff, 0x9a, 0xff, 0xbd, 0xff, 0xe0, 0xff,\n  0x03, 0x00, 0x27, 0x00, 0x46, 0x00, 0x6a, 0x00, 0x89, 0x00, 0xa3, 0x00,\n  0xbe, 0x00, 0xd5, 0x00, 0xe7, 0x00, 0xf7, 0x00, 0x00, 0x01, 0x17, 0x01,\n  0x3e, 0x01, 0x54, 0x01, 0x58, 0x01, 0x54, 0x01, 0x49, 0x01, 0x31, 0x01,\n  0x0f, 0x01, 0xdb, 0x00, 0xaf, 0x00, 0x80, 0x00, 0x4f, 0x00, 0x22, 0x00,\n  0xf6, 0xff, 0xcb, 0xff, 0xa5, 0xff, 0x80, 0xff, 0x5d, 0xff, 0x43, 0xff,\n  0x29, 0xff, 0x17, 0xff, 0x07, 0xff, 0xfc, 0xfe, 0xf5, 0xfe, 0xf5, 0xfe,\n  0xf8, 0xfe, 0xfe, 0xfe, 0x0b, 0xff, 0x1b, 0xff, 0x2b, 0xff, 0x31, 0xff,\n  0x3d, 0xff, 0x51, 0xff, 0x61, 0xff, 0x7b, 0xff, 0x96, 0xff, 0xb1, 0xff,\n  0xd0, 0xff, 0xef, 0xff, 0x0f, 0x00, 0x2f, 0x00, 0x4a, 0x00, 0x78, 0x00,\n  0xc6, 0x00, 0xfd, 0x00, 0x23, 0x01, 0x3d, 0x01, 0x4e, 0x01, 0x52, 0x01,\n  0x4f, 0x01, 0x47, 0x01, 0x3a, 0x01, 0x26, 0x01, 0x0f, 0x01, 0x0c, 0x01,\n  0x0b, 0x01, 0xf9, 0x00, 0xdd, 0x00, 0xbc, 0x00, 0x95, 0x00, 0x68, 0x00,\n  0x3b, 0x00, 0x0c, 0x00, 0xdd, 0xff, 0xb1, 0xff, 0x86, 0xff, 0x5f, 0xff,\n  0x37, 0xff, 0x17, 0xff, 0xfa, 0xfe, 0xe2, 0xfe, 0xce, 0xfe, 0xc2, 0xfe,\n  0xb7, 0xfe, 0xb2, 0xfe, 0xb7, 0xfe, 0xba, 0xfe, 0xc9, 0xfe, 0xd8, 0xfe,\n  0xed, 0xfe, 0x06, 0xff, 0x20, 0xff, 0x3f, 0xff, 0x58, 0xff, 0x70, 0xff,\n  0x87, 0xff, 0x94, 0xff, 0xa2, 0xff, 0xb6, 0xff, 0xca, 0xff, 0xe5, 0xff,\n  0x01, 0x00, 0x20, 0x00, 0x3f, 0x00, 0x5d, 0x00, 0x7a, 0x00, 0x9a, 0x00,\n  0xb4, 0x00, 0xcf, 0x00, 0xe4, 0x00, 0xf9, 0x00, 0x09, 0x01, 0x16, 0x01,\n  0x1e, 0x01, 0x23, 0x01, 0x25, 0x01, 0x1e, 0x01, 0x26, 0x01, 0x3b, 0x01,\n  0x40, 0x01, 0x3a, 0x01, 0x29, 0x01, 0x11, 0x01, 0xf2, 0x00, 0xce, 0x00,\n  0xa8, 0x00, 0x7e, 0x00, 0x55, 0x00, 0x26, 0x00, 0xfd, 0xff, 0xd0, 0xff,\n  0xb3, 0xff, 0xba, 0xff, 0xb4, 0xff, 0xa3, 0xff, 0x88, 0xff, 0x70, 0xff,\n  0x55, 0xff, 0x39, 0xff, 0x22, 0xff, 0x09, 0xff, 0xfa, 0xfe, 0xe9, 0xfe,\n  0xdd, 0xfe, 0xdb, 0xfe, 0xd7, 0xfe, 0xd9, 0xfe, 0xd4, 0xfe, 0xd2, 0xfe,\n  0xd9, 0xfe, 0xe6, 0xfe, 0xf6, 0xfe, 0x0c, 0xff, 0x27, 0xff, 0x43, 0xff,\n  0x67, 0xff, 0x8b, 0xff, 0xaf, 0xff, 0xd7, 0xff, 0xfd, 0xff, 0x25, 0x00,\n  0x4a, 0x00, 0x6e, 0x00, 0x90, 0x00, 0xac, 0x00, 0xcc, 0x00, 0xe5, 0x00,\n  0xf8, 0x00, 0x0a, 0x01, 0x17, 0x01, 0x20, 0x01, 0x3d, 0x01, 0x5a, 0x01,\n  0x66, 0x01, 0x64, 0x01, 0x52, 0x01, 0x2f, 0x01, 0x09, 0x01, 0xe4, 0x00,\n  0xb8, 0x00, 0x8c, 0x00, 0x5f, 0x00, 0x37, 0x00, 0x09, 0x00, 0xe4, 0xff,\n  0xbc, 0xff, 0x99, 0xff, 0x77, 0xff, 0x5a, 0xff, 0x41, 0xff, 0x29, 0xff,\n  0x19, 0xff, 0x0b, 0xff, 0x01, 0xff, 0xfc, 0xfe, 0xff, 0xfe, 0x00, 0xff,\n  0x09, 0xff, 0x15, 0xff, 0x23, 0xff, 0x31, 0xff, 0x3a, 0xff, 0x43, 0xff,\n  0x57, 0xff, 0x6a, 0xff, 0x80, 0xff, 0x9d, 0xff, 0xb6, 0xff, 0xd9, 0xff,\n  0xf1, 0xff, 0x20, 0x00, 0x6c, 0x00, 0xa9, 0x00, 0xd5, 0x00, 0xf2, 0x00,\n  0x0c, 0x01, 0x1a, 0x01, 0x21, 0x01, 0x23, 0x01, 0x1e, 0x01, 0x18, 0x01,\n  0x06, 0x01, 0xf8, 0x00, 0xe4, 0x00, 0xd1, 0x00, 0xd7, 0x00, 0xd1, 0x00,\n  0xc0, 0x00, 0xa8, 0x00, 0x87, 0x00, 0x67, 0x00, 0x40, 0x00, 0x1b, 0x00,\n  0xf4, 0xff, 0xcc, 0xff, 0xa6, 0xff, 0x84, 0xff, 0x63, 0xff, 0x44, 0xff,\n  0x29, 0xff, 0x13, 0xff, 0x00, 0xff, 0xf3, 0xfe, 0xeb, 0xfe, 0xe6, 0xfe,\n  0xe3, 0xfe, 0xe8, 0xfe, 0xf1, 0xfe, 0xfe, 0xfe, 0x0c, 0xff, 0x20, 0xff,\n  0x37, 0xff, 0x4f, 0xff, 0x6a, 0xff, 0x6e, 0xff, 0x70, 0xff, 0x77, 0xff,\n  0x86, 0xff, 0x99, 0xff, 0xb1, 0xff, 0xcb, 0xff, 0xe7, 0xff, 0x05, 0x00,\n  0x22, 0x00, 0x41, 0x00, 0x63, 0x00, 0x7d, 0x00, 0x9b, 0x00, 0xb5, 0x00,\n  0xd0, 0x00, 0xe3, 0x00, 0xf4, 0x00, 0x04, 0x01, 0x0d, 0x01, 0x16, 0x01,\n  0x18, 0x01, 0x18, 0x01, 0x11, 0x01, 0x1a, 0x01, 0x2e, 0x01, 0x2e, 0x01,\n  0x23, 0x01, 0x12, 0x01, 0xf7, 0x00, 0xd9, 0x00, 0xb5, 0x00, 0x8e, 0x00,\n  0x67, 0x00, 0x38, 0x00, 0x20, 0x00, 0x22, 0x00, 0x13, 0x00, 0xfd, 0xff,\n  0xd9, 0xff, 0xb7, 0xff, 0x91, 0xff, 0x6e, 0xff, 0x48, 0xff, 0x29, 0xff,\n  0x0b, 0xff, 0xf3, 0xfe, 0xdd, 0xfe, 0xcc, 0xfe, 0xc0, 0xfe, 0xb9, 0xfe,\n  0xb9, 0xfe, 0xbb, 0xfe, 0xc0, 0xfe, 0xc0, 0xfe, 0xc6, 0xfe, 0xd2, 0xfe,\n  0xe6, 0xfe, 0xfc, 0xfe, 0x1a, 0xff, 0x3a, 0xff, 0x5d, 0xff, 0x84, 0xff,\n  0xac, 0xff, 0xd7, 0xff, 0xff, 0xff, 0x26, 0x00, 0x4d, 0x00, 0x72, 0x00,\n  0x99, 0x00, 0xba, 0x00, 0xd7, 0x00, 0xf2, 0x00, 0x0a, 0x01, 0x1a, 0x01,\n  0x28, 0x01, 0x30, 0x01, 0x3c, 0x01, 0x59, 0x01, 0x5b, 0x01, 0x52, 0x01,\n  0x40, 0x01, 0x27, 0x01, 0x08, 0x01, 0xe6, 0x00, 0xc3, 0x00, 0x9d, 0x00,\n  0x75, 0x00, 0x4a, 0x00, 0x22, 0x00, 0xfd, 0xff, 0xd7, 0xff, 0xb4, 0xff,\n  0x8f, 0xff, 0x72, 0xff, 0x56, 0xff, 0x3d, 0xff, 0x2b, 0xff, 0x1a, 0xff,\n  0x10, 0xff, 0x07, 0xff, 0x07, 0xff, 0x03, 0xff, 0x0a, 0xff, 0x10, 0xff,\n  0x1d, 0xff, 0x2d, 0xff, 0x34, 0xff, 0x3d, 0xff, 0x48, 0xff, 0x5c, 0xff,\n  0x6e, 0xff, 0x86, 0xff, 0xa1, 0xff, 0xcc, 0xff, 0x17, 0x00, 0x51, 0x00,\n  0x7b, 0x00, 0xa2, 0x00, 0xb8, 0x00, 0xcf, 0x00, 0xdd, 0x00, 0xe6, 0x00,\n  0xec, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xe0, 0x00, 0xd7, 0x00, 0xca, 0x00,\n  0xbc, 0x00, 0xa9, 0x00, 0xa2, 0x00, 0xad, 0x00, 0xa6, 0x00, 0x9a, 0x00,\n  0x83, 0x00, 0x6c, 0x00, 0x4b, 0x00, 0x2e, 0x00, 0x10, 0x00, 0xee, 0xff,\n  0xd0, 0xff, 0xb1, 0xff, 0x92, 0xff, 0x79, 0xff, 0x61, 0xff, 0x4a, 0xff,\n  0x38, 0xff, 0x2b, 0xff, 0x20, 0xff, 0x17, 0xff, 0x14, 0xff, 0x15, 0xff,\n  0x19, 0xff, 0x20, 0xff, 0x2b, 0xff, 0x3a, 0xff, 0x4a, 0xff, 0x4e, 0xff,\n  0x55, 0xff, 0x5e, 0xff, 0x60, 0xff, 0x69, 0xff, 0x75, 0xff, 0x86, 0xff,\n  0x9d, 0xff, 0xb4, 0xff, 0xd1, 0xff, 0xf0, 0xff, 0x0c, 0x00, 0x29, 0x00,\n  0x49, 0x00, 0x65, 0x00, 0x84, 0x00, 0x9f, 0x00, 0xb8, 0x00, 0xcf, 0x00,\n  0xe0, 0x00, 0xef, 0x00, 0xfb, 0x00, 0x03, 0x01, 0x0a, 0x01, 0x08, 0x01,\n  0x06, 0x01, 0x03, 0x01, 0x12, 0x01, 0x1e, 0x01, 0x18, 0x01, 0x0c, 0x01,\n  0xf9, 0x00, 0xd9, 0x00, 0xbe, 0x00, 0x9a, 0x00, 0x83, 0x00, 0x8b, 0x00,\n  0x77, 0x00, 0x5d, 0x00, 0x3b, 0x00, 0x11, 0x00, 0xe8, 0xff, 0xbd, 0xff,\n  0x90, 0xff, 0x67, 0xff, 0x3f, 0xff, 0x1a, 0xff, 0xfc, 0xfe, 0xdf, 0xfe,\n  0xc9, 0xfe, 0xb7, 0xfe, 0xac, 0xfe, 0xa6, 0xfe, 0xa5, 0xfe, 0xa9, 0xfe,\n  0xb3, 0xfe, 0xb7, 0xfe, 0xbe, 0xfe, 0xcd, 0xfe, 0xdf, 0xfe, 0xfa, 0xfe,\n  0x15, 0xff, 0x38, 0xff, 0x5d, 0xff, 0x84, 0xff, 0xac, 0xff, 0xd9, 0xff,\n  0x00, 0x00, 0x2c, 0x00, 0x54, 0x00, 0x7a, 0x00, 0xa0, 0x00, 0xbe, 0x00,\n  0xe0, 0x00, 0xf8, 0x00, 0x11, 0x01, 0x23, 0x01, 0x30, 0x01, 0x39, 0x01,\n  0x2c, 0x01, 0x31, 0x01, 0x3b, 0x01, 0x3a, 0x01, 0x32, 0x01, 0x1e, 0x01,\n  0x0a, 0x01, 0xec, 0x00, 0xcc, 0x00, 0xab, 0x00, 0x85, 0x00, 0x5f, 0x00,\n  0x3b, 0x00, 0x11, 0x00, 0xef, 0xff, 0xca, 0xff, 0xaa, 0xff, 0x8b, 0xff,\n  0x6e, 0xff, 0x54, 0xff, 0x3d, 0xff, 0x2b, 0xff, 0x1c, 0xff, 0x3b, 0xff,\n  0x36, 0xff, 0x33, 0xff, 0x34, 0xff, 0x38, 0xff, 0x40, 0xff, 0x49, 0xff,\n  0x54, 0xff, 0x5b, 0xff, 0x60, 0xff, 0x70, 0xff, 0x79, 0xff, 0x9c, 0xff,\n  0xd5, 0xff, 0x00, 0x00, 0x20, 0x00, 0x3b, 0x00, 0x52, 0x00, 0x65, 0x00,\n  0x73, 0x00, 0x80, 0x00, 0x89, 0x00, 0x8f, 0x00, 0x93, 0x00, 0x97, 0x00,\n  0x95, 0x00, 0x92, 0x00, 0x8d, 0x00, 0x86, 0x00, 0x80, 0x00, 0x73, 0x00,\n  0x6a, 0x00, 0x72, 0x00, 0x79, 0x00, 0x73, 0x00, 0x6e, 0x00, 0x5f, 0x00,\n  0x4e, 0x00, 0x3b, 0x00, 0x26, 0x00, 0x11, 0x00, 0xfb, 0xff, 0xe6, 0xff,\n  0xce, 0xff, 0xbb, 0xff, 0xa8, 0xff, 0x98, 0xff, 0x87, 0xff, 0x7a, 0xff,\n  0x71, 0xff, 0x68, 0xff, 0x64, 0xff, 0x5e, 0xff, 0x5e, 0xff, 0x64, 0xff,\n  0x64, 0xff, 0x60, 0xff, 0x5e, 0xff, 0x61, 0xff, 0x65, 0xff, 0x70, 0xff,\n  0x75, 0xff, 0x7b, 0xff, 0x83, 0xff, 0x91, 0xff, 0xa3, 0xff, 0xb4, 0xff,\n  0xca, 0xff, 0xe2, 0xff, 0xfa, 0xff, 0x11, 0x00, 0x2b, 0x00, 0x41, 0x00,\n  0x5b, 0x00, 0x71, 0x00, 0x84, 0x00, 0x98, 0x00, 0xa7, 0x00, 0xb7, 0x00,\n  0xbf, 0x00, 0xcc, 0x00, 0xcd, 0x00, 0xd1, 0x00, 0xd0, 0x00, 0xca, 0x00,\n  0xd0, 0x00, 0xd9, 0x00, 0xe0, 0x00, 0xd8, 0x00, 0xcc, 0x00, 0xb7, 0x00,\n  0xb0, 0x00, 0xb8, 0x00, 0xad, 0x00, 0x9b, 0x00, 0x7f, 0x00, 0x5b, 0x00,\n  0x38, 0x00, 0x10, 0x00, 0xeb, 0xff, 0xc2, 0xff, 0x9c, 0xff, 0x77, 0xff,\n  0x56, 0xff, 0x36, 0xff, 0x1e, 0xff, 0x08, 0xff, 0xf4, 0xfe, 0xe6, 0xfe,\n  0xde, 0xfe, 0xd8, 0xfe, 0xd9, 0xfe, 0xdf, 0xfe, 0xe7, 0xfe, 0xf2, 0xfe,\n  0xfc, 0xfe, 0x04, 0xff, 0x17, 0xff, 0x2b, 0xff, 0x43, 0xff, 0x5f, 0xff,\n  0x7e, 0xff, 0x9e, 0xff, 0xbf, 0xff, 0xe3, 0xff, 0x06, 0x00, 0x28, 0x00,\n  0x4a, 0x00, 0x6a, 0x00, 0x88, 0x00, 0xa5, 0x00, 0xbb, 0x00, 0xd3, 0x00,\n  0xe4, 0x00, 0xf3, 0x00, 0xf2, 0x00, 0xec, 0x00, 0xe7, 0x00, 0xe2, 0x00,\n  0xeb, 0x00, 0xf5, 0x00, 0xf2, 0x00, 0xe9, 0x00, 0xda, 0x00, 0xc6, 0x00,\n  0xb2, 0x00, 0x98, 0x00, 0x7c, 0x00, 0x5d, 0x00, 0x41, 0x00, 0x23, 0x00,\n  0x04, 0x00, 0xe9, 0xff, 0xcb, 0xff, 0xb2, 0xff, 0x9a, 0xff, 0x80, 0xff,\n  0x6e, 0xff, 0x5d, 0xff, 0x50, 0xff, 0x43, 0xff, 0x3d, 0xff, 0x38, 0xff,\n  0x36, 0xff, 0x38, 0xff, 0x3f, 0xff, 0x45, 0xff, 0x4e, 0xff, 0x5b, 0xff,\n  0x5d, 0xff, 0x75, 0xff, 0xa3, 0xff, 0xc8, 0xff, 0xe4, 0xff, 0xfc, 0xff,\n  0x0f, 0x00, 0x20, 0x00, 0x30, 0x00, 0x3d, 0x00, 0x48, 0x00, 0x53, 0x00,\n  0x5d, 0x00, 0x63, 0x00, 0x6a, 0x00, 0x6b, 0x00, 0x70, 0x00, 0x6f, 0x00,\n  0x6d, 0x00, 0x6b, 0x00, 0x6a, 0x00, 0x64, 0x00, 0x5d, 0x00, 0x5f, 0x00,\n  0x6a, 0x00, 0x73, 0x00, 0x70, 0x00, 0x6a, 0x00, 0x62, 0x00, 0x52, 0x00,\n  0x41, 0x00, 0x30, 0x00, 0x1e, 0x00, 0x09, 0x00, 0xf8, 0xff, 0xe5, 0xff,\n  0xd3, 0xff, 0xc1, 0xff, 0xb2, 0xff, 0xa5, 0xff, 0x96, 0xff, 0x8d, 0xff,\n  0x80, 0xff, 0x7c, 0xff, 0x76, 0xff, 0x69, 0xff, 0x60, 0xff, 0x59, 0xff,\n  0x56, 0xff, 0x57, 0xff, 0x5d, 0xff, 0x66, 0xff, 0x71, 0xff, 0x76, 0xff,\n  0x7e, 0xff, 0x89, 0xff, 0x98, 0xff, 0xac, 0xff, 0xbf, 0xff, 0xd3, 0xff,\n  0xed, 0xff, 0x01, 0x00, 0x19, 0x00, 0x31, 0x00, 0x48, 0x00, 0x5f, 0x00,\n  0x73, 0x00, 0x85, 0x00, 0x97, 0x00, 0xa7, 0x00, 0xb2, 0x00, 0xbb, 0x00,\n  0xbf, 0x00, 0xc5, 0x00, 0xc4, 0x00, 0xc2, 0x00, 0xbd, 0x00, 0xc6, 0x00,\n  0xd3, 0x00, 0xcd, 0x00, 0xd7, 0x00, 0xe6, 0x00, 0xe8, 0x00, 0xd8, 0x00,\n  0xc0, 0x00, 0xa5, 0x00, 0x82, 0x00, 0x5b, 0x00, 0x35, 0x00, 0x0b, 0x00,\n  0xe4, 0xff, 0xbb, 0xff, 0x95, 0xff, 0x71, 0xff, 0x4e, 0xff, 0x30, 0xff,\n  0x17, 0xff, 0x02, 0xff, 0xf0, 0xfe, 0xe4, 0xfe, 0xdd, 0xfe, 0xd9, 0xfe,\n  0xd9, 0xfe, 0xdf, 0xfe, 0xeb, 0xfe, 0xf9, 0xfe, 0x04, 0xff, 0x10, 0xff,\n  0x21, 0xff, 0x34, 0xff, 0x4e, 0xff, 0x6a, 0xff, 0x88, 0xff, 0xa8, 0xff,\n  0xc8, 0xff, 0xeb, 0xff, 0x0b, 0x00, 0x2e, 0x00, 0x4e, 0x00, 0x6e, 0x00,\n  0x8a, 0x00, 0xa5, 0x00, 0xbb, 0x00, 0xd0, 0x00, 0xd7, 0x00, 0xd8, 0x00,\n  0xdc, 0x00, 0xda, 0x00, 0xd9, 0x00, 0xd5, 0x00, 0xd7, 0x00, 0xe4, 0x00,\n  0xe8, 0x00, 0xe4, 0x00, 0xd8, 0x00, 0xca, 0x00, 0xb5, 0x00, 0xa2, 0x00,\n  0x87, 0x00, 0x6c, 0x00, 0x4e, 0x00, 0x31, 0x00, 0x15, 0x00, 0xfa, 0xff,\n  0xdd, 0xff, 0xc3, 0xff, 0xab, 0xff, 0x91, 0xff, 0x7c, 0xff, 0x6a, 0xff,\n  0x5b, 0xff, 0x50, 0xff, 0x43, 0xff, 0x3d, 0xff, 0x3b, 0xff, 0x39, 0xff,\n  0x3d, 0xff, 0x43, 0xff, 0x4b, 0xff, 0x63, 0xff, 0x88, 0xff, 0xa5, 0xff,\n  0xb9, 0xff, 0xca, 0xff, 0xda, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0x00, 0x00,\n  0x0a, 0x00, 0x13, 0x00, 0x20, 0x00, 0x2a, 0x00, 0x31, 0x00, 0x3a, 0x00,\n  0x45, 0x00, 0x49, 0x00, 0x4e, 0x00, 0x52, 0x00, 0x56, 0x00, 0x5a, 0x00,\n  0x5a, 0x00, 0x58, 0x00, 0x58, 0x00, 0x57, 0x00, 0x62, 0x00, 0x72, 0x00,\n  0x77, 0x00, 0x77, 0x00, 0x71, 0x00, 0x6a, 0x00, 0x5b, 0x00, 0x4e, 0x00,\n  0x40, 0x00, 0x2e, 0x00, 0x1c, 0x00, 0x0b, 0x00, 0xfa, 0xff, 0xe7, 0xff,\n  0xd5, 0xff, 0xc8, 0xff, 0xb7, 0xff, 0xa8, 0xff, 0x9e, 0xff, 0x89, 0xff,\n  0x77, 0xff, 0x68, 0xff, 0x5f, 0xff, 0x58, 0xff, 0x54, 0xff, 0x54, 0xff,\n  0x59, 0xff, 0x62, 0xff, 0x6e, 0xff, 0x77, 0xff, 0x7c, 0xff, 0x87, 0xff,\n  0x95, 0xff, 0xa3, 0xff, 0xb4, 0xff, 0xca, 0xff, 0xe0, 0xff, 0xf4, 0xff,\n  0x0b, 0x00, 0x23, 0x00, 0x38, 0x00, 0x4d, 0x00, 0x60, 0x00, 0x77, 0x00,\n  0x86, 0x00, 0x95, 0x00, 0xa0, 0x00, 0xab, 0x00, 0xb3, 0x00, 0xb5, 0x00,\n  0xb9, 0x00, 0xb8, 0x00, 0xb5, 0x00, 0xb2, 0x00, 0xd1, 0x00, 0xf2, 0x00,\n  0x00, 0x01, 0xfe, 0x00, 0xf0, 0x00, 0xdd, 0x00, 0xbf, 0x00, 0xa1, 0x00,\n  0x7a, 0x00, 0x54, 0x00, 0x2b, 0x00, 0x03, 0x00, 0xdc, 0xff, 0xb4, 0xff,\n  0x8f, 0xff, 0x6b, 0xff, 0x4c, 0xff, 0x2f, 0xff, 0x17, 0xff, 0x03, 0xff,\n  0xf4, 0xfe, 0xe8, 0xfe, 0xe1, 0xfe, 0xdf, 0xfe, 0xe1, 0xfe, 0xe8, 0xfe,\n  0xf2, 0xfe, 0x03, 0xff, 0x13, 0xff, 0x20, 0xff, 0x30, 0xff, 0x45, 0xff,\n  0x5b, 0xff, 0x75, 0xff, 0x92, 0xff, 0xb2, 0xff, 0xd2, 0xff, 0xf1, 0xff,\n  0x11, 0x00, 0x31, 0x00, 0x50, 0x00, 0x6d, 0x00, 0x89, 0x00, 0xa0, 0x00,\n  0xab, 0x00, 0xb5, 0x00, 0xbd, 0x00, 0xc2, 0x00, 0xc8, 0x00, 0xca, 0x00,\n  0xcc, 0x00, 0xca, 0x00, 0xc7, 0x00, 0xd0, 0x00, 0xdb, 0x00, 0xdf, 0x00,\n  0xd7, 0x00, 0xca, 0x00, 0xbb, 0x00, 0xa8, 0x00, 0x93, 0x00, 0x77, 0x00,\n  0x5d, 0x00, 0x42, 0x00, 0x26, 0x00, 0x08, 0x00, 0xed, 0xff, 0xd3, 0xff,\n  0xb8, 0xff, 0xa1, 0xff, 0x89, 0xff, 0x76, 0xff, 0x65, 0xff, 0x59, 0xff,\n  0x4a, 0xff, 0x45, 0xff, 0x3b, 0xff, 0x3d, 0xff, 0x3b, 0xff, 0x50, 0xff,\n  0x75, 0xff, 0x90, 0xff, 0xa3, 0xff, 0xa9, 0xff, 0xb0, 0xff, 0xb8, 0xff,\n  0xbe, 0xff, 0xc8, 0xff, 0xd1, 0xff, 0xd9, 0xff, 0xe3, 0xff, 0xeb, 0xff,\n  0xf8, 0xff, 0x00, 0x00, 0x0d, 0x00, 0x16, 0x00, 0x20, 0x00, 0x2b, 0x00,\n  0x33, 0x00, 0x3d, 0x00, 0x45, 0x00, 0x4b, 0x00, 0x52, 0x00, 0x54, 0x00,\n  0x5a, 0x00, 0x59, 0x00, 0x60, 0x00, 0x72, 0x00, 0x80, 0x00, 0x85, 0x00,\n  0x86, 0x00, 0x83, 0x00, 0x7a, 0x00, 0x6e, 0x00, 0x60, 0x00, 0x52, 0x00,\n  0x40, 0x00, 0x2f, 0x00, 0x1a, 0x00, 0x09, 0x00, 0xf8, 0xff, 0xe6, 0xff,\n  0xd5, 0xff, 0xba, 0xff, 0x9f, 0xff, 0x8b, 0xff, 0x7a, 0xff, 0x6b, 0xff,\n  0x61, 0xff, 0x5b, 0xff, 0x59, 0xff, 0x57, 0xff, 0x5b, 0xff, 0x60, 0xff,\n  0x6b, 0xff, 0x78, 0xff, 0x7d, 0xff, 0x86, 0xff, 0x90, 0xff, 0x9e, 0xff,\n  0xae, 0xff, 0xc1, 0xff, 0xd3, 0xff, 0xea, 0xff, 0xff, 0xff, 0x13, 0x00,\n  0x26, 0x00, 0x3b, 0x00, 0x52, 0x00, 0x61, 0x00, 0x73, 0x00, 0x82, 0x00,\n  0x8f, 0x00, 0x9a, 0x00, 0xa5, 0x00, 0xa9, 0x00, 0xac, 0x00, 0xad, 0x00,\n  0xb9, 0x00, 0xd5, 0x00, 0xec, 0x00, 0xff, 0x00, 0x02, 0x01, 0xfa, 0x00,\n  0xe9, 0x00, 0xd2, 0x00, 0xb4, 0x00, 0x92, 0x00, 0x6f, 0x00, 0x48, 0x00,\n  0x22, 0x00, 0xfb, 0xff, 0xd5, 0xff, 0xb0, 0xff, 0x8d, 0xff, 0x6c, 0xff,\n  0x4e, 0xff, 0x34, 0xff, 0x1c, 0xff, 0x0b, 0xff, 0xfd, 0xfe, 0xf3, 0xfe,\n  0xee, 0xfe, 0xec, 0xfe, 0xee, 0xfe, 0xf8, 0xfe, 0x01, 0xff, 0x10, 0xff,\n  0x24, 0xff, 0x34, 0xff, 0x45, 0xff, 0x56, 0xff, 0x6b, 0xff, 0x83, 0xff,\n  0x9d, 0xff, 0xbb, 0xff, 0xda, 0xff, 0xf7, 0xff, 0x13, 0x00, 0x33, 0x00,\n  0x4e, 0x00, 0x68, 0x00, 0x77, 0x00, 0x84, 0x00, 0x91, 0x00, 0x9c, 0x00,\n  0xa7, 0x00, 0xb0, 0x00, 0xb7, 0x00, 0xbb, 0x00, 0xc1, 0x00, 0xc0, 0x00,\n  0xbf, 0x00, 0xbf, 0x00, 0xce, 0x00, 0xd5, 0x00, 0xd3, 0x00, 0xcc, 0x00,\n  0xbf, 0x00, 0xb0, 0x00, 0x9a, 0x00, 0x84, 0x00, 0x6a, 0x00, 0x50, 0x00,\n  0x32, 0x00, 0x18, 0x00, 0xfd, 0xff, 0xe2, 0xff, 0xc8, 0xff, 0xad, 0xff,\n  0x98, 0xff, 0x83, 0xff, 0x71, 0xff, 0x63, 0xff, 0x55, 0xff, 0x4a, 0xff,\n  0x41, 0xff, 0x4e, 0xff, 0x6a, 0xff, 0x7d, 0xff, 0x8d, 0xff, 0x95, 0xff,\n  0xa0, 0xff, 0xa2, 0xff, 0xa0, 0xff, 0xa2, 0xff, 0xa3, 0xff, 0xa9, 0xff,\n  0xae, 0xff, 0xb5, 0xff, 0xbd, 0xff, 0xca, 0xff, 0xd3, 0xff, 0xdd, 0xff,\n  0xed, 0xff, 0xf8, 0xff, 0x05, 0x00, 0x13, 0x00, 0x1e, 0x00, 0x2b, 0x00,\n  0x36, 0x00, 0x42, 0x00, 0x4c, 0x00, 0x55, 0x00, 0x5a, 0x00, 0x62, 0x00,\n  0x66, 0x00, 0x73, 0x00, 0x88, 0x00, 0x92, 0x00, 0x98, 0x00, 0x98, 0x00,\n  0x93, 0x00, 0x8b, 0x00, 0x7f, 0x00, 0x71, 0x00, 0x60, 0x00, 0x50, 0x00,\n  0x3b, 0x00, 0x27, 0x00, 0x13, 0x00, 0xf6, 0xff, 0xd8, 0xff, 0xbe, 0xff,\n  0xa5, 0xff, 0x94, 0xff, 0x80, 0xff, 0x73, 0xff, 0x68, 0xff, 0x61, 0xff,\n  0x5d, 0xff, 0x5b, 0xff, 0x5d, 0xff, 0x64, 0xff, 0x69, 0xff, 0x73, 0xff,\n  0x80, 0xff, 0x83, 0xff, 0x8d, 0xff, 0x98, 0xff, 0xa5, 0xff, 0xb6, 0xff,\n  0xc6, 0xff, 0xd9, 0xff, 0xeb, 0xff, 0x00, 0x00, 0x13, 0x00, 0x2a, 0x00,\n  0x3a, 0x00, 0x50, 0x00, 0x62, 0x00, 0x6d, 0x00, 0x7e, 0x00, 0x88, 0x00,\n  0x96, 0x00, 0x9a, 0x00, 0xad, 0x00, 0xcd, 0x00, 0xdf, 0x00, 0xe5, 0x00,\n  0xe4, 0x00, 0xed, 0x00, 0xf0, 0x00, 0xe6, 0x00, 0xd5, 0x00, 0xbf, 0x00,\n  0xa3, 0x00, 0x84, 0x00, 0x60, 0x00, 0x3f, 0x00, 0x1b, 0x00, 0xf7, 0xff,\n  0xd5, 0xff, 0xb0, 0xff, 0x92, 0xff, 0x73, 0xff, 0x57, 0xff, 0x3f, 0xff,\n  0x2b, 0xff, 0x1a, 0xff, 0x0d, 0xff, 0x04, 0xff, 0x01, 0xff, 0xff, 0xfe,\n  0x02, 0xff, 0x09, 0xff, 0x16, 0xff, 0x23, 0xff, 0x34, 0xff, 0x49, 0xff,\n  0x59, 0xff, 0x68, 0xff, 0x7d, 0xff, 0x92, 0xff, 0xaa, 0xff, 0xc2, 0xff,\n  0xde, 0xff, 0xf8, 0xff, 0x15, 0x00, 0x2d, 0x00, 0x3b, 0x00, 0x4a, 0x00,\n  0x58, 0x00, 0x6b, 0x00, 0x79, 0x00, 0x88, 0x00, 0x94, 0x00, 0x9f, 0x00,\n  0xab, 0x00, 0xb0, 0x00, 0xb7, 0x00, 0xb9, 0x00, 0xbb, 0x00, 0xb9, 0x00,\n  0xbd, 0x00, 0xca, 0x00, 0xcc, 0x00, 0xca, 0x00, 0xc0, 0x00, 0xb0, 0x00,\n  0xa1, 0x00, 0x8b, 0x00, 0x78, 0x00, 0x5b, 0x00, 0x40, 0x00, 0x25, 0x00,\n  0x0a, 0x00, 0xf0, 0xff, 0xd5, 0xff, 0xbe, 0xff, 0xa3, 0xff, 0x92, 0xff,\n  0x7b, 0xff, 0x6c, 0xff, 0x5d, 0xff, 0x61, 0xff, 0x73, 0xff, 0x7e, 0xff,\n  0x85, 0xff, 0x87, 0xff, 0x8b, 0xff, 0x89, 0xff, 0x8d, 0xff, 0x8f, 0xff,\n  0x8b, 0xff, 0x86, 0xff, 0x86, 0xff, 0x88, 0xff, 0x8d, 0xff, 0x93, 0xff,\n  0x9b, 0xff, 0xa8, 0xff, 0xb2, 0xff, 0xc1, 0xff, 0xd1, 0xff, 0xe0, 0xff,\n  0xf2, 0xff, 0xff, 0xff, 0x11, 0x00, 0x20, 0x00, 0x2f, 0x00, 0x3d, 0x00,\n  0x4c, 0x00, 0x57, 0x00, 0x64, 0x00, 0x6c, 0x00, 0x72, 0x00, 0x7b, 0x00,\n  0x8d, 0x00, 0xa2, 0x00, 0xa9, 0x00, 0xac, 0x00, 0xaa, 0x00, 0xa5, 0x00,\n  0x9a, 0x00, 0x8d, 0x00, 0x7b, 0x00, 0x6a, 0x00, 0x55, 0x00, 0x36, 0x00,\n  0x17, 0x00, 0xfd, 0xff, 0xe2, 0xff, 0xc8, 0xff, 0xb2, 0xff, 0x9d, 0xff,\n  0x8b, 0xff, 0x7d, 0xff, 0x71, 0xff, 0x68, 0xff, 0x63, 0xff, 0x60, 0xff,\n  0x61, 0xff, 0x64, 0xff, 0x6b, 0xff, 0x71, 0xff, 0x7e, 0xff, 0x86, 0xff,\n  0x89, 0xff, 0x93, 0xff, 0x9f, 0xff, 0xab, 0xff, 0xbb, 0xff, 0xcb, 0xff,\n  0xdb, 0xff, 0xf2, 0xff, 0x02, 0x00, 0x15, 0x00, 0x29, 0x00, 0x3a, 0x00,\n  0x4e, 0x00, 0x5d, 0x00, 0x6d, 0x00, 0x77, 0x00, 0x92, 0x00, 0xb8, 0x00,\n  0xca, 0x00, 0xd9, 0x00, 0xdd, 0x00, 0xdb, 0x00, 0xd5, 0x00, 0xce, 0x00,\n  0xd1, 0x00, 0xcc, 0x00, 0xbb, 0x00, 0xaa, 0x00, 0x8f, 0x00, 0x77, 0x00,\n  0x56, 0x00, 0x36, 0x00, 0x16, 0x00, 0xf6, 0xff, 0xd5, 0xff, 0xb7, 0xff,\n  0x98, 0xff, 0x7e, 0xff, 0x65, 0xff, 0x50, 0xff, 0x3e, 0xff, 0x2d, 0xff,\n  0x24, 0xff, 0x1a, 0xff, 0x16, 0xff, 0x18, 0xff, 0x17, 0xff, 0x21, 0xff,\n  0x2b, 0xff, 0x38, 0xff, 0x48, 0xff, 0x59, 0xff, 0x6f, 0xff, 0x7c, 0xff,\n  0x8b, 0xff, 0x9e, 0xff, 0xb2, 0xff, 0xc8, 0xff, 0xe0, 0xff, 0xf6, 0xff,\n  0x01, 0x00, 0x10, 0x00, 0x21, 0x00, 0x30, 0x00, 0x43, 0x00, 0x54, 0x00,\n  0x64, 0x00, 0x75, 0x00, 0x83, 0x00, 0x8f, 0x00, 0x9a, 0x00, 0xa5, 0x00,\n  0xac, 0x00, 0xb0, 0x00, 0xb3, 0x00, 0xb4, 0x00, 0xb0, 0x00, 0xbb, 0x00,\n  0xc4, 0x00, 0xc5, 0x00, 0xbf, 0x00, 0xb4, 0x00, 0xa7, 0x00, 0x92, 0x00,\n  0x80, 0x00, 0x65, 0x00, 0x4a, 0x00, 0x32, 0x00, 0x17, 0x00, 0xfe, 0xff,\n  0xe3, 0xff, 0xcc, 0xff, 0xb2, 0xff, 0x9e, 0xff, 0x89, 0xff, 0x86, 0xff,\n  0x92, 0xff, 0x93, 0xff, 0x90, 0xff, 0x8b, 0xff, 0x88, 0xff, 0x82, 0xff,\n  0x7c, 0xff, 0x7a, 0xff, 0x76, 0xff, 0x77, 0xff, 0x75, 0xff, 0x6f, 0xff,\n  0x6c, 0xff, 0x6b, 0xff, 0x71, 0xff, 0x77, 0xff, 0x82, 0xff, 0x8d, 0xff,\n  0x9b, 0xff, 0xab, 0xff, 0xbd, 0xff, 0xd0, 0xff, 0xe0, 0xff, 0xf5, 0xff,\n  0x08, 0x00, 0x1a, 0x00, 0x2d, 0x00, 0x3f, 0x00, 0x4e, 0x00, 0x5f, 0x00,\n  0x6a, 0x00, 0x77, 0x00, 0x80, 0x00, 0x89, 0x00, 0x94, 0x00, 0xa8, 0x00,\n  0xb6, 0x00, 0xbb, 0x00, 0xbd, 0x00, 0xb9, 0x00, 0xb0, 0x00, 0xa3, 0x00,\n  0x91, 0x00, 0x75, 0x00, 0x58, 0x00, 0x3d, 0x00, 0x20, 0x00, 0x06, 0x00,\n  0xed, 0xff, 0xd5, 0xff, 0xc0, 0xff, 0xaa, 0xff, 0x9a, 0xff, 0x89, 0xff,\n  0x7e, 0xff, 0x75, 0xff, 0x6d, 0xff, 0x68, 0xff, 0x68, 0xff, 0x69, 0xff,\n  0x6a, 0xff, 0x73, 0xff, 0x7a, 0xff, 0x9f, 0xff, 0xa2, 0xff, 0xa7, 0xff,\n  0xae, 0xff, 0xb7, 0xff, 0xc3, 0xff, 0xcd, 0xff, 0xdb, 0xff, 0xe8, 0xff,\n  0xf6, 0xff, 0x02, 0x00, 0x12, 0x00, 0x1f, 0x00, 0x30, 0x00, 0x3a, 0x00,\n  0x55, 0x00, 0x75, 0x00, 0x88, 0x00, 0x97, 0x00, 0xa0, 0x00, 0xa3, 0x00,\n  0xa1, 0x00, 0xa0, 0x00, 0x95, 0x00, 0x8e, 0x00, 0x89, 0x00, 0x88, 0x00,\n  0x81, 0x00, 0x74, 0x00, 0x64, 0x00, 0x53, 0x00, 0x3c, 0x00, 0x27, 0x00,\n  0x11, 0x00, 0xfa, 0xff, 0xe5, 0xff, 0xcf, 0xff, 0xba, 0xff, 0xa7, 0xff,\n  0x96, 0xff, 0x87, 0xff, 0x7a, 0xff, 0x6f, 0xff, 0x66, 0xff, 0x61, 0xff,\n  0x5d, 0xff, 0x5d, 0xff, 0x60, 0xff, 0x63, 0xff, 0x6c, 0xff, 0x74, 0xff,\n  0x7f, 0xff, 0x8b, 0xff, 0x9b, 0xff, 0xa6, 0xff, 0xb1, 0xff, 0xbc, 0xff,\n  0xca, 0xff, 0xd6, 0xff, 0xde, 0xff, 0xe7, 0xff, 0xf2, 0xff, 0xfd, 0xff,\n  0x0a, 0x00, 0x16, 0x00, 0x27, 0x00, 0x34, 0x00, 0x43, 0x00, 0x4f, 0x00,\n  0x5c, 0x00, 0x68, 0x00, 0x72, 0x00, 0x7a, 0x00, 0x81, 0x00, 0x87, 0x00,\n  0x87, 0x00, 0x8c, 0x00, 0x8a, 0x00, 0x8a, 0x00, 0x94, 0x00, 0x96, 0x00,\n  0x94, 0x00, 0x8e, 0x00, 0x84, 0x00, 0x77, 0x00, 0x68, 0x00, 0x56, 0x00,\n  0x44, 0x00, 0x30, 0x00, 0x1a, 0x00, 0x08, 0x00, 0xf4, 0xff, 0xe0, 0xff,\n  0xcc, 0xff, 0xc8, 0xff, 0xcd, 0xff, 0xc6, 0xff, 0xc1, 0xff, 0xb7, 0xff,\n  0xae, 0xff, 0xa5, 0xff, 0x9c, 0xff, 0x93, 0xff, 0x8c, 0xff, 0x87, 0xff,\n  0x83, 0xff, 0x82, 0xff, 0x80, 0xff, 0x7d, 0xff, 0x7b, 0xff, 0x7c, 0xff,\n  0x80, 0xff, 0x85, 0xff, 0x8e, 0xff, 0x98, 0xff, 0xa3, 0xff, 0xb2, 0xff,\n  0xc1, 0xff, 0xd1, 0xff, 0xe2, 0xff, 0xf4, 0xff, 0x03, 0x00, 0x14, 0x00,\n  0x24, 0x00, 0x35, 0x00, 0x43, 0x00, 0x50, 0x00, 0x5f, 0x00, 0x66, 0x00,\n  0x70, 0x00, 0x78, 0x00, 0x7d, 0x00, 0x87, 0x00, 0x96, 0x00, 0x9d, 0x00,\n  0x9f, 0x00, 0x9c, 0x00, 0x94, 0x00, 0x84, 0x00, 0x71, 0x00, 0x5d, 0x00,\n  0x49, 0x00, 0x33, 0x00, 0x21, 0x00, 0x0c, 0x00, 0xfa, 0xff, 0xe7, 0xff,\n  0xd7, 0xff, 0xc7, 0xff, 0xb8, 0xff, 0xad, 0xff, 0xa2, 0xff, 0x99, 0xff,\n  0x93, 0xff, 0x8f, 0xff, 0x8c, 0xff, 0x8b, 0xff, 0x8c, 0xff, 0x91, 0xff,\n  0x94, 0xff, 0x9c, 0xff, 0xa1, 0xff, 0xa6, 0xff, 0xa9, 0xff, 0xb1, 0xff,\n  0xba, 0xff, 0xc4, 0xff, 0xd1, 0xff, 0xdc, 0xff, 0xeb, 0xff, 0xf8, 0xff,\n  0x05, 0x00, 0x13, 0x00, 0x2e, 0x00, 0x4f, 0x00, 0x65, 0x00, 0x77, 0x00,\n  0x83, 0x00, 0x8a, 0x00, 0x8d, 0x00, 0x8e, 0x00, 0x8c, 0x00, 0x87, 0x00,\n  0x81, 0x00, 0x76, 0x00, 0x6e, 0x00, 0x6d, 0x00, 0x69, 0x00, 0x62, 0x00,\n  0x55, 0x00, 0x46, 0x00, 0x36, 0x00, 0x25, 0x00, 0x12, 0x00, 0xff, 0xff,\n  0xed, 0xff, 0xdb, 0xff, 0xc8, 0xff, 0xb8, 0xff, 0xa9, 0xff, 0x9b, 0xff,\n  0x8f, 0xff, 0x86, 0xff, 0x7d, 0xff, 0x79, 0xff, 0x76, 0xff, 0x73, 0xff,\n  0x75, 0xff, 0x79, 0xff, 0x7e, 0xff, 0x85, 0xff, 0x8f, 0xff, 0x9a, 0xff,\n  0xa4, 0xff, 0xb2, 0xff, 0xbd, 0xff, 0xc2, 0xff, 0xc4, 0xff, 0xc9, 0xff,\n  0xd1, 0xff, 0xd9, 0xff, 0xe4, 0xff, 0xef, 0xff, 0x00, 0x00, 0x0b, 0x00,\n  0x19, 0x00, 0x29, 0x00, 0x37, 0x00, 0x45, 0x00, 0x52, 0x00, 0x5d, 0x00,\n  0x68, 0x00, 0x71, 0x00, 0x7a, 0x00, 0x7e, 0x00, 0x82, 0x00, 0x86, 0x00,\n  0x85, 0x00, 0x81, 0x00, 0x86, 0x00, 0x8d, 0x00, 0x8e, 0x00, 0x8a, 0x00,\n  0x81, 0x00, 0x78, 0x00, 0x68, 0x00, 0x5a, 0x00, 0x48, 0x00, 0x37, 0x00,\n  0x25, 0x00, 0x0e, 0x00, 0xfd, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xee, 0xff,\n  0xe4, 0xff, 0xd7, 0xff, 0xc7, 0xff, 0xba, 0xff, 0xac, 0xff, 0x9f, 0xff,\n  0x92, 0xff, 0x88, 0xff, 0x7f, 0xff, 0x78, 0xff, 0x74, 0xff, 0x70, 0xff,\n  0x72, 0xff, 0x71, 0xff, 0x71, 0xff, 0x71, 0xff, 0x75, 0xff, 0x7c, 0xff,\n  0x82, 0xff, 0x90, 0xff, 0x9c, 0xff, 0xab, 0xff, 0xbc, 0xff, 0xcd, 0xff,\n  0xde, 0xff, 0xf1, 0xff, 0x03, 0x00, 0x15, 0x00, 0x27, 0x00, 0x39, 0x00,\n  0x46, 0x00, 0x56, 0x00, 0x64, 0x00, 0x6e, 0x00, 0x79, 0x00, 0x7f, 0x00,\n  0x85, 0x00, 0x8b, 0x00, 0x96, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0x97, 0x00,\n  0x8e, 0x00, 0x7e, 0x00, 0x6e, 0x00, 0x5e, 0x00, 0x4d, 0x00, 0x3b, 0x00,\n  0x27, 0x00, 0x15, 0x00, 0x03, 0x00, 0xf3, 0xff, 0xe3, 0xff, 0xd3, 0xff,\n  0xc5, 0xff, 0xb8, 0xff, 0xac, 0xff, 0xa3, 0xff, 0x9b, 0xff, 0x96, 0xff,\n  0x91, 0xff, 0x90, 0xff, 0x8f, 0xff, 0x91, 0xff, 0x95, 0xff, 0x99, 0xff,\n  0x9f, 0xff, 0xa4, 0xff, 0xa7, 0xff, 0xad, 0xff, 0xb4, 0xff, 0xbd, 0xff,\n  0xc6, 0xff, 0xd1, 0xff, 0xdf, 0xff, 0xec, 0xff, 0x06, 0x00, 0x27, 0x00,\n  0x3e, 0x00, 0x51, 0x00, 0x5f, 0x00, 0x69, 0x00, 0x71, 0x00, 0x77, 0x00,\n  0x78, 0x00, 0x77, 0x00, 0x75, 0x00, 0x71, 0x00, 0x6b, 0x00, 0x64, 0x00,\n  0x59, 0x00, 0x55, 0x00, 0x55, 0x00, 0x52, 0x00, 0x4a, 0x00, 0x40, 0x00,\n  0x33, 0x00, 0x27, 0x00, 0x16, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xe9, 0xff,\n  0xd9, 0xff, 0xca, 0xff, 0xbd, 0xff, 0xb1, 0xff, 0xa6, 0xff, 0x9f, 0xff,\n  0x97, 0xff, 0x8f, 0xff, 0x8e, 0xff, 0x8a, 0xff, 0x8c, 0xff, 0x8c, 0xff,\n  0x92, 0xff, 0x95, 0xff, 0x9c, 0xff, 0xa5, 0xff, 0xae, 0xff, 0xb6, 0xff,\n  0xb8, 0xff, 0xb8, 0xff, 0xbb, 0xff, 0xbe, 0xff, 0xc6, 0xff, 0xd0, 0xff,\n  0xdb, 0xff, 0xe7, 0xff, 0xf4, 0xff, 0x00, 0x00, 0x0f, 0x00, 0x1e, 0x00,\n  0x2c, 0x00, 0x3a, 0x00, 0x46, 0x00, 0x53, 0x00, 0x5e, 0x00, 0x69, 0x00,\n  0x6f, 0x00, 0x77, 0x00, 0x7c, 0x00, 0x7e, 0x00, 0x7e, 0x00, 0x7e, 0x00,\n  0x7d, 0x00, 0x80, 0x00, 0x86, 0x00, 0x84, 0x00, 0x7e, 0x00, 0x77, 0x00,\n  0x6b, 0x00, 0x5d, 0x00, 0x4c, 0x00, 0x3c, 0x00, 0x29, 0x00, 0x25, 0x00,\n  0x23, 0x00, 0x16, 0x00, 0x0c, 0x00, 0xfe, 0xff, 0xed, 0xff, 0xda, 0xff,\n  0xc8, 0xff, 0xb5, 0xff, 0xa7, 0xff, 0x98, 0xff, 0x89, 0xff, 0x7e, 0xff,\n  0x75, 0xff, 0x6c, 0xff, 0x69, 0xff, 0x66, 0xff, 0x66, 0xff, 0x69, 0xff,\n  0x6a, 0xff, 0x6c, 0xff, 0x6f, 0xff, 0x77, 0xff, 0x7f, 0xff, 0x8c, 0xff,\n  0x9a, 0xff, 0xa8, 0xff, 0xbb, 0xff, 0xcd, 0xff, 0xdf, 0xff, 0xf3, 0xff,\n  0x05, 0x00, 0x16, 0x00, 0x2b, 0x00, 0x3b, 0x00, 0x4d, 0x00, 0x5c, 0x00,\n  0x68, 0x00, 0x74, 0x00, 0x7e, 0x00, 0x86, 0x00, 0x8c, 0x00, 0x8e, 0x00,\n  0x93, 0x00, 0x95, 0x00, 0x94, 0x00, 0x90, 0x00, 0x86, 0x00, 0x7c, 0x00,\n  0x6e, 0x00, 0x61, 0x00, 0x51, 0x00, 0x40, 0x00, 0x2f, 0x00, 0x1f, 0x00,\n  0x0d, 0x00, 0xfe, 0xff, 0xee, 0xff, 0xe0, 0xff, 0xd0, 0xff, 0xc3, 0xff,\n  0xb7, 0xff, 0xac, 0xff, 0xa5, 0xff, 0x9c, 0xff, 0x98, 0xff, 0x94, 0xff,\n  0x94, 0xff, 0x92, 0xff, 0x96, 0xff, 0x98, 0xff, 0x9c, 0xff, 0xa2, 0xff,\n  0xa6, 0xff, 0xa9, 0xff, 0xb0, 0xff, 0xb6, 0xff, 0xc0, 0xff, 0xc8, 0xff,\n  0xe4, 0xff, 0x00, 0x00, 0x16, 0x00, 0x28, 0x00, 0x38, 0x00, 0x45, 0x00,\n  0x4c, 0x00, 0x55, 0x00, 0x59, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5e, 0x00,\n  0x5c, 0x00, 0x5b, 0x00, 0x55, 0x00, 0x50, 0x00, 0x4b, 0x00, 0x42, 0x00,\n  0x43, 0x00, 0x45, 0x00, 0x41, 0x00, 0x3b, 0x00, 0x35, 0x00, 0x28, 0x00,\n  0x1e, 0x00, 0x10, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xed, 0xff, 0xdf, 0xff,\n  0xd3, 0xff, 0xca, 0xff, 0xbe, 0xff, 0xb6, 0xff, 0xad, 0xff, 0xa9, 0xff,\n  0xa2, 0xff, 0xa1, 0xff, 0x9f, 0xff, 0x9e, 0xff, 0xa2, 0xff, 0xa4, 0xff,\n  0xa9, 0xff, 0xab, 0xff, 0xac, 0xff, 0xab, 0xff, 0xb0, 0xff, 0xb3, 0xff,\n  0xb5, 0xff, 0xba, 0xff, 0xc0, 0xff, 0xc8, 0xff, 0xd3, 0xff, 0xdf, 0xff,\n  0xec, 0xff, 0xf9, 0xff, 0x07, 0x00, 0x13, 0x00, 0x23, 0x00, 0x31, 0x00,\n  0x3d, 0x00, 0x4a, 0x00, 0x54, 0x00, 0x5f, 0x00, 0x66, 0x00, 0x6e, 0x00,\n  0x74, 0x00, 0x76, 0x00, 0x78, 0x00, 0x76, 0x00, 0x75, 0x00, 0x77, 0x00,\n  0x7b, 0x00, 0x7c, 0x00, 0x79, 0x00, 0x74, 0x00, 0x6b, 0x00, 0x5e, 0x00,\n  0x4f, 0x00, 0x4f, 0x00, 0x4d, 0x00, 0x44, 0x00, 0x38, 0x00, 0x25, 0x00,\n  0x13, 0x00, 0x00, 0x00, 0xed, 0xff, 0xd8, 0xff, 0xc5, 0xff, 0xb0, 0xff,\n  0xa0, 0xff, 0x90, 0xff, 0x82, 0xff, 0x76, 0xff, 0x6d, 0xff, 0x68, 0xff,\n  0x62, 0xff, 0x60, 0xff, 0x5f, 0xff, 0x63, 0xff, 0x68, 0xff, 0x6b, 0xff,\n  0x70, 0xff, 0x76, 0xff, 0x81, 0xff, 0x8d, 0xff, 0x9a, 0xff, 0xab, 0xff,\n  0xbb, 0xff, 0xce, 0xff, 0xe2, 0xff, 0xf6, 0xff, 0x06, 0x00, 0x1a, 0x00,\n  0x2f, 0x00, 0x3e, 0x00, 0x50, 0x00, 0x5d, 0x00, 0x6d, 0x00, 0x77, 0x00,\n  0x81, 0x00, 0x89, 0x00, 0x8a, 0x00, 0x87, 0x00, 0x82, 0x00, 0x85, 0x00,\n  0x87, 0x00, 0x87, 0x00, 0x81, 0x00, 0x79, 0x00, 0x70, 0x00, 0x63, 0x00,\n  0x55, 0x00, 0x47, 0x00, 0x38, 0x00, 0x29, 0x00, 0x19, 0x00, 0x06, 0x00,\n  0xf9, 0xff, 0xe9, 0xff, 0xdb, 0xff, 0xcf, 0xff, 0xc1, 0xff, 0xb5, 0xff,\n  0xab, 0xff, 0xa3, 0xff, 0x9d, 0xff, 0x98, 0xff, 0x97, 0xff, 0x95, 0xff,\n  0x95, 0xff, 0x97, 0xff, 0x9b, 0xff, 0xa0, 0xff, 0xa5, 0xff, 0xa8, 0xff,\n  0xaa, 0xff, 0xb0, 0xff, 0xc5, 0xff, 0xe1, 0xff, 0xf4, 0xff, 0x04, 0x00,\n  0x11, 0x00, 0x1c, 0x00, 0x29, 0x00, 0x2e, 0x00, 0x37, 0x00, 0x3c, 0x00,\n  0x41, 0x00, 0x45, 0x00, 0x45, 0x00, 0x48, 0x00, 0x47, 0x00, 0x45, 0x00,\n  0x43, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x37, 0x00, 0x36, 0x00, 0x3b, 0x00,\n  0x3c, 0x00, 0x3b, 0x00, 0x35, 0x00, 0x2f, 0x00, 0x27, 0x00, 0x1f, 0x00,\n  0x12, 0x00, 0x09, 0x00, 0x00, 0x00, 0xf4, 0xff, 0xea, 0xff, 0xdf, 0xff,\n  0xd7, 0xff, 0xce, 0xff, 0xc7, 0xff, 0xc0, 0xff, 0xba, 0xff, 0xb7, 0xff,\n  0xb3, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xaf, 0xff, 0xa8, 0xff, 0xa6, 0xff,\n  0xa7, 0xff, 0xa8, 0xff, 0xad, 0xff, 0xb0, 0xff, 0xb4, 0xff, 0xb7, 0xff,\n  0xbd, 0xff, 0xc6, 0xff, 0xce, 0xff, 0xdb, 0xff, 0xe6, 0xff, 0xf1, 0xff,\n  0x00, 0x00, 0x0c, 0x00, 0x1a, 0x00, 0x28, 0x00, 0x34, 0x00, 0x40, 0x00,\n  0x4b, 0x00, 0x55, 0x00, 0x5e, 0x00, 0x64, 0x00, 0x6b, 0x00, 0x6e, 0x00,\n  0x71, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x71, 0x00, 0x75, 0x00,\n  0x73, 0x00, 0x71, 0x00, 0x68, 0x00, 0x6b, 0x00, 0x6f, 0x00, 0x68, 0x00,\n  0x5e, 0x00, 0x50, 0x00, 0x3e, 0x00, 0x28, 0x00, 0x13, 0x00, 0x00, 0x00,\n  0xe8, 0xff, 0xd4, 0xff, 0xc1, 0xff, 0xae, 0xff, 0x9c, 0xff, 0x8c, 0xff,\n  0x7f, 0xff, 0x73, 0xff, 0x69, 0xff, 0x63, 0xff, 0x5f, 0xff, 0x5d, 0xff,\n  0x60, 0xff, 0x62, 0xff, 0x69, 0xff, 0x6f, 0xff, 0x73, 0xff, 0x7b, 0xff,\n  0x85, 0xff, 0x91, 0xff, 0x9f, 0xff, 0xb1, 0xff, 0xc1, 0xff, 0xd4, 0xff,\n  0xe5, 0xff, 0xfa, 0xff, 0x0c, 0x00, 0x1e, 0x00, 0x2f, 0x00, 0x42, 0x00,\n  0x52, 0x00, 0x61, 0x00, 0x6e, 0x00, 0x78, 0x00, 0x7e, 0x00, 0x80, 0x00,\n  0x7d, 0x00, 0x7b, 0x00, 0x78, 0x00, 0x78, 0x00, 0x7e, 0x00, 0x7f, 0x00,\n  0x7e, 0x00, 0x78, 0x00, 0x72, 0x00, 0x68, 0x00, 0x5b, 0x00, 0x4e, 0x00,\n  0x40, 0x00, 0x32, 0x00, 0x20, 0x00, 0x12, 0x00, 0x01, 0x00, 0xf4, 0xff,\n  0xe7, 0xff, 0xd7, 0xff, 0xcb, 0xff, 0xbe, 0xff, 0xb3, 0xff, 0xab, 0xff,\n  0xa3, 0xff, 0x9d, 0xff, 0x98, 0xff, 0x98, 0xff, 0x95, 0xff, 0x97, 0xff,\n  0x99, 0xff, 0x9d, 0xff, 0xa3, 0xff, 0xa5, 0xff, 0xb5, 0xff, 0xcc, 0xff,\n  0xd8, 0xff, 0xe6, 0xff, 0xf3, 0xff, 0xfa, 0xff, 0x03, 0x00, 0x0a, 0x00,\n  0x12, 0x00, 0x17, 0x00, 0x1c, 0x00, 0x25, 0x00, 0x29, 0x00, 0x2c, 0x00,\n  0x30, 0x00, 0x32, 0x00, 0x35, 0x00, 0x34, 0x00, 0x35, 0x00, 0x35, 0x00,\n  0x32, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x38, 0x00, 0x3c, 0x00,\n  0x3a, 0x00, 0x38, 0x00, 0x32, 0x00, 0x2c, 0x00, 0x25, 0x00, 0x1b, 0x00,\n  0x13, 0x00, 0x08, 0x00, 0x00, 0x00, 0xf7, 0xff, 0xee, 0xff, 0xe5, 0xff,\n  0xdc, 0xff, 0xd6, 0xff, 0xce, 0xff, 0xc9, 0xff, 0xc4, 0xff, 0xbe, 0xff,\n  0xb3, 0xff, 0xac, 0xff, 0xa6, 0xff, 0xa5, 0xff, 0xa2, 0xff, 0xa7, 0xff,\n  0xa8, 0xff, 0xae, 0xff, 0xb5, 0xff, 0xb5, 0xff, 0xbc, 0xff, 0xc3, 0xff,\n  0xcc, 0xff, 0xd4, 0xff, 0xe2, 0xff, 0xed, 0xff, 0xf8, 0xff, 0x05, 0x00,\n  0x12, 0x00, 0x1d, 0x00, 0x2a, 0x00, 0x36, 0x00, 0x41, 0x00, 0x4c, 0x00,\n  0x53, 0x00, 0x5b, 0x00, 0x61, 0x00, 0x65, 0x00, 0x67, 0x00, 0x6b, 0x00,\n  0x68, 0x00, 0x67, 0x00, 0x67, 0x00, 0x6b, 0x00, 0x6e, 0x00, 0x79, 0x00,\n  0x84, 0x00, 0x80, 0x00, 0x7b, 0x00, 0x70, 0x00, 0x61, 0x00, 0x50, 0x00,\n  0x3b, 0x00, 0x26, 0x00, 0x11, 0x00, 0xfb, 0xff, 0xe5, 0xff, 0xd0, 0xff,\n  0xbc, 0xff, 0xa9, 0xff, 0x98, 0xff, 0x89, 0xff, 0x7c, 0xff, 0x73, 0xff,\n  0x69, 0xff, 0x64, 0xff, 0x60, 0xff, 0x60, 0xff, 0x63, 0xff, 0x66, 0xff,\n  0x6c, 0xff, 0x76, 0xff, 0x7c, 0xff, 0x83, 0xff, 0x8c, 0xff, 0x9a, 0xff,\n  0xa6, 0xff, 0xb6, 0xff, 0xc7, 0xff, 0xd8, 0xff, 0xed, 0xff, 0xff, 0xff,\n  0x10, 0x00, 0x22, 0x00, 0x32, 0x00, 0x43, 0x00, 0x52, 0x00, 0x61, 0x00,\n  0x68, 0x00, 0x6c, 0x00, 0x70, 0x00, 0x71, 0x00, 0x73, 0x00, 0x72, 0x00,\n  0x71, 0x00, 0x71, 0x00, 0x72, 0x00, 0x79, 0x00, 0x79, 0x00, 0x77, 0x00,\n  0x71, 0x00, 0x69, 0x00, 0x60, 0x00, 0x55, 0x00, 0x46, 0x00, 0x39, 0x00,\n  0x2a, 0x00, 0x1b, 0x00, 0x0b, 0x00, 0xfe, 0xff, 0xee, 0xff, 0xe1, 0xff,\n  0xd4, 0xff, 0xc6, 0xff, 0xbb, 0xff, 0xb1, 0xff, 0xa8, 0xff, 0xa2, 0xff,\n  0x9d, 0xff, 0x98, 0xff, 0x98, 0xff, 0x95, 0xff, 0x99, 0xff, 0x9b, 0xff,\n  0xae, 0xff, 0xc1, 0xff, 0xca, 0xff, 0xd4, 0xff, 0xda, 0xff, 0xe1, 0xff,\n  0xe7, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x08, 0x00, 0x0c, 0x00, 0x13, 0x00, 0x16, 0x00, 0x1d, 0x00, 0x20, 0x00,\n  0x24, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2d, 0x00,\n  0x2e, 0x00, 0x30, 0x00, 0x37, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x40, 0x00,\n  0x3e, 0x00, 0x3b, 0x00, 0x33, 0x00, 0x2d, 0x00, 0x25, 0x00, 0x1c, 0x00,\n  0x14, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xf0, 0xff, 0xe7, 0xff,\n  0xde, 0xff, 0xd6, 0xff, 0xc5, 0xff, 0xbc, 0xff, 0xb3, 0xff, 0xab, 0xff,\n  0xa8, 0xff, 0xa3, 0xff, 0xa3, 0xff, 0xa5, 0xff, 0xa9, 0xff, 0xac, 0xff,\n  0xb5, 0xff, 0xb6, 0xff, 0xbb, 0xff, 0xc2, 0xff, 0xc8, 0xff, 0xd2, 0xff,\n  0xdb, 0xff, 0xed, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0e, 0x00,\n  0x17, 0x00, 0x20, 0x00, 0x28, 0x00, 0x30, 0x00, 0x36, 0x00, 0x3b, 0x00,\n  0x40, 0x00, 0x44, 0x00, 0x46, 0x00, 0x47, 0x00, 0x47, 0x00, 0x48, 0x00,\n  0x47, 0x00, 0x52, 0x00, 0x5f, 0x00, 0x64, 0x00, 0x65, 0x00, 0x61, 0x00,\n  0x5b, 0x00, 0x51, 0x00, 0x45, 0x00, 0x37, 0x00, 0x28, 0x00, 0x18, 0x00,\n  0x08, 0x00, 0xfa, 0xff, 0xeb, 0xff, 0xdc, 0xff, 0xcd, 0xff, 0xc0, 0xff,\n  0xb4, 0xff, 0xa9, 0xff, 0xa1, 0xff, 0x98, 0xff, 0x93, 0xff, 0x91, 0xff,\n  0x8e, 0xff, 0x8f, 0xff, 0x90, 0xff, 0x93, 0xff, 0x99, 0xff, 0xa0, 0xff,\n  0xa6, 0xff, 0xac, 0xff, 0xb3, 0xff, 0xba, 0xff, 0xc5, 0xff, 0xcf, 0xff,\n  0xdb, 0xff, 0xe8, 0xff, 0xf3, 0xff, 0x00, 0x00, 0x0c, 0x00, 0x18, 0x00,\n  0x24, 0x00, 0x30, 0x00, 0x37, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x45, 0x00,\n  0x48, 0x00, 0x4b, 0x00, 0x4d, 0x00, 0x4e, 0x00, 0x50, 0x00, 0x4f, 0x00,\n  0x4f, 0x00, 0x51, 0x00, 0x56, 0x00, 0x54, 0x00, 0x53, 0x00, 0x4f, 0x00,\n  0x48, 0x00, 0x42, 0x00, 0x38, 0x00, 0x2d, 0x00, 0x23, 0x00, 0x19, 0x00,\n  0x0d, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xef, 0xff, 0xe5, 0xff, 0xda, 0xff,\n  0xd2, 0xff, 0xcb, 0xff, 0xc2, 0xff, 0xbf, 0xff, 0xba, 0xff, 0xb6, 0xff,\n  0xb3, 0xff, 0xb4, 0xff, 0xbd, 0xff, 0xc9, 0xff, 0xd2, 0xff, 0xd7, 0xff,\n  0xda, 0xff, 0xdc, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe5, 0xff,\n  0xe7, 0xff, 0xeb, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf7, 0xff, 0xfd, 0xff,\n  0x00, 0x00, 0x03, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x14, 0x00,\n  0x19, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x23, 0x00, 0x24, 0x00,\n  0x29, 0x00, 0x30, 0x00, 0x34, 0x00, 0x36, 0x00, 0x36, 0x00, 0x35, 0x00,\n  0x32, 0x00, 0x2d, 0x00, 0x28, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x15, 0x00,\n  0x0f, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xed, 0xff, 0xe1, 0xff,\n  0xd8, 0xff, 0xd0, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xc1, 0xff, 0xbf, 0xff,\n  0xbd, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xc4, 0xff, 0xc7, 0xff, 0xcc, 0xff,\n  0xce, 0xff, 0xd0, 0xff, 0xd6, 0xff, 0xda, 0xff, 0xe1, 0xff, 0xea, 0xff,\n  0xf0, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x08, 0x00, 0x10, 0x00, 0x1a, 0x00,\n  0x20, 0x00, 0x27, 0x00, 0x2e, 0x00, 0x34, 0x00, 0x39, 0x00, 0x3b, 0x00,\n  0x41, 0x00, 0x43, 0x00, 0x44, 0x00, 0x4f, 0x00, 0x55, 0x00, 0x5a, 0x00,\n  0x5f, 0x00, 0x62, 0x00, 0x61, 0x00, 0x5c, 0x00, 0x54, 0x00, 0x4a, 0x00,\n  0x3e, 0x00, 0x31, 0x00, 0x22, 0x00, 0x12, 0x00, 0x04, 0x00, 0xf6, 0xff,\n  0xe9, 0xff, 0xd9, 0xff, 0xce, 0xff, 0xc1, 0xff, 0xb5, 0xff, 0xac, 0xff,\n  0xa4, 0xff, 0x9e, 0xff, 0x99, 0xff, 0x95, 0xff, 0x95, 0xff, 0x94, 0xff,\n  0x96, 0xff, 0x9b, 0xff, 0x9f, 0xff, 0xa7, 0xff, 0xae, 0xff, 0xb5, 0xff,\n  0xbc, 0xff, 0xc1, 0xff, 0xcb, 0xff, 0xd6, 0xff, 0xdf, 0xff, 0xea, 0xff,\n  0xf7, 0xff, 0x00, 0x00, 0x0d, 0x00, 0x17, 0x00, 0x20, 0x00, 0x26, 0x00,\n  0x2b, 0x00, 0x30, 0x00, 0x36, 0x00, 0x3b, 0x00, 0x41, 0x00, 0x43, 0x00,\n  0x47, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x4b, 0x00, 0x4d, 0x00,\n  0x52, 0x00, 0x53, 0x00, 0x52, 0x00, 0x4f, 0x00, 0x4a, 0x00, 0x43, 0x00,\n  0x3b, 0x00, 0x32, 0x00, 0x28, 0x00, 0x1f, 0x00, 0x12, 0x00, 0x09, 0x00,\n  0xff, 0xff, 0xf4, 0xff, 0xeb, 0xff, 0xe0, 0xff, 0xd7, 0xff, 0xce, 0xff,\n  0xc7, 0xff, 0xc1, 0xff, 0xbc, 0xff, 0xb9, 0xff, 0xc0, 0xff, 0xc7, 0xff,\n  0xcc, 0xff, 0xd0, 0xff, 0xd3, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd6, 0xff,\n  0xd4, 0xff, 0xd4, 0xff, 0xd6, 0xff, 0xd6, 0xff, 0xd9, 0xff, 0xdd, 0xff,\n  0xe0, 0xff, 0xe5, 0xff, 0xe9, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xfa, 0xff,\n  0x00, 0x00, 0x03, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x14, 0x00, 0x1b, 0x00,\n  0x1e, 0x00, 0x23, 0x00, 0x26, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x32, 0x00,\n  0x3a, 0x00, 0x3d, 0x00, 0x3f, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x38, 0x00,\n  0x34, 0x00, 0x2f, 0x00, 0x29, 0x00, 0x22, 0x00, 0x1a, 0x00, 0x10, 0x00,\n  0x02, 0x00, 0xf9, 0xff, 0xee, 0xff, 0xe4, 0xff, 0xdb, 0xff, 0xd3, 0xff,\n  0xcc, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xc1, 0xff, 0xc0, 0xff, 0xc1, 0xff,\n  0xc1, 0xff, 0xc5, 0xff, 0xc7, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0xd0, 0xff,\n  0xd4, 0xff, 0xd8, 0xff, 0xdf, 0xff, 0xe5, 0xff, 0xeb, 0xff, 0xf3, 0xff,\n  0xfb, 0xff, 0x01, 0x00, 0x09, 0x00, 0x11, 0x00, 0x19, 0x00, 0x1f, 0x00,\n  0x27, 0x00, 0x2c, 0x00, 0x31, 0x00, 0x35, 0x00, 0x3a, 0x00, 0x47, 0x00,\n  0x52, 0x00, 0x56, 0x00, 0x59, 0x00, 0x59, 0x00, 0x58, 0x00, 0x5a, 0x00,\n  0x57, 0x00, 0x53, 0x00, 0x4c, 0x00, 0x41, 0x00, 0x37, 0x00, 0x2b, 0x00,\n  0x1d, 0x00, 0x0f, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xe9, 0xff, 0xdb, 0xff,\n  0xd0, 0xff, 0xc5, 0xff, 0xbc, 0xff, 0xb2, 0xff, 0xac, 0xff, 0xa5, 0xff,\n  0xa1, 0xff, 0x9f, 0xff, 0x9d, 0xff, 0x9d, 0xff, 0xa0, 0xff, 0xa3, 0xff,\n  0xa8, 0xff, 0xaf, 0xff, 0xb5, 0xff, 0xbe, 0xff, 0xc3, 0xff, 0xca, 0xff,\n  0xd1, 0xff, 0xdb, 0xff, 0xe4, 0xff, 0xee, 0xff, 0xf7, 0xff, 0x00, 0x00,\n  0x08, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x1b, 0x00, 0x23, 0x00, 0x28, 0x00,\n  0x2f, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3f, 0x00, 0x43, 0x00, 0x45, 0x00,\n  0x49, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x4a, 0x00, 0x4d, 0x00, 0x51, 0x00,\n  0x51, 0x00, 0x4f, 0x00, 0x4b, 0x00, 0x45, 0x00, 0x3e, 0x00, 0x36, 0x00,\n  0x2d, 0x00, 0x23, 0x00, 0x18, 0x00, 0x0e, 0x00, 0x03, 0x00, 0xf9, 0xff,\n  0xf0, 0xff, 0xe5, 0xff, 0xdc, 0xff, 0xd5, 0xff, 0xcb, 0xff, 0xc7, 0xff,\n  0xcb, 0xff, 0xce, 0xff, 0xd0, 0xff, 0xd0, 0xff, 0xcf, 0xff, 0xd0, 0xff,\n  0xce, 0xff, 0xcf, 0xff, 0xd0, 0xff, 0xce, 0xff, 0xcb, 0xff, 0xca, 0xff,\n  0xca, 0xff, 0xcb, 0xff, 0xcd, 0xff, 0xd0, 0xff, 0xd5, 0xff, 0xd9, 0xff,\n  0xdf, 0xff, 0xe5, 0xff, 0xeb, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0x01, 0x00,\n  0x05, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x1b, 0x00, 0x20, 0x00, 0x27, 0x00,\n  0x2a, 0x00, 0x2d, 0x00, 0x32, 0x00, 0x36, 0x00, 0x3e, 0x00, 0x42, 0x00,\n  0x45, 0x00, 0x46, 0x00, 0x46, 0x00, 0x43, 0x00, 0x3f, 0x00, 0x39, 0x00,\n  0x33, 0x00, 0x29, 0x00, 0x1d, 0x00, 0x11, 0x00, 0x04, 0x00, 0xfb, 0xff,\n  0xf3, 0xff, 0xe8, 0xff, 0xdf, 0xff, 0xd9, 0xff, 0xd3, 0xff, 0xcc, 0xff,\n  0xc8, 0xff, 0xc7, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc5, 0xff,\n  0xc8, 0xff, 0xca, 0xff, 0xd0, 0xff, 0xd1, 0xff, 0xd4, 0xff, 0xd7, 0xff,\n  0xdc, 0xff, 0xe2, 0xff, 0xe6, 0xff, 0xef, 0xff, 0xf4, 0xff, 0xfd, 0xff,\n  0x02, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x17, 0x00, 0x1f, 0x00, 0x24, 0x00,\n  0x2c, 0x00, 0x3a, 0x00, 0x46, 0x00, 0x4d, 0x00, 0x53, 0x00, 0x54, 0x00,\n  0x55, 0x00, 0x53, 0x00, 0x4e, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x48, 0x00,\n  0x41, 0x00, 0x39, 0x00, 0x30, 0x00, 0x24, 0x00, 0x1a, 0x00, 0x0d, 0x00,\n  0x01, 0x00, 0xf5, 0xff, 0xea, 0xff, 0xdf, 0xff, 0xd4, 0xff, 0xca, 0xff,\n  0xc2, 0xff, 0xba, 0xff, 0xb4, 0xff, 0xaf, 0xff, 0xab, 0xff, 0xa9, 0xff,\n  0xa8, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xad, 0xff, 0xb2, 0xff, 0xb8, 0xff,\n  0xbd, 0xff, 0xc6, 0xff, 0xce, 0xff, 0xd2, 0xff, 0xd7, 0xff, 0xe0, 0xff,\n  0xe6, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x0b, 0x00, 0x12, 0x00, 0x19, 0x00, 0x1f, 0x00, 0x28, 0x00, 0x2d, 0x00,\n  0x35, 0x00, 0x39, 0x00, 0x3e, 0x00, 0x42, 0x00, 0x44, 0x00, 0x47, 0x00,\n  0x47, 0x00, 0x47, 0x00, 0x48, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4c, 0x00,\n  0x4a, 0x00, 0x45, 0x00, 0x3f, 0x00, 0x37, 0x00, 0x2f, 0x00, 0x26, 0x00,\n  0x1c, 0x00, 0x11, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xeb, 0xff,\n  0xe1, 0xff, 0xd9, 0xff, 0xdb, 0xff, 0xdc, 0xff, 0xd9, 0xff, 0xd8, 0xff,\n  0xd4, 0xff, 0xd0, 0xff, 0xcd, 0xff, 0xca, 0xff, 0xc8, 0xff, 0xc7, 0xff,\n  0xc6, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc0, 0xff, 0xc1, 0xff, 0xc1, 0xff,\n  0xc3, 0xff, 0xc7, 0xff, 0xcc, 0xff, 0xd0, 0xff, 0xd6, 0xff, 0xde, 0xff,\n  0xe6, 0xff, 0xed, 0xff, 0xf4, 0xff, 0xfe, 0xff, 0x03, 0x00, 0x0d, 0x00,\n  0x15, 0x00, 0x1b, 0x00, 0x24, 0x00, 0x28, 0x00, 0x2f, 0x00, 0x34, 0x00,\n  0x37, 0x00, 0x3a, 0x00, 0x40, 0x00, 0x47, 0x00, 0x4b, 0x00, 0x4c, 0x00,\n  0x4c, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x3e, 0x00, 0x32, 0x00, 0x29, 0x00,\n  0x1c, 0x00, 0x13, 0x00, 0x09, 0x00, 0xff, 0xff, 0xf7, 0xff, 0xed, 0xff,\n  0xe7, 0xff, 0xde, 0xff, 0xd8, 0xff, 0xd3, 0xff, 0xce, 0xff, 0xca, 0xff,\n  0xc7, 0xff, 0xc7, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xca, 0xff,\n  0xcf, 0xff, 0xd3, 0xff, 0xd3, 0xff, 0xd6, 0xff, 0xd9, 0xff, 0xde, 0xff,\n  0xe3, 0xff, 0xe9, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xfd, 0xff, 0x01, 0x00,\n  0x0a, 0x00, 0x0f, 0x00, 0x19, 0x00, 0x28, 0x00, 0x36, 0x00, 0x3f, 0x00,\n  0x46, 0x00, 0x4b, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4b, 0x00, 0x49, 0x00,\n  0x44, 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x3b, 0x00, 0x38, 0x00, 0x31, 0x00,\n  0x2a, 0x00, 0x1f, 0x00, 0x17, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xf9, 0xff,\n  0xef, 0xff, 0xe4, 0xff, 0xdc, 0xff, 0xd1, 0xff, 0xcb, 0xff, 0xc4, 0xff,\n  0xbd, 0xff, 0xbb, 0xff, 0xb7, 0xff, 0xb5, 0xff, 0xb4, 0xff, 0xb3, 0xff,\n  0xb4, 0xff, 0xb7, 0xff, 0xbc, 0xff, 0xc1, 0xff, 0xc5, 0xff, 0xcd, 0xff,\n  0xd4, 0xff, 0xd9, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xe9, 0xff,\n  0xed, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x0c, 0x00,\n  0x12, 0x00, 0x1a, 0x00, 0x21, 0x00, 0x29, 0x00, 0x2f, 0x00, 0x35, 0x00,\n  0x39, 0x00, 0x3e, 0x00, 0x42, 0x00, 0x43, 0x00, 0x45, 0x00, 0x45, 0x00,\n  0x45, 0x00, 0x46, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x48, 0x00, 0x45, 0x00,\n  0x3f, 0x00, 0x39, 0x00, 0x31, 0x00, 0x29, 0x00, 0x1f, 0x00, 0x15, 0x00,\n  0x0b, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xf1, 0xff, 0xf0, 0xff, 0xef, 0xff,\n  0xea, 0xff, 0xe6, 0xff, 0xe1, 0xff, 0xda, 0xff, 0xd5, 0xff, 0xce, 0xff,\n  0xca, 0xff, 0xc7, 0xff, 0xc2, 0xff, 0xbe, 0xff, 0xbd, 0xff, 0xbc, 0xff,\n  0xbc, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xbd, 0xff, 0xc1, 0xff,\n  0xc5, 0xff, 0xcc, 0xff, 0xd2, 0xff, 0xd9, 0xff, 0xe2, 0xff, 0xeb, 0xff,\n  0xf4, 0xff, 0xfd, 0xff, 0x04, 0x00, 0x0c, 0x00, 0x15, 0x00, 0x1e, 0x00,\n  0x26, 0x00, 0x2d, 0x00, 0x32, 0x00, 0x39, 0x00, 0x3c, 0x00, 0x40, 0x00,\n  0x42, 0x00, 0x47, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x50, 0x00, 0x4c, 0x00,\n  0x43, 0x00, 0x3b, 0x00, 0x33, 0x00, 0x28, 0x00, 0x1f, 0x00, 0x16, 0x00,\n  0x0c, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xec, 0xff, 0xe4, 0xff,\n  0xdd, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xcf, 0xff, 0xcb, 0xff, 0xca, 0xff,\n  0xc9, 0xff, 0xc8, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xd1, 0xff,\n  0xd5, 0xff, 0xd5, 0xff, 0xd6, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xe4, 0xff,\n  0xea, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x13, 0x00,\n  0x22, 0x00, 0x2c, 0x00, 0x34, 0x00, 0x3a, 0x00, 0x3f, 0x00, 0x41, 0x00,\n  0x42, 0x00, 0x42, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x39, 0x00, 0x35, 0x00,\n  0x31, 0x00, 0x30, 0x00, 0x2d, 0x00, 0x2a, 0x00, 0x24, 0x00, 0x1c, 0x00,\n  0x15, 0x00, 0x0c, 0x00, 0x04, 0x00, 0xfd, 0xff, 0xf4, 0xff, 0xec, 0xff,\n  0xe3, 0xff, 0xdd, 0xff, 0xd5, 0xff, 0xd0, 0xff, 0xca, 0xff, 0xc6, 0xff,\n  0xc3, 0xff, 0xc1, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xc2, 0xff,\n  0xc5, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xd2, 0xff, 0xd9, 0xff, 0xde, 0xff,\n  0xde, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe6, 0xff, 0xec, 0xff,\n  0xf1, 0xff, 0xfa, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0e, 0x00, 0x14, 0x00,\n  0x1c, 0x00, 0x23, 0x00, 0x2a, 0x00, 0x2f, 0x00, 0x36, 0x00, 0x39, 0x00,\n  0x3d, 0x00, 0x40, 0x00, 0x42, 0x00, 0x42, 0x00, 0x43, 0x00, 0x42, 0x00,\n  0x44, 0x00, 0x46, 0x00, 0x45, 0x00, 0x44, 0x00, 0x3e, 0x00, 0x39, 0x00,\n  0x30, 0x00, 0x2b, 0x00, 0x21, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xf1, 0xff, 0xea, 0xff,\n  0xe2, 0xff, 0xd9, 0xff, 0xd2, 0xff, 0xcc, 0xff, 0xc5, 0xff, 0xc1, 0xff,\n  0xbb, 0xff, 0xb8, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff,\n  0xb5, 0xff, 0xb6, 0xff, 0xb9, 0xff, 0xbd, 0xff, 0xc1, 0xff, 0xc8, 0xff,\n  0xd0, 0xff, 0xd8, 0xff, 0xe1, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xfd, 0xff,\n  0x04, 0x00, 0x0e, 0x00, 0x17, 0x00, 0x20, 0x00, 0x29, 0x00, 0x30, 0x00,\n  0x36, 0x00, 0x3b, 0x00, 0x40, 0x00, 0x43, 0x00, 0x45, 0x00, 0x49, 0x00,\n  0x4f, 0x00, 0x50, 0x00, 0x4c, 0x00, 0x46, 0x00, 0x41, 0x00, 0x3a, 0x00,\n  0x32, 0x00, 0x2a, 0x00, 0x22, 0x00, 0x1a, 0x00, 0x10, 0x00, 0x08, 0x00,\n  0x01, 0x00, 0xf8, 0xff, 0xf1, 0xff, 0xea, 0xff, 0xe5, 0xff, 0xde, 0xff,\n  0xd8, 0xff, 0xd5, 0xff, 0xd0, 0xff, 0xcd, 0xff, 0xcc, 0xff, 0xcb, 0xff,\n  0xcb, 0xff, 0xcb, 0xff, 0xcd, 0xff, 0xcf, 0xff, 0xd3, 0xff, 0xd3, 0xff,\n  0xd6, 0xff, 0xd7, 0xff, 0xdc, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xeb, 0xff,\n  0xf2, 0xff, 0x00, 0x00, 0x0d, 0x00, 0x17, 0x00, 0x20, 0x00, 0x28, 0x00,\n  0x2d, 0x00, 0x31, 0x00, 0x35, 0x00, 0x35, 0x00, 0x35, 0x00, 0x36, 0x00,\n  0x34, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x2c, 0x00, 0x26, 0x00, 0x26, 0x00,\n  0x26, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1a, 0x00, 0x15, 0x00, 0x0e, 0x00,\n  0x08, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xec, 0xff, 0xe7, 0xff,\n  0xe1, 0xff, 0xdb, 0xff, 0xd6, 0xff, 0xd3, 0xff, 0xcf, 0xff, 0xcc, 0xff,\n  0xcc, 0xff, 0xca, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcd, 0xff, 0xd1, 0xff,\n  0xd3, 0xff, 0xd8, 0xff, 0xd9, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff,\n  0xdc, 0xff, 0xde, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xef, 0xff, 0xf3, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0x09, 0x00, 0x11, 0x00, 0x17, 0x00, 0x13, 0x00,\n  0x18, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x25, 0x00, 0x27, 0x00,\n  0x28, 0x00, 0x29, 0x00, 0x28, 0x00, 0x28, 0x00, 0x28, 0x00, 0x29, 0x00,\n  0x29, 0x00, 0x29, 0x00, 0x27, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1b, 0x00,\n  0x16, 0x00, 0x12, 0x00, 0x11, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x07, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xf7, 0xff, 0xf2, 0xff, 0xeb, 0xff, 0xe6, 0xff,\n  0xe1, 0xff, 0xdc, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xcf, 0xff,\n  0xce, 0xff, 0xcd, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xd0, 0xff, 0xd0, 0xff,\n  0xd2, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xdc, 0xff, 0xe1, 0xff, 0xe7, 0xff,\n  0xec, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0a, 0x00,\n  0x10, 0x00, 0x16, 0x00, 0x1b, 0x00, 0x20, 0x00, 0x24, 0x00, 0x28, 0x00,\n  0x2a, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x2d, 0x00, 0x2d, 0x00, 0x2d, 0x00,\n  0x2c, 0x00, 0x2a, 0x00, 0x29, 0x00, 0x24, 0x00, 0x20, 0x00, 0x1c, 0x00,\n  0x18, 0x00, 0x12, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xfb, 0xff, 0xf7, 0xff, 0xf2, 0xff, 0xee, 0xff, 0xea, 0xff, 0xe7, 0xff,\n  0xe5, 0xff, 0xe2, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xdf, 0xff, 0xdf, 0xff,\n  0xdf, 0xff, 0xe1, 0xff, 0xe2, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe5, 0xff,\n  0xe7, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x03, 0x00,\n  0x08, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x13, 0x00, 0x16, 0x00, 0x18, 0x00,\n  0x19, 0x00, 0x1a, 0x00, 0x1b, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x19, 0x00,\n  0x17, 0x00, 0x16, 0x00, 0x13, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00,\n  0x13, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf7, 0xff, 0xf3, 0xff, 0xf1, 0xff,\n  0xed, 0xff, 0xeb, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe5, 0xff,\n  0xe4, 0xff, 0xe5, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe4, 0xff,\n  0xe4, 0xff, 0xe5, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xea, 0xff,\n  0xec, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf7, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0x03, 0x00, 0x07, 0x00, 0x0c, 0x00, 0x10, 0x00, 0x14, 0x00, 0x19, 0x00,\n  0x1b, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00,\n  0x26, 0x00, 0x26, 0x00, 0x25, 0x00, 0x25, 0x00, 0x27, 0x00, 0x27, 0x00,\n  0x25, 0x00, 0x23, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1c, 0x00,\n  0x19, 0x00, 0x14, 0x00, 0x10, 0x00, 0x09, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xf7, 0xff, 0xf1, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xdf, 0xff, 0xda, 0xff,\n  0xd5, 0xff, 0xd2, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xcc, 0xff,\n  0xcd, 0xff, 0xce, 0xff, 0xd0, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xd5, 0xff,\n  0xd9, 0xff, 0xde, 0xff, 0xe2, 0xff, 0xe8, 0xff, 0xee, 0xff, 0xf3, 0xff,\n  0xfa, 0xff, 0x00, 0x00, 0x06, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x16, 0x00,\n  0x1c, 0x00, 0x21, 0x00, 0x24, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x2b, 0x00,\n  0x29, 0x00, 0x29, 0x00, 0x27, 0x00, 0x29, 0x00, 0x29, 0x00, 0x28, 0x00,\n  0x27, 0x00, 0x25, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x15, 0x00,\n  0x10, 0x00, 0x0c, 0x00, 0x07, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfa, 0xff,\n  0xf5, 0xff, 0xf1, 0xff, 0xed, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe4, 0xff,\n  0xe2, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xdf, 0xff, 0xe0, 0xff, 0xe0, 0xff,\n  0xe1, 0xff, 0xe2, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xee, 0xff,\n  0xf4, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x0a, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x10, 0x00, 0x12, 0x00,\n  0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x12, 0x00, 0x12, 0x00,\n  0x10, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x12, 0x00, 0x12, 0x00, 0x10, 0x00,\n  0x0f, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x09, 0x00, 0x06, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf3, 0xff,\n  0xf0, 0xff, 0xee, 0xff, 0xed, 0xff, 0xeb, 0xff, 0xea, 0xff, 0xe9, 0xff,\n  0xe7, 0xff, 0xe5, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe4, 0xff,\n  0xe5, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xee, 0xff,\n  0xf1, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x09, 0x00, 0x0d, 0x00, 0x12, 0x00, 0x16, 0x00, 0x19, 0x00, 0x1c, 0x00,\n  0x1e, 0x00, 0x20, 0x00, 0x22, 0x00, 0x23, 0x00, 0x24, 0x00, 0x24, 0x00,\n  0x23, 0x00, 0x22, 0x00, 0x24, 0x00, 0x24, 0x00, 0x23, 0x00, 0x23, 0x00,\n  0x25, 0x00, 0x26, 0x00, 0x23, 0x00, 0x21, 0x00, 0x1b, 0x00, 0x16, 0x00,\n  0x10, 0x00, 0x09, 0x00, 0x02, 0x00, 0xfd, 0xff, 0xf6, 0xff, 0xef, 0xff,\n  0xe9, 0xff, 0xe2, 0xff, 0xde, 0xff, 0xd9, 0xff, 0xd4, 0xff, 0xd2, 0xff,\n  0xcf, 0xff, 0xcd, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xcd, 0xff, 0xce, 0xff,\n  0xd1, 0xff, 0xd2, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0xdf, 0xff,\n  0xe4, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0x05, 0x00, 0x0c, 0x00, 0x12, 0x00, 0x17, 0x00, 0x1c, 0x00, 0x20, 0x00,\n  0x25, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x25, 0x00,\n  0x24, 0x00, 0x26, 0x00, 0x26, 0x00, 0x27, 0x00, 0x26, 0x00, 0x25, 0x00,\n  0x22, 0x00, 0x1f, 0x00, 0x1b, 0x00, 0x17, 0x00, 0x13, 0x00, 0x0f, 0x00,\n  0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf5, 0xff,\n  0xf0, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe2, 0xff,\n  0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xdf, 0xff, 0xe0, 0xff, 0xe2, 0xff,\n  0xe4, 0xff, 0xe9, 0xff, 0xee, 0xff, 0xf1, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x06, 0x00, 0x07, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0c, 0x00,\n  0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00,\n  0x0e, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x12, 0x00, 0x11, 0x00,\n  0x0f, 0x00, 0x0e, 0x00, 0x0c, 0x00, 0x09, 0x00, 0x06, 0x00, 0x04, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf7, 0xff, 0xf4, 0xff,\n  0xf3, 0xff, 0xf1, 0xff, 0xed, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe5, 0xff,\n  0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe5, 0xff, 0xe7, 0xff,\n  0xe8, 0xff, 0xea, 0xff, 0xec, 0xff, 0xee, 0xff, 0xf0, 0xff, 0xf4, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x0a, 0x00,\n  0x0f, 0x00, 0x12, 0x00, 0x14, 0x00, 0x19, 0x00, 0x1b, 0x00, 0x1d, 0x00,\n  0x1e, 0x00, 0x20, 0x00, 0x21, 0x00, 0x21, 0x00, 0x20, 0x00, 0x20, 0x00,\n  0x20, 0x00, 0x22, 0x00, 0x27, 0x00, 0x29, 0x00, 0x2a, 0x00, 0x27, 0x00,\n  0x25, 0x00, 0x20, 0x00, 0x1b, 0x00, 0x15, 0x00, 0x0f, 0x00, 0x08, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xf4, 0xff, 0xee, 0xff, 0xe7, 0xff, 0xe2, 0xff,\n  0xdc, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xcf, 0xff, 0xce, 0xff,\n  0xcd, 0xff, 0xcd, 0xff, 0xcf, 0xff, 0xd0, 0xff, 0xd2, 0xff, 0xd6, 0xff,\n  0xd7, 0xff, 0xda, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xeb, 0xff,\n  0xf2, 0xff, 0xf7, 0xff, 0xfd, 0xff, 0x01, 0x00, 0x07, 0x00, 0x0d, 0x00,\n  0x12, 0x00, 0x17, 0x00, 0x1c, 0x00, 0x1e, 0x00, 0x1f, 0x00, 0x20, 0x00,\n  0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x23, 0x00, 0x22, 0x00, 0x22, 0x00,\n  0x24, 0x00, 0x26, 0x00, 0x25, 0x00, 0x24, 0x00, 0x22, 0x00, 0x20, 0x00,\n  0x1d, 0x00, 0x1a, 0x00, 0x15, 0x00, 0x11, 0x00, 0x0c, 0x00, 0x08, 0x00,\n  0x03, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf7, 0xff, 0xf3, 0xff, 0xee, 0xff,\n  0xeb, 0xff, 0xe7, 0xff, 0xe5, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe0, 0xff,\n  0xe0, 0xff, 0xdf, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xf1, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf7, 0xff, 0xf8, 0xff,\n  0xfa, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x03, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x09, 0x00, 0x0b, 0x00,\n  0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0f, 0x00,\n  0x12, 0x00, 0x13, 0x00, 0x15, 0x00, 0x14, 0x00, 0x14, 0x00, 0x12, 0x00,\n  0x10, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xfa, 0xff, 0xf6, 0xff, 0xf0, 0xff,\n  0xec, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe5, 0xff, 0xe4, 0xff, 0xe3, 0xff,\n  0xe3, 0xff, 0xe4, 0xff, 0xe5, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xea, 0xff,\n  0xeb, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xfa, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0c, 0x00, 0x0e, 0x00,\n  0x12, 0x00, 0x15, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1d, 0x00,\n  0x1e, 0x00, 0x1e, 0x00, 0x1e, 0x00, 0x20, 0x00, 0x24, 0x00, 0x27, 0x00,\n  0x29, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x27, 0x00, 0x23, 0x00, 0x1e, 0x00,\n  0x19, 0x00, 0x12, 0x00, 0x0c, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfa, 0xff,\n  0xf3, 0xff, 0xee, 0xff, 0xe7, 0xff, 0xe2, 0xff, 0xde, 0xff, 0xd8, 0xff,\n  0xd6, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xd0, 0xff, 0xce, 0xff, 0xd0, 0xff,\n  0xd1, 0xff, 0xd3, 0xff, 0xd5, 0xff, 0xd9, 0xff, 0xdc, 0xff, 0xde, 0xff,\n  0xe1, 0xff, 0xe5, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x12, 0x00, 0x14, 0x00,\n  0x16, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1e, 0x00, 0x1f, 0x00,\n  0x20, 0x00, 0x21, 0x00, 0x21, 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, 0x00,\n  0x24, 0x00, 0x24, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1e, 0x00, 0x1b, 0x00,\n  0x17, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xea, 0xff,\n  0xe7, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe5, 0xff,\n  0xe9, 0xff, 0xeb, 0xff, 0xee, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff,\n  0xf0, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff,\n  0xf7, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x06, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0b, 0x00,\n  0x0d, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x10, 0x00, 0x12, 0x00, 0x15, 0x00,\n  0x17, 0x00, 0x17, 0x00, 0x19, 0x00, 0x17, 0x00, 0x15, 0x00, 0x15, 0x00,\n  0x12, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x03, 0x00,\n  0x00, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xf1, 0xff, 0xee, 0xff, 0xea, 0xff,\n  0xe8, 0xff, 0xe7, 0xff, 0xe5, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe5, 0xff,\n  0xe5, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xeb, 0xff, 0xeb, 0xff, 0xed, 0xff,\n  0xf0, 0xff, 0xf2, 0xff, 0xf4, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x12, 0x00,\n  0x14, 0x00, 0x16, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1d, 0x00,\n  0x22, 0x00, 0x24, 0x00, 0x27, 0x00, 0x27, 0x00, 0x29, 0x00, 0x28, 0x00,\n  0x27, 0x00, 0x24, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x16, 0x00, 0x10, 0x00,\n  0x0b, 0x00, 0x04, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf3, 0xff, 0xee, 0xff,\n  0xe8, 0xff, 0xe3, 0xff, 0xdf, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xd6, 0xff,\n  0xd4, 0xff, 0xd3, 0xff, 0xd3, 0xff, 0xd3, 0xff, 0xd4, 0xff, 0xd7, 0xff,\n  0xd9, 0xff, 0xdc, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe5, 0xff, 0xe8, 0xff,\n  0xec, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xfa, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x07, 0x00, 0x0a, 0x00, 0x0c, 0x00, 0x0f, 0x00, 0x11, 0x00, 0x14, 0x00,\n  0x16, 0x00, 0x19, 0x00, 0x1b, 0x00, 0x1d, 0x00, 0x1e, 0x00, 0x1f, 0x00,\n  0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x22, 0x00, 0x23, 0x00, 0x24, 0x00,\n  0x23, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x15, 0x00,\n  0x10, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfb, 0xff,\n  0xf7, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xeb, 0xff, 0xe9, 0xff, 0xe5, 0xff,\n  0xe4, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xeb, 0xff, 0xec, 0xff,\n  0xeb, 0xff, 0xee, 0xff, 0xed, 0xff, 0xeb, 0xff, 0xec, 0xff, 0xeb, 0xff,\n  0xeb, 0xff, 0xec, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf3, 0xff,\n  0xf5, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0xfd, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x06, 0x00, 0x09, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0x10, 0x00,\n  0x11, 0x00, 0x12, 0x00, 0x14, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1b, 0x00,\n  0x1c, 0x00, 0x1c, 0x00, 0x1b, 0x00, 0x18, 0x00, 0x18, 0x00, 0x14, 0x00,\n  0x12, 0x00, 0x0e, 0x00, 0x09, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff,\n  0xf7, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xea, 0xff, 0xe9, 0xff,\n  0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe7, 0xff,\n  0xe9, 0xff, 0xec, 0xff, 0xeb, 0xff, 0xee, 0xff, 0xee, 0xff, 0xf0, 0xff,\n  0xf3, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x04, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x13, 0x00,\n  0x14, 0x00, 0x18, 0x00, 0x1e, 0x00, 0x22, 0x00, 0x24, 0x00, 0x26, 0x00,\n  0x25, 0x00, 0x25, 0x00, 0x24, 0x00, 0x24, 0x00, 0x23, 0x00, 0x20, 0x00,\n  0x1c, 0x00, 0x19, 0x00, 0x14, 0x00, 0x0e, 0x00, 0x09, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xf9, 0xff, 0xf4, 0xff, 0xee, 0xff, 0xea, 0xff, 0xe5, 0xff,\n  0xe1, 0xff, 0xde, 0xff, 0xdc, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd8, 0xff,\n  0xd7, 0xff, 0xd8, 0xff, 0xd9, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xe0, 0xff,\n  0xe4, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xeb, 0xff, 0xef, 0xff, 0xf3, 0xff,\n  0xf7, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x08, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x14, 0x00, 0x15, 0x00,\n  0x19, 0x00, 0x1b, 0x00, 0x1c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00,\n  0x0e, 0x00, 0x0e, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x0e, 0x00,\n  0x0e, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x09, 0x00, 0x08, 0x00, 0x06, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfa, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfb, 0xff,\n  0xfd, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x03, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00,\n  0x0a, 0x00, 0x0a, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x06, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfa, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf7, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0c, 0x00,\n  0x0e, 0x00, 0x0e, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x0e, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf3, 0xff,\n  0xf2, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff,\n  0xf1, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xf7, 0xff,\n  0xf8, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0xfd, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00,\n  0x04, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00,\n  0x0b, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x06, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf7, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf4, 0xff, 0xf4, 0xff,\n  0xf4, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf5, 0xff,\n  0xf6, 0xff, 0xf7, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xfd, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x06, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00,\n  0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0d, 0x00,\n  0x0c, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x06, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfa, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00,\n  0x06, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0d, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x0a, 0x00, 0x09, 0x00, 0x09, 0x00, 0x07, 0x00, 0x06, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfd, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf4, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf4, 0xff,\n  0xf4, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfa, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x04, 0x00,\n  0x06, 0x00, 0x07, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00,\n  0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x08, 0x00, 0x06, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfb, 0xff,\n  0xfa, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf4, 0xff,\n  0xf4, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff,\n  0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xf6, 0xff,\n  0xf7, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x06, 0x00, 0x07, 0x00, 0x09, 0x00,\n  0x0a, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0e, 0x00,\n  0x0f, 0x00, 0x0f, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x08, 0x00, 0x06, 0x00, 0x05, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfd, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xf9, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf7, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00,\n  0x09, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00,\n  0x0a, 0x00, 0x0a, 0x00, 0x09, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x06, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfd, 0xff, 0xfb, 0xff, 0xfa, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf7, 0xff,\n  0xf8, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfa, 0xff,\n  0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0c, 0x00,\n  0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x0d, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf8, 0xff,\n  0xf7, 0xff, 0xf5, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf3, 0xff, 0xf2, 0xff,\n  0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff,\n  0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf7, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00,\n  0x05, 0x00, 0x06, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0b, 0x00, 0x0b, 0x00,\n  0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00,\n  0x0c, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xf8, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff,\n  0xf7, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xfa, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x09, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x06, 0x00, 0x06, 0x00, 0x05, 0x00, 0x06, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfa, 0xff,\n  0xfa, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf7, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfa, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00,\n  0x09, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0b, 0x00,\n  0x0c, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0b, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x06, 0x00, 0x06, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfd, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff,\n  0xf1, 0xff, 0xf1, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff,\n  0xf5, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfd, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x0c, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0c, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0x09, 0x00, 0x07, 0x00, 0x06, 0x00, 0x05, 0x00,\n  0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfd, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x06, 0x00, 0x06, 0x00,\n  0x06, 0x00, 0x06, 0x00, 0x06, 0x00, 0x06, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfa, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x03, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00,\n  0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x09, 0x00,\n  0x09, 0x00, 0x0a, 0x00, 0x09, 0x00, 0x08, 0x00, 0x07, 0x00, 0x05, 0x00,\n  0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfd, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xf7, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf3, 0xff, 0xf2, 0xff,\n  0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff,\n  0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xf7, 0xff,\n  0xf8, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x03, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00,\n  0x0b, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00,\n  0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x09, 0x00, 0x08, 0x00, 0x06, 0x00, 0x06, 0x00, 0x04, 0x00, 0x03, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf7, 0xff,\n  0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf8, 0xff,\n  0xf8, 0xff\n};\n#define  tr808_cb_wav_len 33290\nunsigned char tr808_cl_wav[] = {\n  0x52, 0x49, 0x46, 0x46, 0x7c, 0x76, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45,\n  0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00,\n  0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e,\n  0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61,\n  0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61,\n  0x74, 0x61, 0x36, 0x76, 0x00, 0x00, 0xcc, 0xff, 0xc8, 0xff, 0x08, 0x00,\n  0x05, 0x00, 0x71, 0x00, 0x11, 0x00, 0x6f, 0x01, 0xb6, 0xff, 0x16, 0x13,\n  0x88, 0x25, 0xe8, 0x2a, 0x94, 0x2b, 0x72, 0x16, 0x51, 0x01, 0x21, 0xf1,\n  0xee, 0xe8, 0xc8, 0xec, 0x48, 0xdc, 0xff, 0xd8, 0xd0, 0xe5, 0xf1, 0xf8,\n  0x8b, 0xfe, 0xb7, 0x01, 0x9d, 0x01, 0x57, 0xee, 0x55, 0xe8, 0xc1, 0xd1,\n  0xea, 0xe0, 0xb2, 0x05, 0x7e, 0x06, 0x7f, 0x14, 0x1d, 0x1e, 0x53, 0x12,\n  0xb8, 0x07, 0x9f, 0xfd, 0xc4, 0xee, 0x33, 0xf4, 0xc2, 0xff, 0x56, 0xf7,\n  0x1c, 0xec, 0x2b, 0xe2, 0x00, 0xf6, 0x19, 0x11, 0x80, 0x15, 0xb8, 0x1d,\n  0x0c, 0x1e, 0x14, 0x1a, 0x5b, 0x26, 0xed, 0x2c, 0x67, 0x3a, 0xf1, 0x2c,\n  0xee, 0x19, 0x89, 0x1b, 0x2c, 0x1f, 0x46, 0x15, 0x88, 0xfe, 0xff, 0xea,\n  0x74, 0xdc, 0xcb, 0xe2, 0xa2, 0xe9, 0x26, 0xf7, 0x89, 0xf0, 0xc2, 0xe6,\n  0xc1, 0xec, 0xda, 0xed, 0x78, 0xe9, 0x62, 0xe4, 0x40, 0xf5, 0x7c, 0x00,\n  0x0b, 0x06, 0x84, 0x09, 0x55, 0xfd, 0x0c, 0xf2, 0xc0, 0xed, 0x73, 0xf3,\n  0x68, 0xfa, 0x81, 0xf7, 0x79, 0xf2, 0xd7, 0xf7, 0x63, 0xfd, 0xec, 0xf9,\n  0x12, 0xf8, 0xab, 0x01, 0xe2, 0x07, 0x81, 0x0e, 0x28, 0x14, 0x28, 0x1a,\n  0xdb, 0x24, 0xea, 0x2c, 0x31, 0x2c, 0x28, 0x2b, 0x56, 0x2b, 0xd9, 0x20,\n  0xe8, 0x13, 0x1d, 0x09, 0x5c, 0x05, 0xd7, 0xfd, 0xbe, 0xf7, 0xaf, 0xef,\n  0xc2, 0xe4, 0x39, 0xdd, 0x20, 0xd8, 0x6d, 0xd0, 0xc4, 0xcc, 0x26, 0xdb,\n  0xeb, 0xe2, 0x10, 0xe9, 0xe2, 0xf6, 0xf5, 0x02, 0x60, 0x04, 0x43, 0x05,\n  0x58, 0x06, 0x0f, 0x04, 0xb0, 0x06, 0x6e, 0x0d, 0xfb, 0x10, 0x45, 0x09,\n  0x57, 0x02, 0xfd, 0xfd, 0x25, 0xfb, 0xf5, 0xfd, 0x8b, 0x04, 0x8e, 0x05,\n  0xb5, 0x08, 0xb5, 0x0b, 0xf9, 0x0b, 0x37, 0x0f, 0x70, 0x0a, 0x8c, 0x06,\n  0x1b, 0x04, 0xbc, 0x05, 0x8f, 0x09, 0xa9, 0x09, 0xcc, 0x0b, 0xde, 0x08,\n  0x1c, 0x06, 0x10, 0x06, 0x84, 0xff, 0x7f, 0x00, 0x53, 0xf6, 0x21, 0xef,\n  0x59, 0xf0, 0xef, 0xed, 0xd5, 0xee, 0xcd, 0xec, 0x6a, 0xe8, 0xb1, 0xe6,\n  0x52, 0xea, 0x91, 0xf0, 0xca, 0xee, 0xe2, 0xeb, 0x5e, 0xef, 0xde, 0xf2,\n  0x27, 0xfd, 0x85, 0x03, 0x24, 0x01, 0x68, 0x00, 0x96, 0xff, 0x5d, 0x08,\n  0xdd, 0x0a, 0x14, 0x0d, 0xbf, 0x10, 0x54, 0x13, 0x83, 0x11, 0x58, 0x0a,\n  0x1c, 0x0a, 0x50, 0x0c, 0x5e, 0x0b, 0x9e, 0x09, 0xe6, 0x0c, 0x0a, 0x11,\n  0x8a, 0x14, 0x77, 0x0e, 0xa0, 0x04, 0x7f, 0xfd, 0x82, 0xf7, 0xb9, 0xf8,\n  0xe1, 0xf8, 0x87, 0xf5, 0x50, 0xf3, 0x2d, 0xf8, 0x36, 0xfb, 0x25, 0x00,\n  0x3b, 0x04, 0x53, 0x06, 0xd7, 0x06, 0xcf, 0x05, 0x8b, 0x05, 0x93, 0x01,\n  0x49, 0xfe, 0xcc, 0xfb, 0xe5, 0xfa, 0x75, 0xf8, 0xf4, 0xf6, 0x27, 0xf5,\n  0xa1, 0xf1, 0x0f, 0xf2, 0x4c, 0xf4, 0x03, 0xf5, 0x4a, 0xf6, 0x0d, 0xfd,\n  0xd5, 0x02, 0xe3, 0x04, 0x2e, 0x04, 0xbb, 0x04, 0x08, 0x05, 0x47, 0x05,\n  0xe2, 0x05, 0xdb, 0x02, 0x76, 0x01, 0xd1, 0x03, 0xef, 0x02, 0x7e, 0x01,\n  0x4b, 0x02, 0xca, 0x01, 0x27, 0xff, 0x5d, 0xfb, 0xd9, 0xf9, 0x15, 0xfd,\n  0xb0, 0x00, 0x4c, 0xfe, 0x7d, 0xfc, 0x4b, 0xfd, 0x66, 0xff, 0x0d, 0x02,\n  0xcb, 0x05, 0xa7, 0x08, 0x17, 0x07, 0xf8, 0x06, 0x66, 0x05, 0xaf, 0x03,\n  0x60, 0x01, 0x3d, 0x00, 0xff, 0x02, 0x53, 0x03, 0x37, 0x01, 0xdf, 0xfe,\n  0xcd, 0xf8, 0x21, 0xf5, 0xb7, 0xf6, 0x24, 0xf8, 0x81, 0xf8, 0x59, 0xf9,\n  0x31, 0xfa, 0xb5, 0xfe, 0xad, 0x00, 0x13, 0x01, 0x7f, 0x02, 0x57, 0x02,\n  0x41, 0x02, 0x97, 0x00, 0x2d, 0xfe, 0x91, 0xfa, 0xf0, 0xf9, 0x49, 0xfa,\n  0x0f, 0xfd, 0xb5, 0x00, 0xab, 0x02, 0x01, 0x03, 0x83, 0x03, 0x78, 0x07,\n  0x5b, 0x06, 0xd7, 0x03, 0xab, 0x01, 0x5c, 0xff, 0xf3, 0xfc, 0x45, 0xfc,\n  0x7e, 0xfa, 0xd1, 0xfc, 0xda, 0x00, 0xd5, 0x02, 0x0b, 0x06, 0x96, 0x06,\n  0xf7, 0x03, 0xad, 0x02, 0x07, 0x02, 0x13, 0x00, 0x7d, 0xff, 0x25, 0x01,\n  0xaf, 0x03, 0x0c, 0x05, 0xde, 0x05, 0x76, 0x04, 0xd8, 0x01, 0x8a, 0x01,\n  0xc6, 0x01, 0x5f, 0x00, 0x5b, 0xfd, 0x7a, 0xfb, 0xfd, 0xfa, 0x3e, 0xfb,\n  0x94, 0xfa, 0xd0, 0xf8, 0x21, 0xf8, 0xe9, 0xf7, 0x71, 0xf9, 0x8c, 0xfa,\n  0x7f, 0xfc, 0x7b, 0xfd, 0xd0, 0xfb, 0x2d, 0xfb, 0x4d, 0xfc, 0xe8, 0xfe,\n  0x2f, 0x00, 0x26, 0x00, 0x69, 0x01, 0x2f, 0x03, 0xf7, 0x03, 0x1f, 0x04,\n  0x1a, 0x04, 0x1f, 0x02, 0xee, 0x00, 0x3b, 0x03, 0x2c, 0x05, 0x9a, 0x05,\n  0xe4, 0x05, 0xfb, 0x03, 0x63, 0x02, 0x1b, 0x02, 0x81, 0x02, 0x73, 0x02,\n  0xf0, 0x01, 0x73, 0x01, 0x76, 0xfe, 0xa7, 0xfc, 0x89, 0xfc, 0xf7, 0xfd,\n  0x59, 0x00, 0xa4, 0x00, 0x8d, 0x02, 0x33, 0x04, 0xfc, 0x01, 0x48, 0x01,\n  0xf4, 0x00, 0xbf, 0x00, 0x5f, 0x00, 0xad, 0xff, 0x19, 0xfe, 0x77, 0xfc,\n  0xad, 0xfc, 0x83, 0xfc, 0x4b, 0xfd, 0x23, 0xfd, 0x91, 0xfc, 0xdf, 0xfd,\n  0x17, 0xff, 0x87, 0xff, 0xf0, 0xff, 0x61, 0x00, 0xd9, 0x00, 0x23, 0x00,\n  0x7e, 0xfe, 0x63, 0xfd, 0xba, 0xfb, 0x6c, 0xfb, 0x64, 0xfb, 0x79, 0xfb,\n  0x45, 0xfc, 0x27, 0xfe, 0x38, 0xff, 0x5c, 0xff, 0x06, 0x01, 0xf3, 0x01,\n  0xbb, 0x02, 0xbd, 0x02, 0x0b, 0x03, 0x3b, 0x03, 0xed, 0x02, 0x4d, 0x02,\n  0x54, 0x01, 0xb4, 0x01, 0xd3, 0x01, 0xb0, 0x00, 0xbc, 0xff, 0xb4, 0xff,\n  0x38, 0x00, 0x27, 0x01, 0x8e, 0x01, 0x29, 0x00, 0xb6, 0xff, 0x01, 0x00,\n  0xc9, 0xff, 0xd4, 0xff, 0x28, 0x00, 0x4c, 0x00, 0xed, 0xff, 0xba, 0xfe,\n  0xd1, 0xfd, 0x2b, 0xfe, 0x93, 0xfe, 0x18, 0xff, 0x04, 0x00, 0xef, 0x00,\n  0xef, 0x00, 0xf5, 0x00, 0x6f, 0x01, 0xc6, 0x01, 0x31, 0x01, 0x58, 0x00,\n  0xae, 0xff, 0x17, 0x00, 0xd4, 0xff, 0x30, 0xff, 0x77, 0xff, 0x75, 0xff,\n  0x53, 0xff, 0x88, 0xfe, 0x8e, 0xfe, 0xaf, 0xfe, 0x57, 0xfe, 0xab, 0xfe,\n  0xd2, 0xfe, 0x29, 0xff, 0x84, 0xff, 0x98, 0xff, 0x50, 0xff, 0x77, 0xff,\n  0x11, 0x00, 0xb9, 0x00, 0xbd, 0x01, 0x63, 0x01, 0x2e, 0x00, 0x35, 0xff,\n  0xc5, 0xff, 0x3b, 0x00, 0xdd, 0x00, 0xfe, 0x00, 0x53, 0x00, 0xc7, 0x00,\n  0xec, 0x00, 0xdf, 0x00, 0x36, 0x01, 0x51, 0x01, 0x54, 0x01, 0xfb, 0x00,\n  0x32, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x09, 0xff, 0xae, 0xfe, 0x9d, 0xfe,\n  0x43, 0xfe, 0x37, 0xfe, 0x07, 0xfe, 0xb3, 0xfd, 0xf1, 0xfd, 0xd6, 0xfe,\n  0x8a, 0xff, 0x62, 0x00, 0xb8, 0x01, 0x39, 0x02, 0xb9, 0x02, 0xb1, 0x02,\n  0xf0, 0x01, 0x2e, 0x01, 0xa3, 0x00, 0x19, 0x00, 0xbc, 0xff, 0x44, 0xff,\n  0xf9, 0xfe, 0x36, 0xff, 0x90, 0xff, 0x2c, 0xff, 0x7b, 0xfe, 0xa6, 0xfe,\n  0x3c, 0xff, 0xc2, 0xff, 0x37, 0x00, 0x5f, 0x00, 0x1f, 0x00, 0x89, 0xff,\n  0x38, 0xff, 0xa1, 0xff, 0x0e, 0x00, 0xae, 0xff, 0x60, 0xff, 0xf5, 0xff,\n  0x07, 0x00, 0x3d, 0x00, 0x8f, 0x00, 0xa7, 0x00, 0x80, 0x00, 0x16, 0x00,\n  0x3e, 0xff, 0xda, 0xff, 0x09, 0xfb, 0x1b, 0xff, 0x93, 0x02, 0xab, 0xf1,\n  0x89, 0xf9, 0x47, 0x0d, 0x54, 0x09, 0xdf, 0x0d, 0x03, 0x2b, 0x9a, 0x44,\n  0xcc, 0x2f, 0xd7, 0x09, 0x61, 0x01, 0x18, 0xfb, 0x37, 0xee, 0x9a, 0xeb,\n  0xf6, 0xe9, 0xec, 0xee, 0x43, 0x02, 0x25, 0x10, 0xfc, 0xf9, 0x4e, 0xe3,\n  0x22, 0xdc, 0x66, 0xdd, 0x4d, 0xea, 0x2a, 0xec, 0x29, 0xde, 0x6f, 0xdc,\n  0xb6, 0xe0, 0xdc, 0xe2, 0x0d, 0xeb, 0x6f, 0xfd, 0x22, 0x16, 0x31, 0x28,\n  0x25, 0x31, 0x64, 0x2d, 0xc3, 0x14, 0x7e, 0x0b, 0x94, 0x0d, 0xf6, 0x14,\n  0x44, 0x1a, 0xf5, 0x17, 0xaf, 0x13, 0x10, 0x0d, 0x56, 0x1a, 0x1f, 0x31,\n  0x9f, 0x2e, 0x10, 0x22, 0x0d, 0x21, 0x7d, 0x1e, 0x55, 0x0e, 0x09, 0x03,\n  0x1b, 0xfc, 0x24, 0xeb, 0xf7, 0xe4, 0x43, 0xd9, 0x9e, 0xd5, 0xbf, 0xc9,\n  0x12, 0xcb, 0x29, 0xc9, 0x72, 0xb1, 0xb6, 0xaa, 0xe2, 0xb4, 0xbc, 0xc4,\n  0x0e, 0xd2, 0xe1, 0xe9, 0x3d, 0xec, 0x7c, 0xf3, 0x55, 0x01, 0x48, 0x0e,\n  0x3f, 0x1f, 0x08, 0x1b, 0x21, 0x19, 0x35, 0x21, 0x7a, 0x21, 0xef, 0x1f,\n  0x30, 0x1d, 0x69, 0x12, 0x3f, 0x16, 0x8b, 0x17, 0x33, 0x07, 0x51, 0x0d,\n  0x98, 0x1e, 0x3a, 0x26, 0x4a, 0x2f, 0x4e, 0x2c, 0x7f, 0x20, 0xe1, 0x14,\n  0xdf, 0x10, 0x62, 0x15, 0x9a, 0x13, 0xb5, 0x0d, 0x6c, 0x0c, 0x83, 0x00,\n  0x64, 0xf0, 0x01, 0xf1, 0xbb, 0xf1, 0x5f, 0xe5, 0x2f, 0xe4, 0xb6, 0xe9,\n  0x41, 0xec, 0xb5, 0xe7, 0x1c, 0xe5, 0x41, 0xe3, 0x16, 0xed, 0x98, 0xf4,\n  0x12, 0xf1, 0x13, 0xed, 0x20, 0xf3, 0x47, 0xf4, 0xdc, 0xf4, 0x10, 0xf4,\n  0xf0, 0xec, 0x41, 0xea, 0x9d, 0xeb, 0xab, 0xec, 0x48, 0xee, 0x0d, 0xfc,\n  0x67, 0x0e, 0xaf, 0x1c, 0x79, 0x1d, 0xc8, 0x1b, 0x36, 0x19, 0x13, 0x1b,\n  0x07, 0x25, 0xa3, 0x2a, 0xb5, 0x1f, 0x09, 0x11, 0xb9, 0x00, 0x49, 0xfa,\n  0x09, 0xfe, 0xeb, 0x05, 0x9b, 0x03, 0xe3, 0xf6, 0x01, 0xf1, 0x29, 0xf3,\n  0x69, 0xf1, 0x3a, 0xf3, 0xfa, 0xf6, 0x41, 0xf3, 0x58, 0xf1, 0x91, 0xed,\n  0xd5, 0xee, 0x02, 0xe7, 0x53, 0xde, 0xb8, 0xe8, 0x9a, 0xf1, 0x60, 0xf8,\n  0xd3, 0xfd, 0xbb, 0x05, 0x5b, 0x10, 0x70, 0x0f, 0xce, 0x06, 0x79, 0xfe,\n  0x99, 0x03, 0xa4, 0x00, 0xd7, 0xfc, 0xff, 0x09, 0x03, 0x13, 0x5e, 0x14,\n  0xf0, 0x11, 0x6a, 0x16, 0x1f, 0x16, 0x3a, 0x0c, 0xff, 0x06, 0x68, 0x08,\n  0x3a, 0x0c, 0x7e, 0x12, 0xdb, 0x15, 0x3e, 0x1b, 0x3f, 0x15, 0x58, 0x09,\n  0x73, 0x01, 0xfb, 0x02, 0x8b, 0x07, 0xe8, 0x04, 0xb8, 0xfb, 0x69, 0xf5,\n  0xb9, 0xf4, 0xdb, 0xea, 0x2c, 0xe5, 0x37, 0xe2, 0x6e, 0xe1, 0xb1, 0xe0,\n  0x63, 0xe2, 0xe2, 0xe4, 0xca, 0xeb, 0xe0, 0xee, 0x5e, 0xf1, 0x1c, 0xfb,\n  0xc3, 0xff, 0xf0, 0xff, 0x31, 0x02, 0x09, 0x03, 0x3b, 0x06, 0x01, 0x09,\n  0x66, 0x09, 0x4f, 0x0d, 0x42, 0x0e, 0x0a, 0x10, 0x7f, 0x10, 0x1d, 0x0d,\n  0xda, 0x0c, 0xad, 0x0d, 0xfe, 0x07, 0x67, 0x04, 0xef, 0xfc, 0x64, 0xf6,\n  0xac, 0xfb, 0x1f, 0xfd, 0x6d, 0xfd, 0xc7, 0x01, 0xbd, 0x03, 0x2d, 0x03,\n  0xc9, 0x02, 0x13, 0x00, 0xd5, 0xfd, 0xbd, 0xfb, 0x55, 0xfe, 0x32, 0x00,\n  0xbf, 0xf7, 0x8a, 0xf2, 0xe3, 0xf2, 0xf9, 0xf3, 0xd1, 0xf5, 0x44, 0xff,\n  0x4a, 0x07, 0xec, 0x06, 0xf3, 0x02, 0x8f, 0xfd, 0x71, 0xfd, 0x29, 0xfb,\n  0x39, 0xf9, 0xd3, 0xf7, 0x6d, 0xfc, 0xcf, 0x03, 0xc7, 0x08, 0x30, 0x0b,\n  0xdd, 0x0a, 0x60, 0x0a, 0x76, 0x0a, 0xef, 0x0c, 0x59, 0x0e, 0x80, 0x0e,\n  0xc5, 0x0c, 0x17, 0x08, 0x8c, 0xff, 0xc9, 0xfb, 0xf9, 0xfb, 0xa9, 0xfc,\n  0xc9, 0xfc, 0xc5, 0xfd, 0x87, 0xfc, 0xc5, 0xf8, 0x9d, 0xf8, 0x49, 0xf8,\n  0xe2, 0xf6, 0x72, 0xf5, 0x8a, 0xf8, 0xf5, 0xf9, 0x69, 0xfb, 0xc6, 0xfb,\n  0x1d, 0xfc, 0x63, 0xfe, 0x30, 0xfb, 0x50, 0xfa, 0x90, 0xfb, 0xa0, 0xfe,\n  0xa3, 0x03, 0x5c, 0x06, 0x65, 0x09, 0x28, 0x09, 0x3f, 0x08, 0x4f, 0x06,\n  0x03, 0x05, 0x9b, 0x03, 0x1e, 0xff, 0x3d, 0xfd, 0x0f, 0xfd, 0x14, 0x00,\n  0x6a, 0x00, 0x60, 0x01, 0xf4, 0x01, 0x22, 0x04, 0xa8, 0x07, 0xaa, 0x08,\n  0xd3, 0x07, 0x4e, 0x06, 0x03, 0x04, 0xd5, 0xfe, 0x48, 0xfb, 0xd4, 0xfa,\n  0x5d, 0xfc, 0x9e, 0xfb, 0x15, 0xfa, 0x59, 0xf9, 0x81, 0xf8, 0x09, 0xf9,\n  0x5d, 0xf8, 0x82, 0xf6, 0x51, 0xf4, 0xa3, 0xf6, 0x3b, 0xfc, 0x0f, 0xff,\n  0xb6, 0x00, 0x45, 0x02, 0xfb, 0x02, 0x83, 0x05, 0x44, 0x06, 0x2c, 0x05,\n  0x0b, 0x05, 0x71, 0x03, 0xdb, 0x01, 0x3f, 0xff, 0x9d, 0xfe, 0xcf, 0xff,\n  0x24, 0xff, 0xd3, 0xfe, 0xa8, 0xfe, 0x0d, 0xfd, 0x53, 0xfc, 0x1f, 0xfd,\n  0xd2, 0xfe, 0x6a, 0x01, 0x3d, 0x02, 0x72, 0x01, 0x34, 0x01, 0x45, 0x02,\n  0x6c, 0x04, 0xd9, 0x03, 0xe8, 0x00, 0x58, 0xfe, 0x32, 0xff, 0x76, 0x00,\n  0x91, 0x00, 0xff, 0x01, 0xa5, 0x02, 0xcc, 0x01, 0x65, 0x00, 0xcc, 0xfe,\n  0xc7, 0xfd, 0xa9, 0xfe, 0x75, 0x01, 0x8f, 0x02, 0x3b, 0x03, 0x03, 0x04,\n  0x2b, 0x05, 0xf7, 0x04, 0x1b, 0x02, 0x67, 0x00, 0x06, 0xff, 0x19, 0xfd,\n  0xd5, 0xfc, 0x53, 0xfc, 0x01, 0xfd, 0x6c, 0xfe, 0xa8, 0xfe, 0x46, 0xfe,\n  0x0c, 0xff, 0xd0, 0xfe, 0x4f, 0xfe, 0x54, 0xff, 0x69, 0xfe, 0xe9, 0xfd,\n  0xe3, 0xfc, 0xd5, 0xfd, 0xe1, 0xfd, 0x54, 0xfe, 0x57, 0xff, 0x9d, 0xfe,\n  0xd8, 0xfe, 0x56, 0xff, 0xcb, 0xff, 0xef, 0xff, 0x8f, 0x00, 0x51, 0x01,\n  0xae, 0x01, 0x71, 0x02, 0xe7, 0x02, 0x03, 0x03, 0x31, 0x01, 0xe9, 0x00,\n  0x1c, 0x01, 0x75, 0xff, 0xc0, 0xff, 0x53, 0x00, 0x2f, 0x00, 0xb5, 0xfe,\n  0xcd, 0xfd, 0xaf, 0xfd, 0x1f, 0xfd, 0xdb, 0xfd, 0x4a, 0xff, 0x9b, 0x00,\n  0x01, 0x01, 0x59, 0x00, 0xa1, 0xff, 0x3b, 0x00, 0x37, 0x01, 0x79, 0x01,\n  0x7e, 0x01, 0x8e, 0x00, 0x6b, 0x00, 0xa6, 0x00, 0x9b, 0xff, 0xc4, 0xfe,\n  0x7e, 0xfe, 0x55, 0xfe, 0xc9, 0xfd, 0xe5, 0xfd, 0x80, 0xff, 0x38, 0x00,\n  0xa4, 0xff, 0xf2, 0xff, 0x69, 0x01, 0x41, 0x03, 0xe5, 0x03, 0x9f, 0x02,\n  0x71, 0x02, 0x35, 0x03, 0xd5, 0x03, 0xe5, 0x02, 0xc3, 0x01, 0x8a, 0x01,\n  0x40, 0x01, 0xe8, 0x00, 0x1b, 0x01, 0xf7, 0x00, 0xda, 0x00, 0x88, 0x00,\n  0x4a, 0xff, 0x2a, 0xfe, 0x03, 0xfe, 0xcd, 0xfd, 0x85, 0xfd, 0xbb, 0xfd,\n  0xdd, 0xfd, 0x15, 0xfd, 0x43, 0xfd, 0x07, 0xfd, 0x63, 0xfc, 0x57, 0xfc,\n  0x45, 0xfc, 0xcb, 0xfc, 0x6d, 0xfd, 0x2b, 0xfd, 0x76, 0xfe, 0xbf, 0x00,\n  0xe7, 0x01, 0xf3, 0x02, 0x07, 0x03, 0x0b, 0x03, 0x65, 0x03, 0xdf, 0x03,\n  0xb3, 0x03, 0xab, 0x02, 0x90, 0x01, 0x09, 0x01, 0x3e, 0x00, 0xb6, 0xff,\n  0xb0, 0xff, 0x84, 0xff, 0x4d, 0xff, 0x84, 0xff, 0x50, 0x00, 0x95, 0x00,\n  0x2c, 0x00, 0xce, 0xff, 0xcb, 0xff, 0xf5, 0xff, 0x0d, 0x00, 0xf7, 0xfe,\n  0xe7, 0xfd, 0xeb, 0xfd, 0x36, 0xfe, 0x00, 0xff, 0xd2, 0xff, 0x34, 0x00,\n  0x29, 0x00, 0xa1, 0xff, 0xbc, 0xff, 0x83, 0x00, 0x3c, 0x01, 0x12, 0x01,\n  0x22, 0x01, 0xb9, 0x00, 0xd7, 0xff, 0x02, 0x00, 0x78, 0xff, 0xd9, 0xfe,\n  0xb5, 0xfe, 0xea, 0xfe, 0x86, 0xff, 0x3b, 0x00, 0xc1, 0x00, 0x0d, 0x01,\n  0x10, 0x01, 0x1c, 0x01, 0xb7, 0x01, 0x94, 0x01, 0xb9, 0x00, 0x98, 0x00,\n  0x40, 0x00, 0x55, 0x00, 0x34, 0x00, 0x8a, 0xff, 0xf0, 0xfe, 0xe3, 0xfd,\n  0xc1, 0xfd, 0xc1, 0xfe, 0x56, 0xff, 0x80, 0xff, 0xce, 0xff, 0xcf, 0xff,\n  0xf3, 0xff, 0x63, 0xff, 0x0c, 0xff, 0xc4, 0xfe, 0x30, 0xff, 0xfc, 0xff,\n  0x2e, 0x00, 0xd4, 0xff, 0xa5, 0xff, 0x95, 0x00, 0x51, 0x01, 0xb2, 0x01,\n  0xe5, 0x01, 0x79, 0x01, 0xc5, 0x00, 0x67, 0x00, 0x01, 0x00, 0xe6, 0xff,\n  0x7c, 0x00, 0x91, 0x00, 0x26, 0x00, 0x90, 0xff, 0xd1, 0xff, 0xba, 0xff,\n  0x50, 0x00, 0x57, 0xff, 0x8c, 0xff, 0xa6, 0xfe, 0x7d, 0xff, 0x72, 0xfe,\n  0xf7, 0x00, 0x41, 0xf8, 0x51, 0xec, 0xa9, 0xf5, 0x61, 0x02, 0xee, 0x25,\n  0x15, 0x21, 0x34, 0x1e, 0x4d, 0x24, 0x47, 0x0f, 0x09, 0x02, 0x74, 0xf0,\n  0xea, 0xf5, 0xfa, 0xf9, 0xf4, 0xdf, 0xe1, 0xda, 0x96, 0xd8, 0x8e, 0xd8,\n  0xa5, 0xe8, 0x5e, 0x05, 0x9f, 0x06, 0xf2, 0xfb, 0x89, 0xf1, 0x0a, 0xe8,\n  0x37, 0xe7, 0x71, 0xe4, 0x16, 0xd7, 0xb4, 0xde, 0xb2, 0x00, 0x2d, 0x01,\n  0x93, 0x03, 0x4f, 0x0a, 0x10, 0x10, 0x19, 0x1f, 0xd2, 0x33, 0xb9, 0x3d,\n  0x0a, 0x2b, 0xcd, 0x22, 0xbf, 0x29, 0x69, 0x2e, 0x7e, 0x33, 0x6e, 0x33,\n  0xe8, 0x30, 0x1f, 0x22, 0xdd, 0x0d, 0xf1, 0xfb, 0xf7, 0xf1, 0x41, 0xef,\n  0x98, 0xec, 0xd0, 0xe3, 0xbc, 0xd2, 0xfd, 0xd3, 0xe4, 0xe2, 0x9a, 0xec,\n  0xd3, 0xf1, 0x11, 0xf6, 0x3e, 0xf9, 0x9c, 0x09, 0x0a, 0x0f, 0x58, 0x04,\n  0x25, 0x01, 0x56, 0xf1, 0x31, 0xec, 0xa9, 0xfa, 0xe3, 0xf2, 0x57, 0xec,\n  0x9f, 0xf6, 0xf0, 0x05, 0x8d, 0x11, 0x1f, 0x15, 0xf3, 0x19, 0xcf, 0x1e,\n  0xeb, 0x1a, 0xcc, 0x17, 0xb9, 0x08, 0xa8, 0xec, 0x32, 0xf0, 0x16, 0xf4,\n  0x68, 0xf0, 0xad, 0xe5, 0x7a, 0xd8, 0x7a, 0xcf, 0xa1, 0xc1, 0x16, 0xc7,\n  0x50, 0xd2, 0xc3, 0xdf, 0x01, 0xef, 0x10, 0x00, 0xfd, 0x0a, 0x52, 0x0d,\n  0x62, 0x23, 0x1e, 0x3c, 0x8a, 0x3a, 0x70, 0x2e, 0xa1, 0x23, 0xa5, 0x22,\n  0xfd, 0x26, 0x67, 0x2a, 0x61, 0x24, 0xf8, 0x19, 0x76, 0x15, 0x8d, 0x0b,\n  0x33, 0x02, 0x35, 0xf9, 0x22, 0xf0, 0xdd, 0xe1, 0x70, 0xdc, 0x9b, 0xdb,\n  0x5f, 0xd9, 0xb2, 0xd9, 0xe8, 0xd6, 0x3a, 0xd7, 0x7a, 0xe2, 0x31, 0xe7,\n  0xf3, 0xf2, 0x6f, 0x05, 0x4f, 0x13, 0xd2, 0x1a, 0xd0, 0x12, 0x67, 0x0c,\n  0x55, 0x0d, 0xb9, 0x0e, 0x03, 0x04, 0xc5, 0xf8, 0xf8, 0xf7, 0x93, 0xfe,\n  0xba, 0xff, 0x36, 0xf8, 0x4e, 0xfa, 0xaf, 0xfd, 0xf5, 0x03, 0x21, 0x0e,\n  0x19, 0x0d, 0x95, 0x11, 0x77, 0x08, 0x7f, 0x00, 0x54, 0xf9, 0x4e, 0xf6,\n  0x39, 0xfb, 0xb2, 0xfa, 0x39, 0xff, 0x3f, 0x02, 0xd4, 0x05, 0x20, 0x08,\n  0xdf, 0x02, 0x75, 0xff, 0x95, 0xfc, 0x20, 0xf9, 0x68, 0xe9, 0xb2, 0xe7,\n  0x6f, 0xf2, 0x34, 0xfb, 0x19, 0xfd, 0x0b, 0x03, 0xea, 0x0a, 0xb5, 0x15,\n  0x90, 0x1a, 0xbf, 0x15, 0x89, 0x16, 0xfd, 0x1a, 0x38, 0x1c, 0x1d, 0x13,\n  0x56, 0x0a, 0x23, 0x02, 0xd6, 0x08, 0x45, 0x08, 0xe9, 0xfc, 0xff, 0xf6,\n  0xf1, 0xf3, 0xd0, 0xf2, 0x78, 0xee, 0x91, 0xeb, 0x7e, 0xef, 0xd8, 0xf8,\n  0x2b, 0x03, 0xc3, 0x02, 0xcd, 0x00, 0x4d, 0x00, 0x9a, 0x01, 0x8d, 0x03,\n  0xd8, 0xff, 0x8a, 0xfe, 0x3c, 0x01, 0x09, 0x02, 0x67, 0x01, 0xf0, 0xff,\n  0x49, 0xf8, 0x04, 0xf4, 0x89, 0xf3, 0x3f, 0xf5, 0x39, 0xf8, 0x8b, 0xf6,\n  0x0c, 0xf4, 0xff, 0xf0, 0xd7, 0xef, 0xe6, 0xf0, 0xba, 0xf1, 0x91, 0xfa,\n  0x01, 0x01, 0x7b, 0x05, 0xd4, 0x05, 0x51, 0x08, 0xca, 0x0f, 0x1e, 0x15,\n  0x94, 0x12, 0x0c, 0x0c, 0x91, 0x0c, 0xcd, 0x08, 0x39, 0x03, 0x2f, 0x02,\n  0x75, 0x02, 0xee, 0x08, 0x7f, 0x0a, 0x8d, 0x02, 0xbe, 0x01, 0x4f, 0x04,\n  0x87, 0x08, 0x78, 0x08, 0xbe, 0x07, 0x60, 0x04, 0xc9, 0xfd, 0xd6, 0xf7,\n  0xfc, 0xf5, 0xa0, 0xf2, 0x7a, 0xed, 0xae, 0xec, 0xbd, 0xef, 0xc0, 0xf3,\n  0x0a, 0xf4, 0x48, 0xf9, 0x65, 0xfd, 0xad, 0xff, 0x55, 0x00, 0x50, 0xff,\n  0xcd, 0xfd, 0x06, 0xfe, 0x0f, 0x05, 0xff, 0x07, 0x23, 0x05, 0xee, 0x00,\n  0x79, 0x01, 0x8c, 0x00, 0xf6, 0xff, 0x1c, 0x00, 0xfd, 0xfe, 0x95, 0xfc,\n  0x8f, 0xfd, 0xb3, 0x02, 0xaf, 0x04, 0x3d, 0x03, 0x65, 0x03, 0xe7, 0x05,\n  0xbc, 0x05, 0x1c, 0x04, 0x11, 0x03, 0x09, 0x02, 0xff, 0x01, 0xca, 0x04,\n  0x57, 0x08, 0x2f, 0x0c, 0xf8, 0x0f, 0xfd, 0x0d, 0x1c, 0x08, 0x17, 0x04,\n  0xed, 0xfe, 0xd1, 0xfc, 0xa5, 0xfc, 0xd5, 0xf8, 0xfc, 0xf5, 0x3b, 0xf3,\n  0x03, 0xf2, 0x51, 0xf5, 0x50, 0xf4, 0x81, 0xf3, 0xea, 0xf5, 0x5e, 0xf7,\n  0x94, 0xf8, 0xbd, 0xfb, 0x03, 0xfd, 0xcb, 0xfd, 0x28, 0xfe, 0xcc, 0xf7,\n  0xba, 0xf7, 0xe5, 0xfa, 0xed, 0xfb, 0xc2, 0xff, 0x36, 0x06, 0x60, 0x0a,\n  0x30, 0x07, 0x28, 0x06, 0xff, 0x05, 0x32, 0x07, 0x38, 0x08, 0x6f, 0x08,\n  0xdc, 0x07, 0x02, 0x07, 0x6c, 0x08, 0xd2, 0x0a, 0xfc, 0x0b, 0xa0, 0x09,\n  0xdf, 0x04, 0x83, 0x00, 0xc9, 0xff, 0xb7, 0xfe, 0xfd, 0xfe, 0xc1, 0xfe,\n  0x15, 0xfd, 0x6a, 0xfa, 0xa8, 0xf9, 0x82, 0xf9, 0xe9, 0xf9, 0xbe, 0xfa,\n  0x26, 0xfb, 0xf9, 0xf9, 0xad, 0xf9, 0x9c, 0xfb, 0x9e, 0xfb, 0xc0, 0xfb,\n  0xf9, 0xfd, 0xa3, 0x00, 0x87, 0x04, 0xba, 0x06, 0x65, 0x03, 0xd3, 0xfd,\n  0xf3, 0xfc, 0x91, 0x00, 0xcc, 0x01, 0x01, 0x02, 0x74, 0x00, 0x0b, 0x00,\n  0xd8, 0x01, 0xec, 0x00, 0x48, 0x04, 0x37, 0x0d, 0x0c, 0x11, 0x06, 0x13,\n  0x72, 0x2d, 0xc7, 0x31, 0x69, 0x22, 0x3b, 0x30, 0xc3, 0x2e, 0x7e, 0x26,\n  0xdb, 0x04, 0xb6, 0xf0, 0x21, 0xe5, 0xe4, 0xce, 0x32, 0xc7, 0x25, 0xb1,\n  0xe9, 0xb2, 0x44, 0xc8, 0xd4, 0xed, 0x58, 0x01, 0xc5, 0x03, 0x2c, 0xff,\n  0xf6, 0x08, 0x81, 0x0e, 0x23, 0x06, 0xcd, 0x02, 0x8d, 0xe6, 0xad, 0xe8,\n  0x9c, 0xf9, 0x37, 0xf4, 0x2d, 0xe9, 0x74, 0xdc, 0xb2, 0xce, 0xda, 0xdf,\n  0xf7, 0x00, 0x31, 0x29, 0x2b, 0x31, 0x0e, 0x18, 0xb1, 0x16, 0x3b, 0x1e,\n  0x1f, 0x1b, 0xd9, 0x1a, 0x84, 0x1c, 0x7f, 0x0c, 0xb7, 0x03, 0xd6, 0x07,\n  0x3a, 0x0a, 0x0e, 0x07, 0x95, 0xfb, 0x8d, 0x01, 0x96, 0x14, 0x1f, 0x2c,\n  0x5b, 0x29, 0x9d, 0x1f, 0x59, 0x1c, 0xe1, 0xfd, 0x03, 0xe3, 0xa1, 0xd7,\n  0x41, 0xde, 0x1c, 0xe6, 0x99, 0xdd, 0x27, 0xdd, 0xb7, 0xe6, 0x9e, 0x0c,\n  0xdf, 0x29, 0x00, 0x28, 0x5a, 0x24, 0x81, 0x1f, 0x89, 0x16, 0x63, 0x05,\n  0x6a, 0x04, 0x44, 0x0d, 0x67, 0x06, 0x23, 0xef, 0xb5, 0xdf, 0x47, 0xcb,\n  0xd5, 0xc8, 0x0b, 0xd7, 0x41, 0xea, 0xfb, 0x03, 0x0f, 0x07, 0xbc, 0xf9,\n  0x06, 0xfe, 0x91, 0xfd, 0xe4, 0x09, 0x06, 0x0e, 0x59, 0x03, 0x7f, 0xf7,\n  0x0f, 0x06, 0xee, 0x11, 0x6f, 0x0e, 0x4f, 0x01, 0x7d, 0xff, 0x15, 0xf8,\n  0x89, 0xf3, 0x21, 0xf2, 0x7b, 0xfe, 0x8b, 0x06, 0xbd, 0x0e, 0xfb, 0x06,\n  0xc4, 0xeb, 0xfe, 0xe4, 0x80, 0xe4, 0x2c, 0xdd, 0x91, 0xe4, 0xc4, 0xf6,\n  0x36, 0x01, 0x91, 0x0d, 0xfe, 0x09, 0x2e, 0x08, 0x0f, 0x04, 0x68, 0x0e,\n  0xc6, 0x16, 0xf2, 0x11, 0x98, 0x16, 0x31, 0x09, 0x21, 0x11, 0xdc, 0x17,\n  0xbf, 0x04, 0x34, 0xee, 0x40, 0xdf, 0x0e, 0xed, 0xce, 0x00, 0xb9, 0x09,\n  0xc9, 0xf8, 0xb8, 0xe8, 0xef, 0xee, 0x16, 0x04, 0x1c, 0x11, 0x08, 0x24,\n  0x30, 0x1c, 0xbf, 0x09, 0x0c, 0x18, 0x53, 0x2a, 0x16, 0x26, 0x9e, 0x0a,\n  0x28, 0xf4, 0x07, 0xe8, 0x29, 0xf0, 0x95, 0xfc, 0xec, 0xe7, 0x30, 0xd6,\n  0xae, 0xdc, 0x3b, 0xe4, 0x33, 0xf4, 0xef, 0x0c, 0x79, 0x16, 0x46, 0x10,\n  0x9f, 0x08, 0xf5, 0x03, 0x32, 0xf9, 0xa0, 0xf8, 0xf4, 0x04, 0xd3, 0x03,\n  0xa0, 0xf8, 0xf2, 0xed, 0xf6, 0xf0, 0x15, 0xfb, 0x7c, 0x07, 0x4b, 0x06,\n  0x1d, 0x09, 0x96, 0x1c, 0xdf, 0x2b, 0x5c, 0x2d, 0x88, 0x1c, 0x1b, 0x1a,\n  0xc6, 0x1f, 0x5d, 0x23, 0x4c, 0x2b, 0xaa, 0x23, 0xb7, 0x0e, 0xe1, 0xf5,\n  0x3a, 0xd9, 0x29, 0xbf, 0x5c, 0xb2, 0xd0, 0xb6, 0x0d, 0xcc, 0x23, 0xd2,\n  0xc8, 0xcc, 0x6e, 0xd7, 0x87, 0xeb, 0xde, 0xea, 0x39, 0xfd, 0x23, 0x03,\n  0xde, 0x01, 0xa5, 0x0e, 0x82, 0x04, 0x33, 0x05, 0x83, 0x1a, 0x7e, 0x1e,\n  0x1a, 0x2a, 0x7f, 0x34, 0xff, 0x1f, 0xfb, 0x1c, 0xc4, 0x19, 0xe4, 0x0c,\n  0xe8, 0x0d, 0x5e, 0x13, 0xfe, 0x15, 0xfd, 0x17, 0xc9, 0x1b, 0xe6, 0x12,\n  0xb2, 0x04, 0xa3, 0xf6, 0x91, 0xe3, 0xfc, 0xe1, 0x8e, 0xe8, 0x0b, 0xe1,\n  0xac, 0xe3, 0xde, 0xe1, 0xce, 0xe8, 0xc9, 0xfb, 0x97, 0x08, 0xbf, 0xff,\n  0x27, 0xe0, 0xe7, 0xf0, 0x37, 0x09, 0x38, 0x09, 0xe3, 0x07, 0x0e, 0x00,\n  0xaa, 0x00, 0xf6, 0x01, 0x30, 0xff, 0x5f, 0xf3, 0x06, 0xf3, 0x8e, 0x00,\n  0x88, 0x19, 0x7f, 0x28, 0xde, 0x1e, 0xfc, 0x0c, 0xfc, 0x08, 0xaf, 0x14,\n  0xaf, 0x13, 0xcc, 0x0f, 0xd6, 0xfe, 0x77, 0xe4, 0x9e, 0xd8, 0x89, 0xd4,\n  0x19, 0xc8, 0x35, 0xbe, 0x2d, 0xc5, 0x6a, 0xc1, 0xd5, 0xcb, 0xc3, 0xd7,\n  0x50, 0xda, 0x0e, 0xf4, 0x6e, 0x19, 0x15, 0x2d, 0x22, 0x15, 0x21, 0x01,\n  0x83, 0x06, 0x3f, 0x13, 0x51, 0x1f, 0x7d, 0x36, 0x8d, 0x4e, 0x1d, 0x5b,\n  0xb6, 0x50, 0x84, 0x43, 0x36, 0x38, 0x26, 0x2c, 0xd6, 0x29, 0xec, 0x2f,\n  0x86, 0x2d, 0xc2, 0x26, 0x65, 0x14, 0xf3, 0xfd, 0x2c, 0xe8, 0x50, 0xda,\n  0x3b, 0xd6, 0x87, 0xc7, 0xb7, 0xc3, 0x4e, 0xca, 0xc3, 0xd3, 0x6a, 0xdf,\n  0x8b, 0xe8, 0x4f, 0xf4, 0x3e, 0x09, 0x12, 0x0b, 0x5f, 0x03, 0x91, 0xee,\n  0x27, 0xdd, 0x9d, 0xd3, 0xc8, 0xd1, 0x27, 0xe2, 0x90, 0xe9, 0x40, 0xee,\n  0xda, 0xf2, 0x11, 0xeb, 0x02, 0xed, 0x23, 0xef, 0x88, 0xf5, 0x97, 0x04,\n  0xe8, 0x13, 0x53, 0x17, 0x50, 0x25, 0x8e, 0x30, 0x4c, 0x34, 0x3d, 0x25,\n  0xd1, 0x0f, 0x05, 0x03, 0x45, 0xf8, 0x7f, 0x01, 0x6f, 0x04, 0xea, 0x06,\n  0xbf, 0x0b, 0x43, 0x1b, 0xa3, 0x1e, 0x6c, 0x1b, 0x63, 0x16, 0xd4, 0x09,\n  0xfd, 0xf9, 0xa0, 0xf5, 0x19, 0xfc, 0x35, 0xfc, 0x19, 0xfa, 0x31, 0xf7,\n  0xc8, 0xea, 0x31, 0xee, 0x54, 0xeb, 0xc2, 0xe3, 0x58, 0xe8, 0x2a, 0xed,\n  0x90, 0xe9, 0x05, 0xea, 0x7c, 0xee, 0xce, 0xf8, 0xbb, 0x00, 0x1c, 0x04,\n  0x00, 0x05, 0xe5, 0x08, 0x0d, 0x17, 0x9e, 0x1b, 0x6c, 0x1b, 0x7f, 0x26,\n  0x94, 0x29, 0x32, 0x1d, 0xbe, 0x19, 0xc2, 0x1e, 0x3f, 0x10, 0x57, 0xfd,\n  0x1f, 0xf1, 0xf1, 0xf2, 0xe4, 0xee, 0x4d, 0xea, 0xb8, 0xeb, 0x2c, 0xf3,\n  0x71, 0xef, 0xf3, 0xe0, 0xcb, 0xe8, 0xb9, 0xdf, 0x3d, 0xdd, 0x6e, 0xd7,\n  0x46, 0xd0, 0xf4, 0xdd, 0xf8, 0xe0, 0x86, 0xda, 0xd4, 0xd6, 0x85, 0xde,\n  0x1c, 0xf1, 0xf0, 0x04, 0x50, 0x15, 0x1c, 0x26, 0xab, 0x32, 0x32, 0x3a,\n  0xc5, 0x43, 0x93, 0x4f, 0x2e, 0x4f, 0xa0, 0x3d, 0xa4, 0x27, 0xbe, 0x1a,\n  0xcc, 0x08, 0x4c, 0xfa, 0x5e, 0x04, 0x6e, 0x1f, 0x37, 0x2b, 0x97, 0x28,\n  0x75, 0x23, 0xc9, 0x0d, 0xb1, 0xfe, 0x85, 0xf8, 0x81, 0x01, 0x3f, 0x12,\n  0x01, 0x0c, 0x22, 0x00, 0x2f, 0xee, 0x2d, 0xe6, 0xdc, 0xd9, 0x2e, 0xc9,\n  0x26, 0xc5, 0x02, 0xcb, 0xb7, 0xc5, 0x32, 0xc3, 0xa4, 0xd1, 0x9f, 0xd4,\n  0xd7, 0xd9, 0x8e, 0xe8, 0x9c, 0xf8, 0xf9, 0xf5, 0xe4, 0xeb, 0xd0, 0xeb,\n  0x41, 0xf1, 0x0d, 0xfb, 0xf2, 0x00, 0x18, 0x04, 0xae, 0x06, 0xaf, 0x0d,\n  0xc5, 0x1a, 0x16, 0x20, 0x44, 0x0f, 0xe9, 0xfb, 0x92, 0x00, 0xf3, 0x02,\n  0xf8, 0xf1, 0x52, 0xf4, 0x4c, 0x04, 0xce, 0x0f, 0xef, 0x1a, 0x96, 0x27,\n  0x88, 0x39, 0x85, 0x36, 0x29, 0x2f, 0x26, 0x36, 0x64, 0x31, 0x4d, 0x30,\n  0x26, 0x35, 0x5e, 0x2e, 0xe2, 0x1b, 0x4c, 0x14, 0xfa, 0x0f, 0xbc, 0xf5,\n  0x34, 0xed, 0xa3, 0xe1, 0x08, 0xd8, 0x9d, 0xe2, 0x0d, 0xde, 0x97, 0xd4,\n  0x81, 0xd4, 0xae, 0xd3, 0xb6, 0xc4, 0x4a, 0xc2, 0x32, 0xcd, 0x27, 0xe3,\n  0x75, 0xfc, 0x9b, 0x00, 0xca, 0xf0, 0x87, 0xeb, 0xc9, 0xf8, 0x1f, 0x0b,\n  0x9c, 0x11, 0x81, 0x19, 0xf9, 0x17, 0x8c, 0x0f, 0x0f, 0x11, 0x2a, 0x1b,\n  0xc7, 0x25, 0x20, 0x33, 0x23, 0x30, 0xae, 0x1d, 0x62, 0x1d, 0xcd, 0x1c,\n  0xcd, 0x0e, 0xfd, 0x03, 0x65, 0xf9, 0x1d, 0xee, 0xb7, 0xde, 0x44, 0xdd,\n  0x12, 0xe9, 0xae, 0xf0, 0xa0, 0xef, 0x5e, 0xf2, 0xca, 0xf6, 0xc2, 0xfb,\n  0xb3, 0x02, 0xbd, 0x02, 0x1a, 0x04, 0x42, 0x01, 0x2b, 0xfc, 0x4d, 0xf8,\n  0x72, 0xfb, 0xc7, 0x02, 0x12, 0x01, 0x5d, 0xfc, 0xaf, 0xf7, 0xb6, 0xf0,\n  0xd4, 0xed, 0xb8, 0xe4, 0xf4, 0xea, 0xdf, 0x01, 0x0d, 0x0e, 0xf9, 0x14,\n  0x65, 0x0a, 0x2d, 0x02, 0xe0, 0x0b, 0xdf, 0x08, 0x3c, 0x08, 0x49, 0x00,\n  0x61, 0xf0, 0x11, 0xee, 0x60, 0xf0, 0x5e, 0xf1, 0x32, 0xf2, 0xc6, 0xfe,\n  0x9c, 0x0c, 0x09, 0x11, 0x31, 0x12, 0xd2, 0x08, 0x5c, 0x0c, 0xe4, 0x16,\n  0x9b, 0x25, 0xe8, 0x31, 0xa7, 0x2d, 0xfc, 0x21, 0xf3, 0x11, 0x16, 0xfe,\n  0x90, 0xe3, 0xa4, 0xde, 0xd5, 0xe2, 0x10, 0xec, 0xf9, 0xf0, 0x11, 0xee,\n  0xce, 0xe4, 0x10, 0xe3, 0x13, 0xe7, 0x69, 0xf3, 0xe6, 0x07, 0xe9, 0x0e,\n  0x4c, 0x0d, 0x21, 0x0a, 0x0a, 0x0d, 0xf2, 0x14, 0x0d, 0x1f, 0xda, 0x1f,\n  0x88, 0x19, 0x46, 0x12, 0x22, 0x04, 0xdd, 0xf9, 0x96, 0xf2, 0xfd, 0xef,\n  0xda, 0xf9, 0xe1, 0x01, 0x82, 0x05, 0xd1, 0xfb, 0x01, 0x01, 0x1f, 0x0b,\n  0x64, 0x0a, 0xac, 0x07, 0x0d, 0x0a, 0x64, 0x07, 0x5a, 0xfe, 0x34, 0xfb,\n  0xf9, 0xf9, 0xba, 0xf7, 0xc1, 0xf0, 0x37, 0xf7, 0x04, 0x08, 0x1b, 0xff,\n  0x1a, 0xf3, 0x31, 0xe8, 0x0d, 0xde, 0xef, 0xdd, 0xb0, 0xe5, 0xaa, 0xf9,\n  0xdc, 0x08, 0xd4, 0x1d, 0x3d, 0x29, 0x91, 0x1f, 0x69, 0x11, 0xc8, 0x08,\n  0x4b, 0x02, 0xbf, 0xf6, 0xf3, 0xec, 0xd4, 0xed, 0xd1, 0xf6, 0xd6, 0xf7,\n  0xac, 0xf6, 0x6d, 0xfb, 0xf1, 0xfb, 0xb9, 0xf2, 0x19, 0xf0, 0x6c, 0xf4,\n  0x05, 0xfa, 0xfd, 0xfd, 0x67, 0x03, 0x97, 0x03, 0x19, 0xf8, 0xd4, 0xf6,\n  0xdb, 0xf7, 0x10, 0x0c, 0xf2, 0x12, 0x5f, 0x0c, 0x21, 0x14, 0x95, 0x1e,\n  0x73, 0x26, 0xbe, 0x25, 0x08, 0x18, 0xba, 0x06, 0x6b, 0xfc, 0xdc, 0xfe,\n  0xd3, 0x04, 0xf6, 0x11, 0xa9, 0x17, 0x50, 0x0e, 0xd5, 0x02, 0x18, 0xf9,\n  0x5a, 0xfa, 0x17, 0x04, 0xd9, 0x09, 0xc7, 0x02, 0xd4, 0xf9, 0x8b, 0xf0,\n  0xb1, 0xf2, 0xce, 0xf3, 0xde, 0xef, 0x5a, 0xe6, 0x6b, 0xdd, 0x58, 0xe1,\n  0x46, 0xde, 0xdb, 0xe4, 0x21, 0xee, 0x16, 0xf1, 0xd0, 0xf4, 0x87, 0xf5,\n  0x36, 0xeb, 0x11, 0xf0, 0x09, 0x02, 0x12, 0x0e, 0x57, 0x0b, 0xb8, 0x06,\n  0x15, 0x0c, 0x34, 0x12, 0x4e, 0x17, 0x3a, 0x19, 0x2e, 0x14, 0x8b, 0xfe,\n  0x41, 0xf3, 0x74, 0xf6, 0xcd, 0xfd, 0x1c, 0x04, 0xbd, 0x09, 0x8e, 0x0b,\n  0xbf, 0x10, 0x5f, 0x0f, 0xef, 0x0e, 0xf5, 0x17, 0x7a, 0x16, 0x51, 0x16,\n  0x68, 0x13, 0x24, 0x16, 0x27, 0x0f, 0xd9, 0x03, 0xb1, 0x08, 0x62, 0x0b,\n  0xe9, 0x0b, 0xff, 0x05, 0x97, 0x03, 0xc9, 0xf6, 0x26, 0xf0, 0x71, 0xf0,\n  0xe5, 0xe7, 0x7a, 0xea, 0x16, 0xf5, 0x11, 0xf9, 0xa0, 0x00, 0x39, 0xfd,\n  0x79, 0xf0, 0xb5, 0xe4, 0x66, 0xe2, 0x57, 0xec, 0xd3, 0xf3, 0x4e, 0xf3,\n  0x30, 0xfb, 0xe9, 0x09, 0x6c, 0x0e, 0x21, 0x13, 0xea, 0x14, 0x4a, 0x0b,\n  0x73, 0x07, 0x7e, 0x05, 0x21, 0xff, 0x64, 0x06, 0xc9, 0x0a, 0x81, 0x0b,\n  0x5a, 0x06, 0x42, 0xff, 0x64, 0xfb, 0xb5, 0xfe, 0x70, 0xfe, 0xc9, 0xf7,\n  0x41, 0xf9, 0xb4, 0xf9, 0x09, 0xfe, 0x25, 0xf9, 0x45, 0xf8, 0x8e, 0xfe,\n  0xd7, 0x03, 0x5e, 0x08, 0x75, 0x0b, 0xf2, 0x06, 0x45, 0x02, 0x05, 0xfb,\n  0xa9, 0xfd, 0x36, 0x0c, 0x3c, 0x14, 0xaa, 0x10, 0xd7, 0x0e, 0x29, 0x13,\n  0x56, 0x12, 0xd5, 0x0c, 0x90, 0x05, 0xbc, 0xf6, 0x86, 0xec, 0x4c, 0xee,\n  0x92, 0xe9, 0x7c, 0xe8, 0xc9, 0xf1, 0x1b, 0xf4, 0x41, 0xf1, 0x2b, 0xec,\n  0xb7, 0xe5, 0x05, 0xe1, 0xf1, 0xe1, 0x36, 0xf0, 0xad, 0xfb, 0x0d, 0x00,\n  0xf4, 0x10, 0xcc, 0x18, 0x1f, 0x1d, 0x9f, 0x17, 0x3f, 0x16, 0x93, 0x19,\n  0x78, 0x18, 0xcf, 0x17, 0x56, 0x14, 0x9f, 0x15, 0xbd, 0x0e, 0x3f, 0x0b,\n  0xe5, 0x0a, 0x9b, 0xff, 0x63, 0xee, 0xbe, 0xdf, 0xb9, 0xde, 0xbf, 0xe7,\n  0xaa, 0xeb, 0xeb, 0xf1, 0x3f, 0xf5, 0x8a, 0xf1, 0xb4, 0xf2, 0x54, 0xf1,\n  0xd4, 0xf9, 0xbc, 0xff, 0x9b, 0x02, 0xbd, 0x08, 0xbb, 0x04, 0xd7, 0xfc,\n  0x01, 0xf9, 0xa5, 0xff, 0x8f, 0x06, 0x07, 0x09, 0x1d, 0x0c, 0xc3, 0x11,\n  0xa9, 0x0f, 0x9b, 0x12, 0x8b, 0x10, 0x37, 0x04, 0x07, 0xfd, 0x5f, 0xfd,\n  0x8f, 0x07, 0xfa, 0x0f, 0x7a, 0x0e, 0xf9, 0x0e, 0x8e, 0x11, 0xf6, 0x19,\n  0xb0, 0x1a, 0xa8, 0x0b, 0x4b, 0x06, 0x98, 0x09, 0x43, 0x05, 0x32, 0xf3,\n  0x82, 0xeb, 0x21, 0xe6, 0x0f, 0xe0, 0x51, 0xe3, 0x5c, 0xed, 0x72, 0xf4,\n  0x18, 0xf2, 0xd4, 0xea, 0xe1, 0xef, 0xde, 0xfb, 0xbf, 0x03, 0xe8, 0x01,\n  0x74, 0xff, 0x4f, 0x06, 0x61, 0x00, 0x5a, 0xfa, 0x7c, 0xf8, 0x4d, 0xfc,\n  0xda, 0x04, 0x6f, 0x06, 0x10, 0x06, 0x85, 0x08, 0x28, 0x07, 0x7b, 0x01,\n  0xb7, 0xfe, 0xf9, 0xfe, 0xb6, 0xff, 0xe8, 0xfa, 0x48, 0xf8, 0x6d, 0x00,\n  0xd6, 0x05, 0x55, 0x02, 0xaa, 0x06, 0x13, 0x15, 0x05, 0x15, 0xff, 0x09,\n  0x83, 0x03, 0x64, 0xf0, 0x38, 0xea, 0x4a, 0xf5, 0xcf, 0xfe, 0x4d, 0xfd,\n  0x2b, 0x00, 0x94, 0x04, 0xd1, 0x09, 0x9b, 0x00, 0x2b, 0xfc, 0xbd, 0xfb,\n  0xfb, 0xfc, 0x97, 0x02, 0x10, 0x04, 0x80, 0x05, 0x5a, 0x06, 0x6a, 0x01,\n  0x53, 0xfc, 0xc6, 0xff, 0x40, 0x00, 0x09, 0xf9, 0x38, 0xf4, 0xfc, 0xfb,\n  0x26, 0x04, 0xbd, 0x09, 0xac, 0x0e, 0x3f, 0x1a, 0x24, 0x1f, 0xf2, 0x18,\n  0x84, 0x0e, 0xe5, 0x02, 0x0a, 0xfe, 0x0f, 0x02, 0x21, 0xfd, 0x85, 0xfc,\n  0xcd, 0xfd, 0xed, 0xf9, 0xe8, 0xf4, 0xbf, 0xed, 0x63, 0xf1, 0x26, 0xf3,\n  0x59, 0xf1, 0xf4, 0xe4, 0xd7, 0xe7, 0x2a, 0xf5, 0x96, 0xf0, 0x58, 0xf1,\n  0x25, 0xfd, 0x45, 0x08, 0x5f, 0x06, 0x2a, 0xff, 0x1f, 0xfd, 0x2f, 0x05,\n  0x07, 0x0f, 0xf4, 0x10, 0x9b, 0x10, 0x39, 0x17, 0x70, 0x13, 0x71, 0x0c,\n  0x54, 0x0b, 0x37, 0x0a, 0xa9, 0x0d, 0xfa, 0x10, 0x4f, 0x11, 0xaf, 0x10,\n  0xbf, 0x0b, 0x34, 0x0a, 0x47, 0x09, 0x08, 0x05, 0xad, 0xfa, 0xcc, 0xf1,\n  0x0a, 0xfa, 0xeb, 0x05, 0x4b, 0x05, 0xff, 0x05, 0xe9, 0x08, 0x57, 0xfd,\n  0x39, 0xfb, 0xe1, 0xf4, 0xf1, 0xe6, 0x52, 0xe5, 0x51, 0xe6, 0x9b, 0xe7,\n  0x12, 0xe8, 0xa5, 0xe2, 0x10, 0xdb, 0x67, 0xd6, 0x65, 0xdd, 0x63, 0xe9,\n  0xe7, 0xef, 0xf2, 0xf6, 0x96, 0xfa, 0x43, 0xfc, 0x10, 0x07, 0xc2, 0x11,\n  0xf2, 0x14, 0x82, 0x10, 0x4a, 0x0f, 0x37, 0x0f, 0x7f, 0x10, 0xbf, 0x10,\n  0x15, 0x0f, 0x42, 0x14, 0x61, 0x18, 0x4f, 0x16, 0x9f, 0x0e, 0x42, 0x13,\n  0x73, 0x19, 0x51, 0x16, 0x52, 0x0d, 0x1e, 0x05, 0x22, 0xfe, 0x3f, 0xfd,\n  0x85, 0xf8, 0x88, 0xf1, 0x0d, 0xec, 0xda, 0xeb, 0xc0, 0xec, 0x6f, 0xed,\n  0xa0, 0xf2, 0x32, 0xf5, 0xc3, 0xff, 0x41, 0x08, 0x03, 0x07, 0xb9, 0x03,\n  0x64, 0x08, 0x65, 0x0d, 0x80, 0x0b, 0x7d, 0xfd, 0xfc, 0xf2, 0xc7, 0xf4,\n  0x25, 0xed, 0x67, 0xeb, 0xb1, 0xf5, 0x80, 0xf9, 0x7d, 0xf8, 0x63, 0xf5,\n  0x82, 0xf6, 0x51, 0x02, 0x7b, 0x02, 0xbe, 0xf9, 0x07, 0xf7, 0xe4, 0xf4,\n  0xb4, 0xf8, 0x09, 0xfd, 0x64, 0x00, 0x47, 0x06, 0xb6, 0x09, 0x90, 0x0b,\n  0xb7, 0x0d, 0x02, 0x0f, 0x4e, 0x14, 0x18, 0x1a, 0xbc, 0x19, 0x83, 0x15,\n  0xfa, 0x07, 0x79, 0x03, 0xe1, 0x03, 0xe5, 0x01, 0xb8, 0x06, 0x9f, 0x01,\n  0xc4, 0x01, 0x15, 0x02, 0xd3, 0xfc, 0x0d, 0xfa, 0x29, 0x03, 0xae, 0x0b,\n  0xef, 0x06, 0x93, 0x02, 0x6e, 0x07, 0x8e, 0x0b, 0xc3, 0x02, 0x0d, 0xfa,\n  0x9e, 0xf1, 0xc0, 0xe7, 0x1e, 0xea, 0xa1, 0xf3, 0xb0, 0xf9, 0x86, 0xf8,\n  0x5a, 0xf8, 0x4f, 0xf7, 0x5f, 0xf4, 0x97, 0xf5, 0xbc, 0xf2, 0xe4, 0xf2,\n  0x10, 0xf4, 0x2b, 0xf4, 0xca, 0xef, 0x2f, 0xf3, 0xe1, 0xfb, 0x58, 0x01,\n  0x8b, 0x05, 0x7b, 0x07, 0x01, 0x0a, 0x99, 0x0a, 0x88, 0x0a, 0x72, 0x0e,\n  0x72, 0x14, 0xfd, 0x16, 0x5d, 0x1e, 0xef, 0x1b, 0x63, 0x16, 0xd2, 0x13,\n  0x11, 0x0b, 0x5b, 0x05, 0x8b, 0x07, 0xa1, 0x03, 0xf4, 0xfa, 0xd4, 0xfa,\n  0xf1, 0xfb, 0xdd, 0xf8, 0x10, 0xf1, 0xc0, 0xf0, 0x1a, 0xf6, 0x4b, 0xf5,\n  0x4a, 0xf0, 0x96, 0xef, 0xec, 0xf3, 0x5a, 0xf8, 0x1e, 0xf8, 0xd4, 0xf0,\n  0x31, 0xf4, 0xa1, 0xf7, 0xb3, 0xf3, 0x59, 0xf4, 0xf3, 0xf5, 0x25, 0xf8,\n  0x76, 0xf9, 0x55, 0xfb, 0x71, 0x02, 0xde, 0x0b, 0xaf, 0x0d, 0xa5, 0x0b,\n  0x7c, 0x0a, 0xb0, 0xff, 0x89, 0xf5, 0xb7, 0xf0, 0xfa, 0xf1, 0x09, 0xfc,\n  0x42, 0x01, 0x09, 0x02, 0xae, 0x01, 0x92, 0x04, 0x84, 0x08, 0x15, 0x0c,\n  0x5f, 0x13, 0x3c, 0x15, 0x9a, 0x17, 0x2c, 0x1f, 0x1f, 0x1f, 0xb6, 0x17,\n  0xa5, 0x11, 0x97, 0x0e, 0x58, 0x07, 0xf7, 0x05, 0x35, 0x0a, 0x86, 0x09,\n  0xe4, 0x08, 0x78, 0x07, 0x81, 0xff, 0xb7, 0xfe, 0x98, 0xf9, 0xaf, 0xf1,\n  0xe2, 0xea, 0x2c, 0xed, 0x89, 0xf0, 0x51, 0xeb, 0x7f, 0xeb, 0x2e, 0xeb,\n  0xbf, 0xee, 0x76, 0xf2, 0x2e, 0xf2, 0xc5, 0xec, 0xa8, 0xe6, 0x96, 0xe9,\n  0x81, 0xeb, 0xf5, 0xea, 0x8d, 0xef, 0xf8, 0xf6, 0x43, 0xf6, 0x54, 0xf2,\n  0x2a, 0xf8, 0x85, 0xfb, 0x5d, 0xff, 0xfa, 0x04, 0xa2, 0x0b, 0xb4, 0x10,\n  0x2c, 0x10, 0x49, 0x0d, 0xb5, 0x0a, 0xda, 0x10, 0x1c, 0x16, 0x9b, 0x16,\n  0xc8, 0x16, 0x02, 0x12, 0x9f, 0x0c, 0xd3, 0x07, 0x05, 0x03, 0xf5, 0x02,\n  0x52, 0x0d, 0x51, 0x10, 0x4c, 0x11, 0x75, 0x10, 0xcf, 0x07, 0xc7, 0x02,\n  0x0a, 0x04, 0xde, 0x06, 0x98, 0x05, 0x81, 0x01, 0x4a, 0xf8, 0xe7, 0xf5,\n  0x64, 0xf8, 0x06, 0xf6, 0x01, 0xf1, 0x6e, 0xee, 0x1e, 0xef, 0x1f, 0xf1,\n  0x16, 0xee, 0x0b, 0xea, 0x7e, 0xec, 0x05, 0xec, 0x77, 0xf0, 0x50, 0xf9,\n  0x8c, 0x00, 0xe5, 0x08, 0x27, 0x0c, 0xe7, 0x06, 0x50, 0x05, 0xfe, 0x04,\n  0x7f, 0x05, 0xbe, 0x05, 0x0f, 0x09, 0x7c, 0x0a, 0xb2, 0x05, 0x4d, 0x00,\n  0x5c, 0xfa, 0x5a, 0xf5, 0xc7, 0xf5, 0x4d, 0xfd, 0x09, 0x03, 0x50, 0x05,\n  0x93, 0xff, 0x66, 0xff, 0xf0, 0x05, 0x3f, 0x08, 0x4f, 0x01, 0xf5, 0xfc,\n  0xc2, 0xff, 0x55, 0x03, 0xe1, 0x01, 0xcc, 0xfe, 0x8e, 0x04, 0x39, 0x0e,\n  0xa7, 0x0f, 0xa6, 0x0a, 0x10, 0x0a, 0x3f, 0x09, 0xce, 0x06, 0x27, 0x02,\n  0xed, 0xf8, 0x20, 0xee, 0xb7, 0xec, 0xf3, 0xf1, 0x5f, 0xf3, 0xee, 0xee,\n  0x24, 0xee, 0x3c, 0xf4, 0x63, 0xfc, 0x13, 0x04, 0x53, 0x03, 0x6e, 0xff,\n  0x8b, 0x00, 0x6f, 0x09, 0xf1, 0x0f, 0xd6, 0x12, 0x8f, 0x11, 0x1f, 0x0c,\n  0xbb, 0x04, 0x69, 0xff, 0xef, 0xff, 0x46, 0x07, 0x5c, 0x09, 0xbe, 0x07,\n  0xab, 0x05, 0x9b, 0x03, 0xac, 0x01, 0x1b, 0xfd, 0xe5, 0xfd, 0xe1, 0xf8,\n  0x03, 0xf1, 0x0e, 0xf0, 0x30, 0xf6, 0x55, 0xfe, 0x2f, 0x00, 0xd7, 0xfc,\n  0x43, 0xfd, 0x0c, 0xff, 0xf8, 0xff, 0x90, 0xff, 0x11, 0xfc, 0xe0, 0xf1,\n  0x3e, 0xf1, 0x28, 0xfb, 0xfc, 0x01, 0x5e, 0x04, 0x02, 0x04, 0xf6, 0x06,\n  0x22, 0x04, 0xdd, 0x00, 0x11, 0x03, 0xaf, 0x03, 0x13, 0x04, 0x1a, 0x04,\n  0xd2, 0xfe, 0x5f, 0xf7, 0xac, 0xf8, 0x21, 0xfc, 0xb9, 0xfd, 0xc1, 0xfd,\n  0xba, 0xff, 0xeb, 0x00, 0x5e, 0x00, 0x5a, 0x01, 0xbb, 0x00, 0xd1, 0xff,\n  0x3a, 0x00, 0x40, 0x01, 0xb2, 0xfe, 0x21, 0xfc, 0xd6, 0x00, 0x89, 0x03,\n  0x4b, 0x05, 0x3f, 0x05, 0xc3, 0xff, 0x5c, 0xff, 0x1d, 0xfa, 0x8f, 0xfc,\n  0x84, 0x01, 0x6a, 0xfe, 0x80, 0xff, 0x37, 0x04, 0x5c, 0x05, 0x6e, 0x06,\n  0xa4, 0x06, 0x0e, 0x07, 0x27, 0x07, 0x0f, 0x02, 0x24, 0xfe, 0x2e, 0xf9,\n  0xe9, 0xf5, 0x87, 0xf5, 0x17, 0xf7, 0x84, 0xf9, 0x11, 0xfc, 0x4c, 0xfb,\n  0x81, 0xfb, 0x64, 0xfb, 0xb8, 0xfa, 0xc4, 0xf8, 0xf2, 0xf9, 0x43, 0xfd,\n  0xd5, 0xf9, 0x9a, 0xf9, 0x87, 0xfe, 0xab, 0x07, 0xbe, 0x0a, 0xd7, 0x0b,\n  0x28, 0x0d, 0x27, 0x0a, 0x2f, 0x0b, 0x71, 0x0f, 0x14, 0x14, 0x80, 0x12,\n  0x14, 0x0d, 0xb9, 0x08, 0x9b, 0x04, 0xe5, 0x02, 0x36, 0xfe, 0x47, 0xfc,\n  0x55, 0xfc, 0x97, 0xfd, 0x33, 0xfd, 0x9d, 0xfd, 0xa8, 0xff, 0xe9, 0xfd,\n  0x20, 0xfa, 0x4b, 0xfc, 0xfc, 0xff, 0x36, 0xfe, 0x0a, 0xf9, 0x5c, 0xf3,\n  0xeb, 0xf0, 0x8b, 0xf0, 0x52, 0xf3, 0x39, 0xf7, 0xf9, 0xf6, 0x1f, 0xf5,\n  0x46, 0xf5, 0x00, 0xfb, 0x28, 0x00, 0x3c, 0xfe, 0xbd, 0xf9, 0x71, 0xf8,\n  0xd1, 0xfb, 0x5f, 0xfd, 0xdf, 0xfd, 0x38, 0x00, 0xfe, 0x04, 0x58, 0x0a,\n  0x1c, 0x11, 0xc6, 0x0f, 0x72, 0x0a, 0x1a, 0x0e, 0x5b, 0x11, 0x57, 0x0e,\n  0x30, 0x08, 0x1e, 0xfe, 0xe8, 0xfa, 0x30, 0xfb, 0xb9, 0xfd, 0x0d, 0xfe,\n  0x02, 0xf9, 0x91, 0xf7, 0xad, 0xfc, 0xbf, 0xfd, 0x12, 0xfa, 0x7e, 0xfb,\n  0x21, 0xfe, 0x0c, 0xff, 0xa4, 0x00, 0xdf, 0x02, 0xab, 0x01, 0xb7, 0xff,\n  0x5e, 0xfa, 0x4d, 0xf9, 0xc4, 0xfb, 0xcd, 0xfe, 0xc8, 0xff, 0x7d, 0x00,\n  0xea, 0x06, 0x53, 0x07, 0x02, 0x04, 0xac, 0x01, 0x01, 0xfd, 0xc9, 0xfb,\n  0x37, 0xfd, 0x84, 0xff, 0x91, 0x01, 0x4b, 0x03, 0x0c, 0x09, 0x28, 0x0d,\n  0xf8, 0x08, 0x82, 0x04, 0x5a, 0xfe, 0x94, 0xfa, 0x5a, 0xfb, 0xcd, 0xfb,\n  0x01, 0xfc, 0x1c, 0xfa, 0xc9, 0xf8, 0xdd, 0xf8, 0xd1, 0xf8, 0x59, 0xf6,\n  0xc9, 0xf7, 0xf5, 0xfa, 0xa8, 0xfe, 0x7e, 0x01, 0x08, 0x00, 0x01, 0xfc,\n  0xe3, 0xfc, 0x06, 0xff, 0x18, 0x01, 0x29, 0xff, 0x30, 0xfe, 0x0c, 0x04,\n  0x13, 0x04, 0x8d, 0xff, 0xdc, 0xfe, 0x65, 0x03, 0x4d, 0x03, 0xff, 0x02,\n  0x49, 0x01, 0xda, 0xff, 0x04, 0x00, 0x77, 0x02, 0xb5, 0x02, 0xc3, 0xff,\n  0x36, 0xfe, 0x6f, 0xff, 0x47, 0x03, 0x83, 0x02, 0xef, 0x03, 0xee, 0x04,\n  0x7d, 0x02, 0x72, 0xfe, 0x1b, 0xff, 0x79, 0x01, 0x9f, 0x01, 0x21, 0x02,\n  0xd4, 0x00, 0x57, 0x05, 0x3d, 0x03, 0xb8, 0x00, 0x7b, 0x03, 0xb7, 0x07,\n  0x8c, 0x09, 0x08, 0x09, 0x9f, 0x04, 0x3c, 0xfe, 0xde, 0xf3, 0xb1, 0xef,\n  0xa4, 0xf3, 0xe0, 0xf1, 0xca, 0xee, 0x77, 0xed, 0x61, 0xef, 0x31, 0xf5,\n  0xa2, 0xf8, 0xd1, 0xf7, 0x91, 0xfe, 0x0e, 0x04, 0x4a, 0x08, 0x01, 0x0c,\n  0xd1, 0x0f, 0xf1, 0x12, 0x89, 0x10, 0x2a, 0x0d, 0xe7, 0x0a, 0x8e, 0x05,\n  0x3f, 0x04, 0xef, 0x04, 0xf1, 0x02, 0xab, 0x02, 0x76, 0x01, 0x6a, 0x00,\n  0xab, 0xfe, 0xb0, 0xfa, 0xe8, 0xfa, 0x29, 0xff, 0x63, 0xff, 0x28, 0x00,\n  0x84, 0x04, 0x82, 0x05, 0xbb, 0x04, 0xc9, 0x02, 0x67, 0x00, 0x0b, 0xfc,\n  0x49, 0xf7, 0x86, 0xf4, 0x57, 0xf5, 0xa4, 0xf5, 0xa2, 0xf4, 0xe1, 0xf6,\n  0xae, 0xf8, 0xdd, 0xfa, 0xcb, 0x00, 0x8f, 0x05, 0x73, 0x05, 0x43, 0x06,\n  0x97, 0x06, 0x4b, 0x04, 0x2d, 0x02, 0x99, 0x01, 0x0b, 0x06, 0xb7, 0x04,\n  0xa5, 0xff, 0x5b, 0xfd, 0xc3, 0xfc, 0xe6, 0xfb, 0x65, 0xfc, 0xb5, 0xfc,\n  0xd7, 0xfc, 0x29, 0xfc, 0x77, 0xfd, 0xae, 0xfa, 0xb3, 0xf5, 0xb0, 0xf7,\n  0x6e, 0xfb, 0xc8, 0xff, 0x5e, 0x04, 0x58, 0x06, 0xce, 0x04, 0x8e, 0x01,\n  0x37, 0x00, 0x94, 0x01, 0x12, 0x05, 0x04, 0x07, 0xab, 0x04, 0xd4, 0x05,\n  0x27, 0x08, 0x12, 0x06, 0x35, 0x02, 0x6f, 0xfe, 0x55, 0x03, 0x14, 0x09,\n  0xfc, 0x08, 0xbe, 0x05, 0x76, 0x01, 0xed, 0x01, 0xfb, 0x02, 0xac, 0x04,\n  0x48, 0x01, 0x64, 0xfe, 0x77, 0xfc, 0xf5, 0xf8, 0x48, 0xf6, 0x77, 0xf7,\n  0xe1, 0xf7, 0x45, 0xf8, 0xe9, 0xf9, 0x6e, 0xf7, 0xc9, 0xf7, 0xf6, 0xf5,\n  0xd4, 0xf3, 0x01, 0xf4, 0x03, 0xf5, 0x0e, 0xf3, 0xc9, 0xf2, 0x1c, 0xf6,\n  0xc6, 0xf6, 0x9d, 0xf9, 0xd1, 0xfc, 0xac, 0xfe, 0x64, 0x00, 0x07, 0x04,\n  0x82, 0x0a, 0xd5, 0x0b, 0xf0, 0x08, 0x5b, 0x07, 0xc2, 0x08, 0x20, 0x0b,\n  0x3d, 0x0a, 0x2f, 0x0c, 0x5f, 0x09, 0x8c, 0x06, 0x23, 0x07, 0xe4, 0x09,\n  0x46, 0x08, 0xd1, 0x03, 0x23, 0x07, 0x93, 0x06, 0x06, 0x05, 0x87, 0x04,\n  0xd3, 0x03, 0x81, 0x03, 0xb8, 0xfe, 0x81, 0xfa, 0xe5, 0xf8, 0xdd, 0xf9,\n  0x59, 0xfb, 0xa3, 0xfd, 0x0a, 0xfe, 0xa1, 0xfb, 0xb5, 0xfa, 0xe6, 0xf7,\n  0xc3, 0xf4, 0xfc, 0xf5, 0x29, 0xf6, 0xdc, 0xf6, 0x91, 0xfa, 0x19, 0xfe,\n  0xce, 0xff, 0x5d, 0x01, 0x5f, 0xff, 0x87, 0xfd, 0x30, 0xfe, 0x99, 0xfb,\n  0x9f, 0xfc, 0x10, 0xfe, 0x6f, 0x01, 0xdb, 0x07, 0xd8, 0x0a, 0x86, 0x09,\n  0x20, 0x09, 0x17, 0x09, 0xbe, 0x07, 0x4c, 0x0a, 0x08, 0x0c, 0xe8, 0x09,\n  0x5e, 0x08, 0x4b, 0x05, 0xdd, 0x02, 0x7b, 0x01, 0x79, 0x00, 0x32, 0xff,\n  0x72, 0xfb, 0x19, 0xf9, 0x57, 0xfc, 0x0c, 0xff, 0xd3, 0xfd, 0xb3, 0xfc,\n  0x6d, 0xfb, 0xab, 0xf7, 0x0c, 0xf7, 0xd6, 0xf5, 0x12, 0xf5, 0x8e, 0xf9,\n  0x59, 0xfb, 0xaa, 0xf9, 0x57, 0xfc, 0x7c, 0x00, 0x4b, 0x01, 0xbe, 0x01,\n  0xc7, 0x01, 0x35, 0xff, 0x69, 0xfd, 0xac, 0x00, 0xd7, 0x02, 0x92, 0xff,\n  0x4b, 0xfc, 0x5d, 0xfb, 0x57, 0xfc, 0x93, 0xfd, 0xcf, 0xfe, 0x19, 0x00,\n  0x5a, 0xff, 0x47, 0x00, 0xfb, 0x00, 0xed, 0x01, 0x9b, 0x02, 0x97, 0x01,\n  0xb1, 0xfe, 0xc6, 0xfa, 0xc6, 0xfb, 0xc3, 0xfd, 0x2f, 0xfd, 0xaa, 0xfb,\n  0x59, 0xf9, 0xea, 0xfa, 0x5e, 0x00, 0xf3, 0x03, 0x2c, 0x06, 0xa3, 0x04,\n  0x3a, 0x04, 0xf9, 0x02, 0x54, 0x01, 0xa5, 0x03, 0x9f, 0x05, 0xd4, 0x05,\n  0x07, 0x04, 0x43, 0x00, 0x62, 0x00, 0x4c, 0x04, 0x91, 0x03, 0xf3, 0x02,\n  0x07, 0x04, 0x03, 0x07, 0x2f, 0x06, 0xbf, 0x00, 0xcd, 0xfd, 0x8d, 0xfb,\n  0xb1, 0xfb, 0x61, 0xfd, 0xfd, 0xfd, 0x65, 0xf9, 0x56, 0xf7, 0x70, 0xf8,\n  0x61, 0xfa, 0x0d, 0xfd, 0x93, 0xfe, 0x14, 0xff, 0x52, 0xfe, 0x97, 0xfd,\n  0x97, 0xfe, 0xb9, 0xff, 0xff, 0x01, 0xa3, 0x04, 0x6b, 0x04, 0xef, 0x03,\n  0x79, 0x01, 0xb2, 0xfe, 0x6f, 0xff, 0xd0, 0x04, 0xda, 0x09, 0x24, 0x09,\n  0x49, 0x03, 0x63, 0x01, 0x69, 0x02, 0xb0, 0xff, 0xa9, 0xfd, 0x10, 0xfe,\n  0xd2, 0xfe, 0x98, 0xff, 0x45, 0x01, 0x41, 0x03, 0xbb, 0x03, 0xab, 0x01,\n  0x37, 0xfe, 0xa5, 0xfc, 0xfd, 0xf9, 0xa5, 0xfa, 0x9d, 0xfd, 0x40, 0xfe,\n  0x6f, 0xfd, 0x83, 0xfc, 0xa7, 0xfc, 0x39, 0xfd, 0xc5, 0xfc, 0x21, 0xfb,\n  0x35, 0xfa, 0x7d, 0xf9, 0xd6, 0xf9, 0x31, 0xf9, 0x02, 0xfb, 0x2c, 0x00,\n  0x58, 0x04, 0x5b, 0x03, 0xd8, 0x01, 0x45, 0x01, 0xe7, 0xff, 0x0f, 0x01,\n  0x7d, 0xff, 0xbe, 0xfe, 0xdf, 0x01, 0x13, 0x05, 0xc3, 0x07, 0x7a, 0x08,\n  0xe2, 0x05, 0xe5, 0x01, 0x6c, 0xff, 0x6a, 0x00, 0xad, 0x03, 0x6a, 0x07,\n  0x47, 0x06, 0x96, 0x01, 0x9b, 0xfd, 0x39, 0xfd, 0x87, 0xfd, 0x9c, 0xf9,\n  0x98, 0xf6, 0xce, 0xf6, 0xca, 0xfa, 0xbd, 0xfd, 0x4b, 0xff, 0x03, 0x02,\n  0x21, 0x02, 0x2a, 0x01, 0x12, 0xff, 0x39, 0xfe, 0xfd, 0xfd, 0xa3, 0xfd,\n  0x06, 0xff, 0x0c, 0x01, 0xb7, 0xfe, 0x60, 0xf9, 0x02, 0xf9, 0xd1, 0xfd,\n  0x43, 0xfd, 0x0c, 0xfb, 0xf5, 0xfc, 0x67, 0x02, 0x43, 0x07, 0xe6, 0x07,\n  0xaa, 0x08, 0x0f, 0x08, 0xb7, 0x05, 0xcd, 0x02, 0x9b, 0x02, 0x8f, 0x04,\n  0x1c, 0x0a, 0x99, 0x0b, 0x71, 0x0b, 0x0a, 0x0c, 0xdf, 0x08, 0xa0, 0x06,\n  0x0f, 0x05, 0xb7, 0x02, 0xbd, 0xfe, 0x79, 0xfa, 0x91, 0xf8, 0xd3, 0xf6,\n  0x62, 0xf5, 0x8c, 0xf2, 0x51, 0xf1, 0xe9, 0xf0, 0xb9, 0xf0, 0x24, 0xf5,\n  0xbe, 0xf7, 0x51, 0xfb, 0x97, 0xfd, 0xc5, 0xfc, 0xb1, 0xf9, 0xb4, 0xf7,\n  0x72, 0xf7, 0x31, 0xfa, 0x23, 0xfc, 0xab, 0xfd, 0xcb, 0x00, 0xa5, 0x02,\n  0xc0, 0x05, 0xd4, 0x09, 0x00, 0x0d, 0x96, 0x0e, 0xf7, 0x0d, 0xfc, 0x0c,\n  0xc4, 0x0d, 0x07, 0x0d, 0xb6, 0x0a, 0xcf, 0x06, 0x83, 0x04, 0x84, 0x04,\n  0x32, 0x04, 0x3e, 0x04, 0xf3, 0x05, 0x94, 0x04, 0xec, 0x00, 0xa1, 0xff,\n  0xe7, 0xfe, 0xdb, 0xfc, 0x1d, 0xfc, 0x81, 0xfb, 0x00, 0xf8, 0xef, 0xf4,\n  0x6a, 0xf6, 0x95, 0xfa, 0xc3, 0xfe, 0xc6, 0xff, 0xb7, 0xfc, 0x35, 0xf9,\n  0x26, 0xf7, 0x6b, 0xf6, 0x22, 0xf6, 0x1a, 0xf9, 0x59, 0xfc, 0xcd, 0xfc,\n  0x35, 0xfd, 0xa9, 0xfe, 0x73, 0xfd, 0x6f, 0xfc, 0x8e, 0xfe, 0xcc, 0xff,\n  0xaf, 0x03, 0xb8, 0x04, 0xcd, 0x03, 0x8d, 0x02, 0x61, 0x02, 0xce, 0x04,\n  0xb9, 0x03, 0x21, 0x03, 0x29, 0x03, 0x81, 0x03, 0xd5, 0x02, 0x2d, 0x03,\n  0xd7, 0x04, 0x45, 0x02, 0xa1, 0xfc, 0x01, 0xf9, 0x85, 0xf8, 0x42, 0xf7,\n  0xd9, 0xf6, 0x07, 0xf7, 0x59, 0xf7, 0xb0, 0xf6, 0x7b, 0xf7, 0xbe, 0xf7,\n  0x3c, 0xf9, 0xf5, 0xfc, 0xdc, 0xfe, 0xdf, 0x00, 0xb7, 0x02, 0x14, 0x06,\n  0xdc, 0x06, 0x88, 0x06, 0xf2, 0x06, 0xc6, 0x05, 0x7a, 0x06, 0x0c, 0x07,\n  0x0b, 0x06, 0x9c, 0x05, 0xc6, 0x06, 0x64, 0x06, 0x83, 0x06, 0x8c, 0x06,\n  0x97, 0x04, 0xc7, 0x02, 0x0f, 0x01, 0x87, 0xfc, 0xb9, 0xf8, 0xab, 0xf7,\n  0xe9, 0xf7, 0xe1, 0xfa, 0x5f, 0xfd, 0x65, 0xfc, 0x97, 0xfc, 0xfb, 0xfc,\n  0x6c, 0xfe, 0x89, 0x00, 0xb6, 0x00, 0xe6, 0xff, 0x46, 0xfe, 0xc9, 0xfc,\n  0x89, 0xfc, 0x95, 0xfd, 0x4a, 0x00, 0x66, 0x01, 0x10, 0x00, 0xab, 0x01,\n  0x2f, 0x05, 0x4a, 0x07, 0x68, 0x08, 0xc6, 0x09, 0xf2, 0x08, 0xc7, 0x06,\n  0xb6, 0x06, 0xbc, 0x06, 0x94, 0x04, 0x0b, 0x03, 0x97, 0x01, 0xe7, 0xfd,\n  0x59, 0xfa, 0xe9, 0xf6, 0x14, 0xf5, 0x24, 0xf7, 0x6d, 0xfa, 0xf2, 0xf8,\n  0x09, 0xf8, 0x3e, 0xf7, 0xec, 0xf6, 0x41, 0xf9, 0xee, 0xf9, 0xf9, 0xf8,\n  0x30, 0xf8, 0xb5, 0xf8, 0x40, 0xfb, 0x25, 0xfe, 0xdd, 0xff, 0x5f, 0x02,\n  0x10, 0x04, 0x47, 0x05, 0x82, 0x07, 0xa9, 0x09, 0xae, 0x09, 0xbf, 0x09,\n  0x40, 0x0c, 0x3f, 0x0d, 0x48, 0x0d, 0x30, 0x0d, 0xee, 0x0a, 0x4a, 0x08,\n  0x94, 0x08, 0xfe, 0x07, 0x9b, 0x06, 0x0b, 0x04, 0xeb, 0x01, 0x03, 0x02,\n  0x58, 0x01, 0x09, 0xff, 0x9c, 0xff, 0x02, 0x00, 0x35, 0xff, 0x61, 0xfd,\n  0x99, 0xfb, 0xe5, 0xfa, 0x8c, 0xf9, 0x10, 0xf7, 0x16, 0xf5, 0x06, 0xf5,\n  0x12, 0xf4, 0x99, 0xf1, 0xc4, 0xf1, 0x90, 0xf5, 0x11, 0xf7, 0xb4, 0xf5,\n  0xa7, 0xf3, 0x3c, 0xf4, 0x52, 0xf4, 0x9f, 0xf5, 0x2d, 0xf8, 0xda, 0xfb,\n  0x82, 0x00, 0xa1, 0x03, 0x43, 0x03, 0x50, 0x05, 0x86, 0x06, 0x90, 0x04,\n  0xf3, 0x02, 0x81, 0x02, 0x4b, 0x05, 0x8b, 0x05, 0xf3, 0x06, 0xe4, 0x08,\n  0x22, 0x09, 0x07, 0x0a, 0xa5, 0x09, 0xeb, 0x06, 0xef, 0x04, 0x87, 0x04,\n  0x7b, 0x02, 0xea, 0xff, 0xa5, 0xfe, 0xab, 0xff, 0x32, 0x00, 0xeb, 0x00,\n  0x19, 0x01, 0x6a, 0xfe, 0x4b, 0xfc, 0xa9, 0xfc, 0xa8, 0xfe, 0x24, 0x01,\n  0xfc, 0xff, 0xe3, 0xfd, 0x7e, 0xff, 0xdf, 0x01, 0xa5, 0x01, 0x41, 0x00,\n  0xb9, 0xff, 0x65, 0xff, 0x6e, 0xff, 0xff, 0xfe, 0xd9, 0xfd, 0x23, 0xfc,\n  0x21, 0xfa, 0x1d, 0xfa, 0xf5, 0xf9, 0x79, 0xfa, 0xb1, 0xfd, 0x82, 0xfe,\n  0x85, 0x00, 0xa7, 0x02, 0x2b, 0x04, 0x3c, 0x04, 0x4d, 0x03, 0x27, 0x04,\n  0xc5, 0x03, 0x39, 0x02, 0xe2, 0x01, 0x75, 0x02, 0x7e, 0x01, 0x97, 0x02,\n  0x61, 0x02, 0x57, 0x02, 0x6b, 0x03, 0xfc, 0x01, 0x13, 0xfe, 0xe6, 0xf9,\n  0xc2, 0xf8, 0x03, 0xf7, 0x11, 0xf7, 0x15, 0xf9, 0xa9, 0xf8, 0x2d, 0xf8,\n  0x89, 0xfa, 0x69, 0xfd, 0xd0, 0xfe, 0x56, 0x00, 0xdf, 0x01, 0x6e, 0x00,\n  0x8b, 0xfe, 0xaf, 0xfc, 0x0d, 0xfd, 0xfb, 0xfc, 0x29, 0xfc, 0x55, 0xfd,\n  0xb7, 0xfe, 0x1f, 0xfd, 0x7b, 0xfd, 0xaa, 0x00, 0x87, 0x02, 0xd5, 0x01,\n  0xc5, 0x02, 0x95, 0x03, 0x9b, 0x03, 0xbf, 0x03, 0xb7, 0x02, 0x2d, 0x03,\n  0xc5, 0x03, 0x37, 0x04, 0x87, 0x05, 0x8c, 0x05, 0x87, 0x05, 0x57, 0x05,\n  0x7e, 0x05, 0x3b, 0x05, 0x35, 0x03, 0x65, 0x02, 0xdc, 0x01, 0x8f, 0x02,\n  0x41, 0x03, 0x1c, 0x01, 0x10, 0x00, 0x59, 0x02, 0xb3, 0x03, 0x57, 0x02,\n  0xe7, 0x01, 0x73, 0x01, 0xa6, 0x01, 0x6c, 0x01, 0xb8, 0xfe, 0x9b, 0xfd,\n  0xfb, 0xfc, 0xda, 0xfb, 0x51, 0xfb, 0xbf, 0xfc, 0x66, 0xfa, 0x9e, 0xf8,\n  0x56, 0xf7, 0x26, 0xf7, 0xf6, 0xf6, 0x4f, 0xf5, 0x00, 0xf6, 0x27, 0xf6,\n  0x90, 0xf6, 0xd5, 0xf8, 0x59, 0xfb, 0xdc, 0xfb, 0x79, 0xfc, 0xa8, 0xfe,\n  0xe8, 0x01, 0x63, 0x05, 0x22, 0x07, 0x50, 0x09, 0xdf, 0x0a, 0xe6, 0x0a,\n  0x89, 0x0b, 0x48, 0x0b, 0xcf, 0x0a, 0x1f, 0x0a, 0x8f, 0x06, 0x71, 0x02,\n  0x50, 0x00, 0x2d, 0xff, 0x81, 0xfe, 0x0b, 0xfc, 0xd1, 0xf9, 0x2c, 0xfa,\n  0x8f, 0xfc, 0x33, 0xfd, 0x15, 0xfd, 0x93, 0xfc, 0xf0, 0xfb, 0x15, 0xfc,\n  0x33, 0xfc, 0x17, 0xfc, 0x36, 0xfa, 0xdc, 0xf8, 0xcb, 0xf6, 0xbc, 0xf6,\n  0xf0, 0xf8, 0x61, 0xfa, 0x41, 0xfd, 0xbf, 0xff, 0xb1, 0x02, 0x73, 0x05,\n  0x17, 0x07, 0x3f, 0x07, 0xc7, 0x07, 0x80, 0x08, 0x49, 0x09, 0xcf, 0x08,\n  0xfc, 0x07, 0xe4, 0x05, 0x95, 0x03, 0x43, 0x04, 0x39, 0x03, 0x62, 0x00,\n  0x8d, 0xff, 0x1c, 0x00, 0x7c, 0x01, 0x15, 0x01, 0x77, 0xff, 0x6e, 0xfb,\n  0xad, 0xf9, 0x6c, 0xfb, 0xc9, 0xfc, 0x2d, 0xfe, 0x3c, 0xfe, 0x0f, 0xfe,\n  0x75, 0xfe, 0x87, 0xfe, 0xdf, 0xfe, 0x14, 0xff, 0xcb, 0xff, 0xa2, 0xfe,\n  0x37, 0xfd, 0x93, 0xff, 0xdc, 0x01, 0x7b, 0x02, 0xd7, 0x03, 0x33, 0x06,\n  0xe2, 0x05, 0x73, 0x04, 0xe4, 0x01, 0x4d, 0x00, 0xbe, 0x00, 0x0a, 0x01,\n  0x3b, 0xff, 0xf6, 0xfb, 0x94, 0xfa, 0xe5, 0xf9, 0x9c, 0xf8, 0xab, 0xf7,\n  0x1d, 0xf9, 0xd6, 0xfa, 0x21, 0xfd, 0xc5, 0xff, 0x9b, 0x00, 0x67, 0x01,\n  0x34, 0x01, 0x1f, 0x01, 0x03, 0x02, 0x99, 0x03, 0xc9, 0x02, 0xb3, 0x02,\n  0xbd, 0x03, 0x8d, 0x03, 0x23, 0x03, 0xa7, 0x00, 0xfd, 0xfd, 0x69, 0xfc,\n  0x1f, 0xfc, 0xdc, 0xfb, 0xd1, 0xfb, 0x04, 0xfe, 0xd2, 0xff, 0x1c, 0x01,\n  0x4b, 0x02, 0xd3, 0x05, 0x0b, 0x07, 0xb2, 0x05, 0x8b, 0x04, 0x81, 0x01,\n  0xe9, 0xff, 0x85, 0xfd, 0xa8, 0xfb, 0x79, 0xfa, 0x40, 0xfa, 0xed, 0xf8,\n  0x70, 0xf7, 0xac, 0xf8, 0x44, 0xf9, 0x19, 0xfa, 0x8f, 0xfc, 0xca, 0xfe,\n  0x49, 0xfd, 0xc5, 0xfc, 0x51, 0xfe, 0x2c, 0xff, 0xc0, 0xff, 0x02, 0x00,\n  0xf2, 0xff, 0x4f, 0xfe, 0xef, 0xfd, 0x17, 0xff, 0xd9, 0x01, 0x55, 0x03,\n  0xe5, 0x02, 0xc5, 0x02, 0x63, 0x03, 0x93, 0x05, 0x83, 0x07, 0x7f, 0x07,\n  0x30, 0x07, 0xb4, 0x05, 0xe8, 0x04, 0x52, 0x05, 0x47, 0x06, 0x38, 0x08,\n  0xc6, 0x09, 0xef, 0x08, 0xcf, 0x05, 0xe1, 0x02, 0xd1, 0x00, 0x2f, 0x00,\n  0xf3, 0xfe, 0x52, 0xfe, 0x8d, 0xfd, 0xd1, 0xfb, 0x94, 0xfa, 0x5c, 0xfa,\n  0x1c, 0xfb, 0x57, 0xfc, 0xcb, 0xfc, 0x73, 0xfc, 0x77, 0xfc, 0x1a, 0xfb,\n  0x25, 0xfa, 0xb9, 0xf9, 0x1c, 0xfa, 0x12, 0xfb, 0xed, 0xfb, 0x89, 0xfd,\n  0xbf, 0xfd, 0x79, 0xfb, 0x29, 0xfc, 0xe7, 0xfd, 0x72, 0xff, 0x2d, 0x02,\n  0x87, 0x02, 0x97, 0x03, 0xb9, 0x03, 0x5f, 0x02, 0xc2, 0x00, 0x35, 0x00,\n  0x64, 0x00, 0x1e, 0x01, 0x05, 0x02, 0x61, 0x02, 0x8b, 0x02, 0xbd, 0x01,\n  0x4c, 0x01, 0xcf, 0x01, 0xf9, 0x02, 0x28, 0x04, 0x8e, 0x04, 0x1b, 0x05,\n  0x77, 0x06, 0x6b, 0x05, 0x6b, 0x03, 0x6f, 0x01, 0x47, 0x00, 0x90, 0xfe,\n  0x7f, 0xfc, 0x77, 0xfc, 0x13, 0xfc, 0x75, 0xfb, 0x39, 0xfb, 0x76, 0xfa,\n  0x96, 0xf8, 0x7c, 0xf8, 0xd0, 0xfa, 0x3c, 0xfb, 0xbc, 0xfa, 0x90, 0xfb,\n  0xed, 0xfc, 0xa5, 0xfd, 0x97, 0xfd, 0x14, 0xff, 0xe7, 0xff, 0x01, 0x01,\n  0x87, 0x02, 0x61, 0x03, 0x0b, 0x04, 0x7a, 0x04, 0x8f, 0x04, 0x6a, 0x04,\n  0x83, 0x03, 0x1b, 0x01, 0x32, 0xff, 0x28, 0xfe, 0xca, 0xfe, 0x5d, 0xff,\n  0x27, 0xff, 0x2c, 0xff, 0x93, 0xfe, 0x8f, 0xfc, 0xe5, 0xfb, 0xcb, 0xfc,\n  0xdd, 0xfd, 0x31, 0xfe, 0x02, 0xff, 0xe5, 0x00, 0x0d, 0x02, 0x9f, 0x02,\n  0x05, 0x03, 0x55, 0x01, 0x3c, 0xff, 0xcc, 0xfe, 0xbc, 0xff, 0x76, 0x00,\n  0xcd, 0x00, 0x27, 0x02, 0x5f, 0x03, 0xb1, 0x03, 0x75, 0x03, 0x15, 0x02,\n  0xe6, 0x00, 0x63, 0xff, 0x85, 0xfd, 0xaf, 0xfd, 0x3d, 0xfe, 0x6f, 0xfe,\n  0x6c, 0xff, 0xfe, 0x00, 0x23, 0x02, 0xe5, 0x01, 0xc7, 0x01, 0x9f, 0x01,\n  0x98, 0x00, 0xfc, 0xff, 0x27, 0xfe, 0x2e, 0xfe, 0x38, 0xff, 0x7f, 0x00,\n  0xb2, 0x00, 0xb5, 0x00, 0x0c, 0x01, 0xcd, 0x00, 0x1c, 0x01, 0x27, 0x01,\n  0xf5, 0x00, 0xb8, 0x00, 0x07, 0x01, 0xcf, 0xff, 0x93, 0xfe, 0xd5, 0xfd,\n  0x21, 0xfc, 0xef, 0xfc, 0x22, 0xfe, 0xdc, 0xfe, 0xc0, 0xfe, 0xfa, 0xfe,\n  0x3b, 0xff, 0x7e, 0xfe, 0x81, 0xff, 0x93, 0xfe, 0xbf, 0xfd, 0x97, 0xfc,\n  0x69, 0xfa, 0xae, 0xfa, 0xdb, 0xfc, 0x2d, 0xff, 0xe7, 0xff, 0x63, 0xff,\n  0xfd, 0xfe, 0x0b, 0x00, 0x6e, 0x00, 0x23, 0x02, 0x15, 0x03, 0x83, 0x04,\n  0xfc, 0x05, 0x0b, 0x07, 0x78, 0x08, 0xaa, 0x07, 0x03, 0x06, 0xc3, 0x05,\n  0x0f, 0x05, 0x1d, 0x03, 0x17, 0x02, 0x59, 0x02, 0x4e, 0x01, 0x1d, 0x00,\n  0xd0, 0xfe, 0xa3, 0xfc, 0x09, 0xfb, 0x14, 0xfa, 0xfc, 0xf9, 0x1e, 0xfa,\n  0x42, 0xfa, 0xc5, 0xf9, 0xd2, 0xfa, 0x8f, 0xfc, 0x59, 0xfd, 0xca, 0xfe,\n  0x56, 0x00, 0x35, 0x00, 0xef, 0xff, 0xde, 0xff, 0x4d, 0x00, 0xf7, 0x00,\n  0x7d, 0x00, 0x1b, 0xff, 0x4f, 0xfe, 0x45, 0xfd, 0x5d, 0xfc, 0x81, 0xfd,\n  0x85, 0xfe, 0x3c, 0xff, 0xe7, 0xff, 0xe5, 0x00, 0x18, 0x01, 0x95, 0x00,\n  0xec, 0x00, 0x93, 0xff, 0xff, 0xfe, 0x05, 0xff, 0x3b, 0xff, 0x61, 0x00,\n  0xee, 0x01, 0x35, 0x03, 0xeb, 0x02, 0xa5, 0x03, 0x4f, 0x04, 0xf1, 0x03,\n  0xd1, 0x03, 0x60, 0x04, 0x5c, 0x05, 0x9f, 0x05, 0xbd, 0x03, 0x15, 0x02,\n  0x25, 0x00, 0x53, 0xff, 0x53, 0xff, 0x11, 0xff, 0xf5, 0xfd, 0x6d, 0xfd,\n  0x43, 0xfe, 0x21, 0xfe, 0xeb, 0xfd, 0xf7, 0xfe, 0x08, 0xff, 0x67, 0xfd,\n  0x99, 0xfb, 0x71, 0xfa, 0xfd, 0xf9, 0xaa, 0xf9, 0xb9, 0xf9, 0x2d, 0xfa,\n  0x15, 0xfa, 0xb0, 0xfa, 0xab, 0xfd, 0x52, 0x00, 0xc6, 0x01, 0x4f, 0x03,\n  0xef, 0x03, 0x8b, 0x04, 0x2e, 0x05, 0x14, 0x05, 0xa2, 0x05, 0x6b, 0x05,\n  0x7f, 0x04, 0x0f, 0x04, 0xcf, 0x03, 0x5d, 0x02, 0x4c, 0x01, 0x07, 0x01,\n  0xb2, 0x01, 0x82, 0x01, 0xa9, 0x00, 0xfb, 0x00, 0x32, 0x00, 0x6e, 0xff,\n  0x17, 0xff, 0xa9, 0xfe, 0x75, 0xfd, 0x6d, 0xfb, 0xc9, 0xf9, 0xfd, 0xf9,\n  0xfe, 0xf9, 0x16, 0xf9, 0x4c, 0xf8, 0x3d, 0xf8, 0x48, 0xf9, 0xd0, 0xf8,\n  0x61, 0xf7, 0x99, 0xf8, 0x1a, 0xfb, 0xdd, 0xfc, 0x99, 0xfe, 0x2c, 0x00,\n  0xf1, 0x00, 0xa2, 0x01, 0x61, 0x03, 0x06, 0x05, 0x0a, 0x07, 0x11, 0x09,\n  0xbc, 0x0a, 0x41, 0x0b, 0x82, 0x0a, 0xf8, 0x08, 0xbb, 0x07, 0x1a, 0x07,\n  0x8c, 0x06, 0xfa, 0x05, 0xbe, 0x05, 0x83, 0x04, 0xed, 0x02, 0x90, 0x01,\n  0xc5, 0xff, 0x67, 0xfe, 0xd9, 0xfc, 0x5d, 0xfb, 0xa0, 0xfa, 0xd4, 0xfa,\n  0x9d, 0xfb, 0x75, 0xfb, 0x5f, 0xfc, 0x97, 0xfd, 0xc7, 0xfd, 0x3d, 0xfd,\n  0xe9, 0xfc, 0x8b, 0xfd, 0xed, 0xfd, 0x51, 0xfe, 0x51, 0xff, 0xd5, 0xff,\n  0xd1, 0xff, 0x81, 0xfe, 0x81, 0xfd, 0x21, 0xfd, 0x65, 0xfd, 0xcb, 0xfd,\n  0x6d, 0xfe, 0x6e, 0xff, 0x9f, 0xff, 0xcb, 0xff, 0xaa, 0xff, 0x7e, 0xfe,\n  0xd0, 0xfe, 0xa6, 0x00, 0xc3, 0x01, 0xf0, 0x01, 0x75, 0x02, 0xb7, 0x03,\n  0x47, 0x05, 0x8e, 0x05, 0xe2, 0x04, 0x6f, 0x03, 0x6d, 0x03, 0x48, 0x04,\n  0xf4, 0x04, 0x8a, 0x05, 0x56, 0x04, 0x49, 0x02, 0xca, 0xfe, 0x25, 0xfc,\n  0x29, 0xfb, 0x11, 0xfa, 0x90, 0xf8, 0x42, 0xf8, 0xac, 0xf8, 0xb2, 0xf9,\n  0x58, 0xfa, 0x12, 0xfa, 0x2e, 0xfa, 0xd1, 0xfa, 0xea, 0xfb, 0x6d, 0xfd,\n  0xc5, 0xff, 0x69, 0x01, 0x09, 0x02, 0x0b, 0x03, 0x24, 0x04, 0x33, 0x05,\n  0xea, 0x05, 0xc0, 0x05, 0x78, 0x04, 0x93, 0x02, 0x37, 0x01, 0xe0, 0xff,\n  0xd5, 0xff, 0xdb, 0xff, 0xb9, 0xff, 0xa5, 0xff, 0x54, 0xff, 0x2f, 0xff,\n  0x02, 0x00, 0x65, 0x00, 0xb9, 0xff, 0x8b, 0xfe, 0x79, 0xfd, 0xcf, 0xfd,\n  0xa1, 0xfd, 0x25, 0xfd, 0xa9, 0xfd, 0xbe, 0xfe, 0x69, 0xfe, 0xdb, 0xfd,\n  0xeb, 0xfd, 0x49, 0xfe, 0xf0, 0xfe, 0x50, 0xff, 0x58, 0xfe, 0x0f, 0xfd,\n  0x0b, 0xfd, 0x97, 0xfe, 0x00, 0x01, 0xd8, 0x01, 0x51, 0x03, 0x97, 0x04,\n  0x5b, 0x04, 0x88, 0x04, 0xef, 0x04, 0xeb, 0x03, 0x3d, 0x03, 0x69, 0x02,\n  0x72, 0x01, 0xf5, 0x00, 0x04, 0x00, 0xcc, 0xff, 0xa5, 0xff, 0x1b, 0xff,\n  0x5f, 0xfd, 0xb1, 0xfb, 0x32, 0xfb, 0x88, 0xfb, 0xa1, 0xfc, 0xb7, 0xfd,\n  0x39, 0xfe, 0x0e, 0xff, 0x1d, 0xff, 0xaf, 0xfe, 0x9a, 0xfe, 0x94, 0xfe,\n  0x14, 0xff, 0x89, 0x00, 0xa9, 0x01, 0x21, 0x02, 0x7d, 0x02, 0xc9, 0x02,\n  0xcb, 0x03, 0x04, 0x04, 0x9b, 0x03, 0x23, 0x03, 0x17, 0x03, 0x97, 0x02,\n  0x4e, 0x01, 0x8b, 0x00, 0xc9, 0xff, 0x0e, 0xff, 0xe5, 0xfe, 0xff, 0xfe,\n  0x99, 0xfe, 0x70, 0xfe, 0x9c, 0xfe, 0x57, 0xfe, 0xd7, 0xfd, 0xf5, 0xfd,\n  0x90, 0xfe, 0x41, 0xff, 0xf9, 0xff, 0x41, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x0c, 0xff, 0x93, 0xfe, 0x62, 0xff, 0x6a, 0x00, 0xc2, 0x00, 0x9d, 0x00,\n  0x46, 0x00, 0x26, 0x00, 0x8b, 0x00, 0x24, 0x01, 0xeb, 0x01, 0x1e, 0x01,\n  0xc8, 0xff, 0x9c, 0xff, 0xf3, 0xff, 0x57, 0xff, 0x6a, 0xfe, 0x5d, 0xfe,\n  0x00, 0xff, 0x60, 0xff, 0xa5, 0xff, 0x74, 0xff, 0xee, 0xfe, 0x4e, 0xfe,\n  0x55, 0xfe, 0x91, 0xfd, 0xb9, 0xfc, 0x2f, 0xfd, 0x81, 0xfd, 0x1b, 0xfe,\n  0xc1, 0xfd, 0xe3, 0xfd, 0x12, 0xfe, 0xa1, 0xfd, 0x5e, 0xfe, 0x5d, 0xff,\n  0x46, 0x00, 0x13, 0x02, 0xd5, 0x02, 0x7d, 0x02, 0x71, 0x03, 0x33, 0x04,\n  0x78, 0x04, 0x73, 0x04, 0xcb, 0x03, 0x83, 0x02, 0xa1, 0x00, 0xdb, 0xfe,\n  0xea, 0xfe, 0xaf, 0xfe, 0x28, 0xfe, 0xf1, 0xfe, 0xee, 0xfe, 0x9f, 0xfd,\n  0x33, 0xfd, 0xa1, 0xfd, 0xc3, 0xfd, 0x40, 0xfe, 0x3f, 0xff, 0x87, 0xff,\n  0xd2, 0xff, 0x19, 0x01, 0x93, 0x02, 0x9b, 0x03, 0xdf, 0x04, 0xe7, 0x05,\n  0xff, 0x05, 0xaa, 0x04, 0x11, 0x03, 0xcc, 0x01, 0xce, 0x00, 0x26, 0x00,\n  0x44, 0x00, 0xcf, 0xff, 0x2d, 0xff, 0xa8, 0xfe, 0x9f, 0xfd, 0xd5, 0xfc,\n  0xbf, 0xfc, 0xc5, 0xfd, 0xa3, 0xfe, 0x48, 0xfe, 0x91, 0xfd, 0xc9, 0xfd,\n  0x53, 0xff, 0xca, 0x00, 0x3c, 0x01, 0x51, 0x01, 0xc2, 0x00, 0x21, 0x01,\n  0xf6, 0x01, 0x49, 0x02, 0xb9, 0x00, 0x2c, 0xff, 0x63, 0xfe, 0x9b, 0xfd,\n  0x04, 0xfe, 0xf5, 0xfd, 0x3d, 0xfe, 0xf3, 0xfd, 0x99, 0xfd, 0xb1, 0xfd,\n  0x83, 0xfc, 0xb8, 0xfb, 0x92, 0xfb, 0xf0, 0xfb, 0x01, 0xfc, 0xd8, 0xfb,\n  0xb3, 0xfc, 0xe7, 0xfd, 0xa5, 0xfe, 0x01, 0x00, 0xb3, 0x00, 0x52, 0x00,\n  0x52, 0x00, 0x6d, 0x01, 0x13, 0x02, 0x89, 0x02, 0x6b, 0x03, 0x8b, 0x03,\n  0x77, 0x03, 0x8d, 0x03, 0x10, 0x04, 0x8b, 0x04, 0x83, 0x03, 0x79, 0x01,\n  0xea, 0xff, 0x5f, 0xff, 0x5c, 0xff, 0xd9, 0xfe, 0x30, 0xff, 0x0b, 0xff,\n  0xba, 0xfe, 0x17, 0xff, 0xd5, 0xff, 0x53, 0x00, 0x4b, 0x01, 0x5f, 0x03,\n  0x50, 0x05, 0x87, 0x05, 0xf7, 0x04, 0x2b, 0x05, 0x52, 0x04, 0x43, 0x03,\n  0xb1, 0x02, 0xc9, 0x01, 0x87, 0x01, 0x5a, 0x01, 0x64, 0x00, 0x42, 0xff,\n  0xd8, 0xfe, 0x0f, 0xfe, 0xbf, 0xfc, 0x23, 0xfc, 0x21, 0xfb, 0xed, 0xfa,\n  0x6e, 0xfb, 0x5f, 0xfc, 0x33, 0xfd, 0x5b, 0xfd, 0xf5, 0xfc, 0xf3, 0xfc,\n  0x29, 0xfc, 0xe5, 0xfb, 0x8b, 0xfc, 0x71, 0xfc, 0x61, 0xfc, 0x77, 0xfc,\n  0xdd, 0xfc, 0xc5, 0xfc, 0x3b, 0xfc, 0xa7, 0xfc, 0xbb, 0xfd, 0x0c, 0xfe,\n  0x79, 0xfe, 0xd5, 0xfe, 0xff, 0xfe, 0x80, 0x00, 0x53, 0x02, 0xbb, 0x03,\n  0xc7, 0x04, 0xff, 0x04, 0x54, 0x05, 0x1f, 0x06, 0xeb, 0x04, 0xad, 0x03,\n  0x29, 0x03, 0x43, 0x03, 0x8b, 0x03, 0xdd, 0x02, 0x0d, 0x03, 0x11, 0x03,\n  0x0f, 0x03, 0xc3, 0x02, 0x63, 0x02, 0x5d, 0x02, 0x78, 0x01, 0xc5, 0x00,\n  0xda, 0xff, 0x96, 0xfe, 0x07, 0xfd, 0xdd, 0xfb, 0x84, 0xfb, 0x91, 0xfb,\n  0x15, 0xfc, 0xb5, 0xfc, 0xd9, 0xfd, 0xa9, 0xfe, 0xae, 0xfe, 0xcd, 0xfe,\n  0x7b, 0xff, 0xd8, 0xff, 0x3c, 0xff, 0xb6, 0xff, 0xb2, 0x00, 0x1b, 0x01,\n  0x43, 0x00, 0x75, 0xfe, 0x37, 0xfd, 0xdf, 0xfc, 0x19, 0xfd, 0xcd, 0xfd,\n  0x81, 0xfe, 0xd3, 0xfe, 0xc6, 0xff, 0x7a, 0x00, 0x31, 0x01, 0x60, 0x01,\n  0x4d, 0x02, 0xdf, 0x02, 0x57, 0x02, 0x71, 0x02, 0x59, 0x02, 0x8f, 0x02,\n  0xfb, 0x02, 0x11, 0x03, 0x6d, 0x02, 0x7c, 0x01, 0xd4, 0x00, 0x11, 0x00,\n  0x32, 0xff, 0xa5, 0xfe, 0x5b, 0xfe, 0x7b, 0xfe, 0x6d, 0xfe, 0xcb, 0xfd,\n  0x79, 0xfd, 0x0d, 0xfd, 0xbb, 0xfc, 0x55, 0xfd, 0x83, 0xfd, 0x13, 0xfd,\n  0xbf, 0xfc, 0xbb, 0xfc, 0x45, 0xfd, 0xf5, 0xfd, 0x24, 0xfe, 0x8e, 0xfe,\n  0x3c, 0xff, 0xf6, 0xff, 0x6e, 0x00, 0x0a, 0x00, 0x23, 0x00, 0x05, 0x00,\n  0x8d, 0xff, 0xfa, 0xfe, 0x77, 0xff, 0x59, 0x00, 0x16, 0x01, 0x40, 0x01,\n  0x4c, 0x01, 0x6d, 0x01, 0x0f, 0x02, 0xd5, 0x02, 0x41, 0x03, 0xdd, 0x03,\n  0x99, 0x03, 0xbd, 0x03, 0xd7, 0x03, 0x6d, 0x03, 0xa9, 0x03, 0x4d, 0x03,\n  0x71, 0x02, 0xa0, 0x01, 0x6a, 0x00, 0x48, 0xff, 0x14, 0xff, 0x5d, 0xfe,\n  0x29, 0xfd, 0x0b, 0xfc, 0x91, 0xfb, 0x54, 0xfb, 0x09, 0xfc, 0x37, 0xfd,\n  0x12, 0xfe, 0xe8, 0xfe, 0x56, 0xff, 0xb3, 0xff, 0xf5, 0xff, 0xef, 0xff,\n  0x92, 0x00, 0xfa, 0x01, 0xcf, 0x02, 0xad, 0x02, 0x97, 0x02, 0x81, 0x02,\n  0x76, 0x01, 0x95, 0x00, 0x46, 0x00, 0x35, 0x00, 0x5e, 0x00, 0xc2, 0xff,\n  0x9c, 0xff, 0xdd, 0xff, 0xb7, 0xff, 0xe7, 0xfe, 0x6c, 0xfe, 0x6d, 0xfd,\n  0x3f, 0xfd, 0x57, 0xfd, 0xbb, 0xfd, 0x3f, 0xff, 0x00, 0x00, 0xa9, 0x00,\n  0xee, 0x00, 0x1d, 0x00, 0x51, 0xff, 0xe5, 0xfe, 0x72, 0xfe, 0xf1, 0xfd,\n  0x04, 0xfe, 0xa0, 0xfe, 0x66, 0xff, 0xdd, 0xff, 0x19, 0x00, 0x93, 0xff,\n  0x3f, 0xff, 0x39, 0xff, 0x57, 0xff, 0x92, 0xff, 0x6c, 0xff, 0x6c, 0xff,\n  0x1a, 0x00, 0x37, 0x00, 0x25, 0x00, 0xcc, 0xff, 0xb3, 0x00, 0x39, 0x02,\n  0x99, 0x02, 0xd3, 0x02, 0x9b, 0x02, 0x2b, 0x02, 0xc0, 0x01, 0x49, 0x02,\n  0x4f, 0x02, 0xba, 0x01, 0x7f, 0x01, 0x8e, 0x01, 0x11, 0x02, 0x39, 0x02,\n  0xa5, 0x02, 0xf5, 0x02, 0x55, 0x02, 0x1c, 0x01, 0x4f, 0x00, 0x44, 0x00,\n  0x53, 0x00, 0x53, 0x00, 0x52, 0x00, 0xf9, 0xff, 0x60, 0xfe, 0xe7, 0xfc,\n  0xa9, 0xfc, 0x59, 0xfc, 0xd2, 0xfb, 0x6d, 0xfa, 0x31, 0xfa, 0x91, 0xfa,\n  0xe5, 0xfa, 0xaa, 0xfb, 0xa3, 0xfc, 0x9b, 0xfd, 0xf9, 0xfd, 0x60, 0xfe,\n  0xd9, 0xfe, 0xde, 0xfe, 0x6c, 0xfe, 0x7c, 0xfe, 0x6b, 0xff, 0x73, 0x00,\n  0x54, 0x01, 0x85, 0x01, 0x2b, 0x02, 0xb1, 0x02, 0xaf, 0x02, 0x3f, 0x02,\n  0x82, 0x01, 0xc4, 0x01, 0x17, 0x02, 0x81, 0x02, 0xe7, 0x02, 0x5f, 0x03,\n  0xf5, 0x03, 0x07, 0x04, 0x97, 0x03, 0x51, 0x03, 0xb9, 0x02, 0x61, 0x01,\n  0xdf, 0x00, 0x25, 0x01, 0xfd, 0x00, 0x5f, 0x00, 0xea, 0xff, 0xc3, 0xff,\n  0xd8, 0xff, 0x13, 0x00, 0x6c, 0xff, 0x69, 0xfe, 0x69, 0xfe, 0x60, 0xfe,\n  0x31, 0xfe, 0x6f, 0xfe, 0x84, 0xfe, 0x45, 0xfe, 0x09, 0xfe, 0x7f, 0xfd,\n  0x13, 0xfd, 0x45, 0xfd, 0x06, 0xfe, 0x66, 0xfe, 0xd9, 0xfd, 0xf1, 0xfc,\n  0xcb, 0xfc, 0x05, 0xfd, 0x49, 0xfd, 0xa5, 0xfd, 0x72, 0xfe, 0xb6, 0xff,\n  0x25, 0x00, 0x26, 0x00, 0xde, 0xff, 0x8a, 0xff, 0xa5, 0xff, 0x2e, 0x00,\n  0xd0, 0x00, 0x74, 0x00, 0x04, 0x00, 0x94, 0x00, 0x91, 0x01, 0x33, 0x02,\n  0x49, 0x02, 0x9f, 0x01, 0xa2, 0x01, 0x17, 0x02, 0xb5, 0x02, 0x35, 0x03,\n  0x15, 0x03, 0x77, 0x03, 0x95, 0x03, 0x3b, 0x03, 0x47, 0x02, 0xea, 0x01,\n  0xae, 0x01, 0xd7, 0x00, 0x38, 0x00, 0xc8, 0xff, 0x00, 0x00, 0x20, 0x00,\n  0xb7, 0xff, 0x30, 0xff, 0xa3, 0xfe, 0x9f, 0xfe, 0x17, 0xff, 0x17, 0xff,\n  0xa8, 0xfe, 0xfb, 0xfd, 0x7f, 0xfd, 0x3d, 0xfd, 0xd9, 0xfd, 0xe3, 0xfd,\n  0xff, 0xfd, 0xe7, 0xfd, 0x31, 0xfe, 0xdf, 0xfe, 0xcf, 0xfe, 0x94, 0xfe,\n  0x55, 0xfe, 0x75, 0xfe, 0x81, 0xfe, 0x5e, 0xfe, 0x9d, 0xfd, 0xb3, 0xfc,\n  0xe3, 0xfc, 0x8d, 0xfd, 0x34, 0xfe, 0xca, 0xfe, 0x78, 0xff, 0xac, 0x00,\n  0x01, 0x02, 0xd3, 0x02, 0xcb, 0x03, 0x5b, 0x04, 0x0a, 0x04, 0x58, 0x04,\n  0x92, 0x04, 0xe3, 0x03, 0x57, 0x03, 0xa5, 0x02, 0xcd, 0x01, 0x49, 0x01,\n  0x84, 0x01, 0xaf, 0x01, 0x84, 0x01, 0xd0, 0x00, 0x62, 0x00, 0x4d, 0x00,\n  0x29, 0x00, 0x98, 0xff, 0x50, 0xff, 0xfd, 0xfe, 0x6c, 0xfe, 0x24, 0xfe,\n  0xeb, 0xfd, 0x75, 0xfd, 0xe9, 0xfc, 0xed, 0xfc, 0x97, 0xfc, 0x4d, 0xfc,\n  0x0b, 0xfc, 0x23, 0xfc, 0x33, 0xfc, 0x93, 0xfc, 0x4d, 0xfd, 0x75, 0xfd,\n  0xcf, 0xfd, 0x69, 0xfe, 0x5f, 0xff, 0xd1, 0xff, 0x55, 0x00, 0x83, 0x00,\n  0x4f, 0x00, 0x95, 0x00, 0x25, 0x01, 0x72, 0x01, 0x72, 0x01, 0xb4, 0x01,\n  0x1b, 0x02, 0x43, 0x02, 0x57, 0x02, 0x4b, 0x02, 0x33, 0x02, 0x4b, 0x02,\n  0x1f, 0x02, 0x75, 0x02, 0xe5, 0x02, 0x2b, 0x03, 0x21, 0x03, 0x21, 0x03,\n  0x41, 0x03, 0x19, 0x03, 0xc5, 0x02, 0x3f, 0x02, 0xc0, 0x01, 0x24, 0x01,\n  0x7c, 0x00, 0x08, 0x00, 0x7d, 0xff, 0x68, 0xff, 0x98, 0xff, 0xe0, 0xff,\n  0x17, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xc0, 0xff, 0xd6, 0xfe, 0xd5, 0xfd,\n  0x85, 0xfd, 0x4b, 0xfd, 0x5d, 0xfd, 0xa9, 0xfd, 0x9d, 0xfd, 0xfb, 0xfc,\n  0x25, 0xfd, 0x19, 0xfd, 0x0b, 0xfd, 0x33, 0xfd, 0xf9, 0xfc, 0x55, 0xfd,\n  0x22, 0xfe, 0x23, 0xff, 0xef, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x1d, 0x00,\n  0x52, 0x00, 0x83, 0x00, 0x7d, 0x00, 0xa7, 0x00, 0xe0, 0x00, 0x55, 0x01,\n  0x99, 0x01, 0xae, 0x01, 0xe4, 0x01, 0xdf, 0x01, 0xb8, 0x01, 0x9f, 0x01,\n  0x84, 0x01, 0x71, 0x00, 0x33, 0xff, 0x54, 0xfe, 0xcf, 0xfd, 0xdf, 0xfd,\n  0xc5, 0xfd, 0xb7, 0xfd, 0xa5, 0xfd, 0x52, 0xfe, 0xe4, 0xfe, 0x4d, 0xff,\n  0xb6, 0xff, 0xcf, 0xff, 0x4c, 0x00, 0x55, 0x00, 0x4a, 0x00, 0x10, 0x00,\n  0x05, 0x00, 0x19, 0x00, 0xfe, 0xff, 0xf2, 0xff, 0xad, 0xff, 0x6c, 0xff,\n  0x68, 0xff, 0x23, 0x00, 0xf5, 0x00, 0xed, 0x01, 0x3d, 0x02, 0xbd, 0x01,\n  0xee, 0x00, 0x07, 0x00, 0x12, 0xff, 0x8f, 0xfd, 0xc5, 0xfc, 0xe9, 0xfc,\n  0x01, 0xfd, 0x25, 0xfd, 0x0d, 0xfd, 0x2f, 0xfd, 0xb5, 0xfd, 0xb7, 0xfe,\n  0xf8, 0xff, 0xfd, 0x00, 0xbe, 0x01, 0x8d, 0x02, 0x83, 0x03, 0x4a, 0x04,\n  0xc0, 0x04, 0x0f, 0x05, 0xc3, 0x04, 0xeb, 0x03, 0x17, 0x03, 0x8d, 0x02,\n  0x0b, 0x02, 0xd5, 0x01, 0x28, 0x01, 0x28, 0x00, 0xb9, 0xff, 0xc3, 0xff,\n  0xae, 0xff, 0x15, 0xff, 0x96, 0xfe, 0xdf, 0xfd, 0x19, 0xfd, 0xd3, 0xfc,\n  0x67, 0xfd, 0x91, 0xfd, 0xdd, 0xfc, 0x7d, 0xfc, 0xdb, 0xfc, 0x7f, 0xfd,\n  0x6d, 0xfe, 0x26, 0xff, 0x9f, 0xff, 0x8c, 0x00, 0x46, 0x01, 0x9a, 0x01,\n  0x69, 0x02, 0x51, 0x03, 0x49, 0x03, 0xcb, 0x02, 0xcf, 0x02, 0xb9, 0x02,\n  0x6d, 0x02, 0x21, 0x02, 0x01, 0x02, 0xb1, 0x01, 0x1e, 0x01, 0x4a, 0x00,\n  0xb6, 0xff, 0xad, 0xff, 0x50, 0xff, 0xf1, 0xfe, 0xa9, 0xfe, 0x63, 0xfe,\n  0x4c, 0xfe, 0x13, 0xfe, 0x4e, 0xfe, 0x0b, 0xff, 0x77, 0xff, 0x3b, 0x00,\n  0xc8, 0x00, 0xaa, 0x00, 0xc4, 0x00, 0xa3, 0x00, 0x22, 0x00, 0x41, 0x00,\n  0x31, 0x00, 0xc9, 0xff, 0x56, 0xff, 0xc9, 0xfe, 0x93, 0xfe, 0xfd, 0xfd,\n  0x2d, 0xfd, 0xc5, 0xfc, 0xb7, 0xfc, 0xc7, 0xfc, 0xfd, 0xfc, 0x25, 0xfd,\n  0xb7, 0xfd, 0xba, 0xfe, 0x6c, 0xff, 0x20, 0x00, 0x00, 0x01, 0x01, 0x02,\n  0xd5, 0x02, 0x2f, 0x03, 0xb5, 0x02, 0x83, 0x02, 0xa3, 0x01, 0xb2, 0x00,\n  0x94, 0x00, 0x98, 0x00, 0x2b, 0x00, 0x48, 0xff, 0xea, 0xfe, 0x5b, 0xfe,\n  0x69, 0xfd, 0x8d, 0xfc, 0x87, 0xfc, 0xe7, 0xfc, 0x55, 0xfd, 0xeb, 0xfd,\n  0x61, 0xfe, 0x1b, 0xff, 0x3f, 0xff, 0x1a, 0xff, 0x3c, 0xff, 0x99, 0xff,\n  0x5b, 0x00, 0x21, 0x01, 0xbb, 0x01, 0xb5, 0x02, 0xad, 0x03, 0xcb, 0x03,\n  0xbb, 0x03, 0x00, 0x04, 0x7c, 0x04, 0x7c, 0x04, 0x4f, 0x04, 0x9b, 0x03,\n  0x51, 0x02, 0x96, 0x01, 0xbc, 0x00, 0xf9, 0xff, 0xb7, 0xff, 0xf8, 0xff,\n  0x5e, 0x00, 0x58, 0x00, 0x5f, 0x00, 0xf9, 0xff, 0x12, 0xff, 0x97, 0xfe,\n  0xe5, 0xfd, 0x89, 0xfd, 0xa7, 0xfd, 0xaf, 0xfd, 0xd3, 0xfd, 0xd3, 0xfd,\n  0x34, 0xfe, 0x79, 0xfe, 0x43, 0xfe, 0xe9, 0xfd, 0xbb, 0xfd, 0x3d, 0xfe,\n  0x78, 0xfe, 0x0f, 0xff, 0xa7, 0xff, 0xc2, 0xff, 0xa7, 0xff, 0xb4, 0xff,\n  0x50, 0x00, 0x09, 0x01, 0x66, 0x01, 0x76, 0x01, 0xe2, 0x00, 0x7f, 0x00,\n  0x4c, 0x00, 0xf0, 0xff, 0x7a, 0xff, 0xdc, 0xfe, 0x8e, 0xfe, 0x10, 0xfe,\n  0x8d, 0xfd, 0x6d, 0xfd, 0x33, 0xfd, 0x61, 0xfd, 0xcd, 0xfd, 0x2d, 0xfe,\n  0xed, 0xfe, 0xab, 0xff, 0x4f, 0x00, 0xd6, 0x00, 0x5b, 0x01, 0x45, 0x02,\n  0x13, 0x03, 0xbf, 0x03, 0x03, 0x04, 0xcb, 0x03, 0x33, 0x03, 0x1b, 0x02,\n  0x4c, 0x01, 0xc7, 0x00, 0x8f, 0x00, 0x82, 0x00, 0x91, 0x00, 0xc1, 0x00,\n  0xf4, 0x00, 0x85, 0x00, 0x0a, 0x00, 0x78, 0xff, 0x03, 0xff, 0xcc, 0xfe,\n  0x24, 0xfe, 0x79, 0xfd, 0x1b, 0xfd, 0xa7, 0xfc, 0x1d, 0xfc, 0xc9, 0xfb,\n  0x03, 0xfc, 0x63, 0xfc, 0xf5, 0xfc, 0xed, 0xfd, 0x93, 0xfe, 0x00, 0xff,\n  0xb9, 0xff, 0x6d, 0x00, 0xe6, 0x00, 0x4f, 0x01, 0x79, 0x01, 0xe4, 0x01,\n  0x2d, 0x02, 0x9f, 0x02, 0x69, 0x02, 0x35, 0x02, 0x97, 0x02, 0x43, 0x03,\n  0xd1, 0x03, 0xf1, 0x03, 0xb9, 0x03, 0x77, 0x03, 0x97, 0x03, 0xcb, 0x03,\n  0x37, 0x03, 0x93, 0x02, 0x35, 0x02, 0x1c, 0x01, 0x3a, 0x00, 0x5a, 0xff,\n  0x3f, 0xfe, 0x89, 0xfd, 0x47, 0xfd, 0x21, 0xfd, 0xa1, 0xfc, 0x17, 0xfc,\n  0xc9, 0xfb, 0x11, 0xfc, 0x7d, 0xfc, 0x71, 0xfc, 0x8f, 0xfc, 0xc5, 0xfc,\n  0x9b, 0xfd, 0x27, 0xfe, 0xf7, 0xfe, 0x77, 0x00, 0xc6, 0x01, 0x1d, 0x03,\n  0xd9, 0x03, 0x4c, 0x04, 0xe3, 0x04, 0xfb, 0x04, 0xa7, 0x04, 0x77, 0x04,\n  0x6c, 0x04, 0xc7, 0x03, 0x87, 0x02, 0xe9, 0x00, 0xc8, 0xff, 0x56, 0xff,\n  0x36, 0xff, 0x21, 0xff, 0xde, 0xfe, 0x9d, 0xfe, 0x4b, 0xfe, 0xb3, 0xfd,\n  0x57, 0xfd, 0xa7, 0xfc, 0x23, 0xfc, 0x29, 0xfc, 0xdc, 0xfb, 0xba, 0xfb,\n  0xe4, 0xfb, 0x11, 0xfc, 0x8b, 0xfc, 0x27, 0xfd, 0xe5, 0xfd, 0x9f, 0xfe,\n  0xcc, 0xfe, 0xf9, 0xfe, 0xb0, 0xff, 0x11, 0x00, 0x8b, 0x00, 0x12, 0x01,\n  0x30, 0x01, 0x48, 0x01, 0x43, 0x01, 0x5e, 0x01, 0xb4, 0x01, 0x0f, 0x02,\n  0x39, 0x02, 0x63, 0x02, 0x1f, 0x02, 0xf6, 0x01, 0xd8, 0x01, 0x7f, 0x01,\n  0xae, 0x01, 0xcd, 0x01, 0xe7, 0x01, 0xc3, 0x01, 0x96, 0x01, 0x79, 0x01,\n  0x7e, 0x01, 0x82, 0x01, 0x6a, 0x01, 0x10, 0x01, 0x77, 0x00, 0x58, 0x00,\n  0x35, 0x00, 0x04, 0x00, 0x9b, 0xff, 0x53, 0xff, 0xf3, 0xfe, 0xf5, 0xfd,\n  0xf1, 0xfc, 0x65, 0xfc, 0x0b, 0xfc, 0x70, 0xfb, 0xf6, 0xfa, 0xd9, 0xfa,\n  0xf4, 0xfa, 0x29, 0xfb, 0x58, 0xfb, 0xbd, 0xfb, 0x8d, 0xfc, 0x71, 0xfd,\n  0x13, 0xfe, 0xd2, 0xfe, 0x8a, 0xff, 0x07, 0x00, 0x8c, 0x00, 0x43, 0x01,\n  0xed, 0x01, 0x93, 0x02, 0x2f, 0x03, 0x8f, 0x03, 0xef, 0x03, 0x34, 0x04,\n  0x07, 0x04, 0xc7, 0x03, 0xa1, 0x03, 0x85, 0x03, 0x24, 0x04, 0xc7, 0x04,\n  0xa7, 0x04, 0x7b, 0x04, 0xf7, 0x03, 0x55, 0x03, 0x9f, 0x02, 0x29, 0x02,\n  0x1d, 0x02, 0xbb, 0x01, 0xec, 0x00, 0x5b, 0x00, 0xda, 0xff, 0x2c, 0xff,\n  0xc6, 0xfe, 0x2b, 0xfe, 0x6d, 0xfd, 0x9d, 0xfc, 0x47, 0xfc, 0x1d, 0xfc,\n  0xc4, 0xfb, 0xbd, 0xfb, 0xb4, 0xfb, 0xe6, 0xfb, 0x0b, 0xfc, 0x65, 0xfc,\n  0xa1, 0xfc, 0xed, 0xfc, 0x97, 0xfd, 0x12, 0xfe, 0x66, 0xfe, 0xfc, 0xfe,\n  0x6b, 0xff, 0x81, 0xff, 0xf8, 0xff, 0x5f, 0x00, 0xb5, 0x00, 0x46, 0x01,\n  0xed, 0x01, 0x47, 0x02, 0x85, 0x02, 0xd7, 0x02, 0xff, 0x02, 0x23, 0x03,\n  0x67, 0x03, 0x59, 0x03, 0x4b, 0x03, 0x59, 0x03, 0xa7, 0x03, 0xa9, 0x03,\n  0x21, 0x03, 0x61, 0x02, 0x6d, 0x01, 0xe2, 0x00, 0x2f, 0x00, 0x2d, 0xff,\n  0x85, 0xfe, 0xf7, 0xfd, 0xa1, 0xfd, 0x3a, 0xfe, 0xe1, 0xfe, 0xff, 0xfe,\n  0x11, 0xff, 0x30, 0xff, 0x23, 0xff, 0x0b, 0xff, 0xc3, 0xfe, 0x58, 0xfe,\n  0x0d, 0xfe, 0xdf, 0xfd, 0xe3, 0xfd, 0xfd, 0xfd, 0xf9, 0xfd, 0xdf, 0xfd,\n  0xd3, 0xfd, 0xf1, 0xfd, 0x18, 0xfe, 0x12, 0xfe, 0xe5, 0xfd, 0xd5, 0xfd,\n  0x39, 0xfe, 0xbe, 0xfe, 0xae, 0xfe, 0x06, 0xff, 0x93, 0xff, 0x32, 0x00,\n  0xc5, 0x00, 0x1e, 0x01, 0x6f, 0x01, 0x88, 0x01, 0x34, 0x01, 0xeb, 0x00,\n  0xc8, 0x00, 0xc2, 0x00, 0x00, 0x01, 0xf2, 0x00, 0xa6, 0x00, 0xd4, 0xff,\n  0x02, 0xff, 0xae, 0xfe, 0xd5, 0xfe, 0xd0, 0xfe, 0xc1, 0xfe, 0xd6, 0xfe,\n  0x84, 0xfe, 0x46, 0xfe, 0x1f, 0xfe, 0x12, 0xfe, 0x91, 0xfe, 0x15, 0xff,\n  0xb1, 0xff, 0x73, 0x00, 0x2e, 0x01, 0xc6, 0x01, 0x45, 0x02, 0xc3, 0x02,\n  0x21, 0x03, 0x49, 0x03, 0x77, 0x03, 0x5f, 0x03, 0x2f, 0x03, 0x27, 0x03,\n  0xbb, 0x02, 0x21, 0x02, 0x78, 0x01, 0xc7, 0x00, 0x29, 0x00, 0xd5, 0xff,\n  0x8a, 0xff, 0x57, 0xff, 0x2f, 0xff, 0x2c, 0xff, 0x23, 0xff, 0x71, 0xff,\n  0xc0, 0xff, 0xc0, 0xff, 0xbc, 0xff, 0xe1, 0xff, 0x32, 0x00, 0x0a, 0x00,\n  0x9f, 0xff, 0xb3, 0xff, 0x00, 0x00, 0x4f, 0x00, 0xcb, 0x00, 0x49, 0x01,\n  0x30, 0x01, 0xd1, 0x00, 0x73, 0x00, 0xfc, 0xff, 0x81, 0xff, 0x11, 0xff,\n  0xb8, 0xfe, 0x58, 0xfe, 0x2e, 0xfe, 0xd5, 0xfd, 0xa9, 0xfd, 0x6d, 0xfd,\n  0x39, 0xfd, 0x5d, 0xfd, 0x71, 0xfd, 0x49, 0xfd, 0x13, 0xfd, 0x15, 0xfd,\n  0x5b, 0xfd, 0x0d, 0xfe, 0x76, 0xfe, 0x94, 0xfe, 0xa8, 0xfe, 0xd8, 0xfe,\n  0x21, 0xff, 0x5c, 0xff, 0xbd, 0xff, 0x77, 0x00, 0x43, 0x01, 0xbe, 0x01,\n  0x29, 0x02, 0x5b, 0x02, 0x57, 0x02, 0x15, 0x02, 0x1b, 0x02, 0x7b, 0x02,\n  0x2b, 0x03, 0x8f, 0x03, 0x8d, 0x03, 0xa9, 0x03, 0xa7, 0x03, 0x29, 0x03,\n  0xb9, 0x02, 0x35, 0x02, 0xaf, 0x01, 0x06, 0x01, 0x59, 0x00, 0xed, 0xff,\n  0x84, 0xff, 0x47, 0xff, 0x06, 0xff, 0xa6, 0xfe, 0x5e, 0xfe, 0x1e, 0xfe,\n  0xa5, 0xfd, 0x4d, 0xfd, 0x03, 0xfd, 0xef, 0xfc, 0xdb, 0xfc, 0xdb, 0xfc,\n  0x4f, 0xfd, 0xc9, 0xfd, 0x34, 0xfe, 0x78, 0xfe, 0x87, 0xfe, 0xbd, 0xfe,\n  0x09, 0xff, 0x6c, 0xff, 0xc0, 0xff, 0x25, 0x00, 0xa0, 0x00, 0x94, 0x00,\n  0xd3, 0x00, 0x5b, 0x01, 0xf0, 0x01, 0xf3, 0x01, 0xab, 0x01, 0xc3, 0x01,\n  0xde, 0x01, 0xa8, 0x01, 0x79, 0x01, 0x28, 0x01, 0xee, 0x00, 0xb5, 0x00,\n  0x6d, 0x00, 0x82, 0x00, 0x73, 0x00, 0x52, 0x00, 0x6b, 0x00, 0xe2, 0x00,\n  0x46, 0x01, 0x8b, 0x01, 0xae, 0x01, 0x3f, 0x01, 0xef, 0x00, 0xb0, 0x00,\n  0x7c, 0x00, 0x73, 0x00, 0x95, 0x00, 0xa6, 0x00, 0x7a, 0x00, 0x00, 0x00,\n  0x71, 0xff, 0x32, 0xff, 0x62, 0xff, 0xa1, 0xff, 0xb6, 0xff, 0x92, 0xff,\n  0x18, 0xff, 0xb5, 0xfe, 0x70, 0xfe, 0x40, 0xfe, 0x2a, 0xfe, 0x19, 0xfe,\n  0xe1, 0xfd, 0xf7, 0xfd, 0x16, 0xfe, 0x24, 0xfe, 0x4b, 0xfe, 0x64, 0xfe,\n  0x9d, 0xfe, 0x1b, 0xff, 0xb3, 0xff, 0xe0, 0xff, 0xcc, 0xff, 0xc0, 0xff,\n  0xd1, 0xff, 0x26, 0x00, 0x7f, 0x00, 0xad, 0x00, 0xda, 0x00, 0xbb, 0x00,\n  0x77, 0x00, 0xc5, 0x00, 0x28, 0x01, 0x1e, 0x01, 0x63, 0x01, 0xca, 0x01,\n  0x0f, 0x02, 0x15, 0x02, 0xd8, 0x01, 0x9c, 0x01, 0x55, 0x01, 0x27, 0x01,\n  0xb6, 0x00, 0x4d, 0x00, 0xaa, 0xff, 0x41, 0xff, 0x12, 0xff, 0xc7, 0xfe,\n  0x5a, 0xfe, 0x0d, 0xfe, 0xdd, 0xfd, 0xd9, 0xfd, 0xfd, 0xfd, 0xed, 0xfd,\n  0xd3, 0xfd, 0xc9, 0xfd, 0xfd, 0xfd, 0x16, 0xfe, 0x40, 0xfe, 0xae, 0xfe,\n  0x24, 0xff, 0x84, 0xff, 0xd4, 0xff, 0x14, 0x00, 0x88, 0x00, 0x45, 0x01,\n  0xd0, 0x01, 0xc7, 0x01, 0x46, 0x01, 0xa7, 0x00, 0x5b, 0x00, 0x4f, 0x00,\n  0x3e, 0x00, 0x64, 0x00, 0x26, 0x00, 0xe3, 0xff, 0x05, 0x00, 0x5e, 0x00,\n  0xda, 0x00, 0x4b, 0x01, 0xb8, 0x01, 0xa9, 0x01, 0x8e, 0x01, 0x8d, 0x01,\n  0x5d, 0x01, 0x25, 0x01, 0xe9, 0x00, 0x04, 0x01, 0x1f, 0x01, 0x3f, 0x01,\n  0x58, 0x01, 0xd0, 0x00, 0x41, 0x00, 0xb6, 0xff, 0x4a, 0xff, 0x26, 0xff,\n  0x18, 0xff, 0xfc, 0xfe, 0x90, 0xfe, 0x3c, 0xfe, 0x76, 0xfe, 0x9c, 0xfe,\n  0x7f, 0xfe, 0x6a, 0xfe, 0x8b, 0xfe, 0x90, 0xfe, 0x82, 0xfe, 0xc4, 0xfe,\n  0xb4, 0xfe, 0x90, 0xfe, 0x5e, 0xfe, 0x69, 0xfe, 0xbb, 0xfe, 0x00, 0xff,\n  0x51, 0xff, 0xb7, 0xff, 0x08, 0x00, 0x31, 0x00, 0x55, 0x00, 0xad, 0x00,\n  0x18, 0x01, 0x70, 0x01, 0x0d, 0x02, 0x89, 0x02, 0xb1, 0x02, 0x93, 0x02,\n  0x47, 0x02, 0xf3, 0x01, 0xa3, 0x01, 0x3d, 0x01, 0xdc, 0x00, 0x94, 0x00,\n  0x58, 0x00, 0x2b, 0x00, 0xf9, 0xff, 0xdb, 0xff, 0xd5, 0xff, 0x36, 0xff,\n  0xe2, 0xfe, 0xf6, 0xfe, 0x9d, 0xfe, 0x4f, 0xfe, 0x61, 0xfe, 0x05, 0xff,\n  0xc9, 0xff, 0x5e, 0x00, 0xc2, 0x00, 0x36, 0x01, 0x75, 0x01, 0x91, 0x01,\n  0x6f, 0x01, 0x0f, 0x01, 0xac, 0x00, 0x71, 0x00, 0x3a, 0x00, 0xc5, 0xff,\n  0x6f, 0xff, 0x6f, 0xff, 0x9c, 0xff, 0x93, 0xff, 0x5a, 0xff, 0x50, 0xff,\n  0x50, 0xff, 0x44, 0xff, 0x27, 0xff, 0x00, 0xff, 0x0f, 0xff, 0x21, 0xff,\n  0x4e, 0xff, 0x92, 0xff, 0x0b, 0x00, 0x74, 0x00, 0xb3, 0x00, 0xad, 0x00,\n  0x83, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x43, 0x00, 0x0a, 0x00, 0x34, 0x00,\n  0x9a, 0x00, 0xac, 0x00, 0xa0, 0x00, 0xb5, 0x00, 0xe8, 0x00, 0xd0, 0x00,\n  0xaa, 0x00, 0x86, 0x00, 0x62, 0x00, 0x50, 0x00, 0x19, 0x00, 0xd4, 0xff,\n  0x4e, 0xff, 0xd6, 0xfe, 0x64, 0xfe, 0xf7, 0xfd, 0xc9, 0xfd, 0x87, 0xfd,\n  0x3f, 0xfd, 0x6d, 0xfd, 0xd3, 0xfd, 0x0a, 0xfe, 0x5d, 0xfe, 0x99, 0xfe,\n  0x0f, 0xff, 0xa5, 0xff, 0x2b, 0x00, 0x79, 0x00, 0x8c, 0x00, 0x67, 0x00,\n  0xcb, 0xff, 0x53, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x50, 0xff, 0x8c, 0xff,\n  0xc8, 0xff, 0xce, 0xff, 0x0e, 0x00, 0x9b, 0x00, 0x13, 0x01, 0x9a, 0x01,\n  0x15, 0x02, 0x89, 0x02, 0xa3, 0x02, 0x6d, 0x02, 0x2f, 0x02, 0xd2, 0x01,\n  0x37, 0x01, 0xb8, 0x00, 0x31, 0x00, 0xf2, 0xff, 0xf9, 0xff, 0xef, 0xff,\n  0x04, 0x00, 0xf9, 0xff, 0x0b, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x19, 0x00,\n  0xd8, 0xff, 0x8c, 0xff, 0x41, 0xff, 0x30, 0xff, 0x5f, 0xff, 0x75, 0xff,\n  0xc5, 0xff, 0x2c, 0x00, 0x4f, 0x00, 0x71, 0x00, 0x7c, 0x00, 0x68, 0x00,\n  0x55, 0x00, 0x38, 0x00, 0x26, 0x00, 0x5e, 0x00, 0x7a, 0x00, 0x61, 0x00,\n  0x7c, 0x00, 0xcb, 0x00, 0xe9, 0x00, 0xd7, 0x00, 0xc8, 0x00, 0x6b, 0x00,\n  0x1a, 0x00, 0xcc, 0xff, 0x60, 0xff, 0xea, 0xfe, 0x87, 0xfe, 0x6c, 0xfe,\n  0x7e, 0xfe, 0x9a, 0xfe, 0xd8, 0xfe, 0x23, 0xff, 0x39, 0xff, 0x15, 0xff,\n  0xc6, 0xfe, 0x88, 0xfe, 0x21, 0xfe, 0xa9, 0xfd, 0x8b, 0xfd, 0x55, 0xfd,\n  0x31, 0xfd, 0x3d, 0xfd, 0x73, 0xfd, 0xeb, 0xfd, 0x99, 0xfe, 0x87, 0xff,\n  0x86, 0x00, 0x55, 0x01, 0x29, 0x02, 0xef, 0x02, 0x83, 0x03, 0xa9, 0x03,\n  0x9d, 0x03, 0x99, 0x03, 0x5d, 0x03, 0xed, 0x02, 0x8d, 0x02, 0x5d, 0x02,\n  0x57, 0x02, 0x0b, 0x02, 0xd6, 0x01, 0xba, 0x01, 0x79, 0x01, 0x76, 0x01,\n  0x54, 0x01, 0xfd, 0x00, 0x7a, 0x00, 0xef, 0xff, 0x45, 0xff, 0xcf, 0xfe,\n  0x87, 0xfe, 0x25, 0xfe, 0x1f, 0xfe, 0x3c, 0xfe, 0x1f, 0xfe, 0xe1, 0xfd,\n  0x6d, 0xfd, 0x45, 0xfd, 0x2b, 0xfd, 0xff, 0xfc, 0x49, 0xfd, 0xd1, 0xfd,\n  0x6a, 0xfe, 0x21, 0xff, 0xe9, 0xff, 0x79, 0x00, 0xe2, 0x00, 0x57, 0x01,\n  0xc7, 0x01, 0xe8, 0x01, 0x07, 0x02, 0x1b, 0x02, 0xf9, 0x01, 0x7f, 0x01,\n  0xf4, 0x00, 0x7d, 0x00, 0x13, 0x00, 0xce, 0xff, 0x92, 0xff, 0x65, 0xff,\n  0x5f, 0xff, 0x84, 0xff, 0x89, 0xff, 0x7b, 0xff, 0x9b, 0xff, 0xb4, 0xff,\n  0xa8, 0xff, 0x5f, 0xff, 0x02, 0xff, 0x0f, 0xff, 0x36, 0xff, 0x59, 0xff,\n  0x8d, 0xff, 0xd7, 0xff, 0x20, 0x00, 0x3e, 0x00, 0x46, 0x00, 0x83, 0x00,\n  0xc1, 0x00, 0xf8, 0x00, 0x49, 0x01, 0xd0, 0x01, 0x63, 0x02, 0x9f, 0x02,\n  0x83, 0x02, 0x5f, 0x02, 0x31, 0x02, 0xfa, 0x01, 0xba, 0x01, 0x5b, 0x01,\n  0x0d, 0x01, 0xbf, 0x00, 0x38, 0x00, 0x95, 0xff, 0x17, 0xff, 0x88, 0xfe,\n  0x16, 0xfe, 0xd5, 0xfd, 0x77, 0xfd, 0xef, 0xfc, 0x8f, 0xfc, 0x75, 0xfc,\n  0x6b, 0xfc, 0x77, 0xfc, 0x69, 0xfc, 0x55, 0xfc, 0xb5, 0xfc, 0x25, 0xfd,\n  0xa9, 0xfd, 0x2a, 0xfe, 0x93, 0xfe, 0xf1, 0xfe, 0x74, 0xff, 0xe6, 0xff,\n  0x22, 0x00, 0x7c, 0x00, 0xe2, 0x00, 0x6d, 0x01, 0x2d, 0x02, 0xb5, 0x02,\n  0xed, 0x02, 0x2f, 0x03, 0xdb, 0x03, 0x9c, 0x04, 0x2b, 0x05, 0xc8, 0x05,\n  0x13, 0x06, 0x17, 0x06, 0xb0, 0x05, 0x33, 0x05, 0x8b, 0x04, 0xff, 0x03,\n  0xc3, 0x03, 0x25, 0x03, 0x2d, 0x02, 0xd9, 0x00, 0x80, 0xff, 0x45, 0xfe,\n  0x41, 0xfd, 0x6d, 0xfc, 0xd5, 0xfb, 0x75, 0xfb, 0x12, 0xfb, 0xf4, 0xfa,\n  0x15, 0xfb, 0x6d, 0xfb, 0xd2, 0xfb, 0xd9, 0xfb, 0xcd, 0xfb, 0xc2, 0xfb,\n  0xd8, 0xfb, 0x13, 0xfc, 0x75, 0xfc, 0xf3, 0xfc, 0x2d, 0xfd, 0x75, 0xfd,\n  0xdf, 0xfd, 0x69, 0xfe, 0xf6, 0xfe, 0x74, 0xff, 0x02, 0x00, 0x82, 0x00,\n  0x21, 0x01, 0x8b, 0x01, 0xfa, 0x01, 0xa5, 0x02, 0x31, 0x03, 0x91, 0x03,\n  0xbd, 0x03, 0x1f, 0x04, 0x8b, 0x04, 0xb8, 0x04, 0x67, 0x04, 0xe3, 0x03,\n  0x5f, 0x03, 0xe3, 0x02, 0x15, 0x02, 0x3c, 0x01, 0xca, 0x00, 0x7a, 0x00,\n  0xf9, 0xff, 0xad, 0xff, 0x72, 0xff, 0x4d, 0xff, 0x3c, 0xff, 0x12, 0xff,\n  0xc3, 0xfe, 0x52, 0xfe, 0x0c, 0xfe, 0xc1, 0xfd, 0x91, 0xfd, 0xad, 0xfd,\n  0x04, 0xfe, 0x5d, 0xfe, 0x73, 0xfe, 0x90, 0xfe, 0xb4, 0xfe, 0xba, 0xfe,\n  0xca, 0xfe, 0xee, 0xfe, 0x29, 0xff, 0x83, 0xff, 0xbd, 0xff, 0xec, 0xff,\n  0x08, 0x00, 0xfb, 0xff, 0xb9, 0xff, 0x72, 0xff, 0x2f, 0xff, 0xd9, 0xfe,\n  0xca, 0xfe, 0xc9, 0xfe, 0xfd, 0xfe, 0x5a, 0xff, 0xbf, 0xff, 0x29, 0x00,\n  0x8c, 0x00, 0x22, 0x01, 0xbe, 0x01, 0x33, 0x02, 0x99, 0x02, 0xbb, 0x02,\n  0xd7, 0x02, 0xe9, 0x02, 0xc3, 0x02, 0xb1, 0x02, 0xbf, 0x02, 0x77, 0x02,\n  0x03, 0x02, 0x7c, 0x01, 0xd9, 0x00, 0x53, 0x00, 0xe3, 0xff, 0x65, 0xff,\n  0xdc, 0xfe, 0x64, 0xfe, 0x10, 0xfe, 0xeb, 0xfd, 0x15, 0xfe, 0x33, 0xfe,\n  0x09, 0xfe, 0xb5, 0xfd, 0x71, 0xfd, 0x73, 0xfd, 0x89, 0xfd, 0xbd, 0xfd,\n  0x04, 0xfe, 0x16, 0xfe, 0x19, 0xfe, 0x5d, 0xfe, 0x90, 0xfe, 0xa5, 0xfe,\n  0xe2, 0xfe, 0x20, 0xff, 0x86, 0xff, 0xcc, 0xff, 0xe4, 0xff, 0x16, 0x00,\n  0x55, 0x00, 0x95, 0x00, 0xd1, 0x00, 0xf4, 0x00, 0x07, 0x01, 0x1f, 0x01,\n  0x25, 0x01, 0xf2, 0x00, 0xc8, 0x00, 0xb3, 0x00, 0xb9, 0x00, 0xf4, 0x00,\n  0xfe, 0x00, 0xe9, 0x00, 0xd1, 0x00, 0xe6, 0x00, 0xd7, 0x00, 0x88, 0x00,\n  0x65, 0x00, 0x23, 0x00, 0xf3, 0xff, 0xec, 0xff, 0xb7, 0xff, 0x7a, 0xff,\n  0x42, 0xff, 0x0e, 0xff, 0x0f, 0xff, 0x23, 0xff, 0x54, 0xff, 0x77, 0xff,\n  0xae, 0xff, 0xed, 0xff, 0x04, 0x00, 0x0a, 0x00, 0xe9, 0xff, 0xd1, 0xff,\n  0xc9, 0xff, 0x9e, 0xff, 0x87, 0xff, 0xa5, 0xff, 0x04, 0x00, 0x86, 0x00,\n  0x30, 0x01, 0xee, 0x01, 0xad, 0x02, 0x2d, 0x03, 0x6d, 0x03, 0xbb, 0x03,\n  0xe7, 0x03, 0xbf, 0x03, 0x2d, 0x03, 0xb1, 0x02, 0x63, 0x02, 0xd0, 0x01,\n  0x0c, 0x01, 0x6d, 0x00, 0xe4, 0xff, 0x54, 0xff, 0xdf, 0xfe, 0x79, 0xfe,\n  0x25, 0xfe, 0x01, 0xfe, 0x01, 0xfe, 0x24, 0xfe, 0x4e, 0xfe, 0x87, 0xfe,\n  0xe1, 0xfe, 0x2a, 0xff, 0x08, 0xff, 0xba, 0xfe, 0x45, 0xfe, 0xcd, 0xfd,\n  0x6b, 0xfd, 0x1f, 0xfd, 0x1b, 0xfd, 0x37, 0xfd, 0x9d, 0xfd, 0x37, 0xfe,\n  0xa5, 0xfe, 0xe2, 0xfe, 0x51, 0xff, 0xa5, 0xff, 0xc6, 0xff, 0xbf, 0xff,\n  0xaa, 0xff, 0x72, 0xff, 0x48, 0xff, 0x38, 0xff, 0x42, 0xff, 0x90, 0xff,\n  0xfb, 0xff, 0x79, 0x00, 0x12, 0x01, 0xd0, 0x01, 0xb3, 0x02, 0x67, 0x03,\n  0xc3, 0x03, 0xf1, 0x03, 0xad, 0x03, 0x39, 0x03, 0xc3, 0x02, 0x57, 0x02,\n  0xe7, 0x01, 0x6f, 0x01, 0x13, 0x01, 0xcb, 0x00, 0x4d, 0x00, 0xae, 0xff,\n  0x2c, 0xff, 0xf4, 0xfe, 0xc6, 0xfe, 0x7b, 0xfe, 0x64, 0xfe, 0x61, 0xfe,\n  0x63, 0xfe, 0xa5, 0xfe, 0xf7, 0xfe, 0x42, 0xff, 0x7e, 0xff, 0xba, 0xff,\n  0xf6, 0xff, 0xef, 0xff, 0xc9, 0xff, 0xb0, 0xff, 0x71, 0xff, 0x08, 0xff,\n  0xe5, 0xfe, 0xdf, 0xfe, 0xcc, 0xfe, 0xc0, 0xfe, 0xb7, 0xfe, 0xdf, 0xfe,\n  0x12, 0xff, 0x83, 0xff, 0xdd, 0xff, 0xe4, 0xff, 0xf8, 0xff, 0x1a, 0x00,\n  0x1a, 0x00, 0x3a, 0x00, 0x85, 0x00, 0xb3, 0x00, 0xdf, 0x00, 0xf2, 0x00,\n  0xd1, 0x00, 0x8f, 0x00, 0x3b, 0x00, 0xec, 0xff, 0xe1, 0xff, 0x0a, 0x00,\n  0x25, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x11, 0x00, 0xea, 0xff,\n  0xb4, 0xff, 0xa8, 0xff, 0xb4, 0xff, 0xb1, 0xff, 0xc3, 0xff, 0xad, 0xff,\n  0x59, 0xff, 0x27, 0xff, 0x44, 0xff, 0x57, 0xff, 0x29, 0xff, 0x12, 0xff,\n  0x32, 0xff, 0x41, 0xff, 0x48, 0xff, 0x92, 0xff, 0x17, 0x00, 0x9e, 0x00,\n  0x28, 0x01, 0x90, 0x01, 0xdc, 0x01, 0xbe, 0x01, 0x84, 0x01, 0x3c, 0x01,\n  0xd1, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0xa1, 0x00, 0x8b, 0x00, 0x49, 0x00,\n  0xf5, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xf3, 0xff, 0x13, 0x00, 0x55, 0x00,\n  0x92, 0x00, 0xa1, 0x00, 0xb9, 0x00, 0xc8, 0x00, 0xcb, 0x00, 0xa7, 0x00,\n  0x59, 0x00, 0xf3, 0xff, 0x81, 0xff, 0x1e, 0xff, 0xdc, 0xfe, 0xba, 0xfe,\n  0x8e, 0xfe, 0x42, 0xfe, 0x1c, 0xfe, 0x06, 0xfe, 0xe9, 0xfd, 0xd3, 0xfd,\n  0xbd, 0xfd, 0xc7, 0xfd, 0xf7, 0xfd, 0x4c, 0xfe, 0x99, 0xfe, 0x94, 0xfe,\n  0xc6, 0xfe, 0x36, 0xff, 0xb3, 0xff, 0x4c, 0x00, 0xf4, 0x00, 0xa9, 0x01,\n  0x15, 0x02, 0x53, 0x02, 0x43, 0x02, 0x21, 0x02, 0xf1, 0x01, 0xc3, 0x01,\n  0xc6, 0x01, 0xae, 0x01, 0x5b, 0x01, 0x00, 0x01, 0xb2, 0x00, 0x6d, 0x00,\n  0x34, 0x00, 0xf8, 0xff, 0x98, 0xff, 0x68, 0xff, 0x42, 0xff, 0x26, 0xff,\n  0x42, 0xff, 0x6e, 0xff, 0x96, 0xff, 0xba, 0xff, 0xe7, 0xff, 0x5c, 0x00,\n  0x06, 0x01, 0x6f, 0x01, 0x99, 0x01, 0x67, 0x01, 0xfe, 0x00, 0x9b, 0x00,\n  0x43, 0x00, 0x02, 0x00, 0xcb, 0xff, 0x6e, 0xff, 0xf3, 0xfe, 0x7e, 0xfe,\n  0x1e, 0xfe, 0xe5, 0xfd, 0xc7, 0xfd, 0xc5, 0xfd, 0x07, 0xfe, 0x66, 0xfe,\n  0xd0, 0xfe, 0x21, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x81, 0xff, 0xec, 0xff,\n  0x26, 0x00, 0x94, 0x00, 0x07, 0x01, 0x78, 0x01, 0x8e, 0x01, 0xa2, 0x01,\n  0x99, 0x01, 0x40, 0x01, 0xf1, 0x00, 0xc2, 0x00, 0xdd, 0x00, 0xf7, 0x00,\n  0xe0, 0x00, 0x71, 0x00, 0x3a, 0x00, 0x26, 0x00, 0x05, 0x00, 0x20, 0x00,\n  0x2e, 0x00, 0x46, 0x00, 0x4c, 0x00, 0x37, 0x00, 0x44, 0x00, 0x4c, 0x00,\n  0x2e, 0x00, 0xfb, 0xff, 0xd1, 0xff, 0xe0, 0xff, 0x1d, 0x00, 0x52, 0x00,\n  0x56, 0x00, 0x25, 0x00, 0xec, 0xff, 0xae, 0xff, 0x9e, 0xff, 0xcb, 0xff,\n  0xd7, 0xff, 0xad, 0xff, 0x68, 0xff, 0x1e, 0xff, 0xfa, 0xfe, 0x02, 0xff,\n  0x30, 0xff, 0x78, 0xff, 0xda, 0xff, 0x41, 0x00, 0x5e, 0x00, 0x1f, 0x00,\n  0xd4, 0xff, 0x90, 0xff, 0x6e, 0xff, 0x5c, 0xff, 0x57, 0xff, 0x78, 0xff,\n  0xab, 0xff, 0xef, 0xff, 0x2c, 0x00, 0x6b, 0x00, 0xca, 0x00, 0x12, 0x01,\n  0x27, 0x01, 0x04, 0x01, 0xbf, 0x00, 0x74, 0x00, 0x37, 0x00, 0x26, 0x00,\n  0x46, 0x00, 0x62, 0x00, 0x4f, 0x00, 0x70, 0x00, 0x92, 0x00, 0xb2, 0x00,\n  0x22, 0x01, 0x72, 0x01, 0x67, 0x01, 0x34, 0x01, 0x09, 0x01, 0xd9, 0x00,\n  0xb6, 0x00, 0x64, 0x00, 0xfe, 0xff, 0xb1, 0xff, 0x41, 0xff, 0xdc, 0xfe,\n  0xba, 0xfe, 0xd3, 0xfe, 0xea, 0xfe, 0xeb, 0xfe, 0xee, 0xfe, 0xde, 0xfe,\n  0xcd, 0xfe, 0xaf, 0xfe, 0xa3, 0xfe, 0x9d, 0xfe, 0xa8, 0xfe, 0xa5, 0xfe,\n  0xcf, 0xfe, 0xfa, 0xfe, 0x2a, 0xff, 0x5c, 0xff, 0x7a, 0xff, 0xb6, 0xff,\n  0xbf, 0xff, 0x9c, 0xff, 0x72, 0xff, 0x7a, 0xff, 0x8c, 0xff, 0x92, 0xff,\n  0xa8, 0xff, 0xcc, 0xff, 0x04, 0x00, 0x6b, 0x00, 0xbf, 0x00, 0x18, 0x01,\n  0x8b, 0x01, 0x03, 0x02, 0x83, 0x02, 0xf7, 0x02, 0x45, 0x03, 0x59, 0x03,\n  0x35, 0x03, 0x01, 0x03, 0xc5, 0x02, 0x6d, 0x02, 0x25, 0x02, 0xb2, 0x01,\n  0x1e, 0x01, 0x8c, 0x00, 0xbc, 0xff, 0xca, 0xfe, 0x13, 0xfe, 0x8d, 0xfd,\n  0x0d, 0xfd, 0xb1, 0xfc, 0x99, 0xfc, 0x91, 0xfc, 0x8f, 0xfc, 0x97, 0xfc,\n  0xc1, 0xfc, 0xf9, 0xfc, 0x1f, 0xfd, 0x9d, 0xfd, 0x42, 0xfe, 0xe8, 0xfe,\n  0x87, 0xff, 0x2b, 0x00, 0xc5, 0x00, 0x63, 0x01, 0xe1, 0x01, 0x2d, 0x02,\n  0x6d, 0x02, 0x3d, 0x02, 0xcf, 0x01, 0x6f, 0x01, 0x16, 0x01, 0xce, 0x00,\n  0xa7, 0x00, 0xb2, 0x00, 0xe8, 0x00, 0x43, 0x01, 0x8d, 0x01, 0x93, 0x01,\n  0x66, 0x01, 0x4b, 0x01, 0x0f, 0x01, 0xd0, 0x00, 0xbc, 0x00, 0xc5, 0x00,\n  0xac, 0x00, 0x7d, 0x00, 0x32, 0x00, 0xbf, 0xff, 0x5f, 0xff, 0x1b, 0xff,\n  0x29, 0xff, 0x5d, 0xff, 0x99, 0xff, 0xad, 0xff, 0xc2, 0xff, 0xc6, 0xff,\n  0xb4, 0xff, 0xc0, 0xff, 0xd8, 0xff, 0xf3, 0xff, 0xc9, 0xff, 0x87, 0xff,\n  0x41, 0xff, 0x2d, 0xff, 0x36, 0xff, 0x30, 0xff, 0x51, 0xff, 0x41, 0xff,\n  0x42, 0xff, 0x6f, 0xff, 0x48, 0xff, 0x1e, 0xff, 0x1a, 0xff, 0x44, 0xff,\n  0x95, 0xff, 0xf2, 0xff, 0x3a, 0x00, 0x52, 0x00, 0x47, 0x00, 0x5e, 0x00,\n  0x70, 0x00, 0x83, 0x00, 0xa4, 0x00, 0x94, 0x00, 0x64, 0x00, 0x32, 0x00,\n  0x1d, 0x00, 0x17, 0x00, 0x19, 0x00, 0x10, 0x00, 0x02, 0x00, 0xe3, 0xff,\n  0xa4, 0xff, 0x92, 0xff, 0x89, 0xff, 0x38, 0xff, 0xfd, 0xfe, 0xcc, 0xfe,\n  0x84, 0xfe, 0x4e, 0xfe, 0x67, 0xfe, 0x9a, 0xfe, 0xd8, 0xfe, 0x18, 0xff,\n  0x51, 0xff, 0x80, 0xff, 0x8a, 0xff, 0xbc, 0xff, 0xfe, 0xff, 0x4c, 0x00,\n  0x3b, 0x00, 0x1f, 0x00, 0x37, 0x00, 0x64, 0x00, 0x7f, 0x00, 0x80, 0x00,\n  0x7c, 0x00, 0x5e, 0x00, 0x7a, 0x00, 0xe0, 0x00, 0x57, 0x01, 0xbb, 0x01,\n  0x13, 0x02, 0x7d, 0x02, 0x9f, 0x02, 0xa5, 0x02, 0xa5, 0x02, 0xab, 0x02,\n  0x9f, 0x02, 0x43, 0x02, 0xb4, 0x01, 0x10, 0x01, 0x80, 0x00, 0x19, 0x00,\n  0xb7, 0xff, 0x41, 0xff, 0xde, 0xfe, 0xa3, 0xfe, 0x72, 0xfe, 0x6a, 0xfe,\n  0x73, 0xfe, 0x90, 0xfe, 0x9f, 0xfe, 0x90, 0xfe, 0x88, 0xfe, 0xb7, 0xfe,\n  0xf1, 0xfe, 0x3b, 0xff, 0x90, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb6, 0xff,\n  0xc9, 0xff, 0xd1, 0xff, 0xe0, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xf5, 0xff, 0xe7, 0xff, 0xd1, 0xff, 0x99, 0xff, 0x6b, 0xff,\n  0x6f, 0xff, 0xa5, 0xff, 0xb7, 0xff, 0x8d, 0xff, 0x71, 0xff, 0x60, 0xff,\n  0x74, 0xff, 0x7a, 0xff, 0x5c, 0xff, 0x5a, 0xff, 0x54, 0xff, 0x39, 0xff,\n  0x57, 0xff, 0x99, 0xff, 0xf3, 0xff, 0x86, 0x00, 0x12, 0x01, 0x6c, 0x01,\n  0xa0, 0x01, 0xb5, 0x01, 0xa2, 0x01, 0x75, 0x01, 0x58, 0x01, 0x13, 0x01,\n  0xa4, 0x00, 0x55, 0x00, 0x00, 0x00, 0xd8, 0xff, 0xc3, 0xff, 0xbd, 0xff,\n  0xb4, 0xff, 0x8a, 0xff, 0x7d, 0xff, 0x92, 0xff, 0x9c, 0xff, 0x7a, 0xff,\n  0x47, 0xff, 0x38, 0xff, 0x2c, 0xff, 0x1e, 0xff, 0x09, 0xff, 0x03, 0xff,\n  0xf0, 0xfe, 0xfd, 0xfe, 0x21, 0xff, 0x54, 0xff, 0x96, 0xff, 0xdb, 0xff,\n  0x16, 0x00, 0x40, 0x00, 0x4a, 0x00, 0x52, 0x00, 0x3b, 0x00, 0x10, 0x00,\n  0x43, 0x00, 0x6e, 0x00, 0x7c, 0x00, 0xb3, 0x00, 0xf4, 0x00, 0xe2, 0x00,\n  0xa7, 0x00, 0x74, 0x00, 0x70, 0x00, 0x76, 0x00, 0x5c, 0x00, 0x5b, 0x00,\n  0x6e, 0x00, 0x85, 0x00, 0x91, 0x00, 0x91, 0x00, 0x7a, 0x00, 0x6e, 0x00,\n  0x3e, 0x00, 0xff, 0xff, 0xe1, 0xff, 0xb0, 0xff, 0xad, 0xff, 0xe7, 0xff,\n  0x32, 0x00, 0x9d, 0x00, 0x07, 0x01, 0x39, 0x01, 0x0f, 0x01, 0xce, 0x00,\n  0x7c, 0x00, 0x43, 0x00, 0x31, 0x00, 0x31, 0x00, 0x26, 0x00, 0x10, 0x00,\n  0xe1, 0xff, 0x93, 0xff, 0x47, 0xff, 0xff, 0xfe, 0xfd, 0xfe, 0xf9, 0xfe,\n  0xcc, 0xfe, 0x94, 0xfe, 0x6c, 0xfe, 0x49, 0xfe, 0x37, 0xfe, 0x3f, 0xfe,\n  0x54, 0xfe, 0xa2, 0xfe, 0x12, 0xff, 0x9f, 0xff, 0x1a, 0x00, 0xbb, 0x00,\n  0x7f, 0x01, 0xf3, 0x01, 0x35, 0x02, 0x39, 0x02, 0x1b, 0x02, 0xfd, 0x01,\n  0xea, 0x01, 0xbd, 0x01, 0x84, 0x01, 0x4e, 0x01, 0x22, 0x01, 0x1b, 0x01,\n  0x3a, 0x01, 0x60, 0x01, 0x69, 0x01, 0x67, 0x01, 0x4c, 0x01, 0x06, 0x01,\n  0xb3, 0x00, 0x50, 0x00, 0xe1, 0xff, 0x87, 0xff, 0x2d, 0xff, 0xd9, 0xfe,\n  0xa3, 0xfe, 0x64, 0xfe, 0x19, 0xfe, 0xe1, 0xfd, 0xb9, 0xfd, 0x85, 0xfd,\n  0x6b, 0xfd, 0x67, 0xfd, 0x69, 0xfd, 0xad, 0xfd, 0xff, 0xfd, 0x63, 0xfe,\n  0xf1, 0xfe, 0x5c, 0xff, 0xa5, 0xff, 0x01, 0x00, 0x43, 0x00, 0x61, 0x00,\n  0x74, 0x00, 0x83, 0x00, 0xa0, 0x00, 0xaf, 0x00, 0xdd, 0x00, 0x1b, 0x01,\n  0x3c, 0x01, 0x4c, 0x01, 0x6c, 0x01, 0xba, 0x01, 0xd3, 0x01, 0xaf, 0x01,\n  0x4e, 0x01, 0xe3, 0x00, 0x95, 0x00, 0x2f, 0x00, 0xd4, 0xff, 0x87, 0xff,\n  0x48, 0xff, 0x0b, 0xff, 0xd8, 0xfe, 0x9f, 0xfe, 0x4f, 0xfe, 0x13, 0xfe,\n  0xf1, 0xfd, 0x0d, 0xfe, 0x5d, 0xfe, 0xc1, 0xfe, 0x44, 0xff, 0xe0, 0xff,\n  0x4a, 0x00, 0x53, 0x00, 0x55, 0x00, 0x59, 0x00, 0x6a, 0x00, 0x91, 0x00,\n  0xb6, 0x00, 0xd9, 0x00, 0xf8, 0x00, 0xf4, 0x00, 0x00, 0x01, 0x25, 0x01,\n  0x61, 0x01, 0xcc, 0x01, 0x45, 0x02, 0xbd, 0x02, 0x0f, 0x03, 0x01, 0x03,\n  0xb3, 0x02, 0x81, 0x02, 0x45, 0x02, 0xdc, 0x01, 0x69, 0x01, 0x06, 0x01,\n  0xad, 0x00, 0x6a, 0x00, 0x11, 0x00, 0x87, 0xff, 0xff, 0xfe, 0x9f, 0xfe,\n  0x5b, 0xfe, 0x09, 0xfe, 0xcb, 0xfd, 0xa3, 0xfd, 0x91, 0xfd, 0xb5, 0xfd,\n  0xe3, 0xfd, 0x06, 0xfe, 0x16, 0xfe, 0x2b, 0xfe, 0x45, 0xfe, 0x7c, 0xfe,\n  0xd9, 0xfe, 0x1e, 0xff, 0x3b, 0xff, 0x56, 0xff, 0x6c, 0xff, 0x77, 0xff,\n  0x65, 0xff, 0x2f, 0xff, 0x20, 0xff, 0x11, 0xff, 0x12, 0xff, 0xff, 0xfe,\n  0xf1, 0xfe, 0xf1, 0xfe, 0x0b, 0xff, 0x35, 0xff, 0x3e, 0xff, 0x65, 0xff,\n  0xa8, 0xff, 0x0b, 0x00, 0xa9, 0x00, 0x3c, 0x01, 0xc7, 0x01, 0x91, 0x02,\n  0x29, 0x03, 0x53, 0x03, 0x67, 0x03, 0x59, 0x03, 0x1f, 0x03, 0xab, 0x02,\n  0x03, 0x02, 0x2d, 0x01, 0x61, 0x00, 0xcc, 0xff, 0x63, 0xff, 0x14, 0xff,\n  0xdf, 0xfe, 0x97, 0xfe, 0x3d, 0xfe, 0x07, 0xfe, 0x01, 0xfe, 0x2a, 0xfe,\n  0x75, 0xfe, 0xf1, 0xfe, 0x38, 0xff, 0x60, 0xff, 0x6b, 0xff, 0x5a, 0xff,\n  0x4b, 0xff, 0x47, 0xff, 0x5f, 0xff, 0x84, 0xff, 0xba, 0xff, 0x02, 0x00,\n  0x52, 0x00, 0x83, 0x00, 0xaa, 0x00, 0xb2, 0x00, 0xc5, 0x00, 0xdd, 0x00,\n  0x03, 0x01, 0x3f, 0x01, 0x6c, 0x01, 0x8d, 0x01, 0x85, 0x01, 0x4e, 0x01,\n  0x0d, 0x01, 0xee, 0x00, 0xdf, 0x00, 0xca, 0x00, 0xb2, 0x00, 0xad, 0x00,\n  0x9a, 0x00, 0x71, 0x00, 0x43, 0x00, 0x0a, 0x00, 0xfb, 0xff, 0xf9, 0xff,\n  0xde, 0xff, 0xbf, 0xff, 0xdd, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xe7, 0xff,\n  0xd2, 0xff, 0xc0, 0xff, 0xb3, 0xff, 0xcb, 0xff, 0xd7, 0xff, 0xfe, 0xff,\n  0x4c, 0x00, 0xaa, 0x00, 0xf8, 0x00, 0xe5, 0x00, 0x9a, 0x00, 0x56, 0x00,\n  0x1a, 0x00, 0xf0, 0xff, 0xc2, 0xff, 0x9f, 0xff, 0x6e, 0xff, 0x17, 0xff,\n  0xca, 0xfe, 0x8e, 0xfe, 0x70, 0xfe, 0x54, 0xfe, 0x5d, 0xfe, 0x7b, 0xfe,\n  0x9d, 0xfe, 0xdc, 0xfe, 0xe8, 0xfe, 0xdb, 0xfe, 0xd9, 0xfe, 0xd6, 0xfe,\n  0xc9, 0xfe, 0xb4, 0xfe, 0xa9, 0xfe, 0xb8, 0xfe, 0xcf, 0xfe, 0xf6, 0xfe,\n  0x51, 0xff, 0xbd, 0xff, 0x29, 0x00, 0x91, 0x00, 0xdd, 0x00, 0x27, 0x01,\n  0x82, 0x01, 0xc1, 0x01, 0xd5, 0x01, 0xf3, 0x01, 0x3f, 0x02, 0x8d, 0x02,\n  0xa7, 0x02, 0xa7, 0x02, 0x93, 0x02, 0x6f, 0x02, 0x3f, 0x02, 0x09, 0x02,\n  0xba, 0x01, 0x69, 0x01, 0x10, 0x01, 0xc4, 0x00, 0x92, 0x00, 0x53, 0x00,\n  0x1a, 0x00, 0xcc, 0xff, 0x8f, 0xff, 0x4e, 0xff, 0x08, 0xff, 0xc3, 0xfe,\n  0xab, 0xfe, 0xc4, 0xfe, 0xe7, 0xfe, 0x18, 0xff, 0x27, 0xff, 0x0b, 0xff,\n  0xbb, 0xfe, 0x5e, 0xfe, 0x16, 0xfe, 0xd5, 0xfd, 0xbd, 0xfd, 0xfd, 0xfd,\n  0x5d, 0xfe, 0xa8, 0xfe, 0xcf, 0xfe, 0xe2, 0xfe, 0xfa, 0xfe, 0x09, 0xff,\n  0x1b, 0xff, 0x2d, 0xff, 0x30, 0xff, 0x26, 0xff, 0x2a, 0xff, 0x62, 0xff,\n  0xb0, 0xff, 0xf5, 0xff, 0x34, 0x00, 0x71, 0x00, 0xb5, 0x00, 0x00, 0x01,\n  0x34, 0x01, 0x52, 0x01, 0x60, 0x01, 0x67, 0x01, 0x4b, 0x01, 0x15, 0x01,\n  0xec, 0x00, 0xdd, 0x00, 0xf2, 0x00, 0x09, 0x01, 0x18, 0x01, 0x15, 0x01,\n  0x0d, 0x01, 0xda, 0x00, 0x73, 0x00, 0x25, 0x00, 0xe4, 0xff, 0xa2, 0xff,\n  0x69, 0xff, 0x53, 0xff, 0x39, 0xff, 0x0c, 0xff, 0xd8, 0xfe, 0x9d, 0xfe,\n  0x87, 0xfe, 0x81, 0xfe, 0x96, 0xfe, 0xbb, 0xfe, 0x05, 0xff, 0x6b, 0xff,\n  0xc8, 0xff, 0x01, 0x00, 0x2f, 0x00, 0x6b, 0x00, 0x9a, 0x00, 0xbf, 0x00,\n  0xe3, 0x00, 0x24, 0x01, 0x4b, 0x01, 0x43, 0x01, 0x2d, 0x01, 0xfa, 0x00,\n  0x9a, 0x00, 0x16, 0x00, 0x9b, 0xff, 0x38, 0xff, 0x0e, 0xff, 0x08, 0xff,\n  0x0e, 0xff, 0x24, 0xff, 0x36, 0xff, 0x35, 0xff, 0x41, 0xff, 0x5c, 0xff,\n  0x7a, 0xff, 0x92, 0xff, 0x99, 0xff, 0xa8, 0xff, 0xd5, 0xff, 0x17, 0x00,\n  0x79, 0x00, 0xbb, 0x00, 0xcb, 0x00, 0xd4, 0x00, 0xec, 0x00, 0xf4, 0x00,\n  0x22, 0x01, 0x5d, 0x01, 0x76, 0x01, 0x4c, 0x01, 0x0c, 0x01, 0xcb, 0x00,\n  0x8f, 0x00, 0x49, 0x00, 0xf6, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xc2, 0xff,\n  0xb3, 0xff, 0xa2, 0xff, 0x8f, 0xff, 0x95, 0xff, 0xa8, 0xff, 0xab, 0xff,\n  0x99, 0xff, 0x72, 0xff, 0x65, 0xff, 0x86, 0xff, 0xab, 0xff, 0xcb, 0xff,\n  0xd7, 0xff, 0xef, 0xff, 0x20, 0x00, 0x40, 0x00, 0x80, 0x00, 0xf8, 0x00,\n  0x9d, 0x01, 0x37, 0x02, 0xab, 0x02, 0x05, 0x03, 0x05, 0x03, 0xb1, 0x02,\n  0x55, 0x02, 0xfa, 0x01, 0x94, 0x01, 0x31, 0x01, 0xac, 0x00, 0x0a, 0x00,\n  0x6b, 0xff, 0xe5, 0xfe, 0x84, 0xfe, 0x27, 0xfe, 0xe5, 0xfd, 0xaf, 0xfd,\n  0x79, 0xfd, 0x61, 0xfd, 0x51, 0xfd, 0x55, 0xfd, 0x75, 0xfd, 0xb5, 0xfd,\n  0xf7, 0xfd, 0x27, 0xfe, 0x7f, 0xfe, 0xe7, 0xfe, 0x4d, 0xff, 0xb0, 0xff,\n  0xfb, 0xff, 0x22, 0x00, 0x23, 0x00, 0x25, 0x00, 0x40, 0x00, 0x3b, 0x00,\n  0x0e, 0x00, 0xf2, 0xff, 0xe1, 0xff, 0xea, 0xff, 0xfc, 0xff, 0xdd, 0xff,\n  0xa7, 0xff, 0x74, 0xff, 0x81, 0xff, 0xdd, 0xff, 0x67, 0x00, 0xf2, 0x00,\n  0x60, 0x01, 0xc4, 0x01, 0x13, 0x02, 0x67, 0x02, 0xd3, 0x02, 0x49, 0x03,\n  0x93, 0x03, 0x77, 0x03, 0x01, 0x03, 0x63, 0x02, 0xb1, 0x01, 0x24, 0x01,\n  0xa7, 0x00, 0x37, 0x00, 0xba, 0xff, 0x2f, 0xff, 0xb4, 0xfe, 0x70, 0xfe,\n  0x84, 0xfe, 0xc0, 0xfe, 0xf9, 0xfe, 0x24, 0xff, 0x56, 0xff, 0x7a, 0xff,\n  0x7e, 0xff, 0x66, 0xff, 0x39, 0xff, 0x08, 0xff, 0xd3, 0xfe, 0xa3, 0xfe,\n  0x90, 0xfe, 0x93, 0xfe, 0x9a, 0xfe, 0x8a, 0xfe, 0x96, 0xfe, 0xc6, 0xfe,\n  0xf0, 0xfe, 0x14, 0xff, 0x3c, 0xff, 0x7d, 0xff, 0xbf, 0xff, 0xdb, 0xff,\n  0xef, 0xff, 0x10, 0x00, 0x38, 0x00, 0x49, 0x00, 0x67, 0x00, 0x8e, 0x00,\n  0xc1, 0x00, 0x01, 0x01, 0x4f, 0x01, 0xb7, 0x01, 0x21, 0x02, 0x45, 0x02,\n  0x4f, 0x02, 0x6f, 0x02, 0x59, 0x02, 0x0f, 0x02, 0x8e, 0x01, 0x03, 0x01,\n  0x94, 0x00, 0x47, 0x00, 0xfe, 0xff, 0xb6, 0xff, 0x6c, 0xff, 0x42, 0xff,\n  0x21, 0xff, 0x0f, 0xff, 0x03, 0xff, 0xf6, 0xfe, 0x0e, 0xff, 0x3e, 0xff,\n  0x68, 0xff, 0x5f, 0xff, 0x32, 0xff, 0xf9, 0xfe, 0xbe, 0xfe, 0x90, 0xfe,\n  0x6d, 0xfe, 0x60, 0xfe, 0x81, 0xfe, 0xba, 0xfe, 0xe7, 0xfe, 0x02, 0xff,\n  0x0c, 0xff, 0x2a, 0xff, 0x5f, 0xff, 0x9b, 0xff, 0xc0, 0xff, 0xd7, 0xff,\n  0xf0, 0xff, 0xf6, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xe7, 0xff,\n  0xcf, 0xff, 0xb6, 0xff, 0xc6, 0xff, 0x0b, 0x00, 0x4d, 0x00, 0x7a, 0x00,\n  0xa1, 0x00, 0xe0, 0x00, 0x1f, 0x01, 0x43, 0x01, 0x55, 0x01, 0x6a, 0x01,\n  0x97, 0x01, 0xd8, 0x01, 0x27, 0x02, 0x87, 0x02, 0xc9, 0x02, 0xcd, 0x02,\n  0xad, 0x02, 0x5f, 0x02, 0x03, 0x02, 0x99, 0x01, 0x07, 0x01, 0x7f, 0x00,\n  0x04, 0x00, 0xa8, 0xff, 0x53, 0xff, 0xff, 0xfe, 0xc1, 0xfe, 0x7b, 0xfe,\n  0x3d, 0xfe, 0x25, 0xfe, 0x2d, 0xfe, 0x48, 0xfe, 0x75, 0xfe, 0xaf, 0xfe,\n  0xe2, 0xfe, 0x27, 0xff, 0x7b, 0xff, 0xb4, 0xff, 0x98, 0xff, 0x44, 0xff,\n  0xea, 0xfe, 0xaf, 0xfe, 0xab, 0xfe, 0xd2, 0xfe, 0x03, 0xff, 0x12, 0xff,\n  0x24, 0xff, 0x1b, 0xff, 0xf6, 0xfe, 0xd6, 0xfe, 0xc9, 0xfe, 0xcd, 0xfe,\n  0xed, 0xfe, 0x23, 0xff, 0x7d, 0xff, 0xe3, 0xff, 0x37, 0x00, 0x80, 0x00,\n  0xdc, 0x00, 0x63, 0x01, 0xcf, 0x01, 0x09, 0x02, 0x0f, 0x02, 0xe7, 0x01,\n  0x9a, 0x01, 0x4b, 0x01, 0x03, 0x01, 0xc2, 0x00, 0x8c, 0x00, 0x64, 0x00,\n  0x68, 0x00, 0xa1, 0x00, 0xe6, 0x00, 0x0a, 0x01, 0x1c, 0x01, 0x1e, 0x01,\n  0x1f, 0x01, 0x13, 0x01, 0xf1, 0x00, 0xaa, 0x00, 0x35, 0x00, 0xad, 0xff,\n  0x1e, 0xff, 0xa0, 0xfe, 0x45, 0xfe, 0x0d, 0xfe, 0x10, 0xfe, 0x31, 0xfe,\n  0x64, 0xfe, 0x8b, 0xfe, 0xb1, 0xfe, 0xd2, 0xfe, 0xea, 0xfe, 0x17, 0xff,\n  0x47, 0xff, 0x69, 0xff, 0x7d, 0xff, 0x80, 0xff, 0x77, 0xff, 0x8a, 0xff,\n  0xd8, 0xff, 0x26, 0x00, 0x74, 0x00, 0xb3, 0x00, 0xd7, 0x00, 0xd9, 0x00,\n  0xca, 0x00, 0xa4, 0x00, 0x6d, 0x00, 0x49, 0x00, 0x3d, 0x00, 0x4c, 0x00,\n  0x5f, 0x00, 0x88, 0x00, 0xb6, 0x00, 0xee, 0x00, 0x1b, 0x01, 0x1c, 0x01,\n  0x1b, 0x01, 0x00, 0x01, 0xe9, 0x00, 0xe5, 0x00, 0xda, 0x00, 0xc4, 0x00,\n  0xa4, 0x00, 0x8c, 0x00, 0x76, 0x00, 0x80, 0x00, 0xb5, 0x00, 0xb3, 0x00,\n  0x95, 0x00, 0x82, 0x00, 0x6e, 0x00, 0x68, 0x00, 0x58, 0x00, 0x02, 0x00,\n  0x98, 0xff, 0x41, 0xff, 0x03, 0xff, 0xdf, 0xfe, 0xc4, 0xfe, 0xb2, 0xfe,\n  0xc4, 0xfe, 0xe8, 0xfe, 0x14, 0xff, 0x45, 0xff, 0x7a, 0xff, 0x96, 0xff,\n  0xb6, 0xff, 0xc8, 0xff, 0xcc, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xec, 0xff,\n  0xed, 0xff, 0xff, 0xff, 0x11, 0x00, 0x13, 0x00, 0xf0, 0xff, 0xb7, 0xff,\n  0x7d, 0xff, 0x3e, 0xff, 0x30, 0xff, 0x36, 0xff, 0x4e, 0xff, 0x7b, 0xff,\n  0xad, 0xff, 0xd4, 0xff, 0xe0, 0xff, 0xc2, 0xff, 0x90, 0xff, 0x63, 0xff,\n  0x38, 0xff, 0x14, 0xff, 0xf3, 0xfe, 0xe7, 0xfe, 0xf0, 0xfe, 0x05, 0xff,\n  0x3b, 0xff, 0x90, 0xff, 0xfe, 0xff, 0x94, 0x00, 0x22, 0x01, 0x91, 0x01,\n  0x17, 0x02, 0xa7, 0x02, 0xf9, 0x02, 0x11, 0x03, 0x07, 0x03, 0xef, 0x02,\n  0xc9, 0x02, 0x83, 0x02, 0x21, 0x02, 0xaf, 0x01, 0x54, 0x01, 0xf8, 0x00,\n  0x97, 0x00, 0x37, 0x00, 0xe4, 0xff, 0x93, 0xff, 0x29, 0xff, 0xca, 0xfe,\n  0x91, 0xfe, 0x69, 0xfe, 0x43, 0xfe, 0x12, 0xfe, 0xe5, 0xfd, 0xb7, 0xfd,\n  0x9f, 0xfd, 0x99, 0xfd, 0xb1, 0xfd, 0xe5, 0xfd, 0x0f, 0xfe, 0x25, 0xfe,\n  0x30, 0xfe, 0x57, 0xfe, 0x85, 0xfe, 0xae, 0xfe, 0xd6, 0xfe, 0x27, 0xff,\n  0x86, 0xff, 0xf0, 0xff, 0x68, 0x00, 0xf4, 0x00, 0x79, 0x01, 0xeb, 0x01,\n  0x53, 0x02, 0xab, 0x02, 0xed, 0x02, 0x01, 0x03, 0xe3, 0x02, 0xc1, 0x02,\n  0x99, 0x02, 0x67, 0x02, 0x3d, 0x02, 0x15, 0x02, 0xed, 0x01, 0xca, 0x01,\n  0x93, 0x01, 0x46, 0x01, 0xfd, 0x00, 0xc2, 0x00, 0x8c, 0x00, 0x3a, 0x00,\n  0xde, 0xff, 0x90, 0xff, 0x2f, 0xff, 0xc1, 0xfe, 0x6d, 0xfe, 0x30, 0xfe,\n  0x12, 0xfe, 0x1c, 0xfe, 0x3f, 0xfe, 0x4e, 0xfe, 0x60, 0xfe, 0x6a, 0xfe,\n  0x5d, 0xfe, 0x55, 0xfe, 0x6a, 0xfe, 0x99, 0xfe, 0xb1, 0xfe, 0xbb, 0xfe,\n  0xc7, 0xfe, 0xd9, 0xfe, 0xff, 0xfe, 0x4d, 0xff, 0x9f, 0xff, 0xc9, 0xff,\n  0xd2, 0xff, 0xc0, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xbc, 0xff, 0xdb, 0xff,\n  0x14, 0x00, 0x3b, 0x00, 0x67, 0x00, 0x8c, 0x00, 0xc2, 0x00, 0xf4, 0x00,\n  0x12, 0x01, 0x4c, 0x01, 0x6d, 0x01, 0x8e, 0x01, 0xa8, 0x01, 0xb1, 0x01,\n  0xd3, 0x01, 0x0d, 0x02, 0x21, 0x02, 0x21, 0x02, 0x01, 0x02, 0xbd, 0x01,\n  0x76, 0x01, 0x09, 0x01, 0x8e, 0x00, 0x04, 0x00, 0x69, 0xff, 0xd5, 0xfe,\n  0x66, 0xfe, 0x16, 0xfe, 0xcf, 0xfd, 0xab, 0xfd, 0x9f, 0xfd, 0xa1, 0xfd,\n  0xcf, 0xfd, 0x07, 0xfe, 0x2d, 0xfe, 0x51, 0xfe, 0x93, 0xfe, 0xed, 0xfe,\n  0x45, 0xff, 0xa1, 0xff, 0xf8, 0xff, 0x56, 0x00, 0xaa, 0x00, 0x13, 0x01,\n  0x88, 0x01, 0x07, 0x02, 0x7b, 0x02, 0xad, 0x02, 0xbd, 0x02, 0xc3, 0x02,\n  0xb5, 0x02, 0x7f, 0x02, 0x35, 0x02, 0xe2, 0x01, 0x6f, 0x01, 0x0c, 0x01,\n  0xb9, 0x00, 0x74, 0x00, 0x49, 0x00, 0x25, 0x00, 0x02, 0x00, 0xe6, 0xff,\n  0xb1, 0xff, 0x5d, 0xff, 0xff, 0xfe, 0xb7, 0xfe, 0x8e, 0xfe, 0x82, 0xfe,\n  0x85, 0xfe, 0xa0, 0xfe, 0xba, 0xfe, 0xd9, 0xfe, 0x00, 0xff, 0x05, 0xff,\n  0xe5, 0xfe, 0xba, 0xfe, 0x9a, 0xfe, 0x88, 0xfe, 0x78, 0xfe, 0x6c, 0xfe,\n  0x63, 0xfe, 0x51, 0xfe, 0x4b, 0xfe, 0x48, 0xfe, 0x5b, 0xfe, 0x9d, 0xfe,\n  0x08, 0xff, 0x7a, 0xff, 0xdb, 0xff, 0x1f, 0x00, 0x4f, 0x00, 0x98, 0x00,\n  0x10, 0x01, 0x9f, 0x01, 0xf0, 0x01, 0x07, 0x02, 0x0f, 0x02, 0x1b, 0x02,\n  0x27, 0x02, 0x0b, 0x02, 0xf9, 0x01, 0xf3, 0x01, 0xfd, 0x01, 0xf7, 0x01,\n  0xd9, 0x01, 0xa3, 0x01, 0x66, 0x01, 0x2d, 0x01, 0xc7, 0x00, 0x43, 0x00,\n  0xb9, 0xff, 0x41, 0xff, 0xd5, 0xfe, 0x6c, 0xfe, 0x09, 0xfe, 0xbd, 0xfd,\n  0x9d, 0xfd, 0x91, 0xfd, 0x9f, 0xfd, 0xc1, 0xfd, 0xf7, 0xfd, 0x2e, 0xfe,\n  0x84, 0xfe, 0xed, 0xfe, 0x4e, 0xff, 0xb3, 0xff, 0x20, 0x00, 0x8f, 0x00,\n  0xf8, 0x00, 0x67, 0x01, 0xb5, 0x01, 0xcc, 0x01, 0xc9, 0x01, 0xab, 0x01,\n  0x7f, 0x01, 0x49, 0x01, 0x10, 0x01, 0xdc, 0x00, 0xaa, 0x00, 0x89, 0x00,\n  0x83, 0x00, 0x8e, 0x00, 0x91, 0x00, 0x7a, 0x00, 0x5f, 0x00, 0x35, 0x00,\n  0x02, 0x00, 0xe4, 0xff, 0xc6, 0xff, 0x9f, 0xff, 0x75, 0xff, 0x5a, 0xff,\n  0x63, 0xff, 0x93, 0xff, 0xb1, 0xff, 0xb7, 0xff, 0xc0, 0xff, 0xb4, 0xff,\n  0xad, 0xff, 0x8a, 0xff, 0x6b, 0xff, 0x5a, 0xff, 0x68, 0xff, 0x80, 0xff,\n  0x89, 0xff, 0x8d, 0xff, 0xa5, 0xff, 0xbc, 0xff, 0xb9, 0xff, 0xba, 0xff,\n  0xc8, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xc9, 0xff, 0x98, 0xff,\n  0x72, 0xff, 0x51, 0xff, 0x3c, 0xff, 0x33, 0xff, 0x18, 0xff, 0xf4, 0xfe,\n  0xe4, 0xfe, 0xeb, 0xfe, 0xfd, 0xfe, 0x11, 0xff, 0x2f, 0xff, 0x6b, 0xff,\n  0xb7, 0xff, 0xea, 0xff, 0x00, 0x00, 0x1c, 0x00, 0x4d, 0x00, 0x8b, 0x00,\n  0xb6, 0x00, 0xc8, 0x00, 0xd1, 0x00, 0xa7, 0x00, 0x82, 0x00, 0x62, 0x00,\n  0x5c, 0x00, 0x80, 0x00, 0xaf, 0x00, 0xdc, 0x00, 0xfe, 0x00, 0x3d, 0x01,\n  0x8a, 0x01, 0xf0, 0x01, 0x3b, 0x02, 0x5d, 0x02, 0x51, 0x02, 0x1d, 0x02,\n  0xd0, 0x01, 0x75, 0x01, 0x22, 0x01, 0xe3, 0x00, 0x8c, 0x00, 0xfe, 0xff,\n  0x6b, 0xff, 0xf3, 0xfe, 0x99, 0xfe, 0x61, 0xfe, 0x42, 0xfe, 0x39, 0xfe,\n  0x4b, 0xfe, 0x6d, 0xfe, 0x82, 0xfe, 0x7b, 0xfe, 0x5e, 0xfe, 0x46, 0xfe,\n  0x57, 0xfe, 0xa0, 0xfe, 0xf7, 0xfe, 0x48, 0xff, 0x86, 0xff, 0xc0, 0xff,\n  0xfe, 0xff, 0x2f, 0x00, 0x71, 0x00, 0xbf, 0x00, 0x0f, 0x01, 0x5d, 0x01,\n  0x87, 0x01, 0x7e, 0x01, 0x6d, 0x01, 0x55, 0x01, 0x3f, 0x01, 0x1b, 0x01,\n  0xeb, 0x00, 0xcb, 0x00, 0xa0, 0x00, 0x9d, 0x00, 0xaf, 0x00, 0x7a, 0x00,\n  0x1d, 0x00, 0xb7, 0xff, 0x69, 0xff, 0x23, 0xff, 0xd8, 0xfe, 0xae, 0xfe,\n  0x9a, 0xfe, 0x7f, 0xfe, 0x72, 0xfe, 0x67, 0xfe, 0x5e, 0xfe, 0x7e, 0xfe,\n  0xbd, 0xfe, 0xee, 0xfe, 0x0b, 0xff, 0x44, 0xff, 0x7e, 0xff, 0xb4, 0xff,\n  0x10, 0x00, 0x4c, 0x00, 0x7f, 0x00, 0xb8, 0x00, 0xd3, 0x00, 0xf1, 0x00,\n  0x19, 0x01, 0x51, 0x01, 0x96, 0x01, 0xb4, 0x01, 0xa0, 0x01, 0x9a, 0x01,\n  0xaf, 0x01, 0xcd, 0x01, 0x09, 0x02, 0x53, 0x02, 0x7b, 0x02, 0x7f, 0x02,\n  0x6f, 0x02, 0x5d, 0x02, 0x21, 0x02, 0xc6, 0x01, 0x55, 0x01, 0xee, 0x00,\n  0x9b, 0x00, 0x67, 0x00, 0x40, 0x00, 0xed, 0xff, 0x7a, 0xff, 0xfa, 0xfe,\n  0x9a, 0xfe, 0x4c, 0xfe, 0x16, 0xfe, 0xdf, 0xfd, 0xc1, 0xfd, 0xb9, 0xfd,\n  0xad, 0xfd, 0x9d, 0xfd, 0x9d, 0xfd, 0xb5, 0xfd, 0xeb, 0xfd, 0x1f, 0xfe,\n  0x46, 0xfe, 0x4f, 0xfe, 0x52, 0xfe, 0x6d, 0xfe, 0x90, 0xfe, 0xca, 0xfe,\n  0x17, 0xff, 0x75, 0xff, 0xc8, 0xff, 0x05, 0x00, 0x17, 0x00, 0x16, 0x00,\n  0x1d, 0x00, 0x23, 0x00, 0x32, 0x00, 0x83, 0x00, 0x10, 0x01, 0x9f, 0x01,\n  0x2b, 0x02, 0x89, 0x02, 0xc1, 0x02, 0x05, 0x03, 0x29, 0x03, 0x37, 0x03,\n  0x27, 0x03, 0xc3, 0x02, 0x2d, 0x02, 0x96, 0x01, 0x13, 0x01, 0xa0, 0x00,\n  0x4f, 0x00, 0x0b, 0x00, 0xc0, 0xff, 0x66, 0xff, 0x05, 0xff, 0xa9, 0xfe,\n  0x49, 0xfe, 0xf9, 0xfd, 0xc1, 0xfd, 0xa3, 0xfd, 0xad, 0xfd, 0xd7, 0xfd,\n  0x12, 0xfe, 0x5e, 0xfe, 0x9c, 0xfe, 0xbd, 0xfe, 0x06, 0xff, 0x51, 0xff,\n  0x87, 0xff, 0xbf, 0xff, 0xfc, 0xff, 0x58, 0x00, 0xb0, 0x00, 0xf8, 0x00,\n  0x2d, 0x01, 0x3f, 0x01, 0x3c, 0x01, 0x30, 0x01, 0x01, 0x01, 0xbb, 0x00,\n  0x8c, 0x00, 0x55, 0x00, 0x17, 0x00, 0xea, 0xff, 0xaa, 0xff, 0x60, 0xff,\n  0x23, 0xff, 0xfd, 0xfe, 0xe7, 0xfe, 0xd9, 0xfe, 0xf1, 0xfe, 0x33, 0xff,\n  0x84, 0xff, 0xd5, 0xff, 0x20, 0x00, 0x76, 0x00, 0xbc, 0x00, 0xdf, 0x00,\n  0xf4, 0x00, 0xf4, 0x00, 0xd3, 0x00, 0x9a, 0x00, 0x53, 0x00, 0x0a, 0x00,\n  0xce, 0xff, 0xa7, 0xff, 0xaa, 0xff, 0xbd, 0xff, 0xd4, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xec, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xe3, 0xff, 0xe6, 0xff,\n  0xd8, 0xff, 0xce, 0xff, 0xc3, 0xff, 0xb7, 0xff, 0xb4, 0xff, 0xb4, 0xff,\n  0x9e, 0xff, 0x63, 0xff, 0x33, 0xff, 0x35, 0xff, 0x65, 0xff, 0xa4, 0xff,\n  0xec, 0xff, 0x4a, 0x00, 0xca, 0x00, 0x4e, 0x01, 0xcf, 0x01, 0x1d, 0x02,\n  0x57, 0x02, 0x81, 0x02, 0x81, 0x02, 0x4f, 0x02, 0xd2, 0x01, 0x2a, 0x01,\n  0x74, 0x00, 0xc9, 0xff, 0x26, 0xff, 0xa8, 0xfe, 0x42, 0xfe, 0xf3, 0xfd,\n  0xcb, 0xfd, 0xd3, 0xfd, 0xf5, 0xfd, 0x1f, 0xfe, 0x5b, 0xfe, 0x90, 0xfe,\n  0xc1, 0xfe, 0xf3, 0xfe, 0x24, 0xff, 0x56, 0xff, 0x7e, 0xff, 0xb0, 0xff,\n  0xf0, 0xff, 0x25, 0x00, 0x8e, 0x00, 0x0d, 0x01, 0x7c, 0x01, 0xd0, 0x01,\n  0x09, 0x02, 0x17, 0x02, 0x05, 0x02, 0xf9, 0x01, 0x0d, 0x02, 0x23, 0x02,\n  0x15, 0x02, 0xe2, 0x01, 0x99, 0x01, 0x67, 0x01, 0x55, 0x01, 0x3a, 0x01,\n  0xfd, 0x00, 0x9e, 0x00, 0x2c, 0x00, 0xd1, 0xff, 0x72, 0xff, 0x00, 0xff,\n  0x8e, 0xfe, 0x1c, 0xfe, 0xcb, 0xfd, 0xb5, 0xfd, 0xc5, 0xfd, 0xdf, 0xfd,\n  0xfd, 0xfd, 0x0d, 0xfe, 0x0f, 0xfe, 0x13, 0xfe, 0x28, 0xfe, 0x55, 0xfe,\n  0x9a, 0xfe, 0xd0, 0xfe, 0x05, 0xff, 0x4e, 0xff, 0x86, 0xff, 0xb7, 0xff,\n  0x10, 0x00, 0x59, 0x00, 0x68, 0x00, 0x5e, 0x00, 0x52, 0x00, 0x64, 0x00,\n  0x83, 0x00, 0xb5, 0x00, 0xcb, 0x00, 0xd7, 0x00, 0xf2, 0x00, 0xfb, 0x00,\n  0xeb, 0x00, 0xc7, 0x00, 0x8c, 0x00, 0x41, 0x00, 0x17, 0x00, 0x0e, 0x00,\n  0x1f, 0x00, 0x38, 0x00, 0x5b, 0x00, 0x91, 0x00, 0x9d, 0x00, 0x85, 0x00,\n  0x8c, 0x00, 0xb3, 0x00, 0xd0, 0x00, 0xf2, 0x00, 0x07, 0x01, 0x1b, 0x01,\n  0x1e, 0x01, 0xfe, 0x00, 0xc5, 0x00, 0x80, 0x00, 0x35, 0x00, 0xec, 0xff,\n  0x9b, 0xff, 0x51, 0xff, 0x2c, 0xff, 0x02, 0xff, 0xcf, 0xfe, 0xae, 0xfe,\n  0xa2, 0xfe, 0xa9, 0xfe, 0xcf, 0xfe, 0xff, 0xfe, 0x59, 0xff, 0xd5, 0xff,\n  0x40, 0x00, 0x91, 0x00, 0xce, 0x00, 0xf7, 0x00, 0xf2, 0x00, 0xe6, 0x00,\n  0xd3, 0x00, 0xb0, 0x00, 0x89, 0x00, 0x4a, 0x00, 0x0b, 0x00, 0xe0, 0xff,\n  0xb4, 0xff, 0xb0, 0xff, 0xa4, 0xff, 0x8f, 0xff, 0x84, 0xff, 0x62, 0xff,\n  0x4a, 0xff, 0x47, 0xff, 0x45, 0xff, 0x3c, 0xff, 0x3b, 0xff, 0x45, 0xff,\n  0x74, 0xff, 0xbc, 0xff, 0xf2, 0xff, 0x04, 0x00, 0x0e, 0x00, 0x29, 0x00,\n  0x43, 0x00, 0x5b, 0x00, 0x7a, 0x00, 0x8c, 0x00, 0x9d, 0x00, 0xa4, 0x00,\n  0xb0, 0x00, 0xdc, 0x00, 0xe6, 0x00, 0xca, 0x00, 0x89, 0x00, 0x3a, 0x00,\n  0xef, 0xff, 0xb9, 0xff, 0xa1, 0xff, 0x96, 0xff, 0x9b, 0xff, 0xb1, 0xff,\n  0xd1, 0xff, 0xf3, 0xff, 0x25, 0x00, 0x3b, 0x00, 0x5b, 0x00, 0x86, 0x00,\n  0xca, 0x00, 0x1f, 0x01, 0x4b, 0x01, 0x63, 0x01, 0x85, 0x01, 0xa3, 0x01,\n  0x82, 0x01, 0x33, 0x01, 0xce, 0x00, 0x7d, 0x00, 0x47, 0x00, 0x2c, 0x00,\n  0x29, 0x00, 0x1d, 0x00, 0x05, 0x00, 0xf6, 0xff, 0xd7, 0xff, 0xc2, 0xff,\n  0xd4, 0xff, 0xd7, 0xff, 0xb7, 0xff, 0x9c, 0xff, 0x89, 0xff, 0x80, 0xff,\n  0x75, 0xff, 0x6c, 0xff, 0x57, 0xff, 0x2f, 0xff, 0x1b, 0xff, 0x0b, 0xff,\n  0x02, 0xff, 0xe7, 0xfe, 0xbe, 0xfe, 0xa6, 0xfe, 0x9f, 0xfe, 0x9c, 0xfe,\n  0x94, 0xfe, 0x87, 0xfe, 0x7c, 0xfe, 0x66, 0xfe, 0x52, 0xfe, 0x4e, 0xfe,\n  0x69, 0xfe, 0xa0, 0xfe, 0xe5, 0xfe, 0x23, 0xff, 0x4a, 0xff, 0x6b, 0xff,\n  0x95, 0xff, 0xe6, 0xff, 0x3b, 0x00, 0x9a, 0x00, 0xf7, 0x00, 0x3f, 0x01,\n  0x7f, 0x01, 0xba, 0x01, 0xea, 0x01, 0x0d, 0x02, 0x19, 0x02, 0xfc, 0x01,\n  0xbd, 0x01, 0x70, 0x01, 0x24, 0x01, 0xd7, 0x00, 0x7f, 0x00, 0x41, 0x00,\n  0x07, 0x00, 0xcf, 0xff, 0xb0, 0xff, 0xa7, 0xff, 0xab, 0xff, 0xc5, 0xff,\n  0xf9, 0xff, 0x1c, 0x00, 0x46, 0x00, 0x6a, 0x00, 0x82, 0x00, 0x8c, 0x00,\n  0x83, 0x00, 0x65, 0x00, 0x3e, 0x00, 0x43, 0x00, 0x6e, 0x00, 0x97, 0x00,\n  0xa3, 0x00, 0x85, 0x00, 0x52, 0x00, 0x2b, 0x00, 0x0b, 0x00, 0xfe, 0xff,\n  0xe3, 0xff, 0xc5, 0xff, 0x9f, 0xff, 0x72, 0xff, 0x39, 0xff, 0x26, 0xff,\n  0x3f, 0xff, 0x69, 0xff, 0xad, 0xff, 0xf5, 0xff, 0x4a, 0x00, 0x9e, 0x00,\n  0xf8, 0x00, 0x37, 0x01, 0x37, 0x01, 0x07, 0x01, 0xe8, 0x00, 0xdc, 0x00,\n  0xcb, 0x00, 0xa9, 0x00, 0x79, 0x00, 0x2f, 0x00, 0xc8, 0xff, 0x6b, 0xff,\n  0x2d, 0xff, 0xfc, 0xfe, 0xd6, 0xfe, 0xca, 0xfe, 0xd9, 0xfe, 0x11, 0xff,\n  0x4e, 0xff, 0x84, 0xff, 0xad, 0xff, 0xcc, 0xff, 0xd7, 0xff, 0xc9, 0xff,\n  0xb3, 0xff, 0xa2, 0xff, 0x95, 0xff, 0x75, 0xff, 0x5f, 0xff, 0x5c, 0xff,\n  0x5a, 0xff, 0x4a, 0xff, 0x45, 0xff, 0x3f, 0xff, 0x38, 0xff, 0x47, 0xff,\n  0x68, 0xff, 0x89, 0xff, 0xad, 0xff, 0xe7, 0xff, 0x2b, 0x00, 0x77, 0x00,\n  0xb8, 0x00, 0xe8, 0x00, 0x2a, 0x01, 0x5a, 0x01, 0x70, 0x01, 0x70, 0x01,\n  0x5d, 0x01, 0x4b, 0x01, 0x25, 0x01, 0xeb, 0x00, 0xb0, 0x00, 0x76, 0x00,\n  0x49, 0x00, 0x23, 0x00, 0xe7, 0xff, 0xb6, 0xff, 0xa5, 0xff, 0xb6, 0xff,\n  0xc8, 0xff, 0xb0, 0xff, 0x90, 0xff, 0x92, 0xff, 0xae, 0xff, 0xd5, 0xff,\n  0x04, 0x00, 0x13, 0x00, 0xf6, 0xff, 0xcb, 0xff, 0x9b, 0xff, 0x74, 0xff,\n  0x57, 0xff, 0x42, 0xff, 0x45, 0xff, 0x4e, 0xff, 0x4d, 0xff, 0x51, 0xff,\n  0x7e, 0xff, 0xd5, 0xff, 0x49, 0x00, 0xb9, 0x00, 0x00, 0x01, 0x30, 0x01,\n  0x48, 0x01, 0x43, 0x01, 0x1c, 0x01, 0xfb, 0x00, 0xdd, 0x00, 0xa7, 0x00,\n  0x58, 0x00, 0x02, 0x00, 0xc0, 0xff, 0x7b, 0xff, 0x44, 0xff, 0x0f, 0xff,\n  0xfa, 0xfe, 0x02, 0xff, 0x26, 0xff, 0x53, 0xff, 0x8a, 0xff, 0xb1, 0xff,\n  0xb3, 0xff, 0x9f, 0xff, 0x7b, 0xff, 0x5d, 0xff, 0x54, 0xff, 0x6c, 0xff,\n  0x89, 0xff, 0xc2, 0xff, 0xff, 0xff, 0x3d, 0x00, 0x61, 0x00, 0x6e, 0x00,\n  0x71, 0x00, 0x85, 0x00, 0xa3, 0x00, 0xac, 0x00, 0xd0, 0x00, 0xf5, 0x00,\n  0xe9, 0x00, 0xbc, 0x00, 0x95, 0x00, 0x77, 0x00, 0x61, 0x00, 0x38, 0x00,\n  0x0d, 0x00, 0xf6, 0xff, 0xed, 0xff, 0xea, 0xff, 0xd5, 0xff, 0xab, 0xff,\n  0x9f, 0xff, 0x9e, 0xff, 0x9b, 0xff, 0xb1, 0xff, 0xc9, 0xff, 0xe0, 0xff,\n  0xf5, 0xff, 0xec, 0xff, 0xdb, 0xff, 0xe3, 0xff, 0xf2, 0xff, 0xfe, 0xff,\n  0xe9, 0xff, 0xbf, 0xff, 0x8c, 0xff, 0x6e, 0xff, 0x65, 0xff, 0x6b, 0xff,\n  0x80, 0xff, 0x87, 0xff, 0x95, 0xff, 0x99, 0xff, 0xb3, 0xff, 0xcb, 0xff,\n  0xda, 0xff, 0xe7, 0xff, 0x02, 0x00, 0x34, 0x00, 0x52, 0x00, 0x6d, 0x00,\n  0x7d, 0x00, 0x9b, 0x00, 0xd1, 0x00, 0x13, 0x01, 0x64, 0x01, 0xc0, 0x01,\n  0x0b, 0x02, 0x2d, 0x02, 0x1b, 0x02, 0xdc, 0x01, 0x9c, 0x01, 0x66, 0x01,\n  0x25, 0x01, 0xd1, 0x00, 0x7a, 0x00, 0x29, 0x00, 0xf8, 0xff, 0xd8, 0xff,\n  0xbc, 0xff, 0xb7, 0xff, 0xd1, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xf0, 0xff,\n  0xdd, 0xff, 0xb0, 0xff, 0x6c, 0xff, 0x15, 0xff, 0xbd, 0xfe, 0x78, 0xfe,\n  0x48, 0xfe, 0x30, 0xfe, 0x34, 0xfe, 0x49, 0xfe, 0x55, 0xfe, 0x64, 0xfe,\n  0x76, 0xfe, 0x7e, 0xfe, 0x72, 0xfe, 0x67, 0xfe, 0x70, 0xfe, 0x91, 0xfe,\n  0xbe, 0xfe, 0x1a, 0xff, 0x8c, 0xff, 0x11, 0x00, 0xb5, 0x00, 0x72, 0x01,\n  0x27, 0x02, 0xab, 0x02, 0xfb, 0x02, 0x3b, 0x03, 0x5b, 0x03, 0x41, 0x03,\n  0x0f, 0x03, 0xbd, 0x02, 0x57, 0x02, 0xf1, 0x01, 0x85, 0x01, 0x12, 0x01,\n  0xa1, 0x00, 0x3a, 0x00, 0xcc, 0xff, 0x60, 0xff, 0x06, 0xff, 0xa0, 0xfe,\n  0x48, 0xfe, 0x07, 0xfe, 0xf5, 0xfd, 0xf7, 0xfd, 0xf3, 0xfd, 0x06, 0xfe,\n  0x15, 0xfe, 0x16, 0xfe, 0x19, 0xfe, 0x2d, 0xfe, 0x6c, 0xfe, 0xb5, 0xfe,\n  0xf0, 0xfe, 0x24, 0xff, 0x60, 0xff, 0xb7, 0xff, 0x16, 0x00, 0x76, 0x00,\n  0xd9, 0x00, 0x36, 0x01, 0x90, 0x01, 0xed, 0x01, 0x29, 0x02, 0x29, 0x02,\n  0x1b, 0x02, 0x15, 0x02, 0x29, 0x02, 0x61, 0x02, 0x7b, 0x02, 0x5d, 0x02,\n  0x23, 0x02, 0xd6, 0x01, 0x78, 0x01, 0xe8, 0x00, 0x5c, 0x00, 0xd8, 0xff,\n  0x56, 0xff, 0xe4, 0xfe, 0x85, 0xfe, 0x40, 0xfe, 0x1e, 0xfe, 0x15, 0xfe,\n  0x1f, 0xfe, 0x3c, 0xfe, 0x52, 0xfe, 0x67, 0xfe, 0x84, 0xfe, 0xab, 0xfe,\n  0xd8, 0xfe, 0x1d, 0xff, 0x6b, 0xff, 0xb0, 0xff, 0xcb, 0xff, 0xcf, 0xff,\n  0xe1, 0xff, 0x05, 0x00, 0x43, 0x00, 0x6a, 0x00, 0x76, 0x00, 0x73, 0x00,\n  0x5b, 0x00, 0x4f, 0x00, 0x3a, 0x00, 0x1c, 0x00, 0x01, 0x00, 0xed, 0xff,\n  0xd4, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xd2, 0xff, 0xde, 0xff, 0xf2, 0xff,\n  0x05, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x13, 0x00, 0x2b, 0x00, 0x37, 0x00,\n  0x3e, 0x00, 0x3a, 0x00, 0x2c, 0x00, 0x26, 0x00, 0x2f, 0x00, 0x34, 0x00,\n  0x34, 0x00, 0x1a, 0x00, 0xec, 0xff, 0xc5, 0xff, 0x90, 0xff, 0x69, 0xff,\n  0x50, 0xff, 0x3f, 0xff, 0x44, 0xff, 0x74, 0xff, 0xc8, 0xff, 0x02, 0x00,\n  0x35, 0x00, 0x95, 0x00, 0x16, 0x01, 0x79, 0x01, 0xbd, 0x01, 0xe2, 0x01,\n  0x0f, 0x02, 0x4f, 0x02, 0x6b, 0x02, 0x29, 0x02, 0xab, 0x01, 0x2e, 0x01,\n  0xd4, 0x00, 0x8b, 0x00, 0x38, 0x00, 0xdd, 0xff, 0x84, 0xff, 0x2c, 0xff,\n  0xd9, 0xfe, 0x84, 0xfe, 0x37, 0xfe, 0xfd, 0xfd, 0xd7, 0xfd, 0xd3, 0xfd,\n  0xf3, 0xfd, 0x19, 0xfe, 0x30, 0xfe, 0x4e, 0xfe, 0x87, 0xfe, 0xd8, 0xfe,\n  0x3c, 0xff, 0xa7, 0xff, 0x0b, 0x00, 0x70, 0x00, 0xd1, 0x00, 0x1c, 0x01,\n  0x4b, 0x01, 0x72, 0x01, 0x87, 0x01, 0x5d, 0x01, 0x01, 0x01, 0x98, 0x00,\n  0x4c, 0x00, 0x14, 0x00, 0xe9, 0xff, 0xd1, 0xff, 0xde, 0xff, 0xfb, 0xff,\n  0x17, 0x00, 0x3b, 0x00, 0x5c, 0x00, 0x85, 0x00, 0x8c, 0x00, 0x7c, 0x00,\n  0x7c, 0x00, 0x7d, 0x00, 0x62, 0x00, 0x37, 0x00, 0x0a, 0x00, 0xf0, 0xff,\n  0xef, 0xff, 0xfe, 0xff, 0x1d, 0x00, 0x41, 0x00, 0x56, 0x00, 0x59, 0x00,\n  0x4c, 0x00, 0x2c, 0x00, 0x00, 0x00, 0xcc, 0xff, 0x90, 0xff, 0x60, 0xff,\n  0x3f, 0xff, 0x33, 0xff, 0x2f, 0xff, 0x2a, 0xff, 0x24, 0xff, 0x1e, 0xff,\n  0x15, 0xff, 0x1e, 0xff, 0x36, 0xff, 0x53, 0xff, 0x6f, 0xff, 0x9b, 0xff,\n  0xc8, 0xff, 0x02, 0x00, 0x70, 0x00, 0xd9, 0x00, 0x18, 0x01, 0x2e, 0x01,\n  0x3c, 0x01, 0x25, 0x01, 0xef, 0x00, 0xaf, 0x00, 0x80, 0x00, 0x8b, 0x00,\n  0x74, 0x00, 0x4a, 0x00, 0x25, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xe6, 0xff,\n  0xc2, 0xff, 0x96, 0xff, 0x86, 0xff, 0x92, 0xff, 0xa7, 0xff, 0xc2, 0xff,\n  0xe1, 0xff, 0xe6, 0xff, 0xd2, 0xff, 0xb7, 0xff, 0x99, 0xff, 0x7a, 0xff,\n  0x59, 0xff, 0x4a, 0xff, 0x4d, 0xff, 0x57, 0xff, 0x65, 0xff, 0x81, 0xff,\n  0xae, 0xff, 0xdb, 0xff, 0xff, 0xff, 0x20, 0x00, 0x3d, 0x00, 0x4d, 0x00,\n  0x53, 0x00, 0x64, 0x00, 0x7a, 0x00, 0x85, 0x00, 0x79, 0x00, 0x64, 0x00,\n  0x31, 0x00, 0xe9, 0xff, 0xa1, 0xff, 0x83, 0xff, 0x77, 0xff, 0x75, 0xff,\n  0x7e, 0xff, 0x87, 0xff, 0x9b, 0xff, 0xb7, 0xff, 0xce, 0xff, 0xe6, 0xff,\n  0x08, 0x00, 0x1f, 0x00, 0x31, 0x00, 0x4a, 0x00, 0x80, 0x00, 0xd4, 0x00,\n  0x13, 0x01, 0x27, 0x01, 0x18, 0x01, 0xf8, 0x00, 0xeb, 0x00, 0xd9, 0x00,\n  0xbf, 0x00, 0xa4, 0x00, 0x82, 0x00, 0x5e, 0x00, 0x40, 0x00, 0x25, 0x00,\n  0x04, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xe3, 0xff, 0xcb, 0xff,\n  0xa5, 0xff, 0x7b, 0xff, 0x56, 0xff, 0x41, 0xff, 0x44, 0xff, 0x51, 0xff,\n  0x51, 0xff, 0x53, 0xff, 0x71, 0xff, 0x95, 0xff, 0xb0, 0xff, 0xc6, 0xff,\n  0xdd, 0xff, 0x00, 0x00, 0x1d, 0x00, 0x3d, 0x00, 0x64, 0x00, 0x86, 0x00,\n  0xaf, 0x00, 0xaf, 0x00, 0xa0, 0x00, 0xa7, 0x00, 0xc2, 0x00, 0xe2, 0x00,\n  0xc2, 0x00, 0x76, 0x00, 0x35, 0x00, 0x17, 0x00, 0x11, 0x00, 0x0d, 0x00,\n  0x14, 0x00, 0x25, 0x00, 0x3a, 0x00, 0x34, 0x00, 0x29, 0x00, 0x22, 0x00,\n  0x22, 0x00, 0x25, 0x00, 0x20, 0x00, 0x0b, 0x00, 0xd4, 0xff, 0xa2, 0xff,\n  0x7e, 0xff, 0x5c, 0xff, 0x48, 0xff, 0x47, 0xff, 0x53, 0xff, 0x6e, 0xff,\n  0x8d, 0xff, 0x9f, 0xff, 0x8c, 0xff, 0x68, 0xff, 0x48, 0xff, 0x53, 0xff,\n  0x6e, 0xff, 0x86, 0xff, 0x99, 0xff, 0xb7, 0xff, 0xce, 0xff, 0xe7, 0xff,\n  0x11, 0x00, 0x43, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x64, 0x00,\n  0x6e, 0x00, 0x7c, 0x00, 0x83, 0x00, 0x82, 0x00, 0x73, 0x00, 0x4f, 0x00,\n  0x22, 0x00, 0x19, 0x00, 0x25, 0x00, 0x4c, 0x00, 0x68, 0x00, 0x62, 0x00,\n  0x50, 0x00, 0x28, 0x00, 0xfe, 0xff, 0xc9, 0xff, 0xad, 0xff, 0xa5, 0xff,\n  0xba, 0xff, 0xdd, 0xff, 0x07, 0x00, 0x26, 0x00, 0x2f, 0x00, 0x4c, 0x00,\n  0x82, 0x00, 0xb9, 0x00, 0xdc, 0x00, 0xd9, 0x00, 0xc5, 0x00, 0xb8, 0x00,\n  0xb3, 0x00, 0x8e, 0x00, 0x4c, 0x00, 0x16, 0x00, 0xe0, 0xff, 0xa8, 0xff,\n  0x72, 0xff, 0x62, 0xff, 0x65, 0xff, 0x65, 0xff, 0x54, 0xff, 0x3c, 0xff,\n  0x32, 0xff, 0x27, 0xff, 0x1e, 0xff, 0x23, 0xff, 0x27, 0xff, 0x39, 0xff,\n  0x56, 0xff, 0x7b, 0xff, 0xce, 0xff, 0x26, 0x00, 0x59, 0x00, 0x68, 0x00,\n  0x7c, 0x00, 0x94, 0x00, 0xa9, 0x00, 0xaa, 0x00, 0x98, 0x00, 0x98, 0x00,\n  0xb2, 0x00, 0xd7, 0x00, 0xe3, 0x00, 0xc1, 0x00, 0x7a, 0x00, 0x31, 0x00,\n  0x04, 0x00, 0xec, 0xff, 0xe6, 0xff, 0xed, 0xff, 0x05, 0x00, 0x29, 0x00,\n  0x3a, 0x00, 0x38, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1f, 0x00,\n  0x25, 0x00, 0x32, 0x00, 0x49, 0x00, 0x4f, 0x00, 0x58, 0x00, 0x74, 0x00,\n  0x7c, 0x00, 0x6d, 0x00, 0x40, 0x00, 0x00, 0x00, 0xb9, 0xff, 0x7e, 0xff,\n  0x60, 0xff, 0x51, 0xff, 0x56, 0xff, 0x63, 0xff, 0x71, 0xff, 0x6c, 0xff,\n  0x5a, 0xff, 0x3b, 0xff, 0x2f, 0xff, 0x35, 0xff, 0x48, 0xff, 0x5d, 0xff,\n  0x5f, 0xff, 0x6e, 0xff, 0x80, 0xff, 0x9c, 0xff, 0xc6, 0xff, 0x01, 0x00,\n  0x34, 0x00, 0x59, 0x00, 0x77, 0x00, 0x73, 0x00, 0x5c, 0x00, 0x40, 0x00,\n  0x17, 0x00, 0xf8, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xdb, 0xff, 0xb3, 0xff,\n  0x95, 0xff, 0x87, 0xff, 0x8f, 0xff, 0x9b, 0xff, 0xb9, 0xff, 0xd4, 0xff,\n  0xd4, 0xff, 0xc8, 0xff, 0xb9, 0xff, 0xae, 0xff, 0x9f, 0xff, 0xa8, 0xff,\n  0xbd, 0xff, 0xcc, 0xff, 0xf6, 0xff, 0x3b, 0x00, 0x97, 0x00, 0xca, 0x00,\n  0xe5, 0x00, 0x07, 0x01, 0x40, 0x01, 0x6f, 0x01, 0x96, 0x01, 0xa6, 0x01,\n  0x96, 0x01, 0x93, 0x01, 0x94, 0x01, 0x97, 0x01, 0x87, 0x01, 0x6d, 0x01,\n  0x63, 0x01, 0x52, 0x01, 0x28, 0x01, 0xf7, 0x00, 0xb2, 0x00, 0x6d, 0x00,\n  0x31, 0x00, 0xe9, 0xff, 0x9e, 0xff, 0x72, 0xff, 0x50, 0xff, 0x2a, 0xff,\n  0x09, 0xff, 0x05, 0xff, 0x26, 0xff, 0x56, 0xff, 0x7b, 0xff, 0x9e, 0xff,\n  0xba, 0xff, 0xb7, 0xff, 0xb3, 0xff, 0xc8, 0xff, 0xd2, 0xff, 0xcf, 0xff,\n  0xbd, 0xff, 0x98, 0xff, 0x7e, 0xff, 0x7d, 0xff, 0x78, 0xff, 0x6b, 0xff,\n  0x5f, 0xff, 0x6b, 0xff, 0x7b, 0xff, 0x63, 0xff, 0x57, 0xff, 0x60, 0xff,\n  0x68, 0xff, 0x59, 0xff, 0x3e, 0xff, 0x3c, 0xff, 0x41, 0xff, 0x3c, 0xff,\n  0x30, 0xff, 0x29, 0xff, 0x30, 0xff, 0x30, 0xff, 0x27, 0xff, 0x1a, 0xff,\n  0x15, 0xff, 0x3e, 0xff, 0x72, 0xff, 0xb6, 0xff, 0xf2, 0xff, 0x0a, 0x00,\n  0x11, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x23, 0x00, 0x43, 0x00, 0x73, 0x00,\n  0xb3, 0x00, 0x04, 0x01, 0x55, 0x01, 0xb5, 0x01, 0x13, 0x02, 0x3d, 0x02,\n  0x39, 0x02, 0x15, 0x02, 0xd8, 0x01, 0x8d, 0x01, 0x6f, 0x01, 0x6c, 0x01,\n  0x4f, 0x01, 0x3a, 0x01, 0x1b, 0x01, 0xef, 0x00, 0xc8, 0x00, 0x9e, 0x00,\n  0x6b, 0x00, 0x28, 0x00, 0xec, 0xff, 0x92, 0xff, 0x3f, 0xff, 0x0c, 0xff,\n  0xfa, 0xfe, 0xfc, 0xfe, 0x03, 0xff, 0x11, 0xff, 0x2d, 0xff, 0x45, 0xff,\n  0x56, 0xff, 0x68, 0xff, 0x72, 0xff, 0x7d, 0xff, 0x6f, 0xff, 0x4d, 0xff,\n  0x33, 0xff, 0x29, 0xff, 0x21, 0xff, 0x32, 0xff, 0x56, 0xff, 0x74, 0xff,\n  0x86, 0xff, 0x8f, 0xff, 0xa1, 0xff, 0xce, 0xff, 0x00, 0x00, 0x37, 0x00,\n  0x5c, 0x00, 0x7d, 0x00, 0xb0, 0x00, 0xd1, 0x00, 0xe2, 0x00, 0xe6, 0x00,\n  0xe6, 0x00, 0xd9, 0x00, 0xd7, 0x00, 0xe6, 0x00, 0xfb, 0x00, 0xf2, 0x00,\n  0xbc, 0x00, 0x7a, 0x00, 0x2c, 0x00, 0xea, 0xff, 0xae, 0xff, 0x77, 0xff,\n  0x4b, 0xff, 0x33, 0xff, 0x1e, 0xff, 0x12, 0xff, 0x15, 0xff, 0x1a, 0xff,\n  0x1d, 0xff, 0x1e, 0xff, 0x21, 0xff, 0x2c, 0xff, 0x47, 0xff, 0x65, 0xff,\n  0x90, 0xff, 0xc3, 0xff, 0x00, 0x00, 0x5b, 0x00, 0xaa, 0x00, 0xec, 0x00,\n  0x21, 0x01, 0x24, 0x01, 0x10, 0x01, 0xfd, 0x00, 0xf1, 0x00, 0x0a, 0x01,\n  0x1f, 0x01, 0x1e, 0x01, 0xfa, 0x00, 0xc5, 0x00, 0x88, 0x00, 0x4d, 0x00,\n  0x04, 0x00, 0xbf, 0xff, 0x89, 0xff, 0x66, 0xff, 0x4a, 0xff, 0x3e, 0xff,\n  0x54, 0xff, 0x84, 0xff, 0xb9, 0xff, 0xde, 0xff, 0xec, 0xff, 0xe9, 0xff,\n  0xc6, 0xff, 0xa2, 0xff, 0x8c, 0xff, 0x83, 0xff, 0x8a, 0xff, 0xa8, 0xff,\n  0xcb, 0xff, 0xf2, 0xff, 0x1c, 0x00, 0x40, 0x00, 0x68, 0x00, 0x7f, 0x00,\n  0x7f, 0x00, 0x80, 0x00, 0xa1, 0x00, 0xbf, 0x00, 0xc4, 0x00, 0xc4, 0x00,\n  0xb2, 0x00, 0x8f, 0x00, 0x77, 0x00, 0x6b, 0x00, 0x5c, 0x00, 0x22, 0x00,\n  0xcb, 0xff, 0x6e, 0xff, 0x1e, 0xff, 0xde, 0xfe, 0xc0, 0xfe, 0xc1, 0xfe,\n  0xd5, 0xfe, 0xfc, 0xfe, 0x27, 0xff, 0x53, 0xff, 0x6e, 0xff, 0x86, 0xff,\n  0x96, 0xff, 0xa2, 0xff, 0xb3, 0xff, 0xe0, 0xff, 0x0d, 0x00, 0x31, 0x00,\n  0x31, 0x00, 0x14, 0x00, 0x0d, 0x00, 0x25, 0x00, 0x58, 0x00, 0x88, 0x00,\n  0xaf, 0x00, 0xcb, 0x00, 0x04, 0x01, 0x37, 0x01, 0x45, 0x01, 0x4b, 0x01,\n  0x3a, 0x01, 0x1e, 0x01, 0x0c, 0x01, 0x10, 0x01, 0x0d, 0x01, 0xf2, 0x00,\n  0xca, 0x00, 0x91, 0x00, 0x53, 0x00, 0x23, 0x00, 0x00, 0x00, 0xdd, 0xff,\n  0xb7, 0xff, 0xa4, 0xff, 0x8a, 0xff, 0x7b, 0xff, 0x5c, 0xff, 0x24, 0xff,\n  0xf1, 0xfe, 0xc6, 0xfe, 0xa0, 0xfe, 0x99, 0xfe, 0x99, 0xfe, 0xa9, 0xfe,\n  0xd5, 0xfe, 0x0b, 0xff, 0x4d, 0xff, 0x72, 0xff, 0x7e, 0xff, 0x9e, 0xff,\n  0xb1, 0xff, 0xb9, 0xff, 0xce, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xea, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xf8, 0xff, 0xe4, 0xff, 0xde, 0xff, 0xfb, 0xff,\n  0x28, 0x00, 0x61, 0x00, 0x94, 0x00, 0xbe, 0x00, 0xd7, 0x00, 0xe3, 0x00,\n  0xf2, 0x00, 0xe8, 0x00, 0xef, 0x00, 0x12, 0x01, 0x1f, 0x01, 0x06, 0x01,\n  0xee, 0x00, 0xdf, 0x00, 0xbf, 0x00, 0x9b, 0x00, 0x64, 0x00, 0x28, 0x00,\n  0xf0, 0xff, 0xc3, 0xff, 0xa2, 0xff, 0x7a, 0xff, 0x54, 0xff, 0x39, 0xff,\n  0x2f, 0xff, 0x27, 0xff, 0x2d, 0xff, 0x26, 0xff, 0x20, 0xff, 0x1d, 0xff,\n  0x0e, 0xff, 0x0b, 0xff, 0x1d, 0xff, 0x44, 0xff, 0x7b, 0xff, 0xdb, 0xff,\n  0x68, 0x00, 0xf2, 0x00, 0x55, 0x01, 0x93, 0x01, 0xaf, 0x01, 0xa5, 0x01,\n  0x84, 0x01, 0x7e, 0x01, 0x82, 0x01, 0x5e, 0x01, 0x21, 0x01, 0xe8, 0x00,\n  0xb9, 0x00, 0x88, 0x00, 0x43, 0x00, 0x01, 0x00, 0xc8, 0xff, 0xad, 0xff,\n  0xa2, 0xff, 0xa7, 0xff, 0xbc, 0xff, 0xae, 0xff, 0x86, 0xff, 0x68, 0xff,\n  0x4d, 0xff, 0x33, 0xff, 0x1a, 0xff, 0x0f, 0xff, 0x0e, 0xff, 0x0b, 0xff,\n  0x1e, 0xff, 0x3c, 0xff, 0x65, 0xff, 0x93, 0xff, 0xd8, 0xff, 0x14, 0x00,\n  0x3d, 0x00, 0x46, 0x00, 0x3e, 0x00, 0x50, 0x00, 0x61, 0x00, 0x6b, 0x00,\n  0x6a, 0x00, 0x68, 0x00, 0x5e, 0x00, 0x52, 0x00, 0x50, 0x00, 0x5b, 0x00,\n  0x7c, 0x00, 0x97, 0x00, 0x85, 0x00, 0x5b, 0x00, 0x29, 0x00, 0xf3, 0xff,\n  0xcb, 0xff, 0xa8, 0xff, 0x8c, 0xff, 0x6b, 0xff, 0x59, 0xff, 0x50, 0xff,\n  0x4b, 0xff, 0x5a, 0xff, 0x66, 0xff, 0x74, 0xff, 0x7e, 0xff, 0x89, 0xff,\n  0x96, 0xff, 0xb1, 0xff, 0xd7, 0xff, 0xf5, 0xff, 0x14, 0x00, 0x2c, 0x00,\n  0x2b, 0x00, 0x10, 0x00, 0xe6, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xcb, 0xff,\n  0xd4, 0xff, 0xd4, 0xff, 0xde, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0x07, 0x00,\n  0x37, 0x00, 0x80, 0x00, 0xd4, 0x00, 0x0d, 0x01, 0x1b, 0x01, 0x12, 0x01,\n  0x09, 0x01, 0xf7, 0x00, 0xca, 0x00, 0xaf, 0x00, 0x9a, 0x00, 0x86, 0x00,\n  0x7a, 0x00, 0x83, 0x00, 0x88, 0x00, 0x82, 0x00, 0x74, 0x00, 0x46, 0x00,\n  0x1c, 0x00, 0x00, 0x00, 0xec, 0xff, 0xd4, 0xff, 0xc6, 0xff, 0xb1, 0xff,\n  0x93, 0xff, 0x78, 0xff, 0x6f, 0xff, 0x80, 0xff, 0x89, 0xff, 0x77, 0xff,\n  0x65, 0xff, 0x5c, 0xff, 0x51, 0xff, 0x47, 0xff, 0x3e, 0xff, 0x2a, 0xff,\n  0x18, 0xff, 0x17, 0xff, 0x15, 0xff, 0x11, 0xff, 0x0f, 0xff, 0x12, 0xff,\n  0x14, 0xff, 0x1e, 0xff, 0x39, 0xff, 0x74, 0xff, 0xbc, 0xff, 0xfc, 0xff,\n  0x2f, 0x00, 0x53, 0x00, 0x73, 0x00, 0x8f, 0x00, 0xd1, 0x00, 0x16, 0x01,\n  0x5b, 0x01, 0xa3, 0x01, 0xe4, 0x01, 0xfa, 0x01, 0xe5, 0x01, 0xc4, 0x01,\n  0xae, 0x01, 0xb4, 0x01, 0xa0, 0x01, 0xa3, 0x01, 0xb1, 0x01, 0xa8, 0x01,\n  0x70, 0x01, 0x1e, 0x01, 0xca, 0x00, 0x7d, 0x00, 0x52, 0x00, 0x2b, 0x00,\n  0xed, 0xff, 0xb0, 0xff, 0x71, 0xff, 0x2d, 0xff, 0xee, 0xfe, 0xb8, 0xfe,\n  0x96, 0xfe, 0x7c, 0xfe, 0x64, 0xfe, 0x4c, 0xfe, 0x40, 0xfe, 0x4e, 0xfe,\n  0x67, 0xfe, 0x87, 0xfe, 0xab, 0xfe, 0xcd, 0xfe, 0xf0, 0xfe, 0x05, 0xff,\n  0x1e, 0xff, 0x2c, 0xff, 0x47, 0xff, 0x62, 0xff, 0x95, 0xff, 0xc9, 0xff,\n  0xfc, 0xff, 0x22, 0x00, 0x4f, 0x00, 0x88, 0x00, 0xb2, 0x00, 0xd6, 0x00,\n  0xeb, 0x00, 0x01, 0x01, 0x2d, 0x01, 0x6a, 0x01, 0xb1, 0x01, 0xe4, 0x01,\n  0x01, 0x02, 0x09, 0x02, 0x09, 0x02, 0x1b, 0x02, 0x09, 0x02, 0xa8, 0x01,\n  0x1b, 0x01, 0x80, 0x00, 0xf0, 0xff, 0x89, 0xff, 0x44, 0xff, 0x08, 0xff,\n  0xc9, 0xfe, 0x9c, 0xfe, 0x87, 0xfe, 0x90, 0xfe, 0xb1, 0xfe, 0xd9, 0xfe,\n  0x03, 0xff, 0x27, 0xff, 0x54, 0xff, 0x72, 0xff, 0x8f, 0xff, 0x99, 0xff,\n  0x9c, 0xff, 0xb3, 0xff, 0xc6, 0xff, 0x00, 0x00, 0x3a, 0x00, 0x6d, 0x00,\n  0x9a, 0x00, 0xc2, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd3, 0x00, 0xdf, 0x00,\n  0xf5, 0x00, 0xe9, 0x00, 0xd1, 0x00, 0xa0, 0x00, 0x62, 0x00, 0x26, 0x00,\n  0xdd, 0xff, 0xa7, 0xff, 0x86, 0xff, 0x75, 0xff, 0x65, 0xff, 0x4d, 0xff,\n  0x30, 0xff, 0x2d, 0xff, 0x39, 0xff, 0x3f, 0xff, 0x3e, 0xff, 0x2a, 0xff,\n  0x1b, 0xff, 0x0e, 0xff, 0x12, 0xff, 0x17, 0xff, 0x2d, 0xff, 0x4d, 0xff,\n  0x72, 0xff, 0xa7, 0xff, 0xdb, 0xff, 0x0e, 0x00, 0x46, 0x00, 0x7c, 0x00,\n  0xb3, 0x00, 0xd9, 0x00, 0xdc, 0x00, 0xd1, 0x00, 0xd9, 0x00, 0xdc, 0x00,\n  0xd7, 0x00, 0xcd, 0x00, 0xca, 0x00, 0xbc, 0x00, 0xa3, 0x00, 0x98, 0x00,\n  0x9d, 0x00, 0x92, 0x00, 0x7f, 0x00, 0x62, 0x00, 0x37, 0x00, 0x08, 0x00,\n  0xde, 0xff, 0xba, 0xff, 0x8d, 0xff, 0x6b, 0xff, 0x53, 0xff, 0x4b, 0xff,\n  0x54, 0xff, 0x5a, 0xff, 0x5d, 0xff, 0x56, 0xff, 0x50, 0xff, 0x5c, 0xff,\n  0x60, 0xff, 0x69, 0xff, 0x72, 0xff, 0x84, 0xff, 0x98, 0xff, 0xaa, 0xff,\n  0xb0, 0xff, 0xa4, 0xff, 0xa1, 0xff, 0xa8, 0xff, 0xc8, 0xff, 0xe9, 0xff,\n  0x04, 0x00, 0x0e, 0x00, 0x25, 0x00, 0x40, 0x00, 0x67, 0x00, 0x97, 0x00,\n  0xaf, 0x00, 0xa6, 0x00, 0x7d, 0x00, 0x64, 0x00, 0x53, 0x00, 0x52, 0x00,\n  0x4f, 0x00, 0x4d, 0x00, 0x4a, 0x00, 0x38, 0x00, 0x23, 0x00, 0x1f, 0x00,\n  0x26, 0x00, 0x14, 0x00, 0x02, 0x00, 0x08, 0x00, 0x23, 0x00, 0x35, 0x00,\n  0x44, 0x00, 0x44, 0x00, 0x3e, 0x00, 0x52, 0x00, 0x6e, 0x00, 0x7c, 0x00,\n  0x91, 0x00, 0xaa, 0x00, 0xb5, 0x00, 0xb9, 0x00, 0xc1, 0x00, 0xc5, 0x00,\n  0xc7, 0x00, 0xb9, 0x00, 0x86, 0x00, 0x3e, 0x00, 0xe9, 0xff, 0x9c, 0xff,\n  0x69, 0xff, 0x4b, 0xff, 0x2f, 0xff, 0x17, 0xff, 0x0c, 0xff, 0x11, 0xff,\n  0x2c, 0xff, 0x51, 0xff, 0x6e, 0xff, 0x81, 0xff, 0x7e, 0xff, 0x80, 0xff,\n  0x81, 0xff, 0x9f, 0xff, 0xe9, 0xff, 0x31, 0x00, 0x62, 0x00, 0x7a, 0x00,\n  0x97, 0x00, 0x9a, 0x00, 0x95, 0x00, 0x73, 0x00, 0x47, 0x00, 0x2c, 0x00,\n  0x31, 0x00, 0x40, 0x00, 0x47, 0x00, 0x3e, 0x00, 0x31, 0x00, 0x38, 0x00,\n  0x44, 0x00, 0x55, 0x00, 0x53, 0x00, 0x3b, 0x00, 0x08, 0x00, 0xdd, 0xff,\n  0xce, 0xff, 0xc3, 0xff, 0xb7, 0xff, 0xb0, 0xff, 0xb9, 0xff, 0xd2, 0xff,\n  0xec, 0xff, 0xe4, 0xff, 0xd7, 0xff, 0xce, 0xff, 0xd2, 0xff, 0xcc, 0xff,\n  0xaa, 0xff, 0x78, 0xff, 0x5f, 0xff, 0x6b, 0xff, 0xa2, 0xff, 0xe3, 0xff,\n  0x14, 0x00, 0x37, 0x00, 0x53, 0x00, 0x70, 0x00, 0x6b, 0x00, 0x64, 0x00,\n  0x5f, 0x00, 0x50, 0x00, 0x56, 0x00, 0x74, 0x00, 0x9e, 0x00, 0xd0, 0x00,\n  0xe9, 0x00, 0xe2, 0x00, 0xdc, 0x00, 0xe0, 0x00, 0xec, 0x00, 0xe9, 0x00,\n  0xd4, 0x00, 0xb8, 0x00, 0x83, 0x00, 0x46, 0x00, 0xff, 0xff, 0xba, 0xff,\n  0x72, 0xff, 0x30, 0xff, 0xfd, 0xfe, 0xd9, 0xfe, 0xb8, 0xfe, 0x97, 0xfe,\n  0x76, 0xfe, 0x69, 0xfe, 0x67, 0xfe, 0x7f, 0xfe, 0xbb, 0xfe, 0x0c, 0xff,\n  0x5f, 0xff, 0x92, 0xff, 0xae, 0xff, 0xba, 0xff, 0xd4, 0xff, 0xf9, 0xff,\n  0x0a, 0x00, 0x02, 0x00, 0xff, 0xff, 0x0b, 0x00, 0x3a, 0x00, 0x68, 0x00,\n  0x89, 0x00, 0x94, 0x00, 0x8e, 0x00, 0x7f, 0x00, 0x7a, 0x00, 0x7f, 0x00,\n  0x80, 0x00, 0x8c, 0x00, 0x92, 0x00, 0x82, 0x00, 0x74, 0x00, 0x79, 0x00,\n  0x83, 0x00, 0x9e, 0x00, 0xd0, 0x00, 0x0d, 0x01, 0x42, 0x01, 0x60, 0x01,\n  0x60, 0x01, 0x49, 0x01, 0x15, 0x01, 0xda, 0x00, 0xa0, 0x00, 0x76, 0x00,\n  0x4c, 0x00, 0x26, 0x00, 0x0e, 0x00, 0xf5, 0xff, 0xc9, 0xff, 0x8c, 0xff,\n  0x4e, 0xff, 0x11, 0xff, 0xd8, 0xfe, 0xb5, 0xfe, 0x9d, 0xfe, 0x96, 0xfe,\n  0x99, 0xfe, 0x9f, 0xfe, 0x9c, 0xfe, 0x99, 0xfe, 0xab, 0xfe, 0xe1, 0xfe,\n  0x23, 0xff, 0x5f, 0xff, 0x95, 0xff, 0xc9, 0xff, 0x01, 0x00, 0x53, 0x00,\n  0xa6, 0x00, 0xfa, 0x00, 0x48, 0x01, 0x85, 0x01, 0xc6, 0x01, 0xfd, 0x01,\n  0x33, 0x02, 0x51, 0x02, 0x4f, 0x02, 0x3f, 0x02, 0x23, 0x02, 0xdf, 0x01,\n  0x87, 0x01, 0x37, 0x01, 0xe9, 0x00, 0x97, 0x00, 0x49, 0x00, 0x0a, 0x00,\n  0xd1, 0xff, 0xa5, 0xff, 0x75, 0xff, 0x3b, 0xff, 0x0b, 0xff, 0xe8, 0xfe,\n  0xc0, 0xfe, 0xab, 0xfe, 0x9d, 0xfe, 0x8d, 0xfe, 0x73, 0xfe, 0x4f, 0xfe,\n  0x39, 0xfe, 0x36, 0xfe, 0x40, 0xfe, 0x4f, 0xfe, 0x60, 0xfe, 0x67, 0xfe,\n  0x79, 0xfe, 0xa2, 0xfe, 0xd2, 0xfe, 0x18, 0xff, 0x57, 0xff, 0x92, 0xff,\n  0xd5, 0xff, 0x29, 0x00, 0x92, 0x00, 0xf1, 0x00, 0x40, 0x01, 0x8a, 0x01,\n  0xde, 0x01, 0x31, 0x02, 0x69, 0x02, 0x7d, 0x02, 0x6f, 0x02, 0x63, 0x02,\n  0x4d, 0x02, 0x1f, 0x02, 0xd9, 0x01, 0xab, 0x01, 0x87, 0x01, 0x31, 0x01,\n  0xd1, 0x00, 0x77, 0x00, 0x1f, 0x00, 0xd7, 0xff, 0x8a, 0xff, 0x2f, 0xff,\n  0xf3, 0xfe, 0xd5, 0xfe, 0xc4, 0xfe, 0xc6, 0xfe, 0xca, 0xfe, 0xd2, 0xfe,\n  0xd6, 0xfe, 0xd5, 0xfe, 0xd6, 0xfe, 0xe7, 0xfe, 0x06, 0xff, 0x26, 0xff,\n  0x51, 0xff, 0x8d, 0xff, 0xde, 0xff, 0x22, 0x00, 0x58, 0x00, 0x8c, 0x00,\n  0xc1, 0x00, 0xf2, 0x00, 0x00, 0x01, 0x06, 0x01, 0xe9, 0x00, 0xad, 0x00,\n  0x5f, 0x00, 0x1a, 0x00, 0xf5, 0xff, 0xcf, 0xff, 0xa5, 0xff, 0x6c, 0xff,\n  0x3c, 0xff, 0x12, 0xff, 0xfd, 0xfe, 0xfa, 0xfe, 0x09, 0xff, 0x1b, 0xff,\n  0x1e, 0xff, 0x14, 0xff, 0x09, 0xff, 0xfc, 0xfe, 0xff, 0xfe, 0x0f, 0xff,\n  0x2d, 0xff, 0x3c, 0xff, 0x3f, 0xff, 0x57, 0xff, 0x6e, 0xff, 0x78, 0xff,\n  0x8d, 0xff, 0xce, 0xff, 0x1d, 0x00, 0x7a, 0x00, 0xd4, 0x00, 0x33, 0x01,\n  0x93, 0x01, 0xca, 0x01, 0xeb, 0x01, 0x03, 0x02, 0x03, 0x02, 0xf6, 0x01,\n  0xe2, 0x01, 0xdb, 0x01, 0xdb, 0x01, 0xc1, 0x01, 0x87, 0x01, 0x37, 0x01,\n  0xe2, 0x00, 0x82, 0x00, 0x19, 0x00, 0xb3, 0xff, 0x60, 0xff, 0x24, 0xff,\n  0xfc, 0xfe, 0x1d, 0xff, 0x12, 0xff, 0xf7, 0xfe, 0xd3, 0xfe, 0xc9, 0xfe,\n  0xc7, 0xfe, 0xcc, 0xfe, 0xda, 0xfe, 0xec, 0xfe, 0xfe, 0xfe, 0x12, 0xff,\n  0x22, 0xff, 0x2e, 0xff, 0x41, 0xff, 0x62, 0xff, 0x7a, 0xff, 0x95, 0xff,\n  0xab, 0xff, 0xc8, 0xff, 0xe9, 0xff, 0x09, 0x00, 0x29, 0x00, 0x4d, 0x00,\n  0x70, 0x00, 0x7a, 0x00, 0x77, 0x00, 0x82, 0x00, 0x9f, 0x00, 0xd0, 0x00,\n  0x03, 0x01, 0x1e, 0x01, 0x41, 0x01, 0x76, 0x01, 0xad, 0x01, 0xcf, 0x01,\n  0xbd, 0x01, 0x9c, 0x01, 0x6f, 0x01, 0x35, 0x01, 0xfb, 0x00, 0xc8, 0x00,\n  0xa4, 0x00, 0x6d, 0x00, 0x21, 0x00, 0xcd, 0xff, 0x7b, 0xff, 0x33, 0xff,\n  0xf9, 0xfe, 0xd0, 0xfe, 0xb8, 0xfe, 0xb4, 0xfe, 0xc2, 0xfe, 0xe8, 0xfe,\n  0x17, 0xff, 0x3b, 0xff, 0x6c, 0xff, 0x8e, 0xff, 0xa6, 0xff, 0xae, 0xff,\n  0xb0, 0xff, 0xb4, 0xff, 0xc5, 0xff, 0xd7, 0xff, 0xeb, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xef, 0xff, 0xee, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xeb, 0xff,\n  0xe1, 0xff, 0xdf, 0xff, 0xd7, 0xff, 0xe4, 0xff, 0xf4, 0xff, 0x0c, 0x00,\n  0x33, 0x00, 0x60, 0x00, 0x87, 0x00, 0xa5, 0x00, 0xbe, 0x00, 0xc3, 0x00,\n  0xbf, 0x00, 0xc6, 0x00, 0xd4, 0x00, 0xd2, 0x00, 0xbe, 0x00, 0x91, 0x00,\n  0x55, 0x00, 0x1f, 0x00, 0xfe, 0xff, 0xda, 0xff, 0xb4, 0xff, 0x83, 0xff,\n  0x4a, 0xff, 0x1c, 0xff, 0xfd, 0xfe, 0xee, 0xfe, 0xe7, 0xfe, 0xed, 0xfe,\n  0xec, 0xfe, 0xed, 0xfe, 0x02, 0xff, 0x0d, 0xff, 0x12, 0xff, 0x17, 0xff,\n  0x31, 0xff, 0x56, 0xff, 0x74, 0xff, 0x8e, 0xff, 0xae, 0xff, 0xde, 0xff,\n  0x18, 0x00, 0x57, 0x00, 0x91, 0x00, 0xc9, 0x00, 0xf1, 0x00, 0x0c, 0x01,\n  0x3c, 0x01, 0x71, 0x01, 0xa0, 0x01, 0xbd, 0x01, 0xa8, 0x01, 0x7e, 0x01,\n  0x5f, 0x01, 0x43, 0x01, 0x30, 0x01, 0x0c, 0x01, 0xd0, 0x00, 0x95, 0x00,\n  0x5b, 0x00, 0x2c, 0x00, 0x02, 0x00, 0xe5, 0xff, 0xc7, 0xff, 0xab, 0xff,\n  0x7c, 0xff, 0x54, 0xff, 0x35, 0xff, 0x1f, 0xff, 0x14, 0xff, 0x03, 0xff,\n  0x00, 0xff, 0x05, 0xff, 0x1a, 0xff, 0x3b, 0xff, 0x62, 0xff, 0x86, 0xff,\n  0xa6, 0xff, 0xc8, 0xff, 0xe8, 0xff, 0xfa, 0xff, 0x03, 0x00, 0x04, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x21, 0x00, 0x50, 0x00, 0x73, 0x00, 0x86, 0x00, 0x8c, 0x00, 0xa5, 0x00,\n  0xc6, 0x00, 0xf1, 0x00, 0x11, 0x01, 0x16, 0x01, 0xff, 0x00, 0xc5, 0x00,\n  0x7c, 0x00, 0x42, 0x00, 0x1b, 0x00, 0xea, 0xff, 0xbe, 0xff, 0x9a, 0xff,\n  0x83, 0xff, 0x68, 0xff, 0x62, 0xff, 0x79, 0xff, 0x9a, 0xff, 0xb5, 0xff,\n  0xc5, 0xff, 0xdc, 0xff, 0xeb, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x03, 0x00,\n  0x06, 0x00, 0xf7, 0xff, 0xe5, 0xff, 0xcc, 0xff, 0xa7, 0xff, 0x79, 0xff,\n  0x4a, 0xff, 0x37, 0xff, 0x36, 0xff, 0x49, 0xff, 0x61, 0xff, 0x76, 0xff,\n  0x90, 0xff, 0xb0, 0xff, 0xd1, 0xff, 0xdf, 0xff, 0xe0, 0xff, 0xde, 0xff,\n  0xf2, 0xff, 0x1f, 0x00, 0x4a, 0x00, 0x70, 0x00, 0x94, 0x00, 0x91, 0x00,\n  0x8b, 0x00, 0x96, 0x00, 0xaa, 0x00, 0xad, 0x00, 0x98, 0x00, 0x6e, 0x00,\n  0x3b, 0x00, 0x0d, 0x00, 0xf8, 0xff, 0xf2, 0xff, 0xde, 0xff, 0xc5, 0xff,\n  0xa2, 0xff, 0x88, 0xff, 0x81, 0xff, 0x89, 0xff, 0x95, 0xff, 0xa1, 0xff,\n  0xaf, 0xff, 0xca, 0xff, 0xfe, 0xff, 0x20, 0x00, 0x2f, 0x00, 0x31, 0x00,\n  0x26, 0x00, 0x29, 0x00, 0x21, 0x00, 0x0e, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x02, 0x00,\n  0x15, 0x00, 0x31, 0x00, 0x41, 0x00, 0x43, 0x00, 0x39, 0x00, 0x33, 0x00,\n  0x31, 0x00, 0x2e, 0x00, 0x33, 0x00, 0x38, 0x00, 0x36, 0x00, 0x38, 0x00,\n  0x2c, 0x00, 0x13, 0x00, 0xfe, 0xff, 0xf7, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0xf3, 0xff, 0xd4, 0xff, 0xab, 0xff, 0x84, 0xff, 0x65, 0xff, 0x49, 0xff,\n  0x2c, 0xff, 0x12, 0xff, 0xfd, 0xfe, 0xec, 0xfe, 0xe9, 0xfe, 0xfb, 0xfe,\n  0x22, 0xff, 0x65, 0xff, 0xb1, 0xff, 0xf9, 0xff, 0x39, 0x00, 0x84, 0x00,\n  0xd3, 0x00, 0x21, 0x01, 0x5a, 0x01, 0x7d, 0x01, 0xa0, 0x01, 0xa1, 0x01,\n  0x8b, 0x01, 0x52, 0x01, 0x17, 0x01, 0xdf, 0x00, 0xc0, 0x00, 0xbe, 0x00,\n  0xbb, 0x00, 0xb2, 0x00, 0x9f, 0x00, 0x8c, 0x00, 0x86, 0x00, 0x87, 0x00,\n  0x84, 0x00, 0x75, 0x00, 0x54, 0x00, 0x33, 0x00, 0x13, 0x00, 0xf9, 0xff,\n  0xe8, 0xff, 0xda, 0xff, 0xc8, 0xff, 0xa4, 0xff, 0x74, 0xff, 0x4a, 0xff,\n  0x27, 0xff, 0x12, 0xff, 0x08, 0xff, 0x08, 0xff, 0x12, 0xff, 0x1e, 0xff,\n  0x38, 0xff, 0x53, 0xff, 0x7e, 0xff, 0xb9, 0xff, 0xe8, 0xff, 0x0e, 0x00,\n  0x2f, 0x00, 0x57, 0x00, 0x70, 0x00, 0x7f, 0x00, 0x90, 0x00, 0xac, 0x00,\n  0xd3, 0x00, 0x07, 0x01, 0x34, 0x01, 0x3d, 0x01, 0x35, 0x01, 0x1e, 0x01,\n  0x0c, 0x01, 0xfd, 0x00, 0xd9, 0x00, 0xa0, 0x00, 0x60, 0x00, 0x21, 0x00,\n  0xe9, 0xff, 0xac, 0xff, 0x7c, 0xff, 0x4e, 0xff, 0x2e, 0xff, 0x12, 0xff,\n  0x05, 0xff, 0x06, 0xff, 0xfe, 0xfe, 0xee, 0xfe, 0xe0, 0xfe, 0xda, 0xfe,\n  0xdb, 0xfe, 0xe3, 0xfe, 0xe8, 0xfe, 0xea, 0xfe, 0xef, 0xfe, 0xfb, 0xfe,\n  0x03, 0xff, 0x1a, 0xff, 0x3a, 0xff, 0x5e, 0xff, 0x80, 0xff, 0xa9, 0xff,\n  0xdb, 0xff, 0x12, 0x00, 0x50, 0x00, 0x8b, 0x00, 0xb6, 0x00, 0xca, 0x00,\n  0xce, 0x00, 0xce, 0x00, 0xde, 0x00, 0xfa, 0x00, 0x11, 0x01, 0x12, 0x01,\n  0x0d, 0x01, 0x08, 0x01, 0x16, 0x01, 0x11, 0x01, 0xf8, 0x00, 0xdf, 0x00,\n  0xbc, 0x00, 0x93, 0x00, 0x5b, 0x00, 0x27, 0x00, 0x04, 0x00, 0xeb, 0xff,\n  0xdb, 0xff, 0xcf, 0xff, 0xc2, 0xff, 0xb5, 0xff, 0xbe, 0xff, 0xe9, 0xff,\n  0x17, 0x00, 0x21, 0x00, 0x12, 0x00, 0xf8, 0xff, 0xca, 0xff, 0x98, 0xff,\n  0x6b, 0xff, 0x4c, 0xff, 0x36, 0xff, 0x29, 0xff, 0x31, 0xff, 0x45, 0xff,\n  0x62, 0xff, 0x7c, 0xff, 0x8e, 0xff, 0xb0, 0xff, 0xe9, 0xff, 0x26, 0x00,\n  0x4d, 0x00, 0x66, 0x00, 0x7c, 0x00, 0x8a, 0x00, 0x98, 0x00, 0xaa, 0x00,\n  0xaa, 0x00, 0xa2, 0x00, 0x96, 0x00, 0x7c, 0x00, 0x57, 0x00, 0x36, 0x00,\n  0x12, 0x00, 0xf2, 0xff, 0xca, 0xff, 0xaa, 0xff, 0x9d, 0xff, 0xa4, 0xff,\n  0xa9, 0xff, 0x90, 0xff, 0x68, 0xff, 0x51, 0xff, 0x51, 0xff, 0x54, 0xff,\n  0x51, 0xff, 0x58, 0xff, 0x5e, 0xff, 0x72, 0xff, 0xa2, 0xff, 0xca, 0xff,\n  0xf2, 0xff, 0x24, 0x00, 0x4f, 0x00, 0x66, 0x00, 0x73, 0x00, 0x8a, 0x00,\n  0xa4, 0x00, 0xad, 0x00, 0xac, 0x00, 0xad, 0x00, 0xa3, 0x00, 0xa4, 0x00,\n  0xa7, 0x00, 0xb7, 0x00, 0xc1, 0x00, 0xb7, 0x00, 0xb9, 0x00, 0xb9, 0x00,\n  0xb4, 0x00, 0x99, 0x00, 0x6b, 0x00, 0x40, 0x00, 0x1b, 0x00, 0xef, 0xff,\n  0xb9, 0xff, 0x90, 0xff, 0x6d, 0xff, 0x53, 0xff, 0x2d, 0xff, 0x0f, 0xff,\n  0xfc, 0xfe, 0xec, 0xfe, 0xe2, 0xfe, 0xe5, 0xfe, 0xee, 0xfe, 0xfb, 0xfe,\n  0x12, 0xff, 0x2e, 0xff, 0x4a, 0xff, 0x6b, 0xff, 0x95, 0xff, 0xaf, 0xff,\n  0xca, 0xff, 0xe1, 0xff, 0x04, 0x00, 0x2a, 0x00, 0x40, 0x00, 0x46, 0x00,\n  0x4c, 0x00, 0x72, 0x00, 0x99, 0x00, 0xbc, 0x00, 0xe9, 0x00, 0x19, 0x01,\n  0x30, 0x01, 0x28, 0x01, 0x0e, 0x01, 0xee, 0x00, 0xbf, 0x00, 0x86, 0x00,\n  0x43, 0x00, 0x02, 0x00, 0xd7, 0xff, 0xba, 0xff, 0xb5, 0xff, 0xc0, 0xff,\n  0xcd, 0xff, 0xe5, 0xff, 0x07, 0x00, 0x2c, 0x00, 0x50, 0x00, 0x63, 0x00,\n  0x6b, 0x00, 0x85, 0x00, 0xa4, 0x00, 0xbc, 0x00, 0xd8, 0x00, 0xf1, 0x00,\n  0xf6, 0x00, 0xd4, 0x00, 0x9e, 0x00, 0x6b, 0x00, 0x33, 0x00, 0x06, 0x00,\n  0xe6, 0xff, 0xd1, 0xff, 0xc8, 0xff, 0xbd, 0xff, 0xa1, 0xff, 0x83, 0xff,\n  0x76, 0xff, 0x63, 0xff, 0x51, 0xff, 0x4c, 0xff, 0x49, 0xff, 0x49, 0xff,\n  0x45, 0xff, 0x3f, 0xff, 0x3b, 0xff, 0x37, 0xff, 0x35, 0xff, 0x37, 0xff,\n  0x3c, 0xff, 0x45, 0xff, 0x56, 0xff, 0x6b, 0xff, 0x90, 0xff, 0xc7, 0xff,\n  0x08, 0x00, 0x4b, 0x00, 0x89, 0x00, 0xc9, 0x00, 0xfa, 0x00, 0x0a, 0x01,\n  0x00, 0x01, 0xec, 0x00, 0xe6, 0x00, 0xe4, 0x00, 0xe4, 0x00, 0xd9, 0x00,\n  0xd2, 0x00, 0xbe, 0x00, 0x99, 0x00, 0x6d, 0x00, 0x42, 0x00, 0x17, 0x00,\n  0xf0, 0xff, 0xc2, 0xff, 0x93, 0xff, 0x6c, 0xff, 0x4f, 0xff, 0x44, 0xff,\n  0x3f, 0xff, 0x42, 0xff, 0x3c, 0xff, 0x35, 0xff, 0x40, 0xff, 0x58, 0xff,\n  0x76, 0xff, 0x93, 0xff, 0xaf, 0xff, 0xca, 0xff, 0xe4, 0xff, 0xf3, 0xff,\n  0xfc, 0xff, 0x03, 0x00, 0x11, 0x00, 0x25, 0x00, 0x36, 0x00, 0x42, 0x00,\n  0x4f, 0x00, 0x50, 0x00, 0x51, 0x00, 0x59, 0x00, 0x51, 0x00, 0x3b, 0x00,\n  0x17, 0x00, 0xfc, 0xff, 0xe1, 0xff, 0xcd, 0xff, 0xc7, 0xff, 0xbf, 0xff,\n  0xb9, 0xff, 0xb3, 0xff, 0xa7, 0xff, 0x9c, 0xff, 0x95, 0xff, 0x8e, 0xff,\n  0x8b, 0xff, 0x95, 0xff, 0x9d, 0xff, 0xa6, 0xff, 0xbd, 0xff, 0xdb, 0xff,\n  0xf3, 0xff, 0x04, 0x00, 0x12, 0x00, 0x22, 0x00, 0x2f, 0x00, 0x39, 0x00,\n  0x41, 0x00, 0x4c, 0x00, 0x5f, 0x00, 0x68, 0x00, 0x70, 0x00, 0x87, 0x00,\n  0xa2, 0x00, 0xb1, 0x00, 0xb9, 0x00, 0xb9, 0x00, 0xb4, 0x00, 0xaa, 0x00,\n  0xa0, 0x00, 0x98, 0x00, 0x91, 0x00, 0x82, 0x00, 0x66, 0x00, 0x5b, 0x00,\n  0x50, 0x00, 0x4b, 0x00, 0x31, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x09, 0x00,\n  0x04, 0x00, 0x07, 0x00, 0x17, 0x00, 0x27, 0x00, 0x3e, 0x00, 0x45, 0x00,\n  0x38, 0x00, 0x1b, 0x00, 0xfa, 0xff, 0xd9, 0xff, 0xbe, 0xff, 0xaa, 0xff,\n  0x90, 0xff, 0x70, 0xff, 0x51, 0xff, 0x3c, 0xff, 0x41, 0xff, 0x4f, 0xff,\n  0x56, 0xff, 0x68, 0xff, 0x79, 0xff, 0x81, 0xff, 0x88, 0xff, 0x86, 0xff,\n  0x83, 0xff, 0x8e, 0xff, 0xab, 0xff, 0xd7, 0xff, 0x13, 0x00, 0x52, 0x00,\n  0x9a, 0x00, 0xf6, 0x00, 0x4d, 0x01, 0x7e, 0x01, 0x95, 0x01, 0x91, 0x01,\n  0x71, 0x01, 0x3d, 0x01, 0x08, 0x01, 0xd3, 0x00, 0x9d, 0x00, 0x66, 0x00,\n  0x2c, 0x00, 0xf4, 0xff, 0xb9, 0xff, 0x80, 0xff, 0x45, 0xff, 0x14, 0xff,\n  0xfd, 0xfe, 0x00, 0xff, 0x03, 0xff, 0x08, 0xff, 0x0b, 0xff, 0x0d, 0xff,\n  0x15, 0xff, 0x26, 0xff, 0x45, 0xff, 0x65, 0xff, 0x7f, 0xff, 0x98, 0xff,\n  0xaf, 0xff, 0xbb, 0xff, 0xca, 0xff, 0xe1, 0xff, 0xfe, 0xff, 0x1f, 0x00,\n  0x31, 0x00, 0x36, 0x00, 0x3b, 0x00, 0x63, 0x00, 0xa2, 0x00, 0xd5, 0x00,\n  0xf1, 0x00, 0xec, 0x00, 0xd3, 0x00, 0xaf, 0x00, 0x91, 0x00, 0x70, 0x00,\n  0x54, 0x00, 0x41, 0x00, 0x40, 0x00, 0x39, 0x00, 0x31, 0x00, 0x36, 0x00,\n  0x46, 0x00, 0x59, 0x00, 0x65, 0x00, 0x5c, 0x00, 0x41, 0x00, 0x24, 0x00,\n  0x0d, 0x00, 0xf9, 0xff, 0xdf, 0xff, 0xc7, 0xff, 0xa9, 0xff, 0x92, 0xff,\n  0x7a, 0xff, 0x5e, 0xff, 0x4c, 0xff, 0x3d, 0xff, 0x3d, 0xff, 0x40, 0xff,\n  0x53, 0xff, 0x70, 0xff, 0x9b, 0xff, 0xd2, 0xff, 0x07, 0x00, 0x42, 0x00,\n  0x72, 0x00, 0x9e, 0x00, 0xbf, 0x00, 0xd2, 0x00, 0xce, 0x00, 0xc9, 0x00,\n  0xbf, 0x00, 0xa7, 0x00, 0x81, 0x00, 0x5b, 0x00, 0x36, 0x00, 0x20, 0x00,\n  0x09, 0x00, 0xf3, 0xff, 0xe1, 0xff, 0xd6, 0xff, 0xca, 0xff, 0xba, 0xff,\n  0xa7, 0xff, 0x92, 0xff, 0x8b, 0xff, 0x86, 0xff, 0x86, 0xff, 0x76, 0xff,\n  0x63, 0xff, 0x51, 0xff, 0x45, 0xff, 0x4c, 0xff, 0x58, 0xff, 0x77, 0xff,\n  0xb4, 0xff, 0xf7, 0xff, 0x3b, 0x00, 0x82, 0x00, 0xad, 0x00, 0xbe, 0x00,\n  0xa7, 0x00, 0x7a, 0x00, 0x40, 0x00, 0x08, 0x00, 0xd4, 0xff, 0xaa, 0xff,\n  0x90, 0xff, 0x7b, 0xff, 0x77, 0xff, 0x83, 0xff, 0x9d, 0xff, 0xc8, 0xff,\n  0xf5, 0xff, 0x1b, 0x00, 0x38, 0x00, 0x4d, 0x00, 0x63, 0x00, 0x75, 0x00,\n  0x8e, 0x00, 0x9f, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x9f, 0x00, 0x9b, 0x00,\n  0x8c, 0x00, 0x80, 0x00, 0x70, 0x00, 0x64, 0x00, 0x5a, 0x00, 0x4d, 0x00,\n  0x3b, 0x00, 0x2a, 0x00, 0x16, 0x00, 0xfa, 0xff, 0xdb, 0xff, 0xb3, 0xff,\n  0x88, 0xff, 0x68, 0xff, 0x5d, 0xff, 0x60, 0xff, 0x63, 0xff, 0x68, 0xff,\n  0x71, 0xff, 0x79, 0xff, 0x88, 0xff, 0x9b, 0xff, 0xc5, 0xff, 0x03, 0x00,\n  0x4d, 0x00, 0x96, 0x00, 0xcd, 0x00, 0xf3, 0x00, 0x13, 0x01, 0x1d, 0x01,\n  0x17, 0x01, 0xfb, 0x00, 0xd5, 0x00, 0xaa, 0x00, 0x7a, 0x00, 0x54, 0x00,\n  0x2f, 0x00, 0x06, 0x00, 0xdb, 0xff, 0xaf, 0xff, 0x8e, 0xff, 0x72, 0xff,\n  0x56, 0xff, 0x45, 0xff, 0x37, 0xff, 0x2d, 0xff, 0x32, 0xff, 0x38, 0xff,\n  0x4e, 0xff, 0x5b, 0xff, 0x6a, 0xff, 0x86, 0xff, 0xa9, 0xff, 0xcc, 0xff,\n  0xe0, 0xff, 0xf7, 0xff, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x08, 0x00,\n  0x0d, 0x00, 0x1a, 0x00, 0x24, 0x00, 0x36, 0x00, 0x55, 0x00, 0x7a, 0x00,\n  0x9f, 0x00, 0xc1, 0x00, 0xdd, 0x00, 0xf3, 0x00, 0xfb, 0x00, 0xf3, 0x00,\n  0xd9, 0x00, 0xb9, 0x00, 0x8e, 0x00, 0x50, 0x00, 0x12, 0x00, 0xdb, 0xff,\n  0xb3, 0xff, 0x8b, 0xff, 0x66, 0xff, 0x40, 0xff, 0x23, 0xff, 0x1c, 0xff,\n  0x14, 0xff, 0x0d, 0xff, 0x05, 0xff, 0x05, 0xff, 0x12, 0xff, 0x1d, 0xff,\n  0x2c, 0xff, 0x40, 0xff, 0x5e, 0xff, 0x81, 0xff, 0xb6, 0xff, 0xf9, 0xff,\n  0x2c, 0x00, 0x5e, 0x00, 0x8c, 0x00, 0xad, 0x00, 0xc9, 0x00, 0xe3, 0x00,\n  0xfe, 0x00, 0x12, 0x01, 0x22, 0x01, 0x25, 0x01, 0x0d, 0x01, 0xee, 0x00,\n  0xce, 0x00, 0xa5, 0x00, 0x73, 0x00, 0x4b, 0x00, 0x2c, 0x00, 0x0e, 0x00,\n  0xf4, 0xff, 0xdc, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xd9, 0xff,\n  0xdf, 0xff, 0xd1, 0xff, 0xbe, 0xff, 0xa5, 0xff, 0x95, 0xff, 0x88, 0xff,\n  0x70, 0xff, 0x63, 0xff, 0x5c, 0xff, 0x6a, 0xff, 0x89, 0xff, 0xaf, 0xff,\n  0xca, 0xff, 0xde, 0xff, 0xed, 0xff, 0xff, 0xff, 0x0c, 0x00, 0x20, 0x00,\n  0x4b, 0x00, 0x69, 0x00, 0x80, 0x00, 0x93, 0x00, 0x9f, 0x00, 0xaf, 0x00,\n  0xb9, 0x00, 0xb9, 0x00, 0xb2, 0x00, 0xaf, 0x00, 0x98, 0x00, 0x78, 0x00,\n  0x4d, 0x00, 0x1a, 0x00, 0xe6, 0xff, 0xb1, 0xff, 0x8b, 0xff, 0x70, 0xff,\n  0x5e, 0xff, 0x49, 0xff, 0x37, 0xff, 0x29, 0xff, 0x2d, 0xff, 0x4f, 0xff,\n  0x80, 0xff, 0xb4, 0xff, 0xe8, 0xff, 0x16, 0x00, 0x3e, 0x00, 0x72, 0x00,\n  0x99, 0x00, 0xb4, 0x00, 0xb9, 0x00, 0xb1, 0x00, 0xa8, 0x00, 0x9d, 0x00,\n  0x8e, 0x00, 0x69, 0x00, 0x43, 0x00, 0x1f, 0x00, 0xfc, 0xff, 0xdb, 0xff,\n  0xbd, 0xff, 0xb1, 0xff, 0xb5, 0xff, 0xb4, 0xff, 0xb8, 0xff, 0xca, 0xff,\n  0xe0, 0xff, 0xf8, 0xff, 0x1c, 0x00, 0x2f, 0x00, 0x38, 0x00, 0x36, 0x00,\n  0x2c, 0x00, 0x10, 0x00, 0xe5, 0xff, 0xaf, 0xff, 0x77, 0xff, 0x4e, 0xff,\n  0x31, 0xff, 0x1e, 0xff, 0x27, 0xff, 0x3a, 0xff, 0x4f, 0xff, 0x7e, 0xff,\n  0x97, 0xff, 0xb6, 0xff, 0xe9, 0xff, 0x17, 0x00, 0x32, 0x00, 0x46, 0x00,\n  0x51, 0x00, 0x56, 0x00, 0x59, 0x00, 0x64, 0x00, 0x73, 0x00, 0x89, 0x00,\n  0x9a, 0x00, 0xae, 0x00, 0xb7, 0x00, 0xb9, 0x00, 0xae, 0x00, 0xa2, 0x00,\n  0x8f, 0x00, 0x6f, 0x00, 0x46, 0x00, 0x21, 0x00, 0x01, 0x00, 0xed, 0xff,\n  0xe1, 0xff, 0xd9, 0xff, 0xd1, 0xff, 0xca, 0xff, 0xc8, 0xff, 0xc4, 0xff,\n  0xcb, 0xff, 0xd4, 0xff, 0xdf, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe7, 0xff,\n  0xe6, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xd9, 0xff, 0xc4, 0xff, 0xb0, 0xff,\n  0x9d, 0xff, 0x8f, 0xff, 0x8f, 0xff, 0x91, 0xff, 0x94, 0xff, 0xa2, 0xff,\n  0xb4, 0xff, 0xd6, 0xff, 0x00, 0x00, 0x13, 0x00, 0x19, 0x00, 0x11, 0x00,\n  0x09, 0x00, 0x02, 0x00, 0x0b, 0x00, 0x24, 0x00, 0x40, 0x00, 0x53, 0x00,\n  0x62, 0x00, 0x79, 0x00, 0x95, 0x00, 0xa6, 0x00, 0xa2, 0x00, 0x92, 0x00,\n  0x7b, 0x00, 0x5f, 0x00, 0x4d, 0x00, 0x48, 0x00, 0x40, 0x00, 0x40, 0x00,\n  0x42, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x4a, 0x00, 0x46, 0x00,\n  0x3a, 0x00, 0x29, 0x00, 0x1c, 0x00, 0x09, 0x00, 0xfa, 0xff, 0xe3, 0xff,\n  0xc7, 0xff, 0xa5, 0xff, 0x7f, 0xff, 0x5a, 0xff, 0x3a, 0xff, 0x25, 0xff,\n  0x1b, 0xff, 0x1a, 0xff, 0x1d, 0xff, 0x27, 0xff, 0x40, 0xff, 0x5e, 0xff,\n  0x7e, 0xff, 0xa6, 0xff, 0xc2, 0xff, 0xe9, 0xff, 0x0f, 0x00, 0x2e, 0x00,\n  0x4f, 0x00, 0x6c, 0x00, 0x94, 0x00, 0xb6, 0x00, 0xdf, 0x00, 0xf7, 0x00,\n  0xfb, 0x00, 0xea, 0x00, 0xc0, 0x00, 0x89, 0x00, 0x4e, 0x00, 0x19, 0x00,\n  0xed, 0xff, 0xce, 0xff, 0xbc, 0xff, 0xac, 0xff, 0xa7, 0xff, 0xab, 0xff,\n  0xb2, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb0, 0xff, 0xab, 0xff, 0xb3, 0xff,\n  0xc8, 0xff, 0xe6, 0xff, 0x0f, 0x00, 0x3a, 0x00, 0x61, 0x00, 0x79, 0x00,\n  0x86, 0x00, 0x8e, 0x00, 0x89, 0x00, 0x80, 0x00, 0x71, 0x00, 0x68, 0x00,\n  0x5b, 0x00, 0x4a, 0x00, 0x2f, 0x00, 0x0d, 0x00, 0xe5, 0xff, 0xc0, 0xff,\n  0xa3, 0xff, 0x93, 0xff, 0x80, 0xff, 0x79, 0xff, 0x7d, 0xff, 0x8f, 0xff,\n  0xb0, 0xff, 0xd9, 0xff, 0xfe, 0xff, 0x13, 0x00, 0x26, 0x00, 0x40, 0x00,\n  0x51, 0x00, 0x58, 0x00, 0x4d, 0x00, 0x30, 0x00, 0x13, 0x00, 0xf5, 0xff,\n  0xdc, 0xff, 0xcc, 0xff, 0xbe, 0xff, 0xbc, 0xff, 0xc9, 0xff, 0xe5, 0xff,\n  0x00, 0x00, 0x06, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xef, 0xff, 0xe5, 0xff,\n  0xd9, 0xff, 0xd4, 0xff, 0xe1, 0xff, 0xf5, 0xff, 0x0b, 0x00, 0x28, 0x00,\n  0x46, 0x00, 0x65, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x69, 0x00,\n  0x6c, 0x00, 0x6a, 0x00, 0x60, 0x00, 0x54, 0x00, 0x48, 0x00, 0x3e, 0x00,\n  0x3a, 0x00, 0x36, 0x00, 0x2b, 0x00, 0x1c, 0x00, 0x07, 0x00, 0xf3, 0xff,\n  0xe5, 0xff, 0xda, 0xff, 0xca, 0xff, 0xb1, 0xff, 0x97, 0xff, 0x7d, 0xff,\n  0x68, 0xff, 0x60, 0xff, 0x61, 0xff, 0x6d, 0xff, 0x83, 0xff, 0x9f, 0xff,\n  0xba, 0xff, 0xd0, 0xff, 0xde, 0xff, 0xe5, 0xff, 0xe6, 0xff, 0xe6, 0xff,\n  0xed, 0xff, 0xfb, 0xff, 0x03, 0x00, 0x11, 0x00, 0x1f, 0x00, 0x2c, 0x00,\n  0x30, 0x00, 0x33, 0x00, 0x44, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x48, 0x00,\n  0x4a, 0x00, 0x48, 0x00, 0x39, 0x00, 0x24, 0x00, 0x17, 0x00, 0x11, 0x00,\n  0x09, 0x00, 0x09, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00, 0xed, 0xff,\n  0xdd, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd0, 0xff, 0xdb, 0xff, 0xeb, 0xff,\n  0xfa, 0xff, 0x09, 0x00, 0x19, 0x00, 0x24, 0x00, 0x2d, 0x00, 0x36, 0x00,\n  0x4a, 0x00, 0x5f, 0x00, 0x65, 0x00, 0x60, 0x00, 0x4c, 0x00, 0x3e, 0x00,\n  0x21, 0x00, 0xfe, 0xff, 0xdc, 0xff, 0xbe, 0xff, 0xa8, 0xff, 0x98, 0xff,\n  0x96, 0xff, 0x91, 0xff, 0x97, 0xff, 0x9c, 0xff, 0x9b, 0xff, 0xa7, 0xff,\n  0xae, 0xff, 0xb2, 0xff, 0xb1, 0xff, 0xaf, 0xff, 0xa9, 0xff, 0xa4, 0xff,\n  0x9b, 0xff, 0xa0, 0xff, 0xb4, 0xff, 0xcc, 0xff, 0xeb, 0xff, 0x09, 0x00,\n  0x36, 0x00, 0x6c, 0x00, 0x95, 0x00, 0xb3, 0x00, 0xd0, 0x00, 0xee, 0x00,\n  0x01, 0x01, 0x14, 0x01, 0x1c, 0x01, 0x0c, 0x01, 0xfa, 0x00, 0xec, 0x00,\n  0xd1, 0x00, 0xae, 0x00, 0x8d, 0x00, 0x64, 0x00, 0x33, 0x00, 0xf9, 0xff,\n  0xbe, 0xff, 0x7e, 0xff, 0x48, 0xff, 0x23, 0xff, 0x11, 0xff, 0x0c, 0xff,\n  0x15, 0xff, 0x2b, 0xff, 0x43, 0xff, 0x67, 0xff, 0x96, 0xff, 0xc6, 0xff,\n  0xfc, 0xff, 0x21, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x26, 0x00, 0x1f, 0x00,\n  0x21, 0x00, 0x2d, 0x00, 0x42, 0x00, 0x59, 0x00, 0x65, 0x00, 0x66, 0x00,\n  0x5c, 0x00, 0x4a, 0x00, 0x2f, 0x00, 0x15, 0x00, 0x11, 0x00, 0x1a, 0x00,\n  0x1c, 0x00, 0x11, 0x00, 0xfa, 0xff, 0xde, 0xff, 0xca, 0xff, 0xbc, 0xff,\n  0xba, 0xff, 0xc0, 0xff, 0xc6, 0xff, 0xcc, 0xff, 0xd6, 0xff, 0xef, 0xff,\n  0x09, 0x00, 0x25, 0x00, 0x2f, 0x00, 0x25, 0x00, 0x01, 0x00, 0xdb, 0xff,\n  0xc8, 0xff, 0xc4, 0xff, 0xcc, 0xff, 0xd0, 0xff, 0xd3, 0xff, 0xdf, 0xff,\n  0xe9, 0xff, 0xfd, 0xff, 0x09, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x0b, 0x00,\n  0x09, 0x00, 0x11, 0x00, 0x15, 0x00, 0x17, 0x00, 0x17, 0x00, 0x17, 0x00,\n  0x24, 0x00, 0x30, 0x00, 0x46, 0x00, 0x5d, 0x00, 0x77, 0x00, 0x83, 0x00,\n  0x88, 0x00, 0x85, 0x00, 0x7d, 0x00, 0x6b, 0x00, 0x50, 0x00, 0x2f, 0x00,\n  0x11, 0x00, 0xff, 0xff, 0xeb, 0xff, 0xd3, 0xff, 0xbc, 0xff, 0xa9, 0xff,\n  0x99, 0xff, 0x95, 0xff, 0x9b, 0xff, 0xa2, 0xff, 0xa6, 0xff, 0xa0, 0xff,\n  0x9e, 0xff, 0x98, 0xff, 0x8f, 0xff, 0x8d, 0xff, 0x97, 0xff, 0xac, 0xff,\n  0xbe, 0xff, 0xd3, 0xff, 0xe1, 0xff, 0xf3, 0xff, 0x0f, 0x00, 0x34, 0x00,\n  0x60, 0x00, 0x81, 0x00, 0x8d, 0x00, 0x8c, 0x00, 0x8a, 0x00, 0x77, 0x00,\n  0x5f, 0x00, 0x54, 0x00, 0x4f, 0x00, 0x48, 0x00, 0x34, 0x00, 0x1b, 0x00,\n  0x0b, 0x00, 0xff, 0xff, 0xf7, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x13, 0x00,\n  0x03, 0x00, 0xf1, 0xff, 0xe1, 0xff, 0xcf, 0xff, 0xbe, 0xff, 0xb2, 0xff,\n  0xa9, 0xff, 0x9d, 0xff, 0x8f, 0xff, 0x87, 0xff, 0x87, 0xff, 0x8f, 0xff,\n  0x9b, 0xff, 0x9c, 0xff, 0xaa, 0xff, 0xc0, 0xff, 0xcf, 0xff, 0xdd, 0xff,\n  0xef, 0xff, 0x03, 0x00, 0x0f, 0x00, 0x11, 0x00, 0x09, 0x00, 0x04, 0x00,\n  0x09, 0x00, 0x13, 0x00, 0x1b, 0x00, 0x1b, 0x00, 0x17, 0x00, 0x15, 0x00,\n  0x1d, 0x00, 0x1f, 0x00, 0x13, 0x00, 0xfe, 0xff, 0xe9, 0xff, 0xe6, 0xff,\n  0xf1, 0xff, 0x06, 0x00, 0x1b, 0x00, 0x31, 0x00, 0x48, 0x00, 0x61, 0x00,\n  0x79, 0x00, 0x98, 0x00, 0xc2, 0x00, 0xf0, 0x00, 0x0a, 0x01, 0x1a, 0x01,\n  0x19, 0x01, 0x04, 0x01, 0xe3, 0x00, 0xbd, 0x00, 0x93, 0x00, 0x5e, 0x00,\n  0x24, 0x00, 0xed, 0xff, 0xbc, 0xff, 0x8b, 0xff, 0x65, 0xff, 0x42, 0xff,\n  0x31, 0xff, 0x27, 0xff, 0x1b, 0xff, 0x1a, 0xff, 0x21, 0xff, 0x2b, 0xff,\n  0x41, 0xff, 0x60, 0xff, 0x7e, 0xff, 0x99, 0xff, 0xb1, 0xff, 0xca, 0xff,\n  0xdd, 0xff, 0xed, 0xff, 0xfb, 0xff, 0x09, 0x00, 0x0d, 0x00, 0x17, 0x00,\n  0x1e, 0x00, 0x1d, 0x00, 0x24, 0x00, 0x32, 0x00, 0x4a, 0x00, 0x6b, 0x00,\n  0x84, 0x00, 0x8d, 0x00, 0x84, 0x00, 0x75, 0x00, 0x65, 0x00, 0x59, 0x00,\n  0x51, 0x00, 0x46, 0x00, 0x36, 0x00, 0x22, 0x00, 0x0d, 0x00, 0x00, 0x00,\n  0xf1, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xd8, 0xff, 0xd1, 0xff, 0xce, 0xff,\n  0xc4, 0xff, 0xc4, 0xff, 0xc0, 0xff, 0xbe, 0xff, 0xc6, 0xff, 0xcf, 0xff,\n  0xdd, 0xff, 0xf1, 0xff, 0x03, 0x00, 0x15, 0x00, 0x2d, 0x00, 0x37, 0x00,\n  0x3e, 0x00, 0x39, 0x00, 0x2a, 0x00, 0x0d, 0x00, 0xf3, 0xff, 0xdb, 0xff,\n  0xcc, 0xff, 0xc7, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xba, 0xff, 0xc2, 0xff,\n  0xce, 0xff, 0xe2, 0xff, 0xef, 0xff, 0x00, 0x00, 0x1a, 0x00, 0x37, 0x00,\n  0x5b, 0x00, 0x79, 0x00, 0x90, 0x00, 0x99, 0x00, 0x96, 0x00, 0x92, 0x00,\n  0x87, 0x00, 0x71, 0x00, 0x55, 0x00, 0x36, 0x00, 0x11, 0x00, 0xf5, 0xff,\n  0xdb, 0xff, 0xd1, 0xff, 0xd3, 0xff, 0xd0, 0xff, 0xd3, 0xff, 0xc4, 0xff,\n  0xb3, 0xff, 0xac, 0xff, 0xa9, 0xff, 0xbc, 0xff, 0xcf, 0xff, 0xeb, 0xff,\n  0x0d, 0x00, 0x2f, 0x00, 0x4c, 0x00, 0x5e, 0x00, 0x5d, 0x00, 0x42, 0x00,\n  0x27, 0x00, 0x15, 0x00, 0x0d, 0x00, 0x13, 0x00, 0x17, 0x00, 0x0b, 0x00,\n  0xfc, 0xff, 0xe6, 0xff, 0xd2, 0xff, 0xbe, 0xff, 0xb6, 0xff, 0xb2, 0xff,\n  0xad, 0xff, 0xa8, 0xff, 0xac, 0xff, 0xba, 0xff, 0xca, 0xff, 0xe0, 0xff,\n  0xfc, 0xff, 0x05, 0x00, 0x09, 0x00, 0x03, 0x00, 0xff, 0xff, 0xf7, 0xff,\n  0xf5, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0f, 0x00, 0x1d, 0x00, 0x33, 0x00,\n  0x48, 0x00, 0x5c, 0x00, 0x63, 0x00, 0x6b, 0x00, 0x66, 0x00, 0x5c, 0x00,\n  0x42, 0x00, 0x24, 0x00, 0x07, 0x00, 0xef, 0xff, 0xdd, 0xff, 0xc9, 0xff,\n  0xba, 0xff, 0xae, 0xff, 0xa3, 0xff, 0x97, 0xff, 0x8f, 0xff, 0x91, 0xff,\n  0xa0, 0xff, 0xb4, 0xff, 0xc0, 0xff, 0xd4, 0xff, 0xe4, 0xff, 0xff, 0xff,\n  0x11, 0x00, 0x1f, 0x00, 0x3e, 0x00, 0x66, 0x00, 0x97, 0x00, 0xc1, 0x00,\n  0xd9, 0x00, 0xe8, 0x00, 0xf6, 0x00, 0xee, 0x00, 0xd1, 0x00, 0xae, 0x00,\n  0x7f, 0x00, 0x4a, 0x00, 0x15, 0x00, 0xed, 0xff, 0xd1, 0xff, 0xbc, 0xff,\n  0xae, 0xff, 0xaa, 0xff, 0xad, 0xff, 0xb0, 0xff, 0xb2, 0xff, 0xaf, 0xff,\n  0xb3, 0xff, 0xba, 0xff, 0xc0, 0xff, 0xcf, 0xff, 0xe0, 0xff, 0xed, 0xff,\n  0xf1, 0xff, 0xfe, 0xff, 0x0f, 0x00, 0x24, 0x00, 0x33, 0x00, 0x42, 0x00,\n  0x55, 0x00, 0x5e, 0x00, 0x6d, 0x00, 0x79, 0x00, 0x81, 0x00, 0x84, 0x00,\n  0x7f, 0x00, 0x73, 0x00, 0x5e, 0x00, 0x40, 0x00, 0x1c, 0x00, 0xf9, 0xff,\n  0xd6, 0xff, 0xb8, 0xff, 0x9a, 0xff, 0x83, 0xff, 0x77, 0xff, 0x72, 0xff,\n  0x7b, 0xff, 0x87, 0xff, 0x8b, 0xff, 0x8b, 0xff, 0x8b, 0xff, 0x8b, 0xff,\n  0x91, 0xff, 0x9b, 0xff, 0xa5, 0xff, 0xb0, 0xff, 0xb1, 0xff, 0xb0, 0xff,\n  0xa9, 0xff, 0xa4, 0xff, 0xa8, 0xff, 0xaf, 0xff, 0xb0, 0xff, 0xaa, 0xff,\n  0xa8, 0xff, 0xa6, 0xff, 0xa6, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xaf, 0xff,\n  0xc2, 0xff, 0xd2, 0xff, 0xe5, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x03, 0x00,\n  0x09, 0x00, 0x0b, 0x00, 0x13, 0x00, 0x22, 0x00, 0x33, 0x00, 0x40, 0x00,\n  0x44, 0x00, 0x53, 0x00, 0x6b, 0x00, 0x8d, 0x00, 0xa4, 0x00, 0xb4, 0x00,\n  0xc8, 0x00, 0xd0, 0x00, 0xcd, 0x00, 0xc4, 0x00, 0xbc, 0x00, 0xc0, 0x00,\n  0xd1, 0x00, 0xdb, 0x00, 0xdd, 0x00, 0xd9, 0x00, 0xd5, 0x00, 0xcc, 0x00,\n  0xbc, 0x00, 0xb5, 0x00, 0xa8, 0x00, 0x83, 0x00, 0x4a, 0x00, 0x1b, 0x00,\n  0xf3, 0xff, 0xc9, 0xff, 0x9c, 0xff, 0x73, 0xff, 0x58, 0xff, 0x4a, 0xff,\n  0x3d, 0xff, 0x36, 0xff, 0x2e, 0xff, 0x27, 0xff, 0x29, 0xff, 0x2f, 0xff,\n  0x3e, 0xff, 0x4c, 0xff, 0x56, 0xff, 0x64, 0xff, 0x6e, 0xff, 0x78, 0xff,\n  0x7d, 0xff, 0x80, 0xff, 0x85, 0xff, 0x97, 0xff, 0xb2, 0xff, 0xce, 0xff,\n  0xe9, 0xff, 0x06, 0x00, 0x20, 0x00, 0x36, 0x00, 0x44, 0x00, 0x46, 0x00,\n  0x4e, 0x00, 0x5d, 0x00, 0x67, 0x00, 0x69, 0x00, 0x68, 0x00, 0x6c, 0x00,\n  0x75, 0x00, 0x87, 0x00, 0xa0, 0x00, 0xa8, 0x00, 0x97, 0x00, 0x75, 0x00,\n  0x4e, 0x00, 0x2f, 0x00, 0x13, 0x00, 0xfb, 0xff, 0xe4, 0xff, 0xcf, 0xff,\n  0xbc, 0xff, 0xa6, 0xff, 0x8f, 0xff, 0x7d, 0xff, 0x78, 0xff, 0x7f, 0xff,\n  0x91, 0xff, 0xaa, 0xff, 0xce, 0xff, 0xf7, 0xff, 0x20, 0x00, 0x40, 0x00,\n  0x58, 0x00, 0x69, 0x00, 0x7d, 0x00, 0x84, 0x00, 0x7d, 0x00, 0x6b, 0x00,\n  0x54, 0x00, 0x40, 0x00, 0x37, 0x00, 0x39, 0x00, 0x46, 0x00, 0x5a, 0x00,\n  0x61, 0x00, 0x53, 0x00, 0x3c, 0x00, 0x2a, 0x00, 0x13, 0x00, 0x00, 0x00,\n  0xf3, 0xff, 0xe5, 0xff, 0xdb, 0xff, 0xc7, 0xff, 0xad, 0xff, 0x91, 0xff,\n  0x7a, 0xff, 0x70, 0xff, 0x6c, 0xff, 0x77, 0xff, 0x81, 0xff, 0x91, 0xff,\n  0xa3, 0xff, 0xab, 0xff, 0xb8, 0xff, 0xbe, 0xff, 0xc4, 0xff, 0xd2, 0xff,\n  0xde, 0xff, 0xe9, 0xff, 0xf3, 0xff, 0x03, 0x00, 0x15, 0x00, 0x27, 0x00,\n  0x32, 0x00, 0x37, 0x00, 0x39, 0x00, 0x37, 0x00, 0x44, 0x00, 0x55, 0x00,\n  0x61, 0x00, 0x64, 0x00, 0x67, 0x00, 0x62, 0x00, 0x5b, 0x00, 0x51, 0x00,\n  0x3e, 0x00, 0x23, 0x00, 0x06, 0x00, 0xf3, 0xff, 0xdd, 0xff, 0xd9, 0xff,\n  0xe0, 0xff, 0xfa, 0xff, 0x13, 0x00, 0x32, 0x00, 0x44, 0x00, 0x4a, 0x00,\n  0x4a, 0x00, 0x36, 0x00, 0x1f, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x05, 0x00, 0x13, 0x00, 0x1b, 0x00, 0x17, 0x00, 0x0b, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xf5, 0xff, 0xe7, 0xff, 0xdf, 0xff, 0xe5, 0xff, 0xef, 0xff,\n  0x06, 0x00, 0x1a, 0x00, 0x21, 0x00, 0x26, 0x00, 0x2b, 0x00, 0x2a, 0x00,\n  0x22, 0x00, 0x1a, 0x00, 0x0b, 0x00, 0xf7, 0xff, 0xe5, 0xff, 0xd1, 0xff,\n  0xb8, 0xff, 0xa6, 0xff, 0x98, 0xff, 0x93, 0xff, 0x93, 0xff, 0x91, 0xff,\n  0x8f, 0xff, 0x99, 0xff, 0xa8, 0xff, 0xae, 0xff, 0xb3, 0xff, 0xb6, 0xff,\n  0xbc, 0xff, 0xca, 0xff, 0xdb, 0xff, 0xed, 0xff, 0xfc, 0xff, 0x13, 0x00,\n  0x37, 0x00, 0x60, 0x00, 0x8d, 0x00, 0xae, 0x00, 0xc5, 0x00, 0xcb, 0x00,\n  0xbd, 0x00, 0xa6, 0x00, 0x89, 0x00, 0x6d, 0x00, 0x57, 0x00, 0x48, 0x00,\n  0x31, 0x00, 0x15, 0x00, 0xfb, 0xff, 0xe4, 0xff, 0xca, 0xff, 0xaa, 0xff,\n  0x85, 0xff, 0x64, 0xff, 0x4e, 0xff, 0x42, 0xff, 0x49, 0xff, 0x58, 0xff,\n  0x6c, 0xff, 0x8b, 0xff, 0xa6, 0xff, 0xc0, 0xff, 0xda, 0xff, 0xfa, 0xff,\n  0x13, 0x00, 0x28, 0x00, 0x34, 0x00, 0x40, 0x00, 0x4d, 0x00, 0x5b, 0x00,\n  0x6f, 0x00, 0x83, 0x00, 0x9d, 0x00, 0xb0, 0x00, 0xb4, 0x00, 0xaa, 0x00,\n  0x91, 0x00, 0x67, 0x00, 0x3e, 0x00, 0x1c, 0x00, 0x03, 0x00, 0xf5, 0xff,\n  0xe9, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe5, 0xff, 0xde, 0xff, 0xd0, 0xff,\n  0xc0, 0xff, 0xbc, 0xff, 0xba, 0xff, 0xbe, 0xff, 0xc6, 0xff, 0xd5, 0xff,\n  0xe3, 0xff, 0xf3, 0xff, 0x03, 0x00, 0x13, 0x00, 0x1b, 0x00, 0x17, 0x00,\n  0x09, 0x00, 0xf5, 0xff, 0xe7, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xf5, 0xff,\n  0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0xf9, 0xff, 0xe3, 0xff, 0xcc, 0xff,\n  0xb8, 0xff, 0xad, 0xff, 0xaf, 0xff, 0xc0, 0xff, 0xd5, 0xff, 0xf5, 0xff,\n  0x15, 0x00, 0x2d, 0x00, 0x3a, 0x00, 0x58, 0x00, 0x73, 0x00, 0x7d, 0x00,\n  0x7b, 0x00, 0x6b, 0x00, 0x5a, 0x00, 0x44, 0x00, 0x33, 0x00, 0x2b, 0x00,\n  0x25, 0x00, 0x26, 0x00, 0x2c, 0x00, 0x23, 0x00, 0x21, 0x00, 0x17, 0x00,\n  0x09, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xed, 0xff, 0xea, 0xff, 0xea, 0xff,\n  0xe9, 0xff, 0xe0, 0xff, 0xd5, 0xff, 0xc7, 0xff, 0xb8, 0xff, 0xaa, 0xff,\n  0xa3, 0xff, 0xa8, 0xff, 0xb1, 0xff, 0xb9, 0xff, 0xbe, 0xff, 0xc5, 0xff,\n  0xd0, 0xff, 0xe1, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x08, 0x00, 0x13, 0x00,\n  0x18, 0x00, 0x16, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x13, 0x00,\n  0x1d, 0x00, 0x29, 0x00, 0x34, 0x00, 0x3d, 0x00, 0x46, 0x00, 0x48, 0x00,\n  0x45, 0x00, 0x42, 0x00, 0x3a, 0x00, 0x30, 0x00, 0x28, 0x00, 0x1a, 0x00,\n  0x08, 0x00, 0xfc, 0xff, 0xee, 0xff, 0xe5, 0xff, 0xe2, 0xff, 0xe3, 0xff,\n  0xe7, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xf5, 0xff,\n  0xf0, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xfa, 0xff, 0xf2, 0xff, 0xe6, 0xff,\n  0xda, 0xff, 0xd0, 0xff, 0xcc, 0xff, 0xd9, 0xff, 0xef, 0xff, 0x03, 0x00,\n  0x11, 0x00, 0x16, 0x00, 0x13, 0x00, 0x10, 0x00, 0x11, 0x00, 0x19, 0x00,\n  0x2f, 0x00, 0x4a, 0x00, 0x63, 0x00, 0x75, 0x00, 0x85, 0x00, 0x96, 0x00,\n  0x98, 0x00, 0x8b, 0x00, 0x77, 0x00, 0x5f, 0x00, 0x45, 0x00, 0x2d, 0x00,\n  0x1a, 0x00, 0x06, 0x00, 0xf3, 0xff, 0xe3, 0xff, 0xd3, 0xff, 0xc4, 0xff,\n  0xc1, 0xff, 0xbf, 0xff, 0xba, 0xff, 0xb2, 0xff, 0xa9, 0xff, 0xa2, 0xff,\n  0xa5, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xad, 0xff, 0xb5, 0xff,\n  0xbd, 0xff, 0xcc, 0xff, 0xdc, 0xff, 0xe7, 0xff, 0xe8, 0xff, 0xeb, 0xff,\n  0xf1, 0xff, 0xfe, 0xff, 0x0a, 0x00, 0x13, 0x00, 0x18, 0x00, 0x1b, 0x00,\n  0x22, 0x00, 0x27, 0x00, 0x25, 0x00, 0x23, 0x00, 0x24, 0x00, 0x2c, 0x00,\n  0x37, 0x00, 0x48, 0x00, 0x4f, 0x00, 0x52, 0x00, 0x61, 0x00, 0x71, 0x00,\n  0x72, 0x00, 0x6f, 0x00, 0x6a, 0x00, 0x61, 0x00, 0x4b, 0x00, 0x2c, 0x00,\n  0x0f, 0x00, 0xf6, 0xff, 0xe4, 0xff, 0xd9, 0xff, 0xd1, 0xff, 0xd1, 0xff,\n  0xdc, 0xff, 0xe5, 0xff, 0xe3, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xe0, 0xff,\n  0xe2, 0xff, 0xdc, 0xff, 0xd7, 0xff, 0xcc, 0xff, 0xc9, 0xff, 0xc6, 0xff,\n  0xc1, 0xff, 0xbb, 0xff, 0xb7, 0xff, 0xb4, 0xff, 0xae, 0xff, 0xb4, 0xff,\n  0xbf, 0xff, 0xc6, 0xff, 0xca, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xda, 0xff,\n  0xe5, 0xff, 0xf5, 0xff, 0x04, 0x00, 0x13, 0x00, 0x1e, 0x00, 0x28, 0x00,\n  0x36, 0x00, 0x43, 0x00, 0x4f, 0x00, 0x5f, 0x00, 0x64, 0x00, 0x6d, 0x00,\n  0x70, 0x00, 0x6c, 0x00, 0x6f, 0x00, 0x70, 0x00, 0x6c, 0x00, 0x69, 0x00,\n  0x6b, 0x00, 0x62, 0x00, 0x54, 0x00, 0x3d, 0x00, 0x2c, 0x00, 0x1b, 0x00,\n  0x08, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xe4, 0xff, 0xd3, 0xff, 0xc3, 0xff,\n  0xae, 0xff, 0x9c, 0xff, 0x88, 0xff, 0x78, 0xff, 0x71, 0xff, 0x78, 0xff,\n  0x80, 0xff, 0x89, 0xff, 0x8e, 0xff, 0x91, 0xff, 0x96, 0xff, 0xa0, 0xff,\n  0xb0, 0xff, 0xc6, 0xff, 0xda, 0xff, 0xf5, 0xff, 0x0d, 0x00, 0x23, 0x00,\n  0x3d, 0x00, 0x61, 0x00, 0x82, 0x00, 0xa1, 0x00, 0xbc, 0x00, 0xd1, 0x00,\n  0xeb, 0x00, 0xfa, 0x00, 0x02, 0x01, 0xfc, 0x00, 0xe1, 0x00, 0xba, 0x00,\n  0x8a, 0x00, 0x54, 0x00, 0x1e, 0x00, 0xf5, 0xff, 0xd1, 0xff, 0xbb, 0xff,\n  0xa7, 0xff, 0x94, 0xff, 0x89, 0xff, 0x85, 0xff, 0x81, 0xff, 0x80, 0xff,\n  0x7e, 0xff, 0x80, 0xff, 0x86, 0xff, 0x8f, 0xff, 0x9c, 0xff, 0xa5, 0xff,\n  0xae, 0xff, 0xb1, 0xff, 0xb5, 0xff, 0xb9, 0xff, 0xc2, 0xff, 0xce, 0xff,\n  0xd8, 0xff, 0xe4, 0xff, 0xf3, 0xff, 0x01, 0x00, 0x10, 0x00, 0x18, 0x00,\n  0x1a, 0x00, 0x21, 0x00, 0x27, 0x00, 0x32, 0x00, 0x3b, 0x00, 0x43, 0x00,\n  0x45, 0x00, 0x45, 0x00, 0x44, 0x00, 0x38, 0x00, 0x2b, 0x00, 0x22, 0x00,\n  0x14, 0x00, 0x03, 0x00, 0xf8, 0xff, 0xf2, 0xff, 0xf7, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf8, 0xff,\n  0xfe, 0xff, 0x04, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x12, 0x00,\n  0x13, 0x00, 0x0f, 0x00, 0x02, 0x00, 0xf0, 0xff, 0xdf, 0xff, 0xd2, 0xff,\n  0xc3, 0xff, 0xbe, 0xff, 0xbb, 0xff, 0xbe, 0xff, 0xc5, 0xff, 0xc6, 0xff,\n  0xca, 0xff, 0xd1, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xd5, 0xff,\n  0xd6, 0xff, 0xd7, 0xff, 0xe0, 0xff, 0xf0, 0xff, 0xff, 0xff, 0x05, 0x00,\n  0x11, 0x00, 0x17, 0x00, 0x1f, 0x00, 0x2c, 0x00, 0x45, 0x00, 0x5f, 0x00,\n  0x71, 0x00, 0x7f, 0x00, 0x8a, 0x00, 0x94, 0x00, 0x97, 0x00, 0x8d, 0x00,\n  0x7d, 0x00, 0x64, 0x00, 0x4c, 0x00, 0x37, 0x00, 0x29, 0x00, 0x24, 0x00,\n  0x16, 0x00, 0x09, 0x00, 0xf6, 0xff, 0xe2, 0xff, 0xcf, 0xff, 0xc1, 0xff,\n  0xba, 0xff, 0xb5, 0xff, 0xb0, 0xff, 0xa7, 0xff, 0xa9, 0xff, 0xb0, 0xff,\n  0xc1, 0xff, 0xd5, 0xff, 0xe7, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x0b, 0x00,\n  0x1b, 0x00, 0x29, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x2e, 0x00,\n  0x2b, 0x00, 0x25, 0x00, 0x23, 0x00, 0x29, 0x00, 0x2f, 0x00, 0x30, 0x00,\n  0x34, 0x00, 0x38, 0x00, 0x39, 0x00, 0x35, 0x00, 0x34, 0x00, 0x3d, 0x00,\n  0x48, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x48, 0x00, 0x45, 0x00, 0x3d, 0x00,\n  0x35, 0x00, 0x2a, 0x00, 0x19, 0x00, 0x05, 0x00, 0xea, 0xff, 0xc7, 0xff,\n  0xa8, 0xff, 0x87, 0xff, 0x70, 0xff, 0x5c, 0xff, 0x49, 0xff, 0x43, 0xff,\n  0x3f, 0xff, 0x43, 0xff, 0x4f, 0xff, 0x5e, 0xff, 0x70, 0xff, 0x7e, 0xff,\n  0x8c, 0xff, 0xa2, 0xff, 0xbb, 0xff, 0xd4, 0xff, 0xf1, 0xff, 0x09, 0x00,\n  0x24, 0x00, 0x49, 0x00, 0x76, 0x00, 0x9b, 0x00, 0xb9, 0x00, 0xc9, 0x00,\n  0xc8, 0x00, 0xbe, 0x00, 0xab, 0x00, 0x94, 0x00, 0x85, 0x00, 0x7b, 0x00,\n  0x6a, 0x00, 0x53, 0x00, 0x3d, 0x00, 0x25, 0x00, 0x0f, 0x00, 0xf9, 0xff,\n  0xe1, 0xff, 0xd1, 0xff, 0xc7, 0xff, 0xc3, 0xff, 0xbf, 0xff, 0xb8, 0xff,\n  0xb8, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xbb, 0xff, 0xbd, 0xff, 0xbb, 0xff,\n  0xb8, 0xff, 0xbb, 0xff, 0xbd, 0xff, 0xc2, 0xff, 0xc7, 0xff, 0xc9, 0xff,\n  0xcf, 0xff, 0xd7, 0xff, 0xe2, 0xff, 0xec, 0xff, 0xfb, 0xff, 0x14, 0x00,\n  0x2c, 0x00, 0x3c, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x42, 0x00, 0x4a, 0x00,\n  0x55, 0x00, 0x5d, 0x00, 0x61, 0x00, 0x61, 0x00, 0x60, 0x00, 0x54, 0x00,\n  0x42, 0x00, 0x2d, 0x00, 0x1b, 0x00, 0x12, 0x00, 0x09, 0x00, 0x05, 0x00,\n  0x03, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xe5, 0xff,\n  0xcf, 0xff, 0xb8, 0xff, 0xa8, 0xff, 0xa1, 0xff, 0xa7, 0xff, 0xb6, 0xff,\n  0xc6, 0xff, 0xd4, 0xff, 0xe2, 0xff, 0xef, 0xff, 0x00, 0x00, 0x13, 0x00,\n  0x20, 0x00, 0x28, 0x00, 0x27, 0x00, 0x28, 0x00, 0x22, 0x00, 0x1b, 0x00,\n  0x10, 0x00, 0x03, 0x00, 0xfd, 0xff, 0xf0, 0xff, 0xe2, 0xff, 0xd4, 0xff,\n  0xca, 0xff, 0xcc, 0xff, 0xd3, 0xff, 0xd6, 0xff, 0xd6, 0xff, 0xd1, 0xff,\n  0xce, 0xff, 0xd1, 0xff, 0xd7, 0xff, 0xdf, 0xff, 0xe0, 0xff, 0xdf, 0xff,\n  0xdd, 0xff, 0xdf, 0xff, 0xe2, 0xff, 0xeb, 0xff, 0x00, 0x00, 0x17, 0x00,\n  0x25, 0x00, 0x34, 0x00, 0x48, 0x00, 0x60, 0x00, 0x77, 0x00, 0x8b, 0x00,\n  0xa3, 0x00, 0xbc, 0x00, 0xc7, 0x00, 0xc6, 0x00, 0xba, 0x00, 0xa1, 0x00,\n  0x86, 0x00, 0x71, 0x00, 0x57, 0x00, 0x3d, 0x00, 0x23, 0x00, 0x05, 0x00,\n  0xea, 0xff, 0xc9, 0xff, 0xb0, 0xff, 0x9f, 0xff, 0x96, 0xff, 0x92, 0xff,\n  0x94, 0xff, 0x98, 0xff, 0x99, 0xff, 0x94, 0xff, 0x8f, 0xff, 0x89, 0xff,\n  0x89, 0xff, 0x92, 0xff, 0x9e, 0xff, 0xb3, 0xff, 0xc9, 0xff, 0xe4, 0xff,\n  0xf9, 0xff, 0x03, 0x00, 0x12, 0x00, 0x18, 0x00, 0x21, 0x00, 0x2a, 0x00,\n  0x2e, 0x00, 0x29, 0x00, 0x1f, 0x00, 0x15, 0x00, 0x05, 0x00, 0xfe, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x17, 0x00, 0x21, 0x00,\n  0x28, 0x00, 0x26, 0x00, 0x1b, 0x00, 0x12, 0x00, 0x10, 0x00, 0x12, 0x00,\n  0x1a, 0x00, 0x1c, 0x00, 0x15, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf6, 0xff,\n  0xf0, 0xff, 0xf1, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x08, 0x00, 0x0b, 0x00,\n  0x0a, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xed, 0xff, 0xe8, 0xff,\n  0xe8, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfa, 0xff, 0xf8, 0xff,\n  0xfa, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x10, 0x00, 0x10, 0x00, 0x06, 0x00,\n  0xfe, 0xff, 0xf5, 0xff, 0xed, 0xff, 0xe7, 0xff, 0xdf, 0xff, 0xdc, 0xff,\n  0xe1, 0xff, 0xf0, 0xff, 0x00, 0x00, 0x13, 0x00, 0x28, 0x00, 0x3b, 0x00,\n  0x46, 0x00, 0x4a, 0x00, 0x42, 0x00, 0x37, 0x00, 0x2b, 0x00, 0x17, 0x00,\n  0x00, 0x00, 0xec, 0xff, 0xe5, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdb, 0xff,\n  0xd7, 0xff, 0xd5, 0xff, 0xcf, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xdc, 0xff,\n  0xde, 0xff, 0xe3, 0xff, 0xed, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfb, 0xff,\n  0xfa, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x05, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x16, 0x00, 0x1b, 0x00, 0x23, 0x00,\n  0x24, 0x00, 0x28, 0x00, 0x27, 0x00, 0x20, 0x00, 0x1b, 0x00, 0x1d, 0x00,\n  0x25, 0x00, 0x23, 0x00, 0x1a, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xf2, 0xff,\n  0xe9, 0xff, 0xe0, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe2, 0xff, 0xe9, 0xff,\n  0xf0, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x06, 0x00, 0x0b, 0x00, 0x0b, 0x00,\n  0x0e, 0x00, 0x10, 0x00, 0x0f, 0x00, 0x16, 0x00, 0x1b, 0x00, 0x1e, 0x00,\n  0x27, 0x00, 0x2f, 0x00, 0x36, 0x00, 0x39, 0x00, 0x40, 0x00, 0x41, 0x00,\n  0x3b, 0x00, 0x35, 0x00, 0x2f, 0x00, 0x2a, 0x00, 0x1f, 0x00, 0x13, 0x00,\n  0x0e, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x18, 0x00, 0x1b, 0x00, 0x1e, 0x00,\n  0x21, 0x00, 0x1c, 0x00, 0x13, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0xf9, 0xff,\n  0xf3, 0xff, 0xea, 0xff, 0xe0, 0xff, 0xd2, 0xff, 0xc6, 0xff, 0xbb, 0xff,\n  0xb4, 0xff, 0xb1, 0xff, 0xb8, 0xff, 0xbc, 0xff, 0xc3, 0xff, 0xc4, 0xff,\n  0xc7, 0xff, 0xcc, 0xff, 0xd7, 0xff, 0xe6, 0xff, 0xf5, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xfa, 0xff, 0xf0, 0xff, 0xe8, 0xff,\n  0xe5, 0xff, 0xe3, 0xff, 0xe5, 0xff, 0xe8, 0xff, 0xed, 0xff, 0xed, 0xff,\n  0xf0, 0xff, 0xf3, 0xff, 0xf7, 0xff, 0xfd, 0xff, 0xfa, 0xff, 0xf7, 0xff,\n  0xf0, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf3, 0xff, 0x01, 0x00, 0x0d, 0x00,\n  0x1c, 0x00, 0x25, 0x00, 0x2b, 0x00, 0x30, 0x00, 0x34, 0x00, 0x34, 0x00,\n  0x2b, 0x00, 0x20, 0x00, 0x19, 0x00, 0x12, 0x00, 0x0d, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0f, 0x00, 0x0e, 0x00,\n  0x10, 0x00, 0x11, 0x00, 0x11, 0x00, 0x10, 0x00, 0x13, 0x00, 0x17, 0x00,\n  0x18, 0x00, 0x16, 0x00, 0x16, 0x00, 0x1e, 0x00, 0x21, 0x00, 0x21, 0x00,\n  0x1f, 0x00, 0x24, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x1a, 0x00,\n  0x1e, 0x00, 0x1e, 0x00, 0x1e, 0x00, 0x1e, 0x00, 0x26, 0x00, 0x2e, 0x00,\n  0x37, 0x00, 0x36, 0x00, 0x29, 0x00, 0x1d, 0x00, 0x0f, 0x00, 0x02, 0x00,\n  0xf6, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf7, 0xff, 0xf2, 0xff,\n  0xe8, 0xff, 0xdc, 0xff, 0xd6, 0xff, 0xce, 0xff, 0xce, 0xff, 0xd1, 0xff,\n  0xd5, 0xff, 0xd9, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd4, 0xff, 0xcf, 0xff,\n  0xce, 0xff, 0xce, 0xff, 0xd0, 0xff, 0xd1, 0xff, 0xd3, 0xff, 0xd4, 0xff,\n  0xd7, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd6, 0xff, 0xd2, 0xff, 0xce, 0xff,\n  0xd2, 0xff, 0xd8, 0xff, 0xe0, 0xff, 0xed, 0xff, 0xf7, 0xff, 0x01, 0x00,\n  0x0b, 0x00, 0x1a, 0x00, 0x25, 0x00, 0x36, 0x00, 0x4b, 0x00, 0x5e, 0x00,\n  0x6f, 0x00, 0x77, 0x00, 0x7c, 0x00, 0x80, 0x00, 0x82, 0x00, 0x7a, 0x00,\n  0x6f, 0x00, 0x61, 0x00, 0x55, 0x00, 0x4b, 0x00, 0x45, 0x00, 0x45, 0x00,\n  0x42, 0x00, 0x3c, 0x00, 0x32, 0x00, 0x23, 0x00, 0x0f, 0x00, 0xf7, 0xff,\n  0xdf, 0xff, 0xc9, 0xff, 0xb9, 0xff, 0xad, 0xff, 0xa4, 0xff, 0x9d, 0xff,\n  0x96, 0xff, 0x8f, 0xff, 0x8c, 0xff, 0x8f, 0xff, 0x94, 0xff, 0x9b, 0xff,\n  0xa3, 0xff, 0xad, 0xff, 0xbb, 0xff, 0xd2, 0xff, 0xf3, 0xff, 0x15, 0x00,\n  0x38, 0x00, 0x56, 0x00, 0x71, 0x00, 0x87, 0x00, 0x98, 0x00, 0x99, 0x00,\n  0x8e, 0x00, 0x7d, 0x00, 0x69, 0x00, 0x59, 0x00, 0x47, 0x00, 0x37, 0x00,\n  0x26, 0x00, 0x18, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xe9, 0xff, 0xdc, 0xff,\n  0xd4, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xc4, 0xff, 0xc8, 0xff, 0xc9, 0xff,\n  0xce, 0xff, 0xd9, 0xff, 0xed, 0xff, 0xfd, 0xff, 0x0f, 0x00, 0x21, 0x00,\n  0x2b, 0x00, 0x2f, 0x00, 0x29, 0x00, 0x1e, 0x00, 0x11, 0x00, 0x07, 0x00,\n  0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9, 0xff,\n  0xf1, 0xff, 0xe8, 0xff, 0xd9, 0xff, 0xc7, 0xff, 0xbd, 0xff, 0xb5, 0xff,\n  0xad, 0xff, 0xaf, 0xff, 0xb4, 0xff, 0xbe, 0xff, 0xcf, 0xff, 0xdf, 0xff,\n  0xe5, 0xff, 0xe7, 0xff, 0xed, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00,\n  0x15, 0x00, 0x24, 0x00, 0x2a, 0x00, 0x2f, 0x00, 0x35, 0x00, 0x3a, 0x00,\n  0x41, 0x00, 0x47, 0x00, 0x50, 0x00, 0x4a, 0x00, 0x39, 0x00, 0x24, 0x00,\n  0x0e, 0x00, 0xf9, 0xff, 0xe7, 0xff, 0xd8, 0xff, 0xca, 0xff, 0xba, 0xff,\n  0xa5, 0xff, 0x9b, 0xff, 0x93, 0xff, 0x91, 0xff, 0x96, 0xff, 0x9f, 0xff,\n  0xb1, 0xff, 0xc7, 0xff, 0xe5, 0xff, 0x00, 0x00, 0x1a, 0x00, 0x2e, 0x00,\n  0x3d, 0x00, 0x48, 0x00, 0x56, 0x00, 0x64, 0x00, 0x76, 0x00, 0x8a, 0x00,\n  0x95, 0x00, 0x95, 0x00, 0x8d, 0x00, 0x83, 0x00, 0x70, 0x00, 0x59, 0x00,\n  0x45, 0x00, 0x32, 0x00, 0x27, 0x00, 0x1a, 0x00, 0x08, 0x00, 0xfb, 0xff,\n  0xf0, 0xff, 0xe7, 0xff, 0xe5, 0xff, 0xe8, 0xff, 0xe2, 0xff, 0xd7, 0xff,\n  0xcb, 0xff, 0xbd, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xbe, 0xff, 0xcb, 0xff,\n  0xd4, 0xff, 0xdc, 0xff, 0xe0, 0xff, 0xdf, 0xff, 0xd9, 0xff, 0xd2, 0xff,\n  0xd4, 0xff, 0xdc, 0xff, 0xe5, 0xff, 0xee, 0xff, 0xf6, 0xff, 0x02, 0x00,\n  0x16, 0x00, 0x2d, 0x00, 0x38, 0x00, 0x3c, 0x00, 0x41, 0x00, 0x3e, 0x00,\n  0x3a, 0x00, 0x27, 0x00, 0x26, 0x00, 0x27, 0x00, 0x2a, 0x00, 0x2c, 0x00,\n  0x2d, 0x00, 0x2a, 0x00, 0x22, 0x00, 0x1a, 0x00, 0x11, 0x00, 0x0b, 0x00,\n  0x05, 0x00, 0xff, 0xff, 0xfa, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf7, 0xff,\n  0xf7, 0xff, 0xf3, 0xff, 0xec, 0xff, 0xe2, 0xff, 0xd6, 0xff, 0xcb, 0xff,\n  0xc6, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc1, 0xff, 0xc4, 0xff, 0xc4, 0xff,\n  0xc1, 0xff, 0xc0, 0xff, 0xc4, 0xff, 0xcc, 0xff, 0xd7, 0xff, 0xe0, 0xff,\n  0xec, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x08, 0x00, 0x10, 0x00, 0x1c, 0x00,\n  0x24, 0x00, 0x2f, 0x00, 0x3b, 0x00, 0x47, 0x00, 0x53, 0x00, 0x58, 0x00,\n  0x5f, 0x00, 0x6b, 0x00, 0x78, 0x00, 0x7b, 0x00, 0x73, 0x00, 0x67, 0x00,\n  0x5a, 0x00, 0x47, 0x00, 0x2e, 0x00, 0x12, 0x00, 0xfc, 0xff, 0xe7, 0xff,\n  0xd8, 0xff, 0xc6, 0xff, 0xb8, 0xff, 0xab, 0xff, 0xa2, 0xff, 0x9c, 0xff,\n  0x99, 0xff, 0x9a, 0xff, 0x9e, 0xff, 0xa7, 0xff, 0xab, 0xff, 0xae, 0xff,\n  0xac, 0xff, 0xaa, 0xff, 0xad, 0xff, 0xb5, 0xff, 0xc3, 0xff, 0xd0, 0xff,\n  0xdf, 0xff, 0xef, 0xff, 0x04, 0x00, 0x1c, 0x00, 0x2f, 0x00, 0x45, 0x00,\n  0x5e, 0x00, 0x75, 0x00, 0x86, 0x00, 0x93, 0x00, 0x9c, 0x00, 0x9f, 0x00,\n  0x9b, 0x00, 0x95, 0x00, 0x96, 0x00, 0x91, 0x00, 0x8c, 0x00, 0x84, 0x00,\n  0x79, 0x00, 0x6b, 0x00, 0x55, 0x00, 0x3a, 0x00, 0x1d, 0x00, 0x03, 0x00,\n  0xea, 0xff, 0xd3, 0xff, 0xbd, 0xff, 0xab, 0xff, 0x9c, 0xff, 0x8f, 0xff,\n  0x85, 0xff, 0x82, 0xff, 0x7f, 0xff, 0x80, 0xff, 0x85, 0xff, 0x8f, 0xff,\n  0x9a, 0xff, 0xa4, 0xff, 0xac, 0xff, 0xb3, 0xff, 0xb8, 0xff, 0xba, 0xff,\n  0xc1, 0xff, 0xc5, 0xff, 0xcf, 0xff, 0xde, 0xff, 0xf1, 0xff, 0x03, 0x00,\n  0x11, 0x00, 0x1d, 0x00, 0x27, 0x00, 0x32, 0x00, 0x37, 0x00, 0x38, 0x00,\n  0x3c, 0x00, 0x43, 0x00, 0x48, 0x00, 0x4d, 0x00, 0x4f, 0x00, 0x51, 0x00,\n  0x4d, 0x00, 0x4b, 0x00, 0x49, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x3d, 0x00,\n  0x3c, 0x00, 0x3c, 0x00, 0x37, 0x00, 0x31, 0x00, 0x27, 0x00, 0x1d, 0x00,\n  0x10, 0x00, 0x00, 0x00, 0xef, 0xff, 0xdb, 0xff, 0xcc, 0xff, 0xc1, 0xff,\n  0xb8, 0xff, 0xb7, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xbb, 0xff,\n  0xc5, 0xff, 0xcd, 0xff, 0xd4, 0xff, 0xdb, 0xff, 0xe2, 0xff, 0xee, 0xff,\n  0xfd, 0xff, 0x08, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x02, 0x00,\n  0xfa, 0xff, 0xf1, 0xff, 0xec, 0xff, 0xeb, 0xff, 0xee, 0xff, 0xf4, 0xff,\n  0xfe, 0xff, 0x07, 0x00, 0x14, 0x00, 0x20, 0x00, 0x28, 0x00, 0x2f, 0x00,\n  0x2f, 0x00, 0x2d, 0x00, 0x29, 0x00, 0x26, 0x00, 0x1f, 0x00, 0x18, 0x00,\n  0x12, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xe6, 0xff, 0xda, 0xff,\n  0xd1, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xc4, 0xff, 0xc7, 0xff, 0xca, 0xff,\n  0xd3, 0xff, 0xe1, 0xff, 0xf0, 0xff, 0x01, 0x00, 0x12, 0x00, 0x1e, 0x00,\n  0x22, 0x00, 0x1e, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x04, 0x00,\n  0xfe, 0xff, 0xf8, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xeb, 0xff, 0xe7, 0xff,\n  0xe9, 0xff, 0xeb, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x0e, 0x00,\n  0x1f, 0x00, 0x30, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x39, 0x00, 0x34, 0x00,\n  0x26, 0x00, 0x17, 0x00, 0x05, 0x00, 0xfd, 0xff, 0xf5, 0xff, 0xf3, 0xff,\n  0xf5, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xf7, 0xff, 0xf2, 0xff, 0xea, 0xff,\n  0xe4, 0xff, 0xe2, 0xff, 0xe5, 0xff, 0xee, 0xff, 0xf4, 0xff, 0xfa, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x11, 0x00, 0x19, 0x00, 0x24, 0x00, 0x2d, 0x00, 0x37, 0x00, 0x3d, 0x00,\n  0x41, 0x00, 0x3b, 0x00, 0x2f, 0x00, 0x26, 0x00, 0x1b, 0x00, 0x13, 0x00,\n  0x0d, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0xfd, 0xff, 0xf1, 0xff, 0xe7, 0xff, 0xdc, 0xff, 0xd0, 0xff,\n  0xc5, 0xff, 0xbe, 0xff, 0xba, 0xff, 0xb9, 0xff, 0xbb, 0xff, 0xc3, 0xff,\n  0xcf, 0xff, 0xd9, 0xff, 0xe3, 0xff, 0xec, 0xff, 0xf7, 0xff, 0x01, 0x00,\n  0x09, 0x00, 0x15, 0x00, 0x23, 0x00, 0x34, 0x00, 0x46, 0x00, 0x51, 0x00,\n  0x59, 0x00, 0x5a, 0x00, 0x53, 0x00, 0x48, 0x00, 0x35, 0x00, 0x24, 0x00,\n  0x13, 0x00, 0x05, 0x00, 0xfd, 0xff, 0xf2, 0xff, 0xe9, 0xff, 0xe1, 0xff,\n  0xda, 0xff, 0xd6, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd8, 0xff,\n  0xd7, 0xff, 0xd7, 0xff, 0xd9, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xea, 0xff,\n  0xef, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x03, 0x00,\n  0x0c, 0x00, 0x15, 0x00, 0x20, 0x00, 0x2b, 0x00, 0x36, 0x00, 0x3f, 0x00,\n  0x3f, 0x00, 0x3a, 0x00, 0x36, 0x00, 0x36, 0x00, 0x38, 0x00, 0x35, 0x00,\n  0x2e, 0x00, 0x23, 0x00, 0x12, 0x00, 0x03, 0x00, 0xfc, 0xff, 0xf4, 0xff,\n  0xea, 0xff, 0xe0, 0xff, 0xd4, 0xff, 0xca, 0xff, 0xc2, 0xff, 0xbf, 0xff,\n  0xbd, 0xff, 0xc0, 0xff, 0xc5, 0xff, 0xcb, 0xff, 0xd3, 0xff, 0xd8, 0xff,\n  0xe0, 0xff, 0xe3, 0xff, 0xeb, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x02, 0x00,\n  0x0d, 0x00, 0x14, 0x00, 0x17, 0x00, 0x13, 0x00, 0x12, 0x00, 0x16, 0x00,\n  0x1a, 0x00, 0x1e, 0x00, 0x24, 0x00, 0x28, 0x00, 0x2f, 0x00, 0x35, 0x00,\n  0x36, 0x00, 0x31, 0x00, 0x2b, 0x00, 0x26, 0x00, 0x21, 0x00, 0x1d, 0x00,\n  0x1b, 0x00, 0x18, 0x00, 0x16, 0x00, 0x11, 0x00, 0x15, 0x00, 0x1a, 0x00,\n  0x23, 0x00, 0x2d, 0x00, 0x36, 0x00, 0x3b, 0x00, 0x3a, 0x00, 0x34, 0x00,\n  0x28, 0x00, 0x19, 0x00, 0x0d, 0x00, 0x06, 0x00, 0xff, 0xff, 0xf4, 0xff,\n  0xea, 0xff, 0xdb, 0xff, 0xce, 0xff, 0xbf, 0xff, 0xb8, 0xff, 0xae, 0xff,\n  0xab, 0xff, 0xab, 0xff, 0xab, 0xff, 0xab, 0xff, 0xaa, 0xff, 0xb0, 0xff,\n  0xb9, 0xff, 0xc5, 0xff, 0xd3, 0xff, 0xe0, 0xff, 0xee, 0xff, 0xf8, 0xff,\n  0x00, 0x00, 0x0b, 0x00, 0x1b, 0x00, 0x28, 0x00, 0x32, 0x00, 0x39, 0x00,\n  0x3a, 0x00, 0x38, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x36, 0x00, 0x31, 0x00,\n  0x31, 0x00, 0x34, 0x00, 0x34, 0x00, 0x28, 0x00, 0x1e, 0x00, 0x11, 0x00,\n  0x09, 0x00, 0x00, 0x00, 0xf3, 0xff, 0xe9, 0xff, 0xdd, 0xff, 0xd7, 0xff,\n  0xd6, 0xff, 0xd8, 0xff, 0xdc, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xdc, 0xff,\n  0xdb, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe7, 0xff, 0xf3, 0xff,\n  0x03, 0x00, 0x16, 0x00, 0x25, 0x00, 0x2f, 0x00, 0x37, 0x00, 0x3c, 0x00,\n  0x43, 0x00, 0x4a, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x47, 0x00, 0x3d, 0x00,\n  0x2d, 0x00, 0x1e, 0x00, 0x12, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xef, 0xff,\n  0xe8, 0xff, 0xe2, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xdc, 0xff,\n  0xd8, 0xff, 0xd6, 0xff, 0xd5, 0xff, 0xd9, 0xff, 0xe2, 0xff, 0xed, 0xff,\n  0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf4, 0xff, 0xf3, 0xff, 0xf2, 0xff,\n  0xf1, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xe9, 0xff, 0xe5, 0xff,\n  0xdf, 0xff, 0xd9, 0xff, 0xd5, 0xff, 0xd1, 0xff, 0xd0, 0xff, 0xcf, 0xff,\n  0xd3, 0xff, 0xda, 0xff, 0xe7, 0xff, 0xf5, 0xff, 0x01, 0x00, 0x0d, 0x00,\n  0x15, 0x00, 0x1e, 0x00, 0x2b, 0x00, 0x34, 0x00, 0x36, 0x00, 0x34, 0x00,\n  0x32, 0x00, 0x31, 0x00, 0x33, 0x00, 0x3b, 0x00, 0x47, 0x00, 0x58, 0x00,\n  0x66, 0x00, 0x75, 0x00, 0x81, 0x00, 0x85, 0x00, 0x7e, 0x00, 0x6f, 0x00,\n  0x5c, 0x00, 0x42, 0x00, 0x22, 0x00, 0x08, 0x00, 0xf4, 0xff, 0xde, 0xff,\n  0xcc, 0xff, 0xba, 0xff, 0xae, 0xff, 0xa7, 0xff, 0xa3, 0xff, 0xa7, 0xff,\n  0xae, 0xff, 0xb9, 0xff, 0xc2, 0xff, 0xcc, 0xff, 0xd6, 0xff, 0xde, 0xff,\n  0xe7, 0xff, 0xee, 0xff, 0xf4, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x05, 0x00,\n  0x0d, 0x00, 0x14, 0x00, 0x1a, 0x00, 0x22, 0x00, 0x29, 0x00, 0x29, 0x00,\n  0x26, 0x00, 0x1a, 0x00, 0x0f, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xf3, 0xff,\n  0xed, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe8, 0xff, 0xe6, 0xff, 0xe5, 0xff,\n  0xe5, 0xff, 0xea, 0xff, 0xed, 0xff, 0xed, 0xff, 0xee, 0xff, 0xef, 0xff,\n  0xf3, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf7, 0xff, 0xfa, 0xff, 0x00, 0x00,\n  0x06, 0x00, 0x0f, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1b, 0x00,\n  0x1a, 0x00, 0x18, 0x00, 0x17, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xf9, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xeb, 0xff, 0xe8, 0xff,\n  0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff,\n  0xf5, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x03, 0x00, 0x08, 0x00, 0x08, 0x00,\n  0x09, 0x00, 0x05, 0x00, 0x04, 0x00, 0x08, 0x00, 0x09, 0x00, 0x06, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x07, 0x00, 0x0f, 0x00, 0x14, 0x00, 0x18, 0x00, 0x1e, 0x00, 0x1f, 0x00,\n  0x1d, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x24, 0x00,\n  0x24, 0x00, 0x20, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x00, 0x00,\n  0xf9, 0xff, 0xf3, 0xff, 0xeb, 0xff, 0xe1, 0xff, 0xd6, 0xff, 0xce, 0xff,\n  0xca, 0xff, 0xcb, 0xff, 0xd1, 0xff, 0xd6, 0xff, 0xda, 0xff, 0xe0, 0xff,\n  0xe9, 0xff, 0xf3, 0xff, 0x02, 0x00, 0x10, 0x00, 0x1b, 0x00, 0x1f, 0x00,\n  0x1c, 0x00, 0x1a, 0x00, 0x15, 0x00, 0x0f, 0x00, 0x09, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x09, 0x00, 0x15, 0x00,\n  0x21, 0x00, 0x2b, 0x00, 0x33, 0x00, 0x34, 0x00, 0x32, 0x00, 0x2c, 0x00,\n  0x26, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x16, 0x00, 0x11, 0x00,\n  0x0c, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xef, 0xff, 0xe4, 0xff, 0xdc, 0xff,\n  0xd8, 0xff, 0xd5, 0xff, 0xd6, 0xff, 0xd7, 0xff, 0xd6, 0xff, 0xd2, 0xff,\n  0xcc, 0xff, 0xc8, 0xff, 0xc3, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xc2, 0xff,\n  0xc9, 0xff, 0xd6, 0xff, 0xdf, 0xff, 0xe4, 0xff, 0xeb, 0xff, 0xf0, 0xff,\n  0xf5, 0xff, 0xfc, 0xff, 0x03, 0x00, 0x0c, 0x00, 0x15, 0x00, 0x1c, 0x00,\n  0x22, 0x00, 0x28, 0x00, 0x2d, 0x00, 0x30, 0x00, 0x37, 0x00, 0x3d, 0x00,\n  0x40, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x36, 0x00, 0x2c, 0x00, 0x24, 0x00,\n  0x20, 0x00, 0x20, 0x00, 0x23, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x18, 0x00,\n  0x12, 0x00, 0x14, 0x00, 0x14, 0x00, 0x11, 0x00, 0x13, 0x00, 0x15, 0x00,\n  0x14, 0x00, 0x15, 0x00, 0x0f, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xef, 0xff,\n  0xe3, 0xff, 0xd8, 0xff, 0xd1, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xd7, 0xff,\n  0xdf, 0xff, 0xe5, 0xff, 0xea, 0xff, 0xee, 0xff, 0xf1, 0xff, 0xf8, 0xff,\n  0xfd, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xf8, 0xff, 0xee, 0xff, 0xe5, 0xff,\n  0xe1, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe2, 0xff, 0xe8, 0xff, 0xee, 0xff,\n  0xf3, 0xff, 0xf6, 0xff, 0xf7, 0xff, 0xf8, 0xff, 0xf7, 0xff, 0xfa, 0xff,\n  0xfb, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf7, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0x06, 0x00, 0x15, 0x00, 0x24, 0x00, 0x32, 0x00, 0x37, 0x00, 0x3b, 0x00,\n  0x41, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x35, 0x00, 0x2b, 0x00,\n  0x23, 0x00, 0x1a, 0x00, 0x11, 0x00, 0x09, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfb, 0xff,\n  0xf6, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xde, 0xff,\n  0xdb, 0xff, 0xdc, 0xff, 0xdf, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xe5, 0xff,\n  0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xee, 0xff, 0xf5, 0xff, 0xfd, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfd, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x03, 0x00, 0x09, 0x00, 0x14, 0x00, 0x1f, 0x00, 0x2a, 0x00,\n  0x30, 0x00, 0x34, 0x00, 0x36, 0x00, 0x36, 0x00, 0x34, 0x00, 0x2f, 0x00,\n  0x2c, 0x00, 0x2a, 0x00, 0x23, 0x00, 0x1a, 0x00, 0x14, 0x00, 0x09, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfa, 0xff, 0xf7, 0xff, 0xf2, 0xff, 0xef, 0xff,\n  0xe9, 0xff, 0xe0, 0xff, 0xd9, 0xff, 0xd3, 0xff, 0xd1, 0xff, 0xd4, 0xff,\n  0xdc, 0xff, 0xe6, 0xff, 0xf5, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x14, 0x00,\n  0x1c, 0x00, 0x1e, 0x00, 0x1b, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x22, 0x00,\n  0x24, 0x00, 0x28, 0x00, 0x2e, 0x00, 0x32, 0x00, 0x36, 0x00, 0x31, 0x00,\n  0x2a, 0x00, 0x1f, 0x00, 0x14, 0x00, 0x04, 0x00, 0xf5, 0xff, 0xe6, 0xff,\n  0xda, 0xff, 0xd1, 0xff, 0xcd, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xce, 0xff,\n  0xcd, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xc2, 0xff, 0xc2, 0xff,\n  0xc6, 0xff, 0xcb, 0xff, 0xcf, 0xff, 0xd4, 0xff, 0xd9, 0xff, 0xdc, 0xff,\n  0xe1, 0xff, 0xeb, 0xff, 0xf8, 0xff, 0x03, 0x00, 0x11, 0x00, 0x21, 0x00,\n  0x35, 0x00, 0x47, 0x00, 0x56, 0x00, 0x5e, 0x00, 0x69, 0x00, 0x70, 0x00,\n  0x75, 0x00, 0x77, 0x00, 0x6b, 0x00, 0x5c, 0x00, 0x48, 0x00, 0x38, 0x00,\n  0x22, 0x00, 0x10, 0x00, 0xff, 0xff, 0xed, 0xff, 0xdc, 0xff, 0xd0, 0xff,\n  0xc6, 0xff, 0xbc, 0xff, 0xb5, 0xff, 0xb2, 0xff, 0xb3, 0xff, 0xb5, 0xff,\n  0xbe, 0xff, 0xc5, 0xff, 0xd2, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xf8, 0xff,\n  0xfe, 0xff, 0x05, 0x00, 0x0c, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x17, 0x00,\n  0x19, 0x00, 0x18, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1c, 0x00,\n  0x1b, 0x00, 0x17, 0x00, 0x17, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x22, 0x00,\n  0x1b, 0x00, 0x14, 0x00, 0x0c, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0xfd, 0xff, 0xf3, 0xff, 0xf1, 0xff, 0xef, 0xff, 0xeb, 0xff, 0xe7, 0xff,\n  0xe3, 0xff, 0xdf, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xdc, 0xff, 0xe2, 0xff,\n  0xe6, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x08, 0x00,\n  0x12, 0x00, 0x18, 0x00, 0x18, 0x00, 0x17, 0x00, 0x16, 0x00, 0x13, 0x00,\n  0x0f, 0x00, 0x0e, 0x00, 0x12, 0x00, 0x12, 0x00, 0x14, 0x00, 0x14, 0x00,\n  0x11, 0x00, 0x0c, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfa, 0xff,\n  0xf2, 0xff, 0xe9, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xde, 0xff, 0xdc, 0xff,\n  0xd9, 0xff, 0xd6, 0xff, 0xd5, 0xff, 0xd6, 0xff, 0xda, 0xff, 0xe2, 0xff,\n  0xf0, 0xff, 0xfe, 0xff, 0x16, 0x00, 0x2d, 0x00, 0x3f, 0x00, 0x2b, 0x00,\n  0x31, 0x00, 0x37, 0x00, 0x35, 0x00, 0x30, 0x00, 0x2d, 0x00, 0x28, 0x00,\n  0x23, 0x00, 0x20, 0x00, 0x1a, 0x00, 0x15, 0x00, 0x0e, 0x00, 0x07, 0x00,\n  0x00, 0x00, 0xfa, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xe7, 0xff, 0xe3, 0xff,\n  0xe1, 0xff, 0xdf, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe3, 0xff,\n  0xe6, 0xff, 0xea, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf4, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x03, 0x00, 0x04, 0x00, 0x08, 0x00,\n  0x10, 0x00, 0x14, 0x00, 0x17, 0x00, 0x17, 0x00, 0x15, 0x00, 0x13, 0x00,\n  0x11, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x06, 0x00,\n  0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xe6, 0xff,\n  0xe3, 0xff, 0xe2, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xdf, 0xff, 0xe2, 0xff,\n  0xe6, 0xff, 0xe8, 0xff, 0xec, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00,\n  0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x12, 0x00, 0x1b, 0x00,\n  0x23, 0x00, 0x26, 0x00, 0x27, 0x00, 0x25, 0x00, 0x23, 0x00, 0x1d, 0x00,\n  0x16, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf7, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf3, 0xff, 0xf5, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x03, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xf9, 0xff,\n  0xf3, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf4, 0xff, 0xf6, 0xff, 0xfa, 0xff,\n  0x00, 0x00, 0x08, 0x00, 0x10, 0x00, 0x1c, 0x00, 0x28, 0x00, 0x33, 0x00,\n  0x36, 0x00, 0x37, 0x00, 0x37, 0x00, 0x34, 0x00, 0x2c, 0x00, 0x20, 0x00,\n  0x14, 0x00, 0x09, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xf1, 0xff, 0xec, 0xff,\n  0xe7, 0xff, 0xe2, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xd8, 0xff,\n  0xd6, 0xff, 0xd7, 0xff, 0xd9, 0xff, 0xdd, 0xff, 0xe2, 0xff, 0xe9, 0xff,\n  0xef, 0xff, 0xf6, 0xff, 0xfd, 0xff, 0x02, 0x00, 0x09, 0x00, 0x11, 0x00,\n  0x1b, 0x00, 0x22, 0x00, 0x2a, 0x00, 0x30, 0x00, 0x32, 0x00, 0x2e, 0x00,\n  0x28, 0x00, 0x21, 0x00, 0x1a, 0x00, 0x13, 0x00, 0x0f, 0x00, 0x0a, 0x00,\n  0x07, 0x00, 0x03, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xfd, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf4, 0xff,\n  0xeb, 0xff, 0xe3, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff,\n  0xdb, 0xff, 0xe1, 0xff, 0xe5, 0xff, 0xec, 0xff, 0xf3, 0xff, 0xf8, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0d, 0x00,\n  0x10, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x10, 0x00, 0x15, 0x00, 0x1c, 0x00,\n  0x25, 0x00, 0x2b, 0x00, 0x2a, 0x00, 0x28, 0x00, 0x23, 0x00, 0x21, 0x00,\n  0x1b, 0x00, 0x14, 0x00, 0x0c, 0x00, 0x03, 0x00, 0xff, 0xff, 0xf8, 0xff,\n  0xf3, 0xff, 0xee, 0xff, 0xeb, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe1, 0xff,\n  0xe2, 0xff, 0xe5, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xeb, 0xff,\n  0xef, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfd, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x06, 0x00, 0x07, 0x00,\n  0x06, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x06, 0x00,\n  0x0e, 0x00, 0x15, 0x00, 0x1b, 0x00, 0x21, 0x00, 0x26, 0x00, 0x2b, 0x00,\n  0x2e, 0x00, 0x31, 0x00, 0x35, 0x00, 0x34, 0x00, 0x2e, 0x00, 0x28, 0x00,\n  0x1f, 0x00, 0x17, 0x00, 0x0d, 0x00, 0x06, 0x00, 0x00, 0x00, 0xfd, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xeb, 0xff, 0xe5, 0xff, 0xdf, 0xff,\n  0xdb, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd3, 0xff, 0xd4, 0xff, 0xd5, 0xff,\n  0xd5, 0xff, 0xd6, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xe4, 0xff,\n  0xe7, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf9, 0xff,\n  0x00, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x10, 0x00, 0x13, 0x00, 0x15, 0x00,\n  0x17, 0x00, 0x17, 0x00, 0x17, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0d, 0x00,\n  0x0e, 0x00, 0x11, 0x00, 0x17, 0x00, 0x1e, 0x00, 0x21, 0x00, 0x21, 0x00,\n  0x20, 0x00, 0x1c, 0x00, 0x18, 0x00, 0x15, 0x00, 0x13, 0x00, 0x10, 0x00,\n  0x0a, 0x00, 0x06, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfa, 0xff, 0xf4, 0xff,\n  0xf0, 0xff, 0xed, 0xff, 0xec, 0xff, 0xec, 0xff, 0xec, 0xff, 0xea, 0xff,\n  0xe8, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe8, 0xff, 0xe8, 0xff, 0xea, 0xff,\n  0xeb, 0xff, 0xee, 0xff, 0xee, 0xff, 0xef, 0xff, 0xee, 0xff, 0xec, 0xff,\n  0xee, 0xff, 0xf2, 0xff, 0xf7, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x03, 0x00,\n  0x0a, 0x00, 0x12, 0x00, 0x16, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x23, 0x00,\n  0x2a, 0x00, 0x30, 0x00, 0x36, 0x00, 0x38, 0x00, 0x36, 0x00, 0x30, 0x00,\n  0x29, 0x00, 0x22, 0x00, 0x19, 0x00, 0x0f, 0x00, 0x07, 0x00, 0x00, 0x00,\n  0xf9, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe4, 0xff,\n  0xe3, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe8, 0xff, 0xeb, 0xff,\n  0xef, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x09, 0x00, 0x0c, 0x00,\n  0x0d, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00, 0xfd, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xf0, 0xff,\n  0xf1, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xee, 0xff, 0xee, 0xff, 0xef, 0xff,\n  0xf1, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xfa, 0xff, 0x00, 0x00, 0x07, 0x00,\n  0x0e, 0x00, 0x16, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x25, 0x00, 0x27, 0x00,\n  0x28, 0x00, 0x26, 0x00, 0x24, 0x00, 0x20, 0x00, 0x1b, 0x00, 0x14, 0x00,\n  0x0d, 0x00, 0x06, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xf2, 0xff,\n  0xee, 0xff, 0xe8, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe3, 0xff,\n  0xe5, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xf3, 0xff, 0xfa, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x07, 0x00, 0x06, 0x00, 0x06, 0x00,\n  0x06, 0x00, 0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x07, 0x00, 0x0b, 0x00,\n  0x10, 0x00, 0x12, 0x00, 0x12, 0x00, 0x12, 0x00, 0x12, 0x00, 0x10, 0x00,\n  0x0c, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf6, 0xff,\n  0xf4, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xf3, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x03, 0x00, 0x08, 0x00,\n  0x10, 0x00, 0x16, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1c, 0x00,\n  0x17, 0x00, 0x12, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x05, 0x00, 0x03, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfa, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfa, 0xff, 0xf7, 0xff, 0xf7, 0xff,\n  0xf7, 0xff, 0xf7, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf7, 0xff, 0xf7, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf7, 0xff, 0xfa, 0xff,\n  0xfc, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00,\n  0x03, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfd, 0xff, 0xfa, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff,\n  0xf4, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0c, 0x00,\n  0x0a, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x06, 0x00, 0x06, 0x00,\n  0x06, 0x00, 0x06, 0x00, 0x07, 0x00, 0x06, 0x00, 0x03, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x06, 0x00, 0x07, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00,\n  0x0b, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x06, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xf1, 0xff,\n  0xf5, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xf5, 0xff, 0xf1, 0xff, 0xee, 0xff, 0xec, 0xff, 0xea, 0xff, 0xe9, 0xff,\n  0xeb, 0xff, 0xee, 0xff, 0xf3, 0xff, 0xfa, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x07, 0x00, 0x0c, 0x00, 0x13, 0x00, 0x19, 0x00, 0x1e, 0x00, 0x22, 0x00,\n  0x23, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x19, 0x00,\n  0x19, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x13, 0x00, 0x0f, 0x00, 0x09, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0xf4, 0xff, 0xef, 0xff, 0xed, 0xff, 0xed, 0xff,\n  0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xee, 0xff, 0xec, 0xff, 0xea, 0xff,\n  0xea, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff,\n  0xf0, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfd, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0c, 0x00, 0x10, 0x00,\n  0x15, 0x00, 0x19, 0x00, 0x18, 0x00, 0x15, 0x00, 0x10, 0x00, 0x0c, 0x00,\n  0x0a, 0x00, 0x09, 0x00, 0x07, 0x00, 0x06, 0x00, 0x05, 0x00, 0x03, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf1, 0xff,\n  0xef, 0xff, 0xec, 0xff, 0xeb, 0xff, 0xee, 0xff, 0xf2, 0xff, 0xf6, 0xff,\n  0xfa, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x0d, 0x00,\n  0x0e, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x09, 0x00, 0x08, 0x00, 0x04, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xf7, 0xff, 0xf4, 0xff, 0xf3, 0xff, 0xf5, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0b, 0x00,\n  0x12, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1b, 0x00,\n  0x17, 0x00, 0x15, 0x00, 0x12, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xf1, 0xff, 0xef, 0xff, 0xee, 0xff,\n  0xed, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x03, 0x00,\n  0x06, 0x00, 0x06, 0x00, 0x03, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfa, 0xff,\n  0xf5, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xeb, 0xff, 0xe9, 0xff,\n  0xea, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x08, 0x00, 0x0c, 0x00, 0x10, 0x00, 0x19, 0x00, 0x22, 0x00, 0x29, 0x00,\n  0x2e, 0x00, 0x2e, 0x00, 0x2a, 0x00, 0x24, 0x00, 0x1c, 0x00, 0x17, 0x00,\n  0x14, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0xfb, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xe3, 0xff,\n  0xe1, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe5, 0xff,\n  0xe7, 0xff, 0xeb, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf3, 0xff,\n  0xf7, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0x06, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x06, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x16, 0x00,\n  0x1b, 0x00, 0x1f, 0x00, 0x24, 0x00, 0x27, 0x00, 0x27, 0x00, 0x25, 0x00,\n  0x22, 0x00, 0x1c, 0x00, 0x14, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xff, 0xff,\n  0xf8, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xee, 0xff, 0xee, 0xff, 0xef, 0xff,\n  0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf1, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff,\n  0xed, 0xff, 0xea, 0xff, 0xeb, 0xff, 0xf0, 0xff, 0xf9, 0xff, 0x01, 0x00,\n  0x0a, 0x00, 0x12, 0x00, 0x1b, 0x00, 0x22, 0x00, 0x26, 0x00, 0x27, 0x00,\n  0x25, 0x00, 0x24, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x11, 0x00,\n  0x0a, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfa, 0xff, 0xf6, 0xff, 0xf5, 0xff,\n  0xf4, 0xff, 0xf5, 0xff, 0xf7, 0xff, 0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfa, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf4, 0xff, 0xf2, 0xff, 0xf1, 0xff,\n  0xf2, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0c, 0x00, 0x0f, 0x00, 0x10, 0x00,\n  0x10, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x00, 0x00,\n  0xfa, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xee, 0xff, 0xeb, 0xff, 0xeb, 0xff,\n  0xed, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x06, 0x00,\n  0x0d, 0x00, 0x18, 0x00, 0x23, 0x00, 0x2e, 0x00, 0x37, 0x00, 0x3a, 0x00,\n  0x37, 0x00, 0x33, 0x00, 0x2b, 0x00, 0x23, 0x00, 0x1d, 0x00, 0x13, 0x00,\n  0x0a, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xec, 0xff, 0xe5, 0xff,\n  0xdf, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd8, 0xff,\n  0xda, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xfa, 0xff,\n  0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0x08, 0x00, 0x06, 0x00, 0x03, 0x00,\n  0x04, 0x00, 0x06, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0x0f, 0x00,\n  0x10, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xfa, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf4, 0xff,\n  0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xf6, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfd, 0xff, 0xfa, 0xff,\n  0xf7, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x11, 0x00, 0x14, 0x00, 0x1a, 0x00,\n  0x23, 0x00, 0x2d, 0x00, 0x34, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00,\n  0x09, 0x00, 0x07, 0x00, 0x06, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfa, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfa, 0xff,\n  0xfa, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00,\n  0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x03, 0x00, 0x03, 0x00, 0x02, 0x00,\n  0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfd, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff,\n  0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x06, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x06, 0x00, 0x05, 0x00, 0x03, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff,\n  0xfd, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff,\n  0xfe, 0xff, 0xff, 0xff\n};\n#define  tr808_cl_wav_len 30340\nunsigned char tr808_hh_wav[] = {\n  0x52, 0x49, 0x46, 0x46, 0x68, 0x56, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45,\n  0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00,\n  0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e,\n  0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61,\n  0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61,\n  0x74, 0x61, 0x22, 0x56, 0x00, 0x00, 0xf2, 0xff, 0x17, 0x00, 0xe4, 0xff,\n  0x16, 0x00, 0xda, 0xff, 0x47, 0x00, 0xb4, 0xfe, 0x35, 0xfb, 0x19, 0x01,\n  0xa6, 0x04, 0x1a, 0xff, 0x37, 0xfd, 0x19, 0x03, 0x2d, 0x02, 0xbd, 0xff,\n  0x8f, 0x00, 0xc7, 0x09, 0xd4, 0xf6, 0xea, 0xef, 0xe4, 0x0b, 0x7f, 0x06,\n  0x6f, 0x08, 0x23, 0x03, 0xad, 0xe2, 0xb4, 0xf8, 0x2a, 0x14, 0xc7, 0x04,\n  0xb5, 0x03, 0xf7, 0x0a, 0xfb, 0xf0, 0x78, 0xe8, 0xec, 0x05, 0xfc, 0x0f,\n  0xb0, 0x06, 0xf3, 0xf5, 0x81, 0xf7, 0x8f, 0x0d, 0xe7, 0x0b, 0xe3, 0xef,\n  0xaa, 0xf5, 0xdf, 0x13, 0x15, 0xfb, 0xa7, 0xec, 0x23, 0x06, 0xfc, 0xff,\n  0x7e, 0x01, 0x58, 0x0a, 0x7f, 0x07, 0x17, 0xfd, 0x71, 0xf0, 0xad, 0xfc,\n  0x56, 0x0c, 0xab, 0x02, 0xa8, 0x11, 0xc6, 0x11, 0xc0, 0xc9, 0x9c, 0xe0,\n  0xf0, 0x23, 0xc5, 0x11, 0x7f, 0x04, 0x43, 0x06, 0x48, 0xe2, 0x39, 0xf6,\n  0x34, 0x18, 0x69, 0x17, 0xdf, 0xef, 0x38, 0xdc, 0x47, 0x08, 0x50, 0x12,\n  0x5f, 0x06, 0x9d, 0xfc, 0x9e, 0x10, 0x91, 0xf5, 0xab, 0xdf, 0xb8, 0x06,\n  0xe0, 0x08, 0xdb, 0x04, 0xcf, 0x02, 0xe8, 0x04, 0x64, 0x0a, 0x9f, 0xfc,\n  0x18, 0xf8, 0x0e, 0xf0, 0x39, 0xf6, 0xc4, 0x0b, 0xbe, 0x0a, 0xeb, 0x05,\n  0xe9, 0x08, 0xad, 0xf9, 0xe1, 0xe6, 0x0d, 0x01, 0x31, 0x0d, 0x8b, 0x06,\n  0x7a, 0x00, 0xcc, 0xf5, 0xac, 0xfe, 0x07, 0x05, 0xe6, 0x00, 0x76, 0xfa,\n  0x10, 0xfa, 0x13, 0x06, 0xa3, 0x06, 0xdc, 0x01, 0x9d, 0x02, 0xee, 0xf7,\n  0xad, 0xfa, 0x97, 0x07, 0x6f, 0x09, 0xbf, 0x0f, 0x34, 0xf6, 0x33, 0xd5,\n  0xe5, 0x01, 0x49, 0x14, 0xe8, 0x00, 0xae, 0x01, 0xfb, 0x06, 0x8e, 0x04,\n  0x1c, 0xf3, 0xc9, 0x02, 0x6a, 0x09, 0x3e, 0xf1, 0xac, 0xf8, 0xdf, 0x0c,\n  0x8c, 0x06, 0x8f, 0x1e, 0x3f, 0xe9, 0x99, 0xc9, 0x8f, 0x12, 0x1f, 0x16,\n  0x74, 0x00, 0x61, 0x03, 0x8f, 0x11, 0x31, 0xf7, 0x56, 0xe0, 0x91, 0x00,\n  0x75, 0x11, 0xda, 0x07, 0xd3, 0x05, 0x88, 0xf1, 0x19, 0xf6, 0x0a, 0x07,\n  0x63, 0x07, 0x8b, 0x03, 0xc9, 0xf5, 0x4f, 0xfd, 0x1d, 0xfc, 0xde, 0x06,\n  0xbd, 0x02, 0xc9, 0x14, 0xda, 0x08, 0x19, 0xce, 0x58, 0xf7, 0x91, 0x19,\n  0xae, 0x08, 0x40, 0xfa, 0x76, 0x04, 0x75, 0x17, 0xf8, 0xe4, 0x51, 0xe0,\n  0x7b, 0x1b, 0xb0, 0x0b, 0xe3, 0x00, 0x6e, 0x0d, 0x17, 0xe3, 0xa3, 0xeb,\n  0x7a, 0x18, 0x87, 0x08, 0xbf, 0xfc, 0xe7, 0x0e, 0x96, 0xfa, 0xb2, 0xe2,\n  0xa5, 0xff, 0xd1, 0x12, 0x4e, 0xfe, 0xbf, 0x00, 0xcf, 0xfd, 0xd3, 0x1b,\n  0x3f, 0x0d, 0x55, 0xb8, 0xd5, 0xf8, 0xa7, 0x2a, 0x17, 0x03, 0x8f, 0x07,\n  0xb9, 0x09, 0x5f, 0xdb, 0x80, 0xf6, 0x2d, 0x11, 0xbf, 0x07, 0xa7, 0x02,\n  0x1f, 0x0d, 0xc1, 0xfb, 0x9a, 0xe2, 0x73, 0x00, 0xc9, 0x0d, 0x16, 0x07,\n  0xb9, 0x00, 0x94, 0xf4, 0x0b, 0xfd, 0x38, 0x12, 0xe3, 0x06, 0x92, 0xe6,\n  0x45, 0xfb, 0x3d, 0x0e, 0x55, 0xf9, 0x2f, 0xfc, 0xbc, 0x0a, 0x05, 0x02,\n  0xdd, 0xfc, 0xa3, 0x02, 0x89, 0x00, 0xda, 0xf9, 0xfd, 0x00, 0x1b, 0x03,\n  0x69, 0x01, 0xaf, 0x00, 0xc1, 0xfa, 0x10, 0xfe, 0x67, 0x03, 0x1f, 0x01,\n  0xd1, 0x00, 0x6b, 0x03, 0x5f, 0xfd, 0xc0, 0xf8, 0xbc, 0x00, 0x99, 0x03,\n  0x98, 0xff, 0x3a, 0x00, 0xec, 0x00, 0x93, 0x03, 0xa0, 0x0f, 0x97, 0x07,\n  0xec, 0xd8, 0x60, 0xe9, 0xf4, 0x19, 0x40, 0x0f, 0x27, 0x03, 0xab, 0xf5,\n  0xf1, 0xf8, 0x88, 0x06, 0xf5, 0x03, 0xcf, 0xfc, 0xd5, 0xfb, 0x1c, 0xfb,\n  0x8c, 0x05, 0xcf, 0x05, 0xdb, 0x03, 0x33, 0x1d, 0xe9, 0xdd, 0xb5, 0xdc,\n  0x4f, 0x16, 0xa3, 0x10, 0x35, 0xfc, 0xee, 0x01, 0x86, 0x20, 0x37, 0xdd,\n  0x4c, 0xd9, 0x3b, 0x1e, 0x38, 0x10, 0xb6, 0xf7, 0x51, 0xff, 0xee, 0x05,\n  0x49, 0xfc, 0xce, 0xfb, 0xab, 0x01, 0x6d, 0x02, 0x33, 0x01, 0x2f, 0x02,\n  0xfa, 0xfe, 0x16, 0xfa, 0xd9, 0xfd, 0xfb, 0x03, 0xff, 0x03, 0x53, 0x03,\n  0x84, 0xff, 0xd2, 0xf5, 0x59, 0xf2, 0xd2, 0x0a, 0xa7, 0x07, 0xe4, 0x0c,\n  0xe9, 0x10, 0x80, 0xd2, 0x8f, 0xf0, 0xb9, 0x1e, 0x6a, 0x0f, 0x0e, 0xf1,\n  0xb2, 0xf4, 0x17, 0x06, 0x2d, 0x01, 0x85, 0x02, 0xd7, 0x06, 0x0c, 0x07,\n  0xa2, 0xf1, 0xf9, 0xf4, 0xef, 0x06, 0x36, 0xff, 0xc1, 0x01, 0x66, 0x05,\n  0x2d, 0x03, 0xb0, 0x06, 0x6c, 0xfe, 0x8d, 0xed, 0xf3, 0xfc, 0xc5, 0x09,\n  0x02, 0x0b, 0x47, 0x0c, 0x4a, 0xe4, 0x4a, 0xed, 0x73, 0x13, 0xb6, 0x07,\n  0x26, 0x11, 0x8f, 0xfc, 0x43, 0xde, 0x55, 0x00, 0xe9, 0x0f, 0x69, 0x03,\n  0x91, 0xfe, 0x64, 0x01, 0xa8, 0x1a, 0x18, 0xf3, 0x0c, 0xd1, 0x07, 0x0c,\n  0xeb, 0x16, 0x26, 0xff, 0xf4, 0xfb, 0xc0, 0x0a, 0x83, 0x02, 0xd3, 0xea,\n  0x7d, 0xfd, 0x9c, 0x0c, 0x2b, 0x02, 0x8b, 0xfd, 0xfa, 0x13, 0x38, 0x05,\n  0x84, 0xc7, 0xff, 0x02, 0xc1, 0x21, 0x3f, 0x05, 0x57, 0x0e, 0x62, 0xe1,\n  0x21, 0xec, 0xe5, 0x10, 0x6f, 0x0a, 0x5e, 0xfe, 0xb8, 0x00, 0xff, 0x0c,\n  0xad, 0xf9, 0xc3, 0xe8, 0xf3, 0x04, 0x39, 0x0d, 0xcd, 0x00, 0x16, 0x05,\n  0xf5, 0x0c, 0xcc, 0xea, 0xb8, 0xe4, 0x07, 0x0d, 0x38, 0x0f, 0x21, 0x03,\n  0x0e, 0x13, 0x78, 0xeb, 0xda, 0xe4, 0xa1, 0x0c, 0xfd, 0x0e, 0xed, 0xfc,\n  0x2f, 0x13, 0xaf, 0xfd, 0x3a, 0xd6, 0xf3, 0x05, 0xf5, 0x14, 0xb6, 0x00,\n  0x05, 0xfc, 0xcc, 0x0c, 0x09, 0xff, 0x7b, 0xe7, 0x61, 0x02, 0x04, 0x13,\n  0xff, 0x03, 0x8f, 0xf3, 0xc2, 0xf5, 0xb2, 0x04, 0x7b, 0x05, 0xe4, 0xfe,\n  0x91, 0x02, 0xc6, 0x19, 0x12, 0xeb, 0x5d, 0xdd, 0x3d, 0x10, 0x58, 0x10,\n  0xcb, 0xfd, 0x87, 0xfd, 0xcf, 0x0b, 0xc7, 0x0a, 0x64, 0xe8, 0x55, 0xea,\n  0x7a, 0x0f, 0xe9, 0x0b, 0x5a, 0x06, 0xba, 0xfe, 0x2d, 0xef, 0x08, 0x00,\n  0x2b, 0x04, 0x57, 0xfe, 0x6a, 0x04, 0x47, 0x03, 0x3b, 0x03, 0x66, 0x06,\n  0x0e, 0xf6, 0x91, 0xf1, 0x14, 0x09, 0xaa, 0x15, 0xb7, 0xf0, 0xa3, 0xeb,\n  0xae, 0x08, 0x3f, 0x07, 0x53, 0x02, 0xd8, 0x04, 0x87, 0x0a, 0x37, 0xf2,\n  0x57, 0xee, 0x9c, 0x07, 0x7f, 0x03, 0x7d, 0x02, 0x99, 0x02, 0x29, 0x15,\n  0x5c, 0xf2, 0x42, 0xdd, 0x5d, 0x0e, 0xcd, 0x11, 0xa2, 0xfb, 0xb1, 0x0e,\n  0x08, 0x00, 0x0d, 0xdb, 0x35, 0x03, 0x2e, 0x11, 0x3c, 0x04, 0x58, 0xf8,\n  0xdd, 0x12, 0x30, 0x0b, 0x88, 0xd3, 0x7a, 0xf9, 0x41, 0x17, 0x22, 0x05,\n  0xe5, 0xfa, 0x60, 0x01, 0xc2, 0x06, 0xa7, 0x03, 0x82, 0xf0, 0x84, 0xf9,\n  0x7f, 0x0a, 0xcb, 0x03, 0xa8, 0x01, 0xd3, 0x07, 0x2d, 0xf8, 0x0b, 0xf0,\n  0x83, 0x00, 0x69, 0x08, 0xd8, 0x01, 0x38, 0x09, 0x01, 0x0f, 0x90, 0xe1,\n  0x10, 0xf2, 0x7d, 0x12, 0x93, 0x01, 0x92, 0xfb, 0xf3, 0x04, 0xd1, 0x03,\n  0xa5, 0x03, 0x13, 0x01, 0x01, 0xf5, 0xf1, 0xf8, 0x84, 0x09, 0x75, 0x10,\n  0xf4, 0xee, 0x57, 0xf2, 0xc9, 0x0b, 0x8b, 0x01, 0x17, 0xfc, 0x22, 0x07,\n  0xc2, 0x0c, 0x2b, 0xf6, 0x21, 0xec, 0x46, 0x05, 0xcf, 0x0a, 0x5d, 0x02,\n  0xdd, 0xfc, 0xfb, 0xfd, 0xf3, 0x02, 0xcf, 0x0a, 0x50, 0x00, 0x5e, 0xe6,\n  0xe7, 0xff, 0x75, 0x0c, 0xb6, 0x04, 0xb7, 0x01, 0xfb, 0xf6, 0xd5, 0xfb,\n  0x64, 0x00, 0xdf, 0x07, 0x8f, 0xff, 0x6d, 0x0d, 0xe2, 0x04, 0x49, 0xdf,\n  0x00, 0xff, 0x97, 0x0e, 0x4e, 0xff, 0xaf, 0xfe, 0x2e, 0x04, 0xb3, 0x03,\n  0xcf, 0xff, 0xd3, 0xfc, 0x76, 0xfa, 0x00, 0x04, 0xcf, 0x01, 0xb1, 0xf7,\n  0x58, 0xfe, 0xa7, 0x03, 0x30, 0x04, 0x03, 0x03, 0x50, 0x11, 0x7a, 0xee,\n  0x7e, 0xea, 0xe6, 0x09, 0x4f, 0x08, 0x81, 0xff, 0x72, 0x0b, 0x60, 0x04,\n  0xcb, 0xe5, 0x61, 0xfc, 0xc7, 0x0d, 0x73, 0x04, 0xb2, 0x07, 0xd6, 0xfa,\n  0xe1, 0xef, 0x05, 0x03, 0x20, 0x06, 0x89, 0xff, 0x69, 0xff, 0x6c, 0x01,\n  0xcf, 0x09, 0x10, 0x07, 0xb0, 0xe7, 0xda, 0xf9, 0x5e, 0x0b, 0x1b, 0x02,\n  0x7c, 0x00, 0xbe, 0x08, 0xaa, 0x00, 0xb4, 0xef, 0x9f, 0xfd, 0xb7, 0x04,\n  0x13, 0x03, 0x24, 0x05, 0xa1, 0x0e, 0x51, 0xef, 0xbf, 0xee, 0xf5, 0x09,\n  0x5e, 0x08, 0x8a, 0x05, 0x81, 0xf8, 0x0a, 0xf9, 0x3d, 0x01, 0xb1, 0x03,\n  0xf4, 0xfe, 0x94, 0x10, 0x57, 0xfc, 0x40, 0xe8, 0x11, 0x02, 0xa1, 0x08,\n  0xa1, 0x03, 0xd3, 0xfe, 0xb6, 0x00, 0x15, 0x02, 0xab, 0xff, 0x9d, 0xfa,\n  0xc4, 0x01, 0xd6, 0x01, 0x2f, 0x00, 0xa5, 0xff, 0xd9, 0x0c, 0xac, 0xfa,\n  0xad, 0xe5, 0x78, 0x08, 0xaf, 0x0d, 0x3f, 0xfd, 0xd0, 0x00, 0x72, 0x08,\n  0x03, 0xf5, 0x76, 0xf4, 0x9c, 0x08, 0x17, 0x06, 0xc3, 0xff, 0xca, 0x0f,\n  0xea, 0xf1, 0xb0, 0xe5, 0x25, 0x0e, 0xc2, 0x0c, 0x43, 0xfc, 0x8b, 0x10,\n  0xd3, 0xf7, 0x1d, 0xe4, 0xca, 0x07, 0x4d, 0x0a, 0x23, 0x00, 0xfe, 0xff,\n  0x87, 0x02, 0x5c, 0x09, 0x99, 0xf9, 0x1f, 0xef, 0xbf, 0x05, 0x6a, 0x0f,\n  0xa5, 0x03, 0xa1, 0xeb, 0x07, 0xfc, 0x74, 0x0a, 0x8d, 0xff, 0xa7, 0x07,\n  0xa2, 0xff, 0x43, 0xf4, 0xfc, 0xfe, 0xb3, 0x02, 0xdd, 0x03, 0x7f, 0x01,\n  0xf4, 0x04, 0x72, 0x06, 0xaf, 0xf4, 0x3e, 0xf1, 0xae, 0x06, 0xe1, 0x08,\n  0xcf, 0x05, 0x21, 0xfd, 0x8b, 0xf4, 0xbd, 0x01, 0x0f, 0x06, 0xd5, 0xfd,\n  0x55, 0xfa, 0x0a, 0x04, 0x73, 0x04, 0xe8, 0xfe, 0xed, 0xfe, 0xe1, 0xff,\n  0x0b, 0x00, 0xb0, 0x00, 0x6a, 0x01, 0x40, 0x0a, 0x87, 0xfe, 0x1b, 0xe9,\n  0x8f, 0xfd, 0x6f, 0x0e, 0x86, 0x04, 0x87, 0x06, 0x2d, 0xf9, 0x29, 0xf0,\n  0xf3, 0x05, 0x30, 0x05, 0x61, 0x03, 0xf7, 0x03, 0x38, 0xf7, 0x2a, 0xfa,\n  0xaf, 0x03, 0x7f, 0x04, 0x4b, 0x05, 0x33, 0x07, 0x0a, 0xf1, 0x12, 0xf7,\n  0x0f, 0x06, 0xeb, 0x02, 0x0f, 0x02, 0x80, 0x0f, 0x39, 0xf7, 0xb0, 0xea,\n  0xfb, 0x05, 0x24, 0x07, 0x3f, 0x03, 0xad, 0xfc, 0x77, 0x0c, 0xf6, 0x06,\n  0x1f, 0xdf, 0x79, 0xfd, 0x43, 0x13, 0x79, 0x01, 0x0d, 0xfc, 0x04, 0x0b,\n  0x0e, 0xff, 0xdb, 0xe9, 0xcd, 0x01, 0xa7, 0x0f, 0xef, 0x0a, 0x89, 0xf0,\n  0x6a, 0xf1, 0x5d, 0x08, 0x9a, 0x05, 0x99, 0x01, 0xdf, 0xfd, 0x7f, 0x10,\n  0x61, 0xfc, 0xca, 0xe3, 0xe9, 0x03, 0xa6, 0x0b, 0x43, 0x02, 0x16, 0xfe,\n  0x3d, 0x11, 0x84, 0xf5, 0x07, 0xea, 0x1c, 0x08, 0x44, 0x06, 0x40, 0x00,\n  0xa1, 0x00, 0xcb, 0x02, 0x3b, 0x03, 0xc5, 0xfb, 0x29, 0xf6, 0xef, 0x06,\n  0x91, 0x02, 0x79, 0x0f, 0x4d, 0xfb, 0x52, 0xe1, 0x9f, 0x05, 0x92, 0x0c,\n  0x8a, 0x01, 0x99, 0xff, 0x1f, 0x10, 0x0f, 0xf2, 0xc7, 0xea, 0x1e, 0x0c,\n  0xbd, 0x09, 0x57, 0xfd, 0x37, 0x02, 0x92, 0x09, 0x91, 0xf2, 0x52, 0xf3,\n  0x58, 0x09, 0x5b, 0x07, 0xa3, 0x00, 0x27, 0x08, 0x6e, 0xf3, 0xb1, 0xf0,\n  0x27, 0x0b, 0x5d, 0x0c, 0x4b, 0x06, 0x7a, 0xee, 0x56, 0xf8, 0x54, 0x07,\n  0x57, 0x02, 0xe7, 0x01, 0x1b, 0xff, 0xc7, 0x05, 0xff, 0x0e, 0xb8, 0xe7,\n  0x71, 0xef, 0x26, 0x11, 0x93, 0x06, 0x55, 0xfd, 0x42, 0xfe, 0x2b, 0x10,\n  0x99, 0xfb, 0x77, 0xe1, 0x00, 0x0a, 0x96, 0x0e, 0xde, 0xff, 0x0d, 0x0a,\n  0x71, 0xf0, 0xd4, 0xef, 0x9e, 0x0d, 0x7f, 0x06, 0x81, 0xfd, 0x7d, 0xff,\n  0xc4, 0x0e, 0x70, 0xfb, 0x46, 0xe5, 0x5c, 0x05, 0x44, 0x0d, 0xf2, 0x09,\n  0x45, 0xf8, 0xe1, 0xf2, 0xc5, 0x02, 0xd7, 0x03, 0x3b, 0x02, 0x76, 0x00,\n  0x09, 0x01, 0xdf, 0x04, 0xc5, 0xfc, 0xa9, 0xf5, 0x7f, 0x03, 0x60, 0x05,\n  0xc6, 0xff, 0x95, 0x03, 0xd5, 0x02, 0x5c, 0xf3, 0xd1, 0xf9, 0x6d, 0x0a,\n  0x43, 0x03, 0xee, 0x0d, 0xce, 0xf3, 0x36, 0xeb, 0x8a, 0x08, 0x1a, 0x07,\n  0x41, 0x00, 0x8f, 0x00, 0x8e, 0x00, 0xfe, 0x09, 0xc0, 0xfb, 0xf5, 0xea,\n  0x71, 0x08, 0xcf, 0x09, 0xf9, 0xfc, 0x81, 0xfe, 0x2d, 0x02, 0xd1, 0x00,\n  0x33, 0xfe, 0xa5, 0xfe, 0x1a, 0x00, 0x9f, 0x01, 0x19, 0x01, 0xb1, 0x01,\n  0x96, 0xfe, 0x3d, 0xfd, 0x2d, 0xfc, 0xf4, 0xfe, 0x1f, 0x04, 0xfb, 0x04,\n  0x08, 0x10, 0x33, 0xeb, 0x35, 0xef, 0xdc, 0x0d, 0xd3, 0x03, 0xcf, 0xfe,\n  0x37, 0x01, 0x73, 0x02, 0x9b, 0x00, 0x71, 0xfc, 0x0f, 0xfe, 0x1d, 0x03,\n  0x9a, 0x01, 0x24, 0x08, 0x63, 0x01, 0x55, 0xea, 0x91, 0xfd, 0x80, 0x0e,\n  0x5a, 0x01, 0x55, 0xfa, 0xa9, 0xfe, 0x73, 0x00, 0xb7, 0x07, 0xb7, 0x04,\n  0xf3, 0xf2, 0x49, 0xfd, 0x37, 0x04, 0x02, 0x00, 0x41, 0x02, 0x27, 0x01,\n  0xdf, 0x08, 0x47, 0xff, 0x1a, 0xed, 0x89, 0xff, 0xbf, 0x09, 0xe2, 0x01,\n  0xbb, 0x04, 0x9b, 0xff, 0x81, 0xf4, 0x38, 0x00, 0xcf, 0x04, 0xb3, 0x00,\n  0x45, 0x03, 0xaa, 0xff, 0xf2, 0xf9, 0x70, 0x00, 0x79, 0x02, 0x55, 0x00,\n  0xaa, 0x00, 0x81, 0xff, 0xdd, 0xfc, 0x51, 0xff, 0x4a, 0x09, 0x55, 0xfd,\n  0x29, 0xf8, 0x49, 0x00, 0x36, 0x01, 0xaf, 0x02, 0xf8, 0x00, 0xfb, 0xff,\n  0x13, 0x01, 0xd8, 0x04, 0xbd, 0xff, 0x7f, 0xf5, 0xbb, 0xfd, 0x3d, 0x0a,\n  0xb7, 0xfd, 0xd5, 0xf9, 0x27, 0x01, 0xdf, 0x00, 0x31, 0x02, 0xd5, 0x01,\n  0x2f, 0x06, 0x2b, 0x00, 0xa2, 0xf1, 0x23, 0xff, 0x88, 0x06, 0x7d, 0x02,\n  0x03, 0xfd, 0xc7, 0x04, 0x43, 0x04, 0x07, 0xf4, 0x67, 0xfe, 0x71, 0x03,\n  0x1f, 0x01, 0x58, 0x01, 0xbb, 0x03, 0x9b, 0x03, 0x43, 0xf4, 0x67, 0xfd,\n  0x22, 0x07, 0x81, 0x0a, 0x53, 0xfc, 0x45, 0xef, 0xe1, 0x02, 0x30, 0x05,\n  0xac, 0x00, 0xf2, 0x00, 0x3a, 0x01, 0x8a, 0x05, 0xad, 0xff, 0x71, 0xf2,\n  0xbd, 0xff, 0xcc, 0x07, 0xd3, 0x00, 0xb2, 0xfe, 0x26, 0x0f, 0x29, 0xf5,\n  0x07, 0xed, 0x15, 0x08, 0x63, 0x06, 0x55, 0x00, 0xaa, 0xff, 0x66, 0x01,\n  0x97, 0x03, 0x4f, 0xfd, 0x90, 0xf8, 0x19, 0x03, 0x59, 0x03, 0xcc, 0xff,\n  0x57, 0x02, 0xb7, 0x02, 0x79, 0xf7, 0x89, 0xfc, 0xc7, 0x03, 0x69, 0x03,\n  0xa3, 0xfd, 0x77, 0x08, 0x49, 0x0a, 0xc4, 0xe4, 0xbd, 0xf8, 0x0e, 0x10,\n  0x9d, 0x03, 0xa3, 0x06, 0xae, 0xfa, 0x96, 0xf2, 0x29, 0x03, 0x17, 0x06,\n  0x24, 0x01, 0xf0, 0xfe, 0x97, 0x05, 0xd8, 0x01, 0xa0, 0xf2, 0xf3, 0xfd,\n  0x9d, 0x08, 0x28, 0x01, 0x0b, 0x02, 0xd6, 0x05, 0x20, 0xf6, 0x0f, 0xf3,\n  0xee, 0x08, 0xdb, 0x05, 0x98, 0x06, 0x4b, 0xff, 0xbc, 0xf0, 0x36, 0x01,\n  0x86, 0x04, 0xf3, 0x01, 0xe9, 0xff, 0xf7, 0x08, 0x52, 0xfe, 0xb6, 0xf0,\n  0x81, 0x02, 0x6e, 0x07, 0xed, 0xfe, 0x9b, 0xfc, 0x35, 0x00, 0xd2, 0x01,\n  0x50, 0x00, 0xa7, 0x04, 0x76, 0x07, 0xd8, 0xf0, 0x68, 0xf9, 0x5b, 0x07,\n  0x85, 0x02, 0xfe, 0xff, 0x4a, 0x06, 0x90, 0xff, 0xc7, 0xf4, 0x5e, 0x00,\n  0xce, 0x04, 0x83, 0xff, 0x33, 0xff, 0xec, 0x00, 0x72, 0x08, 0x0f, 0xff,\n  0x01, 0xf2, 0x91, 0x01, 0xaf, 0x05, 0x29, 0xfd, 0x34, 0x01, 0x9c, 0x01,\n  0x3f, 0x05, 0x4c, 0x06, 0xbc, 0xee, 0xf5, 0xf8, 0x32, 0x0c, 0x73, 0x01,\n  0x1b, 0x05, 0x7d, 0x03, 0x41, 0xef, 0x7b, 0xfd, 0x8f, 0x08, 0x5d, 0x02,\n  0x75, 0xfe, 0x8e, 0x01, 0x07, 0x06, 0x51, 0xf7, 0x31, 0xfa, 0x33, 0x05,\n  0xb7, 0x0c, 0x4f, 0xfd, 0x3e, 0xeb, 0x1a, 0x04, 0xb6, 0x0a, 0xa6, 0xfe,\n  0xed, 0x02, 0x4c, 0x06, 0x23, 0xf2, 0xce, 0xf9, 0xfe, 0x07, 0x05, 0x03,\n  0x33, 0x02, 0x13, 0x04, 0x40, 0xf7, 0xd9, 0xfa, 0xdc, 0x04, 0x9f, 0x01,\n  0x0f, 0x02, 0xb8, 0x01, 0xf1, 0xfa, 0x99, 0xfe, 0xa3, 0x02, 0xaa, 0x00,\n  0x5f, 0xfc, 0x64, 0x00, 0xab, 0x02, 0xcf, 0x05, 0x4b, 0x02, 0xf6, 0xf2,\n  0x2e, 0xfe, 0x7e, 0x05, 0x30, 0x01, 0x01, 0x02, 0x3b, 0x04, 0x2d, 0xf9,\n  0x51, 0xf9, 0x9a, 0x04, 0xa7, 0x04, 0xaa, 0x06, 0x59, 0xf8, 0xa9, 0xf8,\n  0x81, 0x02, 0xbd, 0x02, 0x7d, 0x00, 0x48, 0x04, 0x0b, 0x07, 0xe3, 0xf2,\n  0x55, 0xf9, 0x83, 0x06, 0x3b, 0x02, 0x65, 0x03, 0x40, 0x06, 0xb0, 0xf4,\n  0x26, 0xf9, 0xec, 0x05, 0x78, 0x04, 0x85, 0xfe, 0xda, 0x09, 0x25, 0xfb,\n  0x0b, 0xf0, 0xe7, 0x04, 0xc6, 0x06, 0x5f, 0x00, 0x39, 0xfe, 0xfb, 0x05,\n  0x71, 0x00, 0x86, 0xf3, 0xc8, 0x00, 0x2b, 0x07, 0xdd, 0xff, 0x46, 0x01,\n  0x6c, 0x05, 0x19, 0xf8, 0x5e, 0xf7, 0xc3, 0x04, 0xef, 0x04, 0xfd, 0xfe,\n  0xb0, 0x09, 0x3d, 0xfb, 0x56, 0xf1, 0xd3, 0x03, 0xfa, 0x04, 0x6f, 0x01,\n  0x41, 0xff, 0x3f, 0x02, 0x41, 0x03, 0xbb, 0xf7, 0x7c, 0xfe, 0xb7, 0x04,\n  0x36, 0x01, 0xc7, 0xfd, 0x7d, 0x0a, 0xd2, 0xff, 0x67, 0xe8, 0xd6, 0x04,\n  0x9c, 0x0b, 0xfd, 0xfe, 0x1b, 0xfe, 0xd7, 0x06, 0x85, 0xfd, 0x61, 0xf4,\n  0x9b, 0x03, 0x58, 0x06, 0x38, 0x08, 0xb9, 0xf6, 0x96, 0xf5, 0xe2, 0x04,\n  0xe8, 0x04, 0xf3, 0xfe, 0xd5, 0x03, 0xa8, 0x07, 0xd7, 0xf1, 0xb9, 0xf9,\n  0x16, 0x07, 0x2d, 0x03, 0xbc, 0xff, 0x23, 0xff, 0xd0, 0x0a, 0xe0, 0xf9,\n  0x18, 0xef, 0x4f, 0x07, 0x0d, 0x08, 0x93, 0xfd, 0xfd, 0x00, 0x0d, 0x03,\n  0xb9, 0xf9, 0xe9, 0xfc, 0x6c, 0x05, 0x6b, 0xff, 0x0e, 0x06, 0x8b, 0x05,\n  0x56, 0xed, 0x31, 0xfc, 0xd0, 0x09, 0xb8, 0x01, 0xf8, 0x00, 0x4f, 0x07,\n  0xc0, 0xf6, 0x62, 0xf8, 0x9b, 0x04, 0x1d, 0x03, 0xcb, 0x00, 0x99, 0xff,\n  0xbf, 0x05, 0xe6, 0xff, 0xb6, 0xf3, 0x68, 0xff, 0xe3, 0x07, 0x85, 0x00,\n  0xbf, 0x03, 0x3d, 0x00, 0x91, 0xf5, 0x99, 0xff, 0x5e, 0x05, 0xcb, 0x03,\n  0x99, 0xfc, 0x5b, 0xfd, 0xac, 0x01, 0xf0, 0xff, 0x25, 0xfe, 0xab, 0x01,\n  0x24, 0x01, 0x1d, 0x03, 0x5f, 0x05, 0x23, 0xf5, 0xa8, 0xf9, 0x77, 0x06,\n  0xf0, 0x01, 0x4b, 0x04, 0x2b, 0x01, 0xaa, 0xf6, 0x9f, 0xfe, 0x57, 0x04,\n  0xa0, 0x01, 0x1b, 0x04, 0x37, 0xfe, 0xd8, 0xf8, 0x21, 0x01, 0x2d, 0x01,\n  0x9b, 0x00, 0xf7, 0x01, 0x8e, 0x07, 0x6a, 0xf9, 0x59, 0xf7, 0xbb, 0x03,\n  0x4d, 0x02, 0x71, 0x00, 0xcf, 0x01, 0xea, 0x05, 0x8e, 0xf9, 0x24, 0xf9,\n  0xbf, 0x03, 0x70, 0x01, 0xa0, 0xfe, 0x31, 0x02, 0x10, 0x00, 0x36, 0x08,\n  0x1b, 0xfd, 0x9c, 0xf1, 0x27, 0x03, 0xaf, 0x05, 0x09, 0x01, 0x6d, 0xfe,\n  0x96, 0x05, 0x3f, 0x02, 0x92, 0xf3, 0x65, 0xff, 0xe7, 0x06, 0x02, 0xff,\n  0xa9, 0xfe, 0xd8, 0xff, 0x28, 0x01, 0x11, 0x00, 0x23, 0x06, 0xf6, 0xff,\n  0x13, 0xf3, 0x1e, 0x01, 0xc2, 0x08, 0x2a, 0x01, 0xc9, 0xf9, 0x84, 0xff,\n  0x4f, 0x02, 0x96, 0xff, 0xcf, 0xff, 0x6f, 0x03, 0x23, 0x00, 0x18, 0xfb,\n  0x1f, 0x00, 0xdb, 0x01, 0x0b, 0x00, 0xd5, 0xfd, 0x8b, 0x04, 0xa3, 0x02,\n  0xac, 0xf8, 0x1e, 0xff, 0xa9, 0x01, 0xc1, 0x02, 0x45, 0x03, 0xd9, 0xfa,\n  0x8b, 0xfd, 0x6e, 0x00, 0x4b, 0x02, 0x19, 0x00, 0x67, 0x04, 0x43, 0x04,\n  0x6b, 0xf3, 0xbf, 0xfc, 0x17, 0x06, 0x77, 0x02, 0xd2, 0xfe, 0x0f, 0x02,\n  0x6a, 0x05, 0xc3, 0xf7, 0xbd, 0xf8, 0x6f, 0x06, 0x27, 0x03, 0x68, 0x00,\n  0x24, 0x05, 0xf2, 0xf8, 0x89, 0xf9, 0xca, 0x04, 0x98, 0x00, 0xda, 0xff,\n  0xe9, 0x00, 0x43, 0x01, 0xfd, 0xfe, 0xe6, 0x06, 0x49, 0xfe, 0x11, 0xf1,\n  0xdb, 0x04, 0x0b, 0x07, 0x11, 0xff, 0x18, 0x01, 0x8c, 0x00, 0x6f, 0xfc,\n  0x14, 0xff, 0x5f, 0x02, 0x05, 0xff, 0xc6, 0xfe, 0xa7, 0x00, 0x0c, 0x01,\n  0xff, 0xfe, 0xba, 0xfe, 0xb0, 0x00, 0x63, 0x05, 0x1e, 0x01, 0x76, 0xf7,\n  0xe0, 0xff, 0xa5, 0x02, 0x1c, 0x00, 0x55, 0x00, 0x6f, 0x04, 0xf0, 0xff,\n  0xb6, 0xf8, 0x1f, 0x00, 0xdf, 0x02, 0xb9, 0x00, 0x3d, 0x01, 0x29, 0xff,\n  0xe3, 0xfd, 0x88, 0x00, 0xc4, 0x00, 0x9c, 0xff, 0xe6, 0xff, 0x85, 0x01,\n  0xd4, 0xff, 0x51, 0xfe, 0x17, 0x00, 0x97, 0x00, 0x8f, 0x00, 0x9c, 0xff,\n  0xa4, 0xff, 0x42, 0xff, 0x53, 0xff, 0x9a, 0x00, 0x08, 0x06, 0x78, 0xfe,\n  0x81, 0xf8, 0xbc, 0x00, 0x3f, 0x02, 0x3c, 0x01, 0xed, 0xff, 0x6e, 0x00,\n  0x9e, 0x00, 0xbd, 0x03, 0x50, 0xff, 0x38, 0xf7, 0x05, 0x00, 0xcb, 0x04,\n  0x66, 0x01, 0xf9, 0xfe, 0x61, 0xfe, 0x6b, 0x00, 0x88, 0xfe, 0x9a, 0x00,\n  0x36, 0x01, 0x4f, 0x06, 0x54, 0xfe, 0x30, 0xf6, 0xa6, 0x01, 0x83, 0x02,\n  0x6c, 0x01, 0x86, 0xff, 0xbf, 0x03, 0x1f, 0x03, 0x8f, 0xf6, 0x6d, 0xfc,\n  0x72, 0x05, 0x54, 0x01, 0xf3, 0x02, 0x61, 0x01, 0x69, 0xf8, 0x7e, 0xfe,\n  0xc3, 0x02, 0x88, 0x01, 0x55, 0x00, 0xbf, 0x00, 0xc7, 0x05, 0x4c, 0xfa,\n  0x9a, 0xf7, 0x46, 0x04, 0x44, 0x05, 0xa5, 0x03, 0x39, 0xf9, 0x7f, 0xfc,\n  0x49, 0x03, 0x4e, 0x01, 0x15, 0xff, 0x7a, 0x00, 0x7f, 0x00, 0x7f, 0x02,\n  0xdd, 0x00, 0x41, 0xf9, 0x96, 0xff, 0xfd, 0x01, 0xc7, 0x00, 0x95, 0x00,\n  0x2d, 0x01, 0x77, 0x06, 0xdd, 0xf8, 0xe6, 0xf8, 0xdf, 0x03, 0xff, 0x02,\n  0xe4, 0xff, 0x07, 0x02, 0x79, 0x01, 0x4d, 0xf9, 0x02, 0x00, 0xeb, 0x03,\n  0xf7, 0x04, 0x71, 0xfc, 0x39, 0xf8, 0x51, 0x02, 0x31, 0x02, 0x5b, 0x04,\n  0xe6, 0x00, 0x2c, 0xf9, 0x35, 0xff, 0xcd, 0x01, 0x52, 0x01, 0x4a, 0x00,\n  0xa9, 0x01, 0x67, 0x04, 0xfc, 0xf7, 0x03, 0xfc, 0x63, 0x06, 0x6f, 0x03,\n  0xe1, 0xfd, 0x55, 0xfb, 0xfe, 0x00, 0xe1, 0x01, 0x9e, 0x00, 0xe6, 0xff,\n  0x3b, 0xff, 0xb1, 0xff, 0x04, 0x00, 0xee, 0xfe, 0x08, 0x00, 0xb7, 0x01,\n  0xf8, 0x00, 0x3b, 0x04, 0x45, 0xfc, 0x25, 0xf9, 0x8d, 0x02, 0x39, 0x02,\n  0x1d, 0x00, 0x14, 0x00, 0x83, 0x05, 0xcd, 0xfd, 0xc1, 0xf6, 0x89, 0x02,\n  0x89, 0x03, 0xcb, 0x03, 0xc1, 0x00, 0x6d, 0xf8, 0x8c, 0xff, 0x3b, 0x02,\n  0x7f, 0x00, 0xa1, 0x00, 0x86, 0x00, 0x5a, 0x06, 0xf6, 0xfa, 0x49, 0xf8,\n  0xb3, 0x02, 0xd5, 0x02, 0x9e, 0x00, 0xb7, 0xff, 0x53, 0x00, 0x6f, 0x01,\n  0xdc, 0xfe, 0x79, 0xfd, 0x6c, 0x01, 0xeb, 0x00, 0xa2, 0xff, 0x74, 0x00,\n  0xb8, 0x00, 0x48, 0xfe, 0x45, 0xff, 0x76, 0x01, 0xdd, 0x00, 0x3c, 0xff,\n  0x75, 0xfe, 0x65, 0x00, 0xaf, 0x00, 0xa3, 0x01, 0xdb, 0x06, 0x74, 0xf6,\n  0xb1, 0xf8, 0xe7, 0x05, 0xcd, 0x02, 0x89, 0xff, 0x5e, 0x01, 0x82, 0x04,\n  0x11, 0xfa, 0x35, 0xfb, 0x1d, 0x03, 0x01, 0x02, 0x76, 0x01, 0xd6, 0x01,\n  0x05, 0xfc, 0xb1, 0xfd, 0xe4, 0x01, 0x84, 0xff, 0xc2, 0x00, 0xad, 0x00,\n  0xba, 0x05, 0xfb, 0xfc, 0x36, 0xf8, 0x15, 0x02, 0x0b, 0x02, 0x10, 0x01,\n  0x8a, 0xff, 0x12, 0x06, 0x21, 0xfd, 0xa2, 0xf7, 0xd0, 0x01, 0x53, 0x03,\n  0xbf, 0x00, 0x5a, 0xff, 0x45, 0x01, 0xe3, 0x02, 0xe8, 0xfa, 0x0d, 0xfd,\n  0xd9, 0x03, 0xfd, 0x00, 0x75, 0xff, 0x97, 0x02, 0xc9, 0xff, 0x9a, 0xf9,\n  0xe2, 0x00, 0x0b, 0x03, 0xaf, 0x06, 0x3d, 0xfb, 0x79, 0xf7, 0x2f, 0x03,\n  0x21, 0x03, 0x80, 0x00, 0xa1, 0xff, 0x5f, 0x06, 0x6d, 0xfa, 0x41, 0xf8,\n  0x07, 0x05, 0x07, 0x03, 0x14, 0xff, 0x29, 0x00, 0xb7, 0x03, 0xa5, 0xfb,\n  0x11, 0xfc, 0x35, 0x03, 0xd6, 0x01, 0x39, 0xff, 0x9a, 0x05, 0xdd, 0xfd,\n  0x00, 0xf6, 0x87, 0x02, 0x65, 0x03, 0xfb, 0x00, 0xde, 0xfe, 0xe9, 0x03,\n  0x93, 0x02, 0x41, 0xf6, 0x6d, 0xfe, 0xf7, 0x04, 0x8b, 0x01, 0x9d, 0xfe,\n  0xe7, 0x05, 0x19, 0xfd, 0xe2, 0xf7, 0x03, 0x02, 0x5b, 0x03, 0x40, 0x00,\n  0xf1, 0x00, 0x8b, 0x04, 0x99, 0xf9, 0x6e, 0xfb, 0xb1, 0x03, 0x09, 0x02,\n  0x8e, 0x00, 0x47, 0x03, 0x5b, 0xfc, 0x69, 0xfb, 0x53, 0x02, 0x51, 0x01,\n  0x3a, 0x01, 0xac, 0x01, 0xe7, 0xfc, 0x75, 0xfe, 0x95, 0x00, 0x59, 0x00,\n  0x25, 0x01, 0xb3, 0x03, 0xd7, 0xfd, 0x06, 0xfb, 0x97, 0x00, 0x8b, 0x02,\n  0x01, 0x00, 0x13, 0x03, 0xca, 0x01, 0x45, 0xf8, 0x56, 0xff, 0x8d, 0x02,\n  0x71, 0x02, 0x88, 0x01, 0x8d, 0xfc, 0x3c, 0xfe, 0x33, 0x01, 0x9a, 0x00,\n  0xdc, 0x00, 0x96, 0xff, 0xe3, 0xff, 0x96, 0xff, 0x5d, 0x03, 0x0b, 0x03,\n  0x01, 0xf7, 0x4b, 0xfe, 0xe3, 0x04, 0x03, 0x02, 0x2e, 0xfe, 0x91, 0xfe,\n  0xcd, 0x00, 0x3b, 0x00, 0xae, 0xff, 0xe0, 0x00, 0xd6, 0x00, 0x7c, 0xfe,\n  0x66, 0xff, 0x85, 0x00, 0x53, 0x00, 0x11, 0x00, 0x3e, 0x00, 0xa7, 0xff,\n  0xd5, 0xff, 0xc3, 0xff, 0x5a, 0xff, 0xdb, 0xff, 0xbb, 0x02, 0x63, 0x02,\n  0x21, 0xfb, 0x69, 0xfe, 0x3f, 0x02, 0xe9, 0x00, 0x83, 0xff, 0x86, 0xff,\n  0xec, 0xff, 0x38, 0xff, 0x2c, 0x00, 0x15, 0x01, 0x3b, 0x00, 0x24, 0x01,\n  0x99, 0x01, 0x67, 0xfd, 0x1e, 0xfe, 0x16, 0x00, 0x92, 0x00, 0xf0, 0xff,\n  0x25, 0x00, 0xf1, 0x00, 0x2b, 0x02, 0xeb, 0xfe, 0xad, 0xfc, 0xac, 0x00,\n  0x43, 0x01, 0xa7, 0xff, 0x18, 0xff, 0x1e, 0x01, 0x4c, 0x00, 0xb9, 0x03,\n  0x67, 0xfe, 0x19, 0xfa, 0xa0, 0x01, 0xeb, 0x01, 0x3c, 0x01, 0x36, 0xff,\n  0xd5, 0xfe, 0xef, 0xff, 0xfb, 0xff, 0x44, 0x00, 0x99, 0x01, 0xed, 0x01,\n  0xcd, 0xfc, 0xff, 0xfd, 0x8a, 0x01, 0xc5, 0x00, 0x11, 0x00, 0x23, 0xff,\n  0xf5, 0xff, 0xc9, 0x01, 0x79, 0x00, 0x1a, 0xff, 0x9f, 0xfe, 0xa8, 0xff,\n  0xdc, 0x00, 0x4d, 0x00, 0xe4, 0xff, 0xf4, 0xfe, 0x9b, 0xff, 0x43, 0x01,\n  0x83, 0x00, 0x50, 0x00, 0xf6, 0x01, 0x8d, 0xfc, 0x69, 0xfe, 0x4d, 0x02,\n  0xa4, 0x00, 0x59, 0xff, 0xf7, 0x02, 0x31, 0x02, 0xe0, 0xf7, 0x7e, 0xfe,\n  0xfb, 0x03, 0x51, 0x01, 0xfd, 0x00, 0xc6, 0xfe, 0x2d, 0xfe, 0xac, 0x00,\n  0x55, 0x00, 0x17, 0xff, 0x7a, 0x00, 0x73, 0x01, 0xf7, 0x03, 0xe5, 0xfb,\n  0xbd, 0xfb, 0x0f, 0x02, 0xf8, 0x00, 0xad, 0x00, 0xff, 0xff, 0xe7, 0x03,\n  0x15, 0xfe, 0x5d, 0xfa, 0x19, 0x01, 0x9f, 0x03, 0xe9, 0x00, 0x31, 0xfd,\n  0xb4, 0xff, 0xe6, 0x00, 0x95, 0xff, 0x68, 0xff, 0xf5, 0x00, 0xee, 0x00,\n  0x6b, 0x02, 0x3d, 0xfe, 0xf9, 0xfb, 0x34, 0x01, 0x34, 0x01, 0xa3, 0x00,\n  0x76, 0x00, 0xdb, 0xfe, 0x45, 0xff, 0xb3, 0xff, 0xaa, 0x00, 0xc4, 0x00,\n  0xc5, 0x00, 0xf5, 0x02, 0xa7, 0xfc, 0xdd, 0xfb, 0x15, 0x02, 0x8e, 0x01,\n  0x07, 0x01, 0x31, 0x01, 0x61, 0xfd, 0x90, 0xfe, 0x42, 0x01, 0x91, 0x00,\n  0x65, 0x00, 0x22, 0x00, 0x0f, 0xff, 0x4d, 0xff, 0xff, 0xff, 0x0f, 0x02,\n  0xc7, 0x01, 0xa1, 0xfc, 0xdc, 0xfe, 0x8b, 0x01, 0xdb, 0xff, 0xb6, 0xff,\n  0x6e, 0x00, 0xbf, 0x02, 0xd0, 0xfe, 0x99, 0xfc, 0x00, 0x01, 0xc5, 0x00,\n  0xa5, 0xff, 0x4a, 0x00, 0x83, 0x02, 0x47, 0xff, 0xed, 0xfc, 0x6e, 0x00,\n  0x04, 0x01, 0x31, 0x00, 0x9b, 0x00, 0xde, 0xff, 0x06, 0xff, 0x04, 0x00,\n  0x4a, 0x00, 0x20, 0x00, 0x4c, 0x00, 0xc9, 0xff, 0xa5, 0xff, 0x08, 0x00,\n  0x19, 0x00, 0xe0, 0xff, 0xbc, 0xff, 0x4c, 0x00, 0xa9, 0x00, 0x10, 0x01,\n  0x29, 0xff, 0x2d, 0xfe, 0x46, 0x00, 0xfd, 0x00, 0x38, 0x00, 0x72, 0xff,\n  0xff, 0xff, 0xc0, 0xff, 0x47, 0xff, 0x82, 0x00, 0xe6, 0x00, 0x46, 0x00,\n  0xe7, 0x02, 0xcb, 0xfd, 0xf4, 0xfa, 0xca, 0x01, 0x63, 0x02, 0x3b, 0x00,\n  0xd9, 0x02, 0x99, 0xfd, 0xe5, 0xfb, 0xab, 0x01, 0x9b, 0x00, 0x98, 0x00,\n  0xd7, 0xff, 0xe1, 0x02, 0xcb, 0x00, 0x58, 0xfa, 0xad, 0xff, 0xd8, 0x01,\n  0xb6, 0x00, 0x40, 0x00, 0xc9, 0x02, 0x4c, 0xfe, 0x39, 0xfc, 0x21, 0x01,\n  0x01, 0x01, 0x61, 0x00, 0x92, 0xff, 0x8c, 0x00, 0xc8, 0xff, 0xd0, 0x01,\n  0x99, 0x01, 0xc8, 0xfa, 0x54, 0xff, 0x9a, 0x01, 0x73, 0x00, 0x32, 0x00,\n  0x39, 0x03, 0xd3, 0xfe, 0x8d, 0xfb, 0x9d, 0x00, 0xaf, 0x01, 0x70, 0x00,\n  0x92, 0x00, 0xc9, 0x02, 0xa5, 0xfc, 0xe3, 0xfc, 0xbd, 0x01, 0x33, 0x01,\n  0x16, 0x00, 0xd1, 0xff, 0xb8, 0x00, 0x99, 0x02, 0x25, 0xfd, 0xe9, 0xfc,\n  0x46, 0x01, 0xfa, 0x00, 0x34, 0x00, 0xc7, 0x02, 0x4e, 0xff, 0x17, 0xfc,\n  0x14, 0x00, 0x5b, 0x01, 0xa4, 0x00, 0xcf, 0x02, 0xdf, 0xfe, 0xf4, 0xfb,\n  0xaa, 0x00, 0xd4, 0x00, 0x06, 0x01, 0x8a, 0xff, 0x4b, 0x02, 0xb1, 0x01,\n  0x31, 0xfa, 0xd5, 0xfe, 0x87, 0x02, 0x18, 0x01, 0x84, 0xff, 0x0c, 0x01,\n  0xf5, 0x02, 0xb9, 0xfb, 0xe9, 0xfc, 0x0f, 0x02, 0x82, 0x01, 0x73, 0x00,\n  0x7f, 0x01, 0x54, 0xfe, 0x57, 0xfd, 0x15, 0x01, 0xba, 0x01, 0x6f, 0x02,\n  0xf3, 0xfc, 0xc3, 0xfd, 0xfe, 0x00, 0xe3, 0x00, 0x34, 0x00, 0x7c, 0x00,\n  0xd2, 0xff, 0x88, 0x01, 0x58, 0x01, 0x12, 0xfb, 0x4e, 0xff, 0xca, 0x01,\n  0x8c, 0x00, 0x22, 0x00, 0x15, 0x02, 0xed, 0xff, 0x6d, 0xfb, 0xb0, 0x00,\n  0xdb, 0x01, 0xcd, 0x01, 0x64, 0x01, 0x8d, 0xfb, 0x33, 0xff, 0x0c, 0x01,\n  0xf1, 0x00, 0xe4, 0xff, 0xe2, 0x01, 0xd5, 0x01, 0x01, 0xfb, 0xd8, 0xfe,\n  0xb5, 0x01, 0x39, 0x01, 0x9e, 0xff, 0x51, 0x02, 0x53, 0x00, 0x69, 0xfb,\n  0xc5, 0xff, 0xf0, 0x01, 0x70, 0x00, 0x58, 0x01, 0x9b, 0x00, 0xe3, 0xfc,\n  0x75, 0xff, 0xbb, 0x01, 0x3e, 0x00, 0x8a, 0xff, 0x38, 0xff, 0xf6, 0xff,\n  0xa0, 0x00, 0x91, 0x00, 0x7b, 0xff, 0x8e, 0x01, 0xc9, 0x02, 0xa2, 0xfa,\n  0xc3, 0xfd, 0x75, 0x02, 0x0c, 0x01, 0x0a, 0x00, 0xf0, 0xff, 0x35, 0x03,\n  0x4f, 0xfe, 0x45, 0xfb, 0x2e, 0x01, 0xdf, 0x01, 0x61, 0x00, 0x9e, 0xff,\n  0x25, 0x02, 0x84, 0xff, 0x81, 0xfb, 0xab, 0x01, 0x70, 0x01, 0xac, 0x01,\n  0x36, 0x01, 0x1c, 0xfb, 0x33, 0xff, 0xd6, 0x01, 0x8f, 0x00, 0x16, 0x00,\n  0x58, 0x00, 0x49, 0x03, 0x0d, 0xfd, 0x7f, 0xfc, 0x64, 0x01, 0x3c, 0x01,\n  0x1f, 0x00, 0x00, 0x01, 0xf6, 0x01, 0xb1, 0xfc, 0x3f, 0xfe, 0x61, 0x01,\n  0xa1, 0x00, 0xca, 0x00, 0x28, 0x01, 0x2e, 0xfe, 0xc9, 0xfe, 0xeb, 0x00,\n  0x41, 0x00, 0xb4, 0xff, 0x10, 0x01, 0xea, 0xff, 0xd3, 0xfe, 0xfc, 0xff,\n  0xbc, 0xff, 0x77, 0x00, 0x74, 0x00, 0x53, 0x02, 0x03, 0xff, 0xa7, 0xfc,\n  0x9b, 0x00, 0x94, 0x00, 0xbc, 0x00, 0xd7, 0xff, 0xdc, 0x01, 0x10, 0x01,\n  0xd9, 0xfb, 0x38, 0xff, 0x69, 0x01, 0xc1, 0x00, 0x3d, 0x00, 0x0b, 0x00,\n  0x60, 0xff, 0x4f, 0x00, 0x11, 0x00, 0x75, 0x02, 0xd4, 0xff, 0x2d, 0xfb,\n  0x6e, 0x00, 0xe1, 0x01, 0x86, 0x00, 0xce, 0x00, 0xee, 0xfe, 0x99, 0xfe,\n  0xcb, 0x00, 0xdf, 0x01, 0x8a, 0xff, 0x2d, 0xfe, 0x56, 0x00, 0x5f, 0x00,\n  0x32, 0x00, 0xa3, 0x00, 0x5d, 0xff, 0x56, 0xff, 0x19, 0x00, 0xd6, 0x00,\n  0xf5, 0x00, 0xb4, 0xfe, 0x0b, 0xff, 0x33, 0x01, 0x44, 0x00, 0x51, 0xff,\n  0xe3, 0xff, 0xd8, 0xff, 0x05, 0x00, 0xa9, 0x00, 0x8d, 0x01, 0xd6, 0xfe,\n  0x31, 0xfe, 0x97, 0x00, 0x85, 0x00, 0x9a, 0x00, 0xcf, 0xff, 0x5f, 0xff,\n  0xef, 0xff, 0xae, 0xff, 0x4a, 0x00, 0x86, 0x00, 0xd0, 0x01, 0x6f, 0xff,\n  0x25, 0xfd, 0x68, 0x00, 0xbb, 0x00, 0x0b, 0x00, 0xe4, 0xff, 0x9d, 0x01,\n  0x1f, 0x01, 0x71, 0xfc, 0x1b, 0xff, 0x79, 0x01, 0x81, 0x01, 0x6f, 0x01,\n  0x57, 0xfd, 0xd2, 0xfe, 0xd6, 0x00, 0x2e, 0x00, 0x67, 0x00, 0x37, 0x00,\n  0x1c, 0x01, 0x37, 0x00, 0xb1, 0xfd, 0xae, 0xff, 0xfb, 0x00, 0x28, 0x00,\n  0x63, 0xff, 0x0b, 0x00, 0x8c, 0x00, 0x72, 0x01, 0xad, 0xff, 0xc5, 0xfd,\n  0x47, 0x00, 0xe5, 0x00, 0x04, 0x00, 0x96, 0xff, 0xcf, 0xff, 0x1c, 0x00,\n  0xc5, 0x00, 0xdf, 0x00, 0xc7, 0xfe, 0x11, 0xff, 0x85, 0x00, 0x43, 0x00,\n  0x3d, 0x00, 0x13, 0x00, 0xd5, 0xff, 0xb6, 0xff, 0x2e, 0x00, 0x87, 0xff,\n  0xbd, 0xff, 0x4d, 0x00, 0xf1, 0x01, 0x9b, 0x00, 0xb9, 0xfc, 0x8f, 0xff,\n  0xd3, 0x00, 0xca, 0x00, 0xd8, 0xff, 0xcb, 0x00, 0x4b, 0x02, 0xb3, 0xfc,\n  0x9d, 0xfd, 0xdb, 0x01, 0xdd, 0x00, 0x19, 0x00, 0xb3, 0xff, 0xd2, 0x01,\n  0xca, 0x00, 0xd9, 0xfb, 0x96, 0xff, 0xa0, 0x01, 0x92, 0x00, 0xb4, 0xff,\n  0x3f, 0x02, 0x83, 0xff, 0xa7, 0xfc, 0x73, 0x00, 0x4f, 0x01, 0xc7, 0x00,\n  0x48, 0xff, 0x7d, 0xff, 0x0a, 0x00, 0x23, 0x00, 0xe9, 0x00, 0xed, 0xff,\n  0xe5, 0xfe, 0x1a, 0x00, 0xc5, 0xff, 0x26, 0x00, 0x4f, 0x00, 0x0f, 0x01,\n  0x5e, 0x01, 0x4f, 0xfd, 0xb8, 0xfe, 0x12, 0x01, 0x6b, 0x00, 0x94, 0x00,\n  0x13, 0x01, 0x9f, 0xfe, 0xf1, 0xfe, 0xa6, 0x00, 0x47, 0x00, 0x9f, 0xff,\n  0xdb, 0xff, 0x6d, 0x00, 0x21, 0x01, 0x50, 0x00, 0xbd, 0xfd, 0x90, 0xff,\n  0xda, 0x00, 0x4f, 0x01, 0xe0, 0x00, 0xdb, 0xfd, 0x65, 0xff, 0xd6, 0x00,\n  0xce, 0xff, 0xbc, 0xff, 0x8c, 0x00, 0x47, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x25, 0x01, 0xfc, 0xff, 0x5f, 0xfd, 0x98, 0xff, 0x0d, 0x01, 0xce, 0x00,\n  0x7f, 0x01, 0xb2, 0xfe, 0x6a, 0xfe, 0xc5, 0x00, 0x64, 0x00, 0xb4, 0xff,\n  0xc8, 0xff, 0x98, 0x00, 0x67, 0x01, 0xdf, 0xfe, 0x5d, 0xfe, 0x46, 0x00,\n  0xd4, 0x00, 0x59, 0x00, 0xcc, 0x01, 0xb2, 0xfe, 0xcd, 0xfd, 0x94, 0x00,\n  0x9a, 0x00, 0x35, 0x00, 0x24, 0x01, 0x55, 0x00, 0xdf, 0xfd, 0xd8, 0xff,\n  0x92, 0x00, 0x6a, 0x00, 0x94, 0x00, 0x69, 0xff, 0x42, 0xff, 0x2c, 0x00,\n  0x01, 0x01, 0x14, 0x00, 0xba, 0xfe, 0xda, 0xff, 0x6b, 0x00, 0x60, 0x01,\n  0x76, 0x00, 0xef, 0xfd, 0x9f, 0xff, 0x4f, 0x00, 0x4f, 0x00, 0x76, 0x00,\n  0xdc, 0x01, 0x9a, 0xfe, 0x12, 0xfe, 0x88, 0x00, 0x6a, 0x00, 0x31, 0x00,\n  0xd1, 0x00, 0x30, 0x01, 0xe1, 0xfd, 0xac, 0xfe, 0x03, 0x01, 0xbc, 0x00,\n  0x81, 0x01, 0x29, 0xff, 0x09, 0xfe, 0x7c, 0x00, 0x44, 0x00, 0x5c, 0x00,\n  0x43, 0x01, 0x2d, 0xff, 0x84, 0xfe, 0x4f, 0x00, 0x86, 0x00, 0xd7, 0x00,\n  0x30, 0x01, 0x1c, 0xfe, 0xe7, 0xfe, 0xaf, 0x00, 0x3e, 0x00, 0x58, 0x00,\n  0x0d, 0x01, 0x57, 0xff, 0xcf, 0xfe, 0x4c, 0x00, 0x7d, 0x00, 0x26, 0x00,\n  0xb4, 0xff, 0x04, 0x00, 0xef, 0xff, 0xa1, 0xff, 0x1f, 0x00, 0x7f, 0x00,\n  0xfb, 0xff, 0xc8, 0xff, 0x2b, 0x00, 0x34, 0x00, 0xb8, 0x01, 0xdf, 0xfe,\n  0x43, 0xfd, 0xd4, 0x00, 0x03, 0x01, 0x91, 0x00, 0x23, 0x00, 0x1d, 0xff,\n  0xb4, 0xff, 0x4a, 0x00, 0x31, 0x00, 0x38, 0x00, 0xde, 0xff, 0xc0, 0xff,\n  0xe4, 0xff, 0xb4, 0xff, 0x44, 0x00, 0x3d, 0x00, 0x86, 0x00, 0xa3, 0x01,\n  0xe7, 0xfd, 0x66, 0xfe, 0xe8, 0x00, 0x5c, 0x00, 0x48, 0x01, 0xab, 0xff,\n  0xc1, 0xfe, 0xe6, 0xff, 0x3d, 0x00, 0x32, 0x00, 0x40, 0x00, 0xf5, 0xff,\n  0x8b, 0x00, 0xed, 0x01, 0x53, 0xfd, 0x70, 0xfe, 0x03, 0x01, 0x94, 0x00,\n  0x0a, 0x00, 0x33, 0x01, 0x41, 0x00, 0xeb, 0xfd, 0xc2, 0xff, 0x91, 0x00,\n  0xfc, 0xff, 0xe9, 0x00, 0x1e, 0x01, 0x13, 0xfe, 0x0c, 0xff, 0x7d, 0x00,\n  0xbf, 0x00, 0xf9, 0xff, 0xbd, 0x01, 0x59, 0xff, 0x7d, 0xfd, 0x53, 0x00,\n  0xb5, 0x00, 0x7f, 0x00, 0xec, 0xff, 0xbe, 0x01, 0x1a, 0xff, 0x95, 0xfd,\n  0x71, 0x00, 0xfe, 0x00, 0x25, 0x00, 0x0c, 0x01, 0x17, 0x00, 0xe7, 0xfd,\n  0x05, 0x00, 0x79, 0x00, 0x26, 0x00, 0x04, 0x00, 0x84, 0x01, 0xda, 0xff,\n  0xd9, 0xfd, 0x46, 0x00, 0x41, 0x00, 0x1c, 0x00, 0x08, 0x00, 0xf1, 0x00,\n  0x19, 0x01, 0xeb, 0xfd, 0x1d, 0xff, 0x9e, 0x00, 0x2c, 0x00, 0x5f, 0x00,\n  0xff, 0xff, 0x06, 0x01, 0x79, 0x00, 0x9f, 0xfd, 0x78, 0xff, 0x2b, 0x01,\n  0x4d, 0x00, 0xcb, 0x00, 0x14, 0x00, 0x60, 0xfe, 0xe4, 0xff, 0x80, 0x00,\n  0x73, 0x00, 0x23, 0x00, 0x78, 0xff, 0xd8, 0xff, 0x2e, 0x00, 0x58, 0x00,\n  0x01, 0x00, 0xb3, 0xff, 0xea, 0xff, 0x14, 0x00, 0xe7, 0xff, 0xcb, 0xff,\n  0x20, 0x00, 0x3c, 0x01, 0xce, 0xff, 0x87, 0xfe, 0xf2, 0xff, 0x3d, 0x00,\n  0x97, 0x00, 0x27, 0x01, 0xf6, 0xfe, 0x0c, 0xff, 0x23, 0x00, 0x11, 0x00,\n  0x64, 0x00, 0x2e, 0x00, 0x10, 0x00, 0xb1, 0x01, 0xc7, 0xfe, 0xeb, 0xfd,\n  0xd4, 0x00, 0x61, 0x00, 0xff, 0xff, 0x1a, 0x00, 0xb6, 0x00, 0x61, 0x00,\n  0xd3, 0xfe, 0x6f, 0xff, 0x77, 0x00, 0x4a, 0x00, 0x23, 0x00, 0xe6, 0xff,\n  0xd2, 0xff, 0xfb, 0xff, 0x0d, 0x00, 0x08, 0x00, 0x0e, 0x00, 0x02, 0x00,\n  0xf5, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00,\n  0xf0, 0xff, 0x05, 0x00, 0xe4, 0xff, 0x99, 0xff, 0x0d, 0x00, 0x8f, 0x00,\n  0xe1, 0xff, 0x42, 0x01, 0xf2, 0xff, 0x8b, 0xfd, 0x17, 0x00, 0x21, 0x01,\n  0x0b, 0x00, 0xbf, 0x00, 0x88, 0x00, 0x1f, 0xfe, 0x89, 0xff, 0xcb, 0x00,\n  0xc1, 0x00, 0xb0, 0xff, 0x6b, 0xff, 0x05, 0x00, 0xec, 0xff, 0x49, 0x00,\n  0x47, 0x00, 0xff, 0xff, 0x7a, 0xff, 0x49, 0x01, 0xaa, 0x00, 0x8f, 0xfd,\n  0xcb, 0xff, 0x73, 0x00, 0x79, 0x00, 0xf3, 0xff, 0xf5, 0x00, 0xc2, 0x00,\n  0x9f, 0xfd, 0x5d, 0xff, 0x42, 0x01, 0x2f, 0x00, 0x0f, 0x01, 0x04, 0x00,\n  0x16, 0xfe, 0xef, 0xff, 0x8b, 0x00, 0x37, 0x00, 0x9e, 0x00, 0xa6, 0x00,\n  0x9f, 0xfe, 0x8a, 0xff, 0x52, 0x00, 0x17, 0x00, 0xea, 0xff, 0xf7, 0x00,\n  0xa1, 0x00, 0x5b, 0xfe, 0xa2, 0xff, 0x2e, 0x00, 0x4d, 0x00, 0x3b, 0x00,\n  0x1d, 0x00, 0xff, 0xff, 0x4b, 0x01, 0x7a, 0xff, 0xcf, 0xfd, 0x6e, 0x00,\n  0xce, 0x00, 0x5e, 0x00, 0xb3, 0x00, 0x45, 0xff, 0x18, 0xff, 0x50, 0x00,\n  0xed, 0xff, 0x34, 0x00, 0x29, 0x00, 0xe9, 0x00, 0x4c, 0x00, 0x4c, 0xfe,\n  0xb3, 0xff, 0xeb, 0x00, 0x3e, 0x00, 0x95, 0xff, 0xdb, 0xff, 0x00, 0x00,\n  0x16, 0x00, 0x83, 0x00, 0x44, 0x00, 0x4a, 0xff, 0xb9, 0xff, 0x37, 0x00,\n  0x17, 0x00, 0x28, 0x00, 0x10, 0x00, 0xe0, 0xff, 0xe1, 0xff, 0x08, 0x00,\n  0xb3, 0xff, 0x0e, 0x00, 0x38, 0x00, 0xbc, 0x00, 0x7c, 0x00, 0x69, 0xfe,\n  0x5f, 0xff, 0xe8, 0x00, 0x22, 0x00, 0x15, 0x01, 0xfe, 0xff, 0x39, 0xfe,\n  0x34, 0x00, 0x7a, 0x00, 0xdb, 0xff, 0xcc, 0xff, 0x56, 0x00, 0x25, 0x00,\n  0x3e, 0x00, 0xd4, 0xff, 0xab, 0xff, 0x07, 0x00, 0xc1, 0x00, 0xc5, 0x00,\n  0x3c, 0xfe, 0x50, 0xff, 0xc4, 0x00, 0x4f, 0x00, 0x2c, 0x00, 0xf6, 0xff,\n  0xc3, 0xff, 0xf0, 0xff, 0x11, 0x00, 0x05, 0x00, 0x20, 0x00, 0xfc, 0xff,\n  0xd8, 0xff, 0xb9, 0xff, 0x01, 0x00, 0x65, 0x00, 0x01, 0x01, 0x5f, 0xff,\n  0xf6, 0xfe, 0x58, 0x00, 0x43, 0x00, 0xe4, 0xff, 0xde, 0xff, 0x28, 0x00,\n  0x77, 0x00, 0x10, 0x00, 0x5d, 0xff, 0xe1, 0xff, 0x29, 0x00, 0x17, 0x00,\n  0xe4, 0xff, 0xdd, 0xff, 0x38, 0x00, 0x43, 0x00, 0x44, 0x00, 0xa7, 0xff,\n  0xb0, 0xff, 0x07, 0x00, 0xf8, 0xff, 0x1c, 0x00, 0xed, 0xff, 0xda, 0xff,\n  0x29, 0x00, 0x43, 0x00, 0x10, 0x00, 0xd5, 0xff, 0xcf, 0xff, 0x07, 0x00,\n  0x14, 0x00, 0x05, 0x00, 0xec, 0xff, 0xce, 0xff, 0xdd, 0xff, 0x6d, 0x00,\n  0xbe, 0x00, 0x51, 0xff, 0x6b, 0xff, 0x38, 0x00, 0x0b, 0x00, 0x04, 0x00,\n  0x77, 0x00, 0x0a, 0x00, 0x7e, 0xff, 0xed, 0xff, 0x29, 0x00, 0xc0, 0xff,\n  0xe9, 0xff, 0x3d, 0x00, 0x71, 0x00, 0xfb, 0x00, 0xc9, 0xfe, 0x05, 0xff,\n  0x65, 0x00, 0x38, 0x00, 0x44, 0x00, 0xf2, 0xff, 0x22, 0x01, 0xce, 0xff,\n  0x4c, 0xfe, 0x34, 0x00, 0x9e, 0x00, 0x10, 0x00, 0xd8, 0xff, 0x01, 0x00,\n  0x16, 0x00, 0x11, 0x00, 0xde, 0xff, 0xae, 0xff, 0x3e, 0x00, 0xd4, 0x00,\n  0x6e, 0xff, 0x81, 0xff, 0xfc, 0xff, 0x08, 0x00, 0x20, 0x00, 0xfe, 0x00,\n  0xfb, 0xff, 0xbb, 0xfe, 0xd1, 0xff, 0x5b, 0x00, 0x2f, 0x00, 0xe6, 0x00,\n  0x10, 0x00, 0x9f, 0xfe, 0xe0, 0xff, 0x4a, 0x00, 0x5e, 0x00, 0x04, 0x00,\n  0xfd, 0x00, 0xc2, 0xff, 0x79, 0xfe, 0x16, 0x00, 0x7a, 0x00, 0x41, 0x00,\n  0xc5, 0x00, 0x8f, 0xff, 0x0e, 0xff, 0x44, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0x25, 0x00, 0x34, 0x00, 0xe7, 0xff, 0x55, 0x00, 0x3c, 0x01, 0x66, 0xfe,\n  0xe7, 0xfe, 0x97, 0x00, 0x6e, 0x00, 0x14, 0x00, 0xce, 0x00, 0xfc, 0xff,\n  0xb5, 0xfe, 0x01, 0x00, 0x47, 0x00, 0x37, 0x00, 0x7a, 0x00, 0x01, 0x00,\n  0x36, 0xff, 0xda, 0xff, 0x31, 0x00, 0xad, 0x00, 0x4f, 0x00, 0x1d, 0xff,\n  0xc8, 0xff, 0x35, 0x00, 0xef, 0xff, 0x4a, 0x00, 0x76, 0x00, 0x89, 0xff,\n  0xa4, 0xff, 0x07, 0x00, 0xde, 0xff, 0x4c, 0x00, 0xfc, 0xff, 0xb2, 0x00,\n  0x85, 0x00, 0x7b, 0xfe, 0x99, 0xff, 0x98, 0x00, 0x22, 0x00, 0xe0, 0xff,\n  0x0d, 0x00, 0x95, 0x00, 0x7f, 0x00, 0xe1, 0xfe, 0xa1, 0xff, 0x6b, 0x00,\n  0x19, 0x00, 0xcb, 0xff, 0x56, 0x00, 0x56, 0x00, 0x8a, 0xff, 0x92, 0xff,\n  0x1f, 0x00, 0x35, 0x00, 0xb5, 0x00, 0x4d, 0x00, 0xcf, 0xfe, 0xc5, 0xff,\n  0x3d, 0x00, 0x1a, 0x00, 0x4f, 0x00, 0xa3, 0x00, 0x6e, 0xff, 0x62, 0xff,\n  0x2c, 0x00, 0x20, 0x00, 0x28, 0x00, 0x43, 0x00, 0xa8, 0xff, 0x9c, 0xff,\n  0x16, 0x00, 0xb0, 0x00, 0x8f, 0x00, 0xf7, 0xfe, 0xa8, 0xff, 0x56, 0x00,\n  0xc9, 0xff, 0x19, 0x00, 0x28, 0x00, 0xa0, 0x00, 0x73, 0x00, 0xb2, 0xfe,\n  0xa2, 0xff, 0x3b, 0x00, 0x58, 0x00, 0x04, 0x00, 0x7a, 0x00, 0x9d, 0x00,\n  0xb4, 0xfe, 0x69, 0xff, 0x77, 0x00, 0x50, 0x00, 0x10, 0x00, 0xf7, 0x00,\n  0x72, 0xff, 0xdc, 0xfe, 0x56, 0x00, 0x44, 0x00, 0x07, 0x00, 0x02, 0x00,\n  0x31, 0x00, 0x07, 0x00, 0xd8, 0xff, 0xd2, 0xff, 0xf3, 0xff, 0xd8, 0xff,\n  0x8f, 0x00, 0x5b, 0x00, 0x51, 0xff, 0xc3, 0xff, 0xde, 0xff, 0x4a, 0x00,\n  0x23, 0x00, 0x2e, 0x00, 0xfa, 0x00, 0xe5, 0xfe, 0xe2, 0xfe, 0x9d, 0x00,\n  0x70, 0x00, 0xfc, 0xff, 0x07, 0x00, 0x13, 0x00, 0xea, 0xff, 0xed, 0xff,\n  0x01, 0x00, 0x19, 0x00, 0x4a, 0x00, 0x1c, 0x00, 0x65, 0xff, 0xaa, 0xff,\n  0x41, 0x00, 0x3b, 0x00, 0xf3, 0xff, 0xea, 0xff, 0xf8, 0xff, 0x05, 0x00,\n  0xe1, 0xff, 0xf0, 0xff, 0x22, 0x00, 0x8b, 0x00, 0x2f, 0x00, 0x33, 0xff,\n  0xd1, 0xff, 0x31, 0x00, 0x19, 0x00, 0x38, 0x00, 0x02, 0x00, 0xc2, 0xff,\n  0xf3, 0xff, 0x10, 0x00, 0xec, 0xff, 0xdb, 0xff, 0x11, 0x00, 0xb0, 0x00,\n  0xe3, 0xff, 0x4a, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x3a, 0x00, 0x00, 0x00,\n  0x8c, 0x00, 0x7d, 0x00, 0xcd, 0xfe, 0x93, 0xff, 0x55, 0x00, 0x23, 0x00,\n  0x2e, 0x00, 0xfc, 0xff, 0x95, 0x00, 0x32, 0x00, 0xdc, 0xfe, 0xcb, 0xff,\n  0x3d, 0x00, 0x16, 0x00, 0x52, 0x00, 0xb3, 0x00, 0x4d, 0xff, 0x78, 0xff,\n  0x3d, 0x00, 0xf8, 0xff, 0xe9, 0xff, 0x41, 0x00, 0xfc, 0xff, 0x95, 0x00,\n  0x5b, 0x00, 0xb8, 0xfe, 0xc8, 0xff, 0x77, 0x00, 0x37, 0x00, 0xbd, 0xff,\n  0xf5, 0xff, 0x44, 0x00, 0xa3, 0x00, 0x9f, 0xff, 0x45, 0xff, 0x2b, 0x00,\n  0x1a, 0x00, 0x1f, 0x00, 0x3e, 0x00, 0xed, 0xff, 0xbc, 0xff, 0x07, 0x00,\n  0xf0, 0xff, 0xd7, 0xff, 0x28, 0x00, 0x35, 0x00, 0xa1, 0x00, 0x9e, 0xff,\n  0x36, 0xff, 0x0b, 0x00, 0x26, 0x00, 0x3b, 0x00, 0x0b, 0x00, 0xca, 0x00,\n  0xa1, 0xff, 0x09, 0xff, 0x28, 0x00, 0x28, 0x00, 0x14, 0x00, 0x5f, 0x00,\n  0x19, 0x00, 0x7b, 0xff, 0xf5, 0xff, 0xff, 0xff, 0xf5, 0xff, 0x07, 0x00,\n  0x9a, 0x00, 0x31, 0x00, 0x2d, 0xff, 0xea, 0xff, 0x35, 0x00, 0x0b, 0x00,\n  0x05, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xfe, 0xff, 0xf0, 0xff, 0xde, 0xff,\n  0x0d, 0x00, 0x3d, 0x00, 0x7c, 0x00, 0x89, 0xff, 0x92, 0xff, 0x04, 0x00,\n  0x02, 0x00, 0x20, 0x00, 0x4d, 0x00, 0xa4, 0x00, 0x48, 0xff, 0x69, 0xff,\n  0x14, 0x00, 0x31, 0x00, 0x3b, 0x00, 0xaa, 0x00, 0x93, 0xff, 0x32, 0xff,\n  0x19, 0x00, 0x4c, 0x00, 0x16, 0x00, 0x7d, 0x00, 0x28, 0x00, 0x15, 0xff,\n  0xda, 0xff, 0x3a, 0x00, 0x23, 0x00, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00,\n  0xf5, 0xff, 0xb0, 0xff, 0x08, 0x00, 0xea, 0xff, 0xe6, 0xff, 0x2f, 0x00,\n  0x22, 0x00, 0xda, 0xff, 0xe4, 0xff, 0x01, 0x00, 0x2f, 0x00, 0x01, 0x00,\n  0xe1, 0xff, 0x07, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x0b, 0x00, 0x05, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xe3, 0xff, 0xec, 0xff, 0x14, 0x00, 0x64, 0x00,\n  0x34, 0x00, 0x6c, 0xff, 0xdb, 0xff, 0x0a, 0x00, 0xf0, 0xff, 0x11, 0x00,\n  0x49, 0x00, 0x91, 0x00, 0x72, 0xff, 0x50, 0xff, 0x2f, 0x00, 0x46, 0x00,\n  0x7c, 0x00, 0x11, 0x00, 0x50, 0xff, 0xde, 0xff, 0x26, 0x00, 0x19, 0x00,\n  0x04, 0x00, 0x32, 0x00, 0x8e, 0x00, 0x69, 0xff, 0x71, 0xff, 0x37, 0x00,\n  0x17, 0x00, 0x1f, 0x00, 0x3e, 0x00, 0xe3, 0xff, 0xc2, 0xff, 0x04, 0x00,\n  0x02, 0x00, 0x0d, 0x00, 0x13, 0x00, 0xfc, 0xff, 0xef, 0xff, 0xff, 0xff,\n  0xf8, 0xff, 0xf5, 0xff, 0x32, 0x00, 0xfe, 0xff, 0xd5, 0xff, 0x0d, 0x00,\n  0x0d, 0x00, 0xf6, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf9, 0xff,\n  0xe6, 0xff, 0xf8, 0xff, 0x2e, 0x00, 0x56, 0x00, 0xd1, 0xff, 0xa8, 0xff,\n  0x05, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x1f, 0x00, 0xf8, 0xff, 0xe0, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xea, 0xff, 0xf3, 0xff, 0x61, 0x00, 0x3e, 0x00,\n  0x83, 0xff, 0xde, 0xff, 0x0e, 0x00, 0xec, 0xff, 0x07, 0x00, 0x43, 0x00,\n  0x85, 0x00, 0x87, 0xff, 0x89, 0xff, 0x1c, 0x00, 0xfc, 0xff, 0x65, 0x00,\n  0x25, 0x00, 0x9c, 0xff, 0xef, 0xff, 0x10, 0x00, 0xe9, 0xff, 0x00, 0x00,\n  0x22, 0x00, 0x5c, 0x00, 0x13, 0x00, 0x74, 0xff, 0xe6, 0xff, 0x1d, 0x00,\n  0x22, 0x00, 0x29, 0x00, 0xdd, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xf2, 0xff,\n  0x1a, 0x00, 0x89, 0x00, 0xdb, 0xff, 0x7a, 0xff, 0xf8, 0xff, 0x08, 0x00,\n  0x3b, 0x00, 0x52, 0x00, 0xd7, 0xff, 0x9c, 0xff, 0x01, 0x00, 0x1d, 0x00,\n  0x1c, 0x00, 0xf0, 0xff, 0xf2, 0xff, 0x28, 0x00, 0x07, 0x00, 0x14, 0x00,\n  0xf9, 0xff, 0x9e, 0xff, 0xe1, 0xff, 0x11, 0x00, 0x6b, 0x00, 0x5b, 0x00,\n  0x7a, 0xff, 0xb6, 0xff, 0x00, 0x00, 0x1d, 0x00, 0x37, 0x00, 0x86, 0x00,\n  0x96, 0xff, 0x83, 0xff, 0x10, 0x00, 0x0e, 0x00, 0x19, 0x00, 0x64, 0x00,\n  0x23, 0x00, 0x6f, 0xff, 0xe6, 0xff, 0x19, 0x00, 0x0e, 0x00, 0x31, 0x00,\n  0x11, 0x00, 0xc6, 0xff, 0xf3, 0xff, 0x04, 0x00, 0x02, 0x00, 0xe9, 0xff,\n  0x2c, 0x00, 0x52, 0x00, 0xa7, 0xff, 0xe4, 0xff, 0x08, 0x00, 0xe1, 0xff,\n  0x05, 0x00, 0x1c, 0x00, 0x14, 0x00, 0x20, 0x00, 0x38, 0x00, 0xad, 0xff,\n  0xab, 0xff, 0x19, 0x00, 0x46, 0x00, 0x35, 0x00, 0x9b, 0xff, 0xd8, 0xff,\n  0xfc, 0xff, 0x0a, 0x00, 0x16, 0x00, 0x59, 0x00, 0x2e, 0x00, 0x6e, 0xff,\n  0xd4, 0xff, 0x0b, 0x00, 0x11, 0x00, 0x2b, 0x00, 0x80, 0x00, 0xb3, 0xff,\n  0x7b, 0xff, 0x25, 0x00, 0x32, 0x00, 0x0d, 0x00, 0xe6, 0xff, 0xf5, 0xff,\n  0x13, 0x00, 0x04, 0x00, 0xf2, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x05, 0x00,\n  0x14, 0x00, 0x00, 0x00, 0xea, 0xff, 0x01, 0x00, 0xff, 0xff, 0x05, 0x00,\n  0x07, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xda, 0xff, 0xff, 0xff, 0x31, 0x00,\n  0x7c, 0x00, 0xae, 0xff, 0x9c, 0xff, 0x04, 0x00, 0xf3, 0xff, 0x1c, 0x00,\n  0x1f, 0x00, 0x0a, 0x00, 0x70, 0x00, 0xd4, 0xff, 0x45, 0xff, 0x1a, 0x00,\n  0x49, 0x00, 0x10, 0x00, 0x62, 0x00, 0xe4, 0xff, 0x71, 0xff, 0xff, 0xff,\n  0x3d, 0x00, 0x2b, 0x00, 0xd8, 0xff, 0xea, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0x19, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0xff, 0xff, 0x3d, 0x00, 0x13, 0x00,\n  0x77, 0xff, 0xec, 0xff, 0x26, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0xe4, 0xff, 0x05, 0x00, 0x31, 0x00, 0xea, 0xff, 0xde, 0xff, 0x0b, 0x00,\n  0xe0, 0xff, 0xfc, 0xff, 0x1d, 0x00, 0x68, 0x00, 0x0b, 0x00, 0x6e, 0xff,\n  0xf0, 0xff, 0x0d, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x17, 0x00, 0x6d, 0x00,\n  0xa5, 0xff, 0x9f, 0xff, 0x0e, 0x00, 0xea, 0xff, 0x1d, 0x00, 0x25, 0x00,\n  0x05, 0x00, 0x7f, 0x00, 0xc2, 0xff, 0x3c, 0xff, 0x2c, 0x00, 0x4c, 0x00,\n  0xfc, 0xff, 0x4f, 0x00, 0x34, 0x00, 0x4b, 0xff, 0xce, 0xff, 0x40, 0x00,\n  0x1f, 0x00, 0x47, 0x00, 0x05, 0x00, 0x8d, 0xff, 0xde, 0xff, 0x14, 0x00,\n  0x29, 0x00, 0xfc, 0xff, 0x3e, 0x00, 0x64, 0x00, 0x56, 0xff, 0xba, 0xff,\n  0x1f, 0x00, 0x22, 0x00, 0x34, 0x00, 0xe9, 0xff, 0xe6, 0xff, 0x04, 0x00,\n  0x02, 0x00, 0xf2, 0xff, 0xf9, 0xff, 0x0a, 0x00, 0x35, 0x00, 0x10, 0x00,\n  0xc5, 0xff, 0xea, 0xff, 0x0b, 0x00, 0x05, 0x00, 0x0e, 0x00, 0x07, 0x00,\n  0xf2, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x08, 0x00, 0xfb, 0xff,\n  0x04, 0x00, 0xf6, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0x19, 0x00, 0x0e, 0x00,\n  0x2c, 0x00, 0x37, 0x00, 0x92, 0xff, 0xba, 0xff, 0x2b, 0x00, 0x4c, 0x00,\n  0xf2, 0xff, 0xb1, 0xff, 0xfc, 0xff, 0x16, 0x00, 0x43, 0x00, 0x40, 0x00,\n  0x98, 0xff, 0xb7, 0xff, 0x1a, 0x00, 0x26, 0x00, 0x2c, 0x00, 0x14, 0x00,\n  0xbc, 0xff, 0xfc, 0xff, 0x2c, 0x00, 0xd8, 0xff, 0xf2, 0xff, 0x0a, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf2, 0xff,\n  0xfb, 0xff, 0x35, 0x00, 0xf3, 0xff, 0xe1, 0xff, 0x0e, 0x00, 0xd8, 0xff,\n  0xf3, 0xff, 0x1a, 0x00, 0x16, 0x00, 0xfc, 0xff, 0x4c, 0x00, 0xf3, 0xff,\n  0x77, 0xff, 0x02, 0x00, 0x3e, 0x00, 0xf9, 0xff, 0x70, 0x00, 0x08, 0x00,\n  0x3c, 0xff, 0xf8, 0xff, 0x47, 0x00, 0x2c, 0x00, 0xf8, 0xff, 0xe0, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x01, 0x00, 0x4f, 0x00, 0x16, 0x00,\n  0x96, 0xff, 0xf8, 0xff, 0x26, 0x00, 0x02, 0x00, 0xf0, 0xff, 0xf5, 0xff,\n  0xfe, 0xff, 0x32, 0x00, 0x04, 0x00, 0xd2, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x07, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0x07, 0x00,\n  0x1c, 0x00, 0xff, 0xff, 0xe6, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0xf8, 0xff, 0xfe, 0xff, 0xea, 0xff, 0x20, 0x00, 0x20, 0x00,\n  0xdd, 0xff, 0xdb, 0xff, 0xf6, 0xff, 0x0d, 0x00, 0x37, 0x00, 0x4a, 0x00,\n  0x9f, 0xff, 0xc8, 0xff, 0x05, 0x00, 0x07, 0x00, 0x16, 0x00, 0x4a, 0x00,\n  0xf5, 0xff, 0xae, 0xff, 0x07, 0x00, 0xef, 0xff, 0xff, 0xff, 0x11, 0x00,\n  0x17, 0x00, 0xf2, 0xff, 0x59, 0x00, 0x25, 0x00, 0x62, 0xff, 0xd8, 0xff,\n  0x17, 0x00, 0x2f, 0x00, 0x02, 0x00, 0x6a, 0x00, 0xea, 0xff, 0x71, 0xff,\n  0xf6, 0xff, 0x2f, 0x00, 0x17, 0x00, 0x2b, 0x00, 0x4f, 0x00, 0x92, 0xff,\n  0xb4, 0xff, 0x1f, 0x00, 0x13, 0x00, 0x2e, 0x00, 0x32, 0x00, 0xc0, 0xff,\n  0xce, 0xff, 0x10, 0x00, 0x02, 0x00, 0x11, 0x00, 0x2b, 0x00, 0xe9, 0xff,\n  0xe3, 0xff, 0x02, 0x00, 0x08, 0x00, 0x05, 0x00, 0xf8, 0xff, 0x01, 0x00,\n  0xec, 0xff, 0xf0, 0xff, 0x11, 0x00, 0x1c, 0x00, 0x4f, 0x00, 0xd8, 0xff,\n  0xa5, 0xff, 0x16, 0x00, 0x11, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x07, 0x00,\n  0x14, 0x00, 0x08, 0x00, 0xf0, 0xff, 0xe7, 0xff, 0xf6, 0xff, 0x1f, 0x00,\n  0x3b, 0x00, 0xda, 0xff, 0xd7, 0xff, 0x07, 0x00, 0xf0, 0xff, 0xfc, 0xff,\n  0x1f, 0x00, 0x58, 0x00, 0xd8, 0xff, 0xad, 0xff, 0xff, 0xff, 0x35, 0x00,\n  0x11, 0x00, 0xd7, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x1d, 0x00,\n  0x23, 0x00, 0xe0, 0xff, 0xda, 0xff, 0xfb, 0xff, 0x1a, 0x00, 0x38, 0x00,\n  0xe0, 0xff, 0xda, 0xff, 0x04, 0x00, 0xf9, 0xff, 0x02, 0x00, 0x2b, 0x00,\n  0x08, 0x00, 0xd8, 0xff, 0xf6, 0xff, 0x08, 0x00, 0x05, 0x00, 0xfe, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0x0b, 0x00, 0x1a, 0x00, 0xf6, 0xff, 0xea, 0xff,\n  0xf8, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0x35, 0x00, 0x29, 0x00, 0xbd, 0xff,\n  0xe7, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x1d, 0x00, 0x53, 0x00, 0xe0, 0xff,\n  0xb3, 0xff, 0x04, 0x00, 0xfb, 0xff, 0x0b, 0x00, 0x11, 0x00, 0x14, 0x00,\n  0x43, 0x00, 0xcc, 0xff, 0xb1, 0xff, 0x10, 0x00, 0x07, 0x00, 0x0b, 0x00,\n  0x19, 0x00, 0xfb, 0xff, 0xe7, 0xff, 0x05, 0x00, 0x05, 0x00, 0xe6, 0xff,\n  0xf6, 0xff, 0x1c, 0x00, 0x05, 0x00, 0x47, 0x00, 0x04, 0x00, 0x95, 0xff,\n  0xfe, 0xff, 0xf9, 0xff, 0x0a, 0x00, 0x14, 0x00, 0x2f, 0x00, 0x32, 0x00,\n  0x92, 0xff, 0xcc, 0xff, 0x25, 0x00, 0x2b, 0x00, 0x46, 0x00, 0xc0, 0xff,\n  0xb9, 0xff, 0x05, 0x00, 0x17, 0x00, 0x0b, 0x00, 0x40, 0x00, 0x02, 0x00,\n  0xa2, 0xff, 0xf3, 0xff, 0x0e, 0x00, 0x14, 0x00, 0x11, 0x00, 0xf0, 0xff,\n  0x01, 0x00, 0x1d, 0x00, 0xde, 0xff, 0xe7, 0xff, 0x1d, 0x00, 0x01, 0x00,\n  0xf2, 0xff, 0xff, 0xff, 0x00, 0x00, 0xe6, 0xff, 0x0d, 0x00, 0x0a, 0x00,\n  0x41, 0x00, 0x13, 0x00, 0x9f, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0x08, 0x00,\n  0x13, 0x00, 0x41, 0x00, 0x04, 0x00, 0xab, 0xff, 0xef, 0xff, 0x07, 0x00,\n  0x0a, 0x00, 0x28, 0x00, 0x07, 0x00, 0xcb, 0xff, 0xf9, 0xff, 0xf0, 0xff,\n  0xfe, 0xff, 0x10, 0x00, 0x28, 0x00, 0x2f, 0x00, 0xaa, 0xff, 0xc3, 0xff,\n  0x19, 0x00, 0x23, 0x00, 0x41, 0x00, 0xce, 0xff, 0xce, 0xff, 0xf8, 0xff,\n  0xfb, 0xff, 0x13, 0x00, 0x1a, 0x00, 0x4d, 0x00, 0xc8, 0xff, 0xb0, 0xff,\n  0xfb, 0xff, 0x17, 0x00, 0x13, 0x00, 0x02, 0x00, 0x04, 0x00, 0x1c, 0x00,\n  0x26, 0x00, 0xba, 0xff, 0xc2, 0xff, 0x2e, 0x00, 0x28, 0x00, 0xdd, 0xff,\n  0xe6, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x11, 0x00, 0x04, 0x00, 0x3a, 0x00,\n  0x0e, 0x00, 0xa2, 0xff, 0xf3, 0xff, 0x0b, 0x00, 0x02, 0x00, 0x20, 0x00,\n  0x10, 0x00, 0xde, 0xff, 0xf2, 0xff, 0x02, 0x00, 0x01, 0x00, 0x0b, 0x00,\n  0x05, 0x00, 0xf6, 0xff, 0xf8, 0xff, 0xe3, 0xff, 0x08, 0x00, 0x11, 0x00,\n  0x44, 0x00, 0xf0, 0xff, 0xb1, 0xff, 0xf2, 0xff, 0x00, 0x00, 0x1a, 0x00,\n  0x0b, 0x00, 0x49, 0x00, 0xe4, 0xff, 0xa7, 0xff, 0xf8, 0xff, 0x05, 0x00,\n  0x19, 0x00, 0x07, 0x00, 0x3e, 0x00, 0xf9, 0xff, 0x8d, 0xff, 0x13, 0x00,\n  0x1c, 0x00, 0x35, 0x00, 0x1f, 0x00, 0xa2, 0xff, 0xe1, 0xff, 0x0a, 0x00,\n  0x0a, 0x00, 0x1a, 0x00, 0x3a, 0x00, 0xdb, 0xff, 0xc6, 0xff, 0x05, 0x00,\n  0x02, 0x00, 0x13, 0x00, 0x16, 0x00, 0xea, 0xff, 0x0b, 0x00, 0x04, 0x00,\n  0xe9, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0x35, 0x00, 0x0d, 0x00,\n  0xcc, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0x08, 0x00, 0x3e, 0x00, 0x00, 0x00,\n  0xc6, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0a, 0x00, 0x1f, 0x00, 0x35, 0x00,\n  0xd4, 0xff, 0xcb, 0xff, 0x04, 0x00, 0x05, 0x00, 0x14, 0x00, 0x1f, 0x00,\n  0xec, 0xff, 0xe6, 0xff, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00,\n  0xf9, 0xff, 0xed, 0xff, 0x08, 0x00, 0x16, 0x00, 0x1f, 0x00, 0xfc, 0xff,\n  0xd5, 0xff, 0xf6, 0xff, 0x02, 0x00, 0xff, 0xff, 0xf5, 0xff, 0x00, 0x00,\n  0x0e, 0x00, 0x25, 0x00, 0x04, 0x00, 0xce, 0xff, 0xff, 0xff, 0x04, 0x00,\n  0xf9, 0xff, 0x05, 0x00, 0x08, 0x00, 0xfc, 0xff, 0x0e, 0x00, 0xfb, 0xff,\n  0xe7, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x08, 0x00, 0x05, 0x00,\n  0xf8, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xf6, 0xff,\n  0x0a, 0x00, 0x2b, 0x00, 0xfe, 0xff, 0xd5, 0xff, 0xf2, 0xff, 0xf0, 0xff,\n  0x0d, 0x00, 0x14, 0x00, 0x3e, 0x00, 0xea, 0xff, 0xb7, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x26, 0x00, 0x2e, 0x00, 0xcf, 0xff, 0xe1, 0xff, 0x07, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x2e, 0x00, 0x11, 0x00,\n  0xba, 0xff, 0xef, 0xff, 0x07, 0x00, 0x02, 0x00, 0x17, 0x00, 0x0a, 0x00,\n  0xe6, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf8, 0xff,\n  0x1c, 0x00, 0x13, 0x00, 0xd8, 0xff, 0xf2, 0xff, 0x0a, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xf5, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xef, 0xff, 0xff, 0xff,\n  0x0e, 0x00, 0x3a, 0x00, 0xe7, 0xff, 0xce, 0xff, 0xf8, 0xff, 0xfc, 0xff,\n  0x0a, 0x00, 0x1d, 0x00, 0x2b, 0x00, 0xcf, 0xff, 0xd8, 0xff, 0x04, 0x00,\n  0x02, 0x00, 0x16, 0x00, 0x19, 0x00, 0xea, 0xff, 0xe9, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0x20, 0x00, 0x13, 0x00, 0xd5, 0xff,\n  0xf3, 0xff, 0x08, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff,\n  0xf6, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x17, 0x00, 0x34, 0x00,\n  0xc3, 0xff, 0xdb, 0xff, 0x02, 0x00, 0xfb, 0xff, 0x0b, 0x00, 0x2b, 0x00,\n  0x0a, 0x00, 0xcb, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x04, 0x00, 0x17, 0x00,\n  0x05, 0x00, 0xe7, 0xff, 0xfb, 0xff, 0xf0, 0xff, 0xff, 0xff, 0x08, 0x00,\n  0x2e, 0x00, 0x19, 0x00, 0xbd, 0xff, 0xea, 0xff, 0x00, 0x00, 0x07, 0x00,\n  0x0e, 0x00, 0x05, 0x00, 0x37, 0x00, 0xf2, 0xff, 0xba, 0xff, 0x01, 0x00,\n  0x05, 0x00, 0x0a, 0x00, 0x1a, 0x00, 0xf6, 0xff, 0xea, 0xff, 0x02, 0x00,\n  0x04, 0x00, 0xf2, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x19, 0x00, 0x29, 0x00,\n  0xd2, 0xff, 0xde, 0xff, 0x0a, 0x00, 0xf3, 0xff, 0x04, 0x00, 0x0d, 0x00,\n  0x29, 0x00, 0x0a, 0x00, 0xc8, 0xff, 0xf2, 0xff, 0x08, 0x00, 0x08, 0x00,\n  0x17, 0x00, 0x04, 0x00, 0xe6, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x07, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfb, 0xff, 0xf3, 0xff, 0xfe, 0xff, 0x19, 0x00, 0x22, 0x00, 0xe1, 0xff,\n  0xe6, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x13, 0x00, 0xf6, 0xff,\n  0xea, 0xff, 0xfb, 0xff, 0x19, 0x00, 0x0d, 0x00, 0xec, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x05, 0x00, 0x0e, 0x00, 0xfb, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xf5, 0xff, 0x04, 0x00, 0x2b, 0x00, 0xf6, 0xff, 0xe3, 0xff,\n  0x07, 0x00, 0xed, 0xff, 0xf9, 0xff, 0x0e, 0x00, 0x13, 0x00, 0x31, 0x00,\n  0xde, 0xff, 0xc2, 0xff, 0x05, 0x00, 0x25, 0x00, 0x26, 0x00, 0xdd, 0xff,\n  0xe3, 0xff, 0x02, 0x00, 0x01, 0x00, 0x10, 0x00, 0x19, 0x00, 0xf0, 0xff,\n  0xe7, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x07, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xf9, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0x08, 0x00,\n  0x2c, 0x00, 0xf6, 0xff, 0xdd, 0xff, 0xfe, 0xff, 0xec, 0xff, 0x0e, 0x00,\n  0x08, 0x00, 0x1f, 0x00, 0x22, 0x00, 0xc5, 0xff, 0xd2, 0xff, 0x11, 0x00,\n  0x0e, 0x00, 0x17, 0x00, 0x2e, 0x00, 0xcb, 0xff, 0xd7, 0xff, 0x01, 0x00,\n  0x05, 0x00, 0x0b, 0x00, 0x2f, 0x00, 0xf9, 0xff, 0xd4, 0xff, 0xed, 0xff,\n  0xfb, 0xff, 0x14, 0x00, 0x01, 0x00, 0x13, 0x00, 0x32, 0x00, 0xc0, 0xff,\n  0xcb, 0xff, 0x20, 0x00, 0x10, 0x00, 0xff, 0xff, 0x26, 0x00, 0x0b, 0x00,\n  0xb6, 0xff, 0xf3, 0xff, 0x1d, 0x00, 0x05, 0x00, 0x22, 0x00, 0x0e, 0x00,\n  0xc3, 0xff, 0xe1, 0xff, 0x1c, 0x00, 0x01, 0x00, 0x26, 0x00, 0x13, 0x00,\n  0xc3, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x14, 0x00, 0x00, 0x00,\n  0x1f, 0x00, 0x1c, 0x00, 0xb1, 0xff, 0xed, 0xff, 0x23, 0x00, 0x01, 0x00,\n  0x2f, 0x00, 0x01, 0x00, 0xb3, 0xff, 0xf8, 0xff, 0x14, 0x00, 0x13, 0x00,\n  0x2e, 0x00, 0xe0, 0xff, 0xd8, 0xff, 0xfb, 0xff, 0x07, 0x00, 0x0a, 0x00,\n  0x11, 0x00, 0x2c, 0x00, 0xd1, 0xff, 0xd7, 0xff, 0x02, 0x00, 0x04, 0x00,\n  0x0e, 0x00, 0x25, 0x00, 0xf3, 0xff, 0xcb, 0xff, 0x01, 0x00, 0x1c, 0x00,\n  0x17, 0x00, 0xe9, 0xff, 0xec, 0xff, 0x04, 0x00, 0xff, 0xff, 0x05, 0x00,\n  0x0d, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xf5, 0xff,\n  0x08, 0x00, 0x01, 0x00, 0x23, 0x00, 0x13, 0x00, 0xcf, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0x11, 0x00, 0x02, 0x00, 0x19, 0x00, 0x1d, 0x00,\n  0xc0, 0xff, 0xe0, 0xff, 0x14, 0x00, 0x07, 0x00, 0x10, 0x00, 0x25, 0x00,\n  0xdd, 0xff, 0xd7, 0xff, 0x05, 0x00, 0x08, 0x00, 0x1f, 0x00, 0xf8, 0xff,\n  0xea, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x04, 0x00, 0x29, 0x00, 0xfe, 0xff,\n  0xcb, 0xff, 0x02, 0x00, 0x1c, 0x00, 0x22, 0x00, 0xe6, 0xff, 0xe3, 0xff,\n  0x02, 0x00, 0xf6, 0xff, 0x05, 0x00, 0x04, 0x00, 0x1d, 0x00, 0x1a, 0x00,\n  0xcf, 0xff, 0xed, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x10, 0x00, 0x1f, 0x00,\n  0xf6, 0xff, 0xe6, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00,\n  0x0e, 0x00, 0x17, 0x00, 0xf9, 0xff, 0xe3, 0xff, 0xfc, 0xff, 0x05, 0x00,\n  0xf9, 0xff, 0xf5, 0xff, 0x02, 0x00, 0x13, 0x00, 0x1a, 0x00, 0xec, 0xff,\n  0xed, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x08, 0x00, 0x07, 0x00, 0xfc, 0xff,\n  0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0x0b, 0x00, 0x25, 0x00, 0xf0, 0xff, 0xe7, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0x02, 0x00, 0x22, 0x00, 0x14, 0x00, 0xda, 0xff, 0xe7, 0xff,\n  0x00, 0x00, 0x05, 0x00, 0x20, 0x00, 0x17, 0x00, 0xd4, 0xff, 0xea, 0xff,\n  0x04, 0x00, 0x08, 0x00, 0x07, 0x00, 0x04, 0x00, 0x25, 0x00, 0xfb, 0xff,\n  0xcb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x10, 0x00, 0x0a, 0x00, 0xf5, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x0a, 0x00, 0x05, 0x00, 0x0a, 0x00,\n  0x11, 0x00, 0xe7, 0xff, 0xea, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff,\n  0x10, 0x00, 0x1f, 0x00, 0xec, 0xff, 0xe9, 0xff, 0x08, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xf2, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x14, 0x00, 0x20, 0x00, 0xda, 0xff, 0xe6, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x08, 0x00, 0x20, 0x00, 0xfb, 0xff, 0xe0, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x0b, 0x00, 0x01, 0x00, 0xf6, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xf9, 0xff, 0x00, 0x00, 0x0d, 0x00, 0x23, 0x00, 0xe9, 0xff, 0xe4, 0xff,\n  0x0b, 0x00, 0xf6, 0xff, 0xf3, 0xff, 0x05, 0x00, 0x11, 0x00, 0x1d, 0x00,\n  0xe9, 0xff, 0xda, 0xff, 0x01, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x1d, 0x00,\n  0xf5, 0xff, 0xdd, 0xff, 0xff, 0xff, 0x0d, 0x00, 0xff, 0xff, 0xf8, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0x07, 0x00, 0x0e, 0x00, 0xf8, 0xff, 0xf5, 0xff,\n  0xfe, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x0d, 0x00,\n  0x05, 0x00, 0xe4, 0xff, 0xec, 0xff, 0xff, 0xff, 0x0a, 0x00, 0x0d, 0x00,\n  0x0e, 0x00, 0xf3, 0xff, 0xea, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf5, 0xff, 0xfe, 0xff,\n  0x17, 0x00, 0x01, 0x00, 0xf0, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x08, 0x00, 0x0b, 0x00, 0xf6, 0xff, 0xf8, 0xff, 0x01, 0x00, 0xfb, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xf2, 0xff, 0xfe, 0xff, 0x0b, 0x00, 0x1a, 0x00, 0xf5, 0xff, 0xea, 0xff,\n  0xfe, 0xff, 0xf5, 0xff, 0x04, 0x00, 0x13, 0x00, 0x04, 0x00, 0xec, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xf5, 0xff, 0x00, 0x00, 0x05, 0x00,\n  0x20, 0x00, 0xff, 0xff, 0xdb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x01, 0x00,\n  0x16, 0x00, 0x11, 0x00, 0xe7, 0xff, 0xf3, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x07, 0x00, 0x01, 0x00, 0xf6, 0xff, 0x04, 0x00, 0x05, 0x00, 0xf5, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x0a, 0x00, 0xf3, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xf2, 0xff, 0x01, 0x00, 0x1c, 0x00, 0x08, 0x00, 0xde, 0xff,\n  0xed, 0xff, 0x05, 0x00, 0x02, 0x00, 0x1a, 0x00, 0x10, 0x00, 0xd5, 0xff,\n  0xf5, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x04, 0x00, 0x11, 0x00, 0x1c, 0x00,\n  0xdd, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x08, 0x00, 0x0a, 0x00,\n  0x1f, 0x00, 0xe7, 0xff, 0xdd, 0xff, 0xff, 0xff, 0x07, 0x00, 0x07, 0x00,\n  0x25, 0x00, 0xf6, 0xff, 0xdb, 0xff, 0x01, 0x00, 0xf5, 0xff, 0x05, 0x00,\n  0x04, 0x00, 0x14, 0x00, 0x14, 0x00, 0xda, 0xff, 0xe3, 0xff, 0x0d, 0x00,\n  0x05, 0x00, 0x13, 0x00, 0x1c, 0x00, 0xdb, 0xff, 0xe9, 0xff, 0x04, 0x00,\n  0xfe, 0xff, 0x1d, 0x00, 0x0e, 0x00, 0xe4, 0xff, 0xf3, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x11, 0x00, 0x1c, 0x00, 0xec, 0xff, 0xe9, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x08, 0x00, 0x10, 0x00, 0x1c, 0x00, 0xdb, 0xff, 0xe3, 0xff,\n  0x0d, 0x00, 0x0d, 0x00, 0x1c, 0x00, 0xed, 0xff, 0xea, 0xff, 0xff, 0xff,\n  0xf8, 0xff, 0x05, 0x00, 0x07, 0x00, 0x1a, 0x00, 0x05, 0x00, 0xd8, 0xff,\n  0xf6, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x1a, 0x00, 0x0a, 0x00,\n  0xe1, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x16, 0x00, 0x17, 0x00,\n  0xe3, 0xff, 0xed, 0xff, 0xf9, 0xff, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00,\n  0x26, 0x00, 0xef, 0xff, 0xd2, 0xff, 0xff, 0xff, 0x0d, 0x00, 0x07, 0x00,\n  0x22, 0x00, 0xf6, 0xff, 0xda, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x07, 0x00,\n  0x0a, 0x00, 0x20, 0x00, 0xe4, 0xff, 0xe3, 0xff, 0xfc, 0xff, 0x04, 0x00,\n  0x08, 0x00, 0x0b, 0x00, 0x1c, 0x00, 0xe6, 0xff, 0xda, 0xff, 0x04, 0x00,\n  0x05, 0x00, 0x1d, 0x00, 0xfe, 0xff, 0xe4, 0xff, 0xf6, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x13, 0x00, 0x17, 0x00, 0xe3, 0xff, 0xea, 0xff, 0xfb, 0xff,\n  0x07, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0x0b, 0x00, 0x11, 0x00,\n  0xe3, 0xff, 0xe7, 0xff, 0x05, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff,\n  0x08, 0x00, 0x08, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x0e, 0x00,\n  0x07, 0x00, 0xed, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xf9, 0xff, 0xf3, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x17, 0x00,\n  0xed, 0xff, 0xe9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x08, 0x00,\n  0x1a, 0x00, 0xec, 0xff, 0xdd, 0xff, 0x07, 0x00, 0x05, 0x00, 0x19, 0x00,\n  0x02, 0x00, 0xe1, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x08, 0x00, 0x17, 0x00, 0xec, 0xff, 0xec, 0xff, 0x02, 0x00, 0xfb, 0xff,\n  0xfc, 0xff, 0x02, 0x00, 0x19, 0x00, 0xfc, 0xff, 0xec, 0xff, 0xfe, 0xff,\n  0xf6, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x0b, 0x00, 0x05, 0x00, 0xf2, 0xff,\n  0xf5, 0xff, 0x04, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x10, 0x00, 0x0e, 0x00, 0xe3, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0x07, 0x00, 0x08, 0x00, 0x1a, 0x00, 0xf2, 0xff, 0xe0, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0x07, 0x00, 0x14, 0x00, 0xfb, 0xff, 0xe7, 0xff,\n  0x00, 0x00, 0xfb, 0xff, 0x04, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xf3, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0x02, 0x00, 0x10, 0x00,\n  0xf9, 0xff, 0xf6, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x08, 0x00,\n  0x07, 0x00, 0xf5, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0x16, 0x00, 0x08, 0x00, 0xe9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x11, 0x00, 0x10, 0x00, 0xe0, 0xff, 0xf2, 0xff, 0x05, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf6, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x14, 0x00, 0x02, 0x00, 0xea, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x16, 0x00, 0x0a, 0x00, 0xe9, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x07, 0x00, 0x11, 0x00, 0xfc, 0xff,\n  0xf0, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00,\n  0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x05, 0x00,\n  0x0a, 0x00, 0xf8, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x07, 0x00,\n  0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0xf9, 0xff,\n  0xf6, 0xff, 0xfb, 0xff, 0x04, 0x00, 0x0a, 0x00, 0xfc, 0xff, 0xf8, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x02, 0x00,\n  0x07, 0x00, 0xf8, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x04, 0x00,\n  0x07, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x07, 0x00, 0x01, 0x00, 0xf6, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x0e, 0x00, 0xfb, 0xff,\n  0xed, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x16, 0x00, 0xf8, 0xff, 0xef, 0xff,\n  0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x13, 0x00, 0xfb, 0xff,\n  0xe7, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x11, 0x00, 0x01, 0x00, 0xef, 0xff,\n  0xf9, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x08, 0x00, 0x08, 0x00, 0xf6, 0xff,\n  0xf9, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0xfb, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x07, 0x00,\n  0x14, 0x00, 0xf5, 0xff, 0xe3, 0xff, 0xff, 0xff, 0x02, 0x00, 0x0b, 0x00,\n  0x13, 0x00, 0xf2, 0xff, 0xf0, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x0e, 0x00, 0x0e, 0x00, 0xea, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0x0a, 0x00, 0xff, 0xff, 0x0e, 0x00, 0x10, 0x00, 0xdd, 0xff, 0xef, 0xff,\n  0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x01, 0x00, 0xdd, 0xff,\n  0xf9, 0xff, 0x01, 0x00, 0x07, 0x00, 0x01, 0x00, 0x17, 0x00, 0x00, 0x00,\n  0xdd, 0xff, 0xf9, 0xff, 0x0a, 0x00, 0x04, 0x00, 0x0d, 0x00, 0x0b, 0x00,\n  0xde, 0xff, 0xf5, 0xff, 0x07, 0x00, 0x16, 0x00, 0x02, 0x00, 0xe9, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0x04, 0x00, 0x04, 0x00, 0x13, 0x00, 0x05, 0x00,\n  0xe4, 0xff, 0xf3, 0xff, 0x04, 0x00, 0x01, 0x00, 0x13, 0x00, 0x07, 0x00,\n  0xe4, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x0e, 0x00,\n  0xf2, 0xff, 0xf5, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x0e, 0x00, 0x0d, 0x00, 0xec, 0xff, 0xf8, 0xff, 0x00, 0x00, 0xfb, 0xff,\n  0x04, 0x00, 0x11, 0x00, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0x02, 0x00,\n  0x07, 0x00, 0x17, 0x00, 0xf9, 0xff, 0xea, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x16, 0x00, 0xfb, 0xff, 0xed, 0xff, 0x00, 0x00, 0xf9, 0xff,\n  0x02, 0x00, 0x02, 0x00, 0x16, 0x00, 0x01, 0x00, 0xe9, 0xff, 0xf6, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x16, 0x00, 0xf5, 0xff, 0xe6, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x11, 0x00, 0xfe, 0xff,\n  0xe9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x13, 0x00, 0x08, 0x00,\n  0xea, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x08, 0x00, 0x05, 0x00,\n  0xf6, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x07, 0x00, 0xfe, 0xff,\n  0xf9, 0xff, 0x01, 0x00, 0xf6, 0xff, 0x00, 0x00, 0x10, 0x00, 0xf6, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0x07, 0x00, 0x00, 0x00, 0x0b, 0x00,\n  0x0a, 0x00, 0xe7, 0xff, 0xf5, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xf8, 0xff,\n  0xfe, 0xff, 0x0e, 0x00, 0x07, 0x00, 0xf0, 0xff, 0xf5, 0xff, 0xff, 0xff,\n  0x05, 0x00, 0x0e, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0x00, 0x00, 0xfb, 0xff,\n  0xfc, 0xff, 0x02, 0x00, 0x10, 0x00, 0xfe, 0xff, 0xf0, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x0d, 0x00, 0x04, 0x00, 0xf2, 0xff, 0xfe, 0xff,\n  0xf8, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0xec, 0xff,\n  0xf5, 0xff, 0xff, 0xff, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0xf2, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0xed, 0xff,\n  0xf2, 0xff, 0x07, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xf5, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x02, 0x00,\n  0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x0e, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0x08, 0x00,\n  0x11, 0x00, 0xf6, 0xff, 0xf3, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x0b, 0x00, 0x08, 0x00, 0xef, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0x01, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xec, 0xff, 0xfb, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x0d, 0x00, 0xff, 0xff, 0xf3, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x0e, 0x00, 0xff, 0xff, 0xf2, 0xff,\n  0xfb, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x05, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x08, 0x00,\n  0x0a, 0x00, 0xf5, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x08, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xf9, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x07, 0x00,\n  0x13, 0x00, 0xef, 0xff, 0xf3, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x04, 0x00,\n  0x0d, 0x00, 0x01, 0x00, 0xf2, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x0a, 0x00,\n  0x0b, 0x00, 0xf3, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xf8, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x11, 0x00, 0x02, 0x00, 0xf0, 0xff, 0x02, 0x00, 0xfc, 0xff,\n  0xfc, 0xff, 0x04, 0x00, 0x11, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0xf0, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x0d, 0x00, 0x0a, 0x00,\n  0xef, 0xff, 0xf8, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x0e, 0x00,\n  0xf8, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x0b, 0x00,\n  0xff, 0xff, 0xef, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0x0e, 0x00,\n  0xfc, 0xff, 0xf9, 0xff, 0x01, 0x00, 0xf9, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x05, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x08, 0x00, 0x0b, 0x00, 0xf3, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0x04, 0x00, 0x07, 0x00, 0x0a, 0x00, 0xf5, 0xff, 0xf2, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x07, 0x00, 0x0b, 0x00, 0xf6, 0xff, 0xf6, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0xef, 0xff, 0xf3, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x13, 0x00, 0xf2, 0xff,\n  0xed, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x0d, 0x00, 0xfe, 0xff,\n  0xf0, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x05, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x07, 0x00,\n  0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x08, 0x00,\n  0x08, 0x00, 0xf3, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0xed, 0xff, 0xf3, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x11, 0x00, 0xf8, 0xff, 0xef, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x0d, 0x00, 0x08, 0x00, 0xed, 0xff, 0xf6, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, 0x00, 0xf0, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0xf5, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xed, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x0a, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x0b, 0x00, 0xf9, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x01, 0x00, 0x0b, 0x00,\n  0x07, 0x00, 0xec, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00,\n  0x08, 0x00, 0xf3, 0xff, 0xf5, 0xff, 0x05, 0x00, 0x0a, 0x00, 0xff, 0xff,\n  0xf5, 0xff, 0x04, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0x04, 0x00,\n  0x0d, 0x00, 0xfe, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x0a, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfb, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x07, 0x00, 0x0d, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff,\n  0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0xf3, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xf9, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0e, 0x00, 0xf6, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x10, 0x00, 0xfe, 0xff, 0xf3, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x0b, 0x00, 0xf5, 0xff,\n  0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0xf8, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00,\n  0x02, 0x00, 0xf6, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x08, 0x00, 0x0a, 0x00, 0xf6, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xf2, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x08, 0x00, 0x05, 0x00, 0xf3, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x0e, 0x00, 0xfe, 0xff, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x08, 0x00, 0x08, 0x00, 0xf6, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x01, 0x00, 0xf3, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0b, 0x00, 0xfb, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x05, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0xfc, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x02, 0x00, 0x0d, 0x00, 0xff, 0xff,\n  0xf0, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x04, 0x00, 0xf5, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x07, 0x00, 0xfb, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x08, 0x00,\n  0x02, 0x00, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0x08, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xf8, 0xff, 0x01, 0x00, 0xf6, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x07, 0x00, 0xf2, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0xfe, 0xff, 0xf6, 0xff,\n  0xfe, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x02, 0x00, 0x0b, 0x00, 0xfe, 0xff,\n  0xf0, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x05, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x0e, 0x00,\n  0xff, 0xff, 0xec, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x00, 0x00, 0x0b, 0x00,\n  0x07, 0x00, 0xf5, 0xff, 0xf9, 0xff, 0x02, 0x00, 0xff, 0xff, 0x05, 0x00,\n  0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0xf5, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff,\n  0x01, 0x00, 0x08, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x04, 0x00, 0x08, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xf9, 0xff, 0x01, 0x00,\n  0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x0e, 0x00, 0xf9, 0xff,\n  0xf2, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x07, 0x00, 0xfe, 0xff,\n  0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x08, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0x04, 0x00, 0x07, 0x00,\n  0x02, 0x00, 0xf8, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00,\n  0x0a, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x07, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x08, 0x00, 0x02, 0x00, 0xf5, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x04, 0x00, 0x08, 0x00, 0xff, 0xff, 0xf6, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0xfb, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xf8, 0xff, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,\n  0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x0a, 0x00,\n  0xff, 0xff, 0xf8, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x04, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x0d, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x0b, 0x00, 0xfb, 0xff, 0xf2, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0a, 0x00, 0xf8, 0xff, 0xf8, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x07, 0x00, 0xfc, 0xff,\n  0xf5, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0xfc, 0xff,\n  0xf6, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf9, 0xff, 0x01, 0x00,\n  0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x0e, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0xf8, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0xf6, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x02, 0x00, 0xf6, 0xff,\n  0xfe, 0xff, 0x07, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x05, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x04, 0x00,\n  0x05, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x07, 0x00, 0xfe, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x08, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00,\n  0x04, 0x00, 0xf6, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x0e, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x0a, 0x00, 0xf8, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x04, 0x00, 0x08, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x07, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf9, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0xf6, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0xf5, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x00, 0x00, 0x0d, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x08, 0x00,\n  0xfe, 0xff, 0xf5, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x07, 0x00,\n  0x01, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0xf6, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x08, 0x00, 0xf5, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0xf6, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x02, 0x00, 0xf6, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x04, 0x00,\n  0x08, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x07, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xf9, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0x02, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x08, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00,\n  0x08, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x04, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x07, 0x00, 0x01, 0x00, 0xf9, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0xfe, 0xff,\n  0xf6, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x05, 0x00, 0x07, 0x00,\n  0xf8, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x04, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0xfb, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0x05, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x07, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x04, 0x00, 0xf8, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x07, 0x00,\n  0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0xf3, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x08, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0xf9, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0xf6, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0xf9, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0xf8, 0xff,\n  0xf6, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00,\n  0xf8, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x07, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0x07, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x07, 0x00, 0x00, 0x00,\n  0xf9, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x07, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00,\n  0x02, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x05, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00,\n  0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x07, 0x00,\n  0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x05, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xf9, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x07, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfb, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfb, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf9, 0xff,\n  0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x07, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00,\n  0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xf9, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x04, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfb, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x04, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfb, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00\n};\n#define  tr808_hh_wav_len 22128\nunsigned char tr808_mc_wav[] = {\n  0x52, 0x49, 0x46, 0x46, 0x68, 0x56, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45,\n  0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00,\n  0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e,\n  0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61,\n  0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61,\n  0x74, 0x61, 0x22, 0x56, 0x00, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x10, 0x00,\n  0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0b, 0x00,\n  0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0d, 0x00,\n  0x07, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x16, 0x00, 0x0e, 0x00, 0xf9, 0xff,\n  0x02, 0x00, 0x02, 0x00, 0x08, 0x00, 0x1f, 0x00, 0x05, 0x00, 0x14, 0x00,\n  0xf5, 0xff, 0x7c, 0x00, 0x41, 0x00, 0x0f, 0xff, 0xce, 0xff, 0x0a, 0x01,\n  0x0a, 0x01, 0x9c, 0xfe, 0xf3, 0xfe, 0x94, 0x00, 0xef, 0x00, 0x41, 0x00,\n  0x95, 0xff, 0x02, 0x00, 0xec, 0x00, 0x9e, 0xff, 0xf3, 0xfe, 0xb3, 0x00,\n  0x95, 0x00, 0xea, 0xff, 0x97, 0x01, 0x50, 0xff, 0xba, 0xff, 0x6b, 0xff,\n  0xdc, 0x00, 0xff, 0xfd, 0xef, 0xff, 0xbe, 0x00, 0xbb, 0xfd, 0x5d, 0x02,\n  0xba, 0x01, 0xb3, 0xff, 0x7b, 0xff, 0x05, 0x00, 0xad, 0x03, 0xf3, 0xff,\n  0x83, 0xfd, 0x8f, 0xfc, 0xea, 0xff, 0xaa, 0x04, 0x45, 0xff, 0x49, 0xfa,\n  0xf4, 0xfe, 0xcb, 0x05, 0x57, 0x02, 0x0d, 0xfe, 0x0f, 0x02, 0x39, 0x03,\n  0x43, 0xf6, 0xb5, 0xfe, 0x33, 0x06, 0x8f, 0x03, 0x55, 0xfd, 0x31, 0xfd,\n  0x4b, 0x01, 0x8a, 0xff, 0xd4, 0x00, 0x61, 0x00, 0xf9, 0xff, 0x9d, 0x00,\n  0xd4, 0x00, 0x91, 0xfd, 0x02, 0x00, 0xb2, 0x01, 0x25, 0x00, 0xb4, 0xff,\n  0x90, 0xff, 0xf5, 0x02, 0x6b, 0x03, 0x9d, 0xfa, 0x9e, 0xff, 0x29, 0x03,\n  0xab, 0xf5, 0x87, 0x01, 0xd7, 0x0c, 0x0f, 0xff, 0x40, 0xfa, 0xd1, 0xf3,\n  0x99, 0x02, 0x2c, 0x0c, 0x03, 0x02, 0x75, 0xfb, 0x0e, 0xff, 0xc9, 0x01,\n  0x9f, 0x02, 0xaf, 0x06, 0x28, 0xf4, 0x23, 0xfc, 0x52, 0x01, 0x3c, 0x0c,\n  0xd2, 0xfe, 0x21, 0xf3, 0x8c, 0x05, 0x7b, 0xfe, 0x70, 0x01, 0x60, 0x04,\n  0x48, 0xfb, 0x8e, 0x01, 0xa6, 0x08, 0x4e, 0xf5, 0x39, 0xfb, 0xd3, 0x07,\n  0x33, 0x04, 0x7e, 0xfe, 0xb5, 0xf9, 0x51, 0x03, 0x3f, 0x07, 0x04, 0xfa,\n  0xb9, 0xfc, 0x28, 0x01, 0xa5, 0x01, 0xbd, 0xfc, 0x83, 0x03, 0xf8, 0x06,\n  0x6f, 0xf6, 0xa9, 0xfc, 0x5f, 0x06, 0x2f, 0x03, 0x22, 0xfe, 0xd9, 0xfc,\n  0xb7, 0x01, 0xfb, 0x03, 0xdc, 0xfb, 0x88, 0xfe, 0xe8, 0x0d, 0x88, 0xf4,\n  0x50, 0xf0, 0x76, 0x10, 0x67, 0x05, 0x20, 0xf6, 0xf8, 0x00, 0xe3, 0x07,\n  0x51, 0xfd, 0x9e, 0xf9, 0xb7, 0x02, 0x91, 0x03, 0xee, 0x00, 0x3f, 0x0a,\n  0xa9, 0xfd, 0x68, 0xf7, 0x90, 0xf3, 0x03, 0xf5, 0x86, 0x11, 0x34, 0x0b,\n  0x33, 0xfc, 0xdd, 0xfa, 0xcb, 0x02, 0x27, 0x01, 0xfe, 0x00, 0xf1, 0xfc,\n  0xb7, 0x03, 0x26, 0x06, 0x06, 0xf5, 0xf5, 0xff, 0xf9, 0x0b, 0xd9, 0xfa,\n  0x79, 0xf1, 0x81, 0x0d, 0x6d, 0xfa, 0xec, 0xf6, 0x2a, 0x06, 0xa1, 0x09,\n  0xd2, 0xff, 0xf1, 0xfb, 0x25, 0x00, 0x9a, 0x01, 0x86, 0x00, 0x26, 0xff,\n  0xf2, 0xff, 0x2a, 0x01, 0x5b, 0x00, 0x4d, 0xfd, 0x6a, 0x01, 0x9d, 0x0e,\n  0xf4, 0xf7, 0x69, 0xf9, 0x76, 0x04, 0x0d, 0xfd, 0x1f, 0xef, 0xb7, 0xfc,\n  0x45, 0x1c, 0x20, 0xf6, 0xb0, 0xfa, 0xfb, 0x16, 0xbf, 0xff, 0x14, 0xea,\n  0x71, 0xe6, 0x28, 0x11, 0x54, 0x1a, 0x4a, 0xf9, 0x2e, 0x05, 0xcd, 0xf8,\n  0x63, 0xf5, 0x67, 0x06, 0xcc, 0xff, 0x5f, 0x07, 0xb1, 0xf3, 0x1b, 0x05,\n  0xab, 0x06, 0xd6, 0xf7, 0xc3, 0xff, 0x6b, 0x05, 0x59, 0x00, 0x4f, 0x00,\n  0x16, 0x0d, 0x0b, 0x03, 0xdf, 0xe6, 0xb9, 0xfa, 0xa1, 0x14, 0x99, 0xff,\n  0xe1, 0xf2, 0x59, 0xf9, 0x2b, 0x10, 0xc6, 0xf5, 0x91, 0x00, 0xd0, 0x04,\n  0x51, 0xeb, 0x77, 0x0e, 0x30, 0x17, 0xc3, 0xf2, 0x61, 0xfe, 0x1e, 0xfa,\n  0xb1, 0x08, 0xb8, 0x09, 0x28, 0xf1, 0x43, 0x02, 0xf6, 0xf2, 0xfd, 0x11,\n  0x01, 0x13, 0x4a, 0xdb, 0xfa, 0xf7, 0x84, 0x19, 0xc7, 0xfc, 0x81, 0x02,\n  0x6d, 0xfe, 0xac, 0xfb, 0x37, 0xfd, 0xca, 0x04, 0x83, 0x02, 0xf6, 0xff,\n  0x3b, 0xfd, 0x09, 0x0d, 0x85, 0x0a, 0xff, 0xe3, 0x35, 0xfb, 0x53, 0xfd,\n  0x2a, 0x01, 0x07, 0x0c, 0x88, 0x19, 0xcd, 0xfb, 0x0a, 0xf0, 0x4d, 0xe4,\n  0xd6, 0xf7, 0xbc, 0x24, 0x59, 0xf8, 0x4c, 0x00, 0x69, 0x02, 0xe5, 0x01,\n  0x43, 0xfd, 0xd6, 0x04, 0x10, 0x09, 0x96, 0xef, 0xe0, 0x06, 0x30, 0xf9,\n  0x24, 0xf4, 0x2e, 0x19, 0x85, 0x0b, 0x9e, 0xdf, 0xa7, 0x09, 0xcd, 0x13,\n  0x5b, 0xdf, 0x79, 0xf2, 0x2f, 0x1d, 0x72, 0x0a, 0x9c, 0xf8, 0x9c, 0xf7,\n  0x9f, 0x12, 0xb9, 0xfc, 0xaf, 0x01, 0x81, 0xee, 0xa7, 0xed, 0x83, 0x1d,\n  0xee, 0xf1, 0xd5, 0x0f, 0xe5, 0xfa, 0x53, 0xf0, 0xdf, 0x0a, 0xe7, 0x08,\n  0xa1, 0x00, 0xfa, 0xf3, 0x44, 0x11, 0xc3, 0x01, 0x2d, 0x02, 0x50, 0xee,\n  0xac, 0xe3, 0xe2, 0x27, 0x3e, 0x0f, 0x31, 0xe0, 0x71, 0xe2, 0xe0, 0x1b,\n  0xd2, 0x17, 0xa0, 0xf8, 0x7c, 0xf6, 0x51, 0x01, 0x57, 0x0d, 0x2a, 0xfb,\n  0xd9, 0x00, 0x82, 0xee, 0x1b, 0xfc, 0x8f, 0x11, 0x85, 0x02, 0xd0, 0xfb,\n  0x13, 0xfd, 0x28, 0x04, 0x45, 0xfe, 0x52, 0x00, 0x76, 0xfe, 0x33, 0x07,\n  0x7c, 0x01, 0x57, 0xef, 0x7f, 0x04, 0x53, 0x07, 0x66, 0x06, 0xed, 0x12,\n  0x7a, 0xf6, 0x5f, 0xdf, 0xe6, 0x09, 0x90, 0xf5, 0x4f, 0xee, 0xfc, 0x2f,\n  0x9b, 0x06, 0x03, 0xd4, 0xdc, 0x06, 0x43, 0x18, 0xc5, 0x02, 0xef, 0xf3,\n  0x55, 0x08, 0x8c, 0x09, 0x7e, 0x08, 0xdc, 0xe0, 0xec, 0xf9, 0xde, 0x1b,\n  0xdd, 0xf9, 0x04, 0xf6, 0x36, 0xfb, 0x5a, 0xe1, 0x91, 0xfe, 0x25, 0x2b,\n  0x38, 0x0b, 0x44, 0xf3, 0xb5, 0xfa, 0x3c, 0x1d, 0x61, 0xe3, 0xe3, 0xe6,\n  0x98, 0x19, 0x1d, 0x0d, 0xa1, 0xf9, 0xcc, 0xf7, 0x93, 0x03, 0xa5, 0x02,\n  0x61, 0xfe, 0x4b, 0xff, 0x8c, 0x00, 0xf6, 0x13, 0xa9, 0x02, 0x91, 0xf1,\n  0xe8, 0xd2, 0x16, 0x00, 0x94, 0x2b, 0xaa, 0x0c, 0x10, 0x0c, 0x04, 0xf1,\n  0xea, 0xed, 0x64, 0xf7, 0x6d, 0xdc, 0x67, 0x0d, 0xdb, 0x2c, 0x47, 0x02,\n  0x2d, 0x08, 0x48, 0x08, 0xc4, 0xe4, 0x15, 0xef, 0xa7, 0x0d, 0x24, 0x05,\n  0x16, 0xe2, 0x7f, 0xec, 0x48, 0x2f, 0xc8, 0x29, 0xb2, 0xe8, 0x47, 0xc2,\n  0xe5, 0x1f, 0xa3, 0x2d, 0xfa, 0xec, 0x22, 0xdf, 0x24, 0xd7, 0x93, 0x1d,\n  0xa5, 0x2c, 0xb4, 0xfb, 0x08, 0xef, 0xac, 0x00, 0x8a, 0x0e, 0x59, 0xf9,\n  0xcc, 0xf1, 0xe4, 0x07, 0xe5, 0x03, 0x7c, 0x08, 0x6c, 0xf4, 0x52, 0x0c,\n  0x88, 0xf8, 0x83, 0xf6, 0x15, 0x1f, 0xcd, 0xdc, 0x45, 0xdd, 0xe6, 0x21,\n  0xbd, 0x1a, 0xd3, 0xf4, 0x93, 0xf7, 0xdc, 0x14, 0x30, 0xe7, 0x05, 0x0c,\n  0xce, 0x0d, 0xae, 0xed, 0x4d, 0xea, 0x77, 0x02, 0x0e, 0x36, 0xd3, 0x04,\n  0xcf, 0xd0, 0xd8, 0xd4, 0x7c, 0x19, 0xc2, 0x23, 0xb1, 0xff, 0x1e, 0xfa,\n  0x3b, 0x06, 0x95, 0xfc, 0xd1, 0xf8, 0x4f, 0x04, 0x9b, 0xf6, 0xf3, 0xf5,\n  0x9f, 0x0f, 0xd4, 0x09, 0xd9, 0x0f, 0x6e, 0x0a, 0xf9, 0xcc, 0x28, 0xd9,\n  0x9a, 0x2e, 0xb3, 0x25, 0xe0, 0xea, 0x8f, 0x03, 0xbe, 0x0e, 0x6a, 0xf3,\n  0xde, 0xe9, 0x64, 0xd2, 0x4f, 0x12, 0x9f, 0x33, 0x94, 0x00, 0xbc, 0xee,\n  0x85, 0xfc, 0xaf, 0x0a, 0x97, 0xfd, 0x41, 0x03, 0x1c, 0x10, 0x9a, 0xfa,\n  0x0d, 0xfd, 0x98, 0xdb, 0xf4, 0x01, 0x90, 0x17, 0x26, 0xf0, 0xc9, 0xff,\n  0x31, 0x10, 0x92, 0x06, 0x94, 0xf8, 0x25, 0x16, 0xa2, 0x08, 0x62, 0xe3,\n  0x1e, 0xfa, 0x08, 0xd4, 0x10, 0x09, 0xc0, 0x2e, 0x09, 0x11, 0x00, 0xf0,\n  0xb7, 0x03, 0x65, 0x0a, 0x01, 0xd3, 0x18, 0x17, 0x03, 0x11, 0xc1, 0xf6,\n  0x50, 0xe8, 0x94, 0xf7, 0x6a, 0xf7, 0x37, 0xfd, 0x53, 0x28, 0x53, 0x07,\n  0xd9, 0xf7, 0x38, 0xf7, 0x7c, 0x25, 0xda, 0x08, 0xba, 0xe0, 0x72, 0xe3,\n  0xcd, 0xcf, 0xa5, 0x20, 0x46, 0x3d, 0x92, 0x12, 0x41, 0xed, 0xd3, 0xda,\n  0xf9, 0x03, 0x7f, 0x06, 0x84, 0xce, 0xac, 0xfb, 0x2c, 0x5e, 0x23, 0x04,\n  0xcf, 0xd1, 0xc8, 0x08, 0x6b, 0xee, 0x72, 0xff, 0xf3, 0x10, 0x90, 0xfe,\n  0x4e, 0xfa, 0x77, 0xfc, 0xf9, 0xc8, 0xf5, 0x0c, 0xa8, 0x38, 0x21, 0x03,\n  0x9f, 0xf3, 0x21, 0xfc, 0xc3, 0x06, 0x10, 0x01, 0xb3, 0xfd, 0xe4, 0xfb,\n  0x93, 0x03, 0xff, 0xfd, 0x90, 0x13, 0xd0, 0x18, 0x4e, 0xdd, 0x8c, 0xbf,\n  0x28, 0x22, 0xad, 0x18, 0x56, 0x15, 0xa6, 0xeb, 0x02, 0xd2, 0x62, 0x18,\n  0x0c, 0x12, 0x9c, 0x2d, 0x92, 0xec, 0xf5, 0xc4, 0x56, 0x0c, 0xb0, 0x21,\n  0x0a, 0xe2, 0xf6, 0xe6, 0x82, 0x22, 0xd6, 0x12, 0xb2, 0xf7, 0xed, 0xf9,\n  0x87, 0xfd, 0x69, 0x1e, 0x3a, 0x11, 0x2e, 0xd9, 0xbe, 0xf1, 0x89, 0x03,\n  0x2f, 0x03, 0xa0, 0xca, 0xec, 0x19, 0x21, 0x42, 0x48, 0x11, 0x2b, 0xcf,\n  0x4c, 0xbb, 0xd5, 0x3e, 0x15, 0x26, 0x76, 0xbe, 0xd9, 0xfa, 0x2d, 0x2b,\n  0xaa, 0x09, 0x24, 0xee, 0xe8, 0xfa, 0xa2, 0x0b, 0xa3, 0x10, 0xf6, 0x05,\n  0x49, 0xc7, 0x9f, 0xf0, 0xbe, 0x32, 0xcc, 0x09, 0x44, 0xea, 0xb3, 0xfd,\n  0x58, 0x09, 0xdd, 0x02, 0x4c, 0xfa, 0xe5, 0x00, 0x74, 0xff, 0x77, 0x04,\n  0xbd, 0xf9, 0xdd, 0x0f, 0xa3, 0x01, 0xe7, 0xe3, 0xee, 0x24, 0x47, 0x0c,\n  0x42, 0xc1, 0xe5, 0xd5, 0x5c, 0x39, 0x94, 0x25, 0x01, 0xf0, 0x0d, 0xfa,\n  0x6c, 0x23, 0xca, 0xc6, 0x5d, 0x03, 0x68, 0x38, 0xc8, 0xed, 0xca, 0xe6,\n  0x4c, 0xf7, 0x38, 0x06, 0x81, 0x03, 0x6d, 0xfd, 0x0c, 0xff, 0xd3, 0x00,\n  0xcf, 0xd0, 0x79, 0x13, 0x86, 0x1a, 0x5f, 0x04, 0x72, 0x14, 0x20, 0xf4,\n  0xc7, 0xed, 0xfa, 0x09, 0x73, 0x10, 0xbf, 0xf4, 0xd1, 0xf7, 0x93, 0x04,\n  0x34, 0x08, 0xea, 0xfa, 0x88, 0x13, 0xf4, 0x15, 0x32, 0xe4, 0xdc, 0xe5,\n  0xde, 0x01, 0x83, 0xf2, 0xc1, 0xf9, 0x34, 0xf7, 0x26, 0x07, 0x32, 0x28,\n  0x3c, 0x01, 0x8c, 0xf6, 0x85, 0xfa, 0x9f, 0x2c, 0x4b, 0xda, 0x22, 0xcd,\n  0xd3, 0x26, 0x52, 0x19, 0xc2, 0xf9, 0x69, 0xf9, 0x0b, 0x12, 0xc7, 0xde,\n  0xc4, 0xed, 0x1f, 0x1b, 0x67, 0x0d, 0x7b, 0xfc, 0x8a, 0x0a, 0xff, 0x12,\n  0x33, 0xc2, 0xb7, 0xe2, 0x6b, 0x32, 0xbc, 0x16, 0xa1, 0xf4, 0xc3, 0xee,\n  0x5a, 0x15, 0x28, 0x11, 0x9b, 0xd5, 0x8c, 0xfa, 0xfa, 0x0a, 0x62, 0x2a,\n  0x96, 0xeb, 0x1a, 0xd5, 0x38, 0x16, 0x53, 0x14, 0x8a, 0xea, 0xbc, 0xff,\n  0x97, 0x0a, 0x4d, 0x1c, 0x40, 0x10, 0x40, 0xe6, 0xe3, 0xe4, 0x89, 0x03,\n  0xcd, 0xe3, 0xf8, 0xec, 0x43, 0x3f, 0x19, 0x0a, 0xce, 0xcb, 0xe8, 0xfa,\n  0x3f, 0x3b, 0xd8, 0xf3, 0xfa, 0xe6, 0x47, 0x0a, 0x68, 0x0c, 0xde, 0xfe,\n  0xc8, 0x00, 0xaf, 0xf4, 0xdb, 0x05, 0xbe, 0x00, 0xdc, 0xf6, 0xf5, 0x14,\n  0x8f, 0xed, 0xfb, 0x03, 0x57, 0x29, 0x3c, 0xe7, 0xd7, 0xdc, 0x24, 0xf4,\n  0xe6, 0xf4, 0x6d, 0x1f, 0xb2, 0x18, 0xcc, 0xf5, 0x72, 0xfe, 0x6b, 0x03,\n  0x29, 0xff, 0x99, 0xf8, 0x26, 0xf7, 0x3a, 0x0d, 0x6f, 0x02, 0xd7, 0x02,\n  0x18, 0x23, 0xc3, 0xfe, 0xf3, 0xd4, 0x78, 0xf3, 0x0b, 0xfc, 0xd8, 0xeb,\n  0xc4, 0x00, 0x88, 0x30, 0x06, 0x0b, 0x3d, 0xda, 0xc3, 0x06, 0xc5, 0x02,\n  0xaa, 0x2f, 0x63, 0x03, 0x9e, 0x9f, 0x5e, 0x07, 0xc0, 0x3d, 0xfa, 0x1d,\n  0x2d, 0xce, 0xa1, 0xe0, 0x0f, 0x1f, 0x1c, 0x23, 0x8b, 0xfc, 0xe3, 0xc2,\n  0x0e, 0x15, 0xa7, 0x42, 0xa9, 0xf5, 0xb3, 0xd5, 0xc0, 0xea, 0x53, 0xff,\n  0xe1, 0xe7, 0x5f, 0xfc, 0x9b, 0x33, 0x7a, 0x12, 0x59, 0xf0, 0x19, 0xf7,\n  0x73, 0x02, 0x1b, 0x2a, 0x39, 0xda, 0xd2, 0xdd, 0x0b, 0x41, 0x90, 0xcb,\n  0x35, 0xfa, 0xb2, 0x2c, 0xa1, 0xfa, 0x1f, 0x02, 0x5c, 0xc7, 0x80, 0x20,\n  0x6f, 0x41, 0x8b, 0xba, 0x41, 0xc8, 0x63, 0x35, 0x57, 0x29, 0x72, 0xec,\n  0xd1, 0xf1, 0x66, 0x01, 0xef, 0x1a, 0x60, 0xfe, 0xad, 0xce, 0x8f, 0x0e,\n  0x26, 0x18, 0x68, 0x0f, 0x30, 0x11, 0x91, 0xed, 0xef, 0xe8, 0x62, 0xf5,\n  0xea, 0x08, 0x09, 0xc5, 0xc5, 0xf9, 0xf8, 0x43, 0x49, 0x3f, 0x9a, 0xee,\n  0x3d, 0xc4, 0xd1, 0xfc, 0x71, 0x0e, 0x4c, 0xe9, 0xbd, 0xdb, 0x82, 0x4c,\n  0xfa, 0x0a, 0x3d, 0xeb, 0xff, 0x1a, 0x95, 0x00, 0x9a, 0xb5, 0xeb, 0xde,\n  0x28, 0x46, 0xe3, 0x20, 0x77, 0xe9, 0xf9, 0x11, 0x63, 0x1d, 0x80, 0xa0,\n  0xd2, 0xe5, 0x5b, 0x40, 0x08, 0x3f, 0xd0, 0xf8, 0xf6, 0xd5, 0xbc, 0xc3,\n  0xb4, 0xf4, 0x60, 0x4e, 0x16, 0x28, 0xde, 0xc5, 0x2a, 0xba, 0xfa, 0x31,\n  0x67, 0x21, 0x42, 0x0a, 0x00, 0xea, 0x3e, 0xea, 0x38, 0x13, 0xfd, 0x0a,\n  0x8b, 0xfd, 0xc1, 0xf4, 0x9a, 0x11, 0xa7, 0xf4, 0x67, 0x0a, 0x02, 0xff,\n  0x61, 0x01, 0x9c, 0x09, 0x88, 0xc4, 0x7d, 0xf9, 0xf4, 0x1e, 0x1d, 0x1e,\n  0x61, 0xf5, 0x26, 0xf6, 0x76, 0x01, 0xfd, 0x08, 0x28, 0x01, 0x76, 0xf2,\n  0xb9, 0x03, 0x1a, 0x2e, 0x90, 0xff, 0x8f, 0x9f, 0x14, 0xf9, 0x9a, 0x48,\n  0xe9, 0x0f, 0x4a, 0xe5, 0x3d, 0xfa, 0x0b, 0x2a, 0x05, 0xdb, 0xdd, 0xdc,\n  0xc0, 0x1d, 0x27, 0x37, 0xcf, 0x02, 0x5e, 0xd4, 0xef, 0xf0, 0xae, 0xfe,\n  0x29, 0x08, 0x00, 0xf2, 0x34, 0xc1, 0x97, 0x25, 0xbd, 0x57, 0x90, 0xfb,\n  0x02, 0xe3, 0x3e, 0xb8, 0x1b, 0x02, 0xff, 0x3e, 0x74, 0x0d, 0x80, 0xeb,\n  0x54, 0xf7, 0x1d, 0x1e, 0x74, 0xec, 0x82, 0x04, 0x52, 0xf7, 0xf8, 0xde,\n  0x86, 0x1a, 0x97, 0x0d, 0x08, 0x18, 0x50, 0x09, 0x57, 0xaa, 0xfe, 0xfb,\n  0x57, 0x40, 0x7d, 0x34, 0x80, 0xd0, 0x5d, 0xa4, 0xd4, 0x1b, 0x1a, 0x59,\n  0x67, 0x09, 0xd2, 0xa3, 0x60, 0x20, 0x8f, 0x0e, 0xd9, 0xd1, 0x6f, 0x42,\n  0x69, 0xfa, 0xa7, 0xc5, 0x45, 0x2e, 0x74, 0x06, 0xb7, 0xfd, 0x1a, 0xee,\n  0x0c, 0xdc, 0xe4, 0x1d, 0x2a, 0x0a, 0xf5, 0xea, 0x60, 0xf6, 0xb1, 0x38,\n  0x7f, 0x0c, 0x77, 0xc6, 0xeb, 0xd0, 0x27, 0x23, 0x01, 0x2d, 0x1b, 0xfc,\n  0xb2, 0xf1, 0x31, 0xfe, 0x9e, 0x10, 0x64, 0xf7, 0xb6, 0x1e, 0xdb, 0xe9,\n  0x10, 0xca, 0xfe, 0x10, 0x11, 0x0b, 0xa5, 0x11, 0x4b, 0xfd, 0xb5, 0xfc,\n  0x3c, 0xff, 0x59, 0x03, 0x9d, 0xfd, 0xc1, 0x16, 0x31, 0x03, 0xaa, 0xea,\n  0x41, 0xea, 0xc6, 0xe2, 0x92, 0x2e, 0xc8, 0x29, 0xbf, 0xbd, 0x94, 0xed,\n  0x5a, 0x2d, 0xe4, 0x0e, 0xfe, 0xee, 0xb2, 0xf7, 0xeb, 0x06, 0x6f, 0x04,\n  0x1f, 0xfc, 0x85, 0x00, 0x99, 0x0a, 0x63, 0x07, 0x4f, 0xd8, 0x2e, 0x00,\n  0xb0, 0x1d, 0x15, 0x0e, 0x82, 0x04, 0xb4, 0xe9, 0xe3, 0xcf, 0x00, 0x07,\n  0x5f, 0x23, 0xf2, 0x00, 0xfd, 0xfd, 0x19, 0x01, 0xac, 0x08, 0x2c, 0xf3,\n  0x8f, 0xfc, 0x8a, 0x08, 0x39, 0x02, 0xe7, 0xfe, 0xf2, 0x06, 0x10, 0xef,\n  0x13, 0xfc, 0x35, 0x0d, 0xe4, 0x01, 0xc8, 0x13, 0xe3, 0xff, 0x7b, 0xcb,\n  0xf9, 0xf9, 0x66, 0x25, 0xcb, 0x16, 0x4f, 0x03, 0x2c, 0xcb, 0xf3, 0xf1,\n  0x2c, 0x1f, 0x46, 0x13, 0x09, 0xf7, 0xa6, 0xed, 0xd2, 0x1f, 0xd0, 0x0f,\n  0x63, 0xe6, 0x61, 0xe9, 0x94, 0xe7, 0x88, 0x19, 0xd5, 0x11, 0xda, 0xf6,\n  0xf3, 0x04, 0x78, 0xff, 0xa3, 0x04, 0x82, 0xf7, 0xe1, 0xfb, 0x63, 0x07,\n  0x27, 0x03, 0xdd, 0xff, 0xde, 0x0f, 0x4d, 0xeb, 0xf8, 0xe6, 0x12, 0x14,\n  0x09, 0x0e, 0x1d, 0xfb, 0x1e, 0xf8, 0xad, 0x18, 0xe6, 0x00, 0x68, 0xf1,\n  0xe0, 0xdc, 0x6b, 0x03, 0x4b, 0x1d, 0x8c, 0xed, 0x19, 0x17, 0xed, 0xf8,\n  0xc6, 0xec, 0x17, 0x0c, 0xd5, 0x08, 0x8a, 0x08, 0xaf, 0xfe, 0xfd, 0xfb,\n  0x03, 0xe9, 0xdc, 0xf1, 0x8e, 0x19, 0x40, 0x0c, 0x41, 0xfa, 0x8f, 0x0c,\n  0xb8, 0x01, 0x21, 0xed, 0x2e, 0xde, 0xab, 0x05, 0x89, 0x24, 0x46, 0x01,\n  0xc1, 0xf7, 0xbb, 0x02, 0x37, 0x07, 0x29, 0xf6, 0xcd, 0xfa, 0x32, 0x0c,\n  0x67, 0xf1, 0x27, 0xe2, 0x25, 0x13, 0xbf, 0x18, 0xa7, 0x04, 0x20, 0xf3,\n  0xba, 0x01, 0x99, 0xf3, 0x9c, 0xff, 0xbc, 0x10, 0xf9, 0xf1, 0xfd, 0x00,\n  0x61, 0x09, 0xc4, 0x00, 0x57, 0xf2, 0xef, 0x02, 0xba, 0x06, 0x37, 0x00,\n  0x7f, 0xfc, 0x7e, 0xff, 0xd4, 0x00, 0x67, 0x03, 0xf7, 0x0a, 0x9f, 0xfd,\n  0x0d, 0xe0, 0x91, 0xfc, 0xa9, 0x17, 0x91, 0x0c, 0x53, 0x04, 0xec, 0xf2,\n  0xf3, 0xe0, 0xd4, 0x0c, 0x54, 0x20, 0xdc, 0xf1, 0x9b, 0xea, 0x08, 0x06,\n  0xdf, 0x0a, 0x69, 0xfb, 0x96, 0xff, 0x4b, 0x03, 0x9d, 0x01, 0x3c, 0xfe,\n  0x19, 0x0a, 0x9d, 0x01, 0xd2, 0xe6, 0xa1, 0xfc, 0x31, 0x0d, 0xaf, 0x10,\n  0x07, 0x00, 0x00, 0xf3, 0xd9, 0xf8, 0x67, 0xfc, 0x34, 0xfe, 0x20, 0xfa,\n  0x54, 0x14, 0x97, 0x01, 0x79, 0xf2, 0xd3, 0x03, 0x24, 0x05, 0xaf, 0x00,\n  0x21, 0xfc, 0x56, 0x00, 0x6c, 0xff, 0xa6, 0x05, 0x30, 0x07, 0x9e, 0xf9,\n  0x1e, 0xf6, 0x76, 0xee, 0x80, 0x0c, 0x9f, 0x16, 0x44, 0xf3, 0x84, 0xee,\n  0x66, 0x09, 0xf9, 0x0a, 0x6f, 0xfd, 0xc1, 0xfa, 0xa4, 0x00, 0x5d, 0x02,\n  0xf5, 0x02, 0x6d, 0xfc, 0xb6, 0xf9, 0xd1, 0x02, 0xb3, 0x06, 0x0b, 0x05,\n  0x0d, 0xfc, 0x0d, 0xf8, 0x1f, 0xfd, 0xf5, 0x02, 0x6f, 0x02, 0x6c, 0xf8,\n  0x49, 0xf4, 0x24, 0x0c, 0x1e, 0x0b, 0x43, 0xfd, 0x3a, 0xfa, 0xd1, 0x03,\n  0xd0, 0x00, 0x59, 0xfa, 0x4b, 0x01, 0x3b, 0x03, 0xb2, 0xfe, 0xc1, 0xfd,\n  0xa1, 0x00, 0x5e, 0x01, 0x62, 0x04, 0xf7, 0xfe, 0x5f, 0xf3, 0x3f, 0x02,\n  0xe6, 0x0c, 0x9d, 0xf9, 0x91, 0xfd, 0xbf, 0x03, 0x0c, 0xfe, 0x30, 0xfe,\n  0x63, 0xff, 0x5f, 0xff, 0xa7, 0x00, 0x55, 0xf8, 0x4c, 0xfb, 0x76, 0x0b,\n  0x5a, 0x05, 0xf3, 0xfc, 0xa1, 0xfc, 0x43, 0x03, 0xe7, 0x06, 0x7d, 0xfc,\n  0xe6, 0xf0, 0x54, 0xfe, 0x41, 0x0c, 0x4b, 0x02, 0xb7, 0xfc, 0x38, 0xff,\n  0xd5, 0x02, 0xee, 0xfa, 0x5f, 0xfd, 0xff, 0x08, 0xc9, 0xfb, 0x3c, 0xf9,\n  0x89, 0x03, 0xcf, 0x03, 0xd2, 0xfe, 0x88, 0xfe, 0xbf, 0xff, 0x27, 0x02,\n  0xde, 0xff, 0xa8, 0xfb, 0x4d, 0x00, 0x83, 0x03, 0x7b, 0x02, 0xbd, 0xfe,\n  0x43, 0xfd, 0xdc, 0xfb, 0x6d, 0xfd, 0xcd, 0x02, 0x39, 0x03, 0x29, 0x03,\n  0xa3, 0xfe, 0xd5, 0xf8, 0x5a, 0x01, 0x6f, 0x04, 0x3d, 0x00, 0xd9, 0xfd,\n  0xba, 0x01, 0x47, 0xfc, 0x8f, 0xff, 0x38, 0x05, 0xda, 0x00, 0x79, 0xfd,\n  0x55, 0xfd, 0x65, 0xff, 0x53, 0x00, 0xb4, 0xff, 0xb3, 0xff, 0x44, 0xff,\n  0x5d, 0x01, 0x76, 0x00, 0xc9, 0xff, 0x1c, 0xfa, 0x3e, 0xff, 0x68, 0x06,\n  0xd2, 0xff, 0x65, 0xff, 0xce, 0xff, 0xaf, 0x02, 0xa3, 0xfe, 0x09, 0xfb,\n  0xbf, 0x00, 0x17, 0x03, 0x01, 0x00, 0x88, 0xfe, 0xc3, 0xff, 0x59, 0x00,\n  0x10, 0x00, 0x9e, 0xff, 0x5c, 0xff, 0x1d, 0x00, 0x16, 0x00, 0x8b, 0x01,\n  0x7c, 0x00, 0xf3, 0xfe, 0x81, 0xfd, 0x62, 0xff, 0xe4, 0xff, 0x77, 0xfd,\n  0x35, 0x02, 0x31, 0x02, 0x11, 0x00, 0x2a, 0x01, 0x99, 0xff, 0x12, 0xfe,\n  0xb1, 0xfb, 0x26, 0x00, 0xf5, 0x03, 0xc5, 0x00, 0x96, 0xfe, 0x63, 0xff,\n  0x4d, 0x00, 0xbc, 0x00, 0x75, 0xff, 0x15, 0xff, 0xc3, 0xff, 0x6d, 0x00,\n  0x9c, 0x01, 0xbb, 0xfd, 0x45, 0xff, 0x51, 0x02, 0x53, 0xff, 0x72, 0xff,\n  0xd3, 0xfe, 0xbb, 0xfc, 0x15, 0x03, 0x23, 0x03, 0xd6, 0xfe, 0x0d, 0xfc,\n  0x70, 0xfe, 0x69, 0x03, 0x3d, 0x01, 0x03, 0xff, 0x1b, 0xff, 0x61, 0x00,\n  0xf6, 0xff, 0x05, 0x00, 0xad, 0xff, 0x27, 0xff, 0x28, 0x01, 0xe7, 0xff,\n  0x48, 0xfe, 0x4a, 0x00, 0xa6, 0x00, 0xfe, 0xff, 0xcc, 0xff, 0x5d, 0x01,\n  0xba, 0xfe, 0x13, 0xfe, 0xf9, 0xff, 0x83, 0x00, 0xa3, 0x00, 0xc8, 0xff,\n  0xe4, 0xff, 0xda, 0xff, 0x31, 0x00, 0xba, 0xff, 0x92, 0xff, 0x07, 0x00,\n  0x40, 0x00, 0x1d, 0x00, 0x44, 0xff, 0xb3, 0xff, 0x2e, 0x00, 0xff, 0xff,\n  0xf0, 0xff, 0xd2, 0xff, 0x73, 0x00, 0x69, 0xff, 0x66, 0xff, 0x8f, 0x00,\n  0xc3, 0xff, 0xba, 0xff, 0x04, 0x00, 0x40, 0x00, 0xe3, 0xff, 0x20, 0x00,\n  0x2b, 0x00, 0x12, 0xff, 0x27, 0xff, 0x35, 0x00, 0x26, 0x00, 0xdd, 0x00,\n  0xbf, 0xff, 0x7e, 0xfe, 0x1c, 0x00, 0x32, 0x00, 0x23, 0x00, 0x22, 0x00,\n  0xe3, 0xff, 0xd4, 0xff, 0xf0, 0xff, 0xd5, 0xff, 0x22, 0x00, 0xea, 0xff,\n  0xf2, 0xff, 0xfb, 0xff, 0x15, 0xff, 0xef, 0xff, 0x58, 0x00, 0x1c, 0x00,\n  0xe0, 0xff, 0xd2, 0xff, 0xf2, 0xff, 0x6d, 0x00, 0xc3, 0xff, 0xf3, 0xfe,\n  0xe7, 0xff, 0x89, 0x00, 0x1a, 0x00, 0xc5, 0xff, 0xd4, 0xff, 0xf6, 0xff,\n  0x05, 0x00, 0x10, 0x00, 0x25, 0x00, 0x54, 0xff, 0x57, 0xff, 0x52, 0x00,\n  0x44, 0x00, 0xf3, 0xff, 0xda, 0xff, 0xe7, 0xff, 0xd8, 0xff, 0xef, 0xff,\n  0xf9, 0xff, 0x37, 0x00, 0xa8, 0xff, 0x9c, 0xff, 0x13, 0x00, 0x0d, 0x00,\n  0xf5, 0xff, 0x13, 0x00, 0x01, 0x00, 0x90, 0xff, 0xab, 0xff, 0x17, 0x00,\n  0x59, 0x00, 0xa4, 0xff, 0x9b, 0xff, 0x20, 0x00, 0x16, 0x00, 0xf2, 0xff,\n  0xdd, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xe6, 0xff, 0x01, 0x00,\n  0xde, 0xff, 0xe1, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf8, 0xff,\n  0xfb, 0xff, 0xcc, 0xff, 0xf9, 0xff, 0xe7, 0xff, 0xf0, 0xff, 0xf3, 0xff,\n  0xf5, 0xff, 0x01, 0x00, 0xd7, 0xff, 0xe6, 0xff, 0xfc, 0xff, 0xf8, 0xff,\n  0xf2, 0xff, 0x0a, 0x00, 0xe1, 0xff, 0xce, 0xff, 0xd7, 0xff, 0xfc, 0xff,\n  0x05, 0x00, 0xfc, 0xff, 0xec, 0xff, 0xe4, 0xff, 0xf3, 0xff, 0xef, 0xff,\n  0xf3, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xef, 0xff,\n  0xf8, 0xff, 0x08, 0x00, 0xdd, 0xff, 0xcb, 0xff, 0xf5, 0xff, 0x00, 0x00,\n  0xfb, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xed, 0xff, 0x02, 0x00, 0xec, 0xff,\n  0xde, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf0, 0xff, 0xf2, 0xff,\n  0xf3, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf3, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xec, 0xff, 0xdb, 0xff, 0xe7, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xf3, 0xff, 0xe9, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xf0, 0xff,\n  0xf2, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff,\n  0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf2, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf3, 0xff,\n  0xfc, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xf9, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xf2, 0xff, 0xec, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff,\n  0xf2, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff,\n  0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf5, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff,\n  0xf9, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xf6, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xf8, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xf9, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0x07, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff,\n  0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x07, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x04, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x01, 0x00,\n  0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x05, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x05, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x08, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x07, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x05, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0x08, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xf9, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfb, 0xff, 0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfb, 0xff,\n  0x05, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x07, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x05, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff\n};\n#define  tr808_mc_wav_len 22128\nunsigned char tr808_mt_wav[] = {\n  0x52, 0x49, 0x46, 0x46, 0x3e, 0x7c, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45,\n  0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00,\n  0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e,\n  0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61,\n  0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61,\n  0x74, 0x61, 0xf8, 0x7b, 0x00, 0x00, 0x9b, 0xff, 0xb7, 0xff, 0x8f, 0xff,\n  0xe1, 0xff, 0x7b, 0xff, 0x17, 0x03, 0x8c, 0x10, 0x33, 0x20, 0x54, 0x2f,\n  0xe9, 0x3c, 0x65, 0x48, 0xb8, 0x51, 0x30, 0x58, 0xfc, 0x58, 0xd2, 0x58,\n  0xf6, 0x58, 0xcb, 0x58, 0xc8, 0x58, 0xa2, 0x58, 0x95, 0x58, 0x76, 0x58,\n  0x69, 0x58, 0x51, 0x58, 0x5a, 0x58, 0x4e, 0x58, 0x57, 0x58, 0x3f, 0x58,\n  0x56, 0x58, 0x2e, 0x58, 0x59, 0x58, 0x05, 0x58, 0x92, 0x58, 0x66, 0x56,\n  0xee, 0x52, 0x55, 0x51, 0xf1, 0x4e, 0xf1, 0x4c, 0xa1, 0x4a, 0x7d, 0x48,\n  0x2d, 0x46, 0xfd, 0x43, 0xa5, 0x41, 0x62, 0x3f, 0x14, 0x3d, 0xbc, 0x3a,\n  0x6c, 0x38, 0x07, 0x36, 0xb9, 0x33, 0xa6, 0x30, 0x80, 0x2c, 0x43, 0x28,\n  0x11, 0x24, 0x06, 0x20, 0x2b, 0x1c, 0x85, 0x18, 0x09, 0x15, 0xc2, 0x11,\n  0xa1, 0x0e, 0xa2, 0x0b, 0xc6, 0x08, 0x07, 0x06, 0x5b, 0x03, 0xc4, 0x00,\n  0x3d, 0xfe, 0xc2, 0xfb, 0x56, 0xf9, 0xf4, 0xf6, 0x9c, 0xf4, 0x49, 0xf2,\n  0x00, 0xf0, 0xbf, 0xed, 0x82, 0xeb, 0x4f, 0xe9, 0x1e, 0xe7, 0xf5, 0xe4,\n  0xd5, 0xe2, 0xb6, 0xe0, 0xa1, 0xde, 0x90, 0xdc, 0x86, 0xda, 0x83, 0xd8,\n  0x82, 0xd6, 0x90, 0xd4, 0xa3, 0xd2, 0xbb, 0xd0, 0xde, 0xce, 0x06, 0xcd,\n  0x34, 0xcb, 0x70, 0xc9, 0xaf, 0xc7, 0xf9, 0xc5, 0x4e, 0xc4, 0xa7, 0xc2,\n  0x0d, 0xc1, 0x7d, 0xbf, 0xf4, 0xbd, 0x7a, 0xbc, 0x00, 0xbb, 0x9d, 0xb9,\n  0x39, 0xb8, 0xe3, 0xb6, 0x9e, 0xb5, 0x5c, 0xb4, 0x28, 0xb3, 0xfc, 0xb1,\n  0xde, 0xb0, 0xca, 0xaf, 0xc2, 0xae, 0xc6, 0xad, 0xd1, 0xac, 0xf7, 0xab,\n  0x12, 0xab, 0x49, 0xaa, 0x7b, 0xa9, 0xc2, 0xa8, 0x1d, 0xa8, 0x77, 0xa7,\n  0xe7, 0xa6, 0x56, 0xa6, 0xda, 0xa5, 0x69, 0xa5, 0x02, 0xa5, 0xa9, 0xa4,\n  0x58, 0xa4, 0x12, 0xa4, 0xd9, 0xa3, 0xb0, 0xa3, 0x8c, 0xa3, 0x77, 0xa3,\n  0x68, 0xa3, 0x69, 0xa3, 0x74, 0xa3, 0x86, 0xa3, 0xa7, 0xa3, 0xd3, 0xa3,\n  0x09, 0xa4, 0x49, 0xa4, 0x94, 0xa4, 0xee, 0xa4, 0x4d, 0xa5, 0xb7, 0xa5,\n  0x2c, 0xa6, 0xad, 0xa6, 0x35, 0xa7, 0xc7, 0xa7, 0x66, 0xa8, 0x0b, 0xa9,\n  0xc0, 0xa9, 0x79, 0xaa, 0x3c, 0xab, 0x08, 0xac, 0xdd, 0xac, 0xc9, 0xad,\n  0xa6, 0xae, 0x98, 0xaf, 0x9a, 0xb0, 0x98, 0xb1, 0xa7, 0xb2, 0xb6, 0xb3,\n  0xd5, 0xb4, 0xff, 0xb5, 0x2b, 0xb7, 0x5f, 0xb8, 0x9c, 0xb9, 0xe2, 0xba,\n  0x2f, 0xbc, 0x83, 0xbd, 0xe0, 0xbe, 0x41, 0xc0, 0xb2, 0xc1, 0x20, 0xc3,\n  0x9a, 0xc4, 0x1d, 0xc6, 0xa3, 0xc7, 0x2f, 0xc9, 0xc4, 0xca, 0x5f, 0xcc,\n  0x00, 0xce, 0xa4, 0xcf, 0x52, 0xd1, 0x04, 0xd3, 0xbb, 0xd4, 0x7a, 0xd6,\n  0x3e, 0xd8, 0x03, 0xda, 0xd4, 0xdb, 0xa0, 0xdd, 0x7c, 0xdf, 0x55, 0xe1,\n  0x35, 0xe3, 0x18, 0xe5, 0xfd, 0xe6, 0xe8, 0xe8, 0xda, 0xea, 0xc8, 0xec,\n  0xbf, 0xee, 0xb2, 0xf0, 0xae, 0xf2, 0xaf, 0xf4, 0xaa, 0xf6, 0xae, 0xf8,\n  0xb0, 0xfa, 0xb1, 0xfc, 0xba, 0xfe, 0xbc, 0x00, 0xc5, 0x02, 0xca, 0x04,\n  0xd2, 0x06, 0xd8, 0x08, 0xdf, 0x0a, 0xe6, 0x0c, 0xe7, 0x0e, 0xef, 0x10,\n  0xef, 0x12, 0xf0, 0x14, 0xf0, 0x16, 0xed, 0x18, 0xe6, 0x1a, 0xdd, 0x1c,\n  0xcf, 0x1e, 0xc3, 0x20, 0xae, 0x22, 0x95, 0x24, 0x7b, 0x26, 0x58, 0x28,\n  0x36, 0x2a, 0x09, 0x2c, 0xdb, 0x2d, 0xa2, 0x2f, 0x69, 0x31, 0x25, 0x33,\n  0xe1, 0x34, 0x90, 0x36, 0x3c, 0x38, 0xe0, 0x39, 0x79, 0x3b, 0x11, 0x3d,\n  0x9d, 0x3e, 0x21, 0x40, 0x9d, 0x41, 0x12, 0x43, 0x7d, 0x44, 0xdc, 0x45,\n  0x3c, 0x47, 0x90, 0x48, 0xcf, 0x49, 0x12, 0x4b, 0x45, 0x4c, 0x6f, 0x4d,\n  0x91, 0x4e, 0xa8, 0x4f, 0xb6, 0x50, 0xb6, 0x51, 0xaf, 0x52, 0x9a, 0x53,\n  0x82, 0x54, 0x4d, 0x55, 0x2a, 0x56, 0xc5, 0x56, 0xac, 0x57, 0xd0, 0x57,\n  0xdd, 0x58, 0x53, 0x59, 0x0e, 0x59, 0x33, 0x59, 0x0e, 0x59, 0x1a, 0x59,\n  0x07, 0x59, 0x0b, 0x59, 0xfc, 0x58, 0xfc, 0x58, 0xf0, 0x58, 0xed, 0x58,\n  0xe5, 0x58, 0xe2, 0x58, 0xd7, 0x58, 0xd5, 0x58, 0xcc, 0x58, 0xc6, 0x58,\n  0xbf, 0x58, 0xbe, 0x58, 0xb8, 0x58, 0xaf, 0x58, 0xab, 0x58, 0xa5, 0x58,\n  0xa3, 0x58, 0x99, 0x58, 0x93, 0x58, 0x93, 0x58, 0x87, 0x58, 0x8c, 0x58,\n  0x73, 0x58, 0x9e, 0x58, 0x70, 0x57, 0xb9, 0x56, 0x10, 0x56, 0x3d, 0x55,\n  0x84, 0x54, 0xa1, 0x53, 0xd2, 0x52, 0xe0, 0x51, 0xf8, 0x50, 0xff, 0x4f,\n  0x08, 0x4f, 0xfe, 0x4d, 0xf1, 0x4c, 0xd8, 0x4b, 0xbf, 0x4a, 0x98, 0x49,\n  0x6e, 0x48, 0x3b, 0x47, 0x00, 0x46, 0xba, 0x44, 0x73, 0x43, 0x26, 0x42,\n  0xcc, 0x40, 0x72, 0x3f, 0x0e, 0x3e, 0xa3, 0x3c, 0x36, 0x3b, 0xbf, 0x39,\n  0x41, 0x38, 0xc1, 0x36, 0x39, 0x35, 0xaa, 0x33, 0x16, 0x32, 0x80, 0x30,\n  0xdf, 0x2e, 0x41, 0x2d, 0x9b, 0x2b, 0xec, 0x29, 0x3e, 0x28, 0x8a, 0x26,\n  0xd1, 0x24, 0x13, 0x23, 0x54, 0x21, 0x91, 0x1f, 0xc9, 0x1d, 0xfe, 0x1b,\n  0x2f, 0x1a, 0x5f, 0x18, 0x8b, 0x16, 0xb6, 0x14, 0xdb, 0x12, 0x02, 0x11,\n  0x20, 0x0f, 0x47, 0x0d, 0x66, 0x0b, 0x84, 0x09, 0xa3, 0x07, 0xbe, 0x05,\n  0xd9, 0x03, 0xf6, 0x01, 0x10, 0x00, 0x30, 0xfe, 0x49, 0xfc, 0x61, 0xfa,\n  0x81, 0xf8, 0x9e, 0xf6, 0xba, 0xf4, 0xdb, 0xf2, 0xfe, 0xf0, 0x21, 0xef,\n  0x47, 0xed, 0x70, 0xeb, 0x9c, 0xe9, 0xc8, 0xe7, 0xfa, 0xe5, 0x2d, 0xe4,\n  0x66, 0xe2, 0xa1, 0xe0, 0xe2, 0xde, 0x24, 0xdd, 0x6e, 0xdb, 0xbc, 0xd9,\n  0x0b, 0xd8, 0x63, 0xd6, 0xc1, 0xd4, 0x1d, 0xd3, 0x87, 0xd1, 0xf8, 0xcf,\n  0x66, 0xce, 0xe3, 0xcc, 0x63, 0xcb, 0xeb, 0xc9, 0x79, 0xc8, 0x10, 0xc7,\n  0xab, 0xc5, 0x55, 0xc4, 0xfa, 0xc2, 0xb2, 0xc1, 0x6d, 0xc0, 0x32, 0xbf,\n  0x00, 0xbe, 0xd3, 0xbc, 0xb6, 0xbb, 0x98, 0xba, 0x88, 0xb9, 0x7d, 0xb8,\n  0x81, 0xb7, 0x8b, 0xb6, 0xa7, 0xb5, 0xbe, 0xb4, 0xde, 0xb3, 0x18, 0xb3,\n  0x4a, 0xb2, 0x92, 0xb1, 0xdc, 0xb0, 0x34, 0xb0, 0x9a, 0xaf, 0xfa, 0xae,\n  0x70, 0xae, 0xee, 0xad, 0x79, 0xad, 0x04, 0xad, 0xa2, 0xac, 0x46, 0xac,\n  0xfa, 0xab, 0xbb, 0xab, 0x67, 0xab, 0x44, 0xab, 0x18, 0xab, 0xe8, 0xaa,\n  0xde, 0xaa, 0xcd, 0xaa, 0xcd, 0xaa, 0xd0, 0xaa, 0xe6, 0xaa, 0x00, 0xab,\n  0x24, 0xab, 0x54, 0xab, 0x87, 0xab, 0xc8, 0xab, 0x19, 0xac, 0x6b, 0xac,\n  0xc7, 0xac, 0x37, 0xad, 0x9c, 0xad, 0x20, 0xae, 0x9f, 0xae, 0x30, 0xaf,\n  0xc1, 0xaf, 0x5d, 0xb0, 0x03, 0xb1, 0xb7, 0xb1, 0x69, 0xb2, 0x2f, 0xb3,\n  0xf1, 0xb3, 0xc2, 0xb4, 0x9a, 0xb5, 0x77, 0xb6, 0x60, 0xb7, 0x4d, 0xb8,\n  0x46, 0xb9, 0x45, 0xba, 0x4a, 0xbb, 0x5a, 0xbc, 0x6f, 0xbd, 0x8c, 0xbe,\n  0xad, 0xbf, 0xda, 0xc0, 0x0b, 0xc2, 0x41, 0xc3, 0x7f, 0xc4, 0xc1, 0xc5,\n  0x13, 0xc7, 0x5d, 0xc8, 0xb4, 0xc9, 0x0e, 0xcb, 0x72, 0xcc, 0xd7, 0xcd,\n  0x43, 0xcf, 0xb3, 0xd0, 0x28, 0xd2, 0xa5, 0xd3, 0x22, 0xd5, 0xa8, 0xd6,\n  0x2e, 0xd8, 0xbe, 0xd9, 0x4c, 0xdb, 0xe4, 0xdc, 0x7d, 0xde, 0x18, 0xe0,\n  0xb6, 0xe1, 0x5d, 0xe3, 0x01, 0xe5, 0xa7, 0xe6, 0x52, 0xe8, 0xff, 0xe9,\n  0xaf, 0xeb, 0x5d, 0xed, 0x14, 0xef, 0xc8, 0xf0, 0x7e, 0xf2, 0x38, 0xf4,\n  0xf1, 0xf5, 0xac, 0xf7, 0x6a, 0xf9, 0x28, 0xfb, 0xe9, 0xfc, 0xa8, 0xfe,\n  0x68, 0x00, 0x29, 0x02, 0xe9, 0x03, 0xae, 0x05, 0x6e, 0x07, 0x2d, 0x09,\n  0xee, 0x0a, 0xad, 0x0c, 0x66, 0x0e, 0x22, 0x10, 0xdf, 0x11, 0x94, 0x13,\n  0x4e, 0x15, 0x02, 0x17, 0xb5, 0x18, 0x66, 0x1a, 0x15, 0x1c, 0xc3, 0x1d,\n  0x6b, 0x1f, 0x15, 0x21, 0xb6, 0x22, 0x59, 0x24, 0xf7, 0x25, 0x92, 0x27,\n  0x27, 0x29, 0xb9, 0x2a, 0x4b, 0x2c, 0xd5, 0x2d, 0x5d, 0x2f, 0xdf, 0x30,\n  0x5a, 0x32, 0xd2, 0x33, 0x42, 0x35, 0xac, 0x36, 0x12, 0x38, 0x6d, 0x39,\n  0xc1, 0x3a, 0x15, 0x3c, 0x56, 0x3d, 0x93, 0x3e, 0xc8, 0x3f, 0xf1, 0x40,\n  0x16, 0x42, 0x30, 0x43, 0x3b, 0x44, 0x45, 0x45, 0x41, 0x46, 0x32, 0x47,\n  0x26, 0x48, 0xfa, 0x48, 0xdb, 0x49, 0xb0, 0x4a, 0x5e, 0x4b, 0x2d, 0x4c,\n  0xd5, 0x4c, 0x7d, 0x4d, 0x31, 0x4e, 0xbe, 0x4e, 0x4e, 0x4f, 0xda, 0x4f,\n  0x58, 0x50, 0xce, 0x50, 0x40, 0x51, 0xa3, 0x51, 0x02, 0x52, 0x54, 0x52,\n  0x9e, 0x52, 0xe4, 0x52, 0x17, 0x53, 0x49, 0x53, 0x6e, 0x53, 0x8b, 0x53,\n  0x9d, 0x53, 0xa8, 0x53, 0xa8, 0x53, 0xa4, 0x53, 0x8f, 0x53, 0x7a, 0x53,\n  0x53, 0x53, 0x2a, 0x53, 0xf9, 0x52, 0xbb, 0x52, 0x76, 0x52, 0x28, 0x52,\n  0xd2, 0x51, 0x71, 0x51, 0x06, 0x51, 0x94, 0x50, 0x19, 0x50, 0x95, 0x4f,\n  0x08, 0x4f, 0x76, 0x4e, 0xda, 0x4d, 0x32, 0x4d, 0x89, 0x4c, 0xd0, 0x4b,\n  0x18, 0x4b, 0x50, 0x4a, 0x89, 0x49, 0xbe, 0x48, 0xd9, 0x47, 0x01, 0x47,\n  0x15, 0x46, 0x2c, 0x45, 0x33, 0x44, 0x36, 0x43, 0x2c, 0x42, 0x24, 0x41,\n  0x0e, 0x40, 0xf0, 0x3e, 0xd0, 0x3d, 0xa0, 0x3c, 0x6b, 0x3b, 0x2b, 0x3a,\n  0xe7, 0x38, 0x9b, 0x37, 0x44, 0x36, 0xea, 0x34, 0x88, 0x33, 0x19, 0x32,\n  0xa3, 0x30, 0x2d, 0x2f, 0xa9, 0x2d, 0x24, 0x2c, 0x95, 0x2a, 0x03, 0x29,\n  0x6e, 0x27, 0xd1, 0x25, 0x33, 0x24, 0x91, 0x22, 0xed, 0x20, 0x45, 0x1f,\n  0x9d, 0x1d, 0xef, 0x1b, 0x45, 0x1a, 0x98, 0x18, 0xe8, 0x16, 0x39, 0x15,\n  0x88, 0x13, 0xd4, 0x11, 0x1f, 0x10, 0x6c, 0x0e, 0xb8, 0x0c, 0x04, 0x0b,\n  0x50, 0x09, 0x9f, 0x07, 0xe7, 0x05, 0x3a, 0x04, 0x87, 0x02, 0xd4, 0x00,\n  0x27, 0xff, 0x79, 0xfd, 0xc9, 0xfb, 0x16, 0xfa, 0x6c, 0xf8, 0xbb, 0xf6,\n  0x10, 0xf5, 0x60, 0xf3, 0xb6, 0xf1, 0x0b, 0xf0, 0x64, 0xee, 0xc0, 0xec,\n  0x18, 0xeb, 0x77, 0xe9, 0xd4, 0xe7, 0x38, 0xe6, 0x9f, 0xe4, 0x0a, 0xe3,\n  0x7a, 0xe1, 0xeb, 0xdf, 0x62, 0xde, 0xdd, 0xdc, 0x61, 0xdb, 0xe5, 0xd9,\n  0x70, 0xd8, 0xfd, 0xd6, 0x8c, 0xd5, 0x21, 0xd4, 0xbc, 0xd2, 0x5b, 0xd1,\n  0xfc, 0xcf, 0xa2, 0xce, 0x55, 0xcd, 0x04, 0xcc, 0xb6, 0xca, 0x75, 0xc9,\n  0x39, 0xc8, 0xff, 0xc6, 0xd2, 0xc5, 0xa9, 0xc4, 0x88, 0xc3, 0x6f, 0xc2,\n  0x5e, 0xc1, 0x5a, 0xc0, 0x5d, 0xbf, 0x69, 0xbe, 0x7c, 0xbd, 0x96, 0xbc,\n  0xbd, 0xbb, 0xf0, 0xba, 0x27, 0xba, 0x6e, 0xb9, 0xbc, 0xb8, 0x11, 0xb8,\n  0x78, 0xb7, 0xe6, 0xb6, 0x5e, 0xb6, 0xdc, 0xb5, 0x69, 0xb5, 0x01, 0xb5,\n  0x9b, 0xb4, 0x47, 0xb4, 0x01, 0xb4, 0xbb, 0xb3, 0x8d, 0xb3, 0x5a, 0xb3,\n  0x3e, 0xb3, 0x2f, 0xb3, 0x19, 0xb3, 0x1f, 0xb3, 0x23, 0xb3, 0x37, 0xb3,\n  0x57, 0xb3, 0x79, 0xb3, 0xa6, 0xb3, 0xd6, 0xb3, 0x1d, 0xb4, 0x63, 0xb4,\n  0xb4, 0xb4, 0x0b, 0xb5, 0x6b, 0xb5, 0xd7, 0xb5, 0x45, 0xb6, 0xbf, 0xb6,\n  0x40, 0xb7, 0xc6, 0xb7, 0x50, 0xb8, 0xe9, 0xb8, 0x82, 0xb9, 0x27, 0xba,\n  0xcf, 0xba, 0x82, 0xbb, 0x3b, 0xbc, 0xf7, 0xbc, 0xbd, 0xbd, 0x83, 0xbe,\n  0x54, 0xbf, 0x28, 0xc0, 0x01, 0xc1, 0xe0, 0xc1, 0xc2, 0xc2, 0xa7, 0xc3,\n  0x94, 0xc4, 0x7f, 0xc5, 0x6d, 0xc6, 0x61, 0xc7, 0x58, 0xc8, 0x53, 0xc9,\n  0x4e, 0xca, 0x50, 0xcb, 0x54, 0xcc, 0x58, 0xcd, 0x61, 0xce, 0x6d, 0xcf,\n  0x7f, 0xd0, 0x93, 0xd1, 0xa6, 0xd2, 0xc1, 0xd3, 0xde, 0xd4, 0xfe, 0xd5,\n  0x21, 0xd7, 0x47, 0xd8, 0x6f, 0xd9, 0x9d, 0xda, 0xca, 0xdb, 0xfb, 0xdc,\n  0x32, 0xde, 0x63, 0xdf, 0x9c, 0xe0, 0xd3, 0xe1, 0x0a, 0xe3, 0x46, 0xe4,\n  0x82, 0xe5, 0xbe, 0xe6, 0x01, 0xe8, 0x41, 0xe9, 0x88, 0xea, 0xd0, 0xeb,\n  0x1a, 0xed, 0x66, 0xee, 0xb4, 0xef, 0x09, 0xf1, 0x5a, 0xf2, 0xb3, 0xf3,\n  0x0c, 0xf5, 0x6a, 0xf6, 0xc8, 0xf7, 0x2d, 0xf9, 0x8e, 0xfa, 0xf5, 0xfb,\n  0x5f, 0xfd, 0xc6, 0xfe, 0x37, 0x00, 0xa6, 0x01, 0x19, 0x03, 0x92, 0x04,\n  0x08, 0x06, 0x88, 0x07, 0x05, 0x09, 0x82, 0x0a, 0x06, 0x0c, 0x88, 0x0d,\n  0x08, 0x0f, 0x8e, 0x10, 0x0e, 0x12, 0x90, 0x13, 0x10, 0x15, 0x8c, 0x16,\n  0x0b, 0x18, 0x85, 0x19, 0xfd, 0x1a, 0x79, 0x1c, 0xeb, 0x1d, 0x5e, 0x1f,\n  0xcc, 0x20, 0x3d, 0x22, 0xa4, 0x23, 0x0d, 0x25, 0x72, 0x26, 0xd2, 0x27,\n  0x2d, 0x29, 0x83, 0x2a, 0xd9, 0x2b, 0x23, 0x2d, 0x69, 0x2e, 0xad, 0x2f,\n  0xec, 0x30, 0x24, 0x32, 0x53, 0x33, 0x7f, 0x34, 0xa2, 0x35, 0xbd, 0x36,\n  0xd7, 0x37, 0xe3, 0x38, 0xe9, 0x39, 0xea, 0x3a, 0xe3, 0x3b, 0xd4, 0x3c,\n  0xbf, 0x3d, 0x9c, 0x3e, 0x78, 0x3f, 0x3f, 0x40, 0x04, 0x41, 0xbf, 0x41,\n  0x6b, 0x42, 0x11, 0x43, 0xa6, 0x43, 0x33, 0x44, 0xb3, 0x44, 0x2b, 0x45,\n  0x9d, 0x45, 0xfa, 0x45, 0x57, 0x46, 0x9c, 0x46, 0xde, 0x46, 0x1d, 0x47,\n  0x41, 0x47, 0x63, 0x47, 0x7d, 0x47, 0x8b, 0x47, 0x89, 0x47, 0x8b, 0x47,\n  0x7d, 0x47, 0x62, 0x47, 0x46, 0x47, 0x1d, 0x47, 0xee, 0x46, 0xb4, 0x46,\n  0x80, 0x46, 0x34, 0x46, 0xe9, 0x45, 0xa3, 0x45, 0x48, 0x45, 0xed, 0x44,\n  0x8b, 0x44, 0x2a, 0x44, 0xbb, 0x43, 0x4d, 0x43, 0xd3, 0x42, 0x58, 0x42,\n  0xd6, 0x41, 0x4a, 0x41, 0xc0, 0x40, 0x28, 0x40, 0x8e, 0x3f, 0xf1, 0x3e,\n  0x45, 0x3e, 0x9b, 0x3d, 0xe8, 0x3c, 0x2c, 0x3c, 0x6c, 0x3b, 0xa8, 0x3a,\n  0xd8, 0x39, 0x02, 0x39, 0x29, 0x38, 0x45, 0x37, 0x5c, 0x36, 0x6c, 0x35,\n  0x76, 0x34, 0x7a, 0x33, 0x75, 0x32, 0x6c, 0x31, 0x5f, 0x30, 0x47, 0x2f,\n  0x32, 0x2e, 0x12, 0x2d, 0xee, 0x2b, 0xc7, 0x2a, 0x97, 0x29, 0x69, 0x28,\n  0x32, 0x27, 0xfa, 0x25, 0xbf, 0x24, 0x7e, 0x23, 0x3d, 0x22, 0xf4, 0x20,\n  0xa6, 0x1f, 0x5c, 0x1e, 0x0c, 0x1d, 0xba, 0x1b, 0x63, 0x1a, 0x0e, 0x19,\n  0xb3, 0x17, 0x59, 0x16, 0xf6, 0x14, 0x94, 0x13, 0x2f, 0x12, 0xc6, 0x10,\n  0x5d, 0x0f, 0xea, 0x0d, 0x77, 0x0c, 0xff, 0x0a, 0x88, 0x09, 0x0f, 0x08,\n  0x92, 0x06, 0x14, 0x05, 0x93, 0x03, 0x11, 0x02, 0x91, 0x00, 0x11, 0xff,\n  0x8f, 0xfd, 0x0d, 0xfc, 0x8a, 0xfa, 0x0a, 0xf9, 0x8a, 0xf7, 0x09, 0xf6,\n  0x8a, 0xf4, 0x11, 0xf3, 0x94, 0xf1, 0x1c, 0xf0, 0xaa, 0xee, 0x34, 0xed,\n  0xc3, 0xeb, 0x58, 0xea, 0xef, 0xe8, 0x88, 0xe7, 0x26, 0xe6, 0xc8, 0xe4,\n  0x70, 0xe3, 0x1d, 0xe2, 0xca, 0xe0, 0x80, 0xdf, 0x38, 0xde, 0xf4, 0xdc,\n  0xb7, 0xdb, 0x7e, 0xda, 0x49, 0xd9, 0x15, 0xd8, 0xeb, 0xd6, 0xc7, 0xd5,\n  0xa2, 0xd4, 0x8b, 0xd3, 0x74, 0xd2, 0x62, 0xd1, 0x5b, 0xd0, 0x50, 0xcf,\n  0x4e, 0xce, 0x4f, 0xcd, 0x5d, 0xcc, 0x68, 0xcb, 0x7a, 0xca, 0x8f, 0xc9,\n  0xb2, 0xc8, 0xd7, 0xc7, 0x01, 0xc7, 0x33, 0xc6, 0x68, 0xc5, 0xa9, 0xc4,\n  0xeb, 0xc3, 0x3c, 0xc3, 0x8a, 0xc2, 0xe5, 0xc1, 0x48, 0xc1, 0xad, 0xc0,\n  0x20, 0xc0, 0x97, 0xbf, 0x18, 0xbf, 0xa0, 0xbe, 0x35, 0xbe, 0xcc, 0xbd,\n  0x75, 0xbd, 0x1d, 0xbd, 0xd3, 0xbc, 0x8e, 0xbc, 0x55, 0xbc, 0x1f, 0xbc,\n  0xf9, 0xbb, 0xce, 0xbb, 0xb6, 0xbb, 0xa7, 0xbb, 0x98, 0xbb, 0x97, 0xbb,\n  0x9a, 0xbb, 0xa8, 0xbb, 0xb6, 0xbb, 0xcb, 0xbb, 0xe9, 0xbb, 0x0a, 0xbc,\n  0x35, 0xbc, 0x65, 0xbc, 0x96, 0xbc, 0xd2, 0xbc, 0x12, 0xbd, 0x5c, 0xbd,\n  0xac, 0xbd, 0x00, 0xbe, 0x59, 0xbe, 0xb9, 0xbe, 0x22, 0xbf, 0x8b, 0xbf,\n  0x01, 0xc0, 0x78, 0xc0, 0xf8, 0xc0, 0x81, 0xc1, 0x0c, 0xc2, 0xa2, 0xc2,\n  0x3c, 0xc3, 0xe1, 0xc3, 0x87, 0xc4, 0x37, 0xc5, 0xec, 0xc5, 0xa4, 0xc6,\n  0x69, 0xc7, 0x29, 0xc8, 0xfc, 0xc8, 0xcb, 0xc9, 0xa2, 0xca, 0x81, 0xcb,\n  0x65, 0xcc, 0x4b, 0xcd, 0x36, 0xce, 0x2c, 0xcf, 0x21, 0xd0, 0x23, 0xd1,\n  0x29, 0xd2, 0x37, 0xd3, 0x4a, 0xd4, 0x62, 0xd5, 0x82, 0xd6, 0xaa, 0xd7,\n  0xd8, 0xd8, 0x09, 0xda, 0x41, 0xdb, 0x7d, 0xdc, 0xbe, 0xdd, 0x04, 0xdf,\n  0x51, 0xe0, 0x9f, 0xe1, 0xf3, 0xe2, 0x47, 0xe4, 0xa2, 0xe5, 0x01, 0xe7,\n  0x61, 0xe8, 0xc5, 0xe9, 0x27, 0xeb, 0x8e, 0xec, 0xf4, 0xed, 0x5e, 0xef,\n  0xc9, 0xf0, 0x36, 0xf2, 0xa4, 0xf3, 0x12, 0xf5, 0x83, 0xf6, 0xf4, 0xf7,\n  0x6a, 0xf9, 0xe0, 0xfa, 0x55, 0xfc, 0xcb, 0xfd, 0x47, 0xff, 0xbb, 0x00,\n  0x37, 0x02, 0xaf, 0x03, 0x27, 0x05, 0x9e, 0x06, 0x0f, 0x08, 0x7f, 0x09,\n  0xec, 0x0a, 0x59, 0x0c, 0xbf, 0x0d, 0x20, 0x0f, 0x82, 0x10, 0xe0, 0x11,\n  0x3d, 0x13, 0x92, 0x14, 0xe9, 0x15, 0x3a, 0x17, 0x82, 0x18, 0xcd, 0x19,\n  0x0f, 0x1b, 0x4d, 0x1c, 0x8a, 0x1d, 0xbf, 0x1e, 0xee, 0x1f, 0x1a, 0x21,\n  0x3e, 0x22, 0x5e, 0x23, 0x78, 0x24, 0x8d, 0x25, 0x99, 0x26, 0xa1, 0x27,\n  0xa3, 0x28, 0xa2, 0x29, 0x99, 0x2a, 0x87, 0x2b, 0x79, 0x2c, 0x5c, 0x2d,\n  0x40, 0x2e, 0x1b, 0x2f, 0xf6, 0x2f, 0xcb, 0x30, 0x9e, 0x31, 0x69, 0x32,\n  0x35, 0x33, 0xf8, 0x33, 0xb8, 0x34, 0x72, 0x35, 0x26, 0x36, 0xd8, 0x36,\n  0x81, 0x37, 0x24, 0x38, 0xc0, 0x38, 0x56, 0x39, 0xe2, 0x39, 0x70, 0x3a,\n  0xee, 0x3a, 0x69, 0x3b, 0xde, 0x3b, 0x49, 0x3c, 0xb1, 0x3c, 0x13, 0x3d,\n  0x6c, 0x3d, 0xbc, 0x3d, 0x0b, 0x3e, 0x4b, 0x3e, 0x83, 0x3e, 0xb8, 0x3e,\n  0xe4, 0x3e, 0x0a, 0x3f, 0x22, 0x3f, 0x38, 0x3f, 0x40, 0x3f, 0x46, 0x3f,\n  0x44, 0x3f, 0x39, 0x3f, 0x28, 0x3f, 0x11, 0x3f, 0xed, 0x3e, 0xcb, 0x3e,\n  0x9c, 0x3e, 0x63, 0x3e, 0x31, 0x3e, 0xeb, 0x3d, 0xa8, 0x3d, 0x5e, 0x3d,\n  0x09, 0x3d, 0xb7, 0x3c, 0x5a, 0x3c, 0xfc, 0x3b, 0x97, 0x3b, 0x2a, 0x3b,\n  0xbe, 0x3a, 0x4b, 0x3a, 0xd5, 0x39, 0x56, 0x39, 0xd5, 0x38, 0x4a, 0x38,\n  0xbc, 0x37, 0x2d, 0x37, 0x90, 0x36, 0xf4, 0x35, 0x4e, 0x35, 0xa3, 0x34,\n  0xf3, 0x33, 0x41, 0x33, 0x84, 0x32, 0xc6, 0x31, 0x07, 0x31, 0x3e, 0x30,\n  0x76, 0x2f, 0x9f, 0x2e, 0xca, 0x2d, 0xf1, 0x2c, 0x13, 0x2c, 0x2d, 0x2b,\n  0x46, 0x2a, 0x57, 0x29, 0x64, 0x28, 0x6b, 0x27, 0x72, 0x26, 0x6c, 0x25,\n  0x62, 0x24, 0x58, 0x23, 0x3f, 0x22, 0x2b, 0x21, 0x08, 0x20, 0xe9, 0x1e,\n  0xba, 0x1d, 0x8f, 0x1c, 0x5c, 0x1b, 0x26, 0x1a, 0xef, 0x18, 0xb0, 0x17,\n  0x72, 0x16, 0x2f, 0x15, 0xe9, 0x13, 0xa4, 0x12, 0x5d, 0x11, 0x10, 0x10,\n  0xc7, 0x0e, 0x76, 0x0d, 0x28, 0x0c, 0xdc, 0x0a, 0x8d, 0x09, 0x3c, 0x08,\n  0xec, 0x06, 0x9f, 0x05, 0x52, 0x04, 0x05, 0x03, 0xb5, 0x01, 0x6d, 0x00,\n  0x21, 0xff, 0xd7, 0xfd, 0x8d, 0xfc, 0x42, 0xfb, 0xf9, 0xf9, 0xb4, 0xf8,\n  0x6c, 0xf7, 0x29, 0xf6, 0xe6, 0xf4, 0xa4, 0xf3, 0x67, 0xf2, 0x2a, 0xf1,\n  0xf2, 0xef, 0xbc, 0xee, 0x8a, 0xed, 0x5b, 0xec, 0x2b, 0xeb, 0xff, 0xe9,\n  0xd3, 0xe8, 0xaa, 0xe7, 0x86, 0xe6, 0x5e, 0xe5, 0x3c, 0xe4, 0x1b, 0xe3,\n  0x01, 0xe2, 0xeb, 0xe0, 0xd6, 0xdf, 0xc8, 0xde, 0xc2, 0xdd, 0xc1, 0xdc,\n  0xbf, 0xdb, 0xcb, 0xda, 0xd7, 0xd9, 0xe9, 0xd8, 0x02, 0xd8, 0x1e, 0xd7,\n  0x41, 0xd6, 0x62, 0xd5, 0x8c, 0xd4, 0xb9, 0xd3, 0xeb, 0xd2, 0x23, 0xd2,\n  0x5d, 0xd1, 0x9e, 0xd0, 0xe3, 0xcf, 0x2c, 0xcf, 0x7e, 0xce, 0xcf, 0xcd,\n  0x2d, 0xcd, 0x88, 0xcc, 0xec, 0xcb, 0x55, 0xcb, 0xc3, 0xca, 0x40, 0xca,\n  0xb6, 0xc9, 0x3b, 0xc9, 0xc3, 0xc8, 0x55, 0xc8, 0xee, 0xc7, 0x90, 0xc7,\n  0x37, 0xc7, 0xe9, 0xc6, 0xa1, 0xc6, 0x62, 0xc6, 0x2b, 0xc6, 0xfa, 0xc5,\n  0xce, 0xc5, 0xab, 0xc5, 0x8c, 0xc5, 0x6f, 0xc5, 0x60, 0xc5, 0x4e, 0xc5,\n  0x44, 0xc5, 0x3f, 0xc5, 0x3d, 0xc5, 0x41, 0xc5, 0x4b, 0xc5, 0x5a, 0xc5,\n  0x6c, 0xc5, 0x8c, 0xc5, 0xab, 0xc5, 0xd5, 0xc5, 0x05, 0xc6, 0x38, 0xc6,\n  0x74, 0xc6, 0xb4, 0xc6, 0xf8, 0xc6, 0x41, 0xc7, 0x90, 0xc7, 0xe2, 0xc7,\n  0x3c, 0xc8, 0x93, 0xc8, 0xf6, 0xc8, 0x5a, 0xc9, 0xc2, 0xc9, 0x2b, 0xca,\n  0x98, 0xca, 0x0f, 0xcb, 0x83, 0xcb, 0x01, 0xcc, 0x81, 0xcc, 0x06, 0xcd,\n  0x92, 0xcd, 0x21, 0xce, 0xb5, 0xce, 0x4c, 0xcf, 0xee, 0xcf, 0x95, 0xd0,\n  0x44, 0xd1, 0xfd, 0xd1, 0xb7, 0xd2, 0x7c, 0xd3, 0x45, 0xd4, 0x18, 0xd5,\n  0xe9, 0xd5, 0xc7, 0xd6, 0xa5, 0xd7, 0x88, 0xd8, 0x76, 0xd9, 0x61, 0xda,\n  0x54, 0xdb, 0x43, 0xdc, 0x42, 0xdd, 0x3f, 0xde, 0x42, 0xdf, 0x4c, 0xe0,\n  0x55, 0xe1, 0x6b, 0xe2, 0x81, 0xe3, 0x9f, 0xe4, 0xbf, 0xe5, 0xe6, 0xe6,\n  0x12, 0xe8, 0x42, 0xe9, 0x74, 0xea, 0xb1, 0xeb, 0xee, 0xec, 0x2f, 0xee,\n  0x72, 0xef, 0xb9, 0xf0, 0x03, 0xf2, 0x4c, 0xf3, 0x9c, 0xf4, 0xea, 0xf5,\n  0x3c, 0xf7, 0x8d, 0xf8, 0xe1, 0xf9, 0x34, 0xfb, 0x85, 0xfc, 0xd5, 0xfd,\n  0x26, 0xff, 0x71, 0x00, 0xc1, 0x01, 0x0b, 0x03, 0x56, 0x04, 0x98, 0x05,\n  0xe3, 0x06, 0x20, 0x08, 0x61, 0x09, 0x9e, 0x0a, 0xd1, 0x0b, 0x07, 0x0d,\n  0x38, 0x0e, 0x67, 0x0f, 0x94, 0x10, 0xbe, 0x11, 0xe9, 0x12, 0x0c, 0x14,\n  0x2c, 0x15, 0x4c, 0x16, 0x62, 0x17, 0x78, 0x18, 0x89, 0x19, 0x95, 0x1a,\n  0x9e, 0x1b, 0x9f, 0x1c, 0x9a, 0x1d, 0x91, 0x1e, 0x84, 0x1f, 0x6e, 0x20,\n  0x56, 0x21, 0x37, 0x22, 0x12, 0x23, 0xec, 0x23, 0xbc, 0x24, 0x8d, 0x25,\n  0x54, 0x26, 0x1e, 0x27, 0xdd, 0x27, 0x9f, 0x28, 0x5a, 0x29, 0x11, 0x2a,\n  0xc8, 0x2a, 0x74, 0x2b, 0x23, 0x2c, 0xc9, 0x2c, 0x6e, 0x2d, 0x11, 0x2e,\n  0xa8, 0x2e, 0x3f, 0x2f, 0xd2, 0x2f, 0x5c, 0x30, 0xe0, 0x30, 0x5f, 0x31,\n  0xd7, 0x31, 0x45, 0x32, 0xad, 0x32, 0x15, 0x33, 0x72, 0x33, 0xc4, 0x33,\n  0x11, 0x34, 0x5c, 0x34, 0x9b, 0x34, 0xd4, 0x34, 0x08, 0x35, 0x36, 0x35,\n  0x5e, 0x35, 0x7c, 0x35, 0x9a, 0x35, 0xb2, 0x35, 0xc2, 0x35, 0xcc, 0x35,\n  0xd5, 0x35, 0xd2, 0x35, 0xcc, 0x35, 0xc3, 0x35, 0xb7, 0x35, 0xa1, 0x35,\n  0x87, 0x35, 0x70, 0x35, 0x51, 0x35, 0x2a, 0x35, 0x00, 0x35, 0xd9, 0x34,\n  0xa5, 0x34, 0x74, 0x34, 0x3a, 0x34, 0x00, 0x34, 0xbd, 0x33, 0x78, 0x33,\n  0x32, 0x33, 0xe0, 0x32, 0x8c, 0x32, 0x3a, 0x32, 0xe1, 0x31, 0x81, 0x31,\n  0x1c, 0x31, 0xb6, 0x30, 0x4c, 0x30, 0xde, 0x2f, 0x68, 0x2f, 0xee, 0x2e,\n  0x6c, 0x2e, 0xe9, 0x2d, 0x5f, 0x2d, 0xce, 0x2c, 0x3c, 0x2c, 0x9b, 0x2b,\n  0xfb, 0x2a, 0x50, 0x2a, 0xa5, 0x29, 0xf1, 0x28, 0x38, 0x28, 0x78, 0x27,\n  0xb8, 0x26, 0xeb, 0x25, 0x21, 0x25, 0x50, 0x24, 0x7c, 0x23, 0xa6, 0x22,\n  0xc8, 0x21, 0xea, 0x20, 0x0c, 0x20, 0x2c, 0x1f, 0x4b, 0x1e, 0x63, 0x1d,\n  0x7d, 0x1c, 0x98, 0x1b, 0xa8, 0x1a, 0xc1, 0x19, 0xd1, 0x18, 0xe6, 0x17,\n  0xf1, 0x16, 0xff, 0x15, 0x0b, 0x15, 0x0f, 0x14, 0x16, 0x13, 0x14, 0x12,\n  0x15, 0x11, 0x10, 0x10, 0x0e, 0x0f, 0x06, 0x0e, 0xfa, 0x0c, 0xef, 0x0b,\n  0xe2, 0x0a, 0xd5, 0x09, 0xc4, 0x08, 0xb3, 0x07, 0xa2, 0x06, 0x8f, 0x05,\n  0x7b, 0x04, 0x65, 0x03, 0x51, 0x02, 0x36, 0x01, 0x22, 0x00, 0x08, 0xff,\n  0xef, 0xfd, 0xd5, 0xfc, 0xb9, 0xfb, 0xa1, 0xfa, 0x84, 0xf9, 0x6c, 0xf8,\n  0x51, 0xf7, 0x36, 0xf6, 0x1f, 0xf5, 0xff, 0xf3, 0xe9, 0xf2, 0xd0, 0xf1,\n  0xb1, 0xf0, 0x9a, 0xef, 0x7f, 0xee, 0x64, 0xed, 0x44, 0xec, 0x2e, 0xeb,\n  0x14, 0xea, 0xfa, 0xe8, 0xe0, 0xe7, 0xc5, 0xe6, 0xb2, 0xe5, 0x9c, 0xe4,\n  0x8b, 0xe3, 0x7d, 0xe2, 0x73, 0xe1, 0x74, 0xe0, 0x74, 0xdf, 0x7b, 0xde,\n  0x8a, 0xdd, 0x9d, 0xdc, 0xb7, 0xdb, 0xdb, 0xda, 0x01, 0xda, 0x2d, 0xd9,\n  0x60, 0xd8, 0x96, 0xd7, 0xd7, 0xd6, 0x17, 0xd6, 0x61, 0xd5, 0xb0, 0xd4,\n  0x09, 0xd4, 0x64, 0xd3, 0xc8, 0xd2, 0x36, 0xd2, 0xa7, 0xd1, 0x23, 0xd1,\n  0xa5, 0xd0, 0x2d, 0xd0, 0xc2, 0xcf, 0x59, 0xcf, 0xf9, 0xce, 0x9d, 0xce,\n  0x47, 0xce, 0xf7, 0xcd, 0xab, 0xcd, 0x69, 0xcd, 0x24, 0xcd, 0xec, 0xcc,\n  0xb4, 0xcc, 0x85, 0xcc, 0x5a, 0xcc, 0x3b, 0xcc, 0x1a, 0xcc, 0x02, 0xcc,\n  0xf7, 0xcb, 0xea, 0xcb, 0xed, 0xcb, 0xef, 0xcb, 0xfc, 0xcb, 0x0a, 0xcc,\n  0x20, 0xcc, 0x43, 0xcc, 0x5f, 0xcc, 0x85, 0xcc, 0xaf, 0xcc, 0xe1, 0xcc,\n  0x14, 0xcd, 0x4c, 0xcd, 0x88, 0xcd, 0xc7, 0xcd, 0x0b, 0xce, 0x54, 0xce,\n  0x9f, 0xce, 0xec, 0xce, 0x44, 0xcf, 0x9b, 0xcf, 0xfb, 0xcf, 0x5c, 0xd0,\n  0xc1, 0xd0, 0x2f, 0xd1, 0x9d, 0xd1, 0x14, 0xd2, 0x89, 0xd2, 0x04, 0xd3,\n  0x85, 0xd3, 0x08, 0xd4, 0x8c, 0xd4, 0x18, 0xd5, 0xa7, 0xd5, 0x37, 0xd6,\n  0xcd, 0xd6, 0x6c, 0xd7, 0x0a, 0xd8, 0xb0, 0xd8, 0x5c, 0xd9, 0x09, 0xda,\n  0xc1, 0xda, 0x74, 0xdb, 0x30, 0xdc, 0xeb, 0xdc, 0xb2, 0xdd, 0x7a, 0xde,\n  0x3e, 0xdf, 0x0d, 0xe0, 0xdf, 0xe0, 0xb5, 0xe1, 0x8c, 0xe2, 0x65, 0xe3,\n  0x47, 0xe4, 0x25, 0xe5, 0x11, 0xe6, 0xfd, 0xe6, 0xe8, 0xe7, 0xdd, 0xe8,\n  0xd2, 0xe9, 0xcb, 0xea, 0xcd, 0xeb, 0xcf, 0xec, 0xd1, 0xed, 0xdf, 0xee,\n  0xea, 0xef, 0xfa, 0xf0, 0x09, 0xf2, 0x20, 0xf3, 0x31, 0xf4, 0x4b, 0xf5,\n  0x64, 0xf6, 0x7c, 0xf7, 0x95, 0xf8, 0xad, 0xf9, 0xca, 0xfa, 0xe4, 0xfb,\n  0xff, 0xfc, 0x16, 0xfe, 0x32, 0xff, 0x47, 0x00, 0x5d, 0x01, 0x79, 0x02,\n  0x89, 0x03, 0xa3, 0x04, 0xb2, 0x05, 0xc3, 0x06, 0xd0, 0x07, 0xde, 0x08,\n  0xe7, 0x09, 0xef, 0x0a, 0xf2, 0x0b, 0xf6, 0x0c, 0xf9, 0x0d, 0xff, 0x0e,\n  0x00, 0x10, 0xff, 0x10, 0x02, 0x12, 0x00, 0x13, 0x00, 0x14, 0xff, 0x14,\n  0xfb, 0x15, 0xf4, 0x16, 0xe8, 0x17, 0xde, 0x18, 0xcf, 0x19, 0xbd, 0x1a,\n  0xa4, 0x1b, 0x84, 0x1c, 0x6d, 0x1d, 0x46, 0x1e, 0x21, 0x1f, 0xf6, 0x1f,\n  0xc6, 0x20, 0x93, 0x21, 0x59, 0x22, 0x1e, 0x23, 0xdc, 0x23, 0x96, 0x24,\n  0x49, 0x25, 0xf8, 0x25, 0x9f, 0x26, 0x3f, 0x27, 0xdb, 0x27, 0x70, 0x28,\n  0xff, 0x28, 0x86, 0x29, 0x05, 0x2a, 0x7e, 0x2a, 0xf3, 0x2a, 0x61, 0x2b,\n  0xc7, 0x2b, 0x29, 0x2c, 0x84, 0x2c, 0xd8, 0x2c, 0x26, 0x2d, 0x71, 0x2d,\n  0xb3, 0x2d, 0xec, 0x2d, 0x25, 0x2e, 0x59, 0x2e, 0x88, 0x2e, 0xb3, 0x2e,\n  0xd9, 0x2e, 0xfb, 0x2e, 0x1c, 0x2f, 0x34, 0x2f, 0x4e, 0x2f, 0x62, 0x2f,\n  0x73, 0x2f, 0x81, 0x2f, 0x87, 0x2f, 0x8d, 0x2f, 0x90, 0x2f, 0x8a, 0x2f,\n  0x83, 0x2f, 0x78, 0x2f, 0x66, 0x2f, 0x52, 0x2f, 0x39, 0x2f, 0x1c, 0x2f,\n  0xfb, 0x2e, 0xd6, 0x2e, 0xb0, 0x2e, 0x84, 0x2e, 0x58, 0x2e, 0x21, 0x2e,\n  0xec, 0x2d, 0xb4, 0x2d, 0x7a, 0x2d, 0x3c, 0x2d, 0xf9, 0x2c, 0xb5, 0x2c,\n  0x6b, 0x2c, 0x21, 0x2c, 0xd4, 0x2b, 0x81, 0x2b, 0x27, 0x2b, 0xd1, 0x2a,\n  0x6e, 0x2a, 0x0e, 0x2a, 0xa4, 0x29, 0x39, 0x29, 0xc4, 0x28, 0x4b, 0x28,\n  0xcb, 0x27, 0x43, 0x27, 0xbb, 0x26, 0x27, 0x26, 0x8a, 0x25, 0xee, 0x24,\n  0x46, 0x24, 0x9d, 0x23, 0xeb, 0x22, 0x37, 0x22, 0x7d, 0x21, 0xbe, 0x20,\n  0xfe, 0x1f, 0x36, 0x1f, 0x71, 0x1e, 0xa4, 0x1d, 0xd9, 0x1c, 0x0b, 0x1c,\n  0x35, 0x1b, 0x5f, 0x1a, 0x89, 0x19, 0xab, 0x18, 0xd1, 0x17, 0xec, 0x16,\n  0x04, 0x16, 0x1b, 0x15, 0x2f, 0x14, 0x3b, 0x13, 0x40, 0x12, 0x45, 0x11,\n  0x45, 0x10, 0x40, 0x0f, 0x38, 0x0e, 0x2c, 0x0d, 0x20, 0x0c, 0x0f, 0x0b,\n  0xfe, 0x09, 0xe9, 0x08, 0xd3, 0x07, 0xbf, 0x06, 0xaf, 0x05, 0x9a, 0x04,\n  0x87, 0x03, 0x7b, 0x02, 0x64, 0x01, 0x5b, 0x00, 0x4e, 0xff, 0x45, 0xfe,\n  0x3b, 0xfd, 0x2f, 0xfc, 0x2d, 0xfb, 0x28, 0xfa, 0x24, 0xf9, 0x28, 0xf8,\n  0x29, 0xf7, 0x2c, 0xf6, 0x32, 0xf5, 0x3a, 0xf4, 0x49, 0xf3, 0x5a, 0xf2,\n  0x6c, 0xf1, 0x83, 0xf0, 0x9d, 0xef, 0xbc, 0xee, 0xdb, 0xed, 0xff, 0xec,\n  0x27, 0xec, 0x4d, 0xeb, 0x7a, 0xea, 0xa8, 0xe9, 0xd3, 0xe8, 0x0d, 0xe8,\n  0x3f, 0xe7, 0x77, 0xe6, 0xb5, 0xe5, 0xf4, 0xe4, 0x3b, 0xe4, 0x81, 0xe3,\n  0xd2, 0xe2, 0x1f, 0xe2, 0x77, 0xe1, 0xd1, 0xe0, 0x2d, 0xe0, 0x94, 0xdf,\n  0xf9, 0xde, 0x61, 0xde, 0xcf, 0xdd, 0x44, 0xdd, 0xb5, 0xdc, 0x2b, 0xdc,\n  0xa4, 0xdb, 0x22, 0xdb, 0xa1, 0xda, 0x21, 0xda, 0xa5, 0xd9, 0x2a, 0xd9,\n  0xb3, 0xd8, 0x41, 0xd8, 0xcb, 0xd7, 0x60, 0xd7, 0xf5, 0xd6, 0x8e, 0xd6,\n  0x2a, 0xd6, 0xca, 0xd5, 0x6e, 0xd5, 0x17, 0xd5, 0xc3, 0xd4, 0x75, 0xd4,\n  0x24, 0xd4, 0xe2, 0xd3, 0xa0, 0xd3, 0x61, 0xd3, 0x2d, 0xd3, 0xf9, 0xd2,\n  0xce, 0xd2, 0xa7, 0xd2, 0x86, 0xd2, 0x67, 0xd2, 0x4f, 0xd2, 0x3f, 0xd2,\n  0x33, 0xd2, 0x28, 0xd2, 0x25, 0xd2, 0x26, 0xd2, 0x2b, 0xd2, 0x38, 0xd2,\n  0x47, 0xd2, 0x62, 0xd2, 0x7e, 0xd2, 0xa1, 0xd2, 0xc7, 0xd2, 0xf3, 0xd2,\n  0x24, 0xd3, 0x5e, 0xd3, 0x97, 0xd3, 0xd7, 0xd3, 0x1e, 0xd4, 0x65, 0xd4,\n  0xb2, 0xd4, 0x07, 0xd5, 0x5c, 0xd5, 0xba, 0xd5, 0x1d, 0xd6, 0x81, 0xd6,\n  0xeb, 0xd6, 0x60, 0xd7, 0xd3, 0xd7, 0x4d, 0xd8, 0xd0, 0xd8, 0x56, 0xd9,\n  0xe4, 0xd9, 0x76, 0xda, 0x10, 0xdb, 0xaa, 0xdb, 0x52, 0xdc, 0xf7, 0xdc,\n  0xa4, 0xdd, 0x59, 0xde, 0x09, 0xdf, 0xc6, 0xdf, 0x83, 0xe0, 0x43, 0xe1,\n  0x06, 0xe2, 0xce, 0xe2, 0x95, 0xe3, 0x5a, 0xe4, 0x27, 0xe5, 0xf1, 0xe5,\n  0xbd, 0xe6, 0x8a, 0xe7, 0x54, 0xe8, 0x21, 0xe9, 0xf2, 0xe9, 0xbd, 0xea,\n  0x88, 0xeb, 0x57, 0xec, 0x22, 0xed, 0xf4, 0xed, 0xc1, 0xee, 0x90, 0xef,\n  0x61, 0xf0, 0x31, 0xf1, 0x09, 0xf2, 0xd9, 0xf2, 0xb1, 0xf3, 0x88, 0xf4,\n  0x62, 0xf5, 0x3b, 0xf6, 0x1c, 0xf7, 0xfe, 0xf7, 0xe1, 0xf8, 0xcc, 0xf9,\n  0xb5, 0xfa, 0xa2, 0xfb, 0x99, 0xfc, 0x8f, 0xfd, 0x85, 0xfe, 0x7e, 0xff,\n  0x77, 0x00, 0x70, 0x01, 0x6b, 0x02, 0x65, 0x03, 0x5b, 0x04, 0x57, 0x05,\n  0x4c, 0x06, 0x3f, 0x07, 0x36, 0x08, 0x29, 0x09, 0x18, 0x0a, 0x09, 0x0b,\n  0xf9, 0x0b, 0xe6, 0x0c, 0xd4, 0x0d, 0xbe, 0x0e, 0xa7, 0x0f, 0x93, 0x10,\n  0x7e, 0x11, 0x64, 0x12, 0x4d, 0x13, 0x32, 0x14, 0x14, 0x15, 0xfb, 0x15,\n  0xdc, 0x16, 0xbb, 0x17, 0x9b, 0x18, 0x73, 0x19, 0x4f, 0x1a, 0x26, 0x1b,\n  0x00, 0x1c, 0xd3, 0x1c, 0xab, 0x1d, 0x7d, 0x1e, 0x4a, 0x1f, 0x18, 0x20,\n  0xe0, 0x20, 0xa7, 0x21, 0x6c, 0x22, 0x2c, 0x23, 0xe4, 0x23, 0xa0, 0x24,\n  0x4c, 0x25, 0xfb, 0x25, 0x9a, 0x26, 0x38, 0x27, 0xca, 0x27, 0x56, 0x28,\n  0xdd, 0x28, 0x5a, 0x29, 0xce, 0x29, 0x3c, 0x2a, 0xa1, 0x2a, 0x01, 0x2b,\n  0x58, 0x2b, 0xab, 0x2b, 0xf7, 0x2b, 0x37, 0x2c, 0x7b, 0x2c, 0xab, 0x2c,\n  0xdf, 0x2c, 0x07, 0x2d, 0x2c, 0x2d, 0x49, 0x2d, 0x62, 0x2d, 0x6e, 0x2d,\n  0x7e, 0x2d, 0x7e, 0x2d, 0x7b, 0x2d, 0x6e, 0x2d, 0x5f, 0x2d, 0x4d, 0x2d,\n  0x32, 0x2d, 0x15, 0x2d, 0xf1, 0x2c, 0xc6, 0x2c, 0x97, 0x2c, 0x66, 0x2c,\n  0x2a, 0x2c, 0xf2, 0x2b, 0xb0, 0x2b, 0x66, 0x2b, 0x1d, 0x2b, 0xcd, 0x2a,\n  0x7a, 0x2a, 0x1d, 0x2a, 0xc0, 0x29, 0x5f, 0x29, 0xf5, 0x28, 0x8b, 0x28,\n  0x17, 0x28, 0xa1, 0x27, 0x29, 0x27, 0xaa, 0x26, 0x27, 0x26, 0xa0, 0x25,\n  0x17, 0x25, 0x88, 0x24, 0xf7, 0x23, 0x5f, 0x23, 0xc7, 0x22, 0x2b, 0x22,\n  0x90, 0x21, 0xed, 0x20, 0x4a, 0x20, 0xa3, 0x1f, 0x00, 0x1f, 0x53, 0x1e,\n  0xa8, 0x1d, 0xfe, 0x1c, 0x4c, 0x1c, 0x9e, 0x1b, 0xeb, 0x1a, 0x3d, 0x1a,\n  0x89, 0x19, 0xdb, 0x18, 0x23, 0x18, 0x74, 0x17, 0xc1, 0x16, 0x0d, 0x16,\n  0x56, 0x15, 0xa5, 0x14, 0xee, 0x13, 0x38, 0x13, 0x7e, 0x12, 0xc5, 0x11,\n  0x0a, 0x11, 0x4c, 0x10, 0x8f, 0x0f, 0xd1, 0x0e, 0x0f, 0x0e, 0x4f, 0x0d,\n  0x8c, 0x0c, 0xc7, 0x0b, 0x06, 0x0b, 0x3f, 0x0a, 0x7a, 0x09, 0xb5, 0x08,\n  0xf0, 0x07, 0x2b, 0x07, 0x67, 0x06, 0xa3, 0x05, 0xdf, 0x04, 0x1f, 0x04,\n  0x59, 0x03, 0x97, 0x02, 0xd5, 0x01, 0x12, 0x01, 0x4f, 0x00, 0x8d, 0xff,\n  0xc9, 0xfe, 0x04, 0xfe, 0x3f, 0xfd, 0x7b, 0xfc, 0xb8, 0xfb, 0xf4, 0xfa,\n  0x31, 0xfa, 0x6e, 0xf9, 0xae, 0xf8, 0xea, 0xf7, 0x2a, 0xf7, 0x6a, 0xf6,\n  0xa8, 0xf5, 0xe9, 0xf4, 0x24, 0xf4, 0x64, 0xf3, 0xa6, 0xf2, 0xe4, 0xf1,\n  0x2a, 0xf1, 0x6b, 0xf0, 0xb1, 0xef, 0xf6, 0xee, 0x3e, 0xee, 0x88, 0xed,\n  0xd4, 0xec, 0x21, 0xec, 0x73, 0xeb, 0xc1, 0xea, 0x14, 0xea, 0x68, 0xe9,\n  0xc1, 0xe8, 0x1c, 0xe8, 0x77, 0xe7, 0xd4, 0xe6, 0x32, 0xe6, 0x94, 0xe5,\n  0xfb, 0xe4, 0x61, 0xe4, 0xcc, 0xe3, 0x38, 0xe3, 0xa8, 0xe2, 0x1c, 0xe2,\n  0x8f, 0xe1, 0x0c, 0xe1, 0x86, 0xe0, 0x0c, 0xe0, 0x8e, 0xdf, 0x19, 0xdf,\n  0xa9, 0xde, 0x39, 0xde, 0xcf, 0xdd, 0x69, 0xdd, 0x0c, 0xdd, 0xae, 0xdc,\n  0x58, 0xdc, 0x06, 0xdc, 0xb4, 0xdb, 0x6e, 0xdb, 0x23, 0xdb, 0xe1, 0xda,\n  0xa2, 0xda, 0x69, 0xda, 0x33, 0xda, 0x01, 0xda, 0xd7, 0xd9, 0xae, 0xd9,\n  0x8e, 0xd9, 0x6f, 0xd9, 0x5b, 0xd9, 0x45, 0xd9, 0x38, 0xd9, 0x30, 0xd9,\n  0x2a, 0xd9, 0x28, 0xd9, 0x2e, 0xd9, 0x35, 0xd9, 0x41, 0xd9, 0x4e, 0xd9,\n  0x5f, 0xd9, 0x73, 0xd9, 0x87, 0xd9, 0xa0, 0xd9, 0xbb, 0xd9, 0xd9, 0xd9,\n  0xf5, 0xd9, 0x1b, 0xda, 0x3f, 0xda, 0x66, 0xda, 0x94, 0xda, 0xc1, 0xda,\n  0xef, 0xda, 0x25, 0xdb, 0x5d, 0xdb, 0x96, 0xdb, 0xd2, 0xdb, 0x14, 0xdc,\n  0x58, 0xdc, 0xa1, 0xdc, 0xeb, 0xdc, 0x3c, 0xdd, 0x94, 0xdd, 0xea, 0xdd,\n  0x4a, 0xde, 0xaf, 0xde, 0x19, 0xdf, 0x88, 0xdf, 0xfa, 0xdf, 0x71, 0xe0,\n  0xed, 0xe0, 0x6c, 0xe1, 0xed, 0xe1, 0x73, 0xe2, 0xfd, 0xe2, 0x8a, 0xe3,\n  0x1a, 0xe4, 0xad, 0xe4, 0x42, 0xe5, 0xdd, 0xe5, 0x72, 0xe6, 0x14, 0xe7,\n  0xb5, 0xe7, 0x57, 0xe8, 0x00, 0xe9, 0xa5, 0xe9, 0x51, 0xea, 0xff, 0xea,\n  0xad, 0xeb, 0x5a, 0xec, 0x0f, 0xed, 0xc4, 0xed, 0x73, 0xee, 0x2e, 0xef,\n  0xe7, 0xef, 0x9f, 0xf0, 0x5b, 0xf1, 0x19, 0xf2, 0xd9, 0xf2, 0x9a, 0xf3,\n  0x5e, 0xf4, 0x24, 0xf5, 0xec, 0xf5, 0xb6, 0xf6, 0x82, 0xf7, 0x49, 0xf8,\n  0x19, 0xf9, 0xe2, 0xf9, 0xb0, 0xfa, 0x78, 0xfb, 0x43, 0xfc, 0x0f, 0xfd,\n  0xd3, 0xfd, 0xa0, 0xfe, 0x65, 0xff, 0x2b, 0x00, 0xf2, 0x00, 0xb7, 0x01,\n  0x7b, 0x02, 0x3d, 0x03, 0xff, 0x03, 0xc3, 0x04, 0x87, 0x05, 0x4a, 0x06,\n  0x0b, 0x07, 0xca, 0x07, 0x8a, 0x08, 0x4a, 0x09, 0x0a, 0x0a, 0xc7, 0x0a,\n  0x87, 0x0b, 0x44, 0x0c, 0x00, 0x0d, 0xbf, 0x0d, 0x76, 0x0e, 0x37, 0x0f,\n  0xed, 0x0f, 0xa9, 0x10, 0x60, 0x11, 0x14, 0x12, 0xc9, 0x12, 0x7c, 0x13,\n  0x2b, 0x14, 0xd8, 0x14, 0x7f, 0x15, 0x24, 0x16, 0xcb, 0x16, 0x6a, 0x17,\n  0x0b, 0x18, 0xa6, 0x18, 0x3d, 0x19, 0xcd, 0x19, 0x5a, 0x1a, 0xe3, 0x1a,\n  0x64, 0x1b, 0xdf, 0x1b, 0x5c, 0x1c, 0xd0, 0x1c, 0x3c, 0x1d, 0xac, 0x1d,\n  0x14, 0x1e, 0x78, 0x1e, 0xdb, 0x1e, 0x33, 0x1f, 0x98, 0x1f, 0xeb, 0x1f,\n  0x41, 0x20, 0x96, 0x20, 0xe7, 0x20, 0x36, 0x21, 0x7f, 0x21, 0xce, 0x21,\n  0x11, 0x22, 0x5b, 0x22, 0x9d, 0x22, 0xdf, 0x22, 0x1c, 0x23, 0x5b, 0x23,\n  0x91, 0x23, 0xc8, 0x23, 0xfc, 0x23, 0x2b, 0x24, 0x5c, 0x24, 0x83, 0x24,\n  0xad, 0x24, 0xcb, 0x24, 0xf2, 0x24, 0x10, 0x25, 0x24, 0x25, 0x3e, 0x25,\n  0x50, 0x25, 0x64, 0x25, 0x70, 0x25, 0x79, 0x25, 0x81, 0x25, 0x81, 0x25,\n  0x7f, 0x25, 0x7a, 0x25, 0x6c, 0x25, 0x5e, 0x25, 0x49, 0x25, 0x2d, 0x25,\n  0x0d, 0x25, 0xeb, 0x24, 0xc4, 0x24, 0x96, 0x24, 0x65, 0x24, 0x2e, 0x24,\n  0xf6, 0x23, 0xb4, 0x23, 0x70, 0x23, 0x27, 0x23, 0xdf, 0x22, 0x91, 0x22,\n  0x3d, 0x22, 0xe3, 0x21, 0x89, 0x21, 0x28, 0x21, 0xc3, 0x20, 0x5f, 0x20,\n  0xef, 0x1f, 0x81, 0x1f, 0x0d, 0x1f, 0x95, 0x1e, 0x1d, 0x1e, 0x9f, 0x1d,\n  0x1f, 0x1d, 0x9a, 0x1c, 0x15, 0x1c, 0x89, 0x1b, 0xfa, 0x1a, 0x69, 0x1a,\n  0xd2, 0x19, 0x3b, 0x19, 0x9e, 0x18, 0xff, 0x17, 0x5b, 0x17, 0xbb, 0x16,\n  0x10, 0x16, 0x6b, 0x15, 0xc2, 0x14, 0x15, 0x14, 0x6a, 0x13, 0xba, 0x12,\n  0x0c, 0x12, 0x5e, 0x11, 0xaf, 0x10, 0xfc, 0x0f, 0x47, 0x0f, 0x97, 0x0e,\n  0xe2, 0x0d, 0x30, 0x0d, 0x7a, 0x0c, 0xc6, 0x0b, 0x0f, 0x0b, 0x55, 0x0a,\n  0x9e, 0x09, 0xe1, 0x08, 0x27, 0x08, 0x6b, 0x07, 0xac, 0x06, 0xef, 0x05,\n  0x30, 0x05, 0x70, 0x04, 0xaf, 0x03, 0xed, 0x02, 0x2b, 0x02, 0x63, 0x01,\n  0xa0, 0x00, 0xe0, 0xff, 0x1a, 0xff, 0x57, 0xfe, 0x8f, 0xfd, 0xd1, 0xfc,\n  0x0b, 0xfc, 0x45, 0xfb, 0x85, 0xfa, 0xc1, 0xf9, 0x01, 0xf9, 0x41, 0xf8,\n  0x82, 0xf7, 0xc0, 0xf6, 0x04, 0xf6, 0x42, 0xf5, 0x88, 0xf4, 0xc9, 0xf3,\n  0x09, 0xf3, 0x4f, 0xf2, 0x8f, 0xf1, 0xd3, 0xf0, 0x19, 0xf0, 0x62, 0xef,\n  0xac, 0xee, 0xf7, 0xed, 0x46, 0xed, 0x98, 0xec, 0xee, 0xeb, 0x42, 0xeb,\n  0x9f, 0xea, 0x00, 0xea, 0x61, 0xe9, 0xc7, 0xe8, 0x31, 0xe8, 0x9f, 0xe7,\n  0x0e, 0xe7, 0x81, 0xe6, 0xf7, 0xe5, 0x71, 0xe5, 0xea, 0xe4, 0x68, 0xe4,\n  0xe7, 0xe3, 0x6c, 0xe3, 0xee, 0xe2, 0x75, 0xe2, 0x01, 0xe2, 0x8d, 0xe1,\n  0x23, 0xe1, 0xba, 0xe0, 0x53, 0xe0, 0xf2, 0xdf, 0x98, 0xdf, 0x41, 0xdf,\n  0xeb, 0xde, 0xa1, 0xde, 0x56, 0xde, 0x15, 0xde, 0xd3, 0xdd, 0x99, 0xdd,\n  0x60, 0xdd, 0x2c, 0xdd, 0xfd, 0xdc, 0xd3, 0xdc, 0xa9, 0xdc, 0x88, 0xdc,\n  0x6d, 0xdc, 0x56, 0xdc, 0x46, 0xdc, 0x3d, 0xdc, 0x35, 0xdc, 0x35, 0xdc,\n  0x3a, 0xdc, 0x3e, 0xdc, 0x48, 0xdc, 0x5e, 0xdc, 0x69, 0xdc, 0x80, 0xdc,\n  0x98, 0xdc, 0xb5, 0xdc, 0xd0, 0xdc, 0xee, 0xdc, 0x15, 0xdd, 0x34, 0xdd,\n  0x5b, 0xdd, 0x83, 0xdd, 0xad, 0xdd, 0xde, 0xdd, 0x0b, 0xde, 0x3f, 0xde,\n  0x75, 0xde, 0xad, 0xde, 0xec, 0xde, 0x2d, 0xdf, 0x73, 0xdf, 0xbc, 0xdf,\n  0x0a, 0xe0, 0x5b, 0xe0, 0xb3, 0xe0, 0x0c, 0xe1, 0x6b, 0xe1, 0xd3, 0xe1,\n  0x36, 0xe2, 0xa8, 0xe2, 0x1b, 0xe3, 0x8e, 0xe3, 0x0b, 0xe4, 0x85, 0xe4,\n  0x04, 0xe5, 0x82, 0xe5, 0x05, 0xe6, 0x87, 0xe6, 0x05, 0xe7, 0x8c, 0xe7,\n  0x10, 0xe8, 0x94, 0xe8, 0x17, 0xe9, 0x9c, 0xe9, 0x1e, 0xea, 0xa1, 0xea,\n  0x27, 0xeb, 0xa6, 0xeb, 0x31, 0xec, 0xb3, 0xec, 0x3e, 0xed, 0xc5, 0xed,\n  0x52, 0xee, 0xe2, 0xee, 0x74, 0xef, 0x09, 0xf0, 0x9f, 0xf0, 0x37, 0xf1,\n  0xd1, 0xf1, 0x6b, 0xf2, 0x0b, 0xf3, 0xac, 0xf3, 0x50, 0xf4, 0xf3, 0xf4,\n  0x99, 0xf5, 0x41, 0xf6, 0xe7, 0xf6, 0x8f, 0xf7, 0x39, 0xf8, 0xe4, 0xf8,\n  0x8e, 0xf9, 0x38, 0xfa, 0xe2, 0xfa, 0x8a, 0xfb, 0x35, 0xfc, 0xdd, 0xfc,\n  0x85, 0xfd, 0x30, 0xfe, 0xd9, 0xfe, 0x87, 0xff, 0x2c, 0x00, 0xda, 0x00,\n  0x82, 0x01, 0x2f, 0x02, 0xdd, 0x02, 0x8b, 0x03, 0x3c, 0x04, 0xee, 0x04,\n  0xa2, 0x05, 0x57, 0x06, 0x0c, 0x07, 0xc4, 0x07, 0x7f, 0x08, 0x37, 0x09,\n  0xf6, 0x09, 0xb1, 0x0a, 0x6f, 0x0b, 0x2c, 0x0c, 0xe2, 0x0c, 0xa4, 0x0d,\n  0x5a, 0x0e, 0x17, 0x0f, 0xcc, 0x0f, 0x7f, 0x10, 0x39, 0x11, 0xe6, 0x11,\n  0x92, 0x12, 0x3e, 0x13, 0xe5, 0x13, 0x88, 0x14, 0x2a, 0x15, 0xbf, 0x15,\n  0x59, 0x16, 0xe9, 0x16, 0x72, 0x17, 0xfa, 0x17, 0x7d, 0x18, 0xf9, 0x18,\n  0x75, 0x19, 0xe9, 0x19, 0x5a, 0x1a, 0xc3, 0x1a, 0x26, 0x1b, 0x8f, 0x1b,\n  0xe3, 0x1b, 0x3e, 0x1c, 0x90, 0x1c, 0xdf, 0x1c, 0x2d, 0x1d, 0x6f, 0x1d,\n  0xb3, 0x1d, 0xf6, 0x1d, 0x32, 0x1e, 0x6f, 0x1e, 0xa8, 0x1e, 0xdf, 0x1e,\n  0x0f, 0x1f, 0x45, 0x1f, 0x70, 0x1f, 0x9e, 0x1f, 0xc8, 0x1f, 0xee, 0x1f,\n  0x0e, 0x20, 0x2c, 0x20, 0x48, 0x20, 0x62, 0x20, 0x76, 0x20, 0x83, 0x20,\n  0x90, 0x20, 0x94, 0x20, 0x96, 0x20, 0x93, 0x20, 0x8c, 0x20, 0x7e, 0x20,\n  0x6c, 0x20, 0x58, 0x20, 0x41, 0x20, 0x1e, 0x20, 0x00, 0x20, 0xdc, 0x1f,\n  0xb4, 0x1f, 0x8c, 0x1f, 0x5f, 0x1f, 0x31, 0x1f, 0xff, 0x1e, 0xd1, 0x1e,\n  0xa1, 0x1e, 0x6f, 0x1e, 0x3c, 0x1e, 0x08, 0x1e, 0xd5, 0x1d, 0x9f, 0x1d,\n  0x6a, 0x1d, 0x35, 0x1d, 0xfd, 0x1c, 0xc3, 0x1c, 0x8c, 0x1c, 0x4d, 0x1c,\n  0x10, 0x1c, 0xcf, 0x1b, 0x91, 0x1b, 0x4b, 0x1b, 0x05, 0x1b, 0xbb, 0x1a,\n  0x71, 0x1a, 0x23, 0x1a, 0xcf, 0x19, 0x7f, 0x19, 0x24, 0x19, 0xce, 0x18,\n  0x6f, 0x18, 0x0e, 0x18, 0xa8, 0x17, 0x44, 0x17, 0xda, 0x16, 0x6d, 0x16,\n  0xf4, 0x15, 0x85, 0x15, 0x05, 0x15, 0x8d, 0x14, 0x09, 0x14, 0x81, 0x13,\n  0xfc, 0x12, 0x6b, 0x12, 0xdb, 0x11, 0x48, 0x11, 0xaf, 0x10, 0x13, 0x10,\n  0x74, 0x0f, 0xd1, 0x0e, 0x2d, 0x0e, 0x85, 0x0d, 0xd7, 0x0c, 0x29, 0x0c,\n  0x7a, 0x0b, 0xc7, 0x0a, 0x14, 0x0a, 0x5f, 0x09, 0xa5, 0x08, 0xeb, 0x07,\n  0x33, 0x07, 0x7a, 0x06, 0xbc, 0x05, 0xff, 0x04, 0x43, 0x04, 0x89, 0x03,\n  0xcf, 0x02, 0x15, 0x02, 0x60, 0x01, 0xaa, 0x00, 0xf9, 0xff, 0x4a, 0xff,\n  0x9a, 0xfe, 0xef, 0xfd, 0x41, 0xfd, 0x9b, 0xfc, 0xf4, 0xfb, 0x4a, 0xfb,\n  0xac, 0xfa, 0x08, 0xfa, 0x68, 0xf9, 0xc6, 0xf8, 0x29, 0xf8, 0x8e, 0xf7,\n  0xf1, 0xf6, 0x59, 0xf6, 0xbe, 0xf5, 0x28, 0xf5, 0x94, 0xf4, 0xff, 0xf3,\n  0x6e, 0xf3, 0xde, 0xf2, 0x4e, 0xf2, 0xc1, 0xf1, 0x38, 0xf1, 0xae, 0xf0,\n  0x27, 0xf0, 0xa1, 0xef, 0x18, 0xef, 0x9a, 0xee, 0x16, 0xee, 0x95, 0xed,\n  0x1b, 0xed, 0x9c, 0xec, 0x21, 0xec, 0xaa, 0xeb, 0x31, 0xeb, 0xbc, 0xea,\n  0x47, 0xea, 0xd5, 0xe9, 0x63, 0xe9, 0xfa, 0xe8, 0x8b, 0xe8, 0x22, 0xe8,\n  0xbf, 0xe7, 0x5a, 0xe7, 0xfd, 0xe6, 0xa4, 0xe6, 0x4c, 0xe6, 0xfd, 0xe5,\n  0xb2, 0xe5, 0x6b, 0xe5, 0x24, 0xe5, 0xe5, 0xe4, 0xa7, 0xe4, 0x71, 0xe4,\n  0x3e, 0xe4, 0x0b, 0xe4, 0xe3, 0xe3, 0xba, 0xe3, 0x96, 0xe3, 0x75, 0xe3,\n  0x5a, 0xe3, 0x42, 0xe3, 0x2d, 0xe3, 0x1b, 0xe3, 0x0d, 0xe3, 0x01, 0xe3,\n  0xf4, 0xe2, 0xf1, 0xe2, 0xe7, 0xe2, 0xe8, 0xe2, 0xe4, 0xe2, 0xe5, 0xe2,\n  0xe8, 0xe2, 0xee, 0xe2, 0xf3, 0xe2, 0xfb, 0xe2, 0x02, 0xe3, 0x0f, 0xe3,\n  0x1c, 0xe3, 0x2b, 0xe3, 0x3c, 0xe3, 0x4b, 0xe3, 0x66, 0xe3, 0x7b, 0xe3,\n  0x9c, 0xe3, 0xb6, 0xe3, 0xdb, 0xe3, 0x01, 0xe4, 0x25, 0xe4, 0x52, 0xe4,\n  0x81, 0xe4, 0xb0, 0xe4, 0xe0, 0xe4, 0x13, 0xe5, 0x4c, 0xe5, 0x82, 0xe5,\n  0xc1, 0xe5, 0xfd, 0xe5, 0x3a, 0xe6, 0x7e, 0xe6, 0xbe, 0xe6, 0x02, 0xe7,\n  0x4d, 0xe7, 0x97, 0xe7, 0xe3, 0xe7, 0x36, 0xe8, 0x88, 0xe8, 0xdd, 0xe8,\n  0x33, 0xe9, 0x8e, 0xe9, 0xe7, 0xe9, 0x43, 0xea, 0xa3, 0xea, 0x04, 0xeb,\n  0x66, 0xeb, 0xcd, 0xeb, 0x36, 0xec, 0x9f, 0xec, 0x0f, 0xed, 0x80, 0xed,\n  0xf1, 0xed, 0x6a, 0xee, 0xe1, 0xee, 0x5e, 0xef, 0xd8, 0xef, 0x5c, 0xf0,\n  0xdc, 0xf0, 0x63, 0xf1, 0xee, 0xf1, 0x79, 0xf2, 0x06, 0xf3, 0x90, 0xf3,\n  0x24, 0xf4, 0xb1, 0xf4, 0x48, 0xf5, 0xd9, 0xf5, 0x6e, 0xf6, 0x01, 0xf7,\n  0x98, 0xf7, 0x2d, 0xf8, 0xc1, 0xf8, 0x59, 0xf9, 0xed, 0xf9, 0x81, 0xfa,\n  0x11, 0xfb, 0xa5, 0xfb, 0x35, 0xfc, 0xc5, 0xfc, 0x57, 0xfd, 0xe3, 0xfd,\n  0x76, 0xfe, 0x02, 0xff, 0x90, 0xff, 0x22, 0x00, 0xb0, 0x00, 0x3c, 0x01,\n  0xcd, 0x01, 0x63, 0x02, 0xf3, 0x02, 0x85, 0x03, 0x13, 0x04, 0xac, 0x04,\n  0x3c, 0x05, 0xd4, 0x05, 0x68, 0x06, 0xfb, 0x06, 0x93, 0x07, 0x2a, 0x08,\n  0xc4, 0x08, 0x5c, 0x09, 0xf1, 0x09, 0x88, 0x0a, 0x20, 0x0b, 0xb4, 0x0b,\n  0x4d, 0x0c, 0xe0, 0x0c, 0x72, 0x0d, 0x04, 0x0e, 0x98, 0x0e, 0x27, 0x0f,\n  0xb9, 0x0f, 0x49, 0x10, 0xd3, 0x10, 0x62, 0x11, 0xee, 0x11, 0x7b, 0x12,\n  0x00, 0x13, 0x88, 0x13, 0x0a, 0x14, 0x8d, 0x14, 0x0b, 0x15, 0x85, 0x15,\n  0x00, 0x16, 0x76, 0x16, 0xeb, 0x16, 0x5b, 0x17, 0xcd, 0x17, 0x3b, 0x18,\n  0xa4, 0x18, 0x0b, 0x19, 0x6f, 0x19, 0xd6, 0x19, 0x35, 0x1a, 0x93, 0x1a,\n  0xf0, 0x1a, 0x46, 0x1b, 0x9b, 0x1b, 0xe3, 0x1b, 0x2f, 0x1c, 0x70, 0x1c,\n  0xaf, 0x1c, 0xe5, 0x1c, 0x19, 0x1d, 0x48, 0x1d, 0x6c, 0x1d, 0x8e, 0x1d,\n  0xab, 0x1d, 0xbf, 0x1d, 0xcf, 0x1d, 0xdc, 0x1d, 0xdf, 0x1d, 0xe3, 0x1d,\n  0xe0, 0x1d, 0xdb, 0x1d, 0xcf, 0x1d, 0xc3, 0x1d, 0xb4, 0x1d, 0xa1, 0x1d,\n  0x92, 0x1d, 0x78, 0x1d, 0x5e, 0x1d, 0x41, 0x1d, 0x24, 0x1d, 0x03, 0x1d,\n  0xdf, 0x1c, 0xb8, 0x1c, 0x8b, 0x1c, 0x5f, 0x1c, 0x2c, 0x1c, 0xfc, 0x1b,\n  0xc4, 0x1b, 0x8c, 0x1b, 0x4d, 0x1b, 0x10, 0x1b, 0xcc, 0x1a, 0x8a, 0x1a,\n  0x41, 0x1a, 0xf8, 0x19, 0xaa, 0x19, 0x5e, 0x19, 0x0b, 0x19, 0xb5, 0x18,\n  0x5f, 0x18, 0x02, 0x18, 0xab, 0x17, 0x44, 0x17, 0xe2, 0x16, 0x7d, 0x16,\n  0x13, 0x16, 0xae, 0x15, 0x3e, 0x15, 0xcf, 0x14, 0x60, 0x14, 0xf0, 0x13,\n  0x7a, 0x13, 0x0b, 0x13, 0x94, 0x12, 0x20, 0x12, 0xae, 0x11, 0x30, 0x11,\n  0xc0, 0x10, 0x43, 0x10, 0xd4, 0x0f, 0x58, 0x0f, 0xe4, 0x0e, 0x6c, 0x0e,\n  0xef, 0x0d, 0x77, 0x0d, 0xfc, 0x0c, 0x80, 0x0c, 0x06, 0x0c, 0x87, 0x0b,\n  0x07, 0x0b, 0x88, 0x0a, 0x07, 0x0a, 0x88, 0x09, 0x08, 0x09, 0x87, 0x08,\n  0x0c, 0x08, 0x88, 0x07, 0x0a, 0x07, 0x8c, 0x06, 0x0b, 0x06, 0x8f, 0x05,\n  0x13, 0x05, 0x94, 0x04, 0x17, 0x04, 0x9b, 0x03, 0x1d, 0x03, 0xa1, 0x02,\n  0x23, 0x02, 0xa5, 0x01, 0x28, 0x01, 0xaa, 0x00, 0x29, 0x00, 0xad, 0xff,\n  0x29, 0xff, 0xa3, 0xfe, 0x1f, 0xfe, 0x9d, 0xfd, 0x15, 0xfd, 0x8f, 0xfc,\n  0x09, 0xfc, 0x81, 0xfb, 0xf9, 0xfa, 0x70, 0xfa, 0xe9, 0xf9, 0x60, 0xf9,\n  0xd8, 0xf8, 0x4e, 0xf8, 0xc7, 0xf7, 0x38, 0xf7, 0xb2, 0xf6, 0x26, 0xf6,\n  0x99, 0xf5, 0x0c, 0xf5, 0x80, 0xf4, 0xf4, 0xf3, 0x6a, 0xf3, 0xde, 0xf2,\n  0x53, 0xf2, 0xc9, 0xf1, 0x43, 0xf1, 0xbf, 0xf0, 0x3a, 0xf0, 0xbd, 0xef,\n  0x3c, 0xef, 0xc3, 0xee, 0x4a, 0xee, 0xd4, 0xed, 0x60, 0xed, 0xf3, 0xec,\n  0x87, 0xec, 0x1f, 0xec, 0xb8, 0xeb, 0x54, 0xeb, 0xf4, 0xea, 0x92, 0xea,\n  0x3b, 0xea, 0xe1, 0xe9, 0x8b, 0xe9, 0x38, 0xe9, 0xe2, 0xe8, 0x9b, 0xe8,\n  0x4d, 0xe8, 0x03, 0xe8, 0xbc, 0xe7, 0x74, 0xe7, 0x31, 0xe7, 0xeb, 0xe6,\n  0xae, 0xe6, 0x6d, 0xe6, 0x31, 0xe6, 0xf6, 0xe5, 0xbb, 0xe5, 0x87, 0xe5,\n  0x50, 0xe5, 0x20, 0xe5, 0xed, 0xe4, 0xc5, 0xe4, 0x9f, 0xe4, 0x74, 0xe4,\n  0x56, 0xe4, 0x3b, 0xe4, 0x1e, 0xe4, 0x0b, 0xe4, 0xf8, 0xe3, 0xea, 0xe3,\n  0xe1, 0xe3, 0xe1, 0xe3, 0xde, 0xe3, 0xe3, 0xe3, 0xed, 0xe3, 0xfd, 0xe3,\n  0x11, 0xe4, 0x2a, 0xe4, 0x4d, 0xe4, 0x6e, 0xe4, 0x95, 0xe4, 0xc5, 0xe4,\n  0xf5, 0xe4, 0x2f, 0xe5, 0x6a, 0xe5, 0xac, 0xe5, 0xef, 0xe5, 0x35, 0xe6,\n  0x7c, 0xe6, 0xc8, 0xe6, 0x14, 0xe7, 0x62, 0xe7, 0xae, 0xe7, 0xfe, 0xe7,\n  0x50, 0xe8, 0x9d, 0xe8, 0xec, 0xe8, 0x3c, 0xe9, 0x8d, 0xe9, 0xdf, 0xe9,\n  0x31, 0xea, 0x81, 0xea, 0xd4, 0xea, 0x27, 0xeb, 0x7a, 0xeb, 0xce, 0xeb,\n  0x21, 0xec, 0x78, 0xec, 0xcf, 0xec, 0x26, 0xed, 0x80, 0xed, 0xdb, 0xed,\n  0x33, 0xee, 0x91, 0xee, 0xf1, 0xee, 0x51, 0xef, 0xb4, 0xef, 0x17, 0xf0,\n  0x81, 0xf0, 0xe9, 0xf0, 0x54, 0xf1, 0xc1, 0xf1, 0x30, 0xf2, 0xa0, 0xf2,\n  0x17, 0xf3, 0x86, 0xf3, 0x01, 0xf4, 0x76, 0xf4, 0xef, 0xf4, 0x66, 0xf5,\n  0xe1, 0xf5, 0x60, 0xf6, 0xdc, 0xf6, 0x5e, 0xf7, 0xdc, 0xf7, 0x5d, 0xf8,\n  0xdd, 0xf8, 0x62, 0xf9, 0xe6, 0xf9, 0x6d, 0xfa, 0xf1, 0xfa, 0x7a, 0xfb,\n  0x03, 0xfc, 0x8f, 0xfc, 0x19, 0xfd, 0xa5, 0xfd, 0x33, 0xfe, 0xbb, 0xfe,\n  0x4e, 0xff, 0xd8, 0xff, 0x67, 0x00, 0xf7, 0x00, 0x88, 0x01, 0x1b, 0x02,\n  0xa9, 0x02, 0x3b, 0x03, 0xcd, 0x03, 0x5f, 0x04, 0xf2, 0x04, 0x83, 0x05,\n  0x14, 0x06, 0xa7, 0x06, 0x37, 0x07, 0xcb, 0x07, 0x5d, 0x08, 0xed, 0x08,\n  0x7d, 0x09, 0x0e, 0x0a, 0x9e, 0x0a, 0x2f, 0x0b, 0xbf, 0x0b, 0x4a, 0x0c,\n  0xd9, 0x0c, 0x64, 0x0d, 0xec, 0x0d, 0x75, 0x0e, 0xf8, 0x0e, 0x77, 0x0f,\n  0xfa, 0x0f, 0x73, 0x10, 0xf3, 0x10, 0x6c, 0x11, 0xdf, 0x11, 0x55, 0x12,\n  0xc4, 0x12, 0x31, 0x13, 0xa0, 0x13, 0x09, 0x14, 0x6a, 0x14, 0xcf, 0x14,\n  0x2c, 0x15, 0x89, 0x15, 0xde, 0x15, 0x30, 0x16, 0x7c, 0x16, 0xc6, 0x16,\n  0x0c, 0x17, 0x4e, 0x17, 0x8d, 0x17, 0xc6, 0x17, 0xff, 0x17, 0x2f, 0x18,\n  0x62, 0x18, 0x8d, 0x18, 0xb9, 0x18, 0xdf, 0x18, 0x06, 0x19, 0x28, 0x19,\n  0x46, 0x19, 0x64, 0x19, 0x7f, 0x19, 0x9a, 0x19, 0xad, 0x19, 0xbf, 0x19,\n  0xce, 0x19, 0xda, 0x19, 0xdd, 0x19, 0xe5, 0x19, 0xec, 0x19, 0xe8, 0x19,\n  0xe9, 0x19, 0xe8, 0x19, 0xe2, 0x19, 0xdd, 0x19, 0xdc, 0x19, 0xd2, 0x19,\n  0xcd, 0x19, 0xc3, 0x19, 0xb8, 0x19, 0xaf, 0x19, 0xa0, 0x19, 0x94, 0x19,\n  0x84, 0x19, 0x75, 0x19, 0x66, 0x19, 0x54, 0x19, 0x40, 0x19, 0x2e, 0x19,\n  0x16, 0x19, 0x00, 0x19, 0xe3, 0x18, 0xc8, 0x18, 0xa8, 0x18, 0x82, 0x18,\n  0x5c, 0x18, 0x2f, 0x18, 0x02, 0x18, 0xcd, 0x17, 0x96, 0x17, 0x5e, 0x17,\n  0x1e, 0x17, 0xdf, 0x16, 0x9b, 0x16, 0x55, 0x16, 0x0d, 0x16, 0xc5, 0x15,\n  0x76, 0x15, 0x29, 0x15, 0xd8, 0x14, 0x84, 0x14, 0x32, 0x14, 0xd6, 0x13,\n  0x7f, 0x13, 0x1f, 0x13, 0xc4, 0x12, 0x64, 0x12, 0xfd, 0x11, 0x99, 0x11,\n  0x2d, 0x11, 0xc0, 0x10, 0x4f, 0x10, 0xde, 0x0f, 0x67, 0x0f, 0xee, 0x0e,\n  0x71, 0x0e, 0xf1, 0x0d, 0x74, 0x0d, 0xf2, 0x0c, 0x67, 0x0c, 0xe0, 0x0b,\n  0x51, 0x0b, 0xc7, 0x0a, 0x31, 0x0a, 0x9a, 0x09, 0x06, 0x09, 0x6d, 0x08,\n  0xd3, 0x07, 0x34, 0x07, 0x97, 0x06, 0xfa, 0x05, 0x5a, 0x05, 0xb8, 0x04,\n  0x18, 0x04, 0x79, 0x03, 0xd7, 0x02, 0x37, 0x02, 0x97, 0x01, 0xfb, 0x00,\n  0x5c, 0x00, 0xc2, 0xff, 0x26, 0xff, 0x8a, 0xfe, 0xed, 0xfd, 0x55, 0xfd,\n  0xbd, 0xfc, 0x29, 0xfc, 0x94, 0xfb, 0x02, 0xfb, 0x75, 0xfa, 0xe5, 0xf9,\n  0x5d, 0xf9, 0xd5, 0xf8, 0x51, 0xf8, 0xd1, 0xf7, 0x54, 0xf7, 0xd8, 0xf6,\n  0x5f, 0xf6, 0xe9, 0xf5, 0x74, 0xf5, 0x02, 0xf5, 0x91, 0xf4, 0x26, 0xf4,\n  0xb9, 0xf3, 0x50, 0xf3, 0xe7, 0xf2, 0x83, 0xf2, 0x21, 0xf2, 0xbe, 0xf1,\n  0x5e, 0xf1, 0xfe, 0xf0, 0xa4, 0xf0, 0x49, 0xf0, 0xed, 0xef, 0x9a, 0xef,\n  0x42, 0xef, 0xf3, 0xee, 0xa1, 0xee, 0x55, 0xee, 0x0a, 0xee, 0xbf, 0xed,\n  0x7a, 0xed, 0x32, 0xed, 0xf1, 0xec, 0xaf, 0xec, 0x6d, 0xec, 0x2e, 0xec,\n  0xf3, 0xeb, 0xb7, 0xeb, 0x7d, 0xeb, 0x45, 0xeb, 0x0e, 0xeb, 0xd7, 0xea,\n  0xa6, 0xea, 0x71, 0xea, 0x43, 0xea, 0x13, 0xea, 0xea, 0xe9, 0xc2, 0xe9,\n  0x9c, 0xe9, 0x75, 0xe9, 0x54, 0xe9, 0x38, 0xe9, 0x1b, 0xe9, 0x08, 0xe9,\n  0xe8, 0xe8, 0xd3, 0xe8, 0xc1, 0xe8, 0xad, 0xe8, 0x9b, 0xe8, 0x8b, 0xe8,\n  0x7c, 0xe8, 0x6b, 0xe8, 0x5f, 0xe8, 0x57, 0xe8, 0x48, 0xe8, 0x41, 0xe8,\n  0x3a, 0xe8, 0x33, 0xe8, 0x2c, 0xe8, 0x24, 0xe8, 0x20, 0xe8, 0x1d, 0xe8,\n  0x18, 0xe8, 0x15, 0xe8, 0x15, 0xe8, 0x18, 0xe8, 0x1d, 0xe8, 0x24, 0xe8,\n  0x2f, 0xe8, 0x37, 0xe8, 0x4c, 0xe8, 0x5e, 0xe8, 0x75, 0xe8, 0x91, 0xe8,\n  0xad, 0xe8, 0xd0, 0xe8, 0xef, 0xe8, 0x1b, 0xe9, 0x41, 0xe9, 0x70, 0xe9,\n  0x9f, 0xe9, 0xd1, 0xe9, 0x0e, 0xea, 0x47, 0xea, 0x8f, 0xea, 0xcf, 0xea,\n  0x1d, 0xeb, 0x64, 0xeb, 0xb7, 0xeb, 0x0c, 0xec, 0x62, 0xec, 0xbd, 0xec,\n  0x1b, 0xed, 0x77, 0xed, 0xd7, 0xed, 0x36, 0xee, 0x9b, 0xee, 0xfe, 0xee,\n  0x5e, 0xef, 0xc6, 0xef, 0x2b, 0xf0, 0x92, 0xf0, 0xfb, 0xf0, 0x67, 0xf1,\n  0xd3, 0xf1, 0x40, 0xf2, 0xaa, 0xf2, 0x1c, 0xf3, 0x89, 0xf3, 0xfb, 0xf3,\n  0x6c, 0xf4, 0xdb, 0xf4, 0x4f, 0xf5, 0xbc, 0xf5, 0x2f, 0xf6, 0xa3, 0xf6,\n  0x17, 0xf7, 0x89, 0xf7, 0xfa, 0xf7, 0x75, 0xf8, 0xe9, 0xf8, 0x65, 0xf9,\n  0xe4, 0xf9, 0x61, 0xfa, 0xe1, 0xfa, 0x60, 0xfb, 0xe4, 0xfb, 0x65, 0xfc,\n  0xe9, 0xfc, 0x6f, 0xfd, 0xf3, 0xfd, 0x78, 0xfe, 0xfc, 0xfe, 0x81, 0xff,\n  0x07, 0x00, 0x8b, 0x00, 0x10, 0x01, 0x94, 0x01, 0x1b, 0x02, 0xa5, 0x02,\n  0x27, 0x03, 0xad, 0x03, 0x33, 0x04, 0xbb, 0x04, 0x43, 0x05, 0xc6, 0x05,\n  0x4b, 0x06, 0xd0, 0x06, 0x4f, 0x07, 0xcb, 0x07, 0x4a, 0x08, 0xc7, 0x08,\n  0x3e, 0x09, 0xbc, 0x09, 0x2a, 0x0a, 0xa6, 0x0a, 0x1a, 0x0b, 0x8f, 0x0b,\n  0x05, 0x0c, 0x75, 0x0c, 0xe8, 0x0c, 0x58, 0x0d, 0xc4, 0x0d, 0x32, 0x0e,\n  0x99, 0x0e, 0x02, 0x0f, 0x6a, 0x0f, 0xcf, 0x0f, 0x30, 0x10, 0x90, 0x10,\n  0xef, 0x10, 0x4c, 0x11, 0xa9, 0x11, 0x02, 0x12, 0x5a, 0x12, 0xb3, 0x12,\n  0x04, 0x13, 0x59, 0x13, 0xaa, 0x13, 0xf6, 0x13, 0x44, 0x14, 0x8b, 0x14,\n  0xd4, 0x14, 0x18, 0x15, 0x5c, 0x15, 0x9c, 0x15, 0xdd, 0x15, 0x1a, 0x16,\n  0x52, 0x16, 0x8f, 0x16, 0xc3, 0x16, 0xf4, 0x16, 0x26, 0x17, 0x54, 0x17,\n  0x7e, 0x17, 0xa2, 0x17, 0xc9, 0x17, 0xea, 0x17, 0x02, 0x18, 0x20, 0x18,\n  0x39, 0x18, 0x4e, 0x18, 0x5c, 0x18, 0x6f, 0x18, 0x7a, 0x18, 0x7f, 0x18,\n  0x86, 0x18, 0x82, 0x18, 0x85, 0x18, 0x7e, 0x18, 0x78, 0x18, 0x71, 0x18,\n  0x62, 0x18, 0x55, 0x18, 0x46, 0x18, 0x32, 0x18, 0x1e, 0x18, 0x09, 0x18,\n  0xee, 0x17, 0xd2, 0x17, 0xb4, 0x17, 0x95, 0x17, 0x72, 0x17, 0x54, 0x17,\n  0x30, 0x17, 0x0c, 0x17, 0xe8, 0x16, 0xc1, 0x16, 0x9a, 0x16, 0x72, 0x16,\n  0x4a, 0x16, 0x1f, 0x16, 0xf1, 0x15, 0xbf, 0x15, 0x8d, 0x15, 0x59, 0x15,\n  0x20, 0x15, 0xe4, 0x14, 0xab, 0x14, 0x65, 0x14, 0x23, 0x14, 0xda, 0x13,\n  0x90, 0x13, 0x45, 0x13, 0xf5, 0x12, 0xa4, 0x12, 0x52, 0x12, 0xfc, 0x11,\n  0xa2, 0x11, 0x4c, 0x11, 0xef, 0x10, 0x90, 0x10, 0x30, 0x10, 0xcf, 0x0f,\n  0x6c, 0x0f, 0x01, 0x0f, 0x9c, 0x0e, 0x30, 0x0e, 0xc1, 0x0d, 0x55, 0x0d,\n  0xe0, 0x0c, 0x6e, 0x0c, 0xf6, 0x0b, 0x7a, 0x0b, 0xfe, 0x0a, 0x81, 0x0a,\n  0x04, 0x0a, 0x80, 0x09, 0x01, 0x09, 0x7e, 0x08, 0xfb, 0x07, 0x76, 0x07,\n  0xef, 0x06, 0x6e, 0x06, 0xe7, 0x05, 0x63, 0x05, 0xda, 0x04, 0x57, 0x04,\n  0xcd, 0x03, 0x4b, 0x03, 0xc3, 0x02, 0x3d, 0x02, 0xb4, 0x01, 0x30, 0x01,\n  0xa9, 0x00, 0x1f, 0x00, 0x9e, 0xff, 0x12, 0xff, 0x90, 0xfe, 0x07, 0xfe,\n  0x85, 0xfd, 0x01, 0xfd, 0x79, 0xfc, 0xfe, 0xfb, 0x78, 0xfb, 0xf8, 0xfa,\n  0x75, 0xfa, 0xf5, 0xf9, 0x71, 0xf9, 0xf2, 0xf8, 0x72, 0xf8, 0xf7, 0xf7,\n  0x79, 0xf7, 0xfa, 0xf6, 0x81, 0xf6, 0x04, 0xf6, 0x8a, 0xf5, 0x14, 0xf5,\n  0x9e, 0xf4, 0x22, 0xf4, 0xb0, 0xf3, 0x3a, 0xf3, 0xcb, 0xf2, 0x59, 0xf2,\n  0xe9, 0xf1, 0x7b, 0xf1, 0x0e, 0xf1, 0xa7, 0xf0, 0x3e, 0xf0, 0xd7, 0xef,\n  0x72, 0xef, 0x12, 0xef, 0xb2, 0xee, 0x52, 0xee, 0xf8, 0xed, 0xa1, 0xed,\n  0x4a, 0xed, 0xf6, 0xec, 0xa4, 0xec, 0x54, 0xec, 0x0d, 0xec, 0xc1, 0xeb,\n  0x81, 0xeb, 0x3e, 0xeb, 0x03, 0xeb, 0xce, 0xea, 0x95, 0xea, 0x68, 0xea,\n  0x38, 0xea, 0x13, 0xea, 0xea, 0xe9, 0xc3, 0xe9, 0xa2, 0xe9, 0x84, 0xe9,\n  0x66, 0xe9, 0x4e, 0xe9, 0x31, 0xe9, 0x17, 0xe9, 0x05, 0xe9, 0xef, 0xe8,\n  0xdd, 0xe8, 0xcd, 0xe8, 0xbc, 0xe8, 0xb2, 0xe8, 0xa5, 0xe8, 0x9d, 0xe8,\n  0x94, 0xe8, 0x94, 0xe8, 0x91, 0xe8, 0x96, 0xe8, 0x9a, 0xe8, 0xa3, 0xe8,\n  0xaf, 0xe8, 0xbc, 0xe8, 0xd2, 0xe8, 0xe2, 0xe8, 0x00, 0xe9, 0x1c, 0xe9,\n  0x3c, 0xe9, 0x5e, 0xe9, 0x83, 0xe9, 0xab, 0xe9, 0xd2, 0xe9, 0x02, 0xea,\n  0x30, 0xea, 0x60, 0xea, 0x90, 0xea, 0xc2, 0xea, 0xfb, 0xea, 0x31, 0xeb,\n  0x6d, 0xeb, 0xa3, 0xeb, 0xe2, 0xeb, 0x1e, 0xec, 0x5d, 0xec, 0x9c, 0xec,\n  0xdf, 0xec, 0x21, 0xed, 0x61, 0xed, 0xa3, 0xed, 0xe5, 0xed, 0x2c, 0xee,\n  0x6e, 0xee, 0xb1, 0xee, 0xf7, 0xee, 0x38, 0xef, 0x7e, 0xef, 0xc1, 0xef,\n  0x0a, 0xf0, 0x50, 0xf0, 0x98, 0xf0, 0xde, 0xf0, 0x29, 0xf1, 0x76, 0xf1,\n  0xc4, 0xf1, 0x14, 0xf2, 0x69, 0xf2, 0xbc, 0xf2, 0x13, 0xf3, 0x6f, 0xf3,\n  0xc8, 0xf3, 0x24, 0xf4, 0x84, 0xf4, 0xe6, 0xf4, 0x49, 0xf5, 0xae, 0xf5,\n  0x14, 0xf6, 0x7a, 0xf6, 0xe3, 0xf6, 0x50, 0xf7, 0xb9, 0xf7, 0x28, 0xf8,\n  0x94, 0xf8, 0x01, 0xf9, 0x74, 0xf9, 0xe6, 0xf9, 0x5d, 0xfa, 0xd4, 0xfa,\n  0x4d, 0xfb, 0xc9, 0xfb, 0x4d, 0xfc, 0xc5, 0xfc, 0x47, 0xfd, 0xc9, 0xfd,\n  0x4b, 0xfe, 0xcd, 0xfe, 0x4b, 0xff, 0xcb, 0xff, 0x44, 0x00, 0xc4, 0x00,\n  0x3d, 0x01, 0xb4, 0x01, 0x2d, 0x02, 0x9f, 0x02, 0x0f, 0x03, 0x7d, 0x03,\n  0xe7, 0x03, 0x4f, 0x04, 0xb7, 0x04, 0x1b, 0x05, 0x7e, 0x05, 0xe3, 0x05,\n  0x3f, 0x06, 0x9f, 0x06, 0xfb, 0x06, 0x53, 0x07, 0xb3, 0x07, 0x0d, 0x08,\n  0x66, 0x08, 0xc4, 0x08, 0x1f, 0x09, 0x77, 0x09, 0xd9, 0x09, 0x35, 0x0a,\n  0x91, 0x0a, 0xee, 0x0a, 0x4c, 0x0b, 0xa7, 0x0b, 0x02, 0x0c, 0x5f, 0x0c,\n  0xb6, 0x0c, 0x0e, 0x0d, 0x67, 0x0d, 0xbc, 0x0d, 0x0f, 0x0e, 0x5f, 0x0e,\n  0xb0, 0x0e, 0x02, 0x0f, 0x4e, 0x0f, 0x9c, 0x0f, 0xe6, 0x0f, 0x2b, 0x10,\n  0x6e, 0x10, 0xaf, 0x10, 0xeb, 0x10, 0x26, 0x11, 0x5d, 0x11, 0x90, 0x11,\n  0xc0, 0x11, 0xf2, 0x11, 0x1d, 0x12, 0x4b, 0x12, 0x76, 0x12, 0x9b, 0x12,\n  0xc1, 0x12, 0xea, 0x12, 0x0e, 0x13, 0x36, 0x13, 0x59, 0x13, 0x7a, 0x13,\n  0xa3, 0x13, 0xc1, 0x13, 0xe5, 0x13, 0x02, 0x14, 0x24, 0x14, 0x3f, 0x14,\n  0x5b, 0x14, 0x72, 0x14, 0x8a, 0x14, 0xa2, 0x14, 0xb1, 0x14, 0xc6, 0x14,\n  0xd1, 0x14, 0xde, 0x14, 0xe8, 0x14, 0xee, 0x14, 0xf3, 0x14, 0xf5, 0x14,\n  0xf2, 0x14, 0xf3, 0x14, 0xee, 0x14, 0xe6, 0x14, 0xde, 0x14, 0xd1, 0x14,\n  0xc5, 0x14, 0xb3, 0x14, 0xa1, 0x14, 0x8b, 0x14, 0x74, 0x14, 0x5d, 0x14,\n  0x3f, 0x14, 0x1f, 0x14, 0xfd, 0x13, 0xda, 0x13, 0xb5, 0x13, 0x8c, 0x13,\n  0x63, 0x13, 0x36, 0x13, 0x0f, 0x13, 0xde, 0x12, 0xb0, 0x12, 0x83, 0x12,\n  0x52, 0x12, 0x22, 0x12, 0xee, 0x11, 0xbd, 0x11, 0x86, 0x11, 0x4f, 0x11,\n  0x15, 0x11, 0xda, 0x10, 0x9b, 0x10, 0x58, 0x10, 0x10, 0x10, 0xc7, 0x0f,\n  0x79, 0x0f, 0x28, 0x0f, 0xd5, 0x0e, 0x81, 0x0e, 0x24, 0x0e, 0xc9, 0x0d,\n  0x69, 0x0d, 0x0a, 0x0d, 0xa7, 0x0c, 0x3f, 0x0c, 0xda, 0x0b, 0x6d, 0x0b,\n  0x04, 0x0b, 0x97, 0x0a, 0x25, 0x0a, 0xb6, 0x09, 0x45, 0x09, 0xcf, 0x08,\n  0x59, 0x08, 0xe7, 0x07, 0x6e, 0x07, 0xf8, 0x06, 0x7c, 0x06, 0x04, 0x06,\n  0x87, 0x05, 0x0f, 0x05, 0x94, 0x04, 0x18, 0x04, 0xa1, 0x03, 0x25, 0x03,\n  0xb1, 0x02, 0x39, 0x02, 0xc6, 0x01, 0x51, 0x01, 0xdd, 0x00, 0x6a, 0x00,\n  0xfb, 0xff, 0x87, 0xff, 0x18, 0xff, 0xa6, 0xfe, 0x3a, 0xfe, 0xc9, 0xfd,\n  0x5d, 0xfd, 0xef, 0xfc, 0x83, 0xfc, 0x19, 0xfc, 0xae, 0xfb, 0x45, 0xfb,\n  0xde, 0xfa, 0x79, 0xfa, 0x14, 0xfa, 0xb0, 0xf9, 0x4d, 0xf9, 0xf0, 0xf8,\n  0x90, 0xf8, 0x31, 0xf8, 0xd6, 0xf7, 0x79, 0xf7, 0x20, 0xf7, 0xc9, 0xf6,\n  0x74, 0xf6, 0x21, 0xf6, 0xd0, 0xf5, 0x79, 0xf5, 0x2c, 0xf5, 0xdf, 0xf4,\n  0x8e, 0xf4, 0x43, 0xf4, 0xf8, 0xf3, 0xae, 0xf3, 0x64, 0xf3, 0x1e, 0xf3,\n  0xd2, 0xf2, 0x8e, 0xf2, 0x46, 0xf2, 0x02, 0xf2, 0xc1, 0xf1, 0x81, 0xf1,\n  0x42, 0xf1, 0x07, 0xf1, 0xcf, 0xf0, 0x94, 0xf0, 0x5f, 0xf0, 0x29, 0xf0,\n  0xf3, 0xef, 0xc5, 0xef, 0x96, 0xef, 0x6c, 0xef, 0x3c, 0xef, 0x11, 0xef,\n  0xe8, 0xee, 0xbf, 0xee, 0x9d, 0xee, 0x7a, 0xee, 0x54, 0xee, 0x33, 0xee,\n  0x16, 0xee, 0xf8, 0xed, 0xe0, 0xed, 0xc1, 0xed, 0xaa, 0xed, 0x8d, 0xed,\n  0x77, 0xed, 0x61, 0xed, 0x4a, 0xed, 0x38, 0xed, 0x26, 0xed, 0x17, 0xed,\n  0x0b, 0xed, 0xff, 0xec, 0xf8, 0xec, 0xf3, 0xec, 0xf2, 0xec, 0xf1, 0xec,\n  0xf2, 0xec, 0xfc, 0xec, 0xfc, 0xec, 0x0b, 0xed, 0x11, 0xed, 0x20, 0xed,\n  0x2f, 0xed, 0x41, 0xed, 0x55, 0xed, 0x67, 0xed, 0x7d, 0xed, 0x94, 0xed,\n  0xae, 0xed, 0xc8, 0xed, 0xe3, 0xed, 0x04, 0xee, 0x24, 0xee, 0x48, 0xee,\n  0x70, 0xee, 0x97, 0xee, 0xc3, 0xee, 0xef, 0xee, 0x1e, 0xef, 0x4e, 0xef,\n  0x81, 0xef, 0xb6, 0xef, 0xeb, 0xef, 0x22, 0xf0, 0x5b, 0xf0, 0x9a, 0xf0,\n  0xd4, 0xf0, 0x19, 0xf1, 0x59, 0xf1, 0xa0, 0xf1, 0xea, 0xf1, 0x33, 0xf2,\n  0x7f, 0xf2, 0xd0, 0xf2, 0x22, 0xf3, 0x77, 0xf3, 0xce, 0xf3, 0x24, 0xf4,\n  0x7f, 0xf4, 0xd7, 0xf4, 0x32, 0xf5, 0x8a, 0xf5, 0xe4, 0xf5, 0x41, 0xf6,\n  0x98, 0xf6, 0xf0, 0xf6, 0x49, 0xf7, 0xa0, 0xf7, 0xf7, 0xf7, 0x4c, 0xf8,\n  0xa8, 0xf8, 0xfd, 0xf8, 0x56, 0xf9, 0xaa, 0xf9, 0x06, 0xfa, 0x5a, 0xfa,\n  0xb0, 0xfa, 0x09, 0xfb, 0x5d, 0xfb, 0xb5, 0xfb, 0x09, 0xfc, 0x5f, 0xfc,\n  0xb3, 0xfc, 0x07, 0xfd, 0x59, 0xfd, 0xab, 0xfd, 0xfb, 0xfd, 0x4b, 0xfe,\n  0x97, 0xfe, 0xe8, 0xfe, 0x30, 0xff, 0x7a, 0xff, 0xc5, 0xff, 0x0b, 0x00,\n  0x4f, 0x00, 0x97, 0x00, 0xdd, 0x00, 0x22, 0x01, 0x69, 0x01, 0xaf, 0x01,\n  0xf7, 0x01, 0x41, 0x02, 0x8d, 0x02, 0xd5, 0x02, 0x23, 0x03, 0x71, 0x03,\n  0xbf, 0x03, 0x10, 0x04, 0x63, 0x04, 0xb7, 0x04, 0x0a, 0x05, 0x5e, 0x05,\n  0xb4, 0x05, 0x0b, 0x06, 0x62, 0x06, 0xbc, 0x06, 0x16, 0x07, 0x6f, 0x07,\n  0xc7, 0x07, 0x20, 0x08, 0x7f, 0x08, 0xd5, 0x08, 0x32, 0x09, 0x8d, 0x09,\n  0xe6, 0x09, 0x44, 0x0a, 0x97, 0x0a, 0xf0, 0x0a, 0x46, 0x0b, 0x9f, 0x0b,\n  0xed, 0x0b, 0x3c, 0x0c, 0x8d, 0x0c, 0xd1, 0x0c, 0x21, 0x0d, 0x67, 0x0d,\n  0xad, 0x0d, 0xf0, 0x0d, 0x34, 0x0e, 0x72, 0x0e, 0xac, 0x0e, 0xef, 0x0e,\n  0x28, 0x0f, 0x62, 0x0f, 0x98, 0x0f, 0xcf, 0x0f, 0x03, 0x10, 0x31, 0x10,\n  0x63, 0x10, 0x8e, 0x10, 0xb9, 0x10, 0xe4, 0x10, 0x0d, 0x11, 0x30, 0x11,\n  0x56, 0x11, 0x78, 0x11, 0x99, 0x11, 0xb3, 0x11, 0xcf, 0x11, 0xe8, 0x11,\n  0xfc, 0x11, 0x10, 0x12, 0x20, 0x12, 0x31, 0x12, 0x3f, 0x12, 0x4a, 0x12,\n  0x50, 0x12, 0x56, 0x12, 0x5a, 0x12, 0x5d, 0x12, 0x5f, 0x12, 0x5d, 0x12,\n  0x5a, 0x12, 0x56, 0x12, 0x4e, 0x12, 0x46, 0x12, 0x3b, 0x12, 0x2f, 0x12,\n  0x25, 0x12, 0x14, 0x12, 0x04, 0x12, 0xf2, 0x11, 0xdf, 0x11, 0xc3, 0x11,\n  0xaf, 0x11, 0x96, 0x11, 0x72, 0x11, 0x58, 0x11, 0x30, 0x11, 0x0f, 0x11,\n  0xe5, 0x10, 0xbe, 0x10, 0x8e, 0x10, 0x5e, 0x10, 0x30, 0x10, 0xfa, 0x0f,\n  0xc8, 0x0f, 0x95, 0x0f, 0x5f, 0x0f, 0x29, 0x0f, 0xf2, 0x0e, 0xb7, 0x0e,\n  0x7c, 0x0e, 0x42, 0x0e, 0x07, 0x0e, 0xca, 0x0d, 0x8a, 0x0d, 0x4f, 0x0d,\n  0x0e, 0x0d, 0xce, 0x0c, 0x89, 0x0c, 0x47, 0x0c, 0x02, 0x0c, 0xbd, 0x0b,\n  0x76, 0x0b, 0x2a, 0x0b, 0xe5, 0x0a, 0x91, 0x0a, 0x49, 0x0a, 0xf7, 0x09,\n  0xa9, 0x09, 0x59, 0x09, 0x0a, 0x09, 0xb9, 0x08, 0x66, 0x08, 0x0f, 0x08,\n  0xbb, 0x07, 0x67, 0x07, 0x0e, 0x07, 0xb7, 0x06, 0x5f, 0x06, 0x08, 0x06,\n  0xae, 0x05, 0x52, 0x05, 0xfa, 0x04, 0x9c, 0x04, 0x40, 0x04, 0xe3, 0x03,\n  0x89, 0x03, 0x2d, 0x03, 0xcd, 0x02, 0x75, 0x02, 0x15, 0x02, 0xba, 0x01,\n  0x5e, 0x01, 0x04, 0x01, 0xa4, 0x00, 0x4c, 0x00, 0xf0, 0xff, 0x96, 0xff,\n  0x39, 0xff, 0xdf, 0xfe, 0x82, 0xfe, 0x27, 0xfe, 0xd3, 0xfd, 0x75, 0xfd,\n  0x21, 0xfd, 0xc7, 0xfc, 0x71, 0xfc, 0x1d, 0xfc, 0xc4, 0xfb, 0x6e, 0xfb,\n  0x18, 0xfb, 0xc4, 0xfa, 0x6a, 0xfa, 0x15, 0xfa, 0xc0, 0xf9, 0x68, 0xf9,\n  0x15, 0xf9, 0xc0, 0xf8, 0x69, 0xf8, 0x12, 0xf8, 0xc1, 0xf7, 0x6a, 0xf7,\n  0x19, 0xf7, 0xca, 0xf6, 0x78, 0xf6, 0x29, 0xf6, 0xd9, 0xf5, 0x88, 0xf5,\n  0x3b, 0xf5, 0xf1, 0xf4, 0xa2, 0xf4, 0x59, 0xf4, 0x10, 0xf4, 0xc4, 0xf3,\n  0x7c, 0xf3, 0x38, 0xf3, 0xf6, 0xf2, 0xb1, 0xf2, 0x6f, 0xf2, 0x32, 0xf2,\n  0xf3, 0xf1, 0xb9, 0xf1, 0x82, 0xf1, 0x4b, 0xf1, 0x16, 0xf1, 0xe6, 0xf0,\n  0xb3, 0xf0, 0x89, 0xf0, 0x5f, 0xf0, 0x34, 0xf0, 0x11, 0xf0, 0xee, 0xef,\n  0xc8, 0xef, 0xac, 0xef, 0x8b, 0xef, 0x71, 0xef, 0x57, 0xef, 0x3f, 0xef,\n  0x2b, 0xef, 0x12, 0xef, 0x01, 0xef, 0xef, 0xee, 0xe1, 0xee, 0xd3, 0xee,\n  0xc6, 0xee, 0xb8, 0xee, 0xad, 0xee, 0xa5, 0xee, 0x9b, 0xee, 0x94, 0xee,\n  0x8f, 0xee, 0x8c, 0xee, 0x87, 0xee, 0x82, 0xee, 0x81, 0xee, 0x80, 0xee,\n  0x81, 0xee, 0x81, 0xee, 0x85, 0xee, 0x8e, 0xee, 0x91, 0xee, 0x9d, 0xee,\n  0xa8, 0xee, 0xb4, 0xee, 0xc3, 0xee, 0xd5, 0xee, 0xee, 0xee, 0x01, 0xef,\n  0x1b, 0xef, 0x36, 0xef, 0x56, 0xef, 0x7b, 0xef, 0xa0, 0xef, 0xc5, 0xef,\n  0xf2, 0xef, 0x20, 0xf0, 0x4e, 0xf0, 0x80, 0xf0, 0xb3, 0xf0, 0xeb, 0xf0,\n  0x22, 0xf1, 0x59, 0xf1, 0x93, 0xf1, 0xd1, 0xf1, 0x10, 0xf2, 0x4e, 0xf2,\n  0x90, 0xf2, 0xd1, 0xf2, 0x11, 0xf3, 0x57, 0xf3, 0x9e, 0xf3, 0xe9, 0xf3,\n  0x2f, 0xf4, 0x7c, 0xf4, 0xc8, 0xf4, 0x19, 0xf5, 0x69, 0xf5, 0xba, 0xf5,\n  0x0f, 0xf6, 0x60, 0xf6, 0xb9, 0xf6, 0x0e, 0xf7, 0x61, 0xf7, 0xb9, 0xf7,\n  0x10, 0xf8, 0x65, 0xf8, 0xbd, 0xf8, 0x14, 0xf9, 0x6a, 0xf9, 0xc5, 0xf9,\n  0x1e, 0xfa, 0x76, 0xfa, 0xcd, 0xfa, 0x29, 0xfb, 0x84, 0xfb, 0xde, 0xfb,\n  0x37, 0xfc, 0x8f, 0xfc, 0xeb, 0xfc, 0x43, 0xfd, 0x9d, 0xfd, 0xf9, 0xfd,\n  0x51, 0xfe, 0xaf, 0xfe, 0x09, 0xff, 0x63, 0xff, 0xc3, 0xff, 0x1d, 0x00,\n  0x7d, 0x00, 0xdc, 0x00, 0x39, 0x01, 0x9a, 0x01, 0xf6, 0x01, 0x57, 0x02,\n  0xb3, 0x02, 0x17, 0x03, 0x71, 0x03, 0xd1, 0x03, 0x30, 0x04, 0x8e, 0x04,\n  0xeb, 0x04, 0x46, 0x05, 0x9f, 0x05, 0xfa, 0x05, 0x53, 0x06, 0xab, 0x06,\n  0x03, 0x07, 0x56, 0x07, 0xaa, 0x07, 0xfe, 0x07, 0x4a, 0x08, 0x9f, 0x08,\n  0xea, 0x08, 0x37, 0x09, 0x80, 0x09, 0xca, 0x09, 0x10, 0x0a, 0x51, 0x0a,\n  0x97, 0x0a, 0xd4, 0x0a, 0x12, 0x0b, 0x4a, 0x0b, 0x87, 0x0b, 0xbd, 0x0b,\n  0xf2, 0x0b, 0x28, 0x0c, 0x58, 0x0c, 0x88, 0x0c, 0xb4, 0x0c, 0xe4, 0x0c,\n  0x0a, 0x0d, 0x37, 0x0d, 0x5c, 0x0d, 0x85, 0x0d, 0xac, 0x0d, 0xc9, 0x0d,\n  0xef, 0x0d, 0x0d, 0x0e, 0x2f, 0x0e, 0x4a, 0x0e, 0x66, 0x0e, 0x85, 0x0e,\n  0x9c, 0x0e, 0xb5, 0x0e, 0xc8, 0x0e, 0xdf, 0x0e, 0xf4, 0x0e, 0x08, 0x0f,\n  0x1a, 0x0f, 0x2c, 0x0f, 0x40, 0x0f, 0x4e, 0x0f, 0x5d, 0x0f, 0x68, 0x0f,\n  0x74, 0x0f, 0x7d, 0x0f, 0x86, 0x0f, 0x8c, 0x0f, 0x8f, 0x0f, 0x92, 0x0f,\n  0x95, 0x0f, 0x96, 0x0f, 0x92, 0x0f, 0x92, 0x0f, 0x8d, 0x0f, 0x86, 0x0f,\n  0x86, 0x0f, 0x7e, 0x0f, 0x77, 0x0f, 0x6f, 0x0f, 0x67, 0x0f, 0x61, 0x0f,\n  0x57, 0x0f, 0x50, 0x0f, 0x47, 0x0f, 0x3c, 0x0f, 0x2f, 0x0f, 0x20, 0x0f,\n  0x10, 0x0f, 0x01, 0x0f, 0xf0, 0x0e, 0xdf, 0x0e, 0xcf, 0x0e, 0xb7, 0x0e,\n  0xa2, 0x0e, 0x8e, 0x0e, 0x75, 0x0e, 0x60, 0x0e, 0x46, 0x0e, 0x29, 0x0e,\n  0x0f, 0x0e, 0xf5, 0x0d, 0xd7, 0x0d, 0xb8, 0x0d, 0x99, 0x0d, 0x77, 0x0d,\n  0x52, 0x0d, 0x2e, 0x0d, 0x04, 0x0d, 0xda, 0x0c, 0xaf, 0x0c, 0x82, 0x0c,\n  0x4e, 0x0c, 0x19, 0x0c, 0xe5, 0x0b, 0xaa, 0x0b, 0x6f, 0x0b, 0x36, 0x0b,\n  0xf7, 0x0a, 0xb8, 0x0a, 0x76, 0x0a, 0x31, 0x0a, 0xf5, 0x09, 0xa9, 0x09,\n  0x66, 0x09, 0x1a, 0x09, 0xcf, 0x08, 0x84, 0x08, 0x39, 0x08, 0xeb, 0x07,\n  0x9a, 0x07, 0x4b, 0x07, 0xf4, 0x06, 0xa2, 0x06, 0x4c, 0x06, 0xf7, 0x05,\n  0x9f, 0x05, 0x46, 0x05, 0xeb, 0x04, 0x92, 0x04, 0x33, 0x04, 0xdd, 0x03,\n  0x7d, 0x03, 0x21, 0x03, 0xc5, 0x02, 0x67, 0x02, 0x0f, 0x02, 0xaf, 0x01,\n  0x55, 0x01, 0xfa, 0x00, 0xa1, 0x00, 0x41, 0x00, 0xea, 0xff, 0x8c, 0xff,\n  0x33, 0xff, 0xd9, 0xfe, 0x78, 0xfe, 0x24, 0xfe, 0xc7, 0xfd, 0x6d, 0xfd,\n  0x13, 0xfd, 0xbf, 0xfc, 0x63, 0xfc, 0x0b, 0xfc, 0xba, 0xfb, 0x64, 0xfb,\n  0x11, 0xfb, 0xbe, 0xfa, 0x70, 0xfa, 0x22, 0xfa, 0xd5, 0xf9, 0x85, 0xf9,\n  0x3d, 0xf9, 0xf0, 0xf8, 0xa8, 0xf8, 0x56, 0xf8, 0x10, 0xf8, 0xc8, 0xf7,\n  0x80, 0xf7, 0x39, 0xf7, 0xf0, 0xf6, 0xb0, 0xf6, 0x6a, 0xf6, 0x2f, 0xf6,\n  0xee, 0xf5, 0xaf, 0xf5, 0x6c, 0xf5, 0x33, 0xf5, 0xf7, 0xf4, 0xbf, 0xf4,\n  0x86, 0xf4, 0x4c, 0xf4, 0x1b, 0xf4, 0xe3, 0xf3, 0xb3, 0xf3, 0x81, 0xf3,\n  0x53, 0xf3, 0x27, 0xf3, 0xfb, 0xf2, 0xd4, 0xf2, 0xab, 0xf2, 0x89, 0xf2,\n  0x69, 0xf2, 0x49, 0xf2, 0x2c, 0xf2, 0x10, 0xf2, 0xf4, 0xf1, 0xdf, 0xf1,\n  0xc3, 0xf1, 0xb0, 0xf1, 0x98, 0xf1, 0x86, 0xf1, 0x73, 0xf1, 0x61, 0xf1,\n  0x51, 0xf1, 0x41, 0xf1, 0x33, 0xf1, 0x24, 0xf1, 0x17, 0xf1, 0x10, 0xf1,\n  0x09, 0xf1, 0x04, 0xf1, 0xff, 0xf0, 0xfa, 0xf0, 0xfb, 0xf0, 0x01, 0xf1,\n  0x03, 0xf1, 0x0c, 0xf1, 0x12, 0xf1, 0x19, 0xf1, 0x26, 0xf1, 0x31, 0xf1,\n  0x39, 0xf1, 0x49, 0xf1, 0x56, 0xf1, 0x61, 0xf1, 0x73, 0xf1, 0x82, 0xf1,\n  0x94, 0xf1, 0xa9, 0xf1, 0xba, 0xf1, 0xd1, 0xf1, 0xe4, 0xf1, 0x00, 0xf2,\n  0x18, 0xf2, 0x31, 0xf2, 0x4e, 0xf2, 0x69, 0xf2, 0x88, 0xf2, 0xa4, 0xf2,\n  0xc7, 0xf2, 0xe8, 0xf2, 0x09, 0xf3, 0x2c, 0xf3, 0x51, 0xf3, 0x78, 0xf3,\n  0x9b, 0xf3, 0xc6, 0xf3, 0xe9, 0xf3, 0x12, 0xf4, 0x40, 0xf4, 0x69, 0xf4,\n  0x98, 0xf4, 0xc4, 0xf4, 0xf3, 0xf4, 0x29, 0xf5, 0x59, 0xf5, 0x8e, 0xf5,\n  0xc0, 0xf5, 0xf7, 0xf5, 0x31, 0xf6, 0x6a, 0xf6, 0xa8, 0xf6, 0xe6, 0xf6,\n  0x26, 0xf7, 0x67, 0xf7, 0xab, 0xf7, 0xf3, 0xf7, 0x3c, 0xf8, 0x89, 0xf8,\n  0xd5, 0xf8, 0x24, 0xf9, 0x71, 0xf9, 0xc2, 0xf9, 0x12, 0xfa, 0x61, 0xfa,\n  0xb5, 0xfa, 0x01, 0xfb, 0x54, 0xfb, 0xa5, 0xfb, 0xf4, 0xfb, 0x3f, 0xfc,\n  0x91, 0xfc, 0xe1, 0xfc, 0x29, 0xfd, 0x77, 0xfd, 0xc1, 0xfd, 0x0a, 0xfe,\n  0x57, 0xfe, 0x9f, 0xfe, 0xe8, 0xfe, 0x30, 0xff, 0x77, 0xff, 0xbd, 0xff,\n  0x01, 0x00, 0x47, 0x00, 0x8e, 0x00, 0xd1, 0x00, 0x16, 0x01, 0x5b, 0x01,\n  0xa2, 0x01, 0xe4, 0x01, 0x27, 0x02, 0x69, 0x02, 0xad, 0x02, 0xed, 0x02,\n  0x2f, 0x03, 0x71, 0x03, 0xb3, 0x03, 0xf5, 0x03, 0x37, 0x04, 0x7a, 0x04,\n  0xbb, 0x04, 0xfe, 0x04, 0x3f, 0x05, 0x83, 0x05, 0xc6, 0x05, 0x06, 0x06,\n  0x4c, 0x06, 0x8b, 0x06, 0xcb, 0x06, 0x0e, 0x07, 0x4b, 0x07, 0x8b, 0x07,\n  0xc7, 0x07, 0x06, 0x08, 0x3f, 0x08, 0x7e, 0x08, 0xb5, 0x08, 0xee, 0x08,\n  0x24, 0x09, 0x56, 0x09, 0x88, 0x09, 0xb8, 0x09, 0xe8, 0x09, 0x14, 0x0a,\n  0x3e, 0x0a, 0x69, 0x0a, 0x94, 0x0a, 0xb7, 0x0a, 0xdf, 0x0a, 0x00, 0x0b,\n  0x20, 0x0b, 0x3d, 0x0b, 0x5a, 0x0b, 0x77, 0x0b, 0x8e, 0x0b, 0xa6, 0x0b,\n  0xbe, 0x0b, 0xd5, 0x0b, 0xe9, 0x0b, 0xfd, 0x0b, 0x0f, 0x0c, 0x1f, 0x0c,\n  0x31, 0x0c, 0x44, 0x0c, 0x57, 0x0c, 0x67, 0x0c, 0x7e, 0x0c, 0x8f, 0x0c,\n  0xa7, 0x0c, 0xb7, 0x0c, 0xce, 0x0c, 0xe0, 0x0c, 0xf5, 0x0c, 0x05, 0x0d,\n  0x17, 0x0d, 0x28, 0x0d, 0x37, 0x0d, 0x44, 0x0d, 0x4c, 0x0d, 0x58, 0x0d,\n  0x5f, 0x0d, 0x67, 0x0d, 0x6a, 0x0d, 0x6e, 0x0d, 0x70, 0x0d, 0x72, 0x0d,\n  0x70, 0x0d, 0x70, 0x0d, 0x70, 0x0d, 0x69, 0x0d, 0x65, 0x0d, 0x5f, 0x0d,\n  0x56, 0x0d, 0x4c, 0x0d, 0x42, 0x0d, 0x34, 0x0d, 0x22, 0x0d, 0x12, 0x0d,\n  0xfc, 0x0c, 0xe6, 0x0c, 0xce, 0x0c, 0xb2, 0x0c, 0x96, 0x0c, 0x75, 0x0c,\n  0x56, 0x0c, 0x2f, 0x0c, 0x0c, 0x0c, 0xe0, 0x0b, 0xba, 0x0b, 0x90, 0x0b,\n  0x68, 0x0b, 0x3c, 0x0b, 0x0c, 0x0b, 0xdc, 0x0a, 0xa8, 0x0a, 0x76, 0x0a,\n  0x42, 0x0a, 0x0a, 0x0a, 0xcf, 0x09, 0x96, 0x09, 0x58, 0x09, 0x17, 0x09,\n  0xd6, 0x08, 0x96, 0x08, 0x4f, 0x08, 0x06, 0x08, 0xbf, 0x07, 0x77, 0x07,\n  0x2e, 0x07, 0xdf, 0x06, 0x96, 0x06, 0x47, 0x06, 0xff, 0x05, 0xaf, 0x05,\n  0x63, 0x05, 0x18, 0x05, 0xcb, 0x04, 0x83, 0x04, 0x37, 0x04, 0xef, 0x03,\n  0xa3, 0x03, 0x59, 0x03, 0x0b, 0x03, 0xc3, 0x02, 0x79, 0x02, 0x2d, 0x02,\n  0xe2, 0x01, 0x9a, 0x01, 0x4e, 0x01, 0x07, 0x01, 0xbf, 0x00, 0x79, 0x00,\n  0x32, 0x00, 0xf0, 0xff, 0xad, 0xff, 0x66, 0xff, 0x27, 0xff, 0xea, 0xfe,\n  0xa8, 0xfe, 0x6a, 0xfe, 0x2e, 0xfe, 0xf1, 0xfd, 0xb7, 0xfd, 0x7f, 0xfd,\n  0x45, 0xfd, 0x11, 0xfd, 0xdb, 0xfc, 0xa7, 0xfc, 0x71, 0xfc, 0x41, 0xfc,\n  0x11, 0xfc, 0xde, 0xfb, 0xad, 0xfb, 0x81, 0xfb, 0x54, 0xfb, 0x24, 0xfb,\n  0xf5, 0xfa, 0xc8, 0xfa, 0x9d, 0xfa, 0x6d, 0xfa, 0x3d, 0xfa, 0x0d, 0xfa,\n  0xda, 0xf9, 0xaa, 0xf9, 0x7d, 0xf9, 0x4d, 0xf9, 0x1a, 0xf9, 0xf0, 0xf8,\n  0xb8, 0xf8, 0x8d, 0xf8, 0x5a, 0xf8, 0x29, 0xf8, 0xfe, 0xf7, 0xd0, 0xf7,\n  0xa2, 0xf7, 0x71, 0xf7, 0x46, 0xf7, 0x16, 0xf7, 0xe9, 0xf6, 0xbf, 0xf6,\n  0x92, 0xf6, 0x62, 0xf6, 0x3a, 0xf6, 0x11, 0xf6, 0xe8, 0xf5, 0xbe, 0xf5,\n  0x99, 0xf5, 0x74, 0xf5, 0x51, 0xf5, 0x2e, 0xf5, 0x11, 0xf5, 0xf4, 0xf4,\n  0xd7, 0xf4, 0xbe, 0xf4, 0xa3, 0xf4, 0x91, 0xf4, 0x7b, 0xf4, 0x69, 0xf4,\n  0x56, 0xf4, 0x49, 0xf4, 0x3a, 0xf4, 0x31, 0xf4, 0x24, 0xf4, 0x1c, 0xf4,\n  0x17, 0xf4, 0x0e, 0xf4, 0x0c, 0xf4, 0x03, 0xf4, 0x01, 0xf4, 0xfe, 0xf3,\n  0xfa, 0xf3, 0xfb, 0xf3, 0xf6, 0xf3, 0xf9, 0xf3, 0xf8, 0xf3, 0xf1, 0xf3,\n  0xf0, 0xf3, 0xeb, 0xf3, 0xeb, 0xf3, 0xe9, 0xf3, 0xe7, 0xf3, 0xe3, 0xf3,\n  0xe1, 0xf3, 0xe0, 0xf3, 0xde, 0xf3, 0xe1, 0xf3, 0xe2, 0xf3, 0xe7, 0xf3,\n  0xe9, 0xf3, 0xf4, 0xf3, 0xf8, 0xf3, 0x04, 0xf4, 0x11, 0xf4, 0x1c, 0xf4,\n  0x2f, 0xf4, 0x3c, 0xf4, 0x52, 0xf4, 0x63, 0xf4, 0x7c, 0xf4, 0x91, 0xf4,\n  0xac, 0xf4, 0xc7, 0xf4, 0xe4, 0xf4, 0x07, 0xf5, 0x28, 0xf5, 0x4e, 0xf5,\n  0x71, 0xf5, 0x99, 0xf5, 0xc0, 0xf5, 0xe7, 0xf5, 0x13, 0xf6, 0x41, 0xf6,\n  0x6f, 0xf6, 0x9e, 0xf6, 0xce, 0xf6, 0x01, 0xf7, 0x37, 0xf7, 0x6e, 0xf7,\n  0xa7, 0xf7, 0xdf, 0xf7, 0x1d, 0xf8, 0x59, 0xf8, 0x99, 0xf8, 0xdd, 0xf8,\n  0x1d, 0xf9, 0x60, 0xf9, 0xa5, 0xf9, 0xec, 0xf9, 0x31, 0xfa, 0x79, 0xfa,\n  0xc4, 0xfa, 0x0c, 0xfb, 0x55, 0xfb, 0xa1, 0xfb, 0xe9, 0xfb, 0x39, 0xfc,\n  0x81, 0xfc, 0xcf, 0xfc, 0x15, 0xfd, 0x63, 0xfd, 0xaf, 0xfd, 0xf5, 0xfd,\n  0x42, 0xfe, 0x88, 0xfe, 0xcf, 0xfe, 0x14, 0xff, 0x5a, 0xff, 0x9f, 0xff,\n  0xe0, 0xff, 0x26, 0x00, 0x64, 0x00, 0xa4, 0x00, 0xeb, 0x00, 0x28, 0x01,\n  0x6d, 0x01, 0xac, 0x01, 0xee, 0x01, 0x2f, 0x02, 0x6f, 0x02, 0xb1, 0x02,\n  0xf3, 0x02, 0x31, 0x03, 0x73, 0x03, 0xb3, 0x03, 0xf3, 0x03, 0x34, 0x04,\n  0x73, 0x04, 0xb6, 0x04, 0xef, 0x04, 0x30, 0x05, 0x6f, 0x05, 0xae, 0x05,\n  0xec, 0x05, 0x26, 0x06, 0x64, 0x06, 0x9b, 0x06, 0xd7, 0x06, 0x10, 0x07,\n  0x4a, 0x07, 0x82, 0x07, 0xb8, 0x07, 0xf0, 0x07, 0x27, 0x08, 0x5a, 0x08,\n  0x8e, 0x08, 0xc0, 0x08, 0xf4, 0x08, 0x24, 0x09, 0x54, 0x09, 0x82, 0x09,\n  0xa9, 0x09, 0xd5, 0x09, 0xf8, 0x09, 0x25, 0x0a, 0x46, 0x0a, 0x67, 0x0a,\n  0x88, 0x0a, 0xa6, 0x0a, 0xc0, 0x0a, 0xd9, 0x0a, 0xf5, 0x0a, 0x09, 0x0b,\n  0x25, 0x0b, 0x32, 0x0b, 0x48, 0x0b, 0x59, 0x0b, 0x64, 0x0b, 0x72, 0x0b,\n  0x7e, 0x0b, 0x87, 0x0b, 0x8e, 0x0b, 0x97, 0x0b, 0x99, 0x0b, 0x9c, 0x0b,\n  0xa1, 0x0b, 0xa2, 0x0b, 0xa2, 0x0b, 0xa2, 0x0b, 0xa1, 0x0b, 0x9f, 0x0b,\n  0x9d, 0x0b, 0x99, 0x0b, 0x94, 0x0b, 0x90, 0x0b, 0x8d, 0x0b, 0x87, 0x0b,\n  0x81, 0x0b, 0x7f, 0x0b, 0x78, 0x0b, 0x72, 0x0b, 0x6f, 0x0b, 0x69, 0x0b,\n  0x69, 0x0b, 0x62, 0x0b, 0x60, 0x0b, 0x5a, 0x0b, 0x57, 0x0b, 0x4f, 0x0b,\n  0x47, 0x0b, 0x41, 0x0b, 0x34, 0x0b, 0x2d, 0x0b, 0x1e, 0x0b, 0x11, 0x0b,\n  0xfe, 0x0a, 0xea, 0x0a, 0xdc, 0x0a, 0xc1, 0x0a, 0xac, 0x0a, 0x91, 0x0a,\n  0x78, 0x0a, 0x58, 0x0a, 0x3d, 0x0a, 0x19, 0x0a, 0xf6, 0x09, 0xd4, 0x09,\n  0xad, 0x09, 0x86, 0x09, 0x59, 0x09, 0x31, 0x09, 0x07, 0x09, 0xd7, 0x08,\n  0xa8, 0x08, 0x78, 0x08, 0x45, 0x08, 0x15, 0x08, 0xdc, 0x07, 0xa7, 0x07,\n  0x73, 0x07, 0x3b, 0x07, 0x00, 0x07, 0xc6, 0x06, 0x8c, 0x06, 0x4e, 0x06,\n  0x12, 0x06, 0xd6, 0x05, 0x98, 0x05, 0x5b, 0x05, 0x1b, 0x05, 0xdf, 0x04,\n  0x9c, 0x04, 0x5f, 0x04, 0x23, 0x04, 0xe5, 0x03, 0xa7, 0x03, 0x65, 0x03,\n  0x2f, 0x03, 0xf1, 0x02, 0xb5, 0x02, 0x7b, 0x02, 0x41, 0x02, 0x09, 0x02,\n  0xd0, 0x01, 0x94, 0x01, 0x5b, 0x01, 0x25, 0x01, 0xef, 0x00, 0xb6, 0x00,\n  0x80, 0x00, 0x4a, 0x00, 0x11, 0x00, 0xdb, 0xff, 0xa7, 0xff, 0x72, 0xff,\n  0x3b, 0xff, 0x08, 0xff, 0xd2, 0xfe, 0x9d, 0xfe, 0x6c, 0xfe, 0x39, 0xfe,\n  0x06, 0xfe, 0xd5, 0xfd, 0xa5, 0xfd, 0x77, 0xfd, 0x47, 0xfd, 0x19, 0xfd,\n  0xeb, 0xfc, 0xc1, 0xfc, 0x93, 0xfc, 0x6b, 0xfc, 0x41, 0xfc, 0x17, 0xfc,\n  0xed, 0xfb, 0xc4, 0xfb, 0x99, 0xfb, 0x70, 0xfb, 0x49, 0xfb, 0x1a, 0xfb,\n  0xf1, 0xfa, 0xc1, 0xfa, 0x94, 0xfa, 0x65, 0xfa, 0x39, 0xfa, 0x0a, 0xfa,\n  0xd6, 0xf9, 0xa8, 0xf9, 0x79, 0xf9, 0x45, 0xf9, 0x18, 0xf9, 0xe5, 0xf8,\n  0xb5, 0xf8, 0x86, 0xf8, 0x54, 0xf8, 0x2a, 0xf8, 0xfa, 0xf7, 0xd1, 0xf7,\n  0xa9, 0xf7, 0x79, 0xf7, 0x54, 0xf7, 0x2b, 0xf7, 0x04, 0xf7, 0xde, 0xf6,\n  0xb9, 0xf6, 0x94, 0xf6, 0x71, 0xf6, 0x4e, 0xf6, 0x2c, 0xf6, 0x0e, 0xf6,\n  0xea, 0xf5, 0xcc, 0xf5, 0xaf, 0xf5, 0x92, 0xf5, 0x79, 0xf5, 0x62, 0xf5,\n  0x49, 0xf5, 0x36, 0xf5, 0x21, 0xf5, 0x10, 0xf5, 0x02, 0xf5, 0xf7, 0xf4,\n  0xee, 0xf4, 0xe6, 0xf4, 0xdf, 0xf4, 0xd9, 0xf4, 0xd9, 0xf4, 0xd9, 0xf4,\n  0xdc, 0xf4, 0xdf, 0xf4, 0xe1, 0xf4, 0xea, 0xf4, 0xf1, 0xf4, 0xf9, 0xf4,\n  0x03, 0xf5, 0x0f, 0xf5, 0x1b, 0xf5, 0x27, 0xf5, 0x37, 0xf5, 0x44, 0xf5,\n  0x53, 0xf5, 0x63, 0xf5, 0x78, 0xf5, 0x8a, 0xf5, 0x9c, 0xf5, 0xb1, 0xf5,\n  0xc9, 0xf5, 0xde, 0xf5, 0xf9, 0xf5, 0x0e, 0xf6, 0x26, 0xf6, 0x3e, 0xf6,\n  0x5b, 0xf6, 0x78, 0xf6, 0x94, 0xf6, 0xb6, 0xf6, 0xd1, 0xf6, 0xf6, 0xf6,\n  0x12, 0xf7, 0x38, 0xf7, 0x59, 0xf7, 0x7f, 0xf7, 0xa1, 0xf7, 0xc4, 0xf7,\n  0xe9, 0xf7, 0x12, 0xf8, 0x36, 0xf8, 0x61, 0xf8, 0x8a, 0xf8, 0xb1, 0xf8,\n  0xe1, 0xf8, 0x0d, 0xf9, 0x38, 0xf9, 0x6a, 0xf9, 0x98, 0xf9, 0xc9, 0xf9,\n  0xfc, 0xf9, 0x2c, 0xfa, 0x61, 0xfa, 0x91, 0xfa, 0xc5, 0xfa, 0xf1, 0xfa,\n  0x25, 0xfb, 0x55, 0xfb, 0x88, 0xfb, 0xb6, 0xfb, 0xe9, 0xfb, 0x19, 0xfc,\n  0x45, 0xfc, 0x83, 0xfc, 0xad, 0xfc, 0xe5, 0xfc, 0x19, 0xfd, 0x49, 0xfd,\n  0x7d, 0xfd, 0xb1, 0xfd, 0xe5, 0xfd, 0x1b, 0xfe, 0x4f, 0xfe, 0x87, 0xfe,\n  0xbd, 0xfe, 0xf3, 0xfe, 0x2a, 0xff, 0x62, 0xff, 0x9b, 0xff, 0xd4, 0xff,\n  0x0d, 0x00, 0x46, 0x00, 0x7d, 0x00, 0xb5, 0x00, 0xee, 0x00, 0x27, 0x01,\n  0x5e, 0x01, 0x97, 0x01, 0xcf, 0x01, 0x03, 0x02, 0x39, 0x02, 0x6f, 0x02,\n  0xa5, 0x02, 0xdb, 0x02, 0x09, 0x03, 0x3f, 0x03, 0x71, 0x03, 0xa1, 0x03,\n  0xd1, 0x03, 0xfd, 0x03, 0x2b, 0x04, 0x57, 0x04, 0x84, 0x04, 0xaa, 0x04,\n  0xd7, 0x04, 0xfc, 0x04, 0x20, 0x05, 0x4b, 0x05, 0x6b, 0x05, 0x93, 0x05,\n  0xb7, 0x05, 0xdb, 0x05, 0xfc, 0x05, 0x23, 0x06, 0x4a, 0x06, 0x6b, 0x06,\n  0x8c, 0x06, 0xb0, 0x06, 0xd4, 0x06, 0xfb, 0x06, 0x18, 0x07, 0x3a, 0x07,\n  0x5b, 0x07, 0x7b, 0x07, 0x9c, 0x07, 0xb8, 0x07, 0xdb, 0x07, 0xf7, 0x07,\n  0x15, 0x08, 0x32, 0x08, 0x51, 0x08, 0x6c, 0x08, 0x87, 0x08, 0xa5, 0x08,\n  0xbd, 0x08, 0xdc, 0x08, 0xf6, 0x08, 0x10, 0x09, 0x2c, 0x09, 0x3f, 0x09,\n  0x5c, 0x09, 0x71, 0x09, 0x87, 0x09, 0x9e, 0x09, 0xad, 0x09, 0xbf, 0x09,\n  0xcf, 0x09, 0xdd, 0x09, 0xe9, 0x09, 0xf1, 0x09, 0xff, 0x09, 0x09, 0x0a,\n  0x10, 0x0a, 0x1c, 0x0a, 0x1f, 0x0a, 0x26, 0x0a, 0x28, 0x0a, 0x2f, 0x0a,\n  0x30, 0x0a, 0x37, 0x0a, 0x39, 0x0a, 0x39, 0x0a, 0x3f, 0x0a, 0x3e, 0x0a,\n  0x3f, 0x0a, 0x44, 0x0a, 0x44, 0x0a, 0x44, 0x0a, 0x46, 0x0a, 0x46, 0x0a,\n  0x46, 0x0a, 0x47, 0x0a, 0x46, 0x0a, 0x44, 0x0a, 0x44, 0x0a, 0x3f, 0x0a,\n  0x3f, 0x0a, 0x39, 0x0a, 0x35, 0x0a, 0x34, 0x0a, 0x26, 0x0a, 0x1f, 0x0a,\n  0x16, 0x0a, 0x07, 0x0a, 0xf8, 0x09, 0xe6, 0x09, 0xd4, 0x09, 0xbd, 0x09,\n  0xa5, 0x09, 0x88, 0x09, 0x68, 0x09, 0x4d, 0x09, 0x27, 0x09, 0x01, 0x09,\n  0xde, 0x08, 0xb4, 0x08, 0x84, 0x08, 0x59, 0x08, 0x29, 0x08, 0xfa, 0x07,\n  0xca, 0x07, 0x93, 0x07, 0x5f, 0x07, 0x2b, 0x07, 0xf2, 0x06, 0xba, 0x06,\n  0x87, 0x06, 0x4e, 0x06, 0x17, 0x06, 0xdb, 0x05, 0xa8, 0x05, 0x6f, 0x05,\n  0x3b, 0x05, 0x06, 0x05, 0xce, 0x04, 0x9e, 0x04, 0x67, 0x04, 0x33, 0x04,\n  0xff, 0x03, 0xcb, 0x03, 0x95, 0x03, 0x5d, 0x03, 0x29, 0x03, 0xf5, 0x02,\n  0xc1, 0x02, 0x87, 0x02, 0x51, 0x02, 0x17, 0x02, 0xe1, 0x01, 0xa9, 0x01,\n  0x6f, 0x01, 0x3a, 0x01, 0xfd, 0x00, 0xc5, 0x00, 0x8b, 0x00, 0x52, 0x00,\n  0x17, 0x00, 0xdd, 0xff, 0xa5, 0xff, 0x6e, 0xff, 0x33, 0xff, 0xfc, 0xfe,\n  0xc1, 0xfe, 0x8b, 0xfe, 0x55, 0xfe, 0x1e, 0xfe, 0xe7, 0xfd, 0xb5, 0xfd,\n  0x7d, 0xfd, 0x47, 0xfd, 0x11, 0xfd, 0xd7, 0xfc, 0xa3, 0xfc, 0x6b, 0xfc,\n  0x35, 0xfc, 0xfd, 0xfb, 0xc4, 0xfb, 0x90, 0xfb, 0x54, 0xfb, 0x1e, 0xfb,\n  0xe5, 0xfa, 0xb1, 0xfa, 0x76, 0xfa, 0x45, 0xfa, 0x0d, 0xfa, 0xd8, 0xf9,\n  0xa1, 0xf9, 0x6a, 0xf9, 0x3a, 0xf9, 0x05, 0xf9, 0xd5, 0xf8, 0xa0, 0xf8,\n  0x6e, 0xf8, 0x3e, 0xf8, 0x06, 0xf8, 0xdb, 0xf7, 0xac, 0xf7, 0x7f, 0xf7,\n  0x54, 0xf7, 0x29, 0xf7, 0x01, 0xf7, 0xd9, 0xf6, 0xb3, 0xf6, 0x91, 0xf6,\n  0x6e, 0xf6, 0x4e, 0xf6, 0x2b, 0xf6, 0x0a, 0xf6, 0xf2, 0xf5, 0xd4, 0xf5,\n  0xba, 0xf5, 0xa2, 0xf5, 0x8e, 0xf5, 0x74, 0xf5, 0x66, 0xf5, 0x51, 0xf5,\n  0x44, 0xf5, 0x37, 0xf5, 0x29, 0xf5, 0x1f, 0xf5, 0x1a, 0xf5, 0x11, 0xf5,\n  0x09, 0xf5, 0x07, 0xf5, 0x01, 0xf5, 0x00, 0xf5, 0xfa, 0xf4, 0xf8, 0xf4,\n  0xf8, 0xf4, 0xfa, 0xf4, 0xf8, 0xf4, 0xfa, 0xf4, 0xfe, 0xf4, 0x00, 0xf5,\n  0x03, 0xf5, 0x09, 0xf5, 0x12, 0xf5, 0x18, 0xf5, 0x21, 0xf5, 0x29, 0xf5,\n  0x32, 0xf5, 0x3f, 0xf5, 0x46, 0xf5, 0x51, 0xf5, 0x5a, 0xf5, 0x67, 0xf5,\n  0x76, 0xf5, 0x83, 0xf5, 0x90, 0xf5, 0xa1, 0xf5, 0xb1, 0xf5, 0xc1, 0xf5,\n  0xd4, 0xf5, 0xe7, 0xf5, 0xfc, 0xf5, 0x13, 0xf6, 0x26, 0xf6, 0x3f, 0xf6,\n  0x59, 0xf6, 0x71, 0xf6, 0x8c, 0xf6, 0xaa, 0xf6, 0xc4, 0xf6, 0xe3, 0xf6,\n  0x07, 0xf7, 0x28, 0xf7, 0x49, 0xf7, 0x70, 0xf7, 0x91, 0xf7, 0xba, 0xf7,\n  0xe4, 0xf7, 0x0d, 0xf8, 0x3c, 0xf8, 0x64, 0xf8, 0x91, 0xf8, 0xbd, 0xf8,\n  0xea, 0xf8, 0x19, 0xf9, 0x4d, 0xf9, 0x7d, 0xf9, 0xaa, 0xf9, 0xdd, 0xf9,\n  0x10, 0xfa, 0x42, 0xfa, 0x79, 0xfa, 0xac, 0xfa, 0xe2, 0xfa, 0x18, 0xfb,\n  0x4e, 0xfb, 0x89, 0xfb, 0xc0, 0xfb, 0xfc, 0xfb, 0x35, 0xfc, 0x77, 0xfc,\n  0xb1, 0xfc, 0xef, 0xfc, 0x2f, 0xfd, 0x73, 0xfd, 0xb5, 0xfd, 0xf7, 0xfd,\n  0x3c, 0xfe, 0x82, 0xfe, 0xc4, 0xfe, 0x0c, 0xff, 0x50, 0xff, 0x92, 0xff,\n  0xda, 0xff, 0x1a, 0x00, 0x5e, 0x00, 0xa0, 0x00, 0xe0, 0x00, 0x21, 0x01,\n  0x60, 0x01, 0xa2, 0x01, 0xde, 0x01, 0x1d, 0x02, 0x5d, 0x02, 0x93, 0x02,\n  0xd1, 0x02, 0x0b, 0x03, 0x45, 0x03, 0x7d, 0x03, 0xb3, 0x03, 0xe9, 0x03,\n  0x18, 0x04, 0x4f, 0x04, 0x7f, 0x04, 0xb2, 0x04, 0xdf, 0x04, 0x0c, 0x05,\n  0x38, 0x05, 0x63, 0x05, 0x8e, 0x05, 0xb3, 0x05, 0xde, 0x05, 0x0b, 0x06,\n  0x2c, 0x06, 0x56, 0x06, 0x7b, 0x06, 0xa3, 0x06, 0xcb, 0x06, 0xef, 0x06,\n  0x18, 0x07, 0x3c, 0x07, 0x64, 0x07, 0x8e, 0x07, 0xb3, 0x07, 0xda, 0x07,\n  0xff, 0x07, 0x21, 0x08, 0x45, 0x08, 0x6c, 0x08, 0x8a, 0x08, 0xae, 0x08,\n  0xc8, 0x08, 0xea, 0x08, 0x05, 0x09, 0x1e, 0x09, 0x38, 0x09, 0x52, 0x09,\n  0x6c, 0x09, 0x80, 0x09, 0x9a, 0x09, 0xaa, 0x09, 0xbf, 0x09, 0xd0, 0x09,\n  0xe0, 0x09, 0xf2, 0x09, 0x00, 0x0a, 0x10, 0x0a, 0x1f, 0x0a, 0x2a, 0x0a,\n  0x35, 0x0a, 0x3f, 0x0a, 0x47, 0x0a, 0x4f, 0x0a, 0x58, 0x0a, 0x5f, 0x0a,\n  0x67, 0x0a, 0x69, 0x0a, 0x6a, 0x0a, 0x6e, 0x0a, 0x72, 0x0a, 0x6e, 0x0a,\n  0x6e, 0x0a, 0x69, 0x0a, 0x64, 0x0a, 0x60, 0x0a, 0x57, 0x0a, 0x4f, 0x0a,\n  0x42, 0x0a, 0x35, 0x0a, 0x28, 0x0a, 0x16, 0x0a, 0x01, 0x0a, 0xe9, 0x09,\n  0xd5, 0x09, 0xb9, 0x09, 0x9f, 0x09, 0x80, 0x09, 0x62, 0x09, 0x44, 0x09,\n  0x1f, 0x09, 0xff, 0x08, 0xda, 0x08, 0xb5, 0x08, 0x8e, 0x08, 0x68, 0x08,\n  0x3f, 0x08, 0x17, 0x08, 0xef, 0x07, 0xc2, 0x07, 0x9a, 0x07, 0x6a, 0x07,\n  0x43, 0x07, 0x13, 0x07, 0xe3, 0x06, 0xb8, 0x06, 0x8b, 0x06, 0x5b, 0x06,\n  0x32, 0x06, 0xff, 0x05, 0xd4, 0x05, 0xab, 0x05, 0x7b, 0x05, 0x4f, 0x05,\n  0x22, 0x05, 0xf7, 0x04, 0xcc, 0x04, 0x9f, 0x04, 0x78, 0x04, 0x4f, 0x04,\n  0x22, 0x04, 0xfb, 0x03, 0xd1, 0x03, 0xa7, 0x03, 0x81, 0x03, 0x53, 0x03,\n  0x2d, 0x03, 0x05, 0x03, 0xdb, 0x02, 0xb1, 0x02, 0x8b, 0x02, 0x63, 0x02,\n  0x3d, 0x02, 0x15, 0x02, 0xee, 0x01, 0xc9, 0x01, 0xa0, 0x01, 0x7b, 0x01,\n  0x58, 0x01, 0x30, 0x01, 0x0d, 0x01, 0xe6, 0x00, 0xc2, 0x00, 0x9e, 0x00,\n  0x7c, 0x00, 0x59, 0x00, 0x34, 0x00, 0x10, 0x00, 0xef, 0xff, 0xcc, 0xff,\n  0xa7, 0xff, 0x86, 0xff, 0x60, 0xff, 0x3e, 0xff, 0x1a, 0xff, 0xf7, 0xfe,\n  0xd8, 0xfe, 0xb2, 0xfe, 0x94, 0xfe, 0x72, 0xfe, 0x4f, 0xfe, 0x2e, 0xfe,\n  0x0a, 0xfe, 0xeb, 0xfd, 0xc7, 0xfd, 0xad, 0xfd, 0x87, 0xfd, 0x67, 0xfd,\n  0x45, 0xfd, 0x23, 0xfd, 0x01, 0xfd, 0xdf, 0xfc, 0xbf, 0xfc, 0x95, 0xfc,\n  0x6f, 0xfc, 0x47, 0xfc, 0x21, 0xfc, 0xf6, 0xfb, 0xc9, 0xfb, 0xa5, 0xfb,\n  0x75, 0xfb, 0x49, 0xfb, 0x1c, 0xfb, 0xee, 0xfa, 0xc5, 0xfa, 0x96, 0xfa,\n  0x6d, 0xfa, 0x45, 0xfa, 0x19, 0xfa, 0xed, 0xf9, 0xc5, 0xf9, 0x9a, 0xf9,\n  0x71, 0xf9, 0x4a, 0xf9, 0x20, 0xf9, 0xfc, 0xf8, 0xd2, 0xf8, 0xb1, 0xf8,\n  0x8d, 0xf8, 0x6c, 0xf8, 0x4e, 0xf8, 0x2a, 0xf8, 0x11, 0xf8, 0xf3, 0xf7,\n  0xdb, 0xf7, 0xbe, 0xf7, 0xa7, 0xf7, 0x91, 0xf7, 0x77, 0xf7, 0x61, 0xf7,\n  0x4f, 0xf7, 0x39, 0xf7, 0x29, 0xf7, 0x19, 0xf7, 0x0a, 0xf7, 0xfe, 0xf6,\n  0xef, 0xf6, 0xe3, 0xf6, 0xdc, 0xf6, 0xd3, 0xf6, 0xca, 0xf6, 0xc6, 0xf6,\n  0xc1, 0xf6, 0xc1, 0xf6, 0xbf, 0xf6, 0xbb, 0xf6, 0xb9, 0xf6, 0xbc, 0xf6,\n  0xbb, 0xf6, 0xbc, 0xf6, 0xc1, 0xf6, 0xc2, 0xf6, 0xc8, 0xf6, 0xce, 0xf6,\n  0xd3, 0xf6, 0xd8, 0xf6, 0xe1, 0xf6, 0xe9, 0xf6, 0xf2, 0xf6, 0xfa, 0xf6,\n  0x08, 0xf7, 0x11, 0xf7, 0x1c, 0xf7, 0x2b, 0xf7, 0x3a, 0xf7, 0x4b, 0xf7,\n  0x5b, 0xf7, 0x6c, 0xf7, 0x7f, 0xf7, 0x93, 0xf7, 0xa6, 0xf7, 0xbb, 0xf7,\n  0xd0, 0xf7, 0xe9, 0xf7, 0xfc, 0xf7, 0x18, 0xf8, 0x2d, 0xf8, 0x4c, 0xf8,\n  0x66, 0xf8, 0x81, 0xf8, 0xa2, 0xf8, 0xbd, 0xf8, 0xe1, 0xf8, 0x01, 0xf9,\n  0x26, 0xf9, 0x49, 0xf9, 0x6d, 0xf9, 0x95, 0xf9, 0xb9, 0xf9, 0xe4, 0xf9,\n  0x0d, 0xfa, 0x38, 0xfa, 0x65, 0xfa, 0x91, 0xfa, 0xbd, 0xfa, 0xed, 0xfa,\n  0x1c, 0xfb, 0x4d, 0xfb, 0x7a, 0xfb, 0xad, 0xfb, 0xdc, 0xfb, 0x09, 0xfc,\n  0x3b, 0xfc, 0x65, 0xfc, 0x95, 0xfc, 0xc3, 0xfc, 0xf1, 0xfc, 0x1f, 0xfd,\n  0x4f, 0xfd, 0x77, 0xfd, 0xa7, 0xfd, 0xd3, 0xfd, 0xfd, 0xfd, 0x2b, 0xfe,\n  0x52, 0xfe, 0x84, 0xfe, 0xab, 0xfe, 0xd6, 0xfe, 0x03, 0xff, 0x2c, 0xff,\n  0x5a, 0xff, 0x86, 0xff, 0xb0, 0xff, 0xde, 0xff, 0x08, 0x00, 0x37, 0x00,\n  0x61, 0x00, 0x92, 0x00, 0xc2, 0x00, 0xf2, 0x00, 0x1f, 0x01, 0x4c, 0x01,\n  0x7f, 0x01, 0xac, 0x01, 0xde, 0x01, 0x0f, 0x02, 0x3d, 0x02, 0x6f, 0x02,\n  0x9f, 0x02, 0xc9, 0x02, 0xff, 0x02, 0x29, 0x03, 0x59, 0x03, 0x8b, 0x03,\n  0xb5, 0x03, 0xe3, 0x03, 0x13, 0x04, 0x40, 0x04, 0x6c, 0x04, 0x97, 0x04,\n  0xc7, 0x04, 0xf7, 0x04, 0x1f, 0x05, 0x4f, 0x05, 0x7b, 0x05, 0xa7, 0x05,\n  0xd4, 0x05, 0xff, 0x05, 0x2b, 0x06, 0x53, 0x06, 0x7f, 0x06, 0xa7, 0x06,\n  0xd0, 0x06, 0xfb, 0x06, 0x1f, 0x07, 0x47, 0x07, 0x6c, 0x07, 0x8e, 0x07,\n  0xb3, 0x07, 0xd0, 0x07, 0xf3, 0x07, 0x11, 0x08, 0x2d, 0x08, 0x47, 0x08,\n  0x64, 0x08, 0x7e, 0x08, 0x94, 0x08, 0xac, 0x08, 0xbe, 0x08, 0xd7, 0x08,\n  0xe5, 0x08, 0xf7, 0x08, 0x0a, 0x09, 0x17, 0x09, 0x28, 0x09, 0x35, 0x09,\n  0x40, 0x09, 0x4e, 0x09, 0x57, 0x09, 0x5f, 0x09, 0x68, 0x09, 0x6f, 0x09,\n  0x77, 0x09, 0x79, 0x09, 0x7d, 0x09, 0x7e, 0x09, 0x7a, 0x09, 0x79, 0x09,\n  0x74, 0x09, 0x70, 0x09, 0x6a, 0x09, 0x61, 0x09, 0x57, 0x09, 0x4e, 0x09,\n  0x45, 0x09, 0x3a, 0x09, 0x2f, 0x09, 0x24, 0x09, 0x1d, 0x09, 0x0c, 0x09,\n  0xff, 0x08, 0xf7, 0x08, 0xe5, 0x08, 0xd8, 0x08, 0xc9, 0x08, 0xbd, 0x08,\n  0xaa, 0x08, 0x97, 0x08, 0x87, 0x08, 0x72, 0x08, 0x60, 0x08, 0x4f, 0x08,\n  0x3c, 0x08, 0x25, 0x08, 0x15, 0x08, 0xff, 0x07, 0xeb, 0x07, 0xd6, 0x07,\n  0xc7, 0x07, 0xac, 0x07, 0x97, 0x07, 0x84, 0x07, 0x6a, 0x07, 0x53, 0x07,\n  0x34, 0x07, 0x1a, 0x07, 0xfe, 0x06, 0xdb, 0x06, 0xc2, 0x06, 0x9f, 0x06,\n  0x7c, 0x06, 0x5b, 0x06, 0x36, 0x06, 0x14, 0x06, 0xef, 0x05, 0xc8, 0x05,\n  0xa4, 0x05, 0x7b, 0x05, 0x52, 0x05, 0x2a, 0x05, 0xfe, 0x04, 0xd0, 0x04,\n  0xa7, 0x04, 0x76, 0x04, 0x47, 0x04, 0x13, 0x04, 0xdf, 0x03, 0xad, 0x03,\n  0x73, 0x03, 0x3b, 0x03, 0x05, 0x03, 0xc7, 0x02, 0x8d, 0x02, 0x51, 0x02,\n  0x17, 0x02, 0xd8, 0x01, 0x99, 0x01, 0x58, 0x01, 0x1e, 0x01, 0xda, 0x00,\n  0x9a, 0x00, 0x5f, 0x00, 0x20, 0x00, 0xe1, 0xff, 0xa5, 0xff, 0x65, 0xff,\n  0x2c, 0xff, 0xf1, 0xfe, 0xaf, 0xfe, 0x79, 0xfe, 0x3f, 0xfe, 0x07, 0xfe,\n  0xcd, 0xfd, 0x97, 0xfd, 0x61, 0xfd, 0x29, 0xfd, 0xf5, 0xfc, 0xc1, 0xfc,\n  0x8d, 0xfc, 0x5b, 0xfc, 0x2b, 0xfc, 0xf9, 0xfb, 0xc9, 0xfb, 0x9c, 0xfb,\n  0x6e, 0xfb, 0x40, 0xfb, 0x18, 0xfb, 0xea, 0xfa, 0xc6, 0xfa, 0x98, 0xfa,\n  0x74, 0xfa, 0x4d, 0xfa, 0x28, 0xfa, 0x06, 0xfa, 0xe1, 0xf9, 0xc2, 0xf9,\n  0xa1, 0xf9, 0x81, 0xf9, 0x68, 0xf9, 0x4d, 0xf9, 0x31, 0xf9, 0x1a, 0xf9,\n  0x02, 0xf9, 0xe9, 0xf8, 0xd5, 0xf8, 0xc2, 0xf8, 0xb1, 0xf8, 0xa0, 0xf8,\n  0x91, 0xf8, 0x84, 0xf8, 0x75, 0xf8, 0x66, 0xf8, 0x5d, 0xf8, 0x55, 0xf8,\n  0x4a, 0xf8, 0x41, 0xf8, 0x39, 0xf8, 0x34, 0xf8, 0x2d, 0xf8, 0x28, 0xf8,\n  0x1e, 0xf8, 0x1d, 0xf8, 0x11, 0xf8, 0x0e, 0xf8, 0x09, 0xf8, 0x05, 0xf8,\n  0x00, 0xf8, 0xf9, 0xf7, 0xf8, 0xf7, 0xef, 0xf7, 0xeb, 0xf7, 0xe4, 0xf7,\n  0xdf, 0xf7, 0xd9, 0xf7, 0xd9, 0xf7, 0xd1, 0xf7, 0xca, 0xf7, 0xc9, 0xf7,\n  0xc1, 0xf7, 0xbb, 0xf7, 0xb6, 0xf7, 0xb8, 0xf7, 0xaf, 0xf7, 0xac, 0xf7,\n  0xab, 0xf7, 0xa9, 0xf7, 0xa7, 0xf7, 0xa9, 0xf7, 0xa9, 0xf7, 0xaf, 0xf7,\n  0xb6, 0xf7, 0xb9, 0xf7, 0xc3, 0xf7, 0xd0, 0xf7, 0xd3, 0xf7, 0xe6, 0xf7,\n  0xef, 0xf7, 0xf9, 0xf7, 0x0d, 0xf8, 0x1c, 0xf8, 0x2d, 0xf8, 0x3e, 0xf8,\n  0x51, 0xf8, 0x65, 0xf8, 0x7c, 0xf8, 0x90, 0xf8, 0xa5, 0xf8, 0xbd, 0xf8,\n  0xd5, 0xf8, 0xed, 0xf8, 0x09, 0xf9, 0x1d, 0xf9, 0x3a, 0xf9, 0x54, 0xf9,\n  0x6c, 0xf9, 0x89, 0xf9, 0xa5, 0xf9, 0xc5, 0xf9, 0xe1, 0xf9, 0x01, 0xfa,\n  0x21, 0xfa, 0x45, 0xfa, 0x66, 0xfa, 0x8c, 0xfa, 0xb0, 0xfa, 0xd5, 0xfa,\n  0xfd, 0xfa, 0x21, 0xfb, 0x4e, 0xfb, 0x72, 0xfb, 0x9d, 0xfb, 0xc9, 0xfb,\n  0xed, 0xfb, 0x1f, 0xfc, 0x41, 0xfc, 0x6d, 0xfc, 0x99, 0xfc, 0xc5, 0xfc,\n  0xef, 0xfc, 0x19, 0xfd, 0x45, 0xfd, 0x73, 0xfd, 0x9f, 0xfd, 0xc7, 0xfd,\n  0xf7, 0xfd, 0x24, 0xfe, 0x54, 0xfe, 0x81, 0xfe, 0xae, 0xfe, 0xdf, 0xfe,\n  0x0e, 0xff, 0x39, 0xff, 0x6b, 0xff, 0x9b, 0xff, 0xc9, 0xff, 0xf8, 0xff,\n  0x22, 0x00, 0x52, 0x00, 0x7d, 0x00, 0xac, 0x00, 0xd9, 0x00, 0x03, 0x01,\n  0x31, 0x01, 0x5d, 0x01, 0x8a, 0x01, 0xb8, 0x01, 0xe2, 0x01, 0x11, 0x02,\n  0x3d, 0x02, 0x69, 0x02, 0x99, 0x02, 0xc3, 0x02, 0xed, 0x02, 0x19, 0x03,\n  0x45, 0x03, 0x6f, 0x03, 0x9b, 0x03, 0xc5, 0x03, 0xeb, 0x03, 0x13, 0x04,\n  0x3a, 0x04, 0x5f, 0x04, 0x84, 0x04, 0xa8, 0x04, 0xcc, 0x04, 0xef, 0x04,\n  0x0f, 0x05, 0x2f, 0x05, 0x4e, 0x05, 0x6c, 0x05, 0x8a, 0x05, 0xa4, 0x05,\n  0xbf, 0x05, 0xdb, 0x05, 0xf6, 0x05, 0x0e, 0x06, 0x26, 0x06, 0x3e, 0x06,\n  0x53, 0x06, 0x6b, 0x06, 0x7e, 0x06, 0x96, 0x06, 0xaa, 0x06, 0xbf, 0x06,\n  0xd3, 0x06, 0xe3, 0x06, 0xf7, 0x06, 0x07, 0x07, 0x1c, 0x07, 0x2f, 0x07,\n  0x3f, 0x07, 0x54, 0x07, 0x60, 0x07, 0x70, 0x07, 0x7f, 0x07, 0x8b, 0x07,\n  0x97, 0x07, 0xa6, 0x07, 0xab, 0x07, 0xb3, 0x07, 0xbe, 0x07, 0xbe, 0x07,\n  0xc3, 0x07, 0xc4, 0x07, 0xc4, 0x07, 0xc4, 0x07, 0xc3, 0x07, 0xbe, 0x07,\n  0xbb, 0x07, 0xb7, 0x07, 0xaf, 0x07, 0xaa, 0x07, 0xa0, 0x07, 0x9a, 0x07,\n  0x92, 0x07, 0x87, 0x07, 0x82, 0x07, 0x77, 0x07, 0x6b, 0x07, 0x63, 0x07,\n  0x56, 0x07, 0x4c, 0x07, 0x40, 0x07, 0x34, 0x07, 0x28, 0x07, 0x1a, 0x07,\n  0x0c, 0x07, 0xfb, 0x06, 0xef, 0x06, 0xdb, 0x06, 0xcb, 0x06, 0xb8, 0x06,\n  0xa3, 0x06, 0x93, 0x06, 0x80, 0x06, 0x6b, 0x06, 0x57, 0x06, 0x40, 0x06,\n  0x34, 0x06, 0x1a, 0x06, 0x07, 0x06, 0xf3, 0x05, 0xdb, 0x05, 0xc7, 0x05,\n  0xb2, 0x05, 0x9b, 0x05, 0x87, 0x05, 0x6f, 0x05, 0x57, 0x05, 0x43, 0x05,\n  0x2a, 0x05, 0x12, 0x05, 0xfa, 0x04, 0xe2, 0x04, 0xca, 0x04, 0xaf, 0x04,\n  0x94, 0x04, 0x7b, 0x04, 0x62, 0x04, 0x46, 0x04, 0x2b, 0x04, 0x13, 0x04,\n  0xf3, 0x03, 0xdd, 0x03, 0xbf, 0x03, 0xa5, 0x03, 0x89, 0x03, 0x6b, 0x03,\n  0x51, 0x03, 0x35, 0x03, 0x17, 0x03, 0xfd, 0x02, 0xe1, 0x02, 0xc3, 0x02,\n  0xa5, 0x02, 0x85, 0x02, 0x69, 0x02, 0x4b, 0x02, 0x2d, 0x02, 0x0f, 0x02,\n  0xf0, 0x01, 0xd0, 0x01, 0xb1, 0x01, 0x90, 0x01, 0x6c, 0x01, 0x4c, 0x01,\n  0x28, 0x01, 0x07, 0x01, 0xe0, 0x00, 0xbe, 0x00, 0x9e, 0x00, 0x7d, 0x00,\n  0x59, 0x00, 0x3a, 0x00, 0x19, 0x00, 0xfb, 0xff, 0xde, 0xff, 0xbc, 0xff,\n  0xa2, 0xff, 0x83, 0xff, 0x65, 0xff, 0x48, 0xff, 0x2a, 0xff, 0x0c, 0xff,\n  0xf0, 0xfe, 0xd8, 0xfe, 0xb5, 0xfe, 0x9a, 0xfe, 0x7e, 0xfe, 0x60, 0xfe,\n  0x42, 0xfe, 0x28, 0xfe, 0x0a, 0xfe, 0xed, 0xfd, 0xcf, 0xfd, 0xb1, 0xfd,\n  0x91, 0xfd, 0x73, 0xfd, 0x57, 0xfd, 0x37, 0xfd, 0x1b, 0xfd, 0xf7, 0xfc,\n  0xd7, 0xfc, 0xb9, 0xfc, 0x97, 0xfc, 0x75, 0xfc, 0x53, 0xfc, 0x2f, 0xfc,\n  0x11, 0xfc, 0xf0, 0xfb, 0xcd, 0xfb, 0xac, 0xfb, 0x88, 0xfb, 0x69, 0xfb,\n  0x45, 0xfb, 0x25, 0xfb, 0x06, 0xfb, 0xe8, 0xfa, 0xc9, 0xfa, 0xad, 0xfa,\n  0x8c, 0xfa, 0x70, 0xfa, 0x55, 0xfa, 0x39, 0xfa, 0x1e, 0xfa, 0x05, 0xfa,\n  0xec, 0xf9, 0xd1, 0xf9, 0xb9, 0xf9, 0xa1, 0xf9, 0x89, 0xf9, 0x71, 0xf9,\n  0x61, 0xf9, 0x4a, 0xf9, 0x38, 0xf9, 0x29, 0xf9, 0x19, 0xf9, 0x08, 0xf9,\n  0xf9, 0xf8, 0xf0, 0xf8, 0xe6, 0xf8, 0xdc, 0xf8, 0xd1, 0xf8, 0xcc, 0xf8,\n  0xc6, 0xf8, 0xc0, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xba, 0xf8, 0xba, 0xf8,\n  0xb8, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xc2, 0xf8, 0xc9, 0xf8, 0xc9, 0xf8,\n  0xd2, 0xf8, 0xdd, 0xf8, 0xe4, 0xf8, 0xed, 0xf8, 0xf5, 0xf8, 0x00, 0xf9,\n  0x0d, 0xf9, 0x19, 0xf9, 0x26, 0xf9, 0x32, 0xf9, 0x44, 0xf9, 0x51, 0xf9,\n  0x61, 0xf9, 0x6e, 0xf9, 0x81, 0xf9, 0x91, 0xf9, 0xa4, 0xf9, 0xb2, 0xf9,\n  0xc5, 0xf9, 0xd6, 0xf9, 0xe9, 0xf9, 0xfa, 0xf9, 0x10, 0xfa, 0x21, 0xfa,\n  0x36, 0xfa, 0x4d, 0xfa, 0x61, 0xfa, 0x76, 0xfa, 0x89, 0xfa, 0xa1, 0xfa,\n  0xb5, 0xfa, 0xd0, 0xfa, 0xe9, 0xfa, 0x00, 0xfb, 0x15, 0xfb, 0x2d, 0xfb,\n  0x45, 0xfb, 0x60, 0xfb, 0x72, 0xfb, 0x91, 0xfb, 0xa5, 0xfb, 0xc0, 0xfb,\n  0xd8, 0xfb, 0xed, 0xfb, 0x07, 0xfc, 0x21, 0xfc, 0x3b, 0xfc, 0x51, 0xfc,\n  0x71, 0xfc, 0x89, 0xfc, 0xa7, 0xfc, 0xc5, 0xfc, 0xe1, 0xfc, 0x01, 0xfd,\n  0x25, 0xfd, 0x47, 0xfd, 0x67, 0xfd, 0x89, 0xfd, 0xaf, 0xfd, 0xd3, 0xfd,\n  0xf5, 0xfd, 0x1e, 0xfe, 0x40, 0xfe, 0x6c, 0xfe, 0x93, 0xfe, 0xbb, 0xfe,\n  0xe2, 0xfe, 0x09, 0xff, 0x32, 0xff, 0x5c, 0xff, 0x83, 0xff, 0xae, 0xff,\n  0xd5, 0xff, 0xff, 0xff, 0x28, 0x00, 0x4f, 0x00, 0x7c, 0x00, 0xa1, 0x00,\n  0xd0, 0x00, 0xfb, 0x00, 0x27, 0x01, 0x54, 0x01, 0x81, 0x01, 0xaf, 0x01,\n  0xdb, 0x01, 0x09, 0x02, 0x35, 0x02, 0x5f, 0x02, 0x8d, 0x02, 0xb7, 0x02,\n  0xe1, 0x02, 0x0b, 0x03, 0x31, 0x03, 0x59, 0x03, 0x7d, 0x03, 0xa3, 0x03,\n  0xc5, 0x03, 0xe9, 0x03, 0x0e, 0x04, 0x28, 0x04, 0x4a, 0x04, 0x6a, 0x04,\n  0x84, 0x04, 0xa6, 0x04, 0xc2, 0x04, 0xdb, 0x04, 0xf7, 0x04, 0x12, 0x05,\n  0x2b, 0x05, 0x47, 0x05, 0x60, 0x05, 0x76, 0x05, 0x93, 0x05, 0xa4, 0x05,\n  0xbe, 0x05, 0xd6, 0x05, 0xe7, 0x05, 0xfb, 0x05, 0x0f, 0x06, 0x23, 0x06,\n  0x2f, 0x06, 0x43, 0x06, 0x4f, 0x06, 0x5f, 0x06, 0x6e, 0x06, 0x7e, 0x06,\n  0x88, 0x06, 0x97, 0x06, 0xa2, 0x06, 0xae, 0x06, 0xbb, 0x06, 0xc8, 0x06,\n  0xd4, 0x06, 0xda, 0x06, 0xe3, 0x06, 0xeb, 0x06, 0xf2, 0x06, 0xfb, 0x06,\n  0xfe, 0x06, 0x02, 0x07, 0x07, 0x07, 0x07, 0x07, 0x04, 0x07, 0x07, 0x07,\n  0x03, 0x07, 0x00, 0x07, 0xf8, 0x06, 0xf3, 0x06, 0xec, 0x06, 0xde, 0x06,\n  0xd4, 0x06, 0xc7, 0x06, 0xb8, 0x06, 0xa7, 0x06, 0x97, 0x06, 0x87, 0x06,\n  0x73, 0x06, 0x64, 0x06, 0x50, 0x06, 0x3b, 0x06, 0x2a, 0x06, 0x14, 0x06,\n  0x02, 0x06, 0xef, 0x05, 0xdb, 0x05, 0xc8, 0x05, 0xb2, 0x05, 0x9b, 0x05,\n  0x87, 0x05, 0x6c, 0x05, 0x5b, 0x05, 0x3f, 0x05, 0x24, 0x05, 0x0f, 0x05,\n  0xf7, 0x04, 0xdf, 0x04, 0xca, 0x04, 0xaf, 0x04, 0x97, 0x04, 0x7f, 0x04,\n  0x63, 0x04, 0x4f, 0x04, 0x3a, 0x04, 0x22, 0x04, 0x0a, 0x04, 0xf7, 0x03,\n  0xdd, 0x03, 0xc7, 0x03, 0xaf, 0x03, 0x9b, 0x03, 0x83, 0x03, 0x6f, 0x03,\n  0x53, 0x03, 0x3b, 0x03, 0x23, 0x03, 0x05, 0x03, 0xed, 0x02, 0xd3, 0x02,\n  0xb5, 0x02, 0x97, 0x02, 0x81, 0x02, 0x63, 0x02, 0x47, 0x02, 0x27, 0x02,\n  0x0b, 0x02, 0xed, 0x01, 0xd0, 0x01, 0xb1, 0x01, 0x90, 0x01, 0x72, 0x01,\n  0x4f, 0x01, 0x2d, 0x01, 0x10, 0x01, 0xeb, 0x00, 0xc8, 0x00, 0xa6, 0x00,\n  0x82, 0x00, 0x5f, 0x00, 0x3b, 0x00, 0x17, 0x00, 0xf3, 0xff, 0xce, 0xff,\n  0xa8, 0xff, 0x86, 0xff, 0x5d, 0xff, 0x36, 0xff, 0x0f, 0xff, 0xeb, 0xfe,\n  0xc4, 0xfe, 0x9c, 0xfe, 0x78, 0xfe, 0x52, 0xfe, 0x2b, 0xfe, 0x04, 0xfe,\n  0xdb, 0xfd, 0xb7, 0xfd, 0x91, 0xfd, 0x6d, 0xfd, 0x49, 0xfd, 0x1f, 0xfd,\n  0xfb, 0xfc, 0xd9, 0xfc, 0xb3, 0xfc, 0x91, 0xfc, 0x6d, 0xfc, 0x43, 0xfc,\n  0x23, 0xfc, 0x00, 0xfc, 0xde, 0xfb, 0xb9, 0xfb, 0x9c, 0xfb, 0x7c, 0xfb,\n  0x5d, 0xfb, 0x42, 0xfb, 0x24, 0xfb, 0x09, 0xfb, 0xf4, 0xfa, 0xd6, 0xfa,\n  0xc4, 0xfa, 0xae, 0xfa, 0x99, 0xfa, 0x8a, 0xfa, 0x79, 0xfa, 0x6d, 0xfa,\n  0x61, 0xfa, 0x55, 0xfa, 0x4c, 0xfa, 0x40, 0xfa, 0x34, 0xfa, 0x2c, 0xfa,\n  0x22, 0xfa, 0x1e, 0xfa, 0x15, 0xfa, 0x10, 0xfa, 0x08, 0xfa, 0x01, 0xfa,\n  0xf5, 0xf9, 0xf0, 0xf9, 0xec, 0xf9, 0xe4, 0xf9, 0xdd, 0xf9, 0xd8, 0xf9,\n  0xd1, 0xf9, 0xca, 0xf9, 0xc5, 0xf9, 0xc2, 0xf9, 0xbd, 0xf9, 0xbd, 0xf9,\n  0xb5, 0xf9, 0xb6, 0xf9, 0xb5, 0xf9, 0xb2, 0xf9, 0xb9, 0xf9, 0xb4, 0xf9,\n  0xb9, 0xf9, 0xb9, 0xf9, 0xbd, 0xf9, 0xc1, 0xf9, 0xc5, 0xf9, 0xc5, 0xf9,\n  0xcc, 0xf9, 0xd1, 0xf9, 0xd4, 0xf9, 0xd9, 0xf9, 0xe0, 0xf9, 0xe6, 0xf9,\n  0xed, 0xf9, 0xf5, 0xf9, 0xfa, 0xf9, 0x05, 0xfa, 0x0d, 0xfa, 0x19, 0xfa,\n  0x25, 0xfa, 0x2d, 0xfa, 0x3d, 0xfa, 0x49, 0xfa, 0x5c, 0xfa, 0x68, 0xfa,\n  0x79, 0xfa, 0x8d, 0xfa, 0x9d, 0xfa, 0xae, 0xfa, 0xc1, 0xfa, 0xd4, 0xfa,\n  0xe8, 0xfa, 0xfa, 0xfa, 0x10, 0xfb, 0x25, 0xfb, 0x39, 0xfb, 0x55, 0xfb,\n  0x69, 0xfb, 0x7d, 0xfb, 0x9c, 0xfb, 0xb4, 0xfb, 0xd1, 0xfb, 0xea, 0xfb,\n  0x0b, 0xfc, 0x29, 0xfc, 0x43, 0xfc, 0x65, 0xfc, 0x83, 0xfc, 0xa1, 0xfc,\n  0xc3, 0xfc, 0xe3, 0xfc, 0x01, 0xfd, 0x21, 0xfd, 0x41, 0xfd, 0x5f, 0xfd,\n  0x7f, 0xfd, 0x9d, 0xfd, 0xbd, 0xfd, 0xdd, 0xfd, 0xf9, 0xfd, 0x18, 0xfe,\n  0x37, 0xfe, 0x57, 0xfe, 0x76, 0xfe, 0x90, 0xfe, 0xb5, 0xfe, 0xd3, 0xfe,\n  0xf6, 0xfe, 0x15, 0xff, 0x38, 0xff, 0x54, 0xff, 0x78, 0xff, 0x9b, 0xff,\n  0xbc, 0xff, 0xda, 0xff, 0xfc, 0xff, 0x1a, 0x00, 0x3b, 0x00, 0x5e, 0x00,\n  0x7c, 0x00, 0x9d, 0x00, 0xbb, 0x00, 0xda, 0x00, 0xf8, 0x00, 0x15, 0x01,\n  0x33, 0x01, 0x4f, 0x01, 0x6c, 0x01, 0x88, 0x01, 0xa2, 0x01, 0xbb, 0x01,\n  0xd8, 0x01, 0xf3, 0x01, 0x0b, 0x02, 0x27, 0x02, 0x43, 0x02, 0x5d, 0x02,\n  0x75, 0x02, 0x91, 0x02, 0xa9, 0x02, 0xc7, 0x02, 0xdd, 0x02, 0xf7, 0x02,\n  0x11, 0x03, 0x2b, 0x03, 0x43, 0x03, 0x5b, 0x03, 0x75, 0x03, 0x8d, 0x03,\n  0xa7, 0x03, 0xbf, 0x03, 0xd7, 0x03, 0xeb, 0x03, 0x04, 0x04, 0x1a, 0x04,\n  0x33, 0x04, 0x46, 0x04, 0x58, 0x04, 0x6f, 0x04, 0x82, 0x04, 0x94, 0x04,\n  0xa7, 0x04, 0xbb, 0x04, 0xcf, 0x04, 0xe2, 0x04, 0xf7, 0x04, 0x03, 0x05,\n  0x1b, 0x05, 0x2a, 0x05, 0x3c, 0x05, 0x4b, 0x05, 0x5c, 0x05, 0x6b, 0x05,\n  0x77, 0x05, 0x87, 0x05, 0x90, 0x05, 0x9c, 0x05, 0xa8, 0x05, 0xb3, 0x05,\n  0xbc, 0x05, 0xc7, 0x05, 0xcb, 0x05, 0xd6, 0x05, 0xe0, 0x05, 0xe3, 0x05,\n  0xea, 0x05, 0xf0, 0x05, 0xf3, 0x05, 0xfa, 0x05, 0xff, 0x05, 0x02, 0x06,\n  0x08, 0x06, 0x0e, 0x06, 0x0f, 0x06, 0x13, 0x06, 0x17, 0x06, 0x17, 0x06,\n  0x17, 0x06, 0x17, 0x06, 0x17, 0x06, 0x17, 0x06, 0x12, 0x06, 0x13, 0x06,\n  0x0e, 0x06, 0x0b, 0x06, 0x07, 0x06, 0x04, 0x06, 0xfc, 0x05, 0xf7, 0x05,\n  0xf3, 0x05, 0xeb, 0x05, 0xe7, 0x05, 0xdb, 0x05, 0xd3, 0x05, 0xc7, 0x05,\n  0xba, 0x05, 0xab, 0x05, 0x9a, 0x05, 0x84, 0x05, 0x72, 0x05, 0x5f, 0x05,\n  0x46, 0x05, 0x2f, 0x05, 0x18, 0x05, 0xff, 0x04, 0xe6, 0x04, 0xcc, 0x04,\n  0xb2, 0x04, 0x97, 0x04, 0x7b, 0x04, 0x63, 0x04, 0x48, 0x04, 0x2e, 0x04,\n  0x13, 0x04, 0xf7, 0x03, 0xdf, 0x03, 0xc3, 0x03, 0xa9, 0x03, 0x93, 0x03,\n  0x77, 0x03, 0x61, 0x03, 0x45, 0x03, 0x2f, 0x03, 0x17, 0x03, 0xfd, 0x02,\n  0xe7, 0x02, 0xcf, 0x02, 0xb7, 0x02, 0x9f, 0x02, 0x87, 0x02, 0x6b, 0x02,\n  0x57, 0x02, 0x3b, 0x02, 0x1f, 0x02, 0x03, 0x02, 0xea, 0x01, 0xcc, 0x01,\n  0xaf, 0x01, 0x94, 0x01, 0x78, 0x01, 0x5a, 0x01, 0x3d, 0x01, 0x1b, 0x01,\n  0xfd, 0x00, 0xdc, 0x00, 0xbc, 0x00, 0x9a, 0x00, 0x77, 0x00, 0x5b, 0x00,\n  0x37, 0x00, 0x16, 0x00, 0xf9, 0xff, 0xda, 0xff, 0xb9, 0xff, 0x9c, 0xff,\n  0x7b, 0xff, 0x60, 0xff, 0x3c, 0xff, 0x26, 0xff, 0x06, 0xff, 0xea, 0xfe,\n  0xd2, 0xfe, 0xb1, 0xfe, 0x9a, 0xfe, 0x7c, 0xfe, 0x63, 0xfe, 0x49, 0xfe,\n  0x30, 0xfe, 0x15, 0xfe, 0xfd, 0xfd, 0xdf, 0xfd, 0xcd, 0xfd, 0xb1, 0xfd,\n  0x99, 0xfd, 0x85, 0xfd, 0x6d, 0xfd, 0x59, 0xfd, 0x43, 0xfd, 0x2d, 0xfd,\n  0x1b, 0xfd, 0x0b, 0xfd, 0xf7, 0xfc, 0xe5, 0xfc, 0xd5, 0xfc, 0xc3, 0xfc,\n  0xb5, 0xfc, 0xa1, 0xfc, 0x8f, 0xfc, 0x83, 0xfc, 0x6f, 0xfc, 0x5b, 0xfc,\n  0x4b, 0xfc, 0x37, 0xfc, 0x21, 0xfc, 0x17, 0xfc, 0x01, 0xfc, 0xf1, 0xfb,\n  0xda, 0xfb, 0xcd, 0xfb, 0xba, 0xfb, 0xa8, 0xfb, 0x99, 0xfb, 0x88, 0xfb,\n  0x79, 0xfb, 0x6c, 0xfb, 0x59, 0xfb, 0x4c, 0xfb, 0x39, 0xfb, 0x2a, 0xfb,\n  0x1d, 0xfb, 0x0e, 0xfb, 0xfd, 0xfa, 0xf6, 0xfa, 0xe9, 0xfa, 0xdc, 0xfa,\n  0xd0, 0xfa, 0xc6, 0xfa, 0xbc, 0xfa, 0xb2, 0xfa, 0xac, 0xfa, 0xa1, 0xfa,\n  0x99, 0xfa, 0x8e, 0xfa, 0x89, 0xfa, 0x80, 0xfa, 0x74, 0xfa, 0x72, 0xfa,\n  0x66, 0xfa, 0x61, 0xfa, 0x59, 0xfa, 0x51, 0xfa, 0x4c, 0xfa, 0x49, 0xfa,\n  0x44, 0xfa, 0x40, 0xfa, 0x3d, 0xfa, 0x40, 0xfa, 0x3d, 0xfa, 0x41, 0xfa,\n  0x42, 0xfa, 0x46, 0xfa, 0x4c, 0xfa, 0x51, 0xfa, 0x58, 0xfa, 0x5e, 0xfa,\n  0x64, 0xfa, 0x69, 0xfa, 0x71, 0xfa, 0x79, 0xfa, 0x85, 0xfa, 0x8d, 0xfa,\n  0x9a, 0xfa, 0xa2, 0xfa, 0xb0, 0xfa, 0xba, 0xfa, 0xc9, 0xfa, 0xd5, 0xfa,\n  0xe2, 0xfa, 0xf6, 0xfa, 0x01, 0xfb, 0x12, 0xfb, 0x24, 0xfb, 0x36, 0xfb,\n  0x49, 0xfb, 0x5d, 0xfb, 0x70, 0xfb, 0x81, 0xfb, 0x99, 0xfb, 0xae, 0xfb,\n  0xc4, 0xfb, 0xdd, 0xfb, 0xf6, 0xfb, 0x0f, 0xfc, 0x2d, 0xfc, 0x41, 0xfc,\n  0x65, 0xfc, 0x7d, 0xfc, 0x9b, 0xfc, 0xb9, 0xfc, 0xd7, 0xfc, 0xfb, 0xfc,\n  0x13, 0xfd, 0x37, 0xfd, 0x55, 0xfd, 0x75, 0xfd, 0x97, 0xfd, 0xb5, 0xfd,\n  0xd5, 0xfd, 0xf5, 0xfd, 0x15, 0xfe, 0x36, 0xfe, 0x52, 0xfe, 0x70, 0xfe,\n  0x91, 0xfe, 0xae, 0xfe, 0xc9, 0xfe, 0xea, 0xfe, 0x05, 0xff, 0x20, 0xff,\n  0x3f, 0xff, 0x5c, 0xff, 0x77, 0xff, 0x93, 0xff, 0xb3, 0xff, 0xcf, 0xff,\n  0xef, 0xff, 0x0a, 0x00, 0x29, 0x00, 0x46, 0x00, 0x64, 0x00, 0x83, 0x00,\n  0xa1, 0x00, 0xbc, 0x00, 0xdc, 0x00, 0xfa, 0x00, 0x18, 0x01, 0x34, 0x01,\n  0x52, 0x01, 0x70, 0x01, 0x8b, 0x01, 0xae, 0x01, 0xca, 0x01, 0xe7, 0x01,\n  0x07, 0x02, 0x25, 0x02, 0x3f, 0x02, 0x61, 0x02, 0x7b, 0x02, 0x99, 0x02,\n  0xb7, 0x02, 0xd5, 0x02, 0xef, 0x02, 0x0b, 0x03, 0x27, 0x03, 0x3f, 0x03,\n  0x59, 0x03, 0x6f, 0x03, 0x89, 0x03, 0x9d, 0x03, 0xb3, 0x03, 0xc9, 0x03,\n  0xdd, 0x03, 0xf1, 0x03, 0xff, 0x03, 0x13, 0x04, 0x1f, 0x04, 0x2f, 0x04,\n  0x3f, 0x04, 0x4b, 0x04, 0x57, 0x04, 0x63, 0x04, 0x6b, 0x04, 0x73, 0x04,\n  0x7c, 0x04, 0x86, 0x04, 0x90, 0x04, 0x97, 0x04, 0x9e, 0x04, 0xa7, 0x04,\n  0xaf, 0x04, 0xb4, 0x04, 0xbb, 0x04, 0xc4, 0x04, 0xc7, 0x04, 0xd0, 0x04,\n  0xd6, 0x04, 0xe2, 0x04, 0xe4, 0x04, 0xe8, 0x04, 0xf2, 0x04, 0xfa, 0x04,\n  0x00, 0x05, 0x07, 0x05, 0x0f, 0x05, 0x16, 0x05, 0x1f, 0x05, 0x24, 0x05,\n  0x2f, 0x05, 0x37, 0x05, 0x3f, 0x05, 0x43, 0x05, 0x4e, 0x05, 0x54, 0x05,\n  0x5b, 0x05, 0x60, 0x05, 0x66, 0x05, 0x67, 0x05, 0x6b, 0x05, 0x6f, 0x05,\n  0x6f, 0x05, 0x6f, 0x05, 0x6f, 0x05, 0x6f, 0x05, 0x6c, 0x05, 0x6c, 0x05,\n  0x68, 0x05, 0x67, 0x05, 0x63, 0x05, 0x5e, 0x05, 0x57, 0x05, 0x53, 0x05,\n  0x48, 0x05, 0x42, 0x05, 0x3a, 0x05, 0x30, 0x05, 0x27, 0x05, 0x1b, 0x05,\n  0x12, 0x05, 0x00, 0x05, 0xf4, 0x04, 0xeb, 0x04, 0xdc, 0x04, 0xcc, 0x04,\n  0xbe, 0x04, 0xac, 0x04, 0x9c, 0x04, 0x8b, 0x04, 0x7a, 0x04, 0x64, 0x04,\n  0x4f, 0x04, 0x3c, 0x04, 0x27, 0x04, 0x0f, 0x04, 0xf5, 0x03, 0xdd, 0x03,\n  0xc3, 0x03, 0xa9, 0x03, 0x8f, 0x03, 0x71, 0x03, 0x53, 0x03, 0x33, 0x03,\n  0x19, 0x03, 0xf9, 0x02, 0xdb, 0x02, 0xbd, 0x02, 0x9d, 0x02, 0x81, 0x02,\n  0x5f, 0x02, 0x3f, 0x02, 0x1f, 0x02, 0xff, 0x01, 0xdc, 0x01, 0xbb, 0x01,\n  0x97, 0x01, 0x78, 0x01, 0x55, 0x01, 0x2e, 0x01, 0x0d, 0x01, 0xe6, 0x00,\n  0xc5, 0x00, 0xa3, 0x00, 0x7a, 0x00, 0x59, 0x00, 0x37, 0x00, 0x14, 0x00,\n  0xf6, 0xff, 0xd7, 0xff, 0xb9, 0xff, 0x93, 0xff, 0x78, 0xff, 0x5a, 0xff,\n  0x41, 0xff, 0x23, 0xff, 0x08, 0xff, 0xed, 0xfe, 0xcc, 0xfe, 0xb4, 0xfe,\n  0x96, 0xfe, 0x7c, 0xfe, 0x5e, 0xfe, 0x45, 0xfe, 0x25, 0xfe, 0x09, 0xfe,\n  0xef, 0xfd, 0xcd, 0xfd, 0xb5, 0xfd, 0x95, 0xfd, 0x7f, 0xfd, 0x61, 0xfd,\n  0x45, 0xfd, 0x2b, 0xfd, 0x13, 0xfd, 0xfb, 0xfc, 0xe3, 0xfc, 0xcf, 0xfc,\n  0xb7, 0xfc, 0xa3, 0xfc, 0x8f, 0xfc, 0x7b, 0xfc, 0x6d, 0xfc, 0x5b, 0xfc,\n  0x49, 0xfc, 0x41, 0xfc, 0x2b, 0xfc, 0x1f, 0xfc, 0x17, 0xfc, 0x09, 0xfc,\n  0xfe, 0xfb, 0xf2, 0xfb, 0xe6, 0xfb, 0xdd, 0xfb, 0xd2, 0xfb, 0xc5, 0xfb,\n  0xbd, 0xfb, 0xb1, 0xfb, 0xa8, 0xfb, 0x9d, 0xfb, 0x91, 0xfb, 0x85, 0xfb,\n  0x79, 0xfb, 0x6d, 0xfb, 0x62, 0xfb, 0x59, 0xfb, 0x4a, 0xfb, 0x42, 0xfb,\n  0x35, 0xfb, 0x2d, 0xfb, 0x25, 0xfb, 0x1c, 0xfb, 0x15, 0xfb, 0x0d, 0xfb,\n  0x09, 0xfb, 0x05, 0xfb, 0x00, 0xfb, 0x01, 0xfb, 0xfd, 0xfa, 0xfd, 0xfa,\n  0x00, 0xfb, 0xfd, 0xfa, 0x02, 0xfb, 0x04, 0xfb, 0x09, 0xfb, 0x0c, 0xfb,\n  0x12, 0xfb, 0x18, 0xfb, 0x1c, 0xfb, 0x21, 0xfb, 0x29, 0xfb, 0x34, 0xfb,\n  0x39, 0xfb, 0x45, 0xfb, 0x4c, 0xfb, 0x56, 0xfb, 0x60, 0xfb, 0x6d, 0xfb,\n  0x79, 0xfb, 0x81, 0xfb, 0x91, 0xfb, 0x9c, 0xfb, 0xa9, 0xfb, 0xb8, 0xfb,\n  0xc6, 0xfb, 0xd1, 0xfb, 0xe1, 0xfb, 0xf1, 0xfb, 0xfd, 0xfb, 0x0b, 0xfc,\n  0x19, 0xfc, 0x29, 0xfc, 0x35, 0xfc, 0x41, 0xfc, 0x59, 0xfc, 0x65, 0xfc,\n  0x71, 0xfc, 0x83, 0xfc, 0x91, 0xfc, 0xa3, 0xfc, 0xb3, 0xfc, 0xc3, 0xfc,\n  0xd1, 0xfc, 0xe5, 0xfc, 0xf5, 0xfc, 0x07, 0xfd, 0x15, 0xfd, 0x29, 0xfd,\n  0x39, 0xfd, 0x4b, 0xfd, 0x5d, 0xfd, 0x6d, 0xfd, 0x83, 0xfd, 0x99, 0xfd,\n  0xab, 0xfd, 0xc1, 0xfd, 0xd3, 0xfd, 0xe9, 0xfd, 0xfd, 0xfd, 0x15, 0xfe,\n  0x2a, 0xfe, 0x40, 0xfe, 0x58, 0xfe, 0x70, 0xfe, 0x87, 0xfe, 0xa2, 0xfe,\n  0xba, 0xfe, 0xd0, 0xfe, 0xf0, 0xfe, 0x09, 0xff, 0x29, 0xff, 0x42, 0xff,\n  0x5f, 0xff, 0x7d, 0xff, 0x99, 0xff, 0xbc, 0xff, 0xda, 0xff, 0xf9, 0xff,\n  0x17, 0x00, 0x38, 0x00, 0x55, 0x00, 0x76, 0x00, 0x97, 0x00, 0xb5, 0x00,\n  0xd3, 0x00, 0xf2, 0x00, 0x0c, 0x01, 0x2d, 0x01, 0x46, 0x01, 0x61, 0x01,\n  0x7c, 0x01, 0x94, 0x01, 0xae, 0x01, 0xc4, 0x01, 0xd8, 0x01, 0xeb, 0x01,\n  0xff, 0x01, 0x11, 0x02, 0x25, 0x02, 0x33, 0x02, 0x41, 0x02, 0x51, 0x02,\n  0x5d, 0x02, 0x6d, 0x02, 0x75, 0x02, 0x81, 0x02, 0x8d, 0x02, 0x95, 0x02,\n  0xa1, 0x02, 0xa9, 0x02, 0xb1, 0x02, 0xb9, 0x02, 0xc7, 0x02, 0xcd, 0x02,\n  0xd7, 0x02, 0xe1, 0x02, 0xe7, 0x02, 0xf1, 0x02, 0xf7, 0x02, 0x01, 0x03,\n  0x05, 0x03, 0x0d, 0x03, 0x15, 0x03, 0x19, 0x03, 0x1f, 0x03, 0x25, 0x03,\n  0x2b, 0x03, 0x2f, 0x03, 0x35, 0x03, 0x3b, 0x03, 0x41, 0x03, 0x47, 0x03,\n  0x4d, 0x03, 0x55, 0x03, 0x5d, 0x03, 0x65, 0x03, 0x71, 0x03, 0x77, 0x03,\n  0x7f, 0x03, 0x87, 0x03, 0x91, 0x03, 0x99, 0x03, 0xa1, 0x03, 0xa7, 0x03,\n  0xaf, 0x03, 0xb7, 0x03, 0xbd, 0x03, 0xc1, 0x03, 0xc5, 0x03, 0xcd, 0x03,\n  0xcf, 0x03, 0xd1, 0x03, 0xd5, 0x03, 0xd7, 0x03, 0xdd, 0x03, 0xdf, 0x03,\n  0xe1, 0x03, 0xe3, 0x03, 0xe3, 0x03, 0xe7, 0x03, 0xe9, 0x03, 0xed, 0x03,\n  0xf1, 0x03, 0xf3, 0x03, 0xf3, 0x03, 0xf7, 0x03, 0xfb, 0x03, 0xfb, 0x03,\n  0xfd, 0x03, 0xfd, 0x03, 0xfd, 0x03, 0xfd, 0x03, 0xff, 0x03, 0xfb, 0x03,\n  0xf9, 0x03, 0xf9, 0x03, 0xf3, 0x03, 0xf3, 0x03, 0xed, 0x03, 0xe5, 0x03,\n  0xe3, 0x03, 0xdd, 0x03, 0xd7, 0x03, 0xd3, 0x03, 0xcd, 0x03, 0xc5, 0x03,\n  0xc1, 0x03, 0xb9, 0x03, 0xb3, 0x03, 0xa9, 0x03, 0xa1, 0x03, 0x99, 0x03,\n  0x8f, 0x03, 0x83, 0x03, 0x79, 0x03, 0x6d, 0x03, 0x61, 0x03, 0x53, 0x03,\n  0x45, 0x03, 0x37, 0x03, 0x27, 0x03, 0x15, 0x03, 0x05, 0x03, 0xf3, 0x02,\n  0xe1, 0x02, 0xcf, 0x02, 0xbb, 0x02, 0xa9, 0x02, 0x91, 0x02, 0x7d, 0x02,\n  0x67, 0x02, 0x53, 0x02, 0x39, 0x02, 0x23, 0x02, 0x0b, 0x02, 0xf1, 0x01,\n  0xd9, 0x01, 0xbe, 0x01, 0xa3, 0x01, 0x88, 0x01, 0x70, 0x01, 0x51, 0x01,\n  0x37, 0x01, 0x1c, 0x01, 0xfd, 0x00, 0xe3, 0x00, 0xc5, 0x00, 0xa7, 0x00,\n  0x8b, 0x00, 0x6d, 0x00, 0x4f, 0x00, 0x32, 0x00, 0x17, 0x00, 0xfb, 0xff,\n  0xde, 0xff, 0xc2, 0xff, 0xa8, 0xff, 0x8f, 0xff, 0x74, 0xff, 0x5a, 0xff,\n  0x41, 0xff, 0x2a, 0xff, 0x12, 0xff, 0xfc, 0xfe, 0xe5, 0xfe, 0xcc, 0xfe,\n  0xb8, 0xfe, 0xa2, 0xfe, 0x8e, 0xfe, 0x78, 0xfe, 0x61, 0xfe, 0x4c, 0xfe,\n  0x37, 0xfe, 0x27, 0xfe, 0x10, 0xfe, 0xff, 0xfd, 0xeb, 0xfd, 0xdd, 0xfd,\n  0xcb, 0xfd, 0xbb, 0xfd, 0xa5, 0xfd, 0x97, 0xfd, 0x89, 0xfd, 0x77, 0xfd,\n  0x67, 0xfd, 0x55, 0xfd, 0x49, 0xfd, 0x39, 0xfd, 0x27, 0xfd, 0x1f, 0xfd,\n  0x0d, 0xfd, 0x01, 0xfd, 0xf7, 0xfc, 0xe9, 0xfc, 0xe1, 0xfc, 0xd5, 0xfc,\n  0xcb, 0xfc, 0xc5, 0xfc, 0xbd, 0xfc, 0xb5, 0xfc, 0xad, 0xfc, 0xa7, 0xfc,\n  0xa3, 0xfc, 0x9d, 0xfc, 0x9b, 0xfc, 0x93, 0xfc, 0x93, 0xfc, 0x8b, 0xfc,\n  0x85, 0xfc, 0x87, 0xfc, 0x7d, 0xfc, 0x7d, 0xfc, 0x77, 0xfc, 0x73, 0xfc,\n  0x6d, 0xfc, 0x69, 0xfc, 0x5f, 0xfc, 0x5f, 0xfc, 0x53, 0xfc, 0x53, 0xfc,\n  0x49, 0xfc, 0x43, 0xfc, 0x41, 0xfc, 0x35, 0xfc, 0x2d, 0xfc, 0x23, 0xfc,\n  0x21, 0xfc, 0x15, 0xfc, 0x0b, 0xfc, 0x07, 0xfc, 0xfe, 0xfb, 0xf5, 0xfb,\n  0xed, 0xfb, 0xea, 0xfb, 0xe5, 0xfb, 0xdd, 0xfb, 0xd5, 0xfb, 0xd5, 0xfb,\n  0xd2, 0xfb, 0xce, 0xfb, 0xcc, 0xfb, 0xcd, 0xfb, 0xd0, 0xfb, 0xce, 0xfb,\n  0xd5, 0xfb, 0xd5, 0xfb, 0xd8, 0xfb, 0xde, 0xfb, 0xe1, 0xfb, 0xe9, 0xfb,\n  0xed, 0xfb, 0xf6, 0xfb, 0x03, 0xfc, 0x0b, 0xfc, 0x17, 0xfc, 0x23, 0xfc,\n  0x29, 0xfc, 0x3b, 0xfc, 0x47, 0xfc, 0x53, 0xfc, 0x63, 0xfc, 0x6f, 0xfc,\n  0x7f, 0xfc, 0x8f, 0xfc, 0x9d, 0xfc, 0xad, 0xfc, 0xbd, 0xfc, 0xcd, 0xfc,\n  0xdd, 0xfc, 0xf1, 0xfc, 0x01, 0xfd, 0x11, 0xfd, 0x25, 0xfd, 0x35, 0xfd,\n  0x49, 0xfd, 0x5b, 0xfd, 0x6d, 0xfd, 0x81, 0xfd, 0x93, 0xfd, 0xa7, 0xfd,\n  0xb7, 0xfd, 0xcb, 0xfd, 0xdf, 0xfd, 0xf3, 0xfd, 0x06, 0xfe, 0x15, 0xfe,\n  0x27, 0xfe, 0x3a, 0xfe, 0x49, 0xfe, 0x5a, 0xfe, 0x6a, 0xfe, 0x79, 0xfe,\n  0x8b, 0xfe, 0x99, 0xfe, 0xab, 0xfe, 0xbb, 0xfe, 0xc9, 0xfe, 0xd9, 0xfe,\n  0xea, 0xfe, 0xf9, 0xfe, 0x08, 0xff, 0x17, 0xff, 0x26, 0xff, 0x38, 0xff,\n  0x42, 0xff, 0x54, 0xff, 0x63, 0xff, 0x71, 0xff, 0x86, 0xff, 0x92, 0xff,\n  0xa4, 0xff, 0xb6, 0xff, 0xc8, 0xff, 0xd8, 0xff, 0xe9, 0xff, 0xfe, 0xff,\n  0x0e, 0x00, 0x20, 0x00, 0x3a, 0x00, 0x4d, 0x00, 0x64, 0x00, 0x7a, 0x00,\n  0x94, 0x00, 0xb0, 0x00, 0xca, 0x00, 0xe5, 0x00, 0x00, 0x01, 0x19, 0x01,\n  0x39, 0x01, 0x57, 0x01, 0x73, 0x01, 0x91, 0x01, 0xb1, 0x01, 0xcf, 0x01,\n  0xed, 0x01, 0x09, 0x02, 0x29, 0x02, 0x49, 0x02, 0x63, 0x02, 0x81, 0x02,\n  0x9f, 0x02, 0xbb, 0x02, 0xd5, 0x02, 0xf3, 0x02, 0x07, 0x03, 0x27, 0x03,\n  0x3f, 0x03, 0x59, 0x03, 0x73, 0x03, 0x8b, 0x03, 0xa5, 0x03, 0xbd, 0x03,\n  0xd3, 0x03, 0xed, 0x03, 0x00, 0x04, 0x16, 0x04, 0x28, 0x04, 0x3f, 0x04,\n  0x4c, 0x04, 0x5b, 0x04, 0x6b, 0x04, 0x7b, 0x04, 0x86, 0x04, 0x8f, 0x04,\n  0x97, 0x04, 0xa3, 0x04, 0xa8, 0x04, 0xaf, 0x04, 0xb6, 0x04, 0xb6, 0x04,\n  0xb8, 0x04, 0xbb, 0x04, 0xbb, 0x04, 0xbf, 0x04, 0xbb, 0x04, 0xbf, 0x04,\n  0xbb, 0x04, 0xb8, 0x04, 0xb8, 0x04, 0xb3, 0x04, 0xb3, 0x04, 0xab, 0x04,\n  0xa8, 0x04, 0xa3, 0x04, 0x9c, 0x04, 0x97, 0x04, 0x8f, 0x04, 0x8b, 0x04,\n  0x82, 0x04, 0x7c, 0x04, 0x76, 0x04, 0x6f, 0x04, 0x67, 0x04, 0x5f, 0x04,\n  0x58, 0x04, 0x4c, 0x04, 0x48, 0x04, 0x3c, 0x04, 0x30, 0x04, 0x27, 0x04,\n  0x18, 0x04, 0x0b, 0x04, 0xfb, 0x03, 0xeb, 0x03, 0xd9, 0x03, 0xcb, 0x03,\n  0xb9, 0x03, 0xa1, 0x03, 0x91, 0x03, 0x7b, 0x03, 0x65, 0x03, 0x53, 0x03,\n  0x3f, 0x03, 0x29, 0x03, 0x15, 0x03, 0xff, 0x02, 0xe9, 0x02, 0xd5, 0x02,\n  0xbf, 0x02, 0xab, 0x02, 0x97, 0x02, 0x7f, 0x02, 0x6b, 0x02, 0x57, 0x02,\n  0x3f, 0x02, 0x2b, 0x02, 0x15, 0x02, 0x03, 0x02, 0xf0, 0x01, 0xdb, 0x01,\n  0xc7, 0x01, 0xb5, 0x01, 0xa3, 0x01, 0x91, 0x01, 0x7c, 0x01, 0x6c, 0x01,\n  0x5a, 0x01, 0x46, 0x01, 0x34, 0x01, 0x24, 0x01, 0x12, 0x01, 0xfe, 0x00,\n  0xeb, 0x00, 0xdd, 0x00, 0xca, 0x00, 0xb6, 0x00, 0xa9, 0x00, 0x95, 0x00,\n  0x86, 0x00, 0x73, 0x00, 0x62, 0x00, 0x52, 0x00, 0x40, 0x00, 0x2f, 0x00,\n  0x20, 0x00, 0x0d, 0x00, 0xfc, 0xff, 0xec, 0xff, 0xd7, 0xff, 0xc8, 0xff,\n  0xb3, 0xff, 0xa1, 0xff, 0x8f, 0xff, 0x7b, 0xff, 0x68, 0xff, 0x57, 0xff,\n  0x3f, 0xff, 0x2c, 0xff, 0x15, 0xff, 0x03, 0xff, 0xee, 0xfe, 0xdb, 0xfe,\n  0xc7, 0xfe, 0xb1, 0xfe, 0x9f, 0xfe, 0x8b, 0xfe, 0x79, 0xfe, 0x63, 0xfe,\n  0x54, 0xfe, 0x40, 0xfe, 0x31, 0xfe, 0x21, 0xfe, 0x10, 0xfe, 0xff, 0xfd,\n  0xf1, 0xfd, 0xe1, 0xfd, 0xd5, 0xfd, 0xc9, 0xfd, 0xbb, 0xfd, 0xb5, 0xfd,\n  0xa7, 0xfd, 0x9b, 0xfd, 0x93, 0xfd, 0x89, 0xfd, 0x7f, 0xfd, 0x79, 0xfd,\n  0x73, 0xfd, 0x6b, 0xfd, 0x69, 0xfd, 0x63, 0xfd, 0x63, 0xfd, 0x61, 0xfd,\n  0x61, 0xfd, 0x65, 0xfd, 0x61, 0xfd, 0x67, 0xfd, 0x67, 0xfd, 0x6b, 0xfd,\n  0x6f, 0xfd, 0x6f, 0xfd, 0x73, 0xfd, 0x75, 0xfd, 0x79, 0xfd, 0x7b, 0xfd,\n  0x7f, 0xfd, 0x81, 0xfd, 0x83, 0xfd, 0x87, 0xfd, 0x89, 0xfd, 0x8f, 0xfd,\n  0x91, 0xfd, 0x95, 0xfd, 0x97, 0xfd, 0x9d, 0xfd, 0xa3, 0xfd, 0xa5, 0xfd,\n  0xab, 0xfd, 0xaf, 0xfd, 0xb5, 0xfd, 0xb9, 0xfd, 0xbd, 0xfd, 0xc1, 0xfd,\n  0xc7, 0xfd, 0xcb, 0xfd, 0xcf, 0xfd, 0xd7, 0xfd, 0xd5, 0xfd, 0xdb, 0xfd,\n  0xe3, 0xfd, 0xe3, 0xfd, 0xeb, 0xfd, 0xeb, 0xfd, 0xf1, 0xfd, 0xf5, 0xfd,\n  0xf5, 0xfd, 0xf7, 0xfd, 0xf7, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd,\n  0xfd, 0xfd, 0xf9, 0xfd, 0xf7, 0xfd, 0xf1, 0xfd, 0xf1, 0xfd, 0xe7, 0xfd,\n  0xdf, 0xfd, 0xdb, 0xfd, 0xcd, 0xfd, 0xc9, 0xfd, 0xbb, 0xfd, 0xb1, 0xfd,\n  0xa7, 0xfd, 0x9b, 0xfd, 0x91, 0xfd, 0x89, 0xfd, 0x81, 0xfd, 0x73, 0xfd,\n  0x6d, 0xfd, 0x67, 0xfd, 0x5d, 0xfd, 0x55, 0xfd, 0x4b, 0xfd, 0x43, 0xfd,\n  0x3d, 0xfd, 0x33, 0xfd, 0x29, 0xfd, 0x23, 0xfd, 0x19, 0xfd, 0x0d, 0xfd,\n  0x07, 0xfd, 0x01, 0xfd, 0xf9, 0xfc, 0xf5, 0xfc, 0xef, 0xfc, 0xed, 0xfc,\n  0xe9, 0xfc, 0xe9, 0xfc, 0xe9, 0xfc, 0xeb, 0xfc, 0xeb, 0xfc, 0xf1, 0xfc,\n  0xf5, 0xfc, 0xfb, 0xfc, 0x05, 0xfd, 0x0f, 0xfd, 0x19, 0xfd, 0x23, 0xfd,\n  0x31, 0xfd, 0x3d, 0xfd, 0x4f, 0xfd, 0x61, 0xfd, 0x6b, 0xfd, 0x7d, 0xfd,\n  0x91, 0xfd, 0xa1, 0xfd, 0xb7, 0xfd, 0xcd, 0xfd, 0xe3, 0xfd, 0xf9, 0xfd,\n  0x12, 0xfe, 0x2b, 0xfe, 0x42, 0xfe, 0x5d, 0xfe, 0x73, 0xfe, 0x8b, 0xfe,\n  0xa9, 0xfe, 0xc1, 0xfe, 0xe1, 0xfe, 0xf9, 0xfe, 0x15, 0xff, 0x33, 0xff,\n  0x51, 0xff, 0x69, 0xff, 0x87, 0xff, 0xa2, 0xff, 0xc2, 0xff, 0xd8, 0xff,\n  0xf8, 0xff, 0x11, 0x00, 0x2e, 0x00, 0x47, 0x00, 0x5c, 0x00, 0x7c, 0x00,\n  0x92, 0x00, 0xaf, 0x00, 0xc5, 0x00, 0xdd, 0x00, 0xf7, 0x00, 0x0f, 0x01,\n  0x2b, 0x01, 0x3c, 0x01, 0x57, 0x01, 0x6d, 0x01, 0x82, 0x01, 0x9a, 0x01,\n  0xaf, 0x01, 0xc4, 0x01, 0xd8, 0x01, 0xeb, 0x01, 0xff, 0x01, 0x11, 0x02,\n  0x25, 0x02, 0x33, 0x02, 0x45, 0x02, 0x59, 0x02, 0x63, 0x02, 0x75, 0x02,\n  0x87, 0x02, 0x91, 0x02, 0x9f, 0x02, 0xab, 0x02, 0xb7, 0x02, 0xc5, 0x02,\n  0xcd, 0x02, 0xdb, 0x02, 0xe3, 0x02, 0xed, 0x02, 0xf9, 0x02, 0x03, 0x03,\n  0x0b, 0x03, 0x17, 0x03, 0x21, 0x03, 0x2f, 0x03, 0x37, 0x03, 0x47, 0x03,\n  0x4d, 0x03, 0x5b, 0x03, 0x65, 0x03, 0x6b, 0x03, 0x79, 0x03, 0x81, 0x03,\n  0x89, 0x03, 0x91, 0x03, 0x97, 0x03, 0x9f, 0x03, 0xa5, 0x03, 0xa7, 0x03,\n  0xad, 0x03, 0xb3, 0x03, 0xb5, 0x03, 0xbb, 0x03, 0xbb, 0x03, 0xbd, 0x03,\n  0xbf, 0x03, 0xc1, 0x03, 0xbf, 0x03, 0xbf, 0x03, 0xbd, 0x03, 0xb9, 0x03,\n  0xb9, 0x03, 0xb3, 0x03, 0xb3, 0x03, 0xad, 0x03, 0xa7, 0x03, 0xa5, 0x03,\n  0x9f, 0x03, 0x99, 0x03, 0x91, 0x03, 0x8b, 0x03, 0x81, 0x03, 0x7b, 0x03,\n  0x73, 0x03, 0x65, 0x03, 0x5d, 0x03, 0x53, 0x03, 0x47, 0x03, 0x3f, 0x03,\n  0x31, 0x03, 0x27, 0x03, 0x17, 0x03, 0x09, 0x03, 0xff, 0x02, 0xed, 0x02,\n  0xe1, 0x02, 0xd1, 0x02, 0xc3, 0x02, 0xb5, 0x02, 0xa5, 0x02, 0x93, 0x02,\n  0x87, 0x02, 0x75, 0x02, 0x65, 0x02, 0x57, 0x02, 0x45, 0x02, 0x33, 0x02,\n  0x21, 0x02, 0x11, 0x02, 0xff, 0x01, 0xee, 0x01, 0xdc, 0x01, 0xcc, 0x01,\n  0xb8, 0x01, 0xa9, 0x01, 0x96, 0x01, 0x85, 0x01, 0x76, 0x01, 0x63, 0x01,\n  0x52, 0x01, 0x43, 0x01, 0x31, 0x01, 0x21, 0x01, 0x0d, 0x01, 0xfe, 0x00,\n  0xee, 0x00, 0xd9, 0x00, 0xcd, 0x00, 0xbb, 0x00, 0xaf, 0x00, 0x9d, 0x00,\n  0x91, 0x00, 0x82, 0x00, 0x77, 0x00, 0x67, 0x00, 0x5b, 0x00, 0x50, 0x00,\n  0x43, 0x00, 0x3b, 0x00, 0x2e, 0x00, 0x23, 0x00, 0x1a, 0x00, 0x10, 0x00,\n  0x08, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xf3, 0xff, 0xe9, 0xff, 0xe1, 0xff,\n  0xd5, 0xff, 0xd1, 0xff, 0xc9, 0xff, 0xc0, 0xff, 0xba, 0xff, 0xb0, 0xff,\n  0xad, 0xff, 0xa4, 0xff, 0x9f, 0xff, 0x99, 0xff, 0x92, 0xff, 0x8a, 0xff,\n  0x84, 0xff, 0x7a, 0xff, 0x71, 0xff, 0x68, 0xff, 0x5c, 0xff, 0x51, 0xff,\n  0x44, 0xff, 0x36, 0xff, 0x27, 0xff, 0x1a, 0xff, 0x0b, 0xff, 0xfd, 0xfe,\n  0xee, 0xfe, 0xdb, 0xfe, 0xc6, 0xfe, 0xb5, 0xfe, 0xa2, 0xfe, 0x8b, 0xfe,\n  0x7b, 0xfe, 0x64, 0xfe, 0x51, 0xfe, 0x3f, 0xfe, 0x28, 0xfe, 0x16, 0xfe,\n  0xfd, 0xfd, 0xed, 0xfd, 0xd7, 0xfd, 0xc7, 0xfd, 0xaf, 0xfd, 0xa1, 0xfd,\n  0x91, 0xfd, 0x7f, 0xfd, 0x67, 0xfd, 0x59, 0xfd, 0x49, 0xfd, 0x37, 0xfd,\n  0x2b, 0xfd, 0x1b, 0xfd, 0x0d, 0xfd, 0x01, 0xfd, 0xf5, 0xfc, 0xe9, 0xfc,\n  0xdd, 0xfc, 0xd7, 0xfc, 0xcb, 0xfc, 0xc5, 0xfc, 0xb7, 0xfc, 0xad, 0xfc,\n  0xa9, 0xfc, 0xa1, 0xfc, 0x9b, 0xfc, 0x93, 0xfc, 0x89, 0xfc, 0x89, 0xfc,\n  0x81, 0xfc, 0x7b, 0xfc, 0x77, 0xfc, 0x71, 0xfc, 0x6d, 0xfc, 0x6d, 0xfc,\n  0x69, 0xfc, 0x67, 0xfc, 0x67, 0xfc, 0x69, 0xfc, 0x65, 0xfc, 0x69, 0xfc,\n  0x6b, 0xfc, 0x6d, 0xfc, 0x6f, 0xfc, 0x73, 0xfc, 0x77, 0xfc, 0x79, 0xfc,\n  0x7f, 0xfc, 0x83, 0xfc, 0x89, 0xfc, 0x8f, 0xfc, 0x95, 0xfc, 0x9b, 0xfc,\n  0xa1, 0xfc, 0xa9, 0xfc, 0xb1, 0xfc, 0xb5, 0xfc, 0xc3, 0xfc, 0xcb, 0xfc,\n  0xd7, 0xfc, 0xdd, 0xfc, 0xeb, 0xfc, 0xf5, 0xfc, 0xff, 0xfc, 0x11, 0xfd,\n  0x19, 0xfd, 0x25, 0xfd, 0x33, 0xfd, 0x43, 0xfd, 0x53, 0xfd, 0x63, 0xfd,\n  0x73, 0xfd, 0x85, 0xfd, 0x97, 0xfd, 0xa9, 0xfd, 0xbb, 0xfd, 0xd1, 0xfd,\n  0xe5, 0xfd, 0xf5, 0xfd, 0x0f, 0xfe, 0x1f, 0xfe, 0x36, 0xfe, 0x4c, 0xfe,\n  0x5e, 0xfe, 0x76, 0xfe, 0x8a, 0xfe, 0x9f, 0xfe, 0xb5, 0xfe, 0xc7, 0xfe,\n  0xde, 0xfe, 0xf0, 0xfe, 0x06, 0xff, 0x17, 0xff, 0x2d, 0xff, 0x3f, 0xff,\n  0x51, 0xff, 0x68, 0xff, 0x74, 0xff, 0x89, 0xff, 0x96, 0xff, 0xa8, 0xff,\n  0xb6, 0xff, 0xc8, 0xff, 0xd4, 0xff, 0xe4, 0xff, 0xf3, 0xff, 0x01, 0x00,\n  0x0e, 0x00, 0x1d, 0x00, 0x2c, 0x00, 0x38, 0x00, 0x4a, 0x00, 0x58, 0x00,\n  0x68, 0x00, 0x77, 0x00, 0x86, 0x00, 0x95, 0x00, 0xa3, 0x00, 0xb5, 0x00,\n  0xc4, 0x00, 0xce, 0x00, 0xdf, 0x00, 0xeb, 0x00, 0xf7, 0x00, 0x07, 0x01,\n  0x10, 0x01, 0x1e, 0x01, 0x28, 0x01, 0x37, 0x01, 0x40, 0x01, 0x4e, 0x01,\n  0x5d, 0x01, 0x64, 0x01, 0x72, 0x01, 0x7f, 0x01, 0x8a, 0x01, 0x99, 0x01,\n  0xa8, 0x01, 0xb4, 0x01, 0xc1, 0x01, 0xcc, 0x01, 0xd9, 0x01, 0xe5, 0x01,\n  0xf4, 0x01, 0xff, 0x01, 0x0b, 0x02, 0x15, 0x02, 0x1f, 0x02, 0x2d, 0x02,\n  0x37, 0x02, 0x43, 0x02, 0x4d, 0x02, 0x5b, 0x02, 0x67, 0x02, 0x75, 0x02,\n  0x81, 0x02, 0x91, 0x02, 0x9b, 0x02, 0xa9, 0x02, 0xb7, 0x02, 0xc1, 0x02,\n  0xcd, 0x02, 0xdb, 0x02, 0xe7, 0x02, 0xef, 0x02, 0xfb, 0x02, 0x05, 0x03,\n  0x11, 0x03, 0x1b, 0x03, 0x21, 0x03, 0x2b, 0x03, 0x2f, 0x03, 0x37, 0x03,\n  0x41, 0x03, 0x45, 0x03, 0x49, 0x03, 0x4f, 0x03, 0x53, 0x03, 0x55, 0x03,\n  0x55, 0x03, 0x5b, 0x03, 0x59, 0x03, 0x59, 0x03, 0x59, 0x03, 0x53, 0x03,\n  0x4f, 0x03, 0x4b, 0x03, 0x47, 0x03, 0x3f, 0x03, 0x37, 0x03, 0x2f, 0x03,\n  0x25, 0x03, 0x1d, 0x03, 0x15, 0x03, 0x0b, 0x03, 0xff, 0x02, 0xf5, 0x02,\n  0xef, 0x02, 0xe7, 0x02, 0xe1, 0x02, 0xd7, 0x02, 0xcd, 0x02, 0xc5, 0x02,\n  0xc1, 0x02, 0xb5, 0x02, 0xad, 0x02, 0xa5, 0x02, 0x99, 0x02, 0x93, 0x02,\n  0x87, 0x02, 0x81, 0x02, 0x75, 0x02, 0x6f, 0x02, 0x63, 0x02, 0x59, 0x02,\n  0x51, 0x02, 0x41, 0x02, 0x3b, 0x02, 0x2d, 0x02, 0x21, 0x02, 0x17, 0x02,\n  0x09, 0x02, 0xfd, 0x01, 0xf1, 0x01, 0xe1, 0x01, 0xd5, 0x01, 0xc6, 0x01,\n  0xb5, 0x01, 0xa8, 0x01, 0x96, 0x01, 0x87, 0x01, 0x75, 0x01, 0x67, 0x01,\n  0x57, 0x01, 0x49, 0x01, 0x3a, 0x01, 0x2a, 0x01, 0x1e, 0x01, 0x0a, 0x01,\n  0xfe, 0x00, 0xf2, 0x00, 0xe0, 0x00, 0xd7, 0x00, 0xcb, 0x00, 0xbe, 0x00,\n  0xb2, 0x00, 0xa4, 0x00, 0x98, 0x00, 0x8b, 0x00, 0x80, 0x00, 0x73, 0x00,\n  0x65, 0x00, 0x5e, 0x00, 0x4f, 0x00, 0x40, 0x00, 0x38, 0x00, 0x29, 0x00,\n  0x1f, 0x00, 0x17, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf5, 0xff, 0xea, 0xff,\n  0xe3, 0xff, 0xd8, 0xff, 0xcf, 0xff, 0xc5, 0xff, 0xbd, 0xff, 0xb6, 0xff,\n  0xaa, 0xff, 0xa5, 0xff, 0x9b, 0xff, 0x95, 0xff, 0x8c, 0xff, 0x83, 0xff,\n  0x7e, 0xff, 0x74, 0xff, 0x6e, 0xff, 0x60, 0xff, 0x5f, 0xff, 0x50, 0xff,\n  0x45, 0xff, 0x3b, 0xff, 0x30, 0xff, 0x26, 0xff, 0x1a, 0xff, 0x11, 0xff,\n  0x03, 0xff, 0xf7, 0xfe, 0xea, 0xfe, 0xe1, 0xfe, 0xd3, 0xfe, 0xc7, 0xfe,\n  0xb7, 0xfe, 0xac, 0xfe, 0x9f, 0xfe, 0x93, 0xfe, 0x84, 0xfe, 0x73, 0xfe,\n  0x66, 0xfe, 0x58, 0xfe, 0x46, 0xfe, 0x3a, 0xfe, 0x2a, 0xfe, 0x1b, 0xfe,\n  0x0a, 0xfe, 0xfd, 0xfd, 0xef, 0xfd, 0xdd, 0xfd, 0xcf, 0xfd, 0xbf, 0xfd,\n  0xaf, 0xfd, 0xa1, 0xfd, 0x91, 0xfd, 0x83, 0xfd, 0x73, 0xfd, 0x63, 0xfd,\n  0x55, 0xfd, 0x47, 0xfd, 0x39, 0xfd, 0x2b, 0xfd, 0x1f, 0xfd, 0x13, 0xfd,\n  0x05, 0xfd, 0xfb, 0xfc, 0xef, 0xfc, 0xe7, 0xfc, 0xdb, 0xfc, 0xd3, 0xfc,\n  0xcd, 0xfc, 0xc3, 0xfc, 0xbb, 0xfc, 0xb5, 0xfc, 0xb1, 0xfc, 0xa7, 0xfc,\n  0xa3, 0xfc, 0x9b, 0xfc, 0x97, 0xfc, 0x91, 0xfc, 0x8b, 0xfc, 0x89, 0xfc,\n  0x85, 0xfc, 0x81, 0xfc, 0x7d, 0xfc, 0x7b, 0xfc, 0x79, 0xfc, 0x77, 0xfc,\n  0x77, 0xfc, 0x7b, 0xfc, 0x77, 0xfc, 0x7d, 0xfc, 0x7f, 0xfc, 0x83, 0xfc,\n  0x85, 0xfc, 0x89, 0xfc, 0x8f, 0xfc, 0x95, 0xfc, 0x9b, 0xfc, 0xa1, 0xfc,\n  0xa7, 0xfc, 0xad, 0xfc, 0xb3, 0xfc, 0xbb, 0xfc, 0xc5, 0xfc, 0xcf, 0xfc,\n  0xd5, 0xfc, 0xdd, 0xfc, 0xe7, 0xfc, 0xf3, 0xfc, 0xfb, 0xfc, 0x07, 0xfd,\n  0x0d, 0xfd, 0x19, 0xfd, 0x25, 0xfd, 0x2d, 0xfd, 0x3d, 0xfd, 0x49, 0xfd,\n  0x55, 0xfd, 0x63, 0xfd, 0x6d, 0xfd, 0x7d, 0xfd, 0x89, 0xfd, 0x97, 0xfd,\n  0xa9, 0xfd, 0xb7, 0xfd, 0xc7, 0xfd, 0xd7, 0xfd, 0xeb, 0xfd, 0xfb, 0xfd,\n  0x0f, 0xfe, 0x25, 0xfe, 0x34, 0xfe, 0x49, 0xfe, 0x60, 0xfe, 0x72, 0xfe,\n  0x8a, 0xfe, 0x9c, 0xfe, 0xb2, 0xfe, 0xc9, 0xfe, 0xde, 0xfe, 0xf6, 0xfe,\n  0x0b, 0xff, 0x20, 0xff, 0x33, 0xff, 0x4b, 0xff, 0x5f, 0xff, 0x75, 0xff,\n  0x8a, 0xff, 0x9e, 0xff, 0xb1, 0xff, 0xc3, 0xff, 0xd8, 0xff, 0xea, 0xff,\n  0xfc, 0xff, 0x10, 0x00, 0x20, 0x00, 0x34, 0x00, 0x46, 0x00, 0x59, 0x00,\n  0x6a, 0x00, 0x7c, 0x00, 0x8f, 0x00, 0x9d, 0x00, 0xb0, 0x00, 0xc2, 0x00,\n  0xd4, 0x00, 0xe5, 0x00, 0xf7, 0x00, 0x0a, 0x01, 0x1b, 0x01, 0x2a, 0x01,\n  0x3a, 0x01, 0x4b, 0x01, 0x5b, 0x01, 0x6c, 0x01, 0x7b, 0x01, 0x8d, 0x01,\n  0x97, 0x01, 0xa8, 0x01, 0xb7, 0x01, 0xc6, 0x01, 0xd5, 0x01, 0xe1, 0x01,\n  0xf0, 0x01, 0xfd, 0x01, 0x09, 0x02, 0x17, 0x02, 0x23, 0x02, 0x31, 0x02,\n  0x3d, 0x02, 0x49, 0x02, 0x55, 0x02, 0x5d, 0x02, 0x69, 0x02, 0x75, 0x02,\n  0x7d, 0x02, 0x83, 0x02, 0x8b, 0x02, 0x95, 0x02, 0x99, 0x02, 0xa3, 0x02,\n  0xa9, 0x02, 0xad, 0x02, 0xb5, 0x02, 0xb9, 0x02, 0xbd, 0x02, 0xc1, 0x02,\n  0xc7, 0x02, 0xc9, 0x02, 0xcf, 0x02, 0xcf, 0x02, 0xd5, 0x02, 0xd5, 0x02,\n  0xd5, 0x02, 0xd9, 0x02, 0xd9, 0x02, 0xdb, 0x02, 0xdb, 0x02, 0xdd, 0x02,\n  0xdf, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xe1, 0x02, 0xe3, 0x02,\n  0xe5, 0x02, 0xe3, 0x02, 0xe5, 0x02, 0xe3, 0x02, 0xe5, 0x02, 0xe1, 0x02,\n  0xe3, 0x02, 0xdd, 0x02, 0xdf, 0x02, 0xdb, 0x02, 0xdd, 0x02, 0xd5, 0x02,\n  0xd5, 0x02, 0xd5, 0x02, 0xcf, 0x02, 0xc9, 0x02, 0xc5, 0x02, 0xc3, 0x02,\n  0xbd, 0x02, 0xb7, 0x02, 0xb3, 0x02, 0xad, 0x02, 0xab, 0x02, 0xa1, 0x02,\n  0x9f, 0x02, 0x95, 0x02, 0x8d, 0x02, 0x8b, 0x02, 0x81, 0x02, 0x79, 0x02,\n  0x6f, 0x02, 0x69, 0x02, 0x5f, 0x02, 0x53, 0x02, 0x49, 0x02, 0x3d, 0x02,\n  0x33, 0x02, 0x27, 0x02, 0x1d, 0x02, 0x0f, 0x02, 0x05, 0x02, 0xff, 0x01,\n  0xee, 0x01, 0xe5, 0x01, 0xd8, 0x01, 0xd2, 0x01, 0xc3, 0x01, 0xb7, 0x01,\n  0xb1, 0x01, 0xa2, 0x01, 0x97, 0x01, 0x8d, 0x01, 0x82, 0x01, 0x73, 0x01,\n  0x6d, 0x01, 0x60, 0x01, 0x55, 0x01, 0x48, 0x01, 0x42, 0x01, 0x34, 0x01,\n  0x2a, 0x01, 0x21, 0x01, 0x13, 0x01, 0x06, 0x01, 0xfe, 0x00, 0xf1, 0x00,\n  0xe6, 0x00, 0xdc, 0x00, 0xd0, 0x00, 0xc7, 0x00, 0xb5, 0x00, 0xaf, 0x00,\n  0xa0, 0x00, 0x92, 0x00, 0x89, 0x00, 0x7a, 0x00, 0x6e, 0x00, 0x64, 0x00,\n  0x55, 0x00, 0x4a, 0x00, 0x3e, 0x00, 0x34, 0x00, 0x25, 0x00, 0x1a, 0x00,\n  0x0d, 0x00, 0x04, 0x00, 0xf6, 0xff, 0xed, 0xff, 0xe3, 0xff, 0xd5, 0xff,\n  0xcc, 0xff, 0xbf, 0xff, 0xb4, 0xff, 0xa8, 0xff, 0x9f, 0xff, 0x8f, 0xff,\n  0x87, 0xff, 0x78, 0xff, 0x6e, 0xff, 0x63, 0xff, 0x54, 0xff, 0x47, 0xff,\n  0x3b, 0xff, 0x32, 0xff, 0x21, 0xff, 0x15, 0xff, 0x0e, 0xff, 0x00, 0xff,\n  0xf6, 0xfe, 0xea, 0xfe, 0xe2, 0xfe, 0xd3, 0xfe, 0xcd, 0xfe, 0xc0, 0xfe,\n  0xb8, 0xfe, 0xae, 0xfe, 0xa8, 0xfe, 0xa0, 0xfe, 0x94, 0xfe, 0x90, 0xfe,\n  0x85, 0xfe, 0x81, 0xfe, 0x76, 0xfe, 0x70, 0xfe, 0x6a, 0xfe, 0x60, 0xfe,\n  0x5d, 0xfe, 0x57, 0xfe, 0x4c, 0xfe, 0x4c, 0xfe, 0x42, 0xfe, 0x40, 0xfe,\n  0x3c, 0xfe, 0x37, 0xfe, 0x31, 0xfe, 0x30, 0xfe, 0x2b, 0xfe, 0x24, 0xfe,\n  0x21, 0xfe, 0x1c, 0xfe, 0x18, 0xfe, 0x12, 0xfe, 0x0d, 0xfe, 0x07, 0xfe,\n  0xff, 0xfd, 0xfd, 0xfd, 0xf5, 0xfd, 0xf1, 0xfd, 0xeb, 0xfd, 0xe5, 0xfd,\n  0xe3, 0xfd, 0xdb, 0xfd, 0xd9, 0xfd, 0xcf, 0xfd, 0xcd, 0xfd, 0xcb, 0xfd,\n  0xc5, 0xfd, 0xc1, 0xfd, 0xbb, 0xfd, 0xbf, 0xfd, 0xbb, 0xfd, 0xb5, 0xfd,\n  0xb7, 0xfd, 0xb1, 0xfd, 0xb3, 0xfd, 0xb3, 0xfd, 0xb1, 0xfd, 0xb5, 0xfd,\n  0xb3, 0xfd, 0xb5, 0xfd, 0xb5, 0xfd, 0xb5, 0xfd, 0xbb, 0xfd, 0xb5, 0xfd,\n  0xbb, 0xfd, 0xc1, 0xfd, 0xc5, 0xfd, 0xc7, 0xfd, 0xcb, 0xfd, 0xd1, 0xfd,\n  0xd1, 0xfd, 0xd9, 0xfd, 0xd9, 0xfd, 0xe1, 0xfd, 0xe5, 0xfd, 0xeb, 0xfd,\n  0xed, 0xfd, 0xf3, 0xfd, 0xf7, 0xfd, 0xfb, 0xfd, 0x04, 0xfe, 0x07, 0xfe,\n  0x0f, 0xfe, 0x16, 0xfe, 0x1c, 0xfe, 0x27, 0xfe, 0x2d, 0xfe, 0x36, 0xfe,\n  0x40, 0xfe, 0x4b, 0xfe, 0x55, 0xfe, 0x60, 0xfe, 0x6c, 0xfe, 0x78, 0xfe,\n  0x82, 0xfe, 0x8e, 0xfe, 0x97, 0xfe, 0xa3, 0xfe, 0xb1, 0xfe, 0xba, 0xfe,\n  0xc7, 0xfe, 0xcf, 0xfe, 0xdb, 0xfe, 0xe8, 0xfe, 0xf0, 0xfe, 0xf9, 0xfe,\n  0x08, 0xff, 0x0f, 0xff, 0x1d, 0xff, 0x24, 0xff, 0x30, 0xff, 0x39, 0xff,\n  0x42, 0xff, 0x4a, 0xff, 0x57, 0xff, 0x60, 0xff, 0x65, 0xff, 0x74, 0xff,\n  0x7b, 0xff, 0x86, 0xff, 0x8f, 0xff, 0x96, 0xff, 0xa1, 0xff, 0xaa, 0xff,\n  0xb0, 0xff, 0xbc, 0xff, 0xc3, 0xff, 0xce, 0xff, 0xd7, 0xff, 0xe0, 0xff,\n  0xea, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x13, 0x00, 0x1c, 0x00,\n  0x28, 0x00, 0x35, 0x00, 0x3d, 0x00, 0x4c, 0x00, 0x56, 0x00, 0x64, 0x00,\n  0x71, 0x00, 0x80, 0x00, 0x8c, 0x00, 0x98, 0x00, 0xa7, 0x00, 0xb2, 0x00,\n  0xbf, 0x00, 0xcd, 0x00, 0xd9, 0x00, 0xe5, 0x00, 0xf1, 0x00, 0x01, 0x01,\n  0x0c, 0x01, 0x15, 0x01, 0x24, 0x01, 0x2d, 0x01, 0x3c, 0x01, 0x48, 0x01,\n  0x55, 0x01, 0x60, 0x01, 0x6a, 0x01, 0x76, 0x01, 0x81, 0x01, 0x85, 0x01,\n  0x96, 0x01, 0x9f, 0x01, 0xa9, 0x01, 0xb4, 0x01, 0xb7, 0x01, 0xc3, 0x01,\n  0xca, 0x01, 0xd2, 0x01, 0xdb, 0x01, 0xde, 0x01, 0xea, 0x01, 0xf0, 0x01,\n  0xf9, 0x01, 0x03, 0x02, 0x09, 0x02, 0x0f, 0x02, 0x15, 0x02, 0x1d, 0x02,\n  0x21, 0x02, 0x27, 0x02, 0x2d, 0x02, 0x33, 0x02, 0x37, 0x02, 0x39, 0x02,\n  0x3d, 0x02, 0x3f, 0x02, 0x45, 0x02, 0x43, 0x02, 0x45, 0x02, 0x47, 0x02,\n  0x43, 0x02, 0x47, 0x02, 0x49, 0x02, 0x49, 0x02, 0x47, 0x02, 0x47, 0x02,\n  0x4b, 0x02, 0x45, 0x02, 0x49, 0x02, 0x49, 0x02, 0x47, 0x02, 0x45, 0x02,\n  0x47, 0x02, 0x43, 0x02, 0x41, 0x02, 0x43, 0x02, 0x3b, 0x02, 0x3b, 0x02,\n  0x39, 0x02, 0x31, 0x02, 0x33, 0x02, 0x29, 0x02, 0x21, 0x02, 0x1d, 0x02,\n  0x15, 0x02, 0x11, 0x02, 0x09, 0x02, 0x03, 0x02, 0xf9, 0x01, 0xf4, 0x01,\n  0xea, 0x01, 0xe8, 0x01, 0xdb, 0x01, 0xd2, 0x01, 0xc9, 0x01, 0xc0, 0x01,\n  0xba, 0x01, 0xb2, 0x01, 0xa5, 0x01, 0x9c, 0x01, 0x91, 0x01, 0x8b, 0x01,\n  0x81, 0x01, 0x78, 0x01, 0x6d, 0x01, 0x61, 0x01, 0x57, 0x01, 0x4e, 0x01,\n  0x46, 0x01, 0x39, 0x01, 0x34, 0x01, 0x28, 0x01, 0x1c, 0x01, 0x18, 0x01,\n  0x0f, 0x01, 0x04, 0x01, 0xf8, 0x00, 0xef, 0x00, 0xe6, 0x00, 0xdc, 0x00,\n  0xd6, 0x00, 0xcb, 0x00, 0xc4, 0x00, 0xbb, 0x00, 0xb0, 0x00, 0xa6, 0x00,\n  0xa0, 0x00, 0x97, 0x00, 0x8f, 0x00, 0x83, 0x00, 0x7c, 0x00, 0x74, 0x00,\n  0x6d, 0x00, 0x67, 0x00, 0x5e, 0x00, 0x58, 0x00, 0x50, 0x00, 0x4a, 0x00,\n  0x40, 0x00, 0x3b, 0x00, 0x35, 0x00, 0x2c, 0x00, 0x25, 0x00, 0x1c, 0x00,\n  0x16, 0x00, 0x0b, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xed, 0xff,\n  0xe3, 0xff, 0xdb, 0xff, 0xd2, 0xff, 0xc9, 0xff, 0xc0, 0xff, 0xb9, 0xff,\n  0xb0, 0xff, 0xa5, 0xff, 0x9b, 0xff, 0x98, 0xff, 0x8a, 0xff, 0x81, 0xff,\n  0x77, 0xff, 0x6e, 0xff, 0x66, 0xff, 0x59, 0xff, 0x4e, 0xff, 0x3f, 0xff,\n  0x36, 0xff, 0x24, 0xff, 0x18, 0xff, 0x0f, 0xff, 0x00, 0xff, 0xf3, 0xfe,\n  0xe5, 0xfe, 0xd9, 0xfe, 0xcd, 0xfe, 0xc0, 0xfe, 0xb4, 0xfe, 0xa8, 0xfe,\n  0x9a, 0xfe, 0x90, 0xfe, 0x87, 0xfe, 0x7b, 0xfe, 0x6f, 0xfe, 0x69, 0xfe,\n  0x5d, 0xfe, 0x55, 0xfe, 0x4c, 0xfe, 0x45, 0xfe, 0x3f, 0xfe, 0x3a, 0xfe,\n  0x30, 0xfe, 0x2b, 0xfe, 0x22, 0xfe, 0x1f, 0xfe, 0x18, 0xfe, 0x12, 0xfe,\n  0x0c, 0xfe, 0x06, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xf9, 0xfd, 0xf1, 0xfd,\n  0xf1, 0xfd, 0xed, 0xfd, 0xe9, 0xfd, 0xe7, 0xfd, 0xe5, 0xfd, 0xe5, 0xfd,\n  0xe5, 0xfd, 0xe1, 0xfd, 0xe5, 0xfd, 0xe1, 0xfd, 0xe5, 0xfd, 0xe5, 0xfd,\n  0xe5, 0xfd, 0xe9, 0xfd, 0xe9, 0xfd, 0xeb, 0xfd, 0xef, 0xfd, 0xf1, 0xfd,\n  0xf7, 0xfd, 0xfb, 0xfd, 0xfd, 0xfd, 0x04, 0xfe, 0x07, 0xfe, 0x0f, 0xfe,\n  0x12, 0xfe, 0x19, 0xfe, 0x1f, 0xfe, 0x24, 0xfe, 0x2a, 0xfe, 0x2b, 0xfe,\n  0x33, 0xfe, 0x3a, 0xfe, 0x3d, 0xfe, 0x42, 0xfe, 0x46, 0xfe, 0x49, 0xfe,\n  0x4b, 0xfe, 0x51, 0xfe, 0x52, 0xfe, 0x58, 0xfe, 0x5b, 0xfe, 0x5b, 0xfe,\n  0x61, 0xfe, 0x61, 0xfe, 0x67, 0xfe, 0x69, 0xfe, 0x6a, 0xfe, 0x72, 0xfe,\n  0x75, 0xfe, 0x7c, 0xfe, 0x7c, 0xfe, 0x82, 0xfe, 0x8b, 0xfe, 0x8e, 0xfe,\n  0x94, 0xfe, 0x9a, 0xfe, 0xa5, 0xfe, 0xa6, 0xfe, 0xaf, 0xfe, 0xb7, 0xfe,\n  0xbd, 0xfe, 0xc1, 0xfe, 0xcd, 0xfe, 0xd2, 0xfe, 0xd9, 0xfe, 0xdf, 0xfe,\n  0xe7, 0xfe, 0xee, 0xfe, 0xf0, 0xfe, 0xf9, 0xfe, 0xfd, 0xfe, 0x05, 0xff,\n  0x0b, 0xff, 0x0e, 0xff, 0x12, 0xff, 0x18, 0xff, 0x20, 0xff, 0x26, 0xff,\n  0x2d, 0xff, 0x33, 0xff, 0x3b, 0xff, 0x3f, 0xff, 0x45, 0xff, 0x4b, 0xff,\n  0x53, 0xff, 0x5d, 0xff, 0x62, 0xff, 0x6b, 0xff, 0x74, 0xff, 0x80, 0xff,\n  0x89, 0xff, 0x95, 0xff, 0xa1, 0xff, 0xab, 0xff, 0xb9, 0xff, 0xc6, 0xff,\n  0xcf, 0xff, 0xda, 0xff, 0xe7, 0xff, 0xf2, 0xff, 0xff, 0xff, 0x0d, 0x00,\n  0x14, 0x00, 0x20, 0x00, 0x2c, 0x00, 0x38, 0x00, 0x44, 0x00, 0x4d, 0x00,\n  0x59, 0x00, 0x64, 0x00, 0x6e, 0x00, 0x77, 0x00, 0x83, 0x00, 0x8c, 0x00,\n  0x98, 0x00, 0xa3, 0x00, 0xad, 0x00, 0xb5, 0x00, 0xc1, 0x00, 0xca, 0x00,\n  0xd7, 0x00, 0xe2, 0x00, 0xef, 0x00, 0xfb, 0x00, 0x03, 0x01, 0x10, 0x01,\n  0x19, 0x01, 0x27, 0x01, 0x2d, 0x01, 0x39, 0x01, 0x42, 0x01, 0x4e, 0x01,\n  0x55, 0x01, 0x61, 0x01, 0x69, 0x01, 0x73, 0x01, 0x7b, 0x01, 0x81, 0x01,\n  0x88, 0x01, 0x8d, 0x01, 0x97, 0x01, 0x9a, 0x01, 0xa5, 0x01, 0xa9, 0x01,\n  0xaf, 0x01, 0xb8, 0x01, 0xbb, 0x01, 0xc4, 0x01, 0xc9, 0x01, 0xd0, 0x01,\n  0xd5, 0x01, 0xd8, 0x01, 0xdf, 0x01, 0xe5, 0x01, 0xea, 0x01, 0xea, 0x01,\n  0xf0, 0x01, 0xf6, 0x01, 0xf7, 0x01, 0xfa, 0x01, 0x01, 0x02, 0x01, 0x02,\n  0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x07, 0x02,\n  0x05, 0x02, 0x07, 0x02, 0x03, 0x02, 0x01, 0x02, 0x03, 0x02, 0xfa, 0x01,\n  0xfa, 0x01, 0xf4, 0x01, 0xed, 0x01, 0xea, 0x01, 0xe8, 0x01, 0xe1, 0x01,\n  0xdb, 0x01, 0xd8, 0x01, 0xd2, 0x01, 0xcd, 0x01, 0xc4, 0x01, 0xc1, 0x01,\n  0xba, 0x01, 0xb7, 0x01, 0xac, 0x01, 0xa6, 0x01, 0xa6, 0x01, 0x9f, 0x01,\n  0x96, 0x01, 0x93, 0x01, 0x8e, 0x01, 0x87, 0x01, 0x84, 0x01, 0x7e, 0x01,\n  0x76, 0x01, 0x72, 0x01, 0x6a, 0x01, 0x66, 0x01, 0x63, 0x01, 0x5a, 0x01,\n  0x51, 0x01, 0x4f, 0x01, 0x43, 0x01, 0x40, 0x01, 0x36, 0x01, 0x34, 0x01,\n  0x2a, 0x01, 0x27, 0x01, 0x21, 0x01, 0x16, 0x01, 0x15, 0x01, 0x0c, 0x01,\n  0x09, 0x01, 0x00, 0x01, 0xfb, 0x00, 0xf2, 0x00, 0xeb, 0x00, 0xe6, 0x00,\n  0xdd, 0x00, 0xd9, 0x00, 0xd3, 0x00, 0xc7, 0x00, 0xc7, 0x00, 0xb9, 0x00,\n  0xb5, 0x00, 0xac, 0x00, 0xa4, 0x00, 0x9d, 0x00, 0x9a, 0x00, 0x8f, 0x00,\n  0x89, 0x00, 0x83, 0x00, 0x77, 0x00, 0x74, 0x00, 0x6b, 0x00, 0x64, 0x00,\n  0x5c, 0x00, 0x55, 0x00, 0x4f, 0x00, 0x46, 0x00, 0x40, 0x00, 0x34, 0x00,\n  0x34, 0x00, 0x29, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x10, 0x00, 0x0b, 0x00,\n  0x02, 0x00, 0xfb, 0xff, 0xf0, 0xff, 0xe9, 0xff, 0xe3, 0xff, 0xd8, 0xff,\n  0xcf, 0xff, 0xc5, 0xff, 0xbd, 0xff, 0xb6, 0xff, 0xab, 0xff, 0x9f, 0xff,\n  0x98, 0xff, 0x8d, 0xff, 0x87, 0xff, 0x7e, 0xff, 0x74, 0xff, 0x69, 0xff,\n  0x60, 0xff, 0x5a, 0xff, 0x50, 0xff, 0x4b, 0xff, 0x41, 0xff, 0x3b, 0xff,\n  0x33, 0xff, 0x2a, 0xff, 0x23, 0xff, 0x1b, 0xff, 0x17, 0xff, 0x0c, 0xff,\n  0x05, 0xff, 0xff, 0xfe, 0xf9, 0xfe, 0xf0, 0xfe, 0xea, 0xfe, 0xe7, 0xfe,\n  0xdf, 0xfe, 0xd8, 0xfe, 0xd2, 0xfe, 0xcf, 0xfe, 0xc6, 0xfe, 0xc0, 0xfe,\n  0xba, 0xfe, 0xb4, 0xfe, 0xb1, 0xfe, 0xa9, 0xfe, 0xa8, 0xfe, 0xa0, 0xfe,\n  0x9d, 0xfe, 0x96, 0xfe, 0x93, 0xfe, 0x93, 0xfe, 0x88, 0xfe, 0x8b, 0xfe,\n  0x85, 0xfe, 0x82, 0xfe, 0x7f, 0xfe, 0x7c, 0xfe, 0x7e, 0xfe, 0x78, 0xfe,\n  0x76, 0xfe, 0x75, 0xfe, 0x75, 0xfe, 0x73, 0xfe, 0x72, 0xfe, 0x70, 0xfe,\n  0x70, 0xfe, 0x72, 0xfe, 0x70, 0xfe, 0x6f, 0xfe, 0x70, 0xfe, 0x70, 0xfe,\n  0x70, 0xfe, 0x70, 0xfe, 0x72, 0xfe, 0x73, 0xfe, 0x72, 0xfe, 0x72, 0xfe,\n  0x75, 0xfe, 0x75, 0xfe, 0x78, 0xfe, 0x72, 0xfe, 0x79, 0xfe, 0x7b, 0xfe,\n  0x79, 0xfe, 0x7c, 0xfe, 0x7b, 0xfe, 0x84, 0xfe, 0x82, 0xfe, 0x85, 0xfe,\n  0x85, 0xfe, 0x88, 0xfe, 0x8a, 0xfe, 0x8b, 0xfe, 0x8d, 0xfe, 0x90, 0xfe,\n  0x93, 0xfe, 0x93, 0xfe, 0x99, 0xfe, 0x99, 0xfe, 0x99, 0xfe, 0x9c, 0xfe,\n  0x9d, 0xfe, 0x9d, 0xfe, 0xa2, 0xfe, 0xa2, 0xfe, 0xa3, 0xfe, 0xa3, 0xfe,\n  0xa6, 0xfe, 0xa6, 0xfe, 0xab, 0xfe, 0xae, 0xfe, 0xae, 0xfe, 0xaf, 0xfe,\n  0xb2, 0xfe, 0xb7, 0xfe, 0xba, 0xfe, 0xc0, 0xfe, 0xc1, 0xfe, 0xc7, 0xfe,\n  0xcc, 0xfe, 0xd0, 0xfe, 0xdb, 0xfe, 0xdf, 0xfe, 0xe8, 0xfe, 0xee, 0xfe,\n  0xf7, 0xfe, 0xff, 0xfe, 0x08, 0xff, 0x12, 0xff, 0x1b, 0xff, 0x26, 0xff,\n  0x2d, 0xff, 0x39, 0xff, 0x42, 0xff, 0x4a, 0xff, 0x54, 0xff, 0x5c, 0xff,\n  0x66, 0xff, 0x71, 0xff, 0x78, 0xff, 0x81, 0xff, 0x8a, 0xff, 0x90, 0xff,\n  0x98, 0xff, 0xa1, 0xff, 0xaa, 0xff, 0xb1, 0xff, 0xb9, 0xff, 0xc0, 0xff,\n  0xc9, 0xff, 0xd2, 0xff, 0xdd, 0xff, 0xe4, 0xff, 0xec, 0xff, 0xf6, 0xff,\n  0x00, 0x00, 0x05, 0x00, 0x14, 0x00, 0x1f, 0x00, 0x29, 0x00, 0x34, 0x00,\n  0x3e, 0x00, 0x4c, 0x00, 0x55, 0x00, 0x5f, 0x00, 0x6e, 0x00, 0x7a, 0x00,\n  0x85, 0x00, 0x8f, 0x00, 0x9b, 0x00, 0xa9, 0x00, 0xb5, 0x00, 0xc1, 0x00,\n  0xcb, 0x00, 0xd9, 0x00, 0xe3, 0x00, 0xeb, 0x00, 0xf8, 0x00, 0x00, 0x01,\n  0x09, 0x01, 0x16, 0x01, 0x1c, 0x01, 0x27, 0x01, 0x33, 0x01, 0x37, 0x01,\n  0x43, 0x01, 0x4e, 0x01, 0x55, 0x01, 0x60, 0x01, 0x6a, 0x01, 0x73, 0x01,\n  0x81, 0x01, 0x87, 0x01, 0x91, 0x01, 0x9a, 0x01, 0xa3, 0x01, 0xaf, 0x01,\n  0xb5, 0x01, 0xc0, 0x01, 0xc4, 0x01, 0xd2, 0x01, 0xd9, 0x01, 0xdf, 0x01,\n  0xe4, 0x01, 0xed, 0x01, 0xf0, 0x01, 0xf3, 0x01, 0xf7, 0x01, 0xfc, 0x01,\n  0xfc, 0x01, 0xfd, 0x01, 0x01, 0x02, 0x01, 0x02, 0xff, 0x01, 0xfc, 0x01,\n  0xfd, 0x01, 0xfa, 0x01, 0xfa, 0x01, 0xf9, 0x01, 0xf6, 0x01, 0xf1, 0x01,\n  0xf0, 0x01, 0xee, 0x01, 0xe7, 0x01, 0xe5, 0x01, 0xde, 0x01, 0xd8, 0x01,\n  0xd6, 0x01, 0xd2, 0x01, 0xc9, 0x01, 0xc3, 0x01, 0xbb, 0x01, 0xb7, 0x01,\n  0xb2, 0x01, 0xac, 0x01, 0xa3, 0x01, 0x9c, 0x01, 0x99, 0x01, 0x90, 0x01,\n  0x88, 0x01, 0x84, 0x01, 0x7f, 0x01, 0x78, 0x01, 0x6f, 0x01, 0x6c, 0x01,\n  0x66, 0x01, 0x5e, 0x01, 0x58, 0x01, 0x52, 0x01, 0x4e, 0x01, 0x45, 0x01,\n  0x40, 0x01, 0x3c, 0x01, 0x34, 0x01, 0x31, 0x01, 0x2b, 0x01, 0x25, 0x01,\n  0x1f, 0x01, 0x19, 0x01, 0x10, 0x01, 0x0d, 0x01, 0x07, 0x01, 0x01, 0x01,\n  0xfa, 0x00, 0xf2, 0x00, 0xec, 0x00, 0xe5, 0x00, 0xe0, 0x00, 0xd6, 0x00,\n  0xd0, 0x00, 0xc8, 0x00, 0xbf, 0x00, 0xb9, 0x00, 0xb0, 0x00, 0xac, 0x00,\n  0xa0, 0x00, 0x9b, 0x00, 0x92, 0x00, 0x89, 0x00, 0x83, 0x00, 0x79, 0x00,\n  0x73, 0x00, 0x6a, 0x00, 0x61, 0x00, 0x5c, 0x00, 0x55, 0x00, 0x47, 0x00,\n  0x41, 0x00, 0x3b, 0x00, 0x35, 0x00, 0x2b, 0x00, 0x22, 0x00, 0x1d, 0x00,\n  0x16, 0x00, 0x10, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf3, 0xff,\n  0xec, 0xff, 0xe9, 0xff, 0xde, 0xff, 0xd7, 0xff, 0xd1, 0xff, 0xc9, 0xff,\n  0xc3, 0xff, 0xba, 0xff, 0xb4, 0xff, 0xa8, 0xff, 0xa1, 0xff, 0x99, 0xff,\n  0x8d, 0xff, 0x86, 0xff, 0x7b, 0xff, 0x72, 0xff, 0x69, 0xff, 0x60, 0xff,\n  0x56, 0xff, 0x4d, 0xff, 0x44, 0xff, 0x39, 0xff, 0x2f, 0xff, 0x27, 0xff,\n  0x1b, 0xff, 0x12, 0xff, 0x08, 0xff, 0x02, 0xff, 0xf6, 0xfe, 0xeb, 0xfe,\n  0xe4, 0xfe, 0xd9, 0xfe, 0xd0, 0xfe, 0xc6, 0xfe, 0xc1, 0xfe, 0xb5, 0xfe,\n  0xae, 0xfe, 0xa5, 0xfe, 0x9d, 0xfe, 0x94, 0xfe, 0x90, 0xfe, 0x88, 0xfe,\n  0x82, 0xfe, 0x7c, 0xfe, 0x76, 0xfe, 0x73, 0xfe, 0x6c, 0xfe, 0x69, 0xfe,\n  0x63, 0xfe, 0x61, 0xfe, 0x5a, 0xfe, 0x58, 0xfe, 0x55, 0xfe, 0x51, 0xfe,\n  0x4f, 0xfe, 0x4e, 0xfe, 0x4b, 0xfe, 0x46, 0xfe, 0x45, 0xfe, 0x43, 0xfe,\n  0x46, 0xfe, 0x3f, 0xfe, 0x42, 0xfe, 0x3f, 0xfe, 0x40, 0xfe, 0x40, 0xfe,\n  0x40, 0xfe, 0x40, 0xfe, 0x40, 0xfe, 0x46, 0xfe, 0x45, 0xfe, 0x46, 0xfe,\n  0x49, 0xfe, 0x49, 0xfe, 0x4e, 0xfe, 0x4f, 0xfe, 0x51, 0xfe, 0x52, 0xfe,\n  0x55, 0xfe, 0x5a, 0xfe, 0x58, 0xfe, 0x60, 0xfe, 0x63, 0xfe, 0x67, 0xfe,\n  0x69, 0xfe, 0x6c, 0xfe, 0x70, 0xfe, 0x73, 0xfe, 0x76, 0xfe, 0x79, 0xfe,\n  0x7c, 0xfe, 0x81, 0xfe, 0x85, 0xfe, 0x88, 0xfe, 0x8d, 0xfe, 0x90, 0xfe,\n  0x93, 0xfe, 0x97, 0xfe, 0x9c, 0xfe, 0x9f, 0xfe, 0xa3, 0xfe, 0xa5, 0xfe,\n  0xac, 0xfe, 0xae, 0xfe, 0xb5, 0xfe, 0xb8, 0xfe, 0xbd, 0xfe, 0xc1, 0xfe,\n  0xc4, 0xfe, 0xcc, 0xfe, 0xd2, 0xfe, 0xd6, 0xfe, 0xdc, 0xfe, 0xea, 0xfe,\n  0xed, 0xfe, 0xf9, 0xfe, 0x00, 0xff, 0x06, 0xff, 0x0f, 0xff, 0x18, 0xff,\n  0x21, 0xff, 0x27, 0xff, 0x33, 0xff, 0x3e, 0xff, 0x45, 0xff, 0x51, 0xff,\n  0x56, 0xff, 0x62, 0xff, 0x69, 0xff, 0x74, 0xff, 0x7d, 0xff, 0x83, 0xff,\n  0x8a, 0xff, 0x93, 0xff, 0x9e, 0xff, 0xa5, 0xff, 0xab, 0xff, 0xb1, 0xff,\n  0xb9, 0xff, 0xbf, 0xff, 0xc5, 0xff, 0xce, 0xff, 0xd4, 0xff, 0xd8, 0xff,\n  0xe0, 0xff, 0xe3, 0xff, 0xea, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x19, 0x00, 0x20, 0x00,\n  0x25, 0x00, 0x2c, 0x00, 0x34, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x47, 0x00,\n  0x4f, 0x00, 0x56, 0x00, 0x5e, 0x00, 0x64, 0x00, 0x6d, 0x00, 0x77, 0x00,\n  0x7c, 0x00, 0x85, 0x00, 0x8e, 0x00, 0x97, 0x00, 0xa0, 0x00, 0xa9, 0x00,\n  0xaf, 0x00, 0xb9, 0x00, 0xc2, 0x00, 0xcb, 0x00, 0xd0, 0x00, 0xdd, 0x00,\n  0xe6, 0x00, 0xec, 0x00, 0xf7, 0x00, 0xfe, 0x00, 0x07, 0x01, 0x12, 0x01,\n  0x19, 0x01, 0x22, 0x01, 0x2d, 0x01, 0x31, 0x01, 0x39, 0x01, 0x3d, 0x01,\n  0x48, 0x01, 0x4f, 0x01, 0x54, 0x01, 0x5a, 0x01, 0x60, 0x01, 0x67, 0x01,\n  0x6c, 0x01, 0x73, 0x01, 0x78, 0x01, 0x7e, 0x01, 0x7f, 0x01, 0x84, 0x01,\n  0x88, 0x01, 0x8b, 0x01, 0x8a, 0x01, 0x8e, 0x01, 0x91, 0x01, 0x93, 0x01,\n  0x93, 0x01, 0x94, 0x01, 0x93, 0x01, 0x96, 0x01, 0x94, 0x01, 0x96, 0x01,\n  0x94, 0x01, 0x93, 0x01, 0x96, 0x01, 0x91, 0x01, 0x8e, 0x01, 0x91, 0x01,\n  0x90, 0x01, 0x8b, 0x01, 0x8b, 0x01, 0x88, 0x01, 0x87, 0x01, 0x8a, 0x01,\n  0x85, 0x01, 0x84, 0x01, 0x84, 0x01, 0x82, 0x01, 0x82, 0x01, 0x7e, 0x01,\n  0x81, 0x01, 0x7c, 0x01, 0x7c, 0x01, 0x7f, 0x01, 0x7e, 0x01, 0x7e, 0x01,\n  0x7c, 0x01, 0x7e, 0x01, 0x7c, 0x01, 0x7f, 0x01, 0x7c, 0x01, 0x81, 0x01,\n  0x82, 0x01, 0x81, 0x01, 0x84, 0x01, 0x87, 0x01, 0x88, 0x01, 0x88, 0x01,\n  0x8a, 0x01, 0x8d, 0x01, 0x8b, 0x01, 0x8a, 0x01, 0x8a, 0x01, 0x8a, 0x01,\n  0x87, 0x01, 0x84, 0x01, 0x84, 0x01, 0x82, 0x01, 0x7b, 0x01, 0x79, 0x01,\n  0x73, 0x01, 0x6d, 0x01, 0x69, 0x01, 0x60, 0x01, 0x5b, 0x01, 0x51, 0x01,\n  0x4b, 0x01, 0x42, 0x01, 0x3a, 0x01, 0x31, 0x01, 0x27, 0x01, 0x21, 0x01,\n  0x16, 0x01, 0x0d, 0x01, 0x04, 0x01, 0xf8, 0x00, 0xf5, 0x00, 0xeb, 0x00,\n  0xe3, 0x00, 0xdf, 0x00, 0xd6, 0x00, 0xd1, 0x00, 0xca, 0x00, 0xc1, 0x00,\n  0xbc, 0x00, 0xb8, 0x00, 0xb2, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa0, 0x00,\n  0x9d, 0x00, 0x92, 0x00, 0x8e, 0x00, 0x86, 0x00, 0x85, 0x00, 0x7c, 0x00,\n  0x76, 0x00, 0x73, 0x00, 0x67, 0x00, 0x65, 0x00, 0x5b, 0x00, 0x56, 0x00,\n  0x4d, 0x00, 0x47, 0x00, 0x43, 0x00, 0x34, 0x00, 0x32, 0x00, 0x25, 0x00,\n  0x1c, 0x00, 0x11, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xec, 0xff,\n  0xe3, 0xff, 0xd8, 0xff, 0xcb, 0xff, 0xc3, 0xff, 0xb9, 0xff, 0xb0, 0xff,\n  0xa2, 0xff, 0x95, 0xff, 0x8c, 0xff, 0x83, 0xff, 0x78, 0xff, 0x6c, 0xff,\n  0x62, 0xff, 0x59, 0xff, 0x4d, 0xff, 0x3f, 0xff, 0x36, 0xff, 0x29, 0xff,\n  0x20, 0xff, 0x14, 0xff, 0x08, 0xff, 0xfc, 0xfe, 0xf4, 0xfe, 0xea, 0xfe,\n  0xde, 0xfe, 0xd8, 0xfe, 0xcc, 0xfe, 0xc7, 0xfe, 0xc1, 0xfe, 0xba, 0xfe,\n  0xb5, 0xfe, 0xae, 0xfe, 0xa8, 0xfe, 0xa5, 0xfe, 0xa0, 0xfe, 0x99, 0xfe,\n  0x96, 0xfe, 0x93, 0xfe, 0x8e, 0xfe, 0x8a, 0xfe, 0x84, 0xfe, 0x82, 0xfe,\n  0x7e, 0xfe, 0x79, 0xfe, 0x76, 0xfe, 0x73, 0xfe, 0x70, 0xfe, 0x6c, 0xfe,\n  0x6a, 0xfe, 0x69, 0xfe, 0x66, 0xfe, 0x64, 0xfe, 0x61, 0xfe, 0x5e, 0xfe,\n  0x5d, 0xfe, 0x5d, 0xfe, 0x5b, 0xfe, 0x5a, 0xfe, 0x57, 0xfe, 0x54, 0xfe,\n  0x54, 0xfe, 0x52, 0xfe, 0x4e, 0xfe, 0x4c, 0xfe, 0x4c, 0xfe, 0x4c, 0xfe,\n  0x4c, 0xfe, 0x48, 0xfe, 0x49, 0xfe, 0x46, 0xfe, 0x45, 0xfe, 0x45, 0xfe,\n  0x45, 0xfe, 0x45, 0xfe, 0x43, 0xfe, 0x43, 0xfe, 0x43, 0xfe, 0x46, 0xfe,\n  0x46, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0x48, 0xfe, 0x4b, 0xfe, 0x4b, 0xfe,\n  0x4e, 0xfe, 0x4f, 0xfe, 0x51, 0xfe, 0x52, 0xfe, 0x55, 0xfe, 0x58, 0xfe,\n  0x5d, 0xfe, 0x5e, 0xfe, 0x64, 0xfe, 0x67, 0xfe, 0x6c, 0xfe, 0x72, 0xfe,\n  0x76, 0xfe, 0x7e, 0xfe, 0x84, 0xfe, 0x88, 0xfe, 0x90, 0xfe, 0x9c, 0xfe,\n  0xa2, 0xfe, 0xa8, 0xfe, 0xb4, 0xfe, 0xbd, 0xfe, 0xc4, 0xfe, 0xd3, 0xfe,\n  0xdb, 0xfe, 0xe8, 0xfe, 0xf3, 0xfe, 0xff, 0xfe, 0x0f, 0xff, 0x1a, 0xff,\n  0x2a, 0xff, 0x35, 0xff, 0x45, 0xff, 0x56, 0xff, 0x63, 0xff, 0x71, 0xff,\n  0x80, 0xff, 0x90, 0xff, 0x9f, 0xff, 0xae, 0xff, 0xbf, 0xff, 0xcb, 0xff,\n  0xdb, 0xff, 0xe9, 0xff, 0xf8, 0xff, 0x04, 0x00, 0x11, 0x00, 0x23, 0x00,\n  0x2f, 0x00, 0x3e, 0x00, 0x4a, 0x00, 0x56, 0x00, 0x64, 0x00, 0x74, 0x00,\n  0x80, 0x00, 0x8f, 0x00, 0x9b, 0x00, 0xaa, 0x00, 0xb3, 0x00, 0xc1, 0x00,\n  0xd3, 0x00, 0xdc, 0x00, 0xe9, 0x00, 0xf4, 0x00, 0xfb, 0x00, 0x0c, 0x01,\n  0x13, 0x01, 0x21, 0x01, 0x28, 0x01, 0x2e, 0x01, 0x33, 0x01, 0x39, 0x01,\n  0x43, 0x01, 0x45, 0x01, 0x4e, 0x01, 0x4e, 0x01, 0x54, 0x01, 0x55, 0x01,\n  0x57, 0x01, 0x57, 0x01, 0x5b, 0x01, 0x58, 0x01, 0x5d, 0x01, 0x5a, 0x01,\n  0x5b, 0x01, 0x5a, 0x01, 0x5a, 0x01, 0x5a, 0x01, 0x58, 0x01, 0x57, 0x01,\n  0x55, 0x01, 0x55, 0x01, 0x51, 0x01, 0x51, 0x01, 0x4e, 0x01, 0x4b, 0x01,\n  0x49, 0x01, 0x45, 0x01, 0x42, 0x01, 0x3d, 0x01, 0x3a, 0x01, 0x36, 0x01,\n  0x30, 0x01, 0x2d, 0x01, 0x25, 0x01, 0x1f, 0x01, 0x1b, 0x01, 0x16, 0x01,\n  0x10, 0x01, 0x0a, 0x01, 0x03, 0x01, 0x00, 0x01, 0xf7, 0x00, 0xf5, 0x00,\n  0xee, 0x00, 0xe9, 0x00, 0xe3, 0x00, 0xdf, 0x00, 0xd9, 0x00, 0xd4, 0x00,\n  0xcd, 0x00, 0xcb, 0x00, 0xc8, 0x00, 0xc1, 0x00, 0xbf, 0x00, 0xbb, 0x00,\n  0xb6, 0x00, 0xb2, 0x00, 0xb0, 0x00, 0xac, 0x00, 0xa7, 0x00, 0xa6, 0x00,\n  0xa1, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0x9d, 0x00, 0x9d, 0x00, 0x9a, 0x00,\n  0x98, 0x00, 0x9a, 0x00, 0x94, 0x00, 0x97, 0x00, 0x97, 0x00, 0x98, 0x00,\n  0x98, 0x00, 0x98, 0x00, 0x9b, 0x00, 0x9a, 0x00, 0x9d, 0x00, 0x9b, 0x00,\n  0xa0, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0xa6, 0x00, 0xa4, 0x00, 0xa3, 0x00,\n  0xa6, 0x00, 0xa4, 0x00, 0xa6, 0x00, 0xa3, 0x00, 0xa3, 0x00, 0x9d, 0x00,\n  0xa1, 0x00, 0x9b, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0x95, 0x00, 0x92, 0x00,\n  0x92, 0x00, 0x8e, 0x00, 0x91, 0x00, 0x8c, 0x00, 0x85, 0x00, 0x89, 0x00,\n  0x83, 0x00, 0x83, 0x00, 0x7d, 0x00, 0x7c, 0x00, 0x7a, 0x00, 0x79, 0x00,\n  0x74, 0x00, 0x73, 0x00, 0x6e, 0x00, 0x6e, 0x00, 0x6b, 0x00, 0x68, 0x00,\n  0x67, 0x00, 0x67, 0x00, 0x61, 0x00, 0x5f, 0x00, 0x5f, 0x00, 0x59, 0x00,\n  0x59, 0x00, 0x55, 0x00, 0x50, 0x00, 0x50, 0x00, 0x4d, 0x00, 0x4c, 0x00,\n  0x47, 0x00, 0x46, 0x00, 0x41, 0x00, 0x3d, 0x00, 0x37, 0x00, 0x38, 0x00,\n  0x31, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x23, 0x00, 0x1d, 0x00,\n  0x1f, 0x00, 0x17, 0x00, 0x16, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x0b, 0x00,\n  0x0a, 0x00, 0x04, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf2, 0xff,\n  0xef, 0xff, 0xed, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xde, 0xff,\n  0xdd, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xc8, 0xff,\n  0xbf, 0xff, 0xbf, 0xff, 0xb4, 0xff, 0xb1, 0xff, 0xa7, 0xff, 0xa1, 0xff,\n  0x99, 0xff, 0x8c, 0xff, 0x87, 0xff, 0x7e, 0xff, 0x74, 0xff, 0x6e, 0xff,\n  0x63, 0xff, 0x5a, 0xff, 0x51, 0xff, 0x45, 0xff, 0x3e, 0xff, 0x32, 0xff,\n  0x29, 0xff, 0x1e, 0xff, 0x12, 0xff, 0x09, 0xff, 0xfd, 0xfe, 0xf6, 0xfe,\n  0xea, 0xfe, 0xe1, 0xfe, 0xd9, 0xfe, 0xd2, 0xfe, 0xca, 0xfe, 0xc3, 0xfe,\n  0xbd, 0xfe, 0xb4, 0xfe, 0xb2, 0xfe, 0xab, 0xfe, 0xa6, 0xfe, 0xa3, 0xfe,\n  0x9c, 0xfe, 0x9c, 0xfe, 0x99, 0xfe, 0x93, 0xfe, 0x8e, 0xfe, 0x8d, 0xfe,\n  0x87, 0xfe, 0x87, 0xfe, 0x82, 0xfe, 0x7f, 0xfe, 0x7b, 0xfe, 0x79, 0xfe,\n  0x79, 0xfe, 0x73, 0xfe, 0x70, 0xfe, 0x72, 0xfe, 0x6f, 0xfe, 0x6f, 0xfe,\n  0x6d, 0xfe, 0x6a, 0xfe, 0x6a, 0xfe, 0x70, 0xfe, 0x6c, 0xfe, 0x6f, 0xfe,\n  0x72, 0xfe, 0x73, 0xfe, 0x73, 0xfe, 0x75, 0xfe, 0x7b, 0xfe, 0x7e, 0xfe,\n  0x81, 0xfe, 0x82, 0xfe, 0x8a, 0xfe, 0x8a, 0xfe, 0x91, 0xfe, 0x93, 0xfe,\n  0x99, 0xfe, 0x9c, 0xfe, 0xa2, 0xfe, 0xa6, 0xfe, 0xa9, 0xfe, 0xaf, 0xfe,\n  0xb5, 0xfe, 0xbe, 0xfe, 0xc1, 0xfe, 0xc9, 0xfe, 0xd0, 0xfe, 0xd3, 0xfe,\n  0xd9, 0xfe, 0xe1, 0xfe, 0xe5, 0xfe, 0xed, 0xfe, 0xf1, 0xfe, 0xf7, 0xfe,\n  0xff, 0xfe, 0x06, 0xff, 0x0f, 0xff, 0x12, 0xff, 0x1a, 0xff, 0x1e, 0xff,\n  0x27, 0xff, 0x2a, 0xff, 0x33, 0xff, 0x3b, 0xff, 0x41, 0xff, 0x4a, 0xff,\n  0x51, 0xff, 0x5a, 0xff, 0x5f, 0xff, 0x6e, 0xff, 0x72, 0xff, 0x7b, 0xff,\n  0x83, 0xff, 0x8d, 0xff, 0x98, 0xff, 0x9e, 0xff, 0xa7, 0xff, 0xae, 0xff,\n  0xb6, 0xff, 0xbd, 0xff, 0xc8, 0xff, 0xcf, 0xff, 0xd7, 0xff, 0xdd, 0xff,\n  0xe4, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x0a, 0x00,\n  0x10, 0x00, 0x19, 0x00, 0x20, 0x00, 0x26, 0x00, 0x2e, 0x00, 0x35, 0x00,\n  0x3d, 0x00, 0x44, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x5b, 0x00, 0x5e, 0x00,\n  0x67, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x7a, 0x00, 0x80, 0x00, 0x88, 0x00,\n  0x8c, 0x00, 0x95, 0x00, 0x97, 0x00, 0x9e, 0x00, 0xa3, 0x00, 0xa9, 0x00,\n  0xac, 0x00, 0xb2, 0x00, 0xb8, 0x00, 0xbb, 0x00, 0xc2, 0x00, 0xc7, 0x00,\n  0xce, 0x00, 0xd0, 0x00, 0xd9, 0x00, 0xdc, 0x00, 0xe2, 0x00, 0xe8, 0x00,\n  0xec, 0x00, 0xef, 0x00, 0xf5, 0x00, 0xfb, 0x00, 0x00, 0x01, 0x06, 0x01,\n  0x0a, 0x01, 0x10, 0x01, 0x15, 0x01, 0x18, 0x01, 0x1b, 0x01, 0x22, 0x01,\n  0x22, 0x01, 0x28, 0x01, 0x30, 0x01, 0x33, 0x01, 0x39, 0x01, 0x3a, 0x01,\n  0x3f, 0x01, 0x43, 0x01, 0x48, 0x01, 0x4c, 0x01, 0x4f, 0x01, 0x57, 0x01,\n  0x5a, 0x01, 0x5d, 0x01, 0x63, 0x01, 0x66, 0x01, 0x66, 0x01, 0x69, 0x01,\n  0x6d, 0x01, 0x6f, 0x01, 0x73, 0x01, 0x75, 0x01, 0x78, 0x01, 0x7c, 0x01,\n  0x7c, 0x01, 0x7e, 0x01, 0x81, 0x01, 0x81, 0x01, 0x81, 0x01, 0x88, 0x01,\n  0x82, 0x01, 0x85, 0x01, 0x85, 0x01, 0x8a, 0x01, 0x85, 0x01, 0x85, 0x01,\n  0x87, 0x01, 0x84, 0x01, 0x87, 0x01, 0x84, 0x01, 0x85, 0x01, 0x81, 0x01,\n  0x7e, 0x01, 0x7c, 0x01, 0x78, 0x01, 0x76, 0x01, 0x73, 0x01, 0x6f, 0x01,\n  0x6d, 0x01, 0x67, 0x01, 0x63, 0x01, 0x61, 0x01, 0x5a, 0x01, 0x57, 0x01,\n  0x4e, 0x01, 0x49, 0x01, 0x42, 0x01, 0x3c, 0x01, 0x39, 0x01, 0x33, 0x01,\n  0x2b, 0x01, 0x24, 0x01, 0x1b, 0x01, 0x18, 0x01, 0x10, 0x01, 0x0a, 0x01,\n  0xfe, 0x00, 0xf7, 0x00, 0xf5, 0x00, 0xe6, 0x00, 0xe3, 0x00, 0xda, 0x00,\n  0xd3, 0x00, 0xcd, 0x00, 0xc2, 0x00, 0xbb, 0x00, 0xb2, 0x00, 0xb0, 0x00,\n  0xa7, 0x00, 0xa0, 0x00, 0x9a, 0x00, 0x91, 0x00, 0x91, 0x00, 0x88, 0x00,\n  0x80, 0x00, 0x7f, 0x00, 0x76, 0x00, 0x76, 0x00, 0x6a, 0x00, 0x67, 0x00,\n  0x62, 0x00, 0x59, 0x00, 0x55, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x40, 0x00,\n  0x3e, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x2b, 0x00, 0x1f, 0x00, 0x1c, 0x00,\n  0x0d, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf5, 0xff, 0xea, 0xff,\n  0xe6, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xcc, 0xff, 0xc6, 0xff, 0xc0, 0xff,\n  0xb7, 0xff, 0xb1, 0xff, 0xaa, 0xff, 0xa5, 0xff, 0x9e, 0xff, 0x92, 0xff,\n  0x90, 0xff, 0x87, 0xff, 0x81, 0xff, 0x77, 0xff, 0x71, 0xff, 0x6c, 0xff,\n  0x65, 0xff, 0x5d, 0xff, 0x56, 0xff, 0x53, 0xff, 0x47, 0xff, 0x45, 0xff,\n  0x42, 0xff, 0x38, 0xff, 0x36, 0xff, 0x2d, 0xff, 0x2c, 0xff, 0x24, 0xff,\n  0x23, 0xff, 0x20, 0xff, 0x18, 0xff, 0x1b, 0xff, 0x15, 0xff, 0x14, 0xff,\n  0x0e, 0xff, 0x0e, 0xff, 0x0c, 0xff, 0x08, 0xff, 0x06, 0xff, 0xfd, 0xfe,\n  0xff, 0xfe, 0xfa, 0xfe, 0xf7, 0xfe, 0xf4, 0xfe, 0xf3, 0xfe, 0xed, 0xfe,\n  0xe8, 0xfe, 0xe7, 0xfe, 0xe2, 0xfe, 0xdf, 0xfe, 0xdb, 0xfe, 0xd8, 0xfe,\n  0xd5, 0xfe, 0xcf, 0xfe, 0xcf, 0xfe, 0xca, 0xfe, 0xc7, 0xfe, 0xc1, 0xfe,\n  0xc0, 0xfe, 0xbd, 0xfe, 0xba, 0xfe, 0xb8, 0xfe, 0xb2, 0xfe, 0xb4, 0xfe,\n  0xaf, 0xfe, 0xb1, 0xfe, 0xae, 0xfe, 0xae, 0xfe, 0xae, 0xfe, 0xaf, 0xfe,\n  0xae, 0xfe, 0xae, 0xfe, 0xaf, 0xfe, 0xac, 0xfe, 0xaf, 0xfe, 0xb2, 0xfe,\n  0xb5, 0xfe, 0xb2, 0xfe, 0xba, 0xfe, 0xb8, 0xfe, 0xbd, 0xfe, 0xbe, 0xfe,\n  0xc1, 0xfe, 0xc4, 0xfe, 0xc6, 0xfe, 0xcc, 0xfe, 0xca, 0xfe, 0xcf, 0xfe,\n  0xd2, 0xfe, 0xd5, 0xfe, 0xd9, 0xfe, 0xdc, 0xfe, 0xde, 0xfe, 0xe4, 0xfe,\n  0xea, 0xfe, 0xeb, 0xfe, 0xf1, 0xfe, 0xf3, 0xfe, 0xf9, 0xfe, 0xfc, 0xfe,\n  0xff, 0xfe, 0x06, 0xff, 0x0b, 0xff, 0x0f, 0xff, 0x17, 0xff, 0x1d, 0xff,\n  0x1e, 0xff, 0x27, 0xff, 0x2c, 0xff, 0x32, 0xff, 0x39, 0xff, 0x3e, 0xff,\n  0x41, 0xff, 0x4b, 0xff, 0x50, 0xff, 0x57, 0xff, 0x5d, 0xff, 0x5f, 0xff,\n  0x68, 0xff, 0x6c, 0xff, 0x74, 0xff, 0x78, 0xff, 0x7b, 0xff, 0x80, 0xff,\n  0x86, 0xff, 0x8c, 0xff, 0x90, 0xff, 0x96, 0xff, 0x9b, 0xff, 0xa1, 0xff,\n  0xa4, 0xff, 0xa8, 0xff, 0xad, 0xff, 0xb1, 0xff, 0xb9, 0xff, 0xbc, 0xff,\n  0xbf, 0xff, 0xc5, 0xff, 0xc9, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xd7, 0xff,\n  0xde, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf5, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x1a, 0x00,\n  0x20, 0x00, 0x26, 0x00, 0x2c, 0x00, 0x34, 0x00, 0x3b, 0x00, 0x43, 0x00,\n  0x4a, 0x00, 0x52, 0x00, 0x59, 0x00, 0x5f, 0x00, 0x68, 0x00, 0x6e, 0x00,\n  0x79, 0x00, 0x7c, 0x00, 0x85, 0x00, 0x8e, 0x00, 0x92, 0x00, 0x9a, 0x00,\n  0xa6, 0x00, 0xaa, 0x00, 0xaf, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xc5, 0x00,\n  0xca, 0x00, 0xd1, 0x00, 0xd9, 0x00, 0xdc, 0x00, 0xe3, 0x00, 0xe6, 0x00,\n  0xef, 0x00, 0xf5, 0x00, 0xfa, 0x00, 0x01, 0x01, 0x07, 0x01, 0x0a, 0x01,\n  0x10, 0x01, 0x16, 0x01, 0x19, 0x01, 0x24, 0x01, 0x27, 0x01, 0x2a, 0x01,\n  0x31, 0x01, 0x36, 0x01, 0x39, 0x01, 0x3f, 0x01, 0x40, 0x01, 0x43, 0x01,\n  0x48, 0x01, 0x49, 0x01, 0x4b, 0x01, 0x4b, 0x01, 0x4f, 0x01, 0x4c, 0x01,\n  0x4c, 0x01, 0x49, 0x01, 0x49, 0x01, 0x45, 0x01, 0x42, 0x01, 0x3f, 0x01,\n  0x39, 0x01, 0x37, 0x01, 0x31, 0x01, 0x2e, 0x01, 0x28, 0x01, 0x24, 0x01,\n  0x22, 0x01, 0x1e, 0x01, 0x18, 0x01, 0x13, 0x01, 0x10, 0x01, 0x0c, 0x01,\n  0x09, 0x01, 0x03, 0x01, 0x01, 0x01, 0xfe, 0x00, 0xfa, 0x00, 0xf5, 0x00,\n  0xf2, 0x00, 0xee, 0x00, 0xec, 0x00, 0xeb, 0x00, 0xe8, 0x00, 0xe2, 0x00,\n  0xe0, 0x00, 0xdf, 0x00, 0xd9, 0x00, 0xd9, 0x00, 0xd3, 0x00, 0xd4, 0x00,\n  0xd0, 0x00, 0xcb, 0x00, 0xd0, 0x00, 0xc8, 0x00, 0xc8, 0x00, 0xca, 0x00,\n  0xc7, 0x00, 0xc2, 0x00, 0xc4, 0x00, 0xc4, 0x00, 0xbc, 0x00, 0xc1, 0x00,\n  0xbb, 0x00, 0xbb, 0x00, 0xbb, 0x00, 0xb8, 0x00, 0xb5, 0x00, 0xb0, 0x00,\n  0xb2, 0x00, 0xaa, 0x00, 0xa9, 0x00, 0xa6, 0x00, 0xa0, 0x00, 0xa0, 0x00,\n  0x9d, 0x00, 0x98, 0x00, 0x95, 0x00, 0x92, 0x00, 0x8f, 0x00, 0x8c, 0x00,\n  0x89, 0x00, 0x86, 0x00, 0x80, 0x00, 0x80, 0x00, 0x7f, 0x00, 0x79, 0x00,\n  0x76, 0x00, 0x73, 0x00, 0x6d, 0x00, 0x6a, 0x00, 0x65, 0x00, 0x5b, 0x00,\n  0x5b, 0x00, 0x53, 0x00, 0x4d, 0x00, 0x47, 0x00, 0x41, 0x00, 0x3d, 0x00,\n  0x34, 0x00, 0x2e, 0x00, 0x28, 0x00, 0x20, 0x00, 0x17, 0x00, 0x0e, 0x00,\n  0x08, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xe4, 0xff,\n  0xdd, 0xff, 0xd7, 0xff, 0xce, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xbc, 0xff,\n  0xb6, 0xff, 0xad, 0xff, 0xaa, 0xff, 0xa4, 0xff, 0x9e, 0xff, 0x9b, 0xff,\n  0x95, 0xff, 0x90, 0xff, 0x8a, 0xff, 0x87, 0xff, 0x83, 0xff, 0x80, 0xff,\n  0x7d, 0xff, 0x77, 0xff, 0x74, 0xff, 0x72, 0xff, 0x71, 0xff, 0x6c, 0xff,\n  0x69, 0xff, 0x68, 0xff, 0x66, 0xff, 0x62, 0xff, 0x60, 0xff, 0x5d, 0xff,\n  0x5c, 0xff, 0x57, 0xff, 0x53, 0xff, 0x50, 0xff, 0x4d, 0xff, 0x4a, 0xff,\n  0x45, 0xff, 0x41, 0xff, 0x3e, 0xff, 0x36, 0xff, 0x33, 0xff, 0x2f, 0xff,\n  0x2c, 0xff, 0x27, 0xff, 0x20, 0xff, 0x1b, 0xff, 0x15, 0xff, 0x15, 0xff,\n  0x0f, 0xff, 0x0b, 0xff, 0x08, 0xff, 0x02, 0xff, 0x02, 0xff, 0xfa, 0xfe,\n  0xf9, 0xfe, 0xf6, 0xfe, 0xf1, 0xfe, 0xf0, 0xfe, 0xed, 0xfe, 0xe7, 0xfe,\n  0xe5, 0xfe, 0xde, 0xfe, 0xdc, 0xfe, 0xd8, 0xfe, 0xd5, 0xfe, 0xd2, 0xfe,\n  0xcd, 0xfe, 0xcc, 0xfe, 0xc9, 0xfe, 0xc3, 0xfe, 0xc3, 0xfe, 0xc1, 0xfe,\n  0xbb, 0xfe, 0xbb, 0xfe, 0xb5, 0xfe, 0xb5, 0xfe, 0xb1, 0xfe, 0xb1, 0xfe,\n  0xb1, 0xfe, 0xac, 0xfe, 0xae, 0xfe, 0xae, 0xfe, 0xae, 0xfe, 0xab, 0xfe,\n  0xae, 0xfe, 0xaf, 0xfe, 0xb1, 0xfe, 0xb1, 0xfe, 0xb4, 0xfe, 0xb7, 0xfe,\n  0xbb, 0xfe, 0xbd, 0xfe, 0xc1, 0xfe, 0xca, 0xfe, 0xcd, 0xfe, 0xd2, 0xfe,\n  0xd8, 0xfe, 0xdb, 0xfe, 0xe2, 0xfe, 0xe8, 0xfe, 0xee, 0xfe, 0xf7, 0xfe,\n  0xfa, 0xfe, 0xff, 0xfe, 0x09, 0xff, 0x0c, 0xff, 0x12, 0xff, 0x1a, 0xff,\n  0x1e, 0xff, 0x23, 0xff, 0x2d, 0xff, 0x2f, 0xff, 0x35, 0xff, 0x3f, 0xff,\n  0x44, 0xff, 0x4a, 0xff, 0x51, 0xff, 0x57, 0xff, 0x5f, 0xff, 0x65, 0xff,\n  0x6c, 0xff, 0x72, 0xff, 0x78, 0xff, 0x80, 0xff, 0x84, 0xff, 0x8c, 0xff,\n  0x93, 0xff, 0x98, 0xff, 0x9e, 0xff, 0xa4, 0xff, 0xab, 0xff, 0xb1, 0xff,\n  0xb7, 0xff, 0xbd, 0xff, 0xc0, 0xff, 0xc9, 0xff, 0xcc, 0xff, 0xd4, 0xff,\n  0xdb, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x13, 0x00, 0x1c, 0x00, 0x20, 0x00,\n  0x2b, 0x00, 0x2e, 0x00, 0x34, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x4c, 0x00,\n  0x50, 0x00, 0x53, 0x00, 0x5c, 0x00, 0x62, 0x00, 0x6b, 0x00, 0x6e, 0x00,\n  0x73, 0x00, 0x7a, 0x00, 0x80, 0x00, 0x86, 0x00, 0x8b, 0x00, 0x91, 0x00,\n  0x98, 0x00, 0x9b, 0x00, 0xa6, 0x00, 0xad, 0x00, 0xb2, 0x00, 0xbc, 0x00,\n  0xc2, 0x00, 0xc7, 0x00, 0xce, 0x00, 0xd3, 0x00, 0xd9, 0x00, 0xe0, 0x00,\n  0xe8, 0x00, 0xec, 0x00, 0xf2, 0x00, 0xf7, 0x00, 0xfe, 0x00, 0x01, 0x01,\n  0x07, 0x01, 0x0d, 0x01, 0x13, 0x01, 0x16, 0x01, 0x1b, 0x01, 0x1e, 0x01,\n  0x25, 0x01, 0x27, 0x01, 0x2a, 0x01, 0x2e, 0x01, 0x30, 0x01, 0x34, 0x01,\n  0x36, 0x01, 0x37, 0x01, 0x3a, 0x01, 0x3d, 0x01, 0x3a, 0x01, 0x3f, 0x01,\n  0x40, 0x01, 0x3f, 0x01, 0x3f, 0x01, 0x3f, 0x01, 0x40, 0x01, 0x3d, 0x01,\n  0x3d, 0x01, 0x3d, 0x01, 0x3c, 0x01, 0x39, 0x01, 0x36, 0x01, 0x37, 0x01,\n  0x34, 0x01, 0x34, 0x01, 0x31, 0x01, 0x2e, 0x01, 0x2b, 0x01, 0x27, 0x01,\n  0x28, 0x01, 0x1f, 0x01, 0x21, 0x01, 0x19, 0x01, 0x18, 0x01, 0x10, 0x01,\n  0x10, 0x01, 0x04, 0x01, 0x03, 0x01, 0xfb, 0x00, 0xf7, 0x00, 0xf2, 0x00,\n  0xe8, 0x00, 0xe6, 0x00, 0xdd, 0x00, 0xdd, 0x00, 0xd3, 0x00, 0xd3, 0x00,\n  0xcb, 0x00, 0xc5, 0x00, 0xc4, 0x00, 0xbe, 0x00, 0xbc, 0x00, 0xb5, 0x00,\n  0xb5, 0x00, 0xb0, 0x00, 0xaf, 0x00, 0xad, 0x00, 0xa9, 0x00, 0xa4, 0x00,\n  0xa4, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0x98, 0x00, 0x9a, 0x00, 0x97, 0x00,\n  0x91, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8c, 0x00, 0x88, 0x00, 0x88, 0x00,\n  0x85, 0x00, 0x82, 0x00, 0x80, 0x00, 0x7c, 0x00, 0x7a, 0x00, 0x7a, 0x00,\n  0x76, 0x00, 0x74, 0x00, 0x73, 0x00, 0x71, 0x00, 0x6d, 0x00, 0x6a, 0x00,\n  0x6a, 0x00, 0x68, 0x00, 0x64, 0x00, 0x5e, 0x00, 0x5f, 0x00, 0x59, 0x00,\n  0x56, 0x00, 0x52, 0x00, 0x4f, 0x00, 0x4c, 0x00, 0x44, 0x00, 0x40, 0x00,\n  0x3b, 0x00, 0x38, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x29, 0x00, 0x25, 0x00,\n  0x1f, 0x00, 0x19, 0x00, 0x16, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xed, 0xff,\n  0xea, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xd4, 0xff,\n  0xce, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xc2, 0xff, 0xb9, 0xff, 0xb4, 0xff,\n  0xb1, 0xff, 0xaa, 0xff, 0xa7, 0xff, 0xa2, 0xff, 0x9c, 0xff, 0x98, 0xff,\n  0x92, 0xff, 0x8f, 0xff, 0x8a, 0xff, 0x84, 0xff, 0x84, 0xff, 0x80, 0xff,\n  0x7d, 0xff, 0x78, 0xff, 0x78, 0xff, 0x74, 0xff, 0x6f, 0xff, 0x6f, 0xff,\n  0x6c, 0xff, 0x66, 0xff, 0x65, 0xff, 0x5f, 0xff, 0x5d, 0xff, 0x57, 0xff,\n  0x51, 0xff, 0x50, 0xff, 0x47, 0xff, 0x45, 0xff, 0x3f, 0xff, 0x39, 0xff,\n  0x36, 0xff, 0x32, 0xff, 0x2d, 0xff, 0x27, 0xff, 0x21, 0xff, 0x20, 0xff,\n  0x1a, 0xff, 0x17, 0xff, 0x12, 0xff, 0x11, 0xff, 0x08, 0xff, 0x08, 0xff,\n  0x03, 0xff, 0xfc, 0xfe, 0xfd, 0xfe, 0xf9, 0xfe, 0xf7, 0xfe, 0xf1, 0xfe,\n  0xf1, 0xfe, 0xf0, 0xfe, 0xeb, 0xfe, 0xed, 0xfe, 0xe7, 0xfe, 0xe7, 0xfe,\n  0xe4, 0xfe, 0xe8, 0xfe, 0xe7, 0xfe, 0xe4, 0xfe, 0xe7, 0xfe, 0xe8, 0xfe,\n  0xeb, 0xfe, 0xeb, 0xfe, 0xf0, 0xfe, 0xf0, 0xfe, 0xf4, 0xfe, 0xf6, 0xfe,\n  0xfa, 0xfe, 0xfd, 0xfe, 0x02, 0xff, 0x05, 0xff, 0x08, 0xff, 0x0c, 0xff,\n  0x0e, 0xff, 0x12, 0xff, 0x15, 0xff, 0x18, 0xff, 0x1b, 0xff, 0x20, 0xff,\n  0x23, 0xff, 0x27, 0xff, 0x2a, 0xff, 0x2d, 0xff, 0x2c, 0xff, 0x33, 0xff,\n  0x38, 0xff, 0x3b, 0xff, 0x41, 0xff, 0x42, 0xff, 0x45, 0xff, 0x4a, 0xff,\n  0x4b, 0xff, 0x51, 0xff, 0x56, 0xff, 0x59, 0xff, 0x5c, 0xff, 0x62, 0xff,\n  0x66, 0xff, 0x69, 0xff, 0x6e, 0xff, 0x72, 0xff, 0x77, 0xff, 0x7d, 0xff,\n  0x80, 0xff, 0x86, 0xff, 0x8a, 0xff, 0x8d, 0xff, 0x90, 0xff, 0x96, 0xff,\n  0x96, 0xff, 0x9b, 0xff, 0x9c, 0xff, 0x9c, 0xff, 0xa1, 0xff, 0xa2, 0xff,\n  0xa1, 0xff, 0xa4, 0xff, 0xa2, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa4, 0xff,\n  0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa2, 0xff,\n  0xa8, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xad, 0xff, 0xad, 0xff,\n  0xb0, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xbc, 0xff, 0xbd, 0xff,\n  0xc2, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xcf, 0xff, 0xd7, 0xff,\n  0xd7, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xf3, 0xff,\n  0xf8, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x10, 0x00,\n  0x17, 0x00, 0x19, 0x00, 0x23, 0x00, 0x26, 0x00, 0x2f, 0x00, 0x31, 0x00,\n  0x38, 0x00, 0x40, 0x00, 0x44, 0x00, 0x49, 0x00, 0x50, 0x00, 0x55, 0x00,\n  0x59, 0x00, 0x64, 0x00, 0x67, 0x00, 0x70, 0x00, 0x73, 0x00, 0x79, 0x00,\n  0x7f, 0x00, 0x85, 0x00, 0x8b, 0x00, 0x8e, 0x00, 0x95, 0x00, 0x9a, 0x00,\n  0xa1, 0x00, 0xa6, 0x00, 0xaa, 0x00, 0xac, 0x00, 0xb3, 0x00, 0xb9, 0x00,\n  0xbb, 0x00, 0xc1, 0x00, 0xbf, 0x00, 0xc8, 0x00, 0xca, 0x00, 0xcb, 0x00,\n  0xd3, 0x00, 0xd4, 0x00, 0xd7, 0x00, 0xd9, 0x00, 0xdd, 0x00, 0xdd, 0x00,\n  0xe5, 0x00, 0xe2, 0x00, 0xe6, 0x00, 0xe8, 0x00, 0xe8, 0x00, 0xeb, 0x00,\n  0xec, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xee, 0x00, 0xeb, 0x00, 0xef, 0x00,\n  0xeb, 0x00, 0xee, 0x00, 0xeb, 0x00, 0xeb, 0x00, 0xec, 0x00, 0xe8, 0x00,\n  0xe9, 0x00, 0xe3, 0x00, 0xe6, 0x00, 0xe3, 0x00, 0xe2, 0x00, 0xdf, 0x00,\n  0xe0, 0x00, 0xdc, 0x00, 0xda, 0x00, 0xd6, 0x00, 0xd3, 0x00, 0xd3, 0x00,\n  0xcb, 0x00, 0xcb, 0x00, 0xca, 0x00, 0xc7, 0x00, 0xc4, 0x00, 0xc2, 0x00,\n  0xc1, 0x00, 0xb9, 0x00, 0xbc, 0x00, 0xb6, 0x00, 0xb2, 0x00, 0xb3, 0x00,\n  0xb0, 0x00, 0xac, 0x00, 0xa7, 0x00, 0xaa, 0x00, 0xa3, 0x00, 0xa4, 0x00,\n  0xa1, 0x00, 0x9d, 0x00, 0x9b, 0x00, 0x9a, 0x00, 0x98, 0x00, 0x94, 0x00,\n  0x94, 0x00, 0x91, 0x00, 0x8f, 0x00, 0x8b, 0x00, 0x8c, 0x00, 0x88, 0x00,\n  0x86, 0x00, 0x85, 0x00, 0x82, 0x00, 0x85, 0x00, 0x80, 0x00, 0x82, 0x00,\n  0x7c, 0x00, 0x7c, 0x00, 0x7f, 0x00, 0x77, 0x00, 0x76, 0x00, 0x77, 0x00,\n  0x71, 0x00, 0x71, 0x00, 0x6d, 0x00, 0x6b, 0x00, 0x68, 0x00, 0x65, 0x00,\n  0x62, 0x00, 0x5c, 0x00, 0x5c, 0x00, 0x58, 0x00, 0x52, 0x00, 0x52, 0x00,\n  0x49, 0x00, 0x49, 0x00, 0x41, 0x00, 0x40, 0x00, 0x3b, 0x00, 0x37, 0x00,\n  0x31, 0x00, 0x2e, 0x00, 0x26, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x17, 0x00,\n  0x13, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xf6, 0xff,\n  0xf0, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xd4, 0xff,\n  0xcc, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xba, 0xff, 0xb3, 0xff, 0xb3, 0xff,\n  0xa5, 0xff, 0xa5, 0xff, 0x9c, 0xff, 0x98, 0xff, 0x93, 0xff, 0x8a, 0xff,\n  0x89, 0xff, 0x83, 0xff, 0x7e, 0xff, 0x78, 0xff, 0x77, 0xff, 0x71, 0xff,\n  0x6e, 0xff, 0x6c, 0xff, 0x62, 0xff, 0x63, 0xff, 0x5f, 0xff, 0x5c, 0xff,\n  0x5a, 0xff, 0x54, 0xff, 0x57, 0xff, 0x54, 0xff, 0x4e, 0xff, 0x4e, 0xff,\n  0x50, 0xff, 0x4e, 0xff, 0x4d, 0xff, 0x4b, 0xff, 0x4b, 0xff, 0x4b, 0xff,\n  0x4b, 0xff, 0x4e, 0xff, 0x50, 0xff, 0x50, 0xff, 0x54, 0xff, 0x54, 0xff,\n  0x57, 0xff, 0x56, 0xff, 0x5d, 0xff, 0x60, 0xff, 0x60, 0xff, 0x68, 0xff,\n  0x68, 0xff, 0x6c, 0xff, 0x6b, 0xff, 0x74, 0xff, 0x75, 0xff, 0x78, 0xff,\n  0x7e, 0xff, 0x80, 0xff, 0x86, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0x90, 0xff,\n  0x93, 0xff, 0x98, 0xff, 0x9c, 0xff, 0xa1, 0xff, 0xa1, 0xff, 0xa7, 0xff,\n  0xa8, 0xff, 0xa8, 0xff, 0xae, 0xff, 0xae, 0xff, 0xae, 0xff, 0xae, 0xff,\n  0xae, 0xff, 0xb1, 0xff, 0xae, 0xff, 0xae, 0xff, 0xad, 0xff, 0xae, 0xff,\n  0xae, 0xff, 0xab, 0xff, 0xab, 0xff, 0xab, 0xff, 0xaa, 0xff, 0xaa, 0xff,\n  0xa8, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa2, 0xff, 0xa4, 0xff, 0x9e, 0xff,\n  0xa1, 0xff, 0x9b, 0xff, 0x98, 0xff, 0x95, 0xff, 0x93, 0xff, 0x8f, 0xff,\n  0x8c, 0xff, 0x8c, 0xff, 0x87, 0xff, 0x84, 0xff, 0x83, 0xff, 0x7e, 0xff,\n  0x7e, 0xff, 0x78, 0xff, 0x78, 0xff, 0x77, 0xff, 0x74, 0xff, 0x74, 0xff,\n  0x6c, 0xff, 0x6f, 0xff, 0x69, 0xff, 0x6c, 0xff, 0x6c, 0xff, 0x69, 0xff,\n  0x6b, 0xff, 0x6b, 0xff, 0x69, 0xff, 0x6c, 0xff, 0x6e, 0xff, 0x6e, 0xff,\n  0x6f, 0xff, 0x72, 0xff, 0x74, 0xff, 0x75, 0xff, 0x77, 0xff, 0x7a, 0xff,\n  0x7d, 0xff, 0x80, 0xff, 0x86, 0xff, 0x8a, 0xff, 0x90, 0xff, 0x90, 0xff,\n  0x98, 0xff, 0x9c, 0xff, 0x9e, 0xff, 0xa4, 0xff, 0xad, 0xff, 0xae, 0xff,\n  0xb4, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xc9, 0xff, 0xcf, 0xff, 0xd7, 0xff,\n  0xdd, 0xff, 0xe3, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xff, 0xff,\n  0x05, 0x00, 0x0d, 0x00, 0x13, 0x00, 0x1a, 0x00, 0x20, 0x00, 0x29, 0x00,\n  0x2f, 0x00, 0x34, 0x00, 0x3a, 0x00, 0x43, 0x00, 0x49, 0x00, 0x4d, 0x00,\n  0x52, 0x00, 0x59, 0x00, 0x5c, 0x00, 0x62, 0x00, 0x67, 0x00, 0x6d, 0x00,\n  0x71, 0x00, 0x74, 0x00, 0x7c, 0x00, 0x7a, 0x00, 0x85, 0x00, 0x86, 0x00,\n  0x88, 0x00, 0x8c, 0x00, 0x8f, 0x00, 0x92, 0x00, 0x97, 0x00, 0x98, 0x00,\n  0x9b, 0x00, 0x9e, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0xa9, 0x00, 0xa7, 0x00,\n  0xac, 0x00, 0xac, 0x00, 0xad, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb3, 0x00,\n  0xb2, 0x00, 0xb3, 0x00, 0xb3, 0x00, 0xb5, 0x00, 0xb3, 0x00, 0xb8, 0x00,\n  0xb3, 0x00, 0xb5, 0x00, 0xb5, 0x00, 0xb6, 0x00, 0xb6, 0x00, 0xb0, 0x00,\n  0xb8, 0x00, 0xb2, 0x00, 0xb8, 0x00, 0xb6, 0x00, 0xb6, 0x00, 0xb5, 0x00,\n  0xb5, 0x00, 0xb6, 0x00, 0xb5, 0x00, 0xb6, 0x00, 0xb6, 0x00, 0xb5, 0x00,\n  0xb8, 0x00, 0xb6, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb9, 0x00, 0xb8, 0x00,\n  0xb9, 0x00, 0xbb, 0x00, 0xbb, 0x00, 0xb9, 0x00, 0xb9, 0x00, 0xbb, 0x00,\n  0xb9, 0x00, 0xb8, 0x00, 0xbc, 0x00, 0xb9, 0x00, 0xb9, 0x00, 0xb9, 0x00,\n  0xb9, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb3, 0x00, 0xb5, 0x00,\n  0xb2, 0x00, 0xb3, 0x00, 0xad, 0x00, 0xaf, 0x00, 0xaf, 0x00, 0xaa, 0x00,\n  0xac, 0x00, 0xa9, 0x00, 0xa4, 0x00, 0xa4, 0x00, 0xa3, 0x00, 0xa1, 0x00,\n  0x9e, 0x00, 0x9d, 0x00, 0x9d, 0x00, 0x9a, 0x00, 0x95, 0x00, 0x92, 0x00,\n  0x91, 0x00, 0x89, 0x00, 0x88, 0x00, 0x82, 0x00, 0x80, 0x00, 0x7a, 0x00,\n  0x76, 0x00, 0x73, 0x00, 0x6a, 0x00, 0x68, 0x00, 0x64, 0x00, 0x61, 0x00,\n  0x58, 0x00, 0x56, 0x00, 0x50, 0x00, 0x4c, 0x00, 0x47, 0x00, 0x44, 0x00,\n  0x3d, 0x00, 0x37, 0x00, 0x31, 0x00, 0x2b, 0x00, 0x23, 0x00, 0x20, 0x00,\n  0x1c, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe7, 0xff,\n  0xe1, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xd4, 0xff, 0xcc, 0xff, 0xc9, 0xff,\n  0xc5, 0xff, 0xbf, 0xff, 0xba, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xa7, 0xff,\n  0xa7, 0xff, 0x9e, 0xff, 0x9b, 0xff, 0x96, 0xff, 0x8f, 0xff, 0x8a, 0xff,\n  0x87, 0xff, 0x81, 0xff, 0x7b, 0xff, 0x78, 0xff, 0x72, 0xff, 0x71, 0xff,\n  0x6c, 0xff, 0x69, 0xff, 0x65, 0xff, 0x62, 0xff, 0x5d, 0xff, 0x59, 0xff,\n  0x54, 0xff, 0x51, 0xff, 0x50, 0xff, 0x4d, 0xff, 0x4b, 0xff, 0x48, 0xff,\n  0x45, 0xff, 0x44, 0xff, 0x44, 0xff, 0x3f, 0xff, 0x3e, 0xff, 0x3f, 0xff,\n  0x3c, 0xff, 0x3c, 0xff, 0x3b, 0xff, 0x3b, 0xff, 0x38, 0xff, 0x3b, 0xff,\n  0x39, 0xff, 0x3c, 0xff, 0x3b, 0xff, 0x39, 0xff, 0x3b, 0xff, 0x39, 0xff,\n  0x3e, 0xff, 0x3b, 0xff, 0x3f, 0xff, 0x3e, 0xff, 0x41, 0xff, 0x3e, 0xff,\n  0x42, 0xff, 0x3f, 0xff, 0x42, 0xff, 0x45, 0xff, 0x44, 0xff, 0x47, 0xff,\n  0x48, 0xff, 0x4b, 0xff, 0x4d, 0xff, 0x4e, 0xff, 0x4e, 0xff, 0x53, 0xff,\n  0x50, 0xff, 0x59, 0xff, 0x56, 0xff, 0x5a, 0xff, 0x5d, 0xff, 0x5c, 0xff,\n  0x5f, 0xff, 0x63, 0xff, 0x68, 0xff, 0x6b, 0xff, 0x6c, 0xff, 0x72, 0xff,\n  0x78, 0xff, 0x7a, 0xff, 0x80, 0xff, 0x86, 0xff, 0x89, 0xff, 0x8a, 0xff,\n  0x93, 0xff, 0x98, 0xff, 0x9e, 0xff, 0xa2, 0xff, 0xa5, 0xff, 0xaa, 0xff,\n  0xad, 0xff, 0xb1, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xbf, 0xff, 0xbd, 0xff,\n  0xc3, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xd2, 0xff, 0xda, 0xff, 0xde, 0xff,\n  0xe3, 0xff, 0xe7, 0xff, 0xed, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x04, 0x00,\n  0x0a, 0x00, 0x10, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x25, 0x00, 0x2c, 0x00,\n  0x2f, 0x00, 0x34, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x43, 0x00, 0x44, 0x00,\n  0x47, 0x00, 0x4c, 0x00, 0x4c, 0x00, 0x4c, 0x00, 0x4f, 0x00, 0x4a, 0x00,\n  0x4a, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x44, 0x00, 0x46, 0x00, 0x43, 0x00,\n  0x3a, 0x00, 0x37, 0x00, 0x35, 0x00, 0x2f, 0x00, 0x2b, 0x00, 0x28, 0x00,\n  0x25, 0x00, 0x23, 0x00, 0x1d, 0x00, 0x19, 0x00, 0x19, 0x00, 0x11, 0x00,\n  0x11, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf5, 0xff,\n  0xf6, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x13, 0x00, 0x1a, 0x00,\n  0x1d, 0x00, 0x22, 0x00, 0x26, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x34, 0x00,\n  0x37, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x50, 0x00,\n  0x53, 0x00, 0x58, 0x00, 0x5c, 0x00, 0x61, 0x00, 0x64, 0x00, 0x67, 0x00,\n  0x6a, 0x00, 0x6b, 0x00, 0x73, 0x00, 0x76, 0x00, 0x76, 0x00, 0x7a, 0x00,\n  0x7f, 0x00, 0x83, 0x00, 0x83, 0x00, 0x86, 0x00, 0x8b, 0x00, 0x8e, 0x00,\n  0x91, 0x00, 0x97, 0x00, 0x9b, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa6, 0x00,\n  0xac, 0x00, 0xb2, 0x00, 0xb5, 0x00, 0xb8, 0x00, 0xb9, 0x00, 0xbe, 0x00,\n  0xc2, 0x00, 0xc4, 0x00, 0xc8, 0x00, 0xc7, 0x00, 0xc5, 0x00, 0xcb, 0x00,\n  0xc8, 0x00, 0xc7, 0x00, 0xc7, 0x00, 0xc5, 0x00, 0xc7, 0x00, 0xc4, 0x00,\n  0xc2, 0x00, 0xbf, 0x00, 0xc2, 0x00, 0xb8, 0x00, 0xb6, 0x00, 0xb5, 0x00,\n  0xac, 0x00, 0xaf, 0x00, 0xaa, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0x9d, 0x00,\n  0x95, 0x00, 0x94, 0x00, 0x8c, 0x00, 0x88, 0x00, 0x83, 0x00, 0x80, 0x00,\n  0x76, 0x00, 0x74, 0x00, 0x6e, 0x00, 0x68, 0x00, 0x65, 0x00, 0x5f, 0x00,\n  0x58, 0x00, 0x56, 0x00, 0x4f, 0x00, 0x49, 0x00, 0x44, 0x00, 0x43, 0x00,\n  0x3a, 0x00, 0x38, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x2c, 0x00, 0x26, 0x00,\n  0x26, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x17, 0x00, 0x17, 0x00, 0x14, 0x00,\n  0x11, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x07, 0x00,\n  0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xef, 0xff,\n  0xed, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xdb, 0xff,\n  0xdb, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xcf, 0xff,\n  0xcb, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc0, 0xff, 0xbd, 0xff,\n  0xb9, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb1, 0xff, 0xad, 0xff,\n  0xab, 0xff, 0xad, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0x9f, 0xff,\n  0x9f, 0xff, 0x9b, 0xff, 0x98, 0xff, 0x98, 0xff, 0x95, 0xff, 0x92, 0xff,\n  0x90, 0xff, 0x8d, 0xff, 0x87, 0xff, 0x84, 0xff, 0x83, 0xff, 0x80, 0xff,\n  0x7b, 0xff, 0x7a, 0xff, 0x72, 0xff, 0x72, 0xff, 0x6f, 0xff, 0x6c, 0xff,\n  0x69, 0xff, 0x65, 0xff, 0x62, 0xff, 0x5f, 0xff, 0x5c, 0xff, 0x59, 0xff,\n  0x57, 0xff, 0x56, 0xff, 0x53, 0xff, 0x53, 0xff, 0x50, 0xff, 0x4e, 0xff,\n  0x4e, 0xff, 0x4d, 0xff, 0x4e, 0xff, 0x4e, 0xff, 0x4d, 0xff, 0x4d, 0xff,\n  0x4e, 0xff, 0x51, 0xff, 0x50, 0xff, 0x50, 0xff, 0x53, 0xff, 0x53, 0xff,\n  0x53, 0xff, 0x59, 0xff, 0x56, 0xff, 0x5c, 0xff, 0x5f, 0xff, 0x5c, 0xff,\n  0x63, 0xff, 0x63, 0xff, 0x65, 0xff, 0x66, 0xff, 0x6b, 0xff, 0x6b, 0xff,\n  0x6b, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x71, 0xff, 0x6f, 0xff, 0x6f, 0xff,\n  0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x77, 0xff, 0x74, 0xff,\n  0x74, 0xff, 0x72, 0xff, 0x74, 0xff, 0x74, 0xff, 0x72, 0xff, 0x74, 0xff,\n  0x72, 0xff, 0x74, 0xff, 0x74, 0xff, 0x75, 0xff, 0x72, 0xff, 0x74, 0xff,\n  0x74, 0xff, 0x75, 0xff, 0x77, 0xff, 0x78, 0xff, 0x77, 0xff, 0x78, 0xff,\n  0x7a, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x80, 0xff, 0x83, 0xff, 0x83, 0xff,\n  0x84, 0xff, 0x87, 0xff, 0x8c, 0xff, 0x8f, 0xff, 0x8f, 0xff, 0x93, 0xff,\n  0x96, 0xff, 0x9b, 0xff, 0x99, 0xff, 0x9f, 0xff, 0xa1, 0xff, 0xa4, 0xff,\n  0xab, 0xff, 0xae, 0xff, 0xb3, 0xff, 0xb6, 0xff, 0xbd, 0xff, 0xc0, 0xff,\n  0xc9, 0xff, 0xcc, 0xff, 0xd1, 0xff, 0xd8, 0xff, 0xde, 0xff, 0xe4, 0xff,\n  0xef, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x05, 0x00, 0x0d, 0x00,\n  0x11, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x23, 0x00, 0x25, 0x00, 0x2e, 0x00,\n  0x31, 0x00, 0x35, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x44, 0x00,\n  0x49, 0x00, 0x50, 0x00, 0x53, 0x00, 0x53, 0x00, 0x5c, 0x00, 0x5c, 0x00,\n  0x61, 0x00, 0x65, 0x00, 0x6a, 0x00, 0x6d, 0x00, 0x71, 0x00, 0x70, 0x00,\n  0x77, 0x00, 0x77, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x80, 0x00, 0x80, 0x00,\n  0x83, 0x00, 0x85, 0x00, 0x88, 0x00, 0x89, 0x00, 0x8b, 0x00, 0x92, 0x00,\n  0x94, 0x00, 0x98, 0x00, 0x98, 0x00, 0x9d, 0x00, 0x9d, 0x00, 0xa0, 0x00,\n  0xa4, 0x00, 0xa7, 0x00, 0xaa, 0x00, 0xac, 0x00, 0xaf, 0x00, 0xb2, 0x00,\n  0xb8, 0x00, 0xb8, 0x00, 0xb9, 0x00, 0xbe, 0x00, 0xbc, 0x00, 0xbf, 0x00,\n  0xc2, 0x00, 0xc1, 0x00, 0xc4, 0x00, 0xc4, 0x00, 0xc7, 0x00, 0xc5, 0x00,\n  0xc1, 0x00, 0xc4, 0x00, 0xc2, 0x00, 0xc1, 0x00, 0xbf, 0x00, 0xbf, 0x00,\n  0xbf, 0x00, 0xbc, 0x00, 0xb9, 0x00, 0xb8, 0x00, 0xb6, 0x00, 0xb5, 0x00,\n  0xb2, 0x00, 0xb3, 0x00, 0xad, 0x00, 0xac, 0x00, 0xac, 0x00, 0xa9, 0x00,\n  0xaa, 0x00, 0xa3, 0x00, 0xa6, 0x00, 0xa7, 0x00, 0xa0, 0x00, 0xa3, 0x00,\n  0xa1, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0x9d, 0x00,\n  0x9b, 0x00, 0x9b, 0x00, 0x9d, 0x00, 0x98, 0x00, 0x97, 0x00, 0x98, 0x00,\n  0x94, 0x00, 0x94, 0x00, 0x91, 0x00, 0x91, 0x00, 0x91, 0x00, 0x8c, 0x00,\n  0x8b, 0x00, 0x89, 0x00, 0x88, 0x00, 0x85, 0x00, 0x83, 0x00, 0x7f, 0x00,\n  0x7d, 0x00, 0x7c, 0x00, 0x79, 0x00, 0x76, 0x00, 0x71, 0x00, 0x6d, 0x00,\n  0x6b, 0x00, 0x67, 0x00, 0x64, 0x00, 0x62, 0x00, 0x61, 0x00, 0x5b, 0x00,\n  0x5b, 0x00, 0x56, 0x00, 0x56, 0x00, 0x56, 0x00, 0x52, 0x00, 0x52, 0x00,\n  0x4d, 0x00, 0x4c, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x47, 0x00, 0x47, 0x00,\n  0x43, 0x00, 0x41, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x37, 0x00,\n  0x32, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x28, 0x00, 0x26, 0x00, 0x22, 0x00,\n  0x1c, 0x00, 0x1a, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x08, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xec, 0xff,\n  0xe6, 0xff, 0xe3, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd2, 0xff, 0xce, 0xff,\n  0xcb, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xbd, 0xff, 0xba, 0xff,\n  0xb9, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb1, 0xff, 0xb0, 0xff, 0xae, 0xff,\n  0xae, 0xff, 0xad, 0xff, 0xad, 0xff, 0xaa, 0xff, 0xab, 0xff, 0xaa, 0xff,\n  0xa8, 0xff, 0xa8, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa8, 0xff, 0xa5, 0xff,\n  0xa4, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xa4, 0xff,\n  0xa1, 0xff, 0xa4, 0xff, 0xa2, 0xff, 0xa1, 0xff, 0x9f, 0xff, 0x9e, 0xff,\n  0x9e, 0xff, 0x99, 0xff, 0x98, 0xff, 0x96, 0xff, 0x92, 0xff, 0x90, 0xff,\n  0x8f, 0xff, 0x89, 0xff, 0x87, 0xff, 0x83, 0xff, 0x81, 0xff, 0x7a, 0xff,\n  0x78, 0xff, 0x77, 0xff, 0x6e, 0xff, 0x71, 0xff, 0x6b, 0xff, 0x68, 0xff,\n  0x66, 0xff, 0x63, 0xff, 0x60, 0xff, 0x5a, 0xff, 0x5c, 0xff, 0x57, 0xff,\n  0x54, 0xff, 0x53, 0xff, 0x50, 0xff, 0x4e, 0xff, 0x4d, 0xff, 0x47, 0xff,\n  0x48, 0xff, 0x41, 0xff, 0x42, 0xff, 0x42, 0xff, 0x3e, 0xff, 0x41, 0xff,\n  0x3e, 0xff, 0x39, 0xff, 0x3c, 0xff, 0x3b, 0xff, 0x3b, 0xff, 0x39, 0xff,\n  0x3b, 0xff, 0x3c, 0xff, 0x39, 0xff, 0x3e, 0xff, 0x3e, 0xff, 0x3f, 0xff,\n  0x42, 0xff, 0x42, 0xff, 0x48, 0xff, 0x47, 0xff, 0x4b, 0xff, 0x4d, 0xff,\n  0x51, 0xff, 0x56, 0xff, 0x57, 0xff, 0x5a, 0xff, 0x60, 0xff, 0x62, 0xff,\n  0x66, 0xff, 0x69, 0xff, 0x6c, 0xff, 0x6f, 0xff, 0x72, 0xff, 0x77, 0xff,\n  0x7d, 0xff, 0x7d, 0xff, 0x81, 0xff, 0x86, 0xff, 0x89, 0xff, 0x90, 0xff,\n  0x90, 0xff, 0x95, 0xff, 0x96, 0xff, 0x99, 0xff, 0x9f, 0xff, 0xa4, 0xff,\n  0xa7, 0xff, 0xad, 0xff, 0xb1, 0xff, 0xb4, 0xff, 0xba, 0xff, 0xbc, 0xff,\n  0xc3, 0xff, 0xc5, 0xff, 0xc9, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0xd5, 0xff,\n  0xd8, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe3, 0xff,\n  0xea, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf0, 0xff,\n  0xf3, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf8, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x0d, 0x00, 0x13, 0x00, 0x14, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1c, 0x00,\n  0x1f, 0x00, 0x20, 0x00, 0x26, 0x00, 0x25, 0x00, 0x2b, 0x00, 0x31, 0x00,\n  0x2f, 0x00, 0x34, 0x00, 0x35, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3e, 0x00,\n  0x40, 0x00, 0x40, 0x00, 0x44, 0x00, 0x44, 0x00, 0x47, 0x00, 0x4a, 0x00,\n  0x4c, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x55, 0x00, 0x53, 0x00, 0x58, 0x00,\n  0x56, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x5e, 0x00, 0x5f, 0x00, 0x5f, 0x00,\n  0x64, 0x00, 0x61, 0x00, 0x65, 0x00, 0x67, 0x00, 0x67, 0x00, 0x68, 0x00,\n  0x6b, 0x00, 0x6d, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x6e, 0x00, 0x71, 0x00,\n  0x71, 0x00, 0x73, 0x00, 0x77, 0x00, 0x76, 0x00, 0x77, 0x00, 0x7c, 0x00,\n  0x7a, 0x00, 0x7c, 0x00, 0x7f, 0x00, 0x82, 0x00, 0x82, 0x00, 0x85, 0x00,\n  0x85, 0x00, 0x88, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x91, 0x00, 0x8f, 0x00,\n  0x8f, 0x00, 0x94, 0x00, 0x97, 0x00, 0x97, 0x00, 0x9a, 0x00, 0x98, 0x00,\n  0x9d, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0xa1, 0x00, 0xa1, 0x00, 0xa3, 0x00,\n  0xa4, 0x00, 0xa1, 0x00, 0xa0, 0x00, 0xa3, 0x00, 0xa1, 0x00, 0x9b, 0x00,\n  0x9e, 0x00, 0x9b, 0x00, 0x98, 0x00, 0x95, 0x00, 0x91, 0x00, 0x8f, 0x00,\n  0x91, 0x00, 0x8e, 0x00, 0x88, 0x00, 0x86, 0x00, 0x82, 0x00, 0x82, 0x00,\n  0x7f, 0x00, 0x79, 0x00, 0x7a, 0x00, 0x77, 0x00, 0x73, 0x00, 0x73, 0x00,\n  0x6d, 0x00, 0x6e, 0x00, 0x6d, 0x00, 0x67, 0x00, 0x65, 0x00, 0x67, 0x00,\n  0x64, 0x00, 0x62, 0x00, 0x5f, 0x00, 0x5e, 0x00, 0x5b, 0x00, 0x58, 0x00,\n  0x56, 0x00, 0x53, 0x00, 0x52, 0x00, 0x4f, 0x00, 0x4c, 0x00, 0x49, 0x00,\n  0x43, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x3a, 0x00, 0x34, 0x00, 0x32, 0x00,\n  0x2e, 0x00, 0x29, 0x00, 0x26, 0x00, 0x22, 0x00, 0x23, 0x00, 0x1d, 0x00,\n  0x1c, 0x00, 0x17, 0x00, 0x16, 0x00, 0x11, 0x00, 0x10, 0x00, 0x10, 0x00,\n  0x0b, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xec, 0xff,\n  0xe9, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xd5, 0xff,\n  0xd4, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xc6, 0xff, 0xc0, 0xff, 0xba, 0xff,\n  0xb4, 0xff, 0xb4, 0xff, 0xaa, 0xff, 0xa7, 0xff, 0x9f, 0xff, 0x9e, 0xff,\n  0x98, 0xff, 0x92, 0xff, 0x8f, 0xff, 0x8a, 0xff, 0x87, 0xff, 0x83, 0xff,\n  0x80, 0xff, 0x7e, 0xff, 0x7b, 0xff, 0x7d, 0xff, 0x78, 0xff, 0x78, 0xff,\n  0x75, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x75, 0xff, 0x6f, 0xff,\n  0x72, 0xff, 0x6f, 0xff, 0x71, 0xff, 0x71, 0xff, 0x71, 0xff, 0x71, 0xff,\n  0x6f, 0xff, 0x6f, 0xff, 0x6f, 0xff, 0x6e, 0xff, 0x6f, 0xff, 0x6e, 0xff,\n  0x6c, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6b, 0xff, 0x69, 0xff, 0x6b, 0xff,\n  0x68, 0xff, 0x66, 0xff, 0x65, 0xff, 0x65, 0xff, 0x62, 0xff, 0x63, 0xff,\n  0x63, 0xff, 0x62, 0xff, 0x62, 0xff, 0x5f, 0xff, 0x62, 0xff, 0x60, 0xff,\n  0x5f, 0xff, 0x5f, 0xff, 0x62, 0xff, 0x60, 0xff, 0x5f, 0xff, 0x60, 0xff,\n  0x60, 0xff, 0x60, 0xff, 0x5f, 0xff, 0x62, 0xff, 0x63, 0xff, 0x60, 0xff,\n  0x63, 0xff, 0x62, 0xff, 0x63, 0xff, 0x66, 0xff, 0x66, 0xff, 0x6b, 0xff,\n  0x6b, 0xff, 0x6e, 0xff, 0x71, 0xff, 0x74, 0xff, 0x75, 0xff, 0x77, 0xff,\n  0x7d, 0xff, 0x7b, 0xff, 0x81, 0xff, 0x87, 0xff, 0x87, 0xff, 0x8c, 0xff,\n  0x92, 0xff, 0x95, 0xff, 0x98, 0xff, 0x9e, 0xff, 0xa1, 0xff, 0xa5, 0xff,\n  0xaa, 0xff, 0xae, 0xff, 0xae, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xbc, 0xff,\n  0xbf, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc8, 0xff, 0xcc, 0xff, 0xd1, 0xff,\n  0xd2, 0xff, 0xd5, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xe0, 0xff,\n  0xe6, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf0, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x0d, 0x00, 0x10, 0x00, 0x13, 0x00, 0x16, 0x00, 0x19, 0x00, 0x1c, 0x00,\n  0x20, 0x00, 0x23, 0x00, 0x25, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x2e, 0x00,\n  0x31, 0x00, 0x34, 0x00, 0x34, 0x00, 0x35, 0x00, 0x3a, 0x00, 0x3b, 0x00,\n  0x3e, 0x00, 0x40, 0x00, 0x43, 0x00, 0x44, 0x00, 0x49, 0x00, 0x4a, 0x00,\n  0x4d, 0x00, 0x4f, 0x00, 0x52, 0x00, 0x55, 0x00, 0x55, 0x00, 0x59, 0x00,\n  0x5c, 0x00, 0x61, 0x00, 0x5f, 0x00, 0x65, 0x00, 0x67, 0x00, 0x67, 0x00,\n  0x6d, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x73, 0x00, 0x76, 0x00, 0x7a, 0x00,\n  0x7d, 0x00, 0x80, 0x00, 0x86, 0x00, 0x86, 0x00, 0x88, 0x00, 0x8c, 0x00,\n  0x8f, 0x00, 0x92, 0x00, 0x95, 0x00, 0x97, 0x00, 0x9a, 0x00, 0xa0, 0x00,\n  0xa0, 0x00, 0xa4, 0x00, 0xa7, 0x00, 0xaa, 0x00, 0xa7, 0x00, 0xaf, 0x00,\n  0xac, 0x00, 0xb0, 0x00, 0xb3, 0x00, 0xb5, 0x00, 0xb5, 0x00, 0xb8, 0x00,\n  0xbc, 0x00, 0xbb, 0x00, 0xbf, 0x00, 0xbe, 0x00, 0xbc, 0x00, 0xbf, 0x00,\n  0xbf, 0x00, 0xbb, 0x00, 0xbf, 0x00, 0xbb, 0x00, 0xb6, 0x00, 0xb6, 0x00,\n  0xb6, 0x00, 0xb2, 0x00, 0xaf, 0x00, 0xac, 0x00, 0xa6, 0x00, 0xa6, 0x00,\n  0xa0, 0x00, 0x9d, 0x00, 0x9a, 0x00, 0x95, 0x00, 0x92, 0x00, 0x8c, 0x00,\n  0x8b, 0x00, 0x88, 0x00, 0x86, 0x00, 0x82, 0x00, 0x7d, 0x00, 0x7d, 0x00,\n  0x7c, 0x00, 0x74, 0x00, 0x77, 0x00, 0x76, 0x00, 0x70, 0x00, 0x73, 0x00,\n  0x6e, 0x00, 0x70, 0x00, 0x6d, 0x00, 0x68, 0x00, 0x68, 0x00, 0x64, 0x00,\n  0x68, 0x00, 0x5f, 0x00, 0x62, 0x00, 0x61, 0x00, 0x5b, 0x00, 0x58, 0x00,\n  0x56, 0x00, 0x53, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x49, 0x00, 0x44, 0x00,\n  0x41, 0x00, 0x40, 0x00, 0x3a, 0x00, 0x38, 0x00, 0x32, 0x00, 0x2e, 0x00,\n  0x2b, 0x00, 0x26, 0x00, 0x22, 0x00, 0x20, 0x00, 0x19, 0x00, 0x16, 0x00,\n  0x13, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xec, 0xff, 0xec, 0xff,\n  0xe9, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xdb, 0xff, 0xd7, 0xff,\n  0xd2, 0xff, 0xd1, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xc6, 0xff,\n  0xc3, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xbd, 0xff, 0xbc, 0xff,\n  0xb9, 0xff, 0xba, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb4, 0xff,\n  0xb6, 0xff, 0xb4, 0xff, 0xb3, 0xff, 0xb3, 0xff, 0xb4, 0xff, 0xb1, 0xff,\n  0xb3, 0xff, 0xb3, 0xff, 0xb4, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb7, 0xff,\n  0xb6, 0xff, 0xb9, 0xff, 0xb9, 0xff, 0xba, 0xff, 0xba, 0xff, 0xbd, 0xff,\n  0xbd, 0xff, 0xbf, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc3, 0xff, 0xc0, 0xff,\n  0xc2, 0xff, 0xc5, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xc6, 0xff, 0xc5, 0xff,\n  0xc0, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc5, 0xff,\n  0xc3, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc3, 0xff,\n  0xc2, 0xff, 0xc0, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xbf, 0xff, 0xc0, 0xff,\n  0xc2, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xbc, 0xff,\n  0xbc, 0xff, 0xbc, 0xff, 0xb9, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff,\n  0xb0, 0xff, 0xb1, 0xff, 0xae, 0xff, 0xab, 0xff, 0xaa, 0xff, 0xa7, 0xff,\n  0xa7, 0xff, 0xa4, 0xff, 0x9f, 0xff, 0x9f, 0xff, 0x9b, 0xff, 0x9c, 0xff,\n  0x9b, 0xff, 0x99, 0xff, 0x98, 0xff, 0x96, 0xff, 0x96, 0xff, 0x98, 0xff,\n  0x96, 0xff, 0x96, 0xff, 0x96, 0xff, 0x96, 0xff, 0x98, 0xff, 0x98, 0xff,\n  0x99, 0xff, 0x9b, 0xff, 0x9c, 0xff, 0x9c, 0xff, 0x9e, 0xff, 0x9f, 0xff,\n  0xa4, 0xff, 0x9f, 0xff, 0xa4, 0xff, 0xa1, 0xff, 0xa7, 0xff, 0xaa, 0xff,\n  0xa8, 0xff, 0xad, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xb3, 0xff, 0xb6, 0xff,\n  0xb9, 0xff, 0xb6, 0xff, 0xbd, 0xff, 0xbc, 0xff, 0xbf, 0xff, 0xc0, 0xff,\n  0xc2, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc8, 0xff, 0xc9, 0xff,\n  0xcb, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xd2, 0xff,\n  0xd4, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdd, 0xff,\n  0xe0, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe6, 0xff,\n  0xe7, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xef, 0xff,\n  0xf0, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x0a, 0x00,\n  0x08, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x11, 0x00, 0x14, 0x00, 0x17, 0x00,\n  0x1d, 0x00, 0x20, 0x00, 0x28, 0x00, 0x29, 0x00, 0x2f, 0x00, 0x32, 0x00,\n  0x38, 0x00, 0x3a, 0x00, 0x41, 0x00, 0x44, 0x00, 0x47, 0x00, 0x4d, 0x00,\n  0x50, 0x00, 0x53, 0x00, 0x55, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x62, 0x00,\n  0x5e, 0x00, 0x64, 0x00, 0x64, 0x00, 0x67, 0x00, 0x6b, 0x00, 0x6b, 0x00,\n  0x6e, 0x00, 0x70, 0x00, 0x70, 0x00, 0x74, 0x00, 0x71, 0x00, 0x74, 0x00,\n  0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0x71, 0x00, 0x73, 0x00, 0x70, 0x00,\n  0x6d, 0x00, 0x6d, 0x00, 0x6a, 0x00, 0x6d, 0x00, 0x67, 0x00, 0x64, 0x00,\n  0x67, 0x00, 0x62, 0x00, 0x5f, 0x00, 0x5e, 0x00, 0x5c, 0x00, 0x56, 0x00,\n  0x58, 0x00, 0x52, 0x00, 0x50, 0x00, 0x4d, 0x00, 0x4a, 0x00, 0x49, 0x00,\n  0x44, 0x00, 0x44, 0x00, 0x41, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x3b, 0x00,\n  0x37, 0x00, 0x38, 0x00, 0x37, 0x00, 0x32, 0x00, 0x37, 0x00, 0x31, 0x00,\n  0x34, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x2f, 0x00,\n  0x31, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x31, 0x00, 0x32, 0x00,\n  0x34, 0x00, 0x32, 0x00, 0x34, 0x00, 0x32, 0x00, 0x35, 0x00, 0x35, 0x00,\n  0x35, 0x00, 0x38, 0x00, 0x34, 0x00, 0x38, 0x00, 0x35, 0x00, 0x3b, 0x00,\n  0x3a, 0x00, 0x37, 0x00, 0x38, 0x00, 0x35, 0x00, 0x3a, 0x00, 0x38, 0x00,\n  0x35, 0x00, 0x37, 0x00, 0x38, 0x00, 0x35, 0x00, 0x37, 0x00, 0x35, 0x00,\n  0x35, 0x00, 0x37, 0x00, 0x32, 0x00, 0x35, 0x00, 0x32, 0x00, 0x35, 0x00,\n  0x34, 0x00, 0x31, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x31, 0x00,\n  0x2f, 0x00, 0x32, 0x00, 0x32, 0x00, 0x31, 0x00, 0x31, 0x00, 0x2c, 0x00,\n  0x2f, 0x00, 0x31, 0x00, 0x2c, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2b, 0x00,\n  0x2c, 0x00, 0x26, 0x00, 0x26, 0x00, 0x23, 0x00, 0x23, 0x00, 0x1f, 0x00,\n  0x1d, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x10, 0x00,\n  0x10, 0x00, 0x08, 0x00, 0x08, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xef, 0xff,\n  0xec, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xde, 0xff,\n  0xe1, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xd5, 0xff, 0xd4, 0xff,\n  0xd2, 0xff, 0xd1, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xc9, 0xff,\n  0xc8, 0xff, 0xc9, 0xff, 0xc6, 0xff, 0xc2, 0xff, 0xc3, 0xff, 0xc2, 0xff,\n  0xbc, 0xff, 0xbd, 0xff, 0xb9, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb4, 0xff,\n  0xb0, 0xff, 0xae, 0xff, 0xae, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0xa8, 0xff,\n  0xa5, 0xff, 0xa5, 0xff, 0xa2, 0xff, 0xa1, 0xff, 0x9f, 0xff, 0xa1, 0xff,\n  0x9c, 0xff, 0x9f, 0xff, 0x9b, 0xff, 0x98, 0xff, 0x99, 0xff, 0x95, 0xff,\n  0x98, 0xff, 0x95, 0xff, 0x96, 0xff, 0x92, 0xff, 0x92, 0xff, 0x8d, 0xff,\n  0x8f, 0xff, 0x8d, 0xff, 0x8c, 0xff, 0x8a, 0xff, 0x87, 0xff, 0x89, 0xff,\n  0x86, 0xff, 0x86, 0xff, 0x86, 0xff, 0x89, 0xff, 0x83, 0xff, 0x86, 0xff,\n  0x84, 0xff, 0x87, 0xff, 0x84, 0xff, 0x86, 0xff, 0x87, 0xff, 0x87, 0xff,\n  0x87, 0xff, 0x86, 0xff, 0x8a, 0xff, 0x8a, 0xff, 0x89, 0xff, 0x8c, 0xff,\n  0x8d, 0xff, 0x8c, 0xff, 0x8c, 0xff, 0x90, 0xff, 0x92, 0xff, 0x93, 0xff,\n  0x95, 0xff, 0x98, 0xff, 0x9b, 0xff, 0x9c, 0xff, 0xa1, 0xff, 0xa1, 0xff,\n  0xa5, 0xff, 0xa4, 0xff, 0xaa, 0xff, 0xad, 0xff, 0xae, 0xff, 0xb1, 0xff,\n  0xb3, 0xff, 0xb9, 0xff, 0xb7, 0xff, 0xbc, 0xff, 0xba, 0xff, 0xc0, 0xff,\n  0xc2, 0xff, 0xc5, 0xff, 0xc6, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xcc, 0xff,\n  0xd1, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xda, 0xff,\n  0xde, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe6, 0xff, 0xe9, 0xff,\n  0xea, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf5, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x0e, 0x00,\n  0x10, 0x00, 0x10, 0x00, 0x13, 0x00, 0x11, 0x00, 0x14, 0x00, 0x16, 0x00,\n  0x16, 0x00, 0x17, 0x00, 0x19, 0x00, 0x17, 0x00, 0x17, 0x00, 0x1a, 0x00,\n  0x1c, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1d, 0x00,\n  0x1f, 0x00, 0x20, 0x00, 0x20, 0x00, 0x23, 0x00, 0x22, 0x00, 0x25, 0x00,\n  0x23, 0x00, 0x26, 0x00, 0x26, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x2b, 0x00,\n  0x2c, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x34, 0x00,\n  0x32, 0x00, 0x34, 0x00, 0x38, 0x00, 0x3b, 0x00, 0x38, 0x00, 0x3a, 0x00,\n  0x40, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x43, 0x00, 0x43, 0x00, 0x43, 0x00,\n  0x46, 0x00, 0x46, 0x00, 0x46, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x4a, 0x00,\n  0x4d, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x53, 0x00, 0x56, 0x00,\n  0x56, 0x00, 0x56, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0x5b, 0x00, 0x5c, 0x00,\n  0x5c, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x5b, 0x00,\n  0x5b, 0x00, 0x5c, 0x00, 0x58, 0x00, 0x59, 0x00, 0x58, 0x00, 0x58, 0x00,\n  0x50, 0x00, 0x53, 0x00, 0x4f, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4c, 0x00,\n  0x46, 0x00, 0x46, 0x00, 0x43, 0x00, 0x41, 0x00, 0x41, 0x00, 0x3e, 0x00,\n  0x3d, 0x00, 0x38, 0x00, 0x38, 0x00, 0x34, 0x00, 0x35, 0x00, 0x32, 0x00,\n  0x2c, 0x00, 0x2e, 0x00, 0x2b, 0x00, 0x2b, 0x00, 0x26, 0x00, 0x26, 0x00,\n  0x26, 0x00, 0x26, 0x00, 0x22, 0x00, 0x23, 0x00, 0x20, 0x00, 0x22, 0x00,\n  0x1f, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x1c, 0x00,\n  0x20, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1a, 0x00, 0x1d, 0x00,\n  0x1c, 0x00, 0x1d, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1c, 0x00,\n  0x1a, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x1a, 0x00,\n  0x19, 0x00, 0x19, 0x00, 0x19, 0x00, 0x17, 0x00, 0x19, 0x00, 0x14, 0x00,\n  0x17, 0x00, 0x14, 0x00, 0x14, 0x00, 0x10, 0x00, 0x11, 0x00, 0x13, 0x00,\n  0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0d, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x02, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xed, 0xff,\n  0xed, 0xff, 0xef, 0xff, 0xed, 0xff, 0xec, 0xff, 0xec, 0xff, 0xe9, 0xff,\n  0xe6, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe3, 0xff,\n  0xe1, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xda, 0xff, 0xdb, 0xff,\n  0xda, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd4, 0xff,\n  0xd5, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xcf, 0xff,\n  0xd1, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xcc, 0xff,\n  0xc9, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xc6, 0xff,\n  0xc5, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc6, 0xff, 0xc5, 0xff,\n  0xc5, 0xff, 0xc0, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc2, 0xff,\n  0xc2, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc0, 0xff,\n  0xc5, 0xff, 0xc5, 0xff, 0xc0, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xc2, 0xff,\n  0xbf, 0xff, 0xc0, 0xff, 0xbd, 0xff, 0xbc, 0xff, 0xba, 0xff, 0xbc, 0xff,\n  0xb9, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff,\n  0xb4, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb0, 0xff,\n  0xb3, 0xff, 0xb0, 0xff, 0xb3, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb3, 0xff,\n  0xb4, 0xff, 0xb4, 0xff, 0xb4, 0xff, 0xb9, 0xff, 0xb4, 0xff, 0xb9, 0xff,\n  0xba, 0xff, 0xba, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xbd, 0xff, 0xc3, 0xff,\n  0xc3, 0xff, 0xc0, 0xff, 0xc6, 0xff, 0xc9, 0xff, 0xc9, 0xff, 0xce, 0xff,\n  0xcf, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xdd, 0xff,\n  0xdd, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xed, 0xff, 0xef, 0xff,\n  0xf0, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x07, 0x00, 0x08, 0x00, 0x10, 0x00,\n  0x0e, 0x00, 0x10, 0x00, 0x16, 0x00, 0x13, 0x00, 0x16, 0x00, 0x19, 0x00,\n  0x1a, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x23, 0x00, 0x23, 0x00, 0x23, 0x00,\n  0x28, 0x00, 0x25, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x2f, 0x00,\n  0x2f, 0x00, 0x34, 0x00, 0x32, 0x00, 0x37, 0x00, 0x37, 0x00, 0x35, 0x00,\n  0x3b, 0x00, 0x3b, 0x00, 0x3a, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x40, 0x00,\n  0x44, 0x00, 0x44, 0x00, 0x47, 0x00, 0x49, 0x00, 0x47, 0x00, 0x4d, 0x00,\n  0x4c, 0x00, 0x4f, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00,\n  0x55, 0x00, 0x53, 0x00, 0x53, 0x00, 0x56, 0x00, 0x53, 0x00, 0x58, 0x00,\n  0x56, 0x00, 0x59, 0x00, 0x58, 0x00, 0x58, 0x00, 0x59, 0x00, 0x59, 0x00,\n  0x5b, 0x00, 0x59, 0x00, 0x5b, 0x00, 0x5b, 0x00, 0x59, 0x00, 0x5b, 0x00,\n  0x59, 0x00, 0x5c, 0x00, 0x58, 0x00, 0x58, 0x00, 0x58, 0x00, 0x56, 0x00,\n  0x56, 0x00, 0x58, 0x00, 0x58, 0x00, 0x56, 0x00, 0x56, 0x00, 0x56, 0x00,\n  0x55, 0x00, 0x56, 0x00, 0x55, 0x00, 0x55, 0x00, 0x53, 0x00, 0x55, 0x00,\n  0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x4d, 0x00, 0x4c, 0x00,\n  0x4a, 0x00, 0x4a, 0x00, 0x46, 0x00, 0x46, 0x00, 0x47, 0x00, 0x46, 0x00,\n  0x44, 0x00, 0x41, 0x00, 0x41, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x3e, 0x00,\n  0x3b, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x3a, 0x00,\n  0x3d, 0x00, 0x3b, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x3d, 0x00,\n  0x3b, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x3e, 0x00,\n  0x3b, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x38, 0x00,\n  0x3b, 0x00, 0x35, 0x00, 0x35, 0x00, 0x35, 0x00, 0x32, 0x00, 0x34, 0x00,\n  0x32, 0x00, 0x2f, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x28, 0x00,\n  0x29, 0x00, 0x25, 0x00, 0x23, 0x00, 0x23, 0x00, 0x20, 0x00, 0x1c, 0x00,\n  0x1a, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x13, 0x00, 0x16, 0x00, 0x10, 0x00,\n  0x11, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xf2, 0xff,\n  0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xe6, 0xff,\n  0xe4, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xd8, 0xff,\n  0xd7, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xcc, 0xff, 0xcb, 0xff,\n  0xc6, 0xff, 0xc6, 0xff, 0xc5, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xbf, 0xff,\n  0xbc, 0xff, 0xba, 0xff, 0xba, 0xff, 0xb7, 0xff, 0xb4, 0xff, 0xb4, 0xff,\n  0xb7, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb4, 0xff, 0xb1, 0xff,\n  0xb0, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb0, 0xff, 0xae, 0xff, 0xb0, 0xff,\n  0xae, 0xff, 0xae, 0xff, 0xae, 0xff, 0xad, 0xff, 0xae, 0xff, 0xae, 0xff,\n  0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xae, 0xff, 0xb0, 0xff, 0xb1, 0xff,\n  0xb1, 0xff, 0xb0, 0xff, 0xb3, 0xff, 0xb0, 0xff, 0xb3, 0xff, 0xb3, 0xff,\n  0xb6, 0xff, 0xb3, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb9, 0xff,\n  0xb6, 0xff, 0xb9, 0xff, 0xb9, 0xff, 0xb9, 0xff, 0xb7, 0xff, 0xba, 0xff,\n  0xba, 0xff, 0xb9, 0xff, 0xba, 0xff, 0xba, 0xff, 0xbf, 0xff, 0xba, 0xff,\n  0xbf, 0xff, 0xc0, 0xff, 0xbd, 0xff, 0xc3, 0xff, 0xc0, 0xff, 0xc5, 0xff,\n  0xc5, 0xff, 0xc2, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xc8, 0xff, 0xc8, 0xff,\n  0xc9, 0xff, 0xcb, 0xff, 0xcc, 0xff, 0xcb, 0xff, 0xce, 0xff, 0xcc, 0xff,\n  0xcc, 0xff, 0xcf, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xd2, 0xff,\n  0xd1, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd5, 0xff, 0xd5, 0xff,\n  0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xdb, 0xff,\n  0xd8, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xe0, 0xff,\n  0xde, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe1, 0xff,\n  0xe4, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe1, 0xff,\n  0xe6, 0xff, 0xe4, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe7, 0xff,\n  0xe9, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xea, 0xff, 0xec, 0xff, 0xea, 0xff,\n  0xed, 0xff, 0xea, 0xff, 0xed, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf9, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0b, 0x00,\n  0x0a, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x13, 0x00,\n  0x17, 0x00, 0x16, 0x00, 0x13, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x19, 0x00,\n  0x20, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x23, 0x00, 0x23, 0x00, 0x26, 0x00,\n  0x28, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x32, 0x00,\n  0x31, 0x00, 0x37, 0x00, 0x35, 0x00, 0x3a, 0x00, 0x38, 0x00, 0x3b, 0x00,\n  0x3e, 0x00, 0x40, 0x00, 0x44, 0x00, 0x44, 0x00, 0x47, 0x00, 0x49, 0x00,\n  0x4c, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x53, 0x00, 0x53, 0x00, 0x58, 0x00,\n  0x58, 0x00, 0x59, 0x00, 0x59, 0x00, 0x61, 0x00, 0x5b, 0x00, 0x5f, 0x00,\n  0x61, 0x00, 0x61, 0x00, 0x64, 0x00, 0x64, 0x00, 0x64, 0x00, 0x62, 0x00,\n  0x65, 0x00, 0x67, 0x00, 0x64, 0x00, 0x65, 0x00, 0x64, 0x00, 0x62, 0x00,\n  0x61, 0x00, 0x5f, 0x00, 0x5f, 0x00, 0x5e, 0x00, 0x5e, 0x00, 0x59, 0x00,\n  0x5b, 0x00, 0x58, 0x00, 0x59, 0x00, 0x56, 0x00, 0x56, 0x00, 0x50, 0x00,\n  0x50, 0x00, 0x50, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4a, 0x00, 0x49, 0x00,\n  0x44, 0x00, 0x44, 0x00, 0x40, 0x00, 0x41, 0x00, 0x3b, 0x00, 0x3b, 0x00,\n  0x38, 0x00, 0x35, 0x00, 0x31, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2b, 0x00,\n  0x26, 0x00, 0x29, 0x00, 0x23, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x1c, 0x00,\n  0x1c, 0x00, 0x17, 0x00, 0x19, 0x00, 0x14, 0x00, 0x13, 0x00, 0x0e, 0x00,\n  0x11, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf2, 0xff,\n  0xf5, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xea, 0xff, 0xec, 0xff,\n  0xe7, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe3, 0xff,\n  0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xdd, 0xff,\n  0xdb, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd7, 0xff,\n  0xd7, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd5, 0xff,\n  0xd4, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd2, 0xff,\n  0xd5, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xd7, 0xff,\n  0xd5, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xdd, 0xff, 0xda, 0xff,\n  0xdb, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xde, 0xff,\n  0xda, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xde, 0xff,\n  0xe0, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xdd, 0xff,\n  0xdd, 0xff, 0xde, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xde, 0xff, 0xdd, 0xff,\n  0xdd, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xd7, 0xff, 0xdd, 0xff, 0xdb, 0xff,\n  0xda, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd5, 0xff, 0xd8, 0xff,\n  0xd5, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd7, 0xff,\n  0xd8, 0xff, 0xda, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd4, 0xff, 0xd5, 0xff,\n  0xd5, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd7, 0xff,\n  0xd8, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd8, 0xff,\n  0xd7, 0xff, 0xd4, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd2, 0xff, 0xd8, 0xff,\n  0xd4, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd7, 0xff,\n  0xda, 0xff, 0xd5, 0xff, 0xda, 0xff, 0xda, 0xff, 0xd7, 0xff, 0xe0, 0xff,\n  0xda, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdd, 0xff,\n  0xdb, 0xff, 0xdb, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xe0, 0xff, 0xde, 0xff,\n  0xe0, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe3, 0xff,\n  0xe0, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xde, 0xff,\n  0xdd, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xdb, 0xff,\n  0xdb, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff,\n  0xdd, 0xff, 0xe0, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xde, 0xff,\n  0xe0, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xe1, 0xff,\n  0xe7, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xf0, 0xff,\n  0xef, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x07, 0x00, 0x07, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x13, 0x00, 0x16, 0x00, 0x19, 0x00,\n  0x1d, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x25, 0x00, 0x26, 0x00,\n  0x29, 0x00, 0x2c, 0x00, 0x2c, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x34, 0x00,\n  0x34, 0x00, 0x37, 0x00, 0x35, 0x00, 0x3b, 0x00, 0x3a, 0x00, 0x3b, 0x00,\n  0x3e, 0x00, 0x3e, 0x00, 0x41, 0x00, 0x40, 0x00, 0x41, 0x00, 0x44, 0x00,\n  0x47, 0x00, 0x49, 0x00, 0x49, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x4d, 0x00,\n  0x4d, 0x00, 0x4d, 0x00, 0x50, 0x00, 0x4f, 0x00, 0x4f, 0x00, 0x53, 0x00,\n  0x50, 0x00, 0x55, 0x00, 0x52, 0x00, 0x52, 0x00, 0x53, 0x00, 0x53, 0x00,\n  0x50, 0x00, 0x52, 0x00, 0x53, 0x00, 0x52, 0x00, 0x52, 0x00, 0x50, 0x00,\n  0x4f, 0x00, 0x4f, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x4d, 0x00,\n  0x4c, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x46, 0x00,\n  0x47, 0x00, 0x44, 0x00, 0x46, 0x00, 0x44, 0x00, 0x44, 0x00, 0x40, 0x00,\n  0x44, 0x00, 0x40, 0x00, 0x43, 0x00, 0x40, 0x00, 0x3e, 0x00, 0x40, 0x00,\n  0x3e, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x3b, 0x00, 0x38, 0x00,\n  0x3a, 0x00, 0x35, 0x00, 0x35, 0x00, 0x35, 0x00, 0x34, 0x00, 0x2f, 0x00,\n  0x31, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x28, 0x00,\n  0x2e, 0x00, 0x23, 0x00, 0x25, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1f, 0x00,\n  0x1c, 0x00, 0x19, 0x00, 0x16, 0x00, 0x14, 0x00, 0x10, 0x00, 0x11, 0x00,\n  0x0d, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff,\n  0xf0, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xef, 0xff, 0xed, 0xff, 0xec, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe7, 0xff,\n  0xe6, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xde, 0xff,\n  0xde, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xd7, 0xff,\n  0xd4, 0xff, 0xd5, 0xff, 0xcf, 0xff, 0xd4, 0xff, 0xcf, 0xff, 0xcf, 0xff,\n  0xce, 0xff, 0xce, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xc8, 0xff,\n  0xcc, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xc9, 0xff,\n  0xc8, 0xff, 0xc9, 0xff, 0xcb, 0xff, 0xc9, 0xff, 0xcc, 0xff, 0xcb, 0xff,\n  0xcb, 0xff, 0xce, 0xff, 0xcf, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0xcf, 0xff,\n  0xd1, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd4, 0xff,\n  0xd4, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdd, 0xff,\n  0xd8, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff,\n  0xd8, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xd7, 0xff, 0xdb, 0xff, 0xda, 0xff,\n  0xdb, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xdd, 0xff,\n  0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff,\n  0xdb, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdb, 0xff,\n  0xde, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xde, 0xff, 0xde, 0xff, 0xde, 0xff,\n  0xe1, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe4, 0xff,\n  0xe0, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe9, 0xff,\n  0xe6, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe9, 0xff,\n  0xea, 0xff, 0xec, 0xff, 0xef, 0xff, 0xef, 0xff, 0xec, 0xff, 0xf0, 0xff,\n  0xf2, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf6, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0b, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00,\n  0x14, 0x00, 0x19, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1d, 0x00,\n  0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x25, 0x00, 0x26, 0x00, 0x28, 0x00,\n  0x2c, 0x00, 0x2c, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x34, 0x00, 0x37, 0x00,\n  0x37, 0x00, 0x3b, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x43, 0x00, 0x40, 0x00,\n  0x46, 0x00, 0x46, 0x00, 0x46, 0x00, 0x4c, 0x00, 0x4c, 0x00, 0x4d, 0x00,\n  0x4f, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x52, 0x00,\n  0x52, 0x00, 0x50, 0x00, 0x53, 0x00, 0x50, 0x00, 0x52, 0x00, 0x52, 0x00,\n  0x4d, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x4a, 0x00,\n  0x46, 0x00, 0x44, 0x00, 0x46, 0x00, 0x41, 0x00, 0x40, 0x00, 0x3d, 0x00,\n  0x3e, 0x00, 0x38, 0x00, 0x37, 0x00, 0x37, 0x00, 0x32, 0x00, 0x31, 0x00,\n  0x2c, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x26, 0x00, 0x25, 0x00, 0x23, 0x00,\n  0x1f, 0x00, 0x1d, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1a, 0x00,\n  0x1a, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x1a, 0x00,\n  0x1c, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1d, 0x00,\n  0x1d, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1f, 0x00,\n  0x1d, 0x00, 0x23, 0x00, 0x22, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x23, 0x00,\n  0x25, 0x00, 0x22, 0x00, 0x23, 0x00, 0x25, 0x00, 0x23, 0x00, 0x23, 0x00,\n  0x22, 0x00, 0x26, 0x00, 0x23, 0x00, 0x23, 0x00, 0x20, 0x00, 0x22, 0x00,\n  0x1f, 0x00, 0x20, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x1c, 0x00,\n  0x16, 0x00, 0x17, 0x00, 0x17, 0x00, 0x13, 0x00, 0x16, 0x00, 0x11, 0x00,\n  0x10, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xef, 0xff,\n  0xea, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe3, 0xff,\n  0xdd, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd2, 0xff,\n  0xce, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xc8, 0xff, 0xc5, 0xff,\n  0xc5, 0xff, 0xc3, 0xff, 0xc0, 0xff, 0xbf, 0xff, 0xba, 0xff, 0xbc, 0xff,\n  0xb9, 0xff, 0xb9, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb3, 0xff, 0xb1, 0xff,\n  0xb1, 0xff, 0xad, 0xff, 0xab, 0xff, 0xab, 0xff, 0xaa, 0xff, 0xa5, 0xff,\n  0xa5, 0xff, 0xa2, 0xff, 0xa2, 0xff, 0xa1, 0xff, 0x9b, 0xff, 0x9c, 0xff,\n  0x9c, 0xff, 0x99, 0xff, 0x96, 0xff, 0x96, 0xff, 0x95, 0xff, 0x96, 0xff,\n  0x95, 0xff, 0x92, 0xff, 0x95, 0xff, 0x8f, 0xff, 0x92, 0xff, 0x93, 0xff,\n  0x92, 0xff, 0x95, 0xff, 0x93, 0xff, 0x93, 0xff, 0x96, 0xff, 0x95, 0xff,\n  0x93, 0xff, 0x99, 0xff, 0x98, 0xff, 0x9c, 0xff, 0x9b, 0xff, 0x99, 0xff,\n  0x9e, 0xff, 0x9e, 0xff, 0xa4, 0xff, 0xa1, 0xff, 0xa4, 0xff, 0xa5, 0xff,\n  0xa5, 0xff, 0xa5, 0xff, 0xa7, 0xff, 0xa8, 0xff, 0xab, 0xff, 0xae, 0xff,\n  0xab, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb3, 0xff, 0xb7, 0xff,\n  0xb9, 0xff, 0xb9, 0xff, 0xba, 0xff, 0xb9, 0xff, 0xbd, 0xff, 0xba, 0xff,\n  0xc0, 0xff, 0xc2, 0xff, 0xc2, 0xff, 0xc6, 0xff, 0xc3, 0xff, 0xc8, 0xff,\n  0xc9, 0xff, 0xc8, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0xd1, 0xff,\n  0xd4, 0xff, 0xd4, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xda, 0xff,\n  0xda, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe1, 0xff,\n  0xe3, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe9, 0xff,\n  0xea, 0xff, 0xec, 0xff, 0xed, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xf2, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x10, 0x00, 0x14, 0x00,\n  0x16, 0x00, 0x19, 0x00, 0x1c, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x20, 0x00,\n  0x25, 0x00, 0x29, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x2f, 0x00,\n  0x37, 0x00, 0x37, 0x00, 0x38, 0x00, 0x3d, 0x00, 0x3b, 0x00, 0x3d, 0x00,\n  0x41, 0x00, 0x41, 0x00, 0x43, 0x00, 0x44, 0x00, 0x43, 0x00, 0x47, 0x00,\n  0x44, 0x00, 0x49, 0x00, 0x49, 0x00, 0x47, 0x00, 0x4d, 0x00, 0x49, 0x00,\n  0x49, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x4a, 0x00,\n  0x47, 0x00, 0x4a, 0x00, 0x47, 0x00, 0x49, 0x00, 0x44, 0x00, 0x44, 0x00,\n  0x44, 0x00, 0x46, 0x00, 0x43, 0x00, 0x41, 0x00, 0x41, 0x00, 0x3d, 0x00,\n  0x40, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x38, 0x00, 0x3b, 0x00, 0x3b, 0x00,\n  0x3b, 0x00, 0x3a, 0x00, 0x37, 0x00, 0x3a, 0x00, 0x35, 0x00, 0x37, 0x00,\n  0x38, 0x00, 0x37, 0x00, 0x35, 0x00, 0x35, 0x00, 0x37, 0x00, 0x38, 0x00,\n  0x34, 0x00, 0x38, 0x00, 0x37, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x37, 0x00,\n  0x3a, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3d, 0x00,\n  0x3b, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x40, 0x00, 0x3d, 0x00,\n  0x3d, 0x00, 0x3e, 0x00, 0x3d, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x3e, 0x00,\n  0x40, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x3a, 0x00, 0x3e, 0x00, 0x3b, 0x00,\n  0x3b, 0x00, 0x38, 0x00, 0x38, 0x00, 0x35, 0x00, 0x37, 0x00, 0x31, 0x00,\n  0x31, 0x00, 0x2c, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x23, 0x00, 0x25, 0x00,\n  0x20, 0x00, 0x1d, 0x00, 0x19, 0x00, 0x19, 0x00, 0x16, 0x00, 0x14, 0x00,\n  0x11, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf2, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf0, 0xff,\n  0xed, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xed, 0xff,\n  0xef, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf2, 0xff,\n  0xf3, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf5, 0xff,\n  0xf3, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff,\n  0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xef, 0xff, 0xed, 0xff, 0xec, 0xff, 0xec, 0xff, 0xe9, 0xff,\n  0xe9, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe3, 0xff, 0xe1, 0xff,\n  0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xde, 0xff,\n  0xd8, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xde, 0xff, 0xdb, 0xff,\n  0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xd8, 0xff,\n  0xda, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xd8, 0xff, 0xd7, 0xff, 0xd8, 0xff,\n  0xd7, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xd5, 0xff,\n  0xd2, 0xff, 0xd4, 0xff, 0xd1, 0xff, 0xcf, 0xff, 0xd1, 0xff, 0xce, 0xff,\n  0xcc, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xcb, 0xff,\n  0xc8, 0xff, 0xc9, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xcc, 0xff, 0xc9, 0xff,\n  0xcc, 0xff, 0xc8, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xcc, 0xff, 0xce, 0xff,\n  0xce, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd4, 0xff, 0xda, 0xff,\n  0xd4, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xde, 0xff, 0xde, 0xff,\n  0xe1, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xec, 0xff,\n  0xef, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x07, 0x00, 0x04, 0x00,\n  0x08, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x08, 0x00, 0x0e, 0x00, 0x0a, 0x00,\n  0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0d, 0x00,\n  0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0d, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0d, 0x00,\n  0x0d, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0a, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x07, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0a, 0x00,\n  0x0b, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00,\n  0x0e, 0x00, 0x13, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x10, 0x00,\n  0x13, 0x00, 0x11, 0x00, 0x13, 0x00, 0x14, 0x00, 0x11, 0x00, 0x14, 0x00,\n  0x14, 0x00, 0x17, 0x00, 0x11, 0x00, 0x16, 0x00, 0x14, 0x00, 0x11, 0x00,\n  0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x11, 0x00, 0x14, 0x00, 0x14, 0x00,\n  0x14, 0x00, 0x11, 0x00, 0x11, 0x00, 0x13, 0x00, 0x13, 0x00, 0x10, 0x00,\n  0x0e, 0x00, 0x10, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x10, 0x00, 0x0d, 0x00,\n  0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x08, 0x00,\n  0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0e, 0x00,\n  0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00,\n  0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0x0e, 0x00,\n  0x0d, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x11, 0x00,\n  0x11, 0x00, 0x10, 0x00, 0x14, 0x00, 0x13, 0x00, 0x13, 0x00, 0x16, 0x00,\n  0x14, 0x00, 0x14, 0x00, 0x14, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00,\n  0x17, 0x00, 0x14, 0x00, 0x16, 0x00, 0x17, 0x00, 0x14, 0x00, 0x19, 0x00,\n  0x16, 0x00, 0x19, 0x00, 0x17, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x17, 0x00,\n  0x1a, 0x00, 0x19, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x1a, 0x00,\n  0x19, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1d, 0x00,\n  0x1d, 0x00, 0x1c, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1d, 0x00, 0x1a, 0x00,\n  0x1c, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x16, 0x00,\n  0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x14, 0x00, 0x11, 0x00, 0x11, 0x00,\n  0x10, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x04, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff,\n  0xf6, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff,\n  0xed, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xed, 0xff,\n  0xed, 0xff, 0xec, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe7, 0xff,\n  0xe6, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0xe3, 0xff,\n  0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xde, 0xff,\n  0xdb, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xd8, 0xff, 0xde, 0xff,\n  0xdb, 0xff, 0xdb, 0xff, 0xda, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdb, 0xff,\n  0xdd, 0xff, 0xdb, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe0, 0xff,\n  0xe0, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe0, 0xff,\n  0xe4, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xe4, 0xff, 0xe3, 0xff,\n  0xe6, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff,\n  0xea, 0xff, 0xea, 0xff, 0xea, 0xff, 0xed, 0xff, 0xed, 0xff, 0xec, 0xff,\n  0xef, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x07, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x13, 0x00,\n  0x14, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x22, 0x00,\n  0x20, 0x00, 0x23, 0x00, 0x26, 0x00, 0x25, 0x00, 0x26, 0x00, 0x28, 0x00,\n  0x28, 0x00, 0x28, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x28, 0x00, 0x28, 0x00,\n  0x28, 0x00, 0x29, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x20, 0x00,\n  0x23, 0x00, 0x22, 0x00, 0x20, 0x00, 0x1a, 0x00, 0x1f, 0x00, 0x1d, 0x00,\n  0x1c, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x19, 0x00,\n  0x16, 0x00, 0x13, 0x00, 0x13, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0e, 0x00,\n  0x0b, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf3, 0xff, 0xf3, 0xff,\n  0xea, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe0, 0xff,\n  0xe0, 0xff, 0xdb, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xda, 0xff, 0xda, 0xff,\n  0xd8, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xd8, 0xff,\n  0xd5, 0xff, 0xd5, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xd8, 0xff, 0xda, 0xff,\n  0xdd, 0xff, 0xdd, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xe0, 0xff, 0xde, 0xff,\n  0xe3, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xe6, 0xff,\n  0xe9, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff,\n  0xf2, 0xff, 0xed, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x08, 0x00,\n  0x04, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x10, 0x00, 0x10, 0x00, 0x13, 0x00, 0x11, 0x00, 0x14, 0x00, 0x14, 0x00,\n  0x17, 0x00\n};\n#define  tr808_mt_wav_len 31814\nunsigned char tr808_oh_wav[] = {\n  0x52, 0x49, 0x46, 0x46, 0xae, 0x02, 0x01, 0x00, 0x57, 0x41, 0x56, 0x45,\n  0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00,\n  0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e,\n  0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61,\n  0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61,\n  0x74, 0x61, 0x68, 0x02, 0x01, 0x00, 0xec, 0xff, 0xf8, 0xff, 0x26, 0x00,\n  0xfe, 0xff, 0xf0, 0xff, 0xd7, 0xff, 0x0a, 0x00, 0x7b, 0xfe, 0xfd, 0xf8,\n  0xfc, 0x01, 0x4e, 0x0c, 0x97, 0xfd, 0x4f, 0xef, 0x65, 0xfd, 0xe7, 0x0d,\n  0x6c, 0x0f, 0x7d, 0x0c, 0xb3, 0xf6, 0xf1, 0xe2, 0x46, 0xf4, 0xf5, 0x0f,\n  0x3b, 0x18, 0x12, 0x10, 0x1d, 0xfa, 0xdf, 0xe2, 0x88, 0xe8, 0x96, 0x05,\n  0xdf, 0x19, 0x66, 0x08, 0xd0, 0xf4, 0x3d, 0xef, 0x3e, 0xf6, 0x5d, 0x09,\n  0xb1, 0x1f, 0xbf, 0x1e, 0x5d, 0xe7, 0x92, 0xd5, 0x59, 0xf2, 0xb6, 0x07,\n  0xd0, 0x0f, 0xd0, 0x0c, 0xcb, 0x03, 0x4a, 0xff, 0x40, 0x13, 0x5b, 0x14,\n  0x08, 0xd2, 0xad, 0xc9, 0x4a, 0x0e, 0xdc, 0x2b, 0x81, 0x11, 0xa2, 0xf5,\n  0xe5, 0xfa, 0xd6, 0x07, 0x8d, 0xfc, 0x42, 0xee, 0x8d, 0xf8, 0x02, 0x0b,\n  0xbf, 0x06, 0x65, 0xfb, 0x09, 0x02, 0xce, 0x07, 0x63, 0x02, 0x2b, 0x07,\n  0xa8, 0x0e, 0x41, 0xe9, 0x37, 0xd6, 0x7a, 0xf9, 0xdf, 0x12, 0x77, 0x0e,\n  0x84, 0x04, 0xe7, 0x06, 0x91, 0x25, 0xb7, 0xfc, 0x88, 0xcc, 0xd1, 0xe3,\n  0x8c, 0x05, 0x09, 0x17, 0x13, 0x10, 0xcf, 0x04, 0x0c, 0x05, 0x53, 0x06,\n  0x51, 0xf2, 0x84, 0xe8, 0xf4, 0xfb, 0xc1, 0x12, 0xbf, 0x16, 0xbd, 0x09,\n  0x3f, 0xf0, 0xcc, 0xdf, 0x4a, 0xf3, 0x87, 0x0c, 0x84, 0x11, 0x5f, 0xfc,\n  0x24, 0xf8, 0x17, 0x03, 0x4c, 0x1f, 0x7d, 0x1b, 0x46, 0xd8, 0x6c, 0xc8,\n  0x86, 0xfb, 0x42, 0x28, 0x11, 0x1b, 0xa8, 0x08, 0x8f, 0x03, 0x23, 0xea,\n  0x5e, 0xd9, 0x3d, 0x10, 0x33, 0x24, 0xec, 0xf3, 0xf7, 0xda, 0x9b, 0xf5,\n  0x38, 0x1c, 0x4a, 0x15, 0xf2, 0x04, 0x1b, 0xfd, 0x0a, 0xee, 0x16, 0xf4,\n  0x12, 0x0a, 0x4c, 0x21, 0x19, 0x03, 0x2d, 0xcd, 0x7a, 0xeb, 0x3c, 0x1a,\n  0x8c, 0x29, 0x14, 0x25, 0x32, 0xe0, 0xcd, 0xb2, 0xe0, 0xe8, 0x7e, 0x29,\n  0x0d, 0x33, 0x22, 0x16, 0x28, 0xe5, 0xd7, 0xd6, 0xdc, 0xf3, 0x22, 0x0f,\n  0x9c, 0x18, 0x83, 0x11, 0xc8, 0xfa, 0xf6, 0xe3, 0x92, 0xea, 0xd2, 0x06,\n  0x04, 0x22, 0x90, 0x24, 0x7a, 0xed, 0x69, 0xd0, 0x7a, 0xe5, 0x63, 0x10,\n  0xed, 0x20, 0xc0, 0x0b, 0x79, 0xfa, 0xe5, 0xf8, 0x97, 0xfc, 0x77, 0x00,\n  0x2e, 0x10, 0x46, 0x10, 0x53, 0xe7, 0x55, 0xd6, 0xc7, 0xfd, 0xb2, 0x1f,\n  0x00, 0x1f, 0xd9, 0x0d, 0x12, 0xef, 0x55, 0xd7, 0x34, 0xeb, 0x8b, 0x11,\n  0x05, 0x1a, 0x08, 0x09, 0x8c, 0xf0, 0x34, 0xed, 0x0f, 0x07, 0xcd, 0x22,\n  0xf5, 0x0d, 0x40, 0xdd, 0x11, 0xe8, 0x29, 0x09, 0x62, 0x0e, 0x33, 0x05,\n  0x56, 0xfb, 0xf7, 0xf4, 0xea, 0xfb, 0xd2, 0x0a, 0xf9, 0x14, 0x80, 0x09,\n  0x65, 0xea, 0xe5, 0xe7, 0x52, 0xfe, 0x8e, 0x0e, 0x30, 0x0e, 0x4f, 0xfc,\n  0x26, 0xef, 0xb8, 0xfb, 0x6d, 0x1c, 0x9f, 0x14, 0x47, 0xe9, 0x75, 0xe3,\n  0xa6, 0xf7, 0x13, 0x16, 0x2b, 0x13, 0x89, 0xfc, 0x2f, 0xf0, 0x5c, 0xed,\n  0x17, 0x02, 0x82, 0x12, 0x96, 0x0b, 0x49, 0x00, 0xb8, 0x01, 0x72, 0xfb,\n  0x3c, 0xf2, 0x05, 0xfc, 0x9b, 0x07, 0xc4, 0x07, 0x08, 0x06, 0x95, 0x17,\n  0x31, 0x03, 0x75, 0xcb, 0x14, 0xd9, 0x5b, 0x16, 0xb4, 0x2c, 0x08, 0x21,\n  0x28, 0xfe, 0xd2, 0xc8, 0xa1, 0xcf, 0x71, 0x12, 0x45, 0x2c, 0xef, 0x1b,\n  0xe6, 0x14, 0x5c, 0xe2, 0x6f, 0xcd, 0x92, 0xed, 0x61, 0x15, 0x48, 0x1d,\n  0xb1, 0x1c, 0x6d, 0x08, 0xa1, 0xd9, 0x49, 0xd8, 0x6f, 0xfc, 0xdf, 0x1f,\n  0x85, 0x16, 0xa2, 0x01, 0x46, 0xf5, 0xd3, 0xf7, 0x72, 0xff, 0x2d, 0x09,\n  0x9a, 0x0a, 0xda, 0x13, 0x3f, 0x04, 0xe9, 0xce, 0x83, 0xd8, 0x07, 0x05,\n  0x91, 0x1b, 0xeb, 0x1f, 0x4a, 0x1b, 0xa7, 0xea, 0x2e, 0xcd, 0x37, 0xf1,\n  0x2f, 0x1e, 0xb9, 0x1b, 0x3a, 0x04, 0x27, 0x03, 0xe2, 0xf6, 0x34, 0xe4,\n  0x7a, 0xf6, 0x54, 0x11, 0x12, 0x14, 0x1f, 0x0f, 0x09, 0xff, 0x33, 0xe5,\n  0x9d, 0xe0, 0xf8, 0x00, 0xa6, 0x18, 0x25, 0x22, 0xf6, 0x20, 0x21, 0xd9,\n  0x2b, 0xbf, 0xc3, 0xec, 0x54, 0x26, 0x7e, 0x23, 0x0f, 0x15, 0xa4, 0x12,\n  0xb5, 0xd3, 0x40, 0xc7, 0xc5, 0x03, 0x0c, 0x2b, 0x9a, 0x20, 0x10, 0x15,\n  0x01, 0xe7, 0x80, 0xc7, 0x1f, 0xee, 0x83, 0x29, 0x54, 0x24, 0x8c, 0xf5,\n  0x1d, 0xdf, 0x84, 0xef, 0xd3, 0x10, 0xa4, 0x18, 0x6f, 0x12, 0x89, 0x03,\n  0x95, 0xe7, 0xdb, 0xde, 0xbd, 0xfb, 0xdb, 0x17, 0x3e, 0x13, 0x85, 0xfd,\n  0x77, 0xf4, 0xde, 0xf3, 0xee, 0xf5, 0x88, 0x07, 0x63, 0x10, 0xe2, 0x07,\n  0xf2, 0x08, 0x71, 0x14, 0x2b, 0xf3, 0xb8, 0xc7, 0x5c, 0xe7, 0x3b, 0x22,\n  0xf2, 0x21, 0xf4, 0x1e, 0xaf, 0x06, 0xe5, 0xc4, 0x88, 0xcd, 0x1f, 0x0f,\n  0xbf, 0x2d, 0xe5, 0x12, 0x57, 0x02, 0xb7, 0x01, 0x83, 0xe6, 0x44, 0xe0,\n  0xa6, 0x05, 0x32, 0x1a, 0x1d, 0x0d, 0x2b, 0x00, 0x14, 0x17, 0x48, 0x0a,\n  0xc0, 0xc8, 0x2d, 0xce, 0xac, 0x0e, 0x66, 0x34, 0xbb, 0x20, 0x34, 0xed,\n  0x06, 0xdd, 0xe2, 0xf1, 0x68, 0x09, 0x56, 0x12, 0x7c, 0x11, 0x1f, 0x01,\n  0xc3, 0xec, 0x2c, 0xed, 0x0d, 0xf8, 0xac, 0x0e, 0x91, 0x0f, 0x10, 0x15,\n  0xa8, 0x17, 0xc3, 0xdf, 0x94, 0xd1, 0x45, 0xfa, 0xe9, 0x18, 0xcd, 0x16,\n  0x17, 0x03, 0xac, 0xf3, 0x33, 0xee, 0x6c, 0xf9, 0x88, 0x0c, 0xf4, 0x10,\n  0x0f, 0x0e, 0x80, 0x06, 0xab, 0xef, 0x3a, 0xe2, 0x58, 0xf7, 0x7f, 0x13,\n  0x19, 0x1c, 0xe8, 0x01, 0xc2, 0xe6, 0x95, 0xef, 0xdd, 0x03, 0xe7, 0x0b,\n  0x7c, 0xfe, 0x35, 0xf9, 0x4b, 0x04, 0x0c, 0x0b, 0x71, 0x0f, 0x0f, 0x11,\n  0xd5, 0xe2, 0x02, 0xd1, 0x53, 0x04, 0xea, 0x29, 0xac, 0x31, 0x41, 0xf0,\n  0x85, 0xc4, 0xc1, 0xdf, 0x44, 0x0d, 0xfa, 0x23, 0x33, 0x14, 0x8d, 0x01,\n  0xe8, 0xf1, 0x21, 0xef, 0x9d, 0xfd, 0xa2, 0x0b, 0xfe, 0x0c, 0x15, 0x09,\n  0x6d, 0xfd, 0x2b, 0xee, 0x6d, 0xef, 0xfb, 0x02, 0x5c, 0x12, 0x0b, 0x12,\n  0x55, 0xfa, 0xb1, 0xe3, 0x4e, 0xf2, 0x91, 0x03, 0x10, 0x09, 0x6f, 0x0a,\n  0x78, 0x18, 0x0d, 0x11, 0xcf, 0xdc, 0x54, 0xd4, 0x49, 0x03, 0x3f, 0x22,\n  0x0f, 0x1a, 0x3c, 0xff, 0xf1, 0xe2, 0xbb, 0xee, 0xf4, 0x0a, 0xbe, 0x19,\n  0x3c, 0x2c, 0x11, 0xef, 0x9f, 0xb2, 0xa7, 0xdd, 0x08, 0x27, 0xc3, 0x2f,\n  0xfa, 0x1a, 0x85, 0xfc, 0xa7, 0xcc, 0x81, 0xda, 0x73, 0x13, 0x02, 0x29,\n  0x9c, 0x1e, 0xf7, 0x00, 0xfb, 0xd5, 0x14, 0xdc, 0x9b, 0x03, 0xca, 0x19,\n  0x0f, 0x13, 0x96, 0xff, 0xa2, 0xf4, 0x7b, 0xf7, 0x3b, 0x00, 0x60, 0x05,\n  0xce, 0x04, 0xf8, 0xff, 0xc5, 0xfc, 0x73, 0xfd, 0xf0, 0xff, 0x91, 0x01,\n  0xb8, 0x01, 0x04, 0x00, 0x11, 0xff, 0xb3, 0xff, 0x83, 0xff, 0x72, 0xff,\n  0x6a, 0xf6, 0x6c, 0xf8, 0xc7, 0x09, 0x95, 0x0d, 0x7b, 0x07, 0x7c, 0x1f,\n  0x4a, 0xfb, 0xd3, 0xb7, 0x80, 0xe4, 0x97, 0x23, 0xe9, 0x3c, 0x4d, 0x1b,\n  0x7a, 0xc6, 0x26, 0xc2, 0x9a, 0x0a, 0x27, 0x2f, 0x52, 0x13, 0x98, 0xf9,\n  0x83, 0xfd, 0xec, 0xf3, 0xa9, 0xf0, 0xdf, 0x03, 0xa1, 0x0c, 0x22, 0x05,\n  0x2e, 0xfe, 0x6f, 0x03, 0x7c, 0x06, 0xd1, 0xf3, 0xae, 0xef, 0x43, 0xfe,\n  0x5e, 0x0d, 0xc3, 0x05, 0x94, 0x18, 0x5f, 0x2d, 0xfc, 0xc8, 0xf3, 0xa4,\n  0x85, 0xfd, 0x39, 0x3f, 0x77, 0x28, 0x48, 0x0d, 0x0d, 0xfc, 0xa2, 0xd7,\n  0xfb, 0xde, 0xa2, 0xfe, 0x12, 0x16, 0xf8, 0x13, 0xf5, 0x02, 0x4d, 0xfc,\n  0xac, 0x0b, 0x9c, 0x1a, 0x75, 0xef, 0xce, 0xcb, 0xea, 0xe3, 0x1d, 0x18,\n  0x7e, 0x24, 0x21, 0x14, 0x25, 0x15, 0x53, 0xe6, 0x62, 0xd1, 0xda, 0xf3,\n  0xdc, 0x10, 0x4f, 0x13, 0x84, 0x07, 0x3b, 0x03, 0xaf, 0x05, 0xed, 0xfe,\n  0x7c, 0xf6, 0x64, 0xf4, 0x2a, 0xf8, 0x1f, 0x01, 0x5f, 0x00, 0xe5, 0x03,\n  0x47, 0x09, 0x32, 0x0b, 0x63, 0xff, 0x40, 0xf1, 0x86, 0xfb, 0x84, 0x0f,\n  0x91, 0x1e, 0x86, 0x00, 0xf0, 0xce, 0x13, 0xdf, 0x3e, 0x0a, 0x98, 0x19,\n  0xaa, 0x0c, 0x31, 0x12, 0x92, 0x08, 0xcf, 0xe3, 0x6b, 0xe7, 0xa0, 0x00,\n  0x9d, 0x0e, 0x33, 0x04, 0x78, 0xfb, 0xbf, 0x02, 0x90, 0x0b, 0xaf, 0x0d,\n  0x87, 0xfe, 0xf8, 0xed, 0x0a, 0xeb, 0xfa, 0xf9, 0x34, 0x08, 0xce, 0x20,\n  0x0e, 0x1f, 0x40, 0xe3, 0x08, 0xcf, 0xec, 0xee, 0x04, 0x1c, 0x56, 0x1e,\n  0x5f, 0x04, 0xbe, 0x01, 0xeb, 0x01, 0xc1, 0xe8, 0x14, 0xef, 0x97, 0x0c,\n  0x81, 0x11, 0xda, 0xff, 0xf7, 0xf4, 0xcb, 0xfc, 0x4b, 0x07, 0xae, 0x09,\n  0x37, 0x02, 0x75, 0xf9, 0x6a, 0xf6, 0xe9, 0xfc, 0xcd, 0xfb, 0x7a, 0xf5,\n  0x0b, 0x03, 0xbf, 0x11, 0xdf, 0x28, 0xb3, 0xff, 0x9a, 0xcd, 0xcf, 0xdd,\n  0xb3, 0x05, 0x5f, 0x20, 0x66, 0x14, 0x96, 0x0c, 0x21, 0xff, 0xd3, 0xe7,\n  0x01, 0xeb, 0x15, 0x03, 0x5f, 0x10, 0x8b, 0x07, 0x02, 0xf5, 0x66, 0xf0,\n  0xfb, 0x02, 0x80, 0x20, 0x64, 0x12, 0x21, 0xe5, 0x42, 0xe2, 0x19, 0xf7,\n  0x94, 0x0e, 0xcb, 0x13, 0xbe, 0x13, 0x62, 0x06, 0xac, 0xe5, 0x83, 0xe4,\n  0x31, 0xf7, 0x08, 0x0e, 0x09, 0x14, 0x59, 0x09, 0x84, 0x07, 0x9e, 0x06,\n  0x34, 0xea, 0x38, 0xe3, 0x54, 0xfe, 0xff, 0x24, 0xcd, 0x25, 0x23, 0xe4,\n  0xff, 0xd2, 0x87, 0xee, 0x19, 0x0f, 0x41, 0x1a, 0x4c, 0x0b, 0x86, 0xff,\n  0xee, 0x08, 0x49, 0xfd, 0x21, 0xe3, 0x46, 0xf2, 0x02, 0x0f, 0xff, 0x11,\n  0x81, 0x0d, 0xdc, 0x1f, 0x31, 0xee, 0x6d, 0xb6, 0xed, 0xe4, 0xc8, 0x27,\n  0x4a, 0x30, 0x9d, 0x19, 0x3e, 0xf0, 0xeb, 0xcd, 0xb6, 0xe3, 0x3e, 0x10,\n  0x42, 0x34, 0xc2, 0x1a, 0x7a, 0xde, 0x58, 0xd1, 0x51, 0xf5, 0x59, 0x1e,\n  0x2c, 0x19, 0x87, 0x0a, 0x60, 0x07, 0x64, 0xf0, 0x08, 0xd8, 0xd8, 0xf3,\n  0xdf, 0x13, 0x5f, 0x24, 0x7f, 0x25, 0x82, 0xe2, 0x03, 0xc4, 0x93, 0xe8,\n  0x8a, 0x1d, 0x17, 0x25, 0xff, 0x05, 0x01, 0xf8, 0xd7, 0x00, 0x26, 0xf8,\n  0x29, 0xf2, 0x99, 0x02, 0x7f, 0x0a, 0xcb, 0x13, 0x7b, 0x27, 0x90, 0xdf,\n  0x60, 0xa9, 0x0a, 0xf7, 0x53, 0x37, 0xa9, 0x27, 0xa7, 0x0f, 0x7d, 0xf9,\n  0x15, 0xc9, 0x4a, 0xdb, 0x1c, 0x1c, 0xdb, 0x26, 0x61, 0x2b, 0xfb, 0xf6,\n  0xee, 0xb5, 0xef, 0xdd, 0x80, 0x23, 0xc5, 0x2a, 0x82, 0x18, 0x18, 0xf6,\n  0x7e, 0xce, 0x85, 0xeb, 0x4a, 0x1b, 0xcd, 0x22, 0xb3, 0x02, 0x95, 0xe9,\n  0xc6, 0x05, 0xff, 0x03, 0xb7, 0xe8, 0x27, 0xee, 0x5b, 0x00, 0xc8, 0x13,\n  0xdf, 0x0f, 0x5d, 0x09, 0xc9, 0x0a, 0x76, 0xf7, 0xde, 0xde, 0xf1, 0xfd,\n  0x1a, 0x13, 0xd4, 0xff, 0xfb, 0xf2, 0xe2, 0xf6, 0xa7, 0x09, 0x7f, 0x12,\n  0x7f, 0x11, 0x9f, 0xff, 0xa3, 0xe4, 0x93, 0xe9, 0x58, 0x04, 0x86, 0x12,\n  0x1c, 0x0b, 0x4f, 0xfd, 0x00, 0xf8, 0x5d, 0xfb, 0x19, 0x00, 0xf4, 0xfa,\n  0x59, 0xfc, 0x61, 0x0c, 0x4a, 0x20, 0x13, 0x02, 0xb3, 0xd2, 0x85, 0xdf,\n  0xd0, 0x13, 0xff, 0x1f, 0x95, 0x1d, 0x04, 0x0e, 0xf4, 0xd1, 0x01, 0xcd,\n  0x67, 0x00, 0x17, 0x27, 0xc4, 0x1c, 0xfa, 0x0f, 0xf5, 0xf8, 0x36, 0xd7,\n  0xed, 0xe3, 0xc5, 0x0a, 0xd4, 0x27, 0xae, 0x11, 0xe5, 0xe8, 0xaf, 0xe2,\n  0x48, 0xfe, 0x8c, 0x18, 0xe6, 0x1b, 0xfd, 0xfd, 0x71, 0xe1, 0x81, 0xed,\n  0x7c, 0x04, 0xd9, 0x11, 0x5f, 0x0e, 0xb1, 0xfc, 0x9e, 0xf1, 0x40, 0xf5,\n  0x5f, 0x02, 0xb5, 0x10, 0xda, 0x10, 0x36, 0xf8, 0xe2, 0xea, 0x77, 0xf7,\n  0xfc, 0x05, 0xca, 0x0c, 0xac, 0x06, 0xf1, 0xfb, 0xaf, 0xf7, 0xe1, 0xfb,\n  0x6c, 0xf8, 0x7f, 0x04, 0x04, 0x21, 0x26, 0x04, 0x62, 0xe0, 0xa6, 0xe1,\n  0x2e, 0x07, 0x91, 0x1c, 0x4e, 0x0c, 0x01, 0xfa, 0x85, 0xf8, 0x52, 0x00,\n  0xdb, 0x01, 0x80, 0xff, 0xf3, 0xfe, 0x51, 0x01, 0xb7, 0x02, 0x7f, 0x01,\n  0x01, 0xfd, 0xce, 0xfb, 0xef, 0xfd, 0x4f, 0x04, 0x67, 0x08, 0x30, 0x20,\n  0x95, 0xfa, 0xb8, 0xbe, 0x05, 0xda, 0xed, 0x1a, 0x78, 0x2d, 0x46, 0x15,\n  0x39, 0x14, 0xe0, 0xe7, 0x55, 0xc4, 0x6e, 0xf1, 0x90, 0x24, 0x93, 0x23,\n  0xc1, 0x21, 0xb4, 0xeb, 0x7d, 0xba, 0x20, 0xea, 0x48, 0x26, 0xd6, 0x23,\n  0xd3, 0x07, 0x4c, 0x0a, 0x23, 0xed, 0x61, 0xcf, 0xfa, 0xf7, 0xfc, 0x1e,\n  0xde, 0x1e, 0x25, 0x22, 0x9d, 0xeb, 0x6b, 0xbb, 0x58, 0xe4, 0xb3, 0x21,\n  0x2d, 0x28, 0x26, 0x06, 0x17, 0xff, 0xf4, 0x0e, 0xf1, 0xea, 0x13, 0xd1,\n  0x9e, 0xf9, 0x7b, 0x21, 0x81, 0x16, 0x60, 0x14, 0xc4, 0x0e, 0x75, 0xd1,\n  0xe2, 0xca, 0x9f, 0x01, 0x94, 0x29, 0xfe, 0x1e, 0x6a, 0x10, 0xba, 0xf2,\n  0x83, 0xd5, 0x35, 0xe9, 0x2f, 0x0e, 0xc8, 0x1f, 0x1a, 0x16, 0x83, 0xf5,\n  0x43, 0xe4, 0x79, 0xf3, 0x25, 0x03, 0xdf, 0x10, 0x2c, 0x15, 0x4d, 0xfd,\n  0x01, 0xeb, 0x30, 0xf3, 0x8e, 0x00, 0x9c, 0x0e, 0x9f, 0x13, 0x6b, 0xfc,\n  0x90, 0xe9, 0x5f, 0xea, 0x6f, 0x08, 0x5b, 0x17, 0xd6, 0x26, 0x3f, 0x02,\n  0xa1, 0xc5, 0xa6, 0xd8, 0xd9, 0x17, 0x2a, 0x25, 0xf8, 0x1b, 0x82, 0x12,\n  0x49, 0xcf, 0x83, 0xc6, 0x8f, 0x06, 0x90, 0x2c, 0x53, 0x15, 0x73, 0x00,\n  0x1f, 0x02, 0x01, 0xf7, 0x4f, 0xe8, 0xcb, 0xed, 0x40, 0x06, 0x83, 0x14,\n  0x8c, 0x0a, 0xb7, 0x0c, 0x62, 0x0f, 0x89, 0xda, 0x94, 0xd6, 0xd2, 0x0b,\n  0xd3, 0x2e, 0xc4, 0x28, 0x28, 0xe2, 0x59, 0xc6, 0x9e, 0xeb, 0x9f, 0x17,\n  0x1b, 0x1e, 0x9f, 0x10, 0xfe, 0x15, 0x24, 0xee, 0x82, 0xd2, 0x7d, 0xea,\n  0xe3, 0x11, 0x0b, 0x1e, 0xbe, 0x08, 0xb4, 0xf9, 0x99, 0x01, 0x46, 0x12,\n  0x4a, 0x00, 0xe8, 0xde, 0x2a, 0xe6, 0x28, 0x06, 0xde, 0x0f, 0xdf, 0x03,\n  0x30, 0x01, 0x9f, 0x04, 0x57, 0x04, 0xfc, 0x07, 0xca, 0x01, 0x3e, 0xee,\n  0x3b, 0xf3, 0x7c, 0x07, 0x49, 0x0d, 0x5e, 0x0a, 0xf3, 0x04, 0xd1, 0xf2,\n  0xc2, 0xe9, 0xae, 0xfb, 0x0d, 0x10, 0xe0, 0x17, 0x19, 0x0d, 0x8d, 0xe9,\n  0x15, 0xe6, 0xae, 0xfa, 0x05, 0x03, 0x23, 0x02, 0xf0, 0x01, 0x12, 0x0a,\n  0xf2, 0x08, 0x42, 0x0d, 0xfd, 0x0b, 0xee, 0xe8, 0xb2, 0xda, 0x63, 0xfe,\n  0x30, 0x1c, 0x46, 0x1c, 0xd0, 0x0d, 0x8f, 0xeb, 0xfb, 0xd6, 0xf1, 0xf1,\n  0x6e, 0x15, 0x29, 0x15, 0x0d, 0xfc, 0x81, 0xfa, 0xe6, 0x12, 0x17, 0x02,\n  0xac, 0xeb, 0x9d, 0xeb, 0x6b, 0xfc, 0x2b, 0x10, 0x54, 0x19, 0x9b, 0x1e,\n  0xb3, 0xed, 0xe1, 0xce, 0x61, 0xe7, 0x4a, 0x12, 0x1f, 0x22, 0xa0, 0x06,\n  0xeb, 0x07, 0x1d, 0x1c, 0x96, 0xd7, 0x49, 0xc3, 0x8b, 0x06, 0xff, 0x2c,\n  0xa0, 0x15, 0x18, 0xff, 0xbc, 0xff, 0x53, 0xe9, 0x8e, 0xe9, 0x2d, 0x08,\n  0x65, 0x14, 0xaa, 0x0c, 0xb5, 0x08, 0x80, 0xf6, 0x01, 0xe2, 0xab, 0xf2,\n  0x7d, 0x0f, 0x6f, 0x19, 0xf9, 0x24, 0x62, 0xf9, 0xc4, 0xbd, 0x92, 0xd9,\n  0xbf, 0x19, 0x7d, 0x2e, 0xc9, 0x1d, 0x80, 0xf7, 0xc0, 0xd8, 0x9b, 0xeb,\n  0x6f, 0x0a, 0x4d, 0x13, 0x41, 0x09, 0x6c, 0xfb, 0xeb, 0xf6, 0x99, 0xfd,\n  0xdd, 0xff, 0xc1, 0xfa, 0xae, 0x01, 0xf3, 0x06, 0xaf, 0x15, 0xbf, 0x14,\n  0xa5, 0xe0, 0xbb, 0xcd, 0x99, 0xff, 0xc1, 0x22, 0xfc, 0x2c, 0x61, 0x0f,\n  0x03, 0xca, 0xaf, 0xcc, 0x9a, 0x0a, 0x89, 0x2a, 0xe6, 0x11, 0x26, 0x00,\n  0xde, 0x01, 0xc2, 0xea, 0x9a, 0xe5, 0x76, 0x05, 0x16, 0x16, 0x3c, 0x11,\n  0xaf, 0x0a, 0x0b, 0xf5, 0xde, 0xdd, 0x02, 0xf0, 0x0f, 0x11, 0x92, 0x1e,\n  0x3e, 0x0c, 0x4e, 0xe4, 0x8b, 0xe3, 0x91, 0x0a, 0x4d, 0x15, 0x0a, 0x1c,\n  0x48, 0x0a, 0x6b, 0xd5, 0xca, 0xd3, 0xec, 0xff, 0x9c, 0x23, 0x1b, 0x18,\n  0xe2, 0xfe, 0xda, 0x15, 0x22, 0x01, 0x00, 0xc5, 0x13, 0xdf, 0xae, 0x1b,\n  0x4d, 0x27, 0xb4, 0x10, 0x29, 0x09, 0xe8, 0xeb, 0x3a, 0xd3, 0x61, 0xee,\n  0xf3, 0x1a, 0x82, 0x1b, 0x0d, 0x1d, 0x47, 0x07, 0xb5, 0xd0, 0xfa, 0xd3,\n  0xff, 0x02, 0x09, 0x22, 0x0d, 0x1f, 0x14, 0x18, 0x7d, 0xe8, 0xd7, 0xcc,\n  0x4c, 0xee, 0xd4, 0x18, 0xb8, 0x25, 0x58, 0x20, 0xb1, 0xea, 0xc6, 0xc8,\n  0x90, 0xea, 0xbd, 0x1b, 0x51, 0x20, 0x0f, 0x08, 0xf8, 0x05, 0xce, 0xf9,\n  0x27, 0xdf, 0xae, 0xec, 0x4e, 0x11, 0x09, 0x1b, 0x0d, 0x16, 0xfa, 0x05,\n  0x86, 0xdd, 0xbb, 0xd1, 0xd1, 0xfa, 0x60, 0x1f, 0xd0, 0x29, 0xfe, 0x16,\n  0x19, 0xdf, 0x9d, 0xce, 0x32, 0xf3, 0x20, 0x1e, 0x98, 0x1b, 0xd2, 0x01,\n  0x99, 0xff, 0x31, 0x00, 0x51, 0xec, 0x11, 0xf2, 0x17, 0x09, 0x80, 0x0e,\n  0x2b, 0x04, 0x6a, 0x04, 0x53, 0x12, 0x71, 0xf8, 0xe7, 0xd3, 0x6c, 0xea,\n  0x16, 0x18, 0x52, 0x25, 0x92, 0x18, 0xbb, 0xec, 0x06, 0xd3, 0xc2, 0xf0,\n  0xe8, 0x0f, 0xc4, 0x10, 0xaf, 0x03, 0xa3, 0x04, 0xd6, 0x12, 0x8c, 0xff,\n  0x6f, 0xd6, 0x21, 0xf5, 0x57, 0x26, 0xac, 0x0d, 0x4f, 0xeb, 0x43, 0xe4,\n  0xb5, 0xfe, 0x6f, 0x16, 0xb0, 0x0f, 0x61, 0xfe, 0x40, 0xf8, 0xc8, 0xff,\n  0x1f, 0x09, 0x26, 0x07, 0x2d, 0xf9, 0x63, 0xef, 0x31, 0xf8, 0xd9, 0xfd,\n  0x48, 0x08, 0x2c, 0x20, 0x21, 0xfe, 0xda, 0xde, 0xe1, 0xe9, 0x80, 0x09,\n  0x11, 0x21, 0x2b, 0x10, 0xa3, 0xed, 0x22, 0xe5, 0x40, 0xfe, 0x7f, 0x13,\n  0x0f, 0x16, 0x7f, 0x01, 0xee, 0xe8, 0x96, 0xee, 0x75, 0x02, 0xaf, 0x0d,\n  0x92, 0x09, 0xd2, 0xfe, 0x0e, 0xf9, 0x75, 0xfb, 0x68, 0x00, 0xc1, 0x03,\n  0xad, 0x03, 0x3c, 0xff, 0x8f, 0xfc, 0x2d, 0xfe, 0xba, 0xfb, 0xc2, 0xf8,\n  0xa9, 0x02, 0x8d, 0x0b, 0xdb, 0x06, 0xa8, 0x01, 0xf3, 0x02, 0x57, 0x02,\n  0xda, 0xf5, 0x08, 0xf4, 0x58, 0xfe, 0x69, 0x14, 0x08, 0x19, 0x3f, 0xe6,\n  0xe7, 0xd6, 0xd6, 0xf2, 0xdf, 0x19, 0x1f, 0x1a, 0xb8, 0x0f, 0xb5, 0x16,\n  0xbd, 0xe4, 0x18, 0xc8, 0xc1, 0xf4, 0xc9, 0x22, 0x20, 0x1d, 0x85, 0x01,\n  0x39, 0x12, 0xa9, 0x00, 0x23, 0xc9, 0x41, 0xde, 0xa0, 0x16, 0x1c, 0x38,\n  0x45, 0x16, 0xff, 0xce, 0x5f, 0xd5, 0xcf, 0x0f, 0xf0, 0x27, 0x7f, 0x23,\n  0x09, 0xf5, 0x9f, 0xcb, 0x65, 0xe3, 0x96, 0x0e, 0x1c, 0x2c, 0xa8, 0x14,\n  0x84, 0xe9, 0x50, 0xdd, 0xb0, 0xf4, 0x80, 0x14, 0x99, 0x15, 0x1d, 0x09,\n  0x8b, 0x10, 0x85, 0xfd, 0xc7, 0xd2, 0x68, 0xde, 0xe1, 0x0b, 0x68, 0x24,\n  0x0d, 0x0d, 0x8b, 0x05, 0x3b, 0x19, 0x46, 0xe4, 0xd7, 0xc4, 0x03, 0xf7,\n  0x1f, 0x27, 0x2c, 0x1e, 0xfe, 0x0a, 0x90, 0x04, 0x34, 0xe4, 0x8b, 0xd6,\n  0x69, 0xfe, 0x44, 0x20, 0xf0, 0x21, 0x4f, 0x0b, 0xa5, 0xdf, 0x52, 0xdc,\n  0xa1, 0xf7, 0xc6, 0x10, 0x29, 0x16, 0x1e, 0x21, 0x68, 0x00, 0x48, 0xd6,\n  0x6c, 0xdd, 0x2c, 0x06, 0x94, 0x1c, 0xfa, 0x1f, 0xde, 0x15, 0xff, 0xdb,\n  0x18, 0xcc, 0xac, 0xf8, 0xec, 0x23, 0xdd, 0x19, 0x4f, 0xfd, 0x15, 0xfb,\n  0x4e, 0xfe, 0x2b, 0xf3, 0x5a, 0xfb, 0xf7, 0x07, 0x62, 0x08, 0xbd, 0x03,\n  0xa5, 0x03, 0xcc, 0xf5, 0x4f, 0xf2, 0xe8, 0xfe, 0x2a, 0x14, 0x5f, 0x39,\n  0x8e, 0xe8, 0x43, 0xa2, 0xcd, 0xe5, 0xcd, 0x34, 0x3e, 0x2e, 0x41, 0xff,\n  0x80, 0xed, 0x05, 0xf9, 0x22, 0x04, 0x78, 0x04, 0x71, 0x03, 0x39, 0x01,\n  0x40, 0xfa, 0x60, 0xf8, 0xad, 0xff, 0x83, 0x06, 0xdf, 0x07, 0x1b, 0x05,\n  0x2d, 0xfb, 0xde, 0xf3, 0xa9, 0xf8, 0x7f, 0x06, 0xef, 0x07, 0x24, 0xf7,\n  0x38, 0xf7, 0x7b, 0x11, 0xc1, 0x24, 0x29, 0xf1, 0x90, 0xd0, 0xf1, 0xec,\n  0x4c, 0x10, 0x29, 0x1b, 0xee, 0x13, 0x61, 0x01, 0x23, 0xe9, 0x3a, 0xee,\n  0x65, 0xfa, 0xea, 0x06, 0x9a, 0x0d, 0xcc, 0x07, 0x9c, 0xfe, 0xa3, 0xfc,\n  0x3f, 0xff, 0x40, 0x0c, 0x22, 0x25, 0xe4, 0xf2, 0xa8, 0xb7, 0xd8, 0xe3,\n  0x51, 0x24, 0x7c, 0x32, 0xa9, 0x1a, 0x6b, 0xe4, 0x5e, 0xd1, 0x33, 0xec,\n  0xbd, 0x14, 0x3f, 0x1e, 0xe7, 0x06, 0x05, 0xf9, 0xee, 0xfa, 0xa1, 0xfc,\n  0x4e, 0xff, 0xf9, 0x02, 0x37, 0x02, 0x8b, 0x05, 0x6f, 0x05, 0x73, 0xf3,\n  0xc4, 0xf0, 0xfd, 0x02, 0x67, 0x0b, 0x77, 0x0a, 0xa7, 0x07, 0xed, 0xf8,\n  0x1a, 0xea, 0xbb, 0xf6, 0x8c, 0x09, 0x07, 0x0b, 0x7d, 0x03, 0x20, 0x0c,\n  0xa7, 0x23, 0xbf, 0xe8, 0x72, 0xbc, 0xbe, 0xe6, 0x33, 0x1f, 0x3e, 0x2a,\n  0x56, 0x09, 0xb1, 0x02, 0x9c, 0xf7, 0x78, 0xe6, 0xe2, 0xf7, 0x0d, 0x24,\n  0xcc, 0x18, 0x77, 0xdc, 0x69, 0xd4, 0x5b, 0xfe, 0x74, 0x21, 0xcf, 0x16,\n  0x07, 0x09, 0x57, 0x04, 0x71, 0xea, 0xe7, 0xdc, 0xb9, 0xfb, 0xc4, 0x1b,\n  0x32, 0x27, 0x3d, 0xfc, 0x99, 0xd7, 0x43, 0xe2, 0x06, 0x08, 0x6e, 0x1e,\n  0xcf, 0x1c, 0xd2, 0x0b, 0x9f, 0xd8, 0xe0, 0xd2, 0x5f, 0x0d, 0x62, 0x20,\n  0x30, 0x1f, 0x8c, 0x16, 0x0f, 0xd4, 0xac, 0xc4, 0x25, 0xfd, 0xcc, 0x29,\n  0xd1, 0x1a, 0x64, 0x04, 0x32, 0x06, 0x1d, 0xee, 0xa2, 0xd9, 0xfd, 0xfa,\n  0x69, 0x18, 0x35, 0x14, 0x49, 0x00, 0x61, 0x18, 0x73, 0x05, 0x80, 0xc1,\n  0x5b, 0xd6, 0x30, 0x1c, 0xb9, 0x2b, 0xdf, 0x15, 0x7d, 0x0f, 0xb9, 0xdf,\n  0xb9, 0xc7, 0x50, 0xfa, 0x98, 0x24, 0x17, 0x31, 0x0f, 0x0a, 0x4b, 0xce,\n  0xfa, 0xd3, 0xd3, 0x06, 0x58, 0x26, 0x1e, 0x11, 0xaf, 0x14, 0x27, 0x02,\n  0x10, 0xcc, 0xba, 0xd7, 0xe0, 0x11, 0x6b, 0x26, 0x0a, 0x16, 0x8e, 0x17,\n  0xe8, 0xe1, 0xaa, 0xc2, 0x72, 0xf8, 0xf6, 0x26, 0x04, 0x1c, 0x35, 0x02,\n  0xc7, 0x02, 0x41, 0xf0, 0x0c, 0xe3, 0xcd, 0xfd, 0xdc, 0x13, 0xa4, 0x0d,\n  0xf1, 0x01, 0x35, 0x28, 0xf1, 0xf6, 0x51, 0xaf, 0x57, 0xe0, 0x94, 0x29,\n  0xb1, 0x2d, 0x7f, 0x06, 0x7b, 0x02, 0xfb, 0xf5, 0x69, 0xda, 0x08, 0xf3,\n  0x71, 0x18, 0x5f, 0x18, 0xfc, 0x1d, 0x6a, 0x00, 0xcc, 0xc1, 0xb9, 0xd5,\n  0xb5, 0x18, 0xff, 0x2c, 0xd8, 0x1d, 0x7b, 0xff, 0x19, 0xd7, 0xb3, 0xde,\n  0x25, 0x03, 0x45, 0x1d, 0x69, 0x1e, 0x94, 0xfb, 0xde, 0xe3, 0xb0, 0xe8,\n  0xab, 0x02, 0xf2, 0x15, 0x76, 0x0e, 0xf8, 0x06, 0x18, 0x08, 0x00, 0xef,\n  0x17, 0xe1, 0x71, 0xf9, 0x5f, 0x26, 0x3a, 0x22, 0xfd, 0xe3, 0xcf, 0xd7,\n  0x97, 0xf1, 0x19, 0x10, 0xd1, 0x17, 0x02, 0x09, 0x84, 0x01, 0x2f, 0x06,\n  0x0d, 0xf8, 0x27, 0xe8, 0xac, 0xfa, 0x94, 0x10, 0x74, 0x0d, 0x24, 0xfe,\n  0x69, 0xf0, 0xd6, 0xf9, 0xbf, 0x0d, 0x7f, 0x25, 0x25, 0x03, 0xc1, 0xca,\n  0x30, 0xdd, 0xb4, 0x09, 0xfc, 0x1d, 0xcd, 0x0d, 0xba, 0x08, 0x89, 0x12,\n  0x1f, 0xee, 0xd2, 0xdd, 0x3f, 0xf2, 0x78, 0x07, 0x83, 0x12, 0x20, 0x0c,\n  0x99, 0x02, 0xa8, 0x08, 0x41, 0x00, 0x11, 0xe8, 0x01, 0xeb, 0x72, 0x0a,\n  0x0d, 0x11, 0x32, 0x1e, 0xf6, 0x1a, 0x83, 0xce, 0xfb, 0xc0, 0x2e, 0xfe,\n  0x22, 0x30, 0xff, 0x1a, 0x17, 0x07, 0x39, 0x11, 0x0d, 0xdb, 0xc4, 0xc9,\n  0xf4, 0x06, 0x3f, 0x29, 0x4a, 0x19, 0x1d, 0xfb, 0xc3, 0xe9, 0x52, 0xf1,\n  0x3f, 0x06, 0x4d, 0x0d, 0xe8, 0x0a, 0x03, 0x05, 0x81, 0xf8, 0x7f, 0xec,\n  0x3a, 0xfa, 0xb6, 0x1a, 0x99, 0x01, 0x5f, 0xdb, 0x71, 0xf1, 0x92, 0x15,\n  0x13, 0x25, 0xc2, 0x17, 0x14, 0xe4, 0x84, 0xd3, 0xbc, 0xf3, 0x9d, 0x14,\n  0x06, 0x17, 0xf3, 0x03, 0x7c, 0x07, 0xa9, 0x13, 0xde, 0xea, 0x67, 0xdb,\n  0xf7, 0xf7, 0x90, 0x11, 0x68, 0x0e, 0x32, 0xf9, 0x81, 0xfa, 0x9b, 0x06,\n  0x3c, 0x08, 0x24, 0x01, 0x34, 0xfe, 0xb9, 0x02, 0x13, 0x03, 0x3c, 0xf9,\n  0x13, 0xf6, 0x14, 0x06, 0xe5, 0x24, 0x7d, 0xfc, 0xf2, 0xc6, 0xf8, 0xe0,\n  0xc4, 0x18, 0x5a, 0x27, 0x50, 0x18, 0xf1, 0x02, 0x9b, 0xdf, 0xfc, 0xe0,\n  0xca, 0xf9, 0xbf, 0x0f, 0xbf, 0x15, 0xb7, 0x05, 0x3f, 0x15, 0x28, 0x09,\n  0x29, 0xce, 0xdf, 0xd7, 0xe8, 0x10, 0x29, 0x26, 0xb9, 0x0c, 0xe1, 0xfb,\n  0x7a, 0xfb, 0xdc, 0xf6, 0xd4, 0xf2, 0xb2, 0x01, 0xca, 0x0c, 0x3b, 0x25,\n  0x66, 0x0e, 0xb7, 0xc5, 0x08, 0xce, 0xbf, 0x06, 0xd8, 0x29, 0x25, 0x15,\n  0xef, 0x0b, 0x14, 0x0c, 0xff, 0xe0, 0x77, 0xd8, 0x75, 0xf8, 0x53, 0x1a,\n  0x9f, 0x19, 0xc0, 0x10, 0x77, 0x03, 0xda, 0xe1, 0x81, 0xe0, 0xf8, 0xff,\n  0x59, 0x19, 0xcb, 0x19, 0x62, 0xff, 0x7c, 0xe9, 0x79, 0xf1, 0xbd, 0x01,\n  0x7f, 0x0d, 0x38, 0x0b, 0x45, 0xfc, 0x7a, 0xf5, 0x9e, 0xf7, 0x95, 0x03,\n  0x7b, 0x04, 0x5e, 0x11, 0x6d, 0x0b, 0x85, 0xea, 0x36, 0xe2, 0xf1, 0xfa,\n  0x82, 0x18, 0x51, 0x11, 0xec, 0x00, 0x45, 0xfd, 0xc1, 0xf6, 0x15, 0xf8,\n  0xb9, 0x03, 0xc8, 0x06, 0x6f, 0x02, 0x75, 0x01, 0x2d, 0xff, 0x55, 0xf8,\n  0x31, 0xfc, 0x2f, 0x03, 0x3a, 0x04, 0x66, 0x01, 0xa5, 0x02, 0xce, 0x0a,\n  0xad, 0xfb, 0xe6, 0xe6, 0x11, 0xf6, 0x05, 0x0f, 0x75, 0x11, 0xde, 0x21,\n  0x97, 0xfd, 0x2d, 0xb7, 0x47, 0xe3, 0x55, 0x26, 0x04, 0x3f, 0x71, 0x11,\n  0x41, 0xc9, 0x33, 0xcf, 0xcb, 0x00, 0x64, 0x24, 0x64, 0x1b, 0xbd, 0x0f,\n  0x4b, 0xef, 0x9a, 0xd1, 0x43, 0xf7, 0x64, 0x1f, 0xc0, 0x32, 0x90, 0xff,\n  0x3e, 0xcd, 0x84, 0xe0, 0x87, 0x02, 0xd3, 0x19, 0x8c, 0x10, 0xe8, 0x09,\n  0xa2, 0x17, 0xd1, 0xea, 0xef, 0xc9, 0xe6, 0xf4, 0x92, 0x22, 0xbb, 0x1a,\n  0x92, 0x06, 0x73, 0xfd, 0xbe, 0xe5, 0x73, 0xee, 0xdd, 0x0c, 0x44, 0x15,\n  0x10, 0x22, 0xd8, 0x01, 0x02, 0xc9, 0x76, 0xd9, 0x3c, 0x07, 0x9f, 0x1d,\n  0x8b, 0x13, 0x4b, 0xff, 0x65, 0xf9, 0x0f, 0x02, 0x71, 0x11, 0xdd, 0xfc,\n  0x77, 0xde, 0x33, 0xf4, 0x6b, 0x1c, 0x5b, 0x2c, 0xd3, 0xf1, 0xd4, 0xcd,\n  0x96, 0xe8, 0x0c, 0x15, 0x9a, 0x23, 0x53, 0x06, 0x72, 0xee, 0x31, 0xe8,\n  0x7c, 0x00, 0x53, 0x11, 0x04, 0x22, 0x3a, 0x0a, 0x9b, 0xd5, 0x6b, 0xd8,\n  0xd8, 0x04, 0x88, 0x22, 0x4f, 0x11, 0x64, 0x04, 0x12, 0xf5, 0x12, 0xeb,\n  0x4f, 0xfd, 0xa4, 0x21, 0x40, 0x1e, 0x05, 0xdd, 0x5d, 0xcf, 0x2a, 0xf4,\n  0xd9, 0x17, 0x48, 0x1b, 0x38, 0x08, 0xa3, 0x04, 0x03, 0x05, 0xf7, 0xee,\n  0x98, 0xe3, 0x9f, 0xfd, 0xe2, 0x16, 0x6b, 0x1b, 0x7f, 0x04, 0x46, 0xe2,\n  0xa1, 0xe7, 0xb1, 0xfc, 0xf7, 0x0c, 0xa3, 0x10, 0x5d, 0x1b, 0xa5, 0x03,\n  0xe6, 0xda, 0x19, 0xdd, 0x17, 0x08, 0x44, 0x1d, 0x1c, 0x1d, 0x76, 0x15,\n  0x09, 0xdc, 0xc7, 0xcd, 0xea, 0xf5, 0xdf, 0x23, 0xd8, 0x17, 0x33, 0x13,\n  0xf1, 0x0d, 0xe4, 0xd3, 0xbe, 0xce, 0x7e, 0x05, 0x24, 0x28, 0xcd, 0x13,\n  0x75, 0xfa, 0x49, 0xfe, 0x1a, 0xf9, 0x3b, 0xf0, 0x07, 0x00, 0x55, 0x0b,\n  0x7c, 0x08, 0xfc, 0x04, 0x49, 0x01, 0x37, 0xee, 0xd3, 0xf3, 0x13, 0x04,\n  0x2b, 0x2a, 0xf3, 0x1f, 0xb9, 0xc4, 0x79, 0xbc, 0xd3, 0x07, 0x82, 0x34,\n  0x65, 0x1a, 0x42, 0xfb, 0xaf, 0x0d, 0xcf, 0xfc, 0xcf, 0xcb, 0xf3, 0xe5,\n  0x86, 0x1b, 0x06, 0x22, 0x12, 0x05, 0x19, 0xf4, 0x2e, 0xfa, 0xc0, 0x04,\n  0x2f, 0x04, 0x8d, 0xfd, 0x96, 0xfa, 0x83, 0xff, 0xb1, 0x03, 0xc0, 0x04,\n  0x76, 0xf2, 0x50, 0xf3, 0x48, 0x04, 0x22, 0x30, 0xf8, 0x16, 0xfb, 0xc4,\n  0xba, 0xc8, 0x16, 0x08, 0x13, 0x2f, 0xb5, 0x15, 0x5a, 0xf7, 0x4f, 0xf4,\n  0xeb, 0x02, 0xf3, 0x02, 0x3a, 0xfa, 0x13, 0xfc, 0x93, 0x03, 0xfe, 0x07,\n  0x6b, 0x06, 0x61, 0xfd, 0xf7, 0xed, 0xce, 0xf3, 0x41, 0x09, 0x63, 0x17,\n  0x1c, 0x28, 0x4c, 0xf1, 0xcd, 0xba, 0x82, 0xe2, 0x19, 0x25, 0x2c, 0x29,\n  0xbd, 0x03, 0x0e, 0xe2, 0x03, 0xec, 0x92, 0x0f, 0xe1, 0x13, 0x53, 0x03,\n  0x8f, 0xfc, 0x53, 0xfd, 0x28, 0xf8, 0x61, 0xfd, 0x87, 0x04, 0x88, 0x04,\n  0xe5, 0x01, 0xd3, 0x01, 0x9d, 0xfa, 0x2a, 0xf8, 0x13, 0x01, 0xd7, 0x04,\n  0xc5, 0x0a, 0xd1, 0x17, 0x21, 0xf3, 0x50, 0xcc, 0x76, 0xf4, 0x43, 0x1c,\n  0x7d, 0x19, 0x1a, 0xff, 0x92, 0x17, 0x34, 0x12, 0xde, 0xc2, 0x6d, 0xc7,\n  0x08, 0x10, 0xa3, 0x31, 0x7f, 0x17, 0x5f, 0x15, 0x29, 0xf0, 0x64, 0xca,\n  0xbf, 0xe5, 0x83, 0x17, 0x2c, 0x23, 0x54, 0x07, 0x96, 0xfb, 0x17, 0x02,\n  0x4a, 0xf2, 0x66, 0xef, 0x63, 0x04, 0xbf, 0x0e, 0x97, 0x08, 0x76, 0x13,\n  0xab, 0x12, 0x76, 0xce, 0xab, 0xc8, 0x6f, 0x0a, 0x28, 0x31, 0xa4, 0x23,\n  0x9e, 0xf0, 0x8a, 0xd6, 0x9d, 0xec, 0x06, 0x13, 0x5f, 0x19, 0xf1, 0x0d,\n  0x47, 0x07, 0x09, 0xf5, 0x34, 0xdf, 0x78, 0xf5, 0xe9, 0x16, 0x22, 0x0c,\n  0x9e, 0xf8, 0xdf, 0xee, 0x75, 0x01, 0xd0, 0x10, 0x0a, 0x01, 0x7d, 0xf8,\n  0x76, 0x01, 0x8b, 0x11, 0xdc, 0x01, 0x46, 0xe5, 0xdb, 0xf2, 0x29, 0x0f,\n  0xf3, 0x10, 0x4d, 0x12, 0x12, 0x08, 0xad, 0xdb, 0x7b, 0xdd, 0x15, 0x02,\n  0x30, 0x17, 0xb3, 0x14, 0x17, 0x08, 0x0f, 0xf5, 0xfa, 0xef, 0x42, 0xfb,\n  0xfa, 0x04, 0x0e, 0x09, 0x2e, 0x07, 0x6f, 0xfd, 0x97, 0xf7, 0xf6, 0xfb,\n  0xa0, 0x01, 0x6b, 0x04, 0x6b, 0x03, 0xf9, 0xfe, 0x28, 0xf7, 0x99, 0xf7,\n  0x28, 0x16, 0xe9, 0x0f, 0xc1, 0xef, 0x46, 0xe4, 0xb2, 0xf7, 0x30, 0x14,\n  0xc0, 0x11, 0x37, 0x05, 0x76, 0x10, 0xe5, 0x01, 0xa4, 0xda, 0x01, 0xe5,\n  0x6f, 0x05, 0xf1, 0x13, 0x7f, 0x09, 0x9a, 0x00, 0xeb, 0x03, 0x47, 0x08,\n  0xbe, 0xfa, 0x22, 0xee, 0xb1, 0xf8, 0x70, 0x06, 0x34, 0x0a, 0x3b, 0x02,\n  0xaf, 0xf5, 0xff, 0xf6, 0x00, 0x0e, 0x7b, 0x1d, 0x26, 0xfb, 0xbf, 0xd8,\n  0x15, 0xec, 0x3e, 0x12, 0xb0, 0x28, 0x40, 0x12, 0x44, 0xe0, 0x96, 0xde,\n  0xe5, 0xfe, 0x29, 0x13, 0xe0, 0x0c, 0x2c, 0xfa, 0xd7, 0xf4, 0x99, 0x02,\n  0x09, 0x0e, 0x00, 0x0e, 0xa2, 0xfe, 0xbd, 0xea, 0xd4, 0xe7, 0x1e, 0xfe,\n  0xc9, 0x14, 0x1b, 0x23, 0xf3, 0x06, 0x7e, 0xde, 0x34, 0xe7, 0x5b, 0x01,\n  0xd7, 0x0b, 0x49, 0x03, 0x8e, 0x04, 0xe7, 0x02, 0xe5, 0x12, 0xec, 0x19,\n  0xe1, 0xd7, 0xca, 0xca, 0x16, 0x08, 0x3b, 0x28, 0xb8, 0x13, 0x1c, 0x06,\n  0x86, 0xfb, 0x8a, 0xe0, 0x46, 0xe7, 0xa7, 0x0e, 0x89, 0x16, 0x83, 0x1b,\n  0x4c, 0x16, 0xee, 0xd6, 0xe0, 0xcc, 0x98, 0xf6, 0x1d, 0x1b, 0x25, 0x1e,\n  0xd1, 0x03, 0x28, 0x0f, 0x40, 0x09, 0x20, 0xd3, 0x6e, 0xd8, 0x89, 0x10,\n  0x6b, 0x23, 0x92, 0x14, 0x7d, 0x16, 0x8c, 0xe5, 0x9d, 0xc5, 0x1f, 0xf4,\n  0xb1, 0x24, 0xec, 0x26, 0xf2, 0x07, 0x8b, 0xe3, 0xb9, 0xdc, 0xa7, 0x03,\n  0x6a, 0x17, 0xeb, 0x1c, 0xda, 0x18, 0x99, 0xdd, 0x46, 0xc7, 0xd1, 0xf6,\n  0x4b, 0x20, 0x25, 0x2b, 0xad, 0x13, 0x5f, 0xdf, 0x90, 0xd9, 0xa4, 0xf5,\n  0x25, 0x10, 0x9b, 0x16, 0x57, 0x05, 0xef, 0x0a, 0xb9, 0x15, 0x3b, 0xdf,\n  0xf6, 0xcc, 0x85, 0x00, 0x56, 0x25, 0x54, 0x16, 0x24, 0x05, 0xb1, 0x01,\n  0x57, 0xe8, 0x7c, 0xe2, 0x73, 0x03, 0x30, 0x19, 0x0f, 0x17, 0x30, 0xfe,\n  0x2d, 0xe1, 0x64, 0xf0, 0x3d, 0x0d, 0x5f, 0x18, 0x93, 0x26, 0xa6, 0xf1,\n  0x01, 0xbf, 0x62, 0xe0, 0x0b, 0x1c, 0xa1, 0x29, 0x8d, 0x0b, 0xee, 0x00,\n  0xd2, 0xf1, 0xcb, 0xe7, 0xab, 0xfc, 0x35, 0x1e, 0x5b, 0x20, 0x25, 0xe7,\n  0x01, 0xd6, 0x57, 0xf2, 0x77, 0x0d, 0xbc, 0x15, 0x1d, 0x0a, 0xb8, 0x01,\n  0xc9, 0x08, 0x4f, 0x00, 0xf7, 0xe4, 0x6a, 0xee, 0x7c, 0x0b, 0x3e, 0x2b,\n  0x48, 0x0e, 0xbf, 0xd2, 0x87, 0xd6, 0x7e, 0x05, 0x93, 0x23, 0x31, 0x13,\n  0x80, 0x08, 0xa7, 0x02, 0xd3, 0xeb, 0xe7, 0xe8, 0xb5, 0xf9, 0xaa, 0x08,\n  0xea, 0x0e, 0xe7, 0x08, 0x82, 0xfa, 0x57, 0xf3, 0xa4, 0xf5, 0x3b, 0x06,\n  0xc0, 0x0d, 0xe0, 0x14, 0xf7, 0x0c, 0x58, 0xe2, 0x0a, 0xdb, 0x89, 0xf7,\n  0x9a, 0x1a, 0xbf, 0x15, 0x75, 0x0c, 0x1e, 0x15, 0x32, 0xe1, 0xd6, 0xc8,\n  0x29, 0x00, 0x6c, 0x26, 0xa1, 0x1a, 0xb7, 0x0f, 0xce, 0xeb, 0xfd, 0xd0,\n  0x36, 0xfa, 0xf3, 0x1c, 0x11, 0x25, 0xb5, 0x10, 0xa0, 0xda, 0x55, 0xd1,\n  0xb9, 0xfb, 0xac, 0x1d, 0x85, 0x22, 0xa3, 0x06, 0xb7, 0xe5, 0x62, 0xe6,\n  0x89, 0xf7, 0xed, 0x12, 0x5e, 0x10, 0x74, 0x17, 0xc2, 0x0f, 0x13, 0xce,\n  0xed, 0xd4, 0xa5, 0x11, 0xcd, 0x25, 0xcb, 0x10, 0xdf, 0x0c, 0x7a, 0xf3,\n  0x41, 0xcf, 0x8e, 0xeb, 0x40, 0x1f, 0x8e, 0x34, 0x89, 0x00, 0xe4, 0xce,\n  0x64, 0xde, 0x45, 0x0f, 0x94, 0x20, 0x67, 0x0f, 0xef, 0x08, 0x41, 0xfc,\n  0x75, 0xde, 0xa5, 0xe6, 0xcc, 0x09, 0x0a, 0x19, 0x1e, 0x09, 0xf2, 0x11,\n  0x2c, 0x0a, 0x58, 0xda, 0x05, 0xda, 0x71, 0xfd, 0x38, 0x1e, 0x13, 0x16,\n  0xa6, 0x01, 0x4b, 0x04, 0xa9, 0xfd, 0xc3, 0xe0, 0x6e, 0xf6, 0x20, 0x0f,\n  0x22, 0x2d, 0xe2, 0x15, 0xc5, 0xc8, 0x1f, 0xc8, 0x27, 0x05, 0x75, 0x2d,\n  0x9f, 0x16, 0x8d, 0xf8, 0xf9, 0xf8, 0x0f, 0xff, 0xac, 0xf6, 0x42, 0xfe,\n  0xa3, 0x05, 0xaf, 0x0b, 0x48, 0x0b, 0xbb, 0xeb, 0x11, 0xea, 0xdf, 0x07,\n  0x01, 0x10, 0x64, 0x10, 0x67, 0x0e, 0xda, 0xe7, 0xf4, 0xd4, 0xbc, 0xff,\n  0x3e, 0x1c, 0x4d, 0x1f, 0x18, 0x1d, 0x99, 0xde, 0xf6, 0xc0, 0xb2, 0xf0,\n  0x3b, 0x24, 0x4c, 0x22, 0xc3, 0x01, 0x5d, 0xf8, 0x7d, 0x0c, 0xd5, 0x01,\n  0x4c, 0xdb, 0x8e, 0xe9, 0x79, 0x14, 0xff, 0x19, 0x60, 0x26, 0xcd, 0xfc,\n  0x04, 0xc1, 0x80, 0xd9, 0x4f, 0x15, 0x17, 0x2a, 0x74, 0x0d, 0xce, 0x04,\n  0x49, 0x01, 0x03, 0xe2, 0x23, 0xe0, 0xbc, 0x09, 0xe8, 0x1a, 0x6e, 0x16,\n  0xa6, 0x19, 0x7d, 0xe5, 0x85, 0xc7, 0xbe, 0xef, 0x96, 0x1f, 0xab, 0x20,\n  0xae, 0x0f, 0x0b, 0x05, 0x54, 0xe3, 0x1f, 0xdd, 0xcc, 0x05, 0xdd, 0x18,\n  0xf7, 0x09, 0xce, 0xf4, 0x09, 0xf0, 0xf7, 0x02, 0x72, 0x20, 0x22, 0x0d,\n  0xa8, 0xe0, 0x0a, 0xdf, 0x39, 0x01, 0x02, 0x1b, 0xcc, 0x11, 0xd6, 0x0a,\n  0x7a, 0x07, 0x3f, 0xe7, 0x9a, 0xdf, 0x39, 0xfb, 0x5a, 0x0b, 0xef, 0x0c,\n  0x4a, 0x07, 0x10, 0x01, 0x9f, 0xfe, 0x93, 0xff, 0x93, 0xff, 0x2c, 0xff,\n  0x40, 0x00, 0x1f, 0x01, 0xf4, 0x06, 0xab, 0x06, 0x99, 0xf2, 0xfc, 0xed,\n  0x88, 0x01, 0x27, 0x0e, 0xc6, 0x0e, 0x24, 0x08, 0x1a, 0xf6, 0xe6, 0xe4,\n  0x50, 0xf0, 0x1d, 0x0c, 0x94, 0x15, 0xd2, 0x0a, 0x7f, 0x18, 0x90, 0xfe,\n  0xa1, 0xcb, 0x04, 0xdf, 0xc1, 0x0c, 0x27, 0x22, 0x58, 0x19, 0xae, 0xfe,\n  0x4a, 0xe8, 0x01, 0xf1, 0x23, 0x02, 0x4f, 0x07, 0x77, 0x03, 0x83, 0x06,\n  0xa3, 0x01, 0xe6, 0xf7, 0x35, 0xff, 0xcd, 0x16, 0x08, 0x05, 0xf2, 0xe3,\n  0x27, 0xec, 0x21, 0x02, 0x31, 0x0f, 0xc5, 0x0f, 0xe0, 0x09, 0x5c, 0xf5,\n  0x3a, 0xef, 0x5a, 0xfb, 0x8f, 0x06, 0x5f, 0x05, 0x92, 0xf9, 0x31, 0xfc,\n  0x1c, 0x07, 0xaf, 0x10, 0x62, 0x11, 0xec, 0xf2, 0x36, 0xd5, 0xe9, 0xf4,\n  0x4f, 0x19, 0x60, 0x2b, 0x3f, 0x10, 0xd3, 0xd4, 0xfa, 0xd4, 0xf3, 0xfc,\n  0xaf, 0x1e, 0x0c, 0x18, 0x54, 0x0e, 0xf5, 0x02, 0xc4, 0xe1, 0x85, 0xe1,\n  0x62, 0x00, 0xe0, 0x17, 0xad, 0x0a, 0x6d, 0x0b, 0x8d, 0x0e, 0xef, 0xe8,\n  0x4b, 0xdf, 0xbe, 0xf5, 0x36, 0x13, 0x9b, 0x16, 0x9b, 0x06, 0xed, 0x12,\n  0xd3, 0xfd, 0x68, 0xd8, 0x10, 0xe5, 0xb7, 0x03, 0xd9, 0x17, 0x0f, 0x11,\n  0xfc, 0xfe, 0xfe, 0x0a, 0xba, 0x15, 0x4a, 0xda, 0xad, 0xcf, 0x38, 0x09,\n  0xf8, 0x25, 0x23, 0x17, 0x4a, 0x0c, 0xc9, 0xf2, 0xe1, 0xd4, 0x46, 0xe8,\n  0xb1, 0x1a, 0x06, 0x2c, 0x38, 0x00, 0x88, 0xde, 0x06, 0xe5, 0xda, 0x07,\n  0x7d, 0x19, 0x52, 0x0a, 0x5b, 0x03, 0x7f, 0x08, 0x21, 0xec, 0x53, 0xe4,\n  0x1b, 0x05, 0x62, 0x1b, 0xa5, 0x22, 0x12, 0xf8, 0x30, 0xcd, 0x61, 0xe4,\n  0xcf, 0x0f, 0x76, 0x22, 0xa2, 0x13, 0xfc, 0xf4, 0x07, 0xea, 0x39, 0xf8,\n  0x24, 0x07, 0x2c, 0x05, 0x56, 0xf8, 0x8b, 0x00, 0x7f, 0x08, 0xba, 0x11,\n  0x1f, 0x1b, 0x3a, 0xe6, 0xce, 0xc9, 0xc4, 0xf7, 0xc2, 0x29, 0x12, 0x29,\n  0xa1, 0xf4, 0xe1, 0xd4, 0xba, 0xec, 0xb1, 0x13, 0x4a, 0x1c, 0x83, 0x12,\n  0x31, 0xf7, 0xc0, 0xe0, 0xee, 0xef, 0xcd, 0x08, 0xb5, 0x13, 0x36, 0x09,\n  0xc2, 0xf9, 0xe1, 0xf5, 0x01, 0xfc, 0xb5, 0x02, 0xbb, 0x07, 0xd9, 0x01,\n  0x0f, 0xfd, 0x10, 0xf8, 0xb1, 0xf5, 0x25, 0x02, 0xc4, 0x0e, 0x5b, 0x05,\n  0xde, 0x12, 0x1d, 0x15, 0x4a, 0xd1, 0x1b, 0xce, 0x95, 0x0c, 0xea, 0x28,\n  0x20, 0x12, 0x0a, 0x07, 0xcd, 0xfb, 0x55, 0xdd, 0xa8, 0xe6, 0xf6, 0x0f,\n  0x04, 0x1b, 0xdc, 0x1a, 0xd6, 0x07, 0x29, 0xd7, 0x83, 0xd7, 0xb8, 0xfe,\n  0x2f, 0x1f, 0xcf, 0x15, 0xe2, 0xfe, 0xa7, 0xfc, 0x4e, 0x15, 0xe6, 0xfb,\n  0xac, 0xcd, 0x3b, 0xed, 0x34, 0x28, 0xe1, 0x31, 0xb6, 0xec, 0xc9, 0xc5,\n  0xbb, 0xf6, 0xb8, 0x20, 0x61, 0x2a, 0x06, 0x0e, 0xc5, 0xd7, 0x7c, 0xd6,\n  0x2d, 0xf9, 0xc0, 0x19, 0xbe, 0x17, 0x8f, 0x03, 0xa3, 0x02, 0x2f, 0x04,\n  0x91, 0xeb, 0xd4, 0xe9, 0x6a, 0x05, 0xa3, 0x15, 0xf6, 0x11, 0x41, 0x0f,\n  0xa3, 0xf1, 0xe3, 0xce, 0x0b, 0xe8, 0x32, 0x1b, 0x1b, 0x21, 0x3d, 0x19,\n  0x0c, 0x05, 0x2c, 0xd4, 0x22, 0xd6, 0xed, 0x0c, 0x34, 0x22, 0x06, 0x20,\n  0xbc, 0x0c, 0xb5, 0xd6, 0x24, 0xd3, 0x38, 0x00, 0x9b, 0x21, 0xb3, 0x15,\n  0x0d, 0xfd, 0xe2, 0xf4, 0xdb, 0xff, 0x6d, 0x0a, 0x24, 0x08, 0xdb, 0xff,\n  0x8b, 0xe8, 0x01, 0xe2, 0xa6, 0x01, 0xe0, 0x18, 0xb0, 0x22, 0x05, 0x09,\n  0x88, 0xdf, 0x8e, 0xde, 0x5d, 0xfb, 0x59, 0x18, 0x63, 0x13, 0x3d, 0x03,\n  0xee, 0x05, 0xdd, 0xfd, 0xc4, 0xe4, 0xf4, 0xf0, 0x2e, 0x0d, 0xc8, 0x15,\n  0xb7, 0x0f, 0xc2, 0x07, 0x20, 0xee, 0x10, 0xdb, 0xf0, 0xf0, 0x5f, 0x0c,\n  0x19, 0x16, 0xa7, 0x0c, 0x8e, 0x07, 0x32, 0x08, 0x0e, 0xf0, 0x7b, 0xdd,\n  0x13, 0xfd, 0x35, 0x24, 0xd0, 0x0f, 0x5a, 0xef, 0xf7, 0xe7, 0x8a, 0xf4,\n  0x46, 0x0d, 0x40, 0x13, 0xff, 0x03, 0x6d, 0x0a, 0xd6, 0x12, 0xc1, 0xd8,\n  0x78, 0xd4, 0x89, 0x0e, 0xe4, 0x22, 0xd5, 0x10, 0x8a, 0x08, 0xca, 0xf1,\n  0xd6, 0xd9, 0xbb, 0xf4, 0x1c, 0x17, 0x6f, 0x18, 0x3f, 0x11, 0x35, 0xfb,\n  0x26, 0xd5, 0x7f, 0xe6, 0x0b, 0x1b, 0x92, 0x37, 0x2d, 0xff, 0x54, 0xcb,\n  0x18, 0xdd, 0x3d, 0x11, 0x65, 0x23, 0xd2, 0x0a, 0x71, 0xf7, 0x8a, 0xf7,\n  0x44, 0x00, 0x61, 0x03, 0x05, 0x02, 0x5a, 0x01, 0xec, 0xff, 0x34, 0xfe,\n  0x01, 0xfc, 0x02, 0x00, 0x71, 0xfc, 0x1a, 0xf9, 0x0e, 0x00, 0xff, 0x17,\n  0x59, 0x21, 0x53, 0xe4, 0xb4, 0xc3, 0xbc, 0xf3, 0x80, 0x24, 0x56, 0x27,\n  0x86, 0x1b, 0xab, 0xe3, 0x26, 0xc8, 0x26, 0xf4, 0x5d, 0x21, 0x5d, 0x1b,\n  0x2d, 0xff, 0x9a, 0xfe, 0xd5, 0xfb, 0x08, 0xed, 0x66, 0xfa, 0xd6, 0x0b,\n  0x0f, 0x0b, 0xeb, 0x05, 0xad, 0x03, 0xf6, 0xf0, 0xf4, 0xed, 0x65, 0x02,\n  0x4f, 0x1f, 0x2c, 0x23, 0xee, 0xdc, 0xc9, 0xbf, 0x59, 0xf9, 0x6e, 0x2a,\n  0x12, 0x1d, 0x68, 0x15, 0x1c, 0xfa, 0x0c, 0xd3, 0xa3, 0xe1, 0x11, 0x0b,\n  0xdd, 0x1e, 0xac, 0x0d, 0xba, 0xfb, 0xe7, 0x0c, 0x91, 0x0d, 0xb3, 0xdb,\n  0xad, 0xd7, 0x70, 0x06, 0xea, 0x22, 0xeb, 0x22, 0xa7, 0xfc, 0x9a, 0xda,\n  0x04, 0xe4, 0x1b, 0x03, 0xfe, 0x19, 0x65, 0x0f, 0xb7, 0x03, 0xc3, 0x06,\n  0x17, 0xf3, 0x5f, 0xdf, 0x61, 0x01, 0xe3, 0x11, 0xb2, 0x25, 0x78, 0x17,\n  0x77, 0xca, 0x61, 0xc6, 0xcb, 0x06, 0xca, 0x2d, 0xb6, 0x15, 0xe8, 0xf8,\n  0xb3, 0xfc, 0xa1, 0xfa, 0xe7, 0xf0, 0xb7, 0xff, 0x9e, 0x0a, 0xed, 0x11,\n  0x4d, 0x0a, 0xa1, 0xe4, 0x81, 0xe3, 0xf6, 0x08, 0xd8, 0x15, 0x45, 0x0e,\n  0xb8, 0x07, 0x7b, 0x02, 0xf1, 0xf3, 0x3e, 0xdb, 0xe4, 0xef, 0xd2, 0x10,\n  0x5a, 0x14, 0xc7, 0x07, 0x73, 0x07, 0x86, 0x00, 0x06, 0xeb, 0xde, 0xf2,\n  0x79, 0x14, 0x9f, 0x1e, 0xab, 0xf2, 0x3a, 0xe0, 0x24, 0xf5, 0xd8, 0x0a,\n  0x9c, 0x09, 0x1a, 0x00, 0x88, 0x01, 0x2e, 0x07, 0x96, 0x0c, 0xef, 0x03,\n  0x0e, 0xee, 0xec, 0xea, 0x20, 0x00, 0x28, 0x14, 0xe5, 0x08, 0xb7, 0xf0,\n  0x93, 0xf7, 0xa8, 0x17, 0x30, 0x0d, 0xeb, 0xe9, 0x5d, 0xec, 0x71, 0xff,\n  0xc4, 0x08, 0xa2, 0x01, 0xcf, 0x02, 0x6e, 0x04, 0x02, 0x0c, 0x7d, 0x1c,\n  0xdc, 0xef, 0xca, 0xca, 0x4d, 0xee, 0xbe, 0x1c, 0x7c, 0x20, 0xa4, 0x0a,\n  0x0c, 0xef, 0x31, 0xe9, 0x4d, 0x02, 0xe7, 0x0e, 0x07, 0x06, 0xce, 0xff,\n  0x04, 0x10, 0x7e, 0xfe, 0xa6, 0xdc, 0x47, 0xec, 0xa5, 0x08, 0xf2, 0x0e,\n  0x96, 0x06, 0xb7, 0x02, 0x67, 0x04, 0xc1, 0x0d, 0x37, 0x04, 0x4d, 0xe7,\n  0x51, 0xe7, 0x62, 0x06, 0x13, 0x19, 0x60, 0x17, 0xa9, 0xfc, 0x0c, 0xe0,\n  0x48, 0xec, 0x88, 0x07, 0x5b, 0x13, 0x70, 0x0a, 0x45, 0xfc, 0x09, 0xf7,\n  0x48, 0xfb, 0x39, 0x01, 0x21, 0x02, 0x48, 0x07, 0xfb, 0x03, 0x65, 0xf9,\n  0x3c, 0xf9, 0xc0, 0xff, 0x6c, 0x04, 0x7b, 0x02, 0xb1, 0xff, 0x31, 0xf9,\n  0xf8, 0xf6, 0x61, 0x03, 0x87, 0x0b, 0xba, 0x08, 0xce, 0x07, 0xaa, 0xff,\n  0x70, 0xec, 0xb3, 0xef, 0x7e, 0x05, 0xfb, 0x12, 0x20, 0x05, 0x64, 0xf4,\n  0xc9, 0xfa, 0x09, 0x15, 0x3a, 0x17, 0x71, 0xe4, 0xfc, 0xd7, 0xc4, 0xfb,\n  0xb6, 0x18, 0xbd, 0x14, 0xae, 0xff, 0x37, 0xee, 0xf4, 0xf1, 0x4e, 0x09,\n  0x9f, 0x0e, 0x44, 0x11, 0xbe, 0x11, 0x7e, 0xdb, 0x32, 0xd5, 0xaf, 0x0a,\n  0xe0, 0x38, 0x32, 0x17, 0xa1, 0xd2, 0xcd, 0xd0, 0x3b, 0x03, 0x03, 0x25,\n  0xe3, 0x11, 0xee, 0x00, 0xd0, 0x04, 0xf9, 0xf0, 0x40, 0xe3, 0x4a, 0xff,\n  0xf8, 0x13, 0xb8, 0x0c, 0xcb, 0x00, 0x07, 0x0d, 0xb8, 0x0c, 0xa9, 0xdf,\n  0x58, 0xd4, 0x59, 0x00, 0x5a, 0x29, 0xc9, 0x1e, 0x30, 0xf2, 0xe6, 0xe0,\n  0xe1, 0xed, 0x2f, 0x0a, 0xea, 0x15, 0x58, 0x09, 0x2d, 0x09, 0xbc, 0x10,\n  0xd0, 0xe6, 0x24, 0xd3, 0x9f, 0xf6, 0xda, 0x1e, 0x58, 0x17, 0xa9, 0x11,\n  0xec, 0x0a, 0x56, 0xd8, 0x96, 0xd5, 0xc3, 0x03, 0x0e, 0x2a, 0x6d, 0x28,\n  0x8c, 0xed, 0x66, 0xca, 0xae, 0xf3, 0xdb, 0x1d, 0x9c, 0x17, 0x55, 0xfe,\n  0xc5, 0xfc, 0xae, 0x0b, 0xa1, 0xf6, 0xae, 0xe1, 0x56, 0xf9, 0x5f, 0x14,\n  0x45, 0x17, 0x32, 0x0f, 0xc0, 0xf6, 0xe0, 0xde, 0xa1, 0xe7, 0xf3, 0x05,\n  0x8f, 0x14, 0xe4, 0x19, 0xb5, 0x12, 0x37, 0xe8, 0x26, 0xd7, 0xec, 0xf5,\n  0xa5, 0x19, 0x7f, 0x19, 0x6b, 0x06, 0xb3, 0xff, 0xdc, 0xf8, 0x1c, 0xe6,\n  0x1c, 0xf0, 0xf0, 0x17, 0x02, 0x26, 0x9c, 0xf7, 0x15, 0xda, 0x27, 0xe9,\n  0x00, 0x0e, 0x74, 0x1a, 0xad, 0x10, 0xc0, 0x0e, 0x68, 0xef, 0x41, 0xd7,\n  0x19, 0xf1, 0x2a, 0x15, 0x78, 0x1e, 0x62, 0x11, 0xac, 0xef, 0x1c, 0xe3,\n  0x31, 0xf6, 0x7c, 0x0d, 0x78, 0x11, 0x07, 0x02, 0xca, 0xf4, 0x9b, 0xf0,\n  0xef, 0x00, 0xfa, 0x0d, 0x34, 0x0d, 0xf4, 0x01, 0xea, 0xf1, 0xfb, 0xf6,\n  0xd8, 0x07, 0x92, 0x17, 0xa2, 0x11, 0xc3, 0xe3, 0x78, 0xd7, 0xce, 0xf8,\n  0x36, 0x11, 0xc9, 0x11, 0x26, 0x07, 0xad, 0x03, 0x1e, 0x0b, 0x6f, 0xff,\n  0x0e, 0xe8, 0xfa, 0xe8, 0x8f, 0x04, 0xba, 0x11, 0x98, 0x21, 0x9d, 0x0b,\n  0x7e, 0xda, 0x24, 0xdc, 0x5a, 0xfb, 0x39, 0x1b, 0xa1, 0x14, 0xb1, 0xff,\n  0x21, 0xfc, 0x7e, 0x15, 0xfb, 0x04, 0x60, 0xcf, 0x9b, 0xdf, 0x90, 0x16,\n  0x21, 0x22, 0x6d, 0x08, 0x9c, 0xfb, 0x2f, 0xfc, 0xf9, 0xf2, 0xda, 0xf6,\n  0x76, 0x05, 0x9d, 0x0a, 0x3e, 0x09, 0xc2, 0x1e, 0xae, 0xfb, 0x21, 0xc3,\n  0xe7, 0xe6, 0xee, 0x19, 0x9f, 0x1c, 0x0f, 0x04, 0x86, 0xf7, 0x48, 0xfe,\n  0xcf, 0x04, 0x6f, 0xfc, 0xd5, 0xf8, 0x80, 0xf6, 0x2e, 0x01, 0xe4, 0x08,\n  0xd3, 0x15, 0xe4, 0x17, 0x7d, 0xe7, 0x6e, 0xd7, 0x71, 0xf2, 0x2f, 0x12,\n  0x1a, 0x19, 0x7f, 0x04, 0xc0, 0x0b, 0xde, 0x0f, 0x90, 0xdf, 0x37, 0xd4,\n  0x65, 0xff, 0x1d, 0x21, 0xc6, 0x17, 0xaf, 0x17, 0x9a, 0xf3, 0x47, 0xce,\n  0xe1, 0xe7, 0x8f, 0x15, 0x7a, 0x28, 0x39, 0x18, 0xd1, 0xe7, 0xdf, 0xd3,\n  0x13, 0xf7, 0x12, 0x1c, 0x78, 0x29, 0xbe, 0x00, 0x2d, 0xd7, 0x6e, 0xe1,\n  0xdf, 0x08, 0x50, 0x1d, 0xd8, 0x0a, 0x04, 0x04, 0x41, 0x15, 0xe8, 0xed,\n  0x3c, 0xcb, 0xa2, 0xf5, 0x86, 0x1d, 0x27, 0x28, 0x39, 0x15, 0x6d, 0xdf,\n  0xd7, 0xd5, 0xd1, 0xf3, 0xef, 0x15, 0xd8, 0x18, 0xab, 0x04, 0x69, 0xfc,\n  0x41, 0x03, 0xc1, 0xf7, 0x49, 0xf1, 0x87, 0xff, 0x5d, 0x0c, 0x48, 0x05,\n  0xd2, 0x24, 0x0d, 0x08, 0x51, 0xb8, 0x0d, 0xd3, 0x6e, 0x1c, 0x97, 0x2f,\n  0x82, 0x0a, 0x41, 0xf7, 0x37, 0xfd, 0xa7, 0xf3, 0xf1, 0xf4, 0x13, 0x07,\n  0x9d, 0x0a, 0xd0, 0x0c, 0x9a, 0x19, 0x24, 0xe8, 0x2c, 0xc5, 0x9d, 0xfc,\n  0x7c, 0x25, 0x60, 0x1c, 0x0e, 0x0f, 0x3d, 0xfa, 0x67, 0xd3, 0xdf, 0xe0,\n  0x26, 0x0f, 0xeb, 0x28, 0x27, 0x25, 0x33, 0xeb, 0x6d, 0xcc, 0x2c, 0xeb,\n  0x72, 0x19, 0xd4, 0x1d, 0xef, 0x04, 0x57, 0x02, 0xb5, 0x01, 0xc8, 0xf0,\n  0xbf, 0xed, 0x1f, 0x02, 0x2a, 0x15, 0xcb, 0xff, 0x76, 0xeb, 0x47, 0xf6,\n  0x0a, 0x0c, 0x4c, 0x0b, 0x47, 0x0c, 0x5f, 0x1a, 0xd5, 0xec, 0x6f, 0xd0,\n  0x6f, 0xed, 0xe0, 0x18, 0xf1, 0x1c, 0x33, 0x04, 0x85, 0xfa, 0xfd, 0x10,\n  0x60, 0x01, 0xb6, 0xd3, 0x40, 0xe9, 0x1c, 0x17, 0x08, 0x20, 0x8a, 0x15,\n  0xcd, 0xfd, 0x92, 0xcf, 0x3d, 0xe0, 0x5b, 0x14, 0x14, 0x2d, 0xa2, 0x1d,\n  0xf6, 0xe3, 0x25, 0xd3, 0x06, 0xef, 0x6c, 0x15, 0x53, 0x1b, 0xa8, 0x08,\n  0xa5, 0x0f, 0xd5, 0xfb, 0x34, 0xd3, 0xab, 0xe6, 0x16, 0x16, 0x9c, 0x1e,\n  0xdc, 0x19, 0x60, 0xff, 0xcb, 0xd7, 0x0a, 0xe0, 0xad, 0x03, 0x89, 0x1c,\n  0xd5, 0x10, 0x9f, 0x02, 0xa4, 0x06, 0xc1, 0xf7, 0x45, 0xe3, 0xc9, 0xfb,\n  0x65, 0x20, 0x0c, 0x0b, 0x32, 0xe9, 0xaf, 0xe8, 0x89, 0xfb, 0x41, 0x11,\n  0x92, 0x0f, 0x20, 0x06, 0xdf, 0x07, 0xf7, 0xfd, 0xde, 0xe6, 0x61, 0xee,\n  0xe4, 0x08, 0x43, 0x10, 0xd0, 0x06, 0xe7, 0xfd, 0xf6, 0x20, 0xe1, 0x01,\n  0x25, 0xc6, 0x54, 0xdb, 0x35, 0x14, 0x24, 0x28, 0x91, 0x0c, 0xbb, 0xf7,\n  0x4f, 0xf4, 0x2b, 0xfd, 0x26, 0x04, 0x56, 0x07, 0xfc, 0x07, 0xfa, 0x00,\n  0xf7, 0xf2, 0x33, 0xf1, 0x08, 0x00, 0x94, 0x0e, 0xff, 0x0d, 0x90, 0xf6,\n  0x7b, 0xec, 0x45, 0xfb, 0x6a, 0x09, 0x50, 0x0b, 0x57, 0x03, 0x2b, 0xfc,\n  0x42, 0xfb, 0x6f, 0xfd, 0x27, 0xfc, 0x47, 0xfd, 0x2d, 0x08, 0x0c, 0x09,\n  0x7a, 0xff, 0x28, 0xfb, 0x0c, 0x12, 0xe8, 0x06, 0x27, 0xe2, 0x08, 0xe6,\n  0xca, 0xfe, 0x5c, 0x16, 0x63, 0x16, 0xc1, 0x15, 0x61, 0xf2, 0x13, 0xd3,\n  0x9f, 0xf0, 0xe6, 0x18, 0xff, 0x1a, 0xad, 0x0f, 0x9c, 0x01, 0xd0, 0xe3,\n  0x02, 0xde, 0xf3, 0xfd, 0x19, 0x17, 0xb0, 0x1a, 0x71, 0x17, 0x7d, 0xed,\n  0x26, 0xd8, 0xe0, 0xee, 0xbe, 0x0d, 0xfd, 0x17, 0x58, 0x07, 0x6a, 0x05,\n  0x83, 0x14, 0x82, 0xee, 0x3f, 0xd5, 0xcb, 0xf0, 0x93, 0x1a, 0x58, 0x29,\n  0x4f, 0x00, 0xa4, 0xe3, 0x48, 0xeb, 0xa3, 0xfd, 0x7a, 0x0c, 0x86, 0x0d,\n  0x66, 0x05, 0xcf, 0xfe, 0x96, 0xfe, 0x6b, 0x07, 0x7b, 0x02, 0xac, 0xf1,\n  0x39, 0xfd, 0xb5, 0xfd, 0xa9, 0xf8, 0x75, 0xfb, 0xc1, 0x03, 0xbc, 0x09,\n  0xd0, 0x15, 0x82, 0x0a, 0x6e, 0xe5, 0x33, 0xe2, 0x61, 0xfb, 0x6b, 0x16,\n  0xff, 0x11, 0x10, 0x06, 0xa8, 0x07, 0x5b, 0xf7, 0x92, 0xe1, 0x4e, 0xf3,\n  0x02, 0x12, 0x4f, 0x19, 0x5d, 0x11, 0x00, 0xed, 0x5e, 0xd7, 0xf9, 0xfb,\n  0x84, 0x1d, 0x23, 0x17, 0x10, 0x09, 0xe3, 0xf3, 0xd0, 0xdf, 0xc9, 0xf3,\n  0xca, 0x07, 0x60, 0x0b, 0x9a, 0x05, 0x57, 0x0e, 0x50, 0x14, 0x9b, 0xed,\n  0x30, 0xdf, 0xbf, 0xf1, 0xe6, 0x0d, 0x9f, 0x16, 0x0b, 0x1b, 0xc2, 0x00,\n  0xdc, 0xda, 0x8e, 0xe3, 0xeb, 0x05, 0xb1, 0x1a, 0xa4, 0x0c, 0x21, 0xfc,\n  0xd1, 0xfd, 0x85, 0x10, 0x16, 0x05, 0xbd, 0xe0, 0x65, 0xe7, 0x6a, 0x07,\n  0xba, 0x14, 0xb6, 0x0a, 0x51, 0xf8, 0x18, 0xef, 0x67, 0x02, 0x96, 0x21,\n  0x9f, 0x07, 0xa1, 0xdd, 0xf1, 0xe2, 0x55, 0x0a, 0x6e, 0x1b, 0x50, 0x09,\n  0x96, 0xff, 0x33, 0x01, 0x50, 0xf1, 0x2b, 0xf0, 0x0f, 0x05, 0xcd, 0x0d,\n  0x14, 0x0a, 0x4f, 0x07, 0x0a, 0xf1, 0x25, 0xe8, 0xe4, 0x01, 0x8d, 0x12,\n  0xfd, 0x0e, 0xc6, 0xff, 0x43, 0xf4, 0xd9, 0xfa, 0x4b, 0xfc, 0x24, 0xf8,\n  0x72, 0x01, 0x78, 0x1d, 0x41, 0x12, 0x9e, 0xde, 0xca, 0xdf, 0x48, 0xfb,\n  0xd5, 0x11, 0x04, 0x12, 0x7e, 0x05, 0x05, 0xfc, 0x35, 0x0d, 0x78, 0x15,\n  0x8e, 0xdf, 0xcc, 0xd0, 0xf4, 0x04, 0x89, 0x23, 0x82, 0x1c, 0x87, 0x0b,\n  0xc3, 0xe5, 0xf0, 0xd7, 0x78, 0xf8, 0x76, 0x16, 0x43, 0x1f, 0xd3, 0x07,\n  0x43, 0xea, 0xc1, 0xe8, 0x68, 0xfa, 0x51, 0x0d, 0xff, 0x0e, 0xc7, 0x02,\n  0xe6, 0x07, 0xf0, 0x0d, 0x25, 0xe8, 0x87, 0xdf, 0x3b, 0x04, 0x0b, 0x18,\n  0x08, 0x08, 0x4e, 0xf6, 0x52, 0xfa, 0x22, 0x07, 0x25, 0x0b, 0x15, 0x02,\n  0x0f, 0xf2, 0x06, 0xf3, 0x8e, 0xfe, 0x67, 0x09, 0x90, 0x0d, 0x60, 0xfe,\n  0xe1, 0xf0, 0x6b, 0xf6, 0x9e, 0x09, 0x1e, 0x0c, 0x4b, 0x14, 0x11, 0x08,\n  0x90, 0xe0, 0x8d, 0xe4, 0x64, 0xfe, 0x8f, 0x11, 0x5b, 0x11, 0xa2, 0x0e,\n  0x2e, 0xfe, 0x54, 0xe9, 0xb9, 0xf0, 0x67, 0x02, 0x57, 0x0e, 0xde, 0x0c,\n  0xd6, 0xfe, 0x64, 0xf4, 0x3a, 0xf9, 0x21, 0xfb, 0xa4, 0x00, 0x5d, 0x08,\n  0xaf, 0x19, 0x09, 0x0b, 0xdd, 0xe2, 0xca, 0xe2, 0x22, 0xfe, 0x7c, 0x16,\n  0x64, 0x18, 0x51, 0x01, 0x65, 0xea, 0x90, 0xed, 0x67, 0xfe, 0xe5, 0x0e,\n  0x64, 0x10, 0x54, 0x0e, 0x69, 0xfc, 0xc0, 0xe4, 0x83, 0xef, 0x37, 0x03,\n  0x46, 0x0b, 0xe4, 0x07, 0x36, 0x13, 0x7c, 0x0a, 0xc6, 0xe6, 0x33, 0xe6,\n  0xbb, 0xf7, 0x9d, 0x0e, 0x7e, 0x12, 0x93, 0x05, 0x73, 0x00, 0x8b, 0xfc,\n  0xab, 0xf2, 0xbe, 0xfe, 0x2b, 0x06, 0x8b, 0x14, 0xbe, 0x23, 0xfe, 0xdc,\n  0xef, 0xbb, 0x82, 0xf9, 0x72, 0x2c, 0x66, 0x1f, 0x40, 0x15, 0x1b, 0xf4,\n  0x21, 0xd1, 0xa1, 0xe7, 0x6e, 0x0f, 0xcb, 0x1c, 0x66, 0x09, 0x79, 0xfa,\n  0xae, 0xfb, 0x2b, 0x01, 0x79, 0xfd, 0xab, 0xfc, 0x43, 0x00, 0x2f, 0x06,\n  0xdb, 0x05, 0x6d, 0x02, 0x77, 0xf6, 0xed, 0xff, 0xe8, 0x09, 0x63, 0xef,\n  0x43, 0xeb, 0xaa, 0xfb, 0x0b, 0x12, 0xef, 0x10, 0x1b, 0x02, 0xa2, 0xfa,\n  0x2b, 0x05, 0xc6, 0x06, 0x6a, 0xf0, 0x44, 0xf0, 0x87, 0x05, 0x6c, 0x0e,\n  0x3e, 0x0c, 0x47, 0x06, 0xab, 0xf1, 0x9a, 0xe3, 0x79, 0xfa, 0x96, 0x13,\n  0x10, 0x12, 0x14, 0x25, 0xd1, 0xf5, 0xe9, 0xbd, 0x03, 0xdf, 0xa1, 0x20,\n  0x9f, 0x25, 0x3b, 0x15, 0xe0, 0x0c, 0xc9, 0xd9, 0x0d, 0xd2, 0x4e, 0x01,\n  0x3a, 0x23, 0xc8, 0x13, 0x4e, 0xfa, 0x2c, 0xfa, 0xe1, 0xfd, 0x95, 0xf9,\n  0x32, 0xff, 0xc4, 0x04, 0x89, 0x03, 0x4e, 0x01, 0x24, 0x01, 0xbd, 0xfa,\n  0x49, 0xfa, 0xa2, 0x01, 0x67, 0x04, 0x65, 0x03, 0x2b, 0x03, 0x81, 0xfe,\n  0xf3, 0xf5, 0xd3, 0xfd, 0x40, 0x0f, 0x70, 0x20, 0xff, 0xf6, 0xa2, 0xc8,\n  0x9d, 0xe2, 0x61, 0x0f, 0xe6, 0x21, 0xb0, 0x0f, 0xf5, 0xf9, 0x63, 0x01,\n  0x33, 0x1c, 0x72, 0xe8, 0x01, 0xcd, 0x71, 0x02, 0x71, 0x22, 0x35, 0x12,\n  0xd5, 0x01, 0xe3, 0xfc, 0x4a, 0xea, 0xcb, 0xf0, 0xbf, 0x09, 0xf6, 0x0f,\n  0xf0, 0x0a, 0xf5, 0xfd, 0xc8, 0xec, 0x8e, 0xf7, 0xb5, 0x08, 0x6f, 0x0a,\n  0x8f, 0x09, 0x94, 0x19, 0x28, 0xfa, 0x39, 0xc8, 0xb1, 0xe1, 0x33, 0x16,\n  0x08, 0x29, 0x7f, 0x04, 0x13, 0xea, 0x99, 0xf8, 0xc1, 0x21, 0xb0, 0x11,\n  0x7e, 0xde, 0x08, 0xde, 0xd1, 0xfb, 0x1a, 0x18, 0x8f, 0x12, 0xba, 0xff,\n  0xe9, 0xf8, 0x0b, 0x03, 0x3d, 0x1c, 0x39, 0x01, 0x30, 0xd3, 0x1a, 0xe8,\n  0xc9, 0x0a, 0xcf, 0x17, 0x82, 0x07, 0xb2, 0x00, 0xd4, 0x00, 0xb2, 0xf6,\n  0x6a, 0xf4, 0xd1, 0xfb, 0xb2, 0x09, 0xc0, 0x0d, 0xb7, 0x0d, 0xf7, 0x03,\n  0xd4, 0xea, 0xed, 0xe7, 0x2c, 0x00, 0x5f, 0x12, 0x50, 0x0c, 0xbb, 0xfc,\n  0x43, 0xf7, 0x18, 0xfb, 0x0b, 0x03, 0x00, 0x05, 0x8b, 0x00, 0x48, 0xf6,\n  0x9c, 0xf7, 0x2e, 0x08, 0x60, 0x0d, 0x09, 0x12, 0x21, 0xfd, 0xd0, 0xde,\n  0xb7, 0xf2, 0x8c, 0x12, 0x9f, 0x23, 0x69, 0x08, 0x75, 0xda, 0x8d, 0xe1,\n  0x50, 0x06, 0xf0, 0x17, 0x58, 0x0c, 0xf5, 0xf8, 0x2a, 0xef, 0xfe, 0x04,\n  0xae, 0x18, 0x93, 0xff, 0x1a, 0xe7, 0x9f, 0xef, 0x27, 0x0a, 0x5b, 0x14,\n  0x0c, 0x11, 0xc3, 0x02, 0x84, 0xe8, 0x2a, 0xea, 0xd1, 0xff, 0xf2, 0x08,\n  0x33, 0x03, 0x96, 0x05, 0x15, 0x03, 0x5e, 0x19, 0xf6, 0x0b, 0xb6, 0xcf,\n  0xeb, 0xdb, 0xff, 0x11, 0x94, 0x22, 0x19, 0x09, 0xd9, 0xfe, 0xe7, 0xfd,\n  0x8d, 0xec, 0xec, 0xf2, 0x5f, 0x09, 0xc8, 0x0e, 0x80, 0x09, 0xf7, 0x05,\n  0x31, 0xed, 0x6d, 0xe9, 0xda, 0x04, 0x66, 0x11, 0xc8, 0x09, 0x88, 0x16,\n  0xcf, 0x0a, 0x8e, 0xcd, 0xe1, 0xd2, 0x7a, 0x08, 0x80, 0x26, 0x6b, 0x12,\n  0x03, 0x02, 0x04, 0x12, 0x87, 0xf0, 0x0d, 0xd8, 0x9e, 0xee, 0xee, 0x11,\n  0x03, 0x1c, 0x96, 0x1c, 0x09, 0xfb, 0xfc, 0xd4, 0x54, 0xe5, 0xb7, 0x0e,\n  0x42, 0x1d, 0xd7, 0x09, 0x43, 0x04, 0x8b, 0x01, 0x46, 0xe7, 0x48, 0xe9,\n  0x97, 0x09, 0xa6, 0x2a, 0x6f, 0x0d, 0xae, 0xd6, 0xde, 0xda, 0x2f, 0x08,\n  0x64, 0x1f, 0x49, 0x14, 0x9a, 0x11, 0x56, 0xec, 0xb9, 0xcf, 0xca, 0xf6,\n  0xd1, 0x1a, 0x16, 0x26, 0xa2, 0x13, 0x60, 0xdd, 0xa7, 0xd2, 0xbd, 0xfb,\n  0x30, 0x1f, 0xf5, 0x14, 0xd8, 0xff, 0x4b, 0xf7, 0xa1, 0xf7, 0xbc, 0xff,\n  0x23, 0x04, 0x4b, 0x03, 0xcc, 0xff, 0xeb, 0x07, 0x51, 0x0e, 0x1f, 0x04,\n  0x31, 0xe7, 0x14, 0xdc, 0xbd, 0xf8, 0xd8, 0x11, 0x64, 0x16, 0x4f, 0x09,\n  0xaa, 0x13, 0xb7, 0xfc, 0x70, 0xd9, 0xd4, 0xe6, 0x85, 0x0b, 0xda, 0x1b,\n  0x4a, 0x0f, 0x32, 0x0c, 0xc9, 0xf6, 0x2a, 0xdd, 0xf3, 0xec, 0xb7, 0x0e,\n  0xd6, 0x1b, 0xc7, 0x07, 0x04, 0xed, 0xa8, 0xf9, 0x53, 0x17, 0xf3, 0xff,\n  0xc3, 0xe9, 0xa6, 0xed, 0x53, 0x03, 0x61, 0x13, 0x2c, 0x0d, 0xe0, 0x18,\n  0xb6, 0xf8, 0xd9, 0xd0, 0x14, 0xe9, 0x8e, 0x14, 0x61, 0x1c, 0x93, 0x05,\n  0x14, 0xf9, 0x6f, 0xfc, 0x6e, 0xff, 0xa1, 0xfc, 0x93, 0xfe, 0x36, 0x01,\n  0x7c, 0x01, 0x84, 0x01, 0x1d, 0x0a, 0x33, 0x16, 0x40, 0xee, 0x1e, 0xd1,\n  0xd2, 0x06, 0x1b, 0x26, 0xdb, 0x01, 0x52, 0xea, 0x0e, 0xf1, 0x5b, 0x05,\n  0x65, 0x11, 0xfe, 0x10, 0x9e, 0xf9, 0xbf, 0xe5, 0x45, 0xf9, 0x0b, 0x1b,\n  0xa5, 0x14, 0xcf, 0xea, 0x37, 0xeb, 0x76, 0x05, 0x7e, 0x09, 0x93, 0x02,\n  0x5a, 0xf8, 0xc0, 0xf8, 0xab, 0x05, 0xe2, 0x0d, 0xfa, 0x0f, 0x5a, 0xff,\n  0xb1, 0xe5, 0x82, 0xee, 0x83, 0x06, 0x3d, 0x0e, 0xdb, 0x05, 0x09, 0xf6,\n  0x61, 0xf7, 0x83, 0x06, 0x55, 0x0d, 0x1f, 0x0e, 0xed, 0x02, 0xc3, 0xeb,\n  0x47, 0xe7, 0x2f, 0x07, 0x26, 0x12, 0x65, 0x02, 0x97, 0xf4, 0xf4, 0xf3,\n  0x03, 0x05, 0x70, 0x1c, 0x24, 0x0f, 0xde, 0xe3, 0x8a, 0xdf, 0x27, 0x01,\n  0xe2, 0x18, 0x0a, 0x11, 0x89, 0xfa, 0xca, 0xf3, 0xe9, 0x03, 0x66, 0x1c,\n  0x71, 0x03, 0x9e, 0xd6, 0x54, 0xe3, 0xbc, 0x0a, 0x21, 0x1c, 0x75, 0x08,\n  0x5d, 0xf8, 0x30, 0x04, 0x43, 0x06, 0xc4, 0xf7, 0x44, 0xfa, 0x31, 0xfc,\n  0x15, 0xfe, 0xd5, 0x02, 0x97, 0x02, 0x3f, 0xff, 0xd5, 0xff, 0x46, 0x08,\n  0x06, 0x06, 0x9e, 0xf7, 0xc7, 0xf5, 0x58, 0xfe, 0x9f, 0x05, 0x83, 0x06,\n  0x7a, 0x00, 0x5b, 0xfc, 0x21, 0xf8, 0xf0, 0xf8, 0x22, 0x05, 0xcd, 0x0a,\n  0xe5, 0x03, 0x31, 0xfe, 0x75, 0x01, 0xcf, 0x1a, 0x16, 0x04, 0x76, 0xce,\n  0x08, 0xde, 0xc3, 0x1a, 0xeb, 0x27, 0xbb, 0x01, 0x7e, 0xec, 0x88, 0xeb,\n  0x9b, 0xfc, 0xe7, 0x0e, 0xca, 0x0d, 0x33, 0x05, 0x68, 0x06, 0x9c, 0xf7,\n  0x80, 0xe5, 0xb1, 0xfd, 0xb7, 0x0f, 0xb3, 0x1e, 0x40, 0x15, 0xf5, 0xd6,\n  0x64, 0xcd, 0x26, 0xff, 0x83, 0x24, 0x5b, 0x1c, 0x47, 0x0e, 0x4b, 0xef,\n  0x7b, 0xde, 0x03, 0xef, 0x67, 0x0b, 0x6f, 0x14, 0x7f, 0x17, 0x58, 0x0d,\n  0xa8, 0xe3, 0x76, 0xe2, 0x2d, 0xfb, 0xef, 0x0a, 0x60, 0x0d, 0x03, 0x06,\n  0xfb, 0x06, 0xdf, 0x16, 0xb1, 0xf1, 0x60, 0xd4, 0x56, 0xef, 0x5b, 0x19,\n  0x14, 0x18, 0x0f, 0x14, 0x7f, 0x0a, 0xff, 0xd7, 0x24, 0xd7, 0x5b, 0x07,\n  0x21, 0x22, 0xbc, 0x0f, 0x4d, 0x00, 0xdb, 0x02, 0x80, 0xee, 0x23, 0xe9,\n  0x9b, 0x02, 0xff, 0x1f, 0xed, 0x1e, 0xe7, 0xe2, 0x84, 0xcd, 0x3d, 0xfa,\n  0x20, 0x21, 0x39, 0x1b, 0x91, 0x09, 0xb6, 0xe4, 0xc3, 0xe5, 0x67, 0x06,\n  0xe2, 0x22, 0x37, 0x22, 0x78, 0xe0, 0xdb, 0xcb, 0xa6, 0xf2, 0x4d, 0x1e,\n  0x8a, 0x1b, 0xf0, 0x08, 0x05, 0x09, 0x0b, 0xf3, 0x57, 0xda, 0xab, 0xf2,\n  0xe6, 0x14, 0x2c, 0x16, 0x2b, 0x01, 0xb7, 0x01, 0x4e, 0x11, 0xec, 0xf0,\n  0x65, 0xdd, 0x78, 0xf0, 0x09, 0x11, 0xdd, 0x18, 0x80, 0x08, 0xc6, 0x13,\n  0x8d, 0xf8, 0x58, 0xd7, 0xdb, 0xe9, 0xba, 0x0b, 0xef, 0x19, 0x07, 0x0a,\n  0x2b, 0xfd, 0x77, 0xf6, 0x0a, 0xfe, 0xcf, 0x02, 0x0d, 0x17, 0xf0, 0x16,\n  0xe6, 0xd8, 0xb4, 0xce, 0xc7, 0xfc, 0x8c, 0x24, 0x60, 0x17, 0xc7, 0x08,\n  0x51, 0x0b, 0x28, 0xe7, 0xb9, 0xd8, 0x96, 0xf8, 0xab, 0x1a, 0xe5, 0x15,\n  0xd5, 0x02, 0xf0, 0xf8, 0x33, 0xf5, 0x55, 0xfd, 0xfe, 0x04, 0xbb, 0x04,\n  0x99, 0x02, 0x2f, 0x0d, 0xe4, 0x0f, 0x84, 0xeb, 0x41, 0xd5, 0xa0, 0xf4,\n  0x14, 0x1e, 0x6a, 0x1c, 0x07, 0xfd, 0x82, 0xee, 0x27, 0xf5, 0x6d, 0x02,\n  0x64, 0x04, 0xad, 0xff, 0xab, 0x03, 0x64, 0x1c, 0x67, 0x05, 0x94, 0xdc,\n  0x03, 0xe3, 0x00, 0x04, 0x12, 0x1c, 0x24, 0x0c, 0x8e, 0x0d, 0x2f, 0x0b,\n  0x7f, 0xdd, 0x39, 0xd8, 0x6b, 0x03, 0x1b, 0x20, 0x45, 0x11, 0x45, 0x01,\n  0x79, 0x03, 0x24, 0xf2, 0x17, 0xe7, 0xa6, 0xfe, 0x82, 0x12, 0xbf, 0x11,\n  0x36, 0x0c, 0x3a, 0xf9, 0x70, 0xe2, 0xa6, 0xeb, 0x66, 0x0c, 0x59, 0x1f,\n  0x03, 0x05, 0xc4, 0xeb, 0x23, 0xea, 0x90, 0xff, 0xe6, 0x12, 0x29, 0x0c,\n  0x69, 0xfe, 0x16, 0xfa, 0x0b, 0x05, 0x59, 0x19, 0x11, 0xf6, 0xad, 0xce,\n  0xa9, 0xf5, 0xec, 0x1c, 0x45, 0x16, 0x6c, 0xfe, 0x29, 0xfc, 0xf2, 0x07,\n  0x4a, 0xf9, 0x68, 0xe9, 0x6d, 0xf9, 0xfe, 0x0f, 0x56, 0x14, 0x2c, 0x0c,\n  0x71, 0xe8, 0xe5, 0xde, 0xd1, 0x02, 0xa8, 0x26, 0x4b, 0x1e, 0x2a, 0xe4,\n  0xa4, 0xd8, 0xe4, 0xf4, 0x93, 0x16, 0xf4, 0x1f, 0x33, 0x02, 0x4a, 0xe5,\n  0x37, 0xea, 0xee, 0x0b, 0xe1, 0x13, 0x01, 0x19, 0xe4, 0x07, 0xf2, 0xcf,\n  0x78, 0xde, 0x0c, 0x14, 0xf3, 0x23, 0x09, 0x20, 0x0f, 0xf2, 0xf5, 0xcf,\n  0x25, 0xe8, 0x43, 0x12, 0x11, 0x1d, 0xb5, 0x10, 0x6f, 0x09, 0x83, 0xec,\n  0x70, 0xe2, 0xc1, 0xf5, 0x7e, 0x08, 0x4c, 0x10, 0xa6, 0x08, 0x2b, 0x03,\n  0x3c, 0x17, 0xf4, 0xf8, 0x19, 0xce, 0x52, 0xee, 0xc5, 0x1b, 0x8c, 0x1f,\n  0x25, 0x12, 0xaf, 0xf7, 0x01, 0xd9, 0x7c, 0xe8, 0x90, 0x0e, 0x9b, 0x1e,\n  0x1e, 0x14, 0xa1, 0xf2, 0xdd, 0xe5, 0x84, 0xf5, 0xf7, 0x08, 0x34, 0x0b,\n  0x3a, 0x0a, 0x27, 0x05, 0x89, 0xf3, 0xe7, 0xf0, 0xf1, 0xf6, 0x16, 0x0b,\n  0x5a, 0x0d, 0x45, 0x16, 0x36, 0x0c, 0xd9, 0xd6, 0xb8, 0xda, 0x8c, 0x0c,\n  0x41, 0x20, 0x77, 0x0d, 0xb7, 0x05, 0x51, 0xfc, 0x14, 0xe3, 0x8b, 0xec,\n  0xae, 0x0c, 0x9f, 0x17, 0xdb, 0x12, 0x1b, 0x05, 0x30, 0xe6, 0x7f, 0xdf,\n  0xcd, 0xfe, 0x89, 0x18, 0x82, 0x10, 0x1c, 0xf4, 0xdd, 0xfc, 0x81, 0x0d,\n  0xd2, 0xfa, 0xc5, 0xec, 0x94, 0xf6, 0x90, 0x0d, 0x6c, 0x0e, 0xa7, 0x0b,\n  0x62, 0x12, 0x23, 0xe9, 0xbf, 0xd3, 0x15, 0xfd, 0xc9, 0x25, 0x78, 0x20,\n  0x31, 0xf0, 0xa0, 0xdf, 0x1e, 0xf2, 0x39, 0x0a, 0xee, 0x11, 0x58, 0x10,\n  0x91, 0x00, 0x74, 0xed, 0xd9, 0xf1, 0xbd, 0x01, 0x77, 0x0c, 0x7a, 0x07,\n  0xc7, 0xf7, 0x41, 0xf4, 0x7d, 0x00, 0x7d, 0x15, 0xba, 0x15, 0x87, 0xee,\n  0xc3, 0xdf, 0xe6, 0xf1, 0x63, 0x10, 0x52, 0x15, 0xc3, 0x06, 0x33, 0x05,\n  0x69, 0x02, 0x9e, 0xe7, 0x96, 0xeb, 0xb7, 0x06, 0x9b, 0x1e, 0x6f, 0x1e,\n  0x0b, 0xe8, 0xb8, 0xd0, 0x7a, 0xf2, 0x3f, 0x1a, 0xc0, 0x20, 0x90, 0x16,\n  0xbf, 0xea, 0x50, 0xd8, 0xfd, 0xf8, 0x39, 0x12, 0x76, 0x0d, 0x84, 0x01,\n  0xa3, 0x03, 0x29, 0x08, 0xed, 0xfb, 0x11, 0xed, 0xd9, 0xf4, 0x31, 0x0a,\n  0x36, 0x0f, 0xda, 0xff, 0x28, 0xf7, 0x85, 0xfa, 0x4b, 0x01, 0xe2, 0x04,\n  0xf5, 0x03, 0xd5, 0xff, 0x8b, 0xfc, 0xdf, 0xfd, 0x87, 0xff, 0x5b, 0x02,\n  0xbf, 0xfd, 0x9c, 0xf9, 0x88, 0x00, 0xef, 0x15, 0xd8, 0x0e, 0xbf, 0xe7,\n  0x25, 0xe1, 0x1e, 0x05, 0xce, 0x24, 0x49, 0x09, 0x62, 0xe4, 0xf3, 0xe6,\n  0x92, 0x09, 0x34, 0x16, 0xaa, 0x07, 0x15, 0xfb, 0x2d, 0xfb, 0xc6, 0x01,\n  0x63, 0x06, 0x6f, 0x04, 0xb8, 0xfb, 0xf4, 0xf4, 0x9c, 0xf9, 0x83, 0xff,\n  0x40, 0x00, 0x23, 0x03, 0xd1, 0x03, 0x15, 0x02, 0x93, 0xff, 0x26, 0xff,\n  0xc5, 0xff, 0x30, 0xff, 0xc2, 0xf9, 0x1b, 0xfd, 0x04, 0x16, 0x0f, 0x09,\n  0xdd, 0xed, 0x07, 0xea, 0xe1, 0xfb, 0xaa, 0x12, 0x28, 0x13, 0x29, 0x03,\n  0xca, 0xef, 0x63, 0xf1, 0x87, 0x02, 0x7c, 0x0d, 0x9c, 0x0c, 0x8e, 0x04,\n  0x23, 0xf6, 0x2e, 0xee, 0x42, 0xf7, 0x14, 0x05, 0x86, 0x09, 0xb4, 0x05,\n  0xeb, 0xfe, 0xcb, 0xfc, 0x7f, 0xfe, 0xf8, 0x00, 0xef, 0xfc, 0xf3, 0xf7,\n  0xf9, 0x01, 0xc3, 0x11, 0x03, 0x17, 0x48, 0xf5, 0x2d, 0xe1, 0xa7, 0xf3,\n  0xa3, 0x07, 0xad, 0x0a, 0x4f, 0x04, 0xbb, 0x03, 0xdc, 0x01, 0x89, 0xfa,\n  0xa3, 0xfc, 0x31, 0x09, 0x99, 0x18, 0xbc, 0xfa, 0xa9, 0xd9, 0xe0, 0xed,\n  0xfd, 0x0d, 0x38, 0x15, 0x00, 0x07, 0x52, 0xf3, 0x8b, 0xf3, 0x7b, 0x04,\n  0x60, 0x0b, 0x4f, 0x04, 0xbc, 0x06, 0x4b, 0x17, 0x71, 0xf0, 0xd5, 0xd4,\n  0x1a, 0xed, 0x46, 0x13, 0x83, 0x1b, 0xc8, 0x06, 0xb5, 0xf9, 0xc9, 0x0a,\n  0xf4, 0x0e, 0x2e, 0xe2, 0xa8, 0xd9, 0xae, 0x06, 0x48, 0x20, 0x53, 0x1d,\n  0xee, 0x00, 0xb8, 0xdd, 0x62, 0xe6, 0xe1, 0x01, 0x18, 0x11, 0x40, 0x0c,\n  0x5b, 0x16, 0x8d, 0x01, 0xa7, 0xe0, 0x86, 0xe6, 0x55, 0x02, 0xac, 0x16,\n  0x79, 0x0d, 0x23, 0xff, 0x64, 0x06, 0x5b, 0x04, 0x4b, 0xe6, 0x7b, 0xec,\n  0x67, 0x0b, 0x9f, 0x14, 0x96, 0x0f, 0x3f, 0x06, 0x6f, 0xec, 0x95, 0xe0,\n  0x26, 0xfb, 0x6a, 0x16, 0xc9, 0x1b, 0x91, 0x01, 0x2a, 0xe6, 0x1c, 0xee,\n  0x93, 0x03, 0xcd, 0x0e, 0x4e, 0x0b, 0xd0, 0xfe, 0x20, 0xf7, 0xe1, 0xf5,\n  0xfe, 0xf9, 0x7e, 0x08, 0x8a, 0x0d, 0xdd, 0x18, 0x16, 0xfe, 0x16, 0xdc,\n  0x41, 0xe7, 0xa3, 0x04, 0x0e, 0x18, 0x84, 0x0e, 0xd7, 0x09, 0x1f, 0x06,\n  0xbb, 0xe9, 0xe4, 0xe0, 0xd6, 0xfe, 0xff, 0x17, 0x3f, 0x1b, 0x57, 0xfe,\n  0x6b, 0xe7, 0x96, 0xec, 0xac, 0xfe, 0xc1, 0x0f, 0x18, 0x0d, 0x1e, 0x05,\n  0x68, 0x09, 0x8c, 0x06, 0xda, 0xe8, 0x8b, 0xdf, 0x01, 0xfa, 0x19, 0x19,\n  0x30, 0x13, 0x36, 0x13, 0xdf, 0x04, 0xb5, 0xd4, 0x6d, 0xdf, 0x8a, 0x12,\n  0x0b, 0x1e, 0x0a, 0x1c, 0xc1, 0x03, 0xde, 0xd4, 0xca, 0xdf, 0x89, 0x0b,\n  0x6c, 0x1d, 0x21, 0x0a, 0x97, 0xf7, 0x59, 0xf7, 0x4f, 0x02, 0x04, 0x06,\n  0x04, 0x04, 0x2b, 0xf6, 0x6e, 0xf0, 0x22, 0x01, 0x9a, 0x1c, 0xb0, 0x12,\n  0x12, 0xe8, 0x6c, 0xe3, 0xf3, 0xfc, 0xe8, 0x13, 0xa7, 0x0b, 0xbb, 0xf4,\n  0x56, 0xf6, 0xa0, 0x06, 0xef, 0x18, 0x94, 0x10, 0x13, 0xe4, 0x01, 0xdf,\n  0xb1, 0xf9, 0xce, 0x19, 0x43, 0x1e, 0xdb, 0xfc, 0xe6, 0xe4, 0x12, 0xec,\n  0xcf, 0x05, 0xcf, 0x14, 0x04, 0x07, 0xa6, 0x08, 0xd4, 0x14, 0xe4, 0xe8,\n  0x7e, 0xd7, 0x0f, 0xf2, 0x58, 0x16, 0x36, 0x19, 0xf9, 0x03, 0x4f, 0xf7,\n  0x87, 0x02, 0x8b, 0x07, 0x3c, 0xf1, 0x74, 0xf3, 0x6b, 0x06, 0x66, 0x0b,\n  0xab, 0x06, 0x16, 0x05, 0xd1, 0xf6, 0xbd, 0xed, 0x4d, 0xfd, 0xb9, 0x0b,\n  0x47, 0x0d, 0x07, 0x0a, 0x2d, 0xfd, 0x56, 0xea, 0x8b, 0xef, 0x31, 0x02,\n  0x97, 0x0d, 0x4a, 0x0b, 0xc9, 0x18, 0x81, 0x02, 0x24, 0xd6, 0x93, 0xe6,\n  0xa5, 0x09, 0xaf, 0x18, 0xaa, 0x0c, 0x85, 0xfc, 0x67, 0xee, 0xef, 0xf3,\n  0x4f, 0x09, 0xf0, 0x0e, 0x1e, 0x06, 0xa9, 0x0f, 0x2b, 0xfd, 0x3b, 0xd6,\n  0xd5, 0xee, 0x03, 0x17, 0xdf, 0x17, 0xc5, 0x0d, 0x29, 0x03, 0x60, 0xe6,\n  0xdb, 0xde, 0x15, 0x03, 0x4e, 0x15, 0xa1, 0x1e, 0x7f, 0x13, 0x27, 0xdd,\n  0xb3, 0xd3, 0x99, 0xfb, 0xd4, 0x1e, 0x7d, 0x15, 0x63, 0xfd, 0x23, 0xfd,\n  0x9f, 0x10, 0xb4, 0xf7, 0x45, 0xda, 0x01, 0xf7, 0x58, 0x16, 0x03, 0x13,\n  0xe2, 0x00, 0x03, 0x06, 0x68, 0x0e, 0x47, 0xea, 0x08, 0xda, 0x0e, 0xf7,\n  0x5c, 0x15, 0x74, 0x18, 0xd5, 0x16, 0x50, 0xfa, 0x88, 0xd9, 0x17, 0xf4,\n  0xfb, 0x12, 0xaf, 0x0d, 0x55, 0xfd, 0xc1, 0xf1, 0x9d, 0xf9, 0x44, 0x0a,\n  0x92, 0x0e, 0x7c, 0x13, 0x3d, 0xfa, 0xe8, 0xde, 0x83, 0xea, 0x33, 0x06,\n  0xcf, 0x16, 0x47, 0x0c, 0x30, 0x05, 0x27, 0x07, 0xe9, 0xf3, 0x0d, 0xe3,\n  0xf5, 0xf8, 0x28, 0x13, 0x2b, 0x19, 0xd7, 0x0b, 0xaa, 0xea, 0x4b, 0xe4,\n  0x69, 0xfd, 0x57, 0x0e, 0x0f, 0x0d, 0xa5, 0xfa, 0xa0, 0xf2, 0x0d, 0x02,\n  0x66, 0x0b, 0xa0, 0x06, 0xb3, 0xff, 0x98, 0xf9, 0xb1, 0xfb, 0xa6, 0x01,\n  0x41, 0x03, 0xbb, 0x01, 0xfa, 0x0a, 0x1d, 0x1e, 0x1d, 0xed, 0x19, 0xc2,\n  0x91, 0xec, 0xc9, 0x23, 0x77, 0x27, 0x12, 0x05, 0x5b, 0xeb, 0x2c, 0xee,\n  0x7b, 0x02, 0x75, 0x08, 0x0b, 0x05, 0x2f, 0x03, 0x6b, 0x16, 0xdf, 0x04,\n  0x8f, 0xd8, 0x77, 0xe3, 0x9b, 0x04, 0x15, 0x19, 0x1f, 0x0e, 0x33, 0x11,\n  0x73, 0x03, 0x10, 0xe2, 0xcd, 0xe9, 0x5b, 0xfe, 0x1f, 0x0d, 0x5a, 0x0d,\n  0xbb, 0x04, 0x3d, 0x03, 0x3d, 0x08, 0x79, 0xf7, 0xe2, 0xe8, 0xe2, 0xf9,\n  0x1a, 0x0f, 0x58, 0x13, 0xdf, 0x0c, 0x94, 0xf7, 0x6a, 0xe3, 0x73, 0xf0,\n  0x00, 0x08, 0x06, 0x11, 0xf3, 0x02, 0x54, 0xf5, 0x82, 0xfe, 0x9f, 0x08,\n  0xf3, 0x05, 0xc4, 0xfe, 0x95, 0xfc, 0x1e, 0xff, 0xf3, 0x02, 0x27, 0x0c,\n  0x10, 0x0d, 0x7b, 0xec, 0xe6, 0xde, 0x25, 0xfa, 0x72, 0x24, 0x92, 0x1a,\n  0x1c, 0xe9, 0x68, 0xde, 0x22, 0xf7, 0x7e, 0x15, 0xa0, 0x12, 0xe7, 0x01,\n  0xa5, 0xfb, 0x52, 0x13, 0x6c, 0x07, 0x8c, 0xd7, 0x1b, 0xe0, 0x0f, 0x0e,\n  0x98, 0x21, 0x51, 0x19, 0x30, 0xf8, 0x38, 0xe0, 0x78, 0xee, 0xdb, 0x06,\n  0x1f, 0x0e, 0x56, 0x0f, 0x8e, 0x0a, 0x59, 0xf1, 0x32, 0xed, 0xd9, 0xf7,\n  0x3b, 0x07, 0x9f, 0x0d, 0xf7, 0x0e, 0xe7, 0x07, 0x00, 0xef, 0x6a, 0xe9,\n  0x65, 0xf9, 0x93, 0x06, 0x98, 0x13, 0x7d, 0x19, 0x8b, 0xf6, 0x48, 0xe0,\n  0x9f, 0xec, 0x80, 0x0b, 0x66, 0x17, 0x7c, 0x0d, 0x6c, 0xff, 0xa1, 0xed,\n  0xd7, 0xf1, 0x40, 0x04, 0x47, 0x0c, 0x24, 0x05, 0xfc, 0x08, 0x11, 0x17,\n  0xab, 0xed, 0xa4, 0xcc, 0x1b, 0xf2, 0xc3, 0x1d, 0x39, 0x24, 0x07, 0x0d,\n  0x22, 0xe8, 0x48, 0xe5, 0x32, 0xf8, 0xe6, 0x09, 0x55, 0x0d, 0x86, 0x11,\n  0xf4, 0x10, 0x46, 0xeb, 0x2a, 0xe3, 0x81, 0xf5, 0x37, 0x09, 0xaf, 0x10,\n  0x4e, 0x08, 0x58, 0x01, 0xe4, 0x13, 0xd7, 0xfd, 0x4c, 0xd6, 0xd1, 0xe9,\n  0x2c, 0x13, 0x5a, 0x24, 0x8d, 0x08, 0xa2, 0xe2, 0x66, 0xe9, 0x69, 0x0a,\n  0x2e, 0x14, 0x74, 0x05, 0xb1, 0xf8, 0xe7, 0xfd, 0xad, 0x0c, 0xc8, 0x0e,\n  0xc4, 0xf1, 0x32, 0xdf, 0x6e, 0xf4, 0x4e, 0x0b, 0x5d, 0x0e, 0x22, 0x07,\n  0x6f, 0x03, 0xa9, 0x09, 0xff, 0x05, 0x27, 0xee, 0x75, 0xe8, 0xb9, 0xff,\n  0xa6, 0x12, 0x57, 0x03, 0x05, 0xf8, 0x03, 0x01, 0xad, 0x18, 0x9a, 0x0d,\n  0x7d, 0xe2, 0x06, 0xe5, 0x16, 0x00, 0x71, 0x12, 0x2e, 0x0d, 0xcb, 0x00,\n  0xc1, 0xf4, 0x6a, 0xf3, 0x0f, 0x01, 0x6d, 0x16, 0x59, 0x15, 0x03, 0xef,\n  0x76, 0xe4, 0xb2, 0xf4, 0x1d, 0x0a, 0x05, 0x11, 0x4d, 0x0f, 0xdc, 0x07,\n  0x0e, 0xee, 0x5b, 0xe9, 0xe4, 0xfb, 0xb7, 0x0c, 0x9a, 0x10, 0x2d, 0x03,\n  0xf1, 0xf5, 0x92, 0xf6, 0x7e, 0xff, 0xe9, 0xff, 0x0f, 0xfe, 0xf3, 0x02,\n  0xf3, 0x07, 0x1d, 0x03, 0x7c, 0x13, 0x21, 0x0b, 0x2a, 0xdd, 0x84, 0xdf,\n  0x9a, 0x05, 0xc8, 0x1b, 0xd7, 0x0c, 0x49, 0xfa, 0xa3, 0xf0, 0x03, 0xf5,\n  0x18, 0x05, 0x87, 0x0d, 0x6a, 0x09, 0x87, 0x08, 0x2d, 0xfe, 0xe1, 0xeb,\n  0x3a, 0xeb, 0xc7, 0x04, 0x02, 0x11, 0x8d, 0x1a, 0xac, 0x0e, 0x41, 0xde,\n  0xea, 0xda, 0x8b, 0xfc, 0xd1, 0x18, 0xf1, 0x15, 0x13, 0x03, 0x36, 0xf3,\n  0x58, 0xf8, 0x2c, 0x0a, 0x96, 0x14, 0xb6, 0xf6, 0xbc, 0xe2, 0xbb, 0xf4,\n  0xc6, 0x0b, 0x0d, 0x0d, 0xc3, 0xfd, 0x84, 0xfb, 0xa5, 0x08, 0xc3, 0x1d,\n  0xce, 0xf8, 0x9e, 0xdb, 0xf8, 0xe7, 0x66, 0x0c, 0xae, 0x17, 0x58, 0x17,\n  0xcc, 0x0e, 0xc7, 0xdf, 0x10, 0xd8, 0x48, 0xff, 0xed, 0x1d, 0x51, 0x11,\n  0x75, 0xfd, 0xa7, 0x02, 0xa7, 0x08, 0x71, 0xe9, 0xc8, 0xe3, 0x5f, 0x07,\n  0x3c, 0x17, 0x2d, 0x0b, 0x5d, 0x02, 0xc7, 0xfd, 0xd1, 0xed, 0xdc, 0xf3,\n  0x7f, 0x06, 0x18, 0x23, 0x4f, 0x12, 0xad, 0xd4, 0x8b, 0xd5, 0xd2, 0x06,\n  0x92, 0x22, 0xed, 0x0f, 0x20, 0xff, 0x66, 0x10, 0x8f, 0xf7, 0x82, 0xdb,\n  0x6a, 0xeb, 0xd7, 0x0b, 0xec, 0x18, 0x0a, 0x0a, 0xdc, 0xfa, 0x5c, 0x0c,\n  0x8f, 0x0e, 0x81, 0xdc, 0x2e, 0xdc, 0x0f, 0x17, 0xf3, 0x23, 0x81, 0xfb,\n  0xd5, 0xe2, 0x17, 0xf3, 0x41, 0x11, 0xbe, 0x10, 0x42, 0x06, 0xa0, 0x04,\n  0xf6, 0xf5, 0xc4, 0xe7, 0x7a, 0xfb, 0x85, 0x0e, 0x8c, 0x15, 0x6f, 0x19,\n  0xf8, 0xe9, 0xe2, 0xcf, 0xa1, 0xf0, 0xbb, 0x19, 0xa8, 0x1b, 0x8f, 0x08,\n  0xa5, 0x0b, 0x22, 0xf3, 0xdb, 0xd7, 0xb2, 0xf4, 0x13, 0x18, 0x45, 0x1c,\n  0x54, 0x11, 0x75, 0xef, 0x15, 0xdd, 0x74, 0xf3, 0x1e, 0x0e, 0xd4, 0x17,\n  0x47, 0x0c, 0xc8, 0xf4, 0x31, 0xee, 0xd0, 0xf5, 0x57, 0x02, 0xe9, 0x0c,\n  0x17, 0x08, 0x17, 0x00, 0xc9, 0xfe, 0x28, 0x09, 0x2a, 0x12, 0x4f, 0xee,\n  0x42, 0xd7, 0x67, 0xf4, 0xb3, 0x1a, 0x7f, 0x25, 0xbe, 0x01, 0xde, 0xe4,\n  0x7d, 0xeb, 0x8e, 0xfe, 0x46, 0x0e, 0x5f, 0x0e, 0x48, 0x0e, 0x8d, 0x01,\n  0x33, 0xe8, 0x81, 0xee, 0xb2, 0x04, 0x44, 0x0d, 0xd8, 0x05, 0xf7, 0xf7,\n  0xff, 0xf6, 0xfb, 0x04, 0x95, 0x0c, 0x17, 0x0f, 0x50, 0x05, 0x84, 0xe8,\n  0x7b, 0xe7, 0xd2, 0xfa, 0x0d, 0x0e, 0x31, 0x10, 0x1e, 0x17, 0x63, 0x01,\n  0x35, 0xde, 0xd1, 0xe4, 0xfa, 0x09, 0xea, 0x17, 0x5f, 0x15, 0xb5, 0x10,\n  0x33, 0xe2, 0xb6, 0xd5, 0x99, 0xfd, 0xbe, 0x1d, 0xd6, 0x12, 0x96, 0x01,\n  0x7b, 0x04, 0x46, 0xf4, 0xa0, 0xe6, 0x85, 0xfd, 0x41, 0x12, 0x67, 0x09,\n  0x17, 0xfc, 0xd5, 0xfb, 0x64, 0x10, 0x6c, 0x17, 0x2c, 0xdb, 0xa6, 0xd2,\n  0x37, 0x0a, 0x21, 0x32, 0x20, 0x18, 0xff, 0xe1, 0xb0, 0xdd, 0x2a, 0xf8,\n  0x5f, 0x12, 0xeb, 0x14, 0xe4, 0x13, 0xfe, 0xf7, 0xb1, 0xe2, 0xed, 0xec,\n  0xff, 0x06, 0x7b, 0x15, 0xa9, 0x09, 0x51, 0x03, 0x51, 0xfb, 0xf0, 0xef,\n  0x49, 0xfb, 0xbf, 0x09, 0x16, 0x12, 0x64, 0x18, 0x3b, 0xee, 0x6d, 0xd2,\n  0x31, 0xed, 0xb0, 0x11, 0xda, 0x1e, 0x69, 0x14, 0x3c, 0xf9, 0x41, 0xe4,\n  0x6d, 0xf9, 0xe5, 0x08, 0x0c, 0x05, 0x2d, 0xf8, 0x25, 0xfe, 0x4f, 0x07,\n  0x7f, 0x16, 0x60, 0x10, 0x76, 0xe2, 0x20, 0xdc, 0x23, 0xfc, 0x61, 0x19,\n  0xfc, 0x14, 0x87, 0x0e, 0x59, 0xfb, 0x3d, 0xe2, 0xc1, 0xe9, 0x6f, 0x04,\n  0x82, 0x15, 0x49, 0x0f, 0x1c, 0x06, 0xa7, 0x03, 0xab, 0xf2, 0xa1, 0xe8,\n  0x45, 0xfa, 0x3f, 0x0b, 0x14, 0x0d, 0xd7, 0x03, 0xd9, 0xfb, 0x9d, 0xfa,\n  0xfd, 0xfd, 0x87, 0xff, 0xaa, 0xf9, 0x11, 0x00, 0x9d, 0x08, 0xb5, 0x0b,\n  0xba, 0x18, 0xb9, 0xf2, 0xcc, 0xce, 0x93, 0xf4, 0xa0, 0x1c, 0x46, 0x1b,\n  0xb1, 0x17, 0x0f, 0xf0, 0x27, 0xd0, 0x85, 0xee, 0x7c, 0x19, 0x0b, 0x2a,\n  0x83, 0x05, 0x12, 0xde, 0x9e, 0xe1, 0x39, 0x08, 0x22, 0x19, 0x9c, 0x18,\n  0x39, 0x0a, 0xd2, 0xda, 0x34, 0xdc, 0xf6, 0x09, 0x24, 0x1d, 0x2b, 0x10,\n  0xee, 0x08, 0x02, 0xf9, 0x9e, 0xdf, 0x14, 0xec, 0x2f, 0x0e, 0xcc, 0x15,\n  0x63, 0x05, 0xd6, 0xfe, 0xe1, 0x0e, 0xc0, 0xf9, 0x51, 0xe3, 0x53, 0xed,\n  0xd6, 0x07, 0x5f, 0x14, 0x13, 0x16, 0x1a, 0x0f, 0xf6, 0xe6, 0x9b, 0xde,\n  0x54, 0xf7, 0x62, 0x14, 0xff, 0x13, 0x45, 0x0b, 0x96, 0x08, 0x0a, 0xee,\n  0x2b, 0xe0, 0x5d, 0xf9, 0xd3, 0x13, 0xad, 0x19, 0x33, 0x07, 0x3a, 0xec,\n  0x5c, 0xed, 0x2d, 0xfe, 0x29, 0x0b, 0x4c, 0x08, 0xea, 0xfb, 0xb5, 0xfa,\n  0x0a, 0x0f, 0xa8, 0x0d, 0x48, 0xef, 0xdc, 0xec, 0x19, 0xfd, 0xb7, 0x05,\n  0xa9, 0x02, 0xeb, 0x04, 0x1f, 0x04, 0xe7, 0x04, 0x3e, 0x1c, 0x49, 0xf7,\n  0x67, 0xcd, 0xcc, 0xed, 0x8e, 0x1a, 0x4a, 0x1b, 0x39, 0x01, 0x6b, 0xf6,\n  0xa1, 0xfc, 0x3d, 0x00, 0x56, 0xff, 0x05, 0x00, 0x9d, 0x01, 0x3b, 0x02,\n  0x1d, 0x03, 0x6f, 0xfe, 0x05, 0xf9, 0xe6, 0xfb, 0xfd, 0x02, 0x24, 0x04,\n  0x4a, 0x08, 0xa8, 0x28, 0x89, 0xf0, 0xdc, 0xb4, 0xe4, 0xe9, 0x35, 0x2a,\n  0x3f, 0x25, 0x11, 0x0e, 0x7b, 0x01, 0x78, 0xe0, 0x81, 0xde, 0x0c, 0x04,\n  0x15, 0x1a, 0xcf, 0x1a, 0x45, 0x08, 0xcc, 0xe4, 0xa1, 0xe5, 0x83, 0xfc,\n  0xd7, 0x0d, 0xf1, 0x0c, 0xd5, 0x03, 0x84, 0xff, 0xd1, 0x0f, 0xeb, 0x07,\n  0x21, 0xe1, 0xb6, 0xea, 0xf6, 0x06, 0xb7, 0x0e, 0x28, 0x07, 0x59, 0xf7,\n  0xc0, 0xf6, 0xda, 0x04, 0x0f, 0x0b, 0x6a, 0x0a, 0x26, 0x07, 0xe3, 0xf3,\n  0x10, 0xe9, 0x8d, 0xf9, 0x30, 0x10, 0x92, 0x0e, 0xc9, 0xf9, 0x77, 0xf4,\n  0x7d, 0x0c, 0xeb, 0x14, 0x3e, 0xf0, 0x4b, 0xe4, 0xf7, 0xf4, 0x37, 0x0b,\n  0x1d, 0x13, 0xd3, 0x07, 0x02, 0x09, 0x8b, 0x04, 0x4e, 0xe7, 0xf4, 0xeb,\n  0xba, 0x0d, 0x4f, 0x0f, 0x93, 0xfd, 0x6e, 0xf8, 0x6b, 0xf6, 0xf3, 0xfd,\n  0x24, 0x07, 0x99, 0x1a, 0x2c, 0x0d, 0x60, 0xe3, 0x66, 0xdf, 0x03, 0xfe,\n  0xdf, 0x18, 0xe0, 0x0f, 0xac, 0x00, 0xb6, 0x04, 0x10, 0xfa, 0x9b, 0xe8,\n  0xc0, 0xf9, 0x3d, 0x0e, 0x9c, 0x0e, 0x68, 0x0b, 0xaa, 0x0c, 0x5e, 0xeb,\n  0xf8, 0xd6, 0xc4, 0xf4, 0x0c, 0x17, 0x32, 0x24, 0xb9, 0x0b, 0x24, 0xe8,\n  0x9d, 0xe9, 0xe1, 0xfd, 0xc8, 0x08, 0xbf, 0x05, 0x69, 0x02, 0x78, 0x04,\n  0x5a, 0x08, 0x02, 0x04, 0xf7, 0xf4, 0x95, 0xef, 0xe3, 0xfc, 0xb7, 0x08,\n  0x5a, 0x08, 0x35, 0xfd, 0x3b, 0xf6, 0x8d, 0x02, 0x5a, 0x0e, 0x03, 0x07,\n  0x4e, 0xff, 0x11, 0xf5, 0xfe, 0xf0, 0x45, 0xfb, 0x23, 0x03, 0x6a, 0x16,\n  0x0d, 0x0e, 0xfb, 0xf0, 0x2d, 0xe7, 0x8f, 0xf7, 0xef, 0x10, 0xaf, 0x0f,\n  0x01, 0x01, 0xf7, 0xfc, 0x4d, 0xfc, 0xf1, 0xfa, 0x47, 0x00, 0xcf, 0x03,\n  0x21, 0x03, 0x87, 0x08, 0x7b, 0xff, 0xa0, 0xec, 0x5f, 0xf7, 0x82, 0x09,\n  0x87, 0x0b, 0xd9, 0x09, 0x94, 0x19, 0xd8, 0xf2, 0xee, 0xc3, 0x5c, 0xea,\n  0x9f, 0x20, 0xa0, 0x24, 0x70, 0x19, 0x91, 0xf1, 0x81, 0xd4, 0x18, 0xeb,\n  0xe8, 0x13, 0xe0, 0x18, 0x08, 0x0f, 0x13, 0x10, 0x50, 0xe4, 0x60, 0xd5,\n  0x10, 0xfe, 0x05, 0x1e, 0x92, 0x12, 0xe3, 0x00, 0xdb, 0x01, 0x26, 0xf0,\n  0xe1, 0xec, 0x57, 0x05, 0xda, 0x0e, 0x19, 0x09, 0xbf, 0x1d, 0x1a, 0xf9,\n  0x58, 0xc4, 0x15, 0xe6, 0xc4, 0x1b, 0x69, 0x23, 0x5d, 0x03, 0xa0, 0x01,\n  0x7d, 0x0f, 0x71, 0xe3, 0x04, 0xd8, 0x42, 0x06, 0xc8, 0x1e, 0x0a, 0x0f,\n  0xc1, 0xf9, 0x36, 0xf8, 0x99, 0x02, 0xc0, 0x05, 0xb1, 0xfd, 0x0d, 0xf8,\n  0xc3, 0xfc, 0x3f, 0x04, 0xb9, 0xfc, 0xdc, 0xf6, 0xf4, 0x06, 0xdf, 0x1b,\n  0xdb, 0xfe, 0xd4, 0xe3, 0x10, 0xec, 0xeb, 0x02, 0x19, 0x14, 0x72, 0x0b,\n  0xdb, 0xfe, 0xf1, 0xfd, 0x63, 0x10, 0xf7, 0x03, 0x5f, 0xdc, 0x28, 0xe7,\n  0x7d, 0x10, 0x71, 0x1b, 0xda, 0x13, 0x7c, 0x01, 0xfb, 0xe1, 0xf6, 0xe3,\n  0x55, 0x08, 0x94, 0x16, 0xe7, 0x08, 0x71, 0xf6, 0x92, 0xf0, 0xf3, 0xff,\n  0xd1, 0x0b, 0x2b, 0x07, 0x6e, 0x06, 0x5a, 0x14, 0xc1, 0xf4, 0x3a, 0xd6,\n  0x96, 0xef, 0x0b, 0x13, 0x7f, 0x18, 0xeb, 0x03, 0x9e, 0x04, 0x47, 0x0c,\n  0x8b, 0xec, 0xd7, 0xe3, 0x95, 0xf9, 0x8f, 0x15, 0xc0, 0x14, 0x81, 0xfc,\n  0xd2, 0xee, 0xb1, 0xf2, 0x74, 0x09, 0x9d, 0x1a, 0x1b, 0x06, 0x41, 0xe6,\n  0xfd, 0xe9, 0x47, 0x06, 0xb1, 0x14, 0x59, 0x18, 0x8f, 0xfd, 0x26, 0xe1,\n  0xca, 0xe9, 0xbb, 0x04, 0x66, 0x17, 0x43, 0x10, 0x34, 0x00, 0x67, 0xee,\n  0xd7, 0xf1, 0x30, 0x04, 0xb2, 0x15, 0x74, 0x1b, 0x7c, 0xee, 0x4b, 0xd3,\n  0x89, 0xf1, 0x5a, 0x17, 0xed, 0x1b, 0x60, 0x10, 0xec, 0xf6, 0x26, 0xe3,\n  0xaf, 0xf2, 0x9f, 0x06, 0xae, 0x11, 0xb8, 0x01, 0x1a, 0xf8, 0x6b, 0xfc,\n  0xd8, 0x11, 0xe5, 0x1c, 0x53, 0xea, 0x3f, 0xd5, 0x07, 0xf2, 0x5d, 0x18,\n  0x4b, 0x18, 0x5b, 0x02, 0xb9, 0xf7, 0x3e, 0xfb, 0x01, 0x01, 0x3b, 0x02,\n  0x03, 0x02, 0xe8, 0x01, 0x9e, 0x00, 0xfb, 0xfc, 0x88, 0xfb, 0xf7, 0xfe,\n  0x32, 0x04, 0xd2, 0x05, 0xc1, 0x01, 0x4c, 0xf4, 0xe1, 0xf2, 0x6a, 0x01,\n  0x64, 0x0a, 0x99, 0x08, 0xad, 0xff, 0x31, 0xfa, 0x0f, 0xf5, 0x84, 0xff,\n  0x39, 0x08, 0x70, 0x16, 0xb6, 0x0f, 0x96, 0xe3, 0xef, 0xdb, 0xb0, 0xff,\n  0x22, 0x1c, 0xe3, 0x1e, 0x33, 0x01, 0xd8, 0xd8, 0x9b, 0xea, 0xac, 0x17,\n  0x42, 0x1f, 0x2a, 0xfa, 0x93, 0xe2, 0x47, 0xf4, 0xe5, 0x0e, 0xfe, 0x15,\n  0x49, 0x09, 0xca, 0xe9, 0x07, 0xe7, 0x5a, 0x06, 0x83, 0x21, 0x4f, 0x0d,\n  0x6d, 0xe8, 0xeb, 0xe8, 0x06, 0xfb, 0xde, 0x0c, 0x38, 0x0f, 0x1f, 0x0e,\n  0x67, 0x00, 0x7b, 0xe3, 0x22, 0xed, 0xa4, 0x0c, 0xbc, 0x22, 0x5d, 0x0c,\n  0x15, 0xe5, 0x3c, 0xe4, 0x6a, 0xf9, 0x0b, 0x13, 0x53, 0x11, 0x10, 0x16,\n  0x09, 0xfe, 0xcf, 0xd6, 0x7d, 0xe8, 0xac, 0x13, 0xd0, 0x18, 0xbb, 0x17,\n  0x89, 0x03, 0xd7, 0xd9, 0x23, 0xe0, 0x24, 0x05, 0xf4, 0x1b, 0x62, 0x0f,\n  0xac, 0x06, 0xfc, 0x05, 0xa1, 0xea, 0x23, 0xe1, 0x87, 0xfe, 0x6d, 0x1c,\n  0xa5, 0x1d, 0x36, 0xf6, 0xab, 0xe0, 0xb2, 0xed, 0xa6, 0x0a, 0x1b, 0x15,\n  0xa1, 0x08, 0xac, 0x06, 0x1f, 0x03, 0x32, 0xea, 0xa4, 0xe7, 0x3e, 0x04,\n  0xaa, 0x13, 0xde, 0x0e, 0xb8, 0x16, 0x69, 0xf3, 0x57, 0xd8, 0xaf, 0xec,\n  0xd0, 0x09, 0xbb, 0x17, 0x27, 0x0b, 0x65, 0xfc, 0x13, 0xfe, 0x6f, 0x02,\n  0xd1, 0xf8, 0x61, 0xf9, 0x37, 0x04, 0xd0, 0x04, 0x44, 0x0c, 0x3f, 0x20,\n  0xb4, 0xe5, 0x24, 0xc1, 0x39, 0xf9, 0x5d, 0x27, 0x22, 0x1b, 0xd3, 0xfc,\n  0x19, 0xf4, 0x31, 0xfb, 0xe5, 0x02, 0x06, 0x0c, 0xbe, 0x0a, 0x5a, 0xed,\n  0x46, 0xe4, 0x31, 0x00, 0x1f, 0x16, 0xdf, 0x13, 0x20, 0x0b, 0xf2, 0xed,\n  0x1f, 0xd9, 0x91, 0xf9, 0xed, 0x1e, 0xf6, 0x24, 0xb5, 0xf8, 0x4a, 0xde,\n  0xa2, 0xef, 0x1a, 0x06, 0x59, 0x0b, 0xb7, 0x05, 0xc5, 0x02, 0x5a, 0x05,\n  0x15, 0x09, 0xc9, 0xfc, 0x78, 0xe9, 0xc2, 0xf0, 0xf0, 0x0a, 0xf5, 0x11,\n  0x39, 0x0a, 0x08, 0x10, 0xa9, 0xf5, 0xc2, 0xdb, 0xdc, 0xf0, 0xc9, 0x0b,\n  0x82, 0x15, 0x25, 0x08, 0x94, 0xf4, 0xa9, 0xf6, 0xcf, 0x05, 0xb6, 0x1d,\n  0x66, 0x05, 0x64, 0xdb, 0xe3, 0xe6, 0xda, 0x0c, 0xac, 0x1c, 0x5f, 0x05,\n  0xe0, 0xf3, 0x61, 0xf4, 0xb6, 0xff, 0x8b, 0x04, 0xcf, 0xff, 0xc9, 0xfb,\n  0xbe, 0x08, 0x9f, 0x16, 0x1d, 0xfa, 0x45, 0xe2, 0xbe, 0xef, 0x1f, 0x0d,\n  0x48, 0x14, 0x04, 0x0b, 0xd5, 0x08, 0xc7, 0xf7, 0xe0, 0xe1, 0xb9, 0xf0,\n  0xda, 0x0e, 0x52, 0x1b, 0x17, 0x0a, 0x52, 0xee, 0xbc, 0xed, 0xd5, 0xfe,\n  0xb0, 0x09, 0x1a, 0x08, 0xc1, 0xfa, 0x1b, 0xf5, 0x65, 0x02, 0x56, 0x0a,\n  0x38, 0x05, 0x25, 0xfe, 0xdf, 0xfc, 0x35, 0xff, 0xa4, 0xff, 0xe7, 0xff,\n  0xfc, 0x01, 0x6e, 0x0c, 0xdc, 0x19, 0x1e, 0xed, 0x52, 0xcb, 0x9c, 0xed,\n  0xdc, 0x1a, 0x6d, 0x1f, 0x40, 0x09, 0x8c, 0x05, 0x25, 0xfa, 0x61, 0xe0,\n  0x1d, 0xed, 0xd7, 0x0f, 0x29, 0x1b, 0xff, 0x1a, 0xb8, 0xf2, 0x95, 0xd9,\n  0x24, 0xec, 0x48, 0x0e, 0xa3, 0x16, 0x12, 0x11, 0x92, 0x0c, 0x3c, 0xea,\n  0x4a, 0xdd, 0x41, 0xf7, 0xda, 0x15, 0xc6, 0x14, 0x9b, 0x00, 0xd3, 0x05,\n  0x2f, 0x00, 0xff, 0xe4, 0xeb, 0xf1, 0x4c, 0x10, 0x68, 0x0e, 0x1a, 0x13,\n  0x3f, 0x11, 0xfa, 0xd6, 0xd0, 0xd0, 0x74, 0x09, 0x96, 0x23, 0xfd, 0x19,\n  0x4f, 0x0f, 0x57, 0xde, 0xad, 0xd4, 0xd1, 0x03, 0xeb, 0x1f, 0x20, 0x0e,\n  0x3c, 0x05, 0xaf, 0x10, 0x05, 0xe3, 0xb4, 0xd4, 0xe7, 0x02, 0xeb, 0x1f,\n  0xbe, 0x11, 0x97, 0x06, 0xa8, 0x01, 0x31, 0xe5, 0x03, 0xe5, 0x39, 0x08,\n  0x98, 0x18, 0xf2, 0x14, 0x94, 0x07, 0xbf, 0xe7, 0x24, 0xe0, 0x8e, 0xfa,\n  0x71, 0x11, 0xe1, 0x17, 0x44, 0x14, 0x2c, 0xf3, 0x76, 0xe1, 0xc0, 0xf2,\n  0xbf, 0x07, 0x9a, 0x16, 0x3c, 0x14, 0x53, 0xf6, 0x38, 0xe6, 0xd1, 0xf0,\n  0x62, 0x09, 0x92, 0x12, 0x0d, 0x08, 0xba, 0x06, 0x31, 0xfa, 0x7e, 0xe6,\n  0x6c, 0xfb, 0x09, 0x0e, 0xb5, 0x1c, 0x4e, 0x11, 0x8a, 0xdc, 0xc0, 0xd5,\n  0xce, 0xff, 0xe9, 0x1c, 0x39, 0x1b, 0x2c, 0x0c, 0xf8, 0xe9, 0x61, 0xe5,\n  0xe9, 0xf5, 0xfd, 0x0a, 0x7e, 0x11, 0x9b, 0x06, 0xc9, 0xfb, 0x1a, 0x09,\n  0x2a, 0x0b, 0x5f, 0xdf, 0x54, 0xeb, 0xb7, 0x0d, 0x6a, 0x1f, 0x82, 0x1f,\n  0x2b, 0xdf, 0x72, 0xc9, 0xdc, 0xfe, 0xf3, 0x23, 0x15, 0x14, 0x36, 0xff,\n  0x78, 0x01, 0xf3, 0xf2, 0x21, 0xeb, 0xca, 0x01, 0x5f, 0x0f, 0xc7, 0x08,\n  0x39, 0xfd, 0xbe, 0xfe, 0xde, 0x05, 0x42, 0x01, 0x6b, 0xf2, 0x6d, 0xfc,\n  0xcf, 0x15, 0x41, 0xfb, 0x31, 0xe5, 0x17, 0xf3, 0xf8, 0x0b, 0x5f, 0x14,\n  0xfe, 0x0d, 0x2f, 0x08, 0xe4, 0xec, 0xcc, 0xe0, 0x61, 0xfc, 0x5f, 0x17,\n  0xec, 0x10, 0xd1, 0x0b, 0xc5, 0x02, 0x12, 0xe5, 0xd5, 0xe8, 0x7e, 0x01,\n  0x8f, 0x0f, 0x60, 0x10, 0x63, 0x05, 0xa1, 0xf4, 0xa9, 0xf4, 0x46, 0xf9,\n  0xbf, 0xff, 0xfa, 0x09, 0x7a, 0x08, 0x12, 0x05, 0xb7, 0x04, 0x02, 0xf5,\n  0xbd, 0xef, 0x36, 0x01, 0xdc, 0x0b, 0x9a, 0x09, 0x70, 0x07, 0xf0, 0xfb,\n  0x18, 0xec, 0xd8, 0xf3, 0xe1, 0x08, 0xe8, 0x11, 0x40, 0x0f, 0x8b, 0xfe,\n  0xfe, 0xe5, 0x2a, 0xec, 0x6b, 0x05, 0x21, 0x11, 0x77, 0x07, 0xb9, 0xf7,\n  0xb5, 0xfd, 0x20, 0x12, 0x7b, 0x02, 0x11, 0xef, 0xff, 0xf2, 0x61, 0xfb,\n  0x1f, 0x09, 0x6f, 0x0b, 0xe1, 0x03, 0xc5, 0xfc, 0xd3, 0x06, 0x5e, 0x19,\n  0x90, 0xea, 0x64, 0xcf, 0x36, 0xff, 0x09, 0x20, 0x51, 0x14, 0x7c, 0x08,\n  0x5f, 0xfd, 0x57, 0xe2, 0x00, 0xe9, 0x5a, 0x0b, 0x7f, 0x18, 0xbd, 0x14,\n  0x4f, 0x02, 0x1f, 0xe3, 0x1a, 0xe7, 0x65, 0x03, 0xa9, 0x14, 0x07, 0x0f,\n  0xad, 0xfc, 0x28, 0xf4, 0x84, 0xf9, 0x56, 0xff, 0x38, 0xff, 0x24, 0x04,\n  0xf7, 0x06, 0xa1, 0x08, 0xc5, 0x11, 0x7b, 0xf5, 0x41, 0xe1, 0x41, 0xf3,\n  0x4d, 0x09, 0xa2, 0x10, 0x21, 0x0e, 0xbd, 0x02, 0x13, 0xf1, 0x06, 0xf3,\n  0x57, 0xff, 0xb7, 0x07, 0xe7, 0x09, 0xa7, 0x02, 0x6e, 0xf3, 0x83, 0xf3,\n  0x76, 0x07, 0x74, 0x1e, 0x56, 0x04, 0xea, 0xe3, 0xfd, 0xe6, 0x29, 0x03,\n  0x52, 0x16, 0x2d, 0x0b, 0xdf, 0x01, 0x0f, 0x06, 0x33, 0xf5, 0x2e, 0xe8,\n  0xe1, 0xfd, 0x3e, 0x10, 0xf6, 0x0e, 0x81, 0x0b, 0xf9, 0xfb, 0xbc, 0xed,\n  0x00, 0xf0, 0x64, 0xfb, 0xbb, 0x07, 0x10, 0x07, 0xaf, 0x03, 0x7f, 0x05,\n  0xbd, 0x08, 0x7d, 0xf9, 0x37, 0xeb, 0x60, 0x0b, 0x79, 0x16, 0x63, 0xf5,\n  0x08, 0xe9, 0xe4, 0xf4, 0x41, 0x0c, 0x91, 0x0f, 0x6b, 0x04, 0x02, 0xff,\n  0xf8, 0x0f, 0x2f, 0x03, 0x99, 0xde, 0x7d, 0xe7, 0x68, 0x09, 0xbf, 0x1b,\n  0x06, 0x13, 0x86, 0xf6, 0x46, 0xea, 0xf1, 0xf6, 0xcc, 0x07, 0xe9, 0x0c,\n  0xbd, 0x02, 0x54, 0xf7, 0xc9, 0xf2, 0x9f, 0x03, 0xe9, 0x09, 0x8d, 0x11,\n  0xcc, 0x12, 0x4a, 0xe7, 0xf5, 0xd8, 0xda, 0xf9, 0xe2, 0x19, 0xbf, 0x13,\n  0x9b, 0x06, 0xa2, 0x06, 0xee, 0xf1, 0x35, 0xe0, 0x19, 0xf9, 0xe6, 0x14,\n  0xd3, 0x19, 0x5d, 0x0b, 0x01, 0xeb, 0xad, 0xe5, 0xb1, 0xfb, 0xfd, 0x0d,\n  0x44, 0x11, 0x71, 0x03, 0x44, 0xf6, 0xa4, 0xf6, 0xfc, 0xff, 0xb9, 0x02,\n  0xd0, 0xfe, 0x0d, 0xfe, 0x7e, 0x0f, 0x61, 0x0d, 0xe4, 0xef, 0xba, 0xe9,\n  0x63, 0xf7, 0xd7, 0x0f, 0xa0, 0x0d, 0xb7, 0x0f, 0xd9, 0x0c, 0x8f, 0xdd,\n  0xd4, 0xdc, 0xe7, 0x0a, 0x49, 0x1c, 0x56, 0x12, 0x5c, 0x0d, 0xa1, 0xea,\n  0x89, 0xd7, 0xaa, 0xf8, 0xf1, 0x18, 0xe3, 0x18, 0xde, 0x0e, 0x11, 0xf4,\n  0xbc, 0xe1, 0xa9, 0xf2, 0xa6, 0x0b, 0xcd, 0x16, 0x62, 0x06, 0x44, 0xf5,\n  0xeb, 0xf4, 0xa3, 0xfc, 0x2c, 0xff, 0x5b, 0x04, 0x67, 0x07, 0xb9, 0x08,\n  0x64, 0x10, 0x91, 0xf5, 0x41, 0xe4, 0xc9, 0xf4, 0x27, 0x08, 0x14, 0x0c,\n  0xc2, 0x04, 0x7d, 0xff, 0x8e, 0x0e, 0x1f, 0x0a, 0x3d, 0xe8, 0xef, 0xe8,\n  0x49, 0xfd, 0x80, 0x0f, 0xb9, 0x0e, 0x79, 0x00, 0x28, 0xf8, 0xdc, 0x04,\n  0x6f, 0x11, 0x04, 0xf7, 0xa4, 0xe7, 0xbe, 0xf7, 0x77, 0x06, 0x51, 0x08,\n  0x87, 0x08, 0xcc, 0x0b, 0xf6, 0xfe, 0xcb, 0xeb, 0x4b, 0xf2, 0x17, 0x09,\n  0x39, 0x12, 0x1a, 0x0f, 0x04, 0xfb, 0x16, 0xe8, 0xf2, 0xf2, 0xcb, 0x06,\n  0x2d, 0x0e, 0x7b, 0x06, 0x59, 0xfc, 0x80, 0xf9, 0x43, 0xfd, 0xcb, 0x02,\n  0xbd, 0x02, 0xe6, 0x00, 0x0b, 0xfc, 0x80, 0xf6, 0x2c, 0x00, 0x7f, 0x0a,\n  0x1e, 0x06, 0x07, 0x05, 0x8e, 0x08, 0x53, 0xef, 0x05, 0xea, 0x93, 0x04,\n  0x40, 0x10, 0xa9, 0x09, 0xcb, 0x06, 0xe5, 0xfa, 0x41, 0xe9, 0xf9, 0xf5,\n  0x17, 0x0b, 0x3a, 0x11, 0xdf, 0x0c, 0x58, 0x07, 0xaf, 0xec, 0x8b, 0xdc,\n  0x77, 0xf4, 0x4c, 0x17, 0x2c, 0x15, 0xd6, 0x0e, 0xd6, 0x0b, 0xda, 0xe4,\n  0x6b, 0xdd, 0xe9, 0xfc, 0x06, 0x1a, 0x5e, 0x13, 0xc5, 0xfc, 0x5f, 0xf1,\n  0xe5, 0xfd, 0x42, 0x05, 0x23, 0x14, 0x65, 0x17, 0xf5, 0xde, 0x53, 0xcf,\n  0x5a, 0xfe, 0x99, 0x21, 0x62, 0x1a, 0xa4, 0x0c, 0x81, 0xf0, 0xb4, 0xe0,\n  0x1c, 0xf4, 0x4a, 0x0c, 0xf2, 0x14, 0xcd, 0x0e, 0x99, 0xf8, 0xfa, 0xec,\n  0x4a, 0xf6, 0x3b, 0x00, 0xfb, 0x05, 0x59, 0x09, 0xc3, 0x02, 0xcf, 0x0b,\n  0x7d, 0x12, 0x48, 0xe5, 0xce, 0xd8, 0xd8, 0xff, 0x5e, 0x1c, 0x30, 0x13,\n  0x3c, 0x0b, 0x7b, 0xfd, 0x60, 0xe0, 0x24, 0xe9, 0xcc, 0x08, 0x86, 0x21,\n  0xef, 0x0e, 0xbc, 0xed, 0x6a, 0xe5, 0x7c, 0xf8, 0x0f, 0x10, 0x09, 0x11,\n  0xc2, 0xff, 0x00, 0x11, 0x6b, 0x05, 0xd5, 0xd1, 0xdd, 0xe7, 0x9b, 0x18,\n  0x46, 0x18, 0xcd, 0x14, 0xc9, 0x08, 0x93, 0xd2, 0xa3, 0xdc, 0x8b, 0x10,\n  0xe1, 0x1f, 0xba, 0x08, 0x29, 0xf9, 0xc3, 0xfc, 0x95, 0xf9, 0x81, 0xfb,\n  0x37, 0x03, 0x2f, 0x05, 0x29, 0x02, 0x0f, 0x02, 0x3d, 0xfe, 0x4c, 0xf8,\n  0x91, 0xfd, 0x8f, 0x03, 0xfd, 0x03, 0x10, 0x06, 0x6a, 0x14, 0xd9, 0xf7,\n  0xe8, 0xd3, 0x3c, 0xf2, 0x16, 0x19, 0xf2, 0x15, 0x9a, 0x09, 0x49, 0x11,\n  0xe1, 0xdd, 0xc7, 0xd5, 0xf7, 0x09, 0x71, 0x2b, 0x99, 0x20, 0x21, 0xe4,\n  0xa0, 0xd3, 0xe3, 0xf3, 0x33, 0x19, 0x0f, 0x17, 0x2c, 0x06, 0xb4, 0x08,\n  0x15, 0xf8, 0x40, 0xdf, 0xc0, 0xef, 0x25, 0x12, 0x0a, 0x14, 0xdc, 0x13,\n  0x78, 0x07, 0x0a, 0xe0, 0x32, 0xe1, 0xab, 0xff, 0x2f, 0x18, 0x5f, 0x11,\n  0x40, 0x10, 0x6d, 0xfa, 0xab, 0xe1, 0x08, 0xef, 0x14, 0x05, 0x1f, 0x10,\n  0xb0, 0x08, 0x13, 0x00, 0xe7, 0xfe, 0x8b, 0x02, 0x49, 0xfe, 0xab, 0xfd,\n  0x6d, 0x0e, 0x73, 0xfd, 0xc8, 0xe3, 0x11, 0xf1, 0xbd, 0x0b, 0x02, 0x17,\n  0x10, 0x16, 0xe9, 0xf7, 0xc2, 0xe3, 0x01, 0xee, 0xab, 0x05, 0xf0, 0x13,\n  0x45, 0x09, 0xbb, 0xfe, 0x36, 0x01, 0x81, 0xfa, 0x11, 0xf5, 0xf8, 0xff,\n  0xc3, 0x07, 0xc7, 0x05, 0x76, 0x05, 0x32, 0xff, 0x30, 0xf2, 0xa9, 0xf5,\n  0x97, 0x05, 0x8d, 0x09, 0x34, 0x0d, 0x0b, 0x1c, 0x18, 0xeb, 0x77, 0xc7,\n  0x59, 0xf1, 0x50, 0x21, 0xb4, 0x1c, 0x7d, 0x13, 0x7b, 0xfd, 0x98, 0xdb,\n  0x8d, 0xe6, 0x98, 0x06, 0x60, 0x19, 0x14, 0x0d, 0xf5, 0x09, 0x72, 0x01,\n  0x25, 0xe8, 0x9b, 0xe7, 0xb9, 0xfd, 0x1c, 0x13, 0x45, 0x11, 0x4e, 0x11,\n  0xd6, 0xfa, 0x61, 0xe2, 0x44, 0xed, 0x48, 0x07, 0xc8, 0x13, 0xab, 0x11,\n  0x84, 0x01, 0xd7, 0xe6, 0xec, 0xed, 0x84, 0x13, 0xcc, 0x1b, 0xd1, 0xf6,\n  0x4c, 0xe2, 0x0b, 0xf5, 0xed, 0x12, 0xd1, 0x17, 0x7f, 0x04, 0x10, 0xee,\n  0x00, 0xec, 0xe1, 0xfd, 0xaa, 0x0c, 0xf3, 0x10, 0xb6, 0x15, 0x67, 0xf2,\n  0x84, 0xdd, 0xa9, 0xf0, 0x62, 0x0c, 0xc9, 0x14, 0xf0, 0x0e, 0x83, 0x07,\n  0xbc, 0xee, 0x12, 0xe9, 0x2d, 0xfb, 0x84, 0x0b, 0x48, 0x0a, 0xbd, 0xff,\n  0xd4, 0x05, 0xbc, 0x0f, 0x03, 0xf5, 0x25, 0xe8, 0x04, 0xf6, 0xb4, 0x04,\n  0x2a, 0x0e, 0xbb, 0x07, 0x71, 0x02, 0x79, 0xfe, 0xad, 0xf9, 0xca, 0xfa,\n  0x87, 0x0d, 0xca, 0x1d, 0xbb, 0xec, 0x3b, 0xd0, 0xc4, 0xf3, 0x75, 0x1c,\n  0x9e, 0x19, 0xa1, 0x12, 0xb2, 0xfa, 0x73, 0xdd, 0x2a, 0xe9, 0x86, 0x07,\n  0x50, 0x18, 0xfa, 0x0a, 0x7c, 0x11, 0x77, 0xfc, 0x17, 0xd8, 0x83, 0xea,\n  0xe0, 0x11, 0x38, 0x19, 0xd7, 0x05, 0xfc, 0x01, 0x00, 0xff, 0x22, 0xeb,\n  0x50, 0xf3, 0x0a, 0x09, 0x2c, 0x0f, 0x15, 0x02, 0x37, 0x0b, 0xe3, 0x14,\n  0xf5, 0xe0, 0xeb, 0xd6, 0x19, 0x03, 0x39, 0x1b, 0xb9, 0x0e, 0xb2, 0x00,\n  0xa1, 0xf6, 0xf1, 0xf4, 0xe6, 0xf7, 0x60, 0x05, 0x46, 0x0b, 0x65, 0x0d,\n  0x3f, 0x13, 0x16, 0xed, 0xf5, 0xd9, 0x91, 0xf6, 0x63, 0x17, 0xc0, 0x14,\n  0xd2, 0x0a, 0x8e, 0xf9, 0x07, 0xe5, 0xb7, 0xf6, 0x23, 0x11, 0x7a, 0x24,\n  0x9d, 0xfd, 0x7e, 0xd7, 0x9e, 0xe5, 0x51, 0x0b, 0x8f, 0x1b, 0xda, 0x09,\n  0xad, 0x00, 0x1b, 0x05, 0xb3, 0xf2, 0x2c, 0xe8, 0x2b, 0x00, 0x00, 0x14,\n  0xc2, 0x21, 0x97, 0xf7, 0x75, 0xce, 0x4f, 0xf1, 0x5e, 0x1c, 0xa8, 0x25,\n  0x37, 0x04, 0x3c, 0xdd, 0x01, 0xe5, 0x1f, 0x08, 0xc8, 0x18, 0xef, 0x0f,\n  0x11, 0xf6, 0xea, 0xec, 0xcb, 0x00, 0x2f, 0x19, 0xb3, 0x06, 0xf5, 0xe7,\n  0xc8, 0xed, 0xdc, 0x01, 0x35, 0x0d, 0xe7, 0x0d, 0xb8, 0x04, 0x09, 0xf5,\n  0x5d, 0xed, 0xd7, 0xfd, 0xbe, 0x0b, 0x8d, 0x18, 0xee, 0x0e, 0x5a, 0xe6,\n  0x61, 0xe0, 0x9d, 0xf9, 0x3e, 0x13, 0xf6, 0x1a, 0xd4, 0x0f, 0x01, 0xe9,\n  0x66, 0xdf, 0xe1, 0xfb, 0x29, 0x16, 0x1f, 0x10, 0xc7, 0x0f, 0x0d, 0x00,\n  0x5a, 0xe0, 0xc1, 0xe6, 0x4b, 0x04, 0x92, 0x17, 0x96, 0x0c, 0x29, 0x02,\n  0x1b, 0x06, 0xac, 0xf6, 0x2a, 0xe7, 0x60, 0xfb, 0x7b, 0x1e, 0x4d, 0x10,\n  0x94, 0xe8, 0x66, 0xe5, 0xf9, 0xff, 0xcd, 0x14, 0x82, 0x10, 0xac, 0x0b,\n  0x81, 0xf7, 0x22, 0xe5, 0xea, 0xf2, 0x92, 0x09, 0x54, 0x14, 0x03, 0x06,\n  0xda, 0xf0, 0x51, 0xf7, 0xda, 0x10, 0x62, 0x09, 0xd1, 0xf3, 0x61, 0xef,\n  0xdd, 0xf9, 0xda, 0x0b, 0xfc, 0x0c, 0x97, 0x03, 0x4d, 0xfc, 0x70, 0x01,\n  0x8c, 0x0f, 0xc2, 0xf8, 0xd2, 0xe3, 0x7e, 0xf5, 0x84, 0x0b, 0x0b, 0x10,\n  0xab, 0x04, 0x8c, 0xf6, 0xd9, 0xf4, 0x21, 0x03, 0xed, 0x0b, 0x4f, 0x0d,\n  0x4b, 0x07, 0x09, 0xf0, 0x92, 0xe9, 0xf7, 0xfd, 0x97, 0x0a, 0x82, 0x0a,\n  0x43, 0xfd, 0x8f, 0xf4, 0xbc, 0xff, 0x8f, 0x09, 0x9e, 0x06, 0x5a, 0x06,\n  0xc7, 0x01, 0xa4, 0xf6, 0x8d, 0xf8, 0xad, 0xfa, 0xb3, 0xfc, 0xe7, 0x03,\n  0x89, 0x09, 0x7f, 0x16, 0x93, 0xfd, 0x95, 0xdf, 0xda, 0xea, 0x20, 0x09,\n  0x15, 0x17, 0xb7, 0x0a, 0x92, 0x06, 0x29, 0x02, 0x31, 0xe4, 0xb6, 0xea,\n  0xc7, 0x0c, 0x31, 0x18, 0x7f, 0x1e, 0x47, 0xf3, 0xef, 0xd5, 0x08, 0xea,\n  0x40, 0x0f, 0x41, 0x1a, 0xd0, 0x07, 0xe5, 0xf8, 0xa1, 0x00, 0xd4, 0x09,\n  0xd0, 0xf1, 0xee, 0xee, 0xe2, 0x04, 0x46, 0x0d, 0xb9, 0x08, 0xe3, 0x06,\n  0x95, 0xf8, 0xde, 0xe9, 0x9d, 0xf9, 0x64, 0x0b, 0xd1, 0x0b, 0x0d, 0x02,\n  0xa2, 0x0d, 0x62, 0x0e, 0xa9, 0xdf, 0x8f, 0xdb, 0xba, 0x06, 0xa0, 0x19,\n  0xe2, 0x0c, 0x0d, 0xf9, 0x02, 0xf0, 0x9c, 0xff, 0xf1, 0x09, 0xba, 0x1a,\n  0x0d, 0x08, 0x69, 0xdd, 0x20, 0xe1, 0xef, 0x04, 0x4d, 0x1b, 0x0f, 0x0e,\n  0x6b, 0x12, 0x76, 0xf5, 0xcc, 0xd4, 0xc9, 0xf1, 0x25, 0x18, 0xaa, 0x15,\n  0xd3, 0x07, 0x7d, 0x10, 0x61, 0xe7, 0x32, 0xd5, 0xa1, 0x00, 0x84, 0x1d,\n  0xe9, 0x0f, 0xf9, 0x02, 0x3d, 0x10, 0x9f, 0xea, 0x3f, 0xd5, 0x0a, 0xfe,\n  0x09, 0x1d, 0x89, 0x13, 0x6c, 0x08, 0xfa, 0x01, 0x1f, 0xe6, 0x9c, 0xe3,\n  0x8f, 0x05, 0x3f, 0x19, 0xcc, 0x17, 0x3a, 0x00, 0xda, 0xe4, 0x8d, 0xec,\n  0x51, 0x03, 0x75, 0x10, 0x69, 0x0e, 0x36, 0xfe, 0x2f, 0xf4, 0x89, 0xf3,\n  0xed, 0xfd, 0x94, 0x0a, 0x9d, 0x17, 0x57, 0x08, 0xbd, 0xe7, 0xd2, 0xe9,\n  0x05, 0xfa, 0x5c, 0x0f, 0x88, 0x0d, 0x52, 0x0c, 0xd9, 0x0f, 0x01, 0xe7,\n  0x3e, 0xdb, 0xed, 0xff, 0x6c, 0x1b, 0x97, 0x0d, 0x54, 0x11, 0x5b, 0x02,\n  0xe1, 0xd4, 0xe3, 0xe4, 0x79, 0x10, 0x9f, 0x1d, 0xcf, 0x05, 0x45, 0x0e,\n  0xff, 0xfe, 0x96, 0xd2, 0x88, 0xed, 0x7c, 0x17, 0x86, 0x18, 0x8a, 0x01,\n  0xb2, 0xf7, 0x2f, 0x00, 0x66, 0xfe, 0x20, 0xf9, 0xc2, 0xff, 0x46, 0x05,\n  0xef, 0x05, 0xa8, 0x15, 0x70, 0x01, 0xe9, 0xce, 0xcd, 0xe9, 0xd2, 0x16,\n  0x82, 0x27, 0x1d, 0x18, 0xe8, 0xdf, 0xde, 0xd2, 0x09, 0xfc, 0x6d, 0x1d,\n  0xdf, 0x13, 0x01, 0x02, 0x57, 0x07, 0xd9, 0xfd, 0xe4, 0xe3, 0xa4, 0xea,\n  0x88, 0x07, 0x58, 0x16, 0x24, 0x0c, 0x98, 0x0f, 0x09, 0xf7, 0xea, 0xda,\n  0x58, 0xf2, 0x19, 0x1d, 0x80, 0x1e, 0x01, 0xf5, 0x6a, 0xe2, 0xaa, 0xf2,\n  0xe7, 0x0e, 0x41, 0x12, 0x98, 0x0c, 0xc3, 0x05, 0xb4, 0xec, 0xbb, 0xe5,\n  0x45, 0xfd, 0xea, 0x12, 0x36, 0x14, 0x15, 0xff, 0xf5, 0xef, 0x18, 0xf5,\n  0x59, 0xfd, 0x6f, 0x05, 0x27, 0x0b, 0xdc, 0x0e, 0xa5, 0xfa, 0x0c, 0xe7,\n  0x5b, 0xfd, 0x65, 0x0c, 0xde, 0x1e, 0xa8, 0x0a, 0xd4, 0xd9, 0x7f, 0xdf,\n  0x0d, 0x00, 0x68, 0x19, 0x9b, 0x10, 0x83, 0x06, 0x84, 0x08, 0xa3, 0xf1,\n  0xc8, 0xe1, 0x50, 0xf9, 0x9b, 0x12, 0x33, 0x17, 0x57, 0x0b, 0x8b, 0xef,\n  0x85, 0xe8, 0x98, 0xfa, 0xb8, 0x0a, 0x26, 0x0f, 0x73, 0x05, 0xb1, 0xf7,\n  0xf0, 0xf6, 0x9d, 0xf9, 0xad, 0xff, 0x18, 0x08, 0x34, 0x15, 0x06, 0x08,\n  0x77, 0xe6, 0xdc, 0xe5, 0x8f, 0x03, 0x68, 0x15, 0x8a, 0x0b, 0xe1, 0x02,\n  0x5a, 0x08, 0x11, 0xfb, 0xd8, 0xe5, 0xfe, 0xed, 0x9a, 0x04, 0x3a, 0x13,\n  0x2a, 0x0b, 0xfa, 0xfe, 0x5f, 0x02, 0xca, 0x00, 0x43, 0xf1, 0x2b, 0xf7,\n  0x1c, 0x07, 0xa5, 0x0b, 0x8b, 0x07, 0x94, 0xfa, 0x7e, 0xef, 0x23, 0xff,\n  0xfe, 0x06, 0x55, 0x18, 0xd3, 0x18, 0xd3, 0xd9, 0xe1, 0xce, 0x42, 0xfe,\n  0xfa, 0x22, 0x5b, 0x17, 0x97, 0x0a, 0xbf, 0xfc, 0xfb, 0xde, 0x1b, 0xea,\n  0x6f, 0x0f, 0x0a, 0x27, 0xf7, 0x08, 0x02, 0xdd, 0x58, 0xe4, 0x01, 0x0c,\n  0x1a, 0x18, 0x75, 0x08, 0x35, 0xfd, 0x75, 0xfc, 0x49, 0xf9, 0x42, 0xfb,\n  0x16, 0x00, 0xdf, 0x0d, 0x17, 0x0f, 0xd1, 0xec, 0xd6, 0xe4, 0xc6, 0xf8,\n  0x35, 0x11, 0xed, 0x11, 0x27, 0x02, 0x2a, 0xfe, 0x59, 0x03, 0x52, 0xf7,\n  0x26, 0xf4, 0xa5, 0x02, 0x4f, 0x09, 0x9b, 0x06, 0xe4, 0x05, 0xe8, 0xfb,\n  0x0a, 0xef, 0x1d, 0xf8, 0xb9, 0x08, 0xcd, 0x0d, 0xae, 0x0b, 0x65, 0x00,\n  0x18, 0xee, 0x84, 0xec, 0xd9, 0xfa, 0x34, 0x0a, 0x49, 0x0f, 0x14, 0x1b,\n  0x9b, 0xfd, 0x96, 0xdb, 0x1f, 0xe8, 0xcc, 0x09, 0x3f, 0x1a, 0x18, 0x08,\n  0x0f, 0x0f, 0x59, 0x00, 0x52, 0xd9, 0xf1, 0xe8, 0x68, 0x10, 0x2b, 0x19,\n  0x4e, 0x05, 0xbe, 0xf9, 0x43, 0xfd, 0xdd, 0xfd, 0x5f, 0xfc, 0x73, 0x00,\n  0x21, 0x03, 0xf4, 0x01, 0x80, 0x00, 0x22, 0x09, 0xa2, 0x08, 0x6d, 0xee,\n  0x9b, 0xf0, 0xf0, 0x0d, 0xe9, 0x03, 0x3c, 0xf2, 0x98, 0xf4, 0x5b, 0x03,\n  0x3f, 0x0e, 0xe8, 0x07, 0xd6, 0xfe, 0xaa, 0xff, 0xa8, 0x0b, 0x6c, 0x05,\n  0x0e, 0xea, 0x21, 0xe9, 0x84, 0x04, 0x8a, 0x18, 0x06, 0x10, 0x9e, 0xf3,\n  0xc5, 0xec, 0x52, 0xfa, 0x9f, 0x03, 0x02, 0x07, 0x4a, 0x08, 0x5b, 0x06,\n  0x46, 0xfa, 0x8a, 0xf7, 0x70, 0x01, 0x7f, 0x0b, 0x04, 0x13, 0x14, 0xf3,\n  0x8c, 0xe1, 0x9b, 0xf6, 0x3f, 0x0b, 0x1a, 0x0e, 0x57, 0x08, 0x37, 0x06,\n  0xac, 0xf8, 0xae, 0xf2, 0x60, 0xfb, 0x86, 0x04, 0x89, 0x08, 0xbf, 0x04,\n  0x77, 0xfc, 0x3d, 0xfa, 0x4b, 0xfe, 0x45, 0x02, 0xe7, 0x01, 0xa1, 0xfd,\n  0xb1, 0xf8, 0xe2, 0x01, 0xe7, 0x06, 0x85, 0x12, 0x25, 0x0b, 0x12, 0xe6,\n  0x8e, 0xe2, 0xc6, 0xfe, 0x49, 0x17, 0xa3, 0x10, 0x7f, 0x00, 0x3c, 0xf4,\n  0x25, 0xf8, 0x9a, 0x00, 0x5e, 0x17, 0xd8, 0x0b, 0xb8, 0xe2, 0x54, 0xe2,\n  0x4d, 0x00, 0x56, 0x18, 0xc0, 0x0e, 0x09, 0xff, 0xc3, 0x01, 0xe4, 0xff,\n  0xe8, 0xf4, 0x16, 0xf7, 0x2f, 0xff, 0x78, 0x05, 0xbe, 0x04, 0xd3, 0x01,\n  0xa4, 0xff, 0x82, 0x05, 0x71, 0x0b, 0x17, 0xf7, 0xc7, 0xea, 0x43, 0xfc,\n  0x12, 0x14, 0xab, 0x12, 0x4b, 0xf1, 0x2e, 0xe8, 0x5a, 0xfb, 0x11, 0x0c,\n  0x3e, 0x0d, 0x77, 0x03, 0x75, 0xfa, 0x9e, 0xf9, 0x66, 0xfe, 0x6f, 0x02,\n  0xa1, 0x03, 0xc7, 0x01, 0x01, 0xfe, 0xe1, 0xf8, 0xbc, 0xfa, 0x35, 0x09,\n  0x7a, 0x15, 0x91, 0xfe, 0xa3, 0xea, 0x0c, 0xf2, 0xeb, 0xfd, 0xb7, 0x0c,\n  0x98, 0x09, 0x47, 0x0f, 0x31, 0x0c, 0x50, 0xe2, 0xda, 0xdf, 0xb3, 0x05,\n  0x4c, 0x1a, 0x9c, 0x0b, 0x4a, 0x10, 0xad, 0xfc, 0xe1, 0xd5, 0xc3, 0xeb,\n  0x35, 0x14, 0xa0, 0x18, 0xd3, 0x03, 0x9e, 0xf8, 0x64, 0x01, 0xbb, 0x04,\n  0xb8, 0xf7, 0xcf, 0xf0, 0xc7, 0x00, 0xef, 0x09, 0x3d, 0x14, 0xa1, 0x15,\n  0xfa, 0xe3, 0xe8, 0xd0, 0xdd, 0xfb, 0x56, 0x1e, 0x08, 0x1c, 0xbe, 0x10,\n  0x21, 0xec, 0x58, 0xdc, 0xe2, 0xf4, 0xe2, 0x10, 0x5d, 0x1a, 0x93, 0x14,\n  0xa2, 0xef, 0xe5, 0xdc, 0x82, 0xf4, 0x00, 0x13, 0x24, 0x13, 0xdd, 0x03,\n  0xae, 0x0f, 0x85, 0xfa, 0x2f, 0xd7, 0x74, 0xef, 0x9e, 0x13, 0x92, 0x1e,\n  0x25, 0x16, 0xe2, 0xea, 0x7e, 0xd8, 0xbb, 0xf6, 0x4a, 0x18, 0xea, 0x11,\n  0x80, 0x12, 0x27, 0x02, 0xcd, 0xdb, 0xb3, 0xe3, 0xbf, 0x09, 0x11, 0x1b,\n  0xc7, 0x09, 0x65, 0xfa, 0x9d, 0xfd, 0x75, 0xfd, 0xf8, 0xf9, 0xf2, 0xff,\n  0x1b, 0x05, 0xd5, 0x02, 0x7b, 0x02, 0x4a, 0xff, 0x3e, 0xf9, 0x09, 0xfb,\n  0xdf, 0x04, 0xea, 0x01, 0x09, 0x18, 0x41, 0x18, 0x2c, 0xcf, 0x5d, 0xce,\n  0xa5, 0x08, 0x0b, 0x27, 0xc4, 0x10, 0xd6, 0xfe, 0xae, 0x0e, 0x67, 0xf2,\n  0x3c, 0xda, 0x69, 0xf5, 0xbc, 0x16, 0x46, 0x15, 0x45, 0x01, 0x03, 0x02,\n  0x89, 0xfc, 0x02, 0xed, 0xab, 0xf7, 0xc0, 0x0b, 0xa6, 0x0b, 0xf2, 0x09,\n  0x05, 0xfc, 0x8e, 0xeb, 0xa4, 0xf6, 0x95, 0x18, 0xde, 0x21, 0x74, 0xe7,\n  0xb5, 0xd1, 0x4e, 0xf6, 0xc8, 0x1c, 0xf4, 0x16, 0x99, 0x08, 0xbc, 0x05,\n  0x73, 0xed, 0xab, 0xe0, 0x59, 0xfa, 0xcd, 0x14, 0x58, 0x14, 0xa2, 0x14,\n  0x53, 0xf5, 0xd8, 0xda, 0x34, 0xee, 0xe8, 0x0f, 0x9c, 0x17, 0xd3, 0x04,\n  0xc8, 0x00, 0x76, 0x01, 0xe7, 0xef, 0x4e, 0xf0, 0x87, 0x08, 0x1a, 0x0c,\n  0x5e, 0x14, 0x93, 0x10, 0xbd, 0xda, 0x03, 0xd6, 0xc7, 0x06, 0x7e, 0x20,\n  0x08, 0x10, 0x29, 0xfa, 0x86, 0xf7, 0xcd, 0x02, 0xe2, 0x07, 0x9c, 0xff,\n  0xd0, 0xf5, 0x6c, 0xf8, 0xac, 0xfe, 0x17, 0xff, 0xfa, 0xfe, 0xbe, 0x08,\n  0x09, 0x12, 0x0d, 0xfd, 0x03, 0xef, 0xef, 0xf6, 0xe4, 0xff, 0xc7, 0x02,\n  0xa3, 0x07, 0x73, 0x04, 0x10, 0x0a, 0x41, 0x12, 0x13, 0xe5, 0x13, 0xdc,\n  0x3b, 0x07, 0x3f, 0x1a, 0x22, 0x0c, 0x3f, 0x05, 0x99, 0xfc, 0x8f, 0xeb,\n  0xba, 0xf5, 0x6f, 0x05, 0x30, 0x08, 0xf7, 0x02, 0x0d, 0x01, 0xa5, 0x03,\n  0xf1, 0x03, 0x91, 0xfd, 0xa9, 0xf7, 0x29, 0xfa, 0xa0, 0xfe, 0x73, 0x03,\n  0xd8, 0x01, 0xa7, 0xfc, 0x25, 0x00, 0xd2, 0x10, 0x91, 0x09, 0x45, 0xec,\n  0x31, 0xeb, 0xd9, 0x03, 0xb6, 0x1a, 0x2f, 0x0b, 0xcc, 0xef, 0x2e, 0xee,\n  0x12, 0xf8, 0x68, 0x09, 0xd2, 0x0b, 0x65, 0x0a, 0x0d, 0x13, 0x8e, 0xf1,\n  0x9c, 0xe1, 0xf8, 0xf3, 0xa8, 0x08, 0x3b, 0x10, 0xc4, 0x07, 0xec, 0xff,\n  0x92, 0x04, 0x02, 0x00, 0xd2, 0xf1, 0x0e, 0xf4, 0x47, 0x0f, 0x3a, 0x1a,\n  0x32, 0xf3, 0x96, 0xe0, 0x5a, 0xf4, 0x9c, 0x11, 0x90, 0x13, 0x5b, 0x14,\n  0x25, 0xfb, 0xa5, 0xe0, 0x6e, 0xea, 0x58, 0x09, 0xac, 0x14, 0x06, 0x11,\n  0xe7, 0x0e, 0xf2, 0xea, 0x36, 0xdd, 0x40, 0xf8, 0x1f, 0x16, 0x61, 0x12,\n  0xce, 0xff, 0x65, 0xfd, 0xcc, 0xff, 0xb0, 0xf6, 0x72, 0xfa, 0x9e, 0x04,\n  0xd3, 0x06, 0xf1, 0x00, 0x1e, 0x06, 0x5c, 0x10, 0xb1, 0xef, 0x7c, 0xda,\n  0xa1, 0xff, 0xee, 0x16, 0xa8, 0x20, 0x5f, 0x0c, 0x35, 0xd8, 0xe4, 0xd9,\n  0x4c, 0x04, 0xfb, 0x1f, 0xdf, 0x0d, 0xb0, 0x0b, 0x99, 0x03, 0x1b, 0xdd,\n  0x57, 0xe5, 0xad, 0x0c, 0x8b, 0x19, 0x9e, 0x07, 0x86, 0xf9, 0xae, 0xfe,\n  0x62, 0x06, 0x93, 0xfc, 0xc8, 0x00, 0x4a, 0xff, 0x3d, 0xef, 0xa0, 0xf4,\n  0xc8, 0x06, 0x4a, 0x10, 0x3a, 0x0f, 0xed, 0xff, 0xb1, 0xed, 0x80, 0xf3,\n  0x27, 0x02, 0xe2, 0x0a, 0x1c, 0x08, 0x96, 0xfe, 0x95, 0xf9, 0xc4, 0xfb,\n  0x58, 0xfe, 0xb0, 0x06, 0xc7, 0x05, 0xd1, 0xfc, 0xd2, 0xf7, 0x8e, 0xf9,\n  0x8f, 0x03, 0x80, 0x09, 0xe1, 0x01, 0xd5, 0xfd, 0xc5, 0xfd, 0x1f, 0x16,\n  0x67, 0x0d, 0x81, 0xdc, 0x85, 0xde, 0xe1, 0x02, 0xb9, 0x1c, 0x9f, 0x1d,\n  0x5b, 0xfe, 0x88, 0xe1, 0x1d, 0xea, 0x8e, 0x07, 0xb4, 0x14, 0x38, 0x08,\n  0xfc, 0xfb, 0x7d, 0xfd, 0xaa, 0x06, 0xdf, 0x01, 0x0e, 0xf4, 0xea, 0xf4,\n  0x0b, 0x04, 0xf9, 0x0d, 0x01, 0x0c, 0xe9, 0xf6, 0x9d, 0xeb, 0x34, 0xfa,\n  0xc4, 0x08, 0x3c, 0x08, 0xd8, 0xfb, 0xff, 0xfd, 0x87, 0x05, 0x2b, 0x14,\n  0x2f, 0x06, 0x96, 0xe5, 0x2c, 0xe8, 0x6d, 0x02, 0x66, 0x13, 0xf9, 0x12,\n  0x94, 0x04, 0x91, 0xe8, 0x61, 0xeb, 0x51, 0x0e, 0x0d, 0x1d, 0xed, 0xfc,\n  0x56, 0xe9, 0xba, 0xed, 0xfb, 0x06, 0xad, 0x10, 0xda, 0x12, 0x28, 0x0a,\n  0x83, 0xde, 0x66, 0xe5, 0x75, 0x0e, 0xc3, 0x16, 0x99, 0x17, 0xd6, 0x00,\n  0x4d, 0xda, 0x9d, 0xe9, 0xc1, 0x0d, 0x6f, 0x14, 0x51, 0x02, 0x62, 0xf8,\n  0x9b, 0xfd, 0x54, 0x07, 0xc7, 0x04, 0xb1, 0xf9, 0x9c, 0xf4, 0xc9, 0xf9,\n  0xe3, 0x04, 0xff, 0x14, 0xd0, 0x0d, 0xa5, 0xee, 0x81, 0xe9, 0xac, 0xf6,\n  0x5a, 0x0d, 0x20, 0x0e, 0x8e, 0x08, 0x5d, 0x12, 0x00, 0xf2, 0x5e, 0xd9,\n  0xa3, 0xf4, 0x91, 0x16, 0xbe, 0x14, 0xe1, 0xff, 0xa6, 0xfa, 0xa2, 0xfe,\n  0x09, 0xfb, 0x2b, 0xfd, 0x37, 0x03, 0xc1, 0x03, 0x97, 0x00, 0x08, 0xff,\n  0xcd, 0x01, 0xcc, 0xff, 0xc4, 0xfa, 0x67, 0xfd, 0xa4, 0x06, 0x4c, 0x11,\n  0xaf, 0xfd, 0x0f, 0xe1, 0xf9, 0xf2, 0xda, 0x0e, 0x66, 0x11, 0xf3, 0x02,\n  0xa6, 0x0b, 0x77, 0x0c, 0x9b, 0xd9, 0xd3, 0xda, 0x45, 0x10, 0xc8, 0x1e,\n  0x69, 0x14, 0x66, 0x08, 0xc3, 0xe5, 0xef, 0xe2, 0xdc, 0xfb, 0xa7, 0x0f,\n  0x17, 0x0f, 0x0f, 0x02, 0xad, 0xfc, 0xde, 0x09, 0x4a, 0x06, 0xee, 0xe8,\n  0x5b, 0xef, 0xff, 0x10, 0xc4, 0x10, 0xb1, 0xf9, 0x08, 0xf4, 0x9d, 0xf9,\n  0xd3, 0x03, 0x90, 0x0e, 0x7a, 0x04, 0x74, 0xf6, 0x1c, 0xf3, 0x19, 0xfc,\n  0xe6, 0x09, 0x7f, 0x0a, 0x1c, 0x0a, 0xcd, 0x08, 0x08, 0xf1, 0x56, 0xe7,\n  0x91, 0xf7, 0xe7, 0x08, 0xd1, 0x0e, 0x37, 0x07, 0x07, 0x06, 0xa7, 0x06,\n  0xaf, 0xf5, 0x3d, 0xeb, 0xcd, 0xf9, 0x36, 0x09, 0xc9, 0x0b, 0x47, 0xff,\n  0x21, 0xf5, 0x9d, 0xfd, 0xf4, 0x08, 0x93, 0x05, 0x02, 0x09, 0xf1, 0x12,\n  0xf4, 0xe7, 0x68, 0xd7, 0x1d, 0x02, 0x1d, 0x1c, 0xdc, 0x11, 0x4f, 0x0a,\n  0x9d, 0xfb, 0xb3, 0xdf, 0x7a, 0xeb, 0x17, 0x0d, 0xce, 0x19, 0xce, 0x12,\n  0x91, 0xf7, 0xe8, 0xe5, 0x49, 0xf4, 0x48, 0x05, 0x7d, 0x0a, 0x2b, 0x05,\n  0xff, 0x0b, 0xdf, 0x0a, 0x0a, 0xec, 0x7e, 0xe4, 0x63, 0xfe, 0x58, 0x17,\n  0x1c, 0x1f, 0x57, 0xfc, 0xa9, 0xde, 0xd8, 0xe9, 0x0a, 0x09, 0x8c, 0x16,\n  0x1f, 0x08, 0x7f, 0x03, 0xef, 0x06, 0xc8, 0xed, 0x36, 0xe6, 0xa9, 0x03,\n  0xf1, 0x13, 0x1c, 0x10, 0x99, 0x0a, 0x11, 0xf5, 0x81, 0xe0, 0xc7, 0xf2,\n  0x3f, 0x10, 0xd3, 0x19, 0x23, 0x06, 0x53, 0xf0, 0xae, 0xf0, 0x6c, 0xf9,\n  0xde, 0x06, 0x4a, 0x0c, 0x37, 0x07, 0x56, 0x12, 0x72, 0xfa, 0x67, 0xdb,\n  0xaa, 0xee, 0x18, 0x12, 0x8a, 0x15, 0x18, 0x0d, 0xfc, 0x08, 0x6f, 0xea,\n  0x5c, 0xe2, 0xd5, 0xf8, 0x4e, 0x12, 0xbf, 0x11, 0xfb, 0x03, 0x57, 0x04,\n  0xac, 0x00, 0x55, 0xea, 0x89, 0xf0, 0x83, 0x06, 0x9f, 0x17, 0xc6, 0x19,\n  0x20, 0xee, 0x16, 0xda, 0x68, 0xf3, 0x14, 0x15, 0x31, 0x15, 0x41, 0x03,\n  0xc0, 0xf9, 0xf2, 0xf8, 0x23, 0xfd, 0x55, 0x02, 0xe9, 0x03, 0x99, 0x03,\n  0x07, 0x03, 0xc5, 0xfd, 0x3a, 0xf4, 0xc5, 0xf9, 0x27, 0x06, 0x17, 0x0f,\n  0xd8, 0x12, 0xd3, 0xee, 0x2c, 0xde, 0x8e, 0xfe, 0x12, 0x21, 0x8c, 0x10,\n  0x2e, 0xeb, 0x37, 0xeb, 0x79, 0xfe, 0x3d, 0x0b, 0xcd, 0x08, 0x48, 0x07,\n  0x34, 0x01, 0xc7, 0xf5, 0x1d, 0xf8, 0x8a, 0xfe, 0x5f, 0x00, 0xab, 0x02,\n  0xe8, 0x0a, 0x45, 0x13, 0x1c, 0xf7, 0xeb, 0xe6, 0x6f, 0xf0, 0x29, 0x08,\n  0x9b, 0x10, 0x43, 0x10, 0xee, 0x0d, 0x6e, 0xeb, 0xd1, 0xe1, 0x56, 0xf8,\n  0x0a, 0x13, 0x0d, 0x11, 0xa0, 0x07, 0xe8, 0xf8, 0x97, 0xf1, 0xae, 0xfa,\n  0x20, 0x18, 0x63, 0x13, 0xe2, 0xe5, 0x14, 0xe3, 0xa4, 0xf9, 0x4f, 0x11,\n  0x06, 0x11, 0xa9, 0x02, 0x76, 0xfe, 0x97, 0x04, 0xfe, 0xf8, 0x6c, 0xf1,\n  0xce, 0xff, 0x5c, 0x0a, 0xd1, 0x09, 0x07, 0x08, 0x47, 0xfc, 0x2d, 0xec,\n  0x4e, 0xf3, 0xac, 0x08, 0x5c, 0x12, 0x1f, 0x0f, 0x98, 0xf6, 0xcf, 0xe7,\n  0x12, 0xf5, 0xf7, 0x04, 0x8e, 0x0b, 0x62, 0x12, 0x1a, 0x09, 0x61, 0xef,\n  0x07, 0xeb, 0xd1, 0xf8, 0xe0, 0x0c, 0xa6, 0x0d, 0xbf, 0x02, 0xd1, 0xfd,\n  0xf9, 0x0a, 0x8f, 0x04, 0xb0, 0xe4, 0x9f, 0xea, 0xa5, 0x0b, 0x63, 0x16,\n  0x63, 0x11, 0x85, 0x02, 0xbd, 0xe6, 0x36, 0xe8, 0x4b, 0x02, 0x36, 0x14,\n  0xc2, 0x0f, 0x81, 0xfb, 0x4b, 0xf1, 0x41, 0xf3, 0x17, 0x0a, 0x2e, 0x17,\n  0xbd, 0xfe, 0xc8, 0xed, 0x73, 0xf0, 0x6d, 0x03, 0x87, 0x0e, 0x6a, 0x07,\n  0x5b, 0xfe, 0x34, 0x01, 0x17, 0x0c, 0xdc, 0x00, 0x3e, 0xe8, 0xc5, 0xec,\n  0x9c, 0x08, 0xc3, 0x13, 0xea, 0x05, 0x14, 0xf9, 0xa9, 0xf7, 0xd5, 0xfe,\n  0xfa, 0x04, 0xe3, 0x03, 0x7e, 0xfe, 0xad, 0xf9, 0x01, 0xf9, 0xee, 0x05,\n  0x1e, 0x06, 0x70, 0x0f, 0x80, 0x11, 0x3a, 0xe6, 0x96, 0xdb, 0xb5, 0xfd,\n  0x45, 0x1a, 0x30, 0x10, 0xa1, 0xfd, 0x73, 0xfc, 0x80, 0xfa, 0x65, 0xfa,\n  0x2d, 0x02, 0xda, 0x04, 0x5e, 0x04, 0xff, 0x0a, 0xee, 0xf9, 0x77, 0xe7,\n  0x15, 0xfb, 0x27, 0x0e, 0x0f, 0x0c, 0x2c, 0x09, 0x4b, 0x01, 0xde, 0xec,\n  0x5a, 0xf5, 0xa8, 0x0e, 0x64, 0xfe, 0xa4, 0xed, 0x80, 0xff, 0x73, 0x13,\n  0x3c, 0x1b, 0x86, 0xf8, 0xfa, 0xe0, 0xb8, 0xee, 0xb7, 0x08, 0x0b, 0x13,\n  0x48, 0x0e, 0x1a, 0x08, 0xfa, 0xf0, 0x47, 0xea, 0x95, 0xfa, 0xd4, 0x0a,\n  0x31, 0x10, 0x53, 0x06, 0xf1, 0xf5, 0xd1, 0xf4, 0xbb, 0xfd, 0x17, 0x06,\n  0x5b, 0x07, 0x0d, 0x00, 0xa3, 0xf7, 0x66, 0xf6, 0x6f, 0x05, 0x9c, 0x09,\n  0x6f, 0x14, 0x1b, 0x06, 0x01, 0xe3, 0x0e, 0xe5, 0xe1, 0x01, 0x90, 0x16,\n  0x91, 0x0c, 0xd1, 0xfc, 0x95, 0xfc, 0xbf, 0x09, 0xdf, 0x0a, 0x51, 0xf1,\n  0xbe, 0xe0, 0xe6, 0xf8, 0xfb, 0x13, 0xfc, 0x12, 0x5f, 0x09, 0x8d, 0x02,\n  0x87, 0xee, 0x38, 0xea, 0x91, 0xfe, 0xf4, 0x10, 0x15, 0x10, 0x4f, 0xfd,\n  0xd7, 0xf3, 0x45, 0xf8, 0x4b, 0xfc, 0x29, 0x03, 0x11, 0x09, 0x9c, 0x04,\n  0xdf, 0x03, 0xfc, 0x0c, 0x23, 0xf3, 0x3c, 0xe3, 0x08, 0x00, 0x91, 0x12,\n  0x85, 0x0a, 0x79, 0xfd, 0xfd, 0xfd, 0x03, 0x05, 0x85, 0xfd, 0x1b, 0xf4,\n  0x96, 0xf8, 0x3b, 0x05, 0xf7, 0x07, 0x24, 0x10, 0xe1, 0x13, 0x5b, 0xe3,\n  0xb0, 0xd4, 0x8a, 0xfe, 0xbe, 0x25, 0xb4, 0x1d, 0xc4, 0xf3, 0x57, 0xe3,\n  0x5f, 0xf3, 0xd1, 0x11, 0x90, 0x11, 0xb5, 0xfc, 0x8f, 0xf1, 0x93, 0xf7,\n  0x24, 0x07, 0x69, 0x0d, 0x66, 0x0c, 0x46, 0xfa, 0x61, 0xec, 0xcb, 0xf6,\n  0x42, 0x06, 0x96, 0x0b, 0x97, 0x04, 0x8d, 0xfc, 0x7e, 0xfa, 0x03, 0xfe,\n  0x54, 0x01, 0x53, 0x03, 0xf4, 0x01, 0x3c, 0xff, 0x7d, 0xfd, 0xb4, 0xfe,\n  0x79, 0xfc, 0x5d, 0xfb, 0x9b, 0x03, 0x57, 0x0a, 0xc3, 0x16, 0xbd, 0xf8,\n  0xd7, 0xd8, 0x70, 0xf5, 0xb6, 0x15, 0x16, 0x15, 0x11, 0x14, 0x33, 0xf5,\n  0x4d, 0xd8, 0x90, 0xef, 0xdf, 0x12, 0xaa, 0x16, 0x90, 0x0b, 0xda, 0x06,\n  0x04, 0xee, 0xb1, 0xe3, 0xbd, 0xfb, 0x2f, 0x11, 0x37, 0x0e, 0x81, 0xff,\n  0x0f, 0x06, 0xec, 0x09, 0x21, 0xee, 0xcf, 0xea, 0x79, 0xfc, 0x65, 0x0d,\n  0xf2, 0x12, 0x0f, 0x02, 0xcc, 0xf2, 0x02, 0xf2, 0x3b, 0xfd, 0x9f, 0x0b,\n  0x85, 0x08, 0xfe, 0x07, 0x9f, 0x11, 0x5d, 0xef, 0x1a, 0xdb, 0x25, 0xf8,\n  0xb8, 0x16, 0x7a, 0x13, 0x47, 0x0a, 0xbf, 0x03, 0x9a, 0xe8, 0x38, 0xe6,\n  0xf8, 0x00, 0xce, 0x13, 0xc4, 0x1b, 0x01, 0x00, 0x41, 0xe4, 0xca, 0xe9,\n  0xec, 0x05, 0xef, 0x13, 0x40, 0x09, 0x6d, 0xfd, 0x77, 0x0f, 0xe6, 0xff,\n  0xed, 0xd7, 0xa1, 0xf0, 0xa1, 0x15, 0xa8, 0x15, 0xc5, 0x09, 0x0f, 0x05,\n  0xa1, 0xeb, 0x9e, 0xe2, 0xef, 0x00, 0xc2, 0x15, 0x89, 0x15, 0xac, 0x08,\n  0xa1, 0xeb, 0xbf, 0xe7, 0xe8, 0xfb, 0x3e, 0x09, 0x37, 0x0a, 0x0c, 0x05,\n  0x79, 0x03, 0x3f, 0x08, 0x1e, 0xff, 0xfe, 0xed, 0x40, 0xf1, 0xbe, 0x0a,\n  0x84, 0x11, 0x07, 0xfe, 0xc8, 0xef, 0x44, 0xf6, 0xc0, 0x0a, 0x98, 0x0c,\n  0x20, 0x14, 0x52, 0x00, 0x4a, 0xde, 0x94, 0xe8, 0xcf, 0x0a, 0x63, 0x17,\n  0x55, 0x0e, 0x7a, 0x09, 0xd5, 0xef, 0x31, 0xe6, 0xf6, 0xf5, 0x99, 0x0a,\n  0x2c, 0x12, 0x0d, 0x0d, 0xfe, 0xf8, 0x96, 0xeb, 0x7b, 0xfd, 0x29, 0x0c,\n  0x9f, 0x0b, 0x38, 0x00, 0xdc, 0xf7, 0x6f, 0xfc, 0x20, 0x06, 0x99, 0x08,\n  0x91, 0xf7, 0x40, 0xee, 0xf6, 0xfb, 0x3a, 0x09, 0x6e, 0x0a, 0xd3, 0x02,\n  0xad, 0xfc, 0x99, 0xfb, 0xf0, 0xfe, 0x3f, 0x01, 0x69, 0x02, 0x69, 0xfd,\n  0x39, 0xfa, 0xe3, 0x00, 0x2c, 0x13, 0xe4, 0x07, 0xd1, 0xee, 0xfa, 0xec,\n  0x1e, 0xfb, 0xa7, 0x0b, 0x79, 0x0d, 0xb9, 0x00, 0x10, 0x06, 0x82, 0x12,\n  0xfd, 0xeb, 0x6b, 0xda, 0xb1, 0xfb, 0xa3, 0x19, 0x7f, 0x12, 0x36, 0x13,\n  0x06, 0xf6, 0x16, 0xd6, 0x92, 0xf2, 0x21, 0x16, 0x80, 0x15, 0x94, 0x00,\n  0x1c, 0xfe, 0x01, 0xfd, 0x1c, 0xf4, 0x95, 0xfc, 0x6b, 0x07, 0x0a, 0x09,\n  0x59, 0x02, 0xc1, 0xf7, 0x55, 0xf8, 0xbd, 0x01, 0x3e, 0x06, 0x3c, 0x04,\n  0x79, 0xfd, 0xde, 0xfa, 0xc8, 0xff, 0xe7, 0x02, 0xff, 0x01, 0xaf, 0x04,\n  0x8c, 0x0d, 0x18, 0x05, 0x57, 0xe5, 0x87, 0xe3, 0x9b, 0x02, 0xc9, 0x14,\n  0x44, 0x0d, 0xa9, 0xfa, 0x88, 0xfb, 0x50, 0x06, 0x64, 0x04, 0x51, 0xff,\n  0x10, 0xf8, 0xe9, 0xf8, 0xd4, 0x00, 0x76, 0x04, 0x09, 0x02, 0x26, 0x00,\n  0xe6, 0x04, 0xb2, 0x01, 0xee, 0xf9, 0x09, 0xfb, 0xff, 0xff, 0x11, 0x03,\n  0x3f, 0xfe, 0xb8, 0xfb, 0xeb, 0x01, 0xb0, 0x06, 0x93, 0x05, 0xfa, 0x05,\n  0x0d, 0xfd, 0xd8, 0xf2, 0xda, 0xf5, 0xca, 0x0c, 0x38, 0x16, 0x6b, 0xf5,\n  0x25, 0xe7, 0x62, 0xf8, 0x00, 0x0e, 0x17, 0x0f, 0x57, 0x07, 0x09, 0xf8,\n  0x04, 0xf1, 0x04, 0xf8, 0x40, 0x07, 0x83, 0x15, 0x1a, 0x06, 0x15, 0xe9,\n  0xdd, 0xed, 0x5f, 0x09, 0xd8, 0x12, 0x75, 0x17, 0x20, 0xfa, 0xad, 0xdd,\n  0x56, 0xec, 0x06, 0x0b, 0x12, 0x16, 0x56, 0x0d, 0xc9, 0x08, 0xd1, 0xf0,\n  0xcf, 0xe6, 0xd0, 0xf5, 0x78, 0x0d, 0xaf, 0x0e, 0x89, 0x0c, 0x7e, 0x0e,\n  0xc0, 0xec, 0x58, 0xe1, 0x52, 0xf7, 0x9d, 0x11, 0x10, 0x12, 0x4e, 0x05,\n  0x1f, 0x09, 0x7c, 0xfb, 0xb4, 0xe2, 0x7a, 0xf0, 0x55, 0x0e, 0x2c, 0x12,\n  0xe8, 0x09, 0x24, 0x0e, 0x89, 0xf1, 0x11, 0xe1, 0x52, 0xf4, 0x46, 0x0e,\n  0x4f, 0x13, 0x95, 0x0d, 0x77, 0x03, 0xf3, 0xeb, 0xf1, 0xee, 0xd9, 0x01,\n  0x4f, 0x0b, 0x34, 0x06, 0xb5, 0xfa, 0x8b, 0xf7, 0x13, 0x03, 0x9b, 0x07,\n  0xd6, 0x13, 0x9e, 0x07, 0x3a, 0xe2, 0xa3, 0xe5, 0x53, 0x02, 0x1d, 0x16,\n  0x17, 0x0b, 0xe4, 0x04, 0x3e, 0x0d, 0x31, 0xf1, 0xfe, 0xe1, 0x22, 0xf6,\n  0xda, 0x10, 0xaa, 0x12, 0xcc, 0x0e, 0x80, 0x00, 0xb1, 0xe7, 0xca, 0xe9,\n  0xbd, 0x01, 0xc3, 0x13, 0xaa, 0x0e, 0x37, 0x0a, 0xc1, 0xfa, 0xe5, 0xeb,\n  0x81, 0xf2, 0xd9, 0x01, 0x75, 0x08, 0xc2, 0x06, 0x77, 0x04, 0x0a, 0x07,\n  0x11, 0x02, 0x67, 0xf2, 0x83, 0xf3, 0x2b, 0x02, 0x70, 0x09, 0xfb, 0x04,\n  0x03, 0xfd, 0x68, 0xf6, 0x49, 0xfd, 0xb4, 0x07, 0x92, 0x09, 0xbf, 0x0a,\n  0x41, 0x03, 0x58, 0xeb, 0x7d, 0xed, 0x42, 0x08, 0xcc, 0x0b, 0x99, 0x02,\n  0x89, 0xf7, 0xe2, 0xf9, 0x34, 0x04, 0xe7, 0x07, 0x89, 0x03, 0x30, 0x10,\n  0x26, 0x04, 0x18, 0xe2, 0x68, 0xe7, 0xb2, 0x04, 0x4b, 0x15, 0x14, 0x0c,\n  0x81, 0xfc, 0xe7, 0x0e, 0x4f, 0x04, 0xcf, 0xe0, 0x24, 0xe8, 0xf7, 0x06,\n  0xc1, 0x19, 0x4d, 0x13, 0x17, 0xfc, 0x97, 0xe1, 0x27, 0xf6, 0x54, 0x0e,\n  0xa2, 0x19, 0xbb, 0x10, 0x9f, 0xe6, 0xbd, 0xde, 0x80, 0xfa, 0x35, 0x15,\n  0x5f, 0x12, 0x77, 0x0c, 0x4f, 0xfd, 0x48, 0xe8, 0x9c, 0xef, 0x18, 0x04,\n  0xaf, 0x10, 0x17, 0x0f, 0x2e, 0xfe, 0x0a, 0xf1, 0x56, 0xf7, 0xd0, 0x01,\n  0xca, 0x01, 0x4c, 0x00, 0x37, 0x04, 0xd7, 0x03, 0xbd, 0x02, 0x22, 0x05,\n  0x0c, 0x01, 0x12, 0xf7, 0x93, 0xf4, 0xbb, 0xfc, 0xe0, 0x08, 0x0f, 0x07,\n  0x0f, 0x14, 0x62, 0x07, 0xc8, 0xda, 0xb1, 0xe1, 0x3c, 0x0b, 0xff, 0x1e,\n  0x91, 0x0f, 0x59, 0xf6, 0xd1, 0xec, 0xe6, 0xf9, 0x13, 0x07, 0x46, 0x08,\n  0x42, 0x06, 0x45, 0x13, 0xdd, 0xf9, 0x54, 0xde, 0x9d, 0xee, 0x12, 0x0b,\n  0x16, 0x13, 0x32, 0x07, 0xdd, 0xfb, 0xcd, 0x0e, 0x16, 0x08, 0x13, 0xdf,\n  0x91, 0xe6, 0x6e, 0x0c, 0x1f, 0x19, 0x7f, 0x17, 0x71, 0xfd, 0x59, 0xdf,\n  0x92, 0xea, 0xf3, 0x06, 0x5f, 0x15, 0xb8, 0x0d, 0x01, 0x0a, 0xae, 0xf2,\n  0x54, 0xe2, 0xa9, 0xf8, 0x8a, 0x15, 0xb9, 0x1f, 0xc5, 0xfc, 0x7a, 0xe1,\n  0xf0, 0xea, 0x49, 0x09, 0x65, 0x14, 0x53, 0x07, 0xbf, 0xfc, 0x94, 0x08,\n  0xb7, 0x04, 0xde, 0xe4, 0xdb, 0xec, 0x79, 0x0c, 0x2b, 0x14, 0xdd, 0x0d,\n  0xf6, 0x05, 0x51, 0xee, 0xb2, 0xe7, 0x06, 0xfb, 0x30, 0x0b, 0x24, 0x09,\n  0x3f, 0x02, 0x58, 0x01, 0x30, 0x08, 0x85, 0xfe, 0xd1, 0xed, 0x51, 0xf9,\n  0xca, 0x10, 0xe2, 0x19, 0x27, 0xf6, 0x1a, 0xe4, 0x6f, 0xf0, 0xdf, 0x08,\n  0xa9, 0x10, 0x7d, 0x10, 0xb0, 0x0b, 0xf1, 0xec, 0xfb, 0xe4, 0x71, 0xf9,\n  0x99, 0x0e, 0x38, 0x18, 0x90, 0x0e, 0x5b, 0xec, 0x9f, 0xe3, 0xb1, 0xfa,\n  0x62, 0x12, 0xa5, 0x0e, 0x73, 0x05, 0x4f, 0x04, 0xaf, 0xec, 0x06, 0xee,\n  0xa8, 0x05, 0x98, 0x21, 0x81, 0x0e, 0x63, 0xe0, 0xb1, 0xe0, 0xa7, 0xff,\n  0x75, 0x17, 0xcd, 0x0e, 0x01, 0xfe, 0x97, 0x04, 0x7f, 0x03, 0x3a, 0xe8,\n  0xe8, 0xf2, 0x44, 0x0c, 0x92, 0x0e, 0x38, 0x05, 0x25, 0x03, 0x91, 0xf6,\n  0x4e, 0xef, 0xea, 0xfe, 0x1e, 0x0b, 0xa7, 0x0a, 0xa8, 0x08, 0x7f, 0xfe,\n  0xc7, 0xea, 0x45, 0xee, 0x57, 0x07, 0x8e, 0x11, 0x2c, 0x09, 0x06, 0x13,\n  0x41, 0xf9, 0x15, 0xdb, 0x88, 0xea, 0x2f, 0x0d, 0x56, 0x17, 0xbe, 0x14,\n  0x33, 0x06, 0x62, 0xe6, 0x05, 0xe6, 0x99, 0xfe, 0xcf, 0x13, 0x72, 0x0d,\n  0x47, 0xff, 0xca, 0x01, 0xbe, 0xfe, 0x3a, 0xf1, 0x84, 0xf9, 0x9f, 0x08,\n  0x0f, 0x08, 0xe2, 0x07, 0x08, 0x16, 0x53, 0xef, 0xd5, 0xcf, 0xb9, 0xf9,\n  0xe0, 0x1b, 0xd3, 0x1b, 0x46, 0x10, 0xf8, 0xea, 0xf5, 0xdc, 0xc6, 0xf6,\n  0x9b, 0x13, 0xe0, 0x12, 0xb7, 0x01, 0x9d, 0xfd, 0x55, 0x01, 0xb4, 0xf8,\n  0x62, 0xf5, 0x1f, 0x01, 0xb8, 0x09, 0xf7, 0x09, 0x9b, 0x04, 0x28, 0xf8,\n  0xda, 0xf0, 0xfe, 0xf9, 0x75, 0x09, 0xc2, 0x0c, 0xf5, 0xfc, 0x7f, 0xf5,\n  0xa0, 0xfb, 0x0f, 0x04, 0x6f, 0x02, 0x91, 0xfd, 0x58, 0x01, 0x80, 0x0f,\n  0x0f, 0x08, 0x3d, 0xee, 0xdf, 0xf1, 0x2e, 0x01, 0x6c, 0x08, 0xcf, 0x05,\n  0x87, 0xff, 0xd9, 0xfb, 0x07, 0xfd, 0x75, 0x03, 0x8b, 0x05, 0x91, 0xfe,\n  0x48, 0xfb, 0x25, 0xfc, 0x59, 0xfc, 0xf3, 0xff, 0x02, 0x07, 0xe4, 0x05,\n  0x54, 0x09, 0xcf, 0x02, 0x7a, 0xea, 0x77, 0xef, 0x7f, 0x10, 0xc8, 0x21,\n  0x9e, 0xf8, 0xa7, 0xe0, 0xca, 0xf0, 0xeb, 0x07, 0xa6, 0x13, 0xc8, 0x0e,\n  0x0d, 0xfb, 0x8f, 0xeb, 0x3e, 0xf7, 0x22, 0x0a, 0xac, 0x0e, 0x18, 0x0b,\n  0xa9, 0xfd, 0x24, 0xec, 0xa0, 0xf2, 0xcf, 0x04, 0xa5, 0x0c, 0x34, 0x06,\n  0x43, 0xfd, 0x5c, 0xfa, 0x0c, 0xfe, 0x7f, 0x01, 0xe1, 0x01, 0x1d, 0xfd,\n  0xd2, 0xfa, 0x76, 0x01, 0xba, 0x06, 0xf7, 0x02, 0xa1, 0xff, 0x1f, 0xfd,\n  0xa4, 0x00, 0x59, 0xff, 0xae, 0x0e, 0xbc, 0x16, 0x45, 0xe5, 0xac, 0xd6,\n  0xe0, 0xf9, 0xff, 0x17, 0x33, 0x1a, 0x7f, 0x0d, 0xd3, 0xf0, 0xf3, 0xe6,\n  0x9f, 0xf5, 0xee, 0x0a, 0x33, 0x10, 0xdb, 0x04, 0xd8, 0x04, 0xa7, 0x03,\n  0xf7, 0xed, 0xc6, 0xec, 0x77, 0x05, 0x4b, 0x11, 0xb9, 0x0f, 0xc6, 0x06,\n  0xc4, 0xed, 0xdf, 0xe8, 0xe3, 0xfc, 0x87, 0x0b, 0x77, 0x06, 0x93, 0xfe,\n  0x1e, 0x01, 0xff, 0x02, 0x2a, 0x05, 0x37, 0x06, 0x35, 0xf9, 0xc1, 0xef,\n  0x42, 0xff, 0x11, 0x09, 0x62, 0x1a, 0x08, 0x09, 0x8e, 0xd9, 0xe5, 0xdf,\n  0x40, 0x0a, 0xd0, 0x1b, 0x14, 0x0c, 0x5e, 0xfa, 0x65, 0xf8, 0x85, 0xfd,\n  0xe6, 0x11, 0xc2, 0x0b, 0x0d, 0xd8, 0xf4, 0xeb, 0x25, 0x12, 0x60, 0x25,\n  0x02, 0x0f, 0x43, 0xde, 0x4b, 0xdd, 0xcd, 0x01, 0x8d, 0x1a, 0x87, 0x0d,\n  0xf3, 0xff, 0xab, 0x04, 0x07, 0xf7, 0xa1, 0xe9, 0x0a, 0xfe, 0xf7, 0x0e,\n  0x66, 0x0c, 0x75, 0x09, 0xc1, 0xfe, 0xcd, 0xe8, 0xbf, 0xeb, 0xff, 0x08,\n  0x4a, 0x12, 0xb5, 0x18, 0x51, 0x03, 0x60, 0xde, 0x3c, 0xe6, 0xf3, 0x05,\n  0x1f, 0x1f, 0xdd, 0x0d, 0x44, 0xf2, 0x8e, 0xe9, 0x89, 0xfb, 0xb9, 0x0e,\n  0xee, 0x0a, 0x8d, 0x03, 0x1f, 0x05, 0xc2, 0xf9, 0x36, 0xf2, 0x11, 0xfc,\n  0x0c, 0xfe, 0x57, 0x04, 0x10, 0x06, 0xd0, 0x0d, 0x90, 0x10, 0xaf, 0xeb,\n  0x48, 0xdf, 0xfe, 0xf9, 0xf0, 0x13, 0x93, 0x14, 0x02, 0x0c, 0xa8, 0xf3,\n  0xbf, 0xe2, 0x77, 0xfc, 0xa7, 0x0f, 0x69, 0x18, 0xc7, 0x0c, 0xb2, 0xe7,\n  0x2d, 0xe7, 0x77, 0xfc, 0x8c, 0x0a, 0x40, 0x0a, 0x70, 0x04, 0xac, 0x00,\n  0xe7, 0x06, 0x0d, 0x02, 0x70, 0xf1, 0xc9, 0xf0, 0xc6, 0x0c, 0xb8, 0x16,\n  0xeb, 0xf7, 0xfb, 0xe8, 0x97, 0xf5, 0x47, 0x0b, 0xa1, 0x0e, 0x11, 0x03,\n  0x0f, 0x02, 0x6c, 0x0f, 0x1f, 0xf7, 0x4a, 0xe4, 0x61, 0xf6, 0x16, 0x08,\n  0xaa, 0x0f, 0x30, 0x0b, 0x37, 0xfc, 0xa2, 0xf1, 0x32, 0xf8, 0x63, 0x04,\n  0x0f, 0x0f, 0x9a, 0x0f, 0x54, 0xf4, 0x78, 0xe5, 0xd9, 0xf9, 0xd9, 0x0f,\n  0x3d, 0x13, 0xde, 0x0e, 0x28, 0xf2, 0x2f, 0xe4, 0x11, 0xf6, 0x0a, 0x0c,\n  0x6f, 0x12, 0x0a, 0x0d, 0xa1, 0xf9, 0xf0, 0xe7, 0x69, 0xf5, 0x0a, 0x0d,\n  0x3d, 0x16, 0x0f, 0x08, 0x39, 0xf3, 0xda, 0xee, 0x61, 0xfa, 0xc3, 0x06,\n  0xb0, 0x08, 0xe1, 0x02, 0x55, 0xfd, 0x69, 0xfd, 0x0d, 0x00, 0x8c, 0x00,\n  0x01, 0x00, 0xfd, 0xfd, 0x3a, 0xfa, 0x57, 0xff, 0xd2, 0x06, 0x8b, 0x07,\n  0x1f, 0x0a, 0x0d, 0x03, 0x81, 0xec, 0x06, 0xec, 0x3e, 0x04, 0x30, 0x13,\n  0xc6, 0x0f, 0x8e, 0xf9, 0x9f, 0xed, 0x42, 0xf8, 0x98, 0x05, 0xd8, 0x0a,\n  0x1a, 0x04, 0x4f, 0xfc, 0x28, 0xf8, 0x16, 0xf9, 0x43, 0x03, 0xfd, 0x08,\n  0xcc, 0x07, 0xfa, 0x09, 0xc3, 0xfe, 0x85, 0xe8, 0x81, 0xef, 0xaf, 0x08,\n  0x40, 0x16, 0xfc, 0x0c, 0xde, 0xf3, 0x7a, 0xed, 0x75, 0xfa, 0x23, 0x03,\n  0x41, 0x08, 0x1f, 0x05, 0x67, 0x08, 0x04, 0x10, 0x0f, 0xf2, 0xe6, 0xe4,\n  0x82, 0xf3, 0x69, 0x0e, 0x4f, 0x10, 0x8f, 0x10, 0x87, 0x08, 0xb5, 0xe5,\n  0xfc, 0xe3, 0xfd, 0x00, 0x60, 0x16, 0x37, 0x0c, 0xfa, 0x00, 0xb7, 0x05,\n  0x39, 0xf6, 0x7b, 0xe9, 0x0a, 0xfe, 0x4d, 0x0f, 0xb7, 0x0c, 0x31, 0x0a,\n  0xa3, 0xfd, 0x56, 0xec, 0x1b, 0xf5, 0xda, 0xff, 0x56, 0x07, 0x1c, 0x07,\n  0x9f, 0xff, 0x59, 0xf8, 0xe1, 0xfd, 0x7f, 0x06, 0x72, 0x0a, 0xcf, 0x10,\n  0x69, 0xf5, 0xdc, 0xe3, 0xf9, 0xf1, 0x21, 0x0d, 0xbe, 0x10, 0xbf, 0x0c,\n  0xcc, 0x0c, 0x60, 0xed, 0x6e, 0xe4, 0xe6, 0xf6, 0xd0, 0x0f, 0xf8, 0x10,\n  0x5f, 0x02, 0x8d, 0xfa, 0xbb, 0xfe, 0xbc, 0xff, 0x22, 0xfe, 0xa2, 0xff,\n  0xb8, 0x01, 0x06, 0x01, 0xee, 0x07, 0x96, 0x06, 0x36, 0xec, 0x91, 0xf1,\n  0xd6, 0x07, 0x19, 0x0d, 0xd1, 0x03, 0x06, 0x11, 0xc7, 0x08, 0xaf, 0xd3,\n  0xd4, 0xe0, 0x40, 0x13, 0x18, 0x1e, 0xbb, 0x07, 0xcf, 0x09, 0xe7, 0xfd,\n  0x32, 0xe0, 0xe2, 0xeb, 0x37, 0x0a, 0x4f, 0x16, 0xdf, 0x07, 0x40, 0xfa,\n  0xa5, 0xf9, 0x78, 0x01, 0x54, 0x19, 0xd0, 0x00, 0x80, 0xdc, 0x4f, 0xe9,\n  0xf9, 0x08, 0x4d, 0x18, 0x41, 0x09, 0x9c, 0x04, 0xfb, 0x06, 0x09, 0xf1,\n  0x33, 0xe8, 0x00, 0xf9, 0x01, 0x0d, 0x31, 0x0f, 0x30, 0x05, 0x76, 0x05,\n  0xf5, 0x00, 0xbd, 0xed, 0xdd, 0xee, 0x20, 0x05, 0x58, 0x13, 0xda, 0x09,\n  0xee, 0xf2, 0x11, 0xf3, 0x95, 0x03, 0x8c, 0x0a, 0x98, 0x12, 0x29, 0xff,\n  0xa5, 0xe5, 0xf0, 0xf0, 0x18, 0x04, 0x09, 0x0d, 0x31, 0x09, 0x2c, 0x05,\n  0x0f, 0x01, 0x51, 0xf6, 0x8c, 0xf5, 0x05, 0x00, 0x52, 0x04, 0x4a, 0x00,\n  0x10, 0xfe, 0xe6, 0x09, 0x62, 0x11, 0x3e, 0xf6, 0xe8, 0xe5, 0xec, 0xf6,\n  0x6f, 0x0e, 0xa0, 0x0f, 0x1e, 0x09, 0x53, 0x06, 0xbe, 0xef, 0x52, 0xea,\n  0x4f, 0x01, 0x27, 0x0b, 0xbf, 0x06, 0xa9, 0xfb, 0x71, 0xf9, 0xbd, 0x02,\n  0x1c, 0x0a, 0x19, 0x0c, 0x61, 0xfc, 0xf3, 0xec, 0xec, 0xf6, 0x07, 0x05,\n  0x31, 0x09, 0x49, 0x00, 0x69, 0xf8, 0x2e, 0x01, 0x8a, 0x06, 0x4c, 0x14,\n  0x44, 0x05, 0x0a, 0xe2, 0x01, 0xe8, 0x17, 0x06, 0x5b, 0x16, 0x8a, 0x0a,\n  0x21, 0xfc, 0xd2, 0xf4, 0x86, 0xff, 0x95, 0x02, 0x06, 0x11, 0xe5, 0x15,\n  0xdc, 0xe3, 0xb0, 0xd8, 0xc4, 0xfa, 0x45, 0x1a, 0x21, 0x13, 0x58, 0x00,\n  0x08, 0xf7, 0xfc, 0x05, 0xe8, 0x10, 0xcf, 0xef, 0x2f, 0xe4, 0x9d, 0xf8,\n  0xec, 0x10, 0x9f, 0x10, 0x7a, 0x07, 0x6f, 0x07, 0x57, 0xf5, 0x87, 0xe6,\n  0x58, 0xf8, 0xe6, 0x0d, 0x59, 0x15, 0xb7, 0x07, 0xd8, 0xf0, 0xa1, 0xee,\n  0x05, 0xf9, 0x3c, 0x08, 0xef, 0x0c, 0xf9, 0x03, 0x94, 0xfe, 0x3f, 0x02,\n  0x65, 0xfc, 0x06, 0xf6, 0x70, 0x00, 0x3f, 0x05, 0x44, 0x0d, 0x68, 0x18,\n  0x61, 0xe6, 0xe7, 0xd0, 0x3a, 0x01, 0xb9, 0x1f, 0x23, 0x15, 0x43, 0xfd,\n  0x96, 0xef, 0xa6, 0xf5, 0xb3, 0x04, 0x24, 0x0c, 0x90, 0x07, 0x35, 0xfa,\n  0x3c, 0xf5, 0x09, 0xfd, 0x15, 0x08, 0x9b, 0x07, 0x81, 0xf9, 0xe7, 0xf2,\n  0x91, 0xfa, 0xeb, 0x06, 0x1e, 0x14, 0x46, 0x0a, 0x1b, 0xef, 0x87, 0xe9,\n  0x25, 0xfe, 0xcf, 0x10, 0x25, 0x18, 0x73, 0x02, 0xa4, 0xe7, 0x52, 0xed,\n  0x58, 0x00, 0x86, 0x0d, 0x70, 0x09, 0xed, 0x02, 0x75, 0x0e, 0x07, 0xfd,\n  0xeb, 0xe5, 0x86, 0xf3, 0xd5, 0x03, 0x44, 0x0c, 0xd3, 0x07, 0xee, 0x0a,\n  0x97, 0x04, 0x9a, 0xee, 0xc1, 0xee, 0xf3, 0xfe, 0xd7, 0x0b, 0xae, 0x0e,\n  0x36, 0x05, 0x88, 0xf4, 0xf7, 0xf2, 0xf6, 0xfa, 0x64, 0x0b, 0x6c, 0x0f,\n  0x7d, 0xfd, 0x58, 0xf4, 0xa9, 0xf9, 0x95, 0x00, 0xbe, 0x00, 0x39, 0x02,\n  0x9c, 0x04, 0x01, 0x03, 0x41, 0xff, 0x57, 0xff, 0xa8, 0x05, 0xe7, 0x0a,\n  0x17, 0xfd, 0x6f, 0xe9, 0x59, 0xf2, 0x58, 0x07, 0x0d, 0x0e, 0x66, 0x06,\n  0x55, 0xfd, 0x21, 0xfa, 0xad, 0xfd, 0x4c, 0x00, 0x79, 0xfe, 0xee, 0xfe,\n  0x78, 0x0a, 0x96, 0x0f, 0xd3, 0xf6, 0x34, 0xed, 0x4a, 0xf9, 0x05, 0x03,\n  0x5f, 0x06, 0x8c, 0x05, 0x3b, 0x03, 0x4f, 0x01, 0x5b, 0xfd, 0x83, 0x00,\n  0x65, 0x0f, 0x3a, 0x00, 0xf6, 0xe3, 0xd1, 0xee, 0xa6, 0x0a, 0xcd, 0x16,\n  0xd6, 0x0d, 0x44, 0xf6, 0x37, 0xee, 0xb9, 0xfa, 0x53, 0x06, 0x8b, 0x07,\n  0x35, 0xfd, 0xea, 0xf8, 0x53, 0x03, 0xe3, 0x06, 0xa6, 0x13, 0xed, 0x02,\n  0x13, 0xdc, 0x8b, 0xec, 0x81, 0x10, 0xe8, 0x14, 0x83, 0x05, 0xca, 0xf9,\n  0xa4, 0xf6, 0x57, 0xfe, 0x82, 0x04, 0x35, 0x03, 0x07, 0x00, 0xdd, 0x02,\n  0x8e, 0x0b, 0x5f, 0x04, 0x8c, 0xeb, 0x64, 0xe8, 0x43, 0x01, 0x96, 0x10,\n  0xb1, 0x0b, 0x80, 0xff, 0x12, 0xf5, 0x70, 0xf7, 0xb4, 0x05, 0x1e, 0x09,\n  0x84, 0x07, 0x1f, 0x12, 0xef, 0xf4, 0x74, 0xdc, 0x33, 0xf4, 0xa6, 0x13,\n  0x7c, 0x13, 0xbc, 0x0a, 0x96, 0x05, 0xbd, 0xea, 0x80, 0xe4, 0x03, 0xff,\n  0xf9, 0x14, 0xf4, 0x0e, 0x27, 0x0e, 0xbd, 0xfa, 0x42, 0xe2, 0xfa, 0xee,\n  0xf7, 0x0a, 0xec, 0x13, 0xac, 0x0e, 0xfd, 0x03, 0x0f, 0xec, 0xd8, 0xec,\n  0xcc, 0xfe, 0x44, 0x0c, 0x23, 0x07, 0xaf, 0x06, 0xee, 0x0a, 0x7e, 0xf5,\n  0x68, 0xec, 0x12, 0xf7, 0x1a, 0x07, 0xdd, 0x0d, 0x28, 0x04, 0x8b, 0x04,\n  0xf6, 0x0f, 0x79, 0xf1, 0x41, 0xdf, 0x09, 0xf9, 0x69, 0x14, 0xd4, 0x11,\n  0x87, 0x0b, 0xe6, 0xff, 0x94, 0xe7, 0x14, 0xec, 0xcb, 0x04, 0x15, 0x13,\n  0x3d, 0x11, 0xf1, 0xfd, 0x9b, 0xed, 0x6e, 0xf0, 0xe4, 0x01, 0x0d, 0x0e,\n  0x38, 0x15, 0xf1, 0x03, 0x2e, 0xe9, 0x62, 0xed, 0xcb, 0xff, 0x14, 0x15,\n  0x37, 0x0d, 0x9d, 0xf8, 0x53, 0xf0, 0x94, 0xf6, 0xb3, 0x06, 0x9f, 0x0b,\n  0x76, 0x04, 0x6d, 0x02, 0xd0, 0x04, 0x32, 0xf6, 0x6f, 0xef, 0x98, 0xff,\n  0x62, 0x0c, 0x46, 0x0d, 0x0e, 0x09, 0x88, 0xf8, 0x6d, 0xe8, 0x31, 0xf4,\n  0x74, 0x0a, 0x58, 0x0f, 0xe3, 0x03, 0xf6, 0xfa, 0x98, 0xf7, 0xd8, 0xf9,\n  0x37, 0x02, 0x37, 0x09, 0xa1, 0x03, 0xc4, 0x08, 0x49, 0x0f, 0x7d, 0xeb,\n  0x61, 0xdf, 0xff, 0xfd, 0xa2, 0x16, 0xa6, 0x10, 0x1e, 0x0c, 0xa4, 0xfa,\n  0x94, 0xe2, 0xfd, 0xee, 0xa6, 0x0b, 0x65, 0x14, 0x8b, 0x07, 0x40, 0xfa,\n  0x99, 0xf9, 0xef, 0x03, 0x8b, 0x04, 0x42, 0xf4, 0x8c, 0xf9, 0x89, 0x15,\n  0x69, 0x03, 0xe4, 0xec, 0xca, 0xef, 0xb9, 0x02, 0x6e, 0x0f, 0x39, 0x14,\n  0xde, 0x06, 0x9d, 0xe6, 0x82, 0xe8, 0x9f, 0x04, 0xce, 0x13, 0x72, 0x0b,\n  0xa8, 0x08, 0x0d, 0xfd, 0xf2, 0xe6, 0x6f, 0xef, 0x24, 0x09, 0x82, 0x15,\n  0x08, 0x0e, 0x2b, 0xf6, 0xb0, 0xed, 0xb9, 0xf9, 0x3b, 0x06, 0x1f, 0x0a,\n  0xc6, 0x05, 0x41, 0xfc, 0xb2, 0xf9, 0xdd, 0xfb, 0x07, 0xfc, 0x51, 0x01,\n  0x60, 0x08, 0x95, 0x03, 0xbf, 0x07, 0x87, 0x0f, 0xe5, 0xe7, 0xe4, 0xdf,\n  0xf6, 0x08, 0xc2, 0x15, 0xfe, 0x0f, 0x22, 0x0f, 0x0d, 0xe8, 0xd8, 0xda,\n  0x56, 0x00, 0x6c, 0x18, 0xe5, 0x0e, 0x91, 0xfd, 0x4e, 0xf8, 0xf1, 0xfa,\n  0x54, 0x01, 0x0b, 0x04, 0x47, 0x03, 0xf8, 0xff, 0x3b, 0xfd, 0x96, 0x01,\n  0x9b, 0x05, 0x41, 0x08, 0x11, 0xf6, 0xcc, 0xe7, 0x1f, 0xf5, 0x75, 0x0c,\n  0x23, 0x11, 0x9d, 0x0d, 0xd4, 0x09, 0x91, 0xed, 0x02, 0xe7, 0xa6, 0xfa,\n  0x00, 0x10, 0x20, 0x0f, 0xc9, 0x0b, 0x01, 0x00, 0x8f, 0xea, 0x47, 0xef,\n  0xb1, 0x02, 0xcc, 0x0f, 0x72, 0x0e, 0x25, 0xfe, 0xe1, 0xf1, 0x71, 0xf8,\n  0xf9, 0x02, 0xdf, 0x06, 0xbe, 0x00, 0x42, 0xf8, 0x19, 0xfe, 0x77, 0x06,\n  0x9f, 0x05, 0xc7, 0x02, 0x7e, 0x0f, 0xf3, 0xfe, 0x1d, 0xdf, 0xa3, 0xed,\n  0x2f, 0x0e, 0xb6, 0x17, 0x5b, 0x10, 0x89, 0xf8, 0x9e, 0xe8, 0x7c, 0xf6,\n  0xbf, 0x06, 0x94, 0x0a, 0x8a, 0x01, 0x2c, 0xf9, 0xa9, 0xfe, 0xd2, 0x06,\n  0x07, 0x0c, 0x03, 0x02, 0x44, 0xea, 0xea, 0xf1, 0xa4, 0x0c, 0x81, 0x1d,\n  0xe5, 0x00, 0x35, 0xe6, 0xeb, 0xeb, 0x35, 0x03, 0xcc, 0x11, 0xb6, 0x09,\n  0xbf, 0xfd, 0xa3, 0x04, 0xb7, 0x0e, 0x30, 0xec, 0xe3, 0xe0, 0x6d, 0x02,\n  0x98, 0x16, 0xae, 0x0f, 0x0e, 0x0a, 0x21, 0xf7, 0xf1, 0xe3, 0x49, 0xf3,\n  0x3f, 0x0d, 0x28, 0x11, 0x0d, 0x02, 0xa0, 0xfa, 0x88, 0x09, 0x22, 0x04,\n  0xd3, 0xee, 0xb2, 0xf3, 0x45, 0x02, 0x94, 0x07, 0xe5, 0x00, 0x2c, 0x00,\n  0xf9, 0x02, 0xb7, 0x06, 0x39, 0x0a, 0x8f, 0xfc, 0x3f, 0xea, 0xb4, 0xf4,\n  0x78, 0x0a, 0x82, 0x13, 0xad, 0x0a, 0x30, 0xf2, 0x47, 0xed, 0x8f, 0xfc,\n  0x5f, 0x09, 0x67, 0x0a, 0x3b, 0x02, 0x34, 0xfb, 0xf4, 0xfa, 0xe5, 0xfe,\n  0x87, 0x02, 0x23, 0x03, 0x83, 0xff, 0x78, 0xff, 0x0c, 0xff, 0x8c, 0xff,\n  0x0f, 0xfd, 0x33, 0xfc, 0x68, 0x00, 0xc7, 0x0c, 0x35, 0x11, 0x69, 0xf4,\n  0x1e, 0xe6, 0x91, 0xf6, 0x55, 0x0e, 0x47, 0x0f, 0x97, 0x05, 0x09, 0x03,\n  0xd1, 0xef, 0xe9, 0xf2, 0x20, 0x05, 0xe1, 0x11, 0xc3, 0x1a, 0x41, 0xef,\n  0x06, 0xd7, 0x79, 0xf3, 0x9e, 0x16, 0xd4, 0x14, 0xc0, 0x01, 0xce, 0xf8,\n  0x2e, 0x0e, 0xfa, 0x05, 0xa3, 0xe2, 0x0d, 0xe9, 0x66, 0x08, 0x2b, 0x16,\n  0x0f, 0x09, 0xe5, 0xfb, 0x7d, 0xf9, 0x53, 0xff, 0xb8, 0x04, 0x03, 0x02,\n  0x4c, 0xf8, 0xd0, 0xfb, 0x60, 0x07, 0x8f, 0x18, 0x3f, 0xfe, 0x2d, 0xdd,\n  0x5c, 0xed, 0xa5, 0x09, 0xcc, 0x15, 0x97, 0x0d, 0xe4, 0xfb, 0x69, 0xf2,\n  0x72, 0xf8, 0x05, 0x00, 0x37, 0x09, 0x75, 0x0b, 0xc5, 0xfd, 0x8a, 0xf5,\n  0x04, 0xfa, 0x2a, 0x01, 0x1b, 0x06, 0x27, 0x07, 0x8c, 0xff, 0x35, 0xf9,\n  0x39, 0xfc, 0x24, 0x01, 0x11, 0x03, 0x35, 0xff, 0x8e, 0xfa, 0x5f, 0xff,\n  0x6e, 0x06, 0x1e, 0x09, 0x58, 0x0a, 0xf9, 0xfa, 0xdc, 0xe9, 0xa0, 0xf4,\n  0x26, 0x0a, 0xee, 0x11, 0xd9, 0x02, 0x86, 0xf6, 0x6b, 0xf5, 0x65, 0xfb,\n  0x58, 0x06, 0xe5, 0x0d, 0xff, 0x0e, 0x72, 0xf7, 0x97, 0xe7, 0xe9, 0xf3,\n  0x78, 0x0a, 0x0a, 0x10, 0x7b, 0x05, 0xd0, 0x04, 0xd9, 0x00, 0x91, 0xee,\n  0xed, 0xef, 0x23, 0x06, 0x7f, 0x10, 0x1d, 0x10, 0x3d, 0x00, 0xa5, 0xe9,\n  0xc5, 0xef, 0xe7, 0x03, 0x7f, 0x0e, 0xcf, 0x08, 0x67, 0xfd, 0x71, 0xf9,\n  0xce, 0xf9, 0x56, 0xfb, 0xf9, 0x03, 0xac, 0x08, 0xb2, 0x04, 0xec, 0x0f,\n  0x7e, 0xff, 0x02, 0xe1, 0x67, 0xeb, 0xaf, 0x0c, 0x56, 0x15, 0xac, 0x14,\n  0x6d, 0x00, 0xef, 0xe2, 0x92, 0xea, 0xb3, 0x04, 0xef, 0x13, 0xc1, 0x0a,\n  0x84, 0x09, 0x3c, 0xff, 0x54, 0xe8, 0x33, 0xee, 0x94, 0x06, 0x63, 0x10,\n  0x3b, 0x06, 0x17, 0x00, 0xc7, 0x0b, 0xe8, 0xfb, 0xab, 0xe9, 0xc9, 0xf6,\n  0x53, 0x07, 0x57, 0x0b, 0xcc, 0x01, 0x60, 0xf9, 0x42, 0xfe, 0xbc, 0x06,\n  0xb0, 0x0b, 0xab, 0x01, 0x2f, 0xeb, 0x0e, 0xf0, 0x7f, 0x0c, 0x05, 0x1d,\n  0x3d, 0x01, 0x4c, 0xe8, 0xdc, 0xec, 0xdd, 0x03, 0x9f, 0x11, 0xe2, 0x07,\n  0x5f, 0x02, 0x37, 0x0d, 0xa1, 0xf6, 0xab, 0xe6, 0x21, 0xf6, 0x98, 0x05,\n  0xbd, 0x0c, 0x0f, 0x07, 0xa5, 0xff, 0x2b, 0x01, 0x0b, 0x12, 0xe1, 0xf5,\n  0x65, 0xdd, 0xa7, 0xfc, 0x5f, 0x15, 0xdc, 0x0e, 0x0d, 0x08, 0x65, 0xff,\n  0xe2, 0xe7, 0x68, 0xed, 0x80, 0x09, 0x00, 0x13, 0x22, 0x10, 0x35, 0x03,\n  0x81, 0xe8, 0xfc, 0xe6, 0x8b, 0x01, 0x83, 0x14, 0x15, 0x0c, 0x72, 0x0e,\n  0x9b, 0xfc, 0x61, 0xe5, 0xb1, 0xee, 0xb6, 0x04, 0xdd, 0x10, 0x66, 0x14,\n  0xbb, 0x04, 0x08, 0xe9, 0xd1, 0xea, 0xf8, 0x00, 0xb6, 0x12, 0xe1, 0x08,\n  0xea, 0x0a, 0x48, 0x04, 0x32, 0xe0, 0x02, 0xed, 0xa2, 0x0e, 0x2e, 0x17,\n  0x71, 0x14, 0x77, 0xf4, 0x92, 0xdf, 0xd6, 0xf1, 0xc7, 0x0d, 0x3e, 0x13,\n  0x01, 0x10, 0x55, 0xfd, 0x2d, 0xea, 0x89, 0xf0, 0x79, 0x01, 0x64, 0x0e,\n  0x0d, 0x08, 0x0f, 0xff, 0xe5, 0xfd, 0x0b, 0x13, 0x54, 0x01, 0xe6, 0xde,\n  0xc3, 0xeb, 0xcf, 0x0c, 0x63, 0x16, 0x58, 0x07, 0x06, 0x05, 0x74, 0xff,\n  0xee, 0xe9, 0xd5, 0xee, 0x1e, 0x09, 0x54, 0x13, 0x63, 0x10, 0xf5, 0xfd,\n  0x77, 0xe6, 0x4a, 0xed, 0xc0, 0x05, 0xbb, 0x17, 0xaa, 0x15, 0x00, 0xf5,\n  0x7a, 0xe5, 0x6b, 0xf2, 0xaf, 0x0b, 0x4c, 0x10, 0xe6, 0x06, 0x06, 0x0f,\n  0x74, 0xf5, 0xb5, 0xdd, 0x2b, 0xf7, 0xda, 0x13, 0x1b, 0x11, 0x6c, 0xff,\n  0x49, 0xf8, 0xe7, 0xfc, 0x07, 0x03, 0xfd, 0x03, 0x75, 0x02, 0xaa, 0xfb,\n  0xfe, 0xf9, 0x78, 0xfe, 0x57, 0x05, 0x0f, 0x05, 0xe9, 0x0b, 0x9f, 0x07,\n  0xf2, 0xe4, 0xab, 0xe4, 0xe5, 0x01, 0x18, 0x15, 0x31, 0x0f, 0x48, 0xff,\n  0x6a, 0xf9, 0x7f, 0xfd, 0xa8, 0x08, 0x4d, 0x02, 0xcb, 0xee, 0xbb, 0xf7,\n  0x7f, 0x0d, 0x6e, 0x1f, 0x99, 0xfa, 0x49, 0xdc, 0x74, 0xec, 0x3f, 0x0b,\n  0x5c, 0x16, 0x8d, 0x08, 0x6a, 0x07, 0xd4, 0xff, 0x7c, 0xe6, 0xb8, 0xed,\n  0x8c, 0x09, 0xb9, 0x18, 0x62, 0x14, 0xb9, 0xf1, 0x97, 0xe2, 0x29, 0xf6,\n  0x51, 0x0e, 0xfc, 0x12, 0x26, 0x0d, 0x8a, 0xf7, 0xa3, 0xeb, 0x2d, 0xf8,\n  0x43, 0x04, 0xe2, 0x05, 0x6f, 0x03, 0xeb, 0x02, 0xe0, 0x05, 0x74, 0x09,\n  0xe5, 0xfa, 0x37, 0xeb, 0x0b, 0xf6, 0x3f, 0x0b, 0xfd, 0x11, 0x0b, 0x02,\n  0x17, 0xf4, 0x4b, 0xf7, 0x66, 0x01, 0x57, 0x06, 0x35, 0x03, 0x84, 0xff,\n  0x42, 0xfb, 0x9e, 0xf9, 0xe3, 0x00, 0x1f, 0x07, 0x17, 0x04, 0xa4, 0xff,\n  0xcd, 0xfe, 0x16, 0x0b, 0x95, 0x0d, 0xc7, 0xea, 0xae, 0xe0, 0x28, 0x00,\n  0x0c, 0x18, 0x31, 0x16, 0xa7, 0xfc, 0xf4, 0xeb, 0xb6, 0xf4, 0x61, 0x03,\n  0x3a, 0x0a, 0xf2, 0x08, 0x68, 0xff, 0x45, 0xf8, 0x06, 0xfb, 0xf7, 0x00,\n  0xd3, 0x03, 0x19, 0x02, 0x13, 0xfd, 0x82, 0xf9, 0xe4, 0xff, 0xef, 0x06,\n  0xe7, 0x08, 0x4d, 0x0a, 0xbd, 0xfb, 0x7b, 0xec, 0xd9, 0xf5, 0xfa, 0x01,\n  0x76, 0x07, 0x1a, 0x06, 0x25, 0x0b, 0x34, 0x06, 0xbf, 0xf1, 0x44, 0xf2,\n  0xc6, 0xfe, 0xb2, 0x05, 0x49, 0x02, 0xe5, 0x01, 0xf5, 0x02, 0x4f, 0x09,\n  0xa0, 0x0a, 0x51, 0xf2, 0xf6, 0xe9, 0x65, 0xf8, 0x9f, 0x0a, 0x54, 0x0e,\n  0x74, 0x05, 0xa2, 0x06, 0xfc, 0x01, 0xa1, 0xec, 0x51, 0xeb, 0xaf, 0x05,\n  0x99, 0x11, 0x7d, 0x15, 0xbf, 0x03, 0xb1, 0xe0, 0xd3, 0xea, 0x19, 0x0a,\n  0x2c, 0x1b, 0x8c, 0x10, 0xd8, 0xef, 0x36, 0xe9, 0x6c, 0xf8, 0x97, 0x09,\n  0x2d, 0x0b, 0x9d, 0x02, 0x51, 0xfc, 0x7f, 0x04, 0x08, 0x15, 0x11, 0xf6,\n  0x23, 0xe4, 0xc9, 0xf4, 0x13, 0x07, 0xc6, 0x0e, 0x74, 0x06, 0x68, 0xff,\n  0x2d, 0xfc, 0x0a, 0x00, 0x73, 0x00, 0x22, 0x10, 0xfe, 0x0a, 0xa2, 0xe2,\n  0xe4, 0xe2, 0xe5, 0x03, 0x40, 0x18, 0xc7, 0x0d, 0xbf, 0x07, 0x7c, 0xfe,\n  0x96, 0xe9, 0x56, 0xef, 0x0f, 0x05, 0xaf, 0x13, 0x73, 0x10, 0x15, 0xf8,\n  0xff, 0xec, 0xd7, 0xf4, 0x0c, 0x05, 0x21, 0x0d, 0x3b, 0x06, 0x5f, 0x05,\n  0x10, 0x06, 0xb3, 0xf2, 0x90, 0xe9, 0x15, 0x08, 0x0d, 0x14, 0x61, 0xfc,\n  0x6c, 0xed, 0x49, 0xfd, 0x5f, 0x0b, 0xbc, 0x13, 0x42, 0x0b, 0x06, 0xe9,\n  0x66, 0xe5, 0x15, 0xfe, 0x83, 0x12, 0xb5, 0x0e, 0xd3, 0x01, 0xf1, 0xf5,\n  0x89, 0xf9, 0x6f, 0x05, 0x11, 0x11, 0xd1, 0x00, 0xd3, 0xe8, 0xf1, 0xf1,\n  0x57, 0x05, 0x2e, 0x0e, 0xcc, 0x07, 0xa5, 0xfd, 0x78, 0xf9, 0x5b, 0xfc,\n  0xdc, 0x00, 0x7d, 0x03, 0x55, 0x03, 0x5c, 0xff, 0x79, 0xfc, 0x85, 0xf9,\n  0xd3, 0xfc, 0x1b, 0x07, 0x07, 0x07, 0x2e, 0x11, 0x5d, 0x01, 0x70, 0xe2,\n  0x1f, 0xec, 0x6f, 0x0a, 0xaf, 0x1f, 0xf9, 0x08, 0xd3, 0xe5, 0xf5, 0xea,\n  0x56, 0x09, 0xd4, 0x12, 0x28, 0x16, 0x7e, 0xfa, 0xca, 0xdb, 0xf9, 0xf0,\n  0xcf, 0x11, 0x12, 0x13, 0xd6, 0x04, 0xba, 0xfb, 0xc1, 0xf4, 0x7e, 0xfb,\n  0x3f, 0x05, 0xde, 0x08, 0xa1, 0x0f, 0x58, 0x01, 0x11, 0xe2, 0x0f, 0xe9,\n  0x74, 0x0a, 0x03, 0x19, 0x8b, 0x07, 0x70, 0xf2, 0x97, 0xfc, 0x67, 0x0b,\n  0x90, 0xfe, 0x18, 0xf6, 0x94, 0xfb, 0x3b, 0x00, 0xe6, 0x00, 0x7b, 0x03,\n  0xe4, 0x04, 0xa8, 0x05, 0x9c, 0x09, 0x21, 0xfb, 0xcc, 0xea, 0x67, 0xf5,\n  0x18, 0x0b, 0xaf, 0x0a, 0x59, 0x0b, 0xe6, 0x0a, 0x37, 0xed, 0x34, 0xe8,\n  0x5e, 0xfa, 0xf6, 0x0e, 0xdc, 0x0d, 0xa2, 0x06, 0xe2, 0x0a, 0xbe, 0xf4,\n  0x72, 0xe9, 0x71, 0xf6, 0x37, 0x06, 0xa8, 0x0d, 0x88, 0x06, 0x20, 0xff,\n  0x22, 0x01, 0xcb, 0xfc, 0x6d, 0xf8, 0xb4, 0xff, 0x8a, 0x05, 0x3b, 0x04,\n  0x03, 0x17, 0xcf, 0xff, 0x17, 0xd3, 0x68, 0xe9, 0x60, 0x16, 0xe6, 0x18,\n  0x14, 0x12, 0xaf, 0x00, 0x47, 0xe1, 0xf4, 0xe8, 0x37, 0x07, 0x80, 0x15,\n  0x7e, 0x08, 0x1d, 0xfc, 0x7f, 0xfe, 0xa5, 0x08, 0x51, 0xfd, 0x0d, 0xef,\n  0x87, 0xf6, 0x25, 0x0e, 0x63, 0x14, 0x96, 0xf8, 0xb8, 0xeb, 0x8c, 0xf5,\n  0xef, 0x07, 0x45, 0x0e, 0x4b, 0x06, 0x5e, 0x07, 0x41, 0xf7, 0x27, 0xec,\n  0xb3, 0xfc, 0xdd, 0x13, 0x9a, 0x1a, 0x11, 0xf2, 0xb6, 0xdf, 0xc4, 0xf3,\n  0x90, 0x0e, 0x83, 0x11, 0x73, 0x03, 0x5a, 0xfe, 0xfd, 0x0d, 0x88, 0xfb,\n  0xe6, 0xe0, 0x61, 0xf4, 0xc4, 0x10, 0xcc, 0x11, 0xde, 0x06, 0x50, 0x05,\n  0xd2, 0xf5, 0x3f, 0xe7, 0x89, 0xf9, 0x31, 0x0f, 0xb1, 0x14, 0x00, 0x08,\n  0xa2, 0xef, 0xa2, 0xeb, 0xee, 0xf9, 0x17, 0x0c, 0x27, 0x0d, 0x22, 0x12,\n  0x28, 0xfe, 0xd0, 0xe5, 0xbf, 0xed, 0x66, 0x05, 0x65, 0x12, 0xe3, 0x07,\n  0x7e, 0xfe, 0x34, 0xfb, 0x11, 0xfc, 0x25, 0x00, 0x53, 0x04, 0x8c, 0x0a,\n  0x62, 0x09, 0xc9, 0xf2, 0x30, 0xe6, 0xe2, 0xf9, 0x44, 0x11, 0x3d, 0x0e,\n  0x5d, 0xff, 0x01, 0xf7, 0x5b, 0xf6, 0x2f, 0xff, 0x17, 0x09, 0xd7, 0x06,\n  0xbe, 0x08, 0x64, 0x0a, 0x4c, 0xef, 0xc8, 0xe6, 0x76, 0xf9, 0x33, 0x10,\n  0xa4, 0x0d, 0xea, 0x0b, 0xa3, 0x07, 0x45, 0xe9, 0x50, 0xe7, 0x01, 0x00,\n  0x62, 0x14, 0x2c, 0x0a, 0x47, 0x07, 0xf8, 0x09, 0xc4, 0xea, 0xb4, 0xe3,\n  0x16, 0x00, 0x98, 0x15, 0xee, 0x0b, 0x20, 0x0e, 0x7f, 0xfe, 0x4e, 0xdf,\n  0xa4, 0xed, 0x25, 0x0e, 0x50, 0x14, 0x23, 0x04, 0xa0, 0xfb, 0x20, 0x09,\n  0x8a, 0xfe, 0x4b, 0xe6, 0x61, 0xf7, 0x0e, 0x0f, 0xb6, 0x0d, 0xbb, 0x05,\n  0x73, 0xfe, 0x50, 0xf4, 0x23, 0xf5, 0x4c, 0x01, 0xdb, 0x07, 0x69, 0x0b,\n  0x49, 0x14, 0x88, 0xf2, 0x41, 0xde, 0x94, 0xf3, 0xb7, 0x0e, 0xdd, 0x13,\n  0x51, 0x0d, 0x24, 0xff, 0xb4, 0xec, 0x91, 0xee, 0x37, 0x04, 0x5d, 0x0e,\n  0x78, 0x0d, 0x00, 0x0e, 0xa8, 0xf0, 0x9b, 0xe5, 0x18, 0xf6, 0x90, 0x0d,\n  0x8b, 0x10, 0xb2, 0x07, 0x9b, 0x00, 0x4f, 0xf2, 0x71, 0xf3, 0xc5, 0x03,\n  0xc9, 0x0a, 0x3d, 0x08, 0x1e, 0x06, 0xc5, 0xfa, 0x88, 0xed, 0xef, 0xf6,\n  0xe9, 0x08, 0xb0, 0x11, 0x9f, 0x08, 0x0b, 0xf2, 0xf2, 0xef, 0x66, 0xfe,\n  0x3c, 0x09, 0x9a, 0x05, 0x87, 0xfc, 0xb0, 0xff, 0xe5, 0x0d, 0x7f, 0x02,\n  0x12, 0xf1, 0x3a, 0xf6, 0x67, 0x01, 0xa4, 0x06, 0x13, 0x03, 0xef, 0x02,\n  0x70, 0x04, 0x61, 0xfc, 0x2a, 0xf8, 0x71, 0xfc, 0x36, 0x01, 0xd1, 0x02,\n  0xbd, 0x01, 0x40, 0x01, 0xaf, 0x01, 0x8d, 0x02, 0x13, 0x02, 0xdb, 0xfe,\n  0x8d, 0xfb, 0x01, 0xfd, 0x03, 0x02, 0x13, 0x05, 0xd7, 0xfd, 0xcc, 0xf8,\n  0x8b, 0xfd, 0x1b, 0x03, 0x70, 0x00, 0x95, 0xfd, 0x85, 0x02, 0xf4, 0x04,\n  0x47, 0x02, 0x94, 0xfe, 0xc7, 0xfd, 0x80, 0xff, 0xf4, 0x00, 0xe5, 0x01,\n  0x64, 0x01, 0x10, 0x00, 0x81, 0xfc, 0x35, 0xf9, 0x84, 0xfe, 0xfb, 0x05,\n  0x82, 0x05, 0x75, 0x08, 0x3f, 0x0e, 0x0e, 0xee, 0x41, 0xdc, 0x05, 0xfc,\n  0xb9, 0x19, 0xfa, 0x16, 0x09, 0x03, 0x74, 0xed, 0xe4, 0xee, 0xae, 0x06,\n  0x34, 0x0b, 0x1b, 0x02, 0x2b, 0xfc, 0x8c, 0xfa, 0xf9, 0xfc, 0xbb, 0x02,\n  0xb2, 0x09, 0x84, 0x09, 0x01, 0xf9, 0x37, 0xf2, 0x72, 0xfb, 0x3b, 0x05,\n  0x66, 0x08, 0x1f, 0x03, 0x81, 0xfc, 0x64, 0xfb, 0x9d, 0xfe, 0xa0, 0x01,\n  0xb1, 0x02, 0x76, 0x01, 0xea, 0xfe, 0x27, 0xfe, 0x39, 0xff, 0xb8, 0x00,\n  0xb6, 0x00, 0x4d, 0x00, 0xe4, 0xfb, 0x6d, 0xfa, 0x99, 0x03, 0x04, 0x07,\n  0xd3, 0x02, 0x0b, 0x00, 0x04, 0x0b, 0xcd, 0xfa, 0x27, 0xe8, 0xcd, 0xfb,\n  0x32, 0x12, 0xbc, 0x1c, 0xe1, 0xf6, 0x2e, 0xd9, 0xec, 0xf3, 0xa9, 0x14,\n  0x94, 0x12, 0xb2, 0x05, 0x87, 0x04, 0xc9, 0xf5, 0xfb, 0xe7, 0x1c, 0xfb,\n  0xac, 0x0d, 0x58, 0x0c, 0xc0, 0xfe, 0x95, 0x03, 0x9f, 0x12, 0x98, 0xf1,\n  0xbb, 0xdf, 0x02, 0xf6, 0xd9, 0x13, 0xae, 0x11, 0x2f, 0x0f, 0x37, 0x00,\n  0x41, 0xe4, 0xd1, 0xeb, 0x83, 0x06, 0xcd, 0x13, 0xb9, 0x08, 0x09, 0x08,\n  0x8b, 0x00, 0xc6, 0xe8, 0x4d, 0xed, 0x0f, 0x08, 0xba, 0x11, 0x4c, 0x06,\n  0x2d, 0xfb, 0xb7, 0x04, 0x7f, 0x09, 0xe6, 0xf1, 0x7f, 0xee, 0xd3, 0xfe,\n  0xbf, 0x09, 0x5f, 0x04, 0xdd, 0xfc, 0xfb, 0x00, 0xf5, 0x03, 0x6d, 0x0b,\n  0x8c, 0x0a, 0x13, 0xed, 0x46, 0xe5, 0xb4, 0x01, 0x98, 0x13, 0x0d, 0x13,\n  0x3a, 0x04, 0x81, 0xec, 0x3a, 0xef, 0x97, 0x00, 0x28, 0x0a, 0xf7, 0x04,\n  0xb3, 0xfd, 0x17, 0x07, 0xd5, 0x03, 0x67, 0xf5, 0x42, 0xf4, 0x87, 0xfe,\n  0x8f, 0x0b, 0xc3, 0x05, 0x59, 0x0b, 0xc7, 0x0a, 0x8e, 0xe9, 0x7f, 0xe5,\n  0xb1, 0xfe, 0x0f, 0x14, 0xad, 0x0c, 0x37, 0x07, 0xdc, 0x04, 0xa7, 0xef,\n  0x1a, 0xee, 0x6c, 0xfe, 0xf8, 0x08, 0xeb, 0x05, 0x51, 0x01, 0x87, 0x02,\n  0x97, 0x07, 0x1a, 0x00, 0xfb, 0xf2, 0x79, 0xf7, 0xb0, 0x00, 0x6b, 0x03,\n  0x1f, 0x06, 0xc5, 0x0f, 0xed, 0xfe, 0x01, 0xef, 0x1b, 0xf2, 0x6e, 0x00,\n  0x31, 0x0d, 0x21, 0x08, 0x2a, 0xff, 0x77, 0xfc, 0x2d, 0xff, 0x08, 0x00,\n  0x1d, 0x00, 0x25, 0x00, 0x62, 0x00, 0xb2, 0x00, 0xd1, 0x00, 0xe4, 0xfe,\n  0xad, 0xfd, 0x21, 0xff, 0xcc, 0x01, 0x97, 0x02, 0xdb, 0x02, 0xd3, 0xfc,\n  0x49, 0xf8, 0xdf, 0xfe, 0x67, 0x05, 0x27, 0x04, 0x3d, 0x08, 0x8e, 0x08,\n  0xb1, 0xe7, 0xf4, 0xeb, 0x8d, 0x09, 0x23, 0x24, 0xa4, 0x0c, 0x07, 0xde,\n  0x91, 0xe5, 0xdd, 0x02, 0x4d, 0x13, 0x04, 0x0a, 0x96, 0xff, 0xdd, 0xfd,\n  0xca, 0x00, 0xa1, 0xf9, 0x19, 0xfc, 0x67, 0x03, 0x1f, 0x13, 0x78, 0x0a,\n  0x41, 0xe7, 0x10, 0xe8, 0x8a, 0xff, 0xfe, 0x10, 0x31, 0x10, 0xef, 0x07,\n  0xa0, 0xf4, 0x21, 0xf1, 0x8c, 0xf9, 0x1d, 0x03, 0x27, 0x08, 0xcc, 0x0b,\n  0xaf, 0x0d, 0x66, 0xf2, 0x53, 0xe6, 0x8a, 0xfa, 0xc4, 0x10, 0xb9, 0x0c,\n  0x07, 0x0d, 0xae, 0x01, 0xc0, 0xe4, 0x2f, 0xea, 0x34, 0x08, 0x69, 0x14,\n  0x7f, 0x09, 0x1c, 0x0d, 0x26, 0xf7, 0x1e, 0xe0, 0x7a, 0xf5, 0xf4, 0x10,\n  0x0a, 0x11, 0x1c, 0x01, 0x22, 0xfe, 0x0c, 0x0b, 0x7f, 0xfd, 0xdb, 0xe0,\n  0xaa, 0xf5, 0xaa, 0x10, 0x29, 0x1b, 0x26, 0x0c, 0x33, 0xe9, 0x2c, 0xe5,\n  0xd3, 0xfc, 0xd7, 0x0f, 0x93, 0x16, 0xe5, 0x08, 0xf0, 0xec, 0x10, 0xe9,\n  0x0c, 0xfe, 0x6e, 0x0f, 0x5d, 0x0f, 0xcc, 0x0f, 0x12, 0xf2, 0x61, 0xe2,\n  0x40, 0xf7, 0x10, 0x12, 0x9e, 0x0d, 0x42, 0x08, 0x24, 0x0c, 0xae, 0xed,\n  0xd1, 0xe1, 0xed, 0xfb, 0xb5, 0x13, 0x79, 0x0f, 0x1f, 0xfe, 0x2f, 0x0b,\n  0x04, 0xfe, 0x5a, 0xde, 0x6d, 0xf8, 0xcb, 0x12, 0xa5, 0x0e, 0xe3, 0xff,\n  0xc1, 0xfd, 0x7d, 0xf9, 0x2e, 0xfa, 0x11, 0x02, 0xe3, 0x04, 0x49, 0x02,\n  0xcc, 0x01, 0xdd, 0xff, 0x75, 0xf9, 0x19, 0xfc, 0xa7, 0x02, 0xcf, 0x03,\n  0x5f, 0x02, 0xce, 0x07, 0x00, 0xfb, 0x59, 0xf0, 0x7e, 0xfe, 0xea, 0x08,\n  0x2f, 0x06, 0x3a, 0x00, 0x31, 0x01, 0x3e, 0x09, 0xb7, 0x06, 0x5b, 0xec,\n  0xa7, 0xe7, 0x35, 0x00, 0x2b, 0x10, 0x46, 0x0d, 0x21, 0xff, 0x63, 0xf4,\n  0x12, 0xfb, 0x3c, 0x07, 0x92, 0x09, 0x47, 0x0b, 0xa5, 0xff, 0xd1, 0xea,\n  0xc3, 0xef, 0x69, 0x0a, 0x98, 0x10, 0x9d, 0x00, 0x3d, 0xf8, 0xdf, 0xfc,\n  0x15, 0x02, 0x58, 0x01, 0x10, 0x00, 0xdd, 0xff, 0x00, 0x00, 0xa5, 0xff,\n  0x91, 0xfd, 0xae, 0xfb, 0x42, 0x01, 0x43, 0x06, 0xaa, 0x08, 0x59, 0x09,\n  0x06, 0xf8, 0xbd, 0xea, 0xd2, 0xfb, 0x62, 0x0b, 0xaa, 0x07, 0x3c, 0xfe,\n  0x20, 0xf7, 0x1f, 0xfd, 0x2c, 0x06, 0xfb, 0x06, 0xe0, 0x12, 0xc1, 0xfd,\n  0xa1, 0xe1, 0x2c, 0xee, 0x9f, 0x0b, 0xc4, 0x13, 0xff, 0x04, 0xe8, 0xfa,\n  0x65, 0xfc, 0xae, 0x01, 0xd4, 0x00, 0x30, 0xfe, 0xbe, 0xfe, 0xbb, 0x01,\n  0xa1, 0x03, 0x13, 0x02, 0xcf, 0xfd, 0x28, 0xfb, 0xe7, 0xfd, 0x48, 0x01,\n  0xc1, 0xfd, 0xbb, 0xfd, 0x4b, 0x01, 0x55, 0x03, 0x00, 0x01, 0x20, 0x00,\n  0x17, 0x02, 0x15, 0xff, 0x85, 0xfd, 0x7e, 0xfe, 0xd4, 0xff, 0xae, 0x01,\n  0x3e, 0x04, 0xfe, 0x00, 0x09, 0xfc, 0x3f, 0xfd, 0xbf, 0xff, 0x10, 0x01,\n  0xad, 0xfc, 0x6c, 0xfe, 0x65, 0x03, 0x84, 0x08, 0x26, 0x11, 0x15, 0xf8,\n  0x10, 0xe5, 0x19, 0xf3, 0x47, 0x0c, 0xee, 0x10, 0x18, 0x04, 0xfe, 0xfb,\n  0xe9, 0xfa, 0xc4, 0xfe, 0xe7, 0x01, 0xd9, 0x03, 0x28, 0x06, 0x01, 0x01,\n  0xb7, 0xf5, 0xeb, 0xf4, 0x45, 0x02, 0xac, 0x08, 0xb6, 0x00, 0x82, 0xfa,\n  0x11, 0x0e, 0xae, 0x08, 0x47, 0xed, 0xd7, 0xed, 0x43, 0xfe, 0x5f, 0x0e,\n  0x00, 0x0b, 0x8d, 0x02, 0x18, 0x07, 0xe1, 0xfe, 0x7c, 0xe9, 0x6a, 0xf3,\n  0x48, 0x0b, 0x3f, 0x11, 0x17, 0x0c, 0xc1, 0xfd, 0x1b, 0xec, 0x1a, 0xf2,\n  0xcb, 0x03, 0xa4, 0x0c, 0xf2, 0x07, 0xe3, 0xfd, 0xbe, 0xf9, 0x77, 0xfc,\n  0xf5, 0x00, 0x23, 0x03, 0x03, 0x03, 0x5d, 0xff, 0x8b, 0xfd, 0x83, 0xfc,\n  0xd0, 0xfa, 0xc9, 0x01, 0xfb, 0x06, 0x71, 0x03, 0x4d, 0xff, 0x71, 0x00,\n  0xb3, 0x03, 0xc1, 0xfa, 0xb5, 0xf8, 0x9e, 0xff, 0x1f, 0x06, 0x69, 0x01,\n  0x26, 0x0a, 0xf8, 0x16, 0x3d, 0xe6, 0x46, 0xd5, 0xa8, 0xff, 0x4b, 0x1d,\n  0x6a, 0x11, 0x9b, 0x07, 0x44, 0xff, 0xdb, 0xe3, 0x0a, 0xee, 0x8c, 0x0c,\n  0x1e, 0x15, 0xa2, 0x14, 0xa1, 0xf6, 0x64, 0xe4, 0x7f, 0xf5, 0xb2, 0x07,\n  0xc5, 0x0a, 0xc3, 0x03, 0x82, 0x00, 0xe7, 0x02, 0x23, 0x04, 0x95, 0xfc,\n  0xc1, 0xf7, 0xe2, 0xf9, 0xfd, 0x00, 0xb6, 0x00, 0x56, 0x00, 0x13, 0x04,\n  0x0d, 0x10, 0x90, 0x05, 0x52, 0xeb, 0x13, 0xed, 0xa9, 0x02, 0x21, 0x10,\n  0xed, 0x0b, 0xa4, 0x09, 0x38, 0xf7, 0xb0, 0xeb, 0x19, 0xf7, 0xe5, 0x03,\n  0xda, 0x09, 0x98, 0x06, 0x5f, 0x03, 0x17, 0x08, 0xc8, 0xff, 0x71, 0xec,\n  0xc0, 0xf0, 0xff, 0x05, 0x29, 0x0f, 0x2f, 0x0b, 0x97, 0x04, 0x61, 0xfa,\n  0xf3, 0xf1, 0x44, 0xf6, 0xf3, 0x02, 0xac, 0x08, 0x73, 0x05, 0x33, 0xff,\n  0x7e, 0xfa, 0x39, 0xf9, 0x7f, 0x02, 0xdc, 0x06, 0xe2, 0x09, 0x6d, 0x0a,\n  0x9c, 0xf2, 0x9a, 0xec, 0x84, 0xf9, 0x83, 0x06, 0x94, 0x0b, 0xd0, 0x04,\n  0xc1, 0x01, 0xaa, 0x07, 0x07, 0xfd, 0xf5, 0xe9, 0xcc, 0x01, 0x4f, 0x11,\n  0x9d, 0xfd, 0x37, 0xf1, 0x25, 0xf9, 0xec, 0x09, 0x22, 0x0a, 0x89, 0x03,\n  0x30, 0x05, 0x89, 0xfb, 0x2c, 0xee, 0x71, 0xfa, 0x2c, 0x0a, 0xcc, 0x0b,\n  0xb4, 0x09, 0xf1, 0x02, 0x3a, 0xef, 0x0f, 0xec, 0xf3, 0xfe, 0xc1, 0x0c,\n  0xfe, 0x0a, 0x3a, 0xfe, 0xfb, 0xfc, 0x87, 0x02, 0x0d, 0xfb, 0x11, 0xf7,\n  0x13, 0x02, 0x5c, 0x09, 0xae, 0x11, 0x0f, 0x02, 0x05, 0xe9, 0x28, 0xee,\n  0xfd, 0x02, 0x79, 0x0f, 0xc4, 0x0d, 0xac, 0x06, 0x22, 0xf3, 0xc6, 0xef,\n  0x9d, 0xfc, 0xee, 0x07, 0xb3, 0x07, 0x42, 0xfe, 0x41, 0xfd, 0xdd, 0x00,\n  0xb4, 0x10, 0x17, 0x07, 0xeb, 0xe9, 0x2c, 0xee, 0xca, 0xfe, 0x74, 0x0c,\n  0xb7, 0x08, 0x06, 0x06, 0x7c, 0x0d, 0xa9, 0xf5, 0xdf, 0xe5, 0xee, 0xf5,\n  0x4d, 0x10, 0xb6, 0x0d, 0x4a, 0x0b, 0x19, 0x09, 0x3f, 0xe6, 0x85, 0xe5,\n  0x2f, 0x06, 0xb6, 0x15, 0x47, 0x08, 0x2a, 0xff, 0x4b, 0x01, 0x2c, 0xf5,\n  0x6c, 0xf4, 0x13, 0x04, 0xd5, 0x0b, 0xc8, 0x12, 0x13, 0xfd, 0x72, 0xde,\n  0x14, 0xf2, 0x3d, 0x11, 0x5a, 0x11, 0xfc, 0x01, 0x69, 0xfd, 0xfe, 0x09,\n  0x2c, 0x00, 0x6e, 0xe8, 0xf0, 0xf0, 0x77, 0x09, 0x21, 0x13, 0x72, 0x05,\n  0x00, 0xf8, 0x8b, 0xf7, 0x42, 0xfe, 0xad, 0x03, 0xec, 0x05, 0x39, 0x02,\n  0x65, 0xfc, 0x94, 0xfb, 0x29, 0xfa, 0x8a, 0xff, 0xa3, 0x07, 0xbc, 0x05,\n  0xb4, 0x11, 0x73, 0xfd, 0xbc, 0xdf, 0xf1, 0xf0, 0x7f, 0x10, 0x2d, 0x11,\n  0xd6, 0x08, 0x9c, 0x0b, 0x8e, 0xe8, 0x88, 0xe2, 0x5b, 0x05, 0xff, 0x15,\n  0x24, 0x09, 0x7e, 0xff, 0x44, 0xff, 0x8c, 0xf5, 0x22, 0xf6, 0x8c, 0x05,\n  0xda, 0x06, 0x37, 0x0e, 0x12, 0x11, 0xc0, 0xe4, 0x0e, 0xdb, 0x53, 0x03,\n  0x00, 0x1a, 0x5f, 0x12, 0x14, 0x0c, 0xc6, 0xe9, 0x6b, 0xe2, 0x49, 0x03,\n  0xea, 0x14, 0xc8, 0x08, 0xfb, 0x06, 0x59, 0x08, 0x60, 0xe7, 0x0c, 0xe4,\n  0x9a, 0x07, 0x7c, 0x14, 0xc2, 0x12, 0xa0, 0x09, 0x4a, 0xe8, 0x25, 0xe4,\n  0x87, 0xff, 0xef, 0x13, 0x6a, 0x0c, 0x34, 0x01, 0x0b, 0x06, 0xe4, 0xf7,\n  0xf1, 0xe9, 0x41, 0xfc, 0x68, 0x0e, 0xb0, 0x09, 0x6f, 0x06, 0xaf, 0x0d,\n  0x0c, 0xef, 0xff, 0xe0, 0x89, 0xfa, 0xc5, 0x15, 0xab, 0x1a, 0x85, 0xfd,\n  0x47, 0xe9, 0x6a, 0xef, 0x24, 0x07, 0x27, 0x0e, 0x33, 0x11, 0x1b, 0x06,\n  0x71, 0xe8, 0x40, 0xe9, 0x31, 0x02, 0xdb, 0x12, 0x74, 0x09, 0x75, 0x02,\n  0xb3, 0x04, 0x21, 0xf5, 0xca, 0xeb, 0xb7, 0xff, 0x1c, 0x0e, 0x4c, 0x0e,\n  0x1c, 0x0d, 0xe2, 0xf1, 0xc7, 0xe4, 0x99, 0xf5, 0x68, 0x0e, 0x50, 0x0f,\n  0x3c, 0x0e, 0x03, 0x06, 0xb1, 0xe7, 0xdd, 0xe8, 0x73, 0x04, 0x93, 0x13,\n  0x16, 0x08, 0x08, 0xff, 0x5d, 0x02, 0x36, 0xf8, 0x57, 0xf3, 0xab, 0x01,\n  0xc2, 0x08, 0x87, 0x04, 0xfd, 0xfe, 0xe7, 0x03, 0xba, 0x05, 0x49, 0xf4,\n  0xd7, 0xf0, 0xad, 0x00, 0xcd, 0x0b, 0xc4, 0x06, 0x2b, 0x11, 0x8d, 0x02,\n  0x1c, 0xe0, 0x9c, 0xed, 0x30, 0x07, 0x7f, 0x11, 0x5f, 0x06, 0xb8, 0xfb,\n  0x31, 0xfa, 0x14, 0x00, 0x2b, 0x03, 0x3a, 0x0c, 0x67, 0x0b, 0x00, 0xef,\n  0xf5, 0xea, 0x1f, 0xfc, 0x87, 0x0b, 0x97, 0x0d, 0x6a, 0x09, 0x8f, 0xf7,\n  0xe3, 0xed, 0x67, 0xfc, 0xab, 0x11, 0x5b, 0x10, 0x49, 0xf6, 0x93, 0xef,\n  0x21, 0xfb, 0x52, 0x05, 0xe7, 0x05, 0x27, 0x06, 0x0d, 0x02, 0xee, 0xf9,\n  0xdd, 0xf9, 0x44, 0xff, 0xfb, 0x04, 0x8b, 0x04, 0xf1, 0xfe, 0x35, 0xfc,\n  0xed, 0xfd, 0x8e, 0x00, 0x6f, 0x02, 0xdb, 0x01, 0x2a, 0xff, 0x5d, 0xfd,\n  0x15, 0xfb, 0x43, 0xfe, 0x57, 0x05, 0x93, 0x06, 0x01, 0x09, 0xc0, 0x05,\n  0x9e, 0xed, 0xc0, 0xe9, 0xa3, 0x06, 0x34, 0x1c, 0x4f, 0x07, 0x88, 0xee,\n  0x04, 0xf1, 0xb5, 0xfc, 0x73, 0x07, 0xe5, 0x08, 0x33, 0x03, 0x66, 0xfe,\n  0xc8, 0xff, 0x4c, 0x06, 0xe7, 0x04, 0xea, 0xf4, 0xb1, 0xf1, 0x1d, 0x00,\n  0xb5, 0x13, 0x37, 0x08, 0xd8, 0xf0, 0x4a, 0xf0, 0xa3, 0xfd, 0xe9, 0x0b,\n  0xc7, 0x09, 0xc7, 0x05, 0xf0, 0x07, 0x5b, 0xf7, 0x36, 0xe8, 0x6d, 0xf8,\n  0x54, 0x0e, 0xdb, 0x18, 0x41, 0x03, 0x1a, 0xeb, 0xc4, 0xee, 0xb5, 0x00,\n  0xee, 0x0d, 0x07, 0x09, 0x06, 0xff, 0xe1, 0xfb, 0x96, 0x05, 0xc9, 0x0a,\n  0x58, 0xf5, 0x07, 0xed, 0x1d, 0xfc, 0xb4, 0x09, 0x95, 0x0a, 0x47, 0x02,\n  0xc6, 0xfb, 0x69, 0xfb, 0x4f, 0xfc, 0xd3, 0xfc, 0x53, 0x04, 0x1a, 0x06,\n  0x2b, 0x04, 0x23, 0x03, 0x33, 0x01, 0x69, 0x02, 0x5a, 0xf4, 0xb7, 0xf0,\n  0x0b, 0xfc, 0x9f, 0x0a, 0x82, 0x0a, 0xca, 0x0d, 0xe2, 0x04, 0xf5, 0xea,\n  0xbd, 0xec, 0xbd, 0xff, 0xcc, 0x0f, 0xf7, 0x0a, 0xd7, 0x09, 0x83, 0xff,\n  0x15, 0xec, 0x9b, 0xf0, 0xf3, 0x03, 0x61, 0x0f, 0xfe, 0x0d, 0xe5, 0xfd,\n  0x46, 0xf1, 0x43, 0xf7, 0xc5, 0xff, 0xd8, 0x04, 0x0e, 0x07, 0xe7, 0x0f,\n  0x29, 0xff, 0x7b, 0xec, 0xfe, 0xf0, 0xa7, 0x02, 0x89, 0x0e, 0x58, 0x07,\n  0x85, 0x01, 0x1b, 0x06, 0xfd, 0xf8, 0x7b, 0xec, 0x4d, 0xfd, 0x58, 0x0c,\n  0xcf, 0x0b, 0x61, 0x09, 0xd9, 0xfe, 0x85, 0xea, 0x5a, 0xef, 0x94, 0x06,\n  0x62, 0x14, 0xb4, 0x09, 0x44, 0xf6, 0x7a, 0xf3, 0x67, 0xfd, 0xeb, 0x03,\n  0x23, 0x04, 0xb6, 0x09, 0x5e, 0x00, 0x23, 0xf6, 0xb3, 0xf5, 0x45, 0xff,\n  0xf2, 0x09, 0x53, 0x06, 0xcb, 0x00, 0x83, 0xfc, 0x59, 0x02, 0x00, 0x13,\n  0x94, 0xf7, 0x48, 0xdf, 0x4b, 0xf5, 0x01, 0x12, 0xea, 0x11, 0x6f, 0x03,\n  0xc5, 0x03, 0x35, 0xfc, 0xfb, 0xeb, 0xe7, 0xf6, 0xd4, 0x0a, 0x4e, 0x0f,\n  0xd2, 0x06, 0xb2, 0xf3, 0xb2, 0xf3, 0xc7, 0x03, 0x75, 0x17, 0xce, 0x04,\n  0x7d, 0xe7, 0xf1, 0xec, 0x73, 0x01, 0x8b, 0x10, 0xe7, 0x09, 0xc3, 0x01,\n  0x70, 0x06, 0xe7, 0xfd, 0x08, 0xea, 0xe4, 0xf5, 0x2e, 0x0b, 0xc3, 0x10,\n  0x07, 0x03, 0xb3, 0xf2, 0x21, 0xf9, 0x9e, 0x07, 0x05, 0x1a, 0x57, 0xfe,\n  0xd7, 0xdf, 0x3f, 0xed, 0x62, 0x08, 0xfb, 0x15, 0x89, 0x13, 0x15, 0xfb,\n  0x6e, 0xe5, 0x3b, 0xf3, 0xb5, 0x0b, 0x96, 0x0f, 0x49, 0x03, 0x13, 0x06,\n  0x6c, 0xfe, 0x72, 0xe9, 0x41, 0xf6, 0x02, 0x0c, 0x01, 0x0d, 0x81, 0x08,\n  0x9a, 0x04, 0xc4, 0xf0, 0x31, 0xea, 0x83, 0x00, 0x9f, 0x0e, 0x8d, 0x09,\n  0x11, 0xff, 0xce, 0x09, 0x73, 0x02, 0xe0, 0xea, 0xd3, 0xed, 0x99, 0x02,\n  0x07, 0x0f, 0xef, 0x11, 0xc9, 0x08, 0xa5, 0xee, 0x86, 0xed, 0x71, 0xfa,\n  0xaa, 0x09, 0x50, 0x0b, 0x17, 0x03, 0xcf, 0xfc, 0xe9, 0xfd, 0x4d, 0xff,\n  0x99, 0x01, 0x56, 0x00, 0xed, 0x0e, 0xff, 0x0c, 0x14, 0xe0, 0xd2, 0xe0,\n  0x11, 0x09, 0xe8, 0x19, 0x79, 0x0c, 0xdc, 0x06, 0x26, 0xf9, 0x56, 0xe7,\n  0x9e, 0xf4, 0x3c, 0x0b, 0xe1, 0x17, 0x17, 0x06, 0xb4, 0xee, 0x28, 0xed,\n  0xca, 0x00, 0x0f, 0x0f, 0x71, 0x09, 0x66, 0x0e, 0xb1, 0xf7, 0xbe, 0xdf,\n  0xdc, 0xfa, 0x62, 0x11, 0x5a, 0x14, 0x35, 0x0d, 0x9c, 0xed, 0xff, 0xe3,\n  0x7c, 0xfa, 0x82, 0x10, 0x70, 0x0f, 0xd6, 0x0a, 0xf1, 0xfd, 0x9a, 0xeb,\n  0x27, 0xf3, 0xe3, 0x02, 0x19, 0x0c, 0xc7, 0x03, 0x5b, 0x07, 0x0a, 0x09,\n  0x9c, 0xf2, 0xd0, 0xec, 0x08, 0xfa, 0xa5, 0x0c, 0xaa, 0x0c, 0x7c, 0x10,\n  0xf5, 0xfc, 0x21, 0xe6, 0x68, 0xef, 0xe4, 0x07, 0xff, 0x11, 0xa4, 0x05,\n  0xf7, 0xfc, 0x4d, 0xff, 0xad, 0xfd, 0x6d, 0xf9, 0xce, 0x00, 0x79, 0x03,\n  0x91, 0x09, 0xb2, 0x15, 0xf3, 0xec, 0x3d, 0xd6, 0xe3, 0xff, 0x0b, 0x19,\n  0x33, 0x16, 0x5f, 0x0c, 0xc6, 0xe9, 0x61, 0xe1, 0xe1, 0xfe, 0x8e, 0x14,\n  0x74, 0x0c, 0xe8, 0x00, 0x4d, 0x0c, 0x79, 0xf5, 0xf8, 0xe0, 0xb5, 0xfa,\n  0xc1, 0x13, 0xc0, 0x0d, 0xf0, 0x0d, 0x1a, 0xff, 0xc1, 0xe0, 0x2b, 0xee,\n  0x54, 0x0c, 0xd2, 0x13, 0x3f, 0x06, 0x94, 0x06, 0x0f, 0xfd, 0x33, 0xe8,\n  0x67, 0xf1, 0xdf, 0x0c, 0x46, 0x0e, 0x3d, 0x0e, 0x2f, 0x08, 0x0f, 0xe9,\n  0xa1, 0xe6, 0x7a, 0xff, 0xc9, 0x12, 0xbc, 0x0d, 0x08, 0x0e, 0xd1, 0xf7,\n  0x56, 0xe3, 0xa3, 0xf4, 0x97, 0x0e, 0x24, 0x10, 0x1b, 0x03, 0x82, 0x01,\n  0x28, 0xf8, 0x09, 0xf3, 0xf9, 0x01, 0x0f, 0x08, 0x66, 0x0e, 0xb4, 0x0e,\n  0xf1, 0xe8, 0x01, 0xdf, 0x8c, 0x00, 0x96, 0x17, 0x81, 0x19, 0xa9, 0xfd,\n  0x21, 0xe9, 0xea, 0xef, 0x94, 0x01, 0x48, 0x0e, 0x72, 0x08, 0x17, 0xff,\n  0x9b, 0xfc, 0xb7, 0x05, 0xca, 0x00, 0x99, 0xf3, 0xdc, 0xfa, 0x66, 0x09,\n  0x41, 0x0b, 0x4d, 0xfc, 0xb4, 0xf1, 0x58, 0xfb, 0xd7, 0x07, 0x57, 0x0a,\n  0x0e, 0x15, 0x78, 0xf8, 0xa3, 0xdc, 0x2b, 0xf0, 0xba, 0x0e, 0x33, 0x14,\n  0x77, 0x07, 0x42, 0x0a, 0xb9, 0xf6, 0x9a, 0xe8, 0x42, 0xf5, 0xc1, 0x09,\n  0xda, 0x0e, 0xf9, 0x08, 0x37, 0x08, 0x6c, 0xf5, 0xa2, 0xec, 0x9a, 0xf7,\n  0x60, 0x05, 0x49, 0x0d, 0xe7, 0x04, 0xaf, 0x0b, 0xe1, 0x02, 0xc0, 0xe7,\n  0x30, 0xec, 0x97, 0x08, 0x66, 0x11, 0xa7, 0x0b, 0xa5, 0x0b, 0xed, 0xef,\n  0xd7, 0xe3, 0x90, 0xfb, 0xb3, 0x11, 0x7e, 0x14, 0x20, 0x09, 0x15, 0xec,\n  0x14, 0xe9, 0xf5, 0x00, 0xb3, 0x15, 0xb5, 0x13, 0x8e, 0xf2, 0xf1, 0xe5,\n  0x0c, 0xfe, 0xd5, 0x0f, 0x36, 0x14, 0xe2, 0x04, 0x61, 0xeb, 0xab, 0xed,\n  0xaf, 0xfd, 0xef, 0x0a, 0xd7, 0x0a, 0x9b, 0x02, 0xbb, 0x04, 0xaf, 0x04,\n  0x9a, 0xf1, 0xc1, 0xed, 0x97, 0x02, 0x6e, 0x0d, 0x5d, 0x0b, 0x85, 0x0e,\n  0x23, 0xf5, 0xe4, 0xe6, 0x79, 0xf8, 0x97, 0x07, 0x37, 0x09, 0x73, 0x02,\n  0xe2, 0x00, 0xd2, 0xff, 0x29, 0x0b, 0x3e, 0x0a, 0x82, 0xeb, 0x7e, 0xe7,\n  0x85, 0x01, 0xf2, 0x12, 0xd0, 0x0a, 0x88, 0x04, 0x7f, 0x03, 0x09, 0xf2,\n  0x8e, 0xeb, 0x95, 0x00, 0xdd, 0x0f, 0x39, 0x11, 0xc9, 0x01, 0x81, 0xee,\n  0x48, 0xf3, 0x10, 0x01, 0xf7, 0x06, 0x8a, 0x01, 0x76, 0x01, 0xfa, 0x00,\n  0x05, 0x0c, 0x76, 0x0b, 0xf1, 0xeb, 0xe4, 0xe6, 0xe3, 0x00, 0x3d, 0x13,\n  0x19, 0x0a, 0xc6, 0x01, 0x08, 0x00, 0x41, 0xf5, 0x0e, 0xf7, 0x67, 0x04,\n  0xb3, 0x12, 0xa8, 0x05, 0x31, 0xec, 0x5f, 0xf0, 0x53, 0x02, 0x51, 0x0a,\n  0x6b, 0x04, 0x29, 0xff, 0x66, 0x09, 0xfa, 0x05, 0x69, 0xf2, 0x7e, 0xf3,\n  0xbb, 0xfd, 0x2f, 0x07, 0xd6, 0x08, 0xfc, 0x09, 0xc0, 0xfe, 0x76, 0xf2,\n  0x4b, 0xf7, 0xbf, 0x02, 0x8f, 0x09, 0xbb, 0x03, 0x9d, 0xfc, 0x70, 0xf8,\n  0xba, 0xfb, 0x46, 0x05, 0x6f, 0x07, 0xca, 0x09, 0x7b, 0x05, 0x1e, 0xf2,\n  0xb1, 0xef, 0x87, 0xfe, 0x58, 0x07, 0x6f, 0x08, 0x8a, 0x05, 0x8d, 0xfc,\n  0x29, 0xf7, 0xe5, 0xf8, 0xc5, 0x03, 0xb9, 0x08, 0xa3, 0x04, 0x00, 0xff,\n  0xfd, 0xfb, 0x1d, 0xfd, 0x76, 0x00, 0x64, 0x01, 0x3f, 0x01, 0xbb, 0x01,\n  0x70, 0x0d, 0x3e, 0x09, 0xa6, 0xe5, 0x53, 0xe4, 0x5a, 0x05, 0x51, 0x19,\n  0x1f, 0x11, 0xee, 0xf7, 0x14, 0xf0, 0xce, 0xf6, 0xa5, 0x02, 0x4a, 0x08,\n  0xc0, 0x0d, 0xf6, 0x09, 0xd5, 0xef, 0x55, 0xea, 0x6b, 0x05, 0xcd, 0x13,\n  0x3f, 0x02, 0x88, 0xf5, 0xc1, 0xf4, 0xf5, 0x00, 0xa1, 0x09, 0xfe, 0x0a,\n  0x87, 0x08, 0x6e, 0xf4, 0x82, 0xee, 0xac, 0xfa, 0xbf, 0x06, 0xff, 0x07,\n  0x38, 0x0b, 0xba, 0x08, 0x93, 0xf2, 0x63, 0xef, 0x01, 0xfb, 0x5f, 0x07,\n  0x41, 0x0b, 0x2f, 0x0e, 0x1b, 0xfd, 0xc7, 0xed, 0x30, 0xf3, 0x59, 0x03,\n  0x0a, 0x0d, 0x7f, 0x06, 0x46, 0x04, 0x88, 0x06, 0x47, 0xf4, 0xc5, 0xea,\n  0x08, 0xff, 0x01, 0x0f, 0x65, 0x0a, 0x79, 0xfe, 0xb0, 0x08, 0xb9, 0xfc,\n  0x97, 0xeb, 0x9c, 0xf4, 0x66, 0x05, 0xd7, 0x0d, 0xc9, 0x08, 0x75, 0x08,\n  0x92, 0xfb, 0x81, 0xe9, 0x81, 0xf5, 0x7d, 0x0a, 0x24, 0x14, 0x9c, 0x0e,\n  0x79, 0xf1, 0x5e, 0xe9, 0x8a, 0xf8, 0x80, 0x0e, 0x69, 0x11, 0xe5, 0xfe,\n  0xd8, 0xf2, 0xf1, 0xf6, 0x83, 0x03, 0x0a, 0x09, 0xf3, 0x01, 0xf2, 0x08,\n  0x31, 0x03, 0x84, 0xef, 0x49, 0xf4, 0xdf, 0xfe, 0x0b, 0x07, 0x8e, 0x07,\n  0xab, 0x02, 0xa0, 0xfe, 0x4e, 0x01, 0x7d, 0x0a, 0xfa, 0x00, 0x59, 0xf3,\n  0x7e, 0xf3, 0xb9, 0xfc, 0xaf, 0x05, 0x8a, 0x06, 0xac, 0x04, 0x12, 0x06,\n  0xb3, 0x00, 0x70, 0xf5, 0x42, 0xf8, 0x73, 0x01, 0xa7, 0x06, 0x6c, 0x04,\n  0xd6, 0xfe, 0x19, 0xfc, 0x05, 0xf9, 0x7e, 0xff, 0xbc, 0x05, 0xa2, 0x11,\n  0x1a, 0x06, 0xfe, 0xeb, 0x4d, 0xed, 0xd0, 0xfe, 0x5a, 0x0e, 0xd5, 0x09,\n  0xaa, 0xff, 0xac, 0xfe, 0x4f, 0x09, 0x5d, 0x03, 0x4d, 0xe8, 0x63, 0xef,\n  0x6a, 0x09, 0xb1, 0x1a, 0x2f, 0x0e, 0x93, 0xec, 0xf8, 0xe6, 0x81, 0xfb,\n  0x7d, 0x10, 0x88, 0x0c, 0x73, 0x00, 0xab, 0x02, 0x5a, 0xff, 0xe1, 0xef,\n  0x59, 0xf9, 0x6f, 0x09, 0xf2, 0x14, 0x1f, 0x07, 0xf4, 0xe4, 0x4e, 0xe9,\n  0x31, 0x09, 0x9f, 0x13, 0x71, 0x11, 0xe3, 0xff, 0x8a, 0xe9, 0x64, 0xf0,\n  0x43, 0x02, 0xe1, 0x0b, 0x18, 0x07, 0x37, 0x01, 0x49, 0x0a, 0xae, 0xfe,\n  0xa1, 0xea, 0x22, 0xf3, 0xcf, 0x08, 0x9f, 0x0e, 0x2f, 0x04, 0x47, 0xfc,\n  0xef, 0x00, 0x54, 0x01, 0xb4, 0xf7, 0xb1, 0xfb, 0x2e, 0x08, 0xff, 0x14,\n  0x91, 0xfa, 0x66, 0xe5, 0xb7, 0xf2, 0x43, 0x07, 0x5e, 0x0d, 0xff, 0x0e,\n  0x9b, 0x07, 0xa8, 0xf0, 0x4a, 0xed, 0x71, 0xfb, 0x5c, 0x0c, 0x24, 0x0b,\n  0x4c, 0x01, 0xbd, 0x03, 0x89, 0x00, 0xa8, 0xef, 0x1b, 0xf7, 0xf7, 0x07,\n  0x12, 0x0b, 0x5e, 0x07, 0x4f, 0x05, 0xc1, 0xef, 0xa8, 0xec, 0x15, 0x02,\n  0xe9, 0x18, 0x2a, 0x14, 0x38, 0xed, 0x5e, 0xe2, 0xa5, 0xfa, 0x72, 0x11,\n  0x3e, 0x13, 0xd0, 0x0d, 0x14, 0xf0, 0x4a, 0xe4, 0x35, 0xfc, 0x24, 0x11,\n  0x57, 0x0c, 0x42, 0xff, 0xce, 0xff, 0x33, 0xfd, 0xe9, 0xf6, 0x39, 0xfe,\n  0x6f, 0x05, 0x7c, 0x04, 0xff, 0x03, 0x16, 0x12, 0xa6, 0xf5, 0x85, 0xd9,\n  0x10, 0xfa, 0x08, 0x18, 0xd8, 0x0e, 0xdf, 0x0d, 0xa1, 0xff, 0x7a, 0xe1,\n  0x54, 0xec, 0x87, 0x09, 0xed, 0x14, 0x64, 0x06, 0xd7, 0x0a, 0x13, 0xfd,\n  0x8c, 0xe4, 0xfe, 0xf0, 0x37, 0x0d, 0xfc, 0x0f, 0x14, 0x09, 0xac, 0x0b,\n  0xac, 0xef, 0xc8, 0xe3, 0xea, 0xfb, 0x44, 0x12, 0xc7, 0x0d, 0x08, 0xff,\n  0xc5, 0xff, 0xc5, 0xfd, 0x39, 0xf6, 0xa7, 0xfc, 0xea, 0x06, 0xcc, 0x04,\n  0xde, 0x12, 0xef, 0x03, 0xe0, 0xd9, 0x1e, 0xea, 0x3f, 0x11, 0xba, 0x17,\n  0xb3, 0x11, 0x2d, 0xfa, 0xa4, 0xe0, 0x96, 0xf3, 0xee, 0x0e, 0x5c, 0x10,\n  0x0a, 0x07, 0xb0, 0x05, 0x56, 0xf4, 0xdc, 0xe8, 0xa2, 0xfb, 0x8f, 0x0f,\n  0x95, 0x15, 0xdd, 0xff, 0xea, 0xec, 0xef, 0xf1, 0xd8, 0x01, 0x59, 0x0c,\n  0x32, 0x06, 0xd4, 0xff, 0x9b, 0xfc, 0x3e, 0x0a, 0x73, 0x07, 0x96, 0xe8,\n  0x1a, 0xee, 0xcc, 0x0f, 0xde, 0x1d, 0xbd, 0xfb, 0x4e, 0xe4, 0xf9, 0xf0,\n  0x3c, 0x0b, 0x00, 0x11, 0xe3, 0x04, 0x8f, 0x05, 0x9e, 0x00, 0x5c, 0xeb,\n  0xa4, 0xf0, 0x35, 0x09, 0x5e, 0x10, 0x2d, 0x0e, 0x62, 0xff, 0x24, 0xeb,\n  0x84, 0xf1, 0x9d, 0x03, 0x9d, 0x0e, 0x1f, 0x0a, 0x7f, 0xfc, 0x59, 0xf6,\n  0x10, 0xfb, 0x0e, 0xff, 0xb8, 0x06, 0x30, 0x0b, 0x67, 0xfd, 0x4a, 0xf5,\n  0x17, 0xf6, 0x52, 0x04, 0xa1, 0x08, 0xcc, 0x0c, 0x6a, 0x0a, 0xda, 0xee,\n  0x72, 0xec, 0x69, 0xfb, 0xda, 0x08, 0x61, 0x0a, 0xa5, 0x03, 0xc4, 0x01,\n  0xef, 0x04, 0x65, 0xfb, 0x71, 0xf1, 0xc9, 0xfa, 0x68, 0x09, 0x97, 0x0b,\n  0xc1, 0xfd, 0x29, 0xf5, 0xa2, 0xfe, 0xdf, 0x04, 0x77, 0x0d, 0x19, 0x0a,\n  0xbd, 0xed, 0x4b, 0xec, 0x24, 0xfe, 0xc9, 0x0a, 0x4d, 0x0a, 0xe3, 0x07,\n  0x3f, 0xfe, 0x60, 0xf3, 0x6b, 0xfc, 0x7a, 0x04, 0x97, 0x03, 0xec, 0xff,\n  0x85, 0xfd, 0xdf, 0xfd, 0x29, 0x03, 0xe7, 0x05, 0x42, 0xff, 0x81, 0xf8,\n  0x1a, 0xf9, 0xe6, 0x00, 0x31, 0x0d, 0x85, 0x0d, 0xdc, 0xf6, 0x4c, 0xf0,\n  0x25, 0xfb, 0x26, 0x06, 0x06, 0x05, 0x67, 0xfd, 0xd2, 0xfe, 0x5b, 0x03,\n  0x4d, 0x03, 0x8d, 0x02, 0xa2, 0x01, 0x0d, 0xfa, 0x3e, 0xf9, 0x45, 0x01,\n  0x80, 0x05, 0x82, 0x05, 0x7c, 0x04, 0x5c, 0xfa, 0x30, 0xf0, 0x22, 0xfe,\n  0x86, 0x09, 0xe4, 0x16, 0xc2, 0x07, 0xfb, 0xe1, 0x12, 0xe8, 0xc7, 0x02,\n  0x20, 0x14, 0x74, 0x09, 0xb1, 0x03, 0x7f, 0x0a, 0x46, 0xf4, 0xdc, 0xe8,\n  0xb5, 0xf8, 0x28, 0x0d, 0xb7, 0x0d, 0xb5, 0x03, 0xb7, 0x07, 0x9b, 0xfc,\n  0x47, 0xe9, 0x50, 0xfa, 0x0f, 0x0d, 0x73, 0x07, 0xd8, 0xfb, 0x39, 0xfa,\n  0x3e, 0x00, 0x89, 0x02, 0xe2, 0x00, 0x8f, 0x06, 0xec, 0x0c, 0xf1, 0xf6,\n  0x16, 0xed, 0x32, 0xf9, 0x5f, 0x07, 0xd5, 0x0f, 0xcb, 0x03, 0x62, 0xf8,\n  0x22, 0xf6, 0x65, 0xfa, 0xb2, 0x05, 0x8a, 0x08, 0x85, 0x02, 0xd9, 0xfd,\n  0x23, 0xff, 0x5c, 0xff, 0xd0, 0xfe, 0x1c, 0x00, 0xdc, 0x00, 0x7d, 0x00,\n  0x53, 0x00, 0x2c, 0x00, 0xa6, 0xfe, 0xe1, 0xfe, 0x52, 0x00, 0xbe, 0x00,\n  0xa9, 0x00, 0xec, 0xff, 0x7e, 0xff, 0x9c, 0xff, 0x3d, 0x00, 0xf8, 0xff,\n  0x26, 0x00, 0x16, 0x00, 0x7f, 0x0a, 0x15, 0x0e, 0x47, 0xed, 0x10, 0xe0,\n  0xe6, 0xff, 0xe2, 0x15, 0x7f, 0x0d, 0xe9, 0xfc, 0xbb, 0x03, 0xab, 0x04,\n  0xc2, 0xef, 0x69, 0xf2, 0x77, 0x02, 0xc7, 0x0a, 0xf8, 0x05, 0x96, 0xfb,\n  0x40, 0xfa, 0x75, 0x02, 0xc6, 0x08, 0x49, 0x0a, 0x59, 0xfb, 0x27, 0xef,\n  0xd0, 0xf8, 0x0e, 0x07, 0xe0, 0x08, 0xbe, 0x01, 0x05, 0xfd, 0xd5, 0xfa,\n  0x8d, 0xfb, 0xf4, 0x01, 0x07, 0x06, 0x11, 0x03, 0x77, 0xff, 0x8d, 0x02,\n  0x78, 0x0b, 0x3e, 0xff, 0xb7, 0xeb, 0x81, 0xf2, 0x25, 0x03, 0xed, 0x09,\n  0xe8, 0x06, 0x3d, 0x03, 0xf7, 0x06, 0xe1, 0xfe, 0x57, 0xf2, 0x67, 0xf7,\n  0x2f, 0x00, 0xc3, 0x04, 0xcf, 0x05, 0xaf, 0x02, 0xa2, 0x01, 0xd1, 0x02,\n  0xf8, 0xff, 0x4f, 0xf7, 0x49, 0xf9, 0x39, 0x02, 0x87, 0x0e, 0x31, 0x12,\n  0x31, 0xf0, 0x4c, 0xe5, 0x78, 0xf8, 0xe2, 0x0c, 0x14, 0x0f, 0x9d, 0x0a,\n  0x21, 0xff, 0xca, 0xf0, 0xda, 0xf5, 0x0a, 0x01, 0xbf, 0x08, 0x35, 0x09,\n  0x7b, 0x01, 0x50, 0xf6, 0x4a, 0xf6, 0xb9, 0xff, 0xc0, 0x0e, 0xf7, 0x0d,\n  0x80, 0xf6, 0x46, 0xed, 0x96, 0xf8, 0x57, 0x0a, 0x4b, 0x15, 0x6b, 0x04,\n  0x7b, 0xed, 0x17, 0xef, 0xae, 0x01, 0x1f, 0x0e, 0x64, 0x08, 0x08, 0x08,\n  0xeb, 0x00, 0x9c, 0xec, 0xd8, 0xef, 0x4b, 0x05, 0x72, 0x10, 0xe2, 0x0d,\n  0x0b, 0xfc, 0xdf, 0xef, 0xee, 0xf7, 0x87, 0x03, 0xce, 0x09, 0xce, 0x04,\n  0x9b, 0xfc, 0x55, 0xfa, 0x23, 0x00, 0x0d, 0x03, 0x89, 0xff, 0x58, 0xfa,\n  0x8a, 0xfe, 0x8a, 0x05, 0x55, 0x0e, 0xec, 0x05, 0x87, 0xee, 0x51, 0xf0,\n  0x72, 0xfe, 0x9f, 0x0e, 0xdf, 0x0e, 0x5f, 0xfc, 0x72, 0xf2, 0x3f, 0xf5,\n  0x47, 0x03, 0x2f, 0x0b, 0xe3, 0x04, 0x41, 0x00, 0xaf, 0x02, 0x15, 0xfb,\n  0x68, 0xf4, 0x49, 0x01, 0xb7, 0x05, 0x72, 0x11, 0x8f, 0x0c, 0x42, 0xe3,\n  0xe6, 0xe1, 0x77, 0x07, 0x2c, 0x16, 0xab, 0x11, 0x09, 0x08, 0x2f, 0xea,\n  0x00, 0xe7, 0x21, 0x01, 0x39, 0x12, 0xfa, 0x09, 0x76, 0x01, 0x56, 0x04,\n  0xe1, 0xf6, 0x0b, 0xee, 0x6e, 0xff, 0x94, 0x0b, 0x27, 0x08, 0x0f, 0xff,\n  0xe5, 0x0d, 0xad, 0x02, 0xcd, 0xdf, 0x8e, 0xec, 0xf6, 0x0e, 0xcf, 0x14,\n  0x4b, 0x12, 0xe9, 0xfc, 0x96, 0xe3, 0x65, 0xef, 0xe7, 0x08, 0xa8, 0x12,\n  0xc5, 0x03, 0xe7, 0x08, 0x94, 0x04, 0xa6, 0xe5, 0xc6, 0xec, 0xdd, 0x09,\n  0xcc, 0x12, 0xca, 0x04, 0x14, 0x00, 0x8c, 0x00, 0xc0, 0xf3, 0x73, 0xf7,\n  0xb4, 0x05, 0xaa, 0x08, 0x2b, 0x04, 0xc7, 0x04, 0x14, 0xfa, 0xf1, 0xf1,\n  0x73, 0xfc, 0x34, 0x13, 0xbe, 0x10, 0xa7, 0xec, 0x4b, 0xe6, 0x83, 0x00,\n  0xf4, 0x18, 0x7c, 0x0b, 0xa3, 0xf6, 0xf2, 0xf3, 0x2f, 0xfc, 0xcc, 0x01,\n  0x7c, 0x04, 0xb9, 0x03, 0x8b, 0x06, 0x7d, 0x0a, 0x94, 0xf6, 0x53, 0xed,\n  0x7b, 0xf7, 0x48, 0x08, 0xf1, 0x0c, 0x63, 0x03, 0xab, 0xfe, 0x1d, 0x02,\n  0xe1, 0xfa, 0x59, 0xf7, 0xc9, 0x01, 0x8c, 0x05, 0xac, 0x08, 0x6e, 0x12,\n  0x13, 0xf0, 0xf3, 0xda, 0x13, 0xfe, 0xcb, 0x16, 0x6d, 0x0e, 0x96, 0xff,\n  0x28, 0x09, 0x48, 0xf9, 0x3a, 0xe2, 0x2a, 0xfb, 0x24, 0x11, 0xf1, 0x18,\n  0xfc, 0x04, 0xd3, 0xe8, 0xb8, 0xeb, 0xaf, 0x00, 0xe1, 0x0e, 0x9c, 0x0c,\n  0x0d, 0x0b, 0xe7, 0xf6, 0x54, 0xec, 0xcc, 0xf5, 0xab, 0x07, 0x14, 0x0d,\n  0x9a, 0x07, 0xc0, 0x0a, 0x01, 0xf5, 0xe5, 0xe4, 0x9a, 0xfe, 0xae, 0x0f,\n  0xa0, 0x10, 0xd7, 0x0c, 0x3a, 0xf0, 0x5d, 0xe7, 0x3e, 0xf8, 0x8f, 0x0b,\n  0x5d, 0x0e, 0xf9, 0x02, 0x91, 0x00, 0xa1, 0x03, 0x67, 0xf7, 0xfe, 0xf1,\n  0x84, 0x01, 0x12, 0x0a, 0x64, 0x0b, 0x9a, 0x0c, 0xdc, 0xf0, 0x50, 0xe2,\n  0xf3, 0xfc, 0x8d, 0x12, 0xac, 0x10, 0xd6, 0x0b, 0x09, 0xf5, 0x8b, 0xe8,\n  0x21, 0xf7, 0x60, 0x0a, 0x87, 0x0d, 0x05, 0x03, 0xfe, 0xfb, 0x27, 0x04,\n  0x50, 0x09, 0xbe, 0xf4, 0xc5, 0xef, 0x73, 0xfd, 0x18, 0x0a, 0x3c, 0x09,\n  0x49, 0x00, 0xc2, 0xf9, 0x4e, 0xf8, 0x47, 0x00, 0x3b, 0x07, 0x3c, 0x07,\n  0xd4, 0x09, 0xc7, 0xfd, 0x48, 0xee, 0xd9, 0xf5, 0xdb, 0x03, 0x94, 0x07,\n  0xb4, 0xff, 0xe8, 0x00, 0xf5, 0x00, 0xbc, 0x0d, 0x17, 0x09, 0x82, 0xea,\n  0x62, 0xe9, 0xb9, 0x03, 0xd1, 0x11, 0x19, 0x10, 0xc8, 0x06, 0x25, 0xea,\n  0x61, 0xea, 0xe3, 0x04, 0xe9, 0x10, 0xdf, 0x09, 0xbe, 0x07, 0xad, 0xfa,\n  0xf8, 0xe9, 0xca, 0xf4, 0xa8, 0x08, 0x2c, 0x0d, 0x6f, 0x05, 0xf8, 0xff,\n  0x63, 0x05, 0xe2, 0xfe, 0x27, 0xf0, 0xef, 0xf6, 0x28, 0x04, 0xa0, 0x09,\n  0x06, 0x05, 0xe2, 0xfe, 0xb1, 0xf9, 0x2e, 0xfa, 0x2b, 0x02, 0xf4, 0x0e,\n  0x13, 0x06, 0x96, 0xf3, 0xb1, 0xf4, 0xd5, 0xfc, 0x05, 0x03, 0xdc, 0x07,\n  0x3b, 0x03, 0x44, 0x09, 0x3a, 0x09, 0x38, 0xec, 0xa4, 0xe9, 0x29, 0x03,\n  0x1f, 0x13, 0x14, 0x14, 0x4d, 0xfc, 0x14, 0xe6, 0xdf, 0xf2, 0xdd, 0x0a,\n  0x0a, 0x0f, 0x19, 0x09, 0x4b, 0x05, 0x23, 0xf2, 0xa7, 0xec, 0x5b, 0xfd,\n  0xbe, 0x0d, 0x93, 0x10, 0x4f, 0xfe, 0xd4, 0xf2, 0xe2, 0xf4, 0xc8, 0x00,\n  0x78, 0x0a, 0xe7, 0x0e, 0x0b, 0x05, 0xdb, 0xec, 0xe6, 0xed, 0x6f, 0x03,\n  0x0e, 0x10, 0x63, 0x05, 0x46, 0x08, 0xd0, 0x06, 0x6a, 0xe9, 0x28, 0xea,\n  0x8e, 0x04, 0x91, 0x12, 0x58, 0x09, 0x88, 0x07, 0xf0, 0xfe, 0xae, 0xe9,\n  0xc4, 0xf1, 0x82, 0x07, 0x4d, 0x0f, 0xaf, 0x03, 0xea, 0x08, 0xad, 0x03,\n  0x30, 0xec, 0x64, 0xee, 0xb8, 0x00, 0x07, 0x0f, 0x4f, 0x09, 0xbb, 0x00,\n  0xd6, 0x05, 0x4b, 0xfd, 0xca, 0xec, 0xc2, 0xf8, 0xd5, 0x11, 0x1d, 0x10,\n  0x5e, 0xef, 0x91, 0xef, 0xe6, 0x04, 0x6f, 0x15, 0xcc, 0x0c, 0x03, 0xef,\n  0xee, 0xec, 0xdd, 0xfb, 0x64, 0x07, 0xae, 0x08, 0xe7, 0x03, 0x45, 0x02,\n  0x47, 0x0a, 0xad, 0xfc, 0xa5, 0xec, 0x1f, 0xf4, 0x1f, 0x05, 0x67, 0x0d,\n  0x8c, 0x06, 0x5b, 0x04, 0xa6, 0x04, 0xc8, 0xef, 0x86, 0xed, 0x5b, 0x05,\n  0x04, 0x12, 0x72, 0x13, 0xe3, 0xf6, 0xe1, 0xe3, 0x45, 0xf8, 0x0e, 0x0d,\n  0x23, 0x11, 0x6f, 0x0d, 0x0b, 0xf5, 0xef, 0xea, 0x3c, 0xf8, 0x0f, 0x06,\n  0xf7, 0x0b, 0xcf, 0x03, 0xf7, 0xfd, 0xd5, 0xfb, 0x98, 0x09, 0x3e, 0x10,\n  0x8c, 0xf0, 0xd6, 0xe8, 0x8c, 0xfa, 0xdf, 0x08, 0x8e, 0x0b, 0x33, 0x03,\n  0x77, 0x03, 0xfa, 0x0a, 0xe1, 0xf6, 0x3f, 0xea, 0x81, 0xf8, 0xd5, 0x0b,\n  0x0f, 0x0d, 0x4d, 0x03, 0x24, 0x05, 0xcd, 0xfe, 0x7e, 0xed, 0x9c, 0xf4,\n  0x1a, 0x09, 0x94, 0x0e, 0xbc, 0x0c, 0x9b, 0xfc, 0xf4, 0xeb, 0xe0, 0xf4,\n  0x23, 0x07, 0xc8, 0x0b, 0x49, 0x03, 0xbe, 0xfa, 0x34, 0xf7, 0x91, 0x00,\n  0x98, 0x06, 0x73, 0x05, 0x97, 0xfd, 0x18, 0x08, 0xae, 0x09, 0x9a, 0xee,\n  0xb4, 0xec, 0x4f, 0xfc, 0xb8, 0x0c, 0xe7, 0x0b, 0xcb, 0x02, 0x2f, 0x0a,\n  0xe5, 0xfb, 0x25, 0xe7, 0x00, 0xf6, 0x42, 0x0d, 0x3f, 0x0e, 0xb1, 0x08,\n  0xdb, 0x03, 0x85, 0xea, 0x94, 0xed, 0x1d, 0x09, 0xef, 0x1b, 0x4e, 0x06,\n  0x22, 0xea, 0x5a, 0xec, 0xc9, 0x02, 0x4f, 0x10, 0x55, 0x08, 0x9f, 0x0c,\n  0xf6, 0xfa, 0x36, 0xe5, 0xf8, 0xf3, 0x0a, 0x0d, 0x8f, 0x0f, 0x25, 0x02,\n  0xfd, 0xfa, 0xdd, 0xfc, 0xe0, 0x00, 0x0a, 0x01, 0x6e, 0x00, 0x65, 0x00,\n  0xdf, 0x00, 0xe7, 0xff, 0x9f, 0xfe, 0xa9, 0xfe, 0x1d, 0x00, 0x1b, 0xfe,\n  0xb5, 0x00, 0x10, 0x12, 0x61, 0xfe, 0x30, 0xe7, 0x3c, 0xf2, 0x5f, 0x06,\n  0x4c, 0x11, 0x76, 0x05, 0x13, 0x07, 0x8f, 0x06, 0xe8, 0xeb, 0x70, 0xeb,\n  0x6c, 0x04, 0x53, 0x11, 0xeb, 0x07, 0xc6, 0x05, 0x11, 0x02, 0x83, 0xec,\n  0x80, 0xee, 0x0b, 0x07, 0x6b, 0x10, 0x5d, 0x0e, 0xdc, 0x00, 0xdf, 0xec,\n  0x06, 0xf0, 0xdd, 0x00, 0xad, 0x12, 0xef, 0x0d, 0xad, 0xf8, 0x4f, 0xf1,\n  0xe8, 0xf8, 0xcd, 0x03, 0xa0, 0x0d, 0x84, 0x0b, 0x89, 0xf6, 0x48, 0xef,\n  0x2f, 0xfc, 0x77, 0x09, 0x06, 0x08, 0xfc, 0x01, 0x36, 0x09, 0xab, 0xfd,\n  0x28, 0xee, 0x89, 0xf6, 0xad, 0x03, 0xdd, 0x09, 0x86, 0x09, 0x4f, 0x02,\n  0x46, 0xf7, 0x88, 0xf8, 0xa9, 0xfe, 0x86, 0x00, 0x6b, 0x02, 0xb6, 0x04,\n  0x9d, 0x0e, 0x65, 0x00, 0x20, 0xea, 0x49, 0xf1, 0x05, 0x0a, 0x48, 0x0d,\n  0xfd, 0x0b, 0x08, 0x09, 0x43, 0xeb, 0xa1, 0xe7, 0x66, 0x01, 0x69, 0x12,\n  0x96, 0x09, 0x91, 0x00, 0x34, 0x04, 0xf4, 0xf6, 0x53, 0xef, 0x52, 0x00,\n  0xcc, 0x0b, 0x71, 0x08, 0x7b, 0x07, 0x25, 0xfe, 0x9e, 0xed, 0xa9, 0xf2,\n  0x93, 0x07, 0xef, 0x0a, 0x4f, 0x0d, 0x9a, 0x0a, 0x3e, 0xed, 0x82, 0xe8,\n  0x19, 0xfc, 0xd1, 0x0f, 0xc2, 0x0c, 0x49, 0x01, 0xc1, 0xfb, 0xf9, 0xfb,\n  0x97, 0xfd, 0x27, 0x01, 0x45, 0x02, 0xa7, 0x06, 0x1f, 0x12, 0x2c, 0xf6,\n  0x11, 0xe2, 0x1c, 0xf4, 0xc5, 0x0a, 0xbb, 0x11, 0x23, 0x05, 0x66, 0x08,\n  0x7a, 0xff, 0xc0, 0xec, 0xe6, 0xf0, 0x1e, 0x05, 0x67, 0x0e, 0xe8, 0x09,\n  0xe8, 0x0a, 0x38, 0xf1, 0xdc, 0xe6, 0x9a, 0x01, 0x0e, 0x10, 0xac, 0x0d,\n  0xf6, 0x09, 0x6b, 0xf3, 0x3e, 0xe5, 0xa1, 0xfa, 0x31, 0x0f, 0xd9, 0x10,\n  0x8f, 0x0d, 0x6e, 0xf4, 0xbe, 0xe8, 0xe6, 0xf6, 0x79, 0x0a, 0x56, 0x0d,\n  0xfb, 0x06, 0x41, 0xff, 0x50, 0xf4, 0x59, 0xf9, 0x66, 0x06, 0xa1, 0x0c,\n  0x51, 0xff, 0xcb, 0xf2, 0x21, 0xff, 0xcc, 0x0c, 0x5e, 0xfe, 0x8b, 0xf4,\n  0x55, 0xfa, 0xe4, 0x01, 0xf7, 0x05, 0xfd, 0x03, 0xe2, 0x00, 0x9b, 0xff,\n  0x58, 0x00, 0x73, 0x00, 0xe6, 0xff, 0x33, 0xff, 0xe1, 0xff, 0xfe, 0x00,\n  0xc7, 0x01, 0x2d, 0xff, 0x85, 0xf9, 0xb4, 0xfb, 0x27, 0x02, 0x92, 0x04,\n  0xdb, 0x02, 0x8c, 0xff, 0x7f, 0xfe, 0xea, 0xfe, 0x43, 0x00, 0x26, 0xff,\n  0x4f, 0xfd, 0x60, 0xfe, 0x15, 0x08, 0x67, 0x0c, 0xec, 0xf9, 0xce, 0xf0,\n  0x28, 0xf7, 0x27, 0x05, 0x0f, 0x0b, 0x8b, 0x04, 0xe7, 0x04, 0x0a, 0x05,\n  0x9e, 0xf1, 0xb0, 0xed, 0x15, 0x03, 0xc9, 0x0e, 0x3d, 0x0e, 0xc1, 0x03,\n  0x38, 0xed, 0x7f, 0xec, 0x41, 0x03, 0x5b, 0x11, 0x3a, 0x13, 0x72, 0xfb,\n  0xe0, 0xe7, 0x36, 0xf5, 0x5e, 0x11, 0xae, 0x0e, 0x59, 0xfa, 0x54, 0xf2,\n  0xe8, 0xf8, 0x0b, 0x07, 0x97, 0x09, 0xab, 0x03, 0xcf, 0xfc, 0xb4, 0xf9,\n  0xda, 0xff, 0x97, 0x02, 0x7f, 0x11, 0x92, 0x07, 0x4d, 0xe5, 0x6f, 0xe9,\n  0x1d, 0x03, 0x6e, 0x12, 0x15, 0x0e, 0x88, 0x06, 0x14, 0xf5, 0xac, 0xf0,\n  0xd8, 0xfb, 0xb2, 0x05, 0xa4, 0x06, 0xb5, 0x01, 0x34, 0x0b, 0xbb, 0x01,\n  0x11, 0xf0, 0x93, 0xf2, 0x5c, 0x00, 0x1d, 0x0c, 0x77, 0x07, 0xfb, 0x02,\n  0x7f, 0x07, 0xaa, 0xf9, 0x11, 0xea, 0x91, 0xfa, 0xef, 0x0c, 0x17, 0x0f,\n  0x52, 0x0a, 0x7c, 0xf6, 0xde, 0xec, 0x39, 0xf9, 0xd1, 0x03, 0x50, 0x08,\n  0x8c, 0x05, 0xf3, 0x01, 0x42, 0x0d, 0x91, 0xfb, 0x61, 0xe5, 0x40, 0xf8,\n  0xb7, 0x0e, 0xcf, 0x0d, 0xff, 0x04, 0x91, 0xfa, 0x0e, 0xf3, 0x7d, 0xfc,\n  0xc7, 0x06, 0xa7, 0x06, 0x12, 0x05, 0x89, 0x02, 0x0e, 0xf7, 0x30, 0xf3,\n  0xc2, 0xff, 0x1d, 0x0a, 0xd4, 0x0c, 0xe5, 0x03, 0xb2, 0xf0, 0x61, 0xf1,\n  0x06, 0x01, 0x2a, 0x0a, 0xab, 0x07, 0xef, 0xff, 0xc0, 0xfb, 0xa2, 0xfb,\n  0x31, 0xfc, 0x70, 0x01, 0x04, 0x08, 0x80, 0x0c, 0x4e, 0xfe, 0x5c, 0xf0,\n  0xcf, 0xf6, 0x17, 0x00, 0x7c, 0x06, 0x73, 0x06, 0x6f, 0x03, 0xa6, 0x04,\n  0x04, 0x04, 0x7a, 0xf8, 0xd9, 0xf2, 0x6d, 0xfc, 0xe7, 0x05, 0xcb, 0x06,\n  0xea, 0x01, 0xe9, 0xfd, 0x5d, 0xfd, 0x89, 0xff, 0x0c, 0x01, 0x63, 0x01,\n  0xf0, 0xfe, 0x13, 0xfc, 0xa9, 0xfd, 0x10, 0x0c, 0x2e, 0x08, 0x99, 0xf5,\n  0xd0, 0xf1, 0x37, 0xfd, 0x80, 0x09, 0x67, 0x0c, 0x19, 0x0a, 0x0b, 0xf6,\n  0x76, 0xee, 0x1e, 0xfa, 0x02, 0x07, 0x07, 0x0c, 0x57, 0x08, 0xa5, 0xfa,\n  0x18, 0xf5, 0x0d, 0xfa, 0xf8, 0xff, 0x2f, 0x06, 0xb2, 0x05, 0xc7, 0x03,\n  0x25, 0x08, 0x75, 0xfe, 0xe8, 0xeb, 0xbf, 0xf4, 0x2d, 0x08, 0xb7, 0x0e,\n  0x5f, 0x11, 0x75, 0xf9, 0x32, 0xea, 0xc4, 0xf6, 0x88, 0x04, 0x87, 0x08,\n  0x5b, 0x04, 0x7f, 0x00, 0x57, 0xff, 0xa3, 0x01, 0x24, 0x01, 0x05, 0xfd,\n  0x09, 0xfc, 0x76, 0x00, 0xa3, 0x03, 0xcb, 0x04, 0x8d, 0x02, 0x1b, 0xfc,\n  0xd1, 0xf6, 0x41, 0xf9, 0x1d, 0x03, 0x74, 0x0a, 0xf8, 0x12, 0x39, 0xfb,\n  0xc8, 0xe6, 0xfb, 0xf5, 0x06, 0x08, 0x4f, 0x0c, 0x98, 0xff, 0x69, 0xfb,\n  0xdd, 0xff, 0xda, 0x0c, 0x7f, 0x0a, 0xa1, 0xf0, 0xc4, 0xed, 0xb8, 0xfb,\n  0xf0, 0x0b, 0xfc, 0x08, 0x85, 0x0b, 0x60, 0x04, 0xef, 0xed, 0x3b, 0xee,\n  0x48, 0xff, 0x1e, 0x0e, 0xff, 0x08, 0x47, 0xff, 0x29, 0xfd, 0xe2, 0x05,\n  0xc1, 0xfe, 0xec, 0xf2, 0xe5, 0xfb, 0xf4, 0x07, 0xce, 0x06, 0xb0, 0x11,\n  0x9e, 0xff, 0xd4, 0xde, 0x8c, 0xee, 0x93, 0x14, 0xff, 0x16, 0xd5, 0xfb,\n  0xec, 0xed, 0x16, 0xf9, 0x64, 0x0a, 0x05, 0x09, 0xf0, 0x04, 0x9e, 0x04,\n  0x17, 0xf6, 0x7f, 0xee, 0x39, 0xff, 0x20, 0x0c, 0xa7, 0x0c, 0x5f, 0x08,\n  0x02, 0xf5, 0x5e, 0xec, 0x39, 0xfb, 0x52, 0x0a, 0xea, 0x0b, 0xbe, 0x01,\n  0xd1, 0xf9, 0xf1, 0xfa, 0xfb, 0xfc, 0x32, 0xff, 0x8b, 0x03, 0x78, 0x05,\n  0x31, 0x01, 0xdd, 0x0c, 0x4f, 0x02, 0x47, 0xe4, 0xea, 0xf1, 0x07, 0x0d,\n  0xa0, 0x0f, 0xc3, 0x03, 0x0f, 0x0b, 0x82, 0xfa, 0xba, 0xe6, 0x27, 0xf3,\n  0x69, 0x0a, 0x7d, 0x10, 0xfb, 0x03, 0xa1, 0xfb, 0x57, 0xfc, 0x65, 0x00,\n  0xd6, 0x00, 0x73, 0x00, 0xbb, 0x00, 0x8e, 0x07, 0xb4, 0x08, 0xf2, 0xf0,\n  0x10, 0xeb, 0x0d, 0x00, 0x1f, 0x17, 0xad, 0x10, 0x61, 0xf1, 0x31, 0xeb,\n  0xe9, 0xf9, 0xa1, 0x0c, 0xdd, 0x0a, 0x2b, 0x05, 0xd8, 0x0a, 0xcf, 0xf5,\n  0x13, 0xe8, 0x3e, 0xf9, 0x11, 0x0e, 0xa9, 0x0c, 0x4e, 0x06, 0xef, 0x05,\n  0x5b, 0xf4, 0x47, 0xef, 0x67, 0xfc, 0x9c, 0x08, 0x0c, 0x09, 0x61, 0x00,\n  0x49, 0xf9, 0x5f, 0xfc, 0xb3, 0x03, 0x1d, 0x03, 0xdd, 0x00, 0x23, 0x00,\n  0xc3, 0x10, 0xdc, 0x00, 0x05, 0xe6, 0x32, 0xef, 0xdb, 0x06, 0x81, 0x11,\n  0x94, 0x08, 0xb7, 0x07, 0x55, 0xfa, 0xb1, 0xec, 0x83, 0xf6, 0x86, 0x07,\n  0x27, 0x0e, 0x9f, 0x0a, 0xf5, 0xfb, 0xc0, 0xed, 0x0e, 0xf7, 0xb6, 0x07,\n  0xf5, 0x12, 0x5c, 0x09, 0x61, 0xf1, 0x0e, 0xee, 0xfa, 0xfa, 0x82, 0x0c,\n  0xf8, 0x08, 0xe4, 0x08, 0xaa, 0x07, 0x31, 0xef, 0x11, 0xeb, 0xb7, 0xfe,\n  0xf0, 0x0e, 0xd7, 0x09, 0x2c, 0xff, 0x29, 0xfc, 0x1e, 0xff, 0xf6, 0xff,\n  0x4e, 0xff, 0x14, 0x00, 0x3c, 0x01, 0x8f, 0x02, 0x8d, 0x01, 0xf7, 0xfd,\n  0x01, 0xfc, 0xa7, 0x0a, 0x9d, 0x00, 0x4c, 0xee, 0xd3, 0xf7, 0x46, 0x05,\n  0x0f, 0x08, 0xf6, 0x01, 0x86, 0xff, 0xfb, 0xff, 0x75, 0x01, 0xcc, 0x05,\n  0x14, 0x0d, 0xca, 0xf3, 0x5d, 0xe6, 0x1f, 0xfd, 0xef, 0x15, 0xd4, 0x14,\n  0xfe, 0xf6, 0x5f, 0xea, 0x27, 0xf5, 0xb4, 0x09, 0x34, 0x0d, 0x6f, 0x03,\n  0x36, 0x01, 0xe1, 0xfb, 0x2c, 0xf6, 0xa1, 0xff, 0xb7, 0x05, 0xae, 0x09,\n  0xc6, 0x0e, 0x87, 0xf3, 0x71, 0xe1, 0x6d, 0xfa, 0x9d, 0x11, 0x5f, 0x13,\n  0xc0, 0x07, 0xb8, 0xf2, 0xd7, 0xef, 0xd7, 0xfc, 0xf0, 0x04, 0x5e, 0x05,\n  0x89, 0x03, 0x45, 0x02, 0x83, 0x07, 0xd5, 0xfe, 0x37, 0xed, 0x6d, 0xfa,\n  0x47, 0x0a, 0xc6, 0x0c, 0x3a, 0x0f, 0x71, 0xf5, 0x01, 0xe8, 0xb4, 0xf8,\n  0x2f, 0x09, 0x58, 0x0a, 0x31, 0x03, 0xe2, 0x01, 0x3b, 0xfc, 0xce, 0xf9,\n  0x94, 0xfb, 0x5a, 0x01, 0x48, 0x05, 0x75, 0x03, 0x5d, 0x02, 0x54, 0x0c,\n  0x09, 0xfd, 0xfe, 0xea, 0x91, 0xf4, 0x2c, 0x06, 0xc0, 0x0d, 0xb1, 0x0b,\n  0x1b, 0xff, 0xd2, 0xf2, 0x67, 0xf7, 0x87, 0x01, 0x9f, 0x05, 0x39, 0x02,\n  0x1b, 0xff, 0x12, 0x08, 0xbe, 0x07, 0xd6, 0xf4, 0x59, 0xf3, 0xf5, 0xfc,\n  0xeb, 0x05, 0x06, 0x08, 0x67, 0x09, 0x85, 0xfe, 0x80, 0xf4, 0x73, 0xf7,\n  0xe8, 0xfe, 0xd8, 0x07, 0x78, 0x07, 0x79, 0x01, 0xc1, 0xfb, 0x02, 0x07,\n  0xa7, 0x06, 0xa1, 0xf0, 0x5d, 0xef, 0x2b, 0x02, 0xc1, 0x0d, 0xb4, 0x0c,\n  0xa7, 0x04, 0x7a, 0xf3, 0x19, 0xf3, 0x32, 0xff, 0xbc, 0x06, 0x82, 0x04,\n  0x0f, 0xfd, 0x01, 0xfe, 0x59, 0x03, 0x3c, 0x09, 0x3b, 0x05, 0x09, 0xf5,\n  0x16, 0xf4, 0x09, 0xff, 0xfb, 0x03, 0x97, 0x02, 0xb7, 0x01, 0x83, 0x02,\n  0xe4, 0x01, 0x79, 0x0a, 0x07, 0x02, 0x28, 0xee, 0x68, 0xf3, 0x73, 0x02,\n  0x0f, 0x0b, 0xa0, 0x09, 0x9f, 0xfe, 0x40, 0xf5, 0xc2, 0xf9, 0xc8, 0x09,\n  0xbc, 0x0c, 0x51, 0xfb, 0x61, 0xf4, 0x96, 0xfb, 0x59, 0x03, 0xb1, 0x02,\n  0x83, 0x00, 0x82, 0x04, 0xe1, 0x08, 0xb5, 0xfb, 0x21, 0xf4, 0xd5, 0xfa,\n  0xfc, 0x04, 0xd6, 0x07, 0x1f, 0x01, 0xc4, 0xfb, 0x5c, 0xf9, 0xf7, 0xfe,\n  0xd4, 0x05, 0x28, 0x07, 0xca, 0x09, 0xf9, 0xfc, 0x40, 0xee, 0x18, 0xf6,\n  0x98, 0x09, 0xac, 0x0b, 0x1c, 0x00, 0x92, 0xf6, 0xb1, 0xf8, 0x03, 0x05,\n  0xcc, 0x07, 0x63, 0x02, 0x1b, 0x03, 0xfe, 0xff, 0x91, 0xf4, 0x12, 0xfa,\n  0x72, 0x05, 0xcb, 0x06, 0x25, 0x01, 0xe9, 0xfd, 0x33, 0xfe, 0x38, 0x00,\n  0x4a, 0x00, 0xa0, 0x00, 0x57, 0x02, 0x08, 0x0e, 0x7f, 0x04, 0x0f, 0xe6,\n  0xe1, 0xe8, 0xef, 0x04, 0x70, 0x13, 0x9f, 0x12, 0x77, 0x02, 0x2e, 0xef,\n  0xc0, 0xf3, 0xb2, 0xfe, 0x82, 0x05, 0x13, 0x06, 0x53, 0x03, 0xf2, 0xff,\n  0xaa, 0x0c, 0x73, 0x01, 0x83, 0xe7, 0x63, 0xf1, 0x6d, 0x0a, 0xa9, 0x0f,\n  0xc1, 0x0f, 0xaf, 0xfe, 0x6d, 0xe8, 0x6e, 0xf0, 0x6b, 0x06, 0xd1, 0x0f,\n  0x8c, 0x05, 0x3d, 0x02, 0x3f, 0x04, 0x1b, 0xf4, 0x51, 0xf1, 0xcf, 0x05,\n  0xbf, 0x0e, 0x8c, 0x00, 0x71, 0xf4, 0x38, 0xfa, 0x1f, 0x0a, 0x29, 0x09,\n  0xf8, 0xf9, 0xd0, 0xf5, 0xa5, 0xfa, 0x4f, 0x05, 0xe8, 0x07, 0xd7, 0x05,\n  0x6c, 0x04, 0x94, 0xf4, 0xe0, 0xf4, 0x69, 0x02, 0x40, 0x13, 0x41, 0x0c,\n  0x57, 0xec, 0x43, 0xea, 0x06, 0xff, 0xa9, 0x0f, 0x48, 0x0a, 0xcf, 0xfe,\n  0x3b, 0xfd, 0x5d, 0x08, 0xfa, 0xfe, 0x09, 0xf1, 0x7a, 0xf8, 0x16, 0x04,\n  0x0e, 0x09, 0x2f, 0x05, 0x2d, 0xfe, 0x41, 0xfb, 0x39, 0xfc, 0x57, 0xfd,\n  0x9f, 0x01, 0x9c, 0x05, 0x03, 0x04, 0x9f, 0x08, 0xb5, 0xfd, 0x5a, 0xec,\n  0x15, 0xfa, 0x3d, 0x13, 0x32, 0x0e, 0x2b, 0xf3, 0x36, 0xef, 0xea, 0xfb,\n  0x4f, 0x0a, 0x30, 0x07, 0xe7, 0x07, 0x7b, 0x05, 0xf0, 0xf2, 0xf1, 0xf1,\n  0x7f, 0xfc, 0x17, 0x09, 0xd6, 0x08, 0xaf, 0x06, 0xbb, 0x06, 0xf6, 0xf5,\n  0x46, 0xee, 0x05, 0xfc, 0x1c, 0x0a, 0x09, 0x0e, 0x1e, 0x05, 0xf2, 0xf5,\n  0x2c, 0xf5, 0x2b, 0xfe, 0xbb, 0x04, 0x8f, 0x06, 0x5b, 0x04, 0x03, 0xfd,\n  0x61, 0xfa, 0x63, 0xfd, 0x60, 0xfe, 0xdd, 0x00, 0x74, 0x05, 0xe7, 0x0d,\n  0x27, 0xff, 0x5c, 0xf0, 0x19, 0xf5, 0x7e, 0x01, 0x8f, 0x08, 0x68, 0x0c,\n  0x13, 0x07, 0x9a, 0xf3, 0x27, 0xf2, 0xd3, 0xfc, 0x3b, 0x07, 0x4c, 0x07,\n  0xc3, 0x01, 0xd0, 0xfe, 0x3d, 0xfd, 0x0b, 0x00, 0x4c, 0x01, 0xc6, 0x11,\n  0xb1, 0x02, 0x41, 0xe4, 0xac, 0xec, 0xd7, 0x07, 0xc1, 0x12, 0xcc, 0x08,\n  0xe6, 0x09, 0xd9, 0xf7, 0x30, 0xe9, 0xff, 0xf6, 0xb9, 0x0b, 0x46, 0x0d,\n  0xaf, 0x01, 0xce, 0xfb, 0xaf, 0xfe, 0x29, 0x02, 0xf7, 0xfe, 0x89, 0xfc,\n  0x93, 0xff, 0xdd, 0x02, 0xb3, 0x04, 0x95, 0x02, 0xfd, 0xfa, 0xec, 0xf2,\n  0x74, 0xff, 0xc7, 0x06, 0xc2, 0x0f, 0x3f, 0x10, 0x1d, 0xea, 0xfb, 0xe2,\n  0x9b, 0xfc, 0x56, 0x14, 0x9e, 0x0c, 0x28, 0x04, 0x37, 0x08, 0xc6, 0xf0,\n  0x15, 0xe9, 0xb9, 0x00, 0x6e, 0x10, 0xf2, 0x08, 0x75, 0x02, 0xd7, 0x03,\n  0x7c, 0xf3, 0xe1, 0xef, 0xcf, 0x02, 0x68, 0x0c, 0x6f, 0x09, 0xd3, 0x07,\n  0x34, 0xfa, 0x41, 0xea, 0xbf, 0xf6, 0xb2, 0x0a, 0xbd, 0x12, 0xab, 0x03,\n  0x34, 0xf4, 0x0c, 0xf4, 0x67, 0xfd, 0xf7, 0x06, 0x92, 0x0b, 0x8c, 0x0c,\n  0x67, 0xf7, 0x87, 0xef, 0xfc, 0xf8, 0xf3, 0x02, 0xdb, 0x07, 0x8c, 0x05,\n  0x5a, 0x01, 0x3c, 0x08, 0x77, 0x00, 0xaa, 0xea, 0xc7, 0xf5, 0xe2, 0x0a,\n  0x88, 0x0c, 0xab, 0x05, 0xa1, 0x03, 0x6f, 0xf6, 0x60, 0xef, 0x35, 0xfd,\n  0xec, 0x0a, 0x3c, 0x08, 0x36, 0x0c, 0xb1, 0x02, 0x61, 0xe5, 0x13, 0xf0,\n  0x07, 0x0a, 0x9f, 0x16, 0xad, 0x0c, 0x30, 0xf2, 0x13, 0xed, 0x8c, 0xfa,\n  0x30, 0x08, 0x1e, 0x0b, 0xb4, 0x04, 0x5a, 0xfb, 0xd4, 0xf9, 0x36, 0x05,\n  0xea, 0x0a, 0x6c, 0xf9, 0xd0, 0xf1, 0x4f, 0xfc, 0x5b, 0x05, 0x87, 0x08,\n  0x60, 0xff, 0xd1, 0xf9, 0x4b, 0xfe, 0xf9, 0x0d, 0x1e, 0x0b, 0x19, 0xf2,\n  0x3d, 0xee, 0xc1, 0xfa, 0x06, 0x0b, 0x7f, 0x0a, 0x70, 0x01, 0x07, 0xfd,\n  0x4b, 0xfe, 0x2a, 0xff, 0xbf, 0xff, 0x64, 0x00, 0x36, 0x01, 0xb7, 0x01,\n  0x9a, 0x01, 0xad, 0xfd, 0x0f, 0xfc, 0x93, 0xfd, 0xbb, 0x01, 0x27, 0x02,\n  0x08, 0x09, 0x3d, 0x11, 0x68, 0xf0, 0xce, 0xe1, 0x9e, 0xfb, 0xee, 0x10,\n  0x26, 0x0d, 0xf4, 0xfe, 0x20, 0xf9, 0xbf, 0xff, 0x26, 0x0d, 0x64, 0x01,\n  0x09, 0xf2, 0xeb, 0xf6, 0x4f, 0x01, 0xdf, 0x06, 0xaf, 0x07, 0xbb, 0x04,\n  0x09, 0xfa, 0xa2, 0xf8, 0xe7, 0xfd, 0x3f, 0x03, 0xc7, 0x00, 0x3d, 0xfe,\n  0x9e, 0xff, 0xe2, 0x09, 0xf7, 0x0a, 0x03, 0xf5, 0x3d, 0xee, 0xf6, 0xfa,\n  0xe7, 0x0a, 0xf2, 0x09, 0xef, 0x03, 0x57, 0x08, 0x98, 0xfa, 0x0e, 0xee,\n  0xe3, 0xf6, 0x15, 0x03, 0xfa, 0x0a, 0xcb, 0x05, 0xbd, 0x02, 0xa7, 0x0a,\n  0xac, 0xf7, 0xbc, 0xe8, 0x5d, 0xfb, 0x3d, 0x0e, 0xc6, 0x0b, 0x6d, 0x08,\n  0x98, 0x00, 0x4a, 0xed, 0xe9, 0xf0, 0x62, 0x04, 0xbd, 0x0e, 0xf1, 0x0c,\n  0xc7, 0xfd, 0xdb, 0xef, 0x8e, 0xf4, 0x8b, 0x05, 0xba, 0x0b, 0xaf, 0x04,\n  0x88, 0xfb, 0x5f, 0x03, 0x69, 0x0b, 0xe6, 0xf4, 0x3a, 0xef, 0x31, 0xfd,\n  0x36, 0x09, 0x03, 0x06, 0x4d, 0xfd, 0xa3, 0xfd, 0xb7, 0x05, 0x02, 0x0e,\n  0x6e, 0xfb, 0xb0, 0xee, 0xcd, 0xf9, 0xd6, 0x05, 0xaa, 0x07, 0xd9, 0x00,\n  0xa8, 0xfb, 0x9d, 0xfe, 0x76, 0x05, 0xf0, 0x07, 0x4f, 0xfd, 0x7a, 0xf5,\n  0x55, 0xfb, 0x0f, 0x03, 0x1e, 0x06, 0x5d, 0x02, 0x52, 0xfe, 0xb9, 0xfb,\n  0x76, 0xfa, 0x39, 0x01, 0x83, 0x06, 0x6b, 0x03, 0x6c, 0x01, 0x3f, 0x03,\n  0xbe, 0xf9, 0x7a, 0xf6, 0x46, 0x01, 0x08, 0x09, 0x39, 0x12, 0x86, 0xfb,\n  0xf1, 0xe0, 0xae, 0xf5, 0x16, 0x10, 0x3d, 0x10, 0x07, 0x03, 0x73, 0xf7,\n  0xd6, 0xf9, 0x49, 0x03, 0x67, 0x0a, 0xf9, 0xfb, 0x44, 0xf2, 0x07, 0xfd,\n  0x87, 0x0f, 0x5b, 0x14, 0x93, 0xf2, 0x67, 0xe8, 0x8f, 0xf7, 0xe7, 0x08,\n  0x1f, 0x0d, 0x2e, 0x04, 0x14, 0xff, 0xd7, 0x04, 0xc1, 0xfd, 0x43, 0xf0,\n  0x13, 0xfd, 0x57, 0x08, 0xb9, 0x0b, 0xc5, 0x0f, 0x0e, 0xf3, 0x5e, 0xe3,\n  0x95, 0xf9, 0x5e, 0x10, 0xdf, 0x0d, 0x35, 0x00, 0xd0, 0xfb, 0x83, 0x03,\n  0x38, 0x09, 0xf1, 0xf6, 0x62, 0xef, 0x81, 0xfc, 0x22, 0x07, 0xd3, 0x05,\n  0xe9, 0x02, 0xb2, 0x07, 0x4c, 0xfe, 0xb9, 0xf3, 0x25, 0xf8, 0xf4, 0x04,\n  0x74, 0x09, 0x05, 0x09, 0x9b, 0x03, 0x5b, 0xf3, 0x0b, 0xf3, 0x60, 0xff,\n  0xbf, 0x09, 0xc2, 0x07, 0x0d, 0xfc, 0x09, 0xf8, 0xd8, 0x04, 0xaf, 0x0a,\n  0xf2, 0xfb, 0xf8, 0xf3, 0x12, 0xfa, 0x2b, 0x07, 0x09, 0x08, 0xef, 0x09,\n  0xb5, 0x01, 0xc6, 0xf0, 0xf4, 0xf4, 0x89, 0x00, 0x24, 0x07, 0x98, 0x06,\n  0xd2, 0x06, 0x3c, 0xfe, 0x98, 0xf4, 0xeb, 0xf7, 0xcf, 0x09, 0x97, 0x0b,\n  0x3b, 0xfc, 0xd4, 0xf6, 0x3d, 0xf9, 0x01, 0x03, 0x56, 0x07, 0x01, 0x0a,\n  0x2f, 0x04, 0xc9, 0xf3, 0x89, 0xf3, 0x68, 0xff, 0x44, 0x0a, 0x86, 0x06,\n  0xa7, 0xfd, 0x34, 0xfb, 0xf7, 0xfd, 0x51, 0x01, 0xc6, 0xff, 0xa1, 0xfd,\n  0xaf, 0x00, 0xcd, 0x03, 0x54, 0x04, 0xd3, 0x04, 0x8c, 0xff, 0x66, 0xf5,\n  0x1e, 0xf8, 0x0b, 0x03, 0xcc, 0x0c, 0xbf, 0x05, 0x9b, 0xf5, 0x54, 0xf5,\n  0xbd, 0xfc, 0x1a, 0x06, 0x70, 0x07, 0xab, 0x02, 0x91, 0xfe, 0x7e, 0xfe,\n  0x99, 0x01, 0x67, 0x04, 0x28, 0x01, 0xb7, 0xf3, 0x77, 0xf7, 0xec, 0x05,\n  0xae, 0x14, 0x40, 0x06, 0xa3, 0xeb, 0xc1, 0xef, 0x74, 0x00, 0xc6, 0x0b,\n  0x64, 0x0a, 0x7b, 0x07, 0x46, 0xfa, 0x59, 0xf3, 0xca, 0xfa, 0x73, 0x03,\n  0xeb, 0x07, 0xf3, 0x05, 0x8d, 0xfd, 0x76, 0xf9, 0xef, 0xfc, 0x54, 0x01,\n  0x55, 0x03, 0xdf, 0x02, 0x77, 0xff, 0x7f, 0xfd, 0x25, 0xfd, 0xdd, 0xfc,\n  0x1d, 0x00, 0x2e, 0x05, 0x2d, 0x03, 0x3e, 0x09, 0x0b, 0x06, 0x96, 0xee,\n  0xf5, 0xec, 0x4f, 0x03, 0x97, 0x0d, 0x3e, 0x0d, 0x4a, 0x09, 0x10, 0xf2,\n  0xa2, 0xec, 0x0d, 0xfa, 0xda, 0x09, 0xe4, 0x0b, 0xfd, 0x01, 0x22, 0x01,\n  0xa9, 0x03, 0x98, 0xf6, 0xf2, 0xf2, 0xfb, 0x03, 0x66, 0x08, 0x22, 0x0c,\n  0x11, 0x0c, 0x7c, 0xec, 0x1a, 0xe5, 0x3e, 0x00, 0xc4, 0x12, 0xf6, 0x0b,\n  0x42, 0x0b, 0x85, 0xf9, 0x64, 0xe8, 0x46, 0xf5, 0x2a, 0x0a, 0x0c, 0x0e,\n  0x3a, 0x05, 0x7f, 0x07, 0x10, 0xfb, 0x50, 0xee, 0x39, 0xf6, 0xd7, 0x03,\n  0xec, 0x0a, 0xef, 0x05, 0xed, 0x02, 0xd2, 0x05, 0x8c, 0xf6, 0xb3, 0xed,\n  0x81, 0x02, 0x52, 0x16, 0xb2, 0x05, 0x40, 0xf1, 0xd6, 0xf4, 0x46, 0x00,\n  0x78, 0x05, 0x86, 0x04, 0x2e, 0x08, 0x2f, 0xff, 0x1e, 0xf6, 0xce, 0xf7,\n  0x8b, 0x01, 0x37, 0x08, 0x7f, 0x07, 0x09, 0x08, 0x0d, 0xfa, 0xd1, 0xef,\n  0x69, 0xf9, 0xba, 0x06, 0x22, 0x0c, 0x1f, 0x04, 0x09, 0xf8, 0xf7, 0xf4,\n  0x0d, 0x00, 0x3f, 0x08, 0xa6, 0x10, 0x76, 0x01, 0xdd, 0xed, 0x69, 0xf1,\n  0xd0, 0x00, 0xc5, 0x0c, 0x10, 0x07, 0x24, 0xff, 0x31, 0xfd, 0xa3, 0x03,\n  0x48, 0xff, 0xc6, 0xf8, 0x09, 0xfd, 0xab, 0x04, 0xa3, 0x03, 0x26, 0x0c,\n  0x59, 0x09, 0x61, 0xe7, 0x7e, 0xe7, 0x95, 0x03, 0x69, 0x14, 0x97, 0x08,\n  0x1d, 0x03, 0x70, 0x07, 0x96, 0xf2, 0xab, 0xed, 0x97, 0xfe, 0x4f, 0x0b,\n  0x12, 0x08, 0x1a, 0x00, 0x18, 0xfe, 0xb3, 0x00, 0x8c, 0x00, 0x84, 0xff,\n  0xf8, 0xff, 0xe5, 0xfa, 0x83, 0xfc, 0xe1, 0xfe, 0x67, 0x00, 0xe7, 0x03,\n  0x00, 0x04, 0x75, 0x01, 0xc4, 0x04, 0x77, 0x00, 0xa7, 0xf3, 0x31, 0xf9,\n  0x07, 0x06, 0x11, 0x08, 0xbf, 0x06, 0x5b, 0xfd, 0x6b, 0xf2, 0xdc, 0xfb,\n  0x1c, 0x07, 0xa7, 0x07, 0xee, 0x11, 0xa5, 0xfb, 0x30, 0xe3, 0xc9, 0xf1,\n  0x79, 0x09, 0x36, 0x11, 0x86, 0x04, 0x4d, 0xfc, 0x3b, 0xfc, 0x34, 0x0e,\n  0xab, 0x05, 0x31, 0xeb, 0xd1, 0xed, 0xeb, 0x02, 0x49, 0x10, 0xfa, 0x11,\n  0x73, 0x00, 0xda, 0xeb, 0x41, 0xf1, 0xe3, 0x03, 0x48, 0x0e, 0xac, 0x04,\n  0x4a, 0x04, 0xb7, 0x08, 0x88, 0xf1, 0xe4, 0xe9, 0xc9, 0xff, 0xb7, 0x0f,\n  0x74, 0x09, 0xa9, 0x00, 0xc7, 0x02, 0x79, 0xf9, 0x24, 0xf2, 0x26, 0xff,\n  0xcf, 0x09, 0x0f, 0x14, 0xce, 0xff, 0x83, 0xe6, 0xe3, 0xef, 0xed, 0x08,\n  0x01, 0x10, 0x40, 0x0f, 0x04, 0x00, 0x6f, 0xea, 0x3c, 0xf1, 0x36, 0x06,\n  0x69, 0x0e, 0x6f, 0x04, 0x3d, 0xfd, 0xc1, 0xfd, 0x14, 0x0d, 0x57, 0x02,\n  0xfb, 0xe8, 0x3e, 0xf0, 0xdf, 0x07, 0x0a, 0x10, 0xab, 0x05, 0x05, 0xfc,\n  0xc5, 0xfc, 0xdd, 0xff, 0xef, 0xff, 0xe4, 0xff, 0x8d, 0x08, 0xc4, 0x0b,\n  0x72, 0xf1, 0x0e, 0xeb, 0x47, 0xfd, 0xfc, 0x0b, 0x41, 0x0c, 0x17, 0x02,\n  0xf5, 0xf9, 0x46, 0xfa, 0xe8, 0xfe, 0xc5, 0x02, 0x4c, 0x04, 0xe8, 0x00,\n  0x47, 0xfc, 0x65, 0xf9, 0xe1, 0xfe, 0xef, 0x06, 0xdf, 0x03, 0xc6, 0x05,\n  0xb7, 0x02, 0xd9, 0xf0, 0xe3, 0xf6, 0x9e, 0x07, 0xb5, 0x08, 0x44, 0x0f,\n  0xac, 0x01, 0xfc, 0xe6, 0x7e, 0xed, 0x3b, 0x05, 0xf8, 0x10, 0xce, 0x07,\n  0xda, 0x00, 0x76, 0x04, 0x3d, 0xf9, 0x65, 0xef, 0x83, 0xfc, 0xc5, 0x0a,\n  0x93, 0x07, 0xdb, 0x05, 0x6e, 0x09, 0xb1, 0xf3, 0xad, 0xeb, 0xb1, 0xfd,\n  0x00, 0x0d, 0xf4, 0x08, 0x30, 0xfe, 0x9e, 0xf8, 0x67, 0xfc, 0x03, 0x05,\n  0xdb, 0x06, 0xed, 0xfd, 0x00, 0xf9, 0x07, 0x03, 0x34, 0x0d, 0xf1, 0xfc,\n  0xa2, 0xf1, 0x4d, 0xfa, 0xe3, 0x04, 0x18, 0x07, 0xdf, 0x00, 0x71, 0xf9,\n  0x85, 0xfe, 0x2b, 0x04, 0x7f, 0x07, 0x11, 0x0e, 0x73, 0xf6, 0x25, 0xe7,\n  0xee, 0xf9, 0xa8, 0x0e, 0xc8, 0x0b, 0x6d, 0x01, 0x87, 0xfc, 0x29, 0xfa,\n  0x1f, 0xfe, 0xe3, 0x02, 0x1f, 0x04, 0x6c, 0x09, 0xb5, 0x02, 0xf2, 0xef,\n  0xa4, 0xf6, 0x5b, 0x01, 0x0f, 0x04, 0xed, 0x02, 0x3b, 0xff, 0x4d, 0xff,\n  0x8d, 0x01, 0x84, 0x05, 0x1c, 0x0b, 0xb5, 0xfa, 0x31, 0xeb, 0xdd, 0xf9,\n  0xef, 0x0d, 0x2a, 0x14, 0x04, 0xfe, 0x78, 0xee, 0xc1, 0xf6, 0x9f, 0x03,\n  0x69, 0x08, 0x3b, 0x04, 0xcf, 0xfe, 0xb1, 0xfc, 0x31, 0xfe, 0xb0, 0x00,\n  0x9e, 0xff, 0x85, 0xfd, 0x07, 0x01, 0x50, 0x0b, 0x9f, 0x03, 0x0b, 0xf5,\n  0xf4, 0xf6, 0x76, 0xfe, 0x17, 0x05, 0xb8, 0x06, 0x67, 0x08, 0xc9, 0xfe,\n  0x39, 0xf5, 0xc5, 0xf9, 0xcb, 0x00, 0x7b, 0x02, 0xdc, 0x01, 0xd7, 0x02,\n  0x0c, 0x04, 0xdf, 0x08, 0x4f, 0xfd, 0x96, 0xef, 0xe1, 0xf6, 0x64, 0x08,\n  0xc8, 0x0e, 0xdc, 0x00, 0x66, 0xf6, 0xd8, 0xf6, 0x68, 0xff, 0xed, 0x09,\n  0xf2, 0x0f, 0xf5, 0xfc, 0x71, 0xee, 0xce, 0xf4, 0x6c, 0x05, 0xb9, 0x0b,\n  0x02, 0x04, 0xc7, 0xfd, 0xcd, 0xfe, 0xae, 0xff, 0x9d, 0xfd, 0x26, 0xff,\n  0x6a, 0x01, 0xd8, 0x01, 0x53, 0x02, 0x30, 0x01, 0xba, 0xfb, 0xfa, 0xfa,\n  0x52, 0x00, 0x87, 0x04, 0xdb, 0x05, 0xc5, 0x03, 0xa9, 0xfb, 0xb2, 0xf4,\n  0x73, 0xf7, 0x43, 0x04, 0x9a, 0x09, 0xf4, 0x06, 0xd8, 0x0b, 0x3a, 0xf9,\n  0xec, 0xea, 0x01, 0xf8, 0xec, 0x05, 0x0a, 0x0c, 0xa9, 0x0a, 0x5d, 0xfd,\n  0xc8, 0xf4, 0x7c, 0xf7, 0x25, 0x01, 0x81, 0x08, 0xd3, 0x04, 0x40, 0x01,\n  0xee, 0x01, 0xa9, 0xfc, 0x1c, 0xf8, 0xe5, 0xfe, 0x8b, 0x06, 0x66, 0x0b,\n  0xd9, 0x00, 0xd1, 0xef, 0x2a, 0xf5, 0x4d, 0x03, 0x00, 0x0a, 0xa7, 0x05,\n  0x9c, 0xfe, 0xa5, 0xfa, 0x2d, 0xfa, 0x7f, 0x00, 0xa2, 0x05, 0xc9, 0x03,\n  0xa2, 0x01, 0xee, 0x0b, 0xfb, 0xfc, 0xaa, 0xeb, 0x94, 0xf8, 0x5f, 0x06,\n  0xbc, 0x05, 0x58, 0x01, 0x73, 0x00, 0xf8, 0x09, 0xcc, 0x05, 0x24, 0xf2,\n  0x8c, 0xf2, 0xb5, 0xfe, 0x96, 0x09, 0x07, 0x0a, 0xeb, 0x07, 0xa0, 0xf7,\n  0x3f, 0xef, 0xef, 0xfc, 0x0f, 0x0e, 0xc0, 0x10, 0x64, 0xfa, 0xbb, 0xef,\n  0x02, 0xf6, 0x43, 0x04, 0xc7, 0x0a, 0xbb, 0x07, 0x67, 0x07, 0xbf, 0xf6,\n  0x0e, 0xee, 0x46, 0x00, 0xe7, 0x0e, 0x30, 0x07, 0x8b, 0xf7, 0x56, 0xf6,\n  0xbd, 0xff, 0x32, 0x06, 0x50, 0x06, 0x17, 0x0d, 0xa2, 0xfb, 0x9a, 0xeb,\n  0x8e, 0xf5, 0xb7, 0x05, 0xf9, 0x0b, 0x5f, 0x0a, 0xff, 0x02, 0xc8, 0xf4,\n  0x54, 0xf5, 0xd9, 0xfc, 0x6a, 0x04, 0x9e, 0x07, 0xaf, 0x02, 0x48, 0x0a,\n  0xe7, 0x02, 0x4c, 0xeb, 0x38, 0xf1, 0xf3, 0x05, 0x08, 0x0f, 0xdb, 0x03,\n  0xcb, 0x06, 0xe6, 0x04, 0x07, 0xed, 0x3e, 0xee, 0x9b, 0x03, 0x6a, 0x0f,\n  0xbf, 0x08, 0xef, 0x07, 0xae, 0xfa, 0x1e, 0xed, 0x9f, 0xf6, 0x53, 0x07,\n  0x99, 0x0a, 0x5a, 0x05, 0x47, 0x0b, 0xda, 0xf9, 0xb4, 0xeb, 0xbe, 0xf5,\n  0xe7, 0x08, 0x2f, 0x0d, 0xe1, 0x02, 0x69, 0xfc, 0x75, 0xfd, 0x43, 0x00,\n  0x4f, 0x00, 0x34, 0x00, 0x0e, 0x00, 0x3e, 0x00, 0x85, 0x00, 0x3e, 0x00,\n  0x7e, 0xfe, 0xe8, 0xfe, 0x73, 0x00, 0x49, 0x01, 0x7c, 0x01, 0x49, 0x01,\n  0x34, 0xfe, 0x6f, 0xfc, 0x05, 0xff, 0xc3, 0x03, 0xb8, 0x13, 0x90, 0xfb,\n  0xc3, 0xdf, 0x73, 0xf3, 0x60, 0x10, 0xd1, 0x11, 0x03, 0x02, 0x01, 0xfb,\n  0x23, 0xff, 0xee, 0x01, 0xe3, 0xfc, 0x03, 0xfc, 0xda, 0x00, 0x7b, 0x05,\n  0x56, 0x06, 0x73, 0x01, 0xc8, 0xf6, 0xb6, 0xf4, 0xfd, 0xfe, 0xff, 0x06,\n  0x6b, 0x06, 0x57, 0x01, 0x61, 0xfd, 0xd7, 0xfc, 0x31, 0xfc, 0xeb, 0xfe,\n  0xd0, 0x04, 0x7f, 0x04, 0xef, 0x0c, 0xd5, 0xff, 0xb6, 0xec, 0x23, 0xf2,\n  0x95, 0x03, 0x8a, 0x0d, 0xee, 0x05, 0x1c, 0xfe, 0x4f, 0xfd, 0x2e, 0x00,\n  0x27, 0xff, 0xa4, 0xff, 0x41, 0x00, 0x23, 0x03, 0xdd, 0x03, 0xb9, 0x03,\n  0xd7, 0x00, 0x89, 0xf0, 0x7f, 0xf2, 0x07, 0x02, 0xa2, 0x0b, 0xf8, 0x08,\n  0xc8, 0x06, 0x13, 0xfe, 0x23, 0xf3, 0x61, 0xf7, 0x9d, 0x02, 0x6f, 0x0c,\n  0x32, 0x06, 0x14, 0xfa, 0x2d, 0xf8, 0xc7, 0xfd, 0xe3, 0x02, 0x6f, 0x05,\n  0xb3, 0x02, 0xd9, 0xfa, 0x61, 0xf9, 0x47, 0x03, 0xa0, 0x0c, 0x5f, 0x00,\n  0xcb, 0xf5, 0x00, 0xf9, 0xd8, 0xff, 0xb6, 0x04, 0xdb, 0x06, 0xdc, 0x06,\n  0x49, 0xfb, 0x27, 0xf6, 0xdd, 0xf8, 0x53, 0x03, 0xb7, 0x06, 0x8e, 0x0a,\n  0x46, 0x08, 0x20, 0xf3, 0xb1, 0xf0, 0xc9, 0xfa, 0xe8, 0x07, 0xbf, 0x09,\n  0x5b, 0x02, 0xd0, 0xfe, 0xf9, 0x02, 0x75, 0xfc, 0x79, 0xf7, 0xcc, 0xff,\n  0x96, 0x05, 0x04, 0x04, 0xd1, 0x03, 0x0d, 0x00, 0x3e, 0xf6, 0x3a, 0xf9,\n  0x89, 0x03, 0xdb, 0x07, 0xda, 0x07, 0x42, 0x08, 0xf0, 0xf3, 0xd5, 0xeb,\n  0x04, 0xfa, 0x92, 0x09, 0xcd, 0x0a, 0x70, 0x07, 0xda, 0x08, 0x3b, 0xf6,\n  0x64, 0xed, 0x35, 0xfa, 0x1f, 0x0b, 0x0e, 0x0c, 0x74, 0x0d, 0xae, 0xf6,\n  0x7b, 0xe7, 0xab, 0xfc, 0x8f, 0x0e, 0x2f, 0x09, 0xc6, 0x05, 0x2b, 0x06,\n  0x7c, 0xec, 0x28, 0xed, 0xdb, 0x06, 0x58, 0x0f, 0xac, 0x07, 0x9b, 0x06,\n  0x4e, 0xfa, 0x21, 0xeb, 0xa6, 0xf7, 0x7a, 0x0b, 0xef, 0x0a, 0x2f, 0x0a,\n  0xd1, 0x02, 0xf6, 0xee, 0x8e, 0xf1, 0xa5, 0xff, 0x8d, 0x0b, 0x0f, 0x08,\n  0x76, 0x07, 0xdb, 0x01, 0x40, 0xf2, 0x39, 0xf3, 0x03, 0x01, 0xf6, 0x09,\n  0xab, 0x05, 0xb9, 0xfd, 0xc9, 0x02, 0x46, 0x08, 0x28, 0xf8, 0x31, 0xf3,\n  0xdd, 0xfc, 0xe7, 0x04, 0xb3, 0x04, 0xc6, 0x01, 0x83, 0x03, 0xdb, 0x05,\n  0xfb, 0xff, 0xc0, 0xf5, 0xa3, 0xf7, 0xbb, 0x00, 0xd7, 0x02, 0xed, 0x02,\n  0x5f, 0x02, 0x27, 0x05, 0x34, 0x0a, 0x69, 0xf9, 0xe1, 0xed, 0x7d, 0xf9,\n  0xae, 0x08, 0xe9, 0x0c, 0xa6, 0x08, 0x8d, 0xf9, 0x99, 0xf2, 0x40, 0xfb,\n  0x48, 0x04, 0x0f, 0x08, 0x17, 0x04, 0xfb, 0xfc, 0xe8, 0xfa, 0x15, 0xfe,\n  0x58, 0x01, 0x6f, 0x03, 0x81, 0x01, 0x7c, 0xfe, 0xa0, 0xfb, 0xd9, 0xfb,\n  0x9f, 0x02, 0xb2, 0x05, 0x4a, 0x04, 0x1f, 0x0a, 0xf6, 0xfb, 0x5a, 0xea,\n  0x5b, 0xf7, 0xed, 0x0b, 0xd4, 0x0a, 0xdd, 0x0a, 0x7f, 0x03, 0x71, 0xed,\n  0xfd, 0xee, 0x82, 0x01, 0x04, 0x0d, 0x2e, 0x10, 0x47, 0x03, 0xa7, 0xef,\n  0x03, 0xf1, 0x09, 0x01, 0x15, 0x0c, 0x77, 0x06, 0xae, 0xfe, 0x3a, 0x00,\n  0x0a, 0x09, 0x35, 0xfc, 0xa0, 0xf1, 0x5f, 0xfc, 0x23, 0x00, 0xff, 0x02,\n  0x0a, 0x04, 0xf7, 0x09, 0x88, 0x06, 0x97, 0xf4, 0x11, 0xf3, 0x2f, 0xfd,\n  0x0c, 0x07, 0x1d, 0x09, 0x0f, 0x08, 0x59, 0xfc, 0x7f, 0xf4, 0x78, 0xfb,\n  0x1f, 0x03, 0x1e, 0x05, 0xf9, 0xff, 0x11, 0xfc, 0x93, 0xff, 0x63, 0x05,\n  0x76, 0x0b, 0x34, 0xfe, 0x19, 0xf1, 0x6c, 0xf5, 0x05, 0x02, 0x7e, 0x0b,\n  0xf4, 0x04, 0xb1, 0x02, 0x1f, 0x06, 0x23, 0xf3, 0x38, 0xf1, 0xdf, 0x05,\n  0x22, 0x0a, 0x05, 0x0d, 0xcf, 0x06, 0x38, 0xe9, 0x93, 0xeb, 0x3a, 0x05,\n  0xde, 0x15, 0xd8, 0x0e, 0xba, 0xf4, 0x0d, 0xec, 0x8d, 0xfa, 0x21, 0x0b,\n  0xd4, 0x09, 0xbf, 0x00, 0xd1, 0xfc, 0x99, 0x01, 0x5f, 0x06, 0x66, 0xff,\n  0x4c, 0xf4, 0xa8, 0xf8, 0x39, 0x03, 0x5e, 0x05, 0x9f, 0x02, 0x29, 0xfc,\n  0xc7, 0xfc, 0x27, 0x02, 0xb3, 0x04, 0xa5, 0x01, 0xc8, 0x09, 0xd5, 0x03,\n  0xe6, 0xed, 0x98, 0xf0, 0xb5, 0x02, 0x22, 0x0d, 0x87, 0x0c, 0x18, 0x01,\n  0x73, 0xf4, 0xb1, 0xf5, 0x6c, 0xfe, 0x3a, 0x05, 0x1a, 0x0c, 0xa7, 0x09,\n  0x94, 0xf6, 0x0c, 0xf1, 0x91, 0xfa, 0xd2, 0x05, 0xdd, 0x0c, 0x37, 0x0c,\n  0xfa, 0xf7, 0xbe, 0xee, 0x41, 0xf8, 0xce, 0x07, 0x9a, 0x0a, 0x7f, 0x04,\n  0x67, 0x07, 0xfc, 0xfb, 0xd0, 0xec, 0x9c, 0xf7, 0x5c, 0x09, 0xa6, 0x0d,\n  0xdd, 0x09, 0x29, 0xfa, 0x7a, 0xf0, 0xc8, 0xf9, 0x1f, 0x03, 0x33, 0x06,\n  0x3b, 0x04, 0xf7, 0x09, 0xd1, 0x00, 0x39, 0xf2, 0x7a, 0xf6, 0x7f, 0xfe,\n  0xfb, 0x07, 0xb4, 0x05, 0xd4, 0x09, 0x24, 0x05, 0x20, 0xf1, 0xde, 0xef,\n  0x32, 0xff, 0x47, 0x0c, 0xf3, 0x07, 0xa4, 0xff, 0xd9, 0x00, 0xaa, 0xff,\n  0x77, 0xf7, 0x1f, 0xfc, 0x6b, 0x04, 0x13, 0x05, 0x91, 0x00, 0x63, 0xfe,\n  0xc4, 0x00, 0xc0, 0x05, 0x17, 0x0a, 0x46, 0xf5, 0x26, 0xea, 0x19, 0xfa,\n  0xac, 0x0a, 0xa1, 0x0c, 0x6d, 0x02, 0x03, 0xfd, 0xc2, 0xff, 0xd7, 0x09,\n  0x22, 0x00, 0x8b, 0xf0, 0x38, 0xf4, 0xbb, 0x02, 0x38, 0x0b, 0x67, 0x0d,\n  0x0f, 0x03, 0xbc, 0xf2, 0x32, 0xf5, 0x1c, 0x00, 0x27, 0x05, 0xdb, 0x02,\n  0xd6, 0x00, 0x4b, 0x04, 0xcc, 0x01, 0xce, 0xf8, 0xac, 0xfa, 0xbe, 0x08,\n  0x3f, 0x0c, 0x15, 0xf8, 0xef, 0xf1, 0xc5, 0xfb, 0x50, 0x05, 0x1a, 0x08,\n  0x73, 0x06, 0xaf, 0xfd, 0xc9, 0xf8, 0x1c, 0xfb, 0x7c, 0xfe, 0x7f, 0x03,\n  0x2b, 0x05, 0x53, 0x03, 0x16, 0x08, 0x16, 0x00, 0xe4, 0xf1, 0x01, 0xf7,\n  0xdb, 0x01, 0x47, 0x06, 0x67, 0x02, 0x04, 0x00, 0xcd, 0x02, 0x63, 0x06,\n  0x1b, 0xfd, 0x62, 0xf6, 0xf6, 0xfb, 0xbd, 0x02, 0x13, 0x03, 0x45, 0xff,\n  0xe3, 0xff, 0xea, 0x01, 0xb5, 0x01, 0x46, 0x00, 0xf2, 0x00, 0xd2, 0x06,\n  0xf1, 0x01, 0x10, 0xf2, 0xdb, 0xf4, 0x2c, 0x05, 0xd5, 0x0c, 0x57, 0x0b,\n  0x64, 0xfa, 0xcd, 0xef, 0x7d, 0xf9, 0xef, 0x05, 0xa7, 0x08, 0xb1, 0x03,\n  0xd1, 0xf9, 0x46, 0xf9, 0x4f, 0x01, 0xba, 0x0d, 0xed, 0x09, 0x3e, 0xf3,\n  0xa1, 0xf0, 0x2d, 0xfb, 0x3a, 0x09, 0xa8, 0x08, 0xbe, 0x01, 0x37, 0xfc,\n  0x93, 0x02, 0x51, 0x10, 0x73, 0xf7, 0xa7, 0xe6, 0x0c, 0xf8, 0x41, 0x0f,\n  0x22, 0x0c, 0x77, 0x07, 0xd4, 0x05, 0xf2, 0xed, 0x32, 0xed, 0x65, 0x03,\n  0x20, 0x0f, 0xce, 0x06, 0xf3, 0x04, 0x1b, 0x03, 0xd4, 0xf2, 0xa0, 0xf1,\n  0xd9, 0xfd, 0xb4, 0x08, 0xa2, 0x08, 0x59, 0x03, 0xd3, 0x04, 0x0b, 0xff,\n  0xab, 0xf2, 0xe6, 0xf4, 0x2b, 0x04, 0x1a, 0x0b, 0xa5, 0x0e, 0xa5, 0xff,\n  0x00, 0xef, 0x39, 0xf4, 0x69, 0x01, 0xd7, 0x09, 0x57, 0x08, 0xfc, 0x08,\n  0x8d, 0xfa, 0x34, 0xf1, 0xa0, 0xf7, 0xc5, 0x03, 0xbf, 0x09, 0x6c, 0x04,\n  0x8c, 0xff, 0x6f, 0x0a, 0x0b, 0xff, 0x34, 0xea, 0xd8, 0xf5, 0x36, 0x10,\n  0x8e, 0x0e, 0xce, 0xf9, 0x09, 0xf2, 0x4d, 0xfc, 0x59, 0x09, 0x9b, 0x06,\n  0x29, 0x0c, 0x00, 0xff, 0xc3, 0xeb, 0x52, 0xf3, 0xda, 0x04, 0x95, 0x0c,\n  0x30, 0x05, 0x8d, 0xfe, 0x21, 0xff, 0x59, 0x00, 0xbd, 0xfc, 0xf5, 0xfc,\n  0x36, 0x01, 0xbb, 0x03, 0x5b, 0x04, 0xc3, 0x03, 0xdf, 0xfc, 0xdf, 0xf5,\n  0x3d, 0xfa, 0x7f, 0x04, 0x72, 0x05, 0xf5, 0x00, 0x1c, 0xfe, 0xde, 0xfe,\n  0xc4, 0xfe, 0x1b, 0xfe, 0x8c, 0x00, 0xff, 0x08, 0xa1, 0x08, 0x2b, 0xf7,\n  0xd9, 0xf4, 0xcc, 0xfe, 0x0b, 0x05, 0x73, 0x04, 0xb4, 0xff, 0xa0, 0xfa,\n  0x91, 0xfd, 0x5f, 0x05, 0x52, 0x07, 0xb4, 0x05, 0xec, 0xfa, 0xbf, 0xf3,\n  0x75, 0xfb, 0x33, 0x04, 0x36, 0x06, 0xc9, 0x02, 0x38, 0xff, 0x55, 0xfd,\n  0x48, 0xfe, 0x02, 0x00, 0x2d, 0x01, 0x57, 0x01, 0x26, 0x00, 0xfc, 0xfe,\n  0x32, 0xff, 0xc3, 0xfd, 0x61, 0xfd, 0x03, 0x02, 0x3e, 0x04, 0xfb, 0x03,\n  0x47, 0x05, 0xf9, 0xfe, 0x89, 0xf0, 0x08, 0xf9, 0xc7, 0x06, 0x4d, 0x12,\n  0xa0, 0x09, 0xd1, 0xed, 0x5a, 0xec, 0x76, 0xfe, 0xd6, 0x0e, 0x8e, 0x08,\n  0xc2, 0x09, 0xec, 0xff, 0x82, 0xea, 0x82, 0xf3, 0x20, 0x09, 0x37, 0x0d,\n  0xb7, 0x02, 0x31, 0xfc, 0x81, 0xfd, 0x8f, 0x00, 0x9a, 0x00, 0x42, 0xff,\n  0xec, 0xff, 0xbe, 0x01, 0xb9, 0x03, 0xae, 0xff, 0x55, 0xfa, 0xb1, 0xf9,\n  0x04, 0x00, 0xff, 0x03, 0xef, 0x09, 0x87, 0x0e, 0xea, 0xf2, 0xe0, 0xe8,\n  0x22, 0xfa, 0x37, 0x0b, 0x35, 0x0d, 0x75, 0x08, 0xe9, 0xfc, 0x12, 0xf4,\n  0xc9, 0xf9, 0xc7, 0x01, 0x68, 0x06, 0x77, 0x06, 0x0a, 0x00, 0x09, 0xfa,\n  0xc9, 0xfb, 0xe9, 0xff, 0xb7, 0x02, 0x4b, 0x04, 0x76, 0x01, 0xb3, 0xfc,\n  0xdd, 0xfc, 0x78, 0xff, 0xca, 0x01, 0x6d, 0x02, 0x35, 0x00, 0x1c, 0xfe,\n  0xe9, 0xfc, 0xb1, 0xfd, 0x98, 0x05, 0xe7, 0x08, 0xd7, 0xfd, 0xda, 0xf2,\n  0xc4, 0xfa, 0x66, 0x06, 0x20, 0x0c, 0xcd, 0x0b, 0xee, 0xf5, 0x6d, 0xee,\n  0x9e, 0xf8, 0x86, 0x06, 0xf4, 0x0a, 0xc3, 0x03, 0xea, 0x08, 0xf3, 0xfe,\n  0x9d, 0xec, 0xc7, 0xf4, 0x11, 0x08, 0x3f, 0x0c, 0x1d, 0x03, 0x6d, 0xfd,\n  0x3c, 0x04, 0xd2, 0x06, 0x8e, 0xf4, 0x44, 0xf0, 0xab, 0xff, 0xd4, 0x0c,\n  0x0c, 0x09, 0xc5, 0xfc, 0x99, 0xf8, 0xe5, 0xf9, 0xf0, 0xff, 0xa7, 0x06,\n  0x6b, 0x04, 0x12, 0x0b, 0x57, 0x01, 0x0c, 0xec, 0x76, 0xf2, 0xb3, 0x06,\n  0x8f, 0x0f, 0x54, 0x09, 0xaa, 0xfb, 0x21, 0xf1, 0x71, 0xfa, 0x77, 0x06,\n  0xbf, 0x0b, 0xe7, 0x08, 0x39, 0xf6, 0x22, 0xf1, 0x59, 0xfa, 0x72, 0x06,\n  0x59, 0x09, 0x32, 0x0c, 0xb9, 0x00, 0xb0, 0xee, 0x7e, 0xf3, 0x37, 0x04,\n  0x52, 0x0c, 0x1b, 0x05, 0xb7, 0x05, 0x63, 0x01, 0xa7, 0xef, 0xfa, 0xf1,\n  0xec, 0x05, 0xf2, 0x0b, 0x18, 0x07, 0xf5, 0x0a, 0xe0, 0xf6, 0x35, 0xe9,\n  0x62, 0xfb, 0xa1, 0x0b, 0x97, 0x0a, 0xe1, 0xff, 0x3e, 0x04, 0x8c, 0x05,\n  0x9e, 0xf3, 0xf1, 0xf1, 0x24, 0xff, 0x87, 0x09, 0x41, 0x0b, 0x01, 0x03,\n  0x93, 0xf7, 0x1e, 0xf8, 0x24, 0xff, 0x34, 0x04, 0x2f, 0x05, 0xa8, 0x01,\n  0xd1, 0xfc, 0xb3, 0xfc, 0x4d, 0xff, 0xb7, 0x01, 0x69, 0x02, 0x22, 0x00,\n  0x19, 0xfd, 0xc1, 0xfa, 0x37, 0x01, 0xf7, 0x04, 0x77, 0x0c, 0x3a, 0x04,\n  0xb7, 0xef, 0x3a, 0xf1, 0x99, 0xff, 0x04, 0x0d, 0x17, 0x06, 0xba, 0x05,\n  0x28, 0x07, 0xc2, 0xf2, 0x31, 0xee, 0xb7, 0xfd, 0xb7, 0x0b, 0x17, 0x09,\n  0x85, 0x00, 0x61, 0x00, 0x07, 0x00, 0xdd, 0xf8, 0x71, 0xfa, 0x7d, 0x02,\n  0x87, 0x05, 0x67, 0x03, 0xaf, 0x0d, 0xfd, 0xfd, 0xbb, 0xe6, 0xc1, 0xf1,\n  0xac, 0x0a, 0x9e, 0x0f, 0x05, 0x0d, 0xdc, 0x00, 0x07, 0xee, 0x57, 0xf2,\n  0x4c, 0x01, 0x2c, 0x0c, 0x03, 0x07, 0x4f, 0x07, 0x4d, 0x00, 0x1c, 0xf1,\n  0x49, 0xf7, 0x67, 0x03, 0xac, 0x06, 0xf5, 0x03, 0x72, 0xff, 0x51, 0xfd,\n  0x35, 0xfc, 0x78, 0xfe, 0x76, 0x01, 0x29, 0x08, 0xd1, 0x08, 0xba, 0xf8,\n  0x6b, 0xf2, 0x45, 0xfa, 0x0b, 0x06, 0xa7, 0x0b, 0x02, 0x0c, 0x00, 0xf9,\n  0x76, 0xed, 0x29, 0xf9, 0x9e, 0x09, 0x17, 0x0a, 0xbe, 0x05, 0x80, 0x05,\n  0x13, 0xf6, 0xac, 0xee, 0x97, 0xfd, 0xef, 0x0a, 0x21, 0x0d, 0x58, 0x04,\n  0x21, 0xf5, 0x41, 0xf5, 0xdf, 0xfe, 0x3f, 0x06, 0xdf, 0x03, 0xdf, 0xfd,\n  0xf1, 0xfd, 0xdb, 0x03, 0xc7, 0x0d, 0x1f, 0xfd, 0xc7, 0xee, 0x94, 0xf8,\n  0x5f, 0x07, 0x15, 0x09, 0x5b, 0x01, 0x4b, 0xfc, 0x71, 0xfc, 0xf3, 0xfe,\n  0x94, 0x01, 0xa5, 0xff, 0xeb, 0x02, 0xc4, 0x08, 0xc1, 0xfc, 0x22, 0xf6,\n  0x95, 0xf9, 0xc6, 0x01, 0x90, 0x07, 0x06, 0x05, 0x27, 0x08, 0xe5, 0xfe,\n  0x54, 0xec, 0xfa, 0xf7, 0x39, 0x0a, 0x7e, 0x14, 0x17, 0x03, 0xd1, 0xed,\n  0x01, 0xf1, 0xf7, 0x01, 0x75, 0x0c, 0x32, 0x06, 0xeb, 0xfe, 0x73, 0xfd,\n  0x62, 0xff, 0xad, 0x00, 0x86, 0x06, 0xc9, 0x01, 0xc0, 0xf2, 0x81, 0xf5,\n  0x7f, 0x05, 0x21, 0x0b, 0x14, 0x0a, 0xc1, 0x00, 0x9a, 0xf1, 0xf3, 0xf4,\n  0x51, 0x02, 0x4f, 0x09, 0xe7, 0x03, 0x2a, 0xfb, 0xa7, 0xfc, 0xd3, 0x02,\n  0x02, 0x0c, 0xd7, 0x03, 0xc7, 0xf2, 0x9f, 0xf5, 0xbb, 0x00, 0x24, 0x07,\n  0xdc, 0x04, 0x19, 0x00, 0xa1, 0xfd, 0xcd, 0xfd, 0x2a, 0xff, 0x4b, 0xfe,\n  0x3f, 0xff, 0xd3, 0x02, 0xdc, 0x04, 0xf5, 0x03, 0x4c, 0xfa, 0xb0, 0xf9,\n  0xa2, 0x01, 0xd8, 0x0d, 0xb3, 0x05, 0xb4, 0xef, 0x92, 0xf2, 0xf1, 0x00,\n  0x25, 0x0a, 0xe7, 0x08, 0x9a, 0x00, 0xc5, 0xf9, 0x54, 0xfb, 0x9f, 0xff,\n  0xe9, 0xff, 0xf9, 0xff, 0xe3, 0x02, 0xb5, 0x02, 0x3b, 0x02, 0xab, 0x04,\n  0x3d, 0xfd, 0x81, 0xf4, 0x6f, 0xff, 0x40, 0x10, 0xd8, 0x01, 0x08, 0xf0,\n  0x93, 0xf4, 0xb4, 0x04, 0x8e, 0x0b, 0xbb, 0x04, 0x9b, 0x03, 0xb5, 0x03,\n  0xd4, 0xf3, 0x73, 0xf1, 0xf6, 0x01, 0x71, 0x0b, 0xf4, 0x04, 0x2a, 0x01,\n  0x2c, 0x0c, 0x08, 0xf9, 0x0b, 0xea, 0x1f, 0xf7, 0x19, 0x0a, 0x7f, 0x0d,\n  0xcf, 0x02, 0xf7, 0x04, 0xf1, 0x00, 0xd8, 0xee, 0x12, 0xf4, 0xc3, 0x07,\n  0x52, 0x0c, 0x46, 0x0a, 0x4c, 0x01, 0xa8, 0xf0, 0x71, 0xf3, 0x94, 0x01,\n  0x2d, 0x0b, 0x80, 0x09, 0x7e, 0xfe, 0x6f, 0xf5, 0xc6, 0xf8, 0xf9, 0x02,\n  0x60, 0x0d, 0x39, 0x08, 0x31, 0xf6, 0xf9, 0xf4, 0x1b, 0xfc, 0x8b, 0x02,\n  0x26, 0x06, 0xd7, 0x03, 0xe7, 0xff, 0xa0, 0xfe, 0xc5, 0x00, 0x01, 0x01,\n  0x63, 0xfd, 0xdf, 0xfd, 0x18, 0x01, 0xf1, 0x01, 0xe7, 0x01, 0xaf, 0x01,\n  0x71, 0xfd, 0x10, 0xfa, 0x17, 0xff, 0xf1, 0x03, 0xff, 0x13, 0xd6, 0x01,\n  0x50, 0xe1, 0xf1, 0xee, 0xd9, 0x0a, 0x19, 0x13, 0x47, 0x03, 0xdd, 0x02,\n  0xc6, 0x06, 0x07, 0xf2, 0x37, 0xee, 0x63, 0xff, 0x9e, 0x0d, 0x1a, 0x08,\n  0xc5, 0x03, 0x78, 0x05, 0xff, 0xf3, 0xa0, 0xee, 0x1b, 0x01, 0x25, 0x13,\n  0xe0, 0x08, 0xa2, 0xf4, 0x6f, 0xf2, 0x6b, 0xff, 0x29, 0x0f, 0x32, 0x07,\n  0xce, 0xf7, 0xbe, 0xf4, 0x40, 0xfe, 0x52, 0x07, 0xff, 0x08, 0x4f, 0x07,\n  0xdd, 0xf8, 0x4a, 0xf3, 0x45, 0xfc, 0x73, 0x03, 0xb3, 0x03, 0xff, 0x01,\n  0x6f, 0x01, 0xf7, 0x01, 0xd6, 0x01, 0x15, 0xfb, 0x8d, 0xfc, 0x72, 0x01,\n  0x12, 0x0a, 0x3e, 0x0c, 0x9c, 0xf2, 0x94, 0xea, 0x65, 0xfc, 0x1e, 0x0c,\n  0x67, 0x0e, 0xa3, 0x03, 0x46, 0xf7, 0xe7, 0xf6, 0x3b, 0xfd, 0xf6, 0x01,\n  0x5a, 0x06, 0x11, 0x02, 0x3d, 0x08, 0xae, 0x06, 0xbf, 0xf1, 0xbc, 0xf0,\n  0x93, 0xfe, 0xe6, 0x09, 0x99, 0x0b, 0x22, 0x07, 0xa2, 0xf7, 0xc4, 0xf3,\n  0xa1, 0xfa, 0x9b, 0x03, 0x02, 0x08, 0x95, 0x03, 0x89, 0x03, 0x62, 0x06,\n  0x40, 0xf7, 0xb5, 0xee, 0x0b, 0xff, 0x67, 0x0b, 0xb2, 0x0c, 0xd8, 0x04,\n  0x04, 0xf4, 0xf2, 0xf2, 0xeb, 0xfe, 0x2c, 0x09, 0xf6, 0x06, 0xbe, 0xfe,\n  0x15, 0xfa, 0xfa, 0xfa, 0xb9, 0x03, 0xc0, 0x0a, 0x28, 0x01, 0xa1, 0xf6,\n  0xf6, 0xf6, 0x92, 0x00, 0xfc, 0x08, 0xa7, 0x09, 0xda, 0xff, 0x91, 0xf8,\n  0xba, 0xfa, 0x7f, 0xfd, 0xaf, 0x00, 0x69, 0x01, 0xcf, 0x02, 0x78, 0x04,\n  0x63, 0x06, 0x7d, 0xfc, 0xaa, 0xf5, 0xb1, 0xf9, 0xac, 0x01, 0xa7, 0x06,\n  0x66, 0x0b, 0x83, 0x04, 0x0c, 0xf2, 0x91, 0xf2, 0x72, 0x01, 0x7f, 0x0d,\n  0xc7, 0x0d, 0xea, 0xfa, 0x38, 0xf1, 0x45, 0xf8, 0x59, 0x03, 0xeb, 0x07,\n  0x99, 0x08, 0xd3, 0x03, 0x1b, 0xf7, 0x60, 0xf2, 0xc3, 0xfe, 0xc2, 0x08,\n  0x4f, 0x0e, 0xeb, 0x06, 0xb9, 0xf0, 0x3d, 0xef, 0x81, 0xfe, 0x3d, 0x0d,\n  0xab, 0x06, 0x89, 0x08, 0x8f, 0x03, 0xa1, 0xed, 0x1e, 0xf0, 0xe3, 0x03,\n  0x92, 0x0e, 0x4e, 0x05, 0x19, 0x09, 0x87, 0xfd, 0xa6, 0xe8, 0x6d, 0xf8,\n  0x11, 0x0c, 0x50, 0x0b, 0xf2, 0x00, 0x0a, 0x01, 0x2f, 0xfc, 0xb7, 0xf6,\n  0xc7, 0xfe, 0xab, 0x05, 0x92, 0x04, 0x7d, 0x03, 0xea, 0x01, 0x16, 0xf7,\n  0xaf, 0xf7, 0x70, 0x01, 0x46, 0x07, 0x91, 0x02, 0x15, 0x0c, 0x78, 0x05,\n  0x31, 0xe9, 0x3c, 0xed, 0x61, 0x02, 0x58, 0x11, 0x73, 0x07, 0xbf, 0x05,\n  0xa1, 0x03, 0xab, 0xef, 0x81, 0xf0, 0xed, 0x03, 0x44, 0x0d, 0x47, 0x06,\n  0x5f, 0x09, 0xf0, 0xfb, 0xb0, 0xeb, 0xbe, 0xf5, 0x9c, 0x08, 0x0e, 0x0d,\n  0xb3, 0x06, 0x71, 0x00, 0x9f, 0xf3, 0xe6, 0xf7, 0x17, 0x03, 0xff, 0x0e,\n  0x85, 0x0b, 0x5a, 0xf1, 0x7c, 0xeb, 0xe1, 0xfe, 0xc2, 0x0c, 0xcf, 0x0e,\n  0x6c, 0x07, 0x73, 0xf1, 0xed, 0xed, 0x41, 0xff, 0xc8, 0x0c, 0xa0, 0x07,\n  0xf7, 0x01, 0xa3, 0x06, 0xff, 0xf6, 0x44, 0xed, 0xd4, 0xff, 0x3a, 0x0c,\n  0xfc, 0x08, 0x4b, 0x07, 0xdd, 0xfd, 0x14, 0xed, 0x9c, 0xf5, 0x7f, 0x06,\n  0x22, 0x0c, 0x69, 0x02, 0x5c, 0x05, 0xaa, 0x06, 0x0b, 0xf2, 0x77, 0xf0,\n  0xe7, 0xfd, 0x60, 0x0a, 0x57, 0x08, 0x06, 0x01, 0x9b, 0xff, 0xe4, 0x01,\n  0xd2, 0xff, 0xab, 0xfc, 0xa9, 0xfc, 0xb7, 0xfc, 0xa5, 0xff, 0x65, 0x02,\n  0xad, 0x02, 0xd7, 0x00, 0xb9, 0xff, 0x2f, 0xff, 0x5d, 0xff, 0x09, 0xff,\n  0x5f, 0xfd, 0x12, 0xff, 0x03, 0x05, 0x9f, 0x0c, 0x84, 0xfe, 0x44, 0xf0,\n  0x22, 0xf6, 0x1f, 0x05, 0xb2, 0x0a, 0x6c, 0x04, 0x72, 0x06, 0x5d, 0xff,\n  0x2e, 0xf2, 0x40, 0xf7, 0x8a, 0x01, 0x2b, 0x06, 0xef, 0x02, 0xbb, 0x00,\n  0x03, 0xff, 0x7f, 0x0a, 0x00, 0x05, 0xc1, 0xf0, 0xb4, 0xf1, 0x35, 0x00,\n  0x11, 0x0c, 0xe8, 0x06, 0x29, 0x00, 0x87, 0xfc, 0xa3, 0xfd, 0x1d, 0xff,\n  0xe1, 0x01, 0x91, 0x00, 0xa8, 0x0b, 0x89, 0x08, 0xad, 0xeb, 0x42, 0xee,\n  0x1c, 0x01, 0x00, 0x0a, 0x3a, 0x07, 0x42, 0x01, 0x7f, 0x07, 0xcc, 0x01,\n  0x4e, 0xf3, 0x69, 0xf5, 0xbf, 0x00, 0xc2, 0x08, 0xbf, 0x08, 0xaf, 0x06,\n  0xda, 0xf8, 0x9b, 0xf3, 0xe8, 0xfb, 0xe4, 0x04, 0x90, 0x08, 0x70, 0x04,\n  0xbd, 0xfb, 0xe9, 0xf9, 0x7e, 0xfb, 0xaa, 0x00, 0xa0, 0x04, 0xc0, 0x07,\n  0xc8, 0x08, 0x89, 0xf8, 0x21, 0xf1, 0xee, 0xfa, 0xa4, 0x05, 0xc5, 0x0c,\n  0xc6, 0x06, 0xfc, 0xf7, 0x9c, 0xf5, 0xd9, 0xfa, 0x48, 0x04, 0x52, 0x07,\n  0xc9, 0x02, 0x4c, 0x00, 0x81, 0x03, 0xa2, 0xfb, 0xae, 0xf6, 0xe0, 0xff,\n  0x08, 0x06, 0x5f, 0x03, 0xd9, 0x01, 0x8e, 0x0e, 0x26, 0xf9, 0x26, 0xe4,\n  0x51, 0xf8, 0xda, 0x10, 0xb5, 0x15, 0x99, 0xff, 0x10, 0xee, 0x0a, 0xf4,\n  0xbb, 0x04, 0x3c, 0x0b, 0xbf, 0x03, 0x60, 0x08, 0xcb, 0x00, 0xb1, 0xee,\n  0x41, 0xf3, 0xb1, 0x03, 0x07, 0x0d, 0xf4, 0x0b, 0x9f, 0xff, 0x91, 0xf1,\n  0x08, 0xf7, 0x03, 0x05, 0x75, 0x0b, 0x99, 0x02, 0x92, 0xf9, 0x70, 0xfa,\n  0xa9, 0xfe, 0x41, 0x00, 0x21, 0x02, 0x69, 0x03, 0xf3, 0x03, 0x1f, 0x08,\n  0x73, 0xfd, 0xca, 0xef, 0x2d, 0xf8, 0xd0, 0x06, 0x70, 0x0d, 0xab, 0x06,\n  0x54, 0xf7, 0x93, 0xf5, 0x5d, 0xfb, 0x3f, 0x04, 0x27, 0x06, 0x98, 0x06,\n  0x98, 0x09, 0x2d, 0xf8, 0xbf, 0xed, 0x50, 0xfa, 0x8f, 0x09, 0xa4, 0x0a,\n  0x2b, 0x00, 0x1a, 0x07, 0x4b, 0x01, 0x76, 0xea, 0x69, 0xf7, 0xe5, 0x0b,\n  0x44, 0x15, 0xac, 0x00, 0x2f, 0xeb, 0x89, 0xf2, 0xeb, 0x06, 0xd1, 0x0c,\n  0x71, 0x03, 0xc5, 0xfc, 0x17, 0xfd, 0x57, 0x03, 0x8a, 0x0d, 0x07, 0xfd,\n  0xb7, 0xe8, 0x56, 0xf6, 0x99, 0x0a, 0x9d, 0x10, 0x26, 0x07, 0x9a, 0xf6,\n  0x24, 0xf4, 0x3f, 0xfe, 0xfb, 0x05, 0xe8, 0x04, 0xea, 0xff, 0xe5, 0xfa,\n  0x11, 0xfd, 0x4d, 0x03, 0x6c, 0x07, 0xce, 0x07, 0xb9, 0xf9, 0x6e, 0xf1,\n  0xa1, 0xf9, 0x30, 0x08, 0x37, 0x08, 0xca, 0x09, 0x0e, 0x04, 0x07, 0xf1,\n  0x9e, 0xf3, 0x97, 0xfd, 0x60, 0x08, 0x16, 0x07, 0x9b, 0x06, 0x30, 0x07,\n  0x11, 0xf3, 0x12, 0xef, 0xec, 0x00, 0xc7, 0x0c, 0xf3, 0x05, 0x11, 0x09,\n  0x8e, 0x00, 0xff, 0xea, 0x29, 0xf3, 0xfb, 0x07, 0x7c, 0x0d, 0xda, 0x04,\n  0x58, 0x06, 0x35, 0xfc, 0x81, 0xed, 0x19, 0xf8, 0x6f, 0x09, 0xa7, 0x0a,\n  0xa6, 0x01, 0xd1, 0xfc, 0x80, 0x05, 0x94, 0x04, 0xae, 0xf3, 0xea, 0xf4,\n  0x0f, 0x01, 0x94, 0x08, 0x47, 0x06, 0x71, 0xff, 0x0b, 0xfc, 0x45, 0xfd,\n  0xc0, 0xff, 0xc9, 0xfe, 0x83, 0x00, 0xb7, 0x02, 0xbf, 0x02, 0x77, 0xff,\n  0x57, 0x04, 0x0f, 0x09, 0x90, 0xf5, 0x2e, 0xef, 0x4d, 0xfc, 0xa8, 0x0a,\n  0x40, 0x09, 0xef, 0x05, 0x89, 0x03, 0xe4, 0xf4, 0x2e, 0xf5, 0xdb, 0xff,\n  0x1c, 0x06, 0xbf, 0x03, 0x5e, 0xfe, 0xf7, 0xfd, 0x7d, 0x03, 0x19, 0x03,\n  0xed, 0xfb, 0x6e, 0xfb, 0x2e, 0x07, 0x3e, 0x0a, 0xa8, 0xf8, 0xe2, 0xf0,\n  0x56, 0xfb, 0x0c, 0x08, 0x41, 0x0e, 0xcc, 0x07, 0xe1, 0xf4, 0xcf, 0xf2,\n  0xfd, 0xfb, 0x66, 0x06, 0xd3, 0x07, 0xaf, 0x07, 0xbb, 0x02, 0x88, 0xf1,\n  0x98, 0xf4, 0xbe, 0x04, 0x8b, 0x10, 0xe9, 0x08, 0xf4, 0xf3, 0x94, 0xf3,\n  0xa5, 0xfb, 0x1f, 0x05, 0x58, 0x06, 0x62, 0x07, 0x15, 0x09, 0xa9, 0xf6,\n  0x4f, 0xee, 0x09, 0xfc, 0xb1, 0x0a, 0x15, 0x09, 0x7d, 0x00, 0x43, 0x03,\n  0xc5, 0xfd, 0xd8, 0xf3, 0xba, 0xfb, 0x90, 0x07, 0x20, 0x05, 0xce, 0x06,\n  0xc5, 0x0a, 0x0b, 0xf2, 0xdd, 0xea, 0x51, 0xfb, 0xbc, 0x0c, 0x49, 0x0c,\n  0xdf, 0x04, 0x0d, 0xfc, 0x34, 0xf6, 0x15, 0xfb, 0xe7, 0x04, 0xd0, 0x04,\n  0xc6, 0x08, 0x32, 0x09, 0x4e, 0xf0, 0x81, 0xec, 0x2d, 0xfe, 0xc0, 0x0d,\n  0xcf, 0x08, 0x98, 0x08, 0xec, 0x00, 0xf0, 0xef, 0x52, 0xf3, 0xdb, 0x01,\n  0x77, 0x0b, 0xef, 0x06, 0xeb, 0x06, 0xc3, 0xfe, 0xd2, 0xee, 0x2b, 0xf6,\n  0x2a, 0x06, 0xfa, 0x10, 0x58, 0x0a, 0x29, 0xf3, 0x30, 0xed, 0xc6, 0xff,\n  0x64, 0x0b, 0xd2, 0x0d, 0x40, 0x07, 0x0b, 0xf0, 0xef, 0xed, 0xce, 0x00,\n  0x49, 0x0d, 0xef, 0x06, 0xb9, 0x00, 0xad, 0x03, 0x35, 0xf9, 0xd0, 0xf2,\n  0x37, 0x00, 0xd7, 0x08, 0xb3, 0x06, 0x07, 0x06, 0x66, 0xff, 0x99, 0xf0,\n  0x97, 0xf5, 0x9c, 0x05, 0xd4, 0x0d, 0x21, 0x0a, 0x4a, 0xf8, 0x62, 0xf2,\n  0xd5, 0xfb, 0x1b, 0x02, 0x43, 0x06, 0x3d, 0x03, 0x0f, 0x06, 0xe9, 0x08,\n  0xf8, 0xf3, 0x66, 0xee, 0x5e, 0xfe, 0x44, 0x0d, 0x8a, 0x06, 0x7a, 0x07,\n  0xcd, 0x03, 0xd4, 0xea, 0xb3, 0xf2, 0x41, 0x09, 0x9f, 0x0c, 0x57, 0x04,\n  0xe5, 0x08, 0x28, 0xf7, 0xfd, 0xe8, 0x24, 0xff, 0x70, 0x0d, 0xf4, 0x08,\n  0x79, 0xfe, 0xa7, 0x06, 0xcc, 0x01, 0xbe, 0xeb, 0x24, 0xf4, 0xda, 0x0b,\n  0x5b, 0x14, 0x0d, 0x00, 0x56, 0xef, 0x74, 0xf5, 0x57, 0x05, 0xc6, 0x09,\n  0xe7, 0x02, 0xa4, 0xff, 0x3c, 0x08, 0x9a, 0xfe, 0x49, 0xf0, 0xfe, 0xf7,\n  0xad, 0x03, 0x46, 0x08, 0xab, 0x02, 0xf1, 0x03, 0xcb, 0x06, 0x7e, 0xf8,\n  0x5e, 0xf4, 0x61, 0xfc, 0x87, 0x04, 0x0f, 0x0b, 0x00, 0x04, 0x1f, 0xf7,\n  0x41, 0xf6, 0xea, 0x01, 0x89, 0x08, 0xa7, 0x0c, 0x7e, 0xff, 0x19, 0xf0,\n  0xcc, 0xf5, 0x6b, 0x02, 0x27, 0x0e, 0x7f, 0x07, 0x5e, 0xf7, 0xb9, 0xf3,\n  0xf7, 0x00, 0x9f, 0x08, 0x18, 0x0d, 0xeb, 0x01, 0x4a, 0xf0, 0x90, 0xf3,\n  0x7b, 0x01, 0x0e, 0x0a, 0x6c, 0x09, 0x02, 0x04, 0x03, 0xf5, 0x86, 0xf4,\n  0xef, 0x08, 0x09, 0x0b, 0x89, 0xfb, 0x3e, 0xf8, 0xa2, 0xfb, 0x1a, 0x00,\n  0x3b, 0x04, 0x63, 0x04, 0xe2, 0x00, 0x80, 0x00, 0xd3, 0x01, 0x3b, 0xfc,\n  0x05, 0xfb, 0xdd, 0x00, 0x97, 0x03, 0x9b, 0x02, 0x0b, 0x03, 0xbe, 0xfe,\n  0x45, 0xf8, 0x2d, 0xfc, 0xc5, 0x03, 0x0b, 0x06, 0x8f, 0x06, 0x57, 0x01,\n  0xd1, 0xf6, 0xd1, 0xf2, 0x75, 0xfd, 0xee, 0x07, 0xda, 0x0e, 0x48, 0x07,\n  0x68, 0xf3, 0xae, 0xf2, 0x13, 0xfd, 0x18, 0x07, 0xa6, 0x07, 0x09, 0x02,\n  0xc7, 0xfc, 0xcd, 0xfd, 0xeb, 0x01, 0x7e, 0x0e, 0x5c, 0xff, 0x2e, 0xec,\n  0x7b, 0xf4, 0x93, 0x04, 0x7e, 0x0b, 0x4e, 0x09, 0x95, 0x03, 0x0c, 0xf7,\n  0x2b, 0xf6, 0x5e, 0xfe, 0x78, 0x04, 0x8e, 0x04, 0xfc, 0xfe, 0x30, 0x04,\n  0x6b, 0x07, 0x08, 0xf9, 0x6e, 0xf4, 0xa9, 0xfa, 0x1b, 0x06, 0x3d, 0x08,\n  0xe5, 0x01, 0x2c, 0xff, 0xe8, 0x01, 0x29, 0xfc, 0x0a, 0xfa, 0x48, 0x01,\n  0x0c, 0x04, 0x69, 0x02, 0xc3, 0x01, 0xec, 0xff, 0xed, 0xf8, 0x6d, 0xfd,\n  0xc1, 0x01, 0xc4, 0x0d, 0x37, 0x0c, 0x70, 0xec, 0xc5, 0xe9, 0x19, 0xfe,\n  0x33, 0x10, 0x86, 0x09, 0xa4, 0x06, 0x99, 0x03, 0xc2, 0xf0, 0xd1, 0xf0,\n  0xab, 0x02, 0xa7, 0x0c, 0x8a, 0x05, 0x96, 0xfe, 0xad, 0x00, 0xcb, 0xfc,\n  0xd6, 0xf9, 0x56, 0x00, 0x3c, 0x04, 0x6f, 0x02, 0xf1, 0x01, 0x65, 0x00,\n  0x2a, 0xfa, 0xc5, 0xfb, 0x23, 0x02, 0x37, 0x04, 0x00, 0x04, 0xb7, 0x03,\n  0xe2, 0xfa, 0x59, 0xf6, 0xad, 0xfc, 0x76, 0x05, 0xd5, 0x03, 0xc1, 0x0d,\n  0x98, 0x05, 0x68, 0xea, 0x22, 0xee, 0x6b, 0x03, 0x7e, 0x0f, 0x70, 0x07,\n  0x89, 0xfd, 0x23, 0xfc, 0x8d, 0xfe, 0x03, 0x02, 0xff, 0xff, 0x3f, 0x0b,\n  0x0c, 0x09, 0x46, 0xeb, 0x4a, 0xeb, 0x81, 0x02, 0x0e, 0x10, 0xa5, 0x0b,\n  0x98, 0x05, 0x74, 0xf6, 0xbe, 0xf2, 0x31, 0xfc, 0x07, 0x05, 0x2f, 0x06,\n  0x4f, 0x04, 0x14, 0x09, 0xf9, 0xfb, 0x3c, 0xf2, 0xe2, 0xf7, 0xf9, 0x02,\n  0x47, 0x09, 0x1f, 0x04, 0x28, 0x01, 0xb7, 0x05, 0x24, 0xff, 0x12, 0xf4,\n  0xd1, 0xf6, 0x43, 0x01, 0xdf, 0x07, 0xaf, 0x05, 0x43, 0x03, 0xf3, 0x02,\n  0x98, 0xfa, 0xfb, 0xf5, 0xad, 0xfd, 0xcb, 0x05, 0x9f, 0x05, 0xf3, 0xff,\n  0x0f, 0xfd, 0xfd, 0xfd, 0x97, 0x00, 0xfd, 0x00, 0xe3, 0xff, 0xd1, 0xfc,\n  0x35, 0xff, 0xbf, 0x02, 0x46, 0x07, 0x4f, 0x08, 0xfc, 0xf7, 0x06, 0xf2,\n  0x65, 0xfa, 0xff, 0x05, 0xea, 0x08, 0x29, 0x03, 0x06, 0x05, 0x47, 0x02,\n  0x03, 0xf1, 0x81, 0xf3, 0x0b, 0x06, 0x26, 0x0c, 0xfa, 0x0d, 0xf5, 0xfc,\n  0x6f, 0xed, 0xb8, 0xf5, 0xaf, 0x04, 0xe5, 0x0a, 0x78, 0x04, 0xf7, 0x04,\n  0xa0, 0x01, 0x0f, 0xf5, 0xa1, 0xf6, 0x5b, 0x00, 0x73, 0x04, 0x39, 0x03,\n  0x76, 0x01, 0x15, 0x03, 0x23, 0x00, 0xfd, 0xfa, 0x53, 0xfd, 0x32, 0x07,\n  0x4f, 0x0b, 0x41, 0xf8, 0xce, 0xf0, 0xe9, 0xfb, 0x4b, 0x06, 0x35, 0x09,\n  0xd1, 0x03, 0x8d, 0xfc, 0x14, 0xfa, 0x31, 0xfc, 0x84, 0xff, 0xe8, 0x07,\n  0x4c, 0x0b, 0x99, 0xfb, 0x7b, 0xf2, 0xb6, 0xf8, 0x9c, 0x05, 0xda, 0x08,\n  0x0d, 0x03, 0xc9, 0x02, 0x61, 0x00, 0x21, 0xf6, 0xbb, 0xf7, 0xd7, 0x03,\n  0x85, 0x08, 0x1a, 0x09, 0x8e, 0x01, 0x9f, 0xf2, 0x06, 0xf5, 0xed, 0x01,\n  0x32, 0x09, 0x60, 0x05, 0xb4, 0xfe, 0xb8, 0xfb, 0x09, 0xfe, 0xaa, 0xff,\n  0x7e, 0xff, 0xe7, 0xff, 0x86, 0x07, 0x57, 0x08, 0xb6, 0xf8, 0x81, 0xf4,\n  0x70, 0xfa, 0xff, 0x04, 0xee, 0x07, 0xa9, 0x02, 0x4a, 0xff, 0x30, 0xfe,\n  0xd9, 0xfd, 0xd1, 0xff, 0xb5, 0x01, 0x92, 0x04, 0x47, 0x06, 0x65, 0xfb,\n  0xb4, 0xf1, 0xf4, 0xfa, 0x94, 0x08, 0xe8, 0x0c, 0x38, 0x00, 0x48, 0xf5,\n  0x02, 0xf9, 0x51, 0xff, 0x23, 0x05, 0x44, 0x05, 0x78, 0x0a, 0x91, 0x00,\n  0xc9, 0xf0, 0xb8, 0xf4, 0x0a, 0x04, 0xdf, 0x0a, 0xb4, 0x04, 0x58, 0x09,\n  0xa9, 0xfc, 0x0d, 0xec, 0x49, 0xf7, 0x08, 0x09, 0xc7, 0x0b, 0x99, 0x01,\n  0x90, 0x07, 0xf9, 0xff, 0x50, 0xed, 0x26, 0xf4, 0xe6, 0x07, 0xb1, 0x0b,\n  0xc5, 0x0a, 0x65, 0x03, 0x17, 0xf0, 0x6a, 0xf1, 0x5f, 0x00, 0xb4, 0x0c,\n  0xa4, 0x05, 0x57, 0x06, 0x64, 0x04, 0x09, 0xf0, 0x3e, 0xf0, 0xbb, 0x04,\n  0x32, 0x0c, 0x46, 0x0d, 0xdb, 0x02, 0x20, 0xed, 0x21, 0xf1, 0x53, 0x06,\n  0x5c, 0x0c, 0x13, 0x07, 0xde, 0x08, 0x5a, 0xf5, 0xe8, 0xeb, 0x05, 0xfd,\n  0xe7, 0x0c, 0x5d, 0x08, 0xdb, 0x04, 0x7e, 0x05, 0x72, 0xf4, 0xc6, 0xef,\n  0x45, 0xfd, 0x7d, 0x0a, 0xaa, 0x09, 0x03, 0x02, 0xe7, 0xfe, 0x06, 0x01,\n  0x3d, 0xfa, 0xfa, 0xf3, 0xb9, 0x00, 0x5d, 0x08, 0xe4, 0x0c, 0xf0, 0x05,\n  0x31, 0xf1, 0xcf, 0xf0, 0xe2, 0xfe, 0xb7, 0x0a, 0x7e, 0x08, 0x83, 0x07,\n  0x9d, 0xfd, 0x72, 0xf2, 0x35, 0xf8, 0xdb, 0x02, 0x3e, 0x09, 0xdb, 0x07,\n  0xa0, 0xfe, 0x18, 0xf6, 0xfe, 0xf8, 0xcf, 0x01, 0xaf, 0x0a, 0xbc, 0x0a,\n  0x21, 0xfa, 0x47, 0xf3, 0x51, 0xfa, 0xbb, 0x02, 0x7a, 0x08, 0x7d, 0x0a,\n  0x93, 0xfd, 0xe4, 0xf4, 0xca, 0xf7, 0x75, 0x01, 0x25, 0x08, 0x4f, 0x04,\n  0x24, 0x01, 0x1d, 0x09, 0x16, 0xf9, 0x33, 0xec, 0xf0, 0xfe, 0x36, 0x0c,\n  0x9b, 0x07, 0x16, 0x04, 0x75, 0x01, 0xc3, 0xf2, 0x7c, 0xf4, 0x8c, 0x05,\n  0xbc, 0x12, 0x77, 0x03, 0x56, 0xef, 0x0f, 0xf3, 0xfa, 0x04, 0x9c, 0x0b,\n  0x34, 0x06, 0x02, 0x04, 0x01, 0xfa, 0x12, 0xf4, 0x17, 0xfd, 0xc1, 0x09,\n  0xee, 0x08, 0x69, 0xfb, 0x64, 0xf7, 0x4d, 0xfd, 0x23, 0x03, 0xc2, 0x04,\n  0x54, 0x01, 0x23, 0xfc, 0xa3, 0xfc, 0x83, 0x06, 0xc7, 0x06, 0xd3, 0xf7,\n  0xf3, 0xf5, 0x8b, 0x02, 0xf2, 0x0f, 0xf5, 0x03, 0x21, 0xf4, 0x16, 0xf7,\n  0x11, 0x00, 0x54, 0x04, 0x43, 0x02, 0x67, 0x01, 0x19, 0x02, 0x00, 0x08,\n  0xe2, 0xfe, 0x89, 0xf3, 0xbe, 0xf7, 0x8a, 0x01, 0x99, 0x08, 0xca, 0x04,\n  0xfb, 0x04, 0xfb, 0x03, 0x79, 0xf5, 0xa1, 0xf2, 0x37, 0x00, 0xd7, 0x09,\n  0x16, 0x0b, 0x01, 0x01, 0xd0, 0xf5, 0xa0, 0xf8, 0xe8, 0x00, 0x5b, 0x04,\n  0x25, 0x01, 0xdf, 0xfd, 0xd5, 0x02, 0x1f, 0x0a, 0x4b, 0xfd, 0xef, 0xf3,\n  0xee, 0xf7, 0x3a, 0x05, 0x0f, 0x08, 0xd3, 0x06, 0x6f, 0x08, 0xc0, 0xf3,\n  0x23, 0xed, 0xdb, 0x01, 0xdf, 0x0b, 0xd7, 0x0b, 0x13, 0x07, 0xe1, 0xf2,\n  0xa2, 0xf1, 0xc5, 0xfc, 0xcc, 0x05, 0x3f, 0x07, 0xe3, 0x02, 0x9a, 0xfe,\n  0x51, 0x02, 0xea, 0x0a, 0x09, 0xf6, 0xa2, 0xec, 0x0d, 0x01, 0xa7, 0x0c,\n  0xc0, 0x07, 0x06, 0x06, 0xae, 0xfe, 0x4d, 0xee, 0xff, 0xf5, 0x22, 0x07,\n  0xd7, 0x0d, 0x30, 0x0b, 0xc6, 0xf8, 0x94, 0xf0, 0xd6, 0xf9, 0x74, 0x05,\n  0x54, 0x09, 0xf7, 0x07, 0x69, 0xfe, 0xf1, 0xf5, 0x98, 0xfa, 0x67, 0x01,\n  0x2a, 0x06, 0x57, 0x04, 0x31, 0xfe, 0x94, 0xfb, 0xa2, 0xfb, 0xa1, 0xff,\n  0x5b, 0x05, 0xef, 0x0b, 0xa0, 0x00, 0x12, 0xf1, 0xfc, 0xf5, 0xb5, 0x03,\n  0x74, 0x0a, 0x5d, 0x02, 0x23, 0x04, 0x76, 0x08, 0xa9, 0xf3, 0x0d, 0xee,\n  0x73, 0xfe, 0xae, 0x0c, 0x04, 0x08, 0x07, 0x03, 0x6a, 0x05, 0x29, 0xf6,\n  0xcc, 0xef, 0x02, 0x00, 0x9a, 0x0a, 0x70, 0x07, 0xad, 0x00, 0x94, 0xfa,\n  0xf0, 0xfb, 0xa9, 0x02, 0x2d, 0x0c, 0x2e, 0x01, 0x2f, 0xf0, 0x80, 0xf6,\n  0x15, 0x03, 0x58, 0x09, 0x04, 0x06, 0xf4, 0xfe, 0x51, 0xfb, 0x3f, 0xfd,\n  0x53, 0xff, 0x7c, 0xfe, 0xff, 0x01, 0x1f, 0x03, 0xe0, 0x09, 0x8b, 0x03,\n  0x76, 0xf2, 0x53, 0xf3, 0xf1, 0x00, 0x5c, 0x09, 0x29, 0x0b, 0x57, 0x05,\n  0xd0, 0xf4, 0x73, 0xf3, 0xd5, 0xfc, 0x0f, 0x08, 0x0b, 0x07, 0x51, 0x02,\n  0x54, 0x09, 0xe5, 0xfb, 0xe0, 0xed, 0x73, 0xf7, 0x9d, 0x08, 0xe5, 0x0a,\n  0x05, 0x02, 0xd9, 0xfc, 0xa0, 0x01, 0xa0, 0x01, 0xbd, 0xf8, 0xdd, 0xfb,\n  0xb3, 0x03, 0x7c, 0x04, 0xcd, 0x03, 0xd3, 0x02, 0x3a, 0xf9, 0x11, 0xf5,\n  0xab, 0x01, 0x6e, 0x06, 0xb1, 0x0d, 0xb2, 0x07, 0xe7, 0xeb, 0x16, 0xed,\n  0x7c, 0x01, 0xbe, 0x10, 0xc0, 0x0e, 0x5d, 0xfc, 0x89, 0xf1, 0x50, 0xf7,\n  0x93, 0x04, 0xf8, 0x08, 0xfc, 0x04, 0xe8, 0x06, 0x5d, 0xfc, 0x5e, 0xf2,\n  0x86, 0xf9, 0x69, 0x02, 0x5a, 0x05, 0xbf, 0x03, 0xca, 0x00, 0xa4, 0xff,\n  0x96, 0xff, 0xbd, 0xff, 0xa1, 0xff, 0x27, 0x04, 0xd4, 0x0d, 0xfb, 0xf6,\n  0x04, 0xe7, 0x47, 0xfc, 0xff, 0x0e, 0x96, 0x0b, 0x53, 0x07, 0x07, 0xfd,\n  0xd8, 0xef, 0xff, 0xf6, 0xda, 0x04, 0x6c, 0x0b, 0x22, 0x07, 0x34, 0xfa,\n  0xf1, 0xf5, 0xd1, 0xff, 0x9b, 0x05, 0x75, 0x0b, 0x75, 0x02, 0x81, 0xf2,\n  0xb8, 0xf5, 0xee, 0xfe, 0xd0, 0x07, 0xd4, 0x05, 0x0a, 0x04, 0x46, 0x08,\n  0xda, 0xf8, 0x79, 0xf1, 0xcd, 0xf9, 0x38, 0x06, 0xb0, 0x08, 0x8b, 0x06,\n  0x44, 0x05, 0x8f, 0xf7, 0x4c, 0xf3, 0xdd, 0xfc, 0x9b, 0x06, 0xd0, 0x09,\n  0x13, 0x05, 0xd1, 0xf9, 0x8b, 0xf7, 0x7f, 0xfe, 0xd3, 0x03, 0x9d, 0x03,\n  0xfb, 0xff, 0xf7, 0xfe, 0xb0, 0xff, 0x65, 0xff, 0x72, 0xfe, 0xee, 0xfe,\n  0xfe, 0x00, 0xc3, 0x04, 0x80, 0x06, 0x3b, 0xfc, 0xe9, 0xf6, 0x9b, 0xfc,\n  0x0f, 0x03, 0xec, 0x05, 0x7b, 0x02, 0x8b, 0xfd, 0x2f, 0xfc, 0xe1, 0xfb,\n  0x29, 0x00, 0xff, 0x04, 0x1f, 0x03, 0xc1, 0x00, 0x9e, 0xff, 0x29, 0xfd,\n  0xf7, 0xfd, 0x82, 0x01, 0xb7, 0x01, 0xc2, 0x04, 0xd9, 0x03, 0xe6, 0xf6,\n  0xd7, 0xf4, 0x91, 0x02, 0x63, 0x07, 0xd0, 0x07, 0xd7, 0x0c, 0xf3, 0xf4,\n  0xad, 0xe8, 0x22, 0xfa, 0xff, 0x0c, 0x45, 0x0c, 0xbb, 0x07, 0xcc, 0xfe,\n  0x98, 0xf1, 0x0b, 0xf5, 0xf7, 0x03, 0x85, 0x0a, 0xec, 0x0a, 0xfc, 0x01,\n  0xdf, 0xf1, 0x52, 0xf6, 0x27, 0x01, 0x10, 0x0a, 0xa7, 0x07, 0xd0, 0xfb,\n  0xe1, 0xf8, 0xf1, 0xfa, 0x9c, 0x01, 0xda, 0x04, 0xb7, 0x0a, 0x9f, 0x03,\n  0x81, 0xf3, 0xe3, 0xf3, 0xcf, 0xff, 0xd7, 0x09, 0xba, 0x05, 0x1d, 0x03,\n  0x90, 0x05, 0xd9, 0xf7, 0xcc, 0xef, 0x09, 0xff, 0x52, 0x0a, 0xe5, 0x0a,\n  0xef, 0x05, 0xe6, 0xf6, 0x6a, 0xf3, 0xe5, 0xfd, 0xb5, 0x03, 0xcb, 0x03,\n  0x6a, 0x01, 0x57, 0x05, 0x1c, 0x07, 0xf4, 0xf8, 0x6b, 0xf2, 0xe4, 0xfb,\n  0x4f, 0x08, 0xb0, 0x0f, 0xde, 0x01, 0x87, 0xf2, 0x09, 0xf4, 0xa9, 0x01,\n  0x8d, 0x09, 0x70, 0x06, 0x8f, 0x09, 0xe5, 0xfa, 0x7e, 0xef, 0x59, 0xf7,\n  0x2f, 0x06, 0xd7, 0x0a, 0xd5, 0x02, 0x8d, 0xfe, 0xa3, 0x00, 0xdf, 0xfd,\n  0x1d, 0xfa, 0x03, 0x01, 0x79, 0x02, 0xe7, 0x09, 0x45, 0x0b, 0x43, 0xed,\n  0x7f, 0xe9, 0x76, 0x04, 0xe4, 0x0f, 0x40, 0x0f, 0x2b, 0x01, 0xed, 0xec,\n  0xb8, 0xf2, 0x07, 0x06, 0xd2, 0x0b, 0xcb, 0x03, 0x91, 0xfd, 0x05, 0x02,\n  0xfa, 0x05, 0x7d, 0xf8, 0x11, 0xf2, 0x57, 0xff, 0xb8, 0x0a, 0xff, 0x0b,\n  0xb4, 0xfe, 0xb0, 0xf3, 0xe1, 0xf8, 0x35, 0x00, 0x7e, 0x05, 0xc4, 0x04,\n  0x8f, 0x09, 0x7c, 0x01, 0xce, 0xed, 0x86, 0xf7, 0x3c, 0x07, 0x15, 0x0f,\n  0x49, 0x0a, 0x09, 0xf4, 0xf8, 0xed, 0x3d, 0xfc, 0xbf, 0x0a, 0xef, 0x08,\n  0xf5, 0x00, 0xfc, 0x04, 0x7c, 0xfe, 0xcf, 0xef, 0xe2, 0xf9, 0xea, 0x08,\n  0xf2, 0x08, 0xfb, 0x06, 0x5b, 0x02, 0x31, 0xf2, 0x04, 0xf6, 0xd3, 0x02,\n  0x23, 0x06, 0xd7, 0x02, 0x61, 0x00, 0x0a, 0x00, 0xd9, 0xfd, 0x60, 0xfe,\n  0xd3, 0x00, 0x6f, 0x01, 0xb3, 0xff, 0xa5, 0xfd, 0xe2, 0xfe, 0x57, 0x02,\n  0x0e, 0x06, 0x99, 0x03, 0x86, 0xf9, 0xc4, 0xf8, 0xa4, 0xff, 0xc5, 0x03,\n  0xcd, 0x02, 0x5a, 0xfe, 0x71, 0xfc, 0xd3, 0x00, 0xbf, 0x04, 0x51, 0x08,\n  0xe1, 0xff, 0x4f, 0xf4, 0x99, 0xf9, 0x0f, 0x02, 0x12, 0x05, 0x95, 0x02,\n  0x6b, 0xfd, 0x85, 0xfd, 0x13, 0x03, 0xdf, 0x0c, 0x48, 0xff, 0x37, 0xf1,\n  0x71, 0xf6, 0xfc, 0x01, 0x82, 0x09, 0x47, 0x05, 0xa2, 0x06, 0x3b, 0x00,\n  0xbc, 0xf2, 0x51, 0xf6, 0x6f, 0x02, 0xbe, 0x0a, 0x5e, 0x0a, 0x57, 0xfc,\n  0x9a, 0xf4, 0xf4, 0xf8, 0x6d, 0x02, 0xc7, 0x07, 0x4d, 0x03, 0x80, 0xff,\n  0xfa, 0xfe, 0x47, 0x08, 0x25, 0x03, 0xab, 0xf1, 0x8c, 0xf5, 0xdc, 0x00,\n  0x7f, 0x06, 0xe3, 0x04, 0x67, 0x01, 0x39, 0x01, 0xf3, 0x04, 0x23, 0xff,\n  0xc7, 0xf4, 0xfa, 0xf9, 0x3b, 0x05, 0x8a, 0x0a, 0xc7, 0x05, 0x3e, 0xf8,\n  0x00, 0xf6, 0x66, 0xfe, 0xe7, 0x04, 0x50, 0x05, 0x1c, 0x01, 0xd5, 0xfd,\n  0x6f, 0xfd, 0x72, 0xff, 0x36, 0xff, 0xab, 0xfe, 0x42, 0x01, 0x17, 0x04,\n  0x4e, 0x0b, 0xf3, 0xfd, 0xb0, 0xf1, 0x84, 0xf7, 0x27, 0x02, 0xcf, 0x08,\n  0x4b, 0x05, 0x0c, 0x07, 0x87, 0xfe, 0x39, 0xf3, 0xa0, 0xf7, 0x07, 0x06,\n  0x0a, 0x0a, 0x89, 0x00, 0x2e, 0xfa, 0x0a, 0xfa, 0x7d, 0x00, 0x44, 0x05,\n  0x1d, 0x03, 0xb5, 0x08, 0x49, 0x02, 0x2c, 0xf0, 0x1a, 0xf3, 0xdf, 0x03,\n  0x05, 0x0c, 0xb8, 0x0d, 0xb8, 0xfe, 0xee, 0xef, 0x70, 0xf4, 0x77, 0x04,\n  0x9e, 0x0a, 0x6a, 0x04, 0x6d, 0xfd, 0x00, 0x07, 0x0f, 0x02, 0x62, 0xec,\n  0xf9, 0xf8, 0x1c, 0x0a, 0x50, 0x09, 0x98, 0x00, 0x20, 0xff, 0xe9, 0xfc,\n  0xf1, 0xfb, 0x0e, 0x00, 0xf3, 0x02, 0xdf, 0x01, 0x93, 0x01, 0x6d, 0xfe,\n  0x95, 0xfc, 0x57, 0xff, 0x27, 0x02, 0x8b, 0x00, 0xaf, 0x03, 0x93, 0x11,\n  0x41, 0xf7, 0xf2, 0xe4, 0x6a, 0xf6, 0xcf, 0x0b, 0x0a, 0x0f, 0xdb, 0x02,\n  0x44, 0x00, 0x77, 0x03, 0x59, 0xf8, 0xf7, 0xf2, 0xe0, 0x00, 0x5f, 0x09,\n  0x01, 0x0a, 0x62, 0x04, 0x53, 0xf5, 0xda, 0xf3, 0xea, 0xfe, 0xd8, 0x07,\n  0xc3, 0x07, 0x37, 0x00, 0x75, 0xfa, 0x69, 0xfa, 0x58, 0xfe, 0xd5, 0x09,\n  0xa0, 0x07, 0x14, 0xfa, 0xe0, 0xf6, 0xd0, 0xfa, 0xe5, 0x03, 0xdf, 0x06,\n  0x4b, 0x02, 0x53, 0x00, 0x80, 0x00, 0x80, 0xfa, 0xd1, 0xfd, 0x7c, 0x01,\n  0x87, 0x0f, 0x4b, 0x05, 0xef, 0xe8, 0x3f, 0xef, 0x6a, 0x07, 0x95, 0x0f,\n  0x4c, 0x04, 0x47, 0xfd, 0x86, 0xff, 0x73, 0xfd, 0x00, 0xfc, 0xf1, 0x00,\n  0xef, 0x02, 0x5e, 0x01, 0x63, 0xff, 0xe7, 0xff, 0x4d, 0x00, 0xfc, 0xfe,\n  0xc4, 0xfe, 0x3b, 0x00, 0x30, 0x01, 0xf0, 0x01, 0x96, 0x01, 0xcd, 0xfd,\n  0xd1, 0xfb, 0x17, 0xff, 0x35, 0x03, 0x27, 0x05, 0x91, 0x03, 0x5f, 0xfd,\n  0x61, 0xf6, 0x80, 0xf9, 0xaf, 0x02, 0x92, 0x06, 0xd9, 0x03, 0x74, 0xff,\n  0x88, 0xfb, 0x2d, 0xfb, 0x03, 0x03, 0x5b, 0x04, 0x79, 0x0a, 0x29, 0x03,\n  0x60, 0xef, 0x80, 0xf3, 0x83, 0x04, 0x27, 0x0b, 0xf7, 0x03, 0x73, 0xfe,\n  0x2f, 0xff, 0xf7, 0xfe, 0xf7, 0xfc, 0x0c, 0xff, 0xf1, 0x01, 0x11, 0x03,\n  0xd7, 0x03, 0x4d, 0x00, 0x65, 0xf9, 0xa5, 0xf9, 0xa6, 0x01, 0x5b, 0x04,\n  0xce, 0xff, 0x7d, 0xff, 0xab, 0x05, 0x23, 0x03, 0x1d, 0xfb, 0x18, 0xfb,\n  0xd5, 0xfb, 0xd6, 0xfe, 0xf6, 0x01, 0x66, 0x09, 0xdf, 0x07, 0xd8, 0xf8,\n  0x4a, 0xf6, 0x3e, 0xfb, 0x81, 0x03, 0xdb, 0x05, 0x35, 0x03, 0xdb, 0xfe,\n  0x80, 0x05, 0x8b, 0x06, 0xab, 0xf4, 0x88, 0xf2, 0x7f, 0xfd, 0x39, 0x08,\n  0xf3, 0x07, 0x27, 0x02, 0xae, 0x05, 0x3d, 0xfe, 0xf1, 0xf1, 0xf1, 0xf7,\n  0xd8, 0x08, 0x32, 0x0e, 0x0b, 0xff, 0xd9, 0xf4, 0x2d, 0xf8, 0x7b, 0x02,\n  0xd8, 0x0a, 0xa7, 0x0a, 0x71, 0xf9, 0xd7, 0xf1, 0x25, 0xfa, 0x7f, 0x07,\n  0x82, 0x07, 0x64, 0x06, 0x7b, 0x05, 0xae, 0xf5, 0xf9, 0xf1, 0xc7, 0xfc,\n  0x2d, 0x08, 0x2d, 0x08, 0xe4, 0x01, 0x13, 0x05, 0x7e, 0xff, 0xa7, 0xf1,\n  0xfe, 0xf6, 0xb8, 0x06, 0xc4, 0x08, 0x57, 0x05, 0x0f, 0x09, 0x79, 0xf7,\n  0xe3, 0xed, 0x05, 0xfa, 0xd2, 0x0a, 0x0e, 0x09, 0xac, 0x08, 0x3f, 0x02,\n  0xbf, 0xf0, 0xcf, 0xf2, 0x4f, 0x02, 0x71, 0x0b, 0x2b, 0x05, 0x51, 0xfe,\n  0x77, 0xfd, 0xa4, 0xff, 0xf9, 0xff, 0xf2, 0xff, 0x38, 0x00, 0x2f, 0x00,\n  0x11, 0x00, 0xa3, 0x00, 0xa3, 0x04, 0x5a, 0x01, 0x9b, 0xfc, 0x19, 0xfe,\n  0x06, 0xfa, 0xee, 0xf9, 0x4b, 0x02, 0x12, 0x08, 0x77, 0x08, 0x20, 0xff,\n  0xf6, 0xf6, 0x7d, 0xfa, 0x19, 0x00, 0x81, 0x02, 0xa7, 0x03, 0x33, 0x02,\n  0xe7, 0x05, 0x22, 0x04, 0x87, 0xf6, 0xfb, 0xf5, 0x9d, 0xfe, 0x17, 0x04,\n  0x1f, 0x04, 0x77, 0x02, 0xc5, 0x03, 0x9e, 0x04, 0x0b, 0xf5, 0x5c, 0xf5,\n  0x7b, 0x03, 0xe6, 0x0d, 0x94, 0x0b, 0x29, 0xf5, 0xc8, 0xef, 0xb5, 0xfa,\n  0x2c, 0x09, 0x75, 0x08, 0xb8, 0x04, 0xfc, 0x05, 0x6c, 0xf7, 0x9a, 0xf0,\n  0x69, 0xfd, 0xa0, 0x09, 0x26, 0x09, 0x67, 0x07, 0x81, 0xfb, 0xaa, 0xf2,\n  0xa9, 0xf9, 0x2f, 0x03, 0x94, 0x06, 0x8e, 0x05, 0x34, 0x08, 0x60, 0xfb,\n  0x78, 0xf3, 0x55, 0xfa, 0x37, 0x03, 0xaf, 0x06, 0xf1, 0x03, 0x6f, 0x05,\n  0x1b, 0xff, 0x44, 0xf6, 0xfc, 0xf9, 0xbb, 0x01, 0xa7, 0x06, 0x76, 0x04,\n  0xdb, 0xfd, 0xa2, 0xfb, 0x49, 0xfb, 0x50, 0x00, 0xa3, 0x04, 0xd3, 0x04,\n  0x07, 0x0a, 0x39, 0xfc, 0xe4, 0xee, 0x21, 0xf8, 0x88, 0x07, 0x2a, 0x0b,\n  0x45, 0x0b, 0x05, 0xfb, 0x97, 0xed, 0x79, 0xf9, 0xfc, 0x09, 0x5f, 0x08,\n  0x39, 0x08, 0xef, 0x02, 0x6f, 0xef, 0x7f, 0xf2, 0x88, 0x04, 0xb9, 0x0b,\n  0x58, 0x04, 0xed, 0xfd, 0xe8, 0x00, 0x27, 0x06, 0xc9, 0xfb, 0xc3, 0xf2,\n  0xb6, 0xfb, 0x05, 0x09, 0x07, 0x0a, 0xcf, 0xfe, 0xbd, 0xf8, 0xb5, 0xfb,\n  0x0b, 0xff, 0x75, 0x02, 0x85, 0x03, 0xed, 0x03, 0x47, 0x09, 0xa9, 0xfb,\n  0x81, 0xf2, 0x81, 0xf8, 0x61, 0x03, 0xaa, 0x08, 0xf7, 0x03, 0x18, 0xff,\n  0x19, 0x02, 0x7b, 0xff, 0x8a, 0xf8, 0xd7, 0xfc, 0x30, 0x08, 0x94, 0x0d,\n  0xf1, 0xf5, 0x71, 0xec, 0xe6, 0x00, 0xff, 0x0b, 0x78, 0x0b, 0x47, 0x05,\n  0x2b, 0xf4, 0x4c, 0xf1, 0xac, 0xfe, 0xe1, 0x08, 0x86, 0x0a, 0xdb, 0x01,\n  0x99, 0xf5, 0x0d, 0xf9, 0xcb, 0x06, 0xee, 0x08, 0x94, 0xfe, 0xd4, 0xf9,\n  0xc5, 0xfb, 0x22, 0x00, 0x43, 0x04, 0xb1, 0x02, 0x60, 0xff, 0xe1, 0xfc,\n  0x7d, 0xfc, 0xc2, 0xff, 0xa8, 0x07, 0xa7, 0x08, 0x36, 0xfa, 0x01, 0xf6,\n  0x78, 0xfb, 0xf3, 0x02, 0xb7, 0x05, 0x1f, 0x07, 0x17, 0x03, 0xeb, 0xf7,\n  0x21, 0xf8, 0xd5, 0xfe, 0x3f, 0x05, 0x50, 0x06, 0xf6, 0xff, 0x89, 0xfb,\n  0x3e, 0xfb, 0x5a, 0xfe, 0x24, 0x04, 0x0c, 0x04, 0x6b, 0x06, 0x3f, 0x04,\n  0x48, 0xf6, 0x4b, 0xf5, 0xa8, 0xfe, 0x28, 0x04, 0xee, 0x05, 0x6c, 0x07,\n  0x3a, 0xfe, 0x9a, 0xf7, 0x89, 0xfb, 0x8b, 0x00, 0xc7, 0x04, 0x3e, 0x09,\n  0x1c, 0x00, 0x66, 0xf6, 0xc5, 0xf8, 0x77, 0x00, 0xbb, 0x06, 0xf7, 0x03,\n  0xc7, 0x08, 0x6b, 0x00, 0xdb, 0xf1, 0xab, 0xf5, 0x09, 0x02, 0x84, 0x09,\n  0xe3, 0x06, 0x8f, 0x06, 0x74, 0xfa, 0xe6, 0xf3, 0x34, 0xfa, 0xe1, 0x03,\n  0x8a, 0x06, 0x13, 0x07, 0xe8, 0x06, 0x8b, 0xf7, 0xda, 0xf3, 0xc6, 0xfb,\n  0x87, 0x05, 0x52, 0x07, 0xb3, 0x06, 0x2b, 0x03, 0xde, 0xf3, 0x06, 0xf5,\n  0x8d, 0x02, 0x77, 0x0c, 0x5c, 0x0c, 0xb5, 0xf8, 0x63, 0xef, 0x99, 0xf9,\n  0x88, 0x09, 0x21, 0x08, 0x5e, 0x08, 0xb7, 0x02, 0x99, 0xf0, 0xea, 0xf2,\n  0x45, 0x03, 0x46, 0x0b, 0xb4, 0x05, 0x58, 0x07, 0xb9, 0xfc, 0x07, 0xf1,\n  0x52, 0xf7, 0x1f, 0x04, 0x0e, 0x0a, 0xcb, 0x03, 0xc7, 0x02, 0x1f, 0x04,\n  0x92, 0xf6, 0x6a, 0xf1, 0x73, 0x02, 0x9a, 0x09, 0xe4, 0x0c, 0x67, 0x03,\n  0xe9, 0xf0, 0x27, 0xf2, 0x15, 0x01, 0xef, 0x09, 0x2c, 0x09, 0x7a, 0x07,\n  0xf3, 0xf7, 0xf3, 0xf2, 0x39, 0xfa, 0x9f, 0x05, 0x6f, 0x08, 0x63, 0x02,\n  0xf1, 0xfd, 0xb6, 0x00, 0xb5, 0x03, 0x45, 0xf9, 0x8a, 0xfa, 0x82, 0x01,\n  0x86, 0x0a, 0x51, 0x0d, 0xa4, 0xf2, 0xf1, 0xe9, 0x40, 0xfe, 0x6c, 0x0e,\n  0xa9, 0x09, 0xdb, 0x02, 0x59, 0xfb, 0x78, 0xf6, 0x06, 0xfe, 0x30, 0x05,\n  0xa3, 0x04, 0xf3, 0x03, 0x2f, 0x02, 0xa2, 0xf8, 0xf9, 0xf5, 0x55, 0x00,\n  0x24, 0x08, 0xb7, 0x08, 0x69, 0xfb, 0xd3, 0xf7, 0xdc, 0x04, 0x33, 0x01,\n  0x19, 0xfc, 0xad, 0xfc, 0x84, 0xff, 0xb1, 0x03, 0xe7, 0x03, 0xb6, 0x00,\n  0xe3, 0xfd, 0x03, 0x03, 0xc3, 0x06, 0xf2, 0xf9, 0xd9, 0xf4, 0xb1, 0xfb,\n  0x34, 0x04, 0x39, 0x08, 0xe2, 0x09, 0x4b, 0xfe, 0x5b, 0xf4, 0x3a, 0xf9,\n  0x74, 0x00, 0x7a, 0x06, 0xb3, 0x03, 0x27, 0x04, 0xc4, 0x01, 0xa7, 0xf6,\n  0x7a, 0xf9, 0xd2, 0x06, 0xb8, 0x0f, 0x55, 0xfc, 0x3a, 0xf0, 0xd7, 0xf7,\n  0x3a, 0x04, 0xa8, 0x08, 0xf7, 0x09, 0x07, 0x01, 0xb8, 0xf5, 0xa9, 0xf7,\n  0x5e, 0xfe, 0xfc, 0x05, 0xa3, 0x05, 0xd0, 0x00, 0xe8, 0x00, 0x67, 0x02,\n  0xcd, 0xf9, 0xa1, 0xf9, 0x15, 0x02, 0x33, 0x05, 0x5f, 0x03, 0x32, 0x04,\n  0xcb, 0xfc, 0xd0, 0xf5, 0x75, 0xfb, 0x6c, 0x0c, 0xad, 0x0a, 0xe7, 0xf5,\n  0x49, 0xf4, 0x93, 0xfe, 0x7f, 0x04, 0xf3, 0x03, 0x63, 0x01, 0xf3, 0x02,\n  0x1f, 0x09, 0xb4, 0xfb, 0x91, 0xf1, 0xbc, 0xf9, 0xb7, 0x05, 0x10, 0x09,\n  0xf7, 0x01, 0x41, 0x00, 0xeb, 0x06, 0x59, 0xfa, 0x3a, 0xf3, 0xe2, 0xfa,\n  0x57, 0x05, 0xfe, 0x07, 0x86, 0x04, 0x39, 0x02, 0x6d, 0xf8, 0x41, 0xf9,\n  0x19, 0x02, 0x70, 0x0c, 0xb4, 0x05, 0x90, 0xf3, 0xb9, 0xf4, 0x1c, 0x00,\n  0x2f, 0x09, 0xcb, 0x05, 0x4c, 0xfe, 0xa4, 0xfa, 0x64, 0xfb, 0x69, 0x02,\n  0x0b, 0x04, 0x48, 0x07, 0x42, 0x06, 0xf7, 0xf5, 0x06, 0xf3, 0x73, 0xfd,\n  0xeb, 0x07, 0xff, 0x07, 0x0c, 0x07, 0xeb, 0xfd, 0x72, 0xf4, 0xd6, 0xf9,\n  0xe8, 0x01, 0x8d, 0x08, 0x5a, 0x05, 0xb3, 0xfc, 0x9a, 0xf9, 0xf9, 0xfa,\n  0x69, 0x02, 0x5b, 0x05, 0xc9, 0x02, 0x23, 0xff, 0xf1, 0x09, 0xc2, 0xff,\n  0x66, 0xeb, 0x81, 0xf8, 0x60, 0x0a, 0x39, 0x0a, 0x7b, 0x02, 0x64, 0x04,\n  0xf1, 0xf9, 0x34, 0xf1, 0x01, 0xfe, 0x5f, 0x09, 0xcc, 0x07, 0x3e, 0x07,\n  0xeb, 0xfd, 0xa8, 0xf0, 0xce, 0xf6, 0x0c, 0x05, 0xb7, 0x08, 0x64, 0x06,\n  0x07, 0x07, 0xe9, 0xf8, 0xd4, 0xf3, 0x39, 0xfb, 0x23, 0x03, 0xaf, 0x06,\n  0x79, 0x03, 0xd3, 0x00, 0xfb, 0x05, 0x44, 0xff, 0x58, 0xf1, 0x2e, 0xf9,\n  0x67, 0x07, 0x00, 0x0a, 0x66, 0x08, 0x35, 0xfc, 0x6c, 0xf2, 0x6a, 0xf9,\n  0x05, 0x03, 0x4e, 0x06, 0x23, 0x05, 0xc4, 0x07, 0x61, 0xfc, 0x8a, 0xf4,\n  0x2c, 0xfa, 0x45, 0x02, 0xcd, 0x0a, 0x63, 0x05, 0xce, 0xf8, 0x59, 0xf6,\n  0x01, 0x00, 0x83, 0x07, 0xff, 0x03, 0xfe, 0x07, 0x3e, 0x00, 0x46, 0xee,\n  0xa7, 0xf6, 0xb7, 0x07, 0x35, 0x0a, 0x93, 0x02, 0xbb, 0x07, 0x4f, 0xfd,\n  0xe7, 0xf0, 0x66, 0xf8, 0x81, 0x02, 0xf0, 0x07, 0x6b, 0x04, 0x52, 0x01,\n  0x54, 0x04, 0x56, 0x00, 0x21, 0xf3, 0xd9, 0xf7, 0x77, 0x05, 0xd9, 0x0a,\n  0x67, 0x0b, 0xec, 0xf9, 0xab, 0xf1, 0xd1, 0xf9, 0xdf, 0x02, 0xda, 0x06,\n  0xf1, 0x03, 0xc2, 0x00, 0xf3, 0x04, 0x4f, 0x01, 0x29, 0xf3, 0x8b, 0xf7,\n  0x17, 0x05, 0x05, 0x0a, 0xab, 0x02, 0x1a, 0xfb, 0x8f, 0xfc, 0xc0, 0x07,\n  0xd7, 0x05, 0xfc, 0xf5, 0x10, 0xf4, 0x2c, 0xff, 0x8f, 0x08, 0x7e, 0x0c,\n  0x95, 0x02, 0x3b, 0xf5, 0xd3, 0xf7, 0x1a, 0x00, 0x9b, 0x03, 0x35, 0x02,\n  0xe3, 0x00, 0x2d, 0x03, 0x9e, 0x07, 0xde, 0xfb, 0x67, 0xf4, 0x06, 0xfa,\n  0xb1, 0x03, 0xe4, 0x07, 0x45, 0x03, 0x48, 0x05, 0x75, 0x01, 0x86, 0xf3,\n  0xb9, 0xf5, 0x81, 0x03, 0x14, 0x0a, 0x38, 0x09, 0xd9, 0xfe, 0xdc, 0xf4,\n  0xb4, 0xf9, 0x82, 0x01, 0x37, 0x04, 0x81, 0x01, 0xfb, 0x03, 0x0b, 0x07,\n  0xcd, 0xfa, 0x43, 0xf6, 0x99, 0xfa, 0x3d, 0x03, 0x6b, 0x06, 0xeb, 0x06,\n  0x77, 0x06, 0x7f, 0xf5, 0x40, 0xf1, 0x79, 0x01, 0x95, 0x0a, 0x9a, 0x0d,\n  0x86, 0xff, 0x03, 0xef, 0x66, 0xf5, 0xb7, 0x05, 0x34, 0x0a, 0xc0, 0x05,\n  0xa4, 0x05, 0x5e, 0xf9, 0xb2, 0xf1, 0xf2, 0xfb, 0x3a, 0x07, 0x71, 0x08,\n  0xf3, 0xff, 0x7d, 0x03, 0x94, 0x01, 0x4a, 0xf6, 0x7c, 0xf8, 0x66, 0xff,\n  0x4b, 0x06, 0xfb, 0x04, 0xeb, 0x05, 0x3f, 0x03, 0x4a, 0xf6, 0x99, 0xf5,\n  0x7c, 0xfe, 0xd0, 0x06, 0x9f, 0x05, 0x71, 0x02, 0x2a, 0x08, 0x84, 0xfb,\n  0x2e, 0xf2, 0x46, 0xf9, 0x54, 0x04, 0x20, 0x08, 0x8a, 0x06, 0xc0, 0x04,\n  0xe6, 0xf8, 0x98, 0xf4, 0xda, 0xfb, 0x6b, 0x06, 0xc0, 0x0d, 0xd3, 0x02,\n  0xe8, 0xf4, 0x9b, 0xf5, 0xc6, 0xff, 0x78, 0x08, 0xc0, 0x04, 0xb6, 0x04,\n  0x32, 0x04, 0xfc, 0xf4, 0x91, 0xf2, 0xa5, 0x01, 0xdf, 0x09, 0x82, 0x09,\n  0xbf, 0x03, 0x29, 0xf6, 0x5a, 0xf5, 0xcf, 0xfe, 0x7e, 0x06, 0x5b, 0x07,\n  0x0f, 0x01, 0x28, 0xfb, 0x61, 0xfc, 0x12, 0xff, 0x87, 0xff, 0x9b, 0x00,\n  0x8e, 0x04, 0x30, 0x0a, 0x6f, 0xfd, 0xc2, 0xf2, 0x15, 0xf8, 0xd8, 0x04,\n  0xe0, 0x08, 0xe3, 0x02, 0x31, 0x02, 0x73, 0xfd, 0x19, 0xf7, 0x33, 0xff,\n  0x60, 0x04, 0x10, 0x09, 0x58, 0x09, 0xb1, 0xf3, 0x5d, 0xed, 0x9f, 0xfe,\n  0x90, 0x0b, 0x71, 0x0b, 0xd3, 0x04, 0xaf, 0xf7, 0x0e, 0xf6, 0x3d, 0xfe,\n  0xc9, 0x03, 0xc1, 0x02, 0x0d, 0x00, 0x7d, 0x00, 0x3f, 0x03, 0xe8, 0x06,\n  0x2b, 0xfd, 0x03, 0xf5, 0x29, 0xfb, 0x33, 0x04, 0x7b, 0x07, 0x1f, 0x02,\n  0xab, 0xfc, 0x65, 0xfc, 0x4a, 0xff, 0x94, 0x01, 0x1b, 0x02, 0xca, 0x00,\n  0xed, 0xfe, 0xba, 0xfe, 0x86, 0xff, 0x88, 0x00, 0xb6, 0x00, 0x8b, 0x00,\n  0x93, 0xff, 0x0a, 0xfe, 0x43, 0xfd, 0x9b, 0x03, 0xd1, 0x08, 0xeb, 0xfd,\n  0x5a, 0xf8, 0x21, 0xfb, 0x8c, 0xff, 0xe1, 0x03, 0x43, 0x04, 0x03, 0x01,\n  0xd9, 0x01, 0x29, 0x02, 0x68, 0xfa, 0x89, 0xf8, 0x01, 0x02, 0x04, 0x04,\n  0x9f, 0x0b, 0x97, 0x06, 0x16, 0xee, 0x47, 0xef, 0xc1, 0x02, 0xb5, 0x0d,\n  0xf0, 0x05, 0x0c, 0x01, 0x7a, 0x04, 0xf9, 0xf7, 0x00, 0xf2, 0x28, 0x01,\n  0xc1, 0x0c, 0x97, 0x04, 0x01, 0xf8, 0x8a, 0xfb, 0x4a, 0x04, 0x44, 0x0c,\n  0x8e, 0x00, 0x03, 0xf1, 0x59, 0xf7, 0x19, 0x02, 0x62, 0x07, 0x23, 0x03,\n  0x37, 0x04, 0x3e, 0x07, 0x84, 0xf8, 0xac, 0xf3, 0x34, 0xfb, 0x38, 0x06,\n  0x9f, 0x07, 0xf9, 0x02, 0x3e, 0xff, 0x05, 0xfc, 0x85, 0xfd, 0xe3, 0x00,\n  0xf0, 0x01, 0xf9, 0x02, 0x50, 0x0b, 0x1d, 0xfc, 0xaa, 0xed, 0x22, 0xf9,\n  0x83, 0x07, 0x4d, 0x09, 0x33, 0x02, 0xba, 0xfb, 0xf9, 0xfb, 0x63, 0x05,\n  0xe5, 0x02, 0x39, 0xfc, 0xb5, 0xfa, 0x54, 0xfe, 0xf5, 0x03, 0x63, 0x05,\n  0x3a, 0x07, 0x9d, 0xfd, 0xb6, 0xf4, 0x46, 0xfa, 0x13, 0x03, 0xe7, 0x07,\n  0x2f, 0x04, 0x03, 0xfd, 0x1d, 0xfb, 0xb4, 0xfe, 0x4e, 0x01, 0x27, 0x02,\n  0xe2, 0xfe, 0xd7, 0xfc, 0x3e, 0x00, 0xdf, 0x04, 0x0f, 0x0b, 0x73, 0xfd,\n  0xfa, 0xf0, 0xbb, 0xf7, 0x9f, 0x05, 0xa5, 0x09, 0x69, 0x02, 0xcf, 0x02,\n  0xa5, 0x02, 0xdb, 0xf4, 0x8e, 0xf5, 0x7b, 0x04, 0xc0, 0x08, 0xf7, 0x06,\n  0xd3, 0x04, 0x1f, 0xf7, 0x16, 0xf1, 0x39, 0xfd, 0x22, 0x09, 0xfa, 0x07,\n  0xaf, 0x09, 0x0b, 0xfd, 0x72, 0xf1, 0xd3, 0xf6, 0x3a, 0x04, 0xd2, 0x08,\n  0x04, 0x08, 0x1a, 0x06, 0xee, 0xf4, 0x58, 0xf1, 0x8f, 0x00, 0xd7, 0x09,\n  0xd6, 0x05, 0x19, 0xfe, 0x2d, 0x01, 0x56, 0x0a, 0xf1, 0xf7, 0xa1, 0xed,\n  0x89, 0xfd, 0x60, 0x0b, 0x2f, 0x09, 0xe8, 0x06, 0xd9, 0xfc, 0xa7, 0xf1,\n  0x4d, 0xfa, 0xc2, 0x06, 0xcb, 0x06, 0x01, 0x00, 0xa2, 0xfb, 0x47, 0xfc,\n  0xbb, 0x01, 0x23, 0x03, 0xb3, 0x04, 0x89, 0x08, 0xe6, 0xf9, 0x92, 0xf2,\n  0xba, 0xfa, 0x16, 0x05, 0xf7, 0x07, 0x4f, 0x07, 0x3a, 0x00, 0xec, 0xf6,\n  0xbc, 0xf9, 0x68, 0x00, 0x0f, 0x05, 0x52, 0x05, 0x6e, 0x00, 0xe5, 0xfb,\n  0xf1, 0xfc, 0xa0, 0xfe, 0x6b, 0x00, 0x1d, 0x03, 0x53, 0x05, 0xb4, 0x01,\n  0xc4, 0xfa, 0xc1, 0xfa, 0xf0, 0xfe, 0xe2, 0x00, 0x9a, 0x01, 0xbf, 0x02,\n  0x7d, 0x03, 0xb3, 0x03, 0x37, 0xfe, 0x21, 0xf8, 0xc1, 0xfb, 0xd5, 0x02,\n  0x53, 0x04, 0x46, 0x01, 0xab, 0xfe, 0x64, 0xfe, 0xa4, 0xff, 0xbe, 0x00,\n  0xf2, 0x00, 0x3a, 0x00, 0x78, 0xff, 0x71, 0xff, 0xf9, 0xff, 0x4d, 0x00,\n  0x10, 0x00, 0xa6, 0xfe, 0x91, 0xfd, 0x98, 0x00, 0xdf, 0x02, 0x9c, 0x01,\n  0x00, 0x00, 0x03, 0x01, 0x37, 0x0a, 0xc1, 0xfd, 0xd4, 0xef, 0x60, 0xf6,\n  0xc7, 0x05, 0xc6, 0x09, 0x2d, 0x08, 0x73, 0x05, 0xbc, 0xf5, 0x5f, 0xf3,\n  0xdb, 0xfc, 0xfe, 0x07, 0x00, 0x07, 0x9f, 0x02, 0x91, 0x02, 0xd1, 0xf8,\n  0xa6, 0xf7, 0x27, 0x02, 0x78, 0x07, 0x80, 0x0c, 0x07, 0xfd, 0x84, 0xee,\n  0x2b, 0xf7, 0xc3, 0x05, 0xd7, 0x0a, 0x3f, 0x08, 0x43, 0xfe, 0x47, 0xf6,\n  0x71, 0xfa, 0xc8, 0xff, 0x89, 0x03, 0xef, 0x03, 0x49, 0x02, 0xcf, 0x07,\n  0x62, 0xff, 0xb9, 0xf2, 0x41, 0xf7, 0xf9, 0x02, 0x4d, 0x09, 0x71, 0x03,\n  0xfb, 0x03, 0x6f, 0x04, 0x89, 0xf6, 0x37, 0xf5, 0x2b, 0xfd, 0x4b, 0x05,\n  0x7f, 0x06, 0x23, 0x03, 0xc2, 0x07, 0x65, 0xfc, 0x29, 0xf0, 0x7d, 0xfa,\n  0x92, 0x08, 0xbe, 0x08, 0xd9, 0x09, 0xcb, 0xfc, 0xfc, 0xed, 0xa5, 0xf8,\n  0x67, 0x08, 0x5f, 0x09, 0x11, 0x03, 0x6a, 0x05, 0x26, 0xfb, 0x89, 0xf0,\n  0xe8, 0xfb, 0xcd, 0x08, 0x24, 0x07, 0x56, 0x00, 0x4d, 0xfd, 0xd0, 0x09,\n  0x09, 0x02, 0x0f, 0xf0, 0xdf, 0xf4, 0x71, 0x03, 0x69, 0x0a, 0x87, 0x07,\n  0xc3, 0x04, 0xae, 0xf8, 0x9b, 0xf5, 0x59, 0xfd, 0x3b, 0x07, 0x9f, 0x05,\n  0xbd, 0xfe, 0x45, 0xf9, 0x7f, 0xfd, 0xa1, 0x03, 0x1c, 0x08, 0x81, 0x08,\n  0x93, 0xf7, 0x3c, 0xf2, 0xd1, 0xfb, 0x60, 0x07, 0xf2, 0x07, 0xaf, 0x04,\n  0x61, 0x02, 0x4d, 0xf9, 0xb1, 0xf6, 0x19, 0xfe, 0x8f, 0x04, 0x40, 0x06,\n  0xa6, 0x01, 0x0c, 0xfb, 0xf6, 0xfa, 0x62, 0x06, 0xd6, 0x05, 0x95, 0xfb,\n  0x0c, 0xf8, 0x0d, 0xfe, 0x07, 0x05, 0x65, 0x09, 0xfb, 0x04, 0xf0, 0xf6,\n  0x11, 0xf6, 0x51, 0xfe, 0x27, 0x05, 0x78, 0x07, 0x4b, 0x04, 0x9c, 0xfb,\n  0x73, 0xf7, 0x85, 0xfc, 0x00, 0x04, 0x8f, 0x0a, 0x9b, 0x05, 0x1f, 0xf7,\n  0xb3, 0xf6, 0x61, 0xfd, 0x0e, 0x07, 0x2e, 0x08, 0xc1, 0xfe, 0xb9, 0xf9,\n  0xc1, 0xfa, 0x79, 0x01, 0x18, 0x05, 0xfd, 0x08, 0xb3, 0x00, 0xe8, 0xf4,\n  0x4c, 0xf6, 0x47, 0x02, 0x57, 0x08, 0xee, 0x05, 0xe3, 0x07, 0xd1, 0xf9,\n  0x0e, 0xf1, 0xba, 0xfb, 0xb3, 0x07, 0xb0, 0x08, 0x03, 0x05, 0x7a, 0xfb,\n  0xe3, 0xf6, 0x90, 0xfb, 0xdb, 0x02, 0xe4, 0x05, 0x67, 0x04, 0xe4, 0x05,\n  0xa1, 0xfc, 0x4b, 0xf4, 0xd6, 0xfa, 0x46, 0x04, 0x4e, 0x06, 0xc7, 0x00,\n  0x7f, 0x01, 0x0b, 0x06, 0x15, 0xfb, 0xc7, 0xf4, 0x7a, 0xff, 0xff, 0x08,\n  0x8f, 0x03, 0xd3, 0xfc, 0x27, 0xfc, 0xab, 0xff, 0x94, 0x00, 0x45, 0xff,\n  0x87, 0xff, 0x58, 0x07, 0xbe, 0x05, 0xbd, 0xf8, 0x77, 0xf6, 0xcf, 0xfc,\n  0xe7, 0x05, 0xfa, 0x05, 0x81, 0x02, 0x1e, 0x06, 0x0b, 0xfd, 0x28, 0xf1,\n  0x58, 0xfa, 0xaa, 0x07, 0xc4, 0x07, 0x00, 0x0a, 0x60, 0xff, 0xb9, 0xf0,\n  0xa0, 0xf5, 0x83, 0x03, 0x5a, 0x0a, 0xe9, 0x03, 0xd3, 0x00, 0x93, 0x04,\n  0x71, 0xf9, 0x47, 0xf3, 0xbe, 0x00, 0xf9, 0x0b, 0x9f, 0x09, 0xf8, 0xf7,\n  0xab, 0xf2, 0xa0, 0xfe, 0x92, 0x09, 0x60, 0x0b, 0x53, 0xfd, 0xdc, 0xf3,\n  0x4c, 0xfa, 0x97, 0x04, 0x17, 0x0a, 0xfd, 0x02, 0xb8, 0xf7, 0xb1, 0xf8,\n  0x18, 0x05, 0x70, 0x09, 0x88, 0xfe, 0x21, 0xf9, 0x29, 0xfc, 0xa7, 0x00,\n  0x79, 0x03, 0xd9, 0x03, 0x47, 0xff, 0x1d, 0xfc, 0x29, 0x03, 0x78, 0x05,\n  0x99, 0xfb, 0x1e, 0xfa, 0x31, 0xfd, 0x36, 0x01, 0xed, 0x02, 0xe3, 0x06,\n  0xec, 0x06, 0xf1, 0xf8, 0x56, 0xf6, 0xb9, 0xfc, 0x69, 0x02, 0x67, 0x04,\n  0x0b, 0x03, 0x3c, 0x01, 0x32, 0x07, 0x76, 0xfe, 0x3a, 0xf1, 0xc8, 0xf9,\n  0x07, 0x0b, 0x80, 0x0b, 0xb6, 0xfb, 0xe1, 0xf5, 0x26, 0xfb, 0x56, 0x06,\n  0x5a, 0x0b, 0x96, 0xff, 0x7c, 0xf6, 0x99, 0xf8, 0xae, 0x01, 0xdf, 0x06,\n  0x9a, 0x04, 0x64, 0x06, 0xdd, 0xfd, 0x09, 0xf3, 0x35, 0xf9, 0x87, 0x04,\n  0xa0, 0x09, 0xd2, 0x06, 0x77, 0xfc, 0x1f, 0xf5, 0xe9, 0xfa, 0x32, 0x04,\n  0x15, 0x0b, 0x8f, 0x06, 0xe4, 0xf7, 0x1c, 0xf6, 0xf5, 0xfc, 0xdd, 0x03,\n  0x2e, 0x05, 0x8d, 0x01, 0xa1, 0xff, 0x03, 0xff, 0x6f, 0x0a, 0xff, 0x01,\n  0xbb, 0xf0, 0xf4, 0xf4, 0x5b, 0x02, 0x98, 0x09, 0xa9, 0x0a, 0x97, 0x02,\n  0x16, 0xf5, 0xd4, 0xf5, 0x89, 0xff, 0x16, 0x08, 0xe6, 0x04, 0x35, 0x03,\n  0x0b, 0x05, 0xea, 0xf7, 0x8f, 0xf4, 0xf6, 0x01, 0x5b, 0x06, 0x6d, 0x02,\n  0x52, 0xfe, 0x15, 0xfc, 0xd9, 0xfd, 0x29, 0x03, 0x19, 0x0a, 0x48, 0x01,\n  0x51, 0xf5, 0x70, 0xf7, 0xed, 0x01, 0xd6, 0x07, 0xdf, 0x04, 0x42, 0x06,\n  0xaf, 0xfc, 0x62, 0xf3, 0x7d, 0xf9, 0xbf, 0x06, 0x5d, 0x0b, 0xd1, 0xff,\n  0xda, 0xf8, 0x22, 0xf9, 0x42, 0x01, 0x23, 0x05, 0x99, 0x03, 0xc1, 0xfe,\n  0x68, 0x05, 0x2b, 0x07, 0x8b, 0xf4, 0x41, 0xf3, 0x07, 0xfd, 0x6f, 0x08,\n  0xda, 0x06, 0x03, 0x05, 0x17, 0x05, 0x2f, 0xf7, 0x61, 0xf3, 0xd3, 0xfd,\n  0x4a, 0x08, 0x10, 0x07, 0xb7, 0x06, 0xc3, 0xfe, 0xff, 0xf3, 0x8a, 0xf8,\n  0x89, 0x02, 0x48, 0x08, 0x37, 0x07, 0x5e, 0xfe, 0x78, 0xf8, 0x21, 0xfb,\n  0x8d, 0xff, 0xf5, 0x03, 0x21, 0x0a, 0x7f, 0x01, 0x2a, 0xf7, 0x52, 0xf7,\n  0x05, 0x00, 0x44, 0x06, 0x27, 0x09, 0xb7, 0x05, 0xd8, 0xf3, 0x2c, 0xf3,\n  0xe3, 0x03, 0xa8, 0x08, 0x9e, 0x09, 0x62, 0x04, 0xba, 0xf2, 0x8b, 0xf4,\n  0x9d, 0x00, 0x87, 0x07, 0x53, 0x03, 0xcc, 0xff, 0x99, 0xfe, 0x73, 0x06,\n  0xbb, 0x06, 0xd4, 0xf5, 0x03, 0xf2, 0x63, 0xff, 0x1a, 0x09, 0x67, 0x0a,\n  0x68, 0x06, 0xaf, 0xf5, 0x6a, 0xf1, 0xea, 0xff, 0x06, 0x09, 0x90, 0x0b,\n  0x0c, 0x04, 0x86, 0xf4, 0x23, 0xf6, 0x12, 0xff, 0x3c, 0x04, 0x1f, 0x04,\n  0xea, 0x01, 0x53, 0x02, 0x76, 0x05, 0x61, 0xfc, 0xa6, 0xf4, 0x2b, 0xfc,\n  0xcf, 0x05, 0x5f, 0x09, 0xde, 0x01, 0xbd, 0xf9, 0x0d, 0xfa, 0x66, 0xfe,\n  0x97, 0x01, 0x5a, 0x08, 0x70, 0x06, 0xb6, 0xf9, 0xe2, 0xf6, 0x49, 0xfc,\n  0x9f, 0x04, 0xab, 0x05, 0xdb, 0x01, 0x47, 0xff, 0x15, 0xff, 0xed, 0xfe,\n  0xf7, 0xfe, 0x53, 0x00, 0x2d, 0x02, 0x64, 0x07, 0x0f, 0xfd, 0xcb, 0xf2,\n  0x7d, 0xfb, 0x02, 0x08, 0x6e, 0x09, 0x56, 0xff, 0x2d, 0xfa, 0x85, 0xfc,\n  0x5a, 0x01, 0xf7, 0x02, 0xd5, 0xff, 0xf5, 0xfc, 0x2a, 0xff, 0x2b, 0x03,\n  0x51, 0x02, 0xb6, 0x06, 0x1f, 0x02, 0xd6, 0xf4, 0x81, 0xf7, 0xc5, 0x00,\n  0x2b, 0x06, 0x28, 0x06, 0x93, 0x01, 0x9c, 0xfb, 0xe6, 0xfb, 0x8f, 0xff,\n  0xaf, 0x02, 0xeb, 0x01, 0x96, 0xff, 0x75, 0xfd, 0x53, 0xfd, 0x61, 0x01,\n  0x10, 0x04, 0x5b, 0x07, 0x08, 0x00, 0x06, 0xf6, 0x51, 0xf9, 0x05, 0x03,\n  0x7f, 0x06, 0xa9, 0x01, 0xcd, 0xfd, 0x09, 0xfb, 0x39, 0xfe, 0xa3, 0x03,\n  0xab, 0x03, 0x4b, 0x02, 0x76, 0x05, 0x01, 0xfc, 0x01, 0xf3, 0x83, 0xfd,\n  0xa8, 0x07, 0x3e, 0x07, 0xc8, 0x06, 0xb5, 0xfd, 0x18, 0xf2, 0xb6, 0xf8,\n  0xfc, 0x04, 0x65, 0x0a, 0x8e, 0x04, 0xf4, 0xfa, 0x01, 0xfa, 0x0f, 0xfe,\n  0xcd, 0x00, 0x5e, 0x01, 0xe9, 0x02, 0xaf, 0x00, 0x4c, 0x06, 0x67, 0x05,\n  0x9c, 0xf4, 0xe3, 0xf2, 0xa1, 0x00, 0x80, 0x09, 0x28, 0x0c, 0x13, 0x02,\n  0xda, 0xf3, 0x59, 0xf6, 0x20, 0xff, 0x86, 0x07, 0x14, 0x05, 0x63, 0x05,\n  0x11, 0x03, 0x66, 0xf6, 0x48, 0xf5, 0xff, 0xff, 0x94, 0x07, 0xb0, 0x08,\n  0x29, 0x03, 0x4d, 0xf8, 0xfe, 0xf7, 0x9e, 0xff, 0x1b, 0x05, 0x77, 0x03,\n  0x99, 0xff, 0x24, 0xfe, 0x9d, 0xfd, 0x69, 0xfd, 0x07, 0x01, 0xd1, 0x03,\n  0xd5, 0x01, 0x09, 0x02, 0x6d, 0x02, 0x76, 0xfa, 0x86, 0xf8, 0xcd, 0x01,\n  0xa0, 0x04, 0x3a, 0x0c, 0x37, 0x02, 0x7e, 0xef, 0xd9, 0xf4, 0xa5, 0x01,\n  0xe7, 0x08, 0x7f, 0x05, 0x32, 0x00, 0x12, 0x01, 0xf0, 0x01, 0xf9, 0xfa,\n  0x81, 0xf8, 0x6d, 0x00, 0xeb, 0x04, 0x72, 0x05, 0xdf, 0x0a, 0xbc, 0xf9,\n  0x5e, 0xee, 0x3d, 0xf9, 0x25, 0x08, 0xd4, 0x09, 0x0b, 0x03, 0x43, 0x05,\n  0x8d, 0xfc, 0xdc, 0xf1, 0xcd, 0xfa, 0x9f, 0x06, 0x00, 0x08, 0xbb, 0x00,\n  0x94, 0x04, 0x5b, 0x03, 0xea, 0xf4, 0xf6, 0xf6, 0x4a, 0xff, 0x53, 0x05,\n  0x37, 0x04, 0x03, 0x02, 0x5b, 0xfe, 0x93, 0x06, 0x0b, 0x06, 0xa2, 0xf4,\n  0xd9, 0xf4, 0xfd, 0xfd, 0xe6, 0x06, 0x5f, 0x06, 0x15, 0x01, 0x0c, 0xff,\n  0xa3, 0x01, 0x7b, 0xfe, 0x19, 0xfb, 0x48, 0xff, 0x05, 0x03, 0x03, 0x03,\n  0x99, 0x03, 0x4d, 0x00, 0x8a, 0xf8, 0xdd, 0xf9, 0x61, 0x02, 0x1a, 0x07,\n  0xcc, 0x07, 0xb5, 0xfd, 0x69, 0xf4, 0x7c, 0xfa, 0x4d, 0x02, 0x8e, 0x04,\n  0x35, 0x03, 0x76, 0x01, 0x4e, 0x06, 0x96, 0xff, 0xee, 0xf5, 0x79, 0xfa,\n  0x0d, 0x01, 0x83, 0x06, 0x33, 0x05, 0x1c, 0xfe, 0xe1, 0xfb, 0xdb, 0xfd,\n  0x2b, 0x00, 0x04, 0x00, 0x0a, 0x04, 0xcb, 0x05, 0xa1, 0xfc, 0x7a, 0xf8,\n  0x1b, 0xfc, 0xc3, 0x03, 0x6b, 0x05, 0x83, 0x06, 0xdb, 0x01, 0x98, 0xf6,\n  0xd9, 0xf7, 0xf0, 0xff, 0xdf, 0x05, 0xd6, 0x07, 0x9b, 0x00, 0xe1, 0xf9,\n  0xd0, 0xfb, 0xe7, 0xff, 0xd0, 0x00, 0xa7, 0x00, 0xfa, 0x01, 0xf3, 0x02,\n  0xd7, 0x06, 0x57, 0xfe, 0xe4, 0xf4, 0xc6, 0xf8, 0x71, 0x03, 0xde, 0x06,\n  0xe1, 0x08, 0x23, 0x03, 0x69, 0xf5, 0x5f, 0xf6, 0xd6, 0xfe, 0x36, 0x06,\n  0x3e, 0x06, 0xfb, 0x03, 0xfa, 0xfa, 0xe8, 0xf8, 0x57, 0x01, 0x70, 0x04,\n  0xe3, 0x05, 0x3f, 0x07, 0x58, 0xf8, 0x14, 0xf2, 0xe1, 0xfc, 0x26, 0x06,\n  0x04, 0x07, 0xf7, 0x01, 0xe3, 0xfd, 0x25, 0xfd, 0x1a, 0xff, 0xbf, 0x00,\n  0x58, 0x01, 0xb3, 0x00, 0xab, 0xff, 0x39, 0xff, 0x95, 0xff, 0x1a, 0x00,\n  0x5c, 0x00, 0x52, 0x00, 0xf3, 0xff, 0xcb, 0xff, 0xe9, 0xff, 0x28, 0x00,\n  0xef, 0xff, 0x95, 0xff, 0x37, 0xfd, 0xe4, 0xfe, 0xcf, 0x02, 0xd7, 0x03,\n  0x8c, 0x09, 0xad, 0xfc, 0x6f, 0xef, 0xe9, 0xfa, 0x98, 0x08, 0xf7, 0x07,\n  0x94, 0x01, 0xf9, 0x03, 0x33, 0xfc, 0xd3, 0xf7, 0x8f, 0xff, 0x46, 0x00,\n  0xda, 0xff, 0x0e, 0xff, 0x33, 0x02, 0x83, 0x02, 0x7c, 0x04, 0x8f, 0x06,\n  0x3d, 0xf8, 0x5c, 0xf2, 0xe5, 0xfe, 0xbe, 0x08, 0x84, 0x09, 0x7b, 0x03,\n  0x77, 0xf4, 0x8c, 0xf6, 0x1d, 0x03, 0xba, 0x0a, 0xd6, 0x0a, 0xa5, 0xf8,\n  0x97, 0xf2, 0x75, 0xfa, 0x06, 0x05, 0x34, 0x07, 0x47, 0x05, 0xdb, 0x04,\n  0xfc, 0xf9, 0xb7, 0xf5, 0xc3, 0xfc, 0x8e, 0x04, 0xaa, 0x07, 0xef, 0x04,\n  0xe6, 0xfb, 0xfd, 0xf8, 0x6d, 0xfd, 0x3f, 0x01, 0xb4, 0x05, 0x18, 0x04,\n  0x2b, 0xfd, 0x6d, 0xfb, 0x12, 0xfe, 0xf4, 0x00, 0xa0, 0x04, 0x39, 0x02,\n  0x45, 0xfd, 0xf1, 0xfb, 0x4b, 0xfd, 0xd0, 0x01, 0x0f, 0x04, 0xab, 0x01,\n  0xce, 0xff, 0xf6, 0xff, 0x68, 0x06, 0x37, 0x01, 0x84, 0xf4, 0x9e, 0xf7,\n  0xd9, 0x00, 0x80, 0x06, 0x16, 0x05, 0x2b, 0x00, 0x3a, 0xfe, 0xa5, 0xfe,\n  0x4c, 0x04, 0x34, 0x0b, 0x9d, 0xf8, 0xac, 0xef, 0x98, 0xfa, 0xbe, 0x07,\n  0x77, 0x08, 0x81, 0x03, 0x36, 0x06, 0xd2, 0xfa, 0x37, 0xf4, 0x82, 0xfa,\n  0xab, 0x04, 0x17, 0x07, 0x1a, 0x06, 0xef, 0x03, 0x42, 0xf8, 0x26, 0xf7,\n  0x8d, 0xfd, 0xff, 0x02, 0xb2, 0x04, 0x7b, 0x02, 0xaf, 0x02, 0x0e, 0x00,\n  0x1d, 0xf9, 0x02, 0xff, 0x1a, 0x0b, 0xd2, 0xff, 0x10, 0xf5, 0xfc, 0xf8,\n  0x03, 0x03, 0x37, 0x07, 0xf6, 0x06, 0x07, 0x03, 0x4c, 0xf8, 0x4c, 0xf8,\n  0x48, 0xff, 0x71, 0x03, 0x6a, 0x01, 0x00, 0x00, 0xfd, 0x00, 0x0b, 0x02,\n  0x5e, 0x04, 0x9a, 0x01, 0x21, 0xf8, 0x61, 0xf8, 0xc0, 0x01, 0x57, 0x08,\n  0x3f, 0x06, 0x89, 0xf9, 0x27, 0xf6, 0x61, 0x01, 0xef, 0x06, 0xab, 0x06,\n  0x0b, 0x02, 0xbe, 0xf7, 0xa2, 0xf8, 0x07, 0x00, 0x65, 0x03, 0x8e, 0x01,\n  0x42, 0x01, 0xcc, 0x07, 0x2e, 0x00, 0xef, 0xf6, 0x81, 0xf8, 0xb3, 0x00,\n  0xf8, 0x06, 0x08, 0x05, 0x3b, 0x03, 0x4d, 0xfc, 0xf3, 0xf7, 0x37, 0xfe,\n  0xb4, 0x04, 0xf0, 0x04, 0x06, 0x05, 0x9a, 0x00, 0xa0, 0xf7, 0x3c, 0xf8,\n  0x82, 0xfe, 0xd5, 0x03, 0x7b, 0x04, 0x58, 0x06, 0x15, 0x02, 0xfe, 0xf8,\n  0xc5, 0xf9, 0x3e, 0xff, 0x3b, 0x03, 0x58, 0x06, 0x2d, 0x02, 0x9c, 0xfb,\n  0xa4, 0xfa, 0x99, 0xfd, 0x75, 0x02, 0xaa, 0x04, 0xb6, 0x00, 0xb6, 0x06,\n  0xb9, 0x03, 0x8c, 0xf3, 0x5a, 0xf4, 0x70, 0x01, 0x7d, 0x09, 0xfb, 0x04,\n  0xc1, 0xfe, 0x64, 0x01, 0xda, 0x06, 0x15, 0xf9, 0xe6, 0xf1, 0x14, 0xff,\n  0x08, 0x09, 0x82, 0x0a, 0x5d, 0x02, 0x7a, 0xf6, 0x8e, 0xf5, 0xab, 0xff,\n  0x17, 0x07, 0xb8, 0x0a, 0x03, 0x03, 0xfb, 0xf5, 0x3e, 0xf7, 0xae, 0xfe,\n  0x7b, 0x05, 0xa2, 0x05, 0x44, 0x06, 0x84, 0xff, 0x19, 0xf6, 0xb1, 0xf8,\n  0xeb, 0x00, 0x38, 0x0b, 0xe7, 0x07, 0x14, 0xfa, 0x9f, 0xf5, 0x54, 0xfb,\n  0x33, 0x05, 0xa4, 0x06, 0x49, 0x01, 0x37, 0x01, 0xc1, 0x00, 0x89, 0xf9,\n  0x09, 0xfb, 0x73, 0x03, 0x9b, 0x03, 0x3e, 0x0a, 0x00, 0x04, 0xf8, 0xed,\n  0x61, 0xf2, 0x1f, 0x05, 0x5f, 0x0c, 0x43, 0x04, 0x21, 0x03, 0x7f, 0x01,\n  0xec, 0xf3, 0x79, 0xf6, 0xd7, 0x03, 0xff, 0x08, 0x9d, 0x02, 0x87, 0x05,\n  0x09, 0x02, 0xb1, 0xf3, 0xcc, 0xf5, 0x4b, 0x01, 0x5d, 0x08, 0xd6, 0x07,\n  0xe9, 0x03, 0xce, 0xf7, 0x4a, 0xf5, 0xa9, 0x00, 0x13, 0x07, 0xac, 0x06,\n  0x64, 0x06, 0x90, 0xf9, 0xbe, 0xf4, 0xef, 0xfd, 0x9e, 0x04, 0xc4, 0x04,\n  0xf8, 0x00, 0x60, 0xfe, 0x49, 0xfd, 0x37, 0xfd, 0xf7, 0x00, 0x67, 0x03,\n  0x14, 0x09, 0x84, 0x01, 0x39, 0xf4, 0x87, 0xf6, 0xb7, 0x01, 0xa8, 0x08,\n  0xd7, 0x03, 0x59, 0x03, 0xad, 0x03, 0x20, 0xf6, 0x59, 0xf4, 0xd0, 0x01,\n  0x7d, 0x09, 0x99, 0x0b, 0xdf, 0xfd, 0xd7, 0xf3, 0x9c, 0xf8, 0x2a, 0x01,\n  0xbb, 0x06, 0x3b, 0x04, 0x95, 0x00, 0x6f, 0x07, 0x42, 0xfe, 0xe0, 0xf0,\n  0x1d, 0xf9, 0x8e, 0x07, 0x57, 0x08, 0x0f, 0x03, 0x26, 0x07, 0x60, 0xf8,\n  0x6c, 0xef, 0x3b, 0xff, 0x4d, 0x0a, 0xea, 0x06, 0x17, 0x08, 0xe4, 0xfb,\n  0x00, 0xef, 0x21, 0xfa, 0x78, 0x08, 0xf0, 0x08, 0xa4, 0x00, 0x8b, 0xfc,\n  0x75, 0xfe, 0x33, 0x02, 0x5d, 0x03, 0xd5, 0xff, 0x21, 0xfb, 0x6d, 0xfc,\n  0xb5, 0x01, 0xca, 0x05, 0xf5, 0x00, 0x6d, 0xfa, 0x2f, 0xfc, 0xad, 0x00,\n  0xce, 0x00, 0x36, 0x01, 0xae, 0x01, 0x4a, 0x07, 0x4b, 0x03, 0xb7, 0xf6,\n  0x31, 0xf7, 0x62, 0xff, 0x02, 0x06, 0xea, 0x06, 0x0f, 0x05, 0xe5, 0xfa,\n  0xaf, 0xf7, 0x81, 0xfd, 0x5f, 0x04, 0x6e, 0x04, 0x00, 0x00, 0xfb, 0xfc,\n  0x29, 0xfc, 0x97, 0x00, 0x0f, 0x04, 0xfb, 0x06, 0xff, 0xfe, 0x18, 0xf6,\n  0xa7, 0xfc, 0x84, 0x05, 0x5e, 0x04, 0x0f, 0x04, 0x07, 0x02, 0x41, 0xf7,\n  0x69, 0xf8, 0x64, 0x00, 0xe4, 0x04, 0x3e, 0x04, 0xbe, 0x01, 0xed, 0xfd,\n  0x4b, 0xfd, 0xff, 0xfe, 0xe3, 0x00, 0xde, 0xfe, 0xd0, 0xfe, 0x46, 0x01,\n  0x44, 0x05, 0x48, 0x08, 0xa9, 0xfa, 0x19, 0xf4, 0xfd, 0xfa, 0x2f, 0x05,\n  0x2b, 0x07, 0xff, 0x07, 0x30, 0xff, 0xb1, 0xf5, 0x90, 0xf8, 0xa9, 0x00,\n  0xa4, 0x06, 0x13, 0x04, 0xb4, 0xff, 0x97, 0x00, 0x67, 0x07, 0x9d, 0xfc,\n  0x76, 0xf1, 0xc6, 0xfb, 0x97, 0x07, 0x6d, 0x0a, 0x07, 0x05, 0xc0, 0xf8,\n  0x8b, 0xf6, 0xcd, 0xfe, 0xff, 0x04, 0x89, 0x03, 0xeb, 0xfd, 0x0f, 0xfd,\n  0xdf, 0x01, 0x2b, 0x07, 0xe5, 0x02, 0x0c, 0xf9, 0x30, 0xf9, 0x3f, 0xff,\n  0x25, 0x03, 0x93, 0x02, 0x15, 0x03, 0x27, 0x02, 0xb9, 0xfc, 0xc9, 0xfb,\n  0x08, 0xff, 0xc7, 0x01, 0xcb, 0x02, 0x18, 0x01, 0x7f, 0xfe, 0xe5, 0xfd,\n  0x57, 0xfd, 0x26, 0x00, 0xc3, 0x02, 0x8d, 0x02, 0x67, 0x00, 0xcb, 0x06,\n  0xd2, 0x01, 0xfb, 0xf3, 0x96, 0xf8, 0x09, 0x02, 0xe3, 0x05, 0xb5, 0x03,\n  0x25, 0x00, 0x91, 0xfd, 0x31, 0xfd, 0x66, 0xfe, 0x67, 0x01, 0xc3, 0x07,\n  0xa1, 0x02, 0xcd, 0xf8, 0xad, 0xf8, 0xe8, 0xfe, 0xb7, 0x05, 0x4c, 0x04,\n  0x13, 0x05, 0xcd, 0x02, 0x7e, 0xf3, 0xcf, 0xf6, 0x83, 0x04, 0x62, 0x0b,\n  0xaa, 0x09, 0x58, 0xf8, 0xff, 0xf3, 0x81, 0xfb, 0x9b, 0x03, 0x93, 0x05,\n  0x29, 0x03, 0xe4, 0xfe, 0xe2, 0x04, 0xb0, 0x05, 0x1f, 0xf5, 0xce, 0xf3,\n  0x2b, 0x01, 0x1f, 0x09, 0xff, 0x04, 0xd6, 0xfe, 0x15, 0x01, 0xcf, 0x05,\n  0xbd, 0xfa, 0xcf, 0xf2, 0xf5, 0xfc, 0xa8, 0x07, 0x45, 0x0c, 0xb9, 0x03,\n  0xf1, 0xf5, 0xdc, 0xf6, 0xb5, 0xfd, 0x36, 0x06, 0xa7, 0x04, 0x00, 0x07,\n  0x47, 0x03, 0x37, 0xf5, 0x1f, 0xf5, 0x07, 0x00, 0xa2, 0x08, 0x4b, 0x05,\n  0xfd, 0x00, 0xd1, 0xfd, 0x35, 0xfc, 0x42, 0xfe, 0xc6, 0x01, 0xa7, 0x02,\n  0x4d, 0x03, 0xb4, 0x01, 0x31, 0xfd, 0xdd, 0xfc, 0x39, 0xfb, 0x1e, 0xfe,\n  0x91, 0x01, 0x45, 0x02, 0x01, 0x02, 0xa9, 0x03, 0xc0, 0x04, 0xaa, 0xfb,\n  0x88, 0xf8, 0x66, 0xfe, 0xf9, 0x02, 0x4b, 0x03, 0x4a, 0x00, 0xb1, 0xfc,\n  0xa9, 0xfd, 0x75, 0x02, 0x35, 0x03, 0x24, 0x05, 0xd1, 0x03, 0x2e, 0xf7,\n  0x14, 0xf5, 0x98, 0x00, 0x7c, 0x08, 0xa7, 0x08, 0x36, 0xff, 0x7c, 0xf7,\n  0xf1, 0xfa, 0x4e, 0x01, 0x97, 0x04, 0x11, 0x03, 0x8d, 0xff, 0x6d, 0xfd,\n  0x9f, 0xfe, 0xf0, 0xfe, 0x48, 0xff, 0x28, 0x01, 0x70, 0x07, 0xc9, 0x03,\n  0x69, 0xf8, 0x99, 0xf9, 0xab, 0xfe, 0xf3, 0x01, 0x65, 0x02, 0xcd, 0x02,\n  0x04, 0x00, 0x63, 0x06, 0xb9, 0x03, 0x27, 0xf2, 0xaa, 0xf5, 0x24, 0x07,\n  0xf7, 0x0e, 0x26, 0x00, 0x78, 0xf5, 0x02, 0xf8, 0x3f, 0x02, 0xc2, 0x06,\n  0xc8, 0x06, 0xb9, 0x03, 0x4d, 0xf8, 0x2f, 0xf7, 0x7b, 0xfe, 0x3f, 0x05,\n  0x3b, 0x07, 0x95, 0x00, 0xa9, 0xfa, 0xd5, 0xfb, 0x5e, 0x00, 0x1b, 0x05,\n  0x4f, 0x03, 0x7f, 0xfd, 0x47, 0xfc, 0xc4, 0xfe, 0x3f, 0x01, 0x37, 0x02,\n  0x4b, 0x01, 0x30, 0xff, 0x79, 0xfe, 0x3f, 0xff, 0x58, 0x00, 0xd1, 0x00,\n  0xb6, 0x00, 0x10, 0x00, 0x33, 0xff, 0x03, 0xff, 0x9f, 0xfd, 0x04, 0x00,\n  0x3d, 0x02, 0xd5, 0x02, 0x5d, 0xff, 0xc8, 0x05, 0xbe, 0x04, 0x3c, 0xf5,\n  0x14, 0xf5, 0x84, 0xfe, 0x0d, 0x08, 0x23, 0x06, 0x1d, 0x00, 0x45, 0xfe,\n  0x7f, 0x00, 0xc4, 0xfe, 0x2e, 0xfe, 0x7c, 0x00, 0x49, 0x01, 0x9e, 0x00,\n  0x88, 0x00, 0xea, 0xff, 0x31, 0xfe, 0x02, 0xff, 0xb8, 0x00, 0x0a, 0x01,\n  0x34, 0x00, 0x58, 0x01, 0xaf, 0x03, 0xdd, 0xfa, 0xb5, 0xf9, 0x64, 0x01,\n  0xe0, 0x05, 0xc8, 0x0f, 0xf4, 0xfa, 0x7c, 0xe8, 0x94, 0xf7, 0x62, 0x0b,\n  0x35, 0x0c, 0x55, 0x01, 0x13, 0x03, 0xbe, 0xfe, 0x01, 0xf2, 0x1f, 0xfc,\n  0x47, 0x07, 0x17, 0x09, 0xf8, 0x08, 0xaa, 0xf6, 0xbb, 0xee, 0x3b, 0x00,\n  0xe0, 0x09, 0x94, 0x0a, 0x53, 0x05, 0xb1, 0xf4, 0x5c, 0xf3, 0x9f, 0xfe,\n  0x9f, 0x08, 0x33, 0x05, 0x5f, 0x03, 0xb7, 0x05, 0x81, 0xf8, 0x01, 0xf4,\n  0x79, 0xfc, 0xf4, 0x06, 0xab, 0x06, 0x65, 0x02, 0xcf, 0x05, 0xa7, 0xfc,\n  0xe0, 0xf3, 0xb9, 0xf9, 0x47, 0x04, 0xfb, 0x07, 0x95, 0x02, 0x15, 0x03,\n  0x97, 0x02, 0x89, 0xf6, 0xe8, 0xf5, 0x93, 0x02, 0x60, 0x08, 0x55, 0x08,\n  0xd4, 0x00, 0x0f, 0xf6, 0x73, 0xf7, 0xa5, 0xff, 0x48, 0x07, 0xb5, 0x0a,\n  0x23, 0x00, 0x04, 0xf6, 0xf8, 0xf7, 0xf7, 0x00, 0xb4, 0x07, 0xbd, 0x02,\n  0x53, 0x03, 0x77, 0x06, 0xf1, 0xf4, 0x4a, 0xf2, 0xd5, 0x02, 0xe7, 0x09,\n  0x3a, 0x04, 0x0a, 0xfe, 0x23, 0xfd, 0x72, 0xff, 0x0d, 0x01, 0xa0, 0x00,\n  0xa0, 0x00, 0xa1, 0x00, 0x99, 0xfe, 0xf9, 0xfd, 0x01, 0x00, 0x6c, 0x01,\n  0xa2, 0x01, 0x4f, 0x02, 0xff, 0xff, 0x85, 0xfb, 0x23, 0xfc, 0x8e, 0x01,\n  0xfc, 0x04, 0xeb, 0x05, 0xef, 0xfd, 0x27, 0xf6, 0x8d, 0xfa, 0xf4, 0x01,\n  0x08, 0x05, 0x5e, 0x07, 0xab, 0x03, 0x82, 0xf9, 0x76, 0xf9, 0xc9, 0xfd,\n  0xa7, 0x02, 0xdd, 0x03, 0xf3, 0x05, 0xbd, 0x01, 0x3a, 0xf9, 0xda, 0xf9,\n  0xcf, 0xfe, 0x39, 0x02, 0xc3, 0x05, 0xfb, 0x07, 0x6d, 0xfc, 0xd1, 0xf6,\n  0x75, 0xfb, 0xff, 0x01, 0x2c, 0x05, 0x25, 0x03, 0x71, 0x03, 0x57, 0x01,\n  0x39, 0xf9, 0x1a, 0xf9, 0x9b, 0x00, 0xca, 0x05, 0xc5, 0x03, 0x0a, 0xfe,\n  0x1d, 0xfb, 0x81, 0xfd, 0xe7, 0x04, 0x5d, 0x08, 0xf7, 0xfd, 0x7c, 0xf8,\n  0xb1, 0xfb, 0xee, 0x00, 0x71, 0x03, 0xca, 0x05, 0x3b, 0x03, 0xa0, 0xfa,\n  0xc5, 0xf9, 0x3f, 0xfd, 0xa7, 0x02, 0x73, 0x04, 0x2f, 0x02, 0xb1, 0xff,\n  0x75, 0xfe, 0x8a, 0xff, 0xe2, 0x01, 0x88, 0x04, 0x3d, 0x01, 0x02, 0xf8,\n  0x92, 0xf8, 0x01, 0x01, 0x4b, 0x05, 0x93, 0x03, 0xde, 0xff, 0x25, 0xfe,\n  0xa3, 0xfe, 0x2b, 0x00, 0xdd, 0x00, 0xb9, 0x00, 0xa8, 0xfe, 0x56, 0x00,\n  0x51, 0x02, 0x3b, 0xff, 0x2b, 0xfe, 0x12, 0xfe, 0xd5, 0xff, 0x2a, 0x05,\n  0x07, 0x02, 0x4d, 0xfc, 0x66, 0xfb, 0x64, 0xfe, 0x29, 0x03, 0xdf, 0x03,\n  0xf1, 0x00, 0x8e, 0xfe, 0xb9, 0x00, 0x1a, 0x06, 0x3a, 0xfe, 0x13, 0xf6,\n  0xf5, 0xfb, 0x67, 0x03, 0xe4, 0x04, 0x67, 0x01, 0xbf, 0xfc, 0xf7, 0xfd,\n  0xdc, 0x01, 0x6a, 0x07, 0x7b, 0x03, 0xe1, 0xf7, 0x09, 0xf8, 0xdb, 0xfd,\n  0x87, 0x05, 0x67, 0x04, 0x3b, 0x07, 0x8d, 0x02, 0x84, 0xf4, 0xaf, 0xf5,\n  0xa9, 0x01, 0x1f, 0x09, 0x99, 0x03, 0x7d, 0x00, 0x25, 0x01, 0x8a, 0xfa,\n  0x80, 0xfa, 0xdf, 0x02, 0x47, 0x03, 0xcb, 0x07, 0x5b, 0x06, 0xf9, 0xf0,\n  0x10, 0xf1, 0xc2, 0x04, 0xec, 0x0a, 0x88, 0x04, 0xc7, 0xfc, 0xcf, 0x02,\n  0x2e, 0x08, 0x20, 0xf7, 0x71, 0xf3, 0x95, 0xfc, 0xd4, 0x06, 0x63, 0x07,\n  0x03, 0x06, 0x71, 0x00, 0xb3, 0xf5, 0x86, 0xf8, 0x8b, 0x03, 0x0e, 0x07,\n  0x58, 0x06, 0x57, 0x02, 0x58, 0xf7, 0x5a, 0xf7, 0xe4, 0xff, 0x6b, 0x06,\n  0xa6, 0x05, 0x53, 0xff, 0xd5, 0xfb, 0x89, 0xfd, 0x55, 0x00, 0x65, 0x02,\n  0xac, 0x01, 0x78, 0xff, 0x0a, 0xfe, 0x73, 0xfd, 0x6b, 0xff, 0xc9, 0x02,\n  0xfc, 0x01, 0x05, 0x03, 0x82, 0x07, 0x38, 0xfa, 0x72, 0xf4, 0xa9, 0xfd,\n  0xf0, 0x04, 0x87, 0x03, 0x4b, 0xfe, 0x7d, 0xff, 0xdc, 0x01, 0x45, 0x09,\n  0xa7, 0x00, 0xc1, 0xf3, 0x67, 0xf7, 0xff, 0x02, 0x48, 0x08, 0xbf, 0x03,\n  0x7e, 0xff, 0xb7, 0xfc, 0x99, 0xfe, 0xab, 0x01, 0xf6, 0x05, 0xaf, 0x02,\n  0xf6, 0xf6, 0xaf, 0xf7, 0xe2, 0x00, 0x1e, 0x06, 0x1c, 0x04, 0x9b, 0xff,\n  0x09, 0xfd, 0x4d, 0xfc, 0xd4, 0xff, 0x4d, 0x03, 0x37, 0x04, 0x77, 0x06,\n  0x83, 0xfc, 0x6c, 0xf2, 0xd1, 0xfc, 0x0f, 0x07, 0xd1, 0x0b, 0xd3, 0x03,\n  0x42, 0xf5, 0x26, 0xf6, 0xfc, 0xfe, 0xf2, 0x06, 0xef, 0x09, 0x94, 0x00,\n  0x9b, 0xf5, 0x59, 0xf9, 0x60, 0x04, 0x2d, 0x0c, 0x4d, 0x02, 0x38, 0xf3,\n  0xe6, 0xf8, 0xb2, 0x04, 0xe6, 0x09, 0x27, 0x08, 0x16, 0xf9, 0xf4, 0xf3,\n  0xe1, 0xfb, 0x2f, 0x05, 0x07, 0x07, 0x56, 0x06, 0xf3, 0xfe, 0x86, 0xf7,\n  0x25, 0xfb, 0x04, 0x01, 0xfa, 0x04, 0x67, 0x03, 0xa3, 0xfd, 0x79, 0xfc,\n  0x43, 0x04, 0xd5, 0x03, 0xf9, 0xfb, 0xbd, 0xfb, 0x51, 0xff, 0x69, 0x01,\n  0x62, 0xff, 0xca, 0x00, 0x69, 0x01, 0x13, 0x04, 0x45, 0x08, 0x85, 0xf9,\n  0xa1, 0xf1, 0x59, 0xfd, 0x71, 0x08, 0x88, 0x06, 0x47, 0x00, 0xac, 0x06,\n  0x9b, 0xfd, 0x9b, 0xf0, 0x94, 0xfa, 0x42, 0x08, 0x90, 0x07, 0xfd, 0x03,\n  0x6b, 0x04, 0x69, 0xf8, 0xa6, 0xf5, 0xeb, 0xfc, 0xa3, 0x03, 0xc8, 0x05,\n  0x73, 0x02, 0xc9, 0xff, 0xb3, 0x02, 0x67, 0x00, 0x6a, 0xf7, 0xc7, 0xfc,\n  0x0a, 0x04, 0x27, 0x06, 0xfe, 0x0a, 0x1e, 0xfa, 0x34, 0xee, 0x3d, 0xfa,\n  0x14, 0x09, 0xe1, 0x08, 0x0f, 0x02, 0xb6, 0x04, 0x4f, 0xfc, 0x51, 0xf2,\n  0x93, 0xfc, 0x33, 0x07, 0xe6, 0x06, 0xe3, 0xff, 0x9d, 0x03, 0xed, 0x03,\n  0xf3, 0xf5, 0xa1, 0xf5, 0xa9, 0x00, 0x99, 0x0a, 0x0c, 0x05, 0x4b, 0xfc,\n  0x95, 0xf9, 0x4f, 0xfd, 0x71, 0x03, 0x3c, 0x05, 0x0b, 0x06, 0x41, 0xff,\n  0xb8, 0xf4, 0x91, 0xf9, 0x30, 0x04, 0x78, 0x0a, 0x97, 0x07, 0xc9, 0xf8,\n  0xf2, 0xf5, 0xed, 0xfd, 0x91, 0x03, 0x35, 0x03, 0x1c, 0x00, 0xf3, 0x03,\n  0x53, 0x03, 0x75, 0xfa, 0x59, 0xf9, 0xc1, 0xfd, 0xaa, 0x04, 0x37, 0x04,\n  0xb6, 0x04, 0xd1, 0x03, 0x95, 0xf8, 0xc7, 0xf4, 0x0e, 0xff, 0xc7, 0x06,\n  0x67, 0x08, 0x73, 0x06, 0x99, 0xf8, 0xdb, 0xf2, 0xd3, 0xfd, 0x43, 0x07,\n  0x17, 0x09, 0xac, 0x06, 0xa1, 0xf8, 0x43, 0xf4, 0x75, 0xfc, 0x74, 0x05,\n  0x67, 0x06, 0x4c, 0x01, 0x1b, 0x03, 0x2e, 0x01, 0x82, 0xf7, 0x90, 0xf9,\n  0x90, 0x05, 0x7a, 0x08, 0x0c, 0xfe, 0xa9, 0xf9, 0x2b, 0xfd, 0xb4, 0x01,\n  0x83, 0x03, 0x85, 0x02, 0xee, 0xfe, 0xcd, 0xfd, 0xbf, 0xfd, 0x1b, 0xfe,\n  0x88, 0x01, 0x61, 0x03, 0x49, 0x01, 0xa5, 0x02, 0x61, 0x02, 0xce, 0xf8,\n  0xe8, 0xf8, 0xf3, 0x02, 0x27, 0x05, 0x8e, 0x0a, 0x31, 0x01, 0x59, 0xf1,\n  0xb9, 0xf6, 0x28, 0x01, 0x5f, 0x08, 0x27, 0x04, 0xcc, 0x04, 0x25, 0x03,\n  0x1a, 0xf6, 0xf3, 0xf5, 0x0c, 0x01, 0x6d, 0x08, 0x55, 0x03, 0x17, 0x06,\n  0xb8, 0x01, 0xdf, 0xf2, 0x1a, 0xf6, 0x65, 0x03, 0x80, 0x09, 0x19, 0x03,\n  0x8f, 0x02, 0xd9, 0x02, 0xf9, 0xf5, 0xc9, 0xf5, 0xd1, 0x03, 0xc4, 0x07,\n  0x38, 0x06, 0x6b, 0x05, 0x57, 0xf5, 0x59, 0xf3, 0xf0, 0x01, 0x57, 0x0b,\n  0x9c, 0x09, 0xa0, 0xfa, 0x51, 0xf5, 0x03, 0xfc, 0x71, 0x03, 0x02, 0x06,\n  0x6e, 0x04, 0x2e, 0xfe, 0x54, 0xfb, 0x93, 0xfd, 0x2c, 0xff, 0xaa, 0x00,\n  0xc1, 0x02, 0xcf, 0x01, 0x09, 0x02, 0x28, 0x07, 0x4d, 0xfc, 0x07, 0xf4,\n  0x41, 0xfb, 0x04, 0x07, 0x53, 0x07, 0x62, 0xff, 0x48, 0xfb, 0xde, 0xfb,\n  0x82, 0x01, 0x64, 0x04, 0xbb, 0x06, 0x49, 0x00, 0x0c, 0xf7, 0x60, 0xf8,\n  0xa0, 0x01, 0x1b, 0x07, 0xe7, 0x08, 0x19, 0x00, 0x01, 0xf6, 0xb1, 0xfa,\n  0x45, 0x02, 0x62, 0x04, 0xbb, 0x01, 0x17, 0xff, 0x66, 0xfe, 0x36, 0xff,\n  0xaf, 0x00, 0x32, 0xff, 0x1f, 0x02, 0xd5, 0x02, 0xf9, 0xfd, 0xad, 0xfc,\n  0xc7, 0xfd, 0xe4, 0xff, 0xdf, 0x04, 0x62, 0x07, 0xdd, 0xfc, 0xae, 0xf8,\n  0xd9, 0xfb, 0xaf, 0x00, 0x0f, 0x04, 0x0d, 0x03, 0xec, 0x00, 0x8f, 0x03,\n  0xb6, 0x00, 0xdf, 0xf7, 0xb9, 0xfd, 0x67, 0x03, 0x35, 0x00, 0x04, 0xfe,\n  0x4a, 0xff, 0x89, 0x02, 0xa7, 0x04, 0x43, 0x00, 0x4a, 0xfb, 0x11, 0xfd,\n  0x58, 0x00, 0x90, 0x01, 0x5a, 0xff, 0xd1, 0xff, 0x8a, 0x01, 0x6a, 0x05,\n  0x0a, 0x04, 0x3d, 0xf9, 0xc4, 0xf7, 0x18, 0xff, 0x2f, 0x04, 0xff, 0x02,\n  0xdc, 0x00, 0xc7, 0x03, 0xed, 0xfd, 0xd2, 0xf8, 0x4e, 0xff, 0x02, 0x07,\n  0x20, 0x09, 0x0e, 0xfb, 0x24, 0xf5, 0x87, 0xfc, 0x1d, 0x03, 0x8d, 0x03,\n  0x67, 0x01, 0x77, 0x06, 0x4e, 0x01, 0x21, 0xf8, 0xe4, 0xf8, 0x9b, 0xff,\n  0x1e, 0x06, 0xbb, 0x03, 0x4f, 0x02, 0x57, 0x05, 0x2e, 0xfa, 0x38, 0xf3,\n  0xf9, 0xfe, 0xd7, 0x07, 0x07, 0x07, 0x93, 0x05, 0x99, 0xfb, 0xb1, 0xf4,\n  0x05, 0xfc, 0x87, 0x06, 0x50, 0x06, 0x4a, 0xff, 0xb9, 0xfb, 0x05, 0xfc,\n  0xb1, 0x02, 0x98, 0x08, 0x3d, 0x00, 0x6d, 0xf9, 0xd4, 0xfa, 0x23, 0xff,\n  0x9d, 0x03, 0xb3, 0x03, 0x88, 0x01, 0x6b, 0x04, 0xbf, 0x00, 0xd9, 0xf5,\n  0x3b, 0xfc, 0xf9, 0x03, 0xdb, 0x02, 0x4f, 0x00, 0xe2, 0xfe, 0xf7, 0xfd,\n  0xc7, 0xfe, 0xfd, 0x00, 0x79, 0x02, 0xdc, 0x00, 0x5b, 0x04, 0xa3, 0x05,\n  0xa7, 0xf7, 0xcb, 0xf5, 0x9b, 0xfd, 0xcf, 0x05, 0xf3, 0x04, 0xea, 0x05,\n  0x11, 0x03, 0xa7, 0xf7, 0x98, 0xf6, 0xc3, 0xfe, 0x94, 0x06, 0x66, 0x06,\n  0x2b, 0x07, 0xe1, 0xfa, 0x68, 0xf3, 0xe5, 0xfc, 0x86, 0x07, 0xb5, 0x0a,\n  0xe7, 0xff, 0x19, 0xf7, 0x61, 0xfa, 0x9a, 0x00, 0x9b, 0x04, 0xa5, 0x03,\n  0x8c, 0x00, 0x02, 0x00, 0x57, 0xfd, 0xdd, 0xfc, 0x8d, 0xff, 0x08, 0x00,\n  0xe5, 0x03, 0x6c, 0x04, 0x3d, 0xfd, 0xcd, 0xf8, 0x4e, 0xfe, 0x0c, 0x04,\n  0x87, 0x07, 0x27, 0x06, 0x6e, 0xf8, 0x76, 0xf5, 0x1b, 0xfd, 0xa4, 0x05,\n  0x53, 0x06, 0x04, 0x06, 0xbe, 0xfe, 0x54, 0xf7, 0xe1, 0xfb, 0x8a, 0x01,\n  0xb7, 0x03, 0x7b, 0xff, 0xd2, 0xfe, 0x61, 0x00, 0x53, 0x06, 0x23, 0x06,\n  0xa1, 0xf7, 0x08, 0xf4, 0x4d, 0x00, 0xc3, 0x07, 0xf8, 0x09, 0xeb, 0x02,\n  0x87, 0xf5, 0x81, 0xf6, 0x77, 0xff, 0xb0, 0x06, 0x96, 0x05, 0xcf, 0x05,\n  0xf7, 0xfd, 0x0e, 0xf7, 0x71, 0xfb, 0xfe, 0x00, 0xe7, 0x02, 0x8f, 0x02,\n  0x88, 0x01, 0xc4, 0x04, 0xb2, 0x01, 0xa9, 0xf7, 0x19, 0xf9, 0xf4, 0x00,\n  0xe3, 0x06, 0x48, 0x05, 0x18, 0xfe, 0xe1, 0xfa, 0xcb, 0xfd, 0xe5, 0x00,\n  0xda, 0xff, 0x1f, 0x00, 0xea, 0x01, 0x99, 0x01, 0x6e, 0x00, 0x96, 0x01,\n  0xeb, 0xfe, 0x01, 0xfc, 0x59, 0xff, 0x3b, 0x02, 0x91, 0x01, 0x52, 0x01,\n  0xd7, 0x00, 0x9f, 0xfc, 0xa9, 0xfc, 0x03, 0x01, 0x99, 0x02, 0x19, 0x03,\n  0x97, 0x00, 0x01, 0xfa, 0x87, 0xfd, 0x8f, 0x02, 0x17, 0x06, 0x69, 0x0a,\n  0x0a, 0xf9, 0x26, 0xef, 0x13, 0xfc, 0x64, 0x08, 0x1a, 0x08, 0xfd, 0x00,\n  0xd1, 0xfc, 0x13, 0xfd, 0x11, 0x00, 0x3c, 0x01, 0xe9, 0x00, 0xd2, 0xfe,\n  0x03, 0xfe, 0x56, 0x00, 0x69, 0x03, 0xc7, 0x01, 0xfd, 0xfd, 0x1f, 0xfe,\n  0x84, 0x05, 0xb7, 0x03, 0x30, 0xf8, 0x19, 0xf9, 0x1d, 0x00, 0x48, 0x05,\n  0xfb, 0x03, 0x92, 0xff, 0xa1, 0xfd, 0xd7, 0xfd, 0x48, 0xfe, 0xa0, 0x00,\n  0xcb, 0x02, 0x2d, 0x02, 0xbc, 0x00, 0x07, 0xfe, 0x54, 0xfe, 0xa1, 0x00,\n  0x4b, 0x05, 0xac, 0x06, 0x51, 0xf8, 0x41, 0xf4, 0x95, 0xfc, 0x17, 0x05,\n  0x72, 0x06, 0x17, 0x03, 0x17, 0x06, 0x15, 0xfd, 0x1a, 0xf5, 0x50, 0xfa,\n  0x56, 0x04, 0x9b, 0x06, 0x0b, 0x02, 0xc7, 0xfe, 0x6e, 0x06, 0x15, 0x01,\n  0xc6, 0xf3, 0xe9, 0xf7, 0x4d, 0x03, 0x69, 0x08, 0x5b, 0x07, 0xe7, 0xff,\n  0x88, 0xf7, 0x91, 0xfa, 0x86, 0x00, 0xfc, 0x04, 0xa6, 0x04, 0x1b, 0xff,\n  0x1f, 0xfc, 0x67, 0xfc, 0x4a, 0xff, 0x4b, 0x03, 0x11, 0x03, 0x4b, 0x05,\n  0xa1, 0x02, 0xa6, 0xf5, 0x9b, 0xf6, 0x93, 0x02, 0x26, 0x09, 0x07, 0x0a,\n  0x95, 0xfc, 0xbe, 0xf4, 0x0c, 0xf9, 0xf9, 0x02, 0x57, 0x07, 0xd5, 0x02,\n  0xbd, 0xfe, 0xca, 0xfe, 0x11, 0x00, 0x56, 0xff, 0xd2, 0xff, 0x5c, 0x00,\n  0x5e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0xc5, 0xff, 0x98, 0xff, 0xf0, 0xff,\n  0x2b, 0x00, 0x26, 0x00, 0x35, 0x00, 0x1f, 0x00, 0xb7, 0xff, 0xc6, 0xff,\n  0xc0, 0xff, 0xe7, 0xff, 0x20, 0x00, 0x79, 0x00, 0x03, 0x02, 0x63, 0xff,\n  0xbf, 0xfc, 0x3f, 0xff, 0xa6, 0x01, 0x34, 0x01, 0x47, 0x00, 0xad, 0x02,\n  0xe7, 0x07, 0x11, 0xfd, 0x22, 0xf1, 0xd4, 0xf9, 0xd3, 0x04, 0xcb, 0x07,\n  0xf9, 0x01, 0x53, 0xfd, 0xab, 0xfe, 0x63, 0x04, 0xfb, 0x04, 0xb4, 0xfb,\n  0x3a, 0xf9, 0x3a, 0xfe, 0x39, 0x03, 0x56, 0x04, 0x85, 0x00, 0xf5, 0xfd,\n  0x7f, 0xfd, 0xa3, 0xfd, 0xa6, 0x00, 0x4d, 0x03, 0xd2, 0x01, 0x51, 0x02,\n  0xa7, 0x03, 0xe0, 0xf9, 0x2b, 0xf7, 0x18, 0x01, 0x2b, 0x06, 0xfc, 0x04,\n  0x1b, 0x05, 0x37, 0xfc, 0xde, 0xf3, 0x88, 0xfb, 0x75, 0x08, 0x7f, 0x07,\n  0x0f, 0xfe, 0x2c, 0xfa, 0x07, 0xfc, 0x27, 0x02, 0x3f, 0x04, 0x27, 0x02,\n  0x7b, 0x07, 0xc9, 0xfe, 0x41, 0xf3, 0xba, 0xf8, 0x22, 0x04, 0x25, 0x08,\n  0x97, 0x02, 0x1b, 0x06, 0x90, 0xfe, 0xa8, 0xf3, 0xd0, 0xf8, 0xb2, 0x04,\n  0xc4, 0x07, 0xd9, 0x03, 0xf0, 0x04, 0x7d, 0xfb, 0x56, 0xf4, 0x3b, 0xfc,\n  0xcc, 0x05, 0xb4, 0x07, 0xca, 0x05, 0x85, 0xfc, 0xff, 0xf6, 0x71, 0xfc,\n  0xc7, 0x01, 0x5b, 0x04, 0x53, 0x06, 0xc0, 0xff, 0x49, 0xfa, 0x8f, 0xfc,\n  0xbf, 0xff, 0xdd, 0x00, 0xd0, 0x01, 0xd6, 0x01, 0x59, 0x03, 0xfc, 0x04,\n  0xae, 0xfa, 0x71, 0xf6, 0x8b, 0xfd, 0x04, 0x07, 0xeb, 0x07, 0xf1, 0xfd,\n  0x5d, 0xf8, 0x8f, 0xfc, 0xbf, 0x03, 0x51, 0x08, 0x7b, 0x02, 0x20, 0xf9,\n  0xee, 0xf9, 0x55, 0xfe, 0x13, 0x03, 0x52, 0x04, 0x3e, 0x07, 0x89, 0xff,\n  0x94, 0xf6, 0x10, 0xfb, 0xc7, 0x03, 0x54, 0x05, 0x53, 0x00, 0xb9, 0xfd,\n  0xf5, 0xfd, 0x0d, 0x00, 0xf0, 0x01, 0x19, 0x01, 0x21, 0xff, 0x19, 0xfe,\n  0xad, 0xfd, 0x0a, 0x01, 0xb1, 0x02, 0xe7, 0x05, 0xe1, 0x02, 0x7d, 0xf8,\n  0x5c, 0xf9, 0xe6, 0xff, 0x91, 0x03, 0x82, 0x01, 0xac, 0xfe, 0x0d, 0x01,\n  0xa0, 0x07, 0xce, 0xff, 0x5a, 0xf7, 0x19, 0xfa, 0x61, 0x02, 0xb7, 0x08,\n  0x29, 0x03, 0xe5, 0xfa, 0x31, 0xfa, 0x90, 0xff, 0x46, 0x04, 0xf8, 0x05,\n  0x9b, 0xff, 0x74, 0xfa, 0xbd, 0xfb, 0x53, 0xff, 0x7f, 0x02, 0x9b, 0x03,\n  0x8c, 0x00, 0x96, 0x05, 0x51, 0x03, 0x96, 0xf5, 0x0b, 0xf6, 0x1c, 0x01,\n  0xeb, 0x07, 0x17, 0x05, 0x9e, 0x06, 0x63, 0xfc, 0x7c, 0xf3, 0x2a, 0xfa,\n  0x40, 0x06, 0xf8, 0x06, 0x87, 0x07, 0x9d, 0x00, 0x52, 0xf4, 0x63, 0xf7,\n  0x31, 0x02, 0xd6, 0x07, 0x1f, 0x04, 0x52, 0x05, 0xf3, 0xfd, 0x59, 0xf6,\n  0x25, 0xfb, 0x5e, 0x01, 0xd1, 0x03, 0x9d, 0x02, 0xc4, 0x01, 0x2f, 0x04,\n  0x83, 0xff, 0x24, 0xf8, 0xc5, 0xfc, 0x31, 0x02, 0x61, 0x03, 0x5f, 0xff,\n  0x53, 0xfd, 0xc9, 0xff, 0x46, 0x05, 0x16, 0x08, 0x90, 0xfb, 0x60, 0xf5,\n  0xe8, 0xfa, 0x64, 0x04, 0xb0, 0x06, 0x94, 0x01, 0x9c, 0x01, 0x29, 0x03,\n  0x92, 0xf8, 0x86, 0xf7, 0x73, 0x02, 0x4e, 0x06, 0x73, 0x04, 0xb2, 0x04,\n  0x75, 0xfc, 0xa3, 0xf3, 0xcc, 0xfb, 0x9f, 0x05, 0xd2, 0x06, 0x04, 0x01,\n  0x89, 0x02, 0x0c, 0x04, 0x75, 0xf8, 0xce, 0xf6, 0x04, 0xfe, 0xbb, 0x04,\n  0x44, 0x06, 0xf7, 0x06, 0xdd, 0xfd, 0xe1, 0xf5, 0x15, 0xfb, 0x24, 0x04,\n  0xf5, 0x09, 0x57, 0x02, 0x30, 0xf9, 0x21, 0xfa, 0x50, 0xff, 0xed, 0x02,\n  0x8b, 0x04, 0x8f, 0x03, 0x37, 0xfd, 0x49, 0xfb, 0x21, 0xfe, 0xb8, 0x01,\n  0x45, 0x03, 0xb9, 0x00, 0x7c, 0xfe, 0x6b, 0xfc, 0x9f, 0xfe, 0xb3, 0x02,\n  0xef, 0x02, 0x1c, 0x01, 0xa3, 0x05, 0xec, 0x00, 0x0c, 0xf4, 0xc9, 0xf7,\n  0xff, 0x03, 0x1e, 0x08, 0xe3, 0x02, 0x39, 0x02, 0x36, 0x01, 0x18, 0xf9,\n  0x65, 0xfb, 0x0f, 0x01, 0xfd, 0x01, 0x7f, 0x01, 0xf6, 0xff, 0x2c, 0xff,\n  0x9b, 0xfd, 0x1d, 0x00, 0x07, 0x02, 0xf9, 0x03, 0x54, 0x07, 0x51, 0xfb,\n  0x49, 0xf4, 0xa5, 0xfb, 0x9c, 0x05, 0x5f, 0x06, 0x60, 0x01, 0x94, 0xfe,\n  0x23, 0x04, 0xde, 0x01, 0x7c, 0xf7, 0xb0, 0xf9, 0x48, 0x01, 0x42, 0x05,\n  0x39, 0x02, 0xb1, 0xfd, 0xd1, 0x00, 0xd8, 0x04, 0x37, 0xfe, 0x15, 0xfb,\n  0x9f, 0xfd, 0xf2, 0x00, 0x39, 0x02, 0x37, 0x04, 0xf5, 0x00, 0x3b, 0xfc,\n  0x7e, 0xfa, 0x45, 0xff, 0xfb, 0x03, 0x20, 0x05, 0x67, 0x07, 0x32, 0xfb,\n  0xdc, 0xf3, 0x56, 0xfb, 0x2f, 0x06, 0x67, 0x07, 0x9c, 0x07, 0xf1, 0xfc,\n  0x22, 0xf3, 0x15, 0xfb, 0x32, 0x06, 0x5c, 0x06, 0xbf, 0x03, 0xf9, 0x03,\n  0x0a, 0xf9, 0xf1, 0xf4, 0x12, 0xff, 0xf3, 0x06, 0x0c, 0x05, 0x53, 0xff,\n  0x9b, 0x00, 0xef, 0x02, 0x11, 0xfb, 0x9a, 0xf9, 0x4f, 0x04, 0x98, 0x05,\n  0x61, 0xfd, 0xf6, 0xfb, 0x5e, 0xfe, 0x6a, 0x00, 0x34, 0x01, 0x83, 0x03,\n  0x13, 0x07, 0xd7, 0xfd, 0xd0, 0xf7, 0xfe, 0xfb, 0x1f, 0x00, 0x73, 0x03,\n  0x39, 0x03, 0x8e, 0x01, 0xeb, 0x06, 0x4f, 0xfd, 0x8c, 0xf2, 0x7f, 0xfc,\n  0x76, 0x07, 0x03, 0x06, 0x7b, 0x07, 0xee, 0xfe, 0x63, 0xf1, 0xe8, 0xf8,\n  0x43, 0x06, 0x34, 0x08, 0x8e, 0x01, 0x03, 0x02, 0x6e, 0x00, 0x60, 0xf6,\n  0x51, 0xfb, 0xd7, 0x03, 0x6f, 0x09, 0xff, 0x07, 0x92, 0xf6, 0x7a, 0xf2,\n  0x61, 0xfe, 0xc7, 0x08, 0xc3, 0x05, 0x7d, 0x02, 0xf9, 0xfe, 0xea, 0xf8,\n  0x25, 0xfd, 0x3b, 0x03, 0xb5, 0x03, 0x54, 0x01, 0x67, 0x05, 0xf2, 0x00,\n  0xd0, 0xf2, 0xa1, 0xf6, 0xb2, 0x04, 0x81, 0x0a, 0x6f, 0x09, 0x79, 0xfc,\n  0x84, 0xf4, 0xe4, 0xf9, 0xf5, 0x02, 0x33, 0x07, 0xe8, 0x01, 0x7b, 0x02,\n  0x63, 0x05, 0x4a, 0xf8, 0x71, 0xf4, 0x2a, 0xff, 0xcf, 0x08, 0x42, 0x0a,\n  0xbb, 0xfe, 0x51, 0xf5, 0xd5, 0xf9, 0x9b, 0x03, 0xdb, 0x06, 0xd8, 0x07,\n  0xd9, 0xfd, 0x36, 0xf6, 0xd4, 0xf9, 0x0b, 0x02, 0xfc, 0x05, 0x23, 0x04,\n  0x77, 0x06, 0x53, 0xfc, 0x8f, 0xf4, 0xe2, 0xfa, 0x03, 0x05, 0xea, 0x06,\n  0x9d, 0x01, 0x8c, 0x05, 0x26, 0xff, 0x59, 0xf4, 0x94, 0xf8, 0x4b, 0x04,\n  0x7f, 0x07, 0xdd, 0x03, 0x0e, 0x06, 0xe1, 0xfa, 0xbf, 0xf3, 0xb1, 0xfb,\n  0x0c, 0x07, 0xe3, 0x05, 0x40, 0x06, 0x69, 0x02, 0x5b, 0xf4, 0x23, 0xf6,\n  0xb3, 0x02, 0x8e, 0x08, 0xe1, 0x02, 0xe7, 0xff, 0xc0, 0x01, 0x13, 0xfc,\n  0xe6, 0xf9, 0x58, 0x01, 0xa1, 0x03, 0x3b, 0x02, 0x81, 0xfe, 0x9a, 0x04,\n  0x51, 0x08, 0x60, 0xf3, 0xb7, 0xf0, 0x71, 0x03, 0xdd, 0x0a, 0x94, 0x06,\n  0x7f, 0x04, 0xa4, 0xf9, 0x5a, 0xf4, 0x4f, 0xfd, 0xe7, 0x05, 0x52, 0x07,\n  0xc4, 0x04, 0xbd, 0xfb, 0x7c, 0xf6, 0x7f, 0xfd, 0x3b, 0x06, 0xe0, 0x09,\n  0x3f, 0xff, 0xac, 0xf7, 0x9d, 0xfa, 0xa4, 0x00, 0xfb, 0x03, 0x22, 0x05,\n  0x9b, 0x03, 0xd5, 0xfb, 0xd4, 0xf9, 0x5d, 0xfd, 0x15, 0x02, 0xb2, 0x04,\n  0xcf, 0x05, 0xe1, 0xfe, 0x11, 0xf9, 0x40, 0xfb, 0x58, 0x01, 0x6b, 0x07,\n  0x05, 0x03, 0x27, 0xfc, 0x94, 0xfb, 0xc6, 0xfe, 0xc4, 0x01, 0xe9, 0x03,\n  0x4f, 0x02, 0x79, 0xfd, 0xc7, 0xfc, 0x09, 0xff, 0x4f, 0x01, 0xd8, 0x01,\n  0x0c, 0x01, 0xdc, 0xfe, 0x75, 0xfd, 0x85, 0xfe, 0x9a, 0x04, 0x1f, 0x05,\n  0xdf, 0xfc, 0xad, 0xfa, 0x4c, 0xfe, 0x77, 0x02, 0x87, 0x02, 0x00, 0x00,\n  0xeb, 0xfe, 0x1d, 0x00, 0x3e, 0x00, 0x41, 0xff, 0xd0, 0xfe, 0xbe, 0xfe,\n  0x16, 0x01, 0x52, 0x01, 0x26, 0x04, 0x1f, 0x06, 0x65, 0xfa, 0x4e, 0xf6,\n  0x0d, 0xfd, 0x91, 0x03, 0xd0, 0x07, 0xc4, 0x04, 0x59, 0xfb, 0xf5, 0xf9,\n  0x2e, 0xfe, 0x3d, 0x02, 0x45, 0x02, 0xd7, 0xff, 0x90, 0xff, 0x83, 0x00,\n  0x60, 0x01, 0x6f, 0xff, 0x39, 0xff, 0xef, 0xff, 0x2b, 0x06, 0x73, 0x05,\n  0xee, 0xf5, 0x99, 0xf5, 0x45, 0xff, 0x58, 0x06, 0x9c, 0x04, 0x60, 0x05,\n  0x64, 0x01, 0x70, 0xf8, 0xf1, 0xf9, 0x26, 0xff, 0xdd, 0x03, 0x43, 0x04,\n  0x4b, 0x05, 0xf6, 0xfe, 0x2c, 0xf9, 0x73, 0xfc, 0x33, 0x01, 0x1f, 0x03,\n  0xaf, 0x01, 0xf0, 0xff, 0xe2, 0xfe, 0x3c, 0xff, 0xf9, 0xff, 0x7a, 0x00,\n  0x04, 0x00, 0x0e, 0xff, 0xa1, 0xfd, 0xef, 0x00, 0xf0, 0x01, 0x7a, 0x06,\n  0x37, 0x04, 0x19, 0xf7, 0x78, 0xf6, 0x35, 0xff, 0xdb, 0x06, 0x0f, 0x05,\n  0x60, 0x05, 0x11, 0xff, 0x7a, 0xf6, 0x2a, 0xfa, 0xc1, 0x01, 0xeb, 0x06,\n  0x8b, 0x06, 0x03, 0xfe, 0xf0, 0xf8, 0xb4, 0xfb, 0x85, 0x00, 0x82, 0x04,\n  0x3b, 0x02, 0x09, 0x02, 0xfb, 0x06, 0x54, 0xfb, 0x89, 0xf3, 0xfd, 0xfb,\n  0xaa, 0x06, 0xaa, 0x06, 0x70, 0x01, 0xbe, 0x04, 0x1b, 0xfd, 0xb9, 0xf3,\n  0x81, 0xfc, 0x02, 0x07, 0x2f, 0x06, 0x90, 0x05, 0xc9, 0xff, 0x9b, 0xf5,\n  0x6c, 0xf8, 0x53, 0x02, 0x47, 0x06, 0xa6, 0x05, 0x60, 0x05, 0xf5, 0xf9,\n  0xda, 0xf6, 0x91, 0xfc, 0xcf, 0x04, 0x9f, 0x08, 0xd0, 0x00, 0x3d, 0xfa,\n  0x0d, 0xfa, 0x7d, 0x00, 0xf0, 0x04, 0x75, 0x02, 0xdb, 0xff, 0xd3, 0xfe,\n  0x40, 0x04, 0x0f, 0x05, 0x56, 0xf6, 0xc1, 0xf4, 0x5d, 0x02, 0x68, 0x08,\n  0x4f, 0x06, 0xa3, 0x03, 0x71, 0xf9, 0xce, 0xf6, 0x18, 0xfe, 0x0b, 0x06,\n  0x68, 0x06, 0x1b, 0xff, 0xc9, 0xfa, 0x62, 0xfb, 0x77, 0x02, 0xf1, 0x03,\n  0x70, 0x07, 0xdf, 0x01, 0xcf, 0xf5, 0x63, 0xf7, 0x43, 0x01, 0x1a, 0x07,\n  0xc4, 0x04, 0x0a, 0x05, 0xe1, 0xfc, 0x11, 0xf6, 0xb1, 0xfb, 0x43, 0x03,\n  0xcc, 0x07, 0x20, 0x05, 0x0e, 0xfb, 0x21, 0xf7, 0x9c, 0xfe, 0xb2, 0x05,\n  0xe4, 0x04, 0xe2, 0x05, 0x13, 0xfe, 0xf1, 0xf5, 0xb5, 0xfb, 0x5b, 0x03,\n  0x73, 0x04, 0x82, 0x01, 0x49, 0xfd, 0x83, 0xfc, 0x0c, 0x01, 0x43, 0x03,\n  0x23, 0x02, 0x1e, 0x05, 0x44, 0xff, 0x91, 0xf4, 0xec, 0xfa, 0x9f, 0x05,\n  0xf6, 0x06, 0x38, 0x06, 0x57, 0xfe, 0xc9, 0xf5, 0x8d, 0xfa, 0xbf, 0x02,\n  0xde, 0x06, 0xa9, 0x03, 0x83, 0xfd, 0xf4, 0xfb, 0x97, 0xfe, 0x99, 0x01,\n  0xb7, 0x01, 0xdb, 0xff, 0x09, 0xff, 0x69, 0x01, 0xfa, 0x00, 0x84, 0xfe,\n  0x25, 0xfe, 0xfb, 0xfd, 0x83, 0x00, 0x9d, 0x02, 0x45, 0x02, 0x49, 0x00,\n  0x87, 0xfe, 0x54, 0xff, 0x8b, 0x02, 0x33, 0x05, 0xd9, 0xfc, 0xeb, 0xf6,\n  0x9f, 0xfc, 0x4b, 0x02, 0xf9, 0x03, 0x69, 0x02, 0x39, 0x02, 0x90, 0x04,\n  0x71, 0xf9, 0x51, 0xf7, 0x21, 0x01, 0x34, 0x0a, 0x17, 0x08, 0x7a, 0xf8,\n  0xa9, 0xf4, 0xc1, 0xfc, 0xba, 0x06, 0xe2, 0x05, 0x88, 0x00, 0x5c, 0x00,\n  0x4b, 0xfe, 0x0b, 0xfc, 0xcb, 0xff, 0x7d, 0x02, 0x3b, 0x02, 0x07, 0x07,\n  0xff, 0xfe, 0x46, 0xf1, 0x94, 0xfa, 0xb3, 0x07, 0xc7, 0x07, 0xa2, 0x06,\n  0x2b, 0xfe, 0x86, 0xf4, 0x81, 0xf9, 0x91, 0x03, 0x8e, 0x05, 0x6e, 0x06,\n  0x27, 0x02, 0x22, 0xf9, 0xf2, 0xf8, 0x8a, 0xfe, 0xa3, 0x04, 0x87, 0x04,\n  0x2c, 0x00, 0x68, 0x05, 0x97, 0x01, 0x2b, 0xf3, 0xae, 0xf8, 0x87, 0x05,\n  0x8e, 0x07, 0x71, 0x02, 0x2b, 0x04, 0x6d, 0xfd, 0x8b, 0xf3, 0xb7, 0xfc,\n  0x08, 0x06, 0x2f, 0x09, 0x1a, 0x06, 0x36, 0xf8, 0x3c, 0xf5, 0x05, 0xfd,\n  0x58, 0x06, 0x2e, 0x05, 0x53, 0x06, 0x87, 0x01, 0x7a, 0xf5, 0x49, 0xf7,\n  0x33, 0x02, 0xc4, 0x07, 0xe7, 0x02, 0xc1, 0x00, 0x29, 0x03, 0xe9, 0xf9,\n  0x7f, 0xf7, 0xe7, 0x01, 0x4a, 0x06, 0xb2, 0x0a, 0x99, 0xfe, 0xfb, 0xf0,\n  0x81, 0xf8, 0xfb, 0x05, 0x98, 0x08, 0x63, 0x01, 0x51, 0x01, 0x4c, 0x01,\n  0x75, 0xf8, 0x11, 0xfa, 0x9d, 0x03, 0xa6, 0x04, 0xf3, 0x02, 0x46, 0x08,\n  0xfd, 0xfa, 0xc8, 0xf0, 0x34, 0xfb, 0xc2, 0x07, 0x02, 0x08, 0x7a, 0x00,\n  0xa0, 0x00, 0xca, 0x00, 0x7d, 0xf9, 0xc1, 0xfb, 0x25, 0x03, 0x17, 0x04,\n  0x2d, 0x02, 0xb5, 0x02, 0xaf, 0xfc, 0x60, 0xf8, 0xd9, 0xfe, 0xa0, 0x04,\n  0xf7, 0x04, 0x73, 0x05, 0xf3, 0xfd, 0x11, 0xf5, 0x7e, 0xfa, 0x7f, 0x03,\n  0x96, 0x08, 0x35, 0x03, 0x1d, 0xfc, 0xd6, 0xfa, 0x77, 0xfd, 0x79, 0x02,\n  0xd5, 0x03, 0x1b, 0x02, 0x60, 0x05, 0x73, 0xfe, 0xfc, 0xf4, 0xed, 0xfa,\n  0xc3, 0x07, 0xf0, 0x08, 0x4f, 0xfd, 0xc5, 0xf8, 0xba, 0xfb, 0x3b, 0x03,\n  0x1f, 0x04, 0x32, 0x04, 0x0c, 0x05, 0x65, 0xf9, 0x8e, 0xf5, 0x96, 0xff,\n  0xc3, 0x05, 0x23, 0x06, 0x9a, 0x05, 0x01, 0xfb, 0x5f, 0xf7, 0x99, 0xfd,\n  0x3f, 0x02, 0x75, 0x02, 0x97, 0x01, 0xe6, 0x00, 0x13, 0x04, 0x23, 0x03,\n  0xeb, 0xf7, 0x41, 0xf7, 0xe2, 0x01, 0x5b, 0x07, 0x37, 0x09, 0xa3, 0xfe,\n  0x97, 0xf5, 0x8d, 0xf9, 0x8d, 0x01, 0x04, 0x06, 0x8f, 0x03, 0x0b, 0x06,\n  0x4c, 0xfe, 0x39, 0xf6, 0x20, 0xfa, 0xa1, 0x02, 0x67, 0x07, 0xc3, 0x02,\n  0xef, 0xfc, 0x63, 0xfd, 0x4d, 0x02, 0xf6, 0x05, 0x88, 0xfe, 0x19, 0xf8,\n  0x87, 0xfc, 0x83, 0x02, 0x34, 0x04, 0xae, 0x01, 0x17, 0xff, 0x6c, 0xfe,\n  0x63, 0xff, 0x25, 0x00, 0xb1, 0xff, 0x81, 0xfe, 0x8f, 0x00, 0x2f, 0x02,\n  0xa6, 0x05, 0xa9, 0x01, 0x9e, 0xf8, 0x71, 0xf8, 0x56, 0x00, 0x68, 0x05,\n  0xdf, 0x07, 0x0b, 0x03, 0x45, 0xf8, 0x65, 0xf9, 0xdd, 0xff, 0xdb, 0x02,\n  0x30, 0x01, 0x19, 0x00, 0x1b, 0x01, 0x6e, 0x00, 0x1c, 0x06, 0x41, 0x03,\n  0xc8, 0xf4, 0xb1, 0xf6, 0xdd, 0x02, 0x3d, 0x08, 0xf3, 0x02, 0xd5, 0x02,\n  0x88, 0x01, 0xe0, 0xf6, 0xf4, 0xf7, 0x53, 0x03, 0xdc, 0x06, 0xac, 0x06,\n  0x4f, 0x01, 0xd9, 0xf7, 0x35, 0xf9, 0xed, 0xff, 0xab, 0x02, 0xdb, 0x02,\n  0x0a, 0x01, 0x99, 0x01, 0x07, 0x07, 0x3f, 0xfd, 0xf9, 0xf4, 0xf8, 0xfa,\n  0x76, 0x04, 0xba, 0x06, 0x0a, 0x01, 0xc1, 0x00, 0x5a, 0x06, 0x02, 0xfb,\n  0xec, 0xf3, 0x23, 0xfd, 0x1a, 0x07, 0x37, 0x06, 0x7e, 0x05, 0x3f, 0xff,\n  0x44, 0xf6, 0xe5, 0xf8, 0x85, 0x02, 0x4e, 0x06, 0x84, 0x07, 0x49, 0x02,\n  0x2e, 0xf7, 0x54, 0xf8, 0x36, 0xff, 0x63, 0x06, 0x66, 0x08, 0x5a, 0xff,\n  0x89, 0xf8, 0x75, 0xfa, 0x8a, 0x01, 0xbf, 0x04, 0xce, 0x04, 0x58, 0x04,\n  0x02, 0xfb, 0x73, 0xf7, 0xb1, 0xfd, 0xa5, 0x03, 0x30, 0x04, 0x35, 0x00,\n  0xc7, 0x02, 0xa9, 0x03, 0xa4, 0xfa, 0x54, 0xf9, 0x06, 0xfe, 0x4b, 0x02,\n  0x67, 0x06, 0x47, 0x05, 0x3b, 0xfc, 0x3e, 0xf9, 0x45, 0xfc, 0xd1, 0x02,\n  0x8b, 0x04, 0xb7, 0x02, 0xdb, 0x05, 0xcb, 0xfc, 0xba, 0xf4, 0xac, 0xfb,\n  0xa2, 0x05, 0x4e, 0x06, 0x96, 0x05, 0x28, 0x00, 0x11, 0xf7, 0xbd, 0xf9,\n  0x28, 0x01, 0xf3, 0x05, 0x82, 0x05, 0x69, 0xff, 0x98, 0xfa, 0x89, 0xfb,\n  0xf3, 0xff, 0x77, 0x04, 0x8f, 0x07, 0x26, 0x00, 0x17, 0xf7, 0x44, 0xfa,\n  0x51, 0x02, 0xe9, 0x08, 0xe7, 0x04, 0x66, 0xfa, 0x5c, 0xf9, 0x51, 0xfd,\n  0xe2, 0x01, 0x0b, 0x04, 0x09, 0x02, 0xe9, 0xff, 0x42, 0xff, 0x5c, 0x00,\n  0x18, 0xff, 0x2d, 0xff, 0xce, 0xff, 0x2c, 0x05, 0xd0, 0x07, 0x5f, 0xf7,\n  0x6b, 0xf3, 0xff, 0xfd, 0x1c, 0x08, 0x07, 0x08, 0x83, 0xff, 0x28, 0xfb,\n  0x45, 0xfb, 0x4c, 0x00, 0xa1, 0x03, 0xc9, 0x02, 0xfe, 0xff, 0x41, 0x00,\n  0x67, 0x06, 0x5f, 0xfd, 0xb7, 0xf5, 0xf9, 0xfa, 0x41, 0x03, 0xcb, 0x06,\n  0x70, 0x07, 0x35, 0xff, 0xe1, 0xf6, 0xe9, 0xf9, 0x27, 0x02, 0x14, 0x06,\n  0xe1, 0x02, 0xbb, 0x04, 0x76, 0xfe, 0xf0, 0xf3, 0x9d, 0xfc, 0xb4, 0x05,\n  0x77, 0x09, 0x48, 0x05, 0x6e, 0xf7, 0xaa, 0xf6, 0xb6, 0xff, 0x90, 0x05,\n  0x5d, 0x03, 0xa4, 0xff, 0xa4, 0xff, 0x69, 0xff, 0x60, 0xfe, 0xbe, 0xfe,\n  0xde, 0xfe, 0x4b, 0x03, 0x9b, 0x05, 0x16, 0xfe, 0x16, 0xfa, 0x5f, 0xfc,\n  0x35, 0x02, 0xdf, 0x03, 0xbb, 0x01, 0x3e, 0xff, 0xc7, 0x03, 0x13, 0x03,\n  0x95, 0xf8, 0x4d, 0xf9, 0x05, 0x00, 0x7d, 0x03, 0xd2, 0x01, 0x6b, 0x00,\n  0x8b, 0x01, 0xeb, 0x04, 0xc3, 0xfe, 0xa8, 0xf6, 0x7d, 0xfc, 0xd0, 0x04,\n  0xd9, 0x09, 0x53, 0x02, 0x79, 0xf7, 0xae, 0xf8, 0xfa, 0xfe, 0xa8, 0x05,\n  0x5b, 0x03, 0x83, 0x03, 0x9f, 0x04, 0xc0, 0xf9, 0xcf, 0xf6, 0x8b, 0xfd,\n  0x4c, 0x04, 0x60, 0x05, 0xac, 0x00, 0x37, 0x04, 0x2b, 0x02, 0xc8, 0xf7,\n  0xe0, 0xf7, 0x31, 0x00, 0x9c, 0x05, 0xc2, 0x07, 0x16, 0x04, 0xaa, 0xf8,\n  0x31, 0xf7, 0x21, 0xfe, 0xf0, 0x05, 0x9e, 0x04, 0x75, 0x02, 0x2c, 0x00,\n  0x25, 0xfa, 0xea, 0xfb, 0x47, 0x02, 0xb9, 0x03, 0xab, 0x02, 0x05, 0x03,\n  0x31, 0xfd, 0xa7, 0xf7, 0xa1, 0xfd, 0xbb, 0x04, 0x8c, 0x09, 0x3e, 0x00,\n  0x11, 0xf7, 0x89, 0xf9, 0xe9, 0x00, 0x24, 0x05, 0xdf, 0x04, 0xe0, 0x05,\n  0x11, 0xfc, 0x5b, 0xf6, 0xb1, 0xfb, 0x62, 0x04, 0xd2, 0x05, 0x31, 0x01,\n  0x58, 0x00, 0x5d, 0x01, 0xb3, 0xfc, 0xca, 0xfa, 0x74, 0x00, 0xeb, 0x03,\n  0xff, 0x05, 0xb1, 0x02, 0xf7, 0xf7, 0x15, 0xf8, 0x8d, 0xff, 0x23, 0x04,\n  0x37, 0x04, 0xe4, 0x05, 0x62, 0xff, 0xf9, 0xf8, 0xf8, 0xfa, 0xa2, 0xff,\n  0xca, 0x04, 0x05, 0x03, 0x3e, 0x06, 0x43, 0x00, 0xa1, 0xf5, 0x8a, 0xf8,\n  0xfb, 0x03, 0x66, 0x06, 0x8f, 0x06, 0xe7, 0x02, 0x00, 0xf5, 0xa7, 0xf6,\n  0xcb, 0x03, 0x24, 0x07, 0x9a, 0x04, 0x7b, 0x05, 0xf2, 0xf8, 0x9f, 0xf3,\n  0x21, 0xff, 0x8b, 0x07, 0x6d, 0x0a, 0x4e, 0x01, 0x3b, 0xf5, 0x9c, 0xf7,\n  0xa3, 0x02, 0x33, 0x07, 0x6b, 0x02, 0x1d, 0x00, 0xd9, 0x01, 0x17, 0xfc,\n  0x58, 0xfa, 0x00, 0x01, 0xcb, 0x03, 0xcf, 0x01, 0xa4, 0xff, 0x11, 0x03,\n  0x97, 0x01, 0x5a, 0xf7, 0x7d, 0xfa, 0xef, 0x03, 0x88, 0x06, 0xd4, 0x09,\n  0x8d, 0xfb, 0xd2, 0xf1, 0xdd, 0xf9, 0x83, 0x06, 0x34, 0x07, 0x67, 0x05,\n  0xff, 0x02, 0xdc, 0xf7, 0x3a, 0xf7, 0xd3, 0xfe, 0x17, 0x06, 0x88, 0x04,\n  0x57, 0x06, 0x45, 0xff, 0x81, 0xf5, 0x59, 0xf9, 0xcd, 0x02, 0x3e, 0x07,\n  0xe4, 0x01, 0xc7, 0x03, 0x58, 0x01, 0xdf, 0xf4, 0xbd, 0xf9, 0x3b, 0x05,\n  0x38, 0x06, 0x99, 0x03, 0xf7, 0x03, 0xf9, 0xf8, 0x4f, 0xf5, 0x81, 0xff,\n  0x18, 0x0a, 0xc3, 0x07, 0xd6, 0xfa, 0x79, 0xf7, 0xb1, 0xfc, 0x9e, 0x04,\n  0x87, 0x04, 0x8e, 0x04, 0xa3, 0x02, 0xad, 0xf8, 0x3e, 0xf8, 0x83, 0xff,\n  0xc3, 0x05, 0x2b, 0x04, 0x33, 0x01, 0x0f, 0x01, 0xae, 0xfb, 0x9d, 0xfb,\n  0xe8, 0xfe, 0xab, 0x01, 0x3f, 0x02, 0xd9, 0x03, 0x8b, 0x03, 0x2f, 0xfc,\n  0x84, 0xf8, 0xc1, 0xfd, 0xe3, 0x03, 0x0c, 0x08, 0xef, 0x03, 0x2e, 0xf9,\n  0xe1, 0xf8, 0x1c, 0xfe, 0xa3, 0x03, 0x52, 0x04, 0x33, 0x05, 0xf3, 0xff,\n  0x30, 0xf9, 0x72, 0xfb, 0x83, 0x00, 0xf7, 0x03, 0x2b, 0x04, 0x10, 0x00,\n  0x91, 0xfc, 0xa9, 0xfd, 0x10, 0x00, 0x29, 0x00, 0xe7, 0xff, 0xec, 0x00,\n  0x9b, 0x02, 0x21, 0x03, 0x5b, 0xfd, 0x3a, 0xfa, 0x23, 0x05, 0xe8, 0x04,\n  0xdc, 0xfa, 0x71, 0xf9, 0x81, 0xfe, 0xcb, 0x03, 0x13, 0x06, 0x32, 0x06,\n  0x51, 0xfb, 0xf1, 0xf7, 0x41, 0xfc, 0x41, 0x02, 0xca, 0x04, 0x21, 0x02,\n  0x4f, 0x00, 0x63, 0xff, 0xe1, 0xfd, 0x20, 0xff, 0x19, 0x01, 0xdb, 0x03,\n  0xbb, 0x06, 0x9d, 0xfa, 0xf8, 0xf3, 0xcd, 0xfc, 0xf3, 0x05, 0x43, 0x05,\n  0x43, 0x04, 0xf3, 0x02, 0xad, 0xf9, 0x65, 0xf9, 0x75, 0xfe, 0x1d, 0x03,\n  0xe9, 0x03, 0xbe, 0x04, 0xf2, 0xff, 0x7d, 0xfa, 0x89, 0xfc, 0x5f, 0x00,\n  0x60, 0x01, 0x5b, 0x00, 0xdc, 0x00, 0x63, 0x02, 0x30, 0x05, 0x1c, 0xfe,\n  0xed, 0xf8, 0xd2, 0xfb, 0x0f, 0x01, 0xc3, 0x03, 0x00, 0x05, 0xb5, 0x03,\n  0x45, 0xfb, 0x28, 0xfa, 0xfd, 0xfe, 0xa7, 0x02, 0x7d, 0x02, 0xb0, 0xff,\n  0x41, 0xfd, 0x4b, 0xff, 0x2d, 0x02, 0x25, 0x03, 0x47, 0x05, 0xb5, 0xfd,\n  0xd7, 0xf6, 0x0b, 0xfc, 0xc5, 0x03, 0x9f, 0x04, 0xce, 0x00, 0x9f, 0xff,\n  0x54, 0xff, 0xd0, 0xfe, 0x9a, 0x00, 0x0f, 0x08, 0x96, 0xff, 0x81, 0xf5,\n  0xde, 0xfa, 0x6f, 0x01, 0xf0, 0x04, 0x35, 0x02, 0xb7, 0x03, 0xcb, 0x03,\n  0x34, 0xfa, 0xd5, 0xf8, 0xbf, 0xfd, 0xe3, 0x03, 0x3a, 0x04, 0x24, 0x05,\n  0x18, 0x01, 0x2c, 0xf9, 0xf5, 0xfa, 0x55, 0x00, 0xaf, 0x02, 0x10, 0x01,\n  0x01, 0x00, 0xb7, 0x01, 0xfb, 0x03, 0x9f, 0xfd, 0x4a, 0xf8, 0x51, 0x01,\n  0x8f, 0x08, 0xef, 0xff, 0x04, 0xfa, 0xfd, 0xfa, 0x18, 0x01, 0x82, 0x04,\n  0x97, 0x07, 0xd0, 0x00, 0xca, 0xf7, 0x24, 0xf9, 0x34, 0x00, 0xa8, 0x05,\n  0x69, 0x03, 0x1a, 0x00, 0x63, 0x02, 0x65, 0xff, 0xa8, 0xf8, 0x87, 0xfd,\n  0xcd, 0x03, 0xc9, 0x03, 0x65, 0x03, 0x6b, 0x02, 0x41, 0xf9, 0xb1, 0xf7,\n  0x5f, 0x00, 0xde, 0x05, 0x1f, 0x03, 0xfe, 0x00, 0x8b, 0x06, 0x71, 0xfc,\n  0xe7, 0xf2, 0x69, 0xfc, 0x92, 0x06, 0x31, 0x0a, 0xa7, 0x03, 0x72, 0xf8,\n  0x1a, 0xf9, 0x3d, 0xfe, 0xc5, 0x02, 0x5f, 0x03, 0xf7, 0x01, 0x39, 0xff,\n  0xb3, 0x03, 0x8f, 0x04, 0x04, 0xf8, 0x69, 0xf6, 0xa2, 0x01, 0xe4, 0x09,\n  0xed, 0x02, 0xea, 0xfa, 0xb5, 0xfa, 0x8f, 0xff, 0xcc, 0x04, 0xbf, 0x06,\n  0x97, 0xfe, 0x18, 0xf9, 0x56, 0xfb, 0x3c, 0x01, 0x8b, 0x05, 0x66, 0x06,\n  0xf1, 0xfe, 0xc9, 0xf7, 0x99, 0xfb, 0xf9, 0x02, 0x7b, 0x05, 0x3a, 0x05,\n  0xdb, 0xfe, 0xcc, 0xf8, 0x81, 0xfc, 0x03, 0x02, 0x1d, 0x03, 0x0d, 0x01,\n  0x13, 0xfe, 0x28, 0xfe, 0xd7, 0x00, 0xa3, 0x04, 0xc7, 0x03, 0xc6, 0xfb,\n  0x19, 0xfa, 0x75, 0xfe, 0x81, 0x02, 0x81, 0x02, 0xe0, 0xff, 0x54, 0x01,\n  0xa3, 0x04, 0x8d, 0xfd, 0x3d, 0xfa, 0x25, 0xfd, 0xa4, 0x00, 0xb1, 0x02,\n  0x26, 0x04, 0xc6, 0x05, 0x49, 0xfc, 0x7d, 0xf8, 0xf5, 0xfb, 0x4f, 0x02,\n  0x56, 0x04, 0xc3, 0x03, 0x87, 0x05, 0xb1, 0xfb, 0xfb, 0xf6, 0x19, 0xfc,\n  0x0a, 0x04, 0x52, 0x05, 0x63, 0x02, 0x2d, 0xff, 0x5a, 0xfe, 0x5f, 0x04,\n  0x5e, 0xfe, 0x54, 0xf9, 0x77, 0xfc, 0x52, 0x01, 0x2b, 0x04, 0x6d, 0x03,\n  0x37, 0x05, 0xbd, 0xfd, 0x05, 0xf8, 0xc9, 0xfb, 0x2d, 0x02, 0x1f, 0x05,\n  0x47, 0x05, 0xc9, 0xff, 0x0d, 0xfa, 0x4b, 0xfc, 0x83, 0x00, 0x21, 0x03,\n  0xdb, 0x02, 0xec, 0xff, 0xdb, 0xfd, 0x75, 0xfe, 0xf2, 0xff, 0x9c, 0xff,\n  0xc3, 0xff, 0x18, 0x01, 0x55, 0x02, 0x2b, 0x06, 0x31, 0xfe, 0x10, 0xf8,\n  0x47, 0xfc, 0xeb, 0x00, 0xad, 0x02, 0x9f, 0x02, 0xb2, 0x00, 0xd1, 0x03,\n  0xcf, 0x02, 0x86, 0xf8, 0xe2, 0xf7, 0x47, 0x03, 0xef, 0x08, 0x86, 0x00,\n  0x0d, 0xfa, 0xf6, 0xfa, 0xfc, 0x01, 0xa3, 0x04, 0xb2, 0x01, 0xcf, 0x02,\n  0x41, 0x02, 0x10, 0xf7, 0xa9, 0xf9, 0xc9, 0x02, 0xe2, 0x09, 0x3b, 0x06,\n  0x21, 0xf8, 0x8c, 0xf6, 0x7d, 0xfd, 0x6a, 0x05, 0x07, 0x05, 0xbf, 0x00,\n  0xf7, 0xfe, 0x8b, 0x00, 0xf4, 0xfe, 0xcf, 0xfd, 0xfe, 0xff, 0x5b, 0x01,\n  0x28, 0x01, 0x6c, 0x01, 0x44, 0x00, 0x81, 0xfc, 0xc7, 0xfd, 0xcb, 0x00,\n  0x8d, 0x02, 0x14, 0x00, 0x7c, 0x08, 0xef, 0x02, 0x1a, 0xee, 0xfb, 0xf6,\n  0xe8, 0x07, 0x64, 0x0a, 0xee, 0x07, 0x09, 0xfc, 0xc1, 0xf3, 0xb5, 0xfa,\n  0xf2, 0x04, 0xdf, 0x06, 0x22, 0x01, 0xe2, 0x01, 0x55, 0x02, 0x9e, 0xf7,\n  0x41, 0xf9, 0xa3, 0x03, 0xab, 0x05, 0xed, 0x02, 0x71, 0x03, 0xb3, 0xfc,\n  0x11, 0xf6, 0xcd, 0xfd, 0x82, 0x05, 0xa3, 0x06, 0xd0, 0x04, 0x21, 0xfb,\n  0x4f, 0xf7, 0xab, 0xfd, 0xa3, 0x04, 0xb4, 0x04, 0x11, 0x00, 0x73, 0xfd,\n  0x3d, 0xfc, 0xea, 0xff, 0x21, 0x03, 0xc9, 0x02, 0xab, 0x01, 0x30, 0xfe,\n  0xe9, 0xfb, 0x3f, 0xff, 0x3f, 0x02, 0x4f, 0x02, 0xc8, 0x08, 0xf7, 0xfd,\n  0x2c, 0xf3, 0x21, 0xf9, 0x81, 0x03, 0x94, 0x07, 0xf3, 0x02, 0xf4, 0xfe,\n  0xe9, 0x00, 0x0b, 0x00, 0x6c, 0xfb, 0x34, 0xfe, 0x7b, 0x02, 0x0f, 0x02,\n  0xd9, 0x01, 0xae, 0x08, 0x89, 0xfa, 0x79, 0xf0, 0x61, 0xfd, 0x20, 0x09,\n  0x5a, 0x06, 0xdb, 0x03, 0x2d, 0x01, 0x41, 0xf5, 0xa2, 0xf8, 0x33, 0x04,\n  0x8e, 0x07, 0x15, 0x08, 0x07, 0xfd, 0x69, 0xf5, 0x79, 0xfa, 0x7f, 0x03,\n  0xd3, 0x05, 0xaf, 0x04, 0x21, 0x03, 0x55, 0xfa, 0x1a, 0xf8, 0xd3, 0xfd,\n  0xe3, 0x04, 0x07, 0x09, 0x2b, 0x01, 0xf9, 0xf8, 0x88, 0xfa, 0xcf, 0xfe,\n  0xad, 0x03, 0x63, 0x03, 0xe2, 0x01, 0xc7, 0x05, 0xc3, 0xfc, 0x14, 0xf5,\n  0x73, 0xfc, 0x04, 0x06, 0x38, 0x05, 0x39, 0x03, 0x6b, 0x03, 0x45, 0xf9,\n  0x66, 0xf6, 0xfc, 0xff, 0x3f, 0x06, 0x4e, 0x06, 0x9b, 0x03, 0xc1, 0xfa,\n  0x42, 0xf8, 0x01, 0xfd, 0x3d, 0x03, 0x82, 0x05, 0xfa, 0x04, 0x57, 0xff,\n  0x61, 0xf9, 0x47, 0xfc, 0xcb, 0x02, 0x2f, 0x04, 0xfc, 0xff, 0xbd, 0xfd,\n  0x82, 0xfe, 0x44, 0x00, 0x22, 0x01, 0xdf, 0x00, 0x05, 0x00, 0x74, 0xff,\n  0x92, 0xff, 0xd1, 0xff, 0xa1, 0xff, 0x82, 0xfe, 0x2c, 0x00, 0xbe, 0x01,\n  0x9c, 0x04, 0x35, 0x03, 0x31, 0xfa, 0xc5, 0xf9, 0x79, 0x00, 0x53, 0x03,\n  0x27, 0x02, 0xf3, 0xfe, 0x17, 0xfd, 0x8a, 0xff, 0xc4, 0x04, 0x84, 0x05,\n  0x69, 0xfc, 0x6c, 0xf8, 0x89, 0xfd, 0x95, 0x03, 0xb4, 0x05, 0xed, 0x03,\n  0x71, 0xfc, 0x08, 0xfa, 0x31, 0xfe, 0x33, 0x02, 0x65, 0x03, 0x6d, 0x01,\n  0xa9, 0xfe, 0x34, 0xfe, 0x41, 0xff, 0x59, 0x00, 0x47, 0xff, 0xf6, 0xff,\n  0xc1, 0x00, 0x07, 0x04, 0x47, 0x05, 0xdd, 0xfa, 0x72, 0xf7, 0xbf, 0xfd,\n  0x53, 0x05, 0x29, 0x08, 0x64, 0x00, 0xf4, 0xf8, 0x33, 0xfc, 0x17, 0x03,\n  0x4d, 0x03, 0xb6, 0xff, 0x6d, 0xfe, 0x24, 0xff, 0x49, 0x00, 0xf3, 0xff,\n  0x58, 0xfe, 0x2c, 0x00, 0xea, 0x01, 0x83, 0x06, 0x91, 0x01, 0xbf, 0xf7,\n  0xa5, 0xf9, 0x2c, 0x00, 0xb2, 0x07, 0xaf, 0x05, 0xdf, 0xfc, 0x56, 0xf9,\n  0x49, 0xfd, 0x7d, 0x02, 0x2b, 0x07, 0xb5, 0x03, 0x39, 0xfa, 0x45, 0xf9,\n  0x2b, 0xfe, 0x73, 0x04, 0x8b, 0x03, 0x75, 0x03, 0x55, 0x03, 0xb6, 0xf9,\n  0x36, 0xf8, 0x91, 0x01, 0xe8, 0x04, 0x63, 0x01, 0xe5, 0xfd, 0x43, 0xfd,\n  0xf9, 0xff, 0xb7, 0x02, 0x93, 0x01, 0x8e, 0x04, 0x07, 0x02, 0x41, 0xf8,\n  0xb5, 0xf9, 0x6b, 0x00, 0xdd, 0x03, 0x19, 0x02, 0xe7, 0xff, 0xc7, 0x03,\n  0x96, 0x01, 0xc1, 0xfa, 0xc2, 0xfb, 0xa4, 0xff, 0x2b, 0x02, 0x5f, 0x03,\n  0x6d, 0x03, 0x48, 0xfe, 0xd9, 0xfb, 0x91, 0xfd, 0x8d, 0xff, 0x39, 0x02,\n  0x37, 0x02, 0xa9, 0x02, 0xa7, 0x04, 0x23, 0xfc, 0xd5, 0xf8, 0x42, 0xfe,\n  0x6f, 0x02, 0xa8, 0x01, 0x72, 0xff, 0x80, 0x00, 0x9f, 0x01, 0x70, 0x06,\n  0xbc, 0xff, 0xd9, 0xf7, 0xbd, 0xfb, 0x16, 0x01, 0x81, 0x02, 0x0f, 0x01,\n  0xf8, 0x00, 0x9d, 0x00, 0x2f, 0x03, 0x17, 0x03, 0x04, 0xfa, 0x3c, 0xf8,\n  0x04, 0x01, 0xd4, 0x05, 0x92, 0x06, 0x44, 0x00, 0xc4, 0xf8, 0xc5, 0xf9,\n  0x58, 0x00, 0x8b, 0x04, 0x1a, 0x07, 0x69, 0x02, 0x74, 0xf9, 0xf2, 0xf9,\n  0xbd, 0xfe, 0xf7, 0x02, 0xb3, 0x03, 0xac, 0x00, 0x83, 0x04, 0x3b, 0x02,\n  0xdb, 0xf7, 0x35, 0xf9, 0xd1, 0xff, 0x38, 0x05, 0x29, 0x03, 0x8b, 0x01,\n  0xeb, 0x04, 0xfb, 0xfc, 0x11, 0xf8, 0xf9, 0xfc, 0x7e, 0x01, 0x2b, 0x03,\n  0x19, 0x02, 0x4f, 0x01, 0x87, 0x04, 0x29, 0xff, 0x91, 0xf8, 0x7d, 0xfb,\n  0xb0, 0x00, 0x6e, 0x04, 0xa5, 0x02, 0xab, 0x01, 0xdb, 0xfe, 0x21, 0xfd,\n  0x7c, 0xfe, 0xd2, 0x06, 0xbb, 0x04, 0x8b, 0xf7, 0xbe, 0xf7, 0x29, 0xff,\n  0x44, 0x06, 0xe1, 0x03, 0x11, 0x03, 0xdb, 0x02, 0xfa, 0xf9, 0x15, 0xf8,\n  0x68, 0xff, 0x5a, 0x05, 0x1b, 0x05, 0x52, 0x00, 0x71, 0xfb, 0x33, 0x02,\n  0x75, 0x02, 0xb6, 0xfb, 0x29, 0xfc, 0xea, 0xfe, 0xf3, 0x02, 0xe7, 0x02,\n  0x4a, 0x04, 0x53, 0x02, 0xb1, 0xf7, 0x71, 0xf9, 0x65, 0x02, 0x77, 0x08,\n  0x23, 0x06, 0x55, 0xfa, 0xf4, 0xf7, 0x57, 0xfd, 0x47, 0x03, 0x9a, 0x04,\n  0xd7, 0x04, 0x8a, 0xff, 0x20, 0xfa, 0x67, 0xfc, 0x88, 0x00, 0x41, 0x03,\n  0x4f, 0x03, 0xbc, 0xff, 0x3f, 0xfd, 0xb7, 0xfd, 0xc3, 0xfe, 0x5d, 0x01,\n  0x73, 0x02, 0x60, 0x01, 0xc5, 0xff, 0x8a, 0xff, 0x01, 0x01, 0x05, 0x03,\n  0xf5, 0xff, 0xfa, 0xf9, 0xb1, 0xfb, 0xd1, 0x00, 0x7f, 0x02, 0x66, 0x01,\n  0xeb, 0x00, 0xf1, 0x00, 0x40, 0x00, 0x2b, 0x04, 0x53, 0xff, 0x15, 0xf9,\n  0xe3, 0xfc, 0x65, 0x00, 0xc9, 0x02, 0xe1, 0x01, 0x9f, 0x03, 0xbf, 0x03,\n  0x40, 0xfb, 0x16, 0xf9, 0x2e, 0xfe, 0x29, 0x03, 0x1b, 0x05, 0xe3, 0x03,\n  0x91, 0xfd, 0xb4, 0xf9, 0xcd, 0xfc, 0x07, 0x02, 0x47, 0x06, 0x87, 0x05,\n  0xc9, 0xfb, 0x3a, 0xf9, 0x1b, 0xfd, 0x71, 0x03, 0x8a, 0x05, 0x40, 0x00,\n  0xad, 0xfc, 0xc5, 0xfc, 0xd7, 0xff, 0xfb, 0x02, 0xbb, 0x05, 0x00, 0x00,\n  0x09, 0xfa, 0x9e, 0xfb, 0x9c, 0xff, 0x00, 0x04, 0x57, 0x02, 0x5d, 0x02,\n  0x43, 0x05, 0x4c, 0xfb, 0x4a, 0xf6, 0x39, 0xfd, 0x80, 0x05, 0x06, 0x05,\n  0xe0, 0x05, 0x39, 0xff, 0x91, 0xf7, 0x04, 0xfb, 0x46, 0x00, 0x23, 0x04,\n  0x19, 0x03, 0x73, 0x00, 0x0a, 0x01, 0xdb, 0x01, 0xb6, 0xfb, 0x89, 0xfa,\n  0xe5, 0x01, 0x51, 0x03, 0x21, 0x08, 0xf1, 0x01, 0x2a, 0xf4, 0x17, 0xf7,\n  0xa7, 0x02, 0xfc, 0x07, 0x47, 0x03, 0xff, 0x04, 0xfd, 0xfd, 0x97, 0xf5,\n  0x09, 0xfb, 0x70, 0x04, 0x20, 0x06, 0x34, 0x01, 0xc7, 0x04, 0x78, 0xff,\n  0x6b, 0xf5, 0x22, 0xfa, 0x60, 0x04, 0x96, 0x06, 0x03, 0x07, 0xcc, 0xfe,\n  0x26, 0xf6, 0xe4, 0xf9, 0x29, 0x03, 0x28, 0x06, 0xf3, 0x04, 0xe8, 0x01,\n  0x0d, 0xf8, 0x46, 0xf9, 0xf6, 0x01, 0x87, 0x05, 0xe7, 0x01, 0x16, 0x05,\n  0x98, 0x00, 0xa1, 0xf6, 0x5a, 0xfa, 0x5c, 0x00, 0x8b, 0x04, 0xc9, 0x02,\n  0xa3, 0x04, 0xa9, 0x01, 0x30, 0xf9, 0x74, 0xf9, 0x19, 0x00, 0x66, 0x05,\n  0xff, 0x02, 0x9f, 0x02, 0xf9, 0xff, 0x96, 0xf8, 0x6b, 0xfd, 0xfb, 0x02,\n  0xf4, 0x07, 0x6a, 0x04, 0x86, 0xf7, 0x7a, 0xf6, 0x65, 0xff, 0x0b, 0x06,\n  0xff, 0x05, 0x2c, 0x05, 0x99, 0xfb, 0xf3, 0xf7, 0xa7, 0xfc, 0xdd, 0x02,\n  0xaf, 0x04, 0x75, 0x01, 0xb1, 0xff, 0x65, 0xff, 0x84, 0xff, 0x01, 0x00,\n  0xd6, 0x04, 0xd3, 0x00, 0x59, 0xf8, 0x31, 0xfb, 0xbb, 0x00, 0x05, 0x03,\n  0x17, 0x03, 0xf0, 0x04, 0x42, 0xff, 0x95, 0xfa, 0xe7, 0xfc, 0x13, 0x00,\n  0x97, 0x01, 0xd3, 0x01, 0x73, 0x01, 0x63, 0x03, 0x36, 0x01, 0x31, 0xfa,\n  0x1e, 0xfb, 0xa7, 0x00, 0x92, 0x04, 0xed, 0x02, 0xaf, 0xfe, 0x71, 0xfd,\n  0xf3, 0xfe, 0x8b, 0x00, 0x37, 0x00, 0x23, 0xff, 0x86, 0x00, 0x63, 0x05,\n  0x15, 0x01, 0x38, 0xf9, 0xd0, 0xfb, 0x0f, 0x02, 0x62, 0x07, 0xbf, 0x03,\n  0x9d, 0xfa, 0xbe, 0xf9, 0xdb, 0xfd, 0x1b, 0x03, 0xd1, 0x03, 0xc4, 0x01,\n  0x5e, 0x04, 0xc9, 0xfe, 0xe9, 0xf6, 0xc9, 0xfb, 0xbb, 0x03, 0xd2, 0x05,\n  0x9a, 0x01, 0x9b, 0xfd, 0xd1, 0xfd, 0x74, 0x00, 0xa6, 0x00, 0x2c, 0x05,\n  0xad, 0x02, 0x12, 0xf8, 0xa6, 0xf9, 0xd7, 0x00, 0xeb, 0x04, 0xdb, 0x02,\n  0x51, 0xff, 0x87, 0xfc, 0x87, 0xfe, 0x3f, 0x02, 0xb1, 0x03, 0xa7, 0x04,\n  0x97, 0xfd, 0x2a, 0xf7, 0x89, 0xfc, 0x7f, 0x05, 0xed, 0x08, 0x51, 0xff,\n  0x2d, 0xf9, 0x94, 0xfb, 0x83, 0x00, 0xdd, 0x02, 0x9c, 0x04, 0x69, 0x03,\n  0x49, 0xfc, 0x7e, 0xfa, 0x79, 0xfd, 0xc9, 0x01, 0xe3, 0x03, 0x06, 0x01,\n  0x43, 0x02, 0x07, 0x05, 0x69, 0xfa, 0x82, 0xf6, 0x58, 0xfe, 0xd6, 0x05,\n  0xff, 0x04, 0xbe, 0x04, 0xba, 0xfe, 0xee, 0xf7, 0x72, 0xfb, 0xbb, 0x01,\n  0x50, 0x05, 0xc0, 0x04, 0x17, 0xff, 0x11, 0xfb, 0x8f, 0xfd, 0x98, 0x00,\n  0x94, 0x00, 0x25, 0x00, 0x75, 0x01, 0x34, 0x06, 0x29, 0x00, 0x20, 0xf9,\n  0x26, 0xfb, 0x26, 0x00, 0x30, 0x04, 0xe9, 0x02, 0x3e, 0x00, 0x9f, 0xfe,\n  0x18, 0xff, 0x1f, 0x00, 0xbb, 0x00, 0xd6, 0x00, 0xb5, 0x00, 0xcc, 0xff,\n  0x85, 0xfe, 0xf4, 0xfe, 0x9d, 0x00, 0x63, 0x02, 0xbb, 0x00, 0x53, 0xfc,\n  0x01, 0xfd, 0x97, 0x00, 0x65, 0x02, 0xc9, 0x01, 0xf2, 0xff, 0x2c, 0xff,\n  0xc3, 0xfe, 0x37, 0xfe, 0x38, 0x00, 0x51, 0x02, 0x5d, 0x01, 0xe1, 0x01,\n  0xe5, 0x00, 0xb4, 0xfb, 0xb3, 0xfc, 0x5a, 0x01, 0xb7, 0x02, 0xc4, 0x00,\n  0xb0, 0xff, 0x2f, 0x00, 0x6b, 0x06, 0x8b, 0x00, 0x4a, 0xf5, 0xf0, 0xf9,\n  0xa9, 0x02, 0x20, 0x06, 0x2f, 0x03, 0x18, 0xff, 0xa3, 0xfd, 0xcd, 0xfd,\n  0x15, 0xff, 0x55, 0x01, 0xc0, 0x05, 0x6f, 0x02, 0xc6, 0xfa, 0x9d, 0xfb,\n  0xb4, 0xff, 0xd2, 0x01, 0xaa, 0x00, 0x73, 0x00, 0x64, 0x01, 0x2b, 0x04,\n  0xff, 0xff, 0x2c, 0xfa, 0x67, 0xfc, 0x1b, 0x01, 0xc9, 0x03, 0x21, 0x02,\n  0x00, 0xff, 0x0a, 0xfe, 0x12, 0xff, 0xc0, 0xff, 0x3c, 0xff, 0xc5, 0x00,\n  0x9a, 0x01, 0x3b, 0x04, 0xc9, 0x02, 0x35, 0xfa, 0xad, 0xfa, 0x87, 0xff,\n  0x29, 0x02, 0x24, 0x04, 0x84, 0x01, 0xbf, 0xfc, 0x65, 0xfc, 0x3f, 0x03,\n  0xfb, 0x03, 0x3d, 0xfe, 0x81, 0xfc, 0xd1, 0xfd, 0x1e, 0x01, 0x45, 0x03,\n  0xaf, 0x04, 0x30, 0xff, 0x88, 0xfa, 0xe7, 0xfc, 0xee, 0x00, 0x2b, 0x03,\n  0x6f, 0x02, 0x5d, 0xff, 0xcd, 0xfd, 0x73, 0xfd, 0xb1, 0xff, 0xc9, 0x01,\n  0x6b, 0x03, 0x84, 0x05, 0xd1, 0xfc, 0x02, 0xf9, 0x61, 0xfd, 0x3d, 0x01,\n  0x23, 0x02, 0x03, 0x02, 0xc5, 0x00, 0xed, 0x03, 0xcc, 0x01, 0xf2, 0xf8,\n  0x46, 0xf9, 0x79, 0x01, 0xd7, 0x04, 0x5b, 0x05, 0x13, 0x04, 0xfa, 0xf9,\n  0x32, 0xf8, 0xfb, 0xfd, 0xe3, 0x03, 0x92, 0x04, 0x72, 0x01, 0xd2, 0xfe,\n  0x91, 0xfe, 0xed, 0x02, 0x01, 0x02, 0x91, 0xfa, 0x71, 0xfc, 0x06, 0x01,\n  0x55, 0x02, 0x45, 0x01, 0x96, 0xff, 0x47, 0xff, 0xe8, 0x00, 0xa6, 0x00,\n  0x14, 0xff, 0xb8, 0xfe, 0x4b, 0xfe, 0x8e, 0x00, 0xeb, 0x01, 0xd3, 0x03,\n  0xe9, 0x03, 0x1e, 0xfb, 0x00, 0xf9, 0x33, 0xfe, 0x8e, 0x04, 0x28, 0x06,\n  0xc5, 0xff, 0x61, 0xfb, 0x41, 0xfc, 0xc9, 0xff, 0x79, 0x03, 0xb5, 0x01,\n  0x61, 0x02, 0x2b, 0x05, 0x72, 0xfb, 0x47, 0xf7, 0xa1, 0xfc, 0x40, 0x04,\n  0x38, 0x05, 0xd7, 0x00, 0xce, 0xff, 0xa5, 0x01, 0x3d, 0xfd, 0xd9, 0xfb,\n  0xe2, 0x00, 0x99, 0x02, 0x39, 0x01, 0xe0, 0xff, 0x58, 0x04, 0x91, 0x03,\n  0x2a, 0xf7, 0x3b, 0xf6, 0xa3, 0x00, 0x7c, 0x07, 0x22, 0x04, 0xa3, 0x02,\n  0x32, 0x00, 0x39, 0xf8, 0xcd, 0xfa, 0x53, 0x05, 0x70, 0x09, 0x6d, 0xfe,\n  0xee, 0xf7, 0xfa, 0xfa, 0x99, 0x02, 0x18, 0x05, 0x4f, 0x02, 0x3a, 0x04,\n  0xac, 0xfe, 0x69, 0xf6, 0xb1, 0xfb, 0x9a, 0x04, 0xe0, 0x05, 0x87, 0x06,\n  0x8d, 0xfd, 0xc0, 0xf6, 0x0e, 0xfb, 0xed, 0x02, 0x2b, 0x05, 0x00, 0x04,\n  0x6b, 0x03, 0x4c, 0xfb, 0x8d, 0xf9, 0x2d, 0xff, 0xb7, 0x01, 0x81, 0x01,\n  0x83, 0x00, 0x59, 0x03, 0xcd, 0x03, 0x01, 0xfc, 0x09, 0xfa, 0x61, 0xfd,\n  0xc3, 0x02, 0x0a, 0x04, 0x13, 0x06, 0x95, 0xff, 0xa9, 0xf8, 0xf4, 0xfa,\n  0x98, 0x00, 0x5b, 0x04, 0xb5, 0x03, 0x4f, 0x04, 0x67, 0xfd, 0x22, 0xf9,\n  0xdd, 0xfc, 0x13, 0x02, 0x9a, 0x04, 0xe1, 0x03, 0x09, 0xfe, 0x61, 0xfa,\n  0x9d, 0xfd, 0x8b, 0x04, 0x53, 0x06, 0x6f, 0xfe, 0x85, 0xfa, 0xf1, 0xfb,\n  0xb5, 0x00, 0x46, 0x04, 0xbd, 0x01, 0x1b, 0x02, 0xbf, 0x04, 0xc9, 0xf8,\n  0xe9, 0xf6, 0xd3, 0x01, 0x77, 0x06, 0x8d, 0x02, 0x15, 0x02, 0xc1, 0x00,\n  0x96, 0xf8, 0xfd, 0xfa, 0x33, 0x03, 0x9a, 0x04, 0xf1, 0x03, 0x1d, 0x03,\n  0x20, 0xfa, 0x19, 0xf7, 0xfe, 0x00, 0xff, 0x06, 0x52, 0x01, 0xd1, 0xfc,\n  0x74, 0x00, 0x58, 0x01, 0xf0, 0xfe, 0x64, 0xfe, 0x8a, 0xfe, 0x15, 0x01,\n  0x55, 0x02, 0xeb, 0x04, 0xb0, 0xff, 0x0e, 0xf8, 0x49, 0xfc, 0xb8, 0x04,\n  0x68, 0x08, 0x42, 0xff, 0x3a, 0xf9, 0xd2, 0xfa, 0xaf, 0x00, 0xaf, 0x04,\n  0x89, 0x02, 0xe7, 0xff, 0xd2, 0xff, 0xdb, 0xfe, 0xc7, 0xfe, 0x20, 0x00,\n  0x0f, 0x01, 0xbb, 0x00, 0x37, 0x07, 0xac, 0x00, 0x0f, 0xf2, 0xed, 0xf8,\n  0x1a, 0x06, 0xc3, 0x07, 0x0f, 0x02, 0xb1, 0x02, 0x49, 0xfe, 0x33, 0xf7,\n  0x57, 0xfc, 0x37, 0x04, 0x1c, 0x06, 0xb4, 0x04, 0x13, 0xfd, 0x58, 0xf8,\n  0x23, 0xfc, 0xed, 0x02, 0xdc, 0x04, 0x8f, 0x03, 0x39, 0x02, 0x05, 0xfc,\n  0x65, 0xfa, 0xc0, 0xfe, 0x2b, 0x02, 0x0c, 0x01, 0xfc, 0xff, 0xf5, 0x00,\n  0xeb, 0x04, 0x13, 0x01, 0xd4, 0xf9, 0x28, 0xfb, 0x7d, 0x00, 0x2b, 0x04,\n  0xd8, 0x04, 0x74, 0x00, 0x60, 0xfb, 0xb3, 0xfc, 0x23, 0x00, 0x57, 0x02,\n  0x35, 0x02, 0x32, 0x00, 0x8a, 0xfe, 0xd6, 0xfe, 0xd4, 0xff, 0x92, 0x00,\n  0x0c, 0xff, 0x4d, 0xff, 0x25, 0x01, 0x5b, 0x06, 0x4b, 0x01, 0x4a, 0xf9,\n  0x65, 0xfa, 0xc2, 0xff, 0x1b, 0x04, 0x7e, 0x06, 0x09, 0x02, 0x35, 0xfa,\n  0xc4, 0xfa, 0x73, 0xfe, 0x63, 0x03, 0xff, 0x02, 0x00, 0x01, 0xd8, 0xfe,\n  0xe1, 0x03, 0x02, 0x04, 0x65, 0xf8, 0xc8, 0xf7, 0x9c, 0xff, 0x37, 0x06,\n  0x97, 0x03, 0xb1, 0x02, 0x39, 0x02, 0x55, 0xfa, 0x95, 0xfa, 0x37, 0x00,\n  0x8b, 0x02, 0xab, 0x01, 0x1b, 0xff, 0x42, 0xff, 0x32, 0x00, 0x0e, 0x04,\n  0x8e, 0x04, 0x39, 0xfb, 0x45, 0xf9, 0x1f, 0xfe, 0xc5, 0x02, 0x40, 0x04,\n  0x6d, 0x03, 0xd3, 0xfd, 0xd0, 0xfa, 0xd7, 0x00, 0xe8, 0x04, 0xcc, 0xff,\n  0xad, 0xfc, 0x07, 0xfe, 0x77, 0x00, 0x8d, 0x01, 0xa6, 0x00, 0x0b, 0xff,\n  0x27, 0x02, 0x71, 0x03, 0x53, 0xfd, 0xd0, 0xfb, 0xfd, 0xfe, 0xe5, 0x01,\n  0x99, 0x01, 0xde, 0xfe, 0x26, 0x00, 0x71, 0x03, 0xd2, 0xff, 0xcf, 0xfc,\n  0xcf, 0xfd, 0x1a, 0x00, 0xbf, 0x03, 0x27, 0x02, 0xcd, 0xfd, 0xfb, 0xfc,\n  0x06, 0xfe, 0xa9, 0x01, 0x67, 0x02, 0x37, 0x04, 0x83, 0x02, 0x44, 0xfa,\n  0xc2, 0xf9, 0xbd, 0xff, 0xfa, 0x05, 0xf3, 0x02, 0xe5, 0xfd, 0xbd, 0xfb,\n  0x43, 0xfe, 0xc1, 0x02, 0x9f, 0x02, 0x77, 0x00, 0x83, 0xff, 0x73, 0x01,\n  0xf6, 0xff, 0x6d, 0xfc, 0x5b, 0xfe, 0xa2, 0x01, 0x2d, 0x02, 0x17, 0x00,\n  0x54, 0xff, 0x4d, 0x00, 0x93, 0x05, 0x85, 0x01, 0xa1, 0xf6, 0x84, 0xf9,\n  0x39, 0x02, 0x9a, 0x05, 0xf7, 0x01, 0x13, 0xfe, 0xe8, 0x00, 0x89, 0x02,\n  0x04, 0xfe, 0x69, 0xfd, 0x47, 0xff, 0x33, 0x01, 0xd4, 0xff, 0x51, 0xff,\n  0x16, 0x00, 0xcb, 0x04, 0x5e, 0x04, 0xad, 0xfa, 0xae, 0xf8, 0x46, 0xfe,\n  0xb6, 0x04, 0xa7, 0x03, 0x2e, 0x01, 0x1c, 0x04, 0x53, 0xfd, 0x77, 0xf6,\n  0x1b, 0xfe, 0x42, 0x05, 0x0b, 0x04, 0xf6, 0xff, 0xfc, 0xff, 0x27, 0x05,\n  0xe5, 0xfd, 0x93, 0xf7, 0xcc, 0xfb, 0x57, 0x02, 0x82, 0x04, 0xe9, 0x03,\n  0x16, 0x04, 0xcc, 0xfb, 0x0d, 0xf8, 0x06, 0xfe, 0x0b, 0x05, 0xd7, 0x03,\n  0x57, 0x05, 0x5f, 0xff, 0xd7, 0xf6, 0x55, 0xfa, 0x55, 0x03, 0x2a, 0x05,\n  0x57, 0x05, 0x3d, 0x02, 0x11, 0xf8, 0xb9, 0xf8, 0x52, 0x01, 0x9f, 0x05,\n  0xc7, 0x02, 0x77, 0xff, 0x79, 0x01, 0xb7, 0x02, 0x39, 0xfb, 0x09, 0xfa,\n  0xab, 0xff, 0x9d, 0x03, 0xfb, 0x02, 0x1d, 0x00, 0x8b, 0xfe, 0xc9, 0xfe,\n  0x29, 0x00, 0xbc, 0x00, 0x67, 0x00, 0x6e, 0xff, 0x9d, 0xfe, 0x17, 0xff,\n  0x69, 0x01, 0x42, 0x01, 0xd0, 0x04, 0x6f, 0x02, 0xed, 0xf8, 0xcc, 0xf9,\n  0x87, 0xff, 0x76, 0x04, 0x8b, 0x03, 0xe5, 0x01, 0xaf, 0x01, 0x59, 0xfc,\n  0x1c, 0xfb, 0xb2, 0xfe, 0xc9, 0x01, 0xb1, 0x02, 0x89, 0x03, 0xc5, 0x00,\n  0x1f, 0xfc, 0x19, 0xfc, 0xe7, 0xfe, 0xf1, 0x02, 0x9e, 0x06, 0xa6, 0x00,\n  0x51, 0xfa, 0xf6, 0xfa, 0xe9, 0xff, 0x0c, 0x04, 0x59, 0x03, 0x85, 0x02,\n  0x2a, 0xfe, 0x6d, 0xfa, 0x5e, 0xfe, 0xbd, 0x02, 0x97, 0x02, 0x0e, 0x00,\n  0x3c, 0x01, 0x7f, 0x05, 0x6b, 0xfc, 0xe7, 0xf6, 0x47, 0xfd, 0x0a, 0x04,\n  0xf3, 0x05, 0x5a, 0x01, 0x47, 0xfd, 0xc5, 0xfc, 0x5d, 0xfe, 0xeb, 0x01,\n  0xc8, 0x05, 0x1b, 0x01, 0xee, 0xfa, 0x3e, 0xfb, 0x0d, 0x00, 0x13, 0x04,\n  0x31, 0x02, 0x5b, 0x03, 0xde, 0x01, 0xe6, 0xf8, 0x5c, 0xf9, 0x8e, 0x01,\n  0x83, 0x05, 0x77, 0x06, 0x57, 0xff, 0x00, 0xf9, 0x31, 0xfb, 0x8f, 0x00,\n  0x23, 0x04, 0x9d, 0x02, 0x37, 0x00, 0x2d, 0xff, 0xa7, 0xff, 0xd4, 0x00,\n  0xe9, 0x00, 0x43, 0xfd, 0x95, 0xfd, 0x78, 0x01, 0xeb, 0x07, 0xe2, 0x00,\n  0xf9, 0xf5, 0x01, 0xf9, 0xeb, 0x03, 0x2a, 0x06, 0x8b, 0x05, 0xe5, 0x01,\n  0x00, 0xf9, 0x45, 0xf9, 0x15, 0xff, 0x67, 0x04, 0xaf, 0x04, 0x2b, 0x05,\n  0xf5, 0xfc, 0xd2, 0xf8, 0x39, 0xfc, 0x57, 0x02, 0x1f, 0x04, 0x95, 0x03,\n  0x71, 0x03, 0xe1, 0xfb, 0x35, 0xf9, 0x10, 0xfe, 0xf9, 0x02, 0xc6, 0x05,\n  0xbd, 0x02, 0x11, 0xfc, 0x56, 0xfb, 0x07, 0xfe, 0x27, 0x02, 0x09, 0x03,\n  0x51, 0x02, 0x3a, 0x04, 0x31, 0xfd, 0x51, 0xf8, 0xe7, 0xfc, 0x08, 0x05,\n  0xa2, 0x06, 0xc1, 0xfe, 0xce, 0xfb, 0xd9, 0xfd, 0xf7, 0x00, 0x73, 0x00,\n  0xc2, 0xff, 0x35, 0x00, 0x04, 0x04, 0x46, 0x04, 0xe1, 0xfa, 0xf9, 0xf8,\n  0xcd, 0xfe, 0xf7, 0x04, 0xbd, 0x02, 0xa7, 0x03, 0xcd, 0x02, 0xd5, 0xf8,\n  0x81, 0xf8, 0xf0, 0xff, 0xa7, 0x05, 0xb5, 0x03, 0x28, 0x04, 0xbf, 0xfd,\n  0xf0, 0xf6, 0x19, 0xfe, 0xff, 0x04, 0x60, 0x08, 0x2e, 0x00, 0x5d, 0xf8,\n  0xc9, 0xfa, 0xc5, 0x00, 0xe9, 0x03, 0x8f, 0x04, 0x88, 0x01, 0xce, 0xfb,\n  0xb5, 0xfd, 0xf8, 0xff, 0xa7, 0x00, 0xa7, 0x00, 0x7d, 0xff, 0x58, 0x01,\n  0x58, 0x01, 0xbe, 0xfe, 0xa7, 0xfc, 0x38, 0xff, 0xf1, 0x01, 0x6c, 0x04,\n  0x07, 0x05, 0x5a, 0xfb, 0x3c, 0xf8, 0x7b, 0xfd, 0x07, 0x04, 0x4c, 0x04,\n  0x58, 0x01, 0x80, 0xff, 0x88, 0xfe, 0x75, 0xfe, 0xba, 0xff, 0x52, 0x01,\n  0x87, 0x02, 0x5d, 0x01, 0xaf, 0xfc, 0xf9, 0xfb, 0xd2, 0xff, 0x09, 0x02,\n  0x0a, 0x01, 0x2d, 0xff, 0x15, 0x02, 0x41, 0x03, 0xdb, 0xfd, 0x4b, 0xfc,\n  0x12, 0xff, 0x64, 0x01, 0x81, 0x01, 0xcc, 0xfe, 0xd5, 0xfe, 0x94, 0x00,\n  0x03, 0x05, 0x83, 0x03, 0xa0, 0xfa, 0x01, 0xfa, 0x8e, 0xfe, 0x39, 0x03,\n  0xe7, 0x03, 0x52, 0x04, 0xf3, 0xfe, 0x70, 0xfa, 0x0b, 0xfd, 0x1a, 0x00,\n  0xba, 0x01, 0xc9, 0x01, 0xa0, 0x01, 0x87, 0x04, 0x33, 0xff, 0x44, 0xf9,\n  0xa2, 0xfb, 0xe9, 0x00, 0x9b, 0x04, 0xe8, 0x01, 0xf5, 0x02, 0x87, 0x02,\n  0xc9, 0xf9, 0x9a, 0xfa, 0x07, 0x00, 0x3f, 0x02, 0x33, 0x02, 0x6f, 0x01,\n  0xa8, 0x04, 0x45, 0xff, 0x29, 0xf9, 0xda, 0xfb, 0x66, 0x01, 0x34, 0x04,\n  0x9c, 0x04, 0x9b, 0x00, 0x3e, 0xfb, 0x81, 0xfc, 0x0d, 0x00, 0xc0, 0x01,\n  0xd4, 0x00, 0xd0, 0x00, 0x29, 0x03, 0x25, 0x01, 0x43, 0xfc, 0xcf, 0xfc,\n  0xab, 0xff, 0x52, 0x01, 0x6a, 0x00, 0xea, 0x01, 0x0b, 0x02, 0x6d, 0xfe,\n  0x91, 0xfd, 0x03, 0xff, 0x1c, 0x00, 0x8b, 0x00, 0x86, 0x00, 0xf3, 0x01,\n  0xe3, 0x04, 0x07, 0xfe, 0xee, 0xf9, 0x19, 0xfd, 0x57, 0x02, 0x03, 0x04,\n  0xb6, 0x00, 0x0f, 0xfe, 0xd9, 0xfd, 0x53, 0xff, 0xbf, 0x03, 0x27, 0x03,\n  0x75, 0xfd, 0xea, 0xfb, 0xef, 0xfd, 0xa3, 0x01, 0xbf, 0x03, 0xa4, 0x05,\n  0x30, 0xfe, 0xb9, 0xf8, 0xea, 0xfb, 0x73, 0x02, 0x92, 0x04, 0xc9, 0x01,\n  0xdf, 0x03, 0x63, 0xff, 0xfd, 0xf8, 0x05, 0xfc, 0x8e, 0x01, 0x49, 0x03,\n  0x0f, 0x01, 0x8d, 0xff, 0x14, 0x00, 0x4e, 0x01, 0x19, 0x01, 0xf1, 0xfc,\n  0x51, 0xfd, 0xe2, 0x00, 0xbd, 0x03, 0xfb, 0x06, 0xf1, 0xfc, 0x84, 0xf5,\n  0x65, 0xfc, 0xc3, 0x04, 0xd7, 0x06, 0x17, 0x05, 0x17, 0xfc, 0x20, 0xf9,\n  0x49, 0xfd, 0x39, 0x01, 0x71, 0x03, 0xd0, 0x01, 0x6c, 0x01, 0xc7, 0x03,\n  0x39, 0xfd, 0x0d, 0xf8, 0x19, 0xfe, 0x1f, 0x04, 0x44, 0x05, 0xbf, 0x03,\n  0xb1, 0xfc, 0xad, 0xf9, 0x1f, 0xfe, 0xcd, 0x01, 0x75, 0x03, 0x47, 0x03,\n  0xc4, 0xfe, 0xab, 0xfc, 0xa9, 0xfe, 0xf4, 0x00, 0x4b, 0x01, 0x08, 0x00,\n  0xe4, 0xfe, 0xf6, 0xff, 0x63, 0x03, 0x95, 0x00, 0xf7, 0xfc, 0x1f, 0xfd,\n  0x23, 0xff, 0x67, 0x02, 0x2f, 0x02, 0x30, 0x04, 0x03, 0x01, 0xc5, 0xf9,\n  0xa5, 0xfa, 0x59, 0x00, 0xe7, 0x03, 0x25, 0x03, 0xda, 0x00, 0x2b, 0xfe,\n  0x99, 0xfd, 0xc1, 0x03, 0xca, 0x04, 0x4c, 0xfa, 0xb6, 0xf9, 0xaa, 0x00,\n  0xd1, 0x03, 0xe8, 0x01, 0x96, 0xff, 0xc1, 0xfe, 0x3b, 0xff, 0x64, 0x00,\n  0x43, 0x01, 0x74, 0x00, 0x3c, 0xff, 0x2c, 0xff, 0x9f, 0xff, 0x80, 0x00,\n  0x09, 0x01, 0x26, 0x00, 0x56, 0xff, 0x65, 0xff, 0xe9, 0xff, 0x62, 0x00,\n  0x91, 0x00, 0x28, 0x00, 0x9e, 0xff, 0xaa, 0xff, 0xf5, 0xff, 0x0b, 0x00,\n  0x0e, 0x00, 0x01, 0x00, 0x93, 0xff, 0x41, 0xff, 0x32, 0x00, 0x8e, 0x01,\n  0xf3, 0x02, 0x1c, 0x00, 0x39, 0xfc, 0x79, 0xfd, 0x92, 0x00, 0x17, 0x02,\n  0x40, 0x01, 0xbc, 0xff, 0x15, 0xff, 0x6b, 0xff, 0x23, 0x00, 0xa4, 0x00,\n  0x2f, 0x00, 0xb1, 0xff, 0xa8, 0xfe, 0x18, 0xff, 0x9b, 0x00, 0xc9, 0x01,\n  0x67, 0x00, 0x0c, 0x05, 0x85, 0x01, 0x09, 0xf8, 0xcc, 0xf9, 0xb2, 0x00,\n  0x5c, 0x05, 0x0b, 0x03, 0x18, 0x04, 0x35, 0xff, 0x3e, 0xf9, 0x8d, 0xfb,\n  0x7d, 0x00, 0x54, 0x04, 0x3d, 0x02, 0xfc, 0x01, 0x23, 0x03, 0xad, 0xfb,\n  0x90, 0xf8, 0x5f, 0xff, 0x7f, 0x04, 0x1b, 0x05, 0x0b, 0x03, 0xbd, 0xfb,\n  0x3a, 0xfa, 0xaf, 0xfe, 0x0d, 0x03, 0xc3, 0x03, 0x01, 0x00, 0x1c, 0xfe,\n  0x6b, 0xfd, 0xf1, 0xfe, 0xcc, 0x01, 0x3b, 0x02, 0x80, 0x00, 0xae, 0xff,\n  0xd4, 0xff, 0x2e, 0x00, 0x4a, 0xff, 0xcc, 0xff, 0xcf, 0xff, 0x63, 0x03,\n  0x0f, 0x06, 0x80, 0xf9, 0x17, 0xf6, 0x18, 0xfe, 0xff, 0x05, 0xd0, 0x04,\n  0x75, 0x03, 0xce, 0x00, 0x6d, 0xfa, 0x70, 0xfa, 0xb0, 0xff, 0xed, 0x03,\n  0xd1, 0x03, 0x1e, 0x05, 0x45, 0xfd, 0x79, 0xf8, 0x27, 0xfc, 0x83, 0x02,\n  0xa3, 0x04, 0xc7, 0x01, 0xed, 0x03, 0xf0, 0xfe, 0x12, 0xf8, 0xed, 0xfb,\n  0x4f, 0x03, 0xcc, 0x04, 0xcd, 0x02, 0xdd, 0xfd, 0x43, 0xfe, 0x45, 0x03,\n  0x0f, 0xfe, 0x03, 0xfc, 0x40, 0xfe, 0x76, 0x01, 0xab, 0x02, 0x69, 0x02,\n  0x18, 0xff, 0xab, 0xff, 0xb1, 0x02, 0x9d, 0xfd, 0x25, 0xfc, 0xd9, 0xfd,\n  0x61, 0x01, 0x19, 0x03, 0x7c, 0x01, 0x2e, 0x00, 0x9e, 0xff, 0xe2, 0xfe,\n  0x23, 0xff, 0x62, 0x00, 0xda, 0x00, 0x2b, 0x01, 0x33, 0x01, 0xf0, 0xfe,\n  0x01, 0xfd, 0xe7, 0xfe, 0xd9, 0x01, 0xc9, 0x03, 0xb5, 0x01, 0x48, 0xfb,\n  0xbc, 0xfa, 0x1d, 0xff, 0xb1, 0x03, 0xd1, 0x02, 0x45, 0x02, 0x28, 0x04,\n  0x11, 0xfc, 0x91, 0xf9, 0x77, 0xfd, 0x29, 0x02, 0x55, 0x03, 0x31, 0x03,\n  0x2b, 0x03, 0xa7, 0xfc, 0x7c, 0xfa, 0x22, 0xfe, 0x0f, 0x02, 0xef, 0x03,\n  0x05, 0x03, 0x09, 0xfe, 0x7d, 0xfc, 0xe9, 0xfd, 0x0b, 0x00, 0xc3, 0x01,\n  0x0d, 0x02, 0x1c, 0x00, 0x31, 0x03, 0x3b, 0x03, 0xaa, 0xf9, 0x29, 0xfa,\n  0xce, 0x00, 0xa9, 0x03, 0x13, 0x02, 0xa5, 0xff, 0xba, 0xfe, 0x59, 0xff,\n  0x17, 0x00, 0xbc, 0xff, 0x5e, 0x01, 0x81, 0x01, 0xd5, 0xfe, 0xdb, 0xfd,\n  0x9d, 0xfe, 0xf2, 0x00, 0x81, 0x02, 0xfb, 0x03, 0x71, 0xff, 0xf9, 0xfa,\n  0x1b, 0xfd, 0xf4, 0x00, 0x03, 0x03, 0xfa, 0x01, 0x44, 0xff, 0xdf, 0xfd,\n  0xa5, 0xfd, 0x68, 0x00, 0xf6, 0x01, 0x65, 0x03, 0x52, 0x04, 0xfe, 0xfb,\n  0xbe, 0xf9, 0xff, 0xfd, 0xfc, 0x01, 0xf1, 0x02, 0x81, 0x03, 0xc5, 0x00,\n  0x77, 0xfc, 0x13, 0xfd, 0xc6, 0xff, 0x97, 0x01, 0x28, 0x01, 0x35, 0xff,\n  0x35, 0x02, 0xb9, 0x02, 0x0d, 0xfd, 0x3b, 0xfc, 0x0c, 0xfe, 0x8d, 0x01,\n  0xd9, 0x02, 0xc3, 0x01, 0x48, 0x04, 0xe1, 0xfe, 0x5e, 0xf9, 0xae, 0xfb,\n  0x36, 0x01, 0xcb, 0x03, 0xf3, 0x04, 0xa1, 0x02, 0x5c, 0xfa, 0xf5, 0xf9,\n  0x77, 0xff, 0x92, 0x04, 0xad, 0x02, 0xb3, 0x03, 0x5c, 0xff, 0x02, 0xf8,\n  0xdd, 0xfc, 0x60, 0x05, 0x32, 0x08, 0xdb, 0xfd, 0x60, 0xf8, 0xb9, 0xfb,\n  0xd5, 0x02, 0x6b, 0x04, 0xa5, 0x01, 0xcf, 0xff, 0xbb, 0xfe, 0x52, 0xfe,\n  0xd0, 0x01, 0xcb, 0x06, 0xd5, 0xfb, 0xda, 0xf5, 0x1d, 0xff, 0x17, 0x06,\n  0xb8, 0x04, 0xd3, 0x00, 0x5e, 0xfe, 0x05, 0xff, 0xee, 0xfe, 0xdd, 0xfd,\n  0x7e, 0xff, 0x1c, 0x01, 0x4f, 0x01, 0x80, 0x00, 0xd7, 0xff, 0xa1, 0xff,\n  0xc8, 0xff, 0xf9, 0xff, 0x17, 0x00, 0x26, 0x00, 0x14, 0x00, 0x00, 0x00,\n  0xf6, 0xff, 0xff, 0xff, 0x86, 0xff, 0x15, 0xff, 0xc2, 0xff, 0xb1, 0x02,\n  0xa5, 0x02, 0xd1, 0xfd, 0xf3, 0xfc, 0xc1, 0xfd, 0xad, 0x00, 0x33, 0x02,\n  0x53, 0x03, 0x3a, 0x04, 0x63, 0xfc, 0x56, 0xf9, 0x7d, 0xfd, 0x13, 0x03,\n  0xe7, 0x03, 0x4a, 0x04, 0xe9, 0xff, 0x52, 0xfa, 0x35, 0xfc, 0x98, 0x00,\n  0xf7, 0x02, 0x7c, 0x01, 0x8c, 0xff, 0x87, 0x02, 0xb4, 0x01, 0xd5, 0xfb,\n  0xb3, 0xfc, 0x17, 0x00, 0x0b, 0x02, 0x52, 0x00, 0x41, 0xff, 0x22, 0x00,\n  0xb7, 0x02, 0x13, 0x04, 0x6d, 0xfd, 0x5e, 0xfa, 0xf3, 0xfd, 0x11, 0x02,\n  0xef, 0x03, 0xe7, 0x01, 0x28, 0xfe, 0x77, 0xfd, 0x57, 0xff, 0xac, 0x00,\n  0x0a, 0x00, 0x29, 0xff, 0xd7, 0x00, 0x0f, 0x01, 0x94, 0x04, 0xfd, 0x01,\n  0x46, 0xf9, 0xf5, 0xf9, 0x3e, 0x00, 0x06, 0x05, 0x63, 0x02, 0x6d, 0x02,\n  0x75, 0x02, 0x2d, 0xfb, 0xf5, 0xf9, 0x79, 0xfe, 0x19, 0x03, 0x6b, 0x03,\n  0x7e, 0x01, 0x21, 0x03, 0xee, 0xfe, 0xa6, 0xf9, 0xb3, 0xfc, 0x47, 0x02,\n  0x63, 0x04, 0x33, 0x01, 0xa3, 0xfd, 0xc8, 0xff, 0x27, 0x03, 0x0f, 0xff,\n  0x51, 0xfb, 0xa6, 0xfe, 0x2d, 0x03, 0x17, 0x05, 0xb9, 0x00, 0x09, 0xfb,\n  0xa7, 0xfc, 0xde, 0xff, 0x5a, 0x01, 0x4e, 0x01, 0xdf, 0x03, 0x39, 0x02,\n  0x7d, 0xfb, 0x02, 0xfb, 0x8c, 0xff, 0x8e, 0x04, 0xaf, 0x05, 0xaf, 0xfe,\n  0xbd, 0xfa, 0x0f, 0xfd, 0x9d, 0x00, 0x77, 0x02, 0x95, 0x03, 0x85, 0x01,\n  0xcb, 0xfc, 0xe5, 0xfc, 0xe1, 0xff, 0xa0, 0x01, 0x18, 0x01, 0x72, 0xff,\n  0xaf, 0xfe, 0xe9, 0xff, 0xa5, 0x02, 0xf9, 0x02, 0xd9, 0xfd, 0x57, 0xfc,\n  0x1b, 0xff, 0x73, 0x01, 0x63, 0x01, 0x52, 0x00, 0x97, 0xfe, 0x6a, 0xfe,\n  0x9e, 0x00, 0x45, 0x02, 0x66, 0x05, 0xf9, 0xfe, 0x9c, 0xf9, 0xf4, 0xfb,\n  0xbb, 0x00, 0xf1, 0x03, 0x0d, 0x02, 0xe6, 0xff, 0x4b, 0xff, 0x6d, 0x01,\n  0x6e, 0x00, 0xf5, 0xfc, 0x0c, 0xfe, 0x5a, 0x01, 0x1d, 0x02, 0xe1, 0x02,\n  0xbc, 0x00, 0x81, 0xf9, 0xa5, 0xfc, 0x93, 0x02, 0x09, 0x08, 0x03, 0x03,\n  0x11, 0xf8, 0x65, 0xf9, 0x16, 0x00, 0x6c, 0x04, 0x1b, 0x03, 0xde, 0xff,\n  0x42, 0x01, 0xa1, 0x02, 0x51, 0xfc, 0x71, 0xfb, 0x2a, 0xff, 0x7b, 0x02,\n  0x13, 0x03, 0x41, 0x00, 0x82, 0xfe, 0x51, 0xfe, 0x79, 0xfe, 0xd7, 0x00,\n  0xff, 0x01, 0x7e, 0x01, 0x46, 0x01, 0x0c, 0xff, 0xf5, 0xfc, 0x07, 0x00,\n  0xf0, 0x05, 0x48, 0xff, 0xc0, 0xf9, 0x5f, 0xfc, 0xa0, 0x01, 0xc3, 0x03,\n  0x17, 0x03, 0x3d, 0x03, 0x1f, 0xfd, 0x3d, 0xfa, 0xf9, 0xfd, 0xfd, 0x01,\n  0xdb, 0x02, 0x74, 0x00, 0x2f, 0x02, 0x9b, 0x02, 0xfd, 0xfb, 0x7a, 0xfb,\n  0xa4, 0xff, 0x5f, 0x02, 0xac, 0x01, 0x9c, 0xff, 0xe4, 0xfe, 0xbc, 0x00,\n  0x2b, 0x01, 0xf0, 0xfe, 0x57, 0xff, 0x9b, 0x03, 0xd9, 0x00, 0xf9, 0xfb,\n  0x45, 0xfd, 0x38, 0x00, 0x01, 0x02, 0x25, 0x02, 0xcb, 0x00, 0x79, 0xfe,\n  0x9a, 0xfe, 0xd9, 0xfe, 0xaa, 0xff, 0xbe, 0x00, 0x5b, 0x04, 0xe7, 0x02,\n  0x8a, 0xfb, 0x70, 0xfa, 0x2c, 0xff, 0x1f, 0x04, 0x23, 0x06, 0xed, 0xff,\n  0xe5, 0xf9, 0xb6, 0xfb, 0x90, 0x01, 0x83, 0x03, 0x75, 0x02, 0xa8, 0x04,\n  0x89, 0xfd, 0x69, 0xf8, 0x3b, 0xfc, 0xf9, 0x02, 0xaa, 0x04, 0x15, 0x01,\n  0x3b, 0x00, 0x03, 0x02, 0x71, 0xfc, 0x84, 0xfb, 0xdd, 0x00, 0x67, 0x03,\n  0xfa, 0x00, 0x20, 0x05, 0xb5, 0x00, 0x3f, 0xf5, 0x80, 0xfa, 0xdf, 0x04,\n  0x66, 0x05, 0xeb, 0x02, 0xa7, 0x03, 0xa9, 0xfa, 0xfc, 0xf7, 0x9f, 0xfe,\n  0xf7, 0x04, 0x83, 0x03, 0x42, 0x01, 0xef, 0x03, 0xf9, 0xfc, 0x55, 0xf8,\n  0x45, 0xfd, 0x93, 0x03, 0x46, 0x04, 0xca, 0x00, 0xa3, 0x03, 0x8f, 0xff,\n  0x45, 0xf9, 0x37, 0xfc, 0x94, 0x01, 0xbb, 0x03, 0x91, 0x01, 0xc6, 0xff,\n  0x98, 0xff, 0x43, 0x00, 0x01, 0x00, 0x2a, 0xff, 0x03, 0xff, 0xc3, 0xff,\n  0x68, 0x00, 0x79, 0x00, 0x34, 0x00, 0xf6, 0xff, 0xfb, 0xff, 0x0a, 0x00,\n  0xdb, 0xff, 0xb0, 0xff, 0xdc, 0xfe, 0xa7, 0xff, 0xfe, 0x00, 0x5b, 0x04,\n  0xf7, 0x01, 0xb5, 0xfa, 0x98, 0xfa, 0x65, 0x00, 0x9f, 0x04, 0x2f, 0x06,\n  0x20, 0xff, 0xcc, 0xf7, 0xfb, 0xfc, 0x81, 0x03, 0xdf, 0x04, 0xcb, 0x04,\n  0x1f, 0xfd, 0xaa, 0xf8, 0x1b, 0xfd, 0x87, 0x02, 0x63, 0x04, 0x49, 0x02,\n  0x63, 0xfe, 0x15, 0xfd, 0x07, 0x02, 0xdb, 0x02, 0x73, 0xfd, 0xa7, 0xfc,\n  0xbd, 0xfe, 0xaa, 0x00, 0x41, 0x02, 0x4f, 0x01, 0xad, 0x03, 0x4f, 0x01,\n  0x76, 0xfa, 0x18, 0xfb, 0x95, 0xff, 0x8d, 0x03, 0xb7, 0x02, 0x8e, 0x00,\n  0x5c, 0xff, 0x1b, 0xff, 0xde, 0xff, 0x18, 0x01, 0xd9, 0x02, 0xaf, 0x00,\n  0x05, 0xfb, 0x2d, 0xfc, 0xe3, 0x00, 0x89, 0x02, 0x93, 0x01, 0xe3, 0xff,\n  0xc9, 0xfe, 0x88, 0xfe, 0x6a, 0x00, 0x99, 0x01, 0xf7, 0x02, 0xc0, 0xff,\n  0xc0, 0xfb, 0x2d, 0xfe, 0x47, 0x04, 0x1f, 0x05, 0x8b, 0xfc, 0x65, 0xfa,\n  0x67, 0xfe, 0x11, 0x02, 0x25, 0x03, 0x37, 0x00, 0x16, 0xfe, 0x96, 0xff,\n  0x44, 0x05, 0x03, 0x02, 0x58, 0xfa, 0x71, 0xfb, 0x42, 0xff, 0x3b, 0x03,\n  0x49, 0x02, 0xcf, 0x01, 0xd5, 0x03, 0x43, 0xfd, 0x75, 0xf8, 0xc5, 0xfd,\n  0xb5, 0x03, 0x32, 0x07, 0xf7, 0x01, 0x85, 0xfa, 0xa5, 0xfa, 0x02, 0xff,\n  0x5d, 0x03, 0xfd, 0x02, 0x4c, 0x00, 0x57, 0x01, 0x51, 0x01, 0x15, 0xfb,\n  0x5b, 0xfc, 0x15, 0x02, 0x11, 0x03, 0x19, 0x02, 0x99, 0x02, 0x69, 0xfd,\n  0x0a, 0xf9, 0xd2, 0xfe, 0xa1, 0x03, 0xef, 0x05, 0x51, 0x02, 0x7d, 0xfa,\n  0x8a, 0xfa, 0x14, 0xff, 0xc9, 0x02, 0x23, 0x03, 0x6d, 0x00, 0x82, 0x01,\n  0xd9, 0x03, 0xe1, 0xfb, 0x59, 0xf9, 0x42, 0xfe, 0xcc, 0x04, 0xf3, 0x05,\n  0x06, 0xff, 0x25, 0xfb, 0x6f, 0xfc, 0xc9, 0x01, 0xf1, 0x02, 0x35, 0x03,\n  0x65, 0x03, 0xbd, 0xfb, 0x29, 0xf9, 0xc3, 0xfe, 0xab, 0x03, 0x59, 0x03,\n  0x1f, 0x00, 0xdb, 0x02, 0x2e, 0x01, 0x45, 0xfa, 0x7a, 0xfb, 0x10, 0x01,\n  0x16, 0x04, 0x90, 0x01, 0xed, 0xfe, 0x55, 0xfd, 0xcd, 0xfe, 0xed, 0x01,\n  0xa3, 0x01, 0x5d, 0x02, 0x4d, 0x03, 0x56, 0xfb, 0xe1, 0xf8, 0x44, 0x00,\n  0x7a, 0x04, 0xcf, 0x03, 0x14, 0x00, 0x91, 0xfc, 0xe9, 0xfd, 0xe7, 0x02,\n  0x7b, 0x05, 0x8b, 0xfd, 0xaa, 0xf9, 0x21, 0xfe, 0x2b, 0x02, 0xc3, 0x02,\n  0x9e, 0x00, 0x7d, 0xff, 0x4c, 0x01, 0x86, 0xff, 0x39, 0xfe, 0xc9, 0xfe,\n  0x9c, 0xff, 0xcd, 0x00, 0x61, 0x02, 0x7f, 0x03, 0x7e, 0xfe, 0xaa, 0xfb,\n  0x0c, 0xfe, 0x0a, 0x01, 0xad, 0x02, 0xcc, 0x01, 0x3c, 0xff, 0x24, 0xfe,\n  0x29, 0xff, 0x47, 0x00, 0xf5, 0x00, 0xaa, 0x00, 0x60, 0xff, 0x75, 0xfe,\n  0x13, 0x01, 0x13, 0x03, 0x65, 0xff, 0x71, 0xfd, 0xcf, 0xfe, 0xa3, 0x00,\n  0xad, 0x00, 0xfa, 0xfe, 0xbf, 0xff, 0x30, 0x01, 0x52, 0x01, 0x67, 0x00,\n  0x7d, 0xff, 0xd5, 0xfe, 0x10, 0x00, 0x13, 0x00, 0xb5, 0x02, 0x1e, 0x06,\n  0x15, 0xfb, 0x50, 0xf6, 0xf7, 0xfd, 0xb8, 0x04, 0x3e, 0x06, 0xc1, 0x02,\n  0x6b, 0xfc, 0x66, 0xfb, 0x16, 0xfe, 0xc0, 0x01, 0xfd, 0x02, 0x18, 0x01,\n  0x8f, 0xff, 0xa5, 0xff, 0xfb, 0x00, 0x04, 0x01, 0x39, 0xff, 0x59, 0xfd,\n  0x5b, 0xfd, 0x11, 0x00, 0x7b, 0x03, 0x74, 0x05, 0x7f, 0xfe, 0x61, 0xfa,\n  0x3d, 0xfd, 0x04, 0x01, 0x9f, 0x02, 0x3d, 0x03, 0x4b, 0x01, 0x17, 0xfd,\n  0x39, 0xfd, 0x7a, 0xff, 0x6c, 0x01, 0x70, 0x01, 0x92, 0xff, 0x56, 0xff,\n  0xa3, 0x02, 0xf2, 0x00, 0x21, 0xfd, 0x22, 0xfe, 0xd1, 0xff, 0xf9, 0xff,\n  0x6e, 0x00, 0x7f, 0x01, 0xa1, 0x00, 0xae, 0x01, 0xca, 0x01, 0x69, 0xfb,\n  0x71, 0xfc, 0xfc, 0x01, 0x0b, 0x03, 0x04, 0x06, 0x3f, 0xff, 0x41, 0xf6,\n  0xa8, 0xfb, 0x8f, 0x03, 0xaf, 0x07, 0x37, 0x03, 0x35, 0xfb, 0xf0, 0xf9,\n  0x1d, 0xff, 0x75, 0x03, 0xbf, 0x04, 0x1f, 0x03, 0xea, 0xfb, 0x66, 0xfa,\n  0x5d, 0xfe, 0x05, 0x03, 0x0b, 0x03, 0x7d, 0x03, 0xa1, 0x00, 0xe5, 0xfa,\n  0x0b, 0xfc, 0x4c, 0x00, 0xc5, 0x02, 0x6a, 0x01, 0x5c, 0x00, 0x29, 0x03,\n  0xc0, 0xff, 0x5a, 0xfb, 0x61, 0xfd, 0x8b, 0x00, 0x41, 0x02, 0x91, 0x02,\n  0xda, 0x00, 0xe5, 0xfd, 0x3c, 0xfe, 0xcc, 0xfe, 0x11, 0x00, 0x2a, 0x01,\n  0xb6, 0x04, 0xc4, 0x01, 0x4e, 0xfb, 0x1c, 0xfb, 0x44, 0xff, 0xa7, 0x03,\n  0xbf, 0x02, 0x78, 0x04, 0xba, 0xfe, 0x1d, 0xf8, 0xcf, 0xfc, 0xa9, 0x03,\n  0x00, 0x04, 0x13, 0x01, 0x21, 0x03, 0xfb, 0xfd, 0x5a, 0xf8, 0x31, 0xfe,\n  0x43, 0x04, 0xaf, 0x03, 0xbf, 0x03, 0x4a, 0xff, 0x5c, 0xf9, 0xe6, 0xfb,\n  0xbd, 0x01, 0x53, 0x03, 0xc3, 0x04, 0xb8, 0x01, 0x1a, 0xfb, 0x41, 0xfb,\n  0xd3, 0xfe, 0xcf, 0x02, 0x13, 0x03, 0x17, 0x00, 0xf9, 0x02, 0x3b, 0x02,\n  0x65, 0xf9, 0xfe, 0xf9, 0x48, 0x01, 0xeb, 0x04, 0x01, 0x02, 0xbf, 0xff,\n  0xd1, 0x00, 0xcc, 0xfe, 0xdd, 0xfc, 0x98, 0xff, 0xf7, 0x01, 0x46, 0x01,\n  0xfc, 0xff, 0x38, 0xff, 0x29, 0x00, 0xd8, 0xff, 0xd1, 0x02, 0x07, 0x05,\n  0x3d, 0xfa, 0x89, 0xf7, 0xeb, 0xfe, 0xaa, 0x04, 0x33, 0x05, 0xc9, 0x01,\n  0x49, 0xfd, 0xcb, 0xfc, 0x3f, 0xff, 0xa9, 0x00, 0xa3, 0x00, 0xdd, 0x00,\n  0xb9, 0x03, 0xca, 0x00, 0x31, 0xfb, 0x23, 0xfc, 0x97, 0x00, 0x03, 0x05,\n  0x02, 0x04, 0x3d, 0xfd, 0xd0, 0xfb, 0xfd, 0xfd, 0xd9, 0x00, 0xd2, 0x01,\n  0xf5, 0x02, 0xc1, 0x03, 0x3d, 0xfd, 0xdd, 0xfa, 0x73, 0xfd, 0x42, 0x01,\n  0x51, 0x03, 0x34, 0x01, 0xa8, 0x01, 0xf7, 0x02, 0x81, 0xfb, 0x71, 0xf9,\n  0x8f, 0x00, 0x3b, 0x04, 0x83, 0x03, 0x1d, 0x03, 0x07, 0xfd, 0x89, 0xf9,\n  0x11, 0xff, 0x95, 0x03, 0x13, 0x02, 0x95, 0xff, 0xc1, 0xfe, 0x67, 0xfe,\n  0xb4, 0xff, 0x4c, 0x01, 0xbf, 0x03, 0x17, 0x02, 0x71, 0xfc, 0x47, 0xfc,\n  0x30, 0xff, 0xda, 0x00, 0xdf, 0x00, 0x48, 0x01, 0x9e, 0x00, 0x05, 0x03,\n  0xb5, 0x01, 0x81, 0xfa, 0xfa, 0xfa, 0x2b, 0x01, 0x1f, 0x04, 0x56, 0x04,\n  0x55, 0x00, 0x1d, 0xfb, 0xa9, 0xfc, 0x64, 0x00, 0xc1, 0x02, 0x11, 0x02,\n  0xde, 0xff, 0x19, 0xfe, 0x27, 0xfe, 0xab, 0xff, 0x61, 0x03, 0x5f, 0x03,\n  0xc3, 0xfd, 0x83, 0xfc, 0x03, 0xff, 0xdd, 0x00, 0x92, 0x00, 0xf6, 0xff,\n  0x65, 0x00, 0x86, 0x00, 0xec, 0x00, 0xeb, 0x04, 0xe4, 0xfe, 0xce, 0xf7,\n  0xa5, 0xfc, 0x83, 0x03, 0x5a, 0x05, 0x7c, 0x04, 0x19, 0xfd, 0xcc, 0xf9,\n  0x43, 0xfd, 0x09, 0x02, 0x4f, 0x03, 0xbf, 0x03, 0xec, 0x00, 0xc4, 0xfb,\n  0xad, 0xfc, 0xcc, 0xff, 0xb0, 0x00, 0x57, 0x01, 0xc1, 0x00, 0x1f, 0x03,\n  0x11, 0x03, 0x4d, 0xfb, 0x31, 0xfa, 0xed, 0xfe, 0x1f, 0x04, 0x8b, 0x02,\n  0xfd, 0x01, 0xc9, 0x02, 0x75, 0xfb, 0x59, 0xf9, 0x20, 0x00, 0x2f, 0x04,\n  0xa3, 0x03, 0x85, 0x03, 0x43, 0xfd, 0xcd, 0xf9, 0x65, 0xfd, 0x8b, 0x01,\n  0xbf, 0x03, 0xec, 0x00, 0x4f, 0x02, 0xa7, 0x02, 0x3c, 0xfb, 0x20, 0xfa,\n  0x74, 0x00, 0x44, 0x05, 0xdb, 0x01, 0x89, 0xfd, 0xa1, 0xfc, 0x00, 0x00,\n  0xa9, 0x02, 0x49, 0x01, 0xae, 0x01, 0x71, 0x02, 0x4d, 0xfb, 0x65, 0xfa,\n  0x5d, 0x01, 0xdd, 0x03, 0xb7, 0x02, 0x05, 0x03, 0x79, 0xfd, 0xdd, 0xf8,\n  0x1c, 0xfe, 0x85, 0x03, 0x4f, 0x05, 0xe7, 0x01, 0x05, 0xfc, 0xe5, 0xfb,\n  0x57, 0xff, 0x2f, 0x02, 0xb2, 0x01, 0x25, 0x01, 0x11, 0x03, 0xa8, 0xfe,\n  0x7a, 0xfb, 0xf9, 0xfd, 0xdd, 0x00, 0x25, 0x02, 0x7b, 0x02, 0x3a, 0x00,\n  0x0b, 0xfd, 0x6d, 0xfe, 0x9f, 0x02, 0xfa, 0x01, 0x70, 0xfe, 0x5a, 0xfe,\n  0x27, 0xff, 0x93, 0xff, 0x5e, 0x00, 0xb8, 0x01, 0x86, 0x00, 0x8d, 0x03,\n  0xb4, 0x01, 0x36, 0xfa, 0xc1, 0xfa, 0x5f, 0x00, 0xcb, 0x03, 0x18, 0x04,\n  0x39, 0x02, 0x4f, 0xfc, 0xe1, 0xfb, 0x5a, 0xfe, 0x78, 0x01, 0x77, 0x02,\n  0x57, 0x04, 0xb6, 0x00, 0xc8, 0xfa, 0xa9, 0xfb, 0xaf, 0x00, 0xa7, 0x03,\n  0x21, 0x02, 0x59, 0x03, 0x24, 0xff, 0x9d, 0xf9, 0xb5, 0xfc, 0x03, 0x02,\n  0xb2, 0x04, 0x0c, 0x04, 0xaf, 0xfd, 0x09, 0xfb, 0x67, 0xfd, 0x4f, 0x01,\n  0xf3, 0x02, 0x2d, 0x02, 0xcf, 0x02, 0x54, 0xfe, 0x59, 0xfa, 0x03, 0xfe,\n  0x9f, 0x02, 0x7f, 0x04, 0xde, 0x01, 0xbf, 0xfc, 0x89, 0xfc, 0x89, 0xff,\n  0xb1, 0x01, 0xa3, 0x01, 0xa6, 0x00, 0x75, 0xff, 0xfa, 0xfe, 0x86, 0xff,\n  0x00, 0x00, 0x9c, 0xff, 0xc8, 0xff, 0x60, 0x01, 0x45, 0x03, 0x5e, 0x00,\n  0x85, 0xfc, 0x81, 0xfd, 0x28, 0x00, 0x8d, 0x01, 0x03, 0x01, 0x1f, 0x00,\n  0xb1, 0xff, 0xa8, 0xff, 0xb7, 0xff, 0x50, 0xff, 0x4d, 0xff, 0xbc, 0x00,\n  0x5b, 0x01, 0xb2, 0x00, 0xbf, 0xff, 0x1b, 0x02, 0x0c, 0x01, 0xd9, 0xfb,\n  0xb7, 0xfc, 0x58, 0x00, 0x67, 0x02, 0xbd, 0x01, 0x28, 0x00, 0x0f, 0xff,\n  0x42, 0xff, 0x78, 0xff, 0x63, 0xff, 0x0a, 0x00, 0x95, 0x03, 0xf3, 0x01,\n  0x83, 0xfc, 0x7a, 0xfb, 0x6b, 0x00, 0xd5, 0x02, 0x34, 0x04, 0xeb, 0x02,\n  0xf1, 0xfa, 0x1e, 0xfa, 0xeb, 0xfe, 0x10, 0x04, 0x87, 0x02, 0x09, 0x02,\n  0xa1, 0x02, 0x94, 0xfb, 0xd1, 0xf9, 0xec, 0xff, 0x13, 0x04, 0x71, 0x02,\n  0xc2, 0xff, 0xf8, 0xff, 0x45, 0x03, 0x06, 0xff, 0x55, 0xfa, 0x95, 0xfd,\n  0xf7, 0x01, 0x47, 0x03, 0xfd, 0x00, 0xea, 0xfe, 0x70, 0xfe, 0x91, 0xfe,\n  0x94, 0x00, 0x76, 0x01, 0x3f, 0x03, 0x3d, 0x02, 0xf5, 0xfb, 0x6e, 0xfb,\n  0x5e, 0x00, 0x1b, 0x03, 0x21, 0x01, 0x14, 0xff, 0x54, 0xfe, 0x87, 0xff,\n  0xaf, 0x01, 0x2d, 0x03, 0xff, 0xff, 0xb9, 0xfc, 0x24, 0xfe, 0xbf, 0xff,\n  0xa3, 0x00, 0xaa, 0x00, 0x87, 0x02, 0x6f, 0x03, 0x53, 0xfd, 0x31, 0xfb,\n  0xaf, 0xfd, 0x87, 0x02, 0x9f, 0x02, 0x93, 0x02, 0x3d, 0x03, 0xb9, 0xfb,\n  0xc0, 0xf9, 0xc0, 0xfe, 0x27, 0x04, 0x6b, 0x02, 0x75, 0x02, 0xa3, 0x02,\n  0x24, 0xfb, 0x0d, 0xfa, 0xab, 0xff, 0x8f, 0x03, 0x9d, 0x02, 0xde, 0xff,\n  0x11, 0x02, 0x27, 0x02, 0x45, 0xfb, 0xec, 0xfa, 0x1a, 0x00, 0xad, 0x03,\n  0x23, 0x04, 0x86, 0x00, 0x65, 0xfc, 0x53, 0xfd, 0x25, 0x00, 0x2b, 0x02,\n  0x28, 0x01, 0x95, 0xff, 0x9d, 0xfe, 0xc1, 0xfe, 0x67, 0x00, 0xfd, 0x01,\n  0x9b, 0x03, 0x87, 0xff, 0xe8, 0xfa, 0xc5, 0xfc, 0xd9, 0x01, 0xcd, 0x03,\n  0x1f, 0x04, 0x0b, 0xff, 0xfd, 0xfa, 0x1f, 0xfd, 0x00, 0x00, 0x6d, 0x02,\n  0x0f, 0x02, 0xf3, 0x03, 0xc2, 0xff, 0x0d, 0xfb, 0xb9, 0xfc, 0xd7, 0xff,\n  0x97, 0x02, 0x03, 0x02, 0xa7, 0x00, 0xd1, 0x03, 0x0b, 0xff, 0x22, 0xf9,\n  0xad, 0xfc, 0x2f, 0x03, 0x9b, 0x03, 0x5b, 0x02, 0x9b, 0x02, 0x25, 0xfc,\n  0xaa, 0xf9, 0x2d, 0xff, 0xb5, 0x03, 0xab, 0x03, 0x0a, 0x04, 0x61, 0xfd,\n  0xe6, 0xf9, 0x31, 0xfd, 0x41, 0x02, 0x45, 0x03, 0x29, 0x03, 0xd0, 0x01,\n  0x05, 0xfc, 0x9c, 0xfb, 0x42, 0xff, 0x69, 0x02, 0x00, 0x04, 0x27, 0x01,\n  0x21, 0xfd, 0x47, 0xfd, 0x91, 0xfe, 0x52, 0x01, 0x23, 0x02, 0x57, 0x01,\n  0xb9, 0x03, 0x7b, 0xfe, 0x95, 0xf8, 0x69, 0xfe, 0x75, 0x03, 0x54, 0x05,\n  0x33, 0x03, 0xad, 0xfa, 0x9e, 0xf9, 0xff, 0xff, 0x4b, 0x04, 0x63, 0x02,\n  0xd9, 0x02, 0x7c, 0x00, 0xe9, 0xf9, 0xed, 0xfb, 0x75, 0x01, 0xf1, 0x03,\n  0xf8, 0x00, 0x3c, 0x01, 0xf5, 0x02, 0x79, 0xfc, 0xc4, 0xfa, 0x2e, 0xfe,\n  0x7f, 0x02, 0x13, 0x03, 0xd9, 0x00, 0x8a, 0xff, 0x47, 0x00, 0x80, 0xff,\n  0x05, 0xff, 0xce, 0xff, 0x8d, 0x03, 0x1f, 0x03, 0xc6, 0xfa, 0x99, 0xfa,\n  0xe0, 0xff, 0x77, 0x03, 0xb7, 0x02, 0x11, 0x00, 0xf4, 0xfe, 0x0c, 0xff,\n  0xa8, 0xff, 0x20, 0x00, 0x20, 0x00, 0x80, 0x00, 0xf7, 0x00, 0xbf, 0xff,\n  0x05, 0xff, 0xf0, 0xfe, 0x2a, 0xff, 0xdd, 0x00, 0x73, 0x01, 0x7f, 0x03,\n  0xb8, 0x00, 0x58, 0xfb, 0x33, 0xfd, 0xb6, 0x00, 0xe5, 0x01, 0xa1, 0x00,\n  0x63, 0xff, 0x9f, 0xff, 0xa6, 0x01, 0x5d, 0x01, 0x81, 0xfe, 0x15, 0xfe,\n  0x03, 0xff, 0xed, 0xff, 0x3d, 0x01, 0x57, 0x01, 0x5f, 0x02, 0xb0, 0xff,\n  0x35, 0xfc, 0x73, 0xfe, 0x4d, 0x03, 0x30, 0x04, 0x09, 0xfd, 0x04, 0xfb,\n  0x52, 0x01, 0x4d, 0x03, 0xf0, 0xfe, 0x43, 0xfd, 0x76, 0x01, 0xab, 0x04,\n  0x57, 0xff, 0x35, 0xfc, 0xd3, 0xfd, 0xf2, 0xff, 0xbd, 0x02, 0x99, 0x03,\n  0x2d, 0xff, 0xad, 0xfc, 0xa9, 0xfd, 0x92, 0x00, 0x47, 0x02, 0xdf, 0x01,\n  0x16, 0x00, 0x72, 0xfe, 0xa5, 0xff, 0x53, 0x03, 0x05, 0x00, 0xaa, 0xfb,\n  0x8f, 0xfd, 0x0d, 0x00, 0x41, 0x02, 0x84, 0x01, 0x5d, 0x02, 0x35, 0x02,\n  0xc1, 0xfc, 0xf0, 0xfb, 0xdb, 0xfe, 0x13, 0x01, 0x11, 0x02, 0x16, 0x01,\n  0x9b, 0x02, 0xfe, 0x00, 0xe1, 0xfb, 0x2f, 0xfc, 0xcd, 0x00, 0xf7, 0x03,\n  0xfd, 0x00, 0x42, 0xfe, 0xcd, 0xfd, 0x5f, 0xff, 0x5a, 0x01, 0x5b, 0x01,\n  0x12, 0x01, 0x9f, 0x03, 0x99, 0xfe, 0x6a, 0xfa, 0xb9, 0xfc, 0xed, 0x01,\n  0x27, 0x03, 0x3b, 0x03, 0x8d, 0x02, 0x0f, 0xfc, 0x25, 0xfb, 0x52, 0xfe,\n  0xa3, 0x02, 0xd5, 0x02, 0x0c, 0x01, 0x11, 0x03, 0xd3, 0xfe, 0xa4, 0xf9,\n  0x79, 0xfd, 0x0f, 0x03, 0x7b, 0x03, 0x0a, 0x04, 0x0e, 0xff, 0x71, 0xfa,\n  0x63, 0xfc, 0x0c, 0x01, 0x17, 0x03, 0x17, 0x03, 0x11, 0x03, 0x65, 0xfc,\n  0x01, 0xfa, 0xcb, 0xff, 0x3d, 0x03, 0x63, 0x04, 0xb7, 0x02, 0xa1, 0xfb,\n  0x91, 0xfa, 0xbb, 0xfe, 0x29, 0x03, 0xc3, 0x02, 0x61, 0x00, 0x63, 0xff,\n  0xb2, 0x00, 0x09, 0x01, 0x31, 0xfe, 0x77, 0xfd, 0x1f, 0x00, 0x45, 0x02,\n  0x5b, 0x03, 0xc9, 0xff, 0x75, 0xfb, 0x4b, 0xfd, 0x46, 0x00, 0x29, 0x03,\n  0x11, 0x03, 0x0b, 0xff, 0xb5, 0xfd, 0x34, 0xfe, 0xdd, 0xff, 0x52, 0x01,\n  0x2d, 0x02, 0xe3, 0x03, 0x4f, 0xfe, 0x06, 0xfb, 0x3d, 0xfd, 0x61, 0x01,\n  0xbd, 0x02, 0xf5, 0x02, 0x1b, 0x02, 0xc5, 0xfc, 0xdc, 0xfb, 0x7b, 0xff,\n  0xe3, 0x02, 0xa8, 0x01, 0x48, 0xff, 0x73, 0xfe, 0xde, 0xfe, 0xe7, 0x01,\n  0xff, 0x02, 0xe1, 0xfe, 0x55, 0xfd, 0x18, 0xfe, 0x7f, 0x00, 0xb5, 0x01,\n  0x29, 0x02, 0x4d, 0x03, 0x0f, 0xfe, 0x39, 0xfb, 0x8b, 0xfd, 0x07, 0x01,\n  0xed, 0x02, 0x48, 0x01, 0x7b, 0x02, 0x1c, 0x01, 0xb1, 0xfa, 0x8d, 0xfb,\n  0xcc, 0x01, 0xd3, 0x03, 0xcf, 0x04, 0x71, 0xff, 0x2d, 0xfa, 0x4f, 0xfc,\n  0xfb, 0x00, 0x41, 0x03, 0xd5, 0x02, 0x15, 0x02, 0x61, 0xfc, 0xae, 0xfb,\n  0x74, 0x00, 0xcf, 0x02, 0x69, 0x01, 0x00, 0x00, 0x16, 0x04, 0x08, 0xff,\n  0xc1, 0xf9, 0xfb, 0xfc, 0x40, 0x01, 0xeb, 0x02, 0xab, 0x02, 0xeb, 0x01,\n  0xd7, 0xfd, 0xf1, 0xfc, 0xf7, 0xfe, 0xf7, 0x00, 0x03, 0x02, 0x67, 0x01,\n  0x39, 0xff, 0x70, 0xfe, 0x51, 0xff, 0x4c, 0x00, 0xcd, 0x00, 0x9e, 0x00,\n  0xe7, 0xff, 0x78, 0xff, 0xb3, 0xff, 0x0d, 0x00, 0x1c, 0x00, 0x01, 0x00,\n  0x20, 0x00, 0xf9, 0xff, 0xab, 0xff, 0xae, 0xff, 0x7c, 0x00, 0xb4, 0x01,\n  0x0b, 0x00, 0x3d, 0xfe, 0x8b, 0xfe, 0x7a, 0xff, 0xf1, 0x01, 0xcf, 0x02,\n  0x4a, 0xff, 0xbb, 0xfd, 0x37, 0xfe, 0x98, 0xff, 0x45, 0x01, 0xa8, 0x01,\n  0x86, 0x00, 0xbd, 0x02, 0xf8, 0xff, 0xf9, 0xf9, 0x93, 0xfd, 0x3b, 0x03,\n  0x6f, 0x02, 0x3b, 0x02, 0xf7, 0x02, 0xa0, 0xfb, 0xe4, 0xf9, 0x1d, 0xff,\n  0x5d, 0x03, 0xf7, 0x03, 0x75, 0x02, 0xa3, 0xfd, 0x2b, 0xfc, 0xc6, 0xfe,\n  0x3c, 0x01, 0x55, 0x02, 0x60, 0x01, 0x0f, 0xff, 0x82, 0xfe, 0xd6, 0xfe,\n  0xb4, 0xff, 0xb3, 0x00, 0x89, 0x03, 0xa0, 0x01, 0xf5, 0xfc, 0x4f, 0xfc,\n  0x1e, 0xff, 0xd5, 0x01, 0xb9, 0x03, 0x27, 0x03, 0x2b, 0xfd, 0x21, 0xfb,\n  0xf7, 0xfd, 0x7b, 0x02, 0xdb, 0x02, 0x68, 0x00, 0x31, 0x00, 0xef, 0x00,\n  0xa9, 0xfd, 0xe5, 0xfd, 0xe0, 0x00, 0x91, 0x01, 0x85, 0x00, 0x92, 0x00,\n  0xc8, 0xff, 0x2a, 0xfe, 0x54, 0xff, 0xbb, 0x00, 0xfb, 0x00, 0x23, 0x00,\n  0xcf, 0xff, 0x9c, 0xff, 0x49, 0x00, 0xbc, 0xff, 0x43, 0x00, 0x3f, 0xff,\n  0xb8, 0x04, 0x53, 0x04, 0xc8, 0xf7, 0x40, 0xf8, 0xfb, 0xff, 0xb0, 0x05,\n  0x4d, 0x03, 0x7c, 0x00, 0x29, 0x02, 0x90, 0xfe, 0x3d, 0xfa, 0x85, 0xfe,\n  0x95, 0x02, 0x6b, 0x04, 0x13, 0x03, 0x7b, 0xfc, 0xc1, 0xfa, 0x90, 0xfe,\n  0x7b, 0x02, 0x07, 0x04, 0x19, 0x03, 0x1f, 0xfd, 0xed, 0xfa, 0xdc, 0xfe,\n  0xa7, 0x02, 0x0f, 0x05, 0xec, 0x00, 0x95, 0xfb, 0xed, 0xfb, 0x13, 0x00,\n  0x43, 0x03, 0xae, 0x01, 0x41, 0x00, 0x17, 0x00, 0xa9, 0xfe, 0xa6, 0xfe,\n  0x98, 0x00, 0xc8, 0x00, 0x23, 0x02, 0x23, 0x03, 0xb1, 0xfb, 0x8e, 0xf9,\n  0xce, 0x00, 0xfd, 0x03, 0x04, 0x04, 0xf9, 0x01, 0xc2, 0xfb, 0x09, 0xfb,\n  0xb4, 0xff, 0x1b, 0x02, 0x17, 0x02, 0x01, 0x00, 0x3f, 0x02, 0xa5, 0x02,\n  0x1f, 0xfc, 0x51, 0xfb, 0xc3, 0xfe, 0xe7, 0x02, 0x83, 0x02, 0xd3, 0x00,\n  0x49, 0x00, 0x7d, 0x00, 0xc0, 0xff, 0x25, 0xfd, 0xc5, 0xfd, 0xc2, 0x00,\n  0xa9, 0x02, 0x51, 0x02, 0x38, 0xff, 0x67, 0xfd, 0xee, 0xfe, 0xbe, 0x00,\n  0x13, 0x01, 0x2b, 0x00, 0x48, 0xff, 0xe8, 0xfe, 0x2d, 0x01, 0x3f, 0x03,\n  0x5c, 0xff, 0x43, 0xfd, 0x52, 0xfe, 0xb6, 0xff, 0x18, 0x01, 0x69, 0x01,\n  0xe5, 0x00, 0xb7, 0x02, 0xed, 0xff, 0xf5, 0xfa, 0x2b, 0xfd, 0xa6, 0x01,\n  0x95, 0x03, 0x0b, 0x03, 0xc1, 0xfe, 0x49, 0xfc, 0x61, 0xfe, 0x52, 0x00,\n  0xd9, 0x00, 0xf4, 0x00, 0x39, 0x01, 0xed, 0x02, 0xea, 0xfe, 0xe9, 0xfa,\n  0x4f, 0xfe, 0xa9, 0x02, 0x33, 0x02, 0x00, 0x01, 0x85, 0x03, 0xd3, 0xfd,\n  0xa4, 0xfa, 0x54, 0xfe, 0xa8, 0x01, 0xfd, 0x01, 0x83, 0x00, 0x41, 0x00,\n  0x4b, 0x01, 0x25, 0x00, 0xfb, 0xfd, 0xa3, 0xfe, 0x3d, 0x00, 0x21, 0x01,\n  0x59, 0x00, 0x12, 0xff, 0xb1, 0xff, 0x87, 0x02, 0xe0, 0x00, 0xdb, 0xfd,\n  0x46, 0xfe, 0xb3, 0xff, 0xec, 0x00, 0x63, 0x01, 0xda, 0x00, 0x50, 0xff,\n  0xf0, 0xfe, 0x93, 0xff, 0x43, 0x00, 0xea, 0xff, 0x68, 0xff, 0x13, 0x00,\n  0x82, 0x01, 0x0b, 0x03, 0x5d, 0xff, 0x83, 0xfc, 0x46, 0xfe, 0x59, 0x00,\n  0xbc, 0x00, 0xa6, 0x00, 0xec, 0x00, 0xa7, 0x02, 0x5c, 0x00, 0x63, 0xfc,\n  0x4d, 0xfd, 0xae, 0xff, 0x5b, 0x02, 0x4b, 0x01, 0xdf, 0x02, 0x63, 0x01,\n  0xe1, 0xfb, 0xad, 0xfb, 0x95, 0xff, 0xd7, 0x02, 0x37, 0x03, 0x2d, 0x03,\n  0x67, 0xfd, 0x72, 0xfb, 0xe9, 0xfd, 0xdc, 0x01, 0x6f, 0x02, 0xbd, 0x02,\n  0x91, 0x01, 0x7d, 0xfc, 0x35, 0xfc, 0xce, 0xff, 0x57, 0x03, 0x4e, 0x01,\n  0x36, 0xfe, 0x4e, 0xfe, 0x28, 0x01, 0x85, 0x03, 0xe4, 0xff, 0x0b, 0xfd,\n  0x5e, 0xfe, 0x82, 0x00, 0xf4, 0x00, 0x16, 0x00, 0x89, 0xff, 0x07, 0x01,\n  0x63, 0x02, 0x09, 0xff, 0x99, 0xfd, 0xe4, 0xfe, 0x11, 0x00, 0x77, 0x00,\n  0xe5, 0x00, 0xc4, 0x00, 0xf0, 0x01, 0x76, 0x01, 0xc5, 0xfc, 0x77, 0xfc,\n  0xe6, 0xff, 0x6d, 0x03, 0x3f, 0x02, 0x7f, 0xfe, 0xa5, 0xfd, 0x9f, 0xfe,\n  0xad, 0x00, 0xb7, 0x01, 0x06, 0x01, 0x09, 0x03, 0xb6, 0xff, 0x96, 0xfa,\n  0x8b, 0xfd, 0x3d, 0x02, 0x08, 0x05, 0xc1, 0x00, 0x77, 0xfc, 0x3f, 0xfd,\n  0xdb, 0xff, 0x8b, 0x01, 0x75, 0x02, 0x81, 0x01, 0x42, 0xfe, 0xc9, 0xfd,\n  0x5c, 0xff, 0xca, 0x00, 0x57, 0x01, 0xb8, 0x00, 0x78, 0xff, 0x24, 0xff,\n  0x9e, 0xff, 0x28, 0x00, 0x7a, 0x00, 0x6d, 0x00, 0xf5, 0xff, 0x90, 0xff,\n  0x84, 0xff, 0x14, 0xff, 0x0b, 0x00, 0xee, 0x00, 0xbd, 0x02, 0xee, 0x01,\n  0xe5, 0xfc, 0x59, 0xfc, 0x91, 0xfe, 0x13, 0x02, 0x13, 0x02, 0x72, 0x01,\n  0x05, 0x03, 0x12, 0xfe, 0x45, 0xfa, 0x1c, 0xfe, 0x9f, 0x02, 0x67, 0x04,\n  0x1f, 0x03, 0xa3, 0xfc, 0xd1, 0xfa, 0xc1, 0xfe, 0x0d, 0x03, 0x39, 0x02,\n  0xd6, 0x00, 0x31, 0x03, 0xeb, 0xfd, 0xd4, 0xf9, 0x58, 0xfe, 0x47, 0x03,\n  0xd7, 0x02, 0x22, 0x00, 0x9f, 0xff, 0x99, 0x01, 0x6d, 0x00, 0x3b, 0xfc,\n  0x8f, 0xfd, 0x63, 0x01, 0xb1, 0x03, 0xf7, 0x01, 0x59, 0xfd, 0xf7, 0xfc,\n  0x9c, 0xff, 0x81, 0x01, 0x6f, 0x01, 0x50, 0x00, 0x69, 0xff, 0x80, 0xff,\n  0xda, 0xff, 0x34, 0x00, 0x0e, 0x00, 0xb9, 0xff, 0x1e, 0xff, 0x2f, 0x00,\n  0x9b, 0x00, 0x3f, 0x02, 0xff, 0x02, 0x27, 0xfd, 0x95, 0xfb, 0x52, 0xfe,\n  0xde, 0x01, 0x79, 0x02, 0xd1, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0x77, 0xff,\n  0x0f, 0xff, 0xda, 0xff, 0xc7, 0x00, 0x72, 0x01, 0x6a, 0x01, 0xba, 0xfe,\n  0xd7, 0xfc, 0x2a, 0xfe, 0x89, 0x00, 0xf6, 0x01, 0x83, 0x03, 0x92, 0x00,\n  0xd7, 0xfc, 0x0b, 0xfd, 0x9e, 0xff, 0xde, 0x01, 0xe3, 0x03, 0x81, 0x01,\n  0x5f, 0xfc, 0x0f, 0xfc, 0xf6, 0xff, 0xc7, 0x02, 0x29, 0x02, 0x2d, 0x03,\n  0x58, 0xfe, 0xc4, 0xfa, 0xa5, 0xfd, 0x41, 0x02, 0xd5, 0x02, 0x5d, 0x03,\n  0xfe, 0xff, 0xb5, 0xfb, 0x75, 0xfc, 0x79, 0x00, 0xa9, 0x02, 0x2f, 0x03,\n  0x81, 0x02, 0xab, 0xfc, 0x29, 0xfb, 0x08, 0xff, 0x03, 0x03, 0x3b, 0x02,\n  0x61, 0x00, 0x7d, 0x02, 0xab, 0xfe, 0x42, 0xfa, 0x2d, 0xff, 0x07, 0x03,\n  0x17, 0x05, 0xa4, 0x00, 0x55, 0xfa, 0xad, 0xfc, 0xea, 0x01, 0x3d, 0x03,\n  0xb5, 0x00, 0xd0, 0xfe, 0x24, 0xff, 0x89, 0x00, 0xfa, 0x00, 0xc4, 0xfe,\n  0x34, 0xfe, 0x9b, 0x00, 0xef, 0x03, 0xb3, 0x00, 0xbb, 0xfc, 0x3b, 0xfd,\n  0xad, 0xff, 0xa2, 0x01, 0xcf, 0x02, 0xcd, 0x02, 0xe1, 0xfd, 0xf6, 0xfb,\n  0x1c, 0xfe, 0xc6, 0x01, 0xa9, 0x02, 0x81, 0x03, 0x54, 0xff, 0xcd, 0xfa,\n  0xc1, 0xfd, 0xe5, 0x01, 0x9b, 0x04, 0x67, 0x01, 0xed, 0xfc, 0x99, 0xfc,\n  0x1a, 0xff, 0xf9, 0x01, 0x51, 0x02, 0x71, 0x03, 0x1d, 0xff, 0x18, 0xfb,\n  0x33, 0xfd, 0x8d, 0x01, 0x23, 0x03, 0xa1, 0x00, 0xaf, 0x01, 0x42, 0x01,\n  0x30, 0xfb, 0x4f, 0xfc, 0x13, 0x02, 0xbd, 0x02, 0xa7, 0x03, 0x0c, 0x01,\n  0x9d, 0xfa, 0xa9, 0xfb, 0x9a, 0x00, 0xa7, 0x03, 0x87, 0x01, 0xf4, 0x01,\n  0x27, 0x01, 0x39, 0xfc, 0x59, 0xfc, 0x27, 0xff, 0x9f, 0x02, 0xca, 0x01,\n  0x61, 0x02, 0xa6, 0x01, 0x4d, 0xfc, 0xb8, 0xfb, 0xb4, 0xff, 0xbb, 0x02,\n  0xbf, 0x02, 0xff, 0x02, 0xbf, 0xfd, 0x09, 0xfb, 0x22, 0xfe, 0xc3, 0x02,\n  0x3d, 0x02, 0xea, 0x01, 0x73, 0x02, 0x65, 0xfc, 0x00, 0xfb, 0x30, 0xff,\n  0x53, 0x03, 0x0d, 0x02, 0x03, 0x02, 0x67, 0x01, 0xb9, 0xfb, 0xf6, 0xfb,\n  0x6b, 0x00, 0xc7, 0x04, 0xb3, 0x02, 0x5b, 0xfd, 0x6d, 0xfc, 0x11, 0xff,\n  0x0d, 0x02, 0x69, 0x02, 0xcf, 0x01, 0x1a, 0xff, 0x2f, 0xfd, 0xa3, 0xfe,\n  0xc5, 0x00, 0x5b, 0x01, 0x82, 0x00, 0x6b, 0xff, 0xc6, 0xff, 0x47, 0x00,\n  0xed, 0xff, 0xc9, 0xff, 0xc5, 0xff, 0xf8, 0xff, 0x7d, 0x00, 0xaf, 0x00,\n  0x9f, 0xff, 0xd8, 0xfe, 0x51, 0xff, 0xe4, 0x01, 0xbe, 0x01, 0xcc, 0xfe,\n  0x42, 0xfe, 0x59, 0xff, 0x35, 0x00, 0x48, 0x01, 0x78, 0x01, 0x6b, 0xff,\n  0xa5, 0xfe, 0xbb, 0xfe, 0xd7, 0xff, 0x31, 0x01, 0x1b, 0x01, 0x62, 0x00,\n  0xf8, 0xff, 0x18, 0x01, 0x06, 0x01, 0x9d, 0xfd, 0x39, 0xfd, 0xdd, 0xff,\n  0x8a, 0x01, 0x51, 0x01, 0x23, 0x00, 0x7d, 0xff, 0x95, 0xff, 0x04, 0x00,\n  0x1c, 0x00, 0xa1, 0xff, 0x39, 0xff, 0x58, 0x00, 0xda, 0x00, 0xdc, 0x01,\n  0x19, 0x02, 0x6f, 0xfd, 0x29, 0xfc, 0x47, 0xff, 0x4b, 0x02, 0x57, 0x02,\n  0xaa, 0xff, 0x39, 0xfe, 0x22, 0x01, 0xe4, 0x01, 0x54, 0xfe, 0x04, 0xfe,\n  0x11, 0xff, 0x5e, 0x00, 0x25, 0x01, 0x15, 0x01, 0x0d, 0x00, 0xec, 0xff,\n  0x86, 0xff, 0x6d, 0x02, 0xdb, 0x02, 0xc1, 0xfb, 0x54, 0xfb, 0x7b, 0xff,\n  0xdf, 0x02, 0xea, 0x01, 0xea, 0xff, 0x27, 0xff, 0xe1, 0x02, 0x6f, 0x01,\n  0x2d, 0xfc, 0xd7, 0xfc, 0xab, 0xff, 0xeb, 0x01, 0xc6, 0x01, 0x3b, 0x00,\n  0x8b, 0x01, 0xa3, 0x01, 0xeb, 0xfc, 0xd1, 0xfc, 0x9e, 0xff, 0xaf, 0x01,\n  0x31, 0x02, 0xb9, 0x00, 0xdf, 0xfe, 0xc0, 0xfe, 0x8f, 0xff, 0x93, 0xff,\n  0x5b, 0x00, 0xc5, 0x00, 0xf9, 0x01, 0x27, 0x02, 0xa3, 0xfd, 0x69, 0xfc,\n  0x18, 0xff, 0xa3, 0x01, 0xbd, 0x02, 0x57, 0x01, 0x4e, 0xfe, 0xef, 0xfd,\n  0x83, 0xff, 0xbc, 0x00, 0x46, 0x01, 0x6e, 0x00, 0x77, 0xff, 0x5f, 0xff,\n  0xf0, 0xfe, 0xa2, 0xff, 0x1c, 0x01, 0xef, 0x00, 0xbb, 0x00, 0x13, 0x03,\n  0xbd, 0xfd, 0x7c, 0xfa, 0xec, 0xff, 0x1f, 0x03, 0x03, 0x02, 0x17, 0x00,\n  0xea, 0xfe, 0xd2, 0xfe, 0x00, 0x00, 0x98, 0x00, 0xc8, 0x00, 0x2b, 0x01,\n  0x2e, 0x00, 0xc3, 0xfd, 0x55, 0xfe, 0x34, 0x00, 0x21, 0x01, 0x55, 0x00,\n  0x8d, 0x02, 0x01, 0x02, 0x29, 0xfc, 0x4f, 0xfc, 0xc2, 0xff, 0xa5, 0x01,\n  0x51, 0x02, 0x5f, 0x02, 0xd5, 0xfe, 0x7f, 0xfd, 0x6c, 0xfe, 0x55, 0x00,\n  0x73, 0x01, 0x23, 0x02, 0xb8, 0x01, 0xf7, 0xfc, 0xcd, 0xfc, 0x5e, 0x00,\n  0x29, 0x03, 0xd1, 0x03, 0x21, 0xfe, 0xe8, 0xfb, 0x06, 0xfe, 0x06, 0x01,\n  0xf7, 0x01, 0x61, 0x02, 0x9f, 0x01, 0xa7, 0xfd, 0x31, 0xfd, 0xd8, 0xfe,\n  0xbc, 0x00, 0xc7, 0x01, 0xd3, 0x00, 0xc1, 0x02, 0x3a, 0x00, 0xb4, 0xfb,\n  0xe1, 0xfc, 0xe9, 0x00, 0xbd, 0x02, 0xcc, 0x01, 0x71, 0x02, 0x2b, 0xfe,\n  0x23, 0xfc, 0xbe, 0xfe, 0xe3, 0x00, 0x76, 0x01, 0x82, 0x01, 0x15, 0x02,\n  0xc4, 0xfe, 0x33, 0xfd, 0xb4, 0xfe, 0x61, 0x00, 0xfa, 0x00, 0x84, 0x01,\n  0xa3, 0x02, 0xff, 0xfe, 0xe5, 0xfc, 0xcd, 0xfe, 0x01, 0x01, 0x2b, 0x01,\n  0x08, 0x00, 0xd2, 0xfe, 0xd7, 0xff, 0xbb, 0x00, 0x35, 0x02, 0x57, 0x02,\n  0x57, 0xfd, 0x47, 0xfc, 0xa0, 0xfe, 0xd9, 0x01, 0x05, 0x02, 0x37, 0x01,\n  0x3d, 0x02, 0x79, 0xfe, 0x95, 0xfb, 0x61, 0xfe, 0x1d, 0x02, 0x81, 0x02,\n  0x2f, 0x03, 0x4a, 0xff, 0xdd, 0xfb, 0xe9, 0xfd, 0xf9, 0xff, 0x07, 0x02,\n  0x2b, 0x01, 0x39, 0x02, 0x54, 0x01, 0xab, 0xfc, 0x7d, 0xfc, 0xc6, 0xff,\n  0x5b, 0x02, 0x13, 0x02, 0x77, 0x02, 0x85, 0xfe, 0x61, 0xfb, 0xf4, 0xfe,\n  0x6f, 0x02, 0x46, 0x04, 0x67, 0x00, 0x47, 0xfc, 0x5d, 0xfd, 0x0d, 0x00,\n  0xc0, 0x01, 0x4d, 0x02, 0x48, 0x01, 0xa5, 0xfd, 0x7b, 0xfd, 0xf9, 0xff,\n  0x0f, 0x02, 0x77, 0x03, 0x66, 0xff, 0xaf, 0xfc, 0x60, 0xfe, 0x23, 0x00,\n  0xd3, 0x00, 0xc4, 0x00, 0x92, 0x00, 0x34, 0x00, 0x82, 0x00, 0x83, 0x00,\n  0xfd, 0xfe, 0x8b, 0xfe, 0x0b, 0x00, 0x03, 0x01, 0x96, 0x01, 0xb1, 0x01,\n  0x66, 0xfe, 0x6b, 0xfc, 0x15, 0xff, 0xed, 0x01, 0xc1, 0x01, 0xe9, 0xff,\n  0x20, 0xff, 0x54, 0xff, 0x3d, 0x00, 0xc5, 0x00, 0x35, 0x00, 0xb0, 0xff,\n  0xa7, 0xff, 0x72, 0xff, 0x78, 0xff, 0x6e, 0x00, 0x2a, 0x01, 0x97, 0x02,\n  0xe0, 0xff, 0xb4, 0xfb, 0x24, 0xfe, 0xaf, 0x01, 0x18, 0x04, 0x87, 0x01,\n  0xcb, 0xfc, 0x05, 0xfd, 0x77, 0xff, 0x7b, 0x01, 0x1d, 0x02, 0xf9, 0x01,\n  0xc4, 0xfe, 0xc9, 0xfd, 0x79, 0xfe, 0x16, 0x00, 0x2e, 0x01, 0x57, 0x02,\n  0x61, 0x02, 0xbb, 0xfd, 0x2b, 0xfc, 0xb8, 0xfe, 0x23, 0x02, 0xf6, 0x01,\n  0xa7, 0x00, 0x63, 0x02, 0x73, 0xfe, 0x01, 0xfb, 0x3c, 0xff, 0xdb, 0x02,\n  0xd0, 0x01, 0xfd, 0x02, 0xb9, 0xff, 0xe5, 0xfa, 0xef, 0xfc, 0x91, 0x01,\n  0xf9, 0x02, 0x63, 0x01, 0x65, 0x02, 0x9c, 0xfe, 0xe8, 0xfb, 0xb1, 0xfd,\n  0x87, 0x01, 0x5d, 0x02, 0xd9, 0x02, 0xfe, 0x00, 0x13, 0xfc, 0x95, 0xfc,\n  0x5f, 0x00, 0xe5, 0x02, 0x04, 0x01, 0x9c, 0x01, 0x3c, 0x01, 0xd8, 0xfb,\n  0x6b, 0xfc, 0xac, 0x01, 0x7f, 0x02, 0x25, 0x03, 0xfa, 0x00, 0x99, 0xfb,\n  0x33, 0xfc, 0x97, 0x00, 0xd5, 0x02, 0xe5, 0x01, 0x3d, 0x02, 0xb2, 0xfe,\n  0x13, 0xfc, 0x45, 0xfe, 0x24, 0x01, 0x89, 0x02, 0x01, 0x03, 0x0c, 0xff,\n  0xd1, 0xfc, 0x7f, 0xfe, 0x5e, 0x00, 0x36, 0x01, 0x75, 0x01, 0x70, 0x01,\n  0x0e, 0xff, 0x12, 0xfe, 0x35, 0xff, 0x83, 0x00, 0x13, 0x01, 0xa1, 0x00,\n  0xb9, 0xff, 0x5c, 0xff, 0xb3, 0xff, 0x14, 0x00, 0x50, 0x00, 0x43, 0x00,\n  0x02, 0x00, 0xce, 0xff, 0xc6, 0xff, 0x7a, 0xff, 0xa7, 0xff, 0xf3, 0x01,\n  0x03, 0x01, 0xa2, 0xfe, 0x9a, 0xfe, 0xee, 0xfe, 0x71, 0x00, 0x3f, 0x01,\n  0x10, 0x01, 0xd5, 0x02, 0x0b, 0xff, 0x75, 0xfb, 0xf1, 0xfd, 0x1d, 0x02,\n  0x39, 0x02, 0x3a, 0x01, 0x7b, 0x02, 0xa3, 0xfd, 0x3e, 0xfb, 0x0c, 0xff,\n  0xcd, 0x02, 0xee, 0x01, 0xd1, 0x00, 0x0f, 0x02, 0x89, 0xfd, 0x9d, 0xfb,\n  0xf9, 0xff, 0xb7, 0x02, 0xe5, 0x01, 0x5f, 0x00, 0x36, 0xff, 0xb2, 0xfe,\n  0x95, 0xff, 0xcb, 0x00, 0x6f, 0x01, 0xb7, 0xff, 0x34, 0xfe, 0x1e, 0xff,\n  0x79, 0x00, 0xdd, 0x00, 0x70, 0x00, 0xf6, 0xff, 0xbf, 0xff, 0xd8, 0xff,\n  0xf5, 0xff, 0x23, 0x00, 0xfe, 0xff, 0x96, 0xff, 0x8c, 0xff, 0x7f, 0x01,\n  0x25, 0x01, 0x2e, 0xfe, 0x16, 0xfe, 0xcd, 0x01, 0x79, 0x02, 0xf4, 0xfe,\n  0x19, 0xfe, 0x78, 0xff, 0x5b, 0x00, 0xf2, 0xff, 0xe9, 0xff, 0xb9, 0x00,\n  0x62, 0x00, 0x1b, 0x01, 0xa9, 0x02, 0xc1, 0xfd, 0x7d, 0xfb, 0x21, 0xff,\n  0x87, 0x02, 0x21, 0x02, 0x45, 0x02, 0x9f, 0xff, 0x4d, 0xfc, 0xe3, 0xfd,\n  0xbc, 0x00, 0x4f, 0x02, 0x39, 0x02, 0xa7, 0xff, 0xd9, 0xfd, 0xe1, 0xfe,\n  0x41, 0x00, 0x16, 0x00, 0x0e, 0x00, 0x62, 0x00, 0x75, 0x02, 0x33, 0x01,\n  0x55, 0xfd, 0x37, 0xfd, 0x5a, 0xff, 0xf3, 0x01, 0x67, 0x01, 0xbe, 0x00,\n  0x28, 0x01, 0x2b, 0xfe, 0x5f, 0xfd, 0x8c, 0x00, 0x8b, 0x01, 0x69, 0x03,\n  0x53, 0x00, 0xcc, 0xfb, 0x97, 0xfd, 0x9d, 0x00, 0x66, 0x01, 0x7f, 0x00,\n  0x00, 0x00, 0xf7, 0x00, 0x81, 0x02, 0xca, 0xfe, 0xf7, 0xfc, 0x94, 0xfe,\n  0x73, 0x01, 0x31, 0x02, 0xfb, 0xff, 0xd6, 0xfe, 0xf6, 0xfe, 0x13, 0x00,\n  0xdf, 0x00, 0x82, 0x00, 0xba, 0xff, 0x3f, 0x01, 0xb8, 0x00, 0x1b, 0xfe,\n  0x72, 0xfe, 0xef, 0xff, 0xda, 0x00, 0xf4, 0x00, 0x74, 0x00, 0x8a, 0xff,\n  0x6e, 0xff, 0xd1, 0xff, 0x31, 0x00, 0x28, 0x00, 0xd8, 0xff, 0x2c, 0xff,\n  0x04, 0x00, 0x7d, 0x00, 0xf7, 0x01, 0x1b, 0x02, 0x93, 0xfd, 0x91, 0xfc,\n  0x15, 0xff, 0xe7, 0x01, 0xaf, 0x01, 0x7f, 0x00, 0x57, 0x02, 0x50, 0xff,\n  0x1b, 0xfc, 0xd9, 0xfd, 0x43, 0x01, 0x2d, 0x02, 0x43, 0x02, 0xcd, 0x00,\n  0x4f, 0xfd, 0xa3, 0xfd, 0xb9, 0xff, 0x6f, 0x01, 0x29, 0x02, 0x98, 0x00,\n  0x70, 0xfe, 0xa3, 0xfe, 0xc6, 0xff, 0xaa, 0x00, 0xf7, 0x00, 0x58, 0x00,\n  0x7a, 0xff, 0x6e, 0xff, 0x83, 0xff, 0x8d, 0xff, 0x6b, 0x00, 0xe9, 0x00,\n  0x45, 0x02, 0x14, 0x00, 0x59, 0xfc, 0x58, 0xfe, 0xa0, 0x01, 0xad, 0x03,\n  0x89, 0x00, 0x19, 0xfd, 0xe3, 0xfd, 0xf6, 0xff, 0x46, 0x01, 0xcf, 0x01,\n  0xdc, 0x00, 0xa9, 0xfe, 0xb5, 0xfe, 0x21, 0xff, 0x34, 0x00, 0xcb, 0x00,\n  0xe6, 0x00, 0xcf, 0xff, 0x99, 0x01, 0x29, 0x02, 0x07, 0xfd, 0x35, 0xfc,\n  0x44, 0xff, 0x6f, 0x02, 0xc3, 0x01, 0x8e, 0x00, 0x03, 0x02, 0x7e, 0xfe,\n  0xd2, 0xfb, 0x4e, 0xff, 0x59, 0x02, 0xb1, 0x01, 0xdb, 0x01, 0x56, 0x00,\n  0xe5, 0xfb, 0x81, 0xfd, 0x70, 0x01, 0xd1, 0x02, 0xf9, 0x02, 0xc6, 0xfe,\n  0x45, 0xfc, 0x40, 0xfe, 0xf2, 0x00, 0x2f, 0x03, 0x5d, 0x01, 0x58, 0xfe,\n  0x3d, 0xfe, 0x36, 0xff, 0x44, 0x00, 0x16, 0x01, 0xbe, 0x00, 0xe8, 0x01,\n  0x9d, 0x00, 0x3b, 0xfd, 0xe5, 0xfd, 0xa1, 0xff, 0x31, 0x01, 0x18, 0x01,\n  0x28, 0x01, 0x97, 0x01, 0x33, 0xfe, 0xbf, 0xfc, 0xaa, 0x00, 0x99, 0x03,\n  0x34, 0x00, 0xa1, 0xfd, 0x24, 0xfe, 0x26, 0x00, 0x8d, 0x01, 0x1b, 0x01,\n  0x55, 0x00, 0x8f, 0xff, 0x1c, 0x00, 0xe9, 0x00, 0x2c, 0xff, 0x2e, 0xfe,\n  0x89, 0xff, 0xac, 0x00, 0x9d, 0x00, 0xb3, 0xff, 0x4f, 0x00, 0xac, 0x01,\n  0xf0, 0xff, 0x6c, 0xfe, 0x29, 0xff, 0xec, 0xff, 0x31, 0x00, 0x37, 0x00,\n  0xfb, 0x00, 0x49, 0x02, 0x4b, 0xff, 0x77, 0xfd, 0x96, 0xfe, 0x43, 0x00,\n  0x2a, 0x01, 0xd5, 0x01, 0x22, 0x01, 0x64, 0xfe, 0x4b, 0xfe, 0xbc, 0xff,\n  0xad, 0x00, 0x61, 0x00, 0xd5, 0xff, 0xf8, 0xff, 0x0a, 0x01, 0xa3, 0x00,\n  0x0f, 0xff, 0xf1, 0xfe, 0xda, 0xff, 0x97, 0x00, 0x6a, 0x00, 0xdb, 0xff,\n  0x8a, 0xff, 0x6f, 0xff, 0x21, 0x01, 0x3f, 0x01, 0x36, 0xff, 0xa3, 0xfe,\n  0x20, 0xff, 0x62, 0x00, 0x34, 0x01, 0x3f, 0x02, 0xde, 0xff, 0x8b, 0xfd,\n  0x30, 0xfe, 0xd7, 0xff, 0xac, 0x01, 0xdd, 0x00, 0xab, 0x01, 0x19, 0x01,\n  0x15, 0xfd, 0xf5, 0xfc, 0x64, 0x00, 0x0f, 0x02, 0xe5, 0x01, 0xa2, 0x01,\n  0x34, 0xfe, 0x05, 0xfd, 0xdf, 0xfe, 0x3f, 0x01, 0xbd, 0x01, 0x79, 0x02,\n  0xbf, 0xff, 0x27, 0xfd, 0xd7, 0xfd, 0x56, 0x00, 0x99, 0x01, 0x2f, 0x02,\n  0x8e, 0x01, 0xe5, 0xfd, 0x0d, 0xfd, 0x29, 0xff, 0x61, 0x01, 0xaf, 0x02,\n  0xd3, 0x01, 0x9d, 0xfd, 0xd1, 0xfc, 0xf3, 0xff, 0xf3, 0x01, 0x58, 0x01,\n  0x45, 0x02, 0x47, 0xff, 0x83, 0xfc, 0x12, 0xfe, 0xc4, 0x00, 0x21, 0x02,\n  0x99, 0x02, 0xd2, 0xff, 0x39, 0xfd, 0x0c, 0xfe, 0x3a, 0x00, 0xc3, 0x01,\n  0xfd, 0x00, 0xff, 0x01, 0xc5, 0xff, 0xc5, 0xfc, 0xf1, 0xfd, 0xf5, 0x00,\n  0xb4, 0x01, 0x8b, 0x01, 0xe2, 0x01, 0x22, 0xfe, 0x01, 0xfd, 0xd3, 0xfe,\n  0x39, 0x01, 0xa8, 0x01, 0x09, 0x02, 0x26, 0x00, 0xb3, 0xfd, 0x2e, 0xfe,\n  0xcf, 0xff, 0xf7, 0x00, 0x17, 0x02, 0xb1, 0x01, 0x48, 0xfe, 0xa9, 0xfd,\n  0xc9, 0xfe, 0x2b, 0x01, 0x3f, 0x01, 0x93, 0x01, 0xa3, 0x01, 0xdf, 0xfd,\n  0x09, 0xfd, 0xea, 0xfe, 0xd3, 0x01, 0x69, 0x01, 0x2b, 0x01, 0xd3, 0x01,\n  0x95, 0xfd, 0x4f, 0xfc, 0x25, 0x00, 0x45, 0x02, 0x84, 0x01, 0x3f, 0x02,\n  0xac, 0xfe, 0xce, 0xfb, 0xd8, 0xfe, 0x1d, 0x02, 0xe1, 0x01, 0x51, 0x02,\n  0x78, 0xff, 0xe8, 0xfb, 0x6d, 0xfe, 0xc3, 0x01, 0xd6, 0x01, 0x40, 0x00,\n  0x9e, 0xff, 0x34, 0x00, 0x3d, 0x00, 0x78, 0xff, 0x06, 0xff, 0x1c, 0x00,\n  0x44, 0x00, 0xf0, 0x01, 0x81, 0x02, 0xe7, 0xfc, 0xa5, 0xfb, 0x8c, 0xff,\n  0x7f, 0x02, 0x9f, 0x02, 0xcd, 0x01, 0xf1, 0xfd, 0x85, 0xfc, 0xc6, 0xff,\n  0xf1, 0x01, 0x17, 0x03, 0x6d, 0x00, 0x19, 0xfd, 0xa7, 0xfd, 0xec, 0xff,\n  0xc6, 0x01, 0x28, 0x01, 0xe8, 0x01, 0xef, 0xff, 0x1f, 0xfd, 0x07, 0xfe,\n  0x91, 0x00, 0xb5, 0x01, 0x0d, 0x02, 0x70, 0x00, 0xe7, 0xfd, 0x5b, 0xfe,\n  0xb3, 0xff, 0xf1, 0x00, 0x16, 0x01, 0x92, 0x00, 0xc5, 0xff, 0x68, 0xff,\n  0xaa, 0xff, 0x83, 0x00, 0x1c, 0x00, 0x77, 0xff, 0x11, 0xff, 0xce, 0xff,\n  0xa1, 0x00, 0xbb, 0x01, 0xbb, 0x01, 0x39, 0xfe, 0x8d, 0xfd, 0x23, 0xff,\n  0xa9, 0x01, 0xf9, 0x01, 0xc5, 0xff, 0x6a, 0xfe, 0xd2, 0xfe, 0x58, 0x00,\n  0x69, 0x01, 0x4d, 0x02, 0x80, 0xff, 0x7d, 0xfd, 0xe8, 0xfe, 0x9b, 0x00,\n  0xfe, 0x00, 0x02, 0x00, 0x48, 0xff, 0xed, 0xff, 0xaf, 0x00, 0x65, 0x02,\n  0x05, 0x00, 0x55, 0xfd, 0x19, 0xfe, 0x1a, 0x00, 0x7e, 0x01, 0x49, 0x01,\n  0xcf, 0x01, 0x4a, 0xff, 0x71, 0xfd, 0xa9, 0xfe, 0x95, 0x00, 0x91, 0x01,\n  0xb5, 0x01, 0xc8, 0xff, 0x57, 0xfe, 0x20, 0xff, 0x3b, 0x00, 0x2f, 0x00,\n  0xd7, 0xff, 0x0d, 0x00, 0x30, 0x01, 0xff, 0x01, 0xf4, 0xfe, 0xc7, 0xfd,\n  0x3e, 0xff, 0x4f, 0x00, 0x8f, 0x00, 0x68, 0x00, 0xe3, 0x00, 0x3a, 0x01,\n  0x32, 0xff, 0x36, 0xfe, 0x57, 0xff, 0x8b, 0x00, 0x01, 0x01, 0xb5, 0x00,\n  0x9f, 0xff, 0x50, 0xff, 0xa1, 0xff, 0xde, 0xff, 0xcb, 0xff, 0xcd, 0x00,\n  0xe1, 0x01, 0x9f, 0xff, 0x4e, 0xfe, 0xa9, 0xfe, 0x02, 0x00, 0x25, 0x01,\n  0xc5, 0x00, 0x3d, 0x00, 0xf3, 0x01, 0xb4, 0xff, 0xb5, 0xfc, 0x48, 0xfe,\n  0x2d, 0x01, 0xcd, 0x01, 0xe2, 0x01, 0x47, 0x00, 0xad, 0xfd, 0x3f, 0xfe,\n  0x62, 0x00, 0xac, 0x01, 0x70, 0x00, 0x60, 0xff, 0x36, 0xff, 0x98, 0xff,\n  0x83, 0x00, 0x65, 0x00, 0x99, 0x01, 0xf8, 0x00, 0x04, 0xfe, 0x07, 0xfe,\n  0x5f, 0xff, 0x1c, 0x01, 0x2b, 0x01, 0xfc, 0x01, 0x26, 0x00, 0x79, 0xfd,\n  0x0d, 0xfe, 0x2b, 0x00, 0xb4, 0x01, 0xbf, 0x00, 0x94, 0x01, 0x83, 0x00,\n  0x6f, 0xfd, 0xcd, 0xfd, 0xe7, 0xff, 0xbb, 0x01, 0xef, 0x00, 0x15, 0x01,\n  0x19, 0x01, 0xf3, 0xfd, 0x6d, 0xfd, 0xdd, 0xff, 0xa2, 0x01, 0x2a, 0x01,\n  0xb7, 0x01, 0xa4, 0xff, 0x29, 0xfd, 0x88, 0xfe, 0xe6, 0x00, 0x7c, 0x01,\n  0x4c, 0x01, 0x06, 0x01, 0x7e, 0xfe, 0x07, 0xfe, 0x9f, 0xff, 0x58, 0x00,\n  0x6b, 0x00, 0x59, 0x00, 0xe8, 0x00, 0x91, 0x01, 0x2d, 0xff, 0xdd, 0xfd,\n  0x15, 0xff, 0x94, 0x00, 0x72, 0x01, 0x2a, 0x01, 0x69, 0xff, 0xc4, 0xfe,\n  0x74, 0xff, 0x5f, 0x00, 0xaa, 0x00, 0x2b, 0x00, 0x9b, 0xff, 0x44, 0xff,\n  0xab, 0xff, 0x4e, 0x01, 0xeb, 0x01, 0x26, 0xff, 0xf1, 0xfd, 0xc7, 0xfe,\n  0xb6, 0x00, 0x30, 0x01, 0x15, 0x01, 0x90, 0x01, 0x49, 0xfe, 0x1d, 0xfd,\n  0xc6, 0xff, 0x1f, 0x02, 0xb1, 0x02, 0x50, 0xff, 0x55, 0xfd, 0x6c, 0xfe,\n  0xbe, 0x00, 0x82, 0x01, 0x95, 0x00, 0xed, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xc6, 0xff, 0x7b, 0xff, 0xf9, 0xff, 0x32, 0x00, 0x67, 0x02, 0xcb, 0x00,\n  0x95, 0xfc, 0xa7, 0xfd, 0x5f, 0x00, 0xe4, 0x01, 0xac, 0x01, 0x31, 0x00,\n  0xbe, 0xfe, 0x1b, 0xff, 0xec, 0xff, 0x7a, 0x00, 0x9e, 0x00, 0x2f, 0x00,\n  0xab, 0xff, 0xad, 0xff, 0xf0, 0xff, 0x17, 0x00, 0xf5, 0xff, 0xc3, 0xff,\n  0xaa, 0x00, 0x5b, 0x00, 0x92, 0xff, 0x11, 0xff, 0x8f, 0xff, 0x8c, 0x00,\n  0x54, 0x01, 0x8e, 0x01, 0xbb, 0xfe, 0x89, 0xfd, 0x93, 0xff, 0x4b, 0x01,\n  0x57, 0x01, 0x7c, 0x01, 0x56, 0xff, 0xb1, 0xfd, 0x00, 0xff, 0xa7, 0x00,\n  0x7c, 0x01, 0xd0, 0x00, 0x63, 0xff, 0x0f, 0xff, 0xb6, 0xff, 0x3d, 0x00,\n  0x73, 0x00, 0x37, 0x00, 0xa5, 0xff, 0x92, 0xff, 0x55, 0x00, 0x9d, 0x00,\n  0x59, 0x00, 0xa5, 0xff, 0x47, 0xff, 0x90, 0xff, 0x14, 0x00, 0xdc, 0x00,\n  0x64, 0x00, 0x98, 0xff, 0x8a, 0xff, 0xcf, 0xff, 0xfc, 0xff, 0x23, 0x00,\n  0xf6, 0xff, 0x88, 0x00, 0x27, 0x01, 0x84, 0xff, 0xcc, 0xfe, 0x45, 0xff,\n  0xc5, 0xff, 0xaa, 0x00, 0x98, 0x00, 0x42, 0x01, 0x09, 0x01, 0x2e, 0xfe,\n  0xf5, 0xfd, 0xcc, 0xff, 0x7b, 0x01, 0xd0, 0x01, 0xa7, 0xff, 0x84, 0xfe,\n  0xf9, 0xfe, 0x25, 0x00, 0xcb, 0x00, 0x67, 0x01, 0xdd, 0x00, 0xa8, 0xfe,\n  0x87, 0xfe, 0xa7, 0xff, 0xad, 0x00, 0x15, 0x01, 0x6b, 0x00, 0x5d, 0xff,\n  0x63, 0xff, 0x86, 0xff, 0xe0, 0xff, 0x74, 0x00, 0xd7, 0x00, 0x94, 0x01,\n  0x95, 0xff, 0xd1, 0xfd, 0xa3, 0xfe, 0xd1, 0x00, 0x2a, 0x01, 0xb2, 0x01,\n  0xbb, 0x00, 0xed, 0xfd, 0xfb, 0xfd, 0xa2, 0xff, 0x7f, 0x01, 0xd1, 0x00,\n  0x48, 0x01, 0xe6, 0x00, 0xd9, 0xfd, 0xb3, 0xfd, 0xf5, 0xff, 0xae, 0x01,\n  0xc2, 0x00, 0xb0, 0x00, 0x30, 0x01, 0x33, 0xfe, 0x83, 0xfd, 0x41, 0x00,\n  0x81, 0x01, 0xcb, 0x00, 0xc0, 0xff, 0xe5, 0x00, 0x19, 0x01, 0x24, 0xfe,\n  0x4b, 0xfe, 0xff, 0xff, 0xb2, 0x00, 0x41, 0x00, 0xa5, 0xff, 0x35, 0x00,\n  0x5e, 0x00, 0x5d, 0x01, 0xd0, 0x00, 0x2b, 0xfe, 0x16, 0xfe, 0x01, 0x00,\n  0x39, 0x01, 0x88, 0x01, 0xa6, 0x00, 0xa5, 0xfe, 0xcd, 0xfe, 0xdd, 0xff,\n  0x1d, 0x00, 0x07, 0x00, 0x76, 0x00, 0x52, 0x00, 0x01, 0x01, 0x0d, 0x01,\n  0xc3, 0xfd, 0x0a, 0xfe, 0xbe, 0x00, 0x96, 0x01, 0x25, 0x02, 0x7d, 0xff,\n  0x4f, 0xfd, 0x61, 0xfe, 0xee, 0x00, 0x75, 0x01, 0x0f, 0x01, 0x24, 0x01,\n  0x42, 0xfe, 0xbb, 0xfd, 0x29, 0x00, 0x72, 0x01, 0xc5, 0x00, 0x39, 0x01,\n  0xf3, 0xff, 0x7f, 0xfd, 0xb2, 0xfe, 0xd9, 0x00, 0x88, 0x01, 0x75, 0x01,\n  0xa5, 0xff, 0x25, 0xfe, 0x1b, 0xff, 0x35, 0x00, 0xf4, 0x00, 0x00, 0x01,\n  0xd4, 0xff, 0x36, 0xff, 0x83, 0xff, 0x9c, 0xff, 0x43, 0x00, 0x7f, 0x00,\n  0x13, 0x01, 0x1f, 0x01, 0xaf, 0xfe, 0x2e, 0xfe, 0x68, 0xff, 0xdd, 0x00,\n  0xd4, 0x00, 0x75, 0x01, 0x71, 0x00, 0x3f, 0xfe, 0x7e, 0xfe, 0xcc, 0xff,\n  0xcb, 0x00, 0x90, 0x01, 0xd4, 0x00, 0xa6, 0xfe, 0x48, 0xfe, 0xed, 0xff,\n  0x1e, 0x01, 0xd9, 0x00, 0x8d, 0x01, 0x80, 0xff, 0xcf, 0xfd, 0xc6, 0xfe,\n  0x73, 0x00, 0x28, 0x01, 0x6f, 0x01, 0x70, 0x00, 0x93, 0xfe, 0xd2, 0xfe,\n  0xd5, 0xff, 0xa6, 0x00, 0xf5, 0x00, 0x4d, 0x00, 0x68, 0xff, 0x77, 0xff,\n  0xf3, 0xff, 0xf6, 0xff, 0xda, 0xff, 0x0e, 0x00, 0xca, 0x00, 0x28, 0x01,\n  0x80, 0xff, 0xaf, 0xfe, 0x93, 0xff, 0x08, 0x00, 0x13, 0x00, 0x1f, 0x00,\n  0xf1, 0x00, 0x48, 0x01, 0x2c, 0xff, 0x31, 0xfe, 0x5d, 0xff, 0xd3, 0x00,\n  0xf2, 0x00, 0x64, 0x00, 0xdd, 0xff, 0x9c, 0xff, 0x3e, 0x00, 0xee, 0x00,\n  0x86, 0xff, 0x99, 0xfe, 0x84, 0xff, 0x70, 0x00, 0xa4, 0x00, 0x3e, 0x00,\n  0xea, 0xff, 0xba, 0xff, 0x99, 0xff, 0xf2, 0xff, 0xa9, 0x00, 0xc5, 0x00,\n  0xb3, 0xff, 0x42, 0xff, 0xd1, 0xff, 0x31, 0x00, 0x43, 0x00, 0xed, 0xff,\n  0xdd, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0x38, 0x00, 0x41, 0x00,\n  0xdb, 0xff, 0xcb, 0xff, 0x9f, 0xff, 0xbc, 0xff, 0x3a, 0x00, 0xca, 0x00,\n  0x46, 0x01, 0x87, 0xff, 0x6a, 0xfe, 0x3f, 0xff, 0x55, 0x00, 0x54, 0x01,\n  0x7d, 0x00, 0x56, 0xff, 0x29, 0xff, 0x9c, 0xff, 0x34, 0x00, 0x45, 0x01,\n  0x07, 0x01, 0x06, 0xff, 0xd2, 0xfe, 0x8f, 0xff, 0x2c, 0x00, 0x82, 0x00,\n  0x61, 0x00, 0xbe, 0x00, 0x9e, 0x00, 0x09, 0xff, 0xfc, 0xfe, 0xe0, 0xff,\n  0x55, 0x00, 0x3d, 0x00, 0xb9, 0xff, 0xbf, 0xff, 0x41, 0x00, 0x65, 0x00,\n  0x32, 0x00, 0x40, 0x00, 0xef, 0x00, 0xb0, 0xff, 0x75, 0xfe, 0x1a, 0xff,\n  0x22, 0x00, 0xa9, 0x00, 0x40, 0x01, 0xb5, 0x00, 0xf6, 0xfe, 0xf1, 0xfe,\n  0xab, 0xff, 0x46, 0x00, 0xb9, 0x00, 0xda, 0x00, 0xd1, 0xff, 0x2c, 0xff,\n  0x93, 0xff, 0x0d, 0x00, 0x62, 0x00, 0x61, 0x00, 0xfb, 0xff, 0x7e, 0xff,\n  0x95, 0xff, 0x14, 0x00, 0xa0, 0x00, 0x5d, 0x01, 0xbf, 0xff, 0xa0, 0xfe,\n  0xdf, 0xfe, 0x28, 0x00, 0xd0, 0x00, 0x13, 0x01, 0x19, 0x01, 0x05, 0xff,\n  0x69, 0xfe, 0x38, 0xff, 0x89, 0x00, 0xf2, 0x00, 0x5b, 0x00, 0x13, 0x01,\n  0x19, 0x00, 0x07, 0xfe, 0xc7, 0xfe, 0xb6, 0x00, 0x07, 0x01, 0x21, 0x01,\n  0x80, 0x00, 0x8b, 0xfe, 0x8d, 0xfe, 0xd5, 0xff, 0xc2, 0x00, 0xeb, 0x00,\n  0x46, 0x01, 0x92, 0xff, 0x73, 0xfe, 0x35, 0xff, 0x19, 0x00, 0xb9, 0x00,\n  0x53, 0x00, 0xd0, 0x00, 0xbe, 0x00, 0xe8, 0xfe, 0xbd, 0xfe, 0x71, 0xff,\n  0x74, 0x00, 0xb9, 0x00, 0x8f, 0x00, 0x1f, 0x01, 0x80, 0xff, 0x42, 0xfe,\n  0x41, 0xff, 0x19, 0x01, 0x27, 0x01, 0xad, 0xff, 0x42, 0xff, 0x7a, 0xff,\n  0xea, 0xff, 0x9e, 0x00, 0x31, 0x01, 0xe7, 0xff, 0xd9, 0xfe, 0x39, 0xff,\n  0x2c, 0x00, 0xbb, 0x00, 0x12, 0x01, 0x13, 0x00, 0xf4, 0xfe, 0x5a, 0xff,\n  0x08, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0xe3, 0xff, 0xb4, 0xff, 0xf5, 0xff,\n  0x5b, 0x00, 0x40, 0x01, 0x20, 0x00, 0xa6, 0xfe, 0x18, 0xff, 0xf0, 0xff,\n  0x8b, 0x00, 0x67, 0x00, 0x58, 0x00, 0xeb, 0x00, 0xb0, 0xff, 0xcd, 0xfe,\n  0x44, 0xff, 0x02, 0x00, 0x7f, 0x00, 0x21, 0x01, 0xb9, 0x00, 0xfc, 0xfe,\n  0xc7, 0xfe, 0xc6, 0xff, 0xb2, 0x00, 0xb3, 0x00, 0xac, 0x00, 0xb4, 0xff,\n  0x12, 0xff, 0x98, 0xff, 0x1c, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x23, 0x00,\n  0xdb, 0xff, 0xce, 0xff, 0xe9, 0xff, 0x07, 0x00, 0x25, 0x00, 0x0b, 0x00,\n  0xf5, 0xff, 0xf0, 0xff, 0xae, 0xff, 0xb9, 0xff, 0x47, 0x00, 0x5f, 0x00,\n  0x07, 0x01, 0x46, 0x00, 0x94, 0xfe, 0xe8, 0xfe, 0x8b, 0x00, 0x13, 0x01,\n  0xf3, 0xff, 0x66, 0xff, 0x99, 0xff, 0x20, 0x00, 0x97, 0x00, 0x7d, 0x00,\n  0x8d, 0xff, 0x63, 0xff, 0x37, 0x00, 0x53, 0x00, 0xd4, 0xff, 0x90, 0xff,\n  0xc6, 0xff, 0xaa, 0x00, 0xfa, 0x00, 0xa8, 0xff, 0x20, 0xff, 0x95, 0xff,\n  0xfe, 0xff, 0x5f, 0x00, 0x43, 0x00, 0x7f, 0x00, 0x61, 0x00, 0x53, 0xff,\n  0x4d, 0xff, 0xe9, 0xff, 0x68, 0x00, 0x5c, 0x00, 0xf8, 0xff, 0xcf, 0xff,\n  0xe4, 0xff, 0xfe, 0xff, 0x13, 0x00, 0x1d, 0x00, 0x04, 0x00, 0xf0, 0xff,\n  0xea, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x08, 0x00, 0xf8, 0xff, 0xda, 0xff,\n  0xc3, 0xff, 0x0a, 0x00, 0x29, 0x00, 0x7d, 0x00, 0xe2, 0x00, 0x8a, 0xff,\n  0xe7, 0xfe, 0x90, 0xff, 0x2b, 0x00, 0xb9, 0x00, 0x62, 0x00, 0xbd, 0xff,\n  0x8f, 0xff, 0xb0, 0xff, 0xf5, 0xff, 0x9a, 0x00, 0x00, 0x01, 0xc2, 0xff,\n  0xff, 0xfe, 0x53, 0xff, 0x07, 0x00, 0xa4, 0x00, 0x44, 0x00, 0x8c, 0x00,\n  0xe9, 0x00, 0x15, 0xff, 0x82, 0xfe, 0x81, 0xff, 0xbf, 0x00, 0xb3, 0x00,\n  0xe6, 0x00, 0x50, 0x00, 0xd5, 0xfe, 0x2a, 0xff, 0xba, 0xff, 0x55, 0x00,\n  0x65, 0x00, 0xcd, 0x00, 0xaa, 0x00, 0x36, 0xff, 0xf3, 0xfe, 0xa4, 0xff,\n  0x59, 0x00, 0xc2, 0x00, 0xc8, 0x00, 0xa7, 0xff, 0x35, 0xff, 0x86, 0xff,\n  0xe7, 0xff, 0x62, 0x00, 0x58, 0x00, 0xd6, 0x00, 0x58, 0x00, 0xf9, 0xfe,\n  0x08, 0xff, 0xf0, 0xff, 0x98, 0x00, 0xda, 0x00, 0x46, 0x00, 0x57, 0xff,\n  0x71, 0xff, 0xe9, 0xff, 0x50, 0x00, 0x5f, 0x00, 0xf6, 0xff, 0xd1, 0xff,\n  0xb4, 0xff, 0xd7, 0xff, 0x22, 0x00, 0xb3, 0x00, 0xa1, 0x00, 0x77, 0xff,\n  0x1a, 0xff, 0x7e, 0xff, 0x5e, 0x00, 0x95, 0x00, 0x01, 0x01, 0x1a, 0x00,\n  0xd9, 0xfe, 0x23, 0xff, 0xfe, 0xff, 0x9e, 0x00, 0x67, 0x00, 0xe5, 0x00,\n  0x20, 0x00, 0xe1, 0xfe, 0x57, 0xff, 0xf8, 0xff, 0x37, 0x00, 0x38, 0x00,\n  0x71, 0x00, 0xdd, 0x00, 0xa8, 0xff, 0xcd, 0xfe, 0x89, 0xff, 0xad, 0x00,\n  0x1e, 0x01, 0xed, 0xff, 0x2f, 0xff, 0x9e, 0xff, 0x28, 0x00, 0x3e, 0x00,\n  0x0d, 0x00, 0xea, 0xff, 0xff, 0xff, 0x31, 0x00, 0x1a, 0x00, 0xe3, 0xff,\n  0xd7, 0xff, 0xf3, 0xff, 0x08, 0x00, 0x10, 0x00, 0xec, 0xff, 0xda, 0xff,\n  0x53, 0x00, 0x58, 0x00, 0xba, 0xff, 0xba, 0xff, 0xd7, 0xff, 0xc5, 0xff,\n  0x16, 0x00, 0x5c, 0x00, 0xee, 0x00, 0x1c, 0x00, 0x03, 0xff, 0x2f, 0xff,\n  0x05, 0x00, 0x83, 0x00, 0xb9, 0x00, 0xa3, 0x00, 0x69, 0xff, 0x1b, 0xff,\n  0xb0, 0xff, 0x44, 0x00, 0xa0, 0x00, 0x77, 0x00, 0xb4, 0xff, 0x84, 0xff,\n  0xd2, 0xff, 0x19, 0x00, 0x35, 0x00, 0x01, 0x00, 0xea, 0xff, 0x4c, 0x00,\n  0x31, 0x00, 0xbc, 0xff, 0xbf, 0xff, 0xef, 0xff, 0x0b, 0x00, 0x2c, 0x00,\n  0x31, 0x00, 0xf2, 0xff, 0xde, 0xff, 0xed, 0xff, 0xdb, 0xff, 0xd1, 0xff,\n  0x56, 0x00, 0xbb, 0x00, 0xd5, 0xff, 0x4d, 0xff, 0x7d, 0xff, 0x73, 0x00,\n  0xe8, 0x00, 0xe3, 0xff, 0x54, 0xff, 0x7b, 0xff, 0x1d, 0x00, 0x5c, 0x00,\n  0xac, 0x00, 0x76, 0x00, 0x5a, 0xff, 0x50, 0xff, 0xbc, 0xff, 0x13, 0x00,\n  0x40, 0x00, 0x44, 0x00, 0x1a, 0x00, 0x3a, 0x00, 0x89, 0x00, 0xae, 0xff,\n  0x29, 0xff, 0xae, 0xff, 0x38, 0x00, 0x5f, 0x00, 0x26, 0x00, 0xea, 0xff,\n  0xde, 0xff, 0xf2, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0x4f, 0x00, 0x92, 0x00,\n  0xce, 0xff, 0x8c, 0xff, 0xb3, 0xff, 0xe6, 0xff, 0x1f, 0x00, 0x98, 0x00,\n  0x9e, 0x00, 0x96, 0xff, 0x4e, 0xff, 0xaa, 0xff, 0x16, 0x00, 0xb5, 0x00,\n  0x71, 0x00, 0x99, 0xff, 0x7a, 0xff, 0xbc, 0xff, 0x23, 0x00, 0x67, 0x00,\n  0xac, 0x00, 0xfb, 0xff, 0x4d, 0xff, 0x92, 0xff, 0x05, 0x00, 0x58, 0x00,\n  0x6a, 0x00, 0xfe, 0xff, 0xb3, 0xff, 0xc5, 0xff, 0xda, 0xff, 0xf8, 0xff,\n  0x79, 0x00, 0x8e, 0x00, 0xba, 0xff, 0x8a, 0xff, 0xc8, 0xff, 0xd8, 0xff,\n  0x1a, 0x00, 0x3a, 0x00, 0x5b, 0x00, 0xb2, 0x00, 0xae, 0xff, 0x02, 0xff,\n  0x8f, 0xff, 0x56, 0x00, 0x82, 0x00, 0xa9, 0x00, 0x0e, 0x00, 0x08, 0xff,\n  0x78, 0xff, 0x53, 0x00, 0xf2, 0x00, 0x47, 0x00, 0x53, 0xff, 0x74, 0xff,\n  0xec, 0xff, 0x3d, 0x00, 0x3d, 0x00, 0x14, 0x00, 0x49, 0x00, 0x17, 0x00,\n  0x9b, 0xff, 0xbf, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x0d, 0x00, 0x11, 0x00,\n  0xf8, 0xff, 0xef, 0xff, 0x19, 0x00, 0x9d, 0x00, 0x1d, 0x00, 0x56, 0xff,\n  0x8d, 0xff, 0xf9, 0xff, 0x4a, 0x00, 0x64, 0x00, 0x13, 0x00, 0xc5, 0xff,\n  0xce, 0xff, 0xf8, 0xff, 0x11, 0x00, 0x1d, 0x00, 0x0e, 0x00, 0xf3, 0xff,\n  0xf0, 0xff, 0xfc, 0xff, 0x05, 0x00, 0xf0, 0xff, 0xcb, 0xff, 0x1d, 0x00,\n  0x94, 0x00, 0x04, 0x00, 0x99, 0xff, 0x9b, 0xff, 0xe6, 0xff, 0x37, 0x00,\n  0xa1, 0x00, 0x59, 0x00, 0x72, 0xff, 0x60, 0xff, 0xce, 0xff, 0x58, 0x00,\n  0x46, 0x00, 0x35, 0x00, 0x9b, 0x00, 0xc9, 0xff, 0x27, 0xff, 0x80, 0xff,\n  0x34, 0x00, 0x73, 0x00, 0x31, 0x00, 0x05, 0x00, 0x6e, 0x00, 0x20, 0x00,\n  0x5c, 0xff, 0xa7, 0xff, 0x0d, 0x00, 0x1c, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x32, 0x00, 0x38, 0x00, 0xe9, 0xff, 0xc6, 0xff, 0xe9, 0xff, 0xfc, 0xff,\n  0xf2, 0xff, 0x19, 0x00, 0x77, 0x00, 0x0e, 0x00, 0xa2, 0xff, 0xc5, 0xff,\n  0xf2, 0xff, 0x11, 0x00, 0x44, 0x00, 0x34, 0x00, 0xd1, 0xff, 0xb4, 0xff,\n  0x02, 0x00, 0x50, 0x00, 0x13, 0x00, 0xd2, 0xff, 0xe1, 0xff, 0xf9, 0xff,\n  0x07, 0x00, 0x1a, 0x00, 0x14, 0x00, 0xf5, 0xff, 0xef, 0xff, 0xf6, 0xff,\n  0x05, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xe7, 0xff, 0xdd, 0xff,\n  0x01, 0x00, 0x2b, 0x00, 0x83, 0x00, 0x0e, 0x00, 0x80, 0xff, 0xab, 0xff,\n  0xe9, 0xff, 0x23, 0x00, 0x1c, 0x00, 0x52, 0x00, 0x5c, 0x00, 0xb6, 0xff,\n  0x93, 0xff, 0xd7, 0xff, 0xf0, 0xff, 0x14, 0x00, 0x22, 0x00, 0x4c, 0x00,\n  0x76, 0x00, 0xc0, 0xff, 0x68, 0xff, 0xaa, 0xff, 0x29, 0x00, 0x4a, 0x00,\n  0x56, 0x00, 0x65, 0x00, 0xaa, 0xff, 0x60, 0xff, 0xce, 0xff, 0x37, 0x00,\n  0x6a, 0x00, 0x56, 0x00, 0xc9, 0xff, 0x9e, 0xff, 0xcc, 0xff, 0xff, 0xff,\n  0x2c, 0x00, 0x77, 0x00, 0x31, 0x00, 0xa2, 0xff, 0xae, 0xff, 0xe9, 0xff,\n  0x11, 0x00, 0x44, 0x00, 0x3e, 0x00, 0xe1, 0xff, 0xc5, 0xff, 0xea, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0x0a, 0x00, 0x2e, 0x00, 0x71, 0x00, 0xed, 0xff,\n  0x95, 0xff, 0xc9, 0xff, 0xf5, 0xff, 0x19, 0x00, 0x47, 0x00, 0x37, 0x00,\n  0xd5, 0xff, 0xb3, 0xff, 0xea, 0xff, 0x47, 0x00, 0x20, 0x00, 0xe0, 0xff,\n  0xde, 0xff, 0xf9, 0xff, 0x1a, 0x00, 0x0d, 0x00, 0xf6, 0xff, 0xea, 0xff,\n  0xef, 0xff, 0x0a, 0x00, 0x32, 0x00, 0x14, 0x00, 0xdd, 0xff, 0xe1, 0xff,\n  0xf9, 0xff, 0x08, 0x00, 0x11, 0x00, 0x08, 0x00, 0xf9, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0x05, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xec, 0xff, 0xe3, 0xff, 0x02, 0x00,\n  0x23, 0x00, 0x56, 0x00, 0x13, 0x00, 0xa7, 0xff, 0xb9, 0xff, 0xfb, 0xff,\n  0x2c, 0x00, 0x37, 0x00, 0x00, 0x00, 0xd8, 0xff, 0xe6, 0xff, 0x00, 0x00,\n  0x0b, 0x00, 0x0b, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xef, 0xff, 0xf2, 0xff, 0x1f, 0x00, 0x1f, 0x00, 0xec, 0xff, 0xea, 0xff,\n  0xf2, 0xff, 0xea, 0xff, 0xf9, 0xff, 0x14, 0x00, 0x59, 0x00, 0x25, 0x00,\n  0xba, 0xff, 0xab, 0xff, 0xd5, 0xff, 0x26, 0x00, 0x26, 0x00, 0x3d, 0x00,\n  0x37, 0x00, 0x99, 0xff, 0x9c, 0xff, 0x0e, 0x00, 0x4c, 0x00, 0x68, 0x00,\n  0xe7, 0xff, 0x92, 0xff, 0xb7, 0xff, 0x05, 0x00, 0x32, 0x00, 0x2f, 0x00,\n  0x52, 0x00, 0xf0, 0xff, 0x96, 0xff, 0xc5, 0xff, 0x0d, 0x00, 0x3e, 0x00,\n  0x49, 0x00, 0xfe, 0xff, 0xbc, 0xff, 0xe0, 0xff, 0xf5, 0xff, 0xfc, 0xff,\n  0x0b, 0x00, 0x34, 0x00, 0x3d, 0x00, 0xdd, 0xff, 0xc3, 0xff, 0xf0, 0xff,\n  0xfb, 0xff, 0xf3, 0xff, 0x1a, 0x00, 0x4f, 0x00, 0x05, 0x00, 0xbf, 0xff,\n  0xc6, 0xff, 0xf5, 0xff, 0x22, 0x00, 0x59, 0x00, 0x19, 0x00, 0xb7, 0xff,\n  0xb7, 0xff, 0xf9, 0xff, 0x25, 0x00, 0x35, 0x00, 0x41, 0x00, 0xde, 0xff,\n  0xb0, 0xff, 0xda, 0xff, 0x14, 0x00, 0x25, 0x00, 0x0a, 0x00, 0xef, 0xff,\n  0x13, 0x00, 0x4d, 0x00, 0xef, 0xff, 0xb3, 0xff, 0xe6, 0xff, 0x10, 0x00,\n  0x0e, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0x0a, 0x00, 0x25, 0x00, 0x10, 0x00,\n  0xe6, 0xff, 0xe7, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0x0a, 0x00, 0x37, 0x00,\n  0x14, 0x00, 0xda, 0xff, 0xe0, 0xff, 0xf6, 0xff, 0x02, 0x00, 0x1a, 0x00,\n  0x1c, 0x00, 0xf5, 0xff, 0xec, 0xff, 0xf3, 0xff, 0x02, 0x00, 0x02, 0x00,\n  0xfb, 0xff, 0x0b, 0x00, 0x1c, 0x00, 0xf9, 0xff, 0xe9, 0xff, 0xf9, 0xff,\n  0x04, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x0e, 0x00,\n  0x00, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0x10, 0x00, 0x14, 0x00,\n  0xf8, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0xf3, 0xff, 0xe9, 0xff, 0x01, 0x00, 0x10, 0x00, 0x1f, 0x00,\n  0x34, 0x00, 0xe3, 0xff, 0xb6, 0xff, 0xe3, 0xff, 0x14, 0x00, 0x37, 0x00,\n  0x2e, 0x00, 0xdd, 0xff, 0xcb, 0xff, 0xf2, 0xff, 0x0e, 0x00, 0x14, 0x00,\n  0x04, 0x00, 0xf8, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0x0a, 0x00,\n  0x0d, 0x00, 0x23, 0x00, 0x14, 0x00, 0xda, 0xff, 0xde, 0xff, 0xf9, 0xff,\n  0x08, 0x00, 0x10, 0x00, 0x08, 0x00, 0xf9, 0xff, 0xec, 0xff, 0xfb, 0xff,\n  0x14, 0x00, 0x0d, 0x00, 0xf8, 0xff, 0xf3, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xf8, 0xff, 0x07, 0x00, 0x20, 0x00, 0x04, 0x00, 0xe4, 0xff, 0xf9, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0x02, 0x00, 0x1d, 0x00, 0x2b, 0x00, 0xf3, 0xff,\n  0xd5, 0xff, 0xe3, 0xff, 0x02, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x29, 0x00,\n  0x14, 0x00, 0xd8, 0xff, 0xce, 0xff, 0xfb, 0xff, 0x11, 0x00, 0x22, 0x00,\n  0x20, 0x00, 0xec, 0xff, 0xdd, 0xff, 0xf8, 0xff, 0x11, 0x00, 0x08, 0x00,\n  0xfe, 0xff, 0xfb, 0xff, 0xf0, 0xff, 0xf9, 0xff, 0x08, 0x00, 0x1c, 0x00,\n  0x10, 0x00, 0xec, 0xff, 0xec, 0xff, 0x0a, 0x00, 0x0d, 0x00, 0xf9, 0xff,\n  0xf2, 0xff, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00,\n  0x11, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x01, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0xf9, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x07, 0x00,\n  0xfc, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x13, 0x00, 0x10, 0x00,\n  0xf2, 0xff, 0xf5, 0xff, 0x0d, 0x00, 0x00, 0x00, 0xf3, 0xff, 0xf2, 0xff,\n  0xfe, 0xff, 0x0e, 0x00, 0x16, 0x00, 0xfe, 0xff, 0xf2, 0xff, 0xf5, 0xff,\n  0xfc, 0xff, 0x07, 0x00, 0x17, 0x00, 0x0e, 0x00, 0xe7, 0xff, 0xe6, 0xff,\n  0xfc, 0xff, 0x11, 0x00, 0x22, 0x00, 0xfb, 0xff, 0xea, 0xff, 0xed, 0xff,\n  0xfb, 0xff, 0x07, 0x00, 0x11, 0x00, 0x1a, 0x00, 0xf3, 0xff, 0xe7, 0xff,\n  0xf8, 0xff, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0x19, 0x00, 0x01, 0x00, 0xe4, 0xff, 0xef, 0xff, 0xff, 0xff, 0x05, 0x00,\n  0x0a, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x04, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x0a, 0x00,\n  0x04, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x02, 0x00,\n  0x0d, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xff, 0xff,\n  0x04, 0x00, 0x0b, 0x00, 0x11, 0x00, 0xfc, 0xff, 0xec, 0xff, 0xf9, 0xff,\n  0xff, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x05, 0x00, 0x0e, 0x00, 0x02, 0x00,\n  0xf2, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x07, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x08, 0x00, 0x00, 0x00,\n  0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x05, 0x00, 0x0d, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0x02, 0x00, 0x08, 0x00, 0x0d, 0x00, 0xf9, 0xff, 0xf2, 0xff, 0xfc, 0xff,\n  0x05, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xfb, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x08, 0x00, 0x08, 0x00, 0xf9, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfb, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x0a, 0x00, 0x07, 0x00, 0xfb, 0xff,\n  0xf6, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x05, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xf9, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0x07, 0x00, 0x05, 0x00, 0xfc, 0xff,\n  0xf6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x01, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xf9, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xfc, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00\n};\n#define  tr808_oh_wav_len 66230\nunsigned char tr808_rs_wav[] = {\n  0x52, 0x49, 0x46, 0x46, 0x6a, 0x56, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45,\n  0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00,\n  0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e,\n  0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61,\n  0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61,\n  0x74, 0x61, 0x24, 0x56, 0x00, 0x00, 0x2e, 0x00, 0xe1, 0xff, 0x61, 0x00,\n  0x7a, 0xff, 0xb9, 0x00, 0x75, 0xfe, 0x8b, 0x07, 0x17, 0x04, 0x94, 0xfb,\n  0x98, 0xf9, 0xb1, 0xf5, 0x41, 0xf2, 0x41, 0xf5, 0x21, 0x02, 0xa1, 0x02,\n  0x77, 0x03, 0x2f, 0x03, 0xab, 0x03, 0x17, 0x04, 0xdb, 0x03, 0x43, 0x04,\n  0x8f, 0x03, 0x52, 0x04, 0xb7, 0x02, 0x67, 0x04, 0x30, 0x01, 0x87, 0x05,\n  0xaa, 0xe5, 0x86, 0xc5, 0xa6, 0xca, 0x29, 0xcb, 0xd0, 0xcf, 0x72, 0xd2,\n  0x81, 0xd6, 0x40, 0xda, 0x1d, 0xde, 0x80, 0xe2, 0x26, 0xe6, 0xd9, 0xf1,\n  0x56, 0x27, 0x41, 0x39, 0x7f, 0x37, 0x27, 0x3a, 0x10, 0x38, 0xf1, 0x38,\n  0xff, 0x35, 0x67, 0x36, 0x18, 0x32, 0xc6, 0x32, 0x77, 0x2b, 0x41, 0x2f,\n  0x96, 0xff, 0x6f, 0xcd, 0xe1, 0xd3, 0xfa, 0xd3, 0xb5, 0xd9, 0xa1, 0xdb,\n  0x94, 0xdf, 0x9d, 0xe2, 0x26, 0xe6, 0xea, 0xe9, 0x16, 0xed, 0xb4, 0xf1,\n  0xbb, 0xf3, 0x8d, 0xf8, 0xa5, 0xf9, 0xc8, 0x0f, 0xc7, 0x46, 0xd9, 0x4f,\n  0xcd, 0x4b, 0x5d, 0x49, 0xf4, 0x44, 0x53, 0x41, 0x89, 0x3c, 0x74, 0x37,\n  0x83, 0x32, 0x8f, 0x03, 0x8c, 0xc0, 0x22, 0xa4, 0x91, 0xbb, 0x8f, 0xd4,\n  0x63, 0xdc, 0x17, 0xe0, 0x1a, 0xe2, 0x34, 0xe5, 0x05, 0xe7, 0x4e, 0xea,\n  0xae, 0xec, 0xa1, 0xef, 0xd0, 0xf1, 0x6f, 0xfe, 0xea, 0x32, 0x6c, 0x44,\n  0xe7, 0x3e, 0x63, 0x3d, 0xab, 0x38, 0xc8, 0x35, 0xdb, 0x30, 0xc8, 0x2c,\n  0x8e, 0x27, 0x88, 0x22, 0xe4, 0x1c, 0xbf, 0x17, 0x1f, 0x12, 0xf2, 0x0b,\n  0xdc, 0xe0, 0x9c, 0xb6, 0x6b, 0xa3, 0xce, 0x9f, 0x78, 0xaa, 0xbb, 0xc2,\n  0x1d, 0xc6, 0x3c, 0xce, 0x6e, 0xdb, 0x7a, 0x04, 0x26, 0x1b, 0xd6, 0x18,\n  0x9f, 0x19, 0x44, 0x17, 0xa2, 0x16, 0x28, 0x14, 0x3e, 0x13, 0x24, 0x11,\n  0x6f, 0x0f, 0xef, 0x0c, 0xc7, 0x0a, 0xc7, 0x08, 0x63, 0x06, 0x9f, 0x04,\n  0xb4, 0x01, 0xca, 0xfe, 0xc9, 0xd9, 0xa3, 0xbe, 0x04, 0xbe, 0x40, 0xbf,\n  0x73, 0xc4, 0x87, 0xc8, 0xe0, 0xcd, 0x10, 0xd3, 0xe9, 0xd8, 0x5c, 0xe1,\n  0x9d, 0xee, 0xcd, 0x0b, 0x4d, 0x24, 0x15, 0x26, 0x4c, 0x27, 0xcb, 0x26,\n  0xc2, 0x26, 0xd0, 0x25, 0xdf, 0x24, 0x7e, 0x23, 0xa6, 0x21, 0x4c, 0x1d,\n  0x3f, 0xfd, 0x81, 0xe5, 0xd4, 0xe1, 0x6c, 0xe1, 0x58, 0xe4, 0x87, 0xe6,\n  0xbe, 0xe9, 0x3f, 0xec, 0x3a, 0xef, 0xc8, 0xf1, 0xca, 0xf4, 0x9c, 0xf7,\n  0x52, 0xfa, 0x05, 0xfd, 0xed, 0xff, 0x95, 0x03, 0xf6, 0x08, 0x25, 0x12,\n  0x23, 0x20, 0x08, 0x32, 0xf0, 0x3e, 0x40, 0x3f, 0x7f, 0x3c, 0x5d, 0x36,\n  0xd8, 0x23, 0x96, 0x0f, 0x6f, 0x01, 0x61, 0xf8, 0x36, 0xf3, 0xf1, 0xef,\n  0x3a, 0xee, 0xb1, 0xed, 0x96, 0xee, 0xbe, 0xef, 0x89, 0xf1, 0x22, 0xf3,\n  0x99, 0xf5, 0x45, 0xf8, 0xc1, 0xfd, 0xae, 0x06, 0x4f, 0x1b, 0x2b, 0x31,\n  0xf7, 0x31, 0xf5, 0x2e, 0x94, 0x2b, 0xd4, 0x27, 0xf7, 0x23, 0xd5, 0x1f,\n  0xb6, 0x1b, 0x58, 0x17, 0xef, 0x12, 0x57, 0x0e, 0x07, 0x0a, 0xbf, 0x05,\n  0x7c, 0x01, 0x61, 0xfd, 0x09, 0xf9, 0x7b, 0xf4, 0xa8, 0xeb, 0xc8, 0xe3,\n  0x8c, 0xe2, 0xac, 0xe6, 0x9d, 0xe9, 0xa8, 0xe8, 0xb3, 0xe7, 0x81, 0xe6,\n  0x9e, 0xe5, 0xc5, 0xe4, 0x3b, 0xe4, 0xcc, 0xe3, 0x93, 0xe3, 0x75, 0xe3,\n  0xb3, 0xe3, 0x01, 0xe4, 0x90, 0xe4, 0x1a, 0xe5, 0xfa, 0xe5, 0xb7, 0xe6,\n  0xda, 0xe7, 0x96, 0xe8, 0xde, 0xe9, 0x26, 0xe7, 0x38, 0xdb, 0x66, 0xd4,\n  0x5c, 0xd3, 0x14, 0xd5, 0xd7, 0xd8, 0xa0, 0xdd, 0x6d, 0xe3, 0xed, 0xe9,\n  0x51, 0xf1, 0x74, 0xf9, 0x6d, 0x02, 0x9f, 0x0b, 0x88, 0x14, 0xd3, 0x1b,\n  0xe9, 0x1f, 0xb7, 0x21, 0x42, 0x22, 0x8b, 0x1f, 0xcd, 0x19, 0x9f, 0x13,\n  0x30, 0x0e, 0x2a, 0x0a, 0xa3, 0x07, 0x6b, 0x06, 0x33, 0x06, 0xa4, 0x06,\n  0x76, 0x07, 0x87, 0x08, 0xaf, 0x09, 0xe7, 0x0a, 0x17, 0x0c, 0x4c, 0x0d,\n  0x7a, 0x0e, 0xbf, 0x0f, 0x2d, 0x11, 0xd0, 0x12, 0xca, 0x14, 0x1f, 0x17,\n  0xc3, 0x19, 0x7f, 0x1c, 0xff, 0x1e, 0xc0, 0x20, 0x59, 0x21, 0x79, 0x20,\n  0x1a, 0x1e, 0x74, 0x1a, 0xf9, 0x15, 0x1f, 0x11, 0x57, 0x0c, 0xee, 0x07,\n  0x18, 0x04, 0xf8, 0x00, 0xa8, 0xfe, 0x17, 0xfd, 0x59, 0xfc, 0x71, 0xfc,\n  0x97, 0xfd, 0xd2, 0xff, 0x9f, 0x03, 0xe7, 0x08, 0x2f, 0x10, 0x7a, 0x13,\n  0x45, 0x11, 0x98, 0x0e, 0x84, 0x0b, 0x7f, 0x08, 0x60, 0x05, 0x55, 0x02,\n  0x53, 0xff, 0x65, 0xfc, 0x89, 0xf9, 0xdc, 0xf6, 0x59, 0xf4, 0x01, 0xf2,\n  0xd7, 0xef, 0xdb, 0xed, 0x14, 0xec, 0x81, 0xea, 0x2a, 0xe9, 0x0d, 0xe8,\n  0x2f, 0xe7, 0x90, 0xe6, 0x2d, 0xe6, 0x06, 0xe6, 0x15, 0xe6, 0x5b, 0xe6,\n  0xca, 0xe6, 0x62, 0xe7, 0x24, 0xe8, 0x06, 0xe9, 0x0c, 0xea, 0x2e, 0xeb,\n  0x66, 0xec, 0xb5, 0xed, 0x1c, 0xef, 0x91, 0xf0, 0x0f, 0xf2, 0x96, 0xf3,\n  0x1b, 0xf5, 0x9a, 0xf6, 0x11, 0xf8, 0x75, 0xf9, 0xa0, 0xfa, 0x55, 0xfb,\n  0x40, 0xfa, 0x8a, 0xf8, 0x15, 0xf8, 0x94, 0xf8, 0xe6, 0xf9, 0xc4, 0xfb,\n  0x0d, 0xfe, 0x94, 0x00, 0x3f, 0x03, 0xeb, 0x05, 0x72, 0x08, 0xba, 0x0a,\n  0x97, 0x0c, 0xf7, 0x0d, 0xc8, 0x0e, 0x0f, 0x0f, 0xd8, 0x0e, 0x37, 0x0e,\n  0x58, 0x0d, 0x58, 0x0c, 0x55, 0x0b, 0x6e, 0x0a, 0xa7, 0x09, 0x17, 0x09,\n  0xb7, 0x08, 0x8d, 0x08, 0x8f, 0x08, 0xbe, 0x08, 0x15, 0x09, 0x95, 0x09,\n  0x34, 0x0a, 0xf7, 0x0a, 0xdc, 0x0b, 0xde, 0x0c, 0xf7, 0x0d, 0x27, 0x0f,\n  0x5f, 0x10, 0x83, 0x11, 0x8c, 0x12, 0x4f, 0x13, 0xca, 0x13, 0xd6, 0x13,\n  0x70, 0x13, 0x92, 0x12, 0x4e, 0x11, 0xaf, 0x0f, 0xd2, 0x0d, 0xd8, 0x0b,\n  0xd7, 0x09, 0xf2, 0x07, 0x43, 0x06, 0xd8, 0x04, 0xb3, 0x03, 0x9d, 0x02,\n  0x51, 0x01, 0xce, 0xff, 0x2a, 0xfe, 0x79, 0xfc, 0xcd, 0xfa, 0x2d, 0xf9,\n  0x9e, 0xf7, 0x20, 0xf6, 0xb9, 0xf4, 0x77, 0xf3, 0x4e, 0xf2, 0x42, 0xf1,\n  0x5c, 0xf0, 0x98, 0xef, 0xf7, 0xee, 0x73, 0xee, 0x1a, 0xee, 0xe2, 0xed,\n  0xcc, 0xed, 0xd6, 0xed, 0x04, 0xee, 0x51, 0xee, 0xbe, 0xee, 0x44, 0xef,\n  0xea, 0xef, 0xa4, 0xf0, 0x7b, 0xf1, 0x67, 0xf2, 0x62, 0xf3, 0x70, 0xf4,\n  0x8a, 0xf5, 0xb1, 0xf6, 0xdc, 0xf7, 0x0c, 0xf9, 0x40, 0xfa, 0x71, 0xfb,\n  0xa1, 0xfc, 0xc7, 0xfd, 0xea, 0xfe, 0xfe, 0xff, 0x09, 0x01, 0x09, 0x02,\n  0xf7, 0x02, 0xd7, 0x03, 0xa3, 0x04, 0x5f, 0x05, 0x06, 0x06, 0x93, 0x06,\n  0x13, 0x07, 0x73, 0x07, 0xc3, 0x07, 0xfc, 0x07, 0x24, 0x08, 0x3c, 0x08,\n  0x47, 0x08, 0x57, 0x08, 0x5d, 0x08, 0x67, 0x08, 0x67, 0x08, 0x5e, 0x08,\n  0x48, 0x08, 0x21, 0x08, 0xdf, 0x07, 0x86, 0x07, 0x0e, 0x07, 0x7a, 0x06,\n  0xca, 0x05, 0x03, 0x05, 0x2e, 0x04, 0x59, 0x03, 0x8d, 0x02, 0xd3, 0x01,\n  0x37, 0x01, 0xbe, 0x00, 0x65, 0x00, 0x38, 0x00, 0x35, 0x00, 0x55, 0x00,\n  0x9e, 0x00, 0x06, 0x01, 0x90, 0x01, 0x21, 0x02, 0xa5, 0x02, 0xfb, 0x02,\n  0x0f, 0x03, 0xfb, 0x02, 0xc3, 0x02, 0x77, 0x02, 0x19, 0x02, 0xb1, 0x01,\n  0x42, 0x01, 0xcd, 0x00, 0x5b, 0x00, 0xe6, 0xff, 0x74, 0xff, 0x06, 0xff,\n  0x9a, 0xfe, 0x34, 0xfe, 0xd9, 0xfd, 0x7d, 0xfd, 0x31, 0xfd, 0xe9, 0xfc,\n  0xa9, 0xfc, 0x73, 0xfc, 0x49, 0xfc, 0x1f, 0xfc, 0x07, 0xfc, 0xf1, 0xfb,\n  0xe6, 0xfb, 0xde, 0xfb, 0xe5, 0xfb, 0xf1, 0xfb, 0xfc, 0xfb, 0x15, 0xfc,\n  0x2b, 0xfc, 0x4b, 0xfc, 0x75, 0xfc, 0x99, 0xfc, 0xc9, 0xfc, 0xf9, 0xfc,\n  0x31, 0xfd, 0x69, 0xfd, 0x9f, 0xfd, 0xdf, 0xfd, 0x1e, 0xfe, 0x5d, 0xfe,\n  0x9c, 0xfe, 0xdf, 0xfe, 0x21, 0xff, 0x60, 0xff, 0x9f, 0xff, 0xe0, 0xff,\n  0x1d, 0x00, 0x56, 0x00, 0x91, 0x00, 0xc7, 0x00, 0xf8, 0x00, 0x2b, 0x01,\n  0x52, 0x01, 0x7b, 0x01, 0x9d, 0x01, 0xbd, 0x01, 0xd3, 0x01, 0xea, 0x01,\n  0xf9, 0x01, 0x03, 0x02, 0x09, 0x02, 0x09, 0x02, 0x0b, 0x02, 0x03, 0x02,\n  0xf9, 0x01, 0xed, 0x01, 0xe2, 0x01, 0xcc, 0x01, 0xb8, 0x01, 0xa8, 0x01,\n  0x93, 0x01, 0x79, 0x01, 0x66, 0x01, 0x4c, 0x01, 0x34, 0x01, 0x1b, 0x01,\n  0x07, 0x01, 0xeb, 0x00, 0xd0, 0x00, 0xb6, 0x00, 0xa0, 0x00, 0x85, 0x00,\n  0x68, 0x00, 0x50, 0x00, 0x35, 0x00, 0x1a, 0x00, 0x04, 0x00, 0xea, 0xff,\n  0xd7, 0xff, 0xc5, 0xff, 0xb4, 0xff, 0xa1, 0xff, 0x93, 0xff, 0x89, 0xff,\n  0x7e, 0xff, 0x77, 0xff, 0x6f, 0xff, 0x6e, 0xff, 0x6b, 0xff, 0x69, 0xff,\n  0x6b, 0xff, 0x6b, 0xff, 0x68, 0xff, 0x6b, 0xff, 0x68, 0xff, 0x6f, 0xff,\n  0x72, 0xff, 0x74, 0xff, 0x77, 0xff, 0x7a, 0xff, 0x7d, 0xff, 0x84, 0xff,\n  0x89, 0xff, 0x8a, 0xff, 0x93, 0xff, 0x96, 0xff, 0x9e, 0xff, 0xa5, 0xff,\n  0xad, 0xff, 0xb3, 0xff, 0xbc, 0xff, 0xc5, 0xff, 0xcb, 0xff, 0xd1, 0xff,\n  0xda, 0xff, 0xe4, 0xff, 0xec, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xfe, 0xff,\n  0x04, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1a, 0x00,\n  0x1d, 0x00, 0x1f, 0x00, 0x22, 0x00, 0x20, 0x00, 0x23, 0x00, 0x28, 0x00,\n  0x23, 0x00, 0x25, 0x00, 0x25, 0x00, 0x23, 0x00, 0x23, 0x00, 0x22, 0x00,\n  0x20, 0x00, 0x23, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x19, 0x00,\n  0x1c, 0x00, 0x17, 0x00, 0x13, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0b, 0x00,\n  0x0a, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xf6, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x0b, 0x00,\n  0x11, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x16, 0x00,\n  0x13, 0x00, 0x16, 0x00, 0x14, 0x00, 0x16, 0x00, 0x16, 0x00, 0x17, 0x00,\n  0x17, 0x00, 0x17, 0x00, 0x13, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00,\n  0x13, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x07, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff,\n  0xec, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xe3, 0xff, 0xe3, 0xff,\n  0xe3, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe0, 0xff,\n  0xe1, 0xff, 0xe1, 0xff, 0xde, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff,\n  0xe4, 0xff, 0xe3, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xea, 0xff,\n  0xea, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf5, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x07, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0d, 0x00,\n  0x0e, 0x00, 0x10, 0x00, 0x11, 0x00, 0x10, 0x00, 0x13, 0x00, 0x11, 0x00,\n  0x14, 0x00, 0x10, 0x00, 0x13, 0x00, 0x13, 0x00, 0x11, 0x00, 0x13, 0x00,\n  0x0e, 0x00, 0x10, 0x00, 0x13, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x10, 0x00,\n  0x0e, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff,\n  0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff,\n  0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xed, 0xff,\n  0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf2, 0xff,\n  0xef, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf3, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf6, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x08, 0x00, 0x01, 0x00, 0x08, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff,\n  0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfb, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0xfb, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff\n};\n#define  tr808_rs_wav_len 22130\nunsigned char tr808_sn_wav[] = {\n  0x52, 0x49, 0x46, 0x46, 0x8c, 0xac, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45,\n  0x66, 0x6d, 0x74, 0x20, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x44, 0xac, 0x00, 0x00, 0x88, 0x58, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00,\n  0x00, 0x00, 0x4c, 0x49, 0x53, 0x54, 0x18, 0x00, 0x00, 0x00, 0x49, 0x4e,\n  0x46, 0x4f, 0x49, 0x53, 0x46, 0x54, 0x0c, 0x00, 0x00, 0x00, 0x4c, 0x61,\n  0x76, 0x66, 0x35, 0x34, 0x2e, 0x32, 0x30, 0x2e, 0x34, 0x00, 0x64, 0x61,\n  0x74, 0x61, 0x46, 0xac, 0x00, 0x00, 0x08, 0x00, 0x1f, 0x00, 0x05, 0x00,\n  0x29, 0x00, 0xf6, 0xff, 0x3b, 0x00, 0xcf, 0xff, 0x89, 0x00, 0x0d, 0xfd,\n  0xee, 0xf5, 0x98, 0xf3, 0xeb, 0xf0, 0xb0, 0xee, 0x65, 0xec, 0x81, 0xea,\n  0xbb, 0xe8, 0x2d, 0xe7, 0xbb, 0xe5, 0x64, 0xe4, 0x2b, 0xe3, 0xf4, 0xe1,\n  0xc0, 0xe0, 0x92, 0xdf, 0x5d, 0xde, 0x58, 0xdd, 0x45, 0xdc, 0x25, 0xdb,\n  0x57, 0xda, 0xa1, 0xd9, 0x6a, 0xd8, 0xdd, 0xd6, 0x78, 0xd5, 0xa2, 0xd4,\n  0xee, 0xd3, 0xca, 0xd3, 0xbb, 0xd3, 0x9d, 0xd3, 0xe3, 0xd2, 0x0e, 0xd4,\n  0x98, 0xd9, 0xd4, 0xd6, 0x8a, 0xd1, 0x46, 0xcf, 0x10, 0xcf, 0x3d, 0xd0,\n  0xd2, 0xd1, 0x63, 0xd3, 0xf7, 0xd4, 0x0d, 0xd6, 0x97, 0xd7, 0x88, 0xd8,\n  0x10, 0xdc, 0x14, 0xe3, 0x72, 0xe6, 0xe4, 0xe8, 0x76, 0xeb, 0x6b, 0xee,\n  0xac, 0xf1, 0xee, 0xf4, 0x49, 0xf8, 0x3e, 0xfb, 0x63, 0xff, 0xff, 0x06,\n  0x73, 0x07, 0x42, 0x08, 0xff, 0x0c, 0x3e, 0x0c, 0x5a, 0x0b, 0x8c, 0x0d,\n  0xa3, 0x10, 0x56, 0x15, 0x8d, 0x18, 0x79, 0x1d, 0xd4, 0x1e, 0x33, 0x33,\n  0x19, 0x42, 0xd1, 0x2d, 0xaa, 0x1c, 0xb2, 0x16, 0x05, 0x1a, 0x52, 0x20,\n  0xd2, 0x27, 0xda, 0x2d, 0x5d, 0x33, 0x56, 0x37, 0x1b, 0x39, 0x6b, 0x39,\n  0x1a, 0x3c, 0x07, 0x3f, 0xa4, 0x3b, 0xdf, 0x38, 0xa5, 0x37, 0xa5, 0x37,\n  0x1c, 0x38, 0xa2, 0x38, 0x12, 0x39, 0x1e, 0x39, 0x2c, 0x39, 0xa7, 0x38,\n  0x4a, 0x38, 0x85, 0x37, 0xe8, 0x36, 0xad, 0x35, 0xda, 0x34, 0x14, 0x33,\n  0xd4, 0x34, 0x50, 0x39, 0xad, 0x30, 0x14, 0x37, 0xbc, 0x33, 0xf3, 0x24,\n  0x5f, 0x1c, 0xc4, 0x1b, 0xe4, 0x19, 0x9a, 0x29, 0x0b, 0x45, 0xb0, 0x30,\n  0x12, 0x16, 0xf4, 0x04, 0x3f, 0x02, 0x36, 0x19, 0x10, 0x1b, 0x49, 0x09,\n  0xcd, 0x02, 0xa0, 0x01, 0x07, 0x05, 0xc7, 0x07, 0x3a, 0x0a, 0x9d, 0x0a,\n  0x22, 0x0a, 0xd0, 0x07, 0x9c, 0x05, 0x3f, 0x03, 0xa1, 0x00, 0x42, 0xfe,\n  0x01, 0xfd, 0xe9, 0xf9, 0x3c, 0xf5, 0xf0, 0xf2, 0xae, 0xf0, 0xf8, 0x10,\n  0xb8, 0x0d, 0x84, 0xe6, 0xf9, 0xd2, 0x25, 0xcd, 0xf9, 0xd1, 0x6a, 0xd8,\n  0xd5, 0xde, 0x5c, 0xe4, 0x93, 0xe6, 0x44, 0xe9, 0x51, 0xea, 0x38, 0xfa,\n  0x29, 0x0e, 0xd4, 0xef, 0x96, 0xe3, 0x36, 0xe8, 0x79, 0xd9, 0x01, 0xc9,\n  0x27, 0xd6, 0xbd, 0xd7, 0x4b, 0xca, 0xa6, 0xca, 0xef, 0xd1, 0xaa, 0xda,\n  0x6a, 0xe2, 0xa4, 0xec, 0x6f, 0x08, 0x88, 0x0f, 0x5a, 0xff, 0xe5, 0xe8,\n  0xac, 0xd3, 0xe9, 0xd1, 0x80, 0xd8, 0x8a, 0xe0, 0xd0, 0xe8, 0x53, 0xef,\n  0xac, 0xf6, 0x0a, 0xfa, 0x8d, 0xfb, 0xe9, 0xfb, 0xc5, 0xfd, 0xe7, 0xfd,\n  0x57, 0x04, 0x6f, 0x09, 0xae, 0x12, 0xd3, 0x1f, 0xcb, 0x04, 0xb1, 0xed,\n  0xad, 0xe7, 0x7f, 0xec, 0x3e, 0xf6, 0x63, 0xff, 0xfe, 0x07, 0xd8, 0x0d,\n  0xba, 0x12, 0xbf, 0x14, 0x5a, 0x17, 0x81, 0x17, 0xfb, 0x18, 0xba, 0x17,\n  0x22, 0x21, 0xad, 0x42, 0x59, 0x36, 0x03, 0x14, 0x1b, 0xfe, 0xe9, 0xfc,\n  0x77, 0x00, 0x3c, 0x1d, 0xa1, 0x35, 0xc5, 0x20, 0x14, 0x11, 0xd0, 0x10,\n  0x16, 0x15, 0x49, 0x19, 0x0b, 0x20, 0x6c, 0x22, 0x80, 0x21, 0xbc, 0x2e,\n  0x19, 0x45, 0x21, 0x2e, 0x79, 0x14, 0x8e, 0x0a, 0x0c, 0x0b, 0x93, 0x10,\n  0x75, 0x16, 0x20, 0x1b, 0x85, 0x1e, 0xc8, 0x1f, 0x2d, 0x20, 0xcb, 0x1e,\n  0x04, 0x1e, 0x64, 0x1b, 0xb3, 0x1a, 0xa9, 0x16, 0x93, 0x1c, 0xb2, 0x32,\n  0xd6, 0x1c, 0x63, 0x06, 0x7d, 0xf9, 0x99, 0x0e, 0x78, 0x23, 0x6e, 0x12,\n  0xfa, 0xf9, 0xbb, 0xe5, 0x8e, 0xe5, 0x30, 0xe9, 0x2b, 0xf4, 0x1d, 0xf8,\n  0x27, 0x0b, 0x9a, 0x1f, 0xce, 0x07, 0x3a, 0xf3, 0xe1, 0xe9, 0x71, 0xe8,\n  0x2f, 0xeb, 0x21, 0xed, 0x49, 0xf1, 0xbe, 0xee, 0xde, 0x06, 0x30, 0x11,\n  0xee, 0xee, 0xbd, 0xd8, 0xf3, 0xe2, 0x67, 0xde, 0x9d, 0xcd, 0x64, 0xcc,\n  0x77, 0xcd, 0x61, 0xd6, 0xa8, 0xda, 0xd3, 0xf3, 0x83, 0xff, 0xeb, 0xe3,\n  0x02, 0xce, 0xb2, 0xc4, 0x78, 0xc6, 0x37, 0xcb, 0x21, 0xd1, 0x74, 0xd5,\n  0x8c, 0xd8, 0xd0, 0xd9, 0x44, 0xda, 0x1c, 0xda, 0x19, 0xda, 0xa1, 0xdc,\n  0xe4, 0xda, 0xeb, 0xd6, 0xc1, 0xd4, 0xab, 0xd3, 0xbb, 0xd3, 0x9c, 0xd4,\n  0xaa, 0xd7, 0x82, 0xd9, 0x24, 0xd7, 0xcc, 0xd7, 0x82, 0xd6, 0xeb, 0xd9,\n  0xfd, 0xd6, 0x72, 0xf1, 0x9c, 0x01, 0xd8, 0xe3, 0x68, 0xcf, 0x17, 0xc7,\n  0xff, 0xc9, 0xc2, 0xd2, 0x05, 0xda, 0xc1, 0xf7, 0xe5, 0x0a, 0x5c, 0xf0,\n  0x29, 0xde, 0x7b, 0xd8, 0xa8, 0xdc, 0x3e, 0xe4, 0xf6, 0xeb, 0x8c, 0xf2,\n  0x5b, 0xf7, 0x39, 0xfb, 0x07, 0xfd, 0x89, 0xff, 0x14, 0x00, 0x4c, 0x08,\n  0xef, 0x0d, 0x54, 0x04, 0x29, 0x00, 0x5b, 0xfd, 0x4e, 0x01, 0xc5, 0x00,\n  0x20, 0x1e, 0x22, 0x2e, 0x11, 0x0e, 0x9a, 0xfa, 0x19, 0xf4, 0x0c, 0xfb,\n  0x53, 0x07, 0x61, 0x0d, 0x0f, 0x10, 0xd9, 0x13, 0x7c, 0x16, 0xb2, 0x19,\n  0xf4, 0x1b, 0x1e, 0x1e, 0x01, 0x1f, 0x59, 0x21, 0x5b, 0x20, 0xf8, 0x1f,\n  0xbd, 0x1d, 0xbc, 0x24, 0xc8, 0x45, 0x5f, 0x3f, 0xc2, 0x27, 0x86, 0x18,\n  0x17, 0x0a, 0xed, 0xfe, 0xc5, 0xfc, 0x0c, 0x05, 0x80, 0x0f, 0xe9, 0x19,\n  0x02, 0x21, 0x12, 0x26, 0x7f, 0x28, 0x39, 0x29, 0x9d, 0x28, 0x59, 0x27,\n  0x97, 0x25, 0xab, 0x23, 0xbf, 0x21, 0xec, 0x1f, 0x43, 0x1e, 0xc8, 0x1c,\n  0x70, 0x1b, 0x3a, 0x1a, 0x10, 0x19, 0x08, 0x18, 0xf3, 0x16, 0x0e, 0x16,\n  0xae, 0x14, 0xf0, 0x13, 0xe6, 0x12, 0x3e, 0x12, 0xee, 0x10, 0x1d, 0x10,\n  0xba, 0x0e, 0xaf, 0x0d, 0xf4, 0x0b, 0xaa, 0x0e, 0x7f, 0x29, 0xb0, 0x1e,\n  0xd6, 0x01, 0x5b, 0xf3, 0x39, 0xf0, 0xc9, 0xf2, 0x8d, 0xfc, 0xe0, 0x1d,\n  0x1b, 0x21, 0xed, 0x08, 0x18, 0xee, 0xa1, 0xe2, 0x36, 0xe5, 0x1c, 0xeb,\n  0x84, 0xf4, 0x6e, 0xf8, 0xf7, 0x0e, 0x4d, 0x15, 0xc8, 0xff, 0x2f, 0xf4,\n  0x83, 0xef, 0x9f, 0xf0, 0x4e, 0xf3, 0x97, 0xf7, 0x2e, 0x00, 0x11, 0x0b,\n  0xdb, 0xff, 0xee, 0xf2, 0x42, 0xec, 0x9b, 0xe7, 0xd1, 0xe8, 0x87, 0xec,\n  0xbc, 0xf0, 0xec, 0xf5, 0xf5, 0xfc, 0x32, 0x00, 0xf5, 0xfb, 0x11, 0xf1,\n  0x40, 0xf1, 0xcd, 0x0b, 0x9a, 0x05, 0x33, 0xeb, 0x57, 0xe2, 0x43, 0xdf,\n  0x50, 0xeb, 0xf7, 0x07, 0x03, 0x02, 0xc1, 0xf7, 0x78, 0x01, 0x22, 0x00,\n  0xf8, 0xf9, 0x5b, 0xe9, 0x71, 0xed, 0x32, 0xfb, 0x93, 0xf1, 0x1c, 0xec,\n  0x2b, 0xee, 0x99, 0xf5, 0x49, 0xfd, 0xcb, 0x03, 0x34, 0x07, 0x11, 0x08,\n  0x87, 0x08, 0xe7, 0x08, 0x10, 0x09, 0xc7, 0x08, 0x81, 0x08, 0xac, 0x08,\n  0xbe, 0x08, 0x10, 0x09, 0xd2, 0x08, 0x58, 0x09, 0x2f, 0x09, 0xec, 0x0c,\n  0xc6, 0x0f, 0x12, 0x20, 0x29, 0x2a, 0xf3, 0x10, 0xe8, 0xf7, 0x5c, 0xee,\n  0x6b, 0xf2, 0xe4, 0xf9, 0xd9, 0x01, 0xde, 0x08, 0x87, 0x0e, 0xf3, 0x11,\n  0x8e, 0x13, 0x72, 0x14, 0x35, 0x14, 0xef, 0x13, 0x2a, 0x15, 0xc7, 0x2e,\n  0xdd, 0x31, 0x1d, 0x1e, 0x96, 0x09, 0x48, 0xf3, 0x3c, 0xec, 0x90, 0xf0,\n  0x1d, 0xf9, 0x5f, 0x03, 0x87, 0x08, 0x21, 0x1f, 0xe5, 0x31, 0x11, 0x1e,\n  0xba, 0x05, 0xc2, 0xf8, 0xf1, 0xf7, 0xa0, 0xfb, 0x15, 0x01, 0x72, 0x05,\n  0x87, 0x08, 0xdf, 0x09, 0xfe, 0x09, 0x98, 0x09, 0xb1, 0x08, 0x37, 0x07,\n  0x00, 0x05, 0x91, 0x03, 0x90, 0x01, 0xa1, 0x00, 0x94, 0xfe, 0x1e, 0xfe,\n  0xb6, 0xfb, 0x13, 0xfc, 0x4c, 0xf8, 0xe1, 0x01, 0x5c, 0x15, 0xb0, 0x05,\n  0x34, 0xf7, 0xbd, 0xe6, 0x29, 0xdd, 0x47, 0xde, 0x04, 0xe2, 0xad, 0xeb,\n  0x77, 0x09, 0x8b, 0x04, 0x6b, 0xeb, 0x91, 0xe0, 0xcf, 0xdd, 0x82, 0xe1,\n  0xf3, 0xe5, 0x5c, 0xea, 0x55, 0xed, 0x8e, 0xee, 0x31, 0xef, 0x34, 0xee,\n  0x87, 0xee, 0x7f, 0xeb, 0x9b, 0xf3, 0x07, 0x0d, 0xc2, 0xfb, 0x06, 0xe2,\n  0x01, 0xd5, 0xb2, 0xce, 0xa4, 0xd1, 0xf0, 0xd6, 0x0a, 0xde, 0x47, 0xe3,\n  0x97, 0xe7, 0xbd, 0xe9, 0x4a, 0xeb, 0xbf, 0xeb, 0x3d, 0xeb, 0x3b, 0xeb,\n  0x0a, 0xec, 0x69, 0x01, 0xa1, 0xf9, 0x3b, 0xf5, 0x22, 0xee, 0x0f, 0xd7,\n  0x46, 0xd0, 0x46, 0xd2, 0xa3, 0xd9, 0x40, 0xe2, 0x71, 0xe7, 0xdc, 0xf4,\n  0x2c, 0x0f, 0xbb, 0x03, 0x27, 0xfd, 0x6b, 0xf3, 0x31, 0xe1, 0xf2, 0xd8,\n  0xdc, 0xda, 0xc1, 0xe2, 0x78, 0xeb, 0xb8, 0xf2, 0xa5, 0xf8, 0x81, 0xfb,\n  0x44, 0xff, 0xe7, 0xfd, 0x1c, 0x13, 0x1f, 0x1a, 0xf0, 0xff, 0x02, 0xf2,\n  0x28, 0xed, 0x59, 0xf0, 0x5f, 0xf6, 0x1d, 0xff, 0x45, 0x01, 0x2b, 0x02,\n  0x39, 0x03, 0xb8, 0x04, 0x7a, 0x06, 0xd8, 0x07, 0xfc, 0x08, 0xc5, 0x09,\n  0x72, 0x0a, 0xea, 0x0a, 0x71, 0x0b, 0xb0, 0x0b, 0x3c, 0x0c, 0xd7, 0x0c,\n  0x79, 0x0d, 0xf0, 0x0d, 0x64, 0x0e, 0xe4, 0x0e, 0x38, 0x0f, 0xbf, 0x0f,\n  0xe4, 0x14, 0xe2, 0x2d, 0xc7, 0x28, 0x54, 0x0b, 0x1f, 0xfd, 0x16, 0xfa,\n  0x68, 0xff, 0xbe, 0x05, 0xb4, 0x0c, 0x74, 0x11, 0x2d, 0x15, 0xaf, 0x16,\n  0x0c, 0x18, 0x1d, 0x18, 0x3c, 0x18, 0xcf, 0x16, 0xe2, 0x18, 0xdf, 0x1d,\n  0xd5, 0x17, 0xbb, 0x11, 0xd6, 0x0e, 0x36, 0x0e, 0xc7, 0x0e, 0xa1, 0x0f,\n  0x76, 0x10, 0xfb, 0x10, 0x44, 0x11, 0x2d, 0x11, 0x02, 0x11, 0xa5, 0x10,\n  0x2e, 0x10, 0x97, 0x0f, 0x14, 0x0f, 0x90, 0x0e, 0x2a, 0x0e, 0x1d, 0x0d,\n  0xa7, 0x0c, 0x7e, 0x0b, 0x69, 0x0b, 0x0f, 0x0a, 0x90, 0x0a, 0x92, 0x08,\n  0x14, 0x0a, 0x12, 0x06, 0x6d, 0x16, 0x9c, 0x26, 0xb1, 0x0a, 0xdb, 0xfe,\n  0x5b, 0xf7, 0xfe, 0xf1, 0x32, 0xf3, 0x85, 0xf8, 0xf3, 0xfd, 0xf6, 0x01,\n  0x09, 0x1e, 0x48, 0x1e, 0x2d, 0x02, 0xb9, 0xf1, 0x78, 0xec, 0x6b, 0xf0,\n  0x91, 0xf5, 0x99, 0xfb, 0x38, 0xff, 0x01, 0x02, 0xd5, 0x02, 0x0d, 0x08,\n  0xdf, 0x1f, 0xa6, 0x1b, 0x12, 0x0b, 0xf2, 0xf6, 0xf4, 0xe4, 0x47, 0xe0,\n  0x3f, 0xef, 0xbd, 0xfb, 0x81, 0xf6, 0xd1, 0xf2, 0xc6, 0xff, 0x30, 0x0b,\n  0xf5, 0xfd, 0xe1, 0xf6, 0x99, 0xf9, 0xe8, 0xfb, 0xc8, 0xff, 0xe3, 0x05,\n  0x05, 0xfa, 0x36, 0x01, 0xba, 0x0d, 0xbe, 0x07, 0x5b, 0x01, 0xf1, 0xfb,\n  0x1e, 0xf5, 0x9d, 0xe9, 0x62, 0xf6, 0x95, 0xfc, 0xd0, 0xf4, 0x10, 0xf2,\n  0x59, 0xf6, 0xdc, 0xfb, 0xfd, 0x0b, 0xad, 0x10, 0x40, 0x04, 0x96, 0xff,\n  0x8f, 0xfc, 0x02, 0xff, 0xeb, 0x00, 0x56, 0x14, 0xf6, 0x14, 0xdc, 0x01,\n  0x22, 0xf7, 0x50, 0xf6, 0x24, 0x0c, 0xe9, 0x0f, 0x98, 0x00, 0x9e, 0xf6,\n  0xb6, 0xf4, 0xda, 0xf8, 0xb3, 0xfd, 0xbf, 0x06, 0x76, 0x0b, 0x1a, 0x09,\n  0x6a, 0x07, 0xb7, 0x06, 0x1f, 0x07, 0x77, 0x07, 0x07, 0x08, 0xf7, 0x08,\n  0xa8, 0x08, 0x90, 0x07, 0xda, 0x06, 0x66, 0x06, 0x2c, 0x06, 0x02, 0x06,\n  0xe3, 0x05, 0xc3, 0x05, 0x9f, 0x05, 0x73, 0x05, 0x46, 0x05, 0x0a, 0x05,\n  0xb2, 0x04, 0xcc, 0x04, 0x6c, 0x04, 0x60, 0x04, 0xa3, 0x03, 0xf1, 0x03,\n  0xc3, 0x02, 0x91, 0x03, 0x78, 0x01, 0xa5, 0x0e, 0x75, 0x14, 0xa9, 0x0a,\n  0x47, 0x0d, 0x7b, 0x04, 0x68, 0xf3, 0x5e, 0xe6, 0x7a, 0xe5, 0x23, 0xec,\n  0x80, 0xf6, 0x9a, 0xfa, 0xed, 0xfc, 0x87, 0xfe, 0x1a, 0x00, 0x6d, 0x00,\n  0x39, 0x01, 0x01, 0x00, 0xfc, 0xff, 0x83, 0xfd, 0x69, 0xfe, 0x7c, 0xfa,\n  0xdf, 0x02, 0x29, 0x13, 0x6e, 0x07, 0x17, 0xff, 0x28, 0xea, 0x0e, 0xe5,\n  0x7a, 0xe8, 0x3a, 0xe6, 0x80, 0xe4, 0xa2, 0xec, 0x39, 0xff, 0x34, 0x04,\n  0xf5, 0xfb, 0x7c, 0xf0, 0x4d, 0xe7, 0x56, 0xe3, 0xc1, 0xe5, 0xb6, 0xea,\n  0x33, 0xef, 0x5b, 0xf3, 0xbf, 0xf4, 0xd8, 0xf6, 0xea, 0xf5, 0xf3, 0x03,\n  0x4d, 0x0f, 0xe6, 0xfb, 0xcf, 0xea, 0x9a, 0xdf, 0xa9, 0xde, 0xc2, 0xe1,\n  0x8f, 0xe7, 0xa8, 0xeb, 0x9c, 0xf1, 0x79, 0xf7, 0xae, 0xf6, 0x88, 0xf1,\n  0x2b, 0xfc, 0x8c, 0x0a, 0x0c, 0xf9, 0x38, 0xe7, 0x54, 0xe0, 0xd1, 0xe1,\n  0x7f, 0xe6, 0xda, 0xeb, 0x89, 0xf0, 0xd9, 0xf3, 0x31, 0xf6, 0xa7, 0xf7,\n  0xa8, 0x0b, 0x78, 0x0e, 0x49, 0xfd, 0x4d, 0xed, 0xae, 0xe4, 0xa5, 0xe5,\n  0xc6, 0xe9, 0xea, 0xef, 0x98, 0xf4, 0xad, 0xf8, 0x3c, 0xfb, 0x27, 0xfd,\n  0x4b, 0xfe, 0xc9, 0xfe, 0xd5, 0xff, 0xf8, 0xff, 0xbf, 0xff, 0x73, 0xfe,\n  0xc8, 0x10, 0x1a, 0x19, 0x8e, 0x05, 0xd7, 0xf1, 0x7f, 0xe9, 0x1b, 0xed,\n  0x12, 0xf5, 0x5d, 0xf9, 0x43, 0xfd, 0x8b, 0x00, 0x2b, 0x04, 0x82, 0x05,\n  0x01, 0x0c, 0x3c, 0x21, 0x43, 0x16, 0x5b, 0x02, 0x15, 0xfa, 0x6d, 0xfa,\n  0x19, 0x0f, 0x13, 0x15, 0x67, 0x06, 0x61, 0xfb, 0xe6, 0xf8, 0xa5, 0xfc,\n  0xcd, 0x01, 0x90, 0x07, 0x0c, 0x0b, 0x2d, 0x0e, 0xb9, 0x0e, 0x51, 0x10,\n  0xe7, 0x0e, 0xf2, 0x14, 0x4a, 0x29, 0xef, 0x1e, 0x78, 0x11, 0xbf, 0x05,\n  0xa5, 0xfe, 0xef, 0x03, 0x7f, 0x03, 0x4d, 0xfd, 0xe9, 0xfc, 0xf2, 0x00,\n  0x1c, 0x06, 0x27, 0x0b, 0xa2, 0x0e, 0xec, 0x10, 0xe3, 0x11, 0x11, 0x12,\n  0x5c, 0x12, 0x69, 0x11, 0xa7, 0x0f, 0x45, 0x0e, 0x1c, 0x0d, 0x71, 0x0c,\n  0x85, 0x0b, 0x6f, 0x0b, 0xc9, 0x0a, 0x17, 0x0b, 0x2f, 0x0a, 0xba, 0x0a,\n  0x52, 0x09, 0x6e, 0x0a, 0xc4, 0x07, 0x3e, 0x0f, 0x1a, 0x22, 0x31, 0x19,\n  0xb8, 0x10, 0x3b, 0x06, 0x21, 0xfe, 0x40, 0xfa, 0xf4, 0xf6, 0x43, 0xf1,\n  0xc8, 0xf0, 0x3a, 0xf6, 0xdd, 0xfc, 0x57, 0x03, 0xc2, 0x07, 0x97, 0x0a,\n  0xb0, 0x0b, 0xbd, 0x0b, 0xff, 0x0a, 0xef, 0x09, 0x9d, 0x08, 0x4a, 0x07,\n  0x04, 0x06, 0xeb, 0x04, 0xf5, 0x03, 0x2d, 0x03, 0x89, 0x02, 0x03, 0x02,\n  0x94, 0x01, 0x43, 0x01, 0xf7, 0x00, 0xc2, 0x00, 0x4d, 0x00, 0x97, 0x00,\n  0x83, 0x00, 0xad, 0x00, 0xe9, 0xff, 0x4d, 0x00, 0x3b, 0xff, 0x67, 0x00,\n  0x06, 0xfe, 0xaf, 0x0a, 0xc0, 0x1c, 0xee, 0x0a, 0x2e, 0xf5, 0xf7, 0xeb,\n  0x48, 0xec, 0x68, 0xf0, 0xea, 0xf5, 0x06, 0xfb, 0xfd, 0xfe, 0x2e, 0x01,\n  0xd1, 0x02, 0x1f, 0x04, 0xa6, 0x08, 0xbb, 0x04, 0xf8, 0x12, 0xc5, 0x11,\n  0xbd, 0xfd, 0x5f, 0xf3, 0x46, 0xf5, 0xa0, 0x09, 0x7f, 0x03, 0x30, 0xf6,\n  0x21, 0xf5, 0xfa, 0x04, 0x93, 0x03, 0x7e, 0xf8, 0x7b, 0xf5, 0x96, 0xf6,\n  0x05, 0xfb, 0xb5, 0xfe, 0x49, 0x02, 0x52, 0x04, 0x0b, 0x06, 0xcb, 0x06,\n  0x9b, 0x06, 0xee, 0x05, 0x4b, 0x05, 0xc3, 0x03, 0x7b, 0x03, 0xe3, 0x02,\n  0x90, 0x14, 0x65, 0x1a, 0x18, 0x0a, 0xcd, 0xf8, 0x9d, 0xec, 0xc7, 0xed,\n  0x62, 0xf0, 0x03, 0x03, 0xb4, 0x0c, 0xcf, 0x02, 0x0c, 0xfe, 0x77, 0x02,\n  0x27, 0x04, 0xe9, 0x08, 0xad, 0x09, 0xbb, 0xfc, 0x71, 0xfa, 0xb0, 0xfa,\n  0x80, 0xf6, 0xe2, 0xf6, 0xe6, 0xf8, 0x97, 0xfd, 0x68, 0xff, 0x35, 0x09,\n  0x23, 0x1a, 0x31, 0x13, 0xdc, 0x08, 0x7b, 0xfe, 0xda, 0xf5, 0x54, 0xf8,\n  0x99, 0xf9, 0xde, 0xf6, 0x9e, 0xf8, 0xcb, 0xf6, 0xf2, 0xf2, 0x39, 0xf5,\n  0xc4, 0xf7, 0xd7, 0xfc, 0x97, 0xfd, 0x02, 0x08, 0x18, 0x15, 0xcf, 0x07,\n  0xcc, 0xf8, 0x20, 0xf3, 0x42, 0xf2, 0x99, 0x02, 0x48, 0x04, 0xe1, 0xfb,\n  0x03, 0xfc, 0xe2, 0xf1, 0x18, 0xee, 0x81, 0xef, 0xd9, 0xf9, 0x79, 0xfe,\n  0xd5, 0xfa, 0x69, 0xf5, 0xe3, 0xf2, 0x81, 0xf2, 0x2c, 0xf5, 0x99, 0xf5,\n  0x81, 0x03, 0x20, 0x0c, 0x8e, 0x00, 0x1d, 0xf8, 0x2c, 0xed, 0x74, 0xe9,\n  0x71, 0xea, 0x20, 0xee, 0xc1, 0xf1, 0x03, 0xf5, 0x0c, 0xf7, 0x66, 0xf8,\n  0xf5, 0xf8, 0x15, 0xf9, 0xdd, 0xf8, 0xf5, 0xf9, 0xb6, 0xfb, 0x39, 0xf8,\n  0x78, 0xf6, 0x20, 0xf4, 0x1e, 0xf5, 0x29, 0xf3, 0x37, 0xfe, 0x4a, 0x06,\n  0xd3, 0xfc, 0x49, 0xfe, 0xd1, 0xf1, 0xe3, 0xea, 0x0c, 0xe7, 0x75, 0xec,\n  0xfc, 0xf5, 0xcb, 0xf2, 0x4c, 0xf0, 0xfc, 0xef, 0x36, 0xf3, 0x30, 0xf6,\n  0x84, 0xf9, 0x48, 0xfb, 0xe9, 0xfc, 0x09, 0xfd, 0xb9, 0xfd, 0x57, 0xfd,\n  0xb3, 0x03, 0x01, 0x12, 0xc6, 0x09, 0x5a, 0xf7, 0xfd, 0xec, 0x61, 0xeb,\n  0xcb, 0xee, 0x9f, 0xf3, 0x66, 0xf8, 0x11, 0xfc, 0xb8, 0xfe, 0x3e, 0x00,\n  0x58, 0x01, 0xd9, 0x01, 0x03, 0x02, 0xf0, 0x01, 0xd5, 0x01, 0xa9, 0x01,\n  0x9f, 0x01, 0x6c, 0x01, 0xa0, 0x01, 0xae, 0x01, 0x15, 0x02, 0x1b, 0x02,\n  0x93, 0x02, 0x91, 0x02, 0x23, 0x03, 0xb1, 0x02, 0x9a, 0x05, 0xfd, 0x11,\n  0x59, 0x0c, 0xc4, 0x00, 0xcf, 0xfc, 0x81, 0xfb, 0xcc, 0xfe, 0x9e, 0xff,\n  0xfa, 0x0f, 0xa8, 0x1b, 0xb7, 0x0d, 0x0e, 0xff, 0xd1, 0xf7, 0xcc, 0xf8,\n  0x91, 0xfc, 0x79, 0x01, 0x76, 0x05, 0x94, 0x08, 0x57, 0x0a, 0x5f, 0x0b,\n  0xcd, 0x0b, 0x8f, 0x0c, 0x24, 0x0c, 0x3f, 0x0b, 0x97, 0x0a, 0x27, 0x0a,\n  0x71, 0x09, 0x0f, 0x09, 0xbf, 0x08, 0x5f, 0x0c, 0x2f, 0x1c, 0x79, 0x1c,\n  0x55, 0x0e, 0x0c, 0xff, 0xd7, 0xf4, 0x63, 0xf4, 0x69, 0xf8, 0x88, 0xfe,\n  0xa7, 0x03, 0x00, 0x08, 0x97, 0x0a, 0xe0, 0x0c, 0x28, 0x0c, 0xb4, 0x17,\n  0x7e, 0x17, 0x44, 0x09, 0x51, 0x02, 0xab, 0xff, 0x09, 0x01, 0x91, 0x02,\n  0x73, 0x04, 0x0b, 0x06, 0x27, 0x07, 0xdf, 0x07, 0x0f, 0x08, 0x27, 0x08,\n  0xb3, 0x07, 0x67, 0x07, 0xb3, 0x06, 0x36, 0x08, 0x69, 0x18, 0xbd, 0x0f,\n  0xc7, 0x07, 0x78, 0x04, 0x6c, 0xf8, 0x9f, 0xf5, 0xcb, 0xf6, 0x1a, 0xfb,\n  0x33, 0x01, 0xb9, 0x03, 0x47, 0x04, 0x2f, 0x05, 0xfb, 0x12, 0xaa, 0x10,\n  0xd2, 0x01, 0x41, 0xfb, 0xa4, 0xfa, 0xf7, 0xfc, 0x6a, 0x01, 0x8f, 0x11,\n  0x20, 0x11, 0x3c, 0x04, 0xa9, 0xf7, 0x14, 0xf3, 0x21, 0xf5, 0x0e, 0xf9,\n  0xbd, 0xfd, 0xcd, 0x00, 0x9b, 0x03, 0x40, 0x04, 0x77, 0x05, 0x4f, 0x04,\n  0x27, 0x08, 0x43, 0x16, 0x1c, 0x0b, 0xb2, 0xfe, 0x12, 0xfb, 0x41, 0xf8,\n  0x84, 0xf7, 0xfd, 0xf9, 0x1d, 0xfb, 0xe0, 0x05, 0x6a, 0x14, 0x06, 0x0c,\n  0x23, 0xfd, 0x08, 0xf4, 0x62, 0xf3, 0x4c, 0xf6, 0x18, 0x08, 0xe1, 0x0d,\n  0xfe, 0x06, 0xa4, 0x00, 0xed, 0xf8, 0x5e, 0xf4, 0x6c, 0xf5, 0x99, 0xf7,\n  0x00, 0x04, 0x9d, 0x0d, 0xcf, 0x03, 0x8b, 0xfd, 0x29, 0xfb, 0x49, 0xfc,\n  0x39, 0xfe, 0x10, 0x00, 0xd2, 0x01, 0x29, 0x02, 0x33, 0x03, 0x27, 0x02,\n  0x0c, 0x0e, 0x0f, 0x16, 0x8f, 0x0b, 0xea, 0x01, 0x7e, 0xfb, 0xb8, 0xf4,\n  0xce, 0xf1, 0x1e, 0xfa, 0x3a, 0xfa, 0x67, 0xf5, 0x03, 0xf5, 0xaf, 0xf7,\n  0xba, 0xfb, 0x2f, 0xff, 0xc6, 0x01, 0x37, 0x03, 0xdb, 0x03, 0xb3, 0x03,\n  0x3f, 0x03, 0x99, 0x02, 0xd2, 0x01, 0x0c, 0x01, 0x50, 0x00, 0xad, 0xff,\n  0x21, 0xff, 0xae, 0xfe, 0x4e, 0xfe, 0xfd, 0xfd, 0xbb, 0xfd, 0x85, 0xfd,\n  0x53, 0xfd, 0x2b, 0xfd, 0x05, 0xfd, 0xdf, 0xfc, 0xbd, 0xfc, 0x97, 0xfc,\n  0x77, 0xfc, 0x55, 0xfc, 0x39, 0xfc, 0x11, 0xfc, 0xf6, 0xfb, 0xfd, 0xfb,\n  0xda, 0xfb, 0x99, 0xfb, 0x54, 0xfb, 0x25, 0xfb, 0x09, 0xfb, 0x0e, 0xfb,\n  0x2d, 0xfb, 0x1d, 0xfb, 0x9d, 0xfa, 0x2c, 0xfa, 0xbc, 0xf9, 0xb6, 0xf9,\n  0xb0, 0xf9, 0xe4, 0xf9, 0xbd, 0xf9, 0xf1, 0xf9, 0x9a, 0xf9, 0xdd, 0xf9,\n  0xac, 0xfa, 0x90, 0xff, 0x65, 0x0d, 0xed, 0x08, 0xe3, 0xf5, 0xbc, 0xee,\n  0xee, 0xf1, 0x22, 0xed, 0xa1, 0xf3, 0x6c, 0xf8, 0x58, 0xf1, 0x9a, 0xee,\n  0x48, 0xef, 0x41, 0xf3, 0x59, 0xf8, 0x59, 0xfd, 0x57, 0x07, 0xaa, 0x09,\n  0xf7, 0x02, 0xd9, 0xf8, 0xf1, 0xee, 0x0c, 0xed, 0x01, 0xef, 0xfb, 0xf2,\n  0xbb, 0xf6, 0xe9, 0xf9, 0xea, 0xfb, 0x23, 0xfd, 0x85, 0xfd, 0xdf, 0xfd,\n  0x91, 0xfd, 0x87, 0xfd, 0xad, 0xfc, 0xbf, 0xfc, 0x9c, 0xfb, 0x6b, 0xfc,\n  0x4e, 0xfa, 0xb2, 0x04, 0x2f, 0x0f, 0x62, 0x00, 0xec, 0xf3, 0x8e, 0xee,\n  0x77, 0xef, 0x96, 0xf2, 0x8f, 0xf6, 0xe4, 0xf9, 0xb3, 0xfc, 0xb1, 0xfe,\n  0x57, 0xff, 0x13, 0x00, 0xf0, 0xff, 0x70, 0x00, 0xb0, 0xff, 0x97, 0x00,\n  0xd3, 0xfe, 0x5a, 0x0a, 0xf8, 0x0e, 0x16, 0x00, 0xd1, 0xf8, 0xea, 0xf5,\n  0x3c, 0xf7, 0x89, 0xf9, 0x91, 0xfc, 0x14, 0xff, 0xfb, 0x00, 0x6b, 0x02,\n  0x11, 0x03, 0xb9, 0x09, 0x37, 0x0a, 0xf1, 0x03, 0x53, 0x00, 0xb0, 0xff,\n  0x36, 0xff, 0x13, 0x01, 0x67, 0x00, 0x97, 0x0d, 0x11, 0x15, 0x16, 0x0b,\n  0x5a, 0x08, 0xb7, 0xfe, 0xd0, 0xf7, 0x3c, 0xf5, 0x8e, 0xf7, 0xa0, 0x06,\n  0xd1, 0x0c, 0xc3, 0x02, 0x09, 0x01, 0xf0, 0x07, 0xce, 0x0a, 0x37, 0x0c,\n  0x96, 0x05, 0xd3, 0xfd, 0x85, 0xfd, 0x75, 0x02, 0x76, 0x04, 0x80, 0x0e,\n  0xd8, 0x0e, 0xbf, 0x0c, 0xf7, 0x09, 0xe5, 0x00, 0xdd, 0xfc, 0x21, 0xfd,\n  0x17, 0x00, 0x7d, 0x03, 0x8b, 0x06, 0x0a, 0x09, 0xf6, 0x08, 0xf4, 0x0d,\n  0x3a, 0x17, 0x3e, 0x0f, 0x73, 0x04, 0xb6, 0xff, 0xf0, 0x01, 0xff, 0x02,\n  0xf3, 0x02, 0x96, 0x0c, 0x3f, 0x0f, 0x42, 0x0a, 0xc0, 0x04, 0x53, 0xfd,\n  0x1c, 0xfb, 0x51, 0xfc, 0xa5, 0xff, 0x27, 0x02, 0x1f, 0x06, 0x16, 0x0d,\n  0x4f, 0x0d, 0x6a, 0x11, 0x18, 0x0b, 0xcd, 0x00, 0x5f, 0xfd, 0xcd, 0xfc,\n  0xd9, 0xfe, 0x5b, 0x04, 0xc0, 0x05, 0xd3, 0x04, 0xc7, 0x03, 0x7e, 0x06,\n  0x9a, 0x11, 0xf8, 0x0f, 0x0e, 0x09, 0x59, 0x03, 0x2b, 0xfc, 0x32, 0xf8,\n  0x52, 0xf7, 0x11, 0xf9, 0x71, 0xfc, 0x05, 0x00, 0x87, 0x02, 0xa3, 0x04,\n  0x7b, 0x05, 0xdc, 0x06, 0x5c, 0x0d, 0x94, 0x0a, 0x3d, 0x03, 0x88, 0x00,\n  0x84, 0xfe, 0x99, 0x02, 0x27, 0x0e, 0x92, 0x08, 0xbb, 0xfd, 0xb8, 0xf8,\n  0x10, 0xf8, 0x65, 0xfa, 0xdd, 0xfc, 0x63, 0xff, 0x2b, 0x01, 0x57, 0x02,\n  0xe3, 0x02, 0xe9, 0x02, 0xa3, 0x04, 0x76, 0x04, 0x38, 0x0b, 0x0a, 0x0f,\n  0x3a, 0x09, 0xba, 0xff, 0xaa, 0xf5, 0x38, 0xf3, 0x69, 0xfd, 0x45, 0x01,\n  0x79, 0xfa, 0x21, 0xf8, 0x95, 0xf8, 0xb6, 0xfb, 0x45, 0xff, 0x58, 0x01,\n  0x03, 0x02, 0x59, 0x02, 0x57, 0x02, 0x5b, 0x04, 0x20, 0x0c, 0x3c, 0x0e,\n  0xbf, 0x05, 0x52, 0xfa, 0x75, 0xfc, 0x5b, 0x00, 0x2e, 0xf9, 0xfe, 0xf4,\n  0xf1, 0xf4, 0xe6, 0xf7, 0x0e, 0xfb, 0x18, 0xfe, 0x20, 0x00, 0x9c, 0x01,\n  0x0b, 0x02, 0x8f, 0x02, 0xcd, 0x02, 0x0d, 0x02, 0xbb, 0x00, 0x14, 0x00,\n  0x32, 0xff, 0xf5, 0x00, 0xb5, 0x03, 0xcc, 0xff, 0x55, 0xfd, 0xc1, 0xfb,\n  0x0d, 0xfc, 0xc4, 0xfa, 0x78, 0x04, 0x44, 0x09, 0xef, 0xfd, 0x7c, 0xf7,\n  0xd7, 0xfd, 0x5e, 0xfe, 0x78, 0xf6, 0x68, 0xf6, 0x96, 0xf6, 0x9f, 0x01,\n  0xb8, 0x06, 0x7b, 0x02, 0x46, 0xfe, 0xea, 0xf7, 0x9f, 0xf5, 0xf9, 0xf8,\n  0x6f, 0xfd, 0xed, 0xf8, 0x20, 0xf6, 0xcb, 0xf6, 0xc2, 0xf8, 0x05, 0xfb,\n  0xfd, 0xfc, 0x43, 0xfe, 0x0c, 0xff, 0x4b, 0xff, 0x41, 0xff, 0xdb, 0xfe,\n  0x6d, 0xfe, 0xc3, 0xfd, 0x45, 0xfd, 0x8f, 0xfc, 0x95, 0xfd, 0x4d, 0x0a,\n  0xb9, 0x08, 0x01, 0xfb, 0xc4, 0xf1, 0x9a, 0xef, 0x29, 0xf3, 0x24, 0xf8,\n  0x7e, 0xff, 0xd7, 0xff, 0xb1, 0xfe, 0x89, 0xf7, 0x1f, 0xf2, 0xfa, 0xf1,\n  0x2b, 0xf4, 0x63, 0xf7, 0x16, 0xfa, 0x25, 0xfc, 0x01, 0xfd, 0xc3, 0xfd,\n  0xc5, 0xfd, 0xcd, 0xfd, 0x61, 0xfd, 0x53, 0xfd, 0x85, 0xfc, 0xbf, 0xfc,\n  0x90, 0xfb, 0x3f, 0x01, 0x07, 0x0a, 0x35, 0xff, 0x2e, 0xf9, 0x7f, 0xfd,\n  0x01, 0xf7, 0xb9, 0xf1, 0x57, 0xf6, 0x8f, 0xf6, 0x47, 0xf4, 0x44, 0xf6,\n  0x46, 0x01, 0x14, 0x05, 0xd6, 0x00, 0x04, 0xfa, 0x32, 0xf6, 0x64, 0xf7,\n  0x0e, 0xf8, 0x49, 0xfb, 0x15, 0x03, 0x6e, 0x00, 0x85, 0xfa, 0x16, 0xf9,\n  0x95, 0xf9, 0xa2, 0xfb, 0x51, 0xfd, 0xed, 0xfe, 0xd8, 0xff, 0x76, 0x00,\n  0x97, 0x00, 0xb0, 0x00, 0x98, 0x00, 0x70, 0x00, 0x3d, 0x00, 0x14, 0x00,\n  0xfb, 0xff, 0xe7, 0xff, 0xe1, 0xff, 0xed, 0xff, 0xf3, 0xff, 0x0b, 0x00,\n  0x16, 0x00, 0x18, 0x01, 0x9a, 0x01, 0xd7, 0x00, 0x59, 0x00, 0x23, 0x00,\n  0x4a, 0x00, 0x8b, 0x00, 0xe3, 0x00, 0x39, 0x01, 0x8a, 0x01, 0xd0, 0x01,\n  0x0b, 0x02, 0x3f, 0x02, 0x71, 0x02, 0xc9, 0x02, 0xf3, 0x02, 0xdf, 0x02,\n  0xed, 0x02, 0xe7, 0x02, 0x0d, 0x03, 0x05, 0x03, 0x5f, 0x03, 0x53, 0x03,\n  0xc3, 0x03, 0x6d, 0x03, 0xf7, 0x04, 0xb5, 0x08, 0xc8, 0x06, 0xab, 0x04,\n  0x09, 0x0a, 0x72, 0x0d, 0xc0, 0x07, 0xbd, 0x02, 0xbc, 0x00, 0x03, 0xfe,\n  0x6c, 0xf9, 0x4d, 0xf8, 0x5e, 0xfa, 0x37, 0xfe, 0xae, 0x01, 0xfe, 0x04,\n  0xdf, 0x06, 0x19, 0x09, 0xef, 0x09, 0x3e, 0x0c, 0xaf, 0x0b, 0xa6, 0x07,\n  0x5f, 0x04, 0xf0, 0x08, 0xf3, 0x10, 0x3e, 0x09, 0x37, 0x00, 0x92, 0xfb,\n  0x6d, 0xfb, 0x7f, 0xfd, 0x88, 0x00, 0xaf, 0x03, 0xd6, 0x0e, 0x78, 0x12,\n  0xa8, 0x0b, 0xeb, 0x02, 0xdc, 0xfb, 0x2a, 0xfb, 0x81, 0xfc, 0x8d, 0xff,\n  0xfa, 0x01, 0x78, 0x04, 0x7b, 0x05, 0xb7, 0x06, 0x56, 0x06, 0x3f, 0x07,\n  0x43, 0x05, 0xe0, 0x0c, 0xab, 0x12, 0xcf, 0x0c, 0x38, 0x08, 0x5e, 0xfe,\n  0xab, 0xf7, 0x9f, 0xf6, 0xea, 0xf8, 0x93, 0xfd, 0xaf, 0x09, 0x9f, 0x09,\n  0x57, 0x02, 0x69, 0xff, 0x49, 0xfe, 0xdb, 0x02, 0x07, 0x06, 0x2f, 0x03,\n  0x4a, 0x09, 0x1d, 0x0c, 0x5f, 0x05, 0x4c, 0x00, 0xf1, 0xfc, 0x71, 0x00,\n  0xbb, 0x01, 0x17, 0xfc, 0x2e, 0xfe, 0x18, 0x04, 0xf8, 0x00, 0x2d, 0xfd,\n  0x37, 0xfc, 0x8d, 0xfd, 0xc6, 0xff, 0x9a, 0x01, 0x7b, 0x02, 0x53, 0x03,\n  0x33, 0x03, 0x8e, 0x05, 0x6f, 0x0e, 0x59, 0x09, 0xb3, 0x03, 0xcf, 0x01,\n  0x05, 0xfa, 0x51, 0xfe, 0xa7, 0xff, 0xa3, 0xfe, 0x12, 0xfe, 0x7a, 0xf9,\n  0xdd, 0xf8, 0x14, 0xfa, 0xad, 0xfc, 0xe1, 0xfe, 0xb8, 0x00, 0x1b, 0x02,\n  0xf9, 0x02, 0xcf, 0x02, 0x15, 0x02, 0xb4, 0x01, 0x84, 0x01, 0x4f, 0x01,\n  0x55, 0x00, 0x91, 0x00, 0xb2, 0x04, 0xf7, 0x02, 0xcd, 0xfd, 0x0f, 0xfe,\n  0xc6, 0x05, 0xdb, 0x05, 0x77, 0xff, 0x14, 0xf9, 0xc1, 0xf4, 0x27, 0xf5,\n  0xaa, 0xf6, 0x58, 0x01, 0x2f, 0x06, 0x1a, 0xff, 0xd4, 0xfa, 0x89, 0xfa,\n  0xf6, 0x01, 0x3f, 0x02, 0x9d, 0xfd, 0xa9, 0xfa, 0xbc, 0xf9, 0xc1, 0xfa,\n  0x2d, 0xfc, 0xaf, 0xfd, 0xdb, 0xfe, 0x53, 0xff, 0xd7, 0xff, 0x65, 0xff,\n  0x43, 0x07, 0xe0, 0x0b, 0x97, 0x03, 0xdd, 0xf9, 0xb1, 0xf4, 0x2f, 0xf4,\n  0x23, 0xf6, 0x64, 0xf8, 0x39, 0xfb, 0x11, 0xfc, 0xff, 0x02, 0x90, 0x0a,\n  0x39, 0x03, 0x09, 0xfb, 0x7e, 0xf6, 0x59, 0xf6, 0x81, 0xf7, 0xc1, 0xf9,\n  0x3e, 0xfb, 0x61, 0xfd, 0x73, 0x02, 0x1f, 0x04, 0x2b, 0x06, 0x5a, 0xff,\n  0xd7, 0xf7, 0x41, 0xf6, 0x71, 0xf9, 0x16, 0xfa, 0x28, 0xfb, 0xd9, 0xfd,\n  0x61, 0xfc, 0x8e, 0xf9, 0xf1, 0xf7, 0xbd, 0xf8, 0xc8, 0xf9, 0xb6, 0xfb,\n  0x67, 0xfc, 0x5f, 0x03, 0x7d, 0x09, 0x35, 0x02, 0xa4, 0xfa, 0x39, 0xfc,\n  0x3d, 0xfc, 0x00, 0xfb, 0x89, 0xf8, 0x71, 0xf4, 0xe3, 0xf3, 0x8e, 0xf5,\n  0x5a, 0xf8, 0xd6, 0xfa, 0x19, 0xfd, 0x45, 0xfe, 0x2f, 0xff, 0x23, 0xff,\n  0x69, 0xff, 0xb4, 0xfe, 0xf6, 0xfe, 0x7f, 0xfd, 0xad, 0x02, 0x1a, 0x09,\n  0xf9, 0xff, 0x20, 0xf9, 0xd8, 0xf5, 0x9f, 0xf6, 0x6a, 0xf7, 0xd9, 0xfc,\n  0x48, 0x05, 0x70, 0x00, 0x82, 0xfa, 0x4a, 0xf8, 0xa5, 0xf8, 0x2d, 0xfa,\n  0xda, 0xfb, 0x61, 0xfd, 0x6a, 0xfe, 0x1e, 0xff, 0x66, 0xff, 0xa5, 0xff,\n  0xb1, 0xff, 0xa8, 0xff, 0x8c, 0xff, 0x6f, 0xff, 0x57, 0xff, 0x42, 0xff,\n  0x39, 0xff, 0x36, 0xff, 0x3f, 0xff, 0x50, 0xff, 0x5a, 0xff, 0x74, 0xff,\n  0x8a, 0xff, 0xa5, 0xff, 0xc2, 0xff, 0x2e, 0x00, 0xad, 0x00, 0x4f, 0x00,\n  0x3a, 0x00, 0xf9, 0xff, 0x3d, 0x00, 0x16, 0x00, 0xa7, 0x00, 0x22, 0x00,\n  0xb9, 0x03, 0x87, 0x0e, 0x81, 0x0a, 0x4d, 0x03, 0x91, 0xfd, 0xd1, 0xf6,\n  0x3f, 0xf6, 0xb9, 0xf7, 0xc1, 0xfc, 0x1b, 0x01, 0xb0, 0x05, 0x31, 0x09,\n  0x12, 0x05, 0x22, 0x01, 0x24, 0xff, 0x7b, 0xff, 0x89, 0x00, 0xc9, 0x01,\n  0xdb, 0x02, 0xbf, 0x03, 0x54, 0x04, 0xa3, 0x04, 0xc3, 0x04, 0xf2, 0x04,\n  0x7f, 0x04, 0x97, 0x04, 0xf3, 0x03, 0x02, 0x0c, 0x27, 0x0f, 0x45, 0x08,\n  0xf7, 0x01, 0xa1, 0xfc, 0x79, 0xfa, 0xe6, 0x00, 0xab, 0x05, 0xf3, 0x03,\n  0xb0, 0x00, 0xbb, 0xfc, 0xd7, 0xfc, 0xe3, 0x03, 0xda, 0x09, 0x5e, 0x08,\n  0x8e, 0x05, 0x16, 0x00, 0x9c, 0xfe, 0x84, 0xff, 0x54, 0x04, 0x72, 0x0a,\n  0xd7, 0x06, 0x1d, 0x02, 0x44, 0x00, 0x67, 0x00, 0xa0, 0x01, 0xff, 0x02,\n  0x34, 0x04, 0xfa, 0x04, 0x6a, 0x05, 0x76, 0x05, 0x77, 0x05, 0x38, 0x05,\n  0x9a, 0x05, 0x8a, 0x05, 0x90, 0x04, 0x0b, 0x04, 0x8f, 0x03, 0x23, 0x03,\n  0xcb, 0x02, 0xb1, 0x02, 0x9f, 0x02, 0xb7, 0x02, 0xd3, 0x02, 0xe3, 0x02,\n  0xe9, 0x02, 0xc3, 0x02, 0xfb, 0x02, 0x89, 0x02, 0x07, 0x06, 0x34, 0x08,\n  0xdc, 0x0b, 0x37, 0x07, 0xd5, 0xfd, 0xd1, 0xf9, 0x12, 0xff, 0xb7, 0x02,\n  0x7f, 0xfd, 0xda, 0xfb, 0xc6, 0xfb, 0x19, 0xfe, 0x95, 0xff, 0xea, 0x01,\n  0x43, 0x02, 0x53, 0x06, 0xba, 0x0d, 0x5e, 0x07, 0x6a, 0x00, 0x4f, 0xfd,\n  0xeb, 0xfc, 0xc5, 0xfd, 0x3f, 0xff, 0x2b, 0x00, 0x7f, 0x01, 0x5d, 0x01,\n  0x5d, 0x08, 0x4f, 0x0c, 0xc5, 0x02, 0x39, 0xfe, 0x8f, 0x02, 0xb5, 0x01,\n  0x9d, 0xfb, 0xcc, 0xf8, 0xd5, 0xf8, 0xee, 0xfa, 0x1f, 0xfd, 0x33, 0xff,\n  0xaf, 0x00, 0xa9, 0x01, 0xf6, 0x01, 0x1d, 0x02, 0xf0, 0x01, 0xb8, 0x01,\n  0x4e, 0x01, 0x03, 0x01, 0x9e, 0x00, 0x58, 0x00, 0xf2, 0xff, 0x4f, 0x00,\n  0x7f, 0x05, 0xa3, 0x03, 0x8f, 0x02, 0x7f, 0x02, 0x65, 0xff, 0x1d, 0xfd,\n  0xc9, 0xf8, 0xf8, 0xf7, 0xfa, 0xf7, 0xf6, 0xf8, 0xe9, 0xfa, 0xd5, 0xfe,\n  0xea, 0xff, 0xc3, 0x05, 0x40, 0x07, 0x81, 0xff, 0xd9, 0xfa, 0x20, 0xf9,\n  0x0d, 0xfa, 0xb9, 0xfb, 0x8d, 0x02, 0xbd, 0x02, 0x37, 0xfe, 0x5f, 0xfc,\n  0xa5, 0xfb, 0x65, 0xfc, 0xfb, 0xfc, 0xf9, 0xfd, 0x51, 0xfe, 0xfd, 0xfe,\n  0xda, 0xff, 0xc3, 0x02, 0x98, 0x08, 0xe3, 0x04, 0xde, 0xfe, 0xc5, 0xfc,\n  0x38, 0xfa, 0x16, 0xf9, 0x82, 0xf6, 0xca, 0xf6, 0xd2, 0xfa, 0x99, 0xf9,\n  0xb6, 0xf8, 0xa6, 0xf9, 0x51, 0xfb, 0x0b, 0xfd, 0x54, 0xfe, 0x44, 0xff,\n  0xa2, 0xff, 0xc2, 0xff, 0x60, 0xff, 0x65, 0xff, 0xed, 0xff, 0x29, 0xff,\n  0x07, 0xfe, 0xaf, 0xfd, 0x6d, 0xfe, 0x43, 0xfd, 0xad, 0xfc, 0xb8, 0xfb,\n  0x6b, 0x02, 0x47, 0x03, 0xcd, 0xfd, 0x5d, 0xff, 0xb1, 0xfb, 0x55, 0xfa,\n  0x60, 0xf8, 0xf2, 0xf8, 0x80, 0xfa, 0xd8, 0xf8, 0x1c, 0xf7, 0x00, 0xf8,\n  0x99, 0xf9, 0x35, 0xfc, 0x33, 0xfd, 0x1b, 0x01, 0xa4, 0x05, 0xc3, 0x02,\n  0x47, 0x02, 0x25, 0xfe, 0x73, 0xfc, 0x88, 0xfb, 0x10, 0xf8, 0x59, 0xf7,\n  0x60, 0xf8, 0x6d, 0xfa, 0x3f, 0xfc, 0xdf, 0xfd, 0xdc, 0xfe, 0x80, 0xff,\n  0xba, 0xff, 0xb9, 0xff, 0x99, 0xff, 0x63, 0xff, 0x26, 0xff, 0xea, 0xfe,\n  0xb5, 0xfe, 0x88, 0xfe, 0x6c, 0xfe, 0x57, 0xfe, 0x55, 0xfe, 0x36, 0xfe,\n  0x60, 0xfe, 0x45, 0xfe, 0x8a, 0xfe, 0x63, 0xfe, 0xd2, 0xfe, 0x75, 0xfe,\n  0x2a, 0xff, 0x66, 0xfe, 0xaf, 0x01, 0x68, 0x08, 0xca, 0x04, 0xe7, 0x02,\n  0x02, 0xff, 0x3c, 0xf9, 0xd6, 0xf5, 0x7c, 0xf6, 0xfc, 0xf8, 0xb3, 0xff,\n  0x4c, 0x06, 0x37, 0x02, 0x31, 0x00, 0x49, 0x02, 0x69, 0xff, 0xc9, 0xfc,\n  0xe8, 0xfb, 0xf7, 0xfc, 0x15, 0xff, 0x47, 0x02, 0x05, 0x03, 0x1b, 0x05,\n  0x2d, 0x08, 0x23, 0x04, 0xd4, 0xff, 0xd5, 0xfc, 0x47, 0xfc, 0x67, 0xfd,\n  0xf7, 0xfe, 0xb3, 0x00, 0xf4, 0x01, 0x71, 0x09, 0x60, 0x0a, 0xdd, 0x02,\n  0x26, 0xff, 0x55, 0xfd, 0xf9, 0x02, 0x9b, 0x06, 0xbd, 0x02, 0xee, 0xfe,\n  0x69, 0xfd, 0xcd, 0xfd, 0x4f, 0x01, 0xf7, 0x07, 0x03, 0x06, 0x40, 0x01,\n  0xbb, 0x03, 0xbd, 0x02, 0x5d, 0x02, 0xa3, 0x04, 0x8d, 0x03, 0x04, 0x00,\n  0x3f, 0xff, 0x70, 0x01, 0xbe, 0x00, 0x47, 0x00, 0x80, 0x00, 0x61, 0x01,\n  0x51, 0x02, 0x1b, 0x03, 0xdf, 0x04, 0xbc, 0x0a, 0xc2, 0x08, 0x77, 0x03,\n  0xd3, 0x00, 0x1d, 0x00, 0xa1, 0x00, 0x03, 0x02, 0x28, 0x09, 0x0d, 0x0a,\n  0xbc, 0x06, 0x13, 0x02, 0xf4, 0x00, 0xc1, 0x01, 0x3f, 0x01, 0xc5, 0xff,\n  0x63, 0xfd, 0x85, 0xfd, 0xc1, 0xfe, 0xc2, 0x00, 0x69, 0x02, 0xc5, 0x03,\n  0x7b, 0x04, 0xe3, 0x04, 0xdb, 0x04, 0xdf, 0x04, 0x67, 0x04, 0x5b, 0x05,\n  0x53, 0x07, 0xa3, 0x04, 0x69, 0x02, 0xe0, 0x00, 0xd3, 0x01, 0x47, 0x06,\n  0x47, 0x04, 0x44, 0x00, 0x18, 0xff, 0x82, 0xfe, 0xac, 0x01, 0xd8, 0x07,\n  0x0f, 0x07, 0x3f, 0x02, 0x00, 0xff, 0x85, 0xfc, 0x1e, 0xff, 0x4f, 0x04,\n  0x87, 0x02, 0xfc, 0xfe, 0xb7, 0xfd, 0x42, 0xfe, 0xa7, 0xff, 0xb6, 0x00,\n  0xd5, 0x01, 0x93, 0x03, 0x84, 0x07, 0xb2, 0x09, 0x57, 0x06, 0x0b, 0x03,\n  0x98, 0xff, 0xde, 0xfb, 0x39, 0xfa, 0x51, 0xfb, 0xb9, 0xfc, 0xb6, 0xff,\n  0x87, 0x04, 0x1f, 0x06, 0x87, 0x05, 0x79, 0x01, 0xdf, 0xfd, 0xd5, 0xfc,\n  0xfb, 0xfc, 0x72, 0xff, 0x2a, 0x05, 0x71, 0x03, 0x54, 0xff, 0xb5, 0xfd,\n  0x6d, 0xfd, 0x24, 0xfe, 0x05, 0xff, 0xc5, 0xff, 0x5e, 0x00, 0x8c, 0x00,\n  0xc7, 0x00, 0x82, 0x00, 0x2b, 0x01, 0xf4, 0x01, 0x0d, 0x03, 0x72, 0x05,\n  0xb3, 0x00, 0x83, 0xfc, 0xe2, 0xfa, 0x1a, 0xfb, 0xe6, 0xfb, 0x0f, 0xfe,\n  0xdf, 0x04, 0xe8, 0x04, 0xa6, 0xfe, 0xd5, 0xfb, 0x62, 0xff, 0xe2, 0xfe,\n  0x60, 0xfb, 0x10, 0xfa, 0x61, 0xfa, 0xd1, 0xfb, 0x19, 0xfd, 0x72, 0xfe,\n  0x2d, 0xff, 0xdb, 0xff, 0xe6, 0xff, 0xde, 0x05, 0xcf, 0x06, 0x00, 0x00,\n  0x7a, 0xfb, 0x8e, 0xf9, 0xf8, 0xf9, 0xec, 0xfa, 0x41, 0xfc, 0x45, 0xfd,\n  0x1c, 0xfe, 0xb5, 0xfe, 0x09, 0xff, 0xfd, 0xfe, 0xeb, 0xfe, 0xa0, 0xfe,\n  0x87, 0xfe, 0x37, 0xfe, 0x3a, 0xfe, 0xe3, 0xfd, 0x10, 0xfe, 0x7b, 0xfd,\n  0x9f, 0xff, 0xc8, 0x06, 0x26, 0x04, 0xad, 0xfc, 0xdf, 0xf7, 0xb2, 0xf6,\n  0xb6, 0xf7, 0xaa, 0xf9, 0x40, 0xfb, 0xab, 0xfc, 0x57, 0xfd, 0xcf, 0xff,\n  0x10, 0x06, 0xdf, 0x02, 0xc9, 0xfc, 0x05, 0xfa, 0x61, 0xf9, 0x35, 0xfa,\n  0x60, 0xfb, 0x85, 0xfc, 0x85, 0xfd, 0xeb, 0xfd, 0x84, 0xfe, 0x52, 0xfe,\n  0x27, 0xff, 0x37, 0xfe, 0xa3, 0x02, 0xe4, 0x05, 0xc8, 0xff, 0x80, 0xfa,\n  0x7e, 0xfa, 0x6f, 0xff, 0x57, 0xff, 0x83, 0xfd, 0xa6, 0xf9, 0x8a, 0xf7,\n  0x36, 0xf8, 0x7a, 0xf9, 0x8b, 0xfd, 0x9d, 0x03, 0x15, 0x02, 0x71, 0xff,\n  0xad, 0xfc, 0xc2, 0xfb, 0x70, 0xfe, 0xcb, 0xfd, 0x8b, 0xfc, 0x59, 0xfc,\n  0xe1, 0xfc, 0xb7, 0xfd, 0x72, 0xfe, 0x21, 0x02, 0x9b, 0x03, 0xcc, 0xff,\n  0xe4, 0xfe, 0x2f, 0x02, 0x99, 0x01, 0xea, 0xfe, 0xbe, 0xfa, 0x11, 0xfc,\n  0x95, 0xff, 0x51, 0xff, 0x29, 0xfd, 0xc6, 0xfa, 0xa4, 0xfa, 0xe5, 0xfb,\n  0x33, 0xfd, 0xed, 0x02, 0x58, 0x06, 0xd6, 0x01, 0x48, 0xfe, 0xc9, 0xfc,\n  0x1d, 0xfd, 0xf1, 0xfd, 0x08, 0xff, 0xde, 0xff, 0x86, 0x00, 0xdd, 0x00,\n  0x18, 0x01, 0x24, 0x01, 0x34, 0x01, 0x27, 0x01, 0x3c, 0x01, 0x0a, 0x01,\n  0xf5, 0x00, 0xa9, 0x00, 0xbc, 0x00, 0x61, 0x00, 0xde, 0x01, 0x92, 0x07,\n  0x13, 0x04, 0xad, 0xff, 0x9a, 0x01, 0xb1, 0x01, 0x34, 0x00, 0x77, 0xfd,\n  0x2a, 0xfb, 0x9b, 0xfc, 0x55, 0x01, 0x3b, 0x02, 0xd0, 0x01, 0x33, 0x02,\n  0xa0, 0x00, 0x3b, 0xff, 0xca, 0x00, 0x05, 0x03, 0xe7, 0x01, 0xe1, 0xff,\n  0xdf, 0xfe, 0x86, 0xff, 0x7f, 0x00, 0xdf, 0x01, 0x71, 0x02, 0x04, 0x06,\n  0xac, 0x08, 0x88, 0x04, 0x03, 0x02, 0x7c, 0x04, 0x50, 0x05, 0xe5, 0x02,\n  0x48, 0x01, 0x40, 0x01, 0x59, 0x00, 0x1d, 0x00, 0x99, 0xfe, 0xf7, 0xfd,\n  0xe1, 0xfe, 0x37, 0x00, 0xae, 0x01, 0xb7, 0x02, 0x95, 0x03, 0xef, 0x03,\n  0x37, 0x04, 0x0c, 0x04, 0x13, 0x04, 0xa9, 0x03, 0xe1, 0x03, 0x5f, 0x03,\n  0xb3, 0x04, 0xf1, 0x09, 0xd0, 0x07, 0x6f, 0x02, 0x0d, 0xfe, 0x9b, 0xfc,\n  0xd6, 0xfe, 0x69, 0x02, 0x33, 0x03, 0xf8, 0x00, 0xc9, 0x02, 0x81, 0x02,\n  0x3d, 0x02, 0x05, 0x03, 0x13, 0x02, 0xc7, 0x01, 0xf5, 0x00, 0x00, 0xff,\n  0x3f, 0xfe, 0x08, 0xff, 0x3b, 0x00, 0xa6, 0x01, 0x9d, 0x02, 0x4f, 0x03,\n  0x81, 0x03, 0xbb, 0x03, 0x6b, 0x03, 0x87, 0x03, 0xb1, 0x02, 0x4b, 0x06,\n  0x48, 0x08, 0xd5, 0x03, 0x4c, 0x00, 0xeb, 0xfd, 0xd9, 0xfd, 0x3f, 0xfe,\n  0x66, 0xff, 0x10, 0x00, 0xf7, 0x02, 0xa7, 0x07, 0xfc, 0x04, 0x3a, 0x00,\n  0xfd, 0xfd, 0x97, 0xfd, 0x94, 0xfe, 0xfb, 0x02, 0xff, 0x05, 0xc3, 0x03,\n  0xeb, 0x01, 0x91, 0xfe, 0xd9, 0xfd, 0x39, 0xff, 0xcf, 0xfd, 0x6f, 0xfd,\n  0xd3, 0xfd, 0xd0, 0xfe, 0xc6, 0xff, 0xa6, 0x00, 0x40, 0x01, 0x8a, 0x01,\n  0xb5, 0x01, 0xa0, 0x01, 0x90, 0x01, 0x42, 0x01, 0x1b, 0x01, 0xb7, 0x01,\n  0xf3, 0x01, 0x3a, 0x00, 0x72, 0x01, 0xb0, 0x05, 0x2d, 0x02, 0x94, 0xfe,\n  0xa9, 0xfc, 0x09, 0xfb, 0x35, 0xfb, 0x85, 0xfc, 0x4e, 0xfe, 0xcf, 0x02,\n  0xe3, 0x02, 0x2a, 0xff, 0x97, 0xfc, 0xf1, 0xfd, 0xda, 0x00, 0x09, 0x01,\n  0x1c, 0x00, 0xab, 0xfc, 0x87, 0xfc, 0x53, 0x00, 0xe4, 0xff, 0x3f, 0xfd,\n  0x2f, 0xfc, 0x63, 0xff, 0xa3, 0x00, 0x0c, 0xfe, 0xe3, 0xff, 0xa6, 0x00,\n  0x23, 0x00, 0x96, 0xfe, 0x83, 0xfd, 0xaf, 0xfd, 0x4b, 0xfc, 0xdd, 0xfb,\n  0xba, 0xfb, 0x3f, 0xfe, 0xad, 0x02, 0x64, 0x01, 0xad, 0xff, 0x44, 0xff,\n  0x94, 0xfe, 0x66, 0xfe, 0x0c, 0xfe, 0xbb, 0xfd, 0xad, 0xfc, 0xb5, 0xfa,\n  0x89, 0xfc, 0xd2, 0xfe, 0x9d, 0xfd, 0x68, 0xff, 0x72, 0xff, 0x7b, 0xfd,\n  0x57, 0xfc, 0x1f, 0xfc, 0xc5, 0xfc, 0x71, 0xfd, 0x33, 0xfe, 0x94, 0xfe,\n  0xfd, 0xfe, 0xf6, 0xfe, 0x1d, 0xff, 0xdf, 0xfe, 0xfa, 0xfe, 0x5b, 0xfe,\n  0xcc, 0xff, 0xdb, 0x03, 0xf4, 0x00, 0xd1, 0xfc, 0x15, 0xfb, 0x82, 0xfa,\n  0x58, 0xfb, 0xb6, 0xfb, 0x3d, 0xfe, 0x1b, 0x03, 0x81, 0x02, 0x9e, 0xff,\n  0xc9, 0xfb, 0xbc, 0xf9, 0xb5, 0xf9, 0xbd, 0xfa, 0x03, 0xfc, 0x04, 0xfe,\n  0xf5, 0xff, 0xc5, 0xff, 0x2e, 0x01, 0xcf, 0x02, 0x4a, 0x00, 0x05, 0xfd,\n  0x6a, 0xfe, 0x58, 0xfe, 0xed, 0xfb, 0xa6, 0xfa, 0xf1, 0xfa, 0xe5, 0xfb,\n  0x91, 0xfe, 0x88, 0x01, 0xc5, 0x00, 0x5d, 0xff, 0x37, 0xfe, 0x21, 0xfd,\n  0xbe, 0xfe, 0xaf, 0x01, 0xf3, 0x01, 0xdc, 0x00, 0xa3, 0xfd, 0xa0, 0xfb,\n  0x64, 0xfb, 0x3d, 0xfc, 0x55, 0xfd, 0x73, 0xfe, 0x24, 0xff, 0x8b, 0x00,\n  0x16, 0x05, 0xe7, 0x04, 0x94, 0x01, 0xe6, 0xff, 0x37, 0xfd, 0x81, 0xfb,\n  0x7c, 0xfb, 0x53, 0xfc, 0x8b, 0xfd, 0xb2, 0xfe, 0x9e, 0xff, 0x44, 0x00,\n  0xb5, 0x00, 0xe8, 0x00, 0x01, 0x01, 0xf8, 0x00, 0xe9, 0x00, 0xce, 0x00,\n  0xaf, 0x00, 0x9a, 0x00, 0x85, 0x00, 0x7a, 0x00, 0x73, 0x00, 0x71, 0x00,\n  0x70, 0x00, 0x77, 0x00, 0x7c, 0x00, 0x86, 0x00, 0x8c, 0x00, 0x98, 0x00,\n  0xaa, 0x00, 0xb2, 0x00, 0xc1, 0x00, 0xce, 0x00, 0xd3, 0x00, 0x07, 0x01,\n  0x3f, 0x01, 0x2a, 0x01, 0x0c, 0x01, 0xf7, 0x00, 0xf8, 0x00, 0x00, 0x01,\n  0x0f, 0x01, 0x22, 0x01, 0x33, 0x01, 0x48, 0x01, 0x54, 0x01, 0x66, 0x01,\n  0x72, 0x01, 0x87, 0x01, 0xbb, 0x01, 0xdb, 0x01, 0xbd, 0x01, 0x9f, 0x01,\n  0x82, 0x01, 0xcd, 0x01, 0x45, 0x03, 0xd5, 0x02, 0x90, 0x01, 0xd9, 0x00,\n  0xa7, 0x00, 0xb5, 0x00, 0x1e, 0x01, 0x3c, 0x01, 0xc4, 0x01, 0x8d, 0x01,\n  0xa7, 0x04, 0xbe, 0x08, 0xca, 0x04, 0xaa, 0x00, 0x87, 0x01, 0x34, 0x01,\n  0x36, 0xfe, 0x2f, 0xfd, 0xbd, 0xfd, 0xfc, 0xfe, 0x6b, 0x00, 0x6f, 0x01,\n  0x93, 0x02, 0xa9, 0x02, 0x9b, 0x05, 0x82, 0x09, 0x92, 0x07, 0x83, 0x03,\n  0x0f, 0xff, 0x75, 0xff, 0x85, 0x00, 0xf1, 0xfe, 0x12, 0xff, 0xd7, 0x02,\n  0xed, 0x03, 0x3d, 0x01, 0x65, 0xff, 0xf6, 0xfe, 0xea, 0xff, 0xd9, 0x00,\n  0xf4, 0x01, 0x83, 0x02, 0xed, 0x02, 0x59, 0x03, 0x0f, 0x05, 0x43, 0x07,\n  0x14, 0x05, 0xc7, 0x02, 0xc5, 0xff, 0x4f, 0xfd, 0xfb, 0xfc, 0xc1, 0xfd,\n  0x12, 0xff, 0x3b, 0x00, 0x36, 0x01, 0xcf, 0x01, 0x2f, 0x02, 0x53, 0x02,\n  0x57, 0x02, 0x3b, 0x02, 0x0f, 0x02, 0xd8, 0x01, 0xa5, 0x01, 0x7b, 0x01,\n  0x4f, 0x01, 0x24, 0x01, 0x00, 0x01, 0xe3, 0x00, 0xcb, 0x00, 0xb0, 0x00,\n  0x9d, 0x00, 0xbe, 0x00, 0x28, 0x01, 0xfe, 0x00, 0x8c, 0x00, 0x3e, 0x00,\n  0x11, 0x00, 0x04, 0x00, 0x05, 0x00, 0x86, 0x04, 0xab, 0x05, 0xd1, 0x00,\n  0x1c, 0x00, 0x4a, 0xff, 0x59, 0xfc, 0xe5, 0xfa, 0x6d, 0xfc, 0x24, 0x01,\n  0x5e, 0x01, 0x46, 0x00, 0x07, 0x00, 0xb7, 0xfe, 0x59, 0xfd, 0x13, 0xfd,\n  0xa7, 0xff, 0x0d, 0x00, 0xc1, 0xfe, 0x78, 0xfe, 0xa5, 0xfe, 0x41, 0xff,\n  0xa8, 0xff, 0x5f, 0x00, 0xd4, 0x00, 0xb3, 0x00, 0x50, 0x00, 0xf5, 0xff,\n  0xae, 0xff, 0x7e, 0xff, 0x65, 0xff, 0x5a, 0xff, 0x50, 0xff, 0x39, 0xff,\n  0x30, 0xff, 0x12, 0xff, 0x0f, 0xff, 0x2d, 0xff, 0x4f, 0x02, 0xa6, 0x04,\n  0x96, 0x01, 0x01, 0xfd, 0x6d, 0xfa, 0x22, 0xfa, 0xe5, 0xfa, 0x17, 0xfc,\n  0x31, 0xfd, 0x1c, 0xfe, 0xbb, 0xfe, 0x11, 0xff, 0x57, 0xff, 0x6b, 0xff,\n  0x8c, 0xff, 0x54, 0xff, 0x65, 0xff, 0x06, 0xff, 0x18, 0xff, 0x60, 0xfe,\n  0x98, 0x00, 0xbe, 0x04, 0x09, 0x02, 0x13, 0xfe, 0xe9, 0xfa, 0xb6, 0xf9,\n  0x21, 0xfa, 0x31, 0xfb, 0x73, 0xfc, 0x69, 0xfd, 0x9a, 0xfe, 0xa1, 0x00,\n  0xb7, 0x01, 0x39, 0xff, 0x8a, 0xff, 0x01, 0x01, 0xde, 0xfe, 0x45, 0xff,\n  0xfd, 0xfe, 0x45, 0xfe, 0xa5, 0xfc, 0xca, 0xfa, 0x21, 0xfa, 0x51, 0xfd,\n  0xa7, 0xff, 0x2a, 0xfe, 0xf1, 0xfe, 0xd6, 0xfe, 0x3d, 0xfd, 0xa1, 0xfc,\n  0xe9, 0xfc, 0x95, 0xfd, 0x52, 0xfe, 0xed, 0xfe, 0x86, 0xff, 0x9c, 0xff,\n  0x47, 0x00, 0xd1, 0x03, 0x59, 0x03, 0xad, 0x00, 0x03, 0xff, 0xdb, 0xfd,\n  0x9f, 0xfc, 0xf9, 0xfa, 0xd9, 0xfa, 0x5d, 0xfb, 0x51, 0xfc, 0x75, 0xfd,\n  0x66, 0xfe, 0x41, 0xff, 0xa7, 0xff, 0x22, 0x00, 0xea, 0xff, 0xca, 0x01,\n  0x43, 0x04, 0xc7, 0x03, 0x03, 0x01, 0x88, 0xfe, 0x4e, 0xfe, 0x9d, 0xfc,\n  0x25, 0xfb, 0x21, 0xfb, 0x23, 0xfc, 0x61, 0xfd, 0x91, 0xfe, 0x96, 0xff,\n  0x13, 0x03, 0xe9, 0x02, 0x74, 0x00, 0x18, 0xff, 0xe1, 0xff, 0x8b, 0x02,\n  0x30, 0x01, 0x82, 0xfe, 0x25, 0xfd, 0x25, 0xfd, 0xc7, 0xfd, 0xa5, 0xfe,\n  0x77, 0xff, 0x13, 0x00, 0x7c, 0x00, 0xb6, 0x00, 0xd7, 0x00, 0xe2, 0x00,\n  0xe2, 0x00, 0xd0, 0x00, 0xc5, 0x00, 0xa1, 0x00, 0xaa, 0x00, 0xc2, 0x00,\n  0xd0, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x52, 0x00, 0x88, 0x00, 0x31, 0x00,\n  0x99, 0x01, 0x83, 0x05, 0x05, 0x03, 0x95, 0xff, 0x15, 0xfe, 0xe1, 0xfd,\n  0x52, 0xfe, 0x1a, 0xff, 0xf9, 0xff, 0x4c, 0x04, 0x37, 0x04, 0xc6, 0x01,\n  0x3d, 0x02, 0xde, 0xff, 0x60, 0xfe, 0x16, 0xfe, 0xcf, 0xfe, 0xc5, 0xff,\n  0xb0, 0x00, 0x42, 0x01, 0xd3, 0x01, 0x23, 0x04, 0xeb, 0x04, 0x5f, 0x05,\n  0x26, 0x04, 0x1f, 0x02, 0xa3, 0x00, 0x53, 0xff, 0x52, 0xfe, 0x9d, 0xfe,\n  0x83, 0x00, 0x7f, 0x01, 0x4b, 0x01, 0xea, 0xff, 0x7d, 0xff, 0xe7, 0xff,\n  0xa3, 0x00, 0x73, 0x01, 0x03, 0x02, 0x7b, 0x02, 0x93, 0x02, 0xc1, 0x02,\n  0x81, 0x02, 0x8e, 0x04, 0x53, 0x07, 0xe4, 0x04, 0x4b, 0x02, 0x73, 0x00,\n  0x13, 0x00, 0x30, 0xff, 0xb7, 0xff, 0x87, 0x01, 0x60, 0x01, 0xb0, 0x00,\n  0x1c, 0x00, 0x89, 0xff, 0x2d, 0xff, 0xb7, 0xff, 0x6e, 0x00, 0x3f, 0x01,\n  0xd3, 0x01, 0x3f, 0x02, 0x79, 0x02, 0x8b, 0x02, 0x7f, 0x02, 0x5b, 0x02,\n  0x35, 0x02, 0x01, 0x02, 0xfc, 0x01, 0x15, 0x02, 0xc4, 0x01, 0x72, 0x01,\n  0x2a, 0x01, 0x13, 0x01, 0xf5, 0x00, 0x0a, 0x01, 0xfb, 0x00, 0x15, 0x01,\n  0xfd, 0x00, 0x24, 0x01, 0xe2, 0x00, 0x17, 0x02, 0xbe, 0x05, 0x0a, 0x05,\n  0x77, 0x02, 0x3b, 0xff, 0xbf, 0xfc, 0x53, 0xfc, 0xe3, 0xfc, 0x27, 0xfe,\n  0x3e, 0xff, 0x3e, 0x00, 0xca, 0x00, 0x4b, 0x01, 0x61, 0x01, 0x9a, 0x01,\n  0x61, 0x01, 0x5f, 0x02, 0xde, 0x05, 0x4d, 0x03, 0xb3, 0x00, 0x89, 0xff,\n  0xbb, 0xfd, 0x79, 0xfd, 0xa3, 0xfd, 0x3a, 0x01, 0x0f, 0x03, 0xe7, 0x01,\n  0x88, 0x00, 0x24, 0xfe, 0xef, 0xfc, 0xf1, 0xfc, 0xc1, 0xfd, 0xa9, 0xfe,\n  0x8d, 0xff, 0x1f, 0x00, 0x8b, 0x00, 0xb5, 0x00, 0xd6, 0x00, 0xa6, 0x00,\n  0xe5, 0x00, 0x82, 0x01, 0xae, 0x01, 0x9b, 0x03, 0xcb, 0x02, 0x56, 0xff,\n  0xbf, 0xfc, 0xf9, 0xfb, 0x3f, 0xfc, 0xf7, 0xfc, 0xd5, 0xfd, 0x9a, 0xfe,\n  0x33, 0xff, 0x93, 0xff, 0xcf, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xda, 0xff,\n  0xc0, 0xff, 0x9e, 0xff, 0x7e, 0xff, 0x60, 0xff, 0x47, 0xff, 0x2c, 0xff,\n  0x15, 0xff, 0x06, 0xff, 0xf7, 0xfe, 0xeb, 0xfe, 0xe5, 0xfe, 0xdc, 0xfe,\n  0xd3, 0xfe, 0xcd, 0xfe, 0xcc, 0xfe, 0xc4, 0xfe, 0xc0, 0xfe, 0xc1, 0xfe,\n  0xe4, 0xfe, 0xe1, 0xfe, 0xcc, 0xfe, 0xab, 0xfe, 0xcc, 0xfe, 0xd8, 0xfe,\n  0xa2, 0xfe, 0x87, 0xfe, 0x6c, 0xfe, 0x91, 0xfe, 0xac, 0xfe, 0xd5, 0xfe,\n  0x8f, 0xff, 0xb7, 0x02, 0x99, 0x02, 0x08, 0x00, 0xa3, 0xfd, 0xf8, 0xfa,\n  0x2c, 0xfa, 0xc4, 0xfa, 0x46, 0xfe, 0xd2, 0xfe, 0x7d, 0xfd, 0x1d, 0xfd,\n  0x2f, 0xfd, 0xe3, 0xfd, 0x5e, 0xfe, 0x12, 0xff, 0x2a, 0xff, 0xd4, 0x00,\n  0xb1, 0x03, 0xf3, 0x02, 0xd5, 0xff, 0xdd, 0xfc, 0xbd, 0xfb, 0xda, 0xfb,\n  0x91, 0xfc, 0x6d, 0xfd, 0x39, 0xfe, 0xc3, 0xfe, 0x32, 0xff, 0x6e, 0xff,\n  0x95, 0xff, 0x92, 0xff, 0x9f, 0xff, 0x72, 0xff, 0x9c, 0xff, 0xc0, 0xff,\n  0x90, 0x01, 0xe9, 0x03, 0xd6, 0x00, 0xe9, 0xfd, 0x6f, 0xfe, 0x3f, 0xfd,\n  0xb6, 0xfb, 0x95, 0xfb, 0x45, 0xfc, 0x43, 0xfd, 0x46, 0xfe, 0xee, 0xfe,\n  0x3b, 0x00, 0xed, 0x03, 0xd5, 0x03, 0x8b, 0x00, 0xdd, 0xfd, 0xd7, 0xfc,\n  0xfd, 0xfc, 0x9d, 0xfd, 0x6a, 0xfe, 0x20, 0xff, 0x9b, 0xff, 0xf5, 0xff,\n  0x2b, 0x00, 0x5b, 0x00, 0x59, 0x00, 0x65, 0x00, 0x37, 0x00, 0x52, 0x00,\n  0x0a, 0x00, 0x54, 0x01, 0xab, 0x04, 0x9b, 0x03, 0x22, 0x00, 0x4f, 0xfd,\n  0x7f, 0xfc, 0x38, 0xff, 0x3e, 0x00, 0xa6, 0xfe, 0xc9, 0xfd, 0xbb, 0xfd,\n  0x4e, 0xfe, 0x12, 0xff, 0xd8, 0xff, 0x7c, 0x00, 0xe8, 0x00, 0x2b, 0x01,\n  0x3a, 0x01, 0x4f, 0x01, 0x24, 0x01, 0x91, 0x01, 0xd1, 0x03, 0xd6, 0x04,\n  0x33, 0x03, 0x10, 0x00, 0xaf, 0xfd, 0x55, 0xfd, 0x15, 0xfe, 0x5f, 0xff,\n  0x03, 0x01, 0x82, 0x00, 0x0b, 0x00, 0xe3, 0xff, 0x58, 0x00, 0x6d, 0x00,\n  0xfb, 0x02, 0x2c, 0x05, 0x71, 0x02, 0x1c, 0x00, 0xfc, 0xfe, 0x0f, 0xff,\n  0x78, 0xff, 0x26, 0x00, 0xa0, 0x00, 0x28, 0x01, 0x49, 0x01, 0x33, 0x02,\n  0xe5, 0x03, 0xd1, 0x02, 0x42, 0x01, 0x80, 0x00, 0x28, 0x00, 0x65, 0x00,\n  0xa3, 0x00, 0x10, 0x01, 0xe0, 0x00, 0x8f, 0x02, 0x6b, 0x05, 0x0f, 0x04,\n  0x42, 0x01, 0x09, 0xff, 0x64, 0xfe, 0xb2, 0xfe, 0x42, 0xff, 0xe3, 0x00,\n  0x41, 0x02, 0xa3, 0x01, 0x0c, 0x01, 0xd7, 0x00, 0xef, 0x00, 0x27, 0x01,\n  0x55, 0x01, 0x9f, 0x01, 0xb7, 0x01, 0xd2, 0x01, 0xa6, 0x01, 0xcf, 0x03,\n  0x8f, 0x04, 0xca, 0x01, 0xc8, 0x00, 0x39, 0x02, 0xde, 0x01, 0xae, 0xff,\n  0x91, 0xfe, 0x39, 0xfe, 0x35, 0xff, 0x27, 0x02, 0x41, 0x03, 0x85, 0x01,\n  0x52, 0x00, 0xc7, 0x00, 0x58, 0x00, 0x06, 0x01, 0x79, 0x01, 0x28, 0x01,\n  0x45, 0x01, 0x5b, 0x01, 0x16, 0x01, 0xd7, 0x00, 0xef, 0xff, 0xf0, 0xfe,\n  0xde, 0xff, 0xe5, 0x01, 0x0f, 0x01, 0xa0, 0x00, 0xf3, 0x01, 0xa5, 0x01,\n  0x5b, 0x00, 0x6b, 0x00, 0x5e, 0x01, 0x1f, 0x01, 0xd1, 0xff, 0x1a, 0xff,\n  0x27, 0xff, 0x9b, 0xff, 0x10, 0x00, 0x8c, 0x00, 0xcd, 0x00, 0x13, 0x01,\n  0xf1, 0x00, 0xd3, 0x01, 0x97, 0x04, 0x25, 0x03, 0x2f, 0x00, 0x9c, 0xfe,\n  0x12, 0xfe, 0x55, 0xfe, 0xc6, 0xfe, 0x50, 0xff, 0xba, 0xff, 0x0e, 0x00,\n  0x3e, 0x00, 0x5c, 0x00, 0x67, 0x00, 0x5c, 0x00, 0x7a, 0x00, 0x9b, 0x00,\n  0xa7, 0x00, 0x7d, 0x00, 0xea, 0xff, 0x8a, 0xff, 0x54, 0xff, 0x4e, 0xff,\n  0x59, 0xff, 0x6f, 0xff, 0x71, 0xff, 0x8d, 0xff, 0x80, 0xff, 0xaa, 0x00,\n  0xfa, 0x00, 0x3a, 0x00, 0x3c, 0x01, 0x2b, 0x00, 0x2b, 0xfe, 0x73, 0xfd,\n  0x41, 0xfd, 0x84, 0xfe, 0xd8, 0xff, 0x57, 0xff, 0xfe, 0x00, 0x15, 0x01,\n  0xbc, 0xff, 0x31, 0xfe, 0xd7, 0xfc, 0xc7, 0xfc, 0x3d, 0xfd, 0xfb, 0xfd,\n  0xac, 0xfe, 0x30, 0xff, 0x8f, 0xff, 0xb0, 0xff, 0xe6, 0xff, 0xa7, 0xff,\n  0xb2, 0x00, 0x71, 0x03, 0x89, 0x02, 0x31, 0x00, 0x6b, 0xfd, 0x9d, 0xfc,\n  0x01, 0xfe, 0xdb, 0xfe, 0xdf, 0xfd, 0xe3, 0xfc, 0x83, 0xfc, 0x40, 0xfe,\n  0x7f, 0x00, 0x72, 0xff, 0x43, 0xfe, 0xbb, 0xfd, 0xe3, 0xfd, 0x39, 0xfe,\n  0xbb, 0xfe, 0x14, 0xff, 0x78, 0x01, 0xf6, 0x01, 0xf6, 0xff, 0x9c, 0xfe,\n  0xa5, 0xfd, 0x8b, 0xfd, 0xb7, 0xfd, 0x21, 0xfe, 0x7c, 0xfe, 0xf6, 0xfe,\n  0x8b, 0x01, 0x47, 0x02, 0xea, 0xff, 0xd9, 0xfd, 0xb3, 0xfd, 0x07, 0xfe,\n  0x8d, 0xfd, 0xa1, 0xfd, 0xbb, 0xfd, 0xa9, 0xfe, 0x82, 0x01, 0x0a, 0x01,\n  0xe1, 0xfe, 0xd3, 0xfd, 0x73, 0xfd, 0xcf, 0xfd, 0x27, 0xfe, 0xbd, 0xfe,\n  0x09, 0xff, 0xac, 0x01, 0xd9, 0x02, 0x6d, 0x00, 0x4f, 0xfe, 0x3b, 0xfd,\n  0x3f, 0xfd, 0xff, 0xfd, 0x99, 0xfe, 0xd6, 0xfe, 0x17, 0xff, 0x44, 0xff,\n  0x63, 0xff, 0x95, 0xff, 0x95, 0xff, 0x02, 0x00, 0x34, 0x01, 0x8d, 0x02,\n  0xab, 0x01, 0x00, 0xff, 0x9b, 0xfd, 0x35, 0xfd, 0x97, 0xfd, 0x27, 0xfe,\n  0xc7, 0xfe, 0x48, 0xff, 0xad, 0xff, 0xe4, 0xff, 0x6b, 0x00, 0x93, 0x01,\n  0x01, 0x03, 0x35, 0x02, 0x9f, 0xff, 0x03, 0xfe, 0x91, 0xfd, 0xd3, 0xfd,\n  0x67, 0xfe, 0x0c, 0xff, 0x93, 0xff, 0xf9, 0xff, 0x3a, 0x00, 0x6b, 0x00,\n  0x80, 0x00, 0x92, 0x00, 0x8c, 0x00, 0x88, 0x00, 0x7c, 0x00, 0x76, 0x00,\n  0x67, 0x00, 0xa0, 0x00, 0xc7, 0x00, 0x7a, 0x00, 0x52, 0x00, 0x1f, 0x00,\n  0x31, 0x00, 0x1d, 0x00, 0x52, 0x00, 0x14, 0x00, 0x57, 0x02, 0xf5, 0x03,\n  0x39, 0x01, 0xd1, 0xff, 0x6d, 0x00, 0x9c, 0xff, 0x6f, 0xfe, 0x31, 0xfe,\n  0xa3, 0xfe, 0x4a, 0xff, 0xe5, 0x01, 0x83, 0x03, 0x6d, 0x02, 0x90, 0x01,\n  0xad, 0x00, 0xb6, 0xff, 0x9a, 0xfe, 0xa8, 0xfe, 0x02, 0xff, 0xde, 0xff,\n  0x47, 0x00, 0xb1, 0x02, 0x4a, 0x04, 0x63, 0x03, 0x0f, 0x02, 0x05, 0x00,\n  0x18, 0xff, 0xff, 0xfe, 0x7e, 0xff, 0x10, 0x00, 0x9e, 0x00, 0x0d, 0x01,\n  0x5a, 0x01, 0x8d, 0x01, 0x99, 0x01, 0xb1, 0x01, 0x8d, 0x01, 0xa8, 0x01,\n  0x54, 0x01, 0x4d, 0x03, 0x07, 0x05, 0x29, 0x03, 0x89, 0x00, 0xb0, 0xff,\n  0x89, 0xff, 0xc7, 0xfe, 0xac, 0xfe, 0x2a, 0xff, 0xa0, 0x01, 0xc3, 0x02,\n  0x6c, 0x01, 0x11, 0x00, 0x93, 0xff, 0xbc, 0xff, 0x25, 0x00, 0xa1, 0x00,\n  0x0c, 0x01, 0x52, 0x01, 0x7b, 0x01, 0x8d, 0x01, 0x90, 0x01, 0xac, 0x01,\n  0xa0, 0x01, 0x6c, 0x01, 0x37, 0x01, 0x1e, 0x01, 0x1b, 0x01, 0xfd, 0x00,\n  0xe3, 0x00, 0xcd, 0x00, 0xc1, 0x00, 0xbe, 0x00, 0xc5, 0x00, 0xc8, 0x00,\n  0xc1, 0x00, 0xca, 0x00, 0xb5, 0x00, 0xc8, 0x00, 0xa7, 0x00, 0x11, 0x03,\n  0xb2, 0x04, 0x21, 0x02, 0x68, 0xff, 0x04, 0xfe, 0xd3, 0xfd, 0x34, 0xfe,\n  0xe1, 0xfe, 0x8a, 0xff, 0x16, 0x00, 0x79, 0x00, 0xb5, 0x00, 0xe5, 0x00,\n  0xf2, 0x00, 0xf7, 0x00, 0xee, 0x00, 0xe4, 0x01, 0x43, 0x02, 0x25, 0x01,\n  0xa3, 0x00, 0x7c, 0x01, 0x03, 0x01, 0x8d, 0xff, 0x68, 0xff, 0x17, 0xff,\n  0x85, 0xfe, 0x48, 0xfe, 0x6f, 0xfe, 0xf6, 0xfe, 0x6c, 0xff, 0xe9, 0xff,\n  0x20, 0x00, 0xbb, 0x00, 0xf3, 0x02, 0xab, 0x02, 0x0f, 0x02, 0x59, 0x00,\n  0x8f, 0xff, 0x27, 0xff, 0xbb, 0xfd, 0xb5, 0xfd, 0x0a, 0xfe, 0x85, 0xfe,\n  0xf9, 0xfe, 0x57, 0xff, 0xa2, 0xff, 0xd5, 0xff, 0x05, 0x00, 0x0e, 0x00,\n  0x23, 0x00, 0x0e, 0x00, 0x1c, 0x00, 0xdd, 0xff, 0x52, 0x01, 0xeb, 0x02,\n  0xc4, 0x00, 0xb2, 0xfe, 0xb7, 0xfd, 0x91, 0xfd, 0xe1, 0xfd, 0x46, 0xfe,\n  0xc4, 0xfe, 0x0c, 0xff, 0x65, 0xff, 0x5f, 0xff, 0x4d, 0x00, 0xbd, 0x02,\n  0x31, 0x02, 0xc0, 0xff, 0x43, 0xfe, 0xd1, 0xfd, 0xc7, 0xfd, 0x41, 0xff,\n  0x86, 0xff, 0x06, 0xff, 0x18, 0xfe, 0x97, 0xfd, 0xc0, 0xfe, 0x43, 0xfe,\n  0xb7, 0xfe, 0x9f, 0xff, 0xc9, 0xff, 0x95, 0xff, 0x06, 0xff, 0xea, 0xfe,\n  0x5d, 0xfe, 0x1e, 0xfe, 0x0f, 0xff, 0xf6, 0xff, 0x45, 0xff, 0x89, 0xff,\n  0xac, 0x00, 0x22, 0x00, 0xa6, 0xfe, 0xd1, 0xfd, 0xdb, 0xfd, 0xba, 0xfe,\n  0x92, 0xff, 0x44, 0x00, 0x6b, 0x00, 0x8f, 0xff, 0x45, 0xfe, 0x79, 0xfe,\n  0x84, 0xff, 0x90, 0xff, 0xae, 0xfe, 0xd5, 0xfd, 0x9d, 0xfd, 0xeb, 0xfd,\n  0x5d, 0xfe, 0xeb, 0xfe, 0x38, 0xff, 0xa1, 0x00, 0x4b, 0x01, 0x35, 0x00,\n  0x23, 0x00, 0xaa, 0xff, 0xcd, 0xfe, 0x73, 0xfe, 0x19, 0xfe, 0x3b, 0xff,\n  0xe5, 0x00, 0xea, 0xff, 0x8d, 0xfe, 0x33, 0xff, 0x2b, 0x00, 0x38, 0xff,\n  0x2d, 0xfe, 0xd1, 0xfd, 0x09, 0xfe, 0x78, 0xfe, 0xeb, 0xfe, 0x87, 0xff,\n  0x20, 0x00, 0x0d, 0x00, 0xf6, 0xff, 0xcf, 0xff, 0xe0, 0xff, 0xa8, 0xff,\n  0x8f, 0x00, 0xa3, 0x02, 0xaf, 0x01, 0x9b, 0xff, 0x31, 0xfe, 0xb4, 0xfe,\n  0xcd, 0xfe, 0xfd, 0xfe, 0xff, 0xff, 0xde, 0xff, 0xde, 0xff, 0x30, 0xff,\n  0x61, 0xfe, 0x49, 0xfe, 0x8e, 0xfe, 0x23, 0xff, 0x84, 0xff, 0x8e, 0x00,\n  0x1b, 0x02, 0x49, 0x01, 0xbf, 0x00, 0x1f, 0x01, 0x02, 0x00, 0x1d, 0x00,\n  0x47, 0x00, 0x14, 0x00, 0x61, 0x00, 0x20, 0x00, 0x95, 0xff, 0x60, 0xff,\n  0xce, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x1f, 0x00, 0xae, 0xff, 0xfb, 0xff,\n  0xa7, 0x00, 0x28, 0x00, 0x9f, 0xff, 0x68, 0xff, 0x9c, 0xff, 0xfb, 0xff,\n  0x5e, 0x00, 0xaa, 0x00, 0xe8, 0x00, 0x0a, 0x01, 0x13, 0x01, 0x60, 0x01,\n  0x7e, 0x01, 0x21, 0x01, 0xda, 0x00, 0x9e, 0x00, 0xbc, 0x00, 0xf5, 0x00,\n  0xc5, 0x00, 0x88, 0x00, 0x6a, 0x00, 0x7a, 0x00, 0x15, 0x01, 0x04, 0x01,\n  0xa7, 0x00, 0x52, 0x00, 0xbe, 0x00, 0xd7, 0x02, 0x47, 0x02, 0x53, 0x00,\n  0x45, 0xff, 0x00, 0xff, 0x44, 0xff, 0xae, 0xff, 0x29, 0x00, 0x86, 0x00,\n  0xd9, 0x00, 0x07, 0x01, 0x24, 0x01, 0x33, 0x01, 0x3a, 0x01, 0x33, 0x01,\n  0x25, 0x01, 0x1b, 0x01, 0x1e, 0x01, 0x54, 0x01, 0x79, 0x01, 0x3c, 0x01,\n  0xd9, 0x00, 0x95, 0x00, 0x80, 0x00, 0x7f, 0x00, 0x92, 0x00, 0x9d, 0x00,\n  0xbe, 0x00, 0xb8, 0x00, 0xe2, 0x00, 0xc7, 0x00, 0x87, 0x02, 0xe7, 0x03,\n  0xbd, 0x02, 0xe2, 0x00, 0xc2, 0xff, 0x59, 0xff, 0xa4, 0xff, 0x6c, 0xff,\n  0xb8, 0xfe, 0xd9, 0xfe, 0x39, 0xff, 0xe0, 0xff, 0x5e, 0x00, 0xd4, 0x00,\n  0x19, 0x01, 0x45, 0x01, 0x54, 0x01, 0x4f, 0x01, 0x42, 0x01, 0x30, 0x01,\n  0x15, 0x01, 0xfb, 0x00, 0xe2, 0x00, 0xc5, 0x00, 0xb5, 0x00, 0xa6, 0x00,\n  0x95, 0x00, 0x8b, 0x00, 0x82, 0x00, 0x79, 0x00, 0x77, 0x00, 0x68, 0x00,\n  0x67, 0x00, 0x67, 0x00, 0x6d, 0x00, 0x62, 0x00, 0x8c, 0x00, 0xcb, 0x00,\n  0xa1, 0x00, 0x65, 0x00, 0xc5, 0x00, 0x39, 0x02, 0xf3, 0x01, 0xf5, 0xff,\n  0xcd, 0xfe, 0x1f, 0xfe, 0xaf, 0xfe, 0x9e, 0x00, 0x58, 0x00, 0x6c, 0xff,\n  0x0e, 0x00, 0x5f, 0x00, 0x9f, 0xff, 0x8c, 0xff, 0x9c, 0xff, 0x26, 0xff,\n  0xd9, 0xfe, 0xee, 0xfe, 0x2f, 0xff, 0xae, 0xff, 0xd5, 0xff, 0xfb, 0x00,\n  0x93, 0x02, 0xd6, 0x01, 0x10, 0x01, 0xbd, 0xff, 0xbc, 0xff, 0x30, 0xff,\n  0xfa, 0xfe, 0x7b, 0xff, 0x9b, 0xff, 0xe1, 0xfe, 0xe2, 0xfe, 0xa7, 0xff,\n  0x08, 0xff, 0x5c, 0xff, 0x50, 0x00, 0x26, 0x00, 0xce, 0xff, 0xf0, 0xff,\n  0x53, 0xff, 0x8b, 0xfe, 0x5e, 0xfe, 0x8a, 0xfe, 0xeb, 0xfe, 0x48, 0xff,\n  0x98, 0xff, 0xda, 0xff, 0xf9, 0xff, 0xf2, 0xff, 0xe6, 0xff, 0xd2, 0xff,\n  0xc2, 0xff, 0xad, 0xff, 0x99, 0xff, 0x87, 0xff, 0x7d, 0xff, 0x6e, 0xff,\n  0x83, 0xff, 0xb0, 0xff, 0x89, 0xff, 0x54, 0xff, 0x27, 0xff, 0x1a, 0xff,\n  0x12, 0xff, 0x17, 0xff, 0x15, 0xff, 0x29, 0xff, 0x2c, 0xff, 0x3e, 0xff,\n  0x36, 0xff, 0x4a, 0xff, 0x39, 0xff, 0x65, 0xff, 0x90, 0xff, 0xbb, 0x00,\n  0xdf, 0x01, 0xf9, 0xff, 0x40, 0xfe, 0x73, 0xfd, 0x77, 0xfd, 0xc5, 0xfd,\n  0x40, 0xfe, 0x9c, 0xfe, 0x00, 0xff, 0x2f, 0xff, 0xe5, 0x00, 0xc9, 0x01,\n  0x08, 0x00, 0xb8, 0xfe, 0x13, 0xfe, 0x18, 0xfe, 0x4e, 0xfe, 0xb1, 0xfe,\n  0xfd, 0xfe, 0x4e, 0xff, 0x78, 0xff, 0x42, 0x01, 0x3d, 0x02, 0xa0, 0x00,\n  0x7a, 0xff, 0x47, 0xff, 0xb5, 0xfe, 0xdf, 0xfd, 0x7f, 0xfd, 0xb5, 0xfd,\n  0x3c, 0xfe, 0x57, 0xff, 0xdb, 0xff, 0xad, 0xff, 0x86, 0xff, 0x95, 0xff,\n  0x8f, 0xff, 0x65, 0x00, 0x01, 0x02, 0x4f, 0x01, 0xb1, 0xff, 0x87, 0xfe,\n  0x21, 0xfe, 0x45, 0xfe, 0x9a, 0xfe, 0x05, 0xff, 0x65, 0xff, 0xad, 0xff,\n  0xda, 0xff, 0xfc, 0xff, 0x11, 0x00, 0x1a, 0x00, 0x19, 0x00, 0x14, 0x00,\n  0x0a, 0x00, 0x01, 0x00, 0xf5, 0xff, 0x1c, 0x00, 0xab, 0x01, 0x59, 0x02,\n  0xcd, 0x00, 0x09, 0xff, 0x2d, 0xfe, 0x15, 0xfe, 0x66, 0xfe, 0xdc, 0xfe,\n  0x54, 0xff, 0xb6, 0xff, 0x00, 0x00, 0x31, 0x00, 0x52, 0x00, 0x64, 0x00,\n  0x6b, 0x00, 0x70, 0x00, 0x6b, 0x00, 0x65, 0x00, 0x58, 0x00, 0x5c, 0x00,\n  0x62, 0x00, 0xad, 0x00, 0x5e, 0x00, 0x67, 0x01, 0x4d, 0x02, 0xdd, 0x00,\n  0x7e, 0xff, 0xe8, 0xfe, 0xcf, 0xfe, 0x24, 0xff, 0x57, 0xff, 0x79, 0x00,\n  0x57, 0x02, 0xe7, 0x01, 0xe5, 0x00, 0xb3, 0xff, 0x0c, 0xff, 0x0b, 0xff,\n  0x60, 0xff, 0xd2, 0xff, 0x2e, 0x00, 0x9a, 0x00, 0x55, 0x02, 0xed, 0x02,\n  0xf7, 0x01, 0xdd, 0x00, 0x96, 0xff, 0x53, 0xff, 0x5c, 0x00, 0x5e, 0x00,\n  0xc6, 0xff, 0x69, 0xff, 0x9c, 0xff, 0xf0, 0xff, 0xdd, 0x00, 0x69, 0x02,\n  0x4f, 0x02, 0x9f, 0x01, 0xa4, 0x00, 0x76, 0x00, 0x98, 0x00, 0xe3, 0xff,\n  0x07, 0x00, 0x88, 0x00, 0xb5, 0x00, 0x82, 0x00, 0x1f, 0x00, 0x4f, 0x00,\n  0x34, 0x00, 0x04, 0x00, 0xce, 0x00, 0x17, 0x02, 0x79, 0x01, 0x89, 0x00,\n  0x10, 0x00, 0x02, 0x00, 0x35, 0x00, 0x71, 0x00, 0xa9, 0x00, 0xd1, 0x00,\n  0xe9, 0x00, 0xf7, 0x00, 0xfd, 0x00, 0xfa, 0x00, 0xf7, 0x00, 0xe9, 0x00,\n  0xdd, 0x00, 0xd0, 0x00, 0xc4, 0x00, 0xca, 0x00, 0x13, 0x01, 0x1c, 0x01,\n  0xc1, 0x00, 0x7a, 0x00, 0x4c, 0x00, 0x44, 0x00, 0x44, 0x00, 0x53, 0x00,\n  0x56, 0x00, 0x71, 0x00, 0x76, 0x00, 0xf7, 0x01, 0xdb, 0x02, 0x6d, 0x01,\n  0xf2, 0xff, 0x02, 0xff, 0xe1, 0xfe, 0x1a, 0xff, 0x6e, 0xff, 0xc0, 0xff,\n  0x13, 0x00, 0x61, 0x00, 0x7f, 0x00, 0x97, 0x00, 0x98, 0x00, 0x98, 0x00,\n  0x8b, 0x00, 0x94, 0x00, 0x9d, 0x00, 0x8f, 0x00, 0x67, 0x00, 0x5e, 0x00,\n  0x3b, 0x00, 0x50, 0x00, 0x0e, 0x00, 0x25, 0x01, 0x91, 0x02, 0x7c, 0x01,\n  0xc8, 0x00, 0x04, 0x00, 0x45, 0xff, 0x23, 0xff, 0x99, 0xfe, 0x6d, 0xfe,\n  0x4e, 0xff, 0x42, 0xff, 0x06, 0xff, 0x11, 0xff, 0x68, 0xff, 0xaa, 0xff,\n  0x2d, 0x01, 0xf0, 0x01, 0xb6, 0x00, 0xb4, 0xff, 0x99, 0xff, 0x2c, 0x00,\n  0xa3, 0x00, 0x34, 0x00, 0x56, 0xff, 0x74, 0xff, 0xa4, 0xff, 0x5c, 0xff,\n  0x09, 0xff, 0x14, 0xff, 0x38, 0xff, 0x83, 0xff, 0x9e, 0xff, 0x71, 0x00,\n  0x81, 0x01, 0x8b, 0x01, 0x71, 0x00, 0x4e, 0xff, 0x6b, 0xff, 0xe5, 0xfe,\n  0x7c, 0xfe, 0x67, 0xfe, 0xb2, 0xfe, 0xee, 0xfe, 0x9c, 0xff, 0x45, 0x01,\n  0x28, 0x01, 0x2f, 0x00, 0x20, 0xff, 0x96, 0xfe, 0x7f, 0xfe, 0xc9, 0xfe,\n  0x1d, 0xff, 0x22, 0x00, 0xf7, 0x00, 0x7d, 0x00, 0xff, 0xff, 0xae, 0xff,\n  0x0f, 0xff, 0x58, 0xfe, 0x19, 0xfe, 0x17, 0xff, 0x26, 0x00, 0xde, 0xff,\n  0x36, 0xff, 0xc4, 0xfe, 0x8e, 0xfe, 0xa8, 0xfe, 0xcc, 0xfe, 0xdb, 0xff,\n  0x22, 0x01, 0x6b, 0x00, 0x98, 0xff, 0xd4, 0xff, 0x95, 0xff, 0xbd, 0xfe,\n  0x67, 0xfe, 0x4d, 0xff, 0xf2, 0xff, 0xc0, 0xff, 0x0e, 0xff, 0x91, 0xfe,\n  0x8a, 0xfe, 0x9f, 0xfe, 0xeb, 0xfe, 0x24, 0xff, 0xfc, 0xff, 0xf4, 0x00,\n  0x15, 0x01, 0x1d, 0x00, 0x8f, 0xff, 0x89, 0xff, 0x3f, 0xff, 0xbe, 0xfe,\n  0x51, 0xfe, 0x5a, 0xfe, 0x94, 0xfe, 0xed, 0xfe, 0xd5, 0xff, 0xf7, 0x00,\n  0xa1, 0x00, 0xa2, 0xff, 0x02, 0xff, 0xd3, 0xfe, 0xe4, 0xfe, 0x53, 0xff,\n  0xb8, 0x00, 0x0d, 0x01, 0xed, 0xff, 0x03, 0xff, 0xa6, 0xfe, 0xb4, 0xfe,\n  0xe8, 0xfe, 0x36, 0xff, 0x78, 0xff, 0xae, 0xff, 0xd1, 0xff, 0xf3, 0xff,\n  0x0b, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xec, 0xff, 0xe1, 0xff, 0xdd, 0xff,\n  0xd1, 0xff, 0xd5, 0xff, 0xd4, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xd8, 0xff,\n  0xe0, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xe9, 0xff, 0x96, 0x01, 0xf1, 0x01,\n  0x4d, 0x00, 0x42, 0xff, 0xb2, 0xfe, 0xae, 0xfe, 0xc1, 0xfe, 0x2a, 0xff,\n  0x6e, 0xff, 0x4c, 0x00, 0xe2, 0x00, 0xfa, 0x00, 0x22, 0x01, 0x25, 0x00,\n  0x62, 0xff, 0x3b, 0xff, 0x3c, 0xff, 0x5a, 0xff, 0xaa, 0xff, 0xfb, 0x00,\n  0x97, 0x01, 0xee, 0x00, 0x28, 0x00, 0x96, 0xff, 0x68, 0xff, 0x6c, 0xff,\n  0xb6, 0xff, 0xde, 0xff, 0xa3, 0x00, 0x07, 0x02, 0x8a, 0x01, 0xa6, 0x00,\n  0x02, 0x00, 0x95, 0xff, 0x8f, 0xff, 0xae, 0xff, 0x40, 0x00, 0x3c, 0x01,\n  0xcf, 0x01, 0x1b, 0x01, 0x9d, 0x00, 0x83, 0x00, 0x19, 0x00, 0x32, 0x00,\n  0xe1, 0xff, 0x75, 0xff, 0x63, 0xff, 0x92, 0xff, 0xe4, 0xff, 0x3d, 0x00,\n  0x85, 0x00, 0xb9, 0x00, 0xd9, 0x00, 0xee, 0x00, 0xe8, 0x00, 0xef, 0x00,\n  0xd0, 0x00, 0xd5, 0x01, 0xdf, 0x02, 0xb4, 0x01, 0x4a, 0x00, 0x68, 0xff,\n  0x47, 0xff, 0x4d, 0xff, 0x7a, 0x00, 0x54, 0x01, 0xda, 0x00, 0xfa, 0x00,\n  0xbf, 0x00, 0x11, 0x00, 0x8a, 0xff, 0x83, 0xff, 0xb7, 0xff, 0x0d, 0x00,\n  0x4d, 0x00, 0x95, 0x00, 0xb3, 0x00, 0x7e, 0x01, 0xea, 0x01, 0x2a, 0x01,\n  0x98, 0x00, 0x3a, 0x00, 0x31, 0x00, 0x2b, 0x00, 0x4a, 0x00, 0x5f, 0x00,\n  0xa0, 0x00, 0x03, 0x02, 0x21, 0x02, 0x5d, 0x01, 0x50, 0x00, 0x69, 0xff,\n  0x35, 0xff, 0x41, 0xff, 0xa1, 0xff, 0xd4, 0xff, 0x12, 0x01, 0xf4, 0x01,\n  0x0c, 0x01, 0x37, 0x00, 0xc6, 0xff, 0xb9, 0xff, 0xd8, 0xff, 0x0a, 0x00,\n  0x38, 0x00, 0x5c, 0x00, 0x77, 0x00, 0x86, 0x00, 0x8f, 0x00, 0xa1, 0x00,\n  0xad, 0x00, 0x98, 0x00, 0x73, 0x00, 0x62, 0x00, 0x49, 0x00, 0x47, 0x00,\n  0x34, 0x00, 0x41, 0x00, 0x20, 0x00, 0xfd, 0x00, 0x1f, 0x02, 0x10, 0x01,\n  0xf2, 0xff, 0x30, 0xff, 0xf0, 0xfe, 0x02, 0xff, 0x7d, 0xff, 0xd6, 0x00,\n  0xfb, 0x00, 0x40, 0x00, 0x47, 0x00, 0x17, 0x00, 0xce, 0xff, 0xc2, 0xff,\n  0x54, 0xff, 0xee, 0xfe, 0xed, 0xfe, 0x24, 0xff, 0x80, 0xff, 0xb5, 0x00,\n  0x7e, 0x01, 0xc4, 0x00, 0x4d, 0x00, 0x17, 0x00, 0x13, 0x00, 0xde, 0xff,\n  0x7d, 0xff, 0x95, 0xff, 0x65, 0xff, 0x15, 0xff, 0x12, 0xff, 0x24, 0xff,\n  0xe4, 0xff, 0xec, 0x00, 0x82, 0x00, 0xcc, 0xff, 0x65, 0xff, 0x42, 0xff,\n  0x59, 0xff, 0x78, 0xff, 0xa2, 0xff, 0xc3, 0xff, 0xdd, 0xff, 0xde, 0xff,\n  0x35, 0x00, 0x86, 0x00, 0x28, 0x00, 0xc8, 0xff, 0x72, 0xff, 0xf2, 0xff,\n  0x31, 0x00, 0x8f, 0xff, 0xcc, 0xff, 0x25, 0x00, 0xda, 0xff, 0x77, 0xff,\n  0xc0, 0xfe, 0xd0, 0xfe, 0x36, 0xff, 0xe7, 0xfe, 0xb7, 0xfe, 0xc9, 0xfe,\n  0xbd, 0xff, 0x7d, 0x00, 0x0d, 0x00, 0x4e, 0xff, 0xed, 0xfe, 0xdc, 0xfe,\n  0x09, 0xff, 0x33, 0xff, 0x37, 0x00, 0xfe, 0x00, 0x98, 0x00, 0x1a, 0x00,\n  0x75, 0xff, 0xcf, 0xfe, 0x81, 0xfe, 0x87, 0xfe, 0xca, 0xfe, 0x30, 0xff,\n  0x07, 0x00, 0xca, 0x00, 0x38, 0x00, 0xa1, 0xff, 0x41, 0xff, 0xf0, 0xfe,\n  0xe2, 0xfe, 0xee, 0xfe, 0x33, 0xff, 0x57, 0xff, 0xfc, 0xff, 0xfd, 0x00,\n  0xb5, 0x00, 0xa7, 0xff, 0xfc, 0xfe, 0xae, 0xfe, 0x09, 0xff, 0x0b, 0x00,\n  0xe4, 0xff, 0x4e, 0xff, 0x03, 0xff, 0xf9, 0xfe, 0x1d, 0xff, 0x4b, 0xff,\n  0x7d, 0xff, 0xa1, 0xff, 0xbc, 0xff, 0xd5, 0xff, 0xd8, 0xff, 0xe4, 0xff,\n  0xd8, 0xff, 0x1f, 0x00, 0x02, 0x00, 0x7f, 0x00, 0x2d, 0x01, 0x91, 0x00,\n  0xb0, 0xff, 0xcf, 0xfe, 0x7b, 0xfe, 0x87, 0xfe, 0xc9, 0xfe, 0x26, 0xff,\n  0x7a, 0xff, 0xe3, 0xff, 0x5c, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xe4, 0xff,\n  0xaa, 0xff, 0xfb, 0xff, 0xe5, 0x00, 0xe5, 0x00, 0x6a, 0x00, 0xb7, 0xff,\n  0xf3, 0xfe, 0xfa, 0xfe, 0x5d, 0xff, 0x4a, 0xff, 0x59, 0xff, 0x84, 0xff,\n  0xb3, 0xff, 0xd5, 0xff, 0x01, 0x00, 0x1a, 0x00, 0x3e, 0x00, 0x43, 0x00,\n  0x91, 0x00, 0x1e, 0x01, 0x6a, 0x01, 0x0a, 0x01, 0xed, 0xff, 0x04, 0x00,\n  0x38, 0x00, 0xfe, 0xff, 0xc3, 0xff, 0x78, 0xff, 0x5c, 0xff, 0x96, 0xff,\n  0xf3, 0xff, 0xf9, 0xff, 0x08, 0x00, 0x3b, 0x00, 0x49, 0x00, 0xec, 0xff,\n  0xb0, 0xff, 0xb0, 0xff, 0xda, 0xff, 0x0e, 0x00, 0x46, 0x00, 0x74, 0x00,\n  0x8e, 0x00, 0x98, 0x00, 0x9a, 0x00, 0x9b, 0x00, 0x91, 0x00, 0x94, 0x00,\n  0x88, 0x00, 0x89, 0x00, 0x76, 0x00, 0x7d, 0x00, 0x65, 0x00, 0xb6, 0x00,\n  0xff, 0x01, 0xcd, 0x01, 0x16, 0x01, 0x2e, 0x00, 0x48, 0xff, 0xfc, 0xfe,\n  0x11, 0xff, 0x5d, 0xff, 0xb7, 0xff, 0x08, 0x00, 0x47, 0x00, 0x7c, 0x00,\n  0xa6, 0x00, 0xc4, 0x00, 0xc2, 0x00, 0xb8, 0x00, 0xb0, 0x00, 0xa6, 0x00,\n  0x9e, 0x00, 0xa1, 0x00, 0xa6, 0x00, 0x83, 0x00, 0xcb, 0x00, 0x36, 0x01,\n  0xcd, 0x00, 0x5c, 0x00, 0x26, 0x00, 0xeb, 0x00, 0x34, 0x01, 0xb9, 0x00,\n  0x7a, 0x00, 0x16, 0x00, 0xc9, 0xff, 0x66, 0xff, 0x51, 0xff, 0x72, 0xff,\n  0xcf, 0xff, 0xaf, 0x00, 0x2d, 0x01, 0x33, 0x01, 0xfb, 0x00, 0xc8, 0x00,\n  0x3d, 0x00, 0xe3, 0xff, 0xba, 0xff, 0xfb, 0xff, 0xe3, 0x00, 0x24, 0x01,\n  0x83, 0x00, 0x43, 0x00, 0x49, 0x00, 0xf8, 0xff, 0xcc, 0xff, 0xd8, 0xff,\n  0xf8, 0xff, 0x29, 0x00, 0x47, 0x00, 0x6e, 0x00, 0x77, 0x00, 0xd3, 0x00,\n  0xea, 0x01, 0x99, 0x01, 0xb0, 0x00, 0xe9, 0xff, 0xe9, 0xff, 0x4d, 0x00,\n  0x4f, 0x00, 0xd4, 0xff, 0x8c, 0xff, 0x14, 0x00, 0x3e, 0x00, 0xfe, 0xff,\n  0xb7, 0xff, 0x89, 0xff, 0x8f, 0xff, 0xb6, 0xff, 0xed, 0xff, 0x28, 0x00,\n  0x59, 0x00, 0x2e, 0x01, 0x7c, 0x01, 0xe6, 0x00, 0x08, 0x00, 0x0b, 0x00,\n  0x34, 0x00, 0xa5, 0xff, 0x45, 0xff, 0x2a, 0xff, 0x53, 0xff, 0x80, 0xff,\n  0xc5, 0xff, 0xe9, 0xff, 0xb0, 0x00, 0x7f, 0x01, 0x0d, 0x01, 0x98, 0x00,\n  0x00, 0x00, 0x6c, 0xff, 0x8a, 0xff, 0x54, 0xff, 0x0b, 0xff, 0x0c, 0xff,\n  0x36, 0xff, 0x75, 0xff, 0xb9, 0xff, 0xf3, 0xff, 0x07, 0x00, 0x11, 0x00,\n  0x0d, 0x00, 0x08, 0x00, 0x07, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xec, 0xff,\n  0xe3, 0xff, 0xd7, 0xff, 0xe7, 0xff, 0x0a, 0x00, 0xf0, 0xff, 0xc5, 0xff,\n  0xa4, 0xff, 0x9e, 0xff, 0xcb, 0xff, 0xc0, 0xff, 0x9e, 0xff, 0x86, 0xff,\n  0x7d, 0xff, 0x81, 0xff, 0x8f, 0xff, 0x90, 0xff, 0x9c, 0xff, 0x99, 0xff,\n  0xb9, 0x00, 0x03, 0x01, 0xef, 0xff, 0x38, 0xff, 0xe8, 0xfe, 0xf7, 0xfe,\n  0xf7, 0xfe, 0xf3, 0xfe, 0x53, 0xff, 0x5b, 0x00, 0x26, 0x00, 0x7a, 0xff,\n  0x26, 0xff, 0x08, 0xff, 0x0f, 0xff, 0x38, 0xff, 0x5a, 0xff, 0xb7, 0xff,\n  0xcb, 0x00, 0xa7, 0x00, 0x25, 0x00, 0x92, 0xff, 0x14, 0xff, 0xa2, 0xff,\n  0xd7, 0xff, 0x5a, 0xff, 0xee, 0xfe, 0xd5, 0xfe, 0xe1, 0xfe, 0xbf, 0xff,\n  0x5c, 0x00, 0x19, 0x00, 0xc6, 0xff, 0x96, 0xff, 0xc3, 0xff, 0xa8, 0xff,\n  0x9c, 0xff, 0x7e, 0xff, 0x72, 0xff, 0x8a, 0xff, 0x89, 0xff, 0x84, 0xff,\n  0x95, 0xff, 0x89, 0xff, 0x4e, 0xff, 0x78, 0xff, 0xea, 0xff, 0xb0, 0xff,\n  0x6c, 0xff, 0x3f, 0xff, 0xc3, 0xff, 0x73, 0x00, 0x10, 0x00, 0xec, 0xff,\n  0xfc, 0xff, 0xcc, 0xff, 0x6f, 0xff, 0x30, 0xff, 0x35, 0xff, 0x53, 0xff,\n  0x89, 0xff, 0xaa, 0xff, 0xe6, 0xff, 0x0b, 0x00, 0xb5, 0x00, 0x2a, 0x01,\n  0x8b, 0x00, 0x34, 0x00, 0xdb, 0xff, 0x47, 0xff, 0xfd, 0xfe, 0xf6, 0xfe,\n  0x95, 0xff, 0x10, 0x00, 0xce, 0xff, 0xa1, 0xff, 0x87, 0xff, 0xae, 0xff,\n  0xbc, 0xff, 0x5b, 0x00, 0x0c, 0x01, 0xa6, 0x00, 0x6b, 0x00, 0x29, 0x00,\n  0xa2, 0xff, 0x4d, 0xff, 0x3b, 0xff, 0x5c, 0xff, 0x93, 0xff, 0xc8, 0xff,\n  0xf9, 0xff, 0x19, 0x00, 0x3d, 0x00, 0x4c, 0x00, 0x5b, 0x00, 0x49, 0x00,\n  0xca, 0x00, 0x49, 0x01, 0x0f, 0x01, 0xac, 0x00, 0xd8, 0xff, 0x60, 0xff,\n  0x2c, 0xff, 0x7b, 0xff, 0x3a, 0x00, 0x71, 0x00, 0x7a, 0x00, 0x0e, 0x00,\n  0xbf, 0xff, 0x25, 0x00, 0x77, 0x00, 0x3a, 0x00, 0x1a, 0x00, 0x3a, 0x00,\n  0x4f, 0x00, 0x11, 0x00, 0xc5, 0xff, 0xc0, 0xff, 0xdb, 0xff, 0xf2, 0xff,\n  0x10, 0x00, 0x3b, 0x00, 0x5e, 0x00, 0x74, 0x00, 0x83, 0x00, 0x94, 0x00,\n  0x8c, 0x00, 0xe2, 0x00, 0x2a, 0x01, 0xbe, 0x00, 0x5c, 0x00, 0x1c, 0x00,\n  0x64, 0x00, 0xcb, 0x00, 0x70, 0x00, 0x41, 0x00, 0x20, 0x00, 0xea, 0xff,\n  0xe6, 0xff, 0x79, 0x00, 0xee, 0x00, 0x77, 0x00, 0x7f, 0x00, 0x58, 0x00,\n  0xe0, 0xff, 0xb1, 0xff, 0xb9, 0xff, 0xe0, 0xff, 0xad, 0x00, 0x3d, 0x01,\n  0xdc, 0x00, 0x9b, 0x00, 0x85, 0x00, 0x59, 0x00, 0x00, 0x00, 0xc5, 0xff,\n  0xbc, 0xff, 0xdd, 0xff, 0x0a, 0x00, 0x3a, 0x00, 0x5e, 0x00, 0x7c, 0x00,\n  0x8b, 0x00, 0x94, 0x00, 0x97, 0x00, 0x92, 0x00, 0x8b, 0x00, 0x82, 0x00,\n  0x77, 0x00, 0x76, 0x00, 0x68, 0x00, 0x67, 0x00, 0x64, 0x00, 0x7f, 0x00,\n  0x64, 0x00, 0x82, 0x00, 0x64, 0x01, 0x70, 0x01, 0xb9, 0x00, 0xfb, 0xff,\n  0xce, 0xff, 0xa8, 0xff, 0x5d, 0xff, 0x3e, 0xff, 0x50, 0xff, 0x89, 0xff,\n  0xc8, 0xff, 0x05, 0x00, 0x34, 0x00, 0x56, 0x00, 0x67, 0x00, 0x71, 0x00,\n  0x71, 0x00, 0x85, 0x00, 0x88, 0x01, 0x66, 0x01, 0x7f, 0x00, 0xe0, 0xff,\n  0xf2, 0xff, 0x38, 0x00, 0xb6, 0xff, 0x65, 0xff, 0x45, 0xff, 0x6c, 0xff,\n  0x98, 0xff, 0xcf, 0xff, 0x0a, 0x00, 0x3b, 0x00, 0x40, 0x00, 0x37, 0x00,\n  0x2f, 0x00, 0x37, 0x00, 0x19, 0x01, 0x40, 0x01, 0xb8, 0x00, 0x0d, 0x00,\n  0x65, 0xff, 0x80, 0xff, 0x99, 0xff, 0xc6, 0xff, 0xdd, 0xff, 0xa8, 0xff,\n  0xae, 0xff, 0xa7, 0xff, 0xd4, 0xff, 0xc6, 0xff, 0x7d, 0xff, 0x63, 0xff,\n  0x78, 0xff, 0x96, 0xff, 0xea, 0xff, 0xcb, 0x00, 0xcd, 0x00, 0x2b, 0x00,\n  0xae, 0xff, 0x6e, 0xff, 0x6c, 0xff, 0x7d, 0xff, 0x99, 0xff, 0xc0, 0xff,\n  0xac, 0x00, 0xf8, 0x00, 0x74, 0x00, 0xf0, 0xff, 0x5c, 0xff, 0x0b, 0xff,\n  0x05, 0xff, 0x1b, 0xff, 0xb1, 0xff, 0x46, 0x00, 0xea, 0xff, 0xc5, 0xff,\n  0x22, 0x00, 0x0d, 0x00, 0x92, 0xff, 0x41, 0xff, 0x27, 0xff, 0x48, 0xff,\n  0x80, 0xff, 0xa8, 0xff, 0xaa, 0xff, 0x08, 0x00, 0xac, 0x00, 0x7a, 0x00,\n  0xce, 0xff, 0x53, 0xff, 0x30, 0xff, 0xc8, 0xff, 0x08, 0x00, 0xda, 0xff,\n  0x96, 0xff, 0x38, 0xff, 0x0f, 0xff, 0x12, 0xff, 0x41, 0xff, 0x6e, 0xff,\n  0x99, 0xff, 0xb4, 0xff, 0xce, 0xff, 0xd4, 0xff, 0x01, 0x00, 0x95, 0x00,\n  0xdf, 0x00, 0x5c, 0x00, 0x95, 0xff, 0x21, 0xff, 0xfa, 0xfe, 0x0b, 0xff,\n  0x2c, 0xff, 0x57, 0xff, 0x81, 0xff, 0xa1, 0xff, 0xb6, 0xff, 0xc9, 0xff,\n  0xd8, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xdb, 0xff, 0xd1, 0xff, 0xd2, 0xff,\n  0xd4, 0xff, 0xcb, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc5, 0xff,\n  0xcb, 0xff, 0xc5, 0xff, 0xc3, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0xd5, 0xff,\n  0xdb, 0xff, 0xce, 0xff, 0xcf, 0xff, 0x0b, 0x00, 0x6e, 0x00, 0xe3, 0x00,\n  0x7d, 0x00, 0x90, 0xff, 0xff, 0xfe, 0xd0, 0xfe, 0xeb, 0xfe, 0x1e, 0xff,\n  0x60, 0xff, 0x9b, 0xff, 0xc8, 0xff, 0xe9, 0xff, 0x01, 0x00, 0x0e, 0x00,\n  0x25, 0x00, 0x22, 0x00, 0x1d, 0x00, 0x16, 0x00, 0x11, 0x00, 0x04, 0x00,\n  0x2c, 0x00, 0xf7, 0x00, 0xc8, 0x00, 0x0e, 0x00, 0x9c, 0xff, 0x69, 0xff,\n  0x6b, 0xff, 0x83, 0xff, 0xa7, 0xff, 0xc9, 0xff, 0xe9, 0xff, 0x00, 0x00,\n  0x14, 0x00, 0x20, 0x00, 0x2b, 0x00, 0x29, 0x00, 0x34, 0x00, 0x2c, 0x00,\n  0x09, 0x01, 0x87, 0x01, 0xbb, 0x00, 0xe0, 0xff, 0x6e, 0xff, 0x6e, 0xff,\n  0xec, 0xff, 0x29, 0x00, 0xd7, 0xff, 0xb6, 0xff, 0xad, 0xff, 0x26, 0x00,\n  0x6d, 0x00, 0x65, 0x00, 0x17, 0x00, 0xe9, 0xff, 0xd2, 0xff, 0xc9, 0xff,\n  0xdd, 0xff, 0x32, 0x00, 0x6d, 0x00, 0x5f, 0x00, 0x47, 0x00, 0x41, 0x00,\n  0x41, 0x00, 0x50, 0x00, 0x6b, 0x00, 0xe3, 0x00, 0x67, 0x01, 0xd9, 0x00,\n  0x28, 0x00, 0xb4, 0xff, 0xcf, 0xff, 0x65, 0x00, 0x8b, 0x00, 0x65, 0x00,\n  0xea, 0xff, 0xce, 0xff, 0x2c, 0x00, 0x29, 0x00, 0xf3, 0xff, 0xda, 0xff,\n  0xec, 0xff, 0x26, 0x00, 0x4f, 0x00, 0x5f, 0x00, 0x5e, 0x00, 0x59, 0x00,\n  0x53, 0x00, 0x6d, 0x00, 0x1f, 0x01, 0x57, 0x01, 0xd0, 0x00, 0x2c, 0x00,\n  0xc6, 0xff, 0xaa, 0xff, 0xbc, 0xff, 0xec, 0xff, 0x08, 0x00, 0x2f, 0x00,\n  0x43, 0x00, 0x7c, 0x00, 0xd4, 0x00, 0xc1, 0x00, 0x85, 0x00, 0xd3, 0x00,\n  0xf8, 0x00, 0x6e, 0x00, 0xf3, 0xff, 0x08, 0x00, 0x0b, 0x00, 0x19, 0x00,\n  0x2e, 0x00, 0xdd, 0xff, 0xcc, 0xff, 0x23, 0x00, 0x26, 0x00, 0xfc, 0xff,\n  0xed, 0xff, 0xf5, 0xff, 0x20, 0x00, 0xc7, 0x00, 0x0d, 0x01, 0xaf, 0x00,\n  0x65, 0x00, 0x4a, 0x00, 0x17, 0x00, 0xc5, 0xff, 0x9b, 0xff, 0xff, 0xff,\n  0x5c, 0x00, 0x17, 0x00, 0xef, 0xff, 0xd8, 0xff, 0xec, 0xff, 0xf8, 0xff,\n  0x5e, 0x00, 0x04, 0x01, 0xfd, 0x00, 0x68, 0x00, 0xef, 0xff, 0x05, 0x00,\n  0xfb, 0xff, 0x11, 0x00, 0x0a, 0x00, 0xbf, 0xff, 0x95, 0xff, 0x90, 0xff,\n  0xa8, 0xff, 0xd4, 0xff, 0xf8, 0xff, 0x10, 0x00, 0x26, 0x00, 0x28, 0x00,\n  0x32, 0x00, 0x2c, 0x00, 0x2e, 0x00, 0x26, 0x00, 0x23, 0x00, 0x17, 0x00,\n  0x0e, 0x00, 0x0d, 0x00, 0x10, 0x00, 0xeb, 0x00, 0x00, 0x01, 0x2c, 0x00,\n  0x93, 0xff, 0x41, 0xff, 0x36, 0xff, 0x47, 0xff, 0x6f, 0xff, 0x93, 0xff,\n  0xb7, 0xff, 0xcf, 0xff, 0xe3, 0xff, 0xef, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xed, 0xff, 0xf9, 0xff, 0x77, 0x00,\n  0xe2, 0x00, 0x9b, 0x00, 0xed, 0xff, 0x6f, 0xff, 0x75, 0xff, 0x60, 0xff,\n  0x1a, 0xff, 0x03, 0xff, 0x1b, 0xff, 0x57, 0xff, 0x89, 0xff, 0xa7, 0xff,\n  0xc2, 0xff, 0xd5, 0xff, 0xe4, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xf0, 0xff,\n  0xed, 0xff, 0xe9, 0xff, 0xfe, 0xff, 0x2f, 0x00, 0x0b, 0x00, 0xe6, 0xff,\n  0x6a, 0x00, 0x85, 0x00, 0xe9, 0xff, 0x4d, 0xff, 0xff, 0xfe, 0xfa, 0xfe,\n  0x21, 0xff, 0x45, 0xff, 0x6f, 0xff, 0x98, 0xff, 0x0e, 0x00, 0x86, 0x00,\n  0x55, 0x00, 0xe4, 0xff, 0xb9, 0xff, 0xce, 0xff, 0xdb, 0xff, 0x96, 0xff,\n  0x36, 0xff, 0x20, 0xff, 0x2a, 0xff, 0x54, 0xff, 0x7e, 0xff, 0xa8, 0xff,\n  0xcc, 0xff, 0x67, 0x00, 0xca, 0x00, 0x70, 0x00, 0xe1, 0xff, 0x72, 0xff,\n  0x41, 0xff, 0x47, 0xff, 0x5c, 0xff, 0x84, 0xff, 0x9f, 0xff, 0xf2, 0xff,\n  0xaf, 0x00, 0x80, 0x00, 0xf3, 0xff, 0xec, 0xff, 0xe4, 0xff, 0x8d, 0xff,\n  0x62, 0xff, 0x4d, 0xff, 0x8a, 0xff, 0x0b, 0x00, 0xf9, 0xff, 0xa7, 0xff,\n  0x7d, 0xff, 0x7e, 0xff, 0x8f, 0xff, 0xb3, 0xff, 0xcb, 0xff, 0xe4, 0xff,\n  0xf3, 0xff, 0x0b, 0x00, 0x26, 0x00, 0x71, 0x00, 0xda, 0x00, 0xa7, 0x00,\n  0x0b, 0x00, 0x87, 0xff, 0x4e, 0xff, 0x4a, 0xff, 0x69, 0xff, 0x90, 0xff,\n  0xba, 0xff, 0xd7, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x79, 0x00, 0x19, 0x01,\n  0xc1, 0x00, 0x43, 0x00, 0xcc, 0xff, 0x77, 0xff, 0x75, 0xff, 0x87, 0xff,\n  0x96, 0xff, 0xab, 0xff, 0xc2, 0xff, 0xe6, 0xff, 0x9a, 0x00, 0xeb, 0x00,\n  0x91, 0x00, 0x07, 0x00, 0xae, 0xff, 0x8f, 0xff, 0x9e, 0xff, 0xb6, 0xff,\n  0x01, 0x00, 0xaf, 0x00, 0x9a, 0x00, 0x2c, 0x00, 0xed, 0xff, 0xd4, 0xff,\n  0xd8, 0xff, 0xec, 0xff, 0x05, 0x00, 0x19, 0x00, 0x2b, 0x00, 0x31, 0x00,\n  0x38, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x43, 0x00, 0x56, 0x00, 0x55, 0x00,\n  0x5b, 0x00, 0x5e, 0x00, 0x46, 0x00, 0x31, 0x00, 0x6a, 0x00, 0xfb, 0x00,\n  0xbf, 0x00, 0x1a, 0x00, 0xad, 0xff, 0x8d, 0xff, 0x8f, 0xff, 0x28, 0x00,\n  0x9b, 0x00, 0x71, 0x00, 0x5b, 0x00, 0x1a, 0x00, 0xe4, 0xff, 0xb7, 0xff,\n  0xc6, 0xff, 0xdb, 0xff, 0x19, 0x00, 0xa6, 0x00, 0xcd, 0x00, 0x8e, 0x00,\n  0x49, 0x00, 0x53, 0x00, 0x2c, 0x00, 0xed, 0xff, 0xd5, 0xff, 0xf6, 0xff,\n  0x0e, 0x00, 0x67, 0x00, 0xd4, 0x00, 0x8e, 0x00, 0x37, 0x00, 0xf6, 0xff,\n  0x14, 0x00, 0x9a, 0x00, 0x83, 0x00, 0x1f, 0x00, 0x05, 0x00, 0x59, 0x00,\n  0x4c, 0x00, 0x04, 0x00, 0xed, 0xff, 0xec, 0xff, 0xfc, 0xff, 0x19, 0x00,\n  0x29, 0x00, 0x47, 0x00, 0x44, 0x00, 0xa0, 0x00, 0x1b, 0x01, 0xb8, 0x00,\n  0x8b, 0x00, 0x7d, 0x00, 0x43, 0x00, 0x1a, 0x00, 0xf5, 0xff, 0xe4, 0xff,\n  0xce, 0xff, 0xb9, 0xff, 0xc0, 0xff, 0xcc, 0xff, 0xdb, 0xff, 0xf3, 0xff,\n  0x0d, 0x00, 0x29, 0x00, 0x40, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x4c, 0x00,\n  0x49, 0x00, 0x43, 0x00, 0x40, 0x00, 0x4a, 0x00, 0x49, 0x00, 0x34, 0x00,\n  0x23, 0x00, 0x19, 0x00, 0x16, 0x00, 0x0a, 0x00, 0x16, 0x00, 0x02, 0x00,\n  0x5e, 0x00, 0xef, 0x00, 0xef, 0x00, 0x65, 0x00, 0xcf, 0xff, 0xba, 0xff,\n  0x80, 0xff, 0x4e, 0xff, 0x4e, 0xff, 0x65, 0xff, 0xd1, 0xff, 0x67, 0x00,\n  0x5f, 0x00, 0xfe, 0xff, 0xc3, 0xff, 0xa8, 0xff, 0xb4, 0xff, 0xc5, 0xff,\n  0x0a, 0x00, 0xb0, 0x00, 0xa3, 0x00, 0x4c, 0x00, 0x1a, 0x00, 0xe4, 0xff,\n  0x93, 0xff, 0x6e, 0xff, 0x6c, 0xff, 0xc6, 0xff, 0x4a, 0x00, 0x3e, 0x00,\n  0x2c, 0x00, 0xdd, 0xff, 0x96, 0xff, 0x7a, 0xff, 0xad, 0xff, 0x31, 0x00,\n  0x22, 0x00, 0xd7, 0xff, 0xa8, 0xff, 0x99, 0xff, 0x9c, 0xff, 0xb6, 0xff,\n  0xc6, 0xff, 0x4f, 0x00, 0xa3, 0x00, 0x53, 0x00, 0x0d, 0x00, 0xa5, 0xff,\n  0x71, 0xff, 0x72, 0xff, 0x77, 0xff, 0x86, 0xff, 0x8d, 0xff, 0xef, 0xff,\n  0x6e, 0x00, 0x22, 0x00, 0x13, 0x00, 0x0a, 0x00, 0xa5, 0xff, 0x69, 0xff,\n  0x5f, 0xff, 0x77, 0xff, 0x87, 0xff, 0xb4, 0xff, 0x35, 0x00, 0x6a, 0x00,\n  0x16, 0x00, 0xb7, 0xff, 0x7e, 0xff, 0x66, 0xff, 0x74, 0xff, 0x84, 0xff,\n  0xc0, 0xff, 0xed, 0xff, 0x43, 0x00, 0x56, 0x00, 0xf0, 0xff, 0xf0, 0xff,\n  0xec, 0xff, 0xa7, 0xff, 0x89, 0xff, 0xa1, 0xff, 0xa5, 0xff, 0xb6, 0xff,\n  0xc8, 0xff, 0xba, 0xff, 0x8f, 0xff, 0x92, 0xff, 0xd7, 0xff, 0xf2, 0xff,\n  0xb7, 0xff, 0x8c, 0xff, 0x81, 0xff, 0x98, 0xff, 0xcb, 0xff, 0xe4, 0xff,\n  0xf6, 0xff, 0xf2, 0xff, 0xe3, 0xff, 0x49, 0x00, 0x6b, 0x00, 0x32, 0x00,\n  0xe3, 0xff, 0x89, 0xff, 0x63, 0xff, 0x62, 0xff, 0xb0, 0xff, 0x22, 0x00,\n  0x0b, 0x00, 0xe4, 0xff, 0x17, 0x00, 0xf2, 0xff, 0xbc, 0xff, 0xc9, 0xff,\n  0xc9, 0xff, 0xb9, 0xff, 0xab, 0xff, 0xab, 0xff, 0xb6, 0xff, 0xcf, 0xff,\n  0x11, 0x00, 0xf3, 0xff, 0xcc, 0xff, 0xb7, 0xff, 0xde, 0xff, 0x4a, 0x00,\n  0x38, 0x00, 0xf3, 0xff, 0xc3, 0xff, 0xcf, 0xff, 0x00, 0x00, 0xfb, 0xff,\n  0xfe, 0xff, 0x16, 0x00, 0xfc, 0xff, 0xe0, 0xff, 0xcf, 0xff, 0x07, 0x00,\n  0x7d, 0x00, 0x56, 0x00, 0xff, 0xff, 0xbd, 0xff, 0xb6, 0xff, 0x04, 0x00,\n  0x4f, 0x00, 0x34, 0x00, 0x29, 0x00, 0x29, 0x00, 0xcf, 0xff, 0x9c, 0xff,\n  0x8f, 0xff, 0xa7, 0xff, 0xc6, 0xff, 0xe7, 0xff, 0x05, 0x00, 0x1f, 0x00,\n  0x2b, 0x00, 0x31, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x35, 0x00,\n  0x34, 0x00, 0x32, 0x00, 0x2f, 0x00, 0x31, 0x00, 0xda, 0x00, 0xfb, 0x00,\n  0x5c, 0x00, 0xf3, 0xff, 0xaa, 0xff, 0xdb, 0xff, 0x2b, 0x00, 0x0e, 0x00,\n  0xce, 0xff, 0xb1, 0xff, 0xd7, 0xff, 0x1a, 0x00, 0x17, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x0a, 0x00, 0x16, 0x00, 0x26, 0x00, 0x34, 0x00, 0x3d, 0x00,\n  0x41, 0x00, 0x46, 0x00, 0x4a, 0x00, 0x53, 0x00, 0xc4, 0x00, 0x07, 0x01,\n  0xb6, 0x00, 0x6e, 0x00, 0x0d, 0x00, 0xb3, 0xff, 0x93, 0xff, 0x99, 0xff,\n  0xbf, 0xff, 0xde, 0xff, 0x16, 0x00, 0x61, 0x00, 0xb0, 0x00, 0xd1, 0x00,\n  0x68, 0x00, 0x38, 0x00, 0x47, 0x00, 0x37, 0x00, 0x1f, 0x00, 0xf9, 0xff,\n  0xce, 0xff, 0xc6, 0xff, 0xd7, 0xff, 0xf3, 0xff, 0x17, 0x00, 0x6d, 0x00,\n  0xb6, 0x00, 0x7d, 0x00, 0x3a, 0x00, 0x07, 0x00, 0x16, 0x00, 0x88, 0x00,\n  0x79, 0x00, 0x2c, 0x00, 0xf3, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xf3, 0xff,\n  0x04, 0x00, 0x3b, 0x00, 0xd3, 0x00, 0xc7, 0x00, 0x4a, 0x00, 0xff, 0xff,\n  0xd4, 0xff, 0x08, 0x00, 0x47, 0x00, 0x3e, 0x00, 0x3e, 0x00, 0x13, 0x00,\n  0xde, 0xff, 0xc0, 0xff, 0xc3, 0xff, 0xd5, 0xff, 0xf0, 0xff, 0x05, 0x00,\n  0x44, 0x00, 0x7c, 0x00, 0x5c, 0x00, 0x3e, 0x00, 0x38, 0x00, 0x1f, 0x00,\n  0x20, 0x00, 0x71, 0x00, 0x59, 0x00, 0x00, 0x00, 0xc3, 0xff, 0xaa, 0xff,\n  0xb1, 0xff, 0xcc, 0xff, 0x43, 0x00, 0x5e, 0x00, 0x1c, 0x00, 0xe6, 0xff,\n  0xce, 0xff, 0xcf, 0xff, 0xec, 0xff, 0x5e, 0x00, 0x5e, 0x00, 0x5b, 0x00,\n  0x28, 0x00, 0xec, 0xff, 0xea, 0xff, 0xb9, 0xff, 0x98, 0xff, 0xa2, 0xff,\n  0xe7, 0xff, 0xf3, 0xff, 0xe3, 0xff, 0xdd, 0xff, 0x10, 0x00, 0x61, 0x00,\n  0x3a, 0x00, 0xec, 0xff, 0xb9, 0xff, 0xa7, 0xff, 0xb0, 0xff, 0xc5, 0xff,\n  0xd7, 0xff, 0xe4, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xf9, 0xff, 0x0d, 0x00, 0x86, 0x00, 0x85, 0x00, 0x61, 0x00,\n  0x08, 0x00, 0x90, 0xff, 0x56, 0xff, 0x48, 0xff, 0x5d, 0xff, 0x7d, 0xff,\n  0x9b, 0xff, 0xba, 0xff, 0xcf, 0xff, 0xdd, 0xff, 0xed, 0xff, 0xef, 0xff,\n  0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xea, 0xff,\n  0xe4, 0xff, 0xda, 0xff, 0xde, 0xff, 0xe1, 0xff, 0xda, 0xff, 0xde, 0xff,\n  0xd1, 0xff, 0x40, 0x00, 0x97, 0x00, 0x4a, 0x00, 0xc8, 0xff, 0x65, 0xff,\n  0x8d, 0xff, 0x99, 0xff, 0x6e, 0xff, 0x66, 0xff, 0x65, 0xff, 0x7a, 0xff,\n  0x89, 0xff, 0xb1, 0xff, 0xd5, 0xff, 0x16, 0x00, 0x47, 0x00, 0x2c, 0x00,\n  0x2b, 0x00, 0xfc, 0xff, 0xed, 0xff, 0xd4, 0xff, 0xc0, 0xff, 0xa1, 0xff,\n  0x7a, 0xff, 0x87, 0xff, 0xb0, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xba, 0xff,\n  0xc9, 0xff, 0xd4, 0xff, 0xe4, 0xff, 0xf0, 0xff, 0x55, 0x00, 0x92, 0x00,\n  0x32, 0x00, 0xe4, 0xff, 0xe7, 0xff, 0xdb, 0xff, 0xe1, 0xff, 0xd2, 0xff,\n  0x9e, 0xff, 0x87, 0xff, 0xab, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xce, 0xff,\n  0xc2, 0xff, 0xc2, 0xff, 0xba, 0xff, 0xb3, 0xff, 0xdb, 0xff, 0x46, 0x00,\n  0x56, 0x00, 0x26, 0x00, 0xde, 0xff, 0xb6, 0xff, 0xab, 0xff, 0xb3, 0xff,\n  0xc6, 0xff, 0xdb, 0xff, 0xed, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x13, 0x00,\n  0x0d, 0x00, 0x5c, 0x00, 0xc4, 0x00, 0x9e, 0x00, 0x31, 0x00, 0xd4, 0xff,\n  0xdb, 0xff, 0xd7, 0xff, 0xae, 0xff, 0x8f, 0xff, 0x8d, 0xff, 0xa5, 0xff,\n  0xc5, 0xff, 0xe0, 0xff, 0xfb, 0xff, 0x13, 0x00, 0x58, 0x00, 0xa0, 0x00,\n  0x94, 0x00, 0x56, 0x00, 0x1f, 0x00, 0x17, 0x00, 0xe7, 0xff, 0xb1, 0xff,\n  0xc2, 0xff, 0x28, 0x00, 0x43, 0x00, 0xff, 0xff, 0xd1, 0xff, 0xc2, 0xff,\n  0xce, 0xff, 0xe4, 0xff, 0x04, 0x00, 0x55, 0x00, 0x64, 0x00, 0x37, 0x00,\n  0x22, 0x00, 0x31, 0x00, 0x34, 0x00, 0x1c, 0x00, 0x10, 0x00, 0x0b, 0x00,\n  0x0b, 0x00, 0x14, 0x00, 0x1c, 0x00, 0x23, 0x00, 0x2b, 0x00, 0x2c, 0x00,\n  0x31, 0x00, 0x31, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x2e, 0x00, 0x2b, 0x00,\n  0x2e, 0x00, 0x2e, 0x00, 0x29, 0x00, 0x2b, 0x00, 0x28, 0x00, 0x2e, 0x00,\n  0x22, 0x00, 0xa7, 0x00, 0xf8, 0x00, 0x7f, 0x00, 0x0a, 0x00, 0xda, 0xff,\n  0xf6, 0xff, 0x1f, 0x00, 0x04, 0x00, 0xcc, 0xff, 0xb7, 0xff, 0xbc, 0xff,\n  0xd2, 0xff, 0xfb, 0xff, 0x0e, 0x00, 0x70, 0x00, 0xb9, 0x00, 0x74, 0x00,\n  0x29, 0x00, 0xf9, 0xff, 0xef, 0xff, 0xf3, 0xff, 0x01, 0x00, 0x0b, 0x00,\n  0x23, 0x00, 0x26, 0x00, 0x37, 0x00, 0x31, 0x00, 0x74, 0x00, 0xf2, 0x00,\n  0xc1, 0x00, 0x3d, 0x00, 0xe4, 0xff, 0xbd, 0xff, 0xb7, 0xff, 0xc8, 0xff,\n  0xdd, 0xff, 0xf5, 0xff, 0x0b, 0x00, 0x17, 0x00, 0x25, 0x00, 0x2c, 0x00,\n  0x32, 0x00, 0x32, 0x00, 0x32, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x28, 0x00,\n  0x23, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x17, 0x00,\n  0x19, 0x00, 0x14, 0x00, 0x17, 0x00, 0x08, 0x00, 0x55, 0x00, 0xdc, 0x00,\n  0xa1, 0x00, 0x2f, 0x00, 0x02, 0x00, 0xef, 0xff, 0xb1, 0xff, 0x74, 0xff,\n  0x7e, 0xff, 0xbf, 0xff, 0xc5, 0xff, 0xf0, 0xff, 0x2c, 0x00, 0x0b, 0x00,\n  0xe0, 0xff, 0xc8, 0xff, 0xcb, 0xff, 0xd7, 0xff, 0xf5, 0xff, 0x4d, 0x00,\n  0x56, 0x00, 0x20, 0x00, 0xf9, 0xff, 0x25, 0x00, 0x4c, 0x00, 0x0d, 0x00,\n  0xd5, 0xff, 0xb7, 0xff, 0xb3, 0xff, 0xbd, 0xff, 0xd7, 0xff, 0xe9, 0xff,\n  0xf2, 0xff, 0x14, 0x00, 0x82, 0x00, 0x85, 0x00, 0x43, 0x00, 0x05, 0x00,\n  0xdb, 0xff, 0xb6, 0xff, 0x8c, 0xff, 0x80, 0xff, 0x96, 0xff, 0xbf, 0xff,\n  0xc9, 0xff, 0xd7, 0xff, 0xde, 0xff, 0xe7, 0xff, 0xf6, 0xff, 0x64, 0x00,\n  0x82, 0x00, 0x25, 0x00, 0xcf, 0xff, 0x9c, 0xff, 0x95, 0xff, 0x9e, 0xff,\n  0xab, 0xff, 0xc3, 0xff, 0xd1, 0xff, 0xe1, 0xff, 0xf8, 0xff, 0x26, 0x00,\n  0x7c, 0x00, 0x5e, 0x00, 0x0b, 0x00, 0xc8, 0xff, 0xcb, 0xff, 0xc0, 0xff,\n  0x96, 0xff, 0x7e, 0xff, 0x7e, 0xff, 0x99, 0xff, 0xd2, 0xff, 0xe3, 0xff,\n  0xda, 0xff, 0xd1, 0xff, 0xce, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xe0, 0xff,\n  0xe9, 0xff, 0x3a, 0x00, 0x49, 0x00, 0x16, 0x00, 0x22, 0x00, 0xf5, 0xff,\n  0xb9, 0xff, 0x89, 0xff, 0x9f, 0xff, 0xe7, 0xff, 0xda, 0xff, 0xb3, 0xff,\n  0x9f, 0xff, 0x9c, 0xff, 0xa8, 0xff, 0xbc, 0xff, 0xd1, 0xff, 0xde, 0xff,\n  0xe7, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0x5c, 0x00, 0x77, 0x00, 0x4f, 0x00,\n  0x1a, 0x00, 0xde, 0xff, 0xbf, 0xff, 0xa5, 0xff, 0x92, 0xff, 0xba, 0xff,\n  0xc9, 0xff, 0xb4, 0xff, 0x9f, 0xff, 0x98, 0xff, 0xbc, 0xff, 0xc3, 0xff,\n  0xce, 0xff, 0xcf, 0xff, 0xfc, 0xff, 0x4a, 0x00, 0x38, 0x00, 0x04, 0x00,\n  0xde, 0xff, 0xcc, 0xff, 0xd4, 0xff, 0xfe, 0xff, 0x43, 0x00, 0x49, 0x00,\n  0x2f, 0x00, 0xf8, 0xff, 0xba, 0xff, 0xae, 0xff, 0xe7, 0xff, 0xfc, 0xff,\n  0xd8, 0xff, 0xc2, 0xff, 0xc5, 0xff, 0x25, 0x00, 0x47, 0x00, 0x19, 0x00,\n  0xe4, 0xff, 0xbf, 0xff, 0xb7, 0xff, 0xc0, 0xff, 0xd5, 0xff, 0xe7, 0xff,\n  0xfc, 0xff, 0x08, 0x00, 0x13, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1f, 0x00,\n  0x2e, 0x00, 0x9e, 0x00, 0xb3, 0x00, 0x52, 0x00, 0xe6, 0xff, 0xd4, 0xff,\n  0xf9, 0xff, 0xf5, 0xff, 0xec, 0xff, 0xe0, 0xff, 0xda, 0xff, 0xcf, 0xff,\n  0xfe, 0xff, 0x0a, 0x00, 0x04, 0x00, 0xe9, 0xff, 0xdb, 0xff, 0xe0, 0xff,\n  0xec, 0xff, 0xfe, 0xff, 0x0d, 0x00, 0x1c, 0x00, 0x28, 0x00, 0x2e, 0x00,\n  0x32, 0x00, 0x38, 0x00, 0x38, 0x00, 0x32, 0x00, 0x2c, 0x00, 0x2b, 0x00,\n  0x22, 0x00, 0x1d, 0x00, 0x2c, 0x00, 0x37, 0x00, 0x2b, 0x00, 0x1c, 0x00,\n  0x1c, 0x00, 0x17, 0x00, 0x14, 0x00, 0x11, 0x00, 0x3b, 0x00, 0xa1, 0x00,\n  0x8c, 0x00, 0x44, 0x00, 0x35, 0x00, 0xf8, 0xff, 0xb9, 0xff, 0xa2, 0xff,\n  0xae, 0xff, 0xc6, 0xff, 0xe1, 0xff, 0xfb, 0xff, 0x0b, 0x00, 0x20, 0x00,\n  0x2e, 0x00, 0x37, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x37, 0x00,\n  0x38, 0x00, 0x44, 0x00, 0x9d, 0x00, 0xdc, 0x00, 0x73, 0x00, 0x14, 0x00,\n  0xf2, 0xff, 0xd1, 0xff, 0xb6, 0xff, 0xbd, 0xff, 0xcb, 0xff, 0xdd, 0xff,\n  0x05, 0x00, 0x38, 0x00, 0x43, 0x00, 0x44, 0x00, 0x68, 0x00, 0x5f, 0x00,\n  0x23, 0x00, 0xed, 0xff, 0xdb, 0xff, 0xd2, 0xff, 0x01, 0x00, 0x2b, 0x00,\n  0x47, 0x00, 0x53, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x11, 0x00, 0xf9, 0xff,\n  0x16, 0x00, 0x22, 0x00, 0xff, 0xff, 0xe9, 0xff, 0xe3, 0xff, 0xe4, 0xff,\n  0xf5, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x1a, 0x00, 0x20, 0x00, 0x3b, 0x00,\n  0x40, 0x00, 0x40, 0x00, 0x2b, 0x00, 0x20, 0x00, 0x53, 0x00, 0x74, 0x00,\n  0x3a, 0x00, 0x00, 0x00, 0xe4, 0xff, 0xc6, 0xff, 0xab, 0xff, 0xd1, 0xff,\n  0x10, 0x00, 0xfc, 0xff, 0xe0, 0xff, 0xd1, 0xff, 0xd5, 0xff, 0xe6, 0xff,\n  0xed, 0xff, 0x07, 0x00, 0x2b, 0x00, 0x26, 0x00, 0x2b, 0x00, 0x4a, 0x00,\n  0x56, 0x00, 0x31, 0x00, 0x0b, 0x00, 0xcc, 0xff, 0xab, 0xff, 0x9f, 0xff,\n  0xaa, 0xff, 0xc2, 0xff, 0xd2, 0xff, 0xe6, 0xff, 0xf6, 0xff, 0xff, 0xff,\n  0x04, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x08, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf3, 0xff,\n  0xf6, 0xff, 0x16, 0x00, 0x1f, 0x00, 0x05, 0x00, 0xea, 0xff, 0xce, 0xff,\n  0xc8, 0xff, 0xc6, 0xff, 0xcf, 0xff, 0xd5, 0xff, 0xda, 0xff, 0xd8, 0xff,\n  0xec, 0xff, 0x49, 0x00, 0x3b, 0x00, 0xf6, 0xff, 0xc0, 0xff, 0xc0, 0xff,\n  0x13, 0x00, 0x0d, 0x00, 0xd5, 0xff, 0xbf, 0xff, 0xcc, 0xff, 0xb3, 0xff,\n  0x96, 0xff, 0x8c, 0xff, 0x95, 0xff, 0xad, 0xff, 0xbd, 0xff, 0xda, 0xff,\n  0xde, 0xff, 0x11, 0x00, 0x74, 0x00, 0x6b, 0x00, 0x0d, 0x00, 0xd2, 0xff,\n  0xf0, 0xff, 0xd5, 0xff, 0xaa, 0xff, 0x99, 0xff, 0x9c, 0xff, 0xaa, 0xff,\n  0xbc, 0xff, 0xd1, 0xff, 0xdb, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xf6, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf3, 0xff,\n  0xf0, 0xff, 0xef, 0xff, 0xec, 0xff, 0xea, 0xff, 0xea, 0xff, 0xe9, 0xff,\n  0xea, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xec, 0xff,\n  0xf0, 0xff, 0xea, 0xff, 0xef, 0xff, 0xe9, 0xff, 0x38, 0x00, 0x79, 0x00,\n  0x2c, 0x00, 0xdb, 0xff, 0xa4, 0xff, 0x95, 0xff, 0x96, 0xff, 0x9f, 0xff,\n  0xba, 0xff, 0xd8, 0xff, 0xe6, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf6, 0xff,\n  0xf8, 0xff, 0xff, 0xff, 0x0b, 0x00, 0x88, 0x00, 0x8b, 0x00, 0x22, 0x00,\n  0xf2, 0xff, 0xfe, 0xff, 0xf0, 0xff, 0xd2, 0xff, 0xb7, 0xff, 0xa2, 0xff,\n  0xcb, 0xff, 0xd8, 0xff, 0xc8, 0xff, 0xc5, 0xff, 0xcc, 0xff, 0xdb, 0xff,\n  0xfc, 0xff, 0x43, 0x00, 0x73, 0x00, 0x4c, 0x00, 0x0a, 0x00, 0xe7, 0xff,\n  0xda, 0xff, 0xdd, 0xff, 0xe4, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x08, 0x00,\n  0x13, 0x00, 0x16, 0x00, 0x1f, 0x00, 0x34, 0x00, 0x5e, 0x00, 0x5e, 0x00,\n  0x28, 0x00, 0x05, 0x00, 0xea, 0xff, 0xf5, 0xff, 0x4c, 0x00, 0x5b, 0x00,\n  0x22, 0x00, 0x0a, 0x00, 0xf3, 0xff, 0xe0, 0xff, 0xdb, 0xff, 0xef, 0xff,\n  0xfb, 0xff, 0xe6, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xef, 0xff, 0x05, 0x00,\n  0x4f, 0x00, 0x83, 0x00, 0x50, 0x00, 0x16, 0x00, 0xf8, 0xff, 0xf0, 0xff,\n  0x2c, 0x00, 0x6d, 0x00, 0x49, 0x00, 0x07, 0x00, 0xe3, 0xff, 0xd4, 0xff,\n  0xea, 0xff, 0x0b, 0x00, 0x16, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x16, 0x00,\n  0x68, 0x00, 0x8f, 0x00, 0x5f, 0x00, 0x25, 0x00, 0xed, 0xff, 0xd8, 0xff,\n  0xd8, 0xff, 0xe3, 0xff, 0xf6, 0xff, 0x04, 0x00, 0x19, 0x00, 0x34, 0x00,\n  0x3d, 0x00, 0x32, 0x00, 0x41, 0x00, 0x5f, 0x00, 0x47, 0x00, 0x1d, 0x00,\n  0x01, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x17, 0x00,\n  0x67, 0x00, 0x71, 0x00, 0x65, 0x00, 0x3d, 0x00, 0xf5, 0xff, 0xcf, 0xff,\n  0xc2, 0xff, 0xcc, 0xff, 0xec, 0xff, 0x11, 0x00, 0x4f, 0x00, 0x61, 0x00,\n  0x31, 0x00, 0xff, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xf3, 0xff,\n  0xfe, 0xff, 0x0b, 0x00, 0x13, 0x00, 0x22, 0x00, 0x5b, 0x00, 0x8c, 0x00,\n  0x6d, 0x00, 0x23, 0x00, 0xe9, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xd5, 0xff,\n  0xe1, 0xff, 0x01, 0x00, 0x52, 0x00, 0x49, 0x00, 0x16, 0x00, 0xed, 0xff,\n  0xf9, 0xff, 0x2e, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x10, 0x00, 0xe7, 0xff,\n  0xd1, 0xff, 0xf0, 0xff, 0x01, 0x00, 0xed, 0xff, 0xde, 0xff, 0xdd, 0xff,\n  0xe0, 0xff, 0x14, 0x00, 0x56, 0x00, 0x35, 0x00, 0x05, 0x00, 0xe0, 0xff,\n  0xd5, 0xff, 0xd5, 0xff, 0xdb, 0xff, 0xe6, 0xff, 0xf5, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x0b, 0x00, 0x19, 0x00, 0x0a, 0x00, 0x37, 0x00, 0x76, 0x00,\n  0x3a, 0x00, 0x01, 0x00, 0xce, 0xff, 0xb4, 0xff, 0xab, 0xff, 0xe7, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xdd, 0xff, 0xc2, 0xff, 0xb6, 0xff,\n  0xbd, 0xff, 0xc9, 0xff, 0xd5, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0x16, 0x00, 0x62, 0x00, 0x7a, 0x00, 0x37, 0x00, 0xf0, 0xff,\n  0xc9, 0xff, 0xc6, 0xff, 0xae, 0xff, 0x99, 0xff, 0x9c, 0xff, 0xa8, 0xff,\n  0xba, 0xff, 0xc9, 0xff, 0xde, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xf9, 0xff,\n  0x05, 0x00, 0x1f, 0x00, 0x1d, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x0b, 0x00,\n  0x22, 0x00, 0x25, 0x00, 0xf0, 0xff, 0xc3, 0xff, 0xaa, 0xff, 0xa4, 0xff,\n  0xb4, 0xff, 0xd4, 0xff, 0x08, 0x00, 0x25, 0x00, 0x1c, 0x00, 0xe9, 0xff,\n  0xb9, 0xff, 0xc3, 0xff, 0xdd, 0xff, 0xd5, 0xff, 0xef, 0xff, 0xe9, 0xff,\n  0xd4, 0xff, 0xce, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xcc, 0xff, 0xd5, 0xff,\n  0xe1, 0xff, 0xed, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x59, 0x00,\n  0x67, 0x00, 0x35, 0x00, 0x13, 0x00, 0xe3, 0xff, 0xbd, 0xff, 0x9b, 0xff,\n  0x9e, 0xff, 0xa7, 0xff, 0xbc, 0xff, 0xcc, 0xff, 0xf9, 0xff, 0x49, 0x00,\n  0x52, 0x00, 0x14, 0x00, 0xe0, 0xff, 0xc6, 0xff, 0xbf, 0xff, 0xc3, 0xff,\n  0xd1, 0xff, 0xde, 0xff, 0xec, 0xff, 0xfb, 0xff, 0x17, 0x00, 0x5f, 0x00,\n  0x6b, 0x00, 0x2f, 0x00, 0xef, 0xff, 0xc2, 0xff, 0xd4, 0xff, 0xff, 0xff,\n  0xec, 0xff, 0xd1, 0xff, 0xc2, 0xff, 0xcb, 0xff, 0xd5, 0xff, 0xe4, 0xff,\n  0xf0, 0xff, 0xfe, 0xff, 0x16, 0x00, 0x1c, 0x00, 0x17, 0x00, 0x11, 0x00,\n  0x55, 0x00, 0x74, 0x00, 0x44, 0x00, 0x0b, 0x00, 0xdb, 0xff, 0xec, 0xff,\n  0xe1, 0xff, 0xc9, 0xff, 0xce, 0xff, 0xd7, 0xff, 0xe0, 0xff, 0x17, 0x00,\n  0x37, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x02, 0x00, 0xf2, 0xff, 0xf6, 0xff,\n  0xea, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xef, 0xff, 0xf9, 0xff, 0x05, 0x00,\n  0x0d, 0x00, 0x16, 0x00, 0x19, 0x00, 0x2e, 0x00, 0x8b, 0x00, 0x89, 0x00,\n  0x3e, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0x14, 0x00, 0x0b, 0x00, 0xef, 0xff,\n  0xd7, 0xff, 0xdb, 0xff, 0x04, 0x00, 0x2c, 0x00, 0x1a, 0x00, 0xf6, 0xff,\n  0xea, 0xff, 0xef, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x0e, 0x00, 0x17, 0x00,\n  0x25, 0x00, 0x1f, 0x00, 0x4f, 0x00, 0x8f, 0x00, 0x61, 0x00, 0x25, 0x00,\n  0xf8, 0xff, 0xe1, 0xff, 0xe0, 0xff, 0xe9, 0xff, 0xf5, 0xff, 0x00, 0x00,\n  0x0a, 0x00, 0x26, 0x00, 0x35, 0x00, 0x53, 0x00, 0x70, 0x00, 0x56, 0x00,\n  0x1c, 0x00, 0xef, 0xff, 0xd8, 0xff, 0xdb, 0xff, 0xe7, 0xff, 0xf6, 0xff,\n  0x32, 0x00, 0x4f, 0x00, 0x26, 0x00, 0x04, 0x00, 0xed, 0xff, 0xec, 0xff,\n  0xef, 0xff, 0x08, 0x00, 0x22, 0x00, 0x47, 0x00, 0x65, 0x00, 0x41, 0x00,\n  0x08, 0x00, 0xe7, 0xff, 0xda, 0xff, 0x04, 0x00, 0x3a, 0x00, 0x26, 0x00,\n  0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xfb, 0xff, 0x1a, 0x00, 0x11, 0x00,\n  0x07, 0x00, 0x02, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x2e, 0x00, 0x4a, 0x00,\n  0x46, 0x00, 0x2c, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xf0, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0xe9, 0xff, 0xe1, 0xff, 0x0a, 0x00, 0x0a, 0x00,\n  0x10, 0x00, 0x1c, 0x00, 0x01, 0x00, 0xf5, 0xff, 0xe4, 0xff, 0xe3, 0xff,\n  0xe6, 0xff, 0xfe, 0xff, 0x32, 0x00, 0x50, 0x00, 0x3d, 0x00, 0x07, 0x00,\n  0xe1, 0xff, 0xce, 0xff, 0xcb, 0xff, 0xd4, 0xff, 0xe1, 0xff, 0xef, 0xff,\n  0xf8, 0xff, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x11, 0x00, 0x16, 0x00, 0x08, 0x00, 0xf9, 0xff,\n  0xf5, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xec, 0xff, 0xf0, 0xff, 0x35, 0x00,\n  0x59, 0x00, 0x37, 0x00, 0x11, 0x00, 0xd8, 0xff, 0xad, 0xff, 0x96, 0xff,\n  0x9c, 0xff, 0xa8, 0xff, 0xbc, 0xff, 0xcf, 0xff, 0xde, 0xff, 0xef, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0x02, 0x00, 0xff, 0xff, 0x2f, 0x00, 0x56, 0x00,\n  0x3a, 0x00, 0x29, 0x00, 0x00, 0x00, 0xcf, 0xff, 0xb0, 0xff, 0xa8, 0xff,\n  0xb7, 0xff, 0xef, 0xff, 0xf8, 0xff, 0xda, 0xff, 0xc6, 0xff, 0xbd, 0xff,\n  0xc6, 0xff, 0xd2, 0xff, 0xdd, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xf8, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0x04, 0x00,\n  0x5e, 0x00, 0x58, 0x00, 0x0b, 0x00, 0xd4, 0xff, 0xae, 0xff, 0xab, 0xff,\n  0xae, 0xff, 0xb9, 0xff, 0xc8, 0xff, 0xd4, 0xff, 0xe1, 0xff, 0xea, 0xff,\n  0xec, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x61, 0x00,\n  0x65, 0x00, 0x11, 0x00, 0xe1, 0xff, 0xdb, 0xff, 0xc0, 0xff, 0xad, 0xff,\n  0xa5, 0xff, 0xab, 0xff, 0xbc, 0xff, 0xcc, 0xff, 0xdb, 0xff, 0xf5, 0xff,\n  0x10, 0x00, 0x10, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf2, 0xff,\n  0x00, 0x00, 0x4a, 0x00, 0x55, 0x00, 0x17, 0x00, 0xf0, 0xff, 0xe9, 0xff,\n  0xe6, 0xff, 0xce, 0xff, 0xb9, 0xff, 0xb6, 0xff, 0xc0, 0xff, 0xcc, 0xff,\n  0xde, 0xff, 0xef, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x08, 0x00, 0x0b, 0x00,\n  0x0a, 0x00, 0x14, 0x00, 0x16, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x11, 0x00, 0x32, 0x00, 0x26, 0x00, 0x34, 0x00, 0x2f, 0x00, 0x0d, 0x00,\n  0xec, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xdd, 0xff, 0xed, 0xff, 0x07, 0x00,\n  0x08, 0x00, 0xfc, 0xff, 0xf0, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe4, 0xff,\n  0xf2, 0xff, 0x16, 0x00, 0x3e, 0x00, 0x1d, 0x00, 0x01, 0x00, 0x0a, 0x00,\n  0x13, 0x00, 0x11, 0x00, 0xfc, 0xff, 0xed, 0xff, 0xe3, 0xff, 0xef, 0xff,\n  0xf6, 0xff, 0x00, 0x00, 0x0b, 0x00, 0x17, 0x00, 0x17, 0x00, 0x23, 0x00,\n  0x25, 0x00, 0x23, 0x00, 0x1f, 0x00, 0x17, 0x00, 0x17, 0x00, 0x14, 0x00,\n  0x17, 0x00, 0x16, 0x00, 0x16, 0x00, 0x11, 0x00, 0x13, 0x00, 0x11, 0x00,\n  0x31, 0x00, 0x86, 0x00, 0x70, 0x00, 0x26, 0x00, 0x08, 0x00, 0xe7, 0xff,\n  0xd1, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xf9, 0xff, 0x1c, 0x00,\n  0x07, 0x00, 0xec, 0xff, 0xde, 0xff, 0xe3, 0xff, 0xec, 0xff, 0x08, 0x00,\n  0x3e, 0x00, 0x4d, 0x00, 0x47, 0x00, 0x1c, 0x00, 0x04, 0x00, 0x19, 0x00,\n  0x1f, 0x00, 0x10, 0x00, 0xf3, 0xff, 0xef, 0xff, 0x10, 0x00, 0x11, 0x00,\n  0xfc, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x08, 0x00,\n  0x13, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1d, 0x00, 0x1a, 0x00, 0x19, 0x00,\n  0x19, 0x00, 0x16, 0x00, 0x16, 0x00, 0x14, 0x00, 0x0e, 0x00, 0x13, 0x00,\n  0x10, 0x00, 0x13, 0x00, 0x22, 0x00, 0x37, 0x00, 0x2c, 0x00, 0x35, 0x00,\n  0x49, 0x00, 0x22, 0x00, 0xec, 0xff, 0xc6, 0xff, 0xc6, 0xff, 0xef, 0xff,\n  0x01, 0x00, 0xec, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xde, 0xff, 0xe6, 0xff,\n  0xf0, 0xff, 0xf5, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00,\n  0x16, 0x00, 0x2e, 0x00, 0x41, 0x00, 0x4d, 0x00, 0x40, 0x00, 0x22, 0x00,\n  0x04, 0x00, 0xe1, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xcc, 0xff, 0xc8, 0xff,\n  0xcc, 0xff, 0xd2, 0xff, 0xe4, 0xff, 0xed, 0xff, 0x1f, 0x00, 0x52, 0x00,\n  0x29, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x05, 0x00, 0xf2, 0xff, 0xd4, 0xff,\n  0xc9, 0xff, 0xcb, 0xff, 0xd2, 0xff, 0xde, 0xff, 0xe9, 0xff, 0xf5, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x25, 0x00, 0x4c, 0x00, 0x3a, 0x00, 0x13, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x13, 0x00, 0xec, 0xff, 0xc3, 0xff, 0xb0, 0xff,\n  0xae, 0xff, 0xb9, 0xff, 0xc5, 0xff, 0xd8, 0xff, 0xe9, 0xff, 0xf2, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0x20, 0x00, 0x53, 0x00, 0x2c, 0x00, 0xff, 0xff,\n  0xdd, 0xff, 0xce, 0xff, 0xcc, 0xff, 0xce, 0xff, 0xda, 0xff, 0xe7, 0xff,\n  0xf3, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf3, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf3, 0xff,\n  0xef, 0xff, 0x1a, 0x00, 0x65, 0x00, 0x43, 0x00, 0xfb, 0xff, 0xcc, 0xff,\n  0xc3, 0xff, 0xcc, 0xff, 0xda, 0xff, 0xce, 0xff, 0xd1, 0xff, 0xde, 0xff,\n  0xd1, 0xff, 0xc5, 0xff, 0xcb, 0xff, 0xd5, 0xff, 0xde, 0xff, 0xe1, 0xff,\n  0xfe, 0xff, 0x2e, 0x00, 0x31, 0x00, 0x1c, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xf8, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xec, 0xff, 0xdd, 0xff,\n  0xf0, 0xff, 0xed, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xe7, 0xff, 0xdd, 0xff,\n  0xde, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf3, 0xff,\n  0xfb, 0xff, 0x02, 0x00, 0x1f, 0x00, 0x28, 0x00, 0x11, 0x00, 0xfe, 0xff,\n  0xf3, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0x05, 0x00, 0x43, 0x00, 0x56, 0x00, 0x3a, 0x00, 0x08, 0x00, 0xda, 0xff,\n  0xc3, 0xff, 0xbd, 0xff, 0xcc, 0xff, 0xfb, 0xff, 0x1c, 0x00, 0x14, 0x00,\n  0xf8, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xec, 0xff, 0xf3, 0xff,\n  0xfc, 0xff, 0x23, 0x00, 0x4f, 0x00, 0x3b, 0x00, 0x11, 0x00, 0xf2, 0xff,\n  0xe1, 0xff, 0xe3, 0xff, 0xe9, 0xff, 0xef, 0xff, 0x1c, 0x00, 0x70, 0x00,\n  0x52, 0x00, 0x0b, 0x00, 0xe7, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xdb, 0xff,\n  0xe9, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x07, 0x00, 0x0e, 0x00, 0x16, 0x00,\n  0x19, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x19, 0x00,\n  0x6a, 0x00, 0x7f, 0x00, 0x3b, 0x00, 0x13, 0x00, 0xed, 0xff, 0xd1, 0xff,\n  0xc6, 0xff, 0xcb, 0xff, 0xd5, 0xff, 0xe7, 0xff, 0xf6, 0xff, 0x29, 0x00,\n  0x4d, 0x00, 0x44, 0x00, 0x28, 0x00, 0x04, 0x00, 0xe9, 0xff, 0xf9, 0xff,\n  0x19, 0x00, 0x1d, 0x00, 0x14, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xf9, 0xff, 0xed, 0xff, 0xf9, 0xff, 0x1c, 0x00, 0x17, 0x00, 0x07, 0x00,\n  0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x0e, 0x00, 0x40, 0x00, 0x4f, 0x00,\n  0x2c, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x22, 0x00, 0x08, 0x00,\n  0xf0, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xf5, 0xff, 0x01, 0x00,\n  0x0b, 0x00, 0x11, 0x00, 0x1c, 0x00, 0x20, 0x00, 0x1a, 0x00, 0x14, 0x00,\n  0x10, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00,\n  0x0b, 0x00, 0x4a, 0x00, 0x70, 0x00, 0x38, 0x00, 0xff, 0xff, 0xdb, 0xff,\n  0xce, 0xff, 0xcb, 0xff, 0xdb, 0xff, 0xfb, 0xff, 0x23, 0x00, 0x2c, 0x00,\n  0x22, 0x00, 0x07, 0x00, 0xed, 0xff, 0xda, 0xff, 0xda, 0xff, 0xdd, 0xff,\n  0xe9, 0xff, 0xf0, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x07, 0x00, 0x0b, 0x00,\n  0x0d, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x47, 0x00,\n  0x5e, 0x00, 0x3d, 0x00, 0x23, 0x00, 0xf2, 0xff, 0xda, 0xff, 0xce, 0xff,\n  0xd5, 0xff, 0xd5, 0xff, 0xcc, 0xff, 0xc9, 0xff, 0xed, 0xff, 0x0e, 0x00,\n  0xff, 0xff, 0xef, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xf3, 0xff, 0xf2, 0xff,\n  0xf2, 0xff, 0x14, 0x00, 0x3a, 0x00, 0x29, 0x00, 0x01, 0x00, 0xe4, 0xff,\n  0xd7, 0xff, 0xe3, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xe7, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0xe7, 0xff, 0xdb, 0xff, 0xd5, 0xff, 0xdb, 0xff, 0xde, 0xff,\n  0xe7, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x2e, 0x00, 0x52, 0x00,\n  0x2b, 0x00, 0xf0, 0xff, 0xce, 0xff, 0xbf, 0xff, 0xb9, 0xff, 0xd4, 0xff,\n  0x01, 0x00, 0x14, 0x00, 0x02, 0x00, 0xe0, 0xff, 0xcf, 0xff, 0xc9, 0xff,\n  0xcb, 0xff, 0xd7, 0xff, 0xe3, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf6, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0x14, 0x00, 0x53, 0x00, 0x49, 0x00, 0x0e, 0x00, 0xdb, 0xff,\n  0xc9, 0xff, 0xcf, 0xff, 0xc8, 0xff, 0xc6, 0xff, 0xcb, 0xff, 0xd4, 0xff,\n  0xdd, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x38, 0x00, 0x5f, 0x00,\n  0x2f, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xcf, 0xff, 0xba, 0xff,\n  0xb9, 0xff, 0xce, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe6, 0xff, 0xf0, 0xff,\n  0xf3, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x3b, 0x00, 0x5e, 0x00,\n  0x2c, 0x00, 0xfb, 0xff, 0xe0, 0xff, 0xd5, 0xff, 0xf6, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x0a, 0x00, 0xf5, 0xff, 0xe7, 0xff, 0xdd, 0xff, 0xe1, 0xff,\n  0xe4, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x10, 0x00, 0x22, 0x00, 0x23, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x2c, 0x00,\n  0x2c, 0x00, 0x01, 0x00, 0xe6, 0xff, 0xd8, 0xff, 0xd4, 0xff, 0xec, 0xff,\n  0x11, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xff, 0xff,\n  0x0e, 0x00, 0xfc, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe6, 0xff, 0xe9, 0xff,\n  0x01, 0x00, 0x2f, 0x00, 0x40, 0x00, 0x28, 0x00, 0x14, 0x00, 0x13, 0x00,\n  0x08, 0x00, 0x04, 0x00, 0xf9, 0xff, 0x07, 0x00, 0x04, 0x00, 0xfb, 0xff,\n  0xf5, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0x04, 0x00,\n  0x0e, 0x00, 0x2f, 0x00, 0x55, 0x00, 0x5c, 0x00, 0x29, 0x00, 0xff, 0xff,\n  0xe1, 0xff, 0xda, 0xff, 0xe1, 0xff, 0xe9, 0xff, 0xf9, 0xff, 0x00, 0x00,\n  0x04, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x17, 0x00, 0x17, 0x00, 0x19, 0x00,\n  0x14, 0x00, 0x10, 0x00, 0x11, 0x00, 0x11, 0x00, 0x0d, 0x00, 0x35, 0x00,\n  0x6a, 0x00, 0x4d, 0x00, 0x20, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf5, 0xff,\n  0xea, 0xff, 0xe1, 0xff, 0xd7, 0xff, 0xd8, 0xff, 0xda, 0xff, 0xf5, 0xff,\n  0x0e, 0x00, 0x2c, 0x00, 0x26, 0x00, 0x0d, 0x00, 0xfe, 0xff, 0xf3, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x07, 0x00, 0x0e, 0x00, 0x10, 0x00,\n  0x11, 0x00, 0x10, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x0a, 0x00, 0x0b, 0x00,\n  0x17, 0x00, 0x20, 0x00, 0x14, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x40, 0x00, 0x65, 0x00, 0x3e, 0x00, 0x00, 0x00,\n  0xea, 0xff, 0xe9, 0xff, 0xe4, 0xff, 0xd7, 0xff, 0xc2, 0xff, 0xbd, 0xff,\n  0xc6, 0xff, 0xd1, 0xff, 0xde, 0xff, 0xef, 0xff, 0xf9, 0xff, 0x00, 0x00,\n  0x05, 0x00, 0x08, 0x00, 0x1d, 0x00, 0x29, 0x00, 0x16, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x2f, 0x00, 0x2e, 0x00, 0x04, 0x00, 0xdd, 0xff, 0xd1, 0xff,\n  0xe4, 0xff, 0xf2, 0xff, 0xea, 0xff, 0xda, 0xff, 0xdd, 0xff, 0xe0, 0xff,\n  0xe1, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x04, 0x00,\n  0x10, 0x00, 0x1f, 0x00, 0x41, 0x00, 0x32, 0x00, 0x0b, 0x00, 0xf0, 0xff,\n  0xd7, 0xff, 0xd4, 0xff, 0xdb, 0xff, 0xe7, 0xff, 0xe3, 0xff, 0xe0, 0xff,\n  0xd2, 0xff, 0xea, 0xff, 0x07, 0x00, 0xf9, 0xff, 0xf2, 0xff, 0xef, 0xff,\n  0xed, 0xff, 0xe7, 0xff, 0x01, 0x00, 0x16, 0x00, 0xf9, 0xff, 0xe4, 0xff,\n  0xd5, 0xff, 0xd4, 0xff, 0xdd, 0xff, 0xe3, 0xff, 0xea, 0xff, 0xf5, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x05, 0x00, 0x1c, 0x00, 0x1d, 0x00,\n  0x0a, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0xf9, 0xff, 0xe6, 0xff, 0xda, 0xff,\n  0xe6, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xef, 0xff, 0xd8, 0xff, 0xcf, 0xff,\n  0xcf, 0xff, 0xda, 0xff, 0xf0, 0xff, 0x1c, 0x00, 0x13, 0x00, 0xfb, 0xff,\n  0xec, 0xff, 0xe6, 0xff, 0xe1, 0xff, 0xef, 0xff, 0x1a, 0x00, 0x1c, 0x00,\n  0x1a, 0x00, 0x05, 0x00, 0xec, 0xff, 0xdd, 0xff, 0xd4, 0xff, 0xda, 0xff,\n  0xdd, 0xff, 0xe9, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x10, 0x00, 0x44, 0x00,\n  0x44, 0x00, 0x13, 0x00, 0x01, 0x00, 0x01, 0x00, 0xe9, 0xff, 0xcf, 0xff,\n  0xe7, 0xff, 0xf2, 0xff, 0xe1, 0xff, 0xd4, 0xff, 0xd2, 0xff, 0xdb, 0xff,\n  0xf2, 0xff, 0x0d, 0x00, 0x1a, 0x00, 0x14, 0x00, 0x0a, 0x00, 0x11, 0x00,\n  0xff, 0xff, 0xf5, 0xff, 0xea, 0xff, 0xea, 0xff, 0xed, 0xff, 0xf6, 0xff,\n  0xfc, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00,\n  0x0d, 0x00, 0x07, 0x00, 0x0d, 0x00, 0x04, 0x00, 0x19, 0x00, 0x44, 0x00,\n  0x41, 0x00, 0x41, 0x00, 0x14, 0x00, 0xe9, 0xff, 0xcf, 0xff, 0xcb, 0xff,\n  0xd1, 0xff, 0xd8, 0xff, 0xe6, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x05, 0x00,\n  0x28, 0x00, 0x2e, 0x00, 0x1d, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x08, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0e, 0x00,\n  0x1c, 0x00, 0x19, 0x00, 0x11, 0x00, 0x07, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x05, 0x00,\n  0x0a, 0x00, 0x07, 0x00, 0x08, 0x00, 0x05, 0x00, 0x29, 0x00, 0x5c, 0x00,\n  0x3d, 0x00, 0x0e, 0x00, 0xf0, 0xff, 0xe0, 0xff, 0xe3, 0xff, 0xe4, 0xff,\n  0x0b, 0x00, 0x2b, 0x00, 0x17, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0xf8, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xff, 0xff,\n  0x16, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x0b, 0x00,\n  0x05, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x16, 0x00, 0x25, 0x00, 0x25, 0x00,\n  0x07, 0x00, 0xf2, 0xff, 0xed, 0xff, 0xea, 0xff, 0xf0, 0xff, 0xf5, 0xff,\n  0x01, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x11, 0x00, 0x0e, 0x00,\n  0x0e, 0x00, 0x07, 0x00, 0x04, 0x00, 0x14, 0x00, 0x43, 0x00, 0x3e, 0x00,\n  0x19, 0x00, 0x02, 0x00, 0xe7, 0xff, 0xea, 0xff, 0xea, 0xff, 0xde, 0xff,\n  0xda, 0xff, 0xdd, 0xff, 0x01, 0x00, 0x10, 0x00, 0x05, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0xf8, 0xff, 0xe4, 0xff, 0xf3, 0xff, 0x0a, 0x00, 0x01, 0x00,\n  0xf5, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xf5, 0xff, 0xfb, 0xff,\n  0x0a, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x08, 0x00, 0x32, 0x00,\n  0x2f, 0x00, 0x11, 0x00, 0xf2, 0xff, 0xe7, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xec, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe3, 0xff,\n  0xe7, 0xff, 0xe9, 0xff, 0xf3, 0xff, 0x1f, 0x00, 0x29, 0x00, 0x1d, 0x00,\n  0x0a, 0x00, 0xf2, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xec, 0xff, 0xf9, 0xff,\n  0xf0, 0xff, 0xea, 0xff, 0xdb, 0xff, 0xe0, 0xff, 0x01, 0x00, 0x05, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0xf3, 0xff, 0xe7, 0xff, 0xf6, 0xff, 0xf5, 0xff,\n  0xea, 0xff, 0xe4, 0xff, 0xf6, 0xff, 0x00, 0x00, 0xf9, 0xff, 0xec, 0xff,\n  0xe7, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf8, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfb, 0xff,\n  0x0a, 0x00, 0x3d, 0x00, 0x31, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xed, 0xff,\n  0xd8, 0xff, 0xdb, 0xff, 0xec, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xe7, 0xff,\n  0xdd, 0xff, 0xdd, 0xff, 0xdb, 0xff, 0xe6, 0xff, 0xed, 0xff, 0xf3, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0x13, 0x00, 0x43, 0x00, 0x44, 0x00, 0x25, 0x00, 0xf8, 0xff,\n  0xd7, 0xff, 0xc3, 0xff, 0xc5, 0xff, 0xda, 0xff, 0xf6, 0xff, 0x07, 0x00,\n  0x01, 0x00, 0xef, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xef, 0xff,\n  0xff, 0xff, 0x16, 0x00, 0x1a, 0x00, 0x28, 0x00, 0x26, 0x00, 0x13, 0x00,\n  0x05, 0x00, 0xf0, 0xff, 0xe4, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xf2, 0xff,\n  0xf6, 0xff, 0xff, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x3b, 0x00, 0x52, 0x00,\n  0x2c, 0x00, 0x13, 0x00, 0x01, 0x00, 0xe7, 0xff, 0xda, 0xff, 0xe6, 0xff,\n  0xf6, 0xff, 0x0d, 0x00, 0x17, 0x00, 0xff, 0xff, 0xef, 0xff, 0xe7, 0xff,\n  0xea, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x05, 0x00, 0x0b, 0x00,\n  0x0b, 0x00, 0x0d, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x20, 0x00,\n  0x23, 0x00, 0x23, 0x00, 0x32, 0x00, 0x2e, 0x00, 0x0a, 0x00, 0xf3, 0xff,\n  0xe4, 0xff, 0xf8, 0xff, 0x0a, 0x00, 0xff, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0x16, 0x00, 0x11, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0x00, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x04, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x05, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x04, 0x00, 0x10, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x0e, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0x11, 0x00,\n  0x3e, 0x00, 0x4f, 0x00, 0x25, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00,\n  0xef, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf9, 0xff,\n  0x07, 0x00, 0x2e, 0x00, 0x3b, 0x00, 0x22, 0x00, 0x02, 0x00, 0xed, 0xff,\n  0xe9, 0xff, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xf5, 0xff, 0xed, 0xff,\n  0xf2, 0xff, 0xf5, 0xff, 0x08, 0x00, 0x1c, 0x00, 0x28, 0x00, 0x25, 0x00,\n  0x05, 0x00, 0xef, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xec, 0xff,\n  0xf5, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x04, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x04, 0x00, 0x28, 0x00, 0x41, 0x00,\n  0x20, 0x00, 0x0d, 0x00, 0xf9, 0xff, 0xe3, 0xff, 0xd7, 0xff, 0xd7, 0xff,\n  0xda, 0xff, 0xe0, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x23, 0x00, 0x3d, 0x00, 0x1d, 0x00, 0xf9, 0xff, 0xe4, 0xff, 0xda, 0xff,\n  0xd8, 0xff, 0xdb, 0xff, 0xe0, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xf6, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf0, 0xff,\n  0xf2, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xf5, 0xff, 0xec, 0xff, 0xec, 0xff,\n  0x11, 0x00, 0x2b, 0x00, 0x0a, 0x00, 0xed, 0xff, 0xda, 0xff, 0xd7, 0xff,\n  0xe4, 0xff, 0x00, 0x00, 0xff, 0xff, 0xe9, 0xff, 0xd7, 0xff, 0xd8, 0xff,\n  0xe4, 0xff, 0xe6, 0xff, 0xed, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x08, 0x00, 0x1d, 0x00,\n  0x3d, 0x00, 0x25, 0x00, 0xfb, 0xff, 0xdd, 0xff, 0xe1, 0xff, 0xf0, 0xff,\n  0xec, 0xff, 0xde, 0xff, 0xd7, 0xff, 0xd5, 0xff, 0xde, 0xff, 0xe1, 0xff,\n  0xef, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x17, 0x00, 0x28, 0x00, 0x1f, 0x00,\n  0x07, 0x00, 0xfe, 0xff, 0x11, 0x00, 0x11, 0x00, 0xf6, 0xff, 0xe9, 0xff,\n  0xe0, 0xff, 0xdd, 0xff, 0xe6, 0xff, 0xf6, 0xff, 0x10, 0x00, 0x1a, 0x00,\n  0x19, 0x00, 0x0b, 0x00, 0x05, 0x00, 0xf8, 0xff, 0xef, 0xff, 0xea, 0xff,\n  0xf5, 0xff, 0x16, 0x00, 0x16, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf9, 0xff,\n  0x01, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x17, 0x00, 0x26, 0x00, 0x11, 0x00,\n  0xf5, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf2, 0xff,\n  0x04, 0x00, 0x1d, 0x00, 0x11, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x05, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0a, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x28, 0x00, 0x29, 0x00, 0x29, 0x00,\n  0x14, 0x00, 0x08, 0x00, 0x07, 0x00, 0xf5, 0xff, 0xea, 0xff, 0xe3, 0xff,\n  0xe3, 0xff, 0xec, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x08, 0x00, 0x07, 0x00, 0x20, 0x00, 0x4c, 0x00,\n  0x2c, 0x00, 0x0a, 0x00, 0x23, 0x00, 0x08, 0x00, 0xea, 0xff, 0xe1, 0xff,\n  0xdd, 0xff, 0xe3, 0xff, 0xec, 0xff, 0x05, 0x00, 0x25, 0x00, 0x1c, 0x00,\n  0x08, 0x00, 0xfb, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0x04, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0d, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x08, 0x00, 0x38, 0x00, 0x52, 0x00, 0x29, 0x00, 0xfc, 0xff, 0xe0, 0xff,\n  0xd1, 0xff, 0xd1, 0xff, 0xd8, 0xff, 0xe1, 0xff, 0xec, 0xff, 0xf5, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x07, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x14, 0x00, 0x2f, 0x00, 0x2c, 0x00, 0x1a, 0x00,\n  0x0b, 0x00, 0x01, 0x00, 0xec, 0xff, 0xdb, 0xff, 0xd7, 0xff, 0xd8, 0xff,\n  0xdd, 0xff, 0xea, 0xff, 0xf2, 0xff, 0xfb, 0xff, 0x0d, 0x00, 0x17, 0x00,\n  0x11, 0x00, 0x04, 0x00, 0x05, 0x00, 0xfc, 0xff, 0x05, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xef, 0xff, 0xe9, 0xff, 0xef, 0xff, 0xef, 0xff,\n  0xea, 0xff, 0xe6, 0xff, 0xe7, 0xff, 0xef, 0xff, 0xf3, 0xff, 0xf8, 0xff,\n  0x01, 0x00, 0x07, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x22, 0x00, 0x1f, 0x00,\n  0x04, 0x00, 0xf5, 0xff, 0xec, 0xff, 0xe6, 0xff, 0xed, 0xff, 0x0a, 0x00,\n  0x02, 0x00, 0xf5, 0xff, 0x02, 0x00, 0xed, 0xff, 0xec, 0xff, 0xf6, 0xff,\n  0xed, 0xff, 0xe7, 0xff, 0xe1, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xef, 0xff,\n  0xf6, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x23, 0x00, 0x3b, 0x00, 0x1d, 0x00, 0xf8, 0xff, 0xec, 0xff,\n  0xe6, 0xff, 0xdd, 0xff, 0xd8, 0xff, 0xe3, 0xff, 0xf2, 0xff, 0xf6, 0xff,\n  0xff, 0xff, 0x05, 0x00, 0xfc, 0xff, 0xef, 0xff, 0xe1, 0xff, 0xe4, 0xff,\n  0xea, 0xff, 0xea, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x17, 0x00, 0x2e, 0x00,\n  0x14, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xf0, 0xff, 0xf2, 0xff,\n  0xed, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe9, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0x22, 0x00, 0x2c, 0x00,\n  0x20, 0x00, 0x08, 0x00, 0xf8, 0xff, 0x02, 0x00, 0xf9, 0xff, 0xec, 0xff,\n  0xe1, 0xff, 0xdb, 0xff, 0xe0, 0xff, 0xe9, 0xff, 0xf0, 0xff, 0xf8, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x08, 0x00, 0x1f, 0x00, 0x32, 0x00, 0x2f, 0x00,\n  0x0e, 0x00, 0xf5, 0xff, 0xe4, 0xff, 0xdd, 0xff, 0xde, 0xff, 0xea, 0xff,\n  0x07, 0x00, 0x16, 0x00, 0x07, 0x00, 0xf8, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xef, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x0d, 0x00,\n  0x10, 0x00, 0x0b, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x25, 0x00, 0x29, 0x00,\n  0x1a, 0x00, 0x0a, 0x00, 0x05, 0x00, 0xf8, 0xff, 0xe9, 0xff, 0xe4, 0xff,\n  0xe3, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00,\n  0x0b, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x04, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x04, 0x00, 0x08, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x19, 0x00, 0x50, 0x00, 0x46, 0x00, 0x16, 0x00, 0xf0, 0xff,\n  0xdd, 0xff, 0xd7, 0xff, 0xda, 0xff, 0xe3, 0xff, 0xea, 0xff, 0xf3, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0x05, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0d, 0x00,\n  0x0b, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x05, 0x00, 0x32, 0x00,\n  0x61, 0x00, 0x34, 0x00, 0x08, 0x00, 0xe1, 0xff, 0xe9, 0xff, 0xf5, 0xff,\n  0xe9, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xf9, 0xff,\n  0x14, 0x00, 0x1d, 0x00, 0x14, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf0, 0xff,\n  0xff, 0xff, 0x1a, 0x00, 0x13, 0x00, 0x05, 0x00, 0xf6, 0xff, 0xf5, 0xff,\n  0xf0, 0xff, 0x01, 0x00, 0x1a, 0x00, 0x16, 0x00, 0x0e, 0x00, 0x0b, 0x00,\n  0x02, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf0, 0xff,\n  0xfc, 0xff, 0x07, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff,\n  0x0d, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xed, 0xff, 0xf5, 0xff,\n  0x0d, 0x00, 0x19, 0x00, 0x17, 0x00, 0x04, 0x00, 0xf2, 0xff, 0xe6, 0xff,\n  0xf5, 0xff, 0x07, 0x00, 0x00, 0x00, 0xf5, 0xff, 0xec, 0xff, 0xec, 0xff,\n  0xf3, 0xff, 0x0e, 0x00, 0x10, 0x00, 0x04, 0x00, 0xf6, 0xff, 0xf3, 0xff,\n  0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0x1c, 0x00, 0x26, 0x00, 0x13, 0x00, 0x0a, 0x00, 0x04, 0x00, 0xf8, 0xff,\n  0xef, 0xff, 0xe3, 0xff, 0xe0, 0xff, 0xde, 0xff, 0xe6, 0xff, 0xec, 0xff,\n  0x01, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf2, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x11, 0x00, 0x22, 0x00,\n  0x16, 0x00, 0xff, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xe6, 0xff, 0xea, 0xff,\n  0xe7, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xef, 0xff,\n  0xf5, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x0a, 0x00, 0x32, 0x00, 0x26, 0x00, 0x17, 0x00, 0x08, 0x00,\n  0xef, 0xff, 0xe3, 0xff, 0xe1, 0xff, 0xde, 0xff, 0xdb, 0xff, 0xdd, 0xff,\n  0xe3, 0xff, 0xe9, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x13, 0x00, 0x14, 0x00, 0x08, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x14, 0x00, 0x14, 0x00,\n  0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x0d, 0x00, 0xfb, 0xff, 0xf3, 0xff,\n  0xed, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xf5, 0xff, 0x07, 0x00, 0x01, 0x00,\n  0xf9, 0xff, 0xf0, 0xff, 0xef, 0xff, 0xf8, 0xff, 0x07, 0x00, 0x0b, 0x00,\n  0x16, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0x0e, 0x00, 0x0b, 0x00, 0xfb, 0xff, 0xf2, 0xff, 0xf3, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x0d, 0x00, 0x0d, 0x00, 0x04, 0x00,\n  0xfc, 0xff, 0xf9, 0xff, 0x10, 0x00, 0x0a, 0x00, 0x05, 0x00, 0xfb, 0xff,\n  0x00, 0x00, 0x17, 0x00, 0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0xfc, 0xff,\n  0xf2, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0x02, 0x00, 0x04, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x14, 0x00, 0x22, 0x00, 0x19, 0x00, 0x07, 0x00, 0x04, 0x00, 0x13, 0x00,\n  0x1d, 0x00, 0x10, 0x00, 0xfb, 0xff, 0xea, 0xff, 0xe4, 0xff, 0xe7, 0xff,\n  0xea, 0xff, 0xf0, 0xff, 0x0d, 0x00, 0x19, 0x00, 0x0a, 0x00, 0x13, 0x00,\n  0x07, 0x00, 0xff, 0xff, 0x02, 0x00, 0x07, 0x00, 0x04, 0x00, 0xfb, 0xff,\n  0x04, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff,\n  0xfc, 0xff, 0x13, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x0d, 0x00, 0xff, 0xff,\n  0xf3, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x1d, 0x00, 0x20, 0x00,\n  0x10, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x01, 0x00, 0xf6, 0xff,\n  0xef, 0xff, 0xed, 0xff, 0xed, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0x11, 0x00,\n  0x20, 0x00, 0x13, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x02, 0x00,\n  0xf6, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xff, 0xff, 0x10, 0x00,\n  0x0d, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf2, 0xff,\n  0xef, 0xff, 0xf5, 0xff, 0x04, 0x00, 0x13, 0x00, 0x0e, 0x00, 0x0d, 0x00,\n  0xfe, 0xff, 0xf5, 0xff, 0xe7, 0xff, 0xf8, 0xff, 0x13, 0x00, 0x0a, 0x00,\n  0xfb, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf5, 0xff,\n  0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00,\n  0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf5, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x25, 0x00,\n  0x1a, 0x00, 0x02, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0xf3, 0xff, 0xe4, 0xff,\n  0xde, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xe1, 0xff, 0xe4, 0xff, 0xea, 0xff,\n  0xef, 0xff, 0x02, 0x00, 0x0e, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xf0, 0xff,\n  0xed, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0x04, 0x00, 0x08, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x14, 0x00, 0x1a, 0x00, 0x05, 0x00,\n  0xf3, 0xff, 0xe7, 0xff, 0xe4, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0xf6, 0xff,\n  0xf2, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x16, 0x00, 0x11, 0x00, 0x04, 0x00,\n  0xfb, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0x0b, 0x00, 0x34, 0x00, 0x22, 0x00, 0x07, 0x00, 0xf2, 0xff, 0xef, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0x07, 0x00,\n  0xfc, 0xff, 0x05, 0x00, 0x0a, 0x00, 0xfc, 0xff, 0xf3, 0xff, 0xf3, 0xff,\n  0xf5, 0xff, 0x00, 0x00, 0x17, 0x00, 0x11, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x07, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf3, 0xff,\n  0xf8, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x25, 0x00,\n  0x28, 0x00, 0x1a, 0x00, 0x0d, 0x00, 0xff, 0xff, 0xf2, 0xff, 0xec, 0xff,\n  0xf0, 0xff, 0xf9, 0xff, 0x08, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0x05, 0x00, 0x1a, 0x00, 0x14, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x04, 0x00,\n  0xf6, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0x10, 0x00, 0x23, 0x00, 0x19, 0x00, 0x05, 0x00,\n  0xfc, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x2e, 0x00,\n  0x2c, 0x00, 0x1a, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf2, 0xff,\n  0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x14, 0x00, 0x10, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xf0, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0x10, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x04, 0x00,\n  0xf5, 0xff, 0xec, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf8, 0xff,\n  0x07, 0x00, 0x29, 0x00, 0x20, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xf0, 0xff,\n  0xef, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x0d, 0x00,\n  0x1f, 0x00, 0x2b, 0x00, 0x19, 0x00, 0xff, 0xff, 0xf2, 0xff, 0xf6, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0xf3, 0xff, 0xea, 0xff, 0xe9, 0xff, 0xec, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x0e, 0x00,\n  0x08, 0x00, 0xfe, 0xff, 0xf3, 0xff, 0xec, 0xff, 0xef, 0xff, 0xf2, 0xff,\n  0xf5, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x0d, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x0e, 0x00, 0x04, 0x00,\n  0xf8, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xe7, 0xff, 0xe0, 0xff, 0xf5, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xf6, 0xff, 0xed, 0xff, 0xf3, 0xff, 0xf3, 0xff,\n  0xf6, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x25, 0x00,\n  0x28, 0x00, 0x0b, 0x00, 0xf6, 0xff, 0xed, 0xff, 0xf5, 0xff, 0xf3, 0xff,\n  0xe7, 0xff, 0xde, 0xff, 0xde, 0xff, 0xe7, 0xff, 0xf3, 0xff, 0x07, 0x00,\n  0x00, 0x00, 0xf6, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xef, 0xff, 0xf3, 0xff,\n  0xf6, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x0a, 0x00, 0x02, 0x00, 0x25, 0x00, 0x35, 0x00, 0x16, 0x00, 0xf3, 0xff,\n  0xe0, 0xff, 0xe0, 0xff, 0xe6, 0xff, 0xea, 0xff, 0xef, 0xff, 0xf3, 0xff,\n  0xf8, 0xff, 0xec, 0xff, 0xf9, 0xff, 0x0e, 0x00, 0x04, 0x00, 0xfb, 0xff,\n  0xff, 0xff, 0x07, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0x04, 0x00, 0x02, 0x00,\n  0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf3, 0xff,\n  0x00, 0x00, 0x0d, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf5, 0xff, 0xf5, 0xff,\n  0xf5, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x08, 0x00,\n  0x0a, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x05, 0x00,\n  0x28, 0x00, 0x2b, 0x00, 0x1a, 0x00, 0xfc, 0xff, 0xea, 0xff, 0xe6, 0xff,\n  0xe3, 0xff, 0xe7, 0xff, 0xf0, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x28, 0x00, 0x29, 0x00, 0x16, 0x00,\n  0x08, 0x00, 0xfc, 0xff, 0xf0, 0xff, 0xea, 0xff, 0xe7, 0xff, 0xf3, 0xff,\n  0x04, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x0d, 0x00,\n  0xff, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x05, 0x00, 0xf5, 0xff, 0xf5, 0xff,\n  0x0a, 0x00, 0x08, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xf6, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x02, 0x00, 0x1d, 0x00, 0x28, 0x00,\n  0x14, 0x00, 0x04, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xf9, 0xff,\n  0xef, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0x0b, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x0b, 0x00, 0x2f, 0x00, 0x28, 0x00, 0x13, 0x00, 0xfc, 0xff,\n  0xef, 0xff, 0xe6, 0xff, 0xec, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff,\n  0xf3, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x0b, 0x00,\n  0x14, 0x00, 0x10, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00,\n  0x0b, 0x00, 0x08, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf6, 0xff, 0xf2, 0xff,\n  0xff, 0xff, 0x13, 0x00, 0x17, 0x00, 0x0e, 0x00, 0xfe, 0xff, 0xf2, 0xff,\n  0xea, 0xff, 0xe9, 0xff, 0xec, 0xff, 0xec, 0xff, 0x02, 0x00, 0x19, 0x00,\n  0x13, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xff, 0xff,\n  0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf6, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x0d, 0x00, 0x0e, 0x00,\n  0x02, 0x00, 0x08, 0x00, 0x17, 0x00, 0x08, 0x00, 0x00, 0x00, 0x07, 0x00,\n  0xf9, 0xff, 0xe7, 0xff, 0xe9, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xf0, 0xff,\n  0xf2, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x14, 0x00, 0x22, 0x00,\n  0x13, 0x00, 0x00, 0x00, 0xf3, 0xff, 0x04, 0x00, 0x0d, 0x00, 0xf9, 0xff,\n  0xef, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x07, 0x00, 0x2f, 0x00, 0x2b, 0x00, 0x0b, 0x00,\n  0xf5, 0xff, 0xe6, 0xff, 0xe0, 0xff, 0xec, 0xff, 0xfb, 0xff, 0xf8, 0xff,\n  0xf2, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf5, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfb, 0xff,\n  0xf3, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0x08, 0x00, 0x10, 0x00,\n  0x08, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0xfb, 0xff, 0xed, 0xff, 0xea, 0xff,\n  0xea, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x14, 0x00,\n  0x14, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0x19, 0x00, 0x13, 0x00, 0x08, 0x00, 0xf9, 0xff,\n  0xfc, 0xff, 0x05, 0x00, 0x08, 0x00, 0x0b, 0x00, 0xf5, 0xff, 0xf2, 0xff,\n  0xef, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf5, 0xff,\n  0x02, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf5, 0xff, 0xf3, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x07, 0x00, 0x0e, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xfc, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x17, 0x00, 0x16, 0x00, 0x13, 0x00,\n  0x0a, 0x00, 0xf9, 0xff, 0xec, 0xff, 0xe9, 0xff, 0xea, 0xff, 0xec, 0xff,\n  0xf0, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x17, 0x00,\n  0x1f, 0x00, 0x0d, 0x00, 0x01, 0x00, 0x0d, 0x00, 0x08, 0x00, 0xf9, 0xff,\n  0xf0, 0xff, 0xec, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0x0d, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x10, 0x00, 0x0a, 0x00,\n  0xff, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x10, 0x00, 0x16, 0x00,\n  0x08, 0x00, 0xfc, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf6, 0xff,\n  0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0x13, 0x00, 0x23, 0x00, 0x16, 0x00,\n  0x0a, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xff, 0xff,\n  0x0d, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x17, 0x00, 0x16, 0x00,\n  0x11, 0x00, 0x0e, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xf0, 0xff, 0xed, 0xff,\n  0xf8, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf8, 0xff,\n  0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x0a, 0x00,\n  0x19, 0x00, 0x20, 0x00, 0x10, 0x00, 0xfe, 0xff, 0xf2, 0xff, 0xed, 0xff,\n  0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x0e, 0x00,\n  0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x01, 0x00,\n  0x19, 0x00, 0x14, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf3, 0xff,\n  0xf6, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf9, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x13, 0x00, 0x20, 0x00, 0x13, 0x00, 0x01, 0x00,\n  0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf2, 0xff, 0xec, 0xff,\n  0xf8, 0xff, 0xfc, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xef, 0xff, 0xf3, 0xff,\n  0xf8, 0xff, 0x08, 0x00, 0x0e, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xf8, 0xff,\n  0x07, 0x00, 0x10, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xef, 0xff, 0xf2, 0xff,\n  0xed, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x10, 0x00, 0x1c, 0x00, 0x13, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xf5, 0xff,\n  0xf8, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xef, 0xff, 0xf2, 0xff, 0x00, 0x00,\n  0x05, 0x00, 0x10, 0x00, 0x13, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf2, 0xff,\n  0xf6, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf0, 0xff,\n  0x08, 0x00, 0x1c, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x0b, 0x00, 0x0d, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0x0a, 0x00, 0x1c, 0x00, 0x19, 0x00, 0x14, 0x00,\n  0x01, 0x00, 0xf2, 0xff, 0xf3, 0xff, 0xe7, 0xff, 0xec, 0xff, 0xec, 0xff,\n  0xed, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x07, 0x00, 0x19, 0x00, 0x2b, 0x00,\n  0x0a, 0x00, 0xff, 0xff, 0x0a, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xed, 0xff,\n  0xec, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x08, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x1c, 0x00, 0x20, 0x00,\n  0x10, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xef, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xf2, 0xff,\n  0xf0, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0x10, 0x00, 0x17, 0x00,\n  0x0b, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x05, 0x00,\n  0x04, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0x0b, 0x00, 0x16, 0x00, 0x17, 0x00, 0x05, 0x00, 0xfc, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0x0e, 0x00, 0x14, 0x00,\n  0x05, 0x00, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf3, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x08, 0x00, 0x07, 0x00, 0x00, 0x00,\n  0xfb, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x0a, 0x00,\n  0x07, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x16, 0x00,\n  0x20, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xea, 0xff, 0xe6, 0xff, 0xe6, 0xff,\n  0xe9, 0xff, 0xef, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x14, 0x00,\n  0x1f, 0x00, 0x20, 0x00, 0x08, 0x00, 0xf8, 0xff, 0xe9, 0xff, 0xe4, 0xff,\n  0xe6, 0xff, 0xe9, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x20, 0x00, 0x16, 0x00,\n  0x04, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xed, 0xff, 0xff, 0xff, 0x17, 0x00,\n  0x0b, 0x00, 0xf9, 0xff, 0xed, 0xff, 0xec, 0xff, 0xed, 0xff, 0xed, 0xff,\n  0xf2, 0xff, 0xf6, 0xff, 0x08, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x08, 0x00,\n  0x01, 0x00, 0xfb, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xf5, 0xff,\n  0xf8, 0xff, 0x0a, 0x00, 0x17, 0x00, 0x0b, 0x00, 0x01, 0x00, 0xf6, 0xff,\n  0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x11, 0x00, 0x23, 0x00,\n  0x14, 0x00, 0x08, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf2, 0xff, 0xf0, 0xff,\n  0xf6, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0x04, 0x00, 0x04, 0x00, 0xfb, 0xff,\n  0xf6, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0x0b, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x0a, 0x00,\n  0xf6, 0xff, 0xea, 0xff, 0xea, 0xff, 0xea, 0xff, 0xec, 0xff, 0xf0, 0xff,\n  0xf6, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x1a, 0x00, 0x22, 0x00, 0x0e, 0x00,\n  0xfb, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff,\n  0xf5, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0x01, 0x00, 0x13, 0x00, 0x17, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xfe, 0xff,\n  0xf3, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0x07, 0x00, 0x07, 0x00,\n  0x0e, 0x00, 0x0b, 0x00, 0x04, 0x00, 0x07, 0x00, 0x08, 0x00, 0xfe, 0xff,\n  0xf8, 0xff, 0xf0, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x00, 0x19, 0x00,\n  0x2f, 0x00, 0x1c, 0x00, 0x04, 0x00, 0xf3, 0xff, 0xe7, 0xff, 0xe9, 0xff,\n  0xea, 0xff, 0xec, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0x07, 0x00, 0x1d, 0x00, 0x20, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xf8, 0xff,\n  0xf5, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf8, 0xff, 0x08, 0x00, 0x0e, 0x00,\n  0x07, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x1f, 0x00,\n  0x17, 0x00, 0x0a, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf3, 0xff,\n  0x02, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0xf6, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x0b, 0x00,\n  0x04, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0x05, 0x00, 0x16, 0x00, 0x10, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0xff, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x0d, 0x00,\n  0x02, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0x01, 0x00,\n  0x0a, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x05, 0x00, 0x08, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0x02, 0x00, 0xfb, 0xff, 0xf8, 0xff,\n  0xf6, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf5, 0xff,\n  0xf6, 0xff, 0xfc, 0xff, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0x02, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfc, 0xff, 0x07, 0x00,\n  0x14, 0x00, 0x08, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0x04, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x0a, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xf2, 0xff, 0xf9, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0x0b, 0x00, 0x0e, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf6, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x0a, 0x00, 0x13, 0x00, 0x11, 0x00, 0x19, 0x00, 0x07, 0x00, 0xfc, 0xff,\n  0xed, 0xff, 0xf3, 0xff, 0xfe, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0xf2, 0xff,\n  0xf5, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x1a, 0x00, 0x0b, 0x00, 0xfb, 0xff,\n  0xfb, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x05, 0x00,\n  0x0d, 0x00, 0x14, 0x00, 0x10, 0x00, 0x02, 0x00, 0xf8, 0xff, 0xf3, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0x07, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x05, 0x00,\n  0xf6, 0xff, 0x08, 0x00, 0x0d, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xf0, 0xff,\n  0xf5, 0xff, 0xf0, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x07, 0x00, 0x0a, 0x00, 0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x0a, 0x00,\n  0x0d, 0x00, 0x08, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x11, 0x00, 0x2b, 0x00, 0x1f, 0x00, 0x02, 0x00,\n  0xf9, 0xff, 0xec, 0xff, 0xef, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x13, 0x00,\n  0x0e, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0xfb, 0xff, 0xf6, 0xff, 0xef, 0xff,\n  0xf2, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x1d, 0x00, 0x10, 0x00,\n  0x05, 0x00, 0xf9, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf6, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x10, 0x00,\n  0x10, 0x00, 0x17, 0x00, 0x17, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf6, 0xff,\n  0xf9, 0xff, 0x05, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xef, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x1d, 0x00, 0x1f, 0x00,\n  0x0b, 0x00, 0xfc, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xea, 0xff, 0xef, 0xff,\n  0xf2, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x16, 0x00, 0x26, 0x00, 0x14, 0x00, 0xff, 0xff, 0xf6, 0xff,\n  0xf3, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xf0, 0xff, 0xf2, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00,\n  0x16, 0x00, 0x10, 0x00, 0x04, 0x00, 0x14, 0x00, 0x08, 0x00, 0xf9, 0xff,\n  0xf3, 0xff, 0xef, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x08, 0x00, 0x1a, 0x00, 0x17, 0x00, 0x0a, 0x00, 0x11, 0x00, 0x22, 0x00,\n  0x0b, 0x00, 0xef, 0xff, 0xdd, 0xff, 0xda, 0xff, 0xe0, 0xff, 0xe6, 0xff,\n  0xef, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x08, 0x00, 0x10, 0x00,\n  0x0d, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x07, 0x00, 0xff, 0xff, 0xfb, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0x08, 0x00, 0x14, 0x00, 0x14, 0x00, 0x08, 0x00, 0xff, 0xff, 0xf8, 0xff,\n  0xf2, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0x0b, 0x00, 0x08, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x05, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x0d, 0x00, 0x10, 0x00, 0x05, 0x00, 0x0d, 0x00, 0x10, 0x00,\n  0xff, 0xff, 0xf5, 0xff, 0xec, 0xff, 0xf2, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x08, 0x00,\n  0x14, 0x00, 0x19, 0x00, 0x0e, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xf6, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x0d, 0x00, 0x17, 0x00, 0x08, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xf5, 0xff,\n  0xfb, 0xff, 0x05, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf8, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x08, 0x00, 0x14, 0x00, 0x08, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x07, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x0d, 0x00, 0x16, 0x00, 0x0e, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x0b, 0x00, 0x04, 0x00, 0xff, 0xff, 0xef, 0xff, 0xec, 0xff, 0xef, 0xff,\n  0xef, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x08, 0x00, 0x0a, 0x00,\n  0x0e, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf5, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf8, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x08, 0x00, 0x14, 0x00, 0x13, 0x00, 0x0a, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xff, 0xff, 0x0b, 0x00, 0x04, 0x00, 0x07, 0x00, 0x0a, 0x00,\n  0x04, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00,\n  0x1a, 0x00, 0x10, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf8, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf6, 0xff, 0x04, 0x00, 0x0d, 0x00, 0x04, 0x00, 0xff, 0xff,\n  0xf8, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x13, 0x00, 0x07, 0x00, 0x04, 0x00,\n  0xf5, 0xff, 0xf9, 0xff, 0x0a, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf5, 0xff,\n  0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x14, 0x00, 0x14, 0x00, 0x07, 0x00, 0xfb, 0xff,\n  0xf8, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x05, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x0e, 0x00, 0x05, 0x00, 0xfe, 0xff,\n  0xf3, 0xff, 0xf8, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x0b, 0x00, 0x13, 0x00,\n  0x0d, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf2, 0xff,\n  0xf5, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x02, 0x00,\n  0xf9, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x0a, 0x00,\n  0x0a, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf8, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xf9, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x05, 0x00, 0x0e, 0x00, 0x0d, 0x00, 0x0b, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x07, 0x00, 0x13, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x00, 0x1c, 0x00,\n  0x1f, 0x00, 0x0a, 0x00, 0xfb, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xf0, 0xff,\n  0xf5, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf3, 0xff,\n  0xf8, 0xff, 0x07, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xfc, 0xff,\n  0xf9, 0xff, 0x01, 0x00, 0x0d, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf6, 0xff,\n  0xf5, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x07, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x05, 0x00, 0xfe, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x16, 0x00, 0x16, 0x00, 0x0d, 0x00, 0xff, 0xff, 0xf2, 0xff,\n  0xf0, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x07, 0x00, 0x04, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x07, 0x00, 0x16, 0x00, 0x11, 0x00, 0x08, 0x00, 0xf9, 0xff, 0xf5, 0xff,\n  0xf0, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x04, 0x00,\n  0x10, 0x00, 0x0a, 0x00, 0x05, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xf5, 0xff, 0x00, 0x00, 0x11, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xf8, 0xff,\n  0xf3, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00,\n  0x05, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x08, 0x00, 0x13, 0x00, 0x10, 0x00,\n  0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x07, 0x00,\n  0x1f, 0x00, 0x22, 0x00, 0x0b, 0x00, 0xfb, 0xff, 0xf0, 0xff, 0xec, 0xff,\n  0xe9, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x08, 0x00,\n  0xff, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0x0b, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0xfb, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x01, 0x00,\n  0x0e, 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xf9, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x0d, 0x00, 0xff, 0xff,\n  0xf8, 0xff, 0xff, 0xff, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x08, 0x00,\n  0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x02, 0x00,\n  0x0d, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0xfc, 0xff,\n  0xf5, 0xff, 0xf2, 0xff, 0x07, 0x00, 0x0b, 0x00, 0x05, 0x00, 0xfc, 0xff,\n  0xfc, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x05, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0b, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x01, 0x00,\n  0x0e, 0x00, 0x1a, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf0, 0xff,\n  0xf0, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf5, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x17, 0x00,\n  0x0e, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xf5, 0xff,\n  0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0x0a, 0x00, 0x0a, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xf3, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x07, 0x00, 0x13, 0x00, 0x13, 0x00, 0x0b, 0x00, 0x01, 0x00, 0xf6, 0xff,\n  0xf3, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0x04, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0x0b, 0x00,\n  0xfb, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x0e, 0x00,\n  0x0e, 0x00, 0x07, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0x05, 0x00, 0x10, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xf3, 0xff,\n  0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x07, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xfb, 0xff, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0x08, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfb, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x07, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x14, 0x00, 0x11, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xfb, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x1c, 0x00, 0x14, 0x00, 0x07, 0x00,\n  0xfc, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfe, 0xff,\n  0x08, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0x05, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x0d, 0x00, 0x07, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x14, 0x00, 0x16, 0x00, 0x08, 0x00,\n  0xfe, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x08, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x08, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0x05, 0x00,\n  0x05, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xf9, 0xff, 0x02, 0x00,\n  0x10, 0x00, 0x1a, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xed, 0xff, 0xed, 0xff,\n  0xf0, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x0b, 0x00, 0x13, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xf9, 0xff,\n  0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfe, 0xff, 0x0a, 0x00, 0x08, 0x00,\n  0x00, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x04, 0x00,\n  0x0b, 0x00, 0x11, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf5, 0xff,\n  0xf8, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x11, 0x00,\n  0x1a, 0x00, 0x10, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xf5, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x0b, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xf9, 0xff, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x05, 0x00, 0x02, 0x00, 0x0b, 0x00, 0x11, 0x00,\n  0x0a, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x04, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfc, 0xff,\n  0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00,\n  0x17, 0x00, 0x0d, 0x00, 0x07, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xf2, 0xff,\n  0xf2, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0x04, 0x00, 0x0b, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x0b, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xf5, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x10, 0x00, 0x0b, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x0a, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x0e, 0x00, 0x17, 0x00, 0x10, 0x00, 0x07, 0x00, 0xf8, 0xff,\n  0xf5, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xf9, 0xff, 0x00, 0x00, 0xf9, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfb, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x0b, 0x00, 0x14, 0x00,\n  0x0b, 0x00, 0x04, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xf6, 0xff, 0xf3, 0xff, 0xf2, 0xff, 0xf3, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0x10, 0x00, 0x0a, 0x00, 0x04, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x0b, 0x00,\n  0x0a, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf5, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0x0e, 0x00, 0x0d, 0x00, 0x04, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x11, 0x00, 0x11, 0x00,\n  0x0a, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf2, 0xff,\n  0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x07, 0x00, 0x17, 0x00, 0x11, 0x00,\n  0x07, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0x00, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xf6, 0xff,\n  0xf8, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf8, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x05, 0x00, 0x11, 0x00,\n  0x07, 0x00, 0xff, 0xff, 0xf9, 0xff, 0x04, 0x00, 0x01, 0x00, 0xf6, 0xff,\n  0xff, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x05, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x0e, 0x00,\n  0x1c, 0x00, 0x16, 0x00, 0x05, 0x00, 0xf9, 0xff, 0xf2, 0xff, 0xf6, 0xff,\n  0xf2, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x07, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xf6, 0xff,\n  0x05, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x08, 0x00,\n  0x08, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0d, 0x00, 0x10, 0x00,\n  0x0b, 0x00, 0x04, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x11, 0x00, 0x14, 0x00, 0x08, 0x00,\n  0x01, 0x00, 0xf8, 0xff, 0xf5, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0x00, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf6, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x04, 0x00, 0xff, 0xff, 0x04, 0x00,\n  0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x0e, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0x05, 0x00, 0x0b, 0x00, 0x00, 0x00,\n  0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0e, 0x00, 0x05, 0x00, 0xfe, 0xff,\n  0x07, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf5, 0xff,\n  0xf3, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0x01, 0x00, 0x0e, 0x00, 0x07, 0x00, 0xff, 0xff, 0xfb, 0xff,\n  0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xf8, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x08, 0x00,\n  0x0e, 0x00, 0x07, 0x00, 0xfb, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0x08, 0x00, 0x05, 0x00, 0xff, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x05, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x08, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0x08, 0x00, 0x0e, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xfb, 0xff,\n  0xf6, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x16, 0x00, 0x11, 0x00, 0x08, 0x00,\n  0xff, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0xfb, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x11, 0x00,\n  0x07, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff,\n  0x05, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf6, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x0e, 0x00,\n  0x10, 0x00, 0x08, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x0a, 0x00, 0x08, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0x05, 0x00, 0x08, 0x00, 0x07, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x08, 0x00,\n  0x0a, 0x00, 0x0b, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xf9, 0xff, 0xf3, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0x05, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x08, 0x00, 0xfc, 0xff,\n  0xf9, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x11, 0x00, 0x0d, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x08, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xf8, 0xff, 0xfb, 0xff, 0x07, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x10, 0x00, 0x16, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xf6, 0xff, 0xf9, 0xff,\n  0xf5, 0xff, 0xf8, 0xff, 0x05, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x07, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00,\n  0x11, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0x07, 0x00, 0x07, 0x00, 0xfc, 0xff, 0x07, 0x00, 0x07, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x0d, 0x00, 0x0e, 0x00,\n  0x07, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0x0e, 0x00, 0x13, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf6, 0xff,\n  0xf8, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0xf6, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0e, 0x00, 0x08, 0x00, 0x07, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0xfc, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x08, 0x00, 0x0d, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00, 0xfc, 0xff, 0xfc, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0x0d, 0x00, 0x08, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00,\n  0x0a, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf8, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0xfb, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x04, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0e, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xf6, 0xff, 0xf3, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x0b, 0x00,\n  0x05, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x08, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf9, 0xff,\n  0xf9, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x0a, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff,\n  0xf8, 0xff, 0xf3, 0xff, 0xf0, 0xff, 0xff, 0xff, 0x07, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x04, 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00,\n  0x0b, 0x00, 0x07, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xf9, 0xff,\n  0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x10, 0x00, 0x0e, 0x00, 0x04, 0x00,\n  0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x05, 0x00,\n  0x0e, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf9, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0a, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x07, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x02, 0x00,\n  0x04, 0x00, 0x08, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x0b, 0x00, 0x10, 0x00,\n  0x0b, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0x07, 0x00, 0x17, 0x00, 0x11, 0x00, 0x02, 0x00, 0xf3, 0xff, 0xf3, 0xff,\n  0xf5, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x07, 0x00, 0x16, 0x00, 0x19, 0x00, 0x07, 0x00, 0xf6, 0xff,\n  0xf3, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0x04, 0x00, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x08, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfe, 0xff, 0x08, 0x00,\n  0x0d, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf6, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x0d, 0x00, 0x0a, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0xfb, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfb, 0xff,\n  0xfc, 0xff, 0xf6, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x02, 0x00,\n  0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x07, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xf8, 0xff, 0xff, 0xff, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x05, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xf8, 0xff,\n  0xf9, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xf8, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfb, 0xff, 0x05, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x0a, 0x00, 0x08, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x08, 0x00, 0x04, 0x00, 0x01, 0x00, 0xf6, 0xff,\n  0xfe, 0xff, 0x10, 0x00, 0x07, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xf8, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xf5, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x10, 0x00,\n  0x0b, 0x00, 0x00, 0x00, 0xf6, 0xff, 0xf6, 0xff, 0xf3, 0xff, 0xf3, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x07, 0x00, 0x07, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00,\n  0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x07, 0x00, 0x08, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x05, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x05, 0x00,\n  0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x05, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x04, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfb, 0xff, 0xfb, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x08, 0x00, 0x0a, 0x00,\n  0x05, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0xff, 0xff,\n  0xf8, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x0a, 0x00,\n  0x0a, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x10, 0x00, 0x0d, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00,\n  0x0d, 0x00, 0x07, 0x00, 0x04, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x07, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0d, 0x00,\n  0x0b, 0x00, 0x07, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x08, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x05, 0x00, 0xfe, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0x10, 0x00, 0x05, 0x00,\n  0xff, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf8, 0xff,\n  0x00, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0xf9, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x0d, 0x00, 0x17, 0x00,\n  0x0b, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf5, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x05, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x07, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x05, 0x00,\n  0x16, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf6, 0xff, 0xf6, 0xff,\n  0xf6, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff,\n  0xf8, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x0d, 0x00, 0x0a, 0x00,\n  0x04, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x08, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x08, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x05, 0x00, 0x02, 0x00,\n  0x08, 0x00, 0x07, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x07, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff,\n  0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x0a, 0x00,\n  0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x0a, 0x00, 0x08, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x05, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x08, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x05, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0d, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x05, 0x00,\n  0x0a, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x0b, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x0b, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x07, 0x00,\n  0x13, 0x00, 0x0d, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00,\n  0x07, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0x0a, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0x07, 0x00, 0x08, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x07, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff,\n  0xf9, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xf9, 0xff, 0x02, 0x00, 0x0a, 0x00, 0x07, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x07, 0x00, 0x07, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfb, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0x0a, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff,\n  0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x07, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x08, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x05, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x07, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xfb, 0xff, 0xf5, 0xff, 0xf3, 0xff, 0x02, 0x00, 0x07, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0xfe, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf6, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x04, 0x00, 0x07, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x00, 0x00,\n  0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x02, 0x00, 0x01, 0x00, 0xf9, 0xff,\n  0xff, 0xff, 0x0b, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xf9, 0xff,\n  0xf8, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x07, 0x00, 0xff, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x0b, 0x00, 0x07, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x0a, 0x00, 0x05, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x07, 0x00,\n  0x07, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x07, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x08, 0x00, 0x08, 0x00, 0x02, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x08, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x08, 0x00, 0x08, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x01, 0x00, 0x05, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x02, 0x00, 0x08, 0x00,\n  0x07, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xf6, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x02, 0x00,\n  0x04, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xf9, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x04, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x07, 0x00,\n  0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x05, 0x00, 0x08, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x08, 0x00,\n  0x05, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x07, 0x00, 0x05, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x05, 0x00,\n  0x08, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x0b, 0x00, 0x07, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x0b, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x02, 0x00, 0xfc, 0xff,\n  0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x08, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x04, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x04, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00,\n  0x0b, 0x00, 0x04, 0x00, 0x01, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xf8, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xf9, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x07, 0x00,\n  0x07, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x08, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x04, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xf5, 0xff, 0xfe, 0xff,\n  0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x07, 0x00, 0x0b, 0x00,\n  0x08, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xf9, 0xff,\n  0xf6, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff,\n  0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0x05, 0x00, 0x08, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xf8, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x08, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x02, 0x00,\n  0x0a, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x08, 0x00,\n  0x0d, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf9, 0xff, 0xf8, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00,\n  0x08, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xfb, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x05, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x04, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x04, 0x00,\n  0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x04, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x05, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x0a, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x07, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x04, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x07, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xf9, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfb, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x08, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x07, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xf8, 0xff, 0xf9, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x04, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x07, 0x00, 0x05, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff,\n  0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x08, 0x00, 0x05, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x07, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x05, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xf8, 0xff, 0xf8, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfb, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x05, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0xfb, 0xff, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf6, 0xff,\n  0xf6, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x04, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x07, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xfc, 0xff,\n  0xf9, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfb, 0xff, 0x01, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x05, 0x00, 0x0d, 0x00, 0x05, 0x00, 0x00, 0x00, 0xf9, 0xff,\n  0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0x02, 0x00, 0xff, 0xff, 0xf8, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x07, 0x00, 0x07, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff,\n  0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0x04, 0x00, 0x08, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x05, 0x00, 0x07, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x08, 0x00,\n  0x0b, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xf8, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x07, 0x00, 0x05, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x05, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xfc, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x08, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfb, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x08, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xf9, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00,\n  0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xf9, 0xff,\n  0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x07, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x05, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x07, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x05, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x07, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x04, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x02, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfb, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x07, 0x00, 0x01, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x07, 0x00, 0x05, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0x04, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xf9, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfb, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x04, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xf8, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x04, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x00, 0x00, 0xfb, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0xfc, 0xff, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x05, 0x00, 0x04, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xfb, 0xff, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x02, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x04, 0x00, 0x05, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfc, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x05, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x08, 0x00, 0x02, 0x00,\n  0xfc, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x04, 0x00,\n  0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xf9, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xf9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x04, 0x00,\n  0x04, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x04, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0xff, 0xff, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0x02, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x02, 0x00, 0x04, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x07, 0x00,\n  0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0xf9, 0xff,\n  0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfb, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x04, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfb, 0xff, 0x02, 0x00, 0x05, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0xfb, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x04, 0x00, 0x05, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff,\n  0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00,\n  0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x00, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xf9, 0xff, 0xfb, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfc, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfb, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x04, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x02, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x01, 0x00, 0xfc, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfc, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xff, 0xff, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff,\n  0xfb, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xfc, 0xff, 0xfe, 0xff, 0x01, 0x00, 0xfb, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0xff, 0xff,\n  0xfc, 0xff, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0xff, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00,\n  0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfb, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfe, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,\n  0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x01, 0x00,\n  0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00,\n  0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00, 0x01, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x00, 0x00, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x00, 0x00,\n  0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x01, 0x00,\n  0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00,\n  0xfe, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x01, 0x00,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0xff, 0xff, 0xfc, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,\n  0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xff, 0xff,\n  0xfe, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n  0xfe, 0xff, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x02, 0x00,\n  0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x02, 0x00, 0x01, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,\n  0x00, 0x00, 0xfe, 0xff, 0x05, 0x00, 0x01, 0x00, 0x02, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xff,\n  0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff,\n  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff,\n  0x01, 0x00, 0xfe, 0xff, 0x02, 0x00, 0xff, 0xff, 0xfe, 0xff, 0x02, 0x00,\n  0xfc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0xfc, 0xff, 0xfc, 0xff,\n  0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n  0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,\n  0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0xfc, 0xff\n};\n#define  tr808_sn_wav_len 44180\n"
  },
  {
    "path": "dist/glitch.exe.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<assembly xmlns=\"urn:schemas-microsoft-com:asm.v1\" manifestVersion=\"1.0\">\n<assemblyIdentity\n    version=\"1.0.0.0\"\n    processorArchitecture=\"x86\"\n    name=\"Glitch\"\n    type=\"win32\"\n/>\n<dependency>\n    <dependentAssembly>\n        <assemblyIdentity\n            type=\"win32\"\n            name=\"Glitch\"\n            version=\"0.0.0.0\"\n            processorArchitecture=\"*\"\n            language=\"*\"\n        />\n    </dependentAssembly>\n</dependency>\n</assembly>\n"
  },
  {
    "path": "dist/glitch.rc",
    "content": "100 ICON    \"icons\\\\glitch.ico\"\n100 24      \"glitch.exe.manifest\"\n"
  },
  {
    "path": "dist/release-linux.sh",
    "content": "#!/bin/sh\n\nVERSION=$(git describe --abbrev=0 --tags)\n\nDIR=$(cd $(dirname $0)/..; pwd)\nDISTNAME=glitch-linux-$(uname -m)-$VERSION\nDISTDIR=$DIR/dist/$DISTNAME\n\ncd $DIR\nmkdir -p $DISTDIR\n\ngo generate github.com/naivesound/glitch/...\ngo test github.com/naivesound/glitch/...\ngo vet github.com/naivesound/glitch/...\ngo build -o $DISTDIR/glitch github.com/naivesound/glitch/cmd/glitch\n\ncp $DIR/LICENSE $DISTDIR/LICENSE.txt\ncp $DIR/API.md $DISTDIR/API.md\ncp -r $DIR/examples $DISTDIR/examples\ncp -r $DIR/samples $DISTDIR/samples\n\ncd $DIR/dist\ntar czvf $DISTNAME.tar.gz $DISTNAME\n\nls -l $DISTNAME.tar.gz\n"
  },
  {
    "path": "dist/release-macos.sh",
    "content": "#!/bin/sh\n\nVERSION=$(git describe --abbrev=0 --tags)\n\nDIR=$(cd $(dirname $0)/..; pwd)\nDISTNAME=glitch-macos-$(uname -m)-$VERSION\nDISTDIR=$DIR/dist/$DISTNAME/\n\ncd $DIR\nmkdir -p $DISTDIR/Glitch.app/Contents/{MacOS,Resources}\n\ngo generate github.com/naivesound/glitch/...\ngo test github.com/naivesound/glitch/...\ngo vet github.com/naivesound/glitch/...\ngo build -o $DISTDIR/Glitch.app/Contents/MacOS/Glitch github.com/naivesound/glitch/cmd/glitch\n\ncat > $DISTDIR/Glitch.app/Contents/Info.plist << EOF\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n    <key>CFBundleExecutable</key>\n    <string>Glitch</string>\n    <key>CFBundleGetInfoString</key>\n    <string>Glitch</string>\n    <key>CFBundleIconFile</key>\n    <string>Glitch</string>\n    <key>CFBundleIdentifier</key>\n    <string>com.naivesound.glitch</string>\n    <key>CFBundleName</key>\n    <string>Glitch</string>\n    <key>CFBundlePackageType</key>\n    <string>APPL</string>\n</dict>\n</plist>\nEOF\ncp $DIR/dist/icons/glitch.icns $DISTDIR/Glitch.app/Contents/Resources/Glitch.icns\n\ncp $DIR/LICENSE $DISTDIR/LICENSE.txt\ncp $DIR/API.md $DISTDIR/API.md\ncp -r $DIR/examples $DISTDIR/examples\ncp -r $DIR/samples $DISTDIR/samples\n\ncd $DIR/dist\ntar czvf $DISTNAME.tar.gz $DISTNAME\n\nls -l $DISTNAME.tar.gz\n"
  },
  {
    "path": "dist/release-web.sh",
    "content": "#!/bin/sh\n\nVERSION=$(git describe --abbrev=0 --tags)\n\nDIR=$(cd $(dirname $0)/..; pwd)\nDISTNAME=glitch-web-$(uname -m)-$VERSION\nDISTDIR=$DIR/dist/$DISTNAME\n\ncd $DIR\nmkdir -p $DISTDIR\n\nEMCC_EXPORT=\"['_glitch_init','_glitch_create','_glitch_destroy','_glitch_reset','_glitch_compile','_glitch_set','_glitch_get','_glitch_midi','_glitch_set_sample_loader','_glitch_add_sample','_glitch_remove_sample','_glitch_fill']\"\n\n#\n# asm.js build\n#\ndocker run --rm -v $DIR/core:/src naivesound/emcc bash -c \\\n  \"mkdir -p build-asmjs && \\\n  cd build-asmjs && \\\n  /emscripten/emcmake cmake .. \\\n  && /emscripten/emmake make && \\\n  emcc libglitch-core.a \\\n    -o glitch-asm.js \\\n    --use-preload-plugins \\\n    -s ALLOW_MEMORY_GROWTH=1 \\\n    -s EXPORTED_FUNCTIONS=\\\"$EMCC_EXPORT\\\" -O3\"\ncp $DIR/core/build-asmjs/glitch-asm.js $DIR/core/build-asmjs/glitch-asm.js.mem $DISTDIR\n\n#\n# WebAssembly build\n#\ndocker run --rm -v $DIR/core:/src naivesound/emcc bash -c \\\n  \"mkdir -p build-wasm && \\\n  cd build-wasm && \\\n  /emscripten/emcmake cmake .. \\\n  && /emscripten/emmake make && \\\n  emcc libglitch-core.a \\\n    -o glitch.html \\\n    --use-preload-plugins \\\n    -s WASM=1 \\\n    -s ALLOW_MEMORY_GROWTH=1 \\\n    -s EXPORTED_FUNCTIONS=\\\"$EMCC_EXPORT\\\" -O3\"\ncp $DIR/core/build-wasm/glitch.wasm $DISTDIR\ncp $DIR/core/build-wasm/glitch.js $DISTDIR/glitch-loader.js\n\n# Copy other javascript assets\ncp -r $DIR/ui/app.js $DIR/ui/styles.css $DIR/ui/index.html $DIR/ui/vendor $DISTDIR\n"
  },
  {
    "path": "dist/release-windows.bat",
    "content": "@echo off\n\nreg Query \"HKLM\\Hardware\\Description\\System\\CentralProcessor\\0\" | find /i \"x86\" > NUL && set UNAME=i686 || set UNAME=amd64\nset PATH=%PATH%;C:\\Program Files\\7-Zip;C:\\Program Files\\Git\\bin\n\nFOR /F \"tokens=1 delims=\" %%A in ('git describe --abbrev^=0 --tags') do SET VERSION=%%A\n\nset DIR=%0\\..\\..\nset DISTNAME=glitch-windows-%UNAME%-%VERSION%\nset DISTDIR=%DIR%\\dist\\%DISTNAME%\n\nmkdir %DISTDIR%\n\nwindres -i %DIR%\\dist\\glitch.rc -O coff -o %DIR%\\cmd\\glitch\\glitch_rc.syso\n\ngo generate github.com/naivesound/glitch/cmd/glitch\ngo test github.com/naivesound/glitch/...\ngo vet github.com/naivesound/glitch/...\ngo build -ldflags \"-H windowsgui\" -o %DISTDIR%\\glitch.exe github.com/naivesound/glitch/cmd/glitch\n\ncopy /y %DIR%\\LICENSE %DISTDIR%\\LICENSE.txt\nxcopy /y %DIR%\\API.md %DISTDIR%\nxcopy /i /y %DIR%\\examples %DISTDIR%\\examples\nxcopy /i /y %DIR%\\samples %DISTDIR%\\samples\n\ncd %DIR%/dist\n\n7z a %DISTNAME%.zip %DISTNAME%\n\n"
  },
  {
    "path": "examples/bytebeat/42.glitch",
    "content": "#\n# A famous very laconic \"42\" bytebeat riff\n#\n\nbyte(t*(42&t>>10))\n"
  },
  {
    "path": "examples/bytebeat/arp.glitch",
    "content": "#\n# Combines two \"instruments\": a rhythmic two-note part and a chaotic\n# high-pitched voice\n#\n\nbyte((t*t/256)&(t>>((t/1024)%16))^t%64*(828188282217>>(t>>9&30)&t%32)*t>>18)\n"
  },
  {
    "path": "examples/bytebeat/dreamy.glitch",
    "content": "#\n# A calm 8-bit arpeggio\n#\n\nbyte((t*5&t>>7)|(t*3&t>>10))\n"
  },
  {
    "path": "examples/bytebeat/drum.glitch",
    "content": "#\n# Short random-pitched harsh tones sound like a drum pattern\n#\n\nbyte((t>>6|t<<1)+(t>>5|t<<3|t>>3)|t>>2|t<<1)\n"
  },
  {
    "path": "examples/bytebeat/nervous.glitch",
    "content": "#\n# Ascending progression of sawtooth waves\n#\n\nbyte((t*((3+(1^t>>10&5))*(5+(3&t>>14))))>>(t>>8&3))\n"
  },
  {
    "path": "examples/bytebeat/poly.glitch",
    "content": "#\n# Polyphonic mini-song made of \"drums\", \"lead\" synth and \"voice\".\n#\n\nbyte((t*9&t>>4|t*5&t>>7|t*3&t/1024)-1)\n"
  },
  {
    "path": "examples/bytebeat/right.glitch",
    "content": "#\n# A recurring riff made with right-shifts\n#\n\nbyte((t>>6|t|t>>(t>>16))*10+((t>>11)&7))\n\n"
  },
  {
    "path": "examples/bytebeat/saw.glitch",
    "content": "#\n# Harsh and clear dance of sawtooth waves,\n# a very popular bytebeat tune (made by @viznut)\n#\n\nbyte(t*((t>>12|t>>8)&63&t>>4))\n\n"
  },
  {
    "path": "examples/bytebeat/sqr.glitch",
    "content": "#\n# A melodic tune for square waves (made by @visy)\n#\n\nbyte((t*((t>>9|t>>13)&15))&129)\n\n"
  },
  {
    "path": "examples/bytebeat/white.glitch",
    "content": "#\n# White noise drums and high-pitch cosmic computer sounds\n#\n\nbyte(t*(t>>((t&4096)&&((t*t)/4096)||(t/4096)))|(t<<(t/256))|(t>>4))\n"
  },
  {
    "path": "examples/das_model.glitch",
    "content": "#\n# Kraftwerk - Das Model\n#\n\nbpm=120\n\nparts = seq(bpm/16, 0, 1, 3, 7, 7, 7, 7, 3, 1)\n\ni = seq(bpm/4, 0, 7)\n\nroot = saw(hz(i))\nthird = tri(hz(i+4))\nfifth = saw(hz(i+7))\n\nchords = env(seq(bpm*2,1)*mix(\n  (0.5,root)\n  (0.5,third)\n  (0.5,fifth)\n),0.01, 0.1)\n\nsolo = seq(bpm*2, 0, 0, 0, 0, 3, 0, 3, 0, -5, -5, -5, -5, -2, -5, -2, -5)\nsolo = fm(hz(solo-12), 0.5, 1)\n\ndrums = tr808(seq(bpm*4,0,8,1,8), seq(bpm,2,0.5,0.5,0.3))\n\nvoice = seq(bpm, 0, 0, (1/2,0), (1/2,3), (1/2,2), (1/2,0), (3/2,2), (1/2,-2), -5, (1/2+8, seq()), (1/2,-5))\nvoice = env(sin(hz(voice+12)), 0.01, 0.2)\n\nmix(\n\t2*drums\n\t(0.5*(parts&1)) * chords\n\t(0.5*((parts>>1)&1)) * solo\n\t(((parts>>2)&1) * voice)\n)\n"
  },
  {
    "path": "examples/drums.glitch",
    "content": "#\n# An example of synthesized drum kit\n#\n\nbpm=80\n\n# kick(volume, freq) - kick drum is a low-frequency sine wave with quick attack and decay\n$(kick, lpf(env($1*sin($2), 0.0001, 0.1), $2*3))\n# hats(volume, fltr) - high-hats are made of filtered white noise\n$(hats, hpf(env($1*r(), 0.0001, 0.2), 1000*$2))\n# snare(volume, freq) - snare drum is a mixture of a decaying sine wave and white noise\n$(snare, mix(env($1*sin($2), 0.0001, 0.02), hpf(env($1*r(0.4), 0.001, 0.03), 100)))\n\n\nkicks=seq(bpm*4, 1, 0, 0, 0.6, 1, 0, 0, 1, 0, 0, 0, 0.2, 1, 0, 0, 0)\nkick=kick(kicks, 50)\n\nhats=seq(bpm*4, 0.7, 0.5, 1, 0.5, 0.7, 0.5, 1, 0.5, 0.7, 0.5, 1, 0.7, 0.7, 0.5, 0.7, 0.5)\nhatfilters=seq(bpm*4, 1, 1, 2, 1, 1, 1, 2, 1, 1, 2, 2.5, 1, 1, 2, 1)\nhat = hats(hats, hatfilters)\n\nsnares=seq(bpm*4, 0, 0, r(50)/100+0.5, 0)\nsnare = snare(snares, 220)\n\nmix(1.5*kick, 0.1*hat, 1.2*snare)"
  },
  {
    "path": "examples/get_yucky.glitch",
    "content": "#\n# Get Lucky chords progression with hand-made drums\n#\n\nbpm=120\n\npart=seq(bpm/4/4, 1, 3, 7, 15, 15, 15, 15, 10, 3)\n\nkicks=seq(bpm, 1, 0)\nsnares=seq(bpm, 0, 1)\nhats=seq(bpm*4, 0.1, 0.2, 0.1, 0.2, 0.1, 0.2, 0.2, 0.1)\n\nkick=env(sin(83)*kicks, 0.01, 0.22)\nsnaretone=env(sin(220)*snares, 0.01, 0.07)\nsnarenoise=env(r(15)*snares, 0.001, 0.07)\nsnare = 0.2*hpf(snaretone + snarenoise, 100)\nhat = 0.5*hpf(env(r(30)*hats, 0.001, 0.07), 10000)\n\ni   = seq(bpm/4, 2, 5, 9, 7)-12\niii = seq(bpm/4, 5, 9, 12, 11)-12\nv   = seq(bpm/4, 9, 12, 16, 14)-12\n\npad=(sin(hz(i))+sin(hz(iii))+sin(hz(v)))/3\npad=0.5*env(pad, 0.45, 1.3)\n\narp=0.2*fm(hz(loop(bpm*2, i, iii, v, iii)), 1, 0.2)\n\nbass=(tri(hz(i-24))+sin(hz(v-24)))\n\ntremolo = env(bass*seq(bpm*4, 1, 0.5, 0.6, 0.8), 0.01, 0.2)\n\nmix(\n\t\t(part&1)*kick\n\t\t(part&1)*snare\n\t\t(part&1)*hat\n\t\t((part>>1)&1)*pad\n\t\t((part>>2)&1)*arp\n\t\t((part>>3)&1)*tremolo\n)\n"
  },
  {
    "path": "examples/sur_la_planche.glitch",
    "content": "bpm=100\n\np = seq(bpm/8,0,1,3,7,7,11,11,7,7,15,15,7,1)\n\nintro = seq(bpm*4, 0, 0, 7, 7)\nintro = env(tri(hz(intro-12)), 0.01, 0.02)\n\ndrums = mix(tr808(seq(bpm*2, 0, 1), 1))\n\nroot=sin(hz(seq(bpm/4, 0, 5)))\nthird=sin(hz(seq(bpm/2, 3, 3, 9, 8)))\nfifth=sin(hz(seq(bpm/2, 7, 7, 12, 12)))\n\nlead = env(seq(bpm*4,0) + (root+third+fifth)/3, 0.05, 0.05)\n\nbass = seq(bpm*4, (2,0), (6,0), (2,3), (6,3), (2,5),(6,5), 0, 8, 0, 7, 0, 6, 0, 5) - 12\nbass = env(fm(hz(bass), 0.5, 0.5), 0.01, 0.2)\n\nriff = loop(bpm*2, seq(bpm*2, 7, 7, 9, 8), 15, 12, 15)\nriff = lpf(saw(hz(riff)), (sin(4*1.6666666)+1)*500)\n\nsolo = seq(bpm*4,(3,0),6,7,6,(2,7),(8,3),(3,9),5,9,5,(2,9),(3,8),8,7,6,(2,5))\nsolo = mix(fm(hz(solo-12),1,1),sin(hz(solo)), tri(hz(solo+12)))\n\nmix(\n\t3*drums\n\t(p==0)*intro\n\t(p&1)*lead\n\t((p>>1)&1)*bass\n\t((p>>2)&1)*riff\n\t(((p>>3)&1)*0.7)*solo\n)\n"
  },
  {
    "path": "ui/app.js",
    "content": "'use strict';\n\nvar h = picodom.h;\n\nfunction isWebView() {\n  try {\n    window.external.invoke('');\n    return true;\n  } catch (e) {\n    return false;\n  }\n}\n\n// clang-format off\nfunction UI(app) {\n  return h('div', {class: 'container'},\n           webHeader(app),\n           appWindow(app),\n           webFooter(app));\n}\n\nfunction webHeader() {\n  return h('header', {class: 'webapp-shown'},\n           h('p', null,\n             h('h1', null, '#glitch'),\n               'by naivesound'),\n           h('ul', null,\n             h('li', null, h('a', {target: '_blank', href: 'http://naivesound.com/products/glitch'}, 'about')),\n             h('li', null, h('a', {target: '_blank', href: 'https://soundcloud.com/naivesound'}, 'examples')),\n             h('li', null, h('a', {target: '_blank', href: 'https://github.com/naivesound/glitch'}, 'github')),\n             h('li', null, h('a', {target: '_blank', href: 'https://github.com/naivesound/glitch/blob/master/API.md'}, 'help'))),\n           h('div', {class: 'window-title-bar'},\n             h('div', {class: 'window-title-bar-button'}),\n             h('div', {class: 'window-title-bar-button'}),\n             h('div', {class: 'window-title-bar-button'})));\n}\n\nfunction webFooter() {\n  return h('footer');\n}\n\nfunction appWindow(app) {\n  return h('div', {class: 'app-window'},\n           editor(app),\n           modal(app.modalName == 'settings', app, settings(app)),\n           errorBar(app),\n           toolbar(app));\n}\n\nfunction editor(app) {\n  var tid;\n  var oncreate = function(el) {\n    CodeMirror.defineMode(\"glitch\", function() {\n      function tokenize(stream, state) {\n        var c = stream.next();\n        if (/\\d/.test(c)) {\n          stream.eatWhile(/[\\d\\.]/);\n          return \"number\";\n        } else if (c == \"#\") {\n          stream.skipToEnd();\n          return \"comment\";\n        } else if (/[-+*\\/%&|^!=<>,]/.test(c)) {\n          return \"operator\";\n        } else if (c == '(' || c == ')') {\n          return \"operator\"\n        } else if (c == '$') {\n          if (stream.eat(/\\d+/)) {\n            return \"variable-3\";\n          }\n          return \"builtin\"\n        } else {\n          stream.eatWhile(/[\\w\\d_#]+/)\n          stream.eatSpace();\n          if (stream.peek() == '(') {\n            var s = stream.current();\n            if (/hz|sin|tri|saw|sqr|lpf|hpf|bpf|bsf|tr808|pluck|fm|delay|end|mix|seq|loop|a|s|l|r/.test(s)) {\n              return \"keyword\";\n            }\n            return \"variable-2\";\n          }\n          return \"variable\";\n        }\n      }\n      return {\n        startState: function() {\n          return {\n            tokenize: tokenize,\n          };\n        },\n        token: function(stream, state) {\n          if (stream.eatSpace()) return null;\n          return state.tokenize(stream, state);\n        },\n      };\n    });\n    app.editor = CodeMirror.fromTextArea(el, {\n      lineNumbers : true,\n      theme : 'material',\n      autofocus : true,\n      matchBrackets: true,\n      autoCloseBrackets: true,\n      scrollbarStyle : 'simple',\n    });\n    app.editor.setValue(app.data.text);\n    app.editor.on('change', function(cm, change) {\n      clearTimeout(tid);\n      tid = setTimeout(function() {\n        app.changeText(cm.getValue());\n      }, 250);\n    });\n  };\n  var el = h('div', {class: 'editor__wrapper-fixed'},\n             h('div', {class: 'editor__wrapper-outer'},\n               h('div', {class: 'editor__wrapper-inner'},\n                 h('textarea', {class: 'editor__textarea', oncreate: oncreate}))));\n  if (app.editor && app.data.text != app.editor.getValue()) {\n    app.editor.setValue(app.data.text);\n  }\n  return el;\n}\n\nfunction errorBar(app) {\n  return h('div', {class: 'error-dialog', style: {display: (app.data.error ? 'block' : 'none')}},\n           materialIcon('\\uE000'));\n}\n\nfunction modal(visible, app, contents) {\n  return h('div', {\n            class: 'modal-background',\n            style: {display: (visible ? 'block' : 'none')},\n            onclick: function() { app.modal(); },\n          }, h('div', {\n            class: 'modal',\n            onclick: function(e) {\n              e.preventDefault();\n              e.stopPropagation();\n            }\n          }, contents));\n}\n\nfunction settings(app) {\n  var sampleRates = [];\n  if (app.data.audioDevices[app.data.audioDevice]) {\n    sampleRates = app.data.audioDevices[app.data.audioDevice].sampleRates;\n  }\n  return h('div', null,\n           h('div', {class: 'modal-header'}, 'SETTINGS',\n             h('div', {class: 'modal-header-close', onclick: function() { app.modal(); }}, '×')),\n           h('div', {class: 'modal-content'},\n             h('form', null,\n               h('div', {class: 'modal-form-group'},\n                 h('label', {class: 'modal-form-label', for: 'audio-device-select'}, 'Audio device:'),\n                 h('select', {\n                   id: 'audio-device-select',\n                   class: 'modal-form-value',\n                   value: ''+app.data.audioDevice,\n                   onchange: function() {\n                     app.selectAudio(+this.value, app.data.sampleRate, app.data.bufferSize);\n                   }\n                 }, app.data.audioDevices.map(function(el) {\n                   return h('option', {value: ''+el.id}, el.name);\n                 }))),\n               h('div', {class: 'modal-form-group'},\n                 h('label', {class: 'modal-form-label', for: 'sample-rate-select'}, 'Sample rate:'),\n                 h('select', {\n                   id: 'sample-rate-select',\n                   class: 'modal-form-value',\n                   value: app.data.sampleRate,\n                   onchange: function() {\n                     app.selectAudio(app.data.audioDevice, +this.value, app.data.bufferSize);\n                   }\n                 }, sampleRates.map(function(el) {\n                   return h('option', {value: el}, el);\n                 }))),\n               h('div', {class: 'modal-form-group'},\n                 h('label', {class: 'modal-form-label', for: 'buffer-size-select'}, 'Buffer size:'),\n                 h('select', {\n                   id: 'buffer-size-select',\n                   class: 'modal-form-value',\n                   value: app.data.bufferSize,\n                   onchange: function() {\n                     app.selectAudio(app.data.audioDevice, app.data.sampleRate, +this.value);\n                   }\n                 }, [64, 128, 256, 512, 1024, 2048, 4096, 8192].map(function(el) {\n                   return h('option', {value: el}, el + '');\n                 })))),\n             h('div', null,\n               h('div', {class: 'modal-form-group'},\n                 h('label', {class: 'modal-form-label'}, 'MIDI devices:'),\n                 h('div', {class: 'modal-form-value'},\n                   app.data.midiDevices.length == 0 ?\n                     h('div', null, '(none)') :\n                     app.data.midiDevices.map(function(el, i) {\n                       var id = 'midi-'+i;\n                       return h('div', null,\n                                h('label', {'for': id},\n                                  h('input', {\n                                    type: 'checkbox',\n                                    checked: el.connected,\n                                    name: id,\n                                    id: id,\n                                    onchange: function() {\n                                      app.selectMIDI(el.name, !el.connected);\n                                    },\n                                  }),\n                                  el.name));\n                   }))))));\n}\n\nfunction toolbar(app) {\n  var icons = {\n    add: materialIcon('\\uE145'),\n    folderOpen: materialIcon('\\uE2C8'),\n    playArrow: materialIcon('\\uE037'),\n    pause: materialIcon('\\uE034'),\n    stop: materialIcon('\\uE047'),\n    settings: materialIcon('\\uE8B8'),\n    help: materialIcon('\\uE8FD'),\n  };\n  return h('div', {class: 'toolbar'},\n           h('ul', null,\n             h('li', null, h('div', {\n               class: 'toolbar__btn desktop-only',\n               onclick: app.newFile.bind(app),\n             }, icons.add)),\n             h('li', null, h('div', {\n               class: 'toolbar__btn desktop-only',\n               onclick: app.loadFile.bind(app),\n             }, icons.folderOpen)),\n             h('li', null, h('div', {\n               class: 'toolbar__btn',\n               onclick:app.togglePlayback.bind(app),\n             }, (app.data.isPlaying ? icons.pause : icons.playArrow))),\n             h('li', null, h('div', {\n               class: 'toolbar__btn',\n               onclick: app.stop.bind(app),\n             }, icons.stop)),\n             h('li', null, h('div', {\n               class: 'toolbar__btn desktop-only',\n               onclick: function() { app.modal('settings'); },\n             }, icons.settings)),\n             h('li', null, h('div', {\n               class: 'toolbar__btn',\n               onclick: function() { window.open('https://github.com/naivesound/glitch/blob/master/API.md'); },\n             }, icons.help))));\n}\n\nfunction materialIcon(icon) {\n  return h('i', {class: 'material-icons', style:{display: 'inline', fontSize: '32px', lineHeight: '64px'}}, icon);\n}\n\nfunction hideLoadingIndicator() {\n  document.getElementById('loading-spinner').style.display = 'none';\n}\n// clang-format on\n\nfunction WebRPC() {\n  var DEFAULT_SONG = \"\";\n  // Download asm.js or .wasm core\n  window.Module = window.Module || {};\n  var script = document.createElement('script');\n  script.type = 'text/javascript';\n  script.async = false;\n  if ('WebAssembly' in window) {\n    script.src = 'glitch-loader.js';\n  } else {\n    script.src = 'glitch-asm.js';\n  }\n  document.getElementsByTagName('head')[0].appendChild(script);\n\n  var audioContext = new window.AudioContext();\n  this.data = {\n    text: '',\n    isPlaying: false,\n    audioDevices: [],\n    midiDevices: [],\n    sampleRate: audioContext.sampleRate,\n    audioDevice: '',\n  };\n\n  this.init = function() {\n    Module.ccall(\n        'glitch_init', null, ['number', 'number'],\n        [audioContext.sampleRate, 0]);\n    var G = Module.ccall('glitch_create', null, [], []);\n    this.g = G;\n    if (navigator.requestMIDIAccess) {\n      navigator.requestMIDIAccess().then(function(midi) {\n        function enumerate() {\n          var inputs = midi.inputs.values();\n          for (var input = inputs.next(); input && !input.done;\n               input = inputs.next()) {\n            input.value.onmidimessage = function(m) {\n              Module.ccall(\n                  'glitch_midi', null, ['number', 'number', 'number', 'number'],\n                  [G, m.data[0], m.data[1], m.data[2]]);\n            };\n          }\n        };\n        enumerate();\n        midi.onstatechange = enumerate;\n      });\n    }\n\n    var AUDIO_BUFFER_SIZE = 1024;\n    var pcm = audioContext.createScriptProcessor(AUDIO_BUFFER_SIZE, 0, 1);\n    var analyser = audioContext.createAnalyser();\n\n    analyser.fftSize = 1024;\n    analyser.smoothingTimeConstant = 0;\n    analyser.connect(audioContext.destination);\n    pcm.onaudioprocess = undefined;\n\n    this.analyser = analyser;\n    this.pcm = pcm;\n\n    if (window.location.hash) {\n      this.data.text = decodeURIComponent(window.location.hash.substring(1));\n    } else if (localStorage.getItem('expr')) {\n      this.data.text = localStorage.getItem('expr');\n    } else {\n      this.data.text = DEFAULT_SONG;\n    }\n    if (window.location.search === '?play') {\n      this.togglePlayback();\n    }\n    this.changeText(this.data.text);\n    hideLoadingIndicator();\n    this.render();\n  };\n\n  this.refresh = function() {};\n\n  this.setVar = function(name, value) {\n    Module.ccall &&\n        Module.ccall(\n            'glitch_set', null, ['number', 'string', 'number'],\n            [this.g, name, value]);\n  };\n\n  this.changeText = function(text) {\n    var r = Module.ccall(\n        'glitch_compile', 'number', ['number', 'string', 'number'],\n        [this.g, text, text.length]);\n    if (r != 0) {\n      this.data.error = 'Syntax error';\n    } else {\n      this.data.error = null;\n      window.location.hash = encodeURIComponent(text);\n      localStorage.setItem('expr', text);\n    }\n    this.data.text = text;\n    this.render();\n  };\n\n  this.newFile = function() {};\n  this.loadFile = function() {};\n  this.stop = function() {\n    Module.ccall('glitch_reset', null, ['number'], [this.g]);\n    if (this.data.isPlaying) {\n      this.togglePlayback();\n    }\n    this.changeText(this.data.text);\n    this.render();\n  };\n\n  this.togglePlayback = function() {\n    this.data.isPlaying = !this.data.isPlaying;\n    if (this.data.isPlaying) {\n      this.pcm.connect(this.analyser);\n      this.pcm.onaudioprocess = this.audioCallback.bind(this);\n    } else {\n      this.pcm.disconnect();\n      this.pcm.onaudioprocess = undefined;\n    }\n    this.render();\n  };\n\n  this.audioCallback = function(e) {\n    var len = e.outputBuffer.length;\n    var n = len * Float32Array.BYTES_PER_ELEMENT;\n    var p = Module._malloc(n);\n    var heap = new Uint8Array(Module.HEAPU8.buffer, p, n);\n    heap.set(new Uint8Array(buffer.buffer));\n\n    Module.ccall(\n        'glitch_fill', null, ['number', 'number', 'number', 'number'],\n        [this.g, heap.byteOffset, len, 1]);\n    var result = new Float32Array(heap.buffer, heap.byteOffset, len);\n    e.outputBuffer.copyToChannel(result, 0, 0);\n    Module._free(p);\n  };\n\n  Module['onRuntimeInitialized'] = this.init.bind(this);\n  return this;\n}\n\nvar app;\n\nfunction init() {\n  app.render = function() {\n    return app.element = picodom.patch(\n               app.oldNode, (app.oldNode = UI(app, app.data)), app.element);\n  };\n\n  app.modal = function(name) {\n    app.modalName = name;\n    app.render();\n  };\n\n  // Ctrl+Enter to toggle playback\n  document.onkeydown = function(e) {\n    if (e.keyCode === 27 &&\n        app.modalName) {  // Esc - close current modal, if any\n      e.preventDefault();\n      app.modal();\n    } else if (e.keyCode === 78 && e.ctrlKey) {  // Ctrl+N\n      e.preventDefault();\n      app.newFile();\n    } else if (e.keyCode === 79 && e.ctrlKey) {  // Ctrl+O\n      e.preventDefault();\n      app.loadFile();\n    } else if (e.keyCode === 13 && e.ctrlKey) {  // Ctrl+Enter\n      e.preventDefault();\n      app.togglePlayback();\n    }\n  };\n\n  // Ctrl+mouse move to change X/Y values\n  document.onmousemove = function(e) {\n    if (e.ctrlKey) {\n      var x = e.pageX / window.innerWidth;\n      var y = 1 - (e.pageY / window.innerHeight);\n      app.setVar('x', x);\n      app.setVar('y', y);\n    }\n  };\n}\n\nif (isWebView()) {\n  document.body.classList.add('desktop-app');\n  hideLoadingIndicator();\n  window.external.invoke('__app_js_loaded__');\n} else {\n  app = new WebRPC();\n  init();\n}\n"
  },
  {
    "path": "ui/index.html",
    "content": "<!doctype html>\n<html>\n\t<head>\n\t\t<meta charset=\"UTF-8\">\n\t\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\n\t\t<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\" >\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, minimum-scale=1.0\">\n\n\t\t<link rel=\"icon\" type=\"image/png\" href=\"favicon.png\" sizes=\"16x16\">\n\t\t<link rel=\"apple-touch-icon\" href=\"glitch192x192.png\">\n\t\t<link rel=\"icon\" href=\"glitch180x180.png\">\n\n\t\t<title>Glitch</title>\n\n\t\t<link rel=\"stylesheet\" type=\"text/css\" href=\"vendor/roboto-mono/roboto-mono.css\">\n\t\t<link rel=\"stylesheet\" type=\"text/css\" href=\"vendor/material-icons/material-icons.css\">\n\t\t<link rel=\"stylesheet\" type=\"text/css\" href=\"vendor/codemirror/codemirror.css\">\n\t\t<link rel=\"stylesheet\" type=\"text/css\" href=\"vendor/codemirror/material.css\">\n\t\t<link rel=\"stylesheet\" type=\"text/css\" href=\"styles.css\">\n\t</head>\n\t<body>\n\t\t<noscript>\n\t\t\t<div class=\"noscript-container\">\n\t\t\t\t<p class=\"noscript-message\">Please, enable JavaScript to continue using\n\t\t\t\t\tthis software, or download a desktop version.</p>\n\t\t\t\t<a class=\"noscript-link\" target=\"_blank\" href=\"https://github.com/naivesound/glitch\">Download</a>\n\t\t\t</div>\n\t\t</noscript>\n\t\t<!--[if lt IE 9]>\n\t\t<div class=\"ie-upgrade-container\">\n\t\t\t<p class=\"ie-upgrade-message\">Please, upgrade Internet Explorer to continue using this software.</p>\n\t\t\t<a class=\"ie-upgrade-link\" target=\"_blank\" href=\"https://www.microsoft.com/en-us/download/internet-explorer.aspx\">Upgrade</a>\n\t\t</div>\n\t\t<![endif]-->\n\t\t<!--[if gte IE 9 | !IE ]> <!-->\n\t\t<div id=\"loading-spinner\"></div>\n\t\t<script src=\"vendor/codemirror/codemirror.js\"></script>\n\t\t<script src=\"vendor/codemirror/matchbrackets.js\"></script>\n\t\t<script src=\"vendor/codemirror/simplescrollbars.js\"></script>\n\t\t<script src=\"vendor/picodom/picodom.js\"></script>\n\t\t<script src=\"app.js\"></script>\n\t\t<script>\n\t\t\t(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n\t\t\t\t(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n\t\t\t\t\tm=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n\t\t\t})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');\n\t\t\tga('create', 'UA-33644825-3', 'auto');\n\t\t\tga('send', 'pageview');\n\t\t</script>\n\t\t<![endif]-->\n\t</body>\n</html>\n"
  },
  {
    "path": "ui/styles.css",
    "content": "* {\n\tmargin: 0;\n\tpadding: 0;\n\tbox-sizing: border-box;\n\tfont-family: 'Roboto Mono';\n}\n\nhtml { height: 100%; }\nbody {\n\twidth: 100%;\n\tmin-height: 100%;\n\tfont-size: 16px;\n\t-webkit-user-select: none;\n\t-moz-user-select: none;\n\t-ms-user-select: none;\n\t-o-user-select: none;\n\tuser-select: none;\n\tbackground-color: #212121;\n}\n\n/* NoScript message, IE9 and older message */\n.ie-upgrade-container, .noscript-container {\n\theight: 100%; background-color: #5677fc; color: #ffffff; font-size: 2em;\n}\n.ie-upgrade-message, .noscript-message { max-width: 25em; padding: 2em; }\n.ie-upgrade-link, .noscript-link {\n\tfont-weight: bold; color: #ffffff; text-transform: uppercase; padding: 2em;\n}\n\n/* Web version container around the main window */\n.container {\n\tposition: absolute;\n\twidth: 100%;\n\tmin-height: 100%;\n\tbackground-color: #ffc107;\n\tbackground-image: url(\"data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 12c0-.622-.095-1.221-.27-1.785A5.982 5.982 0 0 0 10 12c1.67 0 3.182-.683 4.27-1.785A5.998 5.998 0 0 0 14 12h2a4 4 0 0 1 4-4V6c-1.67 0-3.182.683-4.27 1.785C15.905 7.22 16 6.622 16 6c0-.622-.095-1.221-.27-1.785A5.982 5.982 0 0 0 20 6V4a4 4 0 0 1-4-4h-2c0 .622.095 1.221.27 1.785A5.982 5.982 0 0 0 10 0C8.33 0 6.818.683 5.73 1.785 5.905 1.22 6 .622 6 0H4a4 4 0 0 1-4 4v2c1.67 0 3.182.683 4.27 1.785A5.998 5.998 0 0 1 4 6c0-.622.095-1.221.27-1.785A5.982 5.982 0 0 1 0 6v2a4 4 0 0 1 4 4h2zm-4 0a2 2 0 0 0-2-2v2h2zm16 0a2 2 0 0 1 2-2v2h-2zM0 2a2 2 0 0 0 2-2H0v2zm20 0a2 2 0 0 1-2-2h2v2zm-10 8a4 4 0 1 0 0-8 4 4 0 0 0 0 8zm0-2a2 2 0 1 0 0-4 2 2 0 0 0 0 4z' fill='%23404040' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E\");\n}\n.container header {\n\theight: 240px;\n\tmax-width: 720px;\n\tmargin: 0 auto;\n\ttext-align: center;\n\tpadding: 2em 0 0 0;\n}\n.container footer {\n\theight: 3em;\n}\n.container header li {\n\tpadding: 2.5em 0.5em;\n\tdisplay: inline-block;\n}\n.container header a {\n\tdisplay: inline-block;\n\ttext-decoration: none;\n\tbackground-color: #ff5722;\n\tcolor: #fff;\n\tborder-radius: 2px;\n\tpadding: 0.5em 1em;\n\tmin-width: 6em;\n}\n.container header .window-title-bar {\n\tborder-radius: 4px 4px 0 0;\n\theight: 36px;\n\tbackground-color: #212121;\n\twidth: 100%;\n\ttext-align: left;\n\tpadding: 0.5em 1em 0 1em;\n\tz-index: 2;\n}\n.window-title-bar-button {\n\tdisplay: inline-block;\n\twidth: 0.7em;\n\theight: 0.7em;\n\tmargin: 0 0.3em;\n\tborder-radius: 0.35em;\n\tbackground-color: #404040;\n}\n.app-window {\n\tposition: relative;\n\tmax-width: 720px;\n\tmargin: 0 auto;\n\theight: 576px;\n\tbox-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);\n\toverflow: hidden;\n\tbackground-color: #212121;\n}\n\n/* App window elements */\n.error-dialog {\n\tz-index: 100;\n\tdisplay: none;\n\ttext-align: center;\n\tposition: absolute;\n\tmin-width: 64px;\n\tmax-width: 160px;\n\tmin-height: 64px;\n\tline-height: 64px;\n\ttop: 100%;\n\tleft: 100%;\n\tmargin-left: -72px;\n\tmargin-top: -128px;\n\tpadding: 0 0.5em;\n\tcolor: #ff5722;\n}\n\n.modal-background {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 64px;\n\tz-index: 5;\n\tpadding: 3em;\n\tbackground-color: rgba(0, 0, 0, 0.8);\n}\n.modal {\n\tz-index: 1000;\n\tmargin: 0 auto;\n\tposition: relative;\n\tbackground-color: #404040;\n\tcolor: #ffc107;\n\twidth: 480px;\n\theight: 320px;\n\tbox-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);\n}\n.modal-header {\n\tpadding: 1em;\n\tfont-weight: bold;\n}\n.modal-header-close {\n\tposition: absolute;\n\ttop: 1em;\n\tright: 1em;\n\twidth: 1em;\n\theight: 1em;\n\tcursor: pointer;\n}\n.modal-content {\n\tpadding: 0 1em;\n\toverflow: auto;\n\tmax-height: 267px;\n}\n.modal-form-group {\n\tmargin-bottom: 0.5em;\n}\n.modal-form-group .modal-form-label {\n\tdisplay: inline-block;\n\ttext-align: right;\n\twidth: 40%;\n\tpadding: 0 1em 0 0;\n}\n.modal-form-group label input[type=\"checkbox\"]{\n\tmargin-right: 0.5em;\n}\n.modal-form-group .modal-form-value {\n\twidth: 60%;\n\tdisplay: inline-block;\n\tvertical-align: top;\n\toverflow-x: hidden;\n\twhite-space: nowrap;\n}\n\n.toolbar {\n\theight: 64px;\n\tposition: absolute;\n\ttop: 100%;\n\tmargin-top: -64px;\n\twidth: 100%;\n\tbox-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);\n\tz-index: 3;\n\tbackground-color: #303030;\n}\n.toolbar ul {\n\tmax-width: 640px;\n\tmargin: 0 auto;\n\ttext-align: center;\n\tfont-size: 0;\n}\n.toolbar li {\n\tfont-size: 1rem;\n\tcolor: #eee;\n\tdisplay: inline-block;\n\ttext-align: center;\n}\n.toolbar__btn {\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tcolor: #ffc107;\n\tmin-width: 64px;\n\tline-height: 64px;\n\theight: 64px;\n\ttext-transform: uppercase;\n}\n.toolbar__btn:hover {\n\tcolor: #ffffff;\n}\n.editor__wrapper-fixed {\n\tposition: absolute;\n\twidth: 100%;\n\ttop: 0;\n\tbottom: 64px;\n}\n.editor__wrapper-outer {\n\tposition: relative;\n\twidth: 100%;\n\theight: 100%;\n}\n.editor__wrapper-inner {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n}\n\n/* Hide web-specific parts inside desktop app */\n.desktop-app .container { height: 100%; }\n.desktop-app .container header, .desktop-app .container footer { display: none; }\n.desktop-app .app-window { max-width: 100%; width: 100%; height: 100%; }\n.desktop-only { display: none; }\n.desktop-app .desktop-only { display: block; }\n\n/* CodeMirror editor styles */\n.CodeMirror { height: 100%; }\n.CodeMirror-scrollbar-filler { background: rgba(255, 255, 255, 0.1); }\n.CodeMirror-simplescroll-horizontal div,\n.CodeMirror-simplescroll-vertical div { position: absolute; background: #ffc107; }\n.CodeMirror-simplescroll-horizontal,\n.CodeMirror-simplescroll-vertical { position: absolute; z-index: 6; background: rgba(255, 255, 255, 0.1); }\n.CodeMirror-simplescroll-horizontal { bottom: 0; left: 0; height: 4px; }\n.CodeMirror-simplescroll-horizontal div { bottom: 0; height: 100%; } \n.CodeMirror-simplescroll-vertical { right: 0; top: 0; width: 4px; }\n.CodeMirror-simplescroll-vertical div { right: 0; width: 100%; }\n\n/* Loading indicator */\n#loading-spinner {\n\tposition: relative;\n\twidth: 40px;\n\theight: 40px;\n\tbackground-color: #333;\n\n\tmargin: 100px auto;\n\t-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;\n\tanimation: sk-rotateplane 1.2s infinite ease-in-out;\n}\n\n@-webkit-keyframes sk-rotateplane {\n\t0% { -webkit-transform: perspective(120px) }\n\t50% { -webkit-transform: perspective(120px) rotateY(180deg) }\n\t100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }\n}\n\n@keyframes sk-rotateplane {\n\t0% { \n\t\ttransform: perspective(120px) rotateX(0deg) rotateY(0deg);\n\t\t-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) \n\t} 50% { \n\t\ttransform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);\n\t\t-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) \n\t} 100% { \n\t\ttransform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);\n\t\t-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);\n\t}\n}\n"
  },
  {
    "path": "ui/vendor/codemirror/codemirror.css",
    "content": "/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: -20px;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 30px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -30px; margin-right: -30px;\n  padding-bottom: 30px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 30px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -30px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  overflow: auto;\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n"
  },
  {
    "path": "ui/vendor/codemirror/codemirror.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n// This is CodeMirror (http://codemirror.net), a code editor\n// implemented in JavaScript on top of the browser's DOM.\n//\n// You can find some technical background for some of the code below\n// at http://marijnhaverbeke.nl/blog/#cm-internals .\n\n(function (global, factory) {\n  typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :\n  typeof define === 'function' && define.amd ? define(factory) :\n  (global.CodeMirror = factory());\n}(this, (function () { 'use strict';\n\n// Kludges for bugs and behavior differences that can't be feature\n// detected are enabled based on userAgent etc sniffing.\nvar userAgent = navigator.userAgent\nvar platform = navigator.platform\n\nvar gecko = /gecko\\/\\d/i.test(userAgent)\nvar ie_upto10 = /MSIE \\d/.test(userAgent)\nvar ie_11up = /Trident\\/(?:[7-9]|\\d{2,})\\..*rv:(\\d+)/.exec(userAgent)\nvar edge = /Edge\\/(\\d+)/.exec(userAgent)\nvar ie = ie_upto10 || ie_11up || edge\nvar ie_version = ie && (ie_upto10 ? document.documentMode || 6 : +(edge || ie_11up)[1])\nvar webkit = !edge && /WebKit\\//.test(userAgent)\nvar qtwebkit = webkit && /Qt\\/\\d+\\.\\d+/.test(userAgent)\nvar chrome = !edge && /Chrome\\//.test(userAgent)\nvar presto = /Opera\\//.test(userAgent)\nvar safari = /Apple Computer/.test(navigator.vendor)\nvar mac_geMountainLion = /Mac OS X 1\\d\\D([8-9]|\\d\\d)\\D/.test(userAgent)\nvar phantom = /PhantomJS/.test(userAgent)\n\nvar ios = !edge && /AppleWebKit/.test(userAgent) && /Mobile\\/\\w+/.test(userAgent)\nvar android = /Android/.test(userAgent)\n// This is woefully incomplete. Suggestions for alternative methods welcome.\nvar mobile = ios || android || /webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(userAgent)\nvar mac = ios || /Mac/.test(platform)\nvar chromeOS = /\\bCrOS\\b/.test(userAgent)\nvar windows = /win/i.test(platform)\n\nvar presto_version = presto && userAgent.match(/Version\\/(\\d*\\.\\d*)/)\nif (presto_version) { presto_version = Number(presto_version[1]) }\nif (presto_version && presto_version >= 15) { presto = false; webkit = true }\n// Some browsers use the wrong event properties to signal cmd/ctrl on OS X\nvar flipCtrlCmd = mac && (qtwebkit || presto && (presto_version == null || presto_version < 12.11))\nvar captureRightClick = gecko || (ie && ie_version >= 9)\n\nfunction classTest(cls) { return new RegExp(\"(^|\\\\s)\" + cls + \"(?:$|\\\\s)\\\\s*\") }\n\nvar rmClass = function(node, cls) {\n  var current = node.className\n  var match = classTest(cls).exec(current)\n  if (match) {\n    var after = current.slice(match.index + match[0].length)\n    node.className = current.slice(0, match.index) + (after ? match[1] + after : \"\")\n  }\n}\n\nfunction removeChildren(e) {\n  for (var count = e.childNodes.length; count > 0; --count)\n    { e.removeChild(e.firstChild) }\n  return e\n}\n\nfunction removeChildrenAndAdd(parent, e) {\n  return removeChildren(parent).appendChild(e)\n}\n\nfunction elt(tag, content, className, style) {\n  var e = document.createElement(tag)\n  if (className) { e.className = className }\n  if (style) { e.style.cssText = style }\n  if (typeof content == \"string\") { e.appendChild(document.createTextNode(content)) }\n  else if (content) { for (var i = 0; i < content.length; ++i) { e.appendChild(content[i]) } }\n  return e\n}\n// wrapper for elt, which removes the elt from the accessibility tree\nfunction eltP(tag, content, className, style) {\n  var e = elt(tag, content, className, style)\n  e.setAttribute(\"role\", \"presentation\")\n  return e\n}\n\nvar range\nif (document.createRange) { range = function(node, start, end, endNode) {\n  var r = document.createRange()\n  r.setEnd(endNode || node, end)\n  r.setStart(node, start)\n  return r\n} }\nelse { range = function(node, start, end) {\n  var r = document.body.createTextRange()\n  try { r.moveToElementText(node.parentNode) }\n  catch(e) { return r }\n  r.collapse(true)\n  r.moveEnd(\"character\", end)\n  r.moveStart(\"character\", start)\n  return r\n} }\n\nfunction contains(parent, child) {\n  if (child.nodeType == 3) // Android browser always returns false when child is a textnode\n    { child = child.parentNode }\n  if (parent.contains)\n    { return parent.contains(child) }\n  do {\n    if (child.nodeType == 11) { child = child.host }\n    if (child == parent) { return true }\n  } while (child = child.parentNode)\n}\n\nfunction activeElt() {\n  // IE and Edge may throw an \"Unspecified Error\" when accessing document.activeElement.\n  // IE < 10 will throw when accessed while the page is loading or in an iframe.\n  // IE > 9 and Edge will throw when accessed in an iframe if document.body is unavailable.\n  var activeElement\n  try {\n    activeElement = document.activeElement\n  } catch(e) {\n    activeElement = document.body || null\n  }\n  while (activeElement && activeElement.shadowRoot && activeElement.shadowRoot.activeElement)\n    { activeElement = activeElement.shadowRoot.activeElement }\n  return activeElement\n}\n\nfunction addClass(node, cls) {\n  var current = node.className\n  if (!classTest(cls).test(current)) { node.className += (current ? \" \" : \"\") + cls }\n}\nfunction joinClasses(a, b) {\n  var as = a.split(\" \")\n  for (var i = 0; i < as.length; i++)\n    { if (as[i] && !classTest(as[i]).test(b)) { b += \" \" + as[i] } }\n  return b\n}\n\nvar selectInput = function(node) { node.select() }\nif (ios) // Mobile Safari apparently has a bug where select() is broken.\n  { selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length } }\nelse if (ie) // Suppress mysterious IE10 errors\n  { selectInput = function(node) { try { node.select() } catch(_e) {} } }\n\nfunction bind(f) {\n  var args = Array.prototype.slice.call(arguments, 1)\n  return function(){return f.apply(null, args)}\n}\n\nfunction copyObj(obj, target, overwrite) {\n  if (!target) { target = {} }\n  for (var prop in obj)\n    { if (obj.hasOwnProperty(prop) && (overwrite !== false || !target.hasOwnProperty(prop)))\n      { target[prop] = obj[prop] } }\n  return target\n}\n\n// Counts the column offset in a string, taking tabs into account.\n// Used mostly to find indentation.\nfunction countColumn(string, end, tabSize, startIndex, startValue) {\n  if (end == null) {\n    end = string.search(/[^\\s\\u00a0]/)\n    if (end == -1) { end = string.length }\n  }\n  for (var i = startIndex || 0, n = startValue || 0;;) {\n    var nextTab = string.indexOf(\"\\t\", i)\n    if (nextTab < 0 || nextTab >= end)\n      { return n + (end - i) }\n    n += nextTab - i\n    n += tabSize - (n % tabSize)\n    i = nextTab + 1\n  }\n}\n\nvar Delayed = function() {this.id = null};\nDelayed.prototype.set = function (ms, f) {\n  clearTimeout(this.id)\n  this.id = setTimeout(f, ms)\n};\n\nfunction indexOf(array, elt) {\n  for (var i = 0; i < array.length; ++i)\n    { if (array[i] == elt) { return i } }\n  return -1\n}\n\n// Number of pixels added to scroller and sizer to hide scrollbar\nvar scrollerGap = 30\n\n// Returned or thrown by various protocols to signal 'I'm not\n// handling this'.\nvar Pass = {toString: function(){return \"CodeMirror.Pass\"}}\n\n// Reused option objects for setSelection & friends\nvar sel_dontScroll = {scroll: false};\nvar sel_mouse = {origin: \"*mouse\"};\nvar sel_move = {origin: \"+move\"};\n// The inverse of countColumn -- find the offset that corresponds to\n// a particular column.\nfunction findColumn(string, goal, tabSize) {\n  for (var pos = 0, col = 0;;) {\n    var nextTab = string.indexOf(\"\\t\", pos)\n    if (nextTab == -1) { nextTab = string.length }\n    var skipped = nextTab - pos\n    if (nextTab == string.length || col + skipped >= goal)\n      { return pos + Math.min(skipped, goal - col) }\n    col += nextTab - pos\n    col += tabSize - (col % tabSize)\n    pos = nextTab + 1\n    if (col >= goal) { return pos }\n  }\n}\n\nvar spaceStrs = [\"\"]\nfunction spaceStr(n) {\n  while (spaceStrs.length <= n)\n    { spaceStrs.push(lst(spaceStrs) + \" \") }\n  return spaceStrs[n]\n}\n\nfunction lst(arr) { return arr[arr.length-1] }\n\nfunction map(array, f) {\n  var out = []\n  for (var i = 0; i < array.length; i++) { out[i] = f(array[i], i) }\n  return out\n}\n\nfunction insertSorted(array, value, score) {\n  var pos = 0, priority = score(value)\n  while (pos < array.length && score(array[pos]) <= priority) { pos++ }\n  array.splice(pos, 0, value)\n}\n\nfunction nothing() {}\n\nfunction createObj(base, props) {\n  var inst\n  if (Object.create) {\n    inst = Object.create(base)\n  } else {\n    nothing.prototype = base\n    inst = new nothing()\n  }\n  if (props) { copyObj(props, inst) }\n  return inst\n}\n\nvar nonASCIISingleCaseWordChar = /[\\u00df\\u0587\\u0590-\\u05f4\\u0600-\\u06ff\\u3040-\\u309f\\u30a0-\\u30ff\\u3400-\\u4db5\\u4e00-\\u9fcc\\uac00-\\ud7af]/\nfunction isWordCharBasic(ch) {\n  return /\\w/.test(ch) || ch > \"\\x80\" &&\n    (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch))\n}\nfunction isWordChar(ch, helper) {\n  if (!helper) { return isWordCharBasic(ch) }\n  if (helper.source.indexOf(\"\\\\w\") > -1 && isWordCharBasic(ch)) { return true }\n  return helper.test(ch)\n}\n\nfunction isEmpty(obj) {\n  for (var n in obj) { if (obj.hasOwnProperty(n) && obj[n]) { return false } }\n  return true\n}\n\n// Extending unicode characters. A series of a non-extending char +\n// any number of extending chars is treated as a single unit as far\n// as editing and measuring is concerned. This is not fully correct,\n// since some scripts/fonts/browsers also treat other configurations\n// of code points as a group.\nvar extendingChars = /[\\u0300-\\u036f\\u0483-\\u0489\\u0591-\\u05bd\\u05bf\\u05c1\\u05c2\\u05c4\\u05c5\\u05c7\\u0610-\\u061a\\u064b-\\u065e\\u0670\\u06d6-\\u06dc\\u06de-\\u06e4\\u06e7\\u06e8\\u06ea-\\u06ed\\u0711\\u0730-\\u074a\\u07a6-\\u07b0\\u07eb-\\u07f3\\u0816-\\u0819\\u081b-\\u0823\\u0825-\\u0827\\u0829-\\u082d\\u0900-\\u0902\\u093c\\u0941-\\u0948\\u094d\\u0951-\\u0955\\u0962\\u0963\\u0981\\u09bc\\u09be\\u09c1-\\u09c4\\u09cd\\u09d7\\u09e2\\u09e3\\u0a01\\u0a02\\u0a3c\\u0a41\\u0a42\\u0a47\\u0a48\\u0a4b-\\u0a4d\\u0a51\\u0a70\\u0a71\\u0a75\\u0a81\\u0a82\\u0abc\\u0ac1-\\u0ac5\\u0ac7\\u0ac8\\u0acd\\u0ae2\\u0ae3\\u0b01\\u0b3c\\u0b3e\\u0b3f\\u0b41-\\u0b44\\u0b4d\\u0b56\\u0b57\\u0b62\\u0b63\\u0b82\\u0bbe\\u0bc0\\u0bcd\\u0bd7\\u0c3e-\\u0c40\\u0c46-\\u0c48\\u0c4a-\\u0c4d\\u0c55\\u0c56\\u0c62\\u0c63\\u0cbc\\u0cbf\\u0cc2\\u0cc6\\u0ccc\\u0ccd\\u0cd5\\u0cd6\\u0ce2\\u0ce3\\u0d3e\\u0d41-\\u0d44\\u0d4d\\u0d57\\u0d62\\u0d63\\u0dca\\u0dcf\\u0dd2-\\u0dd4\\u0dd6\\u0ddf\\u0e31\\u0e34-\\u0e3a\\u0e47-\\u0e4e\\u0eb1\\u0eb4-\\u0eb9\\u0ebb\\u0ebc\\u0ec8-\\u0ecd\\u0f18\\u0f19\\u0f35\\u0f37\\u0f39\\u0f71-\\u0f7e\\u0f80-\\u0f84\\u0f86\\u0f87\\u0f90-\\u0f97\\u0f99-\\u0fbc\\u0fc6\\u102d-\\u1030\\u1032-\\u1037\\u1039\\u103a\\u103d\\u103e\\u1058\\u1059\\u105e-\\u1060\\u1071-\\u1074\\u1082\\u1085\\u1086\\u108d\\u109d\\u135f\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17b7-\\u17bd\\u17c6\\u17c9-\\u17d3\\u17dd\\u180b-\\u180d\\u18a9\\u1920-\\u1922\\u1927\\u1928\\u1932\\u1939-\\u193b\\u1a17\\u1a18\\u1a56\\u1a58-\\u1a5e\\u1a60\\u1a62\\u1a65-\\u1a6c\\u1a73-\\u1a7c\\u1a7f\\u1b00-\\u1b03\\u1b34\\u1b36-\\u1b3a\\u1b3c\\u1b42\\u1b6b-\\u1b73\\u1b80\\u1b81\\u1ba2-\\u1ba5\\u1ba8\\u1ba9\\u1c2c-\\u1c33\\u1c36\\u1c37\\u1cd0-\\u1cd2\\u1cd4-\\u1ce0\\u1ce2-\\u1ce8\\u1ced\\u1dc0-\\u1de6\\u1dfd-\\u1dff\\u200c\\u200d\\u20d0-\\u20f0\\u2cef-\\u2cf1\\u2de0-\\u2dff\\u302a-\\u302f\\u3099\\u309a\\ua66f-\\ua672\\ua67c\\ua67d\\ua6f0\\ua6f1\\ua802\\ua806\\ua80b\\ua825\\ua826\\ua8c4\\ua8e0-\\ua8f1\\ua926-\\ua92d\\ua947-\\ua951\\ua980-\\ua982\\ua9b3\\ua9b6-\\ua9b9\\ua9bc\\uaa29-\\uaa2e\\uaa31\\uaa32\\uaa35\\uaa36\\uaa43\\uaa4c\\uaab0\\uaab2-\\uaab4\\uaab7\\uaab8\\uaabe\\uaabf\\uaac1\\uabe5\\uabe8\\uabed\\udc00-\\udfff\\ufb1e\\ufe00-\\ufe0f\\ufe20-\\ufe26\\uff9e\\uff9f]/\nfunction isExtendingChar(ch) { return ch.charCodeAt(0) >= 768 && extendingChars.test(ch) }\n\n// Returns a number from the range [`0`; `str.length`] unless `pos` is outside that range.\nfunction skipExtendingChars(str, pos, dir) {\n  while ((dir < 0 ? pos > 0 : pos < str.length) && isExtendingChar(str.charAt(pos))) { pos += dir }\n  return pos\n}\n\n// Returns the value from the range [`from`; `to`] that satisfies\n// `pred` and is closest to `from`. Assumes that at least `to`\n// satisfies `pred`. Supports `from` being greater than `to`.\nfunction findFirst(pred, from, to) {\n  // At any point we are certain `to` satisfies `pred`, don't know\n  // whether `from` does.\n  var dir = from > to ? -1 : 1\n  for (;;) {\n    if (from == to) { return from }\n    var midF = (from + to) / 2, mid = dir < 0 ? Math.ceil(midF) : Math.floor(midF)\n    if (mid == from) { return pred(mid) ? from : to }\n    if (pred(mid)) { to = mid }\n    else { from = mid + dir }\n  }\n}\n\n// The display handles the DOM integration, both for input reading\n// and content drawing. It holds references to DOM nodes and\n// display-related state.\n\nfunction Display(place, doc, input) {\n  var d = this\n  this.input = input\n\n  // Covers bottom-right square when both scrollbars are present.\n  d.scrollbarFiller = elt(\"div\", null, \"CodeMirror-scrollbar-filler\")\n  d.scrollbarFiller.setAttribute(\"cm-not-content\", \"true\")\n  // Covers bottom of gutter when coverGutterNextToScrollbar is on\n  // and h scrollbar is present.\n  d.gutterFiller = elt(\"div\", null, \"CodeMirror-gutter-filler\")\n  d.gutterFiller.setAttribute(\"cm-not-content\", \"true\")\n  // Will contain the actual code, positioned to cover the viewport.\n  d.lineDiv = eltP(\"div\", null, \"CodeMirror-code\")\n  // Elements are added to these to represent selection and cursors.\n  d.selectionDiv = elt(\"div\", null, null, \"position: relative; z-index: 1\")\n  d.cursorDiv = elt(\"div\", null, \"CodeMirror-cursors\")\n  // A visibility: hidden element used to find the size of things.\n  d.measure = elt(\"div\", null, \"CodeMirror-measure\")\n  // When lines outside of the viewport are measured, they are drawn in this.\n  d.lineMeasure = elt(\"div\", null, \"CodeMirror-measure\")\n  // Wraps everything that needs to exist inside the vertically-padded coordinate system\n  d.lineSpace = eltP(\"div\", [d.measure, d.lineMeasure, d.selectionDiv, d.cursorDiv, d.lineDiv],\n                    null, \"position: relative; outline: none\")\n  var lines = eltP(\"div\", [d.lineSpace], \"CodeMirror-lines\")\n  // Moved around its parent to cover visible view.\n  d.mover = elt(\"div\", [lines], null, \"position: relative\")\n  // Set to the height of the document, allowing scrolling.\n  d.sizer = elt(\"div\", [d.mover], \"CodeMirror-sizer\")\n  d.sizerWidth = null\n  // Behavior of elts with overflow: auto and padding is\n  // inconsistent across browsers. This is used to ensure the\n  // scrollable area is big enough.\n  d.heightForcer = elt(\"div\", null, null, \"position: absolute; height: \" + scrollerGap + \"px; width: 1px;\")\n  // Will contain the gutters, if any.\n  d.gutters = elt(\"div\", null, \"CodeMirror-gutters\")\n  d.lineGutter = null\n  // Actual scrollable element.\n  d.scroller = elt(\"div\", [d.sizer, d.heightForcer, d.gutters], \"CodeMirror-scroll\")\n  d.scroller.setAttribute(\"tabIndex\", \"-1\")\n  // The element in which the editor lives.\n  d.wrapper = elt(\"div\", [d.scrollbarFiller, d.gutterFiller, d.scroller], \"CodeMirror\")\n\n  // Work around IE7 z-index bug (not perfect, hence IE7 not really being supported)\n  if (ie && ie_version < 8) { d.gutters.style.zIndex = -1; d.scroller.style.paddingRight = 0 }\n  if (!webkit && !(gecko && mobile)) { d.scroller.draggable = true }\n\n  if (place) {\n    if (place.appendChild) { place.appendChild(d.wrapper) }\n    else { place(d.wrapper) }\n  }\n\n  // Current rendered range (may be bigger than the view window).\n  d.viewFrom = d.viewTo = doc.first\n  d.reportedViewFrom = d.reportedViewTo = doc.first\n  // Information about the rendered lines.\n  d.view = []\n  d.renderedView = null\n  // Holds info about a single rendered line when it was rendered\n  // for measurement, while not in view.\n  d.externalMeasured = null\n  // Empty space (in pixels) above the view\n  d.viewOffset = 0\n  d.lastWrapHeight = d.lastWrapWidth = 0\n  d.updateLineNumbers = null\n\n  d.nativeBarWidth = d.barHeight = d.barWidth = 0\n  d.scrollbarsClipped = false\n\n  // Used to only resize the line number gutter when necessary (when\n  // the amount of lines crosses a boundary that makes its width change)\n  d.lineNumWidth = d.lineNumInnerWidth = d.lineNumChars = null\n  // Set to true when a non-horizontal-scrolling line widget is\n  // added. As an optimization, line widget aligning is skipped when\n  // this is false.\n  d.alignWidgets = false\n\n  d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null\n\n  // Tracks the maximum line length so that the horizontal scrollbar\n  // can be kept static when scrolling.\n  d.maxLine = null\n  d.maxLineLength = 0\n  d.maxLineChanged = false\n\n  // Used for measuring wheel scrolling granularity\n  d.wheelDX = d.wheelDY = d.wheelStartX = d.wheelStartY = null\n\n  // True when shift is held down.\n  d.shift = false\n\n  // Used to track whether anything happened since the context menu\n  // was opened.\n  d.selForContextMenu = null\n\n  d.activeTouch = null\n\n  input.init(d)\n}\n\n// Find the line object corresponding to the given line number.\nfunction getLine(doc, n) {\n  n -= doc.first\n  if (n < 0 || n >= doc.size) { throw new Error(\"There is no line \" + (n + doc.first) + \" in the document.\") }\n  var chunk = doc\n  while (!chunk.lines) {\n    for (var i = 0;; ++i) {\n      var child = chunk.children[i], sz = child.chunkSize()\n      if (n < sz) { chunk = child; break }\n      n -= sz\n    }\n  }\n  return chunk.lines[n]\n}\n\n// Get the part of a document between two positions, as an array of\n// strings.\nfunction getBetween(doc, start, end) {\n  var out = [], n = start.line\n  doc.iter(start.line, end.line + 1, function (line) {\n    var text = line.text\n    if (n == end.line) { text = text.slice(0, end.ch) }\n    if (n == start.line) { text = text.slice(start.ch) }\n    out.push(text)\n    ++n\n  })\n  return out\n}\n// Get the lines between from and to, as array of strings.\nfunction getLines(doc, from, to) {\n  var out = []\n  doc.iter(from, to, function (line) { out.push(line.text) }) // iter aborts when callback returns truthy value\n  return out\n}\n\n// Update the height of a line, propagating the height change\n// upwards to parent nodes.\nfunction updateLineHeight(line, height) {\n  var diff = height - line.height\n  if (diff) { for (var n = line; n; n = n.parent) { n.height += diff } }\n}\n\n// Given a line object, find its line number by walking up through\n// its parent links.\nfunction lineNo(line) {\n  if (line.parent == null) { return null }\n  var cur = line.parent, no = indexOf(cur.lines, line)\n  for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) {\n    for (var i = 0;; ++i) {\n      if (chunk.children[i] == cur) { break }\n      no += chunk.children[i].chunkSize()\n    }\n  }\n  return no + cur.first\n}\n\n// Find the line at the given vertical position, using the height\n// information in the document tree.\nfunction lineAtHeight(chunk, h) {\n  var n = chunk.first\n  outer: do {\n    for (var i$1 = 0; i$1 < chunk.children.length; ++i$1) {\n      var child = chunk.children[i$1], ch = child.height\n      if (h < ch) { chunk = child; continue outer }\n      h -= ch\n      n += child.chunkSize()\n    }\n    return n\n  } while (!chunk.lines)\n  var i = 0\n  for (; i < chunk.lines.length; ++i) {\n    var line = chunk.lines[i], lh = line.height\n    if (h < lh) { break }\n    h -= lh\n  }\n  return n + i\n}\n\nfunction isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size}\n\nfunction lineNumberFor(options, i) {\n  return String(options.lineNumberFormatter(i + options.firstLineNumber))\n}\n\n// A Pos instance represents a position within the text.\nfunction Pos(line, ch, sticky) {\n  if ( sticky === void 0 ) sticky = null;\n\n  if (!(this instanceof Pos)) { return new Pos(line, ch, sticky) }\n  this.line = line\n  this.ch = ch\n  this.sticky = sticky\n}\n\n// Compare two positions, return 0 if they are the same, a negative\n// number when a is less, and a positive number otherwise.\nfunction cmp(a, b) { return a.line - b.line || a.ch - b.ch }\n\nfunction equalCursorPos(a, b) { return a.sticky == b.sticky && cmp(a, b) == 0 }\n\nfunction copyPos(x) {return Pos(x.line, x.ch)}\nfunction maxPos(a, b) { return cmp(a, b) < 0 ? b : a }\nfunction minPos(a, b) { return cmp(a, b) < 0 ? a : b }\n\n// Most of the external API clips given positions to make sure they\n// actually exist within the document.\nfunction clipLine(doc, n) {return Math.max(doc.first, Math.min(n, doc.first + doc.size - 1))}\nfunction clipPos(doc, pos) {\n  if (pos.line < doc.first) { return Pos(doc.first, 0) }\n  var last = doc.first + doc.size - 1\n  if (pos.line > last) { return Pos(last, getLine(doc, last).text.length) }\n  return clipToLen(pos, getLine(doc, pos.line).text.length)\n}\nfunction clipToLen(pos, linelen) {\n  var ch = pos.ch\n  if (ch == null || ch > linelen) { return Pos(pos.line, linelen) }\n  else if (ch < 0) { return Pos(pos.line, 0) }\n  else { return pos }\n}\nfunction clipPosArray(doc, array) {\n  var out = []\n  for (var i = 0; i < array.length; i++) { out[i] = clipPos(doc, array[i]) }\n  return out\n}\n\n// Optimize some code when these features are not used.\nvar sawReadOnlySpans = false;\nvar sawCollapsedSpans = false;\nfunction seeReadOnlySpans() {\n  sawReadOnlySpans = true\n}\n\nfunction seeCollapsedSpans() {\n  sawCollapsedSpans = true\n}\n\n// TEXTMARKER SPANS\n\nfunction MarkedSpan(marker, from, to) {\n  this.marker = marker\n  this.from = from; this.to = to\n}\n\n// Search an array of spans for a span matching the given marker.\nfunction getMarkedSpanFor(spans, marker) {\n  if (spans) { for (var i = 0; i < spans.length; ++i) {\n    var span = spans[i]\n    if (span.marker == marker) { return span }\n  } }\n}\n// Remove a span from an array, returning undefined if no spans are\n// left (we don't store arrays for lines without spans).\nfunction removeMarkedSpan(spans, span) {\n  var r\n  for (var i = 0; i < spans.length; ++i)\n    { if (spans[i] != span) { (r || (r = [])).push(spans[i]) } }\n  return r\n}\n// Add a span to a line.\nfunction addMarkedSpan(line, span) {\n  line.markedSpans = line.markedSpans ? line.markedSpans.concat([span]) : [span]\n  span.marker.attachLine(line)\n}\n\n// Used for the algorithm that adjusts markers for a change in the\n// document. These functions cut an array of spans at a given\n// character position, returning an array of remaining chunks (or\n// undefined if nothing remains).\nfunction markedSpansBefore(old, startCh, isInsert) {\n  var nw\n  if (old) { for (var i = 0; i < old.length; ++i) {\n    var span = old[i], marker = span.marker\n    var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= startCh : span.from < startCh)\n    if (startsBefore || span.from == startCh && marker.type == \"bookmark\" && (!isInsert || !span.marker.insertLeft)) {\n      var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= startCh : span.to > startCh)\n      ;(nw || (nw = [])).push(new MarkedSpan(marker, span.from, endsAfter ? null : span.to))\n    }\n  } }\n  return nw\n}\nfunction markedSpansAfter(old, endCh, isInsert) {\n  var nw\n  if (old) { for (var i = 0; i < old.length; ++i) {\n    var span = old[i], marker = span.marker\n    var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= endCh : span.to > endCh)\n    if (endsAfter || span.from == endCh && marker.type == \"bookmark\" && (!isInsert || span.marker.insertLeft)) {\n      var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= endCh : span.from < endCh)\n      ;(nw || (nw = [])).push(new MarkedSpan(marker, startsBefore ? null : span.from - endCh,\n                                            span.to == null ? null : span.to - endCh))\n    }\n  } }\n  return nw\n}\n\n// Given a change object, compute the new set of marker spans that\n// cover the line in which the change took place. Removes spans\n// entirely within the change, reconnects spans belonging to the\n// same marker that appear on both sides of the change, and cuts off\n// spans partially within the change. Returns an array of span\n// arrays with one element for each line in (after) the change.\nfunction stretchSpansOverChange(doc, change) {\n  if (change.full) { return null }\n  var oldFirst = isLine(doc, change.from.line) && getLine(doc, change.from.line).markedSpans\n  var oldLast = isLine(doc, change.to.line) && getLine(doc, change.to.line).markedSpans\n  if (!oldFirst && !oldLast) { return null }\n\n  var startCh = change.from.ch, endCh = change.to.ch, isInsert = cmp(change.from, change.to) == 0\n  // Get the spans that 'stick out' on both sides\n  var first = markedSpansBefore(oldFirst, startCh, isInsert)\n  var last = markedSpansAfter(oldLast, endCh, isInsert)\n\n  // Next, merge those two ends\n  var sameLine = change.text.length == 1, offset = lst(change.text).length + (sameLine ? startCh : 0)\n  if (first) {\n    // Fix up .to properties of first\n    for (var i = 0; i < first.length; ++i) {\n      var span = first[i]\n      if (span.to == null) {\n        var found = getMarkedSpanFor(last, span.marker)\n        if (!found) { span.to = startCh }\n        else if (sameLine) { span.to = found.to == null ? null : found.to + offset }\n      }\n    }\n  }\n  if (last) {\n    // Fix up .from in last (or move them into first in case of sameLine)\n    for (var i$1 = 0; i$1 < last.length; ++i$1) {\n      var span$1 = last[i$1]\n      if (span$1.to != null) { span$1.to += offset }\n      if (span$1.from == null) {\n        var found$1 = getMarkedSpanFor(first, span$1.marker)\n        if (!found$1) {\n          span$1.from = offset\n          if (sameLine) { (first || (first = [])).push(span$1) }\n        }\n      } else {\n        span$1.from += offset\n        if (sameLine) { (first || (first = [])).push(span$1) }\n      }\n    }\n  }\n  // Make sure we didn't create any zero-length spans\n  if (first) { first = clearEmptySpans(first) }\n  if (last && last != first) { last = clearEmptySpans(last) }\n\n  var newMarkers = [first]\n  if (!sameLine) {\n    // Fill gap with whole-line-spans\n    var gap = change.text.length - 2, gapMarkers\n    if (gap > 0 && first)\n      { for (var i$2 = 0; i$2 < first.length; ++i$2)\n        { if (first[i$2].to == null)\n          { (gapMarkers || (gapMarkers = [])).push(new MarkedSpan(first[i$2].marker, null, null)) } } }\n    for (var i$3 = 0; i$3 < gap; ++i$3)\n      { newMarkers.push(gapMarkers) }\n    newMarkers.push(last)\n  }\n  return newMarkers\n}\n\n// Remove spans that are empty and don't have a clearWhenEmpty\n// option of false.\nfunction clearEmptySpans(spans) {\n  for (var i = 0; i < spans.length; ++i) {\n    var span = spans[i]\n    if (span.from != null && span.from == span.to && span.marker.clearWhenEmpty !== false)\n      { spans.splice(i--, 1) }\n  }\n  if (!spans.length) { return null }\n  return spans\n}\n\n// Used to 'clip' out readOnly ranges when making a change.\nfunction removeReadOnlyRanges(doc, from, to) {\n  var markers = null\n  doc.iter(from.line, to.line + 1, function (line) {\n    if (line.markedSpans) { for (var i = 0; i < line.markedSpans.length; ++i) {\n      var mark = line.markedSpans[i].marker\n      if (mark.readOnly && (!markers || indexOf(markers, mark) == -1))\n        { (markers || (markers = [])).push(mark) }\n    } }\n  })\n  if (!markers) { return null }\n  var parts = [{from: from, to: to}]\n  for (var i = 0; i < markers.length; ++i) {\n    var mk = markers[i], m = mk.find(0)\n    for (var j = 0; j < parts.length; ++j) {\n      var p = parts[j]\n      if (cmp(p.to, m.from) < 0 || cmp(p.from, m.to) > 0) { continue }\n      var newParts = [j, 1], dfrom = cmp(p.from, m.from), dto = cmp(p.to, m.to)\n      if (dfrom < 0 || !mk.inclusiveLeft && !dfrom)\n        { newParts.push({from: p.from, to: m.from}) }\n      if (dto > 0 || !mk.inclusiveRight && !dto)\n        { newParts.push({from: m.to, to: p.to}) }\n      parts.splice.apply(parts, newParts)\n      j += newParts.length - 3\n    }\n  }\n  return parts\n}\n\n// Connect or disconnect spans from a line.\nfunction detachMarkedSpans(line) {\n  var spans = line.markedSpans\n  if (!spans) { return }\n  for (var i = 0; i < spans.length; ++i)\n    { spans[i].marker.detachLine(line) }\n  line.markedSpans = null\n}\nfunction attachMarkedSpans(line, spans) {\n  if (!spans) { return }\n  for (var i = 0; i < spans.length; ++i)\n    { spans[i].marker.attachLine(line) }\n  line.markedSpans = spans\n}\n\n// Helpers used when computing which overlapping collapsed span\n// counts as the larger one.\nfunction extraLeft(marker) { return marker.inclusiveLeft ? -1 : 0 }\nfunction extraRight(marker) { return marker.inclusiveRight ? 1 : 0 }\n\n// Returns a number indicating which of two overlapping collapsed\n// spans is larger (and thus includes the other). Falls back to\n// comparing ids when the spans cover exactly the same range.\nfunction compareCollapsedMarkers(a, b) {\n  var lenDiff = a.lines.length - b.lines.length\n  if (lenDiff != 0) { return lenDiff }\n  var aPos = a.find(), bPos = b.find()\n  var fromCmp = cmp(aPos.from, bPos.from) || extraLeft(a) - extraLeft(b)\n  if (fromCmp) { return -fromCmp }\n  var toCmp = cmp(aPos.to, bPos.to) || extraRight(a) - extraRight(b)\n  if (toCmp) { return toCmp }\n  return b.id - a.id\n}\n\n// Find out whether a line ends or starts in a collapsed span. If\n// so, return the marker for that span.\nfunction collapsedSpanAtSide(line, start) {\n  var sps = sawCollapsedSpans && line.markedSpans, found\n  if (sps) { for (var sp = (void 0), i = 0; i < sps.length; ++i) {\n    sp = sps[i]\n    if (sp.marker.collapsed && (start ? sp.from : sp.to) == null &&\n        (!found || compareCollapsedMarkers(found, sp.marker) < 0))\n      { found = sp.marker }\n  } }\n  return found\n}\nfunction collapsedSpanAtStart(line) { return collapsedSpanAtSide(line, true) }\nfunction collapsedSpanAtEnd(line) { return collapsedSpanAtSide(line, false) }\n\n// Test whether there exists a collapsed span that partially\n// overlaps (covers the start or end, but not both) of a new span.\n// Such overlap is not allowed.\nfunction conflictingCollapsedRange(doc, lineNo, from, to, marker) {\n  var line = getLine(doc, lineNo)\n  var sps = sawCollapsedSpans && line.markedSpans\n  if (sps) { for (var i = 0; i < sps.length; ++i) {\n    var sp = sps[i]\n    if (!sp.marker.collapsed) { continue }\n    var found = sp.marker.find(0)\n    var fromCmp = cmp(found.from, from) || extraLeft(sp.marker) - extraLeft(marker)\n    var toCmp = cmp(found.to, to) || extraRight(sp.marker) - extraRight(marker)\n    if (fromCmp >= 0 && toCmp <= 0 || fromCmp <= 0 && toCmp >= 0) { continue }\n    if (fromCmp <= 0 && (sp.marker.inclusiveRight && marker.inclusiveLeft ? cmp(found.to, from) >= 0 : cmp(found.to, from) > 0) ||\n        fromCmp >= 0 && (sp.marker.inclusiveRight && marker.inclusiveLeft ? cmp(found.from, to) <= 0 : cmp(found.from, to) < 0))\n      { return true }\n  } }\n}\n\n// A visual line is a line as drawn on the screen. Folding, for\n// example, can cause multiple logical lines to appear on the same\n// visual line. This finds the start of the visual line that the\n// given line is part of (usually that is the line itself).\nfunction visualLine(line) {\n  var merged\n  while (merged = collapsedSpanAtStart(line))\n    { line = merged.find(-1, true).line }\n  return line\n}\n\nfunction visualLineEnd(line) {\n  var merged\n  while (merged = collapsedSpanAtEnd(line))\n    { line = merged.find(1, true).line }\n  return line\n}\n\n// Returns an array of logical lines that continue the visual line\n// started by the argument, or undefined if there are no such lines.\nfunction visualLineContinued(line) {\n  var merged, lines\n  while (merged = collapsedSpanAtEnd(line)) {\n    line = merged.find(1, true).line\n    ;(lines || (lines = [])).push(line)\n  }\n  return lines\n}\n\n// Get the line number of the start of the visual line that the\n// given line number is part of.\nfunction visualLineNo(doc, lineN) {\n  var line = getLine(doc, lineN), vis = visualLine(line)\n  if (line == vis) { return lineN }\n  return lineNo(vis)\n}\n\n// Get the line number of the start of the next visual line after\n// the given line.\nfunction visualLineEndNo(doc, lineN) {\n  if (lineN > doc.lastLine()) { return lineN }\n  var line = getLine(doc, lineN), merged\n  if (!lineIsHidden(doc, line)) { return lineN }\n  while (merged = collapsedSpanAtEnd(line))\n    { line = merged.find(1, true).line }\n  return lineNo(line) + 1\n}\n\n// Compute whether a line is hidden. Lines count as hidden when they\n// are part of a visual line that starts with another line, or when\n// they are entirely covered by collapsed, non-widget span.\nfunction lineIsHidden(doc, line) {\n  var sps = sawCollapsedSpans && line.markedSpans\n  if (sps) { for (var sp = (void 0), i = 0; i < sps.length; ++i) {\n    sp = sps[i]\n    if (!sp.marker.collapsed) { continue }\n    if (sp.from == null) { return true }\n    if (sp.marker.widgetNode) { continue }\n    if (sp.from == 0 && sp.marker.inclusiveLeft && lineIsHiddenInner(doc, line, sp))\n      { return true }\n  } }\n}\nfunction lineIsHiddenInner(doc, line, span) {\n  if (span.to == null) {\n    var end = span.marker.find(1, true)\n    return lineIsHiddenInner(doc, end.line, getMarkedSpanFor(end.line.markedSpans, span.marker))\n  }\n  if (span.marker.inclusiveRight && span.to == line.text.length)\n    { return true }\n  for (var sp = (void 0), i = 0; i < line.markedSpans.length; ++i) {\n    sp = line.markedSpans[i]\n    if (sp.marker.collapsed && !sp.marker.widgetNode && sp.from == span.to &&\n        (sp.to == null || sp.to != span.from) &&\n        (sp.marker.inclusiveLeft || span.marker.inclusiveRight) &&\n        lineIsHiddenInner(doc, line, sp)) { return true }\n  }\n}\n\n// Find the height above the given line.\nfunction heightAtLine(lineObj) {\n  lineObj = visualLine(lineObj)\n\n  var h = 0, chunk = lineObj.parent\n  for (var i = 0; i < chunk.lines.length; ++i) {\n    var line = chunk.lines[i]\n    if (line == lineObj) { break }\n    else { h += line.height }\n  }\n  for (var p = chunk.parent; p; chunk = p, p = chunk.parent) {\n    for (var i$1 = 0; i$1 < p.children.length; ++i$1) {\n      var cur = p.children[i$1]\n      if (cur == chunk) { break }\n      else { h += cur.height }\n    }\n  }\n  return h\n}\n\n// Compute the character length of a line, taking into account\n// collapsed ranges (see markText) that might hide parts, and join\n// other lines onto it.\nfunction lineLength(line) {\n  if (line.height == 0) { return 0 }\n  var len = line.text.length, merged, cur = line\n  while (merged = collapsedSpanAtStart(cur)) {\n    var found = merged.find(0, true)\n    cur = found.from.line\n    len += found.from.ch - found.to.ch\n  }\n  cur = line\n  while (merged = collapsedSpanAtEnd(cur)) {\n    var found$1 = merged.find(0, true)\n    len -= cur.text.length - found$1.from.ch\n    cur = found$1.to.line\n    len += cur.text.length - found$1.to.ch\n  }\n  return len\n}\n\n// Find the longest line in the document.\nfunction findMaxLine(cm) {\n  var d = cm.display, doc = cm.doc\n  d.maxLine = getLine(doc, doc.first)\n  d.maxLineLength = lineLength(d.maxLine)\n  d.maxLineChanged = true\n  doc.iter(function (line) {\n    var len = lineLength(line)\n    if (len > d.maxLineLength) {\n      d.maxLineLength = len\n      d.maxLine = line\n    }\n  })\n}\n\n// BIDI HELPERS\n\nfunction iterateBidiSections(order, from, to, f) {\n  if (!order) { return f(from, to, \"ltr\", 0) }\n  var found = false\n  for (var i = 0; i < order.length; ++i) {\n    var part = order[i]\n    if (part.from < to && part.to > from || from == to && part.to == from) {\n      f(Math.max(part.from, from), Math.min(part.to, to), part.level == 1 ? \"rtl\" : \"ltr\", i)\n      found = true\n    }\n  }\n  if (!found) { f(from, to, \"ltr\") }\n}\n\nvar bidiOther = null\nfunction getBidiPartAt(order, ch, sticky) {\n  var found\n  bidiOther = null\n  for (var i = 0; i < order.length; ++i) {\n    var cur = order[i]\n    if (cur.from < ch && cur.to > ch) { return i }\n    if (cur.to == ch) {\n      if (cur.from != cur.to && sticky == \"before\") { found = i }\n      else { bidiOther = i }\n    }\n    if (cur.from == ch) {\n      if (cur.from != cur.to && sticky != \"before\") { found = i }\n      else { bidiOther = i }\n    }\n  }\n  return found != null ? found : bidiOther\n}\n\n// Bidirectional ordering algorithm\n// See http://unicode.org/reports/tr9/tr9-13.html for the algorithm\n// that this (partially) implements.\n\n// One-char codes used for character types:\n// L (L):   Left-to-Right\n// R (R):   Right-to-Left\n// r (AL):  Right-to-Left Arabic\n// 1 (EN):  European Number\n// + (ES):  European Number Separator\n// % (ET):  European Number Terminator\n// n (AN):  Arabic Number\n// , (CS):  Common Number Separator\n// m (NSM): Non-Spacing Mark\n// b (BN):  Boundary Neutral\n// s (B):   Paragraph Separator\n// t (S):   Segment Separator\n// w (WS):  Whitespace\n// N (ON):  Other Neutrals\n\n// Returns null if characters are ordered as they appear\n// (left-to-right), or an array of sections ({from, to, level}\n// objects) in the order in which they occur visually.\nvar bidiOrdering = (function() {\n  // Character types for codepoints 0 to 0xff\n  var lowTypes = \"bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN\"\n  // Character types for codepoints 0x600 to 0x6f9\n  var arabicTypes = \"nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111\"\n  function charType(code) {\n    if (code <= 0xf7) { return lowTypes.charAt(code) }\n    else if (0x590 <= code && code <= 0x5f4) { return \"R\" }\n    else if (0x600 <= code && code <= 0x6f9) { return arabicTypes.charAt(code - 0x600) }\n    else if (0x6ee <= code && code <= 0x8ac) { return \"r\" }\n    else if (0x2000 <= code && code <= 0x200b) { return \"w\" }\n    else if (code == 0x200c) { return \"b\" }\n    else { return \"L\" }\n  }\n\n  var bidiRE = /[\\u0590-\\u05f4\\u0600-\\u06ff\\u0700-\\u08ac]/\n  var isNeutral = /[stwN]/, isStrong = /[LRr]/, countsAsLeft = /[Lb1n]/, countsAsNum = /[1n]/\n\n  function BidiSpan(level, from, to) {\n    this.level = level\n    this.from = from; this.to = to\n  }\n\n  return function(str, direction) {\n    var outerType = direction == \"ltr\" ? \"L\" : \"R\"\n\n    if (str.length == 0 || direction == \"ltr\" && !bidiRE.test(str)) { return false }\n    var len = str.length, types = []\n    for (var i = 0; i < len; ++i)\n      { types.push(charType(str.charCodeAt(i))) }\n\n    // W1. Examine each non-spacing mark (NSM) in the level run, and\n    // change the type of the NSM to the type of the previous\n    // character. If the NSM is at the start of the level run, it will\n    // get the type of sor.\n    for (var i$1 = 0, prev = outerType; i$1 < len; ++i$1) {\n      var type = types[i$1]\n      if (type == \"m\") { types[i$1] = prev }\n      else { prev = type }\n    }\n\n    // W2. Search backwards from each instance of a European number\n    // until the first strong type (R, L, AL, or sor) is found. If an\n    // AL is found, change the type of the European number to Arabic\n    // number.\n    // W3. Change all ALs to R.\n    for (var i$2 = 0, cur = outerType; i$2 < len; ++i$2) {\n      var type$1 = types[i$2]\n      if (type$1 == \"1\" && cur == \"r\") { types[i$2] = \"n\" }\n      else if (isStrong.test(type$1)) { cur = type$1; if (type$1 == \"r\") { types[i$2] = \"R\" } }\n    }\n\n    // W4. A single European separator between two European numbers\n    // changes to a European number. A single common separator between\n    // two numbers of the same type changes to that type.\n    for (var i$3 = 1, prev$1 = types[0]; i$3 < len - 1; ++i$3) {\n      var type$2 = types[i$3]\n      if (type$2 == \"+\" && prev$1 == \"1\" && types[i$3+1] == \"1\") { types[i$3] = \"1\" }\n      else if (type$2 == \",\" && prev$1 == types[i$3+1] &&\n               (prev$1 == \"1\" || prev$1 == \"n\")) { types[i$3] = prev$1 }\n      prev$1 = type$2\n    }\n\n    // W5. A sequence of European terminators adjacent to European\n    // numbers changes to all European numbers.\n    // W6. Otherwise, separators and terminators change to Other\n    // Neutral.\n    for (var i$4 = 0; i$4 < len; ++i$4) {\n      var type$3 = types[i$4]\n      if (type$3 == \",\") { types[i$4] = \"N\" }\n      else if (type$3 == \"%\") {\n        var end = (void 0)\n        for (end = i$4 + 1; end < len && types[end] == \"%\"; ++end) {}\n        var replace = (i$4 && types[i$4-1] == \"!\") || (end < len && types[end] == \"1\") ? \"1\" : \"N\"\n        for (var j = i$4; j < end; ++j) { types[j] = replace }\n        i$4 = end - 1\n      }\n    }\n\n    // W7. Search backwards from each instance of a European number\n    // until the first strong type (R, L, or sor) is found. If an L is\n    // found, then change the type of the European number to L.\n    for (var i$5 = 0, cur$1 = outerType; i$5 < len; ++i$5) {\n      var type$4 = types[i$5]\n      if (cur$1 == \"L\" && type$4 == \"1\") { types[i$5] = \"L\" }\n      else if (isStrong.test(type$4)) { cur$1 = type$4 }\n    }\n\n    // N1. A sequence of neutrals takes the direction of the\n    // surrounding strong text if the text on both sides has the same\n    // direction. European and Arabic numbers act as if they were R in\n    // terms of their influence on neutrals. Start-of-level-run (sor)\n    // and end-of-level-run (eor) are used at level run boundaries.\n    // N2. Any remaining neutrals take the embedding direction.\n    for (var i$6 = 0; i$6 < len; ++i$6) {\n      if (isNeutral.test(types[i$6])) {\n        var end$1 = (void 0)\n        for (end$1 = i$6 + 1; end$1 < len && isNeutral.test(types[end$1]); ++end$1) {}\n        var before = (i$6 ? types[i$6-1] : outerType) == \"L\"\n        var after = (end$1 < len ? types[end$1] : outerType) == \"L\"\n        var replace$1 = before == after ? (before ? \"L\" : \"R\") : outerType\n        for (var j$1 = i$6; j$1 < end$1; ++j$1) { types[j$1] = replace$1 }\n        i$6 = end$1 - 1\n      }\n    }\n\n    // Here we depart from the documented algorithm, in order to avoid\n    // building up an actual levels array. Since there are only three\n    // levels (0, 1, 2) in an implementation that doesn't take\n    // explicit embedding into account, we can build up the order on\n    // the fly, without following the level-based algorithm.\n    var order = [], m\n    for (var i$7 = 0; i$7 < len;) {\n      if (countsAsLeft.test(types[i$7])) {\n        var start = i$7\n        for (++i$7; i$7 < len && countsAsLeft.test(types[i$7]); ++i$7) {}\n        order.push(new BidiSpan(0, start, i$7))\n      } else {\n        var pos = i$7, at = order.length\n        for (++i$7; i$7 < len && types[i$7] != \"L\"; ++i$7) {}\n        for (var j$2 = pos; j$2 < i$7;) {\n          if (countsAsNum.test(types[j$2])) {\n            if (pos < j$2) { order.splice(at, 0, new BidiSpan(1, pos, j$2)) }\n            var nstart = j$2\n            for (++j$2; j$2 < i$7 && countsAsNum.test(types[j$2]); ++j$2) {}\n            order.splice(at, 0, new BidiSpan(2, nstart, j$2))\n            pos = j$2\n          } else { ++j$2 }\n        }\n        if (pos < i$7) { order.splice(at, 0, new BidiSpan(1, pos, i$7)) }\n      }\n    }\n    if (order[0].level == 1 && (m = str.match(/^\\s+/))) {\n      order[0].from = m[0].length\n      order.unshift(new BidiSpan(0, 0, m[0].length))\n    }\n    if (lst(order).level == 1 && (m = str.match(/\\s+$/))) {\n      lst(order).to -= m[0].length\n      order.push(new BidiSpan(0, len - m[0].length, len))\n    }\n\n    return direction == \"rtl\" ? order.reverse() : order\n  }\n})()\n\n// Get the bidi ordering for the given line (and cache it). Returns\n// false for lines that are fully left-to-right, and an array of\n// BidiSpan objects otherwise.\nfunction getOrder(line, direction) {\n  var order = line.order\n  if (order == null) { order = line.order = bidiOrdering(line.text, direction) }\n  return order\n}\n\n// EVENT HANDLING\n\n// Lightweight event framework. on/off also work on DOM nodes,\n// registering native DOM handlers.\n\nvar noHandlers = []\n\nvar on = function(emitter, type, f) {\n  if (emitter.addEventListener) {\n    emitter.addEventListener(type, f, false)\n  } else if (emitter.attachEvent) {\n    emitter.attachEvent(\"on\" + type, f)\n  } else {\n    var map = emitter._handlers || (emitter._handlers = {})\n    map[type] = (map[type] || noHandlers).concat(f)\n  }\n}\n\nfunction getHandlers(emitter, type) {\n  return emitter._handlers && emitter._handlers[type] || noHandlers\n}\n\nfunction off(emitter, type, f) {\n  if (emitter.removeEventListener) {\n    emitter.removeEventListener(type, f, false)\n  } else if (emitter.detachEvent) {\n    emitter.detachEvent(\"on\" + type, f)\n  } else {\n    var map = emitter._handlers, arr = map && map[type]\n    if (arr) {\n      var index = indexOf(arr, f)\n      if (index > -1)\n        { map[type] = arr.slice(0, index).concat(arr.slice(index + 1)) }\n    }\n  }\n}\n\nfunction signal(emitter, type /*, values...*/) {\n  var handlers = getHandlers(emitter, type)\n  if (!handlers.length) { return }\n  var args = Array.prototype.slice.call(arguments, 2)\n  for (var i = 0; i < handlers.length; ++i) { handlers[i].apply(null, args) }\n}\n\n// The DOM events that CodeMirror handles can be overridden by\n// registering a (non-DOM) handler on the editor for the event name,\n// and preventDefault-ing the event in that handler.\nfunction signalDOMEvent(cm, e, override) {\n  if (typeof e == \"string\")\n    { e = {type: e, preventDefault: function() { this.defaultPrevented = true }} }\n  signal(cm, override || e.type, cm, e)\n  return e_defaultPrevented(e) || e.codemirrorIgnore\n}\n\nfunction signalCursorActivity(cm) {\n  var arr = cm._handlers && cm._handlers.cursorActivity\n  if (!arr) { return }\n  var set = cm.curOp.cursorActivityHandlers || (cm.curOp.cursorActivityHandlers = [])\n  for (var i = 0; i < arr.length; ++i) { if (indexOf(set, arr[i]) == -1)\n    { set.push(arr[i]) } }\n}\n\nfunction hasHandler(emitter, type) {\n  return getHandlers(emitter, type).length > 0\n}\n\n// Add on and off methods to a constructor's prototype, to make\n// registering events on such objects more convenient.\nfunction eventMixin(ctor) {\n  ctor.prototype.on = function(type, f) {on(this, type, f)}\n  ctor.prototype.off = function(type, f) {off(this, type, f)}\n}\n\n// Due to the fact that we still support jurassic IE versions, some\n// compatibility wrappers are needed.\n\nfunction e_preventDefault(e) {\n  if (e.preventDefault) { e.preventDefault() }\n  else { e.returnValue = false }\n}\nfunction e_stopPropagation(e) {\n  if (e.stopPropagation) { e.stopPropagation() }\n  else { e.cancelBubble = true }\n}\nfunction e_defaultPrevented(e) {\n  return e.defaultPrevented != null ? e.defaultPrevented : e.returnValue == false\n}\nfunction e_stop(e) {e_preventDefault(e); e_stopPropagation(e)}\n\nfunction e_target(e) {return e.target || e.srcElement}\nfunction e_button(e) {\n  var b = e.which\n  if (b == null) {\n    if (e.button & 1) { b = 1 }\n    else if (e.button & 2) { b = 3 }\n    else if (e.button & 4) { b = 2 }\n  }\n  if (mac && e.ctrlKey && b == 1) { b = 3 }\n  return b\n}\n\n// Detect drag-and-drop\nvar dragAndDrop = function() {\n  // There is *some* kind of drag-and-drop support in IE6-8, but I\n  // couldn't get it to work yet.\n  if (ie && ie_version < 9) { return false }\n  var div = elt('div')\n  return \"draggable\" in div || \"dragDrop\" in div\n}()\n\nvar zwspSupported\nfunction zeroWidthElement(measure) {\n  if (zwspSupported == null) {\n    var test = elt(\"span\", \"\\u200b\")\n    removeChildrenAndAdd(measure, elt(\"span\", [test, document.createTextNode(\"x\")]))\n    if (measure.firstChild.offsetHeight != 0)\n      { zwspSupported = test.offsetWidth <= 1 && test.offsetHeight > 2 && !(ie && ie_version < 8) }\n  }\n  var node = zwspSupported ? elt(\"span\", \"\\u200b\") :\n    elt(\"span\", \"\\u00a0\", null, \"display: inline-block; width: 1px; margin-right: -1px\")\n  node.setAttribute(\"cm-text\", \"\")\n  return node\n}\n\n// Feature-detect IE's crummy client rect reporting for bidi text\nvar badBidiRects\nfunction hasBadBidiRects(measure) {\n  if (badBidiRects != null) { return badBidiRects }\n  var txt = removeChildrenAndAdd(measure, document.createTextNode(\"A\\u062eA\"))\n  var r0 = range(txt, 0, 1).getBoundingClientRect()\n  var r1 = range(txt, 1, 2).getBoundingClientRect()\n  removeChildren(measure)\n  if (!r0 || r0.left == r0.right) { return false } // Safari returns null in some cases (#2780)\n  return badBidiRects = (r1.right - r0.right < 3)\n}\n\n// See if \"\".split is the broken IE version, if so, provide an\n// alternative way to split lines.\nvar splitLinesAuto = \"\\n\\nb\".split(/\\n/).length != 3 ? function (string) {\n  var pos = 0, result = [], l = string.length\n  while (pos <= l) {\n    var nl = string.indexOf(\"\\n\", pos)\n    if (nl == -1) { nl = string.length }\n    var line = string.slice(pos, string.charAt(nl - 1) == \"\\r\" ? nl - 1 : nl)\n    var rt = line.indexOf(\"\\r\")\n    if (rt != -1) {\n      result.push(line.slice(0, rt))\n      pos += rt + 1\n    } else {\n      result.push(line)\n      pos = nl + 1\n    }\n  }\n  return result\n} : function (string) { return string.split(/\\r\\n?|\\n/); }\n\nvar hasSelection = window.getSelection ? function (te) {\n  try { return te.selectionStart != te.selectionEnd }\n  catch(e) { return false }\n} : function (te) {\n  var range\n  try {range = te.ownerDocument.selection.createRange()}\n  catch(e) {}\n  if (!range || range.parentElement() != te) { return false }\n  return range.compareEndPoints(\"StartToEnd\", range) != 0\n}\n\nvar hasCopyEvent = (function () {\n  var e = elt(\"div\")\n  if (\"oncopy\" in e) { return true }\n  e.setAttribute(\"oncopy\", \"return;\")\n  return typeof e.oncopy == \"function\"\n})()\n\nvar badZoomedRects = null\nfunction hasBadZoomedRects(measure) {\n  if (badZoomedRects != null) { return badZoomedRects }\n  var node = removeChildrenAndAdd(measure, elt(\"span\", \"x\"))\n  var normal = node.getBoundingClientRect()\n  var fromRange = range(node, 0, 1).getBoundingClientRect()\n  return badZoomedRects = Math.abs(normal.left - fromRange.left) > 1\n}\n\nvar modes = {};\nvar mimeModes = {};\n// Extra arguments are stored as the mode's dependencies, which is\n// used by (legacy) mechanisms like loadmode.js to automatically\n// load a mode. (Preferred mechanism is the require/define calls.)\nfunction defineMode(name, mode) {\n  if (arguments.length > 2)\n    { mode.dependencies = Array.prototype.slice.call(arguments, 2) }\n  modes[name] = mode\n}\n\nfunction defineMIME(mime, spec) {\n  mimeModes[mime] = spec\n}\n\n// Given a MIME type, a {name, ...options} config object, or a name\n// string, return a mode config object.\nfunction resolveMode(spec) {\n  if (typeof spec == \"string\" && mimeModes.hasOwnProperty(spec)) {\n    spec = mimeModes[spec]\n  } else if (spec && typeof spec.name == \"string\" && mimeModes.hasOwnProperty(spec.name)) {\n    var found = mimeModes[spec.name]\n    if (typeof found == \"string\") { found = {name: found} }\n    spec = createObj(found, spec)\n    spec.name = found.name\n  } else if (typeof spec == \"string\" && /^[\\w\\-]+\\/[\\w\\-]+\\+xml$/.test(spec)) {\n    return resolveMode(\"application/xml\")\n  } else if (typeof spec == \"string\" && /^[\\w\\-]+\\/[\\w\\-]+\\+json$/.test(spec)) {\n    return resolveMode(\"application/json\")\n  }\n  if (typeof spec == \"string\") { return {name: spec} }\n  else { return spec || {name: \"null\"} }\n}\n\n// Given a mode spec (anything that resolveMode accepts), find and\n// initialize an actual mode object.\nfunction getMode(options, spec) {\n  spec = resolveMode(spec)\n  var mfactory = modes[spec.name]\n  if (!mfactory) { return getMode(options, \"text/plain\") }\n  var modeObj = mfactory(options, spec)\n  if (modeExtensions.hasOwnProperty(spec.name)) {\n    var exts = modeExtensions[spec.name]\n    for (var prop in exts) {\n      if (!exts.hasOwnProperty(prop)) { continue }\n      if (modeObj.hasOwnProperty(prop)) { modeObj[\"_\" + prop] = modeObj[prop] }\n      modeObj[prop] = exts[prop]\n    }\n  }\n  modeObj.name = spec.name\n  if (spec.helperType) { modeObj.helperType = spec.helperType }\n  if (spec.modeProps) { for (var prop$1 in spec.modeProps)\n    { modeObj[prop$1] = spec.modeProps[prop$1] } }\n\n  return modeObj\n}\n\n// This can be used to attach properties to mode objects from\n// outside the actual mode definition.\nvar modeExtensions = {}\nfunction extendMode(mode, properties) {\n  var exts = modeExtensions.hasOwnProperty(mode) ? modeExtensions[mode] : (modeExtensions[mode] = {})\n  copyObj(properties, exts)\n}\n\nfunction copyState(mode, state) {\n  if (state === true) { return state }\n  if (mode.copyState) { return mode.copyState(state) }\n  var nstate = {}\n  for (var n in state) {\n    var val = state[n]\n    if (val instanceof Array) { val = val.concat([]) }\n    nstate[n] = val\n  }\n  return nstate\n}\n\n// Given a mode and a state (for that mode), find the inner mode and\n// state at the position that the state refers to.\nfunction innerMode(mode, state) {\n  var info\n  while (mode.innerMode) {\n    info = mode.innerMode(state)\n    if (!info || info.mode == mode) { break }\n    state = info.state\n    mode = info.mode\n  }\n  return info || {mode: mode, state: state}\n}\n\nfunction startState(mode, a1, a2) {\n  return mode.startState ? mode.startState(a1, a2) : true\n}\n\n// STRING STREAM\n\n// Fed to the mode parsers, provides helper functions to make\n// parsers more succinct.\n\nvar StringStream = function(string, tabSize, lineOracle) {\n  this.pos = this.start = 0\n  this.string = string\n  this.tabSize = tabSize || 8\n  this.lastColumnPos = this.lastColumnValue = 0\n  this.lineStart = 0\n  this.lineOracle = lineOracle\n};\n\nStringStream.prototype.eol = function () {return this.pos >= this.string.length};\nStringStream.prototype.sol = function () {return this.pos == this.lineStart};\nStringStream.prototype.peek = function () {return this.string.charAt(this.pos) || undefined};\nStringStream.prototype.next = function () {\n  if (this.pos < this.string.length)\n    { return this.string.charAt(this.pos++) }\n};\nStringStream.prototype.eat = function (match) {\n  var ch = this.string.charAt(this.pos)\n  var ok\n  if (typeof match == \"string\") { ok = ch == match }\n  else { ok = ch && (match.test ? match.test(ch) : match(ch)) }\n  if (ok) {++this.pos; return ch}\n};\nStringStream.prototype.eatWhile = function (match) {\n  var start = this.pos\n  while (this.eat(match)){}\n  return this.pos > start\n};\nStringStream.prototype.eatSpace = function () {\n    var this$1 = this;\n\n  var start = this.pos\n  while (/[\\s\\u00a0]/.test(this.string.charAt(this.pos))) { ++this$1.pos }\n  return this.pos > start\n};\nStringStream.prototype.skipToEnd = function () {this.pos = this.string.length};\nStringStream.prototype.skipTo = function (ch) {\n  var found = this.string.indexOf(ch, this.pos)\n  if (found > -1) {this.pos = found; return true}\n};\nStringStream.prototype.backUp = function (n) {this.pos -= n};\nStringStream.prototype.column = function () {\n  if (this.lastColumnPos < this.start) {\n    this.lastColumnValue = countColumn(this.string, this.start, this.tabSize, this.lastColumnPos, this.lastColumnValue)\n    this.lastColumnPos = this.start\n  }\n  return this.lastColumnValue - (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0)\n};\nStringStream.prototype.indentation = function () {\n  return countColumn(this.string, null, this.tabSize) -\n    (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0)\n};\nStringStream.prototype.match = function (pattern, consume, caseInsensitive) {\n  if (typeof pattern == \"string\") {\n    var cased = function (str) { return caseInsensitive ? str.toLowerCase() : str; }\n    var substr = this.string.substr(this.pos, pattern.length)\n    if (cased(substr) == cased(pattern)) {\n      if (consume !== false) { this.pos += pattern.length }\n      return true\n    }\n  } else {\n    var match = this.string.slice(this.pos).match(pattern)\n    if (match && match.index > 0) { return null }\n    if (match && consume !== false) { this.pos += match[0].length }\n    return match\n  }\n};\nStringStream.prototype.current = function (){return this.string.slice(this.start, this.pos)};\nStringStream.prototype.hideFirstChars = function (n, inner) {\n  this.lineStart += n\n  try { return inner() }\n  finally { this.lineStart -= n }\n};\nStringStream.prototype.lookAhead = function (n) {\n  var oracle = this.lineOracle\n  return oracle && oracle.lookAhead(n)\n};\n\nvar SavedContext = function(state, lookAhead) {\n  this.state = state\n  this.lookAhead = lookAhead\n};\n\nvar Context = function(doc, state, line, lookAhead) {\n  this.state = state\n  this.doc = doc\n  this.line = line\n  this.maxLookAhead = lookAhead || 0\n};\n\nContext.prototype.lookAhead = function (n) {\n  var line = this.doc.getLine(this.line + n)\n  if (line != null && n > this.maxLookAhead) { this.maxLookAhead = n }\n  return line\n};\n\nContext.prototype.nextLine = function () {\n  this.line++\n  if (this.maxLookAhead > 0) { this.maxLookAhead-- }\n};\n\nContext.fromSaved = function (doc, saved, line) {\n  if (saved instanceof SavedContext)\n    { return new Context(doc, copyState(doc.mode, saved.state), line, saved.lookAhead) }\n  else\n    { return new Context(doc, copyState(doc.mode, saved), line) }\n};\n\nContext.prototype.save = function (copy) {\n  var state = copy !== false ? copyState(this.doc.mode, this.state) : this.state\n  return this.maxLookAhead > 0 ? new SavedContext(state, this.maxLookAhead) : state\n};\n\n\n// Compute a style array (an array starting with a mode generation\n// -- for invalidation -- followed by pairs of end positions and\n// style strings), which is used to highlight the tokens on the\n// line.\nfunction highlightLine(cm, line, context, forceToEnd) {\n  // A styles array always starts with a number identifying the\n  // mode/overlays that it is based on (for easy invalidation).\n  var st = [cm.state.modeGen], lineClasses = {}\n  // Compute the base array of styles\n  runMode(cm, line.text, cm.doc.mode, context, function (end, style) { return st.push(end, style); },\n          lineClasses, forceToEnd)\n  var state = context.state\n\n  // Run overlays, adjust style array.\n  var loop = function ( o ) {\n    var overlay = cm.state.overlays[o], i = 1, at = 0\n    context.state = true\n    runMode(cm, line.text, overlay.mode, context, function (end, style) {\n      var start = i\n      // Ensure there's a token end at the current position, and that i points at it\n      while (at < end) {\n        var i_end = st[i]\n        if (i_end > end)\n          { st.splice(i, 1, end, st[i+1], i_end) }\n        i += 2\n        at = Math.min(end, i_end)\n      }\n      if (!style) { return }\n      if (overlay.opaque) {\n        st.splice(start, i - start, end, \"overlay \" + style)\n        i = start + 2\n      } else {\n        for (; start < i; start += 2) {\n          var cur = st[start+1]\n          st[start+1] = (cur ? cur + \" \" : \"\") + \"overlay \" + style\n        }\n      }\n    }, lineClasses)\n  };\n\n  for (var o = 0; o < cm.state.overlays.length; ++o) loop( o );\n  context.state = state\n\n  return {styles: st, classes: lineClasses.bgClass || lineClasses.textClass ? lineClasses : null}\n}\n\nfunction getLineStyles(cm, line, updateFrontier) {\n  if (!line.styles || line.styles[0] != cm.state.modeGen) {\n    var context = getContextBefore(cm, lineNo(line))\n    var resetState = line.text.length > cm.options.maxHighlightLength && copyState(cm.doc.mode, context.state)\n    var result = highlightLine(cm, line, context)\n    if (resetState) { context.state = resetState }\n    line.stateAfter = context.save(!resetState)\n    line.styles = result.styles\n    if (result.classes) { line.styleClasses = result.classes }\n    else if (line.styleClasses) { line.styleClasses = null }\n    if (updateFrontier === cm.doc.highlightFrontier)\n      { cm.doc.modeFrontier = Math.max(cm.doc.modeFrontier, ++cm.doc.highlightFrontier) }\n  }\n  return line.styles\n}\n\nfunction getContextBefore(cm, n, precise) {\n  var doc = cm.doc, display = cm.display\n  if (!doc.mode.startState) { return new Context(doc, true, n) }\n  var start = findStartLine(cm, n, precise)\n  var saved = start > doc.first && getLine(doc, start - 1).stateAfter\n  var context = saved ? Context.fromSaved(doc, saved, start) : new Context(doc, startState(doc.mode), start)\n\n  doc.iter(start, n, function (line) {\n    processLine(cm, line.text, context)\n    var pos = context.line\n    line.stateAfter = pos == n - 1 || pos % 5 == 0 || pos >= display.viewFrom && pos < display.viewTo ? context.save() : null\n    context.nextLine()\n  })\n  if (precise) { doc.modeFrontier = context.line }\n  return context\n}\n\n// Lightweight form of highlight -- proceed over this line and\n// update state, but don't save a style array. Used for lines that\n// aren't currently visible.\nfunction processLine(cm, text, context, startAt) {\n  var mode = cm.doc.mode\n  var stream = new StringStream(text, cm.options.tabSize, context)\n  stream.start = stream.pos = startAt || 0\n  if (text == \"\") { callBlankLine(mode, context.state) }\n  while (!stream.eol()) {\n    readToken(mode, stream, context.state)\n    stream.start = stream.pos\n  }\n}\n\nfunction callBlankLine(mode, state) {\n  if (mode.blankLine) { return mode.blankLine(state) }\n  if (!mode.innerMode) { return }\n  var inner = innerMode(mode, state)\n  if (inner.mode.blankLine) { return inner.mode.blankLine(inner.state) }\n}\n\nfunction readToken(mode, stream, state, inner) {\n  for (var i = 0; i < 10; i++) {\n    if (inner) { inner[0] = innerMode(mode, state).mode }\n    var style = mode.token(stream, state)\n    if (stream.pos > stream.start) { return style }\n  }\n  throw new Error(\"Mode \" + mode.name + \" failed to advance stream.\")\n}\n\nvar Token = function(stream, type, state) {\n  this.start = stream.start; this.end = stream.pos\n  this.string = stream.current()\n  this.type = type || null\n  this.state = state\n};\n\n// Utility for getTokenAt and getLineTokens\nfunction takeToken(cm, pos, precise, asArray) {\n  var doc = cm.doc, mode = doc.mode, style\n  pos = clipPos(doc, pos)\n  var line = getLine(doc, pos.line), context = getContextBefore(cm, pos.line, precise)\n  var stream = new StringStream(line.text, cm.options.tabSize, context), tokens\n  if (asArray) { tokens = [] }\n  while ((asArray || stream.pos < pos.ch) && !stream.eol()) {\n    stream.start = stream.pos\n    style = readToken(mode, stream, context.state)\n    if (asArray) { tokens.push(new Token(stream, style, copyState(doc.mode, context.state))) }\n  }\n  return asArray ? tokens : new Token(stream, style, context.state)\n}\n\nfunction extractLineClasses(type, output) {\n  if (type) { for (;;) {\n    var lineClass = type.match(/(?:^|\\s+)line-(background-)?(\\S+)/)\n    if (!lineClass) { break }\n    type = type.slice(0, lineClass.index) + type.slice(lineClass.index + lineClass[0].length)\n    var prop = lineClass[1] ? \"bgClass\" : \"textClass\"\n    if (output[prop] == null)\n      { output[prop] = lineClass[2] }\n    else if (!(new RegExp(\"(?:^|\\s)\" + lineClass[2] + \"(?:$|\\s)\")).test(output[prop]))\n      { output[prop] += \" \" + lineClass[2] }\n  } }\n  return type\n}\n\n// Run the given mode's parser over a line, calling f for each token.\nfunction runMode(cm, text, mode, context, f, lineClasses, forceToEnd) {\n  var flattenSpans = mode.flattenSpans\n  if (flattenSpans == null) { flattenSpans = cm.options.flattenSpans }\n  var curStart = 0, curStyle = null\n  var stream = new StringStream(text, cm.options.tabSize, context), style\n  var inner = cm.options.addModeClass && [null]\n  if (text == \"\") { extractLineClasses(callBlankLine(mode, context.state), lineClasses) }\n  while (!stream.eol()) {\n    if (stream.pos > cm.options.maxHighlightLength) {\n      flattenSpans = false\n      if (forceToEnd) { processLine(cm, text, context, stream.pos) }\n      stream.pos = text.length\n      style = null\n    } else {\n      style = extractLineClasses(readToken(mode, stream, context.state, inner), lineClasses)\n    }\n    if (inner) {\n      var mName = inner[0].name\n      if (mName) { style = \"m-\" + (style ? mName + \" \" + style : mName) }\n    }\n    if (!flattenSpans || curStyle != style) {\n      while (curStart < stream.start) {\n        curStart = Math.min(stream.start, curStart + 5000)\n        f(curStart, curStyle)\n      }\n      curStyle = style\n    }\n    stream.start = stream.pos\n  }\n  while (curStart < stream.pos) {\n    // Webkit seems to refuse to render text nodes longer than 57444\n    // characters, and returns inaccurate measurements in nodes\n    // starting around 5000 chars.\n    var pos = Math.min(stream.pos, curStart + 5000)\n    f(pos, curStyle)\n    curStart = pos\n  }\n}\n\n// Finds the line to start with when starting a parse. Tries to\n// find a line with a stateAfter, so that it can start with a\n// valid state. If that fails, it returns the line with the\n// smallest indentation, which tends to need the least context to\n// parse correctly.\nfunction findStartLine(cm, n, precise) {\n  var minindent, minline, doc = cm.doc\n  var lim = precise ? -1 : n - (cm.doc.mode.innerMode ? 1000 : 100)\n  for (var search = n; search > lim; --search) {\n    if (search <= doc.first) { return doc.first }\n    var line = getLine(doc, search - 1), after = line.stateAfter\n    if (after && (!precise || search + (after instanceof SavedContext ? after.lookAhead : 0) <= doc.modeFrontier))\n      { return search }\n    var indented = countColumn(line.text, null, cm.options.tabSize)\n    if (minline == null || minindent > indented) {\n      minline = search - 1\n      minindent = indented\n    }\n  }\n  return minline\n}\n\nfunction retreatFrontier(doc, n) {\n  doc.modeFrontier = Math.min(doc.modeFrontier, n)\n  if (doc.highlightFrontier < n - 10) { return }\n  var start = doc.first\n  for (var line = n - 1; line > start; line--) {\n    var saved = getLine(doc, line).stateAfter\n    // change is on 3\n    // state on line 1 looked ahead 2 -- so saw 3\n    // test 1 + 2 < 3 should cover this\n    if (saved && (!(saved instanceof SavedContext) || line + saved.lookAhead < n)) {\n      start = line + 1\n      break\n    }\n  }\n  doc.highlightFrontier = Math.min(doc.highlightFrontier, start)\n}\n\n// LINE DATA STRUCTURE\n\n// Line objects. These hold state related to a line, including\n// highlighting info (the styles array).\nvar Line = function(text, markedSpans, estimateHeight) {\n  this.text = text\n  attachMarkedSpans(this, markedSpans)\n  this.height = estimateHeight ? estimateHeight(this) : 1\n};\n\nLine.prototype.lineNo = function () { return lineNo(this) };\neventMixin(Line)\n\n// Change the content (text, markers) of a line. Automatically\n// invalidates cached information and tries to re-estimate the\n// line's height.\nfunction updateLine(line, text, markedSpans, estimateHeight) {\n  line.text = text\n  if (line.stateAfter) { line.stateAfter = null }\n  if (line.styles) { line.styles = null }\n  if (line.order != null) { line.order = null }\n  detachMarkedSpans(line)\n  attachMarkedSpans(line, markedSpans)\n  var estHeight = estimateHeight ? estimateHeight(line) : 1\n  if (estHeight != line.height) { updateLineHeight(line, estHeight) }\n}\n\n// Detach a line from the document tree and its markers.\nfunction cleanUpLine(line) {\n  line.parent = null\n  detachMarkedSpans(line)\n}\n\n// Convert a style as returned by a mode (either null, or a string\n// containing one or more styles) to a CSS style. This is cached,\n// and also looks for line-wide styles.\nvar styleToClassCache = {};\nvar styleToClassCacheWithMode = {};\nfunction interpretTokenStyle(style, options) {\n  if (!style || /^\\s*$/.test(style)) { return null }\n  var cache = options.addModeClass ? styleToClassCacheWithMode : styleToClassCache\n  return cache[style] ||\n    (cache[style] = style.replace(/\\S+/g, \"cm-$&\"))\n}\n\n// Render the DOM representation of the text of a line. Also builds\n// up a 'line map', which points at the DOM nodes that represent\n// specific stretches of text, and is used by the measuring code.\n// The returned object contains the DOM node, this map, and\n// information about line-wide styles that were set by the mode.\nfunction buildLineContent(cm, lineView) {\n  // The padding-right forces the element to have a 'border', which\n  // is needed on Webkit to be able to get line-level bounding\n  // rectangles for it (in measureChar).\n  var content = eltP(\"span\", null, null, webkit ? \"padding-right: .1px\" : null)\n  var builder = {pre: eltP(\"pre\", [content], \"CodeMirror-line\"), content: content,\n                 col: 0, pos: 0, cm: cm,\n                 trailingSpace: false,\n                 splitSpaces: (ie || webkit) && cm.getOption(\"lineWrapping\")}\n  lineView.measure = {}\n\n  // Iterate over the logical lines that make up this visual line.\n  for (var i = 0; i <= (lineView.rest ? lineView.rest.length : 0); i++) {\n    var line = i ? lineView.rest[i - 1] : lineView.line, order = (void 0)\n    builder.pos = 0\n    builder.addToken = buildToken\n    // Optionally wire in some hacks into the token-rendering\n    // algorithm, to deal with browser quirks.\n    if (hasBadBidiRects(cm.display.measure) && (order = getOrder(line, cm.doc.direction)))\n      { builder.addToken = buildTokenBadBidi(builder.addToken, order) }\n    builder.map = []\n    var allowFrontierUpdate = lineView != cm.display.externalMeasured && lineNo(line)\n    insertLineContent(line, builder, getLineStyles(cm, line, allowFrontierUpdate))\n    if (line.styleClasses) {\n      if (line.styleClasses.bgClass)\n        { builder.bgClass = joinClasses(line.styleClasses.bgClass, builder.bgClass || \"\") }\n      if (line.styleClasses.textClass)\n        { builder.textClass = joinClasses(line.styleClasses.textClass, builder.textClass || \"\") }\n    }\n\n    // Ensure at least a single node is present, for measuring.\n    if (builder.map.length == 0)\n      { builder.map.push(0, 0, builder.content.appendChild(zeroWidthElement(cm.display.measure))) }\n\n    // Store the map and a cache object for the current logical line\n    if (i == 0) {\n      lineView.measure.map = builder.map\n      lineView.measure.cache = {}\n    } else {\n      ;(lineView.measure.maps || (lineView.measure.maps = [])).push(builder.map)\n      ;(lineView.measure.caches || (lineView.measure.caches = [])).push({})\n    }\n  }\n\n  // See issue #2901\n  if (webkit) {\n    var last = builder.content.lastChild\n    if (/\\bcm-tab\\b/.test(last.className) || (last.querySelector && last.querySelector(\".cm-tab\")))\n      { builder.content.className = \"cm-tab-wrap-hack\" }\n  }\n\n  signal(cm, \"renderLine\", cm, lineView.line, builder.pre)\n  if (builder.pre.className)\n    { builder.textClass = joinClasses(builder.pre.className, builder.textClass || \"\") }\n\n  return builder\n}\n\nfunction defaultSpecialCharPlaceholder(ch) {\n  var token = elt(\"span\", \"\\u2022\", \"cm-invalidchar\")\n  token.title = \"\\\\u\" + ch.charCodeAt(0).toString(16)\n  token.setAttribute(\"aria-label\", token.title)\n  return token\n}\n\n// Build up the DOM representation for a single token, and add it to\n// the line map. Takes care to render special characters separately.\nfunction buildToken(builder, text, style, startStyle, endStyle, title, css) {\n  if (!text) { return }\n  var displayText = builder.splitSpaces ? splitSpaces(text, builder.trailingSpace) : text\n  var special = builder.cm.state.specialChars, mustWrap = false\n  var content\n  if (!special.test(text)) {\n    builder.col += text.length\n    content = document.createTextNode(displayText)\n    builder.map.push(builder.pos, builder.pos + text.length, content)\n    if (ie && ie_version < 9) { mustWrap = true }\n    builder.pos += text.length\n  } else {\n    content = document.createDocumentFragment()\n    var pos = 0\n    while (true) {\n      special.lastIndex = pos\n      var m = special.exec(text)\n      var skipped = m ? m.index - pos : text.length - pos\n      if (skipped) {\n        var txt = document.createTextNode(displayText.slice(pos, pos + skipped))\n        if (ie && ie_version < 9) { content.appendChild(elt(\"span\", [txt])) }\n        else { content.appendChild(txt) }\n        builder.map.push(builder.pos, builder.pos + skipped, txt)\n        builder.col += skipped\n        builder.pos += skipped\n      }\n      if (!m) { break }\n      pos += skipped + 1\n      var txt$1 = (void 0)\n      if (m[0] == \"\\t\") {\n        var tabSize = builder.cm.options.tabSize, tabWidth = tabSize - builder.col % tabSize\n        txt$1 = content.appendChild(elt(\"span\", spaceStr(tabWidth), \"cm-tab\"))\n        txt$1.setAttribute(\"role\", \"presentation\")\n        txt$1.setAttribute(\"cm-text\", \"\\t\")\n        builder.col += tabWidth\n      } else if (m[0] == \"\\r\" || m[0] == \"\\n\") {\n        txt$1 = content.appendChild(elt(\"span\", m[0] == \"\\r\" ? \"\\u240d\" : \"\\u2424\", \"cm-invalidchar\"))\n        txt$1.setAttribute(\"cm-text\", m[0])\n        builder.col += 1\n      } else {\n        txt$1 = builder.cm.options.specialCharPlaceholder(m[0])\n        txt$1.setAttribute(\"cm-text\", m[0])\n        if (ie && ie_version < 9) { content.appendChild(elt(\"span\", [txt$1])) }\n        else { content.appendChild(txt$1) }\n        builder.col += 1\n      }\n      builder.map.push(builder.pos, builder.pos + 1, txt$1)\n      builder.pos++\n    }\n  }\n  builder.trailingSpace = displayText.charCodeAt(text.length - 1) == 32\n  if (style || startStyle || endStyle || mustWrap || css) {\n    var fullStyle = style || \"\"\n    if (startStyle) { fullStyle += startStyle }\n    if (endStyle) { fullStyle += endStyle }\n    var token = elt(\"span\", [content], fullStyle, css)\n    if (title) { token.title = title }\n    return builder.content.appendChild(token)\n  }\n  builder.content.appendChild(content)\n}\n\nfunction splitSpaces(text, trailingBefore) {\n  if (text.length > 1 && !/  /.test(text)) { return text }\n  var spaceBefore = trailingBefore, result = \"\"\n  for (var i = 0; i < text.length; i++) {\n    var ch = text.charAt(i)\n    if (ch == \" \" && spaceBefore && (i == text.length - 1 || text.charCodeAt(i + 1) == 32))\n      { ch = \"\\u00a0\" }\n    result += ch\n    spaceBefore = ch == \" \"\n  }\n  return result\n}\n\n// Work around nonsense dimensions being reported for stretches of\n// right-to-left text.\nfunction buildTokenBadBidi(inner, order) {\n  return function (builder, text, style, startStyle, endStyle, title, css) {\n    style = style ? style + \" cm-force-border\" : \"cm-force-border\"\n    var start = builder.pos, end = start + text.length\n    for (;;) {\n      // Find the part that overlaps with the start of this text\n      var part = (void 0)\n      for (var i = 0; i < order.length; i++) {\n        part = order[i]\n        if (part.to > start && part.from <= start) { break }\n      }\n      if (part.to >= end) { return inner(builder, text, style, startStyle, endStyle, title, css) }\n      inner(builder, text.slice(0, part.to - start), style, startStyle, null, title, css)\n      startStyle = null\n      text = text.slice(part.to - start)\n      start = part.to\n    }\n  }\n}\n\nfunction buildCollapsedSpan(builder, size, marker, ignoreWidget) {\n  var widget = !ignoreWidget && marker.widgetNode\n  if (widget) { builder.map.push(builder.pos, builder.pos + size, widget) }\n  if (!ignoreWidget && builder.cm.display.input.needsContentAttribute) {\n    if (!widget)\n      { widget = builder.content.appendChild(document.createElement(\"span\")) }\n    widget.setAttribute(\"cm-marker\", marker.id)\n  }\n  if (widget) {\n    builder.cm.display.input.setUneditable(widget)\n    builder.content.appendChild(widget)\n  }\n  builder.pos += size\n  builder.trailingSpace = false\n}\n\n// Outputs a number of spans to make up a line, taking highlighting\n// and marked text into account.\nfunction insertLineContent(line, builder, styles) {\n  var spans = line.markedSpans, allText = line.text, at = 0\n  if (!spans) {\n    for (var i$1 = 1; i$1 < styles.length; i$1+=2)\n      { builder.addToken(builder, allText.slice(at, at = styles[i$1]), interpretTokenStyle(styles[i$1+1], builder.cm.options)) }\n    return\n  }\n\n  var len = allText.length, pos = 0, i = 1, text = \"\", style, css\n  var nextChange = 0, spanStyle, spanEndStyle, spanStartStyle, title, collapsed\n  for (;;) {\n    if (nextChange == pos) { // Update current marker set\n      spanStyle = spanEndStyle = spanStartStyle = title = css = \"\"\n      collapsed = null; nextChange = Infinity\n      var foundBookmarks = [], endStyles = (void 0)\n      for (var j = 0; j < spans.length; ++j) {\n        var sp = spans[j], m = sp.marker\n        if (m.type == \"bookmark\" && sp.from == pos && m.widgetNode) {\n          foundBookmarks.push(m)\n        } else if (sp.from <= pos && (sp.to == null || sp.to > pos || m.collapsed && sp.to == pos && sp.from == pos)) {\n          if (sp.to != null && sp.to != pos && nextChange > sp.to) {\n            nextChange = sp.to\n            spanEndStyle = \"\"\n          }\n          if (m.className) { spanStyle += \" \" + m.className }\n          if (m.css) { css = (css ? css + \";\" : \"\") + m.css }\n          if (m.startStyle && sp.from == pos) { spanStartStyle += \" \" + m.startStyle }\n          if (m.endStyle && sp.to == nextChange) { (endStyles || (endStyles = [])).push(m.endStyle, sp.to) }\n          if (m.title && !title) { title = m.title }\n          if (m.collapsed && (!collapsed || compareCollapsedMarkers(collapsed.marker, m) < 0))\n            { collapsed = sp }\n        } else if (sp.from > pos && nextChange > sp.from) {\n          nextChange = sp.from\n        }\n      }\n      if (endStyles) { for (var j$1 = 0; j$1 < endStyles.length; j$1 += 2)\n        { if (endStyles[j$1 + 1] == nextChange) { spanEndStyle += \" \" + endStyles[j$1] } } }\n\n      if (!collapsed || collapsed.from == pos) { for (var j$2 = 0; j$2 < foundBookmarks.length; ++j$2)\n        { buildCollapsedSpan(builder, 0, foundBookmarks[j$2]) } }\n      if (collapsed && (collapsed.from || 0) == pos) {\n        buildCollapsedSpan(builder, (collapsed.to == null ? len + 1 : collapsed.to) - pos,\n                           collapsed.marker, collapsed.from == null)\n        if (collapsed.to == null) { return }\n        if (collapsed.to == pos) { collapsed = false }\n      }\n    }\n    if (pos >= len) { break }\n\n    var upto = Math.min(len, nextChange)\n    while (true) {\n      if (text) {\n        var end = pos + text.length\n        if (!collapsed) {\n          var tokenText = end > upto ? text.slice(0, upto - pos) : text\n          builder.addToken(builder, tokenText, style ? style + spanStyle : spanStyle,\n                           spanStartStyle, pos + tokenText.length == nextChange ? spanEndStyle : \"\", title, css)\n        }\n        if (end >= upto) {text = text.slice(upto - pos); pos = upto; break}\n        pos = end\n        spanStartStyle = \"\"\n      }\n      text = allText.slice(at, at = styles[i++])\n      style = interpretTokenStyle(styles[i++], builder.cm.options)\n    }\n  }\n}\n\n\n// These objects are used to represent the visible (currently drawn)\n// part of the document. A LineView may correspond to multiple\n// logical lines, if those are connected by collapsed ranges.\nfunction LineView(doc, line, lineN) {\n  // The starting line\n  this.line = line\n  // Continuing lines, if any\n  this.rest = visualLineContinued(line)\n  // Number of logical lines in this visual line\n  this.size = this.rest ? lineNo(lst(this.rest)) - lineN + 1 : 1\n  this.node = this.text = null\n  this.hidden = lineIsHidden(doc, line)\n}\n\n// Create a range of LineView objects for the given lines.\nfunction buildViewArray(cm, from, to) {\n  var array = [], nextPos\n  for (var pos = from; pos < to; pos = nextPos) {\n    var view = new LineView(cm.doc, getLine(cm.doc, pos), pos)\n    nextPos = pos + view.size\n    array.push(view)\n  }\n  return array\n}\n\nvar operationGroup = null\n\nfunction pushOperation(op) {\n  if (operationGroup) {\n    operationGroup.ops.push(op)\n  } else {\n    op.ownsGroup = operationGroup = {\n      ops: [op],\n      delayedCallbacks: []\n    }\n  }\n}\n\nfunction fireCallbacksForOps(group) {\n  // Calls delayed callbacks and cursorActivity handlers until no\n  // new ones appear\n  var callbacks = group.delayedCallbacks, i = 0\n  do {\n    for (; i < callbacks.length; i++)\n      { callbacks[i].call(null) }\n    for (var j = 0; j < group.ops.length; j++) {\n      var op = group.ops[j]\n      if (op.cursorActivityHandlers)\n        { while (op.cursorActivityCalled < op.cursorActivityHandlers.length)\n          { op.cursorActivityHandlers[op.cursorActivityCalled++].call(null, op.cm) } }\n    }\n  } while (i < callbacks.length)\n}\n\nfunction finishOperation(op, endCb) {\n  var group = op.ownsGroup\n  if (!group) { return }\n\n  try { fireCallbacksForOps(group) }\n  finally {\n    operationGroup = null\n    endCb(group)\n  }\n}\n\nvar orphanDelayedCallbacks = null\n\n// Often, we want to signal events at a point where we are in the\n// middle of some work, but don't want the handler to start calling\n// other methods on the editor, which might be in an inconsistent\n// state or simply not expect any other events to happen.\n// signalLater looks whether there are any handlers, and schedules\n// them to be executed when the last operation ends, or, if no\n// operation is active, when a timeout fires.\nfunction signalLater(emitter, type /*, values...*/) {\n  var arr = getHandlers(emitter, type)\n  if (!arr.length) { return }\n  var args = Array.prototype.slice.call(arguments, 2), list\n  if (operationGroup) {\n    list = operationGroup.delayedCallbacks\n  } else if (orphanDelayedCallbacks) {\n    list = orphanDelayedCallbacks\n  } else {\n    list = orphanDelayedCallbacks = []\n    setTimeout(fireOrphanDelayed, 0)\n  }\n  var loop = function ( i ) {\n    list.push(function () { return arr[i].apply(null, args); })\n  };\n\n  for (var i = 0; i < arr.length; ++i)\n    loop( i );\n}\n\nfunction fireOrphanDelayed() {\n  var delayed = orphanDelayedCallbacks\n  orphanDelayedCallbacks = null\n  for (var i = 0; i < delayed.length; ++i) { delayed[i]() }\n}\n\n// When an aspect of a line changes, a string is added to\n// lineView.changes. This updates the relevant part of the line's\n// DOM structure.\nfunction updateLineForChanges(cm, lineView, lineN, dims) {\n  for (var j = 0; j < lineView.changes.length; j++) {\n    var type = lineView.changes[j]\n    if (type == \"text\") { updateLineText(cm, lineView) }\n    else if (type == \"gutter\") { updateLineGutter(cm, lineView, lineN, dims) }\n    else if (type == \"class\") { updateLineClasses(cm, lineView) }\n    else if (type == \"widget\") { updateLineWidgets(cm, lineView, dims) }\n  }\n  lineView.changes = null\n}\n\n// Lines with gutter elements, widgets or a background class need to\n// be wrapped, and have the extra elements added to the wrapper div\nfunction ensureLineWrapped(lineView) {\n  if (lineView.node == lineView.text) {\n    lineView.node = elt(\"div\", null, null, \"position: relative\")\n    if (lineView.text.parentNode)\n      { lineView.text.parentNode.replaceChild(lineView.node, lineView.text) }\n    lineView.node.appendChild(lineView.text)\n    if (ie && ie_version < 8) { lineView.node.style.zIndex = 2 }\n  }\n  return lineView.node\n}\n\nfunction updateLineBackground(cm, lineView) {\n  var cls = lineView.bgClass ? lineView.bgClass + \" \" + (lineView.line.bgClass || \"\") : lineView.line.bgClass\n  if (cls) { cls += \" CodeMirror-linebackground\" }\n  if (lineView.background) {\n    if (cls) { lineView.background.className = cls }\n    else { lineView.background.parentNode.removeChild(lineView.background); lineView.background = null }\n  } else if (cls) {\n    var wrap = ensureLineWrapped(lineView)\n    lineView.background = wrap.insertBefore(elt(\"div\", null, cls), wrap.firstChild)\n    cm.display.input.setUneditable(lineView.background)\n  }\n}\n\n// Wrapper around buildLineContent which will reuse the structure\n// in display.externalMeasured when possible.\nfunction getLineContent(cm, lineView) {\n  var ext = cm.display.externalMeasured\n  if (ext && ext.line == lineView.line) {\n    cm.display.externalMeasured = null\n    lineView.measure = ext.measure\n    return ext.built\n  }\n  return buildLineContent(cm, lineView)\n}\n\n// Redraw the line's text. Interacts with the background and text\n// classes because the mode may output tokens that influence these\n// classes.\nfunction updateLineText(cm, lineView) {\n  var cls = lineView.text.className\n  var built = getLineContent(cm, lineView)\n  if (lineView.text == lineView.node) { lineView.node = built.pre }\n  lineView.text.parentNode.replaceChild(built.pre, lineView.text)\n  lineView.text = built.pre\n  if (built.bgClass != lineView.bgClass || built.textClass != lineView.textClass) {\n    lineView.bgClass = built.bgClass\n    lineView.textClass = built.textClass\n    updateLineClasses(cm, lineView)\n  } else if (cls) {\n    lineView.text.className = cls\n  }\n}\n\nfunction updateLineClasses(cm, lineView) {\n  updateLineBackground(cm, lineView)\n  if (lineView.line.wrapClass)\n    { ensureLineWrapped(lineView).className = lineView.line.wrapClass }\n  else if (lineView.node != lineView.text)\n    { lineView.node.className = \"\" }\n  var textClass = lineView.textClass ? lineView.textClass + \" \" + (lineView.line.textClass || \"\") : lineView.line.textClass\n  lineView.text.className = textClass || \"\"\n}\n\nfunction updateLineGutter(cm, lineView, lineN, dims) {\n  if (lineView.gutter) {\n    lineView.node.removeChild(lineView.gutter)\n    lineView.gutter = null\n  }\n  if (lineView.gutterBackground) {\n    lineView.node.removeChild(lineView.gutterBackground)\n    lineView.gutterBackground = null\n  }\n  if (lineView.line.gutterClass) {\n    var wrap = ensureLineWrapped(lineView)\n    lineView.gutterBackground = elt(\"div\", null, \"CodeMirror-gutter-background \" + lineView.line.gutterClass,\n                                    (\"left: \" + (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + \"px; width: \" + (dims.gutterTotalWidth) + \"px\"))\n    cm.display.input.setUneditable(lineView.gutterBackground)\n    wrap.insertBefore(lineView.gutterBackground, lineView.text)\n  }\n  var markers = lineView.line.gutterMarkers\n  if (cm.options.lineNumbers || markers) {\n    var wrap$1 = ensureLineWrapped(lineView)\n    var gutterWrap = lineView.gutter = elt(\"div\", null, \"CodeMirror-gutter-wrapper\", (\"left: \" + (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + \"px\"))\n    cm.display.input.setUneditable(gutterWrap)\n    wrap$1.insertBefore(gutterWrap, lineView.text)\n    if (lineView.line.gutterClass)\n      { gutterWrap.className += \" \" + lineView.line.gutterClass }\n    if (cm.options.lineNumbers && (!markers || !markers[\"CodeMirror-linenumbers\"]))\n      { lineView.lineNumber = gutterWrap.appendChild(\n        elt(\"div\", lineNumberFor(cm.options, lineN),\n            \"CodeMirror-linenumber CodeMirror-gutter-elt\",\n            (\"left: \" + (dims.gutterLeft[\"CodeMirror-linenumbers\"]) + \"px; width: \" + (cm.display.lineNumInnerWidth) + \"px\"))) }\n    if (markers) { for (var k = 0; k < cm.options.gutters.length; ++k) {\n      var id = cm.options.gutters[k], found = markers.hasOwnProperty(id) && markers[id]\n      if (found)\n        { gutterWrap.appendChild(elt(\"div\", [found], \"CodeMirror-gutter-elt\",\n                                   (\"left: \" + (dims.gutterLeft[id]) + \"px; width: \" + (dims.gutterWidth[id]) + \"px\"))) }\n    } }\n  }\n}\n\nfunction updateLineWidgets(cm, lineView, dims) {\n  if (lineView.alignable) { lineView.alignable = null }\n  for (var node = lineView.node.firstChild, next = (void 0); node; node = next) {\n    next = node.nextSibling\n    if (node.className == \"CodeMirror-linewidget\")\n      { lineView.node.removeChild(node) }\n  }\n  insertLineWidgets(cm, lineView, dims)\n}\n\n// Build a line's DOM representation from scratch\nfunction buildLineElement(cm, lineView, lineN, dims) {\n  var built = getLineContent(cm, lineView)\n  lineView.text = lineView.node = built.pre\n  if (built.bgClass) { lineView.bgClass = built.bgClass }\n  if (built.textClass) { lineView.textClass = built.textClass }\n\n  updateLineClasses(cm, lineView)\n  updateLineGutter(cm, lineView, lineN, dims)\n  insertLineWidgets(cm, lineView, dims)\n  return lineView.node\n}\n\n// A lineView may contain multiple logical lines (when merged by\n// collapsed spans). The widgets for all of them need to be drawn.\nfunction insertLineWidgets(cm, lineView, dims) {\n  insertLineWidgetsFor(cm, lineView.line, lineView, dims, true)\n  if (lineView.rest) { for (var i = 0; i < lineView.rest.length; i++)\n    { insertLineWidgetsFor(cm, lineView.rest[i], lineView, dims, false) } }\n}\n\nfunction insertLineWidgetsFor(cm, line, lineView, dims, allowAbove) {\n  if (!line.widgets) { return }\n  var wrap = ensureLineWrapped(lineView)\n  for (var i = 0, ws = line.widgets; i < ws.length; ++i) {\n    var widget = ws[i], node = elt(\"div\", [widget.node], \"CodeMirror-linewidget\")\n    if (!widget.handleMouseEvents) { node.setAttribute(\"cm-ignore-events\", \"true\") }\n    positionLineWidget(widget, node, lineView, dims)\n    cm.display.input.setUneditable(node)\n    if (allowAbove && widget.above)\n      { wrap.insertBefore(node, lineView.gutter || lineView.text) }\n    else\n      { wrap.appendChild(node) }\n    signalLater(widget, \"redraw\")\n  }\n}\n\nfunction positionLineWidget(widget, node, lineView, dims) {\n  if (widget.noHScroll) {\n    ;(lineView.alignable || (lineView.alignable = [])).push(node)\n    var width = dims.wrapperWidth\n    node.style.left = dims.fixedPos + \"px\"\n    if (!widget.coverGutter) {\n      width -= dims.gutterTotalWidth\n      node.style.paddingLeft = dims.gutterTotalWidth + \"px\"\n    }\n    node.style.width = width + \"px\"\n  }\n  if (widget.coverGutter) {\n    node.style.zIndex = 5\n    node.style.position = \"relative\"\n    if (!widget.noHScroll) { node.style.marginLeft = -dims.gutterTotalWidth + \"px\" }\n  }\n}\n\nfunction widgetHeight(widget) {\n  if (widget.height != null) { return widget.height }\n  var cm = widget.doc.cm\n  if (!cm) { return 0 }\n  if (!contains(document.body, widget.node)) {\n    var parentStyle = \"position: relative;\"\n    if (widget.coverGutter)\n      { parentStyle += \"margin-left: -\" + cm.display.gutters.offsetWidth + \"px;\" }\n    if (widget.noHScroll)\n      { parentStyle += \"width: \" + cm.display.wrapper.clientWidth + \"px;\" }\n    removeChildrenAndAdd(cm.display.measure, elt(\"div\", [widget.node], null, parentStyle))\n  }\n  return widget.height = widget.node.parentNode.offsetHeight\n}\n\n// Return true when the given mouse event happened in a widget\nfunction eventInWidget(display, e) {\n  for (var n = e_target(e); n != display.wrapper; n = n.parentNode) {\n    if (!n || (n.nodeType == 1 && n.getAttribute(\"cm-ignore-events\") == \"true\") ||\n        (n.parentNode == display.sizer && n != display.mover))\n      { return true }\n  }\n}\n\n// POSITION MEASUREMENT\n\nfunction paddingTop(display) {return display.lineSpace.offsetTop}\nfunction paddingVert(display) {return display.mover.offsetHeight - display.lineSpace.offsetHeight}\nfunction paddingH(display) {\n  if (display.cachedPaddingH) { return display.cachedPaddingH }\n  var e = removeChildrenAndAdd(display.measure, elt(\"pre\", \"x\"))\n  var style = window.getComputedStyle ? window.getComputedStyle(e) : e.currentStyle\n  var data = {left: parseInt(style.paddingLeft), right: parseInt(style.paddingRight)}\n  if (!isNaN(data.left) && !isNaN(data.right)) { display.cachedPaddingH = data }\n  return data\n}\n\nfunction scrollGap(cm) { return scrollerGap - cm.display.nativeBarWidth }\nfunction displayWidth(cm) {\n  return cm.display.scroller.clientWidth - scrollGap(cm) - cm.display.barWidth\n}\nfunction displayHeight(cm) {\n  return cm.display.scroller.clientHeight - scrollGap(cm) - cm.display.barHeight\n}\n\n// Ensure the lineView.wrapping.heights array is populated. This is\n// an array of bottom offsets for the lines that make up a drawn\n// line. When lineWrapping is on, there might be more than one\n// height.\nfunction ensureLineHeights(cm, lineView, rect) {\n  var wrapping = cm.options.lineWrapping\n  var curWidth = wrapping && displayWidth(cm)\n  if (!lineView.measure.heights || wrapping && lineView.measure.width != curWidth) {\n    var heights = lineView.measure.heights = []\n    if (wrapping) {\n      lineView.measure.width = curWidth\n      var rects = lineView.text.firstChild.getClientRects()\n      for (var i = 0; i < rects.length - 1; i++) {\n        var cur = rects[i], next = rects[i + 1]\n        if (Math.abs(cur.bottom - next.bottom) > 2)\n          { heights.push((cur.bottom + next.top) / 2 - rect.top) }\n      }\n    }\n    heights.push(rect.bottom - rect.top)\n  }\n}\n\n// Find a line map (mapping character offsets to text nodes) and a\n// measurement cache for the given line number. (A line view might\n// contain multiple lines when collapsed ranges are present.)\nfunction mapFromLineView(lineView, line, lineN) {\n  if (lineView.line == line)\n    { return {map: lineView.measure.map, cache: lineView.measure.cache} }\n  for (var i = 0; i < lineView.rest.length; i++)\n    { if (lineView.rest[i] == line)\n      { return {map: lineView.measure.maps[i], cache: lineView.measure.caches[i]} } }\n  for (var i$1 = 0; i$1 < lineView.rest.length; i$1++)\n    { if (lineNo(lineView.rest[i$1]) > lineN)\n      { return {map: lineView.measure.maps[i$1], cache: lineView.measure.caches[i$1], before: true} } }\n}\n\n// Render a line into the hidden node display.externalMeasured. Used\n// when measurement is needed for a line that's not in the viewport.\nfunction updateExternalMeasurement(cm, line) {\n  line = visualLine(line)\n  var lineN = lineNo(line)\n  var view = cm.display.externalMeasured = new LineView(cm.doc, line, lineN)\n  view.lineN = lineN\n  var built = view.built = buildLineContent(cm, view)\n  view.text = built.pre\n  removeChildrenAndAdd(cm.display.lineMeasure, built.pre)\n  return view\n}\n\n// Get a {top, bottom, left, right} box (in line-local coordinates)\n// for a given character.\nfunction measureChar(cm, line, ch, bias) {\n  return measureCharPrepared(cm, prepareMeasureForLine(cm, line), ch, bias)\n}\n\n// Find a line view that corresponds to the given line number.\nfunction findViewForLine(cm, lineN) {\n  if (lineN >= cm.display.viewFrom && lineN < cm.display.viewTo)\n    { return cm.display.view[findViewIndex(cm, lineN)] }\n  var ext = cm.display.externalMeasured\n  if (ext && lineN >= ext.lineN && lineN < ext.lineN + ext.size)\n    { return ext }\n}\n\n// Measurement can be split in two steps, the set-up work that\n// applies to the whole line, and the measurement of the actual\n// character. Functions like coordsChar, that need to do a lot of\n// measurements in a row, can thus ensure that the set-up work is\n// only done once.\nfunction prepareMeasureForLine(cm, line) {\n  var lineN = lineNo(line)\n  var view = findViewForLine(cm, lineN)\n  if (view && !view.text) {\n    view = null\n  } else if (view && view.changes) {\n    updateLineForChanges(cm, view, lineN, getDimensions(cm))\n    cm.curOp.forceUpdate = true\n  }\n  if (!view)\n    { view = updateExternalMeasurement(cm, line) }\n\n  var info = mapFromLineView(view, line, lineN)\n  return {\n    line: line, view: view, rect: null,\n    map: info.map, cache: info.cache, before: info.before,\n    hasHeights: false\n  }\n}\n\n// Given a prepared measurement object, measures the position of an\n// actual character (or fetches it from the cache).\nfunction measureCharPrepared(cm, prepared, ch, bias, varHeight) {\n  if (prepared.before) { ch = -1 }\n  var key = ch + (bias || \"\"), found\n  if (prepared.cache.hasOwnProperty(key)) {\n    found = prepared.cache[key]\n  } else {\n    if (!prepared.rect)\n      { prepared.rect = prepared.view.text.getBoundingClientRect() }\n    if (!prepared.hasHeights) {\n      ensureLineHeights(cm, prepared.view, prepared.rect)\n      prepared.hasHeights = true\n    }\n    found = measureCharInner(cm, prepared, ch, bias)\n    if (!found.bogus) { prepared.cache[key] = found }\n  }\n  return {left: found.left, right: found.right,\n          top: varHeight ? found.rtop : found.top,\n          bottom: varHeight ? found.rbottom : found.bottom}\n}\n\nvar nullRect = {left: 0, right: 0, top: 0, bottom: 0}\n\nfunction nodeAndOffsetInLineMap(map, ch, bias) {\n  var node, start, end, collapse, mStart, mEnd\n  // First, search the line map for the text node corresponding to,\n  // or closest to, the target character.\n  for (var i = 0; i < map.length; i += 3) {\n    mStart = map[i]\n    mEnd = map[i + 1]\n    if (ch < mStart) {\n      start = 0; end = 1\n      collapse = \"left\"\n    } else if (ch < mEnd) {\n      start = ch - mStart\n      end = start + 1\n    } else if (i == map.length - 3 || ch == mEnd && map[i + 3] > ch) {\n      end = mEnd - mStart\n      start = end - 1\n      if (ch >= mEnd) { collapse = \"right\" }\n    }\n    if (start != null) {\n      node = map[i + 2]\n      if (mStart == mEnd && bias == (node.insertLeft ? \"left\" : \"right\"))\n        { collapse = bias }\n      if (bias == \"left\" && start == 0)\n        { while (i && map[i - 2] == map[i - 3] && map[i - 1].insertLeft) {\n          node = map[(i -= 3) + 2]\n          collapse = \"left\"\n        } }\n      if (bias == \"right\" && start == mEnd - mStart)\n        { while (i < map.length - 3 && map[i + 3] == map[i + 4] && !map[i + 5].insertLeft) {\n          node = map[(i += 3) + 2]\n          collapse = \"right\"\n        } }\n      break\n    }\n  }\n  return {node: node, start: start, end: end, collapse: collapse, coverStart: mStart, coverEnd: mEnd}\n}\n\nfunction getUsefulRect(rects, bias) {\n  var rect = nullRect\n  if (bias == \"left\") { for (var i = 0; i < rects.length; i++) {\n    if ((rect = rects[i]).left != rect.right) { break }\n  } } else { for (var i$1 = rects.length - 1; i$1 >= 0; i$1--) {\n    if ((rect = rects[i$1]).left != rect.right) { break }\n  } }\n  return rect\n}\n\nfunction measureCharInner(cm, prepared, ch, bias) {\n  var place = nodeAndOffsetInLineMap(prepared.map, ch, bias)\n  var node = place.node, start = place.start, end = place.end, collapse = place.collapse\n\n  var rect\n  if (node.nodeType == 3) { // If it is a text node, use a range to retrieve the coordinates.\n    for (var i$1 = 0; i$1 < 4; i$1++) { // Retry a maximum of 4 times when nonsense rectangles are returned\n      while (start && isExtendingChar(prepared.line.text.charAt(place.coverStart + start))) { --start }\n      while (place.coverStart + end < place.coverEnd && isExtendingChar(prepared.line.text.charAt(place.coverStart + end))) { ++end }\n      if (ie && ie_version < 9 && start == 0 && end == place.coverEnd - place.coverStart)\n        { rect = node.parentNode.getBoundingClientRect() }\n      else\n        { rect = getUsefulRect(range(node, start, end).getClientRects(), bias) }\n      if (rect.left || rect.right || start == 0) { break }\n      end = start\n      start = start - 1\n      collapse = \"right\"\n    }\n    if (ie && ie_version < 11) { rect = maybeUpdateRectForZooming(cm.display.measure, rect) }\n  } else { // If it is a widget, simply get the box for the whole widget.\n    if (start > 0) { collapse = bias = \"right\" }\n    var rects\n    if (cm.options.lineWrapping && (rects = node.getClientRects()).length > 1)\n      { rect = rects[bias == \"right\" ? rects.length - 1 : 0] }\n    else\n      { rect = node.getBoundingClientRect() }\n  }\n  if (ie && ie_version < 9 && !start && (!rect || !rect.left && !rect.right)) {\n    var rSpan = node.parentNode.getClientRects()[0]\n    if (rSpan)\n      { rect = {left: rSpan.left, right: rSpan.left + charWidth(cm.display), top: rSpan.top, bottom: rSpan.bottom} }\n    else\n      { rect = nullRect }\n  }\n\n  var rtop = rect.top - prepared.rect.top, rbot = rect.bottom - prepared.rect.top\n  var mid = (rtop + rbot) / 2\n  var heights = prepared.view.measure.heights\n  var i = 0\n  for (; i < heights.length - 1; i++)\n    { if (mid < heights[i]) { break } }\n  var top = i ? heights[i - 1] : 0, bot = heights[i]\n  var result = {left: (collapse == \"right\" ? rect.right : rect.left) - prepared.rect.left,\n                right: (collapse == \"left\" ? rect.left : rect.right) - prepared.rect.left,\n                top: top, bottom: bot}\n  if (!rect.left && !rect.right) { result.bogus = true }\n  if (!cm.options.singleCursorHeightPerLine) { result.rtop = rtop; result.rbottom = rbot }\n\n  return result\n}\n\n// Work around problem with bounding client rects on ranges being\n// returned incorrectly when zoomed on IE10 and below.\nfunction maybeUpdateRectForZooming(measure, rect) {\n  if (!window.screen || screen.logicalXDPI == null ||\n      screen.logicalXDPI == screen.deviceXDPI || !hasBadZoomedRects(measure))\n    { return rect }\n  var scaleX = screen.logicalXDPI / screen.deviceXDPI\n  var scaleY = screen.logicalYDPI / screen.deviceYDPI\n  return {left: rect.left * scaleX, right: rect.right * scaleX,\n          top: rect.top * scaleY, bottom: rect.bottom * scaleY}\n}\n\nfunction clearLineMeasurementCacheFor(lineView) {\n  if (lineView.measure) {\n    lineView.measure.cache = {}\n    lineView.measure.heights = null\n    if (lineView.rest) { for (var i = 0; i < lineView.rest.length; i++)\n      { lineView.measure.caches[i] = {} } }\n  }\n}\n\nfunction clearLineMeasurementCache(cm) {\n  cm.display.externalMeasure = null\n  removeChildren(cm.display.lineMeasure)\n  for (var i = 0; i < cm.display.view.length; i++)\n    { clearLineMeasurementCacheFor(cm.display.view[i]) }\n}\n\nfunction clearCaches(cm) {\n  clearLineMeasurementCache(cm)\n  cm.display.cachedCharWidth = cm.display.cachedTextHeight = cm.display.cachedPaddingH = null\n  if (!cm.options.lineWrapping) { cm.display.maxLineChanged = true }\n  cm.display.lineNumChars = null\n}\n\nfunction pageScrollX() {\n  // Work around https://bugs.chromium.org/p/chromium/issues/detail?id=489206\n  // which causes page_Offset and bounding client rects to use\n  // different reference viewports and invalidate our calculations.\n  if (chrome && android) { return -(document.body.getBoundingClientRect().left - parseInt(getComputedStyle(document.body).marginLeft)) }\n  return window.pageXOffset || (document.documentElement || document.body).scrollLeft\n}\nfunction pageScrollY() {\n  if (chrome && android) { return -(document.body.getBoundingClientRect().top - parseInt(getComputedStyle(document.body).marginTop)) }\n  return window.pageYOffset || (document.documentElement || document.body).scrollTop\n}\n\nfunction widgetTopHeight(lineObj) {\n  var height = 0\n  if (lineObj.widgets) { for (var i = 0; i < lineObj.widgets.length; ++i) { if (lineObj.widgets[i].above)\n    { height += widgetHeight(lineObj.widgets[i]) } } }\n  return height\n}\n\n// Converts a {top, bottom, left, right} box from line-local\n// coordinates into another coordinate system. Context may be one of\n// \"line\", \"div\" (display.lineDiv), \"local\"./null (editor), \"window\",\n// or \"page\".\nfunction intoCoordSystem(cm, lineObj, rect, context, includeWidgets) {\n  if (!includeWidgets) {\n    var height = widgetTopHeight(lineObj)\n    rect.top += height; rect.bottom += height\n  }\n  if (context == \"line\") { return rect }\n  if (!context) { context = \"local\" }\n  var yOff = heightAtLine(lineObj)\n  if (context == \"local\") { yOff += paddingTop(cm.display) }\n  else { yOff -= cm.display.viewOffset }\n  if (context == \"page\" || context == \"window\") {\n    var lOff = cm.display.lineSpace.getBoundingClientRect()\n    yOff += lOff.top + (context == \"window\" ? 0 : pageScrollY())\n    var xOff = lOff.left + (context == \"window\" ? 0 : pageScrollX())\n    rect.left += xOff; rect.right += xOff\n  }\n  rect.top += yOff; rect.bottom += yOff\n  return rect\n}\n\n// Coverts a box from \"div\" coords to another coordinate system.\n// Context may be \"window\", \"page\", \"div\", or \"local\"./null.\nfunction fromCoordSystem(cm, coords, context) {\n  if (context == \"div\") { return coords }\n  var left = coords.left, top = coords.top\n  // First move into \"page\" coordinate system\n  if (context == \"page\") {\n    left -= pageScrollX()\n    top -= pageScrollY()\n  } else if (context == \"local\" || !context) {\n    var localBox = cm.display.sizer.getBoundingClientRect()\n    left += localBox.left\n    top += localBox.top\n  }\n\n  var lineSpaceBox = cm.display.lineSpace.getBoundingClientRect()\n  return {left: left - lineSpaceBox.left, top: top - lineSpaceBox.top}\n}\n\nfunction charCoords(cm, pos, context, lineObj, bias) {\n  if (!lineObj) { lineObj = getLine(cm.doc, pos.line) }\n  return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, bias), context)\n}\n\n// Returns a box for a given cursor position, which may have an\n// 'other' property containing the position of the secondary cursor\n// on a bidi boundary.\n// A cursor Pos(line, char, \"before\") is on the same visual line as `char - 1`\n// and after `char - 1` in writing order of `char - 1`\n// A cursor Pos(line, char, \"after\") is on the same visual line as `char`\n// and before `char` in writing order of `char`\n// Examples (upper-case letters are RTL, lower-case are LTR):\n//     Pos(0, 1, ...)\n//     before   after\n// ab     a|b     a|b\n// aB     a|B     aB|\n// Ab     |Ab     A|b\n// AB     B|A     B|A\n// Every position after the last character on a line is considered to stick\n// to the last character on the line.\nfunction cursorCoords(cm, pos, context, lineObj, preparedMeasure, varHeight) {\n  lineObj = lineObj || getLine(cm.doc, pos.line)\n  if (!preparedMeasure) { preparedMeasure = prepareMeasureForLine(cm, lineObj) }\n  function get(ch, right) {\n    var m = measureCharPrepared(cm, preparedMeasure, ch, right ? \"right\" : \"left\", varHeight)\n    if (right) { m.left = m.right; } else { m.right = m.left }\n    return intoCoordSystem(cm, lineObj, m, context)\n  }\n  var order = getOrder(lineObj, cm.doc.direction), ch = pos.ch, sticky = pos.sticky\n  if (ch >= lineObj.text.length) {\n    ch = lineObj.text.length\n    sticky = \"before\"\n  } else if (ch <= 0) {\n    ch = 0\n    sticky = \"after\"\n  }\n  if (!order) { return get(sticky == \"before\" ? ch - 1 : ch, sticky == \"before\") }\n\n  function getBidi(ch, partPos, invert) {\n    var part = order[partPos], right = part.level == 1\n    return get(invert ? ch - 1 : ch, right != invert)\n  }\n  var partPos = getBidiPartAt(order, ch, sticky)\n  var other = bidiOther\n  var val = getBidi(ch, partPos, sticky == \"before\")\n  if (other != null) { val.other = getBidi(ch, other, sticky != \"before\") }\n  return val\n}\n\n// Used to cheaply estimate the coordinates for a position. Used for\n// intermediate scroll updates.\nfunction estimateCoords(cm, pos) {\n  var left = 0\n  pos = clipPos(cm.doc, pos)\n  if (!cm.options.lineWrapping) { left = charWidth(cm.display) * pos.ch }\n  var lineObj = getLine(cm.doc, pos.line)\n  var top = heightAtLine(lineObj) + paddingTop(cm.display)\n  return {left: left, right: left, top: top, bottom: top + lineObj.height}\n}\n\n// Positions returned by coordsChar contain some extra information.\n// xRel is the relative x position of the input coordinates compared\n// to the found position (so xRel > 0 means the coordinates are to\n// the right of the character position, for example). When outside\n// is true, that means the coordinates lie outside the line's\n// vertical range.\nfunction PosWithInfo(line, ch, sticky, outside, xRel) {\n  var pos = Pos(line, ch, sticky)\n  pos.xRel = xRel\n  if (outside) { pos.outside = true }\n  return pos\n}\n\n// Compute the character position closest to the given coordinates.\n// Input must be lineSpace-local (\"div\" coordinate system).\nfunction coordsChar(cm, x, y) {\n  var doc = cm.doc\n  y += cm.display.viewOffset\n  if (y < 0) { return PosWithInfo(doc.first, 0, null, true, -1) }\n  var lineN = lineAtHeight(doc, y), last = doc.first + doc.size - 1\n  if (lineN > last)\n    { return PosWithInfo(doc.first + doc.size - 1, getLine(doc, last).text.length, null, true, 1) }\n  if (x < 0) { x = 0 }\n\n  var lineObj = getLine(doc, lineN)\n  for (;;) {\n    var found = coordsCharInner(cm, lineObj, lineN, x, y)\n    var merged = collapsedSpanAtEnd(lineObj)\n    var mergedPos = merged && merged.find(0, true)\n    if (merged && (found.ch > mergedPos.from.ch || found.ch == mergedPos.from.ch && found.xRel > 0))\n      { lineN = lineNo(lineObj = mergedPos.to.line) }\n    else\n      { return found }\n  }\n}\n\nfunction wrappedLineExtent(cm, lineObj, preparedMeasure, y) {\n  y -= widgetTopHeight(lineObj)\n  var end = lineObj.text.length\n  var begin = findFirst(function (ch) { return measureCharPrepared(cm, preparedMeasure, ch - 1).bottom <= y; }, end, 0)\n  end = findFirst(function (ch) { return measureCharPrepared(cm, preparedMeasure, ch).top > y; }, begin, end)\n  return {begin: begin, end: end}\n}\n\nfunction wrappedLineExtentChar(cm, lineObj, preparedMeasure, target) {\n  if (!preparedMeasure) { preparedMeasure = prepareMeasureForLine(cm, lineObj) }\n  var targetTop = intoCoordSystem(cm, lineObj, measureCharPrepared(cm, preparedMeasure, target), \"line\").top\n  return wrappedLineExtent(cm, lineObj, preparedMeasure, targetTop)\n}\n\n// Returns true if the given side of a box is after the given\n// coordinates, in top-to-bottom, left-to-right order.\nfunction boxIsAfter(box, x, y, left) {\n  return box.bottom <= y ? false : box.top > y ? true : (left ? box.left : box.right) > x\n}\n\nfunction coordsCharInner(cm, lineObj, lineNo, x, y) {\n  // Move y into line-local coordinate space\n  y -= heightAtLine(lineObj)\n  var preparedMeasure = prepareMeasureForLine(cm, lineObj)\n  // When directly calling `measureCharPrepared`, we have to adjust\n  // for the widgets at this line.\n  var widgetHeight = widgetTopHeight(lineObj)\n  var begin = 0, end = lineObj.text.length, ltr = true\n\n  var order = getOrder(lineObj, cm.doc.direction)\n  // If the line isn't plain left-to-right text, first figure out\n  // which bidi section the coordinates fall into.\n  if (order) {\n    var part = (cm.options.lineWrapping ? coordsBidiPartWrapped : coordsBidiPart)\n                 (cm, lineObj, lineNo, preparedMeasure, order, x, y)\n    ltr = part.level != 1\n    // The awkward -1 offsets are needed because findFirst (called\n    // on these below) will treat its first bound as inclusive,\n    // second as exclusive, but we want to actually address the\n    // characters in the part's range\n    begin = ltr ? part.from : part.to - 1\n    end = ltr ? part.to : part.from - 1\n  }\n\n  // A binary search to find the first character whose bounding box\n  // starts after the coordinates. If we run across any whose box wrap\n  // the coordinates, store that.\n  var chAround = null, boxAround = null\n  var ch = findFirst(function (ch) {\n    var box = measureCharPrepared(cm, preparedMeasure, ch)\n    box.top += widgetHeight; box.bottom += widgetHeight\n    if (!boxIsAfter(box, x, y, false)) { return false }\n    if (box.top <= y && box.left <= x) {\n      chAround = ch\n      boxAround = box\n    }\n    return true\n  }, begin, end)\n\n  var baseX, sticky, outside = false\n  // If a box around the coordinates was found, use that\n  if (boxAround) {\n    // Distinguish coordinates nearer to the left or right side of the box\n    var atLeft = x - boxAround.left < boxAround.right - x, atStart = atLeft == ltr\n    ch = chAround + (atStart ? 0 : 1)\n    sticky = atStart ? \"after\" : \"before\"\n    baseX = atLeft ? boxAround.left : boxAround.right\n  } else {\n    // (Adjust for extended bound, if necessary.)\n    if (!ltr && (ch == end || ch == begin)) { ch++ }\n    // To determine which side to associate with, get the box to the\n    // left of the character and compare it's vertical position to the\n    // coordinates\n    sticky = ch == 0 ? \"after\" : ch == lineObj.text.length ? \"before\" :\n      (measureCharPrepared(cm, preparedMeasure, ch - (ltr ? 1 : 0)).bottom + widgetHeight <= y) == ltr ?\n      \"after\" : \"before\"\n    // Now get accurate coordinates for this place, in order to get a\n    // base X position\n    var coords = cursorCoords(cm, Pos(lineNo, ch, sticky), \"line\", lineObj, preparedMeasure)\n    baseX = coords.left\n    outside = y < coords.top || y >= coords.bottom\n  }\n\n  ch = skipExtendingChars(lineObj.text, ch, 1)\n  return PosWithInfo(lineNo, ch, sticky, outside, x - baseX)\n}\n\nfunction coordsBidiPart(cm, lineObj, lineNo, preparedMeasure, order, x, y) {\n  // Bidi parts are sorted left-to-right, and in a non-line-wrapping\n  // situation, we can take this ordering to correspond to the visual\n  // ordering. This finds the first part whose end is after the given\n  // coordinates.\n  var index = findFirst(function (i) {\n    var part = order[i], ltr = part.level != 1\n    return boxIsAfter(cursorCoords(cm, Pos(lineNo, ltr ? part.to : part.from, ltr ? \"before\" : \"after\"),\n                                   \"line\", lineObj, preparedMeasure), x, y, true)\n  }, 0, order.length - 1)\n  var part = order[index]\n  // If this isn't the first part, the part's start is also after\n  // the coordinates, and the coordinates aren't on the same line as\n  // that start, move one part back.\n  if (index > 0) {\n    var ltr = part.level != 1\n    var start = cursorCoords(cm, Pos(lineNo, ltr ? part.from : part.to, ltr ? \"after\" : \"before\"),\n                             \"line\", lineObj, preparedMeasure)\n    if (boxIsAfter(start, x, y, true) && start.top > y)\n      { part = order[index - 1] }\n  }\n  return part\n}\n\nfunction coordsBidiPartWrapped(cm, lineObj, _lineNo, preparedMeasure, order, x, y) {\n  // In a wrapped line, rtl text on wrapping boundaries can do things\n  // that don't correspond to the ordering in our `order` array at\n  // all, so a binary search doesn't work, and we want to return a\n  // part that only spans one line so that the binary search in\n  // coordsCharInner is safe. As such, we first find the extent of the\n  // wrapped line, and then do a flat search in which we discard any\n  // spans that aren't on the line.\n  var ref = wrappedLineExtent(cm, lineObj, preparedMeasure, y);\n  var begin = ref.begin;\n  var end = ref.end;\n  var part = null, closestDist = null\n  for (var i = 0; i < order.length; i++) {\n    var p = order[i]\n    if (p.from >= end || p.to <= begin) { continue }\n    var ltr = p.level != 1\n    var endX = measureCharPrepared(cm, preparedMeasure, ltr ? Math.min(end, p.to) - 1 : Math.max(begin, p.from)).right\n    // Weigh against spans ending before this, so that they are only\n    // picked if nothing ends after\n    var dist = endX < x ? x - endX + 1e9 : endX - x\n    if (!part || closestDist > dist) {\n      part = p\n      closestDist = dist\n    }\n  }\n  if (!part) { part = order[order.length - 1] }\n  // Clip the part to the wrapped line.\n  if (part.from < begin) { part = {from: begin, to: part.to, level: part.level} }\n  if (part.to > end) { part = {from: part.from, to: end, level: part.level} }\n  return part\n}\n\nvar measureText\n// Compute the default text height.\nfunction textHeight(display) {\n  if (display.cachedTextHeight != null) { return display.cachedTextHeight }\n  if (measureText == null) {\n    measureText = elt(\"pre\")\n    // Measure a bunch of lines, for browsers that compute\n    // fractional heights.\n    for (var i = 0; i < 49; ++i) {\n      measureText.appendChild(document.createTextNode(\"x\"))\n      measureText.appendChild(elt(\"br\"))\n    }\n    measureText.appendChild(document.createTextNode(\"x\"))\n  }\n  removeChildrenAndAdd(display.measure, measureText)\n  var height = measureText.offsetHeight / 50\n  if (height > 3) { display.cachedTextHeight = height }\n  removeChildren(display.measure)\n  return height || 1\n}\n\n// Compute the default character width.\nfunction charWidth(display) {\n  if (display.cachedCharWidth != null) { return display.cachedCharWidth }\n  var anchor = elt(\"span\", \"xxxxxxxxxx\")\n  var pre = elt(\"pre\", [anchor])\n  removeChildrenAndAdd(display.measure, pre)\n  var rect = anchor.getBoundingClientRect(), width = (rect.right - rect.left) / 10\n  if (width > 2) { display.cachedCharWidth = width }\n  return width || 10\n}\n\n// Do a bulk-read of the DOM positions and sizes needed to draw the\n// view, so that we don't interleave reading and writing to the DOM.\nfunction getDimensions(cm) {\n  var d = cm.display, left = {}, width = {}\n  var gutterLeft = d.gutters.clientLeft\n  for (var n = d.gutters.firstChild, i = 0; n; n = n.nextSibling, ++i) {\n    left[cm.options.gutters[i]] = n.offsetLeft + n.clientLeft + gutterLeft\n    width[cm.options.gutters[i]] = n.clientWidth\n  }\n  return {fixedPos: compensateForHScroll(d),\n          gutterTotalWidth: d.gutters.offsetWidth,\n          gutterLeft: left,\n          gutterWidth: width,\n          wrapperWidth: d.wrapper.clientWidth}\n}\n\n// Computes display.scroller.scrollLeft + display.gutters.offsetWidth,\n// but using getBoundingClientRect to get a sub-pixel-accurate\n// result.\nfunction compensateForHScroll(display) {\n  return display.scroller.getBoundingClientRect().left - display.sizer.getBoundingClientRect().left\n}\n\n// Returns a function that estimates the height of a line, to use as\n// first approximation until the line becomes visible (and is thus\n// properly measurable).\nfunction estimateHeight(cm) {\n  var th = textHeight(cm.display), wrapping = cm.options.lineWrapping\n  var perLine = wrapping && Math.max(5, cm.display.scroller.clientWidth / charWidth(cm.display) - 3)\n  return function (line) {\n    if (lineIsHidden(cm.doc, line)) { return 0 }\n\n    var widgetsHeight = 0\n    if (line.widgets) { for (var i = 0; i < line.widgets.length; i++) {\n      if (line.widgets[i].height) { widgetsHeight += line.widgets[i].height }\n    } }\n\n    if (wrapping)\n      { return widgetsHeight + (Math.ceil(line.text.length / perLine) || 1) * th }\n    else\n      { return widgetsHeight + th }\n  }\n}\n\nfunction estimateLineHeights(cm) {\n  var doc = cm.doc, est = estimateHeight(cm)\n  doc.iter(function (line) {\n    var estHeight = est(line)\n    if (estHeight != line.height) { updateLineHeight(line, estHeight) }\n  })\n}\n\n// Given a mouse event, find the corresponding position. If liberal\n// is false, it checks whether a gutter or scrollbar was clicked,\n// and returns null if it was. forRect is used by rectangular\n// selections, and tries to estimate a character position even for\n// coordinates beyond the right of the text.\nfunction posFromMouse(cm, e, liberal, forRect) {\n  var display = cm.display\n  if (!liberal && e_target(e).getAttribute(\"cm-not-content\") == \"true\") { return null }\n\n  var x, y, space = display.lineSpace.getBoundingClientRect()\n  // Fails unpredictably on IE[67] when mouse is dragged around quickly.\n  try { x = e.clientX - space.left; y = e.clientY - space.top }\n  catch (e) { return null }\n  var coords = coordsChar(cm, x, y), line\n  if (forRect && coords.xRel == 1 && (line = getLine(cm.doc, coords.line).text).length == coords.ch) {\n    var colDiff = countColumn(line, line.length, cm.options.tabSize) - line.length\n    coords = Pos(coords.line, Math.max(0, Math.round((x - paddingH(cm.display).left) / charWidth(cm.display)) - colDiff))\n  }\n  return coords\n}\n\n// Find the view element corresponding to a given line. Return null\n// when the line isn't visible.\nfunction findViewIndex(cm, n) {\n  if (n >= cm.display.viewTo) { return null }\n  n -= cm.display.viewFrom\n  if (n < 0) { return null }\n  var view = cm.display.view\n  for (var i = 0; i < view.length; i++) {\n    n -= view[i].size\n    if (n < 0) { return i }\n  }\n}\n\nfunction updateSelection(cm) {\n  cm.display.input.showSelection(cm.display.input.prepareSelection())\n}\n\nfunction prepareSelection(cm, primary) {\n  if ( primary === void 0 ) primary = true;\n\n  var doc = cm.doc, result = {}\n  var curFragment = result.cursors = document.createDocumentFragment()\n  var selFragment = result.selection = document.createDocumentFragment()\n\n  for (var i = 0; i < doc.sel.ranges.length; i++) {\n    if (!primary && i == doc.sel.primIndex) { continue }\n    var range = doc.sel.ranges[i]\n    if (range.from().line >= cm.display.viewTo || range.to().line < cm.display.viewFrom) { continue }\n    var collapsed = range.empty()\n    if (collapsed || cm.options.showCursorWhenSelecting)\n      { drawSelectionCursor(cm, range.head, curFragment) }\n    if (!collapsed)\n      { drawSelectionRange(cm, range, selFragment) }\n  }\n  return result\n}\n\n// Draws a cursor for the given range\nfunction drawSelectionCursor(cm, head, output) {\n  var pos = cursorCoords(cm, head, \"div\", null, null, !cm.options.singleCursorHeightPerLine)\n\n  var cursor = output.appendChild(elt(\"div\", \"\\u00a0\", \"CodeMirror-cursor\"))\n  cursor.style.left = pos.left + \"px\"\n  cursor.style.top = pos.top + \"px\"\n  cursor.style.height = Math.max(0, pos.bottom - pos.top) * cm.options.cursorHeight + \"px\"\n\n  if (pos.other) {\n    // Secondary cursor, shown when on a 'jump' in bi-directional text\n    var otherCursor = output.appendChild(elt(\"div\", \"\\u00a0\", \"CodeMirror-cursor CodeMirror-secondarycursor\"))\n    otherCursor.style.display = \"\"\n    otherCursor.style.left = pos.other.left + \"px\"\n    otherCursor.style.top = pos.other.top + \"px\"\n    otherCursor.style.height = (pos.other.bottom - pos.other.top) * .85 + \"px\"\n  }\n}\n\nfunction cmpCoords(a, b) { return a.top - b.top || a.left - b.left }\n\n// Draws the given range as a highlighted selection\nfunction drawSelectionRange(cm, range, output) {\n  var display = cm.display, doc = cm.doc\n  var fragment = document.createDocumentFragment()\n  var padding = paddingH(cm.display), leftSide = padding.left\n  var rightSide = Math.max(display.sizerWidth, displayWidth(cm) - display.sizer.offsetLeft) - padding.right\n\n  function add(left, top, width, bottom) {\n    if (top < 0) { top = 0 }\n    top = Math.round(top)\n    bottom = Math.round(bottom)\n    fragment.appendChild(elt(\"div\", null, \"CodeMirror-selected\", (\"position: absolute; left: \" + left + \"px;\\n                             top: \" + top + \"px; width: \" + (width == null ? rightSide - left : width) + \"px;\\n                             height: \" + (bottom - top) + \"px\")))\n  }\n\n  function drawForLine(line, fromArg, toArg) {\n    var lineObj = getLine(doc, line)\n    var lineLen = lineObj.text.length\n    var start, end\n    function coords(ch, bias) {\n      return charCoords(cm, Pos(line, ch), \"div\", lineObj, bias)\n    }\n\n    var order = getOrder(lineObj, doc.direction)\n    iterateBidiSections(order, fromArg || 0, toArg == null ? lineLen : toArg, function (from, to, dir, i) {\n      var fromPos = coords(from, dir == \"ltr\" ? \"left\" : \"right\")\n      var toPos = coords(to - 1, dir == \"ltr\" ? \"right\" : \"left\")\n      if (dir == \"ltr\") {\n        var fromLeft = fromArg == null && from == 0 ? leftSide : fromPos.left\n        var toRight = toArg == null && to == lineLen ? rightSide : toPos.right\n        if (toPos.top - fromPos.top <= 3) { // Single line\n          add(fromLeft, toPos.top, toRight - fromLeft, toPos.bottom)\n        } else { // Multiple lines\n          add(fromLeft, fromPos.top, null, fromPos.bottom)\n          if (fromPos.bottom < toPos.top) { add(leftSide, fromPos.bottom, null, toPos.top) }\n          add(leftSide, toPos.top, toPos.right, toPos.bottom)\n        }\n      } else if (from < to) { // RTL\n        var fromRight = fromArg == null && from == 0 ? rightSide : fromPos.right\n        var toLeft = toArg == null && to == lineLen ? leftSide : toPos.left\n        if (toPos.top - fromPos.top <= 3) { // Single line\n          add(toLeft, toPos.top, fromRight - toLeft, toPos.bottom)\n        } else { // Multiple lines\n          var topLeft = leftSide\n          if (i) {\n            var topEnd = wrappedLineExtentChar(cm, lineObj, null, from).end\n            // The coordinates returned for an RTL wrapped space tend to\n            // be complete bogus, so try to skip that here.\n            topLeft = coords(topEnd - (/\\s/.test(lineObj.text.charAt(topEnd - 1)) ? 2 : 1), \"left\").left\n          }\n          add(topLeft, fromPos.top, fromRight - topLeft, fromPos.bottom)\n          if (fromPos.bottom < toPos.top) { add(leftSide, fromPos.bottom, null, toPos.top) }\n          var botWidth = null\n          if (i < order.length  - 1 || true) {\n            var botStart = wrappedLineExtentChar(cm, lineObj, null, to).begin\n            botWidth = coords(botStart, \"right\").right - toLeft\n          }\n          add(toLeft, toPos.top, botWidth, toPos.bottom)\n        }\n      }\n\n      if (!start || cmpCoords(fromPos, start) < 0) { start = fromPos }\n      if (cmpCoords(toPos, start) < 0) { start = toPos }\n      if (!end || cmpCoords(fromPos, end) < 0) { end = fromPos }\n      if (cmpCoords(toPos, end) < 0) { end = toPos }\n    })\n    return {start: start, end: end}\n  }\n\n  var sFrom = range.from(), sTo = range.to()\n  if (sFrom.line == sTo.line) {\n    drawForLine(sFrom.line, sFrom.ch, sTo.ch)\n  } else {\n    var fromLine = getLine(doc, sFrom.line), toLine = getLine(doc, sTo.line)\n    var singleVLine = visualLine(fromLine) == visualLine(toLine)\n    var leftEnd = drawForLine(sFrom.line, sFrom.ch, singleVLine ? fromLine.text.length + 1 : null).end\n    var rightStart = drawForLine(sTo.line, singleVLine ? 0 : null, sTo.ch).start\n    if (singleVLine) {\n      if (leftEnd.top < rightStart.top - 2) {\n        add(leftEnd.right, leftEnd.top, null, leftEnd.bottom)\n        add(leftSide, rightStart.top, rightStart.left, rightStart.bottom)\n      } else {\n        add(leftEnd.right, leftEnd.top, rightStart.left - leftEnd.right, leftEnd.bottom)\n      }\n    }\n    if (leftEnd.bottom < rightStart.top)\n      { add(leftSide, leftEnd.bottom, null, rightStart.top) }\n  }\n\n  output.appendChild(fragment)\n}\n\n// Cursor-blinking\nfunction restartBlink(cm) {\n  if (!cm.state.focused) { return }\n  var display = cm.display\n  clearInterval(display.blinker)\n  var on = true\n  display.cursorDiv.style.visibility = \"\"\n  if (cm.options.cursorBlinkRate > 0)\n    { display.blinker = setInterval(function () { return display.cursorDiv.style.visibility = (on = !on) ? \"\" : \"hidden\"; },\n      cm.options.cursorBlinkRate) }\n  else if (cm.options.cursorBlinkRate < 0)\n    { display.cursorDiv.style.visibility = \"hidden\" }\n}\n\nfunction ensureFocus(cm) {\n  if (!cm.state.focused) { cm.display.input.focus(); onFocus(cm) }\n}\n\nfunction delayBlurEvent(cm) {\n  cm.state.delayingBlurEvent = true\n  setTimeout(function () { if (cm.state.delayingBlurEvent) {\n    cm.state.delayingBlurEvent = false\n    onBlur(cm)\n  } }, 100)\n}\n\nfunction onFocus(cm, e) {\n  if (cm.state.delayingBlurEvent) { cm.state.delayingBlurEvent = false }\n\n  if (cm.options.readOnly == \"nocursor\") { return }\n  if (!cm.state.focused) {\n    signal(cm, \"focus\", cm, e)\n    cm.state.focused = true\n    addClass(cm.display.wrapper, \"CodeMirror-focused\")\n    // This test prevents this from firing when a context\n    // menu is closed (since the input reset would kill the\n    // select-all detection hack)\n    if (!cm.curOp && cm.display.selForContextMenu != cm.doc.sel) {\n      cm.display.input.reset()\n      if (webkit) { setTimeout(function () { return cm.display.input.reset(true); }, 20) } // Issue #1730\n    }\n    cm.display.input.receivedFocus()\n  }\n  restartBlink(cm)\n}\nfunction onBlur(cm, e) {\n  if (cm.state.delayingBlurEvent) { return }\n\n  if (cm.state.focused) {\n    signal(cm, \"blur\", cm, e)\n    cm.state.focused = false\n    rmClass(cm.display.wrapper, \"CodeMirror-focused\")\n  }\n  clearInterval(cm.display.blinker)\n  setTimeout(function () { if (!cm.state.focused) { cm.display.shift = false } }, 150)\n}\n\n// Read the actual heights of the rendered lines, and update their\n// stored heights to match.\nfunction updateHeightsInViewport(cm) {\n  var display = cm.display\n  var prevBottom = display.lineDiv.offsetTop\n  for (var i = 0; i < display.view.length; i++) {\n    var cur = display.view[i], height = (void 0)\n    if (cur.hidden) { continue }\n    if (ie && ie_version < 8) {\n      var bot = cur.node.offsetTop + cur.node.offsetHeight\n      height = bot - prevBottom\n      prevBottom = bot\n    } else {\n      var box = cur.node.getBoundingClientRect()\n      height = box.bottom - box.top\n    }\n    var diff = cur.line.height - height\n    if (height < 2) { height = textHeight(display) }\n    if (diff > .005 || diff < -.005) {\n      updateLineHeight(cur.line, height)\n      updateWidgetHeight(cur.line)\n      if (cur.rest) { for (var j = 0; j < cur.rest.length; j++)\n        { updateWidgetHeight(cur.rest[j]) } }\n    }\n  }\n}\n\n// Read and store the height of line widgets associated with the\n// given line.\nfunction updateWidgetHeight(line) {\n  if (line.widgets) { for (var i = 0; i < line.widgets.length; ++i)\n    { line.widgets[i].height = line.widgets[i].node.parentNode.offsetHeight } }\n}\n\n// Compute the lines that are visible in a given viewport (defaults\n// the the current scroll position). viewport may contain top,\n// height, and ensure (see op.scrollToPos) properties.\nfunction visibleLines(display, doc, viewport) {\n  var top = viewport && viewport.top != null ? Math.max(0, viewport.top) : display.scroller.scrollTop\n  top = Math.floor(top - paddingTop(display))\n  var bottom = viewport && viewport.bottom != null ? viewport.bottom : top + display.wrapper.clientHeight\n\n  var from = lineAtHeight(doc, top), to = lineAtHeight(doc, bottom)\n  // Ensure is a {from: {line, ch}, to: {line, ch}} object, and\n  // forces those lines into the viewport (if possible).\n  if (viewport && viewport.ensure) {\n    var ensureFrom = viewport.ensure.from.line, ensureTo = viewport.ensure.to.line\n    if (ensureFrom < from) {\n      from = ensureFrom\n      to = lineAtHeight(doc, heightAtLine(getLine(doc, ensureFrom)) + display.wrapper.clientHeight)\n    } else if (Math.min(ensureTo, doc.lastLine()) >= to) {\n      from = lineAtHeight(doc, heightAtLine(getLine(doc, ensureTo)) - display.wrapper.clientHeight)\n      to = ensureTo\n    }\n  }\n  return {from: from, to: Math.max(to, from + 1)}\n}\n\n// Re-align line numbers and gutter marks to compensate for\n// horizontal scrolling.\nfunction alignHorizontally(cm) {\n  var display = cm.display, view = display.view\n  if (!display.alignWidgets && (!display.gutters.firstChild || !cm.options.fixedGutter)) { return }\n  var comp = compensateForHScroll(display) - display.scroller.scrollLeft + cm.doc.scrollLeft\n  var gutterW = display.gutters.offsetWidth, left = comp + \"px\"\n  for (var i = 0; i < view.length; i++) { if (!view[i].hidden) {\n    if (cm.options.fixedGutter) {\n      if (view[i].gutter)\n        { view[i].gutter.style.left = left }\n      if (view[i].gutterBackground)\n        { view[i].gutterBackground.style.left = left }\n    }\n    var align = view[i].alignable\n    if (align) { for (var j = 0; j < align.length; j++)\n      { align[j].style.left = left } }\n  } }\n  if (cm.options.fixedGutter)\n    { display.gutters.style.left = (comp + gutterW) + \"px\" }\n}\n\n// Used to ensure that the line number gutter is still the right\n// size for the current document size. Returns true when an update\n// is needed.\nfunction maybeUpdateLineNumberWidth(cm) {\n  if (!cm.options.lineNumbers) { return false }\n  var doc = cm.doc, last = lineNumberFor(cm.options, doc.first + doc.size - 1), display = cm.display\n  if (last.length != display.lineNumChars) {\n    var test = display.measure.appendChild(elt(\"div\", [elt(\"div\", last)],\n                                               \"CodeMirror-linenumber CodeMirror-gutter-elt\"))\n    var innerW = test.firstChild.offsetWidth, padding = test.offsetWidth - innerW\n    display.lineGutter.style.width = \"\"\n    display.lineNumInnerWidth = Math.max(innerW, display.lineGutter.offsetWidth - padding) + 1\n    display.lineNumWidth = display.lineNumInnerWidth + padding\n    display.lineNumChars = display.lineNumInnerWidth ? last.length : -1\n    display.lineGutter.style.width = display.lineNumWidth + \"px\"\n    updateGutterSpace(cm)\n    return true\n  }\n  return false\n}\n\n// SCROLLING THINGS INTO VIEW\n\n// If an editor sits on the top or bottom of the window, partially\n// scrolled out of view, this ensures that the cursor is visible.\nfunction maybeScrollWindow(cm, rect) {\n  if (signalDOMEvent(cm, \"scrollCursorIntoView\")) { return }\n\n  var display = cm.display, box = display.sizer.getBoundingClientRect(), doScroll = null\n  if (rect.top + box.top < 0) { doScroll = true }\n  else if (rect.bottom + box.top > (window.innerHeight || document.documentElement.clientHeight)) { doScroll = false }\n  if (doScroll != null && !phantom) {\n    var scrollNode = elt(\"div\", \"\\u200b\", null, (\"position: absolute;\\n                         top: \" + (rect.top - display.viewOffset - paddingTop(cm.display)) + \"px;\\n                         height: \" + (rect.bottom - rect.top + scrollGap(cm) + display.barHeight) + \"px;\\n                         left: \" + (rect.left) + \"px; width: \" + (Math.max(2, rect.right - rect.left)) + \"px;\"))\n    cm.display.lineSpace.appendChild(scrollNode)\n    scrollNode.scrollIntoView(doScroll)\n    cm.display.lineSpace.removeChild(scrollNode)\n  }\n}\n\n// Scroll a given position into view (immediately), verifying that\n// it actually became visible (as line heights are accurately\n// measured, the position of something may 'drift' during drawing).\nfunction scrollPosIntoView(cm, pos, end, margin) {\n  if (margin == null) { margin = 0 }\n  var rect\n  if (!cm.options.lineWrapping && pos == end) {\n    // Set pos and end to the cursor positions around the character pos sticks to\n    // If pos.sticky == \"before\", that is around pos.ch - 1, otherwise around pos.ch\n    // If pos == Pos(_, 0, \"before\"), pos and end are unchanged\n    pos = pos.ch ? Pos(pos.line, pos.sticky == \"before\" ? pos.ch - 1 : pos.ch, \"after\") : pos\n    end = pos.sticky == \"before\" ? Pos(pos.line, pos.ch + 1, \"before\") : pos\n  }\n  for (var limit = 0; limit < 5; limit++) {\n    var changed = false\n    var coords = cursorCoords(cm, pos)\n    var endCoords = !end || end == pos ? coords : cursorCoords(cm, end)\n    rect = {left: Math.min(coords.left, endCoords.left),\n            top: Math.min(coords.top, endCoords.top) - margin,\n            right: Math.max(coords.left, endCoords.left),\n            bottom: Math.max(coords.bottom, endCoords.bottom) + margin}\n    var scrollPos = calculateScrollPos(cm, rect)\n    var startTop = cm.doc.scrollTop, startLeft = cm.doc.scrollLeft\n    if (scrollPos.scrollTop != null) {\n      updateScrollTop(cm, scrollPos.scrollTop)\n      if (Math.abs(cm.doc.scrollTop - startTop) > 1) { changed = true }\n    }\n    if (scrollPos.scrollLeft != null) {\n      setScrollLeft(cm, scrollPos.scrollLeft)\n      if (Math.abs(cm.doc.scrollLeft - startLeft) > 1) { changed = true }\n    }\n    if (!changed) { break }\n  }\n  return rect\n}\n\n// Scroll a given set of coordinates into view (immediately).\nfunction scrollIntoView(cm, rect) {\n  var scrollPos = calculateScrollPos(cm, rect)\n  if (scrollPos.scrollTop != null) { updateScrollTop(cm, scrollPos.scrollTop) }\n  if (scrollPos.scrollLeft != null) { setScrollLeft(cm, scrollPos.scrollLeft) }\n}\n\n// Calculate a new scroll position needed to scroll the given\n// rectangle into view. Returns an object with scrollTop and\n// scrollLeft properties. When these are undefined, the\n// vertical/horizontal position does not need to be adjusted.\nfunction calculateScrollPos(cm, rect) {\n  var display = cm.display, snapMargin = textHeight(cm.display)\n  if (rect.top < 0) { rect.top = 0 }\n  var screentop = cm.curOp && cm.curOp.scrollTop != null ? cm.curOp.scrollTop : display.scroller.scrollTop\n  var screen = displayHeight(cm), result = {}\n  if (rect.bottom - rect.top > screen) { rect.bottom = rect.top + screen }\n  var docBottom = cm.doc.height + paddingVert(display)\n  var atTop = rect.top < snapMargin, atBottom = rect.bottom > docBottom - snapMargin\n  if (rect.top < screentop) {\n    result.scrollTop = atTop ? 0 : rect.top\n  } else if (rect.bottom > screentop + screen) {\n    var newTop = Math.min(rect.top, (atBottom ? docBottom : rect.bottom) - screen)\n    if (newTop != screentop) { result.scrollTop = newTop }\n  }\n\n  var screenleft = cm.curOp && cm.curOp.scrollLeft != null ? cm.curOp.scrollLeft : display.scroller.scrollLeft\n  var screenw = displayWidth(cm) - (cm.options.fixedGutter ? display.gutters.offsetWidth : 0)\n  var tooWide = rect.right - rect.left > screenw\n  if (tooWide) { rect.right = rect.left + screenw }\n  if (rect.left < 10)\n    { result.scrollLeft = 0 }\n  else if (rect.left < screenleft)\n    { result.scrollLeft = Math.max(0, rect.left - (tooWide ? 0 : 10)) }\n  else if (rect.right > screenw + screenleft - 3)\n    { result.scrollLeft = rect.right + (tooWide ? 0 : 10) - screenw }\n  return result\n}\n\n// Store a relative adjustment to the scroll position in the current\n// operation (to be applied when the operation finishes).\nfunction addToScrollTop(cm, top) {\n  if (top == null) { return }\n  resolveScrollToPos(cm)\n  cm.curOp.scrollTop = (cm.curOp.scrollTop == null ? cm.doc.scrollTop : cm.curOp.scrollTop) + top\n}\n\n// Make sure that at the end of the operation the current cursor is\n// shown.\nfunction ensureCursorVisible(cm) {\n  resolveScrollToPos(cm)\n  var cur = cm.getCursor()\n  cm.curOp.scrollToPos = {from: cur, to: cur, margin: cm.options.cursorScrollMargin}\n}\n\nfunction scrollToCoords(cm, x, y) {\n  if (x != null || y != null) { resolveScrollToPos(cm) }\n  if (x != null) { cm.curOp.scrollLeft = x }\n  if (y != null) { cm.curOp.scrollTop = y }\n}\n\nfunction scrollToRange(cm, range) {\n  resolveScrollToPos(cm)\n  cm.curOp.scrollToPos = range\n}\n\n// When an operation has its scrollToPos property set, and another\n// scroll action is applied before the end of the operation, this\n// 'simulates' scrolling that position into view in a cheap way, so\n// that the effect of intermediate scroll commands is not ignored.\nfunction resolveScrollToPos(cm) {\n  var range = cm.curOp.scrollToPos\n  if (range) {\n    cm.curOp.scrollToPos = null\n    var from = estimateCoords(cm, range.from), to = estimateCoords(cm, range.to)\n    scrollToCoordsRange(cm, from, to, range.margin)\n  }\n}\n\nfunction scrollToCoordsRange(cm, from, to, margin) {\n  var sPos = calculateScrollPos(cm, {\n    left: Math.min(from.left, to.left),\n    top: Math.min(from.top, to.top) - margin,\n    right: Math.max(from.right, to.right),\n    bottom: Math.max(from.bottom, to.bottom) + margin\n  })\n  scrollToCoords(cm, sPos.scrollLeft, sPos.scrollTop)\n}\n\n// Sync the scrollable area and scrollbars, ensure the viewport\n// covers the visible area.\nfunction updateScrollTop(cm, val) {\n  if (Math.abs(cm.doc.scrollTop - val) < 2) { return }\n  if (!gecko) { updateDisplaySimple(cm, {top: val}) }\n  setScrollTop(cm, val, true)\n  if (gecko) { updateDisplaySimple(cm) }\n  startWorker(cm, 100)\n}\n\nfunction setScrollTop(cm, val, forceScroll) {\n  val = Math.min(cm.display.scroller.scrollHeight - cm.display.scroller.clientHeight, val)\n  if (cm.display.scroller.scrollTop == val && !forceScroll) { return }\n  cm.doc.scrollTop = val\n  cm.display.scrollbars.setScrollTop(val)\n  if (cm.display.scroller.scrollTop != val) { cm.display.scroller.scrollTop = val }\n}\n\n// Sync scroller and scrollbar, ensure the gutter elements are\n// aligned.\nfunction setScrollLeft(cm, val, isScroller, forceScroll) {\n  val = Math.min(val, cm.display.scroller.scrollWidth - cm.display.scroller.clientWidth)\n  if ((isScroller ? val == cm.doc.scrollLeft : Math.abs(cm.doc.scrollLeft - val) < 2) && !forceScroll) { return }\n  cm.doc.scrollLeft = val\n  alignHorizontally(cm)\n  if (cm.display.scroller.scrollLeft != val) { cm.display.scroller.scrollLeft = val }\n  cm.display.scrollbars.setScrollLeft(val)\n}\n\n// SCROLLBARS\n\n// Prepare DOM reads needed to update the scrollbars. Done in one\n// shot to minimize update/measure roundtrips.\nfunction measureForScrollbars(cm) {\n  var d = cm.display, gutterW = d.gutters.offsetWidth\n  var docH = Math.round(cm.doc.height + paddingVert(cm.display))\n  return {\n    clientHeight: d.scroller.clientHeight,\n    viewHeight: d.wrapper.clientHeight,\n    scrollWidth: d.scroller.scrollWidth, clientWidth: d.scroller.clientWidth,\n    viewWidth: d.wrapper.clientWidth,\n    barLeft: cm.options.fixedGutter ? gutterW : 0,\n    docHeight: docH,\n    scrollHeight: docH + scrollGap(cm) + d.barHeight,\n    nativeBarWidth: d.nativeBarWidth,\n    gutterWidth: gutterW\n  }\n}\n\nvar NativeScrollbars = function(place, scroll, cm) {\n  this.cm = cm\n  var vert = this.vert = elt(\"div\", [elt(\"div\", null, null, \"min-width: 1px\")], \"CodeMirror-vscrollbar\")\n  var horiz = this.horiz = elt(\"div\", [elt(\"div\", null, null, \"height: 100%; min-height: 1px\")], \"CodeMirror-hscrollbar\")\n  place(vert); place(horiz)\n\n  on(vert, \"scroll\", function () {\n    if (vert.clientHeight) { scroll(vert.scrollTop, \"vertical\") }\n  })\n  on(horiz, \"scroll\", function () {\n    if (horiz.clientWidth) { scroll(horiz.scrollLeft, \"horizontal\") }\n  })\n\n  this.checkedZeroWidth = false\n  // Need to set a minimum width to see the scrollbar on IE7 (but must not set it on IE8).\n  if (ie && ie_version < 8) { this.horiz.style.minHeight = this.vert.style.minWidth = \"18px\" }\n};\n\nNativeScrollbars.prototype.update = function (measure) {\n  var needsH = measure.scrollWidth > measure.clientWidth + 1\n  var needsV = measure.scrollHeight > measure.clientHeight + 1\n  var sWidth = measure.nativeBarWidth\n\n  if (needsV) {\n    this.vert.style.display = \"block\"\n    this.vert.style.bottom = needsH ? sWidth + \"px\" : \"0\"\n    var totalHeight = measure.viewHeight - (needsH ? sWidth : 0)\n    // A bug in IE8 can cause this value to be negative, so guard it.\n    this.vert.firstChild.style.height =\n      Math.max(0, measure.scrollHeight - measure.clientHeight + totalHeight) + \"px\"\n  } else {\n    this.vert.style.display = \"\"\n    this.vert.firstChild.style.height = \"0\"\n  }\n\n  if (needsH) {\n    this.horiz.style.display = \"block\"\n    this.horiz.style.right = needsV ? sWidth + \"px\" : \"0\"\n    this.horiz.style.left = measure.barLeft + \"px\"\n    var totalWidth = measure.viewWidth - measure.barLeft - (needsV ? sWidth : 0)\n    this.horiz.firstChild.style.width =\n      Math.max(0, measure.scrollWidth - measure.clientWidth + totalWidth) + \"px\"\n  } else {\n    this.horiz.style.display = \"\"\n    this.horiz.firstChild.style.width = \"0\"\n  }\n\n  if (!this.checkedZeroWidth && measure.clientHeight > 0) {\n    if (sWidth == 0) { this.zeroWidthHack() }\n    this.checkedZeroWidth = true\n  }\n\n  return {right: needsV ? sWidth : 0, bottom: needsH ? sWidth : 0}\n};\n\nNativeScrollbars.prototype.setScrollLeft = function (pos) {\n  if (this.horiz.scrollLeft != pos) { this.horiz.scrollLeft = pos }\n  if (this.disableHoriz) { this.enableZeroWidthBar(this.horiz, this.disableHoriz, \"horiz\") }\n};\n\nNativeScrollbars.prototype.setScrollTop = function (pos) {\n  if (this.vert.scrollTop != pos) { this.vert.scrollTop = pos }\n  if (this.disableVert) { this.enableZeroWidthBar(this.vert, this.disableVert, \"vert\") }\n};\n\nNativeScrollbars.prototype.zeroWidthHack = function () {\n  var w = mac && !mac_geMountainLion ? \"12px\" : \"18px\"\n  this.horiz.style.height = this.vert.style.width = w\n  this.horiz.style.pointerEvents = this.vert.style.pointerEvents = \"none\"\n  this.disableHoriz = new Delayed\n  this.disableVert = new Delayed\n};\n\nNativeScrollbars.prototype.enableZeroWidthBar = function (bar, delay, type) {\n  bar.style.pointerEvents = \"auto\"\n  function maybeDisable() {\n    // To find out whether the scrollbar is still visible, we\n    // check whether the element under the pixel in the bottom\n    // right corner of the scrollbar box is the scrollbar box\n    // itself (when the bar is still visible) or its filler child\n    // (when the bar is hidden). If it is still visible, we keep\n    // it enabled, if it's hidden, we disable pointer events.\n    var box = bar.getBoundingClientRect()\n    var elt = type == \"vert\" ? document.elementFromPoint(box.right - 1, (box.top + box.bottom) / 2)\n        : document.elementFromPoint((box.right + box.left) / 2, box.bottom - 1)\n    if (elt != bar) { bar.style.pointerEvents = \"none\" }\n    else { delay.set(1000, maybeDisable) }\n  }\n  delay.set(1000, maybeDisable)\n};\n\nNativeScrollbars.prototype.clear = function () {\n  var parent = this.horiz.parentNode\n  parent.removeChild(this.horiz)\n  parent.removeChild(this.vert)\n};\n\nvar NullScrollbars = function () {};\n\nNullScrollbars.prototype.update = function () { return {bottom: 0, right: 0} };\nNullScrollbars.prototype.setScrollLeft = function () {};\nNullScrollbars.prototype.setScrollTop = function () {};\nNullScrollbars.prototype.clear = function () {};\n\nfunction updateScrollbars(cm, measure) {\n  if (!measure) { measure = measureForScrollbars(cm) }\n  var startWidth = cm.display.barWidth, startHeight = cm.display.barHeight\n  updateScrollbarsInner(cm, measure)\n  for (var i = 0; i < 4 && startWidth != cm.display.barWidth || startHeight != cm.display.barHeight; i++) {\n    if (startWidth != cm.display.barWidth && cm.options.lineWrapping)\n      { updateHeightsInViewport(cm) }\n    updateScrollbarsInner(cm, measureForScrollbars(cm))\n    startWidth = cm.display.barWidth; startHeight = cm.display.barHeight\n  }\n}\n\n// Re-synchronize the fake scrollbars with the actual size of the\n// content.\nfunction updateScrollbarsInner(cm, measure) {\n  var d = cm.display\n  var sizes = d.scrollbars.update(measure)\n\n  d.sizer.style.paddingRight = (d.barWidth = sizes.right) + \"px\"\n  d.sizer.style.paddingBottom = (d.barHeight = sizes.bottom) + \"px\"\n  d.heightForcer.style.borderBottom = sizes.bottom + \"px solid transparent\"\n\n  if (sizes.right && sizes.bottom) {\n    d.scrollbarFiller.style.display = \"block\"\n    d.scrollbarFiller.style.height = sizes.bottom + \"px\"\n    d.scrollbarFiller.style.width = sizes.right + \"px\"\n  } else { d.scrollbarFiller.style.display = \"\" }\n  if (sizes.bottom && cm.options.coverGutterNextToScrollbar && cm.options.fixedGutter) {\n    d.gutterFiller.style.display = \"block\"\n    d.gutterFiller.style.height = sizes.bottom + \"px\"\n    d.gutterFiller.style.width = measure.gutterWidth + \"px\"\n  } else { d.gutterFiller.style.display = \"\" }\n}\n\nvar scrollbarModel = {\"native\": NativeScrollbars, \"null\": NullScrollbars}\n\nfunction initScrollbars(cm) {\n  if (cm.display.scrollbars) {\n    cm.display.scrollbars.clear()\n    if (cm.display.scrollbars.addClass)\n      { rmClass(cm.display.wrapper, cm.display.scrollbars.addClass) }\n  }\n\n  cm.display.scrollbars = new scrollbarModel[cm.options.scrollbarStyle](function (node) {\n    cm.display.wrapper.insertBefore(node, cm.display.scrollbarFiller)\n    // Prevent clicks in the scrollbars from killing focus\n    on(node, \"mousedown\", function () {\n      if (cm.state.focused) { setTimeout(function () { return cm.display.input.focus(); }, 0) }\n    })\n    node.setAttribute(\"cm-not-content\", \"true\")\n  }, function (pos, axis) {\n    if (axis == \"horizontal\") { setScrollLeft(cm, pos) }\n    else { updateScrollTop(cm, pos) }\n  }, cm)\n  if (cm.display.scrollbars.addClass)\n    { addClass(cm.display.wrapper, cm.display.scrollbars.addClass) }\n}\n\n// Operations are used to wrap a series of changes to the editor\n// state in such a way that each change won't have to update the\n// cursor and display (which would be awkward, slow, and\n// error-prone). Instead, display updates are batched and then all\n// combined and executed at once.\n\nvar nextOpId = 0\n// Start a new operation.\nfunction startOperation(cm) {\n  cm.curOp = {\n    cm: cm,\n    viewChanged: false,      // Flag that indicates that lines might need to be redrawn\n    startHeight: cm.doc.height, // Used to detect need to update scrollbar\n    forceUpdate: false,      // Used to force a redraw\n    updateInput: null,       // Whether to reset the input textarea\n    typing: false,           // Whether this reset should be careful to leave existing text (for compositing)\n    changeObjs: null,        // Accumulated changes, for firing change events\n    cursorActivityHandlers: null, // Set of handlers to fire cursorActivity on\n    cursorActivityCalled: 0, // Tracks which cursorActivity handlers have been called already\n    selectionChanged: false, // Whether the selection needs to be redrawn\n    updateMaxLine: false,    // Set when the widest line needs to be determined anew\n    scrollLeft: null, scrollTop: null, // Intermediate scroll position, not pushed to DOM yet\n    scrollToPos: null,       // Used to scroll to a specific position\n    focus: false,\n    id: ++nextOpId           // Unique ID\n  }\n  pushOperation(cm.curOp)\n}\n\n// Finish an operation, updating the display and signalling delayed events\nfunction endOperation(cm) {\n  var op = cm.curOp\n  finishOperation(op, function (group) {\n    for (var i = 0; i < group.ops.length; i++)\n      { group.ops[i].cm.curOp = null }\n    endOperations(group)\n  })\n}\n\n// The DOM updates done when an operation finishes are batched so\n// that the minimum number of relayouts are required.\nfunction endOperations(group) {\n  var ops = group.ops\n  for (var i = 0; i < ops.length; i++) // Read DOM\n    { endOperation_R1(ops[i]) }\n  for (var i$1 = 0; i$1 < ops.length; i$1++) // Write DOM (maybe)\n    { endOperation_W1(ops[i$1]) }\n  for (var i$2 = 0; i$2 < ops.length; i$2++) // Read DOM\n    { endOperation_R2(ops[i$2]) }\n  for (var i$3 = 0; i$3 < ops.length; i$3++) // Write DOM (maybe)\n    { endOperation_W2(ops[i$3]) }\n  for (var i$4 = 0; i$4 < ops.length; i$4++) // Read DOM\n    { endOperation_finish(ops[i$4]) }\n}\n\nfunction endOperation_R1(op) {\n  var cm = op.cm, display = cm.display\n  maybeClipScrollbars(cm)\n  if (op.updateMaxLine) { findMaxLine(cm) }\n\n  op.mustUpdate = op.viewChanged || op.forceUpdate || op.scrollTop != null ||\n    op.scrollToPos && (op.scrollToPos.from.line < display.viewFrom ||\n                       op.scrollToPos.to.line >= display.viewTo) ||\n    display.maxLineChanged && cm.options.lineWrapping\n  op.update = op.mustUpdate &&\n    new DisplayUpdate(cm, op.mustUpdate && {top: op.scrollTop, ensure: op.scrollToPos}, op.forceUpdate)\n}\n\nfunction endOperation_W1(op) {\n  op.updatedDisplay = op.mustUpdate && updateDisplayIfNeeded(op.cm, op.update)\n}\n\nfunction endOperation_R2(op) {\n  var cm = op.cm, display = cm.display\n  if (op.updatedDisplay) { updateHeightsInViewport(cm) }\n\n  op.barMeasure = measureForScrollbars(cm)\n\n  // If the max line changed since it was last measured, measure it,\n  // and ensure the document's width matches it.\n  // updateDisplay_W2 will use these properties to do the actual resizing\n  if (display.maxLineChanged && !cm.options.lineWrapping) {\n    op.adjustWidthTo = measureChar(cm, display.maxLine, display.maxLine.text.length).left + 3\n    cm.display.sizerWidth = op.adjustWidthTo\n    op.barMeasure.scrollWidth =\n      Math.max(display.scroller.clientWidth, display.sizer.offsetLeft + op.adjustWidthTo + scrollGap(cm) + cm.display.barWidth)\n    op.maxScrollLeft = Math.max(0, display.sizer.offsetLeft + op.adjustWidthTo - displayWidth(cm))\n  }\n\n  if (op.updatedDisplay || op.selectionChanged)\n    { op.preparedSelection = display.input.prepareSelection() }\n}\n\nfunction endOperation_W2(op) {\n  var cm = op.cm\n\n  if (op.adjustWidthTo != null) {\n    cm.display.sizer.style.minWidth = op.adjustWidthTo + \"px\"\n    if (op.maxScrollLeft < cm.doc.scrollLeft)\n      { setScrollLeft(cm, Math.min(cm.display.scroller.scrollLeft, op.maxScrollLeft), true) }\n    cm.display.maxLineChanged = false\n  }\n\n  var takeFocus = op.focus && op.focus == activeElt()\n  if (op.preparedSelection)\n    { cm.display.input.showSelection(op.preparedSelection, takeFocus) }\n  if (op.updatedDisplay || op.startHeight != cm.doc.height)\n    { updateScrollbars(cm, op.barMeasure) }\n  if (op.updatedDisplay)\n    { setDocumentHeight(cm, op.barMeasure) }\n\n  if (op.selectionChanged) { restartBlink(cm) }\n\n  if (cm.state.focused && op.updateInput)\n    { cm.display.input.reset(op.typing) }\n  if (takeFocus) { ensureFocus(op.cm) }\n}\n\nfunction endOperation_finish(op) {\n  var cm = op.cm, display = cm.display, doc = cm.doc\n\n  if (op.updatedDisplay) { postUpdateDisplay(cm, op.update) }\n\n  // Abort mouse wheel delta measurement, when scrolling explicitly\n  if (display.wheelStartX != null && (op.scrollTop != null || op.scrollLeft != null || op.scrollToPos))\n    { display.wheelStartX = display.wheelStartY = null }\n\n  // Propagate the scroll position to the actual DOM scroller\n  if (op.scrollTop != null) { setScrollTop(cm, op.scrollTop, op.forceScroll) }\n\n  if (op.scrollLeft != null) { setScrollLeft(cm, op.scrollLeft, true, true) }\n  // If we need to scroll a specific position into view, do so.\n  if (op.scrollToPos) {\n    var rect = scrollPosIntoView(cm, clipPos(doc, op.scrollToPos.from),\n                                 clipPos(doc, op.scrollToPos.to), op.scrollToPos.margin)\n    maybeScrollWindow(cm, rect)\n  }\n\n  // Fire events for markers that are hidden/unidden by editing or\n  // undoing\n  var hidden = op.maybeHiddenMarkers, unhidden = op.maybeUnhiddenMarkers\n  if (hidden) { for (var i = 0; i < hidden.length; ++i)\n    { if (!hidden[i].lines.length) { signal(hidden[i], \"hide\") } } }\n  if (unhidden) { for (var i$1 = 0; i$1 < unhidden.length; ++i$1)\n    { if (unhidden[i$1].lines.length) { signal(unhidden[i$1], \"unhide\") } } }\n\n  if (display.wrapper.offsetHeight)\n    { doc.scrollTop = cm.display.scroller.scrollTop }\n\n  // Fire change events, and delayed event handlers\n  if (op.changeObjs)\n    { signal(cm, \"changes\", cm, op.changeObjs) }\n  if (op.update)\n    { op.update.finish() }\n}\n\n// Run the given function in an operation\nfunction runInOp(cm, f) {\n  if (cm.curOp) { return f() }\n  startOperation(cm)\n  try { return f() }\n  finally { endOperation(cm) }\n}\n// Wraps a function in an operation. Returns the wrapped function.\nfunction operation(cm, f) {\n  return function() {\n    if (cm.curOp) { return f.apply(cm, arguments) }\n    startOperation(cm)\n    try { return f.apply(cm, arguments) }\n    finally { endOperation(cm) }\n  }\n}\n// Used to add methods to editor and doc instances, wrapping them in\n// operations.\nfunction methodOp(f) {\n  return function() {\n    if (this.curOp) { return f.apply(this, arguments) }\n    startOperation(this)\n    try { return f.apply(this, arguments) }\n    finally { endOperation(this) }\n  }\n}\nfunction docMethodOp(f) {\n  return function() {\n    var cm = this.cm\n    if (!cm || cm.curOp) { return f.apply(this, arguments) }\n    startOperation(cm)\n    try { return f.apply(this, arguments) }\n    finally { endOperation(cm) }\n  }\n}\n\n// Updates the display.view data structure for a given change to the\n// document. From and to are in pre-change coordinates. Lendiff is\n// the amount of lines added or subtracted by the change. This is\n// used for changes that span multiple lines, or change the way\n// lines are divided into visual lines. regLineChange (below)\n// registers single-line changes.\nfunction regChange(cm, from, to, lendiff) {\n  if (from == null) { from = cm.doc.first }\n  if (to == null) { to = cm.doc.first + cm.doc.size }\n  if (!lendiff) { lendiff = 0 }\n\n  var display = cm.display\n  if (lendiff && to < display.viewTo &&\n      (display.updateLineNumbers == null || display.updateLineNumbers > from))\n    { display.updateLineNumbers = from }\n\n  cm.curOp.viewChanged = true\n\n  if (from >= display.viewTo) { // Change after\n    if (sawCollapsedSpans && visualLineNo(cm.doc, from) < display.viewTo)\n      { resetView(cm) }\n  } else if (to <= display.viewFrom) { // Change before\n    if (sawCollapsedSpans && visualLineEndNo(cm.doc, to + lendiff) > display.viewFrom) {\n      resetView(cm)\n    } else {\n      display.viewFrom += lendiff\n      display.viewTo += lendiff\n    }\n  } else if (from <= display.viewFrom && to >= display.viewTo) { // Full overlap\n    resetView(cm)\n  } else if (from <= display.viewFrom) { // Top overlap\n    var cut = viewCuttingPoint(cm, to, to + lendiff, 1)\n    if (cut) {\n      display.view = display.view.slice(cut.index)\n      display.viewFrom = cut.lineN\n      display.viewTo += lendiff\n    } else {\n      resetView(cm)\n    }\n  } else if (to >= display.viewTo) { // Bottom overlap\n    var cut$1 = viewCuttingPoint(cm, from, from, -1)\n    if (cut$1) {\n      display.view = display.view.slice(0, cut$1.index)\n      display.viewTo = cut$1.lineN\n    } else {\n      resetView(cm)\n    }\n  } else { // Gap in the middle\n    var cutTop = viewCuttingPoint(cm, from, from, -1)\n    var cutBot = viewCuttingPoint(cm, to, to + lendiff, 1)\n    if (cutTop && cutBot) {\n      display.view = display.view.slice(0, cutTop.index)\n        .concat(buildViewArray(cm, cutTop.lineN, cutBot.lineN))\n        .concat(display.view.slice(cutBot.index))\n      display.viewTo += lendiff\n    } else {\n      resetView(cm)\n    }\n  }\n\n  var ext = display.externalMeasured\n  if (ext) {\n    if (to < ext.lineN)\n      { ext.lineN += lendiff }\n    else if (from < ext.lineN + ext.size)\n      { display.externalMeasured = null }\n  }\n}\n\n// Register a change to a single line. Type must be one of \"text\",\n// \"gutter\", \"class\", \"widget\"\nfunction regLineChange(cm, line, type) {\n  cm.curOp.viewChanged = true\n  var display = cm.display, ext = cm.display.externalMeasured\n  if (ext && line >= ext.lineN && line < ext.lineN + ext.size)\n    { display.externalMeasured = null }\n\n  if (line < display.viewFrom || line >= display.viewTo) { return }\n  var lineView = display.view[findViewIndex(cm, line)]\n  if (lineView.node == null) { return }\n  var arr = lineView.changes || (lineView.changes = [])\n  if (indexOf(arr, type) == -1) { arr.push(type) }\n}\n\n// Clear the view.\nfunction resetView(cm) {\n  cm.display.viewFrom = cm.display.viewTo = cm.doc.first\n  cm.display.view = []\n  cm.display.viewOffset = 0\n}\n\nfunction viewCuttingPoint(cm, oldN, newN, dir) {\n  var index = findViewIndex(cm, oldN), diff, view = cm.display.view\n  if (!sawCollapsedSpans || newN == cm.doc.first + cm.doc.size)\n    { return {index: index, lineN: newN} }\n  var n = cm.display.viewFrom\n  for (var i = 0; i < index; i++)\n    { n += view[i].size }\n  if (n != oldN) {\n    if (dir > 0) {\n      if (index == view.length - 1) { return null }\n      diff = (n + view[index].size) - oldN\n      index++\n    } else {\n      diff = n - oldN\n    }\n    oldN += diff; newN += diff\n  }\n  while (visualLineNo(cm.doc, newN) != newN) {\n    if (index == (dir < 0 ? 0 : view.length - 1)) { return null }\n    newN += dir * view[index - (dir < 0 ? 1 : 0)].size\n    index += dir\n  }\n  return {index: index, lineN: newN}\n}\n\n// Force the view to cover a given range, adding empty view element\n// or clipping off existing ones as needed.\nfunction adjustView(cm, from, to) {\n  var display = cm.display, view = display.view\n  if (view.length == 0 || from >= display.viewTo || to <= display.viewFrom) {\n    display.view = buildViewArray(cm, from, to)\n    display.viewFrom = from\n  } else {\n    if (display.viewFrom > from)\n      { display.view = buildViewArray(cm, from, display.viewFrom).concat(display.view) }\n    else if (display.viewFrom < from)\n      { display.view = display.view.slice(findViewIndex(cm, from)) }\n    display.viewFrom = from\n    if (display.viewTo < to)\n      { display.view = display.view.concat(buildViewArray(cm, display.viewTo, to)) }\n    else if (display.viewTo > to)\n      { display.view = display.view.slice(0, findViewIndex(cm, to)) }\n  }\n  display.viewTo = to\n}\n\n// Count the number of lines in the view whose DOM representation is\n// out of date (or nonexistent).\nfunction countDirtyView(cm) {\n  var view = cm.display.view, dirty = 0\n  for (var i = 0; i < view.length; i++) {\n    var lineView = view[i]\n    if (!lineView.hidden && (!lineView.node || lineView.changes)) { ++dirty }\n  }\n  return dirty\n}\n\n// HIGHLIGHT WORKER\n\nfunction startWorker(cm, time) {\n  if (cm.doc.highlightFrontier < cm.display.viewTo)\n    { cm.state.highlight.set(time, bind(highlightWorker, cm)) }\n}\n\nfunction highlightWorker(cm) {\n  var doc = cm.doc\n  if (doc.highlightFrontier >= cm.display.viewTo) { return }\n  var end = +new Date + cm.options.workTime\n  var context = getContextBefore(cm, doc.highlightFrontier)\n  var changedLines = []\n\n  doc.iter(context.line, Math.min(doc.first + doc.size, cm.display.viewTo + 500), function (line) {\n    if (context.line >= cm.display.viewFrom) { // Visible\n      var oldStyles = line.styles\n      var resetState = line.text.length > cm.options.maxHighlightLength ? copyState(doc.mode, context.state) : null\n      var highlighted = highlightLine(cm, line, context, true)\n      if (resetState) { context.state = resetState }\n      line.styles = highlighted.styles\n      var oldCls = line.styleClasses, newCls = highlighted.classes\n      if (newCls) { line.styleClasses = newCls }\n      else if (oldCls) { line.styleClasses = null }\n      var ischange = !oldStyles || oldStyles.length != line.styles.length ||\n        oldCls != newCls && (!oldCls || !newCls || oldCls.bgClass != newCls.bgClass || oldCls.textClass != newCls.textClass)\n      for (var i = 0; !ischange && i < oldStyles.length; ++i) { ischange = oldStyles[i] != line.styles[i] }\n      if (ischange) { changedLines.push(context.line) }\n      line.stateAfter = context.save()\n      context.nextLine()\n    } else {\n      if (line.text.length <= cm.options.maxHighlightLength)\n        { processLine(cm, line.text, context) }\n      line.stateAfter = context.line % 5 == 0 ? context.save() : null\n      context.nextLine()\n    }\n    if (+new Date > end) {\n      startWorker(cm, cm.options.workDelay)\n      return true\n    }\n  })\n  doc.highlightFrontier = context.line\n  doc.modeFrontier = Math.max(doc.modeFrontier, context.line)\n  if (changedLines.length) { runInOp(cm, function () {\n    for (var i = 0; i < changedLines.length; i++)\n      { regLineChange(cm, changedLines[i], \"text\") }\n  }) }\n}\n\n// DISPLAY DRAWING\n\nvar DisplayUpdate = function(cm, viewport, force) {\n  var display = cm.display\n\n  this.viewport = viewport\n  // Store some values that we'll need later (but don't want to force a relayout for)\n  this.visible = visibleLines(display, cm.doc, viewport)\n  this.editorIsHidden = !display.wrapper.offsetWidth\n  this.wrapperHeight = display.wrapper.clientHeight\n  this.wrapperWidth = display.wrapper.clientWidth\n  this.oldDisplayWidth = displayWidth(cm)\n  this.force = force\n  this.dims = getDimensions(cm)\n  this.events = []\n};\n\nDisplayUpdate.prototype.signal = function (emitter, type) {\n  if (hasHandler(emitter, type))\n    { this.events.push(arguments) }\n};\nDisplayUpdate.prototype.finish = function () {\n    var this$1 = this;\n\n  for (var i = 0; i < this.events.length; i++)\n    { signal.apply(null, this$1.events[i]) }\n};\n\nfunction maybeClipScrollbars(cm) {\n  var display = cm.display\n  if (!display.scrollbarsClipped && display.scroller.offsetWidth) {\n    display.nativeBarWidth = display.scroller.offsetWidth - display.scroller.clientWidth\n    display.heightForcer.style.height = scrollGap(cm) + \"px\"\n    display.sizer.style.marginBottom = -display.nativeBarWidth + \"px\"\n    display.sizer.style.borderRightWidth = scrollGap(cm) + \"px\"\n    display.scrollbarsClipped = true\n  }\n}\n\nfunction selectionSnapshot(cm) {\n  if (cm.hasFocus()) { return null }\n  var active = activeElt()\n  if (!active || !contains(cm.display.lineDiv, active)) { return null }\n  var result = {activeElt: active}\n  if (window.getSelection) {\n    var sel = window.getSelection()\n    if (sel.anchorNode && sel.extend && contains(cm.display.lineDiv, sel.anchorNode)) {\n      result.anchorNode = sel.anchorNode\n      result.anchorOffset = sel.anchorOffset\n      result.focusNode = sel.focusNode\n      result.focusOffset = sel.focusOffset\n    }\n  }\n  return result\n}\n\nfunction restoreSelection(snapshot) {\n  if (!snapshot || !snapshot.activeElt || snapshot.activeElt == activeElt()) { return }\n  snapshot.activeElt.focus()\n  if (snapshot.anchorNode && contains(document.body, snapshot.anchorNode) && contains(document.body, snapshot.focusNode)) {\n    var sel = window.getSelection(), range = document.createRange()\n    range.setEnd(snapshot.anchorNode, snapshot.anchorOffset)\n    range.collapse(false)\n    sel.removeAllRanges()\n    sel.addRange(range)\n    sel.extend(snapshot.focusNode, snapshot.focusOffset)\n  }\n}\n\n// Does the actual updating of the line display. Bails out\n// (returning false) when there is nothing to be done and forced is\n// false.\nfunction updateDisplayIfNeeded(cm, update) {\n  var display = cm.display, doc = cm.doc\n\n  if (update.editorIsHidden) {\n    resetView(cm)\n    return false\n  }\n\n  // Bail out if the visible area is already rendered and nothing changed.\n  if (!update.force &&\n      update.visible.from >= display.viewFrom && update.visible.to <= display.viewTo &&\n      (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo) &&\n      display.renderedView == display.view && countDirtyView(cm) == 0)\n    { return false }\n\n  if (maybeUpdateLineNumberWidth(cm)) {\n    resetView(cm)\n    update.dims = getDimensions(cm)\n  }\n\n  // Compute a suitable new viewport (from & to)\n  var end = doc.first + doc.size\n  var from = Math.max(update.visible.from - cm.options.viewportMargin, doc.first)\n  var to = Math.min(end, update.visible.to + cm.options.viewportMargin)\n  if (display.viewFrom < from && from - display.viewFrom < 20) { from = Math.max(doc.first, display.viewFrom) }\n  if (display.viewTo > to && display.viewTo - to < 20) { to = Math.min(end, display.viewTo) }\n  if (sawCollapsedSpans) {\n    from = visualLineNo(cm.doc, from)\n    to = visualLineEndNo(cm.doc, to)\n  }\n\n  var different = from != display.viewFrom || to != display.viewTo ||\n    display.lastWrapHeight != update.wrapperHeight || display.lastWrapWidth != update.wrapperWidth\n  adjustView(cm, from, to)\n\n  display.viewOffset = heightAtLine(getLine(cm.doc, display.viewFrom))\n  // Position the mover div to align with the current scroll position\n  cm.display.mover.style.top = display.viewOffset + \"px\"\n\n  var toUpdate = countDirtyView(cm)\n  if (!different && toUpdate == 0 && !update.force && display.renderedView == display.view &&\n      (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo))\n    { return false }\n\n  // For big changes, we hide the enclosing element during the\n  // update, since that speeds up the operations on most browsers.\n  var selSnapshot = selectionSnapshot(cm)\n  if (toUpdate > 4) { display.lineDiv.style.display = \"none\" }\n  patchDisplay(cm, display.updateLineNumbers, update.dims)\n  if (toUpdate > 4) { display.lineDiv.style.display = \"\" }\n  display.renderedView = display.view\n  // There might have been a widget with a focused element that got\n  // hidden or updated, if so re-focus it.\n  restoreSelection(selSnapshot)\n\n  // Prevent selection and cursors from interfering with the scroll\n  // width and height.\n  removeChildren(display.cursorDiv)\n  removeChildren(display.selectionDiv)\n  display.gutters.style.height = display.sizer.style.minHeight = 0\n\n  if (different) {\n    display.lastWrapHeight = update.wrapperHeight\n    display.lastWrapWidth = update.wrapperWidth\n    startWorker(cm, 400)\n  }\n\n  display.updateLineNumbers = null\n\n  return true\n}\n\nfunction postUpdateDisplay(cm, update) {\n  var viewport = update.viewport\n\n  for (var first = true;; first = false) {\n    if (!first || !cm.options.lineWrapping || update.oldDisplayWidth == displayWidth(cm)) {\n      // Clip forced viewport to actual scrollable area.\n      if (viewport && viewport.top != null)\n        { viewport = {top: Math.min(cm.doc.height + paddingVert(cm.display) - displayHeight(cm), viewport.top)} }\n      // Updated line heights might result in the drawn area not\n      // actually covering the viewport. Keep looping until it does.\n      update.visible = visibleLines(cm.display, cm.doc, viewport)\n      if (update.visible.from >= cm.display.viewFrom && update.visible.to <= cm.display.viewTo)\n        { break }\n    }\n    if (!updateDisplayIfNeeded(cm, update)) { break }\n    updateHeightsInViewport(cm)\n    var barMeasure = measureForScrollbars(cm)\n    updateSelection(cm)\n    updateScrollbars(cm, barMeasure)\n    setDocumentHeight(cm, barMeasure)\n    update.force = false\n  }\n\n  update.signal(cm, \"update\", cm)\n  if (cm.display.viewFrom != cm.display.reportedViewFrom || cm.display.viewTo != cm.display.reportedViewTo) {\n    update.signal(cm, \"viewportChange\", cm, cm.display.viewFrom, cm.display.viewTo)\n    cm.display.reportedViewFrom = cm.display.viewFrom; cm.display.reportedViewTo = cm.display.viewTo\n  }\n}\n\nfunction updateDisplaySimple(cm, viewport) {\n  var update = new DisplayUpdate(cm, viewport)\n  if (updateDisplayIfNeeded(cm, update)) {\n    updateHeightsInViewport(cm)\n    postUpdateDisplay(cm, update)\n    var barMeasure = measureForScrollbars(cm)\n    updateSelection(cm)\n    updateScrollbars(cm, barMeasure)\n    setDocumentHeight(cm, barMeasure)\n    update.finish()\n  }\n}\n\n// Sync the actual display DOM structure with display.view, removing\n// nodes for lines that are no longer in view, and creating the ones\n// that are not there yet, and updating the ones that are out of\n// date.\nfunction patchDisplay(cm, updateNumbersFrom, dims) {\n  var display = cm.display, lineNumbers = cm.options.lineNumbers\n  var container = display.lineDiv, cur = container.firstChild\n\n  function rm(node) {\n    var next = node.nextSibling\n    // Works around a throw-scroll bug in OS X Webkit\n    if (webkit && mac && cm.display.currentWheelTarget == node)\n      { node.style.display = \"none\" }\n    else\n      { node.parentNode.removeChild(node) }\n    return next\n  }\n\n  var view = display.view, lineN = display.viewFrom\n  // Loop over the elements in the view, syncing cur (the DOM nodes\n  // in display.lineDiv) with the view as we go.\n  for (var i = 0; i < view.length; i++) {\n    var lineView = view[i]\n    if (lineView.hidden) {\n    } else if (!lineView.node || lineView.node.parentNode != container) { // Not drawn yet\n      var node = buildLineElement(cm, lineView, lineN, dims)\n      container.insertBefore(node, cur)\n    } else { // Already drawn\n      while (cur != lineView.node) { cur = rm(cur) }\n      var updateNumber = lineNumbers && updateNumbersFrom != null &&\n        updateNumbersFrom <= lineN && lineView.lineNumber\n      if (lineView.changes) {\n        if (indexOf(lineView.changes, \"gutter\") > -1) { updateNumber = false }\n        updateLineForChanges(cm, lineView, lineN, dims)\n      }\n      if (updateNumber) {\n        removeChildren(lineView.lineNumber)\n        lineView.lineNumber.appendChild(document.createTextNode(lineNumberFor(cm.options, lineN)))\n      }\n      cur = lineView.node.nextSibling\n    }\n    lineN += lineView.size\n  }\n  while (cur) { cur = rm(cur) }\n}\n\nfunction updateGutterSpace(cm) {\n  var width = cm.display.gutters.offsetWidth\n  cm.display.sizer.style.marginLeft = width + \"px\"\n}\n\nfunction setDocumentHeight(cm, measure) {\n  cm.display.sizer.style.minHeight = measure.docHeight + \"px\"\n  cm.display.heightForcer.style.top = measure.docHeight + \"px\"\n  cm.display.gutters.style.height = (measure.docHeight + cm.display.barHeight + scrollGap(cm)) + \"px\"\n}\n\n// Rebuild the gutter elements, ensure the margin to the left of the\n// code matches their width.\nfunction updateGutters(cm) {\n  var gutters = cm.display.gutters, specs = cm.options.gutters\n  removeChildren(gutters)\n  var i = 0\n  for (; i < specs.length; ++i) {\n    var gutterClass = specs[i]\n    var gElt = gutters.appendChild(elt(\"div\", null, \"CodeMirror-gutter \" + gutterClass))\n    if (gutterClass == \"CodeMirror-linenumbers\") {\n      cm.display.lineGutter = gElt\n      gElt.style.width = (cm.display.lineNumWidth || 1) + \"px\"\n    }\n  }\n  gutters.style.display = i ? \"\" : \"none\"\n  updateGutterSpace(cm)\n}\n\n// Make sure the gutters options contains the element\n// \"CodeMirror-linenumbers\" when the lineNumbers option is true.\nfunction setGuttersForLineNumbers(options) {\n  var found = indexOf(options.gutters, \"CodeMirror-linenumbers\")\n  if (found == -1 && options.lineNumbers) {\n    options.gutters = options.gutters.concat([\"CodeMirror-linenumbers\"])\n  } else if (found > -1 && !options.lineNumbers) {\n    options.gutters = options.gutters.slice(0)\n    options.gutters.splice(found, 1)\n  }\n}\n\nvar wheelSamples = 0;\nvar wheelPixelsPerUnit = null;\n// Fill in a browser-detected starting value on browsers where we\n// know one. These don't have to be accurate -- the result of them\n// being wrong would just be a slight flicker on the first wheel\n// scroll (if it is large enough).\nif (ie) { wheelPixelsPerUnit = -.53 }\nelse if (gecko) { wheelPixelsPerUnit = 15 }\nelse if (chrome) { wheelPixelsPerUnit = -.7 }\nelse if (safari) { wheelPixelsPerUnit = -1/3 }\n\nfunction wheelEventDelta(e) {\n  var dx = e.wheelDeltaX, dy = e.wheelDeltaY\n  if (dx == null && e.detail && e.axis == e.HORIZONTAL_AXIS) { dx = e.detail }\n  if (dy == null && e.detail && e.axis == e.VERTICAL_AXIS) { dy = e.detail }\n  else if (dy == null) { dy = e.wheelDelta }\n  return {x: dx, y: dy}\n}\nfunction wheelEventPixels(e) {\n  var delta = wheelEventDelta(e)\n  delta.x *= wheelPixelsPerUnit\n  delta.y *= wheelPixelsPerUnit\n  return delta\n}\n\nfunction onScrollWheel(cm, e) {\n  var delta = wheelEventDelta(e), dx = delta.x, dy = delta.y\n\n  var display = cm.display, scroll = display.scroller\n  // Quit if there's nothing to scroll here\n  var canScrollX = scroll.scrollWidth > scroll.clientWidth\n  var canScrollY = scroll.scrollHeight > scroll.clientHeight\n  if (!(dx && canScrollX || dy && canScrollY)) { return }\n\n  // Webkit browsers on OS X abort momentum scrolls when the target\n  // of the scroll event is removed from the scrollable element.\n  // This hack (see related code in patchDisplay) makes sure the\n  // element is kept around.\n  if (dy && mac && webkit) {\n    outer: for (var cur = e.target, view = display.view; cur != scroll; cur = cur.parentNode) {\n      for (var i = 0; i < view.length; i++) {\n        if (view[i].node == cur) {\n          cm.display.currentWheelTarget = cur\n          break outer\n        }\n      }\n    }\n  }\n\n  // On some browsers, horizontal scrolling will cause redraws to\n  // happen before the gutter has been realigned, causing it to\n  // wriggle around in a most unseemly way. When we have an\n  // estimated pixels/delta value, we just handle horizontal\n  // scrolling entirely here. It'll be slightly off from native, but\n  // better than glitching out.\n  if (dx && !gecko && !presto && wheelPixelsPerUnit != null) {\n    if (dy && canScrollY)\n      { updateScrollTop(cm, Math.max(0, scroll.scrollTop + dy * wheelPixelsPerUnit)) }\n    setScrollLeft(cm, Math.max(0, scroll.scrollLeft + dx * wheelPixelsPerUnit))\n    // Only prevent default scrolling if vertical scrolling is\n    // actually possible. Otherwise, it causes vertical scroll\n    // jitter on OSX trackpads when deltaX is small and deltaY\n    // is large (issue #3579)\n    if (!dy || (dy && canScrollY))\n      { e_preventDefault(e) }\n    display.wheelStartX = null // Abort measurement, if in progress\n    return\n  }\n\n  // 'Project' the visible viewport to cover the area that is being\n  // scrolled into view (if we know enough to estimate it).\n  if (dy && wheelPixelsPerUnit != null) {\n    var pixels = dy * wheelPixelsPerUnit\n    var top = cm.doc.scrollTop, bot = top + display.wrapper.clientHeight\n    if (pixels < 0) { top = Math.max(0, top + pixels - 50) }\n    else { bot = Math.min(cm.doc.height, bot + pixels + 50) }\n    updateDisplaySimple(cm, {top: top, bottom: bot})\n  }\n\n  if (wheelSamples < 20) {\n    if (display.wheelStartX == null) {\n      display.wheelStartX = scroll.scrollLeft; display.wheelStartY = scroll.scrollTop\n      display.wheelDX = dx; display.wheelDY = dy\n      setTimeout(function () {\n        if (display.wheelStartX == null) { return }\n        var movedX = scroll.scrollLeft - display.wheelStartX\n        var movedY = scroll.scrollTop - display.wheelStartY\n        var sample = (movedY && display.wheelDY && movedY / display.wheelDY) ||\n          (movedX && display.wheelDX && movedX / display.wheelDX)\n        display.wheelStartX = display.wheelStartY = null\n        if (!sample) { return }\n        wheelPixelsPerUnit = (wheelPixelsPerUnit * wheelSamples + sample) / (wheelSamples + 1)\n        ++wheelSamples\n      }, 200)\n    } else {\n      display.wheelDX += dx; display.wheelDY += dy\n    }\n  }\n}\n\n// Selection objects are immutable. A new one is created every time\n// the selection changes. A selection is one or more non-overlapping\n// (and non-touching) ranges, sorted, and an integer that indicates\n// which one is the primary selection (the one that's scrolled into\n// view, that getCursor returns, etc).\nvar Selection = function(ranges, primIndex) {\n  this.ranges = ranges\n  this.primIndex = primIndex\n};\n\nSelection.prototype.primary = function () { return this.ranges[this.primIndex] };\n\nSelection.prototype.equals = function (other) {\n    var this$1 = this;\n\n  if (other == this) { return true }\n  if (other.primIndex != this.primIndex || other.ranges.length != this.ranges.length) { return false }\n  for (var i = 0; i < this.ranges.length; i++) {\n    var here = this$1.ranges[i], there = other.ranges[i]\n    if (!equalCursorPos(here.anchor, there.anchor) || !equalCursorPos(here.head, there.head)) { return false }\n  }\n  return true\n};\n\nSelection.prototype.deepCopy = function () {\n    var this$1 = this;\n\n  var out = []\n  for (var i = 0; i < this.ranges.length; i++)\n    { out[i] = new Range(copyPos(this$1.ranges[i].anchor), copyPos(this$1.ranges[i].head)) }\n  return new Selection(out, this.primIndex)\n};\n\nSelection.prototype.somethingSelected = function () {\n    var this$1 = this;\n\n  for (var i = 0; i < this.ranges.length; i++)\n    { if (!this$1.ranges[i].empty()) { return true } }\n  return false\n};\n\nSelection.prototype.contains = function (pos, end) {\n    var this$1 = this;\n\n  if (!end) { end = pos }\n  for (var i = 0; i < this.ranges.length; i++) {\n    var range = this$1.ranges[i]\n    if (cmp(end, range.from()) >= 0 && cmp(pos, range.to()) <= 0)\n      { return i }\n  }\n  return -1\n};\n\nvar Range = function(anchor, head) {\n  this.anchor = anchor; this.head = head\n};\n\nRange.prototype.from = function () { return minPos(this.anchor, this.head) };\nRange.prototype.to = function () { return maxPos(this.anchor, this.head) };\nRange.prototype.empty = function () { return this.head.line == this.anchor.line && this.head.ch == this.anchor.ch };\n\n// Take an unsorted, potentially overlapping set of ranges, and\n// build a selection out of it. 'Consumes' ranges array (modifying\n// it).\nfunction normalizeSelection(ranges, primIndex) {\n  var prim = ranges[primIndex]\n  ranges.sort(function (a, b) { return cmp(a.from(), b.from()); })\n  primIndex = indexOf(ranges, prim)\n  for (var i = 1; i < ranges.length; i++) {\n    var cur = ranges[i], prev = ranges[i - 1]\n    if (cmp(prev.to(), cur.from()) >= 0) {\n      var from = minPos(prev.from(), cur.from()), to = maxPos(prev.to(), cur.to())\n      var inv = prev.empty() ? cur.from() == cur.head : prev.from() == prev.head\n      if (i <= primIndex) { --primIndex }\n      ranges.splice(--i, 2, new Range(inv ? to : from, inv ? from : to))\n    }\n  }\n  return new Selection(ranges, primIndex)\n}\n\nfunction simpleSelection(anchor, head) {\n  return new Selection([new Range(anchor, head || anchor)], 0)\n}\n\n// Compute the position of the end of a change (its 'to' property\n// refers to the pre-change end).\nfunction changeEnd(change) {\n  if (!change.text) { return change.to }\n  return Pos(change.from.line + change.text.length - 1,\n             lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0))\n}\n\n// Adjust a position to refer to the post-change position of the\n// same text, or the end of the change if the change covers it.\nfunction adjustForChange(pos, change) {\n  if (cmp(pos, change.from) < 0) { return pos }\n  if (cmp(pos, change.to) <= 0) { return changeEnd(change) }\n\n  var line = pos.line + change.text.length - (change.to.line - change.from.line) - 1, ch = pos.ch\n  if (pos.line == change.to.line) { ch += changeEnd(change).ch - change.to.ch }\n  return Pos(line, ch)\n}\n\nfunction computeSelAfterChange(doc, change) {\n  var out = []\n  for (var i = 0; i < doc.sel.ranges.length; i++) {\n    var range = doc.sel.ranges[i]\n    out.push(new Range(adjustForChange(range.anchor, change),\n                       adjustForChange(range.head, change)))\n  }\n  return normalizeSelection(out, doc.sel.primIndex)\n}\n\nfunction offsetPos(pos, old, nw) {\n  if (pos.line == old.line)\n    { return Pos(nw.line, pos.ch - old.ch + nw.ch) }\n  else\n    { return Pos(nw.line + (pos.line - old.line), pos.ch) }\n}\n\n// Used by replaceSelections to allow moving the selection to the\n// start or around the replaced test. Hint may be \"start\" or \"around\".\nfunction computeReplacedSel(doc, changes, hint) {\n  var out = []\n  var oldPrev = Pos(doc.first, 0), newPrev = oldPrev\n  for (var i = 0; i < changes.length; i++) {\n    var change = changes[i]\n    var from = offsetPos(change.from, oldPrev, newPrev)\n    var to = offsetPos(changeEnd(change), oldPrev, newPrev)\n    oldPrev = change.to\n    newPrev = to\n    if (hint == \"around\") {\n      var range = doc.sel.ranges[i], inv = cmp(range.head, range.anchor) < 0\n      out[i] = new Range(inv ? to : from, inv ? from : to)\n    } else {\n      out[i] = new Range(from, from)\n    }\n  }\n  return new Selection(out, doc.sel.primIndex)\n}\n\n// Used to get the editor into a consistent state again when options change.\n\nfunction loadMode(cm) {\n  cm.doc.mode = getMode(cm.options, cm.doc.modeOption)\n  resetModeState(cm)\n}\n\nfunction resetModeState(cm) {\n  cm.doc.iter(function (line) {\n    if (line.stateAfter) { line.stateAfter = null }\n    if (line.styles) { line.styles = null }\n  })\n  cm.doc.modeFrontier = cm.doc.highlightFrontier = cm.doc.first\n  startWorker(cm, 100)\n  cm.state.modeGen++\n  if (cm.curOp) { regChange(cm) }\n}\n\n// DOCUMENT DATA STRUCTURE\n\n// By default, updates that start and end at the beginning of a line\n// are treated specially, in order to make the association of line\n// widgets and marker elements with the text behave more intuitive.\nfunction isWholeLineUpdate(doc, change) {\n  return change.from.ch == 0 && change.to.ch == 0 && lst(change.text) == \"\" &&\n    (!doc.cm || doc.cm.options.wholeLineUpdateBefore)\n}\n\n// Perform a change on the document data structure.\nfunction updateDoc(doc, change, markedSpans, estimateHeight) {\n  function spansFor(n) {return markedSpans ? markedSpans[n] : null}\n  function update(line, text, spans) {\n    updateLine(line, text, spans, estimateHeight)\n    signalLater(line, \"change\", line, change)\n  }\n  function linesFor(start, end) {\n    var result = []\n    for (var i = start; i < end; ++i)\n      { result.push(new Line(text[i], spansFor(i), estimateHeight)) }\n    return result\n  }\n\n  var from = change.from, to = change.to, text = change.text\n  var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line)\n  var lastText = lst(text), lastSpans = spansFor(text.length - 1), nlines = to.line - from.line\n\n  // Adjust the line structure\n  if (change.full) {\n    doc.insert(0, linesFor(0, text.length))\n    doc.remove(text.length, doc.size - text.length)\n  } else if (isWholeLineUpdate(doc, change)) {\n    // This is a whole-line replace. Treated specially to make\n    // sure line objects move the way they are supposed to.\n    var added = linesFor(0, text.length - 1)\n    update(lastLine, lastLine.text, lastSpans)\n    if (nlines) { doc.remove(from.line, nlines) }\n    if (added.length) { doc.insert(from.line, added) }\n  } else if (firstLine == lastLine) {\n    if (text.length == 1) {\n      update(firstLine, firstLine.text.slice(0, from.ch) + lastText + firstLine.text.slice(to.ch), lastSpans)\n    } else {\n      var added$1 = linesFor(1, text.length - 1)\n      added$1.push(new Line(lastText + firstLine.text.slice(to.ch), lastSpans, estimateHeight))\n      update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0))\n      doc.insert(from.line + 1, added$1)\n    }\n  } else if (text.length == 1) {\n    update(firstLine, firstLine.text.slice(0, from.ch) + text[0] + lastLine.text.slice(to.ch), spansFor(0))\n    doc.remove(from.line + 1, nlines)\n  } else {\n    update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0))\n    update(lastLine, lastText + lastLine.text.slice(to.ch), lastSpans)\n    var added$2 = linesFor(1, text.length - 1)\n    if (nlines > 1) { doc.remove(from.line + 1, nlines - 1) }\n    doc.insert(from.line + 1, added$2)\n  }\n\n  signalLater(doc, \"change\", doc, change)\n}\n\n// Call f for all linked documents.\nfunction linkedDocs(doc, f, sharedHistOnly) {\n  function propagate(doc, skip, sharedHist) {\n    if (doc.linked) { for (var i = 0; i < doc.linked.length; ++i) {\n      var rel = doc.linked[i]\n      if (rel.doc == skip) { continue }\n      var shared = sharedHist && rel.sharedHist\n      if (sharedHistOnly && !shared) { continue }\n      f(rel.doc, shared)\n      propagate(rel.doc, doc, shared)\n    } }\n  }\n  propagate(doc, null, true)\n}\n\n// Attach a document to an editor.\nfunction attachDoc(cm, doc) {\n  if (doc.cm) { throw new Error(\"This document is already in use.\") }\n  cm.doc = doc\n  doc.cm = cm\n  estimateLineHeights(cm)\n  loadMode(cm)\n  setDirectionClass(cm)\n  if (!cm.options.lineWrapping) { findMaxLine(cm) }\n  cm.options.mode = doc.modeOption\n  regChange(cm)\n}\n\nfunction setDirectionClass(cm) {\n  ;(cm.doc.direction == \"rtl\" ? addClass : rmClass)(cm.display.lineDiv, \"CodeMirror-rtl\")\n}\n\nfunction directionChanged(cm) {\n  runInOp(cm, function () {\n    setDirectionClass(cm)\n    regChange(cm)\n  })\n}\n\nfunction History(startGen) {\n  // Arrays of change events and selections. Doing something adds an\n  // event to done and clears undo. Undoing moves events from done\n  // to undone, redoing moves them in the other direction.\n  this.done = []; this.undone = []\n  this.undoDepth = Infinity\n  // Used to track when changes can be merged into a single undo\n  // event\n  this.lastModTime = this.lastSelTime = 0\n  this.lastOp = this.lastSelOp = null\n  this.lastOrigin = this.lastSelOrigin = null\n  // Used by the isClean() method\n  this.generation = this.maxGeneration = startGen || 1\n}\n\n// Create a history change event from an updateDoc-style change\n// object.\nfunction historyChangeFromChange(doc, change) {\n  var histChange = {from: copyPos(change.from), to: changeEnd(change), text: getBetween(doc, change.from, change.to)}\n  attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1)\n  linkedDocs(doc, function (doc) { return attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1); }, true)\n  return histChange\n}\n\n// Pop all selection events off the end of a history array. Stop at\n// a change event.\nfunction clearSelectionEvents(array) {\n  while (array.length) {\n    var last = lst(array)\n    if (last.ranges) { array.pop() }\n    else { break }\n  }\n}\n\n// Find the top change event in the history. Pop off selection\n// events that are in the way.\nfunction lastChangeEvent(hist, force) {\n  if (force) {\n    clearSelectionEvents(hist.done)\n    return lst(hist.done)\n  } else if (hist.done.length && !lst(hist.done).ranges) {\n    return lst(hist.done)\n  } else if (hist.done.length > 1 && !hist.done[hist.done.length - 2].ranges) {\n    hist.done.pop()\n    return lst(hist.done)\n  }\n}\n\n// Register a change in the history. Merges changes that are within\n// a single operation, or are close together with an origin that\n// allows merging (starting with \"+\") into a single event.\nfunction addChangeToHistory(doc, change, selAfter, opId) {\n  var hist = doc.history\n  hist.undone.length = 0\n  var time = +new Date, cur\n  var last\n\n  if ((hist.lastOp == opId ||\n       hist.lastOrigin == change.origin && change.origin &&\n       ((change.origin.charAt(0) == \"+\" && doc.cm && hist.lastModTime > time - doc.cm.options.historyEventDelay) ||\n        change.origin.charAt(0) == \"*\")) &&\n      (cur = lastChangeEvent(hist, hist.lastOp == opId))) {\n    // Merge this change into the last event\n    last = lst(cur.changes)\n    if (cmp(change.from, change.to) == 0 && cmp(change.from, last.to) == 0) {\n      // Optimized case for simple insertion -- don't want to add\n      // new changesets for every character typed\n      last.to = changeEnd(change)\n    } else {\n      // Add new sub-event\n      cur.changes.push(historyChangeFromChange(doc, change))\n    }\n  } else {\n    // Can not be merged, start a new event.\n    var before = lst(hist.done)\n    if (!before || !before.ranges)\n      { pushSelectionToHistory(doc.sel, hist.done) }\n    cur = {changes: [historyChangeFromChange(doc, change)],\n           generation: hist.generation}\n    hist.done.push(cur)\n    while (hist.done.length > hist.undoDepth) {\n      hist.done.shift()\n      if (!hist.done[0].ranges) { hist.done.shift() }\n    }\n  }\n  hist.done.push(selAfter)\n  hist.generation = ++hist.maxGeneration\n  hist.lastModTime = hist.lastSelTime = time\n  hist.lastOp = hist.lastSelOp = opId\n  hist.lastOrigin = hist.lastSelOrigin = change.origin\n\n  if (!last) { signal(doc, \"historyAdded\") }\n}\n\nfunction selectionEventCanBeMerged(doc, origin, prev, sel) {\n  var ch = origin.charAt(0)\n  return ch == \"*\" ||\n    ch == \"+\" &&\n    prev.ranges.length == sel.ranges.length &&\n    prev.somethingSelected() == sel.somethingSelected() &&\n    new Date - doc.history.lastSelTime <= (doc.cm ? doc.cm.options.historyEventDelay : 500)\n}\n\n// Called whenever the selection changes, sets the new selection as\n// the pending selection in the history, and pushes the old pending\n// selection into the 'done' array when it was significantly\n// different (in number of selected ranges, emptiness, or time).\nfunction addSelectionToHistory(doc, sel, opId, options) {\n  var hist = doc.history, origin = options && options.origin\n\n  // A new event is started when the previous origin does not match\n  // the current, or the origins don't allow matching. Origins\n  // starting with * are always merged, those starting with + are\n  // merged when similar and close together in time.\n  if (opId == hist.lastSelOp ||\n      (origin && hist.lastSelOrigin == origin &&\n       (hist.lastModTime == hist.lastSelTime && hist.lastOrigin == origin ||\n        selectionEventCanBeMerged(doc, origin, lst(hist.done), sel))))\n    { hist.done[hist.done.length - 1] = sel }\n  else\n    { pushSelectionToHistory(sel, hist.done) }\n\n  hist.lastSelTime = +new Date\n  hist.lastSelOrigin = origin\n  hist.lastSelOp = opId\n  if (options && options.clearRedo !== false)\n    { clearSelectionEvents(hist.undone) }\n}\n\nfunction pushSelectionToHistory(sel, dest) {\n  var top = lst(dest)\n  if (!(top && top.ranges && top.equals(sel)))\n    { dest.push(sel) }\n}\n\n// Used to store marked span information in the history.\nfunction attachLocalSpans(doc, change, from, to) {\n  var existing = change[\"spans_\" + doc.id], n = 0\n  doc.iter(Math.max(doc.first, from), Math.min(doc.first + doc.size, to), function (line) {\n    if (line.markedSpans)\n      { (existing || (existing = change[\"spans_\" + doc.id] = {}))[n] = line.markedSpans }\n    ++n\n  })\n}\n\n// When un/re-doing restores text containing marked spans, those\n// that have been explicitly cleared should not be restored.\nfunction removeClearedSpans(spans) {\n  if (!spans) { return null }\n  var out\n  for (var i = 0; i < spans.length; ++i) {\n    if (spans[i].marker.explicitlyCleared) { if (!out) { out = spans.slice(0, i) } }\n    else if (out) { out.push(spans[i]) }\n  }\n  return !out ? spans : out.length ? out : null\n}\n\n// Retrieve and filter the old marked spans stored in a change event.\nfunction getOldSpans(doc, change) {\n  var found = change[\"spans_\" + doc.id]\n  if (!found) { return null }\n  var nw = []\n  for (var i = 0; i < change.text.length; ++i)\n    { nw.push(removeClearedSpans(found[i])) }\n  return nw\n}\n\n// Used for un/re-doing changes from the history. Combines the\n// result of computing the existing spans with the set of spans that\n// existed in the history (so that deleting around a span and then\n// undoing brings back the span).\nfunction mergeOldSpans(doc, change) {\n  var old = getOldSpans(doc, change)\n  var stretched = stretchSpansOverChange(doc, change)\n  if (!old) { return stretched }\n  if (!stretched) { return old }\n\n  for (var i = 0; i < old.length; ++i) {\n    var oldCur = old[i], stretchCur = stretched[i]\n    if (oldCur && stretchCur) {\n      spans: for (var j = 0; j < stretchCur.length; ++j) {\n        var span = stretchCur[j]\n        for (var k = 0; k < oldCur.length; ++k)\n          { if (oldCur[k].marker == span.marker) { continue spans } }\n        oldCur.push(span)\n      }\n    } else if (stretchCur) {\n      old[i] = stretchCur\n    }\n  }\n  return old\n}\n\n// Used both to provide a JSON-safe object in .getHistory, and, when\n// detaching a document, to split the history in two\nfunction copyHistoryArray(events, newGroup, instantiateSel) {\n  var copy = []\n  for (var i = 0; i < events.length; ++i) {\n    var event = events[i]\n    if (event.ranges) {\n      copy.push(instantiateSel ? Selection.prototype.deepCopy.call(event) : event)\n      continue\n    }\n    var changes = event.changes, newChanges = []\n    copy.push({changes: newChanges})\n    for (var j = 0; j < changes.length; ++j) {\n      var change = changes[j], m = (void 0)\n      newChanges.push({from: change.from, to: change.to, text: change.text})\n      if (newGroup) { for (var prop in change) { if (m = prop.match(/^spans_(\\d+)$/)) {\n        if (indexOf(newGroup, Number(m[1])) > -1) {\n          lst(newChanges)[prop] = change[prop]\n          delete change[prop]\n        }\n      } } }\n    }\n  }\n  return copy\n}\n\n// The 'scroll' parameter given to many of these indicated whether\n// the new cursor position should be scrolled into view after\n// modifying the selection.\n\n// If shift is held or the extend flag is set, extends a range to\n// include a given position (and optionally a second position).\n// Otherwise, simply returns the range between the given positions.\n// Used for cursor motion and such.\nfunction extendRange(range, head, other, extend) {\n  if (extend) {\n    var anchor = range.anchor\n    if (other) {\n      var posBefore = cmp(head, anchor) < 0\n      if (posBefore != (cmp(other, anchor) < 0)) {\n        anchor = head\n        head = other\n      } else if (posBefore != (cmp(head, other) < 0)) {\n        head = other\n      }\n    }\n    return new Range(anchor, head)\n  } else {\n    return new Range(other || head, head)\n  }\n}\n\n// Extend the primary selection range, discard the rest.\nfunction extendSelection(doc, head, other, options, extend) {\n  if (extend == null) { extend = doc.cm && (doc.cm.display.shift || doc.extend) }\n  setSelection(doc, new Selection([extendRange(doc.sel.primary(), head, other, extend)], 0), options)\n}\n\n// Extend all selections (pos is an array of selections with length\n// equal the number of selections)\nfunction extendSelections(doc, heads, options) {\n  var out = []\n  var extend = doc.cm && (doc.cm.display.shift || doc.extend)\n  for (var i = 0; i < doc.sel.ranges.length; i++)\n    { out[i] = extendRange(doc.sel.ranges[i], heads[i], null, extend) }\n  var newSel = normalizeSelection(out, doc.sel.primIndex)\n  setSelection(doc, newSel, options)\n}\n\n// Updates a single range in the selection.\nfunction replaceOneSelection(doc, i, range, options) {\n  var ranges = doc.sel.ranges.slice(0)\n  ranges[i] = range\n  setSelection(doc, normalizeSelection(ranges, doc.sel.primIndex), options)\n}\n\n// Reset the selection to a single range.\nfunction setSimpleSelection(doc, anchor, head, options) {\n  setSelection(doc, simpleSelection(anchor, head), options)\n}\n\n// Give beforeSelectionChange handlers a change to influence a\n// selection update.\nfunction filterSelectionChange(doc, sel, options) {\n  var obj = {\n    ranges: sel.ranges,\n    update: function(ranges) {\n      var this$1 = this;\n\n      this.ranges = []\n      for (var i = 0; i < ranges.length; i++)\n        { this$1.ranges[i] = new Range(clipPos(doc, ranges[i].anchor),\n                                   clipPos(doc, ranges[i].head)) }\n    },\n    origin: options && options.origin\n  }\n  signal(doc, \"beforeSelectionChange\", doc, obj)\n  if (doc.cm) { signal(doc.cm, \"beforeSelectionChange\", doc.cm, obj) }\n  if (obj.ranges != sel.ranges) { return normalizeSelection(obj.ranges, obj.ranges.length - 1) }\n  else { return sel }\n}\n\nfunction setSelectionReplaceHistory(doc, sel, options) {\n  var done = doc.history.done, last = lst(done)\n  if (last && last.ranges) {\n    done[done.length - 1] = sel\n    setSelectionNoUndo(doc, sel, options)\n  } else {\n    setSelection(doc, sel, options)\n  }\n}\n\n// Set a new selection.\nfunction setSelection(doc, sel, options) {\n  setSelectionNoUndo(doc, sel, options)\n  addSelectionToHistory(doc, doc.sel, doc.cm ? doc.cm.curOp.id : NaN, options)\n}\n\nfunction setSelectionNoUndo(doc, sel, options) {\n  if (hasHandler(doc, \"beforeSelectionChange\") || doc.cm && hasHandler(doc.cm, \"beforeSelectionChange\"))\n    { sel = filterSelectionChange(doc, sel, options) }\n\n  var bias = options && options.bias ||\n    (cmp(sel.primary().head, doc.sel.primary().head) < 0 ? -1 : 1)\n  setSelectionInner(doc, skipAtomicInSelection(doc, sel, bias, true))\n\n  if (!(options && options.scroll === false) && doc.cm)\n    { ensureCursorVisible(doc.cm) }\n}\n\nfunction setSelectionInner(doc, sel) {\n  if (sel.equals(doc.sel)) { return }\n\n  doc.sel = sel\n\n  if (doc.cm) {\n    doc.cm.curOp.updateInput = doc.cm.curOp.selectionChanged = true\n    signalCursorActivity(doc.cm)\n  }\n  signalLater(doc, \"cursorActivity\", doc)\n}\n\n// Verify that the selection does not partially select any atomic\n// marked ranges.\nfunction reCheckSelection(doc) {\n  setSelectionInner(doc, skipAtomicInSelection(doc, doc.sel, null, false))\n}\n\n// Return a selection that does not partially select any atomic\n// ranges.\nfunction skipAtomicInSelection(doc, sel, bias, mayClear) {\n  var out\n  for (var i = 0; i < sel.ranges.length; i++) {\n    var range = sel.ranges[i]\n    var old = sel.ranges.length == doc.sel.ranges.length && doc.sel.ranges[i]\n    var newAnchor = skipAtomic(doc, range.anchor, old && old.anchor, bias, mayClear)\n    var newHead = skipAtomic(doc, range.head, old && old.head, bias, mayClear)\n    if (out || newAnchor != range.anchor || newHead != range.head) {\n      if (!out) { out = sel.ranges.slice(0, i) }\n      out[i] = new Range(newAnchor, newHead)\n    }\n  }\n  return out ? normalizeSelection(out, sel.primIndex) : sel\n}\n\nfunction skipAtomicInner(doc, pos, oldPos, dir, mayClear) {\n  var line = getLine(doc, pos.line)\n  if (line.markedSpans) { for (var i = 0; i < line.markedSpans.length; ++i) {\n    var sp = line.markedSpans[i], m = sp.marker\n    if ((sp.from == null || (m.inclusiveLeft ? sp.from <= pos.ch : sp.from < pos.ch)) &&\n        (sp.to == null || (m.inclusiveRight ? sp.to >= pos.ch : sp.to > pos.ch))) {\n      if (mayClear) {\n        signal(m, \"beforeCursorEnter\")\n        if (m.explicitlyCleared) {\n          if (!line.markedSpans) { break }\n          else {--i; continue}\n        }\n      }\n      if (!m.atomic) { continue }\n\n      if (oldPos) {\n        var near = m.find(dir < 0 ? 1 : -1), diff = (void 0)\n        if (dir < 0 ? m.inclusiveRight : m.inclusiveLeft)\n          { near = movePos(doc, near, -dir, near && near.line == pos.line ? line : null) }\n        if (near && near.line == pos.line && (diff = cmp(near, oldPos)) && (dir < 0 ? diff < 0 : diff > 0))\n          { return skipAtomicInner(doc, near, pos, dir, mayClear) }\n      }\n\n      var far = m.find(dir < 0 ? -1 : 1)\n      if (dir < 0 ? m.inclusiveLeft : m.inclusiveRight)\n        { far = movePos(doc, far, dir, far.line == pos.line ? line : null) }\n      return far ? skipAtomicInner(doc, far, pos, dir, mayClear) : null\n    }\n  } }\n  return pos\n}\n\n// Ensure a given position is not inside an atomic range.\nfunction skipAtomic(doc, pos, oldPos, bias, mayClear) {\n  var dir = bias || 1\n  var found = skipAtomicInner(doc, pos, oldPos, dir, mayClear) ||\n      (!mayClear && skipAtomicInner(doc, pos, oldPos, dir, true)) ||\n      skipAtomicInner(doc, pos, oldPos, -dir, mayClear) ||\n      (!mayClear && skipAtomicInner(doc, pos, oldPos, -dir, true))\n  if (!found) {\n    doc.cantEdit = true\n    return Pos(doc.first, 0)\n  }\n  return found\n}\n\nfunction movePos(doc, pos, dir, line) {\n  if (dir < 0 && pos.ch == 0) {\n    if (pos.line > doc.first) { return clipPos(doc, Pos(pos.line - 1)) }\n    else { return null }\n  } else if (dir > 0 && pos.ch == (line || getLine(doc, pos.line)).text.length) {\n    if (pos.line < doc.first + doc.size - 1) { return Pos(pos.line + 1, 0) }\n    else { return null }\n  } else {\n    return new Pos(pos.line, pos.ch + dir)\n  }\n}\n\nfunction selectAll(cm) {\n  cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()), sel_dontScroll)\n}\n\n// UPDATING\n\n// Allow \"beforeChange\" event handlers to influence a change\nfunction filterChange(doc, change, update) {\n  var obj = {\n    canceled: false,\n    from: change.from,\n    to: change.to,\n    text: change.text,\n    origin: change.origin,\n    cancel: function () { return obj.canceled = true; }\n  }\n  if (update) { obj.update = function (from, to, text, origin) {\n    if (from) { obj.from = clipPos(doc, from) }\n    if (to) { obj.to = clipPos(doc, to) }\n    if (text) { obj.text = text }\n    if (origin !== undefined) { obj.origin = origin }\n  } }\n  signal(doc, \"beforeChange\", doc, obj)\n  if (doc.cm) { signal(doc.cm, \"beforeChange\", doc.cm, obj) }\n\n  if (obj.canceled) { return null }\n  return {from: obj.from, to: obj.to, text: obj.text, origin: obj.origin}\n}\n\n// Apply a change to a document, and add it to the document's\n// history, and propagating it to all linked documents.\nfunction makeChange(doc, change, ignoreReadOnly) {\n  if (doc.cm) {\n    if (!doc.cm.curOp) { return operation(doc.cm, makeChange)(doc, change, ignoreReadOnly) }\n    if (doc.cm.state.suppressEdits) { return }\n  }\n\n  if (hasHandler(doc, \"beforeChange\") || doc.cm && hasHandler(doc.cm, \"beforeChange\")) {\n    change = filterChange(doc, change, true)\n    if (!change) { return }\n  }\n\n  // Possibly split or suppress the update based on the presence\n  // of read-only spans in its range.\n  var split = sawReadOnlySpans && !ignoreReadOnly && removeReadOnlyRanges(doc, change.from, change.to)\n  if (split) {\n    for (var i = split.length - 1; i >= 0; --i)\n      { makeChangeInner(doc, {from: split[i].from, to: split[i].to, text: i ? [\"\"] : change.text, origin: change.origin}) }\n  } else {\n    makeChangeInner(doc, change)\n  }\n}\n\nfunction makeChangeInner(doc, change) {\n  if (change.text.length == 1 && change.text[0] == \"\" && cmp(change.from, change.to) == 0) { return }\n  var selAfter = computeSelAfterChange(doc, change)\n  addChangeToHistory(doc, change, selAfter, doc.cm ? doc.cm.curOp.id : NaN)\n\n  makeChangeSingleDoc(doc, change, selAfter, stretchSpansOverChange(doc, change))\n  var rebased = []\n\n  linkedDocs(doc, function (doc, sharedHist) {\n    if (!sharedHist && indexOf(rebased, doc.history) == -1) {\n      rebaseHist(doc.history, change)\n      rebased.push(doc.history)\n    }\n    makeChangeSingleDoc(doc, change, null, stretchSpansOverChange(doc, change))\n  })\n}\n\n// Revert a change stored in a document's history.\nfunction makeChangeFromHistory(doc, type, allowSelectionOnly) {\n  if (doc.cm && doc.cm.state.suppressEdits && !allowSelectionOnly) { return }\n\n  var hist = doc.history, event, selAfter = doc.sel\n  var source = type == \"undo\" ? hist.done : hist.undone, dest = type == \"undo\" ? hist.undone : hist.done\n\n  // Verify that there is a useable event (so that ctrl-z won't\n  // needlessly clear selection events)\n  var i = 0\n  for (; i < source.length; i++) {\n    event = source[i]\n    if (allowSelectionOnly ? event.ranges && !event.equals(doc.sel) : !event.ranges)\n      { break }\n  }\n  if (i == source.length) { return }\n  hist.lastOrigin = hist.lastSelOrigin = null\n\n  for (;;) {\n    event = source.pop()\n    if (event.ranges) {\n      pushSelectionToHistory(event, dest)\n      if (allowSelectionOnly && !event.equals(doc.sel)) {\n        setSelection(doc, event, {clearRedo: false})\n        return\n      }\n      selAfter = event\n    }\n    else { break }\n  }\n\n  // Build up a reverse change object to add to the opposite history\n  // stack (redo when undoing, and vice versa).\n  var antiChanges = []\n  pushSelectionToHistory(selAfter, dest)\n  dest.push({changes: antiChanges, generation: hist.generation})\n  hist.generation = event.generation || ++hist.maxGeneration\n\n  var filter = hasHandler(doc, \"beforeChange\") || doc.cm && hasHandler(doc.cm, \"beforeChange\")\n\n  var loop = function ( i ) {\n    var change = event.changes[i]\n    change.origin = type\n    if (filter && !filterChange(doc, change, false)) {\n      source.length = 0\n      return {}\n    }\n\n    antiChanges.push(historyChangeFromChange(doc, change))\n\n    var after = i ? computeSelAfterChange(doc, change) : lst(source)\n    makeChangeSingleDoc(doc, change, after, mergeOldSpans(doc, change))\n    if (!i && doc.cm) { doc.cm.scrollIntoView({from: change.from, to: changeEnd(change)}) }\n    var rebased = []\n\n    // Propagate to the linked documents\n    linkedDocs(doc, function (doc, sharedHist) {\n      if (!sharedHist && indexOf(rebased, doc.history) == -1) {\n        rebaseHist(doc.history, change)\n        rebased.push(doc.history)\n      }\n      makeChangeSingleDoc(doc, change, null, mergeOldSpans(doc, change))\n    })\n  };\n\n  for (var i$1 = event.changes.length - 1; i$1 >= 0; --i$1) {\n    var returned = loop( i$1 );\n\n    if ( returned ) return returned.v;\n  }\n}\n\n// Sub-views need their line numbers shifted when text is added\n// above or below them in the parent document.\nfunction shiftDoc(doc, distance) {\n  if (distance == 0) { return }\n  doc.first += distance\n  doc.sel = new Selection(map(doc.sel.ranges, function (range) { return new Range(\n    Pos(range.anchor.line + distance, range.anchor.ch),\n    Pos(range.head.line + distance, range.head.ch)\n  ); }), doc.sel.primIndex)\n  if (doc.cm) {\n    regChange(doc.cm, doc.first, doc.first - distance, distance)\n    for (var d = doc.cm.display, l = d.viewFrom; l < d.viewTo; l++)\n      { regLineChange(doc.cm, l, \"gutter\") }\n  }\n}\n\n// More lower-level change function, handling only a single document\n// (not linked ones).\nfunction makeChangeSingleDoc(doc, change, selAfter, spans) {\n  if (doc.cm && !doc.cm.curOp)\n    { return operation(doc.cm, makeChangeSingleDoc)(doc, change, selAfter, spans) }\n\n  if (change.to.line < doc.first) {\n    shiftDoc(doc, change.text.length - 1 - (change.to.line - change.from.line))\n    return\n  }\n  if (change.from.line > doc.lastLine()) { return }\n\n  // Clip the change to the size of this doc\n  if (change.from.line < doc.first) {\n    var shift = change.text.length - 1 - (doc.first - change.from.line)\n    shiftDoc(doc, shift)\n    change = {from: Pos(doc.first, 0), to: Pos(change.to.line + shift, change.to.ch),\n              text: [lst(change.text)], origin: change.origin}\n  }\n  var last = doc.lastLine()\n  if (change.to.line > last) {\n    change = {from: change.from, to: Pos(last, getLine(doc, last).text.length),\n              text: [change.text[0]], origin: change.origin}\n  }\n\n  change.removed = getBetween(doc, change.from, change.to)\n\n  if (!selAfter) { selAfter = computeSelAfterChange(doc, change) }\n  if (doc.cm) { makeChangeSingleDocInEditor(doc.cm, change, spans) }\n  else { updateDoc(doc, change, spans) }\n  setSelectionNoUndo(doc, selAfter, sel_dontScroll)\n}\n\n// Handle the interaction of a change to a document with the editor\n// that this document is part of.\nfunction makeChangeSingleDocInEditor(cm, change, spans) {\n  var doc = cm.doc, display = cm.display, from = change.from, to = change.to\n\n  var recomputeMaxLength = false, checkWidthStart = from.line\n  if (!cm.options.lineWrapping) {\n    checkWidthStart = lineNo(visualLine(getLine(doc, from.line)))\n    doc.iter(checkWidthStart, to.line + 1, function (line) {\n      if (line == display.maxLine) {\n        recomputeMaxLength = true\n        return true\n      }\n    })\n  }\n\n  if (doc.sel.contains(change.from, change.to) > -1)\n    { signalCursorActivity(cm) }\n\n  updateDoc(doc, change, spans, estimateHeight(cm))\n\n  if (!cm.options.lineWrapping) {\n    doc.iter(checkWidthStart, from.line + change.text.length, function (line) {\n      var len = lineLength(line)\n      if (len > display.maxLineLength) {\n        display.maxLine = line\n        display.maxLineLength = len\n        display.maxLineChanged = true\n        recomputeMaxLength = false\n      }\n    })\n    if (recomputeMaxLength) { cm.curOp.updateMaxLine = true }\n  }\n\n  retreatFrontier(doc, from.line)\n  startWorker(cm, 400)\n\n  var lendiff = change.text.length - (to.line - from.line) - 1\n  // Remember that these lines changed, for updating the display\n  if (change.full)\n    { regChange(cm) }\n  else if (from.line == to.line && change.text.length == 1 && !isWholeLineUpdate(cm.doc, change))\n    { regLineChange(cm, from.line, \"text\") }\n  else\n    { regChange(cm, from.line, to.line + 1, lendiff) }\n\n  var changesHandler = hasHandler(cm, \"changes\"), changeHandler = hasHandler(cm, \"change\")\n  if (changeHandler || changesHandler) {\n    var obj = {\n      from: from, to: to,\n      text: change.text,\n      removed: change.removed,\n      origin: change.origin\n    }\n    if (changeHandler) { signalLater(cm, \"change\", cm, obj) }\n    if (changesHandler) { (cm.curOp.changeObjs || (cm.curOp.changeObjs = [])).push(obj) }\n  }\n  cm.display.selForContextMenu = null\n}\n\nfunction replaceRange(doc, code, from, to, origin) {\n  if (!to) { to = from }\n  if (cmp(to, from) < 0) { var assign;\n    (assign = [to, from], from = assign[0], to = assign[1], assign) }\n  if (typeof code == \"string\") { code = doc.splitLines(code) }\n  makeChange(doc, {from: from, to: to, text: code, origin: origin})\n}\n\n// Rebasing/resetting history to deal with externally-sourced changes\n\nfunction rebaseHistSelSingle(pos, from, to, diff) {\n  if (to < pos.line) {\n    pos.line += diff\n  } else if (from < pos.line) {\n    pos.line = from\n    pos.ch = 0\n  }\n}\n\n// Tries to rebase an array of history events given a change in the\n// document. If the change touches the same lines as the event, the\n// event, and everything 'behind' it, is discarded. If the change is\n// before the event, the event's positions are updated. Uses a\n// copy-on-write scheme for the positions, to avoid having to\n// reallocate them all on every rebase, but also avoid problems with\n// shared position objects being unsafely updated.\nfunction rebaseHistArray(array, from, to, diff) {\n  for (var i = 0; i < array.length; ++i) {\n    var sub = array[i], ok = true\n    if (sub.ranges) {\n      if (!sub.copied) { sub = array[i] = sub.deepCopy(); sub.copied = true }\n      for (var j = 0; j < sub.ranges.length; j++) {\n        rebaseHistSelSingle(sub.ranges[j].anchor, from, to, diff)\n        rebaseHistSelSingle(sub.ranges[j].head, from, to, diff)\n      }\n      continue\n    }\n    for (var j$1 = 0; j$1 < sub.changes.length; ++j$1) {\n      var cur = sub.changes[j$1]\n      if (to < cur.from.line) {\n        cur.from = Pos(cur.from.line + diff, cur.from.ch)\n        cur.to = Pos(cur.to.line + diff, cur.to.ch)\n      } else if (from <= cur.to.line) {\n        ok = false\n        break\n      }\n    }\n    if (!ok) {\n      array.splice(0, i + 1)\n      i = 0\n    }\n  }\n}\n\nfunction rebaseHist(hist, change) {\n  var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1\n  rebaseHistArray(hist.done, from, to, diff)\n  rebaseHistArray(hist.undone, from, to, diff)\n}\n\n// Utility for applying a change to a line by handle or number,\n// returning the number and optionally registering the line as\n// changed.\nfunction changeLine(doc, handle, changeType, op) {\n  var no = handle, line = handle\n  if (typeof handle == \"number\") { line = getLine(doc, clipLine(doc, handle)) }\n  else { no = lineNo(handle) }\n  if (no == null) { return null }\n  if (op(line, no) && doc.cm) { regLineChange(doc.cm, no, changeType) }\n  return line\n}\n\n// The document is represented as a BTree consisting of leaves, with\n// chunk of lines in them, and branches, with up to ten leaves or\n// other branch nodes below them. The top node is always a branch\n// node, and is the document object itself (meaning it has\n// additional methods and properties).\n//\n// All nodes have parent links. The tree is used both to go from\n// line numbers to line objects, and to go from objects to numbers.\n// It also indexes by height, and is used to convert between height\n// and line object, and to find the total height of the document.\n//\n// See also http://marijnhaverbeke.nl/blog/codemirror-line-tree.html\n\nfunction LeafChunk(lines) {\n  var this$1 = this;\n\n  this.lines = lines\n  this.parent = null\n  var height = 0\n  for (var i = 0; i < lines.length; ++i) {\n    lines[i].parent = this$1\n    height += lines[i].height\n  }\n  this.height = height\n}\n\nLeafChunk.prototype = {\n  chunkSize: function chunkSize() { return this.lines.length },\n\n  // Remove the n lines at offset 'at'.\n  removeInner: function removeInner(at, n) {\n    var this$1 = this;\n\n    for (var i = at, e = at + n; i < e; ++i) {\n      var line = this$1.lines[i]\n      this$1.height -= line.height\n      cleanUpLine(line)\n      signalLater(line, \"delete\")\n    }\n    this.lines.splice(at, n)\n  },\n\n  // Helper used to collapse a small branch into a single leaf.\n  collapse: function collapse(lines) {\n    lines.push.apply(lines, this.lines)\n  },\n\n  // Insert the given array of lines at offset 'at', count them as\n  // having the given height.\n  insertInner: function insertInner(at, lines, height) {\n    var this$1 = this;\n\n    this.height += height\n    this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at))\n    for (var i = 0; i < lines.length; ++i) { lines[i].parent = this$1 }\n  },\n\n  // Used to iterate over a part of the tree.\n  iterN: function iterN(at, n, op) {\n    var this$1 = this;\n\n    for (var e = at + n; at < e; ++at)\n      { if (op(this$1.lines[at])) { return true } }\n  }\n}\n\nfunction BranchChunk(children) {\n  var this$1 = this;\n\n  this.children = children\n  var size = 0, height = 0\n  for (var i = 0; i < children.length; ++i) {\n    var ch = children[i]\n    size += ch.chunkSize(); height += ch.height\n    ch.parent = this$1\n  }\n  this.size = size\n  this.height = height\n  this.parent = null\n}\n\nBranchChunk.prototype = {\n  chunkSize: function chunkSize() { return this.size },\n\n  removeInner: function removeInner(at, n) {\n    var this$1 = this;\n\n    this.size -= n\n    for (var i = 0; i < this.children.length; ++i) {\n      var child = this$1.children[i], sz = child.chunkSize()\n      if (at < sz) {\n        var rm = Math.min(n, sz - at), oldHeight = child.height\n        child.removeInner(at, rm)\n        this$1.height -= oldHeight - child.height\n        if (sz == rm) { this$1.children.splice(i--, 1); child.parent = null }\n        if ((n -= rm) == 0) { break }\n        at = 0\n      } else { at -= sz }\n    }\n    // If the result is smaller than 25 lines, ensure that it is a\n    // single leaf node.\n    if (this.size - n < 25 &&\n        (this.children.length > 1 || !(this.children[0] instanceof LeafChunk))) {\n      var lines = []\n      this.collapse(lines)\n      this.children = [new LeafChunk(lines)]\n      this.children[0].parent = this\n    }\n  },\n\n  collapse: function collapse(lines) {\n    var this$1 = this;\n\n    for (var i = 0; i < this.children.length; ++i) { this$1.children[i].collapse(lines) }\n  },\n\n  insertInner: function insertInner(at, lines, height) {\n    var this$1 = this;\n\n    this.size += lines.length\n    this.height += height\n    for (var i = 0; i < this.children.length; ++i) {\n      var child = this$1.children[i], sz = child.chunkSize()\n      if (at <= sz) {\n        child.insertInner(at, lines, height)\n        if (child.lines && child.lines.length > 50) {\n          // To avoid memory thrashing when child.lines is huge (e.g. first view of a large file), it's never spliced.\n          // Instead, small slices are taken. They're taken in order because sequential memory accesses are fastest.\n          var remaining = child.lines.length % 25 + 25\n          for (var pos = remaining; pos < child.lines.length;) {\n            var leaf = new LeafChunk(child.lines.slice(pos, pos += 25))\n            child.height -= leaf.height\n            this$1.children.splice(++i, 0, leaf)\n            leaf.parent = this$1\n          }\n          child.lines = child.lines.slice(0, remaining)\n          this$1.maybeSpill()\n        }\n        break\n      }\n      at -= sz\n    }\n  },\n\n  // When a node has grown, check whether it should be split.\n  maybeSpill: function maybeSpill() {\n    if (this.children.length <= 10) { return }\n    var me = this\n    do {\n      var spilled = me.children.splice(me.children.length - 5, 5)\n      var sibling = new BranchChunk(spilled)\n      if (!me.parent) { // Become the parent node\n        var copy = new BranchChunk(me.children)\n        copy.parent = me\n        me.children = [copy, sibling]\n        me = copy\n     } else {\n        me.size -= sibling.size\n        me.height -= sibling.height\n        var myIndex = indexOf(me.parent.children, me)\n        me.parent.children.splice(myIndex + 1, 0, sibling)\n      }\n      sibling.parent = me.parent\n    } while (me.children.length > 10)\n    me.parent.maybeSpill()\n  },\n\n  iterN: function iterN(at, n, op) {\n    var this$1 = this;\n\n    for (var i = 0; i < this.children.length; ++i) {\n      var child = this$1.children[i], sz = child.chunkSize()\n      if (at < sz) {\n        var used = Math.min(n, sz - at)\n        if (child.iterN(at, used, op)) { return true }\n        if ((n -= used) == 0) { break }\n        at = 0\n      } else { at -= sz }\n    }\n  }\n}\n\n// Line widgets are block elements displayed above or below a line.\n\nvar LineWidget = function(doc, node, options) {\n  var this$1 = this;\n\n  if (options) { for (var opt in options) { if (options.hasOwnProperty(opt))\n    { this$1[opt] = options[opt] } } }\n  this.doc = doc\n  this.node = node\n};\n\nLineWidget.prototype.clear = function () {\n    var this$1 = this;\n\n  var cm = this.doc.cm, ws = this.line.widgets, line = this.line, no = lineNo(line)\n  if (no == null || !ws) { return }\n  for (var i = 0; i < ws.length; ++i) { if (ws[i] == this$1) { ws.splice(i--, 1) } }\n  if (!ws.length) { line.widgets = null }\n  var height = widgetHeight(this)\n  updateLineHeight(line, Math.max(0, line.height - height))\n  if (cm) {\n    runInOp(cm, function () {\n      adjustScrollWhenAboveVisible(cm, line, -height)\n      regLineChange(cm, no, \"widget\")\n    })\n    signalLater(cm, \"lineWidgetCleared\", cm, this, no)\n  }\n};\n\nLineWidget.prototype.changed = function () {\n    var this$1 = this;\n\n  var oldH = this.height, cm = this.doc.cm, line = this.line\n  this.height = null\n  var diff = widgetHeight(this) - oldH\n  if (!diff) { return }\n  updateLineHeight(line, line.height + diff)\n  if (cm) {\n    runInOp(cm, function () {\n      cm.curOp.forceUpdate = true\n      adjustScrollWhenAboveVisible(cm, line, diff)\n      signalLater(cm, \"lineWidgetChanged\", cm, this$1, lineNo(line))\n    })\n  }\n};\neventMixin(LineWidget)\n\nfunction adjustScrollWhenAboveVisible(cm, line, diff) {\n  if (heightAtLine(line) < ((cm.curOp && cm.curOp.scrollTop) || cm.doc.scrollTop))\n    { addToScrollTop(cm, diff) }\n}\n\nfunction addLineWidget(doc, handle, node, options) {\n  var widget = new LineWidget(doc, node, options)\n  var cm = doc.cm\n  if (cm && widget.noHScroll) { cm.display.alignWidgets = true }\n  changeLine(doc, handle, \"widget\", function (line) {\n    var widgets = line.widgets || (line.widgets = [])\n    if (widget.insertAt == null) { widgets.push(widget) }\n    else { widgets.splice(Math.min(widgets.length - 1, Math.max(0, widget.insertAt)), 0, widget) }\n    widget.line = line\n    if (cm && !lineIsHidden(doc, line)) {\n      var aboveVisible = heightAtLine(line) < doc.scrollTop\n      updateLineHeight(line, line.height + widgetHeight(widget))\n      if (aboveVisible) { addToScrollTop(cm, widget.height) }\n      cm.curOp.forceUpdate = true\n    }\n    return true\n  })\n  signalLater(cm, \"lineWidgetAdded\", cm, widget, typeof handle == \"number\" ? handle : lineNo(handle))\n  return widget\n}\n\n// TEXTMARKERS\n\n// Created with markText and setBookmark methods. A TextMarker is a\n// handle that can be used to clear or find a marked position in the\n// document. Line objects hold arrays (markedSpans) containing\n// {from, to, marker} object pointing to such marker objects, and\n// indicating that such a marker is present on that line. Multiple\n// lines may point to the same marker when it spans across lines.\n// The spans will have null for their from/to properties when the\n// marker continues beyond the start/end of the line. Markers have\n// links back to the lines they currently touch.\n\n// Collapsed markers have unique ids, in order to be able to order\n// them, which is needed for uniquely determining an outer marker\n// when they overlap (they may nest, but not partially overlap).\nvar nextMarkerId = 0\n\nvar TextMarker = function(doc, type) {\n  this.lines = []\n  this.type = type\n  this.doc = doc\n  this.id = ++nextMarkerId\n};\n\n// Clear the marker.\nTextMarker.prototype.clear = function () {\n    var this$1 = this;\n\n  if (this.explicitlyCleared) { return }\n  var cm = this.doc.cm, withOp = cm && !cm.curOp\n  if (withOp) { startOperation(cm) }\n  if (hasHandler(this, \"clear\")) {\n    var found = this.find()\n    if (found) { signalLater(this, \"clear\", found.from, found.to) }\n  }\n  var min = null, max = null\n  for (var i = 0; i < this.lines.length; ++i) {\n    var line = this$1.lines[i]\n    var span = getMarkedSpanFor(line.markedSpans, this$1)\n    if (cm && !this$1.collapsed) { regLineChange(cm, lineNo(line), \"text\") }\n    else if (cm) {\n      if (span.to != null) { max = lineNo(line) }\n      if (span.from != null) { min = lineNo(line) }\n    }\n    line.markedSpans = removeMarkedSpan(line.markedSpans, span)\n    if (span.from == null && this$1.collapsed && !lineIsHidden(this$1.doc, line) && cm)\n      { updateLineHeight(line, textHeight(cm.display)) }\n  }\n  if (cm && this.collapsed && !cm.options.lineWrapping) { for (var i$1 = 0; i$1 < this.lines.length; ++i$1) {\n    var visual = visualLine(this$1.lines[i$1]), len = lineLength(visual)\n    if (len > cm.display.maxLineLength) {\n      cm.display.maxLine = visual\n      cm.display.maxLineLength = len\n      cm.display.maxLineChanged = true\n    }\n  } }\n\n  if (min != null && cm && this.collapsed) { regChange(cm, min, max + 1) }\n  this.lines.length = 0\n  this.explicitlyCleared = true\n  if (this.atomic && this.doc.cantEdit) {\n    this.doc.cantEdit = false\n    if (cm) { reCheckSelection(cm.doc) }\n  }\n  if (cm) { signalLater(cm, \"markerCleared\", cm, this, min, max) }\n  if (withOp) { endOperation(cm) }\n  if (this.parent) { this.parent.clear() }\n};\n\n// Find the position of the marker in the document. Returns a {from,\n// to} object by default. Side can be passed to get a specific side\n// -- 0 (both), -1 (left), or 1 (right). When lineObj is true, the\n// Pos objects returned contain a line object, rather than a line\n// number (used to prevent looking up the same line twice).\nTextMarker.prototype.find = function (side, lineObj) {\n    var this$1 = this;\n\n  if (side == null && this.type == \"bookmark\") { side = 1 }\n  var from, to\n  for (var i = 0; i < this.lines.length; ++i) {\n    var line = this$1.lines[i]\n    var span = getMarkedSpanFor(line.markedSpans, this$1)\n    if (span.from != null) {\n      from = Pos(lineObj ? line : lineNo(line), span.from)\n      if (side == -1) { return from }\n    }\n    if (span.to != null) {\n      to = Pos(lineObj ? line : lineNo(line), span.to)\n      if (side == 1) { return to }\n    }\n  }\n  return from && {from: from, to: to}\n};\n\n// Signals that the marker's widget changed, and surrounding layout\n// should be recomputed.\nTextMarker.prototype.changed = function () {\n    var this$1 = this;\n\n  var pos = this.find(-1, true), widget = this, cm = this.doc.cm\n  if (!pos || !cm) { return }\n  runInOp(cm, function () {\n    var line = pos.line, lineN = lineNo(pos.line)\n    var view = findViewForLine(cm, lineN)\n    if (view) {\n      clearLineMeasurementCacheFor(view)\n      cm.curOp.selectionChanged = cm.curOp.forceUpdate = true\n    }\n    cm.curOp.updateMaxLine = true\n    if (!lineIsHidden(widget.doc, line) && widget.height != null) {\n      var oldHeight = widget.height\n      widget.height = null\n      var dHeight = widgetHeight(widget) - oldHeight\n      if (dHeight)\n        { updateLineHeight(line, line.height + dHeight) }\n    }\n    signalLater(cm, \"markerChanged\", cm, this$1)\n  })\n};\n\nTextMarker.prototype.attachLine = function (line) {\n  if (!this.lines.length && this.doc.cm) {\n    var op = this.doc.cm.curOp\n    if (!op.maybeHiddenMarkers || indexOf(op.maybeHiddenMarkers, this) == -1)\n      { (op.maybeUnhiddenMarkers || (op.maybeUnhiddenMarkers = [])).push(this) }\n  }\n  this.lines.push(line)\n};\n\nTextMarker.prototype.detachLine = function (line) {\n  this.lines.splice(indexOf(this.lines, line), 1)\n  if (!this.lines.length && this.doc.cm) {\n    var op = this.doc.cm.curOp\n    ;(op.maybeHiddenMarkers || (op.maybeHiddenMarkers = [])).push(this)\n  }\n};\neventMixin(TextMarker)\n\n// Create a marker, wire it up to the right lines, and\nfunction markText(doc, from, to, options, type) {\n  // Shared markers (across linked documents) are handled separately\n  // (markTextShared will call out to this again, once per\n  // document).\n  if (options && options.shared) { return markTextShared(doc, from, to, options, type) }\n  // Ensure we are in an operation.\n  if (doc.cm && !doc.cm.curOp) { return operation(doc.cm, markText)(doc, from, to, options, type) }\n\n  var marker = new TextMarker(doc, type), diff = cmp(from, to)\n  if (options) { copyObj(options, marker, false) }\n  // Don't connect empty markers unless clearWhenEmpty is false\n  if (diff > 0 || diff == 0 && marker.clearWhenEmpty !== false)\n    { return marker }\n  if (marker.replacedWith) {\n    // Showing up as a widget implies collapsed (widget replaces text)\n    marker.collapsed = true\n    marker.widgetNode = eltP(\"span\", [marker.replacedWith], \"CodeMirror-widget\")\n    if (!options.handleMouseEvents) { marker.widgetNode.setAttribute(\"cm-ignore-events\", \"true\") }\n    if (options.insertLeft) { marker.widgetNode.insertLeft = true }\n  }\n  if (marker.collapsed) {\n    if (conflictingCollapsedRange(doc, from.line, from, to, marker) ||\n        from.line != to.line && conflictingCollapsedRange(doc, to.line, from, to, marker))\n      { throw new Error(\"Inserting collapsed marker partially overlapping an existing one\") }\n    seeCollapsedSpans()\n  }\n\n  if (marker.addToHistory)\n    { addChangeToHistory(doc, {from: from, to: to, origin: \"markText\"}, doc.sel, NaN) }\n\n  var curLine = from.line, cm = doc.cm, updateMaxLine\n  doc.iter(curLine, to.line + 1, function (line) {\n    if (cm && marker.collapsed && !cm.options.lineWrapping && visualLine(line) == cm.display.maxLine)\n      { updateMaxLine = true }\n    if (marker.collapsed && curLine != from.line) { updateLineHeight(line, 0) }\n    addMarkedSpan(line, new MarkedSpan(marker,\n                                       curLine == from.line ? from.ch : null,\n                                       curLine == to.line ? to.ch : null))\n    ++curLine\n  })\n  // lineIsHidden depends on the presence of the spans, so needs a second pass\n  if (marker.collapsed) { doc.iter(from.line, to.line + 1, function (line) {\n    if (lineIsHidden(doc, line)) { updateLineHeight(line, 0) }\n  }) }\n\n  if (marker.clearOnEnter) { on(marker, \"beforeCursorEnter\", function () { return marker.clear(); }) }\n\n  if (marker.readOnly) {\n    seeReadOnlySpans()\n    if (doc.history.done.length || doc.history.undone.length)\n      { doc.clearHistory() }\n  }\n  if (marker.collapsed) {\n    marker.id = ++nextMarkerId\n    marker.atomic = true\n  }\n  if (cm) {\n    // Sync editor state\n    if (updateMaxLine) { cm.curOp.updateMaxLine = true }\n    if (marker.collapsed)\n      { regChange(cm, from.line, to.line + 1) }\n    else if (marker.className || marker.title || marker.startStyle || marker.endStyle || marker.css)\n      { for (var i = from.line; i <= to.line; i++) { regLineChange(cm, i, \"text\") } }\n    if (marker.atomic) { reCheckSelection(cm.doc) }\n    signalLater(cm, \"markerAdded\", cm, marker)\n  }\n  return marker\n}\n\n// SHARED TEXTMARKERS\n\n// A shared marker spans multiple linked documents. It is\n// implemented as a meta-marker-object controlling multiple normal\n// markers.\nvar SharedTextMarker = function(markers, primary) {\n  var this$1 = this;\n\n  this.markers = markers\n  this.primary = primary\n  for (var i = 0; i < markers.length; ++i)\n    { markers[i].parent = this$1 }\n};\n\nSharedTextMarker.prototype.clear = function () {\n    var this$1 = this;\n\n  if (this.explicitlyCleared) { return }\n  this.explicitlyCleared = true\n  for (var i = 0; i < this.markers.length; ++i)\n    { this$1.markers[i].clear() }\n  signalLater(this, \"clear\")\n};\n\nSharedTextMarker.prototype.find = function (side, lineObj) {\n  return this.primary.find(side, lineObj)\n};\neventMixin(SharedTextMarker)\n\nfunction markTextShared(doc, from, to, options, type) {\n  options = copyObj(options)\n  options.shared = false\n  var markers = [markText(doc, from, to, options, type)], primary = markers[0]\n  var widget = options.widgetNode\n  linkedDocs(doc, function (doc) {\n    if (widget) { options.widgetNode = widget.cloneNode(true) }\n    markers.push(markText(doc, clipPos(doc, from), clipPos(doc, to), options, type))\n    for (var i = 0; i < doc.linked.length; ++i)\n      { if (doc.linked[i].isParent) { return } }\n    primary = lst(markers)\n  })\n  return new SharedTextMarker(markers, primary)\n}\n\nfunction findSharedMarkers(doc) {\n  return doc.findMarks(Pos(doc.first, 0), doc.clipPos(Pos(doc.lastLine())), function (m) { return m.parent; })\n}\n\nfunction copySharedMarkers(doc, markers) {\n  for (var i = 0; i < markers.length; i++) {\n    var marker = markers[i], pos = marker.find()\n    var mFrom = doc.clipPos(pos.from), mTo = doc.clipPos(pos.to)\n    if (cmp(mFrom, mTo)) {\n      var subMark = markText(doc, mFrom, mTo, marker.primary, marker.primary.type)\n      marker.markers.push(subMark)\n      subMark.parent = marker\n    }\n  }\n}\n\nfunction detachSharedMarkers(markers) {\n  var loop = function ( i ) {\n    var marker = markers[i], linked = [marker.primary.doc]\n    linkedDocs(marker.primary.doc, function (d) { return linked.push(d); })\n    for (var j = 0; j < marker.markers.length; j++) {\n      var subMarker = marker.markers[j]\n      if (indexOf(linked, subMarker.doc) == -1) {\n        subMarker.parent = null\n        marker.markers.splice(j--, 1)\n      }\n    }\n  };\n\n  for (var i = 0; i < markers.length; i++) loop( i );\n}\n\nvar nextDocId = 0\nvar Doc = function(text, mode, firstLine, lineSep, direction) {\n  if (!(this instanceof Doc)) { return new Doc(text, mode, firstLine, lineSep, direction) }\n  if (firstLine == null) { firstLine = 0 }\n\n  BranchChunk.call(this, [new LeafChunk([new Line(\"\", null)])])\n  this.first = firstLine\n  this.scrollTop = this.scrollLeft = 0\n  this.cantEdit = false\n  this.cleanGeneration = 1\n  this.modeFrontier = this.highlightFrontier = firstLine\n  var start = Pos(firstLine, 0)\n  this.sel = simpleSelection(start)\n  this.history = new History(null)\n  this.id = ++nextDocId\n  this.modeOption = mode\n  this.lineSep = lineSep\n  this.direction = (direction == \"rtl\") ? \"rtl\" : \"ltr\"\n  this.extend = false\n\n  if (typeof text == \"string\") { text = this.splitLines(text) }\n  updateDoc(this, {from: start, to: start, text: text})\n  setSelection(this, simpleSelection(start), sel_dontScroll)\n}\n\nDoc.prototype = createObj(BranchChunk.prototype, {\n  constructor: Doc,\n  // Iterate over the document. Supports two forms -- with only one\n  // argument, it calls that for each line in the document. With\n  // three, it iterates over the range given by the first two (with\n  // the second being non-inclusive).\n  iter: function(from, to, op) {\n    if (op) { this.iterN(from - this.first, to - from, op) }\n    else { this.iterN(this.first, this.first + this.size, from) }\n  },\n\n  // Non-public interface for adding and removing lines.\n  insert: function(at, lines) {\n    var height = 0\n    for (var i = 0; i < lines.length; ++i) { height += lines[i].height }\n    this.insertInner(at - this.first, lines, height)\n  },\n  remove: function(at, n) { this.removeInner(at - this.first, n) },\n\n  // From here, the methods are part of the public interface. Most\n  // are also available from CodeMirror (editor) instances.\n\n  getValue: function(lineSep) {\n    var lines = getLines(this, this.first, this.first + this.size)\n    if (lineSep === false) { return lines }\n    return lines.join(lineSep || this.lineSeparator())\n  },\n  setValue: docMethodOp(function(code) {\n    var top = Pos(this.first, 0), last = this.first + this.size - 1\n    makeChange(this, {from: top, to: Pos(last, getLine(this, last).text.length),\n                      text: this.splitLines(code), origin: \"setValue\", full: true}, true)\n    if (this.cm) { scrollToCoords(this.cm, 0, 0) }\n    setSelection(this, simpleSelection(top), sel_dontScroll)\n  }),\n  replaceRange: function(code, from, to, origin) {\n    from = clipPos(this, from)\n    to = to ? clipPos(this, to) : from\n    replaceRange(this, code, from, to, origin)\n  },\n  getRange: function(from, to, lineSep) {\n    var lines = getBetween(this, clipPos(this, from), clipPos(this, to))\n    if (lineSep === false) { return lines }\n    return lines.join(lineSep || this.lineSeparator())\n  },\n\n  getLine: function(line) {var l = this.getLineHandle(line); return l && l.text},\n\n  getLineHandle: function(line) {if (isLine(this, line)) { return getLine(this, line) }},\n  getLineNumber: function(line) {return lineNo(line)},\n\n  getLineHandleVisualStart: function(line) {\n    if (typeof line == \"number\") { line = getLine(this, line) }\n    return visualLine(line)\n  },\n\n  lineCount: function() {return this.size},\n  firstLine: function() {return this.first},\n  lastLine: function() {return this.first + this.size - 1},\n\n  clipPos: function(pos) {return clipPos(this, pos)},\n\n  getCursor: function(start) {\n    var range = this.sel.primary(), pos\n    if (start == null || start == \"head\") { pos = range.head }\n    else if (start == \"anchor\") { pos = range.anchor }\n    else if (start == \"end\" || start == \"to\" || start === false) { pos = range.to() }\n    else { pos = range.from() }\n    return pos\n  },\n  listSelections: function() { return this.sel.ranges },\n  somethingSelected: function() {return this.sel.somethingSelected()},\n\n  setCursor: docMethodOp(function(line, ch, options) {\n    setSimpleSelection(this, clipPos(this, typeof line == \"number\" ? Pos(line, ch || 0) : line), null, options)\n  }),\n  setSelection: docMethodOp(function(anchor, head, options) {\n    setSimpleSelection(this, clipPos(this, anchor), clipPos(this, head || anchor), options)\n  }),\n  extendSelection: docMethodOp(function(head, other, options) {\n    extendSelection(this, clipPos(this, head), other && clipPos(this, other), options)\n  }),\n  extendSelections: docMethodOp(function(heads, options) {\n    extendSelections(this, clipPosArray(this, heads), options)\n  }),\n  extendSelectionsBy: docMethodOp(function(f, options) {\n    var heads = map(this.sel.ranges, f)\n    extendSelections(this, clipPosArray(this, heads), options)\n  }),\n  setSelections: docMethodOp(function(ranges, primary, options) {\n    var this$1 = this;\n\n    if (!ranges.length) { return }\n    var out = []\n    for (var i = 0; i < ranges.length; i++)\n      { out[i] = new Range(clipPos(this$1, ranges[i].anchor),\n                         clipPos(this$1, ranges[i].head)) }\n    if (primary == null) { primary = Math.min(ranges.length - 1, this.sel.primIndex) }\n    setSelection(this, normalizeSelection(out, primary), options)\n  }),\n  addSelection: docMethodOp(function(anchor, head, options) {\n    var ranges = this.sel.ranges.slice(0)\n    ranges.push(new Range(clipPos(this, anchor), clipPos(this, head || anchor)))\n    setSelection(this, normalizeSelection(ranges, ranges.length - 1), options)\n  }),\n\n  getSelection: function(lineSep) {\n    var this$1 = this;\n\n    var ranges = this.sel.ranges, lines\n    for (var i = 0; i < ranges.length; i++) {\n      var sel = getBetween(this$1, ranges[i].from(), ranges[i].to())\n      lines = lines ? lines.concat(sel) : sel\n    }\n    if (lineSep === false) { return lines }\n    else { return lines.join(lineSep || this.lineSeparator()) }\n  },\n  getSelections: function(lineSep) {\n    var this$1 = this;\n\n    var parts = [], ranges = this.sel.ranges\n    for (var i = 0; i < ranges.length; i++) {\n      var sel = getBetween(this$1, ranges[i].from(), ranges[i].to())\n      if (lineSep !== false) { sel = sel.join(lineSep || this$1.lineSeparator()) }\n      parts[i] = sel\n    }\n    return parts\n  },\n  replaceSelection: function(code, collapse, origin) {\n    var dup = []\n    for (var i = 0; i < this.sel.ranges.length; i++)\n      { dup[i] = code }\n    this.replaceSelections(dup, collapse, origin || \"+input\")\n  },\n  replaceSelections: docMethodOp(function(code, collapse, origin) {\n    var this$1 = this;\n\n    var changes = [], sel = this.sel\n    for (var i = 0; i < sel.ranges.length; i++) {\n      var range = sel.ranges[i]\n      changes[i] = {from: range.from(), to: range.to(), text: this$1.splitLines(code[i]), origin: origin}\n    }\n    var newSel = collapse && collapse != \"end\" && computeReplacedSel(this, changes, collapse)\n    for (var i$1 = changes.length - 1; i$1 >= 0; i$1--)\n      { makeChange(this$1, changes[i$1]) }\n    if (newSel) { setSelectionReplaceHistory(this, newSel) }\n    else if (this.cm) { ensureCursorVisible(this.cm) }\n  }),\n  undo: docMethodOp(function() {makeChangeFromHistory(this, \"undo\")}),\n  redo: docMethodOp(function() {makeChangeFromHistory(this, \"redo\")}),\n  undoSelection: docMethodOp(function() {makeChangeFromHistory(this, \"undo\", true)}),\n  redoSelection: docMethodOp(function() {makeChangeFromHistory(this, \"redo\", true)}),\n\n  setExtending: function(val) {this.extend = val},\n  getExtending: function() {return this.extend},\n\n  historySize: function() {\n    var hist = this.history, done = 0, undone = 0\n    for (var i = 0; i < hist.done.length; i++) { if (!hist.done[i].ranges) { ++done } }\n    for (var i$1 = 0; i$1 < hist.undone.length; i$1++) { if (!hist.undone[i$1].ranges) { ++undone } }\n    return {undo: done, redo: undone}\n  },\n  clearHistory: function() {this.history = new History(this.history.maxGeneration)},\n\n  markClean: function() {\n    this.cleanGeneration = this.changeGeneration(true)\n  },\n  changeGeneration: function(forceSplit) {\n    if (forceSplit)\n      { this.history.lastOp = this.history.lastSelOp = this.history.lastOrigin = null }\n    return this.history.generation\n  },\n  isClean: function (gen) {\n    return this.history.generation == (gen || this.cleanGeneration)\n  },\n\n  getHistory: function() {\n    return {done: copyHistoryArray(this.history.done),\n            undone: copyHistoryArray(this.history.undone)}\n  },\n  setHistory: function(histData) {\n    var hist = this.history = new History(this.history.maxGeneration)\n    hist.done = copyHistoryArray(histData.done.slice(0), null, true)\n    hist.undone = copyHistoryArray(histData.undone.slice(0), null, true)\n  },\n\n  setGutterMarker: docMethodOp(function(line, gutterID, value) {\n    return changeLine(this, line, \"gutter\", function (line) {\n      var markers = line.gutterMarkers || (line.gutterMarkers = {})\n      markers[gutterID] = value\n      if (!value && isEmpty(markers)) { line.gutterMarkers = null }\n      return true\n    })\n  }),\n\n  clearGutter: docMethodOp(function(gutterID) {\n    var this$1 = this;\n\n    this.iter(function (line) {\n      if (line.gutterMarkers && line.gutterMarkers[gutterID]) {\n        changeLine(this$1, line, \"gutter\", function () {\n          line.gutterMarkers[gutterID] = null\n          if (isEmpty(line.gutterMarkers)) { line.gutterMarkers = null }\n          return true\n        })\n      }\n    })\n  }),\n\n  lineInfo: function(line) {\n    var n\n    if (typeof line == \"number\") {\n      if (!isLine(this, line)) { return null }\n      n = line\n      line = getLine(this, line)\n      if (!line) { return null }\n    } else {\n      n = lineNo(line)\n      if (n == null) { return null }\n    }\n    return {line: n, handle: line, text: line.text, gutterMarkers: line.gutterMarkers,\n            textClass: line.textClass, bgClass: line.bgClass, wrapClass: line.wrapClass,\n            widgets: line.widgets}\n  },\n\n  addLineClass: docMethodOp(function(handle, where, cls) {\n    return changeLine(this, handle, where == \"gutter\" ? \"gutter\" : \"class\", function (line) {\n      var prop = where == \"text\" ? \"textClass\"\n               : where == \"background\" ? \"bgClass\"\n               : where == \"gutter\" ? \"gutterClass\" : \"wrapClass\"\n      if (!line[prop]) { line[prop] = cls }\n      else if (classTest(cls).test(line[prop])) { return false }\n      else { line[prop] += \" \" + cls }\n      return true\n    })\n  }),\n  removeLineClass: docMethodOp(function(handle, where, cls) {\n    return changeLine(this, handle, where == \"gutter\" ? \"gutter\" : \"class\", function (line) {\n      var prop = where == \"text\" ? \"textClass\"\n               : where == \"background\" ? \"bgClass\"\n               : where == \"gutter\" ? \"gutterClass\" : \"wrapClass\"\n      var cur = line[prop]\n      if (!cur) { return false }\n      else if (cls == null) { line[prop] = null }\n      else {\n        var found = cur.match(classTest(cls))\n        if (!found) { return false }\n        var end = found.index + found[0].length\n        line[prop] = cur.slice(0, found.index) + (!found.index || end == cur.length ? \"\" : \" \") + cur.slice(end) || null\n      }\n      return true\n    })\n  }),\n\n  addLineWidget: docMethodOp(function(handle, node, options) {\n    return addLineWidget(this, handle, node, options)\n  }),\n  removeLineWidget: function(widget) { widget.clear() },\n\n  markText: function(from, to, options) {\n    return markText(this, clipPos(this, from), clipPos(this, to), options, options && options.type || \"range\")\n  },\n  setBookmark: function(pos, options) {\n    var realOpts = {replacedWith: options && (options.nodeType == null ? options.widget : options),\n                    insertLeft: options && options.insertLeft,\n                    clearWhenEmpty: false, shared: options && options.shared,\n                    handleMouseEvents: options && options.handleMouseEvents}\n    pos = clipPos(this, pos)\n    return markText(this, pos, pos, realOpts, \"bookmark\")\n  },\n  findMarksAt: function(pos) {\n    pos = clipPos(this, pos)\n    var markers = [], spans = getLine(this, pos.line).markedSpans\n    if (spans) { for (var i = 0; i < spans.length; ++i) {\n      var span = spans[i]\n      if ((span.from == null || span.from <= pos.ch) &&\n          (span.to == null || span.to >= pos.ch))\n        { markers.push(span.marker.parent || span.marker) }\n    } }\n    return markers\n  },\n  findMarks: function(from, to, filter) {\n    from = clipPos(this, from); to = clipPos(this, to)\n    var found = [], lineNo = from.line\n    this.iter(from.line, to.line + 1, function (line) {\n      var spans = line.markedSpans\n      if (spans) { for (var i = 0; i < spans.length; i++) {\n        var span = spans[i]\n        if (!(span.to != null && lineNo == from.line && from.ch >= span.to ||\n              span.from == null && lineNo != from.line ||\n              span.from != null && lineNo == to.line && span.from >= to.ch) &&\n            (!filter || filter(span.marker)))\n          { found.push(span.marker.parent || span.marker) }\n      } }\n      ++lineNo\n    })\n    return found\n  },\n  getAllMarks: function() {\n    var markers = []\n    this.iter(function (line) {\n      var sps = line.markedSpans\n      if (sps) { for (var i = 0; i < sps.length; ++i)\n        { if (sps[i].from != null) { markers.push(sps[i].marker) } } }\n    })\n    return markers\n  },\n\n  posFromIndex: function(off) {\n    var ch, lineNo = this.first, sepSize = this.lineSeparator().length\n    this.iter(function (line) {\n      var sz = line.text.length + sepSize\n      if (sz > off) { ch = off; return true }\n      off -= sz\n      ++lineNo\n    })\n    return clipPos(this, Pos(lineNo, ch))\n  },\n  indexFromPos: function (coords) {\n    coords = clipPos(this, coords)\n    var index = coords.ch\n    if (coords.line < this.first || coords.ch < 0) { return 0 }\n    var sepSize = this.lineSeparator().length\n    this.iter(this.first, coords.line, function (line) { // iter aborts when callback returns a truthy value\n      index += line.text.length + sepSize\n    })\n    return index\n  },\n\n  copy: function(copyHistory) {\n    var doc = new Doc(getLines(this, this.first, this.first + this.size),\n                      this.modeOption, this.first, this.lineSep, this.direction)\n    doc.scrollTop = this.scrollTop; doc.scrollLeft = this.scrollLeft\n    doc.sel = this.sel\n    doc.extend = false\n    if (copyHistory) {\n      doc.history.undoDepth = this.history.undoDepth\n      doc.setHistory(this.getHistory())\n    }\n    return doc\n  },\n\n  linkedDoc: function(options) {\n    if (!options) { options = {} }\n    var from = this.first, to = this.first + this.size\n    if (options.from != null && options.from > from) { from = options.from }\n    if (options.to != null && options.to < to) { to = options.to }\n    var copy = new Doc(getLines(this, from, to), options.mode || this.modeOption, from, this.lineSep, this.direction)\n    if (options.sharedHist) { copy.history = this.history\n    ; }(this.linked || (this.linked = [])).push({doc: copy, sharedHist: options.sharedHist})\n    copy.linked = [{doc: this, isParent: true, sharedHist: options.sharedHist}]\n    copySharedMarkers(copy, findSharedMarkers(this))\n    return copy\n  },\n  unlinkDoc: function(other) {\n    var this$1 = this;\n\n    if (other instanceof CodeMirror) { other = other.doc }\n    if (this.linked) { for (var i = 0; i < this.linked.length; ++i) {\n      var link = this$1.linked[i]\n      if (link.doc != other) { continue }\n      this$1.linked.splice(i, 1)\n      other.unlinkDoc(this$1)\n      detachSharedMarkers(findSharedMarkers(this$1))\n      break\n    } }\n    // If the histories were shared, split them again\n    if (other.history == this.history) {\n      var splitIds = [other.id]\n      linkedDocs(other, function (doc) { return splitIds.push(doc.id); }, true)\n      other.history = new History(null)\n      other.history.done = copyHistoryArray(this.history.done, splitIds)\n      other.history.undone = copyHistoryArray(this.history.undone, splitIds)\n    }\n  },\n  iterLinkedDocs: function(f) {linkedDocs(this, f)},\n\n  getMode: function() {return this.mode},\n  getEditor: function() {return this.cm},\n\n  splitLines: function(str) {\n    if (this.lineSep) { return str.split(this.lineSep) }\n    return splitLinesAuto(str)\n  },\n  lineSeparator: function() { return this.lineSep || \"\\n\" },\n\n  setDirection: docMethodOp(function (dir) {\n    if (dir != \"rtl\") { dir = \"ltr\" }\n    if (dir == this.direction) { return }\n    this.direction = dir\n    this.iter(function (line) { return line.order = null; })\n    if (this.cm) { directionChanged(this.cm) }\n  })\n})\n\n// Public alias.\nDoc.prototype.eachLine = Doc.prototype.iter\n\n// Kludge to work around strange IE behavior where it'll sometimes\n// re-fire a series of drag-related events right after the drop (#1551)\nvar lastDrop = 0\n\nfunction onDrop(e) {\n  var cm = this\n  clearDragCursor(cm)\n  if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e))\n    { return }\n  e_preventDefault(e)\n  if (ie) { lastDrop = +new Date }\n  var pos = posFromMouse(cm, e, true), files = e.dataTransfer.files\n  if (!pos || cm.isReadOnly()) { return }\n  // Might be a file drop, in which case we simply extract the text\n  // and insert it.\n  if (files && files.length && window.FileReader && window.File) {\n    var n = files.length, text = Array(n), read = 0\n    var loadFile = function (file, i) {\n      if (cm.options.allowDropFileTypes &&\n          indexOf(cm.options.allowDropFileTypes, file.type) == -1)\n        { return }\n\n      var reader = new FileReader\n      reader.onload = operation(cm, function () {\n        var content = reader.result\n        if (/[\\x00-\\x08\\x0e-\\x1f]{2}/.test(content)) { content = \"\" }\n        text[i] = content\n        if (++read == n) {\n          pos = clipPos(cm.doc, pos)\n          var change = {from: pos, to: pos,\n                        text: cm.doc.splitLines(text.join(cm.doc.lineSeparator())),\n                        origin: \"paste\"}\n          makeChange(cm.doc, change)\n          setSelectionReplaceHistory(cm.doc, simpleSelection(pos, changeEnd(change)))\n        }\n      })\n      reader.readAsText(file)\n    }\n    for (var i = 0; i < n; ++i) { loadFile(files[i], i) }\n  } else { // Normal drop\n    // Don't do a replace if the drop happened inside of the selected text.\n    if (cm.state.draggingText && cm.doc.sel.contains(pos) > -1) {\n      cm.state.draggingText(e)\n      // Ensure the editor is re-focused\n      setTimeout(function () { return cm.display.input.focus(); }, 20)\n      return\n    }\n    try {\n      var text$1 = e.dataTransfer.getData(\"Text\")\n      if (text$1) {\n        var selected\n        if (cm.state.draggingText && !cm.state.draggingText.copy)\n          { selected = cm.listSelections() }\n        setSelectionNoUndo(cm.doc, simpleSelection(pos, pos))\n        if (selected) { for (var i$1 = 0; i$1 < selected.length; ++i$1)\n          { replaceRange(cm.doc, \"\", selected[i$1].anchor, selected[i$1].head, \"drag\") } }\n        cm.replaceSelection(text$1, \"around\", \"paste\")\n        cm.display.input.focus()\n      }\n    }\n    catch(e){}\n  }\n}\n\nfunction onDragStart(cm, e) {\n  if (ie && (!cm.state.draggingText || +new Date - lastDrop < 100)) { e_stop(e); return }\n  if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) { return }\n\n  e.dataTransfer.setData(\"Text\", cm.getSelection())\n  e.dataTransfer.effectAllowed = \"copyMove\"\n\n  // Use dummy image instead of default browsers image.\n  // Recent Safari (~6.0.2) have a tendency to segfault when this happens, so we don't do it there.\n  if (e.dataTransfer.setDragImage && !safari) {\n    var img = elt(\"img\", null, null, \"position: fixed; left: 0; top: 0;\")\n    img.src = \"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\"\n    if (presto) {\n      img.width = img.height = 1\n      cm.display.wrapper.appendChild(img)\n      // Force a relayout, or Opera won't use our image for some obscure reason\n      img._top = img.offsetTop\n    }\n    e.dataTransfer.setDragImage(img, 0, 0)\n    if (presto) { img.parentNode.removeChild(img) }\n  }\n}\n\nfunction onDragOver(cm, e) {\n  var pos = posFromMouse(cm, e)\n  if (!pos) { return }\n  var frag = document.createDocumentFragment()\n  drawSelectionCursor(cm, pos, frag)\n  if (!cm.display.dragCursor) {\n    cm.display.dragCursor = elt(\"div\", null, \"CodeMirror-cursors CodeMirror-dragcursors\")\n    cm.display.lineSpace.insertBefore(cm.display.dragCursor, cm.display.cursorDiv)\n  }\n  removeChildrenAndAdd(cm.display.dragCursor, frag)\n}\n\nfunction clearDragCursor(cm) {\n  if (cm.display.dragCursor) {\n    cm.display.lineSpace.removeChild(cm.display.dragCursor)\n    cm.display.dragCursor = null\n  }\n}\n\n// These must be handled carefully, because naively registering a\n// handler for each editor will cause the editors to never be\n// garbage collected.\n\nfunction forEachCodeMirror(f) {\n  if (!document.getElementsByClassName) { return }\n  var byClass = document.getElementsByClassName(\"CodeMirror\")\n  for (var i = 0; i < byClass.length; i++) {\n    var cm = byClass[i].CodeMirror\n    if (cm) { f(cm) }\n  }\n}\n\nvar globalsRegistered = false\nfunction ensureGlobalHandlers() {\n  if (globalsRegistered) { return }\n  registerGlobalHandlers()\n  globalsRegistered = true\n}\nfunction registerGlobalHandlers() {\n  // When the window resizes, we need to refresh active editors.\n  var resizeTimer\n  on(window, \"resize\", function () {\n    if (resizeTimer == null) { resizeTimer = setTimeout(function () {\n      resizeTimer = null\n      forEachCodeMirror(onResize)\n    }, 100) }\n  })\n  // When the window loses focus, we want to show the editor as blurred\n  on(window, \"blur\", function () { return forEachCodeMirror(onBlur); })\n}\n// Called when the window resizes\nfunction onResize(cm) {\n  var d = cm.display\n  if (d.lastWrapHeight == d.wrapper.clientHeight && d.lastWrapWidth == d.wrapper.clientWidth)\n    { return }\n  // Might be a text scaling operation, clear size caches.\n  d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null\n  d.scrollbarsClipped = false\n  cm.setSize()\n}\n\nvar keyNames = {\n  3: \"Enter\", 8: \"Backspace\", 9: \"Tab\", 13: \"Enter\", 16: \"Shift\", 17: \"Ctrl\", 18: \"Alt\",\n  19: \"Pause\", 20: \"CapsLock\", 27: \"Esc\", 32: \"Space\", 33: \"PageUp\", 34: \"PageDown\", 35: \"End\",\n  36: \"Home\", 37: \"Left\", 38: \"Up\", 39: \"Right\", 40: \"Down\", 44: \"PrintScrn\", 45: \"Insert\",\n  46: \"Delete\", 59: \";\", 61: \"=\", 91: \"Mod\", 92: \"Mod\", 93: \"Mod\",\n  106: \"*\", 107: \"=\", 109: \"-\", 110: \".\", 111: \"/\", 127: \"Delete\",\n  173: \"-\", 186: \";\", 187: \"=\", 188: \",\", 189: \"-\", 190: \".\", 191: \"/\", 192: \"`\", 219: \"[\", 220: \"\\\\\",\n  221: \"]\", 222: \"'\", 63232: \"Up\", 63233: \"Down\", 63234: \"Left\", 63235: \"Right\", 63272: \"Delete\",\n  63273: \"Home\", 63275: \"End\", 63276: \"PageUp\", 63277: \"PageDown\", 63302: \"Insert\"\n}\n\n// Number keys\nfor (var i = 0; i < 10; i++) { keyNames[i + 48] = keyNames[i + 96] = String(i) }\n// Alphabetic keys\nfor (var i$1 = 65; i$1 <= 90; i$1++) { keyNames[i$1] = String.fromCharCode(i$1) }\n// Function keys\nfor (var i$2 = 1; i$2 <= 12; i$2++) { keyNames[i$2 + 111] = keyNames[i$2 + 63235] = \"F\" + i$2 }\n\nvar keyMap = {}\n\nkeyMap.basic = {\n  \"Left\": \"goCharLeft\", \"Right\": \"goCharRight\", \"Up\": \"goLineUp\", \"Down\": \"goLineDown\",\n  \"End\": \"goLineEnd\", \"Home\": \"goLineStartSmart\", \"PageUp\": \"goPageUp\", \"PageDown\": \"goPageDown\",\n  \"Delete\": \"delCharAfter\", \"Backspace\": \"delCharBefore\", \"Shift-Backspace\": \"delCharBefore\",\n  \"Tab\": \"defaultTab\", \"Shift-Tab\": \"indentAuto\",\n  \"Enter\": \"newlineAndIndent\", \"Insert\": \"toggleOverwrite\",\n  \"Esc\": \"singleSelection\"\n}\n// Note that the save and find-related commands aren't defined by\n// default. User code or addons can define them. Unknown commands\n// are simply ignored.\nkeyMap.pcDefault = {\n  \"Ctrl-A\": \"selectAll\", \"Ctrl-D\": \"deleteLine\", \"Ctrl-Z\": \"undo\", \"Shift-Ctrl-Z\": \"redo\", \"Ctrl-Y\": \"redo\",\n  \"Ctrl-Home\": \"goDocStart\", \"Ctrl-End\": \"goDocEnd\", \"Ctrl-Up\": \"goLineUp\", \"Ctrl-Down\": \"goLineDown\",\n  \"Ctrl-Left\": \"goGroupLeft\", \"Ctrl-Right\": \"goGroupRight\", \"Alt-Left\": \"goLineStart\", \"Alt-Right\": \"goLineEnd\",\n  \"Ctrl-Backspace\": \"delGroupBefore\", \"Ctrl-Delete\": \"delGroupAfter\", \"Ctrl-S\": \"save\", \"Ctrl-F\": \"find\",\n  \"Ctrl-G\": \"findNext\", \"Shift-Ctrl-G\": \"findPrev\", \"Shift-Ctrl-F\": \"replace\", \"Shift-Ctrl-R\": \"replaceAll\",\n  \"Ctrl-[\": \"indentLess\", \"Ctrl-]\": \"indentMore\",\n  \"Ctrl-U\": \"undoSelection\", \"Shift-Ctrl-U\": \"redoSelection\", \"Alt-U\": \"redoSelection\",\n  fallthrough: \"basic\"\n}\n// Very basic readline/emacs-style bindings, which are standard on Mac.\nkeyMap.emacsy = {\n  \"Ctrl-F\": \"goCharRight\", \"Ctrl-B\": \"goCharLeft\", \"Ctrl-P\": \"goLineUp\", \"Ctrl-N\": \"goLineDown\",\n  \"Alt-F\": \"goWordRight\", \"Alt-B\": \"goWordLeft\", \"Ctrl-A\": \"goLineStart\", \"Ctrl-E\": \"goLineEnd\",\n  \"Ctrl-V\": \"goPageDown\", \"Shift-Ctrl-V\": \"goPageUp\", \"Ctrl-D\": \"delCharAfter\", \"Ctrl-H\": \"delCharBefore\",\n  \"Alt-D\": \"delWordAfter\", \"Alt-Backspace\": \"delWordBefore\", \"Ctrl-K\": \"killLine\", \"Ctrl-T\": \"transposeChars\",\n  \"Ctrl-O\": \"openLine\"\n}\nkeyMap.macDefault = {\n  \"Cmd-A\": \"selectAll\", \"Cmd-D\": \"deleteLine\", \"Cmd-Z\": \"undo\", \"Shift-Cmd-Z\": \"redo\", \"Cmd-Y\": \"redo\",\n  \"Cmd-Home\": \"goDocStart\", \"Cmd-Up\": \"goDocStart\", \"Cmd-End\": \"goDocEnd\", \"Cmd-Down\": \"goDocEnd\", \"Alt-Left\": \"goGroupLeft\",\n  \"Alt-Right\": \"goGroupRight\", \"Cmd-Left\": \"goLineLeft\", \"Cmd-Right\": \"goLineRight\", \"Alt-Backspace\": \"delGroupBefore\",\n  \"Ctrl-Alt-Backspace\": \"delGroupAfter\", \"Alt-Delete\": \"delGroupAfter\", \"Cmd-S\": \"save\", \"Cmd-F\": \"find\",\n  \"Cmd-G\": \"findNext\", \"Shift-Cmd-G\": \"findPrev\", \"Cmd-Alt-F\": \"replace\", \"Shift-Cmd-Alt-F\": \"replaceAll\",\n  \"Cmd-[\": \"indentLess\", \"Cmd-]\": \"indentMore\", \"Cmd-Backspace\": \"delWrappedLineLeft\", \"Cmd-Delete\": \"delWrappedLineRight\",\n  \"Cmd-U\": \"undoSelection\", \"Shift-Cmd-U\": \"redoSelection\", \"Ctrl-Up\": \"goDocStart\", \"Ctrl-Down\": \"goDocEnd\",\n  fallthrough: [\"basic\", \"emacsy\"]\n}\nkeyMap[\"default\"] = mac ? keyMap.macDefault : keyMap.pcDefault\n\n// KEYMAP DISPATCH\n\nfunction normalizeKeyName(name) {\n  var parts = name.split(/-(?!$)/)\n  name = parts[parts.length - 1]\n  var alt, ctrl, shift, cmd\n  for (var i = 0; i < parts.length - 1; i++) {\n    var mod = parts[i]\n    if (/^(cmd|meta|m)$/i.test(mod)) { cmd = true }\n    else if (/^a(lt)?$/i.test(mod)) { alt = true }\n    else if (/^(c|ctrl|control)$/i.test(mod)) { ctrl = true }\n    else if (/^s(hift)?$/i.test(mod)) { shift = true }\n    else { throw new Error(\"Unrecognized modifier name: \" + mod) }\n  }\n  if (alt) { name = \"Alt-\" + name }\n  if (ctrl) { name = \"Ctrl-\" + name }\n  if (cmd) { name = \"Cmd-\" + name }\n  if (shift) { name = \"Shift-\" + name }\n  return name\n}\n\n// This is a kludge to keep keymaps mostly working as raw objects\n// (backwards compatibility) while at the same time support features\n// like normalization and multi-stroke key bindings. It compiles a\n// new normalized keymap, and then updates the old object to reflect\n// this.\nfunction normalizeKeyMap(keymap) {\n  var copy = {}\n  for (var keyname in keymap) { if (keymap.hasOwnProperty(keyname)) {\n    var value = keymap[keyname]\n    if (/^(name|fallthrough|(de|at)tach)$/.test(keyname)) { continue }\n    if (value == \"...\") { delete keymap[keyname]; continue }\n\n    var keys = map(keyname.split(\" \"), normalizeKeyName)\n    for (var i = 0; i < keys.length; i++) {\n      var val = (void 0), name = (void 0)\n      if (i == keys.length - 1) {\n        name = keys.join(\" \")\n        val = value\n      } else {\n        name = keys.slice(0, i + 1).join(\" \")\n        val = \"...\"\n      }\n      var prev = copy[name]\n      if (!prev) { copy[name] = val }\n      else if (prev != val) { throw new Error(\"Inconsistent bindings for \" + name) }\n    }\n    delete keymap[keyname]\n  } }\n  for (var prop in copy) { keymap[prop] = copy[prop] }\n  return keymap\n}\n\nfunction lookupKey(key, map, handle, context) {\n  map = getKeyMap(map)\n  var found = map.call ? map.call(key, context) : map[key]\n  if (found === false) { return \"nothing\" }\n  if (found === \"...\") { return \"multi\" }\n  if (found != null && handle(found)) { return \"handled\" }\n\n  if (map.fallthrough) {\n    if (Object.prototype.toString.call(map.fallthrough) != \"[object Array]\")\n      { return lookupKey(key, map.fallthrough, handle, context) }\n    for (var i = 0; i < map.fallthrough.length; i++) {\n      var result = lookupKey(key, map.fallthrough[i], handle, context)\n      if (result) { return result }\n    }\n  }\n}\n\n// Modifier key presses don't count as 'real' key presses for the\n// purpose of keymap fallthrough.\nfunction isModifierKey(value) {\n  var name = typeof value == \"string\" ? value : keyNames[value.keyCode]\n  return name == \"Ctrl\" || name == \"Alt\" || name == \"Shift\" || name == \"Mod\"\n}\n\nfunction addModifierNames(name, event, noShift) {\n  var base = name\n  if (event.altKey && base != \"Alt\") { name = \"Alt-\" + name }\n  if ((flipCtrlCmd ? event.metaKey : event.ctrlKey) && base != \"Ctrl\") { name = \"Ctrl-\" + name }\n  if ((flipCtrlCmd ? event.ctrlKey : event.metaKey) && base != \"Cmd\") { name = \"Cmd-\" + name }\n  if (!noShift && event.shiftKey && base != \"Shift\") { name = \"Shift-\" + name }\n  return name\n}\n\n// Look up the name of a key as indicated by an event object.\nfunction keyName(event, noShift) {\n  if (presto && event.keyCode == 34 && event[\"char\"]) { return false }\n  var name = keyNames[event.keyCode]\n  if (name == null || event.altGraphKey) { return false }\n  return addModifierNames(name, event, noShift)\n}\n\nfunction getKeyMap(val) {\n  return typeof val == \"string\" ? keyMap[val] : val\n}\n\n// Helper for deleting text near the selection(s), used to implement\n// backspace, delete, and similar functionality.\nfunction deleteNearSelection(cm, compute) {\n  var ranges = cm.doc.sel.ranges, kill = []\n  // Build up a set of ranges to kill first, merging overlapping\n  // ranges.\n  for (var i = 0; i < ranges.length; i++) {\n    var toKill = compute(ranges[i])\n    while (kill.length && cmp(toKill.from, lst(kill).to) <= 0) {\n      var replaced = kill.pop()\n      if (cmp(replaced.from, toKill.from) < 0) {\n        toKill.from = replaced.from\n        break\n      }\n    }\n    kill.push(toKill)\n  }\n  // Next, remove those actual ranges.\n  runInOp(cm, function () {\n    for (var i = kill.length - 1; i >= 0; i--)\n      { replaceRange(cm.doc, \"\", kill[i].from, kill[i].to, \"+delete\") }\n    ensureCursorVisible(cm)\n  })\n}\n\nfunction moveCharLogically(line, ch, dir) {\n  var target = skipExtendingChars(line.text, ch + dir, dir)\n  return target < 0 || target > line.text.length ? null : target\n}\n\nfunction moveLogically(line, start, dir) {\n  var ch = moveCharLogically(line, start.ch, dir)\n  return ch == null ? null : new Pos(start.line, ch, dir < 0 ? \"after\" : \"before\")\n}\n\nfunction endOfLine(visually, cm, lineObj, lineNo, dir) {\n  if (visually) {\n    var order = getOrder(lineObj, cm.doc.direction)\n    if (order) {\n      var part = dir < 0 ? lst(order) : order[0]\n      var moveInStorageOrder = (dir < 0) == (part.level == 1)\n      var sticky = moveInStorageOrder ? \"after\" : \"before\"\n      var ch\n      // With a wrapped rtl chunk (possibly spanning multiple bidi parts),\n      // it could be that the last bidi part is not on the last visual line,\n      // since visual lines contain content order-consecutive chunks.\n      // Thus, in rtl, we are looking for the first (content-order) character\n      // in the rtl chunk that is on the last line (that is, the same line\n      // as the last (content-order) character).\n      if (part.level > 0) {\n        var prep = prepareMeasureForLine(cm, lineObj)\n        ch = dir < 0 ? lineObj.text.length - 1 : 0\n        var targetTop = measureCharPrepared(cm, prep, ch).top\n        ch = findFirst(function (ch) { return measureCharPrepared(cm, prep, ch).top == targetTop; }, (dir < 0) == (part.level == 1) ? part.from : part.to - 1, ch)\n        if (sticky == \"before\") { ch = moveCharLogically(lineObj, ch, 1) }\n      } else { ch = dir < 0 ? part.to : part.from }\n      return new Pos(lineNo, ch, sticky)\n    }\n  }\n  return new Pos(lineNo, dir < 0 ? lineObj.text.length : 0, dir < 0 ? \"before\" : \"after\")\n}\n\nfunction moveVisually(cm, line, start, dir) {\n  var bidi = getOrder(line, cm.doc.direction)\n  if (!bidi) { return moveLogically(line, start, dir) }\n  if (start.ch >= line.text.length) {\n    start.ch = line.text.length\n    start.sticky = \"before\"\n  } else if (start.ch <= 0) {\n    start.ch = 0\n    start.sticky = \"after\"\n  }\n  var partPos = getBidiPartAt(bidi, start.ch, start.sticky), part = bidi[partPos]\n  if (cm.doc.direction == \"ltr\" && part.level % 2 == 0 && (dir > 0 ? part.to > start.ch : part.from < start.ch)) {\n    // Case 1: We move within an ltr part in an ltr editor. Even with wrapped lines,\n    // nothing interesting happens.\n    return moveLogically(line, start, dir)\n  }\n\n  var mv = function (pos, dir) { return moveCharLogically(line, pos instanceof Pos ? pos.ch : pos, dir); }\n  var prep\n  var getWrappedLineExtent = function (ch) {\n    if (!cm.options.lineWrapping) { return {begin: 0, end: line.text.length} }\n    prep = prep || prepareMeasureForLine(cm, line)\n    return wrappedLineExtentChar(cm, line, prep, ch)\n  }\n  var wrappedLineExtent = getWrappedLineExtent(start.sticky == \"before\" ? mv(start, -1) : start.ch)\n\n  if (cm.doc.direction == \"rtl\" || part.level == 1) {\n    var moveInStorageOrder = (part.level == 1) == (dir < 0)\n    var ch = mv(start, moveInStorageOrder ? 1 : -1)\n    if (ch != null && (!moveInStorageOrder ? ch >= part.from && ch >= wrappedLineExtent.begin : ch <= part.to && ch <= wrappedLineExtent.end)) {\n      // Case 2: We move within an rtl part or in an rtl editor on the same visual line\n      var sticky = moveInStorageOrder ? \"before\" : \"after\"\n      return new Pos(start.line, ch, sticky)\n    }\n  }\n\n  // Case 3: Could not move within this bidi part in this visual line, so leave\n  // the current bidi part\n\n  var searchInVisualLine = function (partPos, dir, wrappedLineExtent) {\n    var getRes = function (ch, moveInStorageOrder) { return moveInStorageOrder\n      ? new Pos(start.line, mv(ch, 1), \"before\")\n      : new Pos(start.line, ch, \"after\"); }\n\n    for (; partPos >= 0 && partPos < bidi.length; partPos += dir) {\n      var part = bidi[partPos]\n      var moveInStorageOrder = (dir > 0) == (part.level != 1)\n      var ch = moveInStorageOrder ? wrappedLineExtent.begin : mv(wrappedLineExtent.end, -1)\n      if (part.from <= ch && ch < part.to) { return getRes(ch, moveInStorageOrder) }\n      ch = moveInStorageOrder ? part.from : mv(part.to, -1)\n      if (wrappedLineExtent.begin <= ch && ch < wrappedLineExtent.end) { return getRes(ch, moveInStorageOrder) }\n    }\n  }\n\n  // Case 3a: Look for other bidi parts on the same visual line\n  var res = searchInVisualLine(partPos + dir, dir, wrappedLineExtent)\n  if (res) { return res }\n\n  // Case 3b: Look for other bidi parts on the next visual line\n  var nextCh = dir > 0 ? wrappedLineExtent.end : mv(wrappedLineExtent.begin, -1)\n  if (nextCh != null && !(dir > 0 && nextCh == line.text.length)) {\n    res = searchInVisualLine(dir > 0 ? 0 : bidi.length - 1, dir, getWrappedLineExtent(nextCh))\n    if (res) { return res }\n  }\n\n  // Case 4: Nowhere to move\n  return null\n}\n\n// Commands are parameter-less actions that can be performed on an\n// editor, mostly used for keybindings.\nvar commands = {\n  selectAll: selectAll,\n  singleSelection: function (cm) { return cm.setSelection(cm.getCursor(\"anchor\"), cm.getCursor(\"head\"), sel_dontScroll); },\n  killLine: function (cm) { return deleteNearSelection(cm, function (range) {\n    if (range.empty()) {\n      var len = getLine(cm.doc, range.head.line).text.length\n      if (range.head.ch == len && range.head.line < cm.lastLine())\n        { return {from: range.head, to: Pos(range.head.line + 1, 0)} }\n      else\n        { return {from: range.head, to: Pos(range.head.line, len)} }\n    } else {\n      return {from: range.from(), to: range.to()}\n    }\n  }); },\n  deleteLine: function (cm) { return deleteNearSelection(cm, function (range) { return ({\n    from: Pos(range.from().line, 0),\n    to: clipPos(cm.doc, Pos(range.to().line + 1, 0))\n  }); }); },\n  delLineLeft: function (cm) { return deleteNearSelection(cm, function (range) { return ({\n    from: Pos(range.from().line, 0), to: range.from()\n  }); }); },\n  delWrappedLineLeft: function (cm) { return deleteNearSelection(cm, function (range) {\n    var top = cm.charCoords(range.head, \"div\").top + 5\n    var leftPos = cm.coordsChar({left: 0, top: top}, \"div\")\n    return {from: leftPos, to: range.from()}\n  }); },\n  delWrappedLineRight: function (cm) { return deleteNearSelection(cm, function (range) {\n    var top = cm.charCoords(range.head, \"div\").top + 5\n    var rightPos = cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, \"div\")\n    return {from: range.from(), to: rightPos }\n  }); },\n  undo: function (cm) { return cm.undo(); },\n  redo: function (cm) { return cm.redo(); },\n  undoSelection: function (cm) { return cm.undoSelection(); },\n  redoSelection: function (cm) { return cm.redoSelection(); },\n  goDocStart: function (cm) { return cm.extendSelection(Pos(cm.firstLine(), 0)); },\n  goDocEnd: function (cm) { return cm.extendSelection(Pos(cm.lastLine())); },\n  goLineStart: function (cm) { return cm.extendSelectionsBy(function (range) { return lineStart(cm, range.head.line); },\n    {origin: \"+move\", bias: 1}\n  ); },\n  goLineStartSmart: function (cm) { return cm.extendSelectionsBy(function (range) { return lineStartSmart(cm, range.head); },\n    {origin: \"+move\", bias: 1}\n  ); },\n  goLineEnd: function (cm) { return cm.extendSelectionsBy(function (range) { return lineEnd(cm, range.head.line); },\n    {origin: \"+move\", bias: -1}\n  ); },\n  goLineRight: function (cm) { return cm.extendSelectionsBy(function (range) {\n    var top = cm.cursorCoords(range.head, \"div\").top + 5\n    return cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, \"div\")\n  }, sel_move); },\n  goLineLeft: function (cm) { return cm.extendSelectionsBy(function (range) {\n    var top = cm.cursorCoords(range.head, \"div\").top + 5\n    return cm.coordsChar({left: 0, top: top}, \"div\")\n  }, sel_move); },\n  goLineLeftSmart: function (cm) { return cm.extendSelectionsBy(function (range) {\n    var top = cm.cursorCoords(range.head, \"div\").top + 5\n    var pos = cm.coordsChar({left: 0, top: top}, \"div\")\n    if (pos.ch < cm.getLine(pos.line).search(/\\S/)) { return lineStartSmart(cm, range.head) }\n    return pos\n  }, sel_move); },\n  goLineUp: function (cm) { return cm.moveV(-1, \"line\"); },\n  goLineDown: function (cm) { return cm.moveV(1, \"line\"); },\n  goPageUp: function (cm) { return cm.moveV(-1, \"page\"); },\n  goPageDown: function (cm) { return cm.moveV(1, \"page\"); },\n  goCharLeft: function (cm) { return cm.moveH(-1, \"char\"); },\n  goCharRight: function (cm) { return cm.moveH(1, \"char\"); },\n  goColumnLeft: function (cm) { return cm.moveH(-1, \"column\"); },\n  goColumnRight: function (cm) { return cm.moveH(1, \"column\"); },\n  goWordLeft: function (cm) { return cm.moveH(-1, \"word\"); },\n  goGroupRight: function (cm) { return cm.moveH(1, \"group\"); },\n  goGroupLeft: function (cm) { return cm.moveH(-1, \"group\"); },\n  goWordRight: function (cm) { return cm.moveH(1, \"word\"); },\n  delCharBefore: function (cm) { return cm.deleteH(-1, \"char\"); },\n  delCharAfter: function (cm) { return cm.deleteH(1, \"char\"); },\n  delWordBefore: function (cm) { return cm.deleteH(-1, \"word\"); },\n  delWordAfter: function (cm) { return cm.deleteH(1, \"word\"); },\n  delGroupBefore: function (cm) { return cm.deleteH(-1, \"group\"); },\n  delGroupAfter: function (cm) { return cm.deleteH(1, \"group\"); },\n  indentAuto: function (cm) { return cm.indentSelection(\"smart\"); },\n  indentMore: function (cm) { return cm.indentSelection(\"add\"); },\n  indentLess: function (cm) { return cm.indentSelection(\"subtract\"); },\n  insertTab: function (cm) { return cm.replaceSelection(\"\\t\"); },\n  insertSoftTab: function (cm) {\n    var spaces = [], ranges = cm.listSelections(), tabSize = cm.options.tabSize\n    for (var i = 0; i < ranges.length; i++) {\n      var pos = ranges[i].from()\n      var col = countColumn(cm.getLine(pos.line), pos.ch, tabSize)\n      spaces.push(spaceStr(tabSize - col % tabSize))\n    }\n    cm.replaceSelections(spaces)\n  },\n  defaultTab: function (cm) {\n    if (cm.somethingSelected()) { cm.indentSelection(\"add\") }\n    else { cm.execCommand(\"insertTab\") }\n  },\n  // Swap the two chars left and right of each selection's head.\n  // Move cursor behind the two swapped characters afterwards.\n  //\n  // Doesn't consider line feeds a character.\n  // Doesn't scan more than one line above to find a character.\n  // Doesn't do anything on an empty line.\n  // Doesn't do anything with non-empty selections.\n  transposeChars: function (cm) { return runInOp(cm, function () {\n    var ranges = cm.listSelections(), newSel = []\n    for (var i = 0; i < ranges.length; i++) {\n      if (!ranges[i].empty()) { continue }\n      var cur = ranges[i].head, line = getLine(cm.doc, cur.line).text\n      if (line) {\n        if (cur.ch == line.length) { cur = new Pos(cur.line, cur.ch - 1) }\n        if (cur.ch > 0) {\n          cur = new Pos(cur.line, cur.ch + 1)\n          cm.replaceRange(line.charAt(cur.ch - 1) + line.charAt(cur.ch - 2),\n                          Pos(cur.line, cur.ch - 2), cur, \"+transpose\")\n        } else if (cur.line > cm.doc.first) {\n          var prev = getLine(cm.doc, cur.line - 1).text\n          if (prev) {\n            cur = new Pos(cur.line, 1)\n            cm.replaceRange(line.charAt(0) + cm.doc.lineSeparator() +\n                            prev.charAt(prev.length - 1),\n                            Pos(cur.line - 1, prev.length - 1), cur, \"+transpose\")\n          }\n        }\n      }\n      newSel.push(new Range(cur, cur))\n    }\n    cm.setSelections(newSel)\n  }); },\n  newlineAndIndent: function (cm) { return runInOp(cm, function () {\n    var sels = cm.listSelections()\n    for (var i = sels.length - 1; i >= 0; i--)\n      { cm.replaceRange(cm.doc.lineSeparator(), sels[i].anchor, sels[i].head, \"+input\") }\n    sels = cm.listSelections()\n    for (var i$1 = 0; i$1 < sels.length; i$1++)\n      { cm.indentLine(sels[i$1].from().line, null, true) }\n    ensureCursorVisible(cm)\n  }); },\n  openLine: function (cm) { return cm.replaceSelection(\"\\n\", \"start\"); },\n  toggleOverwrite: function (cm) { return cm.toggleOverwrite(); }\n}\n\n\nfunction lineStart(cm, lineN) {\n  var line = getLine(cm.doc, lineN)\n  var visual = visualLine(line)\n  if (visual != line) { lineN = lineNo(visual) }\n  return endOfLine(true, cm, visual, lineN, 1)\n}\nfunction lineEnd(cm, lineN) {\n  var line = getLine(cm.doc, lineN)\n  var visual = visualLineEnd(line)\n  if (visual != line) { lineN = lineNo(visual) }\n  return endOfLine(true, cm, line, lineN, -1)\n}\nfunction lineStartSmart(cm, pos) {\n  var start = lineStart(cm, pos.line)\n  var line = getLine(cm.doc, start.line)\n  var order = getOrder(line, cm.doc.direction)\n  if (!order || order[0].level == 0) {\n    var firstNonWS = Math.max(0, line.text.search(/\\S/))\n    var inWS = pos.line == start.line && pos.ch <= firstNonWS && pos.ch\n    return Pos(start.line, inWS ? 0 : firstNonWS, start.sticky)\n  }\n  return start\n}\n\n// Run a handler that was bound to a key.\nfunction doHandleBinding(cm, bound, dropShift) {\n  if (typeof bound == \"string\") {\n    bound = commands[bound]\n    if (!bound) { return false }\n  }\n  // Ensure previous input has been read, so that the handler sees a\n  // consistent view of the document\n  cm.display.input.ensurePolled()\n  var prevShift = cm.display.shift, done = false\n  try {\n    if (cm.isReadOnly()) { cm.state.suppressEdits = true }\n    if (dropShift) { cm.display.shift = false }\n    done = bound(cm) != Pass\n  } finally {\n    cm.display.shift = prevShift\n    cm.state.suppressEdits = false\n  }\n  return done\n}\n\nfunction lookupKeyForEditor(cm, name, handle) {\n  for (var i = 0; i < cm.state.keyMaps.length; i++) {\n    var result = lookupKey(name, cm.state.keyMaps[i], handle, cm)\n    if (result) { return result }\n  }\n  return (cm.options.extraKeys && lookupKey(name, cm.options.extraKeys, handle, cm))\n    || lookupKey(name, cm.options.keyMap, handle, cm)\n}\n\n// Note that, despite the name, this function is also used to check\n// for bound mouse clicks.\n\nvar stopSeq = new Delayed\nfunction dispatchKey(cm, name, e, handle) {\n  var seq = cm.state.keySeq\n  if (seq) {\n    if (isModifierKey(name)) { return \"handled\" }\n    stopSeq.set(50, function () {\n      if (cm.state.keySeq == seq) {\n        cm.state.keySeq = null\n        cm.display.input.reset()\n      }\n    })\n    name = seq + \" \" + name\n  }\n  var result = lookupKeyForEditor(cm, name, handle)\n\n  if (result == \"multi\")\n    { cm.state.keySeq = name }\n  if (result == \"handled\")\n    { signalLater(cm, \"keyHandled\", cm, name, e) }\n\n  if (result == \"handled\" || result == \"multi\") {\n    e_preventDefault(e)\n    restartBlink(cm)\n  }\n\n  if (seq && !result && /\\'$/.test(name)) {\n    e_preventDefault(e)\n    return true\n  }\n  return !!result\n}\n\n// Handle a key from the keydown event.\nfunction handleKeyBinding(cm, e) {\n  var name = keyName(e, true)\n  if (!name) { return false }\n\n  if (e.shiftKey && !cm.state.keySeq) {\n    // First try to resolve full name (including 'Shift-'). Failing\n    // that, see if there is a cursor-motion command (starting with\n    // 'go') bound to the keyname without 'Shift-'.\n    return dispatchKey(cm, \"Shift-\" + name, e, function (b) { return doHandleBinding(cm, b, true); })\n        || dispatchKey(cm, name, e, function (b) {\n             if (typeof b == \"string\" ? /^go[A-Z]/.test(b) : b.motion)\n               { return doHandleBinding(cm, b) }\n           })\n  } else {\n    return dispatchKey(cm, name, e, function (b) { return doHandleBinding(cm, b); })\n  }\n}\n\n// Handle a key from the keypress event\nfunction handleCharBinding(cm, e, ch) {\n  return dispatchKey(cm, \"'\" + ch + \"'\", e, function (b) { return doHandleBinding(cm, b, true); })\n}\n\nvar lastStoppedKey = null\nfunction onKeyDown(e) {\n  var cm = this\n  cm.curOp.focus = activeElt()\n  if (signalDOMEvent(cm, e)) { return }\n  // IE does strange things with escape.\n  if (ie && ie_version < 11 && e.keyCode == 27) { e.returnValue = false }\n  var code = e.keyCode\n  cm.display.shift = code == 16 || e.shiftKey\n  var handled = handleKeyBinding(cm, e)\n  if (presto) {\n    lastStoppedKey = handled ? code : null\n    // Opera has no cut event... we try to at least catch the key combo\n    if (!handled && code == 88 && !hasCopyEvent && (mac ? e.metaKey : e.ctrlKey))\n      { cm.replaceSelection(\"\", null, \"cut\") }\n  }\n\n  // Turn mouse into crosshair when Alt is held on Mac.\n  if (code == 18 && !/\\bCodeMirror-crosshair\\b/.test(cm.display.lineDiv.className))\n    { showCrossHair(cm) }\n}\n\nfunction showCrossHair(cm) {\n  var lineDiv = cm.display.lineDiv\n  addClass(lineDiv, \"CodeMirror-crosshair\")\n\n  function up(e) {\n    if (e.keyCode == 18 || !e.altKey) {\n      rmClass(lineDiv, \"CodeMirror-crosshair\")\n      off(document, \"keyup\", up)\n      off(document, \"mouseover\", up)\n    }\n  }\n  on(document, \"keyup\", up)\n  on(document, \"mouseover\", up)\n}\n\nfunction onKeyUp(e) {\n  if (e.keyCode == 16) { this.doc.sel.shift = false }\n  signalDOMEvent(this, e)\n}\n\nfunction onKeyPress(e) {\n  var cm = this\n  if (eventInWidget(cm.display, e) || signalDOMEvent(cm, e) || e.ctrlKey && !e.altKey || mac && e.metaKey) { return }\n  var keyCode = e.keyCode, charCode = e.charCode\n  if (presto && keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return}\n  if ((presto && (!e.which || e.which < 10)) && handleKeyBinding(cm, e)) { return }\n  var ch = String.fromCharCode(charCode == null ? keyCode : charCode)\n  // Some browsers fire keypress events for backspace\n  if (ch == \"\\x08\") { return }\n  if (handleCharBinding(cm, e, ch)) { return }\n  cm.display.input.onKeyPress(e)\n}\n\nvar DOUBLECLICK_DELAY = 400\n\nvar PastClick = function(time, pos, button) {\n  this.time = time\n  this.pos = pos\n  this.button = button\n};\n\nPastClick.prototype.compare = function (time, pos, button) {\n  return this.time + DOUBLECLICK_DELAY > time &&\n    cmp(pos, this.pos) == 0 && button == this.button\n};\n\nvar lastClick;\nvar lastDoubleClick;\nfunction clickRepeat(pos, button) {\n  var now = +new Date\n  if (lastDoubleClick && lastDoubleClick.compare(now, pos, button)) {\n    lastClick = lastDoubleClick = null\n    return \"triple\"\n  } else if (lastClick && lastClick.compare(now, pos, button)) {\n    lastDoubleClick = new PastClick(now, pos, button)\n    lastClick = null\n    return \"double\"\n  } else {\n    lastClick = new PastClick(now, pos, button)\n    lastDoubleClick = null\n    return \"single\"\n  }\n}\n\n// A mouse down can be a single click, double click, triple click,\n// start of selection drag, start of text drag, new cursor\n// (ctrl-click), rectangle drag (alt-drag), or xwin\n// middle-click-paste. Or it might be a click on something we should\n// not interfere with, such as a scrollbar or widget.\nfunction onMouseDown(e) {\n  var cm = this, display = cm.display\n  if (signalDOMEvent(cm, e) || display.activeTouch && display.input.supportsTouch()) { return }\n  display.input.ensurePolled()\n  display.shift = e.shiftKey\n\n  if (eventInWidget(display, e)) {\n    if (!webkit) {\n      // Briefly turn off draggability, to allow widgets to do\n      // normal dragging things.\n      display.scroller.draggable = false\n      setTimeout(function () { return display.scroller.draggable = true; }, 100)\n    }\n    return\n  }\n  if (clickInGutter(cm, e)) { return }\n  var pos = posFromMouse(cm, e), button = e_button(e), repeat = pos ? clickRepeat(pos, button) : \"single\"\n  window.focus()\n\n  // #3261: make sure, that we're not starting a second selection\n  if (button == 1 && cm.state.selectingText)\n    { cm.state.selectingText(e) }\n\n  if (pos && handleMappedButton(cm, button, pos, repeat, e)) { return }\n\n  if (button == 1) {\n    if (pos) { leftButtonDown(cm, pos, repeat, e) }\n    else if (e_target(e) == display.scroller) { e_preventDefault(e) }\n  } else if (button == 2) {\n    if (pos) { extendSelection(cm.doc, pos) }\n    setTimeout(function () { return display.input.focus(); }, 20)\n  } else if (button == 3) {\n    if (captureRightClick) { onContextMenu(cm, e) }\n    else { delayBlurEvent(cm) }\n  }\n}\n\nfunction handleMappedButton(cm, button, pos, repeat, event) {\n  var name = \"Click\"\n  if (repeat == \"double\") { name = \"Double\" + name }\n  else if (repeat == \"triple\") { name = \"Triple\" + name }\n  name = (button == 1 ? \"Left\" : button == 2 ? \"Middle\" : \"Right\") + name\n\n  return dispatchKey(cm,  addModifierNames(name, event), event, function (bound) {\n    if (typeof bound == \"string\") { bound = commands[bound] }\n    if (!bound) { return false }\n    var done = false\n    try {\n      if (cm.isReadOnly()) { cm.state.suppressEdits = true }\n      done = bound(cm, pos) != Pass\n    } finally {\n      cm.state.suppressEdits = false\n    }\n    return done\n  })\n}\n\nfunction configureMouse(cm, repeat, event) {\n  var option = cm.getOption(\"configureMouse\")\n  var value = option ? option(cm, repeat, event) : {}\n  if (value.unit == null) {\n    var rect = chromeOS ? event.shiftKey && event.metaKey : event.altKey\n    value.unit = rect ? \"rectangle\" : repeat == \"single\" ? \"char\" : repeat == \"double\" ? \"word\" : \"line\"\n  }\n  if (value.extend == null || cm.doc.extend) { value.extend = cm.doc.extend || event.shiftKey }\n  if (value.addNew == null) { value.addNew = mac ? event.metaKey : event.ctrlKey }\n  if (value.moveOnDrag == null) { value.moveOnDrag = !(mac ? event.altKey : event.ctrlKey) }\n  return value\n}\n\nfunction leftButtonDown(cm, pos, repeat, event) {\n  if (ie) { setTimeout(bind(ensureFocus, cm), 0) }\n  else { cm.curOp.focus = activeElt() }\n\n  var behavior = configureMouse(cm, repeat, event)\n\n  var sel = cm.doc.sel, contained\n  if (cm.options.dragDrop && dragAndDrop && !cm.isReadOnly() &&\n      repeat == \"single\" && (contained = sel.contains(pos)) > -1 &&\n      (cmp((contained = sel.ranges[contained]).from(), pos) < 0 || pos.xRel > 0) &&\n      (cmp(contained.to(), pos) > 0 || pos.xRel < 0))\n    { leftButtonStartDrag(cm, event, pos, behavior) }\n  else\n    { leftButtonSelect(cm, event, pos, behavior) }\n}\n\n// Start a text drag. When it ends, see if any dragging actually\n// happen, and treat as a click if it didn't.\nfunction leftButtonStartDrag(cm, event, pos, behavior) {\n  var display = cm.display, moved = false\n  var dragEnd = operation(cm, function (e) {\n    if (webkit) { display.scroller.draggable = false }\n    cm.state.draggingText = false\n    off(document, \"mouseup\", dragEnd)\n    off(document, \"mousemove\", mouseMove)\n    off(display.scroller, \"dragstart\", dragStart)\n    off(display.scroller, \"drop\", dragEnd)\n    if (!moved) {\n      e_preventDefault(e)\n      if (!behavior.addNew)\n        { extendSelection(cm.doc, pos, null, null, behavior.extend) }\n      // Work around unexplainable focus problem in IE9 (#2127) and Chrome (#3081)\n      if (webkit || ie && ie_version == 9)\n        { setTimeout(function () {document.body.focus(); display.input.focus()}, 20) }\n      else\n        { display.input.focus() }\n    }\n  })\n  var mouseMove = function(e2) {\n    moved = moved || Math.abs(event.clientX - e2.clientX) + Math.abs(event.clientY - e2.clientY) >= 10\n  }\n  var dragStart = function () { return moved = true; }\n  // Let the drag handler handle this.\n  if (webkit) { display.scroller.draggable = true }\n  cm.state.draggingText = dragEnd\n  dragEnd.copy = !behavior.moveOnDrag\n  // IE's approach to draggable\n  if (display.scroller.dragDrop) { display.scroller.dragDrop() }\n  on(document, \"mouseup\", dragEnd)\n  on(document, \"mousemove\", mouseMove)\n  on(display.scroller, \"dragstart\", dragStart)\n  on(display.scroller, \"drop\", dragEnd)\n\n  delayBlurEvent(cm)\n  setTimeout(function () { return display.input.focus(); }, 20)\n}\n\nfunction rangeForUnit(cm, pos, unit) {\n  if (unit == \"char\") { return new Range(pos, pos) }\n  if (unit == \"word\") { return cm.findWordAt(pos) }\n  if (unit == \"line\") { return new Range(Pos(pos.line, 0), clipPos(cm.doc, Pos(pos.line + 1, 0))) }\n  var result = unit(cm, pos)\n  return new Range(result.from, result.to)\n}\n\n// Normal selection, as opposed to text dragging.\nfunction leftButtonSelect(cm, event, start, behavior) {\n  var display = cm.display, doc = cm.doc\n  e_preventDefault(event)\n\n  var ourRange, ourIndex, startSel = doc.sel, ranges = startSel.ranges\n  if (behavior.addNew && !behavior.extend) {\n    ourIndex = doc.sel.contains(start)\n    if (ourIndex > -1)\n      { ourRange = ranges[ourIndex] }\n    else\n      { ourRange = new Range(start, start) }\n  } else {\n    ourRange = doc.sel.primary()\n    ourIndex = doc.sel.primIndex\n  }\n\n  if (behavior.unit == \"rectangle\") {\n    if (!behavior.addNew) { ourRange = new Range(start, start) }\n    start = posFromMouse(cm, event, true, true)\n    ourIndex = -1\n  } else {\n    var range = rangeForUnit(cm, start, behavior.unit)\n    if (behavior.extend)\n      { ourRange = extendRange(ourRange, range.anchor, range.head, behavior.extend) }\n    else\n      { ourRange = range }\n  }\n\n  if (!behavior.addNew) {\n    ourIndex = 0\n    setSelection(doc, new Selection([ourRange], 0), sel_mouse)\n    startSel = doc.sel\n  } else if (ourIndex == -1) {\n    ourIndex = ranges.length\n    setSelection(doc, normalizeSelection(ranges.concat([ourRange]), ourIndex),\n                 {scroll: false, origin: \"*mouse\"})\n  } else if (ranges.length > 1 && ranges[ourIndex].empty() && behavior.unit == \"char\" && !behavior.extend) {\n    setSelection(doc, normalizeSelection(ranges.slice(0, ourIndex).concat(ranges.slice(ourIndex + 1)), 0),\n                 {scroll: false, origin: \"*mouse\"})\n    startSel = doc.sel\n  } else {\n    replaceOneSelection(doc, ourIndex, ourRange, sel_mouse)\n  }\n\n  var lastPos = start\n  function extendTo(pos) {\n    if (cmp(lastPos, pos) == 0) { return }\n    lastPos = pos\n\n    if (behavior.unit == \"rectangle\") {\n      var ranges = [], tabSize = cm.options.tabSize\n      var startCol = countColumn(getLine(doc, start.line).text, start.ch, tabSize)\n      var posCol = countColumn(getLine(doc, pos.line).text, pos.ch, tabSize)\n      var left = Math.min(startCol, posCol), right = Math.max(startCol, posCol)\n      for (var line = Math.min(start.line, pos.line), end = Math.min(cm.lastLine(), Math.max(start.line, pos.line));\n           line <= end; line++) {\n        var text = getLine(doc, line).text, leftPos = findColumn(text, left, tabSize)\n        if (left == right)\n          { ranges.push(new Range(Pos(line, leftPos), Pos(line, leftPos))) }\n        else if (text.length > leftPos)\n          { ranges.push(new Range(Pos(line, leftPos), Pos(line, findColumn(text, right, tabSize)))) }\n      }\n      if (!ranges.length) { ranges.push(new Range(start, start)) }\n      setSelection(doc, normalizeSelection(startSel.ranges.slice(0, ourIndex).concat(ranges), ourIndex),\n                   {origin: \"*mouse\", scroll: false})\n      cm.scrollIntoView(pos)\n    } else {\n      var oldRange = ourRange\n      var range = rangeForUnit(cm, pos, behavior.unit)\n      var anchor = oldRange.anchor, head\n      if (cmp(range.anchor, anchor) > 0) {\n        head = range.head\n        anchor = minPos(oldRange.from(), range.anchor)\n      } else {\n        head = range.anchor\n        anchor = maxPos(oldRange.to(), range.head)\n      }\n      var ranges$1 = startSel.ranges.slice(0)\n      ranges$1[ourIndex] = bidiSimplify(cm, new Range(clipPos(doc, anchor), head))\n      setSelection(doc, normalizeSelection(ranges$1, ourIndex), sel_mouse)\n    }\n  }\n\n  var editorSize = display.wrapper.getBoundingClientRect()\n  // Used to ensure timeout re-tries don't fire when another extend\n  // happened in the meantime (clearTimeout isn't reliable -- at\n  // least on Chrome, the timeouts still happen even when cleared,\n  // if the clear happens after their scheduled firing time).\n  var counter = 0\n\n  function extend(e) {\n    var curCount = ++counter\n    var cur = posFromMouse(cm, e, true, behavior.unit == \"rectangle\")\n    if (!cur) { return }\n    if (cmp(cur, lastPos) != 0) {\n      cm.curOp.focus = activeElt()\n      extendTo(cur)\n      var visible = visibleLines(display, doc)\n      if (cur.line >= visible.to || cur.line < visible.from)\n        { setTimeout(operation(cm, function () {if (counter == curCount) { extend(e) }}), 150) }\n    } else {\n      var outside = e.clientY < editorSize.top ? -20 : e.clientY > editorSize.bottom ? 20 : 0\n      if (outside) { setTimeout(operation(cm, function () {\n        if (counter != curCount) { return }\n        display.scroller.scrollTop += outside\n        extend(e)\n      }), 50) }\n    }\n  }\n\n  function done(e) {\n    cm.state.selectingText = false\n    counter = Infinity\n    e_preventDefault(e)\n    display.input.focus()\n    off(document, \"mousemove\", move)\n    off(document, \"mouseup\", up)\n    doc.history.lastSelOrigin = null\n  }\n\n  var move = operation(cm, function (e) {\n    if (!e_button(e)) { done(e) }\n    else { extend(e) }\n  })\n  var up = operation(cm, done)\n  cm.state.selectingText = up\n  on(document, \"mousemove\", move)\n  on(document, \"mouseup\", up)\n}\n\n// Used when mouse-selecting to adjust the anchor to the proper side\n// of a bidi jump depending on the visual position of the head.\nfunction bidiSimplify(cm, range) {\n  var anchor = range.anchor;\n  var head = range.head;\n  var anchorLine = getLine(cm.doc, anchor.line)\n  if (cmp(anchor, head) == 0 && anchor.sticky == head.sticky) { return range }\n  var order = getOrder(anchorLine)\n  if (!order) { return range }\n  var index = getBidiPartAt(order, anchor.ch, anchor.sticky), part = order[index]\n  if (part.from != anchor.ch && part.to != anchor.ch) { return range }\n  var boundary = index + ((part.from == anchor.ch) == (part.level != 1) ? 0 : 1)\n  if (boundary == 0 || boundary == order.length) { return range }\n\n  // Compute the relative visual position of the head compared to the\n  // anchor (<0 is to the left, >0 to the right)\n  var leftSide\n  if (head.line != anchor.line) {\n    leftSide = (head.line - anchor.line) * (cm.doc.direction == \"ltr\" ? 1 : -1) > 0\n  } else {\n    var headIndex = getBidiPartAt(order, head.ch, head.sticky)\n    var dir = headIndex - index || (head.ch - anchor.ch) * (part.level == 1 ? -1 : 1)\n    if (headIndex == boundary - 1 || headIndex == boundary)\n      { leftSide = dir < 0 }\n    else\n      { leftSide = dir > 0 }\n  }\n\n  var usePart = order[boundary + (leftSide ? -1 : 0)]\n  var from = leftSide == (usePart.level == 1)\n  var ch = from ? usePart.from : usePart.to, sticky = from ? \"after\" : \"before\"\n  return anchor.ch == ch && anchor.sticky == sticky ? range : new Range(new Pos(anchor.line, ch, sticky), head)\n}\n\n\n// Determines whether an event happened in the gutter, and fires the\n// handlers for the corresponding event.\nfunction gutterEvent(cm, e, type, prevent) {\n  var mX, mY\n  if (e.touches) {\n    mX = e.touches[0].clientX\n    mY = e.touches[0].clientY\n  } else {\n    try { mX = e.clientX; mY = e.clientY }\n    catch(e) { return false }\n  }\n  if (mX >= Math.floor(cm.display.gutters.getBoundingClientRect().right)) { return false }\n  if (prevent) { e_preventDefault(e) }\n\n  var display = cm.display\n  var lineBox = display.lineDiv.getBoundingClientRect()\n\n  if (mY > lineBox.bottom || !hasHandler(cm, type)) { return e_defaultPrevented(e) }\n  mY -= lineBox.top - display.viewOffset\n\n  for (var i = 0; i < cm.options.gutters.length; ++i) {\n    var g = display.gutters.childNodes[i]\n    if (g && g.getBoundingClientRect().right >= mX) {\n      var line = lineAtHeight(cm.doc, mY)\n      var gutter = cm.options.gutters[i]\n      signal(cm, type, cm, line, gutter, e)\n      return e_defaultPrevented(e)\n    }\n  }\n}\n\nfunction clickInGutter(cm, e) {\n  return gutterEvent(cm, e, \"gutterClick\", true)\n}\n\n// CONTEXT MENU HANDLING\n\n// To make the context menu work, we need to briefly unhide the\n// textarea (making it as unobtrusive as possible) to let the\n// right-click take effect on it.\nfunction onContextMenu(cm, e) {\n  if (eventInWidget(cm.display, e) || contextMenuInGutter(cm, e)) { return }\n  if (signalDOMEvent(cm, e, \"contextmenu\")) { return }\n  cm.display.input.onContextMenu(e)\n}\n\nfunction contextMenuInGutter(cm, e) {\n  if (!hasHandler(cm, \"gutterContextMenu\")) { return false }\n  return gutterEvent(cm, e, \"gutterContextMenu\", false)\n}\n\nfunction themeChanged(cm) {\n  cm.display.wrapper.className = cm.display.wrapper.className.replace(/\\s*cm-s-\\S+/g, \"\") +\n    cm.options.theme.replace(/(^|\\s)\\s*/g, \" cm-s-\")\n  clearCaches(cm)\n}\n\nvar Init = {toString: function(){return \"CodeMirror.Init\"}}\n\nvar defaults = {}\nvar optionHandlers = {}\n\nfunction defineOptions(CodeMirror) {\n  var optionHandlers = CodeMirror.optionHandlers\n\n  function option(name, deflt, handle, notOnInit) {\n    CodeMirror.defaults[name] = deflt\n    if (handle) { optionHandlers[name] =\n      notOnInit ? function (cm, val, old) {if (old != Init) { handle(cm, val, old) }} : handle }\n  }\n\n  CodeMirror.defineOption = option\n\n  // Passed to option handlers when there is no old value.\n  CodeMirror.Init = Init\n\n  // These two are, on init, called from the constructor because they\n  // have to be initialized before the editor can start at all.\n  option(\"value\", \"\", function (cm, val) { return cm.setValue(val); }, true)\n  option(\"mode\", null, function (cm, val) {\n    cm.doc.modeOption = val\n    loadMode(cm)\n  }, true)\n\n  option(\"indentUnit\", 2, loadMode, true)\n  option(\"indentWithTabs\", false)\n  option(\"smartIndent\", true)\n  option(\"tabSize\", 4, function (cm) {\n    resetModeState(cm)\n    clearCaches(cm)\n    regChange(cm)\n  }, true)\n  option(\"lineSeparator\", null, function (cm, val) {\n    cm.doc.lineSep = val\n    if (!val) { return }\n    var newBreaks = [], lineNo = cm.doc.first\n    cm.doc.iter(function (line) {\n      for (var pos = 0;;) {\n        var found = line.text.indexOf(val, pos)\n        if (found == -1) { break }\n        pos = found + val.length\n        newBreaks.push(Pos(lineNo, found))\n      }\n      lineNo++\n    })\n    for (var i = newBreaks.length - 1; i >= 0; i--)\n      { replaceRange(cm.doc, val, newBreaks[i], Pos(newBreaks[i].line, newBreaks[i].ch + val.length)) }\n  })\n  option(\"specialChars\", /[\\u0000-\\u001f\\u007f-\\u009f\\u00ad\\u061c\\u200b-\\u200f\\u2028\\u2029\\ufeff]/g, function (cm, val, old) {\n    cm.state.specialChars = new RegExp(val.source + (val.test(\"\\t\") ? \"\" : \"|\\t\"), \"g\")\n    if (old != Init) { cm.refresh() }\n  })\n  option(\"specialCharPlaceholder\", defaultSpecialCharPlaceholder, function (cm) { return cm.refresh(); }, true)\n  option(\"electricChars\", true)\n  option(\"inputStyle\", mobile ? \"contenteditable\" : \"textarea\", function () {\n    throw new Error(\"inputStyle can not (yet) be changed in a running editor\") // FIXME\n  }, true)\n  option(\"spellcheck\", false, function (cm, val) { return cm.getInputField().spellcheck = val; }, true)\n  option(\"rtlMoveVisually\", !windows)\n  option(\"wholeLineUpdateBefore\", true)\n\n  option(\"theme\", \"default\", function (cm) {\n    themeChanged(cm)\n    guttersChanged(cm)\n  }, true)\n  option(\"keyMap\", \"default\", function (cm, val, old) {\n    var next = getKeyMap(val)\n    var prev = old != Init && getKeyMap(old)\n    if (prev && prev.detach) { prev.detach(cm, next) }\n    if (next.attach) { next.attach(cm, prev || null) }\n  })\n  option(\"extraKeys\", null)\n  option(\"configureMouse\", null)\n\n  option(\"lineWrapping\", false, wrappingChanged, true)\n  option(\"gutters\", [], function (cm) {\n    setGuttersForLineNumbers(cm.options)\n    guttersChanged(cm)\n  }, true)\n  option(\"fixedGutter\", true, function (cm, val) {\n    cm.display.gutters.style.left = val ? compensateForHScroll(cm.display) + \"px\" : \"0\"\n    cm.refresh()\n  }, true)\n  option(\"coverGutterNextToScrollbar\", false, function (cm) { return updateScrollbars(cm); }, true)\n  option(\"scrollbarStyle\", \"native\", function (cm) {\n    initScrollbars(cm)\n    updateScrollbars(cm)\n    cm.display.scrollbars.setScrollTop(cm.doc.scrollTop)\n    cm.display.scrollbars.setScrollLeft(cm.doc.scrollLeft)\n  }, true)\n  option(\"lineNumbers\", false, function (cm) {\n    setGuttersForLineNumbers(cm.options)\n    guttersChanged(cm)\n  }, true)\n  option(\"firstLineNumber\", 1, guttersChanged, true)\n  option(\"lineNumberFormatter\", function (integer) { return integer; }, guttersChanged, true)\n  option(\"showCursorWhenSelecting\", false, updateSelection, true)\n\n  option(\"resetSelectionOnContextMenu\", true)\n  option(\"lineWiseCopyCut\", true)\n  option(\"pasteLinesPerSelection\", true)\n\n  option(\"readOnly\", false, function (cm, val) {\n    if (val == \"nocursor\") {\n      onBlur(cm)\n      cm.display.input.blur()\n    }\n    cm.display.input.readOnlyChanged(val)\n  })\n  option(\"disableInput\", false, function (cm, val) {if (!val) { cm.display.input.reset() }}, true)\n  option(\"dragDrop\", true, dragDropChanged)\n  option(\"allowDropFileTypes\", null)\n\n  option(\"cursorBlinkRate\", 530)\n  option(\"cursorScrollMargin\", 0)\n  option(\"cursorHeight\", 1, updateSelection, true)\n  option(\"singleCursorHeightPerLine\", true, updateSelection, true)\n  option(\"workTime\", 100)\n  option(\"workDelay\", 100)\n  option(\"flattenSpans\", true, resetModeState, true)\n  option(\"addModeClass\", false, resetModeState, true)\n  option(\"pollInterval\", 100)\n  option(\"undoDepth\", 200, function (cm, val) { return cm.doc.history.undoDepth = val; })\n  option(\"historyEventDelay\", 1250)\n  option(\"viewportMargin\", 10, function (cm) { return cm.refresh(); }, true)\n  option(\"maxHighlightLength\", 10000, resetModeState, true)\n  option(\"moveInputWithCursor\", true, function (cm, val) {\n    if (!val) { cm.display.input.resetPosition() }\n  })\n\n  option(\"tabindex\", null, function (cm, val) { return cm.display.input.getField().tabIndex = val || \"\"; })\n  option(\"autofocus\", null)\n  option(\"direction\", \"ltr\", function (cm, val) { return cm.doc.setDirection(val); }, true)\n}\n\nfunction guttersChanged(cm) {\n  updateGutters(cm)\n  regChange(cm)\n  alignHorizontally(cm)\n}\n\nfunction dragDropChanged(cm, value, old) {\n  var wasOn = old && old != Init\n  if (!value != !wasOn) {\n    var funcs = cm.display.dragFunctions\n    var toggle = value ? on : off\n    toggle(cm.display.scroller, \"dragstart\", funcs.start)\n    toggle(cm.display.scroller, \"dragenter\", funcs.enter)\n    toggle(cm.display.scroller, \"dragover\", funcs.over)\n    toggle(cm.display.scroller, \"dragleave\", funcs.leave)\n    toggle(cm.display.scroller, \"drop\", funcs.drop)\n  }\n}\n\nfunction wrappingChanged(cm) {\n  if (cm.options.lineWrapping) {\n    addClass(cm.display.wrapper, \"CodeMirror-wrap\")\n    cm.display.sizer.style.minWidth = \"\"\n    cm.display.sizerWidth = null\n  } else {\n    rmClass(cm.display.wrapper, \"CodeMirror-wrap\")\n    findMaxLine(cm)\n  }\n  estimateLineHeights(cm)\n  regChange(cm)\n  clearCaches(cm)\n  setTimeout(function () { return updateScrollbars(cm); }, 100)\n}\n\n// A CodeMirror instance represents an editor. This is the object\n// that user code is usually dealing with.\n\nfunction CodeMirror(place, options) {\n  var this$1 = this;\n\n  if (!(this instanceof CodeMirror)) { return new CodeMirror(place, options) }\n\n  this.options = options = options ? copyObj(options) : {}\n  // Determine effective options based on given values and defaults.\n  copyObj(defaults, options, false)\n  setGuttersForLineNumbers(options)\n\n  var doc = options.value\n  if (typeof doc == \"string\") { doc = new Doc(doc, options.mode, null, options.lineSeparator, options.direction) }\n  this.doc = doc\n\n  var input = new CodeMirror.inputStyles[options.inputStyle](this)\n  var display = this.display = new Display(place, doc, input)\n  display.wrapper.CodeMirror = this\n  updateGutters(this)\n  themeChanged(this)\n  if (options.lineWrapping)\n    { this.display.wrapper.className += \" CodeMirror-wrap\" }\n  initScrollbars(this)\n\n  this.state = {\n    keyMaps: [],  // stores maps added by addKeyMap\n    overlays: [], // highlighting overlays, as added by addOverlay\n    modeGen: 0,   // bumped when mode/overlay changes, used to invalidate highlighting info\n    overwrite: false,\n    delayingBlurEvent: false,\n    focused: false,\n    suppressEdits: false, // used to disable editing during key handlers when in readOnly mode\n    pasteIncoming: false, cutIncoming: false, // help recognize paste/cut edits in input.poll\n    selectingText: false,\n    draggingText: false,\n    highlight: new Delayed(), // stores highlight worker timeout\n    keySeq: null,  // Unfinished key sequence\n    specialChars: null\n  }\n\n  if (options.autofocus && !mobile) { display.input.focus() }\n\n  // Override magic textarea content restore that IE sometimes does\n  // on our hidden textarea on reload\n  if (ie && ie_version < 11) { setTimeout(function () { return this$1.display.input.reset(true); }, 20) }\n\n  registerEventHandlers(this)\n  ensureGlobalHandlers()\n\n  startOperation(this)\n  this.curOp.forceUpdate = true\n  attachDoc(this, doc)\n\n  if ((options.autofocus && !mobile) || this.hasFocus())\n    { setTimeout(bind(onFocus, this), 20) }\n  else\n    { onBlur(this) }\n\n  for (var opt in optionHandlers) { if (optionHandlers.hasOwnProperty(opt))\n    { optionHandlers[opt](this$1, options[opt], Init) } }\n  maybeUpdateLineNumberWidth(this)\n  if (options.finishInit) { options.finishInit(this) }\n  for (var i = 0; i < initHooks.length; ++i) { initHooks[i](this$1) }\n  endOperation(this)\n  // Suppress optimizelegibility in Webkit, since it breaks text\n  // measuring on line wrapping boundaries.\n  if (webkit && options.lineWrapping &&\n      getComputedStyle(display.lineDiv).textRendering == \"optimizelegibility\")\n    { display.lineDiv.style.textRendering = \"auto\" }\n}\n\n// The default configuration options.\nCodeMirror.defaults = defaults\n// Functions to run when options are changed.\nCodeMirror.optionHandlers = optionHandlers\n\n// Attach the necessary event handlers when initializing the editor\nfunction registerEventHandlers(cm) {\n  var d = cm.display\n  on(d.scroller, \"mousedown\", operation(cm, onMouseDown))\n  // Older IE's will not fire a second mousedown for a double click\n  if (ie && ie_version < 11)\n    { on(d.scroller, \"dblclick\", operation(cm, function (e) {\n      if (signalDOMEvent(cm, e)) { return }\n      var pos = posFromMouse(cm, e)\n      if (!pos || clickInGutter(cm, e) || eventInWidget(cm.display, e)) { return }\n      e_preventDefault(e)\n      var word = cm.findWordAt(pos)\n      extendSelection(cm.doc, word.anchor, word.head)\n    })) }\n  else\n    { on(d.scroller, \"dblclick\", function (e) { return signalDOMEvent(cm, e) || e_preventDefault(e); }) }\n  // Some browsers fire contextmenu *after* opening the menu, at\n  // which point we can't mess with it anymore. Context menu is\n  // handled in onMouseDown for these browsers.\n  if (!captureRightClick) { on(d.scroller, \"contextmenu\", function (e) { return onContextMenu(cm, e); }) }\n\n  // Used to suppress mouse event handling when a touch happens\n  var touchFinished, prevTouch = {end: 0}\n  function finishTouch() {\n    if (d.activeTouch) {\n      touchFinished = setTimeout(function () { return d.activeTouch = null; }, 1000)\n      prevTouch = d.activeTouch\n      prevTouch.end = +new Date\n    }\n  }\n  function isMouseLikeTouchEvent(e) {\n    if (e.touches.length != 1) { return false }\n    var touch = e.touches[0]\n    return touch.radiusX <= 1 && touch.radiusY <= 1\n  }\n  function farAway(touch, other) {\n    if (other.left == null) { return true }\n    var dx = other.left - touch.left, dy = other.top - touch.top\n    return dx * dx + dy * dy > 20 * 20\n  }\n  on(d.scroller, \"touchstart\", function (e) {\n    if (!signalDOMEvent(cm, e) && !isMouseLikeTouchEvent(e) && !clickInGutter(cm, e)) {\n      d.input.ensurePolled()\n      clearTimeout(touchFinished)\n      var now = +new Date\n      d.activeTouch = {start: now, moved: false,\n                       prev: now - prevTouch.end <= 300 ? prevTouch : null}\n      if (e.touches.length == 1) {\n        d.activeTouch.left = e.touches[0].pageX\n        d.activeTouch.top = e.touches[0].pageY\n      }\n    }\n  })\n  on(d.scroller, \"touchmove\", function () {\n    if (d.activeTouch) { d.activeTouch.moved = true }\n  })\n  on(d.scroller, \"touchend\", function (e) {\n    var touch = d.activeTouch\n    if (touch && !eventInWidget(d, e) && touch.left != null &&\n        !touch.moved && new Date - touch.start < 300) {\n      var pos = cm.coordsChar(d.activeTouch, \"page\"), range\n      if (!touch.prev || farAway(touch, touch.prev)) // Single tap\n        { range = new Range(pos, pos) }\n      else if (!touch.prev.prev || farAway(touch, touch.prev.prev)) // Double tap\n        { range = cm.findWordAt(pos) }\n      else // Triple tap\n        { range = new Range(Pos(pos.line, 0), clipPos(cm.doc, Pos(pos.line + 1, 0))) }\n      cm.setSelection(range.anchor, range.head)\n      cm.focus()\n      e_preventDefault(e)\n    }\n    finishTouch()\n  })\n  on(d.scroller, \"touchcancel\", finishTouch)\n\n  // Sync scrolling between fake scrollbars and real scrollable\n  // area, ensure viewport is updated when scrolling.\n  on(d.scroller, \"scroll\", function () {\n    if (d.scroller.clientHeight) {\n      updateScrollTop(cm, d.scroller.scrollTop)\n      setScrollLeft(cm, d.scroller.scrollLeft, true)\n      signal(cm, \"scroll\", cm)\n    }\n  })\n\n  // Listen to wheel events in order to try and update the viewport on time.\n  on(d.scroller, \"mousewheel\", function (e) { return onScrollWheel(cm, e); })\n  on(d.scroller, \"DOMMouseScroll\", function (e) { return onScrollWheel(cm, e); })\n\n  // Prevent wrapper from ever scrolling\n  on(d.wrapper, \"scroll\", function () { return d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; })\n\n  d.dragFunctions = {\n    enter: function (e) {if (!signalDOMEvent(cm, e)) { e_stop(e) }},\n    over: function (e) {if (!signalDOMEvent(cm, e)) { onDragOver(cm, e); e_stop(e) }},\n    start: function (e) { return onDragStart(cm, e); },\n    drop: operation(cm, onDrop),\n    leave: function (e) {if (!signalDOMEvent(cm, e)) { clearDragCursor(cm) }}\n  }\n\n  var inp = d.input.getField()\n  on(inp, \"keyup\", function (e) { return onKeyUp.call(cm, e); })\n  on(inp, \"keydown\", operation(cm, onKeyDown))\n  on(inp, \"keypress\", operation(cm, onKeyPress))\n  on(inp, \"focus\", function (e) { return onFocus(cm, e); })\n  on(inp, \"blur\", function (e) { return onBlur(cm, e); })\n}\n\nvar initHooks = []\nCodeMirror.defineInitHook = function (f) { return initHooks.push(f); }\n\n// Indent the given line. The how parameter can be \"smart\",\n// \"add\"/null, \"subtract\", or \"prev\". When aggressive is false\n// (typically set to true for forced single-line indents), empty\n// lines are not indented, and places where the mode returns Pass\n// are left alone.\nfunction indentLine(cm, n, how, aggressive) {\n  var doc = cm.doc, state\n  if (how == null) { how = \"add\" }\n  if (how == \"smart\") {\n    // Fall back to \"prev\" when the mode doesn't have an indentation\n    // method.\n    if (!doc.mode.indent) { how = \"prev\" }\n    else { state = getContextBefore(cm, n).state }\n  }\n\n  var tabSize = cm.options.tabSize\n  var line = getLine(doc, n), curSpace = countColumn(line.text, null, tabSize)\n  if (line.stateAfter) { line.stateAfter = null }\n  var curSpaceString = line.text.match(/^\\s*/)[0], indentation\n  if (!aggressive && !/\\S/.test(line.text)) {\n    indentation = 0\n    how = \"not\"\n  } else if (how == \"smart\") {\n    indentation = doc.mode.indent(state, line.text.slice(curSpaceString.length), line.text)\n    if (indentation == Pass || indentation > 150) {\n      if (!aggressive) { return }\n      how = \"prev\"\n    }\n  }\n  if (how == \"prev\") {\n    if (n > doc.first) { indentation = countColumn(getLine(doc, n-1).text, null, tabSize) }\n    else { indentation = 0 }\n  } else if (how == \"add\") {\n    indentation = curSpace + cm.options.indentUnit\n  } else if (how == \"subtract\") {\n    indentation = curSpace - cm.options.indentUnit\n  } else if (typeof how == \"number\") {\n    indentation = curSpace + how\n  }\n  indentation = Math.max(0, indentation)\n\n  var indentString = \"\", pos = 0\n  if (cm.options.indentWithTabs)\n    { for (var i = Math.floor(indentation / tabSize); i; --i) {pos += tabSize; indentString += \"\\t\"} }\n  if (pos < indentation) { indentString += spaceStr(indentation - pos) }\n\n  if (indentString != curSpaceString) {\n    replaceRange(doc, indentString, Pos(n, 0), Pos(n, curSpaceString.length), \"+input\")\n    line.stateAfter = null\n    return true\n  } else {\n    // Ensure that, if the cursor was in the whitespace at the start\n    // of the line, it is moved to the end of that space.\n    for (var i$1 = 0; i$1 < doc.sel.ranges.length; i$1++) {\n      var range = doc.sel.ranges[i$1]\n      if (range.head.line == n && range.head.ch < curSpaceString.length) {\n        var pos$1 = Pos(n, curSpaceString.length)\n        replaceOneSelection(doc, i$1, new Range(pos$1, pos$1))\n        break\n      }\n    }\n  }\n}\n\n// This will be set to a {lineWise: bool, text: [string]} object, so\n// that, when pasting, we know what kind of selections the copied\n// text was made out of.\nvar lastCopied = null\n\nfunction setLastCopied(newLastCopied) {\n  lastCopied = newLastCopied\n}\n\nfunction applyTextInput(cm, inserted, deleted, sel, origin) {\n  var doc = cm.doc\n  cm.display.shift = false\n  if (!sel) { sel = doc.sel }\n\n  var paste = cm.state.pasteIncoming || origin == \"paste\"\n  var textLines = splitLinesAuto(inserted), multiPaste = null\n  // When pasing N lines into N selections, insert one line per selection\n  if (paste && sel.ranges.length > 1) {\n    if (lastCopied && lastCopied.text.join(\"\\n\") == inserted) {\n      if (sel.ranges.length % lastCopied.text.length == 0) {\n        multiPaste = []\n        for (var i = 0; i < lastCopied.text.length; i++)\n          { multiPaste.push(doc.splitLines(lastCopied.text[i])) }\n      }\n    } else if (textLines.length == sel.ranges.length && cm.options.pasteLinesPerSelection) {\n      multiPaste = map(textLines, function (l) { return [l]; })\n    }\n  }\n\n  var updateInput\n  // Normal behavior is to insert the new text into every selection\n  for (var i$1 = sel.ranges.length - 1; i$1 >= 0; i$1--) {\n    var range = sel.ranges[i$1]\n    var from = range.from(), to = range.to()\n    if (range.empty()) {\n      if (deleted && deleted > 0) // Handle deletion\n        { from = Pos(from.line, from.ch - deleted) }\n      else if (cm.state.overwrite && !paste) // Handle overwrite\n        { to = Pos(to.line, Math.min(getLine(doc, to.line).text.length, to.ch + lst(textLines).length)) }\n      else if (lastCopied && lastCopied.lineWise && lastCopied.text.join(\"\\n\") == inserted)\n        { from = to = Pos(from.line, 0) }\n    }\n    updateInput = cm.curOp.updateInput\n    var changeEvent = {from: from, to: to, text: multiPaste ? multiPaste[i$1 % multiPaste.length] : textLines,\n                       origin: origin || (paste ? \"paste\" : cm.state.cutIncoming ? \"cut\" : \"+input\")}\n    makeChange(cm.doc, changeEvent)\n    signalLater(cm, \"inputRead\", cm, changeEvent)\n  }\n  if (inserted && !paste)\n    { triggerElectric(cm, inserted) }\n\n  ensureCursorVisible(cm)\n  cm.curOp.updateInput = updateInput\n  cm.curOp.typing = true\n  cm.state.pasteIncoming = cm.state.cutIncoming = false\n}\n\nfunction handlePaste(e, cm) {\n  var pasted = e.clipboardData && e.clipboardData.getData(\"Text\")\n  if (pasted) {\n    e.preventDefault()\n    if (!cm.isReadOnly() && !cm.options.disableInput)\n      { runInOp(cm, function () { return applyTextInput(cm, pasted, 0, null, \"paste\"); }) }\n    return true\n  }\n}\n\nfunction triggerElectric(cm, inserted) {\n  // When an 'electric' character is inserted, immediately trigger a reindent\n  if (!cm.options.electricChars || !cm.options.smartIndent) { return }\n  var sel = cm.doc.sel\n\n  for (var i = sel.ranges.length - 1; i >= 0; i--) {\n    var range = sel.ranges[i]\n    if (range.head.ch > 100 || (i && sel.ranges[i - 1].head.line == range.head.line)) { continue }\n    var mode = cm.getModeAt(range.head)\n    var indented = false\n    if (mode.electricChars) {\n      for (var j = 0; j < mode.electricChars.length; j++)\n        { if (inserted.indexOf(mode.electricChars.charAt(j)) > -1) {\n          indented = indentLine(cm, range.head.line, \"smart\")\n          break\n        } }\n    } else if (mode.electricInput) {\n      if (mode.electricInput.test(getLine(cm.doc, range.head.line).text.slice(0, range.head.ch)))\n        { indented = indentLine(cm, range.head.line, \"smart\") }\n    }\n    if (indented) { signalLater(cm, \"electricInput\", cm, range.head.line) }\n  }\n}\n\nfunction copyableRanges(cm) {\n  var text = [], ranges = []\n  for (var i = 0; i < cm.doc.sel.ranges.length; i++) {\n    var line = cm.doc.sel.ranges[i].head.line\n    var lineRange = {anchor: Pos(line, 0), head: Pos(line + 1, 0)}\n    ranges.push(lineRange)\n    text.push(cm.getRange(lineRange.anchor, lineRange.head))\n  }\n  return {text: text, ranges: ranges}\n}\n\nfunction disableBrowserMagic(field, spellcheck) {\n  field.setAttribute(\"autocorrect\", \"off\")\n  field.setAttribute(\"autocapitalize\", \"off\")\n  field.setAttribute(\"spellcheck\", !!spellcheck)\n}\n\nfunction hiddenTextarea() {\n  var te = elt(\"textarea\", null, null, \"position: absolute; bottom: -1em; padding: 0; width: 1px; height: 1em; outline: none\")\n  var div = elt(\"div\", [te], null, \"overflow: hidden; position: relative; width: 3px; height: 0px;\")\n  // The textarea is kept positioned near the cursor to prevent the\n  // fact that it'll be scrolled into view on input from scrolling\n  // our fake cursor out of view. On webkit, when wrap=off, paste is\n  // very slow. So make the area wide instead.\n  if (webkit) { te.style.width = \"1000px\" }\n  else { te.setAttribute(\"wrap\", \"off\") }\n  // If border: 0; -- iOS fails to open keyboard (issue #1287)\n  if (ios) { te.style.border = \"1px solid black\" }\n  disableBrowserMagic(te)\n  return div\n}\n\n// The publicly visible API. Note that methodOp(f) means\n// 'wrap f in an operation, performed on its `this` parameter'.\n\n// This is not the complete set of editor methods. Most of the\n// methods defined on the Doc type are also injected into\n// CodeMirror.prototype, for backwards compatibility and\n// convenience.\n\nfunction addEditorMethods(CodeMirror) {\n  var optionHandlers = CodeMirror.optionHandlers\n\n  var helpers = CodeMirror.helpers = {}\n\n  CodeMirror.prototype = {\n    constructor: CodeMirror,\n    focus: function(){window.focus(); this.display.input.focus()},\n\n    setOption: function(option, value) {\n      var options = this.options, old = options[option]\n      if (options[option] == value && option != \"mode\") { return }\n      options[option] = value\n      if (optionHandlers.hasOwnProperty(option))\n        { operation(this, optionHandlers[option])(this, value, old) }\n      signal(this, \"optionChange\", this, option)\n    },\n\n    getOption: function(option) {return this.options[option]},\n    getDoc: function() {return this.doc},\n\n    addKeyMap: function(map, bottom) {\n      this.state.keyMaps[bottom ? \"push\" : \"unshift\"](getKeyMap(map))\n    },\n    removeKeyMap: function(map) {\n      var maps = this.state.keyMaps\n      for (var i = 0; i < maps.length; ++i)\n        { if (maps[i] == map || maps[i].name == map) {\n          maps.splice(i, 1)\n          return true\n        } }\n    },\n\n    addOverlay: methodOp(function(spec, options) {\n      var mode = spec.token ? spec : CodeMirror.getMode(this.options, spec)\n      if (mode.startState) { throw new Error(\"Overlays may not be stateful.\") }\n      insertSorted(this.state.overlays,\n                   {mode: mode, modeSpec: spec, opaque: options && options.opaque,\n                    priority: (options && options.priority) || 0},\n                   function (overlay) { return overlay.priority; })\n      this.state.modeGen++\n      regChange(this)\n    }),\n    removeOverlay: methodOp(function(spec) {\n      var this$1 = this;\n\n      var overlays = this.state.overlays\n      for (var i = 0; i < overlays.length; ++i) {\n        var cur = overlays[i].modeSpec\n        if (cur == spec || typeof spec == \"string\" && cur.name == spec) {\n          overlays.splice(i, 1)\n          this$1.state.modeGen++\n          regChange(this$1)\n          return\n        }\n      }\n    }),\n\n    indentLine: methodOp(function(n, dir, aggressive) {\n      if (typeof dir != \"string\" && typeof dir != \"number\") {\n        if (dir == null) { dir = this.options.smartIndent ? \"smart\" : \"prev\" }\n        else { dir = dir ? \"add\" : \"subtract\" }\n      }\n      if (isLine(this.doc, n)) { indentLine(this, n, dir, aggressive) }\n    }),\n    indentSelection: methodOp(function(how) {\n      var this$1 = this;\n\n      var ranges = this.doc.sel.ranges, end = -1\n      for (var i = 0; i < ranges.length; i++) {\n        var range = ranges[i]\n        if (!range.empty()) {\n          var from = range.from(), to = range.to()\n          var start = Math.max(end, from.line)\n          end = Math.min(this$1.lastLine(), to.line - (to.ch ? 0 : 1)) + 1\n          for (var j = start; j < end; ++j)\n            { indentLine(this$1, j, how) }\n          var newRanges = this$1.doc.sel.ranges\n          if (from.ch == 0 && ranges.length == newRanges.length && newRanges[i].from().ch > 0)\n            { replaceOneSelection(this$1.doc, i, new Range(from, newRanges[i].to()), sel_dontScroll) }\n        } else if (range.head.line > end) {\n          indentLine(this$1, range.head.line, how, true)\n          end = range.head.line\n          if (i == this$1.doc.sel.primIndex) { ensureCursorVisible(this$1) }\n        }\n      }\n    }),\n\n    // Fetch the parser token for a given character. Useful for hacks\n    // that want to inspect the mode state (say, for completion).\n    getTokenAt: function(pos, precise) {\n      return takeToken(this, pos, precise)\n    },\n\n    getLineTokens: function(line, precise) {\n      return takeToken(this, Pos(line), precise, true)\n    },\n\n    getTokenTypeAt: function(pos) {\n      pos = clipPos(this.doc, pos)\n      var styles = getLineStyles(this, getLine(this.doc, pos.line))\n      var before = 0, after = (styles.length - 1) / 2, ch = pos.ch\n      var type\n      if (ch == 0) { type = styles[2] }\n      else { for (;;) {\n        var mid = (before + after) >> 1\n        if ((mid ? styles[mid * 2 - 1] : 0) >= ch) { after = mid }\n        else if (styles[mid * 2 + 1] < ch) { before = mid + 1 }\n        else { type = styles[mid * 2 + 2]; break }\n      } }\n      var cut = type ? type.indexOf(\"overlay \") : -1\n      return cut < 0 ? type : cut == 0 ? null : type.slice(0, cut - 1)\n    },\n\n    getModeAt: function(pos) {\n      var mode = this.doc.mode\n      if (!mode.innerMode) { return mode }\n      return CodeMirror.innerMode(mode, this.getTokenAt(pos).state).mode\n    },\n\n    getHelper: function(pos, type) {\n      return this.getHelpers(pos, type)[0]\n    },\n\n    getHelpers: function(pos, type) {\n      var this$1 = this;\n\n      var found = []\n      if (!helpers.hasOwnProperty(type)) { return found }\n      var help = helpers[type], mode = this.getModeAt(pos)\n      if (typeof mode[type] == \"string\") {\n        if (help[mode[type]]) { found.push(help[mode[type]]) }\n      } else if (mode[type]) {\n        for (var i = 0; i < mode[type].length; i++) {\n          var val = help[mode[type][i]]\n          if (val) { found.push(val) }\n        }\n      } else if (mode.helperType && help[mode.helperType]) {\n        found.push(help[mode.helperType])\n      } else if (help[mode.name]) {\n        found.push(help[mode.name])\n      }\n      for (var i$1 = 0; i$1 < help._global.length; i$1++) {\n        var cur = help._global[i$1]\n        if (cur.pred(mode, this$1) && indexOf(found, cur.val) == -1)\n          { found.push(cur.val) }\n      }\n      return found\n    },\n\n    getStateAfter: function(line, precise) {\n      var doc = this.doc\n      line = clipLine(doc, line == null ? doc.first + doc.size - 1: line)\n      return getContextBefore(this, line + 1, precise).state\n    },\n\n    cursorCoords: function(start, mode) {\n      var pos, range = this.doc.sel.primary()\n      if (start == null) { pos = range.head }\n      else if (typeof start == \"object\") { pos = clipPos(this.doc, start) }\n      else { pos = start ? range.from() : range.to() }\n      return cursorCoords(this, pos, mode || \"page\")\n    },\n\n    charCoords: function(pos, mode) {\n      return charCoords(this, clipPos(this.doc, pos), mode || \"page\")\n    },\n\n    coordsChar: function(coords, mode) {\n      coords = fromCoordSystem(this, coords, mode || \"page\")\n      return coordsChar(this, coords.left, coords.top)\n    },\n\n    lineAtHeight: function(height, mode) {\n      height = fromCoordSystem(this, {top: height, left: 0}, mode || \"page\").top\n      return lineAtHeight(this.doc, height + this.display.viewOffset)\n    },\n    heightAtLine: function(line, mode, includeWidgets) {\n      var end = false, lineObj\n      if (typeof line == \"number\") {\n        var last = this.doc.first + this.doc.size - 1\n        if (line < this.doc.first) { line = this.doc.first }\n        else if (line > last) { line = last; end = true }\n        lineObj = getLine(this.doc, line)\n      } else {\n        lineObj = line\n      }\n      return intoCoordSystem(this, lineObj, {top: 0, left: 0}, mode || \"page\", includeWidgets || end).top +\n        (end ? this.doc.height - heightAtLine(lineObj) : 0)\n    },\n\n    defaultTextHeight: function() { return textHeight(this.display) },\n    defaultCharWidth: function() { return charWidth(this.display) },\n\n    getViewport: function() { return {from: this.display.viewFrom, to: this.display.viewTo}},\n\n    addWidget: function(pos, node, scroll, vert, horiz) {\n      var display = this.display\n      pos = cursorCoords(this, clipPos(this.doc, pos))\n      var top = pos.bottom, left = pos.left\n      node.style.position = \"absolute\"\n      node.setAttribute(\"cm-ignore-events\", \"true\")\n      this.display.input.setUneditable(node)\n      display.sizer.appendChild(node)\n      if (vert == \"over\") {\n        top = pos.top\n      } else if (vert == \"above\" || vert == \"near\") {\n        var vspace = Math.max(display.wrapper.clientHeight, this.doc.height),\n        hspace = Math.max(display.sizer.clientWidth, display.lineSpace.clientWidth)\n        // Default to positioning above (if specified and possible); otherwise default to positioning below\n        if ((vert == 'above' || pos.bottom + node.offsetHeight > vspace) && pos.top > node.offsetHeight)\n          { top = pos.top - node.offsetHeight }\n        else if (pos.bottom + node.offsetHeight <= vspace)\n          { top = pos.bottom }\n        if (left + node.offsetWidth > hspace)\n          { left = hspace - node.offsetWidth }\n      }\n      node.style.top = top + \"px\"\n      node.style.left = node.style.right = \"\"\n      if (horiz == \"right\") {\n        left = display.sizer.clientWidth - node.offsetWidth\n        node.style.right = \"0px\"\n      } else {\n        if (horiz == \"left\") { left = 0 }\n        else if (horiz == \"middle\") { left = (display.sizer.clientWidth - node.offsetWidth) / 2 }\n        node.style.left = left + \"px\"\n      }\n      if (scroll)\n        { scrollIntoView(this, {left: left, top: top, right: left + node.offsetWidth, bottom: top + node.offsetHeight}) }\n    },\n\n    triggerOnKeyDown: methodOp(onKeyDown),\n    triggerOnKeyPress: methodOp(onKeyPress),\n    triggerOnKeyUp: onKeyUp,\n    triggerOnMouseDown: methodOp(onMouseDown),\n\n    execCommand: function(cmd) {\n      if (commands.hasOwnProperty(cmd))\n        { return commands[cmd].call(null, this) }\n    },\n\n    triggerElectric: methodOp(function(text) { triggerElectric(this, text) }),\n\n    findPosH: function(from, amount, unit, visually) {\n      var this$1 = this;\n\n      var dir = 1\n      if (amount < 0) { dir = -1; amount = -amount }\n      var cur = clipPos(this.doc, from)\n      for (var i = 0; i < amount; ++i) {\n        cur = findPosH(this$1.doc, cur, dir, unit, visually)\n        if (cur.hitSide) { break }\n      }\n      return cur\n    },\n\n    moveH: methodOp(function(dir, unit) {\n      var this$1 = this;\n\n      this.extendSelectionsBy(function (range) {\n        if (this$1.display.shift || this$1.doc.extend || range.empty())\n          { return findPosH(this$1.doc, range.head, dir, unit, this$1.options.rtlMoveVisually) }\n        else\n          { return dir < 0 ? range.from() : range.to() }\n      }, sel_move)\n    }),\n\n    deleteH: methodOp(function(dir, unit) {\n      var sel = this.doc.sel, doc = this.doc\n      if (sel.somethingSelected())\n        { doc.replaceSelection(\"\", null, \"+delete\") }\n      else\n        { deleteNearSelection(this, function (range) {\n          var other = findPosH(doc, range.head, dir, unit, false)\n          return dir < 0 ? {from: other, to: range.head} : {from: range.head, to: other}\n        }) }\n    }),\n\n    findPosV: function(from, amount, unit, goalColumn) {\n      var this$1 = this;\n\n      var dir = 1, x = goalColumn\n      if (amount < 0) { dir = -1; amount = -amount }\n      var cur = clipPos(this.doc, from)\n      for (var i = 0; i < amount; ++i) {\n        var coords = cursorCoords(this$1, cur, \"div\")\n        if (x == null) { x = coords.left }\n        else { coords.left = x }\n        cur = findPosV(this$1, coords, dir, unit)\n        if (cur.hitSide) { break }\n      }\n      return cur\n    },\n\n    moveV: methodOp(function(dir, unit) {\n      var this$1 = this;\n\n      var doc = this.doc, goals = []\n      var collapse = !this.display.shift && !doc.extend && doc.sel.somethingSelected()\n      doc.extendSelectionsBy(function (range) {\n        if (collapse)\n          { return dir < 0 ? range.from() : range.to() }\n        var headPos = cursorCoords(this$1, range.head, \"div\")\n        if (range.goalColumn != null) { headPos.left = range.goalColumn }\n        goals.push(headPos.left)\n        var pos = findPosV(this$1, headPos, dir, unit)\n        if (unit == \"page\" && range == doc.sel.primary())\n          { addToScrollTop(this$1, charCoords(this$1, pos, \"div\").top - headPos.top) }\n        return pos\n      }, sel_move)\n      if (goals.length) { for (var i = 0; i < doc.sel.ranges.length; i++)\n        { doc.sel.ranges[i].goalColumn = goals[i] } }\n    }),\n\n    // Find the word at the given position (as returned by coordsChar).\n    findWordAt: function(pos) {\n      var doc = this.doc, line = getLine(doc, pos.line).text\n      var start = pos.ch, end = pos.ch\n      if (line) {\n        var helper = this.getHelper(pos, \"wordChars\")\n        if ((pos.sticky == \"before\" || end == line.length) && start) { --start; } else { ++end }\n        var startChar = line.charAt(start)\n        var check = isWordChar(startChar, helper)\n          ? function (ch) { return isWordChar(ch, helper); }\n          : /\\s/.test(startChar) ? function (ch) { return /\\s/.test(ch); }\n          : function (ch) { return (!/\\s/.test(ch) && !isWordChar(ch)); }\n        while (start > 0 && check(line.charAt(start - 1))) { --start }\n        while (end < line.length && check(line.charAt(end))) { ++end }\n      }\n      return new Range(Pos(pos.line, start), Pos(pos.line, end))\n    },\n\n    toggleOverwrite: function(value) {\n      if (value != null && value == this.state.overwrite) { return }\n      if (this.state.overwrite = !this.state.overwrite)\n        { addClass(this.display.cursorDiv, \"CodeMirror-overwrite\") }\n      else\n        { rmClass(this.display.cursorDiv, \"CodeMirror-overwrite\") }\n\n      signal(this, \"overwriteToggle\", this, this.state.overwrite)\n    },\n    hasFocus: function() { return this.display.input.getField() == activeElt() },\n    isReadOnly: function() { return !!(this.options.readOnly || this.doc.cantEdit) },\n\n    scrollTo: methodOp(function (x, y) { scrollToCoords(this, x, y) }),\n    getScrollInfo: function() {\n      var scroller = this.display.scroller\n      return {left: scroller.scrollLeft, top: scroller.scrollTop,\n              height: scroller.scrollHeight - scrollGap(this) - this.display.barHeight,\n              width: scroller.scrollWidth - scrollGap(this) - this.display.barWidth,\n              clientHeight: displayHeight(this), clientWidth: displayWidth(this)}\n    },\n\n    scrollIntoView: methodOp(function(range, margin) {\n      if (range == null) {\n        range = {from: this.doc.sel.primary().head, to: null}\n        if (margin == null) { margin = this.options.cursorScrollMargin }\n      } else if (typeof range == \"number\") {\n        range = {from: Pos(range, 0), to: null}\n      } else if (range.from == null) {\n        range = {from: range, to: null}\n      }\n      if (!range.to) { range.to = range.from }\n      range.margin = margin || 0\n\n      if (range.from.line != null) {\n        scrollToRange(this, range)\n      } else {\n        scrollToCoordsRange(this, range.from, range.to, range.margin)\n      }\n    }),\n\n    setSize: methodOp(function(width, height) {\n      var this$1 = this;\n\n      var interpret = function (val) { return typeof val == \"number\" || /^\\d+$/.test(String(val)) ? val + \"px\" : val; }\n      if (width != null) { this.display.wrapper.style.width = interpret(width) }\n      if (height != null) { this.display.wrapper.style.height = interpret(height) }\n      if (this.options.lineWrapping) { clearLineMeasurementCache(this) }\n      var lineNo = this.display.viewFrom\n      this.doc.iter(lineNo, this.display.viewTo, function (line) {\n        if (line.widgets) { for (var i = 0; i < line.widgets.length; i++)\n          { if (line.widgets[i].noHScroll) { regLineChange(this$1, lineNo, \"widget\"); break } } }\n        ++lineNo\n      })\n      this.curOp.forceUpdate = true\n      signal(this, \"refresh\", this)\n    }),\n\n    operation: function(f){return runInOp(this, f)},\n    startOperation: function(){return startOperation(this)},\n    endOperation: function(){return endOperation(this)},\n\n    refresh: methodOp(function() {\n      var oldHeight = this.display.cachedTextHeight\n      regChange(this)\n      this.curOp.forceUpdate = true\n      clearCaches(this)\n      scrollToCoords(this, this.doc.scrollLeft, this.doc.scrollTop)\n      updateGutterSpace(this)\n      if (oldHeight == null || Math.abs(oldHeight - textHeight(this.display)) > .5)\n        { estimateLineHeights(this) }\n      signal(this, \"refresh\", this)\n    }),\n\n    swapDoc: methodOp(function(doc) {\n      var old = this.doc\n      old.cm = null\n      attachDoc(this, doc)\n      clearCaches(this)\n      this.display.input.reset()\n      scrollToCoords(this, doc.scrollLeft, doc.scrollTop)\n      this.curOp.forceScroll = true\n      signalLater(this, \"swapDoc\", this, old)\n      return old\n    }),\n\n    getInputField: function(){return this.display.input.getField()},\n    getWrapperElement: function(){return this.display.wrapper},\n    getScrollerElement: function(){return this.display.scroller},\n    getGutterElement: function(){return this.display.gutters}\n  }\n  eventMixin(CodeMirror)\n\n  CodeMirror.registerHelper = function(type, name, value) {\n    if (!helpers.hasOwnProperty(type)) { helpers[type] = CodeMirror[type] = {_global: []} }\n    helpers[type][name] = value\n  }\n  CodeMirror.registerGlobalHelper = function(type, name, predicate, value) {\n    CodeMirror.registerHelper(type, name, value)\n    helpers[type]._global.push({pred: predicate, val: value})\n  }\n}\n\n// Used for horizontal relative motion. Dir is -1 or 1 (left or\n// right), unit can be \"char\", \"column\" (like char, but doesn't\n// cross line boundaries), \"word\" (across next word), or \"group\" (to\n// the start of next group of word or non-word-non-whitespace\n// chars). The visually param controls whether, in right-to-left\n// text, direction 1 means to move towards the next index in the\n// string, or towards the character to the right of the current\n// position. The resulting position will have a hitSide=true\n// property if it reached the end of the document.\nfunction findPosH(doc, pos, dir, unit, visually) {\n  var oldPos = pos\n  var origDir = dir\n  var lineObj = getLine(doc, pos.line)\n  function findNextLine() {\n    var l = pos.line + dir\n    if (l < doc.first || l >= doc.first + doc.size) { return false }\n    pos = new Pos(l, pos.ch, pos.sticky)\n    return lineObj = getLine(doc, l)\n  }\n  function moveOnce(boundToLine) {\n    var next\n    if (visually) {\n      next = moveVisually(doc.cm, lineObj, pos, dir)\n    } else {\n      next = moveLogically(lineObj, pos, dir)\n    }\n    if (next == null) {\n      if (!boundToLine && findNextLine())\n        { pos = endOfLine(visually, doc.cm, lineObj, pos.line, dir) }\n      else\n        { return false }\n    } else {\n      pos = next\n    }\n    return true\n  }\n\n  if (unit == \"char\") {\n    moveOnce()\n  } else if (unit == \"column\") {\n    moveOnce(true)\n  } else if (unit == \"word\" || unit == \"group\") {\n    var sawType = null, group = unit == \"group\"\n    var helper = doc.cm && doc.cm.getHelper(pos, \"wordChars\")\n    for (var first = true;; first = false) {\n      if (dir < 0 && !moveOnce(!first)) { break }\n      var cur = lineObj.text.charAt(pos.ch) || \"\\n\"\n      var type = isWordChar(cur, helper) ? \"w\"\n        : group && cur == \"\\n\" ? \"n\"\n        : !group || /\\s/.test(cur) ? null\n        : \"p\"\n      if (group && !first && !type) { type = \"s\" }\n      if (sawType && sawType != type) {\n        if (dir < 0) {dir = 1; moveOnce(); pos.sticky = \"after\"}\n        break\n      }\n\n      if (type) { sawType = type }\n      if (dir > 0 && !moveOnce(!first)) { break }\n    }\n  }\n  var result = skipAtomic(doc, pos, oldPos, origDir, true)\n  if (equalCursorPos(oldPos, result)) { result.hitSide = true }\n  return result\n}\n\n// For relative vertical movement. Dir may be -1 or 1. Unit can be\n// \"page\" or \"line\". The resulting position will have a hitSide=true\n// property if it reached the end of the document.\nfunction findPosV(cm, pos, dir, unit) {\n  var doc = cm.doc, x = pos.left, y\n  if (unit == \"page\") {\n    var pageSize = Math.min(cm.display.wrapper.clientHeight, window.innerHeight || document.documentElement.clientHeight)\n    var moveAmount = Math.max(pageSize - .5 * textHeight(cm.display), 3)\n    y = (dir > 0 ? pos.bottom : pos.top) + dir * moveAmount\n\n  } else if (unit == \"line\") {\n    y = dir > 0 ? pos.bottom + 3 : pos.top - 3\n  }\n  var target\n  for (;;) {\n    target = coordsChar(cm, x, y)\n    if (!target.outside) { break }\n    if (dir < 0 ? y <= 0 : y >= doc.height) { target.hitSide = true; break }\n    y += dir * 5\n  }\n  return target\n}\n\n// CONTENTEDITABLE INPUT STYLE\n\nvar ContentEditableInput = function(cm) {\n  this.cm = cm\n  this.lastAnchorNode = this.lastAnchorOffset = this.lastFocusNode = this.lastFocusOffset = null\n  this.polling = new Delayed()\n  this.composing = null\n  this.gracePeriod = false\n  this.readDOMTimeout = null\n};\n\nContentEditableInput.prototype.init = function (display) {\n    var this$1 = this;\n\n  var input = this, cm = input.cm\n  var div = input.div = display.lineDiv\n  disableBrowserMagic(div, cm.options.spellcheck)\n\n  on(div, \"paste\", function (e) {\n    if (signalDOMEvent(cm, e) || handlePaste(e, cm)) { return }\n    // IE doesn't fire input events, so we schedule a read for the pasted content in this way\n    if (ie_version <= 11) { setTimeout(operation(cm, function () { return this$1.updateFromDOM(); }), 20) }\n  })\n\n  on(div, \"compositionstart\", function (e) {\n    this$1.composing = {data: e.data, done: false}\n  })\n  on(div, \"compositionupdate\", function (e) {\n    if (!this$1.composing) { this$1.composing = {data: e.data, done: false} }\n  })\n  on(div, \"compositionend\", function (e) {\n    if (this$1.composing) {\n      if (e.data != this$1.composing.data) { this$1.readFromDOMSoon() }\n      this$1.composing.done = true\n    }\n  })\n\n  on(div, \"touchstart\", function () { return input.forceCompositionEnd(); })\n\n  on(div, \"input\", function () {\n    if (!this$1.composing) { this$1.readFromDOMSoon() }\n  })\n\n  function onCopyCut(e) {\n    if (signalDOMEvent(cm, e)) { return }\n    if (cm.somethingSelected()) {\n      setLastCopied({lineWise: false, text: cm.getSelections()})\n      if (e.type == \"cut\") { cm.replaceSelection(\"\", null, \"cut\") }\n    } else if (!cm.options.lineWiseCopyCut) {\n      return\n    } else {\n      var ranges = copyableRanges(cm)\n      setLastCopied({lineWise: true, text: ranges.text})\n      if (e.type == \"cut\") {\n        cm.operation(function () {\n          cm.setSelections(ranges.ranges, 0, sel_dontScroll)\n          cm.replaceSelection(\"\", null, \"cut\")\n        })\n      }\n    }\n    if (e.clipboardData) {\n      e.clipboardData.clearData()\n      var content = lastCopied.text.join(\"\\n\")\n      // iOS exposes the clipboard API, but seems to discard content inserted into it\n      e.clipboardData.setData(\"Text\", content)\n      if (e.clipboardData.getData(\"Text\") == content) {\n        e.preventDefault()\n        return\n      }\n    }\n    // Old-fashioned briefly-focus-a-textarea hack\n    var kludge = hiddenTextarea(), te = kludge.firstChild\n    cm.display.lineSpace.insertBefore(kludge, cm.display.lineSpace.firstChild)\n    te.value = lastCopied.text.join(\"\\n\")\n    var hadFocus = document.activeElement\n    selectInput(te)\n    setTimeout(function () {\n      cm.display.lineSpace.removeChild(kludge)\n      hadFocus.focus()\n      if (hadFocus == div) { input.showPrimarySelection() }\n    }, 50)\n  }\n  on(div, \"copy\", onCopyCut)\n  on(div, \"cut\", onCopyCut)\n};\n\nContentEditableInput.prototype.prepareSelection = function () {\n  var result = prepareSelection(this.cm, false)\n  result.focus = this.cm.state.focused\n  return result\n};\n\nContentEditableInput.prototype.showSelection = function (info, takeFocus) {\n  if (!info || !this.cm.display.view.length) { return }\n  if (info.focus || takeFocus) { this.showPrimarySelection() }\n  this.showMultipleSelections(info)\n};\n\nContentEditableInput.prototype.showPrimarySelection = function () {\n  var sel = window.getSelection(), cm = this.cm, prim = cm.doc.sel.primary()\n  var from = prim.from(), to = prim.to()\n\n  if (cm.display.viewTo == cm.display.viewFrom || from.line >= cm.display.viewTo || to.line < cm.display.viewFrom) {\n    sel.removeAllRanges()\n    return\n  }\n\n  var curAnchor = domToPos(cm, sel.anchorNode, sel.anchorOffset)\n  var curFocus = domToPos(cm, sel.focusNode, sel.focusOffset)\n  if (curAnchor && !curAnchor.bad && curFocus && !curFocus.bad &&\n      cmp(minPos(curAnchor, curFocus), from) == 0 &&\n      cmp(maxPos(curAnchor, curFocus), to) == 0)\n    { return }\n\n  var view = cm.display.view\n  var start = (from.line >= cm.display.viewFrom && posToDOM(cm, from)) ||\n      {node: view[0].measure.map[2], offset: 0}\n  var end = to.line < cm.display.viewTo && posToDOM(cm, to)\n  if (!end) {\n    var measure = view[view.length - 1].measure\n    var map = measure.maps ? measure.maps[measure.maps.length - 1] : measure.map\n    end = {node: map[map.length - 1], offset: map[map.length - 2] - map[map.length - 3]}\n  }\n\n  if (!start || !end) {\n    sel.removeAllRanges()\n    return\n  }\n\n  var old = sel.rangeCount && sel.getRangeAt(0), rng\n  try { rng = range(start.node, start.offset, end.offset, end.node) }\n  catch(e) {} // Our model of the DOM might be outdated, in which case the range we try to set can be impossible\n  if (rng) {\n    if (!gecko && cm.state.focused) {\n      sel.collapse(start.node, start.offset)\n      if (!rng.collapsed) {\n        sel.removeAllRanges()\n        sel.addRange(rng)\n      }\n    } else {\n      sel.removeAllRanges()\n      sel.addRange(rng)\n    }\n    if (old && sel.anchorNode == null) { sel.addRange(old) }\n    else if (gecko) { this.startGracePeriod() }\n  }\n  this.rememberSelection()\n};\n\nContentEditableInput.prototype.startGracePeriod = function () {\n    var this$1 = this;\n\n  clearTimeout(this.gracePeriod)\n  this.gracePeriod = setTimeout(function () {\n    this$1.gracePeriod = false\n    if (this$1.selectionChanged())\n      { this$1.cm.operation(function () { return this$1.cm.curOp.selectionChanged = true; }) }\n  }, 20)\n};\n\nContentEditableInput.prototype.showMultipleSelections = function (info) {\n  removeChildrenAndAdd(this.cm.display.cursorDiv, info.cursors)\n  removeChildrenAndAdd(this.cm.display.selectionDiv, info.selection)\n};\n\nContentEditableInput.prototype.rememberSelection = function () {\n  var sel = window.getSelection()\n  this.lastAnchorNode = sel.anchorNode; this.lastAnchorOffset = sel.anchorOffset\n  this.lastFocusNode = sel.focusNode; this.lastFocusOffset = sel.focusOffset\n};\n\nContentEditableInput.prototype.selectionInEditor = function () {\n  var sel = window.getSelection()\n  if (!sel.rangeCount) { return false }\n  var node = sel.getRangeAt(0).commonAncestorContainer\n  return contains(this.div, node)\n};\n\nContentEditableInput.prototype.focus = function () {\n  if (this.cm.options.readOnly != \"nocursor\") {\n    if (!this.selectionInEditor())\n      { this.showSelection(this.prepareSelection(), true) }\n    this.div.focus()\n  }\n};\nContentEditableInput.prototype.blur = function () { this.div.blur() };\nContentEditableInput.prototype.getField = function () { return this.div };\n\nContentEditableInput.prototype.supportsTouch = function () { return true };\n\nContentEditableInput.prototype.receivedFocus = function () {\n  var input = this\n  if (this.selectionInEditor())\n    { this.pollSelection() }\n  else\n    { runInOp(this.cm, function () { return input.cm.curOp.selectionChanged = true; }) }\n\n  function poll() {\n    if (input.cm.state.focused) {\n      input.pollSelection()\n      input.polling.set(input.cm.options.pollInterval, poll)\n    }\n  }\n  this.polling.set(this.cm.options.pollInterval, poll)\n};\n\nContentEditableInput.prototype.selectionChanged = function () {\n  var sel = window.getSelection()\n  return sel.anchorNode != this.lastAnchorNode || sel.anchorOffset != this.lastAnchorOffset ||\n    sel.focusNode != this.lastFocusNode || sel.focusOffset != this.lastFocusOffset\n};\n\nContentEditableInput.prototype.pollSelection = function () {\n  if (this.readDOMTimeout != null || this.gracePeriod || !this.selectionChanged()) { return }\n  var sel = window.getSelection(), cm = this.cm\n  // On Android Chrome (version 56, at least), backspacing into an\n  // uneditable block element will put the cursor in that element,\n  // and then, because it's not editable, hide the virtual keyboard.\n  // Because Android doesn't allow us to actually detect backspace\n  // presses in a sane way, this code checks for when that happens\n  // and simulates a backspace press in this case.\n  if (android && chrome && this.cm.options.gutters.length && isInGutter(sel.anchorNode)) {\n    this.cm.triggerOnKeyDown({type: \"keydown\", keyCode: 8, preventDefault: Math.abs})\n    this.blur()\n    this.focus()\n    return\n  }\n  if (this.composing) { return }\n  this.rememberSelection()\n  var anchor = domToPos(cm, sel.anchorNode, sel.anchorOffset)\n  var head = domToPos(cm, sel.focusNode, sel.focusOffset)\n  if (anchor && head) { runInOp(cm, function () {\n    setSelection(cm.doc, simpleSelection(anchor, head), sel_dontScroll)\n    if (anchor.bad || head.bad) { cm.curOp.selectionChanged = true }\n  }) }\n};\n\nContentEditableInput.prototype.pollContent = function () {\n  if (this.readDOMTimeout != null) {\n    clearTimeout(this.readDOMTimeout)\n    this.readDOMTimeout = null\n  }\n\n  var cm = this.cm, display = cm.display, sel = cm.doc.sel.primary()\n  var from = sel.from(), to = sel.to()\n  if (from.ch == 0 && from.line > cm.firstLine())\n    { from = Pos(from.line - 1, getLine(cm.doc, from.line - 1).length) }\n  if (to.ch == getLine(cm.doc, to.line).text.length && to.line < cm.lastLine())\n    { to = Pos(to.line + 1, 0) }\n  if (from.line < display.viewFrom || to.line > display.viewTo - 1) { return false }\n\n  var fromIndex, fromLine, fromNode\n  if (from.line == display.viewFrom || (fromIndex = findViewIndex(cm, from.line)) == 0) {\n    fromLine = lineNo(display.view[0].line)\n    fromNode = display.view[0].node\n  } else {\n    fromLine = lineNo(display.view[fromIndex].line)\n    fromNode = display.view[fromIndex - 1].node.nextSibling\n  }\n  var toIndex = findViewIndex(cm, to.line)\n  var toLine, toNode\n  if (toIndex == display.view.length - 1) {\n    toLine = display.viewTo - 1\n    toNode = display.lineDiv.lastChild\n  } else {\n    toLine = lineNo(display.view[toIndex + 1].line) - 1\n    toNode = display.view[toIndex + 1].node.previousSibling\n  }\n\n  if (!fromNode) { return false }\n  var newText = cm.doc.splitLines(domTextBetween(cm, fromNode, toNode, fromLine, toLine))\n  var oldText = getBetween(cm.doc, Pos(fromLine, 0), Pos(toLine, getLine(cm.doc, toLine).text.length))\n  while (newText.length > 1 && oldText.length > 1) {\n    if (lst(newText) == lst(oldText)) { newText.pop(); oldText.pop(); toLine-- }\n    else if (newText[0] == oldText[0]) { newText.shift(); oldText.shift(); fromLine++ }\n    else { break }\n  }\n\n  var cutFront = 0, cutEnd = 0\n  var newTop = newText[0], oldTop = oldText[0], maxCutFront = Math.min(newTop.length, oldTop.length)\n  while (cutFront < maxCutFront && newTop.charCodeAt(cutFront) == oldTop.charCodeAt(cutFront))\n    { ++cutFront }\n  var newBot = lst(newText), oldBot = lst(oldText)\n  var maxCutEnd = Math.min(newBot.length - (newText.length == 1 ? cutFront : 0),\n                           oldBot.length - (oldText.length == 1 ? cutFront : 0))\n  while (cutEnd < maxCutEnd &&\n         newBot.charCodeAt(newBot.length - cutEnd - 1) == oldBot.charCodeAt(oldBot.length - cutEnd - 1))\n    { ++cutEnd }\n  // Try to move start of change to start of selection if ambiguous\n  if (newText.length == 1 && oldText.length == 1 && fromLine == from.line) {\n    while (cutFront && cutFront > from.ch &&\n           newBot.charCodeAt(newBot.length - cutEnd - 1) == oldBot.charCodeAt(oldBot.length - cutEnd - 1)) {\n      cutFront--\n      cutEnd++\n    }\n  }\n\n  newText[newText.length - 1] = newBot.slice(0, newBot.length - cutEnd).replace(/^\\u200b+/, \"\")\n  newText[0] = newText[0].slice(cutFront).replace(/\\u200b+$/, \"\")\n\n  var chFrom = Pos(fromLine, cutFront)\n  var chTo = Pos(toLine, oldText.length ? lst(oldText).length - cutEnd : 0)\n  if (newText.length > 1 || newText[0] || cmp(chFrom, chTo)) {\n    replaceRange(cm.doc, newText, chFrom, chTo, \"+input\")\n    return true\n  }\n};\n\nContentEditableInput.prototype.ensurePolled = function () {\n  this.forceCompositionEnd()\n};\nContentEditableInput.prototype.reset = function () {\n  this.forceCompositionEnd()\n};\nContentEditableInput.prototype.forceCompositionEnd = function () {\n  if (!this.composing) { return }\n  clearTimeout(this.readDOMTimeout)\n  this.composing = null\n  this.updateFromDOM()\n  this.div.blur()\n  this.div.focus()\n};\nContentEditableInput.prototype.readFromDOMSoon = function () {\n    var this$1 = this;\n\n  if (this.readDOMTimeout != null) { return }\n  this.readDOMTimeout = setTimeout(function () {\n    this$1.readDOMTimeout = null\n    if (this$1.composing) {\n      if (this$1.composing.done) { this$1.composing = null }\n      else { return }\n    }\n    this$1.updateFromDOM()\n  }, 80)\n};\n\nContentEditableInput.prototype.updateFromDOM = function () {\n    var this$1 = this;\n\n  if (this.cm.isReadOnly() || !this.pollContent())\n    { runInOp(this.cm, function () { return regChange(this$1.cm); }) }\n};\n\nContentEditableInput.prototype.setUneditable = function (node) {\n  node.contentEditable = \"false\"\n};\n\nContentEditableInput.prototype.onKeyPress = function (e) {\n  if (e.charCode == 0) { return }\n  e.preventDefault()\n  if (!this.cm.isReadOnly())\n    { operation(this.cm, applyTextInput)(this.cm, String.fromCharCode(e.charCode == null ? e.keyCode : e.charCode), 0) }\n};\n\nContentEditableInput.prototype.readOnlyChanged = function (val) {\n  this.div.contentEditable = String(val != \"nocursor\")\n};\n\nContentEditableInput.prototype.onContextMenu = function () {};\nContentEditableInput.prototype.resetPosition = function () {};\n\nContentEditableInput.prototype.needsContentAttribute = true\n\nfunction posToDOM(cm, pos) {\n  var view = findViewForLine(cm, pos.line)\n  if (!view || view.hidden) { return null }\n  var line = getLine(cm.doc, pos.line)\n  var info = mapFromLineView(view, line, pos.line)\n\n  var order = getOrder(line, cm.doc.direction), side = \"left\"\n  if (order) {\n    var partPos = getBidiPartAt(order, pos.ch)\n    side = partPos % 2 ? \"right\" : \"left\"\n  }\n  var result = nodeAndOffsetInLineMap(info.map, pos.ch, side)\n  result.offset = result.collapse == \"right\" ? result.end : result.start\n  return result\n}\n\nfunction isInGutter(node) {\n  for (var scan = node; scan; scan = scan.parentNode)\n    { if (/CodeMirror-gutter-wrapper/.test(scan.className)) { return true } }\n  return false\n}\n\nfunction badPos(pos, bad) { if (bad) { pos.bad = true; } return pos }\n\nfunction domTextBetween(cm, from, to, fromLine, toLine) {\n  var text = \"\", closing = false, lineSep = cm.doc.lineSeparator()\n  function recognizeMarker(id) { return function (marker) { return marker.id == id; } }\n  function close() {\n    if (closing) {\n      text += lineSep\n      closing = false\n    }\n  }\n  function addText(str) {\n    if (str) {\n      close()\n      text += str\n    }\n  }\n  function walk(node) {\n    if (node.nodeType == 1) {\n      var cmText = node.getAttribute(\"cm-text\")\n      if (cmText != null) {\n        addText(cmText || node.textContent.replace(/\\u200b/g, \"\"))\n        return\n      }\n      var markerID = node.getAttribute(\"cm-marker\"), range\n      if (markerID) {\n        var found = cm.findMarks(Pos(fromLine, 0), Pos(toLine + 1, 0), recognizeMarker(+markerID))\n        if (found.length && (range = found[0].find(0)))\n          { addText(getBetween(cm.doc, range.from, range.to).join(lineSep)) }\n        return\n      }\n      if (node.getAttribute(\"contenteditable\") == \"false\") { return }\n      var isBlock = /^(pre|div|p)$/i.test(node.nodeName)\n      if (isBlock) { close() }\n      for (var i = 0; i < node.childNodes.length; i++)\n        { walk(node.childNodes[i]) }\n      if (isBlock) { closing = true }\n    } else if (node.nodeType == 3) {\n      addText(node.nodeValue)\n    }\n  }\n  for (;;) {\n    walk(from)\n    if (from == to) { break }\n    from = from.nextSibling\n  }\n  return text\n}\n\nfunction domToPos(cm, node, offset) {\n  var lineNode\n  if (node == cm.display.lineDiv) {\n    lineNode = cm.display.lineDiv.childNodes[offset]\n    if (!lineNode) { return badPos(cm.clipPos(Pos(cm.display.viewTo - 1)), true) }\n    node = null; offset = 0\n  } else {\n    for (lineNode = node;; lineNode = lineNode.parentNode) {\n      if (!lineNode || lineNode == cm.display.lineDiv) { return null }\n      if (lineNode.parentNode && lineNode.parentNode == cm.display.lineDiv) { break }\n    }\n  }\n  for (var i = 0; i < cm.display.view.length; i++) {\n    var lineView = cm.display.view[i]\n    if (lineView.node == lineNode)\n      { return locateNodeInLineView(lineView, node, offset) }\n  }\n}\n\nfunction locateNodeInLineView(lineView, node, offset) {\n  var wrapper = lineView.text.firstChild, bad = false\n  if (!node || !contains(wrapper, node)) { return badPos(Pos(lineNo(lineView.line), 0), true) }\n  if (node == wrapper) {\n    bad = true\n    node = wrapper.childNodes[offset]\n    offset = 0\n    if (!node) {\n      var line = lineView.rest ? lst(lineView.rest) : lineView.line\n      return badPos(Pos(lineNo(line), line.text.length), bad)\n    }\n  }\n\n  var textNode = node.nodeType == 3 ? node : null, topNode = node\n  if (!textNode && node.childNodes.length == 1 && node.firstChild.nodeType == 3) {\n    textNode = node.firstChild\n    if (offset) { offset = textNode.nodeValue.length }\n  }\n  while (topNode.parentNode != wrapper) { topNode = topNode.parentNode }\n  var measure = lineView.measure, maps = measure.maps\n\n  function find(textNode, topNode, offset) {\n    for (var i = -1; i < (maps ? maps.length : 0); i++) {\n      var map = i < 0 ? measure.map : maps[i]\n      for (var j = 0; j < map.length; j += 3) {\n        var curNode = map[j + 2]\n        if (curNode == textNode || curNode == topNode) {\n          var line = lineNo(i < 0 ? lineView.line : lineView.rest[i])\n          var ch = map[j] + offset\n          if (offset < 0 || curNode != textNode) { ch = map[j + (offset ? 1 : 0)] }\n          return Pos(line, ch)\n        }\n      }\n    }\n  }\n  var found = find(textNode, topNode, offset)\n  if (found) { return badPos(found, bad) }\n\n  // FIXME this is all really shaky. might handle the few cases it needs to handle, but likely to cause problems\n  for (var after = topNode.nextSibling, dist = textNode ? textNode.nodeValue.length - offset : 0; after; after = after.nextSibling) {\n    found = find(after, after.firstChild, 0)\n    if (found)\n      { return badPos(Pos(found.line, found.ch - dist), bad) }\n    else\n      { dist += after.textContent.length }\n  }\n  for (var before = topNode.previousSibling, dist$1 = offset; before; before = before.previousSibling) {\n    found = find(before, before.firstChild, -1)\n    if (found)\n      { return badPos(Pos(found.line, found.ch + dist$1), bad) }\n    else\n      { dist$1 += before.textContent.length }\n  }\n}\n\n// TEXTAREA INPUT STYLE\n\nvar TextareaInput = function(cm) {\n  this.cm = cm\n  // See input.poll and input.reset\n  this.prevInput = \"\"\n\n  // Flag that indicates whether we expect input to appear real soon\n  // now (after some event like 'keypress' or 'input') and are\n  // polling intensively.\n  this.pollingFast = false\n  // Self-resetting timeout for the poller\n  this.polling = new Delayed()\n  // Used to work around IE issue with selection being forgotten when focus moves away from textarea\n  this.hasSelection = false\n  this.composing = null\n};\n\nTextareaInput.prototype.init = function (display) {\n    var this$1 = this;\n\n  var input = this, cm = this.cm\n\n  // Wraps and hides input textarea\n  var div = this.wrapper = hiddenTextarea()\n  // The semihidden textarea that is focused when the editor is\n  // focused, and receives input.\n  var te = this.textarea = div.firstChild\n  display.wrapper.insertBefore(div, display.wrapper.firstChild)\n\n  // Needed to hide big blue blinking cursor on Mobile Safari (doesn't seem to work in iOS 8 anymore)\n  if (ios) { te.style.width = \"0px\" }\n\n  on(te, \"input\", function () {\n    if (ie && ie_version >= 9 && this$1.hasSelection) { this$1.hasSelection = null }\n    input.poll()\n  })\n\n  on(te, \"paste\", function (e) {\n    if (signalDOMEvent(cm, e) || handlePaste(e, cm)) { return }\n\n    cm.state.pasteIncoming = true\n    input.fastPoll()\n  })\n\n  function prepareCopyCut(e) {\n    if (signalDOMEvent(cm, e)) { return }\n    if (cm.somethingSelected()) {\n      setLastCopied({lineWise: false, text: cm.getSelections()})\n    } else if (!cm.options.lineWiseCopyCut) {\n      return\n    } else {\n      var ranges = copyableRanges(cm)\n      setLastCopied({lineWise: true, text: ranges.text})\n      if (e.type == \"cut\") {\n        cm.setSelections(ranges.ranges, null, sel_dontScroll)\n      } else {\n        input.prevInput = \"\"\n        te.value = ranges.text.join(\"\\n\")\n        selectInput(te)\n      }\n    }\n    if (e.type == \"cut\") { cm.state.cutIncoming = true }\n  }\n  on(te, \"cut\", prepareCopyCut)\n  on(te, \"copy\", prepareCopyCut)\n\n  on(display.scroller, \"paste\", function (e) {\n    if (eventInWidget(display, e) || signalDOMEvent(cm, e)) { return }\n    cm.state.pasteIncoming = true\n    input.focus()\n  })\n\n  // Prevent normal selection in the editor (we handle our own)\n  on(display.lineSpace, \"selectstart\", function (e) {\n    if (!eventInWidget(display, e)) { e_preventDefault(e) }\n  })\n\n  on(te, \"compositionstart\", function () {\n    var start = cm.getCursor(\"from\")\n    if (input.composing) { input.composing.range.clear() }\n    input.composing = {\n      start: start,\n      range: cm.markText(start, cm.getCursor(\"to\"), {className: \"CodeMirror-composing\"})\n    }\n  })\n  on(te, \"compositionend\", function () {\n    if (input.composing) {\n      input.poll()\n      input.composing.range.clear()\n      input.composing = null\n    }\n  })\n};\n\nTextareaInput.prototype.prepareSelection = function () {\n  // Redraw the selection and/or cursor\n  var cm = this.cm, display = cm.display, doc = cm.doc\n  var result = prepareSelection(cm)\n\n  // Move the hidden textarea near the cursor to prevent scrolling artifacts\n  if (cm.options.moveInputWithCursor) {\n    var headPos = cursorCoords(cm, doc.sel.primary().head, \"div\")\n    var wrapOff = display.wrapper.getBoundingClientRect(), lineOff = display.lineDiv.getBoundingClientRect()\n    result.teTop = Math.max(0, Math.min(display.wrapper.clientHeight - 10,\n                                        headPos.top + lineOff.top - wrapOff.top))\n    result.teLeft = Math.max(0, Math.min(display.wrapper.clientWidth - 10,\n                                         headPos.left + lineOff.left - wrapOff.left))\n  }\n\n  return result\n};\n\nTextareaInput.prototype.showSelection = function (drawn) {\n  var cm = this.cm, display = cm.display\n  removeChildrenAndAdd(display.cursorDiv, drawn.cursors)\n  removeChildrenAndAdd(display.selectionDiv, drawn.selection)\n  if (drawn.teTop != null) {\n    this.wrapper.style.top = drawn.teTop + \"px\"\n    this.wrapper.style.left = drawn.teLeft + \"px\"\n  }\n};\n\n// Reset the input to correspond to the selection (or to be empty,\n// when not typing and nothing is selected)\nTextareaInput.prototype.reset = function (typing) {\n  if (this.contextMenuPending || this.composing) { return }\n  var cm = this.cm\n  if (cm.somethingSelected()) {\n    this.prevInput = \"\"\n    var content = cm.getSelection()\n    this.textarea.value = content\n    if (cm.state.focused) { selectInput(this.textarea) }\n    if (ie && ie_version >= 9) { this.hasSelection = content }\n  } else if (!typing) {\n    this.prevInput = this.textarea.value = \"\"\n    if (ie && ie_version >= 9) { this.hasSelection = null }\n  }\n};\n\nTextareaInput.prototype.getField = function () { return this.textarea };\n\nTextareaInput.prototype.supportsTouch = function () { return false };\n\nTextareaInput.prototype.focus = function () {\n  if (this.cm.options.readOnly != \"nocursor\" && (!mobile || activeElt() != this.textarea)) {\n    try { this.textarea.focus() }\n    catch (e) {} // IE8 will throw if the textarea is display: none or not in DOM\n  }\n};\n\nTextareaInput.prototype.blur = function () { this.textarea.blur() };\n\nTextareaInput.prototype.resetPosition = function () {\n  this.wrapper.style.top = this.wrapper.style.left = 0\n};\n\nTextareaInput.prototype.receivedFocus = function () { this.slowPoll() };\n\n// Poll for input changes, using the normal rate of polling. This\n// runs as long as the editor is focused.\nTextareaInput.prototype.slowPoll = function () {\n    var this$1 = this;\n\n  if (this.pollingFast) { return }\n  this.polling.set(this.cm.options.pollInterval, function () {\n    this$1.poll()\n    if (this$1.cm.state.focused) { this$1.slowPoll() }\n  })\n};\n\n// When an event has just come in that is likely to add or change\n// something in the input textarea, we poll faster, to ensure that\n// the change appears on the screen quickly.\nTextareaInput.prototype.fastPoll = function () {\n  var missed = false, input = this\n  input.pollingFast = true\n  function p() {\n    var changed = input.poll()\n    if (!changed && !missed) {missed = true; input.polling.set(60, p)}\n    else {input.pollingFast = false; input.slowPoll()}\n  }\n  input.polling.set(20, p)\n};\n\n// Read input from the textarea, and update the document to match.\n// When something is selected, it is present in the textarea, and\n// selected (unless it is huge, in which case a placeholder is\n// used). When nothing is selected, the cursor sits after previously\n// seen text (can be empty), which is stored in prevInput (we must\n// not reset the textarea when typing, because that breaks IME).\nTextareaInput.prototype.poll = function () {\n    var this$1 = this;\n\n  var cm = this.cm, input = this.textarea, prevInput = this.prevInput\n  // Since this is called a *lot*, try to bail out as cheaply as\n  // possible when it is clear that nothing happened. hasSelection\n  // will be the case when there is a lot of text in the textarea,\n  // in which case reading its value would be expensive.\n  if (this.contextMenuPending || !cm.state.focused ||\n      (hasSelection(input) && !prevInput && !this.composing) ||\n      cm.isReadOnly() || cm.options.disableInput || cm.state.keySeq)\n    { return false }\n\n  var text = input.value\n  // If nothing changed, bail.\n  if (text == prevInput && !cm.somethingSelected()) { return false }\n  // Work around nonsensical selection resetting in IE9/10, and\n  // inexplicable appearance of private area unicode characters on\n  // some key combos in Mac (#2689).\n  if (ie && ie_version >= 9 && this.hasSelection === text ||\n      mac && /[\\uf700-\\uf7ff]/.test(text)) {\n    cm.display.input.reset()\n    return false\n  }\n\n  if (cm.doc.sel == cm.display.selForContextMenu) {\n    var first = text.charCodeAt(0)\n    if (first == 0x200b && !prevInput) { prevInput = \"\\u200b\" }\n    if (first == 0x21da) { this.reset(); return this.cm.execCommand(\"undo\") }\n  }\n  // Find the part of the input that is actually new\n  var same = 0, l = Math.min(prevInput.length, text.length)\n  while (same < l && prevInput.charCodeAt(same) == text.charCodeAt(same)) { ++same }\n\n  runInOp(cm, function () {\n    applyTextInput(cm, text.slice(same), prevInput.length - same,\n                   null, this$1.composing ? \"*compose\" : null)\n\n    // Don't leave long text in the textarea, since it makes further polling slow\n    if (text.length > 1000 || text.indexOf(\"\\n\") > -1) { input.value = this$1.prevInput = \"\" }\n    else { this$1.prevInput = text }\n\n    if (this$1.composing) {\n      this$1.composing.range.clear()\n      this$1.composing.range = cm.markText(this$1.composing.start, cm.getCursor(\"to\"),\n                                         {className: \"CodeMirror-composing\"})\n    }\n  })\n  return true\n};\n\nTextareaInput.prototype.ensurePolled = function () {\n  if (this.pollingFast && this.poll()) { this.pollingFast = false }\n};\n\nTextareaInput.prototype.onKeyPress = function () {\n  if (ie && ie_version >= 9) { this.hasSelection = null }\n  this.fastPoll()\n};\n\nTextareaInput.prototype.onContextMenu = function (e) {\n  var input = this, cm = input.cm, display = cm.display, te = input.textarea\n  var pos = posFromMouse(cm, e), scrollPos = display.scroller.scrollTop\n  if (!pos || presto) { return } // Opera is difficult.\n\n  // Reset the current text selection only if the click is done outside of the selection\n  // and 'resetSelectionOnContextMenu' option is true.\n  var reset = cm.options.resetSelectionOnContextMenu\n  if (reset && cm.doc.sel.contains(pos) == -1)\n    { operation(cm, setSelection)(cm.doc, simpleSelection(pos), sel_dontScroll) }\n\n  var oldCSS = te.style.cssText, oldWrapperCSS = input.wrapper.style.cssText\n  input.wrapper.style.cssText = \"position: absolute\"\n  var wrapperBox = input.wrapper.getBoundingClientRect()\n  te.style.cssText = \"position: absolute; width: 30px; height: 30px;\\n      top: \" + (e.clientY - wrapperBox.top - 5) + \"px; left: \" + (e.clientX - wrapperBox.left - 5) + \"px;\\n      z-index: 1000; background: \" + (ie ? \"rgba(255, 255, 255, .05)\" : \"transparent\") + \";\\n      outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);\"\n  var oldScrollY\n  if (webkit) { oldScrollY = window.scrollY } // Work around Chrome issue (#2712)\n  display.input.focus()\n  if (webkit) { window.scrollTo(null, oldScrollY) }\n  display.input.reset()\n  // Adds \"Select all\" to context menu in FF\n  if (!cm.somethingSelected()) { te.value = input.prevInput = \" \" }\n  input.contextMenuPending = true\n  display.selForContextMenu = cm.doc.sel\n  clearTimeout(display.detectingSelectAll)\n\n  // Select-all will be greyed out if there's nothing to select, so\n  // this adds a zero-width space so that we can later check whether\n  // it got selected.\n  function prepareSelectAllHack() {\n    if (te.selectionStart != null) {\n      var selected = cm.somethingSelected()\n      var extval = \"\\u200b\" + (selected ? te.value : \"\")\n      te.value = \"\\u21da\" // Used to catch context-menu undo\n      te.value = extval\n      input.prevInput = selected ? \"\" : \"\\u200b\"\n      te.selectionStart = 1; te.selectionEnd = extval.length\n      // Re-set this, in case some other handler touched the\n      // selection in the meantime.\n      display.selForContextMenu = cm.doc.sel\n    }\n  }\n  function rehide() {\n    input.contextMenuPending = false\n    input.wrapper.style.cssText = oldWrapperCSS\n    te.style.cssText = oldCSS\n    if (ie && ie_version < 9) { display.scrollbars.setScrollTop(display.scroller.scrollTop = scrollPos) }\n\n    // Try to detect the user choosing select-all\n    if (te.selectionStart != null) {\n      if (!ie || (ie && ie_version < 9)) { prepareSelectAllHack() }\n      var i = 0, poll = function () {\n        if (display.selForContextMenu == cm.doc.sel && te.selectionStart == 0 &&\n            te.selectionEnd > 0 && input.prevInput == \"\\u200b\") {\n          operation(cm, selectAll)(cm)\n        } else if (i++ < 10) {\n          display.detectingSelectAll = setTimeout(poll, 500)\n        } else {\n          display.selForContextMenu = null\n          display.input.reset()\n        }\n      }\n      display.detectingSelectAll = setTimeout(poll, 200)\n    }\n  }\n\n  if (ie && ie_version >= 9) { prepareSelectAllHack() }\n  if (captureRightClick) {\n    e_stop(e)\n    var mouseup = function () {\n      off(window, \"mouseup\", mouseup)\n      setTimeout(rehide, 20)\n    }\n    on(window, \"mouseup\", mouseup)\n  } else {\n    setTimeout(rehide, 50)\n  }\n};\n\nTextareaInput.prototype.readOnlyChanged = function (val) {\n  if (!val) { this.reset() }\n  this.textarea.disabled = val == \"nocursor\"\n};\n\nTextareaInput.prototype.setUneditable = function () {};\n\nTextareaInput.prototype.needsContentAttribute = false\n\nfunction fromTextArea(textarea, options) {\n  options = options ? copyObj(options) : {}\n  options.value = textarea.value\n  if (!options.tabindex && textarea.tabIndex)\n    { options.tabindex = textarea.tabIndex }\n  if (!options.placeholder && textarea.placeholder)\n    { options.placeholder = textarea.placeholder }\n  // Set autofocus to true if this textarea is focused, or if it has\n  // autofocus and no other element is focused.\n  if (options.autofocus == null) {\n    var hasFocus = activeElt()\n    options.autofocus = hasFocus == textarea ||\n      textarea.getAttribute(\"autofocus\") != null && hasFocus == document.body\n  }\n\n  function save() {textarea.value = cm.getValue()}\n\n  var realSubmit\n  if (textarea.form) {\n    on(textarea.form, \"submit\", save)\n    // Deplorable hack to make the submit method do the right thing.\n    if (!options.leaveSubmitMethodAlone) {\n      var form = textarea.form\n      realSubmit = form.submit\n      try {\n        var wrappedSubmit = form.submit = function () {\n          save()\n          form.submit = realSubmit\n          form.submit()\n          form.submit = wrappedSubmit\n        }\n      } catch(e) {}\n    }\n  }\n\n  options.finishInit = function (cm) {\n    cm.save = save\n    cm.getTextArea = function () { return textarea; }\n    cm.toTextArea = function () {\n      cm.toTextArea = isNaN // Prevent this from being ran twice\n      save()\n      textarea.parentNode.removeChild(cm.getWrapperElement())\n      textarea.style.display = \"\"\n      if (textarea.form) {\n        off(textarea.form, \"submit\", save)\n        if (typeof textarea.form.submit == \"function\")\n          { textarea.form.submit = realSubmit }\n      }\n    }\n  }\n\n  textarea.style.display = \"none\"\n  var cm = CodeMirror(function (node) { return textarea.parentNode.insertBefore(node, textarea.nextSibling); },\n    options)\n  return cm\n}\n\nfunction addLegacyProps(CodeMirror) {\n  CodeMirror.off = off\n  CodeMirror.on = on\n  CodeMirror.wheelEventPixels = wheelEventPixels\n  CodeMirror.Doc = Doc\n  CodeMirror.splitLines = splitLinesAuto\n  CodeMirror.countColumn = countColumn\n  CodeMirror.findColumn = findColumn\n  CodeMirror.isWordChar = isWordCharBasic\n  CodeMirror.Pass = Pass\n  CodeMirror.signal = signal\n  CodeMirror.Line = Line\n  CodeMirror.changeEnd = changeEnd\n  CodeMirror.scrollbarModel = scrollbarModel\n  CodeMirror.Pos = Pos\n  CodeMirror.cmpPos = cmp\n  CodeMirror.modes = modes\n  CodeMirror.mimeModes = mimeModes\n  CodeMirror.resolveMode = resolveMode\n  CodeMirror.getMode = getMode\n  CodeMirror.modeExtensions = modeExtensions\n  CodeMirror.extendMode = extendMode\n  CodeMirror.copyState = copyState\n  CodeMirror.startState = startState\n  CodeMirror.innerMode = innerMode\n  CodeMirror.commands = commands\n  CodeMirror.keyMap = keyMap\n  CodeMirror.keyName = keyName\n  CodeMirror.isModifierKey = isModifierKey\n  CodeMirror.lookupKey = lookupKey\n  CodeMirror.normalizeKeyMap = normalizeKeyMap\n  CodeMirror.StringStream = StringStream\n  CodeMirror.SharedTextMarker = SharedTextMarker\n  CodeMirror.TextMarker = TextMarker\n  CodeMirror.LineWidget = LineWidget\n  CodeMirror.e_preventDefault = e_preventDefault\n  CodeMirror.e_stopPropagation = e_stopPropagation\n  CodeMirror.e_stop = e_stop\n  CodeMirror.addClass = addClass\n  CodeMirror.contains = contains\n  CodeMirror.rmClass = rmClass\n  CodeMirror.keyNames = keyNames\n}\n\n// EDITOR CONSTRUCTOR\n\ndefineOptions(CodeMirror)\n\naddEditorMethods(CodeMirror)\n\n// Set up methods on CodeMirror's prototype to redirect to the editor's document.\nvar dontDelegate = \"iter insert remove copy getEditor constructor\".split(\" \")\nfor (var prop in Doc.prototype) { if (Doc.prototype.hasOwnProperty(prop) && indexOf(dontDelegate, prop) < 0)\n  { CodeMirror.prototype[prop] = (function(method) {\n    return function() {return method.apply(this.doc, arguments)}\n  })(Doc.prototype[prop]) } }\n\neventMixin(Doc)\n\n// INPUT HANDLING\n\nCodeMirror.inputStyles = {\"textarea\": TextareaInput, \"contenteditable\": ContentEditableInput}\n\n// MODE DEFINITION AND QUERYING\n\n// Extra arguments are stored as the mode's dependencies, which is\n// used by (legacy) mechanisms like loadmode.js to automatically\n// load a mode. (Preferred mechanism is the require/define calls.)\nCodeMirror.defineMode = function(name/*, mode, …*/) {\n  if (!CodeMirror.defaults.mode && name != \"null\") { CodeMirror.defaults.mode = name }\n  defineMode.apply(this, arguments)\n}\n\nCodeMirror.defineMIME = defineMIME\n\n// Minimal default mode.\nCodeMirror.defineMode(\"null\", function () { return ({token: function (stream) { return stream.skipToEnd(); }}); })\nCodeMirror.defineMIME(\"text/plain\", \"null\")\n\n// EXTENSIONS\n\nCodeMirror.defineExtension = function (name, func) {\n  CodeMirror.prototype[name] = func\n}\nCodeMirror.defineDocExtension = function (name, func) {\n  Doc.prototype[name] = func\n}\n\nCodeMirror.fromTextArea = fromTextArea\n\naddLegacyProps(CodeMirror)\n\nCodeMirror.version = \"5.30.0\"\n\nreturn CodeMirror;\n\n})));"
  },
  {
    "path": "ui/vendor/codemirror/matchbrackets.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n  var ie_lt8 = /MSIE \\d/.test(navigator.userAgent) &&\n    (document.documentMode == null || document.documentMode < 8);\n\n  var Pos = CodeMirror.Pos;\n\n  var matching = {\"(\": \")>\", \")\": \"(<\", \"[\": \"]>\", \"]\": \"[<\", \"{\": \"}>\", \"}\": \"{<\"};\n\n  function findMatchingBracket(cm, where, config) {\n    var line = cm.getLineHandle(where.line), pos = where.ch - 1;\n    var afterCursor = config && config.afterCursor\n    if (afterCursor == null)\n      afterCursor = /(^| )cm-fat-cursor($| )/.test(cm.getWrapperElement().className)\n\n    // A cursor is defined as between two characters, but in in vim command mode\n    // (i.e. not insert mode), the cursor is visually represented as a\n    // highlighted box on top of the 2nd character. Otherwise, we allow matches\n    // from before or after the cursor.\n    var match = (!afterCursor && pos >= 0 && matching[line.text.charAt(pos)]) ||\n        matching[line.text.charAt(++pos)];\n    if (!match) return null;\n    var dir = match.charAt(1) == \">\" ? 1 : -1;\n    if (config && config.strict && (dir > 0) != (pos == where.ch)) return null;\n    var style = cm.getTokenTypeAt(Pos(where.line, pos + 1));\n\n    var found = scanForBracket(cm, Pos(where.line, pos + (dir > 0 ? 1 : 0)), dir, style || null, config);\n    if (found == null) return null;\n    return {from: Pos(where.line, pos), to: found && found.pos,\n            match: found && found.ch == match.charAt(0), forward: dir > 0};\n  }\n\n  // bracketRegex is used to specify which type of bracket to scan\n  // should be a regexp, e.g. /[[\\]]/\n  //\n  // Note: If \"where\" is on an open bracket, then this bracket is ignored.\n  //\n  // Returns false when no bracket was found, null when it reached\n  // maxScanLines and gave up\n  function scanForBracket(cm, where, dir, style, config) {\n    var maxScanLen = (config && config.maxScanLineLength) || 10000;\n    var maxScanLines = (config && config.maxScanLines) || 1000;\n\n    var stack = [];\n    var re = config && config.bracketRegex ? config.bracketRegex : /[(){}[\\]]/;\n    var lineEnd = dir > 0 ? Math.min(where.line + maxScanLines, cm.lastLine() + 1)\n                          : Math.max(cm.firstLine() - 1, where.line - maxScanLines);\n    for (var lineNo = where.line; lineNo != lineEnd; lineNo += dir) {\n      var line = cm.getLine(lineNo);\n      if (!line) continue;\n      var pos = dir > 0 ? 0 : line.length - 1, end = dir > 0 ? line.length : -1;\n      if (line.length > maxScanLen) continue;\n      if (lineNo == where.line) pos = where.ch - (dir < 0 ? 1 : 0);\n      for (; pos != end; pos += dir) {\n        var ch = line.charAt(pos);\n        if (re.test(ch) && (style === undefined || cm.getTokenTypeAt(Pos(lineNo, pos + 1)) == style)) {\n          var match = matching[ch];\n          if ((match.charAt(1) == \">\") == (dir > 0)) stack.push(ch);\n          else if (!stack.length) return {pos: Pos(lineNo, pos), ch: ch};\n          else stack.pop();\n        }\n      }\n    }\n    return lineNo - dir == (dir > 0 ? cm.lastLine() : cm.firstLine()) ? false : null;\n  }\n\n  function matchBrackets(cm, autoclear, config) {\n    // Disable brace matching in long lines, since it'll cause hugely slow updates\n    var maxHighlightLen = cm.state.matchBrackets.maxHighlightLineLength || 1000;\n    var marks = [], ranges = cm.listSelections();\n    for (var i = 0; i < ranges.length; i++) {\n      var match = ranges[i].empty() && findMatchingBracket(cm, ranges[i].head, config);\n      if (match && cm.getLine(match.from.line).length <= maxHighlightLen) {\n        var style = match.match ? \"CodeMirror-matchingbracket\" : \"CodeMirror-nonmatchingbracket\";\n        marks.push(cm.markText(match.from, Pos(match.from.line, match.from.ch + 1), {className: style}));\n        if (match.to && cm.getLine(match.to.line).length <= maxHighlightLen)\n          marks.push(cm.markText(match.to, Pos(match.to.line, match.to.ch + 1), {className: style}));\n      }\n    }\n\n    if (marks.length) {\n      // Kludge to work around the IE bug from issue #1193, where text\n      // input stops going to the textare whever this fires.\n      if (ie_lt8 && cm.state.focused) cm.focus();\n\n      var clear = function() {\n        cm.operation(function() {\n          for (var i = 0; i < marks.length; i++) marks[i].clear();\n        });\n      };\n      if (autoclear) setTimeout(clear, 800);\n      else return clear;\n    }\n  }\n\n  var currentlyHighlighted = null;\n  function doMatchBrackets(cm) {\n    cm.operation(function() {\n      if (currentlyHighlighted) {currentlyHighlighted(); currentlyHighlighted = null;}\n      currentlyHighlighted = matchBrackets(cm, false, cm.state.matchBrackets);\n    });\n  }\n\n  CodeMirror.defineOption(\"matchBrackets\", false, function(cm, val, old) {\n    if (old && old != CodeMirror.Init) {\n      cm.off(\"cursorActivity\", doMatchBrackets);\n      if (currentlyHighlighted) {currentlyHighlighted(); currentlyHighlighted = null;}\n    }\n    if (val) {\n      cm.state.matchBrackets = typeof val == \"object\" ? val : {};\n      cm.on(\"cursorActivity\", doMatchBrackets);\n    }\n  });\n\n  CodeMirror.defineExtension(\"matchBrackets\", function() {matchBrackets(this, true);});\n  CodeMirror.defineExtension(\"findMatchingBracket\", function(pos, config, oldConfig){\n    // Backwards-compatibility kludge\n    if (oldConfig || typeof config == \"boolean\") {\n      if (!oldConfig) {\n        config = config ? {strict: true} : null\n      } else {\n        oldConfig.strict = config\n        config = oldConfig\n      }\n    }\n    return findMatchingBracket(this, pos, config)\n  });\n  CodeMirror.defineExtension(\"scanForBracket\", function(pos, dir, style, config){\n    return scanForBracket(this, pos, dir, style, config);\n  });\n});\n"
  },
  {
    "path": "ui/vendor/codemirror/material.css",
    "content": "/*\n\n    Name:       material\n    Author:     Michael Kaminsky (http://github.com/mkaminsky11)\n\n    Original material color scheme by Mattia Astorino (https://github.com/equinusocio/material-theme)\n\n*/\n\n.cm-s-material.CodeMirror {\n\tbackground-color: #212121;\n  /*background-color: #363636;*/\n  color: rgba(233, 237, 237, 1);\n}\n.cm-s-material .CodeMirror-gutters {\n\tbackground: #212121;\n  /*background-color: #363636;*/\n  color: rgb(83,127,126);\n  border: none;\n}\n.cm-s-material .CodeMirror-guttermarker, .cm-s-material .CodeMirror-guttermarker-subtle, .cm-s-material .CodeMirror-linenumber { color: rgb(83,127,126); }\n.cm-s-material .CodeMirror-cursor { border-left: 1px solid #f8f8f0; }\n.cm-s-material div.CodeMirror-selected { background: rgba(255, 255, 255, 0.15); }\n.cm-s-material.CodeMirror-focused div.CodeMirror-selected { background: rgba(255, 255, 255, 0.10); }\n.cm-s-material .CodeMirror-line::selection, .cm-s-material .CodeMirror-line > span::selection, .cm-s-material .CodeMirror-line > span > span::selection { background: rgba(255, 255, 255, 0.10); }\n.cm-s-material .CodeMirror-line::-moz-selection, .cm-s-material .CodeMirror-line > span::-moz-selection, .cm-s-material .CodeMirror-line > span > span::-moz-selection { background: rgba(255, 255, 255, 0.10); }\n\n.cm-s-material .CodeMirror-activeline-background { background: rgba(0, 0, 0, 0); }\n.cm-s-material .cm-keyword { color: rgba(199, 146, 234, 1); }\n.cm-s-material .cm-operator { color: rgba(233, 237, 237, 1); }\n.cm-s-material .cm-variable-2 { color: #80CBC4; }\n.cm-s-material .cm-variable-3, .cm-s-material .cm-type { color: #82B1FF; }\n.cm-s-material .cm-builtin { color: #DECB6B; }\n.cm-s-material .cm-atom { color: #F77669; }\n.cm-s-material .cm-number { color: #F77669; }\n.cm-s-material .cm-def { color: rgba(233, 237, 237, 1); }\n.cm-s-material .cm-string { color: #C3E88D; }\n.cm-s-material .cm-string-2 { color: #80CBC4; }\n.cm-s-material .cm-comment { color: #546E7A; }\n.cm-s-material .cm-variable { color: #82B1FF; }\n.cm-s-material .cm-tag { color: #80CBC4; }\n.cm-s-material .cm-meta { color: #80CBC4; }\n.cm-s-material .cm-attribute { color: #FFCB6B; }\n.cm-s-material .cm-property { color: #80CBAE; }\n.cm-s-material .cm-qualifier { color: #DECB6B; }\n.cm-s-material .cm-variable-3, .cm-s-material .cm-type { color: #DECB6B; }\n.cm-s-material .cm-tag { color: rgba(255, 83, 112, 1); }\n.cm-s-material .cm-error {\n  color: rgba(255, 255, 255, 1.0);\n  background-color: #EC5F67;\n}\n.cm-s-material .CodeMirror-matchingbracket {\n  color: white !important;\n  background-color: #404040!important;\n}\n"
  },
  {
    "path": "ui/vendor/codemirror/simplescrollbars.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n  \"use strict\";\n\n  function Bar(cls, orientation, scroll) {\n    this.orientation = orientation;\n    this.scroll = scroll;\n    this.screen = this.total = this.size = 1;\n    this.pos = 0;\n\n    this.node = document.createElement(\"div\");\n    this.node.className = cls + \"-\" + orientation;\n    this.inner = this.node.appendChild(document.createElement(\"div\"));\n\n    var self = this;\n    CodeMirror.on(this.inner, \"mousedown\", function(e) {\n      if (e.which != 1) return;\n      CodeMirror.e_preventDefault(e);\n      var axis = self.orientation == \"horizontal\" ? \"pageX\" : \"pageY\";\n      var start = e[axis], startpos = self.pos;\n      function done() {\n        CodeMirror.off(document, \"mousemove\", move);\n        CodeMirror.off(document, \"mouseup\", done);\n      }\n      function move(e) {\n        if (e.which != 1) return done();\n        self.moveTo(startpos + (e[axis] - start) * (self.total / self.size));\n      }\n      CodeMirror.on(document, \"mousemove\", move);\n      CodeMirror.on(document, \"mouseup\", done);\n    });\n\n    CodeMirror.on(this.node, \"click\", function(e) {\n      CodeMirror.e_preventDefault(e);\n      var innerBox = self.inner.getBoundingClientRect(), where;\n      if (self.orientation == \"horizontal\")\n        where = e.clientX < innerBox.left ? -1 : e.clientX > innerBox.right ? 1 : 0;\n      else\n        where = e.clientY < innerBox.top ? -1 : e.clientY > innerBox.bottom ? 1 : 0;\n      self.moveTo(self.pos + where * self.screen);\n    });\n\n    function onWheel(e) {\n      var moved = CodeMirror.wheelEventPixels(e)[self.orientation == \"horizontal\" ? \"x\" : \"y\"];\n      var oldPos = self.pos;\n      self.moveTo(self.pos + moved);\n      if (self.pos != oldPos) CodeMirror.e_preventDefault(e);\n    }\n    CodeMirror.on(this.node, \"mousewheel\", onWheel);\n    CodeMirror.on(this.node, \"DOMMouseScroll\", onWheel);\n  }\n\n  Bar.prototype.setPos = function(pos, force) {\n    if (pos < 0) pos = 0;\n    if (pos > this.total - this.screen) pos = this.total - this.screen;\n    if (!force && pos == this.pos) return false;\n    this.pos = pos;\n    this.inner.style[this.orientation == \"horizontal\" ? \"left\" : \"top\"] =\n      (pos * (this.size / this.total)) + \"px\";\n    return true\n  };\n\n  Bar.prototype.moveTo = function(pos) {\n    if (this.setPos(pos)) this.scroll(pos, this.orientation);\n  }\n\n  var minButtonSize = 10;\n\n  Bar.prototype.update = function(scrollSize, clientSize, barSize) {\n    var sizeChanged = this.screen != clientSize || this.total != scrollSize || this.size != barSize\n    if (sizeChanged) {\n      this.screen = clientSize;\n      this.total = scrollSize;\n      this.size = barSize;\n    }\n\n    var buttonSize = this.screen * (this.size / this.total);\n    if (buttonSize < minButtonSize) {\n      this.size -= minButtonSize - buttonSize;\n      buttonSize = minButtonSize;\n    }\n    this.inner.style[this.orientation == \"horizontal\" ? \"width\" : \"height\"] =\n      buttonSize + \"px\";\n    this.setPos(this.pos, sizeChanged);\n  };\n\n  function SimpleScrollbars(cls, place, scroll) {\n    this.addClass = cls;\n    this.horiz = new Bar(cls, \"horizontal\", scroll);\n    place(this.horiz.node);\n    this.vert = new Bar(cls, \"vertical\", scroll);\n    place(this.vert.node);\n    this.width = null;\n  }\n\n  SimpleScrollbars.prototype.update = function(measure) {\n    if (this.width == null) {\n      var style = window.getComputedStyle ? window.getComputedStyle(this.horiz.node) : this.horiz.node.currentStyle;\n      if (style) this.width = parseInt(style.height);\n    }\n    var width = this.width || 0;\n\n    var needsH = measure.scrollWidth > measure.clientWidth + 1;\n    var needsV = measure.scrollHeight > measure.clientHeight + 1;\n    this.vert.node.style.display = needsV ? \"block\" : \"none\";\n    this.horiz.node.style.display = needsH ? \"block\" : \"none\";\n\n    if (needsV) {\n      this.vert.update(measure.scrollHeight, measure.clientHeight,\n                       measure.viewHeight - (needsH ? width : 0));\n      this.vert.node.style.bottom = needsH ? width + \"px\" : \"0\";\n    }\n    if (needsH) {\n      this.horiz.update(measure.scrollWidth, measure.clientWidth,\n                        measure.viewWidth - (needsV ? width : 0) - measure.barLeft);\n      this.horiz.node.style.right = needsV ? width + \"px\" : \"0\";\n      this.horiz.node.style.left = measure.barLeft + \"px\";\n    }\n\n    return {right: needsV ? width : 0, bottom: needsH ? width : 0};\n  };\n\n  SimpleScrollbars.prototype.setScrollTop = function(pos) {\n    this.vert.setPos(pos);\n  };\n\n  SimpleScrollbars.prototype.setScrollLeft = function(pos) {\n    this.horiz.setPos(pos);\n  };\n\n  SimpleScrollbars.prototype.clear = function() {\n    var parent = this.horiz.node.parentNode;\n    parent.removeChild(this.horiz.node);\n    parent.removeChild(this.vert.node);\n  };\n\n  CodeMirror.scrollbarModel.simple = function(place, scroll) {\n    return new SimpleScrollbars(\"CodeMirror-simplescroll\", place, scroll);\n  };\n  CodeMirror.scrollbarModel.overlay = function(place, scroll) {\n    return new SimpleScrollbars(\"CodeMirror-overlayscroll\", place, scroll);\n  };\n});\n"
  },
  {
    "path": "ui/vendor/material-icons/MaterialIcons-Regular.ijmap",
    "content": "{\"icons\":{\"e84d\":{\"name\":\"3d Rotation\"},\"eb3b\":{\"name\":\"Ac Unit\"},\"e190\":{\"name\":\"Access Alarm\"},\"e191\":{\"name\":\"Access Alarms\"},\"e192\":{\"name\":\"Access Time\"},\"e84e\":{\"name\":\"Accessibility\"},\"e914\":{\"name\":\"Accessible\"},\"e84f\":{\"name\":\"Account Balance\"},\"e850\":{\"name\":\"Account Balance Wallet\"},\"e851\":{\"name\":\"Account Box\"},\"e853\":{\"name\":\"Account Circle\"},\"e60e\":{\"name\":\"Adb\"},\"e145\":{\"name\":\"Add\"},\"e439\":{\"name\":\"Add A Photo\"},\"e193\":{\"name\":\"Add Alarm\"},\"e003\":{\"name\":\"Add Alert\"},\"e146\":{\"name\":\"Add Box\"},\"e147\":{\"name\":\"Add Circle\"},\"e148\":{\"name\":\"Add Circle Outline\"},\"e567\":{\"name\":\"Add Location\"},\"e854\":{\"name\":\"Add Shopping Cart\"},\"e39d\":{\"name\":\"Add To Photos\"},\"e05c\":{\"name\":\"Add To Queue\"},\"e39e\":{\"name\":\"Adjust\"},\"e630\":{\"name\":\"Airline Seat Flat\"},\"e631\":{\"name\":\"Airline Seat Flat Angled\"},\"e632\":{\"name\":\"Airline Seat Individual Suite\"},\"e633\":{\"name\":\"Airline Seat Legroom Extra\"},\"e634\":{\"name\":\"Airline Seat Legroom Normal\"},\"e635\":{\"name\":\"Airline Seat Legroom Reduced\"},\"e636\":{\"name\":\"Airline Seat Recline Extra\"},\"e637\":{\"name\":\"Airline Seat Recline Normal\"},\"e195\":{\"name\":\"Airplanemode Active\"},\"e194\":{\"name\":\"Airplanemode Inactive\"},\"e055\":{\"name\":\"Airplay\"},\"eb3c\":{\"name\":\"Airport Shuttle\"},\"e855\":{\"name\":\"Alarm\"},\"e856\":{\"name\":\"Alarm Add\"},\"e857\":{\"name\":\"Alarm Off\"},\"e858\":{\"name\":\"Alarm On\"},\"e019\":{\"name\":\"Album\"},\"eb3d\":{\"name\":\"All Inclusive\"},\"e90b\":{\"name\":\"All Out\"},\"e859\":{\"name\":\"Android\"},\"e85a\":{\"name\":\"Announcement\"},\"e5c3\":{\"name\":\"Apps\"},\"e149\":{\"name\":\"Archive\"},\"e5c4\":{\"name\":\"Arrow Back\"},\"e5db\":{\"name\":\"Arrow Downward\"},\"e5c5\":{\"name\":\"Arrow Drop Down\"},\"e5c6\":{\"name\":\"Arrow Drop Down Circle\"},\"e5c7\":{\"name\":\"Arrow Drop Up\"},\"e5c8\":{\"name\":\"Arrow Forward\"},\"e5d8\":{\"name\":\"Arrow Upward\"},\"e060\":{\"name\":\"Art Track\"},\"e85b\":{\"name\":\"Aspect Ratio\"},\"e85c\":{\"name\":\"Assessment\"},\"e85d\":{\"name\":\"Assignment\"},\"e85e\":{\"name\":\"Assignment Ind\"},\"e85f\":{\"name\":\"Assignment Late\"},\"e860\":{\"name\":\"Assignment Return\"},\"e861\":{\"name\":\"Assignment Returned\"},\"e862\":{\"name\":\"Assignment Turned In\"},\"e39f\":{\"name\":\"Assistant\"},\"e3a0\":{\"name\":\"Assistant Photo\"},\"e226\":{\"name\":\"Attach File\"},\"e227\":{\"name\":\"Attach Money\"},\"e2bc\":{\"name\":\"Attachment\"},\"e3a1\":{\"name\":\"Audiotrack\"},\"e863\":{\"name\":\"Autorenew\"},\"e01b\":{\"name\":\"Av Timer\"},\"e14a\":{\"name\":\"Backspace\"},\"e864\":{\"name\":\"Backup\"},\"e19c\":{\"name\":\"Battery Alert\"},\"e1a3\":{\"name\":\"Battery Charging Full\"},\"e1a4\":{\"name\":\"Battery Full\"},\"e1a5\":{\"name\":\"Battery Std\"},\"e1a6\":{\"name\":\"Battery Unknown\"},\"eb3e\":{\"name\":\"Beach Access\"},\"e52d\":{\"name\":\"Beenhere\"},\"e14b\":{\"name\":\"Block\"},\"e1a7\":{\"name\":\"Bluetooth\"},\"e60f\":{\"name\":\"Bluetooth Audio\"},\"e1a8\":{\"name\":\"Bluetooth Connected\"},\"e1a9\":{\"name\":\"Bluetooth Disabled\"},\"e1aa\":{\"name\":\"Bluetooth Searching\"},\"e3a2\":{\"name\":\"Blur Circular\"},\"e3a3\":{\"name\":\"Blur Linear\"},\"e3a4\":{\"name\":\"Blur Off\"},\"e3a5\":{\"name\":\"Blur On\"},\"e865\":{\"name\":\"Book\"},\"e866\":{\"name\":\"Bookmark\"},\"e867\":{\"name\":\"Bookmark Border\"},\"e228\":{\"name\":\"Border All\"},\"e229\":{\"name\":\"Border Bottom\"},\"e22a\":{\"name\":\"Border Clear\"},\"e22b\":{\"name\":\"Border Color\"},\"e22c\":{\"name\":\"Border Horizontal\"},\"e22d\":{\"name\":\"Border Inner\"},\"e22e\":{\"name\":\"Border Left\"},\"e22f\":{\"name\":\"Border Outer\"},\"e230\":{\"name\":\"Border Right\"},\"e231\":{\"name\":\"Border Style\"},\"e232\":{\"name\":\"Border Top\"},\"e233\":{\"name\":\"Border Vertical\"},\"e06b\":{\"name\":\"Branding Watermark\"},\"e3a6\":{\"name\":\"Brightness 1\"},\"e3a7\":{\"name\":\"Brightness 2\"},\"e3a8\":{\"name\":\"Brightness 3\"},\"e3a9\":{\"name\":\"Brightness 4\"},\"e3aa\":{\"name\":\"Brightness 5\"},\"e3ab\":{\"name\":\"Brightness 6\"},\"e3ac\":{\"name\":\"Brightness 7\"},\"e1ab\":{\"name\":\"Brightness Auto\"},\"e1ac\":{\"name\":\"Brightness High\"},\"e1ad\":{\"name\":\"Brightness Low\"},\"e1ae\":{\"name\":\"Brightness Medium\"},\"e3ad\":{\"name\":\"Broken Image\"},\"e3ae\":{\"name\":\"Brush\"},\"e6dd\":{\"name\":\"Bubble Chart\"},\"e868\":{\"name\":\"Bug Report\"},\"e869\":{\"name\":\"Build\"},\"e43c\":{\"name\":\"Burst Mode\"},\"e0af\":{\"name\":\"Business\"},\"eb3f\":{\"name\":\"Business Center\"},\"e86a\":{\"name\":\"Cached\"},\"e7e9\":{\"name\":\"Cake\"},\"e0b0\":{\"name\":\"Call\"},\"e0b1\":{\"name\":\"Call End\"},\"e0b2\":{\"name\":\"Call Made\"},\"e0b3\":{\"name\":\"Call Merge\"},\"e0b4\":{\"name\":\"Call Missed\"},\"e0e4\":{\"name\":\"Call Missed Outgoing\"},\"e0b5\":{\"name\":\"Call Received\"},\"e0b6\":{\"name\":\"Call Split\"},\"e06c\":{\"name\":\"Call To Action\"},\"e3af\":{\"name\":\"Camera\"},\"e3b0\":{\"name\":\"Camera Alt\"},\"e8fc\":{\"name\":\"Camera Enhance\"},\"e3b1\":{\"name\":\"Camera Front\"},\"e3b2\":{\"name\":\"Camera Rear\"},\"e3b3\":{\"name\":\"Camera Roll\"},\"e5c9\":{\"name\":\"Cancel\"},\"e8f6\":{\"name\":\"Card Giftcard\"},\"e8f7\":{\"name\":\"Card Membership\"},\"e8f8\":{\"name\":\"Card Travel\"},\"eb40\":{\"name\":\"Casino\"},\"e307\":{\"name\":\"Cast\"},\"e308\":{\"name\":\"Cast Connected\"},\"e3b4\":{\"name\":\"Center Focus Strong\"},\"e3b5\":{\"name\":\"Center Focus Weak\"},\"e86b\":{\"name\":\"Change History\"},\"e0b7\":{\"name\":\"Chat\"},\"e0ca\":{\"name\":\"Chat Bubble\"},\"e0cb\":{\"name\":\"Chat Bubble Outline\"},\"e5ca\":{\"name\":\"Check\"},\"e834\":{\"name\":\"Check Box\"},\"e835\":{\"name\":\"Check Box Outline Blank\"},\"e86c\":{\"name\":\"Check Circle\"},\"e5cb\":{\"name\":\"Chevron Left\"},\"e5cc\":{\"name\":\"Chevron Right\"},\"eb41\":{\"name\":\"Child Care\"},\"eb42\":{\"name\":\"Child Friendly\"},\"e86d\":{\"name\":\"Chrome Reader Mode\"},\"e86e\":{\"name\":\"Class\"},\"e14c\":{\"name\":\"Clear\"},\"e0b8\":{\"name\":\"Clear All\"},\"e5cd\":{\"name\":\"Close\"},\"e01c\":{\"name\":\"Closed Caption\"},\"e2bd\":{\"name\":\"Cloud\"},\"e2be\":{\"name\":\"Cloud Circle\"},\"e2bf\":{\"name\":\"Cloud Done\"},\"e2c0\":{\"name\":\"Cloud Download\"},\"e2c1\":{\"name\":\"Cloud Off\"},\"e2c2\":{\"name\":\"Cloud Queue\"},\"e2c3\":{\"name\":\"Cloud Upload\"},\"e86f\":{\"name\":\"Code\"},\"e3b6\":{\"name\":\"Collections\"},\"e431\":{\"name\":\"Collections Bookmark\"},\"e3b7\":{\"name\":\"Color Lens\"},\"e3b8\":{\"name\":\"Colorize\"},\"e0b9\":{\"name\":\"Comment\"},\"e3b9\":{\"name\":\"Compare\"},\"e915\":{\"name\":\"Compare Arrows\"},\"e30a\":{\"name\":\"Computer\"},\"e638\":{\"name\":\"Confirmation Number\"},\"e0d0\":{\"name\":\"Contact Mail\"},\"e0cf\":{\"name\":\"Contact Phone\"},\"e0ba\":{\"name\":\"Contacts\"},\"e14d\":{\"name\":\"Content Copy\"},\"e14e\":{\"name\":\"Content Cut\"},\"e14f\":{\"name\":\"Content Paste\"},\"e3ba\":{\"name\":\"Control Point\"},\"e3bb\":{\"name\":\"Control Point Duplicate\"},\"e90c\":{\"name\":\"Copyright\"},\"e150\":{\"name\":\"Create\"},\"e2cc\":{\"name\":\"Create New Folder\"},\"e870\":{\"name\":\"Credit Card\"},\"e3be\":{\"name\":\"Crop\"},\"e3bc\":{\"name\":\"Crop 16 9\"},\"e3bd\":{\"name\":\"Crop 3 2\"},\"e3bf\":{\"name\":\"Crop 5 4\"},\"e3c0\":{\"name\":\"Crop 7 5\"},\"e3c1\":{\"name\":\"Crop Din\"},\"e3c2\":{\"name\":\"Crop Free\"},\"e3c3\":{\"name\":\"Crop Landscape\"},\"e3c4\":{\"name\":\"Crop Original\"},\"e3c5\":{\"name\":\"Crop Portrait\"},\"e437\":{\"name\":\"Crop Rotate\"},\"e3c6\":{\"name\":\"Crop Square\"},\"e871\":{\"name\":\"Dashboard\"},\"e1af\":{\"name\":\"Data Usage\"},\"e916\":{\"name\":\"Date Range\"},\"e3c7\":{\"name\":\"Dehaze\"},\"e872\":{\"name\":\"Delete\"},\"e92b\":{\"name\":\"Delete Forever\"},\"e16c\":{\"name\":\"Delete Sweep\"},\"e873\":{\"name\":\"Description\"},\"e30b\":{\"name\":\"Desktop Mac\"},\"e30c\":{\"name\":\"Desktop Windows\"},\"e3c8\":{\"name\":\"Details\"},\"e30d\":{\"name\":\"Developer Board\"},\"e1b0\":{\"name\":\"Developer Mode\"},\"e335\":{\"name\":\"Device Hub\"},\"e1b1\":{\"name\":\"Devices\"},\"e337\":{\"name\":\"Devices Other\"},\"e0bb\":{\"name\":\"Dialer Sip\"},\"e0bc\":{\"name\":\"Dialpad\"},\"e52e\":{\"name\":\"Directions\"},\"e52f\":{\"name\":\"Directions Bike\"},\"e532\":{\"name\":\"Directions Boat\"},\"e530\":{\"name\":\"Directions Bus\"},\"e531\":{\"name\":\"Directions Car\"},\"e534\":{\"name\":\"Directions Railway\"},\"e566\":{\"name\":\"Directions Run\"},\"e533\":{\"name\":\"Directions Subway\"},\"e535\":{\"name\":\"Directions Transit\"},\"e536\":{\"name\":\"Directions Walk\"},\"e610\":{\"name\":\"Disc Full\"},\"e875\":{\"name\":\"Dns\"},\"e612\":{\"name\":\"Do Not Disturb\"},\"e611\":{\"name\":\"Do Not Disturb Alt\"},\"e643\":{\"name\":\"Do Not Disturb Off\"},\"e644\":{\"name\":\"Do Not Disturb On\"},\"e30e\":{\"name\":\"Dock\"},\"e7ee\":{\"name\":\"Domain\"},\"e876\":{\"name\":\"Done\"},\"e877\":{\"name\":\"Done All\"},\"e917\":{\"name\":\"Donut Large\"},\"e918\":{\"name\":\"Donut Small\"},\"e151\":{\"name\":\"Drafts\"},\"e25d\":{\"name\":\"Drag Handle\"},\"e613\":{\"name\":\"Drive Eta\"},\"e1b2\":{\"name\":\"Dvr\"},\"e3c9\":{\"name\":\"Edit\"},\"e568\":{\"name\":\"Edit Location\"},\"e8fb\":{\"name\":\"Eject\"},\"e0be\":{\"name\":\"Email\"},\"e63f\":{\"name\":\"Enhanced Encryption\"},\"e01d\":{\"name\":\"Equalizer\"},\"e000\":{\"name\":\"Error\"},\"e001\":{\"name\":\"Error Outline\"},\"e926\":{\"name\":\"Euro Symbol\"},\"e56d\":{\"name\":\"Ev Station\"},\"e878\":{\"name\":\"Event\"},\"e614\":{\"name\":\"Event Available\"},\"e615\":{\"name\":\"Event Busy\"},\"e616\":{\"name\":\"Event Note\"},\"e903\":{\"name\":\"Event Seat\"},\"e879\":{\"name\":\"Exit To App\"},\"e5ce\":{\"name\":\"Expand Less\"},\"e5cf\":{\"name\":\"Expand More\"},\"e01e\":{\"name\":\"Explicit\"},\"e87a\":{\"name\":\"Explore\"},\"e3ca\":{\"name\":\"Exposure\"},\"e3cb\":{\"name\":\"Exposure Neg 1\"},\"e3cc\":{\"name\":\"Exposure Neg 2\"},\"e3cd\":{\"name\":\"Exposure Plus 1\"},\"e3ce\":{\"name\":\"Exposure Plus 2\"},\"e3cf\":{\"name\":\"Exposure Zero\"},\"e87b\":{\"name\":\"Extension\"},\"e87c\":{\"name\":\"Face\"},\"e01f\":{\"name\":\"Fast Forward\"},\"e020\":{\"name\":\"Fast Rewind\"},\"e87d\":{\"name\":\"Favorite\"},\"e87e\":{\"name\":\"Favorite Border\"},\"e06d\":{\"name\":\"Featured Play List\"},\"e06e\":{\"name\":\"Featured Video\"},\"e87f\":{\"name\":\"Feedback\"},\"e05d\":{\"name\":\"Fiber Dvr\"},\"e061\":{\"name\":\"Fiber Manual Record\"},\"e05e\":{\"name\":\"Fiber New\"},\"e06a\":{\"name\":\"Fiber Pin\"},\"e062\":{\"name\":\"Fiber Smart Record\"},\"e2c4\":{\"name\":\"File Download\"},\"e2c6\":{\"name\":\"File Upload\"},\"e3d3\":{\"name\":\"Filter\"},\"e3d0\":{\"name\":\"Filter 1\"},\"e3d1\":{\"name\":\"Filter 2\"},\"e3d2\":{\"name\":\"Filter 3\"},\"e3d4\":{\"name\":\"Filter 4\"},\"e3d5\":{\"name\":\"Filter 5\"},\"e3d6\":{\"name\":\"Filter 6\"},\"e3d7\":{\"name\":\"Filter 7\"},\"e3d8\":{\"name\":\"Filter 8\"},\"e3d9\":{\"name\":\"Filter 9\"},\"e3da\":{\"name\":\"Filter 9 Plus\"},\"e3db\":{\"name\":\"Filter B And W\"},\"e3dc\":{\"name\":\"Filter Center Focus\"},\"e3dd\":{\"name\":\"Filter Drama\"},\"e3de\":{\"name\":\"Filter Frames\"},\"e3df\":{\"name\":\"Filter Hdr\"},\"e152\":{\"name\":\"Filter List\"},\"e3e0\":{\"name\":\"Filter None\"},\"e3e2\":{\"name\":\"Filter Tilt Shift\"},\"e3e3\":{\"name\":\"Filter Vintage\"},\"e880\":{\"name\":\"Find In Page\"},\"e881\":{\"name\":\"Find Replace\"},\"e90d\":{\"name\":\"Fingerprint\"},\"e5dc\":{\"name\":\"First Page\"},\"eb43\":{\"name\":\"Fitness Center\"},\"e153\":{\"name\":\"Flag\"},\"e3e4\":{\"name\":\"Flare\"},\"e3e5\":{\"name\":\"Flash Auto\"},\"e3e6\":{\"name\":\"Flash Off\"},\"e3e7\":{\"name\":\"Flash On\"},\"e539\":{\"name\":\"Flight\"},\"e904\":{\"name\":\"Flight Land\"},\"e905\":{\"name\":\"Flight Takeoff\"},\"e3e8\":{\"name\":\"Flip\"},\"e882\":{\"name\":\"Flip To Back\"},\"e883\":{\"name\":\"Flip To Front\"},\"e2c7\":{\"name\":\"Folder\"},\"e2c8\":{\"name\":\"Folder Open\"},\"e2c9\":{\"name\":\"Folder Shared\"},\"e617\":{\"name\":\"Folder Special\"},\"e167\":{\"name\":\"Font Download\"},\"e234\":{\"name\":\"Format Align Center\"},\"e235\":{\"name\":\"Format Align Justify\"},\"e236\":{\"name\":\"Format Align Left\"},\"e237\":{\"name\":\"Format Align Right\"},\"e238\":{\"name\":\"Format Bold\"},\"e239\":{\"name\":\"Format Clear\"},\"e23a\":{\"name\":\"Format Color Fill\"},\"e23b\":{\"name\":\"Format Color Reset\"},\"e23c\":{\"name\":\"Format Color Text\"},\"e23d\":{\"name\":\"Format Indent Decrease\"},\"e23e\":{\"name\":\"Format Indent Increase\"},\"e23f\":{\"name\":\"Format Italic\"},\"e240\":{\"name\":\"Format Line Spacing\"},\"e241\":{\"name\":\"Format List Bulleted\"},\"e242\":{\"name\":\"Format List Numbered\"},\"e243\":{\"name\":\"Format Paint\"},\"e244\":{\"name\":\"Format Quote\"},\"e25e\":{\"name\":\"Format Shapes\"},\"e245\":{\"name\":\"Format Size\"},\"e246\":{\"name\":\"Format Strikethrough\"},\"e247\":{\"name\":\"Format Textdirection L To R\"},\"e248\":{\"name\":\"Format Textdirection R To L\"},\"e249\":{\"name\":\"Format Underlined\"},\"e0bf\":{\"name\":\"Forum\"},\"e154\":{\"name\":\"Forward\"},\"e056\":{\"name\":\"Forward 10\"},\"e057\":{\"name\":\"Forward 30\"},\"e058\":{\"name\":\"Forward 5\"},\"eb44\":{\"name\":\"Free Breakfast\"},\"e5d0\":{\"name\":\"Fullscreen\"},\"e5d1\":{\"name\":\"Fullscreen Exit\"},\"e24a\":{\"name\":\"Functions\"},\"e927\":{\"name\":\"G Translate\"},\"e30f\":{\"name\":\"Gamepad\"},\"e021\":{\"name\":\"Games\"},\"e90e\":{\"name\":\"Gavel\"},\"e155\":{\"name\":\"Gesture\"},\"e884\":{\"name\":\"Get App\"},\"e908\":{\"name\":\"Gif\"},\"eb45\":{\"name\":\"Golf Course\"},\"e1b3\":{\"name\":\"Gps Fixed\"},\"e1b4\":{\"name\":\"Gps Not Fixed\"},\"e1b5\":{\"name\":\"Gps Off\"},\"e885\":{\"name\":\"Grade\"},\"e3e9\":{\"name\":\"Gradient\"},\"e3ea\":{\"name\":\"Grain\"},\"e1b8\":{\"name\":\"Graphic Eq\"},\"e3eb\":{\"name\":\"Grid Off\"},\"e3ec\":{\"name\":\"Grid On\"},\"e7ef\":{\"name\":\"Group\"},\"e7f0\":{\"name\":\"Group Add\"},\"e886\":{\"name\":\"Group Work\"},\"e052\":{\"name\":\"Hd\"},\"e3ed\":{\"name\":\"Hdr Off\"},\"e3ee\":{\"name\":\"Hdr On\"},\"e3f1\":{\"name\":\"Hdr Strong\"},\"e3f2\":{\"name\":\"Hdr Weak\"},\"e310\":{\"name\":\"Headset\"},\"e311\":{\"name\":\"Headset Mic\"},\"e3f3\":{\"name\":\"Healing\"},\"e023\":{\"name\":\"Hearing\"},\"e887\":{\"name\":\"Help\"},\"e8fd\":{\"name\":\"Help Outline\"},\"e024\":{\"name\":\"High Quality\"},\"e25f\":{\"name\":\"Highlight\"},\"e888\":{\"name\":\"Highlight Off\"},\"e889\":{\"name\":\"History\"},\"e88a\":{\"name\":\"Home\"},\"eb46\":{\"name\":\"Hot Tub\"},\"e53a\":{\"name\":\"Hotel\"},\"e88b\":{\"name\":\"Hourglass Empty\"},\"e88c\":{\"name\":\"Hourglass Full\"},\"e902\":{\"name\":\"Http\"},\"e88d\":{\"name\":\"Https\"},\"e3f4\":{\"name\":\"Image\"},\"e3f5\":{\"name\":\"Image Aspect Ratio\"},\"e0e0\":{\"name\":\"Import Contacts\"},\"e0c3\":{\"name\":\"Import Export\"},\"e912\":{\"name\":\"Important Devices\"},\"e156\":{\"name\":\"Inbox\"},\"e909\":{\"name\":\"Indeterminate Check Box\"},\"e88e\":{\"name\":\"Info\"},\"e88f\":{\"name\":\"Info Outline\"},\"e890\":{\"name\":\"Input\"},\"e24b\":{\"name\":\"Insert Chart\"},\"e24c\":{\"name\":\"Insert Comment\"},\"e24d\":{\"name\":\"Insert Drive File\"},\"e24e\":{\"name\":\"Insert Emoticon\"},\"e24f\":{\"name\":\"Insert Invitation\"},\"e250\":{\"name\":\"Insert Link\"},\"e251\":{\"name\":\"Insert Photo\"},\"e891\":{\"name\":\"Invert Colors\"},\"e0c4\":{\"name\":\"Invert Colors Off\"},\"e3f6\":{\"name\":\"Iso\"},\"e312\":{\"name\":\"Keyboard\"},\"e313\":{\"name\":\"Keyboard Arrow Down\"},\"e314\":{\"name\":\"Keyboard Arrow Left\"},\"e315\":{\"name\":\"Keyboard Arrow Right\"},\"e316\":{\"name\":\"Keyboard Arrow Up\"},\"e317\":{\"name\":\"Keyboard Backspace\"},\"e318\":{\"name\":\"Keyboard Capslock\"},\"e31a\":{\"name\":\"Keyboard Hide\"},\"e31b\":{\"name\":\"Keyboard Return\"},\"e31c\":{\"name\":\"Keyboard Tab\"},\"e31d\":{\"name\":\"Keyboard Voice\"},\"eb47\":{\"name\":\"Kitchen\"},\"e892\":{\"name\":\"Label\"},\"e893\":{\"name\":\"Label Outline\"},\"e3f7\":{\"name\":\"Landscape\"},\"e894\":{\"name\":\"Language\"},\"e31e\":{\"name\":\"Laptop\"},\"e31f\":{\"name\":\"Laptop Chromebook\"},\"e320\":{\"name\":\"Laptop Mac\"},\"e321\":{\"name\":\"Laptop Windows\"},\"e5dd\":{\"name\":\"Last Page\"},\"e895\":{\"name\":\"Launch\"},\"e53b\":{\"name\":\"Layers\"},\"e53c\":{\"name\":\"Layers Clear\"},\"e3f8\":{\"name\":\"Leak Add\"},\"e3f9\":{\"name\":\"Leak Remove\"},\"e3fa\":{\"name\":\"Lens\"},\"e02e\":{\"name\":\"Library Add\"},\"e02f\":{\"name\":\"Library Books\"},\"e030\":{\"name\":\"Library Music\"},\"e90f\":{\"name\":\"Lightbulb Outline\"},\"e919\":{\"name\":\"Line Style\"},\"e91a\":{\"name\":\"Line Weight\"},\"e260\":{\"name\":\"Linear Scale\"},\"e157\":{\"name\":\"Link\"},\"e438\":{\"name\":\"Linked Camera\"},\"e896\":{\"name\":\"List\"},\"e0c6\":{\"name\":\"Live Help\"},\"e639\":{\"name\":\"Live Tv\"},\"e53f\":{\"name\":\"Local Activity\"},\"e53d\":{\"name\":\"Local Airport\"},\"e53e\":{\"name\":\"Local Atm\"},\"e540\":{\"name\":\"Local Bar\"},\"e541\":{\"name\":\"Local Cafe\"},\"e542\":{\"name\":\"Local Car Wash\"},\"e543\":{\"name\":\"Local Convenience Store\"},\"e556\":{\"name\":\"Local Dining\"},\"e544\":{\"name\":\"Local Drink\"},\"e545\":{\"name\":\"Local Florist\"},\"e546\":{\"name\":\"Local Gas Station\"},\"e547\":{\"name\":\"Local Grocery Store\"},\"e548\":{\"name\":\"Local Hospital\"},\"e549\":{\"name\":\"Local Hotel\"},\"e54a\":{\"name\":\"Local Laundry Service\"},\"e54b\":{\"name\":\"Local Library\"},\"e54c\":{\"name\":\"Local Mall\"},\"e54d\":{\"name\":\"Local Movies\"},\"e54e\":{\"name\":\"Local Offer\"},\"e54f\":{\"name\":\"Local Parking\"},\"e550\":{\"name\":\"Local Pharmacy\"},\"e551\":{\"name\":\"Local Phone\"},\"e552\":{\"name\":\"Local Pizza\"},\"e553\":{\"name\":\"Local Play\"},\"e554\":{\"name\":\"Local Post Office\"},\"e555\":{\"name\":\"Local Printshop\"},\"e557\":{\"name\":\"Local See\"},\"e558\":{\"name\":\"Local Shipping\"},\"e559\":{\"name\":\"Local Taxi\"},\"e7f1\":{\"name\":\"Location City\"},\"e1b6\":{\"name\":\"Location Disabled\"},\"e0c7\":{\"name\":\"Location Off\"},\"e0c8\":{\"name\":\"Location On\"},\"e1b7\":{\"name\":\"Location Searching\"},\"e897\":{\"name\":\"Lock\"},\"e898\":{\"name\":\"Lock Open\"},\"e899\":{\"name\":\"Lock Outline\"},\"e3fc\":{\"name\":\"Looks\"},\"e3fb\":{\"name\":\"Looks 3\"},\"e3fd\":{\"name\":\"Looks 4\"},\"e3fe\":{\"name\":\"Looks 5\"},\"e3ff\":{\"name\":\"Looks 6\"},\"e400\":{\"name\":\"Looks One\"},\"e401\":{\"name\":\"Looks Two\"},\"e028\":{\"name\":\"Loop\"},\"e402\":{\"name\":\"Loupe\"},\"e16d\":{\"name\":\"Low Priority\"},\"e89a\":{\"name\":\"Loyalty\"},\"e158\":{\"name\":\"Mail\"},\"e0e1\":{\"name\":\"Mail Outline\"},\"e55b\":{\"name\":\"Map\"},\"e159\":{\"name\":\"Markunread\"},\"e89b\":{\"name\":\"Markunread Mailbox\"},\"e322\":{\"name\":\"Memory\"},\"e5d2\":{\"name\":\"Menu\"},\"e252\":{\"name\":\"Merge Type\"},\"e0c9\":{\"name\":\"Message\"},\"e029\":{\"name\":\"Mic\"},\"e02a\":{\"name\":\"Mic None\"},\"e02b\":{\"name\":\"Mic Off\"},\"e618\":{\"name\":\"Mms\"},\"e253\":{\"name\":\"Mode Comment\"},\"e254\":{\"name\":\"Mode Edit\"},\"e263\":{\"name\":\"Monetization On\"},\"e25c\":{\"name\":\"Money Off\"},\"e403\":{\"name\":\"Monochrome Photos\"},\"e7f2\":{\"name\":\"Mood\"},\"e7f3\":{\"name\":\"Mood Bad\"},\"e619\":{\"name\":\"More\"},\"e5d3\":{\"name\":\"More Horiz\"},\"e5d4\":{\"name\":\"More Vert\"},\"e91b\":{\"name\":\"Motorcycle\"},\"e323\":{\"name\":\"Mouse\"},\"e168\":{\"name\":\"Move To Inbox\"},\"e02c\":{\"name\":\"Movie\"},\"e404\":{\"name\":\"Movie Creation\"},\"e43a\":{\"name\":\"Movie Filter\"},\"e6df\":{\"name\":\"Multiline Chart\"},\"e405\":{\"name\":\"Music Note\"},\"e063\":{\"name\":\"Music Video\"},\"e55c\":{\"name\":\"My Location\"},\"e406\":{\"name\":\"Nature\"},\"e407\":{\"name\":\"Nature People\"},\"e408\":{\"name\":\"Navigate Before\"},\"e409\":{\"name\":\"Navigate Next\"},\"e55d\":{\"name\":\"Navigation\"},\"e569\":{\"name\":\"Near Me\"},\"e1b9\":{\"name\":\"Network Cell\"},\"e640\":{\"name\":\"Network Check\"},\"e61a\":{\"name\":\"Network Locked\"},\"e1ba\":{\"name\":\"Network Wifi\"},\"e031\":{\"name\":\"New Releases\"},\"e16a\":{\"name\":\"Next Week\"},\"e1bb\":{\"name\":\"Nfc\"},\"e641\":{\"name\":\"No Encryption\"},\"e0cc\":{\"name\":\"No Sim\"},\"e033\":{\"name\":\"Not Interested\"},\"e06f\":{\"name\":\"Note\"},\"e89c\":{\"name\":\"Note Add\"},\"e7f4\":{\"name\":\"Notifications\"},\"e7f7\":{\"name\":\"Notifications Active\"},\"e7f5\":{\"name\":\"Notifications None\"},\"e7f6\":{\"name\":\"Notifications Off\"},\"e7f8\":{\"name\":\"Notifications Paused\"},\"e90a\":{\"name\":\"Offline Pin\"},\"e63a\":{\"name\":\"Ondemand Video\"},\"e91c\":{\"name\":\"Opacity\"},\"e89d\":{\"name\":\"Open In Browser\"},\"e89e\":{\"name\":\"Open In New\"},\"e89f\":{\"name\":\"Open With\"},\"e7f9\":{\"name\":\"Pages\"},\"e8a0\":{\"name\":\"Pageview\"},\"e40a\":{\"name\":\"Palette\"},\"e925\":{\"name\":\"Pan Tool\"},\"e40b\":{\"name\":\"Panorama\"},\"e40c\":{\"name\":\"Panorama Fish Eye\"},\"e40d\":{\"name\":\"Panorama Horizontal\"},\"e40e\":{\"name\":\"Panorama Vertical\"},\"e40f\":{\"name\":\"Panorama Wide Angle\"},\"e7fa\":{\"name\":\"Party Mode\"},\"e034\":{\"name\":\"Pause\"},\"e035\":{\"name\":\"Pause Circle Filled\"},\"e036\":{\"name\":\"Pause Circle Outline\"},\"e8a1\":{\"name\":\"Payment\"},\"e7fb\":{\"name\":\"People\"},\"e7fc\":{\"name\":\"People Outline\"},\"e8a2\":{\"name\":\"Perm Camera Mic\"},\"e8a3\":{\"name\":\"Perm Contact Calendar\"},\"e8a4\":{\"name\":\"Perm Data Setting\"},\"e8a5\":{\"name\":\"Perm Device Information\"},\"e8a6\":{\"name\":\"Perm Identity\"},\"e8a7\":{\"name\":\"Perm Media\"},\"e8a8\":{\"name\":\"Perm Phone Msg\"},\"e8a9\":{\"name\":\"Perm Scan Wifi\"},\"e7fd\":{\"name\":\"Person\"},\"e7fe\":{\"name\":\"Person Add\"},\"e7ff\":{\"name\":\"Person Outline\"},\"e55a\":{\"name\":\"Person Pin\"},\"e56a\":{\"name\":\"Person Pin Circle\"},\"e63b\":{\"name\":\"Personal Video\"},\"e91d\":{\"name\":\"Pets\"},\"e0cd\":{\"name\":\"Phone\"},\"e324\":{\"name\":\"Phone Android\"},\"e61b\":{\"name\":\"Phone Bluetooth Speaker\"},\"e61c\":{\"name\":\"Phone Forwarded\"},\"e61d\":{\"name\":\"Phone In Talk\"},\"e325\":{\"name\":\"Phone Iphone\"},\"e61e\":{\"name\":\"Phone Locked\"},\"e61f\":{\"name\":\"Phone Missed\"},\"e620\":{\"name\":\"Phone Paused\"},\"e326\":{\"name\":\"Phonelink\"},\"e0db\":{\"name\":\"Phonelink Erase\"},\"e0dc\":{\"name\":\"Phonelink Lock\"},\"e327\":{\"name\":\"Phonelink Off\"},\"e0dd\":{\"name\":\"Phonelink Ring\"},\"e0de\":{\"name\":\"Phonelink Setup\"},\"e410\":{\"name\":\"Photo\"},\"e411\":{\"name\":\"Photo Album\"},\"e412\":{\"name\":\"Photo Camera\"},\"e43b\":{\"name\":\"Photo Filter\"},\"e413\":{\"name\":\"Photo Library\"},\"e432\":{\"name\":\"Photo Size Select Actual\"},\"e433\":{\"name\":\"Photo Size Select Large\"},\"e434\":{\"name\":\"Photo Size Select Small\"},\"e415\":{\"name\":\"Picture As Pdf\"},\"e8aa\":{\"name\":\"Picture In Picture\"},\"e911\":{\"name\":\"Picture In Picture Alt\"},\"e6c4\":{\"name\":\"Pie Chart\"},\"e6c5\":{\"name\":\"Pie Chart Outlined\"},\"e55e\":{\"name\":\"Pin Drop\"},\"e55f\":{\"name\":\"Place\"},\"e037\":{\"name\":\"Play Arrow\"},\"e038\":{\"name\":\"Play Circle Filled\"},\"e039\":{\"name\":\"Play Circle Outline\"},\"e906\":{\"name\":\"Play For Work\"},\"e03b\":{\"name\":\"Playlist Add\"},\"e065\":{\"name\":\"Playlist Add Check\"},\"e05f\":{\"name\":\"Playlist Play\"},\"e800\":{\"name\":\"Plus One\"},\"e801\":{\"name\":\"Poll\"},\"e8ab\":{\"name\":\"Polymer\"},\"eb48\":{\"name\":\"Pool\"},\"e0ce\":{\"name\":\"Portable Wifi Off\"},\"e416\":{\"name\":\"Portrait\"},\"e63c\":{\"name\":\"Power\"},\"e336\":{\"name\":\"Power Input\"},\"e8ac\":{\"name\":\"Power Settings New\"},\"e91e\":{\"name\":\"Pregnant Woman\"},\"e0df\":{\"name\":\"Present To All\"},\"e8ad\":{\"name\":\"Print\"},\"e645\":{\"name\":\"Priority High\"},\"e80b\":{\"name\":\"Public\"},\"e255\":{\"name\":\"Publish\"},\"e8ae\":{\"name\":\"Query Builder\"},\"e8af\":{\"name\":\"Question Answer\"},\"e03c\":{\"name\":\"Queue\"},\"e03d\":{\"name\":\"Queue Music\"},\"e066\":{\"name\":\"Queue Play Next\"},\"e03e\":{\"name\":\"Radio\"},\"e837\":{\"name\":\"Radio Button Checked\"},\"e836\":{\"name\":\"Radio Button Unchecked\"},\"e560\":{\"name\":\"Rate Review\"},\"e8b0\":{\"name\":\"Receipt\"},\"e03f\":{\"name\":\"Recent Actors\"},\"e91f\":{\"name\":\"Record Voice Over\"},\"e8b1\":{\"name\":\"Redeem\"},\"e15a\":{\"name\":\"Redo\"},\"e5d5\":{\"name\":\"Refresh\"},\"e15b\":{\"name\":\"Remove\"},\"e15c\":{\"name\":\"Remove Circle\"},\"e15d\":{\"name\":\"Remove Circle Outline\"},\"e067\":{\"name\":\"Remove From Queue\"},\"e417\":{\"name\":\"Remove Red Eye\"},\"e928\":{\"name\":\"Remove Shopping Cart\"},\"e8fe\":{\"name\":\"Reorder\"},\"e040\":{\"name\":\"Repeat\"},\"e041\":{\"name\":\"Repeat One\"},\"e042\":{\"name\":\"Replay\"},\"e059\":{\"name\":\"Replay 10\"},\"e05a\":{\"name\":\"Replay 30\"},\"e05b\":{\"name\":\"Replay 5\"},\"e15e\":{\"name\":\"Reply\"},\"e15f\":{\"name\":\"Reply All\"},\"e160\":{\"name\":\"Report\"},\"e8b2\":{\"name\":\"Report Problem\"},\"e56c\":{\"name\":\"Restaurant\"},\"e561\":{\"name\":\"Restaurant Menu\"},\"e8b3\":{\"name\":\"Restore\"},\"e929\":{\"name\":\"Restore Page\"},\"e0d1\":{\"name\":\"Ring Volume\"},\"e8b4\":{\"name\":\"Room\"},\"eb49\":{\"name\":\"Room Service\"},\"e418\":{\"name\":\"Rotate 90 Degrees Ccw\"},\"e419\":{\"name\":\"Rotate Left\"},\"e41a\":{\"name\":\"Rotate Right\"},\"e920\":{\"name\":\"Rounded Corner\"},\"e328\":{\"name\":\"Router\"},\"e921\":{\"name\":\"Rowing\"},\"e0e5\":{\"name\":\"Rss Feed\"},\"e642\":{\"name\":\"Rv Hookup\"},\"e562\":{\"name\":\"Satellite\"},\"e161\":{\"name\":\"Save\"},\"e329\":{\"name\":\"Scanner\"},\"e8b5\":{\"name\":\"Schedule\"},\"e80c\":{\"name\":\"School\"},\"e1be\":{\"name\":\"Screen Lock Landscape\"},\"e1bf\":{\"name\":\"Screen Lock Portrait\"},\"e1c0\":{\"name\":\"Screen Lock Rotation\"},\"e1c1\":{\"name\":\"Screen Rotation\"},\"e0e2\":{\"name\":\"Screen Share\"},\"e623\":{\"name\":\"Sd Card\"},\"e1c2\":{\"name\":\"Sd Storage\"},\"e8b6\":{\"name\":\"Search\"},\"e32a\":{\"name\":\"Security\"},\"e162\":{\"name\":\"Select All\"},\"e163\":{\"name\":\"Send\"},\"e811\":{\"name\":\"Sentiment Dissatisfied\"},\"e812\":{\"name\":\"Sentiment Neutral\"},\"e813\":{\"name\":\"Sentiment Satisfied\"},\"e814\":{\"name\":\"Sentiment Very Dissatisfied\"},\"e815\":{\"name\":\"Sentiment Very Satisfied\"},\"e8b8\":{\"name\":\"Settings\"},\"e8b9\":{\"name\":\"Settings Applications\"},\"e8ba\":{\"name\":\"Settings Backup Restore\"},\"e8bb\":{\"name\":\"Settings Bluetooth\"},\"e8bd\":{\"name\":\"Settings Brightness\"},\"e8bc\":{\"name\":\"Settings Cell\"},\"e8be\":{\"name\":\"Settings Ethernet\"},\"e8bf\":{\"name\":\"Settings Input Antenna\"},\"e8c0\":{\"name\":\"Settings Input Component\"},\"e8c1\":{\"name\":\"Settings Input Composite\"},\"e8c2\":{\"name\":\"Settings Input Hdmi\"},\"e8c3\":{\"name\":\"Settings Input Svideo\"},\"e8c4\":{\"name\":\"Settings Overscan\"},\"e8c5\":{\"name\":\"Settings Phone\"},\"e8c6\":{\"name\":\"Settings Power\"},\"e8c7\":{\"name\":\"Settings Remote\"},\"e1c3\":{\"name\":\"Settings System Daydream\"},\"e8c8\":{\"name\":\"Settings Voice\"},\"e80d\":{\"name\":\"Share\"},\"e8c9\":{\"name\":\"Shop\"},\"e8ca\":{\"name\":\"Shop Two\"},\"e8cb\":{\"name\":\"Shopping Basket\"},\"e8cc\":{\"name\":\"Shopping Cart\"},\"e261\":{\"name\":\"Short Text\"},\"e6e1\":{\"name\":\"Show Chart\"},\"e043\":{\"name\":\"Shuffle\"},\"e1c8\":{\"name\":\"Signal Cellular 4 Bar\"},\"e1cd\":{\"name\":\"Signal Cellular Connected No Internet 4 Bar\"},\"e1ce\":{\"name\":\"Signal Cellular No Sim\"},\"e1cf\":{\"name\":\"Signal Cellular Null\"},\"e1d0\":{\"name\":\"Signal Cellular Off\"},\"e1d8\":{\"name\":\"Signal Wifi 4 Bar\"},\"e1d9\":{\"name\":\"Signal Wifi 4 Bar Lock\"},\"e1da\":{\"name\":\"Signal Wifi Off\"},\"e32b\":{\"name\":\"Sim Card\"},\"e624\":{\"name\":\"Sim Card Alert\"},\"e044\":{\"name\":\"Skip Next\"},\"e045\":{\"name\":\"Skip Previous\"},\"e41b\":{\"name\":\"Slideshow\"},\"e068\":{\"name\":\"Slow Motion Video\"},\"e32c\":{\"name\":\"Smartphone\"},\"eb4a\":{\"name\":\"Smoke Free\"},\"eb4b\":{\"name\":\"Smoking Rooms\"},\"e625\":{\"name\":\"Sms\"},\"e626\":{\"name\":\"Sms Failed\"},\"e046\":{\"name\":\"Snooze\"},\"e164\":{\"name\":\"Sort\"},\"e053\":{\"name\":\"Sort By Alpha\"},\"eb4c\":{\"name\":\"Spa\"},\"e256\":{\"name\":\"Space Bar\"},\"e32d\":{\"name\":\"Speaker\"},\"e32e\":{\"name\":\"Speaker Group\"},\"e8cd\":{\"name\":\"Speaker Notes\"},\"e92a\":{\"name\":\"Speaker Notes Off\"},\"e0d2\":{\"name\":\"Speaker Phone\"},\"e8ce\":{\"name\":\"Spellcheck\"},\"e838\":{\"name\":\"Star\"},\"e83a\":{\"name\":\"Star Border\"},\"e839\":{\"name\":\"Star Half\"},\"e8d0\":{\"name\":\"Stars\"},\"e0d3\":{\"name\":\"Stay Current Landscape\"},\"e0d4\":{\"name\":\"Stay Current Portrait\"},\"e0d5\":{\"name\":\"Stay Primary Landscape\"},\"e0d6\":{\"name\":\"Stay Primary Portrait\"},\"e047\":{\"name\":\"Stop\"},\"e0e3\":{\"name\":\"Stop Screen Share\"},\"e1db\":{\"name\":\"Storage\"},\"e8d1\":{\"name\":\"Store\"},\"e563\":{\"name\":\"Store Mall Directory\"},\"e41c\":{\"name\":\"Straighten\"},\"e56e\":{\"name\":\"Streetview\"},\"e257\":{\"name\":\"Strikethrough S\"},\"e41d\":{\"name\":\"Style\"},\"e5d9\":{\"name\":\"Subdirectory Arrow Left\"},\"e5da\":{\"name\":\"Subdirectory Arrow Right\"},\"e8d2\":{\"name\":\"Subject\"},\"e064\":{\"name\":\"Subscriptions\"},\"e048\":{\"name\":\"Subtitles\"},\"e56f\":{\"name\":\"Subway\"},\"e8d3\":{\"name\":\"Supervisor Account\"},\"e049\":{\"name\":\"Surround Sound\"},\"e0d7\":{\"name\":\"Swap Calls\"},\"e8d4\":{\"name\":\"Swap Horiz\"},\"e8d5\":{\"name\":\"Swap Vert\"},\"e8d6\":{\"name\":\"Swap Vertical Circle\"},\"e41e\":{\"name\":\"Switch Camera\"},\"e41f\":{\"name\":\"Switch Video\"},\"e627\":{\"name\":\"Sync\"},\"e628\":{\"name\":\"Sync Disabled\"},\"e629\":{\"name\":\"Sync Problem\"},\"e62a\":{\"name\":\"System Update\"},\"e8d7\":{\"name\":\"System Update Alt\"},\"e8d8\":{\"name\":\"Tab\"},\"e8d9\":{\"name\":\"Tab Unselected\"},\"e32f\":{\"name\":\"Tablet\"},\"e330\":{\"name\":\"Tablet Android\"},\"e331\":{\"name\":\"Tablet Mac\"},\"e420\":{\"name\":\"Tag Faces\"},\"e62b\":{\"name\":\"Tap And Play\"},\"e564\":{\"name\":\"Terrain\"},\"e262\":{\"name\":\"Text Fields\"},\"e165\":{\"name\":\"Text Format\"},\"e0d8\":{\"name\":\"Textsms\"},\"e421\":{\"name\":\"Texture\"},\"e8da\":{\"name\":\"Theaters\"},\"e8db\":{\"name\":\"Thumb Down\"},\"e8dc\":{\"name\":\"Thumb Up\"},\"e8dd\":{\"name\":\"Thumbs Up Down\"},\"e62c\":{\"name\":\"Time To Leave\"},\"e422\":{\"name\":\"Timelapse\"},\"e922\":{\"name\":\"Timeline\"},\"e425\":{\"name\":\"Timer\"},\"e423\":{\"name\":\"Timer 10\"},\"e424\":{\"name\":\"Timer 3\"},\"e426\":{\"name\":\"Timer Off\"},\"e264\":{\"name\":\"Title\"},\"e8de\":{\"name\":\"Toc\"},\"e8df\":{\"name\":\"Today\"},\"e8e0\":{\"name\":\"Toll\"},\"e427\":{\"name\":\"Tonality\"},\"e913\":{\"name\":\"Touch App\"},\"e332\":{\"name\":\"Toys\"},\"e8e1\":{\"name\":\"Track Changes\"},\"e565\":{\"name\":\"Traffic\"},\"e570\":{\"name\":\"Train\"},\"e571\":{\"name\":\"Tram\"},\"e572\":{\"name\":\"Transfer Within A Station\"},\"e428\":{\"name\":\"Transform\"},\"e8e2\":{\"name\":\"Translate\"},\"e8e3\":{\"name\":\"Trending Down\"},\"e8e4\":{\"name\":\"Trending Flat\"},\"e8e5\":{\"name\":\"Trending Up\"},\"e429\":{\"name\":\"Tune\"},\"e8e6\":{\"name\":\"Turned In\"},\"e8e7\":{\"name\":\"Turned In Not\"},\"e333\":{\"name\":\"Tv\"},\"e169\":{\"name\":\"Unarchive\"},\"e166\":{\"name\":\"Undo\"},\"e5d6\":{\"name\":\"Unfold Less\"},\"e5d7\":{\"name\":\"Unfold More\"},\"e923\":{\"name\":\"Update\"},\"e1e0\":{\"name\":\"Usb\"},\"e8e8\":{\"name\":\"Verified User\"},\"e258\":{\"name\":\"Vertical Align Bottom\"},\"e259\":{\"name\":\"Vertical Align Center\"},\"e25a\":{\"name\":\"Vertical Align Top\"},\"e62d\":{\"name\":\"Vibration\"},\"e070\":{\"name\":\"Video Call\"},\"e071\":{\"name\":\"Video Label\"},\"e04a\":{\"name\":\"Video Library\"},\"e04b\":{\"name\":\"Videocam\"},\"e04c\":{\"name\":\"Videocam Off\"},\"e338\":{\"name\":\"Videogame Asset\"},\"e8e9\":{\"name\":\"View Agenda\"},\"e8ea\":{\"name\":\"View Array\"},\"e8eb\":{\"name\":\"View Carousel\"},\"e8ec\":{\"name\":\"View Column\"},\"e42a\":{\"name\":\"View Comfy\"},\"e42b\":{\"name\":\"View Compact\"},\"e8ed\":{\"name\":\"View Day\"},\"e8ee\":{\"name\":\"View Headline\"},\"e8ef\":{\"name\":\"View List\"},\"e8f0\":{\"name\":\"View Module\"},\"e8f1\":{\"name\":\"View Quilt\"},\"e8f2\":{\"name\":\"View Stream\"},\"e8f3\":{\"name\":\"View Week\"},\"e435\":{\"name\":\"Vignette\"},\"e8f4\":{\"name\":\"Visibility\"},\"e8f5\":{\"name\":\"Visibility Off\"},\"e62e\":{\"name\":\"Voice Chat\"},\"e0d9\":{\"name\":\"Voicemail\"},\"e04d\":{\"name\":\"Volume Down\"},\"e04e\":{\"name\":\"Volume Mute\"},\"e04f\":{\"name\":\"Volume Off\"},\"e050\":{\"name\":\"Volume Up\"},\"e0da\":{\"name\":\"Vpn Key\"},\"e62f\":{\"name\":\"Vpn Lock\"},\"e1bc\":{\"name\":\"Wallpaper\"},\"e002\":{\"name\":\"Warning\"},\"e334\":{\"name\":\"Watch\"},\"e924\":{\"name\":\"Watch Later\"},\"e42c\":{\"name\":\"Wb Auto\"},\"e42d\":{\"name\":\"Wb Cloudy\"},\"e42e\":{\"name\":\"Wb Incandescent\"},\"e436\":{\"name\":\"Wb Iridescent\"},\"e430\":{\"name\":\"Wb Sunny\"},\"e63d\":{\"name\":\"Wc\"},\"e051\":{\"name\":\"Web\"},\"e069\":{\"name\":\"Web Asset\"},\"e16b\":{\"name\":\"Weekend\"},\"e80e\":{\"name\":\"Whatshot\"},\"e1bd\":{\"name\":\"Widgets\"},\"e63e\":{\"name\":\"Wifi\"},\"e1e1\":{\"name\":\"Wifi Lock\"},\"e1e2\":{\"name\":\"Wifi Tethering\"},\"e8f9\":{\"name\":\"Work\"},\"e25b\":{\"name\":\"Wrap Text\"},\"e8fa\":{\"name\":\"Youtube Searched For\"},\"e8ff\":{\"name\":\"Zoom In\"},\"e900\":{\"name\":\"Zoom Out\"},\"e56b\":{\"name\":\"Zoom Out Map\"}}}"
  },
  {
    "path": "ui/vendor/material-icons/README.md",
    "content": "The recommended way to use the Material Icons font is by linking to the web font hosted on Google Fonts:\n\n```html\n<link href=\"https://fonts.googleapis.com/icon?family=Material+Icons\"\n      rel=\"stylesheet\">\n```\n\nRead more in our full usage guide:\nhttp://google.github.io/material-design-icons/#icon-font-for-the-web\n"
  },
  {
    "path": "ui/vendor/material-icons/codepoints",
    "content": "3d_rotation e84d\nac_unit eb3b\naccess_alarm e190\naccess_alarms e191\naccess_time e192\naccessibility e84e\naccessible e914\naccount_balance e84f\naccount_balance_wallet e850\naccount_box e851\naccount_circle e853\nadb e60e\nadd e145\nadd_a_photo e439\nadd_alarm e193\nadd_alert e003\nadd_box e146\nadd_circle e147\nadd_circle_outline e148\nadd_location e567\nadd_shopping_cart e854\nadd_to_photos e39d\nadd_to_queue e05c\nadjust e39e\nairline_seat_flat e630\nairline_seat_flat_angled e631\nairline_seat_individual_suite e632\nairline_seat_legroom_extra e633\nairline_seat_legroom_normal e634\nairline_seat_legroom_reduced e635\nairline_seat_recline_extra e636\nairline_seat_recline_normal e637\nairplanemode_active e195\nairplanemode_inactive e194\nairplay e055\nairport_shuttle eb3c\nalarm e855\nalarm_add e856\nalarm_off e857\nalarm_on e858\nalbum e019\nall_inclusive eb3d\nall_out e90b\nandroid e859\nannouncement e85a\napps e5c3\narchive e149\narrow_back e5c4\narrow_downward e5db\narrow_drop_down e5c5\narrow_drop_down_circle e5c6\narrow_drop_up e5c7\narrow_forward e5c8\narrow_upward e5d8\nart_track e060\naspect_ratio e85b\nassessment e85c\nassignment e85d\nassignment_ind e85e\nassignment_late e85f\nassignment_return e860\nassignment_returned e861\nassignment_turned_in e862\nassistant e39f\nassistant_photo e3a0\nattach_file e226\nattach_money e227\nattachment e2bc\naudiotrack e3a1\nautorenew e863\nav_timer e01b\nbackspace e14a\nbackup e864\nbattery_alert e19c\nbattery_charging_full e1a3\nbattery_full e1a4\nbattery_std e1a5\nbattery_unknown e1a6\nbeach_access eb3e\nbeenhere e52d\nblock e14b\nbluetooth e1a7\nbluetooth_audio e60f\nbluetooth_connected e1a8\nbluetooth_disabled e1a9\nbluetooth_searching e1aa\nblur_circular e3a2\nblur_linear e3a3\nblur_off e3a4\nblur_on e3a5\nbook e865\nbookmark e866\nbookmark_border e867\nborder_all e228\nborder_bottom e229\nborder_clear e22a\nborder_color e22b\nborder_horizontal e22c\nborder_inner e22d\nborder_left e22e\nborder_outer e22f\nborder_right e230\nborder_style e231\nborder_top e232\nborder_vertical e233\nbranding_watermark e06b\nbrightness_1 e3a6\nbrightness_2 e3a7\nbrightness_3 e3a8\nbrightness_4 e3a9\nbrightness_5 e3aa\nbrightness_6 e3ab\nbrightness_7 e3ac\nbrightness_auto e1ab\nbrightness_high e1ac\nbrightness_low e1ad\nbrightness_medium e1ae\nbroken_image e3ad\nbrush e3ae\nbubble_chart e6dd\nbug_report e868\nbuild e869\nburst_mode e43c\nbusiness e0af\nbusiness_center eb3f\ncached e86a\ncake e7e9\ncall e0b0\ncall_end e0b1\ncall_made e0b2\ncall_merge e0b3\ncall_missed e0b4\ncall_missed_outgoing e0e4\ncall_received e0b5\ncall_split e0b6\ncall_to_action e06c\ncamera e3af\ncamera_alt e3b0\ncamera_enhance e8fc\ncamera_front e3b1\ncamera_rear e3b2\ncamera_roll e3b3\ncancel e5c9\ncard_giftcard e8f6\ncard_membership e8f7\ncard_travel e8f8\ncasino eb40\ncast e307\ncast_connected e308\ncenter_focus_strong e3b4\ncenter_focus_weak e3b5\nchange_history e86b\nchat e0b7\nchat_bubble e0ca\nchat_bubble_outline e0cb\ncheck e5ca\ncheck_box e834\ncheck_box_outline_blank e835\ncheck_circle e86c\nchevron_left e5cb\nchevron_right e5cc\nchild_care eb41\nchild_friendly eb42\nchrome_reader_mode e86d\nclass e86e\nclear e14c\nclear_all e0b8\nclose e5cd\nclosed_caption e01c\ncloud e2bd\ncloud_circle e2be\ncloud_done e2bf\ncloud_download e2c0\ncloud_off e2c1\ncloud_queue e2c2\ncloud_upload e2c3\ncode e86f\ncollections e3b6\ncollections_bookmark e431\ncolor_lens e3b7\ncolorize e3b8\ncomment e0b9\ncompare e3b9\ncompare_arrows e915\ncomputer e30a\nconfirmation_number e638\ncontact_mail e0d0\ncontact_phone e0cf\ncontacts e0ba\ncontent_copy e14d\ncontent_cut e14e\ncontent_paste e14f\ncontrol_point e3ba\ncontrol_point_duplicate e3bb\ncopyright e90c\ncreate e150\ncreate_new_folder e2cc\ncredit_card e870\ncrop e3be\ncrop_16_9 e3bc\ncrop_3_2 e3bd\ncrop_5_4 e3bf\ncrop_7_5 e3c0\ncrop_din e3c1\ncrop_free e3c2\ncrop_landscape e3c3\ncrop_original e3c4\ncrop_portrait e3c5\ncrop_rotate e437\ncrop_square e3c6\ndashboard e871\ndata_usage e1af\ndate_range e916\ndehaze e3c7\ndelete e872\ndelete_forever e92b\ndelete_sweep e16c\ndescription e873\ndesktop_mac e30b\ndesktop_windows e30c\ndetails e3c8\ndeveloper_board e30d\ndeveloper_mode e1b0\ndevice_hub e335\ndevices e1b1\ndevices_other e337\ndialer_sip e0bb\ndialpad e0bc\ndirections e52e\ndirections_bike e52f\ndirections_boat e532\ndirections_bus e530\ndirections_car e531\ndirections_railway e534\ndirections_run e566\ndirections_subway e533\ndirections_transit e535\ndirections_walk e536\ndisc_full e610\ndns e875\ndo_not_disturb e612\ndo_not_disturb_alt e611\ndo_not_disturb_off e643\ndo_not_disturb_on e644\ndock e30e\ndomain e7ee\ndone e876\ndone_all e877\ndonut_large e917\ndonut_small e918\ndrafts e151\ndrag_handle e25d\ndrive_eta e613\ndvr e1b2\nedit e3c9\nedit_location e568\neject e8fb\nemail e0be\nenhanced_encryption e63f\nequalizer e01d\nerror e000\nerror_outline e001\neuro_symbol e926\nev_station e56d\nevent e878\nevent_available e614\nevent_busy e615\nevent_note e616\nevent_seat e903\nexit_to_app e879\nexpand_less e5ce\nexpand_more e5cf\nexplicit e01e\nexplore e87a\nexposure e3ca\nexposure_neg_1 e3cb\nexposure_neg_2 e3cc\nexposure_plus_1 e3cd\nexposure_plus_2 e3ce\nexposure_zero e3cf\nextension e87b\nface e87c\nfast_forward e01f\nfast_rewind e020\nfavorite e87d\nfavorite_border e87e\nfeatured_play_list e06d\nfeatured_video e06e\nfeedback e87f\nfiber_dvr e05d\nfiber_manual_record e061\nfiber_new e05e\nfiber_pin e06a\nfiber_smart_record e062\nfile_download e2c4\nfile_upload e2c6\nfilter e3d3\nfilter_1 e3d0\nfilter_2 e3d1\nfilter_3 e3d2\nfilter_4 e3d4\nfilter_5 e3d5\nfilter_6 e3d6\nfilter_7 e3d7\nfilter_8 e3d8\nfilter_9 e3d9\nfilter_9_plus e3da\nfilter_b_and_w e3db\nfilter_center_focus e3dc\nfilter_drama e3dd\nfilter_frames e3de\nfilter_hdr e3df\nfilter_list e152\nfilter_none e3e0\nfilter_tilt_shift e3e2\nfilter_vintage e3e3\nfind_in_page e880\nfind_replace e881\nfingerprint e90d\nfirst_page e5dc\nfitness_center eb43\nflag e153\nflare e3e4\nflash_auto e3e5\nflash_off e3e6\nflash_on e3e7\nflight e539\nflight_land e904\nflight_takeoff e905\nflip e3e8\nflip_to_back e882\nflip_to_front e883\nfolder e2c7\nfolder_open e2c8\nfolder_shared e2c9\nfolder_special e617\nfont_download e167\nformat_align_center e234\nformat_align_justify e235\nformat_align_left e236\nformat_align_right e237\nformat_bold e238\nformat_clear e239\nformat_color_fill e23a\nformat_color_reset e23b\nformat_color_text e23c\nformat_indent_decrease e23d\nformat_indent_increase e23e\nformat_italic e23f\nformat_line_spacing e240\nformat_list_bulleted e241\nformat_list_numbered e242\nformat_paint e243\nformat_quote e244\nformat_shapes e25e\nformat_size e245\nformat_strikethrough e246\nformat_textdirection_l_to_r e247\nformat_textdirection_r_to_l e248\nformat_underlined e249\nforum e0bf\nforward e154\nforward_10 e056\nforward_30 e057\nforward_5 e058\nfree_breakfast eb44\nfullscreen e5d0\nfullscreen_exit e5d1\nfunctions e24a\ng_translate e927\ngamepad e30f\ngames e021\ngavel e90e\ngesture e155\nget_app e884\ngif e908\ngolf_course eb45\ngps_fixed e1b3\ngps_not_fixed e1b4\ngps_off e1b5\ngrade e885\ngradient e3e9\ngrain e3ea\ngraphic_eq e1b8\ngrid_off e3eb\ngrid_on e3ec\ngroup e7ef\ngroup_add e7f0\ngroup_work e886\nhd e052\nhdr_off e3ed\nhdr_on e3ee\nhdr_strong e3f1\nhdr_weak e3f2\nheadset e310\nheadset_mic e311\nhealing e3f3\nhearing e023\nhelp e887\nhelp_outline e8fd\nhigh_quality e024\nhighlight e25f\nhighlight_off e888\nhistory e889\nhome e88a\nhot_tub eb46\nhotel e53a\nhourglass_empty e88b\nhourglass_full e88c\nhttp e902\nhttps e88d\nimage e3f4\nimage_aspect_ratio e3f5\nimport_contacts e0e0\nimport_export e0c3\nimportant_devices e912\ninbox e156\nindeterminate_check_box e909\ninfo e88e\ninfo_outline e88f\ninput e890\ninsert_chart e24b\ninsert_comment e24c\ninsert_drive_file e24d\ninsert_emoticon e24e\ninsert_invitation e24f\ninsert_link e250\ninsert_photo e251\ninvert_colors e891\ninvert_colors_off e0c4\niso e3f6\nkeyboard e312\nkeyboard_arrow_down e313\nkeyboard_arrow_left e314\nkeyboard_arrow_right e315\nkeyboard_arrow_up e316\nkeyboard_backspace e317\nkeyboard_capslock e318\nkeyboard_hide e31a\nkeyboard_return e31b\nkeyboard_tab e31c\nkeyboard_voice e31d\nkitchen eb47\nlabel e892\nlabel_outline e893\nlandscape e3f7\nlanguage e894\nlaptop e31e\nlaptop_chromebook e31f\nlaptop_mac e320\nlaptop_windows e321\nlast_page e5dd\nlaunch e895\nlayers e53b\nlayers_clear e53c\nleak_add e3f8\nleak_remove e3f9\nlens e3fa\nlibrary_add e02e\nlibrary_books e02f\nlibrary_music e030\nlightbulb_outline e90f\nline_style e919\nline_weight e91a\nlinear_scale e260\nlink e157\nlinked_camera e438\nlist e896\nlive_help e0c6\nlive_tv e639\nlocal_activity e53f\nlocal_airport e53d\nlocal_atm e53e\nlocal_bar e540\nlocal_cafe e541\nlocal_car_wash e542\nlocal_convenience_store e543\nlocal_dining e556\nlocal_drink e544\nlocal_florist e545\nlocal_gas_station e546\nlocal_grocery_store e547\nlocal_hospital e548\nlocal_hotel e549\nlocal_laundry_service e54a\nlocal_library e54b\nlocal_mall e54c\nlocal_movies e54d\nlocal_offer e54e\nlocal_parking e54f\nlocal_pharmacy e550\nlocal_phone e551\nlocal_pizza e552\nlocal_play e553\nlocal_post_office e554\nlocal_printshop e555\nlocal_see e557\nlocal_shipping e558\nlocal_taxi e559\nlocation_city e7f1\nlocation_disabled e1b6\nlocation_off e0c7\nlocation_on e0c8\nlocation_searching e1b7\nlock e897\nlock_open e898\nlock_outline e899\nlooks e3fc\nlooks_3 e3fb\nlooks_4 e3fd\nlooks_5 e3fe\nlooks_6 e3ff\nlooks_one e400\nlooks_two e401\nloop e028\nloupe e402\nlow_priority e16d\nloyalty e89a\nmail e158\nmail_outline e0e1\nmap e55b\nmarkunread e159\nmarkunread_mailbox e89b\nmemory e322\nmenu e5d2\nmerge_type e252\nmessage e0c9\nmic e029\nmic_none e02a\nmic_off e02b\nmms e618\nmode_comment e253\nmode_edit e254\nmonetization_on e263\nmoney_off e25c\nmonochrome_photos e403\nmood e7f2\nmood_bad e7f3\nmore e619\nmore_horiz e5d3\nmore_vert e5d4\nmotorcycle e91b\nmouse e323\nmove_to_inbox e168\nmovie e02c\nmovie_creation e404\nmovie_filter e43a\nmultiline_chart e6df\nmusic_note e405\nmusic_video e063\nmy_location e55c\nnature e406\nnature_people e407\nnavigate_before e408\nnavigate_next e409\nnavigation e55d\nnear_me e569\nnetwork_cell e1b9\nnetwork_check e640\nnetwork_locked e61a\nnetwork_wifi e1ba\nnew_releases e031\nnext_week e16a\nnfc e1bb\nno_encryption e641\nno_sim e0cc\nnot_interested e033\nnote e06f\nnote_add e89c\nnotifications e7f4\nnotifications_active e7f7\nnotifications_none e7f5\nnotifications_off e7f6\nnotifications_paused e7f8\noffline_pin e90a\nondemand_video e63a\nopacity e91c\nopen_in_browser e89d\nopen_in_new e89e\nopen_with e89f\npages e7f9\npageview e8a0\npalette e40a\npan_tool e925\npanorama e40b\npanorama_fish_eye e40c\npanorama_horizontal e40d\npanorama_vertical e40e\npanorama_wide_angle e40f\nparty_mode e7fa\npause e034\npause_circle_filled e035\npause_circle_outline e036\npayment e8a1\npeople e7fb\npeople_outline e7fc\nperm_camera_mic e8a2\nperm_contact_calendar e8a3\nperm_data_setting e8a4\nperm_device_information e8a5\nperm_identity e8a6\nperm_media e8a7\nperm_phone_msg e8a8\nperm_scan_wifi e8a9\nperson e7fd\nperson_add e7fe\nperson_outline e7ff\nperson_pin e55a\nperson_pin_circle e56a\npersonal_video e63b\npets e91d\nphone e0cd\nphone_android e324\nphone_bluetooth_speaker e61b\nphone_forwarded e61c\nphone_in_talk e61d\nphone_iphone e325\nphone_locked e61e\nphone_missed e61f\nphone_paused e620\nphonelink e326\nphonelink_erase e0db\nphonelink_lock e0dc\nphonelink_off e327\nphonelink_ring e0dd\nphonelink_setup e0de\nphoto e410\nphoto_album e411\nphoto_camera e412\nphoto_filter e43b\nphoto_library e413\nphoto_size_select_actual e432\nphoto_size_select_large e433\nphoto_size_select_small e434\npicture_as_pdf e415\npicture_in_picture e8aa\npicture_in_picture_alt e911\npie_chart e6c4\npie_chart_outlined e6c5\npin_drop e55e\nplace e55f\nplay_arrow e037\nplay_circle_filled e038\nplay_circle_outline e039\nplay_for_work e906\nplaylist_add e03b\nplaylist_add_check e065\nplaylist_play e05f\nplus_one e800\npoll e801\npolymer e8ab\npool eb48\nportable_wifi_off e0ce\nportrait e416\npower e63c\npower_input e336\npower_settings_new e8ac\npregnant_woman e91e\npresent_to_all e0df\nprint e8ad\npriority_high e645\npublic e80b\npublish e255\nquery_builder e8ae\nquestion_answer e8af\nqueue e03c\nqueue_music e03d\nqueue_play_next e066\nradio e03e\nradio_button_checked e837\nradio_button_unchecked e836\nrate_review e560\nreceipt e8b0\nrecent_actors e03f\nrecord_voice_over e91f\nredeem e8b1\nredo e15a\nrefresh e5d5\nremove e15b\nremove_circle e15c\nremove_circle_outline e15d\nremove_from_queue e067\nremove_red_eye e417\nremove_shopping_cart e928\nreorder e8fe\nrepeat e040\nrepeat_one e041\nreplay e042\nreplay_10 e059\nreplay_30 e05a\nreplay_5 e05b\nreply e15e\nreply_all e15f\nreport e160\nreport_problem e8b2\nrestaurant e56c\nrestaurant_menu e561\nrestore e8b3\nrestore_page e929\nring_volume e0d1\nroom e8b4\nroom_service eb49\nrotate_90_degrees_ccw e418\nrotate_left e419\nrotate_right e41a\nrounded_corner e920\nrouter e328\nrowing e921\nrss_feed e0e5\nrv_hookup e642\nsatellite e562\nsave e161\nscanner e329\nschedule e8b5\nschool e80c\nscreen_lock_landscape e1be\nscreen_lock_portrait e1bf\nscreen_lock_rotation e1c0\nscreen_rotation e1c1\nscreen_share e0e2\nsd_card e623\nsd_storage e1c2\nsearch e8b6\nsecurity e32a\nselect_all e162\nsend e163\nsentiment_dissatisfied e811\nsentiment_neutral e812\nsentiment_satisfied e813\nsentiment_very_dissatisfied e814\nsentiment_very_satisfied e815\nsettings e8b8\nsettings_applications e8b9\nsettings_backup_restore e8ba\nsettings_bluetooth e8bb\nsettings_brightness e8bd\nsettings_cell e8bc\nsettings_ethernet e8be\nsettings_input_antenna e8bf\nsettings_input_component e8c0\nsettings_input_composite e8c1\nsettings_input_hdmi e8c2\nsettings_input_svideo e8c3\nsettings_overscan e8c4\nsettings_phone e8c5\nsettings_power e8c6\nsettings_remote e8c7\nsettings_system_daydream e1c3\nsettings_voice e8c8\nshare e80d\nshop e8c9\nshop_two e8ca\nshopping_basket e8cb\nshopping_cart e8cc\nshort_text e261\nshow_chart e6e1\nshuffle e043\nsignal_cellular_4_bar e1c8\nsignal_cellular_connected_no_internet_4_bar e1cd\nsignal_cellular_no_sim e1ce\nsignal_cellular_null e1cf\nsignal_cellular_off e1d0\nsignal_wifi_4_bar e1d8\nsignal_wifi_4_bar_lock e1d9\nsignal_wifi_off e1da\nsim_card e32b\nsim_card_alert e624\nskip_next e044\nskip_previous e045\nslideshow e41b\nslow_motion_video e068\nsmartphone e32c\nsmoke_free eb4a\nsmoking_rooms eb4b\nsms e625\nsms_failed e626\nsnooze e046\nsort e164\nsort_by_alpha e053\nspa eb4c\nspace_bar e256\nspeaker e32d\nspeaker_group e32e\nspeaker_notes e8cd\nspeaker_notes_off e92a\nspeaker_phone e0d2\nspellcheck e8ce\nstar e838\nstar_border e83a\nstar_half e839\nstars e8d0\nstay_current_landscape e0d3\nstay_current_portrait e0d4\nstay_primary_landscape e0d5\nstay_primary_portrait e0d6\nstop e047\nstop_screen_share e0e3\nstorage e1db\nstore e8d1\nstore_mall_directory e563\nstraighten e41c\nstreetview e56e\nstrikethrough_s e257\nstyle e41d\nsubdirectory_arrow_left e5d9\nsubdirectory_arrow_right e5da\nsubject e8d2\nsubscriptions e064\nsubtitles e048\nsubway e56f\nsupervisor_account e8d3\nsurround_sound e049\nswap_calls e0d7\nswap_horiz e8d4\nswap_vert e8d5\nswap_vertical_circle e8d6\nswitch_camera e41e\nswitch_video e41f\nsync e627\nsync_disabled e628\nsync_problem e629\nsystem_update e62a\nsystem_update_alt e8d7\ntab e8d8\ntab_unselected e8d9\ntablet e32f\ntablet_android e330\ntablet_mac e331\ntag_faces e420\ntap_and_play e62b\nterrain e564\ntext_fields e262\ntext_format e165\ntextsms e0d8\ntexture e421\ntheaters e8da\nthumb_down e8db\nthumb_up e8dc\nthumbs_up_down e8dd\ntime_to_leave e62c\ntimelapse e422\ntimeline e922\ntimer e425\ntimer_10 e423\ntimer_3 e424\ntimer_off e426\ntitle e264\ntoc e8de\ntoday e8df\ntoll e8e0\ntonality e427\ntouch_app e913\ntoys e332\ntrack_changes e8e1\ntraffic e565\ntrain e570\ntram e571\ntransfer_within_a_station e572\ntransform e428\ntranslate e8e2\ntrending_down e8e3\ntrending_flat e8e4\ntrending_up e8e5\ntune e429\nturned_in e8e6\nturned_in_not e8e7\ntv e333\nunarchive e169\nundo e166\nunfold_less e5d6\nunfold_more e5d7\nupdate e923\nusb e1e0\nverified_user e8e8\nvertical_align_bottom e258\nvertical_align_center e259\nvertical_align_top e25a\nvibration e62d\nvideo_call e070\nvideo_label e071\nvideo_library e04a\nvideocam e04b\nvideocam_off e04c\nvideogame_asset e338\nview_agenda e8e9\nview_array e8ea\nview_carousel e8eb\nview_column e8ec\nview_comfy e42a\nview_compact e42b\nview_day e8ed\nview_headline e8ee\nview_list e8ef\nview_module e8f0\nview_quilt e8f1\nview_stream e8f2\nview_week e8f3\nvignette e435\nvisibility e8f4\nvisibility_off e8f5\nvoice_chat e62e\nvoicemail e0d9\nvolume_down e04d\nvolume_mute e04e\nvolume_off e04f\nvolume_up e050\nvpn_key e0da\nvpn_lock e62f\nwallpaper e1bc\nwarning e002\nwatch e334\nwatch_later e924\nwb_auto e42c\nwb_cloudy e42d\nwb_incandescent e42e\nwb_iridescent e436\nwb_sunny e430\nwc e63d\nweb e051\nweb_asset e069\nweekend e16b\nwhatshot e80e\nwidgets e1bd\nwifi e63e\nwifi_lock e1e1\nwifi_tethering e1e2\nwork e8f9\nwrap_text e25b\nyoutube_searched_for e8fa\nzoom_in e8ff\nzoom_out e900\nzoom_out_map e56b\n"
  },
  {
    "path": "ui/vendor/material-icons/material-icons.css",
    "content": "@font-face {\n  font-family: 'Material Icons';\n  font-style: normal;\n  font-weight: 400;\n  src: url(MaterialIcons-Regular.eot); /* For IE6-8 */\n  src: local('Material Icons'),\n       local('MaterialIcons-Regular'),\n       url(MaterialIcons-Regular.woff2) format('woff2'),\n       url(MaterialIcons-Regular.woff) format('woff'),\n       url(MaterialIcons-Regular.ttf) format('truetype');\n}\n\n.material-icons {\n  font-family: 'Material Icons';\n  font-weight: normal;\n  font-style: normal;\n  font-size: 24px;  /* Preferred icon size */\n  display: inline-block;\n  line-height: 1;\n  text-transform: none;\n  letter-spacing: normal;\n  word-wrap: normal;\n  white-space: nowrap;\n  direction: ltr;\n\n  /* Support for all WebKit browsers. */\n  -webkit-font-smoothing: antialiased;\n  /* Support for Safari and Chrome. */\n  text-rendering: optimizeLegibility;\n\n  /* Support for Firefox. */\n  -moz-osx-font-smoothing: grayscale;\n\n  /* Support for IE. */\n  font-feature-settings: 'liga';\n}\n"
  },
  {
    "path": "ui/vendor/picodom/picodom.js",
    "content": "!function(e,t){\"object\"==typeof exports&&\"undefined\"!=typeof module?t(exports):\"function\"==typeof define&&define.amd?define([\"exports\"],t):t(e.picodom={})}(this,function(e){\"use strict\";function t(e,t){var n,r=[];for(u=arguments.length;u-- >2;)d.push(arguments[u]);for(;d.length;)if(Array.isArray(n=d.pop()))for(u=n.length;u--;)d.push(n[u]);else null!=n&&!0!==n&&!1!==n&&(\"number\"==typeof n&&(n+=\"\"),r.push(n));return\"string\"==typeof e?{tag:e,data:t||{},children:r}:e(t,r)}function n(e,t,a,l,u,d){if(null==a)t=e.insertBefore(o(l,u),t);else if(null!=l.tag&&l.tag===a.tag){i(t,a.data,l.data),u=u||\"svg\"===l.tag;for(var c=l.children.length,s=a.children.length,h={},v=[],p={},g=0;g<s;g++){var y=v[g]=t.childNodes[g],m=a.children[g],b=r(m);null!=b&&(h[b]=[y,m])}for(var g=0,k=0;k<c;){var y=v[g],m=a.children[g],w=l.children[k],b=r(m);if(p[b])g++;else{var x=r(w),A=h[x]||[];null==x?(null==b&&(n(t,y,m,w,u),k++),g++):(b===x?(n(t,A[0],A[1],w,u),g++):A[0]?(t.insertBefore(A[0],y),n(t,A[0],A[1],w,u)):n(t,y,null,w,u),k++,p[x]=w)}}for(;g<s;){var m=a.children[g],b=r(m);null==b&&f(t,v[g],m.data),g++}for(var g in h){var A=h[g],B=A[1];p[B.data.key]||f(t,A[0],B.data)}}else t&&l!==t.nodeValue&&(t=e.insertBefore(o(l,u),d=t),f(e,d,a.data));return t}function r(e){if(e&&(e=e.data))return e.key}function a(e,t){var n={};for(var r in e)n[r]=e[r];for(var r in t)n[r]=t[r];return n}function o(e,t){if(\"string\"==typeof e)var n=document.createTextNode(e);else{var n=(t=t||\"svg\"===e.tag)?document.createElementNS(\"http://www.w3.org/2000/svg\",e.tag):document.createElement(e.tag);e.data&&e.data.oncreate&&c.push(function(){e.data.oncreate(n)});for(var r in e.data)l(n,r,e.data[r]);for(var r=0;r<e.children.length;)n.appendChild(o(e.children[r++],t))}return n}function i(e,t,n){for(var r in a(t,n)){var o=n[r],i=\"value\"===r||\"checked\"===r?e[r]:t[r];o!==i&&l(e,r,o,i)}n&&n.onupdate&&c.push(function(){n.onupdate(e,t)})}function f(e,t,n){n&&n.onremove?n.onremove(t):e.removeChild(t)}function l(e,t,n,r){if(\"key\"===t);else if(\"style\"===t)for(var o in a(r,n=n||{}))e.style[o]=n[o]||\"\";else{try{e[t]=n}catch(e){}\"function\"!=typeof n&&(n?e.setAttribute(t,n):e.removeAttribute(t))}}var u,d=[],c=[],s=function(e,t,r,a,o){for(r=n(a||document.body,r,e,t);o=c.pop();)o();return r};e.h=t,e.patch=s});\n//# sourceMappingURL=picodom.js.map"
  },
  {
    "path": "ui/vendor/roboto-mono/roboto-mono.css",
    "content": "/* roboto-mono-300 - greek_cyrillic_latin */\n@font-face {\n  font-family: 'Roboto Mono';\n  font-style: normal;\n  font-weight: 300;\n  src: url('roboto-mono-v4-greek_cyrillic_latin-300.eot'); /* IE9 Compat Modes */\n  src: local('Roboto Mono Light'), local('RobotoMono-Light'),\n  url('roboto-mono-v4-greek_cyrillic_latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */\n  url('roboto-mono-v4-greek_cyrillic_latin-300.woff2') format('woff2'), /* Super Modern Browsers */\n  url('roboto-mono-v4-greek_cyrillic_latin-300.woff') format('woff'), /* Modern Browsers */\n  url('roboto-mono-v4-greek_cyrillic_latin-300.ttf') format('truetype'), /* Safari, Android, iOS */\n  url('roboto-mono-v4-greek_cyrillic_latin-300.svg#RobotoMono') format('svg'); /* Legacy iOS */\n}\n/* roboto-mono-regular - greek_cyrillic_latin */\n@font-face {\n  font-family: 'Roboto Mono';\n  font-style: normal;\n  font-weight: 400;\n  src: url('roboto-mono-v4-greek_cyrillic_latin-regular.eot'); /* IE9 Compat Modes */\n  src: local('Roboto Mono'), local('RobotoMono-Regular'),\n  url('roboto-mono-v4-greek_cyrillic_latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */\n  url('roboto-mono-v4-greek_cyrillic_latin-regular.woff2') format('woff2'), /* Super Modern Browsers */\n  url('roboto-mono-v4-greek_cyrillic_latin-regular.woff') format('woff'), /* Modern Browsers */\n  url('roboto-mono-v4-greek_cyrillic_latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */\n  url('roboto-mono-v4-greek_cyrillic_latin-regular.svg#RobotoMono') format('svg'); /* Legacy iOS */\n}\n/* roboto-mono-500 - greek_cyrillic_latin */\n@font-face {\n  font-family: 'Roboto Mono';\n  font-style: normal;\n  font-weight: 500;\n  src: url('roboto-mono-v4-greek_cyrillic_latin-500.eot'); /* IE9 Compat Modes */\n  src: local('Roboto Mono Medium'), local('RobotoMono-Medium'),\n  url('roboto-mono-v4-greek_cyrillic_latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */\n  url('roboto-mono-v4-greek_cyrillic_latin-500.woff2') format('woff2'), /* Super Modern Browsers */\n  url('roboto-mono-v4-greek_cyrillic_latin-500.woff') format('woff'), /* Modern Browsers */\n  url('roboto-mono-v4-greek_cyrillic_latin-500.ttf') format('truetype'), /* Safari, Android, iOS */\n  url('roboto-mono-v4-greek_cyrillic_latin-500.svg#RobotoMono') format('svg'); /* Legacy iOS */\n}\n/* roboto-mono-700 - greek_cyrillic_latin */\n@font-face {\n  font-family: 'Roboto Mono';\n  font-style: normal;\n  font-weight: 700;\n  src: url('roboto-mono-v4-greek_cyrillic_latin-700.eot'); /* IE9 Compat Modes */\n  src: local('Roboto Mono Bold'), local('RobotoMono-Bold'),\n  url('roboto-mono-v4-greek_cyrillic_latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */\n  url('roboto-mono-v4-greek_cyrillic_latin-700.woff2') format('woff2'), /* Super Modern Browsers */\n  url('roboto-mono-v4-greek_cyrillic_latin-700.woff') format('woff'), /* Modern Browsers */\n  url('roboto-mono-v4-greek_cyrillic_latin-700.ttf') format('truetype'), /* Safari, Android, iOS */\n  url('roboto-mono-v4-greek_cyrillic_latin-700.svg#RobotoMono') format('svg'); /* Legacy iOS */\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/CONTRIBUTING.md",
    "content": "## Contribution guidelines.\n\nSo you wish to contribute to this project? Fantastic!\nHere are a few guidelines to help you do this in a\nstreamlined fashion.\n\n\n## Bug reports\n\nWhen supplying a bug report, please consider the following guidelines.\nThese serve to make it easier for us to address the issue and find a solution.\nMost of these are pretty self-evident, but sometimes it is still necessary\nto reiterate them.\n\n* Be clear in the way you express the problem. Use simple language and\n  just enough of it to clearly define the issue. Not everyone is a native\n  English speaker. And while most can handle themselves pretty well,\n  it helps to stay away from more esoteric vocabulary.\n  \n  Be patient with non-native English speakers. If their bug reports\n  or comments are hard to understand, just ask for clarification.\n  Do not start guessing at their meaning, as this may just lead to\n  more confusion and misunderstandings.\n* Clearly define any information which is relevant to the problem.\n  This includes library versions, operating system and any other\n  external dependencies which may be needed.\n* Where applicable, provide a step-by-step listing of the way to\n  reproduce the problem. Make sure this is the simplest possible\n  way to do so. Omit any and all unneccesary steps, because they may\n  just complicate our understanding of the real problem.\n  If need be, create a whole new code project on your local machine,\n  which specifically tries to create the problem you are running into;\n  nothing more, nothing less.\n  \n  Include this program in the bug report. It often suffices to paste\n  the code in a [Gist](https://gist.github.com) or on the\n  [Go playground](http://play.golang.org).\n* If possible, provide us with a listing of the steps you have already\n  undertaken to solve the problem. This can save us a great deal of\n  wasted time, trying out solutions you have already covered.\n\n\n## Pull requests\n\nBug reports are great. Supplying fixes to bugs is even better.\nWhen submitting a pull request, the following guidelines are\ngood to keep in mind:\n\n* `go fmt`: **Always** run your code through `go fmt`, before\n  committing it. Code has to be readable by many different\n  people. And the only way this will be as painless as possible,\n  is if we all stick to the same code style.\n  \n  Some of our projects may have automated build-servers hooked up\n  to commit hooks. These will vet any submitted code and determine\n  if it meets a set of properties. One of which is code formatting.\n  These servers will outright deny a submission which has not been\n  run through `go fmt`, even if the code itself is correct.\n  \n  We try to maintain a zero-tolerance policy on this matter,\n  because consistently formatted code makes life a great deal\n  easier for everyone involved.\n* Commit log messages: When committing changes, do so often and\n  clearly -- Even if you have changed only 1 character in a code\n  comment. This means that commit log messages should clearly state\n  exactly what the change does and why. If it fixes a known issue,\n  then mention the issue number in the commit log. E.g.:\n  \n  > Fixes return value for `foo/boo.Baz()` to be consistent with\n  > the rest of the API. This addresses issue #32\n  \n  Do not pile a lot of unrelated changes into a single commit.\n  Pick and choose only those changes for a single commit, which are\n  directly related. We would much rather see a hundred commits\n  saying nothing but `\"Runs go fmt\"` in between any real fixes\n  than have these style changes embedded in those real fixes.\n  It creates a lot of noise when trying to review code.\n\n\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/LICENSE",
    "content": "This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\nlicense. Its contents can be found at:\nhttp://creativecommons.org/publicdomain/zero/1.0\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/README.md",
    "content": "## bindata\n\nThis package converts any file into managable Go source code. Useful for\nembedding binary data into a go program. The file data is optionally gzip\ncompressed before being converted to a raw byte slice.\n\nIt comes with a command line tool in the `go-bindata` sub directory.\nThis tool offers a set of command line options, used to customize the\noutput being generated.\n\n\n### Installation\n\nTo install the library and command line program, use the following:\n\n\tgo get github.com/jteeuwen/go-bindata/...\n\n\n### Usage\n\nConversion is done on one or more sets of files. They are all embedded in a new\nGo source file, along with a table of contents and an `Asset` function,\nwhich allows quick access to the asset, based on its name.\n\nThe simplest invocation generates a `bindata.go` file in the current\nworking directory. It includes all assets from the `data` directory.\n\n\t$ go-bindata data/\n\nTo include all input sub-directories recursively, use the elipsis postfix\nas defined for Go import paths. Otherwise it will only consider assets in the\ninput directory itself.\n\n\t$ go-bindata data/...\n\nTo specify the name of the output file being generated, we use the following:\n\n\t$ go-bindata -o myfile.go data/\n\nMultiple input directories can be specified if necessary.\n\n\t$ go-bindata dir1/... /path/to/dir2/... dir3\n\n\nThe following paragraphs detail some of the command line options which can be \nsupplied to `go-bindata`. Refer to the `testdata/out` directory for various\noutput examples from the assets in `testdata/in`. Each example uses different\ncommand line options.\n\nTo ignore files, pass in regexes using -ignore, for example:\n\n    $ go-bindata -ignore=\\\\.gitignore data/...\n\n### Accessing an asset\n\nTo access asset data, we use the `Asset(string) ([]byte, error)` function which\nis included in the generated output.\n\n\tdata, err := Asset(\"pub/style/foo.css\")\n\tif err != nil {\n\t\t// Asset was not found.\n\t}\n\n\t// use asset data\n\n\n### Debug vs Release builds\n\nWhen invoking the program with the `-debug` flag, the generated code does\nnot actually include the asset data. Instead, it generates function stubs\nwhich load the data from the original file on disk. The asset API remains\nidentical between debug and release builds, so your code will not have to\nchange.\n\nThis is useful during development when you expect the assets to change often.\nThe host application using these assets uses the same API in both cases and\nwill not have to care where the actual data comes from.\n\nAn example is a Go webserver with some embedded, static web content like\nHTML, JS and CSS files. While developing it, you do not want to rebuild the\nwhole server and restart it every time you make a change to a bit of\njavascript. You just want to build and launch the server once. Then just press\nrefresh in the browser to see those changes. Embedding the assets with the\n`debug` flag allows you to do just that. When you are finished developing and\nready for deployment, just re-invoke `go-bindata` without the `-debug` flag.\nIt will now embed the latest version of the assets.\n\n\n### Lower memory footprint\n\nUsing the `-nomemcopy` flag, will alter the way the output file is generated.\nIt will employ a hack that allows us to read the file data directly from\nthe compiled program's `.rodata` section. This ensures that when we call\ncall our generated function, we omit unnecessary memcopies.\n\nThe downside of this, is that it requires dependencies on the `reflect` and\n`unsafe` packages. These may be restricted on platforms like AppEngine and\nthus prevent you from using this mode.\n\nAnother disadvantage is that the byte slice we create, is strictly read-only.\nFor most use-cases this is not a problem, but if you ever try to alter the\nreturned byte slice, a runtime panic is thrown. Use this mode only on target\nplatforms where memory constraints are an issue.\n\nThe default behaviour is to use the old code generation method. This\nprevents the two previously mentioned issues, but will employ at least one\nextra memcopy and thus increase memory requirements.\n\nFor instance, consider the following two examples:\n\nThis would be the default mode, using an extra memcopy but gives a safe\nimplementation without dependencies on `reflect` and `unsafe`:\n\n```go\nfunc myfile() []byte {\n    return []byte{0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a}\n}\n```\n\nHere is the same functionality, but uses the `.rodata` hack.\nThe byte slice returned from this example can not be written to without\ngenerating a runtime error.\n\n```go\nvar _myfile = \"\\x89\\x50\\x4e\\x47\\x0d\\x0a\\x1a\"\n\nfunc myfile() []byte {\n    var empty [0]byte\n    sx := (*reflect.StringHeader)(unsafe.Pointer(&_myfile))\n    b := empty[:]\n    bx := (*reflect.SliceHeader)(unsafe.Pointer(&b))\n    bx.Data = sx.Data\n    bx.Len = len(_myfile)\n    bx.Cap = bx.Len\n    return b\n}\n```\n\n\n### Optional compression\n\nWhen the `-nocompress` flag is given, the supplied resource is *not* GZIP\ncompressed before being turned into Go code. The data should still be accessed\nthrough a function call, so nothing changes in the usage of the generated file.\n\nThis feature is useful if you do not care for compression, or the supplied\nresource is already compressed. Doing it again would not add any value and may\neven increase the size of the data.\n\nThe default behaviour of the program is to use compression.\n\n\n### Path prefix stripping\n\nThe keys used in the `_bindata` map, are the same as the input file name\npassed to `go-bindata`. This includes the path. In most cases, this is not\ndesireable, as it puts potentially sensitive information in your code base.\nFor this purpose, the tool supplies another command line flag `-prefix`.\nThis accepts a portion of a path name, which should be stripped off from\nthe map keys and function names.\n\nFor example, running without the `-prefix` flag, we get:\n\n\t$ go-bindata /path/to/templates/\n\n\t_bindata[\"/path/to/templates/foo.html\"] = path_to_templates_foo_html\n\nRunning with the `-prefix` flag, we get:\n\n\t$ go-bindata -prefix \"/path/to/\" /path/to/templates/\n\n\t_bindata[\"templates/foo.html\"] = templates_foo_html\n\n\n### Build tags\n\nWith the optional `-tags` flag, you can specify any go build tags that\nmust be fulfilled for the output file to be included in a build. This\nis useful when including binary data in multiple formats, where the desired\nformat is specified at build time with the appropriate tags.\n\nThe tags are appended to a `// +build` line in the beginning of the output file\nand must follow the build tags syntax specified by the go tool.\n\n### Related projects\n\n[go-bindata-assetfs](https://github.com/elazarl/go-bindata-assetfs#readme) - \nimplements `http.FileSystem` interface. Allows you to serve assets with `net/http`.\n\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/asset.go",
    "content": "// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\n// license. Its contents can be found at:\n// http://creativecommons.org/publicdomain/zero/1.0/\n\npackage bindata\n\n// Asset holds information about a single asset to be processed.\ntype Asset struct {\n\tPath string // Full file path.\n\tName string // Key used in TOC -- name by which asset is referenced.\n\tFunc string // Function name for the procedure returning the asset contents.\n}\n\n// Implement sort.Interface for []Asset based on Path field\ntype ByPath []Asset\n\nfunc (v ByPath) Len() int           { return len(v) }\nfunc (v ByPath) Swap(i, j int)      { v[i], v[j] = v[j], v[i] }\nfunc (v ByPath) Less(i, j int) bool { return v[i].Path < v[j].Path }\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/bytewriter.go",
    "content": "// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\n// license. Its contents can be found at:\n// http://creativecommons.org/publicdomain/zero/1.0/\n\npackage bindata\n\nimport (\n\t\"fmt\"\n\t\"io\"\n)\n\nvar (\n\tnewline    = []byte{'\\n'}\n\tdataindent = []byte{'\\t', '\\t'}\n\tspace      = []byte{' '}\n)\n\ntype ByteWriter struct {\n\tio.Writer\n\tc int\n}\n\nfunc (w *ByteWriter) Write(p []byte) (n int, err error) {\n\tif len(p) == 0 {\n\t\treturn\n\t}\n\n\tfor n = range p {\n\t\tif w.c%12 == 0 {\n\t\t\tw.Writer.Write(newline)\n\t\t\tw.Writer.Write(dataindent)\n\t\t\tw.c = 0\n\t\t} else {\n\t\t\tw.Writer.Write(space)\n\t\t}\n\n\t\tfmt.Fprintf(w.Writer, \"0x%02x,\", p[n])\n\t\tw.c++\n\t}\n\n\tn++\n\n\treturn\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/config.go",
    "content": "// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\n// license. Its contents can be found at:\n// http://creativecommons.org/publicdomain/zero/1.0/\n\npackage bindata\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"regexp\"\n)\n\n// InputConfig defines options on a asset directory to be convert.\ntype InputConfig struct {\n\t// Path defines a directory containing asset files to be included\n\t// in the generated output.\n\tPath string\n\n\t// Recusive defines whether subdirectories of Path\n\t// should be recursively included in the conversion.\n\tRecursive bool\n}\n\n// Config defines a set of options for the asset conversion.\ntype Config struct {\n\t// Name of the package to use. Defaults to 'main'.\n\tPackage string\n\n\t// Tags specify a set of optional build tags, which should be\n\t// included in the generated output. The tags are appended to a\n\t// `// +build` line in the beginning of the output file\n\t// and must follow the build tags syntax specified by the go tool.\n\tTags string\n\n\t// Input defines the directory path, containing all asset files as\n\t// well as whether to recursively process assets in any sub directories.\n\tInput []InputConfig\n\n\t// Output defines the output file for the generated code.\n\t// If left empty, this defaults to 'bindata.go' in the current\n\t// working directory.\n\tOutput string\n\n\t// Prefix defines a path prefix which should be stripped from all\n\t// file names when generating the keys in the table of contents.\n\t// For example, running without the `-prefix` flag, we get:\n\t//\n\t// \t$ go-bindata /path/to/templates\n\t// \tgo_bindata[\"/path/to/templates/foo.html\"] = _path_to_templates_foo_html\n\t//\n\t// Running with the `-prefix` flag, we get:\n\t//\n\t// \t$ go-bindata -prefix \"/path/to/\" /path/to/templates/foo.html\n\t// \tgo_bindata[\"templates/foo.html\"] = templates_foo_html\n\tPrefix string\n\n\t// NoMemCopy will alter the way the output file is generated.\n\t//\n\t// It will employ a hack that allows us to read the file data directly from\n\t// the compiled program's `.rodata` section. This ensures that when we call\n\t// call our generated function, we omit unnecessary mem copies.\n\t//\n\t// The downside of this, is that it requires dependencies on the `reflect` and\n\t// `unsafe` packages. These may be restricted on platforms like AppEngine and\n\t// thus prevent you from using this mode.\n\t//\n\t// Another disadvantage is that the byte slice we create, is strictly read-only.\n\t// For most use-cases this is not a problem, but if you ever try to alter the\n\t// returned byte slice, a runtime panic is thrown. Use this mode only on target\n\t// platforms where memory constraints are an issue.\n\t//\n\t// The default behaviour is to use the old code generation method. This\n\t// prevents the two previously mentioned issues, but will employ at least one\n\t// extra memcopy and thus increase memory requirements.\n\t//\n\t// For instance, consider the following two examples:\n\t//\n\t// This would be the default mode, using an extra memcopy but gives a safe\n\t// implementation without dependencies on `reflect` and `unsafe`:\n\t//\n\t// \tfunc myfile() []byte {\n\t// \t\treturn []byte{0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a}\n\t// \t}\n\t//\n\t// Here is the same functionality, but uses the `.rodata` hack.\n\t// The byte slice returned from this example can not be written to without\n\t// generating a runtime error.\n\t//\n\t// \tvar _myfile = \"\\x89\\x50\\x4e\\x47\\x0d\\x0a\\x1a\"\n\t//\n\t// \tfunc myfile() []byte {\n\t// \t\tvar empty [0]byte\n\t// \t\tsx := (*reflect.StringHeader)(unsafe.Pointer(&_myfile))\n\t// \t\tb := empty[:]\n\t// \t\tbx := (*reflect.SliceHeader)(unsafe.Pointer(&b))\n\t// \t\tbx.Data = sx.Data\n\t// \t\tbx.Len = len(_myfile)\n\t// \t\tbx.Cap = bx.Len\n\t// \t\treturn b\n\t// \t}\n\tNoMemCopy bool\n\n\t// NoCompress means the assets are /not/ GZIP compressed before being turned\n\t// into Go code. The generated function will automatically unzip\n\t// the file data when called. Defaults to false.\n\tNoCompress bool\n\n\t// Perform a debug build. This generates an asset file, which\n\t// loads the asset contents directly from disk at their original\n\t// location, instead of embedding the contents in the code.\n\t//\n\t// This is mostly useful if you anticipate that the assets are\n\t// going to change during your development cycle. You will always\n\t// want your code to access the latest version of the asset.\n\t// Only in release mode, will the assets actually be embedded\n\t// in the code. The default behaviour is Release mode.\n\tDebug bool\n\n\t// Recursively process all assets in the input directory and its\n\t// sub directories. This defaults to false, so only files in the\n\t// input directory itself are read.\n\tRecursive bool\n\n\t// Ignores any filenames matching the regex pattern specified, e.g.\n\t// path/to/file.ext will ignore only that file, or \\\\.gitignore\n\t// will match any .gitignore file.\n\t//\n\t// This parameter can be provided multiple times.\n\tIgnore []*regexp.Regexp\n}\n\n// NewConfig returns a default configuration struct.\nfunc NewConfig() *Config {\n\tc := new(Config)\n\tc.Package = \"main\"\n\tc.NoMemCopy = false\n\tc.NoCompress = false\n\tc.Debug = false\n\tc.Recursive = false\n\tc.Output = \"./bindata.go\"\n\tc.Ignore = make([]*regexp.Regexp, 0)\n\treturn c\n}\n\n// validate ensures the config has sane values.\n// Part of which means checking if certain file/directory paths exist.\nfunc (c *Config) validate() error {\n\tif len(c.Package) == 0 {\n\t\treturn fmt.Errorf(\"Missing package name\")\n\t}\n\n\tfor _, input := range c.Input {\n\t\t_, err := os.Lstat(input.Path)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"Failed to stat input path '%s': %v\", input.Path, err)\n\t\t}\n\t}\n\n\tif len(c.Output) == 0 {\n\t\tcwd, err := os.Getwd()\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"Unable to determine current working directory.\")\n\t\t}\n\n\t\tc.Output = filepath.Join(cwd, \"bindata.go\")\n\t}\n\n\tstat, err := os.Lstat(c.Output)\n\tif err != nil {\n\t\tif !os.IsNotExist(err) {\n\t\t\treturn fmt.Errorf(\"Output path: %v\", err)\n\t\t}\n\n\t\t// File does not exist. This is fine, just make\n\t\t// sure the directory it is to be in exists.\n\t\tdir, _ := filepath.Split(c.Output)\n\t\tif dir != \"\" {\n\t\t\terr = os.MkdirAll(dir, 0744)\n\n\t\t\tif err != nil {\n\t\t\t\treturn fmt.Errorf(\"Create output directory: %v\", err)\n\t\t\t}\n\t\t}\n\t}\n\n\tif stat != nil && stat.IsDir() {\n\t\treturn fmt.Errorf(\"Output path is a directory.\")\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/convert.go",
    "content": "// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\n// license. Its contents can be found at:\n// http://creativecommons.org/publicdomain/zero/1.0/\n\npackage bindata\n\nimport (\n\t\"bufio\"\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"regexp\"\n\t\"sort\"\n\t\"strings\"\n\t\"unicode\"\n)\n\n// Translate reads assets from an input directory, converts them\n// to Go code and writes new files to the output specified\n// in the given configuration.\nfunc Translate(c *Config) error {\n\tvar toc []Asset\n\n\t// Ensure our configuration has sane values.\n\terr := c.validate()\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// Locate all the assets.\n\tfor _, input := range c.Input {\n\t\terr = findFiles(input.Path, c.Prefix, input.Recursive, &toc, c.Ignore)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\t// Sort to make output stable between invocations\n\tsort.Sort(ByPath(toc))\n\n\t// Create output file.\n\tfd, err := os.Create(c.Output)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tdefer fd.Close()\n\n\t// Create a buffered writer for better performance.\n\tbfd := bufio.NewWriter(fd)\n\tdefer bfd.Flush()\n\n\t// Write build tags, if applicable.\n\tif len(c.Tags) > 0 {\n\t\t_, err = fmt.Fprintf(bfd, \"// +build %s\\n\\n\", c.Tags)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\t// Write package declaration.\n\t_, err = fmt.Fprintf(bfd, \"package %s\\n\\n\", c.Package)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// Write assets.\n\tif c.Debug {\n\t\terr = writeDebug(bfd, toc)\n\t} else {\n\t\terr = writeRelease(bfd, c, toc)\n\t}\n\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// Write table of contents\n\tif err := writeTOC(bfd, toc); err != nil {\n\t\treturn err\n\t}\n\t// Write hierarchical tree of assets\n\treturn writeTOCTree(bfd, toc)\n}\n\n// findFiles recursively finds all the file paths in the given directory tree.\n// They are added to the given map as keys. Values will be safe function names\n// for each file, which will be used when generating the output code.\nfunc findFiles(dir, prefix string, recursive bool, toc *[]Asset, ignore []*regexp.Regexp) error {\n\tif len(prefix) > 0 {\n\t\tdir, _ = filepath.Abs(dir)\n\t\tprefix, _ = filepath.Abs(prefix)\n\t\tprefix = filepath.ToSlash(prefix)\n\t}\n\n\tfi, err := os.Stat(dir)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tvar list []os.FileInfo\n\n\tif !fi.IsDir() {\n\t\tdir = \"\"\n\t\tlist = []os.FileInfo{fi}\n\t} else {\n\t\tfd, err := os.Open(dir)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tdefer fd.Close()\n\n\t\tlist, err = fd.Readdir(0)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\tknownFuncs := make(map[string]int)\n\n\tfor _, file := range list {\n\t\tvar asset Asset\n\t\tasset.Path = filepath.Join(dir, file.Name())\n\t\tasset.Name = filepath.ToSlash(asset.Path)\n\n\t\tignoring := false\n\t\tfor _, re := range ignore {\n\t\t\tif re.MatchString(asset.Path) {\n\t\t\t\tignoring = true\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tif ignoring {\n\t\t\tcontinue\n\t\t}\n\n\t\tif file.IsDir() {\n\t\t\tif recursive {\n\t\t\t\tfindFiles(asset.Path, prefix, recursive, toc, ignore)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\tif strings.HasPrefix(asset.Name, prefix) {\n\t\t\tasset.Name = asset.Name[len(prefix):]\n\t\t}\n\n\t\t// If we have a leading slash, get rid of it.\n\t\tif len(asset.Name) > 0 && asset.Name[0] == '/' {\n\t\t\tasset.Name = asset.Name[1:]\n\t\t}\n\n\t\t// This shouldn't happen.\n\t\tif len(asset.Name) == 0 {\n\t\t\treturn fmt.Errorf(\"Invalid file: %v\", asset.Path)\n\t\t}\n\n\t\tasset.Func = safeFunctionName(asset.Name, knownFuncs)\n\t\tasset.Path, _ = filepath.Abs(asset.Path)\n\t\t*toc = append(*toc, asset)\n\t}\n\n\treturn nil\n}\n\nvar regFuncName = regexp.MustCompile(`[^a-zA-Z0-9_]`)\n\n// safeFunctionName converts the given name into a name\n// which qualifies as a valid function identifier. It\n// also compares against a known list of functions to\n// prevent conflict based on name translation.\nfunc safeFunctionName(name string, knownFuncs map[string]int) string {\n\tname = strings.ToLower(name)\n\tname = regFuncName.ReplaceAllString(name, \"_\")\n\n\t// Get rid of \"__\" instances for niceness.\n\tfor strings.Index(name, \"__\") > -1 {\n\t\tname = strings.Replace(name, \"__\", \"_\", -1)\n\t}\n\n\t// Leading underscores are silly (unless they prefix a digit (see below)).\n\tfor len(name) > 1 && name[0] == '_' {\n\t\tname = name[1:]\n\t}\n\n\t// Identifier can't start with a digit.\n\tif unicode.IsDigit(rune(name[0])) {\n\t\tname = \"_\" + name\n\t}\n\n\tif num, ok := knownFuncs[name]; ok {\n\t\tknownFuncs[name] = num + 1\n\t\tname = fmt.Sprintf(\"%s%d\", name, num)\n\t} else {\n\t\tknownFuncs[name] = 2\n\t}\n\n\treturn name\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/debug.go",
    "content": "// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\n// license. Its contents can be found at:\n// http://creativecommons.org/publicdomain/zero/1.0/\n\npackage bindata\n\nimport (\n\t\"fmt\"\n\t\"io\"\n)\n\n// writeDebug writes the debug code file.\nfunc writeDebug(w io.Writer, toc []Asset) error {\n\terr := writeDebugHeader(w)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tfor i := range toc {\n\t\terr = writeDebugAsset(w, &toc[i])\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\treturn nil\n}\n\n// writeDebugHeader writes output file headers.\n// This targets debug builds.\nfunc writeDebugHeader(w io.Writer) error {\n\t_, err := fmt.Fprintf(w, `import (\n\t\"fmt\"\n\t\"io/ioutil\"\n\t\"strings\"\n)\n\n// bindata_read reads the given file from disk. It returns an error on failure.\nfunc bindata_read(path, name string) ([]byte, error) {\n\tbuf, err := ioutil.ReadFile(path)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"Error reading asset %%s at %%s: %%v\", name, path, err)\n\t}\n\treturn buf, err\n}\n\n`)\n\treturn err\n}\n\n// writeDebugAsset write a debug entry for the given asset.\n// A debug entry is simply a function which reads the asset from\n// the original file (e.g.: from disk).\nfunc writeDebugAsset(w io.Writer, asset *Asset) error {\n\t_, err := fmt.Fprintf(w, `// %s reads file data from disk. It returns an error on failure.\nfunc %s() ([]byte, error) {\n\treturn bindata_read(\n\t\t%q,\n\t\t%q,\n\t)\n}\n\n`, asset.Func, asset.Func, asset.Path, asset.Name)\n\treturn err\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/doc.go",
    "content": "// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\n// license. Its contents can be found at:\n// http://creativecommons.org/publicdomain/zero/1.0/\n\n/*\nbindata converts any file into managable Go source code. Useful for\nembedding binary data into a go program. The file data is optionally gzip\ncompressed before being converted to a raw byte slice.\n\nThe following paragraphs cover some of the customization options\nwhich can be specified in the Config struct, which must be passed into\nthe Translate() call.\n\n\nDebug vs Release builds\n\nWhen used with the `Debug` option, the generated code does not actually include\nthe asset data. Instead, it generates function stubs which load the data from\nthe original file on disk. The asset API remains identical between debug and\nrelease builds, so your code will not have to change.\n\nThis is useful during development when you expect the assets to change often.\nThe host application using these assets uses the same API in both cases and\nwill not have to care where the actual data comes from.\n\nAn example is a Go webserver with some embedded, static web content like\nHTML, JS and CSS files. While developing it, you do not want to rebuild the\nwhole server and restart it every time you make a change to a bit of\njavascript. You just want to build and launch the server once. Then just press\nrefresh in the browser to see those changes. Embedding the assets with the\n`debug` flag allows you to do just that. When you are finished developing and\nready for deployment, just re-invoke `go-bindata` without the `-debug` flag.\nIt will now embed the latest version of the assets.\n\n\nLower memory footprint\n\nThe `NoMemCopy` option will alter the way the output file is generated.\nIt will employ a hack that allows us to read the file data directly from\nthe compiled program's `.rodata` section. This ensures that when we call\ncall our generated function, we omit unnecessary memcopies.\n\nThe downside of this, is that it requires dependencies on the `reflect` and\n`unsafe` packages. These may be restricted on platforms like AppEngine and\nthus prevent you from using this mode.\n\nAnother disadvantage is that the byte slice we create, is strictly read-only.\nFor most use-cases this is not a problem, but if you ever try to alter the\nreturned byte slice, a runtime panic is thrown. Use this mode only on target\nplatforms where memory constraints are an issue.\n\nThe default behaviour is to use the old code generation method. This\nprevents the two previously mentioned issues, but will employ at least one\nextra memcopy and thus increase memory requirements.\n\nFor instance, consider the following two examples:\n\nThis would be the default mode, using an extra memcopy but gives a safe\nimplementation without dependencies on `reflect` and `unsafe`:\n\n\tfunc myfile() []byte {\n\t\treturn []byte{0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a}\n\t}\n\nHere is the same functionality, but uses the `.rodata` hack.\nThe byte slice returned from this example can not be written to without\ngenerating a runtime error.\n\n\tvar _myfile = \"\\x89\\x50\\x4e\\x47\\x0d\\x0a\\x1a\"\n\n\tfunc myfile() []byte {\n\t\tvar empty [0]byte\n\t\tsx := (*reflect.StringHeader)(unsafe.Pointer(&_myfile))\n\t\tb := empty[:]\n\t\tbx := (*reflect.SliceHeader)(unsafe.Pointer(&b))\n\t\tbx.Data = sx.Data\n\t\tbx.Len = len(_myfile)\n\t\tbx.Cap = bx.Len\n\t\treturn b\n\t}\n\n\nOptional compression\n\nThe NoCompress option indicates that the supplied assets are *not* GZIP\ncompressed before being turned into Go code. The data should still be accessed\nthrough a function call, so nothing changes in the API.\n\nThis feature is useful if you do not care for compression, or the supplied\nresource is already compressed. Doing it again would not add any value and may\neven increase the size of the data.\n\nThe default behaviour of the program is to use compression.\n\n\nPath prefix stripping\n\nThe keys used in the `_bindata` map are the same as the input file name\npassed to `go-bindata`. This includes the path. In most cases, this is not\ndesireable, as it puts potentially sensitive information in your code base.\nFor this purpose, the tool supplies another command line flag `-prefix`.\nThis accepts a portion of a path name, which should be stripped off from\nthe map keys and function names.\n\nFor example, running without the `-prefix` flag, we get:\n\n\t$ go-bindata /path/to/templates/\n\n\t_bindata[\"/path/to/templates/foo.html\"] = path_to_templates_foo_html\n\nRunning with the `-prefix` flag, we get:\n\n\t$ go-bindata -prefix \"/path/to/\" /path/to/templates/\n\n\t_bindata[\"templates/foo.html\"] = templates_foo_html\n\n\nBuild tags\n\nWith the optional Tags field, you can specify any go build tags that\nmust be fulfilled for the output file to be included in a build. This\nis useful when including binary data in multiple formats, where the desired\nformat is specified at build time with the appropriate tags.\n\nThe tags are appended to a `// +build` line in the beginning of the output file\nand must follow the build tags syntax specified by the go tool.\n\n*/\npackage bindata\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/go-bindata/AppendSliceValue.go",
    "content": "package main\n\nimport \"strings\"\n\n// borrowed from https://github.com/hashicorp/serf/blob/master/command/agent/flag_slice_value.go\n\n// AppendSliceValue implements the flag.Value interface and allows multiple\n// calls to the same variable to append a list.\ntype AppendSliceValue []string\n\nfunc (s *AppendSliceValue) String() string {\n\treturn strings.Join(*s, \",\")\n}\n\nfunc (s *AppendSliceValue) Set(value string) error {\n\tif *s == nil {\n\t\t*s = make([]string, 0, 1)\n\t}\n\n\t*s = append(*s, value)\n\treturn nil\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/go-bindata/main.go",
    "content": "// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\n// license. Its contents can be found at:\n// http://creativecommons.org/publicdomain/zero/1.0/\n\npackage main\n\nimport (\n\t\"flag\"\n\t\"fmt\"\n\t\"github.com/jteeuwen/go-bindata\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"regexp\"\n\t\"strings\"\n)\n\nfunc main() {\n\tcfg := parseArgs()\n\terr := bindata.Translate(cfg)\n\n\tif err != nil {\n\t\tfmt.Fprintf(os.Stderr, \"bindata: %v\\n\", err)\n\t\tos.Exit(1)\n\t}\n}\n\n// parseArgs create s a new, filled configuration instance\n// by reading and parsing command line options.\n//\n// This function exits the program with an error, if\n// any of the command line options are incorrect.\nfunc parseArgs() *bindata.Config {\n\tvar version bool\n\n\tc := bindata.NewConfig()\n\n\tflag.Usage = func() {\n\t\tfmt.Printf(\"Usage: %s [options] <input directories>\\n\\n\", os.Args[0])\n\t\tflag.PrintDefaults()\n\t}\n\n\tflag.BoolVar(&c.Debug, \"debug\", c.Debug, \"Do not embed the assets, but provide the embedding API. Contents will still be loaded from disk.\")\n\tflag.StringVar(&c.Tags, \"tags\", c.Tags, \"Optional set of build tags to include.\")\n\tflag.StringVar(&c.Prefix, \"prefix\", c.Prefix, \"Optional path prefix to strip off asset names.\")\n\tflag.StringVar(&c.Package, \"pkg\", c.Package, \"Package name to use in the generated code.\")\n\tflag.BoolVar(&c.NoMemCopy, \"nomemcopy\", c.NoMemCopy, \"Use a .rodata hack to get rid of unnecessary memcopies. Refer to the documentation to see what implications this carries.\")\n\tflag.BoolVar(&c.NoCompress, \"nocompress\", c.NoCompress, \"Assets will *not* be GZIP compressed when this flag is specified.\")\n\tflag.StringVar(&c.Output, \"o\", c.Output, \"Optional name of the output file to be generated.\")\n\tflag.BoolVar(&version, \"version\", false, \"Displays version information.\")\n\n\tignore := make([]string, 0)\n\tflag.Var((*AppendSliceValue)(&ignore), \"ignore\", \"Regex pattern to ignore\")\n\n\tflag.Parse()\n\n\tpatterns := make([]*regexp.Regexp, 0)\n\tfor _, pattern := range ignore {\n\t\tpatterns = append(patterns, regexp.MustCompile(pattern))\n\t}\n\tc.Ignore = patterns\n\n\tif version {\n\t\tfmt.Printf(\"%s\\n\", Version())\n\t\tos.Exit(0)\n\t}\n\n\t// Make sure we have input paths.\n\tif flag.NArg() == 0 {\n\t\tfmt.Fprintf(os.Stderr, \"Missing <input dir>\\n\\n\")\n\t\tflag.Usage()\n\t\tos.Exit(1)\n\t}\n\n\t// Create input configurations.\n\tc.Input = make([]bindata.InputConfig, flag.NArg())\n\tfor i := range c.Input {\n\t\tc.Input[i] = parseInput(flag.Arg(i))\n\t}\n\n\treturn c\n}\n\n// parseRecursive determines whether the given path has a recrusive indicator and\n// returns a new path with the recursive indicator chopped off if it does.\n//\n//  ex:\n//      /path/to/foo/...    -> (/path/to/foo, true)\n//      /path/to/bar        -> (/path/to/bar, false)\nfunc parseInput(path string) bindata.InputConfig {\n\tif strings.HasSuffix(path, \"/...\") {\n\t\treturn bindata.InputConfig{\n\t\t\tPath:      filepath.Clean(path[:len(path)-4]),\n\t\t\tRecursive: true,\n\t\t}\n\t} else {\n\t\treturn bindata.InputConfig{\n\t\t\tPath:      filepath.Clean(path),\n\t\t\tRecursive: false,\n\t\t}\n\t}\n\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/go-bindata/version.go",
    "content": "// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\n// license. Its contents can be found at:\n// http://creativecommons.org/publicdomain/zero/1.0/\n\npackage main\n\nimport (\n\t\"fmt\"\n\t\"runtime\"\n)\n\nconst (\n\tAppName         = \"go-bindata\"\n\tAppVersionMajor = 3\n\tAppVersionMinor = 1\n)\n\n// revision part of the program version.\n// This will be set automatically at build time like so:\n//\n//     go build -ldflags \"-X main.AppVersionRev `date -u +%s`\"\nvar AppVersionRev string\n\nfunc Version() string {\n\tif len(AppVersionRev) == 0 {\n\t\tAppVersionRev = \"0\"\n\t}\n\n\treturn fmt.Sprintf(\"%s %d.%d.%s (Go runtime %s).\\nCopyright (c) 2010-2013, Jim Teeuwen.\",\n\t\tAppName, AppVersionMajor, AppVersionMinor, AppVersionRev, runtime.Version())\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/release.go",
    "content": "// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\n// license. Its contents can be found at:\n// http://creativecommons.org/publicdomain/zero/1.0/\n\npackage bindata\n\nimport (\n\t\"bytes\"\n\t\"compress/gzip\"\n\t\"fmt\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"os\"\n\t\"unicode/utf8\"\n)\n\n// writeRelease writes the release code file.\nfunc writeRelease(w io.Writer, c *Config, toc []Asset) error {\n\terr := writeReleaseHeader(w, c)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tfor i := range toc {\n\t\terr = writeReleaseAsset(w, c, &toc[i])\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\treturn nil\n}\n\n// writeReleaseHeader writes output file headers.\n// This targets release builds.\nfunc writeReleaseHeader(w io.Writer, c *Config) error {\n\tif c.NoCompress {\n\t\tif c.NoMemCopy {\n\t\t\treturn header_uncompressed_nomemcopy(w)\n\t\t} else {\n\t\t\treturn header_uncompressed_memcopy(w)\n\t\t}\n\t} else {\n\t\tif c.NoMemCopy {\n\t\t\treturn header_compressed_nomemcopy(w)\n\t\t} else {\n\t\t\treturn header_compressed_memcopy(w)\n\t\t}\n\t}\n}\n\n// writeReleaseAsset write a release entry for the given asset.\n// A release entry is a function which embeds and returns\n// the file's byte content.\nfunc writeReleaseAsset(w io.Writer, c *Config, asset *Asset) error {\n\tfd, err := os.Open(asset.Path)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tdefer fd.Close()\n\n\tif c.NoCompress {\n\t\tif c.NoMemCopy {\n\t\t\treturn uncompressed_nomemcopy(w, asset, fd)\n\t\t} else {\n\t\t\treturn uncompressed_memcopy(w, asset, fd)\n\t\t}\n\t} else {\n\t\tif c.NoMemCopy {\n\t\t\treturn compressed_nomemcopy(w, asset, fd)\n\t\t} else {\n\t\t\treturn compressed_memcopy(w, asset, fd)\n\t\t}\n\t}\n}\n\n// sanitize prepares a valid UTF-8 string as a raw string constant.\n// Based on https://code.google.com/p/go/source/browse/godoc/static/makestatic.go?repo=tools\nfunc sanitize(b []byte) []byte {\n\t// Replace ` with `+\"`\"+`\n\tb = bytes.Replace(b, []byte(\"`\"), []byte(\"`+\\\"`\\\"+`\"), -1)\n\n\t// Replace BOM with `+\"\\xEF\\xBB\\xBF\"+`\n\t// (A BOM is valid UTF-8 but not permitted in Go source files.\n\t// I wouldn't bother handling this, but for some insane reason\n\t// jquery.js has a BOM somewhere in the middle.)\n\treturn bytes.Replace(b, []byte(\"\\xEF\\xBB\\xBF\"), []byte(\"`+\\\"\\\\xEF\\\\xBB\\\\xBF\\\"+`\"), -1)\n}\n\nfunc header_compressed_nomemcopy(w io.Writer) error {\n\t_, err := fmt.Fprintf(w, `import (\n\t\"bytes\"\n\t\"compress/gzip\"\n\t\"fmt\"\n\t\"io\"\n\t\"reflect\"\n\t\"strings\"\n\t\"unsafe\"\n)\n\nfunc bindata_read(data, name string) ([]byte, error) {\n\tvar empty [0]byte\n\tsx := (*reflect.StringHeader)(unsafe.Pointer(&data))\n\tb := empty[:]\n\tbx := (*reflect.SliceHeader)(unsafe.Pointer(&b))\n\tbx.Data = sx.Data\n\tbx.Len = len(data)\n\tbx.Cap = bx.Len\n\n\tgz, err := gzip.NewReader(bytes.NewBuffer(b))\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"Read %%q: %%v\", name, err)\n\t}\n\n\tvar buf bytes.Buffer\n\t_, err = io.Copy(&buf, gz)\n\tgz.Close()\n\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"Read %%q: %%v\", name, err)\n\t}\n\n\treturn buf.Bytes(), nil\n}\n\n`)\n\treturn err\n}\n\nfunc header_compressed_memcopy(w io.Writer) error {\n\t_, err := fmt.Fprintf(w, `import (\n\t\"bytes\"\n\t\"compress/gzip\"\n\t\"fmt\"\n\t\"io\"\n\t\"strings\"\n)\n\nfunc bindata_read(data []byte, name string) ([]byte, error) {\n\tgz, err := gzip.NewReader(bytes.NewBuffer(data))\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"Read %%q: %%v\", name, err)\n\t}\n\n\tvar buf bytes.Buffer\n\t_, err = io.Copy(&buf, gz)\n\tgz.Close()\n\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"Read %%q: %%v\", name, err)\n\t}\n\n\treturn buf.Bytes(), nil\n}\n\n`)\n\treturn err\n}\n\nfunc header_uncompressed_nomemcopy(w io.Writer) error {\n\t_, err := fmt.Fprintf(w, `import (\n\t\"fmt\"\n\t\"reflect\"\n\t\"strings\"\n\t\"unsafe\"\n)\n\nfunc bindata_read(data, name string) ([]byte, error) {\n\tvar empty [0]byte\n\tsx := (*reflect.StringHeader)(unsafe.Pointer(&data))\n\tb := empty[:]\n\tbx := (*reflect.SliceHeader)(unsafe.Pointer(&b))\n\tbx.Data = sx.Data\n\tbx.Len = len(data)\n\tbx.Cap = bx.Len\n\treturn b, nil\n}\n\n`)\n\treturn err\n}\n\nfunc header_uncompressed_memcopy(w io.Writer) error {\n\t_, err := fmt.Fprintf(w, `import (\n\t\"fmt\"\n\t\"strings\"\n)\n`)\n\treturn err\n}\n\nfunc compressed_nomemcopy(w io.Writer, asset *Asset, r io.Reader) error {\n\t_, err := fmt.Fprintf(w, `var _%s = \"`, asset.Func)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tgz := gzip.NewWriter(&StringWriter{Writer: w})\n\t_, err = io.Copy(gz, r)\n\tgz.Close()\n\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t_, err = fmt.Fprintf(w, `\"\n\nfunc %s() ([]byte, error) {\n\treturn bindata_read(\n\t\t_%s,\n\t\t%q,\n\t)\n}\n\n`, asset.Func, asset.Func, asset.Name)\n\treturn err\n}\n\nfunc compressed_memcopy(w io.Writer, asset *Asset, r io.Reader) error {\n\t_, err := fmt.Fprintf(w, `var _%s = []byte(\"`, asset.Func)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tgz := gzip.NewWriter(&StringWriter{Writer: w})\n\t_, err = io.Copy(gz, r)\n\tgz.Close()\n\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t_, err = fmt.Fprintf(w, `\")\n\nfunc %s() ([]byte, error) {\n\treturn bindata_read(\n\t\t_%s,\n\t\t%q,\n\t)\n}\n\n`, asset.Func, asset.Func, asset.Name)\n\treturn err\n}\n\nfunc uncompressed_nomemcopy(w io.Writer, asset *Asset, r io.Reader) error {\n\t_, err := fmt.Fprintf(w, `var _%s = \"`, asset.Func)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t_, err = io.Copy(&StringWriter{Writer: w}, r)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t_, err = fmt.Fprintf(w, `\"\n\nfunc %s() ([]byte, error) {\n\treturn bindata_read(\n\t\t_%s,\n\t\t%q,\n\t)\n}\n\n`, asset.Func, asset.Func, asset.Name)\n\treturn err\n}\n\nfunc uncompressed_memcopy(w io.Writer, asset *Asset, r io.Reader) error {\n\t_, err := fmt.Fprintf(w, `var _%s = []byte(`, asset.Func)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tb, err := ioutil.ReadAll(r)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif utf8.Valid(b) {\n\t\tfmt.Fprintf(w, \"`%s`\", sanitize(b))\n\t} else {\n\t\tfmt.Fprintf(w, \"%q\", b)\n\t}\n\n\t_, err = fmt.Fprintf(w, `)\n\nfunc %s() ([]byte, error) {\n\treturn _%s, nil\n}\n\n`, asset.Func, asset.Func)\n\treturn err\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/stringwriter.go",
    "content": "// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\n// license. Its contents can be found at:\n// http://creativecommons.org/publicdomain/zero/1.0/\n\npackage bindata\n\nimport (\n\t\"io\"\n)\n\nconst lowerHex = \"0123456789abcdef\"\n\ntype StringWriter struct {\n\tio.Writer\n\tc int\n}\n\nfunc (w *StringWriter) Write(p []byte) (n int, err error) {\n\tif len(p) == 0 {\n\t\treturn\n\t}\n\n\tbuf := []byte(`\\x00`)\n\tvar b byte\n\n\tfor n, b = range p {\n\t\tbuf[2] = lowerHex[b/16]\n\t\tbuf[3] = lowerHex[b%16]\n\t\tw.Writer.Write(buf)\n\t\tw.c++\n\t}\n\n\tn++\n\n\treturn\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/testdata/in/a/test.asset",
    "content": "// sample file\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/testdata/in/b/test.asset",
    "content": "// sample file\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/testdata/in/c/test.asset",
    "content": "// sample file\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/testdata/in/test.asset",
    "content": "// sample file\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/testdata/out/compress-memcopy.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"compress/gzip\"\n\t\"io\"\n\t\"log\"\n)\n\nfunc bindata_read(data []byte, name string) []byte {\n\tgz, err := gzip.NewReader(bytes.NewBuffer(data))\n\tif err != nil {\n\t\tlog.Fatalf(\"Read %q: %v\", name, err)\n\t}\n\n\tvar buf bytes.Buffer\n\t_, err = io.Copy(&buf, gz)\n\tgz.Close()\n\n\tif err != nil {\n\t\tlog.Fatalf(\"Read %q: %v\", name, err)\n\t}\n\n\treturn buf.Bytes()\n}\n\nfunc in_b_test_asset() []byte {\n\treturn bindata_read([]byte{\n\t\t0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x00, 0xff, 0xd2, 0xd7,\n\t\t0x57, 0x28, 0x4e, 0xcc, 0x2d, 0xc8, 0x49, 0x55, 0x48, 0xcb, 0xcc, 0x49,\n\t\t0xe5, 0x02, 0x04, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x82, 0x8c, 0x85, 0x0f,\n\t\t0x00, 0x00, 0x00,\n\t},\n\t\t\"in/b/test.asset\",\n\t)\n}\n\nfunc in_test_asset() []byte {\n\treturn bindata_read([]byte{\n\t\t0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x00, 0xff, 0xd2, 0xd7,\n\t\t0x57, 0x28, 0x4e, 0xcc, 0x2d, 0xc8, 0x49, 0x55, 0x48, 0xcb, 0xcc, 0x49,\n\t\t0xe5, 0x02, 0x04, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x82, 0x8c, 0x85, 0x0f,\n\t\t0x00, 0x00, 0x00,\n\t},\n\t\t\"in/test.asset\",\n\t)\n}\n\nfunc in_a_test_asset() []byte {\n\treturn bindata_read([]byte{\n\t\t0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x00, 0xff, 0xd2, 0xd7,\n\t\t0x57, 0x28, 0x4e, 0xcc, 0x2d, 0xc8, 0x49, 0x55, 0x48, 0xcb, 0xcc, 0x49,\n\t\t0xe5, 0x02, 0x04, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x82, 0x8c, 0x85, 0x0f,\n\t\t0x00, 0x00, 0x00,\n\t},\n\t\t\"in/a/test.asset\",\n\t)\n}\n\nfunc in_c_test_asset() []byte {\n\treturn bindata_read([]byte{\n\t\t0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x00, 0xff, 0xd2, 0xd7,\n\t\t0x57, 0x28, 0x4e, 0xcc, 0x2d, 0xc8, 0x49, 0x55, 0x48, 0xcb, 0xcc, 0x49,\n\t\t0xe5, 0x02, 0x04, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x82, 0x8c, 0x85, 0x0f,\n\t\t0x00, 0x00, 0x00,\n\t},\n\t\t\"in/c/test.asset\",\n\t)\n}\n\n// Asset loads and returns the asset for the given name.\n// This returns nil of the asset could not be found.\nfunc Asset(name string) []byte {\n\tif f, ok := _bindata[name]; ok {\n\t\treturn f()\n\t}\n\treturn nil\n}\n\n// _bindata is a table, holding each asset generator, mapped to its name.\nvar _bindata = map[string]func() []byte{\n\t\"in/b/test.asset\": in_b_test_asset,\n\t\"in/test.asset\":   in_test_asset,\n\t\"in/a/test.asset\": in_a_test_asset,\n\t\"in/c/test.asset\": in_c_test_asset,\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/testdata/out/compress-nomemcopy.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"compress/gzip\"\n\t\"io\"\n\t\"log\"\n\t\"reflect\"\n\t\"unsafe\"\n)\n\nfunc bindata_read(data, name string) []byte {\n\tvar empty [0]byte\n\tsx := (*reflect.StringHeader)(unsafe.Pointer(&data))\n\tb := empty[:]\n\tbx := (*reflect.SliceHeader)(unsafe.Pointer(&b))\n\tbx.Data = sx.Data\n\tbx.Len = len(data)\n\tbx.Cap = bx.Len\n\n\tgz, err := gzip.NewReader(bytes.NewBuffer(b))\n\tif err != nil {\n\t\tlog.Fatalf(\"Read %q: %v\", name, err)\n\t}\n\n\tvar buf bytes.Buffer\n\t_, err = io.Copy(&buf, gz)\n\tgz.Close()\n\n\tif err != nil {\n\t\tlog.Fatalf(\"Read %q: %v\", name, err)\n\t}\n\n\treturn buf.Bytes()\n}\n\nvar _in_b_test_asset = \"\\x1f\\x8b\\x08\\x00\\x00\\x09\\x6e\\x88\\x00\\xff\\xd2\\xd7\\x57\\x28\\x4e\\xcc\\x2d\\xc8\\x49\\x55\\x48\\xcb\\xcc\\x49\\xe5\\x02\\x04\\x00\\x00\\xff\\xff\\x8a\\x82\\x8c\\x85\\x0f\\x00\\x00\\x00\"\n\nfunc in_b_test_asset() []byte {\n\treturn bindata_read(\n\t\t_in_b_test_asset,\n\t\t\"in/b/test.asset\",\n\t)\n}\n\nvar _in_test_asset = \"\\x1f\\x8b\\x08\\x00\\x00\\x09\\x6e\\x88\\x00\\xff\\xd2\\xd7\\x57\\x28\\x4e\\xcc\\x2d\\xc8\\x49\\x55\\x48\\xcb\\xcc\\x49\\xe5\\x02\\x04\\x00\\x00\\xff\\xff\\x8a\\x82\\x8c\\x85\\x0f\\x00\\x00\\x00\"\n\nfunc in_test_asset() []byte {\n\treturn bindata_read(\n\t\t_in_test_asset,\n\t\t\"in/test.asset\",\n\t)\n}\n\nvar _in_a_test_asset = \"\\x1f\\x8b\\x08\\x00\\x00\\x09\\x6e\\x88\\x00\\xff\\xd2\\xd7\\x57\\x28\\x4e\\xcc\\x2d\\xc8\\x49\\x55\\x48\\xcb\\xcc\\x49\\xe5\\x02\\x04\\x00\\x00\\xff\\xff\\x8a\\x82\\x8c\\x85\\x0f\\x00\\x00\\x00\"\n\nfunc in_a_test_asset() []byte {\n\treturn bindata_read(\n\t\t_in_a_test_asset,\n\t\t\"in/a/test.asset\",\n\t)\n}\n\nvar _in_c_test_asset = \"\\x1f\\x8b\\x08\\x00\\x00\\x09\\x6e\\x88\\x00\\xff\\xd2\\xd7\\x57\\x28\\x4e\\xcc\\x2d\\xc8\\x49\\x55\\x48\\xcb\\xcc\\x49\\xe5\\x02\\x04\\x00\\x00\\xff\\xff\\x8a\\x82\\x8c\\x85\\x0f\\x00\\x00\\x00\"\n\nfunc in_c_test_asset() []byte {\n\treturn bindata_read(\n\t\t_in_c_test_asset,\n\t\t\"in/c/test.asset\",\n\t)\n}\n\n// Asset loads and returns the asset for the given name.\n// This returns nil of the asset could not be found.\nfunc Asset(name string) []byte {\n\tif f, ok := _bindata[name]; ok {\n\t\treturn f()\n\t}\n\treturn nil\n}\n\n// _bindata is a table, holding each asset generator, mapped to its name.\nvar _bindata = map[string]func() []byte{\n\t\"in/b/test.asset\": in_b_test_asset,\n\t\"in/test.asset\":   in_test_asset,\n\t\"in/a/test.asset\": in_a_test_asset,\n\t\"in/c/test.asset\": in_c_test_asset,\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/testdata/out/debug.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"io\"\n\t\"log\"\n\t\"os\"\n)\n\n// bindata_read reads the given file from disk.\n// It panics if anything went wrong.\nfunc bindata_read(path, name string) []byte {\n\tfd, err := os.Open(path)\n\tif err != nil {\n\t\tlog.Fatalf(\"Read %s: %v\", name, err)\n\t}\n\n\tdefer fd.Close()\n\n\tvar buf bytes.Buffer\n\t_, err = io.Copy(&buf, fd)\n\tif err != nil {\n\t\tlog.Fatalf(\"Read %s: %v\", name, err)\n\t}\n\n\treturn buf.Bytes()\n}\n\n// in_b_test_asset reads file data from disk.\n// It panics if something went wrong in the process.\nfunc in_b_test_asset() []byte {\n\treturn bindata_read(\n\t\t\"/a/code/go/src/github.com/jteeuwen/go-bindata/testdata/in/b/test.asset\",\n\t\t\"in/b/test.asset\",\n\t)\n}\n\n// in_test_asset reads file data from disk.\n// It panics if something went wrong in the process.\nfunc in_test_asset() []byte {\n\treturn bindata_read(\n\t\t\"/a/code/go/src/github.com/jteeuwen/go-bindata/testdata/in/test.asset\",\n\t\t\"in/test.asset\",\n\t)\n}\n\n// in_a_test_asset reads file data from disk.\n// It panics if something went wrong in the process.\nfunc in_a_test_asset() []byte {\n\treturn bindata_read(\n\t\t\"/a/code/go/src/github.com/jteeuwen/go-bindata/testdata/in/a/test.asset\",\n\t\t\"in/a/test.asset\",\n\t)\n}\n\n// in_c_test_asset reads file data from disk.\n// It panics if something went wrong in the process.\nfunc in_c_test_asset() []byte {\n\treturn bindata_read(\n\t\t\"/a/code/go/src/github.com/jteeuwen/go-bindata/testdata/in/c/test.asset\",\n\t\t\"in/c/test.asset\",\n\t)\n}\n\n// Asset loads and returns the asset for the given name.\n// This returns nil of the asset could not be found.\nfunc Asset(name string) []byte {\n\tif f, ok := _bindata[name]; ok {\n\t\treturn f()\n\t}\n\treturn nil\n}\n\n// _bindata is a table, holding each asset generator, mapped to its name.\nvar _bindata = map[string]func() []byte{\n\t\"in/b/test.asset\": in_b_test_asset,\n\t\"in/test.asset\":   in_test_asset,\n\t\"in/a/test.asset\": in_a_test_asset,\n\t\"in/c/test.asset\": in_c_test_asset,\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/testdata/out/nocompress-memcopy.go",
    "content": "package main\n\nfunc in_b_test_asset() []byte {\n\treturn []byte{\n\t\t0x2f, 0x2f, 0x20, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x20, 0x66, 0x69,\n\t\t0x6c, 0x65, 0x0a,\n\t}\n}\n\nfunc in_test_asset() []byte {\n\treturn []byte{\n\t\t0x2f, 0x2f, 0x20, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x20, 0x66, 0x69,\n\t\t0x6c, 0x65, 0x0a,\n\t}\n}\n\nfunc in_a_test_asset() []byte {\n\treturn []byte{\n\t\t0x2f, 0x2f, 0x20, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x20, 0x66, 0x69,\n\t\t0x6c, 0x65, 0x0a,\n\t}\n}\n\nfunc in_c_test_asset() []byte {\n\treturn []byte{\n\t\t0x2f, 0x2f, 0x20, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x20, 0x66, 0x69,\n\t\t0x6c, 0x65, 0x0a,\n\t}\n}\n\n// Asset loads and returns the asset for the given name.\n// This returns nil of the asset could not be found.\nfunc Asset(name string) []byte {\n\tif f, ok := _bindata[name]; ok {\n\t\treturn f()\n\t}\n\treturn nil\n}\n\n// _bindata is a table, holding each asset generator, mapped to its name.\nvar _bindata = map[string]func() []byte{\n\t\"in/b/test.asset\": in_b_test_asset,\n\t\"in/test.asset\":   in_test_asset,\n\t\"in/a/test.asset\": in_a_test_asset,\n\t\"in/c/test.asset\": in_c_test_asset,\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/testdata/out/nocompress-nomemcopy.go",
    "content": "package main\n\nimport (\n\t\"reflect\"\n\t\"unsafe\"\n)\n\nfunc bindata_read(data, name string) []byte {\n\tvar empty [0]byte\n\tsx := (*reflect.StringHeader)(unsafe.Pointer(&data))\n\tb := empty[:]\n\tbx := (*reflect.SliceHeader)(unsafe.Pointer(&b))\n\tbx.Data = sx.Data\n\tbx.Len = len(data)\n\tbx.Cap = bx.Len\n\treturn b\n}\n\nvar _in_b_test_asset = \"\\x2f\\x2f\\x20\\x73\\x61\\x6d\\x70\\x6c\\x65\\x20\\x66\\x69\\x6c\\x65\\x0a\"\n\nfunc in_b_test_asset() []byte {\n\treturn bindata_read(\n\t\t_in_b_test_asset,\n\t\t\"in/b/test.asset\",\n\t)\n}\n\nvar _in_test_asset = \"\\x2f\\x2f\\x20\\x73\\x61\\x6d\\x70\\x6c\\x65\\x20\\x66\\x69\\x6c\\x65\\x0a\"\n\nfunc in_test_asset() []byte {\n\treturn bindata_read(\n\t\t_in_test_asset,\n\t\t\"in/test.asset\",\n\t)\n}\n\nvar _in_a_test_asset = \"\\x2f\\x2f\\x20\\x73\\x61\\x6d\\x70\\x6c\\x65\\x20\\x66\\x69\\x6c\\x65\\x0a\"\n\nfunc in_a_test_asset() []byte {\n\treturn bindata_read(\n\t\t_in_a_test_asset,\n\t\t\"in/a/test.asset\",\n\t)\n}\n\nvar _in_c_test_asset = \"\\x2f\\x2f\\x20\\x73\\x61\\x6d\\x70\\x6c\\x65\\x20\\x66\\x69\\x6c\\x65\\x0a\"\n\nfunc in_c_test_asset() []byte {\n\treturn bindata_read(\n\t\t_in_c_test_asset,\n\t\t\"in/c/test.asset\",\n\t)\n}\n\n// Asset loads and returns the asset for the given name.\n// This returns nil of the asset could not be found.\nfunc Asset(name string) []byte {\n\tif f, ok := _bindata[name]; ok {\n\t\treturn f()\n\t}\n\treturn nil\n}\n\n// _bindata is a table, holding each asset generator, mapped to its name.\nvar _bindata = map[string]func() []byte{\n\t\"in/b/test.asset\": in_b_test_asset,\n\t\"in/test.asset\":   in_test_asset,\n\t\"in/a/test.asset\": in_a_test_asset,\n\t\"in/c/test.asset\": in_c_test_asset,\n}\n"
  },
  {
    "path": "vendor/github.com/jteeuwen/go-bindata/toc.go",
    "content": "// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\n// license. Its contents can be found at:\n// http://creativecommons.org/publicdomain/zero/1.0/\n\npackage bindata\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"sort\"\n\t\"strings\"\n)\n\ntype assetTree struct {\n\tAsset    Asset\n\tChildren map[string]*assetTree\n}\n\nfunc newAssetTree() *assetTree {\n\ttree := &assetTree{}\n\ttree.Children = make(map[string]*assetTree)\n\treturn tree\n}\n\nfunc (node *assetTree) child(name string) *assetTree {\n\trv, ok := node.Children[name]\n\tif !ok {\n\t\trv = newAssetTree()\n\t\tnode.Children[name] = rv\n\t}\n\treturn rv\n}\n\nfunc (root *assetTree) Add(route []string, asset Asset) {\n\tfor _, name := range route {\n\t\troot = root.child(name)\n\t}\n\troot.Asset = asset\n}\n\nfunc ident(w io.Writer, n int) {\n\tfor i := 0; i < n; i++ {\n\t\tw.Write([]byte{'\\t'})\n\t}\n}\n\nfunc (root *assetTree) funcOrNil() string {\n\tif root.Asset.Func == \"\" {\n\t\treturn \"nil\"\n\t} else {\n\t\treturn root.Asset.Func\n\t}\n}\n\nfunc (root *assetTree) writeGoMap(w io.Writer, nident int) {\n\tfmt.Fprintf(w, \"&_bintree_t{%s, map[string]*_bintree_t{\\n\", root.funcOrNil())\n\n\t// Sort to make output stable between invocations\n\tfilenames := make([]string, len(root.Children))\n\ti := 0\n\tfor filename, _ := range root.Children {\n\t\tfilenames[i] = filename\n\t\ti++\n\t}\n\tsort.Strings(filenames)\n\n\tfor _, p := range filenames {\n\t\tident(w, nident+1)\n\t\tfmt.Fprintf(w, `\"%s\": `, p)\n\t\troot.Children[p].writeGoMap(w, nident+1)\n\t}\n\tident(w, nident)\n\tio.WriteString(w, \"}}\")\n\tif nident > 0 {\n\t\tio.WriteString(w, \",\")\n\t}\n\tio.WriteString(w, \"\\n\")\n}\n\nfunc (root *assetTree) WriteAsGoMap(w io.Writer) error {\n\t_, err := fmt.Fprint(w, `type _bintree_t struct {\n\tFunc func() ([]byte, error)\n\tChildren map[string]*_bintree_t\n}\nvar _bintree = `)\n\troot.writeGoMap(w, 0)\n\treturn err\n}\n\nfunc writeTOCTree(w io.Writer, toc []Asset) error {\n\t_, err := fmt.Fprintf(w, `// AssetDir returns the file names below a certain\n// directory embedded in the file by go-bindata.\n// For example if you run go-bindata on data/... and data contains the\n// following hierarchy:\n//     data/\n//       foo.txt\n//       img/\n//         a.png\n//         b.png\n// then AssetDir(\"data\") would return []string{\"foo.txt\", \"img\"}\n// AssetDir(\"data/img\") would return []string{\"a.png\", \"b.png\"}\n// AssetDir(\"foo.txt\") and AssetDir(\"notexist\") would return an error\n// AssetDir(\"\") will return []string{\"data\"}.\nfunc AssetDir(name string) ([]string, error) {\n\tnode := _bintree\n\tif len(name) != 0 {\n\t\tcannonicalName := strings.Replace(name, \"\\\\\", \"/\", -1)\n\t\tpathList := strings.Split(cannonicalName, \"/\")\n\t\tfor _, p := range pathList {\n\t\t\tnode = node.Children[p]\n\t\t\tif node == nil {\n\t\t\t\treturn nil, fmt.Errorf(\"Asset %%s not found\", name)\n\t\t\t}\n\t\t}\n\t}\n\tif node.Func != nil {\n\t\treturn nil, fmt.Errorf(\"Asset %%s not found\", name)\n\t}\n\trv := make([]string, 0, len(node.Children))\n\tfor name := range node.Children {\n\t\trv = append(rv, name)\n\t}\n\treturn rv, nil\n}\n\n`)\n\tif err != nil {\n\t\treturn err\n\t}\n\ttree := newAssetTree()\n\tfor i := range toc {\n\t\tpathList := strings.Split(toc[i].Name, string(os.PathSeparator))\n\t\ttree.Add(pathList, toc[i])\n\t}\n\treturn tree.WriteAsGoMap(w)\n}\n\n// writeTOC writes the table of contents file.\nfunc writeTOC(w io.Writer, toc []Asset) error {\n\terr := writeTOCHeader(w)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tfor i := range toc {\n\t\terr = writeTOCAsset(w, &toc[i])\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\treturn writeTOCFooter(w)\n}\n\n// writeTOCHeader writes the table of contents file header.\nfunc writeTOCHeader(w io.Writer) error {\n\t_, err := fmt.Fprintf(w, `// Asset loads and returns the asset for the given name.\n// It returns an error if the asset could not be found or\n// could not be loaded.\nfunc Asset(name string) ([]byte, error) {\n\tcannonicalName := strings.Replace(name, \"\\\\\", \"/\", -1)\n\tif f, ok := _bindata[cannonicalName]; ok {\n\t\treturn f()\n\t}\n\treturn nil, fmt.Errorf(\"Asset %%s not found\", name)\n}\n\n// AssetNames returns the names of the assets.\nfunc AssetNames() []string {\n\tnames := make([]string, 0, len(_bindata))\n\tfor name := range _bindata {\n\t\tnames = append(names, name)\n\t}\n\treturn names\n}\n\n// _bindata is a table, holding each asset generator, mapped to its name.\nvar _bindata = map[string]func() ([]byte, error){\n`)\n\treturn err\n}\n\n// writeTOCAsset write a TOC entry for the given asset.\nfunc writeTOCAsset(w io.Writer, asset *Asset) error {\n\t_, err := fmt.Fprintf(w, \"\\t%q: %s,\\n\", asset.Name, asset.Func)\n\treturn err\n}\n\n// writeTOCFooter writes the table of contents file footer.\nfunc writeTOCFooter(w io.Writer) error {\n\t_, err := fmt.Fprintf(w, `}\n`)\n\treturn err\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/.gitattributes",
    "content": "# make sure that .gitignore, .travis.yml,... are not part of a\n# source-package generated via 'git archive'\n.git*      \texport-ignore\n/.*\t\texport-ignore\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/.gitignore",
    "content": "Makefile\n*.o\n/config\n/configure\n/Makefile.in\n/aclocal.m4\n/autom4te.cache\n/configure\n/m4\n/doc/Makefile.in\n/tests/Makefile.in\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/.travis.yml",
    "content": "language: cpp\nsudo: false  # docker VM\nmatrix:\n  include:\n  - os: linux\n    env: HOST=\"\" API=\"alsa\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"\" API=\"alsa\"\n    compiler: clang\n  - os: linux\n    env: HOST=\"\" API=\"jack\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"\" API=\"jack\"\n    compiler: clang\n  - os: linux\n    env: HOST=\"\" API=\"pulse\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"\" API=\"pulse\"\n    compiler: clang\n  - os: linux\n    env: HOST=\"\" API=\"oss\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"\" API=\"oss\"\n    compiler: clang\n  - os: linux\n    env: HOST=\"--host=i686-w64-mingw32\" API=\"winmm\" CPPFLAGS=\"-Wno-unused-function\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"--host=x86_64-w64-mingw32\" API=\"winmm\" CPPFLAGS=\"-Wno-unused-function\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"--host=i686-w64-mingw32\" API=\"dsound\" CPPFLAGS=\"-Wno-unused-function\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"--host=x86_64-w64-mingw32\" API=\"dsound\" CPPFLAGS=\"-Wno-unused-function\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"--host=i686-w64-mingw32\" API=\"asio\" CPPFLAGS=\"-Wno-unused-function -Wno-unused-but-set-variable\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"--host=x86_64-w64-mingw32\" API=\"asio\" CPPFLAGS=\"-Wno-unused-function -Wno-unused-but-set-variable\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"--host=i686-w64-mingw32\" API=\"wasapi\" CPPFLAGS=\"-Wno-unused-function\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"--host=x86_64-w64-mingw32\" API=\"wasapi\" CPPFLAGS=\"-Wno-unused-function\"\n    compiler: gcc\n  # jack and asound not found on ARM gnueabihf\n  # - os: linux\n  #   env: HOST=\"--host=arm-linux-gnueabihf\" API=\"alsa\"\n  #   compiler: gcc\n  # - os: linux\n  #   env: HOST=\"--host=arm-linux-gnueabihf\" API=\"jack\"\n  #   compiler: gcc\n  - os: osx\n    env: HOST=\"\" API=\"core\"\n    compiler: gcc\n  - os: osx\n    env: HOST=\"\" API=\"core\"\n    compiler: clang\ninstall:\n- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get install libasound2-dev libjack-dev libpulse-dev doxygen g++-mingw-w64-i686 g++-mingw-w64-x86-64 g++-arm-linux-gnueabihf oss4-dev; fi\n- if [ $TRAVIS_OS_NAME = osx ]; then brew install doxygen || (brew update && brew install doxygen); fi\n- if [ -n \"$HOST\" ]; then unset CXX; unset CC; fi\nscript: ./autogen.sh --enable-debug --with-$API $HOST && make\nafter_script:\n- make check\n- make distcheck\n- make install\n# ALSA: no access to /dev/snd/seq\n# JACK: Jack server not running\n# - tests/midiprobe\nnotifications:\n  email:\n    recipients:\n      - radarsat1@gmail.com\n    on_success: never\n    on_failure: change\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 2.8.10)\nproject(RtAudio)\n\ninclude(CTest)\ninclude(CheckFunctionExists)\n\noption(BUILD_PYTHON \"Build PyRtAudio python bindings\" OFF)\noption(AUDIO_WINDOWS_DS \"Build Windows DirectSound API\" OFF)\noption(AUDIO_WINDOWS_ASIO \"Build Windows ASIO API\" OFF)\noption(AUDIO_WINDOWS_WASAPI \"Build Windows WASAPI API\" OFF)\noption(AUDIO_LINUX_OSS \"Build Linux OSS API\" OFF)\noption(AUDIO_LINUX_ALSA \"Build Linux ALSA API\" OFF)\noption(AUDIO_LINUX_PULSE \"Build Linux PulseAudio API\" OFF)\noption(AUDIO_UNIX_JACK \"Build Unix JACK audio server API\" OFF)\noption(AUDIO_OSX_CORE \"Build Mac OSX CoreAudio API\" OFF)\n\nif (CMAKE_BUILD_TYPE STREQUAL \"Debug\")\n    add_definitions(-D__RTAUDIO_DEBUG__)\nendif ()\n\ncheck_function_exists(gettimeofday HAVE_GETTIMEOFDAY)\n\nif (HAVE_GETTIMEOFDAY)\n    add_definitions(-DHAVE_GETTIMEOFDAY)\nendif ()\n\nif (CMAKE_COMPILER_IS_GNUCXX)\n    set(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} -Wall\")\nendif (CMAKE_COMPILER_IS_GNUCXX)\n\nset(rtaudio_SOURCES RtAudio.cpp rtaudio_c.cpp)\n\nset(LINKLIBS)\nif (CMAKE_SYSTEM_NAME MATCHES \"kNetBSD.*|NetBSD.*\")\n    message(STATUS \"NetBSD detected, using OSS\")\n    find_package(Threads REQUIRED CMAKE_THREAD_PREFER_PTHREAD)\n    list(APPEND LINKLIBS ossaudio ${CMAKE_THREAD_LIBS_INIT})\n    set(AUDIO_LINUX_OSS ON)\nelseif (UNIX AND NOT APPLE)\n    if (NOT AUDIO_LINUX_PULSE AND NOT AUDIO_LINUX_ALSA AND NOT AUDIO_LINUX_OSS AND NOT AUDIO_UNIX_JACK)\n        set(AUDIO_LINUX_ALSA ON)\n    endif()\n\n    if (AUDIO_LINUX_PULSE)\n        find_library(PULSE_LIB pulse)\n        find_library(PULSESIMPLE_LIB pulse-simple)\n        find_package(Threads REQUIRED CMAKE_THREAD_PREFER_PTHREAD)\n        list(APPEND LINKLIBS ${PULSE_LIB} ${PULSESIMPLE_LIB} ${CMAKE_THREAD_LIBS_INIT})\n        add_definitions(-D__LINUX_PULSE__)\n        message(STATUS \"Using Linux PulseAudio\")\n    endif (AUDIO_LINUX_PULSE)\n    if (AUDIO_LINUX_ALSA)\n        find_package(ALSA)\n        find_package(Threads REQUIRED CMAKE_THREAD_PREFER_PTHREAD)\n        if (NOT ALSA_FOUND)\n            message(FATAL_ERROR \"ALSA API requested but no ALSA dev libraries found\")\n        endif()\n        include_directories(${ALSA_INCLUDE_DIR})\n        list(APPEND LINKLIBS ${ALSA_LIBRARY} ${CMAKE_THREAD_LIBS_INIT})\n        add_definitions(-D__LINUX_ALSA__)\n        message(STATUS \"Using Linux ALSA\")\n    endif (AUDIO_LINUX_ALSA)\nendif ()\n\nif (APPLE)\n    if (NOT AUDIO_OSX_CORE AND NOT AUDIO_UNIX_JACK)\n        set(AUDIO_OSX_CORE ON)\n    endif()\n\n    if (AUDIO_OSX_CORE)\n        find_library(COREAUDIO_LIB CoreAudio)\n        find_library(COREFOUNDATION_LIB CoreFoundation)\n        list(APPEND LINKLIBS ${COREAUDIO_LIB} ${COREFOUNDATION_LIB})\n        add_definitions(-D__MACOSX_CORE__)\n        message(STATUS \"Using OSX CoreAudio\")\n    endif (AUDIO_OSX_CORE)\nendif (APPLE)\n\n# JACK supported on many Unices\nif (UNIX)\n    if (AUDIO_UNIX_JACK)\n        find_library(JACK_LIB jack)\n        list(APPEND LINKLIBS ${JACK_LIB})\n        add_definitions(-D__UNIX_JACK__)\n        message(STATUS \"Using JACK\")\n    endif (AUDIO_UNIX_JACK)\nendif (UNIX)\n\nif (WIN32)\n    if (NOT AUDIO_WINDOWS_DS AND NOT AUDIO_WINDOWS_ASIO AND NOT AUDIO_WINDOWS_WASAPI)\n        set(AUDIO_WINDOWS_WASAPI ON)\n    endif()\n\n    include_directories(include)\n    list(APPEND LINKLIBS winmm ole32)\n\n    if (AUDIO_WINDOWS_DS)\n        add_definitions(-D__WINDOWS_DS__)\n        message(STATUS \"Using Windows DirectSound\")\n        list(APPEND LINKLIBS dsound)\n    endif (AUDIO_WINDOWS_DS)\n    if (AUDIO_WINDOWS_WASAPI)\n        add_definitions(-D__WINDOWS_WASAPI__)\n        message(STATUS \"Using Windows WASAPI\")\n        list(APPEND LINKLIBS uuid ksuser)\n    endif (AUDIO_WINDOWS_WASAPI)\n    if (AUDIO_WINDOWS_ASIO)\n        list(APPEND rtaudio_SOURCES\n            include/asio.cpp\n            include/asiodrivers.cpp\n            include/asiolist.cpp\n            include/iasiothiscallresolver.cpp)\n        add_definitions(-D__WINDOWS_ASIO__)\n        message(STATUS \"Using Windows ASIO\")\n    endif (AUDIO_WINDOWS_ASIO)\nendif (WIN32)\n\ncmake_policy(SET CMP0042 OLD)\nadd_library(rtaudio SHARED ${rtaudio_SOURCES})\nadd_library(rtaudio_static STATIC ${rtaudio_SOURCES})\n\ntarget_link_libraries(rtaudio ${LINKLIBS})\n\nif (BUILD_TESTING)\n    add_subdirectory(tests)\nendif (BUILD_TESTING)\n\nconfigure_file(\"rtaudio.pc.in\" \"rtaudio.pc\" @ONLY)\n\ninstall(TARGETS rtaudio\n      LIBRARY DESTINATION lib\n      ARCHIVE DESTINATION lib\n      RUNTIME DESTINATION bin)\n\ninstall(\n    FILES RtAudio.h\n    DESTINATION include)\n\ninstall(\n    FILES ${CMAKE_CURRENT_BINARY_DIR}/rtaudio.pc\n    DESTINATION lib/pkgconfig)\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/Makefile.am",
    "content": "SUBDIRS = . tests\nif MAKE_DOC\nSUBDIRS += doc\nendif\n\nAM_CXXFLAGS = @visibility@\n\nlib_LTLIBRARIES = %D%/librtaudio.la\n%C%_librtaudio_la_LDFLAGS = -no-undefined -export-dynamic -version-info @SO_VERSION@\n%C%_librtaudio_la_SOURCES = \\\n  %D%/RtAudio.cpp \\\n  %D%/rtaudio_c.cpp\n\nif ASIO\n%C%_librtaudio_la_SOURCES += \\\n\tinclude/asio.cpp \\\n\tinclude/asiodrivers.cpp \\\n\tinclude/asiolist.cpp \\\n\tinclude/iasiothiscallresolver.cpp\nendif\n\nrtaudio_incdir = $(includedir)/rtaudio\nrtaudio_inc_HEADERS = \\\n  %D%/RtAudio.h \\\n  %D%/rtaudio_c.h\n\npkgconfigdatadir = $(libdir)/pkgconfig\npkgconfigdata_DATA = rtaudio.pc\n\nEXTRA_DIST = autogen.sh readme install.txt contrib include\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/README.md",
    "content": "# RtAudio\n\n[![Build Status](https://travis-ci.org/thestk/rtaudio.svg?branch=master)](https://travis-ci.org/thestk/rtaudio)\n\nA set of C++ classes that provide a common API for realtime audio input/output across Linux (native ALSA, JACK, PulseAudio and OSS), Macintosh OS X (CoreAudio and JACK), and Windows (DirectSound, ASIO and WASAPI) operating systems.\n\nBy Gary P. Scavone, 2001-2017 (and many other developers!)\n\nThis distribution of RtAudio contains the following:\n\n- doc:      RtAudio documentation (see doc/html/index.html)\n- tests:    example RtAudio programs\n- include:  header and source files necessary for ASIO, DS & OSS compilation\n- tests/Windows: Visual C++ .net test program workspace and projects\n\n## Overview\n\nRtAudio is a set of C++ classes that provides a common API (Application Programming Interface) for realtime audio input/output across Linux (native ALSA, JACK, PulseAudio and OSS), Macintosh OS X and Windows (DirectSound, ASIO and WASAPI) operating systems.  RtAudio significantly simplifies the process of interacting with computer audio hardware.  It was designed with the following objectives:\n\n  - object-oriented C++ design\n  - simple, common API across all supported platforms\n  - only one source and one header file for easy inclusion in programming projects\n  - allow simultaneous multi-api support\n  - support dynamic connection of devices\n  - provide extensive audio device parameter control\n  - allow audio device capability probing\n  - automatic internal conversion for data format, channel number compensation, (de)interleaving, and byte-swapping\n\nRtAudio incorporates the concept of audio streams, which represent audio output (playback) and/or input (recording).  Available audio devices and their capabilities can be enumerated and then specified when opening a stream.  Where applicable, multiple API support can be compiled and a particular API specified when creating an RtAudio instance.  See the \\ref apinotes section for information specific to each of the supported audio APIs.\n\n## Further Reading\n\nFor complete documentation on RtAudio, see the doc directory of the distribution or surf to http://www.music.mcgill.ca/~gary/rtaudio/.\n\n\n## Legal and ethical:\n\nThe RtAudio license is similar to the MIT License.\n\n    RtAudio: a set of realtime audio i/o C++ classes\n    Copyright (c) 2001-2017 Gary P. Scavone\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation files\n    (the \"Software\"), to deal in the Software without restriction,\n    including without limitation the rights to use, copy, modify, merge,\n    publish, distribute, sublicense, and/or sell copies of the Software,\n    and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    Any person wishing to distribute modifications to the Software is\n    asked to send the modifications to the original developer so that\n    they can be incorporated into the canonical version.  This is,\n    however, not a binding provision of this license.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\n    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\n    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/RtAudio.cpp",
    "content": "﻿/************************************************************************/\n/*! \\class RtAudio\n    \\brief Realtime audio i/o C++ classes.\n\n    RtAudio provides a common API (Application Programming Interface)\n    for realtime audio input/output across Linux (native ALSA, Jack,\n    and OSS), Macintosh OS X (CoreAudio and Jack), and Windows\n    (DirectSound, ASIO and WASAPI) operating systems.\n\n    RtAudio WWW site: http://www.music.mcgill.ca/~gary/rtaudio/\n\n    RtAudio: realtime audio i/o C++ classes\n    Copyright (c) 2001-2017 Gary P. Scavone\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation files\n    (the \"Software\"), to deal in the Software without restriction,\n    including without limitation the rights to use, copy, modify, merge,\n    publish, distribute, sublicense, and/or sell copies of the Software,\n    and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    Any person wishing to distribute modifications to the Software is\n    asked to send the modifications to the original developer so that\n    they can be incorporated into the canonical version.  This is,\n    however, not a binding provision of this license.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\n    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\n    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n/************************************************************************/\n\n// RtAudio: Version 5.0.0\n\n#include \"RtAudio.h\"\n#include <iostream>\n#include <cstdlib>\n#include <cstring>\n#include <climits>\n#include <cmath>\n#include <algorithm>\n\n// Static variable definitions.\nconst unsigned int RtApi::MAX_SAMPLE_RATES = 14;\nconst unsigned int RtApi::SAMPLE_RATES[] = {\n  4000, 5512, 8000, 9600, 11025, 16000, 22050,\n  32000, 44100, 48000, 88200, 96000, 176400, 192000\n};\n\n#if defined(__WINDOWS_DS__) || defined(__WINDOWS_ASIO__) || defined(__WINDOWS_WASAPI__)\n  #define MUTEX_INITIALIZE(A) InitializeCriticalSection(A)\n  #define MUTEX_DESTROY(A)    DeleteCriticalSection(A)\n  #define MUTEX_LOCK(A)       EnterCriticalSection(A)\n  #define MUTEX_UNLOCK(A)     LeaveCriticalSection(A)\n\n  #include \"tchar.h\"\n\n  static std::string convertCharPointerToStdString(const char *text)\n  {\n    return std::string(text);\n  }\n\n  static std::string convertCharPointerToStdString(const wchar_t *text)\n  {\n    int length = WideCharToMultiByte(CP_UTF8, 0, text, -1, NULL, 0, NULL, NULL);\n    std::string s( length-1, '\\0' );\n    WideCharToMultiByte(CP_UTF8, 0, text, -1, &s[0], length, NULL, NULL);\n    return s;\n  }\n\n#elif defined(__LINUX_ALSA__) || defined(__LINUX_PULSE__) || defined(__UNIX_JACK__) || defined(__LINUX_OSS__) || defined(__MACOSX_CORE__)\n  // pthread API\n  #define MUTEX_INITIALIZE(A) pthread_mutex_init(A, NULL)\n  #define MUTEX_DESTROY(A)    pthread_mutex_destroy(A)\n  #define MUTEX_LOCK(A)       pthread_mutex_lock(A)\n  #define MUTEX_UNLOCK(A)     pthread_mutex_unlock(A)\n#else\n  #define MUTEX_INITIALIZE(A) abs(*A) // dummy definitions\n  #define MUTEX_DESTROY(A)    abs(*A) // dummy definitions\n#endif\n\n// *************************************************** //\n//\n// RtAudio definitions.\n//\n// *************************************************** //\n\nstd::string RtAudio :: getVersion( void )\n{\n  return RTAUDIO_VERSION;\n}\n\nvoid RtAudio :: getCompiledApi( std::vector<RtAudio::Api> &apis )\n{\n  apis.clear();\n\n  // The order here will control the order of RtAudio's API search in\n  // the constructor.\n#if defined(__UNIX_JACK__)\n  apis.push_back( UNIX_JACK );\n#endif\n#if defined(__LINUX_ALSA__)\n  apis.push_back( LINUX_ALSA );\n#endif\n#if defined(__LINUX_PULSE__)\n  apis.push_back( LINUX_PULSE );\n#endif\n#if defined(__LINUX_OSS__)\n  apis.push_back( LINUX_OSS );\n#endif\n#if defined(__WINDOWS_ASIO__)\n  apis.push_back( WINDOWS_ASIO );\n#endif\n#if defined(__WINDOWS_WASAPI__)\n  apis.push_back( WINDOWS_WASAPI );\n#endif\n#if defined(__WINDOWS_DS__)\n  apis.push_back( WINDOWS_DS );\n#endif\n#if defined(__MACOSX_CORE__)\n  apis.push_back( MACOSX_CORE );\n#endif\n#if defined(__RTAUDIO_DUMMY__)\n  apis.push_back( RTAUDIO_DUMMY );\n#endif\n}\n\nvoid RtAudio :: openRtApi( RtAudio::Api api )\n{\n  if ( rtapi_ )\n    delete rtapi_;\n  rtapi_ = 0;\n\n#if defined(__UNIX_JACK__)\n  if ( api == UNIX_JACK )\n    rtapi_ = new RtApiJack();\n#endif\n#if defined(__LINUX_ALSA__)\n  if ( api == LINUX_ALSA )\n    rtapi_ = new RtApiAlsa();\n#endif\n#if defined(__LINUX_PULSE__)\n  if ( api == LINUX_PULSE )\n    rtapi_ = new RtApiPulse();\n#endif\n#if defined(__LINUX_OSS__)\n  if ( api == LINUX_OSS )\n    rtapi_ = new RtApiOss();\n#endif\n#if defined(__WINDOWS_ASIO__)\n  if ( api == WINDOWS_ASIO )\n    rtapi_ = new RtApiAsio();\n#endif\n#if defined(__WINDOWS_WASAPI__)\n  if ( api == WINDOWS_WASAPI )\n    rtapi_ = new RtApiWasapi();\n#endif\n#if defined(__WINDOWS_DS__)\n  if ( api == WINDOWS_DS )\n    rtapi_ = new RtApiDs();\n#endif\n#if defined(__MACOSX_CORE__)\n  if ( api == MACOSX_CORE )\n    rtapi_ = new RtApiCore();\n#endif\n#if defined(__RTAUDIO_DUMMY__)\n  if ( api == RTAUDIO_DUMMY )\n    rtapi_ = new RtApiDummy();\n#endif\n}\n\nRtAudio :: RtAudio( RtAudio::Api api )\n{\n  rtapi_ = 0;\n\n  if ( api != UNSPECIFIED ) {\n    // Attempt to open the specified API.\n    openRtApi( api );\n    if ( rtapi_ ) return;\n\n    // No compiled support for specified API value.  Issue a debug\n    // warning and continue as if no API was specified.\n    std::cerr << \"\\nRtAudio: no compiled support for specified API argument!\\n\" << std::endl;\n  }\n\n  // Iterate through the compiled APIs and return as soon as we find\n  // one with at least one device or we reach the end of the list.\n  std::vector< RtAudio::Api > apis;\n  getCompiledApi( apis );\n  for ( unsigned int i=0; i<apis.size(); i++ ) {\n    openRtApi( apis[i] );\n    if ( rtapi_ && rtapi_->getDeviceCount() ) break;\n  }\n\n  if ( rtapi_ ) return;\n\n  // It should not be possible to get here because the preprocessor\n  // definition __RTAUDIO_DUMMY__ is automatically defined if no\n  // API-specific definitions are passed to the compiler. But just in\n  // case something weird happens, we'll thow an error.\n  std::string errorText = \"\\nRtAudio: no compiled API support found ... critical error!!\\n\\n\";\n  throw( RtAudioError( errorText, RtAudioError::UNSPECIFIED ) );\n}\n\nRtAudio :: ~RtAudio()\n{\n  if ( rtapi_ )\n    delete rtapi_;\n}\n\nvoid RtAudio :: openStream( RtAudio::StreamParameters *outputParameters,\n                            RtAudio::StreamParameters *inputParameters,\n                            RtAudioFormat format, unsigned int sampleRate,\n                            unsigned int *bufferFrames,\n                            RtAudioCallback callback, void *userData,\n                            RtAudio::StreamOptions *options,\n                            RtAudioErrorCallback errorCallback )\n{\n  return rtapi_->openStream( outputParameters, inputParameters, format,\n                             sampleRate, bufferFrames, callback,\n                             userData, options, errorCallback );\n}\n\n// *************************************************** //\n//\n// Public RtApi definitions (see end of file for\n// private or protected utility functions).\n//\n// *************************************************** //\n\nRtApi :: RtApi()\n{\n  stream_.state = STREAM_CLOSED;\n  stream_.mode = UNINITIALIZED;\n  stream_.apiHandle = 0;\n  stream_.userBuffer[0] = 0;\n  stream_.userBuffer[1] = 0;\n  MUTEX_INITIALIZE( &stream_.mutex );\n  showWarnings_ = true;\n  firstErrorOccurred_ = false;\n}\n\nRtApi :: ~RtApi()\n{\n  MUTEX_DESTROY( &stream_.mutex );\n}\n\nvoid RtApi :: openStream( RtAudio::StreamParameters *oParams,\n                          RtAudio::StreamParameters *iParams,\n                          RtAudioFormat format, unsigned int sampleRate,\n                          unsigned int *bufferFrames,\n                          RtAudioCallback callback, void *userData,\n                          RtAudio::StreamOptions *options,\n                          RtAudioErrorCallback errorCallback )\n{\n  if ( stream_.state != STREAM_CLOSED ) {\n    errorText_ = \"RtApi::openStream: a stream is already open!\";\n    error( RtAudioError::INVALID_USE );\n    return;\n  }\n\n  // Clear stream information potentially left from a previously open stream.\n  clearStreamInfo();\n\n  if ( oParams && oParams->nChannels < 1 ) {\n    errorText_ = \"RtApi::openStream: a non-NULL output StreamParameters structure cannot have an nChannels value less than one.\";\n    error( RtAudioError::INVALID_USE );\n    return;\n  }\n\n  if ( iParams && iParams->nChannels < 1 ) {\n    errorText_ = \"RtApi::openStream: a non-NULL input StreamParameters structure cannot have an nChannels value less than one.\";\n    error( RtAudioError::INVALID_USE );\n    return;\n  }\n\n  if ( oParams == NULL && iParams == NULL ) {\n    errorText_ = \"RtApi::openStream: input and output StreamParameters structures are both NULL!\";\n    error( RtAudioError::INVALID_USE );\n    return;\n  }\n\n  if ( formatBytes(format) == 0 ) {\n    errorText_ = \"RtApi::openStream: 'format' parameter value is undefined.\";\n    error( RtAudioError::INVALID_USE );\n    return;\n  }\n\n  unsigned int nDevices = getDeviceCount();\n  unsigned int oChannels = 0;\n  if ( oParams ) {\n    oChannels = oParams->nChannels;\n    if ( oParams->deviceId >= nDevices ) {\n      errorText_ = \"RtApi::openStream: output device parameter value is invalid.\";\n      error( RtAudioError::INVALID_USE );\n      return;\n    }\n  }\n\n  unsigned int iChannels = 0;\n  if ( iParams ) {\n    iChannels = iParams->nChannels;\n    if ( iParams->deviceId >= nDevices ) {\n      errorText_ = \"RtApi::openStream: input device parameter value is invalid.\";\n      error( RtAudioError::INVALID_USE );\n      return;\n    }\n  }\n\n  bool result;\n\n  if ( oChannels > 0 ) {\n\n    result = probeDeviceOpen( oParams->deviceId, OUTPUT, oChannels, oParams->firstChannel,\n                              sampleRate, format, bufferFrames, options );\n    if ( result == false ) {\n      error( RtAudioError::SYSTEM_ERROR );\n      return;\n    }\n  }\n\n  if ( iChannels > 0 ) {\n\n    result = probeDeviceOpen( iParams->deviceId, INPUT, iChannels, iParams->firstChannel,\n                              sampleRate, format, bufferFrames, options );\n    if ( result == false ) {\n      if ( oChannels > 0 ) closeStream();\n      error( RtAudioError::SYSTEM_ERROR );\n      return;\n    }\n  }\n\n  stream_.callbackInfo.callback = (void *) callback;\n  stream_.callbackInfo.userData = userData;\n  stream_.callbackInfo.errorCallback = (void *) errorCallback;\n\n  if ( options ) options->numberOfBuffers = stream_.nBuffers;\n  stream_.state = STREAM_STOPPED;\n}\n\nunsigned int RtApi :: getDefaultInputDevice( void )\n{\n  // Should be implemented in subclasses if possible.\n  return 0;\n}\n\nunsigned int RtApi :: getDefaultOutputDevice( void )\n{\n  // Should be implemented in subclasses if possible.\n  return 0;\n}\n\nvoid RtApi :: closeStream( void )\n{\n  // MUST be implemented in subclasses!\n  return;\n}\n\nbool RtApi :: probeDeviceOpen( unsigned int /*device*/, StreamMode /*mode*/, unsigned int /*channels*/,\n                               unsigned int /*firstChannel*/, unsigned int /*sampleRate*/,\n                               RtAudioFormat /*format*/, unsigned int * /*bufferSize*/,\n                               RtAudio::StreamOptions * /*options*/ )\n{\n  // MUST be implemented in subclasses!\n  return FAILURE;\n}\n\nvoid RtApi :: tickStreamTime( void )\n{\n  // Subclasses that do not provide their own implementation of\n  // getStreamTime should call this function once per buffer I/O to\n  // provide basic stream time support.\n\n  stream_.streamTime += ( stream_.bufferSize * 1.0 / stream_.sampleRate );\n\n#if defined( HAVE_GETTIMEOFDAY )\n  gettimeofday( &stream_.lastTickTimestamp, NULL );\n#endif\n}\n\nlong RtApi :: getStreamLatency( void )\n{\n  verifyStream();\n\n  long totalLatency = 0;\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX )\n    totalLatency = stream_.latency[0];\n  if ( stream_.mode == INPUT || stream_.mode == DUPLEX )\n    totalLatency += stream_.latency[1];\n\n  return totalLatency;\n}\n\ndouble RtApi :: getStreamTime( void )\n{\n  verifyStream();\n\n#if defined( HAVE_GETTIMEOFDAY )\n  // Return a very accurate estimate of the stream time by\n  // adding in the elapsed time since the last tick.\n  struct timeval then;\n  struct timeval now;\n\n  if ( stream_.state != STREAM_RUNNING || stream_.streamTime == 0.0 )\n    return stream_.streamTime;\n\n  gettimeofday( &now, NULL );\n  then = stream_.lastTickTimestamp;\n  return stream_.streamTime +\n    ((now.tv_sec + 0.000001 * now.tv_usec) -\n     (then.tv_sec + 0.000001 * then.tv_usec));     \n#else\n  return stream_.streamTime;\n#endif\n}\n\nvoid RtApi :: setStreamTime( double time )\n{\n  verifyStream();\n\n  if ( time >= 0.0 )\n    stream_.streamTime = time;\n#if defined( HAVE_GETTIMEOFDAY )\n  gettimeofday( &stream_.lastTickTimestamp, NULL );\n#endif\n}\n\nunsigned int RtApi :: getStreamSampleRate( void )\n{\n verifyStream();\n\n return stream_.sampleRate;\n}\n\n\n// *************************************************** //\n//\n// OS/API-specific methods.\n//\n// *************************************************** //\n\n#if defined(__MACOSX_CORE__)\n\n// The OS X CoreAudio API is designed to use a separate callback\n// procedure for each of its audio devices.  A single RtAudio duplex\n// stream using two different devices is supported here, though it\n// cannot be guaranteed to always behave correctly because we cannot\n// synchronize these two callbacks.\n//\n// A property listener is installed for over/underrun information.\n// However, no functionality is currently provided to allow property\n// listeners to trigger user handlers because it is unclear what could\n// be done if a critical stream parameter (buffer size, sample rate,\n// device disconnect) notification arrived.  The listeners entail\n// quite a bit of extra code and most likely, a user program wouldn't\n// be prepared for the result anyway.  However, we do provide a flag\n// to the client callback function to inform of an over/underrun.\n\n// A structure to hold various information related to the CoreAudio API\n// implementation.\nstruct CoreHandle {\n  AudioDeviceID id[2];    // device ids\n#if defined( MAC_OS_X_VERSION_10_5 ) && ( MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 )\n  AudioDeviceIOProcID procId[2];\n#endif\n  UInt32 iStream[2];      // device stream index (or first if using multiple)\n  UInt32 nStreams[2];     // number of streams to use\n  bool xrun[2];\n  char *deviceBuffer;\n  pthread_cond_t condition;\n  int drainCounter;       // Tracks callback counts when draining\n  bool internalDrain;     // Indicates if stop is initiated from callback or not.\n\n  CoreHandle()\n    :deviceBuffer(0), drainCounter(0), internalDrain(false) { nStreams[0] = 1; nStreams[1] = 1; id[0] = 0; id[1] = 0; xrun[0] = false; xrun[1] = false; }\n};\n\nRtApiCore:: RtApiCore()\n{\n#if defined( AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER )\n  // This is a largely undocumented but absolutely necessary\n  // requirement starting with OS-X 10.6.  If not called, queries and\n  // updates to various audio device properties are not handled\n  // correctly.\n  CFRunLoopRef theRunLoop = NULL;\n  AudioObjectPropertyAddress property = { kAudioHardwarePropertyRunLoop,\n                                          kAudioObjectPropertyScopeGlobal,\n                                          kAudioObjectPropertyElementMaster };\n  OSStatus result = AudioObjectSetPropertyData( kAudioObjectSystemObject, &property, 0, NULL, sizeof(CFRunLoopRef), &theRunLoop);\n  if ( result != noErr ) {\n    errorText_ = \"RtApiCore::RtApiCore: error setting run loop property!\";\n    error( RtAudioError::WARNING );\n  }\n#endif\n}\n\nRtApiCore :: ~RtApiCore()\n{\n  // The subclass destructor gets called before the base class\n  // destructor, so close an existing stream before deallocating\n  // apiDeviceId memory.\n  if ( stream_.state != STREAM_CLOSED ) closeStream();\n}\n\nunsigned int RtApiCore :: getDeviceCount( void )\n{\n  // Find out how many audio devices there are, if any.\n  UInt32 dataSize;\n  AudioObjectPropertyAddress propertyAddress = { kAudioHardwarePropertyDevices, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster };\n  OSStatus result = AudioObjectGetPropertyDataSize( kAudioObjectSystemObject, &propertyAddress, 0, NULL, &dataSize );\n  if ( result != noErr ) {\n    errorText_ = \"RtApiCore::getDeviceCount: OS-X error getting device info!\";\n    error( RtAudioError::WARNING );\n    return 0;\n  }\n\n  return dataSize / sizeof( AudioDeviceID );\n}\n\nunsigned int RtApiCore :: getDefaultInputDevice( void )\n{\n  unsigned int nDevices = getDeviceCount();\n  if ( nDevices <= 1 ) return 0;\n\n  AudioDeviceID id;\n  UInt32 dataSize = sizeof( AudioDeviceID );\n  AudioObjectPropertyAddress property = { kAudioHardwarePropertyDefaultInputDevice, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster };\n  OSStatus result = AudioObjectGetPropertyData( kAudioObjectSystemObject, &property, 0, NULL, &dataSize, &id );\n  if ( result != noErr ) {\n    errorText_ = \"RtApiCore::getDefaultInputDevice: OS-X system error getting device.\";\n    error( RtAudioError::WARNING );\n    return 0;\n  }\n\n  dataSize *= nDevices;\n  AudioDeviceID deviceList[ nDevices ];\n  property.mSelector = kAudioHardwarePropertyDevices;\n  result = AudioObjectGetPropertyData( kAudioObjectSystemObject, &property, 0, NULL, &dataSize, (void *) &deviceList );\n  if ( result != noErr ) {\n    errorText_ = \"RtApiCore::getDefaultInputDevice: OS-X system error getting device IDs.\";\n    error( RtAudioError::WARNING );\n    return 0;\n  }\n\n  for ( unsigned int i=0; i<nDevices; i++ )\n    if ( id == deviceList[i] ) return i;\n\n  errorText_ = \"RtApiCore::getDefaultInputDevice: No default device found!\";\n  error( RtAudioError::WARNING );\n  return 0;\n}\n\nunsigned int RtApiCore :: getDefaultOutputDevice( void )\n{\n  unsigned int nDevices = getDeviceCount();\n  if ( nDevices <= 1 ) return 0;\n\n  AudioDeviceID id;\n  UInt32 dataSize = sizeof( AudioDeviceID );\n  AudioObjectPropertyAddress property = { kAudioHardwarePropertyDefaultOutputDevice, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster };\n  OSStatus result = AudioObjectGetPropertyData( kAudioObjectSystemObject, &property, 0, NULL, &dataSize, &id );\n  if ( result != noErr ) {\n    errorText_ = \"RtApiCore::getDefaultOutputDevice: OS-X system error getting device.\";\n    error( RtAudioError::WARNING );\n    return 0;\n  }\n\n  dataSize = sizeof( AudioDeviceID ) * nDevices;\n  AudioDeviceID deviceList[ nDevices ];\n  property.mSelector = kAudioHardwarePropertyDevices;\n  result = AudioObjectGetPropertyData( kAudioObjectSystemObject, &property, 0, NULL, &dataSize, (void *) &deviceList );\n  if ( result != noErr ) {\n    errorText_ = \"RtApiCore::getDefaultOutputDevice: OS-X system error getting device IDs.\";\n    error( RtAudioError::WARNING );\n    return 0;\n  }\n\n  for ( unsigned int i=0; i<nDevices; i++ )\n    if ( id == deviceList[i] ) return i;\n\n  errorText_ = \"RtApiCore::getDefaultOutputDevice: No default device found!\";\n  error( RtAudioError::WARNING );\n  return 0;\n}\n\nRtAudio::DeviceInfo RtApiCore :: getDeviceInfo( unsigned int device )\n{\n  RtAudio::DeviceInfo info;\n  info.probed = false;\n\n  // Get device ID\n  unsigned int nDevices = getDeviceCount();\n  if ( nDevices == 0 ) {\n    errorText_ = \"RtApiCore::getDeviceInfo: no devices found!\";\n    error( RtAudioError::INVALID_USE );\n    return info;\n  }\n\n  if ( device >= nDevices ) {\n    errorText_ = \"RtApiCore::getDeviceInfo: device ID is invalid!\";\n    error( RtAudioError::INVALID_USE );\n    return info;\n  }\n\n  AudioDeviceID deviceList[ nDevices ];\n  UInt32 dataSize = sizeof( AudioDeviceID ) * nDevices;\n  AudioObjectPropertyAddress property = { kAudioHardwarePropertyDevices,\n                                          kAudioObjectPropertyScopeGlobal,\n                                          kAudioObjectPropertyElementMaster };\n  OSStatus result = AudioObjectGetPropertyData( kAudioObjectSystemObject, &property,\n                                                0, NULL, &dataSize, (void *) &deviceList );\n  if ( result != noErr ) {\n    errorText_ = \"RtApiCore::getDeviceInfo: OS-X system error getting device IDs.\";\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  AudioDeviceID id = deviceList[ device ];\n\n  // Get the device name.\n  info.name.erase();\n  CFStringRef cfname;\n  dataSize = sizeof( CFStringRef );\n  property.mSelector = kAudioObjectPropertyManufacturer;\n  result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &cfname );\n  if ( result != noErr ) {\n    errorStream_ << \"RtApiCore::probeDeviceInfo: system error (\" << getErrorCode( result ) << \") getting device manufacturer.\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  //const char *mname = CFStringGetCStringPtr( cfname, CFStringGetSystemEncoding() );\n  int length = CFStringGetLength(cfname);\n  char *mname = (char *)malloc(length * 3 + 1);\n#if defined( UNICODE ) || defined( _UNICODE )\n  CFStringGetCString(cfname, mname, length * 3 + 1, kCFStringEncodingUTF8);\n#else\n  CFStringGetCString(cfname, mname, length * 3 + 1, CFStringGetSystemEncoding());\n#endif\n  info.name.append( (const char *)mname, strlen(mname) );\n  info.name.append( \": \" );\n  CFRelease( cfname );\n  free(mname);\n\n  property.mSelector = kAudioObjectPropertyName;\n  result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &cfname );\n  if ( result != noErr ) {\n    errorStream_ << \"RtApiCore::probeDeviceInfo: system error (\" << getErrorCode( result ) << \") getting device name.\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  //const char *name = CFStringGetCStringPtr( cfname, CFStringGetSystemEncoding() );\n  length = CFStringGetLength(cfname);\n  char *name = (char *)malloc(length * 3 + 1);\n#if defined( UNICODE ) || defined( _UNICODE )\n  CFStringGetCString(cfname, name, length * 3 + 1, kCFStringEncodingUTF8);\n#else\n  CFStringGetCString(cfname, name, length * 3 + 1, CFStringGetSystemEncoding());\n#endif\n  info.name.append( (const char *)name, strlen(name) );\n  CFRelease( cfname );\n  free(name);\n\n  // Get the output stream \"configuration\".\n  AudioBufferList\t*bufferList = nil;\n  property.mSelector = kAudioDevicePropertyStreamConfiguration;\n  property.mScope = kAudioDevicePropertyScopeOutput;\n  //  property.mElement = kAudioObjectPropertyElementWildcard;\n  dataSize = 0;\n  result = AudioObjectGetPropertyDataSize( id, &property, 0, NULL, &dataSize );\n  if ( result != noErr || dataSize == 0 ) {\n    errorStream_ << \"RtApiCore::getDeviceInfo: system error (\" << getErrorCode( result ) << \") getting output stream configuration info for device (\" << device << \").\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // Allocate the AudioBufferList.\n  bufferList = (AudioBufferList *) malloc( dataSize );\n  if ( bufferList == NULL ) {\n    errorText_ = \"RtApiCore::getDeviceInfo: memory error allocating output AudioBufferList.\";\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, bufferList );\n  if ( result != noErr || dataSize == 0 ) {\n    free( bufferList );\n    errorStream_ << \"RtApiCore::getDeviceInfo: system error (\" << getErrorCode( result ) << \") getting output stream configuration for device (\" << device << \").\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // Get output channel information.\n  unsigned int i, nStreams = bufferList->mNumberBuffers;\n  for ( i=0; i<nStreams; i++ )\n    info.outputChannels += bufferList->mBuffers[i].mNumberChannels;\n  free( bufferList );\n\n  // Get the input stream \"configuration\".\n  property.mScope = kAudioDevicePropertyScopeInput;\n  result = AudioObjectGetPropertyDataSize( id, &property, 0, NULL, &dataSize );\n  if ( result != noErr || dataSize == 0 ) {\n    errorStream_ << \"RtApiCore::getDeviceInfo: system error (\" << getErrorCode( result ) << \") getting input stream configuration info for device (\" << device << \").\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // Allocate the AudioBufferList.\n  bufferList = (AudioBufferList *) malloc( dataSize );\n  if ( bufferList == NULL ) {\n    errorText_ = \"RtApiCore::getDeviceInfo: memory error allocating input AudioBufferList.\";\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, bufferList );\n  if (result != noErr || dataSize == 0) {\n    free( bufferList );\n    errorStream_ << \"RtApiCore::getDeviceInfo: system error (\" << getErrorCode( result ) << \") getting input stream configuration for device (\" << device << \").\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // Get input channel information.\n  nStreams = bufferList->mNumberBuffers;\n  for ( i=0; i<nStreams; i++ )\n    info.inputChannels += bufferList->mBuffers[i].mNumberChannels;\n  free( bufferList );\n\n  // If device opens for both playback and capture, we determine the channels.\n  if ( info.outputChannels > 0 && info.inputChannels > 0 )\n    info.duplexChannels = (info.outputChannels > info.inputChannels) ? info.inputChannels : info.outputChannels;\n\n  // Probe the device sample rates.\n  bool isInput = false;\n  if ( info.outputChannels == 0 ) isInput = true;\n\n  // Determine the supported sample rates.\n  property.mSelector = kAudioDevicePropertyAvailableNominalSampleRates;\n  if ( isInput == false ) property.mScope = kAudioDevicePropertyScopeOutput;\n  result = AudioObjectGetPropertyDataSize( id, &property, 0, NULL, &dataSize );\n  if ( result != kAudioHardwareNoError || dataSize == 0 ) {\n    errorStream_ << \"RtApiCore::getDeviceInfo: system error (\" << getErrorCode( result ) << \") getting sample rate info.\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  UInt32 nRanges = dataSize / sizeof( AudioValueRange );\n  AudioValueRange rangeList[ nRanges ];\n  result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &rangeList );\n  if ( result != kAudioHardwareNoError ) {\n    errorStream_ << \"RtApiCore::getDeviceInfo: system error (\" << getErrorCode( result ) << \") getting sample rates.\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // The sample rate reporting mechanism is a bit of a mystery.  It\n  // seems that it can either return individual rates or a range of\n  // rates.  I assume that if the min / max range values are the same,\n  // then that represents a single supported rate and if the min / max\n  // range values are different, the device supports an arbitrary\n  // range of values (though there might be multiple ranges, so we'll\n  // use the most conservative range).\n  Float64 minimumRate = 1.0, maximumRate = 10000000000.0;\n  bool haveValueRange = false;\n  info.sampleRates.clear();\n  for ( UInt32 i=0; i<nRanges; i++ ) {\n    if ( rangeList[i].mMinimum == rangeList[i].mMaximum ) {\n      unsigned int tmpSr = (unsigned int) rangeList[i].mMinimum;\n      info.sampleRates.push_back( tmpSr );\n\n      if ( !info.preferredSampleRate || ( tmpSr <= 48000 && tmpSr > info.preferredSampleRate ) )\n        info.preferredSampleRate = tmpSr;\n\n    } else {\n      haveValueRange = true;\n      if ( rangeList[i].mMinimum > minimumRate ) minimumRate = rangeList[i].mMinimum;\n      if ( rangeList[i].mMaximum < maximumRate ) maximumRate = rangeList[i].mMaximum;\n    }\n  }\n\n  if ( haveValueRange ) {\n    for ( unsigned int k=0; k<MAX_SAMPLE_RATES; k++ ) {\n      if ( SAMPLE_RATES[k] >= (unsigned int) minimumRate && SAMPLE_RATES[k] <= (unsigned int) maximumRate ) {\n        info.sampleRates.push_back( SAMPLE_RATES[k] );\n\n        if ( !info.preferredSampleRate || ( SAMPLE_RATES[k] <= 48000 && SAMPLE_RATES[k] > info.preferredSampleRate ) )\n          info.preferredSampleRate = SAMPLE_RATES[k];\n      }\n    }\n  }\n\n  // Sort and remove any redundant values\n  std::sort( info.sampleRates.begin(), info.sampleRates.end() );\n  info.sampleRates.erase( unique( info.sampleRates.begin(), info.sampleRates.end() ), info.sampleRates.end() );\n\n  if ( info.sampleRates.size() == 0 ) {\n    errorStream_ << \"RtApiCore::probeDeviceInfo: No supported sample rates found for device (\" << device << \").\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // CoreAudio always uses 32-bit floating point data for PCM streams.\n  // Thus, any other \"physical\" formats supported by the device are of\n  // no interest to the client.\n  info.nativeFormats = RTAUDIO_FLOAT32;\n\n  if ( info.outputChannels > 0 )\n    if ( getDefaultOutputDevice() == device ) info.isDefaultOutput = true;\n  if ( info.inputChannels > 0 )\n    if ( getDefaultInputDevice() == device ) info.isDefaultInput = true;\n\n  info.probed = true;\n  return info;\n}\n\nstatic OSStatus callbackHandler( AudioDeviceID inDevice,\n                                 const AudioTimeStamp* /*inNow*/,\n                                 const AudioBufferList* inInputData,\n                                 const AudioTimeStamp* /*inInputTime*/,\n                                 AudioBufferList* outOutputData,\n                                 const AudioTimeStamp* /*inOutputTime*/,\n                                 void* infoPointer )\n{\n  CallbackInfo *info = (CallbackInfo *) infoPointer;\n\n  RtApiCore *object = (RtApiCore *) info->object;\n  if ( object->callbackEvent( inDevice, inInputData, outOutputData ) == false )\n    return kAudioHardwareUnspecifiedError;\n  else\n    return kAudioHardwareNoError;\n}\n\nstatic OSStatus xrunListener( AudioObjectID /*inDevice*/,\n                              UInt32 nAddresses,\n                              const AudioObjectPropertyAddress properties[],\n                              void* handlePointer )\n{\n  CoreHandle *handle = (CoreHandle *) handlePointer;\n  for ( UInt32 i=0; i<nAddresses; i++ ) {\n    if ( properties[i].mSelector == kAudioDeviceProcessorOverload ) {\n      if ( properties[i].mScope == kAudioDevicePropertyScopeInput )\n        handle->xrun[1] = true;\n      else\n        handle->xrun[0] = true;\n    }\n  }\n\n  return kAudioHardwareNoError;\n}\n\nstatic OSStatus rateListener( AudioObjectID inDevice,\n                              UInt32 /*nAddresses*/,\n                              const AudioObjectPropertyAddress /*properties*/[],\n                              void* ratePointer )\n{\n  Float64 *rate = (Float64 *) ratePointer;\n  UInt32 dataSize = sizeof( Float64 );\n  AudioObjectPropertyAddress property = { kAudioDevicePropertyNominalSampleRate,\n                                          kAudioObjectPropertyScopeGlobal,\n                                          kAudioObjectPropertyElementMaster };\n  AudioObjectGetPropertyData( inDevice, &property, 0, NULL, &dataSize, rate );\n  return kAudioHardwareNoError;\n}\n\nbool RtApiCore :: probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels,\n                                   unsigned int firstChannel, unsigned int sampleRate,\n                                   RtAudioFormat format, unsigned int *bufferSize,\n                                   RtAudio::StreamOptions *options )\n{\n  // Get device ID\n  unsigned int nDevices = getDeviceCount();\n  if ( nDevices == 0 ) {\n    // This should not happen because a check is made before this function is called.\n    errorText_ = \"RtApiCore::probeDeviceOpen: no devices found!\";\n    return FAILURE;\n  }\n\n  if ( device >= nDevices ) {\n    // This should not happen because a check is made before this function is called.\n    errorText_ = \"RtApiCore::probeDeviceOpen: device ID is invalid!\";\n    return FAILURE;\n  }\n\n  AudioDeviceID deviceList[ nDevices ];\n  UInt32 dataSize = sizeof( AudioDeviceID ) * nDevices;\n  AudioObjectPropertyAddress property = { kAudioHardwarePropertyDevices,\n                                          kAudioObjectPropertyScopeGlobal,\n                                          kAudioObjectPropertyElementMaster };\n  OSStatus result = AudioObjectGetPropertyData( kAudioObjectSystemObject, &property,\n                                                0, NULL, &dataSize, (void *) &deviceList );\n  if ( result != noErr ) {\n    errorText_ = \"RtApiCore::probeDeviceOpen: OS-X system error getting device IDs.\";\n    return FAILURE;\n  }\n\n  AudioDeviceID id = deviceList[ device ];\n\n  // Setup for stream mode.\n  bool isInput = false;\n  if ( mode == INPUT ) {\n    isInput = true;\n    property.mScope = kAudioDevicePropertyScopeInput;\n  }\n  else\n    property.mScope = kAudioDevicePropertyScopeOutput;\n\n  // Get the stream \"configuration\".\n  AudioBufferList\t*bufferList = nil;\n  dataSize = 0;\n  property.mSelector = kAudioDevicePropertyStreamConfiguration;\n  result = AudioObjectGetPropertyDataSize( id, &property, 0, NULL, &dataSize );\n  if ( result != noErr || dataSize == 0 ) {\n    errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") getting stream configuration info for device (\" << device << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Allocate the AudioBufferList.\n  bufferList = (AudioBufferList *) malloc( dataSize );\n  if ( bufferList == NULL ) {\n    errorText_ = \"RtApiCore::probeDeviceOpen: memory error allocating AudioBufferList.\";\n    return FAILURE;\n  }\n\n  result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, bufferList );\n  if (result != noErr || dataSize == 0) {\n    free( bufferList );\n    errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") getting stream configuration for device (\" << device << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Search for one or more streams that contain the desired number of\n  // channels. CoreAudio devices can have an arbitrary number of\n  // streams and each stream can have an arbitrary number of channels.\n  // For each stream, a single buffer of interleaved samples is\n  // provided.  RtAudio prefers the use of one stream of interleaved\n  // data or multiple consecutive single-channel streams.  However, we\n  // now support multiple consecutive multi-channel streams of\n  // interleaved data as well.\n  UInt32 iStream, offsetCounter = firstChannel;\n  UInt32 nStreams = bufferList->mNumberBuffers;\n  bool monoMode = false;\n  bool foundStream = false;\n\n  // First check that the device supports the requested number of\n  // channels.\n  UInt32 deviceChannels = 0;\n  for ( iStream=0; iStream<nStreams; iStream++ )\n    deviceChannels += bufferList->mBuffers[iStream].mNumberChannels;\n\n  if ( deviceChannels < ( channels + firstChannel ) ) {\n    free( bufferList );\n    errorStream_ << \"RtApiCore::probeDeviceOpen: the device (\" << device << \") does not support the requested channel count.\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Look for a single stream meeting our needs.\n  UInt32 firstStream, streamCount = 1, streamChannels = 0, channelOffset = 0;\n  for ( iStream=0; iStream<nStreams; iStream++ ) {\n    streamChannels = bufferList->mBuffers[iStream].mNumberChannels;\n    if ( streamChannels >= channels + offsetCounter ) {\n      firstStream = iStream;\n      channelOffset = offsetCounter;\n      foundStream = true;\n      break;\n    }\n    if ( streamChannels > offsetCounter ) break;\n    offsetCounter -= streamChannels;\n  }\n\n  // If we didn't find a single stream above, then we should be able\n  // to meet the channel specification with multiple streams.\n  if ( foundStream == false ) {\n    monoMode = true;\n    offsetCounter = firstChannel;\n    for ( iStream=0; iStream<nStreams; iStream++ ) {\n      streamChannels = bufferList->mBuffers[iStream].mNumberChannels;\n      if ( streamChannels > offsetCounter ) break;\n      offsetCounter -= streamChannels;\n    }\n\n    firstStream = iStream;\n    channelOffset = offsetCounter;\n    Int32 channelCounter = channels + offsetCounter - streamChannels;\n\n    if ( streamChannels > 1 ) monoMode = false;\n    while ( channelCounter > 0 ) {\n      streamChannels = bufferList->mBuffers[++iStream].mNumberChannels;\n      if ( streamChannels > 1 ) monoMode = false;\n      channelCounter -= streamChannels;\n      streamCount++;\n    }\n  }\n\n  free( bufferList );\n\n  // Determine the buffer size.\n  AudioValueRange\tbufferRange;\n  dataSize = sizeof( AudioValueRange );\n  property.mSelector = kAudioDevicePropertyBufferFrameSizeRange;\n  result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &bufferRange );\n\n  if ( result != noErr ) {\n    errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") getting buffer size range for device (\" << device << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  if ( bufferRange.mMinimum > *bufferSize ) *bufferSize = (unsigned long) bufferRange.mMinimum;\n  else if ( bufferRange.mMaximum < *bufferSize ) *bufferSize = (unsigned long) bufferRange.mMaximum;\n  if ( options && options->flags & RTAUDIO_MINIMIZE_LATENCY ) *bufferSize = (unsigned long) bufferRange.mMinimum;\n\n  // Set the buffer size.  For multiple streams, I'm assuming we only\n  // need to make this setting for the master channel.\n  UInt32 theSize = (UInt32) *bufferSize;\n  dataSize = sizeof( UInt32 );\n  property.mSelector = kAudioDevicePropertyBufferFrameSize;\n  result = AudioObjectSetPropertyData( id, &property, 0, NULL, dataSize, &theSize );\n\n  if ( result != noErr ) {\n    errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") setting the buffer size for device (\" << device << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // If attempting to setup a duplex stream, the bufferSize parameter\n  // MUST be the same in both directions!\n  *bufferSize = theSize;\n  if ( stream_.mode == OUTPUT && mode == INPUT && *bufferSize != stream_.bufferSize ) {\n    errorStream_ << \"RtApiCore::probeDeviceOpen: system error setting buffer size for duplex stream on device (\" << device << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  stream_.bufferSize = *bufferSize;\n  stream_.nBuffers = 1;\n\n  // Try to set \"hog\" mode ... it's not clear to me this is working.\n  if ( options && options->flags & RTAUDIO_HOG_DEVICE ) {\n    pid_t hog_pid;\n    dataSize = sizeof( hog_pid );\n    property.mSelector = kAudioDevicePropertyHogMode;\n    result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &hog_pid );\n    if ( result != noErr ) {\n      errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") getting 'hog' state!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    if ( hog_pid != getpid() ) {\n      hog_pid = getpid();\n      result = AudioObjectSetPropertyData( id, &property, 0, NULL, dataSize, &hog_pid );\n      if ( result != noErr ) {\n        errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") setting 'hog' state!\";\n        errorText_ = errorStream_.str();\n        return FAILURE;\n      }\n    }\n  }\n\n  // Check and if necessary, change the sample rate for the device.\n  Float64 nominalRate;\n  dataSize = sizeof( Float64 );\n  property.mSelector = kAudioDevicePropertyNominalSampleRate;\n  result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &nominalRate );\n  if ( result != noErr ) {\n    errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") getting current sample rate.\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Only change the sample rate if off by more than 1 Hz.\n  if ( fabs( nominalRate - (double)sampleRate ) > 1.0 ) {\n\n    // Set a property listener for the sample rate change\n    Float64 reportedRate = 0.0;\n    AudioObjectPropertyAddress tmp = { kAudioDevicePropertyNominalSampleRate, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster };\n    result = AudioObjectAddPropertyListener( id, &tmp, rateListener, (void *) &reportedRate );\n    if ( result != noErr ) {\n      errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") setting sample rate property listener for device (\" << device << \").\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    nominalRate = (Float64) sampleRate;\n    result = AudioObjectSetPropertyData( id, &property, 0, NULL, dataSize, &nominalRate );\n    if ( result != noErr ) {\n      AudioObjectRemovePropertyListener( id, &tmp, rateListener, (void *) &reportedRate );\n      errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") setting sample rate for device (\" << device << \").\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    // Now wait until the reported nominal rate is what we just set.\n    UInt32 microCounter = 0;\n    while ( reportedRate != nominalRate ) {\n      microCounter += 5000;\n      if ( microCounter > 5000000 ) break;\n      usleep( 5000 );\n    }\n\n    // Remove the property listener.\n    AudioObjectRemovePropertyListener( id, &tmp, rateListener, (void *) &reportedRate );\n\n    if ( microCounter > 5000000 ) {\n      errorStream_ << \"RtApiCore::probeDeviceOpen: timeout waiting for sample rate update for device (\" << device << \").\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n  }\n\n  // Now set the stream format for all streams.  Also, check the\n  // physical format of the device and change that if necessary.\n  AudioStreamBasicDescription\tdescription;\n  dataSize = sizeof( AudioStreamBasicDescription );\n  property.mSelector = kAudioStreamPropertyVirtualFormat;\n  result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &description );\n  if ( result != noErr ) {\n    errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") getting stream format for device (\" << device << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Set the sample rate and data format id.  However, only make the\n  // change if the sample rate is not within 1.0 of the desired\n  // rate and the format is not linear pcm.\n  bool updateFormat = false;\n  if ( fabs( description.mSampleRate - (Float64)sampleRate ) > 1.0 ) {\n    description.mSampleRate = (Float64) sampleRate;\n    updateFormat = true;\n  }\n\n  if ( description.mFormatID != kAudioFormatLinearPCM ) {\n    description.mFormatID = kAudioFormatLinearPCM;\n    updateFormat = true;\n  }\n\n  if ( updateFormat ) {\n    result = AudioObjectSetPropertyData( id, &property, 0, NULL, dataSize, &description );\n    if ( result != noErr ) {\n      errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") setting sample rate or data format for device (\" << device << \").\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n  }\n\n  // Now check the physical format.\n  property.mSelector = kAudioStreamPropertyPhysicalFormat;\n  result = AudioObjectGetPropertyData( id, &property, 0, NULL,  &dataSize, &description );\n  if ( result != noErr ) {\n    errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") getting stream physical format for device (\" << device << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  //std::cout << \"Current physical stream format:\" << std::endl;\n  //std::cout << \"   mBitsPerChan = \" << description.mBitsPerChannel << std::endl;\n  //std::cout << \"   aligned high = \" << (description.mFormatFlags & kAudioFormatFlagIsAlignedHigh) << \", isPacked = \" << (description.mFormatFlags & kAudioFormatFlagIsPacked) << std::endl;\n  //std::cout << \"   bytesPerFrame = \" << description.mBytesPerFrame << std::endl;\n  //std::cout << \"   sample rate = \" << description.mSampleRate << std::endl;\n\n  if ( description.mFormatID != kAudioFormatLinearPCM || description.mBitsPerChannel < 16 ) {\n    description.mFormatID = kAudioFormatLinearPCM;\n    //description.mSampleRate = (Float64) sampleRate;\n    AudioStreamBasicDescription\ttestDescription = description;\n    UInt32 formatFlags;\n\n    // We'll try higher bit rates first and then work our way down.\n    std::vector< std::pair<UInt32, UInt32>  > physicalFormats;\n    formatFlags = (description.mFormatFlags | kLinearPCMFormatFlagIsFloat) & ~kLinearPCMFormatFlagIsSignedInteger;\n    physicalFormats.push_back( std::pair<Float32, UInt32>( 32, formatFlags ) );\n    formatFlags = (description.mFormatFlags | kLinearPCMFormatFlagIsSignedInteger | kAudioFormatFlagIsPacked) & ~kLinearPCMFormatFlagIsFloat;\n    physicalFormats.push_back( std::pair<Float32, UInt32>( 32, formatFlags ) );\n    physicalFormats.push_back( std::pair<Float32, UInt32>( 24, formatFlags ) );   // 24-bit packed\n    formatFlags &= ~( kAudioFormatFlagIsPacked | kAudioFormatFlagIsAlignedHigh );\n    physicalFormats.push_back( std::pair<Float32, UInt32>( 24.2, formatFlags ) ); // 24-bit in 4 bytes, aligned low\n    formatFlags |= kAudioFormatFlagIsAlignedHigh;\n    physicalFormats.push_back( std::pair<Float32, UInt32>( 24.4, formatFlags ) ); // 24-bit in 4 bytes, aligned high\n    formatFlags = (description.mFormatFlags | kLinearPCMFormatFlagIsSignedInteger | kAudioFormatFlagIsPacked) & ~kLinearPCMFormatFlagIsFloat;\n    physicalFormats.push_back( std::pair<Float32, UInt32>( 16, formatFlags ) );\n    physicalFormats.push_back( std::pair<Float32, UInt32>( 8, formatFlags ) );\n\n    bool setPhysicalFormat = false;\n    for( unsigned int i=0; i<physicalFormats.size(); i++ ) {\n      testDescription = description;\n      testDescription.mBitsPerChannel = (UInt32) physicalFormats[i].first;\n      testDescription.mFormatFlags = physicalFormats[i].second;\n      if ( (24 == (UInt32)physicalFormats[i].first) && ~( physicalFormats[i].second & kAudioFormatFlagIsPacked ) )\n        testDescription.mBytesPerFrame =  4 * testDescription.mChannelsPerFrame;\n      else\n        testDescription.mBytesPerFrame =  testDescription.mBitsPerChannel/8 * testDescription.mChannelsPerFrame;\n      testDescription.mBytesPerPacket = testDescription.mBytesPerFrame * testDescription.mFramesPerPacket;\n      result = AudioObjectSetPropertyData( id, &property, 0, NULL, dataSize, &testDescription );\n      if ( result == noErr ) {\n        setPhysicalFormat = true;\n        //std::cout << \"Updated physical stream format:\" << std::endl;\n        //std::cout << \"   mBitsPerChan = \" << testDescription.mBitsPerChannel << std::endl;\n        //std::cout << \"   aligned high = \" << (testDescription.mFormatFlags & kAudioFormatFlagIsAlignedHigh) << \", isPacked = \" << (testDescription.mFormatFlags & kAudioFormatFlagIsPacked) << std::endl;\n        //std::cout << \"   bytesPerFrame = \" << testDescription.mBytesPerFrame << std::endl;\n        //std::cout << \"   sample rate = \" << testDescription.mSampleRate << std::endl;\n        break;\n      }\n    }\n\n    if ( !setPhysicalFormat ) {\n      errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") setting physical data format for device (\" << device << \").\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n  } // done setting virtual/physical formats.\n\n  // Get the stream / device latency.\n  UInt32 latency;\n  dataSize = sizeof( UInt32 );\n  property.mSelector = kAudioDevicePropertyLatency;\n  if ( AudioObjectHasProperty( id, &property ) == true ) {\n    result = AudioObjectGetPropertyData( id, &property, 0, NULL, &dataSize, &latency );\n    if ( result == kAudioHardwareNoError ) stream_.latency[ mode ] = latency;\n    else {\n      errorStream_ << \"RtApiCore::probeDeviceOpen: system error (\" << getErrorCode( result ) << \") getting device latency for device (\" << device << \").\";\n      errorText_ = errorStream_.str();\n      error( RtAudioError::WARNING );\n    }\n  }\n\n  // Byte-swapping: According to AudioHardware.h, the stream data will\n  // always be presented in native-endian format, so we should never\n  // need to byte swap.\n  stream_.doByteSwap[mode] = false;\n\n  // From the CoreAudio documentation, PCM data must be supplied as\n  // 32-bit floats.\n  stream_.userFormat = format;\n  stream_.deviceFormat[mode] = RTAUDIO_FLOAT32;\n\n  if ( streamCount == 1 )\n    stream_.nDeviceChannels[mode] = description.mChannelsPerFrame;\n  else // multiple streams\n    stream_.nDeviceChannels[mode] = channels;\n  stream_.nUserChannels[mode] = channels;\n  stream_.channelOffset[mode] = channelOffset;  // offset within a CoreAudio stream\n  if ( options && options->flags & RTAUDIO_NONINTERLEAVED ) stream_.userInterleaved = false;\n  else stream_.userInterleaved = true;\n  stream_.deviceInterleaved[mode] = true;\n  if ( monoMode == true ) stream_.deviceInterleaved[mode] = false;\n\n  // Set flags for buffer conversion.\n  stream_.doConvertBuffer[mode] = false;\n  if ( stream_.userFormat != stream_.deviceFormat[mode] )\n    stream_.doConvertBuffer[mode] = true;\n  if ( stream_.nUserChannels[mode] < stream_.nDeviceChannels[mode] )\n    stream_.doConvertBuffer[mode] = true;\n  if ( streamCount == 1 ) {\n    if ( stream_.nUserChannels[mode] > 1 &&\n         stream_.userInterleaved != stream_.deviceInterleaved[mode] )\n      stream_.doConvertBuffer[mode] = true;\n  }\n  else if ( monoMode && stream_.userInterleaved )\n    stream_.doConvertBuffer[mode] = true;\n\n  // Allocate our CoreHandle structure for the stream.\n  CoreHandle *handle = 0;\n  if ( stream_.apiHandle == 0 ) {\n    try {\n      handle = new CoreHandle;\n    }\n    catch ( std::bad_alloc& ) {\n      errorText_ = \"RtApiCore::probeDeviceOpen: error allocating CoreHandle memory.\";\n      goto error;\n    }\n\n    if ( pthread_cond_init( &handle->condition, NULL ) ) {\n      errorText_ = \"RtApiCore::probeDeviceOpen: error initializing pthread condition variable.\";\n      goto error;\n    }\n    stream_.apiHandle = (void *) handle;\n  }\n  else\n    handle = (CoreHandle *) stream_.apiHandle;\n  handle->iStream[mode] = firstStream;\n  handle->nStreams[mode] = streamCount;\n  handle->id[mode] = id;\n\n  // Allocate necessary internal buffers.\n  unsigned long bufferBytes;\n  bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat );\n  //  stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 );\n  stream_.userBuffer[mode] = (char *) malloc( bufferBytes * sizeof(char) );\n  memset( stream_.userBuffer[mode], 0, bufferBytes * sizeof(char) );\n  if ( stream_.userBuffer[mode] == NULL ) {\n    errorText_ = \"RtApiCore::probeDeviceOpen: error allocating user buffer memory.\";\n    goto error;\n  }\n\n  // If possible, we will make use of the CoreAudio stream buffers as\n  // \"device buffers\".  However, we can't do this if using multiple\n  // streams.\n  if ( stream_.doConvertBuffer[mode] && handle->nStreams[mode] > 1 ) {\n\n    bool makeBuffer = true;\n    bufferBytes = stream_.nDeviceChannels[mode] * formatBytes( stream_.deviceFormat[mode] );\n    if ( mode == INPUT ) {\n      if ( stream_.mode == OUTPUT && stream_.deviceBuffer ) {\n        unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] );\n        if ( bufferBytes <= bytesOut ) makeBuffer = false;\n      }\n    }\n\n    if ( makeBuffer ) {\n      bufferBytes *= *bufferSize;\n      if ( stream_.deviceBuffer ) free( stream_.deviceBuffer );\n      stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 );\n      if ( stream_.deviceBuffer == NULL ) {\n        errorText_ = \"RtApiCore::probeDeviceOpen: error allocating device buffer memory.\";\n        goto error;\n      }\n    }\n  }\n\n  stream_.sampleRate = sampleRate;\n  stream_.device[mode] = device;\n  stream_.state = STREAM_STOPPED;\n  stream_.callbackInfo.object = (void *) this;\n\n  // Setup the buffer conversion information structure.\n  if ( stream_.doConvertBuffer[mode] ) {\n    if ( streamCount > 1 ) setConvertInfo( mode, 0 );\n    else setConvertInfo( mode, channelOffset );\n  }\n\n  if ( mode == INPUT && stream_.mode == OUTPUT && stream_.device[0] == device )\n    // Only one callback procedure per device.\n    stream_.mode = DUPLEX;\n  else {\n#if defined( MAC_OS_X_VERSION_10_5 ) && ( MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 )\n    result = AudioDeviceCreateIOProcID( id, callbackHandler, (void *) &stream_.callbackInfo, &handle->procId[mode] );\n#else\n    // deprecated in favor of AudioDeviceCreateIOProcID()\n    result = AudioDeviceAddIOProc( id, callbackHandler, (void *) &stream_.callbackInfo );\n#endif\n    if ( result != noErr ) {\n      errorStream_ << \"RtApiCore::probeDeviceOpen: system error setting callback for device (\" << device << \").\";\n      errorText_ = errorStream_.str();\n      goto error;\n    }\n    if ( stream_.mode == OUTPUT && mode == INPUT )\n      stream_.mode = DUPLEX;\n    else\n      stream_.mode = mode;\n  }\n\n  // Setup the device property listener for over/underload.\n  property.mSelector = kAudioDeviceProcessorOverload;\n  property.mScope = kAudioObjectPropertyScopeGlobal;\n  result = AudioObjectAddPropertyListener( id, &property, xrunListener, (void *) handle );\n\n  return SUCCESS;\n\n error:\n  if ( handle ) {\n    pthread_cond_destroy( &handle->condition );\n    delete handle;\n    stream_.apiHandle = 0;\n  }\n\n  for ( int i=0; i<2; i++ ) {\n    if ( stream_.userBuffer[i] ) {\n      free( stream_.userBuffer[i] );\n      stream_.userBuffer[i] = 0;\n    }\n  }\n\n  if ( stream_.deviceBuffer ) {\n    free( stream_.deviceBuffer );\n    stream_.deviceBuffer = 0;\n  }\n\n  stream_.state = STREAM_CLOSED;\n  return FAILURE;\n}\n\nvoid RtApiCore :: closeStream( void )\n{\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiCore::closeStream(): no open stream to close!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  CoreHandle *handle = (CoreHandle *) stream_.apiHandle;\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n    if (handle) {\n      AudioObjectPropertyAddress property = { kAudioHardwarePropertyDevices,\n        kAudioObjectPropertyScopeGlobal,\n        kAudioObjectPropertyElementMaster };\n\n      property.mSelector = kAudioDeviceProcessorOverload;\n      property.mScope = kAudioObjectPropertyScopeGlobal;\n      if (AudioObjectRemovePropertyListener( handle->id[0], &property, xrunListener, (void *) handle ) != noErr) {\n        errorText_ = \"RtApiCore::closeStream(): error removing property listener!\";\n        error( RtAudioError::WARNING );\n      }\n    }\n    if ( stream_.state == STREAM_RUNNING )\n      AudioDeviceStop( handle->id[0], callbackHandler );\n#if defined( MAC_OS_X_VERSION_10_5 ) && ( MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 )\n    AudioDeviceDestroyIOProcID( handle->id[0], handle->procId[0] );\n#else\n    // deprecated in favor of AudioDeviceDestroyIOProcID()\n    AudioDeviceRemoveIOProc( handle->id[0], callbackHandler );\n#endif\n  }\n\n  if ( stream_.mode == INPUT || ( stream_.mode == DUPLEX && stream_.device[0] != stream_.device[1] ) ) {\n    if (handle) {\n      AudioObjectPropertyAddress property = { kAudioHardwarePropertyDevices,\n        kAudioObjectPropertyScopeGlobal,\n        kAudioObjectPropertyElementMaster };\n\n      property.mSelector = kAudioDeviceProcessorOverload;\n      property.mScope = kAudioObjectPropertyScopeGlobal;\n      if (AudioObjectRemovePropertyListener( handle->id[1], &property, xrunListener, (void *) handle ) != noErr) {\n        errorText_ = \"RtApiCore::closeStream(): error removing property listener!\";\n        error( RtAudioError::WARNING );\n      }\n    }\n    if ( stream_.state == STREAM_RUNNING )\n      AudioDeviceStop( handle->id[1], callbackHandler );\n#if defined( MAC_OS_X_VERSION_10_5 ) && ( MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 )\n    AudioDeviceDestroyIOProcID( handle->id[1], handle->procId[1] );\n#else\n    // deprecated in favor of AudioDeviceDestroyIOProcID()\n    AudioDeviceRemoveIOProc( handle->id[1], callbackHandler );\n#endif\n  }\n\n  for ( int i=0; i<2; i++ ) {\n    if ( stream_.userBuffer[i] ) {\n      free( stream_.userBuffer[i] );\n      stream_.userBuffer[i] = 0;\n    }\n  }\n\n  if ( stream_.deviceBuffer ) {\n    free( stream_.deviceBuffer );\n    stream_.deviceBuffer = 0;\n  }\n\n  // Destroy pthread condition variable.\n  pthread_cond_destroy( &handle->condition );\n  delete handle;\n  stream_.apiHandle = 0;\n\n  stream_.mode = UNINITIALIZED;\n  stream_.state = STREAM_CLOSED;\n}\n\nvoid RtApiCore :: startStream( void )\n{\n  verifyStream();\n  if ( stream_.state == STREAM_RUNNING ) {\n    errorText_ = \"RtApiCore::startStream(): the stream is already running!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  OSStatus result = noErr;\n  CoreHandle *handle = (CoreHandle *) stream_.apiHandle;\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n\n    result = AudioDeviceStart( handle->id[0], callbackHandler );\n    if ( result != noErr ) {\n      errorStream_ << \"RtApiCore::startStream: system error (\" << getErrorCode( result ) << \") starting callback procedure on device (\" << stream_.device[0] << \").\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n  }\n\n  if ( stream_.mode == INPUT ||\n       ( stream_.mode == DUPLEX && stream_.device[0] != stream_.device[1] ) ) {\n\n    result = AudioDeviceStart( handle->id[1], callbackHandler );\n    if ( result != noErr ) {\n      errorStream_ << \"RtApiCore::startStream: system error starting input callback procedure on device (\" << stream_.device[1] << \").\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n  }\n\n  handle->drainCounter = 0;\n  handle->internalDrain = false;\n  stream_.state = STREAM_RUNNING;\n\n unlock:\n  if ( result == noErr ) return;\n  error( RtAudioError::SYSTEM_ERROR );\n}\n\nvoid RtApiCore :: stopStream( void )\n{\n  verifyStream();\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiCore::stopStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  OSStatus result = noErr;\n  CoreHandle *handle = (CoreHandle *) stream_.apiHandle;\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n\n    if ( handle->drainCounter == 0 ) {\n      handle->drainCounter = 2;\n      pthread_cond_wait( &handle->condition, &stream_.mutex ); // block until signaled\n    }\n\n    result = AudioDeviceStop( handle->id[0], callbackHandler );\n    if ( result != noErr ) {\n      errorStream_ << \"RtApiCore::stopStream: system error (\" << getErrorCode( result ) << \") stopping callback procedure on device (\" << stream_.device[0] << \").\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n  }\n\n  if ( stream_.mode == INPUT || ( stream_.mode == DUPLEX && stream_.device[0] != stream_.device[1] ) ) {\n\n    result = AudioDeviceStop( handle->id[1], callbackHandler );\n    if ( result != noErr ) {\n      errorStream_ << \"RtApiCore::stopStream: system error (\" << getErrorCode( result ) << \") stopping input callback procedure on device (\" << stream_.device[1] << \").\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n  }\n\n  stream_.state = STREAM_STOPPED;\n\n unlock:\n  if ( result == noErr ) return;\n  error( RtAudioError::SYSTEM_ERROR );\n}\n\nvoid RtApiCore :: abortStream( void )\n{\n  verifyStream();\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiCore::abortStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  CoreHandle *handle = (CoreHandle *) stream_.apiHandle;\n  handle->drainCounter = 2;\n\n  stopStream();\n}\n\n// This function will be called by a spawned thread when the user\n// callback function signals that the stream should be stopped or\n// aborted.  It is better to handle it this way because the\n// callbackEvent() function probably should return before the AudioDeviceStop()\n// function is called.\nstatic void *coreStopStream( void *ptr )\n{\n  CallbackInfo *info = (CallbackInfo *) ptr;\n  RtApiCore *object = (RtApiCore *) info->object;\n\n  object->stopStream();\n  pthread_exit( NULL );\n}\n\nbool RtApiCore :: callbackEvent( AudioDeviceID deviceId,\n                                 const AudioBufferList *inBufferList,\n                                 const AudioBufferList *outBufferList )\n{\n  if ( stream_.state == STREAM_STOPPED || stream_.state == STREAM_STOPPING ) return SUCCESS;\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiCore::callbackEvent(): the stream is closed ... this shouldn't happen!\";\n    error( RtAudioError::WARNING );\n    return FAILURE;\n  }\n\n  CallbackInfo *info = (CallbackInfo *) &stream_.callbackInfo;\n  CoreHandle *handle = (CoreHandle *) stream_.apiHandle;\n\n  // Check if we were draining the stream and signal is finished.\n  if ( handle->drainCounter > 3 ) {\n    ThreadHandle threadId;\n\n    stream_.state = STREAM_STOPPING;\n    if ( handle->internalDrain == true )\n      pthread_create( &threadId, NULL, coreStopStream, info );\n    else // external call to stopStream()\n      pthread_cond_signal( &handle->condition );\n    return SUCCESS;\n  }\n\n  AudioDeviceID outputDevice = handle->id[0];\n\n  // Invoke user callback to get fresh output data UNLESS we are\n  // draining stream or duplex mode AND the input/output devices are\n  // different AND this function is called for the input device.\n  if ( handle->drainCounter == 0 && ( stream_.mode != DUPLEX || deviceId == outputDevice ) ) {\n    RtAudioCallback callback = (RtAudioCallback) info->callback;\n    double streamTime = getStreamTime();\n    RtAudioStreamStatus status = 0;\n    if ( stream_.mode != INPUT && handle->xrun[0] == true ) {\n      status |= RTAUDIO_OUTPUT_UNDERFLOW;\n      handle->xrun[0] = false;\n    }\n    if ( stream_.mode != OUTPUT && handle->xrun[1] == true ) {\n      status |= RTAUDIO_INPUT_OVERFLOW;\n      handle->xrun[1] = false;\n    }\n\n    int cbReturnValue = callback( stream_.userBuffer[0], stream_.userBuffer[1],\n                                  stream_.bufferSize, streamTime, status, info->userData );\n    if ( cbReturnValue == 2 ) {\n      stream_.state = STREAM_STOPPING;\n      handle->drainCounter = 2;\n      abortStream();\n      return SUCCESS;\n    }\n    else if ( cbReturnValue == 1 ) {\n      handle->drainCounter = 1;\n      handle->internalDrain = true;\n    }\n  }\n\n  if ( stream_.mode == OUTPUT || ( stream_.mode == DUPLEX && deviceId == outputDevice ) ) {\n\n    if ( handle->drainCounter > 1 ) { // write zeros to the output stream\n\n      if ( handle->nStreams[0] == 1 ) {\n        memset( outBufferList->mBuffers[handle->iStream[0]].mData,\n                0,\n                outBufferList->mBuffers[handle->iStream[0]].mDataByteSize );\n      }\n      else { // fill multiple streams with zeros\n        for ( unsigned int i=0; i<handle->nStreams[0]; i++ ) {\n          memset( outBufferList->mBuffers[handle->iStream[0]+i].mData,\n                  0,\n                  outBufferList->mBuffers[handle->iStream[0]+i].mDataByteSize );\n        }\n      }\n    }\n    else if ( handle->nStreams[0] == 1 ) {\n      if ( stream_.doConvertBuffer[0] ) { // convert directly to CoreAudio stream buffer\n        convertBuffer( (char *) outBufferList->mBuffers[handle->iStream[0]].mData,\n                       stream_.userBuffer[0], stream_.convertInfo[0] );\n      }\n      else { // copy from user buffer\n        memcpy( outBufferList->mBuffers[handle->iStream[0]].mData,\n                stream_.userBuffer[0],\n                outBufferList->mBuffers[handle->iStream[0]].mDataByteSize );\n      }\n    }\n    else { // fill multiple streams\n      Float32 *inBuffer = (Float32 *) stream_.userBuffer[0];\n      if ( stream_.doConvertBuffer[0] ) {\n        convertBuffer( stream_.deviceBuffer, stream_.userBuffer[0], stream_.convertInfo[0] );\n        inBuffer = (Float32 *) stream_.deviceBuffer;\n      }\n\n      if ( stream_.deviceInterleaved[0] == false ) { // mono mode\n        UInt32 bufferBytes = outBufferList->mBuffers[handle->iStream[0]].mDataByteSize;\n        for ( unsigned int i=0; i<stream_.nUserChannels[0]; i++ ) {\n          memcpy( outBufferList->mBuffers[handle->iStream[0]+i].mData,\n                  (void *)&inBuffer[i*stream_.bufferSize], bufferBytes );\n        }\n      }\n      else { // fill multiple multi-channel streams with interleaved data\n        UInt32 streamChannels, channelsLeft, inJump, outJump, inOffset;\n        Float32 *out, *in;\n\n        bool inInterleaved = ( stream_.userInterleaved ) ? true : false;\n        UInt32 inChannels = stream_.nUserChannels[0];\n        if ( stream_.doConvertBuffer[0] ) {\n          inInterleaved = true; // device buffer will always be interleaved for nStreams > 1 and not mono mode\n          inChannels = stream_.nDeviceChannels[0];\n        }\n\n        if ( inInterleaved ) inOffset = 1;\n        else inOffset = stream_.bufferSize;\n\n        channelsLeft = inChannels;\n        for ( unsigned int i=0; i<handle->nStreams[0]; i++ ) {\n          in = inBuffer;\n          out = (Float32 *) outBufferList->mBuffers[handle->iStream[0]+i].mData;\n          streamChannels = outBufferList->mBuffers[handle->iStream[0]+i].mNumberChannels;\n\n          outJump = 0;\n          // Account for possible channel offset in first stream\n          if ( i == 0 && stream_.channelOffset[0] > 0 ) {\n            streamChannels -= stream_.channelOffset[0];\n            outJump = stream_.channelOffset[0];\n            out += outJump;\n          }\n\n          // Account for possible unfilled channels at end of the last stream\n          if ( streamChannels > channelsLeft ) {\n            outJump = streamChannels - channelsLeft;\n            streamChannels = channelsLeft;\n          }\n\n          // Determine input buffer offsets and skips\n          if ( inInterleaved ) {\n            inJump = inChannels;\n            in += inChannels - channelsLeft;\n          }\n          else {\n            inJump = 1;\n            in += (inChannels - channelsLeft) * inOffset;\n          }\n\n          for ( unsigned int i=0; i<stream_.bufferSize; i++ ) {\n            for ( unsigned int j=0; j<streamChannels; j++ ) {\n              *out++ = in[j*inOffset];\n            }\n            out += outJump;\n            in += inJump;\n          }\n          channelsLeft -= streamChannels;\n        }\n      }\n    }\n  }\n\n  // Don't bother draining input\n  if ( handle->drainCounter ) {\n    handle->drainCounter++;\n    goto unlock;\n  }\n\n  AudioDeviceID inputDevice;\n  inputDevice = handle->id[1];\n  if ( stream_.mode == INPUT || ( stream_.mode == DUPLEX && deviceId == inputDevice ) ) {\n\n    if ( handle->nStreams[1] == 1 ) {\n      if ( stream_.doConvertBuffer[1] ) { // convert directly from CoreAudio stream buffer\n        convertBuffer( stream_.userBuffer[1],\n                       (char *) inBufferList->mBuffers[handle->iStream[1]].mData,\n                       stream_.convertInfo[1] );\n      }\n      else { // copy to user buffer\n        memcpy( stream_.userBuffer[1],\n                inBufferList->mBuffers[handle->iStream[1]].mData,\n                inBufferList->mBuffers[handle->iStream[1]].mDataByteSize );\n      }\n    }\n    else { // read from multiple streams\n      Float32 *outBuffer = (Float32 *) stream_.userBuffer[1];\n      if ( stream_.doConvertBuffer[1] ) outBuffer = (Float32 *) stream_.deviceBuffer;\n\n      if ( stream_.deviceInterleaved[1] == false ) { // mono mode\n        UInt32 bufferBytes = inBufferList->mBuffers[handle->iStream[1]].mDataByteSize;\n        for ( unsigned int i=0; i<stream_.nUserChannels[1]; i++ ) {\n          memcpy( (void *)&outBuffer[i*stream_.bufferSize],\n                  inBufferList->mBuffers[handle->iStream[1]+i].mData, bufferBytes );\n        }\n      }\n      else { // read from multiple multi-channel streams\n        UInt32 streamChannels, channelsLeft, inJump, outJump, outOffset;\n        Float32 *out, *in;\n\n        bool outInterleaved = ( stream_.userInterleaved ) ? true : false;\n        UInt32 outChannels = stream_.nUserChannels[1];\n        if ( stream_.doConvertBuffer[1] ) {\n          outInterleaved = true; // device buffer will always be interleaved for nStreams > 1 and not mono mode\n          outChannels = stream_.nDeviceChannels[1];\n        }\n\n        if ( outInterleaved ) outOffset = 1;\n        else outOffset = stream_.bufferSize;\n\n        channelsLeft = outChannels;\n        for ( unsigned int i=0; i<handle->nStreams[1]; i++ ) {\n          out = outBuffer;\n          in = (Float32 *) inBufferList->mBuffers[handle->iStream[1]+i].mData;\n          streamChannels = inBufferList->mBuffers[handle->iStream[1]+i].mNumberChannels;\n\n          inJump = 0;\n          // Account for possible channel offset in first stream\n          if ( i == 0 && stream_.channelOffset[1] > 0 ) {\n            streamChannels -= stream_.channelOffset[1];\n            inJump = stream_.channelOffset[1];\n            in += inJump;\n          }\n\n          // Account for possible unread channels at end of the last stream\n          if ( streamChannels > channelsLeft ) {\n            inJump = streamChannels - channelsLeft;\n            streamChannels = channelsLeft;\n          }\n\n          // Determine output buffer offsets and skips\n          if ( outInterleaved ) {\n            outJump = outChannels;\n            out += outChannels - channelsLeft;\n          }\n          else {\n            outJump = 1;\n            out += (outChannels - channelsLeft) * outOffset;\n          }\n\n          for ( unsigned int i=0; i<stream_.bufferSize; i++ ) {\n            for ( unsigned int j=0; j<streamChannels; j++ ) {\n              out[j*outOffset] = *in++;\n            }\n            out += outJump;\n            in += inJump;\n          }\n          channelsLeft -= streamChannels;\n        }\n      }\n      \n      if ( stream_.doConvertBuffer[1] ) { // convert from our internal \"device\" buffer\n        convertBuffer( stream_.userBuffer[1],\n                       stream_.deviceBuffer,\n                       stream_.convertInfo[1] );\n      }\n    }\n  }\n\n unlock:\n  //MUTEX_UNLOCK( &stream_.mutex );\n\n  RtApi::tickStreamTime();\n  return SUCCESS;\n}\n\nconst char* RtApiCore :: getErrorCode( OSStatus code )\n{\n  switch( code ) {\n\n  case kAudioHardwareNotRunningError:\n    return \"kAudioHardwareNotRunningError\";\n\n  case kAudioHardwareUnspecifiedError:\n    return \"kAudioHardwareUnspecifiedError\";\n\n  case kAudioHardwareUnknownPropertyError:\n    return \"kAudioHardwareUnknownPropertyError\";\n\n  case kAudioHardwareBadPropertySizeError:\n    return \"kAudioHardwareBadPropertySizeError\";\n\n  case kAudioHardwareIllegalOperationError:\n    return \"kAudioHardwareIllegalOperationError\";\n\n  case kAudioHardwareBadObjectError:\n    return \"kAudioHardwareBadObjectError\";\n\n  case kAudioHardwareBadDeviceError:\n    return \"kAudioHardwareBadDeviceError\";\n\n  case kAudioHardwareBadStreamError:\n    return \"kAudioHardwareBadStreamError\";\n\n  case kAudioHardwareUnsupportedOperationError:\n    return \"kAudioHardwareUnsupportedOperationError\";\n\n  case kAudioDeviceUnsupportedFormatError:\n    return \"kAudioDeviceUnsupportedFormatError\";\n\n  case kAudioDevicePermissionsError:\n    return \"kAudioDevicePermissionsError\";\n\n  default:\n    return \"CoreAudio unknown error\";\n  }\n}\n\n  //******************** End of __MACOSX_CORE__ *********************//\n#endif\n\n#if defined(__UNIX_JACK__)\n\n// JACK is a low-latency audio server, originally written for the\n// GNU/Linux operating system and now also ported to OS-X. It can\n// connect a number of different applications to an audio device, as\n// well as allowing them to share audio between themselves.\n//\n// When using JACK with RtAudio, \"devices\" refer to JACK clients that\n// have ports connected to the server.  The JACK server is typically\n// started in a terminal as follows:\n//\n// .jackd -d alsa -d hw:0\n//\n// or through an interface program such as qjackctl.  Many of the\n// parameters normally set for a stream are fixed by the JACK server\n// and can be specified when the JACK server is started.  In\n// particular,\n//\n// .jackd -d alsa -d hw:0 -r 44100 -p 512 -n 4\n//\n// specifies a sample rate of 44100 Hz, a buffer size of 512 sample\n// frames, and number of buffers = 4.  Once the server is running, it\n// is not possible to override these values.  If the values are not\n// specified in the command-line, the JACK server uses default values.\n//\n// The JACK server does not have to be running when an instance of\n// RtApiJack is created, though the function getDeviceCount() will\n// report 0 devices found until JACK has been started.  When no\n// devices are available (i.e., the JACK server is not running), a\n// stream cannot be opened.\n\n#include <jack/jack.h>\n#include <unistd.h>\n#include <cstdio>\n\n// A structure to hold various information related to the Jack API\n// implementation.\nstruct JackHandle {\n  jack_client_t *client;\n  jack_port_t **ports[2];\n  std::string deviceName[2];\n  bool xrun[2];\n  pthread_cond_t condition;\n  int drainCounter;       // Tracks callback counts when draining\n  bool internalDrain;     // Indicates if stop is initiated from callback or not.\n\n  JackHandle()\n    :client(0), drainCounter(0), internalDrain(false) { ports[0] = 0; ports[1] = 0; xrun[0] = false; xrun[1] = false; }\n};\n\n#if !defined(__RTAUDIO_DEBUG__)\nstatic void jackSilentError( const char * ) {};\n#endif\n\nRtApiJack :: RtApiJack()\n    :shouldAutoconnect_(true) {\n  // Nothing to do here.\n#if !defined(__RTAUDIO_DEBUG__)\n  // Turn off Jack's internal error reporting.\n  jack_set_error_function( &jackSilentError );\n#endif\n}\n\nRtApiJack :: ~RtApiJack()\n{\n  if ( stream_.state != STREAM_CLOSED ) closeStream();\n}\n\nunsigned int RtApiJack :: getDeviceCount( void )\n{\n  // See if we can become a jack client.\n  jack_options_t options = (jack_options_t) ( JackNoStartServer ); //JackNullOption;\n  jack_status_t *status = NULL;\n  jack_client_t *client = jack_client_open( \"RtApiJackCount\", options, status );\n  if ( client == 0 ) return 0;\n\n  const char **ports;\n  std::string port, previousPort;\n  unsigned int nChannels = 0, nDevices = 0;\n  ports = jack_get_ports( client, NULL, NULL, 0 );\n  if ( ports ) {\n    // Parse the port names up to the first colon (:).\n    size_t iColon = 0;\n    do {\n      port = (char *) ports[ nChannels ];\n      iColon = port.find(\":\");\n      if ( iColon != std::string::npos ) {\n        port = port.substr( 0, iColon + 1 );\n        if ( port != previousPort ) {\n          nDevices++;\n          previousPort = port;\n        }\n      }\n    } while ( ports[++nChannels] );\n    free( ports );\n  }\n\n  jack_client_close( client );\n  return nDevices;\n}\n\nRtAudio::DeviceInfo RtApiJack :: getDeviceInfo( unsigned int device )\n{\n  RtAudio::DeviceInfo info;\n  info.probed = false;\n\n  jack_options_t options = (jack_options_t) ( JackNoStartServer ); //JackNullOption\n  jack_status_t *status = NULL;\n  jack_client_t *client = jack_client_open( \"RtApiJackInfo\", options, status );\n  if ( client == 0 ) {\n    errorText_ = \"RtApiJack::getDeviceInfo: Jack server not found or connection error!\";\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  const char **ports;\n  std::string port, previousPort;\n  unsigned int nPorts = 0, nDevices = 0;\n  ports = jack_get_ports( client, NULL, NULL, 0 );\n  if ( ports ) {\n    // Parse the port names up to the first colon (:).\n    size_t iColon = 0;\n    do {\n      port = (char *) ports[ nPorts ];\n      iColon = port.find(\":\");\n      if ( iColon != std::string::npos ) {\n        port = port.substr( 0, iColon );\n        if ( port != previousPort ) {\n          if ( nDevices == device ) info.name = port;\n          nDevices++;\n          previousPort = port;\n        }\n      }\n    } while ( ports[++nPorts] );\n    free( ports );\n  }\n\n  if ( device >= nDevices ) {\n    jack_client_close( client );\n    errorText_ = \"RtApiJack::getDeviceInfo: device ID is invalid!\";\n    error( RtAudioError::INVALID_USE );\n    return info;\n  }\n\n  // Get the current jack server sample rate.\n  info.sampleRates.clear();\n\n  info.preferredSampleRate = jack_get_sample_rate( client );\n  info.sampleRates.push_back( info.preferredSampleRate );\n\n  // Count the available ports containing the client name as device\n  // channels.  Jack \"input ports\" equal RtAudio output channels.\n  unsigned int nChannels = 0;\n  ports = jack_get_ports( client, info.name.c_str(), NULL, JackPortIsInput );\n  if ( ports ) {\n    while ( ports[ nChannels ] ) nChannels++;\n    free( ports );\n    info.outputChannels = nChannels;\n  }\n\n  // Jack \"output ports\" equal RtAudio input channels.\n  nChannels = 0;\n  ports = jack_get_ports( client, info.name.c_str(), NULL, JackPortIsOutput );\n  if ( ports ) {\n    while ( ports[ nChannels ] ) nChannels++;\n    free( ports );\n    info.inputChannels = nChannels;\n  }\n\n  if ( info.outputChannels == 0 && info.inputChannels == 0 ) {\n    jack_client_close(client);\n    errorText_ = \"RtApiJack::getDeviceInfo: error determining Jack input/output channels!\";\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // If device opens for both playback and capture, we determine the channels.\n  if ( info.outputChannels > 0 && info.inputChannels > 0 )\n    info.duplexChannels = (info.outputChannels > info.inputChannels) ? info.inputChannels : info.outputChannels;\n\n  // Jack always uses 32-bit floats.\n  info.nativeFormats = RTAUDIO_FLOAT32;\n\n  // Jack doesn't provide default devices so we'll use the first available one.\n  if ( device == 0 && info.outputChannels > 0 )\n    info.isDefaultOutput = true;\n  if ( device == 0 && info.inputChannels > 0 )\n    info.isDefaultInput = true;\n\n  jack_client_close(client);\n  info.probed = true;\n  return info;\n}\n\nstatic int jackCallbackHandler( jack_nframes_t nframes, void *infoPointer )\n{\n  CallbackInfo *info = (CallbackInfo *) infoPointer;\n\n  RtApiJack *object = (RtApiJack *) info->object;\n  if ( object->callbackEvent( (unsigned long) nframes ) == false ) return 1;\n\n  return 0;\n}\n\n// This function will be called by a spawned thread when the Jack\n// server signals that it is shutting down.  It is necessary to handle\n// it this way because the jackShutdown() function must return before\n// the jack_deactivate() function (in closeStream()) will return.\nstatic void *jackCloseStream( void *ptr )\n{\n  CallbackInfo *info = (CallbackInfo *) ptr;\n  RtApiJack *object = (RtApiJack *) info->object;\n\n  object->closeStream();\n\n  pthread_exit( NULL );\n}\nstatic void jackShutdown( void *infoPointer )\n{\n  CallbackInfo *info = (CallbackInfo *) infoPointer;\n  RtApiJack *object = (RtApiJack *) info->object;\n\n  // Check current stream state.  If stopped, then we'll assume this\n  // was called as a result of a call to RtApiJack::stopStream (the\n  // deactivation of a client handle causes this function to be called).\n  // If not, we'll assume the Jack server is shutting down or some\n  // other problem occurred and we should close the stream.\n  if ( object->isStreamRunning() == false ) return;\n\n  ThreadHandle threadId;\n  pthread_create( &threadId, NULL, jackCloseStream, info );\n  std::cerr << \"\\nRtApiJack: the Jack server is shutting down this client ... stream stopped and closed!!\\n\" << std::endl;\n}\n\nstatic int jackXrun( void *infoPointer )\n{\n  JackHandle *handle = *((JackHandle **) infoPointer);\n\n  if ( handle->ports[0] ) handle->xrun[0] = true;\n  if ( handle->ports[1] ) handle->xrun[1] = true;\n\n  return 0;\n}\n\nbool RtApiJack :: probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels,\n                                   unsigned int firstChannel, unsigned int sampleRate,\n                                   RtAudioFormat format, unsigned int *bufferSize,\n                                   RtAudio::StreamOptions *options )\n{\n  JackHandle *handle = (JackHandle *) stream_.apiHandle;\n\n  // Look for jack server and try to become a client (only do once per stream).\n  jack_client_t *client = 0;\n  if ( mode == OUTPUT || ( mode == INPUT && stream_.mode != OUTPUT ) ) {\n    jack_options_t jackoptions = (jack_options_t) ( JackNoStartServer ); //JackNullOption;\n    jack_status_t *status = NULL;\n    if ( options && !options->streamName.empty() )\n      client = jack_client_open( options->streamName.c_str(), jackoptions, status );\n    else\n      client = jack_client_open( \"RtApiJack\", jackoptions, status );\n    if ( client == 0 ) {\n      errorText_ = \"RtApiJack::probeDeviceOpen: Jack server not found or connection error!\";\n      error( RtAudioError::WARNING );\n      return FAILURE;\n    }\n  }\n  else {\n    // The handle must have been created on an earlier pass.\n    client = handle->client;\n  }\n\n  const char **ports;\n  std::string port, previousPort, deviceName;\n  unsigned int nPorts = 0, nDevices = 0;\n  ports = jack_get_ports( client, NULL, NULL, 0 );\n  if ( ports ) {\n    // Parse the port names up to the first colon (:).\n    size_t iColon = 0;\n    do {\n      port = (char *) ports[ nPorts ];\n      iColon = port.find(\":\");\n      if ( iColon != std::string::npos ) {\n        port = port.substr( 0, iColon );\n        if ( port != previousPort ) {\n          if ( nDevices == device ) deviceName = port;\n          nDevices++;\n          previousPort = port;\n        }\n      }\n    } while ( ports[++nPorts] );\n    free( ports );\n  }\n\n  if ( device >= nDevices ) {\n    errorText_ = \"RtApiJack::probeDeviceOpen: device ID is invalid!\";\n    return FAILURE;\n  }\n\n  // Count the available ports containing the client name as device\n  // channels.  Jack \"input ports\" equal RtAudio output channels.\n  unsigned int nChannels = 0;\n  unsigned long flag = JackPortIsInput;\n  if ( mode == INPUT ) flag = JackPortIsOutput;\n  ports = jack_get_ports( client, deviceName.c_str(), NULL, flag );\n  if ( ports ) {\n    while ( ports[ nChannels ] ) nChannels++;\n    free( ports );\n  }\n\n  // Compare the jack ports for specified client to the requested number of channels.\n  if ( nChannels < (channels + firstChannel) ) {\n    errorStream_ << \"RtApiJack::probeDeviceOpen: requested number of channels (\" << channels << \") + offset (\" << firstChannel << \") not found for specified device (\" << device << \":\" << deviceName << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Check the jack server sample rate.\n  unsigned int jackRate = jack_get_sample_rate( client );\n  if ( sampleRate != jackRate ) {\n    jack_client_close( client );\n    errorStream_ << \"RtApiJack::probeDeviceOpen: the requested sample rate (\" << sampleRate << \") is different than the JACK server rate (\" << jackRate << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n  stream_.sampleRate = jackRate;\n\n  // Get the latency of the JACK port.\n  ports = jack_get_ports( client, deviceName.c_str(), NULL, flag );\n  if ( ports[ firstChannel ] ) {\n    // Added by Ge Wang\n    jack_latency_callback_mode_t cbmode = (mode == INPUT ? JackCaptureLatency : JackPlaybackLatency);\n    // the range (usually the min and max are equal)\n    jack_latency_range_t latrange; latrange.min = latrange.max = 0;\n    // get the latency range\n    jack_port_get_latency_range( jack_port_by_name( client, ports[firstChannel] ), cbmode, &latrange );\n    // be optimistic, use the min!\n    stream_.latency[mode] = latrange.min;\n    //stream_.latency[mode] = jack_port_get_latency( jack_port_by_name( client, ports[ firstChannel ] ) );\n  }\n  free( ports );\n\n  // The jack server always uses 32-bit floating-point data.\n  stream_.deviceFormat[mode] = RTAUDIO_FLOAT32;\n  stream_.userFormat = format;\n\n  if ( options && options->flags & RTAUDIO_NONINTERLEAVED ) stream_.userInterleaved = false;\n  else stream_.userInterleaved = true;\n\n  // Jack always uses non-interleaved buffers.\n  stream_.deviceInterleaved[mode] = false;\n\n  // Jack always provides host byte-ordered data.\n  stream_.doByteSwap[mode] = false;\n\n  // Get the buffer size.  The buffer size and number of buffers\n  // (periods) is set when the jack server is started.\n  stream_.bufferSize = (int) jack_get_buffer_size( client );\n  *bufferSize = stream_.bufferSize;\n\n  stream_.nDeviceChannels[mode] = channels;\n  stream_.nUserChannels[mode] = channels;\n\n  // Set flags for buffer conversion.\n  stream_.doConvertBuffer[mode] = false;\n  if ( stream_.userFormat != stream_.deviceFormat[mode] )\n    stream_.doConvertBuffer[mode] = true;\n  if ( stream_.userInterleaved != stream_.deviceInterleaved[mode] &&\n       stream_.nUserChannels[mode] > 1 )\n    stream_.doConvertBuffer[mode] = true;\n\n  // Allocate our JackHandle structure for the stream.\n  if ( handle == 0 ) {\n    try {\n      handle = new JackHandle;\n    }\n    catch ( std::bad_alloc& ) {\n      errorText_ = \"RtApiJack::probeDeviceOpen: error allocating JackHandle memory.\";\n      goto error;\n    }\n\n    if ( pthread_cond_init(&handle->condition, NULL) ) {\n      errorText_ = \"RtApiJack::probeDeviceOpen: error initializing pthread condition variable.\";\n      goto error;\n    }\n    stream_.apiHandle = (void *) handle;\n    handle->client = client;\n  }\n  handle->deviceName[mode] = deviceName;\n\n  // Allocate necessary internal buffers.\n  unsigned long bufferBytes;\n  bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat );\n  stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 );\n  if ( stream_.userBuffer[mode] == NULL ) {\n    errorText_ = \"RtApiJack::probeDeviceOpen: error allocating user buffer memory.\";\n    goto error;\n  }\n\n  if ( stream_.doConvertBuffer[mode] ) {\n\n    bool makeBuffer = true;\n    if ( mode == OUTPUT )\n      bufferBytes = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] );\n    else { // mode == INPUT\n      bufferBytes = stream_.nDeviceChannels[1] * formatBytes( stream_.deviceFormat[1] );\n      if ( stream_.mode == OUTPUT && stream_.deviceBuffer ) {\n        unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes(stream_.deviceFormat[0]);\n        if ( bufferBytes < bytesOut ) makeBuffer = false;\n      }\n    }\n\n    if ( makeBuffer ) {\n      bufferBytes *= *bufferSize;\n      if ( stream_.deviceBuffer ) free( stream_.deviceBuffer );\n      stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 );\n      if ( stream_.deviceBuffer == NULL ) {\n        errorText_ = \"RtApiJack::probeDeviceOpen: error allocating device buffer memory.\";\n        goto error;\n      }\n    }\n  }\n\n  // Allocate memory for the Jack ports (channels) identifiers.\n  handle->ports[mode] = (jack_port_t **) malloc ( sizeof (jack_port_t *) * channels );\n  if ( handle->ports[mode] == NULL )  {\n    errorText_ = \"RtApiJack::probeDeviceOpen: error allocating port memory.\";\n    goto error;\n  }\n\n  stream_.device[mode] = device;\n  stream_.channelOffset[mode] = firstChannel;\n  stream_.state = STREAM_STOPPED;\n  stream_.callbackInfo.object = (void *) this;\n\n  if ( stream_.mode == OUTPUT && mode == INPUT )\n    // We had already set up the stream for output.\n    stream_.mode = DUPLEX;\n  else {\n    stream_.mode = mode;\n    jack_set_process_callback( handle->client, jackCallbackHandler, (void *) &stream_.callbackInfo );\n    jack_set_xrun_callback( handle->client, jackXrun, (void *) &stream_.apiHandle );\n    jack_on_shutdown( handle->client, jackShutdown, (void *) &stream_.callbackInfo );\n  }\n\n  // Register our ports.\n  char label[64];\n  if ( mode == OUTPUT ) {\n    for ( unsigned int i=0; i<stream_.nUserChannels[0]; i++ ) {\n      snprintf( label, 64, \"outport %d\", i );\n      handle->ports[0][i] = jack_port_register( handle->client, (const char *)label,\n                                                JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0 );\n    }\n  }\n  else {\n    for ( unsigned int i=0; i<stream_.nUserChannels[1]; i++ ) {\n      snprintf( label, 64, \"inport %d\", i );\n      handle->ports[1][i] = jack_port_register( handle->client, (const char *)label,\n                                                JACK_DEFAULT_AUDIO_TYPE, JackPortIsInput, 0 );\n    }\n  }\n\n  // Setup the buffer conversion information structure.  We don't use\n  // buffers to do channel offsets, so we override that parameter\n  // here.\n  if ( stream_.doConvertBuffer[mode] ) setConvertInfo( mode, 0 );\n\n  if ( options && options->flags & RTAUDIO_JACK_DONT_CONNECT ) shouldAutoconnect_ = false;\n\n  return SUCCESS;\n\n error:\n  if ( handle ) {\n    pthread_cond_destroy( &handle->condition );\n    jack_client_close( handle->client );\n\n    if ( handle->ports[0] ) free( handle->ports[0] );\n    if ( handle->ports[1] ) free( handle->ports[1] );\n\n    delete handle;\n    stream_.apiHandle = 0;\n  }\n\n  for ( int i=0; i<2; i++ ) {\n    if ( stream_.userBuffer[i] ) {\n      free( stream_.userBuffer[i] );\n      stream_.userBuffer[i] = 0;\n    }\n  }\n\n  if ( stream_.deviceBuffer ) {\n    free( stream_.deviceBuffer );\n    stream_.deviceBuffer = 0;\n  }\n\n  return FAILURE;\n}\n\nvoid RtApiJack :: closeStream( void )\n{\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiJack::closeStream(): no open stream to close!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  JackHandle *handle = (JackHandle *) stream_.apiHandle;\n  if ( handle ) {\n\n    if ( stream_.state == STREAM_RUNNING )\n      jack_deactivate( handle->client );\n\n    jack_client_close( handle->client );\n  }\n\n  if ( handle ) {\n    if ( handle->ports[0] ) free( handle->ports[0] );\n    if ( handle->ports[1] ) free( handle->ports[1] );\n    pthread_cond_destroy( &handle->condition );\n    delete handle;\n    stream_.apiHandle = 0;\n  }\n\n  for ( int i=0; i<2; i++ ) {\n    if ( stream_.userBuffer[i] ) {\n      free( stream_.userBuffer[i] );\n      stream_.userBuffer[i] = 0;\n    }\n  }\n\n  if ( stream_.deviceBuffer ) {\n    free( stream_.deviceBuffer );\n    stream_.deviceBuffer = 0;\n  }\n\n  stream_.mode = UNINITIALIZED;\n  stream_.state = STREAM_CLOSED;\n}\n\nvoid RtApiJack :: startStream( void )\n{\n  verifyStream();\n  if ( stream_.state == STREAM_RUNNING ) {\n    errorText_ = \"RtApiJack::startStream(): the stream is already running!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  JackHandle *handle = (JackHandle *) stream_.apiHandle;\n  int result = jack_activate( handle->client );\n  if ( result ) {\n    errorText_ = \"RtApiJack::startStream(): unable to activate JACK client!\";\n    goto unlock;\n  }\n\n  const char **ports;\n\n  // Get the list of available ports.\n  if ( shouldAutoconnect_ && (stream_.mode == OUTPUT || stream_.mode == DUPLEX) ) {\n    result = 1;\n    ports = jack_get_ports( handle->client, handle->deviceName[0].c_str(), NULL, JackPortIsInput);\n    if ( ports == NULL) {\n      errorText_ = \"RtApiJack::startStream(): error determining available JACK input ports!\";\n      goto unlock;\n    }\n\n    // Now make the port connections.  Since RtAudio wasn't designed to\n    // allow the user to select particular channels of a device, we'll\n    // just open the first \"nChannels\" ports with offset.\n    for ( unsigned int i=0; i<stream_.nUserChannels[0]; i++ ) {\n      result = 1;\n      if ( ports[ stream_.channelOffset[0] + i ] )\n        result = jack_connect( handle->client, jack_port_name( handle->ports[0][i] ), ports[ stream_.channelOffset[0] + i ] );\n      if ( result ) {\n        free( ports );\n        errorText_ = \"RtApiJack::startStream(): error connecting output ports!\";\n        goto unlock;\n      }\n    }\n    free(ports);\n  }\n\n  if ( shouldAutoconnect_ && (stream_.mode == INPUT || stream_.mode == DUPLEX) ) {\n    result = 1;\n    ports = jack_get_ports( handle->client, handle->deviceName[1].c_str(), NULL, JackPortIsOutput );\n    if ( ports == NULL) {\n      errorText_ = \"RtApiJack::startStream(): error determining available JACK output ports!\";\n      goto unlock;\n    }\n\n    // Now make the port connections.  See note above.\n    for ( unsigned int i=0; i<stream_.nUserChannels[1]; i++ ) {\n      result = 1;\n      if ( ports[ stream_.channelOffset[1] + i ] )\n        result = jack_connect( handle->client, ports[ stream_.channelOffset[1] + i ], jack_port_name( handle->ports[1][i] ) );\n      if ( result ) {\n        free( ports );\n        errorText_ = \"RtApiJack::startStream(): error connecting input ports!\";\n        goto unlock;\n      }\n    }\n    free(ports);\n  }\n\n  handle->drainCounter = 0;\n  handle->internalDrain = false;\n  stream_.state = STREAM_RUNNING;\n\n unlock:\n  if ( result == 0 ) return;\n  error( RtAudioError::SYSTEM_ERROR );\n}\n\nvoid RtApiJack :: stopStream( void )\n{\n  verifyStream();\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiJack::stopStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  JackHandle *handle = (JackHandle *) stream_.apiHandle;\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n\n    if ( handle->drainCounter == 0 ) {\n      handle->drainCounter = 2;\n      pthread_cond_wait( &handle->condition, &stream_.mutex ); // block until signaled\n    }\n  }\n\n  jack_deactivate( handle->client );\n  stream_.state = STREAM_STOPPED;\n}\n\nvoid RtApiJack :: abortStream( void )\n{\n  verifyStream();\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiJack::abortStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  JackHandle *handle = (JackHandle *) stream_.apiHandle;\n  handle->drainCounter = 2;\n\n  stopStream();\n}\n\n// This function will be called by a spawned thread when the user\n// callback function signals that the stream should be stopped or\n// aborted.  It is necessary to handle it this way because the\n// callbackEvent() function must return before the jack_deactivate()\n// function will return.\nstatic void *jackStopStream( void *ptr )\n{\n  CallbackInfo *info = (CallbackInfo *) ptr;\n  RtApiJack *object = (RtApiJack *) info->object;\n\n  object->stopStream();\n  pthread_exit( NULL );\n}\n\nbool RtApiJack :: callbackEvent( unsigned long nframes )\n{\n  if ( stream_.state == STREAM_STOPPED || stream_.state == STREAM_STOPPING ) return SUCCESS;\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiCore::callbackEvent(): the stream is closed ... this shouldn't happen!\";\n    error( RtAudioError::WARNING );\n    return FAILURE;\n  }\n  if ( stream_.bufferSize != nframes ) {\n    errorText_ = \"RtApiCore::callbackEvent(): the JACK buffer size has changed ... cannot process!\";\n    error( RtAudioError::WARNING );\n    return FAILURE;\n  }\n\n  CallbackInfo *info = (CallbackInfo *) &stream_.callbackInfo;\n  JackHandle *handle = (JackHandle *) stream_.apiHandle;\n\n  // Check if we were draining the stream and signal is finished.\n  if ( handle->drainCounter > 3 ) {\n    ThreadHandle threadId;\n\n    stream_.state = STREAM_STOPPING;\n    if ( handle->internalDrain == true )\n      pthread_create( &threadId, NULL, jackStopStream, info );\n    else\n      pthread_cond_signal( &handle->condition );\n    return SUCCESS;\n  }\n\n  // Invoke user callback first, to get fresh output data.\n  if ( handle->drainCounter == 0 ) {\n    RtAudioCallback callback = (RtAudioCallback) info->callback;\n    double streamTime = getStreamTime();\n    RtAudioStreamStatus status = 0;\n    if ( stream_.mode != INPUT && handle->xrun[0] == true ) {\n      status |= RTAUDIO_OUTPUT_UNDERFLOW;\n      handle->xrun[0] = false;\n    }\n    if ( stream_.mode != OUTPUT && handle->xrun[1] == true ) {\n      status |= RTAUDIO_INPUT_OVERFLOW;\n      handle->xrun[1] = false;\n    }\n    int cbReturnValue = callback( stream_.userBuffer[0], stream_.userBuffer[1],\n                                  stream_.bufferSize, streamTime, status, info->userData );\n    if ( cbReturnValue == 2 ) {\n      stream_.state = STREAM_STOPPING;\n      handle->drainCounter = 2;\n      ThreadHandle id;\n      pthread_create( &id, NULL, jackStopStream, info );\n      return SUCCESS;\n    }\n    else if ( cbReturnValue == 1 ) {\n      handle->drainCounter = 1;\n      handle->internalDrain = true;\n    }\n  }\n\n  jack_default_audio_sample_t *jackbuffer;\n  unsigned long bufferBytes = nframes * sizeof( jack_default_audio_sample_t );\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n\n    if ( handle->drainCounter > 1 ) { // write zeros to the output stream\n\n      for ( unsigned int i=0; i<stream_.nDeviceChannels[0]; i++ ) {\n        jackbuffer = (jack_default_audio_sample_t *) jack_port_get_buffer( handle->ports[0][i], (jack_nframes_t) nframes );\n        memset( jackbuffer, 0, bufferBytes );\n      }\n\n    }\n    else if ( stream_.doConvertBuffer[0] ) {\n\n      convertBuffer( stream_.deviceBuffer, stream_.userBuffer[0], stream_.convertInfo[0] );\n\n      for ( unsigned int i=0; i<stream_.nDeviceChannels[0]; i++ ) {\n        jackbuffer = (jack_default_audio_sample_t *) jack_port_get_buffer( handle->ports[0][i], (jack_nframes_t) nframes );\n        memcpy( jackbuffer, &stream_.deviceBuffer[i*bufferBytes], bufferBytes );\n      }\n    }\n    else { // no buffer conversion\n      for ( unsigned int i=0; i<stream_.nUserChannels[0]; i++ ) {\n        jackbuffer = (jack_default_audio_sample_t *) jack_port_get_buffer( handle->ports[0][i], (jack_nframes_t) nframes );\n        memcpy( jackbuffer, &stream_.userBuffer[0][i*bufferBytes], bufferBytes );\n      }\n    }\n  }\n\n  // Don't bother draining input\n  if ( handle->drainCounter ) {\n    handle->drainCounter++;\n    goto unlock;\n  }\n\n  if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) {\n\n    if ( stream_.doConvertBuffer[1] ) {\n      for ( unsigned int i=0; i<stream_.nDeviceChannels[1]; i++ ) {\n        jackbuffer = (jack_default_audio_sample_t *) jack_port_get_buffer( handle->ports[1][i], (jack_nframes_t) nframes );\n        memcpy( &stream_.deviceBuffer[i*bufferBytes], jackbuffer, bufferBytes );\n      }\n      convertBuffer( stream_.userBuffer[1], stream_.deviceBuffer, stream_.convertInfo[1] );\n    }\n    else { // no buffer conversion\n      for ( unsigned int i=0; i<stream_.nUserChannels[1]; i++ ) {\n        jackbuffer = (jack_default_audio_sample_t *) jack_port_get_buffer( handle->ports[1][i], (jack_nframes_t) nframes );\n        memcpy( &stream_.userBuffer[1][i*bufferBytes], jackbuffer, bufferBytes );\n      }\n    }\n  }\n\n unlock:\n  RtApi::tickStreamTime();\n  return SUCCESS;\n}\n  //******************** End of __UNIX_JACK__ *********************//\n#endif\n\n#if defined(__WINDOWS_ASIO__) // ASIO API on Windows\n\n// The ASIO API is designed around a callback scheme, so this\n// implementation is similar to that used for OS-X CoreAudio and Linux\n// Jack.  The primary constraint with ASIO is that it only allows\n// access to a single driver at a time.  Thus, it is not possible to\n// have more than one simultaneous RtAudio stream.\n//\n// This implementation also requires a number of external ASIO files\n// and a few global variables.  The ASIO callback scheme does not\n// allow for the passing of user data, so we must create a global\n// pointer to our callbackInfo structure.\n//\n// On unix systems, we make use of a pthread condition variable.\n// Since there is no equivalent in Windows, I hacked something based\n// on information found in\n// http://www.cs.wustl.edu/~schmidt/win32-cv-1.html.\n\n#include \"asiosys.h\"\n#include \"asio.h\"\n#include \"iasiothiscallresolver.h\"\n#include \"asiodrivers.h\"\n#include <cmath>\n\nstatic AsioDrivers drivers;\nstatic ASIOCallbacks asioCallbacks;\nstatic ASIODriverInfo driverInfo;\nstatic CallbackInfo *asioCallbackInfo;\nstatic bool asioXRun;\n\nstruct AsioHandle {\n  int drainCounter;       // Tracks callback counts when draining\n  bool internalDrain;     // Indicates if stop is initiated from callback or not.\n  ASIOBufferInfo *bufferInfos;\n  HANDLE condition;\n\n  AsioHandle()\n    :drainCounter(0), internalDrain(false), bufferInfos(0) {}\n};\n\n// Function declarations (definitions at end of section)\nstatic const char* getAsioErrorString( ASIOError result );\nstatic void sampleRateChanged( ASIOSampleRate sRate );\nstatic long asioMessages( long selector, long value, void* message, double* opt );\n\nRtApiAsio :: RtApiAsio()\n{\n  // ASIO cannot run on a multi-threaded appartment. You can call\n  // CoInitialize beforehand, but it must be for appartment threading\n  // (in which case, CoInitilialize will return S_FALSE here).\n  coInitialized_ = false;\n  HRESULT hr = CoInitialize( NULL ); \n  if ( FAILED(hr) ) {\n    errorText_ = \"RtApiAsio::ASIO requires a single-threaded appartment. Call CoInitializeEx(0,COINIT_APARTMENTTHREADED)\";\n    error( RtAudioError::WARNING );\n  }\n  coInitialized_ = true;\n\n  drivers.removeCurrentDriver();\n  driverInfo.asioVersion = 2;\n\n  // See note in DirectSound implementation about GetDesktopWindow().\n  driverInfo.sysRef = GetForegroundWindow();\n}\n\nRtApiAsio :: ~RtApiAsio()\n{\n  if ( stream_.state != STREAM_CLOSED ) closeStream();\n  if ( coInitialized_ ) CoUninitialize();\n}\n\nunsigned int RtApiAsio :: getDeviceCount( void )\n{\n  return (unsigned int) drivers.asioGetNumDev();\n}\n\nRtAudio::DeviceInfo RtApiAsio :: getDeviceInfo( unsigned int device )\n{\n  RtAudio::DeviceInfo info;\n  info.probed = false;\n\n  // Get device ID\n  unsigned int nDevices = getDeviceCount();\n  if ( nDevices == 0 ) {\n    errorText_ = \"RtApiAsio::getDeviceInfo: no devices found!\";\n    error( RtAudioError::INVALID_USE );\n    return info;\n  }\n\n  if ( device >= nDevices ) {\n    errorText_ = \"RtApiAsio::getDeviceInfo: device ID is invalid!\";\n    error( RtAudioError::INVALID_USE );\n    return info;\n  }\n\n  // If a stream is already open, we cannot probe other devices.  Thus, use the saved results.\n  if ( stream_.state != STREAM_CLOSED ) {\n    if ( device >= devices_.size() ) {\n      errorText_ = \"RtApiAsio::getDeviceInfo: device ID was not present before stream was opened.\";\n      error( RtAudioError::WARNING );\n      return info;\n    }\n    return devices_[ device ];\n  }\n\n  char driverName[32];\n  ASIOError result = drivers.asioGetDriverName( (int) device, driverName, 32 );\n  if ( result != ASE_OK ) {\n    errorStream_ << \"RtApiAsio::getDeviceInfo: unable to get driver name (\" << getAsioErrorString( result ) << \").\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  info.name = driverName;\n\n  if ( !drivers.loadDriver( driverName ) ) {\n    errorStream_ << \"RtApiAsio::getDeviceInfo: unable to load driver (\" << driverName << \").\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  result = ASIOInit( &driverInfo );\n  if ( result != ASE_OK ) {\n    errorStream_ << \"RtApiAsio::getDeviceInfo: error (\" << getAsioErrorString( result ) << \") initializing driver (\" << driverName << \").\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // Determine the device channel information.\n  long inputChannels, outputChannels;\n  result = ASIOGetChannels( &inputChannels, &outputChannels );\n  if ( result != ASE_OK ) {\n    drivers.removeCurrentDriver();\n    errorStream_ << \"RtApiAsio::getDeviceInfo: error (\" << getAsioErrorString( result ) << \") getting channel count (\" << driverName << \").\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  info.outputChannels = outputChannels;\n  info.inputChannels = inputChannels;\n  if ( info.outputChannels > 0 && info.inputChannels > 0 )\n    info.duplexChannels = (info.outputChannels > info.inputChannels) ? info.inputChannels : info.outputChannels;\n\n  // Determine the supported sample rates.\n  info.sampleRates.clear();\n  for ( unsigned int i=0; i<MAX_SAMPLE_RATES; i++ ) {\n    result = ASIOCanSampleRate( (ASIOSampleRate) SAMPLE_RATES[i] );\n    if ( result == ASE_OK ) {\n      info.sampleRates.push_back( SAMPLE_RATES[i] );\n\n      if ( !info.preferredSampleRate || ( SAMPLE_RATES[i] <= 48000 && SAMPLE_RATES[i] > info.preferredSampleRate ) )\n        info.preferredSampleRate = SAMPLE_RATES[i];\n    }\n  }\n\n  // Determine supported data types ... just check first channel and assume rest are the same.\n  ASIOChannelInfo channelInfo;\n  channelInfo.channel = 0;\n  channelInfo.isInput = true;\n  if ( info.inputChannels <= 0 ) channelInfo.isInput = false;\n  result = ASIOGetChannelInfo( &channelInfo );\n  if ( result != ASE_OK ) {\n    drivers.removeCurrentDriver();\n    errorStream_ << \"RtApiAsio::getDeviceInfo: error (\" << getAsioErrorString( result ) << \") getting driver channel info (\" << driverName << \").\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  info.nativeFormats = 0;\n  if ( channelInfo.type == ASIOSTInt16MSB || channelInfo.type == ASIOSTInt16LSB )\n    info.nativeFormats |= RTAUDIO_SINT16;\n  else if ( channelInfo.type == ASIOSTInt32MSB || channelInfo.type == ASIOSTInt32LSB )\n    info.nativeFormats |= RTAUDIO_SINT32;\n  else if ( channelInfo.type == ASIOSTFloat32MSB || channelInfo.type == ASIOSTFloat32LSB )\n    info.nativeFormats |= RTAUDIO_FLOAT32;\n  else if ( channelInfo.type == ASIOSTFloat64MSB || channelInfo.type == ASIOSTFloat64LSB )\n    info.nativeFormats |= RTAUDIO_FLOAT64;\n  else if ( channelInfo.type == ASIOSTInt24MSB || channelInfo.type == ASIOSTInt24LSB )\n    info.nativeFormats |= RTAUDIO_SINT24;\n\n  if ( info.outputChannels > 0 )\n    if ( getDefaultOutputDevice() == device ) info.isDefaultOutput = true;\n  if ( info.inputChannels > 0 )\n    if ( getDefaultInputDevice() == device ) info.isDefaultInput = true;\n\n  info.probed = true;\n  drivers.removeCurrentDriver();\n  return info;\n}\n\nstatic void bufferSwitch( long index, ASIOBool /*processNow*/ )\n{\n  RtApiAsio *object = (RtApiAsio *) asioCallbackInfo->object;\n  object->callbackEvent( index );\n}\n\nvoid RtApiAsio :: saveDeviceInfo( void )\n{\n  devices_.clear();\n\n  unsigned int nDevices = getDeviceCount();\n  devices_.resize( nDevices );\n  for ( unsigned int i=0; i<nDevices; i++ )\n    devices_[i] = getDeviceInfo( i );\n}\n\nbool RtApiAsio :: probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels,\n                                   unsigned int firstChannel, unsigned int sampleRate,\n                                   RtAudioFormat format, unsigned int *bufferSize,\n                                   RtAudio::StreamOptions *options )\n{////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\n\n  bool isDuplexInput =  mode == INPUT && stream_.mode == OUTPUT;\n\n  // For ASIO, a duplex stream MUST use the same driver.\n  if ( isDuplexInput && stream_.device[0] != device ) {\n    errorText_ = \"RtApiAsio::probeDeviceOpen: an ASIO duplex stream must use the same device for input and output!\";\n    return FAILURE;\n  }\n\n  char driverName[32];\n  ASIOError result = drivers.asioGetDriverName( (int) device, driverName, 32 );\n  if ( result != ASE_OK ) {\n    errorStream_ << \"RtApiAsio::probeDeviceOpen: unable to get driver name (\" << getAsioErrorString( result ) << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Only load the driver once for duplex stream.\n  if ( !isDuplexInput ) {\n    // The getDeviceInfo() function will not work when a stream is open\n    // because ASIO does not allow multiple devices to run at the same\n    // time.  Thus, we'll probe the system before opening a stream and\n    // save the results for use by getDeviceInfo().\n    this->saveDeviceInfo();\n\n    if ( !drivers.loadDriver( driverName ) ) {\n      errorStream_ << \"RtApiAsio::probeDeviceOpen: unable to load driver (\" << driverName << \").\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    result = ASIOInit( &driverInfo );\n    if ( result != ASE_OK ) {\n      errorStream_ << \"RtApiAsio::probeDeviceOpen: error (\" << getAsioErrorString( result ) << \") initializing driver (\" << driverName << \").\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n  }\n\n  // keep them before any \"goto error\", they are used for error cleanup + goto device boundary checks\n  bool buffersAllocated = false;\n  AsioHandle *handle = (AsioHandle *) stream_.apiHandle;\n  unsigned int nChannels;\n\n\n  // Check the device channel count.\n  long inputChannels, outputChannels;\n  result = ASIOGetChannels( &inputChannels, &outputChannels );\n  if ( result != ASE_OK ) {\n    errorStream_ << \"RtApiAsio::probeDeviceOpen: error (\" << getAsioErrorString( result ) << \") getting channel count (\" << driverName << \").\";\n    errorText_ = errorStream_.str();\n    goto error;\n  }\n\n  if ( ( mode == OUTPUT && (channels+firstChannel) > (unsigned int) outputChannels) ||\n       ( mode == INPUT && (channels+firstChannel) > (unsigned int) inputChannels) ) {\n    errorStream_ << \"RtApiAsio::probeDeviceOpen: driver (\" << driverName << \") does not support requested channel count (\" << channels << \") + offset (\" << firstChannel << \").\";\n    errorText_ = errorStream_.str();\n    goto error;\n  }\n  stream_.nDeviceChannels[mode] = channels;\n  stream_.nUserChannels[mode] = channels;\n  stream_.channelOffset[mode] = firstChannel;\n\n  // Verify the sample rate is supported.\n  result = ASIOCanSampleRate( (ASIOSampleRate) sampleRate );\n  if ( result != ASE_OK ) {\n    errorStream_ << \"RtApiAsio::probeDeviceOpen: driver (\" << driverName << \") does not support requested sample rate (\" << sampleRate << \").\";\n    errorText_ = errorStream_.str();\n    goto error;\n  }\n\n  // Get the current sample rate\n  ASIOSampleRate currentRate;\n  result = ASIOGetSampleRate( &currentRate );\n  if ( result != ASE_OK ) {\n    errorStream_ << \"RtApiAsio::probeDeviceOpen: driver (\" << driverName << \") error getting sample rate.\";\n    errorText_ = errorStream_.str();\n    goto error;\n  }\n\n  // Set the sample rate only if necessary\n  if ( currentRate != sampleRate ) {\n    result = ASIOSetSampleRate( (ASIOSampleRate) sampleRate );\n    if ( result != ASE_OK ) {\n      errorStream_ << \"RtApiAsio::probeDeviceOpen: driver (\" << driverName << \") error setting sample rate (\" << sampleRate << \").\";\n      errorText_ = errorStream_.str();\n      goto error;\n    }\n  }\n\n  // Determine the driver data type.\n  ASIOChannelInfo channelInfo;\n  channelInfo.channel = 0;\n  if ( mode == OUTPUT ) channelInfo.isInput = false;\n  else channelInfo.isInput = true;\n  result = ASIOGetChannelInfo( &channelInfo );\n  if ( result != ASE_OK ) {\n    errorStream_ << \"RtApiAsio::probeDeviceOpen: driver (\" << driverName << \") error (\" << getAsioErrorString( result ) << \") getting data format.\";\n    errorText_ = errorStream_.str();\n    goto error;\n  }\n\n  // Assuming WINDOWS host is always little-endian.\n  stream_.doByteSwap[mode] = false;\n  stream_.userFormat = format;\n  stream_.deviceFormat[mode] = 0;\n  if ( channelInfo.type == ASIOSTInt16MSB || channelInfo.type == ASIOSTInt16LSB ) {\n    stream_.deviceFormat[mode] = RTAUDIO_SINT16;\n    if ( channelInfo.type == ASIOSTInt16MSB ) stream_.doByteSwap[mode] = true;\n  }\n  else if ( channelInfo.type == ASIOSTInt32MSB || channelInfo.type == ASIOSTInt32LSB ) {\n    stream_.deviceFormat[mode] = RTAUDIO_SINT32;\n    if ( channelInfo.type == ASIOSTInt32MSB ) stream_.doByteSwap[mode] = true;\n  }\n  else if ( channelInfo.type == ASIOSTFloat32MSB || channelInfo.type == ASIOSTFloat32LSB ) {\n    stream_.deviceFormat[mode] = RTAUDIO_FLOAT32;\n    if ( channelInfo.type == ASIOSTFloat32MSB ) stream_.doByteSwap[mode] = true;\n  }\n  else if ( channelInfo.type == ASIOSTFloat64MSB || channelInfo.type == ASIOSTFloat64LSB ) {\n    stream_.deviceFormat[mode] = RTAUDIO_FLOAT64;\n    if ( channelInfo.type == ASIOSTFloat64MSB ) stream_.doByteSwap[mode] = true;\n  }\n  else if ( channelInfo.type == ASIOSTInt24MSB || channelInfo.type == ASIOSTInt24LSB ) {\n    stream_.deviceFormat[mode] = RTAUDIO_SINT24;\n    if ( channelInfo.type == ASIOSTInt24MSB ) stream_.doByteSwap[mode] = true;\n  }\n\n  if ( stream_.deviceFormat[mode] == 0 ) {\n    errorStream_ << \"RtApiAsio::probeDeviceOpen: driver (\" << driverName << \") data format not supported by RtAudio.\";\n    errorText_ = errorStream_.str();\n    goto error;\n  }\n\n  // Set the buffer size.  For a duplex stream, this will end up\n  // setting the buffer size based on the input constraints, which\n  // should be ok.\n  long minSize, maxSize, preferSize, granularity;\n  result = ASIOGetBufferSize( &minSize, &maxSize, &preferSize, &granularity );\n  if ( result != ASE_OK ) {\n    errorStream_ << \"RtApiAsio::probeDeviceOpen: driver (\" << driverName << \") error (\" << getAsioErrorString( result ) << \") getting buffer size.\";\n    errorText_ = errorStream_.str();\n    goto error;\n  }\n\n  if ( isDuplexInput ) {\n    // When this is the duplex input (output was opened before), then we have to use the same\n    // buffersize as the output, because it might use the preferred buffer size, which most\n    // likely wasn't passed as input to this. The buffer sizes have to be identically anyway,\n    // So instead of throwing an error, make them equal. The caller uses the reference\n    // to the \"bufferSize\" param as usual to set up processing buffers.\n\n    *bufferSize = stream_.bufferSize;\n\n  } else {\n    if ( *bufferSize == 0 ) *bufferSize = preferSize;\n    else if ( *bufferSize < (unsigned int) minSize ) *bufferSize = (unsigned int) minSize;\n    else if ( *bufferSize > (unsigned int) maxSize ) *bufferSize = (unsigned int) maxSize;\n    else if ( granularity == -1 ) {\n      // Make sure bufferSize is a power of two.\n      int log2_of_min_size = 0;\n      int log2_of_max_size = 0;\n\n      for ( unsigned int i = 0; i < sizeof(long) * 8; i++ ) {\n        if ( minSize & ((long)1 << i) ) log2_of_min_size = i;\n        if ( maxSize & ((long)1 << i) ) log2_of_max_size = i;\n      }\n\n      long min_delta = std::abs( (long)*bufferSize - ((long)1 << log2_of_min_size) );\n      int min_delta_num = log2_of_min_size;\n\n      for (int i = log2_of_min_size + 1; i <= log2_of_max_size; i++) {\n        long current_delta = std::abs( (long)*bufferSize - ((long)1 << i) );\n        if (current_delta < min_delta) {\n          min_delta = current_delta;\n          min_delta_num = i;\n        }\n      }\n\n      *bufferSize = ( (unsigned int)1 << min_delta_num );\n      if ( *bufferSize < (unsigned int) minSize ) *bufferSize = (unsigned int) minSize;\n      else if ( *bufferSize > (unsigned int) maxSize ) *bufferSize = (unsigned int) maxSize;\n    }\n    else if ( granularity != 0 ) {\n      // Set to an even multiple of granularity, rounding up.\n      *bufferSize = (*bufferSize + granularity-1) / granularity * granularity;\n    }\n  }\n\n  /*\n  // we don't use it anymore, see above!\n  // Just left it here for the case...\n  if ( isDuplexInput && stream_.bufferSize != *bufferSize ) {\n    errorText_ = \"RtApiAsio::probeDeviceOpen: input/output buffersize discrepancy!\";\n    goto error;\n  }\n  */\n\n  stream_.bufferSize = *bufferSize;\n  stream_.nBuffers = 2;\n\n  if ( options && options->flags & RTAUDIO_NONINTERLEAVED ) stream_.userInterleaved = false;\n  else stream_.userInterleaved = true;\n\n  // ASIO always uses non-interleaved buffers.\n  stream_.deviceInterleaved[mode] = false;\n\n  // Allocate, if necessary, our AsioHandle structure for the stream.\n  if ( handle == 0 ) {\n    try {\n      handle = new AsioHandle;\n    }\n    catch ( std::bad_alloc& ) {\n      errorText_ = \"RtApiAsio::probeDeviceOpen: error allocating AsioHandle memory.\";\n      goto error;\n    }\n    handle->bufferInfos = 0;\n\n    // Create a manual-reset event.\n    handle->condition = CreateEvent( NULL,   // no security\n                                     TRUE,   // manual-reset\n                                     FALSE,  // non-signaled initially\n                                     NULL ); // unnamed\n    stream_.apiHandle = (void *) handle;\n  }\n\n  // Create the ASIO internal buffers.  Since RtAudio sets up input\n  // and output separately, we'll have to dispose of previously\n  // created output buffers for a duplex stream.\n  if ( mode == INPUT && stream_.mode == OUTPUT ) {\n    ASIODisposeBuffers();\n    if ( handle->bufferInfos ) free( handle->bufferInfos );\n  }\n\n  // Allocate, initialize, and save the bufferInfos in our stream callbackInfo structure.\n  unsigned int i;\n  nChannels = stream_.nDeviceChannels[0] + stream_.nDeviceChannels[1];\n  handle->bufferInfos = (ASIOBufferInfo *) malloc( nChannels * sizeof(ASIOBufferInfo) );\n  if ( handle->bufferInfos == NULL ) {\n    errorStream_ << \"RtApiAsio::probeDeviceOpen: error allocating bufferInfo memory for driver (\" << driverName << \").\";\n    errorText_ = errorStream_.str();\n    goto error;\n  }\n\n  ASIOBufferInfo *infos;\n  infos = handle->bufferInfos;\n  for ( i=0; i<stream_.nDeviceChannels[0]; i++, infos++ ) {\n    infos->isInput = ASIOFalse;\n    infos->channelNum = i + stream_.channelOffset[0];\n    infos->buffers[0] = infos->buffers[1] = 0;\n  }\n  for ( i=0; i<stream_.nDeviceChannels[1]; i++, infos++ ) {\n    infos->isInput = ASIOTrue;\n    infos->channelNum = i + stream_.channelOffset[1];\n    infos->buffers[0] = infos->buffers[1] = 0;\n  }\n\n  // prepare for callbacks\n  stream_.sampleRate = sampleRate;\n  stream_.device[mode] = device;\n  stream_.mode = isDuplexInput ? DUPLEX : mode;\n\n  // store this class instance before registering callbacks, that are going to use it\n  asioCallbackInfo = &stream_.callbackInfo;\n  stream_.callbackInfo.object = (void *) this;\n\n  // Set up the ASIO callback structure and create the ASIO data buffers.\n  asioCallbacks.bufferSwitch = &bufferSwitch;\n  asioCallbacks.sampleRateDidChange = &sampleRateChanged;\n  asioCallbacks.asioMessage = &asioMessages;\n  asioCallbacks.bufferSwitchTimeInfo = NULL;\n  result = ASIOCreateBuffers( handle->bufferInfos, nChannels, stream_.bufferSize, &asioCallbacks );\n  if ( result != ASE_OK ) {\n    // Standard method failed. This can happen with strict/misbehaving drivers that return valid buffer size ranges\n    // but only accept the preferred buffer size as parameter for ASIOCreateBuffers. eg. Creatives ASIO driver\n    // in that case, let's be naïve and try that instead\n    *bufferSize = preferSize;\n    stream_.bufferSize = *bufferSize;\n    result = ASIOCreateBuffers( handle->bufferInfos, nChannels, stream_.bufferSize, &asioCallbacks );\n  }\n\n  if ( result != ASE_OK ) {\n    errorStream_ << \"RtApiAsio::probeDeviceOpen: driver (\" << driverName << \") error (\" << getAsioErrorString( result ) << \") creating buffers.\";\n    errorText_ = errorStream_.str();\n    goto error;\n  }\n  buffersAllocated = true;  \n  stream_.state = STREAM_STOPPED;\n\n  // Set flags for buffer conversion.\n  stream_.doConvertBuffer[mode] = false;\n  if ( stream_.userFormat != stream_.deviceFormat[mode] )\n    stream_.doConvertBuffer[mode] = true;\n  if ( stream_.userInterleaved != stream_.deviceInterleaved[mode] &&\n       stream_.nUserChannels[mode] > 1 )\n    stream_.doConvertBuffer[mode] = true;\n\n  // Allocate necessary internal buffers\n  unsigned long bufferBytes;\n  bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat );\n  stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 );\n  if ( stream_.userBuffer[mode] == NULL ) {\n    errorText_ = \"RtApiAsio::probeDeviceOpen: error allocating user buffer memory.\";\n    goto error;\n  }\n\n  if ( stream_.doConvertBuffer[mode] ) {\n\n    bool makeBuffer = true;\n    bufferBytes = stream_.nDeviceChannels[mode] * formatBytes( stream_.deviceFormat[mode] );\n    if ( isDuplexInput && stream_.deviceBuffer ) {\n      unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] );\n      if ( bufferBytes <= bytesOut ) makeBuffer = false;\n    }\n\n    if ( makeBuffer ) {\n      bufferBytes *= *bufferSize;\n      if ( stream_.deviceBuffer ) free( stream_.deviceBuffer );\n      stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 );\n      if ( stream_.deviceBuffer == NULL ) {\n        errorText_ = \"RtApiAsio::probeDeviceOpen: error allocating device buffer memory.\";\n        goto error;\n      }\n    }\n  }\n\n  // Determine device latencies\n  long inputLatency, outputLatency;\n  result = ASIOGetLatencies( &inputLatency, &outputLatency );\n  if ( result != ASE_OK ) {\n    errorStream_ << \"RtApiAsio::probeDeviceOpen: driver (\" << driverName << \") error (\" << getAsioErrorString( result ) << \") getting latency.\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING); // warn but don't fail\n  }\n  else {\n    stream_.latency[0] = outputLatency;\n    stream_.latency[1] = inputLatency;\n  }\n\n  // Setup the buffer conversion information structure.  We don't use\n  // buffers to do channel offsets, so we override that parameter\n  // here.\n  if ( stream_.doConvertBuffer[mode] ) setConvertInfo( mode, 0 );\n\n  return SUCCESS;\n\n error:\n  if ( !isDuplexInput ) {\n    // the cleanup for error in the duplex input, is done by RtApi::openStream\n    // So we clean up for single channel only\n\n    if ( buffersAllocated )\n      ASIODisposeBuffers();\n\n    drivers.removeCurrentDriver();\n\n    if ( handle ) {\n      CloseHandle( handle->condition );\n      if ( handle->bufferInfos )\n        free( handle->bufferInfos );\n\n      delete handle;\n      stream_.apiHandle = 0;\n    }\n\n\n    if ( stream_.userBuffer[mode] ) {\n      free( stream_.userBuffer[mode] );\n      stream_.userBuffer[mode] = 0;\n    }\n\n    if ( stream_.deviceBuffer ) {\n      free( stream_.deviceBuffer );\n      stream_.deviceBuffer = 0;\n    }\n  }\n\n  return FAILURE;\n}////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\n\nvoid RtApiAsio :: closeStream()\n{\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiAsio::closeStream(): no open stream to close!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  if ( stream_.state == STREAM_RUNNING ) {\n    stream_.state = STREAM_STOPPED;\n    ASIOStop();\n  }\n  ASIODisposeBuffers();\n  drivers.removeCurrentDriver();\n\n  AsioHandle *handle = (AsioHandle *) stream_.apiHandle;\n  if ( handle ) {\n    CloseHandle( handle->condition );\n    if ( handle->bufferInfos )\n      free( handle->bufferInfos );\n    delete handle;\n    stream_.apiHandle = 0;\n  }\n\n  for ( int i=0; i<2; i++ ) {\n    if ( stream_.userBuffer[i] ) {\n      free( stream_.userBuffer[i] );\n      stream_.userBuffer[i] = 0;\n    }\n  }\n\n  if ( stream_.deviceBuffer ) {\n    free( stream_.deviceBuffer );\n    stream_.deviceBuffer = 0;\n  }\n\n  stream_.mode = UNINITIALIZED;\n  stream_.state = STREAM_CLOSED;\n}\n\nbool stopThreadCalled = false;\n\nvoid RtApiAsio :: startStream()\n{\n  verifyStream();\n  if ( stream_.state == STREAM_RUNNING ) {\n    errorText_ = \"RtApiAsio::startStream(): the stream is already running!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  AsioHandle *handle = (AsioHandle *) stream_.apiHandle;\n  ASIOError result = ASIOStart();\n  if ( result != ASE_OK ) {\n    errorStream_ << \"RtApiAsio::startStream: error (\" << getAsioErrorString( result ) << \") starting device.\";\n    errorText_ = errorStream_.str();\n    goto unlock;\n  }\n\n  handle->drainCounter = 0;\n  handle->internalDrain = false;\n  ResetEvent( handle->condition );\n  stream_.state = STREAM_RUNNING;\n  asioXRun = false;\n\n unlock:\n  stopThreadCalled = false;\n\n  if ( result == ASE_OK ) return;\n  error( RtAudioError::SYSTEM_ERROR );\n}\n\nvoid RtApiAsio :: stopStream()\n{\n  verifyStream();\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiAsio::stopStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  AsioHandle *handle = (AsioHandle *) stream_.apiHandle;\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n    if ( handle->drainCounter == 0 ) {\n      handle->drainCounter = 2;\n      WaitForSingleObject( handle->condition, INFINITE );  // block until signaled\n    }\n  }\n\n  stream_.state = STREAM_STOPPED;\n\n  ASIOError result = ASIOStop();\n  if ( result != ASE_OK ) {\n    errorStream_ << \"RtApiAsio::stopStream: error (\" << getAsioErrorString( result ) << \") stopping device.\";\n    errorText_ = errorStream_.str();\n  }\n\n  if ( result == ASE_OK ) return;\n  error( RtAudioError::SYSTEM_ERROR );\n}\n\nvoid RtApiAsio :: abortStream()\n{\n  verifyStream();\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiAsio::abortStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  // The following lines were commented-out because some behavior was\n  // noted where the device buffers need to be zeroed to avoid\n  // continuing sound, even when the device buffers are completely\n  // disposed.  So now, calling abort is the same as calling stop.\n  // AsioHandle *handle = (AsioHandle *) stream_.apiHandle;\n  // handle->drainCounter = 2;\n  stopStream();\n}\n\n// This function will be called by a spawned thread when the user\n// callback function signals that the stream should be stopped or\n// aborted.  It is necessary to handle it this way because the\n// callbackEvent() function must return before the ASIOStop()\n// function will return.\nstatic unsigned __stdcall asioStopStream( void *ptr )\n{\n  CallbackInfo *info = (CallbackInfo *) ptr;\n  RtApiAsio *object = (RtApiAsio *) info->object;\n\n  object->stopStream();\n  _endthreadex( 0 );\n  return 0;\n}\n\nbool RtApiAsio :: callbackEvent( long bufferIndex )\n{\n  if ( stream_.state == STREAM_STOPPED || stream_.state == STREAM_STOPPING ) return SUCCESS;\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiAsio::callbackEvent(): the stream is closed ... this shouldn't happen!\";\n    error( RtAudioError::WARNING );\n    return FAILURE;\n  }\n\n  CallbackInfo *info = (CallbackInfo *) &stream_.callbackInfo;\n  AsioHandle *handle = (AsioHandle *) stream_.apiHandle;\n\n  // Check if we were draining the stream and signal if finished.\n  if ( handle->drainCounter > 3 ) {\n\n    stream_.state = STREAM_STOPPING;\n    if ( handle->internalDrain == false )\n      SetEvent( handle->condition );\n    else { // spawn a thread to stop the stream\n      unsigned threadId;\n      stream_.callbackInfo.thread = _beginthreadex( NULL, 0, &asioStopStream,\n                                                    &stream_.callbackInfo, 0, &threadId );\n    }\n    return SUCCESS;\n  }\n\n  // Invoke user callback to get fresh output data UNLESS we are\n  // draining stream.\n  if ( handle->drainCounter == 0 ) {\n    RtAudioCallback callback = (RtAudioCallback) info->callback;\n    double streamTime = getStreamTime();\n    RtAudioStreamStatus status = 0;\n    if ( stream_.mode != INPUT && asioXRun == true ) {\n      status |= RTAUDIO_OUTPUT_UNDERFLOW;\n      asioXRun = false;\n    }\n    if ( stream_.mode != OUTPUT && asioXRun == true ) {\n      status |= RTAUDIO_INPUT_OVERFLOW;\n      asioXRun = false;\n    }\n    int cbReturnValue = callback( stream_.userBuffer[0], stream_.userBuffer[1],\n                                     stream_.bufferSize, streamTime, status, info->userData );\n    if ( cbReturnValue == 2 ) {\n      stream_.state = STREAM_STOPPING;\n      handle->drainCounter = 2;\n      unsigned threadId;\n      stream_.callbackInfo.thread = _beginthreadex( NULL, 0, &asioStopStream,\n                                                    &stream_.callbackInfo, 0, &threadId );\n      return SUCCESS;\n    }\n    else if ( cbReturnValue == 1 ) {\n      handle->drainCounter = 1;\n      handle->internalDrain = true;\n    }\n  }\n\n  unsigned int nChannels, bufferBytes, i, j;\n  nChannels = stream_.nDeviceChannels[0] + stream_.nDeviceChannels[1];\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n\n    bufferBytes = stream_.bufferSize * formatBytes( stream_.deviceFormat[0] );\n\n    if ( handle->drainCounter > 1 ) { // write zeros to the output stream\n\n      for ( i=0, j=0; i<nChannels; i++ ) {\n        if ( handle->bufferInfos[i].isInput != ASIOTrue )\n          memset( handle->bufferInfos[i].buffers[bufferIndex], 0, bufferBytes );\n      }\n\n    }\n    else if ( stream_.doConvertBuffer[0] ) {\n\n      convertBuffer( stream_.deviceBuffer, stream_.userBuffer[0], stream_.convertInfo[0] );\n      if ( stream_.doByteSwap[0] )\n        byteSwapBuffer( stream_.deviceBuffer,\n                        stream_.bufferSize * stream_.nDeviceChannels[0],\n                        stream_.deviceFormat[0] );\n\n      for ( i=0, j=0; i<nChannels; i++ ) {\n        if ( handle->bufferInfos[i].isInput != ASIOTrue )\n          memcpy( handle->bufferInfos[i].buffers[bufferIndex],\n                  &stream_.deviceBuffer[j++*bufferBytes], bufferBytes );\n      }\n\n    }\n    else {\n\n      if ( stream_.doByteSwap[0] )\n        byteSwapBuffer( stream_.userBuffer[0],\n                        stream_.bufferSize * stream_.nUserChannels[0],\n                        stream_.userFormat );\n\n      for ( i=0, j=0; i<nChannels; i++ ) {\n        if ( handle->bufferInfos[i].isInput != ASIOTrue )\n          memcpy( handle->bufferInfos[i].buffers[bufferIndex],\n                  &stream_.userBuffer[0][bufferBytes*j++], bufferBytes );\n      }\n\n    }\n  }\n\n  // Don't bother draining input\n  if ( handle->drainCounter ) {\n    handle->drainCounter++;\n    goto unlock;\n  }\n\n  if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) {\n\n    bufferBytes = stream_.bufferSize * formatBytes(stream_.deviceFormat[1]);\n\n    if (stream_.doConvertBuffer[1]) {\n\n      // Always interleave ASIO input data.\n      for ( i=0, j=0; i<nChannels; i++ ) {\n        if ( handle->bufferInfos[i].isInput == ASIOTrue )\n          memcpy( &stream_.deviceBuffer[j++*bufferBytes],\n                  handle->bufferInfos[i].buffers[bufferIndex],\n                  bufferBytes );\n      }\n\n      if ( stream_.doByteSwap[1] )\n        byteSwapBuffer( stream_.deviceBuffer,\n                        stream_.bufferSize * stream_.nDeviceChannels[1],\n                        stream_.deviceFormat[1] );\n      convertBuffer( stream_.userBuffer[1], stream_.deviceBuffer, stream_.convertInfo[1] );\n\n    }\n    else {\n      for ( i=0, j=0; i<nChannels; i++ ) {\n        if ( handle->bufferInfos[i].isInput == ASIOTrue ) {\n          memcpy( &stream_.userBuffer[1][bufferBytes*j++],\n                  handle->bufferInfos[i].buffers[bufferIndex],\n                  bufferBytes );\n        }\n      }\n\n      if ( stream_.doByteSwap[1] )\n        byteSwapBuffer( stream_.userBuffer[1],\n                        stream_.bufferSize * stream_.nUserChannels[1],\n                        stream_.userFormat );\n    }\n  }\n\n unlock:\n  // The following call was suggested by Malte Clasen.  While the API\n  // documentation indicates it should not be required, some device\n  // drivers apparently do not function correctly without it.\n  ASIOOutputReady();\n\n  RtApi::tickStreamTime();\n  return SUCCESS;\n}\n\nstatic void sampleRateChanged( ASIOSampleRate sRate )\n{\n  // The ASIO documentation says that this usually only happens during\n  // external sync.  Audio processing is not stopped by the driver,\n  // actual sample rate might not have even changed, maybe only the\n  // sample rate status of an AES/EBU or S/PDIF digital input at the\n  // audio device.\n\n  RtApi *object = (RtApi *) asioCallbackInfo->object;\n  try {\n    object->stopStream();\n  }\n  catch ( RtAudioError &exception ) {\n    std::cerr << \"\\nRtApiAsio: sampleRateChanged() error (\" << exception.getMessage() << \")!\\n\" << std::endl;\n    return;\n  }\n\n  std::cerr << \"\\nRtApiAsio: driver reports sample rate changed to \" << sRate << \" ... stream stopped!!!\\n\" << std::endl;\n}\n\nstatic long asioMessages( long selector, long value, void* /*message*/, double* /*opt*/ )\n{\n  long ret = 0;\n\n  switch( selector ) {\n  case kAsioSelectorSupported:\n    if ( value == kAsioResetRequest\n         || value == kAsioEngineVersion\n         || value == kAsioResyncRequest\n         || value == kAsioLatenciesChanged\n         // The following three were added for ASIO 2.0, you don't\n         // necessarily have to support them.\n         || value == kAsioSupportsTimeInfo\n         || value == kAsioSupportsTimeCode\n         || value == kAsioSupportsInputMonitor)\n      ret = 1L;\n    break;\n  case kAsioResetRequest:\n    // Defer the task and perform the reset of the driver during the\n    // next \"safe\" situation.  You cannot reset the driver right now,\n    // as this code is called from the driver.  Reset the driver is\n    // done by completely destruct is. I.e. ASIOStop(),\n    // ASIODisposeBuffers(), Destruction Afterwards you initialize the\n    // driver again.\n    std::cerr << \"\\nRtApiAsio: driver reset requested!!!\" << std::endl;\n    ret = 1L;\n    break;\n  case kAsioResyncRequest:\n    // This informs the application that the driver encountered some\n    // non-fatal data loss.  It is used for synchronization purposes\n    // of different media.  Added mainly to work around the Win16Mutex\n    // problems in Windows 95/98 with the Windows Multimedia system,\n    // which could lose data because the Mutex was held too long by\n    // another thread.  However a driver can issue it in other\n    // situations, too.\n    // std::cerr << \"\\nRtApiAsio: driver resync requested!!!\" << std::endl;\n    asioXRun = true;\n    ret = 1L;\n    break;\n  case kAsioLatenciesChanged:\n    // This will inform the host application that the drivers were\n    // latencies changed.  Beware, it this does not mean that the\n    // buffer sizes have changed!  You might need to update internal\n    // delay data.\n    std::cerr << \"\\nRtApiAsio: driver latency may have changed!!!\" << std::endl;\n    ret = 1L;\n    break;\n  case kAsioEngineVersion:\n    // Return the supported ASIO version of the host application.  If\n    // a host application does not implement this selector, ASIO 1.0\n    // is assumed by the driver.\n    ret = 2L;\n    break;\n  case kAsioSupportsTimeInfo:\n    // Informs the driver whether the\n    // asioCallbacks.bufferSwitchTimeInfo() callback is supported.\n    // For compatibility with ASIO 1.0 drivers the host application\n    // should always support the \"old\" bufferSwitch method, too.\n    ret = 0;\n    break;\n  case kAsioSupportsTimeCode:\n    // Informs the driver whether application is interested in time\n    // code info.  If an application does not need to know about time\n    // code, the driver has less work to do.\n    ret = 0;\n    break;\n  }\n  return ret;\n}\n\nstatic const char* getAsioErrorString( ASIOError result )\n{\n  struct Messages \n  {\n    ASIOError value;\n    const char*message;\n  };\n\n  static const Messages m[] = \n    {\n      {   ASE_NotPresent,    \"Hardware input or output is not present or available.\" },\n      {   ASE_HWMalfunction,  \"Hardware is malfunctioning.\" },\n      {   ASE_InvalidParameter, \"Invalid input parameter.\" },\n      {   ASE_InvalidMode,      \"Invalid mode.\" },\n      {   ASE_SPNotAdvancing,     \"Sample position not advancing.\" },\n      {   ASE_NoClock,            \"Sample clock or rate cannot be determined or is not present.\" },\n      {   ASE_NoMemory,           \"Not enough memory to complete the request.\" }\n    };\n\n  for ( unsigned int i = 0; i < sizeof(m)/sizeof(m[0]); ++i )\n    if ( m[i].value == result ) return m[i].message;\n\n  return \"Unknown error.\";\n}\n\n//******************** End of __WINDOWS_ASIO__ *********************//\n#endif\n\n\n#if defined(__WINDOWS_WASAPI__) // Windows WASAPI API\n\n// Authored by Marcus Tomlinson <themarcustomlinson@gmail.com>, April 2014\n// - Introduces support for the Windows WASAPI API\n// - Aims to deliver bit streams to and from hardware at the lowest possible latency, via the absolute minimum buffer sizes required\n// - Provides flexible stream configuration to an otherwise strict and inflexible WASAPI interface\n// - Includes automatic internal conversion of sample rate and buffer size between hardware and the user\n\n#ifndef INITGUID\n  #define INITGUID\n#endif\n#include <audioclient.h>\n#include <avrt.h>\n#include <mmdeviceapi.h>\n#include <functiondiscoverykeys_devpkey.h>\n#include <sstream>\n\n//=============================================================================\n\n#define SAFE_RELEASE( objectPtr )\\\nif ( objectPtr )\\\n{\\\n  objectPtr->Release();\\\n  objectPtr = NULL;\\\n}\n\ntypedef HANDLE ( __stdcall *TAvSetMmThreadCharacteristicsPtr )( LPCWSTR TaskName, LPDWORD TaskIndex );\n\n//-----------------------------------------------------------------------------\n\n// WASAPI dictates stream sample rate, format, channel count, and in some cases, buffer size.\n// Therefore we must perform all necessary conversions to user buffers in order to satisfy these\n// requirements. WasapiBuffer ring buffers are used between HwIn->UserIn and UserOut->HwOut to\n// provide intermediate storage for read / write synchronization.\nclass WasapiBuffer\n{\npublic:\n  WasapiBuffer()\n    : buffer_( NULL ),\n      bufferSize_( 0 ),\n      inIndex_( 0 ),\n      outIndex_( 0 ) {}\n\n  ~WasapiBuffer() {\n    free( buffer_ );\n  }\n\n  // sets the length of the internal ring buffer\n  void setBufferSize( unsigned int bufferSize, unsigned int formatBytes ) {\n    free( buffer_ );\n\n    buffer_ = ( char* ) calloc( bufferSize, formatBytes );\n\n    bufferSize_ = bufferSize;\n    inIndex_ = 0;\n    outIndex_ = 0;\n  }\n\n  // attempt to push a buffer into the ring buffer at the current \"in\" index\n  bool pushBuffer( char* buffer, unsigned int bufferSize, RtAudioFormat format )\n  {\n    if ( !buffer ||                 // incoming buffer is NULL\n         bufferSize == 0 ||         // incoming buffer has no data\n         bufferSize > bufferSize_ ) // incoming buffer too large\n    {\n      return false;\n    }\n\n    unsigned int relOutIndex = outIndex_;\n    unsigned int inIndexEnd = inIndex_ + bufferSize;\n    if ( relOutIndex < inIndex_ && inIndexEnd >= bufferSize_ ) {\n      relOutIndex += bufferSize_;\n    }\n\n    // \"in\" index can end on the \"out\" index but cannot begin at it\n    if ( inIndex_ <= relOutIndex && inIndexEnd > relOutIndex ) {\n      return false; // not enough space between \"in\" index and \"out\" index\n    }\n\n    // copy buffer from external to internal\n    int fromZeroSize = inIndex_ + bufferSize - bufferSize_;\n    fromZeroSize = fromZeroSize < 0 ? 0 : fromZeroSize;\n    int fromInSize = bufferSize - fromZeroSize;\n\n    switch( format )\n      {\n      case RTAUDIO_SINT8:\n        memcpy( &( ( char* ) buffer_ )[inIndex_], buffer, fromInSize * sizeof( char ) );\n        memcpy( buffer_, &( ( char* ) buffer )[fromInSize], fromZeroSize * sizeof( char ) );\n        break;\n      case RTAUDIO_SINT16:\n        memcpy( &( ( short* ) buffer_ )[inIndex_], buffer, fromInSize * sizeof( short ) );\n        memcpy( buffer_, &( ( short* ) buffer )[fromInSize], fromZeroSize * sizeof( short ) );\n        break;\n      case RTAUDIO_SINT24:\n        memcpy( &( ( S24* ) buffer_ )[inIndex_], buffer, fromInSize * sizeof( S24 ) );\n        memcpy( buffer_, &( ( S24* ) buffer )[fromInSize], fromZeroSize * sizeof( S24 ) );\n        break;\n      case RTAUDIO_SINT32:\n        memcpy( &( ( int* ) buffer_ )[inIndex_], buffer, fromInSize * sizeof( int ) );\n        memcpy( buffer_, &( ( int* ) buffer )[fromInSize], fromZeroSize * sizeof( int ) );\n        break;\n      case RTAUDIO_FLOAT32:\n        memcpy( &( ( float* ) buffer_ )[inIndex_], buffer, fromInSize * sizeof( float ) );\n        memcpy( buffer_, &( ( float* ) buffer )[fromInSize], fromZeroSize * sizeof( float ) );\n        break;\n      case RTAUDIO_FLOAT64:\n        memcpy( &( ( double* ) buffer_ )[inIndex_], buffer, fromInSize * sizeof( double ) );\n        memcpy( buffer_, &( ( double* ) buffer )[fromInSize], fromZeroSize * sizeof( double ) );\n        break;\n    }\n\n    // update \"in\" index\n    inIndex_ += bufferSize;\n    inIndex_ %= bufferSize_;\n\n    return true;\n  }\n\n  // attempt to pull a buffer from the ring buffer from the current \"out\" index\n  bool pullBuffer( char* buffer, unsigned int bufferSize, RtAudioFormat format )\n  {\n    if ( !buffer ||                 // incoming buffer is NULL\n         bufferSize == 0 ||         // incoming buffer has no data\n         bufferSize > bufferSize_ ) // incoming buffer too large\n    {\n      return false;\n    }\n\n    unsigned int relInIndex = inIndex_;\n    unsigned int outIndexEnd = outIndex_ + bufferSize;\n    if ( relInIndex < outIndex_ && outIndexEnd >= bufferSize_ ) {\n      relInIndex += bufferSize_;\n    }\n\n    // \"out\" index can begin at and end on the \"in\" index\n    if ( outIndex_ < relInIndex && outIndexEnd > relInIndex ) {\n      return false; // not enough space between \"out\" index and \"in\" index\n    }\n\n    // copy buffer from internal to external\n    int fromZeroSize = outIndex_ + bufferSize - bufferSize_;\n    fromZeroSize = fromZeroSize < 0 ? 0 : fromZeroSize;\n    int fromOutSize = bufferSize - fromZeroSize;\n\n    switch( format )\n    {\n      case RTAUDIO_SINT8:\n        memcpy( buffer, &( ( char* ) buffer_ )[outIndex_], fromOutSize * sizeof( char ) );\n        memcpy( &( ( char* ) buffer )[fromOutSize], buffer_, fromZeroSize * sizeof( char ) );\n        break;\n      case RTAUDIO_SINT16:\n        memcpy( buffer, &( ( short* ) buffer_ )[outIndex_], fromOutSize * sizeof( short ) );\n        memcpy( &( ( short* ) buffer )[fromOutSize], buffer_, fromZeroSize * sizeof( short ) );\n        break;\n      case RTAUDIO_SINT24:\n        memcpy( buffer, &( ( S24* ) buffer_ )[outIndex_], fromOutSize * sizeof( S24 ) );\n        memcpy( &( ( S24* ) buffer )[fromOutSize], buffer_, fromZeroSize * sizeof( S24 ) );\n        break;\n      case RTAUDIO_SINT32:\n        memcpy( buffer, &( ( int* ) buffer_ )[outIndex_], fromOutSize * sizeof( int ) );\n        memcpy( &( ( int* ) buffer )[fromOutSize], buffer_, fromZeroSize * sizeof( int ) );\n        break;\n      case RTAUDIO_FLOAT32:\n        memcpy( buffer, &( ( float* ) buffer_ )[outIndex_], fromOutSize * sizeof( float ) );\n        memcpy( &( ( float* ) buffer )[fromOutSize], buffer_, fromZeroSize * sizeof( float ) );\n        break;\n      case RTAUDIO_FLOAT64:\n        memcpy( buffer, &( ( double* ) buffer_ )[outIndex_], fromOutSize * sizeof( double ) );\n        memcpy( &( ( double* ) buffer )[fromOutSize], buffer_, fromZeroSize * sizeof( double ) );\n        break;\n    }\n\n    // update \"out\" index\n    outIndex_ += bufferSize;\n    outIndex_ %= bufferSize_;\n\n    return true;\n  }\n\nprivate:\n  char* buffer_;\n  unsigned int bufferSize_;\n  unsigned int inIndex_;\n  unsigned int outIndex_;\n};\n\n//-----------------------------------------------------------------------------\n\n// A structure to hold various information related to the WASAPI implementation.\nstruct WasapiHandle\n{\n  IAudioClient* captureAudioClient;\n  IAudioClient* renderAudioClient;\n  IAudioCaptureClient* captureClient;\n  IAudioRenderClient* renderClient;\n  HANDLE captureEvent;\n  HANDLE renderEvent;\n\n  WasapiHandle()\n  : captureAudioClient( NULL ),\n    renderAudioClient( NULL ),\n    captureClient( NULL ),\n    renderClient( NULL ),\n    captureEvent( NULL ),\n    renderEvent( NULL ) {}\n};\n\n//=============================================================================\n\nRtApiWasapi::RtApiWasapi()\n  : coInitialized_( false ), deviceEnumerator_( NULL )\n{\n  // WASAPI can run either apartment or multi-threaded\n  HRESULT hr = CoInitialize( NULL );\n  if ( !FAILED( hr ) )\n    coInitialized_ = true;\n\n  // Instantiate device enumerator\n  hr = CoCreateInstance( __uuidof( MMDeviceEnumerator ), NULL,\n                         CLSCTX_ALL, __uuidof( IMMDeviceEnumerator ),\n                         ( void** ) &deviceEnumerator_ );\n\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::RtApiWasapi: Unable to instantiate device enumerator\";\n    error( RtAudioError::DRIVER_ERROR );\n  }\n}\n\n//-----------------------------------------------------------------------------\n\nRtApiWasapi::~RtApiWasapi()\n{\n  if ( stream_.state != STREAM_CLOSED )\n    closeStream();\n\n  SAFE_RELEASE( deviceEnumerator_ );\n\n  // If this object previously called CoInitialize()\n  if ( coInitialized_ )\n    CoUninitialize();\n}\n\n//=============================================================================\n\nunsigned int RtApiWasapi::getDeviceCount( void )\n{\n  unsigned int captureDeviceCount = 0;\n  unsigned int renderDeviceCount = 0;\n\n  IMMDeviceCollection* captureDevices = NULL;\n  IMMDeviceCollection* renderDevices = NULL;\n\n  // Count capture devices\n  errorText_.clear();\n  HRESULT hr = deviceEnumerator_->EnumAudioEndpoints( eCapture, DEVICE_STATE_ACTIVE, &captureDevices );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceCount: Unable to retrieve capture device collection.\";\n    goto Exit;\n  }\n\n  hr = captureDevices->GetCount( &captureDeviceCount );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceCount: Unable to retrieve capture device count.\";\n    goto Exit;\n  }\n\n  // Count render devices\n  hr = deviceEnumerator_->EnumAudioEndpoints( eRender, DEVICE_STATE_ACTIVE, &renderDevices );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceCount: Unable to retrieve render device collection.\";\n    goto Exit;\n  }\n\n  hr = renderDevices->GetCount( &renderDeviceCount );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceCount: Unable to retrieve render device count.\";\n    goto Exit;\n  }\n\nExit:\n  // release all references\n  SAFE_RELEASE( captureDevices );\n  SAFE_RELEASE( renderDevices );\n\n  if ( errorText_.empty() )\n    return captureDeviceCount + renderDeviceCount;\n\n  error( RtAudioError::DRIVER_ERROR );\n  return 0;\n}\n\n//-----------------------------------------------------------------------------\n\nRtAudio::DeviceInfo RtApiWasapi::getDeviceInfo( unsigned int device )\n{\n  RtAudio::DeviceInfo info;\n  unsigned int captureDeviceCount = 0;\n  unsigned int renderDeviceCount = 0;\n  std::string defaultDeviceName;\n  bool isCaptureDevice = false;\n\n  PROPVARIANT deviceNameProp;\n  PROPVARIANT defaultDeviceNameProp;\n\n  IMMDeviceCollection* captureDevices = NULL;\n  IMMDeviceCollection* renderDevices = NULL;\n  IMMDevice* devicePtr = NULL;\n  IMMDevice* defaultDevicePtr = NULL;\n  IAudioClient* audioClient = NULL;\n  IPropertyStore* devicePropStore = NULL;\n  IPropertyStore* defaultDevicePropStore = NULL;\n\n  WAVEFORMATEX* deviceFormat = NULL;\n  WAVEFORMATEX* closestMatchFormat = NULL;\n\n  // probed\n  info.probed = false;\n\n  // Count capture devices\n  errorText_.clear();\n  RtAudioError::Type errorType = RtAudioError::DRIVER_ERROR;\n  HRESULT hr = deviceEnumerator_->EnumAudioEndpoints( eCapture, DEVICE_STATE_ACTIVE, &captureDevices );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to retrieve capture device collection.\";\n    goto Exit;\n  }\n\n  hr = captureDevices->GetCount( &captureDeviceCount );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to retrieve capture device count.\";\n    goto Exit;\n  }\n\n  // Count render devices\n  hr = deviceEnumerator_->EnumAudioEndpoints( eRender, DEVICE_STATE_ACTIVE, &renderDevices );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to retrieve render device collection.\";\n    goto Exit;\n  }\n\n  hr = renderDevices->GetCount( &renderDeviceCount );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to retrieve render device count.\";\n    goto Exit;\n  }\n\n  // validate device index\n  if ( device >= captureDeviceCount + renderDeviceCount ) {\n    errorText_ = \"RtApiWasapi::getDeviceInfo: Invalid device index.\";\n    errorType = RtAudioError::INVALID_USE;\n    goto Exit;\n  }\n\n  // determine whether index falls within capture or render devices\n  if ( device >= renderDeviceCount ) {\n    hr = captureDevices->Item( device - renderDeviceCount, &devicePtr );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to retrieve capture device handle.\";\n      goto Exit;\n    }\n    isCaptureDevice = true;\n  }\n  else {\n    hr = renderDevices->Item( device, &devicePtr );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to retrieve render device handle.\";\n      goto Exit;\n    }\n    isCaptureDevice = false;\n  }\n\n  // get default device name\n  if ( isCaptureDevice ) {\n    hr = deviceEnumerator_->GetDefaultAudioEndpoint( eCapture, eConsole, &defaultDevicePtr );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to retrieve default capture device handle.\";\n      goto Exit;\n    }\n  }\n  else {\n    hr = deviceEnumerator_->GetDefaultAudioEndpoint( eRender, eConsole, &defaultDevicePtr );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to retrieve default render device handle.\";\n      goto Exit;\n    }\n  }\n\n  hr = defaultDevicePtr->OpenPropertyStore( STGM_READ, &defaultDevicePropStore );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to open default device property store.\";\n    goto Exit;\n  }\n  PropVariantInit( &defaultDeviceNameProp );\n\n  hr = defaultDevicePropStore->GetValue( PKEY_Device_FriendlyName, &defaultDeviceNameProp );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to retrieve default device property: PKEY_Device_FriendlyName.\";\n    goto Exit;\n  }\n\n  defaultDeviceName = convertCharPointerToStdString(defaultDeviceNameProp.pwszVal);\n\n  // name\n  hr = devicePtr->OpenPropertyStore( STGM_READ, &devicePropStore );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to open device property store.\";\n    goto Exit;\n  }\n\n  PropVariantInit( &deviceNameProp );\n\n  hr = devicePropStore->GetValue( PKEY_Device_FriendlyName, &deviceNameProp );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to retrieve device property: PKEY_Device_FriendlyName.\";\n    goto Exit;\n  }\n\n  info.name =convertCharPointerToStdString(deviceNameProp.pwszVal);\n\n  // is default\n  if ( isCaptureDevice ) {\n    info.isDefaultInput = info.name == defaultDeviceName;\n    info.isDefaultOutput = false;\n  }\n  else {\n    info.isDefaultInput = false;\n    info.isDefaultOutput = info.name == defaultDeviceName;\n  }\n\n  // channel count\n  hr = devicePtr->Activate( __uuidof( IAudioClient ), CLSCTX_ALL, NULL, ( void** ) &audioClient );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to retrieve device audio client.\";\n    goto Exit;\n  }\n\n  hr = audioClient->GetMixFormat( &deviceFormat );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::getDeviceInfo: Unable to retrieve device mix format.\";\n    goto Exit;\n  }\n\n  if ( isCaptureDevice ) {\n    info.inputChannels = deviceFormat->nChannels;\n    info.outputChannels = 0;\n    info.duplexChannels = 0;\n  }\n  else {\n    info.inputChannels = 0;\n    info.outputChannels = deviceFormat->nChannels;\n    info.duplexChannels = 0;\n  }\n\n  // sample rates (WASAPI only supports the one native sample rate)\n  info.preferredSampleRate = deviceFormat->nSamplesPerSec;\n\n  info.sampleRates.clear();\n  info.sampleRates.push_back( deviceFormat->nSamplesPerSec );\n\n  // native format\n  info.nativeFormats = 0;\n\n  if ( deviceFormat->wFormatTag == WAVE_FORMAT_IEEE_FLOAT ||\n       ( deviceFormat->wFormatTag == WAVE_FORMAT_EXTENSIBLE &&\n         ( ( WAVEFORMATEXTENSIBLE* ) deviceFormat )->SubFormat == KSDATAFORMAT_SUBTYPE_IEEE_FLOAT ) )\n  {\n    if ( deviceFormat->wBitsPerSample == 32 ) {\n      info.nativeFormats |= RTAUDIO_FLOAT32;\n    }\n    else if ( deviceFormat->wBitsPerSample == 64 ) {\n      info.nativeFormats |= RTAUDIO_FLOAT64;\n    }\n  }\n  else if ( deviceFormat->wFormatTag == WAVE_FORMAT_PCM ||\n           ( deviceFormat->wFormatTag == WAVE_FORMAT_EXTENSIBLE &&\n             ( ( WAVEFORMATEXTENSIBLE* ) deviceFormat )->SubFormat == KSDATAFORMAT_SUBTYPE_PCM ) )\n  {\n    if ( deviceFormat->wBitsPerSample == 8 ) {\n      info.nativeFormats |= RTAUDIO_SINT8;\n    }\n    else if ( deviceFormat->wBitsPerSample == 16 ) {\n      info.nativeFormats |= RTAUDIO_SINT16;\n    }\n    else if ( deviceFormat->wBitsPerSample == 24 ) {\n      info.nativeFormats |= RTAUDIO_SINT24;\n    }\n    else if ( deviceFormat->wBitsPerSample == 32 ) {\n      info.nativeFormats |= RTAUDIO_SINT32;\n    }\n  }\n\n  // probed\n  info.probed = true;\n\nExit:\n  // release all references\n  PropVariantClear( &deviceNameProp );\n  PropVariantClear( &defaultDeviceNameProp );\n\n  SAFE_RELEASE( captureDevices );\n  SAFE_RELEASE( renderDevices );\n  SAFE_RELEASE( devicePtr );\n  SAFE_RELEASE( defaultDevicePtr );\n  SAFE_RELEASE( audioClient );\n  SAFE_RELEASE( devicePropStore );\n  SAFE_RELEASE( defaultDevicePropStore );\n\n  CoTaskMemFree( deviceFormat );\n  CoTaskMemFree( closestMatchFormat );\n\n  if ( !errorText_.empty() )\n    error( errorType );\n  return info;\n}\n\n//-----------------------------------------------------------------------------\n\nunsigned int RtApiWasapi::getDefaultOutputDevice( void )\n{\n  for ( unsigned int i = 0; i < getDeviceCount(); i++ ) {\n    if ( getDeviceInfo( i ).isDefaultOutput ) {\n      return i;\n    }\n  }\n\n  return 0;\n}\n\n//-----------------------------------------------------------------------------\n\nunsigned int RtApiWasapi::getDefaultInputDevice( void )\n{\n  for ( unsigned int i = 0; i < getDeviceCount(); i++ ) {\n    if ( getDeviceInfo( i ).isDefaultInput ) {\n      return i;\n    }\n  }\n\n  return 0;\n}\n\n//-----------------------------------------------------------------------------\n\nvoid RtApiWasapi::closeStream( void )\n{\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiWasapi::closeStream: No open stream to close.\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  if ( stream_.state != STREAM_STOPPED )\n    stopStream();\n\n  // clean up stream memory\n  SAFE_RELEASE( ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient )\n  SAFE_RELEASE( ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient )\n\n  SAFE_RELEASE( ( ( WasapiHandle* ) stream_.apiHandle )->captureClient )\n  SAFE_RELEASE( ( ( WasapiHandle* ) stream_.apiHandle )->renderClient )\n\n  if ( ( ( WasapiHandle* ) stream_.apiHandle )->captureEvent )\n    CloseHandle( ( ( WasapiHandle* ) stream_.apiHandle )->captureEvent );\n\n  if ( ( ( WasapiHandle* ) stream_.apiHandle )->renderEvent )\n    CloseHandle( ( ( WasapiHandle* ) stream_.apiHandle )->renderEvent );\n\n  delete ( WasapiHandle* ) stream_.apiHandle;\n  stream_.apiHandle = NULL;\n\n  for ( int i = 0; i < 2; i++ ) {\n    if ( stream_.userBuffer[i] ) {\n      free( stream_.userBuffer[i] );\n      stream_.userBuffer[i] = 0;\n    }\n  }\n\n  if ( stream_.deviceBuffer ) {\n    free( stream_.deviceBuffer );\n    stream_.deviceBuffer = 0;\n  }\n\n  // update stream state\n  stream_.state = STREAM_CLOSED;\n}\n\n//-----------------------------------------------------------------------------\n\nvoid RtApiWasapi::startStream( void )\n{\n  verifyStream();\n\n  if ( stream_.state == STREAM_RUNNING ) {\n    errorText_ = \"RtApiWasapi::startStream: The stream is already running.\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  // update stream state\n  stream_.state = STREAM_RUNNING;\n\n  // create WASAPI stream thread\n  stream_.callbackInfo.thread = ( ThreadHandle ) CreateThread( NULL, 0, runWasapiThread, this, CREATE_SUSPENDED, NULL );\n\n  if ( !stream_.callbackInfo.thread ) {\n    errorText_ = \"RtApiWasapi::startStream: Unable to instantiate callback thread.\";\n    error( RtAudioError::THREAD_ERROR );\n  }\n  else {\n    SetThreadPriority( ( void* ) stream_.callbackInfo.thread, stream_.callbackInfo.priority );\n    ResumeThread( ( void* ) stream_.callbackInfo.thread );\n  }\n}\n\n//-----------------------------------------------------------------------------\n\nvoid RtApiWasapi::stopStream( void )\n{\n  verifyStream();\n\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiWasapi::stopStream: The stream is already stopped.\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  // inform stream thread by setting stream state to STREAM_STOPPING\n  stream_.state = STREAM_STOPPING;\n\n  // wait until stream thread is stopped\n  while( stream_.state != STREAM_STOPPED ) {\n    Sleep( 1 );\n  }\n\n  // Wait for the last buffer to play before stopping.\n  Sleep( 1000 * stream_.bufferSize / stream_.sampleRate );\n\n  // stop capture client if applicable\n  if ( ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient ) {\n    HRESULT hr = ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient->Stop();\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::stopStream: Unable to stop capture stream.\";\n      error( RtAudioError::DRIVER_ERROR );\n      return;\n    }\n  }\n\n  // stop render client if applicable\n  if ( ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient ) {\n    HRESULT hr = ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient->Stop();\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::stopStream: Unable to stop render stream.\";\n      error( RtAudioError::DRIVER_ERROR );\n      return;\n    }\n  }\n\n  // close thread handle\n  if ( stream_.callbackInfo.thread && !CloseHandle( ( void* ) stream_.callbackInfo.thread ) ) {\n    errorText_ = \"RtApiWasapi::stopStream: Unable to close callback thread.\";\n    error( RtAudioError::THREAD_ERROR );\n    return;\n  }\n\n  stream_.callbackInfo.thread = (ThreadHandle) NULL;\n}\n\n//-----------------------------------------------------------------------------\n\nvoid RtApiWasapi::abortStream( void )\n{\n  verifyStream();\n\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiWasapi::abortStream: The stream is already stopped.\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  // inform stream thread by setting stream state to STREAM_STOPPING\n  stream_.state = STREAM_STOPPING;\n\n  // wait until stream thread is stopped\n  while ( stream_.state != STREAM_STOPPED ) {\n    Sleep( 1 );\n  }\n\n  // stop capture client if applicable\n  if ( ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient ) {\n    HRESULT hr = ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient->Stop();\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::abortStream: Unable to stop capture stream.\";\n      error( RtAudioError::DRIVER_ERROR );\n      return;\n    }\n  }\n\n  // stop render client if applicable\n  if ( ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient ) {\n    HRESULT hr = ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient->Stop();\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::abortStream: Unable to stop render stream.\";\n      error( RtAudioError::DRIVER_ERROR );\n      return;\n    }\n  }\n\n  // close thread handle\n  if ( stream_.callbackInfo.thread && !CloseHandle( ( void* ) stream_.callbackInfo.thread ) ) {\n    errorText_ = \"RtApiWasapi::abortStream: Unable to close callback thread.\";\n    error( RtAudioError::THREAD_ERROR );\n    return;\n  }\n\n  stream_.callbackInfo.thread = (ThreadHandle) NULL;\n}\n\n//-----------------------------------------------------------------------------\n\nbool RtApiWasapi::probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels,\n                                   unsigned int firstChannel, unsigned int sampleRate,\n                                   RtAudioFormat format, unsigned int* bufferSize,\n                                   RtAudio::StreamOptions* options )\n{\n  bool methodResult = FAILURE;\n  unsigned int captureDeviceCount = 0;\n  unsigned int renderDeviceCount = 0;\n\n  IMMDeviceCollection* captureDevices = NULL;\n  IMMDeviceCollection* renderDevices = NULL;\n  IMMDevice* devicePtr = NULL;\n  WAVEFORMATEX* deviceFormat = NULL;\n  unsigned int bufferBytes;\n  stream_.state = STREAM_STOPPED;\n  RtAudio::DeviceInfo deviceInfo;\n\n  // create API Handle if not already created\n  if ( !stream_.apiHandle )\n    stream_.apiHandle = ( void* ) new WasapiHandle();\n\n  // Count capture devices\n  errorText_.clear();\n  RtAudioError::Type errorType = RtAudioError::DRIVER_ERROR;\n  HRESULT hr = deviceEnumerator_->EnumAudioEndpoints( eCapture, DEVICE_STATE_ACTIVE, &captureDevices );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::probeDeviceOpen: Unable to retrieve capture device collection.\";\n    goto Exit;\n  }\n\n  hr = captureDevices->GetCount( &captureDeviceCount );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::probeDeviceOpen: Unable to retrieve capture device count.\";\n    goto Exit;\n  }\n\n  // Count render devices\n  hr = deviceEnumerator_->EnumAudioEndpoints( eRender, DEVICE_STATE_ACTIVE, &renderDevices );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::probeDeviceOpen: Unable to retrieve render device collection.\";\n    goto Exit;\n  }\n\n  hr = renderDevices->GetCount( &renderDeviceCount );\n  if ( FAILED( hr ) ) {\n    errorText_ = \"RtApiWasapi::probeDeviceOpen: Unable to retrieve render device count.\";\n    goto Exit;\n  }\n\n  // validate device index\n  if ( device >= captureDeviceCount + renderDeviceCount ) {\n    errorType = RtAudioError::INVALID_USE;\n    errorText_ = \"RtApiWasapi::probeDeviceOpen: Invalid device index.\";\n    goto Exit;\n  }\n\n  deviceInfo = getDeviceInfo( device );\n\n  // validate sample rate\n  if ( sampleRate != deviceInfo.preferredSampleRate )\n  {\n    errorType = RtAudioError::INVALID_USE;\n    std::stringstream ss;\n    ss << \"RtApiWasapi::probeDeviceOpen: \" << sampleRate\n       << \"Hz sample rate not supported. This device only supports \"\n       << deviceInfo.preferredSampleRate << \"Hz.\";\n    errorText_ = ss.str();\n    goto Exit;\n  }\n\n  // determine whether index falls within capture or render devices\n  if ( device >= renderDeviceCount ) {\n    if ( mode != INPUT ) {\n      errorType = RtAudioError::INVALID_USE;\n      errorText_ = \"RtApiWasapi::probeDeviceOpen: Capture device selected as output device.\";\n      goto Exit;\n    }\n\n    // retrieve captureAudioClient from devicePtr\n    IAudioClient*& captureAudioClient = ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient;\n\n    hr = captureDevices->Item( device - renderDeviceCount, &devicePtr );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::probeDeviceOpen: Unable to retrieve capture device handle.\";\n      goto Exit;\n    }\n\n    hr = devicePtr->Activate( __uuidof( IAudioClient ), CLSCTX_ALL,\n                              NULL, ( void** ) &captureAudioClient );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::probeDeviceOpen: Unable to retrieve device audio client.\";\n      goto Exit;\n    }\n\n    hr = captureAudioClient->GetMixFormat( &deviceFormat );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::probeDeviceOpen: Unable to retrieve device mix format.\";\n      goto Exit;\n    }\n\n    stream_.nDeviceChannels[mode] = deviceFormat->nChannels;\n    captureAudioClient->GetStreamLatency( ( long long* ) &stream_.latency[mode] );\n  }\n  else {\n    if ( mode != OUTPUT ) {\n      errorType = RtAudioError::INVALID_USE;\n      errorText_ = \"RtApiWasapi::probeDeviceOpen: Render device selected as input device.\";\n      goto Exit;\n    }\n\n    // retrieve renderAudioClient from devicePtr\n    IAudioClient*& renderAudioClient = ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient;\n\n    hr = renderDevices->Item( device, &devicePtr );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::probeDeviceOpen: Unable to retrieve render device handle.\";\n      goto Exit;\n    }\n\n    hr = devicePtr->Activate( __uuidof( IAudioClient ), CLSCTX_ALL,\n                              NULL, ( void** ) &renderAudioClient );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::probeDeviceOpen: Unable to retrieve device audio client.\";\n      goto Exit;\n    }\n\n    hr = renderAudioClient->GetMixFormat( &deviceFormat );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::probeDeviceOpen: Unable to retrieve device mix format.\";\n      goto Exit;\n    }\n\n    stream_.nDeviceChannels[mode] = deviceFormat->nChannels;\n    renderAudioClient->GetStreamLatency( ( long long* ) &stream_.latency[mode] );\n  }\n\n  // fill stream data\n  if ( ( stream_.mode == OUTPUT && mode == INPUT ) ||\n       ( stream_.mode == INPUT && mode == OUTPUT ) ) {\n    stream_.mode = DUPLEX;\n  }\n  else {\n    stream_.mode = mode;\n  }\n\n  stream_.device[mode] = device;\n  stream_.doByteSwap[mode] = false;\n  stream_.sampleRate = sampleRate;\n  stream_.bufferSize = *bufferSize;\n  stream_.nBuffers = 1;\n  stream_.nUserChannels[mode] = channels;\n  stream_.channelOffset[mode] = firstChannel;\n  stream_.userFormat = format;\n  stream_.deviceFormat[mode] = deviceInfo.nativeFormats;\n\n  if ( options && options->flags & RTAUDIO_NONINTERLEAVED )\n    stream_.userInterleaved = false;\n  else\n    stream_.userInterleaved = true;\n  stream_.deviceInterleaved[mode] = true;\n\n  // Set flags for buffer conversion.\n  stream_.doConvertBuffer[mode] = false;\n  if ( stream_.userFormat != stream_.deviceFormat[mode] ||\n       stream_.nUserChannels != stream_.nDeviceChannels )\n    stream_.doConvertBuffer[mode] = true;\n  else if ( stream_.userInterleaved != stream_.deviceInterleaved[mode] &&\n            stream_.nUserChannels[mode] > 1 )\n    stream_.doConvertBuffer[mode] = true;\n\n  if ( stream_.doConvertBuffer[mode] )\n    setConvertInfo( mode, 0 );\n\n  // Allocate necessary internal buffers\n  bufferBytes = stream_.nUserChannels[mode] * stream_.bufferSize * formatBytes( stream_.userFormat );\n\n  stream_.userBuffer[mode] = ( char* ) calloc( bufferBytes, 1 );\n  if ( !stream_.userBuffer[mode] ) {\n    errorType = RtAudioError::MEMORY_ERROR;\n    errorText_ = \"RtApiWasapi::probeDeviceOpen: Error allocating user buffer memory.\";\n    goto Exit;\n  }\n\n  if ( options && options->flags & RTAUDIO_SCHEDULE_REALTIME )\n    stream_.callbackInfo.priority = 15;\n  else\n    stream_.callbackInfo.priority = 0;\n\n  ///! TODO: RTAUDIO_MINIMIZE_LATENCY // Provide stream buffers directly to callback\n  ///! TODO: RTAUDIO_HOG_DEVICE       // Exclusive mode\n\n  methodResult = SUCCESS;\n\nExit:\n  //clean up\n  SAFE_RELEASE( captureDevices );\n  SAFE_RELEASE( renderDevices );\n  SAFE_RELEASE( devicePtr );\n  CoTaskMemFree( deviceFormat );\n\n  // if method failed, close the stream\n  if ( methodResult == FAILURE )\n    closeStream();\n\n  if ( !errorText_.empty() )\n    error( errorType );\n  return methodResult;\n}\n\n//=============================================================================\n\nDWORD WINAPI RtApiWasapi::runWasapiThread( void* wasapiPtr )\n{\n  if ( wasapiPtr )\n    ( ( RtApiWasapi* ) wasapiPtr )->wasapiThread();\n\n  return 0;\n}\n\nDWORD WINAPI RtApiWasapi::stopWasapiThread( void* wasapiPtr )\n{\n  if ( wasapiPtr )\n    ( ( RtApiWasapi* ) wasapiPtr )->stopStream();\n\n  return 0;\n}\n\nDWORD WINAPI RtApiWasapi::abortWasapiThread( void* wasapiPtr )\n{\n  if ( wasapiPtr )\n    ( ( RtApiWasapi* ) wasapiPtr )->abortStream();\n\n  return 0;\n}\n\n//-----------------------------------------------------------------------------\n\nvoid RtApiWasapi::wasapiThread()\n{\n  // as this is a new thread, we must CoInitialize it\n  CoInitialize( NULL );\n\n  HRESULT hr;\n\n  IAudioClient* captureAudioClient = ( ( WasapiHandle* ) stream_.apiHandle )->captureAudioClient;\n  IAudioClient* renderAudioClient = ( ( WasapiHandle* ) stream_.apiHandle )->renderAudioClient;\n  IAudioCaptureClient* captureClient = ( ( WasapiHandle* ) stream_.apiHandle )->captureClient;\n  IAudioRenderClient* renderClient = ( ( WasapiHandle* ) stream_.apiHandle )->renderClient;\n  HANDLE captureEvent = ( ( WasapiHandle* ) stream_.apiHandle )->captureEvent;\n  HANDLE renderEvent = ( ( WasapiHandle* ) stream_.apiHandle )->renderEvent;\n\n  WAVEFORMATEX* captureFormat = NULL;\n  WAVEFORMATEX* renderFormat = NULL;\n  WasapiBuffer captureBuffer;\n  WasapiBuffer renderBuffer;\n\n  // declare local stream variables\n  RtAudioCallback callback = ( RtAudioCallback ) stream_.callbackInfo.callback;\n  BYTE* streamBuffer = NULL;\n  unsigned long captureFlags = 0;\n  unsigned int bufferFrameCount = 0;\n  unsigned int numFramesPadding = 0;\n  bool callbackPushed = false;\n  bool callbackPulled = false;\n  bool callbackStopped = false;\n  int callbackResult = 0;\n\n  unsigned int deviceBuffSize = 0;\n\n  errorText_.clear();\n  RtAudioError::Type errorType = RtAudioError::DRIVER_ERROR;\n\n  // Attempt to assign \"Pro Audio\" characteristic to thread\n  HMODULE AvrtDll = LoadLibrary( (LPCTSTR) \"AVRT.dll\" );\n  if ( AvrtDll ) {\n    DWORD taskIndex = 0;\n    TAvSetMmThreadCharacteristicsPtr AvSetMmThreadCharacteristicsPtr = ( TAvSetMmThreadCharacteristicsPtr ) GetProcAddress( AvrtDll, \"AvSetMmThreadCharacteristicsW\" );\n    AvSetMmThreadCharacteristicsPtr( L\"Pro Audio\", &taskIndex );\n    FreeLibrary( AvrtDll );\n  }\n\n  // start capture stream if applicable\n  if ( captureAudioClient ) {\n    hr = captureAudioClient->GetMixFormat( &captureFormat );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::wasapiThread: Unable to retrieve device mix format.\";\n      goto Exit;\n    }\n\n    // initialize capture stream according to desire buffer size\n    REFERENCE_TIME desiredBufferPeriod = ( REFERENCE_TIME ) ( ( float ) stream_.bufferSize * 10000000 / captureFormat->nSamplesPerSec );\n\n    if ( !captureClient ) {\n      hr = captureAudioClient->Initialize( AUDCLNT_SHAREMODE_SHARED,\n                                           AUDCLNT_STREAMFLAGS_EVENTCALLBACK,\n                                           desiredBufferPeriod,\n                                           desiredBufferPeriod,\n                                           captureFormat,\n                                           NULL );\n      if ( FAILED( hr ) ) {\n        errorText_ = \"RtApiWasapi::wasapiThread: Unable to initialize capture audio client.\";\n        goto Exit;\n      }\n\n      hr = captureAudioClient->GetService( __uuidof( IAudioCaptureClient ),\n                                           ( void** ) &captureClient );\n      if ( FAILED( hr ) ) {\n        errorText_ = \"RtApiWasapi::wasapiThread: Unable to retrieve capture client handle.\";\n        goto Exit;\n      }\n\n      // configure captureEvent to trigger on every available capture buffer\n      captureEvent = CreateEvent( NULL, FALSE, FALSE, NULL );\n      if ( !captureEvent ) {\n        errorType = RtAudioError::SYSTEM_ERROR;\n        errorText_ = \"RtApiWasapi::wasapiThread: Unable to create capture event.\";\n        goto Exit;\n      }\n\n      hr = captureAudioClient->SetEventHandle( captureEvent );\n      if ( FAILED( hr ) ) {\n        errorText_ = \"RtApiWasapi::wasapiThread: Unable to set capture event handle.\";\n        goto Exit;\n      }\n\n      ( ( WasapiHandle* ) stream_.apiHandle )->captureClient = captureClient;\n      ( ( WasapiHandle* ) stream_.apiHandle )->captureEvent = captureEvent;\n    }\n\n    unsigned int inBufferSize = 0;\n    hr = captureAudioClient->GetBufferSize( &inBufferSize );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::wasapiThread: Unable to get capture buffer size.\";\n      goto Exit;\n    }\n\n    // scale outBufferSize according to stream->user sample rate ratio\n    unsigned int outBufferSize = ( unsigned int ) stream_.bufferSize * stream_.nDeviceChannels[INPUT];\n    inBufferSize *= stream_.nDeviceChannels[INPUT];\n\n    // set captureBuffer size\n    captureBuffer.setBufferSize( inBufferSize + outBufferSize, formatBytes( stream_.deviceFormat[INPUT] ) );\n\n    // reset the capture stream\n    hr = captureAudioClient->Reset();\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::wasapiThread: Unable to reset capture stream.\";\n      goto Exit;\n    }\n\n    // start the capture stream\n    hr = captureAudioClient->Start();\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::wasapiThread: Unable to start capture stream.\";\n      goto Exit;\n    }\n  }\n\n  // start render stream if applicable\n  if ( renderAudioClient ) {\n    hr = renderAudioClient->GetMixFormat( &renderFormat );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::wasapiThread: Unable to retrieve device mix format.\";\n      goto Exit;\n    }\n\n    // initialize render stream according to desire buffer size\n    REFERENCE_TIME desiredBufferPeriod = ( REFERENCE_TIME ) ( ( float ) stream_.bufferSize * 10000000 / renderFormat->nSamplesPerSec );\n\n    if ( !renderClient ) {\n      hr = renderAudioClient->Initialize( AUDCLNT_SHAREMODE_SHARED,\n                                          AUDCLNT_STREAMFLAGS_EVENTCALLBACK,\n                                          desiredBufferPeriod,\n                                          desiredBufferPeriod,\n                                          renderFormat,\n                                          NULL );\n      if ( FAILED( hr ) ) {\n        errorText_ = \"RtApiWasapi::wasapiThread: Unable to initialize render audio client.\";\n        goto Exit;\n      }\n\n      hr = renderAudioClient->GetService( __uuidof( IAudioRenderClient ),\n                                          ( void** ) &renderClient );\n      if ( FAILED( hr ) ) {\n        errorText_ = \"RtApiWasapi::wasapiThread: Unable to retrieve render client handle.\";\n        goto Exit;\n      }\n\n      // configure renderEvent to trigger on every available render buffer\n      renderEvent = CreateEvent( NULL, FALSE, FALSE, NULL );\n      if ( !renderEvent ) {\n        errorType = RtAudioError::SYSTEM_ERROR;\n        errorText_ = \"RtApiWasapi::wasapiThread: Unable to create render event.\";\n        goto Exit;\n      }\n\n      hr = renderAudioClient->SetEventHandle( renderEvent );\n      if ( FAILED( hr ) ) {\n        errorText_ = \"RtApiWasapi::wasapiThread: Unable to set render event handle.\";\n        goto Exit;\n      }\n\n      ( ( WasapiHandle* ) stream_.apiHandle )->renderClient = renderClient;\n      ( ( WasapiHandle* ) stream_.apiHandle )->renderEvent = renderEvent;\n    }\n\n    unsigned int outBufferSize = 0;\n    hr = renderAudioClient->GetBufferSize( &outBufferSize );\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::wasapiThread: Unable to get render buffer size.\";\n      goto Exit;\n    }\n\n    // scale inBufferSize according to user->stream sample rate ratio\n    unsigned int inBufferSize = ( unsigned int ) stream_.bufferSize * stream_.nDeviceChannels[OUTPUT];\n    outBufferSize *= stream_.nDeviceChannels[OUTPUT];\n\n    // set renderBuffer size\n    renderBuffer.setBufferSize( inBufferSize + outBufferSize, formatBytes( stream_.deviceFormat[OUTPUT] ) );\n\n    // reset the render stream\n    hr = renderAudioClient->Reset();\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::wasapiThread: Unable to reset render stream.\";\n      goto Exit;\n    }\n\n    // start the render stream\n    hr = renderAudioClient->Start();\n    if ( FAILED( hr ) ) {\n      errorText_ = \"RtApiWasapi::wasapiThread: Unable to start render stream.\";\n      goto Exit;\n    }\n  }\n\n  if ( stream_.mode == INPUT ) {\n    using namespace std; // for roundf\n    deviceBuffSize = stream_.bufferSize * stream_.nDeviceChannels[INPUT] * formatBytes( stream_.deviceFormat[INPUT] );\n  }\n  else if ( stream_.mode == OUTPUT ) {\n    deviceBuffSize = stream_.bufferSize * stream_.nDeviceChannels[OUTPUT] * formatBytes( stream_.deviceFormat[OUTPUT] );\n  }\n  else if ( stream_.mode == DUPLEX ) {\n    deviceBuffSize = std::max( stream_.bufferSize * stream_.nDeviceChannels[INPUT] * formatBytes( stream_.deviceFormat[INPUT] ),\n                               stream_.bufferSize * stream_.nDeviceChannels[OUTPUT] * formatBytes( stream_.deviceFormat[OUTPUT] ) );\n  }\n\n  stream_.deviceBuffer = ( char* ) malloc( deviceBuffSize );\n  if ( !stream_.deviceBuffer ) {\n    errorType = RtAudioError::MEMORY_ERROR;\n    errorText_ = \"RtApiWasapi::wasapiThread: Error allocating device buffer memory.\";\n    goto Exit;\n  }\n\n  // stream process loop\n  while ( stream_.state != STREAM_STOPPING ) {\n    if ( !callbackPulled ) {\n      // Callback Input\n      // ==============\n      // 1. Pull callback buffer from inputBuffer\n      // 2. If 1. was successful: Convert callback buffer to user format\n\n      if ( captureAudioClient ) {\n        // Pull callback buffer from inputBuffer\n        callbackPulled = captureBuffer.pullBuffer( stream_.deviceBuffer,\n                                                   ( unsigned int ) stream_.bufferSize * stream_.nDeviceChannels[INPUT],\n                                                   stream_.deviceFormat[INPUT] );\n\n        if ( callbackPulled ) {\n          if ( stream_.doConvertBuffer[INPUT] ) {\n            // Convert callback buffer to user format\n            convertBuffer( stream_.userBuffer[INPUT],\n                           stream_.deviceBuffer,\n                           stream_.convertInfo[INPUT] );\n          }\n          else {\n            // no further conversion, simple copy deviceBuffer to userBuffer\n            memcpy( stream_.userBuffer[INPUT],\n                    stream_.deviceBuffer,\n                    stream_.bufferSize * stream_.nUserChannels[INPUT] * formatBytes( stream_.userFormat ) );\n          }\n        }\n      }\n      else {\n        // if there is no capture stream, set callbackPulled flag\n        callbackPulled = true;\n      }\n\n      // Execute Callback\n      // ================\n      // 1. Execute user callback method\n      // 2. Handle return value from callback\n\n      // if callback has not requested the stream to stop\n      if ( callbackPulled && !callbackStopped ) {\n        // Execute user callback method\n        callbackResult = callback( stream_.userBuffer[OUTPUT],\n                                   stream_.userBuffer[INPUT],\n                                   stream_.bufferSize,\n                                   getStreamTime(),\n                                   captureFlags & AUDCLNT_BUFFERFLAGS_DATA_DISCONTINUITY ? RTAUDIO_INPUT_OVERFLOW : 0,\n                                   stream_.callbackInfo.userData );\n\n        // Handle return value from callback\n        if ( callbackResult == 1 ) {\n          // instantiate a thread to stop this thread\n          HANDLE threadHandle = CreateThread( NULL, 0, stopWasapiThread, this, 0, NULL );\n          if ( !threadHandle ) {\n            errorType = RtAudioError::THREAD_ERROR;\n            errorText_ = \"RtApiWasapi::wasapiThread: Unable to instantiate stream stop thread.\";\n            goto Exit;\n          }\n          else if ( !CloseHandle( threadHandle ) ) {\n            errorType = RtAudioError::THREAD_ERROR;\n            errorText_ = \"RtApiWasapi::wasapiThread: Unable to close stream stop thread handle.\";\n            goto Exit;\n          }\n\n          callbackStopped = true;\n        }\n        else if ( callbackResult == 2 ) {\n          // instantiate a thread to stop this thread\n          HANDLE threadHandle = CreateThread( NULL, 0, abortWasapiThread, this, 0, NULL );\n          if ( !threadHandle ) {\n            errorType = RtAudioError::THREAD_ERROR;\n            errorText_ = \"RtApiWasapi::wasapiThread: Unable to instantiate stream abort thread.\";\n            goto Exit;\n          }\n          else if ( !CloseHandle( threadHandle ) ) {\n            errorType = RtAudioError::THREAD_ERROR;\n            errorText_ = \"RtApiWasapi::wasapiThread: Unable to close stream abort thread handle.\";\n            goto Exit;\n          }\n\n          callbackStopped = true;\n        }\n      }\n    }\n\n    // Callback Output\n    // ===============\n    // 1. Convert callback buffer to stream format\n    // 2. Push callback buffer into outputBuffer\n\n    if ( renderAudioClient && callbackPulled ) {\n      if ( stream_.doConvertBuffer[OUTPUT] ) {\n        // Convert callback buffer to stream format\n        convertBuffer( stream_.deviceBuffer,\n                       stream_.userBuffer[OUTPUT],\n                       stream_.convertInfo[OUTPUT] );\n\n      }\n\n      // Push callback buffer into outputBuffer\n      callbackPushed = renderBuffer.pushBuffer( stream_.deviceBuffer,\n                                                stream_.bufferSize * stream_.nDeviceChannels[OUTPUT],\n                                                stream_.deviceFormat[OUTPUT] );\n    }\n    else {\n      // if there is no render stream, set callbackPushed flag\n      callbackPushed = true;\n    }\n\n    // Stream Capture\n    // ==============\n    // 1. Get capture buffer from stream\n    // 2. Push capture buffer into inputBuffer\n    // 3. If 2. was successful: Release capture buffer\n\n    if ( captureAudioClient ) {\n      // if the callback input buffer was not pulled from captureBuffer, wait for next capture event\n      if ( !callbackPulled ) {\n        WaitForSingleObject( captureEvent, INFINITE );\n      }\n\n      // Get capture buffer from stream\n      hr = captureClient->GetBuffer( &streamBuffer,\n                                     &bufferFrameCount,\n                                     &captureFlags, NULL, NULL );\n      if ( FAILED( hr ) ) {\n        errorText_ = \"RtApiWasapi::wasapiThread: Unable to retrieve capture buffer.\";\n        goto Exit;\n      }\n\n      if ( bufferFrameCount != 0 ) {\n        // Push capture buffer into inputBuffer\n        if ( captureBuffer.pushBuffer( ( char* ) streamBuffer,\n                                       bufferFrameCount * stream_.nDeviceChannels[INPUT],\n                                       stream_.deviceFormat[INPUT] ) )\n        {\n          // Release capture buffer\n          hr = captureClient->ReleaseBuffer( bufferFrameCount );\n          if ( FAILED( hr ) ) {\n            errorText_ = \"RtApiWasapi::wasapiThread: Unable to release capture buffer.\";\n            goto Exit;\n          }\n        }\n        else\n        {\n          // Inform WASAPI that capture was unsuccessful\n          hr = captureClient->ReleaseBuffer( 0 );\n          if ( FAILED( hr ) ) {\n            errorText_ = \"RtApiWasapi::wasapiThread: Unable to release capture buffer.\";\n            goto Exit;\n          }\n        }\n      }\n      else\n      {\n        // Inform WASAPI that capture was unsuccessful\n        hr = captureClient->ReleaseBuffer( 0 );\n        if ( FAILED( hr ) ) {\n          errorText_ = \"RtApiWasapi::wasapiThread: Unable to release capture buffer.\";\n          goto Exit;\n        }\n      }\n    }\n\n    // Stream Render\n    // =============\n    // 1. Get render buffer from stream\n    // 2. Pull next buffer from outputBuffer\n    // 3. If 2. was successful: Fill render buffer with next buffer\n    //                          Release render buffer\n\n    if ( renderAudioClient ) {\n      // if the callback output buffer was not pushed to renderBuffer, wait for next render event\n      if ( callbackPulled && !callbackPushed ) {\n        WaitForSingleObject( renderEvent, INFINITE );\n      }\n\n      // Get render buffer from stream\n      hr = renderAudioClient->GetBufferSize( &bufferFrameCount );\n      if ( FAILED( hr ) ) {\n        errorText_ = \"RtApiWasapi::wasapiThread: Unable to retrieve render buffer size.\";\n        goto Exit;\n      }\n\n      hr = renderAudioClient->GetCurrentPadding( &numFramesPadding );\n      if ( FAILED( hr ) ) {\n        errorText_ = \"RtApiWasapi::wasapiThread: Unable to retrieve render buffer padding.\";\n        goto Exit;\n      }\n\n      bufferFrameCount -= numFramesPadding;\n\n      if ( bufferFrameCount != 0 ) {\n        hr = renderClient->GetBuffer( bufferFrameCount, &streamBuffer );\n        if ( FAILED( hr ) ) {\n          errorText_ = \"RtApiWasapi::wasapiThread: Unable to retrieve render buffer.\";\n          goto Exit;\n        }\n\n        // Pull next buffer from outputBuffer\n        // Fill render buffer with next buffer\n        if ( renderBuffer.pullBuffer( ( char* ) streamBuffer,\n                                      bufferFrameCount * stream_.nDeviceChannels[OUTPUT],\n                                      stream_.deviceFormat[OUTPUT] ) )\n        {\n          // Release render buffer\n          hr = renderClient->ReleaseBuffer( bufferFrameCount, 0 );\n          if ( FAILED( hr ) ) {\n            errorText_ = \"RtApiWasapi::wasapiThread: Unable to release render buffer.\";\n            goto Exit;\n          }\n        }\n        else\n        {\n          // Inform WASAPI that render was unsuccessful\n          hr = renderClient->ReleaseBuffer( 0, 0 );\n          if ( FAILED( hr ) ) {\n            errorText_ = \"RtApiWasapi::wasapiThread: Unable to release render buffer.\";\n            goto Exit;\n          }\n        }\n      }\n      else\n      {\n        // Inform WASAPI that render was unsuccessful\n        hr = renderClient->ReleaseBuffer( 0, 0 );\n        if ( FAILED( hr ) ) {\n          errorText_ = \"RtApiWasapi::wasapiThread: Unable to release render buffer.\";\n          goto Exit;\n        }\n      }\n    }\n\n    // if the callback buffer was pushed renderBuffer reset callbackPulled flag\n    if ( callbackPushed ) {\n      callbackPulled = false;\n      // tick stream time\n      RtApi::tickStreamTime();\n    }\n\n  }\n\nExit:\n  // clean up\n  CoTaskMemFree( captureFormat );\n  CoTaskMemFree( renderFormat );\n\n  CoUninitialize();\n\n  // update stream state\n  stream_.state = STREAM_STOPPED;\n\n  if ( errorText_.empty() )\n    return;\n  else\n    error( errorType );\n}\n\n//******************** End of __WINDOWS_WASAPI__ *********************//\n#endif\n\n\n#if defined(__WINDOWS_DS__) // Windows DirectSound API\n\n// Modified by Robin Davies, October 2005\n// - Improvements to DirectX pointer chasing. \n// - Bug fix for non-power-of-two Asio granularity used by Edirol PCR-A30.\n// - Auto-call CoInitialize for DSOUND and ASIO platforms.\n// Various revisions for RtAudio 4.0 by Gary Scavone, April 2007\n// Changed device query structure for RtAudio 4.0.7, January 2010\n\n#include <mmsystem.h>\n#include <mmreg.h>\n#include <dsound.h>\n#include <assert.h>\n#include <algorithm>\n\n#if defined(__MINGW32__)\n  // missing from latest mingw winapi\n#define WAVE_FORMAT_96M08 0x00010000 /* 96 kHz, Mono, 8-bit */\n#define WAVE_FORMAT_96S08 0x00020000 /* 96 kHz, Stereo, 8-bit */\n#define WAVE_FORMAT_96M16 0x00040000 /* 96 kHz, Mono, 16-bit */\n#define WAVE_FORMAT_96S16 0x00080000 /* 96 kHz, Stereo, 16-bit */\n#endif\n\n#define MINIMUM_DEVICE_BUFFER_SIZE 32768\n\n#ifdef _MSC_VER // if Microsoft Visual C++\n#pragma comment( lib, \"winmm.lib\" ) // then, auto-link winmm.lib. Otherwise, it has to be added manually.\n#endif\n\nstatic inline DWORD dsPointerBetween( DWORD pointer, DWORD laterPointer, DWORD earlierPointer, DWORD bufferSize )\n{\n  if ( pointer > bufferSize ) pointer -= bufferSize;\n  if ( laterPointer < earlierPointer ) laterPointer += bufferSize;\n  if ( pointer < earlierPointer ) pointer += bufferSize;\n  return pointer >= earlierPointer && pointer < laterPointer;\n}\n\n// A structure to hold various information related to the DirectSound\n// API implementation.\nstruct DsHandle {\n  unsigned int drainCounter; // Tracks callback counts when draining\n  bool internalDrain;        // Indicates if stop is initiated from callback or not.\n  void *id[2];\n  void *buffer[2];\n  bool xrun[2];\n  UINT bufferPointer[2];  \n  DWORD dsBufferSize[2];\n  DWORD dsPointerLeadTime[2]; // the number of bytes ahead of the safe pointer to lead by.\n  HANDLE condition;\n\n  DsHandle()\n    :drainCounter(0), internalDrain(false) { id[0] = 0; id[1] = 0; buffer[0] = 0; buffer[1] = 0; xrun[0] = false; xrun[1] = false; bufferPointer[0] = 0; bufferPointer[1] = 0; }\n};\n\n// Declarations for utility functions, callbacks, and structures\n// specific to the DirectSound implementation.\nstatic BOOL CALLBACK deviceQueryCallback( LPGUID lpguid,\n                                          LPCTSTR description,\n                                          LPCTSTR module,\n                                          LPVOID lpContext );\n\nstatic const char* getErrorString( int code );\n\nstatic unsigned __stdcall callbackHandler( void *ptr );\n\nstruct DsDevice {\n  LPGUID id[2];\n  bool validId[2];\n  bool found;\n  std::string name;\n\n  DsDevice()\n  : found(false) { validId[0] = false; validId[1] = false; }\n};\n\nstruct DsProbeData {\n  bool isInput;\n  std::vector<struct DsDevice>* dsDevices;\n};\n\nRtApiDs :: RtApiDs()\n{\n  // Dsound will run both-threaded. If CoInitialize fails, then just\n  // accept whatever the mainline chose for a threading model.\n  coInitialized_ = false;\n  HRESULT hr = CoInitialize( NULL );\n  if ( !FAILED( hr ) ) coInitialized_ = true;\n}\n\nRtApiDs :: ~RtApiDs()\n{\n  if ( stream_.state != STREAM_CLOSED ) closeStream();\n  if ( coInitialized_ ) CoUninitialize(); // balanced call.\n}\n\n// The DirectSound default output is always the first device.\nunsigned int RtApiDs :: getDefaultOutputDevice( void )\n{\n  return 0;\n}\n\n// The DirectSound default input is always the first input device,\n// which is the first capture device enumerated.\nunsigned int RtApiDs :: getDefaultInputDevice( void )\n{\n  return 0;\n}\n\nunsigned int RtApiDs :: getDeviceCount( void )\n{\n  // Set query flag for previously found devices to false, so that we\n  // can check for any devices that have disappeared.\n  for ( unsigned int i=0; i<dsDevices.size(); i++ )\n    dsDevices[i].found = false;\n\n  // Query DirectSound devices.\n  struct DsProbeData probeInfo;\n  probeInfo.isInput = false;\n  probeInfo.dsDevices = &dsDevices;\n  HRESULT result = DirectSoundEnumerate( (LPDSENUMCALLBACK) deviceQueryCallback, &probeInfo );\n  if ( FAILED( result ) ) {\n    errorStream_ << \"RtApiDs::getDeviceCount: error (\" << getErrorString( result ) << \") enumerating output devices!\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n  }\n\n  // Query DirectSoundCapture devices.\n  probeInfo.isInput = true;\n  result = DirectSoundCaptureEnumerate( (LPDSENUMCALLBACK) deviceQueryCallback, &probeInfo );\n  if ( FAILED( result ) ) {\n    errorStream_ << \"RtApiDs::getDeviceCount: error (\" << getErrorString( result ) << \") enumerating input devices!\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n  }\n\n  // Clean out any devices that may have disappeared (code update submitted by Eli Zehngut).\n  for ( unsigned int i=0; i<dsDevices.size(); ) {\n    if ( dsDevices[i].found == false ) dsDevices.erase( dsDevices.begin() + i );\n    else i++;\n  }\n\n  return static_cast<unsigned int>(dsDevices.size());\n}\n\nRtAudio::DeviceInfo RtApiDs :: getDeviceInfo( unsigned int device )\n{\n  RtAudio::DeviceInfo info;\n  info.probed = false;\n\n  if ( dsDevices.size() == 0 ) {\n    // Force a query of all devices\n    getDeviceCount();\n    if ( dsDevices.size() == 0 ) {\n      errorText_ = \"RtApiDs::getDeviceInfo: no devices found!\";\n      error( RtAudioError::INVALID_USE );\n      return info;\n    }\n  }\n\n  if ( device >= dsDevices.size() ) {\n    errorText_ = \"RtApiDs::getDeviceInfo: device ID is invalid!\";\n    error( RtAudioError::INVALID_USE );\n    return info;\n  }\n\n  HRESULT result;\n  if ( dsDevices[ device ].validId[0] == false ) goto probeInput;\n\n  LPDIRECTSOUND output;\n  DSCAPS outCaps;\n  result = DirectSoundCreate( dsDevices[ device ].id[0], &output, NULL );\n  if ( FAILED( result ) ) {\n    errorStream_ << \"RtApiDs::getDeviceInfo: error (\" << getErrorString( result ) << \") opening output device (\" << dsDevices[ device ].name << \")!\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    goto probeInput;\n  }\n\n  outCaps.dwSize = sizeof( outCaps );\n  result = output->GetCaps( &outCaps );\n  if ( FAILED( result ) ) {\n    output->Release();\n    errorStream_ << \"RtApiDs::getDeviceInfo: error (\" << getErrorString( result ) << \") getting capabilities!\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    goto probeInput;\n  }\n\n  // Get output channel information.\n  info.outputChannels = ( outCaps.dwFlags & DSCAPS_PRIMARYSTEREO ) ? 2 : 1;\n\n  // Get sample rate information.\n  info.sampleRates.clear();\n  for ( unsigned int k=0; k<MAX_SAMPLE_RATES; k++ ) {\n    if ( SAMPLE_RATES[k] >= (unsigned int) outCaps.dwMinSecondarySampleRate &&\n         SAMPLE_RATES[k] <= (unsigned int) outCaps.dwMaxSecondarySampleRate ) {\n      info.sampleRates.push_back( SAMPLE_RATES[k] );\n\n      if ( !info.preferredSampleRate || ( SAMPLE_RATES[k] <= 48000 && SAMPLE_RATES[k] > info.preferredSampleRate ) )\n        info.preferredSampleRate = SAMPLE_RATES[k];\n    }\n  }\n\n  // Get format information.\n  if ( outCaps.dwFlags & DSCAPS_PRIMARY16BIT ) info.nativeFormats |= RTAUDIO_SINT16;\n  if ( outCaps.dwFlags & DSCAPS_PRIMARY8BIT ) info.nativeFormats |= RTAUDIO_SINT8;\n\n  output->Release();\n\n  if ( getDefaultOutputDevice() == device )\n    info.isDefaultOutput = true;\n\n  if ( dsDevices[ device ].validId[1] == false ) {\n    info.name = dsDevices[ device ].name;\n    info.probed = true;\n    return info;\n  }\n\n probeInput:\n\n  LPDIRECTSOUNDCAPTURE input;\n  result = DirectSoundCaptureCreate( dsDevices[ device ].id[1], &input, NULL );\n  if ( FAILED( result ) ) {\n    errorStream_ << \"RtApiDs::getDeviceInfo: error (\" << getErrorString( result ) << \") opening input device (\" << dsDevices[ device ].name << \")!\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  DSCCAPS inCaps;\n  inCaps.dwSize = sizeof( inCaps );\n  result = input->GetCaps( &inCaps );\n  if ( FAILED( result ) ) {\n    input->Release();\n    errorStream_ << \"RtApiDs::getDeviceInfo: error (\" << getErrorString( result ) << \") getting object capabilities (\" << dsDevices[ device ].name << \")!\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // Get input channel information.\n  info.inputChannels = inCaps.dwChannels;\n\n  // Get sample rate and format information.\n  std::vector<unsigned int> rates;\n  if ( inCaps.dwChannels >= 2 ) {\n    if ( inCaps.dwFormats & WAVE_FORMAT_1S16 ) info.nativeFormats |= RTAUDIO_SINT16;\n    if ( inCaps.dwFormats & WAVE_FORMAT_2S16 ) info.nativeFormats |= RTAUDIO_SINT16;\n    if ( inCaps.dwFormats & WAVE_FORMAT_4S16 ) info.nativeFormats |= RTAUDIO_SINT16;\n    if ( inCaps.dwFormats & WAVE_FORMAT_96S16 ) info.nativeFormats |= RTAUDIO_SINT16;\n    if ( inCaps.dwFormats & WAVE_FORMAT_1S08 ) info.nativeFormats |= RTAUDIO_SINT8;\n    if ( inCaps.dwFormats & WAVE_FORMAT_2S08 ) info.nativeFormats |= RTAUDIO_SINT8;\n    if ( inCaps.dwFormats & WAVE_FORMAT_4S08 ) info.nativeFormats |= RTAUDIO_SINT8;\n    if ( inCaps.dwFormats & WAVE_FORMAT_96S08 ) info.nativeFormats |= RTAUDIO_SINT8;\n\n    if ( info.nativeFormats & RTAUDIO_SINT16 ) {\n      if ( inCaps.dwFormats & WAVE_FORMAT_1S16 ) rates.push_back( 11025 );\n      if ( inCaps.dwFormats & WAVE_FORMAT_2S16 ) rates.push_back( 22050 );\n      if ( inCaps.dwFormats & WAVE_FORMAT_4S16 ) rates.push_back( 44100 );\n      if ( inCaps.dwFormats & WAVE_FORMAT_96S16 ) rates.push_back( 96000 );\n    }\n    else if ( info.nativeFormats & RTAUDIO_SINT8 ) {\n      if ( inCaps.dwFormats & WAVE_FORMAT_1S08 ) rates.push_back( 11025 );\n      if ( inCaps.dwFormats & WAVE_FORMAT_2S08 ) rates.push_back( 22050 );\n      if ( inCaps.dwFormats & WAVE_FORMAT_4S08 ) rates.push_back( 44100 );\n      if ( inCaps.dwFormats & WAVE_FORMAT_96S08 ) rates.push_back( 96000 );\n    }\n  }\n  else if ( inCaps.dwChannels == 1 ) {\n    if ( inCaps.dwFormats & WAVE_FORMAT_1M16 ) info.nativeFormats |= RTAUDIO_SINT16;\n    if ( inCaps.dwFormats & WAVE_FORMAT_2M16 ) info.nativeFormats |= RTAUDIO_SINT16;\n    if ( inCaps.dwFormats & WAVE_FORMAT_4M16 ) info.nativeFormats |= RTAUDIO_SINT16;\n    if ( inCaps.dwFormats & WAVE_FORMAT_96M16 ) info.nativeFormats |= RTAUDIO_SINT16;\n    if ( inCaps.dwFormats & WAVE_FORMAT_1M08 ) info.nativeFormats |= RTAUDIO_SINT8;\n    if ( inCaps.dwFormats & WAVE_FORMAT_2M08 ) info.nativeFormats |= RTAUDIO_SINT8;\n    if ( inCaps.dwFormats & WAVE_FORMAT_4M08 ) info.nativeFormats |= RTAUDIO_SINT8;\n    if ( inCaps.dwFormats & WAVE_FORMAT_96M08 ) info.nativeFormats |= RTAUDIO_SINT8;\n\n    if ( info.nativeFormats & RTAUDIO_SINT16 ) {\n      if ( inCaps.dwFormats & WAVE_FORMAT_1M16 ) rates.push_back( 11025 );\n      if ( inCaps.dwFormats & WAVE_FORMAT_2M16 ) rates.push_back( 22050 );\n      if ( inCaps.dwFormats & WAVE_FORMAT_4M16 ) rates.push_back( 44100 );\n      if ( inCaps.dwFormats & WAVE_FORMAT_96M16 ) rates.push_back( 96000 );\n    }\n    else if ( info.nativeFormats & RTAUDIO_SINT8 ) {\n      if ( inCaps.dwFormats & WAVE_FORMAT_1M08 ) rates.push_back( 11025 );\n      if ( inCaps.dwFormats & WAVE_FORMAT_2M08 ) rates.push_back( 22050 );\n      if ( inCaps.dwFormats & WAVE_FORMAT_4M08 ) rates.push_back( 44100 );\n      if ( inCaps.dwFormats & WAVE_FORMAT_96M08 ) rates.push_back( 96000 );\n    }\n  }\n  else info.inputChannels = 0; // technically, this would be an error\n\n  input->Release();\n\n  if ( info.inputChannels == 0 ) return info;\n\n  // Copy the supported rates to the info structure but avoid duplication.\n  bool found;\n  for ( unsigned int i=0; i<rates.size(); i++ ) {\n    found = false;\n    for ( unsigned int j=0; j<info.sampleRates.size(); j++ ) {\n      if ( rates[i] == info.sampleRates[j] ) {\n        found = true;\n        break;\n      }\n    }\n    if ( found == false ) info.sampleRates.push_back( rates[i] );\n  }\n  std::sort( info.sampleRates.begin(), info.sampleRates.end() );\n\n  // If device opens for both playback and capture, we determine the channels.\n  if ( info.outputChannels > 0 && info.inputChannels > 0 )\n    info.duplexChannels = (info.outputChannels > info.inputChannels) ? info.inputChannels : info.outputChannels;\n\n  if ( device == 0 ) info.isDefaultInput = true;\n\n  // Copy name and return.\n  info.name = dsDevices[ device ].name;\n  info.probed = true;\n  return info;\n}\n\nbool RtApiDs :: probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels,\n                                 unsigned int firstChannel, unsigned int sampleRate,\n                                 RtAudioFormat format, unsigned int *bufferSize,\n                                 RtAudio::StreamOptions *options )\n{\n  if ( channels + firstChannel > 2 ) {\n    errorText_ = \"RtApiDs::probeDeviceOpen: DirectSound does not support more than 2 channels per device.\";\n    return FAILURE;\n  }\n\n  size_t nDevices = dsDevices.size();\n  if ( nDevices == 0 ) {\n    // This should not happen because a check is made before this function is called.\n    errorText_ = \"RtApiDs::probeDeviceOpen: no devices found!\";\n    return FAILURE;\n  }\n\n  if ( device >= nDevices ) {\n    // This should not happen because a check is made before this function is called.\n    errorText_ = \"RtApiDs::probeDeviceOpen: device ID is invalid!\";\n    return FAILURE;\n  }\n\n  if ( mode == OUTPUT ) {\n    if ( dsDevices[ device ].validId[0] == false ) {\n      errorStream_ << \"RtApiDs::probeDeviceOpen: device (\" << device << \") does not support output!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n  }\n  else { // mode == INPUT\n    if ( dsDevices[ device ].validId[1] == false ) {\n      errorStream_ << \"RtApiDs::probeDeviceOpen: device (\" << device << \") does not support input!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n  }\n\n  // According to a note in PortAudio, using GetDesktopWindow()\n  // instead of GetForegroundWindow() is supposed to avoid problems\n  // that occur when the application's window is not the foreground\n  // window.  Also, if the application window closes before the\n  // DirectSound buffer, DirectSound can crash.  In the past, I had\n  // problems when using GetDesktopWindow() but it seems fine now\n  // (January 2010).  I'll leave it commented here.\n  // HWND hWnd = GetForegroundWindow();\n  HWND hWnd = GetDesktopWindow();\n\n  // Check the numberOfBuffers parameter and limit the lowest value to\n  // two.  This is a judgement call and a value of two is probably too\n  // low for capture, but it should work for playback.\n  int nBuffers = 0;\n  if ( options ) nBuffers = options->numberOfBuffers;\n  if ( options && options->flags & RTAUDIO_MINIMIZE_LATENCY ) nBuffers = 2;\n  if ( nBuffers < 2 ) nBuffers = 3;\n\n  // Check the lower range of the user-specified buffer size and set\n  // (arbitrarily) to a lower bound of 32.\n  if ( *bufferSize < 32 ) *bufferSize = 32;\n\n  // Create the wave format structure.  The data format setting will\n  // be determined later.\n  WAVEFORMATEX waveFormat;\n  ZeroMemory( &waveFormat, sizeof(WAVEFORMATEX) );\n  waveFormat.wFormatTag = WAVE_FORMAT_PCM;\n  waveFormat.nChannels = channels + firstChannel;\n  waveFormat.nSamplesPerSec = (unsigned long) sampleRate;\n\n  // Determine the device buffer size. By default, we'll use the value\n  // defined above (32K), but we will grow it to make allowances for\n  // very large software buffer sizes.\n  DWORD dsBufferSize = MINIMUM_DEVICE_BUFFER_SIZE;\n  DWORD dsPointerLeadTime = 0;\n\n  void *ohandle = 0, *bhandle = 0;\n  HRESULT result;\n  if ( mode == OUTPUT ) {\n\n    LPDIRECTSOUND output;\n    result = DirectSoundCreate( dsDevices[ device ].id[0], &output, NULL );\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") opening output device (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    DSCAPS outCaps;\n    outCaps.dwSize = sizeof( outCaps );\n    result = output->GetCaps( &outCaps );\n    if ( FAILED( result ) ) {\n      output->Release();\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") getting capabilities (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    // Check channel information.\n    if ( channels + firstChannel == 2 && !( outCaps.dwFlags & DSCAPS_PRIMARYSTEREO ) ) {\n      errorStream_ << \"RtApiDs::getDeviceInfo: the output device (\" << dsDevices[ device ].name << \") does not support stereo playback.\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    // Check format information.  Use 16-bit format unless not\n    // supported or user requests 8-bit.\n    if ( outCaps.dwFlags & DSCAPS_PRIMARY16BIT &&\n         !( format == RTAUDIO_SINT8 && outCaps.dwFlags & DSCAPS_PRIMARY8BIT ) ) {\n      waveFormat.wBitsPerSample = 16;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT16;\n    }\n    else {\n      waveFormat.wBitsPerSample = 8;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT8;\n    }\n    stream_.userFormat = format;\n\n    // Update wave format structure and buffer information.\n    waveFormat.nBlockAlign = waveFormat.nChannels * waveFormat.wBitsPerSample / 8;\n    waveFormat.nAvgBytesPerSec = waveFormat.nSamplesPerSec * waveFormat.nBlockAlign;\n    dsPointerLeadTime = nBuffers * (*bufferSize) * (waveFormat.wBitsPerSample / 8) * channels;\n\n    // If the user wants an even bigger buffer, increase the device buffer size accordingly.\n    while ( dsPointerLeadTime * 2U > dsBufferSize )\n      dsBufferSize *= 2;\n\n    // Set cooperative level to DSSCL_EXCLUSIVE ... sound stops when window focus changes.\n    // result = output->SetCooperativeLevel( hWnd, DSSCL_EXCLUSIVE );\n    // Set cooperative level to DSSCL_PRIORITY ... sound remains when window focus changes.\n    result = output->SetCooperativeLevel( hWnd, DSSCL_PRIORITY );\n    if ( FAILED( result ) ) {\n      output->Release();\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") setting cooperative level (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    // Even though we will write to the secondary buffer, we need to\n    // access the primary buffer to set the correct output format\n    // (since the default is 8-bit, 22 kHz!).  Setup the DS primary\n    // buffer description.\n    DSBUFFERDESC bufferDescription;\n    ZeroMemory( &bufferDescription, sizeof( DSBUFFERDESC ) );\n    bufferDescription.dwSize = sizeof( DSBUFFERDESC );\n    bufferDescription.dwFlags = DSBCAPS_PRIMARYBUFFER;\n\n    // Obtain the primary buffer\n    LPDIRECTSOUNDBUFFER buffer;\n    result = output->CreateSoundBuffer( &bufferDescription, &buffer, NULL );\n    if ( FAILED( result ) ) {\n      output->Release();\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") accessing primary buffer (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    // Set the primary DS buffer sound format.\n    result = buffer->SetFormat( &waveFormat );\n    if ( FAILED( result ) ) {\n      output->Release();\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") setting primary buffer format (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    // Setup the secondary DS buffer description.\n    ZeroMemory( &bufferDescription, sizeof( DSBUFFERDESC ) );\n    bufferDescription.dwSize = sizeof( DSBUFFERDESC );\n    bufferDescription.dwFlags = ( DSBCAPS_STICKYFOCUS |\n                                  DSBCAPS_GLOBALFOCUS |\n                                  DSBCAPS_GETCURRENTPOSITION2 |\n                                  DSBCAPS_LOCHARDWARE );  // Force hardware mixing\n    bufferDescription.dwBufferBytes = dsBufferSize;\n    bufferDescription.lpwfxFormat = &waveFormat;\n\n    // Try to create the secondary DS buffer.  If that doesn't work,\n    // try to use software mixing.  Otherwise, there's a problem.\n    result = output->CreateSoundBuffer( &bufferDescription, &buffer, NULL );\n    if ( FAILED( result ) ) {\n      bufferDescription.dwFlags = ( DSBCAPS_STICKYFOCUS |\n                                    DSBCAPS_GLOBALFOCUS |\n                                    DSBCAPS_GETCURRENTPOSITION2 |\n                                    DSBCAPS_LOCSOFTWARE );  // Force software mixing\n      result = output->CreateSoundBuffer( &bufferDescription, &buffer, NULL );\n      if ( FAILED( result ) ) {\n        output->Release();\n        errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") creating secondary buffer (\" << dsDevices[ device ].name << \")!\";\n        errorText_ = errorStream_.str();\n        return FAILURE;\n      }\n    }\n\n    // Get the buffer size ... might be different from what we specified.\n    DSBCAPS dsbcaps;\n    dsbcaps.dwSize = sizeof( DSBCAPS );\n    result = buffer->GetCaps( &dsbcaps );\n    if ( FAILED( result ) ) {\n      output->Release();\n      buffer->Release();\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") getting buffer settings (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    dsBufferSize = dsbcaps.dwBufferBytes;\n\n    // Lock the DS buffer\n    LPVOID audioPtr;\n    DWORD dataLen;\n    result = buffer->Lock( 0, dsBufferSize, &audioPtr, &dataLen, NULL, NULL, 0 );\n    if ( FAILED( result ) ) {\n      output->Release();\n      buffer->Release();\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") locking buffer (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    // Zero the DS buffer\n    ZeroMemory( audioPtr, dataLen );\n\n    // Unlock the DS buffer\n    result = buffer->Unlock( audioPtr, dataLen, NULL, 0 );\n    if ( FAILED( result ) ) {\n      output->Release();\n      buffer->Release();\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") unlocking buffer (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    ohandle = (void *) output;\n    bhandle = (void *) buffer;\n  }\n\n  if ( mode == INPUT ) {\n\n    LPDIRECTSOUNDCAPTURE input;\n    result = DirectSoundCaptureCreate( dsDevices[ device ].id[1], &input, NULL );\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") opening input device (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    DSCCAPS inCaps;\n    inCaps.dwSize = sizeof( inCaps );\n    result = input->GetCaps( &inCaps );\n    if ( FAILED( result ) ) {\n      input->Release();\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") getting input capabilities (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    // Check channel information.\n    if ( inCaps.dwChannels < channels + firstChannel ) {\n      errorText_ = \"RtApiDs::getDeviceInfo: the input device does not support requested input channels.\";\n      return FAILURE;\n    }\n\n    // Check format information.  Use 16-bit format unless user\n    // requests 8-bit.\n    DWORD deviceFormats;\n    if ( channels + firstChannel == 2 ) {\n      deviceFormats = WAVE_FORMAT_1S08 | WAVE_FORMAT_2S08 | WAVE_FORMAT_4S08 | WAVE_FORMAT_96S08;\n      if ( format == RTAUDIO_SINT8 && inCaps.dwFormats & deviceFormats ) {\n        waveFormat.wBitsPerSample = 8;\n        stream_.deviceFormat[mode] = RTAUDIO_SINT8;\n      }\n      else { // assume 16-bit is supported\n        waveFormat.wBitsPerSample = 16;\n        stream_.deviceFormat[mode] = RTAUDIO_SINT16;\n      }\n    }\n    else { // channel == 1\n      deviceFormats = WAVE_FORMAT_1M08 | WAVE_FORMAT_2M08 | WAVE_FORMAT_4M08 | WAVE_FORMAT_96M08;\n      if ( format == RTAUDIO_SINT8 && inCaps.dwFormats & deviceFormats ) {\n        waveFormat.wBitsPerSample = 8;\n        stream_.deviceFormat[mode] = RTAUDIO_SINT8;\n      }\n      else { // assume 16-bit is supported\n        waveFormat.wBitsPerSample = 16;\n        stream_.deviceFormat[mode] = RTAUDIO_SINT16;\n      }\n    }\n    stream_.userFormat = format;\n\n    // Update wave format structure and buffer information.\n    waveFormat.nBlockAlign = waveFormat.nChannels * waveFormat.wBitsPerSample / 8;\n    waveFormat.nAvgBytesPerSec = waveFormat.nSamplesPerSec * waveFormat.nBlockAlign;\n    dsPointerLeadTime = nBuffers * (*bufferSize) * (waveFormat.wBitsPerSample / 8) * channels;\n\n    // If the user wants an even bigger buffer, increase the device buffer size accordingly.\n    while ( dsPointerLeadTime * 2U > dsBufferSize )\n      dsBufferSize *= 2;\n\n    // Setup the secondary DS buffer description.\n    DSCBUFFERDESC bufferDescription;\n    ZeroMemory( &bufferDescription, sizeof( DSCBUFFERDESC ) );\n    bufferDescription.dwSize = sizeof( DSCBUFFERDESC );\n    bufferDescription.dwFlags = 0;\n    bufferDescription.dwReserved = 0;\n    bufferDescription.dwBufferBytes = dsBufferSize;\n    bufferDescription.lpwfxFormat = &waveFormat;\n\n    // Create the capture buffer.\n    LPDIRECTSOUNDCAPTUREBUFFER buffer;\n    result = input->CreateCaptureBuffer( &bufferDescription, &buffer, NULL );\n    if ( FAILED( result ) ) {\n      input->Release();\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") creating input buffer (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    // Get the buffer size ... might be different from what we specified.\n    DSCBCAPS dscbcaps;\n    dscbcaps.dwSize = sizeof( DSCBCAPS );\n    result = buffer->GetCaps( &dscbcaps );\n    if ( FAILED( result ) ) {\n      input->Release();\n      buffer->Release();\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") getting buffer settings (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    dsBufferSize = dscbcaps.dwBufferBytes;\n\n    // NOTE: We could have a problem here if this is a duplex stream\n    // and the play and capture hardware buffer sizes are different\n    // (I'm actually not sure if that is a problem or not).\n    // Currently, we are not verifying that.\n\n    // Lock the capture buffer\n    LPVOID audioPtr;\n    DWORD dataLen;\n    result = buffer->Lock( 0, dsBufferSize, &audioPtr, &dataLen, NULL, NULL, 0 );\n    if ( FAILED( result ) ) {\n      input->Release();\n      buffer->Release();\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") locking input buffer (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    // Zero the buffer\n    ZeroMemory( audioPtr, dataLen );\n\n    // Unlock the buffer\n    result = buffer->Unlock( audioPtr, dataLen, NULL, 0 );\n    if ( FAILED( result ) ) {\n      input->Release();\n      buffer->Release();\n      errorStream_ << \"RtApiDs::probeDeviceOpen: error (\" << getErrorString( result ) << \") unlocking input buffer (\" << dsDevices[ device ].name << \")!\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n\n    ohandle = (void *) input;\n    bhandle = (void *) buffer;\n  }\n\n  // Set various stream parameters\n  DsHandle *handle = 0;\n  stream_.nDeviceChannels[mode] = channels + firstChannel;\n  stream_.nUserChannels[mode] = channels;\n  stream_.bufferSize = *bufferSize;\n  stream_.channelOffset[mode] = firstChannel;\n  stream_.deviceInterleaved[mode] = true;\n  if ( options && options->flags & RTAUDIO_NONINTERLEAVED ) stream_.userInterleaved = false;\n  else stream_.userInterleaved = true;\n\n  // Set flag for buffer conversion\n  stream_.doConvertBuffer[mode] = false;\n  if (stream_.nUserChannels[mode] != stream_.nDeviceChannels[mode])\n    stream_.doConvertBuffer[mode] = true;\n  if (stream_.userFormat != stream_.deviceFormat[mode])\n    stream_.doConvertBuffer[mode] = true;\n  if ( stream_.userInterleaved != stream_.deviceInterleaved[mode] &&\n       stream_.nUserChannels[mode] > 1 )\n    stream_.doConvertBuffer[mode] = true;\n\n  // Allocate necessary internal buffers\n  long bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat );\n  stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 );\n  if ( stream_.userBuffer[mode] == NULL ) {\n    errorText_ = \"RtApiDs::probeDeviceOpen: error allocating user buffer memory.\";\n    goto error;\n  }\n\n  if ( stream_.doConvertBuffer[mode] ) {\n\n    bool makeBuffer = true;\n    bufferBytes = stream_.nDeviceChannels[mode] * formatBytes( stream_.deviceFormat[mode] );\n    if ( mode == INPUT ) {\n      if ( stream_.mode == OUTPUT && stream_.deviceBuffer ) {\n        unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] );\n        if ( bufferBytes <= (long) bytesOut ) makeBuffer = false;\n      }\n    }\n\n    if ( makeBuffer ) {\n      bufferBytes *= *bufferSize;\n      if ( stream_.deviceBuffer ) free( stream_.deviceBuffer );\n      stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 );\n      if ( stream_.deviceBuffer == NULL ) {\n        errorText_ = \"RtApiDs::probeDeviceOpen: error allocating device buffer memory.\";\n        goto error;\n      }\n    }\n  }\n\n  // Allocate our DsHandle structures for the stream.\n  if ( stream_.apiHandle == 0 ) {\n    try {\n      handle = new DsHandle;\n    }\n    catch ( std::bad_alloc& ) {\n      errorText_ = \"RtApiDs::probeDeviceOpen: error allocating AsioHandle memory.\";\n      goto error;\n    }\n\n    // Create a manual-reset event.\n    handle->condition = CreateEvent( NULL,   // no security\n                                     TRUE,   // manual-reset\n                                     FALSE,  // non-signaled initially\n                                     NULL ); // unnamed\n    stream_.apiHandle = (void *) handle;\n  }\n  else\n    handle = (DsHandle *) stream_.apiHandle;\n  handle->id[mode] = ohandle;\n  handle->buffer[mode] = bhandle;\n  handle->dsBufferSize[mode] = dsBufferSize;\n  handle->dsPointerLeadTime[mode] = dsPointerLeadTime;\n\n  stream_.device[mode] = device;\n  stream_.state = STREAM_STOPPED;\n  if ( stream_.mode == OUTPUT && mode == INPUT )\n    // We had already set up an output stream.\n    stream_.mode = DUPLEX;\n  else\n    stream_.mode = mode;\n  stream_.nBuffers = nBuffers;\n  stream_.sampleRate = sampleRate;\n\n  // Setup the buffer conversion information structure.\n  if ( stream_.doConvertBuffer[mode] ) setConvertInfo( mode, firstChannel );\n\n  // Setup the callback thread.\n  if ( stream_.callbackInfo.isRunning == false ) {\n    unsigned threadId;\n    stream_.callbackInfo.isRunning = true;\n    stream_.callbackInfo.object = (void *) this;\n    stream_.callbackInfo.thread = _beginthreadex( NULL, 0, &callbackHandler,\n                                                  &stream_.callbackInfo, 0, &threadId );\n    if ( stream_.callbackInfo.thread == 0 ) {\n      errorText_ = \"RtApiDs::probeDeviceOpen: error creating callback thread!\";\n      goto error;\n    }\n\n    // Boost DS thread priority\n    SetThreadPriority( (HANDLE) stream_.callbackInfo.thread, THREAD_PRIORITY_HIGHEST );\n  }\n  return SUCCESS;\n\n error:\n  if ( handle ) {\n    if ( handle->buffer[0] ) { // the object pointer can be NULL and valid\n      LPDIRECTSOUND object = (LPDIRECTSOUND) handle->id[0];\n      LPDIRECTSOUNDBUFFER buffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0];\n      if ( buffer ) buffer->Release();\n      object->Release();\n    }\n    if ( handle->buffer[1] ) {\n      LPDIRECTSOUNDCAPTURE object = (LPDIRECTSOUNDCAPTURE) handle->id[1];\n      LPDIRECTSOUNDCAPTUREBUFFER buffer = (LPDIRECTSOUNDCAPTUREBUFFER) handle->buffer[1];\n      if ( buffer ) buffer->Release();\n      object->Release();\n    }\n    CloseHandle( handle->condition );\n    delete handle;\n    stream_.apiHandle = 0;\n  }\n\n  for ( int i=0; i<2; i++ ) {\n    if ( stream_.userBuffer[i] ) {\n      free( stream_.userBuffer[i] );\n      stream_.userBuffer[i] = 0;\n    }\n  }\n\n  if ( stream_.deviceBuffer ) {\n    free( stream_.deviceBuffer );\n    stream_.deviceBuffer = 0;\n  }\n\n  stream_.state = STREAM_CLOSED;\n  return FAILURE;\n}\n\nvoid RtApiDs :: closeStream()\n{\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiDs::closeStream(): no open stream to close!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  // Stop the callback thread.\n  stream_.callbackInfo.isRunning = false;\n  WaitForSingleObject( (HANDLE) stream_.callbackInfo.thread, INFINITE );\n  CloseHandle( (HANDLE) stream_.callbackInfo.thread );\n\n  DsHandle *handle = (DsHandle *) stream_.apiHandle;\n  if ( handle ) {\n    if ( handle->buffer[0] ) { // the object pointer can be NULL and valid\n      LPDIRECTSOUND object = (LPDIRECTSOUND) handle->id[0];\n      LPDIRECTSOUNDBUFFER buffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0];\n      if ( buffer ) {\n        buffer->Stop();\n        buffer->Release();\n      }\n      object->Release();\n    }\n    if ( handle->buffer[1] ) {\n      LPDIRECTSOUNDCAPTURE object = (LPDIRECTSOUNDCAPTURE) handle->id[1];\n      LPDIRECTSOUNDCAPTUREBUFFER buffer = (LPDIRECTSOUNDCAPTUREBUFFER) handle->buffer[1];\n      if ( buffer ) {\n        buffer->Stop();\n        buffer->Release();\n      }\n      object->Release();\n    }\n    CloseHandle( handle->condition );\n    delete handle;\n    stream_.apiHandle = 0;\n  }\n\n  for ( int i=0; i<2; i++ ) {\n    if ( stream_.userBuffer[i] ) {\n      free( stream_.userBuffer[i] );\n      stream_.userBuffer[i] = 0;\n    }\n  }\n\n  if ( stream_.deviceBuffer ) {\n    free( stream_.deviceBuffer );\n    stream_.deviceBuffer = 0;\n  }\n\n  stream_.mode = UNINITIALIZED;\n  stream_.state = STREAM_CLOSED;\n}\n\nvoid RtApiDs :: startStream()\n{\n  verifyStream();\n  if ( stream_.state == STREAM_RUNNING ) {\n    errorText_ = \"RtApiDs::startStream(): the stream is already running!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  DsHandle *handle = (DsHandle *) stream_.apiHandle;\n\n  // Increase scheduler frequency on lesser windows (a side-effect of\n  // increasing timer accuracy).  On greater windows (Win2K or later),\n  // this is already in effect.\n  timeBeginPeriod( 1 ); \n\n  buffersRolling = false;\n  duplexPrerollBytes = 0;\n\n  if ( stream_.mode == DUPLEX ) {\n    // 0.5 seconds of silence in DUPLEX mode while the devices spin up and synchronize.\n    duplexPrerollBytes = (int) ( 0.5 * stream_.sampleRate * formatBytes( stream_.deviceFormat[1] ) * stream_.nDeviceChannels[1] );\n  }\n\n  HRESULT result = 0;\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n\n    LPDIRECTSOUNDBUFFER buffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0];\n    result = buffer->Play( 0, 0, DSBPLAY_LOOPING );\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::startStream: error (\" << getErrorString( result ) << \") starting output buffer!\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n  }\n\n  if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) {\n\n    LPDIRECTSOUNDCAPTUREBUFFER buffer = (LPDIRECTSOUNDCAPTUREBUFFER) handle->buffer[1];\n    result = buffer->Start( DSCBSTART_LOOPING );\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::startStream: error (\" << getErrorString( result ) << \") starting input buffer!\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n  }\n\n  handle->drainCounter = 0;\n  handle->internalDrain = false;\n  ResetEvent( handle->condition );\n  stream_.state = STREAM_RUNNING;\n\n unlock:\n  if ( FAILED( result ) ) error( RtAudioError::SYSTEM_ERROR );\n}\n\nvoid RtApiDs :: stopStream()\n{\n  verifyStream();\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiDs::stopStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  HRESULT result = 0;\n  LPVOID audioPtr;\n  DWORD dataLen;\n  DsHandle *handle = (DsHandle *) stream_.apiHandle;\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n    if ( handle->drainCounter == 0 ) {\n      handle->drainCounter = 2;\n      WaitForSingleObject( handle->condition, INFINITE );  // block until signaled\n    }\n\n    stream_.state = STREAM_STOPPED;\n\n    MUTEX_LOCK( &stream_.mutex );\n\n    // Stop the buffer and clear memory\n    LPDIRECTSOUNDBUFFER buffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0];\n    result = buffer->Stop();\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::stopStream: error (\" << getErrorString( result ) << \") stopping output buffer!\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n\n    // Lock the buffer and clear it so that if we start to play again,\n    // we won't have old data playing.\n    result = buffer->Lock( 0, handle->dsBufferSize[0], &audioPtr, &dataLen, NULL, NULL, 0 );\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::stopStream: error (\" << getErrorString( result ) << \") locking output buffer!\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n\n    // Zero the DS buffer\n    ZeroMemory( audioPtr, dataLen );\n\n    // Unlock the DS buffer\n    result = buffer->Unlock( audioPtr, dataLen, NULL, 0 );\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::stopStream: error (\" << getErrorString( result ) << \") unlocking output buffer!\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n\n    // If we start playing again, we must begin at beginning of buffer.\n    handle->bufferPointer[0] = 0;\n  }\n\n  if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) {\n    LPDIRECTSOUNDCAPTUREBUFFER buffer = (LPDIRECTSOUNDCAPTUREBUFFER) handle->buffer[1];\n    audioPtr = NULL;\n    dataLen = 0;\n\n    stream_.state = STREAM_STOPPED;\n\n    if ( stream_.mode != DUPLEX )\n      MUTEX_LOCK( &stream_.mutex );\n\n    result = buffer->Stop();\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::stopStream: error (\" << getErrorString( result ) << \") stopping input buffer!\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n\n    // Lock the buffer and clear it so that if we start to play again,\n    // we won't have old data playing.\n    result = buffer->Lock( 0, handle->dsBufferSize[1], &audioPtr, &dataLen, NULL, NULL, 0 );\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::stopStream: error (\" << getErrorString( result ) << \") locking input buffer!\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n\n    // Zero the DS buffer\n    ZeroMemory( audioPtr, dataLen );\n\n    // Unlock the DS buffer\n    result = buffer->Unlock( audioPtr, dataLen, NULL, 0 );\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::stopStream: error (\" << getErrorString( result ) << \") unlocking input buffer!\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n\n    // If we start recording again, we must begin at beginning of buffer.\n    handle->bufferPointer[1] = 0;\n  }\n\n unlock:\n  timeEndPeriod( 1 ); // revert to normal scheduler frequency on lesser windows.\n  MUTEX_UNLOCK( &stream_.mutex );\n\n  if ( FAILED( result ) ) error( RtAudioError::SYSTEM_ERROR );\n}\n\nvoid RtApiDs :: abortStream()\n{\n  verifyStream();\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiDs::abortStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  DsHandle *handle = (DsHandle *) stream_.apiHandle;\n  handle->drainCounter = 2;\n\n  stopStream();\n}\n\nvoid RtApiDs :: callbackEvent()\n{\n  if ( stream_.state == STREAM_STOPPED || stream_.state == STREAM_STOPPING ) {\n    Sleep( 50 ); // sleep 50 milliseconds\n    return;\n  }\n\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiDs::callbackEvent(): the stream is closed ... this shouldn't happen!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  CallbackInfo *info = (CallbackInfo *) &stream_.callbackInfo;\n  DsHandle *handle = (DsHandle *) stream_.apiHandle;\n\n  // Check if we were draining the stream and signal is finished.\n  if ( handle->drainCounter > stream_.nBuffers + 2 ) {\n\n    stream_.state = STREAM_STOPPING;\n    if ( handle->internalDrain == false )\n      SetEvent( handle->condition );\n    else\n      stopStream();\n    return;\n  }\n\n  // Invoke user callback to get fresh output data UNLESS we are\n  // draining stream.\n  if ( handle->drainCounter == 0 ) {\n    RtAudioCallback callback = (RtAudioCallback) info->callback;\n    double streamTime = getStreamTime();\n    RtAudioStreamStatus status = 0;\n    if ( stream_.mode != INPUT && handle->xrun[0] == true ) {\n      status |= RTAUDIO_OUTPUT_UNDERFLOW;\n      handle->xrun[0] = false;\n    }\n    if ( stream_.mode != OUTPUT && handle->xrun[1] == true ) {\n      status |= RTAUDIO_INPUT_OVERFLOW;\n      handle->xrun[1] = false;\n    }\n    int cbReturnValue = callback( stream_.userBuffer[0], stream_.userBuffer[1],\n                                  stream_.bufferSize, streamTime, status, info->userData );\n    if ( cbReturnValue == 2 ) {\n      stream_.state = STREAM_STOPPING;\n      handle->drainCounter = 2;\n      abortStream();\n      return;\n    }\n    else if ( cbReturnValue == 1 ) {\n      handle->drainCounter = 1;\n      handle->internalDrain = true;\n    }\n  }\n\n  HRESULT result;\n  DWORD currentWritePointer, safeWritePointer;\n  DWORD currentReadPointer, safeReadPointer;\n  UINT nextWritePointer;\n\n  LPVOID buffer1 = NULL;\n  LPVOID buffer2 = NULL;\n  DWORD bufferSize1 = 0;\n  DWORD bufferSize2 = 0;\n\n  char *buffer;\n  long bufferBytes;\n\n  MUTEX_LOCK( &stream_.mutex );\n  if ( stream_.state == STREAM_STOPPED ) {\n    MUTEX_UNLOCK( &stream_.mutex );\n    return;\n  }\n\n  if ( buffersRolling == false ) {\n    if ( stream_.mode == DUPLEX ) {\n      //assert( handle->dsBufferSize[0] == handle->dsBufferSize[1] );\n\n      // It takes a while for the devices to get rolling. As a result,\n      // there's no guarantee that the capture and write device pointers\n      // will move in lockstep.  Wait here for both devices to start\n      // rolling, and then set our buffer pointers accordingly.\n      // e.g. Crystal Drivers: the capture buffer starts up 5700 to 9600\n      // bytes later than the write buffer.\n\n      // Stub: a serious risk of having a pre-emptive scheduling round\n      // take place between the two GetCurrentPosition calls... but I'm\n      // really not sure how to solve the problem.  Temporarily boost to\n      // Realtime priority, maybe; but I'm not sure what priority the\n      // DirectSound service threads run at. We *should* be roughly\n      // within a ms or so of correct.\n\n      LPDIRECTSOUNDBUFFER dsWriteBuffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0];\n      LPDIRECTSOUNDCAPTUREBUFFER dsCaptureBuffer = (LPDIRECTSOUNDCAPTUREBUFFER) handle->buffer[1];\n\n      DWORD startSafeWritePointer, startSafeReadPointer;\n\n      result = dsWriteBuffer->GetCurrentPosition( NULL, &startSafeWritePointer );\n      if ( FAILED( result ) ) {\n        errorStream_ << \"RtApiDs::callbackEvent: error (\" << getErrorString( result ) << \") getting current write position!\";\n        errorText_ = errorStream_.str();\n        MUTEX_UNLOCK( &stream_.mutex );\n        error( RtAudioError::SYSTEM_ERROR );\n        return;\n      }\n      result = dsCaptureBuffer->GetCurrentPosition( NULL, &startSafeReadPointer );\n      if ( FAILED( result ) ) {\n        errorStream_ << \"RtApiDs::callbackEvent: error (\" << getErrorString( result ) << \") getting current read position!\";\n        errorText_ = errorStream_.str();\n        MUTEX_UNLOCK( &stream_.mutex );\n        error( RtAudioError::SYSTEM_ERROR );\n        return;\n      }\n      while ( true ) {\n        result = dsWriteBuffer->GetCurrentPosition( NULL, &safeWritePointer );\n        if ( FAILED( result ) ) {\n          errorStream_ << \"RtApiDs::callbackEvent: error (\" << getErrorString( result ) << \") getting current write position!\";\n          errorText_ = errorStream_.str();\n          MUTEX_UNLOCK( &stream_.mutex );\n          error( RtAudioError::SYSTEM_ERROR );\n          return;\n        }\n        result = dsCaptureBuffer->GetCurrentPosition( NULL, &safeReadPointer );\n        if ( FAILED( result ) ) {\n          errorStream_ << \"RtApiDs::callbackEvent: error (\" << getErrorString( result ) << \") getting current read position!\";\n          errorText_ = errorStream_.str();\n          MUTEX_UNLOCK( &stream_.mutex );\n          error( RtAudioError::SYSTEM_ERROR );\n          return;\n        }\n        if ( safeWritePointer != startSafeWritePointer && safeReadPointer != startSafeReadPointer ) break;\n        Sleep( 1 );\n      }\n\n      //assert( handle->dsBufferSize[0] == handle->dsBufferSize[1] );\n\n      handle->bufferPointer[0] = safeWritePointer + handle->dsPointerLeadTime[0];\n      if ( handle->bufferPointer[0] >= handle->dsBufferSize[0] ) handle->bufferPointer[0] -= handle->dsBufferSize[0];\n      handle->bufferPointer[1] = safeReadPointer;\n    }\n    else if ( stream_.mode == OUTPUT ) {\n\n      // Set the proper nextWritePosition after initial startup.\n      LPDIRECTSOUNDBUFFER dsWriteBuffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0];\n      result = dsWriteBuffer->GetCurrentPosition( &currentWritePointer, &safeWritePointer );\n      if ( FAILED( result ) ) {\n        errorStream_ << \"RtApiDs::callbackEvent: error (\" << getErrorString( result ) << \") getting current write position!\";\n        errorText_ = errorStream_.str();\n        MUTEX_UNLOCK( &stream_.mutex );\n        error( RtAudioError::SYSTEM_ERROR );\n        return;\n      }\n      handle->bufferPointer[0] = safeWritePointer + handle->dsPointerLeadTime[0];\n      if ( handle->bufferPointer[0] >= handle->dsBufferSize[0] ) handle->bufferPointer[0] -= handle->dsBufferSize[0];\n    }\n\n    buffersRolling = true;\n  }\n\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n    \n    LPDIRECTSOUNDBUFFER dsBuffer = (LPDIRECTSOUNDBUFFER) handle->buffer[0];\n\n    if ( handle->drainCounter > 1 ) { // write zeros to the output stream\n      bufferBytes = stream_.bufferSize * stream_.nUserChannels[0];\n      bufferBytes *= formatBytes( stream_.userFormat );\n      memset( stream_.userBuffer[0], 0, bufferBytes );\n    }\n\n    // Setup parameters and do buffer conversion if necessary.\n    if ( stream_.doConvertBuffer[0] ) {\n      buffer = stream_.deviceBuffer;\n      convertBuffer( buffer, stream_.userBuffer[0], stream_.convertInfo[0] );\n      bufferBytes = stream_.bufferSize * stream_.nDeviceChannels[0];\n      bufferBytes *= formatBytes( stream_.deviceFormat[0] );\n    }\n    else {\n      buffer = stream_.userBuffer[0];\n      bufferBytes = stream_.bufferSize * stream_.nUserChannels[0];\n      bufferBytes *= formatBytes( stream_.userFormat );\n    }\n\n    // No byte swapping necessary in DirectSound implementation.\n\n    // Ahhh ... windoze.  16-bit data is signed but 8-bit data is\n    // unsigned.  So, we need to convert our signed 8-bit data here to\n    // unsigned.\n    if ( stream_.deviceFormat[0] == RTAUDIO_SINT8 )\n      for ( int i=0; i<bufferBytes; i++ ) buffer[i] = (unsigned char) ( buffer[i] + 128 );\n\n    DWORD dsBufferSize = handle->dsBufferSize[0];\n    nextWritePointer = handle->bufferPointer[0];\n\n    DWORD endWrite, leadPointer;\n    while ( true ) {\n      // Find out where the read and \"safe write\" pointers are.\n      result = dsBuffer->GetCurrentPosition( &currentWritePointer, &safeWritePointer );\n      if ( FAILED( result ) ) {\n        errorStream_ << \"RtApiDs::callbackEvent: error (\" << getErrorString( result ) << \") getting current write position!\";\n        errorText_ = errorStream_.str();\n        MUTEX_UNLOCK( &stream_.mutex );\n        error( RtAudioError::SYSTEM_ERROR );\n        return;\n      }\n\n      // We will copy our output buffer into the region between\n      // safeWritePointer and leadPointer.  If leadPointer is not\n      // beyond the next endWrite position, wait until it is.\n      leadPointer = safeWritePointer + handle->dsPointerLeadTime[0];\n      //std::cout << \"safeWritePointer = \" << safeWritePointer << \", leadPointer = \" << leadPointer << \", nextWritePointer = \" << nextWritePointer << std::endl;\n      if ( leadPointer > dsBufferSize ) leadPointer -= dsBufferSize;\n      if ( leadPointer < nextWritePointer ) leadPointer += dsBufferSize; // unwrap offset\n      endWrite = nextWritePointer + bufferBytes;\n\n      // Check whether the entire write region is behind the play pointer.\n      if ( leadPointer >= endWrite ) break;\n\n      // If we are here, then we must wait until the leadPointer advances\n      // beyond the end of our next write region. We use the\n      // Sleep() function to suspend operation until that happens.\n      double millis = ( endWrite - leadPointer ) * 1000.0;\n      millis /= ( formatBytes( stream_.deviceFormat[0]) * stream_.nDeviceChannels[0] * stream_.sampleRate);\n      if ( millis < 1.0 ) millis = 1.0;\n      Sleep( (DWORD) millis );\n    }\n\n    if ( dsPointerBetween( nextWritePointer, safeWritePointer, currentWritePointer, dsBufferSize )\n         || dsPointerBetween( endWrite, safeWritePointer, currentWritePointer, dsBufferSize ) ) { \n      // We've strayed into the forbidden zone ... resync the read pointer.\n      handle->xrun[0] = true;\n      nextWritePointer = safeWritePointer + handle->dsPointerLeadTime[0] - bufferBytes;\n      if ( nextWritePointer >= dsBufferSize ) nextWritePointer -= dsBufferSize;\n      handle->bufferPointer[0] = nextWritePointer;\n      endWrite = nextWritePointer + bufferBytes;\n    }\n\n    // Lock free space in the buffer\n    result = dsBuffer->Lock( nextWritePointer, bufferBytes, &buffer1,\n                             &bufferSize1, &buffer2, &bufferSize2, 0 );\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::callbackEvent: error (\" << getErrorString( result ) << \") locking buffer during playback!\";\n      errorText_ = errorStream_.str();\n      MUTEX_UNLOCK( &stream_.mutex );\n      error( RtAudioError::SYSTEM_ERROR );\n      return;\n    }\n\n    // Copy our buffer into the DS buffer\n    CopyMemory( buffer1, buffer, bufferSize1 );\n    if ( buffer2 != NULL ) CopyMemory( buffer2, buffer+bufferSize1, bufferSize2 );\n\n    // Update our buffer offset and unlock sound buffer\n    dsBuffer->Unlock( buffer1, bufferSize1, buffer2, bufferSize2 );\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::callbackEvent: error (\" << getErrorString( result ) << \") unlocking buffer during playback!\";\n      errorText_ = errorStream_.str();\n      MUTEX_UNLOCK( &stream_.mutex );\n      error( RtAudioError::SYSTEM_ERROR );\n      return;\n    }\n    nextWritePointer = ( nextWritePointer + bufferSize1 + bufferSize2 ) % dsBufferSize;\n    handle->bufferPointer[0] = nextWritePointer;\n  }\n\n  // Don't bother draining input\n  if ( handle->drainCounter ) {\n    handle->drainCounter++;\n    goto unlock;\n  }\n\n  if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) {\n\n    // Setup parameters.\n    if ( stream_.doConvertBuffer[1] ) {\n      buffer = stream_.deviceBuffer;\n      bufferBytes = stream_.bufferSize * stream_.nDeviceChannels[1];\n      bufferBytes *= formatBytes( stream_.deviceFormat[1] );\n    }\n    else {\n      buffer = stream_.userBuffer[1];\n      bufferBytes = stream_.bufferSize * stream_.nUserChannels[1];\n      bufferBytes *= formatBytes( stream_.userFormat );\n    }\n\n    LPDIRECTSOUNDCAPTUREBUFFER dsBuffer = (LPDIRECTSOUNDCAPTUREBUFFER) handle->buffer[1];\n    long nextReadPointer = handle->bufferPointer[1];\n    DWORD dsBufferSize = handle->dsBufferSize[1];\n\n    // Find out where the write and \"safe read\" pointers are.\n    result = dsBuffer->GetCurrentPosition( &currentReadPointer, &safeReadPointer );\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::callbackEvent: error (\" << getErrorString( result ) << \") getting current read position!\";\n      errorText_ = errorStream_.str();\n      MUTEX_UNLOCK( &stream_.mutex );\n      error( RtAudioError::SYSTEM_ERROR );\n      return;\n    }\n\n    if ( safeReadPointer < (DWORD)nextReadPointer ) safeReadPointer += dsBufferSize; // unwrap offset\n    DWORD endRead = nextReadPointer + bufferBytes;\n\n    // Handling depends on whether we are INPUT or DUPLEX. \n    // If we're in INPUT mode then waiting is a good thing. If we're in DUPLEX mode,\n    // then a wait here will drag the write pointers into the forbidden zone.\n    // \n    // In DUPLEX mode, rather than wait, we will back off the read pointer until \n    // it's in a safe position. This causes dropouts, but it seems to be the only \n    // practical way to sync up the read and write pointers reliably, given the \n    // the very complex relationship between phase and increment of the read and write \n    // pointers.\n    //\n    // In order to minimize audible dropouts in DUPLEX mode, we will\n    // provide a pre-roll period of 0.5 seconds in which we return\n    // zeros from the read buffer while the pointers sync up.\n\n    if ( stream_.mode == DUPLEX ) {\n      if ( safeReadPointer < endRead ) {\n        if ( duplexPrerollBytes <= 0 ) {\n          // Pre-roll time over. Be more agressive.\n          int adjustment = endRead-safeReadPointer;\n\n          handle->xrun[1] = true;\n          // Two cases:\n          //   - large adjustments: we've probably run out of CPU cycles, so just resync exactly,\n          //     and perform fine adjustments later.\n          //   - small adjustments: back off by twice as much.\n          if ( adjustment >= 2*bufferBytes )\n            nextReadPointer = safeReadPointer-2*bufferBytes;\n          else\n            nextReadPointer = safeReadPointer-bufferBytes-adjustment;\n\n          if ( nextReadPointer < 0 ) nextReadPointer += dsBufferSize;\n\n        }\n        else {\n          // In pre=roll time. Just do it.\n          nextReadPointer = safeReadPointer - bufferBytes;\n          while ( nextReadPointer < 0 ) nextReadPointer += dsBufferSize;\n        }\n        endRead = nextReadPointer + bufferBytes;\n      }\n    }\n    else { // mode == INPUT\n      while ( safeReadPointer < endRead && stream_.callbackInfo.isRunning ) {\n        // See comments for playback.\n        double millis = (endRead - safeReadPointer) * 1000.0;\n        millis /= ( formatBytes(stream_.deviceFormat[1]) * stream_.nDeviceChannels[1] * stream_.sampleRate);\n        if ( millis < 1.0 ) millis = 1.0;\n        Sleep( (DWORD) millis );\n\n        // Wake up and find out where we are now.\n        result = dsBuffer->GetCurrentPosition( &currentReadPointer, &safeReadPointer );\n        if ( FAILED( result ) ) {\n          errorStream_ << \"RtApiDs::callbackEvent: error (\" << getErrorString( result ) << \") getting current read position!\";\n          errorText_ = errorStream_.str();\n          MUTEX_UNLOCK( &stream_.mutex );\n          error( RtAudioError::SYSTEM_ERROR );\n          return;\n        }\n      \n        if ( safeReadPointer < (DWORD)nextReadPointer ) safeReadPointer += dsBufferSize; // unwrap offset\n      }\n    }\n\n    // Lock free space in the buffer\n    result = dsBuffer->Lock( nextReadPointer, bufferBytes, &buffer1,\n                             &bufferSize1, &buffer2, &bufferSize2, 0 );\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::callbackEvent: error (\" << getErrorString( result ) << \") locking capture buffer!\";\n      errorText_ = errorStream_.str();\n      MUTEX_UNLOCK( &stream_.mutex );\n      error( RtAudioError::SYSTEM_ERROR );\n      return;\n    }\n\n    if ( duplexPrerollBytes <= 0 ) {\n      // Copy our buffer into the DS buffer\n      CopyMemory( buffer, buffer1, bufferSize1 );\n      if ( buffer2 != NULL ) CopyMemory( buffer+bufferSize1, buffer2, bufferSize2 );\n    }\n    else {\n      memset( buffer, 0, bufferSize1 );\n      if ( buffer2 != NULL ) memset( buffer + bufferSize1, 0, bufferSize2 );\n      duplexPrerollBytes -= bufferSize1 + bufferSize2;\n    }\n\n    // Update our buffer offset and unlock sound buffer\n    nextReadPointer = ( nextReadPointer + bufferSize1 + bufferSize2 ) % dsBufferSize;\n    dsBuffer->Unlock( buffer1, bufferSize1, buffer2, bufferSize2 );\n    if ( FAILED( result ) ) {\n      errorStream_ << \"RtApiDs::callbackEvent: error (\" << getErrorString( result ) << \") unlocking capture buffer!\";\n      errorText_ = errorStream_.str();\n      MUTEX_UNLOCK( &stream_.mutex );\n      error( RtAudioError::SYSTEM_ERROR );\n      return;\n    }\n    handle->bufferPointer[1] = nextReadPointer;\n\n    // No byte swapping necessary in DirectSound implementation.\n\n    // If necessary, convert 8-bit data from unsigned to signed.\n    if ( stream_.deviceFormat[1] == RTAUDIO_SINT8 )\n      for ( int j=0; j<bufferBytes; j++ ) buffer[j] = (signed char) ( buffer[j] - 128 );\n\n    // Do buffer conversion if necessary.\n    if ( stream_.doConvertBuffer[1] )\n      convertBuffer( stream_.userBuffer[1], stream_.deviceBuffer, stream_.convertInfo[1] );\n  }\n\n unlock:\n  MUTEX_UNLOCK( &stream_.mutex );\n  RtApi::tickStreamTime();\n}\n\n// Definitions for utility functions and callbacks\n// specific to the DirectSound implementation.\n\nstatic unsigned __stdcall callbackHandler( void *ptr )\n{\n  CallbackInfo *info = (CallbackInfo *) ptr;\n  RtApiDs *object = (RtApiDs *) info->object;\n  bool* isRunning = &info->isRunning;\n\n  while ( *isRunning == true ) {\n    object->callbackEvent();\n  }\n\n  _endthreadex( 0 );\n  return 0;\n}\n\nstatic BOOL CALLBACK deviceQueryCallback( LPGUID lpguid,\n                                          LPCTSTR description,\n                                          LPCTSTR /*module*/,\n                                          LPVOID lpContext )\n{\n  struct DsProbeData& probeInfo = *(struct DsProbeData*) lpContext;\n  std::vector<struct DsDevice>& dsDevices = *probeInfo.dsDevices;\n\n  HRESULT hr;\n  bool validDevice = false;\n  if ( probeInfo.isInput == true ) {\n    DSCCAPS caps;\n    LPDIRECTSOUNDCAPTURE object;\n\n    hr = DirectSoundCaptureCreate(  lpguid, &object,   NULL );\n    if ( hr != DS_OK ) return TRUE;\n\n    caps.dwSize = sizeof(caps);\n    hr = object->GetCaps( &caps );\n    if ( hr == DS_OK ) {\n      if ( caps.dwChannels > 0 && caps.dwFormats > 0 )\n        validDevice = true;\n    }\n    object->Release();\n  }\n  else {\n    DSCAPS caps;\n    LPDIRECTSOUND object;\n    hr = DirectSoundCreate(  lpguid, &object,   NULL );\n    if ( hr != DS_OK ) return TRUE;\n\n    caps.dwSize = sizeof(caps);\n    hr = object->GetCaps( &caps );\n    if ( hr == DS_OK ) {\n      if ( caps.dwFlags & DSCAPS_PRIMARYMONO || caps.dwFlags & DSCAPS_PRIMARYSTEREO )\n        validDevice = true;\n    }\n    object->Release();\n  }\n\n  // If good device, then save its name and guid.\n  std::string name = convertCharPointerToStdString( description );\n  //if ( name == \"Primary Sound Driver\" || name == \"Primary Sound Capture Driver\" )\n  if ( lpguid == NULL )\n    name = \"Default Device\";\n  if ( validDevice ) {\n    for ( unsigned int i=0; i<dsDevices.size(); i++ ) {\n      if ( dsDevices[i].name == name ) {\n        dsDevices[i].found = true;\n        if ( probeInfo.isInput ) {\n          dsDevices[i].id[1] = lpguid;\n          dsDevices[i].validId[1] = true;\n        }\n        else {\n          dsDevices[i].id[0] = lpguid;\n          dsDevices[i].validId[0] = true;\n        }\n        return TRUE;\n      }\n    }\n\n    DsDevice device;\n    device.name = name;\n    device.found = true;\n    if ( probeInfo.isInput ) {\n      device.id[1] = lpguid;\n      device.validId[1] = true;\n    }\n    else {\n      device.id[0] = lpguid;\n      device.validId[0] = true;\n    }\n    dsDevices.push_back( device );\n  }\n\n  return TRUE;\n}\n\nstatic const char* getErrorString( int code )\n{\n  switch ( code ) {\n\n  case DSERR_ALLOCATED:\n    return \"Already allocated\";\n\n  case DSERR_CONTROLUNAVAIL:\n    return \"Control unavailable\";\n\n  case DSERR_INVALIDPARAM:\n    return \"Invalid parameter\";\n\n  case DSERR_INVALIDCALL:\n    return \"Invalid call\";\n\n  case DSERR_GENERIC:\n    return \"Generic error\";\n\n  case DSERR_PRIOLEVELNEEDED:\n    return \"Priority level needed\";\n\n  case DSERR_OUTOFMEMORY:\n    return \"Out of memory\";\n\n  case DSERR_BADFORMAT:\n    return \"The sample rate or the channel format is not supported\";\n\n  case DSERR_UNSUPPORTED:\n    return \"Not supported\";\n\n  case DSERR_NODRIVER:\n    return \"No driver\";\n\n  case DSERR_ALREADYINITIALIZED:\n    return \"Already initialized\";\n\n  case DSERR_NOAGGREGATION:\n    return \"No aggregation\";\n\n  case DSERR_BUFFERLOST:\n    return \"Buffer lost\";\n\n  case DSERR_OTHERAPPHASPRIO:\n    return \"Another application already has priority\";\n\n  case DSERR_UNINITIALIZED:\n    return \"Uninitialized\";\n\n  default:\n    return \"DirectSound unknown error\";\n  }\n}\n//******************** End of __WINDOWS_DS__ *********************//\n#endif\n\n\n#if defined(__LINUX_ALSA__)\n\n#include <alsa/asoundlib.h>\n#include <unistd.h>\n\n  // A structure to hold various information related to the ALSA API\n  // implementation.\nstruct AlsaHandle {\n  snd_pcm_t *handles[2];\n  bool synchronized;\n  bool xrun[2];\n  pthread_cond_t runnable_cv;\n  bool runnable;\n\n  AlsaHandle()\n    :synchronized(false), runnable(false) { xrun[0] = false; xrun[1] = false; }\n};\n\nstatic void *alsaCallbackHandler( void * ptr );\n\nRtApiAlsa :: RtApiAlsa()\n{\n  // Nothing to do here.\n}\n\nRtApiAlsa :: ~RtApiAlsa()\n{\n  if ( stream_.state != STREAM_CLOSED ) closeStream();\n}\n\nunsigned int RtApiAlsa :: getDeviceCount( void )\n{\n  unsigned nDevices = 0;\n  int result, subdevice, card;\n  char name[64];\n  snd_ctl_t *handle;\n\n  // Count cards and devices\n  card = -1;\n  snd_card_next( &card );\n  while ( card >= 0 ) {\n    sprintf( name, \"hw:%d\", card );\n    result = snd_ctl_open( &handle, name, 0 );\n    if ( result < 0 ) {\n      errorStream_ << \"RtApiAlsa::getDeviceCount: control open, card = \" << card << \", \" << snd_strerror( result ) << \".\";\n      errorText_ = errorStream_.str();\n      error( RtAudioError::WARNING );\n      goto nextcard;\n    }\n    subdevice = -1;\n    while( 1 ) {\n      result = snd_ctl_pcm_next_device( handle, &subdevice );\n      if ( result < 0 ) {\n        errorStream_ << \"RtApiAlsa::getDeviceCount: control next device, card = \" << card << \", \" << snd_strerror( result ) << \".\";\n        errorText_ = errorStream_.str();\n        error( RtAudioError::WARNING );\n        break;\n      }\n      if ( subdevice < 0 )\n        break;\n      nDevices++;\n    }\n  nextcard:\n    snd_ctl_close( handle );\n    snd_card_next( &card );\n  }\n\n  result = snd_ctl_open( &handle, \"default\", 0 );\n  if (result == 0) {\n    nDevices++;\n    snd_ctl_close( handle );\n  }\n\n  return nDevices;\n}\n\nRtAudio::DeviceInfo RtApiAlsa :: getDeviceInfo( unsigned int device )\n{\n  RtAudio::DeviceInfo info;\n  info.probed = false;\n\n  unsigned nDevices = 0;\n  int result, subdevice, card;\n  char name[64];\n  snd_ctl_t *chandle;\n\n  // Count cards and devices\n  card = -1;\n  subdevice = -1;\n  snd_card_next( &card );\n  while ( card >= 0 ) {\n    sprintf( name, \"hw:%d\", card );\n    result = snd_ctl_open( &chandle, name, SND_CTL_NONBLOCK );\n    if ( result < 0 ) {\n      errorStream_ << \"RtApiAlsa::getDeviceInfo: control open, card = \" << card << \", \" << snd_strerror( result ) << \".\";\n      errorText_ = errorStream_.str();\n      error( RtAudioError::WARNING );\n      goto nextcard;\n    }\n    subdevice = -1;\n    while( 1 ) {\n      result = snd_ctl_pcm_next_device( chandle, &subdevice );\n      if ( result < 0 ) {\n        errorStream_ << \"RtApiAlsa::getDeviceInfo: control next device, card = \" << card << \", \" << snd_strerror( result ) << \".\";\n        errorText_ = errorStream_.str();\n        error( RtAudioError::WARNING );\n        break;\n      }\n      if ( subdevice < 0 ) break;\n      if ( nDevices == device ) {\n        sprintf( name, \"hw:%d,%d\", card, subdevice );\n        goto foundDevice;\n      }\n      nDevices++;\n    }\n  nextcard:\n    snd_ctl_close( chandle );\n    snd_card_next( &card );\n  }\n\n  result = snd_ctl_open( &chandle, \"default\", SND_CTL_NONBLOCK );\n  if ( result == 0 ) {\n    if ( nDevices == device ) {\n      strcpy( name, \"default\" );\n      goto foundDevice;\n    }\n    nDevices++;\n  }\n\n  if ( nDevices == 0 ) {\n    errorText_ = \"RtApiAlsa::getDeviceInfo: no devices found!\";\n    error( RtAudioError::INVALID_USE );\n    return info;\n  }\n\n  if ( device >= nDevices ) {\n    errorText_ = \"RtApiAlsa::getDeviceInfo: device ID is invalid!\";\n    error( RtAudioError::INVALID_USE );\n    return info;\n  }\n\n foundDevice:\n\n  // If a stream is already open, we cannot probe the stream devices.\n  // Thus, use the saved results.\n  if ( stream_.state != STREAM_CLOSED &&\n       ( stream_.device[0] == device || stream_.device[1] == device ) ) {\n    snd_ctl_close( chandle );\n    if ( device >= devices_.size() ) {\n      errorText_ = \"RtApiAlsa::getDeviceInfo: device ID was not present before stream was opened.\";\n      error( RtAudioError::WARNING );\n      return info;\n    }\n    return devices_[ device ];\n  }\n\n  int openMode = SND_PCM_ASYNC;\n  snd_pcm_stream_t stream;\n  snd_pcm_info_t *pcminfo;\n  snd_pcm_info_alloca( &pcminfo );\n  snd_pcm_t *phandle;\n  snd_pcm_hw_params_t *params;\n  snd_pcm_hw_params_alloca( &params );\n\n  // First try for playback unless default device (which has subdev -1)\n  stream = SND_PCM_STREAM_PLAYBACK;\n  snd_pcm_info_set_stream( pcminfo, stream );\n  if ( subdevice != -1 ) {\n    snd_pcm_info_set_device( pcminfo, subdevice );\n    snd_pcm_info_set_subdevice( pcminfo, 0 );\n\n    result = snd_ctl_pcm_info( chandle, pcminfo );\n    if ( result < 0 ) {\n      // Device probably doesn't support playback.\n      goto captureProbe;\n    }\n  }\n\n  result = snd_pcm_open( &phandle, name, stream, openMode | SND_PCM_NONBLOCK );\n  if ( result < 0 ) {\n    errorStream_ << \"RtApiAlsa::getDeviceInfo: snd_pcm_open error for device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    goto captureProbe;\n  }\n\n  // The device is open ... fill the parameter structure.\n  result = snd_pcm_hw_params_any( phandle, params );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::getDeviceInfo: snd_pcm_hw_params error for device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    goto captureProbe;\n  }\n\n  // Get output channel information.\n  unsigned int value;\n  result = snd_pcm_hw_params_get_channels_max( params, &value );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::getDeviceInfo: error getting device (\" << name << \") output channels, \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    goto captureProbe;\n  }\n  info.outputChannels = value;\n  snd_pcm_close( phandle );\n\n captureProbe:\n  stream = SND_PCM_STREAM_CAPTURE;\n  snd_pcm_info_set_stream( pcminfo, stream );\n\n  // Now try for capture unless default device (with subdev = -1)\n  if ( subdevice != -1 ) {\n    result = snd_ctl_pcm_info( chandle, pcminfo );\n    snd_ctl_close( chandle );\n    if ( result < 0 ) {\n      // Device probably doesn't support capture.\n      if ( info.outputChannels == 0 ) return info;\n      goto probeParameters;\n    }\n  }\n  else\n    snd_ctl_close( chandle );\n\n  result = snd_pcm_open( &phandle, name, stream, openMode | SND_PCM_NONBLOCK);\n  if ( result < 0 ) {\n    errorStream_ << \"RtApiAlsa::getDeviceInfo: snd_pcm_open error for device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    if ( info.outputChannels == 0 ) return info;\n    goto probeParameters;\n  }\n\n  // The device is open ... fill the parameter structure.\n  result = snd_pcm_hw_params_any( phandle, params );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::getDeviceInfo: snd_pcm_hw_params error for device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    if ( info.outputChannels == 0 ) return info;\n    goto probeParameters;\n  }\n\n  result = snd_pcm_hw_params_get_channels_max( params, &value );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::getDeviceInfo: error getting device (\" << name << \") input channels, \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    if ( info.outputChannels == 0 ) return info;\n    goto probeParameters;\n  }\n  info.inputChannels = value;\n  snd_pcm_close( phandle );\n\n  // If device opens for both playback and capture, we determine the channels.\n  if ( info.outputChannels > 0 && info.inputChannels > 0 )\n    info.duplexChannels = (info.outputChannels > info.inputChannels) ? info.inputChannels : info.outputChannels;\n\n  // ALSA doesn't provide default devices so we'll use the first available one.\n  if ( device == 0 && info.outputChannels > 0 )\n    info.isDefaultOutput = true;\n  if ( device == 0 && info.inputChannels > 0 )\n    info.isDefaultInput = true;\n\n probeParameters:\n  // At this point, we just need to figure out the supported data\n  // formats and sample rates.  We'll proceed by opening the device in\n  // the direction with the maximum number of channels, or playback if\n  // they are equal.  This might limit our sample rate options, but so\n  // be it.\n\n  if ( info.outputChannels >= info.inputChannels )\n    stream = SND_PCM_STREAM_PLAYBACK;\n  else\n    stream = SND_PCM_STREAM_CAPTURE;\n  snd_pcm_info_set_stream( pcminfo, stream );\n\n  result = snd_pcm_open( &phandle, name, stream, openMode | SND_PCM_NONBLOCK);\n  if ( result < 0 ) {\n    errorStream_ << \"RtApiAlsa::getDeviceInfo: snd_pcm_open error for device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // The device is open ... fill the parameter structure.\n  result = snd_pcm_hw_params_any( phandle, params );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::getDeviceInfo: snd_pcm_hw_params error for device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // Test our discrete set of sample rate values.\n  info.sampleRates.clear();\n  for ( unsigned int i=0; i<MAX_SAMPLE_RATES; i++ ) {\n    if ( snd_pcm_hw_params_test_rate( phandle, params, SAMPLE_RATES[i], 0 ) == 0 ) {\n      info.sampleRates.push_back( SAMPLE_RATES[i] );\n\n      if ( !info.preferredSampleRate || ( SAMPLE_RATES[i] <= 48000 && SAMPLE_RATES[i] > info.preferredSampleRate ) )\n        info.preferredSampleRate = SAMPLE_RATES[i];\n    }\n  }\n  if ( info.sampleRates.size() == 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::getDeviceInfo: no supported sample rates found for device (\" << name << \").\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // Probe the supported data formats ... we don't care about endian-ness just yet\n  snd_pcm_format_t format;\n  info.nativeFormats = 0;\n  format = SND_PCM_FORMAT_S8;\n  if ( snd_pcm_hw_params_test_format( phandle, params, format ) == 0 )\n    info.nativeFormats |= RTAUDIO_SINT8;\n  format = SND_PCM_FORMAT_S16;\n  if ( snd_pcm_hw_params_test_format( phandle, params, format ) == 0 )\n    info.nativeFormats |= RTAUDIO_SINT16;\n  format = SND_PCM_FORMAT_S24;\n  if ( snd_pcm_hw_params_test_format( phandle, params, format ) == 0 )\n    info.nativeFormats |= RTAUDIO_SINT24;\n  format = SND_PCM_FORMAT_S32;\n  if ( snd_pcm_hw_params_test_format( phandle, params, format ) == 0 )\n    info.nativeFormats |= RTAUDIO_SINT32;\n  format = SND_PCM_FORMAT_FLOAT;\n  if ( snd_pcm_hw_params_test_format( phandle, params, format ) == 0 )\n    info.nativeFormats |= RTAUDIO_FLOAT32;\n  format = SND_PCM_FORMAT_FLOAT64;\n  if ( snd_pcm_hw_params_test_format( phandle, params, format ) == 0 )\n    info.nativeFormats |= RTAUDIO_FLOAT64;\n\n  // Check that we have at least one supported format\n  if ( info.nativeFormats == 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::getDeviceInfo: pcm device (\" << name << \") data format not supported by RtAudio.\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // Get the device name\n  char *cardname;\n  result = snd_card_get_name( card, &cardname );\n  if ( result >= 0 ) {\n    sprintf( name, \"hw:%s,%d\", cardname, subdevice );\n    free( cardname );\n  }\n  info.name = name;\n\n  // That's all ... close the device and return\n  snd_pcm_close( phandle );\n  info.probed = true;\n  return info;\n}\n\nvoid RtApiAlsa :: saveDeviceInfo( void )\n{\n  devices_.clear();\n\n  unsigned int nDevices = getDeviceCount();\n  devices_.resize( nDevices );\n  for ( unsigned int i=0; i<nDevices; i++ )\n    devices_[i] = getDeviceInfo( i );\n}\n\nbool RtApiAlsa :: probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels,\n                                   unsigned int firstChannel, unsigned int sampleRate,\n                                   RtAudioFormat format, unsigned int *bufferSize,\n                                   RtAudio::StreamOptions *options )\n\n{\n#if defined(__RTAUDIO_DEBUG__)\n  snd_output_t *out;\n  snd_output_stdio_attach(&out, stderr, 0);\n#endif\n\n  // I'm not using the \"plug\" interface ... too much inconsistent behavior.\n\n  unsigned nDevices = 0;\n  int result, subdevice, card;\n  char name[64];\n  snd_ctl_t *chandle;\n\n  if ( options && options->flags & RTAUDIO_ALSA_USE_DEFAULT )\n    snprintf(name, sizeof(name), \"%s\", \"default\");\n  else {\n    // Count cards and devices\n    card = -1;\n    snd_card_next( &card );\n    while ( card >= 0 ) {\n      sprintf( name, \"hw:%d\", card );\n      result = snd_ctl_open( &chandle, name, SND_CTL_NONBLOCK );\n      if ( result < 0 ) {\n        errorStream_ << \"RtApiAlsa::probeDeviceOpen: control open, card = \" << card << \", \" << snd_strerror( result ) << \".\";\n        errorText_ = errorStream_.str();\n        return FAILURE;\n      }\n      subdevice = -1;\n      while( 1 ) {\n        result = snd_ctl_pcm_next_device( chandle, &subdevice );\n        if ( result < 0 ) break;\n        if ( subdevice < 0 ) break;\n        if ( nDevices == device ) {\n          sprintf( name, \"hw:%d,%d\", card, subdevice );\n          snd_ctl_close( chandle );\n          goto foundDevice;\n        }\n        nDevices++;\n      }\n      snd_ctl_close( chandle );\n      snd_card_next( &card );\n    }\n\n    result = snd_ctl_open( &chandle, \"default\", SND_CTL_NONBLOCK );\n    if ( result == 0 ) {\n      if ( nDevices == device ) {\n        strcpy( name, \"default\" );\n        goto foundDevice;\n      }\n      nDevices++;\n    }\n\n    if ( nDevices == 0 ) {\n      // This should not happen because a check is made before this function is called.\n      errorText_ = \"RtApiAlsa::probeDeviceOpen: no devices found!\";\n      return FAILURE;\n    }\n\n    if ( device >= nDevices ) {\n      // This should not happen because a check is made before this function is called.\n      errorText_ = \"RtApiAlsa::probeDeviceOpen: device ID is invalid!\";\n      return FAILURE;\n    }\n  }\n\n foundDevice:\n\n  // The getDeviceInfo() function will not work for a device that is\n  // already open.  Thus, we'll probe the system before opening a\n  // stream and save the results for use by getDeviceInfo().\n  if ( mode == OUTPUT || ( mode == INPUT && stream_.mode != OUTPUT ) ) // only do once\n    this->saveDeviceInfo();\n\n  snd_pcm_stream_t stream;\n  if ( mode == OUTPUT )\n    stream = SND_PCM_STREAM_PLAYBACK;\n  else\n    stream = SND_PCM_STREAM_CAPTURE;\n\n  snd_pcm_t *phandle;\n  int openMode = SND_PCM_ASYNC;\n  result = snd_pcm_open( &phandle, name, stream, openMode );\n  if ( result < 0 ) {\n    if ( mode == OUTPUT )\n      errorStream_ << \"RtApiAlsa::probeDeviceOpen: pcm device (\" << name << \") won't open for output.\";\n    else\n      errorStream_ << \"RtApiAlsa::probeDeviceOpen: pcm device (\" << name << \") won't open for input.\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Fill the parameter structure.\n  snd_pcm_hw_params_t *hw_params;\n  snd_pcm_hw_params_alloca( &hw_params );\n  result = snd_pcm_hw_params_any( phandle, hw_params );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::probeDeviceOpen: error getting pcm device (\" << name << \") parameters, \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n#if defined(__RTAUDIO_DEBUG__)\n  fprintf( stderr, \"\\nRtApiAlsa: dump hardware params just after device open:\\n\\n\" );\n  snd_pcm_hw_params_dump( hw_params, out );\n#endif\n\n  // Set access ... check user preference.\n  if ( options && options->flags & RTAUDIO_NONINTERLEAVED ) {\n    stream_.userInterleaved = false;\n    result = snd_pcm_hw_params_set_access( phandle, hw_params, SND_PCM_ACCESS_RW_NONINTERLEAVED );\n    if ( result < 0 ) {\n      result = snd_pcm_hw_params_set_access( phandle, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED );\n      stream_.deviceInterleaved[mode] =  true;\n    }\n    else\n      stream_.deviceInterleaved[mode] = false;\n  }\n  else {\n    stream_.userInterleaved = true;\n    result = snd_pcm_hw_params_set_access( phandle, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED );\n    if ( result < 0 ) {\n      result = snd_pcm_hw_params_set_access( phandle, hw_params, SND_PCM_ACCESS_RW_NONINTERLEAVED );\n      stream_.deviceInterleaved[mode] =  false;\n    }\n    else\n      stream_.deviceInterleaved[mode] =  true;\n  }\n\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::probeDeviceOpen: error setting pcm device (\" << name << \") access, \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Determine how to set the device format.\n  stream_.userFormat = format;\n  snd_pcm_format_t deviceFormat = SND_PCM_FORMAT_UNKNOWN;\n\n  if ( format == RTAUDIO_SINT8 )\n    deviceFormat = SND_PCM_FORMAT_S8;\n  else if ( format == RTAUDIO_SINT16 )\n    deviceFormat = SND_PCM_FORMAT_S16;\n  else if ( format == RTAUDIO_SINT24 )\n    deviceFormat = SND_PCM_FORMAT_S24;\n  else if ( format == RTAUDIO_SINT32 )\n    deviceFormat = SND_PCM_FORMAT_S32;\n  else if ( format == RTAUDIO_FLOAT32 )\n    deviceFormat = SND_PCM_FORMAT_FLOAT;\n  else if ( format == RTAUDIO_FLOAT64 )\n    deviceFormat = SND_PCM_FORMAT_FLOAT64;\n\n  if ( snd_pcm_hw_params_test_format(phandle, hw_params, deviceFormat) == 0) {\n    stream_.deviceFormat[mode] = format;\n    goto setFormat;\n  }\n\n  // The user requested format is not natively supported by the device.\n  deviceFormat = SND_PCM_FORMAT_FLOAT64;\n  if ( snd_pcm_hw_params_test_format( phandle, hw_params, deviceFormat ) == 0 ) {\n    stream_.deviceFormat[mode] = RTAUDIO_FLOAT64;\n    goto setFormat;\n  }\n\n  deviceFormat = SND_PCM_FORMAT_FLOAT;\n  if ( snd_pcm_hw_params_test_format(phandle, hw_params, deviceFormat ) == 0 ) {\n    stream_.deviceFormat[mode] = RTAUDIO_FLOAT32;\n    goto setFormat;\n  }\n\n  deviceFormat = SND_PCM_FORMAT_S32;\n  if ( snd_pcm_hw_params_test_format(phandle, hw_params, deviceFormat ) == 0 ) {\n    stream_.deviceFormat[mode] = RTAUDIO_SINT32;\n    goto setFormat;\n  }\n\n  deviceFormat = SND_PCM_FORMAT_S24;\n  if ( snd_pcm_hw_params_test_format(phandle, hw_params, deviceFormat ) == 0 ) {\n    stream_.deviceFormat[mode] = RTAUDIO_SINT24;\n    goto setFormat;\n  }\n\n  deviceFormat = SND_PCM_FORMAT_S16;\n  if ( snd_pcm_hw_params_test_format(phandle, hw_params, deviceFormat ) == 0 ) {\n    stream_.deviceFormat[mode] = RTAUDIO_SINT16;\n    goto setFormat;\n  }\n\n  deviceFormat = SND_PCM_FORMAT_S8;\n  if ( snd_pcm_hw_params_test_format(phandle, hw_params, deviceFormat ) == 0 ) {\n    stream_.deviceFormat[mode] = RTAUDIO_SINT8;\n    goto setFormat;\n  }\n\n  // If we get here, no supported format was found.\n  snd_pcm_close( phandle );\n  errorStream_ << \"RtApiAlsa::probeDeviceOpen: pcm device \" << device << \" data format not supported by RtAudio.\";\n  errorText_ = errorStream_.str();\n  return FAILURE;\n\n setFormat:\n  result = snd_pcm_hw_params_set_format( phandle, hw_params, deviceFormat );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::probeDeviceOpen: error setting pcm device (\" << name << \") data format, \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Determine whether byte-swaping is necessary.\n  stream_.doByteSwap[mode] = false;\n  if ( deviceFormat != SND_PCM_FORMAT_S8 ) {\n    result = snd_pcm_format_cpu_endian( deviceFormat );\n    if ( result == 0 )\n      stream_.doByteSwap[mode] = true;\n    else if (result < 0) {\n      snd_pcm_close( phandle );\n      errorStream_ << \"RtApiAlsa::probeDeviceOpen: error getting pcm device (\" << name << \") endian-ness, \" << snd_strerror( result ) << \".\";\n      errorText_ = errorStream_.str();\n      return FAILURE;\n    }\n  }\n\n  // Set the sample rate.\n  result = snd_pcm_hw_params_set_rate_near( phandle, hw_params, (unsigned int*) &sampleRate, 0 );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::probeDeviceOpen: error setting sample rate on device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Determine the number of channels for this device.  We support a possible\n  // minimum device channel number > than the value requested by the user.\n  stream_.nUserChannels[mode] = channels;\n  unsigned int value;\n  result = snd_pcm_hw_params_get_channels_max( hw_params, &value );\n  unsigned int deviceChannels = value;\n  if ( result < 0 || deviceChannels < channels + firstChannel ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::probeDeviceOpen: requested channel parameters not supported by device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  result = snd_pcm_hw_params_get_channels_min( hw_params, &value );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::probeDeviceOpen: error getting minimum channels for device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n  deviceChannels = value;\n  if ( deviceChannels < channels + firstChannel ) deviceChannels = channels + firstChannel;\n  stream_.nDeviceChannels[mode] = deviceChannels;\n\n  // Set the device channels.\n  result = snd_pcm_hw_params_set_channels( phandle, hw_params, deviceChannels );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::probeDeviceOpen: error setting channels for device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Set the buffer (or period) size.\n  int dir = 0;\n  snd_pcm_uframes_t periodSize = *bufferSize;\n  result = snd_pcm_hw_params_set_period_size_near( phandle, hw_params, &periodSize, &dir );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::probeDeviceOpen: error setting period size for device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n  *bufferSize = periodSize;\n\n  // Set the buffer number, which in ALSA is referred to as the \"period\".\n  unsigned int periods = 0;\n  if ( options && options->flags & RTAUDIO_MINIMIZE_LATENCY ) periods = 2;\n  if ( options && options->numberOfBuffers > 0 ) periods = options->numberOfBuffers;\n  if ( periods < 2 ) periods = 4; // a fairly safe default value\n  result = snd_pcm_hw_params_set_periods_near( phandle, hw_params, &periods, &dir );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::probeDeviceOpen: error setting periods for device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // If attempting to setup a duplex stream, the bufferSize parameter\n  // MUST be the same in both directions!\n  if ( stream_.mode == OUTPUT && mode == INPUT && *bufferSize != stream_.bufferSize ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::probeDeviceOpen: system error setting buffer size for duplex stream on device (\" << name << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  stream_.bufferSize = *bufferSize;\n\n  // Install the hardware configuration\n  result = snd_pcm_hw_params( phandle, hw_params );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::probeDeviceOpen: error installing hardware configuration on device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n#if defined(__RTAUDIO_DEBUG__)\n  fprintf(stderr, \"\\nRtApiAlsa: dump hardware params after installation:\\n\\n\");\n  snd_pcm_hw_params_dump( hw_params, out );\n#endif\n\n  // Set the software configuration to fill buffers with zeros and prevent device stopping on xruns.\n  snd_pcm_sw_params_t *sw_params = NULL;\n  snd_pcm_sw_params_alloca( &sw_params );\n  snd_pcm_sw_params_current( phandle, sw_params );\n  snd_pcm_sw_params_set_start_threshold( phandle, sw_params, *bufferSize );\n  snd_pcm_sw_params_set_stop_threshold( phandle, sw_params, ULONG_MAX );\n  snd_pcm_sw_params_set_silence_threshold( phandle, sw_params, 0 );\n\n  // The following two settings were suggested by Theo Veenker\n  //snd_pcm_sw_params_set_avail_min( phandle, sw_params, *bufferSize );\n  //snd_pcm_sw_params_set_xfer_align( phandle, sw_params, 1 );\n\n  // here are two options for a fix\n  //snd_pcm_sw_params_set_silence_size( phandle, sw_params, ULONG_MAX );\n  snd_pcm_uframes_t val;\n  snd_pcm_sw_params_get_boundary( sw_params, &val );\n  snd_pcm_sw_params_set_silence_size( phandle, sw_params, val );\n\n  result = snd_pcm_sw_params( phandle, sw_params );\n  if ( result < 0 ) {\n    snd_pcm_close( phandle );\n    errorStream_ << \"RtApiAlsa::probeDeviceOpen: error installing software configuration on device (\" << name << \"), \" << snd_strerror( result ) << \".\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n#if defined(__RTAUDIO_DEBUG__)\n  fprintf(stderr, \"\\nRtApiAlsa: dump software params after installation:\\n\\n\");\n  snd_pcm_sw_params_dump( sw_params, out );\n#endif\n\n  // Set flags for buffer conversion\n  stream_.doConvertBuffer[mode] = false;\n  if ( stream_.userFormat != stream_.deviceFormat[mode] )\n    stream_.doConvertBuffer[mode] = true;\n  if ( stream_.nUserChannels[mode] < stream_.nDeviceChannels[mode] )\n    stream_.doConvertBuffer[mode] = true;\n  if ( stream_.userInterleaved != stream_.deviceInterleaved[mode] &&\n       stream_.nUserChannels[mode] > 1 )\n    stream_.doConvertBuffer[mode] = true;\n\n  // Allocate the ApiHandle if necessary and then save.\n  AlsaHandle *apiInfo = 0;\n  if ( stream_.apiHandle == 0 ) {\n    try {\n      apiInfo = (AlsaHandle *) new AlsaHandle;\n    }\n    catch ( std::bad_alloc& ) {\n      errorText_ = \"RtApiAlsa::probeDeviceOpen: error allocating AlsaHandle memory.\";\n      goto error;\n    }\n\n    if ( pthread_cond_init( &apiInfo->runnable_cv, NULL ) ) {\n      errorText_ = \"RtApiAlsa::probeDeviceOpen: error initializing pthread condition variable.\";\n      goto error;\n    }\n\n    stream_.apiHandle = (void *) apiInfo;\n    apiInfo->handles[0] = 0;\n    apiInfo->handles[1] = 0;\n  }\n  else {\n    apiInfo = (AlsaHandle *) stream_.apiHandle;\n  }\n  apiInfo->handles[mode] = phandle;\n  phandle = 0;\n\n  // Allocate necessary internal buffers.\n  unsigned long bufferBytes;\n  bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat );\n  stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 );\n  if ( stream_.userBuffer[mode] == NULL ) {\n    errorText_ = \"RtApiAlsa::probeDeviceOpen: error allocating user buffer memory.\";\n    goto error;\n  }\n\n  if ( stream_.doConvertBuffer[mode] ) {\n\n    bool makeBuffer = true;\n    bufferBytes = stream_.nDeviceChannels[mode] * formatBytes( stream_.deviceFormat[mode] );\n    if ( mode == INPUT ) {\n      if ( stream_.mode == OUTPUT && stream_.deviceBuffer ) {\n        unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] );\n        if ( bufferBytes <= bytesOut ) makeBuffer = false;\n      }\n    }\n\n    if ( makeBuffer ) {\n      bufferBytes *= *bufferSize;\n      if ( stream_.deviceBuffer ) free( stream_.deviceBuffer );\n      stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 );\n      if ( stream_.deviceBuffer == NULL ) {\n        errorText_ = \"RtApiAlsa::probeDeviceOpen: error allocating device buffer memory.\";\n        goto error;\n      }\n    }\n  }\n\n  stream_.sampleRate = sampleRate;\n  stream_.nBuffers = periods;\n  stream_.device[mode] = device;\n  stream_.state = STREAM_STOPPED;\n\n  // Setup the buffer conversion information structure.\n  if ( stream_.doConvertBuffer[mode] ) setConvertInfo( mode, firstChannel );\n\n  // Setup thread if necessary.\n  if ( stream_.mode == OUTPUT && mode == INPUT ) {\n    // We had already set up an output stream.\n    stream_.mode = DUPLEX;\n    // Link the streams if possible.\n    apiInfo->synchronized = false;\n    if ( snd_pcm_link( apiInfo->handles[0], apiInfo->handles[1] ) == 0 )\n      apiInfo->synchronized = true;\n    else {\n      errorText_ = \"RtApiAlsa::probeDeviceOpen: unable to synchronize input and output devices.\";\n      error( RtAudioError::WARNING );\n    }\n  }\n  else {\n    stream_.mode = mode;\n\n    // Setup callback thread.\n    stream_.callbackInfo.object = (void *) this;\n\n    // Set the thread attributes for joinable and realtime scheduling\n    // priority (optional).  The higher priority will only take affect\n    // if the program is run as root or suid. Note, under Linux\n    // processes with CAP_SYS_NICE privilege, a user can change\n    // scheduling policy and priority (thus need not be root). See\n    // POSIX \"capabilities\".\n    pthread_attr_t attr;\n    pthread_attr_init( &attr );\n    pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_JOINABLE );\n\n#ifdef SCHED_RR // Undefined with some OSes (eg: NetBSD 1.6.x with GNU Pthread)\n    if ( options && options->flags & RTAUDIO_SCHEDULE_REALTIME ) {\n      // We previously attempted to increase the audio callback priority\n      // to SCHED_RR here via the attributes.  However, while no errors\n      // were reported in doing so, it did not work.  So, now this is\n      // done in the alsaCallbackHandler function.\n      stream_.callbackInfo.doRealtime = true;\n      int priority = options->priority;\n      int min = sched_get_priority_min( SCHED_RR );\n      int max = sched_get_priority_max( SCHED_RR );\n      if ( priority < min ) priority = min;\n      else if ( priority > max ) priority = max;\n      stream_.callbackInfo.priority = priority;\n    }\n#endif\n\n    stream_.callbackInfo.isRunning = true;\n    result = pthread_create( &stream_.callbackInfo.thread, &attr, alsaCallbackHandler, &stream_.callbackInfo );\n    pthread_attr_destroy( &attr );\n    if ( result ) {\n      stream_.callbackInfo.isRunning = false;\n      errorText_ = \"RtApiAlsa::error creating callback thread!\";\n      goto error;\n    }\n  }\n\n  return SUCCESS;\n\n error:\n  if ( apiInfo ) {\n    pthread_cond_destroy( &apiInfo->runnable_cv );\n    if ( apiInfo->handles[0] ) snd_pcm_close( apiInfo->handles[0] );\n    if ( apiInfo->handles[1] ) snd_pcm_close( apiInfo->handles[1] );\n    delete apiInfo;\n    stream_.apiHandle = 0;\n  }\n\n  if ( phandle) snd_pcm_close( phandle );\n\n  for ( int i=0; i<2; i++ ) {\n    if ( stream_.userBuffer[i] ) {\n      free( stream_.userBuffer[i] );\n      stream_.userBuffer[i] = 0;\n    }\n  }\n\n  if ( stream_.deviceBuffer ) {\n    free( stream_.deviceBuffer );\n    stream_.deviceBuffer = 0;\n  }\n\n  stream_.state = STREAM_CLOSED;\n  return FAILURE;\n}\n\nvoid RtApiAlsa :: closeStream()\n{\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiAlsa::closeStream(): no open stream to close!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  AlsaHandle *apiInfo = (AlsaHandle *) stream_.apiHandle;\n  stream_.callbackInfo.isRunning = false;\n  MUTEX_LOCK( &stream_.mutex );\n  if ( stream_.state == STREAM_STOPPED ) {\n    apiInfo->runnable = true;\n    pthread_cond_signal( &apiInfo->runnable_cv );\n  }\n  MUTEX_UNLOCK( &stream_.mutex );\n  pthread_join( stream_.callbackInfo.thread, NULL );\n\n  if ( stream_.state == STREAM_RUNNING ) {\n    stream_.state = STREAM_STOPPED;\n    if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX )\n      snd_pcm_drop( apiInfo->handles[0] );\n    if ( stream_.mode == INPUT || stream_.mode == DUPLEX )\n      snd_pcm_drop( apiInfo->handles[1] );\n  }\n\n  if ( apiInfo ) {\n    pthread_cond_destroy( &apiInfo->runnable_cv );\n    if ( apiInfo->handles[0] ) snd_pcm_close( apiInfo->handles[0] );\n    if ( apiInfo->handles[1] ) snd_pcm_close( apiInfo->handles[1] );\n    delete apiInfo;\n    stream_.apiHandle = 0;\n  }\n\n  for ( int i=0; i<2; i++ ) {\n    if ( stream_.userBuffer[i] ) {\n      free( stream_.userBuffer[i] );\n      stream_.userBuffer[i] = 0;\n    }\n  }\n\n  if ( stream_.deviceBuffer ) {\n    free( stream_.deviceBuffer );\n    stream_.deviceBuffer = 0;\n  }\n\n  stream_.mode = UNINITIALIZED;\n  stream_.state = STREAM_CLOSED;\n}\n\nvoid RtApiAlsa :: startStream()\n{\n  // This method calls snd_pcm_prepare if the device isn't already in that state.\n\n  verifyStream();\n  if ( stream_.state == STREAM_RUNNING ) {\n    errorText_ = \"RtApiAlsa::startStream(): the stream is already running!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  MUTEX_LOCK( &stream_.mutex );\n\n  int result = 0;\n  snd_pcm_state_t state;\n  AlsaHandle *apiInfo = (AlsaHandle *) stream_.apiHandle;\n  snd_pcm_t **handle = (snd_pcm_t **) apiInfo->handles;\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n    state = snd_pcm_state( handle[0] );\n    if ( state != SND_PCM_STATE_PREPARED ) {\n      result = snd_pcm_prepare( handle[0] );\n      if ( result < 0 ) {\n        errorStream_ << \"RtApiAlsa::startStream: error preparing output pcm device, \" << snd_strerror( result ) << \".\";\n        errorText_ = errorStream_.str();\n        goto unlock;\n      }\n    }\n  }\n\n  if ( ( stream_.mode == INPUT || stream_.mode == DUPLEX ) && !apiInfo->synchronized ) {\n    result = snd_pcm_drop(handle[1]); // fix to remove stale data received since device has been open\n    state = snd_pcm_state( handle[1] );\n    if ( state != SND_PCM_STATE_PREPARED ) {\n      result = snd_pcm_prepare( handle[1] );\n      if ( result < 0 ) {\n        errorStream_ << \"RtApiAlsa::startStream: error preparing input pcm device, \" << snd_strerror( result ) << \".\";\n        errorText_ = errorStream_.str();\n        goto unlock;\n      }\n    }\n  }\n\n  stream_.state = STREAM_RUNNING;\n\n unlock:\n  apiInfo->runnable = true;\n  pthread_cond_signal( &apiInfo->runnable_cv );\n  MUTEX_UNLOCK( &stream_.mutex );\n\n  if ( result >= 0 ) return;\n  error( RtAudioError::SYSTEM_ERROR );\n}\n\nvoid RtApiAlsa :: stopStream()\n{\n  verifyStream();\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiAlsa::stopStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  stream_.state = STREAM_STOPPED;\n  MUTEX_LOCK( &stream_.mutex );\n\n  int result = 0;\n  AlsaHandle *apiInfo = (AlsaHandle *) stream_.apiHandle;\n  snd_pcm_t **handle = (snd_pcm_t **) apiInfo->handles;\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n    if ( apiInfo->synchronized ) \n      result = snd_pcm_drop( handle[0] );\n    else\n      result = snd_pcm_drain( handle[0] );\n    if ( result < 0 ) {\n      errorStream_ << \"RtApiAlsa::stopStream: error draining output pcm device, \" << snd_strerror( result ) << \".\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n  }\n\n  if ( ( stream_.mode == INPUT || stream_.mode == DUPLEX ) && !apiInfo->synchronized ) {\n    result = snd_pcm_drop( handle[1] );\n    if ( result < 0 ) {\n      errorStream_ << \"RtApiAlsa::stopStream: error stopping input pcm device, \" << snd_strerror( result ) << \".\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n  }\n\n unlock:\n  apiInfo->runnable = false; // fixes high CPU usage when stopped\n  MUTEX_UNLOCK( &stream_.mutex );\n\n  if ( result >= 0 ) return;\n  error( RtAudioError::SYSTEM_ERROR );\n}\n\nvoid RtApiAlsa :: abortStream()\n{\n  verifyStream();\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiAlsa::abortStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  stream_.state = STREAM_STOPPED;\n  MUTEX_LOCK( &stream_.mutex );\n\n  int result = 0;\n  AlsaHandle *apiInfo = (AlsaHandle *) stream_.apiHandle;\n  snd_pcm_t **handle = (snd_pcm_t **) apiInfo->handles;\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n    result = snd_pcm_drop( handle[0] );\n    if ( result < 0 ) {\n      errorStream_ << \"RtApiAlsa::abortStream: error aborting output pcm device, \" << snd_strerror( result ) << \".\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n  }\n\n  if ( ( stream_.mode == INPUT || stream_.mode == DUPLEX ) && !apiInfo->synchronized ) {\n    result = snd_pcm_drop( handle[1] );\n    if ( result < 0 ) {\n      errorStream_ << \"RtApiAlsa::abortStream: error aborting input pcm device, \" << snd_strerror( result ) << \".\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n  }\n\n unlock:\n  apiInfo->runnable = false; // fixes high CPU usage when stopped\n  MUTEX_UNLOCK( &stream_.mutex );\n\n  if ( result >= 0 ) return;\n  error( RtAudioError::SYSTEM_ERROR );\n}\n\nvoid RtApiAlsa :: callbackEvent()\n{\n  AlsaHandle *apiInfo = (AlsaHandle *) stream_.apiHandle;\n  if ( stream_.state == STREAM_STOPPED ) {\n    MUTEX_LOCK( &stream_.mutex );\n    while ( !apiInfo->runnable )\n      pthread_cond_wait( &apiInfo->runnable_cv, &stream_.mutex );\n\n    if ( stream_.state != STREAM_RUNNING ) {\n      MUTEX_UNLOCK( &stream_.mutex );\n      return;\n    }\n    MUTEX_UNLOCK( &stream_.mutex );\n  }\n\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiAlsa::callbackEvent(): the stream is closed ... this shouldn't happen!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  int doStopStream = 0;\n  RtAudioCallback callback = (RtAudioCallback) stream_.callbackInfo.callback;\n  double streamTime = getStreamTime();\n  RtAudioStreamStatus status = 0;\n  if ( stream_.mode != INPUT && apiInfo->xrun[0] == true ) {\n    status |= RTAUDIO_OUTPUT_UNDERFLOW;\n    apiInfo->xrun[0] = false;\n  }\n  if ( stream_.mode != OUTPUT && apiInfo->xrun[1] == true ) {\n    status |= RTAUDIO_INPUT_OVERFLOW;\n    apiInfo->xrun[1] = false;\n  }\n  doStopStream = callback( stream_.userBuffer[0], stream_.userBuffer[1],\n                           stream_.bufferSize, streamTime, status, stream_.callbackInfo.userData );\n\n  if ( doStopStream == 2 ) {\n    abortStream();\n    return;\n  }\n\n  MUTEX_LOCK( &stream_.mutex );\n\n  // The state might change while waiting on a mutex.\n  if ( stream_.state == STREAM_STOPPED ) goto unlock;\n\n  int result;\n  char *buffer;\n  int channels;\n  snd_pcm_t **handle;\n  snd_pcm_sframes_t frames;\n  RtAudioFormat format;\n  handle = (snd_pcm_t **) apiInfo->handles;\n\n  if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) {\n\n    // Setup parameters.\n    if ( stream_.doConvertBuffer[1] ) {\n      buffer = stream_.deviceBuffer;\n      channels = stream_.nDeviceChannels[1];\n      format = stream_.deviceFormat[1];\n    }\n    else {\n      buffer = stream_.userBuffer[1];\n      channels = stream_.nUserChannels[1];\n      format = stream_.userFormat;\n    }\n\n    // Read samples from device in interleaved/non-interleaved format.\n    if ( stream_.deviceInterleaved[1] )\n      result = snd_pcm_readi( handle[1], buffer, stream_.bufferSize );\n    else {\n      void *bufs[channels];\n      size_t offset = stream_.bufferSize * formatBytes( format );\n      for ( int i=0; i<channels; i++ )\n        bufs[i] = (void *) (buffer + (i * offset));\n      result = snd_pcm_readn( handle[1], bufs, stream_.bufferSize );\n    }\n\n    if ( result < (int) stream_.bufferSize ) {\n      // Either an error or overrun occured.\n      if ( result == -EPIPE ) {\n        snd_pcm_state_t state = snd_pcm_state( handle[1] );\n        if ( state == SND_PCM_STATE_XRUN ) {\n          apiInfo->xrun[1] = true;\n          result = snd_pcm_prepare( handle[1] );\n          if ( result < 0 ) {\n            errorStream_ << \"RtApiAlsa::callbackEvent: error preparing device after overrun, \" << snd_strerror( result ) << \".\";\n            errorText_ = errorStream_.str();\n          }\n        }\n        else {\n          errorStream_ << \"RtApiAlsa::callbackEvent: error, current state is \" << snd_pcm_state_name( state ) << \", \" << snd_strerror( result ) << \".\";\n          errorText_ = errorStream_.str();\n        }\n      }\n      else {\n        errorStream_ << \"RtApiAlsa::callbackEvent: audio read error, \" << snd_strerror( result ) << \".\";\n        errorText_ = errorStream_.str();\n      }\n      error( RtAudioError::WARNING );\n      goto tryOutput;\n    }\n\n    // Do byte swapping if necessary.\n    if ( stream_.doByteSwap[1] )\n      byteSwapBuffer( buffer, stream_.bufferSize * channels, format );\n\n    // Do buffer conversion if necessary.\n    if ( stream_.doConvertBuffer[1] )\n      convertBuffer( stream_.userBuffer[1], stream_.deviceBuffer, stream_.convertInfo[1] );\n\n    // Check stream latency\n    result = snd_pcm_delay( handle[1], &frames );\n    if ( result == 0 && frames > 0 ) stream_.latency[1] = frames;\n  }\n\n tryOutput:\n\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n\n    // Setup parameters and do buffer conversion if necessary.\n    if ( stream_.doConvertBuffer[0] ) {\n      buffer = stream_.deviceBuffer;\n      convertBuffer( buffer, stream_.userBuffer[0], stream_.convertInfo[0] );\n      channels = stream_.nDeviceChannels[0];\n      format = stream_.deviceFormat[0];\n    }\n    else {\n      buffer = stream_.userBuffer[0];\n      channels = stream_.nUserChannels[0];\n      format = stream_.userFormat;\n    }\n\n    // Do byte swapping if necessary.\n    if ( stream_.doByteSwap[0] )\n      byteSwapBuffer(buffer, stream_.bufferSize * channels, format);\n\n    // Write samples to device in interleaved/non-interleaved format.\n    if ( stream_.deviceInterleaved[0] )\n      result = snd_pcm_writei( handle[0], buffer, stream_.bufferSize );\n    else {\n      void *bufs[channels];\n      size_t offset = stream_.bufferSize * formatBytes( format );\n      for ( int i=0; i<channels; i++ )\n        bufs[i] = (void *) (buffer + (i * offset));\n      result = snd_pcm_writen( handle[0], bufs, stream_.bufferSize );\n    }\n\n    if ( result < (int) stream_.bufferSize ) {\n      // Either an error or underrun occured.\n      if ( result == -EPIPE ) {\n        snd_pcm_state_t state = snd_pcm_state( handle[0] );\n        if ( state == SND_PCM_STATE_XRUN ) {\n          apiInfo->xrun[0] = true;\n          result = snd_pcm_prepare( handle[0] );\n          if ( result < 0 ) {\n            errorStream_ << \"RtApiAlsa::callbackEvent: error preparing device after underrun, \" << snd_strerror( result ) << \".\";\n            errorText_ = errorStream_.str();\n          }\n          else\n            errorText_ =  \"RtApiAlsa::callbackEvent: audio write error, underrun.\";\n        }\n        else {\n          errorStream_ << \"RtApiAlsa::callbackEvent: error, current state is \" << snd_pcm_state_name( state ) << \", \" << snd_strerror( result ) << \".\";\n          errorText_ = errorStream_.str();\n        }\n      }\n      else {\n        errorStream_ << \"RtApiAlsa::callbackEvent: audio write error, \" << snd_strerror( result ) << \".\";\n        errorText_ = errorStream_.str();\n      }\n      error( RtAudioError::WARNING );\n      goto unlock;\n    }\n\n    // Check stream latency\n    result = snd_pcm_delay( handle[0], &frames );\n    if ( result == 0 && frames > 0 ) stream_.latency[0] = frames;\n  }\n\n unlock:\n  MUTEX_UNLOCK( &stream_.mutex );\n\n  RtApi::tickStreamTime();\n  if ( doStopStream == 1 ) this->stopStream();\n}\n\nstatic void *alsaCallbackHandler( void *ptr )\n{\n  CallbackInfo *info = (CallbackInfo *) ptr;\n  RtApiAlsa *object = (RtApiAlsa *) info->object;\n  bool *isRunning = &info->isRunning;\n\n#ifdef SCHED_RR // Undefined with some OSes (eg: NetBSD 1.6.x with GNU Pthread)\n  if ( info->doRealtime ) {\n    pthread_t tID = pthread_self();\t // ID of this thread\n    sched_param prio = { info->priority }; // scheduling priority of thread\n    pthread_setschedparam( tID, SCHED_RR, &prio );\n  }\n#endif\n\n  while ( *isRunning == true ) {\n    pthread_testcancel();\n    object->callbackEvent();\n  }\n\n  pthread_exit( NULL );\n}\n\n//******************** End of __LINUX_ALSA__ *********************//\n#endif\n\n#if defined(__LINUX_PULSE__)\n\n// Code written by Peter Meerwald, pmeerw@pmeerw.net\n// and Tristan Matthews.\n\n#include <pulse/error.h>\n#include <pulse/simple.h>\n#include <cstdio>\n\nstatic const unsigned int SUPPORTED_SAMPLERATES[] = { 8000, 16000, 22050, 32000,\n                                                      44100, 48000, 96000, 0};\n\nstruct rtaudio_pa_format_mapping_t {\n  RtAudioFormat rtaudio_format;\n  pa_sample_format_t pa_format;\n};\n\nstatic const rtaudio_pa_format_mapping_t supported_sampleformats[] = {\n  {RTAUDIO_SINT16, PA_SAMPLE_S16LE},\n  {RTAUDIO_SINT32, PA_SAMPLE_S32LE},\n  {RTAUDIO_FLOAT32, PA_SAMPLE_FLOAT32LE},\n  {0, PA_SAMPLE_INVALID}};\n\nstruct PulseAudioHandle {\n  pa_simple *s_play;\n  pa_simple *s_rec;\n  pthread_t thread;\n  pthread_cond_t runnable_cv;\n  bool runnable;\n  PulseAudioHandle() : s_play(0), s_rec(0), runnable(false) { }\n};\n\nRtApiPulse::~RtApiPulse()\n{\n  if ( stream_.state != STREAM_CLOSED )\n    closeStream();\n}\n\nunsigned int RtApiPulse::getDeviceCount( void )\n{\n  return 1;\n}\n\nRtAudio::DeviceInfo RtApiPulse::getDeviceInfo( unsigned int /*device*/ )\n{\n  RtAudio::DeviceInfo info;\n  info.probed = true;\n  info.name = \"PulseAudio\";\n  info.outputChannels = 2;\n  info.inputChannels = 2;\n  info.duplexChannels = 2;\n  info.isDefaultOutput = true;\n  info.isDefaultInput = true;\n\n  for ( const unsigned int *sr = SUPPORTED_SAMPLERATES; *sr; ++sr )\n    info.sampleRates.push_back( *sr );\n\n  info.preferredSampleRate = 48000;\n  info.nativeFormats = RTAUDIO_SINT16 | RTAUDIO_SINT32 | RTAUDIO_FLOAT32;\n\n  return info;\n}\n\nstatic void *pulseaudio_callback( void * user )\n{\n  CallbackInfo *cbi = static_cast<CallbackInfo *>( user );\n  RtApiPulse *context = static_cast<RtApiPulse *>( cbi->object );\n  volatile bool *isRunning = &cbi->isRunning;\n\n  while ( *isRunning ) {\n    pthread_testcancel();\n    context->callbackEvent();\n  }\n\n  pthread_exit( NULL );\n}\n\nvoid RtApiPulse::closeStream( void )\n{\n  PulseAudioHandle *pah = static_cast<PulseAudioHandle *>( stream_.apiHandle );\n\n  stream_.callbackInfo.isRunning = false;\n  if ( pah ) {\n    MUTEX_LOCK( &stream_.mutex );\n    if ( stream_.state == STREAM_STOPPED ) {\n      pah->runnable = true;\n      pthread_cond_signal( &pah->runnable_cv );\n    }\n    MUTEX_UNLOCK( &stream_.mutex );\n\n    pthread_join( pah->thread, 0 );\n    if ( pah->s_play ) {\n      pa_simple_flush( pah->s_play, NULL );\n      pa_simple_free( pah->s_play );\n    }\n    if ( pah->s_rec )\n      pa_simple_free( pah->s_rec );\n\n    pthread_cond_destroy( &pah->runnable_cv );\n    delete pah;\n    stream_.apiHandle = 0;\n  }\n\n  if ( stream_.userBuffer[0] ) {\n    free( stream_.userBuffer[0] );\n    stream_.userBuffer[0] = 0;\n  }\n  if ( stream_.userBuffer[1] ) {\n    free( stream_.userBuffer[1] );\n    stream_.userBuffer[1] = 0;\n  }\n\n  stream_.state = STREAM_CLOSED;\n  stream_.mode = UNINITIALIZED;\n}\n\nvoid RtApiPulse::callbackEvent( void )\n{\n  PulseAudioHandle *pah = static_cast<PulseAudioHandle *>( stream_.apiHandle );\n\n  if ( stream_.state == STREAM_STOPPED ) {\n    MUTEX_LOCK( &stream_.mutex );\n    while ( !pah->runnable )\n      pthread_cond_wait( &pah->runnable_cv, &stream_.mutex );\n\n    if ( stream_.state != STREAM_RUNNING ) {\n      MUTEX_UNLOCK( &stream_.mutex );\n      return;\n    }\n    MUTEX_UNLOCK( &stream_.mutex );\n  }\n\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiPulse::callbackEvent(): the stream is closed ... \"\n      \"this shouldn't happen!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  RtAudioCallback callback = (RtAudioCallback) stream_.callbackInfo.callback;\n  double streamTime = getStreamTime();\n  RtAudioStreamStatus status = 0;\n  int doStopStream = callback( stream_.userBuffer[OUTPUT], stream_.userBuffer[INPUT],\n                               stream_.bufferSize, streamTime, status,\n                               stream_.callbackInfo.userData );\n\n  if ( doStopStream == 2 ) {\n    abortStream();\n    return;\n  }\n\n  MUTEX_LOCK( &stream_.mutex );\n  void *pulse_in = stream_.doConvertBuffer[INPUT] ? stream_.deviceBuffer : stream_.userBuffer[INPUT];\n  void *pulse_out = stream_.doConvertBuffer[OUTPUT] ? stream_.deviceBuffer : stream_.userBuffer[OUTPUT];\n\n  if ( stream_.state != STREAM_RUNNING )\n    goto unlock;\n\n  int pa_error;\n  size_t bytes;\n  if (stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n    if ( stream_.doConvertBuffer[OUTPUT] ) {\n        convertBuffer( stream_.deviceBuffer,\n                       stream_.userBuffer[OUTPUT],\n                       stream_.convertInfo[OUTPUT] );\n        bytes = stream_.nDeviceChannels[OUTPUT] * stream_.bufferSize *\n                formatBytes( stream_.deviceFormat[OUTPUT] );\n    } else\n        bytes = stream_.nUserChannels[OUTPUT] * stream_.bufferSize *\n                formatBytes( stream_.userFormat );\n\n    if ( pa_simple_write( pah->s_play, pulse_out, bytes, &pa_error ) < 0 ) {\n      errorStream_ << \"RtApiPulse::callbackEvent: audio write error, \" <<\n        pa_strerror( pa_error ) << \".\";\n      errorText_ = errorStream_.str();\n      error( RtAudioError::WARNING );\n    }\n  }\n\n  if ( stream_.mode == INPUT || stream_.mode == DUPLEX) {\n    if ( stream_.doConvertBuffer[INPUT] )\n      bytes = stream_.nDeviceChannels[INPUT] * stream_.bufferSize *\n        formatBytes( stream_.deviceFormat[INPUT] );\n    else\n      bytes = stream_.nUserChannels[INPUT] * stream_.bufferSize *\n        formatBytes( stream_.userFormat );\n            \n    if ( pa_simple_read( pah->s_rec, pulse_in, bytes, &pa_error ) < 0 ) {\n      errorStream_ << \"RtApiPulse::callbackEvent: audio read error, \" <<\n        pa_strerror( pa_error ) << \".\";\n      errorText_ = errorStream_.str();\n      error( RtAudioError::WARNING );\n    }\n    if ( stream_.doConvertBuffer[INPUT] ) {\n      convertBuffer( stream_.userBuffer[INPUT],\n                     stream_.deviceBuffer,\n                     stream_.convertInfo[INPUT] );\n    }\n  }\n\n unlock:\n  MUTEX_UNLOCK( &stream_.mutex );\n  RtApi::tickStreamTime();\n\n  if ( doStopStream == 1 )\n    stopStream();\n}\n\nvoid RtApiPulse::startStream( void )\n{\n  PulseAudioHandle *pah = static_cast<PulseAudioHandle *>( stream_.apiHandle );\n\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiPulse::startStream(): the stream is not open!\";\n    error( RtAudioError::INVALID_USE );\n    return;\n  }\n  if ( stream_.state == STREAM_RUNNING ) {\n    errorText_ = \"RtApiPulse::startStream(): the stream is already running!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  MUTEX_LOCK( &stream_.mutex );\n\n  stream_.state = STREAM_RUNNING;\n\n  pah->runnable = true;\n  pthread_cond_signal( &pah->runnable_cv );\n  MUTEX_UNLOCK( &stream_.mutex );\n}\n\nvoid RtApiPulse::stopStream( void )\n{\n  PulseAudioHandle *pah = static_cast<PulseAudioHandle *>( stream_.apiHandle );\n\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiPulse::stopStream(): the stream is not open!\";\n    error( RtAudioError::INVALID_USE );\n    return;\n  }\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiPulse::stopStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  stream_.state = STREAM_STOPPED;\n  MUTEX_LOCK( &stream_.mutex );\n\n  if ( pah && pah->s_play ) {\n    int pa_error;\n    if ( pa_simple_drain( pah->s_play, &pa_error ) < 0 ) {\n      errorStream_ << \"RtApiPulse::stopStream: error draining output device, \" <<\n        pa_strerror( pa_error ) << \".\";\n      errorText_ = errorStream_.str();\n      MUTEX_UNLOCK( &stream_.mutex );\n      error( RtAudioError::SYSTEM_ERROR );\n      return;\n    }\n  }\n\n  stream_.state = STREAM_STOPPED;\n  MUTEX_UNLOCK( &stream_.mutex );\n}\n\nvoid RtApiPulse::abortStream( void )\n{\n  PulseAudioHandle *pah = static_cast<PulseAudioHandle*>( stream_.apiHandle );\n\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiPulse::abortStream(): the stream is not open!\";\n    error( RtAudioError::INVALID_USE );\n    return;\n  }\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiPulse::abortStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  stream_.state = STREAM_STOPPED;\n  MUTEX_LOCK( &stream_.mutex );\n\n  if ( pah && pah->s_play ) {\n    int pa_error;\n    if ( pa_simple_flush( pah->s_play, &pa_error ) < 0 ) {\n      errorStream_ << \"RtApiPulse::abortStream: error flushing output device, \" <<\n        pa_strerror( pa_error ) << \".\";\n      errorText_ = errorStream_.str();\n      MUTEX_UNLOCK( &stream_.mutex );\n      error( RtAudioError::SYSTEM_ERROR );\n      return;\n    }\n  }\n\n  stream_.state = STREAM_STOPPED;\n  MUTEX_UNLOCK( &stream_.mutex );\n}\n\nbool RtApiPulse::probeDeviceOpen( unsigned int device, StreamMode mode,\n                                  unsigned int channels, unsigned int firstChannel,\n                                  unsigned int sampleRate, RtAudioFormat format,\n                                  unsigned int *bufferSize, RtAudio::StreamOptions *options )\n{\n  PulseAudioHandle *pah = 0;\n  unsigned long bufferBytes = 0;\n  pa_sample_spec ss;\n\n  if ( device != 0 ) return false;\n  if ( mode != INPUT && mode != OUTPUT ) return false;\n  if ( channels != 1 && channels != 2 ) {\n    errorText_ = \"RtApiPulse::probeDeviceOpen: unsupported number of channels.\";\n    return false;\n  }\n  ss.channels = channels;\n\n  if ( firstChannel != 0 ) return false;\n\n  bool sr_found = false;\n  for ( const unsigned int *sr = SUPPORTED_SAMPLERATES; *sr; ++sr ) {\n    if ( sampleRate == *sr ) {\n      sr_found = true;\n      stream_.sampleRate = sampleRate;\n      ss.rate = sampleRate;\n      break;\n    }\n  }\n  if ( !sr_found ) {\n    errorText_ = \"RtApiPulse::probeDeviceOpen: unsupported sample rate.\";\n    return false;\n  }\n\n  bool sf_found = 0;\n  for ( const rtaudio_pa_format_mapping_t *sf = supported_sampleformats;\n        sf->rtaudio_format && sf->pa_format != PA_SAMPLE_INVALID; ++sf ) {\n    if ( format == sf->rtaudio_format ) {\n      sf_found = true;\n      stream_.userFormat = sf->rtaudio_format;\n      stream_.deviceFormat[mode] = stream_.userFormat;\n      ss.format = sf->pa_format;\n      break;\n    }\n  }\n  if ( !sf_found ) { // Use internal data format conversion.\n    stream_.userFormat = format;\n    stream_.deviceFormat[mode] = RTAUDIO_FLOAT32;\n    ss.format = PA_SAMPLE_FLOAT32LE;\n  }\n\n  // Set other stream parameters.\n  if ( options && options->flags & RTAUDIO_NONINTERLEAVED ) stream_.userInterleaved = false;\n  else stream_.userInterleaved = true;\n  stream_.deviceInterleaved[mode] = true;\n  stream_.nBuffers = 1;\n  stream_.doByteSwap[mode] = false;\n  stream_.nUserChannels[mode] = channels;\n  stream_.nDeviceChannels[mode] = channels + firstChannel;\n  stream_.channelOffset[mode] = 0;\n  std::string streamName = \"RtAudio\";\n\n  // Set flags for buffer conversion.\n  stream_.doConvertBuffer[mode] = false;\n  if ( stream_.userFormat != stream_.deviceFormat[mode] )\n    stream_.doConvertBuffer[mode] = true;\n  if ( stream_.nUserChannels[mode] < stream_.nDeviceChannels[mode] )\n    stream_.doConvertBuffer[mode] = true;\n\n  // Allocate necessary internal buffers.\n  bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat );\n  stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 );\n  if ( stream_.userBuffer[mode] == NULL ) {\n    errorText_ = \"RtApiPulse::probeDeviceOpen: error allocating user buffer memory.\";\n    goto error;\n  }\n  stream_.bufferSize = *bufferSize;\n\n  if ( stream_.doConvertBuffer[mode] ) {\n\n    bool makeBuffer = true;\n    bufferBytes = stream_.nDeviceChannels[mode] * formatBytes( stream_.deviceFormat[mode] );\n    if ( mode == INPUT ) {\n      if ( stream_.mode == OUTPUT && stream_.deviceBuffer ) {\n        unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] );\n        if ( bufferBytes <= bytesOut ) makeBuffer = false;\n      }\n    }\n\n    if ( makeBuffer ) {\n      bufferBytes *= *bufferSize;\n      if ( stream_.deviceBuffer ) free( stream_.deviceBuffer );\n      stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 );\n      if ( stream_.deviceBuffer == NULL ) {\n        errorText_ = \"RtApiPulse::probeDeviceOpen: error allocating device buffer memory.\";\n        goto error;\n      }\n    }\n  }\n\n  stream_.device[mode] = device;\n\n  // Setup the buffer conversion information structure.\n  if ( stream_.doConvertBuffer[mode] ) setConvertInfo( mode, firstChannel );\n\n  if ( !stream_.apiHandle ) {\n    PulseAudioHandle *pah = new PulseAudioHandle;\n    if ( !pah ) {\n      errorText_ = \"RtApiPulse::probeDeviceOpen: error allocating memory for handle.\";\n      goto error;\n    }\n\n    stream_.apiHandle = pah;\n    if ( pthread_cond_init( &pah->runnable_cv, NULL ) != 0 ) {\n      errorText_ = \"RtApiPulse::probeDeviceOpen: error creating condition variable.\";\n      goto error;\n    }\n  }\n  pah = static_cast<PulseAudioHandle *>( stream_.apiHandle );\n\n  int error;\n  if ( options && !options->streamName.empty() ) streamName = options->streamName;\n  switch ( mode ) {\n  case INPUT:\n    pa_buffer_attr buffer_attr;\n    buffer_attr.fragsize = bufferBytes;\n    buffer_attr.maxlength = -1;\n\n    pah->s_rec = pa_simple_new( NULL, streamName.c_str(), PA_STREAM_RECORD, NULL, \"Record\", &ss, NULL, &buffer_attr, &error );\n    if ( !pah->s_rec ) {\n      errorText_ = \"RtApiPulse::probeDeviceOpen: error connecting input to PulseAudio server.\";\n      goto error;\n    }\n    break;\n  case OUTPUT:\n    pah->s_play = pa_simple_new( NULL, streamName.c_str(), PA_STREAM_PLAYBACK, NULL, \"Playback\", &ss, NULL, NULL, &error );\n    if ( !pah->s_play ) {\n      errorText_ = \"RtApiPulse::probeDeviceOpen: error connecting output to PulseAudio server.\";\n      goto error;\n    }\n    break;\n  default:\n    goto error;\n  }\n\n  if ( stream_.mode == UNINITIALIZED )\n    stream_.mode = mode;\n  else if ( stream_.mode == mode )\n    goto error;\n  else\n    stream_.mode = DUPLEX;\n\n  if ( !stream_.callbackInfo.isRunning ) {\n    stream_.callbackInfo.object = this;\n    stream_.callbackInfo.isRunning = true;\n    if ( pthread_create( &pah->thread, NULL, pulseaudio_callback, (void *)&stream_.callbackInfo) != 0 ) {\n      errorText_ = \"RtApiPulse::probeDeviceOpen: error creating thread.\";\n      goto error;\n    }\n  }\n\n  stream_.state = STREAM_STOPPED;\n  return true;\n \n error:\n  if ( pah && stream_.callbackInfo.isRunning ) {\n    pthread_cond_destroy( &pah->runnable_cv );\n    delete pah;\n    stream_.apiHandle = 0;\n  }\n\n  for ( int i=0; i<2; i++ ) {\n    if ( stream_.userBuffer[i] ) {\n      free( stream_.userBuffer[i] );\n      stream_.userBuffer[i] = 0;\n    }\n  }\n\n  if ( stream_.deviceBuffer ) {\n    free( stream_.deviceBuffer );\n    stream_.deviceBuffer = 0;\n  }\n\n  return FAILURE;\n}\n\n//******************** End of __LINUX_PULSE__ *********************//\n#endif\n\n#if defined(__LINUX_OSS__)\n\n#include <unistd.h>\n#include <sys/ioctl.h>\n#include <unistd.h>\n#include <fcntl.h>\n#include <sys/soundcard.h>\n#include <errno.h>\n#include <math.h>\n\nstatic void *ossCallbackHandler(void * ptr);\n\n// A structure to hold various information related to the OSS API\n// implementation.\nstruct OssHandle {\n  int id[2];    // device ids\n  bool xrun[2];\n  bool triggered;\n  pthread_cond_t runnable;\n\n  OssHandle()\n    :triggered(false) { id[0] = 0; id[1] = 0; xrun[0] = false; xrun[1] = false; }\n};\n\nRtApiOss :: RtApiOss()\n{\n  // Nothing to do here.\n}\n\nRtApiOss :: ~RtApiOss()\n{\n  if ( stream_.state != STREAM_CLOSED ) closeStream();\n}\n\nunsigned int RtApiOss :: getDeviceCount( void )\n{\n  int mixerfd = open( \"/dev/mixer\", O_RDWR, 0 );\n  if ( mixerfd == -1 ) {\n    errorText_ = \"RtApiOss::getDeviceCount: error opening '/dev/mixer'.\";\n    error( RtAudioError::WARNING );\n    return 0;\n  }\n\n  oss_sysinfo sysinfo;\n  if ( ioctl( mixerfd, SNDCTL_SYSINFO, &sysinfo ) == -1 ) {\n    close( mixerfd );\n    errorText_ = \"RtApiOss::getDeviceCount: error getting sysinfo, OSS version >= 4.0 is required.\";\n    error( RtAudioError::WARNING );\n    return 0;\n  }\n\n  close( mixerfd );\n  return sysinfo.numaudios;\n}\n\nRtAudio::DeviceInfo RtApiOss :: getDeviceInfo( unsigned int device )\n{\n  RtAudio::DeviceInfo info;\n  info.probed = false;\n\n  int mixerfd = open( \"/dev/mixer\", O_RDWR, 0 );\n  if ( mixerfd == -1 ) {\n    errorText_ = \"RtApiOss::getDeviceInfo: error opening '/dev/mixer'.\";\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  oss_sysinfo sysinfo;\n  int result = ioctl( mixerfd, SNDCTL_SYSINFO, &sysinfo );\n  if ( result == -1 ) {\n    close( mixerfd );\n    errorText_ = \"RtApiOss::getDeviceInfo: error getting sysinfo, OSS version >= 4.0 is required.\";\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  unsigned nDevices = sysinfo.numaudios;\n  if ( nDevices == 0 ) {\n    close( mixerfd );\n    errorText_ = \"RtApiOss::getDeviceInfo: no devices found!\";\n    error( RtAudioError::INVALID_USE );\n    return info;\n  }\n\n  if ( device >= nDevices ) {\n    close( mixerfd );\n    errorText_ = \"RtApiOss::getDeviceInfo: device ID is invalid!\";\n    error( RtAudioError::INVALID_USE );\n    return info;\n  }\n\n  oss_audioinfo ainfo;\n  ainfo.dev = device;\n  result = ioctl( mixerfd, SNDCTL_AUDIOINFO, &ainfo );\n  close( mixerfd );\n  if ( result == -1 ) {\n    errorStream_ << \"RtApiOss::getDeviceInfo: error getting device (\" << ainfo.name << \") info.\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // Probe channels\n  if ( ainfo.caps & PCM_CAP_OUTPUT ) info.outputChannels = ainfo.max_channels;\n  if ( ainfo.caps & PCM_CAP_INPUT ) info.inputChannels = ainfo.max_channels;\n  if ( ainfo.caps & PCM_CAP_DUPLEX ) {\n    if ( info.outputChannels > 0 && info.inputChannels > 0 && ainfo.caps & PCM_CAP_DUPLEX )\n      info.duplexChannels = (info.outputChannels > info.inputChannels) ? info.inputChannels : info.outputChannels;\n  }\n\n  // Probe data formats ... do for input\n  unsigned long mask = ainfo.iformats;\n  if ( mask & AFMT_S16_LE || mask & AFMT_S16_BE )\n    info.nativeFormats |= RTAUDIO_SINT16;\n  if ( mask & AFMT_S8 )\n    info.nativeFormats |= RTAUDIO_SINT8;\n  if ( mask & AFMT_S32_LE || mask & AFMT_S32_BE )\n    info.nativeFormats |= RTAUDIO_SINT32;\n#ifdef AFMT_FLOAT\n  if ( mask & AFMT_FLOAT )\n    info.nativeFormats |= RTAUDIO_FLOAT32;\n#endif\n  if ( mask & AFMT_S24_LE || mask & AFMT_S24_BE )\n    info.nativeFormats |= RTAUDIO_SINT24;\n\n  // Check that we have at least one supported format\n  if ( info.nativeFormats == 0 ) {\n    errorStream_ << \"RtApiOss::getDeviceInfo: device (\" << ainfo.name << \") data format not supported by RtAudio.\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n    return info;\n  }\n\n  // Probe the supported sample rates.\n  info.sampleRates.clear();\n  if ( ainfo.nrates ) {\n    for ( unsigned int i=0; i<ainfo.nrates; i++ ) {\n      for ( unsigned int k=0; k<MAX_SAMPLE_RATES; k++ ) {\n        if ( ainfo.rates[i] == SAMPLE_RATES[k] ) {\n          info.sampleRates.push_back( SAMPLE_RATES[k] );\n\n          if ( !info.preferredSampleRate || ( SAMPLE_RATES[k] <= 48000 && SAMPLE_RATES[k] > info.preferredSampleRate ) )\n            info.preferredSampleRate = SAMPLE_RATES[k];\n\n          break;\n        }\n      }\n    }\n  }\n  else {\n    // Check min and max rate values;\n    for ( unsigned int k=0; k<MAX_SAMPLE_RATES; k++ ) {\n      if ( ainfo.min_rate <= (int) SAMPLE_RATES[k] && ainfo.max_rate >= (int) SAMPLE_RATES[k] ) {\n        info.sampleRates.push_back( SAMPLE_RATES[k] );\n\n        if ( !info.preferredSampleRate || ( SAMPLE_RATES[k] <= 48000 && SAMPLE_RATES[k] > info.preferredSampleRate ) )\n          info.preferredSampleRate = SAMPLE_RATES[k];\n      }\n    }\n  }\n\n  if ( info.sampleRates.size() == 0 ) {\n    errorStream_ << \"RtApiOss::getDeviceInfo: no supported sample rates found for device (\" << ainfo.name << \").\";\n    errorText_ = errorStream_.str();\n    error( RtAudioError::WARNING );\n  }\n  else {\n    info.probed = true;\n    info.name = ainfo.name;\n  }\n\n  return info;\n}\n\n\nbool RtApiOss :: probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels,\n                                  unsigned int firstChannel, unsigned int sampleRate,\n                                  RtAudioFormat format, unsigned int *bufferSize,\n                                  RtAudio::StreamOptions *options )\n{\n  int mixerfd = open( \"/dev/mixer\", O_RDWR, 0 );\n  if ( mixerfd == -1 ) {\n    errorText_ = \"RtApiOss::probeDeviceOpen: error opening '/dev/mixer'.\";\n    return FAILURE;\n  }\n\n  oss_sysinfo sysinfo;\n  int result = ioctl( mixerfd, SNDCTL_SYSINFO, &sysinfo );\n  if ( result == -1 ) {\n    close( mixerfd );\n    errorText_ = \"RtApiOss::probeDeviceOpen: error getting sysinfo, OSS version >= 4.0 is required.\";\n    return FAILURE;\n  }\n\n  unsigned nDevices = sysinfo.numaudios;\n  if ( nDevices == 0 ) {\n    // This should not happen because a check is made before this function is called.\n    close( mixerfd );\n    errorText_ = \"RtApiOss::probeDeviceOpen: no devices found!\";\n    return FAILURE;\n  }\n\n  if ( device >= nDevices ) {\n    // This should not happen because a check is made before this function is called.\n    close( mixerfd );\n    errorText_ = \"RtApiOss::probeDeviceOpen: device ID is invalid!\";\n    return FAILURE;\n  }\n\n  oss_audioinfo ainfo;\n  ainfo.dev = device;\n  result = ioctl( mixerfd, SNDCTL_AUDIOINFO, &ainfo );\n  close( mixerfd );\n  if ( result == -1 ) {\n    errorStream_ << \"RtApiOss::getDeviceInfo: error getting device (\" << ainfo.name << \") info.\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Check if device supports input or output\n  if ( ( mode == OUTPUT && !( ainfo.caps & PCM_CAP_OUTPUT ) ) ||\n       ( mode == INPUT && !( ainfo.caps & PCM_CAP_INPUT ) ) ) {\n    if ( mode == OUTPUT )\n      errorStream_ << \"RtApiOss::probeDeviceOpen: device (\" << ainfo.name << \") does not support output.\";\n    else\n      errorStream_ << \"RtApiOss::probeDeviceOpen: device (\" << ainfo.name << \") does not support input.\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  int flags = 0;\n  OssHandle *handle = (OssHandle *) stream_.apiHandle;\n  if ( mode == OUTPUT )\n    flags |= O_WRONLY;\n  else { // mode == INPUT\n    if (stream_.mode == OUTPUT && stream_.device[0] == device) {\n      // We just set the same device for playback ... close and reopen for duplex (OSS only).\n      close( handle->id[0] );\n      handle->id[0] = 0;\n      if ( !( ainfo.caps & PCM_CAP_DUPLEX ) ) {\n        errorStream_ << \"RtApiOss::probeDeviceOpen: device (\" << ainfo.name << \") does not support duplex mode.\";\n        errorText_ = errorStream_.str();\n        return FAILURE;\n      }\n      // Check that the number previously set channels is the same.\n      if ( stream_.nUserChannels[0] != channels ) {\n        errorStream_ << \"RtApiOss::probeDeviceOpen: input/output channels must be equal for OSS duplex device (\" << ainfo.name << \").\";\n        errorText_ = errorStream_.str();\n        return FAILURE;\n      }\n      flags |= O_RDWR;\n    }\n    else\n      flags |= O_RDONLY;\n  }\n\n  // Set exclusive access if specified.\n  if ( options && options->flags & RTAUDIO_HOG_DEVICE ) flags |= O_EXCL;\n\n  // Try to open the device.\n  int fd;\n  fd = open( ainfo.devnode, flags, 0 );\n  if ( fd == -1 ) {\n    if ( errno == EBUSY )\n      errorStream_ << \"RtApiOss::probeDeviceOpen: device (\" << ainfo.name << \") is busy.\";\n    else\n      errorStream_ << \"RtApiOss::probeDeviceOpen: error opening device (\" << ainfo.name << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // For duplex operation, specifically set this mode (this doesn't seem to work).\n  /*\n    if ( flags | O_RDWR ) {\n    result = ioctl( fd, SNDCTL_DSP_SETDUPLEX, NULL );\n    if ( result == -1) {\n    errorStream_ << \"RtApiOss::probeDeviceOpen: error setting duplex mode for device (\" << ainfo.name << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n    }\n    }\n  */\n\n  // Check the device channel support.\n  stream_.nUserChannels[mode] = channels;\n  if ( ainfo.max_channels < (int)(channels + firstChannel) ) {\n    close( fd );\n    errorStream_ << \"RtApiOss::probeDeviceOpen: the device (\" << ainfo.name << \") does not support requested channel parameters.\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Set the number of channels.\n  int deviceChannels = channels + firstChannel;\n  result = ioctl( fd, SNDCTL_DSP_CHANNELS, &deviceChannels );\n  if ( result == -1 || deviceChannels < (int)(channels + firstChannel) ) {\n    close( fd );\n    errorStream_ << \"RtApiOss::probeDeviceOpen: error setting channel parameters on device (\" << ainfo.name << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n  stream_.nDeviceChannels[mode] = deviceChannels;\n\n  // Get the data format mask\n  int mask;\n  result = ioctl( fd, SNDCTL_DSP_GETFMTS, &mask );\n  if ( result == -1 ) {\n    close( fd );\n    errorStream_ << \"RtApiOss::probeDeviceOpen: error getting device (\" << ainfo.name << \") data formats.\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Determine how to set the device format.\n  stream_.userFormat = format;\n  int deviceFormat = -1;\n  stream_.doByteSwap[mode] = false;\n  if ( format == RTAUDIO_SINT8 ) {\n    if ( mask & AFMT_S8 ) {\n      deviceFormat = AFMT_S8;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT8;\n    }\n  }\n  else if ( format == RTAUDIO_SINT16 ) {\n    if ( mask & AFMT_S16_NE ) {\n      deviceFormat = AFMT_S16_NE;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT16;\n    }\n    else if ( mask & AFMT_S16_OE ) {\n      deviceFormat = AFMT_S16_OE;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT16;\n      stream_.doByteSwap[mode] = true;\n    }\n  }\n  else if ( format == RTAUDIO_SINT24 ) {\n    if ( mask & AFMT_S24_NE ) {\n      deviceFormat = AFMT_S24_NE;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT24;\n    }\n    else if ( mask & AFMT_S24_OE ) {\n      deviceFormat = AFMT_S24_OE;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT24;\n      stream_.doByteSwap[mode] = true;\n    }\n  }\n  else if ( format == RTAUDIO_SINT32 ) {\n    if ( mask & AFMT_S32_NE ) {\n      deviceFormat = AFMT_S32_NE;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT32;\n    }\n    else if ( mask & AFMT_S32_OE ) {\n      deviceFormat = AFMT_S32_OE;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT32;\n      stream_.doByteSwap[mode] = true;\n    }\n  }\n\n  if ( deviceFormat == -1 ) {\n    // The user requested format is not natively supported by the device.\n    if ( mask & AFMT_S16_NE ) {\n      deviceFormat = AFMT_S16_NE;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT16;\n    }\n    else if ( mask & AFMT_S32_NE ) {\n      deviceFormat = AFMT_S32_NE;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT32;\n    }\n    else if ( mask & AFMT_S24_NE ) {\n      deviceFormat = AFMT_S24_NE;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT24;\n    }\n    else if ( mask & AFMT_S16_OE ) {\n      deviceFormat = AFMT_S16_OE;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT16;\n      stream_.doByteSwap[mode] = true;\n    }\n    else if ( mask & AFMT_S32_OE ) {\n      deviceFormat = AFMT_S32_OE;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT32;\n      stream_.doByteSwap[mode] = true;\n    }\n    else if ( mask & AFMT_S24_OE ) {\n      deviceFormat = AFMT_S24_OE;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT24;\n      stream_.doByteSwap[mode] = true;\n    }\n    else if ( mask & AFMT_S8) {\n      deviceFormat = AFMT_S8;\n      stream_.deviceFormat[mode] = RTAUDIO_SINT8;\n    }\n  }\n\n  if ( stream_.deviceFormat[mode] == 0 ) {\n    // This really shouldn't happen ...\n    close( fd );\n    errorStream_ << \"RtApiOss::probeDeviceOpen: device (\" << ainfo.name << \") data format not supported by RtAudio.\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Set the data format.\n  int temp = deviceFormat;\n  result = ioctl( fd, SNDCTL_DSP_SETFMT, &deviceFormat );\n  if ( result == -1 || deviceFormat != temp ) {\n    close( fd );\n    errorStream_ << \"RtApiOss::probeDeviceOpen: error setting data format on device (\" << ainfo.name << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Attempt to set the buffer size.  According to OSS, the minimum\n  // number of buffers is two.  The supposed minimum buffer size is 16\n  // bytes, so that will be our lower bound.  The argument to this\n  // call is in the form 0xMMMMSSSS (hex), where the buffer size (in\n  // bytes) is given as 2^SSSS and the number of buffers as 2^MMMM.\n  // We'll check the actual value used near the end of the setup\n  // procedure.\n  int ossBufferBytes = *bufferSize * formatBytes( stream_.deviceFormat[mode] ) * deviceChannels;\n  if ( ossBufferBytes < 16 ) ossBufferBytes = 16;\n  int buffers = 0;\n  if ( options ) buffers = options->numberOfBuffers;\n  if ( options && options->flags & RTAUDIO_MINIMIZE_LATENCY ) buffers = 2;\n  if ( buffers < 2 ) buffers = 3;\n  temp = ((int) buffers << 16) + (int)( log10( (double)ossBufferBytes ) / log10( 2.0 ) );\n  result = ioctl( fd, SNDCTL_DSP_SETFRAGMENT, &temp );\n  if ( result == -1 ) {\n    close( fd );\n    errorStream_ << \"RtApiOss::probeDeviceOpen: error setting buffer size on device (\" << ainfo.name << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n  stream_.nBuffers = buffers;\n\n  // Save buffer size (in sample frames).\n  *bufferSize = ossBufferBytes / ( formatBytes(stream_.deviceFormat[mode]) * deviceChannels );\n  stream_.bufferSize = *bufferSize;\n\n  // Set the sample rate.\n  int srate = sampleRate;\n  result = ioctl( fd, SNDCTL_DSP_SPEED, &srate );\n  if ( result == -1 ) {\n    close( fd );\n    errorStream_ << \"RtApiOss::probeDeviceOpen: error setting sample rate (\" << sampleRate << \") on device (\" << ainfo.name << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n\n  // Verify the sample rate setup worked.\n  if ( abs( srate - (int)sampleRate ) > 100 ) {\n    close( fd );\n    errorStream_ << \"RtApiOss::probeDeviceOpen: device (\" << ainfo.name << \") does not support sample rate (\" << sampleRate << \").\";\n    errorText_ = errorStream_.str();\n    return FAILURE;\n  }\n  stream_.sampleRate = sampleRate;\n\n  if ( mode == INPUT && stream_.mode == OUTPUT && stream_.device[0] == device) {\n    // We're doing duplex setup here.\n    stream_.deviceFormat[0] = stream_.deviceFormat[1];\n    stream_.nDeviceChannels[0] = deviceChannels;\n  }\n\n  // Set interleaving parameters.\n  stream_.userInterleaved = true;\n  stream_.deviceInterleaved[mode] =  true;\n  if ( options && options->flags & RTAUDIO_NONINTERLEAVED )\n    stream_.userInterleaved = false;\n\n  // Set flags for buffer conversion\n  stream_.doConvertBuffer[mode] = false;\n  if ( stream_.userFormat != stream_.deviceFormat[mode] )\n    stream_.doConvertBuffer[mode] = true;\n  if ( stream_.nUserChannels[mode] < stream_.nDeviceChannels[mode] )\n    stream_.doConvertBuffer[mode] = true;\n  if ( stream_.userInterleaved != stream_.deviceInterleaved[mode] &&\n       stream_.nUserChannels[mode] > 1 )\n    stream_.doConvertBuffer[mode] = true;\n\n  // Allocate the stream handles if necessary and then save.\n  if ( stream_.apiHandle == 0 ) {\n    try {\n      handle = new OssHandle;\n    }\n    catch ( std::bad_alloc& ) {\n      errorText_ = \"RtApiOss::probeDeviceOpen: error allocating OssHandle memory.\";\n      goto error;\n    }\n\n    if ( pthread_cond_init( &handle->runnable, NULL ) ) {\n      errorText_ = \"RtApiOss::probeDeviceOpen: error initializing pthread condition variable.\";\n      goto error;\n    }\n\n    stream_.apiHandle = (void *) handle;\n  }\n  else {\n    handle = (OssHandle *) stream_.apiHandle;\n  }\n  handle->id[mode] = fd;\n\n  // Allocate necessary internal buffers.\n  unsigned long bufferBytes;\n  bufferBytes = stream_.nUserChannels[mode] * *bufferSize * formatBytes( stream_.userFormat );\n  stream_.userBuffer[mode] = (char *) calloc( bufferBytes, 1 );\n  if ( stream_.userBuffer[mode] == NULL ) {\n    errorText_ = \"RtApiOss::probeDeviceOpen: error allocating user buffer memory.\";\n    goto error;\n  }\n\n  if ( stream_.doConvertBuffer[mode] ) {\n\n    bool makeBuffer = true;\n    bufferBytes = stream_.nDeviceChannels[mode] * formatBytes( stream_.deviceFormat[mode] );\n    if ( mode == INPUT ) {\n      if ( stream_.mode == OUTPUT && stream_.deviceBuffer ) {\n        unsigned long bytesOut = stream_.nDeviceChannels[0] * formatBytes( stream_.deviceFormat[0] );\n        if ( bufferBytes <= bytesOut ) makeBuffer = false;\n      }\n    }\n\n    if ( makeBuffer ) {\n      bufferBytes *= *bufferSize;\n      if ( stream_.deviceBuffer ) free( stream_.deviceBuffer );\n      stream_.deviceBuffer = (char *) calloc( bufferBytes, 1 );\n      if ( stream_.deviceBuffer == NULL ) {\n        errorText_ = \"RtApiOss::probeDeviceOpen: error allocating device buffer memory.\";\n        goto error;\n      }\n    }\n  }\n\n  stream_.device[mode] = device;\n  stream_.state = STREAM_STOPPED;\n\n  // Setup the buffer conversion information structure.\n  if ( stream_.doConvertBuffer[mode] ) setConvertInfo( mode, firstChannel );\n\n  // Setup thread if necessary.\n  if ( stream_.mode == OUTPUT && mode == INPUT ) {\n    // We had already set up an output stream.\n    stream_.mode = DUPLEX;\n    if ( stream_.device[0] == device ) handle->id[0] = fd;\n  }\n  else {\n    stream_.mode = mode;\n\n    // Setup callback thread.\n    stream_.callbackInfo.object = (void *) this;\n\n    // Set the thread attributes for joinable and realtime scheduling\n    // priority.  The higher priority will only take affect if the\n    // program is run as root or suid.\n    pthread_attr_t attr;\n    pthread_attr_init( &attr );\n    pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_JOINABLE );\n#ifdef SCHED_RR // Undefined with some OSes (eg: NetBSD 1.6.x with GNU Pthread)\n    if ( options && options->flags & RTAUDIO_SCHEDULE_REALTIME ) {\n      struct sched_param param;\n      int priority = options->priority;\n      int min = sched_get_priority_min( SCHED_RR );\n      int max = sched_get_priority_max( SCHED_RR );\n      if ( priority < min ) priority = min;\n      else if ( priority > max ) priority = max;\n      param.sched_priority = priority;\n      pthread_attr_setschedparam( &attr, &param );\n      pthread_attr_setschedpolicy( &attr, SCHED_RR );\n    }\n    else\n      pthread_attr_setschedpolicy( &attr, SCHED_OTHER );\n#else\n    pthread_attr_setschedpolicy( &attr, SCHED_OTHER );\n#endif\n\n    stream_.callbackInfo.isRunning = true;\n    result = pthread_create( &stream_.callbackInfo.thread, &attr, ossCallbackHandler, &stream_.callbackInfo );\n    pthread_attr_destroy( &attr );\n    if ( result ) {\n      stream_.callbackInfo.isRunning = false;\n      errorText_ = \"RtApiOss::error creating callback thread!\";\n      goto error;\n    }\n  }\n\n  return SUCCESS;\n\n error:\n  if ( handle ) {\n    pthread_cond_destroy( &handle->runnable );\n    if ( handle->id[0] ) close( handle->id[0] );\n    if ( handle->id[1] ) close( handle->id[1] );\n    delete handle;\n    stream_.apiHandle = 0;\n  }\n\n  for ( int i=0; i<2; i++ ) {\n    if ( stream_.userBuffer[i] ) {\n      free( stream_.userBuffer[i] );\n      stream_.userBuffer[i] = 0;\n    }\n  }\n\n  if ( stream_.deviceBuffer ) {\n    free( stream_.deviceBuffer );\n    stream_.deviceBuffer = 0;\n  }\n\n  return FAILURE;\n}\n\nvoid RtApiOss :: closeStream()\n{\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiOss::closeStream(): no open stream to close!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  OssHandle *handle = (OssHandle *) stream_.apiHandle;\n  stream_.callbackInfo.isRunning = false;\n  MUTEX_LOCK( &stream_.mutex );\n  if ( stream_.state == STREAM_STOPPED )\n    pthread_cond_signal( &handle->runnable );\n  MUTEX_UNLOCK( &stream_.mutex );\n  pthread_join( stream_.callbackInfo.thread, NULL );\n\n  if ( stream_.state == STREAM_RUNNING ) {\n    if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX )\n      ioctl( handle->id[0], SNDCTL_DSP_HALT, 0 );\n    else\n      ioctl( handle->id[1], SNDCTL_DSP_HALT, 0 );\n    stream_.state = STREAM_STOPPED;\n  }\n\n  if ( handle ) {\n    pthread_cond_destroy( &handle->runnable );\n    if ( handle->id[0] ) close( handle->id[0] );\n    if ( handle->id[1] ) close( handle->id[1] );\n    delete handle;\n    stream_.apiHandle = 0;\n  }\n\n  for ( int i=0; i<2; i++ ) {\n    if ( stream_.userBuffer[i] ) {\n      free( stream_.userBuffer[i] );\n      stream_.userBuffer[i] = 0;\n    }\n  }\n\n  if ( stream_.deviceBuffer ) {\n    free( stream_.deviceBuffer );\n    stream_.deviceBuffer = 0;\n  }\n\n  stream_.mode = UNINITIALIZED;\n  stream_.state = STREAM_CLOSED;\n}\n\nvoid RtApiOss :: startStream()\n{\n  verifyStream();\n  if ( stream_.state == STREAM_RUNNING ) {\n    errorText_ = \"RtApiOss::startStream(): the stream is already running!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  MUTEX_LOCK( &stream_.mutex );\n\n  stream_.state = STREAM_RUNNING;\n\n  // No need to do anything else here ... OSS automatically starts\n  // when fed samples.\n\n  MUTEX_UNLOCK( &stream_.mutex );\n\n  OssHandle *handle = (OssHandle *) stream_.apiHandle;\n  pthread_cond_signal( &handle->runnable );\n}\n\nvoid RtApiOss :: stopStream()\n{\n  verifyStream();\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiOss::stopStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  MUTEX_LOCK( &stream_.mutex );\n\n  // The state might change while waiting on a mutex.\n  if ( stream_.state == STREAM_STOPPED ) {\n    MUTEX_UNLOCK( &stream_.mutex );\n    return;\n  }\n\n  int result = 0;\n  OssHandle *handle = (OssHandle *) stream_.apiHandle;\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n\n    // Flush the output with zeros a few times.\n    char *buffer;\n    int samples;\n    RtAudioFormat format;\n\n    if ( stream_.doConvertBuffer[0] ) {\n      buffer = stream_.deviceBuffer;\n      samples = stream_.bufferSize * stream_.nDeviceChannels[0];\n      format = stream_.deviceFormat[0];\n    }\n    else {\n      buffer = stream_.userBuffer[0];\n      samples = stream_.bufferSize * stream_.nUserChannels[0];\n      format = stream_.userFormat;\n    }\n\n    memset( buffer, 0, samples * formatBytes(format) );\n    for ( unsigned int i=0; i<stream_.nBuffers+1; i++ ) {\n      result = write( handle->id[0], buffer, samples * formatBytes(format) );\n      if ( result == -1 ) {\n        errorText_ = \"RtApiOss::stopStream: audio write error.\";\n        error( RtAudioError::WARNING );\n      }\n    }\n\n    result = ioctl( handle->id[0], SNDCTL_DSP_HALT, 0 );\n    if ( result == -1 ) {\n      errorStream_ << \"RtApiOss::stopStream: system error stopping callback procedure on device (\" << stream_.device[0] << \").\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n    handle->triggered = false;\n  }\n\n  if ( stream_.mode == INPUT || ( stream_.mode == DUPLEX && handle->id[0] != handle->id[1] ) ) {\n    result = ioctl( handle->id[1], SNDCTL_DSP_HALT, 0 );\n    if ( result == -1 ) {\n      errorStream_ << \"RtApiOss::stopStream: system error stopping input callback procedure on device (\" << stream_.device[0] << \").\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n  }\n\n unlock:\n  stream_.state = STREAM_STOPPED;\n  MUTEX_UNLOCK( &stream_.mutex );\n\n  if ( result != -1 ) return;\n  error( RtAudioError::SYSTEM_ERROR );\n}\n\nvoid RtApiOss :: abortStream()\n{\n  verifyStream();\n  if ( stream_.state == STREAM_STOPPED ) {\n    errorText_ = \"RtApiOss::abortStream(): the stream is already stopped!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  MUTEX_LOCK( &stream_.mutex );\n\n  // The state might change while waiting on a mutex.\n  if ( stream_.state == STREAM_STOPPED ) {\n    MUTEX_UNLOCK( &stream_.mutex );\n    return;\n  }\n\n  int result = 0;\n  OssHandle *handle = (OssHandle *) stream_.apiHandle;\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n    result = ioctl( handle->id[0], SNDCTL_DSP_HALT, 0 );\n    if ( result == -1 ) {\n      errorStream_ << \"RtApiOss::abortStream: system error stopping callback procedure on device (\" << stream_.device[0] << \").\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n    handle->triggered = false;\n  }\n\n  if ( stream_.mode == INPUT || ( stream_.mode == DUPLEX && handle->id[0] != handle->id[1] ) ) {\n    result = ioctl( handle->id[1], SNDCTL_DSP_HALT, 0 );\n    if ( result == -1 ) {\n      errorStream_ << \"RtApiOss::abortStream: system error stopping input callback procedure on device (\" << stream_.device[0] << \").\";\n      errorText_ = errorStream_.str();\n      goto unlock;\n    }\n  }\n\n unlock:\n  stream_.state = STREAM_STOPPED;\n  MUTEX_UNLOCK( &stream_.mutex );\n\n  if ( result != -1 ) return;\n  error( RtAudioError::SYSTEM_ERROR );\n}\n\nvoid RtApiOss :: callbackEvent()\n{\n  OssHandle *handle = (OssHandle *) stream_.apiHandle;\n  if ( stream_.state == STREAM_STOPPED ) {\n    MUTEX_LOCK( &stream_.mutex );\n    pthread_cond_wait( &handle->runnable, &stream_.mutex );\n    if ( stream_.state != STREAM_RUNNING ) {\n      MUTEX_UNLOCK( &stream_.mutex );\n      return;\n    }\n    MUTEX_UNLOCK( &stream_.mutex );\n  }\n\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApiOss::callbackEvent(): the stream is closed ... this shouldn't happen!\";\n    error( RtAudioError::WARNING );\n    return;\n  }\n\n  // Invoke user callback to get fresh output data.\n  int doStopStream = 0;\n  RtAudioCallback callback = (RtAudioCallback) stream_.callbackInfo.callback;\n  double streamTime = getStreamTime();\n  RtAudioStreamStatus status = 0;\n  if ( stream_.mode != INPUT && handle->xrun[0] == true ) {\n    status |= RTAUDIO_OUTPUT_UNDERFLOW;\n    handle->xrun[0] = false;\n  }\n  if ( stream_.mode != OUTPUT && handle->xrun[1] == true ) {\n    status |= RTAUDIO_INPUT_OVERFLOW;\n    handle->xrun[1] = false;\n  }\n  doStopStream = callback( stream_.userBuffer[0], stream_.userBuffer[1],\n                           stream_.bufferSize, streamTime, status, stream_.callbackInfo.userData );\n  if ( doStopStream == 2 ) {\n    this->abortStream();\n    return;\n  }\n\n  MUTEX_LOCK( &stream_.mutex );\n\n  // The state might change while waiting on a mutex.\n  if ( stream_.state == STREAM_STOPPED ) goto unlock;\n\n  int result;\n  char *buffer;\n  int samples;\n  RtAudioFormat format;\n\n  if ( stream_.mode == OUTPUT || stream_.mode == DUPLEX ) {\n\n    // Setup parameters and do buffer conversion if necessary.\n    if ( stream_.doConvertBuffer[0] ) {\n      buffer = stream_.deviceBuffer;\n      convertBuffer( buffer, stream_.userBuffer[0], stream_.convertInfo[0] );\n      samples = stream_.bufferSize * stream_.nDeviceChannels[0];\n      format = stream_.deviceFormat[0];\n    }\n    else {\n      buffer = stream_.userBuffer[0];\n      samples = stream_.bufferSize * stream_.nUserChannels[0];\n      format = stream_.userFormat;\n    }\n\n    // Do byte swapping if necessary.\n    if ( stream_.doByteSwap[0] )\n      byteSwapBuffer( buffer, samples, format );\n\n    if ( stream_.mode == DUPLEX && handle->triggered == false ) {\n      int trig = 0;\n      ioctl( handle->id[0], SNDCTL_DSP_SETTRIGGER, &trig );\n      result = write( handle->id[0], buffer, samples * formatBytes(format) );\n      trig = PCM_ENABLE_INPUT|PCM_ENABLE_OUTPUT;\n      ioctl( handle->id[0], SNDCTL_DSP_SETTRIGGER, &trig );\n      handle->triggered = true;\n    }\n    else\n      // Write samples to device.\n      result = write( handle->id[0], buffer, samples * formatBytes(format) );\n\n    if ( result == -1 ) {\n      // We'll assume this is an underrun, though there isn't a\n      // specific means for determining that.\n      handle->xrun[0] = true;\n      errorText_ = \"RtApiOss::callbackEvent: audio write error.\";\n      error( RtAudioError::WARNING );\n      // Continue on to input section.\n    }\n  }\n\n  if ( stream_.mode == INPUT || stream_.mode == DUPLEX ) {\n\n    // Setup parameters.\n    if ( stream_.doConvertBuffer[1] ) {\n      buffer = stream_.deviceBuffer;\n      samples = stream_.bufferSize * stream_.nDeviceChannels[1];\n      format = stream_.deviceFormat[1];\n    }\n    else {\n      buffer = stream_.userBuffer[1];\n      samples = stream_.bufferSize * stream_.nUserChannels[1];\n      format = stream_.userFormat;\n    }\n\n    // Read samples from device.\n    result = read( handle->id[1], buffer, samples * formatBytes(format) );\n\n    if ( result == -1 ) {\n      // We'll assume this is an overrun, though there isn't a\n      // specific means for determining that.\n      handle->xrun[1] = true;\n      errorText_ = \"RtApiOss::callbackEvent: audio read error.\";\n      error( RtAudioError::WARNING );\n      goto unlock;\n    }\n\n    // Do byte swapping if necessary.\n    if ( stream_.doByteSwap[1] )\n      byteSwapBuffer( buffer, samples, format );\n\n    // Do buffer conversion if necessary.\n    if ( stream_.doConvertBuffer[1] )\n      convertBuffer( stream_.userBuffer[1], stream_.deviceBuffer, stream_.convertInfo[1] );\n  }\n\n unlock:\n  MUTEX_UNLOCK( &stream_.mutex );\n\n  RtApi::tickStreamTime();\n  if ( doStopStream == 1 ) this->stopStream();\n}\n\nstatic void *ossCallbackHandler( void *ptr )\n{\n  CallbackInfo *info = (CallbackInfo *) ptr;\n  RtApiOss *object = (RtApiOss *) info->object;\n  bool *isRunning = &info->isRunning;\n\n  while ( *isRunning == true ) {\n    pthread_testcancel();\n    object->callbackEvent();\n  }\n\n  pthread_exit( NULL );\n}\n\n//******************** End of __LINUX_OSS__ *********************//\n#endif\n\n\n// *************************************************** //\n//\n// Protected common (OS-independent) RtAudio methods.\n//\n// *************************************************** //\n\n// This method can be modified to control the behavior of error\n// message printing.\nvoid RtApi :: error( RtAudioError::Type type )\n{\n  errorStream_.str(\"\"); // clear the ostringstream\n\n  RtAudioErrorCallback errorCallback = (RtAudioErrorCallback) stream_.callbackInfo.errorCallback;\n  if ( errorCallback ) {\n    // abortStream() can generate new error messages. Ignore them. Just keep original one.\n\n    if ( firstErrorOccurred_ )\n      return;\n\n    firstErrorOccurred_ = true;\n    const std::string errorMessage = errorText_;\n\n    if ( type != RtAudioError::WARNING && stream_.state != STREAM_STOPPED) {\n      stream_.callbackInfo.isRunning = false; // exit from the thread\n      abortStream();\n    }\n\n    errorCallback( type, errorMessage );\n    firstErrorOccurred_ = false;\n    return;\n  }\n\n  if ( type == RtAudioError::WARNING && showWarnings_ == true )\n    std::cerr << '\\n' << errorText_ << \"\\n\\n\";\n  else if ( type != RtAudioError::WARNING )\n    throw( RtAudioError( errorText_, type ) );\n}\n\nvoid RtApi :: verifyStream()\n{\n  if ( stream_.state == STREAM_CLOSED ) {\n    errorText_ = \"RtApi:: a stream is not open!\";\n    error( RtAudioError::INVALID_USE );\n  }\n}\n\nvoid RtApi :: clearStreamInfo()\n{\n  stream_.mode = UNINITIALIZED;\n  stream_.state = STREAM_CLOSED;\n  stream_.sampleRate = 0;\n  stream_.bufferSize = 0;\n  stream_.nBuffers = 0;\n  stream_.userFormat = 0;\n  stream_.userInterleaved = true;\n  stream_.streamTime = 0.0;\n  stream_.apiHandle = 0;\n  stream_.deviceBuffer = 0;\n  stream_.callbackInfo.callback = 0;\n  stream_.callbackInfo.userData = 0;\n  stream_.callbackInfo.isRunning = false;\n  stream_.callbackInfo.errorCallback = 0;\n  for ( int i=0; i<2; i++ ) {\n    stream_.device[i] = 11111;\n    stream_.doConvertBuffer[i] = false;\n    stream_.deviceInterleaved[i] = true;\n    stream_.doByteSwap[i] = false;\n    stream_.nUserChannels[i] = 0;\n    stream_.nDeviceChannels[i] = 0;\n    stream_.channelOffset[i] = 0;\n    stream_.deviceFormat[i] = 0;\n    stream_.latency[i] = 0;\n    stream_.userBuffer[i] = 0;\n    stream_.convertInfo[i].channels = 0;\n    stream_.convertInfo[i].inJump = 0;\n    stream_.convertInfo[i].outJump = 0;\n    stream_.convertInfo[i].inFormat = 0;\n    stream_.convertInfo[i].outFormat = 0;\n    stream_.convertInfo[i].inOffset.clear();\n    stream_.convertInfo[i].outOffset.clear();\n  }\n}\n\nunsigned int RtApi :: formatBytes( RtAudioFormat format )\n{\n  if ( format == RTAUDIO_SINT16 )\n    return 2;\n  else if ( format == RTAUDIO_SINT32 || format == RTAUDIO_FLOAT32 )\n    return 4;\n  else if ( format == RTAUDIO_FLOAT64 )\n    return 8;\n  else if ( format == RTAUDIO_SINT24 )\n    return 3;\n  else if ( format == RTAUDIO_SINT8 )\n    return 1;\n\n  errorText_ = \"RtApi::formatBytes: undefined format.\";\n  error( RtAudioError::WARNING );\n\n  return 0;\n}\n\nvoid RtApi :: setConvertInfo( StreamMode mode, unsigned int firstChannel )\n{\n  if ( mode == INPUT ) { // convert device to user buffer\n    stream_.convertInfo[mode].inJump = stream_.nDeviceChannels[1];\n    stream_.convertInfo[mode].outJump = stream_.nUserChannels[1];\n    stream_.convertInfo[mode].inFormat = stream_.deviceFormat[1];\n    stream_.convertInfo[mode].outFormat = stream_.userFormat;\n  }\n  else { // convert user to device buffer\n    stream_.convertInfo[mode].inJump = stream_.nUserChannels[0];\n    stream_.convertInfo[mode].outJump = stream_.nDeviceChannels[0];\n    stream_.convertInfo[mode].inFormat = stream_.userFormat;\n    stream_.convertInfo[mode].outFormat = stream_.deviceFormat[0];\n  }\n\n  if ( stream_.convertInfo[mode].inJump < stream_.convertInfo[mode].outJump )\n    stream_.convertInfo[mode].channels = stream_.convertInfo[mode].inJump;\n  else\n    stream_.convertInfo[mode].channels = stream_.convertInfo[mode].outJump;\n\n  // Set up the interleave/deinterleave offsets.\n  if ( stream_.deviceInterleaved[mode] != stream_.userInterleaved ) {\n    if ( ( mode == OUTPUT && stream_.deviceInterleaved[mode] ) ||\n         ( mode == INPUT && stream_.userInterleaved ) ) {\n      for ( int k=0; k<stream_.convertInfo[mode].channels; k++ ) {\n        stream_.convertInfo[mode].inOffset.push_back( k * stream_.bufferSize );\n        stream_.convertInfo[mode].outOffset.push_back( k );\n        stream_.convertInfo[mode].inJump = 1;\n      }\n    }\n    else {\n      for ( int k=0; k<stream_.convertInfo[mode].channels; k++ ) {\n        stream_.convertInfo[mode].inOffset.push_back( k );\n        stream_.convertInfo[mode].outOffset.push_back( k * stream_.bufferSize );\n        stream_.convertInfo[mode].outJump = 1;\n      }\n    }\n  }\n  else { // no (de)interleaving\n    if ( stream_.userInterleaved ) {\n      for ( int k=0; k<stream_.convertInfo[mode].channels; k++ ) {\n        stream_.convertInfo[mode].inOffset.push_back( k );\n        stream_.convertInfo[mode].outOffset.push_back( k );\n      }\n    }\n    else {\n      for ( int k=0; k<stream_.convertInfo[mode].channels; k++ ) {\n        stream_.convertInfo[mode].inOffset.push_back( k * stream_.bufferSize );\n        stream_.convertInfo[mode].outOffset.push_back( k * stream_.bufferSize );\n        stream_.convertInfo[mode].inJump = 1;\n        stream_.convertInfo[mode].outJump = 1;\n      }\n    }\n  }\n\n  // Add channel offset.\n  if ( firstChannel > 0 ) {\n    if ( stream_.deviceInterleaved[mode] ) {\n      if ( mode == OUTPUT ) {\n        for ( int k=0; k<stream_.convertInfo[mode].channels; k++ )\n          stream_.convertInfo[mode].outOffset[k] += firstChannel;\n      }\n      else {\n        for ( int k=0; k<stream_.convertInfo[mode].channels; k++ )\n          stream_.convertInfo[mode].inOffset[k] += firstChannel;\n      }\n    }\n    else {\n      if ( mode == OUTPUT ) {\n        for ( int k=0; k<stream_.convertInfo[mode].channels; k++ )\n          stream_.convertInfo[mode].outOffset[k] += ( firstChannel * stream_.bufferSize );\n      }\n      else {\n        for ( int k=0; k<stream_.convertInfo[mode].channels; k++ )\n          stream_.convertInfo[mode].inOffset[k] += ( firstChannel  * stream_.bufferSize );\n      }\n    }\n  }\n}\n\nvoid RtApi :: convertBuffer( char *outBuffer, char *inBuffer, ConvertInfo &info )\n{\n  // This function does format conversion, input/output channel compensation, and\n  // data interleaving/deinterleaving.  24-bit integers are assumed to occupy\n  // the lower three bytes of a 32-bit integer.\n\n  // Clear our device buffer when in/out duplex device channels are different\n  if ( outBuffer == stream_.deviceBuffer && stream_.mode == DUPLEX &&\n       ( stream_.nDeviceChannels[0] < stream_.nDeviceChannels[1] ) )\n    memset( outBuffer, 0, stream_.bufferSize * info.outJump * formatBytes( info.outFormat ) );\n\n  int j;\n  if (info.outFormat == RTAUDIO_FLOAT64) {\n    Float64 scale;\n    Float64 *out = (Float64 *)outBuffer;\n\n    if (info.inFormat == RTAUDIO_SINT8) {\n      signed char *in = (signed char *)inBuffer;\n      scale = 1.0 / 127.5;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Float64) in[info.inOffset[j]];\n          out[info.outOffset[j]] += 0.5;\n          out[info.outOffset[j]] *= scale;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT16) {\n      Int16 *in = (Int16 *)inBuffer;\n      scale = 1.0 / 32767.5;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Float64) in[info.inOffset[j]];\n          out[info.outOffset[j]] += 0.5;\n          out[info.outOffset[j]] *= scale;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT24) {\n      Int24 *in = (Int24 *)inBuffer;\n      scale = 1.0 / 8388607.5;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Float64) (in[info.inOffset[j]].asInt());\n          out[info.outOffset[j]] += 0.5;\n          out[info.outOffset[j]] *= scale;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT32) {\n      Int32 *in = (Int32 *)inBuffer;\n      scale = 1.0 / 2147483647.5;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Float64) in[info.inOffset[j]];\n          out[info.outOffset[j]] += 0.5;\n          out[info.outOffset[j]] *= scale;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_FLOAT32) {\n      Float32 *in = (Float32 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Float64) in[info.inOffset[j]];\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_FLOAT64) {\n      // Channel compensation and/or (de)interleaving only.\n      Float64 *in = (Float64 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = in[info.inOffset[j]];\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n  }\n  else if (info.outFormat == RTAUDIO_FLOAT32) {\n    Float32 scale;\n    Float32 *out = (Float32 *)outBuffer;\n\n    if (info.inFormat == RTAUDIO_SINT8) {\n      signed char *in = (signed char *)inBuffer;\n      scale = (Float32) ( 1.0 / 127.5 );\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Float32) in[info.inOffset[j]];\n          out[info.outOffset[j]] += 0.5;\n          out[info.outOffset[j]] *= scale;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT16) {\n      Int16 *in = (Int16 *)inBuffer;\n      scale = (Float32) ( 1.0 / 32767.5 );\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Float32) in[info.inOffset[j]];\n          out[info.outOffset[j]] += 0.5;\n          out[info.outOffset[j]] *= scale;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT24) {\n      Int24 *in = (Int24 *)inBuffer;\n      scale = (Float32) ( 1.0 / 8388607.5 );\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Float32) (in[info.inOffset[j]].asInt());\n          out[info.outOffset[j]] += 0.5;\n          out[info.outOffset[j]] *= scale;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT32) {\n      Int32 *in = (Int32 *)inBuffer;\n      scale = (Float32) ( 1.0 / 2147483647.5 );\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Float32) in[info.inOffset[j]];\n          out[info.outOffset[j]] += 0.5;\n          out[info.outOffset[j]] *= scale;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_FLOAT32) {\n      // Channel compensation and/or (de)interleaving only.\n      Float32 *in = (Float32 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = in[info.inOffset[j]];\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_FLOAT64) {\n      Float64 *in = (Float64 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Float32) in[info.inOffset[j]];\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n  }\n  else if (info.outFormat == RTAUDIO_SINT32) {\n    Int32 *out = (Int32 *)outBuffer;\n    if (info.inFormat == RTAUDIO_SINT8) {\n      signed char *in = (signed char *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int32) in[info.inOffset[j]];\n          out[info.outOffset[j]] <<= 24;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT16) {\n      Int16 *in = (Int16 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int32) in[info.inOffset[j]];\n          out[info.outOffset[j]] <<= 16;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT24) {\n      Int24 *in = (Int24 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int32) in[info.inOffset[j]].asInt();\n          out[info.outOffset[j]] <<= 8;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT32) {\n      // Channel compensation and/or (de)interleaving only.\n      Int32 *in = (Int32 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = in[info.inOffset[j]];\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_FLOAT32) {\n      Float32 *in = (Float32 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int32) (in[info.inOffset[j]] * 2147483647.5 - 0.5);\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_FLOAT64) {\n      Float64 *in = (Float64 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int32) (in[info.inOffset[j]] * 2147483647.5 - 0.5);\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n  }\n  else if (info.outFormat == RTAUDIO_SINT24) {\n    Int24 *out = (Int24 *)outBuffer;\n    if (info.inFormat == RTAUDIO_SINT8) {\n      signed char *in = (signed char *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int32) (in[info.inOffset[j]] << 16);\n          //out[info.outOffset[j]] <<= 16;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT16) {\n      Int16 *in = (Int16 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int32) (in[info.inOffset[j]] << 8);\n          //out[info.outOffset[j]] <<= 8;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT24) {\n      // Channel compensation and/or (de)interleaving only.\n      Int24 *in = (Int24 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = in[info.inOffset[j]];\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT32) {\n      Int32 *in = (Int32 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int32) (in[info.inOffset[j]] >> 8);\n          //out[info.outOffset[j]] >>= 8;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_FLOAT32) {\n      Float32 *in = (Float32 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int32) (in[info.inOffset[j]] * 8388607.5 - 0.5);\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_FLOAT64) {\n      Float64 *in = (Float64 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int32) (in[info.inOffset[j]] * 8388607.5 - 0.5);\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n  }\n  else if (info.outFormat == RTAUDIO_SINT16) {\n    Int16 *out = (Int16 *)outBuffer;\n    if (info.inFormat == RTAUDIO_SINT8) {\n      signed char *in = (signed char *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int16) in[info.inOffset[j]];\n          out[info.outOffset[j]] <<= 8;\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT16) {\n      // Channel compensation and/or (de)interleaving only.\n      Int16 *in = (Int16 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = in[info.inOffset[j]];\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT24) {\n      Int24 *in = (Int24 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int16) (in[info.inOffset[j]].asInt() >> 8);\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT32) {\n      Int32 *in = (Int32 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int16) ((in[info.inOffset[j]] >> 16) & 0x0000ffff);\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_FLOAT32) {\n      Float32 *in = (Float32 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int16) (in[info.inOffset[j]] * 32767.5 - 0.5);\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_FLOAT64) {\n      Float64 *in = (Float64 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (Int16) (in[info.inOffset[j]] * 32767.5 - 0.5);\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n  }\n  else if (info.outFormat == RTAUDIO_SINT8) {\n    signed char *out = (signed char *)outBuffer;\n    if (info.inFormat == RTAUDIO_SINT8) {\n      // Channel compensation and/or (de)interleaving only.\n      signed char *in = (signed char *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = in[info.inOffset[j]];\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    if (info.inFormat == RTAUDIO_SINT16) {\n      Int16 *in = (Int16 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (signed char) ((in[info.inOffset[j]] >> 8) & 0x00ff);\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT24) {\n      Int24 *in = (Int24 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (signed char) (in[info.inOffset[j]].asInt() >> 16);\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_SINT32) {\n      Int32 *in = (Int32 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (signed char) ((in[info.inOffset[j]] >> 24) & 0x000000ff);\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_FLOAT32) {\n      Float32 *in = (Float32 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (signed char) (in[info.inOffset[j]] * 127.5 - 0.5);\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n    else if (info.inFormat == RTAUDIO_FLOAT64) {\n      Float64 *in = (Float64 *)inBuffer;\n      for (unsigned int i=0; i<stream_.bufferSize; i++) {\n        for (j=0; j<info.channels; j++) {\n          out[info.outOffset[j]] = (signed char) (in[info.inOffset[j]] * 127.5 - 0.5);\n        }\n        in += info.inJump;\n        out += info.outJump;\n      }\n    }\n  }\n}\n\n//static inline uint16_t bswap_16(uint16_t x) { return (x>>8) | (x<<8); }\n//static inline uint32_t bswap_32(uint32_t x) { return (bswap_16(x&0xffff)<<16) | (bswap_16(x>>16)); }\n//static inline uint64_t bswap_64(uint64_t x) { return (((unsigned long long)bswap_32(x&0xffffffffull))<<32) | (bswap_32(x>>32)); }\n\nvoid RtApi :: byteSwapBuffer( char *buffer, unsigned int samples, RtAudioFormat format )\n{\n  char val;\n  char *ptr;\n\n  ptr = buffer;\n  if ( format == RTAUDIO_SINT16 ) {\n    for ( unsigned int i=0; i<samples; i++ ) {\n      // Swap 1st and 2nd bytes.\n      val = *(ptr);\n      *(ptr) = *(ptr+1);\n      *(ptr+1) = val;\n\n      // Increment 2 bytes.\n      ptr += 2;\n    }\n  }\n  else if ( format == RTAUDIO_SINT32 ||\n            format == RTAUDIO_FLOAT32 ) {\n    for ( unsigned int i=0; i<samples; i++ ) {\n      // Swap 1st and 4th bytes.\n      val = *(ptr);\n      *(ptr) = *(ptr+3);\n      *(ptr+3) = val;\n\n      // Swap 2nd and 3rd bytes.\n      ptr += 1;\n      val = *(ptr);\n      *(ptr) = *(ptr+1);\n      *(ptr+1) = val;\n\n      // Increment 3 more bytes.\n      ptr += 3;\n    }\n  }\n  else if ( format == RTAUDIO_SINT24 ) {\n    for ( unsigned int i=0; i<samples; i++ ) {\n      // Swap 1st and 3rd bytes.\n      val = *(ptr);\n      *(ptr) = *(ptr+2);\n      *(ptr+2) = val;\n\n      // Increment 2 more bytes.\n      ptr += 2;\n    }\n  }\n  else if ( format == RTAUDIO_FLOAT64 ) {\n    for ( unsigned int i=0; i<samples; i++ ) {\n      // Swap 1st and 8th bytes\n      val = *(ptr);\n      *(ptr) = *(ptr+7);\n      *(ptr+7) = val;\n\n      // Swap 2nd and 7th bytes\n      ptr += 1;\n      val = *(ptr);\n      *(ptr) = *(ptr+5);\n      *(ptr+5) = val;\n\n      // Swap 3rd and 6th bytes\n      ptr += 1;\n      val = *(ptr);\n      *(ptr) = *(ptr+3);\n      *(ptr+3) = val;\n\n      // Swap 4th and 5th bytes\n      ptr += 1;\n      val = *(ptr);\n      *(ptr) = *(ptr+1);\n      *(ptr+1) = val;\n\n      // Increment 5 more bytes.\n      ptr += 5;\n    }\n  }\n}\n\n  // Indentation settings for Vim and Emacs\n  //\n  // Local Variables:\n  // c-basic-offset: 2\n  // indent-tabs-mode: nil\n  // End:\n  //\n  // vim: et sts=2 sw=2\n\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/RtAudio.h",
    "content": "/************************************************************************/\n/*! \\class RtAudio\n    \\brief Realtime audio i/o C++ classes.\n\n    RtAudio provides a common API (Application Programming Interface)\n    for realtime audio input/output across Linux (native ALSA, Jack,\n    and OSS), Macintosh OS X (CoreAudio and Jack), and Windows\n    (DirectSound, ASIO and WASAPI) operating systems.\n\n    RtAudio WWW site: http://www.music.mcgill.ca/~gary/rtaudio/\n\n    RtAudio: realtime audio i/o C++ classes\n    Copyright (c) 2001-2017 Gary P. Scavone\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation files\n    (the \"Software\"), to deal in the Software without restriction,\n    including without limitation the rights to use, copy, modify, merge,\n    publish, distribute, sublicense, and/or sell copies of the Software,\n    and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    Any person wishing to distribute modifications to the Software is\n    asked to send the modifications to the original developer so that\n    they can be incorporated into the canonical version.  This is,\n    however, not a binding provision of this license.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\n    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\n    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n/************************************************************************/\n\n/*!\n  \\file RtAudio.h\n */\n\n#ifndef __RTAUDIO_H\n#define __RTAUDIO_H\n\n#define RTAUDIO_VERSION \"5.0.0\"\n\n#if defined _WIN32 || defined __CYGWIN__\n  #define RTAUDIO_DLL_PUBLIC\n#else\n  #if __GNUC__ >= 4\n    #define RTAUDIO_DLL_PUBLIC __attribute__( (visibility( \"default\" )) )\n  #else\n    #define RTAUDIO_DLL_PUBLIC\n  #endif\n#endif\n\n#include <string>\n#include <vector>\n#include <stdexcept>\n#include <iostream>\n\n/*! \\typedef typedef unsigned long RtAudioFormat;\n    \\brief RtAudio data format type.\n\n    Support for signed integers and floats.  Audio data fed to/from an\n    RtAudio stream is assumed to ALWAYS be in host byte order.  The\n    internal routines will automatically take care of any necessary\n    byte-swapping between the host format and the soundcard.  Thus,\n    endian-ness is not a concern in the following format definitions.\n\n    - \\e RTAUDIO_SINT8:   8-bit signed integer.\n    - \\e RTAUDIO_SINT16:  16-bit signed integer.\n    - \\e RTAUDIO_SINT24:  24-bit signed integer.\n    - \\e RTAUDIO_SINT32:  32-bit signed integer.\n    - \\e RTAUDIO_FLOAT32: Normalized between plus/minus 1.0.\n    - \\e RTAUDIO_FLOAT64: Normalized between plus/minus 1.0.\n*/\ntypedef unsigned long RtAudioFormat;\nstatic const RtAudioFormat RTAUDIO_SINT8 = 0x1;    // 8-bit signed integer.\nstatic const RtAudioFormat RTAUDIO_SINT16 = 0x2;   // 16-bit signed integer.\nstatic const RtAudioFormat RTAUDIO_SINT24 = 0x4;   // 24-bit signed integer.\nstatic const RtAudioFormat RTAUDIO_SINT32 = 0x8;   // 32-bit signed integer.\nstatic const RtAudioFormat RTAUDIO_FLOAT32 = 0x10; // Normalized between plus/minus 1.0.\nstatic const RtAudioFormat RTAUDIO_FLOAT64 = 0x20; // Normalized between plus/minus 1.0.\n\n/*! \\typedef typedef unsigned long RtAudioStreamFlags;\n    \\brief RtAudio stream option flags.\n\n    The following flags can be OR'ed together to allow a client to\n    make changes to the default stream behavior:\n\n    - \\e RTAUDIO_NONINTERLEAVED:   Use non-interleaved buffers (default = interleaved).\n    - \\e RTAUDIO_MINIMIZE_LATENCY: Attempt to set stream parameters for lowest possible latency.\n    - \\e RTAUDIO_HOG_DEVICE:       Attempt grab device for exclusive use.\n    - \\e RTAUDIO_ALSA_USE_DEFAULT: Use the \"default\" PCM device (ALSA only).\n    - \\e RTAUDIO_JACK_DONT_CONNECT: Do not automatically connect ports (JACK only).\n\n    By default, RtAudio streams pass and receive audio data from the\n    client in an interleaved format.  By passing the\n    RTAUDIO_NONINTERLEAVED flag to the openStream() function, audio\n    data will instead be presented in non-interleaved buffers.  In\n    this case, each buffer argument in the RtAudioCallback function\n    will point to a single array of data, with \\c nFrames samples for\n    each channel concatenated back-to-back.  For example, the first\n    sample of data for the second channel would be located at index \\c\n    nFrames (assuming the \\c buffer pointer was recast to the correct\n    data type for the stream).\n\n    Certain audio APIs offer a number of parameters that influence the\n    I/O latency of a stream.  By default, RtAudio will attempt to set\n    these parameters internally for robust (glitch-free) performance\n    (though some APIs, like Windows Direct Sound, make this difficult).\n    By passing the RTAUDIO_MINIMIZE_LATENCY flag to the openStream()\n    function, internal stream settings will be influenced in an attempt\n    to minimize stream latency, though possibly at the expense of stream\n    performance.\n\n    If the RTAUDIO_HOG_DEVICE flag is set, RtAudio will attempt to\n    open the input and/or output stream device(s) for exclusive use.\n    Note that this is not possible with all supported audio APIs.\n\n    If the RTAUDIO_SCHEDULE_REALTIME flag is set, RtAudio will attempt \n    to select realtime scheduling (round-robin) for the callback thread.\n\n    If the RTAUDIO_ALSA_USE_DEFAULT flag is set, RtAudio will attempt to\n    open the \"default\" PCM device when using the ALSA API. Note that this\n    will override any specified input or output device id.\n\n    If the RTAUDIO_JACK_DONT_CONNECT flag is set, RtAudio will not attempt\n    to automatically connect the ports of the client to the audio device.\n*/\ntypedef unsigned int RtAudioStreamFlags;\nstatic const RtAudioStreamFlags RTAUDIO_NONINTERLEAVED = 0x1;    // Use non-interleaved buffers (default = interleaved).\nstatic const RtAudioStreamFlags RTAUDIO_MINIMIZE_LATENCY = 0x2;  // Attempt to set stream parameters for lowest possible latency.\nstatic const RtAudioStreamFlags RTAUDIO_HOG_DEVICE = 0x4;        // Attempt grab device and prevent use by others.\nstatic const RtAudioStreamFlags RTAUDIO_SCHEDULE_REALTIME = 0x8; // Try to select realtime scheduling for callback thread.\nstatic const RtAudioStreamFlags RTAUDIO_ALSA_USE_DEFAULT = 0x10; // Use the \"default\" PCM device (ALSA only).\nstatic const RtAudioStreamFlags RTAUDIO_JACK_DONT_CONNECT = 0x20; // Do not automatically connect ports (JACK only).\n\n/*! \\typedef typedef unsigned long RtAudioStreamStatus;\n    \\brief RtAudio stream status (over- or underflow) flags.\n\n    Notification of a stream over- or underflow is indicated by a\n    non-zero stream \\c status argument in the RtAudioCallback function.\n    The stream status can be one of the following two options,\n    depending on whether the stream is open for output and/or input:\n\n    - \\e RTAUDIO_INPUT_OVERFLOW:   Input data was discarded because of an overflow condition at the driver.\n    - \\e RTAUDIO_OUTPUT_UNDERFLOW: The output buffer ran low, likely producing a break in the output sound.\n*/\ntypedef unsigned int RtAudioStreamStatus;\nstatic const RtAudioStreamStatus RTAUDIO_INPUT_OVERFLOW = 0x1;    // Input data was discarded because of an overflow condition at the driver.\nstatic const RtAudioStreamStatus RTAUDIO_OUTPUT_UNDERFLOW = 0x2;  // The output buffer ran low, likely causing a gap in the output sound.\n\n//! RtAudio callback function prototype.\n/*!\n   All RtAudio clients must create a function of type RtAudioCallback\n   to read and/or write data from/to the audio stream.  When the\n   underlying audio system is ready for new input or output data, this\n   function will be invoked.\n\n   \\param outputBuffer For output (or duplex) streams, the client\n          should write \\c nFrames of audio sample frames into this\n          buffer.  This argument should be recast to the datatype\n          specified when the stream was opened.  For input-only\n          streams, this argument will be NULL.\n\n   \\param inputBuffer For input (or duplex) streams, this buffer will\n          hold \\c nFrames of input audio sample frames.  This\n          argument should be recast to the datatype specified when the\n          stream was opened.  For output-only streams, this argument\n          will be NULL.\n\n   \\param nFrames The number of sample frames of input or output\n          data in the buffers.  The actual buffer size in bytes is\n          dependent on the data type and number of channels in use.\n\n   \\param streamTime The number of seconds that have elapsed since the\n          stream was started.\n\n   \\param status If non-zero, this argument indicates a data overflow\n          or underflow condition for the stream.  The particular\n          condition can be determined by comparison with the\n          RtAudioStreamStatus flags.\n\n   \\param userData A pointer to optional data provided by the client\n          when opening the stream (default = NULL).\n\n   To continue normal stream operation, the RtAudioCallback function\n   should return a value of zero.  To stop the stream and drain the\n   output buffer, the function should return a value of one.  To abort\n   the stream immediately, the client should return a value of two.\n */\ntypedef int (*RtAudioCallback)( void *outputBuffer, void *inputBuffer,\n                                unsigned int nFrames,\n                                double streamTime,\n                                RtAudioStreamStatus status,\n                                void *userData );\n\n/************************************************************************/\n/*! \\class RtAudioError\n    \\brief Exception handling class for RtAudio.\n\n    The RtAudioError class is quite simple but it does allow errors to be\n    \"caught\" by RtAudioError::Type. See the RtAudio documentation to know\n    which methods can throw an RtAudioError.\n*/\n/************************************************************************/\n\nclass RTAUDIO_DLL_PUBLIC RtAudioError : public std::runtime_error\n{\n public:\n  //! Defined RtAudioError types.\n  enum Type {\n    WARNING,           /*!< A non-critical error. */\n    DEBUG_WARNING,     /*!< A non-critical error which might be useful for debugging. */\n    UNSPECIFIED,       /*!< The default, unspecified error type. */\n    NO_DEVICES_FOUND,  /*!< No devices found on system. */\n    INVALID_DEVICE,    /*!< An invalid device ID was specified. */\n    MEMORY_ERROR,      /*!< An error occured during memory allocation. */\n    INVALID_PARAMETER, /*!< An invalid parameter was specified to a function. */\n    INVALID_USE,       /*!< The function was called incorrectly. */\n    DRIVER_ERROR,      /*!< A system driver error occured. */\n    SYSTEM_ERROR,      /*!< A system error occured. */\n    THREAD_ERROR       /*!< A thread error occured. */\n  };\n\n  //! The constructor.\n  RtAudioError( const std::string& message,\n                Type type = RtAudioError::UNSPECIFIED )\n    : std::runtime_error(message), type_(type) {}\n\n  //! Prints thrown error message to stderr.\n  virtual void printMessage( void ) const\n    { std::cerr << '\\n' << what() << \"\\n\\n\"; }\n\n  //! Returns the thrown error message type.\n  virtual const Type& getType(void) const { return type_; }\n\n  //! Returns the thrown error message string.\n  virtual const std::string getMessage(void) const\n    { return std::string(what()); }\n\n protected:\n  Type type_;\n};\n\n//! RtAudio error callback function prototype.\n/*!\n    \\param type Type of error.\n    \\param errorText Error description.\n */\ntypedef void (*RtAudioErrorCallback)( RtAudioError::Type type, const std::string &errorText );\n\n// **************************************************************** //\n//\n// RtAudio class declaration.\n//\n// RtAudio is a \"controller\" used to select an available audio i/o\n// interface.  It presents a common API for the user to call but all\n// functionality is implemented by the class RtApi and its\n// subclasses.  RtAudio creates an instance of an RtApi subclass\n// based on the user's API choice.  If no choice is made, RtAudio\n// attempts to make a \"logical\" API selection.\n//\n// **************************************************************** //\n\nclass RtApi;\n\nclass RTAUDIO_DLL_PUBLIC RtAudio\n{\n public:\n\n  //! Audio API specifier arguments.\n  enum Api {\n    UNSPECIFIED,    /*!< Search for a working compiled API. */\n    LINUX_ALSA,     /*!< The Advanced Linux Sound Architecture API. */\n    LINUX_PULSE,    /*!< The Linux PulseAudio API. */\n    LINUX_OSS,      /*!< The Linux Open Sound System API. */\n    UNIX_JACK,      /*!< The Jack Low-Latency Audio Server API. */\n    MACOSX_CORE,    /*!< Macintosh OS-X Core Audio API. */\n    WINDOWS_WASAPI, /*!< The Microsoft WASAPI API. */\n    WINDOWS_ASIO,   /*!< The Steinberg Audio Stream I/O API. */\n    WINDOWS_DS,     /*!< The Microsoft Direct Sound API. */\n    RTAUDIO_DUMMY   /*!< A compilable but non-functional API. */\n  };\n\n  //! The public device information structure for returning queried values.\n  struct DeviceInfo {\n    bool probed;                  /*!< true if the device capabilities were successfully probed. */\n    std::string name;             /*!< Character string device identifier. */\n    unsigned int outputChannels;  /*!< Maximum output channels supported by device. */\n    unsigned int inputChannels;   /*!< Maximum input channels supported by device. */\n    unsigned int duplexChannels;  /*!< Maximum simultaneous input/output channels supported by device. */\n    bool isDefaultOutput;         /*!< true if this is the default output device. */\n    bool isDefaultInput;          /*!< true if this is the default input device. */\n    std::vector<unsigned int> sampleRates; /*!< Supported sample rates (queried from list of standard rates). */\n    unsigned int preferredSampleRate; /*!< Preferred sample rate, eg. for WASAPI the system sample rate. */\n    RtAudioFormat nativeFormats;  /*!< Bit mask of supported data formats. */\n\n    // Default constructor.\n    DeviceInfo()\n      :probed(false), outputChannels(0), inputChannels(0), duplexChannels(0),\n       isDefaultOutput(false), isDefaultInput(false), preferredSampleRate(0), nativeFormats(0) {}\n  };\n\n  //! The structure for specifying input or ouput stream parameters.\n  struct StreamParameters {\n    unsigned int deviceId;     /*!< Device index (0 to getDeviceCount() - 1). */\n    unsigned int nChannels;    /*!< Number of channels. */\n    unsigned int firstChannel; /*!< First channel index on device (default = 0). */\n\n    // Default constructor.\n    StreamParameters()\n      : deviceId(0), nChannels(0), firstChannel(0) {}\n  };\n\n  //! The structure for specifying stream options.\n  /*!\n    The following flags can be OR'ed together to allow a client to\n    make changes to the default stream behavior:\n\n    - \\e RTAUDIO_NONINTERLEAVED:    Use non-interleaved buffers (default = interleaved).\n    - \\e RTAUDIO_MINIMIZE_LATENCY:  Attempt to set stream parameters for lowest possible latency.\n    - \\e RTAUDIO_HOG_DEVICE:        Attempt grab device for exclusive use.\n    - \\e RTAUDIO_SCHEDULE_REALTIME: Attempt to select realtime scheduling for callback thread.\n    - \\e RTAUDIO_ALSA_USE_DEFAULT:  Use the \"default\" PCM device (ALSA only).\n\n    By default, RtAudio streams pass and receive audio data from the\n    client in an interleaved format.  By passing the\n    RTAUDIO_NONINTERLEAVED flag to the openStream() function, audio\n    data will instead be presented in non-interleaved buffers.  In\n    this case, each buffer argument in the RtAudioCallback function\n    will point to a single array of data, with \\c nFrames samples for\n    each channel concatenated back-to-back.  For example, the first\n    sample of data for the second channel would be located at index \\c\n    nFrames (assuming the \\c buffer pointer was recast to the correct\n    data type for the stream).\n\n    Certain audio APIs offer a number of parameters that influence the\n    I/O latency of a stream.  By default, RtAudio will attempt to set\n    these parameters internally for robust (glitch-free) performance\n    (though some APIs, like Windows Direct Sound, make this difficult).\n    By passing the RTAUDIO_MINIMIZE_LATENCY flag to the openStream()\n    function, internal stream settings will be influenced in an attempt\n    to minimize stream latency, though possibly at the expense of stream\n    performance.\n\n    If the RTAUDIO_HOG_DEVICE flag is set, RtAudio will attempt to\n    open the input and/or output stream device(s) for exclusive use.\n    Note that this is not possible with all supported audio APIs.\n\n    If the RTAUDIO_SCHEDULE_REALTIME flag is set, RtAudio will attempt \n    to select realtime scheduling (round-robin) for the callback thread.\n    The \\c priority parameter will only be used if the RTAUDIO_SCHEDULE_REALTIME\n    flag is set. It defines the thread's realtime priority.\n\n    If the RTAUDIO_ALSA_USE_DEFAULT flag is set, RtAudio will attempt to\n    open the \"default\" PCM device when using the ALSA API. Note that this\n    will override any specified input or output device id.\n\n    The \\c numberOfBuffers parameter can be used to control stream\n    latency in the Windows DirectSound, Linux OSS, and Linux Alsa APIs\n    only.  A value of two is usually the smallest allowed.  Larger\n    numbers can potentially result in more robust stream performance,\n    though likely at the cost of stream latency.  The value set by the\n    user is replaced during execution of the RtAudio::openStream()\n    function by the value actually used by the system.\n\n    The \\c streamName parameter can be used to set the client name\n    when using the Jack API.  By default, the client name is set to\n    RtApiJack.  However, if you wish to create multiple instances of\n    RtAudio with Jack, each instance must have a unique client name.\n  */\n  struct StreamOptions {\n    RtAudioStreamFlags flags;      /*!< A bit-mask of stream flags (RTAUDIO_NONINTERLEAVED, RTAUDIO_MINIMIZE_LATENCY, RTAUDIO_HOG_DEVICE, RTAUDIO_ALSA_USE_DEFAULT). */\n    unsigned int numberOfBuffers;  /*!< Number of stream buffers. */\n    std::string streamName;        /*!< A stream name (currently used only in Jack). */\n    int priority;                  /*!< Scheduling priority of callback thread (only used with flag RTAUDIO_SCHEDULE_REALTIME). */\n\n    // Default constructor.\n    StreamOptions()\n    : flags(0), numberOfBuffers(0), priority(0) {}\n  };\n\n  //! A static function to determine the current RtAudio version.\n  static std::string getVersion( void );\n\n  //! A static function to determine the available compiled audio APIs.\n  /*!\n    The values returned in the std::vector can be compared against\n    the enumerated list values.  Note that there can be more than one\n    API compiled for certain operating systems.\n  */\n  static void getCompiledApi( std::vector<RtAudio::Api> &apis );\n\n  //! The class constructor.\n  /*!\n    The constructor performs minor initialization tasks.  An exception\n    can be thrown if no API support is compiled.\n\n    If no API argument is specified and multiple API support has been\n    compiled, the default order of use is JACK, ALSA, OSS (Linux\n    systems) and ASIO, DS (Windows systems).\n  */\n  RtAudio( RtAudio::Api api=UNSPECIFIED );\n\n  //! The destructor.\n  /*!\n    If a stream is running or open, it will be stopped and closed\n    automatically.\n  */\n  ~RtAudio();\n\n  //! Returns the audio API specifier for the current instance of RtAudio.\n  RtAudio::Api getCurrentApi( void );\n\n  //! A public function that queries for the number of audio devices available.\n  /*!\n    This function performs a system query of available devices each time it\n    is called, thus supporting devices connected \\e after instantiation. If\n    a system error occurs during processing, a warning will be issued. \n  */\n  unsigned int getDeviceCount( void );\n\n  //! Return an RtAudio::DeviceInfo structure for a specified device number.\n  /*!\n\n    Any device integer between 0 and getDeviceCount() - 1 is valid.\n    If an invalid argument is provided, an RtAudioError (type = INVALID_USE)\n    will be thrown.  If a device is busy or otherwise unavailable, the\n    structure member \"probed\" will have a value of \"false\" and all\n    other members are undefined.  If the specified device is the\n    current default input or output device, the corresponding\n    \"isDefault\" member will have a value of \"true\".\n  */\n  RtAudio::DeviceInfo getDeviceInfo( unsigned int device );\n\n  //! A function that returns the index of the default output device.\n  /*!\n    If the underlying audio API does not provide a \"default\n    device\", or if no devices are available, the return value will be\n    0.  Note that this is a valid device identifier and it is the\n    client's responsibility to verify that a device is available\n    before attempting to open a stream.\n  */\n  unsigned int getDefaultOutputDevice( void );\n\n  //! A function that returns the index of the default input device.\n  /*!\n    If the underlying audio API does not provide a \"default\n    device\", or if no devices are available, the return value will be\n    0.  Note that this is a valid device identifier and it is the\n    client's responsibility to verify that a device is available\n    before attempting to open a stream.\n  */\n  unsigned int getDefaultInputDevice( void );\n\n  //! A public function for opening a stream with the specified parameters.\n  /*!\n    An RtAudioError (type = SYSTEM_ERROR) is thrown if a stream cannot be\n    opened with the specified parameters or an error occurs during\n    processing.  An RtAudioError (type = INVALID_USE) is thrown if any\n    invalid device ID or channel number parameters are specified.\n\n    \\param outputParameters Specifies output stream parameters to use\n           when opening a stream, including a device ID, number of channels,\n           and starting channel number.  For input-only streams, this\n           argument should be NULL.  The device ID is an index value between\n           0 and getDeviceCount() - 1.\n    \\param inputParameters Specifies input stream parameters to use\n           when opening a stream, including a device ID, number of channels,\n           and starting channel number.  For output-only streams, this\n           argument should be NULL.  The device ID is an index value between\n           0 and getDeviceCount() - 1.\n    \\param format An RtAudioFormat specifying the desired sample data format.\n    \\param sampleRate The desired sample rate (sample frames per second).\n    \\param *bufferFrames A pointer to a value indicating the desired\n           internal buffer size in sample frames.  The actual value\n           used by the device is returned via the same pointer.  A\n           value of zero can be specified, in which case the lowest\n           allowable value is determined.\n    \\param callback A client-defined function that will be invoked\n           when input data is available and/or output data is needed.\n    \\param userData An optional pointer to data that can be accessed\n           from within the callback function.\n    \\param options An optional pointer to a structure containing various\n           global stream options, including a list of OR'ed RtAudioStreamFlags\n           and a suggested number of stream buffers that can be used to \n           control stream latency.  More buffers typically result in more\n           robust performance, though at a cost of greater latency.  If a\n           value of zero is specified, a system-specific median value is\n           chosen.  If the RTAUDIO_MINIMIZE_LATENCY flag bit is set, the\n           lowest allowable value is used.  The actual value used is\n           returned via the structure argument.  The parameter is API dependent.\n    \\param errorCallback A client-defined function that will be invoked\n           when an error has occured.\n  */\n  void openStream( RtAudio::StreamParameters *outputParameters,\n                   RtAudio::StreamParameters *inputParameters,\n                   RtAudioFormat format, unsigned int sampleRate,\n                   unsigned int *bufferFrames, RtAudioCallback callback,\n                   void *userData = NULL, RtAudio::StreamOptions *options = NULL, RtAudioErrorCallback errorCallback = NULL );\n\n  //! A function that closes a stream and frees any associated stream memory.\n  /*!\n    If a stream is not open, this function issues a warning and\n    returns (no exception is thrown).\n  */\n  void closeStream( void );\n\n  //! A function that starts a stream.\n  /*!\n    An RtAudioError (type = SYSTEM_ERROR) is thrown if an error occurs\n    during processing.  An RtAudioError (type = INVALID_USE) is thrown if a\n    stream is not open.  A warning is issued if the stream is already\n    running.\n  */\n  void startStream( void );\n\n  //! Stop a stream, allowing any samples remaining in the output queue to be played.\n  /*!\n    An RtAudioError (type = SYSTEM_ERROR) is thrown if an error occurs\n    during processing.  An RtAudioError (type = INVALID_USE) is thrown if a\n    stream is not open.  A warning is issued if the stream is already\n    stopped.\n  */\n  void stopStream( void );\n\n  //! Stop a stream, discarding any samples remaining in the input/output queue.\n  /*!\n    An RtAudioError (type = SYSTEM_ERROR) is thrown if an error occurs\n    during processing.  An RtAudioError (type = INVALID_USE) is thrown if a\n    stream is not open.  A warning is issued if the stream is already\n    stopped.\n  */\n  void abortStream( void );\n\n  //! Returns true if a stream is open and false if not.\n  bool isStreamOpen( void ) const;\n\n  //! Returns true if the stream is running and false if it is stopped or not open.\n  bool isStreamRunning( void ) const;\n\n  //! Returns the number of elapsed seconds since the stream was started.\n  /*!\n    If a stream is not open, an RtAudioError (type = INVALID_USE) will be thrown.\n  */\n  double getStreamTime( void );\n\n  //! Set the stream time to a time in seconds greater than or equal to 0.0.\n  /*!\n    If a stream is not open, an RtAudioError (type = INVALID_USE) will be thrown.\n  */\n  void setStreamTime( double time );\n\n  //! Returns the internal stream latency in sample frames.\n  /*!\n    The stream latency refers to delay in audio input and/or output\n    caused by internal buffering by the audio system and/or hardware.\n    For duplex streams, the returned value will represent the sum of\n    the input and output latencies.  If a stream is not open, an\n    RtAudioError (type = INVALID_USE) will be thrown.  If the API does not\n    report latency, the return value will be zero.\n  */\n  long getStreamLatency( void );\n\n //! Returns actual sample rate in use by the stream.\n /*!\n   On some systems, the sample rate used may be slightly different\n   than that specified in the stream parameters.  If a stream is not\n   open, an RtAudioError (type = INVALID_USE) will be thrown.\n */\n  unsigned int getStreamSampleRate( void );\n\n  //! Specify whether warning messages should be printed to stderr.\n  void showWarnings( bool value = true );\n\n protected:\n\n  void openRtApi( RtAudio::Api api );\n  RtApi *rtapi_;\n};\n\n// Operating system dependent thread functionality.\n#if defined(__WINDOWS_DS__) || defined(__WINDOWS_ASIO__) || defined(__WINDOWS_WASAPI__)\n\n  #ifndef NOMINMAX\n    #define NOMINMAX\n  #endif\n  #include <windows.h>\n  #include <process.h>\n\n  typedef uintptr_t ThreadHandle;\n  typedef CRITICAL_SECTION StreamMutex;\n\n#elif defined(__LINUX_ALSA__) || defined(__LINUX_PULSE__) || defined(__UNIX_JACK__) || defined(__LINUX_OSS__) || defined(__MACOSX_CORE__)\n  // Using pthread library for various flavors of unix.\n  #include <pthread.h>\n\n  typedef pthread_t ThreadHandle;\n  typedef pthread_mutex_t StreamMutex;\n\n#else // Setup for \"dummy\" behavior\n\n  #define __RTAUDIO_DUMMY__\n  typedef int ThreadHandle;\n  typedef int StreamMutex;\n\n#endif\n\n// This global structure type is used to pass callback information\n// between the private RtAudio stream structure and global callback\n// handling functions.\nstruct CallbackInfo {\n  void *object;    // Used as a \"this\" pointer.\n  ThreadHandle thread;\n  void *callback;\n  void *userData;\n  void *errorCallback;\n  void *apiInfo;   // void pointer for API specific callback information\n  bool isRunning;\n  bool doRealtime;\n  int priority;\n\n  // Default constructor.\n  CallbackInfo()\n  :object(0), callback(0), userData(0), errorCallback(0), apiInfo(0), isRunning(false), doRealtime(false), priority(0) {}\n};\n\n// **************************************************************** //\n//\n// RtApi class declaration.\n//\n// Subclasses of RtApi contain all API- and OS-specific code necessary\n// to fully implement the RtAudio API.\n//\n// Note that RtApi is an abstract base class and cannot be\n// explicitly instantiated.  The class RtAudio will create an\n// instance of an RtApi subclass (RtApiOss, RtApiAlsa,\n// RtApiJack, RtApiCore, RtApiDs, or RtApiAsio).\n//\n// **************************************************************** //\n\n#pragma pack(push, 1)\nclass S24 {\n\n protected:\n  unsigned char c3[3];\n\n public:\n  S24() {}\n\n  S24& operator = ( const int& i ) {\n    c3[0] = (i & 0x000000ff);\n    c3[1] = (i & 0x0000ff00) >> 8;\n    c3[2] = (i & 0x00ff0000) >> 16;\n    return *this;\n  }\n\n  S24( const S24& v ) { *this = v; }\n  S24( const double& d ) { *this = (int) d; }\n  S24( const float& f ) { *this = (int) f; }\n  S24( const signed short& s ) { *this = (int) s; }\n  S24( const char& c ) { *this = (int) c; }\n\n  int asInt() {\n    int i = c3[0] | (c3[1] << 8) | (c3[2] << 16);\n    if (i & 0x800000) i |= ~0xffffff;\n    return i;\n  }\n};\n#pragma pack(pop)\n\n#if defined( HAVE_GETTIMEOFDAY )\n  #include <sys/time.h>\n#endif\n\n#include <sstream>\n\nclass RTAUDIO_DLL_PUBLIC RtApi\n{\npublic:\n\n  RtApi();\n  virtual ~RtApi();\n  virtual RtAudio::Api getCurrentApi( void ) = 0;\n  virtual unsigned int getDeviceCount( void ) = 0;\n  virtual RtAudio::DeviceInfo getDeviceInfo( unsigned int device ) = 0;\n  virtual unsigned int getDefaultInputDevice( void );\n  virtual unsigned int getDefaultOutputDevice( void );\n  void openStream( RtAudio::StreamParameters *outputParameters,\n                   RtAudio::StreamParameters *inputParameters,\n                   RtAudioFormat format, unsigned int sampleRate,\n                   unsigned int *bufferFrames, RtAudioCallback callback,\n                   void *userData, RtAudio::StreamOptions *options,\n                   RtAudioErrorCallback errorCallback );\n  virtual void closeStream( void );\n  virtual void startStream( void ) = 0;\n  virtual void stopStream( void ) = 0;\n  virtual void abortStream( void ) = 0;\n  long getStreamLatency( void );\n  unsigned int getStreamSampleRate( void );\n  virtual double getStreamTime( void );\n  virtual void setStreamTime( double time );\n  bool isStreamOpen( void ) const { return stream_.state != STREAM_CLOSED; }\n  bool isStreamRunning( void ) const { return stream_.state == STREAM_RUNNING; }\n  void showWarnings( bool value ) { showWarnings_ = value; }\n\n\nprotected:\n\n  static const unsigned int MAX_SAMPLE_RATES;\n  static const unsigned int SAMPLE_RATES[];\n\n  enum { FAILURE, SUCCESS };\n\n  enum StreamState {\n    STREAM_STOPPED,\n    STREAM_STOPPING,\n    STREAM_RUNNING,\n    STREAM_CLOSED = -50\n  };\n\n  enum StreamMode {\n    OUTPUT,\n    INPUT,\n    DUPLEX,\n    UNINITIALIZED = -75\n  };\n\n  // A protected structure used for buffer conversion.\n  struct ConvertInfo {\n    int channels;\n    int inJump, outJump;\n    RtAudioFormat inFormat, outFormat;\n    std::vector<int> inOffset;\n    std::vector<int> outOffset;\n  };\n\n  // A protected structure for audio streams.\n  struct RtApiStream {\n    unsigned int device[2];    // Playback and record, respectively.\n    void *apiHandle;           // void pointer for API specific stream handle information\n    StreamMode mode;           // OUTPUT, INPUT, or DUPLEX.\n    StreamState state;         // STOPPED, RUNNING, or CLOSED\n    char *userBuffer[2];       // Playback and record, respectively.\n    char *deviceBuffer;\n    bool doConvertBuffer[2];   // Playback and record, respectively.\n    bool userInterleaved;\n    bool deviceInterleaved[2]; // Playback and record, respectively.\n    bool doByteSwap[2];        // Playback and record, respectively.\n    unsigned int sampleRate;\n    unsigned int bufferSize;\n    unsigned int nBuffers;\n    unsigned int nUserChannels[2];    // Playback and record, respectively.\n    unsigned int nDeviceChannels[2];  // Playback and record channels, respectively.\n    unsigned int channelOffset[2];    // Playback and record, respectively.\n    unsigned long latency[2];         // Playback and record, respectively.\n    RtAudioFormat userFormat;\n    RtAudioFormat deviceFormat[2];    // Playback and record, respectively.\n    StreamMutex mutex;\n    CallbackInfo callbackInfo;\n    ConvertInfo convertInfo[2];\n    double streamTime;         // Number of elapsed seconds since the stream started.\n\n#if defined(HAVE_GETTIMEOFDAY)\n    struct timeval lastTickTimestamp;\n#endif\n\n    RtApiStream()\n      :apiHandle(0), deviceBuffer(0) { device[0] = 11111; device[1] = 11111; }\n  };\n\n  typedef S24 Int24;\n  typedef signed short Int16;\n  typedef signed int Int32;\n  typedef float Float32;\n  typedef double Float64;\n\n  std::ostringstream errorStream_;\n  std::string errorText_;\n  bool showWarnings_;\n  RtApiStream stream_;\n  bool firstErrorOccurred_;\n\n  /*!\n    Protected, api-specific method that attempts to open a device\n    with the given parameters.  This function MUST be implemented by\n    all subclasses.  If an error is encountered during the probe, a\n    \"warning\" message is reported and FAILURE is returned. A\n    successful probe is indicated by a return value of SUCCESS.\n  */\n  virtual bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, \n                                unsigned int firstChannel, unsigned int sampleRate,\n                                RtAudioFormat format, unsigned int *bufferSize,\n                                RtAudio::StreamOptions *options );\n\n  //! A protected function used to increment the stream time.\n  void tickStreamTime( void );\n\n  //! Protected common method to clear an RtApiStream structure.\n  void clearStreamInfo();\n\n  /*!\n    Protected common method that throws an RtAudioError (type =\n    INVALID_USE) if a stream is not open.\n  */\n  void verifyStream( void );\n\n  //! Protected common error method to allow global control over error handling.\n  void error( RtAudioError::Type type );\n\n  /*!\n    Protected method used to perform format, channel number, and/or interleaving\n    conversions between the user and device buffers.\n  */\n  void convertBuffer( char *outBuffer, char *inBuffer, ConvertInfo &info );\n\n  //! Protected common method used to perform byte-swapping on buffers.\n  void byteSwapBuffer( char *buffer, unsigned int samples, RtAudioFormat format );\n\n  //! Protected common method that returns the number of bytes for a given format.\n  unsigned int formatBytes( RtAudioFormat format );\n\n  //! Protected common method that sets up the parameters for buffer conversion.\n  void setConvertInfo( StreamMode mode, unsigned int firstChannel );\n};\n\n// **************************************************************** //\n//\n// Inline RtAudio definitions.\n//\n// **************************************************************** //\n\ninline RtAudio::Api RtAudio :: getCurrentApi( void ) { return rtapi_->getCurrentApi(); }\ninline unsigned int RtAudio :: getDeviceCount( void ) { return rtapi_->getDeviceCount(); }\ninline RtAudio::DeviceInfo RtAudio :: getDeviceInfo( unsigned int device ) { return rtapi_->getDeviceInfo( device ); }\ninline unsigned int RtAudio :: getDefaultInputDevice( void ) { return rtapi_->getDefaultInputDevice(); }\ninline unsigned int RtAudio :: getDefaultOutputDevice( void ) { return rtapi_->getDefaultOutputDevice(); }\ninline void RtAudio :: closeStream( void ) { return rtapi_->closeStream(); }\ninline void RtAudio :: startStream( void ) { return rtapi_->startStream(); }\ninline void RtAudio :: stopStream( void )  { return rtapi_->stopStream(); }\ninline void RtAudio :: abortStream( void ) { return rtapi_->abortStream(); }\ninline bool RtAudio :: isStreamOpen( void ) const { return rtapi_->isStreamOpen(); }\ninline bool RtAudio :: isStreamRunning( void ) const { return rtapi_->isStreamRunning(); }\ninline long RtAudio :: getStreamLatency( void ) { return rtapi_->getStreamLatency(); }\ninline unsigned int RtAudio :: getStreamSampleRate( void ) { return rtapi_->getStreamSampleRate(); }\ninline double RtAudio :: getStreamTime( void ) { return rtapi_->getStreamTime(); }\ninline void RtAudio :: setStreamTime( double time ) { return rtapi_->setStreamTime( time ); }\ninline void RtAudio :: showWarnings( bool value ) { rtapi_->showWarnings( value ); }\n\n// RtApi Subclass prototypes.\n\n#if defined(__MACOSX_CORE__)\n\n#include <CoreAudio/AudioHardware.h>\n\nclass RtApiCore: public RtApi\n{\npublic:\n\n  RtApiCore();\n  ~RtApiCore();\n  RtAudio::Api getCurrentApi( void ) { return RtAudio::MACOSX_CORE; }\n  unsigned int getDeviceCount( void );\n  RtAudio::DeviceInfo getDeviceInfo( unsigned int device );\n  unsigned int getDefaultOutputDevice( void );\n  unsigned int getDefaultInputDevice( void );\n  void closeStream( void );\n  void startStream( void );\n  void stopStream( void );\n  void abortStream( void );\n  long getStreamLatency( void );\n\n  // This function is intended for internal use only.  It must be\n  // public because it is called by the internal callback handler,\n  // which is not a member of RtAudio.  External use of this function\n  // will most likely produce highly undesireable results!\n  bool callbackEvent( AudioDeviceID deviceId,\n                      const AudioBufferList *inBufferList,\n                      const AudioBufferList *outBufferList );\n\n  private:\n\n  bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, \n                        unsigned int firstChannel, unsigned int sampleRate,\n                        RtAudioFormat format, unsigned int *bufferSize,\n                        RtAudio::StreamOptions *options );\n  static const char* getErrorCode( OSStatus code );\n};\n\n#endif\n\n#if defined(__UNIX_JACK__)\n\nclass RtApiJack: public RtApi\n{\npublic:\n\n  RtApiJack();\n  ~RtApiJack();\n  RtAudio::Api getCurrentApi( void ) { return RtAudio::UNIX_JACK; }\n  unsigned int getDeviceCount( void );\n  RtAudio::DeviceInfo getDeviceInfo( unsigned int device );\n  void closeStream( void );\n  void startStream( void );\n  void stopStream( void );\n  void abortStream( void );\n  long getStreamLatency( void );\n\n  // This function is intended for internal use only.  It must be\n  // public because it is called by the internal callback handler,\n  // which is not a member of RtAudio.  External use of this function\n  // will most likely produce highly undesireable results!\n  bool callbackEvent( unsigned long nframes );\n\n  private:\n\n  bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, \n                        unsigned int firstChannel, unsigned int sampleRate,\n                        RtAudioFormat format, unsigned int *bufferSize,\n                        RtAudio::StreamOptions *options );\n\n  bool shouldAutoconnect_;\n};\n\n#endif\n\n#if defined(__WINDOWS_ASIO__)\n\nclass RtApiAsio: public RtApi\n{\npublic:\n\n  RtApiAsio();\n  ~RtApiAsio();\n  RtAudio::Api getCurrentApi( void ) { return RtAudio::WINDOWS_ASIO; }\n  unsigned int getDeviceCount( void );\n  RtAudio::DeviceInfo getDeviceInfo( unsigned int device );\n  void closeStream( void );\n  void startStream( void );\n  void stopStream( void );\n  void abortStream( void );\n  long getStreamLatency( void );\n\n  // This function is intended for internal use only.  It must be\n  // public because it is called by the internal callback handler,\n  // which is not a member of RtAudio.  External use of this function\n  // will most likely produce highly undesireable results!\n  bool callbackEvent( long bufferIndex );\n\n  private:\n\n  std::vector<RtAudio::DeviceInfo> devices_;\n  void saveDeviceInfo( void );\n  bool coInitialized_;\n  bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, \n                        unsigned int firstChannel, unsigned int sampleRate,\n                        RtAudioFormat format, unsigned int *bufferSize,\n                        RtAudio::StreamOptions *options );\n};\n\n#endif\n\n#if defined(__WINDOWS_DS__)\n\nclass RtApiDs: public RtApi\n{\npublic:\n\n  RtApiDs();\n  ~RtApiDs();\n  RtAudio::Api getCurrentApi( void ) { return RtAudio::WINDOWS_DS; }\n  unsigned int getDeviceCount( void );\n  unsigned int getDefaultOutputDevice( void );\n  unsigned int getDefaultInputDevice( void );\n  RtAudio::DeviceInfo getDeviceInfo( unsigned int device );\n  void closeStream( void );\n  void startStream( void );\n  void stopStream( void );\n  void abortStream( void );\n  long getStreamLatency( void );\n\n  // This function is intended for internal use only.  It must be\n  // public because it is called by the internal callback handler,\n  // which is not a member of RtAudio.  External use of this function\n  // will most likely produce highly undesireable results!\n  void callbackEvent( void );\n\n  private:\n\n  bool coInitialized_;\n  bool buffersRolling;\n  long duplexPrerollBytes;\n  std::vector<struct DsDevice> dsDevices;\n  bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, \n                        unsigned int firstChannel, unsigned int sampleRate,\n                        RtAudioFormat format, unsigned int *bufferSize,\n                        RtAudio::StreamOptions *options );\n};\n\n#endif\n\n#if defined(__WINDOWS_WASAPI__)\n\nstruct IMMDeviceEnumerator;\n\nclass RtApiWasapi : public RtApi\n{\npublic:\n  RtApiWasapi();\n  ~RtApiWasapi();\n\n  RtAudio::Api getCurrentApi( void ) { return RtAudio::WINDOWS_WASAPI; }\n  unsigned int getDeviceCount( void );\n  RtAudio::DeviceInfo getDeviceInfo( unsigned int device );\n  unsigned int getDefaultOutputDevice( void );\n  unsigned int getDefaultInputDevice( void );\n  void closeStream( void );\n  void startStream( void );\n  void stopStream( void );\n  void abortStream( void );\n\nprivate:\n  bool coInitialized_;\n  IMMDeviceEnumerator* deviceEnumerator_;\n\n  bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels,\n                        unsigned int firstChannel, unsigned int sampleRate,\n                        RtAudioFormat format, unsigned int* bufferSize,\n                        RtAudio::StreamOptions* options );\n\n  static DWORD WINAPI runWasapiThread( void* wasapiPtr );\n  static DWORD WINAPI stopWasapiThread( void* wasapiPtr );\n  static DWORD WINAPI abortWasapiThread( void* wasapiPtr );\n  void wasapiThread();\n};\n\n#endif\n\n#if defined(__LINUX_ALSA__)\n\nclass RtApiAlsa: public RtApi\n{\npublic:\n\n  RtApiAlsa();\n  ~RtApiAlsa();\n  RtAudio::Api getCurrentApi() { return RtAudio::LINUX_ALSA; }\n  unsigned int getDeviceCount( void );\n  RtAudio::DeviceInfo getDeviceInfo( unsigned int device );\n  void closeStream( void );\n  void startStream( void );\n  void stopStream( void );\n  void abortStream( void );\n\n  // This function is intended for internal use only.  It must be\n  // public because it is called by the internal callback handler,\n  // which is not a member of RtAudio.  External use of this function\n  // will most likely produce highly undesireable results!\n  void callbackEvent( void );\n\n  private:\n\n  std::vector<RtAudio::DeviceInfo> devices_;\n  void saveDeviceInfo( void );\n  bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, \n                        unsigned int firstChannel, unsigned int sampleRate,\n                        RtAudioFormat format, unsigned int *bufferSize,\n                        RtAudio::StreamOptions *options );\n};\n\n#endif\n\n#if defined(__LINUX_PULSE__)\n\nclass RtApiPulse: public RtApi\n{\npublic:\n  ~RtApiPulse();\n  RtAudio::Api getCurrentApi() { return RtAudio::LINUX_PULSE; }\n  unsigned int getDeviceCount( void );\n  RtAudio::DeviceInfo getDeviceInfo( unsigned int device );\n  void closeStream( void );\n  void startStream( void );\n  void stopStream( void );\n  void abortStream( void );\n\n  // This function is intended for internal use only.  It must be\n  // public because it is called by the internal callback handler,\n  // which is not a member of RtAudio.  External use of this function\n  // will most likely produce highly undesireable results!\n  void callbackEvent( void );\n\n  private:\n\n  std::vector<RtAudio::DeviceInfo> devices_;\n  void saveDeviceInfo( void );\n  bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels,\n                        unsigned int firstChannel, unsigned int sampleRate,\n                        RtAudioFormat format, unsigned int *bufferSize,\n                        RtAudio::StreamOptions *options );\n};\n\n#endif\n\n#if defined(__LINUX_OSS__)\n\nclass RtApiOss: public RtApi\n{\npublic:\n\n  RtApiOss();\n  ~RtApiOss();\n  RtAudio::Api getCurrentApi() { return RtAudio::LINUX_OSS; }\n  unsigned int getDeviceCount( void );\n  RtAudio::DeviceInfo getDeviceInfo( unsigned int device );\n  void closeStream( void );\n  void startStream( void );\n  void stopStream( void );\n  void abortStream( void );\n\n  // This function is intended for internal use only.  It must be\n  // public because it is called by the internal callback handler,\n  // which is not a member of RtAudio.  External use of this function\n  // will most likely produce highly undesireable results!\n  void callbackEvent( void );\n\n  private:\n\n  bool probeDeviceOpen( unsigned int device, StreamMode mode, unsigned int channels, \n                        unsigned int firstChannel, unsigned int sampleRate,\n                        RtAudioFormat format, unsigned int *bufferSize,\n                        RtAudio::StreamOptions *options );\n};\n\n#endif\n\n#if defined(__RTAUDIO_DUMMY__)\n\nclass RtApiDummy: public RtApi\n{\npublic:\n\n  RtApiDummy() { errorText_ = \"RtApiDummy: This class provides no functionality.\"; error( RtAudioError::WARNING ); }\n  RtAudio::Api getCurrentApi( void ) { return RtAudio::RTAUDIO_DUMMY; }\n  unsigned int getDeviceCount( void ) { return 0; }\n  RtAudio::DeviceInfo getDeviceInfo( unsigned int /*device*/ ) { RtAudio::DeviceInfo info; return info; }\n  void closeStream( void ) {}\n  void startStream( void ) {}\n  void stopStream( void ) {}\n  void abortStream( void ) {}\n\n  private:\n\n  bool probeDeviceOpen( unsigned int /*device*/, StreamMode /*mode*/, unsigned int /*channels*/, \n                        unsigned int /*firstChannel*/, unsigned int /*sampleRate*/,\n                        RtAudioFormat /*format*/, unsigned int * /*bufferSize*/,\n                        RtAudio::StreamOptions * /*options*/ ) { return false; }\n};\n\n#endif\n\n#endif\n\n// Indentation settings for Vim and Emacs\n//\n// Local Variables:\n// c-basic-offset: 2\n// indent-tabs-mode: nil\n// End:\n//\n// vim: et sts=2 sw=2\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/autogen.sh",
    "content": "#!/bin/sh\n# Run this to generate all the initial makefiles, etc.\n\nsrcdir=`dirname $0`\ntest -z \"$srcdir\" && srcdir=.\n\nDIE=0\n\nif test -z \"$*\"; then\n  echo \"**Warning**: I am going to run \\`configure' with arguments for\"\n  echo \"developer/maintainer mode.  If you wish to pass extra arguments,\"\n  echo \"(such as --prefix), please specify them on the \\`$0'\"\n  echo \"command line.\"\n  echo \"If you wish to run configure yourself, please specify --no-configure.\"\n  echo\nfi\n\n(test -f $srcdir/configure.ac) || {\n    echo -n \"**Error**: Directory \"\\`$srcdir\\'\" does not look like the\"\n    echo \" top-level package directory\"\n    exit 1\n}\n\n# Make some directories required by automake, if they don't exist\nif ! [ -d config ]; then mkdir -v config; fi\nif ! [ -d m4     ]; then mkdir -v m4;     fi\n\nif ! autoreconf --version </dev/null >/dev/null 2>&1\nthen\n\n(autoconf --version) < /dev/null > /dev/null 2>&1 || {\n  echo\n  echo \"**Error**: You must have \\`autoconf' installed.\"\n  echo \"Download the appropriate package for your distribution,\"\n  echo \"or get the source tarball at ftp://ftp.gnu.org/pub/gnu/\"\n  DIE=1\n}\n\n(grep \"^LT_INIT\" $srcdir/configure.ac >/dev/null) && {\n  (libtoolize --version) < /dev/null > /dev/null 2>&1 \\\n\t  && LIBTOOLIZE=libtoolize || {\n\t(glibtoolize --version) < /dev/null > /dev/null 2>&1 \\\n\t\t&& LIBTOOLIZE=glibtoolize || {\n      echo\n      echo \"**Error**: You must have \\`libtool' installed.\"\n      echo \"You can get it from: ftp://ftp.gnu.org/pub/gnu/\"\n      DIE=1\n    }\n  }\n}\n\n(automake --version) < /dev/null > /dev/null 2>&1 || {\n  echo\n  echo \"**Error**: You must have \\`automake' installed.\"\n  echo \"You can get it from: ftp://ftp.gnu.org/pub/gnu/\"\n  DIE=1\n  NO_AUTOMAKE=yes\n}\n\n\n# if no automake, don't bother testing for aclocal\ntest -n \"$NO_AUTOMAKE\" || (aclocal --version) < /dev/null > /dev/null 2>&1 || {\n  echo\n  echo \"**Error**: Missing \\`aclocal'.  The version of \\`automake'\"\n  echo \"installed doesn't appear recent enough.\"\n  echo \"You can get automake from ftp://ftp.gnu.org/pub/gnu/\"\n  DIE=1\n}\n\nif test \"$DIE\" -eq 1; then\n  exit 1\nfi\n\ncase $CC in\nxlc )\n  am_opt=--include-deps;;\nesac\n\necho \"Running aclocal $aclocalinclude ...\"\naclocal $ACLOCAL_FLAGS || exit 1\necho \"Running $LIBTOOLIZE ...\"\n$LIBTOOLIZE || exit 1\necho \"Running automake --gnu $am_opt ...\"\nautomake --add-missing --gnu $am_opt || exit 1\necho \"Running autoconf ...\"\nautoconf || exit 1\n\nelse # autoreconf instead\n\n    echo \"Running autoreconf --verbose --install ...\"\n    autoreconf --verbose --install || exit 1\n\nfi\n\nif ( echo \"$@\" | grep -q -e \"--no-configure\" ); then\n  NOCONFIGURE=1\nfi\n\nconf_flags=\"--enable-maintainer-mode --enable-debug --disable-silent-rules\"\n\nif test x$NOCONFIGURE = x; then\n  echo Running $srcdir/configure $conf_flags \"$@\" ...\n  $srcdir/configure $conf_flags \"$@\" \\\n  && echo Now type \\`make\\' to compile. || exit 1\nelse\n  echo Skipping configure process.\nfi\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/configure.ac",
    "content": "# Process this file with autoconf to produce a configure script.\nAC_INIT(RtAudio, 5.0.0, gary@music.mcgill.ca, rtaudio)\nAC_CONFIG_AUX_DIR(config)\nAC_CONFIG_SRCDIR(RtAudio.cpp)\nAC_CONFIG_FILES([rtaudio.pc Makefile tests/Makefile doc/Makefile doc/doxygen/Doxyfile])\nAM_INIT_AUTOMAKE([1.14 -Wall -Werror foreign subdir-objects])\n\n# libtool version: current:revision:age\n#\n# If the library source code has changed at all since the last update, then\n# increment revision (`c:r:a' becomes `c:r+1:a').\n#\n# If any interfaces have been added, removed, or changed since the last update,\n# increment current, and set revision to 0.\n#\n# If any interfaces have been added since the last public release, then\n# increment age.\n#\n# If any interfaces have been removed since the last public release, then set\n# age to 0.\nm4_define([lt_current], 6)\nm4_define([lt_revision], 0)\nm4_define([lt_age], 0)\n\nm4_define([lt_version_info], [lt_current:lt_revision:lt_age])\nm4_define([lt_current_minus_age], [m4_eval(lt_current - lt_age)])\n\nSO_VERSION=lt_version_info\nAC_SUBST(SO_VERSION)\nAC_SUBST(api)\nAC_SUBST(req)\nAC_SUBST(visibility)\n\napi=\"\"\nreq=\"\"\nuse_asio=\"\"\n\n\n# configure flags\nAC_ARG_ENABLE(debug, [AS_HELP_STRING([--enable-debug],[enable various debug output])])\nAC_ARG_WITH(jack, [AS_HELP_STRING([--with-jack], [choose JACK server support (mac and linux only)])])\nAC_ARG_WITH(alsa, [AS_HELP_STRING([--with-alsa], [choose native ALSA API support (linux only)])])\nAC_ARG_WITH(pulse, [AS_HELP_STRING([--with-pulse], [choose PulseAudio API support (linux only)])])\nAC_ARG_WITH(oss, [AS_HELP_STRING([--with-oss], [choose OSS API support (unixes)])])\nAC_ARG_WITH(core, [AS_HELP_STRING([--with-core], [choose CoreAudio API support (mac only)])])\nAC_ARG_WITH(asio, [AS_HELP_STRING([--with-asio], [choose ASIO API support (win32 only)])])\nAC_ARG_WITH(ds, [AS_HELP_STRING([--with-ds], [choose DirectSound API support (win32 only)])])\nAC_ARG_WITH(wasapi, [AS_HELP_STRING([--with-wasapi], [choose Windows Audio Session API support (win32 only)])])\n\n# Check version number coherency between RtAudio.h and configure.ac\nAC_MSG_CHECKING([that version numbers are coherent])\nRTAUDIO_VERSION=`sed -n 's/#define RTAUDIO_VERSION \"\\(.*\\)\"/\\1/p' $srcdir/RtAudio.h`\nAS_IF([test \"x$RTAUDIO_VERSION\" != \"x$PACKAGE_VERSION\"],[\n   AC_MSG_RESULT([no])\n   AC_MSG_FAILURE([testing RTAUDIO_VERSION==PACKAGE_VERSION failed, check that RtAudio.h defines RTAUDIO_VERSION as \"$PACKAGE_VERSION\" or that the first line of configure.ac has been updated.])\n   ],[\n   AC_MSG_RESULT([yes])\n])\n# Enable some nice automake features if they are available\nm4_ifdef([AM_MAINTAINER_MODE], [AM_MAINTAINER_MODE])\nm4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])\n\n# Fill GXX with something before test.\nGXX=\"no\"\n# if the user did not provide any CXXFLAGS, we can override them\nAS_IF([test \"x$CXXFLAGS\" = \"x\" ], [override_cxx=yes], [override_cxx=no])\nAS_IF([test \"x$CFLAGS\" = \"x\" ], [override_c=yes], [override_c=no])\n\n# Checks for programs.\nAC_PROG_CXX(g++ CC c++ cxx)\nAM_PROG_AR\nAC_PATH_PROG(AR, ar, no)\nAS_IF([test \"x${AR}\" = \"xno\" ], [\n    AC_MSG_ERROR([Could not find ar - needed to create a library])\n])\n\n# Initialize libtool\nLT_INIT([win32-dll])\nAC_CONFIG_MACRO_DIR([m4])\n\n# Checks for header files.\nAC_HEADER_STDC\nAC_CHECK_HEADERS(sys/ioctl.h unistd.h)\n\n# Check compiler and use -Wall if gnu\nAS_IF([test \"x${GXX}\" = \"xyes\" ], [\n  CXXFLAGS=\"-Wall -Wextra ${CXXFLAGS}\"\n  AS_IF([ test \"x${enable_debug}\" = \"xyes\" ], [\n    # Add -Werror in debug mode\n    CXXFLAGS=\"-Werror ${CXXFLAGS}\"\n  ], [\n    # hide private symbols in non-debug mode\n    visibility=\"-fvisibility=hidden\"\n  ])\n])\n\n# Check for debug\nAC_MSG_CHECKING([whether to compile debug version])\ndebugflags=\"\"\nAS_CASE([${enable_debug}],\n  [ yes ], [\n    AC_MSG_RESULT([yes])\n    AC_DEFINE([__RTAUDIO_DEBUG__])\n    debugflags=\"${debugflags} -g -O0\"\n    object_path=Debug\n  ],\n  [ no ], [\n    AC_MSG_RESULT([no!])\n    debugflags=\"${debugflags} -O3\"\n  ], [\n    AC_MSG_RESULT([no])\n  ])\n\n# For debugging and optimization ... overwrite default because it has both -g and -O2\nAS_IF([test \"x$debugflags\" != x],\n  AS_IF([test \"x$override_cxx\" = \"xyes\" ], CXXFLAGS=\"$CXXFLAGS $debugflags\", CXXFLAGS=\"$debugflags $CXXFLAGS\")\n  AS_IF([test \"x$override_c\" = \"xyes\" ], CFLAGS=\"$CFLAGS $debugflags\", CFLAGS=\"$debugflags $CFLAGS\")\n  )\n\n\n# Checks for functions\nAC_CHECK_FUNC(gettimeofday, [cppflag=\"$cppflag -DHAVE_GETTIMEOFDAY\"], )\n\n# Checks for doxygen\nAC_CHECK_PROG( DOXYGEN, [doxygen], [doxygen] )\nAM_CONDITIONAL( MAKE_DOC, [test \"x${DOXYGEN}\" != x ] )\n\n# Copy doc files to build dir if necessary\nAC_CONFIG_LINKS( [doc/release.txt:doc/release.txt] )\nAC_CONFIG_LINKS( [doc/doxygen/footer.html:doc/doxygen/footer.html] )\nAC_CONFIG_LINKS( [doc/doxygen/error.txt:doc/doxygen/error.txt] )\nAC_CONFIG_LINKS( [doc/doxygen/tutorial.txt:doc/doxygen/tutorial.txt] )\nAC_CONFIG_LINKS( [doc/doxygen/compiling.txt:doc/doxygen/compiling.txt] )\nAC_CONFIG_LINKS( [doc/doxygen/acknowledge.txt:doc/doxygen/acknowledge.txt] )\nAC_CONFIG_LINKS( [doc/doxygen/license.txt:doc/doxygen/license.txt] )\nAC_CONFIG_LINKS( [doc/doxygen/header.html:doc/doxygen/header.html] )\nAC_CONFIG_LINKS( [doc/doxygen/duplex.txt:doc/doxygen/duplex.txt] )\nAC_CONFIG_LINKS( [doc/doxygen/settings.txt:doc/doxygen/settings.txt] )\nAC_CONFIG_LINKS( [doc/doxygen/probe.txt:doc/doxygen/probe.txt] )\nAC_CONFIG_LINKS( [doc/doxygen/playback.txt:doc/doxygen/playback.txt] )\nAC_CONFIG_LINKS( [doc/doxygen/multi.txt:doc/doxygen/multi.txt] )\nAC_CONFIG_LINKS( [doc/doxygen/recording.txt:doc/doxygen/recording.txt] )\nAC_CONFIG_LINKS( [doc/doxygen/apinotes.txt:doc/doxygen/apinotes.txt] )\nAC_CONFIG_LINKS( [doc/images/mcgill.gif:doc/images/mcgill.gif] )\nAC_CONFIG_LINKS( [doc/images/ccrma.gif:doc/images/ccrma.gif] )\n\n# Checks for package options and external software\nAC_CANONICAL_HOST\n\nAC_MSG_CHECKING([for audio API])\n\nAS_IF([test \"x$with_jack\" = \"xyes\"], [\n  AC_MSG_RESULT([using JACK])\n  AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR([JACK support requires the jack library!]))\n  api=\"$api -D__UNIX_JACK__\"\n])\n\n\nAS_CASE([$host],\n  [*-*-netbsd*],\n  AS_IF([test \"x$api\" = \"x\"], [\n    AC_MSG_RESULT([using OSS])\n    api=\"$api -D__LINUX_OSS__\"\n    AC_CHECK_LIB(ossaudio, main, , AC_MSG_ERROR([RtAudio requires the ossaudio library]))\n    AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR([RtAudio requires the pthread library!]))\n  ]),\n  [*-*-freebsd*],\n  AS_IF([test \"x$api\" = \"x\"], [\n    AC_MSG_RESULT([using OSS])\n    api=\"$api -D__LINUX_OSS__\"\n    AC_CHECK_LIB(ossaudio, main, , AC_MSG_ERROR([RtAudio requires the ossaudio library]))\n    AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR([RtAudio requires the pthread library!]))\n  ]),\n  [*-*-linux*], [\n  # Look for ALSA flag\n  AS_IF([test \"x$with_alsa\" = \"xyes\"], [\n    AC_MSG_RESULT([using ALSA])\n    api=\"$api -D__LINUX_ALSA__\"\n    req=\"$req alsa\"\n    AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR([ALSA support requires the asound library!]))\n  ])\n  # Look for PULSE flag\n  AS_IF([test \"x$with_pulse\" = \"xyes\"], [\n    AC_MSG_RESULT([using PulseAudio])\n    api=\"$api -D__LINUX_PULSE__\"\n    req=\"$req libpulse-simple\"\n    AC_CHECK_LIB(pulse-simple, pa_simple_flush, , AC_MSG_ERROR([PulseAudio support requires the pulse-simple library!]))\n  ])\n\n  # Look for OSS flag\n  AS_IF([test \"x$with_oss\" = \"xyes\"], [\n    AC_MSG_RESULT([using OSS])\n    api=\"$api -D__LINUX_OSS__\"\n  ])\n\n  # If no audio api flags specified, use ALSA\n  AS_IF([test \"x$api\" = \"x\" ], [\n    AC_MSG_RESULT([using ALSA])\n    api=\"${api} -D__LINUX_ALSA__\"\n    req=\"${req} alsa\"\n    AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR([ALSA support requires the asound library!]))\n  ])\n  AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR([RtAudio requires the pthread library!]))\n  ],\n  [*-apple*],[\n  # Look for Core flag\n  AS_IF([test \"x$with_core\" = \"xyes\"], [\n    AC_MSG_RESULT([using CoreAudio])\n    api=\"$api -D__MACOSX_CORE__\"\n    AC_CHECK_HEADER(CoreAudio/CoreAudio.h, [], [AC_MSG_ERROR([CoreAudio header files not found!])] )\n    LIBS=\"$LIBS -framework CoreAudio -framework CoreFoundation\"\n  ])\n  # If no audio api flags specified, use CoreAudio\n  AS_IF([test \"x$api\" = \"x\" ], [\n    AC_MSG_RESULT([using CoreAudio])\n    api=\"${api} -D__MACOSX_CORE__\"\n    AC_CHECK_HEADER(CoreAudio/CoreAudio.h,\n      [],\n      [AC_MSG_ERROR([CoreAudio header files not found!])] )\n    LIBS=\"LIBS -framework CoreAudio -framework CoreFoundation\"\n  ])\n  AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR([RtAudio requires the pthread library!]))\n  ],\n  [*-mingw32*],[\n  AS_IF([test \"x$with_asio\" = \"xyes\" ], [\n    AC_MSG_RESULT([using ASIO])\n    api=\"$api -D__WINDOWS_ASIO__\"\n    use_asio=yes\n    CPPFLAGS=\"-I$srcdir/include $CPPFLAGS\"\n  ])\n  # Look for DirectSound flag\n  AS_IF([test \"x$with_ds\" = \"xyes\" ], [\n    AC_MSG_RESULT([using DirectSound])\n    api=\"$api -D__WINDOWS_DS__\"\n    LIBS=\"-ldsound -lwinmm $LIBS\"\n  ])\n  # Look for WASAPI flag\n  AS_IF([test \"x$with_wasapi\" = \"xyes\"], [\n    AC_MSG_RESULT([using WASAPI])\n    api=\"$api -D__WINDOWS_WASAPI__\"\n    LIBS=\"-lwinmm -luuid -lksuser $LIBS\"\n    CPPFLAGS=\"-I$srcdir/include $CPPFLAGS\"\n  ])\n  # If no audio api flags specified, use DS\n  AS_IF([test \"x$api\" = \"x\" ], [\n    AC_MSG_RESULT([using DirectSound])\n    api=\"$api -D__WINDOWS_DS__\"\n    LIBS=\"-ldsound -lwinmm $LIBS\"\n  ])\n  LIBS=\"-lole32 $LIBS\"\n  ],[\n  AC_MSG_RESULT([none])\n  # Default case for unknown realtime systems.\n  AC_MSG_ERROR([Unknown system type for realtime support!])\n  ]\n)\n\nAM_CONDITIONAL( ASIO, [test \"x${use_asio}\" = \"xyes\" ])\n\nCPPFLAGS=\"$CPPFLAGS $api\"\n\nAC_OUTPUT\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/contrib/go/rtaudio/rtaudio.go",
    "content": "package rtaudio\n\n/*\n\n#cgo CXXFLAGS: -g\n#cgo LDFLAGS: -lstdc++ -g\n\n#cgo linux CXXFLAGS: -D__LINUX_ALSA__\n#cgo linux LDFLAGS: -lm -lasound -pthread\n\n#cgo linux,pulseaudio CXXFLAGS: -D__LINUX_PULSE__\n#cgo linux,pulseaudio LDFLAGS: -lpulse -lpulse-simple\n\n#cgo jack CXXFLAGS: -D__UNIX_JACK__\n#cgo jack LDFLAGS: -ljack\n\n#cgo windows CXXFLAGS: -D__WINDOWS_WASAPI__\n#cgo windows LDFLAGS: -lm -luuid -lksuser -lwinmm -lole32 -static\n\n#cgo darwin CXXFLAGS: -D__MACOSX_CORE__\n#cgo darwin LDFLAGS: -framework CoreAudio -framework CoreFoundation\n\n#include <stdlib.h>\n#include <stdint.h>\n#include \"rtaudio_stub.h\"\n\nextern int goCallback(void *out, void *in, unsigned int nFrames,\n\tdouble stream_time, rtaudio_stream_status_t status, void *userdata);\n\nstatic inline void cgoRtAudioOpenStream(rtaudio_t audio,\n\trtaudio_stream_parameters_t *output_params,\n\trtaudio_stream_parameters_t *input_params,\n\trtaudio_format_t format,\n\tunsigned int sample_rate,\n\tunsigned int *buffer_frames,\n\tint cb_id,\n\trtaudio_stream_options_t *options) {\n\t\trtaudio_open_stream(audio, output_params, input_params,\n\t\t\tformat, sample_rate, buffer_frames,\n\t\t\tgoCallback, (void *)(uintptr_t)cb_id, options, NULL);\n}\n*/\nimport \"C\"\nimport (\n\t\"errors\"\n\t\"sync\"\n\t\"time\"\n\t\"unsafe\"\n)\n\n// API is an enumeration of available compiled APIs. Supported API include\n// Alsa/PulseAudio/OSS, Jack, CoreAudio, WASAPI/ASIO/DS and dummy API.\ntype API C.rtaudio_api_t\n\nconst (\n\t// APIUnspecified looks for a working compiled API.\n\tAPIUnspecified API = C.RTAUDIO_API_UNSPECIFIED\n\t// APILinuxALSA uses the Advanced Linux Sound Architecture API.\n\tAPILinuxALSA = C.RTAUDIO_API_LINUX_ALSA\n\t// APILinuxPulse uses the Linux PulseAudio API.\n\tAPILinuxPulse = C.RTAUDIO_API_LINUX_PULSE\n\t// APILinuxOSS uses the Linux Open Sound System API.\n\tAPILinuxOSS = C.RTAUDIO_API_LINUX_OSS\n\t// APIUnixJack uses the Jack Low-Latency Audio Server API.\n\tAPIUnixJack = C.RTAUDIO_API_UNIX_JACK\n\t// APIMacOSXCore uses Macintosh OS-X Core Audio API.\n\tAPIMacOSXCore = C.RTAUDIO_API_MACOSX_CORE\n\t// APIWindowsWASAPI uses the Microsoft WASAPI API.\n\tAPIWindowsWASAPI = C.RTAUDIO_API_WINDOWS_WASAPI\n\t// APIWindowsASIO uses the Steinberg Audio Stream I/O API.\n\tAPIWindowsASIO = C.RTAUDIO_API_WINDOWS_ASIO\n\t// APIWindowsDS uses the Microsoft Direct Sound API.\n\tAPIWindowsDS = C.RTAUDIO_API_WINDOWS_DS\n\t// APIDummy is a compilable but non-functional API.\n\tAPIDummy = C.RTAUDIO_API_DUMMY\n)\n\nfunc (api API) String() string {\n\tswitch api {\n\tcase APIUnspecified:\n\t\treturn \"unspecified\"\n\tcase APILinuxALSA:\n\t\treturn \"alsa\"\n\tcase APILinuxPulse:\n\t\treturn \"pulse\"\n\tcase APILinuxOSS:\n\t\treturn \"oss\"\n\tcase APIUnixJack:\n\t\treturn \"jack\"\n\tcase APIMacOSXCore:\n\t\treturn \"coreaudio\"\n\tcase APIWindowsWASAPI:\n\t\treturn \"wasapi\"\n\tcase APIWindowsASIO:\n\t\treturn \"asio\"\n\tcase APIWindowsDS:\n\t\treturn \"directsound\"\n\tcase APIDummy:\n\t\treturn \"dummy\"\n\t}\n\treturn \"?\"\n}\n\n// StreamStatus defines over- or underflow flags in the audio callback.\ntype StreamStatus C.rtaudio_stream_status_t\n\nconst (\n\t// StatusInputOverflow indicates that data was discarded because of an\n\t// overflow condition at the driver.\n\tStatusInputOverflow StreamStatus = C.RTAUDIO_STATUS_INPUT_OVERFLOW\n\t// StatusOutputUnderflow indicates that the output buffer ran low, likely\n\t// producing a break in the output sound.\n\tStatusOutputUnderflow StreamStatus = C.RTAUDIO_STATUS_OUTPUT_UNDERFLOW\n)\n\n// Version returns current RtAudio library version string.\nfunc Version() string {\n\treturn C.GoString(C.rtaudio_version())\n}\n\n// CompiledAPI determines the available compiled audio APIs.\nfunc CompiledAPI() (apis []API) {\n\tcapis := (*[1 << 27]C.rtaudio_api_t)(unsafe.Pointer(C.rtaudio_compiled_api()))\n\tfor i := 0; ; i++ {\n\t\tapi := capis[i]\n\t\tif api == C.RTAUDIO_API_UNSPECIFIED {\n\t\t\tbreak\n\t\t}\n\t\tapis = append(apis, API(api))\n\t}\n\treturn apis\n}\n\n// DeviceInfo is the public device information structure for returning queried values.\ntype DeviceInfo struct {\n\tName              string\n\tProbed            bool\n\tNumOutputChannels int\n\tNumInputChannels  int\n\tNumDuplexChannels int\n\tIsDefaultOutput   bool\n\tIsDefaultInput    bool\n\n\t//rtaudio_format_t native_formats;\n\n\tPreferredSampleRate uint\n\tSampleRates         []int\n}\n\n// StreamParams is the structure for specifying input or output stream parameters.\ntype StreamParams struct {\n\tDeviceID     uint\n\tNumChannels  uint\n\tFirstChannel uint\n}\n\n// StreamFlags is a set of RtAudio stream option flags.\ntype StreamFlags C.rtaudio_stream_flags_t\n\nconst (\n\t// FlagsNoninterleaved is set to use non-interleaved buffers (default = interleaved).\n\tFlagsNoninterleaved = C.RTAUDIO_FLAGS_NONINTERLEAVED\n\t// FlagsMinimizeLatency when set attempts to configure stream parameters for lowest possible latency.\n\tFlagsMinimizeLatency = C.RTAUDIO_FLAGS_MINIMIZE_LATENCY\n\t// FlagsHogDevice when set attempts to grab device for exclusive use.\n\tFlagsHogDevice = C.RTAUDIO_FLAGS_HOG_DEVICE\n\t// FlagsScheduleRealtime is set in attempt to select realtime scheduling (round-robin) for the callback thread.\n\tFlagsScheduleRealtime = C.RTAUDIO_FLAGS_SCHEDULE_REALTIME\n\t// FlagsAlsaUseDefault is set to use the \"default\" PCM device (ALSA only).\n\tFlagsAlsaUseDefault = C.RTAUDIO_FLAGS_ALSA_USE_DEFAULT\n)\n\n// StreamOptions is the structure for specifying stream options.\ntype StreamOptions struct {\n\tFlags      StreamFlags\n\tNumBuffers uint\n\tPriotity   int\n\tName       string\n}\n\n// RtAudio is a \"controller\" used to select an available audio i/o interface.\ntype RtAudio interface {\n\tDestroy()\n\tCurrentAPI() API\n\tDevices() ([]DeviceInfo, error)\n\tDefaultOutputDevice() int\n\tDefaultInputDevice() int\n\n\tOpen(out, in *StreamParams, format Format, sampleRate uint, frames uint, cb Callback, opts *StreamOptions) error\n\tClose()\n\tStart() error\n\tStop() error\n\tAbort() error\n\n\tIsOpen() bool\n\tIsRunning() bool\n\n\tLatency() (int, error)\n\tSampleRate() (uint, error)\n\tTime() (time.Duration, error)\n\tSetTime(time.Duration) error\n\n\tShowWarnings(bool)\n}\n\ntype rtaudio struct {\n\taudio          C.rtaudio_t\n\tcb             Callback\n\tinputChannels  int\n\toutputChannels int\n\tformat         Format\n}\n\nvar _ RtAudio = &rtaudio{}\n\n// Create a new RtAudio instance using the given API.\nfunc Create(api API) (RtAudio, error) {\n\taudio := C.rtaudio_create(C.rtaudio_api_t(api))\n\tif C.rtaudio_error(audio) != nil {\n\t\treturn nil, errors.New(C.GoString(C.rtaudio_error(audio)))\n\t}\n\treturn &rtaudio{audio: audio}, nil\n}\n\nfunc (audio *rtaudio) Destroy() {\n\tC.rtaudio_destroy(audio.audio)\n}\n\nfunc (audio *rtaudio) CurrentAPI() API {\n\treturn API(C.rtaudio_current_api(audio.audio))\n}\n\nfunc (audio *rtaudio) DefaultInputDevice() int {\n\treturn int(C.rtaudio_get_default_input_device(audio.audio))\n}\n\nfunc (audio *rtaudio) DefaultOutputDevice() int {\n\treturn int(C.rtaudio_get_default_output_device(audio.audio))\n}\n\nfunc (audio *rtaudio) Devices() ([]DeviceInfo, error) {\n\tn := C.rtaudio_device_count(audio.audio)\n\tdevices := []DeviceInfo{}\n\tfor i := C.int(0); i < n; i++ {\n\t\tcinfo := C.rtaudio_get_device_info(audio.audio, i)\n\t\tif C.rtaudio_error(audio.audio) != nil {\n\t\t\treturn nil, errors.New(C.GoString(C.rtaudio_error(audio.audio)))\n\t\t}\n\t\tsr := []int{}\n\t\tfor _, r := range cinfo.sample_rates {\n\t\t\tif r == 0 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tsr = append(sr, int(r))\n\t\t}\n\t\tdevices = append(devices, DeviceInfo{\n\t\t\tName:                C.GoString(&cinfo.name[0]),\n\t\t\tProbed:              cinfo.probed != 0,\n\t\t\tNumInputChannels:    int(cinfo.input_channels),\n\t\t\tNumOutputChannels:   int(cinfo.output_channels),\n\t\t\tNumDuplexChannels:   int(cinfo.duplex_channels),\n\t\t\tIsDefaultOutput:     cinfo.is_default_output != 0,\n\t\t\tIsDefaultInput:      cinfo.is_default_input != 0,\n\t\t\tPreferredSampleRate: uint(cinfo.preferred_sample_rate),\n\t\t\tSampleRates:         sr,\n\t\t})\n\t\t// TODO: formats\n\t}\n\treturn devices, nil\n}\n\n// Format defines RtAudio data format type.\ntype Format int\n\nconst (\n\t// FormatInt8 uses 8-bit signed integer.\n\tFormatInt8 Format = C.RTAUDIO_FORMAT_SINT8\n\t// FormatInt16 uses 16-bit signed integer.\n\tFormatInt16 = C.RTAUDIO_FORMAT_SINT16\n\t// FormatInt24 uses 24-bit signed integer.\n\tFormatInt24 = C.RTAUDIO_FORMAT_SINT24\n\t// FormatInt32 uses 32-bit signed integer.\n\tFormatInt32 = C.RTAUDIO_FORMAT_SINT32\n\t// FormatFloat32 uses 32-bit floating point values normalized between (-1..1).\n\tFormatFloat32 = C.RTAUDIO_FORMAT_FLOAT32\n\t// FormatFloat64 uses 64-bit floating point values normalized between (-1..1).\n\tFormatFloat64 = C.RTAUDIO_FORMAT_FLOAT64\n)\n\n// Buffer is a common interface for audio buffers of various data format types.\ntype Buffer interface {\n\tLen() int\n\tInt8() []int8\n\tInt16() []int16\n\tInt24() []Int24\n\tInt32() []int32\n\tFloat32() []float32\n\tFloat64() []float64\n}\n\n// Int24 is a helper type to convert int32 values to int24 and back.\ntype Int24 [3]byte\n\n// Set Int24 value using the least significant bytes of the given number n.\nfunc (i *Int24) Set(n int32) {\n\t(*i)[0], (*i)[1], (*i)[2] = byte(n&0xff), byte((n&0xff00)>>8), byte((n&0xff0000)>>16)\n}\n\n// Get Int24 value as int32.\nfunc (i Int24) Get() int32 {\n\tn := int32(i[0]) | int32(i[1])<<8 | int32(i[2])<<16\n\tif n&0x800000 != 0 {\n\t\tn |= ^0xffffff\n\t}\n\treturn n\n}\n\ntype buffer struct {\n\tformat      Format\n\tlength      int\n\tnumChannels int\n\tptr         unsafe.Pointer\n}\n\nfunc (b *buffer) Len() int {\n\tif b.ptr == nil {\n\t\treturn 0\n\t}\n\treturn b.length\n}\n\nfunc (b *buffer) Int8() []int8 {\n\tif b.format != FormatInt8 {\n\t\treturn nil\n\t}\n\tif b.ptr == nil {\n\t\treturn nil\n\t}\n\treturn (*[1 << 30]int8)(b.ptr)[:b.length*b.numChannels : b.length*b.numChannels]\n}\n\nfunc (b *buffer) Int16() []int16 {\n\tif b.format != FormatInt16 {\n\t\treturn nil\n\t}\n\tif b.ptr == nil {\n\t\treturn nil\n\t}\n\treturn (*[1 << 29]int16)(b.ptr)[:b.length*b.numChannels : b.length*b.numChannels]\n}\n\nfunc (b *buffer) Int24() []Int24 {\n\tif b.format != FormatInt24 {\n\t\treturn nil\n\t}\n\tif b.ptr == nil {\n\t\treturn nil\n\t}\n\treturn (*[1 << 28]Int24)(b.ptr)[:b.length*b.numChannels : b.length*b.numChannels]\n}\n\nfunc (b *buffer) Int32() []int32 {\n\tif b.format != FormatInt32 {\n\t\treturn nil\n\t}\n\tif b.ptr == nil {\n\t\treturn nil\n\t}\n\treturn (*[1 << 27]int32)(b.ptr)[:b.length*b.numChannels : b.length*b.numChannels]\n}\n\nfunc (b *buffer) Float32() []float32 {\n\tif b.format != FormatFloat32 {\n\t\treturn nil\n\t}\n\tif b.ptr == nil {\n\t\treturn nil\n\t}\n\treturn (*[1 << 27]float32)(b.ptr)[:b.length*b.numChannels : b.length*b.numChannels]\n}\n\nfunc (b *buffer) Float64() []float64 {\n\tif b.format != FormatFloat64 {\n\t\treturn nil\n\t}\n\tif b.ptr == nil {\n\t\treturn nil\n\t}\n\treturn (*[1 << 23]float64)(b.ptr)[:b.length*b.numChannels : b.length*b.numChannels]\n}\n\n// Callback is a client-defined function that will be invoked when input data\n// is available and/or output data is needed.\ntype Callback func(out Buffer, in Buffer, dur time.Duration, status StreamStatus) int\n\nvar (\n\tmu     sync.Mutex\n\taudios = map[int]*rtaudio{}\n)\n\nfunc registerAudio(a *rtaudio) int {\n\tmu.Lock()\n\tdefer mu.Unlock()\n\tfor i := 0; ; i++ {\n\t\tif _, ok := audios[i]; !ok {\n\t\t\taudios[i] = a\n\t\t\treturn i\n\t\t}\n\t}\n}\n\nfunc unregisterAudio(a *rtaudio) {\n\tmu.Lock()\n\tdefer mu.Unlock()\n\tfor i := 0; i < len(audios); i++ {\n\t\tif audios[i] == a {\n\t\t\tdelete(audios, i)\n\t\t\treturn\n\t\t}\n\t}\n}\n\nfunc findAudio(k int) *rtaudio {\n\tmu.Lock()\n\tdefer mu.Unlock()\n\treturn audios[k]\n}\n\n//export goCallback\nfunc goCallback(out, in unsafe.Pointer, frames C.uint, sec C.double,\n\tstatus C.rtaudio_stream_status_t, userdata unsafe.Pointer) C.int {\n\n\tk := int(uintptr(userdata))\n\taudio := findAudio(k)\n\tdur := time.Duration(time.Microsecond * time.Duration(sec*1000000.0))\n\tinbuf := &buffer{audio.format, int(frames), audio.inputChannels, in}\n\toutbuf := &buffer{audio.format, int(frames), audio.outputChannels, out}\n\treturn C.int(audio.cb(outbuf, inbuf, dur, StreamStatus(status)))\n}\n\nfunc (audio *rtaudio) Open(out, in *StreamParams, format Format, sampleRate uint,\n\tframes uint, cb Callback, opts *StreamOptions) error {\n\tvar (\n\t\tcInPtr   *C.rtaudio_stream_parameters_t\n\t\tcOutPtr  *C.rtaudio_stream_parameters_t\n\t\tcOptsPtr *C.rtaudio_stream_options_t\n\t\tcIn      C.rtaudio_stream_parameters_t\n\t\tcOut     C.rtaudio_stream_parameters_t\n\t\tcOpts    C.rtaudio_stream_options_t\n\t)\n\n\taudio.inputChannels = 0\n\taudio.outputChannels = 0\n\tif out != nil {\n\t\taudio.outputChannels = int(out.NumChannels)\n\t\tcOut.device_id = C.uint(out.DeviceID)\n\t\tcOut.num_channels = C.uint(out.NumChannels)\n\t\tcOut.first_channel = C.uint(out.FirstChannel)\n\t\tcOutPtr = &cOut\n\t}\n\tif in != nil {\n\t\taudio.inputChannels = int(in.NumChannels)\n\t\tcIn.device_id = C.uint(in.DeviceID)\n\t\tcIn.num_channels = C.uint(in.NumChannels)\n\t\tcIn.first_channel = C.uint(in.FirstChannel)\n\t\tcInPtr = &cIn\n\t}\n\tif opts != nil {\n\t\tcOpts.flags = C.rtaudio_stream_flags_t(opts.Flags)\n\t\tcOpts.num_buffers = C.uint(opts.NumBuffers)\n\t\tcOpts.priority = C.int(opts.Priotity)\n\t\tcOptsPtr = &cOpts\n\t}\n\tframesCount := C.uint(frames)\n\taudio.format = format\n\taudio.cb = cb\n\n\tk := registerAudio(audio)\n\tC.cgoRtAudioOpenStream(audio.audio, cOutPtr, cInPtr,\n\t\tC.rtaudio_format_t(format), C.uint(sampleRate), &framesCount, C.int(k), cOptsPtr)\n\tif C.rtaudio_error(audio.audio) != nil {\n\t\treturn errors.New(C.GoString(C.rtaudio_error(audio.audio)))\n\t}\n\treturn nil\n}\n\nfunc (audio *rtaudio) Close() {\n\tunregisterAudio(audio)\n\tC.rtaudio_close_stream(audio.audio)\n}\n\nfunc (audio *rtaudio) Start() error {\n\tC.rtaudio_start_stream(audio.audio)\n\tif C.rtaudio_error(audio.audio) != nil {\n\t\treturn errors.New(C.GoString(C.rtaudio_error(audio.audio)))\n\t}\n\treturn nil\n}\n\nfunc (audio *rtaudio) Stop() error {\n\tC.rtaudio_stop_stream(audio.audio)\n\tif C.rtaudio_error(audio.audio) != nil {\n\t\treturn errors.New(C.GoString(C.rtaudio_error(audio.audio)))\n\t}\n\treturn nil\n}\n\nfunc (audio *rtaudio) Abort() error {\n\tC.rtaudio_abort_stream(audio.audio)\n\tif C.rtaudio_error(audio.audio) != nil {\n\t\treturn errors.New(C.GoString(C.rtaudio_error(audio.audio)))\n\t}\n\treturn nil\n}\n\nfunc (audio *rtaudio) IsOpen() bool {\n\treturn C.rtaudio_is_stream_open(audio.audio) != 0\n}\n\nfunc (audio *rtaudio) IsRunning() bool {\n\treturn C.rtaudio_is_stream_running(audio.audio) != 0\n}\n\nfunc (audio *rtaudio) Latency() (int, error) {\n\tlatency := C.rtaudio_get_stream_latency(audio.audio)\n\tif C.rtaudio_error(audio.audio) != nil {\n\t\treturn 0, errors.New(C.GoString(C.rtaudio_error(audio.audio)))\n\t}\n\treturn int(latency), nil\n}\n\nfunc (audio *rtaudio) SampleRate() (uint, error) {\n\tsampleRate := C.rtaudio_get_stream_sample_rate(audio.audio)\n\tif C.rtaudio_error(audio.audio) != nil {\n\t\treturn 0, errors.New(C.GoString(C.rtaudio_error(audio.audio)))\n\t}\n\treturn uint(sampleRate), nil\n}\n\nfunc (audio *rtaudio) Time() (time.Duration, error) {\n\tsec := C.rtaudio_get_stream_time(audio.audio)\n\tif C.rtaudio_error(audio.audio) != nil {\n\t\treturn 0, errors.New(C.GoString(C.rtaudio_error(audio.audio)))\n\t}\n\treturn time.Duration(time.Microsecond * time.Duration(sec*1000000.0)), nil\n}\n\nfunc (audio *rtaudio) SetTime(t time.Duration) error {\n\tsec := float64(t) * 1000000.0 / float64(time.Microsecond)\n\tC.rtaudio_set_stream_time(audio.audio, C.double(sec))\n\tif C.rtaudio_error(audio.audio) != nil {\n\t\treturn errors.New(C.GoString(C.rtaudio_error(audio.audio)))\n\t}\n\treturn nil\n}\n\nfunc (audio *rtaudio) ShowWarnings(show bool) {\n\tif show {\n\t\tC.rtaudio_show_warnings(audio.audio, 1)\n\t} else {\n\t\tC.rtaudio_show_warnings(audio.audio, 0)\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/contrib/go/rtaudio/rtaudio_stub.cpp",
    "content": "#include \"../../../RtAudio.h\"\n\n#include \"../../../RtAudio.cpp\"\n#include \"../../../rtaudio_c.cpp\"\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/contrib/go/rtaudio/rtaudio_stub.h",
    "content": "#include \"../../../rtaudio_c.h\"\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/contrib/go/rtaudio/rtaudio_test.go",
    "content": "package rtaudio\n\nimport (\n\t\"log\"\n\t\"math\"\n\t\"time\"\n)\n\nfunc ExampleCompiledAPI() {\n\tlog.Println(\"RtAudio version: \", Version())\n\tfor _, api := range CompiledAPI() {\n\t\tlog.Println(\"Compiled API: \", api)\n\t}\n}\n\nfunc ExampleRtAudio_Devices() {\n\taudio, err := Create(APIUnspecified)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer audio.Destroy()\n\tdevices, err := audio.Devices()\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tfor _, d := range devices {\n\t\tlog.Printf(\"Audio device: %#v\\n\", d)\n\t}\n}\n\nfunc ExampleRtAudio_Open() {\n\tconst (\n\t\tsampleRate = 44100\n\t\tbufSz      = 512\n\t\tfreq       = 440.0\n\t)\n\tphase := 0.0\n\taudio, err := Create(APIUnspecified)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer audio.Destroy()\n\n\tparams := StreamParams{\n\t\tDeviceID:     uint(audio.DefaultOutputDevice()),\n\t\tNumChannels:  2,\n\t\tFirstChannel: 0,\n\t}\n\toptions := StreamOptions{\n\t\tFlags: FlagsAlsaUseDefault,\n\t}\n\tcb := func(out, in Buffer, dur time.Duration, status StreamStatus) int {\n\t\tsamples := out.Float32()\n\t\tfor i := 0; i < len(samples)/2; i++ {\n\t\t\tsample := float32(math.Sin(2 * math.Pi * phase))\n\t\t\tphase += freq / sampleRate\n\n\t\t\tsamples[i*2] = sample\n\t\t\tsamples[i*2+1] = sample\n\t\t}\n\t\treturn 0\n\t}\n\terr = audio.Open(&params, nil, FormatFloat32, sampleRate, bufSz, cb, &options)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer audio.Close()\n\taudio.Start()\n\tdefer audio.Stop()\n\ttime.Sleep(3 * time.Second)\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/contrib/python/pyrtaudio/PyRtAudioTest.py",
    "content": "\r\nimport rtaudio as rt\r\n\r\nfrom math import cos\r\n\r\nimport struct\r\n\r\n\r\nclass audio_generator:\r\n    def __init__(self):\r\n        self.idx = -1\r\n        self.freq = 440.\r\n    def __call__(self):\r\n\tself.idx += 1\r\n\tif self.idx%48000 == 0:\r\n            self.freq *= 2**(1/12.)\t\r\n        return 0.5*cos(2.*3.1416*self.freq*self.idx/48000.)\r\n\r\n\r\nclass callback:\r\n    def __init__(self, gen):\r\n        self.gen = gen\r\n\tself.i = 0\r\n    def __call__(self,playback, capture):\r\n        [struct.pack_into(\"f\", playback, 4*o, self.gen()) for o in xrange(256)]\r\n\tself.i = self.i + 256\r\n\tif self.i > 48000*10:\r\n            print '.'\r\n            return 1\r\n\r\ndac = rt.RtAudio()\r\n\r\nn = dac.getDeviceCount()\r\nprint 'Number of devices available: ', n\r\n\r\nfor i in range(n):\r\n    try:\r\n        print dac.getDeviceInfo(i)\r\n    except rt.RtError as e:\r\n\tprint e\r\n\r\n\r\nprint 'Default output device: ', dac.getDefaultOutputDevice()\r\nprint 'Default input device: ', dac.getDefaultInputDevice()\r\n\r\nprint 'is stream open: ', dac.isStreamOpen()\r\nprint 'is stream running: ', dac.isStreamRunning()\r\n\r\noParams = {'deviceId': 1, 'nChannels': 1, 'firstChannel': 0}\r\niParams = {'deviceId': 1, 'nChannels': 1, 'firstChannel': 0}\r\n\r\ntry:\r\n  dac.openStream(oParams,oParams,48000,256,callback(audio_generator()) )\r\nexcept rt.RtError as e:\r\n  print e\r\nelse:\r\n  dac.startStream()\r\n\r\n  import time\r\n  print 'latency: ', dac.getStreamLatency()\r\n\r\n  while (dac.isStreamRunning()):\r\n    time.sleep(0.1)\r\n\r\n  print dac.getStreamTime()\r\n\r\n  dac.stopStream()\r\n  dac.abortStream()\r\n  dac.closeStream()\r\n\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/contrib/python/pyrtaudio/readme",
    "content": "PyRtAudio - a python wrapper around RtAudio that allows to perform audio i/o operations in real-time from the python language.\r\n\r\nBy Antoine Lefebvre, 2011\r\n\r\nThis software is in the development stage. Do not expect compatibility\r\nwith future versions. Comments, suggestions, new features, bug fixes,\r\netc. are welcome.\r\n\r\n\r\nThis distribution of PyRtAudio contains the following:\r\n\r\n- rtaudiomodule.cpp: the python wrapper code\r\n- setup.py: a setup script use to compile and install PyRtAudio\r\n- examples: a single PyRtAudioTest.py script\r\n\r\nINSTALLATION\r\n\r\nThe compilation and installation of the PyRtAudio module is handled by\r\nthe python Distribution Utilities (\"Distutils\"). Provided that your\r\nsystem has a C++ compiler and is properly configure, the following\r\ncommand should be sufficient:\r\n\r\n>> python setup.py install\r\n\r\nPlease refer to the distutils documentation for installation problems: http://docs.python.org/distutils/index.html \r\n\r\nLEGAL AND ETHICAL:\r\n\r\nThe PyRtAudio license is the same as the RtAudio license:\r\n\r\n    PyRtAudio: a python wrapper around RtAudio\r\n    Copyright (c)2011 Antoine Lefebvre\r\n\r\n    Permission is hereby granted, free of charge, to any person\r\n    obtaining a copy of this software and associated documentation files\r\n    (the \"Software\"), to deal in the Software without restriction,\r\n    including without limitation the rights to use, copy, modify, merge,\r\n    publish, distribute, sublicense, and/or sell copies of the Software,\r\n    and to permit persons to whom the Software is furnished to do so,\r\n    subject to the following conditions:\r\n\r\n    The above copyright notice and this permission notice shall be\r\n    included in all copies or substantial portions of the Software.\r\n\r\n    Any person wishing to distribute modifications to the Software is\r\n    asked to send the modifications to the original developer so that\r\n    they can be incorporated into the canonical version.  This is,\r\n    however, not a binding provision of this license.\r\n\r\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\r\n    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\r\n    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/contrib/python/pyrtaudio/rtaudiomodule.cpp",
    "content": "/************************************************************************/\n/*  PyRtAudio: a python wrapper around RtAudio\n    Copyright (c) 2011 Antoine Lefebvre\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation files\n    (the \"Software\"), to deal in the Software without restriction,\n    including without limitation the rights to use, copy, modify, merge,\n    publish, distribute, sublicense, and/or sell copies of the Software,\n    and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    Any person wishing to distribute modifications to the Software is\n    asked to send the modifications to the original developer so that\n    they can be incorporated into the canonical version.  This is,\n    however, not a binding provision of this license.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\n    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\n    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n/************************************************************************/\n\n// This software is in the development stage\n// Do not expect compatibility with future versions.\n// Comments, suggestions, new features, bug fixes, etc. are welcome\n\n#include <Python.h>\n\n#include \"RtAudio.h\" \n\nextern \"C\" {\n\n    typedef struct \n    {\n        PyObject_HEAD;\n        RtAudio *dac;\n        RtAudioFormat _format;\n        int _bufferSize;\n        unsigned int inputChannels;\n        PyObject *callback_func;\n    } PyRtAudio;\n\n    static PyObject *RtAudioErrorException;\n\n    static int callback(void *outputBuffer, void *inputBuffer, unsigned int nBufferFrames,\n        double streamTime, RtAudioStreamStatus status, void *data )\n    {\n        PyRtAudio* self = (PyRtAudio*) data;\n\n        if (status == RTAUDIO_OUTPUT_UNDERFLOW)\n            printf(\"underflow.\\n\");\n\n        if (self == NULL) return -1;\n\n        float* in = (float *) inputBuffer;\n        float* out = (float *) outputBuffer;\n\n        PyObject *py_callback_func = self->callback_func;\n\n        int retval = 0;\n\n        if (py_callback_func) {\n            PyGILState_STATE gstate = PyGILState_Ensure();\n\n            PyObject* iBuffer = PyBuffer_FromMemory(in, sizeof(float) * self->inputChannels * nBufferFrames);\n            PyObject* oBuffer = PyBuffer_FromReadWriteMemory(out, sizeof(float) * nBufferFrames);\n            PyObject *arglist =  Py_BuildValue(\"(O,O)\", oBuffer, iBuffer);\n\n            if (arglist == NULL) {\n                printf(\"error.\\n\");\n                PyErr_Print();\n                PyGILState_Release(gstate);\n                return 2;\n            }\n\n            // Calling the callback\n            PyObject *result = PyEval_CallObject(py_callback_func, arglist);\n\n            if (PyErr_Occurred() != NULL) {\n                PyErr_Print();\n            }\n            else if PyInt_Check(result) {\n              retval = PyInt_AsLong(result);\n            }\n            \n            Py_DECREF(arglist);\n            Py_DECREF(oBuffer);\n            Py_DECREF(iBuffer);\n            Py_XDECREF(result);\n\n            PyGILState_Release(gstate);            \n        }\n\n        return retval;\n    }\n\n\n\n    static void RtAudio_dealloc(PyRtAudio *self)\n    {\n        printf(\"RtAudio_dealloc.\\n\");\n        if (self == NULL) return;\n\n        if (self->dac) {\n            self->dac->closeStream();\n            Py_CLEAR(self->callback_func);\n            delete self->dac;\n        }\n\n        self->ob_type->tp_free((PyObject *) self);\n    }\n\n\n    static PyObject* RtAudio_new(PyTypeObject *type, PyObject *args, PyObject *kwds)\n    {\n        printf(\"RtAudio_new.\\n\");\n        PyRtAudio *self;\n        char *api = NULL;\n\n        if(!PyArg_ParseTuple(args, \"|s\", &api))\n            return NULL;\n\n        self = (PyRtAudio *) type->tp_alloc(type, 0);\n\n        if(self == NULL) return NULL;\n\n        self->dac = NULL;\n        self->callback_func = NULL;\n\n        try {\n            if (api == NULL)\n                self->dac = new RtAudio;\n            else if(!strcmp(api, \"jack\"))\n                self->dac = new RtAudio(RtAudio::UNIX_JACK);\n            else if(!strcmp(api, \"alsa\"))\n                self->dac = new RtAudio(RtAudio::LINUX_ALSA);\n            else if(!strcmp(api, \"oss\"))\n                self->dac = new RtAudio(RtAudio::LINUX_ALSA);\n            else if(!strcmp(api, \"core\"))\n                self->dac = new RtAudio(RtAudio::MACOSX_CORE);\n            else if(!strcmp(api, \"asio\"))\n                self->dac = new RtAudio(RtAudio::WINDOWS_ASIO);\n            else if(!strcmp(api, \"directsound\"))\n                self->dac = new RtAudio(RtAudio::WINDOWS_DS);\n        }\n        catch (RtAudioError &error) {\n            PyErr_SetString(RtAudioErrorException, error.getMessage().c_str());\n            Py_INCREF(RtAudioErrorException);\n            return NULL;\n        }\n\n        self->dac->showWarnings(false);\n\n        //Py_XINCREF(self);\n        return (PyObject *) self;\n    }\n\n    static int RtAudio_init(PyRtAudio *self, PyObject *args, PyObject *kwds)\n    {\n        printf(\"RtAudio_init.\\n\");\n        //if (self == NULL) return 0;\n        return 0;\n    }\n\n    // This functions does not yet support all the features of the RtAudio::openStream method.\n    // Please send your patches if you improves this.\n    static PyObject* RtAudio_openStream(PyRtAudio *self, PyObject *args)\n    {\n        if (self == NULL) return NULL;\n\n        if (self->dac == NULL) {\n            printf(\"the dac is null.\\n\");\n            Py_RETURN_NONE;\n        }\n\n        PyObject *oParamsObj;\n        PyObject *iParamsObj;\n        int fs;\n        unsigned int bf;\n        PyObject *pycallback;\n\n        if (!PyArg_ParseTuple(args, \"OOiiO\", &oParamsObj, &iParamsObj, &fs, &bf, &pycallback)) \n            return NULL;\n\n        RtAudio::StreamParameters oParams;\n        oParams.deviceId = 1;\n        oParams.nChannels = 1;\n        oParams.firstChannel = 0;\n\n        if (PyDict_Check(oParamsObj)) {\n            if (PyDict_Contains(oParamsObj, PyString_FromString(\"deviceId\"))) {\n                PyObject *value = PyDict_GetItem(oParamsObj, PyString_FromString(\"deviceId\"));\n                oParams.deviceId = PyInt_AsLong(value);\n            }\n            if (PyDict_Contains(oParamsObj, PyString_FromString(\"nChannels\"))) {\n                PyObject *value = PyDict_GetItem(oParamsObj, PyString_FromString(\"nChannels\"));\n                oParams.nChannels = PyInt_AsLong(value);\n            }\n            if (PyDict_Contains(oParamsObj, PyString_FromString(\"firstChannel\"))) {\n                PyObject *value = PyDict_GetItem(oParamsObj, PyString_FromString(\"firstChannel\"));\n                oParams.firstChannel = PyInt_AsLong(value);\n            }\n        }\n        else {\n            printf(\"First argument must be a dictionary. Default values will be used.\\n\");\n        }\n\n        RtAudio::StreamParameters iParams;\n        iParams.deviceId = 1;\n        iParams.nChannels = 2;\n        iParams.firstChannel = 0;\n\n        if (PyDict_Check(iParamsObj)) {\n            if (PyDict_Contains(iParamsObj, PyString_FromString(\"deviceId\"))) {\n                PyObject *value = PyDict_GetItem(iParamsObj, PyString_FromString(\"deviceId\"));\n                iParams.deviceId = PyInt_AsLong(value);\n            }\n            if (PyDict_Contains(iParamsObj, PyString_FromString(\"nChannels\"))) {\n                PyObject *value = PyDict_GetItem(iParamsObj, PyString_FromString(\"nChannels\"));\n                iParams.nChannels = PyInt_AsLong(value);\n            }\n            if (PyDict_Contains(iParamsObj, PyString_FromString(\"firstChannel\"))) {\n                PyObject *value = PyDict_GetItem(iParamsObj, PyString_FromString(\"firstChannel\"));\n                iParams.firstChannel = PyInt_AsLong(value);\n            }\n        }\n        else {\n            printf(\"Second argument must be a dictionary. Default values will be used.\\n\");\n        }\n\n\n        if (!PyCallable_Check(pycallback)) {\n            PyErr_SetString(PyExc_TypeError, \"Need a callable object!\");\n            Py_XINCREF(PyExc_TypeError);\n            return NULL;\n        }\n\n        // sanity check the callback ?\n\n\n        Py_INCREF(pycallback);         /* Add a reference to new callback */\n        self->callback_func = pycallback; /*Remember new callback */\n\n        // add support for other format\n        self->_format = RTAUDIO_FLOAT32;\n\n        // add support for other options\n        RtAudio::StreamOptions options;\n        options.flags = RTAUDIO_NONINTERLEAVED;\n\n        try {\n            if (self->dac->isStreamOpen())\n                self->dac->closeStream();\n            self->dac->openStream(&oParams, &iParams, self->_format, fs, &bf, &callback, self, &options);\n        }\n        catch ( RtAudioError& error ) {\n            PyErr_SetString(RtAudioErrorException, error.getMessage().c_str());\n            Py_INCREF(RtAudioErrorException);\n            return NULL;\n        }\n\n        self->inputChannels = iParams.nChannels;\n\n        Py_RETURN_NONE;\n    }\n\n    static PyObject* RtAudio_closeStream(PyRtAudio *self, PyObject *args)\n    {\n        printf(\"RtAudio_closeStream.\\n\");\n        if (self == NULL || self->dac == NULL) return NULL;\n\n        try {\n            self->dac->closeStream();\n            Py_CLEAR(self->callback_func);\n        }\n        catch(RtAudioError &error) {\n            PyErr_SetString(RtAudioErrorException, error.getMessage().c_str());\n            Py_INCREF(RtAudioErrorException);\n            return NULL;\n        }\n\n        Py_RETURN_NONE;\n    }\n\n    static PyObject* RtAudio_startStream(PyRtAudio *self, PyObject *args)\n    {\n        if (self == NULL || self->dac == NULL) return NULL;\n\n        try {\n            self->dac->startStream();\n        }\n        catch(RtAudioError &error) {\n            PyErr_SetString(RtAudioErrorException, error.getMessage().c_str());\n            Py_INCREF(RtAudioErrorException);\n            return NULL;\n        }\n\n        Py_RETURN_NONE;\n    }\n\n\n    static PyObject* RtAudio_stopStream(PyRtAudio *self, PyObject *args)\n    {\n        printf(\"RtAudio_stopStream.\\n\");\n        if (self == NULL || self->dac == NULL) return NULL;\n\n        try {\n            self->dac->stopStream();\n        }\n        catch(RtAudioError &error) {\n            PyErr_SetString(RtAudioErrorException, error.getMessage().c_str());\n            Py_INCREF(RtAudioErrorException);\n            return NULL;\n        }\n\n        Py_RETURN_NONE;\n    }\n\n    static PyObject* RtAudio_abortStream(PyRtAudio *self, PyObject *args)\n    {\n        printf(\"RtAudio_abortStream.\\n\");\n        if (self == NULL || self->dac == NULL) return NULL;\n\n        try {\n            self->dac->abortStream();\n        }\n        catch(RtAudioError &error) {\n            PyErr_SetString(RtAudioErrorException, error.getMessage().c_str());\n            Py_INCREF(RtAudioErrorException);\n            return NULL;\n        }\n        Py_RETURN_NONE;\n    }\n\n    static PyObject* RtAudio_isStreamRunning(PyRtAudio *self, PyObject *args)\n    {\n       if (self == NULL || self->dac == NULL) return NULL;\n\n       if (self->dac == NULL) {\n            Py_RETURN_FALSE;\n        }\n        if (self->dac->isStreamRunning())\n            Py_RETURN_TRUE;\n        else\n            Py_RETURN_FALSE;\n    }\n\n    static PyObject* RtAudio_isStreamOpen(PyRtAudio *self, PyObject *args)\n    {\n        if (self == NULL || self->dac == NULL) return NULL;\n\n        if (self->dac == NULL) {\n            Py_RETURN_FALSE;\n        }\n        if (self->dac->isStreamOpen())\n            Py_RETURN_TRUE;\n        else\n            Py_RETURN_FALSE;\n\n    }\n\n    static PyObject* RtAudio_getDeviceCount(PyRtAudio *self, PyObject *args)\n    {\n        if (self == NULL || self->dac == NULL) return NULL;\n\n        return PyInt_FromLong(self->dac->getDeviceCount());\n    }\n\n    static PyObject* RtAudio_getDeviceInfo(PyRtAudio *self, PyObject *args)\n    {\n        if (self == NULL || self->dac == NULL) return NULL;\n\n        int device;\n        if (!PyArg_ParseTuple(args, \"i\", &device))\n            return NULL;\n\n        try {\n            RtAudio::DeviceInfo info = self->dac->getDeviceInfo(device);\n\n            PyObject* info_dict = PyDict_New();\n\n            if (info.probed) {\n                Py_INCREF(Py_True);\n                PyDict_SetItemString(info_dict, \"probed\", Py_True);\n            }\n            else {\n                Py_INCREF(Py_False);\n                PyDict_SetItemString(info_dict, \"probed\", Py_False);\n            }\n            PyObject* obj;\n\n            obj = PyString_FromString(info.name.c_str());\n            PyDict_SetItemString(info_dict, \"name\", obj);\n\n            obj = PyInt_FromLong(info.outputChannels);\n            PyDict_SetItemString(info_dict, \"outputChannels\", obj);\n\n            obj = PyInt_FromLong(info.inputChannels);\n            PyDict_SetItemString(info_dict, \"inputChannels\", obj);\n\n            obj = PyInt_FromLong(info.duplexChannels);\n            PyDict_SetItemString(info_dict, \"duplexChannels\", obj);\n\n            if (info.isDefaultOutput) {\n                Py_INCREF(Py_True);\n                PyDict_SetItemString(info_dict, \"isDefaultOutput\", Py_True);\n            }\n            else {\n                Py_INCREF(Py_False);\n                PyDict_SetItemString(info_dict, \"isDefaultOutput\", Py_False);\n            }\n\n            if (info.isDefaultInput) {\n                Py_INCREF(Py_True);\n                PyDict_SetItemString(info_dict, \"isDefaultInput\", Py_True);\n            }\n            else {\n                Py_INCREF(Py_False);\n                PyDict_SetItemString(info_dict, \"isDefaultInput\", Py_False);\n            }\n\n            return info_dict;\n\n        }\n        catch(RtAudioError &error) {\n            PyErr_SetString(RtAudioErrorException, error.getMessage().c_str());\n            Py_INCREF(RtAudioErrorException);\n            return NULL;\n        }\n    }\n\n    static PyObject* RtAudio_getDefaultOutputDevice(PyRtAudio *self, PyObject *args)\n    {\n        if (self == NULL || self->dac == NULL) return NULL;\n        return PyInt_FromLong(self->dac->getDefaultOutputDevice());\n    }\n\n    static PyObject* RtAudio_getDefaultInputDevice(PyRtAudio *self, PyObject *args)\n    {\n        if (self == NULL || self->dac == NULL) return NULL;\n        return PyInt_FromLong(self->dac->getDefaultInputDevice());\n    }\n\n    static PyObject* RtAudio_getStreamTime(PyRtAudio *self, PyObject *args)\n    {\n        if (self == NULL || self->dac == NULL) return NULL;\n        return PyFloat_FromDouble( self->dac->getStreamTime() );\n    }\n\n    static PyObject* RtAudio_getStreamLatency(PyRtAudio *self, PyObject *args)\n    {\n        if (self == NULL || self->dac == NULL) return NULL;\n        return PyInt_FromLong( self->dac->getStreamLatency() );\n    }\n\n    static PyObject* RtAudio_getStreamSampleRate(PyRtAudio *self, PyObject *args)\n    {\n        if (self == NULL || self->dac == NULL) return NULL;\n        return PyInt_FromLong( self->dac->getStreamSampleRate() );\n    }\n\n    static PyObject* RtAudio_showWarnings(PyRtAudio *self, PyObject *args)\n    {\n        if (self == NULL || self->dac == NULL) return NULL;\n\n        PyObject *obj;\n        if (!PyArg_ParseTuple(args, \"O\", &obj))\n            return NULL;\n\n        if (!PyBool_Check(obj))\n            return NULL;\n\n        if (obj == Py_True)\n            self->dac->showWarnings(true);\n        else if (obj == Py_False)\n            self->dac->showWarnings(false);\n        else {\n            printf(\"not true nor false\\n\");\n        }\n        Py_RETURN_NONE;\n    }\n\n\n    static PyMethodDef RtAudio_methods[] = \n    {\n        // TO BE DONE: getCurrentApi(void)\n        {\"getDeviceCount\", (PyCFunction) RtAudio_getDeviceCount, METH_NOARGS,\n        \"A public function that queries for the number of audio devices available.\"},\n        {\"getDeviceInfo\", (PyCFunction) RtAudio_getDeviceInfo, METH_VARARGS,\n        \"Return a dictionary with information for a specified device number.\"},\n        {\"getDefaultOutputDevice\", (PyCFunction) RtAudio_getDefaultOutputDevice, METH_NOARGS,\n        \"A function that returns the index of the default output device.\"},\n        {\"getDefaultInputDevice\", (PyCFunction) RtAudio_getDefaultInputDevice, METH_NOARGS,\n        \"A function that returns the index of the default input device.\"},\n        {\"openStream\", (PyCFunction) RtAudio_openStream, METH_VARARGS,\n        \"A public method for opening a stream with the specified parameters.\"},\n        {\"closeStream\", (PyCFunction) RtAudio_closeStream, METH_NOARGS,\n        \"A function that closes a stream and frees any associated stream memory. \"},\n        {\"startStream\", (PyCFunction) RtAudio_startStream, METH_NOARGS,\n        \"A function that starts a stream. \"},\n        {\"stopStream\", (PyCFunction) RtAudio_stopStream, METH_NOARGS,\n        \"Stop a stream, allowing any samples remaining in the output queue to be played. \"},\n        {\"abortStream\", (PyCFunction) RtAudio_abortStream, METH_NOARGS,\n        \"Stop a stream, discarding any samples remaining in the input/output queue.\"},\n        {\"isStreamOpen\", (PyCFunction) RtAudio_isStreamOpen, METH_NOARGS,\n        \"Returns true if a stream is open and false if not.\"},\n        {\"isStreamRunning\", (PyCFunction) RtAudio_isStreamRunning, METH_NOARGS,\n        \"Returns true if the stream is running and false if it is stopped or not open.\"},\n        {\"getStreamTime\", (PyCFunction) RtAudio_getStreamTime, METH_NOARGS,\n        \"Returns the number of elapsed seconds since the stream was started.\"},\n        {\"getStreamLatency\", (PyCFunction) RtAudio_getStreamLatency, METH_NOARGS,\n        \"Returns the internal stream latency in sample frames.\"},\n        {\"getStreamSampleRate\", (PyCFunction) RtAudio_getStreamSampleRate, METH_NOARGS,\n        \"Returns actual sample rate in use by the stream.\"},\n        {\"showWarnings\", (PyCFunction) RtAudio_showWarnings, METH_VARARGS,\n        \"Specify whether warning messages should be printed to stderr.\"},\n        // TO BE DONE: getCompiledApi (std::vector< RtAudio::Api > &apis) throw ()\n        {NULL}\n    };\n\n\n    static PyTypeObject RtAudio_type = {\n        PyObject_HEAD_INIT(NULL)\n        0,                         /*ob_size*/\n        \"rtaudio.RtAudio\",             /*tp_name*/\n        sizeof(RtAudio), /*tp_basicsize*/\n        0,                         /*tp_itemsize*/\n        (destructor) RtAudio_dealloc,                         /*tp_dealloc*/\n        0,                         /*tp_print*/\n        0,                         /*tp_getattr*/\n        0,                         /*tp_setattr*/\n        0,                         /*tp_compare*/\n        0,                         /*tp_repr*/\n        0,                         /*tp_as_number*/\n        0,                         /*tp_as_sequence*/\n        0,                         /*tp_as_mapping*/\n        0,                         /*tp_hash */\n        0,                         /*tp_call*/\n        0,                         /*tp_str*/\n        0,                         /*tp_getattro*/\n        0,                         /*tp_setattro*/\n        0,                         /*tp_as_buffer*/\n        Py_TPFLAGS_DEFAULT,        /*tp_flags*/\n        \"Audio input device\",           /* tp_doc */\n        0,               /* tp_traverse */\n        0,               /* tp_clear */\n        0,               /* tp_richcompare */\n        0,               /* tp_weaklistoffset */\n        0,               /* tp_iter */\n        0,               /* tp_iternext */\n        RtAudio_methods,             /* tp_methods */\n        0,              /* tp_members */\n        0,                         /* tp_getset */\n        0,                         /* tp_base */\n        0,                         /* tp_dict */\n        0,                         /* tp_descr_get */\n        0,                         /* tp_descr_set */\n        0,                         /* tp_dictoffset */\n        (initproc)RtAudio_init,      /* tp_init */\n        0,                         /* tp_alloc */\n        RtAudio_new,                 /* tp_new */\n        0, /* Low-level free-memory routine */\n\t    0, /* For PyObject_IS_GC */\n\t    0, // PyObject *tp_bases;\n\t    0, // PyObject *tp_mro; /* method resolution order */\n\t    0, //PyObject *tp_cache;\n\t    0, //PyObject *tp_subclasses;\n\t    0, //PyObject *tp_weaklist;\n\t    0, //destructor tp_del;\n        //0,\t/* Type attribute cache version tag. Added in version 2.6 */\n    };\n\n\n\n#ifndef PyMODINIT_FUNC\t/* declarations for DLL import/export */\n#define PyMODINIT_FUNC void\n#endif\n    PyMODINIT_FUNC\n    initrtaudio(void) \n    {\n        PyEval_InitThreads();\n\n        if (PyType_Ready(&RtAudio_type) < 0)\n            return;\n\n        PyObject* module = Py_InitModule3(\"rtaudio\", NULL, \"RtAudio wrapper.\");\n        if (module == NULL)\n            return;\n\n        Py_INCREF(&RtAudio_type);\n        PyModule_AddObject(module, \"RtAudio\", (PyObject *)&RtAudio_type);\n\n        RtAudioErrorException = PyErr_NewException(\"rtaudio.RtError\", NULL, NULL);\n        Py_INCREF(RtAudioErrorException);\n        PyModule_AddObject(module, \"RtError\", RtAudioErrorException);\n    }\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/contrib/python/pyrtaudio/setup.py",
    "content": "#!/bin/env python\n\nimport os\nfrom distutils.core import setup, Extension\n\nif hasattr(os, 'uname'):\n    OSNAME = os.uname()[0]\nelse:\n    OSNAME = 'Windows'\n\n\ndefine_macros = []\nlibraries = []\nextra_link_args = []\nextra_compile_args = ['-I../../../']\nsources = ['rtaudiomodule.cpp', '../../../RtAudio.cpp']\n\n\nif OSNAME == 'Linux':\n    define_macros=[(\"__LINUX_ALSA__\", ''),\n                   ('__LINUX_JACK__', '')]\n    libraries = ['asound', 'jack', 'pthread']\n\nelif OSNAME == 'Darwin':\n    define_macros = [('__MACOSX_CORE__', '')]\n    libraries = ['pthread', 'stdc++']\n    extra_link_args = ['-framework', 'CoreAudio']\n\nelif OSNAME == 'Windows':\n    define_macros = [('__WINDOWS_DS__', None),\n                     ('__WINDOWS_ASIO__', None),\n\t\t     ('__LITTLE_ENDIAN__',None),\n\t\t     ('WIN32',None)]\n    libraries = ['winmm', 'dsound', 'Advapi32','Ole32','User32']\n    sources += ['../../../include/asio.cpp',\n                '../../../include/asiodrivers.cpp',\n                '../../../include/asiolist.cpp',\n                '../../../include/iasiothiscallresolver.cpp']\n    extra_compile_args.append('-I../../../include/')\n    extra_compile_args.append('-EHsc')\n\n\n\naudio = Extension('rtaudio',\n                 sources=sources,\n                 libraries=libraries,\n                 define_macros=define_macros,\n\t\t extra_compile_args = extra_compile_args,\n                 extra_link_args = extra_link_args,\n                 )\n\n\nsetup(name = 'rtaudio',\n      version = '0.1',\n      description = 'Python RtAudio interface',\n      ext_modules = [audio])\n\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/Makefile.am",
    "content": "\nMAINTAINERCLEANFILES=Makefile.in \n\nCLEANFILES=doxygen-build.stamp\n\nDOX=Doxyfile\n\nEXTRA_DIST=html\n\nINSTIMAGES=html/doxygen.png\n\nDOC_STAMPS=doxygen-build.stamp\n\nDOC_DIR=$(HTML_DIR)\n\nall-local: doxygen-build.stamp\n\ndoxygen-build.stamp: doxygen/$(DOX) $(top_srcdir)/RtAudio.h\n\t@echo '*** Running doxygen ***'\n\tcd doxygen; $(DOXYGEN) $(DOX)\n\ttouch doxygen-build.stamp\n\nclean-local:\n\trm -f *~ *.bak $(DOC_STAMPS) || true\n\tif test -d html; then rm -fr html; fi\n\tif test -d latex; then rm -fr latex; fi\n\tif test -d man; then rm -fr man; fi\n\ndistclean-local: clean\n\trm -f *.stamp || true\n\tif test -d html; then rm -rf html; fi\n\nhtml-local: $(DOC_STAMPS)\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/Doxyfile.in",
    "content": "# Doxyfile 1.8.3.1\n\n# This file describes the settings to be used by the documentation system\n# doxygen (www.doxygen.org) for a project\n#\n# All text after a hash (#) is considered a comment and will be ignored\n# The format is:\n#       TAG = value [value, ...]\n# For lists items can also be appended using:\n#       TAG += value [value, ...]\n# Values that contain spaces should be placed between quotes (\" \")\n\n#---------------------------------------------------------------------------\n# Project related configuration options\n#---------------------------------------------------------------------------\n\n# This tag specifies the encoding used for all characters in the config file \n# that follow. The default is UTF-8 which is also the encoding used for all \n# text before the first occurrence of this tag. Doxygen uses libiconv (or the \n# iconv built into libc) for the transcoding. See \n# http://www.gnu.org/software/libiconv for the list of possible encodings.\n\nDOXYFILE_ENCODING      = UTF-8\n\n# The PROJECT_NAME tag is a single word (or sequence of words) that should \n# identify the project. Note that if you do not use Doxywizard you need \n# to put quotes around the project name if it contains spaces.\n\nPROJECT_NAME           = RtAudio\n\n# The PROJECT_NUMBER tag can be used to enter a project or revision number. \n# This could be handy for archiving the generated documentation or \n# if some version control system is used.\n\nPROJECT_NUMBER         = @PACKAGE_VERSION@\n\n# Using the PROJECT_BRIEF tag one can provide an optional one line description \n# for a project that appears at the top of each page and should give viewer \n# a quick idea about the purpose of the project. Keep the description short.\n\nPROJECT_BRIEF          = \n\n# With the PROJECT_LOGO tag one can specify an logo or icon that is \n# included in the documentation. The maximum height of the logo should not \n# exceed 55 pixels and the maximum width should not exceed 200 pixels. \n# Doxygen will copy the logo to the output directory.\n\nPROJECT_LOGO           = \n\n# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) \n# base path where the generated documentation will be put. \n# If a relative path is entered, it will be relative to the location \n# where doxygen was started. If left blank the current directory will be used.\n\nOUTPUT_DIRECTORY       = .\n\n# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create \n# 4096 sub-directories (in 2 levels) under the output directory of each output \n# format and will distribute the generated files over these directories. \n# Enabling this option can be useful when feeding doxygen a huge amount of \n# source files, where putting all generated files in the same directory would \n# otherwise cause performance problems for the file system.\n\nCREATE_SUBDIRS         = NO\n\n# The OUTPUT_LANGUAGE tag is used to specify the language in which all \n# documentation generated by doxygen is written. Doxygen will use this \n# information to generate all constant output in the proper language. \n# The default language is English, other supported languages are: \n# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, \n# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, \n# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English \n# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, \n# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, \n# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.\n\nOUTPUT_LANGUAGE        = English\n\n# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will \n# include brief member descriptions after the members that are listed in \n# the file and class documentation (similar to JavaDoc). \n# Set to NO to disable this.\n\nBRIEF_MEMBER_DESC      = YES\n\n# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend \n# the brief description of a member or function before the detailed description. \n# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the \n# brief descriptions will be completely suppressed.\n\nREPEAT_BRIEF           = YES\n\n# This tag implements a quasi-intelligent brief description abbreviator \n# that is used to form the text in various listings. Each string \n# in this list, if found as the leading text of the brief description, will be \n# stripped from the text and the result after processing the whole list, is \n# used as the annotated text. Otherwise, the brief description is used as-is. \n# If left blank, the following values are used (\"$name\" is automatically \n# replaced with the name of the entity): \"The $name class\" \"The $name widget\" \n# \"The $name file\" \"is\" \"provides\" \"specifies\" \"contains\" \n# \"represents\" \"a\" \"an\" \"the\"\n\nABBREVIATE_BRIEF       = \"The $name class\" \\\n                         \"The $name widget\" \\\n                         \"The $name file\" \\\n                         is \\\n                         provides \\\n                         specifies \\\n                         contains \\\n                         represents \\\n                         a \\\n                         an \\\n                         the\n\n# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then \n# Doxygen will generate a detailed section even if there is only a brief \n# description.\n\nALWAYS_DETAILED_SEC    = NO\n\n# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all \n# inherited members of a class in the documentation of that class as if those \n# members were ordinary class members. Constructors, destructors and assignment \n# operators of the base classes will not be shown.\n\nINLINE_INHERITED_MEMB  = NO\n\n# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full \n# path before files name in the file list and in the header files. If set \n# to NO the shortest path that makes the file name unique will be used.\n\nFULL_PATH_NAMES        = NO\n\n# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag \n# can be used to strip a user-defined part of the path. Stripping is \n# only done if one of the specified strings matches the left-hand part of \n# the path. The tag can be used to show relative paths in the file list. \n# If left blank the directory from which doxygen is run is used as the \n# path to strip. Note that you specify absolute paths here, but also \n# relative paths, which will be relative from the directory where doxygen is \n# started.\n\nSTRIP_FROM_PATH        = \n\n# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of \n# the path mentioned in the documentation of a class, which tells \n# the reader which header file to include in order to use a class. \n# If left blank only the name of the header file containing the class \n# definition is used. Otherwise one should specify the include paths that \n# are normally passed to the compiler using the -I flag.\n\nSTRIP_FROM_INC_PATH    = \n\n# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter \n# (but less readable) file names. This can be useful if your file system \n# doesn't support long names like on DOS, Mac, or CD-ROM.\n\nSHORT_NAMES            = NO\n\n# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen \n# will interpret the first line (until the first dot) of a JavaDoc-style \n# comment as the brief description. If set to NO, the JavaDoc \n# comments will behave just like regular Qt-style comments \n# (thus requiring an explicit @brief command for a brief description.)\n\nJAVADOC_AUTOBRIEF      = NO\n\n# If the QT_AUTOBRIEF tag is set to YES then Doxygen will \n# interpret the first line (until the first dot) of a Qt-style \n# comment as the brief description. If set to NO, the comments \n# will behave just like regular Qt-style comments (thus requiring \n# an explicit \\brief command for a brief description.)\n\nQT_AUTOBRIEF           = NO\n\n# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen \n# treat a multi-line C++ special comment block (i.e. a block of //! or /// \n# comments) as a brief description. This used to be the default behaviour. \n# The new default is to treat a multi-line C++ comment block as a detailed \n# description. Set this tag to YES if you prefer the old behaviour instead.\n\nMULTILINE_CPP_IS_BRIEF = NO\n\n# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented \n# member inherits the documentation from any documented member that it \n# re-implements.\n\nINHERIT_DOCS           = YES\n\n# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce \n# a new page for each member. If set to NO, the documentation of a member will \n# be part of the file/class/namespace that contains it.\n\nSEPARATE_MEMBER_PAGES  = NO\n\n# The TAB_SIZE tag can be used to set the number of spaces in a tab. \n# Doxygen uses this value to replace tabs by spaces in code fragments.\n\nTAB_SIZE               = 8\n\n# This tag can be used to specify a number of aliases that acts \n# as commands in the documentation. An alias has the form \"name=value\". \n# For example adding \"sideeffect=\\par Side Effects:\\n\" will allow you to \n# put the command \\sideeffect (or @sideeffect) in the documentation, which \n# will result in a user-defined paragraph with heading \"Side Effects:\". \n# You can put \\n's in the value part of an alias to insert newlines.\n\nALIASES                = \n\n# This tag can be used to specify a number of word-keyword mappings (TCL only). \n# A mapping has the form \"name=value\". For example adding \n# \"class=itcl::class\" will allow you to use the command class in the \n# itcl::class meaning.\n\nTCL_SUBST              = \n\n# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C \n# sources only. Doxygen will then generate output that is more tailored for C. \n# For instance, some of the names that are used will be different. The list \n# of all members will be omitted, etc.\n\nOPTIMIZE_OUTPUT_FOR_C  = NO\n\n# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java \n# sources only. Doxygen will then generate output that is more tailored for \n# Java. For instance, namespaces will be presented as packages, qualified \n# scopes will look different, etc.\n\nOPTIMIZE_OUTPUT_JAVA   = NO\n\n# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran \n# sources only. Doxygen will then generate output that is more tailored for \n# Fortran.\n\nOPTIMIZE_FOR_FORTRAN   = NO\n\n# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL \n# sources. Doxygen will then generate output that is tailored for \n# VHDL.\n\nOPTIMIZE_OUTPUT_VHDL   = NO\n\n# Doxygen selects the parser to use depending on the extension of the files it \n# parses. With this tag you can assign which parser to use for a given \n# extension. Doxygen has a built-in mapping, but you can override or extend it \n# using this tag. The format is ext=language, where ext is a file extension, \n# and language is one of the parsers supported by doxygen: IDL, Java, \n# Javascript, CSharp, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, \n# C++. For instance to make doxygen treat .inc files as Fortran files (default \n# is PHP), and .f files as C (default is Fortran), use: inc=Fortran f=C. Note \n# that for custom extensions you also need to set FILE_PATTERNS otherwise the \n# files are not read by doxygen.\n\nEXTENSION_MAPPING      = \n\n# If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all \n# comments according to the Markdown format, which allows for more readable \n# documentation. See http://daringfireball.net/projects/markdown/ for details. \n# The output of markdown processing is further processed by doxygen, so you \n# can mix doxygen, HTML, and XML commands with Markdown formatting. \n# Disable only in case of backward compatibilities issues.\n\nMARKDOWN_SUPPORT       = YES\n\n# When enabled doxygen tries to link words that correspond to documented classes, \n# or namespaces to their corresponding documentation. Such a link can be \n# prevented in individual cases by by putting a % sign in front of the word or \n# globally by setting AUTOLINK_SUPPORT to NO.\n\nAUTOLINK_SUPPORT       = YES\n\n# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want \n# to include (a tag file for) the STL sources as input, then you should \n# set this tag to YES in order to let doxygen match functions declarations and \n# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. \n# func(std::string) {}). This also makes the inheritance and collaboration \n# diagrams that involve STL classes more complete and accurate.\n\nBUILTIN_STL_SUPPORT    = NO\n\n# If you use Microsoft's C++/CLI language, you should set this option to YES to \n# enable parsing support.\n\nCPP_CLI_SUPPORT        = NO\n\n# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. \n# Doxygen will parse them like normal C++ but will assume all classes use public \n# instead of private inheritance when no explicit protection keyword is present.\n\nSIP_SUPPORT            = NO\n\n# For Microsoft's IDL there are propget and propput attributes to indicate \n# getter and setter methods for a property. Setting this option to YES (the \n# default) will make doxygen replace the get and set methods by a property in \n# the documentation. This will only work if the methods are indeed getting or \n# setting a simple type. If this is not the case, or you want to show the \n# methods anyway, you should set this option to NO.\n\nIDL_PROPERTY_SUPPORT   = YES\n\n# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC \n# tag is set to YES, then doxygen will reuse the documentation of the first \n# member in the group (if any) for the other members of the group. By default \n# all members of a group must be documented explicitly.\n\nDISTRIBUTE_GROUP_DOC   = NO\n\n# Set the SUBGROUPING tag to YES (the default) to allow class member groups of \n# the same type (for instance a group of public functions) to be put as a \n# subgroup of that type (e.g. under the Public Functions section). Set it to \n# NO to prevent subgrouping. Alternatively, this can be done per class using \n# the \\nosubgrouping command.\n\nSUBGROUPING            = YES\n\n# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and \n# unions are shown inside the group in which they are included (e.g. using \n# @ingroup) instead of on a separate page (for HTML and Man pages) or \n# section (for LaTeX and RTF).\n\nINLINE_GROUPED_CLASSES = NO\n\n# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and \n# unions with only public data fields will be shown inline in the documentation \n# of the scope in which they are defined (i.e. file, namespace, or group \n# documentation), provided this scope is documented. If set to NO (the default), \n# structs, classes, and unions are shown on a separate page (for HTML and Man \n# pages) or section (for LaTeX and RTF).\n\nINLINE_SIMPLE_STRUCTS  = NO\n\n# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum \n# is documented as struct, union, or enum with the name of the typedef. So \n# typedef struct TypeS {} TypeT, will appear in the documentation as a struct \n# with name TypeT. When disabled the typedef will appear as a member of a file, \n# namespace, or class. And the struct will be named TypeS. This can typically \n# be useful for C code in case the coding convention dictates that all compound \n# types are typedef'ed and only the typedef is referenced, never the tag name.\n\nTYPEDEF_HIDES_STRUCT   = NO\n\n# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to \n# determine which symbols to keep in memory and which to flush to disk. \n# When the cache is full, less often used symbols will be written to disk. \n# For small to medium size projects (<1000 input files) the default value is \n# probably good enough. For larger projects a too small cache size can cause \n# doxygen to be busy swapping symbols to and from disk most of the time \n# causing a significant performance penalty. \n# If the system has enough physical memory increasing the cache will improve the \n# performance by keeping more symbols in memory. Note that the value works on \n# a logarithmic scale so increasing the size by one will roughly double the \n# memory usage. The cache size is given by this formula: \n# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, \n# corresponding to a cache size of 2^16 = 65536 symbols.\n\nSYMBOL_CACHE_SIZE      = 0\n\n# Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be \n# set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given \n# their name and scope. Since this can be an expensive process and often the \n# same symbol appear multiple times in the code, doxygen keeps a cache of \n# pre-resolved symbols. If the cache is too small doxygen will become slower. \n# If the cache is too large, memory is wasted. The cache size is given by this \n# formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, \n# corresponding to a cache size of 2^16 = 65536 symbols.\n\nLOOKUP_CACHE_SIZE      = 0\n\n#---------------------------------------------------------------------------\n# Build related configuration options\n#---------------------------------------------------------------------------\n\n# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in \n# documentation are documented, even if no documentation was available. \n# Private class members and static file members will be hidden unless \n# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES\n\nEXTRACT_ALL            = NO\n\n# If the EXTRACT_PRIVATE tag is set to YES all private members of a class \n# will be included in the documentation.\n\nEXTRACT_PRIVATE        = NO\n\n# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal \n# scope will be included in the documentation.\n\nEXTRACT_PACKAGE        = NO\n\n# If the EXTRACT_STATIC tag is set to YES all static members of a file \n# will be included in the documentation.\n\nEXTRACT_STATIC         = NO\n\n# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) \n# defined locally in source files will be included in the documentation. \n# If set to NO only classes defined in header files are included.\n\nEXTRACT_LOCAL_CLASSES  = YES\n\n# This flag is only useful for Objective-C code. When set to YES local \n# methods, which are defined in the implementation section but not in \n# the interface are included in the documentation. \n# If set to NO (the default) only methods in the interface are included.\n\nEXTRACT_LOCAL_METHODS  = NO\n\n# If this flag is set to YES, the members of anonymous namespaces will be \n# extracted and appear in the documentation as a namespace called \n# 'anonymous_namespace{file}', where file will be replaced with the base \n# name of the file that contains the anonymous namespace. By default \n# anonymous namespaces are hidden.\n\nEXTRACT_ANON_NSPACES   = NO\n\n# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all \n# undocumented members of documented classes, files or namespaces. \n# If set to NO (the default) these members will be included in the \n# various overviews, but no documentation section is generated. \n# This option has no effect if EXTRACT_ALL is enabled.\n\nHIDE_UNDOC_MEMBERS     = YES\n\n# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all \n# undocumented classes that are normally visible in the class hierarchy. \n# If set to NO (the default) these classes will be included in the various \n# overviews. This option has no effect if EXTRACT_ALL is enabled.\n\nHIDE_UNDOC_CLASSES     = YES\n\n# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all \n# friend (class|struct|union) declarations. \n# If set to NO (the default) these declarations will be included in the \n# documentation.\n\nHIDE_FRIEND_COMPOUNDS  = NO\n\n# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any \n# documentation blocks found inside the body of a function. \n# If set to NO (the default) these blocks will be appended to the \n# function's detailed documentation block.\n\nHIDE_IN_BODY_DOCS      = NO\n\n# The INTERNAL_DOCS tag determines if documentation \n# that is typed after a \\internal command is included. If the tag is set \n# to NO (the default) then the documentation will be excluded. \n# Set it to YES to include the internal documentation.\n\nINTERNAL_DOCS          = NO\n\n# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate \n# file names in lower-case letters. If set to YES upper-case letters are also \n# allowed. This is useful if you have classes or files whose names only differ \n# in case and if your file system supports case sensitive file names. Windows \n# and Mac users are advised to set this option to NO.\n\nCASE_SENSE_NAMES       = YES\n\n# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen \n# will show members with their full class and namespace scopes in the \n# documentation. If set to YES the scope will be hidden.\n\nHIDE_SCOPE_NAMES       = NO\n\n# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen \n# will put a list of the files that are included by a file in the documentation \n# of that file.\n\nSHOW_INCLUDE_FILES     = YES\n\n# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen \n# will list include files with double quotes in the documentation \n# rather than with sharp brackets.\n\nFORCE_LOCAL_INCLUDES   = NO\n\n# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] \n# is inserted in the documentation for inline members.\n\nINLINE_INFO            = YES\n\n# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen \n# will sort the (detailed) documentation of file and class members \n# alphabetically by member name. If set to NO the members will appear in \n# declaration order.\n\nSORT_MEMBER_DOCS       = NO\n\n# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the \n# brief documentation of file, namespace and class members alphabetically \n# by member name. If set to NO (the default) the members will appear in \n# declaration order.\n\nSORT_BRIEF_DOCS        = NO\n\n# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen \n# will sort the (brief and detailed) documentation of class members so that \n# constructors and destructors are listed first. If set to NO (the default) \n# the constructors will appear in the respective orders defined by \n# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. \n# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO \n# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.\n\nSORT_MEMBERS_CTORS_1ST = NO\n\n# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the \n# hierarchy of group names into alphabetical order. If set to NO (the default) \n# the group names will appear in their defined order.\n\nSORT_GROUP_NAMES       = NO\n\n# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be \n# sorted by fully-qualified names, including namespaces. If set to \n# NO (the default), the class list will be sorted only by class name, \n# not including the namespace part. \n# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. \n# Note: This option applies only to the class list, not to the \n# alphabetical list.\n\nSORT_BY_SCOPE_NAME     = NO\n\n# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to \n# do proper type resolution of all parameters of a function it will reject a \n# match between the prototype and the implementation of a member function even \n# if there is only one candidate or it is obvious which candidate to choose \n# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen \n# will still accept a match between prototype and implementation in such cases.\n\nSTRICT_PROTO_MATCHING  = NO\n\n# The GENERATE_TODOLIST tag can be used to enable (YES) or \n# disable (NO) the todo list. This list is created by putting \\todo \n# commands in the documentation.\n\nGENERATE_TODOLIST      = YES\n\n# The GENERATE_TESTLIST tag can be used to enable (YES) or \n# disable (NO) the test list. This list is created by putting \\test \n# commands in the documentation.\n\nGENERATE_TESTLIST      = YES\n\n# The GENERATE_BUGLIST tag can be used to enable (YES) or \n# disable (NO) the bug list. This list is created by putting \\bug \n# commands in the documentation.\n\nGENERATE_BUGLIST       = YES\n\n# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or \n# disable (NO) the deprecated list. This list is created by putting \n# \\deprecated commands in the documentation.\n\nGENERATE_DEPRECATEDLIST= YES\n\n# The ENABLED_SECTIONS tag can be used to enable conditional \n# documentation sections, marked by \\if section-label ... \\endif \n# and \\cond section-label ... \\endcond blocks.\n\nENABLED_SECTIONS       = \n\n# The MAX_INITIALIZER_LINES tag determines the maximum number of lines \n# the initial value of a variable or macro consists of for it to appear in \n# the documentation. If the initializer consists of more lines than specified \n# here it will be hidden. Use a value of 0 to hide initializers completely. \n# The appearance of the initializer of individual variables and macros in the \n# documentation can be controlled using \\showinitializer or \\hideinitializer \n# command in the documentation regardless of this setting.\n\nMAX_INITIALIZER_LINES  = 30\n\n# Set the SHOW_USED_FILES tag to NO to disable the list of files generated \n# at the bottom of the documentation of classes and structs. If set to YES the \n# list will mention the files that were used to generate the documentation.\n\nSHOW_USED_FILES        = YES\n\n# Set the SHOW_FILES tag to NO to disable the generation of the Files page. \n# This will remove the Files entry from the Quick Index and from the \n# Folder Tree View (if specified). The default is YES.\n\nSHOW_FILES             = YES\n\n# Set the SHOW_NAMESPACES tag to NO to disable the generation of the \n# Namespaces page.  This will remove the Namespaces entry from the Quick Index \n# and from the Folder Tree View (if specified). The default is YES.\n\nSHOW_NAMESPACES        = YES\n\n# The FILE_VERSION_FILTER tag can be used to specify a program or script that \n# doxygen should invoke to get the current version for each file (typically from \n# the version control system). Doxygen will invoke the program by executing (via \n# popen()) the command <command> <input-file>, where <command> is the value of \n# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file \n# provided by doxygen. Whatever the program writes to standard output \n# is used as the file version. See the manual for examples.\n\nFILE_VERSION_FILTER    = \n\n# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed \n# by doxygen. The layout file controls the global structure of the generated \n# output files in an output format independent way. To create the layout file \n# that represents doxygen's defaults, run doxygen with the -l option. \n# You can optionally specify a file name after the option, if omitted \n# DoxygenLayout.xml will be used as the name of the layout file.\n\nLAYOUT_FILE            = \n\n# The CITE_BIB_FILES tag can be used to specify one or more bib files \n# containing the references data. This must be a list of .bib files. The \n# .bib extension is automatically appended if omitted. Using this command \n# requires the bibtex tool to be installed. See also \n# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style \n# of the bibliography can be controlled using LATEX_BIB_STYLE. To use this \n# feature you need bibtex and perl available in the search path. Do not use \n# file names with spaces, bibtex cannot handle them.\n\nCITE_BIB_FILES         = \n\n#---------------------------------------------------------------------------\n# configuration options related to warning and progress messages\n#---------------------------------------------------------------------------\n\n# The QUIET tag can be used to turn on/off the messages that are generated \n# by doxygen. Possible values are YES and NO. If left blank NO is used.\n\nQUIET                  = NO\n\n# The WARNINGS tag can be used to turn on/off the warning messages that are \n# generated by doxygen. Possible values are YES and NO. If left blank \n# NO is used.\n\nWARNINGS               = YES\n\n# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings \n# for undocumented members. If EXTRACT_ALL is set to YES then this flag will \n# automatically be disabled.\n\nWARN_IF_UNDOCUMENTED   = YES\n\n# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for \n# potential errors in the documentation, such as not documenting some \n# parameters in a documented function, or documenting parameters that \n# don't exist or using markup commands wrongly.\n\nWARN_IF_DOC_ERROR      = YES\n\n# The WARN_NO_PARAMDOC option can be enabled to get warnings for \n# functions that are documented, but have no documentation for their parameters \n# or return value. If set to NO (the default) doxygen will only warn about \n# wrong or incomplete parameter documentation, but not about the absence of \n# documentation.\n\nWARN_NO_PARAMDOC       = NO\n\n# The WARN_FORMAT tag determines the format of the warning messages that \n# doxygen can produce. The string should contain the $file, $line, and $text \n# tags, which will be replaced by the file and line number from which the \n# warning originated and the warning text. Optionally the format may contain \n# $version, which will be replaced by the version of the file (if it could \n# be obtained via FILE_VERSION_FILTER)\n\nWARN_FORMAT            = \"$file:$line: $text\"\n\n# The WARN_LOGFILE tag can be used to specify a file to which warning \n# and error messages should be written. If left blank the output is written \n# to stderr.\n\nWARN_LOGFILE           = \n\n#---------------------------------------------------------------------------\n# configuration options related to the input files\n#---------------------------------------------------------------------------\n\n# The INPUT tag can be used to specify the files and/or directories that contain \n# documented source files. You may enter file names like \"myfile.cpp\" or \n# directories like \"/usr/src/myproject\". Separate the files or directories \n# with spaces.\n\nINPUT                  = . \\\n                         ../../RtAudio.h \\\n                         ../../RtError.h\n\n# This tag can be used to specify the character encoding of the source files \n# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is \n# also the default input encoding. Doxygen uses libiconv (or the iconv built \n# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for \n# the list of possible encodings.\n\nINPUT_ENCODING         = UTF-8\n\n# If the value of the INPUT tag contains directories, you can use the \n# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp \n# and *.h) to filter out the source-files in the directories. If left \n# blank the following patterns are tested: \n# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh \n# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py \n# *.f90 *.f *.for *.vhd *.vhdl\n\nFILE_PATTERNS          = *.txt\n\n# The RECURSIVE tag can be used to turn specify whether or not subdirectories \n# should be searched for input files as well. Possible values are YES and NO. \n# If left blank NO is used.\n\nRECURSIVE              = NO\n\n# The EXCLUDE tag can be used to specify files and/or directories that should be \n# excluded from the INPUT source files. This way you can easily exclude a \n# subdirectory from a directory tree whose root is specified with the INPUT tag. \n# Note that relative paths are relative to the directory from which doxygen is \n# run.\n\nEXCLUDE                = \n\n# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or \n# directories that are symbolic links (a Unix file system feature) are excluded \n# from the input.\n\nEXCLUDE_SYMLINKS       = NO\n\n# If the value of the INPUT tag contains directories, you can use the \n# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude \n# certain files from those directories. Note that the wildcards are matched \n# against the file with absolute path, so to exclude all test directories \n# for example use the pattern */test/*\n\nEXCLUDE_PATTERNS       = \n\n# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names \n# (namespaces, classes, functions, etc.) that should be excluded from the \n# output. The symbol name can be a fully qualified name, a word, or if the \n# wildcard * is used, a substring. Examples: ANamespace, AClass, \n# AClass::ANamespace, ANamespace::*Test\n\nEXCLUDE_SYMBOLS        = \n\n# The EXAMPLE_PATH tag can be used to specify one or more files or \n# directories that contain example code fragments that are included (see \n# the \\include command).\n\nEXAMPLE_PATH           = ../../tests/\n\n# If the value of the EXAMPLE_PATH tag contains directories, you can use the \n# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp \n# and *.h) to filter out the source-files in the directories. If left \n# blank all files are included.\n\nEXAMPLE_PATTERNS       = \n\n# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be \n# searched for input files to be used with the \\include or \\dontinclude \n# commands irrespective of the value of the RECURSIVE tag. \n# Possible values are YES and NO. If left blank NO is used.\n\nEXAMPLE_RECURSIVE      = NO\n\n# The IMAGE_PATH tag can be used to specify one or more files or \n# directories that contain image that are included in the documentation (see \n# the \\image command).\n\nIMAGE_PATH             = \n\n# The INPUT_FILTER tag can be used to specify a program that doxygen should \n# invoke to filter for each input file. Doxygen will invoke the filter program \n# by executing (via popen()) the command <filter> <input-file>, where <filter> \n# is the value of the INPUT_FILTER tag, and <input-file> is the name of an \n# input file. Doxygen will then use the output that the filter program writes \n# to standard output.  If FILTER_PATTERNS is specified, this tag will be \n# ignored.\n\nINPUT_FILTER           = \n\n# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern \n# basis.  Doxygen will compare the file name with each pattern and apply the \n# filter if there is a match.  The filters are a list of the form: \n# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further \n# info on how filters are used. If FILTER_PATTERNS is empty or if \n# non of the patterns match the file name, INPUT_FILTER is applied.\n\nFILTER_PATTERNS        = \n\n# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using \n# INPUT_FILTER) will be used to filter the input files when producing source \n# files to browse (i.e. when SOURCE_BROWSER is set to YES).\n\nFILTER_SOURCE_FILES    = NO\n\n# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file \n# pattern. A pattern will override the setting for FILTER_PATTERN (if any) \n# and it is also possible to disable source filtering for a specific pattern \n# using *.ext= (so without naming a filter). This option only has effect when \n# FILTER_SOURCE_FILES is enabled.\n\nFILTER_SOURCE_PATTERNS = \n\n# If the USE_MD_FILE_AS_MAINPAGE tag refers to the name of a markdown file that \n# is part of the input, its contents will be placed on the main page (index.html). \n# This can be useful if you have a project on for instance GitHub and want reuse \n# the introduction page also for the doxygen output.\n\nUSE_MDFILE_AS_MAINPAGE = \n\n#---------------------------------------------------------------------------\n# configuration options related to source browsing\n#---------------------------------------------------------------------------\n\n# If the SOURCE_BROWSER tag is set to YES then a list of source files will \n# be generated. Documented entities will be cross-referenced with these sources. \n# Note: To get rid of all source code in the generated output, make sure also \n# VERBATIM_HEADERS is set to NO.\n\nSOURCE_BROWSER         = NO\n\n# Setting the INLINE_SOURCES tag to YES will include the body \n# of functions and classes directly in the documentation.\n\nINLINE_SOURCES         = NO\n\n# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct \n# doxygen to hide any special comment blocks from generated source code \n# fragments. Normal C, C++ and Fortran comments will always remain visible.\n\nSTRIP_CODE_COMMENTS    = YES\n\n# If the REFERENCED_BY_RELATION tag is set to YES \n# then for each documented function all documented \n# functions referencing it will be listed.\n\nREFERENCED_BY_RELATION = YES\n\n# If the REFERENCES_RELATION tag is set to YES \n# then for each documented function all documented entities \n# called/used by that function will be listed.\n\nREFERENCES_RELATION    = YES\n\n# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) \n# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from \n# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will \n# link to the source code.  Otherwise they will link to the documentation.\n\nREFERENCES_LINK_SOURCE = YES\n\n# If the USE_HTAGS tag is set to YES then the references to source code \n# will point to the HTML generated by the htags(1) tool instead of doxygen \n# built-in source browser. The htags tool is part of GNU's global source \n# tagging system (see http://www.gnu.org/software/global/global.html). You \n# will need version 4.8.6 or higher.\n\nUSE_HTAGS              = NO\n\n# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen \n# will generate a verbatim copy of the header file for each class for \n# which an include is specified. Set to NO to disable this.\n\nVERBATIM_HEADERS       = YES\n\n#---------------------------------------------------------------------------\n# configuration options related to the alphabetical class index\n#---------------------------------------------------------------------------\n\n# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index \n# of all compounds will be generated. Enable this if the project \n# contains a lot of classes, structs, unions or interfaces.\n\nALPHABETICAL_INDEX     = NO\n\n# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then \n# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns \n# in which this list will be split (can be a number in the range [1..20])\n\nCOLS_IN_ALPHA_INDEX    = 5\n\n# In case all classes in a project start with a common prefix, all \n# classes will be put under the same header in the alphabetical index. \n# The IGNORE_PREFIX tag can be used to specify one or more prefixes that \n# should be ignored while generating the index headers.\n\nIGNORE_PREFIX          = \n\n#---------------------------------------------------------------------------\n# configuration options related to the HTML output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_HTML tag is set to YES (the default) Doxygen will \n# generate HTML output.\n\nGENERATE_HTML          = YES\n\n# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. \n# If a relative path is entered the value of OUTPUT_DIRECTORY will be \n# put in front of it. If left blank `html' will be used as the default path.\n\nHTML_OUTPUT            = ../html\n\n# The HTML_FILE_EXTENSION tag can be used to specify the file extension for \n# each generated HTML page (for example: .htm,.php,.asp). If it is left blank \n# doxygen will generate files with .html extension.\n\nHTML_FILE_EXTENSION    = .html\n\n# The HTML_HEADER tag can be used to specify a personal HTML header for \n# each generated HTML page. If it is left blank doxygen will generate a \n# standard header. Note that when using a custom header you are responsible  \n# for the proper inclusion of any scripts and style sheets that doxygen \n# needs, which is dependent on the configuration options used. \n# It is advised to generate a default header using \"doxygen -w html \n# header.html footer.html stylesheet.css YourConfigFile\" and then modify \n# that header. Note that the header is subject to change so you typically \n# have to redo this when upgrading to a newer version of doxygen or when \n# changing the value of configuration settings such as GENERATE_TREEVIEW!\n\nHTML_HEADER            = header.html\n\n# The HTML_FOOTER tag can be used to specify a personal HTML footer for \n# each generated HTML page. If it is left blank doxygen will generate a \n# standard footer.\n\nHTML_FOOTER            = footer.html\n\n# The HTML_STYLESHEET tag can be used to specify a user-defined cascading \n# style sheet that is used by each HTML page. It can be used to \n# fine-tune the look of the HTML output. If left blank doxygen will \n# generate a default style sheet. Note that it is recommended to use \n# HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this \n# tag will in the future become obsolete.\n\nHTML_STYLESHEET        = \n\n# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional \n# user-defined cascading style sheet that is included after the standard \n# style sheets created by doxygen. Using this option one can overrule \n# certain style aspects. This is preferred over using HTML_STYLESHEET \n# since it does not replace the standard style sheet and is therefor more \n# robust against future updates. Doxygen will copy the style sheet file to \n# the output directory.\n\nHTML_EXTRA_STYLESHEET  = \n\n# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or \n# other source files which should be copied to the HTML output directory. Note \n# that these files will be copied to the base HTML output directory. Use the \n# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these \n# files. In the HTML_STYLESHEET file, use the file name only. Also note that \n# the files will be copied as-is; there are no commands or markers available.\n\nHTML_EXTRA_FILES       = \n\n# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. \n# Doxygen will adjust the colors in the style sheet and background images \n# according to this color. Hue is specified as an angle on a colorwheel, \n# see http://en.wikipedia.org/wiki/Hue for more information. \n# For instance the value 0 represents red, 60 is yellow, 120 is green, \n# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. \n# The allowed range is 0 to 359.\n\nHTML_COLORSTYLE_HUE    = 220\n\n# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of \n# the colors in the HTML output. For a value of 0 the output will use \n# grayscales only. A value of 255 will produce the most vivid colors.\n\nHTML_COLORSTYLE_SAT    = 100\n\n# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to \n# the luminance component of the colors in the HTML output. Values below \n# 100 gradually make the output lighter, whereas values above 100 make \n# the output darker. The value divided by 100 is the actual gamma applied, \n# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, \n# and 100 does not change the gamma.\n\nHTML_COLORSTYLE_GAMMA  = 80\n\n# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML \n# page will contain the date and time when the page was generated. Setting \n# this to NO can help when comparing the output of multiple runs.\n\nHTML_TIMESTAMP         = NO\n\n# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML \n# documentation will contain sections that can be hidden and shown after the \n# page has loaded.\n\nHTML_DYNAMIC_SECTIONS  = NO\n\n# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of \n# entries shown in the various tree structured indices initially; the user \n# can expand and collapse entries dynamically later on. Doxygen will expand \n# the tree to such a level that at most the specified number of entries are \n# visible (unless a fully collapsed tree already exceeds this amount). \n# So setting the number of entries 1 will produce a full collapsed tree by \n# default. 0 is a special value representing an infinite number of entries \n# and will result in a full expanded tree by default.\n\nHTML_INDEX_NUM_ENTRIES = 100\n\n# If the GENERATE_DOCSET tag is set to YES, additional index files \n# will be generated that can be used as input for Apple's Xcode 3 \n# integrated development environment, introduced with OSX 10.5 (Leopard). \n# To create a documentation set, doxygen will generate a Makefile in the \n# HTML output directory. Running make will produce the docset in that \n# directory and running \"make install\" will install the docset in \n# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find \n# it at startup. \n# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html \n# for more information.\n\nGENERATE_DOCSET        = NO\n\n# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the \n# feed. A documentation feed provides an umbrella under which multiple \n# documentation sets from a single provider (such as a company or product suite) \n# can be grouped.\n\nDOCSET_FEEDNAME        = \"Doxygen generated docs\"\n\n# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that \n# should uniquely identify the documentation set bundle. This should be a \n# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen \n# will append .docset to the name.\n\nDOCSET_BUNDLE_ID       = org.doxygen.Project\n\n# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely \n# identify the documentation publisher. This should be a reverse domain-name \n# style string, e.g. com.mycompany.MyDocSet.documentation.\n\nDOCSET_PUBLISHER_ID    = org.doxygen.Publisher\n\n# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher.\n\nDOCSET_PUBLISHER_NAME  = Publisher\n\n# If the GENERATE_HTMLHELP tag is set to YES, additional index files \n# will be generated that can be used as input for tools like the \n# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) \n# of the generated HTML documentation.\n\nGENERATE_HTMLHELP      = NO\n\n# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can \n# be used to specify the file name of the resulting .chm file. You \n# can add a path in front of the file if the result should not be \n# written to the html output directory.\n\nCHM_FILE               = \n\n# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can \n# be used to specify the location (absolute path including file name) of \n# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run \n# the HTML help compiler on the generated index.hhp.\n\nHHC_LOCATION           = \n\n# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag \n# controls if a separate .chi index file is generated (YES) or that \n# it should be included in the master .chm file (NO).\n\nGENERATE_CHI           = NO\n\n# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING \n# is used to encode HtmlHelp index (hhk), content (hhc) and project file \n# content.\n\nCHM_INDEX_ENCODING     = \n\n# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag \n# controls whether a binary table of contents is generated (YES) or a \n# normal table of contents (NO) in the .chm file.\n\nBINARY_TOC             = NO\n\n# The TOC_EXPAND flag can be set to YES to add extra items for group members \n# to the contents of the HTML help documentation and to the tree view.\n\nTOC_EXPAND             = NO\n\n# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and \n# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated \n# that can be used as input for Qt's qhelpgenerator to generate a \n# Qt Compressed Help (.qch) of the generated HTML documentation.\n\nGENERATE_QHP           = NO\n\n# If the QHG_LOCATION tag is specified, the QCH_FILE tag can \n# be used to specify the file name of the resulting .qch file. \n# The path specified is relative to the HTML output folder.\n\nQCH_FILE               = \n\n# The QHP_NAMESPACE tag specifies the namespace to use when generating \n# Qt Help Project output. For more information please see \n# http://doc.trolltech.com/qthelpproject.html#namespace\n\nQHP_NAMESPACE          = org.doxygen.Project\n\n# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating \n# Qt Help Project output. For more information please see \n# http://doc.trolltech.com/qthelpproject.html#virtual-folders\n\nQHP_VIRTUAL_FOLDER     = doc\n\n# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to \n# add. For more information please see \n# http://doc.trolltech.com/qthelpproject.html#custom-filters\n\nQHP_CUST_FILTER_NAME   = \n\n# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the \n# custom filter to add. For more information please see \n# <a href=\"http://doc.trolltech.com/qthelpproject.html#custom-filters\"> \n# Qt Help Project / Custom Filters</a>.\n\nQHP_CUST_FILTER_ATTRS  = \n\n# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this \n# project's \n# filter section matches. \n# <a href=\"http://doc.trolltech.com/qthelpproject.html#filter-attributes\"> \n# Qt Help Project / Filter Attributes</a>.\n\nQHP_SECT_FILTER_ATTRS  = \n\n# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can \n# be used to specify the location of Qt's qhelpgenerator. \n# If non-empty doxygen will try to run qhelpgenerator on the generated \n# .qhp file.\n\nQHG_LOCATION           = \n\n# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files  \n# will be generated, which together with the HTML files, form an Eclipse help \n# plugin. To install this plugin and make it available under the help contents \n# menu in Eclipse, the contents of the directory containing the HTML and XML \n# files needs to be copied into the plugins directory of eclipse. The name of \n# the directory within the plugins directory should be the same as \n# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before \n# the help appears.\n\nGENERATE_ECLIPSEHELP   = NO\n\n# A unique identifier for the eclipse help plugin. When installing the plugin \n# the directory name containing the HTML and XML files should also have \n# this name.\n\nECLIPSE_DOC_ID         = org.doxygen.Project\n\n# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) \n# at top of each HTML page. The value NO (the default) enables the index and \n# the value YES disables it. Since the tabs have the same information as the \n# navigation tree you can set this option to NO if you already set \n# GENERATE_TREEVIEW to YES.\n\nDISABLE_INDEX          = YES\n\n# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index \n# structure should be generated to display hierarchical information. \n# If the tag value is set to YES, a side panel will be generated \n# containing a tree-like index structure (just like the one that \n# is generated for HTML Help). For this to work a browser that supports \n# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). \n# Windows users are probably better off using the HTML help feature. \n# Since the tree basically has the same information as the tab index you \n# could consider to set DISABLE_INDEX to NO when enabling this option.\n\nGENERATE_TREEVIEW      = NO\n\n# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values \n# (range [0,1..20]) that doxygen will group on one line in the generated HTML \n# documentation. Note that a value of 0 will completely suppress the enum \n# values from appearing in the overview section.\n\nENUM_VALUES_PER_LINE   = 4\n\n# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be \n# used to set the initial width (in pixels) of the frame in which the tree \n# is shown.\n\nTREEVIEW_WIDTH         = 250\n\n# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open \n# links to external symbols imported via tag files in a separate window.\n\nEXT_LINKS_IN_WINDOW    = NO\n\n# Use this tag to change the font size of Latex formulas included \n# as images in the HTML documentation. The default is 10. Note that \n# when you change the font size after a successful doxygen run you need \n# to manually remove any form_*.png images from the HTML output directory \n# to force them to be regenerated.\n\nFORMULA_FONTSIZE       = 10\n\n# Use the FORMULA_TRANPARENT tag to determine whether or not the images \n# generated for formulas are transparent PNGs. Transparent PNGs are \n# not supported properly for IE 6.0, but are supported on all modern browsers. \n# Note that when changing this option you need to delete any form_*.png files \n# in the HTML output before the changes have effect.\n\nFORMULA_TRANSPARENT    = YES\n\n# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax \n# (see http://www.mathjax.org) which uses client side Javascript for the \n# rendering instead of using prerendered bitmaps. Use this if you do not \n# have LaTeX installed or if you want to formulas look prettier in the HTML \n# output. When enabled you may also need to install MathJax separately and \n# configure the path to it using the MATHJAX_RELPATH option.\n\nUSE_MATHJAX            = NO\n\n# When MathJax is enabled you can set the default output format to be used for \n# thA MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and \n# SVG. The default value is HTML-CSS, which is slower, but has the best \n# compatibility.\n\nMATHJAX_FORMAT         = HTML-CSS\n\n# When MathJax is enabled you need to specify the location relative to the \n# HTML output directory using the MATHJAX_RELPATH option. The destination \n# directory should contain the MathJax.js script. For instance, if the mathjax \n# directory is located at the same level as the HTML output directory, then \n# MATHJAX_RELPATH should be ../mathjax. The default value points to \n# the MathJax Content Delivery Network so you can quickly see the result without \n# installing MathJax.  However, it is strongly recommended to install a local \n# copy of MathJax from http://www.mathjax.org before deployment.\n\nMATHJAX_RELPATH        = http://cdn.mathjax.org/mathjax/latest\n\n# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension \n# names that should be enabled during MathJax rendering.\n\nMATHJAX_EXTENSIONS     = \n\n# When the SEARCHENGINE tag is enabled doxygen will generate a search box \n# for the HTML output. The underlying search engine uses javascript \n# and DHTML and should work on any modern browser. Note that when using \n# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets \n# (GENERATE_DOCSET) there is already a search function so this one should \n# typically be disabled. For large projects the javascript based search engine \n# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.\n\nSEARCHENGINE           = NO\n\n# When the SERVER_BASED_SEARCH tag is enabled the search engine will be \n# implemented using a web server instead of a web client using Javascript. \n# There are two flavours of web server based search depending on the \n# EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for \n# searching and an index file used by the script. When EXTERNAL_SEARCH is \n# enabled the indexing and searching needs to be provided by external tools. \n# See the manual for details.\n\nSERVER_BASED_SEARCH    = NO\n\n# When EXTERNAL_SEARCH is enabled doxygen will no longer generate the PHP \n# script for searching. Instead the search results are written to an XML file \n# which needs to be processed by an external indexer. Doxygen will invoke an \n# external search engine pointed to by the SEARCHENGINE_URL option to obtain \n# the search results. Doxygen ships with an example indexer (doxyindexer) and \n# search engine (doxysearch.cgi) which are based on the open source search engine \n# library Xapian. See the manual for configuration details.\n\nEXTERNAL_SEARCH        = NO\n\n# The SEARCHENGINE_URL should point to a search engine hosted by a web server \n# which will returned the search results when EXTERNAL_SEARCH is enabled. \n# Doxygen ships with an example search engine (doxysearch) which is based on \n# the open source search engine library Xapian. See the manual for configuration \n# details.\n\nSEARCHENGINE_URL       = \n\n# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed \n# search data is written to a file for indexing by an external tool. With the \n# SEARCHDATA_FILE tag the name of this file can be specified.\n\nSEARCHDATA_FILE        = searchdata.xml\n\n# When SERVER_BASED_SEARCH AND EXTERNAL_SEARCH are both enabled the \n# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is \n# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple \n# projects and redirect the results back to the right project.\n\nEXTERNAL_SEARCH_ID     = \n\n# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen \n# projects other than the one defined by this configuration file, but that are \n# all added to the same external search index. Each project needs to have a \n# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id \n# of to a relative location where the documentation can be found. \n# The format is: EXTRA_SEARCH_MAPPINGS = id1=loc1 id2=loc2 ...\n\nEXTRA_SEARCH_MAPPINGS  = \n\n#---------------------------------------------------------------------------\n# configuration options related to the LaTeX output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will \n# generate Latex output.\n\nGENERATE_LATEX         = NO\n\n# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. \n# If a relative path is entered the value of OUTPUT_DIRECTORY will be \n# put in front of it. If left blank `latex' will be used as the default path.\n\nLATEX_OUTPUT           = latex\n\n# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be \n# invoked. If left blank `latex' will be used as the default command name. \n# Note that when enabling USE_PDFLATEX this option is only used for \n# generating bitmaps for formulas in the HTML output, but not in the \n# Makefile that is written to the output directory.\n\nLATEX_CMD_NAME         = latex\n\n# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to \n# generate index for LaTeX. If left blank `makeindex' will be used as the \n# default command name.\n\nMAKEINDEX_CMD_NAME     = makeindex\n\n# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact \n# LaTeX documents. This may be useful for small projects and may help to \n# save some trees in general.\n\nCOMPACT_LATEX          = NO\n\n# The PAPER_TYPE tag can be used to set the paper type that is used \n# by the printer. Possible values are: a4, letter, legal and \n# executive. If left blank a4wide will be used.\n\nPAPER_TYPE             = letter\n\n# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX \n# packages that should be included in the LaTeX output.\n\nEXTRA_PACKAGES         = \n\n# The LATEX_HEADER tag can be used to specify a personal LaTeX header for \n# the generated latex document. The header should contain everything until \n# the first chapter. If it is left blank doxygen will generate a \n# standard header. Notice: only use this tag if you know what you are doing!\n\nLATEX_HEADER           = \n\n# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for \n# the generated latex document. The footer should contain everything after \n# the last chapter. If it is left blank doxygen will generate a \n# standard footer. Notice: only use this tag if you know what you are doing!\n\nLATEX_FOOTER           = \n\n# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated \n# is prepared for conversion to pdf (using ps2pdf). The pdf file will \n# contain links (just like the HTML output) instead of page references \n# This makes the output suitable for online browsing using a pdf viewer.\n\nPDF_HYPERLINKS         = NO\n\n# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of \n# plain latex in the generated Makefile. Set this option to YES to get a \n# higher quality PDF documentation.\n\nUSE_PDFLATEX           = YES\n\n# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\\\batchmode. \n# command to the generated LaTeX files. This will instruct LaTeX to keep \n# running if errors occur, instead of asking the user for help. \n# This option is also used when generating formulas in HTML.\n\nLATEX_BATCHMODE        = NO\n\n# If LATEX_HIDE_INDICES is set to YES then doxygen will not \n# include the index chapters (such as File Index, Compound Index, etc.) \n# in the output.\n\nLATEX_HIDE_INDICES     = NO\n\n# If LATEX_SOURCE_CODE is set to YES then doxygen will include \n# source code with syntax highlighting in the LaTeX output. \n# Note that which sources are shown also depends on other settings \n# such as SOURCE_BROWSER.\n\nLATEX_SOURCE_CODE      = NO\n\n# The LATEX_BIB_STYLE tag can be used to specify the style to use for the \n# bibliography, e.g. plainnat, or ieeetr. The default style is \"plain\". See \n# http://en.wikipedia.org/wiki/BibTeX for more info.\n\nLATEX_BIB_STYLE        = plain\n\n#---------------------------------------------------------------------------\n# configuration options related to the RTF output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output \n# The RTF output is optimized for Word 97 and may not look very pretty with \n# other RTF readers or editors.\n\nGENERATE_RTF           = NO\n\n# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. \n# If a relative path is entered the value of OUTPUT_DIRECTORY will be \n# put in front of it. If left blank `rtf' will be used as the default path.\n\nRTF_OUTPUT             = rtf\n\n# If the COMPACT_RTF tag is set to YES Doxygen generates more compact \n# RTF documents. This may be useful for small projects and may help to \n# save some trees in general.\n\nCOMPACT_RTF            = NO\n\n# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated \n# will contain hyperlink fields. The RTF file will \n# contain links (just like the HTML output) instead of page references. \n# This makes the output suitable for online browsing using WORD or other \n# programs which support those fields. \n# Note: wordpad (write) and others do not support links.\n\nRTF_HYPERLINKS         = NO\n\n# Load style sheet definitions from file. Syntax is similar to doxygen's \n# config file, i.e. a series of assignments. You only have to provide \n# replacements, missing definitions are set to their default value.\n\nRTF_STYLESHEET_FILE    = \n\n# Set optional variables used in the generation of an rtf document. \n# Syntax is similar to doxygen's config file.\n\nRTF_EXTENSIONS_FILE    = \n\n#---------------------------------------------------------------------------\n# configuration options related to the man page output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_MAN tag is set to YES (the default) Doxygen will \n# generate man pages\n\nGENERATE_MAN           = NO\n\n# The MAN_OUTPUT tag is used to specify where the man pages will be put. \n# If a relative path is entered the value of OUTPUT_DIRECTORY will be \n# put in front of it. If left blank `man' will be used as the default path.\n\nMAN_OUTPUT             = man\n\n# The MAN_EXTENSION tag determines the extension that is added to \n# the generated man pages (default is the subroutine's section .3)\n\nMAN_EXTENSION          = .3\n\n# If the MAN_LINKS tag is set to YES and Doxygen generates man output, \n# then it will generate one additional man file for each entity \n# documented in the real man page(s). These additional files \n# only source the real man page, but without them the man command \n# would be unable to find the correct page. The default is NO.\n\nMAN_LINKS              = NO\n\n#---------------------------------------------------------------------------\n# configuration options related to the XML output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_XML tag is set to YES Doxygen will \n# generate an XML file that captures the structure of \n# the code including all documentation.\n\nGENERATE_XML           = NO\n\n# The XML_OUTPUT tag is used to specify where the XML pages will be put. \n# If a relative path is entered the value of OUTPUT_DIRECTORY will be \n# put in front of it. If left blank `xml' will be used as the default path.\n\nXML_OUTPUT             = xml\n\n# The XML_SCHEMA tag can be used to specify an XML schema, \n# which can be used by a validating XML parser to check the \n# syntax of the XML files.\n\nXML_SCHEMA             = \n\n# The XML_DTD tag can be used to specify an XML DTD, \n# which can be used by a validating XML parser to check the \n# syntax of the XML files.\n\nXML_DTD                = \n\n# If the XML_PROGRAMLISTING tag is set to YES Doxygen will \n# dump the program listings (including syntax highlighting \n# and cross-referencing information) to the XML output. Note that \n# enabling this will significantly increase the size of the XML output.\n\nXML_PROGRAMLISTING     = YES\n\n#---------------------------------------------------------------------------\n# configuration options for the AutoGen Definitions output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will \n# generate an AutoGen Definitions (see autogen.sf.net) file \n# that captures the structure of the code including all \n# documentation. Note that this feature is still experimental \n# and incomplete at the moment.\n\nGENERATE_AUTOGEN_DEF   = NO\n\n#---------------------------------------------------------------------------\n# configuration options related to the Perl module output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_PERLMOD tag is set to YES Doxygen will \n# generate a Perl module file that captures the structure of \n# the code including all documentation. Note that this \n# feature is still experimental and incomplete at the \n# moment.\n\nGENERATE_PERLMOD       = NO\n\n# If the PERLMOD_LATEX tag is set to YES Doxygen will generate \n# the necessary Makefile rules, Perl scripts and LaTeX code to be able \n# to generate PDF and DVI output from the Perl module output.\n\nPERLMOD_LATEX          = NO\n\n# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be \n# nicely formatted so it can be parsed by a human reader.  This is useful \n# if you want to understand what is going on.  On the other hand, if this \n# tag is set to NO the size of the Perl module output will be much smaller \n# and Perl will parse it just the same.\n\nPERLMOD_PRETTY         = YES\n\n# The names of the make variables in the generated doxyrules.make file \n# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. \n# This is useful so different doxyrules.make files included by the same \n# Makefile don't overwrite each other's variables.\n\nPERLMOD_MAKEVAR_PREFIX = \n\n#---------------------------------------------------------------------------\n# Configuration options related to the preprocessor\n#---------------------------------------------------------------------------\n\n# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will \n# evaluate all C-preprocessor directives found in the sources and include \n# files.\n\nENABLE_PREPROCESSING   = YES\n\n# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro \n# names in the source code. If set to NO (the default) only conditional \n# compilation will be performed. Macro expansion can be done in a controlled \n# way by setting EXPAND_ONLY_PREDEF to YES.\n\nMACRO_EXPANSION        = NO\n\n# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES \n# then the macro expansion is limited to the macros specified with the \n# PREDEFINED and EXPAND_AS_DEFINED tags.\n\nEXPAND_ONLY_PREDEF     = NO\n\n# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files \n# pointed to by INCLUDE_PATH will be searched when a #include is found.\n\nSEARCH_INCLUDES        = YES\n\n# The INCLUDE_PATH tag can be used to specify one or more directories that \n# contain include files that are not input files but should be processed by \n# the preprocessor.\n\nINCLUDE_PATH           = \n\n# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard \n# patterns (like *.h and *.hpp) to filter out the header-files in the \n# directories. If left blank, the patterns specified with FILE_PATTERNS will \n# be used.\n\nINCLUDE_FILE_PATTERNS  = \n\n# The PREDEFINED tag can be used to specify one or more macro names that \n# are defined before the preprocessor is started (similar to the -D option of \n# gcc). The argument of the tag is a list of macros of the form: name \n# or name=definition (no spaces). If the definition and the = are \n# omitted =1 is assumed. To prevent a macro definition from being \n# undefined via #undef or recursively expanded use the := operator \n# instead of the = operator.\n\nPREDEFINED             = \n\n# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then \n# this tag can be used to specify a list of macro names that should be expanded. \n# The macro definition that is found in the sources will be used. \n# Use the PREDEFINED tag if you want to use a different macro definition that \n# overrules the definition found in the source code.\n\nEXPAND_AS_DEFINED      = \n\n# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then \n# doxygen's preprocessor will remove all references to function-like macros \n# that are alone on a line, have an all uppercase name, and do not end with a \n# semicolon, because these will confuse the parser if not removed.\n\nSKIP_FUNCTION_MACROS   = YES\n\n#---------------------------------------------------------------------------\n# Configuration::additions related to external references\n#---------------------------------------------------------------------------\n\n# The TAGFILES option can be used to specify one or more tagfiles. For each \n# tag file the location of the external documentation should be added. The \n# format of a tag file without this location is as follows: \n#   TAGFILES = file1 file2 ... \n# Adding location for the tag files is done as follows: \n#   TAGFILES = file1=loc1 \"file2 = loc2\" ... \n# where \"loc1\" and \"loc2\" can be relative or absolute paths \n# or URLs. Note that each tag file must have a unique name (where the name does \n# NOT include the path). If a tag file is not located in the directory in which \n# doxygen is run, you must also specify the path to the tagfile here.\n\nTAGFILES               = \n\n# When a file name is specified after GENERATE_TAGFILE, doxygen will create \n# a tag file that is based on the input files it reads.\n\nGENERATE_TAGFILE       = \n\n# If the ALLEXTERNALS tag is set to YES all external classes will be listed \n# in the class index. If set to NO only the inherited external classes \n# will be listed.\n\nALLEXTERNALS           = NO\n\n# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed \n# in the modules index. If set to NO, only the current project's groups will \n# be listed.\n\nEXTERNAL_GROUPS        = YES\n\n# The PERL_PATH should be the absolute path and name of the perl script \n# interpreter (i.e. the result of `which perl').\n\nPERL_PATH              = /usr/bin/perl\n\n#---------------------------------------------------------------------------\n# Configuration options related to the dot tool\n#---------------------------------------------------------------------------\n\n# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will \n# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base \n# or super classes. Setting the tag to NO turns the diagrams off. Note that \n# this option also works with HAVE_DOT disabled, but it is recommended to \n# install and use dot, since it yields more powerful graphs.\n\nCLASS_DIAGRAMS         = YES\n\n# You can define message sequence charts within doxygen comments using the \\msc \n# command. Doxygen will then run the mscgen tool (see \n# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the \n# documentation. The MSCGEN_PATH tag allows you to specify the directory where \n# the mscgen tool resides. If left empty the tool is assumed to be found in the \n# default search path.\n\nMSCGEN_PATH            = /Applications/Doxygen.app/Contents/Resources/\n\n# If set to YES, the inheritance and collaboration graphs will hide \n# inheritance and usage relations if the target is undocumented \n# or is not a class.\n\nHIDE_UNDOC_RELATIONS   = YES\n\n# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is \n# available from the path. This tool is part of Graphviz, a graph visualization \n# toolkit from AT&T and Lucent Bell Labs. The other options in this section \n# have no effect if this option is set to NO (the default)\n\nHAVE_DOT               = NO\n\n# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is \n# allowed to run in parallel. When set to 0 (the default) doxygen will \n# base this on the number of processors available in the system. You can set it \n# explicitly to a value larger than 0 to get control over the balance \n# between CPU load and processing speed.\n\nDOT_NUM_THREADS        = 0\n\n# By default doxygen will use the Helvetica font for all dot files that \n# doxygen generates. When you want a differently looking font you can specify \n# the font name using DOT_FONTNAME. You need to make sure dot is able to find \n# the font, which can be done by putting it in a standard location or by setting \n# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the \n# directory containing the font.\n\nDOT_FONTNAME           = FreeSans\n\n# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. \n# The default size is 10pt.\n\nDOT_FONTSIZE           = 10\n\n# By default doxygen will tell dot to use the Helvetica font. \n# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to \n# set the path where dot can find it.\n\nDOT_FONTPATH           = \n\n# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen \n# will generate a graph for each documented class showing the direct and \n# indirect inheritance relations. Setting this tag to YES will force the \n# CLASS_DIAGRAMS tag to NO.\n\nCLASS_GRAPH            = YES\n\n# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen \n# will generate a graph for each documented class showing the direct and \n# indirect implementation dependencies (inheritance, containment, and \n# class references variables) of the class with other documented classes.\n\nCOLLABORATION_GRAPH    = YES\n\n# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen \n# will generate a graph for groups, showing the direct groups dependencies\n\nGROUP_GRAPHS           = YES\n\n# If the UML_LOOK tag is set to YES doxygen will generate inheritance and \n# collaboration diagrams in a style similar to the OMG's Unified Modeling \n# Language.\n\nUML_LOOK               = NO\n\n# If the UML_LOOK tag is enabled, the fields and methods are shown inside \n# the class node. If there are many fields or methods and many nodes the \n# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS \n# threshold limits the number of items for each type to make the size more \n# managable. Set this to 0 for no limit. Note that the threshold may be \n# exceeded by 50% before the limit is enforced.\n\nUML_LIMIT_NUM_FIELDS   = 10\n\n# If set to YES, the inheritance and collaboration graphs will show the \n# relations between templates and their instances.\n\nTEMPLATE_RELATIONS     = NO\n\n# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT \n# tags are set to YES then doxygen will generate a graph for each documented \n# file showing the direct and indirect include dependencies of the file with \n# other documented files.\n\nINCLUDE_GRAPH          = YES\n\n# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and \n# HAVE_DOT tags are set to YES then doxygen will generate a graph for each \n# documented header file showing the documented files that directly or \n# indirectly include this file.\n\nINCLUDED_BY_GRAPH      = YES\n\n# If the CALL_GRAPH and HAVE_DOT options are set to YES then \n# doxygen will generate a call dependency graph for every global function \n# or class method. Note that enabling this option will significantly increase \n# the time of a run. So in most cases it will be better to enable call graphs \n# for selected functions only using the \\callgraph command.\n\nCALL_GRAPH             = NO\n\n# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then \n# doxygen will generate a caller dependency graph for every global function \n# or class method. Note that enabling this option will significantly increase \n# the time of a run. So in most cases it will be better to enable caller \n# graphs for selected functions only using the \\callergraph command.\n\nCALLER_GRAPH           = NO\n\n# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen \n# will generate a graphical hierarchy of all classes instead of a textual one.\n\nGRAPHICAL_HIERARCHY    = YES\n\n# If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES \n# then doxygen will show the dependencies a directory has on other directories \n# in a graphical way. The dependency relations are determined by the #include \n# relations between the files in the directories.\n\nDIRECTORY_GRAPH        = YES\n\n# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images \n# generated by dot. Possible values are svg, png, jpg, or gif. \n# If left blank png will be used. If you choose svg you need to set \n# HTML_FILE_EXTENSION to xhtml in order to make the SVG files \n# visible in IE 9+ (other browsers do not have this requirement).\n\nDOT_IMAGE_FORMAT       = png\n\n# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to \n# enable generation of interactive SVG images that allow zooming and panning. \n# Note that this requires a modern browser other than Internet Explorer. \n# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you \n# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files \n# visible. Older versions of IE do not have SVG support.\n\nINTERACTIVE_SVG        = NO\n\n# The tag DOT_PATH can be used to specify the path where the dot tool can be \n# found. If left blank, it is assumed the dot tool can be found in the path.\n\nDOT_PATH               = /Applications/Doxygen.app/Contents/Resources/\n\n# The DOTFILE_DIRS tag can be used to specify one or more directories that \n# contain dot files that are included in the documentation (see the \n# \\dotfile command).\n\nDOTFILE_DIRS           = \n\n# The MSCFILE_DIRS tag can be used to specify one or more directories that \n# contain msc files that are included in the documentation (see the \n# \\mscfile command).\n\nMSCFILE_DIRS           = \n\n# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of \n# nodes that will be shown in the graph. If the number of nodes in a graph \n# becomes larger than this value, doxygen will truncate the graph, which is \n# visualized by representing a node as a red box. Note that doxygen if the \n# number of direct children of the root node in a graph is already larger than \n# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note \n# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.\n\nDOT_GRAPH_MAX_NODES    = 50\n\n# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the \n# graphs generated by dot. A depth value of 3 means that only nodes reachable \n# from the root by following a path via at most 3 edges will be shown. Nodes \n# that lay further from the root node will be omitted. Note that setting this \n# option to 1 or 2 may greatly reduce the computation time needed for large \n# code bases. Also note that the size of a graph can be further restricted by \n# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.\n\nMAX_DOT_GRAPH_DEPTH    = 0\n\n# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent \n# background. This is disabled by default, because dot on Windows does not \n# seem to support this out of the box. Warning: Depending on the platform used, \n# enabling this option may lead to badly anti-aliased labels on the edges of \n# a graph (i.e. they become hard to read).\n\nDOT_TRANSPARENT        = YES\n\n# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output \n# files in one run (i.e. multiple -o and -T options on the command line). This \n# makes dot run faster, but since only newer versions of dot (>1.8.10) \n# support this, this feature is disabled by default.\n\nDOT_MULTI_TARGETS      = NO\n\n# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will \n# generate a legend page explaining the meaning of the various boxes and \n# arrows in the dot generated graphs.\n\nGENERATE_LEGEND        = YES\n\n# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will \n# remove the intermediate dot files that are used to generate \n# the various graphs.\n\nDOT_CLEANUP            = YES\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/acknowledge.txt",
    "content": "/*! \\page acknowledge Acknowledgements\n\nMany thanks to the following people for providing bug fixes and improvements:\n<UL>\n<LI>Stephen Sinclair (major code and repository support!)</LI>\n<LI>Stefan Arisona</LI>\n<LI>Vincent B&eacute;nony</LI>\n<LI>Rasmus Ekman</LI>\n<LI>Anders Ervik</LI>\n<LI>Robin Davies (Windows DS and ASIO)</LI>\n<LI>Martin Koegler</LI>\n<LI>Dmitry Kostjuchenko</LI>\n<LI>Oliver Larkin</LI>\n<LI>Antoine Lefebvre</LI>\n<LI>Carlos Luna</LI>\n<LI>Dominic Mazzoni</LI>\n<LI>Tristan Matthews</LI>\n<LI>Peter Meerwald (PulseAudio)</LI>\n<LI>Benjamin Schroeder</LI>\n<LI>Ryan Williams (Windows non-MS compiler ASIO support)</LI>\n<LI>Ed Wildgoose (Linux ALSA and Jack)</LI>\n\n</UL>\n\nThe RtAudio API incorporates many of the concepts developed in the <A href=\"http://www.portaudio.com/\">PortAudio</A> project by Phil Burk and Ross Bencina.  Early development also incorporated ideas from Bill Schottstaedt's <A href=\"http://www-ccrma.stanford.edu/software/snd/sndlib/\">sndlib</A>.  The CCRMA <A href=\"http://www-ccrma.stanford.edu/groups/soundwire/\">SoundWire group</A> provided valuable feedback during the API proposal stages.\n\nThe early 2.0 version of RtAudio was slowly developed over the course of many months while in residence at the <A href=\"http://www.iua.upf.es/\">Institut Universitari de L'Audiovisual (IUA)</A> in Barcelona, Spain and the <A href=\"http://www.acoustics.hut.fi/\">Laboratory of Acoustics and Audio Signal Processing</A> at the Helsinki University of Technology, Finland.  Much subsequent development happened while working at the <A href=\"http://www-ccrma.stanford.edu/\">Center for Computer Research in Music and Acoustics (CCRMA)</A> at <A href=\"http://www.stanford.edu/\">Stanford University</A>.  All recent versions of RtAudio have been completed while working as an assistant / associate professor of <a href=\"http://www.music.mcgill.ca/musictech/\">Music Technology</a> at <a href=\"http://www.mcgill.ca/\">McGill University</a>.  This work was supported in part by the United States Air Force Office of Scientific Research (grant \\#F49620-99-1-0293).\n\n*/\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/apinotes.txt",
    "content": "/*! \\page apinotes API Notes\n\nRtAudio is designed to provide a common API across the various supported operating systems and audio libraries.  Despite that, some issues should be mentioned with regard to each.\n\n\\section linux Linux:\n\nRtAudio for Linux was developed under Redhat distributions 7.0 - Fedora.  Four different audio APIs are supported on Linux platforms: <A href=\"http://www.opensound.com/oss.html\">OSS</A> (versions >= 4.0), <A href=\"http://www.alsa-project.org/\">ALSA</A>, <A href=\"http://jackit.sourceforge.net/\">Jack</A>, and <A href=\"http://www.freedesktop.org/wiki/Software/PulseAudio\">PulseAudio</A>.  Note that RtAudio now only supports the newer version 4.0 OSS API.  The ALSA API is now part of the Linux kernel and offers significantly better functionality than the OSS API.  RtAudio provides support for the 1.0 and higher versions of ALSA.  Jack is a low-latency audio server written primarily for the GNU/Linux operating system. It can connect a number of different applications to an audio device, as well as allow them to share audio between themselves.  Input/output latency on the order of 15 milliseconds can typically be achieved using any of the Linux APIs by fine-tuning the RtAudio buffer parameters (without kernel modifications).  Latencies on the order of 5 milliseconds or less can be achieved using a low-latency kernel patch and increasing FIFO scheduling priority.  The pthread library, which is used for callback functionality, is a standard component of all Linux distributions.\n\nThe ALSA library includes OSS emulation support.  That means that you can run programs compiled for the OSS API even when using the ALSA drivers and library.  It should be noted however that OSS emulation under ALSA is not perfect.  Specifically, channel number queries seem to consistently produce invalid results.  While OSS emulation is successful for the majority of RtAudio tests, it is recommended that the native ALSA implementation of RtAudio be used on systems which have ALSA drivers installed.\n\nThe ALSA implementation of RtAudio makes no use of the ALSA \"plug\" interface.  All necessary data format conversions, channel compensation, de-interleaving, and byte-swapping is handled by internal RtAudio routines.\n\n\\section macosx Macintosh OS-X (CoreAudio and Jack):\n\nThe Apple CoreAudio API is designed to use a separate callback procedure for each of its audio devices.  A single RtAudio duplex stream using two different devices is supported, though it cannot be guaranteed to always behave correctly because we cannot synchronize these two callbacks.  The <I>numberOfBuffers</I> parameter to the RtAudio::openStream() function has no affect in this implementation.\n\nIt is not possible to have multiple instances of RtAudio accessing the same CoreAudio device.\n\nThe RtAudio Jack support can be compiled on Macintosh OS-X systems, as well as in Linux.\n\n\\section windowsds Windows (DirectSound):\n\nThe \\c configure script provides support for the MinGW compiler.  DirectSound support is specified with the \"--with-ds\" flag.\n\nIn order to compile RtAudio under Windows for the DirectSound API, you must have the header and source files for DirectSound version 5.0 or higher.  As far as I know, there is no DirectSoundCapture support for Windows NT.  Audio output latency with DirectSound can be reasonably good, especially since RtAudio version 3.0.2.  Input audio latency still tends to be bad but better since version 3.0.2.  RtAudio was originally developed with Visual C++ version 6.0 but has been tested with .NET.\n\nThe DirectSound version of RtAudio can be compiled with or without the UNICODE preprocessor definition.\n\n\\section windowsasio Windows (ASIO):\n\nASIO support using MinGW and the \\c configure script is specified with the \"--with-asio\" flag.\n\nThe Steinberg ASIO audio API allows only a single device driver to be loaded and accessed at a time.  ASIO device drivers must be supplied by audio hardware manufacturers, though ASIO emulation is possible on top of systems with DirectSound drivers.  The <I>numberOfBuffers</I> parameter to the RtAudio::openStream() function has no affect in this implementation.\n\nA number of ASIO source and header files are required for use with RtAudio.  Specifically, an RtAudio project must include the following files: <TT>asio.h,cpp; asiodrivers.h,cpp; asiolist.h,cpp; asiodrvr.h; asiosys.h; ginclude.h; iasiodrv.h; iasiothiscallresolver.h,cpp</TT>.  The Visual C++ projects found in <TT>/tests/Windows/</TT> compile both ASIO and DirectSound support.\n\nThe Steinberg provided <TT>asiolist</TT> class does not compile when the preprocessor definition UNICODE is defined.  Note that this could be an issue when using RtAudio with Qt, though Qt programs appear to compile without the UNICODE definition (try <tt>DEFINES -= UNICODE</tt> in your .pro file).  RtAudio with ASIO support has been tested using the MinGW compiler under Windows XP, as well as in the Visual Studio environment.\n\n*/\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/compiling.txt",
    "content": "/*! \\page compiling Debugging & Compiling\n\n\\section debug Debugging\n\nIf you are having problems getting RtAudio to run on your system, make sure to pass a value of \\e true to the RtAudio::showWarnings() function (this is the default setting).  A variety of warning messages will be displayed which may help in determining the problem.  Also, try using the programs included in the <tt>tests</tt> directory.  The program <tt>audioprobe</tt> displays the queried capabilities of all hardware devices found for all APIs compiled.  When using the ALSA and JACK APIs, further information can be displayed by defining the preprocessor definition __RTAUDIO_DEBUG__.\n\n\\section compile Compiling\n\nIn order to compile RtAudio for a specific OS and audio API, it is necessary to supply the appropriate preprocessor definition and library within the compiler statement:\n<P>\n\n<TABLE BORDER=2 COLS=5 WIDTH=\"100%\">\n<TR BGCOLOR=\"beige\">\n  <TD WIDTH=\"5%\"><B>OS:</B></TD>\n  <TD WIDTH=\"5%\"><B>Audio API:</B></TD>\n  <TD WIDTH=\"5%\"><B>C++ Class:</B></TD>\n  <TD WIDTH=\"5%\"><B>Preprocessor Definition:</B></TD>\n  <TD WIDTH=\"5%\"><B>Library or Framework:</B></TD>\n  <TD><B>Example Compiler Statement:</B></TD>\n</TR>\n<TR>\n  <TD>Linux</TD>\n  <TD>ALSA</TD>\n  <TD>RtApiAlsa</TD>\n  <TD>__LINUX_ALSA__</TD>\n  <TD><TT>asound, pthread</TT></TD>\n  <TD><TT>g++ -Wall -D__LINUX_ALSA__ -o audioprobe audioprobe.cpp RtAudio.cpp -lasound -lpthread</TT></TD>\n</TR>\n<TR>\n  <TD>Linux</TD>\n  <TD>PulseAudio</TD>\n  <TD>RtApiPulse</TD>\n  <TD>__LINUX_PULSE__</TD>\n  <TD><TT>pthread</TT></TD>\n  <TD><TT>g++ -Wall -D__LINUX_PULSE__ -o audioprobe audioprobe.cpp RtAudio.cpp -lpthread -lpulse-simple -lpulse</TT></TD>\n</TR>\n<TR>\n  <TD>Linux</TD>\n  <TD>OSS</TD>\n  <TD>RtApiOss</TD>\n  <TD>__LINUX_OSS__</TD>\n  <TD><TT>pthread</TT></TD>\n  <TD><TT>g++ -Wall -D__LINUX_OSS__ -o audioprobe audioprobe.cpp RtAudio.cpp -lpthread</TT></TD>\n</TR>\n<TR>\n  <TD>Linux or Macintosh OS-X</TD>\n  <TD>Jack Audio Server</TD>\n  <TD>RtApiJack</TD>\n  <TD>__UNIX_JACK__</TD>\n  <TD><TT>jack, pthread</TT></TD>\n  <TD><TT>g++ -Wall -D__UNIX_JACK__ -o audioprobe audioprobe.cpp RtAudio.cpp $(pkg-config --cflags --libs jack) -lpthread</TT></TD>\n</TR>\n\n<TR>\n  <TD>Macintosh OS-X</TD>\n  <TD>CoreAudio</TD>\n  <TD>RtApiCore</TD>\n  <TD>__MACOSX_CORE__</TD>\n  <TD><TT>pthread, CoreAudio</TT></TD>\n  <TD><TT>g++ -Wall -D__MACOSX_CORE__ -o audioprobe audioprobe.cpp RtAudio.cpp -framework CoreAudio -framework CoreFoundation -lpthread</TT></TD>\n</TR>\n<TR>\n  <TD>Windows</TD>\n  <TD>Direct Sound</TD>\n  <TD>RtApiDs</TD>\n  <TD>__WINDOWS_DS__</TD>\n  <TD><TT>dsound.lib (ver. 5.0 or higher), multithreaded</TT></TD>\n  <TD>MinGW: <TT>g++ -Wall -D__WINDOWS_DS__ -o audioprobe audioprobe.cpp RtAudio.cpp -lole32 -lwinmm -ldsound</TT></TD>\n</TR>\n<TR>\n  <TD>Windows</TD>\n  <TD>ASIO</TD>\n  <TD>RtApiAsio</TD>\n  <TD>__WINDOWS_ASIO__</TD>\n  <TD><I>various ASIO header and source files</I></TD>\n  <TD>MinGW: <TT>g++ -Wall -D__WINDOWS_ASIO__ -Iinclude -o audioprobe audioprobe.cpp RtAudio.cpp asio.cpp asiolist.cpp asiodrivers.cpp iasiothiscallresolver.cpp -lole32</TT></TD>\n</TR>\n<TR>\n  <TD>Windows</TD>\n  <TD>WASAPI</TD>\n  <TD>RtApiWasapi</TD>\n  <TD>__WINDOWS_WASAPI__</TD>\n  <TD>MinGW: <TT>FunctionDiscoveryKeys_devpkey.h, lksuser, luuid, lwinmm, lole32</TT></TD>\n  <TD>MinGW: <TT>g++ -Wall -D__WINDOWS_WASAPI__ -Iinclude -o audioprobe audioprobe.cpp RtAudio.cpp -lole32 -lwinmm -lksuser -luuid</TT></TD>\n</TR>\n</TABLE>\n<P>\n\nThe example compiler statements above could be used to compile the <TT>audioprobe.cpp</TT> example file, assuming that <TT>audioprobe.cpp</TT>, <TT>RtAudio.h</TT>, <TT>RtAudio.cpp</TT> and any other necessary files all exist in the same directory or the include directory.\n\n\n*/\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/duplex.txt",
    "content": "/*! \\page duplex Duplex Mode\n\nFinally, it is easy to use RtAudio for simultaneous audio input/output, or duplex operation.  In this example, we simply pass the input data back to the output.\n\n\\code\n#include \"RtAudio.h\"\n#include <iostream>\n#include <cstdlib>\n#include <cstring>\n\n// Pass-through function.\nint inout( void *outputBuffer, void *inputBuffer, unsigned int nBufferFrames,\n           double streamTime, RtAudioStreamStatus status, void *data )\n{\n  // Since the number of input and output channels is equal, we can do\n  // a simple buffer copy operation here.\n  if ( status ) std::cout << \"Stream over/underflow detected.\" << std::endl;\n\n  unsigned long *bytes = (unsigned long *) data;\n  memcpy( outputBuffer, inputBuffer, *bytes );\n  return 0;\n}\n\nint main()\n{\n RtAudio adac;\n  if ( adac.getDeviceCount() < 1 ) {\n    std::cout << \"\\nNo audio devices found!\\n\";\n    exit( 0 );\n  }\n\n  // Set the same number of channels for both input and output.\n  unsigned int bufferBytes, bufferFrames = 512;\n  RtAudio::StreamParameters iParams, oParams;\n  iParams.deviceId = 0; // first available device\n  iParams.nChannels = 2;\n  oParams.deviceId = 0; // first available device\n  oParams.nChannels = 2;\n\n  try {\n    adac.openStream( &oParams, &iParams, RTAUDIO_SINT32, 44100, &bufferFrames, &inout, (void *)&bufferBytes );\n  }\n  catch ( RtAudioError& e ) {\n    e.printMessage();\n    exit( 0 );\n  }\n\n  bufferBytes = bufferFrames * 2 * 4;\n\n  try {\n    adac.startStream();\n\n    char input;\n    std::cout << \"\\nRunning ... press <enter> to quit.\\n\";\n    std::cin.get(input);\n\n    // Stop the stream.\n    adac.stopStream();\n  }\n  catch ( RtAudioError& e ) {\n    e.printMessage();\n    goto cleanup;\n  }\n\n cleanup:\n  if ( adac.isStreamOpen() ) adac.closeStream();\n\n  return 0;\n}\n\\endcode\n\nIn this example, audio recorded by the stream input will be played out during the next round of audio processing.\n\nNote that a duplex stream can make use of two different devices (except when using the Linux Jack and Windows ASIO APIs).  However, this may cause timing problems due to possible device clock variations, unless a common external \"sync\" is provided.\n\n*/\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/error.txt",
    "content": "/*! \\page errors Error Handling\n\nRtAudio makes restrained use of C++ exceptions.  That is, exceptions are thrown only when system errors occur that prevent further class operation or when the user makes invalid function calls.  In other cases, a warning message may be displayed and an appropriate value is returned.  For example, if a system error occurs when processing the RtAudio::getDeviceCount() function, the return value is zero.  In such a case, the user cannot expect to make use of most other RtAudio functions because no devices are available (and thus a stream cannot be opened).  A client can call the function RtAudio::showWarnings() with a boolean argument to enable or disable the printing of warning messages to <tt>stderr</tt>.  By default, warning messages are displayed.  There is a protected RtAudio method, error(), that can be modified to globally control how these messages are handled and reported.\n\n*/\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/footer.html",
    "content": "<HR>\n\n<table><tr><td><img src=\"../images/mcgill.gif\" width=165></td>\n  <td>&copy;2001-2017 Gary P. Scavone, McGill University. All Rights Reserved.<br>Maintained by <a href=\"http://www.music.mcgill.ca/~gary/\">Gary P. Scavone</a>.</td></tr>\n</table>\n\n</BODY>\n</HTML>\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/header.html",
    "content": "<HTML>\n<HEAD>\n<TITLE>The RtAudio Home Page</TITLE>\n<LINK HREF=\"doxygen.css\" REL=\"stylesheet\" TYPE=\"text/css\">\n<LINK REL=\"SHORTCUT ICON\" HREF=\"http://www.music.mcgill.ca/~gary/favicon.ico\">\n</HEAD>\n<BODY BGCOLOR=\"#FFFFFF\">\n<CENTER>\n<a class=\"qindex\" href=\"index.html\">Home</a> &nbsp; <a class=\"qindex\" href=\"annotated.html\">Class/Enum List</a> &nbsp; <a class=\"qindex\" href=\"files.html\">File List</a> &nbsp; <a class=\"qindex\" href=\"functions.html\">Compound Members</a> &nbsp; </CENTER>\n<HR>\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/license.txt",
    "content": "/*! \\page license License\n\n    RtAudio: a set of realtime audio i/o C++ classes<BR>\n    Copyright (c) 2001-2017 Gary P. Scavone\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation files\n    (the \"Software\"), to deal in the Software without restriction,\n    including without limitation the rights to use, copy, modify, merge,\n    publish, distribute, sublicense, and/or sell copies of the Software,\n    and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    Any person wishing to distribute modifications to the Software is\n    asked to send the modifications to the original developer so that\n    they can be incorporated into the canonical version.  This is,\n    however, not a binding provision of this license.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\n    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\n    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n*/\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/multi.txt",
    "content": "/*! \\page multi Using Simultaneous Multiple APIs\n\nBecause support for each audio API is encapsulated in a specific RtApi subclass, it is possible to compile and instantiate multiple API-specific subclasses on a given operating system.  For example, one can compile both the RtApiDs and RtApiAsio classes on Windows operating systems by providing the appropriate preprocessor definitions, include files, and libraries for each.  In a run-time situation, one might first attempt to determine whether any ASIO device drivers exist.  This can be done by specifying the api argument RtAudio::WINDOWS_ASIO when attempting to create an instance of RtAudio.  If no available devices are found, then an instance of RtAudio with the api argument RtAudio::WINDOWS_DS can be created.  Alternately, if no api argument is specified, RtAudio will first look for an ASIO instance and then a DirectSound instance (on Linux systems, the default API search order is Jack, Alsa, and finally OSS).  In theory, it should also be possible to have separate instances of RtAudio open at the same time with different underlying audio API support, though this has not been tested.  It is difficult to know how well different audio APIs can simultaneously coexist on a given operating system.  In particular, it is unlikely that the same device could be simultaneously controlled with two different audio APIs.\n\nThe static function RtAudio::getCompiledApi() is provided to determine the available compiled API support.  The function RtAudio::getCurrentApi() indicates the API selected for a given RtAudio instance.\n\n*/\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/playback.txt",
    "content": "/*! \\page playback Playback\n\nIn this example, we provide a complete program that demonstrates the use of RtAudio for audio playback.  Our program produces a two-channel sawtooth waveform for output.\n\n\\code\n#include \"RtAudio.h\"\n#include <iostream>\n#include <cstdlib>\n\n// Two-channel sawtooth wave generator.\nint saw( void *outputBuffer, void *inputBuffer, unsigned int nBufferFrames,\n         double streamTime, RtAudioStreamStatus status, void *userData )\n{\n  unsigned int i, j;\n  double *buffer = (double *) outputBuffer;\n  double *lastValues = (double *) userData;\n\n  if ( status )\n    std::cout << \"Stream underflow detected!\" << std::endl;\n\n  // Write interleaved audio data.\n  for ( i=0; i<nBufferFrames; i++ ) {\n    for ( j=0; j<2; j++ ) {\n      *buffer++ = lastValues[j];\n\n      lastValues[j] += 0.005 * (j+1+(j*0.1));\n      if ( lastValues[j] >= 1.0 ) lastValues[j] -= 2.0;\n    }\n  }\n\n  return 0;\n}\n\nint main()\n{\n  RtAudio dac;\n  if ( dac.getDeviceCount() < 1 ) {\n    std::cout << \"\\nNo audio devices found!\\n\";\n    exit( 0 );\n  }\n\n  RtAudio::StreamParameters parameters;\n  parameters.deviceId = dac.getDefaultOutputDevice();\n  parameters.nChannels = 2;\n  parameters.firstChannel = 0;\n  unsigned int sampleRate = 44100;\n  unsigned int bufferFrames = 256; // 256 sample frames\n  double data[2];\n\n  try {\n    dac.openStream( &parameters, NULL, RTAUDIO_FLOAT64,\n                    sampleRate, &bufferFrames, &saw, (void *)&data );\n    dac.startStream();\n  }\n  catch ( RtAudioError& e ) {\n    e.printMessage();\n    exit( 0 );\n  }\n  \n  char input;\n  std::cout << \"\\nPlaying ... press <enter> to quit.\\n\";\n  std::cin.get( input );\n\n  try {\n    // Stop the stream\n    dac.stopStream();\n  }\n  catch (RtAudioError& e) {\n    e.printMessage();\n  }\n\n  if ( dac.isStreamOpen() ) dac.closeStream();\n\n  return 0;\n}\n\\endcode\n\nWe open the stream in exactly the same way as the previous example (except with a data format change) and specify the address of our callback function \\e \"saw()\". The callback function will automatically be invoked when the underlying audio system needs data for output.  Note that the callback function is called only when the stream is \"running\" (between calls to the RtAudio::startStream() and RtAudio::stopStream() functions).  We can also pass a pointer value to the RtAudio::openStream() function that is made available in the callback function.  In this way, it is possible to gain access to arbitrary data created in our \\e main() function from within the globally defined callback function.\n\nIn this example, we stop the stream with an explicit call to RtAudio::stopStream().  It is also possible to stop a stream by returning a non-zero value from the callback function.  A return value of 1 will cause the stream to finish draining its internal buffers and then halt (equivalent to calling the RtAudio::stopStream() function).   A return value of 2 will cause the stream to stop immediately (equivalent to calling the RtAudio::abortStream() function).\n\n*/\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/probe.txt",
    "content": "/*! \\page probe Probing Device Capabilities\n\nA programmer may wish to query the available audio device capabilities before deciding which to use.  The following example outlines how this can be done.\n\n\\code\n\n// audioprobe.cpp\n\n#include <iostream>\n#include \"RtAudio.h\"\n\nint main()\n{\n  RtAudio audio;\n\n  // Determine the number of devices available\n  unsigned int devices = audio.getDeviceCount();\n\n  // Scan through devices for various capabilities\n  RtAudio::DeviceInfo info;\n  for ( unsigned int i=0; i<devices; i++ ) {\n\n    info = audio.getDeviceInfo( i );\n\n    if ( info.probed == true ) {\n      // Print, for example, the maximum number of output channels for each device\n      std::cout << \"device = \" << i;\n      std::cout << \": maximum output channels = \" << info.outputChannels << \"\\n\";\n    }\n  }\n\n  return 0;\n}\n\\endcode\n\nThe RtAudio::DeviceInfo structure is defined in RtAudio.h and provides a variety of information useful in assessing the capabilities of a device:\n\n\\code\n  typedef struct RtAudio::DeviceInfo {\n    bool probed;                           // true if the device capabilities were successfully probed.\n    std::string name;                      // Character string device identifier.\n    unsigned int outputChannels;           // Maximum output channels supported by device.\n    unsigned int inputChannels;            // Maximum input channels supported by device.\n    unsigned int duplexChannels;           // Maximum simultaneous input/output channels supported by device.\n    bool isDefaultOutput;                  // true if this is the default output device.\n    bool isDefaultInput;                   // true if this is the default input device.\n    std::vector<unsigned int> sampleRates; // Supported sample rates.\n    unsigned int preferredSampleRate;      // Preferred sample rate, eg. for WASAPI the system sample rate.\n    RtAudioFormat nativeFormats;           // Bit mask of supported data formats.\n  };\n\\endcode\n\nThe following data formats are defined and fully supported by RtAudio:\n\n\\code\n  typedef unsigned long RtAudioFormat;\n  static const RtAudioFormat  RTAUDIO_SINT8;   // Signed 8-bit integer\n  static const RtAudioFormat  RTAUDIO_SINT16;  // Signed 16-bit integer\n  static const RtAudioFormat  RTAUDIO_SINT24;  // Signed 24-bit integer (lower 3 bytes of 32-bit signed integer.)\n  static const RtAudioFormat  RTAUDIO_SINT32;  // Signed 32-bit integer\n  static const RtAudioFormat  RTAUDIO_FLOAT32; // 32-bit float normalized between +/- 1.0\n  static const RtAudioFormat  RTAUDIO_FLOAT64; // 64-bit double normalized between +/- 1.0\n\\endcode\n\nThe \\c nativeFormats member of the RtAudio::DeviceInfo structure is a bit mask of the above formats which are natively supported by the device.  However, RtAudio will automatically provide format conversion if a particular format is not natively supported.  When the \\c probed member of the RtAudio::DeviceInfo structure is false, the remaining structure members are undefined and the device is probably unusable.\n\nSome audio devices may require a minimum channel value greater than one.  RtAudio will provide automatic channel number compensation when the number of channels set by the user is less than that required by the device.  Channel compensation is <I>NOT</I> possible when the number of channels set by the user is greater than that supported by the device.\n\nIt should be noted that the capabilities reported by a device driver or underlying audio API are not always accurate and/or may be dependent on a combination of device settings.  For this reason, RtAudio does not rely on the queried values when attempting to open a stream.\n\n*/\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/recording.txt",
    "content": "/*! \\page recording Recording\n\n\nUsing RtAudio for audio input is almost identical to the way it is used for playback.  Here's the blocking playback example rewritten for recording:\n\n\\code\n#include \"RtAudio.h\"\n#include <iostream>\n#include <cstdlib>\n#include <cstring>\n\nint record( void *outputBuffer, void *inputBuffer, unsigned int nBufferFrames,\n         double streamTime, RtAudioStreamStatus status, void *userData )\n{\n  if ( status )\n    std::cout << \"Stream overflow detected!\" << std::endl;\n\n  // Do something with the data in the \"inputBuffer\" buffer.\n\n  return 0;\n}\n\nint main()\n{\n  RtAudio adc;\n  if ( adc.getDeviceCount() < 1 ) {\n    std::cout << \"\\nNo audio devices found!\\n\";\n    exit( 0 );\n  }\n\n  RtAudio::StreamParameters parameters;\n  parameters.deviceId = adc.getDefaultInputDevice();\n  parameters.nChannels = 2;\n  parameters.firstChannel = 0;\n  unsigned int sampleRate = 44100;\n  unsigned int bufferFrames = 256; // 256 sample frames\n\n  try {\n    adc.openStream( NULL, &parameters, RTAUDIO_SINT16,\n                    sampleRate, &bufferFrames, &record );\n    adc.startStream();\n  }\n  catch ( RtAudioError& e ) {\n    e.printMessage();\n    exit( 0 );\n  }\n  \n  char input;\n  std::cout << \"\\nRecording ... press <enter> to quit.\\n\";\n  std::cin.get( input );\n\n  try {\n    // Stop the stream\n    adc.stopStream();\n  }\n  catch (RtAudioError& e) {\n    e.printMessage();\n  }\n\n  if ( adc.isStreamOpen() ) adc.closeStream();\n\n  return 0;\n}\n\\endcode\n\nIn this example, we pass the address of the stream parameter structure as the second argument of the RtAudio::openStream() function and pass a NULL value for the output stream parameters.  In this example, the \\e record() callback function performs no specific operations.\n\n*/\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/settings.txt",
    "content": "/*! \\page settings Device Settings\n\nThe next step in using RtAudio is to open a stream with particular device and parameter settings.\n\n\\code\n\n#include \"RtAudio.h\"\n\nint main()\n{\n  RtAudio dac;\n  if ( dac.getDeviceCount() == 0 ) exit( 0 );\n\n  RtAudio::StreamParameters parameters;\n  parameters.deviceId = dac.getDefaultOutputDevice();\n  parameters.nChannels = 2;\n  unsigned int sampleRate = 44100;\n  unsigned int bufferFrames = 256; // 256 sample frames\n\n  RtAudio::StreamOptions options;\n  options.flags = RTAUDIO_NONINTERLEAVED;\n\n  try {\n    dac.openStream( &parameters, NULL, RTAUDIO_FLOAT32,\n                    sampleRate, &bufferFrames, &myCallback, NULL, &options );\n  }\n  catch ( RtAudioError& e ) {\n    std::cout << '\\n' << e.getMessage() << '\\n' << std::endl;\n    exit( 0 );\n  }\n  \n  return 0;\n}\n\\endcode\n\nThe RtAudio::openStream() function attempts to open a stream with a specified set of parameter values.  In the above example, we attempt to open a two channel playback stream using the default output device, 32-bit floating point data, a sample rate of 44100 Hz, and a frame rate of 256 sample frames per output buffer.  If the user specifies an invalid parameter value (such as a device id greater than or equal to the number of enumerated devices), an RtAudioError is thrown of type = INVALID_USE.   If a system error occurs or the device does not support the specified parameter values, an RtAudioError of type = SYSTEM_ERROR is thrown.  In either case, a descriptive error message is bundled with the exception and can be queried with the RtAudioError::getMessage() or RtAudioError::what() functions.\n\nRtAudio provides four signed integer and two floating point data formats which can be specified using the RtAudioFormat parameter values mentioned earlier.  If the opened device does not natively support the given format, RtAudio will automatically perform the necessary data format conversion.\n\nThe \\c bufferFrames parameter specifies the desired number of sample frames that will be written to and/or read from a device per write/read operation.  This parameter can be used to control stream latency though there is no guarantee that the passed value will be that used by a device.  In general, a lower \\c bufferFrames value will produce less latency but perhaps less robust performance.  A value of zero can be specified, in which case the smallest allowable value will be used.  The \\c bufferFrames parameter is passed as a pointer and the actual value used by the stream is set during the device setup procedure.  \\c bufferFrames values should be a power of two.  Optimal and allowable buffer values tend to vary between systems and devices.  Stream latency can also be controlled via the optional RtAudio::StreamOptions member \\c numberOfBuffers (not used in the example above), though this tends to be more system dependent.  In particular, the \\c numberOfBuffers parameter is ignored when using the OS-X Core Audio, Jack, and the Windows ASIO APIs.\n\nAs noted earlier, the device capabilities reported by a driver or underlying audio API are not always accurate and/or may be dependent on a combination of device settings.  Because of this, RtAudio does not attempt to query a device's capabilities or use previously reported values when opening a device.  Instead, RtAudio simply attempts to set the given parameters on a specified device and then checks whether the setup is successful or not.\n\nThe RtAudioCallback parameter above is a pointer to a user-defined function that will be called whenever the audio system is ready for new output data or has new input data to be read.  Further details on the use of a callback function are provided in the next section.\n\nSeveral stream options are available to fine-tune the behavior of an audio stream.  In the example above, we specify that data will be written by the user in a \\e non-interleaved format via the RtAudio::StreamOptions member \\c flags.  That is, all \\c bufferFrames of the first channel should be written consecutively, followed by all \\c bufferFrames of the second channel.  By default (when no option is specified), RtAudio expects data to be written in an \\e interleaved format.\n\n*/\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/doxygen/tutorial.txt",
    "content": "/*! \\mainpage The RtAudio Home Page\n\nRtAudio is a set of C++ classes that provide a common API (Application Programming Interface) for realtime audio input/output across Linux, Macintosh OS-X and Windows operating systems.  RtAudio significantly simplifies the process of interacting with computer audio hardware.  It was designed with the following objectives:\n\n- object-oriented C++ design\n- simple, common API across all supported platforms\n- only one source and one header file for easy inclusion in programming projects\n- allow simultaneous multi-api support\n- support dynamic connection of devices\n- provide extensive audio device parameter control\n- allow audio device capability probing\n- automatic internal conversion for data format, channel number compensation, (de)interleaving, and byte-swapping\n\nRtAudio incorporates the concept of audio streams, which represent audio output (playback) and/or input (recording).  Available audio devices and their capabilities can be enumerated and then specified when opening a stream.  Where applicable, multiple API support can be compiled and a particular API specified when creating an RtAudio instance.  See the \\ref apinotes section for information specific to each of the supported audio APIs.\n\n\\section whatsnew Latest Updates (Version 5.0.0)\n\nThe version number has been bumped to 5.0.0 because of the past API change concerning the renaming of the RtError class to RtAudioError.  Changes in this release include:\n\n- WASAPI updates (thanks to Marcus Tomlinson)\n- minor exception semantic changes\n- miscellaneous build system updates\n- see git history for complete list of changes\n\n\\section download Download\n\nLatest Release (30 August 2017): <A href=\"http://www.music.mcgill.ca/~gary/rtaudio/release/rtaudio-5.0.0.tar.gz\">Version 5.0.0</A>\n\n\\section documentation Documentation Links\n\n-# \\ref errors\n-# \\ref probe\n-# \\ref settings\n-# \\ref playback\n-# \\ref recording\n-# \\ref duplex\n-# \\ref multi\n-# \\ref compiling\n-# \\ref apinotes\n-# \\ref acknowledge\n-# \\ref license\n-# <A href=\"http://github.com/thestk/rtaudio\">RtAudio on GitHub</A>\n\n*/\n\n-# <A href=\"bugs.html\">Bug Tracker (out of date)</A>\n-# <A href=\"updates.html\">Possible Updates (out of date)</A>\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/doc/release.txt",
    "content": "RtAudio - a set of C++ classes that provide a common API for realtime audio input/output across Linux (native ALSA, JACK, PulseAudio, and OSS), Macintosh OS X (CoreAudio and JACK), and Windows (DirectSound, ASIO and WASAPI) operating systems.\n\nBy Gary P. Scavone, 2001-2017.\n\nv5.0.0: (30 August 2017)\n- see git history for complete list of changes\n- WASAPI updates (thanks to Marcus Tomlinson)\n- minor exception semantic changes\n- miscellaneous build system updates\n\nv4.1.2: (22 February 2016)\n- added more complete automake support (thanks to Stephen Sinclair)\n- miscellaneous small fixes and updates, see github repo commit history for details\n\nv4.1.1: (26 April 2014)\n- updates to WASAPI API for MinGW compiling\n- WASAPI bug fixes for audio INPUT mode\n- DirectSound bug fix for INPUT mode\n- Bug fixes in Core, Jack, ASIO and DS for internal draining in INPUT mode\n- updates to test programs for default device specifiers\n- CMake buildfile update for WASAPI\n- new setStreamTime function\n\nv4.1.0: (10 April 2014)\n- RtError class renamed RtAudioError and embedded in RtAudio.h (RtError.h deleted)\n- new support for the Windows WASAPI API (thanks to Marcus Tomlinson)\n- CMake support (thanks to Berkus Decker)\n- pulse audio update to support bufferFrames argument with audio input (thanks to Jonatan Wallmander)\n- fixes for ALSA API to avoid high CPU usage during stops and to clear stale data before input (thanks to Pluto Hades)\n- miscellaneous efficiency updates suggested by Martin Koegler\n- bug fix for OS-X xrun reporting problem\n- bug fix related to error when opening a stream after closing a previously open stream\n\nv4.0.12: (16 April 2013)\n- new functionality to allow error reporting via a client-supplied function (thanks to Pavel Mogilevskiy)\n- new function to return the version number\n- updated RtAudio.cpp and ASIO files for UNICODE support (thanks to Renaud Schoonbroodt)\n- updates to PulseAudio API support (thanks to Peter Meerwald and Tristan Matthews)\n- updates for pkg-config support in configure script\n- 24-bit format changed to true 24-bit format, not sub-bytes of 32-bits (thanks to Marc Britton)\n- bug fixes to make sure stream status is closed if error during probeDeviceOpen\n- updates / fixes to SCHED_RR code in ALSA (thanks to Marc Lindahl)\n- various changes to avoid global variables (thanks to Martin Koegler)\n\nv4.0.11: (14 June 2012)\n- fixes for memory leaks in ALSA (thanks to Martin Koegler)\n- PulseAudio API support added (thanks to Peter Meerwald and Tristan Matthews)\n- bitwise format flag fixes in OS-X (Benjamin Schroeder and Stefan Arisona)\n- changes to stopStream / drain flag to avoid hung state in ASIO, DS, OS-X, and Jack APIs (Rasmus Ekman and Carlos Luna)\n\nv4.0.10: (30 August 2011)\n- fix for compile bug in Windows DS (counting devices)\n- update to configure and library Makefile\n\nv4.0.9: (14 August 2011)\n- fix for ASIO problem enumerating devices after opening duplex stream (Oliver Larkin)\n- fix for OS-X problems setting sample rate and bits-per-sample\n- updates for OS-X \"Lion\"\n- updates for wide character support in Windows DS (UNICODE)\n- fix for possible ALSA callback thread hang (thanks to Tristan Matthews)\n- fix for DS getDeviceCount bug (vector erase problem)\n\nv4.0.8: (12 April 2011)\n- fix for MinGW4 problem enumerating and setting sample rates (iasiothiscallresolver, Dmitry Kostjuchenko)\n- fix for OS-X problem handling device names in some languages (CFString conversion, Vincent Bénony)\n- small change to OS-X mutex lock location to avoid lockups\n- correction to documentation regarding 24-bit data (should be lower 3 bytes, not upper 3 bytes)\n- bug fix for error handling of warnings (Antoine Lefebvre)\n- added option to use the ALSA \"default\" device (Tristan Matthews)\n- removed use of mutexes in Windows\n- fix for ASIO4ALL behavior when stopping/closing streams (Antoine Lefebvre)\n- included python binding in \"contrib\" directory (beta, Antoine Lefebvre)\n\nv4.0.7: (4 February 2010)\n- revised Windows DS code and device enumeration to speed up device queries\n- OS-X 10.6 updates for deprecated functions\n- updates to Jack shutdown code to avoid lockup\n\nv4.0.6: (3 June 2009)\n- bug fix in ALSA code to set period size to power of two (thanks to Joakim Karrstrom)\n- bug fix in OS-X for OS < 10.5 ... need preprocessor definition around new variable type (thanks to Tristan Matthews)\n\nv4.0.5: (2 February 2009)\n- added support in CoreAudio for arbitrary stream channel configurations\n- added getStreamSampleRate() function because the actual sample rate can sometimes vary slightly from the specified one (thanks to Theo Veenker)\n- added new StreamOptions flag \"RTAUDIO_SCHEDULE_REALTIME\" and attribute \"priority\" to StreamOptions (thanks to Theo Veenker)\n- replaced usleep(50000) in callbackEvent() by a wait on condition variable which gets signaled in startStream() (thanks to Theo Veenker)\n- fix for Jack API when user callback function signals stop or abort calls\n- fix to way stream state is changed to avoid infinite loop problem\n- fix to int<->float conversion in convertBuffer() (thanks to Theo Veenker)\n- bug fix in byteSwapBuffer() (thanks to Stefan Muller Arisona and Theo Veenker)\n- fixed a few gcc 4.4 errors in OS-X\n- fixed bug in rtaudio-config script\n- revised configure script and Makefile structures\n- 64-bit fixes in ALSA API (thanks to Stefan Muller Arisona)\n- fixed ASIO sample rate selection bug (thanks to Sasha Zheligovsky)\n\nv4.0.4: (24 January 2008)\n- added functionality to allow getDeviceInfo() to work in ALSA for an open device (like ASIO)\n- fixes in configure script\n- fixed clearing of error message stream in error()\n- fixed RtAudio::DeviceInfo description in \"probing\" documentation\n- memory leak fixes in ALSA and OSS\n- Jack in/out port flag fix\n- Windows changes for thread priority and GLOBALFOCUS\n\nv4.0.3: (7 December 2007)\n- added support for MinGW compiler to configure script\n- a few MinGW-related changes to RtAudio.cpp\n- renamed test program probe.cpp to audioprobe.cpp\n- moved various header files into single \"include\" directory and updated VC++ project files\n\nv4.0.2: (21 August 2007)\n- fix to RtError::WARNING typo in RtAudio.h (RtApiDummy)\n- removed \"+1\"s in RtApiCore c++ append when getting device name\n\nv4.0.1: (13 August 2007)\n- fix to RtError::WARNING typo in RtAudio.cpp\n\nv4.0.0: (7 August 2007)\n- new support for non-interleaved user data\n- additional input/output parameter specifications, including channel offset\n- new support for dynamic connection of devices\n- new support for stream time\n- revised callback arguments, including separate input and output buffer arguments\n- revised C++ exception handling\n- revised OSS support for version 4.0\n- discontinued support of blocking functionality\n- discontinued support of SGI\n- Windows DirectSound API bug fix\n- NetBSD support (using OSS API) by Emmanuel Dreyfus\n- changed default pthread scheduling priority to SCHED_RR when defined in the system\n- new getCompiledApi() static function\n- new getCurrentApi(), getStreamTime(), getStreamLatency(), and isStreamRunning() functions\n- modified RtAudioDeviceInfo structure to distinguish default input and output devices\n\nv3.0.3: (18 November 2005)\n- UNICODE fix for Windows DirectSound API\n- MinGW compiler fix for ASIO API\n\nv3.0.2: (14 October 2005)\n- modification of ALSA read/write order to fix duplex under/overruns\n- added synchronization of input/output devices for ALSA duplex operation\n- cleaned up and improved error reporting throughout\n- bug fix in Windows DirectSound support for 8-bit audio\n- bug fix in Windows DirectSound support during device capture query\n- added ASIOOutputReady() call near end of callbackEvent to fix some driver behavior\n- added #include <stdio.h> to RtAudio.cpp\n- fixed bug in RtApiCore for duplex operation with different I/O devices\n- improvements to DirectX pointer chasing (by Robin Davies)\n- backdoor RtDsStatistics hook provides DirectX performance information (by Robin Davies)\n- bug fix for non-power-of-two Asio granularity used by Edirol PCR-A30 (by Robin Davies)\n- auto-call CoInitialize for DSOUND and ASIO platforms (by Robin Davies)\n\nv3.0.1: (22 March 2004)\n- bug fix in Windows DirectSound support for cards with output only\n\nv3.0: (11 March 2004)\n- added Linux Jack audio server support\n- new multi-api support by subclassing all apis and making rtaudio a controller class\n- added over/underload check to Mac OS X support\n- new scheme for blocking functionality in callback-based apis (CoreAudio, ASIO, and JACK)\n- removed multiple stream support (all stream indentifier arguments removed)\n- various style and name changes to conform with standard C++ practice\n\nv2.1.1: (24 October 2002)\n- bug fix in duplex for Mac OS X and Windows ASIO code\n- duplex example change in tutorial \n\nv2.1: (7 October 2002)\n- added Mac OS X CoreAudio support\n- added Windows ASIO support\n- API change to getDeviceInfo(): device argument must be an integer between 1 - getDeviceCount().\n- \"configure\" support added for unix systems\n- adopted MIT-like license\n- various internal structural changes and bug fixes\n\nv2.01: (27 April 2002)\n- Windows destructor bug fix when no devices available\n- RtAudioError class renamed to RtError\n- Preprocessor definitions changed slightly (i.e. __LINUX_OSS_ to __LINUX_OSS__) to conform with new Synthesis ToolKit distribution\n\nv2.0: (22 January 2002)\n- first release of new independent class\n\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/asio.cpp",
    "content": "/*\r\n\tSteinberg Audio Stream I/O API\r\n\t(c) 1996, Steinberg Soft- und Hardware GmbH\r\n\r\n\tasio.cpp\r\n\t\r\n\tasio functions entries which translate the\r\n\tasio interface to the asiodrvr class methods\r\n*/ \r\n\t\r\n#include <string.h>\r\n#include \"asiosys.h\"\t\t// platform definition\r\n#include \"asio.h\"\r\n\r\n#if MAC\r\n#include \"asiodrvr.h\"\r\n\r\n#pragma export on\r\n\r\nAsioDriver *theAsioDriver = 0;\r\n\r\nextern \"C\"\r\n{\r\n\r\nlong main()\r\n{\r\n\treturn 'ASIO';\r\n}\r\n\r\n#elif WINDOWS\r\n\r\n#include \"windows.h\"\r\n#include \"iasiodrv.h\"\r\n#include \"asiodrivers.h\"\r\n\r\nIASIO *theAsioDriver = 0;\r\nextern AsioDrivers *asioDrivers;\r\n\r\n#elif SGI || SUN || BEOS || LINUX\r\n#include \"asiodrvr.h\"\r\nstatic AsioDriver *theAsioDriver = 0;\r\n#endif\r\n\r\n//-----------------------------------------------------------------------------------------------------\r\nASIOError ASIOInit(ASIODriverInfo *info)\r\n{\r\n#if MAC || SGI || SUN || BEOS || LINUX\r\n\tif(theAsioDriver)\r\n\t{\r\n\t\tdelete theAsioDriver;\r\n\t\ttheAsioDriver = 0;\r\n\t}\t\t\r\n\tinfo->driverVersion = 0;\r\n\tstrcpy(info->name, \"No ASIO Driver\");\r\n\ttheAsioDriver = getDriver();\r\n\tif(!theAsioDriver)\r\n\t{\r\n\t\tstrcpy(info->errorMessage, \"Not enough memory for the ASIO driver!\"); \r\n\t\treturn ASE_NotPresent;\r\n\t}\r\n\tif(!theAsioDriver->init(info->sysRef))\r\n\t{\r\n\t\ttheAsioDriver->getErrorMessage(info->errorMessage);\r\n\t\tdelete theAsioDriver;\r\n\t\ttheAsioDriver = 0;\r\n\t\treturn ASE_NotPresent;\r\n\t}\r\n\tstrcpy(info->errorMessage, \"No ASIO Driver Error\");\r\n\ttheAsioDriver->getDriverName(info->name);\r\n\tinfo->driverVersion = theAsioDriver->getDriverVersion();\r\n\treturn ASE_OK;\r\n\r\n#else\r\n\r\n\tinfo->driverVersion = 0;\r\n\tstrcpy(info->name, \"No ASIO Driver\");\r\n\tif(theAsioDriver)\t// must be loaded!\r\n\t{\r\n\t\tif(!theAsioDriver->init(info->sysRef))\r\n\t\t{\r\n\t\t\ttheAsioDriver->getErrorMessage(info->errorMessage);\r\n\t\t\ttheAsioDriver = 0;\r\n\t\t\treturn ASE_NotPresent;\r\n\t\t}\t\t\r\n\r\n\t\tstrcpy(info->errorMessage, \"No ASIO Driver Error\");\r\n\t\ttheAsioDriver->getDriverName(info->name);\r\n\t\tinfo->driverVersion = theAsioDriver->getDriverVersion();\r\n\t\treturn ASE_OK;\r\n\t}\r\n\treturn ASE_NotPresent;\r\n\r\n#endif\t// !MAC\r\n}\r\n\r\nASIOError ASIOExit(void)\r\n{\r\n\tif(theAsioDriver)\r\n\t{\r\n#if WINDOWS\r\n\t\tasioDrivers->removeCurrentDriver();\r\n#else\r\n\t\tdelete theAsioDriver;\r\n#endif\r\n\t}\t\t\r\n\ttheAsioDriver = 0;\r\n\treturn ASE_OK;\r\n}\r\n\r\nASIOError ASIOStart(void)\r\n{\r\n\tif(!theAsioDriver)\r\n\t\treturn ASE_NotPresent;\r\n\treturn theAsioDriver->start();\r\n}\r\n\r\nASIOError ASIOStop(void)\r\n{\r\n\tif(!theAsioDriver)\r\n\t\treturn ASE_NotPresent;\r\n\treturn theAsioDriver->stop();\r\n}\r\n\r\nASIOError ASIOGetChannels(long *numInputChannels, long *numOutputChannels)\r\n{\r\n\tif(!theAsioDriver)\r\n\t{\r\n\t\t*numInputChannels = *numOutputChannels = 0;\r\n\t\treturn ASE_NotPresent;\r\n\t}\r\n\treturn theAsioDriver->getChannels(numInputChannels, numOutputChannels);\r\n}\r\n\r\nASIOError ASIOGetLatencies(long *inputLatency, long *outputLatency)\r\n{\r\n\tif(!theAsioDriver)\r\n\t{\r\n\t\t*inputLatency = *outputLatency = 0;\r\n\t\treturn ASE_NotPresent;\r\n\t}\r\n\treturn theAsioDriver->getLatencies(inputLatency, outputLatency);\r\n}\r\n\r\nASIOError ASIOGetBufferSize(long *minSize, long *maxSize, long *preferredSize, long *granularity)\r\n{\r\n\tif(!theAsioDriver)\r\n\t{\r\n\t\t*minSize = *maxSize = *preferredSize = *granularity = 0;\r\n\t\treturn ASE_NotPresent;\r\n\t}\r\n\treturn theAsioDriver->getBufferSize(minSize, maxSize, preferredSize, granularity);\r\n}\r\n\r\nASIOError ASIOCanSampleRate(ASIOSampleRate sampleRate)\r\n{\r\n\tif(!theAsioDriver)\r\n\t\treturn ASE_NotPresent;\r\n\treturn theAsioDriver->canSampleRate(sampleRate);\r\n}\r\n\r\nASIOError ASIOGetSampleRate(ASIOSampleRate *currentRate)\r\n{\r\n\tif(!theAsioDriver)\r\n\t\treturn ASE_NotPresent;\r\n\treturn theAsioDriver->getSampleRate(currentRate);\r\n}\r\n\r\nASIOError ASIOSetSampleRate(ASIOSampleRate sampleRate)\r\n{\r\n\tif(!theAsioDriver)\r\n\t\treturn ASE_NotPresent;\r\n\treturn theAsioDriver->setSampleRate(sampleRate);\r\n}\r\n\r\nASIOError ASIOGetClockSources(ASIOClockSource *clocks, long *numSources)\r\n{\r\n\tif(!theAsioDriver)\r\n\t{\r\n\t\t*numSources = 0;\r\n\t\treturn ASE_NotPresent;\r\n\t}\r\n\treturn theAsioDriver->getClockSources(clocks, numSources);\r\n}\r\n\r\nASIOError ASIOSetClockSource(long reference)\r\n{\r\n\tif(!theAsioDriver)\r\n\t\treturn ASE_NotPresent;\r\n\treturn theAsioDriver->setClockSource(reference);\r\n}\r\n\r\nASIOError ASIOGetSamplePosition(ASIOSamples *sPos, ASIOTimeStamp *tStamp)\r\n{\r\n\tif(!theAsioDriver)\r\n\t\treturn ASE_NotPresent;\r\n\treturn theAsioDriver->getSamplePosition(sPos, tStamp);\r\n}\r\n\r\nASIOError ASIOGetChannelInfo(ASIOChannelInfo *info)\r\n{\r\n\tif(!theAsioDriver)\r\n\t{\r\n\t\tinfo->channelGroup = -1;\r\n\t\tinfo->type = ASIOSTInt16MSB;\r\n\t\tstrcpy(info->name, \"None\");\r\n\t\treturn ASE_NotPresent;\r\n\t}\r\n\treturn theAsioDriver->getChannelInfo(info);\r\n}\r\n\r\nASIOError ASIOCreateBuffers(ASIOBufferInfo *bufferInfos, long numChannels,\r\n\tlong bufferSize, ASIOCallbacks *callbacks)\r\n{\r\n\tif(!theAsioDriver)\r\n\t{\r\n\t\tASIOBufferInfo *info = bufferInfos;\r\n\t\tfor(long i = 0; i < numChannels; i++, info++)\r\n\t\t\tinfo->buffers[0] = info->buffers[1] = 0;\r\n\t\treturn ASE_NotPresent;\r\n\t}\r\n\treturn theAsioDriver->createBuffers(bufferInfos, numChannels, bufferSize, callbacks);\r\n}\r\n\r\nASIOError ASIODisposeBuffers(void)\r\n{\r\n\tif(!theAsioDriver)\r\n\t\treturn ASE_NotPresent;\r\n\treturn theAsioDriver->disposeBuffers();\r\n}\r\n\r\nASIOError ASIOControlPanel(void)\r\n{\r\n\tif(!theAsioDriver)\r\n\t\treturn ASE_NotPresent;\r\n\treturn theAsioDriver->controlPanel();\r\n}\r\n\r\nASIOError ASIOFuture(long selector, void *opt)\r\n{\r\n\tif(!theAsioDriver)\r\n\t\treturn ASE_NotPresent;\r\n\treturn theAsioDriver->future(selector, opt);\r\n}\r\n\r\nASIOError ASIOOutputReady(void)\r\n{\r\n\tif(!theAsioDriver)\r\n\t\treturn ASE_NotPresent;\r\n\treturn theAsioDriver->outputReady();\r\n}\r\n\r\n#if MAC\r\n}\t// extern \"C\"\r\n#pragma export off\r\n#endif\r\n\r\n\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/asio.h",
    "content": "//---------------------------------------------------------------------------------------------------\r\n//---------------------------------------------------------------------------------------------------\r\n\r\n/*\r\n\tSteinberg Audio Stream I/O API\r\n\t(c) 1997 - 2005, Steinberg Media Technologies GmbH\r\n\r\n\tASIO Interface Specification v 2.1\r\n\r\n\t2005 - Added support for DSD sample data (in cooperation with Sony)\r\n\r\n\r\n\tbasic concept is an i/o synchronous double-buffer scheme:\r\n\t\r\n\ton bufferSwitch(index == 0), host will read/write:\r\n\r\n\t\tafter ASIOStart(), the\r\n  read  first input buffer A (index 0)\r\n\t|   will be invalid (empty)\r\n\t*   ------------------------\r\n\t|------------------------|-----------------------|\r\n\t|                        |                       |\r\n\t|  Input Buffer A (0)    |   Input Buffer B (1)  |\r\n\t|                        |                       |\r\n\t|------------------------|-----------------------|\r\n\t|                        |                       |\r\n\t|  Output Buffer A (0)   |   Output Buffer B (1) |\r\n\t|                        |                       |\r\n\t|------------------------|-----------------------|\r\n\t*                        -------------------------\r\n\t|                        before calling ASIOStart(),\r\n  write                      host will have filled output\r\n                             buffer B (index 1) already\r\n\r\n  *please* take special care of proper statement of input\r\n  and output latencies (see ASIOGetLatencies()), these\r\n  control sequencer sync accuracy\r\n\r\n*/\r\n\r\n//---------------------------------------------------------------------------------------------------\r\n//---------------------------------------------------------------------------------------------------\r\n\r\n/*\r\n\r\nprototypes summary:\r\n\r\nASIOError ASIOInit(ASIODriverInfo *info);\r\nASIOError ASIOExit(void);\r\nASIOError ASIOStart(void);\r\nASIOError ASIOStop(void);\r\nASIOError ASIOGetChannels(long *numInputChannels, long *numOutputChannels);\r\nASIOError ASIOGetLatencies(long *inputLatency, long *outputLatency);\r\nASIOError ASIOGetBufferSize(long *minSize, long *maxSize, long *preferredSize, long *granularity);\r\nASIOError ASIOCanSampleRate(ASIOSampleRate sampleRate);\r\nASIOError ASIOGetSampleRate(ASIOSampleRate *currentRate);\r\nASIOError ASIOSetSampleRate(ASIOSampleRate sampleRate);\r\nASIOError ASIOGetClockSources(ASIOClockSource *clocks, long *numSources);\r\nASIOError ASIOSetClockSource(long reference);\r\nASIOError ASIOGetSamplePosition (ASIOSamples *sPos, ASIOTimeStamp *tStamp);\r\nASIOError ASIOGetChannelInfo(ASIOChannelInfo *info);\r\nASIOError ASIOCreateBuffers(ASIOBufferInfo *bufferInfos, long numChannels,\r\n\tlong bufferSize, ASIOCallbacks *callbacks);\r\nASIOError ASIODisposeBuffers(void);\r\nASIOError ASIOControlPanel(void);\r\nvoid *ASIOFuture(long selector, void *params);\r\nASIOError ASIOOutputReady(void);\r\n\r\n*/\r\n\r\n//---------------------------------------------------------------------------------------------------\r\n//---------------------------------------------------------------------------------------------------\r\n\r\n#ifndef __ASIO_H\r\n#define __ASIO_H\r\n\r\n// force 4 byte alignment\r\n#if defined(_MSC_VER) && !defined(__MWERKS__) \r\n#pragma pack(push,4)\r\n#elif PRAGMA_ALIGN_SUPPORTED\r\n#pragma options align = native\r\n#endif\r\n\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n// Type definitions\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n\r\n// number of samples data type is 64 bit integer\r\n#if NATIVE_INT64\r\n\ttypedef long long int ASIOSamples;\r\n#else\r\n\ttypedef struct ASIOSamples {\r\n\t\tunsigned long hi;\r\n\t\tunsigned long lo;\r\n\t} ASIOSamples;\r\n#endif\r\n\r\n// Timestamp data type is 64 bit integer,\r\n// Time format is Nanoseconds.\r\n#if NATIVE_INT64\r\n\ttypedef long long int ASIOTimeStamp ;\r\n#else\r\n\ttypedef struct ASIOTimeStamp {\r\n\t\tunsigned long hi;\r\n\t\tunsigned long lo;\r\n\t} ASIOTimeStamp;\r\n#endif\r\n\r\n// Samplerates are expressed in IEEE 754 64 bit double float,\r\n// native format as host computer\r\n#if IEEE754_64FLOAT\r\n\ttypedef double ASIOSampleRate;\r\n#else\r\n\ttypedef struct ASIOSampleRate {\r\n\t\tchar ieee[8];\r\n\t} ASIOSampleRate;\r\n#endif\r\n\r\n// Boolean values are expressed as long\r\ntypedef long ASIOBool;\r\nenum {\r\n\tASIOFalse = 0,\r\n\tASIOTrue = 1\r\n};\r\n\r\n// Sample Types are expressed as long\r\ntypedef long ASIOSampleType;\r\nenum {\r\n\tASIOSTInt16MSB   = 0,\r\n\tASIOSTInt24MSB   = 1,\t\t// used for 20 bits as well\r\n\tASIOSTInt32MSB   = 2,\r\n\tASIOSTFloat32MSB = 3,\t\t// IEEE 754 32 bit float\r\n\tASIOSTFloat64MSB = 4,\t\t// IEEE 754 64 bit double float\r\n\r\n\t// these are used for 32 bit data buffer, with different alignment of the data inside\r\n\t// 32 bit PCI bus systems can be more easily used with these\r\n\tASIOSTInt32MSB16 = 8,\t\t// 32 bit data with 16 bit alignment\r\n\tASIOSTInt32MSB18 = 9,\t\t// 32 bit data with 18 bit alignment\r\n\tASIOSTInt32MSB20 = 10,\t\t// 32 bit data with 20 bit alignment\r\n\tASIOSTInt32MSB24 = 11,\t\t// 32 bit data with 24 bit alignment\r\n\t\r\n\tASIOSTInt16LSB   = 16,\r\n\tASIOSTInt24LSB   = 17,\t\t// used for 20 bits as well\r\n\tASIOSTInt32LSB   = 18,\r\n\tASIOSTFloat32LSB = 19,\t\t// IEEE 754 32 bit float, as found on Intel x86 architecture\r\n\tASIOSTFloat64LSB = 20, \t\t// IEEE 754 64 bit double float, as found on Intel x86 architecture\r\n\r\n\t// these are used for 32 bit data buffer, with different alignment of the data inside\r\n\t// 32 bit PCI bus systems can more easily used with these\r\n\tASIOSTInt32LSB16 = 24,\t\t// 32 bit data with 18 bit alignment\r\n\tASIOSTInt32LSB18 = 25,\t\t// 32 bit data with 18 bit alignment\r\n\tASIOSTInt32LSB20 = 26,\t\t// 32 bit data with 20 bit alignment\r\n\tASIOSTInt32LSB24 = 27,\t\t// 32 bit data with 24 bit alignment\r\n\r\n\t//\tASIO DSD format.\r\n\tASIOSTDSDInt8LSB1   = 32,\t\t// DSD 1 bit data, 8 samples per byte. First sample in Least significant bit.\r\n\tASIOSTDSDInt8MSB1   = 33,\t\t// DSD 1 bit data, 8 samples per byte. First sample in Most significant bit.\r\n\tASIOSTDSDInt8NER8\t= 40,\t\t// DSD 8 bit data, 1 sample per byte. No Endianness required.\r\n\r\n\tASIOSTLastEntry\r\n};\r\n\r\n/*-----------------------------------------------------------------------------\r\n// DSD operation and buffer layout\r\n// Definition by Steinberg/Sony Oxford.\r\n//\r\n// We have tried to treat DSD as PCM and so keep a consistant structure across\r\n// the ASIO interface.\r\n//\r\n// DSD's sample rate is normally referenced as a multiple of 44.1Khz, so\r\n// the standard sample rate is refered to as 64Fs (or 2.8224Mhz). We looked\r\n// at making a special case for DSD and adding a field to the ASIOFuture that\r\n// would allow the user to select the Over Sampleing Rate (OSR) as a seperate\r\n// entity but decided in the end just to treat it as a simple value of\r\n// 2.8224Mhz and use the standard interface to set it.\r\n//\r\n// The second problem was the \"word\" size, in PCM the word size is always a\r\n// greater than or equal to 8 bits (a byte). This makes life easy as we can\r\n// then pack the samples into the \"natural\" size for the machine.\r\n// In DSD the \"word\" size is 1 bit. This is not a major problem and can easily\r\n// be dealt with if we ensure that we always deal with a multiple of 8 samples.\r\n//\r\n// DSD brings with it another twist to the Endianness religion. How are the\r\n// samples packed into the byte. It would be nice to just say the most significant\r\n// bit is always the first sample, however there would then be a performance hit\r\n// on little endian machines. Looking at how some of the processing goes...\r\n// Little endian machines like the first sample to be in the Least Significant Bit,\r\n//   this is because when you write it to memory the data is in the correct format\r\n//   to be shifted in and out of the words.\r\n// Big endian machine prefer the first sample to be in the Most Significant Bit,\r\n//   again for the same reasion.\r\n//\r\n// And just when things were looking really muddy there is a proposed extension to\r\n// DSD that uses 8 bit word sizes. It does not care what endianness you use.\r\n//\r\n// Switching the driver between DSD and PCM mode\r\n// ASIOFuture allows for extending the ASIO API quite transparently.\r\n// See kAsioSetIoFormat, kAsioGetIoFormat, kAsioCanDoIoFormat\r\n//\r\n//-----------------------------------------------------------------------------*/\r\n\r\n\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n// Error codes\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n\r\ntypedef long ASIOError;\r\nenum {\r\n\tASE_OK = 0,             // This value will be returned whenever the call succeeded\r\n\tASE_SUCCESS = 0x3f4847a0,\t// unique success return value for ASIOFuture calls\r\n\tASE_NotPresent = -1000, // hardware input or output is not present or available\r\n\tASE_HWMalfunction,      // hardware is malfunctioning (can be returned by any ASIO function)\r\n\tASE_InvalidParameter,   // input parameter invalid\r\n\tASE_InvalidMode,        // hardware is in a bad mode or used in a bad mode\r\n\tASE_SPNotAdvancing,     // hardware is not running when sample position is inquired\r\n\tASE_NoClock,            // sample clock or rate cannot be determined or is not present\r\n\tASE_NoMemory            // not enough memory for completing the request\r\n};\r\n\r\n//---------------------------------------------------------------------------------------------------\r\n//---------------------------------------------------------------------------------------------------\r\n\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n// Time Info support\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n\r\ntypedef struct ASIOTimeCode\r\n{       \r\n\tdouble          speed;                  // speed relation (fraction of nominal speed)\r\n\t                                        // optional; set to 0. or 1. if not supported\r\n\tASIOSamples     timeCodeSamples;        // time in samples\r\n\tunsigned long   flags;                  // some information flags (see below)\r\n\tchar future[64];\r\n} ASIOTimeCode;\r\n\r\ntypedef enum ASIOTimeCodeFlags\r\n{\r\n\tkTcValid                = 1,\r\n\tkTcRunning              = 1 << 1,\r\n\tkTcReverse              = 1 << 2,\r\n\tkTcOnspeed              = 1 << 3,\r\n\tkTcStill                = 1 << 4,\r\n\t\r\n\tkTcSpeedValid           = 1 << 8\r\n}  ASIOTimeCodeFlags;\r\n\r\ntypedef struct AsioTimeInfo\r\n{\r\n\tdouble          speed;                  // absolute speed (1. = nominal)\r\n\tASIOTimeStamp   systemTime;             // system time related to samplePosition, in nanoseconds\r\n\t                                        // on mac, must be derived from Microseconds() (not UpTime()!)\r\n\t                                        // on windows, must be derived from timeGetTime()\r\n\tASIOSamples     samplePosition;\r\n\tASIOSampleRate  sampleRate;             // current rate\r\n\tunsigned long flags;                    // (see below)\r\n\tchar reserved[12];\r\n} AsioTimeInfo;\r\n\r\ntypedef enum AsioTimeInfoFlags\r\n{\r\n\tkSystemTimeValid        = 1,            // must always be valid\r\n\tkSamplePositionValid    = 1 << 1,       // must always be valid\r\n\tkSampleRateValid        = 1 << 2,\r\n\tkSpeedValid             = 1 << 3,\r\n\t\r\n\tkSampleRateChanged      = 1 << 4,\r\n\tkClockSourceChanged     = 1 << 5\r\n} AsioTimeInfoFlags;\r\n\r\ntypedef struct ASIOTime                          // both input/output\r\n{\r\n\tlong reserved[4];                       // must be 0\r\n\tstruct AsioTimeInfo     timeInfo;       // required\r\n\tstruct ASIOTimeCode     timeCode;       // optional, evaluated if (timeCode.flags & kTcValid)\r\n} ASIOTime;\r\n\r\n/*\r\n\r\nusing time info:\r\nit is recommended to use the new method with time info even if the asio\r\ndevice does not support timecode; continuous calls to ASIOGetSamplePosition\r\nand ASIOGetSampleRate are avoided, and there is a more defined relationship\r\nbetween callback time and the time info.\r\n\r\nsee the example below.\r\nto initiate time info mode, after you have received the callbacks pointer in\r\nASIOCreateBuffers, you will call the asioMessage callback with kAsioSupportsTimeInfo\r\nas the argument. if this returns 1, host has accepted time info mode.\r\nnow host expects the new callback bufferSwitchTimeInfo to be used instead\r\nof the old bufferSwitch method. the ASIOTime structure is assumed to be valid\r\nand accessible until the callback returns.\r\n\r\nusing time code:\r\nif the device supports reading time code, it will call host's asioMessage callback\r\nwith kAsioSupportsTimeCode as the selector. it may then fill the according\r\nfields and set the kTcValid flag.\r\nhost will call the future method with the kAsioEnableTimeCodeRead selector when\r\nit wants to enable or disable tc reading by the device. you should also support\r\nthe kAsioCanTimeInfo and kAsioCanTimeCode selectors in ASIOFuture (see example).\r\n\r\nnote:\r\nthe AsioTimeInfo/ASIOTimeCode pair is supposed to work in both directions.\r\nas a matter of convention, the relationship between the sample\r\nposition counter and the time code at buffer switch time is\r\n(ignoring offset between tc and sample pos when tc is running):\r\n\r\non input:\tsample 0 -> input  buffer sample 0 -> time code 0\r\non output:\tsample 0 -> output buffer sample 0 -> time code 0\r\n\r\nthis means that for 'real' calculations, one has to take into account\r\nthe according latencies.\r\n\r\nexample:\r\n\r\nASIOTime asioTime;\r\n\r\nin createBuffers()\r\n{\r\n\tmemset(&asioTime, 0, sizeof(ASIOTime));\r\n\tAsioTimeInfo* ti = &asioTime.timeInfo;\r\n\tti->sampleRate = theSampleRate;\r\n\tASIOTimeCode* tc = &asioTime.timeCode;\r\n\ttc->speed = 1.;\r\n\ttimeInfoMode = false;\r\n\tcanTimeCode = false;\r\n\tif(callbacks->asioMessage(kAsioSupportsTimeInfo, 0, 0, 0) == 1)\r\n\t{\r\n\t\ttimeInfoMode = true;\r\n#if kCanTimeCode\r\n\t\tif(callbacks->asioMessage(kAsioSupportsTimeCode, 0, 0, 0) == 1)\r\n\t\t\tcanTimeCode = true;\r\n#endif\r\n\t}\r\n}\r\n\r\nvoid switchBuffers(long doubleBufferIndex, bool processNow)\r\n{\r\n\tif(timeInfoMode)\r\n\t{\r\n\t\tAsioTimeInfo* ti = &asioTime.timeInfo;\r\n\t\tti->flags =\tkSystemTimeValid | kSamplePositionValid | kSampleRateValid;\r\n\t\tti->systemTime = theNanoSeconds;\r\n\t\tti->samplePosition = theSamplePosition;\r\n\t\tif(ti->sampleRate != theSampleRate)\r\n\t\t\tti->flags |= kSampleRateChanged;\r\n\t\tti->sampleRate = theSampleRate;\r\n\r\n#if kCanTimeCode\r\n\t\tif(canTimeCode && timeCodeEnabled)\r\n\t\t{\r\n\t\t\tASIOTimeCode* tc = &asioTime.timeCode;\r\n\t\t\ttc->timeCodeSamples = tcSamples;\t\t\t\t\t\t// tc in samples\r\n\t\t\ttc->flags = kTcValid | kTcRunning | kTcOnspeed;\t\t\t// if so...\r\n\t\t}\r\n\t\tASIOTime* bb = callbacks->bufferSwitchTimeInfo(&asioTime, doubleBufferIndex, processNow ? ASIOTrue : ASIOFalse);\r\n#else\r\n\t\tcallbacks->bufferSwitchTimeInfo(&asioTime, doubleBufferIndex, processNow ? ASIOTrue : ASIOFalse);\r\n#endif\r\n\t}\r\n\telse\r\n\t\tcallbacks->bufferSwitch(doubleBufferIndex, ASIOFalse);\r\n}\r\n\r\nASIOError ASIOFuture(long selector, void *params)\r\n{\r\n\tswitch(selector)\r\n\t{\r\n\t\tcase kAsioEnableTimeCodeRead:\r\n\t\t\ttimeCodeEnabled = true;\r\n\t\t\treturn ASE_SUCCESS;\r\n\t\tcase kAsioDisableTimeCodeRead:\r\n\t\t\ttimeCodeEnabled = false;\r\n\t\t\treturn ASE_SUCCESS;\r\n\t\tcase kAsioCanTimeInfo:\r\n\t\t\treturn ASE_SUCCESS;\r\n\t\t#if kCanTimeCode\r\n\t\tcase kAsioCanTimeCode:\r\n\t\t\treturn ASE_SUCCESS;\r\n\t\t#endif\r\n\t}\r\n\treturn ASE_NotPresent;\r\n};\r\n\r\n*/\r\n\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n// application's audio stream handler callbacks\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n\r\ntypedef struct ASIOCallbacks\r\n{\r\n\tvoid (*bufferSwitch) (long doubleBufferIndex, ASIOBool directProcess);\r\n\t\t// bufferSwitch indicates that both input and output are to be processed.\r\n\t\t// the current buffer half index (0 for A, 1 for B) determines\r\n\t\t// - the output buffer that the host should start to fill. the other buffer\r\n\t\t//   will be passed to output hardware regardless of whether it got filled\r\n\t\t//   in time or not.\r\n\t\t// - the input buffer that is now filled with incoming data. Note that\r\n\t\t//   because of the synchronicity of i/o, the input always has at\r\n\t\t//   least one buffer latency in relation to the output.\r\n\t\t// directProcess suggests to the host whether it should immedeately\r\n\t\t// start processing (directProcess == ASIOTrue), or whether its process\r\n\t\t// should be deferred because the call comes from a very low level\r\n\t\t// (for instance, a high level priority interrupt), and direct processing\r\n\t\t// would cause timing instabilities for the rest of the system. If in doubt,\r\n\t\t// directProcess should be set to ASIOFalse.\r\n\t\t// Note: bufferSwitch may be called at interrupt time for highest efficiency.\r\n\r\n\tvoid (*sampleRateDidChange) (ASIOSampleRate sRate);\r\n\t\t// gets called when the AudioStreamIO detects a sample rate change\r\n\t\t// If sample rate is unknown, 0 is passed (for instance, clock loss\r\n\t\t// when externally synchronized).\r\n\r\n\tlong (*asioMessage) (long selector, long value, void* message, double* opt);\r\n\t\t// generic callback for various purposes, see selectors below.\r\n\t\t// note this is only present if the asio version is 2 or higher\r\n\r\n\tASIOTime* (*bufferSwitchTimeInfo) (ASIOTime* params, long doubleBufferIndex, ASIOBool directProcess);\r\n\t\t// new callback with time info. makes ASIOGetSamplePosition() and various\r\n\t\t// calls to ASIOGetSampleRate obsolete,\r\n\t\t// and allows for timecode sync etc. to be preferred; will be used if\r\n\t\t// the driver calls asioMessage with selector kAsioSupportsTimeInfo.\r\n} ASIOCallbacks;\r\n\r\n// asioMessage selectors\r\nenum\r\n{\r\n\tkAsioSelectorSupported = 1,\t// selector in <value>, returns 1L if supported,\r\n\t\t\t\t\t\t\t\t// 0 otherwise\r\n    kAsioEngineVersion,\t\t\t// returns engine (host) asio implementation version,\r\n\t\t\t\t\t\t\t\t// 2 or higher\r\n\tkAsioResetRequest,\t\t\t// request driver reset. if accepted, this\r\n\t\t\t\t\t\t\t\t// will close the driver (ASIO_Exit() ) and\r\n\t\t\t\t\t\t\t\t// re-open it again (ASIO_Init() etc). some\r\n\t\t\t\t\t\t\t\t// drivers need to reconfigure for instance\r\n\t\t\t\t\t\t\t\t// when the sample rate changes, or some basic\r\n\t\t\t\t\t\t\t\t// changes have been made in ASIO_ControlPanel().\r\n\t\t\t\t\t\t\t\t// returns 1L; note the request is merely passed\r\n\t\t\t\t\t\t\t\t// to the application, there is no way to determine\r\n\t\t\t\t\t\t\t\t// if it gets accepted at this time (but it usually\r\n\t\t\t\t\t\t\t\t// will be).\r\n\tkAsioBufferSizeChange,\t\t// not yet supported, will currently always return 0L.\r\n\t\t\t\t\t\t\t\t// for now, use kAsioResetRequest instead.\r\n\t\t\t\t\t\t\t\t// once implemented, the new buffer size is expected\r\n\t\t\t\t\t\t\t\t// in <value>, and on success returns 1L\r\n\tkAsioResyncRequest,\t\t\t// the driver went out of sync, such that\r\n\t\t\t\t\t\t\t\t// the timestamp is no longer valid. this\r\n\t\t\t\t\t\t\t\t// is a request to re-start the engine and\r\n\t\t\t\t\t\t\t\t// slave devices (sequencer). returns 1 for ok,\r\n\t\t\t\t\t\t\t\t// 0 if not supported.\r\n\tkAsioLatenciesChanged, \t\t// the drivers latencies have changed. The engine\r\n\t\t\t\t\t\t\t\t// will refetch the latencies.\r\n\tkAsioSupportsTimeInfo,\t\t// if host returns true here, it will expect the\r\n\t\t\t\t\t\t\t\t// callback bufferSwitchTimeInfo to be called instead\r\n\t\t\t\t\t\t\t\t// of bufferSwitch\r\n\tkAsioSupportsTimeCode,\t\t// \r\n\tkAsioMMCCommand,\t\t\t// unused - value: number of commands, message points to mmc commands\r\n\tkAsioSupportsInputMonitor,\t// kAsioSupportsXXX return 1 if host supports this\r\n\tkAsioSupportsInputGain,     // unused and undefined\r\n\tkAsioSupportsInputMeter,    // unused and undefined\r\n\tkAsioSupportsOutputGain,    // unused and undefined\r\n\tkAsioSupportsOutputMeter,   // unused and undefined\r\n\tkAsioOverload,              // driver detected an overload\r\n\r\n\tkAsioNumMessageSelectors\r\n};\r\n\r\n//---------------------------------------------------------------------------------------------------\r\n//---------------------------------------------------------------------------------------------------\r\n\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n// (De-)Construction\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n\r\ntypedef struct ASIODriverInfo\r\n{\r\n\tlong asioVersion;\t\t// currently, 2\r\n\tlong driverVersion;\t\t// driver specific\r\n\tchar name[32];\r\n\tchar errorMessage[124];\r\n\tvoid *sysRef;\t\t\t// on input: system reference\r\n\t\t\t\t\t\t\t// (Windows: application main window handle, Mac & SGI: 0)\r\n} ASIODriverInfo;\r\n\r\nASIOError ASIOInit(ASIODriverInfo *info);\r\n/* Purpose:\r\n\t  Initialize the AudioStreamIO.\r\n\tParameter:\r\n\t  info: pointer to an ASIODriver structure:\r\n\t    - asioVersion:\r\n\t\t\t- on input, the host version. *** Note *** this is 0 for earlier asio\r\n\t\t\timplementations, and the asioMessage callback is implemeted\r\n\t\t\tonly if asioVersion is 2 or greater. sorry but due to a design fault\r\n\t\t\tthe driver doesn't have access to the host version in ASIOInit :-(\r\n\t\t\tadded selector for host (engine) version in the asioMessage callback\r\n\t\t\tso we're ok from now on.\r\n\t\t\t- on return, asio implementation version.\r\n\t\t\t  older versions are 1\r\n\t\t\t  if you support this version (namely, ASIO_outputReady() )\r\n\t\t\t  this should be 2 or higher. also see the note in\r\n\t\t\t  ASIO_getTimeStamp() !\r\n\t    - version: on return, the driver version (format is driver specific)\r\n\t    - name: on return, a null-terminated string containing the driver's name\r\n\t\t- error message: on return, should contain a user message describing\r\n\t\t  the type of error that occured during ASIOInit(), if any.\r\n\t\t- sysRef: platform specific\r\n\tReturns:\r\n\t  If neither input nor output is present ASE_NotPresent\r\n\t  will be returned.\r\n\t  ASE_NoMemory, ASE_HWMalfunction are other possible error conditions\r\n*/\r\n\r\nASIOError ASIOExit(void);\r\n/* Purpose:\r\n\t  Terminates the AudioStreamIO.\r\n\tParameter:\r\n\t  None.\r\n\tReturns:\r\n\t  If neither input nor output is present ASE_NotPresent\r\n\t  will be returned.\r\n\tNotes: this implies ASIOStop() and ASIODisposeBuffers(),\r\n\t  meaning that no host callbacks must be accessed after ASIOExit().\r\n*/\r\n\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n// Start/Stop\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n\r\nASIOError ASIOStart(void);\r\n/* Purpose:\r\n\t  Start input and output processing synchronously.\r\n\t  This will\r\n\t  - reset the sample counter to zero\r\n\t  - start the hardware (both input and output)\r\n\t    The first call to the hosts' bufferSwitch(index == 0) then tells\r\n\t    the host to read from input buffer A (index 0), and start\r\n\t    processing to output buffer A while output buffer B (which\r\n\t    has been filled by the host prior to calling ASIOStart())\r\n\t    is possibly sounding (see also ASIOGetLatencies()) \r\n\tParameter:\r\n\t  None.\r\n\tReturns:\r\n\t  If neither input nor output is present, ASE_NotPresent\r\n\t  will be returned.\r\n\t  If the hardware fails to start, ASE_HWMalfunction will be returned.\r\n\tNotes:\r\n\t  There is no restriction on the time that ASIOStart() takes\r\n\t  to perform (that is, it is not considered a realtime trigger).\r\n*/\r\n\r\nASIOError ASIOStop(void);\r\n/* Purpose:\r\n\t  Stops input and output processing altogether.\r\n\tParameter:\r\n\t  None.\r\n\tReturns:\r\n\t  If neither input nor output is present ASE_NotPresent\r\n\t  will be returned.\r\n\tNotes:\r\n\t  On return from ASIOStop(), the driver must in no\r\n\t  case call the hosts' bufferSwitch() routine.\r\n*/\r\n\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n// Inquiry methods and sample rate\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n\r\nASIOError ASIOGetChannels(long *numInputChannels, long *numOutputChannels);\r\n/* Purpose:\r\n\t  Returns number of individual input/output channels.\r\n\tParameter:\r\n\t  numInputChannels will hold the number of available input channels\r\n\t  numOutputChannels will hold the number of available output channels\r\n\tReturns:\r\n\t  If no input/output is present ASE_NotPresent will be returned.\r\n\t  If only inputs, or only outputs are available, the according\r\n\t  other parameter will be zero, and ASE_OK is returned.\r\n*/\r\n\r\nASIOError ASIOGetLatencies(long *inputLatency, long *outputLatency);\r\n/* Purpose:\r\n\t  Returns the input and output latencies. This includes\r\n\t  device specific delays, like FIFOs etc.\r\n\tParameter:\r\n\t  inputLatency will hold the 'age' of the first sample frame\r\n\t  in the input buffer when the hosts reads it in bufferSwitch()\r\n\t  (this is theoretical, meaning it does not include the overhead\r\n\t  and delay between the actual physical switch, and the time\r\n\t  when bufferSitch() enters).\r\n\t  This will usually be the size of one block in sample frames, plus\r\n\t  device specific latencies.\r\n\r\n\t  outputLatency will specify the time between the buffer switch,\r\n\t  and the time when the next play buffer will start to sound.\r\n\t  The next play buffer is defined as the one the host starts\r\n\t  processing after (or at) bufferSwitch(), indicated by the\r\n\t  index parameter (0 for buffer A, 1 for buffer B).\r\n\t  It will usually be either one block, if the host writes directly\r\n\t  to a dma buffer, or two or more blocks if the buffer is 'latched' by\r\n\t  the driver. As an example, on ASIOStart(), the host will have filled\r\n\t  the play buffer at index 1 already; when it gets the callback (with\r\n\t  the parameter index == 0), this tells it to read from the input\r\n\t  buffer 0, and start to fill the play buffer 0 (assuming that now\r\n\t  play buffer 1 is already sounding). In this case, the output\r\n\t  latency is one block. If the driver decides to copy buffer 1\r\n\t  at that time, and pass it to the hardware at the next slot (which\r\n\t  is most commonly done, but should be avoided), the output latency\r\n\t  becomes two blocks instead, resulting in a total i/o latency of at least\r\n\t  3 blocks. As memory access is the main bottleneck in native dsp processing,\r\n\t  and to acheive less latency, it is highly recommended to try to avoid\r\n\t  copying (this is also why the driver is the owner of the buffers). To\r\n\t  summarize, the minimum i/o latency can be acheived if the input buffer\r\n\t  is processed by the host into the output buffer which will physically\r\n\t  start to sound on the next time slice. Also note that the host expects\r\n\t  the bufferSwitch() callback to be accessed for each time slice in order\r\n\t  to retain sync, possibly recursively; if it fails to process a block in\r\n\t  time, it will suspend its operation for some time in order to recover.\r\n\tReturns:\r\n\t  If no input/output is present ASE_NotPresent will be returned.\r\n*/\r\n\r\nASIOError ASIOGetBufferSize(long *minSize, long *maxSize, long *preferredSize, long *granularity);\r\n/* Purpose:\r\n\t  Returns min, max, and preferred buffer sizes for input/output\r\n\tParameter:\r\n\t  minSize will hold the minimum buffer size\r\n\t  maxSize will hold the maxium possible buffer size\r\n\t  preferredSize will hold the preferred buffer size (a size which\r\n\t  best fits performance and hardware requirements)\r\n\t  granularity will hold the granularity at which buffer sizes\r\n\t  may differ. Usually, the buffer size will be a power of 2;\r\n\t  in this case, granularity will hold -1 on return, signalling\r\n\t  possible buffer sizes starting from minSize, increased in\r\n\t  powers of 2 up to maxSize.\r\n\tReturns:\r\n\t  If no input/output is present ASE_NotPresent will be returned.\r\n\tNotes:\r\n\t  When minimum and maximum buffer size are equal,\r\n\t  the preferred buffer size has to be the same value as well; granularity\r\n\t  should be 0 in this case.\r\n*/\r\n\r\nASIOError ASIOCanSampleRate(ASIOSampleRate sampleRate);\r\n/* Purpose:\r\n\t  Inquires the hardware for the available sample rates.\r\n\tParameter:\r\n\t  sampleRate is the rate in question.\r\n\tReturns:\r\n\t  If the inquired sample rate is not supported, ASE_NoClock will be returned.\r\n\t  If no input/output is present ASE_NotPresent will be returned.\r\n*/\r\nASIOError ASIOGetSampleRate(ASIOSampleRate *currentRate);\r\n/* Purpose:\r\n\t  Get the current sample Rate.\r\n\tParameter:\r\n\t  currentRate will hold the current sample rate on return.\r\n\tReturns:\r\n\t  If sample rate is unknown, sampleRate will be 0 and ASE_NoClock will be returned.\r\n\t  If no input/output is present ASE_NotPresent will be returned.\r\n\tNotes:\r\n*/\r\n\r\nASIOError ASIOSetSampleRate(ASIOSampleRate sampleRate);\r\n/* Purpose:\r\n\t  Set the hardware to the requested sample Rate. If sampleRate == 0,\r\n\t  enable external sync.\r\n\tParameter:\r\n\t  sampleRate: on input, the requested rate\r\n\tReturns:\r\n\t  If sampleRate is unknown ASE_NoClock will be returned.\r\n\t  If the current clock is external, and sampleRate is != 0,\r\n\t  ASE_InvalidMode will be returned\r\n\t  If no input/output is present ASE_NotPresent will be returned.\r\n\tNotes:\r\n*/\r\n\r\ntypedef struct ASIOClockSource\r\n{\r\n\tlong index;\t\t\t\t\t// as used for ASIOSetClockSource()\r\n\tlong associatedChannel;\t\t// for instance, S/PDIF or AES/EBU\r\n\tlong associatedGroup;\t\t// see channel groups (ASIOGetChannelInfo())\r\n\tASIOBool isCurrentSource;\t// ASIOTrue if this is the current clock source\r\n\tchar name[32];\t\t\t\t// for user selection\r\n} ASIOClockSource;\r\n\r\nASIOError ASIOGetClockSources(ASIOClockSource *clocks, long *numSources);\r\n/* Purpose:\r\n\t  Get the available external audio clock sources\r\n\tParameter:\r\n\t  clocks points to an array of ASIOClockSource structures:\r\n\t  \t- index: this is used to identify the clock source\r\n\t  \t  when ASIOSetClockSource() is accessed, should be\r\n\t  \t  an index counting from zero\r\n\t  \t- associatedInputChannel: the first channel of an associated\r\n\t  \t  input group, if any.\r\n\t  \t- associatedGroup: the group index of that channel.\r\n\t  \t  groups of channels are defined to seperate for\r\n\t  \t  instance analog, S/PDIF, AES/EBU, ADAT connectors etc,\r\n\t  \t  when present simultaniously. Note that associated channel\r\n\t  \t  is enumerated according to numInputs/numOutputs, means it\r\n\t  \t  is independant from a group (see also ASIOGetChannelInfo())\r\n\t  \t  inputs are associated to a clock if the physical connection\r\n\t  \t  transfers both data and clock (like S/PDIF, AES/EBU, or\r\n\t  \t  ADAT inputs). if there is no input channel associated with\r\n\t  \t  the clock source (like Word Clock, or internal oscillator), both\r\n\t  \t  associatedChannel and associatedGroup should be set to -1.\r\n\t  \t- isCurrentSource: on exit, ASIOTrue if this is the current clock\r\n\t  \t  source, ASIOFalse else\r\n\t\t- name: a null-terminated string for user selection of the available sources.\r\n\t  numSources:\r\n\t      on input: the number of allocated array members\r\n\t      on output: the number of available clock sources, at least\r\n\t      1 (internal clock generator).\r\n\tReturns:\r\n\t  If no input/output is present ASE_NotPresent will be returned.\r\n\tNotes:\r\n*/\r\n\r\nASIOError ASIOSetClockSource(long index);\r\n/* Purpose:\r\n\t  Set the audio clock source\r\n\tParameter:\r\n\t  index as obtained from an inquiry to ASIOGetClockSources()\r\n\tReturns:\r\n\t  If no input/output is present ASE_NotPresent will be returned.\r\n\t  If the clock can not be selected because an input channel which\r\n\t  carries the current clock source is active, ASE_InvalidMode\r\n\t  *may* be returned (this depends on the properties of the driver\r\n\t  and/or hardware).\r\n\tNotes:\r\n\t  Should *not* return ASE_NoClock if there is no clock signal present\r\n\t  at the selected source; this will be inquired via ASIOGetSampleRate().\r\n\t  It should call the host callback procedure sampleRateHasChanged(),\r\n\t  if the switch causes a sample rate change, or if no external clock\r\n\t  is present at the selected source.\r\n*/\r\n\r\nASIOError ASIOGetSamplePosition (ASIOSamples *sPos, ASIOTimeStamp *tStamp);\r\n/* Purpose:\r\n\t  Inquires the sample position/time stamp pair.\r\n\tParameter:\r\n\t  sPos will hold the sample position on return. The sample\r\n\t  position is reset to zero when ASIOStart() gets called.\r\n\t  tStamp will hold the system time when the sample position\r\n\t  was latched.\r\n\tReturns:\r\n\t  If no input/output is present, ASE_NotPresent will be returned.\r\n\t  If there is no clock, ASE_SPNotAdvancing will be returned.\r\n\tNotes:\r\n\r\n\t  in order to be able to synchronise properly,\r\n\t  the sample position / time stamp pair must refer to the current block,\r\n\t  that is, the engine will call ASIOGetSamplePosition() in its bufferSwitch()\r\n\t  callback and expect the time for the current block. thus, when requested\r\n\t  in the very first bufferSwitch after ASIO_Start(), the sample position\r\n\t  should be zero, and the time stamp should refer to the very time where\r\n\t  the stream was started. it also means that the sample position must be\r\n\t  block aligned. the driver must ensure proper interpolation if the system\r\n\t  time can not be determined for the block position. the driver is responsible\r\n\t  for precise time stamps as it usually has most direct access to lower\r\n\t  level resources. proper behaviour of ASIO_GetSamplePosition() and ASIO_GetLatencies()\r\n\t  are essential for precise media synchronization!\r\n*/\r\n\r\ntypedef struct ASIOChannelInfo\r\n{\r\n\tlong channel;\t\t\t// on input, channel index\r\n\tASIOBool isInput;\t\t// on input\r\n\tASIOBool isActive;\t\t// on exit\r\n\tlong channelGroup;\t\t// dto\r\n\tASIOSampleType type;\t// dto\r\n\tchar name[32];\t\t\t// dto\r\n} ASIOChannelInfo;\r\n\r\nASIOError ASIOGetChannelInfo(ASIOChannelInfo *info);\r\n/* Purpose:\r\n\t  retreive information about the nature of a channel\r\n\tParameter:\r\n\t  info: pointer to a ASIOChannelInfo structure with\r\n\t  \t- channel: on input, the channel index of the channel in question.\r\n\t  \t- isInput: on input, ASIOTrue if info for an input channel is\r\n\t  \t  requested, else output\r\n\t\t- channelGroup: on return, the channel group that the channel\r\n\t\t  belongs to. For drivers which support different types of\r\n\t\t  channels, like analog, S/PDIF, AES/EBU, ADAT etc interfaces,\r\n\t\t  there should be a reasonable grouping of these types. Groups\r\n\t\t  are always independant form a channel index, that is, a channel\r\n\t\t  index always counts from 0 to numInputs/numOutputs regardless\r\n\t\t  of the group it may belong to.\r\n\t\t  There will always be at least one group (group 0). Please\r\n\t\t  also note that by default, the host may decide to activate\r\n\t\t  channels 0 and 1; thus, these should belong to the most\r\n\t\t  useful type (analog i/o, if present).\r\n\t  \t- type: on return, contains the sample type of the channel\r\n\t  \t- isActive: on return, ASIOTrue if channel is active as it was\r\n\t  \t  installed by ASIOCreateBuffers(), ASIOFalse else\r\n\t  \t- name:  describing the type of channel in question. Used to allow\r\n\t  \t  for user selection, and enabling of specific channels. examples:\r\n\t      \"Analog In\", \"SPDIF Out\" etc\r\n\tReturns:\r\n\t  If no input/output is present ASE_NotPresent will be returned.\r\n\tNotes:\r\n\t  If possible, the string should be organised such that the first\r\n\t  characters are most significantly describing the nature of the\r\n\t  port, to allow for identification even if the view showing the\r\n\t  port name is too small to display more than 8 characters, for\r\n\t  instance.\r\n*/\r\n\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n// Buffer preparation\r\n//- - - - - - - - - - - - - - - - - - - - - - - - -\r\n\r\ntypedef struct ASIOBufferInfo\r\n{\r\n\tASIOBool isInput;\t\t\t// on input:  ASIOTrue: input, else output\r\n\tlong channelNum;\t\t\t// on input:  channel index\r\n\tvoid *buffers[2];\t\t\t// on output: double buffer addresses\r\n} ASIOBufferInfo;\r\n\r\nASIOError ASIOCreateBuffers(ASIOBufferInfo *bufferInfos, long numChannels,\r\n\tlong bufferSize, ASIOCallbacks *callbacks);\r\n\r\n/* Purpose:\r\n\t  Allocates input/output buffers for all input and output channels to be activated.\r\n\tParameter:\r\n\t  bufferInfos is a pointer to an array of ASIOBufferInfo structures:\r\n\t    - isInput: on input, ASIOTrue if the buffer is to be allocated\r\n\t      for an input, output buffer else\r\n\t    - channelNum: on input, the index of the channel in question\r\n\t      (counting from 0)\r\n\t    - buffers: on exit, 2 pointers to the halves of the channels' double-buffer.\r\n\t      the size of the buffer(s) of course depend on both the ASIOSampleType\r\n\t      as obtained from ASIOGetChannelInfo(), and bufferSize\r\n\t  numChannels is the sum of all input and output channels to be created;\r\n\t  thus bufferInfos is a pointer to an array of numChannels ASIOBufferInfo\r\n\t  structures.\r\n\t  bufferSize selects one of the possible buffer sizes as obtained from\r\n\t  ASIOGetBufferSizes().\r\n\t  callbacks is a pointer to an ASIOCallbacks structure.\r\n\tReturns:\r\n\t  If not enough memory is available ASE_NoMemory will be returned.\r\n\t  If no input/output is present ASE_NotPresent will be returned.\r\n\t  If bufferSize is not supported, or one or more of the bufferInfos elements\r\n\t  contain invalid settings, ASE_InvalidMode will be returned.\r\n\tNotes:\r\n\t  If individual channel selection is not possible but requested,\r\n\t  the driver has to handle this. namely, bufferSwitch() will only\r\n\t  have filled buffers of enabled outputs. If possible, processing\r\n\t  and buss activities overhead should be avoided for channels which\r\n\t  were not enabled here.\r\n*/\r\n\r\nASIOError ASIODisposeBuffers(void);\r\n/* Purpose:\r\n\t  Releases all buffers for the device.\r\n\tParameter:\r\n\t  None.\r\n\tReturns:\r\n\t  If no buffer were ever prepared, ASE_InvalidMode will be returned.\r\n\t  If no input/output is present ASE_NotPresent will be returned.\r\n\tNotes:\r\n\t  This implies ASIOStop().\r\n*/\r\n\r\nASIOError ASIOControlPanel(void);\r\n/* Purpose:\r\n\t  request the driver to start a control panel component\r\n\t  for device specific user settings. This will not be\r\n\t  accessed on some platforms (where the component is accessed\r\n\t  instead).\r\n\tParameter:\r\n\t  None.\r\n\tReturns:\r\n\t  If no panel is available ASE_NotPresent will be returned.\r\n\t  Actually, the return code is ignored.\r\n\tNotes:\r\n\t  if the user applied settings which require a re-configuration\r\n\t  of parts or all of the enigine and/or driver (such as a change of\r\n\t  the block size), the asioMessage callback can be used (see\r\n\t  ASIO_Callbacks).\r\n*/\r\n\r\nASIOError ASIOFuture(long selector, void *params);\r\n/* Purpose:\r\n\t  various\r\n\tParameter:\r\n\t  selector: operation Code as to be defined. zero is reserved for\r\n\t  testing purposes.\r\n\t  params: depends on the selector; usually pointer to a structure\r\n\t  for passing and retreiving any type and amount of parameters.\r\n\tReturns:\r\n\t  the return value is also selector dependant. if the selector\r\n\t  is unknown, ASE_InvalidParameter should be returned to prevent\r\n\t  further calls with this selector. on success, ASE_SUCCESS\r\n\t  must be returned (note: ASE_OK is *not* sufficient!)\r\n\tNotes:\r\n\t  see selectors defined below.\t  \r\n*/\r\n\r\nenum\r\n{\r\n\tkAsioEnableTimeCodeRead = 1,\t// no arguments\r\n\tkAsioDisableTimeCodeRead,\t\t// no arguments\r\n\tkAsioSetInputMonitor,\t\t\t// ASIOInputMonitor* in params\r\n\tkAsioTransport,\t\t\t\t\t// ASIOTransportParameters* in params\r\n\tkAsioSetInputGain,\t\t\t\t// ASIOChannelControls* in params, apply gain\r\n\tkAsioGetInputMeter,\t\t\t\t// ASIOChannelControls* in params, fill meter\r\n\tkAsioSetOutputGain,\t\t\t\t// ASIOChannelControls* in params, apply gain\r\n\tkAsioGetOutputMeter,\t\t\t// ASIOChannelControls* in params, fill meter\r\n\tkAsioCanInputMonitor,\t\t\t// no arguments for kAsioCanXXX selectors\r\n\tkAsioCanTimeInfo,\r\n\tkAsioCanTimeCode,\r\n\tkAsioCanTransport,\r\n\tkAsioCanInputGain,\r\n\tkAsioCanInputMeter,\r\n\tkAsioCanOutputGain,\r\n\tkAsioCanOutputMeter,\r\n\r\n\t//\tDSD support\r\n\t//\tThe following extensions are required to allow switching\r\n\t//\tand control of the DSD subsystem.\r\n\tkAsioSetIoFormat\t\t\t= 0x23111961,\t\t/* ASIOIoFormat * in params.\t\t\t*/\r\n\tkAsioGetIoFormat\t\t\t= 0x23111983,\t\t/* ASIOIoFormat * in params.\t\t\t*/\r\n\tkAsioCanDoIoFormat\t\t\t= 0x23112004,\t\t/* ASIOIoFormat * in params.\t\t\t*/\r\n};\r\n\r\ntypedef struct ASIOInputMonitor\r\n{\r\n\tlong input;\t\t// this input was set to monitor (or off), -1: all\r\n\tlong output;\t// suggested output for monitoring the input (if so)\r\n\tlong gain;\t\t// suggested gain, ranging 0 - 0x7fffffffL (-inf to +12 dB)\r\n\tASIOBool state;\t// ASIOTrue => on, ASIOFalse => off\r\n\tlong pan;\t\t// suggested pan, 0 => all left, 0x7fffffff => right\r\n} ASIOInputMonitor;\r\n\r\ntypedef struct ASIOChannelControls\r\n{\r\n\tlong channel;\t\t\t// on input, channel index\r\n\tASIOBool isInput;\t\t// on input\r\n\tlong gain;\t\t\t\t// on input,  ranges 0 thru 0x7fffffff\r\n\tlong meter;\t\t\t\t// on return, ranges 0 thru 0x7fffffff\r\n\tchar future[32];\r\n} ASIOChannelControls;\r\n\r\ntypedef struct ASIOTransportParameters\r\n{\r\n\tlong command;\t\t// see enum below\r\n\tASIOSamples samplePosition;\r\n\tlong track;\r\n\tlong trackSwitches[16];\t\t// 512 tracks on/off\r\n\tchar future[64];\r\n} ASIOTransportParameters;\r\n\r\nenum\r\n{\r\n\tkTransStart = 1,\r\n\tkTransStop,\r\n\tkTransLocate,\t\t// to samplePosition\r\n\tkTransPunchIn,\r\n\tkTransPunchOut,\r\n\tkTransArmOn,\t\t// track\r\n\tkTransArmOff,\t\t// track\r\n\tkTransMonitorOn,\t// track\r\n\tkTransMonitorOff,\t// track\r\n\tkTransArm,\t\t\t// trackSwitches\r\n\tkTransMonitor\t\t// trackSwitches\r\n};\r\n\r\n/*\r\n// DSD support\r\n//\tSome notes on how to use ASIOIoFormatType.\r\n//\r\n//\tThe caller will fill the format with the request types.\r\n//\tIf the board can do the request then it will leave the\r\n//\tvalues unchanged. If the board does not support the\r\n//\trequest then it will change that entry to Invalid (-1)\r\n//\r\n//\tSo to request DSD then\r\n//\r\n//\tASIOIoFormat NeedThis={kASIODSDFormat};\r\n//\r\n//\tif(ASE_SUCCESS != ASIOFuture(kAsioSetIoFormat,&NeedThis) ){\r\n//\t\t// If the board did not accept one of the parameters then the\r\n//\t\t// whole call will fail and the failing parameter will\r\n//\t\t// have had its value changes to -1.\r\n//\t}\r\n//\r\n// Note: Switching between the formats need to be done before the \"prepared\"\r\n// state (see ASIO 2 documentation) is entered.\r\n*/\r\ntypedef long int ASIOIoFormatType;\r\nenum ASIOIoFormatType_e\r\n{\r\n\tkASIOFormatInvalid = -1,\r\n\tkASIOPCMFormat = 0,\r\n\tkASIODSDFormat = 1,\r\n};\r\n\r\ntypedef struct ASIOIoFormat_s\r\n{\r\n\tASIOIoFormatType\tFormatType;\r\n\tchar\t\t\t\tfuture[512-sizeof(ASIOIoFormatType)];\r\n} ASIOIoFormat;\r\n\r\n\r\nASIOError ASIOOutputReady(void);\r\n/* Purpose:\r\n\t  this tells the driver that the host has completed processing\r\n\t  the output buffers. if the data format required by the hardware\r\n\t  differs from the supported asio formats, but the hardware\r\n\t  buffers are DMA buffers, the driver will have to convert\r\n\t  the audio stream data; as the bufferSwitch callback is\r\n\t  usually issued at dma block switch time, the driver will\r\n\t  have to convert the *previous* host buffer, which increases\r\n\t  the output latency by one block.\r\n\t  when the host finds out that ASIOOutputReady() returns\r\n\t  true, it will issue this call whenever it completed\r\n\t  output processing. then the driver can convert the\r\n\t  host data directly to the dma buffer to be played next,\r\n\t  reducing output latency by one block.\r\n\t  another way to look at it is, that the buffer switch is called\r\n\t  in order to pass the *input* stream to the host, so that it can\r\n\t  process the input into the output, and the output stream is passed\r\n\t  to the driver when the host has completed its process.\r\n\tParameter:\r\n\t\tNone\r\n\tReturns:\r\n\t  only if the above mentioned scenario is given, and a reduction\r\n\t  of output latency can be acheived by this mechanism, should\r\n\t  ASE_OK be returned. otherwise (and usually), ASE_NotPresent\r\n\t  should be returned in order to prevent further calls to this\r\n\t  function. note that the host may want to determine if it is\r\n\t  to use this when the system is not yet fully initialized, so\r\n\t  ASE_OK should always be returned if the mechanism makes sense.\t  \r\n\tNotes:\r\n\t  please remeber to adjust ASIOGetLatencies() according to\r\n\t  whether ASIOOutputReady() was ever called or not, if your\r\n\t  driver supports this scenario.\r\n\t  also note that the engine may fail to call ASIO_OutputReady()\r\n\t  in time in overload cases. as already mentioned, bufferSwitch\r\n      should be called for every block regardless of whether a block\r\n      could be processed in time.\r\n*/\r\n\r\n// restore old alignment\r\n#if defined(_MSC_VER) && !defined(__MWERKS__) \r\n#pragma pack(pop)\r\n#elif PRAGMA_ALIGN_SUPPORTED\r\n#pragma options align = reset\r\n#endif\r\n\r\n#endif\r\n\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/asiodrivers.cpp",
    "content": "#include <string.h>\r\n#include \"asiodrivers.h\"\r\n\r\nAsioDrivers* asioDrivers = 0;\r\n\r\nbool loadAsioDriver(char *name);\r\n\r\nbool loadAsioDriver(char *name)\r\n{\r\n\tif(!asioDrivers)\r\n\t\tasioDrivers = new AsioDrivers();\r\n\tif(asioDrivers)\r\n\t\treturn asioDrivers->loadDriver(name);\r\n\treturn false;\r\n}\r\n\r\n//------------------------------------------------------------------------------------\r\n\r\n#if MAC\r\n\r\nbool resolveASIO(unsigned long aconnID);\r\n\r\nAsioDrivers::AsioDrivers() : CodeFragments(\"ASIO Drivers\", 'AsDr', 'Asio')\r\n{\r\n\tconnID = -1;\r\n\tcurIndex = -1;\r\n}\r\n\r\nAsioDrivers::~AsioDrivers()\r\n{\r\n\tremoveCurrentDriver();\r\n}\r\n\r\nbool AsioDrivers::getCurrentDriverName(char *name)\r\n{\r\n\tif(curIndex >= 0)\r\n\t\treturn getName(curIndex, name);\r\n\treturn false;\r\n}\r\n\r\nlong AsioDrivers::getDriverNames(char **names, long maxDrivers)\r\n{\r\n\tfor(long i = 0; i < getNumFragments() && i < maxDrivers; i++)\r\n\t\tgetName(i, names[i]);\r\n\treturn getNumFragments() < maxDrivers ? getNumFragments() : maxDrivers;\r\n}\r\n\r\nbool AsioDrivers::loadDriver(char *name)\r\n{\r\n\tchar dname[64];\r\n\tunsigned long newID;\r\n\r\n\tfor(long i = 0; i < getNumFragments(); i++)\r\n\t{\r\n\t\tif(getName(i, dname) && !strcmp(name, dname))\r\n\t\t{\r\n\t\t\tif(newInstance(i, &newID))\r\n\t\t\t{\r\n\t\t\t\tif(resolveASIO(newID))\r\n\t\t\t\t{\r\n\t\t\t\t\tif(connID != -1)\r\n\t\t\t\t\t\tremoveInstance(curIndex, connID);\r\n\t\t\t\t\tcurIndex = i;\r\n\t\t\t\t\tconnID = newID;\r\n\t\t\t\t\treturn true;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\tbreak;\r\n\t\t}\r\n\t}\r\n\treturn false;\r\n}\r\n\r\nvoid AsioDrivers::removeCurrentDriver()\r\n{\r\n\tif(connID != -1)\r\n\t\tremoveInstance(curIndex, connID);\r\n\tconnID = -1;\r\n\tcurIndex = -1;\r\n}\r\n\r\n//------------------------------------------------------------------------------------\r\n\r\n#elif WINDOWS\r\n\r\n#include \"iasiodrv.h\"\r\n\r\nextern IASIO* theAsioDriver;\r\n\r\nAsioDrivers::AsioDrivers() : AsioDriverList()\r\n{\r\n\tcurIndex = -1;\r\n}\r\n\r\nAsioDrivers::~AsioDrivers()\r\n{\r\n}\r\n\r\nbool AsioDrivers::getCurrentDriverName(char *name)\r\n{\r\n\tif(curIndex >= 0)\r\n\t\treturn asioGetDriverName(curIndex, name, 32) == 0 ? true : false;\r\n\tname[0] = 0;\r\n\treturn false;\r\n}\r\n\r\nlong AsioDrivers::getDriverNames(char **names, long maxDrivers)\r\n{\r\n\tfor(long i = 0; i < asioGetNumDev() && i < maxDrivers; i++)\r\n\t\tasioGetDriverName(i, names[i], 32);\r\n\treturn asioGetNumDev() < maxDrivers ? asioGetNumDev() : maxDrivers;\r\n}\r\n\r\nbool AsioDrivers::loadDriver(char *name)\r\n{\r\n\tchar dname[64];\r\n\tchar curName[64];\r\n\r\n\tfor(long i = 0; i < asioGetNumDev(); i++)\r\n\t{\r\n\t\tif(!asioGetDriverName(i, dname, 32) && !strcmp(name, dname))\r\n\t\t{\r\n\t\t\tcurName[0] = 0;\r\n\t\t\tgetCurrentDriverName(curName);\t// in case we fail...\r\n\t\t\tremoveCurrentDriver();\r\n\r\n\t\t\tif(!asioOpenDriver(i, (void **)&theAsioDriver))\r\n\t\t\t{\r\n\t\t\t\tcurIndex = i;\r\n\t\t\t\treturn true;\r\n\t\t\t}\r\n\t\t\telse\r\n\t\t\t{\r\n\t\t\t\ttheAsioDriver = 0;\r\n\t\t\t\tif(curName[0] && strcmp(dname, curName))\r\n\t\t\t\t\tloadDriver(curName);\t// try restore\r\n\t\t\t}\r\n\t\t\tbreak;\r\n\t\t}\r\n\t}\r\n\treturn false;\r\n}\r\n\r\nvoid AsioDrivers::removeCurrentDriver()\r\n{\r\n\tif(curIndex != -1)\r\n\t\tasioCloseDriver(curIndex);\r\n\tcurIndex = -1;\r\n}\r\n\r\n#elif SGI || BEOS\r\n\r\n#include \"asiolist.h\"\r\n\r\nAsioDrivers::AsioDrivers() \r\n\t: AsioDriverList()\r\n{\r\n\tcurIndex = -1;\r\n}\r\n\r\nAsioDrivers::~AsioDrivers()\r\n{\r\n}\r\n\r\nbool AsioDrivers::getCurrentDriverName(char *name)\r\n{\r\n\treturn false;\r\n}\r\n\r\nlong AsioDrivers::getDriverNames(char **names, long maxDrivers)\r\n{\r\n\treturn 0;\r\n}\r\n\r\nbool AsioDrivers::loadDriver(char *name)\r\n{\r\n\treturn false;\r\n}\r\n\r\nvoid AsioDrivers::removeCurrentDriver()\r\n{\r\n}\r\n\r\n#else\r\n#error implement me\r\n#endif\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/asiodrivers.h",
    "content": "#ifndef __AsioDrivers__\r\n#define __AsioDrivers__\r\n\r\n#include \"ginclude.h\"\r\n\r\n#if MAC\r\n#include \"CodeFragments.hpp\"\r\n\r\nclass AsioDrivers : public CodeFragments\r\n\r\n#elif WINDOWS\r\n#include <windows.h>\r\n#include \"asiolist.h\"\r\n\r\nclass AsioDrivers : public AsioDriverList\r\n\r\n#elif SGI || BEOS\r\n#include \"asiolist.h\"\r\n\r\nclass AsioDrivers : public AsioDriverList\r\n\r\n#else\r\n#error implement me\r\n#endif\r\n\r\n{\r\npublic:\r\n\tAsioDrivers();\r\n\t~AsioDrivers();\r\n\t\r\n\tbool getCurrentDriverName(char *name);\r\n\tlong getDriverNames(char **names, long maxDrivers);\r\n\tbool loadDriver(char *name);\r\n\tvoid removeCurrentDriver();\r\n\tlong getCurrentDriverIndex() {return curIndex;}\r\nprotected:\r\n\tunsigned long connID;\r\n\tlong curIndex;\r\n};\r\n\r\n#endif\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/asiodrvr.h",
    "content": "/*\r\n\tSteinberg Audio Stream I/O API\r\n\t(c) 1996, Steinberg Soft- und Hardware GmbH\r\n\tcharlie (May 1996)\r\n\r\n\tasiodrvr.h\r\n\tc++ superclass to implement asio functionality. from this,\r\n\tyou can derive whatever required\r\n*/\r\n\r\n#ifndef _asiodrvr_\r\n#define _asiodrvr_\r\n\r\n// cpu and os system we are running on\r\n#include \"asiosys.h\"\r\n// basic \"C\" interface\r\n#include \"asio.h\"\r\n\r\nclass AsioDriver;\r\nextern AsioDriver *getDriver();\t\t// for generic constructor \r\n\r\n#if WINDOWS\r\n#include <windows.h>\r\n#include \"combase.h\"\r\n#include \"iasiodrv.h\"\r\nclass AsioDriver : public IASIO ,public CUnknown\r\n{\r\npublic:\r\n\tAsioDriver(LPUNKNOWN pUnk, HRESULT *phr);\r\n\r\n\tDECLARE_IUNKNOWN\r\n\t// Factory method\r\n\tstatic CUnknown *CreateInstance(LPUNKNOWN pUnk, HRESULT *phr);\r\n\t// IUnknown\r\n\tvirtual HRESULT STDMETHODCALLTYPE NonDelegatingQueryInterface(REFIID riid,void **ppvObject);\r\n\r\n#else\r\n\r\nclass AsioDriver\r\n{\r\npublic:\r\n\tAsioDriver();\r\n#endif\r\n\tvirtual ~AsioDriver();\r\n\r\n\tvirtual ASIOBool init(void* sysRef);\r\n\tvirtual void getDriverName(char *name);\t// max 32 bytes incl. terminating zero\r\n\tvirtual long getDriverVersion();\r\n\tvirtual void getErrorMessage(char *string);\t// max 124 bytes incl.\r\n\r\n\tvirtual ASIOError start();\r\n\tvirtual ASIOError stop();\r\n\r\n\tvirtual ASIOError getChannels(long *numInputChannels, long *numOutputChannels);\r\n\tvirtual ASIOError getLatencies(long *inputLatency, long *outputLatency);\r\n\tvirtual ASIOError getBufferSize(long *minSize, long *maxSize,\r\n\t\tlong *preferredSize, long *granularity);\r\n\r\n\tvirtual ASIOError canSampleRate(ASIOSampleRate sampleRate);\r\n\tvirtual ASIOError getSampleRate(ASIOSampleRate *sampleRate);\r\n\tvirtual ASIOError setSampleRate(ASIOSampleRate sampleRate);\r\n\tvirtual ASIOError getClockSources(ASIOClockSource *clocks, long *numSources);\r\n\tvirtual ASIOError setClockSource(long reference);\r\n\r\n\tvirtual ASIOError getSamplePosition(ASIOSamples *sPos, ASIOTimeStamp *tStamp);\r\n\tvirtual ASIOError getChannelInfo(ASIOChannelInfo *info);\r\n\r\n\tvirtual ASIOError createBuffers(ASIOBufferInfo *bufferInfos, long numChannels,\r\n\t\tlong bufferSize, ASIOCallbacks *callbacks);\r\n\tvirtual ASIOError disposeBuffers();\r\n\r\n\tvirtual ASIOError controlPanel();\r\n\tvirtual ASIOError future(long selector, void *opt);\r\n\tvirtual ASIOError outputReady();\r\n};\r\n#endif\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/asiolist.cpp",
    "content": "#include <windows.h>\n#include \"iasiodrv.h\"\n#include \"asiolist.h\"\n\n#define ASIODRV_DESC\t\t\"description\"\n#define INPROC_SERVER\t\t\"InprocServer32\"\n#define ASIO_PATH\t\t\t\"software\\\\asio\"\n#define COM_CLSID\t\t\t\"clsid\"\n\n// ******************************************************************\n// Local Functions \n// ******************************************************************\nstatic LONG findDrvPath (char *clsidstr,char *dllpath,int dllpathsize)\n{\n\tHKEY\t\t\thkEnum,hksub,hkpath;\n\tchar\t\t\tdatabuf[512];\n\tLONG \t\t\tcr,rc = -1;\n\tDWORD\t\t\tdatatype,datasize;\n\tDWORD\t\t\tindex;\n\tOFSTRUCT\t\tofs;\n\tHFILE\t\t\thfile;\n\tBOOL\t\t\tfound = FALSE;\n\n#ifdef UNICODE\n\tCharLowerBuffA(clsidstr,strlen(clsidstr));\n\tif ((cr = RegOpenKeyA(HKEY_CLASSES_ROOT,COM_CLSID,&hkEnum)) == ERROR_SUCCESS) {\n\n\t\tindex = 0;\n\t\twhile (cr == ERROR_SUCCESS && !found) {\n\t\t\tcr = RegEnumKeyA(hkEnum,index++,databuf,512);\n\t\t\tif (cr == ERROR_SUCCESS) {\n\t\t\t\tCharLowerBuffA(databuf,strlen(databuf));\n\t\t\t\tif (!(strcmp(databuf,clsidstr))) {\n\t\t\t\t\tif ((cr = RegOpenKeyExA(hkEnum,databuf,0,KEY_READ,&hksub)) == ERROR_SUCCESS) {\n\t\t\t\t\t\tif ((cr = RegOpenKeyExA(hksub,INPROC_SERVER,0,KEY_READ,&hkpath)) == ERROR_SUCCESS) {\n\t\t\t\t\t\t\tdatatype = REG_SZ; datasize = (DWORD)dllpathsize;\n\t\t\t\t\t\t\tcr = RegQueryValueEx(hkpath,0,0,&datatype,(LPBYTE)dllpath,&datasize);\n\t\t\t\t\t\t\tif (cr == ERROR_SUCCESS) {\n\t\t\t\t\t\t\t\tmemset(&ofs,0,sizeof(OFSTRUCT));\n\t\t\t\t\t\t\t\tofs.cBytes = sizeof(OFSTRUCT); \n\t\t\t\t\t\t\t\thfile = OpenFile(dllpath,&ofs,OF_EXIST);\n\t\t\t\t\t\t\t\tif (hfile) rc = 0; \n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tRegCloseKey(hkpath);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tRegCloseKey(hksub);\n\t\t\t\t\t}\n\t\t\t\t\tfound = TRUE;\t// break out \n\t\t\t\t}\n\t\t\t}\n\t\t}\t\t\t\t\n\t\tRegCloseKey(hkEnum);\n\t}\n#else\n\tCharLowerBuff(clsidstr,strlen(clsidstr));\n\tif ((cr = RegOpenKey(HKEY_CLASSES_ROOT,COM_CLSID,&hkEnum)) == ERROR_SUCCESS) {\n\n\t\tindex = 0;\n\t\twhile (cr == ERROR_SUCCESS && !found) {\n\t\t\tcr = RegEnumKey(hkEnum,index++,databuf,512);\n\t\t\tif (cr == ERROR_SUCCESS) {\n\t\t\t\tCharLowerBuff(databuf,strlen(databuf));\n\t\t\t\tif (!(strcmp(databuf,clsidstr))) {\n\t\t\t\t\tif ((cr = RegOpenKeyEx(hkEnum,databuf,0,KEY_READ,&hksub)) == ERROR_SUCCESS) {\n\t\t\t\t\t\tif ((cr = RegOpenKeyEx(hksub,INPROC_SERVER,0,KEY_READ,&hkpath)) == ERROR_SUCCESS) {\n\t\t\t\t\t\t\tdatatype = REG_SZ; datasize = (DWORD)dllpathsize;\n\t\t\t\t\t\t\tcr = RegQueryValueEx(hkpath,0,0,&datatype,(LPBYTE)dllpath,&datasize);\n\t\t\t\t\t\t\tif (cr == ERROR_SUCCESS) {\n\t\t\t\t\t\t\t\tmemset(&ofs,0,sizeof(OFSTRUCT));\n\t\t\t\t\t\t\t\tofs.cBytes = sizeof(OFSTRUCT); \n\t\t\t\t\t\t\t\thfile = OpenFile(dllpath,&ofs,OF_EXIST);\n\t\t\t\t\t\t\t\tif (hfile) rc = 0; \n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tRegCloseKey(hkpath);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tRegCloseKey(hksub);\n\t\t\t\t\t}\n\t\t\t\t\tfound = TRUE;\t// break out \n\t\t\t\t}\n\t\t\t}\n\t\t}\t\t\t\t\n\t\tRegCloseKey(hkEnum);\n\t}\n#endif\n\treturn rc;\n}\n\n\nstatic LPASIODRVSTRUCT newDrvStruct (HKEY hkey,char *keyname,int drvID,LPASIODRVSTRUCT lpdrv)\n{\n\tHKEY\thksub;\n\tchar\tdatabuf[256];\n\tchar\tdllpath[MAXPATHLEN];\n\tWORD\twData[100];\n\tCLSID\tclsid;\n\tDWORD\tdatatype,datasize;\n\tLONG\tcr,rc;\n\n\tif (!lpdrv) {\n\t\tif ((cr = RegOpenKeyExA(hkey,keyname,0,KEY_READ,&hksub)) == ERROR_SUCCESS) {\n\n\t\t\tdatatype = REG_SZ; datasize = 256;\n\t\t\tcr = RegQueryValueExA(hksub,COM_CLSID,0,&datatype,(LPBYTE)databuf,&datasize);\n\t\t\tif (cr == ERROR_SUCCESS) {\n\t\t\t\trc = findDrvPath (databuf,dllpath,MAXPATHLEN);\n\t\t\t\tif (rc == 0) {\n\t\t\t\t\tlpdrv = new ASIODRVSTRUCT[1];\n\t\t\t\t\tif (lpdrv) {\n\t\t\t\t\t\tmemset(lpdrv,0,sizeof(ASIODRVSTRUCT));\n\t\t\t\t\t\tlpdrv->drvID = drvID;\n\t\t\t\t\t\tMultiByteToWideChar(CP_ACP,0,(LPCSTR)databuf,-1,(LPWSTR)wData,100);\n\t\t\t\t\t\tif ((cr = CLSIDFromString((LPOLESTR)wData,(LPCLSID)&clsid)) == S_OK) {\n\t\t\t\t\t\t\tmemcpy(&lpdrv->clsid,&clsid,sizeof(CLSID));\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdatatype = REG_SZ; datasize = 256;\n\t\t\t\t\t\tcr = RegQueryValueExA(hksub,ASIODRV_DESC,0,&datatype,(LPBYTE)databuf,&datasize);\n\t\t\t\t\t\tif (cr == ERROR_SUCCESS) {\n\t\t\t\t\t\t\tstrcpy(lpdrv->drvname,databuf);\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse strcpy(lpdrv->drvname,keyname);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tRegCloseKey(hksub);\n\t\t}\n\t}\t\n\telse lpdrv->next = newDrvStruct(hkey,keyname,drvID+1,lpdrv->next);\n\n\treturn lpdrv;\n}\n\nstatic void deleteDrvStruct (LPASIODRVSTRUCT lpdrv)\n{\n\tIASIO\t*iasio;\n\n\tif (lpdrv != 0) {\n\t\tdeleteDrvStruct(lpdrv->next);\n\t\tif (lpdrv->asiodrv) {\n\t\t\tiasio = (IASIO *)lpdrv->asiodrv;\n\t\t\tiasio->Release();\n\t\t}\n\t\tdelete lpdrv;\n\t}\n}\n\n\nstatic LPASIODRVSTRUCT getDrvStruct (int drvID,LPASIODRVSTRUCT lpdrv)\n{\n\twhile (lpdrv) {\n\t\tif (lpdrv->drvID == drvID) return lpdrv;\n\t\tlpdrv = lpdrv->next;\n\t}\n\treturn 0;\n}\n// ******************************************************************\n\n\n// ******************************************************************\n//\tAsioDriverList\n// ******************************************************************\nAsioDriverList::AsioDriverList ()\n{\n\tHKEY\t\t\thkEnum = 0;\n\tchar\t\t\tkeyname[MAXDRVNAMELEN];\n\tLPASIODRVSTRUCT\tpdl;\n\tLONG \t\t\tcr;\n\tDWORD\t\t\tindex = 0;\n\tBOOL\t\t\tfin = FALSE;\n\n\tnumdrv\t\t= 0;\n\tlpdrvlist\t= 0;\n\n#ifdef UNICODE\n\tcr = RegOpenKeyA(HKEY_LOCAL_MACHINE,ASIO_PATH,&hkEnum);\n#else\n\tcr = RegOpenKey(HKEY_LOCAL_MACHINE,ASIO_PATH,&hkEnum);\n#endif\n\twhile (cr == ERROR_SUCCESS) {\n#ifdef UNICODE\n\t\tif ((cr = RegEnumKeyA(hkEnum,index++,keyname,MAXDRVNAMELEN))== ERROR_SUCCESS) {\n#else\n\t\tif ((cr = RegEnumKey(hkEnum,index++,keyname,MAXDRVNAMELEN))== ERROR_SUCCESS) {\n#endif\n\t\t\tlpdrvlist = newDrvStruct (hkEnum,keyname,0,lpdrvlist);\n\t\t}\n\t\telse fin = TRUE;\n\t}\n\tif (hkEnum) RegCloseKey(hkEnum);\n\n\tpdl = lpdrvlist;\n\twhile (pdl) {\n\t\tnumdrv++;\n\t\tpdl = pdl->next;\n\t}\n\n\tif (numdrv) CoInitialize(0);\t// initialize COM\n}\n\nAsioDriverList::~AsioDriverList ()\n{\n\tif (numdrv) {\n\t\tdeleteDrvStruct(lpdrvlist);\n\t\tCoUninitialize();\n\t}\n}\n\n\nLONG AsioDriverList::asioGetNumDev (VOID)\n{\n\treturn (LONG)numdrv;\n}\n\n\nLONG AsioDriverList::asioOpenDriver (int drvID,LPVOID *asiodrv)\n{\n\tLPASIODRVSTRUCT\tlpdrv = 0;\n\tlong\t\t\trc;\n\n\tif (!asiodrv) return DRVERR_INVALID_PARAM;\n\n\tif ((lpdrv = getDrvStruct(drvID,lpdrvlist)) != 0) {\n\t\tif (!lpdrv->asiodrv) {\n\t\t\trc = CoCreateInstance(lpdrv->clsid,0,CLSCTX_INPROC_SERVER,lpdrv->clsid,asiodrv);\n\t\t\tif (rc == S_OK) {\n\t\t\t\tlpdrv->asiodrv = *asiodrv;\n\t\t\t\treturn 0;\n\t\t\t}\n\t\t\t// else if (rc == REGDB_E_CLASSNOTREG)\n\t\t\t//\tstrcpy (info->messageText, \"Driver not registered in the Registration Database!\");\n\t\t}\n\t\telse rc = DRVERR_DEVICE_ALREADY_OPEN;\n\t}\n\telse rc = DRVERR_DEVICE_NOT_FOUND;\n\t\n\treturn rc;\n}\n\n\nLONG AsioDriverList::asioCloseDriver (int drvID)\n{\n\tLPASIODRVSTRUCT\tlpdrv = 0;\n\tIASIO\t\t\t*iasio;\n\n\tif ((lpdrv = getDrvStruct(drvID,lpdrvlist)) != 0) {\n\t\tif (lpdrv->asiodrv) {\n\t\t\tiasio = (IASIO *)lpdrv->asiodrv;\n\t\t\tiasio->Release();\n\t\t\tlpdrv->asiodrv = 0;\n\t\t}\n\t}\n\n\treturn 0;\n}\n\nLONG AsioDriverList::asioGetDriverName (int drvID,char *drvname,int drvnamesize)\n{\t\n\tLPASIODRVSTRUCT\t\t\tlpdrv = 0;\n\n\tif (!drvname) return DRVERR_INVALID_PARAM;\n\n\tif ((lpdrv = getDrvStruct(drvID,lpdrvlist)) != 0) {\n\t\tif (strlen(lpdrv->drvname) < (unsigned int)drvnamesize) {\n\t\t\tstrcpy(drvname,lpdrv->drvname);\n\t\t}\n\t\telse {\n\t\t\tmemcpy(drvname,lpdrv->drvname,drvnamesize-4);\n\t\t\tdrvname[drvnamesize-4] = '.';\n\t\t\tdrvname[drvnamesize-3] = '.';\n\t\t\tdrvname[drvnamesize-2] = '.';\n\t\t\tdrvname[drvnamesize-1] = 0;\n\t\t}\n\t\treturn 0;\n\t}\n\treturn DRVERR_DEVICE_NOT_FOUND;\n}\n\nLONG AsioDriverList::asioGetDriverPath (int drvID,char *dllpath,int dllpathsize)\n{\n\tLPASIODRVSTRUCT\t\t\tlpdrv = 0;\n\n\tif (!dllpath) return DRVERR_INVALID_PARAM;\n\n\tif ((lpdrv = getDrvStruct(drvID,lpdrvlist)) != 0) {\n\t\tif (strlen(lpdrv->dllpath) < (unsigned int)dllpathsize) {\n\t\t\tstrcpy(dllpath,lpdrv->dllpath);\n\t\t\treturn 0;\n\t\t}\n\t\tdllpath[0] = 0;\n\t\treturn DRVERR_INVALID_PARAM;\n\t}\n\treturn DRVERR_DEVICE_NOT_FOUND;\n}\n\nLONG AsioDriverList::asioGetDriverCLSID (int drvID,CLSID *clsid)\n{\n\tLPASIODRVSTRUCT\t\t\tlpdrv = 0;\n\n\tif (!clsid) return DRVERR_INVALID_PARAM;\n\n\tif ((lpdrv = getDrvStruct(drvID,lpdrvlist)) != 0) {\n\t\tmemcpy(clsid,&lpdrv->clsid,sizeof(CLSID));\n\t\treturn 0;\n\t}\n\treturn DRVERR_DEVICE_NOT_FOUND;\n}\n\n\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/asiolist.h",
    "content": "#ifndef __asiolist__\r\n#define __asiolist__\r\n\r\n#define DRVERR\t\t\t-5000\r\n#define DRVERR_INVALID_PARAM\t\tDRVERR-1\r\n#define DRVERR_DEVICE_ALREADY_OPEN\tDRVERR-2\r\n#define DRVERR_DEVICE_NOT_FOUND\t\tDRVERR-3\r\n\r\n#define MAXPATHLEN\t\t\t512\r\n#define MAXDRVNAMELEN\t\t128\r\n\r\nstruct asiodrvstruct\r\n{\r\n\tint\t\t\t\t\t\tdrvID;\r\n\tCLSID\t\t\t\t\tclsid;\r\n\tchar\t\t\t\t\tdllpath[MAXPATHLEN];\r\n\tchar\t\t\t\t\tdrvname[MAXDRVNAMELEN];\r\n\tLPVOID\t\t\t\t\tasiodrv;\r\n\tstruct asiodrvstruct\t*next;\r\n};\r\n\r\ntypedef struct asiodrvstruct ASIODRVSTRUCT;\r\ntypedef ASIODRVSTRUCT\t*LPASIODRVSTRUCT;\r\n\r\nclass AsioDriverList {\r\npublic:\r\n\tAsioDriverList();\r\n\t~AsioDriverList();\r\n\t\r\n\tLONG asioOpenDriver (int,VOID **);\r\n\tLONG asioCloseDriver (int);\r\n\r\n\t// nice to have\r\n\tLONG asioGetNumDev (VOID);\r\n\tLONG asioGetDriverName (int,char *,int);\t\t\r\n\tLONG asioGetDriverPath (int,char *,int);\r\n\tLONG asioGetDriverCLSID (int,CLSID *);\r\n\r\n\t// or use directly access\r\n\tLPASIODRVSTRUCT\tlpdrvlist;\r\n\tint\t\t\t\tnumdrv;\r\n};\r\n\r\ntypedef class AsioDriverList *LPASIODRIVERLIST;\r\n\r\n#endif\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/asiosys.h",
    "content": "#ifndef __asiosys__\r\n\t#define __asiosys__\r\n\r\n\t#ifdef WIN32\r\n\t\t#undef MAC \r\n\t\t#define PPC 0\r\n\t\t#define WINDOWS 1\r\n\t\t#define SGI 0\r\n\t\t#define SUN 0\r\n\t\t#define LINUX 0\r\n\t\t#define BEOS 0\r\n\r\n\t\t#define NATIVE_INT64 0\r\n\t\t#define IEEE754_64FLOAT 1\r\n\t\r\n\t#elif BEOS\r\n\t\t#define MAC 0\r\n\t\t#define PPC 0\r\n\t\t#define WINDOWS 0\r\n\t\t#define PC 0\r\n\t\t#define SGI 0\r\n\t\t#define SUN 0\r\n\t\t#define LINUX 0\r\n\t\t\r\n\t\t#define NATIVE_INT64 0\r\n\t\t#define IEEE754_64FLOAT 1\r\n\t\t\r\n\t\t#ifndef DEBUG\r\n\t\t\t#define DEBUG 0\r\n\t\t \t#if DEBUG\r\n\t\t \t\tvoid DEBUGGERMESSAGE(char *string);\r\n\t\t \t#else\r\n\t\t  \t\t#define DEBUGGERMESSAGE(a)\r\n\t\t\t#endif\r\n\t\t#endif\r\n\r\n\t#elif SGI\r\n\t\t#define MAC 0\r\n\t\t#define PPC 0\r\n\t\t#define WINDOWS 0\r\n\t\t#define PC 0\r\n\t\t#define SUN 0\r\n\t\t#define LINUX 0\r\n\t\t#define BEOS 0\r\n\t\t\r\n\t\t#define NATIVE_INT64 0\r\n\t\t#define IEEE754_64FLOAT 1\r\n\t\t\r\n\t\t#ifndef DEBUG\r\n\t\t\t#define DEBUG 0\r\n\t\t \t#if DEBUG\r\n\t\t \t\tvoid DEBUGGERMESSAGE(char *string);\r\n\t\t \t#else\r\n\t\t  \t\t#define DEBUGGERMESSAGE(a)\r\n\t\t\t#endif\r\n\t\t#endif\r\n\r\n\t#else\t// MAC\r\n\r\n\t\t#define MAC 1\r\n\t\t#define PPC 1\r\n\t\t#define WINDOWS 0\r\n\t\t#define PC 0\r\n\t\t#define SGI 0\r\n\t\t#define SUN 0\r\n\t\t#define LINUX 0\r\n\t\t#define BEOS 0\r\n\r\n\t\t#define NATIVE_INT64 0\r\n\t\t#define IEEE754_64FLOAT 1\r\n\r\n\t\t#ifndef DEBUG\r\n\t\t\t#define DEBUG 0\r\n\t\t\t#if DEBUG\r\n\t\t\t\tvoid DEBUGGERMESSAGE(char *string);\r\n\t\t\t#else\r\n\t\t\t\t#define DEBUGGERMESSAGE(a)\r\n\t\t\t#endif\r\n\t\t#endif\r\n\t#endif\r\n\r\n#endif\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/dsound.h",
    "content": "/*==========================================================================;\n *\n *  Copyright (c) Microsoft Corporation.  All rights reserved.\n *\n *  File:       dsound.h\n *  Content:    DirectSound include file\n *\n **************************************************************************/\n\n#define COM_NO_WINDOWS_H\n#include <objbase.h>\n#include <float.h>\n\n#ifndef DIRECTSOUND_VERSION\n#define DIRECTSOUND_VERSION 0x0900  /* Version 9.0 */\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif // __cplusplus\n\n#ifndef __DSOUND_INCLUDED__\n#define __DSOUND_INCLUDED__\n\n/* Type definitions shared with Direct3D */\n\n#ifndef DX_SHARED_DEFINES\n\ntypedef float D3DVALUE, *LPD3DVALUE;\n\n#ifndef D3DCOLOR_DEFINED\ntypedef DWORD D3DCOLOR;\n#define D3DCOLOR_DEFINED\n#endif\n\n#ifndef LPD3DCOLOR_DEFINED\ntypedef DWORD *LPD3DCOLOR;\n#define LPD3DCOLOR_DEFINED\n#endif\n\n#ifndef D3DVECTOR_DEFINED\ntypedef struct _D3DVECTOR {\n    float x;\n    float y;\n    float z;\n} D3DVECTOR;\n#define D3DVECTOR_DEFINED\n#endif\n\n#ifndef LPD3DVECTOR_DEFINED\ntypedef D3DVECTOR *LPD3DVECTOR;\n#define LPD3DVECTOR_DEFINED\n#endif\n\n#define DX_SHARED_DEFINES\n#endif // DX_SHARED_DEFINES\n\n#define _FACDS  0x878   /* DirectSound's facility code */\n#define MAKE_DSHRESULT(code)  MAKE_HRESULT(1, _FACDS, code)\n\n// DirectSound Component GUID {47D4D946-62E8-11CF-93BC-444553540000}\nDEFINE_GUID(CLSID_DirectSound, 0x47d4d946, 0x62e8, 0x11cf, 0x93, 0xbc, 0x44, 0x45, 0x53, 0x54, 0x0, 0x0);\n\n// DirectSound 8.0 Component GUID {3901CC3F-84B5-4FA4-BA35-AA8172B8A09B}\nDEFINE_GUID(CLSID_DirectSound8, 0x3901cc3f, 0x84b5, 0x4fa4, 0xba, 0x35, 0xaa, 0x81, 0x72, 0xb8, 0xa0, 0x9b);\n\n// DirectSound Capture Component GUID {B0210780-89CD-11D0-AF08-00A0C925CD16}\nDEFINE_GUID(CLSID_DirectSoundCapture, 0xb0210780, 0x89cd, 0x11d0, 0xaf, 0x8, 0x0, 0xa0, 0xc9, 0x25, 0xcd, 0x16);\n\n// DirectSound 8.0 Capture Component GUID {E4BCAC13-7F99-4908-9A8E-74E3BF24B6E1}\nDEFINE_GUID(CLSID_DirectSoundCapture8, 0xe4bcac13, 0x7f99, 0x4908, 0x9a, 0x8e, 0x74, 0xe3, 0xbf, 0x24, 0xb6, 0xe1);\n\n// DirectSound Full Duplex Component GUID {FEA4300C-7959-4147-B26A-2377B9E7A91D}\nDEFINE_GUID(CLSID_DirectSoundFullDuplex, 0xfea4300c, 0x7959, 0x4147, 0xb2, 0x6a, 0x23, 0x77, 0xb9, 0xe7, 0xa9, 0x1d);\n\n\n// DirectSound default playback device GUID {DEF00000-9C6D-47ED-AAF1-4DDA8F2B5C03}\nDEFINE_GUID(DSDEVID_DefaultPlayback, 0xdef00000, 0x9c6d, 0x47ed, 0xaa, 0xf1, 0x4d, 0xda, 0x8f, 0x2b, 0x5c, 0x03);\n\n// DirectSound default capture device GUID {DEF00001-9C6D-47ED-AAF1-4DDA8F2B5C03}\nDEFINE_GUID(DSDEVID_DefaultCapture, 0xdef00001, 0x9c6d, 0x47ed, 0xaa, 0xf1, 0x4d, 0xda, 0x8f, 0x2b, 0x5c, 0x03);\n\n// DirectSound default device for voice playback {DEF00002-9C6D-47ED-AAF1-4DDA8F2B5C03}\nDEFINE_GUID(DSDEVID_DefaultVoicePlayback, 0xdef00002, 0x9c6d, 0x47ed, 0xaa, 0xf1, 0x4d, 0xda, 0x8f, 0x2b, 0x5c, 0x03);\n\n// DirectSound default device for voice capture {DEF00003-9C6D-47ED-AAF1-4DDA8F2B5C03}\nDEFINE_GUID(DSDEVID_DefaultVoiceCapture, 0xdef00003, 0x9c6d, 0x47ed, 0xaa, 0xf1, 0x4d, 0xda, 0x8f, 0x2b, 0x5c, 0x03);\n\n\n//\n// Forward declarations for interfaces.\n// 'struct' not 'class' per the way DECLARE_INTERFACE_ is defined\n//\n\n#ifdef __cplusplus\nstruct IDirectSound;\nstruct IDirectSoundBuffer;\nstruct IDirectSound3DListener;\nstruct IDirectSound3DBuffer;\nstruct IDirectSoundCapture;\nstruct IDirectSoundCaptureBuffer;\nstruct IDirectSoundNotify;\n#endif // __cplusplus\n\n\n//\n// DirectSound 8.0 interfaces.\n//\n\n#if DIRECTSOUND_VERSION >= 0x0800\n\n#ifdef __cplusplus\nstruct IDirectSound8;\nstruct IDirectSoundBuffer8;\nstruct IDirectSoundCaptureBuffer8;\nstruct IDirectSoundFXGargle;\nstruct IDirectSoundFXChorus;\nstruct IDirectSoundFXFlanger;\nstruct IDirectSoundFXEcho;\nstruct IDirectSoundFXDistortion;\nstruct IDirectSoundFXCompressor;\nstruct IDirectSoundFXParamEq;\nstruct IDirectSoundFXWavesReverb;\nstruct IDirectSoundFXI3DL2Reverb;\nstruct IDirectSoundCaptureFXAec;\nstruct IDirectSoundCaptureFXNoiseSuppress;\nstruct IDirectSoundFullDuplex;\n#endif // __cplusplus\n\n// IDirectSound8, IDirectSoundBuffer8 and IDirectSoundCaptureBuffer8 are the\n// only DirectSound 7.0 interfaces with changed functionality in version 8.0.\n// The other level 8 interfaces as equivalent to their level 7 counterparts:\n\n#define IDirectSoundCapture8            IDirectSoundCapture\n#define IDirectSound3DListener8         IDirectSound3DListener\n#define IDirectSound3DBuffer8           IDirectSound3DBuffer\n#define IDirectSoundNotify8             IDirectSoundNotify\n#define IDirectSoundFXGargle8           IDirectSoundFXGargle\n#define IDirectSoundFXChorus8           IDirectSoundFXChorus\n#define IDirectSoundFXFlanger8          IDirectSoundFXFlanger\n#define IDirectSoundFXEcho8             IDirectSoundFXEcho\n#define IDirectSoundFXDistortion8       IDirectSoundFXDistortion\n#define IDirectSoundFXCompressor8       IDirectSoundFXCompressor\n#define IDirectSoundFXParamEq8          IDirectSoundFXParamEq\n#define IDirectSoundFXWavesReverb8      IDirectSoundFXWavesReverb\n#define IDirectSoundFXI3DL2Reverb8      IDirectSoundFXI3DL2Reverb\n#define IDirectSoundCaptureFXAec8       IDirectSoundCaptureFXAec\n#define IDirectSoundCaptureFXNoiseSuppress8 IDirectSoundCaptureFXNoiseSuppress\n#define IDirectSoundFullDuplex8         IDirectSoundFullDuplex\n\n#endif // DIRECTSOUND_VERSION >= 0x0800\n\ntypedef struct IDirectSound                 *LPDIRECTSOUND;\ntypedef struct IDirectSoundBuffer           *LPDIRECTSOUNDBUFFER;\ntypedef struct IDirectSound3DListener       *LPDIRECTSOUND3DLISTENER;\ntypedef struct IDirectSound3DBuffer         *LPDIRECTSOUND3DBUFFER;\ntypedef struct IDirectSoundCapture          *LPDIRECTSOUNDCAPTURE;\ntypedef struct IDirectSoundCaptureBuffer    *LPDIRECTSOUNDCAPTUREBUFFER;\ntypedef struct IDirectSoundNotify           *LPDIRECTSOUNDNOTIFY;\n\n\n#if DIRECTSOUND_VERSION >= 0x0800\n\ntypedef struct IDirectSoundFXGargle         *LPDIRECTSOUNDFXGARGLE;\ntypedef struct IDirectSoundFXChorus         *LPDIRECTSOUNDFXCHORUS;\ntypedef struct IDirectSoundFXFlanger        *LPDIRECTSOUNDFXFLANGER;\ntypedef struct IDirectSoundFXEcho           *LPDIRECTSOUNDFXECHO;\ntypedef struct IDirectSoundFXDistortion     *LPDIRECTSOUNDFXDISTORTION;\ntypedef struct IDirectSoundFXCompressor     *LPDIRECTSOUNDFXCOMPRESSOR;\ntypedef struct IDirectSoundFXParamEq        *LPDIRECTSOUNDFXPARAMEQ;\ntypedef struct IDirectSoundFXWavesReverb    *LPDIRECTSOUNDFXWAVESREVERB;\ntypedef struct IDirectSoundFXI3DL2Reverb    *LPDIRECTSOUNDFXI3DL2REVERB;\ntypedef struct IDirectSoundCaptureFXAec     *LPDIRECTSOUNDCAPTUREFXAEC;\ntypedef struct IDirectSoundCaptureFXNoiseSuppress *LPDIRECTSOUNDCAPTUREFXNOISESUPPRESS;\ntypedef struct IDirectSoundFullDuplex       *LPDIRECTSOUNDFULLDUPLEX;\n\ntypedef struct IDirectSound8                *LPDIRECTSOUND8;\ntypedef struct IDirectSoundBuffer8          *LPDIRECTSOUNDBUFFER8;\ntypedef struct IDirectSound3DListener8      *LPDIRECTSOUND3DLISTENER8;\ntypedef struct IDirectSound3DBuffer8        *LPDIRECTSOUND3DBUFFER8;\ntypedef struct IDirectSoundCapture8         *LPDIRECTSOUNDCAPTURE8;\ntypedef struct IDirectSoundCaptureBuffer8   *LPDIRECTSOUNDCAPTUREBUFFER8;\ntypedef struct IDirectSoundNotify8          *LPDIRECTSOUNDNOTIFY8;\ntypedef struct IDirectSoundFXGargle8        *LPDIRECTSOUNDFXGARGLE8;\ntypedef struct IDirectSoundFXChorus8        *LPDIRECTSOUNDFXCHORUS8;\ntypedef struct IDirectSoundFXFlanger8       *LPDIRECTSOUNDFXFLANGER8;\ntypedef struct IDirectSoundFXEcho8          *LPDIRECTSOUNDFXECHO8;\ntypedef struct IDirectSoundFXDistortion8    *LPDIRECTSOUNDFXDISTORTION8;\ntypedef struct IDirectSoundFXCompressor8    *LPDIRECTSOUNDFXCOMPRESSOR8;\ntypedef struct IDirectSoundFXParamEq8       *LPDIRECTSOUNDFXPARAMEQ8;\ntypedef struct IDirectSoundFXWavesReverb8   *LPDIRECTSOUNDFXWAVESREVERB8;\ntypedef struct IDirectSoundFXI3DL2Reverb8   *LPDIRECTSOUNDFXI3DL2REVERB8;\ntypedef struct IDirectSoundCaptureFXAec8    *LPDIRECTSOUNDCAPTUREFXAEC8;\ntypedef struct IDirectSoundCaptureFXNoiseSuppress8 *LPDIRECTSOUNDCAPTUREFXNOISESUPPRESS8;\ntypedef struct IDirectSoundFullDuplex8      *LPDIRECTSOUNDFULLDUPLEX8;\n\n#endif // DIRECTSOUND_VERSION >= 0x0800\n\n//\n// IID definitions for the unchanged DirectSound 8.0 interfaces\n//\n\n#if DIRECTSOUND_VERSION >= 0x0800\n\n#define IID_IDirectSoundCapture8            IID_IDirectSoundCapture\n#define IID_IDirectSound3DListener8         IID_IDirectSound3DListener\n#define IID_IDirectSound3DBuffer8           IID_IDirectSound3DBuffer\n#define IID_IDirectSoundNotify8             IID_IDirectSoundNotify\n#define IID_IDirectSoundFXGargle8           IID_IDirectSoundFXGargle\n#define IID_IDirectSoundFXChorus8           IID_IDirectSoundFXChorus\n#define IID_IDirectSoundFXFlanger8          IID_IDirectSoundFXFlanger\n#define IID_IDirectSoundFXEcho8             IID_IDirectSoundFXEcho\n#define IID_IDirectSoundFXDistortion8       IID_IDirectSoundFXDistortion\n#define IID_IDirectSoundFXCompressor8       IID_IDirectSoundFXCompressor\n#define IID_IDirectSoundFXParamEq8          IID_IDirectSoundFXParamEq\n#define IID_IDirectSoundFXWavesReverb8      IID_IDirectSoundFXWavesReverb\n#define IID_IDirectSoundFXI3DL2Reverb8      IID_IDirectSoundFXI3DL2Reverb\n#define IID_IDirectSoundCaptureFXAec8       IID_IDirectSoundCaptureFXAec\n#define IID_IDirectSoundCaptureFXNoiseSuppress8 IID_IDirectSoundCaptureFXNoiseSuppress\n#define IID_IDirectSoundFullDuplex8         IID_IDirectSoundFullDuplex\n\n#endif // DIRECTSOUND_VERSION >= 0x0800\n\n//\n// Compatibility typedefs\n//\n\n#ifndef _LPCWAVEFORMATEX_DEFINED\n#define _LPCWAVEFORMATEX_DEFINED\ntypedef const WAVEFORMATEX *LPCWAVEFORMATEX;\n#endif // _LPCWAVEFORMATEX_DEFINED\n\n#ifndef __LPCGUID_DEFINED__\n#define __LPCGUID_DEFINED__\ntypedef const GUID *LPCGUID;\n#endif // __LPCGUID_DEFINED__\n\ntypedef LPDIRECTSOUND *LPLPDIRECTSOUND;\ntypedef LPDIRECTSOUNDBUFFER *LPLPDIRECTSOUNDBUFFER;\ntypedef LPDIRECTSOUND3DLISTENER *LPLPDIRECTSOUND3DLISTENER;\ntypedef LPDIRECTSOUND3DBUFFER *LPLPDIRECTSOUND3DBUFFER;\ntypedef LPDIRECTSOUNDCAPTURE *LPLPDIRECTSOUNDCAPTURE;\ntypedef LPDIRECTSOUNDCAPTUREBUFFER *LPLPDIRECTSOUNDCAPTUREBUFFER;\ntypedef LPDIRECTSOUNDNOTIFY *LPLPDIRECTSOUNDNOTIFY;\n\n#if DIRECTSOUND_VERSION >= 0x0800\ntypedef LPDIRECTSOUND8 *LPLPDIRECTSOUND8;\ntypedef LPDIRECTSOUNDBUFFER8 *LPLPDIRECTSOUNDBUFFER8;\ntypedef LPDIRECTSOUNDCAPTURE8 *LPLPDIRECTSOUNDCAPTURE8;\ntypedef LPDIRECTSOUNDCAPTUREBUFFER8 *LPLPDIRECTSOUNDCAPTUREBUFFER8;\n#endif // DIRECTSOUND_VERSION >= 0x0800\n\n//\n// Structures\n//\n\ntypedef struct _DSCAPS\n{\n    DWORD           dwSize;\n    DWORD           dwFlags;\n    DWORD           dwMinSecondarySampleRate;\n    DWORD           dwMaxSecondarySampleRate;\n    DWORD           dwPrimaryBuffers;\n    DWORD           dwMaxHwMixingAllBuffers;\n    DWORD           dwMaxHwMixingStaticBuffers;\n    DWORD           dwMaxHwMixingStreamingBuffers;\n    DWORD           dwFreeHwMixingAllBuffers;\n    DWORD           dwFreeHwMixingStaticBuffers;\n    DWORD           dwFreeHwMixingStreamingBuffers;\n    DWORD           dwMaxHw3DAllBuffers;\n    DWORD           dwMaxHw3DStaticBuffers;\n    DWORD           dwMaxHw3DStreamingBuffers;\n    DWORD           dwFreeHw3DAllBuffers;\n    DWORD           dwFreeHw3DStaticBuffers;\n    DWORD           dwFreeHw3DStreamingBuffers;\n    DWORD           dwTotalHwMemBytes;\n    DWORD           dwFreeHwMemBytes;\n    DWORD           dwMaxContigFreeHwMemBytes;\n    DWORD           dwUnlockTransferRateHwBuffers;\n    DWORD           dwPlayCpuOverheadSwBuffers;\n    DWORD           dwReserved1;\n    DWORD           dwReserved2;\n} DSCAPS, *LPDSCAPS;\n\ntypedef const DSCAPS *LPCDSCAPS;\n\ntypedef struct _DSBCAPS\n{\n    DWORD           dwSize;\n    DWORD           dwFlags;\n    DWORD           dwBufferBytes;\n    DWORD           dwUnlockTransferRate;\n    DWORD           dwPlayCpuOverhead;\n} DSBCAPS, *LPDSBCAPS;\n\ntypedef const DSBCAPS *LPCDSBCAPS;\n\n#if DIRECTSOUND_VERSION >= 0x0800\n\n    typedef struct _DSEFFECTDESC\n    {\n        DWORD       dwSize;\n        DWORD       dwFlags;\n        GUID        guidDSFXClass;\n        DWORD_PTR   dwReserved1;\n        DWORD_PTR   dwReserved2;\n    } DSEFFECTDESC, *LPDSEFFECTDESC;\n    typedef const DSEFFECTDESC *LPCDSEFFECTDESC;\n\n    #define DSFX_LOCHARDWARE    0x00000001\n    #define DSFX_LOCSOFTWARE    0x00000002\n\n    enum\n    {\n        DSFXR_PRESENT,          // 0\n        DSFXR_LOCHARDWARE,      // 1\n        DSFXR_LOCSOFTWARE,      // 2\n        DSFXR_UNALLOCATED,      // 3\n        DSFXR_FAILED,           // 4\n        DSFXR_UNKNOWN,          // 5\n        DSFXR_SENDLOOP          // 6\n    };\n\n    typedef struct _DSCEFFECTDESC\n    {\n        DWORD       dwSize;\n        DWORD       dwFlags;\n        GUID        guidDSCFXClass;\n        GUID        guidDSCFXInstance;\n        DWORD       dwReserved1;\n        DWORD       dwReserved2;\n    } DSCEFFECTDESC, *LPDSCEFFECTDESC;\n    typedef const DSCEFFECTDESC *LPCDSCEFFECTDESC;\n\n    #define DSCFX_LOCHARDWARE   0x00000001\n    #define DSCFX_LOCSOFTWARE   0x00000002\n\n    #define DSCFXR_LOCHARDWARE  0x00000010\n    #define DSCFXR_LOCSOFTWARE  0x00000020\n\n#endif // DIRECTSOUND_VERSION >= 0x0800\n\ntypedef struct _DSBUFFERDESC\n{\n    DWORD           dwSize;\n    DWORD           dwFlags;\n    DWORD           dwBufferBytes;\n    DWORD           dwReserved;\n    LPWAVEFORMATEX  lpwfxFormat;\n#if DIRECTSOUND_VERSION >= 0x0700\n    GUID            guid3DAlgorithm;\n#endif\n} DSBUFFERDESC, *LPDSBUFFERDESC;\n\ntypedef const DSBUFFERDESC *LPCDSBUFFERDESC;\n\n// Older version of this structure:\n\ntypedef struct _DSBUFFERDESC1\n{\n    DWORD           dwSize;\n    DWORD           dwFlags;\n    DWORD           dwBufferBytes;\n    DWORD           dwReserved;\n    LPWAVEFORMATEX  lpwfxFormat;\n} DSBUFFERDESC1, *LPDSBUFFERDESC1;\n\ntypedef const DSBUFFERDESC1 *LPCDSBUFFERDESC1;\n\ntypedef struct _DS3DBUFFER\n{\n    DWORD           dwSize;\n    D3DVECTOR       vPosition;\n    D3DVECTOR       vVelocity;\n    DWORD           dwInsideConeAngle;\n    DWORD           dwOutsideConeAngle;\n    D3DVECTOR       vConeOrientation;\n    LONG            lConeOutsideVolume;\n    D3DVALUE        flMinDistance;\n    D3DVALUE        flMaxDistance;\n    DWORD           dwMode;\n} DS3DBUFFER, *LPDS3DBUFFER;\n\ntypedef const DS3DBUFFER *LPCDS3DBUFFER;\n\ntypedef struct _DS3DLISTENER\n{\n    DWORD           dwSize;\n    D3DVECTOR       vPosition;\n    D3DVECTOR       vVelocity;\n    D3DVECTOR       vOrientFront;\n    D3DVECTOR       vOrientTop;\n    D3DVALUE        flDistanceFactor;\n    D3DVALUE        flRolloffFactor;\n    D3DVALUE        flDopplerFactor;\n} DS3DLISTENER, *LPDS3DLISTENER;\n\ntypedef const DS3DLISTENER *LPCDS3DLISTENER;\n\ntypedef struct _DSCCAPS\n{\n    DWORD           dwSize;\n    DWORD           dwFlags;\n    DWORD           dwFormats;\n    DWORD           dwChannels;\n} DSCCAPS, *LPDSCCAPS;\n\ntypedef const DSCCAPS *LPCDSCCAPS;\n\ntypedef struct _DSCBUFFERDESC1\n{\n    DWORD           dwSize;\n    DWORD           dwFlags;\n    DWORD           dwBufferBytes;\n    DWORD           dwReserved;\n    LPWAVEFORMATEX  lpwfxFormat;\n} DSCBUFFERDESC1, *LPDSCBUFFERDESC1;\n\ntypedef struct _DSCBUFFERDESC\n{\n    DWORD           dwSize;\n    DWORD           dwFlags;\n    DWORD           dwBufferBytes;\n    DWORD           dwReserved;\n    LPWAVEFORMATEX  lpwfxFormat;\n#if DIRECTSOUND_VERSION >= 0x0800\n    DWORD           dwFXCount;\n    LPDSCEFFECTDESC lpDSCFXDesc;\n#endif\n} DSCBUFFERDESC, *LPDSCBUFFERDESC;\n\ntypedef const DSCBUFFERDESC *LPCDSCBUFFERDESC;\n\ntypedef struct _DSCBCAPS\n{\n    DWORD           dwSize;\n    DWORD           dwFlags;\n    DWORD           dwBufferBytes;\n    DWORD           dwReserved;\n} DSCBCAPS, *LPDSCBCAPS;\n\ntypedef const DSCBCAPS *LPCDSCBCAPS;\n\ntypedef struct _DSBPOSITIONNOTIFY\n{\n    DWORD           dwOffset;\n    HANDLE          hEventNotify;\n} DSBPOSITIONNOTIFY, *LPDSBPOSITIONNOTIFY;\n\ntypedef const DSBPOSITIONNOTIFY *LPCDSBPOSITIONNOTIFY;\n\n//\n// DirectSound API\n//\n\ntypedef BOOL (CALLBACK *LPDSENUMCALLBACKA)(LPGUID, LPCSTR, LPCSTR, LPVOID);\ntypedef BOOL (CALLBACK *LPDSENUMCALLBACKW)(LPGUID, LPCWSTR, LPCWSTR, LPVOID);\n\nextern HRESULT WINAPI DirectSoundCreate(LPCGUID pcGuidDevice, LPDIRECTSOUND *ppDS, LPUNKNOWN pUnkOuter);\nextern HRESULT WINAPI DirectSoundEnumerateA(LPDSENUMCALLBACKA pDSEnumCallback, LPVOID pContext);\nextern HRESULT WINAPI DirectSoundEnumerateW(LPDSENUMCALLBACKW pDSEnumCallback, LPVOID pContext);\n\nextern HRESULT WINAPI DirectSoundCaptureCreate(LPCGUID pcGuidDevice, LPDIRECTSOUNDCAPTURE *ppDSC, LPUNKNOWN pUnkOuter);\nextern HRESULT WINAPI DirectSoundCaptureEnumerateA(LPDSENUMCALLBACKA pDSEnumCallback, LPVOID pContext);\nextern HRESULT WINAPI DirectSoundCaptureEnumerateW(LPDSENUMCALLBACKW pDSEnumCallback, LPVOID pContext);\n\n#if DIRECTSOUND_VERSION >= 0x0800\nextern HRESULT WINAPI DirectSoundCreate8(LPCGUID pcGuidDevice, LPDIRECTSOUND8 *ppDS8, LPUNKNOWN pUnkOuter);\nextern HRESULT WINAPI DirectSoundCaptureCreate8(LPCGUID pcGuidDevice, LPDIRECTSOUNDCAPTURE8 *ppDSC8, LPUNKNOWN pUnkOuter);\nextern HRESULT WINAPI DirectSoundFullDuplexCreate(LPCGUID pcGuidCaptureDevice, LPCGUID pcGuidRenderDevice,\n        LPCDSCBUFFERDESC pcDSCBufferDesc, LPCDSBUFFERDESC pcDSBufferDesc, HWND hWnd,\n        DWORD dwLevel, LPDIRECTSOUNDFULLDUPLEX* ppDSFD, LPDIRECTSOUNDCAPTUREBUFFER8 *ppDSCBuffer8,\n        LPDIRECTSOUNDBUFFER8 *ppDSBuffer8, LPUNKNOWN pUnkOuter);\n#define DirectSoundFullDuplexCreate8 DirectSoundFullDuplexCreate\n\nextern HRESULT WINAPI GetDeviceID(LPCGUID pGuidSrc, LPGUID pGuidDest);\n#endif // DIRECTSOUND_VERSION >= 0x0800\n\n#ifdef UNICODE\n#define LPDSENUMCALLBACK            LPDSENUMCALLBACKW\n#define DirectSoundEnumerate        DirectSoundEnumerateW\n#define DirectSoundCaptureEnumerate DirectSoundCaptureEnumerateW\n#else // UNICODE\n#define LPDSENUMCALLBACK            LPDSENUMCALLBACKA\n#define DirectSoundEnumerate        DirectSoundEnumerateA\n#define DirectSoundCaptureEnumerate DirectSoundCaptureEnumerateA\n#endif // UNICODE\n\n//\n// IUnknown\n//\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#ifndef IUnknown_QueryInterface\n#define IUnknown_QueryInterface(p,a,b)  (p)->lpVtbl->QueryInterface(p,a,b)\n#endif // IUnknown_QueryInterface\n#ifndef IUnknown_AddRef\n#define IUnknown_AddRef(p)              (p)->lpVtbl->AddRef(p)\n#endif // IUnknown_AddRef\n#ifndef IUnknown_Release\n#define IUnknown_Release(p)             (p)->lpVtbl->Release(p)\n#endif // IUnknown_Release\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#ifndef IUnknown_QueryInterface\n#define IUnknown_QueryInterface(p,a,b)  (p)->QueryInterface(a,b)\n#endif // IUnknown_QueryInterface\n#ifndef IUnknown_AddRef\n#define IUnknown_AddRef(p)              (p)->AddRef()\n#endif // IUnknown_AddRef\n#ifndef IUnknown_Release\n#define IUnknown_Release(p)             (p)->Release()\n#endif // IUnknown_Release\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n#ifndef __IReferenceClock_INTERFACE_DEFINED__\n#define __IReferenceClock_INTERFACE_DEFINED__\n\ntypedef LONGLONG REFERENCE_TIME;\ntypedef REFERENCE_TIME *LPREFERENCE_TIME;\n\nDEFINE_GUID(IID_IReferenceClock, 0x56a86897, 0x0ad4, 0x11ce, 0xb0, 0x3a, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);\n\n#undef INTERFACE\n#define INTERFACE IReferenceClock\n\nDECLARE_INTERFACE_(IReferenceClock, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IReferenceClock methods\n    STDMETHOD(GetTime)              (THIS_ REFERENCE_TIME *pTime) PURE;\n    STDMETHOD(AdviseTime)           (THIS_ REFERENCE_TIME rtBaseTime, REFERENCE_TIME rtStreamTime,\n                                           HANDLE hEvent, LPDWORD pdwAdviseCookie) PURE;\n    STDMETHOD(AdvisePeriodic)       (THIS_ REFERENCE_TIME rtStartTime, REFERENCE_TIME rtPeriodTime,\n                                           HANDLE hSemaphore, LPDWORD pdwAdviseCookie) PURE;\n    STDMETHOD(Unadvise)             (THIS_ DWORD dwAdviseCookie) PURE;\n};\n\n#endif // __IReferenceClock_INTERFACE_DEFINED__\n\n#ifndef IReferenceClock_QueryInterface\n\n#define IReferenceClock_QueryInterface(p,a,b)      IUnknown_QueryInterface(p,a,b)\n#define IReferenceClock_AddRef(p)                  IUnknown_AddRef(p)\n#define IReferenceClock_Release(p)                 IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IReferenceClock_GetTime(p,a)               (p)->lpVtbl->GetTime(p,a)\n#define IReferenceClock_AdviseTime(p,a,b,c,d)      (p)->lpVtbl->AdviseTime(p,a,b,c,d)\n#define IReferenceClock_AdvisePeriodic(p,a,b,c,d)  (p)->lpVtbl->AdvisePeriodic(p,a,b,c,d)\n#define IReferenceClock_Unadvise(p,a)              (p)->lpVtbl->Unadvise(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IReferenceClock_GetTime(p,a)               (p)->GetTime(a)\n#define IReferenceClock_AdviseTime(p,a,b,c,d)      (p)->AdviseTime(a,b,c,d)\n#define IReferenceClock_AdvisePeriodic(p,a,b,c,d)  (p)->AdvisePeriodic(a,b,c,d)\n#define IReferenceClock_Unadvise(p,a)              (p)->Unadvise(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n#endif // IReferenceClock_QueryInterface\n\n//\n// IDirectSound\n//\n\nDEFINE_GUID(IID_IDirectSound, 0x279AFA83, 0x4981, 0x11CE, 0xA5, 0x21, 0x00, 0x20, 0xAF, 0x0B, 0xE5, 0x60);\n\n#undef INTERFACE\n#define INTERFACE IDirectSound\n\nDECLARE_INTERFACE_(IDirectSound, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSound methods\n    STDMETHOD(CreateSoundBuffer)    (THIS_ LPCDSBUFFERDESC pcDSBufferDesc, LPDIRECTSOUNDBUFFER *ppDSBuffer, LPUNKNOWN pUnkOuter) PURE;\n    STDMETHOD(GetCaps)              (THIS_ LPDSCAPS pDSCaps) PURE;\n    STDMETHOD(DuplicateSoundBuffer) (THIS_ LPDIRECTSOUNDBUFFER pDSBufferOriginal, LPDIRECTSOUNDBUFFER *ppDSBufferDuplicate) PURE;\n    STDMETHOD(SetCooperativeLevel)  (THIS_ HWND hwnd, DWORD dwLevel) PURE;\n    STDMETHOD(Compact)              (THIS) PURE;\n    STDMETHOD(GetSpeakerConfig)     (THIS_ LPDWORD pdwSpeakerConfig) PURE;\n    STDMETHOD(SetSpeakerConfig)     (THIS_ DWORD dwSpeakerConfig) PURE;\n    STDMETHOD(Initialize)           (THIS_ LPCGUID pcGuidDevice) PURE;\n};\n\n#define IDirectSound_QueryInterface(p,a,b)       IUnknown_QueryInterface(p,a,b)\n#define IDirectSound_AddRef(p)                   IUnknown_AddRef(p)\n#define IDirectSound_Release(p)                  IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSound_CreateSoundBuffer(p,a,b,c)  (p)->lpVtbl->CreateSoundBuffer(p,a,b,c)\n#define IDirectSound_GetCaps(p,a)                (p)->lpVtbl->GetCaps(p,a)\n#define IDirectSound_DuplicateSoundBuffer(p,a,b) (p)->lpVtbl->DuplicateSoundBuffer(p,a,b)\n#define IDirectSound_SetCooperativeLevel(p,a,b)  (p)->lpVtbl->SetCooperativeLevel(p,a,b)\n#define IDirectSound_Compact(p)                  (p)->lpVtbl->Compact(p)\n#define IDirectSound_GetSpeakerConfig(p,a)       (p)->lpVtbl->GetSpeakerConfig(p,a)\n#define IDirectSound_SetSpeakerConfig(p,b)       (p)->lpVtbl->SetSpeakerConfig(p,b)\n#define IDirectSound_Initialize(p,a)             (p)->lpVtbl->Initialize(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSound_CreateSoundBuffer(p,a,b,c)  (p)->CreateSoundBuffer(a,b,c)\n#define IDirectSound_GetCaps(p,a)                (p)->GetCaps(a)\n#define IDirectSound_DuplicateSoundBuffer(p,a,b) (p)->DuplicateSoundBuffer(a,b)\n#define IDirectSound_SetCooperativeLevel(p,a,b)  (p)->SetCooperativeLevel(a,b)\n#define IDirectSound_Compact(p)                  (p)->Compact()\n#define IDirectSound_GetSpeakerConfig(p,a)       (p)->GetSpeakerConfig(a)\n#define IDirectSound_SetSpeakerConfig(p,b)       (p)->SetSpeakerConfig(b)\n#define IDirectSound_Initialize(p,a)             (p)->Initialize(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n#if DIRECTSOUND_VERSION >= 0x0800\n\n//\n// IDirectSound8\n//\n\nDEFINE_GUID(IID_IDirectSound8, 0xC50A7E93, 0xF395, 0x4834, 0x9E, 0xF6, 0x7F, 0xA9, 0x9D, 0xE5, 0x09, 0x66);\n\n#undef INTERFACE\n#define INTERFACE IDirectSound8\n\nDECLARE_INTERFACE_(IDirectSound8, IDirectSound)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSound methods\n    STDMETHOD(CreateSoundBuffer)    (THIS_ LPCDSBUFFERDESC pcDSBufferDesc, LPDIRECTSOUNDBUFFER *ppDSBuffer, LPUNKNOWN pUnkOuter) PURE;\n    STDMETHOD(GetCaps)              (THIS_ LPDSCAPS pDSCaps) PURE;\n    STDMETHOD(DuplicateSoundBuffer) (THIS_ LPDIRECTSOUNDBUFFER pDSBufferOriginal, LPDIRECTSOUNDBUFFER *ppDSBufferDuplicate) PURE;\n    STDMETHOD(SetCooperativeLevel)  (THIS_ HWND hwnd, DWORD dwLevel) PURE;\n    STDMETHOD(Compact)              (THIS) PURE;\n    STDMETHOD(GetSpeakerConfig)     (THIS_ LPDWORD pdwSpeakerConfig) PURE;\n    STDMETHOD(SetSpeakerConfig)     (THIS_ DWORD dwSpeakerConfig) PURE;\n    STDMETHOD(Initialize)           (THIS_ LPCGUID pcGuidDevice) PURE;\n\n    // IDirectSound8 methods\n    STDMETHOD(VerifyCertification)  (THIS_ LPDWORD pdwCertified) PURE;\n};\n\n#define IDirectSound8_QueryInterface(p,a,b)       IDirectSound_QueryInterface(p,a,b)\n#define IDirectSound8_AddRef(p)                   IDirectSound_AddRef(p)\n#define IDirectSound8_Release(p)                  IDirectSound_Release(p)\n#define IDirectSound8_CreateSoundBuffer(p,a,b,c)  IDirectSound_CreateSoundBuffer(p,a,b,c)\n#define IDirectSound8_GetCaps(p,a)                IDirectSound_GetCaps(p,a)\n#define IDirectSound8_DuplicateSoundBuffer(p,a,b) IDirectSound_DuplicateSoundBuffer(p,a,b)\n#define IDirectSound8_SetCooperativeLevel(p,a,b)  IDirectSound_SetCooperativeLevel(p,a,b)\n#define IDirectSound8_Compact(p)                  IDirectSound_Compact(p)\n#define IDirectSound8_GetSpeakerConfig(p,a)       IDirectSound_GetSpeakerConfig(p,a)\n#define IDirectSound8_SetSpeakerConfig(p,a)       IDirectSound_SetSpeakerConfig(p,a)\n#define IDirectSound8_Initialize(p,a)             IDirectSound_Initialize(p,a)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSound8_VerifyCertification(p,a)           (p)->lpVtbl->VerifyCertification(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSound8_VerifyCertification(p,a)           (p)->VerifyCertification(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n#endif // DIRECTSOUND_VERSION >= 0x0800\n\n//\n// IDirectSoundBuffer\n//\n\nDEFINE_GUID(IID_IDirectSoundBuffer, 0x279AFA85, 0x4981, 0x11CE, 0xA5, 0x21, 0x00, 0x20, 0xAF, 0x0B, 0xE5, 0x60);\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundBuffer\n\nDECLARE_INTERFACE_(IDirectSoundBuffer, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundBuffer methods\n    STDMETHOD(GetCaps)              (THIS_ LPDSBCAPS pDSBufferCaps) PURE;\n    STDMETHOD(GetCurrentPosition)   (THIS_ LPDWORD pdwCurrentPlayCursor, LPDWORD pdwCurrentWriteCursor) PURE;\n    STDMETHOD(GetFormat)            (THIS_ LPWAVEFORMATEX pwfxFormat, DWORD dwSizeAllocated, LPDWORD pdwSizeWritten) PURE;\n    STDMETHOD(GetVolume)            (THIS_ LPLONG plVolume) PURE;\n    STDMETHOD(GetPan)               (THIS_ LPLONG plPan) PURE;\n    STDMETHOD(GetFrequency)         (THIS_ LPDWORD pdwFrequency) PURE;\n    STDMETHOD(GetStatus)            (THIS_ LPDWORD pdwStatus) PURE;\n    STDMETHOD(Initialize)           (THIS_ LPDIRECTSOUND pDirectSound, LPCDSBUFFERDESC pcDSBufferDesc) PURE;\n    STDMETHOD(Lock)                 (THIS_ DWORD dwOffset, DWORD dwBytes, LPVOID *ppvAudioPtr1, LPDWORD pdwAudioBytes1,\n                                           LPVOID *ppvAudioPtr2, LPDWORD pdwAudioBytes2, DWORD dwFlags) PURE;\n    STDMETHOD(Play)                 (THIS_ DWORD dwReserved1, DWORD dwPriority, DWORD dwFlags) PURE;\n    STDMETHOD(SetCurrentPosition)   (THIS_ DWORD dwNewPosition) PURE;\n    STDMETHOD(SetFormat)            (THIS_ LPCWAVEFORMATEX pcfxFormat) PURE;\n    STDMETHOD(SetVolume)            (THIS_ LONG lVolume) PURE;\n    STDMETHOD(SetPan)               (THIS_ LONG lPan) PURE;\n    STDMETHOD(SetFrequency)         (THIS_ DWORD dwFrequency) PURE;\n    STDMETHOD(Stop)                 (THIS) PURE;\n    STDMETHOD(Unlock)               (THIS_ LPVOID pvAudioPtr1, DWORD dwAudioBytes1, LPVOID pvAudioPtr2, DWORD dwAudioBytes2) PURE;\n    STDMETHOD(Restore)              (THIS) PURE;\n};\n\n#define IDirectSoundBuffer_QueryInterface(p,a,b)        IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundBuffer_AddRef(p)                    IUnknown_AddRef(p)\n#define IDirectSoundBuffer_Release(p)                   IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundBuffer_GetCaps(p,a)                 (p)->lpVtbl->GetCaps(p,a)\n#define IDirectSoundBuffer_GetCurrentPosition(p,a,b)    (p)->lpVtbl->GetCurrentPosition(p,a,b)\n#define IDirectSoundBuffer_GetFormat(p,a,b,c)           (p)->lpVtbl->GetFormat(p,a,b,c)\n#define IDirectSoundBuffer_GetVolume(p,a)               (p)->lpVtbl->GetVolume(p,a)\n#define IDirectSoundBuffer_GetPan(p,a)                  (p)->lpVtbl->GetPan(p,a)\n#define IDirectSoundBuffer_GetFrequency(p,a)            (p)->lpVtbl->GetFrequency(p,a)\n#define IDirectSoundBuffer_GetStatus(p,a)               (p)->lpVtbl->GetStatus(p,a)\n#define IDirectSoundBuffer_Initialize(p,a,b)            (p)->lpVtbl->Initialize(p,a,b)\n#define IDirectSoundBuffer_Lock(p,a,b,c,d,e,f,g)        (p)->lpVtbl->Lock(p,a,b,c,d,e,f,g)\n#define IDirectSoundBuffer_Play(p,a,b,c)                (p)->lpVtbl->Play(p,a,b,c)\n#define IDirectSoundBuffer_SetCurrentPosition(p,a)      (p)->lpVtbl->SetCurrentPosition(p,a)\n#define IDirectSoundBuffer_SetFormat(p,a)               (p)->lpVtbl->SetFormat(p,a)\n#define IDirectSoundBuffer_SetVolume(p,a)               (p)->lpVtbl->SetVolume(p,a)\n#define IDirectSoundBuffer_SetPan(p,a)                  (p)->lpVtbl->SetPan(p,a)\n#define IDirectSoundBuffer_SetFrequency(p,a)            (p)->lpVtbl->SetFrequency(p,a)\n#define IDirectSoundBuffer_Stop(p)                      (p)->lpVtbl->Stop(p)\n#define IDirectSoundBuffer_Unlock(p,a,b,c,d)            (p)->lpVtbl->Unlock(p,a,b,c,d)\n#define IDirectSoundBuffer_Restore(p)                   (p)->lpVtbl->Restore(p)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundBuffer_GetCaps(p,a)                 (p)->GetCaps(a)\n#define IDirectSoundBuffer_GetCurrentPosition(p,a,b)    (p)->GetCurrentPosition(a,b)\n#define IDirectSoundBuffer_GetFormat(p,a,b,c)           (p)->GetFormat(a,b,c)\n#define IDirectSoundBuffer_GetVolume(p,a)               (p)->GetVolume(a)\n#define IDirectSoundBuffer_GetPan(p,a)                  (p)->GetPan(a)\n#define IDirectSoundBuffer_GetFrequency(p,a)            (p)->GetFrequency(a)\n#define IDirectSoundBuffer_GetStatus(p,a)               (p)->GetStatus(a)\n#define IDirectSoundBuffer_Initialize(p,a,b)            (p)->Initialize(a,b)\n#define IDirectSoundBuffer_Lock(p,a,b,c,d,e,f,g)        (p)->Lock(a,b,c,d,e,f,g)\n#define IDirectSoundBuffer_Play(p,a,b,c)                (p)->Play(a,b,c)\n#define IDirectSoundBuffer_SetCurrentPosition(p,a)      (p)->SetCurrentPosition(a)\n#define IDirectSoundBuffer_SetFormat(p,a)               (p)->SetFormat(a)\n#define IDirectSoundBuffer_SetVolume(p,a)               (p)->SetVolume(a)\n#define IDirectSoundBuffer_SetPan(p,a)                  (p)->SetPan(a)\n#define IDirectSoundBuffer_SetFrequency(p,a)            (p)->SetFrequency(a)\n#define IDirectSoundBuffer_Stop(p)                      (p)->Stop()\n#define IDirectSoundBuffer_Unlock(p,a,b,c,d)            (p)->Unlock(a,b,c,d)\n#define IDirectSoundBuffer_Restore(p)                   (p)->Restore()\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n#if DIRECTSOUND_VERSION >= 0x0800\n\n//\n// IDirectSoundBuffer8\n//\n\nDEFINE_GUID(IID_IDirectSoundBuffer8, 0x6825a449, 0x7524, 0x4d82, 0x92, 0x0f, 0x50, 0xe3, 0x6a, 0xb3, 0xab, 0x1e);\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundBuffer8\n\nDECLARE_INTERFACE_(IDirectSoundBuffer8, IDirectSoundBuffer)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundBuffer methods\n    STDMETHOD(GetCaps)              (THIS_ LPDSBCAPS pDSBufferCaps) PURE;\n    STDMETHOD(GetCurrentPosition)   (THIS_ LPDWORD pdwCurrentPlayCursor, LPDWORD pdwCurrentWriteCursor) PURE;\n    STDMETHOD(GetFormat)            (THIS_ LPWAVEFORMATEX pwfxFormat, DWORD dwSizeAllocated, LPDWORD pdwSizeWritten) PURE;\n    STDMETHOD(GetVolume)            (THIS_ LPLONG plVolume) PURE;\n    STDMETHOD(GetPan)               (THIS_ LPLONG plPan) PURE;\n    STDMETHOD(GetFrequency)         (THIS_ LPDWORD pdwFrequency) PURE;\n    STDMETHOD(GetStatus)            (THIS_ LPDWORD pdwStatus) PURE;\n    STDMETHOD(Initialize)           (THIS_ LPDIRECTSOUND pDirectSound, LPCDSBUFFERDESC pcDSBufferDesc) PURE;\n    STDMETHOD(Lock)                 (THIS_ DWORD dwOffset, DWORD dwBytes, LPVOID *ppvAudioPtr1, LPDWORD pdwAudioBytes1,\n                                           LPVOID *ppvAudioPtr2, LPDWORD pdwAudioBytes2, DWORD dwFlags) PURE;\n    STDMETHOD(Play)                 (THIS_ DWORD dwReserved1, DWORD dwPriority, DWORD dwFlags) PURE;\n    STDMETHOD(SetCurrentPosition)   (THIS_ DWORD dwNewPosition) PURE;\n    STDMETHOD(SetFormat)            (THIS_ LPCWAVEFORMATEX pcfxFormat) PURE;\n    STDMETHOD(SetVolume)            (THIS_ LONG lVolume) PURE;\n    STDMETHOD(SetPan)               (THIS_ LONG lPan) PURE;\n    STDMETHOD(SetFrequency)         (THIS_ DWORD dwFrequency) PURE;\n    STDMETHOD(Stop)                 (THIS) PURE;\n    STDMETHOD(Unlock)               (THIS_ LPVOID pvAudioPtr1, DWORD dwAudioBytes1, LPVOID pvAudioPtr2, DWORD dwAudioBytes2) PURE;\n    STDMETHOD(Restore)              (THIS) PURE;\n\n    // IDirectSoundBuffer8 methods\n    STDMETHOD(SetFX)                (THIS_ DWORD dwEffectsCount, LPDSEFFECTDESC pDSFXDesc, LPDWORD pdwResultCodes) PURE;\n    STDMETHOD(AcquireResources)     (THIS_ DWORD dwFlags, DWORD dwEffectsCount, LPDWORD pdwResultCodes) PURE;\n    STDMETHOD(GetObjectInPath)      (THIS_ REFGUID rguidObject, DWORD dwIndex, REFGUID rguidInterface, LPVOID *ppObject) PURE;\n};\n\n// Special GUID meaning \"select all objects\" for use in GetObjectInPath()\nDEFINE_GUID(GUID_All_Objects, 0xaa114de5, 0xc262, 0x4169, 0xa1, 0xc8, 0x23, 0xd6, 0x98, 0xcc, 0x73, 0xb5);\n\n#define IDirectSoundBuffer8_QueryInterface(p,a,b)           IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundBuffer8_AddRef(p)                       IUnknown_AddRef(p)\n#define IDirectSoundBuffer8_Release(p)                      IUnknown_Release(p)\n\n#define IDirectSoundBuffer8_GetCaps(p,a)                    IDirectSoundBuffer_GetCaps(p,a)\n#define IDirectSoundBuffer8_GetCurrentPosition(p,a,b)       IDirectSoundBuffer_GetCurrentPosition(p,a,b)\n#define IDirectSoundBuffer8_GetFormat(p,a,b,c)              IDirectSoundBuffer_GetFormat(p,a,b,c)\n#define IDirectSoundBuffer8_GetVolume(p,a)                  IDirectSoundBuffer_GetVolume(p,a)\n#define IDirectSoundBuffer8_GetPan(p,a)                     IDirectSoundBuffer_GetPan(p,a)\n#define IDirectSoundBuffer8_GetFrequency(p,a)               IDirectSoundBuffer_GetFrequency(p,a)\n#define IDirectSoundBuffer8_GetStatus(p,a)                  IDirectSoundBuffer_GetStatus(p,a)\n#define IDirectSoundBuffer8_Initialize(p,a,b)               IDirectSoundBuffer_Initialize(p,a,b)\n#define IDirectSoundBuffer8_Lock(p,a,b,c,d,e,f,g)           IDirectSoundBuffer_Lock(p,a,b,c,d,e,f,g)\n#define IDirectSoundBuffer8_Play(p,a,b,c)                   IDirectSoundBuffer_Play(p,a,b,c)\n#define IDirectSoundBuffer8_SetCurrentPosition(p,a)         IDirectSoundBuffer_SetCurrentPosition(p,a)\n#define IDirectSoundBuffer8_SetFormat(p,a)                  IDirectSoundBuffer_SetFormat(p,a)\n#define IDirectSoundBuffer8_SetVolume(p,a)                  IDirectSoundBuffer_SetVolume(p,a)\n#define IDirectSoundBuffer8_SetPan(p,a)                     IDirectSoundBuffer_SetPan(p,a)\n#define IDirectSoundBuffer8_SetFrequency(p,a)               IDirectSoundBuffer_SetFrequency(p,a)\n#define IDirectSoundBuffer8_Stop(p)                         IDirectSoundBuffer_Stop(p)\n#define IDirectSoundBuffer8_Unlock(p,a,b,c,d)               IDirectSoundBuffer_Unlock(p,a,b,c,d)\n#define IDirectSoundBuffer8_Restore(p)                      IDirectSoundBuffer_Restore(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundBuffer8_SetFX(p,a,b,c)                  (p)->lpVtbl->SetFX(p,a,b,c)\n#define IDirectSoundBuffer8_AcquireResources(p,a,b,c)       (p)->lpVtbl->AcquireResources(p,a,b,c)\n#define IDirectSoundBuffer8_GetObjectInPath(p,a,b,c,d)      (p)->lpVtbl->GetObjectInPath(p,a,b,c,d)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundBuffer8_SetFX(p,a,b,c)                  (p)->SetFX(a,b,c)\n#define IDirectSoundBuffer8_AcquireResources(p,a,b,c)       (p)->AcquireResources(a,b,c)\n#define IDirectSoundBuffer8_GetObjectInPath(p,a,b,c,d)      (p)->GetObjectInPath(a,b,c,d)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n#endif // DIRECTSOUND_VERSION >= 0x0800\n\n//\n// IDirectSound3DListener\n//\n\nDEFINE_GUID(IID_IDirectSound3DListener, 0x279AFA84, 0x4981, 0x11CE, 0xA5, 0x21, 0x00, 0x20, 0xAF, 0x0B, 0xE5, 0x60);\n\n#undef INTERFACE\n#define INTERFACE IDirectSound3DListener\n\nDECLARE_INTERFACE_(IDirectSound3DListener, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)           (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)            (THIS) PURE;\n    STDMETHOD_(ULONG,Release)           (THIS) PURE;\n\n    // IDirectSound3DListener methods\n    STDMETHOD(GetAllParameters)         (THIS_ LPDS3DLISTENER pListener) PURE;\n    STDMETHOD(GetDistanceFactor)        (THIS_ D3DVALUE* pflDistanceFactor) PURE;\n    STDMETHOD(GetDopplerFactor)         (THIS_ D3DVALUE* pflDopplerFactor) PURE;\n    STDMETHOD(GetOrientation)           (THIS_ D3DVECTOR* pvOrientFront, D3DVECTOR* pvOrientTop) PURE;\n    STDMETHOD(GetPosition)              (THIS_ D3DVECTOR* pvPosition) PURE;\n    STDMETHOD(GetRolloffFactor)         (THIS_ D3DVALUE* pflRolloffFactor) PURE;\n    STDMETHOD(GetVelocity)              (THIS_ D3DVECTOR* pvVelocity) PURE;\n    STDMETHOD(SetAllParameters)         (THIS_ LPCDS3DLISTENER pcListener, DWORD dwApply) PURE;\n    STDMETHOD(SetDistanceFactor)        (THIS_ D3DVALUE flDistanceFactor, DWORD dwApply) PURE;\n    STDMETHOD(SetDopplerFactor)         (THIS_ D3DVALUE flDopplerFactor, DWORD dwApply) PURE;\n    STDMETHOD(SetOrientation)           (THIS_ D3DVALUE xFront, D3DVALUE yFront, D3DVALUE zFront,\n                                               D3DVALUE xTop, D3DVALUE yTop, D3DVALUE zTop, DWORD dwApply) PURE;\n    STDMETHOD(SetPosition)              (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE;\n    STDMETHOD(SetRolloffFactor)         (THIS_ D3DVALUE flRolloffFactor, DWORD dwApply) PURE;\n    STDMETHOD(SetVelocity)              (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE;\n    STDMETHOD(CommitDeferredSettings)   (THIS) PURE;\n};\n\n#define IDirectSound3DListener_QueryInterface(p,a,b)            IUnknown_QueryInterface(p,a,b)\n#define IDirectSound3DListener_AddRef(p)                        IUnknown_AddRef(p)\n#define IDirectSound3DListener_Release(p)                       IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSound3DListener_GetAllParameters(p,a)            (p)->lpVtbl->GetAllParameters(p,a)\n#define IDirectSound3DListener_GetDistanceFactor(p,a)           (p)->lpVtbl->GetDistanceFactor(p,a)\n#define IDirectSound3DListener_GetDopplerFactor(p,a)            (p)->lpVtbl->GetDopplerFactor(p,a)\n#define IDirectSound3DListener_GetOrientation(p,a,b)            (p)->lpVtbl->GetOrientation(p,a,b)\n#define IDirectSound3DListener_GetPosition(p,a)                 (p)->lpVtbl->GetPosition(p,a)\n#define IDirectSound3DListener_GetRolloffFactor(p,a)            (p)->lpVtbl->GetRolloffFactor(p,a)\n#define IDirectSound3DListener_GetVelocity(p,a)                 (p)->lpVtbl->GetVelocity(p,a)\n#define IDirectSound3DListener_SetAllParameters(p,a,b)          (p)->lpVtbl->SetAllParameters(p,a,b)\n#define IDirectSound3DListener_SetDistanceFactor(p,a,b)         (p)->lpVtbl->SetDistanceFactor(p,a,b)\n#define IDirectSound3DListener_SetDopplerFactor(p,a,b)          (p)->lpVtbl->SetDopplerFactor(p,a,b)\n#define IDirectSound3DListener_SetOrientation(p,a,b,c,d,e,f,g)  (p)->lpVtbl->SetOrientation(p,a,b,c,d,e,f,g)\n#define IDirectSound3DListener_SetPosition(p,a,b,c,d)           (p)->lpVtbl->SetPosition(p,a,b,c,d)\n#define IDirectSound3DListener_SetRolloffFactor(p,a,b)          (p)->lpVtbl->SetRolloffFactor(p,a,b)\n#define IDirectSound3DListener_SetVelocity(p,a,b,c,d)           (p)->lpVtbl->SetVelocity(p,a,b,c,d)\n#define IDirectSound3DListener_CommitDeferredSettings(p)        (p)->lpVtbl->CommitDeferredSettings(p)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSound3DListener_GetAllParameters(p,a)            (p)->GetAllParameters(a)\n#define IDirectSound3DListener_GetDistanceFactor(p,a)           (p)->GetDistanceFactor(a)\n#define IDirectSound3DListener_GetDopplerFactor(p,a)            (p)->GetDopplerFactor(a)\n#define IDirectSound3DListener_GetOrientation(p,a,b)            (p)->GetOrientation(a,b)\n#define IDirectSound3DListener_GetPosition(p,a)                 (p)->GetPosition(a)\n#define IDirectSound3DListener_GetRolloffFactor(p,a)            (p)->GetRolloffFactor(a)\n#define IDirectSound3DListener_GetVelocity(p,a)                 (p)->GetVelocity(a)\n#define IDirectSound3DListener_SetAllParameters(p,a,b)          (p)->SetAllParameters(a,b)\n#define IDirectSound3DListener_SetDistanceFactor(p,a,b)         (p)->SetDistanceFactor(a,b)\n#define IDirectSound3DListener_SetDopplerFactor(p,a,b)          (p)->SetDopplerFactor(a,b)\n#define IDirectSound3DListener_SetOrientation(p,a,b,c,d,e,f,g)  (p)->SetOrientation(a,b,c,d,e,f,g)\n#define IDirectSound3DListener_SetPosition(p,a,b,c,d)           (p)->SetPosition(a,b,c,d)\n#define IDirectSound3DListener_SetRolloffFactor(p,a,b)          (p)->SetRolloffFactor(a,b)\n#define IDirectSound3DListener_SetVelocity(p,a,b,c,d)           (p)->SetVelocity(a,b,c,d)\n#define IDirectSound3DListener_CommitDeferredSettings(p)        (p)->CommitDeferredSettings()\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n//\n// IDirectSound3DBuffer\n//\n\nDEFINE_GUID(IID_IDirectSound3DBuffer, 0x279AFA86, 0x4981, 0x11CE, 0xA5, 0x21, 0x00, 0x20, 0xAF, 0x0B, 0xE5, 0x60);\n\n#undef INTERFACE\n#define INTERFACE IDirectSound3DBuffer\n\nDECLARE_INTERFACE_(IDirectSound3DBuffer, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSound3DBuffer methods\n    STDMETHOD(GetAllParameters)     (THIS_ LPDS3DBUFFER pDs3dBuffer) PURE;\n    STDMETHOD(GetConeAngles)        (THIS_ LPDWORD pdwInsideConeAngle, LPDWORD pdwOutsideConeAngle) PURE;\n    STDMETHOD(GetConeOrientation)   (THIS_ D3DVECTOR* pvOrientation) PURE;\n    STDMETHOD(GetConeOutsideVolume) (THIS_ LPLONG plConeOutsideVolume) PURE;\n    STDMETHOD(GetMaxDistance)       (THIS_ D3DVALUE* pflMaxDistance) PURE;\n    STDMETHOD(GetMinDistance)       (THIS_ D3DVALUE* pflMinDistance) PURE;\n    STDMETHOD(GetMode)              (THIS_ LPDWORD pdwMode) PURE;\n    STDMETHOD(GetPosition)          (THIS_ D3DVECTOR* pvPosition) PURE;\n    STDMETHOD(GetVelocity)          (THIS_ D3DVECTOR* pvVelocity) PURE;\n    STDMETHOD(SetAllParameters)     (THIS_ LPCDS3DBUFFER pcDs3dBuffer, DWORD dwApply) PURE;\n    STDMETHOD(SetConeAngles)        (THIS_ DWORD dwInsideConeAngle, DWORD dwOutsideConeAngle, DWORD dwApply) PURE;\n    STDMETHOD(SetConeOrientation)   (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE;\n    STDMETHOD(SetConeOutsideVolume) (THIS_ LONG lConeOutsideVolume, DWORD dwApply) PURE;\n    STDMETHOD(SetMaxDistance)       (THIS_ D3DVALUE flMaxDistance, DWORD dwApply) PURE;\n    STDMETHOD(SetMinDistance)       (THIS_ D3DVALUE flMinDistance, DWORD dwApply) PURE;\n    STDMETHOD(SetMode)              (THIS_ DWORD dwMode, DWORD dwApply) PURE;\n    STDMETHOD(SetPosition)          (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE;\n    STDMETHOD(SetVelocity)          (THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD dwApply) PURE;\n};\n\n#define IDirectSound3DBuffer_QueryInterface(p,a,b)          IUnknown_QueryInterface(p,a,b)\n#define IDirectSound3DBuffer_AddRef(p)                      IUnknown_AddRef(p)\n#define IDirectSound3DBuffer_Release(p)                     IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSound3DBuffer_GetAllParameters(p,a)          (p)->lpVtbl->GetAllParameters(p,a)\n#define IDirectSound3DBuffer_GetConeAngles(p,a,b)           (p)->lpVtbl->GetConeAngles(p,a,b)\n#define IDirectSound3DBuffer_GetConeOrientation(p,a)        (p)->lpVtbl->GetConeOrientation(p,a)\n#define IDirectSound3DBuffer_GetConeOutsideVolume(p,a)      (p)->lpVtbl->GetConeOutsideVolume(p,a)\n#define IDirectSound3DBuffer_GetPosition(p,a)               (p)->lpVtbl->GetPosition(p,a)\n#define IDirectSound3DBuffer_GetMinDistance(p,a)            (p)->lpVtbl->GetMinDistance(p,a)\n#define IDirectSound3DBuffer_GetMaxDistance(p,a)            (p)->lpVtbl->GetMaxDistance(p,a)\n#define IDirectSound3DBuffer_GetMode(p,a)                   (p)->lpVtbl->GetMode(p,a)\n#define IDirectSound3DBuffer_GetVelocity(p,a)               (p)->lpVtbl->GetVelocity(p,a)\n#define IDirectSound3DBuffer_SetAllParameters(p,a,b)        (p)->lpVtbl->SetAllParameters(p,a,b)\n#define IDirectSound3DBuffer_SetConeAngles(p,a,b,c)         (p)->lpVtbl->SetConeAngles(p,a,b,c)\n#define IDirectSound3DBuffer_SetConeOrientation(p,a,b,c,d)  (p)->lpVtbl->SetConeOrientation(p,a,b,c,d)\n#define IDirectSound3DBuffer_SetConeOutsideVolume(p,a,b)    (p)->lpVtbl->SetConeOutsideVolume(p,a,b)\n#define IDirectSound3DBuffer_SetPosition(p,a,b,c,d)         (p)->lpVtbl->SetPosition(p,a,b,c,d)\n#define IDirectSound3DBuffer_SetMinDistance(p,a,b)          (p)->lpVtbl->SetMinDistance(p,a,b)\n#define IDirectSound3DBuffer_SetMaxDistance(p,a,b)          (p)->lpVtbl->SetMaxDistance(p,a,b)\n#define IDirectSound3DBuffer_SetMode(p,a,b)                 (p)->lpVtbl->SetMode(p,a,b)\n#define IDirectSound3DBuffer_SetVelocity(p,a,b,c,d)         (p)->lpVtbl->SetVelocity(p,a,b,c,d)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSound3DBuffer_GetAllParameters(p,a)          (p)->GetAllParameters(a)\n#define IDirectSound3DBuffer_GetConeAngles(p,a,b)           (p)->GetConeAngles(a,b)\n#define IDirectSound3DBuffer_GetConeOrientation(p,a)        (p)->GetConeOrientation(a)\n#define IDirectSound3DBuffer_GetConeOutsideVolume(p,a)      (p)->GetConeOutsideVolume(a)\n#define IDirectSound3DBuffer_GetPosition(p,a)               (p)->GetPosition(a)\n#define IDirectSound3DBuffer_GetMinDistance(p,a)            (p)->GetMinDistance(a)\n#define IDirectSound3DBuffer_GetMaxDistance(p,a)            (p)->GetMaxDistance(a)\n#define IDirectSound3DBuffer_GetMode(p,a)                   (p)->GetMode(a)\n#define IDirectSound3DBuffer_GetVelocity(p,a)               (p)->GetVelocity(a)\n#define IDirectSound3DBuffer_SetAllParameters(p,a,b)        (p)->SetAllParameters(a,b)\n#define IDirectSound3DBuffer_SetConeAngles(p,a,b,c)         (p)->SetConeAngles(a,b,c)\n#define IDirectSound3DBuffer_SetConeOrientation(p,a,b,c,d)  (p)->SetConeOrientation(a,b,c,d)\n#define IDirectSound3DBuffer_SetConeOutsideVolume(p,a,b)    (p)->SetConeOutsideVolume(a,b)\n#define IDirectSound3DBuffer_SetPosition(p,a,b,c,d)         (p)->SetPosition(a,b,c,d)\n#define IDirectSound3DBuffer_SetMinDistance(p,a,b)          (p)->SetMinDistance(a,b)\n#define IDirectSound3DBuffer_SetMaxDistance(p,a,b)          (p)->SetMaxDistance(a,b)\n#define IDirectSound3DBuffer_SetMode(p,a,b)                 (p)->SetMode(a,b)\n#define IDirectSound3DBuffer_SetVelocity(p,a,b,c,d)         (p)->SetVelocity(a,b,c,d)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n//\n// IDirectSoundCapture\n//\n\nDEFINE_GUID(IID_IDirectSoundCapture, 0xb0210781, 0x89cd, 0x11d0, 0xaf, 0x8, 0x0, 0xa0, 0xc9, 0x25, 0xcd, 0x16);\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundCapture\n\nDECLARE_INTERFACE_(IDirectSoundCapture, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundCapture methods\n    STDMETHOD(CreateCaptureBuffer)  (THIS_ LPCDSCBUFFERDESC pcDSCBufferDesc, LPDIRECTSOUNDCAPTUREBUFFER *ppDSCBuffer, LPUNKNOWN pUnkOuter) PURE;\n    STDMETHOD(GetCaps)              (THIS_ LPDSCCAPS pDSCCaps) PURE;\n    STDMETHOD(Initialize)           (THIS_ LPCGUID pcGuidDevice) PURE;\n};\n\n#define IDirectSoundCapture_QueryInterface(p,a,b)           IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundCapture_AddRef(p)                       IUnknown_AddRef(p)\n#define IDirectSoundCapture_Release(p)                      IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundCapture_CreateCaptureBuffer(p,a,b,c)    (p)->lpVtbl->CreateCaptureBuffer(p,a,b,c)\n#define IDirectSoundCapture_GetCaps(p,a)                    (p)->lpVtbl->GetCaps(p,a)\n#define IDirectSoundCapture_Initialize(p,a)                 (p)->lpVtbl->Initialize(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundCapture_CreateCaptureBuffer(p,a,b,c)    (p)->CreateCaptureBuffer(a,b,c)\n#define IDirectSoundCapture_GetCaps(p,a)                    (p)->GetCaps(a)\n#define IDirectSoundCapture_Initialize(p,a)                 (p)->Initialize(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n//\n// IDirectSoundCaptureBuffer\n//\n\nDEFINE_GUID(IID_IDirectSoundCaptureBuffer, 0xb0210782, 0x89cd, 0x11d0, 0xaf, 0x8, 0x0, 0xa0, 0xc9, 0x25, 0xcd, 0x16);\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundCaptureBuffer\n\nDECLARE_INTERFACE_(IDirectSoundCaptureBuffer, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundCaptureBuffer methods\n    STDMETHOD(GetCaps)              (THIS_ LPDSCBCAPS pDSCBCaps) PURE;\n    STDMETHOD(GetCurrentPosition)   (THIS_ LPDWORD pdwCapturePosition, LPDWORD pdwReadPosition) PURE;\n    STDMETHOD(GetFormat)            (THIS_ LPWAVEFORMATEX pwfxFormat, DWORD dwSizeAllocated, LPDWORD pdwSizeWritten) PURE;\n    STDMETHOD(GetStatus)            (THIS_ LPDWORD pdwStatus) PURE;\n    STDMETHOD(Initialize)           (THIS_ LPDIRECTSOUNDCAPTURE pDirectSoundCapture, LPCDSCBUFFERDESC pcDSCBufferDesc) PURE;\n    STDMETHOD(Lock)                 (THIS_ DWORD dwOffset, DWORD dwBytes, LPVOID *ppvAudioPtr1, LPDWORD pdwAudioBytes1,\n                                           LPVOID *ppvAudioPtr2, LPDWORD pdwAudioBytes2, DWORD dwFlags) PURE;\n    STDMETHOD(Start)                (THIS_ DWORD dwFlags) PURE;\n    STDMETHOD(Stop)                 (THIS) PURE;\n    STDMETHOD(Unlock)               (THIS_ LPVOID pvAudioPtr1, DWORD dwAudioBytes1, LPVOID pvAudioPtr2, DWORD dwAudioBytes2) PURE;\n};\n\n#define IDirectSoundCaptureBuffer_QueryInterface(p,a,b)         IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundCaptureBuffer_AddRef(p)                     IUnknown_AddRef(p)\n#define IDirectSoundCaptureBuffer_Release(p)                    IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundCaptureBuffer_GetCaps(p,a)                  (p)->lpVtbl->GetCaps(p,a)\n#define IDirectSoundCaptureBuffer_GetCurrentPosition(p,a,b)     (p)->lpVtbl->GetCurrentPosition(p,a,b)\n#define IDirectSoundCaptureBuffer_GetFormat(p,a,b,c)            (p)->lpVtbl->GetFormat(p,a,b,c)\n#define IDirectSoundCaptureBuffer_GetStatus(p,a)                (p)->lpVtbl->GetStatus(p,a)\n#define IDirectSoundCaptureBuffer_Initialize(p,a,b)             (p)->lpVtbl->Initialize(p,a,b)\n#define IDirectSoundCaptureBuffer_Lock(p,a,b,c,d,e,f,g)         (p)->lpVtbl->Lock(p,a,b,c,d,e,f,g)\n#define IDirectSoundCaptureBuffer_Start(p,a)                    (p)->lpVtbl->Start(p,a)\n#define IDirectSoundCaptureBuffer_Stop(p)                       (p)->lpVtbl->Stop(p)\n#define IDirectSoundCaptureBuffer_Unlock(p,a,b,c,d)             (p)->lpVtbl->Unlock(p,a,b,c,d)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundCaptureBuffer_GetCaps(p,a)                  (p)->GetCaps(a)\n#define IDirectSoundCaptureBuffer_GetCurrentPosition(p,a,b)     (p)->GetCurrentPosition(a,b)\n#define IDirectSoundCaptureBuffer_GetFormat(p,a,b,c)            (p)->GetFormat(a,b,c)\n#define IDirectSoundCaptureBuffer_GetStatus(p,a)                (p)->GetStatus(a)\n#define IDirectSoundCaptureBuffer_Initialize(p,a,b)             (p)->Initialize(a,b)\n#define IDirectSoundCaptureBuffer_Lock(p,a,b,c,d,e,f,g)         (p)->Lock(a,b,c,d,e,f,g)\n#define IDirectSoundCaptureBuffer_Start(p,a)                    (p)->Start(a)\n#define IDirectSoundCaptureBuffer_Stop(p)                       (p)->Stop()\n#define IDirectSoundCaptureBuffer_Unlock(p,a,b,c,d)             (p)->Unlock(a,b,c,d)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n\n#if DIRECTSOUND_VERSION >= 0x0800\n\n//\n// IDirectSoundCaptureBuffer8\n//\n\nDEFINE_GUID(IID_IDirectSoundCaptureBuffer8, 0x990df4, 0xdbb, 0x4872, 0x83, 0x3e, 0x6d, 0x30, 0x3e, 0x80, 0xae, 0xb6);\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundCaptureBuffer8\n\nDECLARE_INTERFACE_(IDirectSoundCaptureBuffer8, IDirectSoundCaptureBuffer)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundCaptureBuffer methods\n    STDMETHOD(GetCaps)              (THIS_ LPDSCBCAPS pDSCBCaps) PURE;\n    STDMETHOD(GetCurrentPosition)   (THIS_ LPDWORD pdwCapturePosition, LPDWORD pdwReadPosition) PURE;\n    STDMETHOD(GetFormat)            (THIS_ LPWAVEFORMATEX pwfxFormat, DWORD dwSizeAllocated, LPDWORD pdwSizeWritten) PURE;\n    STDMETHOD(GetStatus)            (THIS_ LPDWORD pdwStatus) PURE;\n    STDMETHOD(Initialize)           (THIS_ LPDIRECTSOUNDCAPTURE pDirectSoundCapture, LPCDSCBUFFERDESC pcDSCBufferDesc) PURE;\n    STDMETHOD(Lock)                 (THIS_ DWORD dwOffset, DWORD dwBytes, LPVOID *ppvAudioPtr1, LPDWORD pdwAudioBytes1,\n                                           LPVOID *ppvAudioPtr2, LPDWORD pdwAudioBytes2, DWORD dwFlags) PURE;\n    STDMETHOD(Start)                (THIS_ DWORD dwFlags) PURE;\n    STDMETHOD(Stop)                 (THIS) PURE;\n    STDMETHOD(Unlock)               (THIS_ LPVOID pvAudioPtr1, DWORD dwAudioBytes1, LPVOID pvAudioPtr2, DWORD dwAudioBytes2) PURE;\n\n    // IDirectSoundCaptureBuffer8 methods\n    STDMETHOD(GetObjectInPath)      (THIS_ REFGUID rguidObject, DWORD dwIndex, REFGUID rguidInterface, LPVOID *ppObject) PURE;\n    STDMETHOD(GetFXStatus)          (DWORD dwFXCount, LPDWORD pdwFXStatus) PURE;\n};\n\n#define IDirectSoundCaptureBuffer8_QueryInterface(p,a,b)            IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundCaptureBuffer8_AddRef(p)                        IUnknown_AddRef(p)\n#define IDirectSoundCaptureBuffer8_Release(p)                       IUnknown_Release(p)\n\n#define IDirectSoundCaptureBuffer8_GetCaps(p,a)                     IDirectSoundCaptureBuffer_GetCaps(p,a)\n#define IDirectSoundCaptureBuffer8_GetCurrentPosition(p,a,b)        IDirectSoundCaptureBuffer_GetCurrentPosition(p,a,b)\n#define IDirectSoundCaptureBuffer8_GetFormat(p,a,b,c)               IDirectSoundCaptureBuffer_GetFormat(p,a,b,c)\n#define IDirectSoundCaptureBuffer8_GetStatus(p,a)                   IDirectSoundCaptureBuffer_GetStatus(p,a)\n#define IDirectSoundCaptureBuffer8_Initialize(p,a,b)                IDirectSoundCaptureBuffer_Initialize(p,a,b)\n#define IDirectSoundCaptureBuffer8_Lock(p,a,b,c,d,e,f,g)            IDirectSoundCaptureBuffer_Lock(p,a,b,c,d,e,f,g)\n#define IDirectSoundCaptureBuffer8_Start(p,a)                       IDirectSoundCaptureBuffer_Start(p,a)\n#define IDirectSoundCaptureBuffer8_Stop(p)                          IDirectSoundCaptureBuffer_Stop(p))\n#define IDirectSoundCaptureBuffer8_Unlock(p,a,b,c,d)                IDirectSoundCaptureBuffer_Unlock(p,a,b,c,d)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundCaptureBuffer8_GetObjectInPath(p,a,b,c,d)       (p)->lpVtbl->GetObjectInPath(p,a,b,c,d)\n#define IDirectSoundCaptureBuffer8_GetFXStatus(p,a,b)               (p)->lpVtbl->GetFXStatus(p,a,b)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundCaptureBuffer8_GetObjectInPath(p,a,b,c,d)       (p)->GetObjectInPath(a,b,c,d)\n#define IDirectSoundCaptureBuffer8_GetFXStatus(p,a,b)               (p)->GetFXStatus(a,b)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n#endif // DIRECTSOUND_VERSION >= 0x0800\n\n//\n// IDirectSoundNotify\n//\n\nDEFINE_GUID(IID_IDirectSoundNotify, 0xb0210783, 0x89cd, 0x11d0, 0xaf, 0x8, 0x0, 0xa0, 0xc9, 0x25, 0xcd, 0x16);\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundNotify\n\nDECLARE_INTERFACE_(IDirectSoundNotify, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)           (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)            (THIS) PURE;\n    STDMETHOD_(ULONG,Release)           (THIS) PURE;\n\n    // IDirectSoundNotify methods\n    STDMETHOD(SetNotificationPositions) (THIS_ DWORD dwPositionNotifies, LPCDSBPOSITIONNOTIFY pcPositionNotifies) PURE;\n};\n\n#define IDirectSoundNotify_QueryInterface(p,a,b)            IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundNotify_AddRef(p)                        IUnknown_AddRef(p)\n#define IDirectSoundNotify_Release(p)                       IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundNotify_SetNotificationPositions(p,a,b)  (p)->lpVtbl->SetNotificationPositions(p,a,b)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundNotify_SetNotificationPositions(p,a,b)  (p)->SetNotificationPositions(a,b)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n//\n// IKsPropertySet\n//\n\n#ifndef _IKsPropertySet_\n#define _IKsPropertySet_\n\n#ifdef __cplusplus\n// 'struct' not 'class' per the way DECLARE_INTERFACE_ is defined\nstruct IKsPropertySet;\n#endif // __cplusplus\n\ntypedef struct IKsPropertySet *LPKSPROPERTYSET;\n\n#define KSPROPERTY_SUPPORT_GET  0x00000001\n#define KSPROPERTY_SUPPORT_SET  0x00000002\n\nDEFINE_GUID(IID_IKsPropertySet, 0x31efac30, 0x515c, 0x11d0, 0xa9, 0xaa, 0x00, 0xaa, 0x00, 0x61, 0xbe, 0x93);\n\n#undef INTERFACE\n#define INTERFACE IKsPropertySet\n\nDECLARE_INTERFACE_(IKsPropertySet, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)   (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)    (THIS) PURE;\n    STDMETHOD_(ULONG,Release)   (THIS) PURE;\n\n    // IKsPropertySet methods\n    STDMETHOD(Get)              (THIS_ REFGUID rguidPropSet, ULONG ulId, LPVOID pInstanceData, ULONG ulInstanceLength,\n                                       LPVOID pPropertyData, ULONG ulDataLength, PULONG pulBytesReturned) PURE;\n    STDMETHOD(Set)              (THIS_ REFGUID rguidPropSet, ULONG ulId, LPVOID pInstanceData, ULONG ulInstanceLength,\n                                       LPVOID pPropertyData, ULONG ulDataLength) PURE;\n    STDMETHOD(QuerySupport)     (THIS_ REFGUID rguidPropSet, ULONG ulId, PULONG pulTypeSupport) PURE;\n};\n\n#define IKsPropertySet_QueryInterface(p,a,b)       IUnknown_QueryInterface(p,a,b)\n#define IKsPropertySet_AddRef(p)                   IUnknown_AddRef(p)\n#define IKsPropertySet_Release(p)                  IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IKsPropertySet_Get(p,a,b,c,d,e,f,g)        (p)->lpVtbl->Get(p,a,b,c,d,e,f,g)\n#define IKsPropertySet_Set(p,a,b,c,d,e,f)          (p)->lpVtbl->Set(p,a,b,c,d,e,f)\n#define IKsPropertySet_QuerySupport(p,a,b,c)       (p)->lpVtbl->QuerySupport(p,a,b,c)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IKsPropertySet_Get(p,a,b,c,d,e,f,g)        (p)->Get(a,b,c,d,e,f,g)\n#define IKsPropertySet_Set(p,a,b,c,d,e,f)          (p)->Set(a,b,c,d,e,f)\n#define IKsPropertySet_QuerySupport(p,a,b,c)       (p)->QuerySupport(a,b,c)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n#endif // _IKsPropertySet_\n\n#if DIRECTSOUND_VERSION >= 0x0800\n\n//\n// IDirectSoundFXGargle\n//\n\nDEFINE_GUID(IID_IDirectSoundFXGargle, 0xd616f352, 0xd622, 0x11ce, 0xaa, 0xc5, 0x00, 0x20, 0xaf, 0x0b, 0x99, 0xa3);\n\ntypedef struct _DSFXGargle\n{\n    DWORD       dwRateHz;               // Rate of modulation in hz\n    DWORD       dwWaveShape;            // DSFXGARGLE_WAVE_xxx\n} DSFXGargle, *LPDSFXGargle;\n\n#define DSFXGARGLE_WAVE_TRIANGLE        0\n#define DSFXGARGLE_WAVE_SQUARE          1\n\ntypedef const DSFXGargle *LPCDSFXGargle;\n\n#define DSFXGARGLE_RATEHZ_MIN           1\n#define DSFXGARGLE_RATEHZ_MAX           1000\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundFXGargle\n\nDECLARE_INTERFACE_(IDirectSoundFXGargle, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundFXGargle methods\n    STDMETHOD(SetAllParameters)     (THIS_ LPCDSFXGargle pcDsFxGargle) PURE;\n    STDMETHOD(GetAllParameters)     (THIS_ LPDSFXGargle pDsFxGargle) PURE;\n};\n\n#define IDirectSoundFXGargle_QueryInterface(p,a,b)          IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundFXGargle_AddRef(p)                      IUnknown_AddRef(p)\n#define IDirectSoundFXGargle_Release(p)                     IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXGargle_SetAllParameters(p,a)          (p)->lpVtbl->SetAllParameters(p,a)\n#define IDirectSoundFXGargle_GetAllParameters(p,a)          (p)->lpVtbl->GetAllParameters(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXGargle_SetAllParameters(p,a)          (p)->SetAllParameters(a)\n#define IDirectSoundFXGargle_GetAllParameters(p,a)          (p)->GetAllParameters(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n//\n// IDirectSoundFXChorus\n//\n\nDEFINE_GUID(IID_IDirectSoundFXChorus, 0x880842e3, 0x145f, 0x43e6, 0xa9, 0x34, 0xa7, 0x18, 0x06, 0xe5, 0x05, 0x47);\n\ntypedef struct _DSFXChorus\n{\n    FLOAT       fWetDryMix;\n    FLOAT       fDepth;\n    FLOAT       fFeedback;\n    FLOAT       fFrequency;\n    LONG        lWaveform;          // LFO shape; DSFXCHORUS_WAVE_xxx\n    FLOAT       fDelay;\n    LONG        lPhase;\n} DSFXChorus, *LPDSFXChorus;\n\ntypedef const DSFXChorus *LPCDSFXChorus;\n\n#define DSFXCHORUS_WAVE_TRIANGLE        0\n#define DSFXCHORUS_WAVE_SIN             1\n\n#define DSFXCHORUS_WETDRYMIX_MIN        0.0f\n#define DSFXCHORUS_WETDRYMIX_MAX        100.0f\n#define DSFXCHORUS_DEPTH_MIN            0.0f\n#define DSFXCHORUS_DEPTH_MAX            100.0f\n#define DSFXCHORUS_FEEDBACK_MIN         -99.0f\n#define DSFXCHORUS_FEEDBACK_MAX         99.0f\n#define DSFXCHORUS_FREQUENCY_MIN        0.0f\n#define DSFXCHORUS_FREQUENCY_MAX        10.0f\n#define DSFXCHORUS_DELAY_MIN            0.0f\n#define DSFXCHORUS_DELAY_MAX            20.0f\n#define DSFXCHORUS_PHASE_MIN            0\n#define DSFXCHORUS_PHASE_MAX            4\n\n#define DSFXCHORUS_PHASE_NEG_180        0\n#define DSFXCHORUS_PHASE_NEG_90         1\n#define DSFXCHORUS_PHASE_ZERO           2\n#define DSFXCHORUS_PHASE_90             3\n#define DSFXCHORUS_PHASE_180            4\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundFXChorus\n\nDECLARE_INTERFACE_(IDirectSoundFXChorus, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundFXChorus methods\n    STDMETHOD(SetAllParameters)     (THIS_ LPCDSFXChorus pcDsFxChorus) PURE;\n    STDMETHOD(GetAllParameters)     (THIS_ LPDSFXChorus pDsFxChorus) PURE;\n};\n\n#define IDirectSoundFXChorus_QueryInterface(p,a,b)          IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundFXChorus_AddRef(p)                      IUnknown_AddRef(p)\n#define IDirectSoundFXChorus_Release(p)                     IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXChorus_SetAllParameters(p,a)          (p)->lpVtbl->SetAllParameters(p,a)\n#define IDirectSoundFXChorus_GetAllParameters(p,a)          (p)->lpVtbl->GetAllParameters(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXChorus_SetAllParameters(p,a)          (p)->SetAllParameters(a)\n#define IDirectSoundFXChorus_GetAllParameters(p,a)          (p)->GetAllParameters(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n//\n// IDirectSoundFXFlanger\n//\n\nDEFINE_GUID(IID_IDirectSoundFXFlanger, 0x903e9878, 0x2c92, 0x4072, 0x9b, 0x2c, 0xea, 0x68, 0xf5, 0x39, 0x67, 0x83);\n\ntypedef struct _DSFXFlanger\n{\n    FLOAT       fWetDryMix;\n    FLOAT       fDepth;\n    FLOAT       fFeedback;\n    FLOAT       fFrequency;\n    LONG        lWaveform;\n    FLOAT       fDelay;\n    LONG        lPhase;\n} DSFXFlanger, *LPDSFXFlanger;\n\ntypedef const DSFXFlanger *LPCDSFXFlanger;\n\n#define DSFXFLANGER_WAVE_TRIANGLE       0\n#define DSFXFLANGER_WAVE_SIN            1\n\n#define DSFXFLANGER_WETDRYMIX_MIN       0.0f\n#define DSFXFLANGER_WETDRYMIX_MAX       100.0f\n#define DSFXFLANGER_FREQUENCY_MIN       0.0f\n#define DSFXFLANGER_FREQUENCY_MAX       10.0f\n#define DSFXFLANGER_DEPTH_MIN           0.0f\n#define DSFXFLANGER_DEPTH_MAX           100.0f\n#define DSFXFLANGER_PHASE_MIN           0\n#define DSFXFLANGER_PHASE_MAX           4\n#define DSFXFLANGER_FEEDBACK_MIN        -99.0f\n#define DSFXFLANGER_FEEDBACK_MAX        99.0f\n#define DSFXFLANGER_DELAY_MIN           0.0f\n#define DSFXFLANGER_DELAY_MAX           4.0f\n\n#define DSFXFLANGER_PHASE_NEG_180       0\n#define DSFXFLANGER_PHASE_NEG_90        1\n#define DSFXFLANGER_PHASE_ZERO          2\n#define DSFXFLANGER_PHASE_90            3\n#define DSFXFLANGER_PHASE_180           4\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundFXFlanger\n\nDECLARE_INTERFACE_(IDirectSoundFXFlanger, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundFXFlanger methods\n    STDMETHOD(SetAllParameters)     (THIS_ LPCDSFXFlanger pcDsFxFlanger) PURE;\n    STDMETHOD(GetAllParameters)     (THIS_ LPDSFXFlanger pDsFxFlanger) PURE;\n};\n\n#define IDirectSoundFXFlanger_QueryInterface(p,a,b)         IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundFXFlanger_AddRef(p)                     IUnknown_AddRef(p)\n#define IDirectSoundFXFlanger_Release(p)                    IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXFlanger_SetAllParameters(p,a)         (p)->lpVtbl->SetAllParameters(p,a)\n#define IDirectSoundFXFlanger_GetAllParameters(p,a)         (p)->lpVtbl->GetAllParameters(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXFlanger_SetAllParameters(p,a)         (p)->SetAllParameters(a)\n#define IDirectSoundFXFlanger_GetAllParameters(p,a)         (p)->GetAllParameters(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n//\n// IDirectSoundFXEcho\n//\n\nDEFINE_GUID(IID_IDirectSoundFXEcho, 0x8bd28edf, 0x50db, 0x4e92, 0xa2, 0xbd, 0x44, 0x54, 0x88, 0xd1, 0xed, 0x42);\n\ntypedef struct _DSFXEcho\n{\n    FLOAT   fWetDryMix;\n    FLOAT   fFeedback;\n    FLOAT   fLeftDelay;\n    FLOAT   fRightDelay;\n    LONG    lPanDelay;\n} DSFXEcho, *LPDSFXEcho;\n\ntypedef const DSFXEcho *LPCDSFXEcho;\n\n#define DSFXECHO_WETDRYMIX_MIN      0.0f\n#define DSFXECHO_WETDRYMIX_MAX      100.0f\n#define DSFXECHO_FEEDBACK_MIN       0.0f\n#define DSFXECHO_FEEDBACK_MAX       100.0f\n#define DSFXECHO_LEFTDELAY_MIN      1.0f\n#define DSFXECHO_LEFTDELAY_MAX      2000.0f\n#define DSFXECHO_RIGHTDELAY_MIN     1.0f\n#define DSFXECHO_RIGHTDELAY_MAX     2000.0f\n#define DSFXECHO_PANDELAY_MIN       0\n#define DSFXECHO_PANDELAY_MAX       1\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundFXEcho\n\nDECLARE_INTERFACE_(IDirectSoundFXEcho, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundFXEcho methods\n    STDMETHOD(SetAllParameters)     (THIS_ LPCDSFXEcho pcDsFxEcho) PURE;\n    STDMETHOD(GetAllParameters)     (THIS_ LPDSFXEcho pDsFxEcho) PURE;\n};\n\n#define IDirectSoundFXEcho_QueryInterface(p,a,b)            IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundFXEcho_AddRef(p)                        IUnknown_AddRef(p)\n#define IDirectSoundFXEcho_Release(p)                       IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXEcho_SetAllParameters(p,a)            (p)->lpVtbl->SetAllParameters(p,a)\n#define IDirectSoundFXEcho_GetAllParameters(p,a)            (p)->lpVtbl->GetAllParameters(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXEcho_SetAllParameters(p,a)            (p)->SetAllParameters(a)\n#define IDirectSoundFXEcho_GetAllParameters(p,a)            (p)->GetAllParameters(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n//\n// IDirectSoundFXDistortion\n//\n\nDEFINE_GUID(IID_IDirectSoundFXDistortion, 0x8ecf4326, 0x455f, 0x4d8b, 0xbd, 0xa9, 0x8d, 0x5d, 0x3e, 0x9e, 0x3e, 0x0b);\n\ntypedef struct _DSFXDistortion\n{\n    FLOAT   fGain;\n    FLOAT   fEdge;\n    FLOAT   fPostEQCenterFrequency;\n    FLOAT   fPostEQBandwidth;\n    FLOAT   fPreLowpassCutoff;\n} DSFXDistortion, *LPDSFXDistortion;\n\ntypedef const DSFXDistortion *LPCDSFXDistortion;\n\n#define DSFXDISTORTION_GAIN_MIN                     -60.0f\n#define DSFXDISTORTION_GAIN_MAX                     0.0f\n#define DSFXDISTORTION_EDGE_MIN                     0.0f\n#define DSFXDISTORTION_EDGE_MAX                     100.0f\n#define DSFXDISTORTION_POSTEQCENTERFREQUENCY_MIN    100.0f\n#define DSFXDISTORTION_POSTEQCENTERFREQUENCY_MAX    8000.0f\n#define DSFXDISTORTION_POSTEQBANDWIDTH_MIN          100.0f\n#define DSFXDISTORTION_POSTEQBANDWIDTH_MAX          8000.0f\n#define DSFXDISTORTION_PRELOWPASSCUTOFF_MIN         100.0f\n#define DSFXDISTORTION_PRELOWPASSCUTOFF_MAX         8000.0f\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundFXDistortion\n\nDECLARE_INTERFACE_(IDirectSoundFXDistortion, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundFXDistortion methods\n    STDMETHOD(SetAllParameters)     (THIS_ LPCDSFXDistortion pcDsFxDistortion) PURE;\n    STDMETHOD(GetAllParameters)     (THIS_ LPDSFXDistortion pDsFxDistortion) PURE;\n};\n\n#define IDirectSoundFXDistortion_QueryInterface(p,a,b)      IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundFXDistortion_AddRef(p)                  IUnknown_AddRef(p)\n#define IDirectSoundFXDistortion_Release(p)                 IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXDistortion_SetAllParameters(p,a)      (p)->lpVtbl->SetAllParameters(p,a)\n#define IDirectSoundFXDistortion_GetAllParameters(p,a)      (p)->lpVtbl->GetAllParameters(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXDistortion_SetAllParameters(p,a)      (p)->SetAllParameters(a)\n#define IDirectSoundFXDistortion_GetAllParameters(p,a)      (p)->GetAllParameters(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n//\n// IDirectSoundFXCompressor\n//\n\nDEFINE_GUID(IID_IDirectSoundFXCompressor, 0x4bbd1154, 0x62f6, 0x4e2c, 0xa1, 0x5c, 0xd3, 0xb6, 0xc4, 0x17, 0xf7, 0xa0);\n\ntypedef struct _DSFXCompressor\n{\n    FLOAT   fGain;\n    FLOAT   fAttack;\n    FLOAT   fRelease;\n    FLOAT   fThreshold;\n    FLOAT   fRatio;\n    FLOAT   fPredelay;\n} DSFXCompressor, *LPDSFXCompressor;\n\ntypedef const DSFXCompressor *LPCDSFXCompressor;\n\n#define DSFXCOMPRESSOR_GAIN_MIN             -60.0f\n#define DSFXCOMPRESSOR_GAIN_MAX             60.0f\n#define DSFXCOMPRESSOR_ATTACK_MIN           0.01f\n#define DSFXCOMPRESSOR_ATTACK_MAX           500.0f\n#define DSFXCOMPRESSOR_RELEASE_MIN          50.0f\n#define DSFXCOMPRESSOR_RELEASE_MAX          3000.0f\n#define DSFXCOMPRESSOR_THRESHOLD_MIN        -60.0f\n#define DSFXCOMPRESSOR_THRESHOLD_MAX        0.0f\n#define DSFXCOMPRESSOR_RATIO_MIN            1.0f\n#define DSFXCOMPRESSOR_RATIO_MAX            100.0f\n#define DSFXCOMPRESSOR_PREDELAY_MIN         0.0f\n#define DSFXCOMPRESSOR_PREDELAY_MAX         4.0f\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundFXCompressor\n\nDECLARE_INTERFACE_(IDirectSoundFXCompressor, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundFXCompressor methods\n    STDMETHOD(SetAllParameters)     (THIS_ LPCDSFXCompressor pcDsFxCompressor) PURE;\n    STDMETHOD(GetAllParameters)     (THIS_ LPDSFXCompressor pDsFxCompressor) PURE;\n};\n\n#define IDirectSoundFXCompressor_QueryInterface(p,a,b)      IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundFXCompressor_AddRef(p)                  IUnknown_AddRef(p)\n#define IDirectSoundFXCompressor_Release(p)                 IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXCompressor_SetAllParameters(p,a)      (p)->lpVtbl->SetAllParameters(p,a)\n#define IDirectSoundFXCompressor_GetAllParameters(p,a)      (p)->lpVtbl->GetAllParameters(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXCompressor_SetAllParameters(p,a)      (p)->SetAllParameters(a)\n#define IDirectSoundFXCompressor_GetAllParameters(p,a)      (p)->GetAllParameters(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n//\n// IDirectSoundFXParamEq\n//\n\nDEFINE_GUID(IID_IDirectSoundFXParamEq, 0xc03ca9fe, 0xfe90, 0x4204, 0x80, 0x78, 0x82, 0x33, 0x4c, 0xd1, 0x77, 0xda);\n\ntypedef struct _DSFXParamEq\n{\n    FLOAT   fCenter;\n    FLOAT   fBandwidth;\n    FLOAT   fGain;\n} DSFXParamEq, *LPDSFXParamEq;\n\ntypedef const DSFXParamEq *LPCDSFXParamEq;\n\n#define DSFXPARAMEQ_CENTER_MIN      80.0f\n#define DSFXPARAMEQ_CENTER_MAX      16000.0f\n#define DSFXPARAMEQ_BANDWIDTH_MIN   1.0f\n#define DSFXPARAMEQ_BANDWIDTH_MAX   36.0f\n#define DSFXPARAMEQ_GAIN_MIN        -15.0f\n#define DSFXPARAMEQ_GAIN_MAX        15.0f\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundFXParamEq\n\nDECLARE_INTERFACE_(IDirectSoundFXParamEq, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundFXParamEq methods\n    STDMETHOD(SetAllParameters)     (THIS_ LPCDSFXParamEq pcDsFxParamEq) PURE;\n    STDMETHOD(GetAllParameters)     (THIS_ LPDSFXParamEq pDsFxParamEq) PURE;\n};\n\n#define IDirectSoundFXParamEq_QueryInterface(p,a,b)      IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundFXParamEq_AddRef(p)                  IUnknown_AddRef(p)\n#define IDirectSoundFXParamEq_Release(p)                 IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXParamEq_SetAllParameters(p,a)      (p)->lpVtbl->SetAllParameters(p,a)\n#define IDirectSoundFXParamEq_GetAllParameters(p,a)      (p)->lpVtbl->GetAllParameters(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXParamEq_SetAllParameters(p,a)      (p)->SetAllParameters(a)\n#define IDirectSoundFXParamEq_GetAllParameters(p,a)      (p)->GetAllParameters(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n//\n// IDirectSoundFXI3DL2Reverb\n//\n\nDEFINE_GUID(IID_IDirectSoundFXI3DL2Reverb, 0x4b166a6a, 0x0d66, 0x43f3, 0x80, 0xe3, 0xee, 0x62, 0x80, 0xde, 0xe1, 0xa4);\n\ntypedef struct _DSFXI3DL2Reverb\n{\n    LONG    lRoom;                  // [-10000, 0]      default: -1000 mB\n    LONG    lRoomHF;                // [-10000, 0]      default: 0 mB\n    FLOAT   flRoomRolloffFactor;    // [0.0, 10.0]      default: 0.0\n    FLOAT   flDecayTime;            // [0.1, 20.0]      default: 1.49s\n    FLOAT   flDecayHFRatio;         // [0.1, 2.0]       default: 0.83\n    LONG    lReflections;           // [-10000, 1000]   default: -2602 mB\n    FLOAT   flReflectionsDelay;     // [0.0, 0.3]       default: 0.007 s\n    LONG    lReverb;                // [-10000, 2000]   default: 200 mB\n    FLOAT   flReverbDelay;          // [0.0, 0.1]       default: 0.011 s\n    FLOAT   flDiffusion;            // [0.0, 100.0]     default: 100.0 %\n    FLOAT   flDensity;              // [0.0, 100.0]     default: 100.0 %\n    FLOAT   flHFReference;          // [20.0, 20000.0]  default: 5000.0 Hz\n} DSFXI3DL2Reverb, *LPDSFXI3DL2Reverb;\n\ntypedef const DSFXI3DL2Reverb *LPCDSFXI3DL2Reverb;\n\n#define DSFX_I3DL2REVERB_ROOM_MIN                   (-10000)\n#define DSFX_I3DL2REVERB_ROOM_MAX                   0\n#define DSFX_I3DL2REVERB_ROOM_DEFAULT               (-1000)\n\n#define DSFX_I3DL2REVERB_ROOMHF_MIN                 (-10000)\n#define DSFX_I3DL2REVERB_ROOMHF_MAX                 0\n#define DSFX_I3DL2REVERB_ROOMHF_DEFAULT             (-100)\n\n#define DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_MIN      0.0f\n#define DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_MAX      10.0f\n#define DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_DEFAULT  0.0f\n\n#define DSFX_I3DL2REVERB_DECAYTIME_MIN              0.1f\n#define DSFX_I3DL2REVERB_DECAYTIME_MAX              20.0f\n#define DSFX_I3DL2REVERB_DECAYTIME_DEFAULT          1.49f\n\n#define DSFX_I3DL2REVERB_DECAYHFRATIO_MIN           0.1f\n#define DSFX_I3DL2REVERB_DECAYHFRATIO_MAX           2.0f\n#define DSFX_I3DL2REVERB_DECAYHFRATIO_DEFAULT       0.83f\n\n#define DSFX_I3DL2REVERB_REFLECTIONS_MIN            (-10000)\n#define DSFX_I3DL2REVERB_REFLECTIONS_MAX            1000\n#define DSFX_I3DL2REVERB_REFLECTIONS_DEFAULT        (-2602)\n\n#define DSFX_I3DL2REVERB_REFLECTIONSDELAY_MIN       0.0f\n#define DSFX_I3DL2REVERB_REFLECTIONSDELAY_MAX       0.3f\n#define DSFX_I3DL2REVERB_REFLECTIONSDELAY_DEFAULT   0.007f\n\n#define DSFX_I3DL2REVERB_REVERB_MIN                 (-10000)\n#define DSFX_I3DL2REVERB_REVERB_MAX                 2000\n#define DSFX_I3DL2REVERB_REVERB_DEFAULT             (200)\n\n#define DSFX_I3DL2REVERB_REVERBDELAY_MIN            0.0f\n#define DSFX_I3DL2REVERB_REVERBDELAY_MAX            0.1f\n#define DSFX_I3DL2REVERB_REVERBDELAY_DEFAULT        0.011f\n\n#define DSFX_I3DL2REVERB_DIFFUSION_MIN              0.0f\n#define DSFX_I3DL2REVERB_DIFFUSION_MAX              100.0f\n#define DSFX_I3DL2REVERB_DIFFUSION_DEFAULT          100.0f\n\n#define DSFX_I3DL2REVERB_DENSITY_MIN                0.0f\n#define DSFX_I3DL2REVERB_DENSITY_MAX                100.0f\n#define DSFX_I3DL2REVERB_DENSITY_DEFAULT            100.0f\n\n#define DSFX_I3DL2REVERB_HFREFERENCE_MIN            20.0f\n#define DSFX_I3DL2REVERB_HFREFERENCE_MAX            20000.0f\n#define DSFX_I3DL2REVERB_HFREFERENCE_DEFAULT        5000.0f\n\n#define DSFX_I3DL2REVERB_QUALITY_MIN                0\n#define DSFX_I3DL2REVERB_QUALITY_MAX                3\n#define DSFX_I3DL2REVERB_QUALITY_DEFAULT            2\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundFXI3DL2Reverb\n\nDECLARE_INTERFACE_(IDirectSoundFXI3DL2Reverb, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundFXI3DL2Reverb methods\n    STDMETHOD(SetAllParameters)     (THIS_ LPCDSFXI3DL2Reverb pcDsFxI3DL2Reverb) PURE;\n    STDMETHOD(GetAllParameters)     (THIS_ LPDSFXI3DL2Reverb pDsFxI3DL2Reverb) PURE;\n    STDMETHOD(SetPreset)            (THIS_ DWORD dwPreset) PURE;\n    STDMETHOD(GetPreset)            (THIS_ LPDWORD pdwPreset) PURE;\n    STDMETHOD(SetQuality)           (THIS_ LONG lQuality) PURE;\n    STDMETHOD(GetQuality)           (THIS_ LONG *plQuality) PURE;\n};\n\n#define IDirectSoundFXI3DL2Reverb_QueryInterface(p,a,b)     IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundFXI3DL2Reverb_AddRef(p)                 IUnknown_AddRef(p)\n#define IDirectSoundFXI3DL2Reverb_Release(p)                IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXI3DL2Reverb_SetAllParameters(p,a)     (p)->lpVtbl->SetAllParameters(p,a)\n#define IDirectSoundFXI3DL2Reverb_GetAllParameters(p,a)     (p)->lpVtbl->GetAllParameters(p,a)\n#define IDirectSoundFXI3DL2Reverb_SetPreset(p,a)            (p)->lpVtbl->SetPreset(p,a)\n#define IDirectSoundFXI3DL2Reverb_GetPreset(p,a)            (p)->lpVtbl->GetPreset(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXI3DL2Reverb_SetAllParameters(p,a)     (p)->SetAllParameters(a)\n#define IDirectSoundFXI3DL2Reverb_GetAllParameters(p,a)     (p)->GetAllParameters(a)\n#define IDirectSoundFXI3DL2Reverb_SetPreset(p,a)            (p)->SetPreset(a)\n#define IDirectSoundFXI3DL2Reverb_GetPreset(p,a)            (p)->GetPreset(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n//\n// IDirectSoundFXWavesReverb\n//\n\nDEFINE_GUID(IID_IDirectSoundFXWavesReverb,0x46858c3a,0x0dc6,0x45e3,0xb7,0x60,0xd4,0xee,0xf1,0x6c,0xb3,0x25);\n\ntypedef struct _DSFXWavesReverb\n{\n    FLOAT   fInGain;                // [-96.0,0.0]            default: 0.0 dB\n    FLOAT   fReverbMix;             // [-96.0,0.0]            default: 0.0 db\n    FLOAT   fReverbTime;            // [0.001,3000.0]         default: 1000.0 ms\n    FLOAT   fHighFreqRTRatio;       // [0.001,0.999]          default: 0.001\n} DSFXWavesReverb, *LPDSFXWavesReverb;\n\ntypedef const DSFXWavesReverb *LPCDSFXWavesReverb;\n\n#define DSFX_WAVESREVERB_INGAIN_MIN                 -96.0f\n#define DSFX_WAVESREVERB_INGAIN_MAX                 0.0f\n#define DSFX_WAVESREVERB_INGAIN_DEFAULT             0.0f\n#define DSFX_WAVESREVERB_REVERBMIX_MIN              -96.0f\n#define DSFX_WAVESREVERB_REVERBMIX_MAX              0.0f\n#define DSFX_WAVESREVERB_REVERBMIX_DEFAULT          0.0f\n#define DSFX_WAVESREVERB_REVERBTIME_MIN             0.001f\n#define DSFX_WAVESREVERB_REVERBTIME_MAX             3000.0f\n#define DSFX_WAVESREVERB_REVERBTIME_DEFAULT         1000.0f\n#define DSFX_WAVESREVERB_HIGHFREQRTRATIO_MIN        0.001f\n#define DSFX_WAVESREVERB_HIGHFREQRTRATIO_MAX        0.999f\n#define DSFX_WAVESREVERB_HIGHFREQRTRATIO_DEFAULT    0.001f\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundFXWavesReverb\n\nDECLARE_INTERFACE_(IDirectSoundFXWavesReverb, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundFXWavesReverb methods\n    STDMETHOD(SetAllParameters)     (THIS_ LPCDSFXWavesReverb pcDsFxWavesReverb) PURE;\n    STDMETHOD(GetAllParameters)     (THIS_ LPDSFXWavesReverb pDsFxWavesReverb) PURE;\n};\n\n#define IDirectSoundFXWavesReverb_QueryInterface(p,a,b)     IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundFXWavesReverb_AddRef(p)                 IUnknown_AddRef(p)\n#define IDirectSoundFXWavesReverb_Release(p)                IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXWavesReverb_SetAllParameters(p,a)     (p)->lpVtbl->SetAllParameters(p,a)\n#define IDirectSoundFXWavesReverb_GetAllParameters(p,a)     (p)->lpVtbl->GetAllParameters(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFXWavesReverb_SetAllParameters(p,a)     (p)->SetAllParameters(a)\n#define IDirectSoundFXWavesReverb_GetAllParameters(p,a)     (p)->GetAllParameters(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n//\n// IDirectSoundCaptureFXAec\n//\n\nDEFINE_GUID(IID_IDirectSoundCaptureFXAec, 0xad74143d, 0x903d, 0x4ab7, 0x80, 0x66, 0x28, 0xd3, 0x63, 0x03, 0x6d, 0x65);\n\ntypedef struct _DSCFXAec\n{\n    BOOL    fEnable;\n    BOOL    fNoiseFill;\n    DWORD   dwMode;\n} DSCFXAec, *LPDSCFXAec;\n\ntypedef const DSCFXAec *LPCDSCFXAec;\n\n// These match the AEC_MODE_* constants in the DDK's ksmedia.h file\n#define DSCFX_AEC_MODE_PASS_THROUGH                     0x0\n#define DSCFX_AEC_MODE_HALF_DUPLEX                      0x1\n#define DSCFX_AEC_MODE_FULL_DUPLEX                      0x2\n\n// These match the AEC_STATUS_* constants in ksmedia.h\n#define DSCFX_AEC_STATUS_HISTORY_UNINITIALIZED          0x0\n#define DSCFX_AEC_STATUS_HISTORY_CONTINUOUSLY_CONVERGED 0x1\n#define DSCFX_AEC_STATUS_HISTORY_PREVIOUSLY_DIVERGED    0x2\n#define DSCFX_AEC_STATUS_CURRENTLY_CONVERGED            0x8\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundCaptureFXAec\n\nDECLARE_INTERFACE_(IDirectSoundCaptureFXAec, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundCaptureFXAec methods\n    STDMETHOD(SetAllParameters)     (THIS_ LPCDSCFXAec pDscFxAec) PURE;\n    STDMETHOD(GetAllParameters)     (THIS_ LPDSCFXAec pDscFxAec) PURE;\n    STDMETHOD(GetStatus)            (THIS_ PDWORD pdwStatus) PURE;\n    STDMETHOD(Reset)                (THIS) PURE;\n};\n\n#define IDirectSoundCaptureFXAec_QueryInterface(p,a,b)     IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundCaptureFXAec_AddRef(p)                 IUnknown_AddRef(p)\n#define IDirectSoundCaptureFXAec_Release(p)                IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundCaptureFXAec_SetAllParameters(p,a)     (p)->lpVtbl->SetAllParameters(p,a)\n#define IDirectSoundCaptureFXAec_GetAllParameters(p,a)     (p)->lpVtbl->GetAllParameters(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundCaptureFXAec_SetAllParameters(p,a)     (p)->SetAllParameters(a)\n#define IDirectSoundCaptureFXAec_GetAllParameters(p,a)     (p)->GetAllParameters(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n\n//\n// IDirectSoundCaptureFXNoiseSuppress\n//\n\nDEFINE_GUID(IID_IDirectSoundCaptureFXNoiseSuppress, 0xed311e41, 0xfbae, 0x4175, 0x96, 0x25, 0xcd, 0x8, 0x54, 0xf6, 0x93, 0xca);\n\ntypedef struct _DSCFXNoiseSuppress\n{\n    BOOL    fEnable;\n} DSCFXNoiseSuppress, *LPDSCFXNoiseSuppress;\n\ntypedef const DSCFXNoiseSuppress *LPCDSCFXNoiseSuppress;\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundCaptureFXNoiseSuppress\n\nDECLARE_INTERFACE_(IDirectSoundCaptureFXNoiseSuppress, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)       (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)        (THIS) PURE;\n    STDMETHOD_(ULONG,Release)       (THIS) PURE;\n\n    // IDirectSoundCaptureFXNoiseSuppress methods\n    STDMETHOD(SetAllParameters)     (THIS_ LPCDSCFXNoiseSuppress pcDscFxNoiseSuppress) PURE;\n    STDMETHOD(GetAllParameters)     (THIS_ LPDSCFXNoiseSuppress pDscFxNoiseSuppress) PURE;\n    STDMETHOD(Reset)                (THIS) PURE;\n};\n\n#define IDirectSoundCaptureFXNoiseSuppress_QueryInterface(p,a,b)     IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundCaptureFXNoiseSuppress_AddRef(p)                 IUnknown_AddRef(p)\n#define IDirectSoundCaptureFXNoiseSuppress_Release(p)                IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundCaptureFXNoiseSuppress_SetAllParameters(p,a)     (p)->lpVtbl->SetAllParameters(p,a)\n#define IDirectSoundCaptureFXNoiseSuppress_GetAllParameters(p,a)     (p)->lpVtbl->GetAllParameters(p,a)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundCaptureFXNoiseSuppress_SetAllParameters(p,a)     (p)->SetAllParameters(a)\n#define IDirectSoundCaptureFXNoiseSuppress_GetAllParameters(p,a)     (p)->GetAllParameters(a)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n\n//\n// IDirectSoundFullDuplex\n//\n\n#ifndef _IDirectSoundFullDuplex_\n#define _IDirectSoundFullDuplex_\n\n#ifdef __cplusplus\n// 'struct' not 'class' per the way DECLARE_INTERFACE_ is defined\nstruct IDirectSoundFullDuplex;\n#endif // __cplusplus\n\ntypedef struct IDirectSoundFullDuplex *LPDIRECTSOUNDFULLDUPLEX;\n\nDEFINE_GUID(IID_IDirectSoundFullDuplex, 0xedcb4c7a, 0xdaab, 0x4216, 0xa4, 0x2e, 0x6c, 0x50, 0x59, 0x6d, 0xdc, 0x1d);\n\n#undef INTERFACE\n#define INTERFACE IDirectSoundFullDuplex\n\nDECLARE_INTERFACE_(IDirectSoundFullDuplex, IUnknown)\n{\n    // IUnknown methods\n    STDMETHOD(QueryInterface)   (THIS_ REFIID, LPVOID *) PURE;\n    STDMETHOD_(ULONG,AddRef)    (THIS) PURE;\n    STDMETHOD_(ULONG,Release)   (THIS) PURE;\n\n    // IDirectSoundFullDuplex methods\n    STDMETHOD(Initialize)     (THIS_ LPCGUID pCaptureGuid, LPCGUID pRenderGuid, LPCDSCBUFFERDESC lpDscBufferDesc, LPCDSBUFFERDESC lpDsBufferDesc, HWND hWnd, DWORD dwLevel, LPLPDIRECTSOUNDCAPTUREBUFFER8 lplpDirectSoundCaptureBuffer8, LPLPDIRECTSOUNDBUFFER8 lplpDirectSoundBuffer8) PURE;\n};\n\n#define IDirectSoundFullDuplex_QueryInterface(p,a,b)    IUnknown_QueryInterface(p,a,b)\n#define IDirectSoundFullDuplex_AddRef(p)                IUnknown_AddRef(p)\n#define IDirectSoundFullDuplex_Release(p)               IUnknown_Release(p)\n\n#if !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFullDuplex_Initialize(p,a,b,c,d,e,f,g,h)     (p)->lpVtbl->Initialize(p,a,b,c,d,e,f,g,h)\n#else // !defined(__cplusplus) || defined(CINTERFACE)\n#define IDirectSoundFullDuplex_Initialize(p,a,b,c,d,e,f,g,h)     (p)->Initialize(a,b,c,d,e,f,g,h)\n#endif // !defined(__cplusplus) || defined(CINTERFACE)\n\n#endif // _IDirectSoundFullDuplex_\n\n#endif // DIRECTSOUND_VERSION >= 0x0800\n\n//\n// Return Codes\n//\n\n// The function completed successfully\n#define DS_OK                           S_OK\n\n// The call succeeded, but we had to substitute the 3D algorithm\n#define DS_NO_VIRTUALIZATION            MAKE_HRESULT(0, _FACDS, 10)\n\n// The call failed because resources (such as a priority level)\n// were already being used by another caller\n#define DSERR_ALLOCATED                 MAKE_DSHRESULT(10)\n\n// The control (vol, pan, etc.) requested by the caller is not available\n#define DSERR_CONTROLUNAVAIL            MAKE_DSHRESULT(30)\n\n// An invalid parameter was passed to the returning function\n#define DSERR_INVALIDPARAM              E_INVALIDARG\n\n// This call is not valid for the current state of this object\n#define DSERR_INVALIDCALL               MAKE_DSHRESULT(50)\n\n// An undetermined error occurred inside the DirectSound subsystem\n#define DSERR_GENERIC                   E_FAIL\n\n// The caller does not have the priority level required for the function to\n// succeed\n#define DSERR_PRIOLEVELNEEDED           MAKE_DSHRESULT(70)\n\n// Not enough free memory is available to complete the operation\n#define DSERR_OUTOFMEMORY               E_OUTOFMEMORY\n\n// The specified WAVE format is not supported\n#define DSERR_BADFORMAT                 MAKE_DSHRESULT(100)\n\n// The function called is not supported at this time\n#define DSERR_UNSUPPORTED               E_NOTIMPL\n\n// No sound driver is available for use\n#define DSERR_NODRIVER                  MAKE_DSHRESULT(120)\n// This object is already initialized\n#define DSERR_ALREADYINITIALIZED        MAKE_DSHRESULT(130)\n\n// This object does not support aggregation\n#define DSERR_NOAGGREGATION             CLASS_E_NOAGGREGATION\n\n// The buffer memory has been lost, and must be restored\n#define DSERR_BUFFERLOST                MAKE_DSHRESULT(150)\n\n// Another app has a higher priority level, preventing this call from\n// succeeding\n#define DSERR_OTHERAPPHASPRIO           MAKE_DSHRESULT(160)\n\n// This object has not been initialized\n#define DSERR_UNINITIALIZED             MAKE_DSHRESULT(170)\n\n// The requested COM interface is not available\n#define DSERR_NOINTERFACE               E_NOINTERFACE\n\n// Access is denied\n#define DSERR_ACCESSDENIED              E_ACCESSDENIED\n\n// Tried to create a DSBCAPS_CTRLFX buffer shorter than DSBSIZE_FX_MIN milliseconds\n#define DSERR_BUFFERTOOSMALL            MAKE_DSHRESULT(180)\n\n// Attempt to use DirectSound 8 functionality on an older DirectSound object\n#define DSERR_DS8_REQUIRED              MAKE_DSHRESULT(190)\n\n// A circular loop of send effects was detected\n#define DSERR_SENDLOOP                  MAKE_DSHRESULT(200)\n\n// The GUID specified in an audiopath file does not match a valid MIXIN buffer\n#define DSERR_BADSENDBUFFERGUID         MAKE_DSHRESULT(210)\n\n// The object requested was not found (numerically equal to DMUS_E_NOT_FOUND)\n#define DSERR_OBJECTNOTFOUND            MAKE_DSHRESULT(4449)\n\n// The effects requested could not be found on the system, or they were found\n// but in the wrong order, or in the wrong hardware/software locations.\n#define DSERR_FXUNAVAILABLE             MAKE_DSHRESULT(220)\n\n//\n// Flags\n//\n\n#define DSCAPS_PRIMARYMONO          0x00000001\n#define DSCAPS_PRIMARYSTEREO        0x00000002\n#define DSCAPS_PRIMARY8BIT          0x00000004\n#define DSCAPS_PRIMARY16BIT         0x00000008\n#define DSCAPS_CONTINUOUSRATE       0x00000010\n#define DSCAPS_EMULDRIVER           0x00000020\n#define DSCAPS_CERTIFIED            0x00000040\n#define DSCAPS_SECONDARYMONO        0x00000100\n#define DSCAPS_SECONDARYSTEREO      0x00000200\n#define DSCAPS_SECONDARY8BIT        0x00000400\n#define DSCAPS_SECONDARY16BIT       0x00000800\n\n#define DSSCL_NORMAL                0x00000001\n#define DSSCL_PRIORITY              0x00000002\n#define DSSCL_EXCLUSIVE             0x00000003\n#define DSSCL_WRITEPRIMARY          0x00000004\n\n#define DSSPEAKER_DIRECTOUT         0x00000000\n#define DSSPEAKER_HEADPHONE         0x00000001\n#define DSSPEAKER_MONO              0x00000002\n#define DSSPEAKER_QUAD              0x00000003\n#define DSSPEAKER_STEREO            0x00000004\n#define DSSPEAKER_SURROUND          0x00000005\n#define DSSPEAKER_5POINT1           0x00000006  // obsolete 5.1 setting\n#define DSSPEAKER_7POINT1           0x00000007  // obsolete 7.1 setting\n#define DSSPEAKER_7POINT1_SURROUND  0x00000008  // correct 7.1 Home Theater setting\n#define DSSPEAKER_7POINT1_WIDE      DSSPEAKER_7POINT1\n#if (DIRECTSOUND_VERSION >= 0x1000)\n    #define DSSPEAKER_5POINT1_SURROUND  0x00000009  // correct 5.1 setting\n    #define DSSPEAKER_5POINT1_BACK      DSSPEAKER_5POINT1\n#endif\n\n#define DSSPEAKER_GEOMETRY_MIN      0x00000005  //   5 degrees\n#define DSSPEAKER_GEOMETRY_NARROW   0x0000000A  //  10 degrees\n#define DSSPEAKER_GEOMETRY_WIDE     0x00000014  //  20 degrees\n#define DSSPEAKER_GEOMETRY_MAX      0x000000B4  // 180 degrees\n\n#define DSSPEAKER_COMBINED(c, g)    ((DWORD)(((BYTE)(c)) | ((DWORD)((BYTE)(g))) << 16))\n#define DSSPEAKER_CONFIG(a)         ((BYTE)(a))\n#define DSSPEAKER_GEOMETRY(a)       ((BYTE)(((DWORD)(a) >> 16) & 0x00FF))\n\n#define DSBCAPS_PRIMARYBUFFER       0x00000001\n#define DSBCAPS_STATIC              0x00000002\n#define DSBCAPS_LOCHARDWARE         0x00000004\n#define DSBCAPS_LOCSOFTWARE         0x00000008\n#define DSBCAPS_CTRL3D              0x00000010\n#define DSBCAPS_CTRLFREQUENCY       0x00000020\n#define DSBCAPS_CTRLPAN             0x00000040\n#define DSBCAPS_CTRLVOLUME          0x00000080\n#define DSBCAPS_CTRLPOSITIONNOTIFY  0x00000100\n#define DSBCAPS_CTRLFX              0x00000200\n#define DSBCAPS_STICKYFOCUS         0x00004000\n#define DSBCAPS_GLOBALFOCUS         0x00008000\n#define DSBCAPS_GETCURRENTPOSITION2 0x00010000\n#define DSBCAPS_MUTE3DATMAXDISTANCE 0x00020000\n#define DSBCAPS_LOCDEFER            0x00040000\n#if (DIRECTSOUND_VERSION >= 0x1000)\n    // Force GetCurrentPosition() to return a buffer's true play position;\n    // unmodified by aids to enhance backward compatibility.\n    #define DSBCAPS_TRUEPLAYPOSITION    0x00080000\n#endif\n\n#define DSBPLAY_LOOPING             0x00000001\n#define DSBPLAY_LOCHARDWARE         0x00000002\n#define DSBPLAY_LOCSOFTWARE         0x00000004\n#define DSBPLAY_TERMINATEBY_TIME    0x00000008\n#define DSBPLAY_TERMINATEBY_DISTANCE    0x000000010\n#define DSBPLAY_TERMINATEBY_PRIORITY    0x000000020\n\n#define DSBSTATUS_PLAYING           0x00000001\n#define DSBSTATUS_BUFFERLOST        0x00000002\n#define DSBSTATUS_LOOPING           0x00000004\n#define DSBSTATUS_LOCHARDWARE       0x00000008\n#define DSBSTATUS_LOCSOFTWARE       0x00000010\n#define DSBSTATUS_TERMINATED        0x00000020\n\n#define DSBLOCK_FROMWRITECURSOR     0x00000001\n#define DSBLOCK_ENTIREBUFFER        0x00000002\n\n#define DSBFREQUENCY_ORIGINAL       0\n#define DSBFREQUENCY_MIN            100\n#if DIRECTSOUND_VERSION >= 0x0900\n#define DSBFREQUENCY_MAX            200000\n#else\n#define DSBFREQUENCY_MAX            100000\n#endif\n\n#define DSBPAN_LEFT                 -10000\n#define DSBPAN_CENTER               0\n#define DSBPAN_RIGHT                10000\n\n#define DSBVOLUME_MIN               -10000\n#define DSBVOLUME_MAX               0\n\n#define DSBSIZE_MIN                 4\n#define DSBSIZE_MAX                 0x0FFFFFFF\n#define DSBSIZE_FX_MIN              150  // NOTE: Milliseconds, not bytes\n\n#define DSBNOTIFICATIONS_MAX        100000UL\n\n#define DS3DMODE_NORMAL             0x00000000\n#define DS3DMODE_HEADRELATIVE       0x00000001\n#define DS3DMODE_DISABLE            0x00000002\n\n#define DS3D_IMMEDIATE              0x00000000\n#define DS3D_DEFERRED               0x00000001\n\n#define DS3D_MINDISTANCEFACTOR      FLT_MIN\n#define DS3D_MAXDISTANCEFACTOR      FLT_MAX\n#define DS3D_DEFAULTDISTANCEFACTOR  1.0f\n\n#define DS3D_MINROLLOFFFACTOR       0.0f\n#define DS3D_MAXROLLOFFFACTOR       10.0f\n#define DS3D_DEFAULTROLLOFFFACTOR   1.0f\n\n#define DS3D_MINDOPPLERFACTOR       0.0f\n#define DS3D_MAXDOPPLERFACTOR       10.0f\n#define DS3D_DEFAULTDOPPLERFACTOR   1.0f\n\n#define DS3D_DEFAULTMINDISTANCE     1.0f\n#define DS3D_DEFAULTMAXDISTANCE     1000000000.0f\n\n#define DS3D_MINCONEANGLE           0\n#define DS3D_MAXCONEANGLE           360\n#define DS3D_DEFAULTCONEANGLE       360\n\n#define DS3D_DEFAULTCONEOUTSIDEVOLUME DSBVOLUME_MAX\n\n// IDirectSoundCapture attributes\n\n#define DSCCAPS_EMULDRIVER          DSCAPS_EMULDRIVER\n#define DSCCAPS_CERTIFIED           DSCAPS_CERTIFIED\n#define DSCCAPS_MULTIPLECAPTURE     0x00000001\n\n// IDirectSoundCaptureBuffer attributes\n\n#define DSCBCAPS_WAVEMAPPED         0x80000000\n\n#if DIRECTSOUND_VERSION >= 0x0800\n#define DSCBCAPS_CTRLFX             0x00000200\n#endif\n\n\n#define DSCBLOCK_ENTIREBUFFER       0x00000001\n\n#define DSCBSTATUS_CAPTURING        0x00000001\n#define DSCBSTATUS_LOOPING          0x00000002\n\n#define DSCBSTART_LOOPING           0x00000001\n\n#define DSBPN_OFFSETSTOP            0xFFFFFFFF\n\n#define DS_CERTIFIED                0x00000000\n#define DS_UNCERTIFIED              0x00000001\n\n\n//\n// Flags for the I3DL2 effects\n//\n\n//\n// I3DL2 Material Presets\n//\n\nenum\n{\n    DSFX_I3DL2_MATERIAL_PRESET_SINGLEWINDOW,\n    DSFX_I3DL2_MATERIAL_PRESET_DOUBLEWINDOW,\n    DSFX_I3DL2_MATERIAL_PRESET_THINDOOR,\n    DSFX_I3DL2_MATERIAL_PRESET_THICKDOOR,\n    DSFX_I3DL2_MATERIAL_PRESET_WOODWALL,\n    DSFX_I3DL2_MATERIAL_PRESET_BRICKWALL,\n    DSFX_I3DL2_MATERIAL_PRESET_STONEWALL,\n    DSFX_I3DL2_MATERIAL_PRESET_CURTAIN\n};\n\n#define I3DL2_MATERIAL_PRESET_SINGLEWINDOW    -2800,0.71f\n#define I3DL2_MATERIAL_PRESET_DOUBLEWINDOW    -5000,0.40f\n#define I3DL2_MATERIAL_PRESET_THINDOOR        -1800,0.66f\n#define I3DL2_MATERIAL_PRESET_THICKDOOR       -4400,0.64f\n#define I3DL2_MATERIAL_PRESET_WOODWALL        -4000,0.50f\n#define I3DL2_MATERIAL_PRESET_BRICKWALL       -5000,0.60f\n#define I3DL2_MATERIAL_PRESET_STONEWALL       -6000,0.68f\n#define I3DL2_MATERIAL_PRESET_CURTAIN         -1200,0.15f\n\nenum\n{\n    DSFX_I3DL2_ENVIRONMENT_PRESET_DEFAULT,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_GENERIC,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_PADDEDCELL,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_ROOM,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_BATHROOM,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_LIVINGROOM,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_STONEROOM,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_AUDITORIUM,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_CONCERTHALL,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_CAVE,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_ARENA,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_HANGAR,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_CARPETEDHALLWAY,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_HALLWAY,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_STONECORRIDOR,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_ALLEY,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_FOREST,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_CITY,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_MOUNTAINS,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_QUARRY,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_PLAIN,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_PARKINGLOT,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_SEWERPIPE,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_UNDERWATER,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_SMALLROOM,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_MEDIUMROOM,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_LARGEROOM,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_MEDIUMHALL,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_LARGEHALL,\n    DSFX_I3DL2_ENVIRONMENT_PRESET_PLATE\n};\n\n//\n// I3DL2 Reverberation Presets Values\n//\n\n#define I3DL2_ENVIRONMENT_PRESET_DEFAULT         -1000, -100, 0.0f, 1.49f, 0.83f, -2602, 0.007f,   200, 0.011f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_GENERIC         -1000, -100, 0.0f, 1.49f, 0.83f, -2602, 0.007f,   200, 0.011f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_PADDEDCELL      -1000,-6000, 0.0f, 0.17f, 0.10f, -1204, 0.001f,   207, 0.002f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_ROOM            -1000, -454, 0.0f, 0.40f, 0.83f, -1646, 0.002f,    53, 0.003f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_BATHROOM        -1000,-1200, 0.0f, 1.49f, 0.54f,  -370, 0.007f,  1030, 0.011f, 100.0f,  60.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_LIVINGROOM      -1000,-6000, 0.0f, 0.50f, 0.10f, -1376, 0.003f, -1104, 0.004f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_STONEROOM       -1000, -300, 0.0f, 2.31f, 0.64f,  -711, 0.012f,    83, 0.017f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_AUDITORIUM      -1000, -476, 0.0f, 4.32f, 0.59f,  -789, 0.020f,  -289, 0.030f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_CONCERTHALL     -1000, -500, 0.0f, 3.92f, 0.70f, -1230, 0.020f,    -2, 0.029f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_CAVE            -1000,    0, 0.0f, 2.91f, 1.30f,  -602, 0.015f,  -302, 0.022f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_ARENA           -1000, -698, 0.0f, 7.24f, 0.33f, -1166, 0.020f,    16, 0.030f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_HANGAR          -1000,-1000, 0.0f,10.05f, 0.23f,  -602, 0.020f,   198, 0.030f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_CARPETEDHALLWAY -1000,-4000, 0.0f, 0.30f, 0.10f, -1831, 0.002f, -1630, 0.030f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_HALLWAY         -1000, -300, 0.0f, 1.49f, 0.59f, -1219, 0.007f,   441, 0.011f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_STONECORRIDOR   -1000, -237, 0.0f, 2.70f, 0.79f, -1214, 0.013f,   395, 0.020f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_ALLEY           -1000, -270, 0.0f, 1.49f, 0.86f, -1204, 0.007f,    -4, 0.011f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_FOREST          -1000,-3300, 0.0f, 1.49f, 0.54f, -2560, 0.162f,  -613, 0.088f,  79.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_CITY            -1000, -800, 0.0f, 1.49f, 0.67f, -2273, 0.007f, -2217, 0.011f,  50.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_MOUNTAINS       -1000,-2500, 0.0f, 1.49f, 0.21f, -2780, 0.300f, -2014, 0.100f,  27.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_QUARRY          -1000,-1000, 0.0f, 1.49f, 0.83f,-10000, 0.061f,   500, 0.025f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_PLAIN           -1000,-2000, 0.0f, 1.49f, 0.50f, -2466, 0.179f, -2514, 0.100f,  21.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_PARKINGLOT      -1000,    0, 0.0f, 1.65f, 1.50f, -1363, 0.008f, -1153, 0.012f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_SEWERPIPE       -1000,-1000, 0.0f, 2.81f, 0.14f,   429, 0.014f,   648, 0.021f,  80.0f,  60.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_UNDERWATER      -1000,-4000, 0.0f, 1.49f, 0.10f,  -449, 0.007f,  1700, 0.011f, 100.0f, 100.0f, 5000.0f\n\n//\n// Examples simulating 'musical' reverb presets\n//\n// Name       Decay time   Description\n// Small Room    1.1s      A small size room with a length of 5m or so.\n// Medium Room   1.3s      A medium size room with a length of 10m or so.\n// Large Room    1.5s      A large size room suitable for live performances.\n// Medium Hall   1.8s      A medium size concert hall.\n// Large Hall    1.8s      A large size concert hall suitable for a full orchestra.\n// Plate         1.3s      A plate reverb simulation.\n//\n\n#define I3DL2_ENVIRONMENT_PRESET_SMALLROOM       -1000, -600, 0.0f, 1.10f, 0.83f,  -400, 0.005f,   500, 0.010f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_MEDIUMROOM      -1000, -600, 0.0f, 1.30f, 0.83f, -1000, 0.010f,  -200, 0.020f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_LARGEROOM       -1000, -600, 0.0f, 1.50f, 0.83f, -1600, 0.020f, -1000, 0.040f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_MEDIUMHALL      -1000, -600, 0.0f, 1.80f, 0.70f, -1300, 0.015f,  -800, 0.030f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_LARGEHALL       -1000, -600, 0.0f, 1.80f, 0.70f, -2000, 0.030f, -1400, 0.060f, 100.0f, 100.0f, 5000.0f\n#define I3DL2_ENVIRONMENT_PRESET_PLATE           -1000, -200, 0.0f, 1.30f, 0.90f,     0, 0.002f,     0, 0.010f, 100.0f,  75.0f, 5000.0f\n\n//\n// DirectSound3D Algorithms\n//\n\n// Default DirectSound3D algorithm {00000000-0000-0000-0000-000000000000}\n#define DS3DALG_DEFAULT GUID_NULL\n\n// No virtualization (Pan3D) {C241333F-1C1B-11d2-94F5-00C04FC28ACA}\nDEFINE_GUID(DS3DALG_NO_VIRTUALIZATION, 0xc241333f, 0x1c1b, 0x11d2, 0x94, 0xf5, 0x0, 0xc0, 0x4f, 0xc2, 0x8a, 0xca);\n\n// High-quality HRTF algorithm {C2413340-1C1B-11d2-94F5-00C04FC28ACA}\nDEFINE_GUID(DS3DALG_HRTF_FULL, 0xc2413340, 0x1c1b, 0x11d2, 0x94, 0xf5, 0x0, 0xc0, 0x4f, 0xc2, 0x8a, 0xca);\n\n// Lower-quality HRTF algorithm {C2413342-1C1B-11d2-94F5-00C04FC28ACA}\nDEFINE_GUID(DS3DALG_HRTF_LIGHT, 0xc2413342, 0x1c1b, 0x11d2, 0x94, 0xf5, 0x0, 0xc0, 0x4f, 0xc2, 0x8a, 0xca);\n\n\n#if DIRECTSOUND_VERSION >= 0x0800\n\n//\n// DirectSound Internal Effect Algorithms\n//\n\n\n// Gargle {DAFD8210-5711-4B91-9FE3-F75B7AE279BF}\nDEFINE_GUID(GUID_DSFX_STANDARD_GARGLE, 0xdafd8210, 0x5711, 0x4b91, 0x9f, 0xe3, 0xf7, 0x5b, 0x7a, 0xe2, 0x79, 0xbf);\n\n// Chorus {EFE6629C-81F7-4281-BD91-C9D604A95AF6}\nDEFINE_GUID(GUID_DSFX_STANDARD_CHORUS, 0xefe6629c, 0x81f7, 0x4281, 0xbd, 0x91, 0xc9, 0xd6, 0x04, 0xa9, 0x5a, 0xf6);\n\n// Flanger {EFCA3D92-DFD8-4672-A603-7420894BAD98}\nDEFINE_GUID(GUID_DSFX_STANDARD_FLANGER, 0xefca3d92, 0xdfd8, 0x4672, 0xa6, 0x03, 0x74, 0x20, 0x89, 0x4b, 0xad, 0x98);\n\n// Echo/Delay {EF3E932C-D40B-4F51-8CCF-3F98F1B29D5D}\nDEFINE_GUID(GUID_DSFX_STANDARD_ECHO, 0xef3e932c, 0xd40b, 0x4f51, 0x8c, 0xcf, 0x3f, 0x98, 0xf1, 0xb2, 0x9d, 0x5d);\n\n// Distortion {EF114C90-CD1D-484E-96E5-09CFAF912A21}\nDEFINE_GUID(GUID_DSFX_STANDARD_DISTORTION, 0xef114c90, 0xcd1d, 0x484e, 0x96, 0xe5, 0x09, 0xcf, 0xaf, 0x91, 0x2a, 0x21);\n\n// Compressor/Limiter {EF011F79-4000-406D-87AF-BFFB3FC39D57}\nDEFINE_GUID(GUID_DSFX_STANDARD_COMPRESSOR, 0xef011f79, 0x4000, 0x406d, 0x87, 0xaf, 0xbf, 0xfb, 0x3f, 0xc3, 0x9d, 0x57);\n\n// Parametric Equalization {120CED89-3BF4-4173-A132-3CB406CF3231}\nDEFINE_GUID(GUID_DSFX_STANDARD_PARAMEQ, 0x120ced89, 0x3bf4, 0x4173, 0xa1, 0x32, 0x3c, 0xb4, 0x06, 0xcf, 0x32, 0x31);\n\n// I3DL2 Environmental Reverberation: Reverb (Listener) Effect {EF985E71-D5C7-42D4-BA4D-2D073E2E96F4}\nDEFINE_GUID(GUID_DSFX_STANDARD_I3DL2REVERB, 0xef985e71, 0xd5c7, 0x42d4, 0xba, 0x4d, 0x2d, 0x07, 0x3e, 0x2e, 0x96, 0xf4);\n\n// Waves Reverberation {87FC0268-9A55-4360-95AA-004A1D9DE26C}\nDEFINE_GUID(GUID_DSFX_WAVES_REVERB, 0x87fc0268, 0x9a55, 0x4360, 0x95, 0xaa, 0x00, 0x4a, 0x1d, 0x9d, 0xe2, 0x6c);\n\n//\n// DirectSound Capture Effect Algorithms\n//\n\n\n// Acoustic Echo Canceller {BF963D80-C559-11D0-8A2B-00A0C9255AC1}\n// Matches KSNODETYPE_ACOUSTIC_ECHO_CANCEL in ksmedia.h\nDEFINE_GUID(GUID_DSCFX_CLASS_AEC, 0xBF963D80L, 0xC559, 0x11D0, 0x8A, 0x2B, 0x00, 0xA0, 0xC9, 0x25, 0x5A, 0xC1);\n\n// Microsoft AEC {CDEBB919-379A-488a-8765-F53CFD36DE40}\nDEFINE_GUID(GUID_DSCFX_MS_AEC, 0xcdebb919, 0x379a, 0x488a, 0x87, 0x65, 0xf5, 0x3c, 0xfd, 0x36, 0xde, 0x40);\n\n// System AEC {1C22C56D-9879-4f5b-A389-27996DDC2810}\nDEFINE_GUID(GUID_DSCFX_SYSTEM_AEC, 0x1c22c56d, 0x9879, 0x4f5b, 0xa3, 0x89, 0x27, 0x99, 0x6d, 0xdc, 0x28, 0x10);\n\n// Noise Supression {E07F903F-62FD-4e60-8CDD-DEA7236665B5}\n// Matches KSNODETYPE_NOISE_SUPPRESS in post Windows ME DDK's ksmedia.h\nDEFINE_GUID(GUID_DSCFX_CLASS_NS, 0xe07f903f, 0x62fd, 0x4e60, 0x8c, 0xdd, 0xde, 0xa7, 0x23, 0x66, 0x65, 0xb5);\n\n// Microsoft Noise Suppresion {11C5C73B-66E9-4ba1-A0BA-E814C6EED92D}\nDEFINE_GUID(GUID_DSCFX_MS_NS, 0x11c5c73b, 0x66e9, 0x4ba1, 0xa0, 0xba, 0xe8, 0x14, 0xc6, 0xee, 0xd9, 0x2d);\n\n// System Noise Suppresion {5AB0882E-7274-4516-877D-4EEE99BA4FD0}\nDEFINE_GUID(GUID_DSCFX_SYSTEM_NS, 0x5ab0882e, 0x7274, 0x4516, 0x87, 0x7d, 0x4e, 0xee, 0x99, 0xba, 0x4f, 0xd0);\n\n#endif // DIRECTSOUND_VERSION >= 0x0800\n\n#endif // __DSOUND_INCLUDED__\n\n\n\n#ifdef __cplusplus\n};\n#endif // __cplusplus\n\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/functiondiscoverykeys_devpkey.h",
    "content": "#pragma once\n\n/*++\n\nCopyright (c) Microsoft Corporation.  All rights reserved.\n\nModule Name:\n\n    devpkey.h\n\nAbstract:\n\n    Defines property keys for the Plug and Play Device Property API.\n\nAuthor:\n\n    Jim Cavalaris (jamesca) 10-14-2003\n\nEnvironment:\n\n    User-mode only.\n\nRevision History:\n\n    14-October-2003     jamesca\n\n        Creation and initial implementation.\n\n    20-June-2006        dougb\n\n        Copied Jim's version replaced \"DEFINE_DEVPROPKEY(DEVPKEY_\" with \"DEFINE_PROPERTYKEY(PKEY_\"\n    \n--*/\n\n//#include <devpropdef.h>\n\n//\n// _NAME\n//\n\nDEFINE_PROPERTYKEY(PKEY_NAME,                          0xb725f130, 0x47ef, 0x101a, 0xa5, 0xf1, 0x02, 0x60, 0x8c, 0x9e, 0xeb, 0xac, 10);    // DEVPROP_TYPE_STRING\n\n//\n// Device properties\n// These PKEYs correspond to the old setupapi SPDRP_XXX properties\n//\nDEFINE_PROPERTYKEY(PKEY_Device_DeviceDesc,             0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 2);     // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_HardwareIds,            0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 3);     // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_Device_CompatibleIds,          0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 4);     // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_Device_Service,                0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 6);     // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_Class,                  0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 9);     // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_ClassGuid,              0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 10);    // DEVPROP_TYPE_GUID\nDEFINE_PROPERTYKEY(PKEY_Device_Driver,                 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 11);    // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_ConfigFlags,            0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 12);    // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_Manufacturer,           0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 13);    // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_FriendlyName,           0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 14);    // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_LocationInfo,           0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 15);    // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_PDOName,                0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 16);    // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_Capabilities,           0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 17);    // DEVPROP_TYPE_UNINT32\nDEFINE_PROPERTYKEY(PKEY_Device_UINumber,               0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 18);    // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_UpperFilters,           0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 19);    // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_Device_LowerFilters,           0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 20);    // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_Device_BusTypeGuid,            0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 21);    // DEVPROP_TYPE_GUID\nDEFINE_PROPERTYKEY(PKEY_Device_LegacyBusType,          0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 22);    // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_BusNumber,              0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 23);    // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_EnumeratorName,         0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 24);    // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_Security,               0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 25);    // DEVPROP_TYPE_SECURITY_DESCRIPTOR\nDEFINE_PROPERTYKEY(PKEY_Device_SecuritySDS,            0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 26);    // DEVPROP_TYPE_SECURITY_DESCRIPTOR_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_DevType,                0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 27);    // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_Exclusive,              0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 28);    // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_Characteristics,        0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 29);    // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_Address,                0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 30);    // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_UINumberDescFormat,     0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 31);    // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_PowerData,              0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 32);    // DEVPROP_TYPE_BINARY\nDEFINE_PROPERTYKEY(PKEY_Device_RemovalPolicy,          0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 33);    // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_RemovalPolicyDefault,   0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 34);    // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_RemovalPolicyOverride,  0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 35);    // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_InstallState,           0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 36);    // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_LocationPaths,          0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 37);    // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_Device_BaseContainerId,        0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 38);    // DEVPROP_TYPE_GUID\n\n//\n// Device properties\n// These PKEYs correspond to a device's status and problem code\n//\nDEFINE_PROPERTYKEY(PKEY_Device_DevNodeStatus,          0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 2);     // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_ProblemCode,            0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 3);     // DEVPROP_TYPE_UINT32\n\n//\n// Device properties\n// These PKEYs correspond to device relations\n//\nDEFINE_PROPERTYKEY(PKEY_Device_EjectionRelations,      0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 4);     // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_Device_RemovalRelations,       0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 5);     // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_Device_PowerRelations,         0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 6);     // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_Device_BusRelations,           0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 7);     // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_Device_Parent,                 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 8);     // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_Children,               0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 9);     // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_Device_Siblings,               0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 10);    // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_Device_TransportRelations,     0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 11);    // DEVPROP_TYPE_STRING_LIST\n\n//\n// Other Device properties\n//\nDEFINE_PROPERTYKEY(PKEY_Device_Reported,               0x80497100, 0x8c73, 0x48b9, 0xaa, 0xd9, 0xce, 0x38, 0x7e, 0x19, 0xc5, 0x6e, 2);     // DEVPROP_TYPE_BOOLEAN\nDEFINE_PROPERTYKEY(PKEY_Device_Legacy,                 0x80497100, 0x8c73, 0x48b9, 0xaa, 0xd9, 0xce, 0x38, 0x7e, 0x19, 0xc5, 0x6e, 3);     // DEVPROP_TYPE_BOOLEAN\nDEFINE_PROPERTYKEY(PKEY_Device_InstanceId,             0x78c34fc8, 0x104a, 0x4aca, 0x9e, 0xa4, 0x52, 0x4d, 0x52, 0x99, 0x6e, 0x57, 256);   // DEVPROP_TYPE_STRING\n\nDEFINE_PROPERTYKEY(PKEY_Device_ContainerId,            0x8c7ed206, 0x3f8a, 0x4827, 0xb3, 0xab, 0xae, 0x9e, 0x1f, 0xae, 0xfc, 0x6c, 2);     // DEVPROP_TYPE_GUID\n\nDEFINE_PROPERTYKEY(PKEY_Device_ModelId,                0x80d81ea6, 0x7473, 0x4b0c, 0x82, 0x16, 0xef, 0xc1, 0x1a, 0x2c, 0x4c, 0x8b, 2);     // DEVPROP_TYPE_GUID\n\nDEFINE_PROPERTYKEY(PKEY_Device_FriendlyNameAttributes, 0x80d81ea6, 0x7473, 0x4b0c, 0x82, 0x16, 0xef, 0xc1, 0x1a, 0x2c, 0x4c, 0x8b, 3);     // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_ManufacturerAttributes, 0x80d81ea6, 0x7473, 0x4b0c, 0x82, 0x16, 0xef, 0xc1, 0x1a, 0x2c, 0x4c, 0x8b, 4);     // DEVPROP_TYPE_UINT32\n\nDEFINE_PROPERTYKEY(PKEY_Device_PresenceNotForDevice,   0x80d81ea6, 0x7473, 0x4b0c, 0x82, 0x16, 0xef, 0xc1, 0x1a, 0x2c, 0x4c, 0x8b, 5);     // DEVPROP_TYPE_BOOLEAN\n\n\nDEFINE_PROPERTYKEY(PKEY_Numa_Proximity_Domain,         0x540b947e, 0x8b40, 0x45bc, 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 1);     // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_DHP_Rebalance_Policy,   0x540b947e, 0x8b40, 0x45bc, 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 2);     // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_Numa_Node,              0x540b947e, 0x8b40, 0x45bc, 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 3);     // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_BusReportedDeviceDesc,  0x540b947e, 0x8b40, 0x45bc, 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 4);     // DEVPROP_TYPE_STRING\n\nDEFINE_PROPERTYKEY(PKEY_Device_InstallInProgress,      0x83da6326, 0x97a6, 0x4088, 0x94, 0x53, 0xa1, 0x92, 0x3f, 0x57, 0x3b, 0x29, 9);     // DEVPROP_TYPE_BOOLEAN\n\n//\n// Device driver properties\n//\nDEFINE_PROPERTYKEY(PKEY_Device_DriverDate,             0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 2);      // DEVPROP_TYPE_FILETIME\nDEFINE_PROPERTYKEY(PKEY_Device_DriverVersion,          0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 3);      // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_DriverDesc,             0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 4);      // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_DriverInfPath,          0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 5);      // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_DriverInfSection,       0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 6);      // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_DriverInfSectionExt,    0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 7);      // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_MatchingDeviceId,       0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 8);      // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_DriverProvider,         0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 9);      // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_DriverPropPageProvider, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 10);     // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_DriverCoInstallers,     0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 11);     // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_Device_ResourcePickerTags,     0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 12);     // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_ResourcePickerExceptions, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 13); // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_Device_DriverRank,             0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 14);     // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_DriverLogoLevel,        0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 15);     // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_Device_NoConnectSound,         0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 17);     // DEVPROP_TYPE_BOOLEAN\nDEFINE_PROPERTYKEY(PKEY_Device_GenericDriverInstalled, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 18);     // DEVPROP_TYPE_BOOLEAN\nDEFINE_PROPERTYKEY(PKEY_Device_AdditionalSoftwareRequested, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 19);// DEVPROP_TYPE_BOOLEAN\n\n//\n// Device safe-removal properties\n//\nDEFINE_PROPERTYKEY(PKEY_Device_SafeRemovalRequired,    0xafd97640,  0x86a3, 0x4210, 0xb6, 0x7c, 0x28, 0x9c, 0x41, 0xaa, 0xbe, 0x55, 2);    // DEVPROP_TYPE_BOOLEAN\nDEFINE_PROPERTYKEY(PKEY_Device_SafeRemovalRequiredOverride, 0xafd97640,  0x86a3, 0x4210, 0xb6, 0x7c, 0x28, 0x9c, 0x41, 0xaa, 0xbe, 0x55, 3);// DEVPROP_TYPE_BOOLEAN\n\n\n//\n// Device properties that were set by the driver package that was installed\n// on the device.\n//\nDEFINE_PROPERTYKEY(PKEY_DrvPkg_Model,                  0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 2);     // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_DrvPkg_VendorWebSite,          0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 3);     // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_DrvPkg_DetailedDescription,    0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 4);     // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_DrvPkg_DocumentationLink,      0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 5);     // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_DrvPkg_Icon,                   0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 6);     // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_DrvPkg_BrandingIcon,           0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 7);     // DEVPROP_TYPE_STRING_LIST\n\n//\n// Device setup class properties\n// These PKEYs correspond to the old setupapi SPCRP_XXX properties\n//\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_UpperFilters,      0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 19);    // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_LowerFilters,      0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 20);    // DEVPROP_TYPE_STRING_LIST\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_Security,          0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 25);    // DEVPROP_TYPE_SECURITY_DESCRIPTOR\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_SecuritySDS,       0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 26);    // DEVPROP_TYPE_SECURITY_DESCRIPTOR_STRING\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_DevType,           0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 27);    // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_Exclusive,         0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 28);    // DEVPROP_TYPE_UINT32\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_Characteristics,   0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 29);    // DEVPROP_TYPE_UINT32\n\n//\n// Device setup class properties\n// These PKEYs correspond to registry values under the device class GUID key\n//\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_Name,              0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 2);  // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_ClassName,         0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 3);  // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_Icon,              0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 4);  // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_ClassInstaller,    0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 5);  // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_PropPageProvider,  0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 6);  // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_NoInstallClass,    0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 7);  // DEVPROP_TYPE_BOOLEAN\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_NoDisplayClass,    0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 8);  // DEVPROP_TYPE_BOOLEAN\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_SilentInstall,     0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 9);  // DEVPROP_TYPE_BOOLEAN\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_NoUseClass,        0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 10); // DEVPROP_TYPE_BOOLEAN\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_DefaultService,    0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 11); // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_IconPath,          0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 12); // DEVPROP_TYPE_STRING_LIST\n\n//\n// Other Device setup class properties\n//\nDEFINE_PROPERTYKEY(PKEY_DeviceClass_ClassCoInstallers, 0x713d1703, 0xa2e2, 0x49f5, 0x92, 0x14, 0x56, 0x47, 0x2e, 0xf3, 0xda, 0x5c, 2); // DEVPROP_TYPE_STRING_LIST\n\n//\n// Device interface properties\n//\nDEFINE_PROPERTYKEY(PKEY_DeviceInterface_FriendlyName,  0x026e516e, 0xb814, 0x414b, 0x83, 0xcd, 0x85, 0x6d, 0x6f, 0xef, 0x48, 0x22, 2); // DEVPROP_TYPE_STRING\nDEFINE_PROPERTYKEY(PKEY_DeviceInterface_Enabled,       0x026e516e, 0xb814, 0x414b, 0x83, 0xcd, 0x85, 0x6d, 0x6f, 0xef, 0x48, 0x22, 3); // DEVPROP_TYPE_BOOLEAN\nDEFINE_PROPERTYKEY(PKEY_DeviceInterface_ClassGuid,     0x026e516e, 0xb814, 0x414b, 0x83, 0xcd, 0x85, 0x6d, 0x6f, 0xef, 0x48, 0x22, 4); // DEVPROP_TYPE_GUID\n\n//\n// Device interface class properties\n//\nDEFINE_PROPERTYKEY(PKEY_DeviceInterfaceClass_DefaultInterface,  0x14c83a99, 0x0b3f, 0x44b7, 0xbe, 0x4c, 0xa1, 0x78, 0xd3, 0x99, 0x05, 0x64, 2); // DEVPROP_TYPE_STRING\n\n\n\n\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/ginclude.h",
    "content": "#ifndef __gInclude__\r\n#define __gInclude__\r\n\r\n#if SGI \r\n\t#undef BEOS \r\n\t#undef MAC \r\n\t#undef WINDOWS\r\n\t//\r\n\t#define ASIO_BIG_ENDIAN 1\r\n\t#define ASIO_CPU_MIPS 1\r\n#elif defined WIN32\r\n\t#undef BEOS \r\n\t#undef MAC \r\n\t#undef SGI\r\n\t#define WINDOWS 1\r\n\t#define ASIO_LITTLE_ENDIAN 1\r\n\t#define ASIO_CPU_X86 1\r\n#elif BEOS\r\n\t#undef MAC \r\n\t#undef SGI\r\n\t#undef WINDOWS\r\n\t#define ASIO_LITTLE_ENDIAN 1\r\n\t#define ASIO_CPU_X86 1\r\n\t//\r\n#else\r\n\t#define MAC 1\r\n\t#undef BEOS \r\n\t#undef WINDOWS\r\n\t#undef SGI\r\n\t#define ASIO_BIG_ENDIAN 1\r\n\t#define ASIO_CPU_PPC 1\r\n#endif\r\n\r\n// always\r\n#define NATIVE_INT64 0\r\n#define IEEE754_64FLOAT 1\r\n\r\n#endif\t// __gInclude__\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/iasiodrv.h",
    "content": "#include \"asiosys.h\"\r\n#include \"asio.h\"\r\n\r\n/* Forward Declarations */ \r\n\r\n#ifndef __ASIODRIVER_FWD_DEFINED__\r\n#define __ASIODRIVER_FWD_DEFINED__\r\ntypedef interface IASIO IASIO;\r\n#endif \t/* __ASIODRIVER_FWD_DEFINED__ */\r\n\r\ninterface IASIO : public IUnknown\r\n{\r\n\r\n\tvirtual ASIOBool init(void *sysHandle) = 0;\r\n\tvirtual void getDriverName(char *name) = 0;\t\r\n\tvirtual long getDriverVersion() = 0;\r\n\tvirtual void getErrorMessage(char *string) = 0;\t\r\n\tvirtual ASIOError start() = 0;\r\n\tvirtual ASIOError stop() = 0;\r\n\tvirtual ASIOError getChannels(long *numInputChannels, long *numOutputChannels) = 0;\r\n\tvirtual ASIOError getLatencies(long *inputLatency, long *outputLatency) = 0;\r\n\tvirtual ASIOError getBufferSize(long *minSize, long *maxSize,\r\n\t\tlong *preferredSize, long *granularity) = 0;\r\n\tvirtual ASIOError canSampleRate(ASIOSampleRate sampleRate) = 0;\r\n\tvirtual ASIOError getSampleRate(ASIOSampleRate *sampleRate) = 0;\r\n\tvirtual ASIOError setSampleRate(ASIOSampleRate sampleRate) = 0;\r\n\tvirtual ASIOError getClockSources(ASIOClockSource *clocks, long *numSources) = 0;\r\n\tvirtual ASIOError setClockSource(long reference) = 0;\r\n\tvirtual ASIOError getSamplePosition(ASIOSamples *sPos, ASIOTimeStamp *tStamp) = 0;\r\n\tvirtual ASIOError getChannelInfo(ASIOChannelInfo *info) = 0;\r\n\tvirtual ASIOError createBuffers(ASIOBufferInfo *bufferInfos, long numChannels,\r\n\t\tlong bufferSize, ASIOCallbacks *callbacks) = 0;\r\n\tvirtual ASIOError disposeBuffers() = 0;\r\n\tvirtual ASIOError controlPanel() = 0;\r\n\tvirtual ASIOError future(long selector,void *opt) = 0;\r\n\tvirtual ASIOError outputReady() = 0;\r\n};\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/iasiothiscallresolver.cpp",
    "content": "/*\n\tIASIOThiscallResolver.cpp see the comments in iasiothiscallresolver.h for\n    the top level description - this comment describes the technical details of\n    the implementation.\n\n    The latest version of this file is available from:\n    http://www.audiomulch.com/~rossb/code/calliasio\n\n    please email comments to Ross Bencina <rossb@audiomulch.com>\n\n    BACKGROUND\n\n    The IASIO interface declared in the Steinberg ASIO 2 SDK declares\n    functions with no explicit calling convention. This causes MSVC++ to default\n    to using the thiscall convention, which is a proprietary convention not\n    implemented by some non-microsoft compilers - notably borland BCC,\n    C++Builder, and gcc. MSVC++ is the defacto standard compiler used by\n    Steinberg. As a result of this situation, the ASIO sdk will compile with\n    any compiler, however attempting to execute the compiled code will cause a\n    crash due to different default calling conventions on non-Microsoft\n    compilers.\n\n    IASIOThiscallResolver solves the problem by providing an adapter class that\n    delegates to the IASIO interface using the correct calling convention\n    (thiscall). Due to the lack of support for thiscall in the Borland and GCC\n    compilers, the calls have been implemented in assembly language.\n\n    A number of macros are defined for thiscall function calls with different\n    numbers of parameters, with and without return values - it may be possible\n    to modify the format of these macros to make them work with other inline\n    assemblers.\n\n\n    THISCALL DEFINITION\n\n    A number of definitions of the thiscall calling convention are floating\n    around the internet. The following definition has been validated against\n    output from the MSVC++ compiler:\n\n    For non-vararg functions, thiscall works as follows: the object (this)\n    pointer is passed in ECX. All arguments are passed on the stack in\n    right to left order. The return value is placed in EAX. The callee\n    clears the passed arguments from the stack.\n\n\n    FINDING FUNCTION POINTERS FROM AN IASIO POINTER\n\n    The first field of a COM object is a pointer to its vtble. Thus a pointer\n    to an object implementing the IASIO interface also points to a pointer to\n    that object's vtbl. The vtble is a table of function pointers for all of\n    the virtual functions exposed by the implemented interfaces.\n\n    If we consider a variable declared as a pointer to IASO:\n\n    IASIO *theAsioDriver\n\n    theAsioDriver points to:\n\n    object implementing IASIO\n    {\n        IASIOvtbl *vtbl\n        other data\n    }\n\n    in other words, theAsioDriver points to a pointer to an IASIOvtbl\n\n    vtbl points to a table of function pointers:\n\n    IASIOvtbl ( interface IASIO : public IUnknown )\n    {\n    (IUnknown functions)\n    0   virtual HRESULT STDMETHODCALLTYPE (*QueryInterface)(REFIID riid, void **ppv) = 0;\n    4   virtual ULONG STDMETHODCALLTYPE (*AddRef)() = 0;\n    8   virtual ULONG STDMETHODCALLTYPE (*Release)() = 0;      \n\n    (IASIO functions)\n    12\tvirtual ASIOBool (*init)(void *sysHandle) = 0;\n    16\tvirtual void (*getDriverName)(char *name) = 0;\n    20\tvirtual long (*getDriverVersion)() = 0;\n    24\tvirtual void (*getErrorMessage)(char *string) = 0;\n    28\tvirtual ASIOError (*start)() = 0;\n    32\tvirtual ASIOError (*stop)() = 0;\n    36\tvirtual ASIOError (*getChannels)(long *numInputChannels, long *numOutputChannels) = 0;\n    40\tvirtual ASIOError (*getLatencies)(long *inputLatency, long *outputLatency) = 0;\n    44\tvirtual ASIOError (*getBufferSize)(long *minSize, long *maxSize,\n            long *preferredSize, long *granularity) = 0;\n    48\tvirtual ASIOError (*canSampleRate)(ASIOSampleRate sampleRate) = 0;\n    52\tvirtual ASIOError (*getSampleRate)(ASIOSampleRate *sampleRate) = 0;\n    56\tvirtual ASIOError (*setSampleRate)(ASIOSampleRate sampleRate) = 0;\n    60\tvirtual ASIOError (*getClockSources)(ASIOClockSource *clocks, long *numSources) = 0;\n    64\tvirtual ASIOError (*setClockSource)(long reference) = 0;\n    68\tvirtual ASIOError (*getSamplePosition)(ASIOSamples *sPos, ASIOTimeStamp *tStamp) = 0;\n    72\tvirtual ASIOError (*getChannelInfo)(ASIOChannelInfo *info) = 0;\n    76\tvirtual ASIOError (*createBuffers)(ASIOBufferInfo *bufferInfos, long numChannels,\n            long bufferSize, ASIOCallbacks *callbacks) = 0;\n    80\tvirtual ASIOError (*disposeBuffers)() = 0;\n    84\tvirtual ASIOError (*controlPanel)() = 0;\n    88\tvirtual ASIOError (*future)(long selector,void *opt) = 0;\n    92\tvirtual ASIOError (*outputReady)() = 0;\n    };\n\n    The numbers in the left column show the byte offset of each function ptr\n    from the beginning of the vtbl. These numbers are used in the code below\n    to select different functions.\n\n    In order to find the address of a particular function, theAsioDriver\n    must first be dereferenced to find the value of the vtbl pointer:\n\n    mov     eax, theAsioDriver\n    mov     edx, [theAsioDriver]  // edx now points to vtbl[0]\n\n    Then an offset must be added to the vtbl pointer to select a\n    particular function, for example vtbl+44 points to the slot containing\n    a pointer to the getBufferSize function.\n\n    Finally vtbl+x must be dereferenced to obtain the value of the function\n    pointer stored in that address:\n\n    call    [edx+44]    // call the function pointed to by\n                        // the value in the getBufferSize field of the vtbl\n\n\n    SEE ALSO\n\n    Martin Fay's OpenASIO DLL at http://www.martinfay.com solves the same\n    problem by providing a new COM interface which wraps IASIO with an\n    interface that uses portable calling conventions. OpenASIO must be compiled\n    with MSVC, and requires that you ship the OpenASIO DLL with your\n    application.\n\n    \n    ACKNOWLEDGEMENTS\n\n    Ross Bencina: worked out the thiscall details above, wrote the original\n    Borland asm macros, and a patch for asio.cpp (which is no longer needed).\n    Thanks to Martin Fay for introducing me to the issues discussed here,\n    and to Rene G. Ceballos for assisting with asm dumps from MSVC++.\n\n    Antti Silvast: converted the original calliasio to work with gcc and NASM\n    by implementing the asm code in a separate file.\n\n\tFraser Adams: modified the original calliasio containing the Borland inline\n    asm to add inline asm for gcc i.e. Intel syntax for Borland and AT&T syntax\n    for gcc. This seems a neater approach for gcc than to have a separate .asm\n    file and it means that we only need one version of the thiscall patch.\n\n    Fraser Adams: rewrote the original calliasio patch in the form of the\n    IASIOThiscallResolver class in order to avoid modifications to files from\n    the Steinberg SDK, which may have had potential licence issues.\n\n    Andrew Baldwin: contributed fixes for compatibility problems with more\n    recent versions of the gcc assembler.\n*/\n\n\n// We only need IASIOThiscallResolver at all if we are on Win32. For other\n// platforms we simply bypass the IASIOThiscallResolver definition to allow us\n// to be safely #include'd whatever the platform to keep client code portable\n#if (defined(WIN32) || defined(_WIN32) || defined(__WIN32__)) && !defined(_WIN64)\n\n\n// If microsoft compiler we can call IASIO directly so IASIOThiscallResolver\n// is not used.\n#if !defined(_MSC_VER)\n\n\n#include <new>\n#include <assert.h>\n\n// We have a mechanism in iasiothiscallresolver.h to ensure that asio.h is\n// #include'd before it in client code, we do NOT want to do this test here.\n#define iasiothiscallresolver_sourcefile 1\n#include \"iasiothiscallresolver.h\"\n#undef iasiothiscallresolver_sourcefile\n\n// iasiothiscallresolver.h redefines ASIOInit for clients, but we don't want\n// this macro defined in this translation unit.\n#undef ASIOInit\n\n\n// theAsioDriver is a global pointer to the current IASIO instance which the\n// ASIO SDK uses to perform all actions on the IASIO interface. We substitute\n// our own forwarding interface into this pointer.\nextern IASIO* theAsioDriver;\n\n\n// The following macros define the inline assembler for BORLAND first then gcc\n\n#if defined(__BCPLUSPLUS__) || defined(__BORLANDC__)          \n\n\n#define CALL_THISCALL_0( resultName, thisPtr, funcOffset )\\\n    void *this_ = (thisPtr);                                                \\\n    __asm {                                                                 \\\n        mov     ecx, this_            ;                                     \\\n        mov     eax, [ecx]            ;                                     \\\n        call    [eax+funcOffset]      ;                                     \\\n        mov     resultName, eax       ;                                     \\\n    }\n\n\n#define CALL_VOID_THISCALL_1( thisPtr, funcOffset, param1 )\\\n    void *this_ = (thisPtr);                                                \\\n    __asm {                                                                 \\\n        mov     eax, param1           ;                                     \\\n        push    eax                   ;                                     \\\n        mov     ecx, this_            ;                                     \\\n        mov     eax, [ecx]            ;                                     \\\n        call    [eax+funcOffset]      ;                                     \\\n    }\n\n\n#define CALL_THISCALL_1( resultName, thisPtr, funcOffset, param1 )\\\n    void *this_ = (thisPtr);                                                \\\n    __asm {                                                                 \\\n        mov     eax, param1           ;                                     \\\n        push    eax                   ;                                     \\\n        mov     ecx, this_            ;                                     \\\n        mov     eax, [ecx]            ;                                     \\\n        call    [eax+funcOffset]      ;                                     \\\n        mov     resultName, eax       ;                                     \\\n    }\n\n\n#define CALL_THISCALL_1_DOUBLE( resultName, thisPtr, funcOffset, param1 )\\\n    void *this_ = (thisPtr);                                                \\\n    void *doubleParamPtr_ (&param1);                                        \\\n    __asm {                                                                 \\\n        mov     eax, doubleParamPtr_  ;                                     \\\n        push    [eax+4]               ;                                     \\\n        push    [eax]                 ;                                     \\\n        mov     ecx, this_            ;                                     \\\n        mov     eax, [ecx]            ;                                     \\\n        call    [eax+funcOffset]      ;                                     \\\n        mov     resultName, eax       ;                                     \\\n    }\n\n\n#define CALL_THISCALL_2( resultName, thisPtr, funcOffset, param1, param2 )\\\n    void *this_ = (thisPtr);                                                \\\n    __asm {                                                                 \\\n        mov     eax, param2           ;                                     \\\n        push    eax                   ;                                     \\\n        mov     eax, param1           ;                                     \\\n        push    eax                   ;                                     \\\n        mov     ecx, this_            ;                                     \\\n        mov     eax, [ecx]            ;                                     \\\n        call    [eax+funcOffset]      ;                                     \\\n        mov     resultName, eax       ;                                     \\\n    }\n\n\n#define CALL_THISCALL_4( resultName, thisPtr, funcOffset, param1, param2, param3, param4 )\\\n    void *this_ = (thisPtr);                                                \\\n    __asm {                                                                 \\\n        mov     eax, param4           ;                                     \\\n        push    eax                   ;                                     \\\n        mov     eax, param3           ;                                     \\\n        push    eax                   ;                                     \\\n        mov     eax, param2           ;                                     \\\n        push    eax                   ;                                     \\\n        mov     eax, param1           ;                                     \\\n        push    eax                   ;                                     \\\n        mov     ecx, this_            ;                                     \\\n        mov     eax, [ecx]            ;                                     \\\n        call    [eax+funcOffset]      ;                                     \\\n        mov     resultName, eax       ;                                     \\\n    }\n\n\n#elif defined(__GNUC__)\n\n\n#define CALL_THISCALL_0( resultName, thisPtr, funcOffset )                  \\\n    __asm__ __volatile__ (\"movl (%1), %%edx\\n\\t\"                            \\\n                          \"call *\"#funcOffset\"(%%edx)\\n\\t\"                  \\\n                          :\"=a\"(resultName) /* Output Operands */           \\\n                          :\"c\"(thisPtr)     /* Input Operands */            \\\n                          : \"%edx\" /* Clobbered Registers */                \\\n                         );                                                 \\\n\n\n#define CALL_VOID_THISCALL_1( thisPtr, funcOffset, param1 )                 \\\n    __asm__ __volatile__ (\"pushl %0\\n\\t\"                                    \\\n                          \"movl (%1), %%edx\\n\\t\"                            \\\n                          \"call *\"#funcOffset\"(%%edx)\\n\\t\"                  \\\n                          :                 /* Output Operands */           \\\n                          :\"r\"(param1),     /* Input Operands */            \\\n                           \"c\"(thisPtr)                                     \\\n                          : \"%edx\" /* Clobbered Registers */                \\\n                         );                                                 \\\n\n\n#define CALL_THISCALL_1( resultName, thisPtr, funcOffset, param1 )          \\\n    __asm__ __volatile__ (\"pushl %1\\n\\t\"                                    \\\n                          \"movl (%2), %%edx\\n\\t\"                            \\\n                          \"call *\"#funcOffset\"(%%edx)\\n\\t\"                  \\\n                          :\"=a\"(resultName) /* Output Operands */           \\\n                          :\"r\"(param1),     /* Input Operands */            \\\n                           \"c\"(thisPtr)                                     \\\n                          : \"%edx\" /* Clobbered Registers */                \\\n                          );                                                \\\n\n\n#define CALL_THISCALL_1_DOUBLE( resultName, thisPtr, funcOffset, param1 )   \\\n    do {                                                                    \\\n    double param1f64 = param1; /* Cast explicitly to double */              \\\n    double *param1f64Ptr = &param1f64; /* Make pointer to address */        \\\n     __asm__ __volatile__ (\"pushl 4(%1)\\n\\t\"                                \\\n                           \"pushl (%1)\\n\\t\"                                 \\\n                           \"movl (%2), %%edx\\n\\t\"                           \\\n                           \"call *\"#funcOffset\"(%%edx);\\n\\t\"                \\\n                           : \"=a\"(resultName) /* Output Operands */         \\\n                           : \"r\"(param1f64Ptr),  /* Input Operands */       \\\n                           \"c\"(thisPtr),                                    \\\n                           \"m\"(*param1f64Ptr) /* Using address */           \\\n                           : \"%edx\" /* Clobbered Registers */               \\\n                           );                                               \\\n    } while (0);                                                            \\\n\n\n#define CALL_THISCALL_2( resultName, thisPtr, funcOffset, param1, param2 )  \\\n    __asm__ __volatile__ (\"pushl %1\\n\\t\"                                    \\\n                          \"pushl %2\\n\\t\"                                    \\\n                          \"movl (%3), %%edx\\n\\t\"                            \\\n                          \"call *\"#funcOffset\"(%%edx)\\n\\t\"                  \\\n                          :\"=a\"(resultName) /* Output Operands */           \\\n                          :\"r\"(param2),     /* Input Operands */            \\\n                           \"r\"(param1),                                     \\\n                           \"c\"(thisPtr)                                     \\\n                          : \"%edx\" /* Clobbered Registers */                \\\n                          );                                                \\\n\n\n#define CALL_THISCALL_4( resultName, thisPtr, funcOffset, param1, param2, param3, param4 )\\\n    __asm__ __volatile__ (\"pushl %1\\n\\t\"                                    \\\n                          \"pushl %2\\n\\t\"                                    \\\n                          \"pushl %3\\n\\t\"                                    \\\n                          \"pushl %4\\n\\t\"                                    \\\n                          \"movl (%5), %%edx\\n\\t\"                            \\\n                          \"call *\"#funcOffset\"(%%edx)\\n\\t\"                  \\\n                          :\"=a\"(resultName) /* Output Operands */           \\\n                          :\"r\"(param4),     /* Input Operands  */           \\\n                           \"r\"(param3),                                     \\\n                           \"r\"(param2),                                     \\\n                           \"r\"(param1),                                     \\\n                           \"c\"(thisPtr)                                     \\\n                          : \"%edx\" /* Clobbered Registers */                \\\n                          );                                                \\\n\n#endif\n\n\n\n// Our static singleton instance.\nIASIOThiscallResolver IASIOThiscallResolver::instance;\n\n// Constructor called to initialize static Singleton instance above. Note that\n// it is important not to clear that_ incase it has already been set by the call\n// to placement new in ASIOInit().\nIASIOThiscallResolver::IASIOThiscallResolver()\n{\n}\n\n// Constructor called from ASIOInit() below\nIASIOThiscallResolver::IASIOThiscallResolver(IASIO* that)\n: that_( that )\n{\n}\n\n// Implement IUnknown methods as assert(false). IASIOThiscallResolver is not\n// really a COM object, just a wrapper which will work with the ASIO SDK.\n// If you wanted to use ASIO without the SDK you might want to implement COM\n// aggregation in these methods.\nHRESULT STDMETHODCALLTYPE IASIOThiscallResolver::QueryInterface(REFIID riid, void **ppv)\n{\n    (void)riid;     // suppress unused variable warning\n\n    assert( false ); // this function should never be called by the ASIO SDK.\n\n    *ppv = NULL;\n    return E_NOINTERFACE;\n}\n\nULONG STDMETHODCALLTYPE IASIOThiscallResolver::AddRef()\n{\n    assert( false ); // this function should never be called by the ASIO SDK.\n\n    return 1;\n}\n\nULONG STDMETHODCALLTYPE IASIOThiscallResolver::Release()\n{\n    assert( false ); // this function should never be called by the ASIO SDK.\n    \n    return 1;\n}\n\n\n// Implement the IASIO interface methods by performing the vptr manipulation\n// described above then delegating to the real implementation.\nASIOBool IASIOThiscallResolver::init(void *sysHandle)\n{\n    ASIOBool result;\n    CALL_THISCALL_1( result, that_, 12, sysHandle );\n    return result;\n}\n\nvoid IASIOThiscallResolver::getDriverName(char *name)\n{\n    CALL_VOID_THISCALL_1( that_, 16, name );\n}\n\nlong IASIOThiscallResolver::getDriverVersion()\n{\n    ASIOBool result;\n    CALL_THISCALL_0( result, that_, 20 );\n    return result;\n}\n\nvoid IASIOThiscallResolver::getErrorMessage(char *string)\n{\n     CALL_VOID_THISCALL_1( that_, 24, string );\n}\n\nASIOError IASIOThiscallResolver::start()\n{\n    ASIOBool result;\n    CALL_THISCALL_0( result, that_, 28 );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::stop()\n{\n    ASIOBool result;\n    CALL_THISCALL_0( result, that_, 32 );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::getChannels(long *numInputChannels, long *numOutputChannels)\n{\n    ASIOBool result;\n    CALL_THISCALL_2( result, that_, 36, numInputChannels, numOutputChannels );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::getLatencies(long *inputLatency, long *outputLatency)\n{\n    ASIOBool result;\n    CALL_THISCALL_2( result, that_, 40, inputLatency, outputLatency );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::getBufferSize(long *minSize, long *maxSize,\n        long *preferredSize, long *granularity)\n{\n    ASIOBool result;\n    CALL_THISCALL_4( result, that_, 44, minSize, maxSize, preferredSize, granularity );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::canSampleRate(ASIOSampleRate sampleRate)\n{\n    ASIOBool result;\n    CALL_THISCALL_1_DOUBLE( result, that_, 48, sampleRate );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::getSampleRate(ASIOSampleRate *sampleRate)\n{\n    ASIOBool result;\n    CALL_THISCALL_1( result, that_, 52, sampleRate );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::setSampleRate(ASIOSampleRate sampleRate)\n{    \n    ASIOBool result;\n    CALL_THISCALL_1_DOUBLE( result, that_, 56, sampleRate );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::getClockSources(ASIOClockSource *clocks, long *numSources)\n{\n    ASIOBool result;\n    CALL_THISCALL_2( result, that_, 60, clocks, numSources );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::setClockSource(long reference)\n{\n    ASIOBool result;\n    CALL_THISCALL_1( result, that_, 64, reference );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::getSamplePosition(ASIOSamples *sPos, ASIOTimeStamp *tStamp)\n{\n    ASIOBool result;\n    CALL_THISCALL_2( result, that_, 68, sPos, tStamp );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::getChannelInfo(ASIOChannelInfo *info)\n{\n    ASIOBool result;\n    CALL_THISCALL_1( result, that_, 72, info );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::createBuffers(ASIOBufferInfo *bufferInfos,\n        long numChannels, long bufferSize, ASIOCallbacks *callbacks)\n{\n    ASIOBool result;\n    CALL_THISCALL_4( result, that_, 76, bufferInfos, numChannels, bufferSize, callbacks );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::disposeBuffers()\n{\n    ASIOBool result;\n    CALL_THISCALL_0( result, that_, 80 );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::controlPanel()\n{\n    ASIOBool result;\n    CALL_THISCALL_0( result, that_, 84 );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::future(long selector,void *opt)\n{\n    ASIOBool result;\n    CALL_THISCALL_2( result, that_, 88, selector, opt );\n    return result;\n}\n\nASIOError IASIOThiscallResolver::outputReady()\n{\n    ASIOBool result;\n    CALL_THISCALL_0( result, that_, 92 );\n    return result;\n}\n\n\n// Implement our substitute ASIOInit() method\nASIOError IASIOThiscallResolver::ASIOInit(ASIODriverInfo *info)\n{\n    // To ensure that our instance's vptr is correctly constructed, even if\n    // ASIOInit is called prior to main(), we explicitly call its constructor\n    // (potentially over the top of an existing instance). Note that this is\n    // pretty ugly, and is only safe because IASIOThiscallResolver has no\n    // destructor and contains no objects with destructors.\n    new((void*)&instance) IASIOThiscallResolver( theAsioDriver );\n\n    // Interpose between ASIO client code and the real driver.\n    theAsioDriver = &instance;\n\n    // Note that we never need to switch theAsioDriver back to point to the\n    // real driver because theAsioDriver is reset to zero in ASIOExit().\n\n    // Delegate to the real ASIOInit\n\treturn ::ASIOInit(info);\n}\n\n\n#endif /* !defined(_MSC_VER) */\n\n#endif /* Win32 */\n\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/iasiothiscallresolver.h",
    "content": "// ****************************************************************************\r\n//\r\n// Changed:         I have modified this file slightly (includes) to work  with\r\n//                  RtAudio. RtAudio.cpp must include this file after asio.h.                                                    \r\n//\r\n// File:\t\t\tIASIOThiscallResolver.h\r\n// Description:     The IASIOThiscallResolver class implements the IASIO\r\n//\t\t\t\t\tinterface and acts as a proxy to the real IASIO interface by\r\n//                  calling through its vptr table using the thiscall calling\r\n//                  convention. To put it another way, we interpose\r\n//                  IASIOThiscallResolver between ASIO SDK code and the driver.\r\n//                  This is necessary because most non-Microsoft compilers don't\r\n//                  implement the thiscall calling convention used by IASIO.\r\n//\r\n//\t\t\t\t\tiasiothiscallresolver.cpp contains the background of this\r\n//\t\t\t\t\tproblem plus a technical description of the vptr\r\n//                  manipulations.\r\n//\r\n//\t\t\t\t\tIn order to use this mechanism one simply has to add\r\n//\t\t\t\t\tiasiothiscallresolver.cpp to the list of files to compile\r\n//                  and #include <iasiothiscallresolver.h>\r\n//\r\n//\t\t\t\t\tNote that this #include must come after the other ASIO SDK\r\n//                  #includes, for example:\r\n//\r\n//\t\t\t\t\t#include <windows.h>\r\n//\t\t\t\t\t#include <asiosys.h>\r\n//\t\t\t\t\t#include <asio.h>\r\n//\t\t\t\t\t#include <asiodrivers.h>\r\n//\t\t\t\t\t#include <iasiothiscallresolver.h>\r\n//\r\n//\t\t\t\t\tActually the important thing is to #include\r\n//                  <iasiothiscallresolver.h> after <asio.h>. We have\r\n//                  incorporated a test to enforce this ordering.\r\n//\r\n//\t\t\t\t\tThe code transparently takes care of the interposition by\r\n//                  using macro substitution to intercept calls to ASIOInit()\r\n//                  and ASIOExit(). We save the original ASIO global\r\n//                  \"theAsioDriver\" in our \"that\" variable, and then set\r\n//                  \"theAsioDriver\" to equal our IASIOThiscallResolver instance.\r\n//\r\n// \t\t\t\t\tWhilst this method of resolving the thiscall problem requires\r\n//\t\t\t\t\tthe addition of #include <iasiothiscallresolver.h> to client\r\n//                  code it has the advantage that it does not break the terms\r\n//                  of the ASIO licence by publishing it. We are NOT modifying\r\n//                  any Steinberg code here, we are merely implementing the IASIO\r\n//\t\t\t\t\tinterface in the same way that we would need to do if we\r\n//\t\t\t\t\twished to provide an open source ASIO driver.\r\n//\r\n//\t\t\t\t\tFor compilation with MinGW -lole32 needs to be added to the\r\n//                  linker options. For BORLAND, linking with Import32.lib is\r\n//                  sufficient.\r\n//\r\n//\t\t\t\t\tThe dependencies are with: CoInitialize, CoUninitialize,\r\n//\t\t\t\t\tCoCreateInstance, CLSIDFromString - used by asiolist.cpp\r\n//\t\t\t\t\tand are required on Windows whether ThiscallResolver is used\r\n//\t\t\t\t\tor not.\r\n//\r\n//\t\t\t\t\tSearching for the above strings in the root library path\r\n//\t\t\t\t\tof your compiler should enable the correct libraries to be\r\n//\t\t\t\t\tidentified if they aren't immediately obvious.\r\n//\r\n//                  Note that the current implementation of IASIOThiscallResolver\r\n//                  is not COM compliant - it does not correctly implement the\r\n//                  IUnknown interface. Implementing it is not necessary because\r\n//                  it is not called by parts of the ASIO SDK which call through\r\n//                  theAsioDriver ptr. The IUnknown methods are implemented as\r\n//                  assert(false) to ensure that the code fails if they are\r\n//                  ever called.\r\n// Restrictions:\tNone. Public Domain & Open Source distribute freely\r\n//\t\t\t\t\tYou may use IASIOThiscallResolver commercially as well as\r\n//                  privately.\r\n//\t\t\t\t\tYou the user assume the responsibility for the use of the\r\n//\t\t\t\t\tfiles, binary or text, and there is no guarantee or warranty,\r\n//\t\t\t\t\texpressed or implied, including but not limited to the\r\n//\t\t\t\t\timplied warranties of merchantability and fitness for a\r\n//\t\t\t\t\tparticular purpose. You assume all responsibility and agree\r\n//\t\t\t\t\tto hold no entity, copyright holder or distributors liable\r\n//\t\t\t\t\tfor any loss of data or inaccurate representations of data\r\n//\t\t\t\t\tas a result of using IASIOThiscallResolver.\r\n// Version:         1.4 Added separate macro CALL_THISCALL_1_DOUBLE from\r\n//                  Andrew Baldwin, and volatile for whole gcc asm blocks,\r\n//                  both for compatibility with newer gcc versions. Cleaned up\r\n//                  Borland asm to use one less register.\r\n//                  1.3 Switched to including assert.h for better compatibility.\r\n//                  Wrapped entire .h and .cpp contents with a check for\r\n//                  _MSC_VER to provide better compatibility with MS compilers.\r\n//                  Changed Singleton implementation to use static instance\r\n//                  instead of freestore allocated instance. Removed ASIOExit\r\n//                  macro as it is no longer needed.\r\n//                  1.2 Removed semicolons from ASIOInit and ASIOExit macros to\r\n//                  allow them to be embedded in expressions (if statements).\r\n//                  Cleaned up some comments. Removed combase.c dependency (it\r\n//                  doesn't compile with BCB anyway) by stubbing IUnknown.\r\n//                  1.1 Incorporated comments from Ross Bencina including things\r\n//\t\t\t\t\tsuch as changing name from ThiscallResolver to\r\n//\t\t\t\t\tIASIOThiscallResolver, tidying up the constructor, fixing\r\n//\t\t\t\t\ta bug in IASIOThiscallResolver::ASIOExit() and improving\r\n//\t\t\t\t\tportability through the use of conditional compilation\r\n//\t\t\t\t\t1.0 Initial working version.\r\n// Created:\t\t\t6/09/2003\r\n// Authors:         Fraser Adams\r\n//                  Ross Bencina\r\n//                  Rene G. Ceballos\r\n//                  Martin Fay\r\n//                  Antti Silvast\r\n//                  Andrew Baldwin\r\n//\r\n// ****************************************************************************\r\n\r\n\r\n#ifndef included_iasiothiscallresolver_h\r\n#define included_iasiothiscallresolver_h\r\n\r\n// We only need IASIOThiscallResolver at all if we are on Win32. For other\r\n// platforms we simply bypass the IASIOThiscallResolver definition to allow us\r\n// to be safely #include'd whatever the platform to keep client code portable\r\n//#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__)\r\n#if (defined(WIN32) || defined(_WIN32) || defined(__WIN32__)) && !defined(_WIN64)\r\n\r\n\r\n// If microsoft compiler we can call IASIO directly so IASIOThiscallResolver\r\n// is not used.\r\n#if !defined(_MSC_VER)\r\n\r\n\r\n// The following is in order to ensure that this header is only included after\r\n// the other ASIO headers (except for the case of iasiothiscallresolver.cpp).\r\n// We need to do this because IASIOThiscallResolver works by eclipsing the\r\n// original definition of ASIOInit() with a macro (see below).\r\n#if !defined(iasiothiscallresolver_sourcefile)\r\n\t#if !defined(__ASIO_H)\r\n\t#error iasiothiscallresolver.h must be included AFTER asio.h\r\n\t#endif\r\n#endif\r\n\r\n#include <windows.h>\r\n#include \"iasiodrv.h\" /* From ASIO SDK */\r\n\r\n\r\nclass IASIOThiscallResolver : public IASIO {\r\nprivate:\r\n\tIASIO* that_; // Points to the real IASIO\r\n\r\n\tstatic IASIOThiscallResolver instance; // Singleton instance\r\n\r\n\t// Constructors - declared private so construction is limited to\r\n    // our Singleton instance\r\n    IASIOThiscallResolver();\r\n\tIASIOThiscallResolver(IASIO* that);\r\npublic:\r\n\r\n    // Methods from the IUnknown interface. We don't fully implement IUnknown\r\n    // because the ASIO SDK never calls these methods through theAsioDriver ptr.\r\n    // These methods are implemented as assert(false).\r\n    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void **ppv);\r\n    virtual ULONG STDMETHODCALLTYPE AddRef();\r\n    virtual ULONG STDMETHODCALLTYPE Release();\r\n\r\n    // Methods from the IASIO interface, implemented as forwarning calls to that.\r\n\tvirtual ASIOBool init(void *sysHandle);\r\n\tvirtual void getDriverName(char *name);\r\n\tvirtual long getDriverVersion();\r\n\tvirtual void getErrorMessage(char *string);\r\n\tvirtual ASIOError start();\r\n\tvirtual ASIOError stop();\r\n\tvirtual ASIOError getChannels(long *numInputChannels, long *numOutputChannels);\r\n\tvirtual ASIOError getLatencies(long *inputLatency, long *outputLatency);\r\n\tvirtual ASIOError getBufferSize(long *minSize, long *maxSize, long *preferredSize, long *granularity);\r\n\tvirtual ASIOError canSampleRate(ASIOSampleRate sampleRate);\r\n\tvirtual ASIOError getSampleRate(ASIOSampleRate *sampleRate);\r\n\tvirtual ASIOError setSampleRate(ASIOSampleRate sampleRate);\r\n\tvirtual ASIOError getClockSources(ASIOClockSource *clocks, long *numSources);\r\n\tvirtual ASIOError setClockSource(long reference);\r\n\tvirtual ASIOError getSamplePosition(ASIOSamples *sPos, ASIOTimeStamp *tStamp);\r\n\tvirtual ASIOError getChannelInfo(ASIOChannelInfo *info);\r\n\tvirtual ASIOError createBuffers(ASIOBufferInfo *bufferInfos, long numChannels, long bufferSize, ASIOCallbacks *callbacks);\r\n\tvirtual ASIOError disposeBuffers();\r\n\tvirtual ASIOError controlPanel();\r\n\tvirtual ASIOError future(long selector,void *opt);\r\n\tvirtual ASIOError outputReady();\r\n\r\n    // Class method, see ASIOInit() macro below.\r\n    static ASIOError ASIOInit(ASIODriverInfo *info); // Delegates to ::ASIOInit\r\n};\r\n\r\n\r\n// Replace calls to ASIOInit with our interposing version.\r\n// This macro enables us to perform thiscall resolution simply by #including\r\n// <iasiothiscallresolver.h> after the asio #includes (this file _must_ be\r\n// included _after_ the asio #includes)\r\n\r\n#define ASIOInit(name) IASIOThiscallResolver::ASIOInit((name))\r\n\r\n\r\n#endif /* !defined(_MSC_VER) */\r\n\r\n#endif /* Win32 */\r\n\r\n#endif /* included_iasiothiscallresolver_h */\r\n\r\n\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/include/soundcard.h",
    "content": "/*\n * soundcard.h\n */\n\n/*-\n * Copyright by Hannu Savolainen 1993 / 4Front Technologies 1993-2006\n * Modified for the new FreeBSD sound driver by Luigi Rizzo, 1997\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n *    notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above\n *    copyright notice, this list of conditions and the following\n *    disclaimer in the documentation and/or other materials provided\n *    with the distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS''\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR\n * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\n * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\n * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\n * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n * POSSIBILITY OF SUCH DAMAGE.\n *\n * $FreeBSD: src/sys/sys/soundcard.h,v 1.48 2006/11/26 11:55:48 netchild Exp $\n */\n\n/*\n * Unless coordinating changes with 4Front Technologies, do NOT make any\n * modifications to ioctl commands, types, etc. that would break\n * compatibility with the OSS API.\n */\n\n#ifndef _SYS_SOUNDCARD_H_\n#define _SYS_SOUNDCARD_H_\n /*\n  * If you make modifications to this file, please contact me before\n  * distributing the modified version. There is already enough\n  * diversity in the world.\n  *\n  * Regards,\n  * Hannu Savolainen\n  * hannu@voxware.pp.fi\n  *\n  **********************************************************************\n  * PS.\tThe Hacker's Guide to VoxWare available from\n  *     nic.funet.fi:pub/Linux/ALPHA/sound. The file is\n  *\tsnd-sdk-doc-0.1.ps.gz (gzipped postscript). It contains\n  *\tsome useful information about programming with VoxWare.\n  *\t(NOTE! The pub/Linux/ALPHA/ directories are hidden. You have\n  *\tto cd inside them before the files are accessible.)\n  **********************************************************************\n  */\n\n/*\n * SOUND_VERSION is only used by the voxware driver. Hopefully apps\n * should not depend on it, but rather look at the capabilities\n * of the driver in the kernel!\n */\n#define SOUND_VERSION  301\n#define VOXWARE\t\t/* does this have any use ? */\n\n/*\n * Supported card ID numbers (Should be somewhere else? We keep\n * them here just for compativility with the old driver, but these\n * constants are of little or no use).\n */\n\n#define SNDCARD_ADLIB          1\n#define SNDCARD_SB             2\n#define SNDCARD_PAS            3\n#define SNDCARD_GUS            4\n#define SNDCARD_MPU401         5\n#define SNDCARD_SB16           6\n#define SNDCARD_SB16MIDI       7\n#define SNDCARD_UART6850       8\n#define SNDCARD_GUS16          9\n#define SNDCARD_MSS            10\n#define SNDCARD_PSS            11\n#define SNDCARD_SSCAPE         12\n#define SNDCARD_PSS_MPU        13\n#define SNDCARD_PSS_MSS        14\n#define SNDCARD_SSCAPE_MSS     15\n#define SNDCARD_TRXPRO         16\n#define SNDCARD_TRXPRO_SB      17\n#define SNDCARD_TRXPRO_MPU     18\n#define SNDCARD_MAD16          19\n#define SNDCARD_MAD16_MPU      20\n#define SNDCARD_CS4232         21\n#define SNDCARD_CS4232_MPU     22\n#define SNDCARD_MAUI           23\n#define SNDCARD_PSEUDO_MSS     24\n#define SNDCARD_AWE32          25\n#define SNDCARD_NSS            26\n#define SNDCARD_UART16550      27\n#define SNDCARD_OPL            28\n\n#include <sys/types.h>\n#include <machine/endian.h>\n#ifndef _IOWR\n#include <sys/ioccom.h>\n#endif  /* !_IOWR */\n\n/*\n * The first part of this file contains the new FreeBSD sound ioctl\n * interface. Tries to minimize the number of different ioctls, and\n * to be reasonably general.\n *\n * 970821: some of the new calls have not been implemented yet.\n */\n\n/*\n * the following three calls extend the generic file descriptor\n * interface. AIONWRITE is the dual of FIONREAD, i.e. returns the max\n * number of bytes for a write operation to be non-blocking.\n *\n * AIOGSIZE/AIOSSIZE are used to change the behaviour of the device,\n * from a character device (default) to a block device. In block mode,\n * (not to be confused with blocking mode) the main difference for the\n * application is that select() will return only when a complete\n * block can be read/written to the device, whereas in character mode\n * select will return true when one byte can be exchanged. For audio\n * devices, character mode makes select almost useless since one byte\n * will always be ready by the next sample time (which is often only a\n * handful of microseconds away).\n * Use a size of 0 or 1 to return to character mode.\n */\n#define\tAIONWRITE   _IOR('A', 10, int)   /* get # bytes to write */\nstruct snd_size {\n    int play_size;\n    int rec_size;\n};\n#define\tAIOGSIZE    _IOR('A', 11, struct snd_size)/* read current blocksize */\n#define\tAIOSSIZE    _IOWR('A', 11, struct snd_size)  /* sets blocksize */\n\n/*\n * The following constants define supported audio formats. The\n * encoding follows voxware conventions, i.e. 1 bit for each supported\n * format. We extend it by using bit 31 (RO) to indicate full-duplex\n * capability, and bit 29 (RO) to indicate that the card supports/\n * needs different formats on capture & playback channels.\n * Bit 29 (RW) is used to indicate/ask stereo.\n *\n * The number of bits required to store the sample is:\n *  o  4 bits for the IDA ADPCM format,\n *  o  8 bits for 8-bit formats, mu-law and A-law,\n *  o  16 bits for the 16-bit formats, and\n *  o  32 bits for the 24/32-bit formats.\n *  o  undefined for the MPEG audio format.\n */\n\n#define AFMT_QUERY\t0x00000000\t/* Return current format */\n#define AFMT_MU_LAW\t0x00000001\t/* Logarithmic mu-law */\n#define AFMT_A_LAW\t0x00000002\t/* Logarithmic A-law */\n#define AFMT_IMA_ADPCM\t0x00000004\t/* A 4:1 compressed format where 16-bit\n\t\t\t\t\t * squence represented using the\n\t\t\t\t\t * the average 4 bits per sample */\n#define AFMT_U8\t\t0x00000008\t/* Unsigned 8-bit */\n#define AFMT_S16_LE\t0x00000010\t/* Little endian signed 16-bit */\n#define AFMT_S16_BE\t0x00000020\t/* Big endian signed 16-bit */\n#define AFMT_S8\t\t0x00000040\t/* Signed 8-bit */\n#define AFMT_U16_LE\t0x00000080\t/* Little endian unsigned 16-bit */\n#define AFMT_U16_BE\t0x00000100\t/* Big endian unsigned 16-bit */\n#define AFMT_MPEG\t0x00000200\t/* MPEG MP2/MP3 audio */\n#define AFMT_AC3\t0x00000400\t/* Dolby Digital AC3 */\n\n#if _BYTE_ORDER == _LITTLE_ENDIAN\n#define AFMT_S16_NE\tAFMT_S16_LE\t/* native endian signed 16 */\n#else\n#define AFMT_S16_NE\tAFMT_S16_BE\n#endif\n\n/*\n * 32-bit formats below used for 24-bit audio data where the data is stored\n * in the 24 most significant bits and the least significant bits are not used\n * (should be set to 0).\n */\n#define AFMT_S32_LE\t0x00001000\t/* Little endian signed 32-bit */\n#define AFMT_S32_BE\t0x00002000\t/* Big endian signed 32-bit */\n#define AFMT_U32_LE\t0x00004000\t/* Little endian unsigned 32-bit */\n#define AFMT_U32_BE\t0x00008000\t/* Big endian unsigned 32-bit */\n#define AFMT_S24_LE\t0x00010000\t/* Little endian signed 24-bit */\n#define AFMT_S24_BE\t0x00020000\t/* Big endian signed 24-bit */\n#define AFMT_U24_LE\t0x00040000\t/* Little endian unsigned 24-bit */\n#define AFMT_U24_BE\t0x00080000\t/* Big endian unsigned 24-bit */\n\n#define AFMT_STEREO\t0x10000000\t/* can do/want stereo\t*/\n\n/*\n * the following are really capabilities\n */\n#define AFMT_WEIRD\t0x20000000\t/* weird hardware...\t*/\n    /*\n     * AFMT_WEIRD reports that the hardware might need to operate\n     * with different formats in the playback and capture\n     * channels when operating in full duplex.\n     * As an example, SoundBlaster16 cards only support U8 in one\n     * direction and S16 in the other one, and applications should\n     * be aware of this limitation.\n     */\n#define AFMT_FULLDUPLEX\t0x80000000\t/* can do full duplex\t*/\n\n/*\n * The following structure is used to get/set format and sampling rate.\n * While it would be better to have things such as stereo, bits per\n * sample, endiannes, etc split in different variables, it turns out\n * that formats are not that many, and not all combinations are possible.\n * So we followed the Voxware approach of associating one bit to each\n * format.\n */\n\ntypedef struct _snd_chan_param {\n    u_long\tplay_rate;\t/* sampling rate\t\t\t*/\n    u_long\trec_rate;\t/* sampling rate\t\t\t*/\n    u_long\tplay_format;\t/* everything describing the format\t*/\n    u_long\trec_format;\t/* everything describing the format\t*/\n} snd_chan_param;\n#define\tAIOGFMT    _IOR('f', 12, snd_chan_param)   /* get format */\n#define\tAIOSFMT    _IOWR('f', 12, snd_chan_param)  /* sets format */\n\n/*\n * The following structure is used to get/set the mixer setting.\n * Up to 32 mixers are supported, each one with up to 32 channels.\n */\ntypedef struct _snd_mix_param {\n    u_char\tsubdev;\t/* which output\t\t\t\t*/\n    u_char\tline;\t/* which input\t\t\t\t*/\n    u_char\tleft,right; /* volumes, 0..255, 0 = mute\t*/\n} snd_mix_param ;\n\n/* XXX AIOGMIX, AIOSMIX not implemented yet */\n#define AIOGMIX\t_IOWR('A', 13, snd_mix_param)\t/* return mixer status */\n#define AIOSMIX\t_IOWR('A', 14, snd_mix_param)\t/* sets mixer status   */\n\n/*\n * channel specifiers used in AIOSTOP and AIOSYNC\n */\n#define\tAIOSYNC_PLAY\t0x1\t/* play chan */\n#define\tAIOSYNC_CAPTURE\t0x2\t/* capture chan */\n/* AIOSTOP stop & flush a channel, returns the residual count */\n#define\tAIOSTOP\t_IOWR ('A', 15, int)\n\n/* alternate method used to notify the sync condition */\n#define\tAIOSYNC_SIGNAL\t0x100\n#define\tAIOSYNC_SELECT\t0x200\n\n/* what the 'pos' field refers to */\n#define AIOSYNC_READY\t0x400\n#define AIOSYNC_FREE\t0x800\n\ntypedef struct _snd_sync_parm {\n    long chan ; /* play or capture channel, plus modifier */\n    long pos;\n} snd_sync_parm;\n#define\tAIOSYNC\t_IOWR ('A', 15, snd_sync_parm)\t/* misc. synchronization */\n\n/*\n * The following is used to return device capabilities. If the structure\n * passed to the ioctl is zeroed, default values are returned for rate\n * and formats, a bitmap of available mixers is returned, and values\n * (inputs, different levels) for the first one are returned.\n *\n * If  formats, mixers, inputs are instantiated, then detailed info\n * are returned depending on the call.\n */\ntypedef struct _snd_capabilities {\n    u_long\trate_min, rate_max;\t/* min-max sampling rate */\n    u_long\tformats;\n    u_long\tbufsize; /* DMA buffer size */\n    u_long\tmixers; /* bitmap of available mixers */\n    u_long\tinputs; /* bitmap of available inputs (per mixer) */\n    u_short\tleft, right;\t/* how many levels are supported */\n} snd_capabilities;\n#define AIOGCAP\t_IOWR('A', 15, snd_capabilities)\t/* get capabilities */\n\n/*\n * here is the old (Voxware) ioctl interface\n */\n\n/*\n * IOCTL Commands for /dev/sequencer\n */\n\n#define SNDCTL_SEQ_RESET\t_IO  ('Q', 0)\n#define SNDCTL_SEQ_SYNC\t\t_IO  ('Q', 1)\n#define SNDCTL_SYNTH_INFO\t_IOWR('Q', 2, struct synth_info)\n#define SNDCTL_SEQ_CTRLRATE\t_IOWR('Q', 3, int) /* Set/get timer res.(hz) */\n#define SNDCTL_SEQ_GETOUTCOUNT\t_IOR ('Q', 4, int)\n#define SNDCTL_SEQ_GETINCOUNT\t_IOR ('Q', 5, int)\n#define SNDCTL_SEQ_PERCMODE\t_IOW ('Q', 6, int)\n#define SNDCTL_FM_LOAD_INSTR\t_IOW ('Q', 7, struct sbi_instrument)\t/* Valid for FM only */\n#define SNDCTL_SEQ_TESTMIDI\t_IOW ('Q', 8, int)\n#define SNDCTL_SEQ_RESETSAMPLES\t_IOW ('Q', 9, int)\n#define SNDCTL_SEQ_NRSYNTHS\t_IOR ('Q',10, int)\n#define SNDCTL_SEQ_NRMIDIS\t_IOR ('Q',11, int)\n#define SNDCTL_MIDI_INFO\t_IOWR('Q',12, struct midi_info)\n#define SNDCTL_SEQ_THRESHOLD\t_IOW ('Q',13, int)\n#define SNDCTL_SEQ_TRESHOLD\tSNDCTL_SEQ_THRESHOLD\t/* there was once a typo */\n#define SNDCTL_SYNTH_MEMAVL\t_IOWR('Q',14, int) /* in=dev#, out=memsize */\n#define SNDCTL_FM_4OP_ENABLE\t_IOW ('Q',15, int) /* in=dev# */\n#define SNDCTL_PMGR_ACCESS\t_IOWR('Q',16, struct patmgr_info)\n#define SNDCTL_SEQ_PANIC\t_IO  ('Q',17)\n#define SNDCTL_SEQ_OUTOFBAND\t_IOW ('Q',18, struct seq_event_rec)\n#define SNDCTL_SEQ_GETTIME\t_IOR ('Q',19, int)\n\nstruct seq_event_rec {\n\tu_char arr[8];\n};\n\n#define SNDCTL_TMR_TIMEBASE\t_IOWR('T', 1, int)\n#define SNDCTL_TMR_START\t_IO  ('T', 2)\n#define SNDCTL_TMR_STOP\t\t_IO  ('T', 3)\n#define SNDCTL_TMR_CONTINUE\t_IO  ('T', 4)\n#define SNDCTL_TMR_TEMPO\t_IOWR('T', 5, int)\n#define SNDCTL_TMR_SOURCE\t_IOWR('T', 6, int)\n#   define TMR_INTERNAL\t\t0x00000001\n#   define TMR_EXTERNAL\t\t0x00000002\n#\tdefine TMR_MODE_MIDI\t0x00000010\n#\tdefine TMR_MODE_FSK\t0x00000020\n#\tdefine TMR_MODE_CLS\t0x00000040\n#\tdefine TMR_MODE_SMPTE\t0x00000080\n#define SNDCTL_TMR_METRONOME\t_IOW ('T', 7, int)\n#define SNDCTL_TMR_SELECT\t_IOW ('T', 8, int)\n\n/*\n *\tEndian aware patch key generation algorithm.\n */\n\n#if defined(_AIX) || defined(AIX)\n#  define _PATCHKEY(id) (0xfd00|id)\n#else\n#  define _PATCHKEY(id) ((id<<8)|0xfd)\n#endif\n\n/*\n *\tSample loading mechanism for internal synthesizers (/dev/sequencer)\n *\tThe following patch_info structure has been designed to support\n *\tGravis UltraSound. It tries to be universal format for uploading\n *\tsample based patches but is probably too limited.\n */\n\nstruct patch_info {\n/*\t\tu_short key;\t\t Use GUS_PATCH here */\n\tshort key;\t\t /* Use GUS_PATCH here */\n#define GUS_PATCH\t_PATCHKEY(0x04)\n#define OBSOLETE_GUS_PATCH\t_PATCHKEY(0x02)\n\n\tshort device_no;\t/* Synthesizer number */\n\tshort instr_no;\t\t/* Midi pgm# */\n\n\tu_long mode;\n/*\n * The least significant byte has the same format than the GUS .PAT\n * files\n */\n#define WAVE_16_BITS\t0x01\t/* bit 0 = 8 or 16 bit wave data. */\n#define WAVE_UNSIGNED\t0x02\t/* bit 1 = Signed - Unsigned data. */\n#define WAVE_LOOPING\t0x04\t/* bit 2 = looping enabled-1. */\n#define WAVE_BIDIR_LOOP\t0x08\t/* bit 3 = Set is bidirectional looping. */\n#define WAVE_LOOP_BACK\t0x10\t/* bit 4 = Set is looping backward. */\n#define WAVE_SUSTAIN_ON\t0x20\t/* bit 5 = Turn sustaining on. (Env. pts. 3)*/\n#define WAVE_ENVELOPES\t0x40\t/* bit 6 = Enable envelopes - 1 */\n\t\t\t\t/* \t(use the env_rate/env_offs fields). */\n/* Linux specific bits */\n#define WAVE_VIBRATO\t0x00010000\t/* The vibrato info is valid */\n#define WAVE_TREMOLO\t0x00020000\t/* The tremolo info is valid */\n#define WAVE_SCALE\t0x00040000\t/* The scaling info is valid */\n/* Other bits must be zeroed */\n\n\tlong len;\t/* Size of the wave data in bytes */\n\tlong loop_start, loop_end; /* Byte offsets from the beginning */\n\n/*\n * The base_freq and base_note fields are used when computing the\n * playback speed for a note. The base_note defines the tone frequency\n * which is heard if the sample is played using the base_freq as the\n * playback speed.\n *\n * The low_note and high_note fields define the minimum and maximum note\n * frequencies for which this sample is valid. It is possible to define\n * more than one samples for an instrument number at the same time. The\n * low_note and high_note fields are used to select the most suitable one.\n *\n * The fields base_note, high_note and low_note should contain\n * the note frequency multiplied by 1000. For example value for the\n * middle A is 440*1000.\n */\n\n\tu_int base_freq;\n\tu_long base_note;\n\tu_long high_note;\n\tu_long low_note;\n\tint panning;\t/* -128=left, 127=right */\n\tint detuning;\n\n/*\tNew fields introduced in version 1.99.5\t*/\n\n       /* Envelope. Enabled by mode bit WAVE_ENVELOPES\t*/\n\tu_char\tenv_rate[ 6 ];\t /* GUS HW ramping rate */\n\tu_char\tenv_offset[ 6 ]; /* 255 == 100% */\n\n\t/*\n\t * The tremolo, vibrato and scale info are not supported yet.\n\t * Enable by setting the mode bits WAVE_TREMOLO, WAVE_VIBRATO or\n\t * WAVE_SCALE\n\t */\n\n\tu_char\ttremolo_sweep;\n\tu_char\ttremolo_rate;\n\tu_char\ttremolo_depth;\n\n\tu_char\tvibrato_sweep;\n\tu_char\tvibrato_rate;\n\tu_char\tvibrato_depth;\n\n\tint\t\tscale_frequency;\n\tu_int\tscale_factor;\t\t/* from 0 to 2048 or 0 to 2 */\n\n\tint\t\tvolume;\n\tint\t\tspare[4];\n\tchar data[1];\t/* The waveform data starts here */\n};\n\nstruct sysex_info {\n\tshort key;\t\t/* Use GUS_PATCH here */\n#define SYSEX_PATCH\t_PATCHKEY(0x05)\n#define MAUI_PATCH\t_PATCHKEY(0x06)\n\tshort device_no;\t/* Synthesizer number */\n\tlong len;\t/* Size of the sysex data in bytes */\n\tu_char data[1];\t/* Sysex data starts here */\n};\n\n/*\n * Patch management interface (/dev/sequencer, /dev/patmgr#)\n * Don't use these calls if you want to maintain compatibility with\n * the future versions of the driver.\n */\n\n#define PS_NO_PATCHES\t\t0\t/* No patch support on device */\n#define\tPS_MGR_NOT_OK\t\t1\t/* Plain patch support (no mgr) */\n#define\tPS_MGR_OK\t\t2\t/* Patch manager supported */\n#define\tPS_MANAGED\t\t3\t/* Patch manager running */\n\n#define SNDCTL_PMGR_IFACE\t\t_IOWR('P', 1, struct patmgr_info)\n\n/*\n * The patmgr_info is a fixed size structure which is used for two\n * different purposes. The intended use is for communication between\n * the application using /dev/sequencer and the patch manager daemon\n * associated with a synthesizer device (ioctl(SNDCTL_PMGR_ACCESS)).\n *\n * This structure is also used with ioctl(SNDCTL_PGMR_IFACE) which allows\n * a patch manager daemon to read and write device parameters. This\n * ioctl available through /dev/sequencer also. Avoid using it since it's\n * extremely hardware dependent. In addition access trough /dev/sequencer\n * may confuse the patch manager daemon.\n */\n\nstruct patmgr_info {\t/* Note! size must be < 4k since kmalloc() is used */\n\t  u_long key;\t/* Don't worry. Reserved for communication\n\t  \t\t\t   between the patch manager and the driver. */\n#define PM_K_EVENT\t\t1 /* Event from the /dev/sequencer driver */\n#define PM_K_COMMAND\t\t2 /* Request from an application */\n#define PM_K_RESPONSE\t\t3 /* From patmgr to application */\n#define PM_ERROR\t\t4 /* Error returned by the patmgr */\n\t  int device;\n\t  int command;\n\n/*\n * Commands 0x000 to 0xfff reserved for patch manager programs\n */\n#define PM_GET_DEVTYPE\t1\t/* Returns type of the patch mgr interface of dev */\n#define\t\tPMTYPE_FM2\t1\t/* 2 OP fm */\n#define\t\tPMTYPE_FM4\t2\t/* Mixed 4 or 2 op FM (OPL-3) */\n#define\t\tPMTYPE_WAVE\t3\t/* Wave table synthesizer (GUS) */\n#define PM_GET_NRPGM\t2\t/* Returns max # of midi programs in parm1 */\n#define PM_GET_PGMMAP\t3\t/* Returns map of loaded midi programs in data8 */\n#define PM_GET_PGM_PATCHES 4\t/* Return list of patches of a program (parm1) */\n#define PM_GET_PATCH\t5\t/* Return patch header of patch parm1 */\n#define PM_SET_PATCH\t6\t/* Set patch header of patch parm1 */\n#define PM_READ_PATCH\t7\t/* Read patch (wave) data */\n#define PM_WRITE_PATCH\t8\t/* Write patch (wave) data */\n\n/*\n * Commands 0x1000 to 0xffff are for communication between the patch manager\n * and the client\n */\n#define _PM_LOAD_PATCH\t0x100\n\n/*\n * Commands above 0xffff reserved for device specific use\n */\n\n\tlong parm1;\n\tlong parm2;\n\tlong parm3;\n\n\tunion {\n\t\tu_char data8[4000];\n\t\tu_short data16[2000];\n\t\tu_long data32[1000];\n\t\tstruct patch_info patch;\n\t} data;\n};\n\n/*\n * When a patch manager daemon is present, it will be informed by the\n * driver when something important happens. For example when the\n * /dev/sequencer is opened or closed. A record with key == PM_K_EVENT is\n * returned. The command field contains the event type:\n */\n#define PM_E_OPENED\t\t1\t/* /dev/sequencer opened */\n#define PM_E_CLOSED\t\t2\t/* /dev/sequencer closed */\n#define PM_E_PATCH_RESET\t3\t/* SNDCTL_RESETSAMPLES called */\n#define PM_E_PATCH_LOADED\t4\t/* A patch has been loaded by appl */\n\n/*\n * /dev/sequencer input events.\n *\n * The data written to the /dev/sequencer is a stream of events. Events\n * are records of 4 or 8 bytes. The first byte defines the size.\n * Any number of events can be written with a write call. There\n * is a set of macros for sending these events. Use these macros if you\n * want to maximize portability of your program.\n *\n * Events SEQ_WAIT, SEQ_MIDIPUTC and SEQ_ECHO. Are also input events.\n * (All input events are currently 4 bytes long. Be prepared to support\n * 8 byte events also. If you receive any event having first byte >= 128,\n * it's a 8 byte event.\n *\n * The events are documented at the end of this file.\n *\n * Normal events (4 bytes)\n * There is also a 8 byte version of most of the 4 byte events. The\n * 8 byte one is recommended.\n */\n#define SEQ_NOTEOFF\t\t0\n#define SEQ_FMNOTEOFF\t\tSEQ_NOTEOFF\t/* Just old name */\n#define SEQ_NOTEON\t\t1\n#define\tSEQ_FMNOTEON\t\tSEQ_NOTEON\n#define SEQ_WAIT\t\tTMR_WAIT_ABS\n#define SEQ_PGMCHANGE\t\t3\n#define SEQ_FMPGMCHANGE\t\tSEQ_PGMCHANGE\n#define SEQ_SYNCTIMER\t\tTMR_START\n#define SEQ_MIDIPUTC\t\t5\n#define SEQ_DRUMON\t\t6\t/*** OBSOLETE ***/\n#define SEQ_DRUMOFF\t\t7\t/*** OBSOLETE ***/\n#define SEQ_ECHO\t\tTMR_ECHO\t/* For synching programs with output */\n#define SEQ_AFTERTOUCH\t\t9\n#define SEQ_CONTROLLER\t\t10\n\n/*\n *\tMidi controller numbers\n *\n * Controllers 0 to 31 (0x00 to 0x1f) and 32 to 63 (0x20 to 0x3f)\n * are continuous controllers.\n * In the MIDI 1.0 these controllers are sent using two messages.\n * Controller numbers 0 to 31 are used to send the MSB and the\n * controller numbers 32 to 63 are for the LSB. Note that just 7 bits\n * are used in MIDI bytes.\n */\n\n#define\tCTL_BANK_SELECT\t\t0x00\n#define\tCTL_MODWHEEL\t\t0x01\n#define CTL_BREATH\t\t0x02\n/*\tundefined\t\t0x03 */\n#define CTL_FOOT\t\t0x04\n#define CTL_PORTAMENTO_TIME\t0x05\n#define CTL_DATA_ENTRY\t\t0x06\n#define CTL_MAIN_VOLUME\t\t0x07\n#define CTL_BALANCE\t\t0x08\n/*\tundefined\t\t0x09 */\n#define CTL_PAN\t\t\t0x0a\n#define CTL_EXPRESSION\t\t0x0b\n/*\tundefined\t\t0x0c - 0x0f */\n#define CTL_GENERAL_PURPOSE1\t0x10\n#define CTL_GENERAL_PURPOSE2\t0x11\n#define CTL_GENERAL_PURPOSE3\t0x12\n#define CTL_GENERAL_PURPOSE4\t0x13\n/*\tundefined\t\t0x14 - 0x1f */\n\n/*\tundefined\t\t0x20 */\n\n/*\n * The controller numbers 0x21 to 0x3f are reserved for the\n * least significant bytes of the controllers 0x00 to 0x1f.\n * These controllers are not recognised by the driver.\n *\n * Controllers 64 to 69 (0x40 to 0x45) are on/off switches.\n * 0=OFF and 127=ON (intermediate values are possible)\n */\n#define CTL_DAMPER_PEDAL\t0x40\n#define CTL_SUSTAIN\t\tCTL_DAMPER_PEDAL\t/* Alias */\n#define CTL_HOLD\t\tCTL_DAMPER_PEDAL\t/* Alias */\n#define CTL_PORTAMENTO\t\t0x41\n#define CTL_SOSTENUTO\t\t0x42\n#define CTL_SOFT_PEDAL\t\t0x43\n/*\tundefined\t\t0x44 */\n#define CTL_HOLD2\t\t0x45\n/*\tundefined\t\t0x46 - 0x4f */\n\n#define CTL_GENERAL_PURPOSE5\t0x50\n#define CTL_GENERAL_PURPOSE6\t0x51\n#define CTL_GENERAL_PURPOSE7\t0x52\n#define CTL_GENERAL_PURPOSE8\t0x53\n/*\tundefined\t\t0x54 - 0x5a */\n#define CTL_EXT_EFF_DEPTH\t0x5b\n#define CTL_TREMOLO_DEPTH\t0x5c\n#define CTL_CHORUS_DEPTH\t0x5d\n#define CTL_DETUNE_DEPTH\t0x5e\n#define CTL_CELESTE_DEPTH\tCTL_DETUNE_DEPTH /* Alias for the above one */\n#define CTL_PHASER_DEPTH\t0x5f\n#define CTL_DATA_INCREMENT\t0x60\n#define CTL_DATA_DECREMENT\t0x61\n#define CTL_NONREG_PARM_NUM_LSB\t0x62\n#define CTL_NONREG_PARM_NUM_MSB\t0x63\n#define CTL_REGIST_PARM_NUM_LSB\t0x64\n#define CTL_REGIST_PARM_NUM_MSB\t0x65\n/*\tundefined\t\t0x66 - 0x78 */\n/*\treserved\t\t0x79 - 0x7f */\n\n/* Pseudo controllers (not midi compatible) */\n#define CTRL_PITCH_BENDER\t255\n#define CTRL_PITCH_BENDER_RANGE\t254\n#define CTRL_EXPRESSION\t\t253\t/* Obsolete */\n#define CTRL_MAIN_VOLUME\t252\t/* Obsolete */\n\n#define SEQ_BALANCE\t\t11\n#define SEQ_VOLMODE             12\n\n/*\n * Volume mode decides how volumes are used\n */\n\n#define VOL_METHOD_ADAGIO\t1\n#define VOL_METHOD_LINEAR\t2\n\n/*\n * Note! SEQ_WAIT, SEQ_MIDIPUTC and SEQ_ECHO are used also as\n *\t input events.\n */\n\n/*\n * Event codes 0xf0 to 0xfc are reserved for future extensions.\n */\n\n#define SEQ_FULLSIZE\t\t0xfd\t/* Long events */\n/*\n * SEQ_FULLSIZE events are used for loading patches/samples to the\n * synthesizer devices. These events are passed directly to the driver\n * of the associated synthesizer device. There is no limit to the size\n * of the extended events. These events are not queued but executed\n * immediately when the write() is called (execution can take several\n * seconds of time).\n *\n * When a SEQ_FULLSIZE message is written to the device, it must\n * be written using exactly one write() call. Other events cannot\n * be mixed to the same write.\n *\n * For FM synths (YM3812/OPL3) use struct sbi_instrument and write\n * it to the /dev/sequencer. Don't write other data together with\n * the instrument structure Set the key field of the structure to\n * FM_PATCH. The device field is used to route the patch to the\n * corresponding device.\n *\n * For Gravis UltraSound use struct patch_info. Initialize the key field\n * to GUS_PATCH.\n */\n#define SEQ_PRIVATE\t0xfe\t/* Low level HW dependent events (8 bytes) */\n#define SEQ_EXTENDED\t0xff\t/* Extended events (8 bytes) OBSOLETE */\n\n/*\n * Record for FM patches\n */\n\ntypedef u_char sbi_instr_data[32];\n\nstruct sbi_instrument {\n\tu_short\tkey;\t/* FM_PATCH or OPL3_PATCH */\n#define FM_PATCH\t_PATCHKEY(0x01)\n#define OPL3_PATCH\t_PATCHKEY(0x03)\n\tshort\t\tdevice;\t\t/* Synth# (0-4)\t*/\n\tint \t\tchannel;\t/* Program# to be initialized  */\n\tsbi_instr_data\toperators;\t/* Reg. settings for operator cells\n\t\t\t\t\t * (.SBI format)\t*/\n};\n\nstruct synth_info {\t/* Read only */\n\tchar\tname[30];\n\tint\tdevice;\t\t/* 0-N. INITIALIZE BEFORE CALLING */\n\tint\tsynth_type;\n#define SYNTH_TYPE_FM\t\t\t0\n#define SYNTH_TYPE_SAMPLE\t\t1\n#define SYNTH_TYPE_MIDI\t\t\t2\t/* Midi interface */\n\n\tint\tsynth_subtype;\n#define FM_TYPE_ADLIB\t\t\t0x00\n#define FM_TYPE_OPL3\t\t\t0x01\n#define MIDI_TYPE_MPU401\t\t0x401\n\n#define SAMPLE_TYPE_BASIC\t\t0x10\n#define SAMPLE_TYPE_GUS\t\t\tSAMPLE_TYPE_BASIC\n#define SAMPLE_TYPE_AWE32\t\t0x20\n\n\tint\tperc_mode;\t/* No longer supported */\n\tint\tnr_voices;\n\tint\tnr_drums;\t/* Obsolete field */\n\tint\tinstr_bank_size;\n\tu_long\tcapabilities;\n#define SYNTH_CAP_PERCMODE\t0x00000001 /* No longer used */\n#define SYNTH_CAP_OPL3\t\t0x00000002 /* Set if OPL3 supported */\n#define SYNTH_CAP_INPUT\t\t0x00000004 /* Input (MIDI) device */\n\tint\tdummies[19];\t/* Reserve space */\n};\n\nstruct sound_timer_info {\n\tchar name[32];\n\tint caps;\n};\n\nstruct midi_info {\n\tchar\t\tname[30];\n\tint\t\tdevice;\t\t/* 0-N. INITIALIZE BEFORE CALLING */\n\tu_long\tcapabilities;\t/* To be defined later */\n\tint\t\tdev_type;\n\tint\t\tdummies[18];\t/* Reserve space */\n};\n\n/*\n * ioctl commands for the /dev/midi##\n */\ntypedef struct {\n\tu_char cmd;\n\tchar nr_args, nr_returns;\n\tu_char data[30];\n} mpu_command_rec;\n\n#define SNDCTL_MIDI_PRETIME\t_IOWR('m', 0, int)\n#define SNDCTL_MIDI_MPUMODE\t_IOWR('m', 1, int)\n#define SNDCTL_MIDI_MPUCMD\t_IOWR('m', 2, mpu_command_rec)\n#define MIOSPASSTHRU\t\t_IOWR('m', 3, int)\n#define MIOGPASSTHRU\t\t_IOWR('m', 4, int)\n\n/*\n * IOCTL commands for /dev/dsp and /dev/audio\n */\n\n#define SNDCTL_DSP_RESET\t_IO  ('P', 0)\n#define SNDCTL_DSP_SYNC\t\t_IO  ('P', 1)\n#define SNDCTL_DSP_SPEED\t_IOWR('P', 2, int)\n#define SNDCTL_DSP_STEREO\t_IOWR('P', 3, int)\n#define SNDCTL_DSP_GETBLKSIZE\t_IOR('P', 4, int)\n#define SNDCTL_DSP_SETBLKSIZE   _IOW('P', 4, int)\n#define SNDCTL_DSP_SETFMT\t_IOWR('P',5, int) /* Selects ONE fmt*/\n\n/*\n * SOUND_PCM_WRITE_CHANNELS is not that different\n * from SNDCTL_DSP_STEREO\n */\n#define SOUND_PCM_WRITE_CHANNELS\t_IOWR('P', 6, int)\n#define SNDCTL_DSP_CHANNELS\tSOUND_PCM_WRITE_CHANNELS\n#define SOUND_PCM_WRITE_FILTER\t_IOWR('P', 7, int)\n#define SNDCTL_DSP_POST\t\t_IO  ('P', 8)\n\n/*\n * SNDCTL_DSP_SETBLKSIZE and the following two calls mostly do\n * the same thing, i.e. set the block size used in DMA transfers.\n */\n#define SNDCTL_DSP_SUBDIVIDE\t_IOWR('P', 9, int)\n#define SNDCTL_DSP_SETFRAGMENT\t_IOWR('P',10, int)\n\n\n#define SNDCTL_DSP_GETFMTS\t_IOR ('P',11, int) /* Returns a mask */\n/*\n * Buffer status queries.\n */\ntypedef struct audio_buf_info {\n    int fragments;\t/* # of avail. frags (partly used ones not counted) */\n    int fragstotal;\t/* Total # of fragments allocated */\n    int fragsize;\t/* Size of a fragment in bytes */\n\n    int bytes;\t/* Avail. space in bytes (includes partly used fragments) */\n\t\t/* Note! 'bytes' could be more than fragments*fragsize */\n} audio_buf_info;\n\n#define SNDCTL_DSP_GETOSPACE\t_IOR ('P',12, audio_buf_info)\n#define SNDCTL_DSP_GETISPACE\t_IOR ('P',13, audio_buf_info)\n\n/*\n * SNDCTL_DSP_NONBLOCK is the same (but less powerful, since the\n * action cannot be undone) of FIONBIO. The same can be achieved\n * by opening the device with O_NDELAY\n */\n#define SNDCTL_DSP_NONBLOCK\t_IO  ('P',14)\n\n#define SNDCTL_DSP_GETCAPS\t_IOR ('P',15, int)\n#define DSP_CAP_REVISION\t0x000000ff /* revision level (0 to 255) */\n#define DSP_CAP_DUPLEX\t\t0x00000100 /* Full duplex record/playback */\n#define DSP_CAP_REALTIME\t0x00000200 /* Real time capability */\n#define DSP_CAP_BATCH\t\t0x00000400\n    /*\n     * Device has some kind of internal buffers which may\n     * cause some delays and decrease precision of timing\n     */\n#define DSP_CAP_COPROC\t\t0x00000800\n    /* Has a coprocessor, sometimes it's a DSP but usually not */\n#define DSP_CAP_TRIGGER\t\t0x00001000 /* Supports SETTRIGGER */\n#define DSP_CAP_MMAP 0x00002000 /* Supports mmap() */\n\n/*\n * What do these function do ?\n */\n#define SNDCTL_DSP_GETTRIGGER\t_IOR ('P',16, int)\n#define SNDCTL_DSP_SETTRIGGER\t_IOW ('P',16, int)\n#define PCM_ENABLE_INPUT\t0x00000001\n#define PCM_ENABLE_OUTPUT\t0x00000002\n\ntypedef struct count_info {\n\tint bytes;\t/* Total # of bytes processed */\n\tint blocks;\t/* # of fragment transitions since last time */\n\tint ptr;\t/* Current DMA pointer value */\n} count_info;\n\n/*\n * GETIPTR and GETISPACE are not that different... same for out.\n */\n#define SNDCTL_DSP_GETIPTR\t_IOR ('P',17, count_info)\n#define SNDCTL_DSP_GETOPTR\t_IOR ('P',18, count_info)\n\ntypedef struct buffmem_desc {\n\tcaddr_t buffer;\n\tint size;\n} buffmem_desc;\n\n#define SNDCTL_DSP_MAPINBUF\t_IOR ('P', 19, buffmem_desc)\n#define SNDCTL_DSP_MAPOUTBUF\t_IOR ('P', 20, buffmem_desc)\n#define SNDCTL_DSP_SETSYNCRO\t_IO  ('P', 21)\n#define SNDCTL_DSP_SETDUPLEX\t_IO  ('P', 22)\n#define SNDCTL_DSP_GETODELAY\t_IOR ('P', 23, int)\n\n/*\n * I guess these are the readonly version of the same\n * functions that exist above as SNDCTL_DSP_...\n */\n#define SOUND_PCM_READ_RATE\t_IOR ('P', 2, int)\n#define SOUND_PCM_READ_CHANNELS\t_IOR ('P', 6, int)\n#define SOUND_PCM_READ_BITS\t_IOR ('P', 5, int)\n#define SOUND_PCM_READ_FILTER\t_IOR ('P', 7, int)\n\n/*\n * ioctl calls to be used in communication with coprocessors and\n * DSP chips.\n */\n\ntypedef struct copr_buffer {\n\tint command;\t/* Set to 0 if not used */\n\tint flags;\n#define CPF_NONE\t\t0x0000\n#define CPF_FIRST\t\t0x0001\t/* First block */\n#define CPF_LAST\t\t0x0002\t/* Last block */\n\tint len;\n\tint offs;\t/* If required by the device (0 if not used) */\n\n\tu_char data[4000]; /* NOTE! 4000 is not 4k */\n} copr_buffer;\n\ntypedef struct copr_debug_buf {\n\tint command;\t/* Used internally. Set to 0 */\n\tint parm1;\n\tint parm2;\n\tint flags;\n\tint len;\t/* Length of data in bytes */\n} copr_debug_buf;\n\ntypedef struct copr_msg {\n\tint len;\n\tu_char data[4000];\n} copr_msg;\n\n#define SNDCTL_COPR_RESET       _IO  ('C',  0)\n#define SNDCTL_COPR_LOAD\t_IOWR('C',  1, copr_buffer)\n#define SNDCTL_COPR_RDATA\t_IOWR('C',  2, copr_debug_buf)\n#define SNDCTL_COPR_RCODE\t_IOWR('C',  3, copr_debug_buf)\n#define SNDCTL_COPR_WDATA\t_IOW ('C',  4, copr_debug_buf)\n#define SNDCTL_COPR_WCODE\t_IOW ('C',  5, copr_debug_buf)\n#define SNDCTL_COPR_RUN\t\t_IOWR('C',  6, copr_debug_buf)\n#define SNDCTL_COPR_HALT\t_IOWR('C',  7, copr_debug_buf)\n#define SNDCTL_COPR_SENDMSG\t_IOW ('C',  8, copr_msg)\n#define SNDCTL_COPR_RCVMSG\t_IOR ('C',  9, copr_msg)\n\n/*\n * IOCTL commands for /dev/mixer\n */\n\n/*\n * Mixer devices\n *\n * There can be up to 20 different analog mixer channels. The\n * SOUND_MIXER_NRDEVICES gives the currently supported maximum.\n * The SOUND_MIXER_READ_DEVMASK returns a bitmask which tells\n * the devices supported by the particular mixer.\n */\n\n#define SOUND_MIXER_NRDEVICES\t25\n#define SOUND_MIXER_VOLUME\t0\t/* Master output level */\n#define SOUND_MIXER_BASS\t1\t/* Treble level of all output channels */\n#define SOUND_MIXER_TREBLE\t2\t/* Bass level of all output channels */\n#define SOUND_MIXER_SYNTH\t3\t/* Volume of synthesier input */\n#define SOUND_MIXER_PCM\t\t4\t/* Output level for the audio device */\n#define SOUND_MIXER_SPEAKER\t5\t/* Output level for the PC speaker\n\t\t\t\t\t * signals */\n#define SOUND_MIXER_LINE\t6\t/* Volume level for the line in jack */\n#define SOUND_MIXER_MIC\t\t7\t/* Volume for the signal coming from\n\t\t\t\t\t * the microphone jack */\n#define SOUND_MIXER_CD\t\t8\t/* Volume level for the input signal\n\t\t\t\t\t * connected to the CD audio input */\n#define SOUND_MIXER_IMIX\t9\t/* Recording monitor. It controls the\n\t\t\t\t\t * output volume of the selected\n\t\t\t\t\t * recording sources while recording */\n#define SOUND_MIXER_ALTPCM\t10\t/* Volume of the alternative codec\n\t\t\t\t\t * device */\n#define SOUND_MIXER_RECLEV\t11\t/* Global recording level */\n#define SOUND_MIXER_IGAIN\t12\t/* Input gain */\n#define SOUND_MIXER_OGAIN\t13\t/* Output gain */\n/*\n * The AD1848 codec and compatibles have three line level inputs\n * (line, aux1 and aux2). Since each card manufacturer have assigned\n * different meanings to these inputs, it's inpractical to assign\n * specific meanings (line, cd, synth etc.) to them.\n */\n#define SOUND_MIXER_LINE1\t14\t/* Input source 1  (aux1) */\n#define SOUND_MIXER_LINE2\t15\t/* Input source 2  (aux2) */\n#define SOUND_MIXER_LINE3\t16\t/* Input source 3  (line) */\n#define SOUND_MIXER_DIGITAL1    17      /* Digital (input) 1 */\n#define SOUND_MIXER_DIGITAL2    18      /* Digital (input) 2 */\n#define SOUND_MIXER_DIGITAL3    19      /* Digital (input) 3 */\n#define SOUND_MIXER_PHONEIN     20      /* Phone input */\n#define SOUND_MIXER_PHONEOUT    21      /* Phone output */\n#define SOUND_MIXER_VIDEO       22      /* Video/TV (audio) in */\n#define SOUND_MIXER_RADIO       23      /* Radio in */\n#define SOUND_MIXER_MONITOR     24      /* Monitor (usually mic) volume */\n\n\n/*\n * Some on/off settings (SOUND_SPECIAL_MIN - SOUND_SPECIAL_MAX)\n * Not counted to SOUND_MIXER_NRDEVICES, but use the same number space\n */\n#define SOUND_ONOFF_MIN\t\t28\n#define SOUND_ONOFF_MAX\t\t30\n#define SOUND_MIXER_MUTE\t28\t/* 0 or 1 */\n#define SOUND_MIXER_ENHANCE\t29\t/* Enhanced stereo (0, 40, 60 or 80) */\n#define SOUND_MIXER_LOUD\t30\t/* 0 or 1 */\n\n/* Note!\tNumber 31 cannot be used since the sign bit is reserved */\n#define SOUND_MIXER_NONE        31\n\n#define SOUND_DEVICE_LABELS\t{ \\\n\t\"Vol  \", \"Bass \", \"Trebl\", \"Synth\", \"Pcm  \", \"Spkr \", \"Line \", \\\n\t\"Mic  \", \"CD   \", \"Mix  \", \"Pcm2 \", \"Rec  \", \"IGain\", \"OGain\", \\\n\t\"Line1\", \"Line2\", \"Line3\", \"Digital1\", \"Digital2\", \"Digital3\", \\\n\t\"PhoneIn\", \"PhoneOut\", \"Video\", \"Radio\", \"Monitor\"}\n\n#define SOUND_DEVICE_NAMES\t{ \\\n\t\"vol\", \"bass\", \"treble\", \"synth\", \"pcm\", \"speaker\", \"line\", \\\n\t\"mic\", \"cd\", \"mix\", \"pcm2\", \"rec\", \"igain\", \"ogain\", \\\n\t\"line1\", \"line2\", \"line3\", \"dig1\", \"dig2\", \"dig3\", \\\n\t\"phin\", \"phout\", \"video\", \"radio\", \"monitor\"}\n\n/*\tDevice bitmask identifiers\t*/\n\n#define SOUND_MIXER_RECSRC\t0xff\t/* 1 bit per recording source */\n#define SOUND_MIXER_DEVMASK\t0xfe\t/* 1 bit per supported device */\n#define SOUND_MIXER_RECMASK\t0xfd\t/* 1 bit per supp. recording source */\n#define SOUND_MIXER_CAPS\t0xfc\n#define SOUND_CAP_EXCL_INPUT\t0x00000001\t/* Only 1 rec. src at a time */\n#define SOUND_MIXER_STEREODEVS\t0xfb\t/* Mixer channels supporting stereo */\n\n/*\tDevice mask bits\t*/\n\n#define SOUND_MASK_VOLUME\t(1 << SOUND_MIXER_VOLUME)\n#define SOUND_MASK_BASS\t\t(1 << SOUND_MIXER_BASS)\n#define SOUND_MASK_TREBLE\t(1 << SOUND_MIXER_TREBLE)\n#define SOUND_MASK_SYNTH\t(1 << SOUND_MIXER_SYNTH)\n#define SOUND_MASK_PCM\t\t(1 << SOUND_MIXER_PCM)\n#define SOUND_MASK_SPEAKER\t(1 << SOUND_MIXER_SPEAKER)\n#define SOUND_MASK_LINE\t\t(1 << SOUND_MIXER_LINE)\n#define SOUND_MASK_MIC\t\t(1 << SOUND_MIXER_MIC)\n#define SOUND_MASK_CD\t\t(1 << SOUND_MIXER_CD)\n#define SOUND_MASK_IMIX\t\t(1 << SOUND_MIXER_IMIX)\n#define SOUND_MASK_ALTPCM\t(1 << SOUND_MIXER_ALTPCM)\n#define SOUND_MASK_RECLEV\t(1 << SOUND_MIXER_RECLEV)\n#define SOUND_MASK_IGAIN\t(1 << SOUND_MIXER_IGAIN)\n#define SOUND_MASK_OGAIN\t(1 << SOUND_MIXER_OGAIN)\n#define SOUND_MASK_LINE1\t(1 << SOUND_MIXER_LINE1)\n#define SOUND_MASK_LINE2\t(1 << SOUND_MIXER_LINE2)\n#define SOUND_MASK_LINE3\t(1 << SOUND_MIXER_LINE3)\n#define SOUND_MASK_DIGITAL1     (1 << SOUND_MIXER_DIGITAL1)\n#define SOUND_MASK_DIGITAL2     (1 << SOUND_MIXER_DIGITAL2)\n#define SOUND_MASK_DIGITAL3     (1 << SOUND_MIXER_DIGITAL3)\n#define SOUND_MASK_PHONEIN      (1 << SOUND_MIXER_PHONEIN)\n#define SOUND_MASK_PHONEOUT     (1 << SOUND_MIXER_PHONEOUT)\n#define SOUND_MASK_RADIO        (1 << SOUND_MIXER_RADIO)\n#define SOUND_MASK_VIDEO        (1 << SOUND_MIXER_VIDEO)\n#define SOUND_MASK_MONITOR      (1 << SOUND_MIXER_MONITOR)\n\n/* Obsolete macros */\n#define SOUND_MASK_MUTE\t\t(1 << SOUND_MIXER_MUTE)\n#define SOUND_MASK_ENHANCE\t(1 << SOUND_MIXER_ENHANCE)\n#define SOUND_MASK_LOUD\t\t(1 << SOUND_MIXER_LOUD)\n\n#define MIXER_READ(dev)\t\t_IOR('M', dev, int)\n#define SOUND_MIXER_READ_VOLUME\t\tMIXER_READ(SOUND_MIXER_VOLUME)\n#define SOUND_MIXER_READ_BASS\t\tMIXER_READ(SOUND_MIXER_BASS)\n#define SOUND_MIXER_READ_TREBLE\t\tMIXER_READ(SOUND_MIXER_TREBLE)\n#define SOUND_MIXER_READ_SYNTH\t\tMIXER_READ(SOUND_MIXER_SYNTH)\n#define SOUND_MIXER_READ_PCM\t\tMIXER_READ(SOUND_MIXER_PCM)\n#define SOUND_MIXER_READ_SPEAKER\tMIXER_READ(SOUND_MIXER_SPEAKER)\n#define SOUND_MIXER_READ_LINE\t\tMIXER_READ(SOUND_MIXER_LINE)\n#define SOUND_MIXER_READ_MIC\t\tMIXER_READ(SOUND_MIXER_MIC)\n#define SOUND_MIXER_READ_CD\t\tMIXER_READ(SOUND_MIXER_CD)\n#define SOUND_MIXER_READ_IMIX\t\tMIXER_READ(SOUND_MIXER_IMIX)\n#define SOUND_MIXER_READ_ALTPCM\t\tMIXER_READ(SOUND_MIXER_ALTPCM)\n#define SOUND_MIXER_READ_RECLEV\t\tMIXER_READ(SOUND_MIXER_RECLEV)\n#define SOUND_MIXER_READ_IGAIN\t\tMIXER_READ(SOUND_MIXER_IGAIN)\n#define SOUND_MIXER_READ_OGAIN\t\tMIXER_READ(SOUND_MIXER_OGAIN)\n#define SOUND_MIXER_READ_LINE1\t\tMIXER_READ(SOUND_MIXER_LINE1)\n#define SOUND_MIXER_READ_LINE2\t\tMIXER_READ(SOUND_MIXER_LINE2)\n#define SOUND_MIXER_READ_LINE3\t\tMIXER_READ(SOUND_MIXER_LINE3)\n#define SOUND_MIXER_READ_DIGITAL1\tMIXER_READ(SOUND_MIXER_DIGITAL1)\n#define SOUND_MIXER_READ_DIGITAL2\tMIXER_READ(SOUND_MIXER_DIGITAL2)\n#define SOUND_MIXER_READ_DIGITAL3\tMIXER_READ(SOUND_MIXER_DIGITAL3)\n#define SOUND_MIXER_READ_PHONEIN      \tMIXER_READ(SOUND_MIXER_PHONEIN)\n#define SOUND_MIXER_READ_PHONEOUT\tMIXER_READ(SOUND_MIXER_PHONEOUT)\n#define SOUND_MIXER_READ_RADIO\t\tMIXER_READ(SOUND_MIXER_RADIO)\n#define SOUND_MIXER_READ_VIDEO\t\tMIXER_READ(SOUND_MIXER_VIDEO)\n#define SOUND_MIXER_READ_MONITOR\tMIXER_READ(SOUND_MIXER_MONITOR)\n\n/* Obsolete macros */\n#define SOUND_MIXER_READ_MUTE\t\tMIXER_READ(SOUND_MIXER_MUTE)\n#define SOUND_MIXER_READ_ENHANCE\tMIXER_READ(SOUND_MIXER_ENHANCE)\n#define SOUND_MIXER_READ_LOUD\t\tMIXER_READ(SOUND_MIXER_LOUD)\n\n#define SOUND_MIXER_READ_RECSRC\t\tMIXER_READ(SOUND_MIXER_RECSRC)\n#define SOUND_MIXER_READ_DEVMASK\tMIXER_READ(SOUND_MIXER_DEVMASK)\n#define SOUND_MIXER_READ_RECMASK\tMIXER_READ(SOUND_MIXER_RECMASK)\n#define SOUND_MIXER_READ_STEREODEVS\tMIXER_READ(SOUND_MIXER_STEREODEVS)\n#define SOUND_MIXER_READ_CAPS\t\tMIXER_READ(SOUND_MIXER_CAPS)\n\n#define MIXER_WRITE(dev)\t\t_IOWR('M', dev, int)\n#define SOUND_MIXER_WRITE_VOLUME\tMIXER_WRITE(SOUND_MIXER_VOLUME)\n#define SOUND_MIXER_WRITE_BASS\t\tMIXER_WRITE(SOUND_MIXER_BASS)\n#define SOUND_MIXER_WRITE_TREBLE\tMIXER_WRITE(SOUND_MIXER_TREBLE)\n#define SOUND_MIXER_WRITE_SYNTH\t\tMIXER_WRITE(SOUND_MIXER_SYNTH)\n#define SOUND_MIXER_WRITE_PCM\t\tMIXER_WRITE(SOUND_MIXER_PCM)\n#define SOUND_MIXER_WRITE_SPEAKER\tMIXER_WRITE(SOUND_MIXER_SPEAKER)\n#define SOUND_MIXER_WRITE_LINE\t\tMIXER_WRITE(SOUND_MIXER_LINE)\n#define SOUND_MIXER_WRITE_MIC\t\tMIXER_WRITE(SOUND_MIXER_MIC)\n#define SOUND_MIXER_WRITE_CD\t\tMIXER_WRITE(SOUND_MIXER_CD)\n#define SOUND_MIXER_WRITE_IMIX\t\tMIXER_WRITE(SOUND_MIXER_IMIX)\n#define SOUND_MIXER_WRITE_ALTPCM\tMIXER_WRITE(SOUND_MIXER_ALTPCM)\n#define SOUND_MIXER_WRITE_RECLEV\tMIXER_WRITE(SOUND_MIXER_RECLEV)\n#define SOUND_MIXER_WRITE_IGAIN\t\tMIXER_WRITE(SOUND_MIXER_IGAIN)\n#define SOUND_MIXER_WRITE_OGAIN\t\tMIXER_WRITE(SOUND_MIXER_OGAIN)\n#define SOUND_MIXER_WRITE_LINE1\t\tMIXER_WRITE(SOUND_MIXER_LINE1)\n#define SOUND_MIXER_WRITE_LINE2\t\tMIXER_WRITE(SOUND_MIXER_LINE2)\n#define SOUND_MIXER_WRITE_LINE3\t\tMIXER_WRITE(SOUND_MIXER_LINE3)\n#define SOUND_MIXER_WRITE_DIGITAL1\tMIXER_WRITE(SOUND_MIXER_DIGITAL1)\n#define SOUND_MIXER_WRITE_DIGITAL2\tMIXER_WRITE(SOUND_MIXER_DIGITAL2)\n#define SOUND_MIXER_WRITE_DIGITAL3\tMIXER_WRITE(SOUND_MIXER_DIGITAL3)\n#define SOUND_MIXER_WRITE_PHONEIN      \tMIXER_WRITE(SOUND_MIXER_PHONEIN)\n#define SOUND_MIXER_WRITE_PHONEOUT\tMIXER_WRITE(SOUND_MIXER_PHONEOUT)\n#define SOUND_MIXER_WRITE_RADIO\t\tMIXER_WRITE(SOUND_MIXER_RADIO)\n#define SOUND_MIXER_WRITE_VIDEO\t\tMIXER_WRITE(SOUND_MIXER_VIDEO)\n#define SOUND_MIXER_WRITE_MONITOR\tMIXER_WRITE(SOUND_MIXER_MONITOR)\n\n#define SOUND_MIXER_WRITE_MUTE\t\tMIXER_WRITE(SOUND_MIXER_MUTE)\n#define SOUND_MIXER_WRITE_ENHANCE\tMIXER_WRITE(SOUND_MIXER_ENHANCE)\n#define SOUND_MIXER_WRITE_LOUD\t\tMIXER_WRITE(SOUND_MIXER_LOUD)\n\n#define SOUND_MIXER_WRITE_RECSRC\tMIXER_WRITE(SOUND_MIXER_RECSRC)\n\ntypedef struct mixer_info {\n  char id[16];\n  char name[32];\n  int  modify_counter;\n  int fillers[10];\n} mixer_info;\n\n#define SOUND_MIXER_INFO\t\t_IOR('M', 101, mixer_info)\n\n#define LEFT_CHN\t0\n#define RIGHT_CHN\t1\n\n/*\n * Level 2 event types for /dev/sequencer\n */\n\n/*\n * The 4 most significant bits of byte 0 specify the class of\n * the event:\n *\n *\t0x8X = system level events,\n *\t0x9X = device/port specific events, event[1] = device/port,\n *\t\tThe last 4 bits give the subtype:\n *\t\t\t0x02\t= Channel event (event[3] = chn).\n *\t\t\t0x01\t= note event (event[4] = note).\n *\t\t\t(0x01 is not used alone but always with bit 0x02).\n *\t       event[2] = MIDI message code (0x80=note off etc.)\n *\n */\n\n#define EV_SEQ_LOCAL\t\t0x80\n#define EV_TIMING\t\t0x81\n#define EV_CHN_COMMON\t\t0x92\n#define EV_CHN_VOICE\t\t0x93\n#define EV_SYSEX\t\t0x94\n/*\n * Event types 200 to 220 are reserved for application use.\n * These numbers will not be used by the driver.\n */\n\n/*\n * Events for event type EV_CHN_VOICE\n */\n\n#define MIDI_NOTEOFF\t\t0x80\n#define MIDI_NOTEON\t\t0x90\n#define MIDI_KEY_PRESSURE\t0xA0\n\n/*\n * Events for event type EV_CHN_COMMON\n */\n\n#define MIDI_CTL_CHANGE\t\t0xB0\n#define MIDI_PGM_CHANGE\t\t0xC0\n#define MIDI_CHN_PRESSURE\t0xD0\n#define MIDI_PITCH_BEND\t\t0xE0\n\n#define MIDI_SYSTEM_PREFIX\t0xF0\n\n/*\n * Timer event types\n */\n#define TMR_WAIT_REL\t\t1\t/* Time relative to the prev time */\n#define TMR_WAIT_ABS\t\t2\t/* Absolute time since TMR_START */\n#define TMR_STOP\t\t3\n#define TMR_START\t\t4\n#define TMR_CONTINUE\t\t5\n#define TMR_TEMPO\t\t6\n#define TMR_ECHO\t\t8\n#define TMR_CLOCK\t\t9\t/* MIDI clock */\n#define TMR_SPP\t\t\t10\t/* Song position pointer */\n#define TMR_TIMESIG\t\t11\t/* Time signature */\n\n/*\n *\tLocal event types\n */\n#define LOCL_STARTAUDIO\t\t1\n\n#if (!defined(_KERNEL) && !defined(INKERNEL)) || defined(USE_SEQ_MACROS)\n/*\n *\tSome convenience macros to simplify programming of the\n *\t/dev/sequencer interface\n *\n *\tThese macros define the API which should be used when possible.\n */\n\n#ifndef USE_SIMPLE_MACROS\nvoid seqbuf_dump(void);\t/* This function must be provided by programs */\n\n/* Sample seqbuf_dump() implementation:\n *\n *\tSEQ_DEFINEBUF (2048);\t-- Defines a buffer for 2048 bytes\n *\n *\tint seqfd;\t\t-- The file descriptor for /dev/sequencer.\n *\n *\tvoid\n *\tseqbuf_dump ()\n *\t{\n *\t  if (_seqbufptr)\n *\t    if (write (seqfd, _seqbuf, _seqbufptr) == -1)\n *\t      {\n *\t\tperror (\"write /dev/sequencer\");\n *\t\texit (-1);\n *\t      }\n *\t  _seqbufptr = 0;\n *\t}\n */\n\n#define SEQ_DEFINEBUF(len)\t\t\\\n\tu_char _seqbuf[len]; int _seqbuflen = len;int _seqbufptr = 0\n#define SEQ_USE_EXTBUF()\t\t\\\n\textern u_char _seqbuf[]; \\\n\textern int _seqbuflen;extern int _seqbufptr\n#define SEQ_DECLAREBUF()\t\tSEQ_USE_EXTBUF()\n#define SEQ_PM_DEFINES\t\t\tstruct patmgr_info _pm_info\n#define _SEQ_NEEDBUF(len)\t\t\\\n\tif ((_seqbufptr+(len)) > _seqbuflen) \\\n\t\tseqbuf_dump()\n#define _SEQ_ADVBUF(len)\t\t_seqbufptr += len\n#define SEQ_DUMPBUF\t\t\tseqbuf_dump\n#else\n/*\n * This variation of the sequencer macros is used just to format one event\n * using fixed buffer.\n *\n * The program using the macro library must define the following macros before\n * using this library.\n *\n * #define _seqbuf \t\t name of the buffer (u_char[])\n * #define _SEQ_ADVBUF(len)\t If the applic needs to know the exact\n *\t\t\t\t size of the event, this macro can be used.\n *\t\t\t\t Otherwise this must be defined as empty.\n * #define _seqbufptr\t\t Define the name of index variable or 0 if\n *\t\t\t\t not required.\n */\n#define _SEQ_NEEDBUF(len)\t/* empty */\n#endif\n\n#define PM_LOAD_PATCH(dev, bank, pgm)\t\\\n\t(SEQ_DUMPBUF(), _pm_info.command = _PM_LOAD_PATCH, \\\n\t_pm_info.device=dev, _pm_info.data.data8[0]=pgm, \\\n\t_pm_info.parm1 = bank, _pm_info.parm2 = 1, \\\n\tioctl(seqfd, SNDCTL_PMGR_ACCESS, &_pm_info))\n#define PM_LOAD_PATCHES(dev, bank, pgm) \\\n\t(SEQ_DUMPBUF(), _pm_info.command = _PM_LOAD_PATCH, \\\n\t_pm_info.device=dev, bcopy( pgm, _pm_info.data.data8,  128), \\\n\t_pm_info.parm1 = bank, _pm_info.parm2 = 128, \\\n\tioctl(seqfd, SNDCTL_PMGR_ACCESS, &_pm_info))\n\n#define SEQ_VOLUME_MODE(dev, mode)\t{ \\\n\t_SEQ_NEEDBUF(8);\\\n\t_seqbuf[_seqbufptr] = SEQ_EXTENDED;\\\n\t_seqbuf[_seqbufptr+1] = SEQ_VOLMODE;\\\n\t_seqbuf[_seqbufptr+2] = (dev);\\\n\t_seqbuf[_seqbufptr+3] = (mode);\\\n\t_seqbuf[_seqbufptr+4] = 0;\\\n\t_seqbuf[_seqbufptr+5] = 0;\\\n\t_seqbuf[_seqbufptr+6] = 0;\\\n\t_seqbuf[_seqbufptr+7] = 0;\\\n\t_SEQ_ADVBUF(8);}\n\n/*\n * Midi voice messages\n */\n\n#define _CHN_VOICE(dev, event, chn, note, parm)  { \\\n\t_SEQ_NEEDBUF(8);\\\n\t_seqbuf[_seqbufptr] = EV_CHN_VOICE;\\\n\t_seqbuf[_seqbufptr+1] = (dev);\\\n\t_seqbuf[_seqbufptr+2] = (event);\\\n\t_seqbuf[_seqbufptr+3] = (chn);\\\n\t_seqbuf[_seqbufptr+4] = (note);\\\n\t_seqbuf[_seqbufptr+5] = (parm);\\\n\t_seqbuf[_seqbufptr+6] = (0);\\\n\t_seqbuf[_seqbufptr+7] = 0;\\\n\t_SEQ_ADVBUF(8);}\n\n#define SEQ_START_NOTE(dev, chn, note, vol) \\\n\t\t_CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol)\n\n#define SEQ_STOP_NOTE(dev, chn, note, vol) \\\n\t\t_CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol)\n\n#define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \\\n\t\t_CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)\n\n/*\n * Midi channel messages\n */\n\n#define _CHN_COMMON(dev, event, chn, p1, p2, w14) { \\\n\t_SEQ_NEEDBUF(8);\\\n\t_seqbuf[_seqbufptr] = EV_CHN_COMMON;\\\n\t_seqbuf[_seqbufptr+1] = (dev);\\\n\t_seqbuf[_seqbufptr+2] = (event);\\\n\t_seqbuf[_seqbufptr+3] = (chn);\\\n\t_seqbuf[_seqbufptr+4] = (p1);\\\n\t_seqbuf[_seqbufptr+5] = (p2);\\\n\t*(short *)&_seqbuf[_seqbufptr+6] = (w14);\\\n\t_SEQ_ADVBUF(8);}\n/*\n * SEQ_SYSEX permits sending of sysex messages. (It may look that it permits\n * sending any MIDI bytes but it's absolutely not possible. Trying to do\n * so _will_ cause problems with MPU401 intelligent mode).\n *\n * Sysex messages are sent in blocks of 1 to 6 bytes. Longer messages must be\n * sent by calling SEQ_SYSEX() several times (there must be no other events\n * between them). First sysex fragment must have 0xf0 in the first byte\n * and the last byte (buf[len-1] of the last fragment must be 0xf7. No byte\n * between these sysex start and end markers cannot be larger than 0x7f. Also\n * lengths of each fragments (except the last one) must be 6.\n *\n * Breaking the above rules may work with some MIDI ports but is likely to\n * cause fatal problems with some other devices (such as MPU401).\n */\n#define SEQ_SYSEX(dev, buf, len) { \\\n\tint i, l=(len); if (l>6)l=6;\\\n\t_SEQ_NEEDBUF(8);\\\n\t_seqbuf[_seqbufptr] = EV_SYSEX;\\\n\tfor(i=0;i<l;i++)_seqbuf[_seqbufptr+i+1] = (buf)[i];\\\n\tfor(i=l;i<6;i++)_seqbuf[_seqbufptr+i+1] = 0xff;\\\n\t_SEQ_ADVBUF(8);}\n\n#define SEQ_CHN_PRESSURE(dev, chn, pressure) \\\n\t_CHN_COMMON(dev, MIDI_CHN_PRESSURE, chn, pressure, 0, 0)\n\n#define SEQ_SET_PATCH(dev, chn, patch) \\\n\t_CHN_COMMON(dev, MIDI_PGM_CHANGE, chn, patch, 0, 0)\n\n#define SEQ_CONTROL(dev, chn, controller, value) \\\n\t_CHN_COMMON(dev, MIDI_CTL_CHANGE, chn, controller, 0, value)\n\n#define SEQ_BENDER(dev, chn, value) \\\n\t_CHN_COMMON(dev, MIDI_PITCH_BEND, chn, 0, 0, value)\n\n\n#define SEQ_V2_X_CONTROL(dev, voice, controller, value)\t{ \\\n\t_SEQ_NEEDBUF(8);\\\n\t_seqbuf[_seqbufptr] = SEQ_EXTENDED;\\\n\t_seqbuf[_seqbufptr+1] = SEQ_CONTROLLER;\\\n\t_seqbuf[_seqbufptr+2] = (dev);\\\n\t_seqbuf[_seqbufptr+3] = (voice);\\\n\t_seqbuf[_seqbufptr+4] = (controller);\\\n\t*(short *)&_seqbuf[_seqbufptr+5] = (value);\\\n\t_seqbuf[_seqbufptr+7] = 0;\\\n\t_SEQ_ADVBUF(8);}\n\n/*\n * The following 5 macros are incorrectly implemented and obsolete.\n * Use SEQ_BENDER and SEQ_CONTROL (with proper controller) instead.\n */\n\n#define SEQ_PITCHBEND(dev, voice, value) \\\n\tSEQ_V2_X_CONTROL(dev, voice, CTRL_PITCH_BENDER, value)\n#define SEQ_BENDER_RANGE(dev, voice, value) \\\n\tSEQ_V2_X_CONTROL(dev, voice, CTRL_PITCH_BENDER_RANGE, value)\n#define SEQ_EXPRESSION(dev, voice, value) \\\n\tSEQ_CONTROL(dev, voice, CTL_EXPRESSION, value*128)\n#define SEQ_MAIN_VOLUME(dev, voice, value) \\\n\tSEQ_CONTROL(dev, voice, CTL_MAIN_VOLUME, (value*16383)/100)\n#define SEQ_PANNING(dev, voice, pos) \\\n\tSEQ_CONTROL(dev, voice, CTL_PAN, (pos+128) / 2)\n\n/*\n * Timing and syncronization macros\n */\n\n#define _TIMER_EVENT(ev, parm)\t\t{ \\\n\t_SEQ_NEEDBUF(8);\\\n\t_seqbuf[_seqbufptr+0] = EV_TIMING; \\\n\t_seqbuf[_seqbufptr+1] = (ev); \\\n\t_seqbuf[_seqbufptr+2] = 0;\\\n\t_seqbuf[_seqbufptr+3] = 0;\\\n\t*(u_int *)&_seqbuf[_seqbufptr+4] = (parm); \\\n\t_SEQ_ADVBUF(8); \\\n\t}\n\n#define SEQ_START_TIMER()\t\t_TIMER_EVENT(TMR_START, 0)\n#define SEQ_STOP_TIMER()\t\t_TIMER_EVENT(TMR_STOP, 0)\n#define SEQ_CONTINUE_TIMER()\t\t_TIMER_EVENT(TMR_CONTINUE, 0)\n#define SEQ_WAIT_TIME(ticks)\t\t_TIMER_EVENT(TMR_WAIT_ABS, ticks)\n#define SEQ_DELTA_TIME(ticks)\t\t_TIMER_EVENT(TMR_WAIT_REL, ticks)\n#define SEQ_ECHO_BACK(key)\t\t_TIMER_EVENT(TMR_ECHO, key)\n#define SEQ_SET_TEMPO(value)\t\t_TIMER_EVENT(TMR_TEMPO, value)\n#define SEQ_SONGPOS(pos)\t\t_TIMER_EVENT(TMR_SPP, pos)\n#define SEQ_TIME_SIGNATURE(sig)\t\t_TIMER_EVENT(TMR_TIMESIG, sig)\n\n/*\n * Local control events\n */\n\n#define _LOCAL_EVENT(ev, parm)\t\t{ \\\n\t_SEQ_NEEDBUF(8);\\\n\t_seqbuf[_seqbufptr+0] = EV_SEQ_LOCAL; \\\n\t_seqbuf[_seqbufptr+1] = (ev); \\\n\t_seqbuf[_seqbufptr+2] = 0;\\\n\t_seqbuf[_seqbufptr+3] = 0;\\\n\t*(u_int *)&_seqbuf[_seqbufptr+4] = (parm); \\\n\t_SEQ_ADVBUF(8); \\\n\t}\n\n#define SEQ_PLAYAUDIO(devmask)\t\t_LOCAL_EVENT(LOCL_STARTAUDIO, devmask)\n/*\n * Events for the level 1 interface only\n */\n\n#define SEQ_MIDIOUT(device, byte)\t{ \\\n\t_SEQ_NEEDBUF(4);\\\n\t_seqbuf[_seqbufptr] = SEQ_MIDIPUTC;\\\n\t_seqbuf[_seqbufptr+1] = (byte);\\\n\t_seqbuf[_seqbufptr+2] = (device);\\\n\t_seqbuf[_seqbufptr+3] = 0;\\\n\t_SEQ_ADVBUF(4);}\n\n/*\n * Patch loading.\n */\n#define SEQ_WRPATCH(patchx, len)\t{ \\\n\tif (_seqbufptr) seqbuf_dump(); \\\n\tif (write(seqfd, (char*)(patchx), len)==-1) \\\n\t   perror(\"Write patch: /dev/sequencer\"); \\\n\t}\n\n#define SEQ_WRPATCH2(patchx, len)\t\\\n\t( seqbuf_dump(), write(seqfd, (char*)(patchx), len) )\n\n#endif\n\n/*\n * Here I have moved all the aliases for ioctl names.\n */\n\n#define SNDCTL_DSP_SAMPLESIZE\tSNDCTL_DSP_SETFMT\n#define SOUND_PCM_WRITE_BITS\tSNDCTL_DSP_SETFMT\n#define SOUND_PCM_SETFMT\tSNDCTL_DSP_SETFMT\n\n#define SOUND_PCM_WRITE_RATE\tSNDCTL_DSP_SPEED\n#define SOUND_PCM_POST\t\tSNDCTL_DSP_POST\n#define SOUND_PCM_RESET\t\tSNDCTL_DSP_RESET\n#define SOUND_PCM_SYNC\t\tSNDCTL_DSP_SYNC\n#define SOUND_PCM_SUBDIVIDE\tSNDCTL_DSP_SUBDIVIDE\n#define SOUND_PCM_SETFRAGMENT\tSNDCTL_DSP_SETFRAGMENT\n#define SOUND_PCM_GETFMTS\tSNDCTL_DSP_GETFMTS\n#define SOUND_PCM_GETOSPACE\tSNDCTL_DSP_GETOSPACE\n#define SOUND_PCM_GETISPACE\tSNDCTL_DSP_GETISPACE\n#define SOUND_PCM_NONBLOCK\tSNDCTL_DSP_NONBLOCK\n#define SOUND_PCM_GETCAPS\tSNDCTL_DSP_GETCAPS\n#define SOUND_PCM_GETTRIGGER\tSNDCTL_DSP_GETTRIGGER\n#define SOUND_PCM_SETTRIGGER\tSNDCTL_DSP_SETTRIGGER\n#define SOUND_PCM_SETSYNCRO\tSNDCTL_DSP_SETSYNCRO\n#define SOUND_PCM_GETIPTR\tSNDCTL_DSP_GETIPTR\n#define SOUND_PCM_GETOPTR\tSNDCTL_DSP_GETOPTR\n#define SOUND_PCM_MAPINBUF\tSNDCTL_DSP_MAPINBUF\n#define SOUND_PCM_MAPOUTBUF\tSNDCTL_DSP_MAPOUTBUF\n\n/***********************************************************************/\n\n/**\n * XXX OSSv4 defines -- some bits taken straight out of the new\n * sys/soundcard.h bundled with recent OSS releases.\n *\n * NB:  These macros and structures will be reorganized and inserted\n * \tin appropriate places throughout this file once the code begins\n * \tto take shape.\n *\n * @todo reorganize layout more like the 4Front version\n * @todo ask about maintaining __SIOWR vs. _IOWR ioctl cmd defines\n */\n\n/**\n * @note The @c OSSV4_EXPERIMENT macro is meant to wrap new development code\n * in the sound system relevant to adopting 4Front's OSSv4 specification.\n * Users should not enable this!  Really!\n */\n#if 0\n# define OSSV4_EXPERIMENT 1\n#else\n# undef OSSV4_EXPERIMENT\n#endif\n\n#ifdef SOUND_VERSION\n# undef SOUND_VERSION\n# define SOUND_VERSION\t0x040000\n#endif\t/* !SOUND_VERSION */\n\n#define OSS_LONGNAME_SIZE\t64\n#define OSS_LABEL_SIZE\t\t16\n#define OSS_DEVNODE_SIZE        32\ntypedef char oss_longname_t[OSS_LONGNAME_SIZE];\ntypedef char oss_label_t[OSS_LABEL_SIZE];\ntypedef char oss_devnode_t[OSS_DEVNODE_SIZE];\n\ntypedef struct audio_errinfo\n{\n\tint\t\tplay_underruns;\n\tint\t\trec_overruns;\n\tunsigned int\tplay_ptradjust;\n\tunsigned int\trec_ptradjust;\n\tint\t\tplay_errorcount;\n\tint\t\trec_errorcount;\n\tint\t\tplay_lasterror;\n\tint\t\trec_lasterror;\n\tlong\t\tplay_errorparm;\n\tlong\t\trec_errorparm;\n\tint\t\tfiller[16];\n} audio_errinfo;\n\n#define SNDCTL_DSP_GETPLAYVOL           _IOR ('P', 24, int)\n#define SNDCTL_DSP_SETPLAYVOL           _IOWR('P', 24, int)\n#define SNDCTL_DSP_GETERROR             _IOR ('P', 25, audio_errinfo)\n\n\n/*\n ****************************************************************************\n * Sync groups for audio devices\n */\ntypedef struct oss_syncgroup\n{\n  int id;\n  int mode;\n  int filler[16];\n} oss_syncgroup;\n\n#define SNDCTL_DSP_SYNCGROUP            _IOWR('P', 28, oss_syncgroup)\n#define SNDCTL_DSP_SYNCSTART            _IOW ('P', 29, int)\n\n/*\n **************************************************************************\n * \"cooked\" mode enables software based conversions for sample rate, sample\n * format (bits) and number of channels (mono/stereo). These conversions are\n * required with some devices that support only one sample rate or just stereo\n * to let the applications to use other formats. The cooked mode is enabled by\n * default. However it's necessary to disable this mode when mmap() is used or\n * when very deterministic timing is required. SNDCTL_DSP_COOKEDMODE is an\n * optional call introduced in OSS 3.9.6f. It's _error return must be ignored_\n * since normally this call will return erno=EINVAL.\n *\n * SNDCTL_DSP_COOKEDMODE must be called immediately after open before doing\n * anything else. Otherwise the call will not have any effect.\n */\n#define SNDCTL_DSP_COOKEDMODE           _IOW ('P', 30, int)\n\n/*\n **************************************************************************\n * SNDCTL_DSP_SILENCE and SNDCTL_DSP_SKIP are new calls in OSS 3.99.0\n * that can be used to implement pause/continue during playback (no effect\n * on recording).\n */\n#define SNDCTL_DSP_SILENCE              _IO  ('P', 31)\n#define SNDCTL_DSP_SKIP                 _IO  ('P', 32)\n\n/*\n ****************************************************************************\n * Abort transfer (reset) functions for input and output\n */\n#define SNDCTL_DSP_HALT_INPUT\t\t_IO  ('P', 33)\n#define SNDCTL_DSP_RESET_INPUT\tSNDCTL_DSP_HALT_INPUT\t/* Old name */\n#define SNDCTL_DSP_HALT_OUTPUT\t\t_IO  ('P', 34)\n#define SNDCTL_DSP_RESET_OUTPUT\tSNDCTL_DSP_HALT_OUTPUT\t/* Old name */\n\n/*\n ****************************************************************************\n * Low water level control\n */\n#define SNDCTL_DSP_LOW_WATER\t\t_IOW ('P', 34, int)\n\n/** @todo Get rid of OSS_NO_LONG_LONG references? */\n\n/*\n ****************************************************************************\n * 64 bit pointer support. Only available in environments that support\n * the 64 bit (long long) integer type.\n */\n#ifndef OSS_NO_LONG_LONG\ntypedef struct\n{\n  long long samples;\n  int fifo_samples;\n  int filler[32];\t\t/* For future use */\n} oss_count_t;\n\n#define SNDCTL_DSP_CURRENT_IPTR\t\t_IOR ('P', 35, oss_count_t)\n#define SNDCTL_DSP_CURRENT_OPTR\t\t_IOR ('P', 36, oss_count_t)\n#endif\n\n/*\n ****************************************************************************\n * Interface for selecting recording sources and playback output routings.\n */\n#define SNDCTL_DSP_GET_RECSRC_NAMES     _IOR ('P', 37, oss_mixer_enuminfo)\n#define SNDCTL_DSP_GET_RECSRC           _IOR ('P', 38, int)\n#define SNDCTL_DSP_SET_RECSRC           _IOWR('P', 38, int)\n\n#define SNDCTL_DSP_GET_PLAYTGT_NAMES    _IOR ('P', 39, oss_mixer_enuminfo)\n#define SNDCTL_DSP_GET_PLAYTGT          _IOR ('P', 40, int)\n#define SNDCTL_DSP_SET_PLAYTGT          _IOWR('P', 40, int)\n#define SNDCTL_DSP_GETRECVOL            _IOR ('P', 41, int)\n#define SNDCTL_DSP_SETRECVOL            _IOWR('P', 41, int)\n\n/*\n ***************************************************************************\n * Some calls for setting the channel assignment with multi channel devices\n * (see the manual for details).                                                 */\n#define SNDCTL_DSP_GET_CHNORDER         _IOR ('P', 42, unsigned long long)\n#define SNDCTL_DSP_SET_CHNORDER         _IOWR('P', 42, unsigned long long)\n#       define CHID_UNDEF       0\n#       define CHID_L           1                                               #       define CHID_R           2\n#       define CHID_C           3\n#       define CHID_LFE         4\n#       define CHID_LS          5\n#       define CHID_RS          6\n#       define CHID_LR          7\n#       define CHID_RR          8\n#define CHNORDER_UNDEF          0x0000000000000000ULL\n#define CHNORDER_NORMAL         0x0000000087654321ULL\n\n#define MAX_PEAK_CHANNELS\t128\ntypedef unsigned short oss_peaks_t[MAX_PEAK_CHANNELS];\n#define SNDCTL_DSP_GETIPEAKS\t\t_IOR('P', 43, oss_peaks_t)\n#define SNDCTL_DSP_GETOPEAKS\t\t_IOR('P', 44, oss_peaks_t)\n#define SNDCTL_DSP_POLICY               _IOW('P', 45, int)    /* See the manual */\n\n/*\n * OSS_SYSIFO is obsolete. Use SNDCTL_SYSINFO insteads.\n */\n#define OSS_GETVERSION                  _IOR ('M', 118, int)\n\n/**\n * @brief\tArgument for SNDCTL_SYSINFO ioctl.\n *\n * For use w/ the SNDCTL_SYSINFO ioctl available on audio (/dev/dsp*),\n * mixer, and MIDI devices.\n */\ntypedef struct oss_sysinfo\n{\n\tchar\tproduct[32];\t/* For example OSS/Free, OSS/Linux or\n\t\t\t\t   OSS/Solaris */\n\tchar\tversion[32];\t/* For example 4.0a */\n\tint\tversionnum;\t/* See OSS_GETVERSION */\n\tchar\toptions[128];\t/* Reserved */\n\n\tint\tnumaudios;\t/* # of audio/dsp devices */\n\tint\topenedaudio[8];\t/* Bit mask telling which audio devices\n\t\t\t\t   are busy */\n\n\tint\tnumsynths;\t/* # of availavle synth devices */\n\tint\tnummidis;\t/* # of available MIDI ports */\n\tint\tnumtimers;\t/* # of available timer devices */\n\tint\tnummixers;\t/* # of mixer devices */\n\n\tint\topenedmidi[8];\t/* Bit mask telling which midi devices\n\t\t\t\t   are busy */\n\tint\tnumcards;\t/* Number of sound cards in the system */\n\tint\tfiller[241];\t/* For future expansion (set to -1) */\n} oss_sysinfo;\n\ntypedef struct oss_mixext\n{\n  int dev;\t\t\t/* Mixer device number */\n  int ctrl;\t\t\t/* Controller number */\n  int type;\t\t\t/* Entry type */\n#\tdefine MIXT_DEVROOT\t 0\t/* Device root entry */\n#\tdefine MIXT_GROUP\t 1\t/* Controller group */\n#\tdefine MIXT_ONOFF\t 2\t/* OFF (0) or ON (1) */\n#\tdefine MIXT_ENUM\t 3\t/* Enumerated (0 to maxvalue) */\n#\tdefine MIXT_MONOSLIDER\t 4\t/* Mono slider (0 to 100) */\n#\tdefine MIXT_STEREOSLIDER 5\t/* Stereo slider (dual 0 to 100) */\n#\tdefine MIXT_MESSAGE\t 6\t/* (Readable) textual message */\n#\tdefine MIXT_MONOVU\t 7\t/* VU meter value (mono) */\n#\tdefine MIXT_STEREOVU\t 8\t/* VU meter value (stereo) */\n#\tdefine MIXT_MONOPEAK\t 9\t/* VU meter peak value (mono) */\n#\tdefine MIXT_STEREOPEAK\t10\t/* VU meter peak value (stereo) */\n#\tdefine MIXT_RADIOGROUP\t11\t/* Radio button group */\n#\tdefine MIXT_MARKER\t12\t/* Separator between normal and extension entries */\n#\tdefine MIXT_VALUE\t13\t/* Decimal value entry */\n#\tdefine MIXT_HEXVALUE\t14\t/* Hexadecimal value entry */\n#\tdefine MIXT_MONODB\t15\t/* Mono atten. slider (0 to -144) */\n#\tdefine MIXT_STEREODB\t16\t/* Stereo atten. slider (dual 0 to -144) */\n#\tdefine MIXT_SLIDER\t17\t/* Slider (mono) with full integer range */\n#\tdefine MIXT_3D\t\t18\n\n  /* Possible value range (minvalue to maxvalue) */\n  /* Note that maxvalue may also be smaller than minvalue */\n  int maxvalue;\n  int minvalue;\n\n  int flags;\n#\tdefine MIXF_READABLE\t0x00000001\t/* Has readable value */\n#\tdefine MIXF_WRITEABLE\t0x00000002\t/* Has writeable value */\n#\tdefine MIXF_POLL\t0x00000004\t/* May change itself */\n#\tdefine MIXF_HZ\t\t0x00000008\t/* Herz scale */\n#\tdefine MIXF_STRING\t0x00000010\t/* Use dynamic extensions for value */\n#\tdefine MIXF_DYNAMIC\t0x00000010\t/* Supports dynamic extensions */\n#\tdefine MIXF_OKFAIL\t0x00000020\t/* Interpret value as 1=OK, 0=FAIL */\n#\tdefine MIXF_FLAT\t0x00000040\t/* Flat vertical space requirements */\n#\tdefine MIXF_LEGACY\t0x00000080\t/* Legacy mixer control group */\n  char id[16];\t\t\t/* Mnemonic ID (mainly for internal use) */\n  int parent;\t\t\t/* Entry# of parent (group) node (-1 if root) */\n\n  int dummy;\t\t\t/* Internal use */\n\n  int timestamp;\n\n  char data[64];\t\t/* Misc data (entry type dependent) */\n  unsigned char enum_present[32];\t/* Mask of allowed enum values */\n  int control_no;\t\t/* SOUND_MIXER_VOLUME..SOUND_MIXER_MIDI */\n  /* (-1 means not indicated) */\n\n/*\n * The desc field is reserved for internal purposes of OSS. It should not be \n * used by applications.\n */\n  unsigned int desc;\n#define MIXEXT_SCOPE_MASK\t\t\t0x0000003f\n#define MIXEXT_SCOPE_OTHER\t\t\t0x00000000\n#define MIXEXT_SCOPE_INPUT\t\t\t0x00000001\n#define MIXEXT_SCOPE_OUTPUT\t\t\t0x00000002\n#define MIXEXT_SCOPE_MONITOR\t\t\t0x00000003\n#define MIXEXT_SCOPE_RECSWITCH\t\t\t0x00000004\n\n  char extname[32];\n  int update_counter;\n  int filler[7];\n} oss_mixext;\n\ntypedef struct oss_mixext_root\n{\n  char id[16];\n  char name[48];\n} oss_mixext_root;\n\ntypedef struct oss_mixer_value\n{\n  int dev;\n  int ctrl;\n  int value;\n  int flags;\t\t\t/* Reserved for future use. Initialize to 0 */\n  int timestamp;\t\t/* Must be set to oss_mixext.timestamp */\n  int filler[8];\t\t/* Reserved for future use. Initialize to 0 */\n} oss_mixer_value;\n\n#define OSS_ENUM_MAXVALUE       255\ntypedef struct oss_mixer_enuminfo\n{\n\tint\tdev;\n\tint\tctrl;\n\tint\tnvalues;\n\tint\tversion;                  /* Read the manual */\n\tshort\tstrindex[OSS_ENUM_MAXVALUE];\n\tchar\tstrings[3000];\n} oss_mixer_enuminfo;\n\n#define OPEN_READ       PCM_ENABLE_INPUT\n#define OPEN_WRITE      PCM_ENABLE_OUTPUT\n#define OPEN_READWRITE  (OPEN_READ|OPEN_WRITE)\n\n/**\n * @brief\tArgument for SNDCTL_AUDIOINFO ioctl.\n *\n * For use w/ the SNDCTL_AUDIOINFO ioctl available on audio (/dev/dsp*)\n * devices.\n */\ntypedef struct oss_audioinfo\n{\n\tint\tdev;\t\t/* Audio device number */\n\tchar\tname[64];\n\tint\tbusy;\t\t/* 0, OPEN_READ, OPEN_WRITE or OPEN_READWRITE */\n\tint\tpid;\n\tint\tcaps;\t\t/* DSP_CAP_INPUT, DSP_CAP_OUTPUT */\n\tint\tiformats;\n\tint\toformats;\n\tint\tmagic;\t\t/* Reserved for internal use */\n\tchar \tcmd[64];\t/* Command using the device (if known) */\n\tint\tcard_number;\n\tint\tport_number;\n\tint\tmixer_dev;\n\tint\treal_device;\t/* Obsolete field. Replaced by devnode */\n\tint\tenabled;\t/* 1=enabled, 0=device not ready at this\n\t\t\t\t   moment */\n\tint\tflags;\t\t/* For internal use only - no practical\n\t\t\t\t   meaning */\n\tint\tmin_rate;\t/* Sample rate limits */\n\tint\tmax_rate;\n\tint\tmin_channels;\t/* Number of channels supported */\n\tint\tmax_channels;\n\tint\tbinding;\t/* DSP_BIND_FRONT, etc. 0 means undefined */\n\tint\trate_source;\n\tchar\thandle[32];\n\t#define OSS_MAX_SAMPLE_RATES\t20\t/* Cannot be changed  */\n\tunsigned int nrates;\n\tunsigned int rates[OSS_MAX_SAMPLE_RATES]; /* Please read the manual before using these */\n\toss_longname_t\tsong_name;\t/* Song name (if given) */\n\toss_label_t\tlabel;\t\t/* Device label (if given) */\n\tint\t\tlatency;\t/* In usecs, -1=unknown */\n\toss_devnode_t\tdevnode;\t/* Device special file name (inside\n\t\t\t\t\t   /dev) */\n\tint filler[186];\n} oss_audioinfo;\n\ntypedef struct oss_mixerinfo\n{\n  int dev;\n  char id[16];\n  char name[32];\n  int modify_counter;\n  int card_number;\n  int port_number;\n  char handle[32];\n  int magic;\t\t\t/* Reserved */\n  int enabled;\t\t\t/* Reserved */\n  int caps;\n#define MIXER_CAP_VIRTUAL\t\t\t\t0x00000001\n  int flags;\t\t\t/* Reserved */\n  int nrext;\n  /*\n   * The priority field can be used to select the default (motherboard)\n   * mixer device. The mixer with the highest priority is the\n   * most preferred one. -2 or less means that this device cannot be used\n   * as the default mixer.\n   */\n  int priority;\n  int filler[254];\t\t/* Reserved */\n} oss_mixerinfo;\n\ntypedef struct oss_midi_info\n{\n  int dev;\t\t\t/* Midi device number */\n  char name[64];\n  int busy;\t\t\t/* 0, OPEN_READ, OPEN_WRITE or OPEN_READWRITE */\n  int pid;\n  char cmd[64];\t\t\t/* Command using the device (if known) */\n  int caps;\n#define MIDI_CAP_MPU401\t\t0x00000001\t/**** OBSOLETE ****/\n#define MIDI_CAP_INPUT\t\t0x00000002\n#define MIDI_CAP_OUTPUT\t\t0x00000004\n#define MIDI_CAP_INOUT\t\t(MIDI_CAP_INPUT|MIDI_CAP_OUTPUT)\n#define MIDI_CAP_VIRTUAL\t0x00000008\t/* Pseudo device */\n#define MIDI_CAP_MTCINPUT\t0x00000010\t/* Supports SNDCTL_MIDI_MTCINPUT */\n#define MIDI_CAP_CLIENT\t\t0x00000020\t/* Virtual client side device */\n#define MIDI_CAP_SERVER\t\t0x00000040\t/* Virtual server side device */\n#define MIDI_CAP_INTERNAL\t0x00000080\t/* Internal (synth) device */\n#define MIDI_CAP_EXTERNAL\t0x00000100\t/* external (MIDI port) device */\n#define MIDI_CAP_PTOP\t\t0x00000200\t/* Point to point link to one device */\n#define MIDI_CAP_MTC\t\t0x00000400\t/* MTC/SMPTE (control) device */\n  int magic;\t\t\t/* Reserved for internal use */\n  int card_number;\n  int port_number;\n  int enabled;\t\t\t/* 1=enabled, 0=device not ready at this moment */\n  int flags;\t\t\t/* For internal use only - no practical meaning */\n  char handle[32];\n  oss_longname_t song_name;\t/* Song name (if known) */\n  oss_label_t label;\t\t/* Device label (if given) */\n  int latency;\t\t\t/* In usecs, -1=unknown */\n  int filler[244];\n} oss_midi_info;\n\ntypedef struct oss_card_info\n{\n  int card;\n  char shortname[16];\n  char longname[128];\n  int flags;\n  int filler[256];\n} oss_card_info;\n\n#define SNDCTL_SYSINFO          _IOR ('X', 1, oss_sysinfo)\n#define OSS_SYSINFO             SNDCTL_SYSINFO /* Old name */\n\n#define SNDCTL_MIX_NRMIX\t_IOR ('X', 2, int)\n#define SNDCTL_MIX_NREXT\t_IOWR('X', 3, int)\n#define SNDCTL_MIX_EXTINFO\t_IOWR('X', 4, oss_mixext)\n#define SNDCTL_MIX_READ\t\t_IOWR('X', 5, oss_mixer_value)\n#define SNDCTL_MIX_WRITE\t_IOWR('X', 6, oss_mixer_value)\n\n#define SNDCTL_AUDIOINFO\t_IOWR('X', 7, oss_audioinfo)\n#define SNDCTL_MIX_ENUMINFO\t_IOWR('X', 8, oss_mixer_enuminfo)\n#define SNDCTL_MIDIINFO\t\t_IOWR('X', 9, oss_midi_info)\n#define SNDCTL_MIXERINFO\t_IOWR('X',10, oss_mixerinfo)\n#define SNDCTL_CARDINFO\t\t_IOWR('X',11, oss_card_info)\n\n/*\n * Few more \"globally\" available ioctl calls.\n */\n#define SNDCTL_SETSONG          _IOW ('Y', 2, oss_longname_t)\n#define SNDCTL_GETSONG          _IOR ('Y', 2, oss_longname_t)\n#define SNDCTL_SETNAME          _IOW ('Y', 3, oss_longname_t)\n#define SNDCTL_SETLABEL         _IOW ('Y', 4, oss_label_t)\n#define SNDCTL_GETLABEL         _IOR ('Y', 4, oss_label_t)\n\n#endif\t/* !_SYS_SOUNDCARD_H_ */\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/install.txt",
    "content": "RtAudio - a set of C++ classes which provide a common API for realtime audio input/output across Linux (native ALSA, JACK, PulseAudio, and OSS), Macintosh OS X (CoreAudio and JACK), and Windows (DirectSound, ASIO and WASAPI) operating systems.\n\nBy Gary P. Scavone, 2001-2017.\n\nTo configure and compile (on Unix systems and MinGW):\n\n1. Unpack the RtAudio distribution (tar -xzf rtaudio-x.x.tar.gz).\n\n2. From within the directory containing this file, run configure:\n\n   ./configure\n\n   If you checked out the code from git, just run \"autogen.sh\".\n\n3. Typing \"make\" will compile static and shared libraries, as well as the example programs in the \"tests/\" directory.\n\nA few options can be passed to configure (or the autogen.sh script), including:\n\n  --enable-debug = enable various debug output\n  --with-alsa = choose native ALSA API support (linux only)\n  --with-pulse = choose native PulseAudio API support (linux only)\n  --with-oss = choose OSS API support (unixes)\n  --with-jack = choose JACK server support (linux or Macintosh OS-X)\n  --with-core = choose CoreAudio API support (Macintosh OS-X only)\n  --with-asio = choose ASIO API support (windows only)\n  --with-wasapi = choose Windows Audio System API support (windows only)\n  --with-ds = choose DirectSound API support (windows only)\n\nTyping \"./configure --help\" will display all the available options.  Note that you can provide more than one \"--with-\" flag to the configure script to enable multiple API support.\n\nIf you wish to use a different compiler than that selected by configure, specify that compiler in the command line (ex. to use CC):\n\n  ./configure CXX=CC\n\n\nCMAKE USAGE:\n\nCMake support is provided via the CMakeLists.txt files.  Assuming you have CMake installed on your system, a typical usage would involve the following steps (from within the parent distribution directory):\n\nmkdir _build_\ncd _build_\ncmake <path to CMakeLists.txt usually two dots> <options> e.g. cmake .. -DAUDIO_WINDOWS_WASAPI=ON\n\n\nWINDOWS:\n\nAll Windows audio APIs in RtAudio compile with either the MinGW compiler (tested with latest tdm64-gcc-4.8.1) or MS Visual Studio.\n\nVisual C++ 6.0 project files (very old) are included for the test programs in the /tests/Windows/ directory.  These projects compile API support for ASIO, WASAPI and DirectSound.\n\n\nLINUX OSS:\n\nThe OSS API support in RtAudio has not been tested for many years.  I'm not even sure there are OSS drivers supporting recent linux kernels.  In all likelihood, the OSS API code in RtAudio will disappear within the next year or two (if you don't want this to happen, let me know).\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/rtaudio.pc.in",
    "content": "prefix=@prefix@\nexec_prefix=${prefix}\nlibdir=${exec_prefix}/lib\nincludedir=${prefix}/include/rtaudio        \n\nName: librtaudio\nDescription: RtAudio - a set of C++ classes that provide a common API for realtime audio input/output\nVersion: @PACKAGE_VERSION@\nRequires: @req@ \nLibs: -L${libdir} -lrtaudio\nLibs.private: -lpthread\nCflags: -pthread -I${includedir} @api@\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/rtaudio_c.cpp",
    "content": "#include \"rtaudio_c.h\"\n#include \"RtAudio.h\"\n\n#include <cstring>\n\n#define MAX_ERROR_MESSAGE_LENGTH 512\n\nstruct rtaudio {\n  RtAudio *audio;\n\n  rtaudio_cb_t cb;\n  void *userdata;\n\n  int has_error;\n  char errmsg[MAX_ERROR_MESSAGE_LENGTH];\n};\n\nstatic const rtaudio_api_t compiled_api[] = {\n#if defined(__UNIX_JACK__)\n    RTAUDIO_API_UNIX_JACK,\n#endif\n#if defined(__LINUX_ALSA__)\n    RTAUDIO_API_LINUX_ALSA,\n#endif\n#if defined(__LINUX_PULSE__)\n    RTAUDIO_API_LINUX_PULSE,\n#endif\n#if defined(__LINUX_OSS__)\n    RTAUDIO_API_LINUX_OSS,\n#endif\n#if defined(__WINDOWS_ASIO__)\n    RTAUDIO_API_WINDOWS_ASIO,\n#endif\n#if defined(__WINDOWS_WASAPI__)\n    RTAUDIO_API_WINDOWS_WASAPI,\n#endif\n#if defined(__WINDOWS_DS__)\n    RTAUDIO_API_WINDOWS_DS,\n#endif\n#if defined(__MACOSX_CORE__)\n    RTAUDIO_API_MACOSX_CORE,\n#endif\n#if defined(__RTAUDIO_DUMMY__)\n    RTAUDIO_API_DUMMY,\n#endif\n    RTAUDIO_API_UNSPECIFIED,\n};\n\nconst char *rtaudio_version() { return RTAUDIO_VERSION; }\n\nconst rtaudio_api_t *rtaudio_compiled_api() { return compiled_api; }\n\nconst char *rtaudio_error(rtaudio_t audio) {\n  if (audio->has_error) {\n    return audio->errmsg;\n  }\n  return NULL;\n}\n\nrtaudio_t rtaudio_create(rtaudio_api_t api) {\n  rtaudio_t audio = new struct rtaudio();\n  try {\n    audio->audio = new RtAudio((RtAudio::Api)api);\n  } catch (RtAudioError &err) {\n    audio->has_error = 1;\n    strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1);\n  }\n  return audio;\n}\n\nvoid rtaudio_destroy(rtaudio_t audio) { delete audio->audio; }\n\nrtaudio_api_t rtaudio_current_api(rtaudio_t audio) {\n  return (rtaudio_api_t)audio->audio->getCurrentApi();\n}\n\nint rtaudio_device_count(rtaudio_t audio) {\n  return audio->audio->getDeviceCount();\n}\n\nrtaudio_device_info_t rtaudio_get_device_info(rtaudio_t audio, int i) {\n  rtaudio_device_info_t result;\n  std::memset(&result, 0, sizeof(result));\n  try {\n    audio->has_error = 0;\n    RtAudio::DeviceInfo info = audio->audio->getDeviceInfo(i);\n    result.probed = info.probed;\n    result.output_channels = info.outputChannels;\n    result.input_channels = info.inputChannels;\n    result.duplex_channels = info.duplexChannels;\n    result.is_default_output = info.isDefaultOutput;\n    result.is_default_input = info.isDefaultInput;\n    result.native_formats = info.nativeFormats;\n    result.preferred_sample_rate = info.preferredSampleRate;\n    strncpy(result.name, info.name.c_str(), sizeof(result.name) - 1);\n    for (unsigned int j = 0; j < info.sampleRates.size(); j++) {\n      if (j < sizeof(result.sample_rates) / sizeof(result.sample_rates[0])) {\n        result.sample_rates[j] = info.sampleRates[j];\n      }\n    }\n  } catch (RtAudioError &err) {\n    audio->has_error = 1;\n    strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1);\n  }\n  return result;\n}\n\nunsigned int rtaudio_get_default_output_device(rtaudio_t audio) {\n  return audio->audio->getDefaultOutputDevice();\n}\n\nunsigned int rtaudio_get_default_input_device(rtaudio_t audio) {\n  return audio->audio->getDefaultInputDevice();\n}\n\nstatic int proxy_cb_func(void *out, void *in, unsigned int nframes, double time,\n                         RtAudioStreamStatus status, void *userdata) {\n  rtaudio_t audio = (rtaudio_t)userdata;\n  return audio->cb(out, in, nframes, time, (rtaudio_stream_status_t)status,\n                   audio->userdata);\n}\n\nint rtaudio_open_stream(rtaudio_t audio,\n                        rtaudio_stream_parameters_t *output_params,\n                        rtaudio_stream_parameters_t *input_params,\n                        rtaudio_format_t format, unsigned int sample_rate,\n                        unsigned int *buffer_frames, rtaudio_cb_t cb,\n                        void *userdata, rtaudio_stream_options_t *options,\n                        rtaudio_error_cb_t /*errcb*/) {\n  try {\n    audio->has_error = 0;\n    RtAudio::StreamParameters *in = NULL;\n    RtAudio::StreamParameters *out = NULL;\n    RtAudio::StreamOptions *opts = NULL;\n\n    RtAudio::StreamParameters inparams;\n    RtAudio::StreamParameters outparams;\n    RtAudio::StreamOptions stream_opts;\n\n    if (input_params != NULL) {\n      inparams.deviceId = input_params->device_id;\n      inparams.nChannels = input_params->num_channels;\n      inparams.firstChannel = input_params->first_channel;\n      in = &inparams;\n    }\n    if (output_params != NULL) {\n      outparams.deviceId = output_params->device_id;\n      outparams.nChannels = output_params->num_channels;\n      outparams.firstChannel = output_params->first_channel;\n      out = &outparams;\n    }\n\n    if (options != NULL) {\n      stream_opts.flags = (RtAudioStreamFlags)options->flags;\n      stream_opts.numberOfBuffers = options->num_buffers;\n      stream_opts.priority = options->priority;\n      if (strlen(options->name) > 0) {\n        stream_opts.streamName = std::string(options->name);\n      }\n      opts = &stream_opts;\n    }\n    audio->cb = cb;\n    audio->userdata = userdata;\n    audio->audio->openStream(out, in, (RtAudioFormat)format, sample_rate,\n                             buffer_frames, proxy_cb_func, (void *)audio, opts,\n                             NULL);\n    return 0;\n  } catch (RtAudioError &err) {\n    audio->has_error = 1;\n    strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1);\n    return -1;\n  }\n}\n\nvoid rtaudio_close_stream(rtaudio_t audio) { audio->audio->closeStream(); }\n\nint rtaudio_start_stream(rtaudio_t audio) {\n  try {\n    audio->has_error = 0;\n    audio->audio->startStream();\n  } catch (RtAudioError &err) {\n    audio->has_error = 1;\n    strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1);\n  }\n  return 0;\n}\n\nint rtaudio_stop_stream(rtaudio_t audio) {\n  try {\n    audio->has_error = 0;\n    audio->audio->stopStream();\n  } catch (RtAudioError &err) {\n    audio->has_error = 1;\n    strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1);\n  }\n  return 0;\n}\n\nint rtaudio_abort_stream(rtaudio_t audio) {\n  try {\n    audio->has_error = 0;\n    audio->audio->abortStream();\n  } catch (RtAudioError &err) {\n    audio->has_error = 1;\n    strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1);\n  }\n  return 0;\n}\n\nint rtaudio_is_stream_open(rtaudio_t audio) {\n  return !!audio->audio->isStreamOpen();\n}\n\nint rtaudio_is_stream_running(rtaudio_t audio) {\n  return !!audio->audio->isStreamRunning();\n}\n\ndouble rtaudio_get_stream_time(rtaudio_t audio) {\n  try {\n    audio->has_error = 0;\n    return audio->audio->getStreamTime();\n  } catch (RtAudioError &err) {\n    audio->has_error = 1;\n    strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1);\n    return 0;\n  }\n}\n\nvoid rtaudio_set_stream_time(rtaudio_t audio, double time) {\n  try {\n    audio->has_error = 0;\n    audio->audio->setStreamTime(time);\n  } catch (RtAudioError &err) {\n    audio->has_error = 1;\n    strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1);\n  }\n}\n\nint rtaudio_get_stream_latency(rtaudio_t audio) {\n  try {\n    audio->has_error = 0;\n    return audio->audio->getStreamLatency();\n  } catch (RtAudioError &err) {\n    audio->has_error = 1;\n    strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1);\n    return -1;\n  }\n}\n\nunsigned int rtaudio_get_stream_sample_rate(rtaudio_t audio) {\n  try {\n    return audio->audio->getStreamSampleRate();\n  } catch (RtAudioError &err) {\n    audio->has_error = 1;\n    strncpy(audio->errmsg, err.what(), sizeof(audio->errmsg) - 1);\n    return -1;\n  }\n}\n\nvoid rtaudio_show_warnings(rtaudio_t audio, int show) {\n  audio->audio->showWarnings(!!show);\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/rtaudio_c.h",
    "content": "#ifndef RTAUDIO_C_H\n#define RTAUDIO_C_H\n\n#if defined(RTAUDIO_EXPORT)\n#define RTAUDIOAPI __declspec(dllexport)\n#else\n#define RTAUDIOAPI //__declspec(dllimport)\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\ntypedef unsigned long rtaudio_format_t;\n\n#define RTAUDIO_FORMAT_SINT8 0x01\n#define RTAUDIO_FORMAT_SINT16 0x02\n#define RTAUDIO_FORMAT_SINT24 0x04\n#define RTAUDIO_FORMAT_SINT32 0x08\n#define RTAUDIO_FORMAT_FLOAT32 0x10\n#define RTAUDIO_FORMAT_FLOAT64 0x20\n\ntypedef unsigned int rtaudio_stream_flags_t;\n\n#define RTAUDIO_FLAGS_NONINTERLEAVED 0x1\n#define RTAUDIO_FLAGS_MINIMIZE_LATENCY 0x2\n#define RTAUDIO_FLAGS_HOG_DEVICE 0x4\n#define RTAUDIO_FLAGS_SCHEDULE_REALTIME 0x8\n#define RTAUDIO_FLAGS_ALSA_USE_DEFAULT 0x10\n\ntypedef unsigned int rtaudio_stream_status_t;\n\n#define RTAUDIO_STATUS_INPUT_OVERFLOW 0x1\n#define RTAUDIO_STATUS_OUTPUT_UNDERFLOW 0x2\n\ntypedef int (*rtaudio_cb_t)(void *out, void *in, unsigned int nFrames,\n                            double stream_time, rtaudio_stream_status_t status,\n                            void *userdata);\n\ntypedef enum rtaudio_error {\n  RTAUDIO_ERROR_WARNING,\n  RTAUDIO_ERROR_DEBUG_WARNING,\n  RTAUDIO_ERROR_UNSPECIFIED,\n  RTAUDIO_ERROR_NO_DEVICES_FOUND,\n  RTAUDIO_ERROR_INVALID_DEVICE,\n  RTAUDIO_ERROR_MEMORY_ERROR,\n  RTAUDIO_ERROR_INVALID_PARAMETER,\n  RTAUDIO_ERROR_INVALID_USE,\n  RTAUDIO_ERROR_DRIVER_ERROR,\n  RTAUDIO_ERROR_SYSTEM_ERROR,\n  RTAUDIO_ERROR_THREAD_ERROR,\n} rtaudio_error_t;\n\ntypedef void (*rtaudio_error_cb_t)(rtaudio_error_t err, const char *msg);\n\ntypedef enum rtaudio_api {\n  RTAUDIO_API_UNSPECIFIED,\n  RTAUDIO_API_LINUX_ALSA,\n  RTAUDIO_API_LINUX_PULSE,\n  RTAUDIO_API_LINUX_OSS,\n  RTAUDIO_API_UNIX_JACK,\n  RTAUDIO_API_MACOSX_CORE,\n  RTAUDIO_API_WINDOWS_WASAPI,\n  RTAUDIO_API_WINDOWS_ASIO,\n  RTAUDIO_API_WINDOWS_DS,\n  RTAUDIO_API_DUMMY,\n} rtaudio_api_t;\n\n#define NUM_SAMPLE_RATES 16\n#define MAX_NAME_LENGTH 512\ntypedef struct rtaudio_device_info {\n  int probed;\n  unsigned int output_channels;\n  unsigned int input_channels;\n  unsigned int duplex_channels;\n\n  int is_default_output;\n  int is_default_input;\n\n  rtaudio_format_t native_formats;\n\n  unsigned int preferred_sample_rate;\n  int sample_rates[NUM_SAMPLE_RATES];\n\n  char name[MAX_NAME_LENGTH];\n} rtaudio_device_info_t;\n\ntypedef struct rtaudio_stream_parameters {\n  unsigned int device_id;\n  unsigned int num_channels;\n  unsigned int first_channel;\n} rtaudio_stream_parameters_t;\n\ntypedef struct rtaudio_stream_options {\n  rtaudio_stream_flags_t flags;\n  unsigned int num_buffers;\n  int priority;\n  char name[MAX_NAME_LENGTH];\n} rtaudio_stream_options_t;\n\ntypedef struct rtaudio *rtaudio_t;\n\nRTAUDIOAPI const char *rtaudio_version();\nRTAUDIOAPI const rtaudio_api_t *rtaudio_compiled_api();\n\nRTAUDIOAPI const char *rtaudio_error(rtaudio_t audio);\n\nRTAUDIOAPI rtaudio_t rtaudio_create(rtaudio_api_t api);\nRTAUDIOAPI void rtaudio_destroy(rtaudio_t audio);\n\nRTAUDIOAPI rtaudio_api_t rtaudio_current_api(rtaudio_t audio);\n\nRTAUDIOAPI int rtaudio_device_count(rtaudio_t audio);\nRTAUDIOAPI rtaudio_device_info_t rtaudio_get_device_info(rtaudio_t audio,\n                                                         int i);\nRTAUDIOAPI unsigned int rtaudio_get_default_output_device(rtaudio_t audio);\nRTAUDIOAPI unsigned int rtaudio_get_default_input_device(rtaudio_t audio);\n\nRTAUDIOAPI int\nrtaudio_open_stream(rtaudio_t audio, rtaudio_stream_parameters_t *output_params,\n                    rtaudio_stream_parameters_t *input_params,\n                    rtaudio_format_t format, unsigned int sample_rate,\n                    unsigned int *buffer_frames, rtaudio_cb_t cb,\n                    void *userdata, rtaudio_stream_options_t *options,\n                    rtaudio_error_cb_t errcb);\nRTAUDIOAPI void rtaudio_close_stream(rtaudio_t audio);\nRTAUDIOAPI int rtaudio_start_stream(rtaudio_t audio);\nRTAUDIOAPI int rtaudio_stop_stream(rtaudio_t audio);\nRTAUDIOAPI int rtaudio_abort_stream(rtaudio_t audio);\n\nRTAUDIOAPI int rtaudio_is_stream_open(rtaudio_t audio);\nRTAUDIOAPI int rtaudio_is_stream_running(rtaudio_t audio);\n\nRTAUDIOAPI double rtaudio_get_stream_time(rtaudio_t audio);\nRTAUDIOAPI void rtaudio_set_stream_time(rtaudio_t audio, double time);\nRTAUDIOAPI int rtaudio_get_stream_latency(rtaudio_t audio);\nRTAUDIOAPI unsigned int rtaudio_get_stream_sample_rate(rtaudio_t audio);\n\nRTAUDIOAPI void rtaudio_show_warnings(rtaudio_t audio, int show);\n\n#ifdef __cplusplus\n}\n#endif\n#endif /* RTAUDIO_C_H */\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/CMakeLists.txt",
    "content": "include_directories(..)\nif (WIN32)\n    include_directories(../include)\nendif (WIN32)\n\nadd_executable(audioprobe audioprobe.cpp)\ntarget_link_libraries(audioprobe rtaudio_static ${LINKLIBS})\n\nadd_executable(playsaw playsaw.cpp)\ntarget_link_libraries(playsaw rtaudio_static ${LINKLIBS})\n\nadd_executable(playraw playraw.cpp)\ntarget_link_libraries(playraw rtaudio_static ${LINKLIBS})\n\nadd_executable(record record.cpp)\ntarget_link_libraries(record rtaudio_static ${LINKLIBS})\n\nadd_executable(duplex duplex.cpp)\ntarget_link_libraries(duplex rtaudio_static ${LINKLIBS})\n\nadd_executable(testall testall.cpp)\ntarget_link_libraries(testall rtaudio_static ${LINKLIBS})\n\nadd_executable(teststops teststops.cpp)\ntarget_link_libraries(teststops rtaudio_static ${LINKLIBS})\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/Debug/.placeholder",
    "content": ""
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/Makefile.am",
    "content": "\nnoinst_PROGRAMS = audioprobe playsaw playraw record duplex testall teststops\n\nAM_CXXFLAGS = -Wall -I$(top_srcdir)\n\naudioprobe_SOURCES = audioprobe.cpp\naudioprobe_LDADD = $(top_builddir)/librtaudio.la\n\nplaysaw_SOURCES = playsaw.cpp\nplaysaw_LDADD = $(top_builddir)/librtaudio.la\n\nplayraw_SOURCES = playraw.cpp\nplayraw_LDADD = $(top_builddir)/librtaudio.la\n\nrecord_SOURCES = record.cpp\nrecord_LDADD = $(top_builddir)/librtaudio.la\n\nduplex_SOURCES = duplex.cpp\nduplex_LDADD = $(top_builddir)/librtaudio.la\n\ntestall_SOURCES = testall.cpp\ntestall_LDADD = $(top_builddir)/librtaudio.la\n\nteststops_SOURCES = teststops.cpp\nteststops_LDADD = $(top_builddir)/librtaudio.la\n\nEXTRA_DIST = Windows\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/Release/.placeholder",
    "content": ""
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/Windows/Debug/.placeholder",
    "content": ""
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/Windows/Release/.placeholder",
    "content": ""
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/Windows/audioprobe.dsp",
    "content": "# Microsoft Developer Studio Project File - Name=\"audioprobe\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n# ** DO NOT EDIT **\r\n\r\n# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\r\n\r\nCFG=audioprobe - Win32 Debug\r\n!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n!MESSAGE use the Export Makefile command and run\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"audioprobe.mak\".\r\n!MESSAGE \r\n!MESSAGE You can specify a configuration when running NMAKE\r\n!MESSAGE by defining the macro CFG on the command line. For example:\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"audioprobe.mak\" CFG=\"audioprobe - Win32 Debug\"\r\n!MESSAGE \r\n!MESSAGE Possible choices for configuration are:\r\n!MESSAGE \r\n!MESSAGE \"audioprobe - Win32 Release\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \"audioprobe - Win32 Debug\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \r\n\r\n# Begin Project\r\n# PROP AllowPerConfigDependencies 0\r\n# PROP Scc_ProjName \"\"\r\n# PROP Scc_LocalPath \"\"\r\nCPP=cl.exe\r\nRSC=rc.exe\r\n\r\n!IF  \"$(CFG)\" == \"audioprobe - Win32 Release\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 0\r\n# PROP BASE Output_Dir \"audioprobe___Win32_Release\"\r\n# PROP BASE Intermediate_Dir \"audioprobe___Win32_Release\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 0\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Release\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /c\r\n# ADD CPP /nologo /MT /W3 /GX /O2 /I \"../../\" /I \"../../include\" /D \"NDEBUG\" /D \"__WINDOWS_DS__\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_WASAPI__\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /c\r\n# ADD BASE RSC /l 0x409 /d \"NDEBUG\"\r\n# ADD RSC /l 0x409 /d \"NDEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386\r\n\r\n!ELSEIF  \"$(CFG)\" == \"audioprobe - Win32 Debug\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 1\r\n# PROP BASE Output_Dir \"audioprobe___Win32_Debug\"\r\n# PROP BASE Intermediate_Dir \"audioprobe___Win32_Debug\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 1\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Debug\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /GZ /c\r\n# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I \"../../\" /I \"../../include\" /D \"_DEBUG\" /D \"__WINDOWS_DS__\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_WASAPI__\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /GZ /c\r\n# ADD BASE RSC /l 0x409 /d \"_DEBUG\"\r\n# ADD RSC /l 0x409 /d \"_DEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n\r\n!ENDIF \r\n\r\n# Begin Target\r\n\r\n# Name \"audioprobe - Win32 Release\"\r\n# Name \"audioprobe - Win32 Debug\"\r\n# Begin Group \"Source Files\"\r\n\r\n# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\audioprobe.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.cpp\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Header Files\"\r\n\r\n# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrvr.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiosys.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\ginclude.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiodrv.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.h\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Resource Files\"\r\n\r\n# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n# End Group\r\n# End Target\r\n# End Project\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/Windows/duplex.dsp",
    "content": "# Microsoft Developer Studio Project File - Name=\"duplex\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n# ** DO NOT EDIT **\r\n\r\n# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\r\n\r\nCFG=duplex - Win32 Debug\r\n!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n!MESSAGE use the Export Makefile command and run\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"duplex.mak\".\r\n!MESSAGE \r\n!MESSAGE You can specify a configuration when running NMAKE\r\n!MESSAGE by defining the macro CFG on the command line. For example:\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"duplex.mak\" CFG=\"duplex - Win32 Debug\"\r\n!MESSAGE \r\n!MESSAGE Possible choices for configuration are:\r\n!MESSAGE \r\n!MESSAGE \"duplex - Win32 Release\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \"duplex - Win32 Debug\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \r\n\r\n# Begin Project\r\n# PROP AllowPerConfigDependencies 0\r\n# PROP Scc_ProjName \"\"\r\n# PROP Scc_LocalPath \"\"\r\nCPP=cl.exe\r\nRSC=rc.exe\r\n\r\n!IF  \"$(CFG)\" == \"duplex - Win32 Release\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 0\r\n# PROP BASE Output_Dir \"duplex___Win32_Release\"\r\n# PROP BASE Intermediate_Dir \"duplex___Win32_Release\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 0\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Release\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /c\r\n# ADD CPP /nologo /MT /W3 /GX /O2 /I \"../../\" /I \"../../include\" /D \"NDEBUG\" /D \"__WINDOWS_DS__\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_WASAPI__\" /YX /FD /c\r\n# ADD BASE RSC /l 0x409 /d \"NDEBUG\"\r\n# ADD RSC /l 0x409 /d \"NDEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386\r\n\r\n!ELSEIF  \"$(CFG)\" == \"duplex - Win32 Debug\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 1\r\n# PROP BASE Output_Dir \"duplex___Win32_Debug\"\r\n# PROP BASE Intermediate_Dir \"duplex___Win32_Debug\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 1\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Debug\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /GZ /c\r\n# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I \"../../\" /I \"../../include\" /D \"_DEBUG\" /D \"__WINDOWS_ASIO__.__WINDOWS_DS__\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_DS__\" /D \"__WINDOWS_WASAPI__\" /YX /FD /GZ /c\r\n# ADD BASE RSC /l 0x409 /d \"_DEBUG\"\r\n# ADD RSC /l 0x409 /d \"_DEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n\r\n!ENDIF \r\n\r\n# Begin Target\r\n\r\n# Name \"duplex - Win32 Release\"\r\n# Name \"duplex - Win32 Debug\"\r\n# Begin Group \"Source Files\"\r\n\r\n# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\duplex.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.cpp\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Header Files\"\r\n\r\n# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrvr.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiosys.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\ginclude.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiodrv.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.h\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Resource Files\"\r\n\r\n# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n# End Group\r\n# End Target\r\n# End Project\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/Windows/playraw.dsp",
    "content": "# Microsoft Developer Studio Project File - Name=\"playraw\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n# ** DO NOT EDIT **\r\n\r\n# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\r\n\r\nCFG=playraw - Win32 Debug\r\n!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n!MESSAGE use the Export Makefile command and run\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"playraw.mak\".\r\n!MESSAGE \r\n!MESSAGE You can specify a configuration when running NMAKE\r\n!MESSAGE by defining the macro CFG on the command line. For example:\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"playraw.mak\" CFG=\"playraw - Win32 Debug\"\r\n!MESSAGE \r\n!MESSAGE Possible choices for configuration are:\r\n!MESSAGE \r\n!MESSAGE \"playraw - Win32 Release\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \"playraw - Win32 Debug\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \r\n\r\n# Begin Project\r\n# PROP AllowPerConfigDependencies 0\r\n# PROP Scc_ProjName \"\"\r\n# PROP Scc_LocalPath \"\"\r\nCPP=cl.exe\r\nRSC=rc.exe\r\n\r\n!IF  \"$(CFG)\" == \"playraw - Win32 Release\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 0\r\n# PROP BASE Output_Dir \"playraw___Win32_Release\"\r\n# PROP BASE Intermediate_Dir \"playraw___Win32_Release\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 0\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Release\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /c\r\n# ADD CPP /nologo /MT /W3 /GX /O2 /I \"../../\" /I \"../../include\" /D \"NDEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_DS__\" /D \"__WINDOWS_WASAPI__\" /YX /FD /c\r\n# ADD BASE RSC /l 0x409 /d \"NDEBUG\"\r\n# ADD RSC /l 0x409 /d \"NDEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386\r\n\r\n!ELSEIF  \"$(CFG)\" == \"playraw - Win32 Debug\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 1\r\n# PROP BASE Output_Dir \"playraw___Win32_Debug\"\r\n# PROP BASE Intermediate_Dir \"playraw___Win32_Debug\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 1\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Debug\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /GZ /c\r\n# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I \"../../\" /I \"../../include\" /D \"_DEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_DS__\" /D \"__WINDOWS_WASAPI__\" /YX /FD /GZ /c\r\n# ADD BASE RSC /l 0x409 /d \"_DEBUG\"\r\n# ADD RSC /l 0x409 /d \"_DEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n\r\n!ENDIF \r\n\r\n# Begin Target\r\n\r\n# Name \"playraw - Win32 Release\"\r\n# Name \"playraw - Win32 Debug\"\r\n# Begin Group \"Source Files\"\r\n\r\n# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\playraw.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.cpp\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Header Files\"\r\n\r\n# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrvr.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiosys.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\ginclude.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiodrv.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.h\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Resource Files\"\r\n\r\n# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n# End Group\r\n# End Target\r\n# End Project\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/Windows/playsaw.dsp",
    "content": "# Microsoft Developer Studio Project File - Name=\"playsaw\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n# ** DO NOT EDIT **\r\n\r\n# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\r\n\r\nCFG=playsaw - Win32 Debug\r\n!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n!MESSAGE use the Export Makefile command and run\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"playsaw.mak\".\r\n!MESSAGE \r\n!MESSAGE You can specify a configuration when running NMAKE\r\n!MESSAGE by defining the macro CFG on the command line. For example:\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"playsaw.mak\" CFG=\"playsaw - Win32 Debug\"\r\n!MESSAGE \r\n!MESSAGE Possible choices for configuration are:\r\n!MESSAGE \r\n!MESSAGE \"playsaw - Win32 Release\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \"playsaw - Win32 Debug\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \r\n\r\n# Begin Project\r\n# PROP AllowPerConfigDependencies 0\r\n# PROP Scc_ProjName \"\"\r\n# PROP Scc_LocalPath \"\"\r\nCPP=cl.exe\r\nRSC=rc.exe\r\n\r\n!IF  \"$(CFG)\" == \"playsaw - Win32 Release\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 0\r\n# PROP BASE Output_Dir \"playsaw___Win32_Release\"\r\n# PROP BASE Intermediate_Dir \"playsaw___Win32_Release\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 0\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Release\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /c\r\n# ADD CPP /nologo /MT /W3 /GX /O2 /I \"../../\" /I \"../../include\" /D \"NDEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_DS__\" /D \"__WINDOWS_WASAPI__\" /YX /FD /c\r\n# ADD BASE RSC /l 0x409 /d \"NDEBUG\"\r\n# ADD RSC /l 0x409 /d \"NDEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386\r\n\r\n!ELSEIF  \"$(CFG)\" == \"playsaw - Win32 Debug\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 1\r\n# PROP BASE Output_Dir \"playsaw___Win32_Debug\"\r\n# PROP BASE Intermediate_Dir \"playsaw___Win32_Debug\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 1\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Debug\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /GZ /c\r\n# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I \"../../\" /I \"../../include\" /D \"_DEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_DS__\" /D \"__WINDOWS_WASAPI__\" /YX /FD /GZ /c\r\n# ADD BASE RSC /l 0x409 /d \"_DEBUG\"\r\n# ADD RSC /l 0x409 /d \"_DEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n\r\n!ENDIF \r\n\r\n# Begin Target\r\n\r\n# Name \"playsaw - Win32 Release\"\r\n# Name \"playsaw - Win32 Debug\"\r\n# Begin Group \"Source Files\"\r\n\r\n# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\playsaw.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.cpp\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Header Files\"\r\n\r\n# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrvr.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiosys.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\ginclude.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiodrv.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.h\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Resource Files\"\r\n\r\n# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n# End Group\r\n# End Target\r\n# End Project\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/Windows/record.dsp",
    "content": "# Microsoft Developer Studio Project File - Name=\"record\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n# ** DO NOT EDIT **\r\n\r\n# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\r\n\r\nCFG=record - Win32 Debug\r\n!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n!MESSAGE use the Export Makefile command and run\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"record.mak\".\r\n!MESSAGE \r\n!MESSAGE You can specify a configuration when running NMAKE\r\n!MESSAGE by defining the macro CFG on the command line. For example:\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"record.mak\" CFG=\"record - Win32 Debug\"\r\n!MESSAGE \r\n!MESSAGE Possible choices for configuration are:\r\n!MESSAGE \r\n!MESSAGE \"record - Win32 Release\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \"record - Win32 Debug\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \r\n\r\n# Begin Project\r\n# PROP AllowPerConfigDependencies 0\r\n# PROP Scc_ProjName \"\"\r\n# PROP Scc_LocalPath \"\"\r\nCPP=cl.exe\r\nRSC=rc.exe\r\n\r\n!IF  \"$(CFG)\" == \"record - Win32 Release\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 0\r\n# PROP BASE Output_Dir \"record___Win32_Release\"\r\n# PROP BASE Intermediate_Dir \"record___Win32_Release\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 0\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Release\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /c\r\n# ADD CPP /nologo /MT /W3 /GX /O2 /I \"../../\" /I \"../../include\" /D \"NDEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_DS__\" /D \"__WINDOWS_WASAPI__\" /YX /FD /c\r\n# ADD BASE RSC /l 0x409 /d \"NDEBUG\"\r\n# ADD RSC /l 0x409 /d \"NDEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386\r\n\r\n!ELSEIF  \"$(CFG)\" == \"record - Win32 Debug\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 1\r\n# PROP BASE Output_Dir \"record___Win32_Debug\"\r\n# PROP BASE Intermediate_Dir \"record___Win32_Debug\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 1\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Debug\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /GZ /c\r\n# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I \"../../\" /I \"../../include\" /D \"_DEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_DS__\" /D \"__WINDOWS_WASAPI__\" /YX /FD /GZ /c\r\n# ADD BASE RSC /l 0x409 /d \"_DEBUG\"\r\n# ADD RSC /l 0x409 /d \"_DEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n\r\n!ENDIF \r\n\r\n# Begin Target\r\n\r\n# Name \"record - Win32 Release\"\r\n# Name \"record - Win32 Debug\"\r\n# Begin Group \"Source Files\"\r\n\r\n# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\record.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.cpp\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Header Files\"\r\n\r\n# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrvr.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiosys.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\ginclude.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiodrv.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.h\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Resource Files\"\r\n\r\n# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n# End Group\r\n# End Target\r\n# End Project\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/Windows/rtaudio.dsw",
    "content": "Microsoft Developer Studio Workspace File, Format Version 6.00\r\n# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\r\n\r\n###############################################################################\r\n\r\nProject: \"audioprobe\"=.\\audioprobe.dsp - Package Owner=<4>\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<4>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\nProject: \"duplex\"=.\\duplex.dsp - Package Owner=<4>\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<4>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\nProject: \"playraw\"=.\\playraw.dsp - Package Owner=<4>\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<4>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\nProject: \"playsaw\"=.\\playsaw.dsp - Package Owner=<4>\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<4>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\nProject: \"record\"=.\\record.dsp - Package Owner=<4>\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<4>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\nProject: \"testall\"=.\\testall.dsp - Package Owner=<4>\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<4>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\nProject: \"teststops\"=.\\teststops.dsp - Package Owner=<4>\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<4>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\nGlobal:\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<3>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/Windows/testall.dsp",
    "content": "# Microsoft Developer Studio Project File - Name=\"testall\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n# ** DO NOT EDIT **\r\n\r\n# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\r\n\r\nCFG=testall - Win32 Debug\r\n!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n!MESSAGE use the Export Makefile command and run\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"testall.mak\".\r\n!MESSAGE \r\n!MESSAGE You can specify a configuration when running NMAKE\r\n!MESSAGE by defining the macro CFG on the command line. For example:\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"testall.mak\" CFG=\"testall - Win32 Debug\"\r\n!MESSAGE \r\n!MESSAGE Possible choices for configuration are:\r\n!MESSAGE \r\n!MESSAGE \"testall - Win32 Release\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \"testall - Win32 Debug\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \r\n\r\n# Begin Project\r\n# PROP AllowPerConfigDependencies 0\r\n# PROP Scc_ProjName \"\"\r\n# PROP Scc_LocalPath \"\"\r\nCPP=cl.exe\r\nRSC=rc.exe\r\n\r\n!IF  \"$(CFG)\" == \"testall - Win32 Release\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 0\r\n# PROP BASE Output_Dir \"testall___Win32_Release\"\r\n# PROP BASE Intermediate_Dir \"testall___Win32_Release\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 0\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Release\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /c\r\n# ADD CPP /nologo /MT /W3 /GX /O2 /I \"../../\" /I \"../../include\" /D \"NDEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_DS__\" /D \"__WINDOWS_WASAPI__\" /YX /FD /c\r\n# ADD BASE RSC /l 0x409 /d \"NDEBUG\"\r\n# ADD RSC /l 0x409 /d \"NDEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386\r\n\r\n!ELSEIF  \"$(CFG)\" == \"testall - Win32 Debug\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 1\r\n# PROP BASE Output_Dir \"testall___Win32_Debug\"\r\n# PROP BASE Intermediate_Dir \"testall___Win32_Debug\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 1\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Debug\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /GZ /c\r\n# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I \"../../\" /I \"../../include\" /D \"_DEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_DS__\" /D \"__WINDOWS_WASAPI__\" /YX /FD /GZ /c\r\n# ADD BASE RSC /l 0x409 /d \"_DEBUG\"\r\n# ADD RSC /l 0x409 /d \"_DEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n\r\n!ENDIF \r\n\r\n# Begin Target\r\n\r\n# Name \"testall - Win32 Release\"\r\n# Name \"testall - Win32 Debug\"\r\n# Begin Group \"Source Files\"\r\n\r\n# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\testall.cpp\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Header Files\"\r\n\r\n# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrvr.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiosys.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\ginclude.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiodrv.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.h\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Resource Files\"\r\n\r\n# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n# End Group\r\n# End Target\r\n# End Project\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/Windows/teststops.dsp",
    "content": "# Microsoft Developer Studio Project File - Name=\"teststops\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n# ** DO NOT EDIT **\r\n\r\n# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\r\n\r\nCFG=teststops - Win32 Debug\r\n!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n!MESSAGE use the Export Makefile command and run\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"teststops.mak\".\r\n!MESSAGE \r\n!MESSAGE You can specify a configuration when running NMAKE\r\n!MESSAGE by defining the macro CFG on the command line. For example:\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"teststops.mak\" CFG=\"teststops - Win32 Debug\"\r\n!MESSAGE \r\n!MESSAGE Possible choices for configuration are:\r\n!MESSAGE \r\n!MESSAGE \"teststops - Win32 Release\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \"teststops - Win32 Debug\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \r\n\r\n# Begin Project\r\n# PROP AllowPerConfigDependencies 0\r\n# PROP Scc_ProjName \"\"\r\n# PROP Scc_LocalPath \"\"\r\nCPP=cl.exe\r\nRSC=rc.exe\r\n\r\n!IF  \"$(CFG)\" == \"teststops - Win32 Release\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 0\r\n# PROP BASE Output_Dir \"teststops___Win32_Release\"\r\n# PROP BASE Intermediate_Dir \"teststops___Win32_Release\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 0\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Release\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /c\r\n# ADD CPP /nologo /MT /W3 /GX /O2 /I \"../../\" /I \"../../include\" /D \"NDEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_DS__\" /D \"__WINDOWS_WASAPI__\" /YX /FD /c\r\n# ADD BASE RSC /l 0x409 /d \"NDEBUG\"\r\n# ADD RSC /l 0x409 /d \"NDEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /machine:I386\r\n\r\n!ELSEIF  \"$(CFG)\" == \"teststops - Win32 Debug\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 1\r\n# PROP BASE Output_Dir \"teststops___Win32_Debug\"\r\n# PROP BASE Intermediate_Dir \"teststops___Win32_Debug\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 1\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Debug\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /GZ /c\r\n# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I \"../../\" /I \"../../include\" /D \"_DEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_ASIO__\" /D \"__WINDOWS_DS__\" /D \"__WINDOWS_WASAPI__\" /YX /FD /GZ /c\r\n# ADD BASE RSC /l 0x409 /d \"_DEBUG\"\r\n# ADD RSC /l 0x409 /d \"_DEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib dsound.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n\r\n!ENDIF \r\n\r\n# Begin Target\r\n\r\n# Name \"teststops - Win32 Release\"\r\n# Name \"teststops - Win32 Debug\"\r\n# Begin Group \"Source Files\"\r\n\r\n# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\teststops.cpp\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Header Files\"\r\n\r\n# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asio.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrivers.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiodrvr.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiolist.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\asiosys.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\ginclude.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiodrv.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\include\\iasiothiscallresolver.h\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\..\\RtAudio.h\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Resource Files\"\r\n\r\n# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n# End Group\r\n# End Target\r\n# End Project\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/audioprobe.cpp",
    "content": "/******************************************/\n/*\n  audioprobe.cpp\n  by Gary P. Scavone, 2001\n\n  Probe audio system and prints device info.\n*/\n/******************************************/\n\n#include \"RtAudio.h\"\n#include <iostream>\n#include <map>\n\nint main()\n{\n  // Create an api map.\n  std::map<int, std::string> apiMap;\n  apiMap[RtAudio::MACOSX_CORE] = \"OS-X Core Audio\";\n  apiMap[RtAudio::WINDOWS_ASIO] = \"Windows ASIO\";\n  apiMap[RtAudio::WINDOWS_DS] = \"Windows Direct Sound\";\n  apiMap[RtAudio::WINDOWS_WASAPI] = \"Windows WASAPI\";\n  apiMap[RtAudio::UNIX_JACK] = \"Jack Client\";\n  apiMap[RtAudio::LINUX_ALSA] = \"Linux ALSA\";\n  apiMap[RtAudio::LINUX_PULSE] = \"Linux PulseAudio\";\n  apiMap[RtAudio::LINUX_OSS] = \"Linux OSS\";\n  apiMap[RtAudio::RTAUDIO_DUMMY] = \"RtAudio Dummy\";\n\n  std::vector< RtAudio::Api > apis;\n  RtAudio :: getCompiledApi( apis );\n\n  std::cout << \"\\nRtAudio Version \" << RtAudio::getVersion() << std::endl;\n\n  std::cout << \"\\nCompiled APIs:\\n\";\n  for ( unsigned int i=0; i<apis.size(); i++ )\n    std::cout << \"  \" << apiMap[ apis[i] ] << std::endl;\n\n  RtAudio audio;\n  RtAudio::DeviceInfo info;\n\n  std::cout << \"\\nCurrent API: \" << apiMap[ audio.getCurrentApi() ] << std::endl;\n\n  unsigned int devices = audio.getDeviceCount();\n  std::cout << \"\\nFound \" << devices << \" device(s) ...\\n\";\n\n  for (unsigned int i=0; i<devices; i++) {\n    info = audio.getDeviceInfo(i);\n\n    std::cout << \"\\nDevice Name = \" << info.name << '\\n';\n    if ( info.probed == false )\n      std::cout << \"Probe Status = UNsuccessful\\n\";\n    else {\n      std::cout << \"Probe Status = Successful\\n\";\n      std::cout << \"Output Channels = \" << info.outputChannels << '\\n';\n      std::cout << \"Input Channels = \" << info.inputChannels << '\\n';\n      std::cout << \"Duplex Channels = \" << info.duplexChannels << '\\n';\n      if ( info.isDefaultOutput ) std::cout << \"This is the default output device.\\n\";\n      else std::cout << \"This is NOT the default output device.\\n\";\n      if ( info.isDefaultInput ) std::cout << \"This is the default input device.\\n\";\n      else std::cout << \"This is NOT the default input device.\\n\";\n      if ( info.nativeFormats == 0 )\n        std::cout << \"No natively supported data formats(?)!\";\n      else {\n        std::cout << \"Natively supported data formats:\\n\";\n        if ( info.nativeFormats & RTAUDIO_SINT8 )\n          std::cout << \"  8-bit int\\n\";\n        if ( info.nativeFormats & RTAUDIO_SINT16 )\n          std::cout << \"  16-bit int\\n\";\n        if ( info.nativeFormats & RTAUDIO_SINT24 )\n          std::cout << \"  24-bit int\\n\";\n        if ( info.nativeFormats & RTAUDIO_SINT32 )\n          std::cout << \"  32-bit int\\n\";\n        if ( info.nativeFormats & RTAUDIO_FLOAT32 )\n          std::cout << \"  32-bit float\\n\";\n        if ( info.nativeFormats & RTAUDIO_FLOAT64 )\n          std::cout << \"  64-bit float\\n\";\n      }\n      if ( info.sampleRates.size() < 1 )\n        std::cout << \"No supported sample rates found!\";\n      else {\n        std::cout << \"Supported sample rates = \";\n        for (unsigned int j=0; j<info.sampleRates.size(); j++)\n          std::cout << info.sampleRates[j] << \" \";\n      }\n      std::cout << std::endl;\n    }\n  }\n  std::cout << std::endl;\n\n  return 0;\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/duplex.cpp",
    "content": "/******************************************/\n/*\n  duplex.cpp\n  by Gary P. Scavone, 2006-2007.\n\n  This program opens a duplex stream and passes\n  input directly through to the output.\n*/\n/******************************************/\n\n#include \"RtAudio.h\"\n#include <iostream>\n#include <cstdlib>\n#include <cstring>\n\n/*\ntypedef char MY_TYPE;\n#define FORMAT RTAUDIO_SINT8\n*/\n\ntypedef signed short MY_TYPE;\n#define FORMAT RTAUDIO_SINT16\n\n/*\ntypedef S24 MY_TYPE;\n#define FORMAT RTAUDIO_SINT24\n\ntypedef signed long MY_TYPE;\n#define FORMAT RTAUDIO_SINT32\n\ntypedef float MY_TYPE;\n#define FORMAT RTAUDIO_FLOAT32\n\ntypedef double MY_TYPE;\n#define FORMAT RTAUDIO_FLOAT64\n*/\n\nvoid usage( void ) {\n  // Error function in case of incorrect command-line\n  // argument specifications\n  std::cout << \"\\nuseage: duplex N fs <iDevice> <oDevice> <iChannelOffset> <oChannelOffset>\\n\";\n  std::cout << \"    where N = number of channels,\\n\";\n  std::cout << \"    fs = the sample rate,\\n\";\n  std::cout << \"    iDevice = optional input device to use (default = 0),\\n\";\n  std::cout << \"    oDevice = optional output device to use (default = 0),\\n\";\n  std::cout << \"    iChannelOffset = an optional input channel offset (default = 0),\\n\";\n  std::cout << \"    and oChannelOffset = optional output channel offset (default = 0).\\n\\n\";\n  exit( 0 );\n}\n\nint inout( void *outputBuffer, void *inputBuffer, unsigned int /*nBufferFrames*/,\n           double /*streamTime*/, RtAudioStreamStatus status, void *data )\n{\n  // Since the number of input and output channels is equal, we can do\n  // a simple buffer copy operation here.\n  if ( status ) std::cout << \"Stream over/underflow detected.\" << std::endl;\n\n  unsigned int *bytes = (unsigned int *) data;\n  memcpy( outputBuffer, inputBuffer, *bytes );\n  return 0;\n}\n\nint main( int argc, char *argv[] )\n{\n  unsigned int channels, fs, bufferBytes, oDevice = 0, iDevice = 0, iOffset = 0, oOffset = 0;\n\n  // Minimal command-line checking\n  if (argc < 3 || argc > 7 ) usage();\n\n  RtAudio adac;\n  if ( adac.getDeviceCount() < 1 ) {\n    std::cout << \"\\nNo audio devices found!\\n\";\n    exit( 1 );\n  }\n\n  channels = (unsigned int) atoi(argv[1]);\n  fs = (unsigned int) atoi(argv[2]);\n  if ( argc > 3 )\n    iDevice = (unsigned int) atoi(argv[3]);\n  if ( argc > 4 )\n    oDevice = (unsigned int) atoi(argv[4]);\n  if ( argc > 5 )\n    iOffset = (unsigned int) atoi(argv[5]);\n  if ( argc > 6 )\n    oOffset = (unsigned int) atoi(argv[6]);\n\n  // Let RtAudio print messages to stderr.\n  adac.showWarnings( true );\n\n  // Set the same number of channels for both input and output.\n  unsigned int bufferFrames = 512;\n  RtAudio::StreamParameters iParams, oParams;\n  iParams.deviceId = iDevice;\n  iParams.nChannels = channels;\n  iParams.firstChannel = iOffset;\n  oParams.deviceId = oDevice;\n  oParams.nChannels = channels;\n  oParams.firstChannel = oOffset;\n\n  if ( iDevice == 0 )\n    iParams.deviceId = adac.getDefaultInputDevice();\n  if ( oDevice == 0 )\n    oParams.deviceId = adac.getDefaultOutputDevice();\n\n  RtAudio::StreamOptions options;\n  //options.flags |= RTAUDIO_NONINTERLEAVED;\n\n  bufferBytes = bufferFrames * channels * sizeof( MY_TYPE );\n  try {\n    adac.openStream( &oParams, &iParams, FORMAT, fs, &bufferFrames, &inout, (void *)&bufferBytes, &options );\n  }\n  catch ( RtAudioError& e ) {\n    std::cout << '\\n' << e.getMessage() << '\\n' << std::endl;\n    exit( 1 );\n  }\n\n  // Test RtAudio functionality for reporting latency.\n  std::cout << \"\\nStream latency = \" << adac.getStreamLatency() << \" frames\" << std::endl;\n\n  try {\n    adac.startStream();\n\n    char input;\n    std::cout << \"\\nRunning ... press <enter> to quit (buffer frames = \" << bufferFrames << \").\\n\";\n    std::cin.get(input);\n\n    // Stop the stream.\n    adac.stopStream();\n  }\n  catch ( RtAudioError& e ) {\n    std::cout << '\\n' << e.getMessage() << '\\n' << std::endl;\n    goto cleanup;\n  }\n\n cleanup:\n  if ( adac.isStreamOpen() ) adac.closeStream();\n\n  return 0;\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/playraw.cpp",
    "content": "/******************************************/\n/*\n  playraw.cpp\n  by Gary P. Scavone, 2007\n\n  Play a specified raw file.  It is necessary\n  that the file be of the same data format as\n  defined below.\n*/\n/******************************************/\n\n#include \"RtAudio.h\"\n#include <iostream>\n#include <cstdlib>\n#include <cstring>\n#include <stdio.h>\n\n/*\ntypedef char  MY_TYPE;\n#define FORMAT RTAUDIO_SINT8\n#define SCALE  127.0\n*/\n\ntypedef signed short  MY_TYPE;\n#define FORMAT RTAUDIO_SINT16\n#define SCALE  32767.0\n\n/*\ntypedef S24 MY_TYPE;\n#define FORMAT RTAUDIO_SINT24\n#define SCALE  8388607.0\n\ntypedef signed int  MY_TYPE;\n#define FORMAT RTAUDIO_SINT32\n#define SCALE  2147483647.0\n\ntypedef float  MY_TYPE;\n#define FORMAT RTAUDIO_FLOAT32\n#define SCALE  1.0;\n\ntypedef double  MY_TYPE;\n#define FORMAT RTAUDIO_FLOAT64\n#define SCALE  1.0;\n*/\n\n// Platform-dependent sleep routines.\n#if defined( __WINDOWS_ASIO__ ) || defined( __WINDOWS_DS__ ) || defined( __WINDOWS_WASAPI__ )\n  #include <windows.h>\n  #define SLEEP( milliseconds ) Sleep( (DWORD) milliseconds ) \n#else // Unix variants\n  #include <unistd.h>\n  #define SLEEP( milliseconds ) usleep( (unsigned long) (milliseconds * 1000.0) )\n#endif\n\nvoid usage( void ) {\n  // Error function in case of incorrect command-line\n  // argument specifications\n  std::cout << \"\\nuseage: playraw N fs file <device> <channelOffset>\\n\";\n  std::cout << \"    where N = number of channels,\\n\";\n  std::cout << \"    fs = the sample rate, \\n\";\n  std::cout << \"    file = the raw file to play,\\n\";\n  std::cout << \"    device = optional device to use (default = 0),\\n\";\n  std::cout << \"    and channelOffset = an optional channel offset on the device (default = 0).\\n\\n\";\n  exit( 0 );\n}\n\nstruct OutputData {\n  FILE *fd;\n  unsigned int channels;\n};\n\n// Interleaved buffers\nint output( void *outputBuffer, void * /*inputBuffer*/, unsigned int nBufferFrames,\n            double /*streamTime*/, RtAudioStreamStatus /*status*/, void *data )\n{\n  OutputData *oData = (OutputData*) data;\n\n  // In general, it's not a good idea to do file input in the audio\n  // callback function but I'm doing it here because I don't know the\n  // length of the file we are reading.\n  unsigned int count = fread( outputBuffer, oData->channels * sizeof( MY_TYPE ), nBufferFrames, oData->fd);\n  if ( count < nBufferFrames ) {\n    unsigned int bytes = (nBufferFrames - count) * oData->channels * sizeof( MY_TYPE );\n    unsigned int startByte = count * oData->channels * sizeof( MY_TYPE );\n    memset( (char *)(outputBuffer)+startByte, 0, bytes );\n    return 1;\n  }\n\n  return 0;\n}\n\nint main( int argc, char *argv[] )\n{\n  unsigned int channels, fs, bufferFrames, device = 0, offset = 0;\n  char *file;\n\n  // minimal command-line checking\n  if ( argc < 4 || argc > 6 ) usage();\n\n  RtAudio dac;\n  if ( dac.getDeviceCount() < 1 ) {\n    std::cout << \"\\nNo audio devices found!\\n\";\n    exit( 0 );\n  }\n\n  channels = (unsigned int) atoi( argv[1]) ;\n  fs = (unsigned int) atoi( argv[2] );\n  file = argv[3];\n  if ( argc > 4 )\n    device = (unsigned int) atoi( argv[4] );\n  if ( argc > 5 )\n    offset = (unsigned int) atoi( argv[5] );\n\n  OutputData data;\n  data.fd = fopen( file, \"rb\" );\n  if ( !data.fd ) {\n    std::cout << \"Unable to find or open file!\\n\";\n    exit( 1 );\n  }\n\n  // Set our stream parameters for output only.\n  bufferFrames = 512;\n  RtAudio::StreamParameters oParams;\n  oParams.deviceId = device;\n  oParams.nChannels = channels;\n  oParams.firstChannel = offset;\n\n  if ( device == 0 )\n    oParams.deviceId = dac.getDefaultOutputDevice();\n\n  data.channels = channels;\n  try {\n    dac.openStream( &oParams, NULL, FORMAT, fs, &bufferFrames, &output, (void *)&data );\n    dac.startStream();\n  }\n  catch ( RtAudioError& e ) {\n    std::cout << '\\n' << e.getMessage() << '\\n' << std::endl;\n    goto cleanup;\n  }\n\n  std::cout << \"\\nPlaying raw file \" << file << \" (buffer frames = \" << bufferFrames << \").\" << std::endl;\n  while ( 1 ) {\n    SLEEP( 100 ); // wake every 100 ms to check if we're done\n    if ( dac.isStreamRunning() == false ) break;\n  }\n\n cleanup:\n  fclose( data.fd );\n  dac.closeStream();\n\n  return 0;\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/playsaw.cpp",
    "content": "/******************************************/\n/*\n  playsaw.cpp\n  by Gary P. Scavone, 2006\n\n  This program will output sawtooth waveforms\n  of different frequencies on each channel.\n*/\n/******************************************/\n\n#include \"RtAudio.h\"\n#include <iostream>\n#include <cstdlib>\n\n/*\ntypedef char MY_TYPE;\n#define FORMAT RTAUDIO_SINT8\n#define SCALE  127.0\n*/\n\ntypedef signed short MY_TYPE;\n#define FORMAT RTAUDIO_SINT16\n#define SCALE  32767.0\n\n/*\ntypedef S24 MY_TYPE;\n#define FORMAT RTAUDIO_SINT24\n#define SCALE  8388607.0\n\ntypedef signed long MY_TYPE;\n#define FORMAT RTAUDIO_SINT32\n#define SCALE  2147483647.0\n\ntypedef float MY_TYPE;\n#define FORMAT RTAUDIO_FLOAT32\n#define SCALE  1.0\n\ntypedef double MY_TYPE;\n#define FORMAT RTAUDIO_FLOAT64\n#define SCALE  1.0\n*/\n\n// Platform-dependent sleep routines.\n#if defined( __WINDOWS_ASIO__ ) || defined( __WINDOWS_DS__ ) || defined( __WINDOWS_WASAPI__ )\n  #include <windows.h>\n  #define SLEEP( milliseconds ) Sleep( (DWORD) milliseconds ) \n#else // Unix variants\n  #include <unistd.h>\n  #define SLEEP( milliseconds ) usleep( (unsigned long) (milliseconds * 1000.0) )\n#endif\n\n#define BASE_RATE 0.005\n#define TIME   1.0\n\nvoid usage( void ) {\n  // Error function in case of incorrect command-line\n  // argument specifications\n  std::cout << \"\\nuseage: playsaw N fs <device> <channelOffset> <time>\\n\";\n  std::cout << \"    where N = number of channels,\\n\";\n  std::cout << \"    fs = the sample rate,\\n\";\n  std::cout << \"    device = optional device to use (default = 0),\\n\";\n  std::cout << \"    channelOffset = an optional channel offset on the device (default = 0),\\n\";\n  std::cout << \"    and time = an optional time duration in seconds (default = no limit).\\n\\n\";\n  exit( 0 );\n}\n\nvoid errorCallback( RtAudioError::Type type, const std::string &errorText )\n{\n  // This example error handling function does exactly the same thing\n  // as the embedded RtAudio::error() function.\n  std::cout << \"in errorCallback\" << std::endl;\n  if ( type == RtAudioError::WARNING )\n    std::cerr << '\\n' << errorText << \"\\n\\n\";\n  else if ( type != RtAudioError::WARNING )\n    throw( RtAudioError( errorText, type ) );\n}\n\nunsigned int channels;\nRtAudio::StreamOptions options;\nunsigned int frameCounter = 0;\nbool checkCount = false;\nunsigned int nFrames = 0;\nconst unsigned int callbackReturnValue = 1;\n\n//#define USE_INTERLEAVED\n#if defined( USE_INTERLEAVED )\n\n// Interleaved buffers\nint saw( void *outputBuffer, void *inputBuffer, unsigned int nBufferFrames,\n         double streamTime, RtAudioStreamStatus status, void *data )\n{\n  unsigned int i, j;\n  extern unsigned int channels;\n  MY_TYPE *buffer = (MY_TYPE *) outputBuffer;\n  double *lastValues = (double *) data;\n\n  if ( status )\n    std::cout << \"Stream underflow detected!\" << std::endl;\n\n  for ( i=0; i<nBufferFrames; i++ ) {\n    for ( j=0; j<channels; j++ ) {\n      *buffer++ = (MY_TYPE) (lastValues[j] * SCALE * 0.5);\n      lastValues[j] += BASE_RATE * (j+1+(j*0.1));\n      if ( lastValues[j] >= 1.0 ) lastValues[j] -= 2.0;\n    }\n  }\n\n  frameCounter += nBufferFrames;\n  if ( checkCount && ( frameCounter >= nFrames ) ) return callbackReturnValue;\n  return 0;\n}\n\n#else // Use non-interleaved buffers\n\nint saw( void *outputBuffer, void * /*inputBuffer*/, unsigned int nBufferFrames,\n         double /*streamTime*/, RtAudioStreamStatus status, void *data )\n{\n  unsigned int i, j;\n  extern unsigned int channels;\n  MY_TYPE *buffer = (MY_TYPE *) outputBuffer;\n  double *lastValues = (double *) data;\n\n  if ( status )\n    std::cout << \"Stream underflow detected!\" << std::endl;\n\n  double increment;\n  for ( j=0; j<channels; j++ ) {\n    increment = BASE_RATE * (j+1+(j*0.1));\n    for ( i=0; i<nBufferFrames; i++ ) {\n      *buffer++ = (MY_TYPE) (lastValues[j] * SCALE * 0.5);\n      lastValues[j] += increment;\n      if ( lastValues[j] >= 1.0 ) lastValues[j] -= 2.0;\n    }\n  }\n\n  frameCounter += nBufferFrames;\n  if ( checkCount && ( frameCounter >= nFrames ) ) return callbackReturnValue;\n  return 0;\n}\n#endif\n\nint main( int argc, char *argv[] )\n{\n  unsigned int bufferFrames, fs, device = 0, offset = 0;\n\n  // minimal command-line checking\n  if (argc < 3 || argc > 6 ) usage();\n\n  RtAudio dac;\n  if ( dac.getDeviceCount() < 1 ) {\n    std::cout << \"\\nNo audio devices found!\\n\";\n    exit( 1 );\n  }\n\n  channels = (unsigned int) atoi( argv[1] );\n  fs = (unsigned int) atoi( argv[2] );\n  if ( argc > 3 )\n    device = (unsigned int) atoi( argv[3] );\n  if ( argc > 4 )\n    offset = (unsigned int) atoi( argv[4] );\n  if ( argc > 5 )\n    nFrames = (unsigned int) (fs * atof( argv[5] ));\n  if ( nFrames > 0 ) checkCount = true;\n\n  double *data = (double *) calloc( channels, sizeof( double ) );\n\n  // Let RtAudio print messages to stderr.\n  dac.showWarnings( true );\n\n  // Set our stream parameters for output only.\n  bufferFrames = 512;\n  RtAudio::StreamParameters oParams;\n  oParams.deviceId = device;\n  oParams.nChannels = channels;\n  oParams.firstChannel = offset;\n\n  if ( device == 0 )\n    oParams.deviceId = dac.getDefaultOutputDevice();\n\n  options.flags = RTAUDIO_HOG_DEVICE;\n  options.flags |= RTAUDIO_SCHEDULE_REALTIME;\n#if !defined( USE_INTERLEAVED )\n  options.flags |= RTAUDIO_NONINTERLEAVED;\n#endif\n  try {\n    dac.openStream( &oParams, NULL, FORMAT, fs, &bufferFrames, &saw, (void *)data, &options, &errorCallback );\n    dac.startStream();\n  }\n  catch ( RtAudioError& e ) {\n    e.printMessage();\n    goto cleanup;\n  }\n\n  if ( checkCount ) {\n    while ( dac.isStreamRunning() == true ) SLEEP( 100 );\n  }\n  else {\n    char input;\n    //std::cout << \"Stream latency = \" << dac.getStreamLatency() << \"\\n\" << std::endl;\n    std::cout << \"\\nPlaying ... press <enter> to quit (buffer size = \" << bufferFrames << \").\\n\";\n    std::cin.get( input );\n\n    try {\n      // Stop the stream\n      dac.stopStream();\n    }\n    catch ( RtAudioError& e ) {\n      e.printMessage();\n    }\n  }\n\n cleanup:\n  if ( dac.isStreamOpen() ) dac.closeStream();\n  free( data );\n\n  return 0;\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/record.cpp",
    "content": "/******************************************/\n/*\n  record.cpp\n  by Gary P. Scavone, 2007\n\n  This program records audio from a device and writes it to a\n  header-less binary file.  Use the 'playraw', with the same\n  parameters and format settings, to playback the audio.\n*/\n/******************************************/\n\n#include \"RtAudio.h\"\n#include <iostream>\n#include <cstdlib>\n#include <cstring>\n#include <stdio.h>\n\n/*\ntypedef char MY_TYPE;\n#define FORMAT RTAUDIO_SINT8\n*/\n\ntypedef signed short MY_TYPE;\n#define FORMAT RTAUDIO_SINT16\n\n/*\ntypedef S24 MY_TYPE;\n#define FORMAT RTAUDIO_SINT24\n\ntypedef signed long MY_TYPE;\n#define FORMAT RTAUDIO_SINT32\n\ntypedef float MY_TYPE;\n#define FORMAT RTAUDIO_FLOAT32\n\ntypedef double MY_TYPE;\n#define FORMAT RTAUDIO_FLOAT64\n*/\n\n// Platform-dependent sleep routines.\n#if defined( __WINDOWS_ASIO__ ) || defined( __WINDOWS_DS__ ) || defined( __WINDOWS_WASAPI__ )\n  #include <windows.h>\n  #define SLEEP( milliseconds ) Sleep( (DWORD) milliseconds ) \n#else // Unix variants\n  #include <unistd.h>\n  #define SLEEP( milliseconds ) usleep( (unsigned long) (milliseconds * 1000.0) )\n#endif\n\nvoid usage( void ) {\n  // Error function in case of incorrect command-line\n  // argument specifications\n  std::cout << \"\\nuseage: record N fs <duration> <device> <channelOffset>\\n\";\n  std::cout << \"    where N = number of channels,\\n\";\n  std::cout << \"    fs = the sample rate,\\n\";\n  std::cout << \"    duration = optional time in seconds to record (default = 2.0),\\n\";\n  std::cout << \"    device = optional device to use (default = 0),\\n\";\n  std::cout << \"    and channelOffset = an optional channel offset on the device (default = 0).\\n\\n\";\n  exit( 0 );\n}\n\nstruct InputData {\n  MY_TYPE* buffer;\n  unsigned long bufferBytes;\n  unsigned long totalFrames;\n  unsigned long frameCounter;\n  unsigned int channels;\n};\n\n// Interleaved buffers\nint input( void * /*outputBuffer*/, void *inputBuffer, unsigned int nBufferFrames,\n           double /*streamTime*/, RtAudioStreamStatus /*status*/, void *data )\n{\n  InputData *iData = (InputData *) data;\n\n  // Simply copy the data to our allocated buffer.\n  unsigned int frames = nBufferFrames;\n  if ( iData->frameCounter + nBufferFrames > iData->totalFrames ) {\n    frames = iData->totalFrames - iData->frameCounter;\n    iData->bufferBytes = frames * iData->channels * sizeof( MY_TYPE );\n  }\n\n  unsigned long offset = iData->frameCounter * iData->channels;\n  memcpy( iData->buffer+offset, inputBuffer, iData->bufferBytes );\n  iData->frameCounter += frames;\n\n  if ( iData->frameCounter >= iData->totalFrames ) return 2;\n  return 0;\n}\n\nint main( int argc, char *argv[] )\n{\n  unsigned int channels, fs, bufferFrames, device = 0, offset = 0;\n  double time = 2.0;\n  FILE *fd;\n\n  // minimal command-line checking\n  if ( argc < 3 || argc > 6 ) usage();\n\n  RtAudio adc;\n  if ( adc.getDeviceCount() < 1 ) {\n    std::cout << \"\\nNo audio devices found!\\n\";\n    exit( 1 );\n  }\n\n  channels = (unsigned int) atoi( argv[1] );\n  fs = (unsigned int) atoi( argv[2] );\n  if ( argc > 3 )\n    time = (double) atof( argv[3] );\n  if ( argc > 4 )\n    device = (unsigned int) atoi( argv[4] );\n  if ( argc > 5 )\n    offset = (unsigned int) atoi( argv[5] );\n\n  // Let RtAudio print messages to stderr.\n  adc.showWarnings( true );\n\n  // Set our stream parameters for input only.\n  bufferFrames = 512;\n  RtAudio::StreamParameters iParams;\n  if ( device == 0 )\n    iParams.deviceId = adc.getDefaultInputDevice();\n  else\n    iParams.deviceId = device;\n  iParams.nChannels = channels;\n  iParams.firstChannel = offset;\n\n  InputData data;\n  data.buffer = 0;\n  try {\n    adc.openStream( NULL, &iParams, FORMAT, fs, &bufferFrames, &input, (void *)&data );\n  }\n  catch ( RtAudioError& e ) {\n    std::cout << '\\n' << e.getMessage() << '\\n' << std::endl;\n    goto cleanup;\n  }\n\n  data.bufferBytes = bufferFrames * channels * sizeof( MY_TYPE );\n  data.totalFrames = (unsigned long) (fs * time);\n  data.frameCounter = 0;\n  data.channels = channels;\n  unsigned long totalBytes;\n  totalBytes = data.totalFrames * channels * sizeof( MY_TYPE );\n\n  // Allocate the entire data buffer before starting stream.\n  data.buffer = (MY_TYPE*) malloc( totalBytes );\n  if ( data.buffer == 0 ) {\n    std::cout << \"Memory allocation error ... quitting!\\n\";\n    goto cleanup;\n  }\n\n  try {\n    adc.startStream();\n  }\n  catch ( RtAudioError& e ) {\n    std::cout << '\\n' << e.getMessage() << '\\n' << std::endl;\n    goto cleanup;\n  }\n\n  std::cout << \"\\nRecording for \" << time << \" seconds ... writing file 'record.raw' (buffer frames = \" << bufferFrames << \").\" << std::endl;\n  while ( adc.isStreamRunning() ) {\n    SLEEP( 100 ); // wake every 100 ms to check if we're done\n  }\n\n  // Now write the entire data to the file.\n  fd = fopen( \"record.raw\", \"wb\" );\n  fwrite( data.buffer, sizeof( MY_TYPE ), data.totalFrames * channels, fd );\n  fclose( fd );\n\n cleanup:\n  if ( adc.isStreamOpen() ) adc.closeStream();\n  if ( data.buffer ) free( data.buffer );\n\n  return 0;\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/testall.cpp",
    "content": "/******************************************/\n/*\n  testall.cpp\n  by Gary P. Scavone, 2007-2008\n\n  This program will make a variety of calls\n  to extensively test RtAudio functionality.\n*/\n/******************************************/\n\n#include \"RtAudio.h\"\n#include <iostream>\n#include <cstdlib>\n#include <cstring>\n\n#define BASE_RATE 0.005\n#define TIME   1.0\n\nvoid usage( void ) {\n  // Error function in case of incorrect command-line\n  // argument specifications\n  std::cout << \"\\nuseage: testall N fs <iDevice> <oDevice> <iChannelOffset> <oChannelOffset>\\n\";\n  std::cout << \"    where N = number of channels,\\n\";\n  std::cout << \"    fs = the sample rate,\\n\";\n  std::cout << \"    iDevice = optional input device to use (default = 0),\\n\";\n  std::cout << \"    oDevice = optional output device to use (default = 0),\\n\";\n  std::cout << \"    iChannelOffset = an optional input channel offset (default = 0),\\n\";\n  std::cout << \"    and oChannelOffset = optional output channel offset (default = 0).\\n\\n\";\n  exit( 0 );\n}\n\nunsigned int channels;\n\n// Interleaved buffers\nint sawi( void *outputBuffer, void * /*inputBuffer*/, unsigned int nBufferFrames,\n          double /*streamTime*/, RtAudioStreamStatus status, void *data )\n{\n  unsigned int i, j;\n  extern unsigned int channels;\n  double *buffer = (double *) outputBuffer;\n  double *lastValues = (double *) data;\n\n  if ( status )\n    std::cout << \"Stream underflow detected!\" << std::endl;\n\n  for ( i=0; i<nBufferFrames; i++ ) {\n    for ( j=0; j<channels; j++ ) {\n      *buffer++ = (double) lastValues[j];\n      lastValues[j] += BASE_RATE * (j+1+(j*0.1));\n      if ( lastValues[j] >= 1.0 ) lastValues[j] -= 2.0;\n    }\n  }\n\n  return 0;\n}\n\n// Non-interleaved buffers\nint sawni( void *outputBuffer, void * /*inputBuffer*/, unsigned int nBufferFrames,\n           double /*streamTime*/, RtAudioStreamStatus status, void *data )\n{\n  unsigned int i, j;\n  extern unsigned int channels;\n  double *buffer = (double *) outputBuffer;\n  double *lastValues = (double *) data;\n\n  if ( status )\n    std::cout << \"Stream underflow detected!\" << std::endl;\n\n  double increment;\n  for ( j=0; j<channels; j++ ) {\n    increment = BASE_RATE * (j+1+(j*0.1));\n    for ( i=0; i<nBufferFrames; i++ ) {\n      *buffer++ = (double) lastValues[j];\n      lastValues[j] += increment;\n      if ( lastValues[j] >= 1.0 ) lastValues[j] -= 2.0;\n    }\n  }\n\n  return 0;\n}\n\nint inout( void *outputBuffer, void *inputBuffer, unsigned int /*nBufferFrames*/,\n           double /*streamTime*/, RtAudioStreamStatus status, void *data )\n{\n  // Since the number of input and output channels is equal, we can do\n  // a simple buffer copy operation here.\n  if ( status ) std::cout << \"Stream over/underflow detected.\" << std::endl;\n\n  unsigned int *bytes = (unsigned int *) data;\n  memcpy( outputBuffer, inputBuffer, *bytes );\n  return 0;\n}\n\nint main( int argc, char *argv[] )\n{\n  unsigned int bufferFrames, fs, oDevice = 0, iDevice = 0, iOffset = 0, oOffset = 0;\n  char input;\n\n  // minimal command-line checking\n  if (argc < 3 || argc > 7 ) usage();\n\n  RtAudio dac;\n  if ( dac.getDeviceCount() < 1 ) {\n    std::cout << \"\\nNo audio devices found!\\n\";\n    exit( 1 );\n  }\n\n  channels = (unsigned int) atoi( argv[1] );\n  fs = (unsigned int) atoi( argv[2] );\n  if ( argc > 3 )\n    iDevice = (unsigned int) atoi( argv[3] );\n  if ( argc > 4 )\n    oDevice = (unsigned int) atoi(argv[4]);\n  if ( argc > 5 )\n    iOffset = (unsigned int) atoi(argv[5]);\n  if ( argc > 6 )\n    oOffset = (unsigned int) atoi(argv[6]);\n\n  double *data = (double *) calloc( channels, sizeof( double ) );\n\n  // Let RtAudio print messages to stderr.\n  dac.showWarnings( true );\n\n  // Set our stream parameters for output only.\n  bufferFrames = 512;\n  RtAudio::StreamParameters oParams, iParams;\n  oParams.deviceId = oDevice;\n  oParams.nChannels = channels;\n  oParams.firstChannel = oOffset;\n\n  if ( oDevice == 0 )\n    oParams.deviceId = dac.getDefaultOutputDevice();\n\n  RtAudio::StreamOptions options;\n  options.flags = RTAUDIO_HOG_DEVICE;\n  try {\n    dac.openStream( &oParams, NULL, RTAUDIO_FLOAT64, fs, &bufferFrames, &sawi, (void *)data, &options );\n    std::cout << \"\\nStream latency = \" << dac.getStreamLatency() << std::endl;\n\n    // Start the stream\n    dac.startStream();\n    std::cout << \"\\nPlaying ... press <enter> to stop.\\n\";\n    std::cin.get( input );\n\n    // Stop the stream\n    dac.stopStream();\n\n    // Restart again\n    std::cout << \"Press <enter> to restart.\\n\";\n    std::cin.get( input );\n    dac.startStream();\n\n    // Test abort function\n    std::cout << \"Playing again ... press <enter> to abort.\\n\";\n    std::cin.get( input );\n    dac.abortStream();\n\n    // Restart another time\n    std::cout << \"Press <enter> to restart again.\\n\";\n    std::cin.get( input );\n    dac.startStream();\n\n    std::cout << \"Playing again ... press <enter> to close the stream.\\n\";\n    std::cin.get( input );\n  }\n  catch ( RtAudioError& e ) {\n    e.printMessage();\n    goto cleanup;\n  }\n\n  if ( dac.isStreamOpen() ) dac.closeStream();\n\n  // Test non-interleaved functionality\n  options.flags = RTAUDIO_NONINTERLEAVED;\n  try {\n    dac.openStream( &oParams, NULL, RTAUDIO_FLOAT64, fs, &bufferFrames, &sawni, (void *)data, &options );\n\n    std::cout << \"Press <enter> to start non-interleaved playback.\\n\";\n    std::cin.get( input );\n\n    // Start the stream\n    dac.startStream();\n    std::cout << \"\\nPlaying ... press <enter> to stop.\\n\";\n    std::cin.get( input );\n  }\n  catch ( RtAudioError& e ) {\n    e.printMessage();\n    goto cleanup;\n  }\n\n  if ( dac.isStreamOpen() ) dac.closeStream();\n\n  // Now open a duplex stream.\n  unsigned int bufferBytes;\n  iParams.deviceId = iDevice;\n  iParams.nChannels = channels;\n  iParams.firstChannel = iOffset;\n  if ( iDevice == 0 )\n    iParams.deviceId = dac.getDefaultInputDevice();\n  options.flags = RTAUDIO_NONINTERLEAVED;\n  try {\n    dac.openStream( &oParams, &iParams, RTAUDIO_SINT32, fs, &bufferFrames, &inout, (void *)&bufferBytes, &options );\n\n    bufferBytes = bufferFrames * channels * 4;\n\n    std::cout << \"Press <enter> to start duplex operation.\\n\";\n    std::cin.get( input );\n\n    // Start the stream\n    dac.startStream();\n    std::cout << \"\\nRunning ... press <enter> to stop.\\n\";\n    std::cin.get( input );\n\n    // Stop the stream\n    dac.stopStream();\n    std::cout << \"\\nStopped ... press <enter> to restart.\\n\";\n    std::cin.get( input );\n\n    // Restart the stream\n    dac.startStream();\n    std::cout << \"\\nRunning ... press <enter> to stop.\\n\";\n    std::cin.get( input );\n  }\n  catch ( RtAudioError& e ) {\n    e.printMessage();\n  }\n\n cleanup:\n  if ( dac.isStreamOpen() ) dac.closeStream();\n  free( data );\n\n  return 0;\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtaudio/tests/teststops.cpp",
    "content": "/******************************************/\r\n/*\r\n  teststop.cpp\r\n  by Gary P. Scavone, 2011\r\n\r\n  This program starts and stops an RtAudio\r\n  stream many times in succession and in\r\n  different ways to to test its functionality.\r\n*/\r\n/******************************************/\r\n\r\n#include \"RtAudio.h\"\r\n#include <iostream>\r\n#include <cstdlib>\r\n#include <cstring>\r\n#include <cstdio>\r\n\r\n#define PULSE_RATE 0.01  // seconds\r\n#define RUNTIME    0.4   // seconds\r\n#define PAUSETIME  0.1   // seconds\r\n#define REPETITIONS 10\r\n\r\n// Platform-dependent sleep routines.\r\n#if defined( __WINDOWS_ASIO__ ) || defined( __WINDOWS_DS__ ) || defined( __WINDOWS_WASAPI__ )\r\n  #include <windows.h>\r\n  #define SLEEP( milliseconds ) Sleep( (DWORD) milliseconds ) \r\n#else // Unix variants\r\n  #include <unistd.h>\r\n  #define SLEEP( milliseconds ) usleep( (unsigned long) (milliseconds * 1000.0) )\r\n#endif\r\n\r\nvoid usage( void ) {\r\n  // Error function in case of incorrect command-line\r\n  // argument specifications\r\n  std::cout << \"\\nuseage: teststops N fs <iDevice> <oDevice> <iChannelOffset> <oChannelOffset>\\n\";\r\n  std::cout << \"    where N = number of channels,\\n\";\r\n  std::cout << \"    fs = the sample rate,\\n\";\r\n  std::cout << \"    iDevice = optional input device to use (default = 0),\\n\";\r\n  std::cout << \"    oDevice = optional output device to use (default = 0),\\n\";\r\n  std::cout << \"    iChannelOffset = an optional input channel offset (default = 0),\\n\";\r\n  std::cout << \"    and oChannelOffset = optional output channel offset (default = 0).\\n\\n\";\r\n  exit( 0 );\r\n}\r\n\r\nstruct MyData {\r\n  unsigned int channels;\r\n  unsigned int pulseCount;\r\n  unsigned int frameCounter;\r\n  unsigned int nFrames;\r\n  unsigned int returnValue;\r\n};\r\n\r\n// Interleaved buffers\r\nint pulse( void *outputBuffer, void * /*inputBuffer*/, unsigned int nBufferFrames,\r\n           double /*streamTime*/, RtAudioStreamStatus status, void *mydata )\r\n{\r\n  // Write out a pulse signal and ignore the input buffer.\r\n  unsigned int i, j;\r\n  float sample;\r\n  float *buffer = (float *) outputBuffer;\r\n  MyData *data = (MyData *) mydata;\r\n\r\n  if ( status ) std::cout << \"Stream over/underflow detected!\" << std::endl;\r\n\r\n  for ( i=0; i<nBufferFrames; i++ ) {\r\n    if ( data->frameCounter % data->pulseCount == 0 ) sample = 0.9f;\r\n    else sample = 0.0;\r\n    for ( j=0; j<data->channels; j++ )\r\n      *buffer++ = sample;\r\n\r\n    data->frameCounter++;\r\n  }\r\n\r\n  if ( data->frameCounter >= data->nFrames )\r\n    return data->returnValue;\r\n  else\r\n    return 0;\r\n}\r\n\r\nint main( int argc, char *argv[] )\r\n{\r\n  unsigned int bufferFrames, fs, oDevice = 0, iDevice = 0, iOffset = 0, oOffset = 0;\r\n  unsigned int runtime, pausetime;\r\n  char input;\r\n\r\n  // minimal command-line checking\r\n  if (argc < 3 || argc > 7 ) usage();\r\n\r\n  RtAudio *adc = new RtAudio();\r\n  if ( adc->getDeviceCount() < 1 ) {\r\n    std::cout << \"\\nNo audio devices found!\\n\";\r\n    exit( 1 );\r\n  }\r\n\r\n  MyData mydata;\r\n  mydata.channels = (unsigned int) atoi( argv[1] );\r\n  fs = (unsigned int) atoi( argv[2] );\r\n  if ( argc > 3 )\r\n    iDevice = (unsigned int) atoi( argv[3] );\r\n  if ( argc > 4 )\r\n    oDevice = (unsigned int) atoi(argv[4]);\r\n  if ( argc > 5 )\r\n    iOffset = (unsigned int) atoi(argv[5]);\r\n  if ( argc > 6 )\r\n    oOffset = (unsigned int) atoi(argv[6]);\r\n\r\n  // Let RtAudio print messages to stderr.\r\n  adc->showWarnings( true );\r\n\r\n  runtime = static_cast<unsigned int>(RUNTIME * 1000);\r\n  pausetime = static_cast<unsigned int>(PAUSETIME * 1000);\r\n\r\n  // Set our stream parameters for a duplex stream.\r\n  bufferFrames = 512;\r\n  RtAudio::StreamParameters oParams, iParams;\r\n  oParams.deviceId = oDevice;\r\n  oParams.nChannels = mydata.channels;\r\n  oParams.firstChannel = oOffset;\r\n\r\n  iParams.deviceId = iDevice;\r\n  iParams.nChannels = mydata.channels;\r\n  iParams.firstChannel = iOffset;\r\n\r\n  if ( iDevice == 0 )\r\n    iParams.deviceId = adc->getDefaultInputDevice();\r\n  if ( oDevice == 0 )\r\n    oParams.deviceId = adc->getDefaultOutputDevice();\r\n\r\n  // First, test external stopStream() calls.\r\n  mydata.pulseCount = static_cast<unsigned int>(PULSE_RATE * fs);\r\n  mydata.nFrames = 50 * fs;\r\n  mydata.returnValue = 0;\r\n  try {\r\n    adc->openStream( &oParams, &iParams, RTAUDIO_SINT32, fs, &bufferFrames, &pulse, (void *)&mydata );\r\n\r\n    std::cout << \"Press <enter> to start test.\\n\";\r\n    std::cin.get( input );\r\n\r\n    for (int i=0; i<REPETITIONS; i++ ) {\r\n      mydata.frameCounter = 0;\r\n      adc->startStream();\r\n      std::cout << \"Stream started ... \";\r\n      SLEEP( runtime );\r\n      adc->stopStream();\r\n      std::cout << \"stream externally stopped.\\n\";\r\n      SLEEP( pausetime );\r\n    }\r\n  }\r\n  catch ( RtAudioError& e ) {\r\n    e.printMessage();\r\n    goto cleanup;\r\n  }\r\n\r\n  adc->closeStream();\r\n\r\n  // Next, test internal stopStream() calls.\r\n  mydata.nFrames = (unsigned int) (RUNTIME * fs);\r\n  mydata.returnValue = 1;\r\n  try {\r\n    adc->openStream( &oParams, &iParams, RTAUDIO_SINT32, fs, &bufferFrames, &pulse, (void *)&mydata );\r\n\r\n    std::cin.clear();\r\n    fflush(stdin);\r\n    std::cout << \"\\nPress <enter> to continue test.\\n\";\r\n    std::cin.get( input );\r\n\r\n    for (int i=0; i<REPETITIONS; i++ ) {\r\n      mydata.frameCounter = 0;\r\n      adc->startStream();\r\n      std::cout << \"Stream started ... \";\r\n      while ( adc->isStreamRunning() ) SLEEP( 5 );\r\n      std::cout << \"stream stopped via callback return value = 1.\\n\";\r\n      SLEEP( pausetime );\r\n    }\r\n  }\r\n  catch ( RtAudioError& e ) {\r\n    e.printMessage();\r\n    goto cleanup;\r\n  }\r\n\r\n  adc->closeStream();\r\n\r\n  // Test internal abortStream() calls.\r\n  mydata.returnValue = 2;\r\n  try {\r\n    adc->openStream( &oParams, &iParams, RTAUDIO_SINT32, fs, &bufferFrames, &pulse, (void *)&mydata );\r\n    std::cin.clear();\r\n    fflush(stdin);\r\n    std::cout << \"\\nPress <enter> to continue test.\\n\";\r\n    std::cin.get( input );\r\n\r\n    for (int i=0; i<REPETITIONS; i++ ) {\r\n      mydata.frameCounter = 0;\r\n      adc->startStream();\r\n      std::cout << \"Stream started ... \";\r\n      while ( adc->isStreamRunning() ) SLEEP( 5 );\r\n      std::cout << \"stream aborted via callback return value = 2.\\n\";\r\n      SLEEP( pausetime );\r\n    }\r\n  }\r\n  catch ( RtAudioError& e ) {\r\n    e.printMessage();\r\n    goto cleanup;\r\n  }\r\n\r\n  adc->closeStream();\r\n\r\n  // Test consecutive stream re-opening.\r\n  mydata.returnValue = 0;\r\n  mydata.nFrames = 50 * fs;\r\n  try {\r\n\r\n    std::cin.clear();\r\n    fflush(stdin);\r\n    std::cout << \"\\nPress <enter> to continue test.\\n\";\r\n    std::cin.get( input );\r\n\r\n    for (int i=0; i<REPETITIONS; i++ ) {\r\n      adc->openStream( &oParams, &iParams, RTAUDIO_SINT32, fs, &bufferFrames, &pulse, (void *)&mydata );\r\n      mydata.frameCounter = 0;\r\n      adc->startStream();\r\n      std::cout << \"New stream started ... \";\r\n      SLEEP( runtime );\r\n      adc->stopStream();\r\n      adc->closeStream();\r\n      std::cout << \"stream stopped externally and closed.\\n\";\r\n      SLEEP( pausetime );\r\n    }\r\n  }\r\n  catch ( RtAudioError& e ) {\r\n    e.printMessage();\r\n    goto cleanup;\r\n  }\r\n\r\n  delete adc;\r\n  adc = 0;\r\n\r\n  // Test consecutive RtAudio creating and deletion.\r\n  try {\r\n\r\n    std::cin.clear();\r\n    fflush(stdin);\r\n    std::cout << \"\\nPress <enter> to continue test.\\n\";\r\n    std::cin.get( input );\r\n\r\n    for (int i=0; i<REPETITIONS; i++ ) {\r\n      adc = new RtAudio();      \r\n      adc->openStream( &oParams, &iParams, RTAUDIO_SINT32, fs, &bufferFrames, &pulse, (void *)&mydata );\r\n      mydata.frameCounter = 0;\r\n      adc->startStream();\r\n      std::cout << \"New instance and stream started ... \";\r\n      SLEEP( runtime );\r\n      adc->stopStream();\r\n      adc->closeStream();\r\n      delete adc;\r\n      adc = 0;\r\n      std::cout << \"stream stopped and instance deleted.\\n\";\r\n      SLEEP( pausetime );\r\n    }\r\n  }\r\n  catch ( RtAudioError& e ) {\r\n    e.printMessage();\r\n    goto cleanup;\r\n  }\r\n\r\n cleanup:\r\n  if ( adc && adc->isStreamOpen() ) adc->closeStream();\r\n  if ( adc ) delete adc;\r\n\r\n  return 0;\r\n}\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/.gitattributes",
    "content": "# make sure that .gitignore, .travis.yml,... are not part of a\n# source-package generated via 'git archive'\n.git*      \texport-ignore\n/.*\t\texport-ignore\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/.github/issue_template.md",
    "content": "The maintainers / developers of RtMidi favour pull requests over issues. We generally do not have access to all the supported platforms to attempt to verify a reported problem. It will help the entire RtMidi community if you can debug a problem you are reporting and suggest a way to fix it yourself.\n\n- Expected behavior and actual behavior.\n\n- Steps to reproduce the problem.\n\n- Specifications like the version of the project, operating system, or hardware.\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/.gitignore",
    "content": "/config\n/configure\n/Makefile.in\n/aclocal.m4\n/autom4te.cache\n/configure\n/m4\n/doc/Makefile.in\n/tests/Makefile.in\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/.travis.yml",
    "content": "language: cpp\nsudo: false  # docker VM\nmatrix:\n  include:\n  - os: linux\n    env: HOST=\"\" API=\"alsa\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"\" API=\"alsa\"\n    compiler: clang\n  - os: linux\n    env: HOST=\"\" API=\"jack\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"\" API=\"jack\"\n    compiler: clang\n  - os: linux\n    env: HOST=\"--host=i686-w64-mingw32\" API=\"winmm\"\n    compiler: gcc\n  - os: linux\n    env: HOST=\"--host=x86_64-w64-mingw32\" API=\"winmm\"\n    compiler: gcc\n  # jack and asound not found on ARM gnueabihf\n  # - os: linux\n  #   env: HOST=\"--host=arm-linux-gnueabihf\" API=\"alsa\"\n  #   compiler: gcc\n  # - os: linux\n  #   env: HOST=\"--host=arm-linux-gnueabihf\" API=\"jack\"\n  #   compiler: gcc\n  - os: osx\n    env: HOST=\"\" API=\"core\"\n    compiler: gcc\n  - os: osx\n    env: HOST=\"\" API=\"core\"\n    compiler: clang\ninstall:\n- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get install libasound2-dev libjack-dev doxygen g++-mingw-w64-i686 g++-mingw-w64-x86-64 g++-arm-linux-gnueabihf; fi\n- if [ $TRAVIS_OS_NAME = osx ]; then brew install doxygen || (brew update && brew install doxygen); fi\n- if [ -n \"$HOST\" ]; then unset CXX; unset CC; fi\nscript: ./autogen.sh --enable-debug --with-$API $HOST && make\nafter_script:\n- make check\n- make distcheck\n- make install\n# ALSA: no access to /dev/snd/seq\n# JACK: Jack server not running\n# - tests/midiprobe\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/Makefile.am",
    "content": "SUBDIRS = . tests\nif MAKE_DOC\nSUBDIRS += doc\nendif\n\nlib_LTLIBRARIES = %D%/librtmidi.la\n%C%_librtmidi_la_LDFLAGS = -no-undefined -export-dynamic -version-info @SO_VERSION@\n%C%_librtmidi_la_SOURCES = \\\n  %D%/RtMidi.cpp \\\n  %D%/rtmidi_c.cpp\n\nrtmidi_incdir = $(includedir)/rtmidi\nrtmidi_inc_HEADERS = \\\n  %D%/RtMidi.h \\\n  %D%/rtmidi_c.h\n\npkgconfigdatadir = $(libdir)/pkgconfig\npkgconfigdata_DATA = rtmidi.pc\n\nEXTRA_DIST = autogen.sh README.md msw\n\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/README.md",
    "content": "# RtMidi\n\n[![Build Status](https://travis-ci.org/thestk/rtmidi.svg?branch=master)](https://travis-ci.org/thestk/rtmidi)\n\nA set of C++ classes that provide a common API for realtime MIDI input/output across Linux (ALSA & JACK), Macintosh OS X (CoreMidi & JACK) and Windows (Multimedia).\n\nBy Gary P. Scavone, 2003-2017.\n\nThis distribution of RtMidi contains the following:\n\n- doc:      RtMidi documentation (also online at http://music.mcgill.ca/~gary/rtmidi/)\n- tests:    example RtMidi programs\n\nOn Unix systems, type `./configure` in the top level directory, then `make` in the tests/ directory to compile the test programs.  In Windows, open the Visual C++ workspace file located in the tests/ directory.\n\nIf you checked out the code from git, please run `./autogen.sh` before `./configure`.\n\n## Overview\n\nRtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific classes) that provide a common API (Application Programming Interface) for realtime MIDI input/output across Linux (ALSA, JACK), Macintosh OS X (CoreMIDI, JACK), and Windows (Multimedia Library) operating systems.  RtMidi significantly simplifies the process of interacting with computer MIDI hardware and software.  It was designed with the following goals:\n\n  - object oriented C++ design\n  - simple, common API across all supported platforms\n  - only one header and one source file for easy inclusion in programming projects\n  - MIDI device enumeration\n\nMIDI input and output functionality are separated into two classes, RtMidiIn and RtMidiOut.  Each class instance supports only a single MIDI connection.  RtMidi does not provide timing functionality (i.e., output messages are sent immediately).  Input messages are timestamped with delta times in seconds (via a double floating point type).  MIDI data is passed to the user as raw bytes using an std::vector<unsigned char>.\n\n## Windows\n\nIn some cases, for example to use RtMidi with GS Synth, it may be necessary for your program to call CoInitializeEx and CoUninitialize on entry to and exit from the thread that uses RtMidi.\n\n## Further reading\n\nFor complete documentation on RtMidi, see the doc directory of the distribution or surf to http://music.mcgill.ca/~gary/rtmidi/.\n\n\n## Legal and ethical\n\nThe RtMidi license is similar to the MIT License, with the added *feature* that modifications be sent to the developer.\n\n    RtMidi: realtime MIDI i/o C++ classes\n    Copyright (c) 2003-2017 Gary P. Scavone\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation files\n    (the \"Software\"), to deal in the Software without restriction,\n    including without limitation the rights to use, copy, modify, merge,\n    publish, distribute, sublicense, and/or sell copies of the Software,\n    and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    Any person wishing to distribute modifications to the Software is asked to send the modifications to the original developer so that they can be incorporated into the canonical version.  This is,\n    however, not a binding provision of this license.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\n    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\n    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/RtMidi.cpp",
    "content": "/**********************************************************************/\n/*! \\class RtMidi\n    \\brief An abstract base class for realtime MIDI input/output.\n\n    This class implements some common functionality for the realtime\n    MIDI input/output subclasses RtMidiIn and RtMidiOut.\n\n    RtMidi WWW site: http://music.mcgill.ca/~gary/rtmidi/\n\n    RtMidi: realtime MIDI i/o C++ classes\n    Copyright (c) 2003-2017 Gary P. Scavone\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation files\n    (the \"Software\"), to deal in the Software without restriction,\n    including without limitation the rights to use, copy, modify, merge,\n    publish, distribute, sublicense, and/or sell copies of the Software,\n    and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    Any person wishing to distribute modifications to the Software is\n    asked to send the modifications to the original developer so that\n    they can be incorporated into the canonical version.  This is,\n    however, not a binding provision of this license.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\n    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\n    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n/**********************************************************************/\n\n#include \"RtMidi.h\"\n#include <sstream>\n\n#if defined(__MACOSX_CORE__)\n  #if TARGET_OS_IPHONE\n    #define AudioGetCurrentHostTime CAHostTimeBase::GetCurrentTime\n    #define AudioConvertHostTimeToNanos CAHostTimeBase::ConvertToNanos\n  #endif\n#endif\n\n// Default for Windows is to add an identifier to the port names; this\n// flag can be defined (e.g. in your project file) to disable this behaviour.\n//#define RTMIDI_DO_NOT_ENSURE_UNIQUE_PORTNAMES\n\n//*********************************************************************//\n//  RtMidi Definitions\n//*********************************************************************//\n\nRtMidi :: RtMidi()\n  : rtapi_(0)\n{\n}\n\nRtMidi :: ~RtMidi()\n{\n  delete rtapi_;\n  rtapi_ = 0;\n}\n\nstd::string RtMidi :: getVersion( void ) throw()\n{\n  return std::string( RTMIDI_VERSION );\n}\n\nvoid RtMidi :: getCompiledApi( std::vector<RtMidi::Api> &apis ) throw()\n{\n  apis.clear();\n\n  // The order here will control the order of RtMidi's API search in\n  // the constructor.\n#if defined(__MACOSX_CORE__)\n  apis.push_back( MACOSX_CORE );\n#endif\n#if defined(__LINUX_ALSA__)\n  apis.push_back( LINUX_ALSA );\n#endif\n#if defined(__UNIX_JACK__)\n  apis.push_back( UNIX_JACK );\n#endif\n#if defined(__WINDOWS_MM__)\n  apis.push_back( WINDOWS_MM );\n#endif\n#if defined(__RTMIDI_DUMMY__)\n  apis.push_back( RTMIDI_DUMMY );\n#endif\n}\n\n//*********************************************************************//\n//  RtMidiIn Definitions\n//*********************************************************************//\n\nvoid RtMidiIn :: openMidiApi( RtMidi::Api api, const std::string &clientName, unsigned int queueSizeLimit )\n{\n  delete rtapi_;\n  rtapi_ = 0;\n\n#if defined(__UNIX_JACK__)\n  if ( api == UNIX_JACK )\n    rtapi_ = new MidiInJack( clientName, queueSizeLimit );\n#endif\n#if defined(__LINUX_ALSA__)\n  if ( api == LINUX_ALSA )\n    rtapi_ = new MidiInAlsa( clientName, queueSizeLimit );\n#endif\n#if defined(__WINDOWS_MM__)\n  if ( api == WINDOWS_MM )\n    rtapi_ = new MidiInWinMM( clientName, queueSizeLimit );\n#endif\n#if defined(__MACOSX_CORE__)\n  if ( api == MACOSX_CORE )\n    rtapi_ = new MidiInCore( clientName, queueSizeLimit );\n#endif\n#if defined(__RTMIDI_DUMMY__)\n  if ( api == RTMIDI_DUMMY )\n    rtapi_ = new MidiInDummy( clientName, queueSizeLimit );\n#endif\n}\n\nRTMIDI_DLL_PUBLIC RtMidiIn :: RtMidiIn( RtMidi::Api api, const std::string &clientName, unsigned int queueSizeLimit )\n  : RtMidi()\n{\n  if ( api != UNSPECIFIED ) {\n    // Attempt to open the specified API.\n    openMidiApi( api, clientName, queueSizeLimit );\n    if ( rtapi_ ) return;\n\n    // No compiled support for specified API value.  Issue a warning\n    // and continue as if no API was specified.\n    std::cerr << \"\\nRtMidiIn: no compiled support for specified API argument!\\n\\n\" << std::endl;\n  }\n\n  // Iterate through the compiled APIs and return as soon as we find\n  // one with at least one port or we reach the end of the list.\n  std::vector< RtMidi::Api > apis;\n  getCompiledApi( apis );\n  for ( unsigned int i=0; i<apis.size(); i++ ) {\n    openMidiApi( apis[i], clientName, queueSizeLimit );\n    if ( rtapi_ && rtapi_->getPortCount() ) break;\n  }\n\n  if ( rtapi_ ) return;\n\n  // It should not be possible to get here because the preprocessor\n  // definition __RTMIDI_DUMMY__ is automatically defined if no\n  // API-specific definitions are passed to the compiler. But just in\n  // case something weird happens, we'll throw an error.\n  std::string errorText = \"RtMidiIn: no compiled API support found ... critical error!!\";\n  throw( RtMidiError( errorText, RtMidiError::UNSPECIFIED ) );\n}\n\nRtMidiIn :: ~RtMidiIn() throw()\n{\n}\n\n\n//*********************************************************************//\n//  RtMidiOut Definitions\n//*********************************************************************//\n\nvoid RtMidiOut :: openMidiApi( RtMidi::Api api, const std::string &clientName )\n{\n  delete rtapi_;\n  rtapi_ = 0;\n\n#if defined(__UNIX_JACK__)\n  if ( api == UNIX_JACK )\n    rtapi_ = new MidiOutJack( clientName );\n#endif\n#if defined(__LINUX_ALSA__)\n  if ( api == LINUX_ALSA )\n    rtapi_ = new MidiOutAlsa( clientName );\n#endif\n#if defined(__WINDOWS_MM__)\n  if ( api == WINDOWS_MM )\n    rtapi_ = new MidiOutWinMM( clientName );\n#endif\n#if defined(__MACOSX_CORE__)\n  if ( api == MACOSX_CORE )\n    rtapi_ = new MidiOutCore( clientName );\n#endif\n#if defined(__RTMIDI_DUMMY__)\n  if ( api == RTMIDI_DUMMY )\n    rtapi_ = new MidiOutDummy( clientName );\n#endif\n}\n\nRTMIDI_DLL_PUBLIC RtMidiOut :: RtMidiOut( RtMidi::Api api, const std::string &clientName)\n{\n  if ( api != UNSPECIFIED ) {\n    // Attempt to open the specified API.\n    openMidiApi( api, clientName );\n    if ( rtapi_ ) return;\n\n    // No compiled support for specified API value.  Issue a warning\n    // and continue as if no API was specified.\n    std::cerr << \"\\nRtMidiOut: no compiled support for specified API argument!\\n\\n\" << std::endl;\n  }\n\n  // Iterate through the compiled APIs and return as soon as we find\n  // one with at least one port or we reach the end of the list.\n  std::vector< RtMidi::Api > apis;\n  getCompiledApi( apis );\n  for ( unsigned int i=0; i<apis.size(); i++ ) {\n    openMidiApi( apis[i], clientName );\n    if ( rtapi_ && rtapi_->getPortCount() ) break;\n  }\n\n  if ( rtapi_ ) return;\n\n  // It should not be possible to get here because the preprocessor\n  // definition __RTMIDI_DUMMY__ is automatically defined if no\n  // API-specific definitions are passed to the compiler. But just in\n  // case something weird happens, we'll thrown an error.\n  std::string errorText = \"RtMidiOut: no compiled API support found ... critical error!!\";\n  throw( RtMidiError( errorText, RtMidiError::UNSPECIFIED ) );\n}\n\nRtMidiOut :: ~RtMidiOut() throw()\n{\n}\n\n//*********************************************************************//\n//  Common MidiApi Definitions\n//*********************************************************************//\n\nMidiApi :: MidiApi( void )\n  : apiData_( 0 ), connected_( false ), errorCallback_(0), firstErrorOccurred_(false), errorCallbackUserData_(0)\n{\n}\n\nMidiApi :: ~MidiApi( void )\n{\n}\n\nvoid MidiApi :: setErrorCallback( RtMidiErrorCallback errorCallback, void *userData = 0 )\n{\n    errorCallback_ = errorCallback;\n    errorCallbackUserData_ = userData;\n}\n\nvoid MidiApi :: error( RtMidiError::Type type, std::string errorString )\n{\n  if ( errorCallback_ ) {\n\n    if ( firstErrorOccurred_ )\n      return;\n\n    firstErrorOccurred_ = true;\n    const std::string errorMessage = errorString;\n\n    errorCallback_( type, errorMessage, errorCallbackUserData_);\n    firstErrorOccurred_ = false;\n    return;\n  }\n\n  if ( type == RtMidiError::WARNING ) {\n    std::cerr << '\\n' << errorString << \"\\n\\n\";\n  }\n  else if ( type == RtMidiError::DEBUG_WARNING ) {\n#if defined(__RTMIDI_DEBUG__)\n    std::cerr << '\\n' << errorString << \"\\n\\n\";\n#endif\n  }\n  else {\n    std::cerr << '\\n' << errorString << \"\\n\\n\";\n    throw RtMidiError( errorString, type );\n  }\n}\n\n//*********************************************************************//\n//  Common MidiInApi Definitions\n//*********************************************************************//\n\nMidiInApi :: MidiInApi( unsigned int queueSizeLimit )\n  : MidiApi()\n{\n  // Allocate the MIDI queue.\n  inputData_.queue.ringSize = queueSizeLimit;\n  if ( inputData_.queue.ringSize > 0 )\n    inputData_.queue.ring = new MidiMessage[ inputData_.queue.ringSize ];\n}\n\nMidiInApi :: ~MidiInApi( void )\n{\n  // Delete the MIDI queue.\n  if ( inputData_.queue.ringSize > 0 ) delete [] inputData_.queue.ring;\n}\n\nvoid MidiInApi :: setCallback( RtMidiIn::RtMidiCallback callback, void *userData )\n{\n  if ( inputData_.usingCallback ) {\n    errorString_ = \"MidiInApi::setCallback: a callback function is already set!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  if ( !callback ) {\n    errorString_ = \"RtMidiIn::setCallback: callback function value is invalid!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  inputData_.userCallback = callback;\n  inputData_.userData = userData;\n  inputData_.usingCallback = true;\n}\n\nvoid MidiInApi :: cancelCallback()\n{\n  if ( !inputData_.usingCallback ) {\n    errorString_ = \"RtMidiIn::cancelCallback: no callback function was set!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  inputData_.userCallback = 0;\n  inputData_.userData = 0;\n  inputData_.usingCallback = false;\n}\n\nvoid MidiInApi :: ignoreTypes( bool midiSysex, bool midiTime, bool midiSense )\n{\n  inputData_.ignoreFlags = 0;\n  if ( midiSysex ) inputData_.ignoreFlags = 0x01;\n  if ( midiTime ) inputData_.ignoreFlags |= 0x02;\n  if ( midiSense ) inputData_.ignoreFlags |= 0x04;\n}\n\ndouble MidiInApi :: getMessage( std::vector<unsigned char> *message )\n{\n  message->clear();\n\n  if ( inputData_.usingCallback ) {\n    errorString_ = \"RtMidiIn::getNextMessage: a user callback is currently set for this port.\";\n    error( RtMidiError::WARNING, errorString_ );\n    return 0.0;\n  }\n\n  double timeStamp;\n  if (!inputData_.queue.pop(message, &timeStamp))\n    return 0.0;\n\n  return timeStamp;\n}\n\nunsigned int MidiInApi::MidiQueue::size(unsigned int *__back,\n\t\t\t\t\tunsigned int *__front)\n{\n  // Access back/front members exactly once and make stack copies for\n  // size calculation\n  unsigned int _back = back, _front = front, _size;\n  if (_back >= _front)\n    _size = _back - _front;\n  else\n    _size = ringSize - _front + _back;\n\n  // Return copies of back/front so no new and unsynchronized accesses\n  // to member variables are needed.\n  if (__back) *__back = _back;\n  if (__front) *__front = _front;\n  return _size;\n}\n\n// As long as we haven't reached our queue size limit, push the message.\nbool MidiInApi::MidiQueue::push(const MidiInApi::MidiMessage& msg)\n{\n  // Local stack copies of front/back\n  unsigned int _back, _front, _size;\n\n  // Get back/front indexes exactly once and calculate current size\n  _size = size(&_back, &_front);\n\n  if ( _size < ringSize-1 )\n  {\n    ring[_back] = msg;\n    back = (back+1)%ringSize;\n    return true;\n  }\n\n  return false;\n}\n\nbool MidiInApi::MidiQueue::pop(std::vector<unsigned char> *msg, double* timeStamp)\n{\n  // Local stack copies of front/back\n  unsigned int _back, _front, _size;\n\n  // Get back/front indexes exactly once and calculate current size\n  _size = size(&_back, &_front);\n\n  if (_size == 0)\n    return false;\n\n  // Copy queued message to the vector pointer argument and then \"pop\" it.\n  msg->assign( ring[_front].bytes.begin(), ring[_front].bytes.end() );\n  *timeStamp = ring[_front].timeStamp;\n\n  // Update front\n  front = (front+1)%ringSize;\n  return true;\n}\n\n//*********************************************************************//\n//  Common MidiOutApi Definitions\n//*********************************************************************//\n\nMidiOutApi :: MidiOutApi( void )\n  : MidiApi()\n{\n}\n\nMidiOutApi :: ~MidiOutApi( void )\n{\n}\n\n// *************************************************** //\n//\n// OS/API-specific methods.\n//\n// *************************************************** //\n\n#if defined(__MACOSX_CORE__)\n\n// The CoreMIDI API is based on the use of a callback function for\n// MIDI input.  We convert the system specific time stamps to delta\n// time values.\n\n// OS-X CoreMIDI header files.\n#include <CoreMIDI/CoreMIDI.h>\n#include <CoreAudio/HostTime.h>\n#include <CoreServices/CoreServices.h>\n\n// A structure to hold variables related to the CoreMIDI API\n// implementation.\nstruct CoreMidiData {\n  MIDIClientRef client;\n  MIDIPortRef port;\n  MIDIEndpointRef endpoint;\n  MIDIEndpointRef destinationId;\n  unsigned long long lastTime;\n  MIDISysexSendRequest sysexreq;\n};\n\n//*********************************************************************//\n//  API: OS-X\n//  Class Definitions: MidiInCore\n//*********************************************************************//\n\nstatic void midiInputCallback( const MIDIPacketList *list, void *procRef, void */*srcRef*/ )\n{\n  MidiInApi::RtMidiInData *data = static_cast<MidiInApi::RtMidiInData *> (procRef);\n  CoreMidiData *apiData = static_cast<CoreMidiData *> (data->apiData);\n\n  unsigned char status;\n  unsigned short nBytes, iByte, size;\n  unsigned long long time;\n\n  bool& continueSysex = data->continueSysex;\n  MidiInApi::MidiMessage& message = data->message;\n\n  const MIDIPacket *packet = &list->packet[0];\n  for ( unsigned int i=0; i<list->numPackets; ++i ) {\n\n    // My interpretation of the CoreMIDI documentation: all message\n    // types, except sysex, are complete within a packet and there may\n    // be several of them in a single packet.  Sysex messages can be\n    // broken across multiple packets and PacketLists but are bundled\n    // alone within each packet (these packets do not contain other\n    // message types).  If sysex messages are split across multiple\n    // MIDIPacketLists, they must be handled by multiple calls to this\n    // function.\n\n    nBytes = packet->length;\n    if ( nBytes == 0 ) continue;\n\n    // Calculate time stamp.\n    if ( data->firstMessage ) {\n      message.timeStamp = 0.0;\n      data->firstMessage = false;\n    }\n    else {\n      time = packet->timeStamp;\n      if ( time == 0 ) { // this happens when receiving asynchronous sysex messages\n        time = AudioGetCurrentHostTime();\n      }\n      time -= apiData->lastTime;\n      time = AudioConvertHostTimeToNanos( time );\n      if ( !continueSysex )\n        message.timeStamp = time * 0.000000001;\n    }\n\n    // Track whether any non-filtered messages were found in this\n    // packet for timestamp calculation\n    bool foundNonFiltered = false;\n\n    iByte = 0;\n    if ( continueSysex ) {\n      // We have a continuing, segmented sysex message.\n      if ( !( data->ignoreFlags & 0x01 ) ) {\n        // If we're not ignoring sysex messages, copy the entire packet.\n        for ( unsigned int j=0; j<nBytes; ++j )\n          message.bytes.push_back( packet->data[j] );\n      }\n      continueSysex = packet->data[nBytes-1] != 0xF7;\n\n      if ( !( data->ignoreFlags & 0x01 ) && !continueSysex ) {\n        // If not a continuing sysex message, invoke the user callback function or queue the message.\n        if ( data->usingCallback ) {\n          RtMidiIn::RtMidiCallback callback = (RtMidiIn::RtMidiCallback) data->userCallback;\n          callback( message.timeStamp, &message.bytes, data->userData );\n        }\n        else {\n          // As long as we haven't reached our queue size limit, push the message.\n          if (!data->queue.push(message))\n            std::cerr << \"\\nMidiInCore: message queue limit reached!!\\n\\n\";\n        }\n        message.bytes.clear();\n      }\n    }\n    else {\n      while ( iByte < nBytes ) {\n        size = 0;\n        // We are expecting that the next byte in the packet is a status byte.\n        status = packet->data[iByte];\n        if ( !(status & 0x80) ) break;\n        // Determine the number of bytes in the MIDI message.\n        if ( status < 0xC0 ) size = 3;\n        else if ( status < 0xE0 ) size = 2;\n        else if ( status < 0xF0 ) size = 3;\n        else if ( status == 0xF0 ) {\n          // A MIDI sysex\n          if ( data->ignoreFlags & 0x01 ) {\n            size = 0;\n            iByte = nBytes;\n          }\n          else size = nBytes - iByte;\n          continueSysex = packet->data[nBytes-1] != 0xF7;\n        }\n        else if ( status == 0xF1 ) {\n            // A MIDI time code message\n           if ( data->ignoreFlags & 0x02 ) {\n            size = 0;\n            iByte += 2;\n           }\n           else size = 2;\n        }\n        else if ( status == 0xF2 ) size = 3;\n        else if ( status == 0xF3 ) size = 2;\n        else if ( status == 0xF8 && ( data->ignoreFlags & 0x02 ) ) {\n          // A MIDI timing tick message and we're ignoring it.\n          size = 0;\n          iByte += 1;\n        }\n        else if ( status == 0xFE && ( data->ignoreFlags & 0x04 ) ) {\n          // A MIDI active sensing message and we're ignoring it.\n          size = 0;\n          iByte += 1;\n        }\n        else size = 1;\n\n        // Copy the MIDI data to our vector.\n        if ( size ) {\n          foundNonFiltered = true;\n          message.bytes.assign( &packet->data[iByte], &packet->data[iByte+size] );\n          if ( !continueSysex ) {\n            // If not a continuing sysex message, invoke the user callback function or queue the message.\n            if ( data->usingCallback ) {\n              RtMidiIn::RtMidiCallback callback = (RtMidiIn::RtMidiCallback) data->userCallback;\n              callback( message.timeStamp, &message.bytes, data->userData );\n            }\n            else {\n              // As long as we haven't reached our queue size limit, push the message.\n              if (!data->queue.push(message))\n                std::cerr << \"\\nMidiInCore: message queue limit reached!!\\n\\n\";\n            }\n            message.bytes.clear();\n          }\n          iByte += size;\n        }\n      }\n    }\n\n    // Save the time of the last non-filtered message\n    if (foundNonFiltered)\n    {\n      apiData->lastTime = packet->timeStamp;\n      if ( apiData->lastTime == 0 ) { // this happens when receiving asynchronous sysex messages\n        apiData->lastTime = AudioGetCurrentHostTime();\n      }\n    }\n\n    packet = MIDIPacketNext(packet);\n  }\n}\n\nMidiInCore :: MidiInCore( const std::string &clientName, unsigned int queueSizeLimit ) : MidiInApi( queueSizeLimit )\n{\n  MidiInCore::initialize( clientName );\n}\n\nMidiInCore :: ~MidiInCore( void )\n{\n  // Close a connection if it exists.\n  MidiInCore::closePort();\n\n  // Cleanup.\n  CoreMidiData *data = static_cast<CoreMidiData *> (apiData_);\n  MIDIClientDispose( data->client );\n  if ( data->endpoint ) MIDIEndpointDispose( data->endpoint );\n  delete data;\n}\n\nvoid MidiInCore :: initialize( const std::string& clientName )\n{\n  // Set up our client.\n  MIDIClientRef client;\n  CFStringRef name = CFStringCreateWithCString( NULL, clientName.c_str(), kCFStringEncodingASCII );\n  OSStatus result = MIDIClientCreate(name, NULL, NULL, &client );\n  if ( result != noErr ) {\n    std::ostringstream ost;\n    ost << \"MidiInCore::initialize: error creating OS-X MIDI client object (\" << result << \").\";\n    errorString_ = ost.str();\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Save our api-specific connection information.\n  CoreMidiData *data = (CoreMidiData *) new CoreMidiData;\n  data->client = client;\n  data->endpoint = 0;\n  apiData_ = (void *) data;\n  inputData_.apiData = (void *) data;\n  CFRelease(name);\n}\n\nvoid MidiInCore :: openPort( unsigned int portNumber, const std::string &portName )\n{\n  if ( connected_ ) {\n    errorString_ = \"MidiInCore::openPort: a valid connection already exists!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  CFRunLoopRunInMode( kCFRunLoopDefaultMode, 0, false );\n  unsigned int nSrc = MIDIGetNumberOfSources();\n  if (nSrc < 1) {\n    errorString_ = \"MidiInCore::openPort: no MIDI input sources found!\";\n    error( RtMidiError::NO_DEVICES_FOUND, errorString_ );\n    return;\n  }\n\n  if ( portNumber >= nSrc ) {\n    std::ostringstream ost;\n    ost << \"MidiInCore::openPort: the 'portNumber' argument (\" << portNumber << \") is invalid.\";\n    errorString_ = ost.str();\n    error( RtMidiError::INVALID_PARAMETER, errorString_ );\n    return;\n  }\n\n  MIDIPortRef port;\n  CoreMidiData *data = static_cast<CoreMidiData *> (apiData_);\n  CFStringRef portNameRef = CFStringCreateWithCString( NULL, portName.c_str(), kCFStringEncodingASCII );\n  OSStatus result = MIDIInputPortCreate( data->client, \n                                         portNameRef,\n                                         midiInputCallback, (void *)&inputData_, &port );                 \n  CFRelease( portNameRef );\n  \n  if ( result != noErr ) {\n    MIDIClientDispose( data->client );\n    errorString_ = \"MidiInCore::openPort: error creating OS-X MIDI input port.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Get the desired input source identifier.\n  MIDIEndpointRef endpoint = MIDIGetSource( portNumber );\n  if ( endpoint == 0 ) {\n    MIDIPortDispose( port );\n    MIDIClientDispose( data->client );\n    errorString_ = \"MidiInCore::openPort: error getting MIDI input source reference.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Make the connection.\n  result = MIDIPortConnectSource( port, endpoint, NULL );\n  if ( result != noErr ) {\n    MIDIPortDispose( port );\n    MIDIClientDispose( data->client );\n    errorString_ = \"MidiInCore::openPort: error connecting OS-X MIDI input port.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Save our api-specific port information.\n  data->port = port;\n\n  connected_ = true;\n}\n\nvoid MidiInCore :: openVirtualPort( const std::string &portName )\n{\n  CoreMidiData *data = static_cast<CoreMidiData *> (apiData_);\n\n  // Create a virtual MIDI input destination.\n  MIDIEndpointRef endpoint;\n  CFStringRef portNameRef = CFStringCreateWithCString( NULL, portName.c_str(), kCFStringEncodingASCII );\n  OSStatus result = MIDIDestinationCreate( data->client,\n                                           portNameRef,\n                                           midiInputCallback, (void *)&inputData_, &endpoint );\n  CFRelease( portNameRef );\n                                           \n  if ( result != noErr ) {\n    errorString_ = \"MidiInCore::openVirtualPort: error creating virtual OS-X MIDI destination.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Save our api-specific connection information.\n  data->endpoint = endpoint;\n}\n\nvoid MidiInCore :: closePort( void )\n{\n  CoreMidiData *data = static_cast<CoreMidiData *> (apiData_);\n\n  if ( data->endpoint ) {\n    MIDIEndpointDispose( data->endpoint );\n    data->endpoint = 0;\n  }\n\n  if ( data->port ) {\n    MIDIPortDispose( data->port );\n    data->port = 0;\n  }\n\n  connected_ = false;\n}\n\nunsigned int MidiInCore :: getPortCount()\n{\n  CFRunLoopRunInMode( kCFRunLoopDefaultMode, 0, false );\n  return MIDIGetNumberOfSources();\n}\n\n// This function was submitted by Douglas Casey Tucker and apparently\n// derived largely from PortMidi.\nCFStringRef EndpointName( MIDIEndpointRef endpoint, bool isExternal )\n{\n  CFMutableStringRef result = CFStringCreateMutable( NULL, 0 );\n  CFStringRef str;\n\n  // Begin with the endpoint's name.\n  str = NULL;\n  MIDIObjectGetStringProperty( endpoint, kMIDIPropertyName, &str );\n  if ( str != NULL ) {\n    CFStringAppend( result, str );\n    CFRelease( str );\n  }\n\n  MIDIEntityRef entity = 0;\n  MIDIEndpointGetEntity( endpoint, &entity );\n  if ( entity == 0 )\n    // probably virtual\n    return result;\n\n  if ( CFStringGetLength( result ) == 0 ) {\n    // endpoint name has zero length -- try the entity\n    str = NULL;\n    MIDIObjectGetStringProperty( entity, kMIDIPropertyName, &str );\n    if ( str != NULL ) {\n      CFStringAppend( result, str );\n      CFRelease( str );\n    }\n  }\n  // now consider the device's name\n  MIDIDeviceRef device = 0;\n  MIDIEntityGetDevice( entity, &device );\n  if ( device == 0 )\n    return result;\n\n  str = NULL;\n  MIDIObjectGetStringProperty( device, kMIDIPropertyName, &str );\n  if ( CFStringGetLength( result ) == 0 ) {\n      CFRelease( result );\n      return str;\n  }\n  if ( str != NULL ) {\n    // if an external device has only one entity, throw away\n    // the endpoint name and just use the device name\n    if ( isExternal && MIDIDeviceGetNumberOfEntities( device ) < 2 ) {\n      CFRelease( result );\n      return str;\n    } else {\n      if ( CFStringGetLength( str ) == 0 ) {\n        CFRelease( str );\n        return result;\n      }\n      // does the entity name already start with the device name?\n      // (some drivers do this though they shouldn't)\n      // if so, do not prepend\n        if ( CFStringCompareWithOptions( result, /* endpoint name */\n             str /* device name */,\n             CFRangeMake(0, CFStringGetLength( str ) ), 0 ) != kCFCompareEqualTo ) {\n        // prepend the device name to the entity name\n        if ( CFStringGetLength( result ) > 0 )\n          CFStringInsert( result, 0, CFSTR(\" \") );\n        CFStringInsert( result, 0, str );\n      }\n      CFRelease( str );\n    }\n  }\n  return result;\n}\n\n// This function was submitted by Douglas Casey Tucker and apparently\n// derived largely from PortMidi.\nstatic CFStringRef ConnectedEndpointName( MIDIEndpointRef endpoint )\n{\n  CFMutableStringRef result = CFStringCreateMutable( NULL, 0 );\n  CFStringRef str;\n  OSStatus err;\n  int i;\n\n  // Does the endpoint have connections?\n  CFDataRef connections = NULL;\n  int nConnected = 0;\n  bool anyStrings = false;\n  err = MIDIObjectGetDataProperty( endpoint, kMIDIPropertyConnectionUniqueID, &connections );\n  if ( connections != NULL ) {\n    // It has connections, follow them\n    // Concatenate the names of all connected devices\n    nConnected = CFDataGetLength( connections ) / sizeof(MIDIUniqueID);\n    if ( nConnected ) {\n      const SInt32 *pid = (const SInt32 *)(CFDataGetBytePtr(connections));\n      for ( i=0; i<nConnected; ++i, ++pid ) {\n        MIDIUniqueID id = EndianS32_BtoN( *pid );\n        MIDIObjectRef connObject;\n        MIDIObjectType connObjectType;\n        err = MIDIObjectFindByUniqueID( id, &connObject, &connObjectType );\n        if ( err == noErr ) {\n          if ( connObjectType == kMIDIObjectType_ExternalSource  ||\n              connObjectType == kMIDIObjectType_ExternalDestination ) {\n            // Connected to an external device's endpoint (10.3 and later).\n            str = EndpointName( (MIDIEndpointRef)(connObject), true );\n          } else {\n            // Connected to an external device (10.2) (or something else, catch-\n            str = NULL;\n            MIDIObjectGetStringProperty( connObject, kMIDIPropertyName, &str );\n          }\n          if ( str != NULL ) {\n            if ( anyStrings )\n              CFStringAppend( result, CFSTR(\", \") );\n            else anyStrings = true;\n            CFStringAppend( result, str );\n            CFRelease( str );\n          }\n        }\n      }\n    }\n    CFRelease( connections );\n  }\n  if ( anyStrings )\n    return result;\n\n  CFRelease( result );\n\n  // Here, either the endpoint had no connections, or we failed to obtain names \n  return EndpointName( endpoint, false );\n}\n\nstd::string MidiInCore :: getPortName( unsigned int portNumber )\n{\n  CFStringRef nameRef;\n  MIDIEndpointRef portRef;\n  char name[128];\n\n  std::string stringName;\n  CFRunLoopRunInMode( kCFRunLoopDefaultMode, 0, false );\n  if ( portNumber >= MIDIGetNumberOfSources() ) {\n    std::ostringstream ost;\n    ost << \"MidiInCore::getPortName: the 'portNumber' argument (\" << portNumber << \") is invalid.\";\n    errorString_ = ost.str();\n    error( RtMidiError::WARNING, errorString_ );\n    return stringName;\n  }\n\n  portRef = MIDIGetSource( portNumber );\n  nameRef = ConnectedEndpointName(portRef);\n  CFStringGetCString( nameRef, name, sizeof(name), kCFStringEncodingUTF8);\n  CFRelease( nameRef );\n\n  return stringName = name;\n}\n\n//*********************************************************************//\n//  API: OS-X\n//  Class Definitions: MidiOutCore\n//*********************************************************************//\n\nMidiOutCore :: MidiOutCore( const std::string &clientName ) : MidiOutApi()\n{\n  MidiOutCore::initialize( clientName );\n}\n\nMidiOutCore :: ~MidiOutCore( void )\n{\n  // Close a connection if it exists.\n  MidiOutCore::closePort();\n\n  // Cleanup.\n  CoreMidiData *data = static_cast<CoreMidiData *> (apiData_);\n  MIDIClientDispose( data->client );\n  if ( data->endpoint ) MIDIEndpointDispose( data->endpoint );\n  delete data;\n}\n\nvoid MidiOutCore :: initialize( const std::string& clientName )\n{\n  // Set up our client.\n  MIDIClientRef client;\n  CFStringRef name = CFStringCreateWithCString( NULL, clientName.c_str(), kCFStringEncodingASCII );\n  OSStatus result = MIDIClientCreate(name, NULL, NULL, &client );\n  if ( result != noErr ) {\n    std::ostringstream ost;\n    ost << \"MidiInCore::initialize: error creating OS-X MIDI client object (\" << result << \").\";\n    errorString_ = ost.str();\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Save our api-specific connection information.\n  CoreMidiData *data = (CoreMidiData *) new CoreMidiData;\n  data->client = client;\n  data->endpoint = 0;\n  apiData_ = (void *) data;\n  CFRelease( name );\n}\n\nunsigned int MidiOutCore :: getPortCount()\n{\n  CFRunLoopRunInMode( kCFRunLoopDefaultMode, 0, false );\n  return MIDIGetNumberOfDestinations();\n}\n\nstd::string MidiOutCore :: getPortName( unsigned int portNumber )\n{\n  CFStringRef nameRef;\n  MIDIEndpointRef portRef;\n  char name[128];\n\n  std::string stringName;\n  CFRunLoopRunInMode( kCFRunLoopDefaultMode, 0, false );\n  if ( portNumber >= MIDIGetNumberOfDestinations() ) {\n    std::ostringstream ost;\n    ost << \"MidiOutCore::getPortName: the 'portNumber' argument (\" << portNumber << \") is invalid.\";\n    errorString_ = ost.str();\n    error( RtMidiError::WARNING, errorString_ );\n    return stringName;\n  }\n\n  portRef = MIDIGetDestination( portNumber );\n  nameRef = ConnectedEndpointName(portRef);\n  CFStringGetCString( nameRef, name, sizeof(name), kCFStringEncodingUTF8 );\n  CFRelease( nameRef );\n  \n  return stringName = name;\n}\n\nvoid MidiOutCore :: openPort( unsigned int portNumber, const std::string &portName )\n{\n  if ( connected_ ) {\n    errorString_ = \"MidiOutCore::openPort: a valid connection already exists!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  CFRunLoopRunInMode( kCFRunLoopDefaultMode, 0, false );\n  unsigned int nDest = MIDIGetNumberOfDestinations();\n  if (nDest < 1) {\n    errorString_ = \"MidiOutCore::openPort: no MIDI output destinations found!\";\n    error( RtMidiError::NO_DEVICES_FOUND, errorString_ );\n    return;\n  }\n\n  if ( portNumber >= nDest ) {\n    std::ostringstream ost;\n    ost << \"MidiOutCore::openPort: the 'portNumber' argument (\" << portNumber << \") is invalid.\";\n    errorString_ = ost.str();\n    error( RtMidiError::INVALID_PARAMETER, errorString_ );\n    return;\n  }\n\n  MIDIPortRef port;\n  CoreMidiData *data = static_cast<CoreMidiData *> (apiData_);\n  CFStringRef portNameRef = CFStringCreateWithCString( NULL, portName.c_str(), kCFStringEncodingASCII );\n  OSStatus result = MIDIOutputPortCreate( data->client, \n                                          portNameRef,\n                                          &port );\n  CFRelease( portNameRef );\n  if ( result != noErr ) {\n    MIDIClientDispose( data->client );\n    errorString_ = \"MidiOutCore::openPort: error creating OS-X MIDI output port.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Get the desired output port identifier.\n  MIDIEndpointRef destination = MIDIGetDestination( portNumber );\n  if ( destination == 0 ) {\n    MIDIPortDispose( port );\n    MIDIClientDispose( data->client );\n    errorString_ = \"MidiOutCore::openPort: error getting MIDI output destination reference.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Save our api-specific connection information.\n  data->port = port;\n  data->destinationId = destination;\n  connected_ = true;\n}\n\nvoid MidiOutCore :: closePort( void )\n{\n  CoreMidiData *data = static_cast<CoreMidiData *> (apiData_);\n\n  if ( data->endpoint ) {\n    MIDIEndpointDispose( data->endpoint );\n    data->endpoint = 0;\n  }\n\n  if ( data->port ) {\n    MIDIPortDispose( data->port );\n    data->port = 0;\n  }\n\n  connected_ = false;\n}\n\nvoid MidiOutCore :: openVirtualPort( const std::string &portName )\n{\n  CoreMidiData *data = static_cast<CoreMidiData *> (apiData_);\n\n  if ( data->endpoint ) {\n    errorString_ = \"MidiOutCore::openVirtualPort: a virtual output port already exists!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  // Create a virtual MIDI output source.\n  MIDIEndpointRef endpoint;\n  CFStringRef portNameRef = CFStringCreateWithCString( NULL, portName.c_str(), kCFStringEncodingASCII );\n  OSStatus result = MIDISourceCreate( data->client,\n                                      portNameRef,\n                                      &endpoint );\n  CFRelease( portNameRef );\n  \n  if ( result != noErr ) {\n    errorString_ = \"MidiOutCore::initialize: error creating OS-X virtual MIDI source.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Save our api-specific connection information.\n  data->endpoint = endpoint;\n}\n\nvoid MidiOutCore :: sendMessage( const unsigned char *message, size_t size )\n{\n  // We use the MIDISendSysex() function to asynchronously send sysex\n  // messages.  Otherwise, we use a single CoreMidi MIDIPacket.\n  unsigned int nBytes = static_cast<unsigned int> (size);\n  if ( nBytes == 0 ) {\n    errorString_ = \"MidiOutCore::sendMessage: no data in message argument!\";      \n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  MIDITimeStamp timeStamp = AudioGetCurrentHostTime();\n  CoreMidiData *data = static_cast<CoreMidiData *> (apiData_);\n  OSStatus result;\n\n  if ( message[0] != 0xF0 && nBytes > 3 ) {\n    errorString_ = \"MidiOutCore::sendMessage: message format problem ... not sysex but > 3 bytes?\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  Byte buffer[nBytes+(sizeof(MIDIPacketList))];\n  ByteCount listSize = sizeof(buffer);\n  MIDIPacketList *packetList = (MIDIPacketList*)buffer;\n  MIDIPacket *packet = MIDIPacketListInit( packetList );\n\n  ByteCount remainingBytes = nBytes;\n  while (remainingBytes && packet) {\n    ByteCount bytesForPacket = remainingBytes > 65535 ? 65535 : remainingBytes; // 65535 = maximum size of a MIDIPacket\n    const Byte* dataStartPtr = (const Byte *) &message[nBytes - remainingBytes];\n    packet = MIDIPacketListAdd( packetList, listSize, packet, timeStamp, bytesForPacket, dataStartPtr);\n    remainingBytes -= bytesForPacket; \n  }\n\n  if ( !packet ) {\n    errorString_ = \"MidiOutCore::sendMessage: could not allocate packet list\";      \n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Send to any destinations that may have connected to us.\n  if ( data->endpoint ) {\n    result = MIDIReceived( data->endpoint, packetList );\n    if ( result != noErr ) {\n      errorString_ = \"MidiOutCore::sendMessage: error sending MIDI to virtual destinations.\";\n      error( RtMidiError::WARNING, errorString_ );\n    }\n  }\n\n  // And send to an explicit destination port if we're connected.\n  if ( connected_ ) {\n    result = MIDISend( data->port, data->destinationId, packetList );\n    if ( result != noErr ) {\n      errorString_ = \"MidiOutCore::sendMessage: error sending MIDI message to port.\";\n      error( RtMidiError::WARNING, errorString_ );\n    }\n  }\n}\n\n#endif  // __MACOSX_CORE__\n\n\n//*********************************************************************//\n//  API: LINUX ALSA SEQUENCER\n//*********************************************************************//\n\n// API information found at:\n//   - http://www.alsa-project.org/documentation.php#Library\n\n#if defined(__LINUX_ALSA__)\n\n// The ALSA Sequencer API is based on the use of a callback function for\n// MIDI input.\n//\n// Thanks to Pedro Lopez-Cabanillas for help with the ALSA sequencer\n// time stamps and other assorted fixes!!!\n\n// If you don't need timestamping for incoming MIDI events, define the\n// preprocessor definition AVOID_TIMESTAMPING to save resources\n// associated with the ALSA sequencer queues.\n\n#include <pthread.h>\n#include <sys/time.h>\n\n// ALSA header file.\n#include <alsa/asoundlib.h>\n\n// A structure to hold variables related to the ALSA API\n// implementation.\nstruct AlsaMidiData {\n  snd_seq_t *seq;\n  unsigned int portNum;\n  int vport;\n  snd_seq_port_subscribe_t *subscription;\n  snd_midi_event_t *coder;\n  unsigned int bufferSize;\n  unsigned char *buffer;\n  pthread_t thread;\n  pthread_t dummy_thread_id;\n  snd_seq_real_time_t lastTime;\n  int queue_id; // an input queue is needed to get timestamped events\n  int trigger_fds[2];\n};\n\n#define PORT_TYPE( pinfo, bits ) ((snd_seq_port_info_get_capability(pinfo) & (bits)) == (bits))\n\n//*********************************************************************//\n//  API: LINUX ALSA\n//  Class Definitions: MidiInAlsa\n//*********************************************************************//\n\nstatic void *alsaMidiHandler( void *ptr )\n{\n  MidiInApi::RtMidiInData *data = static_cast<MidiInApi::RtMidiInData *> (ptr);\n  AlsaMidiData *apiData = static_cast<AlsaMidiData *> (data->apiData);\n\n  long nBytes;\n  double time;\n  bool continueSysex = false;\n  bool doDecode = false;\n  MidiInApi::MidiMessage message;\n  int poll_fd_count;\n  struct pollfd *poll_fds;\n\n  snd_seq_event_t *ev;\n  int result;\n  apiData->bufferSize = 32;\n  result = snd_midi_event_new( 0, &apiData->coder );\n  if ( result < 0 ) {\n    data->doInput = false;\n    std::cerr << \"\\nMidiInAlsa::alsaMidiHandler: error initializing MIDI event parser!\\n\\n\";\n    return 0;\n  }\n  unsigned char *buffer = (unsigned char *) malloc( apiData->bufferSize );\n  if ( buffer == NULL ) {\n    data->doInput = false;\n    snd_midi_event_free( apiData->coder );\n    apiData->coder = 0;\n    std::cerr << \"\\nMidiInAlsa::alsaMidiHandler: error initializing buffer memory!\\n\\n\";\n    return 0;\n  }\n  snd_midi_event_init( apiData->coder );\n  snd_midi_event_no_status( apiData->coder, 1 ); // suppress running status messages\n\n  poll_fd_count = snd_seq_poll_descriptors_count( apiData->seq, POLLIN ) + 1;\n  poll_fds = (struct pollfd*)alloca( poll_fd_count * sizeof( struct pollfd ));\n  snd_seq_poll_descriptors( apiData->seq, poll_fds + 1, poll_fd_count - 1, POLLIN );\n  poll_fds[0].fd = apiData->trigger_fds[0];\n  poll_fds[0].events = POLLIN;\n\n  while ( data->doInput ) {\n\n    if ( snd_seq_event_input_pending( apiData->seq, 1 ) == 0 ) {\n      // No data pending\n      if ( poll( poll_fds, poll_fd_count, -1) >= 0 ) {\n        if ( poll_fds[0].revents & POLLIN ) {\n          bool dummy;\n          int res = read( poll_fds[0].fd, &dummy, sizeof(dummy) );\n          (void) res;\n        }\n      }\n      continue;\n    }\n\n    // If here, there should be data.\n    result = snd_seq_event_input( apiData->seq, &ev );\n    if ( result == -ENOSPC ) {\n      std::cerr << \"\\nMidiInAlsa::alsaMidiHandler: MIDI input buffer overrun!\\n\\n\";\n      continue;\n    }\n    else if ( result <= 0 ) {\n      std::cerr << \"\\nMidiInAlsa::alsaMidiHandler: unknown MIDI input error!\\n\";\n      perror(\"System reports\");\n      continue;\n    }\n\n    // This is a bit weird, but we now have to decode an ALSA MIDI\n    // event (back) into MIDI bytes.  We'll ignore non-MIDI types.\n    if ( !continueSysex ) message.bytes.clear();\n\n    doDecode = false;\n    switch ( ev->type ) {\n\n    case SND_SEQ_EVENT_PORT_SUBSCRIBED:\n#if defined(__RTMIDI_DEBUG__)\n      std::cout << \"MidiInAlsa::alsaMidiHandler: port connection made!\\n\";\n#endif\n      break;\n\n    case SND_SEQ_EVENT_PORT_UNSUBSCRIBED:\n#if defined(__RTMIDI_DEBUG__)\n      std::cerr << \"MidiInAlsa::alsaMidiHandler: port connection has closed!\\n\";\n      std::cout << \"sender = \" << (int) ev->data.connect.sender.client << \":\"\n                << (int) ev->data.connect.sender.port\n                << \", dest = \" << (int) ev->data.connect.dest.client << \":\"\n                << (int) ev->data.connect.dest.port\n                << std::endl;\n#endif\n      break;\n\n    case SND_SEQ_EVENT_QFRAME: // MIDI time code\n      if ( !( data->ignoreFlags & 0x02 ) ) doDecode = true;\n      break;\n\n    case SND_SEQ_EVENT_TICK: // 0xF9 ... MIDI timing tick\n      if ( !( data->ignoreFlags & 0x02 ) ) doDecode = true;\n      break;\n\n    case SND_SEQ_EVENT_CLOCK: // 0xF8 ... MIDI timing (clock) tick\n      if ( !( data->ignoreFlags & 0x02 ) ) doDecode = true;\n      break;\n\n    case SND_SEQ_EVENT_SENSING: // Active sensing\n      if ( !( data->ignoreFlags & 0x04 ) ) doDecode = true;\n      break;\n\n\t\tcase SND_SEQ_EVENT_SYSEX:\n      if ( (data->ignoreFlags & 0x01) ) break;\n      if ( ev->data.ext.len > apiData->bufferSize ) {\n        apiData->bufferSize = ev->data.ext.len;\n        free( buffer );\n        buffer = (unsigned char *) malloc( apiData->bufferSize );\n        if ( buffer == NULL ) {\n          data->doInput = false;\n          std::cerr << \"\\nMidiInAlsa::alsaMidiHandler: error resizing buffer memory!\\n\\n\";\n          break;\n        }\n      }\n\n    default:\n      doDecode = true;\n    }\n\n    if ( doDecode ) {\n\n      nBytes = snd_midi_event_decode( apiData->coder, buffer, apiData->bufferSize, ev );\n      if ( nBytes > 0 ) {\n        // The ALSA sequencer has a maximum buffer size for MIDI sysex\n        // events of 256 bytes.  If a device sends sysex messages larger\n        // than this, they are segmented into 256 byte chunks.  So,\n        // we'll watch for this and concatenate sysex chunks into a\n        // single sysex message if necessary.\n        if ( !continueSysex )\n          message.bytes.assign( buffer, &buffer[nBytes] );\n        else\n          message.bytes.insert( message.bytes.end(), buffer, &buffer[nBytes] );\n\n        continueSysex = ( ( ev->type == SND_SEQ_EVENT_SYSEX ) && ( message.bytes.back() != 0xF7 ) );\n        if ( !continueSysex ) {\n\n          // Calculate the time stamp:\n          message.timeStamp = 0.0;\n\n          // Method 1: Use the system time.\n          //(void)gettimeofday(&tv, (struct timezone *)NULL);\n          //time = (tv.tv_sec * 1000000) + tv.tv_usec;\n\n          // Method 2: Use the ALSA sequencer event time data.\n          // (thanks to Pedro Lopez-Cabanillas!).\n\n          // Using method from:\n          // https://www.gnu.org/software/libc/manual/html_node/Elapsed-Time.html\n\n          // Perform the carry for the later subtraction by updating y.\n          snd_seq_real_time_t &x(ev->time.time);\n          snd_seq_real_time_t &y(apiData->lastTime);\n          if (x.tv_nsec < y.tv_nsec) {\n              int nsec = (y.tv_nsec - x.tv_nsec) / 1000000000 + 1;\n              y.tv_nsec -= 1000000000 * nsec;\n              y.tv_sec += nsec;\n          }\n          if (x.tv_nsec - y.tv_nsec > 1000000000) {\n              int nsec = (x.tv_nsec - y.tv_nsec) / 1000000000;\n              y.tv_nsec += 1000000000 * nsec;\n              y.tv_sec -= nsec;\n          }\n\n          // Compute the time difference.\n          time = x.tv_sec - y.tv_sec + (x.tv_nsec - y.tv_nsec)*1e-9;\n\n          apiData->lastTime = ev->time.time;\n\n          if ( data->firstMessage == true )\n            data->firstMessage = false;\n          else\n            message.timeStamp = time;\n        }\n        else {\n#if defined(__RTMIDI_DEBUG__)\n          std::cerr << \"\\nMidiInAlsa::alsaMidiHandler: event parsing error or not a MIDI event!\\n\\n\";\n#endif\n        }\n      }\n    }\n\n    snd_seq_free_event( ev );\n    if ( message.bytes.size() == 0 || continueSysex ) continue;\n\n    if ( data->usingCallback ) {\n      RtMidiIn::RtMidiCallback callback = (RtMidiIn::RtMidiCallback) data->userCallback;\n      callback( message.timeStamp, &message.bytes, data->userData );\n    }\n    else {\n      // As long as we haven't reached our queue size limit, push the message.\n      if (!data->queue.push(message))\n        std::cerr << \"\\nMidiInAlsa: message queue limit reached!!\\n\\n\";\n    }\n  }\n\n  if ( buffer ) free( buffer );\n  snd_midi_event_free( apiData->coder );\n  apiData->coder = 0;\n  apiData->thread = apiData->dummy_thread_id;\n  return 0;\n}\n\nMidiInAlsa :: MidiInAlsa( const std::string &clientName, unsigned int queueSizeLimit ) : MidiInApi( queueSizeLimit )\n{\n  MidiInAlsa::initialize( clientName );\n}\n\nMidiInAlsa :: ~MidiInAlsa()\n{\n  // Close a connection if it exists.\n  MidiInAlsa::closePort();\n\n  // Shutdown the input thread.\n  AlsaMidiData *data = static_cast<AlsaMidiData *> (apiData_);\n  if ( inputData_.doInput ) {\n    inputData_.doInput = false;\n    int res = write( data->trigger_fds[1], &inputData_.doInput, sizeof(inputData_.doInput) );\n    (void) res;\n    if ( !pthread_equal(data->thread, data->dummy_thread_id) )\n      pthread_join( data->thread, NULL );\n  }\n\n  // Cleanup.\n  close ( data->trigger_fds[0] );\n  close ( data->trigger_fds[1] );\n  if ( data->vport >= 0 ) snd_seq_delete_port( data->seq, data->vport );\n#ifndef AVOID_TIMESTAMPING\n  snd_seq_free_queue( data->seq, data->queue_id );\n#endif\n  snd_seq_close( data->seq );\n  delete data;\n}\n\nvoid MidiInAlsa :: initialize( const std::string& clientName )\n{\n  // Set up the ALSA sequencer client.\n  snd_seq_t *seq;\n  int result = snd_seq_open(&seq, \"default\", SND_SEQ_OPEN_DUPLEX, SND_SEQ_NONBLOCK);\n  if ( result < 0 ) {\n    errorString_ = \"MidiInAlsa::initialize: error creating ALSA sequencer client object.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Set client name.\n  snd_seq_set_client_name( seq, clientName.c_str() );\n\n  // Save our api-specific connection information.\n  AlsaMidiData *data = (AlsaMidiData *) new AlsaMidiData;\n  data->seq = seq;\n  data->portNum = -1;\n  data->vport = -1;\n  data->subscription = 0;\n  data->dummy_thread_id = pthread_self();\n  data->thread = data->dummy_thread_id;\n  data->trigger_fds[0] = -1;\n  data->trigger_fds[1] = -1;\n  apiData_ = (void *) data;\n  inputData_.apiData = (void *) data;\n\n   if ( pipe(data->trigger_fds) == -1 ) {\n    errorString_ = \"MidiInAlsa::initialize: error creating pipe objects.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Create the input queue\n#ifndef AVOID_TIMESTAMPING\n  data->queue_id = snd_seq_alloc_named_queue(seq, \"RtMidi Queue\");\n  // Set arbitrary tempo (mm=100) and resolution (240)\n  snd_seq_queue_tempo_t *qtempo;\n  snd_seq_queue_tempo_alloca(&qtempo);\n  snd_seq_queue_tempo_set_tempo(qtempo, 600000);\n  snd_seq_queue_tempo_set_ppq(qtempo, 240);\n  snd_seq_set_queue_tempo(data->seq, data->queue_id, qtempo);\n  snd_seq_drain_output(data->seq);\n#endif\n}\n\n// This function is used to count or get the pinfo structure for a given port number.\nunsigned int portInfo( snd_seq_t *seq, snd_seq_port_info_t *pinfo, unsigned int type, int portNumber )\n{\n  snd_seq_client_info_t *cinfo;\n  int client;\n  int count = 0;\n  snd_seq_client_info_alloca( &cinfo );\n\n  snd_seq_client_info_set_client( cinfo, -1 );\n  while ( snd_seq_query_next_client( seq, cinfo ) >= 0 ) {\n    client = snd_seq_client_info_get_client( cinfo );\n    if ( client == 0 ) continue;\n    // Reset query info\n    snd_seq_port_info_set_client( pinfo, client );\n    snd_seq_port_info_set_port( pinfo, -1 );\n    while ( snd_seq_query_next_port( seq, pinfo ) >= 0 ) {\n      unsigned int atyp = snd_seq_port_info_get_type( pinfo );\n      if ( ( ( atyp & SND_SEQ_PORT_TYPE_MIDI_GENERIC ) == 0 ) &&\n           ( ( atyp & SND_SEQ_PORT_TYPE_SYNTH ) == 0 ) &&\n           ( ( atyp & SND_SEQ_PORT_TYPE_APPLICATION ) == 0 ) ) continue;\n\t    \n      unsigned int caps = snd_seq_port_info_get_capability( pinfo );\n      if ( ( caps & type ) != type ) continue;\n      if ( count == portNumber ) return 1;\n      ++count;\n    }\n  }\n\n  // If a negative portNumber was used, return the port count.\n  if ( portNumber < 0 ) return count;\n  return 0;\n}\n\nunsigned int MidiInAlsa :: getPortCount()\n{\n  snd_seq_port_info_t *pinfo;\n  snd_seq_port_info_alloca( &pinfo );\n\n  AlsaMidiData *data = static_cast<AlsaMidiData *> (apiData_);\n  return portInfo( data->seq, pinfo, SND_SEQ_PORT_CAP_READ|SND_SEQ_PORT_CAP_SUBS_READ, -1 );\n}\n\nstd::string MidiInAlsa :: getPortName( unsigned int portNumber )\n{\n  snd_seq_client_info_t *cinfo;\n  snd_seq_port_info_t *pinfo;\n  snd_seq_client_info_alloca( &cinfo );\n  snd_seq_port_info_alloca( &pinfo );\n\n  std::string stringName;\n  AlsaMidiData *data = static_cast<AlsaMidiData *> (apiData_);\n  if ( portInfo( data->seq, pinfo, SND_SEQ_PORT_CAP_READ|SND_SEQ_PORT_CAP_SUBS_READ, (int) portNumber ) ) {\n    int cnum = snd_seq_port_info_get_client( pinfo );\n    snd_seq_get_any_client_info( data->seq, cnum, cinfo );\n    std::ostringstream os;\n    os << snd_seq_client_info_get_name( cinfo );\n    os << \":\";\n    os << snd_seq_port_info_get_name( pinfo );\n    os << \" \";                                    // These lines added to make sure devices are listed\n    os << snd_seq_port_info_get_client( pinfo );  // with full portnames added to ensure individual device names\n    os << \":\";\n    os << snd_seq_port_info_get_port( pinfo );\n    stringName = os.str();\n    return stringName;\n  }\n\n  // If we get here, we didn't find a match.\n  errorString_ = \"MidiInAlsa::getPortName: error looking for port name!\";\n  error( RtMidiError::WARNING, errorString_ );\n  return stringName;\n}\n\nvoid MidiInAlsa :: openPort( unsigned int portNumber, const std::string &portName )\n{\n  if ( connected_ ) {\n    errorString_ = \"MidiInAlsa::openPort: a valid connection already exists!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  unsigned int nSrc = this->getPortCount();\n  if ( nSrc < 1 ) {\n    errorString_ = \"MidiInAlsa::openPort: no MIDI input sources found!\";\n    error( RtMidiError::NO_DEVICES_FOUND, errorString_ );\n    return;\n  }\n\n  snd_seq_port_info_t *src_pinfo;\n  snd_seq_port_info_alloca( &src_pinfo );\n  AlsaMidiData *data = static_cast<AlsaMidiData *> (apiData_);\n  if ( portInfo( data->seq, src_pinfo, SND_SEQ_PORT_CAP_READ|SND_SEQ_PORT_CAP_SUBS_READ, (int) portNumber ) == 0 ) {\n    std::ostringstream ost;\n    ost << \"MidiInAlsa::openPort: the 'portNumber' argument (\" << portNumber << \") is invalid.\";\n    errorString_ = ost.str();\n    error( RtMidiError::INVALID_PARAMETER, errorString_ );\n    return;\n  }\n\n  snd_seq_addr_t sender, receiver;\n  sender.client = snd_seq_port_info_get_client( src_pinfo );\n  sender.port = snd_seq_port_info_get_port( src_pinfo );\n  receiver.client = snd_seq_client_id( data->seq );\n\n  snd_seq_port_info_t *pinfo;\n  snd_seq_port_info_alloca( &pinfo );\n  if ( data->vport < 0 ) {\n    snd_seq_port_info_set_client( pinfo, 0 );\n    snd_seq_port_info_set_port( pinfo, 0 );\n    snd_seq_port_info_set_capability( pinfo,\n                                      SND_SEQ_PORT_CAP_WRITE |\n                                      SND_SEQ_PORT_CAP_SUBS_WRITE );\n    snd_seq_port_info_set_type( pinfo,\n                                SND_SEQ_PORT_TYPE_MIDI_GENERIC |\n                                SND_SEQ_PORT_TYPE_APPLICATION );\n    snd_seq_port_info_set_midi_channels(pinfo, 16);\n#ifndef AVOID_TIMESTAMPING\n    snd_seq_port_info_set_timestamping(pinfo, 1);\n    snd_seq_port_info_set_timestamp_real(pinfo, 1);    \n    snd_seq_port_info_set_timestamp_queue(pinfo, data->queue_id);\n#endif\n    snd_seq_port_info_set_name(pinfo,  portName.c_str() );\n    data->vport = snd_seq_create_port(data->seq, pinfo);\n  \n    if ( data->vport < 0 ) {\n      errorString_ = \"MidiInAlsa::openPort: ALSA error creating input port.\";\n      error( RtMidiError::DRIVER_ERROR, errorString_ );\n      return;\n    }\n    data->vport = snd_seq_port_info_get_port(pinfo);\n  }\n\n  receiver.port = data->vport;\n\n  if ( !data->subscription ) {\n    // Make subscription\n    if (snd_seq_port_subscribe_malloc( &data->subscription ) < 0) {\n      errorString_ = \"MidiInAlsa::openPort: ALSA error allocation port subscription.\";\n      error( RtMidiError::DRIVER_ERROR, errorString_ );\n      return;\n    }\n    snd_seq_port_subscribe_set_sender(data->subscription, &sender);\n    snd_seq_port_subscribe_set_dest(data->subscription, &receiver);\n    if ( snd_seq_subscribe_port(data->seq, data->subscription) ) {\n      snd_seq_port_subscribe_free( data->subscription );\n      data->subscription = 0;\n      errorString_ = \"MidiInAlsa::openPort: ALSA error making port connection.\";\n      error( RtMidiError::DRIVER_ERROR, errorString_ );\n      return;\n    }\n  }\n\n  if ( inputData_.doInput == false ) {\n    // Start the input queue\n#ifndef AVOID_TIMESTAMPING\n    snd_seq_start_queue( data->seq, data->queue_id, NULL );\n    snd_seq_drain_output( data->seq );\n#endif\n    // Start our MIDI input thread.\n    pthread_attr_t attr;\n    pthread_attr_init(&attr);\n    pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);\n    pthread_attr_setschedpolicy(&attr, SCHED_OTHER);\n\n    inputData_.doInput = true;\n    int err = pthread_create(&data->thread, &attr, alsaMidiHandler, &inputData_);\n    pthread_attr_destroy(&attr);\n    if ( err ) {\n      snd_seq_unsubscribe_port( data->seq, data->subscription );\n      snd_seq_port_subscribe_free( data->subscription );\n      data->subscription = 0;\n      inputData_.doInput = false;\n      errorString_ = \"MidiInAlsa::openPort: error starting MIDI input thread!\";\n      error( RtMidiError::THREAD_ERROR, errorString_ );\n      return;\n    }\n  }\n\n  connected_ = true;\n}\n\nvoid MidiInAlsa :: openVirtualPort( const std::string &portName )\n{\n  AlsaMidiData *data = static_cast<AlsaMidiData *> (apiData_);\n  if ( data->vport < 0 ) {\n    snd_seq_port_info_t *pinfo;\n    snd_seq_port_info_alloca( &pinfo );\n    snd_seq_port_info_set_capability( pinfo,\n\t\t\t\t      SND_SEQ_PORT_CAP_WRITE |\n\t\t\t\t      SND_SEQ_PORT_CAP_SUBS_WRITE );\n    snd_seq_port_info_set_type( pinfo,\n\t\t\t\tSND_SEQ_PORT_TYPE_MIDI_GENERIC |\n\t\t\t\tSND_SEQ_PORT_TYPE_APPLICATION );\n    snd_seq_port_info_set_midi_channels(pinfo, 16);\n#ifndef AVOID_TIMESTAMPING\n    snd_seq_port_info_set_timestamping(pinfo, 1);\n    snd_seq_port_info_set_timestamp_real(pinfo, 1);    \n    snd_seq_port_info_set_timestamp_queue(pinfo, data->queue_id);\n#endif\n    snd_seq_port_info_set_name(pinfo, portName.c_str());\n    data->vport = snd_seq_create_port(data->seq, pinfo);\n\n    if ( data->vport < 0 ) {\n      errorString_ = \"MidiInAlsa::openVirtualPort: ALSA error creating virtual port.\";\n      error( RtMidiError::DRIVER_ERROR, errorString_ );\n      return;\n    }\n    data->vport = snd_seq_port_info_get_port(pinfo);\n  }\n\n  if ( inputData_.doInput == false ) {\n    // Wait for old thread to stop, if still running\n    if ( !pthread_equal(data->thread, data->dummy_thread_id) )\n      pthread_join( data->thread, NULL );\n\n    // Start the input queue\n#ifndef AVOID_TIMESTAMPING\n    snd_seq_start_queue( data->seq, data->queue_id, NULL );\n    snd_seq_drain_output( data->seq );\n#endif\n    // Start our MIDI input thread.\n    pthread_attr_t attr;\n    pthread_attr_init(&attr);\n    pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);\n    pthread_attr_setschedpolicy(&attr, SCHED_OTHER);\n\n    inputData_.doInput = true;\n    int err = pthread_create(&data->thread, &attr, alsaMidiHandler, &inputData_);\n    pthread_attr_destroy(&attr);\n    if ( err ) {\n      if ( data->subscription ) {\n        snd_seq_unsubscribe_port( data->seq, data->subscription );\n        snd_seq_port_subscribe_free( data->subscription );\n        data->subscription = 0;\n      }\n      inputData_.doInput = false;\n      errorString_ = \"MidiInAlsa::openPort: error starting MIDI input thread!\";\n      error( RtMidiError::THREAD_ERROR, errorString_ );\n      return;\n    }\n  }\n}\n\nvoid MidiInAlsa :: closePort( void )\n{\n  AlsaMidiData *data = static_cast<AlsaMidiData *> (apiData_);\n\n  if ( connected_ ) {\n    if ( data->subscription ) {\n      snd_seq_unsubscribe_port( data->seq, data->subscription );\n      snd_seq_port_subscribe_free( data->subscription );\n      data->subscription = 0;\n    }\n    // Stop the input queue\n#ifndef AVOID_TIMESTAMPING\n    snd_seq_stop_queue( data->seq, data->queue_id, NULL );\n    snd_seq_drain_output( data->seq );\n#endif\n    connected_ = false;\n  }\n\n  // Stop thread to avoid triggering the callback, while the port is intended to be closed\n  if ( inputData_.doInput ) {\n    inputData_.doInput = false;\n    int res = write( data->trigger_fds[1], &inputData_.doInput, sizeof(inputData_.doInput) );\n    (void) res;\n    if ( !pthread_equal(data->thread, data->dummy_thread_id) )\n      pthread_join( data->thread, NULL );\n  }\n}\n\n//*********************************************************************//\n//  API: LINUX ALSA\n//  Class Definitions: MidiOutAlsa\n//*********************************************************************//\n\nMidiOutAlsa :: MidiOutAlsa( const std::string &clientName ) : MidiOutApi()\n{\n  MidiOutAlsa::initialize( clientName );\n}\n\nMidiOutAlsa :: ~MidiOutAlsa()\n{\n  // Close a connection if it exists.\n  MidiOutAlsa::closePort();\n\n  // Cleanup.\n  AlsaMidiData *data = static_cast<AlsaMidiData *> (apiData_);\n  if ( data->vport >= 0 ) snd_seq_delete_port( data->seq, data->vport );\n  if ( data->coder ) snd_midi_event_free( data->coder );\n  if ( data->buffer ) free( data->buffer );\n  snd_seq_close( data->seq );\n  delete data;\n}\n\nvoid MidiOutAlsa :: initialize( const std::string& clientName )\n{\n  // Set up the ALSA sequencer client.\n  snd_seq_t *seq;\n  int result1 = snd_seq_open( &seq, \"default\", SND_SEQ_OPEN_OUTPUT, SND_SEQ_NONBLOCK );\n  if ( result1 < 0 ) {\n    errorString_ = \"MidiOutAlsa::initialize: error creating ALSA sequencer client object.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n\t}\n\n  // Set client name.\n  snd_seq_set_client_name( seq, clientName.c_str() );\n\n  // Save our api-specific connection information.\n  AlsaMidiData *data = (AlsaMidiData *) new AlsaMidiData;\n  data->seq = seq;\n  data->portNum = -1;\n  data->vport = -1;\n  data->bufferSize = 32;\n  data->coder = 0;\n  data->buffer = 0;\n  int result = snd_midi_event_new( data->bufferSize, &data->coder );\n  if ( result < 0 ) {\n    delete data;\n    errorString_ = \"MidiOutAlsa::initialize: error initializing MIDI event parser!\\n\\n\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n  data->buffer = (unsigned char *) malloc( data->bufferSize );\n  if ( data->buffer == NULL ) {\n    delete data;\n    errorString_ = \"MidiOutAlsa::initialize: error allocating buffer memory!\\n\\n\";\n    error( RtMidiError::MEMORY_ERROR, errorString_ );\n    return;\n  }\n  snd_midi_event_init( data->coder );\n  apiData_ = (void *) data;\n}\n\nunsigned int MidiOutAlsa :: getPortCount()\n{\n\tsnd_seq_port_info_t *pinfo;\n\tsnd_seq_port_info_alloca( &pinfo );\n\n  AlsaMidiData *data = static_cast<AlsaMidiData *> (apiData_);\n  return portInfo( data->seq, pinfo, SND_SEQ_PORT_CAP_WRITE|SND_SEQ_PORT_CAP_SUBS_WRITE, -1 );\n}\n\nstd::string MidiOutAlsa :: getPortName( unsigned int portNumber )\n{\n  snd_seq_client_info_t *cinfo;\n  snd_seq_port_info_t *pinfo;\n  snd_seq_client_info_alloca( &cinfo );\n  snd_seq_port_info_alloca( &pinfo );\n\n  std::string stringName;\n  AlsaMidiData *data = static_cast<AlsaMidiData *> (apiData_);\n  if ( portInfo( data->seq, pinfo, SND_SEQ_PORT_CAP_WRITE|SND_SEQ_PORT_CAP_SUBS_WRITE, (int) portNumber ) ) {\n    int cnum = snd_seq_port_info_get_client(pinfo);\n    snd_seq_get_any_client_info( data->seq, cnum, cinfo );\n    std::ostringstream os;\n    os << snd_seq_client_info_get_name(cinfo);\n    os << \":\";\n    os << snd_seq_port_info_get_name( pinfo );\n    os << \" \";                                    // These lines added to make sure devices are listed\n    os << snd_seq_port_info_get_client( pinfo );  // with full portnames added to ensure individual device names\n    os << \":\";\n    os << snd_seq_port_info_get_port(pinfo);\n    stringName = os.str();\n    return stringName;\n  }\n\n  // If we get here, we didn't find a match.\n  errorString_ = \"MidiOutAlsa::getPortName: error looking for port name!\";\n  error( RtMidiError::WARNING, errorString_ );\n  return stringName;\n}\n\nvoid MidiOutAlsa :: openPort( unsigned int portNumber, const std::string &portName )\n{\n  if ( connected_ ) {\n    errorString_ = \"MidiOutAlsa::openPort: a valid connection already exists!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  unsigned int nSrc = this->getPortCount();\n  if (nSrc < 1) {\n    errorString_ = \"MidiOutAlsa::openPort: no MIDI output sources found!\";\n    error( RtMidiError::NO_DEVICES_FOUND, errorString_ );\n    return;\n  }\n\n\tsnd_seq_port_info_t *pinfo;\n\tsnd_seq_port_info_alloca( &pinfo );\n  AlsaMidiData *data = static_cast<AlsaMidiData *> (apiData_);\n  if ( portInfo( data->seq, pinfo, SND_SEQ_PORT_CAP_WRITE|SND_SEQ_PORT_CAP_SUBS_WRITE, (int) portNumber ) == 0 ) {\n    std::ostringstream ost;\n    ost << \"MidiOutAlsa::openPort: the 'portNumber' argument (\" << portNumber << \") is invalid.\";\n    errorString_ = ost.str();\n    error( RtMidiError::INVALID_PARAMETER, errorString_ );\n    return;\n  }\n\n  snd_seq_addr_t sender, receiver;\n  receiver.client = snd_seq_port_info_get_client( pinfo );\n  receiver.port = snd_seq_port_info_get_port( pinfo );\n  sender.client = snd_seq_client_id( data->seq );\n\n  if ( data->vport < 0 ) {\n    data->vport = snd_seq_create_simple_port( data->seq, portName.c_str(),\n                                              SND_SEQ_PORT_CAP_READ|SND_SEQ_PORT_CAP_SUBS_READ,\n                                              SND_SEQ_PORT_TYPE_MIDI_GENERIC|SND_SEQ_PORT_TYPE_APPLICATION );\n    if ( data->vport < 0 ) {\n      errorString_ = \"MidiOutAlsa::openPort: ALSA error creating output port.\";\n      error( RtMidiError::DRIVER_ERROR, errorString_ );\n      return;\n    }\n  }\n\n  sender.port = data->vport;\n\n  // Make subscription\n  if (snd_seq_port_subscribe_malloc( &data->subscription ) < 0) {\n    snd_seq_port_subscribe_free( data->subscription );\n    errorString_ = \"MidiOutAlsa::openPort: error allocating port subscription.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n  snd_seq_port_subscribe_set_sender(data->subscription, &sender);\n  snd_seq_port_subscribe_set_dest(data->subscription, &receiver);\n  snd_seq_port_subscribe_set_time_update(data->subscription, 1);\n  snd_seq_port_subscribe_set_time_real(data->subscription, 1);\n  if ( snd_seq_subscribe_port(data->seq, data->subscription) ) {\n    snd_seq_port_subscribe_free( data->subscription );\n    errorString_ = \"MidiOutAlsa::openPort: ALSA error making port connection.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  connected_ = true;\n}\n\nvoid MidiOutAlsa :: closePort( void )\n{\n  if ( connected_ ) {\n    AlsaMidiData *data = static_cast<AlsaMidiData *> (apiData_);\n    snd_seq_unsubscribe_port( data->seq, data->subscription );\n    snd_seq_port_subscribe_free( data->subscription );\n    data->subscription = 0;\n    connected_ = false;\n  }\n}\n\nvoid MidiOutAlsa :: openVirtualPort( const std::string &portName )\n{\n  AlsaMidiData *data = static_cast<AlsaMidiData *> (apiData_);\n  if ( data->vport < 0 ) {\n    data->vport = snd_seq_create_simple_port( data->seq, portName.c_str(),\n                                              SND_SEQ_PORT_CAP_READ|SND_SEQ_PORT_CAP_SUBS_READ,\n                                              SND_SEQ_PORT_TYPE_MIDI_GENERIC|SND_SEQ_PORT_TYPE_APPLICATION );\n\n    if ( data->vport < 0 ) {\n      errorString_ = \"MidiOutAlsa::openVirtualPort: ALSA error creating virtual port.\";\n      error( RtMidiError::DRIVER_ERROR, errorString_ );\n    }\n  }\n}\n\nvoid MidiOutAlsa :: sendMessage( const unsigned char *message, size_t size )\n{\n  int result;\n  AlsaMidiData *data = static_cast<AlsaMidiData *> (apiData_);\n  unsigned int nBytes = static_cast<unsigned int> (size);\n  if ( nBytes > data->bufferSize ) {\n    data->bufferSize = nBytes;\n    result = snd_midi_event_resize_buffer ( data->coder, nBytes);\n    if ( result != 0 ) {\n      errorString_ = \"MidiOutAlsa::sendMessage: ALSA error resizing MIDI event buffer.\";\n      error( RtMidiError::DRIVER_ERROR, errorString_ );\n      return;\n    }\n    free (data->buffer);\n    data->buffer = (unsigned char *) malloc( data->bufferSize );\n    if ( data->buffer == NULL ) {\n    errorString_ = \"MidiOutAlsa::initialize: error allocating buffer memory!\\n\\n\";\n    error( RtMidiError::MEMORY_ERROR, errorString_ );\n    return;\n    }\n  }\n\n  snd_seq_event_t ev;\n  snd_seq_ev_clear(&ev);\n  snd_seq_ev_set_source(&ev, data->vport);\n  snd_seq_ev_set_subs(&ev);\n  snd_seq_ev_set_direct(&ev);\n  for ( unsigned int i=0; i<nBytes; ++i ) data->buffer[i] = message[i];\n  result = snd_midi_event_encode( data->coder, data->buffer, (long)nBytes, &ev );\n  if ( result < (int)nBytes ) {\n    errorString_ = \"MidiOutAlsa::sendMessage: event parsing error!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  // Send the event.\n  result = snd_seq_event_output(data->seq, &ev);\n  if ( result < 0 ) {\n    errorString_ = \"MidiOutAlsa::sendMessage: error sending MIDI message to port.\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n  snd_seq_drain_output(data->seq);\n}\n\n#endif // __LINUX_ALSA__\n\n\n//*********************************************************************//\n//  API: Windows Multimedia Library (MM)\n//*********************************************************************//\n\n// API information deciphered from:\n//  - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multimed/htm/_win32_midi_reference.asp\n\n// Thanks to Jean-Baptiste Berruchon for the sysex code.\n\n#if defined(__WINDOWS_MM__)\n\n// The Windows MM API is based on the use of a callback function for\n// MIDI input.  We convert the system specific time stamps to delta\n// time values.\n\n// Windows MM MIDI header files.\n#include <windows.h>\n#include <mmsystem.h>\n\n// Convert a null-terminated wide string or ANSI-encoded string to UTF-8.\nstatic std::string ConvertToUTF8(const TCHAR *str)\n{\n  std::string u8str;\n  const WCHAR *wstr = L\"\";\n#if defined( UNICODE ) || defined( _UNICODE )\n  wstr = str;\n#else\n  // Convert from ANSI encoding to wide string\n  int wlength = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );\n  std::wstring wstrtemp;\n  if ( wlength )\n  {\n    wstrtemp.assign( wlength - 1, 0 );\n    MultiByteToWideChar( CP_ACP, 0, str, -1, &wstrtemp[0], wlength );\n    wstr = &wstrtemp[0];\n  }\n#endif\n  // Convert from wide string to UTF-8\n  int length = WideCharToMultiByte( CP_UTF8, 0, wstr, -1, NULL, 0, NULL, NULL );\n  if ( length )\n  {\n    u8str.assign( length - 1, 0 );\n    length = WideCharToMultiByte( CP_UTF8, 0, wstr, -1, &u8str[0], length, NULL, NULL );\n  }\n  return u8str;\n}\n\n#define  RT_SYSEX_BUFFER_SIZE 1024\n#define  RT_SYSEX_BUFFER_COUNT 4\n\n// A structure to hold variables related to the CoreMIDI API\n// implementation.\nstruct WinMidiData {\n  HMIDIIN inHandle;    // Handle to Midi Input Device\n  HMIDIOUT outHandle;  // Handle to Midi Output Device\n  DWORD lastTime;\n  MidiInApi::MidiMessage message;\n  LPMIDIHDR sysexBuffer[RT_SYSEX_BUFFER_COUNT];\n  CRITICAL_SECTION _mutex; // [Patrice] see https://groups.google.com/forum/#!topic/mididev/6OUjHutMpEo\n};\n\n//*********************************************************************//\n//  API: Windows MM\n//  Class Definitions: MidiInWinMM\n//*********************************************************************//\n\nstatic void CALLBACK midiInputCallback( HMIDIIN /*hmin*/,\n                                        UINT inputStatus, \n                                        DWORD_PTR instancePtr,\n                                        DWORD_PTR midiMessage,\n                                        DWORD timestamp )\n{\n  if ( inputStatus != MIM_DATA && inputStatus != MIM_LONGDATA && inputStatus != MIM_LONGERROR ) return;\n\n  //MidiInApi::RtMidiInData *data = static_cast<MidiInApi::RtMidiInData *> (instancePtr);\n  MidiInApi::RtMidiInData *data = (MidiInApi::RtMidiInData *)instancePtr;\n  WinMidiData *apiData = static_cast<WinMidiData *> (data->apiData);\n\n  // Calculate time stamp.\n  if ( data->firstMessage == true ) {\n    apiData->message.timeStamp = 0.0;\n    data->firstMessage = false;\n  }\n  else apiData->message.timeStamp = (double) ( timestamp - apiData->lastTime ) * 0.001;\n\n  if ( inputStatus == MIM_DATA ) { // Channel or system message\n\n    // Make sure the first byte is a status byte.\n    unsigned char status = (unsigned char) (midiMessage & 0x000000FF);\n    if ( !(status & 0x80) ) return;\n\n    // Determine the number of bytes in the MIDI message.\n    unsigned short nBytes = 1;\n    if ( status < 0xC0 ) nBytes = 3;\n    else if ( status < 0xE0 ) nBytes = 2;\n    else if ( status < 0xF0 ) nBytes = 3;\n    else if ( status == 0xF1 ) {\n      if ( data->ignoreFlags & 0x02 ) return;\n      else nBytes = 2;\n    }\n    else if ( status == 0xF2 ) nBytes = 3;\n    else if ( status == 0xF3 ) nBytes = 2;\n    else if ( status == 0xF8 && (data->ignoreFlags & 0x02) ) {\n      // A MIDI timing tick message and we're ignoring it.\n      return;\n    }\n    else if ( status == 0xFE && (data->ignoreFlags & 0x04) ) {\n      // A MIDI active sensing message and we're ignoring it.\n      return;\n    }\n\n    // Copy bytes to our MIDI message.\n    unsigned char *ptr = (unsigned char *) &midiMessage;\n    for ( int i=0; i<nBytes; ++i ) apiData->message.bytes.push_back( *ptr++ );\n  }\n  else { // Sysex message ( MIM_LONGDATA or MIM_LONGERROR )\n    MIDIHDR *sysex = ( MIDIHDR *) midiMessage; \n    if ( !( data->ignoreFlags & 0x01 ) && inputStatus != MIM_LONGERROR ) {  \n      // Sysex message and we're not ignoring it\n      for ( int i=0; i<(int)sysex->dwBytesRecorded; ++i )\n        apiData->message.bytes.push_back( sysex->lpData[i] );\n    }\n\n    // The WinMM API requires that the sysex buffer be requeued after\n    // input of each sysex message.  Even if we are ignoring sysex\n    // messages, we still need to requeue the buffer in case the user\n    // decides to not ignore sysex messages in the future.  However,\n    // it seems that WinMM calls this function with an empty sysex\n    // buffer when an application closes and in this case, we should\n    // avoid requeueing it, else the computer suddenly reboots after\n    // one or two minutes.\n    if ( apiData->sysexBuffer[sysex->dwUser]->dwBytesRecorded > 0 ) {\n      //if ( sysex->dwBytesRecorded > 0 ) {\n      EnterCriticalSection( &(apiData->_mutex) );\n      MMRESULT result = midiInAddBuffer( apiData->inHandle, apiData->sysexBuffer[sysex->dwUser], sizeof(MIDIHDR) );\n      LeaveCriticalSection( &(apiData->_mutex) );\n      if ( result != MMSYSERR_NOERROR )\n        std::cerr << \"\\nRtMidiIn::midiInputCallback: error sending sysex to Midi device!!\\n\\n\";\n\n      if ( data->ignoreFlags & 0x01 ) return;\n    }\n    else return;\n  }\n\n  // Save the time of the last non-filtered message\n  apiData->lastTime = timestamp;\n\n  if ( data->usingCallback ) {\n    RtMidiIn::RtMidiCallback callback = (RtMidiIn::RtMidiCallback) data->userCallback;\n    callback( apiData->message.timeStamp, &apiData->message.bytes, data->userData );\n  }\n  else {\n    // As long as we haven't reached our queue size limit, push the message.\n    if (!data->queue.push(apiData->message))\n      std::cerr << \"\\nMidiInWinMM: message queue limit reached!!\\n\\n\";\n  }\n\n  // Clear the vector for the next input message.\n  apiData->message.bytes.clear();\n}\n\nMidiInWinMM :: MidiInWinMM( const std::string &clientName, unsigned int queueSizeLimit ) : MidiInApi( queueSizeLimit )\n{\n  MidiInWinMM::initialize( clientName );\n}\n\nMidiInWinMM :: ~MidiInWinMM()\n{\n  // Close a connection if it exists.\n  MidiInWinMM::closePort();\n\n  WinMidiData *data = static_cast<WinMidiData *> (apiData_);\n  DeleteCriticalSection( &(data->_mutex) );\n\n  // Cleanup.\n  delete data;\n}\n\nvoid MidiInWinMM :: initialize( const std::string& /*clientName*/ )\n{\n  // We'll issue a warning here if no devices are available but not\n  // throw an error since the user can plugin something later.\n  unsigned int nDevices = midiInGetNumDevs();\n  if ( nDevices == 0 ) {\n    errorString_ = \"MidiInWinMM::initialize: no MIDI input devices currently available.\";\n    error( RtMidiError::WARNING, errorString_ );\n  }\n\n  // Save our api-specific connection information.\n  WinMidiData *data = (WinMidiData *) new WinMidiData;\n  apiData_ = (void *) data;\n  inputData_.apiData = (void *) data;\n  data->message.bytes.clear();  // needs to be empty for first input message\n\n  if ( !InitializeCriticalSectionAndSpinCount(&(data->_mutex), 0x00000400) ) {\n    errorString_ = \"MidiInWinMM::initialize: InitializeCriticalSectionAndSpinCount failed.\";\n    error( RtMidiError::WARNING, errorString_ );\n  }\n}\n\nvoid MidiInWinMM :: openPort( unsigned int portNumber, const std::string &/*portName*/ )\n{\n  if ( connected_ ) {\n    errorString_ = \"MidiInWinMM::openPort: a valid connection already exists!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  unsigned int nDevices = midiInGetNumDevs();\n  if (nDevices == 0) {\n    errorString_ = \"MidiInWinMM::openPort: no MIDI input sources found!\";\n    error( RtMidiError::NO_DEVICES_FOUND, errorString_ );\n    return;\n  }\n\n  if ( portNumber >= nDevices ) {\n    std::ostringstream ost;\n    ost << \"MidiInWinMM::openPort: the 'portNumber' argument (\" << portNumber << \") is invalid.\";\n    errorString_ = ost.str();\n    error( RtMidiError::INVALID_PARAMETER, errorString_ );\n    return;\n  }\n\n  WinMidiData *data = static_cast<WinMidiData *> (apiData_);\n  MMRESULT result = midiInOpen( &data->inHandle,\n                                portNumber,\n                                (DWORD_PTR)&midiInputCallback,\n                                (DWORD_PTR)&inputData_,\n                                CALLBACK_FUNCTION );\n  if ( result != MMSYSERR_NOERROR ) {\n    errorString_ = \"MidiInWinMM::openPort: error creating Windows MM MIDI input port.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Allocate and init the sysex buffers.\n  for ( int i=0; i<RT_SYSEX_BUFFER_COUNT; ++i ) {\n    data->sysexBuffer[i] = (MIDIHDR*) new char[ sizeof(MIDIHDR) ];\n    data->sysexBuffer[i]->lpData = new char[ RT_SYSEX_BUFFER_SIZE ];\n    data->sysexBuffer[i]->dwBufferLength = RT_SYSEX_BUFFER_SIZE;\n    data->sysexBuffer[i]->dwUser = i; // We use the dwUser parameter as buffer indicator\n    data->sysexBuffer[i]->dwFlags = 0;\n\n    result = midiInPrepareHeader( data->inHandle, data->sysexBuffer[i], sizeof(MIDIHDR) );\n    if ( result != MMSYSERR_NOERROR ) {\n      midiInClose( data->inHandle );\n      data->inHandle = 0;\n      errorString_ = \"MidiInWinMM::openPort: error starting Windows MM MIDI input port (PrepareHeader).\";\n      error( RtMidiError::DRIVER_ERROR, errorString_ );\n      return;\n    }\n\n    // Register the buffer.\n    result = midiInAddBuffer( data->inHandle, data->sysexBuffer[i], sizeof(MIDIHDR) );\n    if ( result != MMSYSERR_NOERROR ) {\n      midiInClose( data->inHandle );\n      data->inHandle = 0;\n      errorString_ = \"MidiInWinMM::openPort: error starting Windows MM MIDI input port (AddBuffer).\";\n      error( RtMidiError::DRIVER_ERROR, errorString_ );\n      return;\n    }\n  }\n\n  result = midiInStart( data->inHandle );\n  if ( result != MMSYSERR_NOERROR ) {\n    midiInClose( data->inHandle );\n    data->inHandle = 0;\n    errorString_ = \"MidiInWinMM::openPort: error starting Windows MM MIDI input port.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  connected_ = true;\n}\n\nvoid MidiInWinMM :: openVirtualPort( const std::string &/*portName*/ )\n{\n  // This function cannot be implemented for the Windows MM MIDI API.\n  errorString_ = \"MidiInWinMM::openVirtualPort: cannot be implemented in Windows MM MIDI API!\";\n  error( RtMidiError::WARNING, errorString_ );\n}\n\nvoid MidiInWinMM :: closePort( void )\n{\n  if ( connected_ ) {\n    WinMidiData *data = static_cast<WinMidiData *> (apiData_);\n    EnterCriticalSection( &(data->_mutex) );\n    midiInReset( data->inHandle );\n    midiInStop( data->inHandle );\n\n    for ( int i=0; i<RT_SYSEX_BUFFER_COUNT; ++i ) {\n      int result = midiInUnprepareHeader(data->inHandle, data->sysexBuffer[i], sizeof(MIDIHDR));\n      delete [] data->sysexBuffer[i]->lpData;\n      delete [] data->sysexBuffer[i];\n      if ( result != MMSYSERR_NOERROR ) {\n        midiInClose( data->inHandle );\n        data->inHandle = 0;\n        errorString_ = \"MidiInWinMM::openPort: error closing Windows MM MIDI input port (midiInUnprepareHeader).\";\n        error( RtMidiError::DRIVER_ERROR, errorString_ );\n        return;\n      }\n    }\n\n    midiInClose( data->inHandle );\n    data->inHandle = 0;\n    connected_ = false;\n    LeaveCriticalSection( &(data->_mutex) );\n  }\n}\n\nunsigned int MidiInWinMM :: getPortCount()\n{\n  return midiInGetNumDevs();\n}\n\nstd::string MidiInWinMM :: getPortName( unsigned int portNumber )\n{\n  std::string stringName;\n  unsigned int nDevices = midiInGetNumDevs();\n  if ( portNumber >= nDevices ) {\n    std::ostringstream ost;\n    ost << \"MidiInWinMM::getPortName: the 'portNumber' argument (\" << portNumber << \") is invalid.\";\n    errorString_ = ost.str();\n    error( RtMidiError::WARNING, errorString_ );\n    return stringName;\n  }\n\n  MIDIINCAPS deviceCaps;\n  midiInGetDevCaps( portNumber, &deviceCaps, sizeof(MIDIINCAPS));\n  stringName = ConvertToUTF8( deviceCaps.szPname );\n\n  // Next lines added to add the portNumber to the name so that \n  // the device's names are sure to be listed with individual names\n  // even when they have the same brand name\n#ifndef RTMIDI_DO_NOT_ENSURE_UNIQUE_PORTNAMES\n  std::ostringstream os;\n  os << \" \";\n  os << portNumber;\n  stringName += os.str();\n#endif\n\n  return stringName;\n}\n\n//*********************************************************************//\n//  API: Windows MM\n//  Class Definitions: MidiOutWinMM\n//*********************************************************************//\n\nMidiOutWinMM :: MidiOutWinMM( const std::string &clientName ) : MidiOutApi()\n{\n  MidiOutWinMM::initialize( clientName );\n}\n\nMidiOutWinMM :: ~MidiOutWinMM()\n{\n  // Close a connection if it exists.\n  MidiOutWinMM::closePort();\n\n  // Cleanup.\n  WinMidiData *data = static_cast<WinMidiData *> (apiData_);\n  delete data;\n}\n\nvoid MidiOutWinMM :: initialize( const std::string& /*clientName*/ )\n{\n  // We'll issue a warning here if no devices are available but not\n  // throw an error since the user can plug something in later.\n  unsigned int nDevices = midiOutGetNumDevs();\n  if ( nDevices == 0 ) {\n    errorString_ = \"MidiOutWinMM::initialize: no MIDI output devices currently available.\";\n    error( RtMidiError::WARNING, errorString_ );\n  }\n\n  // Save our api-specific connection information.\n  WinMidiData *data = (WinMidiData *) new WinMidiData;\n  apiData_ = (void *) data;\n}\n\nunsigned int MidiOutWinMM :: getPortCount()\n{\n  return midiOutGetNumDevs();\n}\n\nstd::string MidiOutWinMM :: getPortName( unsigned int portNumber )\n{\n  std::string stringName;\n  unsigned int nDevices = midiOutGetNumDevs();\n  if ( portNumber >= nDevices ) {\n    std::ostringstream ost;\n    ost << \"MidiOutWinMM::getPortName: the 'portNumber' argument (\" << portNumber << \") is invalid.\";\n    errorString_ = ost.str();\n    error( RtMidiError::WARNING, errorString_ );\n    return stringName;\n  }\n\n  MIDIOUTCAPS deviceCaps;\n  midiOutGetDevCaps( portNumber, &deviceCaps, sizeof(MIDIOUTCAPS));\n  stringName = ConvertToUTF8( deviceCaps.szPname );\n\n  // Next lines added to add the portNumber to the name so that \n  // the device's names are sure to be listed with individual names\n  // even when they have the same brand name\n  std::ostringstream os;\n#ifndef RTMIDI_DO_NOT_ENSURE_UNIQUE_PORTNAMES\n  os << \" \";\n  os << portNumber;\n  stringName += os.str();\n#endif\n\n  return stringName;\n}\n\nvoid MidiOutWinMM :: openPort( unsigned int portNumber, const std::string &/*portName*/ )\n{\n  if ( connected_ ) {\n    errorString_ = \"MidiOutWinMM::openPort: a valid connection already exists!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  unsigned int nDevices = midiOutGetNumDevs();\n  if (nDevices < 1) {\n    errorString_ = \"MidiOutWinMM::openPort: no MIDI output destinations found!\";\n    error( RtMidiError::NO_DEVICES_FOUND, errorString_ );\n    return;\n  }\n\n  if ( portNumber >= nDevices ) {\n    std::ostringstream ost;\n    ost << \"MidiOutWinMM::openPort: the 'portNumber' argument (\" << portNumber << \") is invalid.\";\n    errorString_ = ost.str();\n    error( RtMidiError::INVALID_PARAMETER, errorString_ );\n    return;\n  }\n\n  WinMidiData *data = static_cast<WinMidiData *> (apiData_);\n  MMRESULT result = midiOutOpen( &data->outHandle,\n                                 portNumber,\n                                 (DWORD)NULL,\n                                 (DWORD)NULL,\n                                 CALLBACK_NULL );\n  if ( result != MMSYSERR_NOERROR ) {\n    errorString_ = \"MidiOutWinMM::openPort: error creating Windows MM MIDI output port.\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  connected_ = true;\n}\n\nvoid MidiOutWinMM :: closePort( void )\n{\n  if ( connected_ ) {\n    WinMidiData *data = static_cast<WinMidiData *> (apiData_);\n    midiOutReset( data->outHandle );\n    midiOutClose( data->outHandle );\n    data->outHandle = 0;\n    connected_ = false;\n  }\n}\n\nvoid MidiOutWinMM :: openVirtualPort( const std::string &/*portName*/ )\n{\n  // This function cannot be implemented for the Windows MM MIDI API.\n  errorString_ = \"MidiOutWinMM::openVirtualPort: cannot be implemented in Windows MM MIDI API!\";\n  error( RtMidiError::WARNING, errorString_ );\n}\n\nvoid MidiOutWinMM :: sendMessage( const unsigned char *message, size_t size )\n{\n  if ( !connected_ ) return;\n\n  unsigned int nBytes = static_cast<unsigned int>(size);\n  if ( nBytes == 0 ) {\n    errorString_ = \"MidiOutWinMM::sendMessage: message argument is empty!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  MMRESULT result;\n  WinMidiData *data = static_cast<WinMidiData *> (apiData_);\n  if ( message[0] == 0xF0 ) { // Sysex message\n\n    // Allocate buffer for sysex data.\n    char *buffer = (char *) malloc( nBytes );\n    if ( buffer == NULL ) {\n      errorString_ = \"MidiOutWinMM::sendMessage: error allocating sysex message memory!\";\n      error( RtMidiError::MEMORY_ERROR, errorString_ );\n      return;\n    }\n\n    // Copy data to buffer.\n    for ( unsigned int i=0; i<nBytes; ++i ) buffer[i] = message[i];\n\n    // Create and prepare MIDIHDR structure.\n    MIDIHDR sysex;\n    sysex.lpData = (LPSTR) buffer;\n    sysex.dwBufferLength = nBytes;\n    sysex.dwFlags = 0;\n    result = midiOutPrepareHeader( data->outHandle,  &sysex, sizeof(MIDIHDR) ); \n    if ( result != MMSYSERR_NOERROR ) {\n      free( buffer );\n      errorString_ = \"MidiOutWinMM::sendMessage: error preparing sysex header.\";\n      error( RtMidiError::DRIVER_ERROR, errorString_ );\n      return;\n    }\n\n    // Send the message.\n    result = midiOutLongMsg( data->outHandle, &sysex, sizeof(MIDIHDR) );\n    if ( result != MMSYSERR_NOERROR ) {\n      free( buffer );\n      errorString_ = \"MidiOutWinMM::sendMessage: error sending sysex message.\";\n      error( RtMidiError::DRIVER_ERROR, errorString_ );\n      return;\n    }\n\n    // Unprepare the buffer and MIDIHDR.\n    while ( MIDIERR_STILLPLAYING == midiOutUnprepareHeader( data->outHandle, &sysex, sizeof (MIDIHDR) ) ) Sleep( 1 );\n    free( buffer );\n  }\n  else { // Channel or system message.\n\n    // Make sure the message size isn't too big.\n    if ( nBytes > 3 ) {\n      errorString_ = \"MidiOutWinMM::sendMessage: message size is greater than 3 bytes (and not sysex)!\";\n      error( RtMidiError::WARNING, errorString_ );\n      return;\n    }\n\n    // Pack MIDI bytes into double word.\n    DWORD packet;\n    unsigned char *ptr = (unsigned char *) &packet;\n    for ( unsigned int i=0; i<nBytes; ++i ) {\n      *ptr = message[i];\n      ++ptr;\n    }\n\n    // Send the message immediately.\n    result = midiOutShortMsg( data->outHandle, packet );\n    if ( result != MMSYSERR_NOERROR ) {\n      errorString_ = \"MidiOutWinMM::sendMessage: error sending MIDI message.\";\n      error( RtMidiError::DRIVER_ERROR, errorString_ );\n    }\n  }\n}\n\n#endif  // __WINDOWS_MM__\n\n\n//*********************************************************************//\n//  API: UNIX JACK\n//\n//  Written primarily by Alexander Svetalkin, with updates for delta\n//  time by Gary Scavone, April 2011.\n//\n//  *********************************************************************//\n\n#if defined(__UNIX_JACK__)\n\n// JACK header files\n#include <jack/jack.h>\n#include <jack/midiport.h>\n#include <jack/ringbuffer.h>\n#ifdef HAVE_SEMAPHORE\n  #include <semaphore.h>\n#endif\n\n#define JACK_RINGBUFFER_SIZE 16384 // Default size for ringbuffer\n\nstruct JackMidiData {\n  jack_client_t *client;\n  jack_port_t *port;\n  jack_ringbuffer_t *buffSize;\n  jack_ringbuffer_t *buffMessage;\n  jack_time_t lastTime;\n#ifdef HAVE_SEMAPHORE\n  sem_t sem_cleanup;\n  sem_t sem_needpost;\n#endif\n  MidiInApi :: RtMidiInData *rtMidiIn;\n  };\n\n//*********************************************************************//\n//  API: JACK\n//  Class Definitions: MidiInJack\n//*********************************************************************//\n\nstatic int jackProcessIn( jack_nframes_t nframes, void *arg )\n{\n  JackMidiData *jData = (JackMidiData *) arg;\n  MidiInApi :: RtMidiInData *rtData = jData->rtMidiIn;\n  jack_midi_event_t event;\n  jack_time_t time;\n\n  // Is port created?\n  if ( jData->port == NULL ) return 0;\n  void *buff = jack_port_get_buffer( jData->port, nframes );\n\n  // We have midi events in buffer\n  int evCount = jack_midi_get_event_count( buff );\n  for (int j = 0; j < evCount; j++) {\n    MidiInApi::MidiMessage message;\n    message.bytes.clear();\n\n    jack_midi_event_get( &event, buff, j );\n\n    for ( unsigned int i = 0; i < event.size; i++ )\n      message.bytes.push_back( event.buffer[i] );\n\n    // Compute the delta time.\n    time = jack_get_time();\n    if ( rtData->firstMessage == true )\n      rtData->firstMessage = false;\n    else\n      message.timeStamp = ( time - jData->lastTime ) * 0.000001;\n\n    jData->lastTime = time;\n\n    if ( !rtData->continueSysex ) {\n      if ( rtData->usingCallback ) {\n        RtMidiIn::RtMidiCallback callback = (RtMidiIn::RtMidiCallback) rtData->userCallback;\n        callback( message.timeStamp, &message.bytes, rtData->userData );\n      }\n      else {\n        // As long as we haven't reached our queue size limit, push the message.\n        if (!rtData->queue.push(message))\n          std::cerr << \"\\nMidiInJack: message queue limit reached!!\\n\\n\";\n      }\n    }\n  }\n\n  return 0;\n}\n\nMidiInJack :: MidiInJack( const std::string &clientName, unsigned int queueSizeLimit ) : MidiInApi( queueSizeLimit )\n{\n  MidiInJack::initialize( clientName );\n}\n\nvoid MidiInJack :: initialize( const std::string& clientName )\n{\n  JackMidiData *data = new JackMidiData;\n  apiData_ = (void *) data;\n\n  data->rtMidiIn = &inputData_;\n  data->port = NULL;\n  data->client = NULL;\n  this->clientName = clientName;\n\n  connect();\n}\n\nvoid MidiInJack :: connect()\n{\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n  if ( data->client )\n    return;\n\n  // Initialize JACK client\n  if (( data->client = jack_client_open( clientName.c_str(), JackNoStartServer, NULL )) == 0) {\n    errorString_ = \"MidiInJack::initialize: JACK server not running?\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  jack_set_process_callback( data->client, jackProcessIn, data );\n  jack_activate( data->client );\n}\n\nMidiInJack :: ~MidiInJack()\n{\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n  MidiInJack::closePort();\n\n  if ( data->client )\n    jack_client_close( data->client );\n  delete data;\n}\n\nvoid MidiInJack :: openPort( unsigned int portNumber, const std::string &portName )\n{\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n\n  connect();\n\n  // Creating new port\n  if ( data->port == NULL)\n    data->port = jack_port_register( data->client, portName.c_str(),\n                                     JACK_DEFAULT_MIDI_TYPE, JackPortIsInput, 0 );\n\n  if ( data->port == NULL) {\n    errorString_ = \"MidiInJack::openPort: JACK error creating port\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Connecting to the output\n  std::string name = getPortName( portNumber );\n  jack_connect( data->client, name.c_str(), jack_port_name( data->port ) );\n}\n\nvoid MidiInJack :: openVirtualPort( const std::string &portName )\n{\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n\n  connect();\n  if ( data->port == NULL )\n    data->port = jack_port_register( data->client, portName.c_str(),\n                                     JACK_DEFAULT_MIDI_TYPE, JackPortIsInput, 0 );\n\n  if ( data->port == NULL ) {\n    errorString_ = \"MidiInJack::openVirtualPort: JACK error creating virtual port\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n  }\n}\n\nunsigned int MidiInJack :: getPortCount()\n{\n  int count = 0;\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n  connect();\n  if ( !data->client )\n    return 0;\n\n  // List of available ports\n  const char **ports = jack_get_ports( data->client, NULL, JACK_DEFAULT_MIDI_TYPE, JackPortIsOutput );\n\n  if ( ports == NULL ) return 0;\n  while ( ports[count] != NULL )\n    count++;\n\n  free( ports );\n\n  return count;\n}\n\nstd::string MidiInJack :: getPortName( unsigned int portNumber )\n{\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n  std::string retStr(\"\");\n\n  connect();\n\n  // List of available ports\n  const char **ports = jack_get_ports( data->client, NULL,\n                                       JACK_DEFAULT_MIDI_TYPE, JackPortIsOutput );\n\n  // Check port validity\n  if ( ports == NULL ) {\n    errorString_ = \"MidiInJack::getPortName: no ports available!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return retStr;\n  }\n\n  if ( ports[portNumber] == NULL ) {\n    std::ostringstream ost;\n    ost << \"MidiInJack::getPortName: the 'portNumber' argument (\" << portNumber << \") is invalid.\";\n    errorString_ = ost.str();\n    error( RtMidiError::WARNING, errorString_ );\n  }\n  else retStr.assign( ports[portNumber] );\n\n  free( ports );\n  return retStr;\n}\n\nvoid MidiInJack :: closePort()\n{\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n\n  if ( data->port == NULL ) return;\n  jack_port_unregister( data->client, data->port );\n  data->port = NULL;\n}\n\n//*********************************************************************//\n//  API: JACK\n//  Class Definitions: MidiOutJack\n//*********************************************************************//\n\n// Jack process callback\nstatic int jackProcessOut( jack_nframes_t nframes, void *arg )\n{\n  JackMidiData *data = (JackMidiData *) arg;\n  jack_midi_data_t *midiData;\n  int space;\n\n  // Is port created?\n  if ( data->port == NULL ) return 0;\n\n  void *buff = jack_port_get_buffer( data->port, nframes );\n  jack_midi_clear_buffer( buff );\n\n  while ( jack_ringbuffer_read_space( data->buffSize ) > 0 ) {\n    jack_ringbuffer_read( data->buffSize, (char *) &space, (size_t) sizeof(space) );\n    midiData = jack_midi_event_reserve( buff, 0, space );\n\n    jack_ringbuffer_read( data->buffMessage, (char *) midiData, (size_t) space );\n  }\n\n#ifdef HAVE_SEMAPHORE\n  if (!sem_trywait(&data->sem_needpost))\n    sem_post(&data->sem_cleanup);\n#endif\n\n  return 0;\n}\n\nMidiOutJack :: MidiOutJack( const std::string &clientName ) : MidiOutApi()\n{\n  MidiOutJack::initialize( clientName );\n}\n\nvoid MidiOutJack :: initialize( const std::string& clientName )\n{\n  JackMidiData *data = new JackMidiData;\n  apiData_ = (void *) data;\n\n  data->port = NULL;\n  data->client = NULL;\n#ifdef HAVE_SEMAPHORE\n  sem_init(&data->sem_cleanup, 0, 0);\n  sem_init(&data->sem_needpost, 0, 0);\n#endif\n  this->clientName = clientName;\n\n  connect();\n}\n\nvoid MidiOutJack :: connect()\n{\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n  if ( data->client )\n    return;\n  \n  // Initialize output ringbuffers  \n  data->buffSize = jack_ringbuffer_create( JACK_RINGBUFFER_SIZE );\n  data->buffMessage = jack_ringbuffer_create( JACK_RINGBUFFER_SIZE );\n\n  // Initialize JACK client\n  if (( data->client = jack_client_open( clientName.c_str(), JackNoStartServer, NULL )) == 0) {\n    errorString_ = \"MidiOutJack::initialize: JACK server not running?\";\n    error( RtMidiError::WARNING, errorString_ );\n    return;\n  }\n\n  jack_set_process_callback( data->client, jackProcessOut, data );\n  jack_activate( data->client );\n}\n\nMidiOutJack :: ~MidiOutJack()\n{\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n  MidiOutJack::closePort();\n\n  // Cleanup\n  jack_ringbuffer_free( data->buffSize );\n  jack_ringbuffer_free( data->buffMessage );\n  if ( data->client ) {\n    jack_client_close( data->client );\n  }\n\n#ifdef HAVE_SEMAPHORE\n  sem_destroy(&data->sem_cleanup);\n  sem_destroy(&data->sem_needpost);\n#endif\n\n  delete data;\n}\n\nvoid MidiOutJack :: openPort( unsigned int portNumber, const std::string &portName )\n{\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n\n  connect();\n\n  // Creating new port\n  if ( data->port == NULL )\n    data->port = jack_port_register( data->client, portName.c_str(),\n      JACK_DEFAULT_MIDI_TYPE, JackPortIsOutput, 0 );\n\n  if ( data->port == NULL ) {\n    errorString_ = \"MidiOutJack::openPort: JACK error creating port\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n    return;\n  }\n\n  // Connecting to the output\n  std::string name = getPortName( portNumber );\n  jack_connect( data->client, jack_port_name( data->port ), name.c_str() );\n}\n\nvoid MidiOutJack :: openVirtualPort( const std::string &portName )\n{\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n\n  connect();\n  if ( data->port == NULL )\n    data->port = jack_port_register( data->client, portName.c_str(),\n      JACK_DEFAULT_MIDI_TYPE, JackPortIsOutput, 0 );\n\n  if ( data->port == NULL ) {\n    errorString_ = \"MidiOutJack::openVirtualPort: JACK error creating virtual port\";\n    error( RtMidiError::DRIVER_ERROR, errorString_ );\n  }\n}\n\nunsigned int MidiOutJack :: getPortCount()\n{\n  int count = 0;\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n  connect();\n  if ( !data->client )\n    return 0;\n\n  // List of available ports\n  const char **ports = jack_get_ports( data->client, NULL,\n    JACK_DEFAULT_MIDI_TYPE, JackPortIsInput );\n\n  if ( ports == NULL ) return 0;\n  while ( ports[count] != NULL )\n    count++;\n\n  free( ports );\n\n  return count;\n}\n\nstd::string MidiOutJack :: getPortName( unsigned int portNumber )\n{\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n  std::string retStr(\"\");\n\n  connect();\n\n  // List of available ports\n  const char **ports = jack_get_ports( data->client, NULL,\n    JACK_DEFAULT_MIDI_TYPE, JackPortIsInput );\n\n  // Check port validity\n  if ( ports == NULL) {\n    errorString_ = \"MidiOutJack::getPortName: no ports available!\";\n    error( RtMidiError::WARNING, errorString_ );\n    return retStr;\n  }\n\n  if ( ports[portNumber] == NULL) {\n    std::ostringstream ost;\n    ost << \"MidiOutJack::getPortName: the 'portNumber' argument (\" << portNumber << \") is invalid.\";\n    errorString_ = ost.str();\n    error( RtMidiError::WARNING, errorString_ );\n  }\n  else retStr.assign( ports[portNumber] );\n\n  free( ports );\n  return retStr;\n}\n\nvoid MidiOutJack :: closePort()\n{\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n\n  if ( data->port == NULL ) return;\n\n#ifdef HAVE_SEMAPHORE\n  struct timespec ts;\n  if (clock_gettime(CLOCK_REALTIME, &ts) != -1)\n  {\n    ts.tv_sec += 1; // wait max one second\n    sem_post(&data->sem_needpost);\n    sem_timedwait(&data->sem_cleanup, &ts);\n  }\n#endif\n\n  jack_port_unregister( data->client, data->port );\n  data->port = NULL;\n}\n\nvoid MidiOutJack :: sendMessage( const unsigned char *message, size_t size )\n{\n  int nBytes = static_cast<int>(size);\n  JackMidiData *data = static_cast<JackMidiData *> (apiData_);\n\n  // Write full message to buffer\n  jack_ringbuffer_write( data->buffMessage, ( const char * ) message,\n                         nBytes );\n  jack_ringbuffer_write( data->buffSize, ( char * ) &nBytes, sizeof( nBytes ) );\n}\n\n#endif  // __UNIX_JACK__\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/RtMidi.h",
    "content": "/**********************************************************************/\n/*! \\class RtMidi\n    \\brief An abstract base class for realtime MIDI input/output.\n\n    This class implements some common functionality for the realtime\n    MIDI input/output subclasses RtMidiIn and RtMidiOut.\n\n    RtMidi WWW site: http://music.mcgill.ca/~gary/rtmidi/\n\n    RtMidi: realtime MIDI i/o C++ classes\n    Copyright (c) 2003-2017 Gary P. Scavone\n\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation files\n    (the \"Software\"), to deal in the Software without restriction,\n    including without limitation the rights to use, copy, modify, merge,\n    publish, distribute, sublicense, and/or sell copies of the Software,\n    and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be\n    included in all copies or substantial portions of the Software.\n\n    Any person wishing to distribute modifications to the Software is\n    asked to send the modifications to the original developer so that\n    they can be incorporated into the canonical version.  This is,\n    however, not a binding provision of this license.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\n    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\n    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n/**********************************************************************/\n\n/*!\n  \\file RtMidi.h\n */\n\n#ifndef RTMIDI_H\n#define RTMIDI_H\n\n#if defined _WIN32 || defined __CYGWIN__\n  #define RTMIDI_DLL_PUBLIC\n#else\n  #if __GNUC__ >= 4\n    #define RTMIDI_DLL_PUBLIC __attribute__( (visibility( \"default\" )) )\n  #else\n    #define RTMIDI_DLL_PUBLIC\n  #endif\n#endif\n\n#define RTMIDI_VERSION \"3.0.0\"\n\n#include <exception>\n#include <iostream>\n#include <string>\n#include <vector>\n\n/************************************************************************/\n/*! \\class RtMidiError\n    \\brief Exception handling class for RtMidi.\n\n    The RtMidiError class is quite simple but it does allow errors to be\n    \"caught\" by RtMidiError::Type. See the RtMidi documentation to know\n    which methods can throw an RtMidiError.\n*/\n/************************************************************************/\n\nclass RTMIDI_DLL_PUBLIC RtMidiError : public std::exception\n{\n public:\n  //! Defined RtMidiError types.\n  enum Type {\n    WARNING,           /*!< A non-critical error. */\n    DEBUG_WARNING,     /*!< A non-critical error which might be useful for debugging. */\n    UNSPECIFIED,       /*!< The default, unspecified error type. */\n    NO_DEVICES_FOUND,  /*!< No devices found on system. */\n    INVALID_DEVICE,    /*!< An invalid device ID was specified. */\n    MEMORY_ERROR,      /*!< An error occured during memory allocation. */\n    INVALID_PARAMETER, /*!< An invalid parameter was specified to a function. */\n    INVALID_USE,       /*!< The function was called incorrectly. */\n    DRIVER_ERROR,      /*!< A system driver error occured. */\n    SYSTEM_ERROR,      /*!< A system error occured. */\n    THREAD_ERROR       /*!< A thread error occured. */\n  };\n\n  //! The constructor.\n  RtMidiError( const std::string& message, Type type = RtMidiError::UNSPECIFIED ) throw() : message_(message), type_(type) {}\n \n  //! The destructor.\n  virtual ~RtMidiError( void ) throw() {}\n\n  //! Prints thrown error message to stderr.\n  virtual void printMessage( void ) const throw() { std::cerr << '\\n' << message_ << \"\\n\\n\"; }\n\n  //! Returns the thrown error message type.\n  virtual const Type& getType(void) const throw() { return type_; }\n\n  //! Returns the thrown error message string.\n  virtual const std::string& getMessage(void) const throw() { return message_; }\n\n  //! Returns the thrown error message as a c-style string.\n  virtual const char* what( void ) const throw() { return message_.c_str(); }\n\n protected:\n  std::string message_;\n  Type type_;\n};\n\n//! RtMidi error callback function prototype.\n/*!\n    \\param type Type of error.\n    \\param errorText Error description.\n\n    Note that class behaviour is undefined after a critical error (not\n    a warning) is reported.\n */\ntypedef void (*RtMidiErrorCallback)( RtMidiError::Type type, const std::string &errorText, void *userData );\n\nclass MidiApi;\n\nclass RTMIDI_DLL_PUBLIC RtMidi\n{\n public:\n\n  //! MIDI API specifier arguments.\n  enum Api {\n    UNSPECIFIED,    /*!< Search for a working compiled API. */\n    MACOSX_CORE,    /*!< Macintosh OS-X Core Midi API. */\n    LINUX_ALSA,     /*!< The Advanced Linux Sound Architecture API. */\n    UNIX_JACK,      /*!< The JACK Low-Latency MIDI Server API. */\n    WINDOWS_MM,     /*!< The Microsoft Multimedia MIDI API. */\n    RTMIDI_DUMMY    /*!< A compilable but non-functional API. */\n  };\n\n  //! A static function to determine the current RtMidi version.\n  static std::string getVersion( void ) throw();\n\n  //! A static function to determine the available compiled MIDI APIs.\n  /*!\n    The values returned in the std::vector can be compared against\n    the enumerated list values.  Note that there can be more than one\n    API compiled for certain operating systems.\n  */\n  static void getCompiledApi( std::vector<RtMidi::Api> &apis ) throw();\n\n  //! Pure virtual openPort() function.\n  virtual void openPort( unsigned int portNumber = 0, const std::string &portName = std::string( \"RtMidi\" ) ) = 0;\n\n  //! Pure virtual openVirtualPort() function.\n  virtual void openVirtualPort( const std::string &portName = std::string( \"RtMidi\" ) ) = 0;\n\n  //! Pure virtual getPortCount() function.\n  virtual unsigned int getPortCount() = 0;\n\n  //! Pure virtual getPortName() function.\n  virtual std::string getPortName( unsigned int portNumber = 0 ) = 0;\n\n  //! Pure virtual closePort() function.\n  virtual void closePort( void ) = 0;\n\n  //! Returns true if a port is open and false if not.\n  /*!\n      Note that this only applies to connections made with the openPort()\n      function, not to virtual ports.\n  */\n  virtual bool isPortOpen( void ) const = 0;\n\n  //! Set an error callback function to be invoked when an error has occured.\n  /*!\n    The callback function will be called whenever an error has occured. It is best\n    to set the error callback function before opening a port.\n  */\n  virtual void setErrorCallback( RtMidiErrorCallback errorCallback = NULL, void *userData = 0 ) = 0;\n\n protected:\n\n  RtMidi();\n  virtual ~RtMidi();\n\n  MidiApi *rtapi_;\n};\n\n/**********************************************************************/\n/*! \\class RtMidiIn\n    \\brief A realtime MIDI input class.\n\n    This class provides a common, platform-independent API for\n    realtime MIDI input.  It allows access to a single MIDI input\n    port.  Incoming MIDI messages are either saved to a queue for\n    retrieval using the getMessage() function or immediately passed to\n    a user-specified callback function.  Create multiple instances of\n    this class to connect to more than one MIDI device at the same\n    time.  With the OS-X, Linux ALSA, and JACK MIDI APIs, it is also\n    possible to open a virtual input port to which other MIDI software\n    clients can connect.\n\n    by Gary P. Scavone, 2003-2017.\n*/\n/**********************************************************************/\n\n// **************************************************************** //\n//\n// RtMidiIn and RtMidiOut class declarations.\n//\n// RtMidiIn / RtMidiOut are \"controllers\" used to select an available\n// MIDI input or output interface.  They present common APIs for the\n// user to call but all functionality is implemented by the classes\n// MidiInApi, MidiOutApi and their subclasses.  RtMidiIn and RtMidiOut\n// each create an instance of a MidiInApi or MidiOutApi subclass based\n// on the user's API choice.  If no choice is made, they attempt to\n// make a \"logical\" API selection.\n//\n// **************************************************************** //\n\nclass RTMIDI_DLL_PUBLIC RtMidiIn : public RtMidi\n{\n public:\n\n  //! User callback function type definition.\n  typedef void (*RtMidiCallback)( double timeStamp, std::vector<unsigned char> *message, void *userData);\n\n  //! Default constructor that allows an optional api, client name and queue size.\n  /*!\n    An exception will be thrown if a MIDI system initialization\n    error occurs.  The queue size defines the maximum number of\n    messages that can be held in the MIDI queue (when not using a\n    callback function).  If the queue size limit is reached,\n    incoming messages will be ignored.\n\n    If no API argument is specified and multiple API support has been\n    compiled, the default order of use is ALSA, JACK (Linux) and CORE,\n    JACK (OS-X).\n\n    \\param api        An optional API id can be specified.\n    \\param clientName An optional client name can be specified. This\n                      will be used to group the ports that are created\n                      by the application.\n    \\param queueSizeLimit An optional size of the MIDI input queue can be specified.\n  */\n  RtMidiIn( RtMidi::Api api=UNSPECIFIED,\n            const std::string& clientName = \"RtMidi Input Client\",\n            unsigned int queueSizeLimit = 100 );\n\n  //! If a MIDI connection is still open, it will be closed by the destructor.\n  ~RtMidiIn ( void ) throw();\n\n  //! Returns the MIDI API specifier for the current instance of RtMidiIn.\n  RtMidi::Api getCurrentApi( void ) throw();\n\n  //! Open a MIDI input connection given by enumeration number.\n  /*!\n    \\param portNumber An optional port number greater than 0 can be specified.\n                      Otherwise, the default or first port found is opened.\n    \\param portName An optional name for the application port that is used to connect to portId can be specified.\n  */\n  void openPort( unsigned int portNumber = 0, const std::string &portName = std::string( \"RtMidi Input\" ) );\n\n  //! Create a virtual input port, with optional name, to allow software connections (OS X, JACK and ALSA only).\n  /*!\n    This function creates a virtual MIDI input port to which other\n    software applications can connect.  This type of functionality\n    is currently only supported by the Macintosh OS-X, any JACK,\n    and Linux ALSA APIs (the function returns an error for the other APIs).\n\n    \\param portName An optional name for the application port that is\n                    used to connect to portId can be specified.\n  */\n  void openVirtualPort( const std::string &portName = std::string( \"RtMidi Input\" ) );\n\n  //! Set a callback function to be invoked for incoming MIDI messages.\n  /*!\n    The callback function will be called whenever an incoming MIDI\n    message is received.  While not absolutely necessary, it is best\n    to set the callback function before opening a MIDI port to avoid\n    leaving some messages in the queue.\n\n    \\param callback A callback function must be given.\n    \\param userData Optionally, a pointer to additional data can be\n                    passed to the callback function whenever it is called.\n  */\n  void setCallback( RtMidiCallback callback, void *userData = 0 );\n\n  //! Cancel use of the current callback function (if one exists).\n  /*!\n    Subsequent incoming MIDI messages will be written to the queue\n    and can be retrieved with the \\e getMessage function.\n  */\n  void cancelCallback();\n\n  //! Close an open MIDI connection (if one exists).\n  void closePort( void );\n\n  //! Returns true if a port is open and false if not.\n  /*!\n      Note that this only applies to connections made with the openPort()\n      function, not to virtual ports.\n  */\n  virtual bool isPortOpen() const;\n\n  //! Return the number of available MIDI input ports.\n  /*!\n    \\return This function returns the number of MIDI ports of the selected API.\n  */\n  unsigned int getPortCount();\n\n  //! Return a string identifier for the specified MIDI input port number.\n  /*!\n    \\return The name of the port with the given Id is returned.\n    \\retval An empty string is returned if an invalid port specifier\n            is provided. User code should assume a UTF-8 encoding.\n  */\n  std::string getPortName( unsigned int portNumber = 0 );\n\n  //! Specify whether certain MIDI message types should be queued or ignored during input.\n  /*!\n    By default, MIDI timing and active sensing messages are ignored\n    during message input because of their relative high data rates.\n    MIDI sysex messages are ignored by default as well.  Variable\n    values of \"true\" imply that the respective message type will be\n    ignored.\n  */\n  void ignoreTypes( bool midiSysex = true, bool midiTime = true, bool midiSense = true );\n\n  //! Fill the user-provided vector with the data bytes for the next available MIDI message in the input queue and return the event delta-time in seconds.\n  /*!\n    This function returns immediately whether a new message is\n    available or not.  A valid message is indicated by a non-zero\n    vector size.  An exception is thrown if an error occurs during\n    message retrieval or an input connection was not previously\n    established.\n  */\n  double getMessage( std::vector<unsigned char> *message );\n\n  //! Set an error callback function to be invoked when an error has occured.\n  /*!\n    The callback function will be called whenever an error has occured. It is best\n    to set the error callback function before opening a port.\n  */\n  virtual void setErrorCallback( RtMidiErrorCallback errorCallback = NULL, void *userData = 0 );\n\n protected:\n  void openMidiApi( RtMidi::Api api, const std::string &clientName, unsigned int queueSizeLimit );\n\n};\n\n/**********************************************************************/\n/*! \\class RtMidiOut\n    \\brief A realtime MIDI output class.\n\n    This class provides a common, platform-independent API for MIDI\n    output.  It allows one to probe available MIDI output ports, to\n    connect to one such port, and to send MIDI bytes immediately over\n    the connection.  Create multiple instances of this class to\n    connect to more than one MIDI device at the same time.  With the\n    OS-X, Linux ALSA and JACK MIDI APIs, it is also possible to open a\n    virtual port to which other MIDI software clients can connect.\n\n    by Gary P. Scavone, 2003-2017.\n*/\n/**********************************************************************/\n\nclass RTMIDI_DLL_PUBLIC RtMidiOut : public RtMidi\n{\n public:\n\n  //! Default constructor that allows an optional client name.\n  /*!\n    An exception will be thrown if a MIDI system initialization error occurs.\n\n    If no API argument is specified and multiple API support has been\n    compiled, the default order of use is ALSA, JACK (Linux) and CORE,\n    JACK (OS-X).\n  */\n  RtMidiOut( RtMidi::Api api=UNSPECIFIED,\n             const std::string& clientName = \"RtMidi Output Client\" );\n\n  //! The destructor closes any open MIDI connections.\n  ~RtMidiOut( void ) throw();\n\n  //! Returns the MIDI API specifier for the current instance of RtMidiOut.\n  RtMidi::Api getCurrentApi( void ) throw();\n\n  //! Open a MIDI output connection.\n  /*!\n      An optional port number greater than 0 can be specified.\n      Otherwise, the default or first port found is opened.  An\n      exception is thrown if an error occurs while attempting to make\n      the port connection.\n  */\n  void openPort( unsigned int portNumber = 0, const std::string &portName = std::string( \"RtMidi Output\" ) );\n\n  //! Close an open MIDI connection (if one exists).\n  void closePort( void );\n\n  //! Returns true if a port is open and false if not.\n  /*!\n      Note that this only applies to connections made with the openPort()\n      function, not to virtual ports.\n  */\n  virtual bool isPortOpen() const;\n\n  //! Create a virtual output port, with optional name, to allow software connections (OS X, JACK and ALSA only).\n  /*!\n      This function creates a virtual MIDI output port to which other\n      software applications can connect.  This type of functionality\n      is currently only supported by the Macintosh OS-X, Linux ALSA\n      and JACK APIs (the function does nothing with the other APIs).\n      An exception is thrown if an error occurs while attempting to\n      create the virtual port.\n  */\n  void openVirtualPort( const std::string &portName = std::string( \"RtMidi Output\" ) );\n\n  //! Return the number of available MIDI output ports.\n  unsigned int getPortCount( void );\n\n  //! Return a string identifier for the specified MIDI port type and number.\n  /*!\n    \\return The name of the port with the given Id is returned.\n    \\retval An empty string is returned if an invalid port specifier\n            is provided. User code should assume a UTF-8 encoding.\n  */\n  std::string getPortName( unsigned int portNumber = 0 );\n\n  //! Immediately send a single message out an open MIDI output port.\n  /*!\n      An exception is thrown if an error occurs during output or an\n      output connection was not previously established.\n  */\n  void sendMessage( const std::vector<unsigned char> *message );\n\n  //! Immediately send a single message out an open MIDI output port.\n  /*!\n      An exception is thrown if an error occurs during output or an\n      output connection was not previously established.\n\n      \\param message A pointer to the MIDI message as raw bytes\n      \\param size    Length of the MIDI message in bytes\n  */\n  void sendMessage( const unsigned char *message, size_t size );\n\n  //! Set an error callback function to be invoked when an error has occured.\n  /*!\n    The callback function will be called whenever an error has occured. It is best\n    to set the error callback function before opening a port.\n  */\n  virtual void setErrorCallback( RtMidiErrorCallback errorCallback = NULL, void *userData = 0 );\n\n protected:\n  void openMidiApi( RtMidi::Api api, const std::string &clientName );\n};\n\n\n// **************************************************************** //\n//\n// MidiInApi / MidiOutApi class declarations.\n//\n// Subclasses of MidiInApi and MidiOutApi contain all API- and\n// OS-specific code necessary to fully implement the RtMidi API.\n//\n// Note that MidiInApi and MidiOutApi are abstract base classes and\n// cannot be explicitly instantiated.  RtMidiIn and RtMidiOut will\n// create instances of a MidiInApi or MidiOutApi subclass.\n//\n// **************************************************************** //\n\nclass RTMIDI_DLL_PUBLIC MidiApi\n{\n public:\n\n  MidiApi();\n  virtual ~MidiApi();\n  virtual RtMidi::Api getCurrentApi( void ) = 0;\n  virtual void openPort( unsigned int portNumber, const std::string &portName ) = 0;\n  virtual void openVirtualPort( const std::string &portName ) = 0;\n  virtual void closePort( void ) = 0;\n\n  virtual unsigned int getPortCount( void ) = 0;\n  virtual std::string getPortName( unsigned int portNumber ) = 0;\n\n  inline bool isPortOpen() const { return connected_; }\n  void setErrorCallback( RtMidiErrorCallback errorCallback, void *userData );\n\n  //! A basic error reporting function for RtMidi classes.\n  void error( RtMidiError::Type type, std::string errorString );\n\nprotected:\n  virtual void initialize( const std::string& clientName ) = 0;\n\n  void *apiData_;\n  bool connected_;\n  std::string errorString_;\n  RtMidiErrorCallback errorCallback_;\n  bool firstErrorOccurred_;\n  void *errorCallbackUserData_;\n};\n\nclass RTMIDI_DLL_PUBLIC MidiInApi : public MidiApi\n{\n public:\n\n  MidiInApi( unsigned int queueSizeLimit );\n  virtual ~MidiInApi( void );\n  void setCallback( RtMidiIn::RtMidiCallback callback, void *userData );\n  void cancelCallback( void );\n  virtual void ignoreTypes( bool midiSysex, bool midiTime, bool midiSense );\n  double getMessage( std::vector<unsigned char> *message );\n\n  // A MIDI structure used internally by the class to store incoming\n  // messages.  Each message represents one and only one MIDI message.\n  struct MidiMessage { \n    std::vector<unsigned char> bytes; \n\n    //! Time in seconds elapsed since the previous message\n    double timeStamp;\n\n    // Default constructor.\n  MidiMessage()\n  :bytes(0), timeStamp(0.0) {}\n  };\n\n  struct MidiQueue {\n    unsigned int front;\n    unsigned int back;\n    unsigned int ringSize;\n    MidiMessage *ring;\n\n    // Default constructor.\n  MidiQueue()\n  :front(0), back(0), ringSize(0), ring(0) {}\n    bool push(const MidiMessage&);\n    bool pop(std::vector<unsigned char>*, double*);\n    unsigned int size(unsigned int *back=0,\n\t\t      unsigned int *front=0);\n  };\n\n  // The RtMidiInData structure is used to pass private class data to\n  // the MIDI input handling function or thread.\n  struct RtMidiInData {\n    MidiQueue queue;\n    MidiMessage message;\n    unsigned char ignoreFlags;\n    bool doInput;\n    bool firstMessage;\n    void *apiData;\n    bool usingCallback;\n    RtMidiIn::RtMidiCallback userCallback;\n    void *userData;\n    bool continueSysex;\n\n    // Default constructor.\n  RtMidiInData()\n  : ignoreFlags(7), doInput(false), firstMessage(true),\n      apiData(0), usingCallback(false), userCallback(0), userData(0),\n      continueSysex(false) {}\n  };\n\n protected:\n  RtMidiInData inputData_;\n};\n\nclass RTMIDI_DLL_PUBLIC MidiOutApi : public MidiApi\n{\n public:\n\n  MidiOutApi( void );\n  virtual ~MidiOutApi( void );\n  virtual void sendMessage( const unsigned char *message, size_t size ) = 0;\n};\n\n// **************************************************************** //\n//\n// Inline RtMidiIn and RtMidiOut definitions.\n//\n// **************************************************************** //\n\ninline RtMidi::Api RtMidiIn :: getCurrentApi( void ) throw() { return rtapi_->getCurrentApi(); }\ninline void RtMidiIn :: openPort( unsigned int portNumber, const std::string &portName ) { rtapi_->openPort( portNumber, portName ); }\ninline void RtMidiIn :: openVirtualPort( const std::string &portName ) { rtapi_->openVirtualPort( portName ); }\ninline void RtMidiIn :: closePort( void ) { rtapi_->closePort(); }\ninline bool RtMidiIn :: isPortOpen() const { return rtapi_->isPortOpen(); }\ninline void RtMidiIn :: setCallback( RtMidiCallback callback, void *userData ) { ((MidiInApi *)rtapi_)->setCallback( callback, userData ); }\ninline void RtMidiIn :: cancelCallback( void ) { ((MidiInApi *)rtapi_)->cancelCallback(); }\ninline unsigned int RtMidiIn :: getPortCount( void ) { return rtapi_->getPortCount(); }\ninline std::string RtMidiIn :: getPortName( unsigned int portNumber ) { return rtapi_->getPortName( portNumber ); }\ninline void RtMidiIn :: ignoreTypes( bool midiSysex, bool midiTime, bool midiSense ) { ((MidiInApi *)rtapi_)->ignoreTypes( midiSysex, midiTime, midiSense ); }\ninline double RtMidiIn :: getMessage( std::vector<unsigned char> *message ) { return ((MidiInApi *)rtapi_)->getMessage( message ); }\ninline void RtMidiIn :: setErrorCallback( RtMidiErrorCallback errorCallback, void *userData ) { rtapi_->setErrorCallback(errorCallback, userData); }\n\ninline RtMidi::Api RtMidiOut :: getCurrentApi( void ) throw() { return rtapi_->getCurrentApi(); }\ninline void RtMidiOut :: openPort( unsigned int portNumber, const std::string &portName ) { rtapi_->openPort( portNumber, portName ); }\ninline void RtMidiOut :: openVirtualPort( const std::string &portName ) { rtapi_->openVirtualPort( portName ); }\ninline void RtMidiOut :: closePort( void ) { rtapi_->closePort(); }\ninline bool RtMidiOut :: isPortOpen() const { return rtapi_->isPortOpen(); }\ninline unsigned int RtMidiOut :: getPortCount( void ) { return rtapi_->getPortCount(); }\ninline std::string RtMidiOut :: getPortName( unsigned int portNumber ) { return rtapi_->getPortName( portNumber ); }\ninline void RtMidiOut :: sendMessage( const std::vector<unsigned char> *message ) { ((MidiOutApi *)rtapi_)->sendMessage( &message->at(0), message->size() ); }\ninline void RtMidiOut :: sendMessage( const unsigned char *message, size_t size ) { ((MidiOutApi *)rtapi_)->sendMessage( message, size ); }\ninline void RtMidiOut :: setErrorCallback( RtMidiErrorCallback errorCallback, void *userData ) { rtapi_->setErrorCallback(errorCallback, userData); }\n\n// **************************************************************** //\n//\n// MidiInApi and MidiOutApi subclass prototypes.\n//\n// **************************************************************** //\n\n#if !defined(__LINUX_ALSA__) && !defined(__UNIX_JACK__) && !defined(__MACOSX_CORE__) && !defined(__WINDOWS_MM__)\n  #define __RTMIDI_DUMMY__\n#endif\n\n#if defined(__MACOSX_CORE__)\n\nclass MidiInCore: public MidiInApi\n{\n public:\n  MidiInCore( const std::string &clientName, unsigned int queueSizeLimit );\n  ~MidiInCore( void );\n  RtMidi::Api getCurrentApi( void ) { return RtMidi::MACOSX_CORE; };\n  void openPort( unsigned int portNumber, const std::string &portName );\n  void openVirtualPort( const std::string &portName );\n  void closePort( void );\n  unsigned int getPortCount( void );\n  std::string getPortName( unsigned int portNumber );\n\n protected:\n  void initialize( const std::string& clientName );\n};\n\nclass MidiOutCore: public MidiOutApi\n{\n public:\n  MidiOutCore( const std::string &clientName );\n  ~MidiOutCore( void );\n  RtMidi::Api getCurrentApi( void ) { return RtMidi::MACOSX_CORE; };\n  void openPort( unsigned int portNumber, const std::string &portName );\n  void openVirtualPort( const std::string &portName );\n  void closePort( void );\n  unsigned int getPortCount( void );\n  std::string getPortName( unsigned int portNumber );\n  void sendMessage( const unsigned char *message, size_t size );\n\n protected:\n  void initialize( const std::string& clientName );\n};\n\n#endif\n\n#if defined(__UNIX_JACK__)\n\nclass MidiInJack: public MidiInApi\n{\n public:\n  MidiInJack( const std::string &clientName, unsigned int queueSizeLimit );\n  ~MidiInJack( void );\n  RtMidi::Api getCurrentApi( void ) { return RtMidi::UNIX_JACK; };\n  void openPort( unsigned int portNumber, const std::string &portName );\n  void openVirtualPort( const std::string &portName );\n  void closePort( void );\n  unsigned int getPortCount( void );\n  std::string getPortName( unsigned int portNumber );\n\n protected:\n  std::string clientName;\n\n  void connect( void );\n  void initialize( const std::string& clientName );\n};\n\nclass MidiOutJack: public MidiOutApi\n{\n public:\n  MidiOutJack( const std::string &clientName );\n  ~MidiOutJack( void );\n  RtMidi::Api getCurrentApi( void ) { return RtMidi::UNIX_JACK; };\n  void openPort( unsigned int portNumber, const std::string &portName );\n  void openVirtualPort( const std::string &portName );\n  void closePort( void );\n  unsigned int getPortCount( void );\n  std::string getPortName( unsigned int portNumber );\n  void sendMessage( const unsigned char *message, size_t size );\n\n protected:\n  std::string clientName;\n\n  void connect( void );\n  void initialize( const std::string& clientName );\n};\n\n#endif\n\n#if defined(__LINUX_ALSA__)\n\nclass MidiInAlsa: public MidiInApi\n{\n public:\n  MidiInAlsa( const std::string &clientName, unsigned int queueSizeLimit );\n  ~MidiInAlsa( void );\n  RtMidi::Api getCurrentApi( void ) { return RtMidi::LINUX_ALSA; };\n  void openPort( unsigned int portNumber, const std::string &portName );\n  void openVirtualPort( const std::string &portName );\n  void closePort( void );\n  unsigned int getPortCount( void );\n  std::string getPortName( unsigned int portNumber );\n\n protected:\n  void initialize( const std::string& clientName );\n};\n\nclass MidiOutAlsa: public MidiOutApi\n{\n public:\n  MidiOutAlsa( const std::string &clientName );\n  ~MidiOutAlsa( void );\n  RtMidi::Api getCurrentApi( void ) { return RtMidi::LINUX_ALSA; };\n  void openPort( unsigned int portNumber, const std::string &portName );\n  void openVirtualPort( const std::string &portName );\n  void closePort( void );\n  unsigned int getPortCount( void );\n  std::string getPortName( unsigned int portNumber );\n  void sendMessage( const unsigned char *message, size_t size );\n\n protected:\n  void initialize( const std::string& clientName );\n};\n\n#endif\n\n#if defined(__WINDOWS_MM__)\n\nclass MidiInWinMM: public MidiInApi\n{\n public:\n  MidiInWinMM( const std::string &clientName, unsigned int queueSizeLimit );\n  ~MidiInWinMM( void );\n  RtMidi::Api getCurrentApi( void ) { return RtMidi::WINDOWS_MM; };\n  void openPort( unsigned int portNumber, const std::string &portName );\n  void openVirtualPort( const std::string &portName );\n  void closePort( void );\n  unsigned int getPortCount( void );\n  std::string getPortName( unsigned int portNumber );\n\n protected:\n  void initialize( const std::string& clientName );\n};\n\nclass MidiOutWinMM: public MidiOutApi\n{\n public:\n  MidiOutWinMM( const std::string &clientName );\n  ~MidiOutWinMM( void );\n  RtMidi::Api getCurrentApi( void ) { return RtMidi::WINDOWS_MM; };\n  void openPort( unsigned int portNumber, const std::string &portName );\n  void openVirtualPort( const std::string &portName );\n  void closePort( void );\n  unsigned int getPortCount( void );\n  std::string getPortName( unsigned int portNumber );\n  void sendMessage( const unsigned char *message, size_t size );\n\n protected:\n  void initialize( const std::string& clientName );\n};\n\n#endif\n\n#if defined(__RTMIDI_DUMMY__)\n\nclass MidiInDummy: public MidiInApi\n{\n public:\n MidiInDummy( const std::string &/*clientName*/, unsigned int queueSizeLimit ) : MidiInApi( queueSizeLimit ) { errorString_ = \"MidiInDummy: This class provides no functionality.\"; error( RtMidiError::WARNING, errorString_ ); }\n  RtMidi::Api getCurrentApi( void ) { return RtMidi::RTMIDI_DUMMY; }\n  void openPort( unsigned int /*portNumber*/, const std::string &/*portName*/ ) {}\n  void openVirtualPort( const std::string &/*portName*/ ) {}\n  void closePort( void ) {}\n  unsigned int getPortCount( void ) { return 0; }\n  std::string getPortName( unsigned int /*portNumber*/ ) { return \"\"; }\n\n protected:\n  void initialize( const std::string& /*clientName*/ ) {}\n};\n\nclass MidiOutDummy: public MidiOutApi\n{\n public:\n  MidiOutDummy( const std::string &/*clientName*/ ) { errorString_ = \"MidiOutDummy: This class provides no functionality.\"; error( RtMidiError::WARNING, errorString_ ); }\n  RtMidi::Api getCurrentApi( void ) { return RtMidi::RTMIDI_DUMMY; }\n  void openPort( unsigned int /*portNumber*/, const std::string &/*portName*/ ) {}\n  void openVirtualPort( const std::string &/*portName*/ ) {}\n  void closePort( void ) {}\n  unsigned int getPortCount( void ) { return 0; }\n  std::string getPortName( unsigned int /*portNumber*/ ) { return \"\"; }\n  void sendMessage( const unsigned char * /*message*/, size_t /*size*/ ) {}\n\n protected:\n  void initialize( const std::string& /*clientName*/ ) {}\n};\n\n#endif\n\n#endif\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/autogen.sh",
    "content": "#!/bin/sh\n# Run this to generate all the initial makefiles, etc.\n\nsrcdir=`dirname $0`\ntest -z \"$srcdir\" && srcdir=.\n\nDIE=0\n\nif test -z \"$*\"; then\n  echo \"**Warning**: I am going to run \\`configure' with arguments for\"\n  echo \"developer/maintainer mode.  If you wish to pass extra arguments,\"\n  echo \"(such as --prefix), please specify them on the \\`$0'\"\n  echo \"command line.\"\n  echo \"If you wish to run configure yourself, please specify --no-configure.\"\n  echo\nfi\n\n(test -f $srcdir/configure.ac) || {\n    echo -n \"**Error**: Directory \"\\`$srcdir\\'\" does not look like the\"\n    echo \" top-level package directory\"\n    exit 1\n}\n\n# Make some directories required by automake, if they don't exist\nif ! [ -d config ]; then mkdir -v config; fi\nif ! [ -d m4     ]; then mkdir -v m4;     fi\n\nif ! autoreconf --version </dev/null >/dev/null 2>&1\nthen\n\n(autoconf --version) < /dev/null > /dev/null 2>&1 || {\n  echo\n  echo \"**Error**: You must have \\`autoconf' installed.\"\n  echo \"Download the appropriate package for your distribution,\"\n  echo \"or get the source tarball at ftp://ftp.gnu.org/pub/gnu/\"\n  DIE=1\n}\n\n(grep \"^LT_INIT\" $srcdir/configure.ac >/dev/null) && {\n  (libtoolize --version) < /dev/null > /dev/null 2>&1 \\\n\t  && LIBTOOLIZE=libtoolize || {\n\t(glibtoolize --version) < /dev/null > /dev/null 2>&1 \\\n\t\t&& LIBTOOLIZE=glibtoolize || {\n      echo\n      echo \"**Error**: You must have \\`libtool' installed.\"\n      echo \"You can get it from: ftp://ftp.gnu.org/pub/gnu/\"\n      DIE=1\n    }\n  }\n}\n\n(automake --version) < /dev/null > /dev/null 2>&1 || {\n  echo\n  echo \"**Error**: You must have \\`automake' installed.\"\n  echo \"You can get it from: ftp://ftp.gnu.org/pub/gnu/\"\n  DIE=1\n  NO_AUTOMAKE=yes\n}\n\n\n# if no automake, don't bother testing for aclocal\ntest -n \"$NO_AUTOMAKE\" || (aclocal --version) < /dev/null > /dev/null 2>&1 || {\n  echo\n  echo \"**Error**: Missing \\`aclocal'.  The version of \\`automake'\"\n  echo \"installed doesn't appear recent enough.\"\n  echo \"You can get automake from ftp://ftp.gnu.org/pub/gnu/\"\n  DIE=1\n}\n\nif test \"$DIE\" -eq 1; then\n  exit 1\nfi\n\ncase $CC in\nxlc )\n  am_opt=--include-deps;;\nesac\n\necho \"Running aclocal $aclocalinclude ...\"\naclocal $ACLOCAL_FLAGS || exit 1\necho \"Running $LIBTOOLIZE ...\"\n$LIBTOOLIZE || exit 1\necho \"Running automake --gnu $am_opt ...\"\nautomake --add-missing --gnu $am_opt || exit 1\necho \"Running autoconf ...\"\nautoconf || exit 1\n\nelse # autoreconf instead\n\n    echo \"Running autoreconf --verbose --install ...\"\n    autoreconf --verbose --install || exit 1\n\nfi\n\nif ( echo \"$@\" | grep -q -e \"--no-configure\" ); then\n  NOCONFIGURE=1\nfi\n\nconf_flags=\"--enable-maintainer-mode --enable-debug --disable-silent-rules\"\n\nif test x$NOCONFIGURE = x; then\n  echo Running $srcdir/configure $conf_flags \"$@\" ...\n  $srcdir/configure $conf_flags \"$@\" \\\n  && echo Now type \\`make\\' to compile. || exit 1\nelse\n  echo Skipping configure process.\nfi\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/configure.ac",
    "content": "# Process this file with autoconf to produce a configure script.\nAC_INIT(RtMidi, 3.0.0, gary@music.mcgill.ca, rtmidi)\nAC_CONFIG_AUX_DIR(config)\nAC_CONFIG_SRCDIR(RtMidi.cpp)\nAC_CONFIG_FILES([rtmidi-config rtmidi.pc Makefile tests/Makefile doc/Makefile doc/doxygen/Doxyfile])\nAM_INIT_AUTOMAKE([1.14 -Wall -Werror foreign subdir-objects])\n\n# libtool version: current:revision:age\n#\n# If the library source code has changed at all since the last update, then\n# increment revision (`c:r:a' becomes `c:r+1:a').\n#\n# If any interfaces have been added, removed, or changed since the last update,\n# increment current, and set revision to 0.\n#\n# If any interfaces have been added since the last public release, then\n# increment age.\n#\n# If any interfaces have been removed since the last public release, then set\n# age to 0.\nm4_define([lt_current], 4)\nm4_define([lt_revision], 0)\nm4_define([lt_age], 0)\n\nm4_define([lt_version_info], [lt_current:lt_revision:lt_age])\nm4_define([lt_current_minus_age], [m4_eval(lt_current - lt_age)])\n\nSO_VERSION=lt_version_info\nAC_SUBST(SO_VERSION)\nAC_SUBST(LIBS)\nAC_SUBST(api)\nAC_SUBST(req)\n\napi=\"\"\nreq=\"\"\n\n# Fill GXX with something before test.\nGXX=\"no\"\n\n# if the user did not provide any CXXFLAGS, we can override them\nAS_IF([test \"x$CXXFLAGS\" = \"x\" ], [override_cxx=yes], [override_cxx=no])\nAS_IF([test \"x$CFLAGS\" = \"x\" ], [override_c=yes], [override_c=no])\n\n# Check version number coherency between RtMidi.h and configure.ac\nAC_MSG_CHECKING([that version numbers are coherent])\nRTMIDI_VERSION=`sed -n 's/#define RTMIDI_VERSION \"\\(.*\\)\"/\\1/p' $srcdir/RtMidi.h`\nAS_IF(\n   [test \"x$RTMIDI_VERSION\" != \"x$PACKAGE_VERSION\"],\n   [AC_MSG_FAILURE([testing RTMIDI_VERSION==PACKAGE_VERSION failed, check that RtMidi.h defines RTMIDI_VERSION as \"$PACKAGE_VERSION\" or that the first line of configure.ac has been updated.])])\n\n# Enable some nice automake features if they are available\nm4_ifdef([AM_MAINTAINER_MODE], [AM_MAINTAINER_MODE])\nm4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])\n\n# configure flags\nAC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug], [enable various debugging output])])\nAC_ARG_WITH(jack, [AS_HELP_STRING([--with-jack], [choose JACK server support (mac and linux only)])])\nAC_ARG_WITH(alsa, [AS_HELP_STRING([--with-alsa], [choose native ALSA sequencer API support (linux only)])])\nAC_ARG_WITH(core, [AS_HELP_STRING([--with-core], [ choose CoreMidi API support (mac only)])])\nAC_ARG_WITH(winmm, [AS_HELP_STRING([--with-winmm], [ choose Windows MultiMedia (MM) API support (win32 only)])])\nAC_ARG_WITH(winks, [AS_HELP_STRING([--with-winks], [  choose kernel streaming support (win32 only)])])\n\n\n# Checks for programs.\nAC_PROG_CXX(g++ CC c++ cxx)\nAM_PROG_AR\nAC_PATH_PROG(AR, ar, no)\nAS_IF([test \"x$AR\" = \"xno\"], [\n    AC_MSG_ERROR([Could not find ar - needed to create a library])\n])\n\nLT_INIT([win32-dll])\nAC_CONFIG_MACRO_DIR([m4])\n\n# Checks for header files.\nAC_HEADER_STDC\n#AC_CHECK_HEADERS(sys/ioctl.h unistd.h)\n\n# Check for POSIX semaphore support\nAC_CHECK_HEADER([semaphore.h], [\n  AC_CHECK_LIB(pthread, sem_init,\n    AC_DEFINE([HAVE_SEMAPHORE],[1],[Define to 1 if you have POSIX semaphore support on your system.]),\n    AC_MSG_WARN([POSIX semaphore support not found; data may be lost on closePort]))\n])\n\n\n# check for debug\nAC_MSG_CHECKING(whether to compile debug version)\ndebugflags=\"\"\nobject_path=Release\nAS_CASE([${enable_debug}],\n  [ yes ], [\n    AC_MSG_RESULT([yes])\n    CPPFLAGS=\"-D__RTMIDI_DEBUG ${CPPFLAGS}\"\n    debugflags=\"${debugflags} -g\"\n    object_path=Debug\n  ],\n  [ no ], [\n    AC_MSG_RESULT([no!])\n    debugflags=\"${debugflags} -O3\"\n  ], [\n    AC_MSG_RESULT([no])\n  ])\n# For debugging and optimization ... overwrite default because it has both -g and -O2\nAS_IF([test \"x$debugflags\" != x],\n  AS_IF([test \"x$override_cxx\" = \"xyes\" ], CXXFLAGS=\"$CXXFLAGS $debugflags\", CXXFLAGS=\"$debugflags $CXXFLAGS\")\n  AS_IF([test \"x$override_c\" = \"xyes\" ], CFLAGS=\"$CFLAGS $debugflags\", CFLAGS=\"$debugflags $CFLAGS\")\n  )\n\n# Check compiler and use -Wall if gnu.\nAS_IF([test \"x$GXX\" = \"xyes\"], [\n  CXXFLAGS=\"-Wall -Wextra ${CXXFLAGS}\"\n])\n\n# Checks for doxygen\nAC_CHECK_PROG( DOXYGEN, [doxygen], [doxygen] )\nAM_CONDITIONAL( MAKE_DOC, [test \"x${DOXYGEN}\" != x] )\n\n# Copy doc files to build dir if necessary\nAC_CONFIG_LINKS( [doc/doxygen/footer.html:doc/doxygen/footer.html] )\nAC_CONFIG_LINKS( [doc/doxygen/header.html:doc/doxygen/header.html] )\nAC_CONFIG_LINKS( [doc/doxygen/tutorial.txt:doc/doxygen/tutorial.txt] )\nAC_CONFIG_LINKS( [doc/images/ccrma.gif:doc/images/ccrma.gif] )\nAC_CONFIG_LINKS( [doc/images/mcgill.gif:doc/images/mcgill.gif] )\n\n# Checks for package options and external software\nAC_CANONICAL_HOST\n\n\n\n\nAC_MSG_CHECKING(for MIDI API)\n\nAS_IF([test \"x$with_jack\" = \"xyes\"], [\napi=\"$api -D__UNIX_JACK__\"\nAC_MSG_RESULT(using JACK)\nAC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR(JACK support requires the jack library!))])\n\ncase $host in\n  *-*-linux*)\n  # Look for ALSA flag\n  AS_IF([test \"x$with_alsa\" = \"xyes\"], [\n    AC_MSG_RESULT(using ALSA)\n    AC_CHECK_LIB(asound, snd_seq_open, , AC_MSG_ERROR(ALSA support requires the asound library!))\n    api=\"$api -D__LINUX_ALSA__\"\n    req=\"$req alsa\"\n  ])\n\n  AS_IF([test \"x${api}\" = \"x\"],\n    AC_MSG_RESULT(using ALSA)\n    AC_CHECK_LIB(asound, snd_seq_open, , AC_MSG_ERROR(ALSA sequencer support requires the asound library!))\n    api=\"-D__LINUX_ALSA__ ${api}\"\n    req=\"$req alsa\"\n  )\n\n  # Checks for pthread library.\n  AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(RtMidi requires the pthread library!))\n  ;;\n\n  *-apple*)\n  # Look for Core flag\n  AS_IF([test \"x$with_core\" = \"xyes\"], [\n    AC_MSG_RESULT(using CoreMidi)\n    AC_CHECK_HEADER(CoreMIDI/CoreMIDI.h, [], [AC_MSG_ERROR(CoreMIDI header files not found!)] )\n    LIBS=\"-framework CoreMIDI -framework CoreFoundation -framework CoreAudio ${LIBS}\"\n    api=\"$api -D__MACOSX_CORE__\"\n  ])\n\n  # If no api flags specified, use CoreMidi\n  AS_IF([test \"x${api}\" = \"x\"],\n    AC_MSG_RESULT(using CoreMidi)\n    AC_CHECK_HEADER(CoreMIDI/CoreMIDI.h,\n      [],\n      [AC_MSG_ERROR(CoreMIDI header files not found!)] )\n    LIBS=\"-framework CoreMIDI -framework CoreFoundation -framework CoreAudio ${LIBS}\"\n    api=\"$api -D__MACOSX_CORE__\"\n  )\n  ;;\n\n  *-mingw32*)\n  # Look for WinMM flag\n  AS_IF([test \"x$with_winmm\" = \"xyes\"], [\n    AC_MSG_RESULT(using WinMM)\n    LIBS=\"-lwinmm ${LIBS}\"\n    api=\"$api -D__WINDOWS_MM__\"\n  ])\n\n  AS_IF([test \"x$with_winks\" = \"xyes\"], [\n    AC_MSG_RESULT(using kernel streaming)\n    LIBS=\"-lsetupapi -lksuser ${LIBS}\"\n    api=\"$api -D__WINDOWS_KS__\"\n  ])\n\n  # I can't get the following check to work so just manually add the library\n\t# or could try the following?  AC_LIB_WINMM([midiOutGetNumDevs])\n  # AC_CHECK_LIB(winmm, midiInGetNumDevs, , AC_MSG_ERROR(Windows MIDI support requires the winmm library!) )],)\n\n  # If no api flags specified, use WinMM\n  AS_IF([test \"x${api}\" = \"x\"], [\n    AC_MSG_RESULT(using WinMM)\n    LIBS=\"-lwinmm ${LIBS}\"\n    api=\"${api} -D__WINDOWS_MM__\"\n  ])\n  ;;\n\n  *)\n  # Default case for unknown realtime systems.\n  AC_MSG_ERROR(Unknown system type for MIDI support!)\n  ;;\nesac\n\nCPPFLAGS=\"$CPPFLAGS $api\"\n\nAC_OUTPUT\n\nchmod oug+x rtmidi-config\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/contrib/go/rtmidi/rtmidi.go",
    "content": "package rtmidi\n\n/*\n#cgo CXXFLAGS: -g\n#cgo LDFLAGS: -g\n\n#cgo linux CXXFLAGS: -D__LINUX_ALSA__\n#cgo linux LDFLAGS: -lasound -pthread\n#cgo windows CXXFLAGS: -D__WINDOWS_MM__\n#cgo windows LDFLAGS: -luuid -lksuser -lwinmm -lole32\n#cgo darwin CXXFLAGS: -D__MACOSX_CORE__\n#cgo darwin LDFLAGS: -framework CoreServices -framework CoreAudio -framework CoreMIDI -framework CoreFoundation\n\n#include <stdlib.h>\n#include <stdint.h>\n#include \"rtmidi_stub.h\"\n\nextern void goMIDIInCallback(double ts, unsigned char *msg, size_t msgsz, void *arg);\n\nstatic inline void midiInCallback(double ts, const unsigned char *msg, size_t msgsz, void *arg) {\n\tgoMIDIInCallback(ts, (unsigned char*) msg, msgsz, arg);\n}\n\nstatic inline void cgoSetCallback(RtMidiPtr in, int cb_id) {\n\trtmidi_in_set_callback(in, midiInCallback, (void*)(uintptr_t) cb_id);\n}\n*/\nimport \"C\"\nimport (\n\t\"errors\"\n\t\"sync\"\n\t\"unsafe\"\n)\n\n// API is an enumeration of possible MIDI API specifiers.\ntype API C.enum_RtMidiApi\n\nconst (\n\t// APIUnspecified searches for a working compiled API.\n\tAPIUnspecified API = C.RT_MIDI_API_UNSPECIFIED\n\t// APIMacOSXCore uses Macintosh OS-X Core Midi API.\n\tAPIMacOSXCore = C.RT_MIDI_API_MACOSX_CORE\n\t// APILinuxALSA uses the Advanced Linux Sound Architecture API.\n\tAPILinuxALSA = C.RT_MIDI_API_LINUX_ALSA\n\t// APIUnixJack uses the JACK Low-Latency MIDI Server API.\n\tAPIUnixJack = C.RT_MIDI_API_UNIX_JACK\n\t// APIWindowsMM uses the Microsoft Multimedia MIDI API.\n\tAPIWindowsMM = C.RT_MIDI_API_WINDOWS_MM\n\t// APIDummy is a compilable but non-functional API.\n\tAPIDummy = C.RT_MIDI_API_RTMIDI_DUMMY\n)\n\nfunc (api API) String() string {\n\tswitch api {\n\tcase APIUnspecified:\n\t\treturn \"unspecified\"\n\tcase APILinuxALSA:\n\t\treturn \"alsa\"\n\tcase APIUnixJack:\n\t\treturn \"jack\"\n\tcase APIMacOSXCore:\n\t\treturn \"coreaudio\"\n\tcase APIWindowsMM:\n\t\treturn \"winmm\"\n\tcase APIDummy:\n\t\treturn \"dummy\"\n\t}\n\treturn \"?\"\n}\n\n// CompiledAPI determines the available compiled MIDI APIs.\nfunc CompiledAPI() (apis []API) {\n\tn := C.rtmidi_get_compiled_api(nil)\n\tcapis := make([]C.enum_RtMidiApi, n, n)\n\tC.rtmidi_get_compiled_api(&capis[0])\n\tfor _, capi := range capis {\n\t\tapis = append(apis, API(capi))\n\t}\n\treturn apis\n}\n\n// MIDI interface provides a common, platform-independent API for realtime MIDI\n// device enumeration and handling MIDI ports.\ntype MIDI interface {\n\tOpenPort(port int, name string) error\n\tOpenVirtualPort(name string) error\n\tClose() error\n\tPortCount() (int, error)\n\tPortName(port int) (string, error)\n}\n\n// MIDIIn interface provides a common, platform-independent API for realtime\n// MIDI input. It allows access to a single MIDI input port. Incoming MIDI\n// messages are either saved to a queue for retrieval using the Message()\n// method or immediately passed to a user-specified callback function. Create\n// multiple instances of this class to connect to more than one MIDI device at\n// the same time.\ntype MIDIIn interface {\n\tMIDI\n\tAPI() (API, error)\n\tIgnoreTypes(midiSysex bool, midiTime bool, midiSense bool) error\n\tSetCallback(func(MIDIIn, []byte, float64)) error\n\tCancelCallback() error\n\tMessage() ([]byte, float64, error)\n\tDestroy()\n}\n\n// MIDIOut interface provides a common, platform-independent API for MIDI\n// output. It allows one to probe available MIDI output ports, to connect to\n// one such port, and to send MIDI bytes immediately over the connection.\n// Create multiple instances of this class to connect to more than one MIDI\n// device at the same time.\ntype MIDIOut interface {\n\tMIDI\n\tAPI() (API, error)\n\tSendMessage([]byte) error\n\tDestroy()\n}\n\ntype midi struct {\n\tmidi C.RtMidiPtr\n}\n\nfunc (m *midi) OpenPort(port int, name string) error {\n\tp := C.CString(name)\n\tdefer C.free(unsafe.Pointer(p))\n\tC.rtmidi_open_port(m.midi, C.uint(port), p)\n\tif !m.midi.ok {\n\t\treturn errors.New(C.GoString(m.midi.msg))\n\t}\n\treturn nil\n}\n\nfunc (m *midi) OpenVirtualPort(name string) error {\n\tp := C.CString(name)\n\tdefer C.free(unsafe.Pointer(p))\n\tC.rtmidi_open_virtual_port(m.midi, p)\n\tif !m.midi.ok {\n\t\treturn errors.New(C.GoString(m.midi.msg))\n\t}\n\treturn nil\n}\n\nfunc (m *midi) PortName(port int) (string, error) {\n\tp := C.rtmidi_get_port_name(m.midi, C.uint(port))\n\tif !m.midi.ok {\n\t\treturn \"\", errors.New(C.GoString(m.midi.msg))\n\t}\n\tdefer C.free(unsafe.Pointer(p))\n\treturn C.GoString(p), nil\n}\n\nfunc (m *midi) PortCount() (int, error) {\n\tn := C.rtmidi_get_port_count(m.midi)\n\tif !m.midi.ok {\n\t\treturn 0, errors.New(C.GoString(m.midi.msg))\n\t}\n\treturn int(n), nil\n}\n\nfunc (m *midi) Close() error {\n\tC.rtmidi_close_port(C.RtMidiPtr(m.midi))\n\tif !m.midi.ok {\n\t\treturn errors.New(C.GoString(m.midi.msg))\n\t}\n\treturn nil\n}\n\ntype midiIn struct {\n\tmidi\n\tin C.RtMidiInPtr\n\tcb func(MIDIIn, []byte, float64)\n}\n\ntype midiOut struct {\n\tmidi\n\tout C.RtMidiOutPtr\n}\n\n// NewMIDIInDefault opens a default MIDIIn port.\nfunc NewMIDIInDefault() (MIDIIn, error) {\n\tin := C.rtmidi_in_create_default()\n\tif !in.ok {\n\t\tdefer C.rtmidi_in_free(in)\n\t\treturn nil, errors.New(C.GoString(in.msg))\n\t}\n\treturn &midiIn{in: in, midi: midi{midi: C.RtMidiPtr(in)}}, nil\n}\n\n// NewMIDIIn opens a single MIDIIn port using the given API. One can provide a\n// custom port name and a desired queue size for the incomming MIDI messages.\nfunc NewMIDIIn(api API, name string, queueSize int) (MIDIIn, error) {\n\tp := C.CString(name)\n\tdefer C.free(unsafe.Pointer(p))\n\tin := C.rtmidi_in_create(C.enum_RtMidiApi(api), p, C.uint(queueSize))\n\tif !in.ok {\n\t\tdefer C.rtmidi_in_free(in)\n\t\treturn nil, errors.New(C.GoString(in.msg))\n\t}\n\treturn &midiIn{in: in, midi: midi{midi: C.RtMidiPtr(in)}}, nil\n}\n\nfunc (m *midiIn) API() (API, error) {\n\tapi := C.rtmidi_in_get_current_api(m.in)\n\tif !m.in.ok {\n\t\treturn APIUnspecified, errors.New(C.GoString(m.in.msg))\n\t}\n\treturn API(api), nil\n}\n\nfunc (m *midiIn) Close() error {\n\tunregisterMIDIIn(m)\n\tif err := m.midi.Close(); err != nil {\n\t\treturn err\n\t}\n\tC.rtmidi_in_free(m.in)\n\treturn nil\n}\n\nfunc (m *midiIn) IgnoreTypes(midiSysex bool, midiTime bool, midiSense bool) error {\n\tC.rtmidi_in_ignore_types(m.in, C._Bool(midiSysex), C._Bool(midiTime), C._Bool(midiSense))\n\tif !m.in.ok {\n\t\treturn errors.New(C.GoString(m.in.msg))\n\t}\n\treturn nil\n}\n\nvar (\n\tmu     sync.Mutex\n\tinputs = map[int]*midiIn{}\n)\n\nfunc registerMIDIIn(m *midiIn) int {\n\tmu.Lock()\n\tdefer mu.Unlock()\n\tfor i := 0; ; i++ {\n\t\tif _, ok := inputs[i]; !ok {\n\t\t\tinputs[i] = m\n\t\t\treturn i\n\t\t}\n\t}\n}\n\nfunc unregisterMIDIIn(m *midiIn) {\n\tmu.Lock()\n\tdefer mu.Unlock()\n\tfor i := 0; i < len(inputs); i++ {\n\t\tif inputs[i] == m {\n\t\t\tdelete(inputs, i)\n\t\t\treturn\n\t\t}\n\t}\n}\n\nfunc findMIDIIn(k int) *midiIn {\n\tmu.Lock()\n\tdefer mu.Unlock()\n\treturn inputs[k]\n}\n\n//export goMIDIInCallback\nfunc goMIDIInCallback(ts C.double, msg *C.uchar, msgsz C.size_t, arg unsafe.Pointer) {\n\tk := int(uintptr(arg))\n\tm := findMIDIIn(k)\n\tm.cb(m, C.GoBytes(unsafe.Pointer(msg), C.int(msgsz)), float64(ts))\n}\n\nfunc (m *midiIn) SetCallback(cb func(MIDIIn, []byte, float64)) error {\n\tk := registerMIDIIn(m)\n\tm.cb = cb\n\tC.cgoSetCallback(m.in, C.int(k))\n\tif !m.in.ok {\n\t\treturn errors.New(C.GoString(m.in.msg))\n\t}\n\treturn nil\n}\n\nfunc (m *midiIn) CancelCallback() error {\n\tunregisterMIDIIn(m)\n\tC.rtmidi_in_cancel_callback(m.in)\n\tif !m.in.ok {\n\t\treturn errors.New(C.GoString(m.in.msg))\n\t}\n\treturn nil\n}\n\nfunc (m *midiIn) Message() ([]byte, float64, error) {\n\tmsg := make([]C.uchar, 64*1024, 64*1024)\n\tsz := C.size_t(len(msg))\n\tr := C.rtmidi_in_get_message(m.in, &msg[0], &sz)\n\tif !m.in.ok {\n\t\treturn nil, 0, errors.New(C.GoString(m.in.msg))\n\t}\n\tb := make([]byte, int(sz), int(sz))\n\tfor i, c := range msg[:sz] {\n\t\tb[i] = byte(c)\n\t}\n\treturn b, float64(r), nil\n}\n\nfunc (m *midiIn) Destroy() {\n\tC.rtmidi_in_free(m.in)\n}\n\n// NewMIDIOutDefault opens a default MIDIOut port.\nfunc NewMIDIOutDefault() (MIDIOut, error) {\n\tout := C.rtmidi_out_create_default()\n\tif !out.ok {\n\t\tdefer C.rtmidi_out_free(out)\n\t\treturn nil, errors.New(C.GoString(out.msg))\n\t}\n\treturn &midiOut{out: out, midi: midi{midi: C.RtMidiPtr(out)}}, nil\n}\n\n// NewMIDIOut opens a single MIDIIn port using the given API with the given port name.\nfunc NewMIDIOut(api API, name string) (MIDIOut, error) {\n\tp := C.CString(name)\n\tdefer C.free(unsafe.Pointer(p))\n\tout := C.rtmidi_out_create(C.enum_RtMidiApi(api), p)\n\tif !out.ok {\n\t\tdefer C.rtmidi_out_free(out)\n\t\treturn nil, errors.New(C.GoString(out.msg))\n\t}\n\treturn &midiOut{out: out, midi: midi{midi: C.RtMidiPtr(out)}}, nil\n}\n\nfunc (m *midiOut) API() (API, error) {\n\tapi := C.rtmidi_out_get_current_api(m.out)\n\tif !m.out.ok {\n\t\treturn APIUnspecified, errors.New(C.GoString(m.out.msg))\n\t}\n\treturn API(api), nil\n}\n\nfunc (m *midiOut) Close() error {\n\tif err := m.midi.Close(); err != nil {\n\t\treturn err\n\t}\n\tC.rtmidi_out_free(m.out)\n\treturn nil\n}\n\nfunc (m *midiOut) SendMessage(b []byte) error {\n\tp := C.CBytes(b)\n\tdefer C.free(unsafe.Pointer(p))\n\tC.rtmidi_out_send_message(m.out, (*C.uchar)(p), C.int(len(b)))\n\tif !m.out.ok {\n\t\treturn errors.New(C.GoString(m.out.msg))\n\t}\n\treturn nil\n}\n\nfunc (m *midiOut) Destroy() {\n\tC.rtmidi_out_free(m.out)\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/contrib/go/rtmidi/rtmidi_stub.cpp",
    "content": "#include \"../../../RtMidi.h\"\n\n#include \"../../../RtMidi.cpp\"\n#include \"../../../rtmidi_c.cpp\"\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/contrib/go/rtmidi/rtmidi_stub.h",
    "content": "#include \"../../../rtmidi_c.h\"\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/contrib/go/rtmidi/rtmidi_test.go",
    "content": "package rtmidi\n\nimport (\n\t\"log\"\n)\n\nfunc ExampleCompiledAPI() {\n\tfor _, api := range CompiledAPI() {\n\t\tlog.Println(\"Compiled API: \", api)\n\t}\n}\n\nfunc ExampleMIDIIn_Message() {\n\tin, err := NewMIDIInDefault()\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer in.Destroy()\n\tif err := in.OpenPort(0, \"RtMidi\"); err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer in.Close()\n\n\tfor {\n\t\tm, t, err := in.Message()\n\t\tif len(m) > 0 {\n\t\t\tlog.Println(m, t, err)\n\t\t}\n\t}\n}\n\nfunc ExampleMIDIIn_SetCallback() {\n\tin, err := NewMIDIInDefault()\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer in.Destroy()\n\tif err := in.OpenPort(0, \"RtMidi\"); err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer in.Close()\n\tin.SetCallback(func(m MIDIIn, msg []byte, t float64) {\n\t\tlog.Println(msg, t)\n\t})\n\t<-make(chan struct{})\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/doc/Makefile.am",
    "content": "\nMAINTAINERCLEANFILES=Makefile.in \n\nCLEANFILES=doxygen-build.stamp\n\nDOX=Doxyfile\n\nEXTRA_DIST=html release.txt\n\nINSTIMAGES=html/doxygen.png\n\nDOC_STAMPS=doxygen-build.stamp\n\nDOC_DIR=$(HTML_DIR)\n\nall-local: doxygen-build.stamp\n\ndoxygen-build.stamp: doxygen/$(DOX) $(top_srcdir)/RtMidi.h $(top_srcdir)/rtmidi_c.h\n\t@echo '*** Running doxygen ***'\n\tcd doxygen; $(DOXYGEN) $(DOX)\n\ttouch doxygen-build.stamp\n\nclean-local:\n\trm -f *~ *.bak $(DOC_STAMPS) || true\n\tif test -d html; then rm -fr html; fi\n\tif test -d latex; then rm -fr latex; fi\n\tif test -d man; then rm -fr man; fi\n\ndistclean-local: clean\n\trm -f *.stamp || true\n\tif test -d html; then rm -rf html; fi\n\nhtml-local: $(DOC_STAMPS)\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/doc/doxygen/Doxyfile.in",
    "content": "# Doxyfile 1.8.3.1\n\n# This file describes the settings to be used by the documentation system\n# doxygen (www.doxygen.org) for a project\n#\n# All text after a hash (#) is considered a comment and will be ignored\n# The format is:\n#       TAG = value [value, ...]\n# For lists items can also be appended using:\n#       TAG += value [value, ...]\n# Values that contain spaces should be placed between quotes (\" \")\n\n#---------------------------------------------------------------------------\n# Project related configuration options\n#---------------------------------------------------------------------------\n\n# This tag specifies the encoding used for all characters in the config file \n# that follow. The default is UTF-8 which is also the encoding used for all \n# text before the first occurrence of this tag. Doxygen uses libiconv (or the \n# iconv built into libc) for the transcoding. See \n# http://www.gnu.org/software/libiconv for the list of possible encodings.\n\nDOXYFILE_ENCODING      = UTF-8\n\n# The PROJECT_NAME tag is a single word (or sequence of words) that should \n# identify the project. Note that if you do not use Doxywizard you need \n# to put quotes around the project name if it contains spaces.\n\nPROJECT_NAME           = RtMidi\n\n# The PROJECT_NUMBER tag can be used to enter a project or revision number. \n# This could be handy for archiving the generated documentation or \n# if some version control system is used.\n\nPROJECT_NUMBER         = @PACKAGE_VERSION@\n\n# Using the PROJECT_BRIEF tag one can provide an optional one line description \n# for a project that appears at the top of each page and should give viewer \n# a quick idea about the purpose of the project. Keep the description short.\n\nPROJECT_BRIEF          = \n\n# With the PROJECT_LOGO tag one can specify an logo or icon that is \n# included in the documentation. The maximum height of the logo should not \n# exceed 55 pixels and the maximum width should not exceed 200 pixels. \n# Doxygen will copy the logo to the output directory.\n\nPROJECT_LOGO           = \n\n# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) \n# base path where the generated documentation will be put. \n# If a relative path is entered, it will be relative to the location \n# where doxygen was started. If left blank the current directory will be used.\n\nOUTPUT_DIRECTORY       = .\n\n# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create \n# 4096 sub-directories (in 2 levels) under the output directory of each output \n# format and will distribute the generated files over these directories. \n# Enabling this option can be useful when feeding doxygen a huge amount of \n# source files, where putting all generated files in the same directory would \n# otherwise cause performance problems for the file system.\n\nCREATE_SUBDIRS         = NO\n\n# The OUTPUT_LANGUAGE tag is used to specify the language in which all \n# documentation generated by doxygen is written. Doxygen will use this \n# information to generate all constant output in the proper language. \n# The default language is English, other supported languages are: \n# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, \n# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, \n# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English \n# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, \n# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, \n# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.\n\nOUTPUT_LANGUAGE        = English\n\n# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will \n# include brief member descriptions after the members that are listed in \n# the file and class documentation (similar to JavaDoc). \n# Set to NO to disable this.\n\nBRIEF_MEMBER_DESC      = YES\n\n# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend \n# the brief description of a member or function before the detailed description. \n# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the \n# brief descriptions will be completely suppressed.\n\nREPEAT_BRIEF           = YES\n\n# This tag implements a quasi-intelligent brief description abbreviator \n# that is used to form the text in various listings. Each string \n# in this list, if found as the leading text of the brief description, will be \n# stripped from the text and the result after processing the whole list, is \n# used as the annotated text. Otherwise, the brief description is used as-is. \n# If left blank, the following values are used (\"$name\" is automatically \n# replaced with the name of the entity): \"The $name class\" \"The $name widget\" \n# \"The $name file\" \"is\" \"provides\" \"specifies\" \"contains\" \n# \"represents\" \"a\" \"an\" \"the\"\n\nABBREVIATE_BRIEF       = \n\n# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then \n# Doxygen will generate a detailed section even if there is only a brief \n# description.\n\nALWAYS_DETAILED_SEC    = NO\n\n# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all \n# inherited members of a class in the documentation of that class as if those \n# members were ordinary class members. Constructors, destructors and assignment \n# operators of the base classes will not be shown.\n\nINLINE_INHERITED_MEMB  = NO\n\n# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full \n# path before files name in the file list and in the header files. If set \n# to NO the shortest path that makes the file name unique will be used.\n\nFULL_PATH_NAMES        = NO\n\n# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag \n# can be used to strip a user-defined part of the path. Stripping is \n# only done if one of the specified strings matches the left-hand part of \n# the path. The tag can be used to show relative paths in the file list. \n# If left blank the directory from which doxygen is run is used as the \n# path to strip. Note that you specify absolute paths here, but also \n# relative paths, which will be relative from the directory where doxygen is \n# started.\n\nSTRIP_FROM_PATH        = \n\n# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of \n# the path mentioned in the documentation of a class, which tells \n# the reader which header file to include in order to use a class. \n# If left blank only the name of the header file containing the class \n# definition is used. Otherwise one should specify the include paths that \n# are normally passed to the compiler using the -I flag.\n\nSTRIP_FROM_INC_PATH    = \n\n# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter \n# (but less readable) file names. This can be useful if your file system \n# doesn't support long names like on DOS, Mac, or CD-ROM.\n\nSHORT_NAMES            = NO\n\n# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen \n# will interpret the first line (until the first dot) of a JavaDoc-style \n# comment as the brief description. If set to NO, the JavaDoc \n# comments will behave just like regular Qt-style comments \n# (thus requiring an explicit @brief command for a brief description.)\n\nJAVADOC_AUTOBRIEF      = NO\n\n# If the QT_AUTOBRIEF tag is set to YES then Doxygen will \n# interpret the first line (until the first dot) of a Qt-style \n# comment as the brief description. If set to NO, the comments \n# will behave just like regular Qt-style comments (thus requiring \n# an explicit \\brief command for a brief description.)\n\nQT_AUTOBRIEF           = NO\n\n# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen \n# treat a multi-line C++ special comment block (i.e. a block of //! or /// \n# comments) as a brief description. This used to be the default behaviour. \n# The new default is to treat a multi-line C++ comment block as a detailed \n# description. Set this tag to YES if you prefer the old behaviour instead.\n\nMULTILINE_CPP_IS_BRIEF = NO\n\n# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented \n# member inherits the documentation from any documented member that it \n# re-implements.\n\nINHERIT_DOCS           = YES\n\n# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce \n# a new page for each member. If set to NO, the documentation of a member will \n# be part of the file/class/namespace that contains it.\n\nSEPARATE_MEMBER_PAGES  = NO\n\n# The TAB_SIZE tag can be used to set the number of spaces in a tab. \n# Doxygen uses this value to replace tabs by spaces in code fragments.\n\nTAB_SIZE               = 8\n\n# This tag can be used to specify a number of aliases that acts \n# as commands in the documentation. An alias has the form \"name=value\". \n# For example adding \"sideeffect=\\par Side Effects:\\n\" will allow you to \n# put the command \\sideeffect (or @sideeffect) in the documentation, which \n# will result in a user-defined paragraph with heading \"Side Effects:\". \n# You can put \\n's in the value part of an alias to insert newlines.\n\nALIASES                = \n\n# This tag can be used to specify a number of word-keyword mappings (TCL only). \n# A mapping has the form \"name=value\". For example adding \n# \"class=itcl::class\" will allow you to use the command class in the \n# itcl::class meaning.\n\nTCL_SUBST              = \n\n# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C \n# sources only. Doxygen will then generate output that is more tailored for C. \n# For instance, some of the names that are used will be different. The list \n# of all members will be omitted, etc.\n\nOPTIMIZE_OUTPUT_FOR_C  = NO\n\n# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java \n# sources only. Doxygen will then generate output that is more tailored for \n# Java. For instance, namespaces will be presented as packages, qualified \n# scopes will look different, etc.\n\nOPTIMIZE_OUTPUT_JAVA   = NO\n\n# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran \n# sources only. Doxygen will then generate output that is more tailored for \n# Fortran.\n\nOPTIMIZE_FOR_FORTRAN   = NO\n\n# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL \n# sources. Doxygen will then generate output that is tailored for \n# VHDL.\n\nOPTIMIZE_OUTPUT_VHDL   = NO\n\n# Doxygen selects the parser to use depending on the extension of the files it \n# parses. With this tag you can assign which parser to use for a given \n# extension. Doxygen has a built-in mapping, but you can override or extend it \n# using this tag. The format is ext=language, where ext is a file extension, \n# and language is one of the parsers supported by doxygen: IDL, Java, \n# Javascript, CSharp, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, \n# C++. For instance to make doxygen treat .inc files as Fortran files (default \n# is PHP), and .f files as C (default is Fortran), use: inc=Fortran f=C. Note \n# that for custom extensions you also need to set FILE_PATTERNS otherwise the \n# files are not read by doxygen.\n\nEXTENSION_MAPPING      = \n\n# If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all \n# comments according to the Markdown format, which allows for more readable \n# documentation. See http://daringfireball.net/projects/markdown/ for details. \n# The output of markdown processing is further processed by doxygen, so you \n# can mix doxygen, HTML, and XML commands with Markdown formatting. \n# Disable only in case of backward compatibilities issues.\n\nMARKDOWN_SUPPORT       = YES\n\n# When enabled doxygen tries to link words that correspond to documented classes, \n# or namespaces to their corresponding documentation. Such a link can be \n# prevented in individual cases by by putting a % sign in front of the word or \n# globally by setting AUTOLINK_SUPPORT to NO.\n\nAUTOLINK_SUPPORT       = YES\n\n# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want \n# to include (a tag file for) the STL sources as input, then you should \n# set this tag to YES in order to let doxygen match functions declarations and \n# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. \n# func(std::string) {}). This also makes the inheritance and collaboration \n# diagrams that involve STL classes more complete and accurate.\n\nBUILTIN_STL_SUPPORT    = NO\n\n# If you use Microsoft's C++/CLI language, you should set this option to YES to \n# enable parsing support.\n\nCPP_CLI_SUPPORT        = NO\n\n# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. \n# Doxygen will parse them like normal C++ but will assume all classes use public \n# instead of private inheritance when no explicit protection keyword is present.\n\nSIP_SUPPORT            = NO\n\n# For Microsoft's IDL there are propget and propput attributes to indicate \n# getter and setter methods for a property. Setting this option to YES (the \n# default) will make doxygen replace the get and set methods by a property in \n# the documentation. This will only work if the methods are indeed getting or \n# setting a simple type. If this is not the case, or you want to show the \n# methods anyway, you should set this option to NO.\n\nIDL_PROPERTY_SUPPORT   = YES\n\n# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC \n# tag is set to YES, then doxygen will reuse the documentation of the first \n# member in the group (if any) for the other members of the group. By default \n# all members of a group must be documented explicitly.\n\nDISTRIBUTE_GROUP_DOC   = NO\n\n# Set the SUBGROUPING tag to YES (the default) to allow class member groups of \n# the same type (for instance a group of public functions) to be put as a \n# subgroup of that type (e.g. under the Public Functions section). Set it to \n# NO to prevent subgrouping. Alternatively, this can be done per class using \n# the \\nosubgrouping command.\n\nSUBGROUPING            = YES\n\n# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and \n# unions are shown inside the group in which they are included (e.g. using \n# @ingroup) instead of on a separate page (for HTML and Man pages) or \n# section (for LaTeX and RTF).\n\nINLINE_GROUPED_CLASSES = NO\n\n# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and \n# unions with only public data fields will be shown inline in the documentation \n# of the scope in which they are defined (i.e. file, namespace, or group \n# documentation), provided this scope is documented. If set to NO (the default), \n# structs, classes, and unions are shown on a separate page (for HTML and Man \n# pages) or section (for LaTeX and RTF).\n\nINLINE_SIMPLE_STRUCTS  = NO\n\n# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum \n# is documented as struct, union, or enum with the name of the typedef. So \n# typedef struct TypeS {} TypeT, will appear in the documentation as a struct \n# with name TypeT. When disabled the typedef will appear as a member of a file, \n# namespace, or class. And the struct will be named TypeS. This can typically \n# be useful for C code in case the coding convention dictates that all compound \n# types are typedef'ed and only the typedef is referenced, never the tag name.\n\nTYPEDEF_HIDES_STRUCT   = NO\n\n# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to \n# determine which symbols to keep in memory and which to flush to disk. \n# When the cache is full, less often used symbols will be written to disk. \n# For small to medium size projects (<1000 input files) the default value is \n# probably good enough. For larger projects a too small cache size can cause \n# doxygen to be busy swapping symbols to and from disk most of the time \n# causing a significant performance penalty. \n# If the system has enough physical memory increasing the cache will improve the \n# performance by keeping more symbols in memory. Note that the value works on \n# a logarithmic scale so increasing the size by one will roughly double the \n# memory usage. The cache size is given by this formula: \n# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, \n# corresponding to a cache size of 2^16 = 65536 symbols.\n\nSYMBOL_CACHE_SIZE      = 0\n\n# Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be \n# set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given \n# their name and scope. Since this can be an expensive process and often the \n# same symbol appear multiple times in the code, doxygen keeps a cache of \n# pre-resolved symbols. If the cache is too small doxygen will become slower. \n# If the cache is too large, memory is wasted. The cache size is given by this \n# formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, \n# corresponding to a cache size of 2^16 = 65536 symbols.\n\nLOOKUP_CACHE_SIZE      = 0\n\n#---------------------------------------------------------------------------\n# Build related configuration options\n#---------------------------------------------------------------------------\n\n# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in \n# documentation are documented, even if no documentation was available. \n# Private class members and static file members will be hidden unless \n# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES\n\nEXTRACT_ALL            = NO\n\n# If the EXTRACT_PRIVATE tag is set to YES all private members of a class \n# will be included in the documentation.\n\nEXTRACT_PRIVATE        = NO\n\n# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal \n# scope will be included in the documentation.\n\nEXTRACT_PACKAGE        = NO\n\n# If the EXTRACT_STATIC tag is set to YES all static members of a file \n# will be included in the documentation.\n\nEXTRACT_STATIC         = NO\n\n# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) \n# defined locally in source files will be included in the documentation. \n# If set to NO only classes defined in header files are included.\n\nEXTRACT_LOCAL_CLASSES  = YES\n\n# This flag is only useful for Objective-C code. When set to YES local \n# methods, which are defined in the implementation section but not in \n# the interface are included in the documentation. \n# If set to NO (the default) only methods in the interface are included.\n\nEXTRACT_LOCAL_METHODS  = NO\n\n# If this flag is set to YES, the members of anonymous namespaces will be \n# extracted and appear in the documentation as a namespace called \n# 'anonymous_namespace{file}', where file will be replaced with the base \n# name of the file that contains the anonymous namespace. By default \n# anonymous namespaces are hidden.\n\nEXTRACT_ANON_NSPACES   = NO\n\n# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all \n# undocumented members of documented classes, files or namespaces. \n# If set to NO (the default) these members will be included in the \n# various overviews, but no documentation section is generated. \n# This option has no effect if EXTRACT_ALL is enabled.\n\nHIDE_UNDOC_MEMBERS     = YES\n\n# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all \n# undocumented classes that are normally visible in the class hierarchy. \n# If set to NO (the default) these classes will be included in the various \n# overviews. This option has no effect if EXTRACT_ALL is enabled.\n\nHIDE_UNDOC_CLASSES     = NO\n\n# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all \n# friend (class|struct|union) declarations. \n# If set to NO (the default) these declarations will be included in the \n# documentation.\n\nHIDE_FRIEND_COMPOUNDS  = NO\n\n# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any \n# documentation blocks found inside the body of a function. \n# If set to NO (the default) these blocks will be appended to the \n# function's detailed documentation block.\n\nHIDE_IN_BODY_DOCS      = NO\n\n# The INTERNAL_DOCS tag determines if documentation \n# that is typed after a \\internal command is included. If the tag is set \n# to NO (the default) then the documentation will be excluded. \n# Set it to YES to include the internal documentation.\n\nINTERNAL_DOCS          = NO\n\n# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate \n# file names in lower-case letters. If set to YES upper-case letters are also \n# allowed. This is useful if you have classes or files whose names only differ \n# in case and if your file system supports case sensitive file names. Windows \n# and Mac users are advised to set this option to NO.\n\nCASE_SENSE_NAMES       = YES\n\n# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen \n# will show members with their full class and namespace scopes in the \n# documentation. If set to YES the scope will be hidden.\n\nHIDE_SCOPE_NAMES       = NO\n\n# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen \n# will put a list of the files that are included by a file in the documentation \n# of that file.\n\nSHOW_INCLUDE_FILES     = YES\n\n# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen \n# will list include files with double quotes in the documentation \n# rather than with sharp brackets.\n\nFORCE_LOCAL_INCLUDES   = NO\n\n# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] \n# is inserted in the documentation for inline members.\n\nINLINE_INFO            = YES\n\n# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen \n# will sort the (detailed) documentation of file and class members \n# alphabetically by member name. If set to NO the members will appear in \n# declaration order.\n\nSORT_MEMBER_DOCS       = NO\n\n# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the \n# brief documentation of file, namespace and class members alphabetically \n# by member name. If set to NO (the default) the members will appear in \n# declaration order.\n\nSORT_BRIEF_DOCS        = NO\n\n# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen \n# will sort the (brief and detailed) documentation of class members so that \n# constructors and destructors are listed first. If set to NO (the default) \n# the constructors will appear in the respective orders defined by \n# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. \n# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO \n# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.\n\nSORT_MEMBERS_CTORS_1ST = NO\n\n# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the \n# hierarchy of group names into alphabetical order. If set to NO (the default) \n# the group names will appear in their defined order.\n\nSORT_GROUP_NAMES       = NO\n\n# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be \n# sorted by fully-qualified names, including namespaces. If set to \n# NO (the default), the class list will be sorted only by class name, \n# not including the namespace part. \n# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. \n# Note: This option applies only to the class list, not to the \n# alphabetical list.\n\nSORT_BY_SCOPE_NAME     = NO\n\n# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to \n# do proper type resolution of all parameters of a function it will reject a \n# match between the prototype and the implementation of a member function even \n# if there is only one candidate or it is obvious which candidate to choose \n# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen \n# will still accept a match between prototype and implementation in such cases.\n\nSTRICT_PROTO_MATCHING  = NO\n\n# The GENERATE_TODOLIST tag can be used to enable (YES) or \n# disable (NO) the todo list. This list is created by putting \\todo \n# commands in the documentation.\n\nGENERATE_TODOLIST      = YES\n\n# The GENERATE_TESTLIST tag can be used to enable (YES) or \n# disable (NO) the test list. This list is created by putting \\test \n# commands in the documentation.\n\nGENERATE_TESTLIST      = YES\n\n# The GENERATE_BUGLIST tag can be used to enable (YES) or \n# disable (NO) the bug list. This list is created by putting \\bug \n# commands in the documentation.\n\nGENERATE_BUGLIST       = YES\n\n# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or \n# disable (NO) the deprecated list. This list is created by putting \n# \\deprecated commands in the documentation.\n\nGENERATE_DEPRECATEDLIST= YES\n\n# The ENABLED_SECTIONS tag can be used to enable conditional \n# documentation sections, marked by \\if section-label ... \\endif \n# and \\cond section-label ... \\endcond blocks.\n\nENABLED_SECTIONS       = \n\n# The MAX_INITIALIZER_LINES tag determines the maximum number of lines \n# the initial value of a variable or macro consists of for it to appear in \n# the documentation. If the initializer consists of more lines than specified \n# here it will be hidden. Use a value of 0 to hide initializers completely. \n# The appearance of the initializer of individual variables and macros in the \n# documentation can be controlled using \\showinitializer or \\hideinitializer \n# command in the documentation regardless of this setting.\n\nMAX_INITIALIZER_LINES  = 30\n\n# Set the SHOW_USED_FILES tag to NO to disable the list of files generated \n# at the bottom of the documentation of classes and structs. If set to YES the \n# list will mention the files that were used to generate the documentation.\n\nSHOW_USED_FILES        = YES\n\n# Set the SHOW_FILES tag to NO to disable the generation of the Files page. \n# This will remove the Files entry from the Quick Index and from the \n# Folder Tree View (if specified). The default is YES.\n\nSHOW_FILES             = YES\n\n# Set the SHOW_NAMESPACES tag to NO to disable the generation of the \n# Namespaces page.  This will remove the Namespaces entry from the Quick Index \n# and from the Folder Tree View (if specified). The default is YES.\n\nSHOW_NAMESPACES        = YES\n\n# The FILE_VERSION_FILTER tag can be used to specify a program or script that \n# doxygen should invoke to get the current version for each file (typically from \n# the version control system). Doxygen will invoke the program by executing (via \n# popen()) the command <command> <input-file>, where <command> is the value of \n# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file \n# provided by doxygen. Whatever the program writes to standard output \n# is used as the file version. See the manual for examples.\n\nFILE_VERSION_FILTER    = \n\n# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed \n# by doxygen. The layout file controls the global structure of the generated \n# output files in an output format independent way. To create the layout file \n# that represents doxygen's defaults, run doxygen with the -l option. \n# You can optionally specify a file name after the option, if omitted \n# DoxygenLayout.xml will be used as the name of the layout file.\n\nLAYOUT_FILE            = \n\n# The CITE_BIB_FILES tag can be used to specify one or more bib files \n# containing the references data. This must be a list of .bib files. The \n# .bib extension is automatically appended if omitted. Using this command \n# requires the bibtex tool to be installed. See also \n# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style \n# of the bibliography can be controlled using LATEX_BIB_STYLE. To use this \n# feature you need bibtex and perl available in the search path. Do not use \n# file names with spaces, bibtex cannot handle them.\n\nCITE_BIB_FILES         = \n\n#---------------------------------------------------------------------------\n# configuration options related to warning and progress messages\n#---------------------------------------------------------------------------\n\n# The QUIET tag can be used to turn on/off the messages that are generated \n# by doxygen. Possible values are YES and NO. If left blank NO is used.\n\nQUIET                  = NO\n\n# The WARNINGS tag can be used to turn on/off the warning messages that are \n# generated by doxygen. Possible values are YES and NO. If left blank \n# NO is used.\n\nWARNINGS               = YES\n\n# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings \n# for undocumented members. If EXTRACT_ALL is set to YES then this flag will \n# automatically be disabled.\n\nWARN_IF_UNDOCUMENTED   = YES\n\n# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for \n# potential errors in the documentation, such as not documenting some \n# parameters in a documented function, or documenting parameters that \n# don't exist or using markup commands wrongly.\n\nWARN_IF_DOC_ERROR      = YES\n\n# The WARN_NO_PARAMDOC option can be enabled to get warnings for \n# functions that are documented, but have no documentation for their parameters \n# or return value. If set to NO (the default) doxygen will only warn about \n# wrong or incomplete parameter documentation, but not about the absence of \n# documentation.\n\nWARN_NO_PARAMDOC       = NO\n\n# The WARN_FORMAT tag determines the format of the warning messages that \n# doxygen can produce. The string should contain the $file, $line, and $text \n# tags, which will be replaced by the file and line number from which the \n# warning originated and the warning text. Optionally the format may contain \n# $version, which will be replaced by the version of the file (if it could \n# be obtained via FILE_VERSION_FILTER)\n\nWARN_FORMAT            = \"$file:$line: $text\"\n\n# The WARN_LOGFILE tag can be used to specify a file to which warning \n# and error messages should be written. If left blank the output is written \n# to stderr.\n\nWARN_LOGFILE           = \n\n#---------------------------------------------------------------------------\n# configuration options related to the input files\n#---------------------------------------------------------------------------\n\n# The INPUT tag can be used to specify the files and/or directories that contain \n# documented source files. You may enter file names like \"myfile.cpp\" or \n# directories like \"/usr/src/myproject\". Separate the files or directories \n# with spaces.\n\nINPUT                  = tutorial.txt \\\n                         ../../RtMidi.h \\\n                         ../../RtError.h\n\n# This tag can be used to specify the character encoding of the source files \n# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is \n# also the default input encoding. Doxygen uses libiconv (or the iconv built \n# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for \n# the list of possible encodings.\n\nINPUT_ENCODING         = UTF-8\n\n# If the value of the INPUT tag contains directories, you can use the \n# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp \n# and *.h) to filter out the source-files in the directories. If left \n# blank the following patterns are tested: \n# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh \n# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py \n# *.f90 *.f *.for *.vhd *.vhdl\n\nFILE_PATTERNS          = \n\n# The RECURSIVE tag can be used to turn specify whether or not subdirectories \n# should be searched for input files as well. Possible values are YES and NO. \n# If left blank NO is used.\n\nRECURSIVE              = NO\n\n# The EXCLUDE tag can be used to specify files and/or directories that should be \n# excluded from the INPUT source files. This way you can easily exclude a \n# subdirectory from a directory tree whose root is specified with the INPUT tag. \n# Note that relative paths are relative to the directory from which doxygen is \n# run.\n\nEXCLUDE                = \n\n# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or \n# directories that are symbolic links (a Unix file system feature) are excluded \n# from the input.\n\nEXCLUDE_SYMLINKS       = NO\n\n# If the value of the INPUT tag contains directories, you can use the \n# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude \n# certain files from those directories. Note that the wildcards are matched \n# against the file with absolute path, so to exclude all test directories \n# for example use the pattern */test/*\n\nEXCLUDE_PATTERNS       = \n\n# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names \n# (namespaces, classes, functions, etc.) that should be excluded from the \n# output. The symbol name can be a fully qualified name, a word, or if the \n# wildcard * is used, a substring. Examples: ANamespace, AClass, \n# AClass::ANamespace, ANamespace::*Test\n\nEXCLUDE_SYMBOLS        = \n\n# The EXAMPLE_PATH tag can be used to specify one or more files or \n# directories that contain example code fragments that are included (see \n# the \\include command).\n\nEXAMPLE_PATH           = samples\n\n# If the value of the EXAMPLE_PATH tag contains directories, you can use the \n# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp \n# and *.h) to filter out the source-files in the directories. If left \n# blank all files are included.\n\nEXAMPLE_PATTERNS       = \n\n# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be \n# searched for input files to be used with the \\include or \\dontinclude \n# commands irrespective of the value of the RECURSIVE tag. \n# Possible values are YES and NO. If left blank NO is used.\n\nEXAMPLE_RECURSIVE      = NO\n\n# The IMAGE_PATH tag can be used to specify one or more files or \n# directories that contain image that are included in the documentation (see \n# the \\image command).\n\nIMAGE_PATH             = \n\n# The INPUT_FILTER tag can be used to specify a program that doxygen should \n# invoke to filter for each input file. Doxygen will invoke the filter program \n# by executing (via popen()) the command <filter> <input-file>, where <filter> \n# is the value of the INPUT_FILTER tag, and <input-file> is the name of an \n# input file. Doxygen will then use the output that the filter program writes \n# to standard output.  If FILTER_PATTERNS is specified, this tag will be \n# ignored.\n\nINPUT_FILTER           = \n\n# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern \n# basis.  Doxygen will compare the file name with each pattern and apply the \n# filter if there is a match.  The filters are a list of the form: \n# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further \n# info on how filters are used. If FILTER_PATTERNS is empty or if \n# non of the patterns match the file name, INPUT_FILTER is applied.\n\nFILTER_PATTERNS        = \n\n# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using \n# INPUT_FILTER) will be used to filter the input files when producing source \n# files to browse (i.e. when SOURCE_BROWSER is set to YES).\n\nFILTER_SOURCE_FILES    = NO\n\n# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file \n# pattern. A pattern will override the setting for FILTER_PATTERN (if any) \n# and it is also possible to disable source filtering for a specific pattern \n# using *.ext= (so without naming a filter). This option only has effect when \n# FILTER_SOURCE_FILES is enabled.\n\nFILTER_SOURCE_PATTERNS = \n\n# If the USE_MD_FILE_AS_MAINPAGE tag refers to the name of a markdown file that \n# is part of the input, its contents will be placed on the main page (index.html). \n# This can be useful if you have a project on for instance GitHub and want reuse \n# the introduction page also for the doxygen output.\n\nUSE_MDFILE_AS_MAINPAGE = \n\n#---------------------------------------------------------------------------\n# configuration options related to source browsing\n#---------------------------------------------------------------------------\n\n# If the SOURCE_BROWSER tag is set to YES then a list of source files will \n# be generated. Documented entities will be cross-referenced with these sources. \n# Note: To get rid of all source code in the generated output, make sure also \n# VERBATIM_HEADERS is set to NO.\n\nSOURCE_BROWSER         = NO\n\n# Setting the INLINE_SOURCES tag to YES will include the body \n# of functions and classes directly in the documentation.\n\nINLINE_SOURCES         = NO\n\n# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct \n# doxygen to hide any special comment blocks from generated source code \n# fragments. Normal C, C++ and Fortran comments will always remain visible.\n\nSTRIP_CODE_COMMENTS    = YES\n\n# If the REFERENCED_BY_RELATION tag is set to YES \n# then for each documented function all documented \n# functions referencing it will be listed.\n\nREFERENCED_BY_RELATION = YES\n\n# If the REFERENCES_RELATION tag is set to YES \n# then for each documented function all documented entities \n# called/used by that function will be listed.\n\nREFERENCES_RELATION    = YES\n\n# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) \n# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from \n# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will \n# link to the source code.  Otherwise they will link to the documentation.\n\nREFERENCES_LINK_SOURCE = YES\n\n# If the USE_HTAGS tag is set to YES then the references to source code \n# will point to the HTML generated by the htags(1) tool instead of doxygen \n# built-in source browser. The htags tool is part of GNU's global source \n# tagging system (see http://www.gnu.org/software/global/global.html). You \n# will need version 4.8.6 or higher.\n\nUSE_HTAGS              = NO\n\n# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen \n# will generate a verbatim copy of the header file for each class for \n# which an include is specified. Set to NO to disable this.\n\nVERBATIM_HEADERS       = YES\n\n#---------------------------------------------------------------------------\n# configuration options related to the alphabetical class index\n#---------------------------------------------------------------------------\n\n# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index \n# of all compounds will be generated. Enable this if the project \n# contains a lot of classes, structs, unions or interfaces.\n\nALPHABETICAL_INDEX     = NO\n\n# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then \n# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns \n# in which this list will be split (can be a number in the range [1..20])\n\nCOLS_IN_ALPHA_INDEX    = 5\n\n# In case all classes in a project start with a common prefix, all \n# classes will be put under the same header in the alphabetical index. \n# The IGNORE_PREFIX tag can be used to specify one or more prefixes that \n# should be ignored while generating the index headers.\n\nIGNORE_PREFIX          = \n\n#---------------------------------------------------------------------------\n# configuration options related to the HTML output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_HTML tag is set to YES (the default) Doxygen will \n# generate HTML output.\n\nGENERATE_HTML          = YES\n\n# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. \n# If a relative path is entered the value of OUTPUT_DIRECTORY will be \n# put in front of it. If left blank `html' will be used as the default path.\n\nHTML_OUTPUT            = ../html\n\n# The HTML_FILE_EXTENSION tag can be used to specify the file extension for \n# each generated HTML page (for example: .htm,.php,.asp). If it is left blank \n# doxygen will generate files with .html extension.\n\nHTML_FILE_EXTENSION    = .html\n\n# The HTML_HEADER tag can be used to specify a personal HTML header for \n# each generated HTML page. If it is left blank doxygen will generate a \n# standard header. Note that when using a custom header you are responsible  \n# for the proper inclusion of any scripts and style sheets that doxygen \n# needs, which is dependent on the configuration options used. \n# It is advised to generate a default header using \"doxygen -w html \n# header.html footer.html stylesheet.css YourConfigFile\" and then modify \n# that header. Note that the header is subject to change so you typically \n# have to redo this when upgrading to a newer version of doxygen or when \n# changing the value of configuration settings such as GENERATE_TREEVIEW!\n\nHTML_HEADER            = header.html\n\n# The HTML_FOOTER tag can be used to specify a personal HTML footer for \n# each generated HTML page. If it is left blank doxygen will generate a \n# standard footer.\n\nHTML_FOOTER            = footer.html\n\n# The HTML_STYLESHEET tag can be used to specify a user-defined cascading \n# style sheet that is used by each HTML page. It can be used to \n# fine-tune the look of the HTML output. If left blank doxygen will \n# generate a default style sheet. Note that it is recommended to use \n# HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this \n# tag will in the future become obsolete.\n\nHTML_STYLESHEET        = \n\n# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional \n# user-defined cascading style sheet that is included after the standard \n# style sheets created by doxygen. Using this option one can overrule \n# certain style aspects. This is preferred over using HTML_STYLESHEET \n# since it does not replace the standard style sheet and is therefor more \n# robust against future updates. Doxygen will copy the style sheet file to \n# the output directory.\n\nHTML_EXTRA_STYLESHEET  = \n\n# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or \n# other source files which should be copied to the HTML output directory. Note \n# that these files will be copied to the base HTML output directory. Use the \n# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these \n# files. In the HTML_STYLESHEET file, use the file name only. Also note that \n# the files will be copied as-is; there are no commands or markers available.\n\nHTML_EXTRA_FILES       = \n\n# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. \n# Doxygen will adjust the colors in the style sheet and background images \n# according to this color. Hue is specified as an angle on a colorwheel, \n# see http://en.wikipedia.org/wiki/Hue for more information. \n# For instance the value 0 represents red, 60 is yellow, 120 is green, \n# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. \n# The allowed range is 0 to 359.\n\nHTML_COLORSTYLE_HUE    = 220\n\n# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of \n# the colors in the HTML output. For a value of 0 the output will use \n# grayscales only. A value of 255 will produce the most vivid colors.\n\nHTML_COLORSTYLE_SAT    = 100\n\n# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to \n# the luminance component of the colors in the HTML output. Values below \n# 100 gradually make the output lighter, whereas values above 100 make \n# the output darker. The value divided by 100 is the actual gamma applied, \n# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, \n# and 100 does not change the gamma.\n\nHTML_COLORSTYLE_GAMMA  = 80\n\n# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML \n# page will contain the date and time when the page was generated. Setting \n# this to NO can help when comparing the output of multiple runs.\n\nHTML_TIMESTAMP         = NO\n\n# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML \n# documentation will contain sections that can be hidden and shown after the \n# page has loaded.\n\nHTML_DYNAMIC_SECTIONS  = NO\n\n# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of \n# entries shown in the various tree structured indices initially; the user \n# can expand and collapse entries dynamically later on. Doxygen will expand \n# the tree to such a level that at most the specified number of entries are \n# visible (unless a fully collapsed tree already exceeds this amount). \n# So setting the number of entries 1 will produce a full collapsed tree by \n# default. 0 is a special value representing an infinite number of entries \n# and will result in a full expanded tree by default.\n\nHTML_INDEX_NUM_ENTRIES = 100\n\n# If the GENERATE_DOCSET tag is set to YES, additional index files \n# will be generated that can be used as input for Apple's Xcode 3 \n# integrated development environment, introduced with OSX 10.5 (Leopard). \n# To create a documentation set, doxygen will generate a Makefile in the \n# HTML output directory. Running make will produce the docset in that \n# directory and running \"make install\" will install the docset in \n# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find \n# it at startup. \n# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html \n# for more information.\n\nGENERATE_DOCSET        = NO\n\n# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the \n# feed. A documentation feed provides an umbrella under which multiple \n# documentation sets from a single provider (such as a company or product suite) \n# can be grouped.\n\nDOCSET_FEEDNAME        = \"Doxygen generated docs\"\n\n# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that \n# should uniquely identify the documentation set bundle. This should be a \n# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen \n# will append .docset to the name.\n\nDOCSET_BUNDLE_ID       = org.doxygen.Project\n\n# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely \n# identify the documentation publisher. This should be a reverse domain-name \n# style string, e.g. com.mycompany.MyDocSet.documentation.\n\nDOCSET_PUBLISHER_ID    = org.doxygen.Publisher\n\n# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher.\n\nDOCSET_PUBLISHER_NAME  = Publisher\n\n# If the GENERATE_HTMLHELP tag is set to YES, additional index files \n# will be generated that can be used as input for tools like the \n# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) \n# of the generated HTML documentation.\n\nGENERATE_HTMLHELP      = NO\n\n# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can \n# be used to specify the file name of the resulting .chm file. You \n# can add a path in front of the file if the result should not be \n# written to the html output directory.\n\nCHM_FILE               = \n\n# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can \n# be used to specify the location (absolute path including file name) of \n# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run \n# the HTML help compiler on the generated index.hhp.\n\nHHC_LOCATION           = \n\n# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag \n# controls if a separate .chi index file is generated (YES) or that \n# it should be included in the master .chm file (NO).\n\nGENERATE_CHI           = NO\n\n# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING \n# is used to encode HtmlHelp index (hhk), content (hhc) and project file \n# content.\n\nCHM_INDEX_ENCODING     = \n\n# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag \n# controls whether a binary table of contents is generated (YES) or a \n# normal table of contents (NO) in the .chm file.\n\nBINARY_TOC             = NO\n\n# The TOC_EXPAND flag can be set to YES to add extra items for group members \n# to the contents of the HTML help documentation and to the tree view.\n\nTOC_EXPAND             = NO\n\n# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and \n# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated \n# that can be used as input for Qt's qhelpgenerator to generate a \n# Qt Compressed Help (.qch) of the generated HTML documentation.\n\nGENERATE_QHP           = NO\n\n# If the QHG_LOCATION tag is specified, the QCH_FILE tag can \n# be used to specify the file name of the resulting .qch file. \n# The path specified is relative to the HTML output folder.\n\nQCH_FILE               = \n\n# The QHP_NAMESPACE tag specifies the namespace to use when generating \n# Qt Help Project output. For more information please see \n# http://doc.trolltech.com/qthelpproject.html#namespace\n\nQHP_NAMESPACE          = org.doxygen.Project\n\n# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating \n# Qt Help Project output. For more information please see \n# http://doc.trolltech.com/qthelpproject.html#virtual-folders\n\nQHP_VIRTUAL_FOLDER     = doc\n\n# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to \n# add. For more information please see \n# http://doc.trolltech.com/qthelpproject.html#custom-filters\n\nQHP_CUST_FILTER_NAME   = \n\n# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the \n# custom filter to add. For more information please see \n# <a href=\"http://doc.trolltech.com/qthelpproject.html#custom-filters\"> \n# Qt Help Project / Custom Filters</a>.\n\nQHP_CUST_FILTER_ATTRS  = \n\n# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this \n# project's \n# filter section matches. \n# <a href=\"http://doc.trolltech.com/qthelpproject.html#filter-attributes\"> \n# Qt Help Project / Filter Attributes</a>.\n\nQHP_SECT_FILTER_ATTRS  = \n\n# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can \n# be used to specify the location of Qt's qhelpgenerator. \n# If non-empty doxygen will try to run qhelpgenerator on the generated \n# .qhp file.\n\nQHG_LOCATION           = \n\n# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files  \n# will be generated, which together with the HTML files, form an Eclipse help \n# plugin. To install this plugin and make it available under the help contents \n# menu in Eclipse, the contents of the directory containing the HTML and XML \n# files needs to be copied into the plugins directory of eclipse. The name of \n# the directory within the plugins directory should be the same as \n# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before \n# the help appears.\n\nGENERATE_ECLIPSEHELP   = NO\n\n# A unique identifier for the eclipse help plugin. When installing the plugin \n# the directory name containing the HTML and XML files should also have \n# this name.\n\nECLIPSE_DOC_ID         = org.doxygen.Project\n\n# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) \n# at top of each HTML page. The value NO (the default) enables the index and \n# the value YES disables it. Since the tabs have the same information as the \n# navigation tree you can set this option to NO if you already set \n# GENERATE_TREEVIEW to YES.\n\nDISABLE_INDEX          = YES\n\n# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index \n# structure should be generated to display hierarchical information. \n# If the tag value is set to YES, a side panel will be generated \n# containing a tree-like index structure (just like the one that \n# is generated for HTML Help). For this to work a browser that supports \n# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). \n# Windows users are probably better off using the HTML help feature. \n# Since the tree basically has the same information as the tab index you \n# could consider to set DISABLE_INDEX to NO when enabling this option.\n\nGENERATE_TREEVIEW      = NO\n\n# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values \n# (range [0,1..20]) that doxygen will group on one line in the generated HTML \n# documentation. Note that a value of 0 will completely suppress the enum \n# values from appearing in the overview section.\n\nENUM_VALUES_PER_LINE   = 4\n\n# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be \n# used to set the initial width (in pixels) of the frame in which the tree \n# is shown.\n\nTREEVIEW_WIDTH         = 250\n\n# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open \n# links to external symbols imported via tag files in a separate window.\n\nEXT_LINKS_IN_WINDOW    = NO\n\n# Use this tag to change the font size of Latex formulas included \n# as images in the HTML documentation. The default is 10. Note that \n# when you change the font size after a successful doxygen run you need \n# to manually remove any form_*.png images from the HTML output directory \n# to force them to be regenerated.\n\nFORMULA_FONTSIZE       = 10\n\n# Use the FORMULA_TRANPARENT tag to determine whether or not the images \n# generated for formulas are transparent PNGs. Transparent PNGs are \n# not supported properly for IE 6.0, but are supported on all modern browsers. \n# Note that when changing this option you need to delete any form_*.png files \n# in the HTML output before the changes have effect.\n\nFORMULA_TRANSPARENT    = YES\n\n# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax \n# (see http://www.mathjax.org) which uses client side Javascript for the \n# rendering instead of using prerendered bitmaps. Use this if you do not \n# have LaTeX installed or if you want to formulas look prettier in the HTML \n# output. When enabled you may also need to install MathJax separately and \n# configure the path to it using the MATHJAX_RELPATH option.\n\nUSE_MATHJAX            = NO\n\n# When MathJax is enabled you can set the default output format to be used for \n# thA MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and \n# SVG. The default value is HTML-CSS, which is slower, but has the best \n# compatibility.\n\nMATHJAX_FORMAT         = HTML-CSS\n\n# When MathJax is enabled you need to specify the location relative to the \n# HTML output directory using the MATHJAX_RELPATH option. The destination \n# directory should contain the MathJax.js script. For instance, if the mathjax \n# directory is located at the same level as the HTML output directory, then \n# MATHJAX_RELPATH should be ../mathjax. The default value points to \n# the MathJax Content Delivery Network so you can quickly see the result without \n# installing MathJax.  However, it is strongly recommended to install a local \n# copy of MathJax from http://www.mathjax.org before deployment.\n\nMATHJAX_RELPATH        = http://cdn.mathjax.org/mathjax/latest\n\n# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension \n# names that should be enabled during MathJax rendering.\n\nMATHJAX_EXTENSIONS     = \n\n# When the SEARCHENGINE tag is enabled doxygen will generate a search box \n# for the HTML output. The underlying search engine uses javascript \n# and DHTML and should work on any modern browser. Note that when using \n# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets \n# (GENERATE_DOCSET) there is already a search function so this one should \n# typically be disabled. For large projects the javascript based search engine \n# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.\n\nSEARCHENGINE           = NO\n\n# When the SERVER_BASED_SEARCH tag is enabled the search engine will be \n# implemented using a web server instead of a web client using Javascript. \n# There are two flavours of web server based search depending on the \n# EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for \n# searching and an index file used by the script. When EXTERNAL_SEARCH is \n# enabled the indexing and searching needs to be provided by external tools. \n# See the manual for details.\n\nSERVER_BASED_SEARCH    = NO\n\n# When EXTERNAL_SEARCH is enabled doxygen will no longer generate the PHP \n# script for searching. Instead the search results are written to an XML file \n# which needs to be processed by an external indexer. Doxygen will invoke an \n# external search engine pointed to by the SEARCHENGINE_URL option to obtain \n# the search results. Doxygen ships with an example indexer (doxyindexer) and \n# search engine (doxysearch.cgi) which are based on the open source search engine \n# library Xapian. See the manual for configuration details.\n\nEXTERNAL_SEARCH        = NO\n\n# The SEARCHENGINE_URL should point to a search engine hosted by a web server \n# which will returned the search results when EXTERNAL_SEARCH is enabled. \n# Doxygen ships with an example search engine (doxysearch) which is based on \n# the open source search engine library Xapian. See the manual for configuration \n# details.\n\nSEARCHENGINE_URL       = \n\n# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed \n# search data is written to a file for indexing by an external tool. With the \n# SEARCHDATA_FILE tag the name of this file can be specified.\n\nSEARCHDATA_FILE        = searchdata.xml\n\n# When SERVER_BASED_SEARCH AND EXTERNAL_SEARCH are both enabled the \n# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is \n# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple \n# projects and redirect the results back to the right project.\n\nEXTERNAL_SEARCH_ID     = \n\n# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen \n# projects other than the one defined by this configuration file, but that are \n# all added to the same external search index. Each project needs to have a \n# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id \n# of to a relative location where the documentation can be found. \n# The format is: EXTRA_SEARCH_MAPPINGS = id1=loc1 id2=loc2 ...\n\nEXTRA_SEARCH_MAPPINGS  = \n\n#---------------------------------------------------------------------------\n# configuration options related to the LaTeX output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will \n# generate Latex output.\n\nGENERATE_LATEX         = NO\n\n# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. \n# If a relative path is entered the value of OUTPUT_DIRECTORY will be \n# put in front of it. If left blank `latex' will be used as the default path.\n\nLATEX_OUTPUT           = latex\n\n# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be \n# invoked. If left blank `latex' will be used as the default command name. \n# Note that when enabling USE_PDFLATEX this option is only used for \n# generating bitmaps for formulas in the HTML output, but not in the \n# Makefile that is written to the output directory.\n\nLATEX_CMD_NAME         = latex\n\n# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to \n# generate index for LaTeX. If left blank `makeindex' will be used as the \n# default command name.\n\nMAKEINDEX_CMD_NAME     = makeindex\n\n# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact \n# LaTeX documents. This may be useful for small projects and may help to \n# save some trees in general.\n\nCOMPACT_LATEX          = NO\n\n# The PAPER_TYPE tag can be used to set the paper type that is used \n# by the printer. Possible values are: a4, letter, legal and \n# executive. If left blank a4wide will be used.\n\nPAPER_TYPE             = letter\n\n# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX \n# packages that should be included in the LaTeX output.\n\nEXTRA_PACKAGES         = \n\n# The LATEX_HEADER tag can be used to specify a personal LaTeX header for \n# the generated latex document. The header should contain everything until \n# the first chapter. If it is left blank doxygen will generate a \n# standard header. Notice: only use this tag if you know what you are doing!\n\nLATEX_HEADER           = \n\n# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for \n# the generated latex document. The footer should contain everything after \n# the last chapter. If it is left blank doxygen will generate a \n# standard footer. Notice: only use this tag if you know what you are doing!\n\nLATEX_FOOTER           = \n\n# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated \n# is prepared for conversion to pdf (using ps2pdf). The pdf file will \n# contain links (just like the HTML output) instead of page references \n# This makes the output suitable for online browsing using a pdf viewer.\n\nPDF_HYPERLINKS         = NO\n\n# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of \n# plain latex in the generated Makefile. Set this option to YES to get a \n# higher quality PDF documentation.\n\nUSE_PDFLATEX           = YES\n\n# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\\\batchmode. \n# command to the generated LaTeX files. This will instruct LaTeX to keep \n# running if errors occur, instead of asking the user for help. \n# This option is also used when generating formulas in HTML.\n\nLATEX_BATCHMODE        = NO\n\n# If LATEX_HIDE_INDICES is set to YES then doxygen will not \n# include the index chapters (such as File Index, Compound Index, etc.) \n# in the output.\n\nLATEX_HIDE_INDICES     = NO\n\n# If LATEX_SOURCE_CODE is set to YES then doxygen will include \n# source code with syntax highlighting in the LaTeX output. \n# Note that which sources are shown also depends on other settings \n# such as SOURCE_BROWSER.\n\nLATEX_SOURCE_CODE      = NO\n\n# The LATEX_BIB_STYLE tag can be used to specify the style to use for the \n# bibliography, e.g. plainnat, or ieeetr. The default style is \"plain\". See \n# http://en.wikipedia.org/wiki/BibTeX for more info.\n\nLATEX_BIB_STYLE        = plain\n\n#---------------------------------------------------------------------------\n# configuration options related to the RTF output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output \n# The RTF output is optimized for Word 97 and may not look very pretty with \n# other RTF readers or editors.\n\nGENERATE_RTF           = NO\n\n# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. \n# If a relative path is entered the value of OUTPUT_DIRECTORY will be \n# put in front of it. If left blank `rtf' will be used as the default path.\n\nRTF_OUTPUT             = rtf\n\n# If the COMPACT_RTF tag is set to YES Doxygen generates more compact \n# RTF documents. This may be useful for small projects and may help to \n# save some trees in general.\n\nCOMPACT_RTF            = NO\n\n# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated \n# will contain hyperlink fields. The RTF file will \n# contain links (just like the HTML output) instead of page references. \n# This makes the output suitable for online browsing using WORD or other \n# programs which support those fields. \n# Note: wordpad (write) and others do not support links.\n\nRTF_HYPERLINKS         = NO\n\n# Load style sheet definitions from file. Syntax is similar to doxygen's \n# config file, i.e. a series of assignments. You only have to provide \n# replacements, missing definitions are set to their default value.\n\nRTF_STYLESHEET_FILE    = \n\n# Set optional variables used in the generation of an rtf document. \n# Syntax is similar to doxygen's config file.\n\nRTF_EXTENSIONS_FILE    = \n\n#---------------------------------------------------------------------------\n# configuration options related to the man page output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_MAN tag is set to YES (the default) Doxygen will \n# generate man pages\n\nGENERATE_MAN           = NO\n\n# The MAN_OUTPUT tag is used to specify where the man pages will be put. \n# If a relative path is entered the value of OUTPUT_DIRECTORY will be \n# put in front of it. If left blank `man' will be used as the default path.\n\nMAN_OUTPUT             = man\n\n# The MAN_EXTENSION tag determines the extension that is added to \n# the generated man pages (default is the subroutine's section .3)\n\nMAN_EXTENSION          = .3\n\n# If the MAN_LINKS tag is set to YES and Doxygen generates man output, \n# then it will generate one additional man file for each entity \n# documented in the real man page(s). These additional files \n# only source the real man page, but without them the man command \n# would be unable to find the correct page. The default is NO.\n\nMAN_LINKS              = NO\n\n#---------------------------------------------------------------------------\n# configuration options related to the XML output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_XML tag is set to YES Doxygen will \n# generate an XML file that captures the structure of \n# the code including all documentation.\n\nGENERATE_XML           = NO\n\n# The XML_OUTPUT tag is used to specify where the XML pages will be put. \n# If a relative path is entered the value of OUTPUT_DIRECTORY will be \n# put in front of it. If left blank `xml' will be used as the default path.\n\nXML_OUTPUT             = xml\n\n# The XML_SCHEMA tag can be used to specify an XML schema, \n# which can be used by a validating XML parser to check the \n# syntax of the XML files.\n\nXML_SCHEMA             = \n\n# The XML_DTD tag can be used to specify an XML DTD, \n# which can be used by a validating XML parser to check the \n# syntax of the XML files.\n\nXML_DTD                = \n\n# If the XML_PROGRAMLISTING tag is set to YES Doxygen will \n# dump the program listings (including syntax highlighting \n# and cross-referencing information) to the XML output. Note that \n# enabling this will significantly increase the size of the XML output.\n\nXML_PROGRAMLISTING     = YES\n\n#---------------------------------------------------------------------------\n# configuration options for the AutoGen Definitions output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will \n# generate an AutoGen Definitions (see autogen.sf.net) file \n# that captures the structure of the code including all \n# documentation. Note that this feature is still experimental \n# and incomplete at the moment.\n\nGENERATE_AUTOGEN_DEF   = NO\n\n#---------------------------------------------------------------------------\n# configuration options related to the Perl module output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_PERLMOD tag is set to YES Doxygen will \n# generate a Perl module file that captures the structure of \n# the code including all documentation. Note that this \n# feature is still experimental and incomplete at the \n# moment.\n\nGENERATE_PERLMOD       = NO\n\n# If the PERLMOD_LATEX tag is set to YES Doxygen will generate \n# the necessary Makefile rules, Perl scripts and LaTeX code to be able \n# to generate PDF and DVI output from the Perl module output.\n\nPERLMOD_LATEX          = NO\n\n# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be \n# nicely formatted so it can be parsed by a human reader.  This is useful \n# if you want to understand what is going on.  On the other hand, if this \n# tag is set to NO the size of the Perl module output will be much smaller \n# and Perl will parse it just the same.\n\nPERLMOD_PRETTY         = YES\n\n# The names of the make variables in the generated doxyrules.make file \n# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. \n# This is useful so different doxyrules.make files included by the same \n# Makefile don't overwrite each other's variables.\n\nPERLMOD_MAKEVAR_PREFIX = \n\n#---------------------------------------------------------------------------\n# Configuration options related to the preprocessor\n#---------------------------------------------------------------------------\n\n# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will \n# evaluate all C-preprocessor directives found in the sources and include \n# files.\n\nENABLE_PREPROCESSING   = YES\n\n# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro \n# names in the source code. If set to NO (the default) only conditional \n# compilation will be performed. Macro expansion can be done in a controlled \n# way by setting EXPAND_ONLY_PREDEF to YES.\n\nMACRO_EXPANSION        = NO\n\n# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES \n# then the macro expansion is limited to the macros specified with the \n# PREDEFINED and EXPAND_AS_DEFINED tags.\n\nEXPAND_ONLY_PREDEF     = NO\n\n# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files \n# pointed to by INCLUDE_PATH will be searched when a #include is found.\n\nSEARCH_INCLUDES        = YES\n\n# The INCLUDE_PATH tag can be used to specify one or more directories that \n# contain include files that are not input files but should be processed by \n# the preprocessor.\n\nINCLUDE_PATH           = \n\n# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard \n# patterns (like *.h and *.hpp) to filter out the header-files in the \n# directories. If left blank, the patterns specified with FILE_PATTERNS will \n# be used.\n\nINCLUDE_FILE_PATTERNS  = \n\n# The PREDEFINED tag can be used to specify one or more macro names that \n# are defined before the preprocessor is started (similar to the -D option of \n# gcc). The argument of the tag is a list of macros of the form: name \n# or name=definition (no spaces). If the definition and the = are \n# omitted =1 is assumed. To prevent a macro definition from being \n# undefined via #undef or recursively expanded use the := operator \n# instead of the = operator.\n\nPREDEFINED             = __MACOSX_CORE__ \\\n                         __WINDOWS_MM__ \\\n                         __UNIX_JACK__ \\\n                         __LINUX_ALSA__ \\\n                         __WINDOWS_KS__\n\n# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then \n# this tag can be used to specify a list of macro names that should be expanded. \n# The macro definition that is found in the sources will be used. \n# Use the PREDEFINED tag if you want to use a different macro definition that \n# overrules the definition found in the source code.\n\nEXPAND_AS_DEFINED      = \n\n# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then \n# doxygen's preprocessor will remove all references to function-like macros \n# that are alone on a line, have an all uppercase name, and do not end with a \n# semicolon, because these will confuse the parser if not removed.\n\nSKIP_FUNCTION_MACROS   = YES\n\n#---------------------------------------------------------------------------\n# Configuration::additions related to external references\n#---------------------------------------------------------------------------\n\n# The TAGFILES option can be used to specify one or more tagfiles. For each \n# tag file the location of the external documentation should be added. The \n# format of a tag file without this location is as follows: \n#   TAGFILES = file1 file2 ... \n# Adding location for the tag files is done as follows: \n#   TAGFILES = file1=loc1 \"file2 = loc2\" ... \n# where \"loc1\" and \"loc2\" can be relative or absolute paths \n# or URLs. Note that each tag file must have a unique name (where the name does \n# NOT include the path). If a tag file is not located in the directory in which \n# doxygen is run, you must also specify the path to the tagfile here.\n\nTAGFILES               = \n\n# When a file name is specified after GENERATE_TAGFILE, doxygen will create \n# a tag file that is based on the input files it reads.\n\nGENERATE_TAGFILE       = \n\n# If the ALLEXTERNALS tag is set to YES all external classes will be listed \n# in the class index. If set to NO only the inherited external classes \n# will be listed.\n\nALLEXTERNALS           = NO\n\n# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed \n# in the modules index. If set to NO, only the current project's groups will \n# be listed.\n\nEXTERNAL_GROUPS        = YES\n\n# The PERL_PATH should be the absolute path and name of the perl script \n# interpreter (i.e. the result of `which perl').\n\nPERL_PATH              = /usr/bin/perl\n\n#---------------------------------------------------------------------------\n# Configuration options related to the dot tool\n#---------------------------------------------------------------------------\n\n# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will \n# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base \n# or super classes. Setting the tag to NO turns the diagrams off. Note that \n# this option also works with HAVE_DOT disabled, but it is recommended to \n# install and use dot, since it yields more powerful graphs.\n\nCLASS_DIAGRAMS         = YES\n\n# You can define message sequence charts within doxygen comments using the \\msc \n# command. Doxygen will then run the mscgen tool (see \n# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the \n# documentation. The MSCGEN_PATH tag allows you to specify the directory where \n# the mscgen tool resides. If left empty the tool is assumed to be found in the \n# default search path.\n\nMSCGEN_PATH            = /Applications/Doxygen.app/Contents/Resources/\n\n# If set to YES, the inheritance and collaboration graphs will hide \n# inheritance and usage relations if the target is undocumented \n# or is not a class.\n\nHIDE_UNDOC_RELATIONS   = YES\n\n# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is \n# available from the path. This tool is part of Graphviz, a graph visualization \n# toolkit from AT&T and Lucent Bell Labs. The other options in this section \n# have no effect if this option is set to NO (the default)\n\nHAVE_DOT               = NO\n\n# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is \n# allowed to run in parallel. When set to 0 (the default) doxygen will \n# base this on the number of processors available in the system. You can set it \n# explicitly to a value larger than 0 to get control over the balance \n# between CPU load and processing speed.\n\nDOT_NUM_THREADS        = 0\n\n# By default doxygen will use the Helvetica font for all dot files that \n# doxygen generates. When you want a differently looking font you can specify \n# the font name using DOT_FONTNAME. You need to make sure dot is able to find \n# the font, which can be done by putting it in a standard location or by setting \n# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the \n# directory containing the font.\n\nDOT_FONTNAME           = FreeSans\n\n# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. \n# The default size is 10pt.\n\nDOT_FONTSIZE           = 10\n\n# By default doxygen will tell dot to use the Helvetica font. \n# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to \n# set the path where dot can find it.\n\nDOT_FONTPATH           = \n\n# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen \n# will generate a graph for each documented class showing the direct and \n# indirect inheritance relations. Setting this tag to YES will force the \n# CLASS_DIAGRAMS tag to NO.\n\nCLASS_GRAPH            = YES\n\n# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen \n# will generate a graph for each documented class showing the direct and \n# indirect implementation dependencies (inheritance, containment, and \n# class references variables) of the class with other documented classes.\n\nCOLLABORATION_GRAPH    = YES\n\n# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen \n# will generate a graph for groups, showing the direct groups dependencies\n\nGROUP_GRAPHS           = YES\n\n# If the UML_LOOK tag is set to YES doxygen will generate inheritance and \n# collaboration diagrams in a style similar to the OMG's Unified Modeling \n# Language.\n\nUML_LOOK               = NO\n\n# If the UML_LOOK tag is enabled, the fields and methods are shown inside \n# the class node. If there are many fields or methods and many nodes the \n# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS \n# threshold limits the number of items for each type to make the size more \n# managable. Set this to 0 for no limit. Note that the threshold may be \n# exceeded by 50% before the limit is enforced.\n\nUML_LIMIT_NUM_FIELDS   = 10\n\n# If set to YES, the inheritance and collaboration graphs will show the \n# relations between templates and their instances.\n\nTEMPLATE_RELATIONS     = NO\n\n# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT \n# tags are set to YES then doxygen will generate a graph for each documented \n# file showing the direct and indirect include dependencies of the file with \n# other documented files.\n\nINCLUDE_GRAPH          = YES\n\n# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and \n# HAVE_DOT tags are set to YES then doxygen will generate a graph for each \n# documented header file showing the documented files that directly or \n# indirectly include this file.\n\nINCLUDED_BY_GRAPH      = YES\n\n# If the CALL_GRAPH and HAVE_DOT options are set to YES then \n# doxygen will generate a call dependency graph for every global function \n# or class method. Note that enabling this option will significantly increase \n# the time of a run. So in most cases it will be better to enable call graphs \n# for selected functions only using the \\callgraph command.\n\nCALL_GRAPH             = NO\n\n# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then \n# doxygen will generate a caller dependency graph for every global function \n# or class method. Note that enabling this option will significantly increase \n# the time of a run. So in most cases it will be better to enable caller \n# graphs for selected functions only using the \\callergraph command.\n\nCALLER_GRAPH           = NO\n\n# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen \n# will generate a graphical hierarchy of all classes instead of a textual one.\n\nGRAPHICAL_HIERARCHY    = YES\n\n# If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES \n# then doxygen will show the dependencies a directory has on other directories \n# in a graphical way. The dependency relations are determined by the #include \n# relations between the files in the directories.\n\nDIRECTORY_GRAPH        = YES\n\n# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images \n# generated by dot. Possible values are svg, png, jpg, or gif. \n# If left blank png will be used. If you choose svg you need to set \n# HTML_FILE_EXTENSION to xhtml in order to make the SVG files \n# visible in IE 9+ (other browsers do not have this requirement).\n\nDOT_IMAGE_FORMAT       = png\n\n# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to \n# enable generation of interactive SVG images that allow zooming and panning. \n# Note that this requires a modern browser other than Internet Explorer. \n# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you \n# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files \n# visible. Older versions of IE do not have SVG support.\n\nINTERACTIVE_SVG        = NO\n\n# The tag DOT_PATH can be used to specify the path where the dot tool can be \n# found. If left blank, it is assumed the dot tool can be found in the path.\n\nDOT_PATH               = /Applications/Doxygen.app/Contents/Resources/\n\n# The DOTFILE_DIRS tag can be used to specify one or more directories that \n# contain dot files that are included in the documentation (see the \n# \\dotfile command).\n\nDOTFILE_DIRS           = \n\n# The MSCFILE_DIRS tag can be used to specify one or more directories that \n# contain msc files that are included in the documentation (see the \n# \\mscfile command).\n\nMSCFILE_DIRS           = \n\n# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of \n# nodes that will be shown in the graph. If the number of nodes in a graph \n# becomes larger than this value, doxygen will truncate the graph, which is \n# visualized by representing a node as a red box. Note that doxygen if the \n# number of direct children of the root node in a graph is already larger than \n# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note \n# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.\n\nDOT_GRAPH_MAX_NODES    = 50\n\n# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the \n# graphs generated by dot. A depth value of 3 means that only nodes reachable \n# from the root by following a path via at most 3 edges will be shown. Nodes \n# that lay further from the root node will be omitted. Note that setting this \n# option to 1 or 2 may greatly reduce the computation time needed for large \n# code bases. Also note that the size of a graph can be further restricted by \n# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.\n\nMAX_DOT_GRAPH_DEPTH    = 0\n\n# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent \n# background. This is disabled by default, because dot on Windows does not \n# seem to support this out of the box. Warning: Depending on the platform used, \n# enabling this option may lead to badly anti-aliased labels on the edges of \n# a graph (i.e. they become hard to read).\n\nDOT_TRANSPARENT        = YES\n\n# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output \n# files in one run (i.e. multiple -o and -T options on the command line). This \n# makes dot run faster, but since only newer versions of dot (>1.8.10) \n# support this, this feature is disabled by default.\n\nDOT_MULTI_TARGETS      = NO\n\n# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will \n# generate a legend page explaining the meaning of the various boxes and \n# arrows in the dot generated graphs.\n\nGENERATE_LEGEND        = YES\n\n# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will \n# remove the intermediate dot files that are used to generate \n# the various graphs.\n\nDOT_CLEANUP            = YES\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/doc/doxygen/footer.html",
    "content": "<HR>\r\n\r\n<table><tr><td><img src=\"../images/mcgill.gif\" width=165></td>\r\n  <td>&copy;2003-2017 Gary P. Scavone, McGill University. All Rights Reserved.<br>\r\n  Maintained by Gary P. Scavone, gary at music.mcgill.ca</td></tr>\r\n</table>\r\n\r\n</BODY>\r\n</HTML>\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/doc/doxygen/header.html",
    "content": "<HTML>\r\n<HEAD>\r\n<TITLE>The RtMidi Tutorial</TITLE>\r\n<LINK HREF=\"doxygen.css\" REL=\"stylesheet\" TYPE=\"text/css\">\r\n</HEAD>\r\n<BODY BGCOLOR=\"#FFFFFF\">\r\n<CENTER>\r\n<a class=\"qindex\" href=\"index.html\">Tutorial</a> &nbsp; <a class=\"qindex\" href=\"annotated.html\">Class/Enum List</a> &nbsp; <a class=\"qindex\" href=\"files.html\">File List</a> &nbsp; <a class=\"qindex\" href=\"functions.html\">Compound Members</a> &nbsp; </CENTER>\r\n<HR>\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/doc/doxygen/tutorial.txt",
    "content": "/*! \\mainpage The RtMidi Tutorial\r\n\r\n<CENTER>\\ref intro &nbsp;&nbsp; \\ref download &nbsp;&nbsp; \\ref start &nbsp;&nbsp; \\ref error &nbsp;&nbsp; \\ref probing &nbsp;&nbsp; \\ref output &nbsp;&nbsp; \\ref input &nbsp;&nbsp; \\ref virtual &nbsp;&nbsp; \\ref compiling &nbsp;&nbsp; \\ref debug &nbsp;&nbsp; \\ref multi &nbsp;&nbsp; \\ref apinotes &nbsp;&nbsp; \\ref acknowledge &nbsp;&nbsp; \\ref license</CENTER>\r\n\r\n\\section intro Introduction\r\n\r\nRtMidi is a set of C++ classes (RtMidiIn, RtMidiOut and API-specific classes) that provides a common API (Application Programming Interface) for realtime MIDI input/output across Linux (ALSA & JACK), Macintosh OS X (CoreMIDI & JACK), and Windows (Multimedia Library) operating systems.  RtMidi significantly simplifies the process of interacting with computer MIDI hardware and software.  It was designed with the following goals:\r\n\r\n- object oriented C++ design\r\n- simple, common API across all supported platforms\r\n- only one header and one source file for easy inclusion in programming projects\r\n- MIDI device enumeration\r\n\r\nWhere applicable, multiple API support can be compiled and a particular API specified when creating an RtAudio instance.\r\n\r\nMIDI input and output functionality are separated into two classes, RtMidiIn and RtMidiOut.  Each class instance supports only a single MIDI connection.  RtMidi does not provide timing functionality (i.e., output messages are sent immediately).  Input messages are timestamped with delta times in seconds (via a \\c double floating point type).  MIDI data is passed to the user as raw bytes using an std::vector<unsigned char>.\r\n\r\n\\section whatsnew What's New (Version 3.0.0)\r\n\r\nThe version number has been bumped to 3.0.0 because of the past API change concerning the renaming of the RtError class to RtMidiError.  Changes in this release include:\r\n\r\n- see git history for complete list of changes\r\n- new sendMessage() function that does not use std::vector\r\n- various std::string updates, including use of UTF8 for port names\r\n- fixes for the MIDI queue\r\n- various build system updates and code efficiencies\r\n\r\n\\section download Download\r\n\r\nLatest Release (31 August 2017): <A href=\"http://www.music.mcgill.ca/~gary/rtmidi/release/rtmidi-3.0.0.tar.gz\">Version 3.0.0</A>\r\n\r\n\\section start Getting Started\r\n\r\nThe first thing that must be done when using RtMidi is to create an instance of the RtMidiIn or RtMidiOut subclasses.  RtMidi is an abstract base class, which itself cannot be instantiated.  Each default constructor attempts to establish any necessary \"connections\" with the underlying MIDI system.  RtMidi uses C++ exceptions to report errors, necessitating try/catch blocks around many member functions.  An RtMidiError can be thrown during instantiation in some circumstances.  A warning message may also be reported if no MIDI devices are found during instantiation.  The RtMidi classes have been designed to work with \"hot pluggable\" or virtual (software) MIDI devices, making it possible to connect to MIDI devices that may not have been present when the classes were instantiated.  The following code example demonstrates default object construction and destruction:\r\n\r\n\\include getting_started.cpp\r\n\r\nObviously, this example doesn't demonstrate any of the real functionality of RtMidi.  However, all uses of RtMidi must begin with construction and must end with class destruction.  Further, it is necessary that all class methods that can throw a C++ exception be called within a try/catch block.\r\n\r\n\r\n\\section error Error Handling\r\n\r\nRtMidi uses a C++ exception handler called RtMidiError, which is\r\ndeclared and defined in RtMidi.h.  The RtMidiError class is quite\r\nsimple but it does allow errors to be \"caught\" by RtMidiError::Type.\r\nMany RtMidi methods can \"throw\" an RtMidiError, most typically if a\r\ndriver error occurs or an invalid function argument is specified.\r\nThere are a number of cases within RtMidi where warning messages may\r\nbe displayed but an exception is not thrown.  A client error callback\r\nfunction can be specified (via the RtMidi::setErrorCallback function)\r\nthat is invoked when an error occurs. By default, error messages are\r\nnot automatically displayed in RtMidi unless the preprocessor\r\ndefinition __RTMIDI_DEBUG__ is defined during compilation.  Messages\r\nassociated with caught exceptions can be displayed with, for example,\r\nthe RtMidiError::printMessage() function.\r\n\r\n\r\n\\section probing Probing Ports\r\n\r\nA client generally must query the available MIDI ports before deciding which to use.  The following example outlines how this can be done.\r\n\r\n\\code\r\n// midiprobe.cpp\r\n\r\n#include <iostream>\r\n#include <cstdlib>\r\n#include \"RtMidi.h\"\r\n\r\nint main()\r\n{\r\n  RtMidiIn  *midiin = 0;\r\n  RtMidiOut *midiout = 0;\r\n\r\n  // RtMidiIn constructor\r\n  try {\r\n    midiin = new RtMidiIn();\r\n  }\r\n  catch ( RtMidiError &error ) {\r\n    error.printMessage();\r\n    exit( EXIT_FAILURE );\r\n  }\r\n\r\n  // Check inputs.\r\n  unsigned int nPorts = midiin->getPortCount();\r\n  std::cout << \"\\nThere are \" << nPorts << \" MIDI input sources available.\\n\";\r\n  std::string portName;\r\n  for ( unsigned int i=0; i<nPorts; i++ ) {\r\n    try {\r\n      portName = midiin->getPortName(i);\r\n    }\r\n    catch ( RtMidiError &error ) {\r\n      error.printMessage();\r\n      goto cleanup;\r\n    }\r\n    std::cout << \"  Input Port #\" << i+1 << \": \" << portName << '\\n';\r\n  }\r\n\r\n  // RtMidiOut constructor\r\n  try {\r\n    midiout = new RtMidiOut();\r\n  }\r\n  catch ( RtMidiError &error ) {\r\n    error.printMessage();\r\n    exit( EXIT_FAILURE );\r\n  }\r\n\r\n  // Check outputs.\r\n  nPorts = midiout->getPortCount();\r\n  std::cout << \"\\nThere are \" << nPorts << \" MIDI output ports available.\\n\";\r\n  for ( unsigned int i=0; i<nPorts; i++ ) {\r\n    try {\r\n      portName = midiout->getPortName(i);\r\n    }\r\n    catch (RtMidiError &error) {\r\n      error.printMessage();\r\n      goto cleanup;\r\n    }\r\n    std::cout << \"  Output Port #\" << i+1 << \": \" << portName << '\\n';\r\n  }\r\n  std::cout << '\\n';\r\n\r\n  // Clean up\r\n cleanup:\r\n  delete midiin;\r\n  delete midiout;\r\n\r\n  return 0;\r\n}\r\n\\endcode\r\n\r\n\\section output MIDI Output\r\n\r\nThe RtMidiOut class provides simple functionality to immediately send messages over a MIDI connection.  No timing functionality is provided. Note that there is an overloaded RtMidiOut::sendMessage() function that does not use std::vectors.\r\n\r\nIn the following example, we omit necessary error checking and details regarding OS-dependent sleep functions.  For a complete example, see the \\c midiout.cpp program in the \\c tests directory.\r\n\r\n\\code\r\n// midiout.cpp\r\n\r\n#include <iostream>\r\n#include <cstdlib>\r\n#include \"RtMidi.h\"\r\n\r\nint main()\r\n{\r\n  RtMidiOut *midiout = new RtMidiOut();\r\n  std::vector<unsigned char> message;\r\n\r\n  // Check available ports.\r\n  unsigned int nPorts = midiout->getPortCount();\r\n  if ( nPorts == 0 ) {\r\n    std::cout << \"No ports available!\\n\";\r\n    goto cleanup;\r\n  }\r\n\r\n  // Open first available port.\r\n  midiout->openPort( 0 );\r\n\r\n  // Send out a series of MIDI messages.\r\n\r\n  // Program change: 192, 5\r\n  message.push_back( 192 );\r\n  message.push_back( 5 );\r\n  midiout->sendMessage( &message );\r\n\r\n  // Control Change: 176, 7, 100 (volume)\r\n  message[0] = 176;\r\n  message[1] = 7;\r\n  message.push_back( 100 );\r\n  midiout->sendMessage( &message );\r\n\r\n  // Note On: 144, 64, 90\r\n  message[0] = 144;\r\n  message[1] = 64;\r\n  message[2] = 90;\r\n  midiout->sendMessage( &message );\r\n\r\n  SLEEP( 500 ); // Platform-dependent ... see example in tests directory.\r\n\r\n  // Note Off: 128, 64, 40\r\n  message[0] = 128;\r\n  message[1] = 64;\r\n  message[2] = 40;\r\n  midiout->sendMessage( &message );\r\n\r\n  // Clean up\r\n cleanup:\r\n  delete midiout;\r\n\r\n  return 0;\r\n}\r\n\\endcode\r\n\r\n\r\n\\section input MIDI Input\r\n\r\nThe RtMidiIn class uses an internal callback function or thread to receive incoming MIDI messages from a port or device.  These messages are then either queued and read by the user via calls to the RtMidiIn::getMessage() function or immediately passed to a user-specified callback function (which must be \"registered\" using the RtMidiIn::setCallback() function).  We'll provide examples of both usages.\r\n\r\nThe RtMidiIn class provides the RtMidiIn::ignoreTypes() function to specify that certain MIDI message types be ignored.  By default, system exclusive, timing, and active sensing messages are ignored.\r\n\r\n\\subsection qmidiin Queued MIDI Input\r\n\r\nThe RtMidiIn::getMessage() function does not block.  If a MIDI message is available in the queue, it is copied to the user-provided \\c std::vector<unsigned char> container.  When no MIDI message is available, the function returns an empty container.  The default maximum MIDI queue size is 1024 messages.  This value may be modified with the RtMidiIn::setQueueSizeLimit() function.  If the maximum queue size limit is reached, subsequent incoming MIDI messages are discarded until the queue size is reduced.\r\n\r\nIn the following example, we omit some necessary error checking and details regarding OS-dependent sleep functions.  For a more complete example, see the \\c qmidiin.cpp program in the \\c tests directory.\r\n\r\n\\code\r\n// qmidiin.cpp\r\n\r\n#include <iostream>\r\n#include <cstdlib>\r\n#include <signal.h>\r\n#include \"RtMidi.h\"\r\n\r\nbool done;\r\nstatic void finish(int ignore){ done = true; }\r\n\r\nint main()\r\n{\r\n  RtMidiIn *midiin = new RtMidiIn();\r\n  std::vector<unsigned char> message;\r\n  int nBytes, i;\r\n  double stamp;\r\n\r\n  // Check available ports.\r\n  unsigned int nPorts = midiin->getPortCount();\r\n  if ( nPorts == 0 ) {\r\n    std::cout << \"No ports available!\\n\";\r\n    goto cleanup;\r\n  }\r\n  midiin->openPort( 0 );\r\n\r\n  // Don't ignore sysex, timing, or active sensing messages.\r\n  midiin->ignoreTypes( false, false, false );\r\n\r\n  // Install an interrupt handler function.\r\n  done = false;\r\n  (void) signal(SIGINT, finish);\r\n\r\n  // Periodically check input queue.\r\n  std::cout << \"Reading MIDI from port ... quit with Ctrl-C.\\n\";\r\n  while ( !done ) {\r\n    stamp = midiin->getMessage( &message );\r\n    nBytes = message.size();\r\n    for ( i=0; i<nBytes; i++ )\r\n      std::cout << \"Byte \" << i << \" = \" << (int)message[i] << \", \";\r\n    if ( nBytes > 0 )\r\n      std::cout << \"stamp = \" << stamp << std::endl;\r\n\r\n    // Sleep for 10 milliseconds ... platform-dependent.\r\n    SLEEP( 10 );\r\n  }\r\n\r\n  // Clean up\r\n cleanup:\r\n  delete midiin;\r\n\r\n  return 0;\r\n}\r\n\\endcode\r\n\r\n\\subsection cmidiin MIDI Input with User Callback\r\n\r\nWhen set, a user-provided callback function will be invoked after the input of a complete MIDI message.  It is possible to provide a pointer to user data that can be accessed in the callback function (not shown here).  It is necessary to set the callback function immediately after opening the port to avoid having incoming messages written to the queue (which is not emptied when a callback function is set).  If you are worried about this happening, you can check the queue using the RtMidi::getMessage() function to verify it is empty (after the callback function is set).\r\n\r\nIn the following example, we omit some necessary error checking.  For a more complete example, see the \\c cmidiin.cpp program in the \\c tests directory.\r\n\r\n\\code\r\n// cmidiin.cpp\r\n\r\n#include <iostream>\r\n#include <cstdlib>\r\n#include \"RtMidi.h\"\r\n\r\nvoid mycallback( double deltatime, std::vector< unsigned char > *message, void *userData )\r\n{\r\n  unsigned int nBytes = message->size();\r\n  for ( unsigned int i=0; i<nBytes; i++ )\r\n    std::cout << \"Byte \" << i << \" = \" << (int)message->at(i) << \", \";\r\n  if ( nBytes > 0 )\r\n    std::cout << \"stamp = \" << deltatime << std::endl;\r\n}\r\n\r\nint main()\r\n{\r\n  RtMidiIn *midiin = new RtMidiIn();\r\n\r\n  // Check available ports.\r\n  unsigned int nPorts = midiin->getPortCount();\r\n  if ( nPorts == 0 ) {\r\n    std::cout << \"No ports available!\\n\";\r\n    goto cleanup;\r\n  }\r\n\r\n  midiin->openPort( 0 );\r\n\r\n  // Set our callback function.  This should be done immediately after\r\n  // opening the port to avoid having incoming messages written to the\r\n  // queue.\r\n  midiin->setCallback( &mycallback );\r\n\r\n  // Don't ignore sysex, timing, or active sensing messages.\r\n  midiin->ignoreTypes( false, false, false );\r\n\r\n  std::cout << \"\\nReading MIDI input ... press <enter> to quit.\\n\";\r\n  char input;\r\n  std::cin.get(input);\r\n\r\n  // Clean up\r\n cleanup:\r\n  delete midiin;\r\n\r\n  return 0;\r\n}\r\n\\endcode\r\n\r\n\\section virtual Virtual Ports\r\n\r\nThe Linux ALSA, Macintosh CoreMIDI and JACK APIs allow for the establishment of virtual input and output MIDI ports to which other software clients can connect.  RtMidi incorporates this functionality with the RtMidiIn::openVirtualPort() and RtMidiOut::openVirtualPort() functions.  Any messages sent with the RtMidiOut::sendMessage() function will also be transmitted through an open virtual output port.  If a virtual input port is open and a user callback function is set, the callback function will be invoked when messages arrive via that port.  If a callback function is not set, the user must poll the input queue to check whether messages have arrived.  No notification is provided for the establishment of a client connection via a virtual port. The RtMidi::isPortOpen() function does not report the status of ports created with the RtMidi::openVirtualPort() function.\r\n\r\n\\section compiling Compiling\r\n\r\nIn order to compile RtMidi for a specific OS and API, it is necessary to supply the appropriate preprocessor definition and library within the compiler statement:\r\n<P>\r\n\r\n<TABLE BORDER=2 COLS=5 WIDTH=\"100%\">\r\n<TR BGCOLOR=\"beige\">\r\n  <TD WIDTH=\"5%\"><B>OS:</B></TD>\r\n  <TD WIDTH=\"5%\"><B>MIDI API:</B></TD>\r\n  <TD WIDTH=\"5%\"><B>Preprocessor Definition:</B></TD>\r\n  <TD WIDTH=\"5%\"><B>Library or Framework:</B></TD>\r\n  <TD><B>Example Compiler Statement:</B></TD>\r\n</TR>\r\n<TR>\r\n  <TD>Linux</TD>\r\n  <TD>ALSA Sequencer</TD>\r\n  <TD>__LINUX_ALSA__</TD>\r\n  <TD><TT>asound, pthread</TT></TD>\r\n  <TD><TT>g++ -Wall -D__LINUX_ALSA__ -o midiprobe midiprobe.cpp RtMidi.cpp -lasound -lpthread</TT></TD>\r\n</TR>\r\n<TR>\r\n  <TD>Linux or Mac</TD>\r\n  <TD>JACK MIDI</TD>\r\n  <TD>__UNIX_JACK__</TD>\r\n  <TD><TT>jack</TT></TD>\r\n  <TD><TT>g++ -Wall -D__UNIX_JACK__ -o midiprobe midiprobe.cpp RtMidi.cpp -ljack</TT></TD>\r\n</TR>\r\n<TR>\r\n  <TD>Macintosh OS X</TD>\r\n  <TD>CoreMIDI</TD>\r\n  <TD>__MACOSX_CORE__</TD>\r\n  <TD><TT>CoreMIDI, CoreAudio, CoreFoundation</TT></TD>\r\n  <TD><TT>g++ -Wall -D__MACOSX_CORE__ -o midiprobe midiprobe.cpp RtMidi.cpp -framework CoreMIDI -framework CoreAudio -framework CoreFoundation</TT></TD>\r\n</TR>\r\n<TR>\r\n  <TD>Windows</TD>\r\n  <TD>Multimedia Library</TD>\r\n  <TD>__WINDOWS_MM__</TD>\r\n  <TD><TT>winmm.lib, multithreaded</TT></TD>\r\n  <TD><I>compiler specific</I></TD>\r\n</TR>\r\n</TABLE>\r\n<P>\r\n\r\nThe example compiler statements above could be used to compile the <TT>midiprobe.cpp</TT> example file, assuming that <TT>midiprobe.cpp</TT>, <TT>RtMidi.h</TT> and <TT>RtMidi.cpp</TT> all exist in the same directory.\r\n\r\n\\section debug Debugging\r\n\r\nIf you are having problems getting RtMidi to run on your system, try passing the preprocessor definition <TT>__RTMIDI_DEBUG__</TT> to the compiler (or define it in RtMidi.h).  A variety of warning messages will be displayed that may help in determining the problem.  Also try using the programs included in the <tt>tests</tt> directory.  The program <tt>midiprobe</tt> displays the queried capabilities of all MIDI ports found.\r\n\r\n\\section multi Using Simultaneous Multiple APIs\r\n\r\nSupport for each MIDI API is encapsulated in specific MidiInApi or MidiOutApi subclasses, making it possible to compile and instantiate multiple API-specific subclasses on a given operating system.  For example, one can compile both CoreMIDI and JACK support on the OS-X operating system by providing the appropriate preprocessor definitions for each.  In a run-time situation, one might first attempt to determine whether any JACK ports are available.  This can be done by specifying the api argument RtMidi::UNIX_JACK when attempting to create an instance of RtMidiIn or RtMidiOut.  If no available ports are found, then an instance of RtMidi with the api argument RtMidi::MACOSX_CORE can be created.  Alternately, if no api argument is specified, RtMidi will first look for JACK ports and if none are found, then CoreMIDI ports (in linux, the search order is JACK and then ALSA.  In theory, it should also be possible to have separate instances of RtMidi open at the same time with different underlying API support, though this has not been tested.\r\n\r\nThe static function RtMidi::getCompiledApi() is provided to determine the available compiled API support.  The function RtMidi::getCurrentApi() indicates the API selected for a given RtMidi instance.\r\n\r\n\\section apinotes API Notes\r\n\r\nRtMidi is designed to provide a common API across the various supported operating systems and audio libraries.  Despite that, some issues should be mentioned with regard to each.\r\n\r\n\\subsection linux Linux:\r\n\r\nRtMidi for Linux was developed using the Fedora distribution.  Two different MIDI APIs are supported on Linux platforms: <A href=\"http://www.alsa-project.org/\">ALSA</A> and <A href=\"http://jackit.sourceforge.net/\">JACK</A>. A decision was made to not include support for the OSS API because the OSS API provides very limited functionality and because <A href=\"http://www.alsa-project.org/\">ALSA</A> support is now incorporated in the Linux kernel.  The ALSA sequencer and JACK APIs allows for virtual software input and output ports. \r\n\r\n\\subsection macosx Macintosh OS X (CoreAudio):\r\n\r\nThe Apple CoreMIDI API allows for the establishment of virtual input and output ports to which other software applications can connect.\r\n\r\nThe RtMidi JACK support can be compiled on Macintosh OS-X systems, as well as in Linux.\r\n\r\n\\subsection windowsds Windows (Multimedia Library):\r\n\r\nThe \\c configure script provides support for the MinGW compiler.\r\n\r\nThe Windows Multimedia library MIDI calls used in RtMidi do not make use of streaming functionality.   Incoming system exclusive messages read by RtMidiIn are limited to a length as defined by the preprocessor definition RT_SYSEX_BUFFER_SIZE (set in RtMidi.cpp).  The default value is 1024.  There is no such limit for outgoing sysex messages via RtMidiOut.\r\n\r\nRtMidi was originally developed with Visual C++ version 6.0 but has been tested with Virtual Studio 2010.\r\n\r\n\\section acknowledge Development & Acknowledgements\r\n\r\nRtMidi is on github (https://github.com/thestk/rtmidi).  Many thanks to the developers that are helping to maintain and improve RtMidi.\r\n\r\nIn years past, the following people provided bug fixes and improvements:\r\n\r\n- Stephen Sinclair (Git repo, code and build system)\r\n- Atsushi Eno (C API)\r\n- Sebastien Alaiwan (JACK memory leaks, Windows kernel streaming)\r\n- Jean-Baptiste Berruchon (Windows sysex code)\r\n- Pedro Lopez-Cabanillas (ALSA sequencer API, client naming)\r\n- Jason Champion (MSW project file for library build)\r\n- Eduardo Coutinho (Windows device names)\r\n- Paul Dean (increment optimization)\r\n- Luc Deschenaux (sysex issues)\r\n- John Dey (OS-X timestamps)\r\n- Christoph Eckert (ALSA sysex fixes)\r\n- Martin Koegler (various fixes)\r\n- Immanuel Litzroth (OS-X sysex fix)\r\n- Jon McCormack (Snow Leopard updates)\r\n- Axel Schmidt (client naming)\r\n- Alexander Svetalkin (JACK MIDI)\r\n- Casey Tucker (OS-X driver information, sysex sending)\r\n- Bastiaan Verreijt (Windows sysex multi-buffer code)\r\n- Dan Wilcox\r\n\r\n\\section license License\r\n\r\n    RtMidi: realtime MIDI i/o C++ classes<BR>\r\n    Copyright (c) 2003-2017 Gary P. Scavone\r\n\r\n    Permission is hereby granted, free of charge, to any person\r\n    obtaining a copy of this software and associated documentation files\r\n    (the \"Software\"), to deal in the Software without restriction,\r\n    including without limitation the rights to use, copy, modify, merge,\r\n    publish, distribute, sublicense, and/or sell copies of the Software,\r\n    and to permit persons to whom the Software is furnished to do so,\r\n    subject to the following conditions:\r\n\r\n    The above copyright notice and this permission notice shall be\r\n    included in all copies or substantial portions of the Software.\r\n\r\n    Any person wishing to distribute modifications to the Software is\r\n    asked to send the modifications to the original developer so that\r\n    they can be incorporated into the canonical version.  This is,\r\n    however, not a binding provision of this license.\r\n\r\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\n    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\r\n    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\r\n    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\n*/\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/doc/release.txt",
    "content": "RtMidi - a set of C++ classes that provides a common API for realtime MIDI input/output across Linux (ALSA & JACK), Macintosh OS X (CoreMidi & JACK), and Windows (Multimedia Library).\r\n\r\nBy Gary P. Scavone, 2003-2017 (with help from many others!)\r\n\r\nv.3.0.0: (31 August 2017)\r\n- see git history for complete list of changes\r\n- new sendMessage() function that does not use std::vector\r\n- various std::string updates, including use of UTF8 for port names\r\n- fixes for the MIDI queue\r\n- various build system updates and code efficiencies\r\n\r\nv2.1.1: (11 February 2016)\r\n- updates to automake routines\r\n- added C API (thanks to Atsushi Eno!)\r\n- JACK ringbuffer allocation change\r\n- OSX virtual port closing fix\r\n- OSX sysex sending fix\r\n- moved Windows kernel streaming code to other branch because it is incomplete\r\n- miscellaneous small fixes\r\n\r\nv2.1.0: (30 March 2014)\r\n- renamed RtError class to RtMidiError and embedded it in RtMidi.h (and deleted RtError.h)\r\n- fix to CoreMidi implementation to support dynamic port changes\r\n- removed global ALSA sequencer objects because they were not thread safe (Martin Koegler)\r\n- fix for ALSA timing ignore flag (Devin Anderson)\r\n- fix for ALSA incorrect use of snd_seq_create_port() function (Tobias Schlemmer)\r\n- fix for international character support in CoreMidi (Martin Finke)\r\n- fix for unicode conversion in WinMM (Dan Wilcox)\r\n- added custom error hook that allows the client to capture an RtMidi error outside of the RtMidi code (Pavel Mogilevskiy)\r\n- added RtMidi::isPortOpen function (Pavel Mogilevskiy)\r\n- updated OS-X sysex sending mechanism to use normal message sending, which fixes a problem where virtual ports didn't receive sysex messages\r\n- Windows update to avoid lockups when shutting down while sending/receiving sysex messages (ptarabbia)\r\n- OS-X fix to avoid empty messages in callbacks when ignoring sysex messages and split sysexes are received (codepainters)\r\n- ALSA openPort fix to better distinguish sender and receiver (Russell Smyth)\r\n- Windows Kernel Streaming support removed because it was uncompilable and incomplete\r\n\r\nv2.0.1: (26 July 2012)\r\n- small fixes for problems reported by Chris Arndt (scoping, preprocessor, and include)\r\n\r\nv2.0.0: (18 June 2012)\r\n- revised structure to support multiple simultaneous compiled APIs\r\n- revised ALSA client hierarchy so subsequent instances share same client (thanks to Dan Wilcox)\r\n- added beta Windows kernel streaming support (thanks to Sebastien Alaiwan)\r\n- updates to compile as a shared library or dll\r\n- updated license\r\n- various memory-leak fixes (thanks to Sebastien Alaiwan and Martin Koegler)\r\n- fix for continue sysex problem (thanks to Luc Deschenaux)\r\n- removed SGI (IRIX) support\r\n\r\nv1.0.15: (11 August 2011)\r\n- updates for wide character support in Windows\r\n- stopped using std::queue and implemented internal MIDI ring buffer (for thread safety ... thanks to Michael Behrman)\r\n- removal of the setQueueSizeLimit() function ... queue size limit now an optional arguement to constructor\r\n\r\nv1.0.14: (17 April 2011)\r\n- bug fix to Jack MIDI support (thanks to Alexander Svetalkin and Pedro Lopez-Cabanillas)\r\n\r\nv1.0.13: (7 April 2011)\r\n- updated RtError.h to the same version as in RtAudio\r\n- new Jack MIDI support in Linux (thanks to Alexander Svetalkin)\r\n\r\nv1.0.12: (17 February 2011)\r\n- Windows 64-bit pointer fixes (thanks to Ward Kockelkorn)\r\n- removed possible exceptions from getPortName() functions\r\n- changed sysex sends in OS-X to use MIDISendSysex() function (thanks to Casey Tucker)\r\n- bug fixes to time code parsing in OS-X and ALSA (thanks to Greg)\r\n- added MSW project file to build as library (into lib/ directory ... thanks to Jason Champion)\r\n\r\nv1.0.11: (29 January 2010)\r\n- added CoreServices/CoreServices.h include for OS-X 10.6 and gcc4.2 compile (thanks to Jon McCormack)\r\n- various increment optimizations (thanks to Paul Dean)\r\n- fixed incorrectly located snd_seq_close() function in ALSA API (thanks to Pedro Lopez-Cabanillas)\r\n- updates to Windows sysex code to better deal with possible delivery problems (thanks to Bastiaan Verreijt)\r\n\r\nv1.0.10: (3 June 2009)\r\n- fix adding timestamp to OS-X sendMessage() function (thanks to John Dey)\r\n\r\nv1.0.9: (30 April 2009)\r\n- added #ifdef AVOID_TIMESTAMPING to conditionally compile support for event timestamping of ALSA sequencer events. This is useful for programs not needing timestamps, saving valuable system resources.\r\n- updated functionality in OSX_CORE for getting driver name (thanks to Casey Tucker)\r\n\r\nv1.0.8: (29 January 2009)\r\n- bug fixes for concatenating segmented sysex messages in ALSA (thanks to Christoph Eckert)\r\n- update to ALSA sequencer port enumeration (thanks to Pedro Lopez-Cabonillas)\r\n- bug fixes for concatenating segmented sysex messages in OS-X (thanks to Emmanuel Litzroth)\r\n- added functionality for naming clients (thanks to Pedro Lopez-Cabonillas and Axel Schmidt)\r\n- bug fix in Windows when receiving sysex messages if the ignore flag was set (thanks to Pedro Lopez-Cabonillas)\r\n\r\nv1.0.7: (7 December 2007)\r\n- configure and Makefile changes for MinGW\r\n- renamed midiinfo.cpp to midiprobe.cpp and updated VC++ project/workspace\r\n\r\nv1.0.6: (9 March 2006)\r\n- bug fix for timestamp problem in ALSA  (thanks to Pedro Lopez-Cabanillas)\r\n\r\nv1.0.5: (18 November 2005)\r\n- added optional port name to openVirtualPort() functions\r\n- fixed UNICODE problem in Windows getting device names (thanks Eduardo Coutinho!).\r\n- fixed bug in Windows with respect to getting Sysex data (thanks Jean-Baptiste Berruchon!)\r\n\r\nv1.0.4: (14 October 2005)\r\n- added check for status byte == 0xF8 if ignoring timing messages\r\n- changed pthread attribute to SCHED_OTHER (from SCHED_RR) to avoid thread problem when realtime cababilities are not enabled.\r\n- now using ALSA sequencer time stamp information (thanks to Pedro Lopez-Cabanillas)\r\n- fixed memory leak in ALSA implementation\r\n- now concatenate segmented sysex messages in ALSA\r\n\r\nv1.0.3: (22 November 2004)\r\n- added common pure virtual functions to RtMidi abstract base class\r\n\r\nv1.0.2: (21 September 2004)\r\n- added warning messages to openVirtualPort() functions in Windows and Irix (where it can't be implemented)\r\n\r\nv1.0.1: (20 September 2004)\r\n- changed ALSA preprocessor definition to __LINUX_ALSASEQ__\r\n\r\nv1.0.0: (17 September 2004)\r\n- first release of new independent class with both input and output functionality\r\n\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/msw/readme",
    "content": "This directory contains a Visual Studio 2008 project, contributed by Jason Champion, to build rtmidi as a library.  The library builds to the <rtmidi-x.x.x>\\lib directory."
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/msw/rtmidilib.sln",
    "content": "﻿\r\nMicrosoft Visual Studio Solution File, Format Version 10.00\r\n# Visual Studio 2008\r\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"rtmidilib\", \"rtmidilib.vcproj\", \"{EBFE5EB3-182A-47A6-922B-52ECF777F6A3}\"\r\nEndProject\r\nGlobal\r\n\tGlobalSection(SolutionConfigurationPlatforms) = preSolution\r\n\t\tDebug|Win32 = Debug|Win32\r\n\t\tRelease|Win32 = Release|Win32\r\n\tEndGlobalSection\r\n\tGlobalSection(ProjectConfigurationPlatforms) = postSolution\r\n\t\t{EBFE5EB3-182A-47A6-922B-52ECF777F6A3}.Debug|Win32.ActiveCfg = Debug|Win32\r\n\t\t{EBFE5EB3-182A-47A6-922B-52ECF777F6A3}.Debug|Win32.Build.0 = Debug|Win32\r\n\t\t{EBFE5EB3-182A-47A6-922B-52ECF777F6A3}.Release|Win32.ActiveCfg = Release|Win32\r\n\t\t{EBFE5EB3-182A-47A6-922B-52ECF777F6A3}.Release|Win32.Build.0 = Release|Win32\r\n\tEndGlobalSection\r\n\tGlobalSection(SolutionProperties) = preSolution\r\n\t\tHideSolutionNode = FALSE\r\n\tEndGlobalSection\r\nEndGlobal\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/msw/rtmidilib.vcproj",
    "content": "<?xml version=\"1.0\" encoding=\"Windows-1252\"?>\r\n<VisualStudioProject\r\n\tProjectType=\"Visual C++\"\r\n\tVersion=\"9.00\"\r\n\tName=\"rtmidilib\"\r\n\tProjectGUID=\"{EBFE5EB3-182A-47A6-922B-52ECF777F6A3}\"\r\n\tRootNamespace=\"rtmidilib\"\r\n\tTargetFrameworkVersion=\"196613\"\r\n\t>\r\n\t<Platforms>\r\n\t\t<Platform\r\n\t\t\tName=\"Win32\"\r\n\t\t/>\r\n\t</Platforms>\r\n\t<ToolFiles>\r\n\t</ToolFiles>\r\n\t<Configurations>\r\n\t\t<Configuration\r\n\t\t\tName=\"Debug|Win32\"\r\n\t\t\tOutputDirectory=\"$(SolutionDir)$(ConfigurationName)\"\r\n\t\t\tIntermediateDirectory=\"$(ConfigurationName)\"\r\n\t\t\tConfigurationType=\"4\"\r\n\t\t\tCharacterSet=\"1\"\r\n\t\t\t>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreBuildEventTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCustomBuildTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXMLDataGeneratorTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCMIDLTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCLCompilerTool\"\r\n\t\t\t\tOptimization=\"0\"\r\n\t\t\t\tPreprocessorDefinitions=\"__WINDOWS_MM__\"\r\n\t\t\t\tMinimalRebuild=\"true\"\r\n\t\t\t\tBasicRuntimeChecks=\"3\"\r\n\t\t\t\tRuntimeLibrary=\"3\"\r\n\t\t\t\tWarningLevel=\"3\"\r\n\t\t\t\tDebugInformationFormat=\"4\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCManagedResourceCompilerTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCResourceCompilerTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreLinkEventTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCLibrarianTool\"\r\n\t\t\t\tOutputFile=\"..\\lib\\rtmidid.lib\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCALinkTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXDCMakeTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCBscMakeTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCFxCopTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPostBuildEventTool\"\r\n\t\t\t/>\r\n\t\t</Configuration>\r\n\t\t<Configuration\r\n\t\t\tName=\"Release|Win32\"\r\n\t\t\tOutputDirectory=\"$(SolutionDir)$(ConfigurationName)\"\r\n\t\t\tIntermediateDirectory=\"$(ConfigurationName)\"\r\n\t\t\tConfigurationType=\"4\"\r\n\t\t\tCharacterSet=\"1\"\r\n\t\t\tWholeProgramOptimization=\"1\"\r\n\t\t\t>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreBuildEventTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCustomBuildTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXMLDataGeneratorTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCMIDLTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCCLCompilerTool\"\r\n\t\t\t\tOptimization=\"2\"\r\n\t\t\t\tEnableIntrinsicFunctions=\"true\"\r\n\t\t\t\tPreprocessorDefinitions=\"__WINDOWS_MM__\"\r\n\t\t\t\tRuntimeLibrary=\"2\"\r\n\t\t\t\tEnableFunctionLevelLinking=\"true\"\r\n\t\t\t\tWarningLevel=\"3\"\r\n\t\t\t\tDebugInformationFormat=\"3\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCManagedResourceCompilerTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCResourceCompilerTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPreLinkEventTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCLibrarianTool\"\r\n\t\t\t\tOutputFile=\"..\\lib\\rtmidi.lib\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCALinkTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCXDCMakeTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCBscMakeTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCFxCopTool\"\r\n\t\t\t/>\r\n\t\t\t<Tool\r\n\t\t\t\tName=\"VCPostBuildEventTool\"\r\n\t\t\t/>\r\n\t\t</Configuration>\r\n\t</Configurations>\r\n\t<References>\r\n\t</References>\r\n\t<Files>\r\n\t\t<Filter\r\n\t\t\tName=\"Source Files\"\r\n\t\t\tFilter=\"cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx\"\r\n\t\t\tUniqueIdentifier=\"{4FC737F1-C7A5-4376-A066-2A32D752A2FF}\"\r\n\t\t\t>\r\n\t\t\t<File\r\n\t\t\t\tRelativePath=\"..\\RtMidi.cpp\"\r\n\t\t\t\t>\r\n\t\t\t</File>\r\n\t\t\t<File\r\n\t\t\t\tRelativePath=\"..\\rtmidi_c.cpp\"\r\n\t\t\t\t>\r\n\t\t\t</File>\r\n\t\t</Filter>\r\n\t\t<Filter\r\n\t\t\tName=\"Header Files\"\r\n\t\t\tFilter=\"h;hpp;hxx;hm;inl;inc;xsd\"\r\n\t\t\tUniqueIdentifier=\"{93995380-89BD-4b04-88EB-625FBE52EBFB}\"\r\n\t\t\t>\r\n\t\t\t<File\r\n\t\t\t\tRelativePath=\"..\\RtError.h\"\r\n\t\t\t\t>\r\n\t\t\t</File>\r\n\t\t\t<File\r\n\t\t\t\tRelativePath=\"..\\RtMidi.h\"\r\n\t\t\t\t>\r\n\t\t\t</File>\r\n\t\t\t<File\r\n\t\t\t\tRelativePath=\"..\\rtmidi_c.h\"\r\n\t\t\t\t>\r\n\t\t\t</File>\r\n\t\t</Filter>\r\n\t\t<Filter\r\n\t\t\tName=\"Resource Files\"\r\n\t\t\tFilter=\"rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav\"\r\n\t\t\tUniqueIdentifier=\"{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}\"\r\n\t\t\t>\r\n\t\t</Filter>\r\n\t</Files>\r\n\t<Globals>\r\n\t</Globals>\r\n</VisualStudioProject>\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/rtmidi-config.in",
    "content": "#! /bin/sh\nif (test \"x$#\" != \"x1\") ; then\n  echo \"Usage: $0 [--libs | --cxxflags | --cppflags]\"\n  exit;\nfi\n\nLIBRARY=\"@LIBS@\"\nCXXFLAGS=\"@CXXFLAGS@\"\nCPPFLAGS=\"@CPPFLAGS@\"\n\nif (test \"x$1\" = \"x--libs\") ; then\n  echo \"$LIBRARY -lrtmidi\"\nelif (test \"x$1\" = \"x--cxxflags\") ; then\n  echo \"$CXXFLAGS\"\nelif (test \"x$1\" = \"x--cppflags\") ; then\n  echo \"$CPPFLAGS\"\nelse\n  echo \"Unknown option: $1\"\nfi\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/rtmidi.pc.in",
    "content": "prefix=@prefix@\nexec_prefix=${prefix}\nlibdir=${exec_prefix}/lib\nincludedir=${prefix}/include/rtmidi\n\nName: librtmidi\nDescription: RtMidi - a set of C++ classes that provide a common API for realtime MIDI input/output\nVersion: @PACKAGE_VERSION@\nRequires: @req@ \nLibs: -L${libdir} -lrtmidi\nLibs.private: -lpthread\nCflags: -pthread -I${includedir} @api@\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/rtmidi_c.cpp",
    "content": "#include <string.h>\n#include <stdlib.h>\n#include \"rtmidi_c.h\"\n#include \"RtMidi.h\"\n\nclass CallbackProxyUserData\n{\n  public:\n\tCallbackProxyUserData (RtMidiCCallback cCallback, void *userData)\n\t\t: c_callback (cCallback), user_data (userData)\n\t{\n\t}\n\tRtMidiCCallback c_callback;\n\tvoid *user_data;\n};\n\n/* RtMidi API */\nint rtmidi_get_compiled_api (enum RtMidiApi *apis) // return length for NULL argument.\n{\n\tif (!apis) {\n\t\tstd::vector<RtMidi::Api> *v = new std::vector<RtMidi::Api> ();\n\t\ttry {\n\t\t\tRtMidi::getCompiledApi (*v);\n\t\t\tint size = v->size ();\n\t\t\tdelete v;\n\t\t\treturn size;\n\t\t} catch (...) {\n\t\t\treturn -1;\n\t\t}\n\t} else {\n\t\ttry {\n\t\t\tstd::vector<RtMidi::Api> *v = new std::vector<RtMidi::Api> ();\n\t\t\tRtMidi::getCompiledApi (*v);\n\t\t\tfor (unsigned int i = 0; i < v->size (); i++)\n\t\t\t\tapis[i] = (RtMidiApi) v->at (i);\n\t\t\tdelete v;\n\t\t\treturn 0;\n\t\t} catch (...) {\n\t\t\treturn -1;\n\t\t}\n\t}\n}\n\nvoid rtmidi_error (MidiApi *api, enum RtMidiErrorType type, const char* errorString)\n{\n\tstd::string msg = errorString;\n\tapi->error ((RtMidiError::Type) type, msg);\n}\n\nvoid rtmidi_open_port (RtMidiPtr device, unsigned int portNumber, const char *portName)\n{\n    std::string name = portName;\n    try {\n        ((RtMidi*) device->ptr)->openPort (portNumber, name);\n    \n    } catch (const RtMidiError & err) {\n        device->ok  = false;\n        device->msg = err.what ();\n    }\n}\n\nvoid rtmidi_open_virtual_port (RtMidiPtr device, const char *portName)\n{\n    std::string name = portName;\n    try {\n        ((RtMidi*) device->ptr)->openVirtualPort (name);\n    \n    } catch (const RtMidiError & err) {\n        device->ok  = false;\n        device->msg = err.what ();\n    }\n\n}\n\nvoid rtmidi_close_port (RtMidiPtr device)\n{\n    try { \n        ((RtMidi*) device->ptr)->closePort ();\n\n    } catch (const RtMidiError & err) {\n        device->ok  = false;\n        device->msg = err.what ();\n    }\n}\n\nunsigned int rtmidi_get_port_count (RtMidiPtr device)\n{\n    try {\n        return ((RtMidi*) device->ptr)->getPortCount ();\n\n    } catch (const RtMidiError & err) {\n        device->ok  = false;\n        device->msg = err.what ();\n        return -1;\n    }\n}\n\nconst char* rtmidi_get_port_name (RtMidiPtr device, unsigned int portNumber)\n{\n    try {\n        std::string name = ((RtMidi*) device->ptr)->getPortName (portNumber);\n        return strdup (name.c_str ());\n    \n    } catch (const RtMidiError & err) {\n        device->ok  = false;\n        device->msg = err.what ();\n        return \"\";\n    }\n}\n\n/* RtMidiIn API */\nRtMidiInPtr rtmidi_in_create_default ()\n{\n    RtMidiWrapper* wrp = new RtMidiWrapper;\n    \n    try {\n        RtMidiIn* rIn = new RtMidiIn ();\n        \n        wrp->ptr = (void*) rIn;\n        wrp->data = 0;\n        wrp->ok  = true;\n        wrp->msg = \"\";\n    \n    } catch (const RtMidiError & err) {\n        wrp->ptr = 0;\n        wrp->data = 0;\n        wrp->ok  = false;\n        wrp->msg = err.what ();\n    }\n\n    return wrp;\n}\n\nRtMidiInPtr rtmidi_in_create (enum RtMidiApi api, const char *clientName, unsigned int queueSizeLimit)\n{\n    std::string name = clientName;\n    RtMidiWrapper* wrp = new RtMidiWrapper;\n    \n    try {\n        RtMidiIn* rIn = new RtMidiIn ((RtMidi::Api) api, name, queueSizeLimit);\n        \n        wrp->ptr = (void*) rIn;\n        wrp->data = 0;\n        wrp->ok  = true;\n        wrp->msg = \"\";\n\n    } catch (const RtMidiError & err) {\n        wrp->ptr = 0;\n        wrp->data = 0;\n        wrp->ok  = false;\n        wrp->msg = err.what ();\n    }\n\n    return wrp;\n}\n\nvoid rtmidi_in_free (RtMidiInPtr device)\n{\n    if (device->data)\n      delete (CallbackProxyUserData*) device->data;\n    delete (RtMidiIn*) device->ptr;\n    delete device;\n}\n\nenum RtMidiApi rtmidi_in_get_current_api (RtMidiPtr device)\n{\n    try {\n        return (RtMidiApi) ((RtMidiIn*) device->ptr)->getCurrentApi ();\n    \n    } catch (const RtMidiError & err) {\n        device->ok  = false;\n        device->msg = err.what ();\n\n        return RT_MIDI_API_UNSPECIFIED;\n    }\n}\n\nstatic\nvoid callback_proxy (double timeStamp, std::vector<unsigned char> *message, void *userData)\n{\n\tCallbackProxyUserData* data = reinterpret_cast<CallbackProxyUserData*> (userData);\n\tdata->c_callback (timeStamp, message->data (), message->size (), data->user_data);\n}\n\nvoid rtmidi_in_set_callback (RtMidiInPtr device, RtMidiCCallback callback, void *userData)\n{\n    device->data = (void*) new CallbackProxyUserData (callback, userData);\n    try {\n        ((RtMidiIn*) device->ptr)->setCallback (callback_proxy, device->data);\n    } catch (const RtMidiError & err) {\n        device->ok  = false;\n        device->msg = err.what ();\n        delete (CallbackProxyUserData*) device->data;\n        device->data = 0;\n    }\n}\n\nvoid rtmidi_in_cancel_callback (RtMidiInPtr device)\n{\n    try {\n        ((RtMidiIn*) device->ptr)->cancelCallback ();\n        delete (CallbackProxyUserData*) device->data;\n        device->data = 0;\n    } catch (const RtMidiError & err) {\n        device->ok  = false;\n        device->msg = err.what ();\n    }\n}\n\nvoid rtmidi_in_ignore_types (RtMidiInPtr device, bool midiSysex, bool midiTime, bool midiSense)\n{\n\t((RtMidiIn*) device->ptr)->ignoreTypes (midiSysex, midiTime, midiSense);\n}\n\ndouble rtmidi_in_get_message (RtMidiInPtr device, \n                              unsigned char *message,\n                              size_t *size)\n{\n    try {\n        // FIXME: use allocator to achieve efficient buffering\n        std::vector<unsigned char> v;\n        double ret = ((RtMidiIn*) device->ptr)->getMessage (&v);\n\n        if (v.size () > 0 && v.size() <= *size) {\n            memcpy (message, v.data (), (int) v.size ());\n        }\n\n        *size = v.size();\n        return ret;\n    } \n    catch (const RtMidiError & err) {\n        device->ok  = false;\n        device->msg = err.what ();\n        return -1;\n    }\n    catch (...) {\n        device->ok  = false;\n        device->msg = \"Unknown error\";\n        return -1;\n    }\n}\n\n/* RtMidiOut API */\nRtMidiOutPtr rtmidi_out_create_default ()\n{\n    RtMidiWrapper* wrp = new RtMidiWrapper;\n\n    try {\n        RtMidiOut* rOut = new RtMidiOut ();\n        \n        wrp->ptr = (void*) rOut;\n        wrp->data = 0;\n        wrp->ok  = true;\n        wrp->msg = \"\";\n    \n    } catch (const RtMidiError & err) {\n        wrp->ptr = 0;\n        wrp->data = 0;\n        wrp->ok  = false;\n        wrp->msg = err.what ();\n    }\n\n    return wrp;\n}\n\nRtMidiOutPtr rtmidi_out_create (enum RtMidiApi api, const char *clientName)\n{\n    RtMidiWrapper* wrp = new RtMidiWrapper;\n    std::string name = clientName;\n\n    try {\n        RtMidiOut* rOut = new RtMidiOut ((RtMidi::Api) api, name);\n        \n        wrp->ptr = (void*) rOut;\n        wrp->data = 0;\n        wrp->ok  = true;\n        wrp->msg = \"\";\n    \n    } catch (const RtMidiError & err) {\n        wrp->ptr = 0;\n        wrp->data = 0;\n        wrp->ok  = false;\n        wrp->msg = err.what ();\n    }\n\n\n    return wrp;\n}\n\nvoid rtmidi_out_free (RtMidiOutPtr device)\n{\n    delete (RtMidiOut*) device->ptr;\n    delete device;\n}\n\nenum RtMidiApi rtmidi_out_get_current_api (RtMidiPtr device)\n{\n    try {\n        return (RtMidiApi) ((RtMidiOut*) device->ptr)->getCurrentApi ();\n\n    } catch (const RtMidiError & err) {\n        device->ok  = false;\n        device->msg = err.what ();\n\n        return RT_MIDI_API_UNSPECIFIED;\n    }\n}\n\nint rtmidi_out_send_message (RtMidiOutPtr device, const unsigned char *message, int length)\n{\n    try {\n        ((RtMidiOut*) device->ptr)->sendMessage (message, length);\n        return 0;\n    }\n    catch (const RtMidiError & err) {\n        device->ok  = false;\n        device->msg = err.what ();\n        return -1;\n    }\n    catch (...) {\n        device->ok  = false;\n        device->msg = \"Unknown error\";\n        return -1;\n    }\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/rtmidi_c.h",
    "content": "\n#include <stdbool.h>\n#include <stddef.h>\n#ifndef RTMIDI_C_H\n#define RTMIDI_C_H\n\n#if defined(RTMIDI_EXPORT)\n#define RTMIDIAPI __declspec(dllexport)\n#else\n#define RTMIDIAPI //__declspec(dllimport)\n#endif\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n//! Wraps an RtMidi object for C function return statuses.\nstruct RtMidiWrapper {\n    //! The wrapped RtMidi object.\n    void* ptr;\n    void* data;\n\n    //! True when the last function call was OK. \n    bool  ok;\n\n    //! If an error occured (ok != true), set to an error message.\n    const char* msg;\n};\n\n//! Typedef for a generic RtMidi pointer.\ntypedef struct RtMidiWrapper* RtMidiPtr;\n\n//! Typedef for a generic RtMidiIn pointer.\ntypedef struct RtMidiWrapper* RtMidiInPtr;\n\n//! Typedef for a generic RtMidiOut pointer.\ntypedef struct RtMidiWrapper* RtMidiOutPtr;\n\n\nenum RtMidiApi {\n    RT_MIDI_API_UNSPECIFIED,    /*!< Search for a working compiled API. */\n    RT_MIDI_API_MACOSX_CORE,    /*!< Macintosh OS-X Core Midi API. */\n    RT_MIDI_API_LINUX_ALSA,     /*!< The Advanced Linux Sound Architecture API. */\n    RT_MIDI_API_UNIX_JACK,      /*!< The Jack Low-Latency MIDI Server API. */\n    RT_MIDI_API_WINDOWS_MM,     /*!< The Microsoft Multimedia MIDI API. */\n    RT_MIDI_API_RTMIDI_DUMMY    /*!< A compilable but non-functional API. */\n  };\n\nenum RtMidiErrorType {\n  RT_ERROR_WARNING, RT_ERROR_DEBUG_WARNING, RT_ERROR_UNSPECIFIED, RT_ERROR_NO_DEVICES_FOUND,\n  RT_ERROR_INVALID_DEVICE, RT_ERROR_MEMORY_ERROR, RT_ERROR_INVALID_PARAMETER, RT_ERROR_INVALID_USE,\n  RT_ERROR_DRIVER_ERROR, RT_ERROR_SYSTEM_ERROR, RT_ERROR_THREAD_ERROR\n};\n\n/*! The type of a RtMidi callback function.\n * \\param timeStamp   The time at which the message has been received.\n * \\param message     The midi message.\n * \\param userData    Additional user data for the callback.\n */\ntypedef void(* RtMidiCCallback) (double timeStamp, const unsigned char* message,\n                                 size_t messageSize, void *userData);\n\n\n/* RtMidi API */\n\n/*! Determine the available compiled MIDI APIs.\n * If the given `apis` parameter is null, returns the number of available APIs.\n * Otherwise, fill the given apis array with the RtMidi::Api values.\n *\n * \\param apis  An array or a null value.\n*/\nRTMIDIAPI int rtmidi_get_compiled_api (enum RtMidiApi *apis); // return length for NULL argument.\n\n//! Report an error.\nRTMIDIAPI void rtmidi_error (enum RtMidiErrorType type, const char* errorString);\n\n/*! Open a MIDI port.  \n *\n * \\param port      Must be greater than 0\n * \\param portName  Name for the application port.\n */\nRTMIDIAPI void rtmidi_open_port (RtMidiPtr device, unsigned int portNumber, const char *portName);\n\n/*! Creates a virtual MIDI port to which other software applications can \n * connect.  \n *\n * \\param portName  Name for the application port.\n */\nRTMIDIAPI void rtmidi_open_virtual_port (RtMidiPtr device, const char *portName);\n\n/*! Close a MIDI connection.\n */\nRTMIDIAPI void rtmidi_close_port (RtMidiPtr device);\n\n/*! Return the number of available MIDI ports.\n */\nRTMIDIAPI unsigned int rtmidi_get_port_count (RtMidiPtr device);\n\n/*! Return a string identifier for the specified MIDI input port number.\n */\nRTMIDIAPI const char* rtmidi_get_port_name (RtMidiPtr device, unsigned int portNumber);\n\n/* RtMidiIn API */\n\n//! Create a default RtMidiInPtr value, with no initialization.\nRTMIDIAPI RtMidiInPtr rtmidi_in_create_default ();\n\n/*! Create a  RtMidiInPtr value, with given api, clientName and queueSizeLimit.\n *\n *  \\param api            An optional API id can be specified.\n *  \\param clientName     An optional client name can be specified. This\n *                        will be used to group the ports that are created\n *                        by the application.\n *  \\param queueSizeLimit An optional size of the MIDI input queue can be\n *                        specified.\n */\nRTMIDIAPI RtMidiInPtr rtmidi_in_create (enum RtMidiApi api, const char *clientName, unsigned int queueSizeLimit);\n\n//! Deallocate the given pointer.\nRTMIDIAPI void rtmidi_in_free (RtMidiInPtr device);\n\n//! Returns the MIDI API specifier for the given instance of RtMidiIn.\nRTMIDIAPI enum RtMidiApi rtmidi_in_get_current_api (RtMidiPtr device);\n\n//! Set a callback function to be invoked for incoming MIDI messages.\nRTMIDIAPI void rtmidi_in_set_callback (RtMidiInPtr device, RtMidiCCallback callback, void *userData);\n\n//! Cancel use of the current callback function (if one exists).\nRTMIDIAPI void rtmidi_in_cancel_callback (RtMidiInPtr device);\n\n//! Specify whether certain MIDI message types should be queued or ignored during input.\nRTMIDIAPI void rtmidi_in_ignore_types (RtMidiInPtr device, bool midiSysex, bool midiTime, bool midiSense);\n\n/*! Fill the user-provided array with the data bytes for the next available\n * MIDI message in the input queue and return the event delta-time in seconds.\n *\n * \\param message   Must point to a char* that is already allocated.\n *                  SYSEX messages maximum size being 1024, a statically\n *                  allocated array could\n *                  be sufficient. \n * \\param size      Is used to return the size of the message obtained. \n */\nRTMIDIAPI double rtmidi_in_get_message (RtMidiInPtr device, unsigned char *message, size_t *size);\n\n/* RtMidiOut API */\n\n//! Create a default RtMidiInPtr value, with no initialization.\nRTMIDIAPI RtMidiOutPtr rtmidi_out_create_default ();\n\n/*! Create a RtMidiOutPtr value, with given and clientName.\n *\n *  \\param api            An optional API id can be specified.\n *  \\param clientName     An optional client name can be specified. This\n *                        will be used to group the ports that are created\n *                        by the application.\n */\nRTMIDIAPI RtMidiOutPtr rtmidi_out_create (enum RtMidiApi api, const char *clientName);\n\n//! Deallocate the given pointer.\nRTMIDIAPI void rtmidi_out_free (RtMidiOutPtr device);\n\n//! Returns the MIDI API specifier for the given instance of RtMidiOut.\nRTMIDIAPI enum RtMidiApi rtmidi_out_get_current_api (RtMidiPtr device);\n\n//! Immediately send a single message out an open MIDI output port.\nRTMIDIAPI int rtmidi_out_send_message (RtMidiOutPtr device, const unsigned char *message, int length);\n\n\n#ifdef __cplusplus\n}\n#endif\n#endif\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/Debug/.placeholder",
    "content": ""
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/Makefile.am",
    "content": "\nnoinst_PROGRAMS = midiprobe midiout qmidiin cmidiin sysextest midiclock_in midiclock_out\n\nAM_CXXFLAGS = -Wall -I$(top_srcdir)\n\nmidiprobe_SOURCES = midiprobe.cpp\nmidiprobe_LDADD = $(top_builddir)/librtmidi.la\n\nmidiout_SOURCES = midiout.cpp\nmidiout_LDADD = $(top_builddir)/librtmidi.la\n\nqmidiin_SOURCES = qmidiin.cpp\nqmidiin_LDADD = $(top_builddir)/librtmidi.la\n\ncmidiin_SOURCES = cmidiin.cpp\ncmidiin_LDADD = $(top_builddir)/librtmidi.la\n\nsysextest_SOURCES = sysextest.cpp\nsysextest_LDADD = $(top_builddir)/librtmidi.la\n\nmidiclock_in_SOURCES = midiclock.cpp\nmidiclock_in_LDADD = $(top_builddir)/librtmidi.la\n\nmidiclock_out_SOURCES = midiclock.cpp\nmidiclock_out_LDADD = $(top_builddir)/librtmidi.la\n\nEXTRA_DIST = cmidiin.dsp midiout.dsp midiprobe.dsp qmidiin.dsp\t\\\n\tsysextest.dsp RtMidi.dsw\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/Release/.placeholder",
    "content": ""
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/RtMidi.dsw",
    "content": "Microsoft Developer Studio Workspace File, Format Version 6.00\r\n# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\r\n\r\n###############################################################################\r\n\r\nProject: \"cmidiin\"=\".\\cmidiin.dsp\" - Package Owner=<4>\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<4>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\nProject: \"midiout\"=\".\\midiout.dsp\" - Package Owner=<4>\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<4>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\nProject: \"midiprobe\"=\".\\midiprobe.dsp\" - Package Owner=<4>\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<4>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\nProject: \"qmidiin\"=\".\\qmidiin.dsp\" - Package Owner=<4>\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<4>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\nProject: \"sysextest\"=\".\\sysextest.dsp\" - Package Owner=<4>\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<4>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\nGlobal:\r\n\r\nPackage=<5>\r\n{{{\r\n}}}\r\n\r\nPackage=<3>\r\n{{{\r\n}}}\r\n\r\n###############################################################################\r\n\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/cmidiin.cpp",
    "content": "//*****************************************//\n//  cmidiin.cpp\n//  by Gary Scavone, 2003-2004.\n//\n//  Simple program to test MIDI input and\n//  use of a user callback function.\n//\n//*****************************************//\n\n#include <iostream>\n#include <cstdlib>\n#include \"RtMidi.h\"\n\nvoid usage( void ) {\n  // Error function in case of incorrect command-line\n  // argument specifications.\n  std::cout << \"\\nuseage: cmidiin <port>\\n\";\n  std::cout << \"    where port = the device to use (default = 0).\\n\\n\";\n  exit( 0 );\n}\n\nvoid mycallback( double deltatime, std::vector< unsigned char > *message, void */*userData*/ )\n{\n  unsigned int nBytes = message->size();\n  for ( unsigned int i=0; i<nBytes; i++ )\n    std::cout << \"Byte \" << i << \" = \" << (int)message->at(i) << \", \";\n  if ( nBytes > 0 )\n    std::cout << \"stamp = \" << deltatime << std::endl;\n}\n\n// This function should be embedded in a try/catch block in case of\n// an exception.  It offers the user a choice of MIDI ports to open.\n// It returns false if there are no ports available.\nbool chooseMidiPort( RtMidiIn *rtmidi );\n\nint main( int argc, char ** /*argv[]*/ )\n{\n  RtMidiIn *midiin = 0;\n\n  // Minimal command-line check.\n  if ( argc > 2 ) usage();\n\n  try {\n\n    // RtMidiIn constructor\n    midiin = new RtMidiIn();\n\n    // Call function to select port.\n    if ( chooseMidiPort( midiin ) == false ) goto cleanup;\n\n    // Set our callback function.  This should be done immediately after\n    // opening the port to avoid having incoming messages written to the\n    // queue instead of sent to the callback function.\n    midiin->setCallback( &mycallback );\n\n    // Don't ignore sysex, timing, or active sensing messages.\n    midiin->ignoreTypes( false, false, false );\n\n    std::cout << \"\\nReading MIDI input ... press <enter> to quit.\\n\";\n    char input;\n    std::cin.get(input);\n\n  } catch ( RtMidiError &error ) {\n    error.printMessage();\n  }\n\n cleanup:\n\n  delete midiin;\n\n  return 0;\n}\n\nbool chooseMidiPort( RtMidiIn *rtmidi )\n{\n  std::cout << \"\\nWould you like to open a virtual input port? [y/N] \";\n\n  std::string keyHit;\n  std::getline( std::cin, keyHit );\n  if ( keyHit == \"y\" ) {\n    rtmidi->openVirtualPort();\n    return true;\n  }\n\n  std::string portName;\n  unsigned int i = 0, nPorts = rtmidi->getPortCount();\n  if ( nPorts == 0 ) {\n    std::cout << \"No input ports available!\" << std::endl;\n    return false;\n  }\n\n  if ( nPorts == 1 ) {\n    std::cout << \"\\nOpening \" << rtmidi->getPortName() << std::endl;\n  }\n  else {\n    for ( i=0; i<nPorts; i++ ) {\n      portName = rtmidi->getPortName(i);\n      std::cout << \"  Input port #\" << i << \": \" << portName << '\\n';\n    }\n\n    do {\n      std::cout << \"\\nChoose a port number: \";\n      std::cin >> i;\n    } while ( i >= nPorts );\n    std::getline( std::cin, keyHit );  // used to clear out stdin\n  }\n\n  rtmidi->openPort( i );\n\n  return true;\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/cmidiin.dsp",
    "content": "# Microsoft Developer Studio Project File - Name=\"cmidiin\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n# ** DO NOT EDIT **\r\n\r\n# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\r\n\r\nCFG=cmidiin - Win32 Debug\r\n!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n!MESSAGE use the Export Makefile command and run\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"cmidiin.mak\".\r\n!MESSAGE \r\n!MESSAGE You can specify a configuration when running NMAKE\r\n!MESSAGE by defining the macro CFG on the command line. For example:\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"cmidiin.mak\" CFG=\"cmidiin - Win32 Debug\"\r\n!MESSAGE \r\n!MESSAGE Possible choices for configuration are:\r\n!MESSAGE \r\n!MESSAGE \"cmidiin - Win32 Release\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \"cmidiin - Win32 Debug\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \r\n\r\n# Begin Project\r\n# PROP AllowPerConfigDependencies 0\r\n# PROP Scc_ProjName \"\"\r\n# PROP Scc_LocalPath \"\"\r\nCPP=cl.exe\r\nRSC=rc.exe\r\n\r\n!IF  \"$(CFG)\" == \"cmidiin - Win32 Release\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 0\r\n# PROP BASE Output_Dir \"cmidiin___Win32_Release\"\r\n# PROP BASE Intermediate_Dir \"cmidiin___Win32_Release\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 0\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Release\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /c\r\n# ADD CPP /nologo /W3 /GX /O2 /I \"../\" /D \"NDEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_MM__\" /YX /FD /c\r\n# ADD BASE RSC /l 0x409 /d \"NDEBUG\"\r\n# ADD RSC /l 0x409 /d \"NDEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /machine:I386\r\n\r\n!ELSEIF  \"$(CFG)\" == \"cmidiin - Win32 Debug\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 1\r\n# PROP BASE Output_Dir \"cmidiin___Win32_Debug\"\r\n# PROP BASE Intermediate_Dir \"cmidiin___Win32_Debug\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 1\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Debug\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /GZ /c\r\n# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I \"../\" /D \"_DEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_MM__\" /YX /FD /GZ /c\r\n# ADD BASE RSC /l 0x409 /d \"_DEBUG\"\r\n# ADD RSC /l 0x409 /d \"_DEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n\r\n!ENDIF \r\n\r\n# Begin Target\r\n\r\n# Name \"cmidiin - Win32 Release\"\r\n# Name \"cmidiin - Win32 Debug\"\r\n# Begin Group \"Source Files\"\r\n\r\n# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n# Begin Source File\r\n\r\nSOURCE=.\\cmidiin.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\RtMidi.cpp\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Header Files\"\r\n\r\n# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\RtMidi.h\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Resource Files\"\r\n\r\n# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n# End Group\r\n# End Target\r\n# End Project\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/midiclock.cpp",
    "content": "//*****************************************//\n//  midiclock.cpp\n//\n//  Simple program to test MIDI clock sync.  Run midiclock_in in one\n//  console and midiclock_out in the other, make sure to choose\n//  options that connect the clocks between programs on your platform.\n//\n//  (C)2016 Refer to README.md in this archive for copyright.\n//\n//*****************************************//\n\n#include <iostream>\n#include <cstdlib>\n#include \"RtMidi.h\"\n\n// Platform-dependent sleep routines.\n#if defined(__WINDOWS_MM__)\n  #include <windows.h>\n  #define SLEEP( milliseconds ) Sleep( (DWORD) milliseconds ) \n#else // Unix variants\n  #include <unistd.h>\n  #define SLEEP( milliseconds ) usleep( (unsigned long) (milliseconds * 1000.0) )\n#endif\n\n// These functions should be embedded in a try/catch block in case of\n// an exception.  It offers the user a choice of MIDI ports to open.\n// It returns false if there are no ports available.\nbool chooseInputPort( RtMidiIn *rtmidi );\nbool chooseOutputPort( RtMidiOut *rtmidi );\n\nvoid mycallback( double deltatime, std::vector< unsigned char > *message, void *user )\n{\n  unsigned int *clock_count = reinterpret_cast<unsigned int*>(user);\n\n  // Ignore longer messages\n  if (message->size() != 1)\n    return;\n\n  unsigned int msg = message->at(0);\n  if (msg == 0xFA)\n    std::cout << \"START received\" << std::endl;\n  if (msg == 0xFB)\n    std::cout << \"CONTINUE received\" << std::endl;\n  if (msg == 0xFC)\n    std::cout << \"STOP received\" << std::endl;\n  if (msg == 0xF8) {\n    if (++*clock_count == 24) {\n      double bpm = 60.0 / 24.0 / deltatime;\n      std::cout << \"One beat, estimated BPM = \" << bpm <<std::endl;\n      *clock_count = 0;\n    }\n  }\n  else\n    *clock_count = 0;\n}\n\nint clock_in()\n{\n  RtMidiIn *midiin = 0;\n  unsigned int clock_count = 0;\n\n  try {\n\n    // RtMidiIn constructor\n    midiin = new RtMidiIn();\n\n    // Call function to select port.\n    if ( chooseInputPort( midiin ) == false ) goto cleanup;\n\n    // Set our callback function.  This should be done immediately after\n    // opening the port to avoid having incoming messages written to the\n    // queue instead of sent to the callback function.\n    midiin->setCallback( &mycallback, &clock_count );\n\n    // Don't ignore sysex, timing, or active sensing messages.\n    midiin->ignoreTypes( false, false, false );\n\n    std::cout << \"\\nReading MIDI input ... press <enter> to quit.\\n\";\n    char input;\n    std::cin.get(input);\n\n  } catch ( RtMidiError &error ) {\n    error.printMessage();\n  }\n\n cleanup:\n\n  delete midiin;\n\n  return 0;\n}\n\nint clock_out()\n{\n  RtMidiOut *midiout = 0;\n  std::vector<unsigned char> message;\n  int sleep_ms = 0, k = 0, j = 0;\n\n  // RtMidiOut constructor\n  try {\n    midiout = new RtMidiOut();\n  }\n  catch ( RtMidiError &error ) {\n    error.printMessage();\n    exit( EXIT_FAILURE );\n  }\n\n  // Call function to select port.\n  try {\n    if ( chooseOutputPort( midiout ) == false ) goto cleanup;\n  }\n  catch ( RtMidiError &error ) {\n    error.printMessage();\n    goto cleanup;\n  }\n\n  // Period in ms = 100 BPM\n  // 100*24 ticks / 1 minute, so (60*1000) / (100*24) = 25 ms / tick\n  sleep_ms = 25;\n  std::cout << \"Generating clock at \"\n            << (60.0 / 24.0 / sleep_ms * 1000.0)\n            << \" BPM.\" << std::endl;\n\n  // Send out a series of MIDI clock messages.\n  // MIDI start\n  message.clear();\n  message.push_back( 0xFA );\n  midiout->sendMessage( &message );\n  std::cout << \"MIDI start\" << std::endl;\n\n  for (j=0; j < 8; j++)\n  {\n    if (j > 0)\n    {\n      // MIDI continue\n      message.clear();\n      message.push_back( 0xFB );\n      midiout->sendMessage( &message );\n      std::cout << \"MIDI continue\" << std::endl;\n    }\n\n    for (k=0; k < 96; k++) {\n      // MIDI clock\n      message.clear();\n      message.push_back( 0xF8 );\n      midiout->sendMessage( &message );\n      if (k % 24 == 0)\n        std::cout << \"MIDI clock (one beat)\" << std::endl;\n      SLEEP( sleep_ms );\n    }\n\n    // MIDI stop\n    message.clear();\n    message.push_back( 0xFC );\n    midiout->sendMessage( &message );\n    std::cout << \"MIDI stop\" << std::endl;\n    SLEEP( 500 );\n  }\n\n  // MIDI stop\n  message.clear();\n  message.push_back( 0xFC );\n  midiout->sendMessage( &message );\n  std::cout << \"MIDI stop\" << std::endl;\n\n  SLEEP( 500 );\n\n  std::cout << \"Done!\" << std::endl;\n\n  // Clean up\n cleanup:\n  delete midiout;\n\n  return 0;\n}\n\nint main( int, const char *argv[] )\n{\n  std::string prog(argv[0]);\n  if (prog.find(\"midiclock_in\") != prog.npos) {\n    clock_in();\n  }\n  else if (prog.find(\"midiclock_out\") != prog.npos) {\n    clock_out();\n  }\n  else {\n    std::cout << \"Don't know what to do as \" << prog << std::endl;\n  }\n  return 0;\n}\n\ntemplate<typename RT>\nbool choosePort( RT *rtmidi, const char *dir )\n{\n  std::string portName;\n  unsigned int i = 0, nPorts = rtmidi->getPortCount();\n  if ( nPorts == 0 ) {\n    std::cout << \"No \" << dir << \" ports available!\" << std::endl;\n    return false;\n  }\n\n  if ( nPorts == 1 ) {\n    std::cout << \"\\nOpening \" << rtmidi->getPortName() << std::endl;\n  }\n  else {\n    for ( i=0; i<nPorts; i++ ) {\n      portName = rtmidi->getPortName(i);\n      std::cout << \"  \" << dir << \" port #\" << i << \": \" << portName << '\\n';\n    }\n\n    do {\n      std::cout << \"\\nChoose a port number: \";\n      std::cin >> i;\n    } while ( i >= nPorts );\n  }\n\n  std::cout << \"\\n\";\n  rtmidi->openPort( i );\n\n  return true;\n}\n\nbool chooseInputPort( RtMidiIn *rtmidi )\n{\n  return choosePort<RtMidiIn>( rtmidi, \"input\" );\n}\n\nbool chooseOutputPort( RtMidiOut *rtmidi )\n{\n  return choosePort<RtMidiOut>( rtmidi, \"output\" );\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/midiout.cpp",
    "content": "//*****************************************//\n//  midiout.cpp\n//  by Gary Scavone, 2003-2004.\n//\n//  Simple program to test MIDI output.\n//\n//*****************************************//\n\n#include <iostream>\n#include <cstdlib>\n#include \"RtMidi.h\"\n\n// Platform-dependent sleep routines.\n#if defined(__WINDOWS_MM__)\n  #include <windows.h>\n  #define SLEEP( milliseconds ) Sleep( (DWORD) milliseconds ) \n#else // Unix variants\n  #include <unistd.h>\n  #define SLEEP( milliseconds ) usleep( (unsigned long) (milliseconds * 1000.0) )\n#endif\n\n// This function should be embedded in a try/catch block in case of\n// an exception.  It offers the user a choice of MIDI ports to open.\n// It returns false if there are no ports available.\nbool chooseMidiPort( RtMidiOut *rtmidi );\n\nint main( void )\n{\n  RtMidiOut *midiout = 0;\n  std::vector<unsigned char> message;\n\n  // RtMidiOut constructor\n  try {\n    midiout = new RtMidiOut();\n  }\n  catch ( RtMidiError &error ) {\n    error.printMessage();\n    exit( EXIT_FAILURE );\n  }\n\n  // Call function to select port.\n  try {\n    if ( chooseMidiPort( midiout ) == false ) goto cleanup;\n  }\n  catch ( RtMidiError &error ) {\n    error.printMessage();\n    goto cleanup;\n  }\n\n  // Send out a series of MIDI messages.\n\n  // Program change: 192, 5\n  message.push_back( 192 );\n  message.push_back( 5 );\n  midiout->sendMessage( &message );\n\n  SLEEP( 500 );\n\n  message[0] = 0xF1;\n  message[1] = 60;\n  midiout->sendMessage( &message );\n\n  // Control Change: 176, 7, 100 (volume)\n  message[0] = 176;\n  message[1] = 7;\n  message.push_back( 100 );\n  midiout->sendMessage( &message );\n\n  // Note On: 144, 64, 90\n  message[0] = 144;\n  message[1] = 64;\n  message[2] = 90;\n  midiout->sendMessage( &message );\n\n  SLEEP( 500 );\n\n  // Note Off: 128, 64, 40\n  message[0] = 128;\n  message[1] = 64;\n  message[2] = 40;\n  midiout->sendMessage( &message );\n\n  SLEEP( 500 );\n\n  // Control Change: 176, 7, 40\n  message[0] = 176;\n  message[1] = 7;\n  message[2] = 40;\n  midiout->sendMessage( &message );\n\n  SLEEP( 500 );\n\n  // Sysex: 240, 67, 4, 3, 2, 247\n  message[0] = 240;\n  message[1] = 67;\n  message[2] = 4;\n  message.push_back( 3 );\n  message.push_back( 2 );\n  message.push_back( 247 );\n  midiout->sendMessage( &message );\n\n  // Clean up\n cleanup:\n  delete midiout;\n\n  return 0;\n}\n\nbool chooseMidiPort( RtMidiOut *rtmidi )\n{\n  std::cout << \"\\nWould you like to open a virtual output port? [y/N] \";\n\n  std::string keyHit;\n  std::getline( std::cin, keyHit );\n  if ( keyHit == \"y\" ) {\n    rtmidi->openVirtualPort();\n    return true;\n  }\n\n  std::string portName;\n  unsigned int i = 0, nPorts = rtmidi->getPortCount();\n  if ( nPorts == 0 ) {\n    std::cout << \"No output ports available!\" << std::endl;\n    return false;\n  }\n\n  if ( nPorts == 1 ) {\n    std::cout << \"\\nOpening \" << rtmidi->getPortName() << std::endl;\n  }\n  else {\n    for ( i=0; i<nPorts; i++ ) {\n      portName = rtmidi->getPortName(i);\n      std::cout << \"  Output port #\" << i << \": \" << portName << '\\n';\n    }\n\n    do {\n      std::cout << \"\\nChoose a port number: \";\n      std::cin >> i;\n    } while ( i >= nPorts );\n  }\n\n  std::cout << \"\\n\";\n  rtmidi->openPort( i );\n\n  return true;\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/midiout.dsp",
    "content": "# Microsoft Developer Studio Project File - Name=\"midiout\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n# ** DO NOT EDIT **\r\n\r\n# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\r\n\r\nCFG=midiout - Win32 Debug\r\n!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n!MESSAGE use the Export Makefile command and run\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"midiout.mak\".\r\n!MESSAGE \r\n!MESSAGE You can specify a configuration when running NMAKE\r\n!MESSAGE by defining the macro CFG on the command line. For example:\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"midiout.mak\" CFG=\"midiout - Win32 Debug\"\r\n!MESSAGE \r\n!MESSAGE Possible choices for configuration are:\r\n!MESSAGE \r\n!MESSAGE \"midiout - Win32 Release\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \"midiout - Win32 Debug\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \r\n\r\n# Begin Project\r\n# PROP AllowPerConfigDependencies 0\r\n# PROP Scc_ProjName \"\"\r\n# PROP Scc_LocalPath \"\"\r\nCPP=cl.exe\r\nRSC=rc.exe\r\n\r\n!IF  \"$(CFG)\" == \"midiout - Win32 Release\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 0\r\n# PROP BASE Output_Dir \"midiout___Win32_Release\"\r\n# PROP BASE Intermediate_Dir \"midiout___Win32_Release\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 0\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Release\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /c\r\n# ADD CPP /nologo /W3 /GX /O2 /I \"../\" /D \"NDEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_MM__\" /YX /FD /c\r\n# ADD BASE RSC /l 0x409 /d \"NDEBUG\"\r\n# ADD RSC /l 0x409 /d \"NDEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /machine:I386\r\n\r\n!ELSEIF  \"$(CFG)\" == \"midiout - Win32 Debug\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 1\r\n# PROP BASE Output_Dir \"midiout___Win32_Debug\"\r\n# PROP BASE Intermediate_Dir \"midiout___Win32_Debug\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 1\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Debug\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /GZ /c\r\n# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I \"../\" /D \"_DEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_MM__\" /YX /FD /GZ /c\r\n# ADD BASE RSC /l 0x409 /d \"_DEBUG\"\r\n# ADD RSC /l 0x409 /d \"_DEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n\r\n!ENDIF \r\n\r\n# Begin Target\r\n\r\n# Name \"midiout - Win32 Release\"\r\n# Name \"midiout - Win32 Debug\"\r\n# Begin Group \"Source Files\"\r\n\r\n# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n# Begin Source File\r\n\r\nSOURCE=.\\midiout.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\RtMidi.cpp\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Header Files\"\r\n\r\n# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\RtMidi.h\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Resource Files\"\r\n\r\n# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n# End Group\r\n# End Target\r\n# End Project\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/midiprobe.cpp",
    "content": "// midiprobe.cpp\n//\n// Simple program to check MIDI inputs and outputs.\n//\n// by Gary Scavone, 2003-2012.\n\n#include <iostream>\n#include <cstdlib>\n#include <map>\n#include \"RtMidi.h\"\n\nint main()\n{\n  // Create an api map.\n  std::map<int, std::string> apiMap;\n  apiMap[RtMidi::MACOSX_CORE] = \"OS-X CoreMidi\";\n  apiMap[RtMidi::WINDOWS_MM] = \"Windows MultiMedia\";\n  apiMap[RtMidi::UNIX_JACK] = \"Jack Client\";\n  apiMap[RtMidi::LINUX_ALSA] = \"Linux ALSA\";\n  apiMap[RtMidi::RTMIDI_DUMMY] = \"RtMidi Dummy\";\n\n  std::vector< RtMidi::Api > apis;\n  RtMidi :: getCompiledApi( apis );\n\n  std::cout << \"\\nCompiled APIs:\\n\";\n  for ( unsigned int i=0; i<apis.size(); i++ )\n    std::cout << \"  \" << apiMap[ apis[i] ] << std::endl;\n\n  RtMidiIn  *midiin = 0;\n  RtMidiOut *midiout = 0;\n\n  try {\n\n    // RtMidiIn constructor ... exception possible\n    midiin = new RtMidiIn();\n\n    std::cout << \"\\nCurrent input API: \" << apiMap[ midiin->getCurrentApi() ] << std::endl;\n\n    // Check inputs.\n    unsigned int nPorts = midiin->getPortCount();\n    std::cout << \"\\nThere are \" << nPorts << \" MIDI input sources available.\\n\";\n\n    for ( unsigned i=0; i<nPorts; i++ ) {\n      std::string portName = midiin->getPortName(i);\n      std::cout << \"  Input Port #\" << i+1 << \": \" << portName << '\\n';\n    }\n\n    // RtMidiOut constructor ... exception possible\n    midiout = new RtMidiOut();\n\n    std::cout << \"\\nCurrent output API: \" << apiMap[ midiout->getCurrentApi() ] << std::endl;\n\n    // Check outputs.\n    nPorts = midiout->getPortCount();\n    std::cout << \"\\nThere are \" << nPorts << \" MIDI output ports available.\\n\";\n\n    for ( unsigned i=0; i<nPorts; i++ ) {\n      std::string portName = midiout->getPortName(i);\n      std::cout << \"  Output Port #\" << i+1 << \": \" << portName << std::endl;\n    }\n    std::cout << std::endl;\n\n  } catch ( RtMidiError &error ) {\n    error.printMessage();\n  }\n\n  delete midiin;\n  delete midiout;\n\n  return 0;\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/midiprobe.dsp",
    "content": "# Microsoft Developer Studio Project File - Name=\"midiprobe\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n# ** DO NOT EDIT **\r\n\r\n# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\r\n\r\nCFG=midiprobe - Win32 Debug\r\n!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n!MESSAGE use the Export Makefile command and run\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"midiprobe.mak\".\r\n!MESSAGE \r\n!MESSAGE You can specify a configuration when running NMAKE\r\n!MESSAGE by defining the macro CFG on the command line. For example:\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"midiprobe.mak\" CFG=\"midiprobe - Win32 Debug\"\r\n!MESSAGE \r\n!MESSAGE Possible choices for configuration are:\r\n!MESSAGE \r\n!MESSAGE \"midiprobe - Win32 Release\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \"midiprobe - Win32 Debug\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \r\n\r\n# Begin Project\r\n# PROP AllowPerConfigDependencies 0\r\n# PROP Scc_ProjName \"\"\r\n# PROP Scc_LocalPath \"\"\r\nCPP=cl.exe\r\nRSC=rc.exe\r\n\r\n!IF  \"$(CFG)\" == \"midiprobe - Win32 Release\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 0\r\n# PROP BASE Output_Dir \"midiprobe___Win32_Release\"\r\n# PROP BASE Intermediate_Dir \"midiprobe___Win32_Release\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 0\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Release\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /c\r\n# ADD CPP /nologo /W3 /GX /O2 /I \"../\" /D \"NDEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_MM__\" /YX /FD /c\r\n# ADD BASE RSC /l 0x409 /d \"NDEBUG\"\r\n# ADD RSC /l 0x409 /d \"NDEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib  kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /machine:I386\r\n\r\n!ELSEIF  \"$(CFG)\" == \"midiprobe - Win32 Debug\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 1\r\n# PROP BASE Output_Dir \"midiprobe___Win32_Debug\"\r\n# PROP BASE Intermediate_Dir \"midiprobe___Win32_Debug\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 1\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Debug\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /GZ  /c\r\n# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I \"../\" /D \"_DEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_MM__\" /YX /FD /GZ  /c\r\n# ADD BASE RSC /l 0x409 /d \"_DEBUG\"\r\n# ADD RSC /l 0x409 /d \"_DEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib  kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n\r\n!ENDIF \r\n\r\n# Begin Target\r\n\r\n# Name \"midiprobe - Win32 Release\"\r\n# Name \"midiprobe - Win32 Debug\"\r\n# Begin Group \"Source Files\"\r\n\r\n# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n# Begin Source File\r\n\r\nSOURCE=.\\midiprobe.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\RtMidi.cpp\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Header Files\"\r\n\r\n# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\RtMidi.h\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Resource Files\"\r\n\r\n# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n# End Group\r\n# End Target\r\n# End Project\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/qmidiin.cpp",
    "content": "//*****************************************//\n//  qmidiin.cpp\n//  by Gary Scavone, 2003-2004.\n//\n//  Simple program to test MIDI input and\n//  retrieval from the queue.\n//\n//*****************************************//\n\n#include <iostream>\n#include <cstdlib>\n#include <signal.h>\n#include \"RtMidi.h\"\n\n// Platform-dependent sleep routines.\n#if defined(__WINDOWS_MM__)\n  #include <windows.h>\n  #define SLEEP( milliseconds ) Sleep( (DWORD) milliseconds ) \n#else // Unix variants\n  #include <unistd.h>\n  #define SLEEP( milliseconds ) usleep( (unsigned long) (milliseconds * 1000.0) )\n#endif\n\nbool done;\nstatic void finish( int /*ignore*/ ){ done = true; }\n\nvoid usage( void ) {\n  // Error function in case of incorrect command-line\n  // argument specifications.\n  std::cout << \"\\nusage: qmidiin <port>\\n\";\n  std::cout << \"    where port = the device to use (default = 0).\\n\\n\";\n  exit( 0 );\n}\n\nint main( int argc, char *argv[] )\n{\n  RtMidiIn *midiin = 0;\n  std::vector<unsigned char> message;\n  int nBytes, i;\n  double stamp;\n\n  // Minimal command-line check.\n  if ( argc > 2 ) usage();\n\n  // RtMidiIn constructor\n  try {\n    midiin = new RtMidiIn();\n  }\n  catch ( RtMidiError &error ) {\n    error.printMessage();\n    exit( EXIT_FAILURE );\n  }\n\n  // Check available ports vs. specified.\n  unsigned int port = 0;\n  unsigned int nPorts = midiin->getPortCount();\n  if ( argc == 2 ) port = (unsigned int) atoi( argv[1] );\n  if ( port >= nPorts ) {\n    delete midiin;\n    std::cout << \"Invalid port specifier!\\n\";\n    usage();\n  }\n\n  try {\n    midiin->openPort( port );\n  }\n  catch ( RtMidiError &error ) {\n    error.printMessage();\n    goto cleanup;\n  }\n\n  // Don't ignore sysex, timing, or active sensing messages.\n  midiin->ignoreTypes( false, false, false );\n\n  // Install an interrupt handler function.\n  done = false;\n  (void) signal(SIGINT, finish);\n\n  // Periodically check input queue.\n  std::cout << \"Reading MIDI from port \" << midiin->getPortName() << \" ... quit with Ctrl-C.\\n\";\n  while ( !done ) {\n    stamp = midiin->getMessage( &message );\n    nBytes = message.size();\n    for ( i=0; i<nBytes; i++ )\n      std::cout << \"Byte \" << i << \" = \" << (int)message[i] << \", \";\n    if ( nBytes > 0 )\n      std::cout << \"stamp = \" << stamp << std::endl;\n\n    // Sleep for 10 milliseconds.\n    SLEEP( 10 );\n  }\n\n  // Clean up\n cleanup:\n  delete midiin;\n\n  return 0;\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/qmidiin.dsp",
    "content": "# Microsoft Developer Studio Project File - Name=\"qmidiin\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n# ** DO NOT EDIT **\r\n\r\n# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\r\n\r\nCFG=qmidiin - Win32 Debug\r\n!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n!MESSAGE use the Export Makefile command and run\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"qmidiin.mak\".\r\n!MESSAGE \r\n!MESSAGE You can specify a configuration when running NMAKE\r\n!MESSAGE by defining the macro CFG on the command line. For example:\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"qmidiin.mak\" CFG=\"qmidiin - Win32 Debug\"\r\n!MESSAGE \r\n!MESSAGE Possible choices for configuration are:\r\n!MESSAGE \r\n!MESSAGE \"qmidiin - Win32 Release\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \"qmidiin - Win32 Debug\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \r\n\r\n# Begin Project\r\n# PROP AllowPerConfigDependencies 0\r\n# PROP Scc_ProjName \"\"\r\n# PROP Scc_LocalPath \"\"\r\nCPP=cl.exe\r\nRSC=rc.exe\r\n\r\n!IF  \"$(CFG)\" == \"qmidiin - Win32 Release\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 0\r\n# PROP BASE Output_Dir \"qmidiin___Win32_Release\"\r\n# PROP BASE Intermediate_Dir \"qmidiin___Win32_Release\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 0\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Release\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /c\r\n# ADD CPP /nologo /W3 /GX /O2 /I \"../\" /D \"NDEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_MM__\" /YX /FD /c\r\n# ADD BASE RSC /l 0x409 /d \"NDEBUG\"\r\n# ADD RSC /l 0x409 /d \"NDEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /machine:I386\r\n\r\n!ELSEIF  \"$(CFG)\" == \"qmidiin - Win32 Debug\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 1\r\n# PROP BASE Output_Dir \"qmidiin___Win32_Debug\"\r\n# PROP BASE Intermediate_Dir \"qmidiin___Win32_Debug\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 1\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Debug\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /GZ /c\r\n# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I \"../\" /D \"_DEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_MM__\" /YX /FD /GZ /c\r\n# ADD BASE RSC /l 0x409 /d \"_DEBUG\"\r\n# ADD RSC /l 0x409 /d \"_DEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n\r\n!ENDIF \r\n\r\n# Begin Target\r\n\r\n# Name \"qmidiin - Win32 Release\"\r\n# Name \"qmidiin - Win32 Debug\"\r\n# Begin Group \"Source Files\"\r\n\r\n# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n# Begin Source File\r\n\r\nSOURCE=.\\qmidiin.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=..\\RtMidi.cpp\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Header Files\"\r\n\r\n# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\RtMidi.h\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Resource Files\"\r\n\r\n# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n# End Group\r\n# End Target\r\n# End Project\r\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/sysextest.cpp",
    "content": "//*****************************************//\n//  sysextest.cpp\n//  by Gary Scavone, 2003-2005.\n//\n//  Simple program to test MIDI sysex sending and receiving.\n//\n//*****************************************//\n\n#include <iostream>\n#include <cstdlib>\n#include <typeinfo>\n#include \"RtMidi.h\"\n\nvoid usage( void ) {\n  std::cout << \"\\nuseage: sysextest N\\n\";\n  std::cout << \"    where N = length of sysex message to send / receive.\\n\\n\";\n  exit( 0 );\n}\n\n// Platform-dependent sleep routines.\n#if defined(__WINDOWS_MM__)\n  #include <windows.h>\n  #define SLEEP( milliseconds ) Sleep( (DWORD) milliseconds ) \n#else // Unix variants\n  #include <unistd.h>\n  #define SLEEP( milliseconds ) usleep( (unsigned long) (milliseconds * 1000.0) )\n#endif\n\n// This function should be embedded in a try/catch block in case of\n// an exception.  It offers the user a choice of MIDI ports to open.\n// It returns false if there are no ports available.\nbool chooseMidiPort( RtMidi *rtmidi );\n\nvoid mycallback( double deltatime, std::vector< unsigned char > *message, void * /*userData*/ )\n{\n  unsigned int nBytes = message->size();\n  for ( unsigned int i=0; i<nBytes; i++ )\n    std::cout << \"Byte \" << i << \" = \" << (int)message->at(i) << \", \";\n  if ( nBytes > 0 )\n    std::cout << \"stamp = \" << deltatime << std::endl;\n}\n\nint main( int argc, char *argv[] )\n{\n  RtMidiOut *midiout = 0;\n  RtMidiIn *midiin = 0;\n  std::vector<unsigned char> message;\n  unsigned int i, nBytes;\n\n  // Minimal command-line check.\n  if ( argc != 2 ) usage();\n  nBytes = (unsigned int) atoi( argv[1] );\n\n  // RtMidiOut and RtMidiIn constructors\n  try {\n    midiout = new RtMidiOut();\n    midiin = new RtMidiIn();\n  }\n  catch ( RtMidiError &error ) {\n    error.printMessage();\n    goto cleanup;\n  }\n\n  // Don't ignore sysex, timing, or active sensing messages.\n  midiin->ignoreTypes( false, true, true );\n\n  try {\n    if ( chooseMidiPort( midiin ) == false ) goto cleanup;\n    if ( chooseMidiPort( midiout ) == false ) goto cleanup;\n  }\n  catch ( RtMidiError &error ) {\n    error.printMessage();\n    goto cleanup;\n  }\n\n  midiin->setCallback( &mycallback );\n\n  message.push_back( 0xF6 );\n  midiout->sendMessage( &message );\n  SLEEP( 500 ); // pause a little\n\n  // Create a long sysex message of numbered bytes and send it out ... twice.\n  for ( int n=0; n<2; n++ ) {\n    message.clear();\n    message.push_back( 240 );\n    for ( i=0; i<nBytes; i++ )\n      message.push_back( i % 128 );\n    message.push_back( 247 );\n    midiout->sendMessage( &message );\n\n    SLEEP( 500 ); // pause a little\n  }\n\n  // Clean up\n cleanup:\n  delete midiout;\n  delete midiin;\n\n  return 0;\n}\n\nbool chooseMidiPort( RtMidi *rtmidi )\n{\n  bool isInput = false;\n  if ( typeid( *rtmidi ) == typeid( RtMidiIn ) )\n    isInput = true;\n\n  if ( isInput )\n    std::cout << \"\\nWould you like to open a virtual input port? [y/N] \";\n  else\n    std::cout << \"\\nWould you like to open a virtual output port? [y/N] \";\n\n  std::string keyHit;\n  std::getline( std::cin, keyHit );\n  if ( keyHit == \"y\" ) {\n    rtmidi->openVirtualPort();\n    return true;\n  }\n\n  std::string portName;\n  unsigned int i = 0, nPorts = rtmidi->getPortCount();\n  if ( nPorts == 0 ) {\n    if ( isInput )\n      std::cout << \"No input ports available!\" << std::endl;\n    else\n      std::cout << \"No output ports available!\" << std::endl;\n    return false;\n  }\n\n  if ( nPorts == 1 ) {\n    std::cout << \"\\nOpening \" << rtmidi->getPortName() << std::endl;\n  }\n  else {\n    for ( i=0; i<nPorts; i++ ) {\n      portName = rtmidi->getPortName(i);\n      if ( isInput )\n        std::cout << \"  Input port #\" << i << \": \" << portName << '\\n';\n      else\n        std::cout << \"  Output port #\" << i << \": \" << portName << '\\n';\n    }\n\n    do {\n      std::cout << \"\\nChoose a port number: \";\n      std::cin >> i;\n    } while ( i >= nPorts );\n  }\n\n  std::cout << std::endl;\n  rtmidi->openPort( i );\n\n  return true;\n}\n"
  },
  {
    "path": "vendor/github.com/thestk/rtmidi/tests/sysextest.dsp",
    "content": "# Microsoft Developer Studio Project File - Name=\"sysextest\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n# ** DO NOT EDIT **\r\n\r\n# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\r\n\r\nCFG=sysextest - Win32 Debug\r\n!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n!MESSAGE use the Export Makefile command and run\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"sysextest.mak\".\r\n!MESSAGE \r\n!MESSAGE You can specify a configuration when running NMAKE\r\n!MESSAGE by defining the macro CFG on the command line. For example:\r\n!MESSAGE \r\n!MESSAGE NMAKE /f \"sysextest.mak\" CFG=\"sysextest - Win32 Debug\"\r\n!MESSAGE \r\n!MESSAGE Possible choices for configuration are:\r\n!MESSAGE \r\n!MESSAGE \"sysextest - Win32 Release\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \"sysextest - Win32 Debug\" (based on \"Win32 (x86) Console Application\")\r\n!MESSAGE \r\n\r\n# Begin Project\r\n# PROP AllowPerConfigDependencies 0\r\n# PROP Scc_ProjName \"\"\r\n# PROP Scc_LocalPath \"\"\r\nCPP=cl.exe\r\nRSC=rc.exe\r\n\r\n!IF  \"$(CFG)\" == \"sysextest - Win32 Release\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 0\r\n# PROP BASE Output_Dir \"sysextest___Win32_Release\"\r\n# PROP BASE Intermediate_Dir \"sysextest___Win32_Release\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 0\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Release\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /c\r\n# ADD CPP /nologo /W3 /GR /GX /O2 /I \"../\" /D \"NDEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_MM__\" /YX /FD /c\r\n# ADD BASE RSC /l 0x409 /d \"NDEBUG\"\r\n# ADD RSC /l 0x409 /d \"NDEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /machine:I386\r\n\r\n!ELSEIF  \"$(CFG)\" == \"sysextest - Win32 Debug\"\r\n\r\n# PROP BASE Use_MFC 0\r\n# PROP BASE Use_Debug_Libraries 1\r\n# PROP BASE Output_Dir \"sysextest___Win32_Debug\"\r\n# PROP BASE Intermediate_Dir \"sysextest___Win32_Debug\"\r\n# PROP BASE Target_Dir \"\"\r\n# PROP Use_MFC 0\r\n# PROP Use_Debug_Libraries 1\r\n# PROP Output_Dir \"\"\r\n# PROP Intermediate_Dir \"Debug\"\r\n# PROP Ignore_Export_Lib 0\r\n# PROP Target_Dir \"\"\r\n# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_CONSOLE\" /D \"_MBCS\" /YX /FD /GZ /c\r\n# ADD CPP /nologo /W3 /Gm /GR /GX /ZI /Od /I \"../\" /D \"_DEBUG\" /D \"WIN32\" /D \"_CONSOLE\" /D \"_MBCS\" /D \"__WINDOWS_MM__\" /YX /FD /GZ /c\r\n# ADD BASE RSC /l 0x409 /d \"_DEBUG\"\r\n# ADD RSC /l 0x409 /d \"_DEBUG\"\r\nBSC32=bscmake.exe\r\n# ADD BASE BSC32 /nologo\r\n# ADD BSC32 /nologo\r\nLINK32=link.exe\r\n# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r\n\r\n!ENDIF \r\n\r\n# Begin Target\r\n\r\n# Name \"sysextest - Win32 Release\"\r\n# Name \"sysextest - Win32 Debug\"\r\n# Begin Group \"Source Files\"\r\n\r\n# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\RtMidi.cpp\r\n# End Source File\r\n# Begin Source File\r\n\r\nSOURCE=.\\sysextest.cpp\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Header Files\"\r\n\r\n# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n# Begin Source File\r\n\r\nSOURCE=..\\RtMidi.h\r\n# End Source File\r\n# End Group\r\n# Begin Group \"Resource Files\"\r\n\r\n# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n# End Group\r\n# End Target\r\n# End Project\r\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/.gitattributes",
    "content": "*.h linguist-language=c\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/.gitignore",
    "content": "# Build atrifacts\n/examples/minimal-go/minimal-go\n/examples/minimal/minimal\n/examples/minimal/minimal.exe\n/examples/minimal/build\n/examples/timer-cxx/build\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/.travis.yml",
    "content": "language: go\n\ngo: \n - 1.x\n\nmatrix:\n  include:\n    - os: linux\n      before_install:\n        - sudo add-apt-repository ppa:webkit-team/ppa -y\n        - sudo apt-get update\n        - sudo apt-get install libwebkit2gtk-4.0-dev -y\n    - os: osx\n      osx_image: xcode8.3\n\nscript:\n  - cd examples/minimal && mkdir -p build && cd build && cmake .. && make && ls -l && cd ../../..\n  - cd examples/timer-cxx && mkdir -p build && cd build && cmake .. && make && ls -l && cd ../../..\n  - cd examples/minimal-go && go build && ls -l && cd ../..\n  - cd examples/todo-go && go build && ls -l && cd ../..\n  - cd examples/page-load-go && go build && ls -l && cd ../..\n  - cd examples/window-go && go build && ls -l && cd ../..\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 2.8)\n\nproject(webview)\n\nadd_library(webview INTERFACE)\ntarget_include_directories(webview INTERFACE \"${PROJECT_SOURCE_DIR}\")\nif(APPLE)\n\ttarget_compile_definitions(webview INTERFACE \"-DWEBVIEW_COCOA=1\")\n\ttarget_compile_options(webview INTERFACE \"-x\" \"objective-c\")\n\ttarget_link_libraries(webview INTERFACE \"-framework Cocoa\" \"-framework WebKit\")\nelseif(WIN32)\n\ttarget_compile_definitions(webview INTERFACE \"-DWEBVIEW_WINAPI=1\")\n\ttarget_link_libraries(webview INTERFACE ole32 comctl32 oleaut32 uuid)\nelse()\n\ttarget_compile_definitions(webview INTERFACE \"-DWEBVIEW_GTK=1\")\n\tfind_package(PkgConfig REQUIRED)\n\tpkg_check_modules(GTK3 REQUIRED gtk+-3.0)\n\tpkg_check_modules(WEBKIT REQUIRED webkit2gtk-4.0)\n\ttarget_include_directories(webview INTERFACE ${GTK3_INCLUDE_DIRS} ${WEBKIT_INCLUDE_DIRS} ${PROJECT_SOURCE_DIR})\n\ttarget_link_libraries(webview INTERFACE ${GTK3_LIBRARIES} ${WEBKIT_LIBRARIES})\nendif()\ntarget_sources(webview INTERFACE \"${PROJECT_SOURCE_DIR}/webview.h\")\n\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/LICENSE",
    "content": "MIT License\n\nCopyright (c) 2017 Serge Zaitsev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/README.md",
    "content": "# webview\n\n[![Build Status](https://travis-ci.org/zserge/webview.svg?branch=master)](https://travis-ci.org/zserge/webview)\n[![Build status](https://ci.appveyor.com/api/projects/status/ksii33qx18d94h6v?svg=true)](https://ci.appveyor.com/project/zserge/webview)\n[![GoDoc](https://godoc.org/github.com/zserge/webview?status.svg)](https://godoc.org/github.com/zserge/webview)\n[![Go Report Card](https://goreportcard.com/badge/github.com/zserge/webview)](https://goreportcard.com/report/github.com/zserge/webview)\n\n\nA tiny cross-platform webview library for C/C++/Golang to build modern cross-platform GUI.\n\nIt supports two-way JavaScript bindings (to call JavaScript from C/C++/Go and to call C/C++/Go from JavaScript).\n\nIt uses Cocoa/WebKit on macOS, gtk-webkit on Linux and MSHTML (IE10/11) on Windows.\n\n<p align=\"center\"><img alt=\"linux\" src=\"examples/todo-go/screenshots/screenshots.png\"></p>\n\n## Webview for Go developers\n\nIf you are interested in writing Webview apps in C/C++ - skip to the next section.\n\n### Getting started\n\nInstall Webview library with `go get`:\n\n```\n$ go get github.com/zserge/webview\n```\n\nImport the package and start using it:\n\n```go\npackage main\n\nimport \"github.com/zserge/webview\"\n\nfunc main() {\n\t// Open wikipedia in a 800x600 resizable window\n\twebview.Open(\"Minimal webview example\",\n\t\t\"https://en.m.wikipedia.org/wiki/Main_Page\", 800, 600, true)\n}\n```\n\nIt is not recommended to use `go run` (although it works perfectly fine on Linux). Use `go build` instead:\n\n```bash\n# Linux\n$ go build -o webview-example && ./webview-example\n\n# MacOS uses app bundles for GUI apps\n$ mkdir -p example.app/Contents/MacOS\n$ go build -o example.app/Contents/MacOS/example\n$ open example.app # Or click on the app in Finder\n\n# Windows requires special linker flags for GUI apps.\n# It's also recommended to use TDM-GCC-64 compiler for CGo.\n# http://tdm-gcc.tdragon.net/download\n$ go build -ldflags=\"-H windowsgui\" -o webview-example.exe\n```\n\n### API\n\nSee [godoc](https://godoc.org/github.com/zserge/webview).\n\n### How to serve or inject the initial HTML/CSS/JavaScript into the webview?\n\nFirst of all, you probably want to embed your assets (HTML/CSS/JavaScript) into the binary to have a standalone executable. Consider using [go-bindata](https://github.com/jteeuwen/go-bindata) or any other similar tools.\n\nNow there are two major approaches to deploy the content:\n\n* Serve HTML/CSS/JS with an embedded HTTP server\n* Injecting HTML/CSS/JS via JavaScript binding API\n\nTo serve the content it is recommended to use ephemeral ports:\n\n```go\nln, err := net.Listen(\"tcp\", \"127.0.0.1:0\")\nif err != nil {\n\tlog.Fatal(err)\n}\ndefer ln.Close()\ngo func() {\n \t// Set up your http server here\n\tlog.Fatal(http.Serve(ln, nil))\n}()\nwebview.Open(\"Hello\", \"http://\"+ln.Addr().String(), 400, 300, false)\n```\n\nInjecting the content via JS bindings is a bit more complicated, but feels more solid and does not expose any additional open TCP ports.\n\nLeave `webview.Settings.URL` empty to start with a bare minimal HTML5. It will open a webview with `<div id=\"app\"></div>` in it. Alternatively, use data URI to inject custom HTML code (don't forget to URL-encode it):\n\n```go\nconst myHTML = `<!doctype html><html>....</html>`\nw := webview.New(webview.Settings{\n\tURL: `data:text/html,` + url.PathEscape(myHTML),\n})\n```\n\nKeep your initial HTML short (a few kilobytes maximum).\n\nNow you can inject more JavaScrtipt once the webview becomes ready using `webview.Eval()`. You can also inject CSS styles using JavaScript:\n\n```go\nw.Dispatch(func() {\n\t// Inject CSS\n\tw.Eval(fmt.Sprintf(`(function(css){\n\t\tvar style = document.createElement('style');\n\t\tvar head = document.head || document.getElementsByTagName('head')[0];\n\t\tstyle.setAttribute('type', 'text/css');\n\t\tif (style.styleSheet) {\n\t\t\tstyle.styleSheet.cssText = css;\n\t\t} else {\n\t\t\tstyle.appendChild(document.createTextNode(css));\n\t\t}\n\t\thead.appendChild(style);\n\t})(\"%s\")`, template.JSEscapeString(myStylesCSS)))\n\t// Inject JS\n\tw.Eval(myJSFramework)\n\tw.Eval(myAppJS)\n})\n```\n\nThis works fairly well across the platforms, see `counter-go` example for more details about how make a webview app with no web server. It also demonstrates how to use ReactJS, VueJS or Picodom with webview.\n\n### How to communicate between native Go and web UI?\n\nYou already have seen how to use `w.Eval()` to run Javascript inside the webview. There is also a way to call Go code from JavaScript.\n\nOn the low level there is a special callback, `webview.Settings.ExternalInvokeCallback` that receives a string argument. This string can be passed from JavaScript using `window.external.invoke_(someString)`.\n\nThis might seem very inconvenient, and that is why there is a dedicated `webview.Bind()` API call. It binds an existing Go object (struct or struct pointer) and creates/injects JS API for it. Now you can call JS methods and they will result in calling native Go methods. Even more, if you modify the Go object - it can be automatically serialized to JSON and passed to the web UI to keep things in sync.\n\nPlease, see `counter-go` example for more details about how to bind Go controllers to the web UI.\n\n## Debugging and development tips\n\nIf terminal output is unavailable (e.g. if you launch app bundle on MacOS or\nGUI app on Windows) you may use `webview.Debug()` and `webview.Debugf()` to\nprint logs. On MacOS such logs will be printed via NSLog and can be seen in the\n`Console` app. On Windows they use `OutputDebugString` and can be seen using\n`DebugView` app. On Linux logging is done to stderr and can be seen in the\nterminal or redirected to a file.\n\nTo debug the web part of your app you may use `webview.Settings.Debug` flag. It\nenables Web Inspector in WebKit and work on Linux and MacOS (use popup menu to\nopen the web inspector). On Windows there is no easy to way to enable\ndebugging, but you may include Firebug in your HTML code:\n\n```html\n<script type=\"text/javascript\" src=\"https://getfirebug.com/firebug-lite.js\"></script>\n```\n\nEven though Firebug browser extension development has been stopped, Firebug\nLite is still available and just works.\n\n## Distributing webview apps\n\nOn Linux you get a standalone executable. It will depend on GTK3 and GtkWebkit, so if you distribute your app in DEB or RPM format include those dependencies. Application icon can be specified by providing a `.desktop` file.\n\nOn MacOS you are likely to ship an app bundle. Make the following directory structure and just zip it:\n\n```\nexample.app\n└── Contents\n    ├── Info.plist\n    ├── MacOS\n    |   └── example\n    └── Resources\n        └── example.icns\n```\n\nHere, `Info.plist` is a [property list file](https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/AboutInformationPropertyListFiles.html) and `*.icns` is a special icon format. You may convert PNG to icns [online](iconverticons.com/online/).\n\nOn Windows you probably would like to have a custom icon for your executable. It can be done by providing a resource file, compiling it and and linking with it. Typically, `windres` utility is used to compile resources.\n\nYou may find some example build scripts for all three platforms [here](https://github.com/naivesound/glitch/tree/master/dist).\n\nAlso, if you want to cross-compile your webview app - use [xgo](https://github.com/karalabe/xgo).\n\n## Webview for C/C++ developers\n\n### Getting started\n\nDownload [webview.h](https://raw.githubusercontent.com/zserge/webview/master/webview.h) and include it in your C/C++ code:\n\n```c\n// main.c\n#include \"webview.h\"\n\n#ifdef WIN32\nint WINAPI WinMain(HINSTANCE hInt, HINSTANCE hPrevInst, LPSTR lpCmdLine,\n                   int nCmdShow) {\n#else\nint main() {\n#endif\n  /* Open wikipedia in a 800x600 resizable window */\n  webview(\"Minimal webview example\",\n\t  \"https://en.m.wikipedia.org/wiki/Main_Page\", 800, 600, 1);\n  return 0;\n}\n```\n\nBuild it:\n\n```bash\n# Linux\n$ cc main.c -DWEBVIEW_GTK=1 $(shell pkg-config --cflags --libs gtk+-3.0 webkitgtk-3.0) -o webview-example\n# MacOS\n$ cc main.c -DWEBVIEW_COCOA=1 -x objective-c -framework Cocoa -framework WebKit -o webview-example\n# Windows (mingw)\n$ cc main.c -DWEBVIEW_WINAPI=1 -lole32 -lcomctl32 -loleaut32 -luuid -mwindows -o webview-example.exe\n```\n\n### API\n\nFor the most simple use cases there is only one function:\n\n```c\nint webview(const char *title, const char *url,\tint width, int height, int resizable);\n```\n\nThe following URL schemes are supported:\n\n* `http://` and `https://`, no surprises here.\n* `file:///` can be useful if you want to unpack HTML/CSS assets to some\n  temporary directory and point a webview to open index.html from there.\n* `data:text/html,<html>...</html>` allows to pass short HTML data inline\n  without using a web server or pulluting the file system. Furhter\n  modifications of the webview contents can be done via JavaScript bindings.\n\nIf have choosen a regular http URL scheme, you can use Mongoose or any other web server/framework you like.\n\nIf you want to have more control over the app lifecycle you can use the following functions:\n\n```c\n  struct webview webview = {\n      .title = title,\n      .url = url,\n      .width = w,\n      .height = h,\n      .resizable = 1,\n      .debug = 0,\n      .resizable = resizable,\n  };\n  /* Create webview window using the provided options */\n  webview_init(&webview);\n  /* Main app loop, can be either blocking or non-blocking */\n  while (webview_loop(&webview, blocking) == 0);\n  /* Destroy webview window, often exits the app */\n  webview_exit(&webview);\n\n  /* To change window title later: */\n  webview_set_title(&webview, \"New title\");\n\n  /* To terminate the webview main loop: */\n  webview_terminate(&webview);\n\n  /* To print logs to stderr, MacOS Console or DebugView: */\n  webview_debug(\"exited: %d\\n\", 1);\n```\n\nTo evaluate arbitrary javascript code use the following C function:\n\n```c\nwebview_eval(&webview, \"alert('hello, world');\");\n```\n\nThere is also a special callback (`webview.external_invoke_cb`) that can be invoked from javascript:\n\n```javascript\n// C\nvoid my_cb(struct webview *w, const char *arg) {\n\t...\n}\n\n// JS (note the trailing underscore)\nwindow.external.invoke_('some arg');\n// Exactly one string argument must be provided, to pass more complex objects\n// serialize them to JSON and parse it in C. To pass binary data consider using\n// base64.\nwindow.external.invoke_(JSON.stringify({fn: 'sum', x: 5, y: 3}));\n```\n\nWebview library is meant to be used from a single UI thread only. So if you\nwant to call `webview_eval` or `webview_terminate` from some background thread\n- you have to use `webview_dispatch` to post some arbitrary function with some\ncontext to be executed inside the main UI thread:\n\n```c\n// This function will be executed on the UI thread\nvoid render(struct webview *w, void *arg) {\n  webview_eval(w, ......);\n}\n\n// Dispatch render() function from another thread:\nwebview_dispatch(w, render, some_arg);\n```\n\nYou may find some C/C++ examples in this repo that demonstrate the API above.\n\nAlso, there is a more more advanced complete C++ app, [Slide](https://github.com/zserge/slide), that uses webview as a GUI. You may have a look how webview apps can be built, packages and how automatic CI/CD can be set up.\n\n## Notes\n\nExecution on OpenBSD requires `wxallowed` [mount(8)](https://man.openbsd.org/mount.8) option.\n\n## License\n\nCode is distributed under MIT license, feel free to use it in your proprietary\nprojects as well.\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/appveyor.yml",
    "content": "os: Visual Studio 2017\n\nversion: \"{build}\"\n\nclone_folder: c:\\gopath\\src\\github.com\\zserge\\webview\n\nenvironment:\n  global:\n    GOPATH: C:\\gopath\n  matrix:\n    - GETH_ARCH: amd64\n      GOARCH: amd64\n      CGO_ENABLED: 1\n      MSYS2_ARCH: x86_64\n      MSYS2_BITS: 64\n      MSYSTEM: MINGW64\n      PATH: C:\\msys64\\mingw64\\bin\\;C:\\Program Files (x86)\\NSIS\\;%PATH%\n    - GETH_ARCH: 386\n      GOARCH: 386\n      CGO_ENABLED: 1\n      MSYS2_ARCH: i686\n      MSYS2_BITS: 32\n      MSYSTEM: MINGW32\n      PATH: C:\\msys64\\mingw32\\bin\\;C:\\Program Files (x86)\\NSIS\\;%PATH%\n\ninstall:\n  - echo %PATH%\n  - echo %GOPATH%\n  - set PATH=%GOPATH%\\bin;c:\\go\\bin;%PATH%\n  - go version\n  - go env\n  - gcc --version\n\nbuild_script:\n  - go build -o buildOutput\\minimal -i ./examples/minimal-go\n  - go build -o buildOutput\\todo -i ./examples/todo-go\n  - go build -o buildOutput\\window -i ./examples/window-go\n  - go build -o buildOutput\\pageload -i ./examples/page-load-go\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/canvas-go/main.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\t\"math/rand\"\n\t\"net\"\n\t\"net/http\"\n\t\"time\"\n\n\t\"github.com/zserge/webview\"\n)\n\nconst (\n\twindowWidth  = 480\n\twindowHeight = 320\n)\n\nvar indexHTML = fmt.Sprintf(`\n<!doctype html>\n<html>\n\t<head>\n\t\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t\t<style>* { margin: 0; padding: 0; box-sizing: border-box; }</style>\n\t</head>\n\t<body>\n\t\t<canvas id=\"canvas\" width=\"%d\" height=\"%d\">\n\t\t\tYour browser doesn't support HTML5 canvas element.\n\t\t</canvas>\n\t\t<script type=\"text/javascript\">\n\t\t\twindow.drawData = {};\n\t\t\tfunction draw() {\n\t\t\t\twindow.external.invoke_('draw');\n\t\t\t\tvar canvas = document.getElementById('canvas');\n\t\t\t\tvar ctx = canvas.getContext('2d');\n\t\t\t\tctx.clearRect(0, 0, canvas.width, canvas.height);\n\t\t\t\tctx.beginPath();\n\t\t\t\tctx.moveTo(drawData.x1, drawData.y1);\n\t\t\t\tctx.lineTo(drawData.x2, drawData.y2);\n\t\t\t\tctx.stroke();\n\t\t\t\twindow.requestAnimationFrame(draw);\n\t\t\t}\n\t\t\tdraw();\n\t\t</script>\n\t</body>\n</html>\n`, windowWidth, windowHeight)\n\nfunc startServer() string {\n\tln, err := net.Listen(\"tcp\", \"127.0.0.1:0\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tgo func() {\n\t\tdefer ln.Close()\n\t\thttp.HandleFunc(\"/\", func(w http.ResponseWriter, r *http.Request) {\n\t\t\tw.Write([]byte(indexHTML))\n\t\t})\n\t\tlog.Fatal(http.Serve(ln, nil))\n\t}()\n\treturn \"http://\" + ln.Addr().String()\n}\n\nvar (\n\tnumFrames int\n\tprevTime  time.Time\n\ttotalTime time.Duration\n)\n\nfunc handleRPC(w webview.WebView, data string) {\n\tnumFrames++\n\tif !prevTime.IsZero() {\n\t\ttotalTime = totalTime + time.Since(prevTime)\n\t}\n\tprevTime = time.Now()\n\tif numFrames%100 == 0 {\n\t\td := totalTime / time.Duration(numFrames)\n\t\tlog.Println(\"time per frame:\", d, \" fps:\", int(time.Second/d))\n\t}\n\ts := fmt.Sprintf(`drawData = {x1:%d,y1:%d,x2:%d,y2:%d}`,\n\t\trand.Intn(windowWidth), rand.Intn(windowHeight),\n\t\trand.Intn(windowWidth), rand.Intn(windowHeight))\n\tw.Eval(s)\n}\n\nfunc main() {\n\turl := startServer()\n\tw := webview.New(webview.Settings{\n\t\tWidth:  windowWidth,\n\t\tHeight: windowHeight,\n\t\tTitle:  \"Simple canvas demo\",\n\t\tURL:    url,\n\t\tExternalInvokeCallback: handleRPC,\n\t})\n\tdefer w.Exit()\n\tw.Run()\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/counter-go/assets.go",
    "content": "// Code generated by go-bindata.\n// sources:\n// js/picodom/app.js\n// js/picodom/vendor/picodom.js\n// js/styles.css\n// DO NOT EDIT!\n\npackage main\n\nimport (\n\t\"bytes\"\n\t\"compress/gzip\"\n\t\"fmt\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"time\"\n)\n\nfunc bindataRead(data []byte, name string) ([]byte, error) {\n\tgz, err := gzip.NewReader(bytes.NewBuffer(data))\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"Read %q: %v\", name, err)\n\t}\n\n\tvar buf bytes.Buffer\n\t_, err = io.Copy(&buf, gz)\n\tclErr := gz.Close()\n\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"Read %q: %v\", name, err)\n\t}\n\tif clErr != nil {\n\t\treturn nil, err\n\t}\n\n\treturn buf.Bytes(), nil\n}\n\ntype asset struct {\n\tbytes []byte\n\tinfo  os.FileInfo\n}\n\ntype bindataFileInfo struct {\n\tname    string\n\tsize    int64\n\tmode    os.FileMode\n\tmodTime time.Time\n}\n\nfunc (fi bindataFileInfo) Name() string {\n\treturn fi.name\n}\nfunc (fi bindataFileInfo) Size() int64 {\n\treturn fi.size\n}\nfunc (fi bindataFileInfo) Mode() os.FileMode {\n\treturn fi.mode\n}\nfunc (fi bindataFileInfo) ModTime() time.Time {\n\treturn fi.modTime\n}\nfunc (fi bindataFileInfo) IsDir() bool {\n\treturn false\n}\nfunc (fi bindataFileInfo) Sys() interface{} {\n\treturn nil\n}\n\nvar _jsPicodomAppJs = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x5c\\x8f\\x41\\x6a\\x44\\x21\\x0c\\x86\\xd7\\x93\\x53\\x64\\xa7\\x01\\x11\\xba\\xad\\xbc\\x03\\xcc\\x01\\x7a\\x00\\x1b\\x2d\\x4a\\x6d\\x1c\\x44\\xdf\\xe6\\xe1\\xdd\\x8b\\xd3\\x19\\xfa\\x18\\x57\\xf2\\x27\\xf9\\xf2\\x65\\xf7\\x0d\\x13\\x6e\\x78\\xcb\\x5c\\x43\\xfd\\xb1\\x09\\xe0\\x6b\\x08\\xf7\\x5c\\x05\\x3f\\xae\\x9a\\x09\\x0f\\xb8\\xb4\\xd8\\x47\\x13\\x4c\\x5a\\x85\\xbc\\x2b\\x83\\x32\\x4a\\x31\\x70\\x59\\xef\\x25\\x44\\xb6\\xc1\\x77\\x6f\\x77\\x5f\\x46\\xa4\\x53\\xcf\\xe7\\xe8\\xbd\\x8a\\x32\\x78\\x54\\xe1\\x92\\xf9\\xfb\\x1d\\x9f\\x7b\\x34\\x1d\\x6c\\x7d\\x08\\xfa\\x8d\\xe6\\x34\\xa8\\xae\\xc2\\x4d\\x11\\x39\\x98\\x00\\x4b\\x4f\\x6a\\x88\\xee\\xdf\\xaa\\x45\\x09\\xb1\\xe9\\xbb\\xd8\\x2a\\x9d\\xe4\\x6f\\xbe\\x73\\xd2\\x2b\\x34\\xf7\\xa9\\x6d\\x5d\\x50\\x87\\xf4\\xd8\\x88\\x60\\xc2\\xe3\\x6f\\xff\\x10\\xb8\\x3d\\x58\\x0e\\x9e\\x4c\\x07\\xbf\\x01\\x00\\x00\\xff\\xff\\x2d\\x62\\xcf\\xeb\\x10\\x01\\x00\\x00\")\n\nfunc jsPicodomAppJsBytes() ([]byte, error) {\n\treturn bindataRead(\n\t\t_jsPicodomAppJs,\n\t\t\"js/picodom/app.js\",\n\t)\n}\n\nfunc jsPicodomAppJs() (*asset, error) {\n\tbytes, err := jsPicodomAppJsBytes()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tinfo := bindataFileInfo{name: \"js/picodom/app.js\", size: 272, mode: os.FileMode(436), modTime: time.Unix(1509657363, 0)}\n\ta := &asset{bytes: bytes, info: info}\n\treturn a, nil\n}\n\nvar _jsPicodomVendorPicodomJs = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x7c\\x56\\x4d\\x93\\xa2\\x48\\x13\\xfe\\x2b\\xca\\xa1\\xa2\\x2a\\xac\\xa1\\x9d\\x79\\x6f\\x30\\xf9\\x1a\\xdd\\x1b\\x7b\\x9d\\xcb\\x6e\\xec\\xa5\\x82\\x03\\x42\\xa2\\xac\\x9a\\x45\\x14\\x85\\x4a\\x08\\xff\\x7d\\xa3\\x28\\x3e\\x9c\\x76\\x67\\x4f\\x40\\x7e\\xe7\\x93\\x4f\\xa6\\xae\\x8b\\x86\\x32\\x5b\\x6a\\xe2\\x28\\x8d\\x78\\x04\\x7a\\xff\\x37\\x66\\x36\\x00\\xb0\\x6d\\x85\\xba\\x58\\xe1\\xbd\\xd2\\xc6\\xd6\\x8c\\x05\\x0d\\xe5\\x58\\x94\\x84\\x79\\xb0\\x9e\\x94\\x17\\x9d\\x37\\x67\\xdc\\x19\\x3e\\x5a\\x89\\x28\\x98\\xc2\\x2d\\x11\\xbc\\x17\\x63\\xfe\\x19\\xa6\\x97\\x7c\\xe7\\x5f\\xb9\\x0a\\x46\\xbf\\x20\\x91\\x46\\x44\\x86\\x63\\x58\\x95\\x99\\xce\\xf5\\x05\\x1e\\xbd\\xe8\\xb9\\x3d\\x96\\xb5\\x5c\\xea\\x13\\x8f\\xa0\\xa9\\x71\\x55\\x5b\\x53\\x66\\x36\\x88\\x27\\xc5\\xca\\xf8\\xd2\\xaf\\xa9\\x59\\x91\\xb4\\xa0\\x92\\xb8\\xd0\\x86\\xd7\\x90\\x9a\\x43\\x73\\x41\\xb2\\x75\\x78\\x46\\x3a\\xd8\\x63\\x5c\\x7f\\xf9\\xb2\\xfa\\xff\\xb7\\x58\\x64\\x61\\xd5\\xd4\\x47\\x3e\\xeb\\x55\\x9d\\x88\\xc1\\x27\\xce\\x26\\x53\\x51\\x16\\xfc\\xdd\\x98\\xb4\\x0d\\xcb\\x7a\\x78\\x72\\x82\\x2c\\xac\\x74\\xc5\\x85\\x10\\x3e\\x3c\\x3d\\x85\\x9d\\x63\\xd2\\x10\\x0b\\xcf\\x35\\xae\\xa8\\x39\\x9f\\xd7\\x40\\x8c\\xad\\xb7\\x6b\\x18\\x9e\\x5f\\xfd\\xd3\\x7a\\xd3\\x80\\x9a\\xcb\\x1e\\xcd\\x02\\x14\\xed\\x68\\x03\\x41\\x10\\x91\\x88\\x0d\\xda\\xc6\\x50\\xe0\\x5a\\xa5\\xc3\\xd3\\x30\\x76\\x0f\\xf7\\x16\\xa1\\xac\\x8c\\xae\\xea\\xc8\\x74\\xdd\\xa3\\x97\\xd9\\xb1\\x3c\\xe7\\x06\\x29\\xb2\\x7d\\x84\\xdc\\xcb\\xac\\xe8\\x67\\x7c\\x86\\xd1\\x4a\\x92\\x56\\x3c\\x5c\\xe5\\x0e\\x27\\x0d\\x67\\x4e\\x5d\\xc7\\x09\\x72\\x9d\\x0d\\x20\\x84\\x7b\\x9d\\xb7\\x42\\x52\\x38\\x45\\x53\\xdb\\x44\\x3a\\x5c\\x63\\x0b\\xa9\\x6f\\x3c\\x16\\x96\\x4f\\xa5\\xad\\xf4\\x12\\xdf\\x3e\\xe1\\x0f\\x8f\\x3e\\x9e\\x92\\xd8\\x55\\x49\\x2b\\x14\\xa4\\x6c\\x02\\xa8\\x6c\\xf2\\xb3\\xc2\\x78\\x85\\x71\\x8a\\x31\\x26\\x2d\\x31\\xb5\\x8f\\x59\\x16\\xfc\\x15\\x04\\xe1\\x33\\xcd\\x95\\x67\\x06\\x53\\x8b\\x7f\\xe2\\xdd\\xfe\\xd0\\x39\\x72\\xf4\\xf8\\x8f\\xf5\\x70\\x03\\xa6\\xeb\\x82\\xfa\\xea\\x22\\x00\\x86\\x2e\\x88\\xd8\\x7d\\xf2\\xfd\\xfd\\x8c\\xee\\xeb\\xc7\\x1f\\x3c\\x38\\x5a\\x5b\\x45\\x6f\\x6f\\xb7\\xdb\\x2d\\xbc\\xfd\\x2f\\xd4\\xe6\\xf0\\xf6\\x6d\\xbb\\xdd\\xbe\\x39\\x7f\\x39\\x7a\\x47\\xff\\xee\\xcd\\x47\\x75\\x8c\\xe1\\x30\\x1d\\xc6\\xc6\\x97\\x50\\x93\\x37\\x64\\x2c\\xf5\\xa3\\x9f\\x39\\x2d\\x1e\\x9f\\x6d\\x38\\x89\\x5e\\x2c\\x48\\xc1\\x36\\xb6\\xdf\\x71\\x1e\\xca\\x44\\x39\\xbb\\xd9\\x08\\x0a\\xd3\\xaa\\x42\\xca\\x7f\\x73\\x3a\\xae\\xf9\\x62\\xa5\\xac\\xdb\\x27\\xf1\\x69\\x10\\x3e\\x91\\xa8\\x38\\x49\\x2b\\xc7\\x2f\\x65\\x13\\xd1\\xbf\\xa2\\x5f\\x8d\\x8c\\xd1\\x7e\\x02\\x27\\x6c\\x1d\\x78\\x66\\x24\\xb6\\x1f\\x4a\\x7b\\x46\\x2f\\x9c\\xb2\\x18\\x97\\xc5\\x72\\x2d\\x09\\xc8\\x71\\x50\\x08\\x0c\\x07\\x33\\x65\\x12\\x20\\x65\\x92\\xae\\x0b\\x02\\x3f\\x1a\\x6b\\xda\\x87\\x17\\xf7\\x59\\x6a\\xb3\\xa3\\xdb\\xed\\x7e\\x39\\x1d\\xf3\\x7d\\x21\\xc6\\x38\\xed\\x30\\xac\\xd1\\xbe\\x5b\\x6b\\xca\\x7d\\x63\\x91\\x1b\\x49\\x22\\xc2\\xd0\\xe0\\x45\\x5f\\xf1\\x49\\x2c\\x44\\xbf\\x74\\x50\\xfa\\x0e\\x9e\\x18\\xef\\xab\\x73\\x32\\x4f\\xd5\\x12\\x48\\xe9\\x44\\x16\\x10\\x5c\\xd3\\x73\\x33\\xf4\\xa2\\xbb\\x2e\\xc8\\x8e\\x98\\x9d\\x30\\x1f\\x3e\\x77\\xa8\\x74\\x12\\x19\\xa5\\x93\\xb8\\x5c\\x03\\x14\\x8c\\x8d\\x0f\\x87\\x8f\\x96\\xa5\\x2c\\x44\\x4f\\x8c\\x51\\xa8\\xa9\\xa9\\xf2\\x5f\\x0c\\x78\\xd1\\x0e\\x94\\xee\\x9f\\x16\\xb3\\x98\\x8b\\x5c\\x56\\xc9\\x31\\xc2\\xb7\\xe6\\xe7\\x6a\\xe6\\x14\\x5e\\xca\\xd8\\xeb\\x89\\xe5\\x04\\x8b\\x81\\x03\\x62\\x47\\xdc\\x8a\\xc8\\xf2\\xa7\\x5c\\x8d\\xc3\\xb8\\x2c\\x38\\xce\\xb4\\x14\\xe3\\xdc\\x27\\x06\\x9e\\xb0\\x5d\\xcc\\xcf\\xd3\\xcd\\x90\\x95\\xac\\x07\\x47\\x77\\xce\\x00\\x48\\x18\\xc0\\xb0\\xa4\\x1a\\x8d\\xfd\\xc0\\x42\\x1b\\xe4\\x9a\\x5b\\x59\\x09\\xf9\\xc4\\x0e\\x7f\\xf9\\xec\\xb0\\x0e\\xee\\xdc\\xb9\\x27\\x00\\x90\\xdf\\x8f\\x47\\xe9\\xa6\\xe0\\x93\\x4a\\x3b\\xd6\\x22\\x2b\\xa8\\x96\\x35\\xf5\\x2e\\x33\\x7f\\x33\\xb0\\x9f\\x37\\x40\\xa6\\x40\\x2f\\xb2\\x1c\\x1e\\xbd\\x3c\\x82\\x4a\\xe4\\xd5\\xbd\\xb5\\xb0\\x8d\\xdb\\xef\\x69\\xdc\\x6e\\x36\\x7e\\xe4\\x07\\x38\\xaa\\x36\\x01\\xe3\\x1d\\xdd\\xb1\\xa8\\x55\\x9b\\xc8\\xcb\\x53\\x28\\xf7\\xbd\\x87\\x86\\x5f\\x44\\xec\\xbb\\xd8\\x33\\xc6\\x73\\xb5\\x4f\\x40\\x1d\\xe4\\x25\\x11\\xfd\\x54\\x53\\x0b\\x5b\\x79\\x82\\x6d\\x7c\\xfa\\x9e\\xc5\\xcf\\xd1\\x5f\\xa2\\xdd\\x9e\\x8a\\x57\\xa7\\x39\\x7a\\x59\\xf0\\xab\\xda\\x27\\xa2\\xdd\\x6c\\x96\\x73\\x75\\x87\\x86\\xdf\\x84\\x7c\\x87\\x5c\\xdd\\x93\\xae\\x53\\x49\\xec\\x51\\xbf\\xef\\x46\\xf8\\x5d\\x35\\x67\\x6e\\xe4\\x41\\x5e\\xe4\\xcd\\xa1\\x7e\\xda\\x6c\\x84\\x74\\x0d\\x46\\x7c\\x0f\\x83\\xa1\\x53\\xbf\\xbb\\xe3\\xfd\\xae\\xbe\\x26\\xde\\x68\\xd0\\x3b\\xd9\\x8e\\x9b\\x9f\\x67\\x37\\x18\\x1e\\x84\\x7c\\x75\\x12\\x91\\xcf\\xe3\\xf2\\xce\\xa9\\xe4\\x55\\xdd\\x13\\xb8\\xb9\\x45\\x73\\xbf\\x96\\x0e\\x5c\\xdf\\xfb\\x7f\\x40\\x38\\x14\\x5d\\x70\\x23\\x3d\\x3a\\xd3\\xbc\\xdb\\xcd\\x66\\xc1\\xd2\\xed\\x66\\xee\\x23\\xb9\\xde\\xdb\\x44\\x7e\\x80\\xab\\x24\\xbe\\xaa\\x8f\\x85\\x9d\\x49\\xd7\\x15\\x53\\x9d\\xa3\\x58\\xf4\\xfd\\x40\\x3a\\xc3\\x98\\x5d\\x03\\x98\\x90\\x74\\x8e\\x7f\\xb9\\x7d\\x66\\xec\\xf5\\x97\\xc3\\x32\\xf6\\x22\\xa3\\xdd\\x93\\x13\\xd8\\x88\\xff\\x8a\\xdf\\x35\\x18\\x21\\xdd\\xc6\\xd6\\x13\\x79\\x85\\x98\\x7f\\x0d\\x4d\\xef\\x6a\\xaf\\x65\\xe6\\xc8\\x97\\xba\\xbf\\x20\\x18\\x1e\\xc1\\xb8\\x33\\xeb\\xee\\x1b\\x50\\x2f\\xe2\\x7f\\x02\\x00\\x00\\xff\\xff\\xb0\\xd0\\xc8\\xc4\\x6a\\x09\\x00\\x00\")\n\nfunc jsPicodomVendorPicodomJsBytes() ([]byte, error) {\n\treturn bindataRead(\n\t\t_jsPicodomVendorPicodomJs,\n\t\t\"js/picodom/vendor/picodom.js\",\n\t)\n}\n\nfunc jsPicodomVendorPicodomJs() (*asset, error) {\n\tbytes, err := jsPicodomVendorPicodomJsBytes()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tinfo := bindataFileInfo{name: \"js/picodom/vendor/picodom.js\", size: 2410, mode: os.FileMode(436), modTime: time.Unix(1509657363, 0)}\n\ta := &asset{bytes: bytes, info: info}\n\treturn a, nil\n}\n\nvar _jsStylesCss = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x4c\\xcc\\x41\\xca\\x83\\x30\\x10\\x05\\xe0\\x75\\xe6\\x14\\x03\\xf2\\x6f\\x7e\\x0c\\x68\\x5b\\x0a\\x4d\\x4e\\x93\\x98\\x18\\x43\\x35\\x23\\x69\\x04\\xdb\\xe2\\xdd\\x4b\\x22\\x95\\xce\\xee\\xbd\\x79\\x7c\\xff\\xf8\\x06\\x36\\xa9\\xe8\\x7c\\x10\\xd8\\x48\\x60\\xb3\\x32\\xc6\\x07\\xb7\\x07\\x4d\\x2b\\x7f\\xf8\\x57\\xc9\\x9a\\xa2\\xb1\\x91\\x6b\\x5a\\x25\\x6c\\x00\\x9a\\xcc\\xb3\\xc6\\x21\\x4d\\x63\\x8d\\x95\\x9a\\xe7\\xe2\\xf8\\xc0\\x07\\xeb\\xdd\\x90\\x04\\xb6\\x4d\\xf3\\x77\\x0c\\xf3\\xf3\\x80\\x4f\\x76\\x92\\xc0\\x7a\\x0a\\x29\\xdb\\x56\\xe0\\xa5\\x14\\x5a\\x75\\x77\\x17\\x69\\x09\\x86\\x77\\x34\\x52\\x14\\x58\\xd9\\x5b\\x6b\\xaf\\x67\\x09\\xec\\x5b\\xf4\\xe5\\x76\\x76\\x49\\x89\\x42\\x86\\x7f\\xa4\\x36\\x4b\\x1b\\x7c\\x02\\x00\\x00\\xff\\xff\\x0b\\x69\\x24\\xff\\xd5\\x00\\x00\\x00\")\n\nfunc jsStylesCssBytes() ([]byte, error) {\n\treturn bindataRead(\n\t\t_jsStylesCss,\n\t\t\"js/styles.css\",\n\t)\n}\n\nfunc jsStylesCss() (*asset, error) {\n\tbytes, err := jsStylesCssBytes()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tinfo := bindataFileInfo{name: \"js/styles.css\", size: 213, mode: os.FileMode(436), modTime: time.Unix(1509657363, 0)}\n\ta := &asset{bytes: bytes, info: info}\n\treturn a, nil\n}\n\n// Asset loads and returns the asset for the given name.\n// It returns an error if the asset could not be found or\n// could not be loaded.\nfunc Asset(name string) ([]byte, error) {\n\tcannonicalName := strings.Replace(name, \"\\\\\", \"/\", -1)\n\tif f, ok := _bindata[cannonicalName]; ok {\n\t\ta, err := f()\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"Asset %s can't read by error: %v\", name, err)\n\t\t}\n\t\treturn a.bytes, nil\n\t}\n\treturn nil, fmt.Errorf(\"Asset %s not found\", name)\n}\n\n// MustAsset is like Asset but panics when Asset would return an error.\n// It simplifies safe initialization of global variables.\nfunc MustAsset(name string) []byte {\n\ta, err := Asset(name)\n\tif err != nil {\n\t\tpanic(\"asset: Asset(\" + name + \"): \" + err.Error())\n\t}\n\n\treturn a\n}\n\n// AssetInfo loads and returns the asset info for the given name.\n// It returns an error if the asset could not be found or\n// could not be loaded.\nfunc AssetInfo(name string) (os.FileInfo, error) {\n\tcannonicalName := strings.Replace(name, \"\\\\\", \"/\", -1)\n\tif f, ok := _bindata[cannonicalName]; ok {\n\t\ta, err := f()\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"AssetInfo %s can't read by error: %v\", name, err)\n\t\t}\n\t\treturn a.info, nil\n\t}\n\treturn nil, fmt.Errorf(\"AssetInfo %s not found\", name)\n}\n\n// AssetNames returns the names of the assets.\nfunc AssetNames() []string {\n\tnames := make([]string, 0, len(_bindata))\n\tfor name := range _bindata {\n\t\tnames = append(names, name)\n\t}\n\treturn names\n}\n\n// _bindata is a table, holding each asset generator, mapped to its name.\nvar _bindata = map[string]func() (*asset, error){\n\t\"js/picodom/app.js\": jsPicodomAppJs,\n\t\"js/picodom/vendor/picodom.js\": jsPicodomVendorPicodomJs,\n\t\"js/styles.css\": jsStylesCss,\n}\n\n// AssetDir returns the file names below a certain\n// directory embedded in the file by go-bindata.\n// For example if you run go-bindata on data/... and data contains the\n// following hierarchy:\n//     data/\n//       foo.txt\n//       img/\n//         a.png\n//         b.png\n// then AssetDir(\"data\") would return []string{\"foo.txt\", \"img\"}\n// AssetDir(\"data/img\") would return []string{\"a.png\", \"b.png\"}\n// AssetDir(\"foo.txt\") and AssetDir(\"notexist\") would return an error\n// AssetDir(\"\") will return []string{\"data\"}.\nfunc AssetDir(name string) ([]string, error) {\n\tnode := _bintree\n\tif len(name) != 0 {\n\t\tcannonicalName := strings.Replace(name, \"\\\\\", \"/\", -1)\n\t\tpathList := strings.Split(cannonicalName, \"/\")\n\t\tfor _, p := range pathList {\n\t\t\tnode = node.Children[p]\n\t\t\tif node == nil {\n\t\t\t\treturn nil, fmt.Errorf(\"Asset %s not found\", name)\n\t\t\t}\n\t\t}\n\t}\n\tif node.Func != nil {\n\t\treturn nil, fmt.Errorf(\"Asset %s not found\", name)\n\t}\n\trv := make([]string, 0, len(node.Children))\n\tfor childName := range node.Children {\n\t\trv = append(rv, childName)\n\t}\n\treturn rv, nil\n}\n\ntype bintree struct {\n\tFunc     func() (*asset, error)\n\tChildren map[string]*bintree\n}\nvar _bintree = &bintree{nil, map[string]*bintree{\n\t\"js\": &bintree{nil, map[string]*bintree{\n\t\t\"picodom\": &bintree{nil, map[string]*bintree{\n\t\t\t\"app.js\": &bintree{jsPicodomAppJs, map[string]*bintree{}},\n\t\t\t\"vendor\": &bintree{nil, map[string]*bintree{\n\t\t\t\t\"picodom.js\": &bintree{jsPicodomVendorPicodomJs, map[string]*bintree{}},\n\t\t\t}},\n\t\t}},\n\t\t\"styles.css\": &bintree{jsStylesCss, map[string]*bintree{}},\n\t}},\n}}\n\n// RestoreAsset restores an asset under the given directory\nfunc RestoreAsset(dir, name string) error {\n\tdata, err := Asset(name)\n\tif err != nil {\n\t\treturn err\n\t}\n\tinfo, err := AssetInfo(name)\n\tif err != nil {\n\t\treturn err\n\t}\n\terr = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755))\n\tif err != nil {\n\t\treturn err\n\t}\n\terr = ioutil.WriteFile(_filePath(dir, name), data, info.Mode())\n\tif err != nil {\n\t\treturn err\n\t}\n\terr = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n\n// RestoreAssets restores an asset under the given directory recursively\nfunc RestoreAssets(dir, name string) error {\n\tchildren, err := AssetDir(name)\n\t// File\n\tif err != nil {\n\t\treturn RestoreAsset(dir, name)\n\t}\n\t// Dir\n\tfor _, child := range children {\n\t\terr = RestoreAssets(dir, filepath.Join(name, child))\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc _filePath(dir, name string) string {\n\tcannonicalName := strings.Replace(name, \"\\\\\", \"/\", -1)\n\treturn filepath.Join(append([]string{dir}, strings.Split(cannonicalName, \"/\")...)...)\n}\n\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/counter-go/js/picodom/app.js",
    "content": "var h = picodom.h\n\nfunction UI(c) {\n\treturn h('div', null,\n\t\t\t\t\t h('div', null, c.data.value),\n\t\t\t\t\t h('button', {onclick: function(){c.add(1)}}, 'Incr'));\n}\n\nvar node;\nfunction render() {\n\tnode = picodom.patch(node, node=UI(counter))\n}\ncounter.render = render;\nrender();\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/counter-go/js/react/app.jsx",
    "content": "/** @jsx preact.h */\n\n// A simple click counter component, can be a functional compontent as well\nclass Counter extends preact.Component {\n\tconstructor(props) {\n\t\tsuper(props)\n\t}\n  render() {\n    return (\n      <div>\n        <div>count:{counter.data.value}</div>\n\t\t\t\t<button onClick={() => counter.add(1)}>click!</button>\n      </div>\n    )\n  }\n}\n\n// Render top-level component, pass controller data as props\nconst render = () =>\n\tpreact.render(<Counter />, document.getElementById('app'), document.getElementById('app').lastElementChild);\n\n// Call global render() when controller changes\ncounter.render = render;\n\n// Render of the first time\nrender();\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/counter-go/js/styles.css",
    "content": "* {\n\tmargin: 0;\n\tpadding: 0;\n\tbox-sizing: border-box;\n}\n\nbody, html, #app {\n\tmin-height: 100%;\n}\n\nbody {\n\tpadding: 2em;\n\tfont-size: 4em;\n\tbackground-color: #e91e63;\n\tcolor: #ffffff;\n}\n\nbutton {\n\tfont-size: 1em;\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/counter-go/js/vue/app.js",
    "content": "var vm = new Vue({\n  el: '#app',\n  template: '<div><div class=\"counter\">{{c.data.value}}</div><button v-on:click=\"incr\">Incr</button></div>',\n  data: {c: counter},\n  methods: {\n    incr: function() { counter.add(1); },\n  },\n});\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/counter-go/main.go",
    "content": "package main\n\nimport (\n\t\"github.com/zserge/webview\"\n)\n\n// Counter is a simple example of automatic Go-to-JS data binding\ntype Counter struct {\n\tValue int `json:\"value\"`\n}\n\n// Add increases the value of a counter by n\nfunc (c *Counter) Add(n int) {\n\tc.Value = c.Value + int(n)\n}\n\n// Reset sets the value of a counter back to zero\nfunc (c *Counter) Reset() {\n\tc.Value = 0\n}\n\nfunc main() {\n\tw := webview.New(webview.Settings{\n\t\tTitle: \"Click counter: \" + uiFrameworkName,\n\t})\n\tdefer w.Exit()\n\n\tw.Dispatch(func() {\n\t\t// Inject controller\n\t\tw.Bind(\"counter\", &Counter{})\n\n\t\t// Inject CSS\n\t\tw.InjectCSS(string(MustAsset(\"js/styles.css\")))\n\n\t\t// Inject web UI framework and app UI code\n\t\tloadUIFramework(w)\n\t})\n\tw.Run()\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/counter-go/picodom.go",
    "content": "// +build !vue,!react\n\npackage main\n\n//go:generate go-bindata -o assets.go js/picodom/... js/styles.css\n\nimport (\n\t\"github.com/zserge/webview\"\n)\n\nvar uiFrameworkName = \"Picodom\"\n\nfunc loadUIFramework(w webview.WebView) {\n\t// Inject Picodom.js\n\tw.Eval(string(MustAsset(\"js/picodom/vendor/picodom.js\")))\n\t// Inject app code\n\tw.Eval(string(MustAsset(\"js/picodom/app.js\")))\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/counter-go/react.go",
    "content": "// +build react\n\npackage main\n\n//go:generate go-bindata -o assets.go js/react/... js/styles.css\n\nimport (\n\t\"fmt\"\n\t\"html/template\"\n\n\t\"github.com/zserge/webview\"\n)\n\nvar uiFrameworkName = \"ReactJS+Babel\"\n\nfunc loadUIFramework(w webview.WebView) {\n\t// Inject React and Babel\n\tw.Eval(string(MustAsset(\"js/react/vendor/babel.min.js\")))\n\tw.Eval(string(MustAsset(\"js/react/vendor/preact.min.js\")))\n\n\t// Inject our app code\n\tw.Eval(fmt.Sprintf(`(function(){\n\t\tvar n=document.createElement('script');\n\t\tn.setAttribute('type', 'text/babel');\n\t\tn.appendChild(document.createTextNode(\"%s\"));\n\t\tdocument.body.appendChild(n);\n\t})()`, template.JSEscapeString(string(MustAsset(\"js/react/app.jsx\")))))\n\n\t// Process our code with Babel\n\tw.Eval(`Babel.transformScriptTags()`)\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/counter-go/vue.go",
    "content": "// +build vue\n\npackage main\n\n//go:generate go-bindata -o assets.go js/vue/... js/styles.css\n\nimport (\n\t\"github.com/zserge/webview\"\n)\n\nvar uiFrameworkName = \"VueJS\"\n\nfunc loadUIFramework(w webview.WebView) {\n\t// Inject Vue.js\n\tw.Eval(string(MustAsset(\"js/vue/vendor/vue.min.js\")))\n\t// Inject app code\n\tw.Eval(string(MustAsset(\"js/vue/app.js\")))\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/minimal/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 2.8)\n\nproject(minimal)\n\nadd_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../.. ${CMAKE_CURRENT_BINARY_DIR}/webview)\nadd_executable(minimal WIN32 MACOSX_BUNDLE main.c)\ntarget_link_libraries(minimal PUBLIC webview)\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/minimal/Makefile",
    "content": "TARGET = minimal\n\nCFLAGS ?= -std=c99 -Wall -Wextra -pedantic -I../..\n\nTARGET_OS ?= $(OS)\nifeq ($(TARGET_OS),Windows_NT)\n\tTARGET=minimal.exe\n\tWEBVIEW_CFLAGS := -DWEBVIEW_WINAPI=1\n\tWEBVIEW_LDFLAGS := -lole32 -lcomctl32 -loleaut32 -luuid -mwindows\nelse ifeq ($(shell uname -s),Linux)\n\tWEBVIEW_CFLAGS := -DWEBVIEW_GTK=1 $(shell pkg-config --cflags gtk+-3.0 webkit2gtk-4.0)\n\tWEBVIEW_LDFLAGS := $(shell pkg-config --libs gtk+-3.0 webkit2gtk-4.0)\nelse ifeq ($(shell uname -s),Darwin)\n\tWEBVIEW_CFLAGS := -DWEBVIEW_COCOA=1 -x objective-c\n\tWEBVIEW_LDFLAGS := -framework Cocoa -framework WebKit\nendif\n\n$(TARGET): main.c\n\t$(CC) $(CFLAGS) $(WEBVIEW_CFLAGS) main.c $(LDFLAGS) $(WEBVIEW_LDFLAGS) -o $@\n\nclean:\n\trm -f $(TARGET)\n\n.PHONY: clean\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/minimal/main.c",
    "content": "#include <webview.h>\n\n#ifdef WIN32\nint WINAPI WinMain(HINSTANCE hInt, HINSTANCE hPrevInst, LPSTR lpCmdLine,\n                   int nCmdShow) {\n#else\nint main() {\n#endif\n  /* Open wikipedia in a 800x600 resizable window */\n  webview(\"Minimal webview example\",\n\t  \"https://en.m.wikipedia.org/wiki/Main_Page\", 800, 600, 1);\n  return 0;\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/minimal-go/main.go",
    "content": "package main\n\nimport \"github.com/zserge/webview\"\n\nfunc main() {\n\t// Open wikipedia in a 800x600 resizable window\n\twebview.Open(\"Minimal webview example\",\n\t\t\"https://en.m.wikipedia.org/wiki/Main_Page\", 800, 600, true)\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/page-load-go/main.go",
    "content": "package main\n\nimport (\n\t\"io/ioutil\"\n\t\"log\"\n\t\"net\"\n\t\"net/http\"\n\t\"net/url\"\n\t\"os\"\n\t\"path/filepath\"\n\n\t\"github.com/zserge/webview\"\n)\n\nvar indexHTML = `\n<!doctype html>\n<html>\n\t<head>\n\t\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t</head>\n\t<body>\n\t  <h1>Hello, world</h1>\n\t</body>\n</html>\n`\n\nfunc runLocalHTTP() {\n\tln, err := net.Listen(\"tcp\", \"127.0.0.1:0\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tgo func() {\n\t\tdefer ln.Close()\n\t\thttp.HandleFunc(\"/\", func(w http.ResponseWriter, r *http.Request) {\n\t\t\tw.Write([]byte(indexHTML))\n\t\t})\n\t\tlog.Fatal(http.Serve(ln, nil))\n\t}()\n\turl := \"http://\" + ln.Addr().String()\n\tw := webview.New(webview.Settings{\n\t\tTitle: \"Loaded: Local HTTP Server\",\n\t\tURL:   url,\n\t})\n\tdefer w.Exit()\n\tw.Run()\n}\n\nfunc runLocalFile() {\n\tdir, err := ioutil.TempDir(\"\", \"webview\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer os.RemoveAll(dir)\n\ttmpfn := filepath.Join(dir, \"index.html\")\n\tif err := ioutil.WriteFile(tmpfn, []byte(indexHTML), 0666); err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tabs, err := filepath.Abs(tmpfn)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tlog.Println(\"local tmp file: \", abs)\n\tw := webview.New(webview.Settings{\n\t\tTitle: \"Loaded: Local file URL\",\n\t\tURL:   \"file://\" + abs,\n\t})\n\tdefer w.Exit()\n\tw.Run()\n}\n\nfunc runDataURL() {\n\tw := webview.New(webview.Settings{\n\t\tTitle: \"Loaded: Data URL\",\n\t\tURL:   \"data:text/html,\" + url.PathEscape(indexHTML),\n\t})\n\tdefer w.Exit()\n\tw.Run()\n}\n\nfunc runInjectJS() {\n\tw := webview.New(webview.Settings{\n\t\tTitle: \"Loaded: Injected via JavaScript\",\n\t\tURL:   `data:text/html,<html><script type=\"text/javascript\"></script></html>`,\n\t})\n\tdefer w.Exit()\n\tw.Dispatch(func() {\n\t\tw.Eval(`document.body.innerHTML = \"<h1>Hello, world</h1>\";`)\n\t})\n\tw.Run()\n}\n\nfunc main() {\n\trunLocalHTTP()\n\t//runLocalFile()\n\t//runDataURL()\n\t//runInjectJS()\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/timer-cxx/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 2.8)\n\nproject(timer)\n\nset(CMAKE_CXX_STANDARD 11)\n\nadd_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../.. ${CMAKE_CURRENT_BINARY_DIR}/webview)\nadd_executable(timer WIN32 MACOSX_BUNDLE main.cc)\nif (APPLE)\n  set_source_files_properties(main.cc PROPERTIES COMPILE_FLAGS \"-x objective-c++\")\nendif()\n\nfind_package(Threads REQUIRED)\ntarget_link_libraries(timer PUBLIC webview ${CMAKE_THREAD_LIBS_INIT})\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/timer-cxx/main.cc",
    "content": "#include <chrono>\n#include <iomanip>\n#include <mutex>\n#include <sstream>\n#include <thread>\n\n#include <cstdio>\n#include <cstring>\n\n#include <webview.h>\n\nclass Timer {\npublic:\n  int get() {\n    this->mutex.lock();\n    int n = this->ticks;\n    this->mutex.unlock();\n    return n;\n  }\n  void set(int ticks) {\n    this->mutex.lock();\n    this->ticks = ticks;\n    this->mutex.unlock();\n  }\n  void incr(int n = 1) {\n    this->mutex.lock();\n    this->ticks = this->ticks + n;\n    this->mutex.unlock();\n  }\n  void start(struct webview *w) {\n    this->thread = std::thread(&Timer::run, this, w);\n    this->thread.detach();\n  }\n  void render(struct webview *w) {\n    auto n = this->get();\n    std::ostringstream jscode;\n    jscode << \"updateTicks(\" << n << \")\";\n    webview_eval(w, jscode.str().c_str());\n  }\n\nprivate:\n  void run(struct webview *w) {\n    for (;;) {\n      std::this_thread::sleep_for(std::chrono::microseconds(100000));\n      this->incr();\n      webview_dispatch(w,\n                       [](struct webview *w, void *arg) {\n                         Timer *timer = static_cast<Timer *>(arg);\n                         timer->render(w);\n                       },\n                       this);\n    }\n  }\n  std::thread thread;\n  std::mutex mutex;\n  int ticks = 0;\n  struct webview *w;\n};\n\nstatic std::string url_encode(const std::string &value) {\n  const char hex[] = \"0123456789ABCDEF\";\n  std::string escaped;\n  for (char c : value) {\n    if (isalnum(c) || c == '-' || c == '_' || c == '.' || c == '~' ||\n        c == '=') {\n      escaped = escaped + c;\n    } else {\n      escaped = escaped + '%' + hex[(c >> 4) & 0xf] + hex[c & 0xf];\n    }\n  }\n  return escaped;\n}\n\nstatic const char *html = R\"html(\n<!doctype html>\n<html>\n<body>\n  <p id=\"ticks\"></p>\n  <button onclick=\"external.invoke('reset')\">reset</button>\n  <button onclick=\"external.invoke('exit')\">exit</button>\n  <script type=\"text/javascript\">\n    function updateTicks(n) {\n      document.getElementById('ticks').innerText = 'ticks ' + n;\n    }\n  </script>\n</body>\n</html>\n)html\";\n\nstatic void timer_cb(struct webview *w, const char *arg) {\n  Timer *timer = static_cast<Timer *>(w->userdata);\n  if (strcmp(arg, \"reset\") == 0) {\n    timer->set(0);\n    timer->render(w);\n  } else if (strcmp(arg, \"exit\") == 0) {\n    webview_terminate(w);\n  }\n}\n\n#ifdef WIN32\nint WINAPI WinMain(HINSTANCE hInt, HINSTANCE hPrevInst, LPSTR lpCmdLine,\n                   int nCmdShow) {\n#else\nint main() {\n#endif\n  Timer timer;\n  struct webview webview = {};\n  std::string html_data = \"data:text/html,\" + url_encode(html);\n\n  webview.title = \"Timer\";\n  webview.url = html_data.c_str();\n  webview.width = 400;\n  webview.height = 300;\n  webview.resizable = 0;\n  webview.external_invoke_cb = timer_cb;\n  webview.userdata = &timer;\n\n  webview_init(&webview);\n  timer.start(&webview);\n  while (webview_loop(&webview, 1) == 0)\n    ;\n  webview_exit(&webview);\n  return 0;\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/todo-go/assets/app.js",
    "content": "'use strict';\n\nfunction UI(items) {\n  var h = picodom.h;\n  function submit(e) {\n    e.preventDefault();\n    e.stopImmediatePropagation();\n    var el = document.getElementById('task-name-input');\n    rpc.addTask(el.value);\n    el.value = '';\n  }\n  function clearTasks() { rpc.clearDoneTasks(); }\n  function markTask(i){return function() { rpc.markTask(i, !items[i].done); }};\n\n  var taskItems = [];\n  for (var i = 0; i < items.length; i++) {\n    var checked = (items[i].done ? 'checked' : 'unchecked');\n    taskItems.push(\n\th('div', {className : 'task-item ' + checked, onclick : markTask(i)},\n\t  items[i].name));\n  }\n\n  return h('div', {className : 'container'},\n\t   h('form', {className : 'text-input-wrapper', onsubmit : submit},\n\t     h('input', {\n\t       id : 'task-name-input',\n\t       className : 'text-input',\n\t       type : 'text',\n\t       autofocus : true\n\t     })),\n\t   h('div', {className : 'task-list'}, taskItems),\n\t   h('div', {className : 'footer'},\n\t     h('div', {className : 'btn-clear-tasks', onclick : clearTasks},\n\t       'Delete completed')));\n}\n\nvar element;\nvar oldNode;\nvar rpc = {\n  invoke : function(arg) { window.external.invoke(JSON.stringify(arg)); },\n  init : function() { rpc.invoke({cmd : 'init'}); },\n  log : function() {\n    var s = '';\n    for (var i = 0; i < arguments.length; i++) {\n      if (i != 0) {\n\ts = s + ' ';\n      }\n      s = s + JSON.stringify(arguments[i]);\n    }\n    rpc.invoke({cmd : 'log', text : s});\n  },\n  addTask : function(name) { rpc.invoke({cmd : 'addTask', name : name}); },\n  clearDoneTasks : function() { rpc.invoke({cmd : 'clearDoneTasks'}); },\n  markTask : function(index, done) {\n    rpc.invoke({cmd : 'markTask', index : index, done : done});\n  },\n  render : function(items) {\n    return element = picodom.patch(oldNode, (oldNode = UI(items)), element);\n  },\n};\n\nwindow.onload = function() { rpc.init(); };\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/todo-go/assets/index.html",
    "content": "<!doctype html>\n<html>\n\t<head>\n\t\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"> \n\t\t<link rel=\"stylesheet\" type=\"text/css\" href=\"styles.css\">\n\t</head>\n\t<body>\n\t\t<!--[if lt IE 9]>\n\t\t<div class=\"ie-upgrade-container\">\n\t\t\t<p class=\"ie-upgrade-message\">Please, upgrade Internet Explorer to continue using this software.</p>\n\t\t\t<a class=\"ie-upgrade-link\" target=\"_blank\" href=\"https://www.microsoft.com/en-us/download/internet-explorer.aspx\">Upgrade</a>\n\t\t</div>\n\t\t<![endif]-->\n\t\t<!--[if gte IE 9 | !IE ]> <!-->\n\t\t<script src=\"picodom.js\"></script>\n\t\t<script src=\"app.js\"></script>\n\t\t<![endif]-->\n\t</body>\n</html>\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/todo-go/assets/picodom.js",
    "content": "!function(e,t){\"object\"==typeof exports&&\"undefined\"!=typeof module?t(exports):\"function\"==typeof define&&define.amd?define([\"exports\"],t):t(e.picodom={})}(this,function(e){\"use strict\";function t(e,t){var n,r=[];for(u=arguments.length;u-- >2;)d.push(arguments[u]);for(;d.length;)if(Array.isArray(n=d.pop()))for(u=n.length;u--;)d.push(n[u]);else null!=n&&!0!==n&&!1!==n&&(\"number\"==typeof n&&(n+=\"\"),r.push(n));return\"string\"==typeof e?{tag:e,data:t||{},children:r}:e(t,r)}function n(e,t,a,l,u,d){if(null==a)t=e.insertBefore(o(l,u),t);else if(null!=l.tag&&l.tag===a.tag){i(t,a.data,l.data),u=u||\"svg\"===l.tag;for(var c=l.children.length,s=a.children.length,h={},v=[],p={},g=0;g<s;g++){var y=v[g]=t.childNodes[g],m=a.children[g],b=r(m);null!=b&&(h[b]=[y,m])}for(var g=0,k=0;k<c;){var y=v[g],m=a.children[g],w=l.children[k],b=r(m);if(p[b])g++;else{var x=r(w),A=h[x]||[];null==x?(null==b&&(n(t,y,m,w,u),k++),g++):(b===x?(n(t,A[0],A[1],w,u),g++):A[0]?(t.insertBefore(A[0],y),n(t,A[0],A[1],w,u)):n(t,y,null,w,u),k++,p[x]=w)}}for(;g<s;){var m=a.children[g],b=r(m);null==b&&f(t,v[g],m.data),g++}for(var g in h){var A=h[g],B=A[1];p[B.data.key]||f(t,A[0],B.data)}}else t&&l!==t.nodeValue&&(t=e.insertBefore(o(l,u),d=t),f(e,d,a.data));return t}function r(e){if(e&&(e=e.data))return e.key}function a(e,t){var n={};for(var r in e)n[r]=e[r];for(var r in t)n[r]=t[r];return n}function o(e,t){if(\"string\"==typeof e)var n=document.createTextNode(e);else{var n=(t=t||\"svg\"===e.tag)?document.createElementNS(\"http://www.w3.org/2000/svg\",e.tag):document.createElement(e.tag);e.data&&e.data.oncreate&&c.push(function(){e.data.oncreate(n)});for(var r in e.data)l(n,r,e.data[r]);for(var r=0;r<e.children.length;)n.appendChild(o(e.children[r++],t))}return n}function i(e,t,n){for(var r in a(t,n)){var o=n[r],i=\"value\"===r||\"checked\"===r?e[r]:t[r];o!==i&&l(e,r,o,i)}n&&n.onupdate&&c.push(function(){n.onupdate(e,t)})}function f(e,t,n){n&&n.onremove?n.onremove(t):e.removeChild(t)}function l(e,t,n,r){if(\"key\"===t);else if(\"style\"===t)for(var o in a(r,n=n||{}))e.style[o]=n[o]||\"\";else{try{e[t]=n}catch(e){}\"function\"!=typeof n&&(n?e.setAttribute(t,n):e.removeAttribute(t))}}var u,d=[],c=[],s=function(e,t,r,a,o){for(r=n(a||document.body,r,e,t);o=c.pop();)o();return r};e.h=t,e.patch=s});\n//# sourceMappingURL=picodom.js.map"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/todo-go/assets/styles.css",
    "content": "* {\n\tmargin: 0;\n\tpadding: 0;\n\tbox-sizing: border-box;\n\tfont-size: 28px;\n\tfont-family: sans-serif;\n}\n\nhtml, body {\n\theight: 100%;\n\toverflow: none;\n}\n\n.ie-upgrade-container {\n\twidth: 100%;\n\theight: 100%;\n\tfont-family: Arial, sans-serif;\n\tfont-size: 32px;\n\tcolor: #ffffff;\n\tbackground-color: #1ebbee;\n\tpadding: 3em 1em 1em 1em;\n}\n.ie-upgrade-link {\n\tmargin: 2em 0em;\n\tpadding: 0 1em;\n\tcolor: #1ebbee;\n\tbackground-color: #ffffff;\n\tfont-weight: bold;\n\ttext-align: center;\n\tdisplay: block;\n\twidth: 100%;\n\theight: 2em;\n\tline-height: 2em;\n\ttext-transform: uppercase;\n}\n\n.container {\n\twidth: 100%;\n\theight: 100%;\n\tbackground-color: #9c27b0;\n}\n\n.text-input-wrapper {\n\tpadding: 0.5em;\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\trigh: 0;\n}\n\n.text-input {\n\twidth: 100%;\n\tline-height: 1.5em;\n\tpadding: 0 0.2em;\n\theight: 1.5em;\n\toutline: none;\n\tborder: none;\n\tcolor: #4a148c;\n\tbackground-color: rgba(255, 255, 255, 0.87);\n}\n.text-input:focus {\n\tbackground-color: #ffffff;\n}\n\n.task-list {\n\toverflow-y: auto;\n\tposition: fixed;\n\ttop: 2.5em;\n\tbottom: 1.2em;\n\tleft: 0;\n\tright: 0;\n}\n\n.task-item {\n\theight: 1.5em;\n\tcolor: rgba(255, 255, 255, 0.87);\n\tpadding: 0.5em;\n\tcursor: pointer;\n}\n.task-item.checked {\n\ttext-decoration: line-through;\n\tcolor: rgba(255, 255, 255, 0.38);\n}\n.footer {\n\tposition: fixed;\n\tleft: 0;\n\tbottom: 0;\n\tright: 0;\n\tbackground-color: #ffffff;\n\tcolor: #9c27b0;\n}\n.btn-clear-tasks {\n\twidth: 100%;\n\ttext-align: center;\n\tfont-size: 18px;\n\theight: 2.5em;\n\tline-height: 2.5em;\n\ttext-transform: uppercase;\n\tcursor: pointer;\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/todo-go/assets.go",
    "content": "// Code generated by go-bindata.\n// sources:\n// assets/app.js\n// assets/index.html\n// assets/picodom.js\n// assets/styles.css\n// DO NOT EDIT!\n\npackage main\n\nimport (\n\t\"bytes\"\n\t\"compress/gzip\"\n\t\"fmt\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"time\"\n)\n\nfunc bindataRead(data []byte, name string) ([]byte, error) {\n\tgz, err := gzip.NewReader(bytes.NewBuffer(data))\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"Read %q: %v\", name, err)\n\t}\n\n\tvar buf bytes.Buffer\n\t_, err = io.Copy(&buf, gz)\n\tclErr := gz.Close()\n\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"Read %q: %v\", name, err)\n\t}\n\tif clErr != nil {\n\t\treturn nil, err\n\t}\n\n\treturn buf.Bytes(), nil\n}\n\ntype asset struct {\n\tbytes []byte\n\tinfo  os.FileInfo\n}\n\ntype bindataFileInfo struct {\n\tname    string\n\tsize    int64\n\tmode    os.FileMode\n\tmodTime time.Time\n}\n\nfunc (fi bindataFileInfo) Name() string {\n\treturn fi.name\n}\nfunc (fi bindataFileInfo) Size() int64 {\n\treturn fi.size\n}\nfunc (fi bindataFileInfo) Mode() os.FileMode {\n\treturn fi.mode\n}\nfunc (fi bindataFileInfo) ModTime() time.Time {\n\treturn fi.modTime\n}\nfunc (fi bindataFileInfo) IsDir() bool {\n\treturn false\n}\nfunc (fi bindataFileInfo) Sys() interface{} {\n\treturn nil\n}\n\nvar _appJs = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x8c\\x55\\x4d\\x6f\\xe3\\x36\\x10\\x3d\\x47\\xbf\\xe2\\xed\\x89\\x12\\x22\\x0b\\x7b\\xb6\\x2a\\x14\\x28\\xd2\\x43\\x7a\\x48\\x0b\\xb4\\x3d\\x05\\x39\\x70\\xa9\\xb1\\x4d\\x58\\x22\\x05\\x8a\\x72\\x12\\x18\\xfa\\xef\\xc5\\x50\\x94\\x2c\\x27\\x4e\\xb1\\xbe\\x58\\x9c\\x8f\\x37\\x9c\\x37\\x1f\\x14\\x43\\x4f\\xe8\\xbd\\xd3\\xca\\x8b\\x32\\x49\\x76\\x83\\x51\\x5e\\x5b\\x83\\x7f\\x1f\\x53\\xed\\xa9\\xed\\x33\\x9c\\x13\\xe0\\x24\\x1d\\x0e\\xa8\\xd0\\x69\\x65\\x6b\\xdb\\x16\\x87\\x32\\x01\\x16\\xdb\\x7e\\xf8\\xd1\\x6a\\x9f\\xd2\\x64\\x0b\\x50\\xd1\\x39\\x3a\\x91\\xf1\\x0f\\xb4\\x93\\x43\\xe3\\xd3\\xac\\x8c\\xf2\\xde\\xdb\\xee\\xb1\\x6d\\xa9\\xd6\\xd2\\xd3\\x5f\\xce\\x76\\x72\\x2f\\x19\\x62\\xb6\\xe0\\x38\\xd4\\xa0\\x42\\x6d\\xd5\\xd0\\x92\\xf1\\xc5\\x9e\\xfc\\xef\\x0d\\xf1\\xe7\\x6f\\xef\\x8f\\x75\\x2a\\xbc\\xec\\x8f\\x1b\\x23\\x5b\\xda\\x68\\xd3\\x0d\\x5e\\x44\\x47\\xd7\\xa9\\x42\\xd6\\xf5\\x3f\\xb2\\x3f\\xa6\\xd4\\x14\\x27\\xd9\\x0c\\x34\\x47\\x8d\\x47\\x54\\x10\\x82\\x45\\xe3\\xfa\\xee\\xaa\\x21\\xe9\\xd8\\xad\\x4f\\x33\\x9c\\x03\\x4e\\x10\\x3d\\x58\\x43\\x51\\x5c\\x5e\\x7b\\xb4\\xd2\\x1d\\x43\\x1c\\x9d\\x9d\\x1d\\xf9\\xc1\\x99\\x45\\xb7\\x40\\x5c\\x6c\\x72\\x7c\\x0b\\x3c\\x3e\\xeb\\x97\\xa2\\xb6\\x86\\x18\\x6d\\x2c\\x93\\xc8\\x29\\x67\\xf3\\xc8\\x6a\\x54\\x78\\x7e\\x09\\xa4\\x5a\\x87\\x94\\x55\\x1a\\x15\\xbe\\x97\\xd0\\xf8\\x05\\x01\\xa0\\x68\\xc8\\xec\\xfd\\xa1\\x84\\xbe\\xbf\\x9f\\x89\\x66\\x3b\\x75\\x20\\x75\\xa4\\x1a\\x15\\xd2\\xab\\x40\\xf8\\x15\\x22\\xea\\x04\\xb6\\x10\\x83\\x99\\x4f\\x91\\x97\\x25\\x76\\xd1\\x0d\\xfd\\x21\\x4d\\xee\\x0e\\xa9\\xa8\\xf5\\x49\\xe4\\x38\\xab\\x46\\xf6\\xfd\\x93\\x6c\\x89\\x1d\\x03\\xe3\\x0c\\x0d\\x81\\xfb\\x39\\x5c\\x0e\\x6b\\x54\\xa3\\xd5\\x11\\xdb\\x35\\x21\\x63\\x9e\\xdc\\x01\\xcb\\x3d\\xb8\\x4e\\x59\\x36\\x71\\x9e\\x00\\x91\\xad\\x2f\\xe2\\x28\\x6b\\xbc\\xd4\\x86\\x9c\\x98\\x50\\xd8\\x6e\\x67\\x5d\\xfb\\xf9\\x42\\xf4\\xe6\\xa7\\xea\\x6f\\x5e\\x9d\\xec\\x3a\\x72\\x82\\xaf\\x33\\x75\\x21\\xb6\\xb1\\x1d\\x23\\x48\\x80\\x99\\x5a\\x25\\xc7\\x39\\x8a\\x00\\x5d\\x2f\\xa9\\xad\\x9a\\x29\\x5f\\xf4\\x5f\\x04\\x5c\\x59\\xf8\\xf7\\x6e\\x51\\xae\\xc4\\x72\\xf0\\x76\\x67\\xd5\\xd0\\x63\\x0b\\xef\\x06\\x8a\\x8a\\x31\\xcb\\x96\\xa4\\xbe\\x24\\xb9\\xd1\\xbd\\x17\\x63\\x7e\\xa9\\xcc\\xff\\xfb\\xec\\xac\\xf5\\x17\\xb6\\xbe\\x34\\xfb\\xe1\\xcd\\x26\\xb4\\xf4\\x86\\x71\\x7b\\xb1\\x2e\\xdd\\xa5\\xfb\\xc7\\x4b\\x0a\\xe2\\x81\\x1a\\xf2\\x04\\x65\\xdb\\x8e\\x3f\\x6a\\x91\\x71\\x11\\xc7\\x24\\x99\\xc6\\x33\\x4c\\x63\\x19\\x0e\\xb6\\xa9\\x9f\\x6c\\x4d\\xd3\\xc1\\x75\\x0a\\x55\\xe8\\x4c\\x6d\\x4e\\xf6\\xc8\\xc1\\x97\\xc1\\x90\\x6e\\xcf\\xb3\\xf1\\xaa\\x4d\\x6d\\x5f\\x0b\\x7a\\xf3\\xe4\\x8c\\x6c\\x8a\\xc9\\x30\\xfd\\xe3\\xef\\x3f\\x9f\\x0a\\x5e\\x42\\x66\\xaf\\x77\\xef\\xc1\\x98\\xe7\\x24\\x0f\\x50\\xa1\\xa6\\x9f\\x26\\x2c\\x7a\\x9e\\x55\\x1b\\x2a\\xc9\\x66\\x62\\x9c\\x9d\\x1a\\xbb\\xff\\xe0\\xb3\\x8c\\x4b\\xbf\\xac\\x81\\xdb\\xb3\\x26\\xdd\\x3e\\x2c\\x9e\\x9b\\xf3\\x06\\xe8\\x1d\\x52\\x8d\\x6f\\x15\\xbe\\xb3\\xec\\x8e\\xd1\\x7a\\xdc\\x43\\x20\\x42\\x4e\\xdb\\x85\\x7f\\xb3\\xea\\x73\\x6e\\x13\\xfe\\xb3\\x7e\\x89\\x83\\x38\\x2e\\x1b\\xec\\x43\\x52\\x8d\\xdd\\x8b\\x1c\\xdc\\x60\\xdc\\xd5\\xe3\\x34\\x48\\x9c\\x5f\\xdc\\x74\\xeb\\x1c\\xc3\\xa8\\xdd\\xe6\\x26\\x5a\\x8b\\x1c\\x66\\x6a\\x09\\xfe\\x5b\\xb8\\xba\\xde\\x76\\x3f\\x41\\xf5\\xb5\\xc3\\x85\\xf4\\x79\\x0d\\xac\\x21\\xb4\\xa9\\xe9\\x2d\\x47\\x58\\x7c\\x91\\xc3\\x1b\\x88\\xb3\\xa7\\xc8\\x11\\x1c\\xb0\\xc5\\xca\\x11\\xdb\\xf0\\xb7\\x4a\\xdf\\x91\\xa9\\xc9\\x5d\\xc5\\xb9\\x3c\\x55\\xcb\\x9a\\x89\\x8d\\xba\\x7a\\xb5\\x3a\\xe9\\xd5\\x21\\x8d\\x3d\\x9b\\x63\\xfe\\x42\\x75\\x79\\xed\\xb2\\x7c\\xf6\\x9b\\xc3\\xf1\\xb2\\x8e\\x6d\\x6b\\x4d\\x63\\x25\\x6f\\xda\\x1b\\x14\\x69\\x1f\\x1e\\x8a\\x32\\xf9\\x2f\\x00\\x00\\xff\\xff\\xdd\\x61\\xd5\\x42\\x51\\x07\\x00\\x00\")\n\nfunc appJsBytes() ([]byte, error) {\n\treturn bindataRead(\n\t\t_appJs,\n\t\t\"app.js\",\n\t)\n}\n\nfunc appJs() (*asset, error) {\n\tbytes, err := appJsBytes()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tinfo := bindataFileInfo{name: \"app.js\", size: 1873, mode: os.FileMode(436), modTime: time.Unix(1515242360, 0)}\n\ta := &asset{bytes: bytes, info: info}\n\treturn a, nil\n}\n\nvar _indexHtml = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x6c\\x92\\x41\\x8b\\xdb\\x30\\x10\\x85\\xcf\\xde\\x5f\\x31\\xd1\\xb9\\xb2\\xce\\x2d\\xb2\\xa1\\x94\\x1c\\x72\\xeb\\x65\\xa1\\xb0\\x84\\xa2\\x48\\x13\\x5b\\xad\\x2c\\xa9\\x9a\\x71\\x9c\\x40\\x7f\\x7c\\x91\\xed\\x42\\xcb\\xe6\\x64\\x3c\\xf3\\x34\\xdf\\x9b\\x27\\xe9\\x83\\x4b\\x96\\x1f\\x19\\x61\\xe4\\x29\\xf4\\x2f\\x7a\\xfb\\x34\\x7a\\x44\\xe3\\xfa\\x97\\xa6\\xd1\\x13\\xb2\\x81\\x91\\x39\\x4b\\xfc\\x35\\xfb\\x5b\\x27\\xbe\\xc9\\xd7\\xcf\\xf2\\x4b\\x9a\\xb2\\x61\\x7f\\x09\\x28\\xc0\\xa6\\xc8\\x18\\xb9\\x13\\xa7\\x63\\x87\\x6e\\x40\\xd1\\x43\\x3d\\x18\\x7c\\xfc\\x09\\x05\\x43\\x27\\x88\\x1f\\x01\\x69\\x44\\x64\\x01\\x95\\xd5\\x09\\xc6\\x3b\\x2b\\x4b\\x24\\x60\\x2c\\x78\\xfd\\xab\\x68\\x6b\\xa5\\xc2\\xd5\\x4e\\xd7\\x97\\xe4\\x1e\\xab\\x8b\\x83\\x94\\x6f\\xfe\\x0a\\x81\\xe1\\x74\\x84\\x8f\\xe7\\xb5\\xe6\\xfc\\x0d\\x6c\\x30\\x44\\x9d\\xf0\\x28\\xe7\\x3c\\x14\\xe3\\x50\\x56\\x37\\xc6\\x47\\x2c\\x75\\x52\\xd3\\xe8\\xfc\\x44\\x33\\x21\\x91\\xa9\\x46\\xbf\\x06\\x34\\x84\\x1f\\x60\\x6f\\xc0\\x29\\x32\\x96\\x88\\x0c\\xc7\\x7b\\x0e\\xa9\\x60\\x01\\x4e\\xeb\\x7e\\x3e\\xce\\x08\\x33\\xf9\\x38\\x00\\x8f\\x9e\\x80\\xd2\\x95\\x17\\x53\\xb0\\xd5\\x2a\\x6f\\x1c\\xf3\\x84\\x53\\x23\\x10\\xc0\\xa6\\x0c\\xc8\\x9d\\xf8\\x7e\\x09\\xa6\\xfe\\x6f\\x2b\\xd7\\x48\\xe9\\x93\\x52\\xcb\\xb2\\xb4\\x93\\xb7\\x25\\xd5\\x91\\xad\\x4d\\x93\\xc2\\x28\\x67\\x52\\x2e\\x2d\\x31\\x24\\xe3\\x94\\xdf\\x3d\\x49\\xdc\\x3d\\xb5\\x86\\xf2\\x5d\\xf4\\xaf\\x1b\\x44\\x2b\\xb3\\xa6\\xa1\\x9c\\xbf\\x6d\\x51\\xbd\\x61\\x74\\xfe\\x7a\\x96\\xf2\\xdf\\xe4\\x06\\xc6\\x35\\x3a\\xf8\\x0d\\x87\\xd3\\x11\\xce\\x3d\\xd4\\xce\\xaa\\x20\\x5b\\x7c\\x66\\xa0\\x62\\x3b\\x91\\xbd\\x4d\\x2e\\x4d\\xed\\x0f\\x12\\xbd\\x56\\x5b\\xe7\\x9d\\xc8\\xe4\\xfc\\x5e\\xf0\\x1f\\x56\\xab\\xed\\xe6\\xb4\\xda\\xde\\xd3\\x9f\\x00\\x00\\x00\\xff\\xff\\x0b\\x97\\x9a\\x0c\\x67\\x02\\x00\\x00\")\n\nfunc indexHtmlBytes() ([]byte, error) {\n\treturn bindataRead(\n\t\t_indexHtml,\n\t\t\"index.html\",\n\t)\n}\n\nfunc indexHtml() (*asset, error) {\n\tbytes, err := indexHtmlBytes()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tinfo := bindataFileInfo{name: \"index.html\", size: 615, mode: os.FileMode(436), modTime: time.Unix(1505973140, 0)}\n\ta := &asset{bytes: bytes, info: info}\n\treturn a, nil\n}\n\nvar _picodomJs = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x7c\\x56\\x4d\\x93\\xa3\\x36\\x10\\xbd\\xe7\\x57\\xd8\\xa4\\x8a\\x92\\xca\\xbd\\x8c\\x77\\x73\\x33\\xdb\\x71\\xcd\\xa6\\x72\\x4b\\xf6\\x90\\xaf\\x0b\\xc5\\x01\\x43\\x83\\x59\\x63\\x89\\x12\\xcd\\xd8\\x2e\\xc3\\x7f\\x4f\\x49\\xc2\\xc6\\x33\\x93\\xcd\\xc5\\x0d\\xea\\xee\\xc7\\xd3\\xeb\\x56\\xcb\\xcb\\xb2\\x57\\x39\\xd7\\x5a\\x09\\x02\\x96\\xd7\\x40\\xef\\xbe\\x51\\xce\\x01\\x22\\x5f\\x5a\\xd2\\xe5\\x82\\xce\\xad\\x36\\xdc\\x85\\x61\\xd0\\xab\\x82\\xca\\x5a\\x51\\x11\\x2c\\x6f\\xce\\xa3\\x2e\\xfa\\x86\\xb6\\x2c\\xa6\\x28\\xb9\\x09\\x6e\\x70\\x33\\x82\\xcf\\x0a\\x43\\x6f\\xa3\\xec\\x58\\x6c\\xfd\\xa3\\x48\\x82\\x29\\x2f\\x48\\x81\\xe5\\x86\\x05\\x45\\x6d\\x9d\\xeb\\x42\\x1f\\xf1\\x3a\\xca\\x51\\xf0\\xbe\\xee\\x60\\xe6\\x27\\xaf\\x41\\xdf\\xd1\\xa2\\x63\\x53\\xe7\\x1c\\xc4\\x37\\xc7\\x82\\x3d\\xf5\\x97\\xcc\\x2c\\x14\\x18\\x4c\\xd2\\xb8\\xd4\\x46\\xf4\\x98\\x99\\xaa\\x3f\\x92\\xe2\\x2e\\x6a\\x48\\x55\\xbc\\x8f\\xfb\\x0f\\x1f\\x16\\x3f\\x7f\\x8a\\x65\\x11\\xb5\\x7d\\xb7\\x17\\x77\\x7f\\xd2\\xa7\\xd2\\xe5\\xc4\\xc5\\x2d\\x54\\xd6\\xa5\\x78\\x36\\x26\\xbb\\x44\\x75\\xe7\\xac\\x50\\x58\\x44\\xad\\x6e\\x85\\x94\\xd2\\xc3\\xab\\x07\\xd8\\x3b\\xa6\\x72\\x58\\xd4\\x74\\xb4\\x50\\x7d\\xd3\\x2c\\x51\\x85\\xe1\\x72\\xbd\\x44\\x67\\x3f\\x7a\\x2b\\x02\\xd5\\x1f\\x77\\x64\\x66\\x89\\xec\\xa2\\x5a\\x61\\x10\\x48\\x30\\x13\\x8e\\x94\\xb1\\x21\\xee\\x8d\\x0a\\xec\\x7e\\x55\\xf5\\x50\\x91\\xed\\x95\\xb3\\x6a\\x43\\x50\\x64\\x9c\\x6d\\x78\\x18\\xae\\x23\\xe4\\xfb\\xba\\x29\\x0c\\xa9\\x8d\\x19\\x37\\x24\\x18\\x8c\\x1c\\xef\\xf2\\xb8\\xca\\x42\\x06\\x0d\\xf4\\x50\\xc8\\x6b\\x5d\\x0a\\xcb\\x0c\\x31\\x93\\x8c\\x14\\xd5\\xaa\\x23\\xc3\\x5f\\xa8\\xd4\\x86\\x84\\x16\\x0d\\xf4\\x12\\x78\\xda\\xc1\\x14\\xba\\xc4\\x26\\xe2\\xac\\x0a\\x43\\x67\\x10\\x31\\xb3\\x56\\x5e\\x6b\\xc1\\x90\\x45\\x96\\x05\\x34\\xce\\x48\\xe8\\xb1\\x1f\\x86\\xa0\\x7b\\xb1\\x74\\x7d\\x96\\xd3\\xd5\\x96\\x26\\xc7\\x26\\xba\\xd1\\x9c\\x94\\x83\\x0e\\xb3\\x77\\x6b\\x7b\\xbc\\x8e\\xf0\\x82\\x49\\x0a\\xad\\x7d\\xaa\\x70\\x1d\\x57\\x9f\\xbb\\xb8\\x5a\\xad\\x7c\\x89\\x2f\\xf8\\x92\\x54\\x29\\xb2\\x4f\\xfc\\xaa\\x0b\\xea\\x92\\x2a\\x85\\xe3\\x03\\x94\\x7d\\xdf\\xa1\\x11\\x47\\x19\\x7b\\xfe\\xbb\\x30\\x14\\xfb\\x64\\x97\\x62\\x72\\x81\\x63\\x2a\\xc7\\x1b\\xa7\\x0a\\xd7\\x70\\xc0\\x75\\x7c\\xf8\\x9c\\xc7\\x8f\\xe8\\xef\\xd0\\x4e\\x0f\\xe4\\x93\\xc3\\x1d\\xbd\\x2e\\x45\\x9b\\xec\\x52\\x59\\xad\\x56\\x4e\\x31\\x07\\x71\\x46\\x23\\x4e\\x12\\x9e\\x71\\x9f\\x9c\\xd3\\x61\\x48\\xd2\\xd8\\xeb\\x7d\\xde\\x4e\\xc2\\x5b\\x36\\x4a\\x30\\x5c\\xe0\\x08\\x27\\xab\\xf7\\x61\\xb5\\x92\\x60\\x37\\xb8\\x11\\x3b\\xf4\\x81\\x82\\xe1\\x39\\x59\\xa7\\xf0\\x9c\\x7c\\x4c\\x7d\\x90\\xf3\\xdb\\xb5\\xad\\xe0\\xd7\\x55\\x73\\x81\\x17\\x09\\xef\\x93\\xe4\\xc6\\x7f\\xc7\\x7e\\xf7\\xfe\\x29\\x68\\x93\\x73\\x8a\\x27\\x39\\x3a\\x19\\x9c\\xb8\\x7e\\xef\\xff\\x23\\xa1\\x23\\x5d\\x0a\\x06\\xaf\\xce\\x54\\xed\\x6a\\xb5\\x9a\\xa5\\x5c\\xd4\\x6a\\xb1\\xf7\\x40\\x76\\xeb\\x55\\x0a\\x5f\\xd0\\x12\\x89\\xdb\\xe4\\x8b\\x8b\\x8f\\x0e\\x74\\x49\\x87\\xa1\\xbc\\xb1\\xf4\\xab\\x72\\x1c\\x5d\\xaf\\x71\\x18\\x36\\x4b\\x44\\x8e\\x94\\x2e\\xe8\\x9f\\xac\\xe9\\x29\\x0c\\xc5\\xf7\\x1a\\xb4\\x40\\x96\\x50\\x0a\\x82\\x62\\x6a\\xc0\\xfb\\x69\\x59\\xf0\\xdc\\xf8\\xc6\\x8e\\x8c\\xba\\x14\\x16\\x89\\x90\\xa6\\xc0\\x29\\x8e\\x2c\\x9d\\x39\\x36\\x7b\\x98\\x21\\x78\\x1d\\xef\\x5d\\x6b\\xec\\xb6\\x48\\xaa\\xc4\\xa4\\x48\\x89\\x49\\x5f\\x3b\\xd8\\x3b\\xd8\\x3a\\x26\\x5c\\x35\\x63\\x6a\\x8f\\x59\\x97\\xe2\\xfd\\x19\\x96\\xfe\\x4b\\x85\\xce\\xdd\\x08\\x8a\\x72\\x43\\x19\\xd3\\x5f\\x74\\x66\\xdb\\xd1\\x82\\xe4\\xdc\\x4f\\x0a\\x05\\x23\\xcf\\xc7\\x8a\\xdc\\xe9\\xdb\\xbe\\x49\\xfd\\xb5\\x21\\xfb\\xf6\\xf5\\x4f\\x11\\xec\\x99\\xdb\\xcd\\xd3\\xd3\\xe9\\x74\\x8a\\x4e\\x3f\\x45\\xda\\x54\\x4f\\x9f\\xd6\\xeb\\xf5\\x93\\x4d\\x07\\x9f\\xbc\\xf9\\xef\\x64\\xe1\\xbd\\xb1\\x97\\x2a\\x0c\\xbd\\x8d\\xb4\\xf2\\x51\\x61\\x98\\xfb\\xe1\\x74\\x1f\\xc9\\xf2\\xfa\\x26\\x44\\x28\\x39\\xca\\x37\\xe2\\x79\\xdd\\x1b\\xa1\\xc0\\x80\\x7f\\x49\\x4c\\xfa\\x10\\x84\\xeb\\xd8\\x7c\\xa6\\xb7\\x73\\x20\\x96\\x2a\\xca\\xda\\x96\\x54\\xf1\\x8b\\x75\\x08\\x2d\\xe6\\x90\\xc4\\xac\\x56\\xf6\\xc6\\x90\\xe3\\x7b\\xd1\\x6b\\x37\\xed\\x94\\xbc\\xbe\\x22\\x91\\x09\\xbb\\xe6\\xeb\\xab\\xd1\\x16\\x0d\\x6a\\x0c\\x5e\\x6c\\x9b\\x59\\x49\\xcd\\x30\\x04\\xf9\\x9e\\xf2\\x03\\x15\\xee\\x75\\x6b\\x4b\\xbd\\x71\\x65\\xd5\\x4b\\xc4\\x3a\\x0c\\x1b\\x41\\x60\\x40\\x43\\x2d\\x47\\x15\\x86\\x2a\\xd2\\xaa\\x6f\\x8b\\xef\\x68\\x32\\x7b\\x5d\\x03\\x8c\\x0f\\xb3\\xb8\\xbc\\xb1\\x9b\\x40\\x0c\\x1d\\xf5\\x0b\\x6d\\xe7\\x47\\xc1\\x72\\x43\\x91\\x7f\\xf6\\x1b\\xe7\\x87\\xf4\\xc6\\xa7\\x83\\xf1\\x5d\\x75\\xa0\\x8b\\xa5\\xfb\\x30\\xae\\x83\\x8e\\x2f\\x0d\\xf9\\xc5\\x9b\\x00\\xda\\x0b\\x60\\x40\\xa1\\xb2\\x97\\x85\\x94\\x14\\xb9\\xb0\\x44\\xa7\\xa8\\x12\\x9d\\x0e\\x43\\x10\\xf8\\x76\\x63\\x73\\xb9\\x52\\xc2\\x29\\xaa\\x31\\xcf\\x38\\xdf\\xdb\\x03\\x34\\xce\\x57\\xfa\\xf2\\xd5\\x7d\\xb5\\xa5\\xa8\\x23\\x7e\\x66\\x36\\xf5\\xae\\x67\\x72\\x0a\\xdf\\xb9\\x3f\\x2c\\x4b\\x39\\x8e\\x96\\x47\\x0f\\x85\\x9d\\xea\\xb9\\xfd\\xe9\\xf0\\xf1\\x6f\\x07\\x18\\xc8\\x40\\xfb\\x92\\x19\\x54\\x22\\x1b\\x86\\x7b\\x83\\xee\\x74\\x71\\xb1\\x8d\\x63\\x2f\\x25\\x8d\\xb9\\xbf\\x82\\x63\\xa9\\xc5\\xfd\\xc4\\x9b\\x31\\xa6\\x68\\x8f\\x0c\\x14\\xb5\\x96\\x34\\x76\\xa3\\x8c\\x7f\\x78\\x7a\\xfa\\x71\\xd1\\xe9\\xde\\xe4\\xf4\\x7b\\xd6\\xb6\\xb5\\xaa\\xfe\\xfe\\xe3\\x37\\x9c\\xfe\\x5d\\x44\\xdf\\xba\\xe8\\x98\\xb5\\xff\\x06\\x00\\x00\\xff\\xff\\x75\\xeb\\xaa\\x7d\\xfb\\x08\\x00\\x00\")\n\nfunc picodomJsBytes() ([]byte, error) {\n\treturn bindataRead(\n\t\t_picodomJs,\n\t\t\"picodom.js\",\n\t)\n}\n\nfunc picodomJs() (*asset, error) {\n\tbytes, err := picodomJsBytes()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tinfo := bindataFileInfo{name: \"picodom.js\", size: 2299, mode: os.FileMode(436), modTime: time.Unix(1505973119, 0)}\n\ta := &asset{bytes: bytes, info: info}\n\treturn a, nil\n}\n\nvar _stylesCss = []byte(\"\\x1f\\x8b\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\x8c\\x54\\xef\\x6e\\x9b\\x30\\x10\\xff\\x0c\\x4f\\x61\\x69\\x9a\\xb4\\x4d\\x75\\x44\\x68\\xab\\x66\\xe6\\xd3\\x1e\\xc5\\x36\\x07\\x58\\x31\\x3e\\x64\\x9b\\x25\\xd9\\xd4\\x77\\x9f\\x6c\\x93\\x00\\x25\\x6d\\x17\\x29\\x08\\x1b\\xdf\\xfd\\xfe\\xdc\\x9d\\x7f\\x90\\xbf\\x79\\xd6\\x73\\xdb\\x2a\\xc3\\x48\\x51\\xe5\\xd9\\xc0\\xeb\\x5a\\x99\\x36\\x2d\\x04\\x9e\\xa9\\x53\\x7f\\xe2\\x5a\\xa0\\xad\\xc1\\x52\\x81\\xe7\\x2a\\xcf\\x1a\\x34\\x3e\\x7c\\x01\\x46\\xca\\xc3\\x70\\xdb\\x69\\x78\\xaf\\xf4\\x85\\x11\\xc7\\x8d\\xa3\\x0e\\xac\\x6a\\xaa\\xfc\\x35\\xcf\\x3b\\xdf\\xeb\\x07\\x22\\xb0\\xbe\\x04\\xb4\\x0e\\x54\\xdb\\x79\\x46\\xf6\\x45\\xf1\\xb5\\xca\\x33\\xfc\\x0d\\xb6\\xd1\\x78\\x62\\xc4\\xa0\\x81\\x78\\x7e\\xa7\\x80\\x8e\\x43\\x6b\\x79\\x0d\\x54\\xa2\\xf1\\x5c\\x19\\xb0\\x21\\xf4\\xa4\\x6a\\xdf\\xdd\\x22\\xdf\\x24\\x5a\\x31\\xf8\\x65\\x15\\xd7\\x0f\\x2b\\x22\\x4b\\xd2\\x8f\\x65\\x24\\x2d\\x51\\xa3\\x65\\xe4\\x4b\\x13\\x7f\\x41\\x30\\x97\\xc7\\xd6\\xe2\\x68\\x6a\\x7a\\xfd\\xb6\\x07\\x21\\x00\\x96\\xce\\x3c\\x42\\x4f\\xf6\\xf3\\x3f\\x50\\x5e\\x32\\xd6\\xca\\x1c\\x97\\xae\\x96\\xd0\\x93\\x22\\x1c\\x5b\\x78\\x9b\\xe2\\xb2\\x0d\\xc6\\x1d\\xfc\\x1b\\xb7\\x48\\xff\\x34\\x69\\x16\\xa8\\xeb\\x2a\\xcf\\x3c\\x9c\\x3d\\xe5\\x5a\\xb5\\x86\\x11\\x09\\xc6\\x83\\xad\\xf2\\xac\\x56\\x6e\\xd0\\xfc\\xc2\\x88\\xd0\\x28\\x8f\\xd5\\x7b\\xb6\\x95\\x91\\x82\\x56\\x06\\xe8\\x7a\\x2b\\x26\\xf5\\x96\\x1b\\xd7\\xa0\\xed\\x19\\x19\\x87\\x01\\xac\\xe4\\x6e\\x2a\\xce\\xff\\x57\\xe4\\x8e\\x9a\\x9f\\xb2\\x7c\\x11\\x45\\x4a\\x14\\x71\\x94\\x19\\x46\\x4f\\x4f\\x96\\x07\\x90\\x90\\x71\\x36\\x69\\xf7\\x9c\\x5c\\x43\\xa7\\xbc\\x42\\xc3\\x48\\xa3\\xce\\x10\\x55\\xe3\\x90\\xfa\\x53\\x43\\xe3\\xd3\\x9b\\x55\\x6d\\x17\\xdf\\xd6\\x89\\xb7\\x14\\x57\\x7a\\xf7\\x57\\x88\\xb9\\x30\\xc5\\x2e\\x99\\xf0\\xf6\\x08\\x8e\\x3e\\x84\\x5e\\xbb\\x34\\x4b\\xe3\\x70\\x5b\\x5e\\xf5\\x3d\\xf1\\xfd\\xd3\\x41\\xde\\xd5\\x6e\\x5b\\xc1\\xbf\\x95\\xcf\\xcf\\x0f\\x64\\x7e\\x14\\xbb\\xc3\\xcb\\xf7\\xd8\\x40\\x33\\x67\\xd6\\xa0\\x1c\\x5d\\x60\\xfe\\x41\\x37\\x44\\x99\\xdc\\x1d\\xa9\\x56\\x2e\\xaa\\xbc\\x8e\\x11\\xbd\\x30\\xc2\\x47\\x8f\\xef\\x1b\\x57\\x4e\\x8a\\x04\\x7a\\x8f\\x7d\\x50\\x38\\x75\\xc2\\xca\\x4c\\x3f\\xbb\\x19\\x60\\x94\\x87\\x7e\\x35\\xbc\\x53\\x92\\xcf\\xb5\\x6d\\x0b\\x2a\\x47\\xeb\\x42\\xd0\\x80\\x2a\\x75\\xec\\xeb\\x02\\x64\\x27\\x3b\\x90\\x47\\xa8\\x03\\x58\\xf4\\xa4\\x06\\x89\\x96\\x27\\x1d\\xb1\\x78\\xbe\\xb3\\x38\\xb6\\xdd\\x67\\xe0\\x8f\\x87\\x64\\x6c\\x83\\xe8\\xa7\\xce\\xda\\xf8\\x31\\x4b\\xbe\\x9a\\xb1\\x96\\xff\\xe1\\x3c\\x6e\\x5b\\x7a\\x27\\xbc\\xa1\\x52\\x03\\xb7\\x34\\xe8\\x71\\xdb\\xee\\xbb\\x3b\\xaf\\x8b\\x7b\\x69\\x9f\\x2e\\xd3\\xdb\\x3c\\x4e\\x8e\\xad\\x87\\x74\\xda\\xfc\\x60\\x4c\\xef\\x59\\xfc\\x2f\\x00\\x00\\xff\\xff\\x7f\\xd5\\x66\\xf8\\xea\\x05\\x00\\x00\")\n\nfunc stylesCssBytes() ([]byte, error) {\n\treturn bindataRead(\n\t\t_stylesCss,\n\t\t\"styles.css\",\n\t)\n}\n\nfunc stylesCss() (*asset, error) {\n\tbytes, err := stylesCssBytes()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tinfo := bindataFileInfo{name: \"styles.css\", size: 1514, mode: os.FileMode(436), modTime: time.Unix(1505976763, 0)}\n\ta := &asset{bytes: bytes, info: info}\n\treturn a, nil\n}\n\n// Asset loads and returns the asset for the given name.\n// It returns an error if the asset could not be found or\n// could not be loaded.\nfunc Asset(name string) ([]byte, error) {\n\tcannonicalName := strings.Replace(name, \"\\\\\", \"/\", -1)\n\tif f, ok := _bindata[cannonicalName]; ok {\n\t\ta, err := f()\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"Asset %s can't read by error: %v\", name, err)\n\t\t}\n\t\treturn a.bytes, nil\n\t}\n\treturn nil, fmt.Errorf(\"Asset %s not found\", name)\n}\n\n// MustAsset is like Asset but panics when Asset would return an error.\n// It simplifies safe initialization of global variables.\nfunc MustAsset(name string) []byte {\n\ta, err := Asset(name)\n\tif err != nil {\n\t\tpanic(\"asset: Asset(\" + name + \"): \" + err.Error())\n\t}\n\n\treturn a\n}\n\n// AssetInfo loads and returns the asset info for the given name.\n// It returns an error if the asset could not be found or\n// could not be loaded.\nfunc AssetInfo(name string) (os.FileInfo, error) {\n\tcannonicalName := strings.Replace(name, \"\\\\\", \"/\", -1)\n\tif f, ok := _bindata[cannonicalName]; ok {\n\t\ta, err := f()\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"AssetInfo %s can't read by error: %v\", name, err)\n\t\t}\n\t\treturn a.info, nil\n\t}\n\treturn nil, fmt.Errorf(\"AssetInfo %s not found\", name)\n}\n\n// AssetNames returns the names of the assets.\nfunc AssetNames() []string {\n\tnames := make([]string, 0, len(_bindata))\n\tfor name := range _bindata {\n\t\tnames = append(names, name)\n\t}\n\treturn names\n}\n\n// _bindata is a table, holding each asset generator, mapped to its name.\nvar _bindata = map[string]func() (*asset, error){\n\t\"app.js\": appJs,\n\t\"index.html\": indexHtml,\n\t\"picodom.js\": picodomJs,\n\t\"styles.css\": stylesCss,\n}\n\n// AssetDir returns the file names below a certain\n// directory embedded in the file by go-bindata.\n// For example if you run go-bindata on data/... and data contains the\n// following hierarchy:\n//     data/\n//       foo.txt\n//       img/\n//         a.png\n//         b.png\n// then AssetDir(\"data\") would return []string{\"foo.txt\", \"img\"}\n// AssetDir(\"data/img\") would return []string{\"a.png\", \"b.png\"}\n// AssetDir(\"foo.txt\") and AssetDir(\"notexist\") would return an error\n// AssetDir(\"\") will return []string{\"data\"}.\nfunc AssetDir(name string) ([]string, error) {\n\tnode := _bintree\n\tif len(name) != 0 {\n\t\tcannonicalName := strings.Replace(name, \"\\\\\", \"/\", -1)\n\t\tpathList := strings.Split(cannonicalName, \"/\")\n\t\tfor _, p := range pathList {\n\t\t\tnode = node.Children[p]\n\t\t\tif node == nil {\n\t\t\t\treturn nil, fmt.Errorf(\"Asset %s not found\", name)\n\t\t\t}\n\t\t}\n\t}\n\tif node.Func != nil {\n\t\treturn nil, fmt.Errorf(\"Asset %s not found\", name)\n\t}\n\trv := make([]string, 0, len(node.Children))\n\tfor childName := range node.Children {\n\t\trv = append(rv, childName)\n\t}\n\treturn rv, nil\n}\n\ntype bintree struct {\n\tFunc     func() (*asset, error)\n\tChildren map[string]*bintree\n}\nvar _bintree = &bintree{nil, map[string]*bintree{\n\t\"app.js\": &bintree{appJs, map[string]*bintree{}},\n\t\"index.html\": &bintree{indexHtml, map[string]*bintree{}},\n\t\"picodom.js\": &bintree{picodomJs, map[string]*bintree{}},\n\t\"styles.css\": &bintree{stylesCss, map[string]*bintree{}},\n}}\n\n// RestoreAsset restores an asset under the given directory\nfunc RestoreAsset(dir, name string) error {\n\tdata, err := Asset(name)\n\tif err != nil {\n\t\treturn err\n\t}\n\tinfo, err := AssetInfo(name)\n\tif err != nil {\n\t\treturn err\n\t}\n\terr = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755))\n\tif err != nil {\n\t\treturn err\n\t}\n\terr = ioutil.WriteFile(_filePath(dir, name), data, info.Mode())\n\tif err != nil {\n\t\treturn err\n\t}\n\terr = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n\n// RestoreAssets restores an asset under the given directory recursively\nfunc RestoreAssets(dir, name string) error {\n\tchildren, err := AssetDir(name)\n\t// File\n\tif err != nil {\n\t\treturn RestoreAsset(dir, name)\n\t}\n\t// Dir\n\tfor _, child := range children {\n\t\terr = RestoreAssets(dir, filepath.Join(name, child))\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc _filePath(dir, name string) string {\n\tcannonicalName := strings.Replace(name, \"\\\\\", \"/\", -1)\n\treturn filepath.Join(append([]string{dir}, strings.Split(cannonicalName, \"/\")...)...)\n}\n\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/todo-go/main.go",
    "content": "package main\n\n//go:generate go get -u github.com/jteeuwen/go-bindata/...\n//go:generate go-bindata -pkg $GOPACKAGE -o assets.go -prefix assets/ assets/\n\nimport (\n\t\"bytes\"\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"mime\"\n\t\"net\"\n\t\"net/http\"\n\t\"path/filepath\"\n\n\t\"github.com/zserge/webview\"\n)\n\nfunc startServer() string {\n\tln, err := net.Listen(\"tcp\", \"127.0.0.1:0\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tgo func() {\n\t\tdefer ln.Close()\n\t\thttp.HandleFunc(\"/\", func(w http.ResponseWriter, r *http.Request) {\n\t\t\tpath := r.URL.Path\n\t\t\tif len(path) > 0 && path[0] == '/' {\n\t\t\t\tpath = path[1:]\n\t\t\t}\n\t\t\tif path == \"\" {\n\t\t\t\tpath = \"index.html\"\n\t\t\t}\n\t\t\tif bs, err := Asset(path); err != nil {\n\t\t\t\tw.WriteHeader(http.StatusNotFound)\n\t\t\t} else {\n\t\t\t\tw.Header().Add(\"Content-Type\", mime.TypeByExtension(filepath.Ext(path)))\n\t\t\t\tio.Copy(w, bytes.NewBuffer(bs))\n\t\t\t}\n\t\t})\n\t\tlog.Fatal(http.Serve(ln, nil))\n\t}()\n\treturn \"http://\" + ln.Addr().String()\n}\n\n// Task is a data model type, it contains information about task name and status (done/not done).\ntype Task struct {\n\tName string `json:\"name\"`\n\tDone bool   `json:\"done\"`\n}\n\n// Tasks is a global data model, to keep things simple.\nvar Tasks = []Task{}\n\nfunc render(w webview.WebView, tasks []Task) {\n\tb, err := json.Marshal(tasks)\n\tif err == nil {\n\t\tw.Eval(fmt.Sprintf(\"rpc.render(%s)\", string(b)))\n\t}\n}\n\nfunc handleRPC(w webview.WebView, data string) {\n\tcmd := struct {\n\t\tName string `json:\"cmd\"`\n\t}{}\n\tif err := json.Unmarshal([]byte(data), &cmd); err != nil {\n\t\tlog.Println(err)\n\t\treturn\n\t}\n\tswitch cmd.Name {\n\tcase \"init\":\n\t\trender(w, Tasks)\n\tcase \"log\":\n\t\tlogInfo := struct {\n\t\t\tText string `json:\"text\"`\n\t\t}{}\n\t\tif err := json.Unmarshal([]byte(data), &logInfo); err != nil {\n\t\t\tlog.Println(err)\n\t\t} else {\n\t\t\tlog.Println(logInfo.Text)\n\t\t}\n\tcase \"addTask\":\n\t\ttask := Task{}\n\t\tif err := json.Unmarshal([]byte(data), &task); err != nil {\n\t\t\tlog.Println(err)\n\t\t} else if len(task.Name) > 0 {\n\t\t\tTasks = append(Tasks, task)\n\t\t\trender(w, Tasks)\n\t\t}\n\tcase \"markTask\":\n\t\ttaskInfo := struct {\n\t\t\tIndex int  `json:\"index\"`\n\t\t\tDone  bool `json:\"done\"`\n\t\t}{}\n\t\tif err := json.Unmarshal([]byte(data), &taskInfo); err != nil {\n\t\t\tlog.Println(err)\n\t\t} else if taskInfo.Index >= 0 && taskInfo.Index < len(Tasks) {\n\t\t\tTasks[taskInfo.Index].Done = taskInfo.Done\n\t\t\trender(w, Tasks)\n\t\t}\n\tcase \"clearDoneTasks\":\n\t\tnewTasks := []Task{}\n\t\tfor _, task := range Tasks {\n\t\t\tif !task.Done {\n\t\t\t\tnewTasks = append(newTasks, task)\n\t\t\t}\n\t\t}\n\t\tTasks = newTasks\n\t\trender(w, Tasks)\n\t}\n}\n\nfunc main() {\n\turl := startServer()\n\tw := webview.New(webview.Settings{\n\t\tWidth:  320,\n\t\tHeight: 480,\n\t\tTitle:  \"Todo App\",\n\t\tURL:    url,\n\t\tExternalInvokeCallback: handleRPC,\n\t})\n\tdefer w.Exit()\n\tw.Run()\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/examples/window-go/main.go",
    "content": "package main\n\nimport (\n\t\"log\"\n\t\"net\"\n\t\"net/http\"\n\t\"strings\"\n\n\t\"github.com/zserge/webview\"\n)\n\nconst (\n\twindowWidth  = 480\n\twindowHeight = 320\n)\n\nvar indexHTML = `\n<!doctype html>\n<html>\n\t<head>\n\t\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t</head>\n\t<body>\n\t\t<button onclick=\"external.invoke('close')\">Close</button>\n\t\t<button onclick=\"external.invoke('open')\">Open</button>\n\t\t<button onclick=\"external.invoke('save')\">Save</button>\n\t\t<button onclick=\"external.invoke('message')\">Message</button>\n\t\t<button onclick=\"external.invoke('changeTitle:'+document.getElementById('new-title').value)\">\n\t\t\tChange title\n\t\t</button>\n\t\t<input id=\"new-title\" type=\"text\" />\n\t</body>\n</html>\n`\n\nfunc startServer() string {\n\tln, err := net.Listen(\"tcp\", \"127.0.0.1:0\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tgo func() {\n\t\tdefer ln.Close()\n\t\thttp.HandleFunc(\"/\", func(w http.ResponseWriter, r *http.Request) {\n\t\t\tw.Write([]byte(indexHTML))\n\t\t})\n\t\tlog.Fatal(http.Serve(ln, nil))\n\t}()\n\treturn \"http://\" + ln.Addr().String()\n}\n\nfunc handleRPC(w webview.WebView, data string) {\n\tswitch {\n\tcase data == \"close\":\n\t\tw.Terminate()\n\tcase data == \"open\":\n\t\tlog.Println(\"open\", w.Dialog(webview.DialogTypeOpen, 0, \"Open file\", \"\"))\n\tcase data == \"save\":\n\t\tlog.Println(\"save\", w.Dialog(webview.DialogTypeSave, 0, \"Save file\", \"\"))\n\tcase data == \"message\":\n\t\tw.Dialog(webview.DialogTypeAlert, 0, \"Hello\", \"Hello, world!\")\n\tcase strings.HasPrefix(data, \"changeTitle:\"):\n\t\tw.SetTitle(strings.TrimPrefix(data, \"changeTitle:\"))\n\t}\n}\n\nfunc main() {\n\turl := startServer()\n\tw := webview.New(webview.Settings{\n\t\tWidth:  windowWidth,\n\t\tHeight: windowHeight,\n\t\tTitle:  \"Simple window demo\",\n\t\tURL:    url,\n\t\tExternalInvokeCallback: handleRPC,\n\t})\n\tdefer w.Exit()\n\tw.Run()\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/webview.go",
    "content": "//\n// Package webview implements Go bindings to https://github.com/zserge/webview C library.\n//\n// Bindings closely repeat the C APIs and include both, a simplified\n// single-function API to just open a full-screen webview window, and a more\n// advanced and featureful set of APIs, including Go-to-JavaScript bindings.\n//\n// The library uses gtk-webkit, Cocoa/Webkit and MSHTML (IE8..11) as a browser\n// engine and supports Linux, MacOS and Windows 7..10 respectively.\n//\npackage webview\n\n/*\n#cgo linux openbsd CFLAGS: -DWEBVIEW_GTK=1\n#cgo linux openbsd pkg-config: gtk+-3.0 webkit2gtk-4.0\n\n#cgo windows CFLAGS: -DWEBVIEW_WINAPI=1\n#cgo windows LDFLAGS: -lole32 -lcomctl32 -loleaut32 -luuid -mwindows\n\n#cgo darwin CFLAGS: -DWEBVIEW_COCOA=1 -x objective-c\n#cgo darwin LDFLAGS: -framework Cocoa -framework WebKit\n\n#include <stdlib.h>\n#include <stdint.h>\n#include \"webview.h\"\n\nextern void _webviewExternalInvokeCallback(void *, void *);\n\nstatic inline void CgoWebViewFree(void *w) {\n\tfree((void *)((struct webview *)w)->title);\n\tfree((void *)((struct webview *)w)->url);\n\tfree(w);\n}\n\nstatic inline void *CgoWebViewCreate(int width, int height, char *title, char *url, int resizable, int debug) {\n\tstruct webview *w = (struct webview *) calloc(1, sizeof(*w));\n\tw->width = width;\n\tw->height = height;\n\tw->title = title;\n\tw->url = url;\n\tw->resizable = resizable;\n\tw->debug = debug;\n\tw->external_invoke_cb = (webview_external_invoke_cb_t) _webviewExternalInvokeCallback;\n\tif (webview_init(w) != 0) {\n\t\tCgoWebViewFree(w);\n\t\treturn NULL;\n\t}\n\treturn (void *)w;\n}\n\nstatic inline int CgoWebViewLoop(void *w, int blocking) {\n\treturn webview_loop((struct webview *)w, blocking);\n}\n\nstatic inline void CgoWebViewTerminate(void *w) {\n\twebview_terminate((struct webview *)w);\n}\n\nstatic inline void CgoWebViewExit(void *w) {\n\twebview_exit((struct webview *)w);\n}\n\nstatic inline void CgoWebViewSetTitle(void *w, char *title) {\n\twebview_set_title((struct webview *)w, title);\n}\n\nstatic inline void CgoDialog(void *w, int dlgtype, int flags,\n\t\tchar *title, char *arg, char *res, size_t ressz) {\n\twebview_dialog(w, dlgtype, flags,\n\t\t(const char*)title, (const char*) arg, res, ressz);\n}\n\nstatic inline int CgoWebViewEval(void *w, char *js) {\n\treturn webview_eval((struct webview *)w, js);\n}\n\nstatic inline void CgoWebViewInjectCSS(void *w, char *css) {\n\twebview_inject_css((struct webview *)w, css);\n}\n\nextern void _webviewDispatchGoCallback(void *);\nstatic inline void _webview_dispatch_cb(struct webview *w, void *arg) {\n\t_webviewDispatchGoCallback(arg);\n}\nstatic inline void CgoWebViewDispatch(void *w, uintptr_t arg) {\n\twebview_dispatch((struct webview *)w, _webview_dispatch_cb, (void *)arg);\n}\n*/\nimport \"C\"\nimport (\n\t\"bytes\"\n\t\"encoding/json\"\n\t\"errors\"\n\t\"fmt\"\n\t\"html/template\"\n\t\"log\"\n\t\"reflect\"\n\t\"runtime\"\n\t\"sync\"\n\t\"unicode\"\n\t\"unsafe\"\n)\n\nfunc init() {\n\t// Ensure that main.main is called from the main thread\n\truntime.LockOSThread()\n}\n\n// Open is a simplified API to open a single native window with a full-size webview in\n// it. It can be helpful if you want to communicate with the core app using XHR\n// or WebSockets (as opposed to using JavaScript bindings).\n//\n// Window appearance can be customized using title, width, height and resizable parameters.\n// URL must be provided and can user either a http or https protocol, or be a\n// local file:// URL. On some platforms \"data:\" URLs are also supported\n// (Linux/MacOS).\nfunc Open(title, url string, w, h int, resizable bool) error {\n\ttitleStr := C.CString(title)\n\tdefer C.free(unsafe.Pointer(titleStr))\n\turlStr := C.CString(url)\n\tdefer C.free(unsafe.Pointer(urlStr))\n\tresize := C.int(0)\n\tif resizable {\n\t\tresize = C.int(1)\n\t}\n\n\tr := C.webview(titleStr, urlStr, C.int(w), C.int(h), resize)\n\tif r != 0 {\n\t\treturn errors.New(\"failed to create webview\")\n\t}\n\treturn nil\n}\n\n// Debug prints a debug string using stderr on Linux/BSD, NSLog on MacOS and\n// OutputDebugString on Windows.\nfunc Debug(a ...interface{}) {\n\ts := C.CString(fmt.Sprint(a...))\n\tdefer C.free(unsafe.Pointer(s))\n\tC.webview_print_log(s)\n}\n\n// Debugf prints a formatted debug string using stderr on Linux/BSD, NSLog on\n// MacOS and OutputDebugString on Windows.\nfunc Debugf(format string, a ...interface{}) {\n\ts := C.CString(fmt.Sprintf(format, a...))\n\tdefer C.free(unsafe.Pointer(s))\n\tC.webview_print_log(s)\n}\n\n// ExternalInvokeCallbackFunc is a function type that is called every time\n// \"window.external.invoke()\" is called from JavaScript. Data is the only\n// obligatory string parameter passed into the \"invoke(data)\" function from\n// JavaScript. To pass more complex data serialized JSON or base64 encoded\n// string can be used.\ntype ExternalInvokeCallbackFunc func(w WebView, data string)\n\n// Settings is a set of parameters to customize the initial WebView appearance\n// and behavior. It is passed into the webview.New() constructor.\ntype Settings struct {\n\t// WebView main window title\n\tTitle string\n\t// URL to open in a webview\n\tURL string\n\t// Window width in pixels\n\tWidth int\n\t// Window height in pixels\n\tHeight int\n\t// Allows/disallows window resizing\n\tResizable bool\n\t// Enable debugging tools (Linux/BSD/MacOS, on Windows use Firebug)\n\tDebug bool\n\t// A callback that is executed when JavaScript calls \"window.external.invoke()\"\n\tExternalInvokeCallback ExternalInvokeCallbackFunc\n}\n\n// WebView is an interface that wraps the basic methods for controlling the UI\n// loop, handling multithreading and providing JavaScript bindings.\ntype WebView interface {\n\t// Run() starts the main UI loop until the user closes the webview window or\n\t// Terminate() is called.\n\tRun()\n\t// Loop() runs a single iteration of the main UI.\n\tLoop(blocking bool) bool\n\t// SetTitle() changes window title. This method must be called from the main\n\t// thread only. See Dispatch() for more details.\n\tSetTitle(title string)\n\t// Eval() evaluates an arbitrary JS code inside the webview. This method must\n\t// be called from the main thread only. See Dispatch() for more details.\n\tEval(js string)\n\t// InjectJS() injects an arbitrary block of CSS code using the JS API. This\n\t// method must be called from the main thread only. See Dispatch() for more\n\t// details.\n\tInjectCSS(css string)\n\t// Dialog() opens a system dialog of the given type and title. String\n\t// argument can be provided for certain dialogs, such as alert boxes. For\n\t// alert boxes argument is a message inside the dialog box.\n\tDialog(dlgType DialogType, flags int, title string, arg string) string\n\t// Terminate() breaks the main UI loop. This method must be called from the main thread\n\t// only. See Dispatch() for more details.\n\tTerminate()\n\t// Dispatch() schedules some arbitrary function to be executed on the main UI\n\t// thread. This may be helpful if you want to run some JavaScript from\n\t// background threads/goroutines, or to terminate the app.\n\tDispatch(func())\n\t// Exit() closes the window and cleans up the resources. Use Terminate() to\n\t// forcefully break out of the main UI loop.\n\tExit()\n\t// Bind() registers a binding between a given value and a JavaScript object with the\n\t// given name.  A value must be a struct or a struct pointer. All methods are\n\t// available under their camel-case names, starting with a lower-case letter,\n\t// e.g. \"FooBar\" becomes \"fooBar\" in JavaScript.\n\t// Bind() returns a function that updates JavaScript object with the current\n\t// Go value. You only need to call it if you change Go value asynchronously.\n\tBind(name string, v interface{}) (sync func(), err error)\n}\n\n// DialogType is an enumeration of all supported system dialog types\ntype DialogType int\n\nconst (\n\t// DialogTypeOpen is a system file open dialog\n\tDialogTypeOpen DialogType = iota\n\t// DialogTypeSave is a system file save dialog\n\tDialogTypeSave\n\t// DialogTypeAlert is a system alert dialog (message box)\n\tDialogTypeAlert\n)\n\nvar (\n\tm     sync.Mutex\n\tindex uintptr\n\tfns   = map[uintptr]func(){}\n\tcbs   = map[WebView]ExternalInvokeCallbackFunc{}\n)\n\ntype webview struct {\n\tw unsafe.Pointer\n}\n\nvar _ WebView = &webview{}\n\nfunc boolToInt(b bool) int {\n\tif b {\n\t\treturn 1\n\t}\n\treturn 0\n}\n\n// New creates and opens a new webview window using the given settings. The\n// returned object implements the WebView interface. This function returns nil\n// if a window can not be created.\nfunc New(settings Settings) WebView {\n\tif settings.Width == 0 {\n\t\tsettings.Width = 640\n\t}\n\tif settings.Height == 0 {\n\t\tsettings.Height = 480\n\t}\n\tif settings.Title == \"\" {\n\t\tsettings.Title = \"WebView\"\n\t}\n\tw := &webview{}\n\tw.w = C.CgoWebViewCreate(C.int(settings.Width), C.int(settings.Height),\n\t\tC.CString(settings.Title), C.CString(settings.URL),\n\t\tC.int(boolToInt(settings.Resizable)), C.int(boolToInt(settings.Debug)))\n\tm.Lock()\n\tif settings.ExternalInvokeCallback != nil {\n\t\tcbs[w] = settings.ExternalInvokeCallback\n\t} else {\n\t\tcbs[w] = func(w WebView, data string) {}\n\t}\n\tm.Unlock()\n\treturn w\n}\n\nfunc (w *webview) Loop(blocking bool) bool {\n\tblock := C.int(0)\n\tif blocking {\n\t\tblock = 1\n\t}\n\treturn C.CgoWebViewLoop(w.w, block) == 0\n}\n\nfunc (w *webview) Run() {\n\tfor w.Loop(true) {\n\t}\n}\n\nfunc (w *webview) Exit() {\n\tC.CgoWebViewExit(w.w)\n}\n\nfunc (w *webview) Dispatch(f func()) {\n\tm.Lock()\n\tfor ; fns[index] != nil; index++ {\n\t}\n\tfns[index] = f\n\tm.Unlock()\n\tC.CgoWebViewDispatch(w.w, C.uintptr_t(index))\n}\n\nfunc (w *webview) SetTitle(title string) {\n\tp := C.CString(title)\n\tdefer C.free(unsafe.Pointer(p))\n\tC.CgoWebViewSetTitle(w.w, p)\n}\n\nfunc (w *webview) Dialog(dlgType DialogType, flags int, title string, arg string) string {\n\tconst maxPath = 4096\n\ttitlePtr := C.CString(title)\n\tdefer C.free(unsafe.Pointer(titlePtr))\n\targPtr := C.CString(arg)\n\tdefer C.free(unsafe.Pointer(argPtr))\n\tresultPtr := (*C.char)(C.calloc((C.size_t)(unsafe.Sizeof((*C.char)(nil))), (C.size_t)(maxPath)))\n\tdefer C.free(unsafe.Pointer(resultPtr))\n\tC.CgoDialog(w.w, C.int(dlgType), C.int(flags), titlePtr,\n\t\targPtr, resultPtr, C.size_t(maxPath))\n\treturn C.GoString(resultPtr)\n}\n\nfunc (w *webview) Eval(js string) {\n\tp := C.CString(js)\n\tdefer C.free(unsafe.Pointer(p))\n\tC.CgoWebViewEval(w.w, p)\n}\n\nfunc (w *webview) InjectCSS(css string) {\n\tp := C.CString(css)\n\tdefer C.free(unsafe.Pointer(p))\n\tC.CgoWebViewInjectCSS(w.w, p)\n}\n\nfunc (w *webview) Terminate() {\n\tC.CgoWebViewTerminate(w.w)\n}\n\n//export _webviewDispatchGoCallback\nfunc _webviewDispatchGoCallback(index unsafe.Pointer) {\n\tvar f func()\n\tm.Lock()\n\tf = fns[uintptr(index)]\n\tdelete(fns, uintptr(index))\n\tm.Unlock()\n\tf()\n}\n\n//export _webviewExternalInvokeCallback\nfunc _webviewExternalInvokeCallback(w unsafe.Pointer, data unsafe.Pointer) {\n\tm.Lock()\n\tvar (\n\t\tcb ExternalInvokeCallbackFunc\n\t\twv WebView\n\t)\n\tfor wv, cb = range cbs {\n\t\tif wv.(*webview).w == w {\n\t\t\tbreak\n\t\t}\n\t}\n\tm.Unlock()\n\tcb(wv, C.GoString((*C.char)(data)))\n}\n\nvar bindTmpl = template.Must(template.New(\"\").Parse(`\nif (typeof {{.Name}} === 'undefined') {\n\t{{.Name}} = {};\n}\n{{ range .Methods }}\n{{$.Name}}.{{.JSName}} = function({{.JSArgs}}) {\n\twindow.external.invoke(JSON.stringify({scope: \"{{$.Name}}\", method: \"{{.Name}}\", params: [{{.JSArgs}}]}));\n};\n{{ end }}\n`))\n\ntype binding struct {\n\tValue   interface{}\n\tName    string\n\tMethods []methodInfo\n}\n\nfunc newBinding(name string, v interface{}) (*binding, error) {\n\tmethods, err := getMethods(v)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &binding{Name: name, Value: v, Methods: methods}, nil\n}\n\nfunc (b *binding) JS() (string, error) {\n\tjs := &bytes.Buffer{}\n\terr := bindTmpl.Execute(js, b)\n\treturn js.String(), err\n}\n\nfunc (b *binding) Sync() (string, error) {\n\tjs, err := json.Marshal(b.Value)\n\tif err == nil {\n\t\treturn fmt.Sprintf(\"%[1]s.data=%[2]s;if(%[1]s.render){%[1]s.render(%[2]s);}\", b.Name, string(js)), nil\n\t}\n\treturn \"\", err\n}\n\nfunc (b *binding) Call(js string) bool {\n\ttype rpcCall struct {\n\t\tScope  string        `json:\"scope\"`\n\t\tMethod string        `json:\"method\"`\n\t\tParams []interface{} `json:\"params\"`\n\t}\n\n\trpc := rpcCall{}\n\tif err := json.Unmarshal([]byte(js), &rpc); err != nil {\n\t\treturn false\n\t}\n\tif rpc.Scope != b.Name {\n\t\treturn false\n\t}\n\tvar mi *methodInfo\n\tfor i := 0; i < len(b.Methods); i++ {\n\t\tif b.Methods[i].Name == rpc.Method {\n\t\t\tmi = &b.Methods[i]\n\t\t\tbreak\n\t\t}\n\t}\n\tif mi == nil {\n\t\treturn false\n\t}\n\targs := make([]reflect.Value, mi.Arity(), mi.Arity())\n\tfor i := 0; i < mi.Arity(); i++ {\n\t\tval := reflect.ValueOf(rpc.Params[i])\n\t\targ := mi.Value.Type().In(i)\n\t\tu := reflect.New(arg)\n\t\tif b, err := json.Marshal(val.Interface()); err == nil {\n\t\t\tif err = json.Unmarshal(b, u.Interface()); err == nil {\n\t\t\t\targs[i] = reflect.Indirect(u)\n\t\t\t}\n\t\t}\n\t\tif !args[i].IsValid() {\n\t\t\treturn false\n\t\t}\n\t}\n\tmi.Value.Call(args)\n\treturn true\n}\n\ntype methodInfo struct {\n\tName  string\n\tValue reflect.Value\n}\n\nfunc (mi methodInfo) Arity() int { return mi.Value.Type().NumIn() }\n\nfunc (mi methodInfo) JSName() string {\n\tr := []rune(mi.Name)\n\tif len(r) > 0 {\n\t\tr[0] = unicode.ToLower(r[0])\n\t}\n\treturn string(r)\n}\n\nfunc (mi methodInfo) JSArgs() (js string) {\n\tfor i := 0; i < mi.Arity(); i++ {\n\t\tif i > 0 {\n\t\t\tjs = js + \",\"\n\t\t}\n\t\tjs = js + fmt.Sprintf(\"a%d\", i)\n\t}\n\treturn js\n}\n\nfunc getMethods(obj interface{}) ([]methodInfo, error) {\n\tp := reflect.ValueOf(obj)\n\tv := reflect.Indirect(p)\n\tt := reflect.TypeOf(obj)\n\tif t == nil {\n\t\treturn nil, errors.New(\"object can not be nil\")\n\t}\n\tk := t.Kind()\n\tif k == reflect.Ptr {\n\t\tk = v.Type().Kind()\n\t}\n\tif k != reflect.Struct {\n\t\treturn nil, errors.New(\"must be a struct or a pointer to a struct\")\n\t}\n\n\tmethods := []methodInfo{}\n\tfor i := 0; i < t.NumMethod(); i++ {\n\t\tmethod := t.Method(i)\n\t\tif !unicode.IsUpper([]rune(method.Name)[0]) {\n\t\t\tcontinue\n\t\t}\n\t\tmi := methodInfo{\n\t\t\tName:  method.Name,\n\t\t\tValue: p.MethodByName(method.Name),\n\t\t}\n\t\tmethods = append(methods, mi)\n\t}\n\n\treturn methods, nil\n}\n\nfunc (w *webview) Bind(name string, v interface{}) (sync func(), err error) {\n\tb, err := newBinding(name, v)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tjs, err := b.JS()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tsync = func() {\n\t\tif js, err := b.Sync(); err != nil {\n\t\t\tlog.Println(err)\n\t\t} else {\n\t\t\tw.Eval(js)\n\t\t}\n\t}\n\n\tm.Lock()\n\tcb := cbs[w]\n\tcbs[w] = func(w WebView, data string) {\n\t\tif ok := b.Call(data); ok {\n\t\t\tsync()\n\t\t} else {\n\t\t\tcb(w, data)\n\t\t}\n\t}\n\tm.Unlock()\n\n\tw.Eval(js)\n\tsync()\n\treturn sync, nil\n}\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/webview.h",
    "content": "#ifndef WEBVIEW_H\n#define WEBVIEW_H\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n#include <stdlib.h>\n#include <string.h>\n\n#if defined(WEBVIEW_GTK)\n#include <JavaScriptCore/JavaScript.h>\n#include <gtk/gtk.h>\n#include <webkit2/webkit2.h>\n\nstruct webview_priv {\n  int ready;\n  GtkWidget *window;\n  GtkWidget *scroller;\n  GtkWidget *webview;\n  GtkWidget *inspector_window;\n  int should_exit;\n};\n#elif defined(WEBVIEW_WINAPI)\n#define CINTERFACE\n#include <windows.h>\n\n#include <commctrl.h>\n#include <exdisp.h>\n#include <mshtmhst.h>\n#include <mshtml.h>\n#include <shobjidl.h>\n\n#include <stdio.h>\n\nstruct webview_priv {\n  HWND hwnd;\n  IOleObject **browser;\n};\n#elif defined(WEBVIEW_COCOA)\n#import <Cocoa/Cocoa.h>\n#import <WebKit/WebKit.h>\n#import <objc/runtime.h>\n\nstruct webview_priv {\n  NSAutoreleasePool *pool;\n  NSWindow *window;\n  WebView *webview;\n  id windowDelegate;\n  int should_exit;\n};\n#else\n#error \"Define one of: WEBVIEW_GTK, WEBVIEW_COCOA or WEBVIEW_WINAPI\"\n#endif\n\nstruct webview;\n\ntypedef void (*webview_external_invoke_cb_t)(struct webview *w,\n                                             const char *arg);\n\nstruct webview {\n  const char *url;\n  const char *title;\n  int width;\n  int height;\n  int resizable;\n  int debug;\n  webview_external_invoke_cb_t external_invoke_cb;\n  struct webview_priv priv;\n  void *userdata;\n};\n\nenum webview_dialog_type {\n  WEBVIEW_DIALOG_TYPE_OPEN = 0,\n  WEBVIEW_DIALOG_TYPE_SAVE = 1,\n  WEBVIEW_DIALOG_TYPE_ALERT = 2\n};\n\ntypedef void (*webview_dispatch_fn)(struct webview *w, void *arg);\n\nstruct webview_dispatch_arg {\n  webview_dispatch_fn fn;\n  struct webview *w;\n  void *arg;\n};\n\n#define DEFAULT_URL                                                            \\\n  \"data:text/\"                                                                 \\\n  \"html,%3C%21DOCTYPE%20html%3E%0A%3Chtml%20lang=%22en%22%3E%0A%3Chead%3E%\"    \\\n  \"3Cmeta%20charset=%22utf-8%22%3E%3Cmeta%20http-equiv=%22X-UA-Compatible%22%\" \\\n  \"20content=%22IE=edge%22%3E%3C%2Fhead%3E%0A%3Cbody%3E%3Cdiv%20id=%22app%22%\" \\\n  \"3E%3C%2Fdiv%3E%3Cscript%20type=%22text%2Fjavascript%22%3E%3C%2Fscript%3E%\"  \\\n  \"3C%2Fbody%3E%0A%3C%2Fhtml%3E\"\n\n#define CSS_INJECT_FUNCTION                                                    \\\n  \"(function(e){var \"                                                          \\\n  \"t=document.createElement('style'),d=document.head||document.\"               \\\n  \"getElementsByTagName('head')[0];t.setAttribute('type','text/\"               \\\n  \"css'),t.styleSheet?t.styleSheet.cssText=e:t.appendChild(document.\"          \\\n  \"createTextNode(e)),d.appendChild(t)})\"\n\nstatic const char *webview_check_url(const char *url) {\n  if (url == NULL || strlen(url) == 0) {\n    return DEFAULT_URL;\n  }\n  return url;\n}\n\nstatic int webview_init(struct webview *w);\nstatic int webview_loop(struct webview *w, int blocking);\nstatic int webview_eval(struct webview *w, const char *js);\nstatic int webview_inject_css(struct webview *w, const char *css);\nstatic void webview_set_title(struct webview *w, const char *title);\nstatic void webview_dialog(struct webview *w, enum webview_dialog_type dlgtype,\n                           int flags, const char *title, const char *arg,\n                           char *result, size_t resultsz);\nstatic void webview_dispatch(struct webview *w, webview_dispatch_fn fn,\n                             void *arg);\nstatic void webview_terminate(struct webview *w);\nstatic void webview_exit(struct webview *w);\nstatic void webview_debug(const char *format, ...);\nstatic void webview_print_log(const char *s);\n\nstatic int webview(const char *title, const char *url, int w, int h,\n                   int resizable) {\n  struct webview webview = {0};\n  webview.title = title;\n  webview.url = url;\n  webview.width = w;\n  webview.height = h;\n  webview.resizable = resizable;\n  int r = webview_init(&webview);\n  if (r != 0) {\n    return r;\n  }\n  while (webview_loop(&webview, 1) == 0)\n    ;\n  webview_exit(&webview);\n  return 0;\n}\n\nstatic void webview_debug(const char *format, ...) {\n  char buf[4096];\n  va_list ap;\n  va_start(ap, format);\n  vsnprintf(buf, sizeof(buf), format, ap);\n  webview_print_log(buf);\n  va_end(ap);\n}\n\nstatic int webview_js_encode(const char *s, char *esc, size_t n) {\n  int r = 1; /* At least one byte for trailing zero */\n  for (; *s; s++) {\n    const unsigned char c = *s;\n    if (c >= 0x20 && c < 0x80 && strchr(\"<>\\\\'\\\"\", c) == NULL) {\n      if (n > 0) {\n        *esc++ = c;\n        n--;\n      }\n      r++;\n    } else {\n      if (n > 0) {\n        snprintf(esc, n, \"\\\\x%02x\", (int)c);\n        esc += 4;\n        n -= 4;\n      }\n      r += 4;\n    }\n  }\n  return r;\n}\n\nstatic int webview_inject_css(struct webview *w, const char *css) {\n  int n = webview_js_encode(css, NULL, 0);\n  char *esc = (char *)calloc(1, sizeof(CSS_INJECT_FUNCTION) + n + 4);\n  if (esc == NULL) {\n    return -1;\n  }\n  strcpy(esc, CSS_INJECT_FUNCTION);\n  strcat(esc, \"(\\\"\");\n  webview_js_encode(css, esc + strlen(esc), n);\n  strcat(esc, \"\\\")\");\n  int r = webview_eval(w, esc);\n  free(esc);\n  return r;\n}\n\n#if defined(WEBVIEW_GTK)\nstatic void external_message_received_cb(WebKitUserContentManager *m,\n                                         WebKitJavascriptResult *r,\n                                         gpointer arg) {\n  (void)m;\n  struct webview *w = (struct webview *)arg;\n  if (w->external_invoke_cb == NULL) {\n    return;\n  }\n  JSGlobalContextRef context = webkit_javascript_result_get_global_context(r);\n  JSValueRef value = webkit_javascript_result_get_value(r);\n  JSStringRef js = JSValueToStringCopy(context, value, NULL);\n  size_t n = JSStringGetMaximumUTF8CStringSize(js);\n  char *s = g_new(char, n);\n  JSStringGetUTF8CString(js, s, n);\n  w->external_invoke_cb(w, s);\n  JSStringRelease(js);\n  g_free(s);\n}\n\nstatic void webview_load_changed_cb(WebKitWebView *webview,\n                                    WebKitLoadEvent event, gpointer arg) {\n  (void)webview;\n  struct webview *w = (struct webview *)arg;\n  if (event == WEBKIT_LOAD_FINISHED) {\n    w->priv.ready = 1;\n  }\n}\n\nstatic void webview_desroy_cb(GtkWidget *widget, gpointer arg) {\n  (void)widget;\n  struct webview *w = (struct webview *)arg;\n  webview_terminate(w);\n}\n\nstatic gboolean webview_context_menu_cb(WebKitWebView *webview,\n                                        GtkWidget *default_menu,\n                                        WebKitHitTestResult *hit_test_result,\n                                        gboolean triggered_with_keyboard,\n                                        gpointer userdata) {\n  (void)webview;\n  (void)default_menu;\n  (void)hit_test_result;\n  (void)triggered_with_keyboard;\n  (void)userdata;\n  return TRUE;\n}\n\nstatic int webview_init(struct webview *w) {\n  if (gtk_init_check(0, NULL) == FALSE) {\n    return -1;\n  }\n\n  w->priv.ready = 0;\n  w->priv.should_exit = 0;\n  w->priv.window = gtk_window_new(GTK_WINDOW_TOPLEVEL);\n  gtk_window_set_title(GTK_WINDOW(w->priv.window), w->title);\n\n  if (w->resizable) {\n    gtk_window_set_default_size(GTK_WINDOW(w->priv.window), w->width,\n                                w->height);\n  } else {\n    gtk_widget_set_size_request(w->priv.window, w->width, w->height);\n  }\n  gtk_window_set_resizable(GTK_WINDOW(w->priv.window), !!w->resizable);\n  gtk_window_set_position(GTK_WINDOW(w->priv.window), GTK_WIN_POS_CENTER);\n\n  w->priv.scroller = gtk_scrolled_window_new(NULL, NULL);\n  gtk_container_add(GTK_CONTAINER(w->priv.window), w->priv.scroller);\n\n  WebKitUserContentManager *m = webkit_user_content_manager_new();\n  webkit_user_content_manager_register_script_message_handler(m, \"external\");\n  g_signal_connect(m, \"script-message-received::external\",\n                   G_CALLBACK(external_message_received_cb), w);\n\n  w->priv.webview = webkit_web_view_new_with_user_content_manager(m);\n  webkit_web_view_load_uri(WEBKIT_WEB_VIEW(w->priv.webview),\n                           webview_check_url(w->url));\n  g_signal_connect(G_OBJECT(w->priv.webview), \"load-changed\",\n                   G_CALLBACK(webview_load_changed_cb), w);\n  gtk_container_add(GTK_CONTAINER(w->priv.scroller), w->priv.webview);\n\n  if (w->debug) {\n    WebKitSettings *settings =\n        webkit_web_view_get_settings(WEBKIT_WEB_VIEW(w->priv.webview));\n    webkit_settings_set_enable_write_console_messages_to_stdout(settings, true);\n    webkit_settings_set_enable_developer_extras(settings, true);\n  } else {\n    g_signal_connect(G_OBJECT(w->priv.webview), \"context-menu\",\n                     G_CALLBACK(webview_context_menu_cb), w);\n  }\n\n  gtk_widget_show_all(w->priv.window);\n\n  webkit_web_view_run_javascript(\n      WEBKIT_WEB_VIEW(w->priv.webview),\n      \"window.external={invoke:function(x){\"\n      \"window.webkit.messageHandlers.external.postMessage(x);}}\",\n      NULL, NULL, NULL);\n\n  g_signal_connect(G_OBJECT(w->priv.window), \"destroy\",\n                   G_CALLBACK(webview_desroy_cb), w);\n  return 0;\n}\n\nstatic int webview_loop(struct webview *w, int blocking) {\n  gtk_main_iteration_do(blocking);\n  return w->priv.should_exit;\n}\n\nstatic void webview_set_title(struct webview *w, const char *title) {\n  gtk_window_set_title(GTK_WINDOW(w->priv.window), title);\n}\n\nstatic void webview_dialog(struct webview *w, enum webview_dialog_type dlgtype,\n                           int flags, const char *title, const char *arg,\n                           char *result, size_t resultsz) {\n  (void)flags;\n  GtkWidget *dlg;\n  if (result != NULL) {\n    result[0] = '\\0';\n  }\n  if (dlgtype == WEBVIEW_DIALOG_TYPE_OPEN ||\n      dlgtype == WEBVIEW_DIALOG_TYPE_SAVE) {\n    dlg = gtk_file_chooser_dialog_new(\n        title, GTK_WINDOW(w->priv.window),\n        (dlgtype == WEBVIEW_DIALOG_TYPE_OPEN ? GTK_FILE_CHOOSER_ACTION_OPEN\n                                             : GTK_FILE_CHOOSER_ACTION_SAVE),\n        \"_Cancel\", GTK_RESPONSE_CANCEL,\n        (dlgtype == WEBVIEW_DIALOG_TYPE_OPEN ? \"_Open\" : \"_Save\"),\n        GTK_RESPONSE_ACCEPT, NULL);\n    gtk_file_chooser_set_local_only(GTK_FILE_CHOOSER(dlg), FALSE);\n    gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dlg), FALSE);\n    gtk_file_chooser_set_show_hidden(GTK_FILE_CHOOSER(dlg), TRUE);\n    gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER(dlg), TRUE);\n    gtk_file_chooser_set_create_folders(GTK_FILE_CHOOSER(dlg), TRUE);\n    gint response = gtk_dialog_run(GTK_DIALOG(dlg));\n    if (response == GTK_RESPONSE_ACCEPT) {\n      gchar *filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dlg));\n      g_strlcpy(result, filename, resultsz);\n      g_free(filename);\n    }\n    gtk_widget_destroy(dlg);\n  } else if (dlgtype == WEBVIEW_DIALOG_TYPE_ALERT) {\n    dlg =\n        gtk_message_dialog_new(GTK_WINDOW(w->priv.window), GTK_DIALOG_MODAL,\n                               GTK_MESSAGE_OTHER, GTK_BUTTONS_OK, \"%s\", title);\n    gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dlg), \"%s\",\n                                             arg);\n    gtk_dialog_run(GTK_DIALOG(dlg));\n    gtk_widget_destroy(dlg);\n  }\n}\n\nstatic int webview_eval(struct webview *w, const char *js) {\n  while (w->priv.ready == 0) {\n    g_main_context_iteration(0, FALSE);\n  }\n  webkit_web_view_run_javascript(WEBKIT_WEB_VIEW(w->priv.webview), js, NULL,\n                                 NULL, NULL);\n  return 0;\n}\n\nstatic gboolean webview_dispatch_wrapper(gpointer userdata) {\n  struct webview_dispatch_arg *arg = (struct webview_dispatch_arg *)userdata;\n  (arg->fn)(arg->w, arg->arg);\n  g_free(arg);\n  return FALSE;\n}\n\nstatic void webview_dispatch(struct webview *w, webview_dispatch_fn fn,\n                             void *arg) {\n  struct webview_dispatch_arg *context =\n      (struct webview_dispatch_arg *)g_new(struct webview_dispatch_arg *, 1);\n  context->w = w;\n  context->arg = arg;\n  context->fn = fn;\n  gdk_threads_add_idle(webview_dispatch_wrapper, context);\n}\n\nstatic void webview_terminate(struct webview *w) { w->priv.should_exit = 1; }\n\nstatic void webview_exit(struct webview *w) { (void)w; }\nstatic void webview_print_log(const char *s) { fprintf(stderr, \"%s\\n\", s); }\n\n#endif /* WEBVIEW_GTK */\n\n#if defined(WEBVIEW_WINAPI)\n\n#pragma comment(lib, \"user32.lib\")\n#pragma comment(lib, \"ole32.lib\")\n#pragma comment(lib, \"oleaut32.lib\")\n\n#define WM_WEBVIEW_DISPATCH (WM_APP + 1)\n\ntypedef struct {\n  IOleInPlaceFrame frame;\n  HWND window;\n} _IOleInPlaceFrameEx;\n\ntypedef struct {\n  IOleInPlaceSite inplace;\n  _IOleInPlaceFrameEx frame;\n} _IOleInPlaceSiteEx;\n\ntypedef struct { IDocHostUIHandler ui; } _IDocHostUIHandlerEx;\n\ntypedef struct {\n  IOleClientSite client;\n  _IOleInPlaceSiteEx inplace;\n  _IDocHostUIHandlerEx ui;\n  IDispatch external;\n} _IOleClientSiteEx;\n\n#ifdef __cplusplus\n#define iid_ref(x) &(x)\n#define iid_unref(x) *(x)\n#else\n#define iid_ref(x) (x)\n#define iid_unref(x) (x)\n#endif\n\nstatic inline WCHAR *webview_to_utf16(const char *s) {\n  DWORD size = MultiByteToWideChar(CP_UTF8, 0, s, -1, 0, 0);\n  WCHAR *ws = (WCHAR *)GlobalAlloc(GMEM_FIXED, sizeof(WCHAR) * size);\n  if (ws == NULL) {\n    return NULL;\n  }\n  MultiByteToWideChar(CP_UTF8, 0, s, -1, ws, size);\n  return ws;\n}\n\nstatic inline char *webview_from_utf16(WCHAR *ws) {\n  int n = WideCharToMultiByte(CP_UTF8, 0, ws, -1, NULL, 0, NULL, NULL);\n  char *s = (char *)GlobalAlloc(GMEM_FIXED, n);\n  if (s == NULL) {\n    return NULL;\n  }\n  WideCharToMultiByte(CP_UTF8, 0, ws, -1, s, n, NULL, NULL);\n  return s;\n}\n\nstatic int iid_eq(REFIID a, const IID *b) {\n  return memcmp((const void *)iid_ref(a), (const void *)b, sizeof(GUID)) == 0;\n}\n\nstatic HRESULT STDMETHODCALLTYPE JS_QueryInterface(IDispatch FAR *This,\n                                                   REFIID riid,\n                                                   LPVOID FAR *ppvObj) {\n  if (iid_eq(riid, &IID_IDispatch)) {\n    *ppvObj = This;\n    return S_OK;\n  }\n  *ppvObj = 0;\n  return E_NOINTERFACE;\n}\nstatic ULONG STDMETHODCALLTYPE JS_AddRef(IDispatch FAR *This) { return 1; }\nstatic ULONG STDMETHODCALLTYPE JS_Release(IDispatch FAR *This) { return 1; }\nstatic HRESULT STDMETHODCALLTYPE JS_GetTypeInfoCount(IDispatch FAR *This,\n                                                     UINT *pctinfo) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE JS_GetTypeInfo(IDispatch FAR *This,\n                                                UINT iTInfo, LCID lcid,\n                                                ITypeInfo **ppTInfo) {\n  return S_OK;\n}\n#define WEBVIEW_JS_INVOKE_ID 0x1000\nstatic HRESULT STDMETHODCALLTYPE JS_GetIDsOfNames(IDispatch FAR *This,\n                                                  REFIID riid,\n                                                  LPOLESTR *rgszNames,\n                                                  UINT cNames, LCID lcid,\n                                                  DISPID *rgDispId) {\n  if (cNames != 1) {\n    return S_FALSE;\n  }\n  if (wcscmp(rgszNames[0], L\"invoke\") == 0) {\n    rgDispId[0] = WEBVIEW_JS_INVOKE_ID;\n    return S_OK;\n  }\n  return S_FALSE;\n}\n\nstatic HRESULT STDMETHODCALLTYPE\nJS_Invoke(IDispatch FAR *This, DISPID dispIdMember, REFIID riid, LCID lcid,\n          WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult,\n          EXCEPINFO *pExcepInfo, UINT *puArgErr) {\n  size_t offset = (size_t) & ((_IOleClientSiteEx *)NULL)->external;\n  _IOleClientSiteEx *ex = (_IOleClientSiteEx *)((char *)(This)-offset);\n  struct webview *w = (struct webview *)GetWindowLongPtr(\n      ex->inplace.frame.window, GWLP_USERDATA);\n  if (pDispParams->cArgs == 1 && pDispParams->rgvarg[0].vt == VT_BSTR) {\n    BSTR bstr = pDispParams->rgvarg[0].bstrVal;\n    char *s = webview_from_utf16(bstr);\n    if (s != NULL) {\n      if (dispIdMember == WEBVIEW_JS_INVOKE_ID) {\n        if (w->external_invoke_cb != NULL) {\n          w->external_invoke_cb(w, s);\n        }\n      } else {\n        return S_FALSE;\n      }\n      GlobalFree(s);\n    }\n  }\n  return S_OK;\n}\n\nstatic IDispatchVtbl ExternalDispatchTable = {\n    JS_QueryInterface, JS_AddRef,        JS_Release, JS_GetTypeInfoCount,\n    JS_GetTypeInfo,    JS_GetIDsOfNames, JS_Invoke};\n\nstatic ULONG STDMETHODCALLTYPE Site_AddRef(IOleClientSite FAR *This) {\n  return 1;\n}\nstatic ULONG STDMETHODCALLTYPE Site_Release(IOleClientSite FAR *This) {\n  return 1;\n}\nstatic HRESULT STDMETHODCALLTYPE Site_SaveObject(IOleClientSite FAR *This) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE Site_GetMoniker(IOleClientSite FAR *This,\n                                                 DWORD dwAssign,\n                                                 DWORD dwWhichMoniker,\n                                                 IMoniker **ppmk) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE\nSite_GetContainer(IOleClientSite FAR *This, LPOLECONTAINER FAR *ppContainer) {\n  *ppContainer = 0;\n  return E_NOINTERFACE;\n}\nstatic HRESULT STDMETHODCALLTYPE Site_ShowObject(IOleClientSite FAR *This) {\n  return NOERROR;\n}\nstatic HRESULT STDMETHODCALLTYPE Site_OnShowWindow(IOleClientSite FAR *This,\n                                                   BOOL fShow) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE\nSite_RequestNewObjectLayout(IOleClientSite FAR *This) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE Site_QueryInterface(IOleClientSite FAR *This,\n                                                     REFIID riid,\n                                                     void **ppvObject) {\n  if (iid_eq(riid, &IID_IUnknown) || iid_eq(riid, &IID_IOleClientSite))\n    *ppvObject = &((_IOleClientSiteEx *)This)->client;\n  else if (iid_eq(riid, &IID_IOleInPlaceSite))\n    *ppvObject = &((_IOleClientSiteEx *)This)->inplace;\n  else if (iid_eq(riid, &IID_IDocHostUIHandler))\n    *ppvObject = &((_IOleClientSiteEx *)This)->ui;\n  else {\n    *ppvObject = 0;\n    return (E_NOINTERFACE);\n  }\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE InPlace_QueryInterface(\n    IOleInPlaceSite FAR *This, REFIID riid, LPVOID FAR *ppvObj) {\n  return (Site_QueryInterface(\n      (IOleClientSite *)((char *)This - sizeof(IOleClientSite)), riid, ppvObj));\n}\nstatic ULONG STDMETHODCALLTYPE InPlace_AddRef(IOleInPlaceSite FAR *This) {\n  return 1;\n}\nstatic ULONG STDMETHODCALLTYPE InPlace_Release(IOleInPlaceSite FAR *This) {\n  return 1;\n}\nstatic HRESULT STDMETHODCALLTYPE InPlace_GetWindow(IOleInPlaceSite FAR *This,\n                                                   HWND FAR *lphwnd) {\n  *lphwnd = ((_IOleInPlaceSiteEx FAR *)This)->frame.window;\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nInPlace_ContextSensitiveHelp(IOleInPlaceSite FAR *This, BOOL fEnterMode) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE\nInPlace_CanInPlaceActivate(IOleInPlaceSite FAR *This) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nInPlace_OnInPlaceActivate(IOleInPlaceSite FAR *This) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nInPlace_OnUIActivate(IOleInPlaceSite FAR *This) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE InPlace_GetWindowContext(\n    IOleInPlaceSite FAR *This, LPOLEINPLACEFRAME FAR *lplpFrame,\n    LPOLEINPLACEUIWINDOW FAR *lplpDoc, LPRECT lprcPosRect, LPRECT lprcClipRect,\n    LPOLEINPLACEFRAMEINFO lpFrameInfo) {\n  *lplpFrame = (LPOLEINPLACEFRAME) & ((_IOleInPlaceSiteEx *)This)->frame;\n  *lplpDoc = 0;\n  lpFrameInfo->fMDIApp = FALSE;\n  lpFrameInfo->hwndFrame = ((_IOleInPlaceFrameEx *)*lplpFrame)->window;\n  lpFrameInfo->haccel = 0;\n  lpFrameInfo->cAccelEntries = 0;\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE InPlace_Scroll(IOleInPlaceSite FAR *This,\n                                                SIZE scrollExtent) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE\nInPlace_OnUIDeactivate(IOleInPlaceSite FAR *This, BOOL fUndoable) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nInPlace_OnInPlaceDeactivate(IOleInPlaceSite FAR *This) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nInPlace_DiscardUndoState(IOleInPlaceSite FAR *This) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE\nInPlace_DeactivateAndUndo(IOleInPlaceSite FAR *This) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE\nInPlace_OnPosRectChange(IOleInPlaceSite FAR *This, LPCRECT lprcPosRect) {\n  IOleObject *browserObject;\n  IOleInPlaceObject *inplace;\n  browserObject = *((IOleObject **)((char *)This - sizeof(IOleObject *) -\n                                    sizeof(IOleClientSite)));\n  if (!browserObject->lpVtbl->QueryInterface(browserObject,\n                                             iid_unref(&IID_IOleInPlaceObject),\n                                             (void **)&inplace)) {\n    inplace->lpVtbl->SetObjectRects(inplace, lprcPosRect, lprcPosRect);\n    inplace->lpVtbl->Release(inplace);\n  }\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE Frame_QueryInterface(\n    IOleInPlaceFrame FAR *This, REFIID riid, LPVOID FAR *ppvObj) {\n  return E_NOTIMPL;\n}\nstatic ULONG STDMETHODCALLTYPE Frame_AddRef(IOleInPlaceFrame FAR *This) {\n  return 1;\n}\nstatic ULONG STDMETHODCALLTYPE Frame_Release(IOleInPlaceFrame FAR *This) {\n  return 1;\n}\nstatic HRESULT STDMETHODCALLTYPE Frame_GetWindow(IOleInPlaceFrame FAR *This,\n                                                 HWND FAR *lphwnd) {\n  *lphwnd = ((_IOleInPlaceFrameEx *)This)->window;\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nFrame_ContextSensitiveHelp(IOleInPlaceFrame FAR *This, BOOL fEnterMode) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE Frame_GetBorder(IOleInPlaceFrame FAR *This,\n                                                 LPRECT lprectBorder) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE Frame_RequestBorderSpace(\n    IOleInPlaceFrame FAR *This, LPCBORDERWIDTHS pborderwidths) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE Frame_SetBorderSpace(\n    IOleInPlaceFrame FAR *This, LPCBORDERWIDTHS pborderwidths) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE Frame_SetActiveObject(\n    IOleInPlaceFrame FAR *This, IOleInPlaceActiveObject *pActiveObject,\n    LPCOLESTR pszObjName) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nFrame_InsertMenus(IOleInPlaceFrame FAR *This, HMENU hmenuShared,\n                  LPOLEMENUGROUPWIDTHS lpMenuWidths) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE Frame_SetMenu(IOleInPlaceFrame FAR *This,\n                                               HMENU hmenuShared,\n                                               HOLEMENU holemenu,\n                                               HWND hwndActiveObject) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE Frame_RemoveMenus(IOleInPlaceFrame FAR *This,\n                                                   HMENU hmenuShared) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE Frame_SetStatusText(IOleInPlaceFrame FAR *This,\n                                                     LPCOLESTR pszStatusText) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nFrame_EnableModeless(IOleInPlaceFrame FAR *This, BOOL fEnable) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nFrame_TranslateAccelerator(IOleInPlaceFrame FAR *This, LPMSG lpmsg, WORD wID) {\n  return E_NOTIMPL;\n}\nstatic HRESULT STDMETHODCALLTYPE UI_QueryInterface(IDocHostUIHandler FAR *This,\n                                                   REFIID riid,\n                                                   LPVOID FAR *ppvObj) {\n  return (Site_QueryInterface((IOleClientSite *)((char *)This -\n                                                 sizeof(IOleClientSite) -\n                                                 sizeof(_IOleInPlaceSiteEx)),\n                              riid, ppvObj));\n}\nstatic ULONG STDMETHODCALLTYPE UI_AddRef(IDocHostUIHandler FAR *This) {\n  return 1;\n}\nstatic ULONG STDMETHODCALLTYPE UI_Release(IDocHostUIHandler FAR *This) {\n  return 1;\n}\nstatic HRESULT STDMETHODCALLTYPE UI_ShowContextMenu(\n    IDocHostUIHandler FAR *This, DWORD dwID, POINT __RPC_FAR *ppt,\n    IUnknown __RPC_FAR *pcmdtReserved, IDispatch __RPC_FAR *pdispReserved) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nUI_GetHostInfo(IDocHostUIHandler FAR *This, DOCHOSTUIINFO __RPC_FAR *pInfo) {\n  pInfo->cbSize = sizeof(DOCHOSTUIINFO);\n  pInfo->dwFlags = DOCHOSTUIFLAG_NO3DBORDER;\n  pInfo->dwDoubleClick = DOCHOSTUIDBLCLK_DEFAULT;\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE UI_ShowUI(\n    IDocHostUIHandler FAR *This, DWORD dwID,\n    IOleInPlaceActiveObject __RPC_FAR *pActiveObject,\n    IOleCommandTarget __RPC_FAR *pCommandTarget,\n    IOleInPlaceFrame __RPC_FAR *pFrame, IOleInPlaceUIWindow __RPC_FAR *pDoc) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE UI_HideUI(IDocHostUIHandler FAR *This) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE UI_UpdateUI(IDocHostUIHandler FAR *This) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE UI_EnableModeless(IDocHostUIHandler FAR *This,\n                                                   BOOL fEnable) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nUI_OnDocWindowActivate(IDocHostUIHandler FAR *This, BOOL fActivate) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nUI_OnFrameWindowActivate(IDocHostUIHandler FAR *This, BOOL fActivate) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nUI_ResizeBorder(IDocHostUIHandler FAR *This, LPCRECT prcBorder,\n                IOleInPlaceUIWindow __RPC_FAR *pUIWindow, BOOL fRameWindow) {\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE\nUI_TranslateAccelerator(IDocHostUIHandler FAR *This, LPMSG lpMsg,\n                        const GUID __RPC_FAR *pguidCmdGroup, DWORD nCmdID) {\n  return S_FALSE;\n}\nstatic HRESULT STDMETHODCALLTYPE UI_GetOptionKeyPath(\n    IDocHostUIHandler FAR *This, LPOLESTR __RPC_FAR *pchKey, DWORD dw) {\n  return S_FALSE;\n}\nstatic HRESULT STDMETHODCALLTYPE UI_GetDropTarget(\n    IDocHostUIHandler FAR *This, IDropTarget __RPC_FAR *pDropTarget,\n    IDropTarget __RPC_FAR *__RPC_FAR *ppDropTarget) {\n  return S_FALSE;\n}\nstatic HRESULT STDMETHODCALLTYPE UI_GetExternal(\n    IDocHostUIHandler FAR *This, IDispatch __RPC_FAR *__RPC_FAR *ppDispatch) {\n  *ppDispatch = (IDispatch *)(This + 1);\n  return S_OK;\n}\nstatic HRESULT STDMETHODCALLTYPE UI_TranslateUrl(\n    IDocHostUIHandler FAR *This, DWORD dwTranslate, OLECHAR __RPC_FAR *pchURLIn,\n    OLECHAR __RPC_FAR *__RPC_FAR *ppchURLOut) {\n  *ppchURLOut = 0;\n  return S_FALSE;\n}\nstatic HRESULT STDMETHODCALLTYPE\nUI_FilterDataObject(IDocHostUIHandler FAR *This, IDataObject __RPC_FAR *pDO,\n                    IDataObject __RPC_FAR *__RPC_FAR *ppDORet) {\n  *ppDORet = 0;\n  return S_FALSE;\n}\n\nstatic const TCHAR *classname = \"WebView\";\nstatic const SAFEARRAYBOUND ArrayBound = {1, 0};\n\nstatic IOleClientSiteVtbl MyIOleClientSiteTable = {\n    Site_QueryInterface, Site_AddRef,       Site_Release,\n    Site_SaveObject,     Site_GetMoniker,   Site_GetContainer,\n    Site_ShowObject,     Site_OnShowWindow, Site_RequestNewObjectLayout};\nstatic IOleInPlaceSiteVtbl MyIOleInPlaceSiteTable = {\n    InPlace_QueryInterface,\n    InPlace_AddRef,\n    InPlace_Release,\n    InPlace_GetWindow,\n    InPlace_ContextSensitiveHelp,\n    InPlace_CanInPlaceActivate,\n    InPlace_OnInPlaceActivate,\n    InPlace_OnUIActivate,\n    InPlace_GetWindowContext,\n    InPlace_Scroll,\n    InPlace_OnUIDeactivate,\n    InPlace_OnInPlaceDeactivate,\n    InPlace_DiscardUndoState,\n    InPlace_DeactivateAndUndo,\n    InPlace_OnPosRectChange};\n\nstatic IOleInPlaceFrameVtbl MyIOleInPlaceFrameTable = {\n    Frame_QueryInterface,\n    Frame_AddRef,\n    Frame_Release,\n    Frame_GetWindow,\n    Frame_ContextSensitiveHelp,\n    Frame_GetBorder,\n    Frame_RequestBorderSpace,\n    Frame_SetBorderSpace,\n    Frame_SetActiveObject,\n    Frame_InsertMenus,\n    Frame_SetMenu,\n    Frame_RemoveMenus,\n    Frame_SetStatusText,\n    Frame_EnableModeless,\n    Frame_TranslateAccelerator};\n\nstatic IDocHostUIHandlerVtbl MyIDocHostUIHandlerTable = {\n    UI_QueryInterface,\n    UI_AddRef,\n    UI_Release,\n    UI_ShowContextMenu,\n    UI_GetHostInfo,\n    UI_ShowUI,\n    UI_HideUI,\n    UI_UpdateUI,\n    UI_EnableModeless,\n    UI_OnDocWindowActivate,\n    UI_OnFrameWindowActivate,\n    UI_ResizeBorder,\n    UI_TranslateAccelerator,\n    UI_GetOptionKeyPath,\n    UI_GetDropTarget,\n    UI_GetExternal,\n    UI_TranslateUrl,\n    UI_FilterDataObject};\n\nstatic void UnEmbedBrowserObject(struct webview *w) {\n  if (w->priv.browser != NULL) {\n    (*w->priv.browser)->lpVtbl->Close(*w->priv.browser, OLECLOSE_NOSAVE);\n    (*w->priv.browser)->lpVtbl->Release(*w->priv.browser);\n    GlobalFree(w->priv.browser);\n    w->priv.browser = NULL;\n  }\n}\n\nstatic int EmbedBrowserObject(struct webview *w) {\n  RECT rect;\n  IWebBrowser2 *webBrowser2 = NULL;\n  LPCLASSFACTORY pClassFactory = NULL;\n  _IOleClientSiteEx *_iOleClientSiteEx = NULL;\n  IOleObject **browser = (IOleObject **)GlobalAlloc(\n      GMEM_FIXED, sizeof(IOleObject *) + sizeof(_IOleClientSiteEx));\n  if (browser == NULL) {\n    goto error;\n  }\n  w->priv.browser = browser;\n\n  _iOleClientSiteEx = (_IOleClientSiteEx *)(browser + 1);\n  _iOleClientSiteEx->client.lpVtbl = &MyIOleClientSiteTable;\n  _iOleClientSiteEx->inplace.inplace.lpVtbl = &MyIOleInPlaceSiteTable;\n  _iOleClientSiteEx->inplace.frame.frame.lpVtbl = &MyIOleInPlaceFrameTable;\n  _iOleClientSiteEx->inplace.frame.window = w->priv.hwnd;\n  _iOleClientSiteEx->ui.ui.lpVtbl = &MyIDocHostUIHandlerTable;\n  _iOleClientSiteEx->external.lpVtbl = &ExternalDispatchTable;\n\n  if (CoGetClassObject(iid_unref(&CLSID_WebBrowser),\n                       CLSCTX_INPROC_SERVER | CLSCTX_INPROC_HANDLER, NULL,\n                       iid_unref(&IID_IClassFactory),\n                       (void **)&pClassFactory) != S_OK) {\n    goto error;\n  }\n\n  if (pClassFactory == NULL) {\n    goto error;\n  }\n\n  if (pClassFactory->lpVtbl->CreateInstance(pClassFactory, 0,\n                                            iid_unref(&IID_IOleObject),\n                                            (void **)browser) != S_OK) {\n    goto error;\n  }\n  pClassFactory->lpVtbl->Release(pClassFactory);\n  if ((*browser)->lpVtbl->SetClientSite(\n          *browser, (IOleClientSite *)_iOleClientSiteEx) != S_OK) {\n    goto error;\n  }\n  (*browser)->lpVtbl->SetHostNames(*browser, L\"My Host Name\", 0);\n\n  if (OleSetContainedObject((struct IUnknown *)(*browser), TRUE) != S_OK) {\n    goto error;\n  }\n  GetClientRect(w->priv.hwnd, &rect);\n  if ((*browser)->lpVtbl->DoVerb((*browser), OLEIVERB_SHOW, NULL,\n                                 (IOleClientSite *)_iOleClientSiteEx, -1,\n                                 w->priv.hwnd, &rect) != S_OK) {\n    goto error;\n  }\n  if ((*browser)->lpVtbl->QueryInterface((*browser),\n                                         iid_unref(&IID_IWebBrowser2),\n                                         (void **)&webBrowser2) != S_OK) {\n    goto error;\n  }\n\n  webBrowser2->lpVtbl->put_Left(webBrowser2, 0);\n  webBrowser2->lpVtbl->put_Top(webBrowser2, 0);\n  webBrowser2->lpVtbl->put_Width(webBrowser2, rect.right);\n  webBrowser2->lpVtbl->put_Height(webBrowser2, rect.bottom);\n  webBrowser2->lpVtbl->Release(webBrowser2);\n\n  return 0;\nerror:\n  UnEmbedBrowserObject(w);\n  if (pClassFactory != NULL) {\n    pClassFactory->lpVtbl->Release(pClassFactory);\n  }\n  if (browser != NULL) {\n    GlobalFree(browser);\n  }\n  return -1;\n}\n\n#define WEBVIEW_DATA_URL_PREFIX \"data:text/html,\"\nstatic long DisplayHTMLPage(struct webview *w) {\n  IWebBrowser2 *webBrowser2;\n  VARIANT myURL;\n  LPDISPATCH lpDispatch;\n  IHTMLDocument2 *htmlDoc2;\n  BSTR bstr;\n  IOleObject *browserObject;\n  SAFEARRAY *sfArray;\n  VARIANT *pVar;\n  browserObject = *w->priv.browser;\n  int isDataURL = 0;\n  const char *webview_url = webview_check_url(w->url);\n  if (!browserObject->lpVtbl->QueryInterface(\n          browserObject, iid_unref(&IID_IWebBrowser2), (void **)&webBrowser2)) {\n    LPCSTR webPageName;\n    isDataURL = (strncmp(webview_url, WEBVIEW_DATA_URL_PREFIX,\n                         strlen(WEBVIEW_DATA_URL_PREFIX)) == 0);\n    if (isDataURL) {\n      webPageName = \"about:blank\";\n    } else {\n      webPageName = (LPCSTR)webview_url;\n    }\n    VariantInit(&myURL);\n    myURL.vt = VT_BSTR;\n#ifndef UNICODE\n    {\n      wchar_t *buffer = webview_to_utf16(webPageName);\n      if (buffer == NULL) {\n        goto badalloc;\n      }\n      myURL.bstrVal = SysAllocString(buffer);\n      GlobalFree(buffer);\n    }\n#else\n    myURL.bstrVal = SysAllocString(webPageName);\n#endif\n    if (!myURL.bstrVal) {\n    badalloc:\n      webBrowser2->lpVtbl->Release(webBrowser2);\n      return (-6);\n    }\n    webBrowser2->lpVtbl->Navigate2(webBrowser2, &myURL, 0, 0, 0, 0);\n    VariantClear(&myURL);\n    if (!isDataURL) {\n      return 0;\n    }\n\n    char *url = (char *)calloc(1, strlen(webview_url) + 1);\n    char *q = url;\n    for (const char *p = webview_url + strlen(WEBVIEW_DATA_URL_PREFIX); *q = *p;\n         p++, q++) {\n      if (*q == '%' && *(p + 1) && *(p + 2)) {\n        sscanf(p + 1, \"%02x\", q);\n        p = p + 2;\n      }\n    }\n\n    if (webBrowser2->lpVtbl->get_Document(webBrowser2, &lpDispatch) == S_OK) {\n      if (lpDispatch->lpVtbl->QueryInterface(lpDispatch,\n                                             iid_unref(&IID_IHTMLDocument2),\n                                             (void **)&htmlDoc2) == S_OK) {\n        if ((sfArray = SafeArrayCreate(VT_VARIANT, 1,\n                                       (SAFEARRAYBOUND *)&ArrayBound))) {\n          if (!SafeArrayAccessData(sfArray, (void **)&pVar)) {\n            pVar->vt = VT_BSTR;\n#ifndef UNICODE\n            {\n              wchar_t *buffer = webview_to_utf16(url);\n              if (buffer == NULL) {\n                goto release;\n              }\n              bstr = SysAllocString(buffer);\n              GlobalFree(buffer);\n            }\n#else\n            bstr = SysAllocString(string);\n#endif\n            if ((pVar->bstrVal = bstr)) {\n              htmlDoc2->lpVtbl->write(htmlDoc2, sfArray);\n              htmlDoc2->lpVtbl->close(htmlDoc2);\n            }\n          }\n          SafeArrayDestroy(sfArray);\n        }\n      release:\n        free(url);\n        htmlDoc2->lpVtbl->Release(htmlDoc2);\n      }\n      lpDispatch->lpVtbl->Release(lpDispatch);\n    }\n    webBrowser2->lpVtbl->Release(webBrowser2);\n    return (0);\n  }\n  return (-5);\n}\n\nstatic LRESULT CALLBACK wndproc(HWND hwnd, UINT uMsg, WPARAM wParam,\n                                LPARAM lParam) {\n  struct webview *w = (struct webview *)GetWindowLongPtr(hwnd, GWLP_USERDATA);\n  switch (uMsg) {\n  case WM_CREATE:\n    w = (struct webview *)((CREATESTRUCT *)lParam)->lpCreateParams;\n    w->priv.hwnd = hwnd;\n    return EmbedBrowserObject(w);\n  case WM_DESTROY:\n    UnEmbedBrowserObject(w);\n    PostQuitMessage(0);\n    return TRUE;\n  case WM_SIZE: {\n    IWebBrowser2 *webBrowser2;\n    IOleObject *browser = *w->priv.browser;\n    if (browser->lpVtbl->QueryInterface(browser, iid_unref(&IID_IWebBrowser2),\n                                        (void **)&webBrowser2) == S_OK) {\n      RECT rect;\n      GetClientRect(hwnd, &rect);\n      webBrowser2->lpVtbl->put_Width(webBrowser2, rect.right);\n      webBrowser2->lpVtbl->put_Height(webBrowser2, rect.bottom);\n    }\n    return TRUE;\n  }\n  case WM_WEBVIEW_DISPATCH: {\n    webview_dispatch_fn f = (webview_dispatch_fn)wParam;\n    void *arg = (void *)lParam;\n    (*f)(w, arg);\n    return TRUE;\n  }\n  }\n  return DefWindowProc(hwnd, uMsg, wParam, lParam);\n}\n\n#define WEBVIEW_KEY_FEATURE_BROWSER_EMULATION                                  \\\n  \"Software\\\\Microsoft\\\\Internet \"                                             \\\n  \"Explorer\\\\Main\\\\FeatureControl\\\\FEATURE_BROWSER_EMULATION\"\n\nstatic int webview_fix_ie_compat_mode() {\n  HKEY hKey;\n  DWORD ie_version = 11000;\n  TCHAR appname[MAX_PATH + 1];\n  TCHAR *p;\n  if (GetModuleFileName(NULL, appname, MAX_PATH + 1) == 0) {\n    return -1;\n  }\n  for (p = &appname[strlen(appname) - 1]; p != appname && *p != '\\\\'; p--)\n    ;\n  p++;\n  if (RegCreateKey(HKEY_CURRENT_USER, WEBVIEW_KEY_FEATURE_BROWSER_EMULATION,\n                   &hKey) != ERROR_SUCCESS) {\n    return -1;\n  }\n  if (RegSetValueEx(hKey, p, 0, REG_DWORD, (BYTE *)&ie_version,\n                    sizeof(ie_version)) != ERROR_SUCCESS) {\n    RegCloseKey(hKey);\n    return -1;\n  }\n  RegCloseKey(hKey);\n  return 0;\n}\n\nstatic int webview_init(struct webview *w) {\n  WNDCLASSEX wc;\n  HINSTANCE hInstance;\n  STARTUPINFO info;\n  DWORD style;\n  RECT clientRect;\n  RECT rect;\n\n  if (webview_fix_ie_compat_mode() < 0) {\n    return -1;\n  }\n\n  hInstance = GetModuleHandle(NULL);\n  if (hInstance == NULL) {\n    return -1;\n  }\n  GetStartupInfo(&info);\n  if (OleInitialize(NULL) != S_OK) {\n    return -1;\n  }\n  ZeroMemory(&wc, sizeof(WNDCLASSEX));\n  wc.cbSize = sizeof(WNDCLASSEX);\n  wc.hInstance = hInstance;\n  wc.lpfnWndProc = wndproc;\n  wc.lpszClassName = classname;\n  RegisterClassEx(&wc);\n\n  style = WS_OVERLAPPEDWINDOW;\n  if (!w->resizable) {\n    style = WS_OVERLAPPED | WS_CAPTION | WS_MINIMIZEBOX | WS_SYSMENU;\n  }\n\n  rect.left = 0;\n  rect.top = 0;\n  rect.right = w->width;\n  rect.bottom = w->height;\n  AdjustWindowRect(&rect, WS_OVERLAPPEDWINDOW, 0);\n\n  GetClientRect(GetDesktopWindow(), &clientRect);\n  int left = (clientRect.right / 2) - ((rect.right - rect.left) / 2);\n  int top = (clientRect.bottom / 2) - ((rect.bottom - rect.top) / 2);\n  rect.right = rect.right - rect.left + left;\n  rect.left = left;\n  rect.bottom = rect.bottom - rect.top + top;\n  rect.top = top;\n\n  w->priv.hwnd =\n      CreateWindowEx(0, classname, w->title, style, rect.left, rect.top,\n                     rect.right - rect.left, rect.bottom - rect.top,\n                     HWND_DESKTOP, NULL, hInstance, (void *)w);\n  if (w->priv.hwnd == 0) {\n    OleUninitialize();\n    return -1;\n  }\n\n  SetWindowLongPtr(w->priv.hwnd, GWLP_USERDATA, (LONG_PTR)w);\n\n  DisplayHTMLPage(w);\n\n  SetWindowText(w->priv.hwnd, w->title);\n  ShowWindow(w->priv.hwnd, info.wShowWindow);\n  UpdateWindow(w->priv.hwnd);\n  SetFocus(w->priv.hwnd);\n\n  return 0;\n}\n\nstatic int webview_loop(struct webview *w, int blocking) {\n  MSG msg;\n  if (blocking) {\n    GetMessage(&msg, 0, 0, 0);\n  } else {\n    PeekMessage(&msg, 0, 0, 0, PM_REMOVE);\n  }\n  switch (msg.message) {\n  case WM_QUIT:\n    return -1;\n  case WM_COMMAND:\n  case WM_KEYDOWN:\n  case WM_KEYUP: {\n    HRESULT r = S_OK;\n    IWebBrowser2 *webBrowser2;\n    IOleObject *browser = *w->priv.browser;\n    if (browser->lpVtbl->QueryInterface(browser, iid_unref(&IID_IWebBrowser2),\n                                        (void **)&webBrowser2) == S_OK) {\n      IOleInPlaceActiveObject *pIOIPAO;\n      if (browser->lpVtbl->QueryInterface(\n              browser, iid_unref(&IID_IOleInPlaceActiveObject),\n              (void **)&pIOIPAO) == S_OK) {\n        r = pIOIPAO->lpVtbl->TranslateAccelerator(pIOIPAO, &msg);\n        pIOIPAO->lpVtbl->Release(pIOIPAO);\n      }\n      webBrowser2->lpVtbl->Release(webBrowser2);\n    }\n    if (r != S_FALSE) {\n      break;\n    }\n  }\n  default:\n    TranslateMessage(&msg);\n    DispatchMessage(&msg);\n  }\n  return 0;\n}\n\nstatic int webview_eval(struct webview *w, const char *js) {\n  IWebBrowser2 *webBrowser2;\n  IHTMLDocument2 *htmlDoc2;\n  IDispatch *docDispatch;\n  IDispatch *scriptDispatch;\n  if ((*w->priv.browser)\n          ->lpVtbl->QueryInterface((*w->priv.browser),\n                                   iid_unref(&IID_IWebBrowser2),\n                                   (void **)&webBrowser2) != S_OK) {\n    return -1;\n  }\n\n  if (webBrowser2->lpVtbl->get_Document(webBrowser2, &docDispatch) != S_OK) {\n    return -1;\n  }\n  if (docDispatch->lpVtbl->QueryInterface(docDispatch,\n                                          iid_unref(&IID_IHTMLDocument2),\n                                          (void **)&htmlDoc2) != S_OK) {\n    return -1;\n  }\n  if (htmlDoc2->lpVtbl->get_Script(htmlDoc2, &scriptDispatch) != S_OK) {\n    return -1;\n  }\n  DISPID dispid;\n  BSTR evalStr = SysAllocString(L\"eval\");\n  if (scriptDispatch->lpVtbl->GetIDsOfNames(\n          scriptDispatch, iid_unref(&IID_NULL), &evalStr, 1,\n          LOCALE_SYSTEM_DEFAULT, &dispid) != S_OK) {\n    SysFreeString(evalStr);\n    return -1;\n  }\n  SysFreeString(evalStr);\n\n  DISPPARAMS params;\n  VARIANT arg;\n  VARIANT result;\n  EXCEPINFO excepInfo;\n  UINT nArgErr = (UINT)-1;\n  params.cArgs = 1;\n  params.cNamedArgs = 0;\n  params.rgvarg = &arg;\n  arg.vt = VT_BSTR;\n  static const char *prologue = \"(function(){\";\n  static const char *epilogue = \";})();\";\n  int n = strlen(prologue) + strlen(epilogue) + strlen(js) + 1;\n  char *eval = (char *)malloc(n);\n  strcpy(eval, prologue);\n  strcat(eval, js);\n  strcat(eval, epilogue);\n  wchar_t *buf = webview_to_utf16(eval);\n  if (buf == NULL) {\n    return -1;\n  }\n  arg.bstrVal = SysAllocString(buf);\n  if (scriptDispatch->lpVtbl->Invoke(\n          scriptDispatch, dispid, iid_unref(&IID_NULL), 0, DISPATCH_METHOD,\n          &params, &result, &excepInfo, &nArgErr) != S_OK) {\n    return -1;\n  }\n  SysFreeString(arg.bstrVal);\n  free(eval);\n  scriptDispatch->lpVtbl->Release(scriptDispatch);\n  htmlDoc2->lpVtbl->Release(htmlDoc2);\n  docDispatch->lpVtbl->Release(docDispatch);\n  return 0;\n}\n\nstatic void webview_dispatch(struct webview *w, webview_dispatch_fn fn,\n                             void *arg) {\n  PostMessageW(w->priv.hwnd, WM_WEBVIEW_DISPATCH, (WPARAM)fn, (LPARAM)arg);\n}\n\nstatic void webview_set_title(struct webview *w, const char *title) {\n  SetWindowText(w->priv.hwnd, title);\n}\n\n/* These are missing parts from MinGW */\n#ifndef __IFileDialog_INTERFACE_DEFINED__\n#define __IFileDialog_INTERFACE_DEFINED__\nenum _FILEOPENDIALOGOPTIONS {\n  FOS_OVERWRITEPROMPT = 0x2,\n  FOS_STRICTFILETYPES = 0x4,\n  FOS_NOCHANGEDIR = 0x8,\n  FOS_PICKFOLDERS = 0x20,\n  FOS_FORCEFILESYSTEM = 0x40,\n  FOS_ALLNONSTORAGEITEMS = 0x80,\n  FOS_NOVALIDATE = 0x100,\n  FOS_ALLOWMULTISELECT = 0x200,\n  FOS_PATHMUSTEXIST = 0x800,\n  FOS_FILEMUSTEXIST = 0x1000,\n  FOS_CREATEPROMPT = 0x2000,\n  FOS_SHAREAWARE = 0x4000,\n  FOS_NOREADONLYRETURN = 0x8000,\n  FOS_NOTESTFILECREATE = 0x10000,\n  FOS_HIDEMRUPLACES = 0x20000,\n  FOS_HIDEPINNEDPLACES = 0x40000,\n  FOS_NODEREFERENCELINKS = 0x100000,\n  FOS_DONTADDTORECENT = 0x2000000,\n  FOS_FORCESHOWHIDDEN = 0x10000000,\n  FOS_DEFAULTNOMINIMODE = 0x20000000,\n  FOS_FORCEPREVIEWPANEON = 0x40000000\n};\ntypedef DWORD FILEOPENDIALOGOPTIONS;\ntypedef enum FDAP { FDAP_BOTTOM = 0, FDAP_TOP = 1 } FDAP;\nDEFINE_GUID(IID_IFileDialog, 0x42f85136, 0xdb7e, 0x439c, 0x85, 0xf1, 0xe4, 0x07,\n            0x5d, 0x13, 0x5f, 0xc8);\ntypedef struct IFileDialogVtbl {\n  BEGIN_INTERFACE\n  HRESULT(STDMETHODCALLTYPE *QueryInterface)\n  (IFileDialog *This, REFIID riid, void **ppvObject);\n  ULONG(STDMETHODCALLTYPE *AddRef)(IFileDialog *This);\n  ULONG(STDMETHODCALLTYPE *Release)(IFileDialog *This);\n  HRESULT(STDMETHODCALLTYPE *Show)(IFileDialog *This, HWND hwndOwner);\n  HRESULT(STDMETHODCALLTYPE *SetFileTypes)\n  (IFileDialog *This, UINT cFileTypes, const COMDLG_FILTERSPEC *rgFilterSpec);\n  HRESULT(STDMETHODCALLTYPE *SetFileTypeIndex)\n  (IFileDialog *This, UINT iFileType);\n  HRESULT(STDMETHODCALLTYPE *GetFileTypeIndex)\n  (IFileDialog *This, UINT *piFileType);\n  HRESULT(STDMETHODCALLTYPE *Advise)\n  (IFileDialog *This, IFileDialogEvents *pfde, DWORD *pdwCookie);\n  HRESULT(STDMETHODCALLTYPE *Unadvise)(IFileDialog *This, DWORD dwCookie);\n  HRESULT(STDMETHODCALLTYPE *SetOptions)\n  (IFileDialog *This, FILEOPENDIALOGOPTIONS fos);\n  HRESULT(STDMETHODCALLTYPE *GetOptions)\n  (IFileDialog *This, FILEOPENDIALOGOPTIONS *pfos);\n  HRESULT(STDMETHODCALLTYPE *SetDefaultFolder)\n  (IFileDialog *This, IShellItem *psi);\n  HRESULT(STDMETHODCALLTYPE *SetFolder)(IFileDialog *This, IShellItem *psi);\n  HRESULT(STDMETHODCALLTYPE *GetFolder)(IFileDialog *This, IShellItem **ppsi);\n  HRESULT(STDMETHODCALLTYPE *GetCurrentSelection)\n  (IFileDialog *This, IShellItem **ppsi);\n  HRESULT(STDMETHODCALLTYPE *SetFileName)(IFileDialog *This, LPCWSTR pszName);\n  HRESULT(STDMETHODCALLTYPE *GetFileName)(IFileDialog *This, LPWSTR *pszName);\n  HRESULT(STDMETHODCALLTYPE *SetTitle)(IFileDialog *This, LPCWSTR pszTitle);\n  HRESULT(STDMETHODCALLTYPE *SetOkButtonLabel)\n  (IFileDialog *This, LPCWSTR pszText);\n  HRESULT(STDMETHODCALLTYPE *SetFileNameLabel)\n  (IFileDialog *This, LPCWSTR pszLabel);\n  HRESULT(STDMETHODCALLTYPE *GetResult)(IFileDialog *This, IShellItem **ppsi);\n  HRESULT(STDMETHODCALLTYPE *AddPlace)\n  (IFileDialog *This, IShellItem *psi, FDAP fdap);\n  HRESULT(STDMETHODCALLTYPE *SetDefaultExtension)\n  (IFileDialog *This, LPCWSTR pszDefaultExtension);\n  HRESULT(STDMETHODCALLTYPE *Close)(IFileDialog *This, HRESULT hr);\n  HRESULT(STDMETHODCALLTYPE *SetClientGuid)(IFileDialog *This, REFGUID guid);\n  HRESULT(STDMETHODCALLTYPE *ClearClientData)(IFileDialog *This);\n  HRESULT(STDMETHODCALLTYPE *SetFilter)\n  (IFileDialog *This, IShellItemFilter *pFilter);\n  END_INTERFACE\n} IFileDialogVtbl;\ninterface IFileDialog {\n  CONST_VTBL IFileDialogVtbl *lpVtbl;\n};\nDEFINE_GUID(IID_IFileOpenDialog, 0xd57c7288, 0xd4ad, 0x4768, 0xbe, 0x02, 0x9d,\n            0x96, 0x95, 0x32, 0xd9, 0x60);\nDEFINE_GUID(IID_IFileSaveDialog, 0x84bccd23, 0x5fde, 0x4cdb, 0xae, 0xa4, 0xaf,\n            0x64, 0xb8, 0x3d, 0x78, 0xab);\n#endif\n\nstatic void webview_dialog(struct webview *w, enum webview_dialog_type dlgtype,\n                           int flags, const char *title, const char *arg,\n                           char *result, size_t resultsz) {\n  if (dlgtype == WEBVIEW_DIALOG_TYPE_OPEN ||\n      dlgtype == WEBVIEW_DIALOG_TYPE_SAVE) {\n    IFileDialog *dlg = NULL;\n    IShellItem *res = NULL;\n    WCHAR *ws = NULL;\n    char *s = NULL;\n    FILEOPENDIALOGOPTIONS opts, add_opts;\n    if (dlgtype == WEBVIEW_DIALOG_TYPE_OPEN) {\n      if (CoCreateInstance(\n              iid_unref(&CLSID_FileOpenDialog), NULL, CLSCTX_INPROC_SERVER,\n              iid_unref(&IID_IFileOpenDialog), (void **)&dlg) != S_OK) {\n        goto error_dlg;\n      }\n      add_opts |= FOS_NOCHANGEDIR | FOS_ALLNONSTORAGEITEMS | FOS_NOVALIDATE |\n                  FOS_PATHMUSTEXIST | FOS_FILEMUSTEXIST | FOS_SHAREAWARE |\n                  FOS_NOTESTFILECREATE | FOS_NODEREFERENCELINKS |\n                  FOS_FORCESHOWHIDDEN | FOS_DEFAULTNOMINIMODE;\n    } else {\n      if (CoCreateInstance(\n              iid_unref(&CLSID_FileSaveDialog), NULL, CLSCTX_INPROC_SERVER,\n              iid_unref(&IID_IFileSaveDialog), (void **)&dlg) != S_OK) {\n        goto error_dlg;\n      }\n      add_opts |= FOS_OVERWRITEPROMPT | FOS_NOCHANGEDIR |\n                  FOS_ALLNONSTORAGEITEMS | FOS_NOVALIDATE | FOS_SHAREAWARE |\n                  FOS_NOTESTFILECREATE | FOS_NODEREFERENCELINKS |\n                  FOS_FORCESHOWHIDDEN | FOS_DEFAULTNOMINIMODE;\n    }\n    if (dlg->lpVtbl->GetOptions(dlg, &opts) != S_OK) {\n      goto error_dlg;\n    }\n    opts &= ~FOS_NOREADONLYRETURN;\n    opts |= add_opts;\n    if (dlg->lpVtbl->SetOptions(dlg, opts) != S_OK) {\n      goto error_dlg;\n    }\n    if (dlg->lpVtbl->Show(dlg, w->priv.hwnd) != S_OK) {\n      goto error_dlg;\n    }\n    if (dlg->lpVtbl->GetResult(dlg, &res) != S_OK) {\n      goto error_dlg;\n    }\n    if (res->lpVtbl->GetDisplayName(res, SIGDN_FILESYSPATH, &ws) != S_OK) {\n      goto error_result;\n    }\n    s = webview_from_utf16(ws);\n    strncpy(result, s, resultsz);\n    result[resultsz - 1] = '\\0';\n    CoTaskMemFree(ws);\n  error_result:\n    res->lpVtbl->Release(res);\n  error_dlg:\n    dlg->lpVtbl->Release(dlg);\n    return;\n  } else if (dlgtype == WEBVIEW_DIALOG_TYPE_ALERT) {\n#if 0\n    /* MinGW often doesn't contain TaskDialog, so we'll use MessageBox for now */\n    WCHAR *wtitle = webview_to_utf16(title);\n    WCHAR *warg = webview_to_utf16(arg);\n    TaskDialog(w->priv.hwnd, NULL, NULL, wtitle, warg, 0, NULL, NULL);\n    GlobalFree(warg);\n    GlobalFree(wtitle);\n#else\n    MessageBox(w->priv.hwnd, arg, title, MB_OK);\n#endif\n  }\n}\n\nstatic void webview_terminate(struct webview *w) { PostQuitMessage(0); }\nstatic void webview_exit(struct webview *w) { OleUninitialize(); }\nstatic void webview_print_log(const char *s) { OutputDebugString(s); }\n\n#endif /* WEBVIEW_WINAPI */\n\n#if defined(WEBVIEW_COCOA)\n#if (!defined MAC_OS_X_VERSION_10_12) ||                                       \\\n    MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_12\n#define NSWindowStyleMaskResizable NSResizableWindowMask\n#define NSWindowStyleMaskMiniaturizable NSMiniaturizableWindowMask\n#define NSWindowStyleMaskTitled NSTitledWindowMask\n#define NSWindowStyleMaskClosable NSClosableWindowMask\n#define NSEventMaskAny NSAnyEventMask\n#define NSEventModifierFlagCommand NSCommandKeyMask\n#define NSEventModifierFlagOption NSAlternateKeyMask\n#define NSAlertStyleInformational NSInformationalAlertStyle\n#endif /* MAC_OS_X_VERSION_10_12 */\n#if (!defined MAC_OS_X_VERSION_10_13) ||                                       \\\n    MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_13\n#define NSModalResponseOK NSFileHandlingPanelOKButton\n#endif /* MAC_OS_X_VERSION_10_12, MAC_OS_X_VERSION_10_13 */\nstatic void webview_window_will_close(id self, SEL cmd, id notification) {\n  struct webview *w =\n      (struct webview *)objc_getAssociatedObject(self, \"webview\");\n  webview_terminate(w);\n}\n\nstatic BOOL webview_is_selector_excluded_from_web_script(id self, SEL cmd,\n                                                         SEL selector) {\n  return selector != @selector(invoke:);\n}\n\nstatic NSString *webview_webscript_name_for_selector(id self, SEL cmd,\n                                                     SEL selector) {\n  return selector == @selector(invoke:) ? @\"invoke\" : nil;\n}\n\nstatic void webview_did_clear_window_object(id self, SEL cmd, id webview,\n                                            id script, id frame) {\n  [script setValue:self forKey:@\"external\"];\n}\n\nstatic void webview_external_invoke(id self, SEL cmd, id arg) {\n  struct webview *w =\n      (struct webview *)objc_getAssociatedObject(self, \"webview\");\n  if (w == NULL || w->external_invoke_cb == NULL) {\n    return;\n  }\n  if ([arg isKindOfClass:[NSString class]] == NO) {\n    return;\n  }\n  w->external_invoke_cb(w, [(NSString *)(arg)UTF8String]);\n}\n\nstatic int webview_init(struct webview *w) {\n  w->priv.pool = [[NSAutoreleasePool alloc] init];\n  [NSApplication sharedApplication];\n\n  Class webViewDelegateClass =\n      objc_allocateClassPair([NSObject class], \"WebViewDelegate\", 0);\n  class_addMethod(webViewDelegateClass, sel_registerName(\"windowWillClose:\"),\n                  (IMP)webview_window_will_close, \"v@:@\");\n  class_addMethod(object_getClass(webViewDelegateClass),\n                  sel_registerName(\"isSelectorExcludedFromWebScript:\"),\n                  (IMP)webview_is_selector_excluded_from_web_script, \"c@::\");\n  class_addMethod(object_getClass(webViewDelegateClass),\n                  sel_registerName(\"webScriptNameForSelector:\"),\n                  (IMP)webview_webscript_name_for_selector, \"c@::\");\n  class_addMethod(webViewDelegateClass,\n                  sel_registerName(\"webView:didClearWindowObject:forFrame:\"),\n                  (IMP)webview_did_clear_window_object, \"v@:@@@\");\n  class_addMethod(webViewDelegateClass, sel_registerName(\"invoke:\"),\n                  (IMP)webview_external_invoke, \"v@:@\");\n  objc_registerClassPair(webViewDelegateClass);\n\n  w->priv.windowDelegate = [[webViewDelegateClass alloc] init];\n  objc_setAssociatedObject(w->priv.windowDelegate, \"webview\", (id)(w),\n                           OBJC_ASSOCIATION_ASSIGN);\n\n  NSString *nsTitle = [NSString stringWithUTF8String:w->title];\n  NSRect r = NSMakeRect(0, 0, w->width, w->height);\n  NSUInteger style = NSWindowStyleMaskTitled | NSWindowStyleMaskClosable |\n                     NSWindowStyleMaskMiniaturizable;\n  if (w->resizable) {\n    style = style | NSWindowStyleMaskResizable;\n  }\n  w->priv.window = [[NSWindow alloc] initWithContentRect:r\n                                               styleMask:style\n                                                 backing:NSBackingStoreBuffered\n                                                   defer:NO];\n  [w->priv.window autorelease];\n  [w->priv.window setTitle:nsTitle];\n  [w->priv.window setDelegate:w->priv.windowDelegate];\n  [w->priv.window center];\n\n  [[NSUserDefaults standardUserDefaults] setBool:!!w->debug\n                                          forKey:@\"WebKitDeveloperExtras\"];\n  [[NSUserDefaults standardUserDefaults] synchronize];\n  w->priv.webview =\n      [[WebView alloc] initWithFrame:r frameName:@\"WebView\" groupName:nil];\n  NSURL *nsURL = [NSURL\n      URLWithString:[NSString stringWithUTF8String:webview_check_url(w->url)]];\n  [[w->priv.webview mainFrame] loadRequest:[NSURLRequest requestWithURL:nsURL]];\n\n  [w->priv.webview setAutoresizesSubviews:YES];\n  [w->priv.webview\n      setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];\n  w->priv.webview.frameLoadDelegate = w->priv.windowDelegate;\n  [[w->priv.window contentView] addSubview:w->priv.webview];\n  [w->priv.window orderFrontRegardless];\n\n  [NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];\n  [NSApp finishLaunching];\n  [NSApp activateIgnoringOtherApps:YES];\n\n  NSMenu *menubar = [[[NSMenu alloc] initWithTitle:@\"\"] autorelease];\n\n  NSString *appName = [[NSProcessInfo processInfo] processName];\n  NSMenuItem *appMenuItem =\n      [[[NSMenuItem alloc] initWithTitle:appName action:NULL keyEquivalent:@\"\"]\n          autorelease];\n  NSMenu *appMenu = [[[NSMenu alloc] initWithTitle:appName] autorelease];\n  [appMenuItem setSubmenu:appMenu];\n  [menubar addItem:appMenuItem];\n\n  NSString *title = [@\"Hide \" stringByAppendingString:appName];\n  NSMenuItem *item = [[[NSMenuItem alloc] initWithTitle:title\n                                                 action:@selector(hide:)\n                                          keyEquivalent:@\"h\"] autorelease];\n  [appMenu addItem:item];\n  item = [[[NSMenuItem alloc] initWithTitle:@\"Hide Others\"\n                                     action:@selector(hideOtherApplications:)\n                              keyEquivalent:@\"h\"] autorelease];\n  [item setKeyEquivalentModifierMask:(NSEventModifierFlagOption |\n                                      NSEventModifierFlagCommand)];\n  [appMenu addItem:item];\n  item = [[[NSMenuItem alloc] initWithTitle:@\"Show All\"\n                                     action:@selector(unhideAllApplications:)\n                              keyEquivalent:@\"\"] autorelease];\n  [appMenu addItem:item];\n  [appMenu addItem:[NSMenuItem separatorItem]];\n\n  title = [@\"Quit \" stringByAppendingString:appName];\n  item = [[[NSMenuItem alloc] initWithTitle:title\n                                     action:@selector(terminate:)\n                              keyEquivalent:@\"q\"] autorelease];\n  [appMenu addItem:item];\n\n  [NSApp setMainMenu:menubar];\n\n  w->priv.should_exit = 0;\n  return 0;\n}\n\nstatic int webview_loop(struct webview *w, int blocking) {\n  NSDate *until = (blocking ? [NSDate distantFuture] : [NSDate distantPast]);\n  NSEvent *event = [NSApp nextEventMatchingMask:NSEventMaskAny\n                                      untilDate:until\n                                         inMode:NSDefaultRunLoopMode\n                                        dequeue:YES];\n  if (event) {\n    [NSApp sendEvent:event];\n  }\n  return w->priv.should_exit;\n}\n\nstatic int webview_eval(struct webview *w, const char *js) {\n  NSString *nsJS = [NSString stringWithUTF8String:js];\n  [[w->priv.webview windowScriptObject] evaluateWebScript:nsJS];\n  return 0;\n}\n\nstatic void webview_set_title(struct webview *w, const char *title) {\n  NSString *nsTitle = [NSString stringWithUTF8String:title];\n  [w->priv.window setTitle:nsTitle];\n}\n\nstatic void webview_dialog(struct webview *w, enum webview_dialog_type dlgtype,\n                           int flags, const char *title, const char *arg,\n                           char *result, size_t resultsz) {\n  if (dlgtype == WEBVIEW_DIALOG_TYPE_OPEN ||\n      dlgtype == WEBVIEW_DIALOG_TYPE_SAVE) {\n    NSSavePanel *panel;\n    if (dlgtype == WEBVIEW_DIALOG_TYPE_OPEN) {\n      NSOpenPanel *openPanel = [NSOpenPanel openPanel];\n      [openPanel setCanChooseFiles:YES];\n      [openPanel setCanChooseDirectories:NO];\n      [openPanel setResolvesAliases:NO];\n      [openPanel setAllowsMultipleSelection:NO];\n      panel = openPanel;\n    } else {\n      panel = [NSSavePanel savePanel];\n    }\n    [panel setCanCreateDirectories:YES];\n    [panel setShowsHiddenFiles:YES];\n    [panel setExtensionHidden:NO];\n    [panel setCanSelectHiddenExtension:NO];\n    [panel setTreatsFilePackagesAsDirectories:YES];\n    [panel beginSheetModalForWindow:w->priv.window\n                  completionHandler:^(NSInteger result) {\n                    [NSApp stopModalWithCode:result];\n                  }];\n    if ([NSApp runModalForWindow:panel] == NSModalResponseOK) {\n      const char *filename = [[[panel URL] path] UTF8String];\n      strlcpy(result, filename, resultsz);\n    }\n  } else if (dlgtype == WEBVIEW_DIALOG_TYPE_ALERT) {\n    NSAlert *a = [NSAlert new];\n    [a setAlertStyle:NSAlertStyleInformational];\n    [a setShowsHelp:NO];\n    [a setShowsSuppressionButton:NO];\n    [a setMessageText:[NSString stringWithUTF8String:title]];\n    [a setInformativeText:[NSString stringWithUTF8String:arg]];\n    [a addButtonWithTitle:@\"OK\"];\n    [a runModal];\n    [a release];\n  }\n}\n\nstatic void webview_dispatch_cb(void *arg) {\n  struct webview_dispatch_arg *context = (struct webview_dispatch_arg *)arg;\n  (context->fn)(context->w, context->arg);\n  free(context);\n}\n\nstatic void webview_dispatch(struct webview *w, webview_dispatch_fn fn,\n                             void *arg) {\n  struct webview_dispatch_arg *context = (struct webview_dispatch_arg *)malloc(\n      sizeof(struct webview_dispatch_arg));\n  context->w = w;\n  context->arg = arg;\n  context->fn = fn;\n  dispatch_async_f(dispatch_get_main_queue(), context, webview_dispatch_cb);\n}\n\nstatic void webview_terminate(struct webview *w) { w->priv.should_exit = 1; }\nstatic void webview_exit(struct webview *w) { [NSApp terminate:NSApp]; }\nstatic void webview_print_log(const char *s) { NSLog(@\"%s\", s); }\n\n#endif /* WEBVIEW_COCOA */\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif /* WEBVIEW_H */\n"
  },
  {
    "path": "vendor/github.com/zserge/webview/webview_test.go",
    "content": "package webview\n\nimport (\n\t\"image\"\n\t\"testing\"\n)\n\ntype foo struct {\n\tResult interface{}\n}\n\nfunc (f *foo) Foo1(a int, b float32) {\n\tf.Result = float64(a) + float64(b)\n}\nfunc (f *foo) Foo2(a []int, b [3]float32, c map[int]int) {\n\tf.Result = map[string]interface{}{\"a\": a, \"b\": b, \"c\": c}\n}\nfunc (f *foo) Foo3(a []image.Point, b struct{ Z int }) {\n\tf.Result = map[string]interface{}{\"a\": a, \"b\": b}\n}\n\nfunc TestBadBinding(t *testing.T) {\n\tx := 123\n\tfor _, v := range []interface{}{\n\t\tnil,\n\t\ttrue,\n\t\t123,\n\t\t123.4,\n\t\t\"hello\",\n\t\t'a',\n\t\tmake(chan struct{}, 0),\n\t\tfunc() {},\n\t\tmap[string]string{},\n\t\t[]int{},\n\t\t[3]int{0, 0, 0},\n\t\t&x,\n\t} {\n\t\tif _, err := newBinding(\"test\", v); err == nil {\n\t\t\tt.Errorf(\"should return an error: %#v\", v)\n\t\t}\n\t}\n}\n\nfunc TestBindingCall(t *testing.T) {\n\tfoo := &foo{}\n\tb, err := newBinding(\"test\", foo)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tt.Run(\"Primitives\", func(t *testing.T) {\n\t\tif !b.Call(`{\"scope\":\"test\",\"method\":\"Foo1\",\"params\":[3,4.5]}`) {\n\t\t\tt.Fatal()\n\t\t}\n\t\tif foo.Result.(float64) != 7.5 {\n\t\t\tt.Fatal(foo)\n\t\t}\n\t})\n\n\tt.Run(\"Collections\", func(t *testing.T) {\n\t\t// Call with slices, arrays and maps\n\t\tif !b.Call(`{\"scope\":\"test\",\"method\":\"Foo2\",\"params\":[[1,2,3],[4.5,4.6,4.7],{\"1\":2,\"3\":4}]}`) {\n\t\t\tt.Fatal()\n\t\t}\n\t\tm := foo.Result.(map[string]interface{})\n\t\tif ints := m[\"a\"].([]int); ints[0] != 1 || ints[1] != 2 || ints[2] != 3 {\n\t\t\tt.Fatal(foo)\n\t\t}\n\t\tif floats := m[\"b\"].([3]float32); floats[0] != 4.5 || floats[1] != 4.6 || floats[2] != 4.7 {\n\t\t\tt.Fatal(foo)\n\t\t}\n\t\tif dict := m[\"c\"].(map[int]int); len(dict) != 2 || dict[1] != 2 || dict[3] != 4 {\n\t\t\tt.Fatal(foo)\n\t\t}\n\t})\n\n\tt.Run(\"Structs\", func(t *testing.T) {\n\t\tif !b.Call(`{\"scope\":\"test\",\"method\":\"Foo3\",\"params\":[[{\"X\":1,\"Y\":2},{\"X\":3,\"Y\":4}],{\"Z\":42}]}`) {\n\t\t\tt.Fatal()\n\t\t}\n\t\tm := foo.Result.(map[string]interface{})\n\t\tif p := m[\"a\"].([]image.Point); p[0].X != 1 || p[0].Y != 2 || p[1].X != 3 || p[1].Y != 4 {\n\t\t\tt.Fatal(foo)\n\t\t}\n\t\tif z := m[\"b\"].(struct{ Z int }); z.Z != 42 {\n\t\t\tt.Fatal(foo)\n\t\t}\n\t})\n\n\tt.Run(\"Errors\", func(t *testing.T) {\n\t\tif b.Call(`{\"scope\":\"foo\"}`) || b.Call(`{\"scope\":\"test\", \"method\":\"Bar\"}`) {\n\t\t\tt.Fatal()\n\t\t}\n\t\tif b.Call(`{\"scope\":\"test\",\"method\":\"Foo1\",\"params\":[\"3\",4.5]}`) {\n\t\t\tt.Fatal()\n\t\t}\n\t})\n}\n"
  }
]